diff --git a/.eslintignore b/.eslintignore index 8d887bcfc64..e45bc680540 100644 --- a/.eslintignore +++ b/.eslintignore @@ -32,3 +32,4 @@ hardware-testing/** app-testing/files # app testing don't format the snapshots app-testing/tests/__snapshots__ +opentrons-ai-server/package diff --git a/.eslintrc.js b/.eslintrc.js index 6e70df2ff27..1226f14f9d3 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -49,13 +49,13 @@ module.exports = { importNames: [ 'useAllRunsQuery', 'useRunQuery', - 'useLastRunCommandKey', + 'useAllCommandsQuery', 'useCurrentMaintenanceRun', 'useDeckConfigurationQuery', 'useAllCommandsAsPreSerializedList', ], message: - 'The HTTP hook is deprecated. Utilize the equivalent notification wrapper (useNotifyX) instead.', + 'HTTP hook deprecated. Use the equivalent notification wrapper (useNotifyXYZ).', }, ], }, @@ -102,7 +102,6 @@ module.exports = { '@typescript-eslint/no-unnecessary-type-assertion': 'warn', '@typescript-eslint/no-unnecessary-boolean-literal-compare': 'warn', '@typescript-eslint/no-unsafe-argument': 'warn', - '@typescript-eslint/consistent-type-imports': 'warn', '@typescript-eslint/consistent-indexed-object-style': 'warn', '@typescript-eslint/no-confusing-void-expression': 'warn', '@typescript-eslint/ban-types': 'warn', diff --git a/.github/workflows/ai-server-lint-test.yaml b/.github/workflows/ai-server-lint-test.yaml new file mode 100644 index 00000000000..439ec201a74 --- /dev/null +++ b/.github/workflows/ai-server-lint-test.yaml @@ -0,0 +1,52 @@ +# This workflow runs lint on pull requests that touch anything in the opentrons-ai-server directory + +name: 'ai-server lint' + +on: + pull_request: + paths: + - 'opentrons-ai-server/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +defaults: + run: + shell: bash + +jobs: + lint: + name: 'ai-server lint' + timeout-minutes: 5 + runs-on: 'ubuntu-latest' + steps: + - name: Checkout opentrons repo + uses: 'actions/checkout@v4' + + - name: Setup Python + uses: 'actions/setup-python@v5' + with: + python-version: '3.12' + cache: 'pipenv' + cache-dependency-path: opentrons-ai-server/Pipfile.lock + - name: Setup + id: install + working-directory: ./opentrons-ai-server + run: make setup + - name: black-check + if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped' + working-directory: ./opentrons-ai-server + run: make black-check + - name: ruff + if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped' + working-directory: ./opentrons-ai-server + run: make ruff-check + - name: mypy + if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped' + working-directory: ./opentrons-ai-server + run: make mypy + - name: unit tests + if: always() && steps.install.outcome == 'success' || steps.install.outcome == 'skipped' + working-directory: ./opentrons-ai-server + run: make unit-test diff --git a/.github/workflows/components-test-build-deploy.yaml b/.github/workflows/components-test-build-deploy.yaml index 7d4f2f5f49a..d714b198232 100644 --- a/.github/workflows/components-test-build-deploy.yaml +++ b/.github/workflows/components-test-build-deploy.yaml @@ -190,9 +190,9 @@ jobs: npm config set cache ./.npm-cache yarn config set cache-folder ./.yarn-cache make setup-js - - name: 'build typescript' - run: make build-ts - - name: 'build library' + - name: 'build typescript types' + run: make -C components build-ts + - name: 'build js bundle' run: | make -C components lib # replace package.json stub version number with version from tag diff --git a/.github/workflows/hardware-testing.yaml b/.github/workflows/hardware-testing.yaml index 6977194ca2a..bb738b13e4b 100644 --- a/.github/workflows/hardware-testing.yaml +++ b/.github/workflows/hardware-testing.yaml @@ -9,6 +9,9 @@ on: paths: - 'Makefile' - 'hardware-testing/**' + - 'api/**' + - 'shared-data/**' + - 'hardware/**' - '.github/workflows/hardware-testing.yaml' - '.github/actions/python/**' branches: diff --git a/.github/workflows/opentrons-ai-client-dev-continuos-deploy.yaml b/.github/workflows/opentrons-ai-client-dev-continuos-deploy.yaml new file mode 100644 index 00000000000..649612cd231 --- /dev/null +++ b/.github/workflows/opentrons-ai-client-dev-continuos-deploy.yaml @@ -0,0 +1,64 @@ +name: 'OpentronsAI edge continuous deployment to dev' + +on: + push: + branches: + - edge + paths: + - 'opentrons-ai-client/**' + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.run_id }} + cancel-in-progress: true + +env: + CI: true + +jobs: + js-unit-test: + runs-on: 'ubuntu-22.04' + permissions: + id-token: write + contents: read + name: 'OpentronsAI edge continuous deployment to dev' + timeout-minutes: 10 + steps: + - uses: 'actions/checkout@v3' + - uses: 'actions/setup-node@v3' + with: + node-version: '18.19.0' + - name: 'install udev' + run: | + # WORKAROUND: Remove microsoft debian repo due to https://github.com/microsoft/linux-package-repositories/issues/130. Remove line below after it is resolved + sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list + sudo apt-get update && sudo apt-get install libudev-dev + - name: 'set complex environment variables' + id: 'set-vars' + uses: actions/github-script@v6 + with: + script: | + const { buildComplexEnvVars } = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/utils.js`) + buildComplexEnvVars(core, context) + - name: 'cache yarn cache' + uses: actions/cache@v3 + with: + path: | + ${{ github.workspace }}/.npm-cache/_prebuild + ${{ github.workspace }}/.yarn-cache + key: js-${{ secrets.GH_CACHE_VERSION }}-${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} + - name: 'setup-js' + run: | + npm config set cache ${{ github.workspace }}/.npm-cache + yarn config set cache-folder ${{ github.workspace }}/.yarn-cache + make setup-js + - name: 'build' + run: | + make -C opentrons-ai-client build + - name: Configure AWS Credentials + uses: aws-actions/configure-aws-credentials@v4 + with: + role-to-assume: ${{ secrets.DEV_AI_ROLE_ARN }} + aws-region: ${{ secrets.DEV_AI_REGION }} + - name: 'deploy to dev' + run: | + make -C opentrons-ai-client dev-deploy \ No newline at end of file diff --git a/abr-testing/abr_testing/automation/google_sheets_tool.py b/abr-testing/abr_testing/automation/google_sheets_tool.py index e132422a482..afac386bc40 100644 --- a/abr-testing/abr_testing/automation/google_sheets_tool.py +++ b/abr-testing/abr_testing/automation/google_sheets_tool.py @@ -6,7 +6,7 @@ import sys from datetime import datetime from oauth2client.service_account import ServiceAccountCredentials # type: ignore[import] -from typing import Dict, List, Any, Set, Tuple +from typing import Dict, List, Any, Set, Tuple, Optional """Google Sheets Tool. @@ -48,12 +48,14 @@ def open_worksheet(self, tab_number: int) -> Any: """Open individual worksheet within a googlesheet.""" return self.spread_sheet.get_worksheet(tab_number) - def create_worksheet(self, tab_name: int) -> None: + def create_worksheet(self, title: str) -> Optional[str]: """Create a worksheet with tab name. Existing spreadsheet needed.""" try: - self.spread_sheet.add_worksheet(tab_name, rows="1000", cols="26") + new_sheet = self.spread_sheet.add_worksheet(title, rows="2500", cols="40") + return new_sheet.id except gspread.exceptions.APIError: - print("Work Sheet already exists") + print("Sheet already exists.") + return new_sheet.id def write_header(self, header: List) -> None: """Write Header to first row if not present.""" @@ -61,7 +63,7 @@ def write_header(self, header: List) -> None: if header_list != header: self.worksheet.insert_row(header, self.row_index) - def write_to_row(self, data: List) -> None: + def write_to_row(self, data: List, title: str = "Sheet1") -> None: """Write data into a row in a List[] format.""" try: self.row_index += 1 @@ -87,14 +89,84 @@ def delete_row(self, row_index: int) -> None: """Delete Row from google sheet.""" self.worksheet.delete_rows(row_index) + def batch_delete_rows(self, row_indices: List[int]) -> None: + """Batch delete rows in list of indices.""" + delete_body = { + "requests": [ + { + "deleteDimension": { + "range": { + "sheetId": 0, + "dimension": "ROWS", + "startIndex": index, + "endIndex": index + 1, + } + } + } + for index in row_indices + ] + } + self.spread_sheet.batch_update(body=delete_body) + + def batch_update_cells( + self, + data: List[List[Any]], + start_column: str, + start_row: int, + sheet_id: str, + ) -> None: + """Writes to multiple cells at once in a specific sheet.""" + + def column_letter_to_index(column_letter: str) -> int: + """Convert a column letter (e.g., 'A') to a 1-based column index (e.g., 1).""" + index = 0 + for char in column_letter.upper(): + index = index * 26 + (ord(char) - ord("A") + 1) + return index + + requests = [] + user_entered_value: Dict[str, Any] = {} + start_column_index = column_letter_to_index(start_column) - 1 + + for col_offset, col_values in enumerate(data): + column_index = start_column_index + col_offset + # column_letter = index_to_column_letter(column_index) + for row_offset, value in enumerate(col_values): + row_index = start_row + row_offset + try: + float_value = float(value) + user_entered_value = {"numberValue": float_value} + except ValueError: + user_entered_value = {"stringValue": str(value)} + requests.append( + { + "updateCells": { + "range": { + "sheetId": sheet_id, + "startRowIndex": row_index - 1, + "endRowIndex": row_index, + "startColumnIndex": column_index, + "endColumnIndex": column_index + 1, + }, + "rows": [ + {"values": [{"userEnteredValue": user_entered_value}]} + ], + "fields": "userEnteredValue", + } + } + ) + + body = {"requests": requests} + self.spread_sheet.batch_update(body=body) + def update_cell( - self, row: int, column: int, single_data: Any + self, sheet_title: str, row: int, column: int, single_data: Any ) -> Tuple[int, int, Any]: """Update ONE individual cell according to a row and column.""" - self.worksheet.update_cell(row, column, single_data) + self.spread_sheet.worksheet(sheet_title).update_cell(row, column, single_data) return row, column, single_data - def get_all_data(self) -> Dict[str, Any]: + def get_all_data(self) -> List[Dict[str, Any]]: """Get all the Data recorded from worksheet.""" return self.worksheet.get_all_records() @@ -102,6 +174,15 @@ def get_column(self, column_number: int) -> Set[str]: """Get all values in column.""" return self.worksheet.col_values(column_number) + def get_cell(self, sheet_title: str, cell: str) -> Any: + """Get cell value with location ex: 'A1'.""" + return self.spread_sheet.worksheet(sheet_title).acell(cell).value + + def get_single_col_range(self, sheet_name: str, range: str) -> List: + """Get cell values from one column range.""" + values_range = self.spread_sheet.worksheet(sheet_name).range(range) + return [cell.value for cell in values_range] + def get_index_row(self) -> int: """Check for the next available row to write too.""" row_index = len(self.get_column(1)) @@ -141,3 +222,45 @@ def get_row_index_with_value(self, some_string: str, col_num: int) -> Any: print("Row not found.") return None return row_index + + def create_line_chart( + self, + titles: List[str], + series: List[Dict[str, Any]], + domains: List[Dict[str, Any]], + axis: Dict[str, Any], + col_position: int = 0, + sheet_id: str = "0", + ) -> None: + """Create chart of data on google sheet.""" + request_body = { + "requests": [ + { + "addChart": { + "chart": { + "spec": { + "title": titles[0], + "basicChart": { + "chartType": "LINE", + "legendPosition": "RIGHT_LEGEND", + "axis": axis, + "domains": domains, + "series": series, + "headerCount": 1, + }, + }, + "position": { + "overlayPosition": { + "anchorCell": { + "sheetId": sheet_id, + "rowIndex": 15, + "columnIndex": col_position, + } + } + }, + } + } + } + ] + } + self.spread_sheet.batch_update(body=request_body) diff --git a/abr-testing/abr_testing/automation/jira_tool.py b/abr-testing/abr_testing/automation/jira_tool.py index 5c0a2556dfb..e3851fb395e 100644 --- a/abr-testing/abr_testing/automation/jira_tool.py +++ b/abr-testing/abr_testing/automation/jira_tool.py @@ -86,7 +86,7 @@ def create_ticket( } try: response = requests.post( - f"{self.url}/rest/api/3/issue/", + f"{self.url}/rest/api/3/issue", headers=self.headers, auth=self.auth, json=data, diff --git a/abr-testing/abr_testing/data_collection/abr_calibration_logs.py b/abr-testing/abr_testing/data_collection/abr_calibration_logs.py index 11f37e8ab95..82d9d9c45bc 100644 --- a/abr-testing/abr_testing/data_collection/abr_calibration_logs.py +++ b/abr-testing/abr_testing/data_collection/abr_calibration_logs.py @@ -155,18 +155,10 @@ def upload_calibration_offsets( parser.add_argument( "email", metavar="EMAIL", type=str, nargs=1, help="opentrons gmail." ) - parser.add_argument( - "ip_or_all", - metavar="IP_OR_ALL", - type=str, - nargs=1, - help="Enter 'ALL' to read IPs.json or type full IP address of 1 robot.", - ) args = parser.parse_args() storage_directory = args.storage_directory[0] folder_name = args.folder_name[0] google_sheet_name = args.google_sheet_name[0] - ip_or_all = args.ip_or_all[0] email = args.email[0] # Connect to google drive. try: @@ -191,6 +183,7 @@ def upload_calibration_offsets( except FileNotFoundError: print(f"Add .json file with robot IPs to: {storage_directory}.") sys.exit() + ip_or_all = input("IP Address or ALL: ") if ip_or_all == "ALL": ip_address_list = ip_file["ip_address_list"] diff --git a/abr-testing/abr_testing/data_collection/abr_google_drive.py b/abr-testing/abr_testing/data_collection/abr_google_drive.py index f8a2dc8fa4f..29af9269459 100644 --- a/abr-testing/abr_testing/data_collection/abr_google_drive.py +++ b/abr-testing/abr_testing/data_collection/abr_google_drive.py @@ -32,9 +32,12 @@ def create_data_dictionary( runs_to_save: Union[Set[str], str], storage_directory: str, issue_url: str, -) -> Tuple[Dict[Any, Dict[str, Any]], List]: + plate: str, + accuracy: Any, +) -> Tuple[List[List[Any]], List[str], List[List[Any]], List[str]]: """Pull data from run files and format into a dictionary.""" - runs_and_robots = {} + runs_and_robots: List[Any] = [] + runs_and_lpc: List[Dict[str, Any]] = [] for filename in os.listdir(storage_directory): file_path = os.path.join(storage_directory, filename) if file_path.endswith(".json"): @@ -108,6 +111,11 @@ def create_data_dictionary( hs_dict = read_robot_logs.hs_commands(file_results) tm_dict = read_robot_logs.temperature_module_commands(file_results) notes = {"Note1": "", "Jira Link": issue_url} + plate_measure = { + "Plate Measured": plate, + "End Volume Accuracy (%)": accuracy, + } + row_for_lpc = {**row, **all_modules, **notes} row_2 = { **row, **all_modules, @@ -115,12 +123,20 @@ def create_data_dictionary( **hs_dict, **tm_dict, **tc_dict, + **plate_measure, } - headers = list(row_2.keys()) - runs_and_robots[run_id] = row_2 + headers: List[str] = list(row_2.keys()) + # runs_and_robots[run_id] = row_2 + runs_and_robots.append(list(row_2.values())) + # LPC Data Recording + runs_and_lpc, headers_lpc = read_robot_logs.lpc_data( + file_results, row_for_lpc, runs_and_lpc + ) else: continue - return runs_and_robots, headers + transposed_runs_and_robots = list(map(list, zip(*runs_and_robots))) + transposed_runs_and_lpc = list(map(list, zip(*runs_and_lpc))) + return transposed_runs_and_robots, headers, transposed_runs_and_lpc, headers_lpc if __name__ == "__main__": @@ -164,7 +180,6 @@ def create_data_dictionary( google_sheet = google_sheets_tool.google_sheet( credentials_path, google_sheet_name, 0 ) - google_sheet_lpc = google_sheets_tool.google_sheet(credentials_path, "ABR-LPC", 0) run_ids_on_gs = google_sheet.get_column(2) run_ids_on_gs = set(run_ids_on_gs) @@ -178,9 +193,19 @@ def create_data_dictionary( run_ids_on_gd, run_ids_on_gs ) # Add missing runs to google sheet - runs_and_robots, headers = create_data_dictionary( - missing_runs_from_gs, storage_directory, "" - ) - read_robot_logs.write_to_local_and_google_sheet( - runs_and_robots, storage_directory, google_sheet_name, google_sheet, headers + ( + transposed_runs_and_robots, + headers, + transposed_runs_and_lpc, + headers_lpc, + ) = create_data_dictionary(missing_runs_from_gs, storage_directory, "", "", "") + + start_row = google_sheet.get_index_row() + 1 + google_sheet.batch_update_cells(transposed_runs_and_robots, "A", start_row, "0") + + # Add LPC to google sheet + google_sheet_lpc = google_sheets_tool.google_sheet(credentials_path, "ABR-LPC", 0) + start_row_lpc = google_sheet_lpc.get_index_row() + 1 + google_sheet_lpc.batch_update_cells( + transposed_runs_and_lpc, "A", start_row_lpc, "0" ) diff --git a/abr-testing/abr_testing/data_collection/abr_lpc.py b/abr-testing/abr_testing/data_collection/abr_lpc.py deleted file mode 100644 index dd880d09c37..00000000000 --- a/abr-testing/abr_testing/data_collection/abr_lpc.py +++ /dev/null @@ -1 +0,0 @@ -"""Get Unique LPC Values from Run logs.""" diff --git a/abr-testing/abr_testing/data_collection/abr_robot_error.py b/abr-testing/abr_testing/data_collection/abr_robot_error.py index 231b8077eed..f5b70a0d271 100644 --- a/abr-testing/abr_testing/data_collection/abr_robot_error.py +++ b/abr-testing/abr_testing/data_collection/abr_robot_error.py @@ -7,9 +7,7 @@ import shutil import os import subprocess -import json import sys -import gspread # type: ignore[import] def get_error_runs_from_robot(ip: str) -> List[str]: @@ -49,6 +47,7 @@ def get_error_info_from_robot( ) = read_robot_logs.get_error_info(results) # JIRA Ticket Fields failure_level = "Level " + str(error_level) + " Failure" + components = [failure_level, "Flex-RABR"] affects_version = results["API_Version"] parent = results.get("robot_name", "") @@ -130,6 +129,7 @@ def get_error_info_from_robot( board_id = args.board_id[0] reporter_id = args.reporter_id[0] ticket = jira_tool.JiraTicket(url, api_token, email) + ticket.issues_on_board(board_id) try: error_runs = get_error_runs_from_robot(ip) except requests.exceptions.InvalidURL: @@ -144,6 +144,7 @@ def get_error_info_from_robot( whole_description_str, run_log_file_path, ) = get_error_info_from_robot(ip, one_run, storage_directory) + affects_version = "internal release - any" # Get Calibration Data saved_file_path_calibration, calibration = read_robot_logs.get_calibration_offsets( ip, storage_directory @@ -182,35 +183,32 @@ def get_error_info_from_robot( # CONNECT TO GOOGLE DRIVE credentials_path = os.path.join(storage_directory, "credentials.json") google_sheet_name = "ABR-run-data" - try: - google_drive = google_drive_tool.google_drive( - credentials_path, - "1Cvej0eadFOTZr9ILRXJ0Wg65ymOtxL4m", - "rhyann.clarke@opentrons.ocm", - ) - print("Connected to google drive.") - except json.decoder.JSONDecodeError: - print( - "Credential file is damaged. Get from https://console.cloud.google.com/apis/credentials" - ) - sys.exit() + google_drive = google_drive_tool.google_drive( + credentials_path, + "1Cvej0eadFOTZr9ILRXJ0Wg65ymOtxL4m", + "rhyann.clarke@opentrons.ocm", + ) # CONNECT TO GOOGLE SHEET - try: - google_sheet = google_sheets_tool.google_sheet( - credentials_path, google_sheet_name, 0 - ) - print(f"Connected to google sheet: {google_sheet_name}") - except gspread.exceptions.APIError: - print("ERROR: Check google sheet name. Check credentials file.") - sys.exit() + google_sheet = google_sheets_tool.google_sheet( + credentials_path, google_sheet_name, 0 + ) # WRITE ERRORED RUN TO GOOGLE SHEET error_run_log = os.path.join(error_folder_path, os.path.basename(run_log_file_path)) google_drive.upload_file(error_run_log) run_id = os.path.basename(error_run_log).split("_")[1].split(".")[0] - runs_and_robots, headers = abr_google_drive.create_data_dictionary( - run_id, error_folder_path, issue_url - ) - read_robot_logs.write_to_local_and_google_sheet( - runs_and_robots, storage_directory, google_sheet_name, google_sheet, headers + ( + runs_and_robots, + headers, + runs_and_lpc, + headers_lpc, + ) = abr_google_drive.create_data_dictionary( + run_id, error_folder_path, issue_url, "", "" ) + + start_row = google_sheet.get_index_row() + 1 + google_sheet.batch_update_cells(runs_and_robots, "A", start_row, "0") print("Wrote run to ABR-run-data") + # Add LPC to google sheet + google_sheet_lpc = google_sheets_tool.google_sheet(credentials_path, "ABR-LPC", 0) + start_row_lpc = google_sheet_lpc.get_index_row() + 1 + google_sheet_lpc.batch_update_cells(runs_and_lpc, "A", start_row_lpc, "0") diff --git a/abr-testing/abr_testing/data_collection/read_robot_logs.py b/abr-testing/abr_testing/data_collection/read_robot_logs.py index 7539e913057..97c6072d9b1 100644 --- a/abr-testing/abr_testing/data_collection/read_robot_logs.py +++ b/abr-testing/abr_testing/data_collection/read_robot_logs.py @@ -15,10 +15,16 @@ import sys -def lpc_data(file_results: Dict[str, Any], protocol_info: Dict) -> List[Dict[str, Any]]: +def lpc_data( + file_results: Dict[str, Any], + protocol_info: Dict[str, Any], + runs_and_lpc: List[Dict[str, Any]], +) -> Tuple[List[Dict[str, Any]], List[str]]: """Get labware offsets from one run log.""" offsets = file_results.get("labwareOffsets", "") - all_offsets: List[Dict[str, Any]] = [] + # TODO: per UNIQUE slot AND LABWARE TYPE only keep the most recent LPC recording + unique_offsets: Dict[Any, Any] = {} + headers_lpc = [] if len(offsets) > 0: for offset in offsets: labware_type = offset.get("definitionUri", "") @@ -29,19 +35,29 @@ def lpc_data(file_results: Dict[str, Any], protocol_info: Dict) -> List[Dict[str y_offset = offset["vector"].get("y", 0.0) z_offset = offset["vector"].get("z", 0.0) created_at = offset.get("createdAt", "") - row = { - "createdAt": created_at, - "Labware Type": labware_type, - "Slot": slot, - "Module": module_location, - "Adapter": adapter, - "X": x_offset, - "Y": y_offset, - "Z": z_offset, - } - row2 = {**protocol_info, **row} - all_offsets.append(row2) - return all_offsets + if ( + slot, + labware_type, + ) not in unique_offsets or created_at > unique_offsets[ + (slot, labware_type) + ][ + "createdAt" + ]: + unique_offsets[(slot, labware_type)] = { + **protocol_info, + "createdAt": created_at, + "Labware Type": labware_type, + "Slot": slot, + "Module": module_location, + "Adapter": adapter, + "X": x_offset, + "Y": y_offset, + "Z": z_offset, + } + for item in unique_offsets: + runs_and_lpc.append(unique_offsets[item].values()) + headers_lpc = list(unique_offsets[(slot, labware_type)].keys()) + return runs_and_lpc, headers_lpc def command_time(command: Dict[str, str]) -> Tuple[float, float]: @@ -279,6 +295,7 @@ def create_abr_data_sheet( def get_error_info(file_results: Dict[str, Any]) -> Tuple[int, str, str, str, str]: """Determines if errors exist in run log and documents them.""" error_levels = [] + error_level = "" # Read error levels file with open(ERROR_LEVELS_PATH, "r") as error_file: error_levels = list(csv.reader(error_file)) @@ -290,8 +307,11 @@ def get_error_info(file_results: Dict[str, Any]) -> Tuple[int, str, str, str, st error_level = "" return 0, error_type, error_code, error_instrument, error_level commands_of_run: List[Dict[str, Any]] = file_results.get("commands", []) - run_command_error: Dict[str, Any] = commands_of_run[-1] - error_str: int = len(run_command_error.get("error", "")) + try: + run_command_error: Dict[str, Any] = commands_of_run[-1] + error_str: int = len(run_command_error.get("error", "")) + except IndexError: + error_str = 0 if error_str > 1: error_type = run_command_error["error"].get("errorType", "") error_code = run_command_error["error"].get("errorCode", "") @@ -309,6 +329,8 @@ def get_error_info(file_results: Dict[str, Any]) -> Tuple[int, str, str, str, st code_error = error[1] if code_error == error_code: error_level = error[4] + if len(error_level) < 1: + error_level = str(4) return num_of_errors, error_type, error_code, error_instrument, error_level @@ -323,13 +345,12 @@ def write_to_local_and_google_sheet( """Write data dictionary to google sheet and local csv.""" sheet_location = os.path.join(storage_directory, file_name) file_exists = os.path.exists(sheet_location) and os.path.getsize(sheet_location) > 0 - list_of_runs = list(runs_and_robots.keys()) with open(sheet_location, "a", newline="") as f: writer = csv.writer(f) if not file_exists: writer.writerow(header) - for run in range(len(list_of_runs)): - row = runs_and_robots[list_of_runs[run]].values() + for run in runs_and_robots: + row = runs_and_robots[run].values() row_list = list(row) writer.writerow(row_list) google_sheet.write_header(header) @@ -486,11 +507,10 @@ def get_logs(storage_directory: str, ip: str) -> List[str]: ) response.raise_for_status() log_data = response.text - log_name = ip + "_" + log_type.split(".")[0] + ".json" + log_name = ip + "_" + log_type.split(".")[0] + ".log" file_path = os.path.join(storage_directory, log_name) with open(file_path, mode="w", encoding="utf-8") as file: - file.write(response.text) - json.dump(log_data, open(file_path, mode="w")) + file.write(log_data) except RuntimeError: print(f"Request exception. Did not save {log_type}") continue diff --git a/abr-testing/abr_testing/data_collection/single_run_log_reader.py b/abr-testing/abr_testing/data_collection/single_run_log_reader.py index df078929338..5304842b550 100644 --- a/abr-testing/abr_testing/data_collection/single_run_log_reader.py +++ b/abr-testing/abr_testing/data_collection/single_run_log_reader.py @@ -15,16 +15,8 @@ nargs=1, help="Folder path that holds individual run logs of interest.", ) - parser.add_argument( - "google_sheet_name", - metavar="GOOGLE_SHEET_NAME", - type=str, - nargs=1, - help="Google sheet name.", - ) args = parser.parse_args() run_log_file_path = args.run_log_file_path[0] - google_sheet_name = args.google_sheet_name[0] try: credentials_path = os.path.join(run_log_file_path, "credentials.json") @@ -33,10 +25,15 @@ sys.exit() # Get Runs from Storage and Read Logs run_ids_in_storage = read_robot_logs.get_run_ids_from_storage(run_log_file_path) - runs_and_robots, header = abr_google_drive.create_data_dictionary( - run_ids_in_storage, run_log_file_path, "" + ( + runs_and_robots, + header, + runs_and_lpc, + lpc_headers, + ) = abr_google_drive.create_data_dictionary( + run_ids_in_storage, run_log_file_path, "", "", "" ) - list_of_runs = list(runs_and_robots.keys()) + transposed_list = list(zip(*runs_and_robots)) # Adds Run to local csv sheet_location = os.path.join(run_log_file_path, "saved_data.csv") file_exists = os.path.exists(sheet_location) and os.path.getsize(sheet_location) > 0 @@ -44,8 +41,6 @@ writer = csv.writer(f) if not file_exists: writer.writerow(header) - for run in list_of_runs: + for run in transposed_list: # Add new row - row = runs_and_robots[run].values() - row_list = list(row) - writer.writerow(row_list) + writer.writerow(run) diff --git a/abr-testing/abr_testing/tools/abr_lpc.py b/abr-testing/abr_testing/tools/abr_lpc.py new file mode 100644 index 00000000000..c39e9017edb --- /dev/null +++ b/abr-testing/abr_testing/tools/abr_lpc.py @@ -0,0 +1,56 @@ +"""Automated LPC Data Analysis.""" +import os +import argparse +from abr_testing.automation import google_sheets_tool +import sys + + +def remove_duplicate_data() -> None: + """Determine unique sets of data.""" + seen = set() + new_values = [] + row_indices = [] + sheet_data = google_sheet_lpc.get_all_data() + for i, row in enumerate(sheet_data): + key = ( + row["Robot"], + row["Software Version"], + row["Errors"], + row["Slot"], + row["Module"], + row["Adapter"], + row["X"], + row["Y"], + row["Z"], + ) + + if key not in seen: + seen.add(key) + new_values.append(row) + else: + row_indices.append(i) + if len(row_indices) > 0: + google_sheet_lpc.batch_delete_rows(row_indices) + + +if __name__ == "__main__": + parser = argparse.ArgumentParser(description="Read run logs on google drive.") + parser.add_argument( + "storage_directory", + metavar="STORAGE_DIRECTORY", + type=str, + nargs=1, + help="Path to long term storage directory for run logs.", + ) + args = parser.parse_args() + storage_directory = args.storage_directory[0] + try: + credentials_path = os.path.join(storage_directory, "credentials.json") + except FileNotFoundError: + print(f"Add credentials.json file to: {storage_directory}.") + sys.exit() + google_sheet_lpc = google_sheets_tool.google_sheet(credentials_path, "ABR-LPC", 0) + print(len(google_sheet_lpc.get_all_data())) + remove_duplicate_data() + num_of_rows = print(len(google_sheet_lpc.get_all_data())) + # TODO: automate data analysis diff --git a/abr-testing/abr_testing/tools/abr_scale.py b/abr-testing/abr_testing/tools/abr_scale.py index 75c887d4ecc..16860a50be7 100644 --- a/abr-testing/abr_testing/tools/abr_scale.py +++ b/abr-testing/abr_testing/tools/abr_scale.py @@ -4,8 +4,120 @@ from hardware_testing.drivers import find_port, list_ports_and_select # type: ignore[import] from hardware_testing.drivers.radwag import RadwagScale # type: ignore[import] import argparse -from abr_testing.data_collection import read_robot_logs +from abr_testing.data_collection import read_robot_logs, abr_google_drive, get_run_logs from abr_testing.automation import google_sheets_tool +import requests +from typing import Any, Tuple +import sys + + +def get_protocol_step_as_int() -> Tuple[int, int, str]: + """Get user input as integer.""" + expected_liquid_moved = 0 + ip = "" + while True: + try: + protocol_step = int(input("Measurement Step (1, 2, 3): ")) + if protocol_step in [1, 2, 3]: + break + else: + print("Protocol step should be one of the values: 1, 2, or 3.") + except ValueError: + print("Protocol step should be an integer value 1, 2, or 3.") + + if int(protocol_step) == 3: + ip = input("Robot IP: ") + while True: + try: + expected_liquid_moved = int(input("Expected volume moved: ")) + if expected_liquid_moved >= 0: + break + except ValueError: + print("Expected liquid moved volume should be an integer.") + return protocol_step, expected_liquid_moved, ip + + +def get_all_plate_readings( + robot: str, plate: str, mass_3: float, expected_moved: int, google_sheet: Any +) -> float: + """Calculate accuracy of liquid moved on final measurement step.""" + accuracy = 0.0 + all_data = google_sheet.get_all_data() + # Get mass of first reading + mass_1_readings = [] + for row in all_data: + if ( + row["Robot"] == robot + and row["Labware"] == plate + and (int(row["Measurement Step"]) == 1) + ): + mass_1_readings.append(row["Mass (g)"]) + if len(mass_1_readings) > 0: + mass_1 = mass_1_readings[-1] + else: + print( + f"Initial mass for plate {plate} on robot {robot} not found. Check sheet." + ) + sys.exit() + # Get mass of second reading + mass_2_readings = [] + for row in all_data: + if ( + row["Robot"] == robot + and row["Labware"] == plate + and (int(row["Measurement Step"]) == 2) + ): + mass_2_readings.append(row["Mass (g)"]) + if len(mass_2_readings) > 0: + mass_2 = mass_2_readings[-1] + starting_liquid = 1000 * (mass_2 - mass_1) + else: + starting_liquid = 0 + actual_moved = ((mass_3 - mass_1) * 1000) - starting_liquid + accuracy = ((float(expected_moved) - actual_moved) / actual_moved) * 100 + return accuracy + + +def get_most_recent_run_and_record( + ip: str, storage_directory: str, labware: str, accuracy: float +) -> None: + """Write accuracy level to google sheet.""" + # Get most recent run + try: + response = requests.get( + f"http://{ip}:31950/runs", headers={"opentrons-version": "3"} + ) + except Exception: + print( + f"ERROR: Failed to read IP address {ip}. Accuracy was not recorded on sheet." + ) + sys.exit() + run_data = response.json() + run_list = run_data["data"] + most_recent_run_id = run_list[-1]["id"] + results = get_run_logs.get_run_data(most_recent_run_id, ip) + # Save run information to local directory as .json file + read_robot_logs.save_run_log_to_json(ip, results, storage_directory) + # Record run to google sheets. + print(most_recent_run_id) + ( + runs_and_robots, + headers, + runs_and_lpc, + headers_lpc, + ) = abr_google_drive.create_data_dictionary( + most_recent_run_id, storage_directory, "", labware, accuracy + ) + google_sheet_abr_data = google_sheets_tool.google_sheet( + credentials_path, "ABR-run-data", tab_number=0 + ) + start_row = google_sheet_abr_data.get_index_row() + 1 + google_sheet_abr_data.batch_update_cells(runs_and_robots, "A", start_row, "0") + print("Wrote run to ABR-run-data") + # Add LPC to google sheet + google_sheet_lpc = google_sheets_tool.google_sheet(credentials_path, "ABR-LPC", 0) + start_row_lpc = google_sheet_lpc.get_index_row() + 1 + google_sheet_lpc.batch_update_cells(runs_and_lpc, "A", start_row_lpc, "0") if __name__ == "__main__": @@ -25,25 +137,7 @@ nargs=1, help="Name of google sheet and local csv to save data to.", ) - parser.add_argument("robot", metavar="ROBOT", type=str, nargs=1, help="Robot name.") - parser.add_argument( - "labware_name", - metavar="LABWARE_NAME", - type=str, - nargs=1, - help="Name of labware.", - ) - parser.add_argument( - "protocol_step", - metavar="PROTOCOL_STEP", - type=str, - nargs=1, - help="1 for empty plate, 2 for filled plate, 3 for end of protocol.", - ) args = parser.parse_args() - robot = args.robot[0] - labware = args.labware_name[0] - protocol_step = args.protocol_step[0] storage_directory = args.storage_directory[0] file_name = args.file_name[0] file_name_csv = file_name + ".csv" @@ -65,12 +159,14 @@ # Set up google sheet try: credentials_path = os.path.join(storage_directory, "credentials.json") - google_sheet = google_sheets_tool.google_sheet( - credentials_path, file_name, tab_number=0 - ) - print("Connected to google sheet.") except FileNotFoundError: print("No google sheets credentials. Add credentials to storage notebook.") + google_sheet = google_sheets_tool.google_sheet( + credentials_path, file_name, tab_number=0 + ) + robot = input("Robot: ") + labware = input("Labware: ") + protocol_step, expected_liquid_moved, ip = get_protocol_step_as_int() # Scale Loop grams, is_stable = scale.read_mass() @@ -90,6 +186,14 @@ read_robot_logs.write_to_sheets( sheet_location, google_sheet, row_list, headers ) + if int(protocol_step) == 3: + # Calculate accuracy of plate + accuracy = get_all_plate_readings( + robot, labware, grams, expected_liquid_moved, google_sheet + ) + # Connect to robot - get most recent run - write run data to google sheet. + get_most_recent_run_and_record(ip, storage_directory, labware, accuracy) + is_stable = False y_or_no = input("Do you want to weigh another sample? (Y/N): ") if y_or_no == "Y": @@ -98,7 +202,7 @@ is_stable = False robot = input("Robot: ") labware = input("Labware: ") - protocol_step = input("Measurement Step (1,2,3): ") + protocol_step, expected_liquid_moved, ip = get_protocol_step_as_int() grams, is_stable = scale.read_mass() elif y_or_no == "N": break_all = True diff --git a/api-client/src/calibration/types.ts b/api-client/src/calibration/types.ts index c14ce57e64a..f1ca7559c1d 100644 --- a/api-client/src/calibration/types.ts +++ b/api-client/src/calibration/types.ts @@ -1,4 +1,4 @@ -import { Mount } from '../pipettes' +import type { Mount } from '../pipettes' export interface PipOffsetDeletionParams { calType: 'pipetteOffset' diff --git a/api-client/src/modules/__fixtures__/index.ts b/api-client/src/modules/__fixtures__/index.ts index abba8731561..bae11279f43 100644 --- a/api-client/src/modules/__fixtures__/index.ts +++ b/api-client/src/modules/__fixtures__/index.ts @@ -7,6 +7,7 @@ export const mockModulesResponse = [ hasAvailableUpdate: false, moduleType: 'thermocyclerModuleType', moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: true, data: { status: 'holding at target', currentTemperature: 3.0, @@ -31,6 +32,7 @@ export const mockModulesResponse = [ hasAvailableUpdate: false, moduleType: 'heaterShakerModuleType', moduleModel: 'heaterShakerModuleV1', + compatibleWithRobot: true, data: { status: 'idle', labwareLatchStatus: 'idle_unknown', @@ -55,6 +57,7 @@ export const mockModulesResponse = [ hasAvailableUpdate: false, moduleType: 'temperatureModuleType', moduleModel: 'temperatureModuleV1', + compatibleWithRobot: true, data: { status: 'holding at target', currentTemperature: 3.0, @@ -75,6 +78,7 @@ export const mockModulesResponse = [ hasAvailableUpdate: false, moduleType: 'magneticModuleType', moduleModel: 'magneticModuleV1', + compatibleWithRobot: true, data: { status: 'engaged', engaged: true, @@ -89,6 +93,29 @@ export const mockModulesResponse = [ }, ] +export const mockUnknownModuleResponse = [ + ...mockModulesResponse, + { + name: 'unknown', + displayName: 'UnknownModule', + moduleModel: 'unknownModule', + port: '/dev/unknown', + usbPort: { + port: 0, + hub: false, + portGroup: 'unknown', + path: '', + }, + serial: 'dummySerialMD', + model: 'unknown_v1.1', + revision: 'unknown_v1.1', + fwVersion: 'dummyVersionMD', + hasAvailableUpdate: false, + status: 'engaged', + data: {}, + }, +] + export const v2MockModulesResponse = [ { name: 'thermocycler', diff --git a/api-client/src/modules/api-types.ts b/api-client/src/modules/api-types.ts index eaee20cf498..60203dba15e 100644 --- a/api-client/src/modules/api-types.ts +++ b/api-client/src/modules/api-types.ts @@ -1,6 +1,8 @@ -import { ModuleType } from '@opentrons/shared-data' - -import type { Coordinates, ModuleModel } from '@opentrons/shared-data' +import type { + ModuleType, + Coordinates, + ModuleModel, +} from '@opentrons/shared-data' type PortGroup = 'main' | 'left' | 'right' | 'front' | 'unknown' interface PhysicalPort { @@ -34,6 +36,7 @@ export interface ApiBaseModule { firmwareVersion: string hasAvailableUpdate: boolean usbPort: PhysicalPort + compatibleWithRobot?: boolean moduleOffset?: ModuleOffset } diff --git a/api-client/src/modules/types.ts b/api-client/src/modules/types.ts index 9514f64d412..f138680dafd 100644 --- a/api-client/src/modules/types.ts +++ b/api-client/src/modules/types.ts @@ -3,16 +3,14 @@ import type { ThermocyclerModuleModel, MagneticModuleModel, HeaterShakerModuleModel, -} from '@opentrons/shared-data' - -import { TEMPERATURE_MODULE_TYPE, MAGNETIC_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, } from '@opentrons/shared-data' -import * as ApiTypes from './api-types' +import type * as ApiTypes from './api-types' + export * from './api-types' // common types diff --git a/api-client/src/protocols/__tests__/utils.test.ts b/api-client/src/protocols/__tests__/utils.test.ts index 8be565de451..c400538518d 100644 --- a/api-client/src/protocols/__tests__/utils.test.ts +++ b/api-client/src/protocols/__tests__/utils.test.ts @@ -14,7 +14,7 @@ import { } from '../utils' import { simpleAnalysisFileFixture } from '../__fixtures__' -import { RunTimeCommand } from '@opentrons/shared-data' +import type { RunTimeCommand } from '@opentrons/shared-data' const mockRunTimeCommands: RunTimeCommand[] = simpleAnalysisFileFixture.commands as any const mockLoadLiquidRunTimeCommands = [ diff --git a/api-client/src/request.ts b/api-client/src/request.ts index 87b4997925b..00c0bab63e4 100644 --- a/api-client/src/request.ts +++ b/api-client/src/request.ts @@ -1,6 +1,11 @@ -import axios, { AxiosRequestConfig } from 'axios' - -import type { Method, AxiosPromise, AxiosResponse } from 'axios' +import Axios from 'axios' + +import type { + AxiosRequestConfig, + Method, + AxiosPromise, + AxiosResponse, +} from 'axios' import type { HostConfig } from './types' export type ResponsePromise = AxiosPromise @@ -26,7 +31,12 @@ export function request( config: HostConfig, params?: AxiosRequestConfig['params'] ): ResponsePromise { - const { hostname, port, requestor = axios.request, token } = config + const { + hostname, + port, + requestor = (...args) => Axios.request(...args), + token, + } = config const tokenHeader = token != null ? { authenticationBearer: token } : {} const headers = { ...DEFAULT_HEADERS, ...tokenHeader } diff --git a/api-client/src/runs/commands/types.ts b/api-client/src/runs/commands/types.ts index d0b443b297a..1bcdadcc15f 100644 --- a/api-client/src/runs/commands/types.ts +++ b/api-client/src/runs/commands/types.ts @@ -15,16 +15,18 @@ export interface CommandDetail { } export interface CommandsLinks { - current: { - // link to the currently executing command - href: string - meta: { - runId: string - commandId: string - key: string - createdAt: string - index: number - } + current?: CommandsLink | null + currentlyRecoveringFrom?: CommandsLink | null +} + +interface CommandsLink { + href: string + meta: { + runId: string + commandId: string + key: string + createdAt: string + index: number } } @@ -43,11 +45,5 @@ export interface CommandsAsPreSerializedListData { export interface CreateCommandParams { waitUntilComplete?: boolean timeout?: number -} - -export interface RunCommandError { - id: string - errorType: string - createdAt: string - detail: string + failedCommandId?: string } diff --git a/api-client/src/runs/types.ts b/api-client/src/runs/types.ts index 761a60a8112..2e04320a17d 100644 --- a/api-client/src/runs/types.ts +++ b/api-client/src/runs/types.ts @@ -46,6 +46,7 @@ export interface LegacyGoodRunData { errors: RunError[] pipettes: LoadedPipette[] labware: LoadedLabware[] + liquids: Liquid[] modules: LoadedModule[] liquids: Liquid[] protocolId?: string diff --git a/api-client/src/sessions/createSession.ts b/api-client/src/sessions/createSession.ts index 61c6941637b..ffb1846bb70 100644 --- a/api-client/src/sessions/createSession.ts +++ b/api-client/src/sessions/createSession.ts @@ -3,7 +3,7 @@ import { POST, request } from '../request' import type { ResponsePromise } from '../request' import type { HostConfig } from '../types' import type { Session } from './types' -import { SessionType } from '.' +import type { SessionType } from '.' export interface CreateSessionData { sessionType: SessionType diff --git a/api/Pipfile b/api/Pipfile index 7be11b82934..e37e6e1c5f9 100755 --- a/api/Pipfile +++ b/api/Pipfile @@ -11,6 +11,7 @@ opentrons-shared-data = { editable = true, path = "../shared-data/python" } opentrons = { editable = true, path = "." } opentrons-hardware = { editable = true, path = "./../hardware", extras=["FLEX"] } numpy = "==1.22.3" +pyusb = "==1.2.1" [dev-packages] # atomicwrites and colorama are pytest dependencies on windows, diff --git a/api/Pipfile.lock b/api/Pipfile.lock index 94643ce22a7..b08815e2656 100644 --- a/api/Pipfile.lock +++ b/api/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "a531665bfd7452ea19565ee95137118966532a8ab5475b7d5ee086ada333e627" + "sha256": "8a1eb02e26b3ae9d690880546729375c7b74c8e53a8f1806eefdbeac5829dc67" }, "pipfile-spec": 6, "requires": {}, @@ -48,11 +48,11 @@ }, "exceptiongroup": { "hashes": [ - "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14", - "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68" + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" ], "markers": "python_version < '3.11'", - "version": "==1.2.0" + "version": "==1.2.1" }, "idna": { "hashes": [ @@ -162,7 +162,7 @@ }, "opentrons": { "editable": true, - "markers": "python_version >= '3.8'", + "markers": "python_version >= '3.10'", "path": "." }, "opentrons-hardware": { @@ -174,7 +174,7 @@ }, "opentrons-shared-data": { "editable": true, - "markers": "python_version >= '3.8'", + "markers": "python_version >= '3.10'", "path": "../shared-data/python" }, "packaging": { @@ -280,6 +280,15 @@ ], "version": "==4.2.2" }, + "pyusb": { + "hashes": [ + "sha256:2b4c7cb86dbadf044dfb9d3a4ff69fd217013dbe78a792177a3feb172449ea36", + "sha256:a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9" + ], + "index": "pypi", + "markers": "python_full_version >= '3.6.0'", + "version": "==1.2.1" + }, "setuptools": { "hashes": [ "sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987", @@ -408,19 +417,19 @@ }, "babel": { "hashes": [ - "sha256:6919867db036398ba21eb5c7a0f6b28ab8cbc3ae7a73a44ebe34ae74a4e7d363", - "sha256:efb1a25b7118e67ce3a259bed20545c29cb68be8ad2c784c83689981b7a57287" + "sha256:08706bdad8d0a3413266ab61bd6c34d0c28d6e1e7badf40a2cebe67644e2e1fb", + "sha256:8daf0e265d05768bc6c7a314cf1321e9a123afc328cc635c18622a2f30a04413" ], - "markers": "python_version >= '3.7'", - "version": "==2.14.0" + "markers": "python_version >= '3.8'", + "version": "==2.15.0" }, "backports.tarfile": { "hashes": [ - "sha256:2688f159c21afd56a07b75f01306f9f52c79aebcc5f4a117fb8fbb4445352c75", - "sha256:bcd36290d9684beb524d3fe74f4a2db056824c47746583f090b8e55daf0776e4" + "sha256:73e0179647803d3726d82e76089d01d8549ceca9bace469953fcb4d97cf2d417", + "sha256:9c2ef9696cb73374f7164e17fc761389393ca76777036f5aad42e8b93fcd8009" ], "markers": "python_version < '3.12'", - "version": "==1.0.0" + "version": "==1.1.1" }, "black": { "hashes": [ @@ -460,64 +469,6 @@ "markers": "python_version >= '3.6'", "version": "==2024.2.2" }, - "cffi": { - "hashes": [ - "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc", - "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a", - "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417", - "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab", - "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520", - "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36", - "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743", - "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8", - "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed", - "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684", - "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56", - "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324", - "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d", - "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235", - "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e", - "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088", - "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000", - "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7", - "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e", - "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673", - "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c", - "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe", - "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2", - "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098", - "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8", - "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a", - "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0", - "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b", - "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896", - "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e", - "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9", - "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2", - "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b", - "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6", - "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404", - "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f", - "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0", - "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4", - "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc", - "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936", - "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba", - "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872", - "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb", - "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614", - "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1", - "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d", - "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969", - "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b", - "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4", - "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627", - "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956", - "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357" - ], - "markers": "platform_python_implementation != 'PyPy'", - "version": "==1.16.0" - }, "charset-normalizer": { "hashes": [ "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", @@ -742,44 +693,6 @@ "markers": "python_version >= '3.8'", "version": "==7.4.1" }, - "cryptography": { - "hashes": [ - "sha256:0270572b8bd2c833c3981724b8ee9747b3ec96f699a9665470018594301439ee", - "sha256:111a0d8553afcf8eb02a4fea6ca4f59d48ddb34497aa8706a6cf536f1a5ec576", - "sha256:16a48c23a62a2f4a285699dba2e4ff2d1cff3115b9df052cdd976a18856d8e3d", - "sha256:1b95b98b0d2af784078fa69f637135e3c317091b615cd0905f8b8a087e86fa30", - "sha256:1f71c10d1e88467126f0efd484bd44bca5e14c664ec2ede64c32f20875c0d413", - "sha256:2424ff4c4ac7f6b8177b53c17ed5d8fa74ae5955656867f5a8affaca36a27abb", - "sha256:2bce03af1ce5a5567ab89bd90d11e7bbdff56b8af3acbbec1faded8f44cb06da", - "sha256:329906dcc7b20ff3cad13c069a78124ed8247adcac44b10bea1130e36caae0b4", - "sha256:37dd623507659e08be98eec89323469e8c7b4c1407c85112634ae3dbdb926fdd", - "sha256:3eaafe47ec0d0ffcc9349e1708be2aaea4c6dd4978d76bf6eb0cb2c13636c6fc", - "sha256:5e6275c09d2badf57aea3afa80d975444f4be8d3bc58f7f80d2a484c6f9485c8", - "sha256:6fe07eec95dfd477eb9530aef5bead34fec819b3aaf6c5bd6d20565da607bfe1", - "sha256:7367d7b2eca6513681127ebad53b2582911d1736dc2ffc19f2c3ae49997496bc", - "sha256:7cde5f38e614f55e28d831754e8a3bacf9ace5d1566235e39d91b35502d6936e", - "sha256:9481ffe3cf013b71b2428b905c4f7a9a4f76ec03065b05ff499bb5682a8d9ad8", - "sha256:98d8dc6d012b82287f2c3d26ce1d2dd130ec200c8679b6213b3c73c08b2b7940", - "sha256:a011a644f6d7d03736214d38832e030d8268bcff4a41f728e6030325fea3e400", - "sha256:a2913c5375154b6ef2e91c10b5720ea6e21007412f6437504ffea2109b5a33d7", - "sha256:a30596bae9403a342c978fb47d9b0ee277699fa53bbafad14706af51fe543d16", - "sha256:b03c2ae5d2f0fc05f9a2c0c997e1bc18c8229f392234e8a0194f202169ccd278", - "sha256:b6cd2203306b63e41acdf39aa93b86fb566049aeb6dc489b70e34bcd07adca74", - "sha256:b7ffe927ee6531c78f81aa17e684e2ff617daeba7f189f911065b2ea2d526dec", - "sha256:b8cac287fafc4ad485b8a9b67d0ee80c66bf3574f655d3b97ef2e1082360faf1", - "sha256:ba334e6e4b1d92442b75ddacc615c5476d4ad55cc29b15d590cc6b86efa487e2", - "sha256:ba3e4a42397c25b7ff88cdec6e2a16c2be18720f317506ee25210f6d31925f9c", - "sha256:c41fb5e6a5fe9ebcd58ca3abfeb51dffb5d83d6775405305bfa8715b76521922", - "sha256:cd2030f6650c089aeb304cf093f3244d34745ce0cfcc39f20c6fbfe030102e2a", - "sha256:cd65d75953847815962c84a4654a84850b2bb4aed3f26fadcc1c13892e1e29f6", - "sha256:e4985a790f921508f36f81831817cbc03b102d643b5fcb81cd33df3fa291a1a1", - "sha256:e807b3188f9eb0eaa7bbb579b462c5ace579f1cedb28107ce8b48a9f7ad3679e", - "sha256:f12764b8fffc7a123f641d7d049d382b73f96a34117e0b637b80643169cec8ac", - "sha256:f8837fe1d6ac4a8052a9a8ddab256bc006242696f03368a4009be7ee3075cdb7" - ], - "markers": "python_version >= '3.7'", - "version": "==42.0.5" - }, "cycler": { "hashes": [ "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", @@ -807,11 +720,11 @@ }, "exceptiongroup": { "hashes": [ - "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14", - "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68" + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" ], "markers": "python_version < '3.11'", - "version": "==1.2.0" + "version": "==1.2.1" }, "execnet": { "hashes": [ @@ -972,19 +885,11 @@ }, "jaraco.functools": { "hashes": [ - "sha256:c279cb24c93d694ef7270f970d499cab4d3813f4e08273f95398651a634f0925", - "sha256:daf276ddf234bea897ef14f43c4e1bf9eefeac7b7a82a4dd69228ac20acff68d" + "sha256:3b24ccb921d6b593bdceb56ce14799204f473976e2a9d4b15b04d0f2c2326664", + "sha256:d33fa765374c0611b52f8b3a795f8900869aa88c84769d4d1746cd68fb28c3e8" ], "markers": "python_version >= '3.8'", - "version": "==4.0.0" - }, - "jeepney": { - "hashes": [ - "sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806", - "sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755" - ], - "markers": "sys_platform == 'linux'", - "version": "==0.8.0" + "version": "==4.0.1" }, "jinja2": { "hashes": [ @@ -1006,11 +911,11 @@ }, "keyring": { "hashes": [ - "sha256:26fc12e6a329d61d24aa47b22a7c5c3f35753df7d8f2860973cf94f4e1fb3427", - "sha256:7230ea690525133f6ad536a9b5def74a4bd52642abe594761028fc044d7c7893" + "sha256:2458681cdefc0dbc0b7eb6cf75d0b98e59f9ad9b2d4edd319d18f68bdca95e50", + "sha256:daaffd42dbda25ddafb1ad5fec4024e5bbcfe424597ca1ca452b299861e49f1b" ], "markers": "python_version >= '3.8'", - "version": "==25.1.0" + "version": "==25.2.1" }, "kiwisolver": { "hashes": [ @@ -1362,7 +1267,7 @@ }, "opentrons-shared-data": { "editable": true, - "markers": "python_version >= '3.8'", + "markers": "python_version >= '3.10'", "path": "../shared-data/python" }, "packaging": { @@ -1470,19 +1375,19 @@ }, "platformdirs": { "hashes": [ - "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068", - "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768" + "sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf", + "sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1" ], "markers": "python_version >= '3.8'", - "version": "==4.2.0" + "version": "==4.2.1" }, "pluggy": { "hashes": [ - "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981", - "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be" + "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", + "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" ], "markers": "python_version >= '3.8'", - "version": "==1.4.0" + "version": "==1.5.0" }, "py": { "hashes": [ @@ -1500,14 +1405,6 @@ "markers": "python_version >= '3.8'", "version": "==2.11.1" }, - "pycparser": { - "hashes": [ - "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", - "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc" - ], - "markers": "python_version >= '3.8'", - "version": "==2.22" - }, "pydantic": { "hashes": [ "sha256:0fe8a415cea8f340e7a9af9c54fc71a649b43e8ca3cc732986116b3cb135d303", @@ -1569,11 +1466,11 @@ }, "pygments": { "hashes": [ - "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c", - "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367" + "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", + "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a" ], - "markers": "python_version >= '3.7'", - "version": "==2.17.2" + "markers": "python_version >= '3.8'", + "version": "==2.18.0" }, "pyparsing": { "hashes": [ @@ -1731,14 +1628,6 @@ "markers": "python_full_version >= '3.7.0'", "version": "==13.7.1" }, - "secretstorage": { - "hashes": [ - "sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77", - "sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99" - ], - "markers": "sys_platform == 'linux'", - "version": "==3.3.3" - }, "six": { "hashes": [ "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", @@ -1878,12 +1767,12 @@ }, "types-mock": { "hashes": [ - "sha256:0769cb376dfc75b45215619f17a9fd6333d771cc29ce4a38937f060b1e45530f", - "sha256:7472797986d83016f96fde7f73577d129b0cd8a8d0b783487a7be330d57ba431" + "sha256:5281a645d72e827d70043e3cc144fe33b1c003db084f789dc203aa90e812a5a4", + "sha256:d586a01d39ad919d3ddcd73de6cde73ca7f3c69707219f722d1b8d7733641ad7" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==5.1.0.20240311" + "version": "==5.1.0.20240425" }, "types-setuptools": { "hashes": [ diff --git a/api/docs/ot1/api.html b/api/docs/ot1/api.html index 4ffc84e4db8..dacc12850a2 100644 --- a/api/docs/ot1/api.html +++ b/api/docs/ot1/api.html @@ -446,7 +446,7 @@ data-gtm-label="start-guide" data-gtm-action="click" >OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • OT-2 Start Guide - You recieved your robot, here's what's next + You received your robot, here's what's next
  • ` — to avoid those situations. + +Build on a Task +=============== + +Consider what scientific task is at the heart of your protocol, and build parameters that contribute to, rather than diverge from it. + +For 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't 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. + +Also consider how a small number of parameters can combine to produce many useful outputs. Take the serial dilution task from the :ref:`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×4 grid that rapidly dilutes, and *thousands* of other combinations. + +Consider Contradictions +======================= + +Here's a common time-saving use of parameters: your protocol requires a 1-channel pipette and an 8-channel pipette, but it doesn't matter which mount they're 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'd have to either physically swap the pipettes or modify your protocol. + +One 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 "left" to both questions — even by accident — the API will raise an error, because you can't load two pipettes on a single mount. It's 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 "successfully" on a robot with two 1-channel pipettes, but produce completely unintended results. + +The 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: + +- It avoids analysis errors. +- It avoids potentially dangerous execution errors. +- It only requires answering one question instead of two. +- The :ref:`phrasing of the question and answer ` makes it clear that the protocol requires exactly one of each pipette type. + +Set Boundaries +============== + +Numerical parameters support minimum and maximum values, which you should set to avoid incorrect inputs that are outside of your protocol's possibile actions. + +Consider 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. + +- *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. +- *Dilution factor* is a ratio, which we can express as a decimal number that must be between 0 and 1. +- *Number of rows* must be between 1 and 8 on a 96-well plate. + +What if you wanted to perform a dilution with 20 repetitions? It's 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 — either switching the plate type or loading an additional plate based on the provided value. + +But 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's up to you as the protocol author to decide if adding more parameters will make protocol setup overly difficult. Sometimes it's more efficient to work with two or three simple protocols rather than one that's long and complex. \ No newline at end of file diff --git a/api/docs/v2/parameters/defining.rst b/api/docs/v2/parameters/defining.rst new file mode 100644 index 00000000000..6b596ec8a0a --- /dev/null +++ b/api/docs/v2/parameters/defining.rst @@ -0,0 +1,181 @@ +:og:description: Define and set possible values for parameters in Opentrons Python protocols. + +.. _defining-rtp: + +******************* +Defining Parameters +******************* + +To use parameters, you need to define them in :ref:`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. + +Depending on the :ref:`type of parameter `, you'll need to specify some or all of the following. + +.. list-table:: + :header-rows: 1 + + * - Attribute + - Details + * - ``variable_name`` + - + - A unique name for :ref:`referencing the parameter value ` elsewhere in the protocol. + - Must meet the usual requirements for `naming objects in Python `__. + * - ``display_name`` + - + - A label for the parameter shown in the Opentrons App or on the touchscreen. + - Maximum 30 characters. + * - ``description`` + - + - An optional longer explanation of what the parameter does, or how its values will affect the execution of the protocol. + - Maximum 100 characters. + * - ``default`` + - + - The value the parameter will have if the technician makes no changes to it during run setup. + * - ``minimum`` and ``maximum`` + - + - For numeric parameters only. + - Allows free entry of any value within the range (inclusive). + - Both values are required. + - Can't be used at the same time as ``choices``. + * - ``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't be used at the same time as ``minimum`` and ``maximum``. + * - ``units`` + - + - Optional, for numeric parameters with ``minimum`` and ``maximum`` only. + - Displays after the number during run setup. + - Does not affect the parameter's value or protocol execution. + - Maximum 10 characters. + + + +.. _add-parameters: + +The ``add_parameters()`` Function +================================= + +All 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. + +The examples on this page assume the following definition, which uses the argument name ``parameters``. The type specification of the argument is optional. + +.. code-block:: + + def add_parameters(parameters: protocol_api.Parameters): + +Within this function definition, call methods on ``parameters`` to define parameters. The next section demonstrates how each type of parameter has its own method. + +.. _rtp-types: + +Types of Parameters +=================== + +The API supports four types of parameters: Boolean (:py:class:`bool`), integer (:py:class:`int`), floating point number (:py:class:`float`), and string (:py:class:`str`). It is not possible to mix types within a single parameter. + +Boolean Parameters +------------------ + +Boolean parameters are ``True`` or ``False`` only. + +.. code-block:: + + parameters.add_bool( + variable_name="dry_run", + display_name="Dry Run", + description="Skip incubation delays and shorten mix steps.", + default=False + ) + +During 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. + +.. versionadded:: 2.18 + +Integer Parameters +------------------ + +Integer parameters either accept a range of numbers or a list of numbers. You must specify one or the other; you can't create an open-ended prompt that accepts any integer. + +To specify a range, include ``minimum`` and ``maximum``. + +.. code-block:: + + parameters.add_int( + variable_name="volume", + display_name="Aspirate volume", + description="How much to aspirate from each sample.", + default=20, + minimum=10, + maximum=100, + unit="µL" + ) + +During 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. + +To 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. + +.. code-block:: + + parameters.add_int( + variable_name="volume", + display_name="Aspirate volume", + description="How much to aspirate from each sample.", + default=20, + choices=[ + {"display_name": "Low (10 µL)", "value": 10}, + {"display_name": "Medium (20 µL)", "value": 20}, + {"display_name": "High (50 µL)", "value": 50}, + ] + ) + +During run setup, the technician can choose from a menu of the provided choices. + +.. versionadded:: 2.18 + +Float Parameters +---------------- + +Float parameters either accept a range of numbers or a list of numbers. You must specify one or the other; you can't create an open-ended prompt that accepts any floating point number. + +Specifying 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. + +.. code-block:: + + parameters.add_float( + variable_name="volume", + display_name="Aspirate volume", + description="How much to aspirate from each sample.", + default=5.0, + choices=[ + {"display_name": "Low (2.5 µL)", "value": 2.5}, + {"display_name": "Medium (5 µL)", "value": 5.0}, + {"display_name": "High (10 µL)", "value": 10.0}, + ] + ) + +.. versionadded:: 2.18 + +String Parameters +----------------- + +String parameters only accept a list of values. You can't currently prompt for free text entry of a string value. + +To 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. + +A 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. + +.. code-block:: + + parameters.add_str( + variable_name="pipette", + display_name="Pipette type", + choices=[ + {"display_name": "1-Channel 50 µL", "value": "flex_1channel_50"}, + {"display_name": "8-Channel 50 µL", "value": "flex_8channel_50"}, + ], + default="flex_1channel_50", + ) + +During run setup, the technician can choose from a menu of the provided choices. + +.. versionadded:: 2.18 diff --git a/api/docs/v2/parameters/style.rst b/api/docs/v2/parameters/style.rst new file mode 100644 index 00000000000..04e4ef1e36f --- /dev/null +++ b/api/docs/v2/parameters/style.rst @@ -0,0 +1,137 @@ +:og:description: Style and usage guidance for parameters in Opentrons Python protocols. + +.. _rtp-style: + +********************* +Parameter Style Guide +********************* + +It's important to write clear names and descriptions when you :ref:`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. + +Adopting 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. + +General Guidance +================ + +**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. + +Don't ask questions or put other sentence punctuation in parameter names. For example: + +.. list-table:: + + * - ✅ Dry run + - ❌ Dry run? + * - ✅ Sample count + - ❌ How many samples? + * - ✅ Number of samples + - ❌ Number of samples to process. + + +**Parameter descriptions explain actions.** In one or two clauses or sentences, state when and how the parameter value is used in the protocol. Don't merely restate the parameter name. + +Punctuate descriptions as sentences, even if they aren't complete sentences. For example: + +.. list-table:: + :header-rows: 1 + :widths: 1 3 + + * - Parameter name + - Parameter description + * - Dry run + - + - ✅ Skip incubation delays and shorten mix steps. + - ❌ Whether to do a dry run. + * - Aspirate volume + - + - ✅ How much to aspirate from each sample. + - ❌ Volume that the pipette will aspirate + * - Dilution factor + - + - ✅ Each step uses this ratio of total liquid to original solution. Express the ratio as a decimal. + - ❌ total/diluent ratio for the process + +Not every parameter requires a description! For example, in a protocol that uses only one pipette, it would be difficult to explain a parameter named "Pipette type" without repeating yourself. In a protocol that offers parameters for two different pipettes, it may be useful to summarize what steps each pipette performs. + +**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: + +.. list-table:: + + * - ✅ Number of samples + - ❌ number of samples + * - ✅ Temperature Module slot + - ❌ Temperature module slot + * - ✅ Dilution factor + - ❌ Dilution Factor + +**Use numerals for all numbers.** In a scientific context, this includes single-digit numbers. Additionally, punctuate numbers according to the needs of your protocol's users. If you plan to share your protocol widely, consider using American English number punctuation (comma for thousands separator; period for decimal separator). + +**Order choices logically.** Place items within the ``choices`` attribute in the order that makes sense for your application. + +Numeric 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: + +.. list-table:: + + * - ✅ -3, -2, -1, 0, 1, 2, 3 + - ❌ 0, 1, -1, 2, -2, 3, -3 + * - ✅ 3, 2, 1, 0, -1, -2, -3 + - + +String choices may have an intrinsic ordering. If they don't, fall back to alphabetical order. + +.. list-table:: + :header-rows: 1 + + * - Parameter name + - Parameter description + * - Liquid color + - + - ✅ Red, Orange, Yellow, Green, Blue, Violet + - ❌ Blue, Green, Orange, Red, Violet, Yellow + * - Tube brand + - + - ✅ Eppendorf, Falcon, Generic, NEST + - ❌ Falcon, NEST, Eppendorf, Generic + +Type-Specific Guidance +====================== + +Booleans +-------- + +The ``True`` value of a Boolean corresponds to the word *On* and the ``False`` value corresponds to the word *Off*. + +**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's meaning! For example, it's difficult to reason about what will happen when a parameter named "Deactivate module" is set to "Off". + +**When in doubt, clarify in the description.** If you feel like you need to add extra clarity to your Boolean choices, use the phrase "When on" or "When off" at the beginning of your description. For example, a parameter named "Dry run" could have the description "When on, skip protocol delays and return tips instead of trashing them." + +Number Choices +-------------- + +**Don't repeat text in choices.** Rely on the name and description to indicate what the number refers to. It's OK to add units to the display names of numeric choices, because the ``unit`` attribute is ignored when you specify ``choices``. + +.. list-table:: + :header-rows: 1 + + * - Parameter name + - Parameter description + * - Number of columns + - + - ✅ 1, 2, 3 + - ❌ 1 column, 2 columns, 3 columns + * - Aspirate volume + - + - ✅ 10 µL, 20 µL, 50 µL + - ✅ Low (10 µL), Medium (20 µL), High (50 µL) + - ❌ Low volume, Medium volume, High volume + +**Use a range instead of choices when all values are acceptable.** It's faster and easier to enter a numeric value than to choose from a long list. For example, a "Number of columns" 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). + +Strings +------- + +**Avoid strings that are synonymous with "yes" and "no".** When presenting exactly two string choices, consider their meaning. Can they be rephrased in terms of "yes/no", "true/false", or "on/off"? If no, then a string parameter is appropriate. If yes, it's better to use a Boolean, which appears in run setup as a toggle rather than a dropdown menu. + + - ✅ Blue, Red + - ✅ Left-to-right, Right-to-left + - ❌ Include, Exclude + - ❌ Yes, No diff --git a/api/docs/v2/parameters/use_case_dry_run.rst b/api/docs/v2/parameters/use_case_dry_run.rst new file mode 100644 index 00000000000..d23cd2aeb9c --- /dev/null +++ b/api/docs/v2/parameters/use_case_dry_run.rst @@ -0,0 +1,127 @@ +:og:description: How to set up and use a dry run parameter in an Opentrons Python protocol. + +.. _use-case-dry-run: + +**************************** +Parameter Use Case – Dry Run +**************************** + +When testing out a new protocol, it's 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're performing a dry run. + +The code examples will show how this single value can control: + +- Skipping module actions and long delays. +- Reducing mix repetitions to save time. +- Returning tips (that never touched any liquid) to their racks. + +To 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. + +Dry Run Definition +================== + +First, 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'll use a Boolean parameter:: + + def add_parameters(parameters): + + parameters.add_bool( + variable_name="dry_run", + display_name="Dry Run", + description=( + "Skip delays," + " shorten mix steps," + " and return tips to their racks." + ), + default=False + ) + +This 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. + +Additionally, since "dry run" can have different meanings in different contexts, it's important to include a ``description`` that indicates exactly what the parameter will control — 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``. + +Skipping Delays +=============== + +Many 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. + +To start, let's consider a simple :py:meth:`.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:: + + if protocol.params.dry_run is False: + protocol.delay(minutes=5) + +You 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'll want to perform all the movement steps — opening and closing the module lid, and moving the plate to and from the block — 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:: + + protocol.move_labware(labware=plate, new_location=tc_mod, use_gripper=True) + if protocol.params.dry_run is False: + tc_mod.set_block_temperature(4) + tc_mod.set_lid_temperature(100) + tc_mod.close_lid() + pcr_profile = [ + {"temperature": 68, "hold_time_seconds": 180}, + {"temperature": 98, "hold_time_seconds": 180}, + ] + if protocol.params.dry_run is False: + tc_mod.execute_profile( + steps=pcr_profile, repetitions=1, block_max_volume=50 + ) + tc_mod.open_lid() + +Shortening Mix Steps +==================== + +Similar 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 :py:meth:`.mix`:: + + if protocol.params.dry_run is True: + mix_reps = 1 + else: + mix_reps = 10 + pipette.mix(repetitions=mix_reps, volume=50, location=plate["A1"].bottom()) + +Note that this checks whether the dry run parameter is ``True``. If you prefer to set up all your ``if`` statements to check whether it's ``False``, you can reverse the logic:: + + if protocol.params.dry_run is False: + mix_reps = 10 + else: + mix_reps = 1 + +Returning Tips +============== + +Tips used in a dry run should be reusable — for another dry run, if nothing else. It doesn't 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 :py:meth:`.drop_tip` or :py:meth:`.return_tip` based on the value of ``protocol.params.dry_run``. If the protocol doesn't have too many tip drop actions, you can use an ``if`` statement each time:: + + if protocol.params.dry_run is True: + pipette.return_tip() + else: + pipette.drop_tip() + +However, repeating this block every time you handle tips could significantly clutter your code. Instead, you could define it as a function:: + + def return_or_drop(pipette): + if protocol.params.dry_run is True: + pipette.return_tip() + else: + pipette.drop_tip() + +Then call that function throughout your protocol:: + + pipette.pick_up_tip() + return_or_drop(pipette) + +.. note:: + + It's generally better to define a standalone function, rather than adding a method to the :py:class:`.InstrumentContext` class. This makes your custom, parameterized commands stand out from API methods in your code. + +Additionally, if your protocol uses enough tips that you have to replenish tip racks, you'll need separate behavior for dry runs and live runs. In a live run, once you've used all the tips, the rack is empty, because the tips are in the trash. In a dry run, once you've used all the tips in a rack, the rack is *full*, because you returned the tips. + +The API has methods to handle both of these situations. To continue using the same tip rack without physically replacing it, call :py:meth:`.reset_tipracks`. In the live run, move the empty tip rack off the deck and move a full one into place:: + + if protocol.params.dry_run is True: + pipette.reset_tipracks() + else: + protocol.move_labware( + labware=tips_1, new_location=chute, use_gripper=True + ) + protocol.move_labware( + labware=tips_2, new_location="C3", use_gripper=True + ) + +You 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 — instead of dropping it down the chute, spilling all the tips — and have the gripper move a new rack into place. Ultimately, it's up to you to fine-tune your dry run behavior, and communicate it to your protocol's users with your parameter descriptions. diff --git a/api/docs/v2/parameters/use_case_sample_count.rst b/api/docs/v2/parameters/use_case_sample_count.rst new file mode 100644 index 00000000000..15933752592 --- /dev/null +++ b/api/docs/v2/parameters/use_case_sample_count.rst @@ -0,0 +1,273 @@ +:og:description: How to set up and use a sample count parameter in an Opentrons Python protocol. + +.. _use-case-sample-count: + +********************************* +Parameter Use Case – Sample Count +********************************* + +Choosing 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. + +At first glance, it might seem like sample count would primarily affect liquid transfers to and from sample wells. But when using the Python API's full range of capabilities, it affects: + +- How many tip racks to load. +- The initial volume and placement of reagents. +- Pipetting to and from samples. +- If and when tip racks need to be replaced. + +To 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. + +From Samples to Columns +======================= + +First of all, we need to set up the sample count parameter so it's both easy for technicians to understand during protocol setup and easy for us to use in the protocol's ``run()`` function. + +We want to limit the number of samples to 8, 16, 24, or 32, so we'll use an integer parameter with choices:: + + def add_parameters(parameters): + + parameters.add_int( + variable_name="sample_count", + display_name="Sample count", + description="Number of input DNA samples.", + default=24, + choices=[ + {"display_name": "8", "value": 8}, + {"display_name": "16", "value": 16}, + {"display_name": "24", "value": 24}, + {"display_name": "32", "value": 32}, + ] + ) + +All 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:: + + def run(protocol): + + column_count = protocol.params.sample_count // 8 + +Most examples below will use ``column_count``, rather than redoing (and retyping!) this calculation multiple times. + +Loading Tip Racks +================= + +Tip 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. + +We 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't have to load extra items onto the deck. So it's best to examine the protocol's steps and determine how many racks are needed for each value of ``sample_count``. + +In the case of this DNA prep protocol, we can create formulas for the number of 200 µL and 50 µL tip racks needed. The following factors go into these computations: + +- 50 µL tips + - 1 fixed action that picks up once per protocol. + - 7 variable actions that pick up once per sample column. +- 200 µL tips + - 2 fixed actions that pick up once per protocol. + - 11 variable actions that pick up once per sample column. + +Since 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 — performing 13 pickups requires 2 racks. The :py:func:`math.ceil` method rounds up to the nearest integer. We'll add ``from math import ceil`` at the top of the protocol and then calculate the number of tip racks as follows:: + + tip_rack_50_count = ceil((1 + 7 * column_count) / 12) + tip_rack_200_count = ceil((2 + 13 * column_count) / 12) + +Running 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're running this protocol on a Flex with staging area slots, they'll all fit! (If you don't have staging area slots, you can load labware off-deck instead.) We'll reserve these slots for the different size racks:: + + tip_rack_50_slots = ["B3", "C3", "B4"] + tip_rack_200_slots = ["A2", "B2", "A3", "A4"] + +Finally, we can combine this information to call :py:meth:`~.ProtocolContext.load_labware`. Depending on the number of racks needed, we'll slice that number of elements from the slot list and use a `list comprehension `__ to gather up the loaded tip racks. For the 50 µL tips, this would look like:: + + tip_racks_50 = [ + protocol.load_labware( + load_name="opentrons_flex_96_tiprack_50ul", + location=slot + ) + for slot in tip_rack_50_slots[:tip_rack_50_count] + ] + +Then 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:: + + # calculate column count from sample count + column_count = protocol.params.sample_count // 8 + + # calculate number of required tip racks + tip_rack_50_count = ceil((1 + 7 * column_count) / 12) + tip_rack_200_count = ceil((2 + 13 * column_count) / 12) + + # assign tip rack locations (maximal case) + tip_rack_50_slots = ["B3", "C3", "B4"] + tip_rack_200_slots = ["A2", "B2", "A3", "A4"] + + # create lists of loaded tip racks + # limit to number of needed racks for each type + tip_racks_50 = [ + protocol.load_labware( + load_name="opentrons_flex_96_tiprack_50ul", + location=slot + ) + for slot in tip_rack_50_slots[:tip_rack_50_count] + ] + tip_racks_200 = [ + protocol.load_labware( + load_name="opentrons_flex_96_tiprack_200ul", + location=slot + ) + for slot in tip_rack_200_slots[:tip_rack_200_count] + ] + + pipette_50 = protocol.load_instrument( + instrument_name="flex_8channel_50", + mount="right", + tip_racks=tip_racks_50 + ) + pipette_1000 = protocol.load_instrument( + instrument_name="flex_1channel_1000", + mount="left", + tip_racks=tip_racks_200 + ) + +This code will load as few as 3 tip racks and as many as 7, and associate them with the correct pipettes — all based on a single choice from a dropdown menu at run setup. + +Loading Liquids +=============== + +Next come the reagents, samples, and the labware that holds them. + +The required volume of each reagent is dependent on the sample count. While the full protocol defines more than ten liquids, we'll show three reagents plus the samples here. + +First, let's load a reservoir and :ref:`define ` the three example liquids. Definitions only specify the name, description, and display color, so our sample count parameter doesn't come into play yet:: + + # labware to hold reagents + reservoir = protocol.load_labware( + load_name="nest_12_reservoir_15ml", location="C2" + ) + + # reagent liquid definitions + ampure_liquid = protocol.define_liquid( + name="AMPure", description="AMPure Beads", display_color="#704848" + ) + tagstop_liquid = protocol.define_liquid( + name="TAGSTOP", description="Tagmentation Stop", display_color="#FF0000" + ) + twb_liquid = protocol.define_liquid( + name="TWB", description="Tagmentation Wash Buffer", display_color="#FFA000" + ) + +Now we'll bring sample count into consideration as we :ref:`load the liquids `. The application requires the following volumes for each column of samples: + +.. list-table:: + :header-rows: 1 + + * - Liquid + - | Volume + | (µL per column) + * - AMPure Beads + - 180 + * - Tagmentation Stop + - 10 + * - Tagmentation Wash Buffer + - 900 + +To calculate the total volume for each liquid, we'll 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 :py:meth:`.load_liquid`:: + + reservoir["A1"].load_liquid( + liquid=ampure_liquid, volume=180 * column_count * 1.1 + ) + reservoir["A2"].load_liquid( + liquid=tagstop_liquid, volume=10 * column_count * 1.1 + ) + reservoir["A4"].load_liquid( + liquid=twb_liquid, volume=900 * column_count * 1.1 + ) + +Now, for example, the volume of AMPure beads to load will vary from 198 µL for a single sample column up to 792 µL for four columns. + +.. tip:: + + Does telling a technician to load 792 µL 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 µL:: + + volume=ceil((180 * column_count * 1.1) / 10) * 10 + +Finally, it's good practice to label the wells where the samples reside. The sample plate starts out atop the Heater-Shaker Module: + +.. code-block:: + + hs_mod = protocol.load_module( + module_name="heaterShakerModuleV1", location="D1" + ) + hs_adapter = hs_mod.load_adapter(name="opentrons_96_pcr_adapter") + sample_plate = hs_adapter.load_labware( + name="opentrons_96_wellplate_200ul_pcr_full_skirt", + label="Sample Plate", + ) + +Now 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 :py:meth:`.Labware.wells()` accessor returns wells top-to-bottom, left-to-right:: + + # define sample liquid + sample_liquid = protocol.define_liquid( + name="Samples", description=None, display_color="#52AAFF" + ) + + # load 40 µL in each sample well + for w in range(protocol.params.sample_count): + sample_plate.wells()[w].load_liquid(liquid=sample_liquid, volume=40) + +Processing Samples +================== + +When it comes time to process the samples, we'll 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. + +For pipetting in the original sample locations, we'll command the 50 µL pipette to move to some or all of A1–A4 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:: + + for w in ["A1", "A2", "A3", "A4"][:column_count]: + pipette_50.pick_up_tip() + pipette_50.aspirate(volume=13, location=reservoir["A2"].bottom()) + pipette_50.dispense(volume=3, location=reservoir["A2"].bottom()) + pipette_50.dispense(volume=10, location=sample_plate[w].bottom()) + pipette_50.move_to(location=sample_plate[w].bottom()) + pipette_50.mix(repetitions=10, volume=20) + pipette_50.blow_out(location=sample_plate[w].top(z=-2)) + pipette_50.drop_tip() + +Each 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. + +Later steps of the protocol will move intermediate samples to the middle of the plate (columns 5–8) and final samples to the right side of the plate (columns 9–12). When moving directly from one set of columns to another, we have to track *both lists* with the ``for`` loop. The :py:func:`zip` function lets us pair up the lists of well names and step through them in parallel:: + + for initial, intermediate in zip( + ["A1", "A2", "A3", "A4"][:column_count], + ["A5", "A6", "A7", "A8"][:column_count], + ): + pipette_50.pick_up_tip() + pipette_50.aspirate(volume=13, location=sample_plate[initial]) + pipette_50.dispense(volume=13, location=sample_plate[intermediate]) + pipette_50.drop_tip() + +This will transfer from column 1 to 5, 2 to 6, and so on — depending on the number of samples chosen during run setup. + +Replenishing Tips +================= + +For the higher values of ``protocol.params.sample_count``, the protocol will load tip racks in the staging area slots (column 4). Since pipettes can't reach these slots, we need to move these tip racks into the working area (columns 1–3) before issuing a pipetting command that targets them, or the API will raise an error. + +A protocol without parameters will always run out of tips at the same time — just add a :py:meth:`.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. + +In our simplified example, we know that when the sample count is 32, the first 200 µL tip rack will be exhausted after three stages of pipetting using the 1000 µL pipette. So, after that step, we could add:: + + if protocol.params.sample_count == 32: + protocol.move_labware( + labware=tip_racks_200[0], + new_location=chute, + use_gripper=True, + ) + protocol.move_labware( + labware=tip_racks_200[-1], + new_location="A2", + use_gripper=True, + ) + +This will replace the first 200 µL tip rack (in slot A2) with the last 200 µL tip rack (in the staging area). + +However, 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 :py:obj:`.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:: + + if tip_racks_200[0].wells()[-1].has_tip is False: + # same move_labware() steps as above + +For a protocol that uses tips at a faster rate than this one — such that it might exhaust a tip rack in a single ``for`` loop of pipetting steps — 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 :py:meth:`.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. diff --git a/api/docs/v2/parameters/using_values.rst b/api/docs/v2/parameters/using_values.rst new file mode 100644 index 00000000000..b0d3b1a4151 --- /dev/null +++ b/api/docs/v2/parameters/using_values.rst @@ -0,0 +1,94 @@ +:og:description: Access parameter values in Opentrons Python protocols. + +.. _using-rtp: + +**************** +Using Parameters +**************** + +Once you've :ref:`defined parameters `, their values are accessible anywhere within the ``run()`` function of your protocol. + +The ``params`` Object +===================== + +Protocols with parameters have a :py:obj:`.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. + +For example, consider a protocol that defines the following three parameters: + +- ``add_bool`` with ``variable_name="dry_run"`` +- ``add_int`` with ``variable_name="sample_count"`` +- ``add_float`` with ``variable_name="volume"`` + +Then ``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. + +.. code-block:: + + if protocol.params.dry_run is False: + pipette.mix(repetitions=10, volume=protocol.params.volume) + +You can also save parameter values to variables with names of your choosing. + +Parameter Types +=============== + +Each attribute of ``params`` has the type corresponding to its parameter definition. Keep in mind the parameter's type when using its value in different contexts. + +Say 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'll need to cast it to a ``str`` or the API will raise an error. + +.. code-block:: + + protocol.comment( + "Processing " + str(protocol.params.sample_count) + " samples." + ) + +Also 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 :ref:`sample count use case ` converts a sample count to a column count by dividing by 8 — 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. + +Limitations +=========== + +Since ``params`` is only available within the ``run()`` function, there are certain aspects of a protocol that parameter values can't affect. These include, but are not limited to the following: + + +.. list-table:: + :header-rows: 1 + + * - Information + - Location + * - ``import`` statements + - At the beginning of the protocol. + * - Robot type (Flex or OT-2) + - In the ``requirements`` dictionary. + * - API version + - In the ``requirements`` or ``metadata`` dictionary. + * - Protocol name + - In the ``metadata`` dictionary. + * - Protocol description + - In the ``metadata`` dictionary. + * - Protocol author + - In the ``metadata`` dictionary. + * - Other runtime parameters + - In the ``add_parameters()`` function. + * - Non-nested function definitions + - Anywhere outside of ``run()``. + +Additionally, keep in mind that updated parameter values are applied by reanalyzing the protocol. This means you can't depend on updated values for any action that takes place *prior to reanalysis*. + +An 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:: + + # within add_parameters() + parameters.add_str( + variable_name="plate_type", + display_name="Well plate type", + choices=[ + {"display_name": "Corning", "value": "corning_96_wellplate_360ul_flat"}, + {"display_name": "NEST", "value": "nest_96_wellplate_200ul_flat"}, + ], + default="corning_96_wellplate_360ul_flat", + ) + + # within run() + plate = protocol.load_labware( + load_name="protocol.params.plate_type", location="D2" + ) + +When performing run setup, you're prompted to apply offsets before selecting parameter values. This is your only opportunity to apply offsets, so they're applied for the default parameter values — in this case, the Corning plate. If you then change the "Well plate type" 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 :py:meth:`.Labware.set_offset` in your protocol. diff --git a/api/docs/v2/pipettes/partial_tip_pickup.rst b/api/docs/v2/pipettes/partial_tip_pickup.rst index a1e78fed570..a2ca1e614a3 100644 --- a/api/docs/v2/pipettes/partial_tip_pickup.rst +++ b/api/docs/v2/pipettes/partial_tip_pickup.rst @@ -23,7 +23,7 @@ For greater convenience, also import the individual layout constants that you pl from opentrons.protocol_api import COLUMN, ALL -Then when you call ``configure_nozzle_layout`` later in your protocol, you can set ``style=COLUMN``. +Then when you call ``configure_nozzle_layout`` later in your protocol, you can set ``style=COLUMN``. Here 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. @@ -106,6 +106,10 @@ When switching between full and partial pickup, you may want to organize your ti partial_tip_racks = [tips_1, tips_2] full_tip_racks = [tips_3, tips_4] +.. Tip:: + + It's 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. + Now, when you configure the nozzle layout, you can reference the appropriate list as the value of ``tip_racks``:: pipette.configure_nozzle_layout( @@ -120,7 +124,7 @@ Now, when you configure the nozzle layout, you can reference the appropriate lis tip_racks=full_tip_racks ) pipette.pick_up_tip() # picks up full rack in C1 - + This 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. @@ -135,12 +139,7 @@ The API will raise errors for potential labware crashes when using a column nozz - Simulate your protocol and compare the run preview to your expectations of where the pipette will travel. - Perform a dry run with only tip racks on the deck. Have the Emergency Stop Pendant handy in case you see an impending crash. -For column pickup, Opentrons recommends using the nozzles in column 12 of the pipette. - -Using Column 12 ---------------- - -The examples in this section use a 96-channel pipette configured to pick up tips with column 12:: +For column pickup, Opentrons recommends using the nozzles in column 12 of the pipette:: pipette.configure_nozzle_layout( style=COLUMN, @@ -164,9 +163,6 @@ You would get a similar error trying to aspirate from or dispense into a well pl When 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. -Using Column 1 --------------- - If your application can't accommodate a deck layout that works well with column 12, you can configure the 96-channel pipette to pick up tips with column 1:: pipette.configure_nozzle_layout( @@ -174,16 +170,6 @@ If your application can't accommodate a deck layout that works well with column start="A1", ) -The major drawback of this configuration, compared to using column 12, is that tip tracking is not available with column 1. You must always specify a ``location`` parameter for :py:meth:`.pick_up_tip`. This *requires careful tip tracking* so you don't place the pipette over more than a single column of unused tips at once. You can write some additional code to manage valid tip pickup locations, like this:: - - tip_rack = protocol.load_labware("opentrons_flex_96_tiprack_1000ul", "C1") - pipette.configure_nozzle_layout(style=COLUMN, start="A1") - row_a = tip_rack.rows()[0] - pipette.pick_up_tip(row_a.pop()) # pick up A12-H12 - pipette.drop_tip() - pipette.pick_up_tip(row_a.pop()) # pick up A11-H11 - pipette.drop_tip() - -This code first constructs a list of all the wells in row A of the tip rack. Then, when picking up a tip, instead of referencing one of those wells directly, the ``location`` is set to ``row_a.pop()``. This uses the `built-in pop method `_ to get the last item from the list and remove it from the list. If you keep using this approach to pick up tips, you'll get an error once the tip rack is empty — not from the API, but from Python itself, since you're trying to ``pop`` an item from an empty list. +.. note:: -Additionally, you can't access the rightmost columns in labware in column 3, since they are beyond the movement limit of the pipette. The exact number of inaccessible columns varies by labware type. Any well that is within 29 mm of the right edge of the slot may be inaccessible in a column 1 configuration. Call ``configure_nozzle_layout()`` again to switch to a column 12 layout if you need to pipette in that area. + When using a column 1 layout, the pipette can't reach the rightmost portion of labware in slots A3–D3. 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. \ No newline at end of file diff --git a/api/docs/v2/robot_position.rst b/api/docs/v2/robot_position.rst index 8b2ed762e71..a0e5e7579f3 100644 --- a/api/docs/v2/robot_position.rst +++ b/api/docs/v2/robot_position.rst @@ -21,6 +21,8 @@ Top, Bottom, and Center Every 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. +.. _well-top: + Top ^^^^ @@ -116,6 +118,31 @@ All positions relative to labware are adjusted automatically based on labware of You 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 :ref:`using_lpc` in the Advanced Control article for information. +.. _position-relative-trash: + +Position Relative to Trash Containers +===================================== + +Movement to :py:class:`.TrashBin` or :py:class:`.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. + +.. note:: + In API version 2.15 and earlier, trash containers are :py:class:`.Labware` objects that have a single well. See :py:obj:`.fixed_trash` and :ref:`position-relative-labware` above. + +You can adjust the position of the pipette center with the :py:meth:`.TrashBin.top` and :py:meth:`.WasteChute.top` methods. These methods allow adjustments along the x-, y-, and z-axes. In contrast, ``Well.top()``, :ref:`covered above `, only allows z-axis adjustment. With no adjustments, the "top" position is centered on the x- and y-axes and is just below the opening of the trash container. + +.. code-block:: python + + trash = protocol.load_trash_bin("A3") + + trash # pipette center just below trash top center + trash.top() # same position + trash.top(z=10) # 10 mm higher + trash.top(y=10) # 10 mm towards back, default height + +.. versionadded:: 2.18 + +Another difference between the trash container ``top()`` methods and ``Well.top()`` is that they return an object of the same type, not a :py:class:`.Location`. This helps prevent performing undesired actions in trash containers. For example, you can :py:meth:`.aspirate` at a location or from a well, but not from a trash container. On the other hand, you can :py:meth:`.blow_out` at a location, well, trash bin, or waste chute. + .. _protocol-api-deck-coords: Position Relative to the Deck diff --git a/api/docs/v2/runtime_parameters.rst b/api/docs/v2/runtime_parameters.rst new file mode 100644 index 00000000000..71689eedb50 --- /dev/null +++ b/api/docs/v2/runtime_parameters.rst @@ -0,0 +1,29 @@ +:og:description: Define and customize parameters in Opentrons Python protocols. + +.. _runtime-parameters: + +****************** +Runtime Parameters +****************** + +.. toctree:: + parameters/choosing + parameters/defining + parameters/using_values + parameters/use_case_sample_count + parameters/use_case_dry_run + parameters/style + +Runtime 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 — without forcing them to switch between lots of protocol files or write code themselves. + +This section begins with the fundamentals of runtime parameters: + +- Preliminary advice on how to :ref:`choose good parameters `, before you start writing code. +- The syntax for :ref:`defining parameters ` with boolean, numeric, and string values. +- How to :ref:`use parameter values ` in your protocol, building logic and API calls that implement the technician's choices. + +It 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. + +- :ref:`Use case – 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. +- :ref:`Use case – dry run `: Test your protocol, rather than perform a live run, just by flipping a toggle. +- :ref:`Style and usage `: When you're a protocol author, you write code. When you're a parameter author, you write words. Follow this advice to make things as clear as possible for the technicians who will run your protocol. diff --git a/api/docs/v2/tutorial.rst b/api/docs/v2/tutorial.rst index 473ad6e40c0..b36becf8131 100644 --- a/api/docs/v2/tutorial.rst +++ b/api/docs/v2/tutorial.rst @@ -21,7 +21,9 @@ Before You Begin You're going to write some Python code, but you don't 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’ll also be using `common control structures `_ like ``if`` statements and ``for`` loops. -To run your code, make sure that you've installed `Python 3 `_ and the `pip package installer `_. You 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``. +You 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``. + +To simulate your code, you'll need `Python 3.10 `_ and the `pip package installer `_. Newer versions of Python aren't yet supported by the Python Protocol API. If you don't use Python 3.10 as your system Python, we recommend using `pyenv `_ to manage multiple Python versions. Hardware and Labware -------------------- @@ -262,7 +264,7 @@ In each row, you first need to add solution. This will be similar to what you di .. code-block:: python - left_pipette.transfer(100, reservoir["A2"], row[0], mix_after(3, 50)) + left_pipette.transfer(100, reservoir["A2"], row[0], mix_after=(3, 50)) As before, the first argument specifies to transfer 100 µL. 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 µL of fluid each time. @@ -275,7 +277,7 @@ Finally, it’s time to dilute the solution down the row. One approach would be .. code-block:: python - left_pipette.transfer(100, row[:11], row[1:], mix_after(3, 50)) + left_pipette.transfer(100, row[:11], row[1:], mix_after=(3, 50)) There’s some Python shorthand here, so let’s unpack it. You can get a range of indices from a list using the colon ``:`` operator, and omitting it at either end means “from the beginning” or “until the end” 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’re 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. @@ -339,13 +341,7 @@ To see a text preview of the steps your Flex or OT-2 will take, use the change d opentrons_simulate dilution-tutorial.py -This should generate a lot of output! As written, the protocol has about 1000 steps. If you’re curious how long that will take, you can use an experimental feature to estimate the time: - -.. prompt:: bash - - opentrons_simulate dilution-tutorial.py -e -o nothing - -The ``-e`` flag estimates duration, and ``-o nothing`` suppresses printing the run log. This indicates that using a single-channel pipette for serial dilution across the whole plate will take about half an hour — plenty of time to grab a coffee while your robot pipettes for you! ☕️ +This 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 — plenty of time to grab a coffee while your robot pipettes for you! ☕️ If that’s too long, you can always cancel your run partway through or modify ``for i in range(8)`` to loop through fewer rows. diff --git a/api/docs/v2/versioning.rst b/api/docs/v2/versioning.rst index 5819bee4b47..b2391fc7041 100644 --- a/api/docs/v2/versioning.rst +++ b/api/docs/v2/versioning.rst @@ -68,7 +68,7 @@ The maximum supported API version for your robot is listed in the Opentrons App If you upload a protocol that specifies a higher API level than the maximum supported, your robot won't be able to analyze or run your protocol. You can increase the maximum supported version by updating your robot software and Opentrons App. -Opentrons robots running the latest software (7.2.0) support the following version ranges: +Opentrons robots running the latest software (7.3.0) support the following version ranges: * **Flex:** version 2.15–|apiLevel|. * **OT-2:** versions 2.0–|apiLevel|. @@ -84,6 +84,8 @@ This table lists the correspondence between Protocol API versions and robot soft +-------------+------------------------------+ | API Version | Introduced in Robot Software | +=============+==============================+ +| 2.18 | 7.3.0 | ++-------------+------------------------------+ | 2.17 | 7.2.0 | +-------------+------------------------------+ | 2.16 | 7.1.0 | @@ -128,6 +130,14 @@ This table lists the correspondence between Protocol API versions and robot soft Changes in API Versions ======================= +Version 2.18 +------------ + +- Define customizable parameters with the new ``add_parameters()`` function, and access their values on the :py:obj:`.ProtocolContext.params` object during a protocol run. See :ref:`runtime-parameters` and related pages for more information. +- Move the pipette to positions relative to the top of a trash container. See :ref:`position-relative-trash`. The default behavior of :py:meth:`.drop_tip` also accounts for this new possibility. +- :py:meth:`.set_offset` has been restored to the API with new behavior that applies to labware type–location pairs. +- Automatic tip tracking is now available for all nozzle configurations. + Version 2.17 ------------ diff --git a/api/mypy.ini b/api/mypy.ini index 6cbbea90d34..5aff10a0c61 100644 --- a/api/mypy.ini +++ b/api/mypy.ini @@ -4,7 +4,7 @@ show_error_codes = True warn_unused_configs = True strict = True # TODO(mc, 2021-09-12): work through and remove these exclusions -exclude = tests/opentrons/(hardware_control/test_(?!(ot3|module_control)).*py|hardware_control/integration/|hardware_control/emulation/|hardware_control/modules/|protocols/advanced_control/|protocols/api_support/|protocols/duration/|protocols/execution/|protocols/fixtures/|protocols/geometry/) +exclude = tests/opentrons/(hardware_control/test_(?!(ot3|module_control|modules|thread_manager)).*py|hardware_control/integration/|hardware_control/emulation/|hardware_control/modules/|protocols/advanced_control/|protocols/api_support/|protocols/duration/|protocols/execution/|protocols/fixtures/|protocols/geometry/) [pydantic-mypy] init_forbid_extra = True diff --git a/api/src/opentrons/__init__.py b/api/src/opentrons/__init__.py index ac4e0c54262..086c663da0e 100755 --- a/api/src/opentrons/__init__.py +++ b/api/src/opentrons/__init__.py @@ -115,16 +115,14 @@ async def _create_thread_manager() -> ThreadManagedHardware: from opentrons.hardware_control.ot3api import OT3API thread_manager = ThreadManager( - OT3API.build_hardware_controller, + ThreadManager.nonblocking_builder(OT3API.build_hardware_controller), use_usb_bus=ff.rear_panel_integration(), - threadmanager_nonblocking=True, status_bar_enabled=ff.status_bar_enabled(), feature_flags=hw_types.HardwareFeatureFlags.build_from_ff(), ) else: thread_manager = ThreadManager( - HardwareAPI.build_hardware_controller, - threadmanager_nonblocking=True, + ThreadManager.nonblocking_builder(HardwareAPI.build_hardware_controller), port=_get_motor_control_serial_port(), firmware=_find_smoothie_file(), feature_flags=hw_types.HardwareFeatureFlags.build_from_ff(), diff --git a/api/src/opentrons/config/defaults_ot3.py b/api/src/opentrons/config/defaults_ot3.py index 0b2499feaab..9dccb1566d8 100644 --- a/api/src/opentrons/config/defaults_ot3.py +++ b/api/src/opentrons/config/defaults_ot3.py @@ -25,7 +25,6 @@ DEFAULT_LIQUID_PROBE_SETTINGS: Final[LiquidProbeSettings] = LiquidProbeSettings( starting_mount_height=100, max_z_distance=40, - min_z_distance=5, mount_speed=10, plunger_speed=5, sensor_threshold_pascals=40, @@ -337,7 +336,6 @@ def _build_default_liquid_probe( "starting_mount_height", default.starting_mount_height ), max_z_distance=from_conf.get("max_z_distance", default.max_z_distance), - min_z_distance=from_conf.get("min_z_distance", default.min_z_distance), mount_speed=from_conf.get("mount_speed", default.mount_speed), plunger_speed=from_conf.get("plunger_speed", default.plunger_speed), sensor_threshold_pascals=from_conf.get( diff --git a/api/src/opentrons/config/types.py b/api/src/opentrons/config/types.py index f13d5a5e6e3..476c3181dc2 100644 --- a/api/src/opentrons/config/types.py +++ b/api/src/opentrons/config/types.py @@ -130,7 +130,6 @@ class OutputOptions(int, Enum): class LiquidProbeSettings: starting_mount_height: float max_z_distance: float - min_z_distance: float mount_speed: float plunger_speed: float sensor_threshold_pascals: float diff --git a/api/src/opentrons/drivers/absorbance_reader/__init__.py b/api/src/opentrons/drivers/absorbance_reader/__init__.py new file mode 100644 index 00000000000..9b127df97b3 --- /dev/null +++ b/api/src/opentrons/drivers/absorbance_reader/__init__.py @@ -0,0 +1,11 @@ +from .abstract import AbstractAbsorbanceReaderDriver +from .driver import AbsorbanceReaderDriver +from .simulator import SimulatingDriver +from .hid_protocol import AbsorbanceHidInterface + +__all__ = [ + "AbstractAbsorbanceReaderDriver", + "AbsorbanceReaderDriver", + "SimulatingDriver", + "AbsorbanceHidInterface", +] diff --git a/api/src/opentrons/drivers/absorbance_reader/abstract.py b/api/src/opentrons/drivers/absorbance_reader/abstract.py new file mode 100644 index 00000000000..769de38253e --- /dev/null +++ b/api/src/opentrons/drivers/absorbance_reader/abstract.py @@ -0,0 +1,45 @@ +from abc import ABC, abstractmethod +from typing import Dict, List +from opentrons.drivers.types import AbsorbanceReaderLidStatus + + +class AbstractAbsorbanceReaderDriver(ABC): + @abstractmethod + async def connect(self) -> None: + """Connect to absorbance reader""" + ... + + @abstractmethod + async def disconnect(self) -> None: + """Disconnect from absorbance reader""" + ... + + @abstractmethod + async def is_connected(self) -> bool: + """Check connection to absorbance reader""" + ... + + @abstractmethod + async def get_lid_status(self) -> AbsorbanceReaderLidStatus: + ... + + @abstractmethod + async def get_available_wavelengths(self) -> List[int]: + ... + + @abstractmethod + async def get_single_measurement(self, wavelength: int) -> List[float]: + ... + + @abstractmethod + async def initialize_measurement(self, wavelength: int) -> None: + ... + + @abstractmethod + async def get_status(self) -> None: + ... + + @abstractmethod + async def get_device_info(self) -> Dict[str, str]: + """Get device info""" + ... diff --git a/api/src/opentrons/drivers/absorbance_reader/async_byonoy.py b/api/src/opentrons/drivers/absorbance_reader/async_byonoy.py new file mode 100644 index 00000000000..1d5465db342 --- /dev/null +++ b/api/src/opentrons/drivers/absorbance_reader/async_byonoy.py @@ -0,0 +1,272 @@ +from __future__ import annotations + +import asyncio +import re +from concurrent.futures.thread import ThreadPoolExecutor +from functools import partial +from typing import Optional, List, Dict +import usb.core as usb_core # type: ignore[import-untyped] + + +from .hid_protocol import AbsorbanceHidInterface as AbsProtocol, ErrorCodeNames +from opentrons.drivers.types import ( + AbsorbanceReaderLidStatus, + AbsorbanceReaderPlatePresence, +) +from opentrons.drivers.rpi_drivers.types import USBPort + + +SN_PARSER = re.compile(r'ATTRS{serial}=="(?P.+?)"') + + +class AsyncByonoy: + """Async wrapper around Byonoy Device Library.""" + + @staticmethod + def match_device_with_sn( + sn: str, devices: List[AbsProtocol.Device] + ) -> AbsProtocol.Device: + for device in devices: + if device.sn == sn: + return device + raise RuntimeError(f"Unavailble module with serial number: {sn}") + + @staticmethod + def serial_number_from_port(name: str) -> str: + """ + Get the serial number from a port using pyusb. + """ + port_numbers = tuple(int(s) for s in name.split("-")[1].split(".")) + device = usb_core.find(port_numbers=port_numbers) + if device: + return str(device.serial_number) + raise RuntimeError(f"Could not find serial number for port: {name}") + + @classmethod + async def create( + cls, + port: str, + usb_port: USBPort, + loop: Optional[asyncio.AbstractEventLoop] = None, + ) -> AsyncByonoy: + """ + Create an AsyncByonoy instance. + + Args: + port: url or port name + baud_rate: the baud rate + timeout: optional timeout in seconds + write_timeout: optional write timeout in seconds + loop: optional event loop. if None get_running_loop will be used + reset_buffer_before_write: reset the serial input buffer before + writing to it + """ + loop = loop or asyncio.get_running_loop() + executor = ThreadPoolExecutor(max_workers=1) + + import pybyonoy_device_library as byonoy # type: ignore[import-not-found] + + interface: AbsProtocol = byonoy + + device_sn = cls.serial_number_from_port(usb_port.name) + found: List[AbsProtocol.Device] = await loop.run_in_executor( + executor=executor, func=byonoy.byonoy_available_devices + ) + device = cls.match_device_with_sn(device_sn, found) + + return cls( + interface=interface, + device=device, + executor=executor, + loop=loop, + ) + + def __init__( + self, + interface: AbsProtocol, + device: AbsProtocol.Device, + executor: ThreadPoolExecutor, + loop: asyncio.AbstractEventLoop, + ) -> None: + """ + Constructor + + Args: + serial: connected Serial object + executor: a thread pool executor + loop: event loop + """ + self._interface = interface + self._device = device + self._executor = executor + self._loop = loop + self._supported_wavelengths: Optional[list[int]] = None + self._device_handle: Optional[int] = None + self._current_config: Optional[AbsProtocol.MeasurementConfig] = None + + def _cleanup(self) -> None: + self._device_handle = None + + def _open(self) -> None: + err, device_handle = self._interface.byonoy_open_device(self._device) + if err.name != "BYONOY_ERROR_NO_ERROR": + raise RuntimeError(f"Error opening device: {err}") + self._device_handle = device_handle + + def _free(self) -> None: + if self._device_handle: + self._interface.byonoy_free_device(self._device_handle) + self._cleanup() + + def verify_device_handle(self) -> int: + assert self._device_handle is not None, RuntimeError( + "Device handle not set up." + ) + return self._device_handle + + def _raise_if_error( + self, + err_name: ErrorCodeNames, + msg: str = "Error occurred: ", + ) -> None: + if err_name != "BYONOY_ERROR_NO_ERROR": + raise RuntimeError(msg, err_name) + + def _get_device_information(self) -> AbsProtocol.DeviceInfo: + handle = self.verify_device_handle() + err, device_info = self._interface.byonoy_get_device_information(handle) + self._raise_if_error(err.name, "Error getting device information: ") + return device_info + + def _get_device_status(self) -> AbsProtocol.DeviceState: + handle = self.verify_device_handle() + err, status = self._interface.byonoy_get_device_status(handle) + self._raise_if_error(err.name, "Error getting device status: ") + return status + + def _get_slot_status(self) -> AbsProtocol.SlotState: + handle = self.verify_device_handle() + err, slot_status = self._interface.byonoy_get_device_slot_status(handle) + self._raise_if_error(err.name, "Error getting slot status: ") + return slot_status + + def _get_lid_status(self) -> bool: + handle = self.verify_device_handle() + lid_on: bool + err, lid_on = self._interface.byonoy_get_device_parts_aligned(handle) + self._raise_if_error(err.name, "Error getting lid status: ") + return lid_on + + def _get_supported_wavelengths(self) -> List[int]: + handle = self.verify_device_handle() + wavelengths: List[int] + err, wavelengths = self._interface.byonoy_abs96_get_available_wavelengths( + handle + ) + self._raise_if_error(err.name, "Error getting available wavelengths: ") + self._supported_wavelengths = wavelengths + return wavelengths + + def _initialize_measurement(self, conf: AbsProtocol.MeasurementConfig) -> None: + handle = self.verify_device_handle() + err = self._interface.byonoy_abs96_initialize_single_measurement(handle, conf) + self._raise_if_error(err.name, "Error initializing measurement: ") + self._current_config = conf + + def _single_measurement(self, conf: AbsProtocol.MeasurementConfig) -> List[float]: + handle = self.verify_device_handle() + measurements: List[float] + err, measurements = self._interface.byonoy_abs96_single_measure(handle, conf) + self._raise_if_error(err.name, "Error getting single measurement: ") + return measurements + + def _set_sample_wavelength(self, wavelength: int) -> AbsProtocol.MeasurementConfig: + if not self._supported_wavelengths: + self._get_supported_wavelengths() + assert self._supported_wavelengths + if wavelength in self._supported_wavelengths: + conf = self._interface.ByonoyAbs96SingleMeasurementConfig() + conf.sample_wavelength = wavelength + return conf + else: + raise ValueError( + f"Unsupported wavelength: {wavelength}, expected: {self._supported_wavelengths}" + ) + + def _initialize(self, wavelength: int) -> None: + conf = self._set_sample_wavelength(wavelength) + self._initialize_measurement(conf) + + def _get_single_measurement(self, wavelength: int) -> List[float]: + initialized = self._current_config + assert initialized and initialized.sample_wavelength == wavelength + return self._single_measurement(initialized) + + async def open(self) -> None: + """ + Open the connection. + + Returns: None + """ + return await self._loop.run_in_executor( + executor=self._executor, func=self._open + ) + + async def close(self) -> None: + """ + Close the connection + + Returns: None + """ + await self._loop.run_in_executor(executor=self._executor, func=self._free) + + async def is_open(self) -> bool: + """ + Check if connection is open. + + Returns: boolean + """ + return self._device_handle is not None + + async def get_device_static_info(self) -> Dict[str, str]: + return { + "serial": self._device.sn, + "model": "ABS96", + } + + async def get_device_information(self) -> Dict[str, str]: + device_info = await self._loop.run_in_executor( + executor=self._executor, func=self._get_device_information + ) + return { + "serial_number": device_info.sn, + "reference_number": device_info.ref_no, + "version": device_info.version, + } + + async def get_lid_status(self) -> AbsorbanceReaderLidStatus: + lid_info = await self._loop.run_in_executor( + executor=self._executor, func=self._get_lid_status + ) + return ( + AbsorbanceReaderLidStatus.ON if lid_info else AbsorbanceReaderLidStatus.OFF + ) + + async def get_supported_wavelengths(self) -> list[int]: + return await self._loop.run_in_executor( + executor=self._executor, func=self._get_supported_wavelengths + ) + + async def initialize(self, wavelength: int) -> None: + return await self._loop.run_in_executor( + executor=self._executor, func=partial(self._initialize, wavelength) + ) + + async def get_single_measurement(self, wavelength: int) -> List[float]: + return await self._loop.run_in_executor( + executor=self._executor, + func=partial(self._get_single_measurement, wavelength), + ) + + async def get_plate_presence(self) -> AbsorbanceReaderPlatePresence: + return AbsorbanceReaderPlatePresence.UNKNOWN diff --git a/api/src/opentrons/drivers/absorbance_reader/driver.py b/api/src/opentrons/drivers/absorbance_reader/driver.py new file mode 100644 index 00000000000..8777f8cbbf7 --- /dev/null +++ b/api/src/opentrons/drivers/absorbance_reader/driver.py @@ -0,0 +1,65 @@ +from __future__ import annotations + +import asyncio +from typing import Dict, Optional, List, TYPE_CHECKING + +from opentrons.drivers.types import AbsorbanceReaderLidStatus +from opentrons.drivers.absorbance_reader.abstract import AbstractAbsorbanceReaderDriver +from opentrons.drivers.rpi_drivers.types import USBPort + +if TYPE_CHECKING: + from .async_byonoy import AsyncByonoy as AsyncByonoyType + + +class AbsorbanceReaderDriver(AbstractAbsorbanceReaderDriver): + @classmethod + async def create( + cls, + port: str, + usb_port: USBPort, + loop: Optional[asyncio.AbstractEventLoop], + ) -> AbsorbanceReaderDriver: + """Create an absorbance reader driver.""" + from .async_byonoy import AsyncByonoy + + connection = await AsyncByonoy.create(port=port, usb_port=usb_port, loop=loop) + return cls(connection=connection) + + def __init__(self, connection: AsyncByonoyType) -> None: + self._connection = connection + + async def get_device_info(self) -> Dict[str, str]: + """Get device info""" + connected = await self.is_connected() + if not connected: + info = await self._connection.get_device_static_info() + else: + info = await self._connection.get_device_information() + return info + + async def connect(self) -> None: + """Connect to absorbance reader""" + await self._connection.open() + + async def disconnect(self) -> None: + """Disconnect from absorbance reader""" + await self._connection.close() + + async def is_connected(self) -> bool: + """Check connection to absorbance reader""" + return await self._connection.is_open() + + async def get_lid_status(self) -> AbsorbanceReaderLidStatus: + return await self._connection.get_lid_status() + + async def get_available_wavelengths(self) -> List[int]: + return await self._connection.get_supported_wavelengths() + + async def get_single_measurement(self, wavelength: int) -> List[float]: + return await self._connection.get_single_measurement(wavelength) + + async def initialize_measurement(self, wavelength: int) -> None: + await self._connection.initialize(wavelength) + + async def get_status(self) -> None: + pass diff --git a/api/src/opentrons/drivers/absorbance_reader/hid_protocol.py b/api/src/opentrons/drivers/absorbance_reader/hid_protocol.py new file mode 100644 index 00000000000..6ddd82aa030 --- /dev/null +++ b/api/src/opentrons/drivers/absorbance_reader/hid_protocol.py @@ -0,0 +1,115 @@ +from typing import ( + Dict, + Protocol, + List, + Literal, + Tuple, + ClassVar, + runtime_checkable, + TypeVar, +) + +Response = TypeVar("Response") + +ErrorCodeNames = Literal[ + "BYONOY_ERROR_NO_ERROR", + "BYONOY_ERROR_UNKNOWN_ERROR", + "BYONOY_ERROR_DEVICE_CLOSED", + "BYONOY_ERROR_INVALID_ARGUMENT", + "BYONOY_ERROR_NO_MEMORY", + "BYONOY_ERROR_UNSUPPORTED_OPERATION", + "BYONOY_ERROR_DEVICE_COMMUNICATION_FAILURE", + "BYONOY_ERROR_DEVICE_OPERATION_FAILED", + "BYONOY_ERROR_DEVICE_OPEN_PREFIX", + "BYONOY_ERROR_DEVICE_NOT_FOUND", + "BYONOY_ERROR_DEVICE_TOO_NEW", + "BYONOY_ERROR_DEVICE_ALREADY_OPEN", + "BYONOY_ERROR_FIRMWARE_UPDATE_ERROR_PREFIX", + "BYONOY_ERROR_FIRMWARE_UPDATE_FILE_NOT_FOUND", + "BYONOY_ERROR_FIRMWARE_UPDATE_FILE_NOT_VALID", + "BYONOY_ERROR_FIRMWARE_UPDATE_FAILED", + "BYONOY_ERROR_FILE_ERROR_PREFIX", + "BYONOY_ERROR_FILE_WRITE_ERROR", + "BYONOY_ERROR_MEASUTEMNT_ERROR_PREFIX", + "BYONOY_ERROR_MEASUTEMNT_SLOT_NOT_EMPTY", + "BYONOY_ERROR_NOT_INITIALIZED", + "BYONOY_ERROR_INTERNAL", +] + + +@runtime_checkable +class AbsorbanceHidInterface(Protocol): + @runtime_checkable + class Device(Protocol): + sn: str + + @runtime_checkable + class ErrorCode(Protocol): + __members__: Dict[ErrorCodeNames, int] + name: ErrorCodeNames + value: int + + @runtime_checkable + class SlotState(Protocol): + __members__: ClassVar[Dict[str, int]] + + @runtime_checkable + class MeasurementConfig(Protocol): + sample_wavelength: int + + @runtime_checkable + class DeviceInfo(Protocol): + ref_no: str + sn: str + version: str + + @runtime_checkable + class DeviceState(Protocol): + __members__: ClassVar[Dict[str, int]] + + def ByonoyAbs96SingleMeasurementConfig(self) -> MeasurementConfig: + ... + + def byonoy_open_device(self, device: Device) -> Tuple[ErrorCode, int]: + ... + + def byonoy_free_device(self, device_handle: int) -> Tuple[ErrorCode, bool]: + ... + + def byonoy_get_device_information( + self, device_handle: int + ) -> Tuple[ErrorCode, DeviceInfo]: + ... + + def byonoy_get_device_status( + self, device_handle: int + ) -> Tuple[ErrorCode, DeviceState]: + ... + + def byonoy_get_device_slot_status( + self, device_handle: int + ) -> Tuple[ErrorCode, SlotState]: + ... + + def byonoy_get_device_parts_aligned( + self, device_handle: int + ) -> Tuple[ErrorCode, bool]: + ... + + def byonoy_abs96_get_available_wavelengths( + self, device_handle: int + ) -> Tuple[ErrorCode, List[int]]: + ... + + def byonoy_abs96_initialize_single_measurement( + self, device_handle: int, conf: MeasurementConfig + ) -> ErrorCode: + ... + + def byonoy_abs96_single_measure( + self, device_handle: int, conf: MeasurementConfig + ) -> Tuple[ErrorCode, List[float]]: + ... + + def byonoy_available_devices(self) -> List[Device]: + ... diff --git a/api/src/opentrons/drivers/absorbance_reader/simulator.py b/api/src/opentrons/drivers/absorbance_reader/simulator.py new file mode 100644 index 00000000000..b189030b653 --- /dev/null +++ b/api/src/opentrons/drivers/absorbance_reader/simulator.py @@ -0,0 +1,55 @@ +from typing import Dict, List, Optional +from opentrons.util.async_helpers import ensure_yield + +from opentrons.drivers.types import AbsorbanceReaderLidStatus + +from .abstract import AbstractAbsorbanceReaderDriver + + +class SimulatingDriver(AbstractAbsorbanceReaderDriver): + def __init__(self, serial_number: Optional[str] = None) -> None: + self._serial_number = serial_number + + @ensure_yield + async def get_device_info(self) -> Dict[str, str]: + """Get device info""" + return { + "serial": self._serial_number if self._serial_number else "dummySerialAR", + "model": "dummyModelAR", + "version": "dummyVersionAR", + } + + @ensure_yield + async def connect(self) -> None: + """Connect to absorbance reader""" + pass + + @ensure_yield + async def disconnect(self) -> None: + """Disconnect from absorbance reader""" + pass + + @ensure_yield + async def is_connected(self) -> bool: + """Check connection to absorbance reader""" + return True + + @ensure_yield + async def get_lid_status(self) -> AbsorbanceReaderLidStatus: + return AbsorbanceReaderLidStatus.ON + + @ensure_yield + async def get_available_wavelengths(self) -> List[int]: + return [450, 570, 600, 650] + + @ensure_yield + async def get_single_measurement(self, wavelength: int) -> List[float]: + return [0.0] + + @ensure_yield + async def initialize_measurement(self, wavelength: int) -> None: + pass + + @ensure_yield + async def get_status(self) -> None: + pass diff --git a/api/src/opentrons/drivers/rpi_drivers/types.py b/api/src/opentrons/drivers/rpi_drivers/types.py index 5c36d0109c2..acb177a05b4 100644 --- a/api/src/opentrons/drivers/rpi_drivers/types.py +++ b/api/src/opentrons/drivers/rpi_drivers/types.py @@ -1,5 +1,6 @@ from __future__ import annotations import enum +import re from itertools import groupby from dataclasses import dataclass from typing import List, Optional, Tuple @@ -27,6 +28,26 @@ class PortGroup: FLEX_B2_USB_PORT_GROUP_FRONT = 7 FLEX_B2_USB_PORTS = {"4": 1, "3": 2, "2": 3, "1": 4} +BUS_PATH = "/sys/bus/usb/devices/usb1/" + +# Example usb path might look like: +# '/sys/bus/usb/devices/usb1/1-1/1-1.3/1-1.3:1.0/tty/ttyACM1/dev'. +# Example hid device path might look like: +# '/sys/bus/usb/devices/usb1/1-1/1-1.3/1-1.3:1.0/0003:16D0:1199.0002/hidraw/hidraw0/dev' +# There is only 1 bus that supports USB on the raspberry pi. +USB_PORT_INFO = re.compile( + r""" + (?P(\d[\d]*-\d[\d\.]*[/]?)+): + (?P + \d.\d/ + (tty/tty(\w{4})/dev | [\w:\.]+?/hidraw/hidraw\d/dev) + ) + """, + re.VERBOSE, +) + +HUB_PATTERN = re.compile(r"(\d-[\d.]+\d?)[\/:]") + @dataclass(frozen=True) class USBPort: @@ -38,7 +59,9 @@ class USBPort: device_path: str = "" @classmethod - def build(cls, port_path: str, board_revision: BoardRevision) -> "USBPort": + def build( + cls, full_path: str, board_revision: BoardRevision + ) -> Optional["USBPort"]: """ Build a USBPort dataclass. @@ -52,8 +75,13 @@ def build(cls, port_path: str, board_revision: BoardRevision) -> "USBPort": Returns: Tuple of the port number, port group, hub, hub port, device path, and name """ - full_name, device_path = port_path.split(":") - port_nodes = cls.get_unique_nodes(full_name) + match = USB_PORT_INFO.search(full_path) + if not match: + return None + + port_path = match.group("port_path") + device_path = match.group("device_path") + port_nodes = cls.get_unique_nodes(port_path) hub, port, hub_port, name = cls.find_hub(port_nodes, board_revision) hub, port_group, port, hub_port = cls.map_to_revision( board_revision, @@ -91,43 +119,52 @@ def find_hub( :param port_nodes: A list of unique port id(s) :returns: Tuple of the hub, port number, hub_port and name """ - if len(port_nodes) > 2: - port_info = port_nodes[2].split(".") - hub: Optional[int] = int(port_info[1]) - port = int(port_info[2]) - hub_port: Optional[int] = int(port_info[3]) - name = port_nodes[2] - elif len(port_nodes) > 1: - if board_revision == BoardRevision.OG: - port_info = port_nodes[1].split(".") + if len(port_nodes) == 1 and "." not in port_nodes[0]: + # if no hub is attached, such as on a dev kit, the port + # nodes available will be 1-1 + port = int(port_nodes[0].split("-")[1]) + hub = None + hub_port = None + name = port_nodes[0] + else: + port_nodes = [node for node in port_nodes if "." in node] + if len(port_nodes) > 2: + port_info = port_nodes[2].split(".") hub = int(port_info[1]) - port = int(port_info[1]) - hub_port = int(port_info[2]) - name = port_nodes[1] + port = int(port_info[2]) + hub_port = int(port_info[3]) + name = port_nodes[2] + elif len(port_nodes) > 1: + if board_revision == BoardRevision.OG: + port_info = port_nodes[1].split(".") + hub = int(port_info[1]) + port = int(port_info[1]) + hub_port = int(port_info[2]) + name = port_nodes[1] + else: + port_info = port_nodes[1].split(".") + hub = int(port_info[1]) + name = port_nodes[1] + if (board_revision == BoardRevision.FLEX_B2) and ( + hub == FLEX_B2_USB_PORT_GROUP_FRONT + ): + port = 9 + hub_port = int(port_info[2]) + else: + port = int(port_info[2]) + hub_port = None else: - port_info = port_nodes[1].split(".") - hub = int(port_info[1]) - name = port_nodes[1] - if (board_revision == BoardRevision.FLEX_B2) and ( - hub == FLEX_B2_USB_PORT_GROUP_FRONT - ): + if board_revision == BoardRevision.FLEX_B2: + port_info = port_nodes[0].split(".") + hub = int(port_info[1]) port = 9 - hub_port = int(port_info[2]) + hub_port = None + name = port_nodes[0] else: - port = int(port_info[2]) + port = int(port_nodes[0].split(".")[1]) + hub = None hub_port = None - else: - if board_revision == BoardRevision.FLEX_B2: - port_info = port_nodes[0].split(".") - hub = int(port_info[1]) - port = 9 - hub_port = None - name = port_nodes[0] - else: - port = int(port_nodes[0].split(".")[1]) - hub = None - hub_port = None - name = port_nodes[0] + name = port_nodes[0] return hub, port, hub_port, name @staticmethod @@ -161,11 +198,12 @@ def get_unique_nodes(full_name: str) -> List[str]: :param full_name: Full path of the physical USB Path :returns: List of separated USB port paths """ - port_nodes = [] - for node in full_name.split("/"): - if node not in port_nodes: - port_nodes.append(node) - return port_nodes + all_match = HUB_PATTERN.findall(full_name) + match_set = [] + for match in all_match: + if match not in match_set: + match_set.append(match) + return match_set @staticmethod def map_to_revision( diff --git a/api/src/opentrons/drivers/rpi_drivers/usb.py b/api/src/opentrons/drivers/rpi_drivers/usb.py index 04ee5496c4a..b2446a96b73 100644 --- a/api/src/opentrons/drivers/rpi_drivers/usb.py +++ b/api/src/opentrons/drivers/rpi_drivers/usb.py @@ -6,7 +6,6 @@ """ import subprocess -import re import os from typing import List, Union @@ -17,16 +16,7 @@ from opentrons.hardware_control.types import BoardRevision from .interfaces import USBDriverInterface -from .types import USBPort - - -# Example usb path might look like: -# '/sys/bus/usb/devices/usb1/1-1/1-1.3/1-1.3:1.0/tty/ttyACM1/dev'. -# There is only 1 bus that supports USB on the raspberry pi. -BUS_PATH = "/sys/bus/usb/devices/usb1/" -PORT_PATTERN = r"(/\d-\d(\.?\d)+)+:" -DEVICE_PATH = r"\d.\d/tty/tty(\w{4})/dev" -USB_PORT_INFO = re.compile(PORT_PATTERN + DEVICE_PATH) +from .types import BUS_PATH, USBPort class USBBus(USBDriverInterface): @@ -73,11 +63,9 @@ def _read_usb_bus(self) -> List[USBPort]: active_ports = self._read_bus() port_matches = [] for port in active_ports: - match = USB_PORT_INFO.search(port) - if match: - port_matches.append( - USBPort.build(match.group(0).strip("/"), self._board_revision) - ) + usb_port = USBPort.build(port.strip("/"), self._board_revision) + if usb_port: + port_matches.append(usb_port) return port_matches def match_virtual_ports( diff --git a/api/src/opentrons/drivers/types.py b/api/src/opentrons/drivers/types.py index 7186025dc35..09691ff051f 100644 --- a/api/src/opentrons/drivers/types.py +++ b/api/src/opentrons/drivers/types.py @@ -58,3 +58,19 @@ class ThermocyclerLidStatus(str, Enum): IN_BETWEEN = "in_between" OPEN = "open" MAX = "max" + + +class AbsorbanceReaderLidStatus(str, Enum): + """Absorbance reader lid status.""" + + UNKNOWN = "unknown" + ON = "on" + OFF = "off" + + +class AbsorbanceReaderPlatePresence(str, Enum): + """Absorbance reader plate presence.""" + + UNKNOWN = "unknown" + PRESENT = "present" + ABSENCE = "absence" diff --git a/api/src/opentrons/execute.py b/api/src/opentrons/execute.py index e851d8a44f0..ee620566849 100644 --- a/api/src/opentrons/execute.py +++ b/api/src/opentrons/execute.py @@ -602,7 +602,9 @@ def _run_file_non_pe( try: # TODO (spp, 2024-03-18): use true run-time param overrides once enabled # for cli protocol simulation/ execution - execute_apiv2.run_protocol(protocol, context, run_time_param_overrides=None) + execute_apiv2.run_protocol( + protocol, context, run_time_parameters_with_overrides=None + ) finally: context.cleanup() diff --git a/api/src/opentrons/hardware_control/__init__.py b/api/src/opentrons/hardware_control/__init__.py index b49f1462249..d575a2eada5 100644 --- a/api/src/opentrons/hardware_control/__init__.py +++ b/api/src/opentrons/hardware_control/__init__.py @@ -38,7 +38,8 @@ ] HardwareControlAPI = Union[OT2HardwareControlAPI, OT3HardwareControlAPI] -ThreadManagedHardware = ThreadManager[HardwareControlAPI] +# this type ignore is because of https://github.com/python/mypy/issues/13437 +ThreadManagedHardware = ThreadManager[HardwareControlAPI] # type: ignore[misc] SyncHardwareAPI = SynchronousAdapter[HardwareControlAPI] __all__ = [ diff --git a/api/src/opentrons/hardware_control/api.py b/api/src/opentrons/hardware_control/api.py index 718d0d8796a..db21946920a 100644 --- a/api/src/opentrons/hardware_control/api.py +++ b/api/src/opentrons/hardware_control/api.py @@ -78,6 +78,8 @@ mod_log = logging.getLogger(__name__) +AttachedModuleSpec = Dict[str, List[Union[str, Tuple[str, str]]]] + class API( ExecutionManagerProvider, @@ -255,7 +257,7 @@ async def build_hardware_simulator( attached_instruments: Optional[ Dict[top_types.Mount, Dict[str, Optional[str]]] ] = None, - attached_modules: Optional[Dict[str, List[str]]] = None, + attached_modules: Optional[Dict[str, List[modules.SimulatingModule]]] = None, config: Optional[Union[RobotConfig, OT3Config]] = None, loop: Optional[asyncio.AbstractEventLoop] = None, strict_attached_instruments: bool = True, diff --git a/api/src/opentrons/hardware_control/backends/ot3controller.py b/api/src/opentrons/hardware_control/backends/ot3controller.py index 9a22a3e2e13..1e07ef3b191 100644 --- a/api/src/opentrons/hardware_control/backends/ot3controller.py +++ b/api/src/opentrons/hardware_control/backends/ot3controller.py @@ -45,7 +45,7 @@ motor_nodes, LIMIT_SWITCH_OVERTRAVEL_DISTANCE, map_pipette_type_to_sensor_id, - moving_axes_in_move_group, + moving_pipettes_in_move_group, gripper_jaw_state_from_fw, get_system_constraints, get_system_constraints_for_calibration, @@ -191,6 +191,10 @@ PipetteOverpressureError, FirmwareUpdateRequiredError, FailedGripperPickupError, + LiquidNotFoundError, + CommunicationError, + PythonException, + UnsupportedHardwareCommand, ) from .subsystem_manager import SubsystemManager @@ -663,12 +667,9 @@ async def move( else False, ) - mounts_moving = [ - k - for k in moving_axes_in_move_group(move_group) - if k in [NodeId.pipette_left, NodeId.pipette_right] - ] - async with self._monitor_overpressure(mounts_moving): + pipettes_moving = moving_pipettes_in_move_group(move_group) + + async with self._monitor_overpressure(pipettes_moving): positions = await runner.run(can_messenger=self._messenger) self._handle_motor_status_response(positions) @@ -1185,7 +1186,14 @@ async def update_engaged_axes(self) -> None: async def is_motor_engaged(self, axis: Axis) -> bool: node = axis_to_node(axis) result = await get_motor_enabled(self._messenger, {node}) - engaged = result[node] + try: + engaged = result[node] + except KeyError as ke: + raise CommunicationError( + message=f"No response from {node.name} for motor engagement query", + detail={"node": node.name}, + wrapping=[PythonException(ke)], + ) from ke self._engaged_axes.update({axis: engaged}) return engaged @@ -1357,12 +1365,16 @@ async def liquid_probe( probe: InstrumentProbeType = InstrumentProbeType.PRIMARY, ) -> float: if output_option == OutputOptions.sync_buffer_to_csv: - assert ( + if ( self._subsystem_manager.device_info[ SubSystem.of_mount(mount) ].revision.tertiary == "1" - ) + ): + raise UnsupportedHardwareCommand( + "Liquid Probe not supported on this pipette firmware" + ) + head_node = axis_to_node(Axis.by_mount(mount)) tool = sensor_node_for_pipette(OT3Mount(mount.value)) csv_output = bool(output_option.value & OutputOptions.stream_to_csv.value) @@ -1399,6 +1411,18 @@ async def liquid_probe( for node, point in positions.items(): self._position.update({node: point.motor_position}) self._encoder_position.update({node: point.encoder_position}) + if ( + head_node not in positions + or positions[head_node].move_ack + == MoveCompleteAck.complete_without_condition + ): + raise LiquidNotFoundError( + "Liquid not found during probe.", + { + str(node_to_axis(node)): str(point.motor_position) + for node, point in positions.items() + }, + ) return self._position[axis_to_node(Axis.by_mount(mount))] async def capacitive_probe( diff --git a/api/src/opentrons/hardware_control/backends/ot3simulator.py b/api/src/opentrons/hardware_control/backends/ot3simulator.py index e0c8fe1bc89..1e6d9756cf0 100644 --- a/api/src/opentrons/hardware_control/backends/ot3simulator.py +++ b/api/src/opentrons/hardware_control/backends/ot3simulator.py @@ -104,7 +104,7 @@ class OT3Simulator(FlexBackend): async def build( cls, attached_instruments: Dict[OT3Mount, Dict[str, Optional[str]]], - attached_modules: Dict[str, List[str]], + attached_modules: Dict[str, List[modules.SimulatingModule]], config: OT3Config, loop: asyncio.AbstractEventLoop, strict_attached_instruments: bool = True, @@ -130,7 +130,7 @@ async def build( def __init__( self, attached_instruments: Dict[OT3Mount, Dict[str, Optional[str]]], - attached_modules: Dict[str, List[str]], + attached_modules: Dict[str, List[modules.SimulatingModule]], config: OT3Config, loop: asyncio.AbstractEventLoop, strict_attached_instruments: bool = True, @@ -605,13 +605,14 @@ async def increase_z_l_hold_current(self) -> AsyncIterator[None]: @ensure_yield async def watch(self, loop: asyncio.AbstractEventLoop) -> None: new_mods_at_ports = [] - for mod, serials in self._stubbed_attached_modules.items(): - for serial in serials: + for mod_name, list_of_modules in self._stubbed_attached_modules.items(): + for module_details in list_of_modules: new_mods_at_ports.append( modules.SimulatingModuleAtPort( - port=f"/dev/ot_module_sim_{mod}{str(serial)}", - name=mod, - serial_number=serial, + port=f"/dev/ot_module_sim_{mod_name}{str(module_details.serial_number)}", + name=mod_name, + serial_number=module_details.serial_number, + model=module_details.model, ) ) await self.module_controls.register_modules(new_mods_at_ports=new_mods_at_ports) diff --git a/api/src/opentrons/hardware_control/backends/ot3utils.py b/api/src/opentrons/hardware_control/backends/ot3utils.py index a9108c2365e..6d62ffc4581 100644 --- a/api/src/opentrons/hardware_control/backends/ot3utils.py +++ b/api/src/opentrons/hardware_control/backends/ot3utils.py @@ -498,6 +498,20 @@ def create_gripper_jaw_hold_group(encoder_position_um: int) -> MoveGroup: return move_group +def moving_pipettes_in_move_group(group: MoveGroup) -> List[NodeId]: + """Utility function to get which pipette nodes are moving either in z or their plunger.""" + all_nodes = [node for step in group for node, _ in step.items()] + moving_nodes = moving_axes_in_move_group(group) + pipettes_moving: List[NodeId] = [ + k for k in moving_nodes if k in [NodeId.pipette_left, NodeId.pipette_right] + ] + if NodeId.head_l in moving_nodes and NodeId.pipette_left in all_nodes: + pipettes_moving.append(NodeId.pipette_left) + if NodeId.head_r in moving_nodes and NodeId.pipette_right in all_nodes: + pipettes_moving.append(NodeId.pipette_right) + return pipettes_moving + + def moving_axes_in_move_group(group: MoveGroup) -> Set[NodeId]: """Utility function to get only the moving nodes in a move group.""" ret: Set[NodeId] = set() diff --git a/api/src/opentrons/hardware_control/backends/simulator.py b/api/src/opentrons/hardware_control/backends/simulator.py index 4066afa4bb5..9441d478738 100644 --- a/api/src/opentrons/hardware_control/backends/simulator.py +++ b/api/src/opentrons/hardware_control/backends/simulator.py @@ -49,7 +49,7 @@ class Simulator: async def build( cls, attached_instruments: Dict[types.Mount, Dict[str, Optional[str]]], - attached_modules: Dict[str, List[str]], + attached_modules: Dict[str, List[modules.SimulatingModule]], config: RobotConfig, loop: asyncio.AbstractEventLoop, strict_attached_instruments: bool = True, @@ -71,8 +71,9 @@ async def build( This dict should map mounts to either empty dicts or to dicts containing 'model' and 'id' keys. - :param attached_modules: A list of module model names (e.g. - `'tempdeck'` or `'magdeck'`) representing + :param attached_modules: A map of module type names (e.g. + `'tempdeck'` or `'magdeck'`) to lists of SimulatingModel + dataclasses representing modules the simulator should assume are attached. Like `attached_instruments`, used to make the simulator match the setup of the @@ -105,7 +106,7 @@ async def build( def __init__( self, attached_instruments: Dict[types.Mount, Dict[str, Optional[str]]], - attached_modules: Dict[str, List[str]], + attached_modules: Dict[str, List[modules.SimulatingModule]], config: RobotConfig, loop: asyncio.AbstractEventLoop, gpio_chardev: GPIODriverLike, @@ -333,13 +334,14 @@ def set_active_current(self, axis_currents: Dict[Axis, float]) -> None: @ensure_yield async def watch(self) -> None: new_mods_at_ports = [] - for mod, serials in self._stubbed_attached_modules.items(): - for serial in serials: + for mod_name, list_of_modules in self._stubbed_attached_modules.items(): + for module_details in list_of_modules: new_mods_at_ports.append( modules.SimulatingModuleAtPort( - port=f"/dev/ot_module_sim_{mod}{str(serial)}", - name=mod, - serial_number=serial, + port=f"/dev/ot_module_sim_{mod_name}{str(module_details.serial_number)}", + name=mod_name, + serial_number=module_details.serial_number, + model=module_details.model, ) ) await self.module_controls.register_modules(new_mods_at_ports=new_mods_at_ports) diff --git a/api/src/opentrons/hardware_control/module_control.py b/api/src/opentrons/hardware_control/module_control.py index 6fda6b7cdc5..c8a1432c1d9 100644 --- a/api/src/opentrons/hardware_control/module_control.py +++ b/api/src/opentrons/hardware_control/module_control.py @@ -163,9 +163,14 @@ async def register_modules( port=mod.port, usb_port=mod.usb_port, type=modules.MODULE_TYPE_BY_NAME[mod.name], - sim_serial_number=mod.serial_number - if isinstance(mod, SimulatingModuleAtPort) - else None, + sim_serial_number=( + mod.serial_number + if isinstance(mod, SimulatingModuleAtPort) + else None + ), + sim_model=( + mod.model if isinstance(mod, SimulatingModuleAtPort) else None + ), ) self._available_modules.append(new_instance) log.info( diff --git a/api/src/opentrons/hardware_control/modules/__init__.py b/api/src/opentrons/hardware_control/modules/__init__.py index dd8c531bdb1..3e4c14f0baf 100644 --- a/api/src/opentrons/hardware_control/modules/__init__.py +++ b/api/src/opentrons/hardware_control/modules/__init__.py @@ -3,6 +3,7 @@ from .magdeck import MagDeck from .thermocycler import Thermocycler from .heater_shaker import HeaterShaker +from .absorbance_reader import AbsorbanceReader from .update import update_firmware from .utils import MODULE_TYPE_BY_NAME, build from .types import ( @@ -12,6 +13,7 @@ UpdateError, ModuleAtPort, SimulatingModuleAtPort, + SimulatingModule, ModuleType, ModuleModel, TemperatureStatus, @@ -35,6 +37,7 @@ "UpdateError", "ModuleAtPort", "SimulatingModuleAtPort", + "SimulatingModule", "HeaterShaker", "ModuleType", "ModuleModel", @@ -43,4 +46,5 @@ "HeaterShakerStatus", "SpeedStatus", "LiveData", + "AbsorbanceReader", ] diff --git a/api/src/opentrons/hardware_control/modules/absorbance_reader.py b/api/src/opentrons/hardware_control/modules/absorbance_reader.py new file mode 100644 index 00000000000..8f3c65e3ace --- /dev/null +++ b/api/src/opentrons/hardware_control/modules/absorbance_reader.py @@ -0,0 +1,172 @@ +import asyncio +from typing import Optional, Mapping, List, Dict, Any, Tuple + +from opentrons.drivers.rpi_drivers.types import USBPort +from opentrons.drivers.absorbance_reader import ( + AbstractAbsorbanceReaderDriver, + AbsorbanceReaderDriver, + SimulatingDriver, +) +from opentrons.hardware_control.execution_manager import ExecutionManager +from opentrons.hardware_control.modules import mod_abc +from opentrons.hardware_control.modules.types import ( + ModuleType, + AbsorbanceReaderStatus, + LiveData, + UploadFunction, +) + + +async def upload_func_placeholder( + dfu_serial: str, firmware_file_path: str, kwargs: Dict[str, Any] +) -> Tuple[bool, str]: + return False, "Not implemented" + + +class AbsorbanceReader(mod_abc.AbstractModule): + """Hardware control interface for an attached Absorbance Reader module.""" + + MODULE_TYPE = ModuleType.ABSORBANCE_READER + + @classmethod + async def build( + cls, + port: str, + usb_port: USBPort, + execution_manager: ExecutionManager, + hw_control_loop: asyncio.AbstractEventLoop, + poll_interval_seconds: Optional[float] = None, + simulating: bool = False, + sim_model: Optional[str] = None, + sim_serial_number: Optional[str] = None, + ) -> "AbsorbanceReader": + """Create an AbsorbanceReader.""" + driver: AbstractAbsorbanceReaderDriver + if not simulating: + driver = await AbsorbanceReaderDriver.create( + port, usb_port, hw_control_loop + ) + else: + driver = SimulatingDriver(serial_number=sim_serial_number) + module = cls( + port=port, + usb_port=usb_port, + device_info=await driver.get_device_info(), + execution_manager=execution_manager, + driver=driver, + hw_control_loop=hw_control_loop, + ) + return module + + def __init__( + self, + port: str, + usb_port: USBPort, + driver: AbstractAbsorbanceReaderDriver, + device_info: Mapping[str, str], + execution_manager: ExecutionManager, + hw_control_loop: asyncio.AbstractEventLoop, + ) -> None: + super().__init__(port, usb_port, execution_manager, hw_control_loop) + self._driver = driver + self._device_info = device_info + + async def deactivate(self, must_be_running: bool = True) -> None: + """Deactivate the module. + + Contains an override to the `wait_for_is_running` step in cases where the + module must be deactivated regardless of context.""" + await self._driver.disconnect() + + @property + def status(self) -> AbsorbanceReaderStatus: + """Return some string describing status.""" + return AbsorbanceReaderStatus.IDLE + + @property + def device_info(self) -> Mapping[str, str]: + """Return a dict of the module's static information (serial, etc)""" + return self._device_info + + @property + def live_data(self) -> LiveData: + """Return a dict of the module's dynamic information""" + return { + "status": "idle", + "data": { + "sampleWavelength": 400, + }, + } + + @property + def is_simulated(self) -> bool: + """True if this is a simulated module.""" + return isinstance(self._driver, SimulatingDriver) + + @property + def port(self) -> str: + """The virtual port where the module is connected.""" + return self._port + + @property + def usb_port(self) -> USBPort: + """The physical port where the module is connected.""" + return self._usb_port + + async def wait_for_is_running(self) -> None: + if not self.is_simulated: + await self._execution_manager.wait_for_is_running() + + async def prep_for_update(self) -> str: + """Prepare for an update. + + By the time this coroutine completes, the hardware should be ready + to take an update. This implicitly tears down the module instance; + it does not need to be either working or recoverable after this + coroutine completes. + + :returns str: The port we're running on. + """ + return "" + + def model(self) -> str: + """A name for this specific module, matching module defs""" + return "absorbanceReaderV1" + + @classmethod + def name(cls) -> str: + """A shortname used for matching usb ports, among other things""" + return "absorbancereader" + + def firmware_prefix(self) -> str: + """The prefix used for looking up firmware""" + # TODO: (AA) This is a placeholder + return "" + + def bootloader(self) -> UploadFunction: + """Bootloader mode""" + return upload_func_placeholder + + async def cleanup(self) -> None: + """Clean up the module instance. + + Clean up, i.e. stop pollers, disconnect serial, etc in preparation for + object destruction. + """ + await self._driver.disconnect() + + async def set_sample_wavelength(self, wavelength: int) -> None: + """Set the Absorbance Reader's active wavelength.""" + await self._driver.initialize_measurement(wavelength) + + async def start_measure(self, wavelength: int) -> None: + """Initiate a single measurement.""" + await self._driver.get_single_measurement(wavelength) + + async def get_supported_wavelengths(self) -> List[int]: + """Get the Absorbance Reader's supported wavelengths.""" + return await self._driver.get_available_wavelengths() + + async def get_current_wavelength(self) -> None: + """Get the Absorbance Reader's current active wavelength.""" + pass diff --git a/api/src/opentrons/hardware_control/modules/types.py b/api/src/opentrons/hardware_control/modules/types.py index eb8054a87ee..e538e603f8d 100644 --- a/api/src/opentrons/hardware_control/modules/types.py +++ b/api/src/opentrons/hardware_control/modules/types.py @@ -9,6 +9,7 @@ Tuple, Awaitable, Union, + Optional, cast, TYPE_CHECKING, ) @@ -24,6 +25,7 @@ TemperatureModuleType, HeaterShakerModuleType, MagneticBlockType, + AbsorbanceReaderType, ) @@ -50,6 +52,7 @@ class ModuleType(str, Enum): MAGNETIC: MagneticModuleType = "magneticModuleType" HEATER_SHAKER: HeaterShakerModuleType = "heaterShakerModuleType" MAGNETIC_BLOCK: MagneticBlockType = "magneticBlockType" + ABSORBANCE_READER: AbsorbanceReaderType = "absorbanceReaderType" @classmethod def from_model(cls, model: ModuleModel) -> ModuleType: @@ -63,6 +66,8 @@ def from_model(cls, model: ModuleModel) -> ModuleType: return cls.HEATER_SHAKER if isinstance(model, MagneticBlockModel): return cls.MAGNETIC_BLOCK + if isinstance(model, AbsorbanceReaderModel): + return cls.ABSORBANCE_READER @classmethod def to_module_fixture_id(cls, module_type: ModuleType) -> str: @@ -104,6 +109,10 @@ class MagneticBlockModel(str, Enum): MAGNETIC_BLOCK_V1: str = "magneticBlockV1" +class AbsorbanceReaderModel(str, Enum): + ABSORBANCE_READER_V1: str = "absorbanceReaderV1" + + def module_model_from_string(model_string: str) -> ModuleModel: for model_enum in { MagneticModuleModel, @@ -111,6 +120,7 @@ def module_model_from_string(model_string: str) -> ModuleModel: ThermocyclerModuleModel, HeaterShakerModuleModel, MagneticBlockModel, + AbsorbanceReaderModel, }: try: return cast(ModuleModel, model_enum(model_string)) @@ -127,8 +137,14 @@ class ModuleAtPort: @dataclass(kw_only=True) -class SimulatingModuleAtPort(ModuleAtPort): +class SimulatingModule: serial_number: str + model: Optional[str] + + +@dataclass(kw_only=True) +class SimulatingModuleAtPort(ModuleAtPort, SimulatingModule): + pass class BundledFirmware(NamedTuple): @@ -159,6 +175,7 @@ class ModuleInfo(NamedTuple): ThermocyclerModuleModel, HeaterShakerModuleModel, MagneticBlockModel, + AbsorbanceReaderModel, ] @@ -187,3 +204,9 @@ class HeaterShakerStatus(str, Enum): IDLE = "idle" RUNNING = "running" ERROR = "error" + + +class AbsorbanceReaderStatus(str, Enum): + IDLE = "idle" + MEASURING = "measuring" + ERROR = "error" diff --git a/api/src/opentrons/hardware_control/modules/utils.py b/api/src/opentrons/hardware_control/modules/utils.py index 0c213ead6a1..862617e2d60 100644 --- a/api/src/opentrons/hardware_control/modules/utils.py +++ b/api/src/opentrons/hardware_control/modules/utils.py @@ -12,6 +12,7 @@ from .magdeck import MagDeck from .thermocycler import Thermocycler from .heater_shaker import HeaterShaker +from .absorbance_reader import AbsorbanceReader log = logging.getLogger(__name__) @@ -24,6 +25,7 @@ TempDeck.name(): TempDeck.MODULE_TYPE, Thermocycler.name(): Thermocycler.MODULE_TYPE, HeaterShaker.name(): HeaterShaker.MODULE_TYPE, + AbsorbanceReader.name(): AbsorbanceReader.MODULE_TYPE, } _MODULE_CLS_BY_TYPE: Dict[ModuleType, Type[AbstractModule]] = { @@ -31,6 +33,7 @@ TempDeck.MODULE_TYPE: TempDeck, Thermocycler.MODULE_TYPE: Thermocycler, HeaterShaker.MODULE_TYPE: HeaterShaker, + AbsorbanceReader.MODULE_TYPE: AbsorbanceReader, } diff --git a/api/src/opentrons/hardware_control/ot3api.py b/api/src/opentrons/hardware_control/ot3api.py index 21c3f70dab7..8e4698f629e 100644 --- a/api/src/opentrons/hardware_control/ot3api.py +++ b/api/src/opentrons/hardware_control/ot3api.py @@ -413,7 +413,7 @@ async def build_hardware_simulator( Dict[OT3Mount, Dict[str, Optional[str]]], Dict[top_types.Mount, Dict[str, Optional[str]]], ] = None, - attached_modules: Optional[Dict[str, List[str]]] = None, + attached_modules: Optional[Dict[str, List[modules.SimulatingModule]]] = None, config: Union[RobotConfig, OT3Config, None] = None, loop: Optional[asyncio.AbstractEventLoop] = None, strict_attached_instruments: bool = True, @@ -2100,7 +2100,7 @@ async def verify_tip_presence( real_mount = OT3Mount.from_mount(mount) status = await self.get_tip_presence_status(real_mount, follow_singular_sensor) if status != expected: - raise FailedTipStateCheck(expected, status.value) + raise FailedTipStateCheck(expected, status) async def _force_pick_up_tip( self, mount: OT3Mount, pipette_spec: TipActionSpec @@ -2556,9 +2556,7 @@ async def liquid_probe( reading from the pressure sensor. If the move is completed without the specified threshold being triggered, a - LiquidNotFound error will be thrown. - If the threshold is triggered before the minimum z distance has been traveled, - a EarlyLiquidSenseTrigger error will be thrown. + LiquidNotFoundError error will be thrown. Otherwise, the function will stop moving once the threshold is triggered, and return the position of the @@ -2582,13 +2580,22 @@ async def liquid_probe( if probe_settings.aspirate_while_sensing: await self._move_to_plunger_bottom(mount, rate=1.0) else: - # TODO: shorten this distance by only moving just far enough - # to account for the specified "max-z-distance" + # find the ideal travel distance by multiplying the plunger speed + # by the time it will take to complete the z move. + ideal_travel = probe_settings.plunger_speed * ( + probe_settings.max_z_distance / probe_settings.mount_speed + ) + + # TODO limit the z distance to the max allowed by the plunger travel at this speed. + # or here is probably the ideal place to implement multi-probe + assert ( + instrument.plunger_positions.bottom - ideal_travel + >= instrument.plunger_positions.top + ) + target_point = instrument.plunger_positions.bottom - ideal_travel target_pos = target_position_from_plunger( - checked_mount, instrument.plunger_positions.top, self._current_position + checked_mount, target_point, self._current_position ) - # FIXME: this should really be the slower "aspirate" speed, - # but this is still in testing phase so let's bias towards speed max_speeds = self.config.motion_settings.default_max_speed speed = max_speeds[self.gantry_load][OT3AxisKind.P] await self._move(target_pos, speed=speed, acquire_lock=True) diff --git a/api/src/opentrons/hardware_control/scripts/repl.py b/api/src/opentrons/hardware_control/scripts/repl.py index 1efbe0c2233..4e20a8dd9da 100644 --- a/api/src/opentrons/hardware_control/scripts/repl.py +++ b/api/src/opentrons/hardware_control/scripts/repl.py @@ -114,8 +114,6 @@ def synchronizer(*args: Any, **kwargs: Any) -> Any: def build_thread_manager() -> ThreadManager[Union[API, OT3API]]: return ThreadManager( API.build_hardware_controller, - use_usb_bus=ff.rear_panel_integration(), - update_firmware=update_firmware, feature_flags=HardwareFeatureFlags.build_from_ff(), ) diff --git a/api/src/opentrons/hardware_control/scripts/tc_control.py b/api/src/opentrons/hardware_control/scripts/tc_control.py new file mode 100644 index 00000000000..6099e8761d6 --- /dev/null +++ b/api/src/opentrons/hardware_control/scripts/tc_control.py @@ -0,0 +1,94 @@ +from serial import Serial # type: ignore[import-untyped] +import asyncio +import subprocess +from typing import Any + +_READ_ALL = "readall" +_READ_LINE = "read" +_DONE = "done" +_MOVE_SEAL = "ms" +_MOVE_LID = "ml" + +gcode_shortcuts = { + "status": "M119", + _MOVE_SEAL: "M241.D", # move seal motor + _MOVE_LID: "M240.D", # move lid stepper motor + "ol": "M126", # open lid + "cl": "M127", # close lid +} + + +async def message_read(dev: Serial) -> Any: + response = dev.readline().decode() + while not response: + await asyncio.sleep(1) + response = dev.readline().decode() + return response + + +async def message_return(dev: Serial) -> Any: + try: + response = await asyncio.wait_for(message_read(dev), timeout=20) + return response + except asyncio.exceptions.TimeoutError: + print("response timed out.") + return "" + + +async def handle_gcode_shortcut(dev: Serial, command: str) -> None: + # handle debugging commands that require followup + if command == _MOVE_SEAL: + distance = input("enter distance in steps => ") + dev.write( + f"{gcode_shortcuts[command]} {distance}\n".encode() + ) # (+) -> retract, (-) -> engage + print(await message_return(dev)) + elif command == _MOVE_LID: + distance = input( + "enter angular distance in degrees => " + ) # (+) -> open, (-) -> close + dev.write(f"{gcode_shortcuts[command]} {distance}\n".encode()) + print(await message_return(dev)) + # everything else + else: + dev.write(f"{gcode_shortcuts[command]}\n".encode()) + print(await message_return(dev)) + + +async def comms_loop(dev: Serial) -> bool: + _exit = False + command = input("\n>>> ") + if command == _READ_ALL: + print(dev.readlines()) + elif command == _READ_LINE: + print(dev.readline()) + elif command == _DONE: + _exit = True + elif command in gcode_shortcuts: + await handle_gcode_shortcut(dev, command) + else: + try: + dev.write(f"{command}\n") + print(await message_return(dev)) + except TypeError: + print("Invalid input.") + return _exit + + +async def _main() -> None: + tc_name = ( + subprocess.check_output(["find", "/dev/", "-name", "*thermocycler*"]) + .decode() + .strip() + ) + if not tc_name: + print("Thermocycler not found. Exiting.") + return + dev = Serial(f"{tc_name}", 9600, timeout=2) + _exit = False + while not _exit: + _exit = await comms_loop(dev) + + +if __name__ == "__main__": + asyncio.run(_main()) diff --git a/api/src/opentrons/hardware_control/simulator_setup.py b/api/src/opentrons/hardware_control/simulator_setup.py index 25fa17d36a1..7767eff42e2 100644 --- a/api/src/opentrons/hardware_control/simulator_setup.py +++ b/api/src/opentrons/hardware_control/simulator_setup.py @@ -11,6 +11,7 @@ from opentrons.types import Mount from opentrons.hardware_control import API, HardwareControlAPI, ThreadManager from opentrons.hardware_control.types import OT3Mount, HardwareFeatureFlags +from opentrons.hardware_control.modules import SimulatingModule # Name and kwargs for a module function @@ -24,6 +25,7 @@ class ModuleCall: @dataclass(frozen=True) class ModuleItem: serial_number: str + model: str calls: List[ModuleCall] = field(default_factory=list) @@ -59,7 +61,10 @@ async def _simulator_for_setup( return await API.build_hardware_simulator( attached_instruments=setup.attached_instruments, attached_modules={ - k: [m.serial_number for m in v] + k: [ + SimulatingModule(serial_number=m.serial_number, model=m.model) + for m in v + ] for k, v in setup.attached_modules.items() }, config=setup.config, @@ -73,7 +78,10 @@ async def _simulator_for_setup( return await OT3API.build_hardware_simulator( attached_instruments=setup.attached_instruments, attached_modules={ - k: [m.serial_number for m in v] + k: [ + SimulatingModule(serial_number=m.serial_number, model=m.model) + for m in v + ] for k, v in setup.attached_modules.items() }, config=setup.config, @@ -114,7 +122,10 @@ def _thread_manager_for_setup( API.build_hardware_simulator, attached_instruments=setup.attached_instruments, attached_modules={ - k: [m.serial_number for m in v] + k: [ + SimulatingModule(serial_number=m.serial_number, model=m.model) + for m in v + ] for k, v in setup.attached_modules.items() }, config=setup.config, @@ -128,7 +139,10 @@ def _thread_manager_for_setup( OT3API.build_hardware_simulator, attached_instruments=setup.attached_instruments, attached_modules={ - k: [m.serial_number for m in v] + k: [ + SimulatingModule(serial_number=m.serial_number, model=m.model) + for m in v + ] for k, v in setup.attached_modules.items() }, config=setup.config, @@ -215,6 +229,7 @@ def _prepare_for_simulator_setup(key: str, value: Dict[str, Any]) -> Any: attached_modules.setdefault(key, []).append( ModuleItem( serial_number=obj["serial_number"], + model=obj["model"], calls=[ModuleCall(**data) for data in obj["calls"]], ) ) @@ -236,6 +251,7 @@ def _prepare_for_ot3_simulator_setup(key: str, value: Dict[str, Any]) -> Any: attached_modules.setdefault(key, []).append( ModuleItem( serial_number=obj["serial_number"], + model=obj["model"], calls=[ModuleCall(**data) for data in obj["calls"]], ) ) diff --git a/api/src/opentrons/hardware_control/thread_manager.py b/api/src/opentrons/hardware_control/thread_manager.py index c72ec3857b9..ed3669494b3 100644 --- a/api/src/opentrons/hardware_control/thread_manager.py +++ b/api/src/opentrons/hardware_control/thread_manager.py @@ -1,9 +1,9 @@ """Manager for the :py:class:`.hardware_control.API` thread.""" +import functools import threading import logging import asyncio import inspect -import functools import weakref from typing import ( Any, @@ -195,7 +195,10 @@ class ThreadManager(Generic[WrappedObj]): If you want to wait for the managed object's creation separately (with managed_thread_ready_blocking or managed_thread_ready_async) - then pass threadmanager_nonblocking=True as a kwarg + use the nonblocking_builder static method to add an attribute to the builder + function, i.e. + + thread_manager = ThreadManager(ThreadManager.nonblocking_builder(builder), ...) Example ------- @@ -206,15 +209,52 @@ class ThreadManager(Generic[WrappedObj]): >>> api_single_thread.sync.home() # call as blocking sync """ + Builder = ParamSpec("Builder") + Built = TypeVar("Built") + + @staticmethod + def nonblocking_builder( + builder: Callable[Builder, Awaitable[Built]] + ) -> Callable[Builder, Awaitable[Built]]: + """Wrap an instance of a builder function to make initializes that use it nonblocking. + + For instance, you can build a ThreadManager like this: + + thread_manager = ThreadManager(ThreadManager.nonblocking_builder(API.build_hardware_controller), ...) + + to make the initialize call return immediately so you can later wait on it via + managed_thread_ready_blocking or managed_thread_ready_async + """ + + @functools.wraps(builder) + async def wrapper( + *args: ThreadManager.Builder.args, **kwargs: ThreadManager.Builder.kwargs + ) -> ThreadManager.Built: + return await builder(*args, **kwargs) + + setattr(wrapper, "nonblocking", True) + return wrapper + def __init__( self, - builder: Callable[..., Awaitable[WrappedObj]], - *args: Any, - **kwargs: Any, + builder: Callable[Builder, Awaitable[WrappedObj]], + *args: Builder.args, + **kwargs: Builder.kwargs, ) -> None: """Build the ThreadManager. - :param builder: The API function to use + builder: The api function to use to build the instance. + + The args and kwargs will be forwarded to the builder function. + + Note: by default, this function will block until the managed thread is ready and the hardware controller + has been built. To make this function return immediately you can wrap its builder argument in + ThreadManager.nonblocking_builder(), like this: + + thread_manager = ThreadManager(ThreadManager.nonblocking_builder(API.build_hardware_controller), ...) + + Afterwards, you'll need to call ThreadManager.managed_thread_ready_blocking or its async variant before + you can actually use thei nstance. """ self._loop: Optional[asyncio.AbstractEventLoop] = None @@ -234,7 +274,7 @@ def __init__( asyncio.get_child_watcher() except NotImplementedError: pass - blocking = not kwargs.pop("threadmanager_nonblocking", False) + blocking = not getattr(builder, "nonblocking", False) target = object.__getattribute__(self, "_build_and_start_loop") thread = threading.Thread( target=target, diff --git a/api/src/opentrons/hardware_control/types.py b/api/src/opentrons/hardware_control/types.py index 1ea79652f34..3c14cf9e361 100644 --- a/api/src/opentrons/hardware_control/types.py +++ b/api/src/opentrons/hardware_control/types.py @@ -694,25 +694,13 @@ def __init__( ) -class LiquidNotFound(RuntimeError): - """Error raised if liquid sensing move completes without detecting liquid.""" - - def __init__( - self, position: Dict[Axis, float], max_z_pos: Dict[Axis, float] - ) -> None: - """Initialize LiquidNotFound error.""" - super().__init__( - f"Liquid threshold not found, current_position = {position}" - f"position at max travel allowed = {max_z_pos}" - ) - - class FailedTipStateCheck(RuntimeError): """Error raised if the tip ejector state does not match the expected value.""" - def __init__(self, tip_state_type: TipStateType, actual_state: int) -> None: + def __init__( + self, expected_state: TipStateType, actual_state: TipStateType + ) -> None: """Initialize FailedTipStateCheck error.""" super().__init__( - f"Failed to correctly determine tip state for tip {str(tip_state_type)} " - f"received {bool(actual_state)} but expected {bool(tip_state_type.value)}" + f"Expected tip state {expected_state}, but received {actual_state}." ) diff --git a/api/src/opentrons/protocol_api/instrument_context.py b/api/src/opentrons/protocol_api/instrument_context.py index 68e39888405..89f19f6c7ec 100644 --- a/api/src/opentrons/protocol_api/instrument_context.py +++ b/api/src/opentrons/protocol_api/instrument_context.py @@ -312,27 +312,34 @@ def dispense( # noqa: C901 :type volume: int or float :param location: Tells the robot where to dispense liquid held in the pipette. - The location can be a :py:class:`.Well` or a - :py:class:`.Location`. + The location can be a :py:class:`.Well`, :py:class:`.Location`, + :py:class:`.TrashBin`, or :py:class:`.WasteChute`. - - If the location is a ``Well``, the pipette will dispense + - If a ``Well``, the pipette will dispense at or above the bottom center of the well. The distance (in mm) from the well bottom is specified by :py:obj:`well_bottom_clearance.dispense `. - - If the location is a ``Location`` (e.g., the result of - :py:meth:`.Well.top` or :py:meth:`.Well.bottom`), the robot - will dispense into that specified position. + - If a ``Location`` (e.g., the result of + :py:meth:`.Well.top` or :py:meth:`.Well.bottom`), the pipette + will dispense at that specified position. - - If the ``location`` is unspecified, the robot will - dispense into its current position. + - If a trash container, the pipette will dispense at a location + relative to its center and the trash container's top center. + See :ref:`position-relative-trash` for details. + + - If unspecified, the pipette will + dispense at its current position. If only a ``location`` is passed (e.g., ``pipette.dispense(location=plate['A1'])``), all of the liquid aspirated into the pipette will be dispensed (the amount is accessible through :py:attr:`current_volume`). + .. versionchanged:: 2.16 + Accepts ``TrashBin`` and ``WasteChute`` values. + :param rate: How quickly a pipette dispenses liquid. The speed in µL/s is calculated as ``rate`` multiplied by :py:attr:`flow_rate.dispense `. If not specified, defaults to 1.0. See @@ -549,7 +556,11 @@ def blow_out( :ref:`blow-out`. :param location: The blowout location. If no location is specified, the pipette - will blow out from its current position. + will blow out from its current position. + + .. versionchanged:: 2.16 + Accepts ``TrashBin`` and ``WasteChute`` values. + :type location: :py:class:`.Well` or :py:class:`.Location` or ``None`` :raises RuntimeError: If no location is specified and the location cache is @@ -1010,11 +1021,6 @@ def drop_tip( If no location is passed (e.g. ``pipette.drop_tip()``), the pipette will drop the attached tip into its :py:attr:`trash_container`. - Starting with API version 2.15, if the trash container is the default fixed - trash, the API will instruct the pipette to drop tips in different locations - within the trash container. Varying the tip drop location helps prevent tips - from piling up in a single location. - The location in which to drop the tip can be manually specified with the ``location`` argument. The ``location`` argument can be specified in several ways: @@ -1033,8 +1039,21 @@ def drop_tip( the ``WasteChute`` object. For example, ``pipette.drop_tip(location=waste_chute)``. + In API versions 2.15 to 2.17, if ``location`` is a ``TrashBin`` or not + specified, the API will instruct the pipette to drop tips in different locations + within the bin. Varying the tip drop location helps prevent tips + from piling up in a single location. + + Starting with API version 2.18, the API will only vary the tip drop location if + ``location`` is not specified. Specifying a ``TrashBin`` as the ``location`` + behaves the same as specifying :py:meth:`.TrashBin.top`, which is a fixed position. + :param location: - The location to drop the tip. + Where to drop the tip. + + .. versionchanged:: 2.16 + Accepts ``TrashBin`` and ``WasteChute`` values. + :type location: :py:class:`~.types.Location` or :py:class:`.Well` or ``None`` :param home_after: @@ -1481,7 +1500,11 @@ def move_to( See :ref:`move-to` for examples. - :param location: The location to move to. + :param location: Where to move to. + + .. versionchanged:: 2.16 + Accepts ``TrashBin`` and ``WasteChute`` values. + :type location: :py:class:`~.types.Location` :param force_direct: If ``True``, move directly to the destination without arc motion. @@ -1936,6 +1959,10 @@ def configure_nozzle_layout( should be of the same format used when identifying wells by name. Required unless setting ``style=ALL``. + .. note:: + If possible, don't use both ``start="A1"`` and ``start="A12"`` to pick up + tips *from the same rack*. Doing so can affect positional accuracy. + :type start: str or ``None`` :param tip_racks: Behaves the same as setting the ``tip_racks`` parameter of :py:meth:`.load_instrument`. If not specified, the new configuration resets diff --git a/api/src/opentrons/protocol_api/labware.py b/api/src/opentrons/protocol_api/labware.py index 3b7ae943208..be6cc442782 100644 --- a/api/src/opentrons/protocol_api/labware.py +++ b/api/src/opentrons/protocol_api/labware.py @@ -577,22 +577,39 @@ def set_offset(self, x: float, y: float, z: float) -> None: """Set the labware's position offset. The offset is an x, y, z vector in deck coordinates - (see :ref:`protocol-api-deck-coords`) that the motion system - will add to any movement targeting this labware instance. + (see :ref:`protocol-api-deck-coords`). - The offset *will not apply* to any other labware instances, - even if those labware are of the same type. + How the motion system applies the offset depends on the API level of the protocol. - This method is *only* for use with mechanisms like - :obj:`opentrons.execute.get_protocol_api`, which lack an interactive way - to adjust labware offsets. (See :ref:`advanced-control`.) + .. list-table:: + :header-rows: 1 - .. warning:: + * - API level + - Offset behavior + * - 2.12–2.13 + - Offsets only apply to the exact :py:class:`.Labware` instance. + * - 2.14–2.17 + - ``set_offset()`` is not available, and the API raises an error. + * - 2.18 and newer + - + - Offsets apply to any labware of the same type, in the same on-deck location. + - Offsets can't be set on labware that is currently off-deck. + - Offsets do not follow a labware instance when using :py:meth:`.move_labware`. + + .. note:: - If you're uploading a protocol via the Opentrons App, don't use this method, - because it will produce undefined behavior. - Instead, use Labware Position Check in the app or on the touchscreen. + Setting offsets with this method will override any labware offsets set + by running Labware Position Check in the Opentrons App. + + This method is designed for use with mechanisms like + :obj:`opentrons.execute.get_protocol_api`, which lack an interactive way + to adjust labware offsets. (See :ref:`advanced-control`.) + + .. versionchanged:: 2.14 + Temporarily removed. + .. versionchanged:: 2.18 + Restored, and now applies to labware type–location pairs. """ if ( self._api_version >= ENGINE_CORE_API_VERSION diff --git a/api/src/opentrons/protocol_api/protocol_context.py b/api/src/opentrons/protocol_api/protocol_context.py index feb8f56d91c..07c4bdfff5d 100644 --- a/api/src/opentrons/protocol_api/protocol_context.py +++ b/api/src/opentrons/protocol_api/protocol_context.py @@ -224,6 +224,15 @@ def bundled_data(self) -> Dict[str, bytes]: @property @requires_version(2, 18) def params(self) -> Parameters: + """ + The values of runtime parameters, as set during run setup. + + Each attribute of this object corresponds to the ``variable_name`` of a parameter. + See :ref:`using-rtp` for details. + + Parameter values can only be set during run setup. If you try to alter the value + of any attribute of ``params``, the API will raise an error. + """ return self._params def cleanup(self) -> None: diff --git a/api/src/opentrons/protocol_engine/__init__.py b/api/src/opentrons/protocol_engine/__init__.py index eb62ee7f33a..17e28bcdf32 100644 --- a/api/src/opentrons/protocol_engine/__init__.py +++ b/api/src/opentrons/protocol_engine/__init__.py @@ -22,7 +22,7 @@ CommandType, CommandIntent, ) -from .state import State, StateView, StateSummary, CommandSlice, CurrentCommand, Config +from .state import State, StateView, StateSummary, CommandSlice, CommandPointer, Config from .plugins import AbstractPlugin from .types import ( @@ -85,7 +85,7 @@ "State", "StateView", "CommandSlice", - "CurrentCommand", + "CommandPointer", # public value interfaces and models "LabwareOffset", "LabwareOffsetCreate", diff --git a/api/src/opentrons/protocol_engine/actions/actions.py b/api/src/opentrons/protocol_engine/actions/actions.py index adcf4f9e40b..146051346b7 100644 --- a/api/src/opentrons/protocol_engine/actions/actions.py +++ b/api/src/opentrons/protocol_engine/actions/actions.py @@ -14,7 +14,12 @@ from opentrons_shared_data.errors import EnumeratedError -from ..commands import Command, CommandCreate, CommandPrivateResult +from ..commands import ( + Command, + CommandCreate, + CommandDefinedErrorData, + CommandPrivateResult, +) from ..error_recovery_policy import ErrorRecoveryType from ..notes.notes import CommandNote from ..types import ( @@ -158,13 +163,25 @@ class FailCommandAction: """An ID to assign to the command's error. Must be unique to this occurrence of the error. + + todo(mm, 2024-05-13): This is redundant with `error` when it's a defined error. """ failed_at: datetime - """When the command failed.""" + """When the command failed. + + todo(mm, 2024-05-13): This is redundant with `error` when it's a defined error. + """ - error: EnumeratedError - """The underlying exception that caused this command to fail.""" + error: Union[CommandDefinedErrorData, EnumeratedError] + """The error that caused the command to fail. + + If it was a defined error, this should be the `DefinedErrorData` that the command + returned. + + If it was an undefined error, this should be the underlying exception + that caused the command to fail, represented as an `EnumeratedError`. + """ notes: List[CommandNote] """Overwrite the command's `.notes` with these.""" diff --git a/api/src/opentrons/protocol_engine/commands/__init__.py b/api/src/opentrons/protocol_engine/commands/__init__.py index 123425e464f..23fcc6e0aca 100644 --- a/api/src/opentrons/protocol_engine/commands/__init__.py +++ b/api/src/opentrons/protocol_engine/commands/__init__.py @@ -37,7 +37,7 @@ CommandResult, CommandType, CommandPrivateResult, - CommandT, + CommandDefinedErrorData, ) from .aspirate import ( @@ -332,10 +332,9 @@ "CommandResult", "CommandType", "CommandPrivateResult", - "CommandT", + "CommandDefinedErrorData", # base interfaces "AbstractCommandImpl", - "AbstractCommandWithPrivateResultImpl", "BaseCommand", "BaseCommandCreate", "CommandStatus", diff --git a/api/src/opentrons/protocol_engine/commands/aspirate.py b/api/src/opentrons/protocol_engine/commands/aspirate.py index 4dcb81dcc33..6442ffd1f6d 100644 --- a/api/src/opentrons/protocol_engine/commands/aspirate.py +++ b/api/src/opentrons/protocol_engine/commands/aspirate.py @@ -11,7 +11,8 @@ BaseLiquidHandlingResult, DestinationPositionResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from opentrons.hardware_control import HardwareControlAPI @@ -40,7 +41,9 @@ class AspirateResult(BaseLiquidHandlingResult, DestinationPositionResult): pass -class AspirateImplementation(AbstractCommandImpl[AspirateParams, AspirateResult]): +class AspirateImplementation( + AbstractCommandImpl[AspirateParams, SuccessData[AspirateResult, None]] +): """Aspirate command implementation.""" def __init__( @@ -58,7 +61,9 @@ def __init__( self._movement = movement self._command_note_adder = command_note_adder - async def execute(self, params: AspirateParams) -> AspirateResult: + async def execute( + self, params: AspirateParams + ) -> SuccessData[AspirateResult, None]: """Move to and aspirate from the requested well. Raises: @@ -107,12 +112,16 @@ async def execute(self, params: AspirateParams) -> AspirateResult: command_note_adder=self._command_note_adder, ) - return AspirateResult( - volume=volume, position=DeckPoint(x=position.x, y=position.y, z=position.z) + return SuccessData( + public=AspirateResult( + volume=volume, + position=DeckPoint(x=position.x, y=position.y, z=position.z), + ), + private=None, ) -class Aspirate(BaseCommand[AspirateParams, AspirateResult]): +class Aspirate(BaseCommand[AspirateParams, AspirateResult, ErrorOccurrence]): """Aspirate command model.""" commandType: AspirateCommandType = "aspirate" diff --git a/api/src/opentrons/protocol_engine/commands/aspirate_in_place.py b/api/src/opentrons/protocol_engine/commands/aspirate_in_place.py index f59bccdd9f7..a70d0cf7f39 100644 --- a/api/src/opentrons/protocol_engine/commands/aspirate_in_place.py +++ b/api/src/opentrons/protocol_engine/commands/aspirate_in_place.py @@ -12,7 +12,8 @@ FlowRateMixin, BaseLiquidHandlingResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from ..errors.exceptions import PipetteNotReadyToAspirateError if TYPE_CHECKING: @@ -36,7 +37,7 @@ class AspirateInPlaceResult(BaseLiquidHandlingResult): class AspirateInPlaceImplementation( - AbstractCommandImpl[AspirateInPlaceParams, AspirateInPlaceResult] + AbstractCommandImpl[AspirateInPlaceParams, SuccessData[AspirateInPlaceResult, None]] ): """AspirateInPlace command implementation.""" @@ -53,7 +54,9 @@ def __init__( self._hardware_api = hardware_api self._command_note_adder = command_note_adder - async def execute(self, params: AspirateInPlaceParams) -> AspirateInPlaceResult: + async def execute( + self, params: AspirateInPlaceParams + ) -> SuccessData[AspirateInPlaceResult, None]: """Aspirate without moving the pipette. Raises: @@ -77,10 +80,12 @@ async def execute(self, params: AspirateInPlaceParams) -> AspirateInPlaceResult: command_note_adder=self._command_note_adder, ) - return AspirateInPlaceResult(volume=volume) + return SuccessData(public=AspirateInPlaceResult(volume=volume), private=None) -class AspirateInPlace(BaseCommand[AspirateInPlaceParams, AspirateInPlaceResult]): +class AspirateInPlace( + BaseCommand[AspirateInPlaceParams, AspirateInPlaceResult, ErrorOccurrence] +): """AspirateInPlace command model.""" commandType: AspirateInPlaceCommandType = "aspirateInPlace" diff --git a/api/src/opentrons/protocol_engine/commands/blow_out.py b/api/src/opentrons/protocol_engine/commands/blow_out.py index 47338ebc83f..f17b4b44ebc 100644 --- a/api/src/opentrons/protocol_engine/commands/blow_out.py +++ b/api/src/opentrons/protocol_engine/commands/blow_out.py @@ -10,7 +10,8 @@ WellLocationMixin, DestinationPositionResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from opentrons.hardware_control import HardwareControlAPI @@ -34,7 +35,9 @@ class BlowOutResult(DestinationPositionResult): pass -class BlowOutImplementation(AbstractCommandImpl[BlowOutParams, BlowOutResult]): +class BlowOutImplementation( + AbstractCommandImpl[BlowOutParams, SuccessData[BlowOutResult, None]] +): """BlowOut command implementation.""" def __init__( @@ -50,7 +53,7 @@ def __init__( self._state_view = state_view self._hardware_api = hardware_api - async def execute(self, params: BlowOutParams) -> BlowOutResult: + async def execute(self, params: BlowOutParams) -> SuccessData[BlowOutResult, None]: """Move to and blow-out the requested well.""" x, y, z = await self._movement.move_to_well( pipette_id=params.pipetteId, @@ -63,10 +66,12 @@ async def execute(self, params: BlowOutParams) -> BlowOutResult: pipette_id=params.pipetteId, flow_rate=params.flowRate ) - return BlowOutResult(position=DeckPoint(x=x, y=y, z=z)) + return SuccessData( + public=BlowOutResult(position=DeckPoint(x=x, y=y, z=z)), private=None + ) -class BlowOut(BaseCommand[BlowOutParams, BlowOutResult]): +class BlowOut(BaseCommand[BlowOutParams, BlowOutResult, ErrorOccurrence]): """Blow-out command model.""" commandType: BlowOutCommandType = "blowout" diff --git a/api/src/opentrons/protocol_engine/commands/blow_out_in_place.py b/api/src/opentrons/protocol_engine/commands/blow_out_in_place.py index a46aa89110e..d1527457c9c 100644 --- a/api/src/opentrons/protocol_engine/commands/blow_out_in_place.py +++ b/api/src/opentrons/protocol_engine/commands/blow_out_in_place.py @@ -9,7 +9,8 @@ PipetteIdMixin, FlowRateMixin, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from opentrons.hardware_control import HardwareControlAPI @@ -35,7 +36,7 @@ class BlowOutInPlaceResult(BaseModel): class BlowOutInPlaceImplementation( - AbstractCommandImpl[BlowOutInPlaceParams, BlowOutInPlaceResult] + AbstractCommandImpl[BlowOutInPlaceParams, SuccessData[BlowOutInPlaceResult, None]] ): """BlowOutInPlace command implementation.""" @@ -50,16 +51,20 @@ def __init__( self._state_view = state_view self._hardware_api = hardware_api - async def execute(self, params: BlowOutInPlaceParams) -> BlowOutInPlaceResult: + async def execute( + self, params: BlowOutInPlaceParams + ) -> SuccessData[BlowOutInPlaceResult, None]: """Blow-out without moving the pipette.""" await self._pipetting.blow_out_in_place( pipette_id=params.pipetteId, flow_rate=params.flowRate ) - return BlowOutInPlaceResult() + return SuccessData(public=BlowOutInPlaceResult(), private=None) -class BlowOutInPlace(BaseCommand[BlowOutInPlaceParams, BlowOutInPlaceResult]): +class BlowOutInPlace( + BaseCommand[BlowOutInPlaceParams, BlowOutInPlaceResult, ErrorOccurrence] +): """BlowOutInPlace command model.""" commandType: BlowOutInPlaceCommandType = "blowOutInPlace" diff --git a/api/src/opentrons/protocol_engine/commands/calibration/calibrate_gripper.py b/api/src/opentrons/protocol_engine/commands/calibration/calibrate_gripper.py index c57dac9eb42..b400e2dd33a 100644 --- a/api/src/opentrons/protocol_engine/commands/calibration/calibrate_gripper.py +++ b/api/src/opentrons/protocol_engine/commands/calibration/calibrate_gripper.py @@ -13,11 +13,8 @@ from opentrons.hardware_control.instruments.ot3.instrument_calibration import ( GripperCalibrationOffset, ) -from opentrons.protocol_engine.commands.command import ( - AbstractCommandImpl, - BaseCommand, - BaseCommandCreate, -) +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence from opentrons.protocol_engine.types import Vec3f from opentrons.protocol_engine.resources import ensure_ot3_hardware @@ -74,7 +71,9 @@ class CalibrateGripperResult(BaseModel): class CalibrateGripperImplementation( - AbstractCommandImpl[CalibrateGripperParams, CalibrateGripperResult] + AbstractCommandImpl[ + CalibrateGripperParams, SuccessData[CalibrateGripperResult, None] + ] ): """The implementation of a `calibrateGripper` command.""" @@ -86,7 +85,9 @@ def __init__( ) -> None: self._hardware_api = hardware_api - async def execute(self, params: CalibrateGripperParams) -> CalibrateGripperResult: + async def execute( + self, params: CalibrateGripperParams + ) -> SuccessData[CalibrateGripperResult, None]: """Execute a `calibrateGripper` command. 1. Move from the current location to the calibration area on the deck. @@ -118,11 +119,14 @@ async def execute(self, params: CalibrateGripperParams) -> CalibrateGripperResul ) calibration_data = result - return CalibrateGripperResult.construct( - jawOffset=Vec3f.construct( - x=probe_offset.x, y=probe_offset.y, z=probe_offset.z + return SuccessData( + public=CalibrateGripperResult.construct( + jawOffset=Vec3f.construct( + x=probe_offset.x, y=probe_offset.y, z=probe_offset.z + ), + savedCalibration=calibration_data, ), - savedCalibration=calibration_data, + private=None, ) @staticmethod @@ -135,7 +139,9 @@ def _convert_to_hw_api_probe( return HWAPIGripperProbe.REAR -class CalibrateGripper(BaseCommand[CalibrateGripperParams, CalibrateGripperResult]): +class CalibrateGripper( + BaseCommand[CalibrateGripperParams, CalibrateGripperResult, ErrorOccurrence] +): """A `calibrateGripper` command.""" commandType: CalibrateGripperCommandType = "calibration/calibrateGripper" diff --git a/api/src/opentrons/protocol_engine/commands/calibration/calibrate_module.py b/api/src/opentrons/protocol_engine/commands/calibration/calibrate_module.py index a3e8da549a7..08f5f45330f 100644 --- a/api/src/opentrons/protocol_engine/commands/calibration/calibrate_module.py +++ b/api/src/opentrons/protocol_engine/commands/calibration/calibrate_module.py @@ -7,11 +7,8 @@ from opentrons.types import MountType from opentrons.protocol_engine.resources.ot3_validation import ensure_ot3_hardware -from opentrons.protocol_engine.commands.command import ( - AbstractCommandImpl, - BaseCommand, - BaseCommandCreate, -) +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence # Work around type-only circular dependencies. if TYPE_CHECKING: @@ -52,7 +49,7 @@ class CalibrateModuleResult(BaseModel): class CalibrateModuleImplementation( - AbstractCommandImpl[CalibrateModuleParams, CalibrateModuleResult] + AbstractCommandImpl[CalibrateModuleParams, SuccessData[CalibrateModuleResult, None]] ): """CalibrateModule command implementation.""" @@ -65,7 +62,9 @@ def __init__( self._state_view = state_view self._hardware_api = hardware_api - async def execute(self, params: CalibrateModuleParams) -> CalibrateModuleResult: + async def execute( + self, params: CalibrateModuleParams + ) -> SuccessData[CalibrateModuleResult, None]: """Execute calibrate-module command.""" ot3_api = ensure_ot3_hardware( self._hardware_api, @@ -85,15 +84,20 @@ async def execute(self, params: CalibrateModuleParams) -> CalibrateModuleResult: ot3_api, ot3_mount, slot.slotName.id, module_serial, nominal_position ) - return CalibrateModuleResult( - moduleOffset=ModuleOffsetVector( - x=module_offset.x, y=module_offset.y, z=module_offset.z + return SuccessData( + public=CalibrateModuleResult( + moduleOffset=ModuleOffsetVector( + x=module_offset.x, y=module_offset.y, z=module_offset.z + ), + location=slot, ), - location=slot, + private=None, ) -class CalibrateModule(BaseCommand[CalibrateModuleParams, CalibrateModuleResult]): +class CalibrateModule( + BaseCommand[CalibrateModuleParams, CalibrateModuleResult, ErrorOccurrence] +): """Calibrate-module command model.""" commandType: CalibrateModuleCommandType = "calibration/calibrateModule" diff --git a/api/src/opentrons/protocol_engine/commands/calibration/calibrate_pipette.py b/api/src/opentrons/protocol_engine/commands/calibration/calibrate_pipette.py index e77f2be790d..4369f88a9c5 100644 --- a/api/src/opentrons/protocol_engine/commands/calibration/calibrate_pipette.py +++ b/api/src/opentrons/protocol_engine/commands/calibration/calibrate_pipette.py @@ -3,11 +3,8 @@ from typing_extensions import Literal from pydantic import BaseModel, Field -from ..command import ( - AbstractCommandImpl, - BaseCommand, - BaseCommandCreate, -) +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence from ...types import InstrumentOffsetVector from opentrons.protocol_engine.resources.ot3_validation import ensure_ot3_hardware @@ -37,7 +34,9 @@ class CalibratePipetteResult(BaseModel): class CalibratePipetteImplementation( - AbstractCommandImpl[CalibratePipetteParams, CalibratePipetteResult] + AbstractCommandImpl[ + CalibratePipetteParams, SuccessData[CalibratePipetteResult, None] + ] ): """CalibratePipette command implementation.""" @@ -48,7 +47,9 @@ def __init__( ) -> None: self._hardware_api = hardware_api - async def execute(self, params: CalibratePipetteParams) -> CalibratePipetteResult: + async def execute( + self, params: CalibratePipetteParams + ) -> SuccessData[CalibratePipetteResult, None]: """Execute calibrate-pipette command.""" # TODO (tz, 20-9-22): Add a better solution to determine if a command can be executed on an OT-3/OT-2 ot3_api = ensure_ot3_hardware( @@ -65,14 +66,19 @@ async def execute(self, params: CalibratePipetteParams) -> CalibratePipetteResul await ot3_api.save_instrument_offset(mount=ot3_mount, delta=pipette_offset) - return CalibratePipetteResult.construct( - pipetteOffset=InstrumentOffsetVector.construct( - x=pipette_offset.x, y=pipette_offset.y, z=pipette_offset.z - ) + return SuccessData( + public=CalibratePipetteResult.construct( + pipetteOffset=InstrumentOffsetVector.construct( + x=pipette_offset.x, y=pipette_offset.y, z=pipette_offset.z + ) + ), + private=None, ) -class CalibratePipette(BaseCommand[CalibratePipetteParams, CalibratePipetteResult]): +class CalibratePipette( + BaseCommand[CalibratePipetteParams, CalibratePipetteResult, ErrorOccurrence] +): """Calibrate-pipette command model.""" commandType: CalibratePipetteCommandType = "calibration/calibratePipette" diff --git a/api/src/opentrons/protocol_engine/commands/calibration/move_to_maintenance_position.py b/api/src/opentrons/protocol_engine/commands/calibration/move_to_maintenance_position.py index 8ce067963ab..81d9e30d1cc 100644 --- a/api/src/opentrons/protocol_engine/commands/calibration/move_to_maintenance_position.py +++ b/api/src/opentrons/protocol_engine/commands/calibration/move_to_maintenance_position.py @@ -9,11 +9,8 @@ from opentrons.types import MountType, Point, Mount from opentrons.hardware_control.types import Axis, CriticalPoint -from opentrons.protocol_engine.commands.command import ( - AbstractCommandImpl, - BaseCommand, - BaseCommandCreate, -) +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence from opentrons.protocol_engine.resources.ot3_validation import ensure_ot3_hardware if TYPE_CHECKING: @@ -59,7 +56,8 @@ class MoveToMaintenancePositionResult(BaseModel): class MoveToMaintenancePositionImplementation( AbstractCommandImpl[ - MoveToMaintenancePositionParams, MoveToMaintenancePositionResult + MoveToMaintenancePositionParams, + SuccessData[MoveToMaintenancePositionResult, None], ] ): """Calibration set up position command implementation.""" @@ -75,7 +73,7 @@ def __init__( async def execute( self, params: MoveToMaintenancePositionParams - ) -> MoveToMaintenancePositionResult: + ) -> SuccessData[MoveToMaintenancePositionResult, None]: """Move the requested mount to a maintenance deck slot.""" ot3_api = ensure_ot3_hardware( self._hardware_api, @@ -115,11 +113,15 @@ async def execute( ) await ot3_api.disengage_axes([Axis.Z_L, Axis.Z_R]) - return MoveToMaintenancePositionResult() + return SuccessData(public=MoveToMaintenancePositionResult(), private=None) class MoveToMaintenancePosition( - BaseCommand[MoveToMaintenancePositionParams, MoveToMaintenancePositionResult] + BaseCommand[ + MoveToMaintenancePositionParams, + MoveToMaintenancePositionResult, + ErrorOccurrence, + ] ): """Calibration set up position command model.""" diff --git a/api/src/opentrons/protocol_engine/commands/command.py b/api/src/opentrons/protocol_engine/commands/command.py index fcdd7387355..04846b54fc0 100644 --- a/api/src/opentrons/protocol_engine/commands/command.py +++ b/api/src/opentrons/protocol_engine/commands/command.py @@ -4,6 +4,7 @@ from __future__ import annotations from abc import ABC, abstractmethod +from dataclasses import dataclass from datetime import datetime from enum import Enum from typing import ( @@ -11,7 +12,6 @@ Generic, Optional, TypeVar, - Tuple, List, Type, Union, @@ -22,6 +22,7 @@ from opentrons.hardware_control import HardwareControlAPI +from ..resources import ModelUtils from ..errors import ErrorOccurrence from ..notes import CommandNote, CommandNoteAdder @@ -35,6 +36,8 @@ _ParamsT_contra = TypeVar("_ParamsT_contra", bound=BaseModel, contravariant=True) _ResultT = TypeVar("_ResultT", bound=BaseModel) _ResultT_co = TypeVar("_ResultT_co", bound=BaseModel, covariant=True) +_ErrorT = TypeVar("_ErrorT", bound=ErrorOccurrence) +_ErrorT_co = TypeVar("_ErrorT_co", bound=ErrorOccurrence, covariant=True) _PrivateResultT_co = TypeVar("_PrivateResultT_co", covariant=True) @@ -60,7 +63,11 @@ class CommandIntent(str, Enum): FIXIT = "fixit" -class BaseCommandCreate(GenericModel, Generic[_ParamsT]): +class BaseCommandCreate( + GenericModel, + # These type parameters need to be invariant because our fields are mutable. + Generic[_ParamsT], +): """Base class for command creation requests. You shouldn't use this class directly; instead, use or define @@ -99,7 +106,37 @@ class BaseCommandCreate(GenericModel, Generic[_ParamsT]): ) -class BaseCommand(GenericModel, Generic[_ParamsT, _ResultT]): +@dataclass(frozen=True) +class SuccessData(Generic[_ResultT_co, _PrivateResultT_co]): + """Data from the successful completion of a command.""" + + public: _ResultT_co + """Public result data. Exposed over HTTP and stored in databases.""" + + private: _PrivateResultT_co + """Additional result data, only given to `opentrons.protocol_engine` internals.""" + + +@dataclass(frozen=True) +class DefinedErrorData(Generic[_ErrorT_co, _PrivateResultT_co]): + """Data from a command that failed with a defined error. + + This should only be used for "defined" errors, not any error. + See `AbstractCommandImpl.execute()`. + """ + + public: _ErrorT_co + """Public error data. Exposed over HTTP and stored in databases.""" + + private: _PrivateResultT_co + """Additional error data, only given to `opentrons.protocol_engine` internals.""" + + +class BaseCommand( + GenericModel, + # These type parameters need to be invariant because our fields are mutable. + Generic[_ParamsT, _ResultT, _ErrorT], +): """Base command model. You shouldn't use this class directly; instead, use or define @@ -134,7 +171,12 @@ class BaseCommand(GenericModel, Generic[_ParamsT, _ResultT]): None, description="Command execution result data, if succeeded", ) - error: Optional[ErrorOccurrence] = Field( + error: Union[ + _ErrorT, + # ErrorOccurrence here is for undefined errors not captured by _ErrorT. + ErrorOccurrence, + None, + ] = Field( None, description="Reference to error occurrence, if execution failed", ) @@ -169,69 +211,46 @@ class BaseCommand(GenericModel, Generic[_ParamsT, _ResultT]): ), ) - _ImplementationCls: Union[ - Type[AbstractCommandImpl[_ParamsT, _ResultT]], - Type[AbstractCommandWithPrivateResultImpl[_ParamsT, _ResultT, object]], + _ImplementationCls: Type[ + AbstractCommandImpl[ + _ParamsT, + Union[ + SuccessData[ + # Our _ImplementationCls must return public result data that can fit + # in our `result` field: + _ResultT, + # But we don't care (here) what kind of private result data it returns: + object, + ], + DefinedErrorData[ + # Likewise, for our `error` field: + _ErrorT, + object, + ], + ], + ] ] -class AbstractCommandImpl( - ABC, - Generic[_ParamsT_contra, _ResultT_co], -): - """Abstract command creation and execution implementation. - - A given command request should map to a specific command implementation, - which defines how to: - - - Create a command resource from the request model - - Execute the command, mapping data from execution into the result model - - This class should be used as the base class for new commands by default. You should only - use AbstractCommandWithPrivateResultImpl if you actually need private results to send to - the rest of the engine wihtout being published outside of it. - """ - - def __init__( - self, - state_view: StateView, - hardware_api: HardwareControlAPI, - equipment: execution.EquipmentHandler, - movement: execution.MovementHandler, - gantry_mover: execution.GantryMover, - labware_movement: execution.LabwareMovementHandler, - pipetting: execution.PipettingHandler, - tip_handler: execution.TipHandler, - run_control: execution.RunControlHandler, - rail_lights: execution.RailLightsHandler, - status_bar: execution.StatusBarHandler, - command_note_adder: CommandNoteAdder, - ) -> None: - """Initialize the command implementation with execution handlers.""" - pass - - @abstractmethod - async def execute(self, params: _ParamsT_contra) -> _ResultT_co: - """Execute the command, mapping data from execution into a response model.""" - ... +_ExecuteReturnT_co = TypeVar( + "_ExecuteReturnT_co", + bound=Union[ + SuccessData[BaseModel, object], + DefinedErrorData[ErrorOccurrence, object], + ], + covariant=True, +) -class AbstractCommandWithPrivateResultImpl( +class AbstractCommandImpl( ABC, - Generic[_ParamsT_contra, _ResultT_co, _PrivateResultT_co], + Generic[_ParamsT_contra, _ExecuteReturnT_co], ): - """Abstract command creation and execution implementation if the command has private results. + """Abstract command creation and execution implementation. A given command request should map to a specific command implementation, - which defines how to: - - - Create a command resource from the request model - - Execute the command, mapping data from execution into the result model - - This class should be used instead of AbstractCommandImpl as a base class if your command needs - to send data to result handlers that should not be published outside of the engine. - - Note that this class needs an extra type-parameter for the private result. + which defines how to execute the command and map data from execution into the + result model. """ def __init__( @@ -246,6 +265,7 @@ def __init__( tip_handler: execution.TipHandler, run_control: execution.RunControlHandler, rail_lights: execution.RailLightsHandler, + model_utils: ModelUtils, status_bar: execution.StatusBarHandler, command_note_adder: CommandNoteAdder, ) -> None: @@ -253,8 +273,16 @@ def __init__( pass @abstractmethod - async def execute( - self, params: _ParamsT_contra - ) -> Tuple[_ResultT_co, _PrivateResultT_co]: - """Execute the command, mapping data from execution into a response model.""" + async def execute(self, params: _ParamsT_contra) -> _ExecuteReturnT_co: + """Execute the command, mapping data from execution into a response model. + + This should either: + + - Return a `SuccessData`, if the command completed normally. + - Return a `DefinedErrorData`, if the command failed with a "defined error." + Defined errors are errors that are documented as part of the robot's public + API. + - Raise an exception, if the command failed with any other error + (in other words, an undefined error). + """ ... diff --git a/api/src/opentrons/protocol_engine/commands/command_unions.py b/api/src/opentrons/protocol_engine/commands/command_unions.py index 7674508cc96..9196cdf89cd 100644 --- a/api/src/opentrons/protocol_engine/commands/command_unions.py +++ b/api/src/opentrons/protocol_engine/commands/command_unions.py @@ -1,10 +1,12 @@ """Union types of concrete command definitions.""" -from typing import Union, TypeVar +from typing import Union from typing_extensions import Annotated from pydantic import Field +from .command import DefinedErrorData + from . import heater_shaker from . import magnetic_module from . import temperature_module @@ -203,6 +205,8 @@ PickUpTipCreate, PickUpTipResult, PickUpTipCommandType, + TipPhysicallyMissingError, + TipPhysicallyMissingErrorInternalData, ) from .touch_tip import ( @@ -624,4 +628,8 @@ ConfigureNozzleLayoutPrivateResult, ] -CommandT = TypeVar("CommandT", bound=Command) +# All `DefinedErrorData`s that implementations will actually return in practice. +# There's just one right now, but this will eventually be a Union. +CommandDefinedErrorData = DefinedErrorData[ + TipPhysicallyMissingError, TipPhysicallyMissingErrorInternalData +] diff --git a/api/src/opentrons/protocol_engine/commands/comment.py b/api/src/opentrons/protocol_engine/commands/comment.py index 933e3bdbd53..d411b6b4047 100644 --- a/api/src/opentrons/protocol_engine/commands/comment.py +++ b/api/src/opentrons/protocol_engine/commands/comment.py @@ -4,7 +4,8 @@ from typing import Optional, Type from typing_extensions import Literal -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence CommentCommandType = Literal["comment"] @@ -22,18 +23,20 @@ class CommentResult(BaseModel): """Result data from the execution of a Comment command.""" -class CommentImplementation(AbstractCommandImpl[CommentParams, CommentResult]): +class CommentImplementation( + AbstractCommandImpl[CommentParams, SuccessData[CommentResult, None]] +): """Comment command implementation.""" def __init__(self, **kwargs: object) -> None: pass - async def execute(self, params: CommentParams) -> CommentResult: + async def execute(self, params: CommentParams) -> SuccessData[CommentResult, None]: """No operation taken other than capturing message in command.""" - return CommentResult() + return SuccessData(public=CommentResult(), private=None) -class Comment(BaseCommand[CommentParams, CommentResult]): +class Comment(BaseCommand[CommentParams, CommentResult, ErrorOccurrence]): """Comment command model.""" commandType: CommentCommandType = "comment" diff --git a/api/src/opentrons/protocol_engine/commands/configure_for_volume.py b/api/src/opentrons/protocol_engine/commands/configure_for_volume.py index f1f59c35bcb..9a84e16dc45 100644 --- a/api/src/opentrons/protocol_engine/commands/configure_for_volume.py +++ b/api/src/opentrons/protocol_engine/commands/configure_for_volume.py @@ -1,15 +1,12 @@ """Configure for volume command request, result, and implementation models.""" from __future__ import annotations from pydantic import BaseModel, Field -from typing import TYPE_CHECKING, Optional, Type, Tuple +from typing import TYPE_CHECKING, Optional, Type from typing_extensions import Literal from .pipetting_common import PipetteIdMixin -from .command import ( - AbstractCommandWithPrivateResultImpl, - BaseCommand, - BaseCommandCreate, -) +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from .configuring_common import PipetteConfigUpdateResultMixin if TYPE_CHECKING: @@ -43,10 +40,9 @@ class ConfigureForVolumeResult(BaseModel): class ConfigureForVolumeImplementation( - AbstractCommandWithPrivateResultImpl[ + AbstractCommandImpl[ ConfigureForVolumeParams, - ConfigureForVolumeResult, - ConfigureForVolumePrivateResult, + SuccessData[ConfigureForVolumeResult, ConfigureForVolumePrivateResult], ] ): """Configure for volume command implementation.""" @@ -56,22 +52,25 @@ def __init__(self, equipment: EquipmentHandler, **kwargs: object) -> None: async def execute( self, params: ConfigureForVolumeParams - ) -> Tuple[ConfigureForVolumeResult, ConfigureForVolumePrivateResult]: + ) -> SuccessData[ConfigureForVolumeResult, ConfigureForVolumePrivateResult]: """Check that requested pipette can be configured for the given volume.""" pipette_result = await self._equipment.configure_for_volume( pipette_id=params.pipetteId, volume=params.volume, ) - return ConfigureForVolumeResult(), ConfigureForVolumePrivateResult( - pipette_id=pipette_result.pipette_id, - serial_number=pipette_result.serial_number, - config=pipette_result.static_config, + return SuccessData( + public=ConfigureForVolumeResult(), + private=ConfigureForVolumePrivateResult( + pipette_id=pipette_result.pipette_id, + serial_number=pipette_result.serial_number, + config=pipette_result.static_config, + ), ) class ConfigureForVolume( - BaseCommand[ConfigureForVolumeParams, ConfigureForVolumeResult] + BaseCommand[ConfigureForVolumeParams, ConfigureForVolumeResult, ErrorOccurrence] ): """Configure for volume command model.""" diff --git a/api/src/opentrons/protocol_engine/commands/configure_nozzle_layout.py b/api/src/opentrons/protocol_engine/commands/configure_nozzle_layout.py index 49b90ec7432..ace59d49fde 100644 --- a/api/src/opentrons/protocol_engine/commands/configure_nozzle_layout.py +++ b/api/src/opentrons/protocol_engine/commands/configure_nozzle_layout.py @@ -1,17 +1,14 @@ """Configure nozzle layout command request, result, and implementation models.""" from __future__ import annotations from pydantic import BaseModel -from typing import TYPE_CHECKING, Optional, Type, Tuple, Union +from typing import TYPE_CHECKING, Optional, Type, Union from typing_extensions import Literal from .pipetting_common import ( PipetteIdMixin, ) -from .command import ( - AbstractCommandWithPrivateResultImpl, - BaseCommand, - BaseCommandCreate, -) +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from .configuring_common import ( PipetteNozzleLayoutResultMixin, ) @@ -55,10 +52,9 @@ class ConfigureNozzleLayoutResult(BaseModel): class ConfigureNozzleLayoutImplementation( - AbstractCommandWithPrivateResultImpl[ + AbstractCommandImpl[ ConfigureNozzleLayoutParams, - ConfigureNozzleLayoutResult, - ConfigureNozzleLayoutPrivateResult, + SuccessData[ConfigureNozzleLayoutResult, ConfigureNozzleLayoutPrivateResult], ] ): """Configure nozzle layout command implementation.""" @@ -71,7 +67,7 @@ def __init__( async def execute( self, params: ConfigureNozzleLayoutParams - ) -> Tuple[ConfigureNozzleLayoutResult, ConfigureNozzleLayoutPrivateResult]: + ) -> SuccessData[ConfigureNozzleLayoutResult, ConfigureNozzleLayoutPrivateResult]: """Check that requested pipette can support the requested nozzle layout.""" primary_nozzle = params.configurationParams.dict().get("primaryNozzle") front_right_nozzle = params.configurationParams.dict().get("frontRightNozzle") @@ -87,14 +83,19 @@ async def execute( **nozzle_params, ) - return ConfigureNozzleLayoutResult(), ConfigureNozzleLayoutPrivateResult( - pipette_id=params.pipetteId, - nozzle_map=nozzle_map, + return SuccessData( + public=ConfigureNozzleLayoutResult(), + private=ConfigureNozzleLayoutPrivateResult( + pipette_id=params.pipetteId, + nozzle_map=nozzle_map, + ), ) class ConfigureNozzleLayout( - BaseCommand[ConfigureNozzleLayoutParams, ConfigureNozzleLayoutResult] + BaseCommand[ + ConfigureNozzleLayoutParams, ConfigureNozzleLayoutResult, ErrorOccurrence + ] ): """Configure nozzle layout command model.""" diff --git a/api/src/opentrons/protocol_engine/commands/custom.py b/api/src/opentrons/protocol_engine/commands/custom.py index e2598d4de15..2ceebda764c 100644 --- a/api/src/opentrons/protocol_engine/commands/custom.py +++ b/api/src/opentrons/protocol_engine/commands/custom.py @@ -14,7 +14,8 @@ from typing import Optional, Type from typing_extensions import Literal -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence CustomCommandType = Literal["custom"] @@ -38,18 +39,20 @@ class Config: extra = Extra.allow -class CustomImplementation(AbstractCommandImpl[CustomParams, CustomResult]): +class CustomImplementation( + AbstractCommandImpl[CustomParams, SuccessData[CustomResult, None]] +): """Custom command implementation.""" # TODO(mm, 2022-11-09): figure out how a plugin can specify a custom command # implementation. For now, always no-op, so we can use custom commands as containers # for legacy RPC (pre-ProtocolEngine) payloads. - async def execute(self, params: CustomParams) -> CustomResult: + async def execute(self, params: CustomParams) -> SuccessData[CustomResult, None]: """A custom command does nothing when executed directly.""" - return CustomResult.construct() + return SuccessData(public=CustomResult.construct(), private=None) -class Custom(BaseCommand[CustomParams, CustomResult]): +class Custom(BaseCommand[CustomParams, CustomResult, ErrorOccurrence]): """Custom command model.""" commandType: CustomCommandType = "custom" diff --git a/api/src/opentrons/protocol_engine/commands/dispense.py b/api/src/opentrons/protocol_engine/commands/dispense.py index aa5017ed670..7ba9fe2ae52 100644 --- a/api/src/opentrons/protocol_engine/commands/dispense.py +++ b/api/src/opentrons/protocol_engine/commands/dispense.py @@ -14,7 +14,8 @@ BaseLiquidHandlingResult, DestinationPositionResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import MovementHandler, PipettingHandler @@ -40,7 +41,9 @@ class DispenseResult(BaseLiquidHandlingResult, DestinationPositionResult): pass -class DispenseImplementation(AbstractCommandImpl[DispenseParams, DispenseResult]): +class DispenseImplementation( + AbstractCommandImpl[DispenseParams, SuccessData[DispenseResult, None]] +): """Dispense command implementation.""" def __init__( @@ -49,7 +52,9 @@ def __init__( self._movement = movement self._pipetting = pipetting - async def execute(self, params: DispenseParams) -> DispenseResult: + async def execute( + self, params: DispenseParams + ) -> SuccessData[DispenseResult, None]: """Move to and dispense to the requested well.""" position = await self._movement.move_to_well( pipette_id=params.pipetteId, @@ -64,13 +69,16 @@ async def execute(self, params: DispenseParams) -> DispenseResult: push_out=params.pushOut, ) - return DispenseResult( - volume=volume, - position=DeckPoint(x=position.x, y=position.y, z=position.z), + return SuccessData( + public=DispenseResult( + volume=volume, + position=DeckPoint(x=position.x, y=position.y, z=position.z), + ), + private=None, ) -class Dispense(BaseCommand[DispenseParams, DispenseResult]): +class Dispense(BaseCommand[DispenseParams, DispenseResult, ErrorOccurrence]): """Dispense command model.""" commandType: DispenseCommandType = "dispense" diff --git a/api/src/opentrons/protocol_engine/commands/dispense_in_place.py b/api/src/opentrons/protocol_engine/commands/dispense_in_place.py index 9f0aee8df03..160345de469 100644 --- a/api/src/opentrons/protocol_engine/commands/dispense_in_place.py +++ b/api/src/opentrons/protocol_engine/commands/dispense_in_place.py @@ -11,7 +11,8 @@ FlowRateMixin, BaseLiquidHandlingResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import PipettingHandler @@ -36,14 +37,16 @@ class DispenseInPlaceResult(BaseLiquidHandlingResult): class DispenseInPlaceImplementation( - AbstractCommandImpl[DispenseInPlaceParams, DispenseInPlaceResult] + AbstractCommandImpl[DispenseInPlaceParams, SuccessData[DispenseInPlaceResult, None]] ): """DispenseInPlace command implementation.""" def __init__(self, pipetting: PipettingHandler, **kwargs: object) -> None: self._pipetting = pipetting - async def execute(self, params: DispenseInPlaceParams) -> DispenseInPlaceResult: + async def execute( + self, params: DispenseInPlaceParams + ) -> SuccessData[DispenseInPlaceResult, None]: """Dispense without moving the pipette.""" volume = await self._pipetting.dispense_in_place( pipette_id=params.pipetteId, @@ -51,10 +54,12 @@ async def execute(self, params: DispenseInPlaceParams) -> DispenseInPlaceResult: flow_rate=params.flowRate, push_out=params.pushOut, ) - return DispenseInPlaceResult(volume=volume) + return SuccessData(public=DispenseInPlaceResult(volume=volume), private=None) -class DispenseInPlace(BaseCommand[DispenseInPlaceParams, DispenseInPlaceResult]): +class DispenseInPlace( + BaseCommand[DispenseInPlaceParams, DispenseInPlaceResult, ErrorOccurrence] +): """DispenseInPlace command model.""" commandType: DispenseInPlaceCommandType = "dispenseInPlace" diff --git a/api/src/opentrons/protocol_engine/commands/drop_tip.py b/api/src/opentrons/protocol_engine/commands/drop_tip.py index 923c384e630..ddb3c56cf7e 100644 --- a/api/src/opentrons/protocol_engine/commands/drop_tip.py +++ b/api/src/opentrons/protocol_engine/commands/drop_tip.py @@ -7,7 +7,8 @@ from ..types import DropTipWellLocation, DeckPoint from .pipetting_common import PipetteIdMixin, DestinationPositionResult -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..state import StateView @@ -52,7 +53,9 @@ class DropTipResult(DestinationPositionResult): pass -class DropTipImplementation(AbstractCommandImpl[DropTipParams, DropTipResult]): +class DropTipImplementation( + AbstractCommandImpl[DropTipParams, SuccessData[DropTipResult, None]] +): """Drop tip command implementation.""" def __init__( @@ -66,7 +69,7 @@ def __init__( self._tip_handler = tip_handler self._movement_handler = movement - async def execute(self, params: DropTipParams) -> DropTipResult: + async def execute(self, params: DropTipParams) -> SuccessData[DropTipResult, None]: """Move to and drop a tip using the requested pipette.""" pipette_id = params.pipetteId labware_id = params.labwareId @@ -101,12 +104,15 @@ async def execute(self, params: DropTipParams) -> DropTipResult: await self._tip_handler.drop_tip(pipette_id=pipette_id, home_after=home_after) - return DropTipResult( - position=DeckPoint(x=position.x, y=position.y, z=position.z) + return SuccessData( + public=DropTipResult( + position=DeckPoint(x=position.x, y=position.y, z=position.z) + ), + private=None, ) -class DropTip(BaseCommand[DropTipParams, DropTipResult]): +class DropTip(BaseCommand[DropTipParams, DropTipResult, ErrorOccurrence]): """Drop tip command model.""" commandType: DropTipCommandType = "dropTip" diff --git a/api/src/opentrons/protocol_engine/commands/drop_tip_in_place.py b/api/src/opentrons/protocol_engine/commands/drop_tip_in_place.py index ae287f028dd..cf27732a6a5 100644 --- a/api/src/opentrons/protocol_engine/commands/drop_tip_in_place.py +++ b/api/src/opentrons/protocol_engine/commands/drop_tip_in_place.py @@ -5,7 +5,8 @@ from typing_extensions import Literal from .pipetting_common import PipetteIdMixin -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import TipHandler @@ -34,7 +35,7 @@ class DropTipInPlaceResult(BaseModel): class DropTipInPlaceImplementation( - AbstractCommandImpl[DropTipInPlaceParams, DropTipInPlaceResult] + AbstractCommandImpl[DropTipInPlaceParams, SuccessData[DropTipInPlaceResult, None]] ): """Drop tip in place command implementation.""" @@ -45,16 +46,20 @@ def __init__( ) -> None: self._tip_handler = tip_handler - async def execute(self, params: DropTipInPlaceParams) -> DropTipInPlaceResult: + async def execute( + self, params: DropTipInPlaceParams + ) -> SuccessData[DropTipInPlaceResult, None]: """Drop a tip using the requested pipette.""" await self._tip_handler.drop_tip( pipette_id=params.pipetteId, home_after=params.homeAfter ) - return DropTipInPlaceResult() + return SuccessData(public=DropTipInPlaceResult(), private=None) -class DropTipInPlace(BaseCommand[DropTipInPlaceParams, DropTipInPlaceResult]): +class DropTipInPlace( + BaseCommand[DropTipInPlaceParams, DropTipInPlaceResult, ErrorOccurrence] +): """Drop tip in place command model.""" commandType: DropTipInPlaceCommandType = "dropTipInPlace" diff --git a/api/src/opentrons/protocol_engine/commands/get_tip_presence.py b/api/src/opentrons/protocol_engine/commands/get_tip_presence.py index 0a878418a6b..6c4eea93a84 100644 --- a/api/src/opentrons/protocol_engine/commands/get_tip_presence.py +++ b/api/src/opentrons/protocol_engine/commands/get_tip_presence.py @@ -6,7 +6,8 @@ from typing_extensions import Literal from .pipetting_common import PipetteIdMixin -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from ..types import TipPresenceStatus @@ -37,7 +38,7 @@ class GetTipPresenceResult(BaseModel): class GetTipPresenceImplementation( - AbstractCommandImpl[GetTipPresenceParams, GetTipPresenceResult] + AbstractCommandImpl[GetTipPresenceParams, SuccessData[GetTipPresenceResult, None]] ): """GetTipPresence command implementation.""" @@ -48,7 +49,9 @@ def __init__( ) -> None: self._tip_handler = tip_handler - async def execute(self, params: GetTipPresenceParams) -> GetTipPresenceResult: + async def execute( + self, params: GetTipPresenceParams + ) -> SuccessData[GetTipPresenceResult, None]: """Verify if tip presence is as expected for the requested pipette.""" pipette_id = params.pipetteId @@ -56,10 +59,12 @@ async def execute(self, params: GetTipPresenceParams) -> GetTipPresenceResult: pipette_id=pipette_id, ) - return GetTipPresenceResult(status=result) + return SuccessData(public=GetTipPresenceResult(status=result), private=None) -class GetTipPresence(BaseCommand[GetTipPresenceParams, GetTipPresenceResult]): +class GetTipPresence( + BaseCommand[GetTipPresenceParams, GetTipPresenceResult, ErrorOccurrence] +): """GetTipPresence command model.""" commandType: GetTipPresenceCommandType = "getTipPresence" diff --git a/api/src/opentrons/protocol_engine/commands/heater_shaker/close_labware_latch.py b/api/src/opentrons/protocol_engine/commands/heater_shaker/close_labware_latch.py index 796047a5c40..b86bbc0e2ab 100644 --- a/api/src/opentrons/protocol_engine/commands/heater_shaker/close_labware_latch.py +++ b/api/src/opentrons/protocol_engine/commands/heater_shaker/close_labware_latch.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -26,7 +27,9 @@ class CloseLabwareLatchResult(BaseModel): class CloseLabwareLatchImpl( - AbstractCommandImpl[CloseLabwareLatchParams, CloseLabwareLatchResult] + AbstractCommandImpl[ + CloseLabwareLatchParams, SuccessData[CloseLabwareLatchResult, None] + ] ): """Execution implementation of a Heater-Shaker's close labware latch command.""" @@ -39,7 +42,9 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: CloseLabwareLatchParams) -> CloseLabwareLatchResult: + async def execute( + self, params: CloseLabwareLatchParams + ) -> SuccessData[CloseLabwareLatchResult, None]: """Close a Heater-Shaker's labware latch.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. hs_module_substate = self._state_view.modules.get_heater_shaker_module_substate( @@ -54,10 +59,12 @@ async def execute(self, params: CloseLabwareLatchParams) -> CloseLabwareLatchRes if hs_hardware_module is not None: await hs_hardware_module.close_labware_latch() - return CloseLabwareLatchResult() + return SuccessData(public=CloseLabwareLatchResult(), private=None) -class CloseLabwareLatch(BaseCommand[CloseLabwareLatchParams, CloseLabwareLatchResult]): +class CloseLabwareLatch( + BaseCommand[CloseLabwareLatchParams, CloseLabwareLatchResult, ErrorOccurrence] +): """A command to close a Heater-Shaker's latch.""" commandType: CloseLabwareLatchCommandType = "heaterShaker/closeLabwareLatch" diff --git a/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_heater.py b/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_heater.py index f3c7f102c0b..3392ddc5a9d 100644 --- a/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_heater.py +++ b/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_heater.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -26,7 +27,9 @@ class DeactivateHeaterResult(BaseModel): class DeactivateHeaterImpl( - AbstractCommandImpl[DeactivateHeaterParams, DeactivateHeaterResult] + AbstractCommandImpl[ + DeactivateHeaterParams, SuccessData[DeactivateHeaterResult, None] + ] ): """Execution implementation of a Heater-Shaker's deactivate heater command.""" @@ -39,7 +42,9 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: DeactivateHeaterParams) -> DeactivateHeaterResult: + async def execute( + self, params: DeactivateHeaterParams + ) -> SuccessData[DeactivateHeaterResult, None]: """Unset a Heater-Shaker's target temperature.""" hs_module_substate = self._state_view.modules.get_heater_shaker_module_substate( module_id=params.moduleId @@ -53,10 +58,12 @@ async def execute(self, params: DeactivateHeaterParams) -> DeactivateHeaterResul if hs_hardware_module is not None: await hs_hardware_module.deactivate_heater() - return DeactivateHeaterResult() + return SuccessData(public=DeactivateHeaterResult(), private=None) -class DeactivateHeater(BaseCommand[DeactivateHeaterParams, DeactivateHeaterResult]): +class DeactivateHeater( + BaseCommand[DeactivateHeaterParams, DeactivateHeaterResult, ErrorOccurrence] +): """A command to unset a Heater-Shaker's target temperature.""" commandType: DeactivateHeaterCommandType = "heaterShaker/deactivateHeater" diff --git a/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_shaker.py b/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_shaker.py index 15e0761d61e..8c77c064282 100644 --- a/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_shaker.py +++ b/api/src/opentrons/protocol_engine/commands/heater_shaker/deactivate_shaker.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -25,7 +26,9 @@ class DeactivateShakerResult(BaseModel): class DeactivateShakerImpl( - AbstractCommandImpl[DeactivateShakerParams, DeactivateShakerResult] + AbstractCommandImpl[ + DeactivateShakerParams, SuccessData[DeactivateShakerResult, None] + ] ): """Execution implementation of a Heater-Shaker's deactivate shaker command.""" @@ -38,7 +41,9 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: DeactivateShakerParams) -> DeactivateShakerResult: + async def execute( + self, params: DeactivateShakerParams + ) -> SuccessData[DeactivateShakerResult, None]: """Deactivate shaker for a Heater-Shaker.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. hs_module_substate = self._state_view.modules.get_heater_shaker_module_substate( @@ -55,10 +60,12 @@ async def execute(self, params: DeactivateShakerParams) -> DeactivateShakerResul if hs_hardware_module is not None: await hs_hardware_module.deactivate_shaker() - return DeactivateShakerResult() + return SuccessData(public=DeactivateShakerResult(), private=None) -class DeactivateShaker(BaseCommand[DeactivateShakerParams, DeactivateShakerResult]): +class DeactivateShaker( + BaseCommand[DeactivateShakerParams, DeactivateShakerResult, ErrorOccurrence] +): """A command to deactivate shaker for a Heater-Shaker.""" commandType: DeactivateShakerCommandType = "heaterShaker/deactivateShaker" diff --git a/api/src/opentrons/protocol_engine/commands/heater_shaker/open_labware_latch.py b/api/src/opentrons/protocol_engine/commands/heater_shaker/open_labware_latch.py index 76a3ee9a09d..a823f59149a 100644 --- a/api/src/opentrons/protocol_engine/commands/heater_shaker/open_labware_latch.py +++ b/api/src/opentrons/protocol_engine/commands/heater_shaker/open_labware_latch.py @@ -4,7 +4,8 @@ from typing_extensions import Literal, Type from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -32,7 +33,9 @@ class OpenLabwareLatchResult(BaseModel): class OpenLabwareLatchImpl( - AbstractCommandImpl[OpenLabwareLatchParams, OpenLabwareLatchResult] + AbstractCommandImpl[ + OpenLabwareLatchParams, SuccessData[OpenLabwareLatchResult, None] + ] ): """Execution implementation of a Heater-Shaker's open latch labware command.""" @@ -47,7 +50,9 @@ def __init__( self._equipment = equipment self._movement = movement - async def execute(self, params: OpenLabwareLatchParams) -> OpenLabwareLatchResult: + async def execute( + self, params: OpenLabwareLatchParams + ) -> SuccessData[OpenLabwareLatchResult, None]: """Open a Heater-Shaker's labware latch.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. hs_module_substate = self._state_view.modules.get_heater_shaker_module_substate( @@ -76,10 +81,15 @@ async def execute(self, params: OpenLabwareLatchParams) -> OpenLabwareLatchResul if hs_hardware_module is not None: await hs_hardware_module.open_labware_latch() - return OpenLabwareLatchResult(pipetteRetracted=pipette_should_retract) + return SuccessData( + public=OpenLabwareLatchResult(pipetteRetracted=pipette_should_retract), + private=None, + ) -class OpenLabwareLatch(BaseCommand[OpenLabwareLatchParams, OpenLabwareLatchResult]): +class OpenLabwareLatch( + BaseCommand[OpenLabwareLatchParams, OpenLabwareLatchResult, ErrorOccurrence] +): """A command to open a Heater-Shaker's labware latch.""" commandType: OpenLabwareLatchCommandType = "heaterShaker/openLabwareLatch" diff --git a/api/src/opentrons/protocol_engine/commands/heater_shaker/set_and_wait_for_shake_speed.py b/api/src/opentrons/protocol_engine/commands/heater_shaker/set_and_wait_for_shake_speed.py index 52041519231..ca89166adae 100644 --- a/api/src/opentrons/protocol_engine/commands/heater_shaker/set_and_wait_for_shake_speed.py +++ b/api/src/opentrons/protocol_engine/commands/heater_shaker/set_and_wait_for_shake_speed.py @@ -4,7 +4,8 @@ from typing_extensions import Literal, Type from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -33,7 +34,9 @@ class SetAndWaitForShakeSpeedResult(BaseModel): class SetAndWaitForShakeSpeedImpl( - AbstractCommandImpl[SetAndWaitForShakeSpeedParams, SetAndWaitForShakeSpeedResult] + AbstractCommandImpl[ + SetAndWaitForShakeSpeedParams, SuccessData[SetAndWaitForShakeSpeedResult, None] + ] ): """Execution implementation of Heater-Shaker's set and wait shake speed command.""" @@ -51,7 +54,7 @@ def __init__( async def execute( self, params: SetAndWaitForShakeSpeedParams, - ) -> SetAndWaitForShakeSpeedResult: + ) -> SuccessData[SetAndWaitForShakeSpeedResult, None]: """Set and wait for a Heater-Shaker's target shake speed.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. hs_module_substate = self._state_view.modules.get_heater_shaker_module_substate( @@ -83,11 +86,18 @@ async def execute( if hs_hardware_module is not None: await hs_hardware_module.set_speed(rpm=validated_speed) - return SetAndWaitForShakeSpeedResult(pipetteRetracted=pipette_should_retract) + return SuccessData( + public=SetAndWaitForShakeSpeedResult( + pipetteRetracted=pipette_should_retract + ), + private=None, + ) class SetAndWaitForShakeSpeed( - BaseCommand[SetAndWaitForShakeSpeedParams, SetAndWaitForShakeSpeedResult] + BaseCommand[ + SetAndWaitForShakeSpeedParams, SetAndWaitForShakeSpeedResult, ErrorOccurrence + ] ): """A command to set and wait for a Heater-Shaker's shake speed.""" diff --git a/api/src/opentrons/protocol_engine/commands/heater_shaker/set_target_temperature.py b/api/src/opentrons/protocol_engine/commands/heater_shaker/set_target_temperature.py index accc28e6cee..9e7cfba0f33 100644 --- a/api/src/opentrons/protocol_engine/commands/heater_shaker/set_target_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/heater_shaker/set_target_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -27,7 +28,9 @@ class SetTargetTemperatureResult(BaseModel): class SetTargetTemperatureImpl( - AbstractCommandImpl[SetTargetTemperatureParams, SetTargetTemperatureResult] + AbstractCommandImpl[ + SetTargetTemperatureParams, SuccessData[SetTargetTemperatureResult, None] + ] ): """Execution implementation of a Heater-Shaker's set temperature command.""" @@ -43,7 +46,7 @@ def __init__( async def execute( self, params: SetTargetTemperatureParams, - ) -> SetTargetTemperatureResult: + ) -> SuccessData[SetTargetTemperatureResult, None]: """Set a Heater-Shaker's target temperature.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. hs_module_substate = self._state_view.modules.get_heater_shaker_module_substate( @@ -61,11 +64,11 @@ async def execute( if hs_hardware_module is not None: await hs_hardware_module.start_set_temperature(validated_temp) - return SetTargetTemperatureResult() + return SuccessData(public=SetTargetTemperatureResult(), private=None) class SetTargetTemperature( - BaseCommand[SetTargetTemperatureParams, SetTargetTemperatureResult] + BaseCommand[SetTargetTemperatureParams, SetTargetTemperatureResult, ErrorOccurrence] ): """A command to set a Heater-Shaker's target temperature.""" diff --git a/api/src/opentrons/protocol_engine/commands/heater_shaker/wait_for_temperature.py b/api/src/opentrons/protocol_engine/commands/heater_shaker/wait_for_temperature.py index 82892e5b6b8..981053cc459 100644 --- a/api/src/opentrons/protocol_engine/commands/heater_shaker/wait_for_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/heater_shaker/wait_for_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -35,7 +36,9 @@ class WaitForTemperatureResult(BaseModel): class WaitForTemperatureImpl( - AbstractCommandImpl[WaitForTemperatureParams, WaitForTemperatureResult] + AbstractCommandImpl[ + WaitForTemperatureParams, SuccessData[WaitForTemperatureResult, None] + ] ): """Execution implementation of a Heater-Shaker's wait for temperature command.""" @@ -50,7 +53,7 @@ def __init__( async def execute( self, params: WaitForTemperatureParams - ) -> WaitForTemperatureResult: + ) -> SuccessData[WaitForTemperatureResult, None]: """Wait for a Heater-Shaker's target temperature to be reached.""" hs_module_substate = self._state_view.modules.get_heater_shaker_module_substate( module_id=params.moduleId @@ -69,11 +72,11 @@ async def execute( if hs_hardware_module is not None: await hs_hardware_module.await_temperature(awaiting_temperature=target_temp) - return WaitForTemperatureResult() + return SuccessData(public=WaitForTemperatureResult(), private=None) class WaitForTemperature( - BaseCommand[WaitForTemperatureParams, WaitForTemperatureResult] + BaseCommand[WaitForTemperatureParams, WaitForTemperatureResult, ErrorOccurrence] ): """A command to wait for a Heater-Shaker's target temperature to be reached.""" diff --git a/api/src/opentrons/protocol_engine/commands/home.py b/api/src/opentrons/protocol_engine/commands/home.py index 1e2cb7d96c9..9455470602a 100644 --- a/api/src/opentrons/protocol_engine/commands/home.py +++ b/api/src/opentrons/protocol_engine/commands/home.py @@ -6,7 +6,8 @@ from opentrons.types import MountType from ..types import MotorAxis -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import MovementHandler @@ -40,13 +41,15 @@ class HomeResult(BaseModel): """Result data from the execution of a Home command.""" -class HomeImplementation(AbstractCommandImpl[HomeParams, HomeResult]): +class HomeImplementation( + AbstractCommandImpl[HomeParams, SuccessData[HomeResult, None]] +): """Home command implementation.""" def __init__(self, movement: MovementHandler, **kwargs: object) -> None: self._movement = movement - async def execute(self, params: HomeParams) -> HomeResult: + async def execute(self, params: HomeParams) -> SuccessData[HomeResult, None]: """Home some or all motors to establish positional accuracy.""" if ( params.skipIfMountPositionOk is None @@ -55,10 +58,10 @@ async def execute(self, params: HomeParams) -> HomeResult: ) ): await self._movement.home(axes=params.axes) - return HomeResult() + return SuccessData(public=HomeResult(), private=None) -class Home(BaseCommand[HomeParams, HomeResult]): +class Home(BaseCommand[HomeParams, HomeResult, ErrorOccurrence]): """Command to send some (or all) motors to their home positions. Homing a motor re-establishes positional accuracy the first time a motor diff --git a/api/src/opentrons/protocol_engine/commands/load_labware.py b/api/src/opentrons/protocol_engine/commands/load_labware.py index 64ed68b47ba..6e37607984c 100644 --- a/api/src/opentrons/protocol_engine/commands/load_labware.py +++ b/api/src/opentrons/protocol_engine/commands/load_labware.py @@ -15,7 +15,8 @@ AddressableAreaLocation, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..state import StateView @@ -86,7 +87,7 @@ class LoadLabwareResult(BaseModel): class LoadLabwareImplementation( - AbstractCommandImpl[LoadLabwareParams, LoadLabwareResult] + AbstractCommandImpl[LoadLabwareParams, SuccessData[LoadLabwareResult, None]] ): """Load labware command implementation.""" @@ -96,7 +97,9 @@ def __init__( self._equipment = equipment self._state_view = state_view - async def execute(self, params: LoadLabwareParams) -> LoadLabwareResult: + async def execute( + self, params: LoadLabwareParams + ) -> SuccessData[LoadLabwareResult, None]: """Load definition and calibration data necessary for a labware.""" # TODO (tz, 8-15-2023): extend column validation to column 1 when working # on https://opentrons.atlassian.net/browse/RSS-258 and completing @@ -144,14 +147,17 @@ async def execute(self, params: LoadLabwareParams) -> LoadLabwareResult: bottom_labware_id=verified_location.labwareId, ) - return LoadLabwareResult( - labwareId=loaded_labware.labware_id, - definition=loaded_labware.definition, - offsetId=loaded_labware.offsetId, + return SuccessData( + public=LoadLabwareResult( + labwareId=loaded_labware.labware_id, + definition=loaded_labware.definition, + offsetId=loaded_labware.offsetId, + ), + private=None, ) -class LoadLabware(BaseCommand[LoadLabwareParams, LoadLabwareResult]): +class LoadLabware(BaseCommand[LoadLabwareParams, LoadLabwareResult, ErrorOccurrence]): """Load labware command resource model.""" commandType: LoadLabwareCommandType = "loadLabware" diff --git a/api/src/opentrons/protocol_engine/commands/load_liquid.py b/api/src/opentrons/protocol_engine/commands/load_liquid.py index b9be0fa3501..02585640b0e 100644 --- a/api/src/opentrons/protocol_engine/commands/load_liquid.py +++ b/api/src/opentrons/protocol_engine/commands/load_liquid.py @@ -4,7 +4,8 @@ from typing import Optional, Type, Dict, TYPE_CHECKING from typing_extensions import Literal -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..state import StateView @@ -35,13 +36,17 @@ class LoadLiquidResult(BaseModel): pass -class LoadLiquidImplementation(AbstractCommandImpl[LoadLiquidParams, LoadLiquidResult]): +class LoadLiquidImplementation( + AbstractCommandImpl[LoadLiquidParams, SuccessData[LoadLiquidResult, None]] +): """Load liquid command implementation.""" def __init__(self, state_view: StateView, **kwargs: object) -> None: self._state_view = state_view - async def execute(self, params: LoadLiquidParams) -> LoadLiquidResult: + async def execute( + self, params: LoadLiquidParams + ) -> SuccessData[LoadLiquidResult, None]: """Load data necessary for a liquid.""" self._state_view.liquid.validate_liquid_id(params.liquidId) @@ -49,10 +54,10 @@ async def execute(self, params: LoadLiquidParams) -> LoadLiquidResult: labware_id=params.labwareId, wells=params.volumeByWell ) - return LoadLiquidResult() + return SuccessData(public=LoadLiquidResult(), private=None) -class LoadLiquid(BaseCommand[LoadLiquidParams, LoadLiquidResult]): +class LoadLiquid(BaseCommand[LoadLiquidParams, LoadLiquidResult, ErrorOccurrence]): """Load liquid command resource model.""" commandType: LoadLiquidCommandType = "loadLiquid" diff --git a/api/src/opentrons/protocol_engine/commands/load_module.py b/api/src/opentrons/protocol_engine/commands/load_module.py index 5c1d474be4d..e7f847ab92e 100644 --- a/api/src/opentrons/protocol_engine/commands/load_module.py +++ b/api/src/opentrons/protocol_engine/commands/load_module.py @@ -4,7 +4,8 @@ from typing_extensions import Literal from pydantic import BaseModel, Field -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from ..types import ( DeckSlotLocation, ModuleType, @@ -101,7 +102,9 @@ class LoadModuleResult(BaseModel): ) -class LoadModuleImplementation(AbstractCommandImpl[LoadModuleParams, LoadModuleResult]): +class LoadModuleImplementation( + AbstractCommandImpl[LoadModuleParams, SuccessData[LoadModuleResult, None]] +): """The implementation of the load module command.""" def __init__( @@ -110,7 +113,9 @@ def __init__( self._equipment = equipment self._state_view = state_view - async def execute(self, params: LoadModuleParams) -> LoadModuleResult: + async def execute( + self, params: LoadModuleParams + ) -> SuccessData[LoadModuleResult, None]: """Check that the requested module is attached and assign its identifier.""" module_type = params.model.as_type() self._ensure_module_location(params.location.slotName, module_type) @@ -146,11 +151,14 @@ async def execute(self, params: LoadModuleParams) -> LoadModuleResult: module_id=params.moduleId, ) - return LoadModuleResult( - moduleId=loaded_module.module_id, - serialNumber=loaded_module.serial_number, - model=loaded_module.definition.model, - definition=loaded_module.definition, + return SuccessData( + public=LoadModuleResult( + moduleId=loaded_module.module_id, + serialNumber=loaded_module.serial_number, + model=loaded_module.definition.model, + definition=loaded_module.definition, + ), + private=None, ) def _ensure_module_location( @@ -178,7 +186,7 @@ def _ensure_module_location( ) -class LoadModule(BaseCommand[LoadModuleParams, LoadModuleResult]): +class LoadModule(BaseCommand[LoadModuleParams, LoadModuleResult, ErrorOccurrence]): """The model for a load module command.""" commandType: LoadModuleCommandType = "loadModule" diff --git a/api/src/opentrons/protocol_engine/commands/load_pipette.py b/api/src/opentrons/protocol_engine/commands/load_pipette.py index 5b6be4dea76..ea7ac60bad3 100644 --- a/api/src/opentrons/protocol_engine/commands/load_pipette.py +++ b/api/src/opentrons/protocol_engine/commands/load_pipette.py @@ -8,17 +8,14 @@ from opentrons_shared_data.robot import user_facing_robot_type from opentrons_shared_data.robot.dev_types import RobotTypeEnum from pydantic import BaseModel, Field -from typing import TYPE_CHECKING, Optional, Type, Tuple +from typing import TYPE_CHECKING, Optional, Type from typing_extensions import Literal from opentrons_shared_data.pipette.dev_types import PipetteNameType from opentrons.types import MountType -from .command import ( - AbstractCommandWithPrivateResultImpl, - BaseCommand, - BaseCommandCreate, -) +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from .configuring_common import PipetteConfigUpdateResultMixin from ..errors import InvalidSpecificationForRobotTypeError, InvalidLoadPipetteSpecsError @@ -64,8 +61,8 @@ class LoadPipetteResult(BaseModel): class LoadPipetteImplementation( - AbstractCommandWithPrivateResultImpl[ - LoadPipetteParams, LoadPipetteResult, LoadPipettePrivateResult + AbstractCommandImpl[ + LoadPipetteParams, SuccessData[LoadPipetteResult, LoadPipettePrivateResult] ] ): """Load pipette command implementation.""" @@ -78,7 +75,7 @@ def __init__( async def execute( self, params: LoadPipetteParams - ) -> Tuple[LoadPipetteResult, LoadPipettePrivateResult]: + ) -> SuccessData[LoadPipetteResult, LoadPipettePrivateResult]: """Check that requested pipette is attached and assign its identifier.""" pipette_generation = convert_to_pipette_name_type( params.pipetteName.value @@ -114,16 +111,17 @@ async def execute( pipette_id=params.pipetteId, ) - return LoadPipetteResult( - pipetteId=loaded_pipette.pipette_id - ), LoadPipettePrivateResult( - pipette_id=loaded_pipette.pipette_id, - serial_number=loaded_pipette.serial_number, - config=loaded_pipette.static_config, + return SuccessData( + public=LoadPipetteResult(pipetteId=loaded_pipette.pipette_id), + private=LoadPipettePrivateResult( + pipette_id=loaded_pipette.pipette_id, + serial_number=loaded_pipette.serial_number, + config=loaded_pipette.static_config, + ), ) -class LoadPipette(BaseCommand[LoadPipetteParams, LoadPipetteResult]): +class LoadPipette(BaseCommand[LoadPipetteParams, LoadPipetteResult, ErrorOccurrence]): """Load pipette command model.""" commandType: LoadPipetteCommandType = "loadPipette" diff --git a/api/src/opentrons/protocol_engine/commands/magnetic_module/disengage.py b/api/src/opentrons/protocol_engine/commands/magnetic_module/disengage.py index b1773e98b8f..47a087059d5 100644 --- a/api/src/opentrons/protocol_engine/commands/magnetic_module/disengage.py +++ b/api/src/opentrons/protocol_engine/commands/magnetic_module/disengage.py @@ -8,7 +8,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.execution import EquipmentHandler @@ -36,7 +37,9 @@ class DisengageResult(BaseModel): pass -class DisengageImplementation(AbstractCommandImpl[DisengageParams, DisengageResult]): +class DisengageImplementation( + AbstractCommandImpl[DisengageParams, SuccessData[DisengageResult, None]] +): """The implementation of a Magnetic Module disengage command.""" def __init__( @@ -48,7 +51,9 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: DisengageParams) -> DisengageResult: + async def execute( + self, params: DisengageParams + ) -> SuccessData[DisengageResult, None]: """Execute a Magnetic Module disengage command. Raises: @@ -70,10 +75,10 @@ async def execute(self, params: DisengageParams) -> DisengageResult: if hardware_module is not None: # Not virtualizing modules. await hardware_module.deactivate() - return DisengageResult() + return SuccessData(public=DisengageResult(), private=None) -class Disengage(BaseCommand[DisengageParams, DisengageResult]): +class Disengage(BaseCommand[DisengageParams, DisengageResult, ErrorOccurrence]): """A command to disengage a Magnetic Module's magnets.""" commandType: DisengageCommandType = "magneticModule/disengage" diff --git a/api/src/opentrons/protocol_engine/commands/magnetic_module/engage.py b/api/src/opentrons/protocol_engine/commands/magnetic_module/engage.py index f21c23dafef..fcedd750bc3 100644 --- a/api/src/opentrons/protocol_engine/commands/magnetic_module/engage.py +++ b/api/src/opentrons/protocol_engine/commands/magnetic_module/engage.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.execution import EquipmentHandler @@ -52,7 +53,9 @@ class EngageResult(BaseModel): pass -class EngageImplementation(AbstractCommandImpl[EngageParams, EngageResult]): +class EngageImplementation( + AbstractCommandImpl[EngageParams, SuccessData[EngageResult, None]] +): """The implementation of a Magnetic Module engage command.""" def __init__( @@ -64,7 +67,7 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: EngageParams) -> EngageResult: + async def execute(self, params: EngageParams) -> SuccessData[EngageResult, None]: """Execute a Magnetic Module engage command. Raises: @@ -92,10 +95,10 @@ async def execute(self, params: EngageParams) -> EngageResult: if hardware_module is not None: # Not virtualizing modules. await hardware_module.engage(height=hardware_height) - return EngageResult() + return SuccessData(public=EngageResult(), private=None) -class Engage(BaseCommand[EngageParams, EngageResult]): +class Engage(BaseCommand[EngageParams, EngageResult, ErrorOccurrence]): """A command to engage a Magnetic Module's magnets.""" commandType: EngageCommandType = "magneticModule/engage" diff --git a/api/src/opentrons/protocol_engine/commands/move_labware.py b/api/src/opentrons/protocol_engine/commands/move_labware.py index 653c390c64b..42728c05272 100644 --- a/api/src/opentrons/protocol_engine/commands/move_labware.py +++ b/api/src/opentrons/protocol_engine/commands/move_labware.py @@ -17,7 +17,8 @@ ) from ..errors import LabwareMovementNotAllowedError, NotSupportedOnRobotType from ..resources import labware_validation, fixture_validation -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from opentrons_shared_data.gripper.constants import GRIPPER_PADDLE_WIDTH if TYPE_CHECKING: @@ -74,7 +75,7 @@ class MoveLabwareResult(BaseModel): class MoveLabwareImplementation( - AbstractCommandImpl[MoveLabwareParams, MoveLabwareResult] + AbstractCommandImpl[MoveLabwareParams, SuccessData[MoveLabwareResult, None]] ): """The execution implementation for ``moveLabware`` commands.""" @@ -93,7 +94,7 @@ def __init__( async def execute( # noqa: C901 self, params: MoveLabwareParams - ) -> MoveLabwareResult: + ) -> SuccessData[MoveLabwareResult, None]: """Move a loaded labware to a new location.""" # Allow propagation of LabwareNotLoadedError. current_labware = self._state_view.labware.get(labware_id=params.labwareId) @@ -212,10 +213,12 @@ async def execute( # noqa: C901 # Pause to allow for manual labware movement await self._run_control.wait_for_resume() - return MoveLabwareResult(offsetId=new_offset_id) + return SuccessData( + public=MoveLabwareResult(offsetId=new_offset_id), private=None + ) -class MoveLabware(BaseCommand[MoveLabwareParams, MoveLabwareResult]): +class MoveLabware(BaseCommand[MoveLabwareParams, MoveLabwareResult, ErrorOccurrence]): """A ``moveLabware`` command.""" commandType: MoveLabwareCommandType = "moveLabware" diff --git a/api/src/opentrons/protocol_engine/commands/move_relative.py b/api/src/opentrons/protocol_engine/commands/move_relative.py index 8324e95719b..38ac0806217 100644 --- a/api/src/opentrons/protocol_engine/commands/move_relative.py +++ b/api/src/opentrons/protocol_engine/commands/move_relative.py @@ -5,7 +5,8 @@ from typing_extensions import Literal from ..types import MovementAxis, DeckPoint -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from .pipetting_common import DestinationPositionResult if TYPE_CHECKING: @@ -36,14 +37,16 @@ class MoveRelativeResult(DestinationPositionResult): class MoveRelativeImplementation( - AbstractCommandImpl[MoveRelativeParams, MoveRelativeResult] + AbstractCommandImpl[MoveRelativeParams, SuccessData[MoveRelativeResult, None]] ): """Move relative command implementation.""" def __init__(self, movement: MovementHandler, **kwargs: object) -> None: self._movement = movement - async def execute(self, params: MoveRelativeParams) -> MoveRelativeResult: + async def execute( + self, params: MoveRelativeParams + ) -> SuccessData[MoveRelativeResult, None]: """Move (jog) a given pipette a relative distance.""" x, y, z = await self._movement.move_relative( pipette_id=params.pipetteId, @@ -51,10 +54,14 @@ async def execute(self, params: MoveRelativeParams) -> MoveRelativeResult: distance=params.distance, ) - return MoveRelativeResult(position=DeckPoint(x=x, y=y, z=z)) + return SuccessData( + public=MoveRelativeResult(position=DeckPoint(x=x, y=y, z=z)), private=None + ) -class MoveRelative(BaseCommand[MoveRelativeParams, MoveRelativeResult]): +class MoveRelative( + BaseCommand[MoveRelativeParams, MoveRelativeResult, ErrorOccurrence] +): """Command to move (jog) a given pipette a relative distance.""" commandType: MoveRelativeCommandType = "moveRelative" diff --git a/api/src/opentrons/protocol_engine/commands/move_to_addressable_area.py b/api/src/opentrons/protocol_engine/commands/move_to_addressable_area.py index 7dfc0b53895..5d959538ca2 100644 --- a/api/src/opentrons/protocol_engine/commands/move_to_addressable_area.py +++ b/api/src/opentrons/protocol_engine/commands/move_to_addressable_area.py @@ -12,7 +12,8 @@ MovementMixin, DestinationPositionResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import MovementHandler @@ -71,7 +72,9 @@ class MoveToAddressableAreaResult(DestinationPositionResult): class MoveToAddressableAreaImplementation( - AbstractCommandImpl[MoveToAddressableAreaParams, MoveToAddressableAreaResult] + AbstractCommandImpl[ + MoveToAddressableAreaParams, SuccessData[MoveToAddressableAreaResult, None] + ] ): """Move to addressable area command implementation.""" @@ -83,7 +86,7 @@ def __init__( async def execute( self, params: MoveToAddressableAreaParams - ) -> MoveToAddressableAreaResult: + ) -> SuccessData[MoveToAddressableAreaResult, None]: """Move the requested pipette to the requested addressable area.""" self._state_view.addressable_areas.raise_if_area_not_in_deck_configuration( params.addressableAreaName @@ -104,11 +107,16 @@ async def execute( stay_at_highest_possible_z=params.stayAtHighestPossibleZ, ) - return MoveToAddressableAreaResult(position=DeckPoint(x=x, y=y, z=z)) + return SuccessData( + public=MoveToAddressableAreaResult(position=DeckPoint(x=x, y=y, z=z)), + private=None, + ) class MoveToAddressableArea( - BaseCommand[MoveToAddressableAreaParams, MoveToAddressableAreaResult] + BaseCommand[ + MoveToAddressableAreaParams, MoveToAddressableAreaResult, ErrorOccurrence + ] ): """Move to addressable area command model.""" diff --git a/api/src/opentrons/protocol_engine/commands/move_to_addressable_area_for_drop_tip.py b/api/src/opentrons/protocol_engine/commands/move_to_addressable_area_for_drop_tip.py index dc79714c829..d38d7ceb758 100644 --- a/api/src/opentrons/protocol_engine/commands/move_to_addressable_area_for_drop_tip.py +++ b/api/src/opentrons/protocol_engine/commands/move_to_addressable_area_for_drop_tip.py @@ -12,7 +12,8 @@ MovementMixin, DestinationPositionResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import MovementHandler @@ -83,7 +84,8 @@ class MoveToAddressableAreaForDropTipResult(DestinationPositionResult): class MoveToAddressableAreaForDropTipImplementation( AbstractCommandImpl[ - MoveToAddressableAreaForDropTipParams, MoveToAddressableAreaForDropTipResult + MoveToAddressableAreaForDropTipParams, + SuccessData[MoveToAddressableAreaForDropTipResult, None], ] ): """Move to addressable area for drop tip command implementation.""" @@ -96,7 +98,7 @@ def __init__( async def execute( self, params: MoveToAddressableAreaForDropTipParams - ) -> MoveToAddressableAreaForDropTipResult: + ) -> SuccessData[MoveToAddressableAreaForDropTipResult, None]: """Move the requested pipette to the requested addressable area in preperation of a drop tip.""" self._state_view.addressable_areas.raise_if_area_not_in_deck_configuration( params.addressableAreaName @@ -125,12 +127,19 @@ async def execute( ignore_tip_configuration=params.ignoreTipConfiguration, ) - return MoveToAddressableAreaForDropTipResult(position=DeckPoint(x=x, y=y, z=z)) + return SuccessData( + public=MoveToAddressableAreaForDropTipResult( + position=DeckPoint(x=x, y=y, z=z) + ), + private=None, + ) class MoveToAddressableAreaForDropTip( BaseCommand[ - MoveToAddressableAreaForDropTipParams, MoveToAddressableAreaForDropTipResult + MoveToAddressableAreaForDropTipParams, + MoveToAddressableAreaForDropTipResult, + ErrorOccurrence, ] ): """Move to addressable area for drop tip command model.""" diff --git a/api/src/opentrons/protocol_engine/commands/move_to_coordinates.py b/api/src/opentrons/protocol_engine/commands/move_to_coordinates.py index f6d44f953c3..71e45b05e60 100644 --- a/api/src/opentrons/protocol_engine/commands/move_to_coordinates.py +++ b/api/src/opentrons/protocol_engine/commands/move_to_coordinates.py @@ -7,7 +7,8 @@ from ..types import DeckPoint from .pipetting_common import PipetteIdMixin, MovementMixin, DestinationPositionResult -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import MovementHandler @@ -32,7 +33,9 @@ class MoveToCoordinatesResult(DestinationPositionResult): class MoveToCoordinatesImplementation( - AbstractCommandImpl[MoveToCoordinatesParams, MoveToCoordinatesResult] + AbstractCommandImpl[ + MoveToCoordinatesParams, SuccessData[MoveToCoordinatesResult, None] + ] ): """Move to coordinates command implementation.""" @@ -43,7 +46,9 @@ def __init__( ) -> None: self._movement = movement - async def execute(self, params: MoveToCoordinatesParams) -> MoveToCoordinatesResult: + async def execute( + self, params: MoveToCoordinatesParams + ) -> SuccessData[MoveToCoordinatesResult, None]: """Move the requested pipette to the requested coordinates.""" x, y, z = await self._movement.move_to_coordinates( pipette_id=params.pipetteId, @@ -53,10 +58,15 @@ async def execute(self, params: MoveToCoordinatesParams) -> MoveToCoordinatesRes speed=params.speed, ) - return MoveToCoordinatesResult(position=DeckPoint(x=x, y=y, z=z)) + return SuccessData( + public=MoveToCoordinatesResult(position=DeckPoint(x=x, y=y, z=z)), + private=None, + ) -class MoveToCoordinates(BaseCommand[MoveToCoordinatesParams, MoveToCoordinatesResult]): +class MoveToCoordinates( + BaseCommand[MoveToCoordinatesParams, MoveToCoordinatesResult, ErrorOccurrence] +): """Move to well command model.""" commandType: MoveToCoordinatesCommandType = "moveToCoordinates" diff --git a/api/src/opentrons/protocol_engine/commands/move_to_well.py b/api/src/opentrons/protocol_engine/commands/move_to_well.py index 31336645f03..2ed10757b69 100644 --- a/api/src/opentrons/protocol_engine/commands/move_to_well.py +++ b/api/src/opentrons/protocol_engine/commands/move_to_well.py @@ -10,7 +10,8 @@ MovementMixin, DestinationPositionResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import MovementHandler @@ -30,13 +31,17 @@ class MoveToWellResult(DestinationPositionResult): pass -class MoveToWellImplementation(AbstractCommandImpl[MoveToWellParams, MoveToWellResult]): +class MoveToWellImplementation( + AbstractCommandImpl[MoveToWellParams, SuccessData[MoveToWellResult, None]] +): """Move to well command implementation.""" def __init__(self, movement: MovementHandler, **kwargs: object) -> None: self._movement = movement - async def execute(self, params: MoveToWellParams) -> MoveToWellResult: + async def execute( + self, params: MoveToWellParams + ) -> SuccessData[MoveToWellResult, None]: """Move the requested pipette to the requested well.""" x, y, z = await self._movement.move_to_well( pipette_id=params.pipetteId, @@ -48,10 +53,12 @@ async def execute(self, params: MoveToWellParams) -> MoveToWellResult: speed=params.speed, ) - return MoveToWellResult(position=DeckPoint(x=x, y=y, z=z)) + return SuccessData( + public=MoveToWellResult(position=DeckPoint(x=x, y=y, z=z)), private=None + ) -class MoveToWell(BaseCommand[MoveToWellParams, MoveToWellResult]): +class MoveToWell(BaseCommand[MoveToWellParams, MoveToWellResult, ErrorOccurrence]): """Move to well command model.""" commandType: MoveToWellCommandType = "moveToWell" diff --git a/api/src/opentrons/protocol_engine/commands/pick_up_tip.py b/api/src/opentrons/protocol_engine/commands/pick_up_tip.py index 8c2902a5f4b..b9780cd3e34 100644 --- a/api/src/opentrons/protocol_engine/commands/pick_up_tip.py +++ b/api/src/opentrons/protocol_engine/commands/pick_up_tip.py @@ -1,16 +1,28 @@ """Pick up tip command request, result, and implementation models.""" from __future__ import annotations +from dataclasses import dataclass +from opentrons_shared_data.errors import ErrorCodes from pydantic import Field -from typing import TYPE_CHECKING, Optional, Type +from typing import TYPE_CHECKING, Optional, Type, Union from typing_extensions import Literal +from opentrons.protocol_engine.errors.exceptions import TipNotAttachedError + +from ..errors import ErrorOccurrence +from ..resources import ModelUtils from ..types import DeckPoint from .pipetting_common import ( PipetteIdMixin, WellLocationMixin, DestinationPositionResult, ) -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import ( + AbstractCommandImpl, + BaseCommand, + BaseCommandCreate, + DefinedErrorData, + SuccessData, +) if TYPE_CHECKING: from ..state import StateView @@ -49,21 +61,56 @@ class PickUpTipResult(DestinationPositionResult): ) -class PickUpTipImplementation(AbstractCommandImpl[PickUpTipParams, PickUpTipResult]): +class TipPhysicallyMissingError(ErrorOccurrence): + """Returned when sensors determine that no tip was physically picked up. + + That space in the tip rack is marked internally as not having any tip, + as if the tip were consumed by a pickup. + + The pipette will act as if no tip was picked up. So, you won't be able to aspirate + anything, and movement commands will assume there is no tip hanging off the bottom + of the pipette. + """ + + errorType: Literal["tipPhysicallyMissing"] = "tipPhysicallyMissing" + errorCode: str = ErrorCodes.TIP_PICKUP_FAILED.value.code + detail: str = "No tip detected." + + +@dataclass +class TipPhysicallyMissingErrorInternalData: + """Internal-to-ProtocolEngine data about a TipPhysicallyMissingError.""" + + pipette_id: str + labware_id: str + well_name: str + + +_ExecuteReturn = Union[ + SuccessData[PickUpTipResult, None], + DefinedErrorData[TipPhysicallyMissingError, TipPhysicallyMissingErrorInternalData], +] + + +class PickUpTipImplementation(AbstractCommandImpl[PickUpTipParams, _ExecuteReturn]): """Pick up tip command implementation.""" def __init__( self, state_view: StateView, tip_handler: TipHandler, + model_utils: ModelUtils, movement: MovementHandler, **kwargs: object, ) -> None: self._state_view = state_view self._tip_handler = tip_handler + self._model_utils = model_utils self._movement = movement - async def execute(self, params: PickUpTipParams) -> PickUpTipResult: + async def execute( + self, params: PickUpTipParams + ) -> Union[SuccessData[PickUpTipResult, None], _ExecuteReturn]: """Move to and pick up a tip using the requested pipette.""" pipette_id = params.pipetteId labware_id = params.labwareId @@ -77,21 +124,46 @@ async def execute(self, params: PickUpTipParams) -> PickUpTipResult: well_location=well_location, ) - tip_geometry = await self._tip_handler.pick_up_tip( - pipette_id=pipette_id, - labware_id=labware_id, - well_name=well_name, - ) - - return PickUpTipResult( - tipVolume=tip_geometry.volume, - tipLength=tip_geometry.length, - tipDiameter=tip_geometry.diameter, - position=DeckPoint(x=position.x, y=position.y, z=position.z), - ) - - -class PickUpTip(BaseCommand[PickUpTipParams, PickUpTipResult]): + try: + tip_geometry = await self._tip_handler.pick_up_tip( + pipette_id=pipette_id, + labware_id=labware_id, + well_name=well_name, + ) + except TipNotAttachedError as e: + return DefinedErrorData( + public=TipPhysicallyMissingError( + id=self._model_utils.generate_id(), + createdAt=self._model_utils.get_timestamp(), + wrappedErrors=[ + ErrorOccurrence.from_failed( + id=self._model_utils.generate_id(), + createdAt=self._model_utils.get_timestamp(), + error=e, + ) + ], + ), + private=TipPhysicallyMissingErrorInternalData( + pipette_id=pipette_id, + labware_id=labware_id, + well_name=well_name, + ), + ) + else: + return SuccessData( + public=PickUpTipResult( + tipVolume=tip_geometry.volume, + tipLength=tip_geometry.length, + tipDiameter=tip_geometry.diameter, + position=DeckPoint(x=position.x, y=position.y, z=position.z), + ), + private=None, + ) + + +class PickUpTip( + BaseCommand[PickUpTipParams, PickUpTipResult, TipPhysicallyMissingError] +): """Pick up tip command model.""" commandType: PickUpTipCommandType = "pickUpTip" diff --git a/api/src/opentrons/protocol_engine/commands/prepare_to_aspirate.py b/api/src/opentrons/protocol_engine/commands/prepare_to_aspirate.py index 57fa679bb09..d427b38dc1e 100644 --- a/api/src/opentrons/protocol_engine/commands/prepare_to_aspirate.py +++ b/api/src/opentrons/protocol_engine/commands/prepare_to_aspirate.py @@ -8,11 +8,8 @@ from .pipetting_common import ( PipetteIdMixin, ) -from .command import ( - AbstractCommandImpl, - BaseCommand, - BaseCommandCreate, -) +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution.pipetting import PipettingHandler @@ -34,8 +31,7 @@ class PrepareToAspirateResult(BaseModel): class PrepareToAspirateImplementation( AbstractCommandImpl[ - PrepareToAspirateParams, - PrepareToAspirateResult, + PrepareToAspirateParams, SuccessData[PrepareToAspirateResult, None] ] ): """Prepare for aspirate command implementation.""" @@ -43,16 +39,20 @@ class PrepareToAspirateImplementation( def __init__(self, pipetting: PipettingHandler, **kwargs: object) -> None: self._pipetting_handler = pipetting - async def execute(self, params: PrepareToAspirateParams) -> PrepareToAspirateResult: + async def execute( + self, params: PrepareToAspirateParams + ) -> SuccessData[PrepareToAspirateResult, None]: """Prepare the pipette to aspirate.""" await self._pipetting_handler.prepare_for_aspirate( pipette_id=params.pipetteId, ) - return PrepareToAspirateResult() + return SuccessData(public=PrepareToAspirateResult(), private=None) -class PrepareToAspirate(BaseCommand[PrepareToAspirateParams, PrepareToAspirateResult]): +class PrepareToAspirate( + BaseCommand[PrepareToAspirateParams, PrepareToAspirateResult, ErrorOccurrence] +): """Prepare for aspirate command model.""" commandType: PrepareToAspirateCommandType = "prepareToAspirate" diff --git a/api/src/opentrons/protocol_engine/commands/reload_labware.py b/api/src/opentrons/protocol_engine/commands/reload_labware.py index 247f717feb9..884b8324d21 100644 --- a/api/src/opentrons/protocol_engine/commands/reload_labware.py +++ b/api/src/opentrons/protocol_engine/commands/reload_labware.py @@ -4,7 +4,8 @@ from typing import TYPE_CHECKING, Optional, Type from typing_extensions import Literal -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..state import StateView @@ -45,7 +46,7 @@ class ReloadLabwareResult(BaseModel): class ReloadLabwareImplementation( - AbstractCommandImpl[ReloadLabwareParams, ReloadLabwareResult] + AbstractCommandImpl[ReloadLabwareParams, SuccessData[ReloadLabwareResult, None]] ): """Reload labware command implementation.""" @@ -55,19 +56,26 @@ def __init__( self._equipment = equipment self._state_view = state_view - async def execute(self, params: ReloadLabwareParams) -> ReloadLabwareResult: + async def execute( + self, params: ReloadLabwareParams + ) -> SuccessData[ReloadLabwareResult, None]: """Reload the definition and calibration data for a specific labware.""" reloaded_labware = await self._equipment.reload_labware( labware_id=params.labwareId, ) - return ReloadLabwareResult( - labwareId=params.labwareId, - offsetId=reloaded_labware.offsetId, + return SuccessData( + public=ReloadLabwareResult( + labwareId=params.labwareId, + offsetId=reloaded_labware.offsetId, + ), + private=None, ) -class ReloadLabware(BaseCommand[ReloadLabwareParams, ReloadLabwareResult]): +class ReloadLabware( + BaseCommand[ReloadLabwareParams, ReloadLabwareResult, ErrorOccurrence] +): """Reload labware command resource model.""" commandType: ReloadLabwareCommandType = "reloadLabware" diff --git a/api/src/opentrons/protocol_engine/commands/retract_axis.py b/api/src/opentrons/protocol_engine/commands/retract_axis.py index ba23e6612a3..d989f1fd793 100644 --- a/api/src/opentrons/protocol_engine/commands/retract_axis.py +++ b/api/src/opentrons/protocol_engine/commands/retract_axis.py @@ -5,7 +5,8 @@ from typing_extensions import Literal from ..types import MotorAxis -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import MovementHandler @@ -37,20 +38,22 @@ class RetractAxisResult(BaseModel): class RetractAxisImplementation( - AbstractCommandImpl[RetractAxisParams, RetractAxisResult] + AbstractCommandImpl[RetractAxisParams, SuccessData[RetractAxisResult, None]] ): """Retract Axis command implementation.""" def __init__(self, movement: MovementHandler, **kwargs: object) -> None: self._movement = movement - async def execute(self, params: RetractAxisParams) -> RetractAxisResult: + async def execute( + self, params: RetractAxisParams + ) -> SuccessData[RetractAxisResult, None]: """Retract the specified axis.""" await self._movement.retract_axis(axis=params.axis) - return RetractAxisResult() + return SuccessData(public=RetractAxisResult(), private=None) -class RetractAxis(BaseCommand[RetractAxisParams, RetractAxisResult]): +class RetractAxis(BaseCommand[RetractAxisParams, RetractAxisResult, ErrorOccurrence]): """Command to retract the specified axis to its home position.""" commandType: RetractAxisCommandType = "retractAxis" diff --git a/api/src/opentrons/protocol_engine/commands/save_position.py b/api/src/opentrons/protocol_engine/commands/save_position.py index a45937a73e8..988e4b762a7 100644 --- a/api/src/opentrons/protocol_engine/commands/save_position.py +++ b/api/src/opentrons/protocol_engine/commands/save_position.py @@ -7,7 +7,8 @@ from ..types import DeckPoint from ..resources import ModelUtils -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import GantryMover @@ -45,20 +46,22 @@ class SavePositionResult(BaseModel): class SavePositionImplementation( - AbstractCommandImpl[SavePositionParams, SavePositionResult] + AbstractCommandImpl[SavePositionParams, SuccessData[SavePositionResult, None]] ): """Save position command implementation.""" def __init__( self, gantry_mover: GantryMover, - model_utils: Optional[ModelUtils] = None, + model_utils: ModelUtils, **kwargs: object, ) -> None: self._gantry_mover = gantry_mover - self._model_utils = model_utils or ModelUtils() + self._model_utils = model_utils - async def execute(self, params: SavePositionParams) -> SavePositionResult: + async def execute( + self, params: SavePositionParams + ) -> SuccessData[SavePositionResult, None]: """Check the requested pipette's current position.""" position_id = self._model_utils.ensure_id(params.positionId) fail_on_not_homed = ( @@ -68,13 +71,18 @@ async def execute(self, params: SavePositionParams) -> SavePositionResult: pipette_id=params.pipetteId, fail_on_not_homed=fail_on_not_homed ) - return SavePositionResult( - positionId=position_id, - position=DeckPoint(x=x, y=y, z=z), + return SuccessData( + public=SavePositionResult( + positionId=position_id, + position=DeckPoint(x=x, y=y, z=z), + ), + private=None, ) -class SavePosition(BaseCommand[SavePositionParams, SavePositionResult]): +class SavePosition( + BaseCommand[SavePositionParams, SavePositionResult, ErrorOccurrence] +): """Save Position command model.""" commandType: SavePositionCommandType = "savePosition" diff --git a/api/src/opentrons/protocol_engine/commands/set_rail_lights.py b/api/src/opentrons/protocol_engine/commands/set_rail_lights.py index db5b8cee81f..6235e0d9bb6 100644 --- a/api/src/opentrons/protocol_engine/commands/set_rail_lights.py +++ b/api/src/opentrons/protocol_engine/commands/set_rail_lights.py @@ -4,7 +4,8 @@ from typing import TYPE_CHECKING, Optional, Type from typing_extensions import Literal -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import RailLightsHandler @@ -28,20 +29,24 @@ class SetRailLightsResult(BaseModel): class SetRailLightsImplementation( - AbstractCommandImpl[SetRailLightsParams, SetRailLightsResult] + AbstractCommandImpl[SetRailLightsParams, SuccessData[SetRailLightsResult, None]] ): """setRailLights command implementation.""" def __init__(self, rail_lights: RailLightsHandler, **kwargs: object) -> None: self._rail_lights = rail_lights - async def execute(self, params: SetRailLightsParams) -> SetRailLightsResult: + async def execute( + self, params: SetRailLightsParams + ) -> SuccessData[SetRailLightsResult, None]: """Dispatch a set lights command setting the state of the rail lights.""" await self._rail_lights.set_rail_lights(params.on) - return SetRailLightsResult() + return SuccessData(public=SetRailLightsResult(), private=None) -class SetRailLights(BaseCommand[SetRailLightsParams, SetRailLightsResult]): +class SetRailLights( + BaseCommand[SetRailLightsParams, SetRailLightsResult, ErrorOccurrence] +): """setRailLights command model.""" commandType: SetRailLightsCommandType = "setRailLights" diff --git a/api/src/opentrons/protocol_engine/commands/set_status_bar.py b/api/src/opentrons/protocol_engine/commands/set_status_bar.py index b493d59908a..cb83aa56ce2 100644 --- a/api/src/opentrons/protocol_engine/commands/set_status_bar.py +++ b/api/src/opentrons/protocol_engine/commands/set_status_bar.py @@ -6,7 +6,8 @@ import enum from opentrons.hardware_control.types import StatusBarState -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import StatusBarHandler @@ -48,22 +49,26 @@ class SetStatusBarResult(BaseModel): class SetStatusBarImplementation( - AbstractCommandImpl[SetStatusBarParams, SetStatusBarResult] + AbstractCommandImpl[SetStatusBarParams, SuccessData[SetStatusBarResult, None]] ): """setStatusBar command implementation.""" def __init__(self, status_bar: StatusBarHandler, **kwargs: object) -> None: self._status_bar = status_bar - async def execute(self, params: SetStatusBarParams) -> SetStatusBarResult: + async def execute( + self, params: SetStatusBarParams + ) -> SuccessData[SetStatusBarResult, None]: """Execute the setStatusBar command.""" if not self._status_bar.status_bar_should_not_be_changed(): state = _animation_to_status_bar_state(params.animation) await self._status_bar.set_status_bar(state) - return SetStatusBarResult() + return SuccessData(public=SetStatusBarResult(), private=None) -class SetStatusBar(BaseCommand[SetStatusBarParams, SetStatusBarResult]): +class SetStatusBar( + BaseCommand[SetStatusBarParams, SetStatusBarResult, ErrorOccurrence] +): """setStatusBar command model.""" commandType: SetStatusBarCommandType = "setStatusBar" diff --git a/api/src/opentrons/protocol_engine/commands/temperature_module/deactivate.py b/api/src/opentrons/protocol_engine/commands/temperature_module/deactivate.py index ae03d057c23..979195933b2 100644 --- a/api/src/opentrons/protocol_engine/commands/temperature_module/deactivate.py +++ b/api/src/opentrons/protocol_engine/commands/temperature_module/deactivate.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -25,7 +26,9 @@ class DeactivateTemperatureResult(BaseModel): class DeactivateTemperatureImpl( - AbstractCommandImpl[DeactivateTemperatureParams, DeactivateTemperatureResult] + AbstractCommandImpl[ + DeactivateTemperatureParams, SuccessData[DeactivateTemperatureResult, None] + ] ): """Execution implementation of a Temperature Module's deactivate command.""" @@ -40,7 +43,7 @@ def __init__( async def execute( self, params: DeactivateTemperatureParams - ) -> DeactivateTemperatureResult: + ) -> SuccessData[DeactivateTemperatureResult, None]: """Deactivate a Temperature Module.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. module_substate = self._state_view.modules.get_temperature_module_substate( @@ -54,11 +57,13 @@ async def execute( if temp_hardware_module is not None: await temp_hardware_module.deactivate() - return DeactivateTemperatureResult() + return SuccessData(public=DeactivateTemperatureResult(), private=None) class DeactivateTemperature( - BaseCommand[DeactivateTemperatureParams, DeactivateTemperatureResult] + BaseCommand[ + DeactivateTemperatureParams, DeactivateTemperatureResult, ErrorOccurrence + ] ): """A command to deactivate a Temperature Module.""" diff --git a/api/src/opentrons/protocol_engine/commands/temperature_module/set_target_temperature.py b/api/src/opentrons/protocol_engine/commands/temperature_module/set_target_temperature.py index 97b2d9a3ecc..4302773722b 100644 --- a/api/src/opentrons/protocol_engine/commands/temperature_module/set_target_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/temperature_module/set_target_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -32,7 +33,9 @@ class SetTargetTemperatureResult(BaseModel): class SetTargetTemperatureImpl( - AbstractCommandImpl[SetTargetTemperatureParams, SetTargetTemperatureResult] + AbstractCommandImpl[ + SetTargetTemperatureParams, SuccessData[SetTargetTemperatureResult, None] + ] ): """Execution implementation of a Temperature Module's set temperature command.""" @@ -47,7 +50,7 @@ def __init__( async def execute( self, params: SetTargetTemperatureParams - ) -> SetTargetTemperatureResult: + ) -> SuccessData[SetTargetTemperatureResult, None]: """Set a Temperature Module's target temperature.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. module_substate = self._state_view.modules.get_temperature_module_substate( @@ -64,11 +67,14 @@ async def execute( if temp_hardware_module is not None: await temp_hardware_module.start_set_temperature(celsius=validated_temp) - return SetTargetTemperatureResult(targetTemperature=validated_temp) + return SuccessData( + public=SetTargetTemperatureResult(targetTemperature=validated_temp), + private=None, + ) class SetTargetTemperature( - BaseCommand[SetTargetTemperatureParams, SetTargetTemperatureResult] + BaseCommand[SetTargetTemperatureParams, SetTargetTemperatureResult, ErrorOccurrence] ): """A command to set a Temperature Module's target temperature.""" diff --git a/api/src/opentrons/protocol_engine/commands/temperature_module/wait_for_temperature.py b/api/src/opentrons/protocol_engine/commands/temperature_module/wait_for_temperature.py index edb4ea1e0c1..9abd6d13179 100644 --- a/api/src/opentrons/protocol_engine/commands/temperature_module/wait_for_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/temperature_module/wait_for_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -34,7 +35,9 @@ class WaitForTemperatureResult(BaseModel): class WaitForTemperatureImpl( - AbstractCommandImpl[WaitForTemperatureParams, WaitForTemperatureResult] + AbstractCommandImpl[ + WaitForTemperatureParams, SuccessData[WaitForTemperatureResult, None] + ] ): """Execution implementation of Temperature Module's wait for temperature command.""" @@ -49,7 +52,7 @@ def __init__( async def execute( self, params: WaitForTemperatureParams - ) -> WaitForTemperatureResult: + ) -> SuccessData[WaitForTemperatureResult, None]: """Wait for a Temperature Module's target temperature.""" # Allow propagation of ModuleNotLoadedError and WrongModuleTypeError. module_substate = self._state_view.modules.get_temperature_module_substate( @@ -71,11 +74,11 @@ async def execute( await temp_hardware_module.await_temperature( awaiting_temperature=target_temp ) - return WaitForTemperatureResult() + return SuccessData(public=WaitForTemperatureResult(), private=None) class WaitForTemperature( - BaseCommand[WaitForTemperatureParams, WaitForTemperatureResult] + BaseCommand[WaitForTemperatureParams, WaitForTemperatureResult, ErrorOccurrence] ): """A command to wait for a Temperature Module's target temperature.""" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/close_lid.py b/api/src/opentrons/protocol_engine/commands/thermocycler/close_lid.py index b67f1cb4aea..de7768c4c7a 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/close_lid.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/close_lid.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence from opentrons.protocol_engine.types import MotorAxis if TYPE_CHECKING: @@ -26,7 +27,9 @@ class CloseLidResult(BaseModel): """Result data from closing a Thermocycler's lid.""" -class CloseLidImpl(AbstractCommandImpl[CloseLidParams, CloseLidResult]): +class CloseLidImpl( + AbstractCommandImpl[CloseLidParams, SuccessData[CloseLidResult, None]] +): """Execution implementation of a Thermocycler's close lid command.""" def __init__( @@ -40,7 +43,9 @@ def __init__( self._equipment = equipment self._movement = movement - async def execute(self, params: CloseLidParams) -> CloseLidResult: + async def execute( + self, params: CloseLidParams + ) -> SuccessData[CloseLidResult, None]: """Close a Thermocycler's lid.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -60,10 +65,10 @@ async def execute(self, params: CloseLidParams) -> CloseLidResult: if thermocycler_hardware is not None: await thermocycler_hardware.close() - return CloseLidResult() + return SuccessData(public=CloseLidResult(), private=None) -class CloseLid(BaseCommand[CloseLidParams, CloseLidResult]): +class CloseLid(BaseCommand[CloseLidParams, CloseLidResult, ErrorOccurrence]): """A command to close a Thermocycler's lid.""" commandType: CloseLidCommandType = "thermocycler/closeLid" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_block.py b/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_block.py index d4851d91d99..a24706a54c3 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_block.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_block.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -26,7 +27,7 @@ class DeactivateBlockResult(BaseModel): class DeactivateBlockImpl( - AbstractCommandImpl[DeactivateBlockParams, DeactivateBlockResult] + AbstractCommandImpl[DeactivateBlockParams, SuccessData[DeactivateBlockResult, None]] ): """Execution implementation of a Thermocycler's deactivate block command.""" @@ -39,7 +40,9 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: DeactivateBlockParams) -> DeactivateBlockResult: + async def execute( + self, params: DeactivateBlockParams + ) -> SuccessData[DeactivateBlockResult, None]: """Unset a Thermocycler's target block temperature.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -51,10 +54,12 @@ async def execute(self, params: DeactivateBlockParams) -> DeactivateBlockResult: if thermocycler_hardware is not None: await thermocycler_hardware.deactivate_block() - return DeactivateBlockResult() + return SuccessData(public=DeactivateBlockResult(), private=None) -class DeactivateBlock(BaseCommand[DeactivateBlockParams, DeactivateBlockResult]): +class DeactivateBlock( + BaseCommand[DeactivateBlockParams, DeactivateBlockResult, ErrorOccurrence] +): """A command to unset a Thermocycler's target block temperature.""" commandType: DeactivateBlockCommandType = "thermocycler/deactivateBlock" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_lid.py b/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_lid.py index 8116e0fa9f6..4f76d2c3d3e 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_lid.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/deactivate_lid.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -25,7 +26,9 @@ class DeactivateLidResult(BaseModel): """Result data from unsetting a Thermocycler's target lid temperature.""" -class DeactivateLidImpl(AbstractCommandImpl[DeactivateLidParams, DeactivateLidResult]): +class DeactivateLidImpl( + AbstractCommandImpl[DeactivateLidParams, SuccessData[DeactivateLidResult, None]] +): """Execution implementation of a Thermocycler's deactivate lid command.""" def __init__( @@ -37,7 +40,9 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: DeactivateLidParams) -> DeactivateLidResult: + async def execute( + self, params: DeactivateLidParams + ) -> SuccessData[DeactivateLidResult, None]: """Unset a Thermocycler's target lid temperature.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -49,10 +54,12 @@ async def execute(self, params: DeactivateLidParams) -> DeactivateLidResult: if thermocycler_hardware is not None: await thermocycler_hardware.deactivate_lid() - return DeactivateLidResult() + return SuccessData(public=DeactivateLidResult(), private=None) -class DeactivateLid(BaseCommand[DeactivateLidParams, DeactivateLidResult]): +class DeactivateLid( + BaseCommand[DeactivateLidParams, DeactivateLidResult, ErrorOccurrence] +): """A command to unset a Thermocycler's target lid temperature.""" commandType: DeactivateLidCommandType = "thermocycler/deactivateLid" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/open_lid.py b/api/src/opentrons/protocol_engine/commands/thermocycler/open_lid.py index b556a17cb13..0facf0d4ec3 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/open_lid.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/open_lid.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence from opentrons.protocol_engine.types import MotorAxis if TYPE_CHECKING: @@ -26,7 +27,7 @@ class OpenLidResult(BaseModel): """Result data from opening a Thermocycler's lid.""" -class OpenLidImpl(AbstractCommandImpl[OpenLidParams, OpenLidResult]): +class OpenLidImpl(AbstractCommandImpl[OpenLidParams, SuccessData[OpenLidResult, None]]): """Execution implementation of a Thermocycler's open lid command.""" def __init__( @@ -40,7 +41,7 @@ def __init__( self._equipment = equipment self._movement = movement - async def execute(self, params: OpenLidParams) -> OpenLidResult: + async def execute(self, params: OpenLidParams) -> SuccessData[OpenLidResult, None]: """Open a Thermocycler's lid.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -60,10 +61,10 @@ async def execute(self, params: OpenLidParams) -> OpenLidResult: if thermocycler_hardware is not None: await thermocycler_hardware.open() - return OpenLidResult() + return SuccessData(public=OpenLidResult(), private=None) -class OpenLid(BaseCommand[OpenLidParams, OpenLidResult]): +class OpenLid(BaseCommand[OpenLidParams, OpenLidResult, ErrorOccurrence]): """A command to open a Thermocycler's lid.""" commandType: OpenLidCommandType = "thermocycler/openLid" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/run_profile.py b/api/src/opentrons/protocol_engine/commands/thermocycler/run_profile.py index 76ad974eb6e..af387e3324e 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/run_profile.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/run_profile.py @@ -7,7 +7,8 @@ from opentrons.hardware_control.modules.types import ThermocyclerStep -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -45,7 +46,9 @@ class RunProfileResult(BaseModel): """Result data from running a Thermocycler profile.""" -class RunProfileImpl(AbstractCommandImpl[RunProfileParams, RunProfileResult]): +class RunProfileImpl( + AbstractCommandImpl[RunProfileParams, SuccessData[RunProfileResult, None]] +): """Execution implementation of a Thermocycler's run profile command.""" def __init__( @@ -57,7 +60,9 @@ def __init__( self._state_view = state_view self._equipment = equipment - async def execute(self, params: RunProfileParams) -> RunProfileResult: + async def execute( + self, params: RunProfileParams + ) -> SuccessData[RunProfileResult, None]: """Run a Thermocycler profile.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -91,10 +96,10 @@ async def execute(self, params: RunProfileParams) -> RunProfileResult: steps=steps, repetitions=1, volume=target_volume ) - return RunProfileResult() + return SuccessData(public=RunProfileResult(), private=None) -class RunProfile(BaseCommand[RunProfileParams, RunProfileResult]): +class RunProfile(BaseCommand[RunProfileParams, RunProfileResult, ErrorOccurrence]): """A command to execute a Thermocycler profile run.""" commandType: RunProfileCommandType = "thermocycler/runProfile" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_block_temperature.py b/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_block_temperature.py index 61f13bd2dc2..796fb15c024 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_block_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_block_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -45,7 +46,7 @@ class SetTargetBlockTemperatureResult(BaseModel): class SetTargetBlockTemperatureImpl( AbstractCommandImpl[ SetTargetBlockTemperatureParams, - SetTargetBlockTemperatureResult, + SuccessData[SetTargetBlockTemperatureResult, None], ] ): """Execution implementation of a Thermocycler's set block temperature command.""" @@ -62,7 +63,7 @@ def __init__( async def execute( self, params: SetTargetBlockTemperatureParams, - ) -> SetTargetBlockTemperatureResult: + ) -> SuccessData[SetTargetBlockTemperatureResult, None]: """Set a Thermocycler's target block temperature.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -92,13 +93,20 @@ async def execute( target_temperature, volume=target_volume, hold_time_seconds=hold_time ) - return SetTargetBlockTemperatureResult( - targetBlockTemperature=target_temperature + return SuccessData( + public=SetTargetBlockTemperatureResult( + targetBlockTemperature=target_temperature + ), + private=None, ) class SetTargetBlockTemperature( - BaseCommand[SetTargetBlockTemperatureParams, SetTargetBlockTemperatureResult] + BaseCommand[ + SetTargetBlockTemperatureParams, + SetTargetBlockTemperatureResult, + ErrorOccurrence, + ] ): """A command to set a Thermocycler's target block temperature.""" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_lid_temperature.py b/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_lid_temperature.py index aaa5699b1d4..a819d6a3759 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_lid_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/set_target_lid_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -32,7 +33,9 @@ class SetTargetLidTemperatureResult(BaseModel): class SetTargetLidTemperatureImpl( - AbstractCommandImpl[SetTargetLidTemperatureParams, SetTargetLidTemperatureResult] + AbstractCommandImpl[ + SetTargetLidTemperatureParams, SuccessData[SetTargetLidTemperatureResult, None] + ] ): """Execution implementation of a Thermocycler's set lid temperature command.""" @@ -48,7 +51,7 @@ def __init__( async def execute( self, params: SetTargetLidTemperatureParams, - ) -> SetTargetLidTemperatureResult: + ) -> SuccessData[SetTargetLidTemperatureResult, None]: """Set a Thermocycler's target lid temperature.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -63,11 +66,18 @@ async def execute( if thermocycler_hardware is not None: await thermocycler_hardware.set_target_lid_temperature(target_temperature) - return SetTargetLidTemperatureResult(targetLidTemperature=target_temperature) + return SuccessData( + public=SetTargetLidTemperatureResult( + targetLidTemperature=target_temperature + ), + private=None, + ) class SetTargetLidTemperature( - BaseCommand[SetTargetLidTemperatureParams, SetTargetLidTemperatureResult] + BaseCommand[ + SetTargetLidTemperatureParams, SetTargetLidTemperatureResult, ErrorOccurrence + ] ): """A command to set a Thermocycler's target lid temperature.""" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_block_temperature.py b/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_block_temperature.py index 41d2ef0e60e..40a8241adaa 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_block_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_block_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -27,8 +28,7 @@ class WaitForBlockTemperatureResult(BaseModel): class WaitForBlockTemperatureImpl( AbstractCommandImpl[ - WaitForBlockTemperatureParams, - WaitForBlockTemperatureResult, + WaitForBlockTemperatureParams, SuccessData[WaitForBlockTemperatureResult, None] ] ): """Execution implementation of Thermocycler's wait for block temperature command.""" @@ -45,7 +45,7 @@ def __init__( async def execute( self, params: WaitForBlockTemperatureParams, - ) -> WaitForBlockTemperatureResult: + ) -> SuccessData[WaitForBlockTemperatureResult, None]: """Wait for a Thermocycler's target block temperature.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -61,11 +61,13 @@ async def execute( if thermocycler_hardware is not None: await thermocycler_hardware.wait_for_block_target() - return WaitForBlockTemperatureResult() + return SuccessData(public=WaitForBlockTemperatureResult(), private=None) class WaitForBlockTemperature( - BaseCommand[WaitForBlockTemperatureParams, WaitForBlockTemperatureResult] + BaseCommand[ + WaitForBlockTemperatureParams, WaitForBlockTemperatureResult, ErrorOccurrence + ] ): """A command to wait for a Thermocycler's target block temperature.""" diff --git a/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_lid_temperature.py b/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_lid_temperature.py index 75a652b79e7..026aed14ad6 100644 --- a/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_lid_temperature.py +++ b/api/src/opentrons/protocol_engine/commands/thermocycler/wait_for_lid_temperature.py @@ -5,7 +5,8 @@ from pydantic import BaseModel, Field -from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from ..command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ...errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from opentrons.protocol_engine.state import StateView @@ -27,8 +28,7 @@ class WaitForLidTemperatureResult(BaseModel): class WaitForLidTemperatureImpl( AbstractCommandImpl[ - WaitForLidTemperatureParams, - WaitForLidTemperatureResult, + WaitForLidTemperatureParams, SuccessData[WaitForLidTemperatureResult, None] ] ): """Execution implementation of Thermocycler's wait for lid temperature command.""" @@ -45,7 +45,7 @@ def __init__( async def execute( self, params: WaitForLidTemperatureParams, - ) -> WaitForLidTemperatureResult: + ) -> SuccessData[WaitForLidTemperatureResult, None]: """Wait for a Thermocycler's lid temperature.""" thermocycler_state = self._state_view.modules.get_thermocycler_module_substate( params.moduleId @@ -61,11 +61,13 @@ async def execute( if thermocycler_hardware is not None: await thermocycler_hardware.wait_for_lid_target() - return WaitForLidTemperatureResult() + return SuccessData(public=WaitForLidTemperatureResult(), private=None) class WaitForLidTemperature( - BaseCommand[WaitForLidTemperatureParams, WaitForLidTemperatureResult] + BaseCommand[ + WaitForLidTemperatureParams, WaitForLidTemperatureResult, ErrorOccurrence + ] ): """A command to wait for a Thermocycler's lid temperature.""" diff --git a/api/src/opentrons/protocol_engine/commands/touch_tip.py b/api/src/opentrons/protocol_engine/commands/touch_tip.py index 7da13136e14..858be81842c 100644 --- a/api/src/opentrons/protocol_engine/commands/touch_tip.py +++ b/api/src/opentrons/protocol_engine/commands/touch_tip.py @@ -6,7 +6,8 @@ from ..errors import TouchTipDisabledError, LabwareIsTipRackError from ..types import DeckPoint -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from .pipetting_common import ( PipetteIdMixin, WellLocationMixin, @@ -46,7 +47,9 @@ class TouchTipResult(DestinationPositionResult): pass -class TouchTipImplementation(AbstractCommandImpl[TouchTipParams, TouchTipResult]): +class TouchTipImplementation( + AbstractCommandImpl[TouchTipParams, SuccessData[TouchTipResult, None]] +): """Touch tip command implementation.""" def __init__( @@ -60,7 +63,9 @@ def __init__( self._movement = movement self._gantry_mover = gantry_mover - async def execute(self, params: TouchTipParams) -> TouchTipResult: + async def execute( + self, params: TouchTipParams + ) -> SuccessData[TouchTipResult, None]: """Touch tip to sides of a well using the requested pipette.""" pipette_id = params.pipetteId labware_id = params.labwareId @@ -99,10 +104,12 @@ async def execute(self, params: TouchTipParams) -> TouchTipResult: speed=touch_speed, ) - return TouchTipResult(position=DeckPoint(x=x, y=y, z=z)) + return SuccessData( + public=TouchTipResult(position=DeckPoint(x=x, y=y, z=z)), private=None + ) -class TouchTip(BaseCommand[TouchTipParams, TouchTipResult]): +class TouchTip(BaseCommand[TouchTipParams, TouchTipResult, ErrorOccurrence]): """Touch up tip command model.""" commandType: TouchTipCommandType = "touchTip" diff --git a/api/src/opentrons/protocol_engine/commands/verify_tip_presence.py b/api/src/opentrons/protocol_engine/commands/verify_tip_presence.py index 67aa5d1dc34..9816e03cf33 100644 --- a/api/src/opentrons/protocol_engine/commands/verify_tip_presence.py +++ b/api/src/opentrons/protocol_engine/commands/verify_tip_presence.py @@ -6,7 +6,8 @@ from typing_extensions import Literal from .pipetting_common import PipetteIdMixin -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence from ..types import TipPresenceStatus, InstrumentSensorId @@ -35,7 +36,9 @@ class VerifyTipPresenceResult(BaseModel): class VerifyTipPresenceImplementation( - AbstractCommandImpl[VerifyTipPresenceParams, VerifyTipPresenceResult] + AbstractCommandImpl[ + VerifyTipPresenceParams, SuccessData[VerifyTipPresenceResult, None] + ] ): """VerifyTipPresence command implementation.""" @@ -46,7 +49,9 @@ def __init__( ) -> None: self._tip_handler = tip_handler - async def execute(self, params: VerifyTipPresenceParams) -> VerifyTipPresenceResult: + async def execute( + self, params: VerifyTipPresenceParams + ) -> SuccessData[VerifyTipPresenceResult, None]: """Verify if tip presence is as expected for the requested pipette.""" pipette_id = params.pipetteId expected_state = params.expectedState @@ -62,10 +67,12 @@ async def execute(self, params: VerifyTipPresenceParams) -> VerifyTipPresenceRes follow_singular_sensor=follow_singular_sensor, ) - return VerifyTipPresenceResult() + return SuccessData(public=VerifyTipPresenceResult(), private=None) -class VerifyTipPresence(BaseCommand[VerifyTipPresenceParams, VerifyTipPresenceResult]): +class VerifyTipPresence( + BaseCommand[VerifyTipPresenceParams, VerifyTipPresenceResult, ErrorOccurrence] +): """VerifyTipPresence command model.""" commandType: VerifyTipPresenceCommandType = "verifyTipPresence" diff --git a/api/src/opentrons/protocol_engine/commands/wait_for_duration.py b/api/src/opentrons/protocol_engine/commands/wait_for_duration.py index 7c8018c237c..df1eae28aa4 100644 --- a/api/src/opentrons/protocol_engine/commands/wait_for_duration.py +++ b/api/src/opentrons/protocol_engine/commands/wait_for_duration.py @@ -4,7 +4,8 @@ from typing import TYPE_CHECKING, Optional, Type from typing_extensions import Literal -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import RunControlHandler @@ -28,20 +29,24 @@ class WaitForDurationResult(BaseModel): class WaitForDurationImplementation( - AbstractCommandImpl[WaitForDurationParams, WaitForDurationResult] + AbstractCommandImpl[WaitForDurationParams, SuccessData[WaitForDurationResult, None]] ): """Wait for duration command implementation.""" def __init__(self, run_control: RunControlHandler, **kwargs: object) -> None: self._run_control = run_control - async def execute(self, params: WaitForDurationParams) -> WaitForDurationResult: + async def execute( + self, params: WaitForDurationParams + ) -> SuccessData[WaitForDurationResult, None]: """Wait for a duration of time.""" await self._run_control.wait_for_duration(params.seconds) - return WaitForDurationResult() + return SuccessData(public=WaitForDurationResult(), private=None) -class WaitForDuration(BaseCommand[WaitForDurationParams, WaitForDurationResult]): +class WaitForDuration( + BaseCommand[WaitForDurationParams, WaitForDurationResult, ErrorOccurrence] +): """Wait for duration command model.""" commandType: WaitForDurationCommandType = "waitForDuration" diff --git a/api/src/opentrons/protocol_engine/commands/wait_for_resume.py b/api/src/opentrons/protocol_engine/commands/wait_for_resume.py index 6917621a7ac..c6036f852e2 100644 --- a/api/src/opentrons/protocol_engine/commands/wait_for_resume.py +++ b/api/src/opentrons/protocol_engine/commands/wait_for_resume.py @@ -4,7 +4,8 @@ from typing import TYPE_CHECKING, Optional, Type from typing_extensions import Literal -from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate +from .command import AbstractCommandImpl, BaseCommand, BaseCommandCreate, SuccessData +from ..errors.error_occurrence import ErrorOccurrence if TYPE_CHECKING: from ..execution import RunControlHandler @@ -29,20 +30,24 @@ class WaitForResumeResult(BaseModel): class WaitForResumeImplementation( - AbstractCommandImpl[WaitForResumeParams, WaitForResumeResult] + AbstractCommandImpl[WaitForResumeParams, SuccessData[WaitForResumeResult, None]] ): """Wait for resume command implementation.""" def __init__(self, run_control: RunControlHandler, **kwargs: object) -> None: self._run_control = run_control - async def execute(self, params: WaitForResumeParams) -> WaitForResumeResult: + async def execute( + self, params: WaitForResumeParams + ) -> SuccessData[WaitForResumeResult, None]: """Dispatch a PauseAction to the store to pause the protocol.""" await self._run_control.wait_for_resume() - return WaitForResumeResult() + return SuccessData(public=WaitForResumeResult(), private=None) -class WaitForResume(BaseCommand[WaitForResumeParams, WaitForResumeResult]): +class WaitForResume( + BaseCommand[WaitForResumeParams, WaitForResumeResult, ErrorOccurrence] +): """Wait for resume command model.""" commandType: WaitForResumeCommandType = "waitForResume" diff --git a/api/src/opentrons/protocol_engine/error_recovery_policy.py b/api/src/opentrons/protocol_engine/error_recovery_policy.py index 6285e7ae37a..b41665e6ea9 100644 --- a/api/src/opentrons/protocol_engine/error_recovery_policy.py +++ b/api/src/opentrons/protocol_engine/error_recovery_policy.py @@ -1,12 +1,15 @@ # noqa: D100 import enum -from typing import Protocol - -from opentrons_shared_data.errors import EnumeratedError, ErrorCodes +from typing import Optional, Protocol from opentrons.config import feature_flags as ff -from opentrons.protocol_engine.commands import Command +from opentrons.protocol_engine.commands import ( + Command, + CommandDefinedErrorData, + PickUpTip, +) +from opentrons.protocol_engine.commands.pick_up_tip import TipPhysicallyMissingError class ErrorRecoveryType(enum.Enum): @@ -36,17 +39,24 @@ class ErrorRecoveryPolicy(Protocol): This describes a function that Protocol Engine calls after each command failure, with the details of that failure. The implementation should inspect those details and return an appropriate `ErrorRecoveryType`. + + Args: + failed_command: The command that failed, in its final `status=="failed"` state. + defined_error_data: If the command failed with a defined error, details about + that error. If the command failed with an undefined error, `None`. + By design, this callable isn't given details about undefined errors, + since it would be fragile to rely on them. """ @staticmethod def __call__( # noqa: D102 - failed_command: Command, exception: Exception + failed_command: Command, defined_error_data: Optional[CommandDefinedErrorData] ) -> ErrorRecoveryType: ... def error_recovery_by_ff( - failed_command: Command, exception: Exception + failed_command: Command, defined_error_data: Optional[CommandDefinedErrorData] ) -> ErrorRecoveryType: """Use API feature flags to decide how to handle an error. @@ -56,20 +66,20 @@ def error_recovery_by_ff( # todo(mm, 2024-03-18): Do we need to do anything explicit here to disable # error recovery on the OT-2? if ff.enable_error_recovery_experiments() and _is_recoverable( - failed_command, exception + failed_command, defined_error_data ): return ErrorRecoveryType.WAIT_FOR_RECOVERY else: return ErrorRecoveryType.FAIL_RUN -def _is_recoverable(failed_command: Command, exception: Exception) -> bool: +def _is_recoverable( + failed_command: Command, error_data: Optional[CommandDefinedErrorData] +) -> bool: if ( - failed_command.commandType == "pickUpTip" - and isinstance(exception, EnumeratedError) - # Hack(?): It seems like this should be ErrorCodes.TIP_PICKUP_FAILED, but that's - # not what gets raised in practice. - and exception.code == ErrorCodes.UNEXPECTED_TIP_REMOVAL + isinstance(failed_command, PickUpTip) + and error_data is not None + and isinstance(error_data.public, TipPhysicallyMissingError) ): return True else: diff --git a/api/src/opentrons/protocol_engine/execution/command_executor.py b/api/src/opentrons/protocol_engine/execution/command_executor.py index d00b5c0a96d..40c2bf31a54 100644 --- a/api/src/opentrons/protocol_engine/execution/command_executor.py +++ b/api/src/opentrons/protocol_engine/execution/command_executor.py @@ -11,16 +11,12 @@ PythonException, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.error_recovery_policy import ErrorRecoveryPolicy from ..state import StateStore from ..resources import ModelUtils -from ..commands import ( - CommandStatus, - AbstractCommandImpl, - CommandResult, - CommandPrivateResult, -) +from ..commands import CommandStatus from ..actions import ( ActionDispatcher, RunCommandAction, @@ -131,6 +127,7 @@ async def execute(self, command_id: str) -> None: tip_handler=self._tip_handler, run_control=self._run_control, rail_lights=self._rail_lights, + model_utils=self._model_utils, status_bar=self._status_bar, command_note_adder=note_tracker, ) @@ -142,17 +139,17 @@ async def execute(self, command_id: str) -> None: ) running_command = self._state_store.commands.get(queued_command.id) + log.debug( + f"Executing {running_command.id}, {running_command.commandType}, {running_command.params}" + ) try: - log.debug( - f"Executing {running_command.id}, {running_command.commandType}, {running_command.params}" + result = await command_impl.execute( + running_command.params # type: ignore[arg-type] ) - if isinstance(command_impl, AbstractCommandImpl): - result: CommandResult = await command_impl.execute(running_command.params) # type: ignore[arg-type] - private_result: Optional[CommandPrivateResult] = None - else: - result, private_result = await command_impl.execute(running_command.params) # type: ignore[arg-type] except (Exception, asyncio.CancelledError) as error: + # The command encountered an undefined error. + log.warning(f"Execution of {running_command.id} failed", exc_info=error) # TODO(mc, 2022-11-14): mark command as stopped rather than failed # https://opentrons.atlassian.net/browse/RCORE-390 @@ -171,29 +168,37 @@ async def execute(self, command_id: str) -> None: error_id=self._model_utils.generate_id(), failed_at=self._model_utils.get_timestamp(), notes=note_tracker.get_notes(), - # todo(mm, 2024-03-13): - # When a command fails recoverably, and we handle it with - # WAIT_FOR_RECOVERY or CONTINUE, we want to update our logical - # protocol state as if the command succeeded. (e.g. if a tip - # pickup failed, pretend that it succeeded and that the tip is now - # on the pipette.) However, this currently does the opposite, - # acting as if the command never executed. type=self._error_recovery_policy( running_command, - error, + None, ), ) ) + else: - update = { - "result": result, - "status": CommandStatus.SUCCEEDED, - "completedAt": self._model_utils.get_timestamp(), - "notes": note_tracker.get_notes(), - } - succeeded_command = running_command.copy(update=update) - self._action_dispatcher.dispatch( - SucceedCommandAction( - command=succeeded_command, private_result=private_result - ), - ) + if isinstance(result, SuccessData): + update = { + "result": result.public, + "status": CommandStatus.SUCCEEDED, + "completedAt": self._model_utils.get_timestamp(), + "notes": note_tracker.get_notes(), + } + succeeded_command = running_command.copy(update=update) + self._action_dispatcher.dispatch( + SucceedCommandAction( + command=succeeded_command, private_result=result.private + ), + ) + else: + # The command encountered a defined error. + self._action_dispatcher.dispatch( + FailCommandAction( + error=result, + command_id=running_command.id, + running_command=running_command, + error_id=result.public.id, + failed_at=result.public.createdAt, + notes=note_tracker.get_notes(), + type=self._error_recovery_policy(running_command, result), + ) + ) diff --git a/api/src/opentrons/protocol_engine/state/__init__.py b/api/src/opentrons/protocol_engine/state/__init__.py index cd6f1bb2b68..80a88350263 100644 --- a/api/src/opentrons/protocol_engine/state/__init__.py +++ b/api/src/opentrons/protocol_engine/state/__init__.py @@ -7,7 +7,7 @@ CommandState, CommandView, CommandSlice, - CurrentCommand, + CommandPointer, ) from .command_history import CommandEntry from .labware import LabwareState, LabwareView @@ -39,7 +39,7 @@ "CommandState", "CommandView", "CommandSlice", - "CurrentCommand", + "CommandPointer", "CommandEntry", # labware state and values "LabwareState", diff --git a/api/src/opentrons/protocol_engine/state/change_notifier.py b/api/src/opentrons/protocol_engine/state/change_notifier.py deleted file mode 100644 index 3c72f277913..00000000000 --- a/api/src/opentrons/protocol_engine/state/change_notifier.py +++ /dev/null @@ -1,19 +0,0 @@ -"""Simple state change notification interface.""" -import asyncio - - -class ChangeNotifier: - """An interface tto emit or subscribe to state change notifications.""" - - def __init__(self) -> None: - """Initialize the ChangeNotifier with an internal Event.""" - self._event = asyncio.Event() - - def notify(self) -> None: - """Notify all `wait`'ers that the state has changed.""" - self._event.set() - - async def wait(self) -> None: - """Wait until the next state change notification.""" - self._event.clear() - await self._event.wait() diff --git a/api/src/opentrons/protocol_engine/state/commands.py b/api/src/opentrons/protocol_engine/state/commands.py index 0c055fdee39..413ffa63f1c 100644 --- a/api/src/opentrons/protocol_engine/state/commands.py +++ b/api/src/opentrons/protocol_engine/state/commands.py @@ -107,8 +107,8 @@ class CommandSlice: @dataclass(frozen=True) -class CurrentCommand: - """The "current" command's ID and index in the overall commands list.""" +class CommandPointer: + """Brief info about a command and where to find it.""" command_id: str command_key: str @@ -268,16 +268,19 @@ def handle_action(self, action: Action) -> None: # noqa: C901 self._state.command_history.set_command_succeeded(succeeded_command) elif isinstance(action, FailCommandAction): - error_occurrence = ErrorOccurrence.from_failed( - id=action.error_id, - createdAt=action.failed_at, - error=action.error, - ) + if isinstance(action.error, EnumeratedError): + public_error_occurrence = ErrorOccurrence.from_failed( + id=action.error_id, + createdAt=action.failed_at, + error=action.error, + ) + else: + public_error_occurrence = action.error.public self._update_to_failed( command_id=action.command_id, failed_at=action.failed_at, - error_occurrence=error_occurrence, + error_occurrence=public_error_occurrence, error_recovery_type=action.type, notes=action.notes, ) @@ -526,6 +529,8 @@ def get_slice( queued_command_ids = self._state.command_history.get_queue_ids() total_length = self._state.command_history.length() + # TODO(mm, 2024-05-17): This looks like it's attempting to do the same thing + # as self.get_current(), but in a different way. Can we unify them? if cursor is None: if running_command is not None: cursor = running_command.index @@ -597,7 +602,7 @@ def get_queue_ids(self) -> OrderedSet[str]: """Get the IDs of all queued protocol commands, in FIFO order.""" return self._state.command_history.get_queue_ids() - def get_current(self) -> Optional[CurrentCommand]: + def get_current(self) -> Optional[CommandPointer]: """Return the "current" command, if any. The "current" command is the command that is currently executing, @@ -605,20 +610,20 @@ def get_current(self) -> Optional[CurrentCommand]: """ running_command = self._state.command_history.get_running_command() if running_command: - return CurrentCommand( + return CommandPointer( command_id=running_command.command.id, command_key=running_command.command.key, created_at=running_command.command.createdAt, index=running_command.index, ) - final_command = self.get_final_command() - if final_command: - return CurrentCommand( - command_id=final_command.command.id, - command_key=final_command.command.key, - created_at=final_command.command.createdAt, - index=final_command.index, + most_recently_finalized_command = self.get_most_recently_finalized_command() + if most_recently_finalized_command: + return CommandPointer( + command_id=most_recently_finalized_command.command.id, + command_key=most_recently_finalized_command.command.key, + created_at=most_recently_finalized_command.command.createdAt, + index=most_recently_finalized_command.index, ) return None @@ -682,7 +687,7 @@ def get_is_running(self) -> bool: """Get whether the protocol is running & queued commands should be executed.""" return self._state.queue_status == QueueStatus.RUNNING - def get_final_command(self) -> Optional[CommandEntry]: + def get_most_recently_finalized_command(self) -> Optional[CommandEntry]: """Get the most recent command that has reached its final `status`. See get_command_is_final.""" run_requested_to_stop = self._state.run_result is not None @@ -695,22 +700,22 @@ def get_final_command(self) -> Optional[CommandEntry]: else: return self._state.command_history.get_prev(tail_command.command.id) else: - final_command = self._state.command_history.get_terminal_command() + most_recently_finalized = self._state.command_history.get_terminal_command() # This iteration is effectively O(1) as we'll only ever have to iterate one or two times at most. - while final_command is not None: + while most_recently_finalized is not None: next_command = self._state.command_history.get_next( - final_command.command.id + most_recently_finalized.command.id ) if ( next_command is not None and next_command.command.status != CommandStatus.QUEUED and next_command.command.status != CommandStatus.RUNNING ): - final_command = next_command + most_recently_finalized = next_command else: break - return final_command + return most_recently_finalized def get_command_is_final(self, command_id: str) -> bool: """Get whether a given command has reached its final `status`. @@ -755,9 +760,24 @@ def get_all_commands_final(self) -> bool: return no_command_running and no_command_to_execute + def get_recovery_target(self) -> Optional[CommandPointer]: + """Return the command currently undergoing error recovery, if any.""" + recovery_target_command_id = self._state.recovery_target_command_id + if recovery_target_command_id is None: + return None + else: + entry = self._state.command_history.get(recovery_target_command_id) + return CommandPointer( + command_id=entry.command.id, + command_key=entry.command.key, + created_at=entry.command.createdAt, + index=entry.index, + ) + def get_recovery_in_progress_for_command(self, command_id: str) -> bool: """Return whether the given command failed and its error recovery is in progress.""" - return self._state.recovery_target_command_id == command_id + pointer = self.get_recovery_target() + return pointer is not None and pointer.command_id == command_id def raise_fatal_command_error(self) -> None: """Raise the run's fatal command error, if there was one, as an exception. diff --git a/api/src/opentrons/protocol_engine/state/module_substates/absorbance_reader_substate.py b/api/src/opentrons/protocol_engine/state/module_substates/absorbance_reader_substate.py new file mode 100644 index 00000000000..f694f798a71 --- /dev/null +++ b/api/src/opentrons/protocol_engine/state/module_substates/absorbance_reader_substate.py @@ -0,0 +1,20 @@ +"""Heater-Shaker Module sub-state.""" +from dataclasses import dataclass +from typing import List, NewType, Optional + + +AbsorbanceReaderId = NewType("AbsorbanceReaderId", str) + + +@dataclass(frozen=True) +class AbsorbanceReaderSubState: + """Absorbance-Plate-Reader-specific state.""" + + module_id: AbsorbanceReaderId + initialized: bool + is_lid_open: bool + is_loaded: bool + is_measuring: bool + temperature: float + sample_wavelength: Optional[int] + supported_wavelengths: Optional[List[int]] diff --git a/api/src/opentrons/protocol_engine/state/state.py b/api/src/opentrons/protocol_engine/state/state.py index dcde17a7894..aa54383b379 100644 --- a/api/src/opentrons/protocol_engine/state/state.py +++ b/api/src/opentrons/protocol_engine/state/state.py @@ -8,11 +8,11 @@ from opentrons_shared_data.deck.dev_types import DeckDefinitionV5 from opentrons.protocol_engine.types import ModuleOffsetData +from opentrons.util.change_notifier import ChangeNotifier from ..resources import DeckFixedLabware from ..actions import Action, ActionHandler from .abstract_store import HasState, HandlesActions -from .change_notifier import ChangeNotifier from .commands import CommandState, CommandStore, CommandView from .addressable_areas import ( AddressableAreaState, diff --git a/api/src/opentrons/protocol_engine/types.py b/api/src/opentrons/protocol_engine/types.py index 13e9515e447..77ab6231b71 100644 --- a/api/src/opentrons/protocol_engine/types.py +++ b/api/src/opentrons/protocol_engine/types.py @@ -4,7 +4,15 @@ from datetime import datetime from enum import Enum from dataclasses import dataclass -from pydantic import BaseModel, Field, validator +from pydantic import ( + BaseModel, + Field, + StrictBool, + StrictFloat, + StrictInt, + StrictStr, + validator, +) from typing import Optional, Union, List, Dict, Any, NamedTuple, Tuple, FrozenSet from typing_extensions import Literal, TypeGuard @@ -877,12 +885,14 @@ def from_hw_state(cls, state: HwTipStateType) -> "TipPresenceStatus": class RTPBase(BaseModel): """Parameters defined in a protocol.""" - displayName: str = Field(..., description="Display string for the parameter.") - variableName: str = Field(..., description="Python variable name of the parameter.") - description: Optional[str] = Field( + displayName: StrictStr = Field(..., description="Display string for the parameter.") + variableName: StrictStr = Field( + ..., description="Python variable name of the parameter." + ) + description: Optional[StrictStr] = Field( None, description="Detailed description of the parameter." ) - suffix: Optional[str] = Field( + suffix: Optional[StrictStr] = Field( None, description="Units (like mL, mm/sec, etc) or a custom suffix for the parameter.", ) @@ -894,17 +904,17 @@ class NumberParameter(RTPBase): type: Literal["int", "float"] = Field( ..., description="String specifying whether the number is an int or float type." ) - min: float = Field( + min: Union[StrictInt, StrictFloat] = Field( ..., description="Minimum value that the number param is allowed to have." ) - max: float = Field( + max: Union[StrictInt, StrictFloat] = Field( ..., description="Maximum value that the number param is allowed to have." ) - value: float = Field( + value: Union[StrictInt, StrictFloat] = Field( ..., description="The value assigned to the parameter; if not supplied by the client, will be assigned the default value.", ) - default: float = Field( + default: Union[StrictInt, StrictFloat] = Field( ..., description="Default value of the parameter, to be used when there is no client-specified value.", ) @@ -916,11 +926,11 @@ class BooleanParameter(RTPBase): type: Literal["bool"] = Field( default="bool", description="String specifying the type of this parameter" ) - value: bool = Field( + value: StrictBool = Field( ..., description="The value assigned to the parameter; if not supplied by the client, will be assigned the default value.", ) - default: bool = Field( + default: StrictBool = Field( ..., description="Default value of the parameter, to be used when there is no client-specified value.", ) @@ -929,8 +939,10 @@ class BooleanParameter(RTPBase): class EnumChoice(BaseModel): """Components of choices used in RTP Enum Parameters.""" - displayName: str = Field(..., description="Display string for the param's choice.") - value: Union[float, str] = Field( + displayName: StrictStr = Field( + ..., description="Display string for the param's choice." + ) + value: Union[StrictInt, StrictFloat, StrictStr] = Field( ..., description="Enum value of the param's choice." ) @@ -945,11 +957,11 @@ class EnumParameter(RTPBase): choices: List[EnumChoice] = Field( ..., description="List of valid choices for this parameter." ) - value: Union[float, str] = Field( + value: Union[StrictInt, StrictFloat, StrictStr] = Field( ..., description="The value assigned to the parameter; if not supplied by the client, will be assigned the default value.", ) - default: Union[float, str] = Field( + default: Union[StrictInt, StrictFloat, StrictStr] = Field( ..., description="Default value of the parameter, to be used when there is no client-specified value.", ) @@ -958,5 +970,5 @@ class EnumParameter(RTPBase): RunTimeParameter = Union[NumberParameter, EnumParameter, BooleanParameter] RunTimeParamValuesType = Dict[ - str, Union[float, bool, str] + StrictStr, Union[StrictInt, StrictFloat, StrictBool, StrictStr] ] # update value types as more RTP types are added diff --git a/api/src/opentrons/protocol_runner/__init__.py b/api/src/opentrons/protocol_runner/__init__.py index 35360cc77d9..9c5015e23fb 100644 --- a/api/src/opentrons/protocol_runner/__init__.py +++ b/api/src/opentrons/protocol_runner/__init__.py @@ -13,6 +13,7 @@ AnyRunner, ) from .create_simulating_runner import create_simulating_runner +from .run_orchestrator import RunOrchestrator __all__ = [ "AbstractRunner", @@ -23,4 +24,5 @@ "PythonAndLegacyRunner", "LiveRunner", "AnyRunner", + "RunOrchestrator", ] diff --git a/api/src/opentrons/protocol_runner/create_simulating_runner.py b/api/src/opentrons/protocol_runner/create_simulating_runner.py index c6854662c06..392afa512f7 100644 --- a/api/src/opentrons/protocol_runner/create_simulating_runner.py +++ b/api/src/opentrons/protocol_runner/create_simulating_runner.py @@ -12,7 +12,7 @@ from opentrons_shared_data.robot.dev_types import RobotType -from .legacy_wrappers import LegacySimulatingContextCreator +from .python_protocol_wrappers import SimulatingContextCreator from .protocol_runner import create_protocol_runner, AbstractRunner @@ -62,7 +62,7 @@ async def create_simulating_runner( load_fixed_trash=should_load_fixed_trash(protocol_config), ) - simulating_legacy_context_creator = LegacySimulatingContextCreator( + simulating_context_creator = SimulatingContextCreator( hardware_api=simulating_hardware_api, protocol_engine=protocol_engine, ) @@ -71,7 +71,7 @@ async def create_simulating_runner( protocol_config=protocol_config, protocol_engine=protocol_engine, hardware_api=simulating_hardware_api, - legacy_context_creator=simulating_legacy_context_creator, + protocol_context_creator=simulating_context_creator, ) diff --git a/api/src/opentrons/protocol_runner/legacy_command_mapper.py b/api/src/opentrons/protocol_runner/legacy_command_mapper.py index 9243f50f70d..ababa892616 100644 --- a/api/src/opentrons/protocol_runner/legacy_command_mapper.py +++ b/api/src/opentrons/protocol_runner/legacy_command_mapper.py @@ -4,9 +4,24 @@ from datetime import datetime from typing import Dict, List, Optional, Tuple, Union +from opentrons.hardware_control.modules.types import ( + ModuleModel as HardwareModuleModel, + TemperatureModuleModel, + MagneticModuleModel, + ThermocyclerModuleModel, + HeaterShakerModuleModel, +) from opentrons_shared_data.pipette.dev_types import PipetteNameType from opentrons.types import MountType, DeckSlotName, Location from opentrons.legacy_commands import types as legacy_command_types +from opentrons.protocol_api import InstrumentContext +from opentrons.protocol_api.core.legacy.deck import FIXED_TRASH_ID +from opentrons.protocol_api.core.legacy.load_info import ( + LoadInfo as LegacyLoadInfo, + LabwareLoadInfo as LegacyLabwareLoadInfo, + InstrumentLoadInfo as LegacyInstrumentLoadInfo, + ModuleLoadInfo as LegacyModuleLoadInfo, +) from opentrons.protocol_engine import ( ProtocolEngineError, actions as pe_actions, @@ -19,22 +34,9 @@ ModuleDataProvider, pipette_data_provider, ) + from opentrons_shared_data.labware.labware_definition import LabwareDefinition from opentrons_shared_data.errors import ErrorCodes, EnumeratedError, PythonException -from opentrons.protocol_api.core.legacy.deck import FIXED_TRASH_ID - -from .legacy_wrappers import ( - LegacyLoadInfo, - LegacyInstrumentLoadInfo, - LegacyLabwareLoadInfo, - LegacyModuleLoadInfo, - LegacyPipetteContext, - LegacyModuleModel, - LegacyMagneticModuleModel, - LegacyTemperatureModuleModel, - LegacyThermocyclerModuleModel, - LegacyHeaterShakerModuleModel, -) class LegacyCommandParams(pe_commands.CustomParams): @@ -63,14 +65,14 @@ def __init__(self, wrapping_exc: BaseException) -> None: ) -_LEGACY_TO_PE_MODULE: Dict[LegacyModuleModel, pe_types.ModuleModel] = { - LegacyMagneticModuleModel.MAGNETIC_V1: pe_types.ModuleModel.MAGNETIC_MODULE_V1, - LegacyMagneticModuleModel.MAGNETIC_V2: pe_types.ModuleModel.MAGNETIC_MODULE_V2, - LegacyTemperatureModuleModel.TEMPERATURE_V1: pe_types.ModuleModel.TEMPERATURE_MODULE_V1, - LegacyTemperatureModuleModel.TEMPERATURE_V2: pe_types.ModuleModel.TEMPERATURE_MODULE_V2, - LegacyThermocyclerModuleModel.THERMOCYCLER_V1: pe_types.ModuleModel.THERMOCYCLER_MODULE_V1, - LegacyThermocyclerModuleModel.THERMOCYCLER_V2: pe_types.ModuleModel.THERMOCYCLER_MODULE_V2, - LegacyHeaterShakerModuleModel.HEATER_SHAKER_V1: pe_types.ModuleModel.HEATER_SHAKER_MODULE_V1, +_HARDWARE_TO_PE_MODULE: Dict[HardwareModuleModel, pe_types.ModuleModel] = { + MagneticModuleModel.MAGNETIC_V1: pe_types.ModuleModel.MAGNETIC_MODULE_V1, + MagneticModuleModel.MAGNETIC_V2: pe_types.ModuleModel.MAGNETIC_MODULE_V2, + TemperatureModuleModel.TEMPERATURE_V1: pe_types.ModuleModel.TEMPERATURE_MODULE_V1, + TemperatureModuleModel.TEMPERATURE_V2: pe_types.ModuleModel.TEMPERATURE_MODULE_V2, + ThermocyclerModuleModel.THERMOCYCLER_V1: pe_types.ModuleModel.THERMOCYCLER_MODULE_V1, + ThermocyclerModuleModel.THERMOCYCLER_V2: pe_types.ModuleModel.THERMOCYCLER_MODULE_V2, + HeaterShakerModuleModel.HEATER_SHAKER_V1: pe_types.ModuleModel.HEATER_SHAKER_MODULE_V1, } _HIGHER_ORDER_COMMAND_TYPES = { @@ -354,7 +356,7 @@ def _build_drop_tip( command_id: str, now: datetime, ) -> Tuple[pe_commands.CommandCreate, pe_commands.Command]: - pipette: LegacyPipetteContext = command["payload"]["instrument"] + pipette: InstrumentContext = command["payload"]["instrument"] well = command["payload"]["location"] mount = MountType(pipette.mount) # the following type checking suppression assumes the tiprack is not loaded on top of a module @@ -387,7 +389,7 @@ def _build_pick_up_tip( command_id: str, now: datetime, ) -> Tuple[pe_commands.CommandCreate, pe_commands.Command]: - pipette: LegacyPipetteContext = command["payload"]["instrument"] + pipette: InstrumentContext = command["payload"]["instrument"] location = command["payload"]["location"] well = location mount = MountType(pipette.mount) @@ -422,7 +424,7 @@ def _build_liquid_handling( command_id: str, now: datetime, ) -> Tuple[pe_commands.CommandCreate, pe_commands.Command]: - pipette: LegacyPipetteContext = command["payload"]["instrument"] + pipette: InstrumentContext = command["payload"]["instrument"] location = command["payload"]["location"] volume = command["payload"]["volume"] # TODO:(jr, 15.08.2022): aspirate and dispense commands with no specified labware @@ -533,7 +535,7 @@ def _build_blow_out( command_id: str, now: datetime, ) -> Tuple[pe_commands.CommandCreate, pe_commands.Command]: - pipette: LegacyPipetteContext = command["payload"]["instrument"] + pipette: InstrumentContext = command["payload"]["instrument"] location = command["payload"]["location"] flow_rate = pipette.flow_rate.blow_out # TODO:(jr, 15.08.2022): blow_out commands with no specified labware get filtered @@ -725,8 +727,8 @@ def _map_module_load( count = self._command_count["LOAD_MODULE"] command_id = f"commands.LOAD_MODULE-{count}" module_id = f"module-{count}" - requested_model = _LEGACY_TO_PE_MODULE[module_load_info.requested_model] - loaded_model = _LEGACY_TO_PE_MODULE[module_load_info.loaded_model] + requested_model = _HARDWARE_TO_PE_MODULE[module_load_info.requested_model] + loaded_model = _HARDWARE_TO_PE_MODULE[module_load_info.loaded_model] # This will fetch a V2 definition only. PAPI < v2.3 use V1 definitions. # When running a < v2.3 protocol, there will be a mismatch of definitions used diff --git a/api/src/opentrons/protocol_runner/legacy_context_plugin.py b/api/src/opentrons/protocol_runner/legacy_context_plugin.py index 7dd882f0fb7..baf6ccbc716 100644 --- a/api/src/opentrons/protocol_runner/legacy_context_plugin.py +++ b/api/src/opentrons/protocol_runner/legacy_context_plugin.py @@ -7,10 +7,10 @@ from opentrons.legacy_commands.types import CommandMessage as LegacyCommand from opentrons.legacy_broker import LegacyBroker +from opentrons.protocol_api.core.legacy.load_info import LoadInfo from opentrons.protocol_engine import AbstractPlugin, actions as pe_actions from opentrons.util.broker import ReadOnlyBroker -from .legacy_wrappers import LegacyLoadInfo from .legacy_command_mapper import LegacyCommandMapper from .thread_async_queue import ThreadAsyncQueue @@ -37,7 +37,7 @@ class LegacyContextPlugin(AbstractPlugin): def __init__( self, broker: LegacyBroker, - equipment_broker: ReadOnlyBroker[LegacyLoadInfo], + equipment_broker: ReadOnlyBroker[LoadInfo], legacy_command_mapper: Optional[LegacyCommandMapper] = None, ) -> None: """Initialize the plugin with its dependencies.""" @@ -122,15 +122,15 @@ def handle_action(self, action: pe_actions.Action) -> None: pass def _handle_legacy_command(self, command: LegacyCommand) -> None: - """Handle a command reported by the APIv2 protocol. + """Handle a command reported by the legacy APIv2 protocol. Used as a broker callback, so this will run in the APIv2 protocol's thread. """ pe_actions = self._legacy_command_mapper.map_command(command=command) self._actions_to_dispatch.put(pe_actions) - def _handle_equipment_loaded(self, load_info: LegacyLoadInfo) -> None: - """Handle an equipment load reported by the APIv2 protocol. + def _handle_equipment_loaded(self, load_info: LoadInfo) -> None: + """Handle an equipment load reported by the legacy APIv2 protocol. Used as a broker callback, so this will run in the APIv2 protocol's thread. """ diff --git a/api/src/opentrons/protocol_runner/protocol_runner.py b/api/src/opentrons/protocol_runner/protocol_runner.py index 9c097bbba2d..69851dea0d0 100644 --- a/api/src/opentrons/protocol_runner/protocol_runner.py +++ b/api/src/opentrons/protocol_runner/protocol_runner.py @@ -10,6 +10,7 @@ from opentrons import protocol_reader from opentrons.legacy_broker import LegacyBroker from opentrons.protocol_api import ParameterContext +from opentrons.protocol_api.core.legacy.load_info import LoadInfo from opentrons.protocol_reader import ( ProtocolSource, JsonProtocolConfig, @@ -28,13 +29,12 @@ from .json_file_reader import JsonFileReader from .json_translator import JsonTranslator from .legacy_context_plugin import LegacyContextPlugin -from .legacy_wrappers import ( +from .python_protocol_wrappers import ( LEGACY_PYTHON_API_VERSION_CUTOFF, LEGACY_JSON_SCHEMA_VERSION_CUTOFF, - LegacyFileReader, - LegacyContextCreator, - LegacyExecutor, - LegacyLoadInfo, + PythonAndLegacyFileReader, + ProtocolContextCreator, + PythonProtocolExecutor, ) from ..protocol_engine.errors import ProtocolCommandFailedError from ..protocol_engine.types import ( @@ -43,6 +43,7 @@ RunTimeParameter, RunTimeParamValuesType, ) +from ..protocols.types import PythonProtocol class RunResult(NamedTuple): @@ -136,21 +137,26 @@ def __init__( protocol_engine: ProtocolEngine, hardware_api: HardwareControlAPI, task_queue: Optional[TaskQueue] = None, - legacy_file_reader: Optional[LegacyFileReader] = None, - legacy_context_creator: Optional[LegacyContextCreator] = None, - legacy_executor: Optional[LegacyExecutor] = None, + python_and_legacy_file_reader: Optional[PythonAndLegacyFileReader] = None, + protocol_context_creator: Optional[ProtocolContextCreator] = None, + python_protocol_executor: Optional[PythonProtocolExecutor] = None, post_run_hardware_state: PostRunHardwareState = PostRunHardwareState.HOME_AND_STAY_ENGAGED, drop_tips_after_run: bool = True, ) -> None: """Initialize the PythonAndLegacyRunner with its dependencies.""" super().__init__(protocol_engine) self._hardware_api = hardware_api - self._legacy_file_reader = legacy_file_reader or LegacyFileReader() - self._legacy_context_creator = legacy_context_creator or LegacyContextCreator( - hardware_api=hardware_api, - protocol_engine=protocol_engine, + self._protocol_file_reader = ( + python_and_legacy_file_reader or PythonAndLegacyFileReader() ) - self._legacy_executor = legacy_executor or LegacyExecutor() + self._protocol_context_creator = ( + protocol_context_creator + or ProtocolContextCreator( + hardware_api=hardware_api, + protocol_engine=protocol_engine, + ) + ) + self._protocol_executor = python_protocol_executor or PythonProtocolExecutor() # TODO(mc, 2022-01-11): replace task queue with specific implementations # of runner interface self._task_queue = task_queue or TaskQueue() @@ -185,14 +191,24 @@ async def load( # fixme(mm, 2022-12-23): This does I/O and compute-bound parsing that will block # the event loop. Jira RSS-165. - protocol = self._legacy_file_reader.read( + protocol = self._protocol_file_reader.read( protocol_source, labware_definitions, python_parse_mode ) - self._parameter_context = ParameterContext(api_version=protocol.api_level) + if isinstance(protocol, PythonProtocol): + self._parameter_context = ParameterContext(api_version=protocol.api_level) + run_time_parameters_with_overrides = ( + self._protocol_executor.extract_run_parameters( + protocol=protocol, + parameter_context=self._parameter_context, + run_time_param_overrides=run_time_param_values, + ) + ) + else: + run_time_parameters_with_overrides = None equipment_broker = None if protocol.api_level < LEGACY_PYTHON_API_VERSION_CUTOFF: - equipment_broker = Broker[LegacyLoadInfo]() + equipment_broker = Broker[LoadInfo]() self._protocol_engine.add_plugin( LegacyContextPlugin( broker=self._broker, equipment_broker=equipment_broker @@ -202,7 +218,7 @@ async def load( else: self._hardware_api.should_taskify_movement_execution(taskify=False) - context = self._legacy_context_creator.create( + context = self._protocol_context_creator.create( protocol=protocol, broker=self._broker, equipment_broker=equipment_broker, @@ -216,11 +232,10 @@ async def run_func() -> None: await self._protocol_engine.add_and_execute_command( request=initial_home_command ) - await self._legacy_executor.execute( + await self._protocol_executor.execute( protocol=protocol, context=context, - parameter_context=self._parameter_context, - run_time_param_values=run_time_param_values, + run_time_parameters_with_overrides=run_time_parameters_with_overrides, ) self._task_queue.set_run_func(run_func) @@ -411,50 +426,43 @@ async def run( # noqa: D102 def create_protocol_runner( - protocol_config: Optional[Union[JsonProtocolConfig, PythonProtocolConfig]], protocol_engine: ProtocolEngine, hardware_api: HardwareControlAPI, + protocol_config: Union[JsonProtocolConfig, PythonProtocolConfig], task_queue: Optional[TaskQueue] = None, json_file_reader: Optional[JsonFileReader] = None, json_translator: Optional[JsonTranslator] = None, - legacy_file_reader: Optional[LegacyFileReader] = None, - legacy_context_creator: Optional[LegacyContextCreator] = None, - legacy_executor: Optional[LegacyExecutor] = None, + python_and_legacy_file_reader: Optional[PythonAndLegacyFileReader] = None, + protocol_context_creator: Optional[ProtocolContextCreator] = None, + python_protocol_executor: Optional[PythonProtocolExecutor] = None, post_run_hardware_state: PostRunHardwareState = PostRunHardwareState.HOME_AND_STAY_ENGAGED, drop_tips_after_run: bool = True, -) -> AnyRunner: +) -> Union[JsonRunner, PythonAndLegacyRunner]: """Create a protocol runner.""" - if protocol_config: - if ( - isinstance(protocol_config, JsonProtocolConfig) - and protocol_config.schema_version >= LEGACY_JSON_SCHEMA_VERSION_CUTOFF - ): - return JsonRunner( - protocol_engine=protocol_engine, - hardware_api=hardware_api, - json_file_reader=json_file_reader, - json_translator=json_translator, - task_queue=task_queue, - post_run_hardware_state=post_run_hardware_state, - drop_tips_after_run=drop_tips_after_run, - ) - else: - return PythonAndLegacyRunner( - protocol_engine=protocol_engine, - hardware_api=hardware_api, - task_queue=task_queue, - legacy_file_reader=legacy_file_reader, - legacy_context_creator=legacy_context_creator, - legacy_executor=legacy_executor, - post_run_hardware_state=post_run_hardware_state, - drop_tips_after_run=drop_tips_after_run, - ) - - return LiveRunner( - protocol_engine=protocol_engine, - hardware_api=hardware_api, - task_queue=task_queue, - ) + if ( + isinstance(protocol_config, JsonProtocolConfig) + and protocol_config.schema_version >= LEGACY_JSON_SCHEMA_VERSION_CUTOFF + ): + return JsonRunner( + protocol_engine=protocol_engine, + hardware_api=hardware_api, + json_file_reader=json_file_reader, + json_translator=json_translator, + task_queue=task_queue, + post_run_hardware_state=post_run_hardware_state, + drop_tips_after_run=drop_tips_after_run, + ) + else: + return PythonAndLegacyRunner( + protocol_engine=protocol_engine, + hardware_api=hardware_api, + task_queue=task_queue, + python_and_legacy_file_reader=python_and_legacy_file_reader, + protocol_context_creator=protocol_context_creator, + python_protocol_executor=python_protocol_executor, + post_run_hardware_state=post_run_hardware_state, + drop_tips_after_run=drop_tips_after_run, + ) async def _yield() -> None: diff --git a/api/src/opentrons/protocol_runner/legacy_wrappers.py b/api/src/opentrons/protocol_runner/python_protocol_wrappers.py similarity index 60% rename from api/src/opentrons/protocol_runner/legacy_wrappers.py rename to api/src/opentrons/protocol_runner/python_protocol_wrappers.py index 9783c877227..4a022ca184f 100644 --- a/api/src/opentrons/protocol_runner/legacy_wrappers.py +++ b/api/src/opentrons/protocol_runner/python_protocol_wrappers.py @@ -1,23 +1,16 @@ -"""Wrappers for the legacy, Protocol API v2 execution pipeline.""" +"""Wrappers for Protocol API v2 execution pipeline.""" import asyncio from typing import Dict, Iterable, Optional, cast from anyio import to_thread from opentrons_shared_data.labware.dev_types import ( - LabwareDefinition as LegacyLabwareDefinition, + LabwareDefinition as LabwareDefinitionTypedDict, ) from opentrons_shared_data.labware.labware_definition import LabwareDefinition from opentrons.calibration_storage.helpers import uri_from_details from opentrons.hardware_control import HardwareControlAPI -from opentrons.hardware_control.modules.types import ( - ModuleModel as LegacyModuleModel, - TemperatureModuleModel as LegacyTemperatureModuleModel, - MagneticModuleModel as LegacyMagneticModuleModel, - ThermocyclerModuleModel as LegacyThermocyclerModuleModel, - HeaterShakerModuleModel as LegacyHeaterShakerModuleModel, -) from opentrons.legacy_broker import LegacyBroker from opentrons.protocol_engine import ProtocolEngine from opentrons.protocol_engine.types import RunTimeParamValuesType @@ -25,32 +18,22 @@ from opentrons.util.broker import Broker from opentrons.protocol_api import ( - ProtocolContext as LegacyProtocolContext, - InstrumentContext as LegacyPipetteContext, - ModuleContext as LegacyModuleContext, - Labware as LegacyLabware, - Well as LegacyWell, + ProtocolContext, ParameterContext, create_protocol_context, + Parameters, ) from opentrons.protocol_api.core.engine import ENGINE_CORE_API_VERSION -from opentrons.protocol_api.core.legacy.load_info import ( - LoadInfo as LegacyLoadInfo, - InstrumentLoadInfo as LegacyInstrumentLoadInfo, - LabwareLoadInfo as LegacyLabwareLoadInfo, - ModuleLoadInfo as LegacyModuleLoadInfo, -) +from opentrons.protocol_api.core.legacy.load_info import LoadInfo from opentrons.protocols.parse import PythonParseMode, parse from opentrons.protocols.execution.execute import run_protocol -from opentrons.protocols.types import ( - Protocol as LegacyProtocol, - JsonProtocol as LegacyJsonProtocol, - PythonProtocol as LegacyPythonProtocol, -) +from opentrons.protocols.execution.execute_python import exec_add_parameters +from opentrons.protocols.types import Protocol, PythonProtocol + # The earliest Python Protocol API version ("apiLevel") where the protocol's simulation -# and execution will be handled by Protocol Engine, rather than the legacy machinery. +# and execution will be handled by Protocol Engine, rather than the previous direct hardware calls from protocol api. # # Note that even when simulation and execution are handled by the legacy machinery, # Protocol Engine still has some involvement for analyzing the simulation and @@ -63,7 +46,7 @@ LEGACY_JSON_SCHEMA_VERSION_CUTOFF = 6 -class LegacyFileReader: +class PythonAndLegacyFileReader: """Interface to read Protocol API v2 protocols prior to execution.""" @staticmethod @@ -71,16 +54,16 @@ def read( protocol_source: ProtocolSource, labware_definitions: Iterable[LabwareDefinition], python_parse_mode: PythonParseMode, - ) -> LegacyProtocol: + ) -> Protocol: """Read a PAPIv2 protocol into a data structure.""" protocol_file_path = protocol_source.main_file protocol_contents = protocol_file_path.read_text(encoding="utf-8") - legacy_labware_definitions: Dict[str, LegacyLabwareDefinition] = { + extra_labware: Dict[str, LabwareDefinitionTypedDict] = { uri_from_details( namespace=lw.namespace, load_name=lw.parameters.loadName, version=lw.version, - ): cast(LegacyLabwareDefinition, lw.dict(exclude_none=True)) + ): cast(LabwareDefinitionTypedDict, lw.dict(exclude_none=True)) for lw in labware_definitions } data_file_paths = [ @@ -92,7 +75,7 @@ def read( return parse( protocol_file=protocol_contents, filename=protocol_file_path.name, - extra_labware=legacy_labware_definitions, + extra_labware=extra_labware, extra_data={ data_path.name: data_path.read_bytes() for data_path in data_file_paths }, @@ -100,9 +83,7 @@ def read( ) -# TODO (spp, 2023-04-05): Remove 'legacy' wording since this is the context we are using -# for all python protocols. -class LegacyContextCreator: +class ProtocolContextCreator: """Interface to construct Protocol API v2 contexts.""" _USE_SIMULATING_CORE = False @@ -125,21 +106,17 @@ def __init__( def create( self, - protocol: LegacyProtocol, + protocol: Protocol, broker: Optional[LegacyBroker], - equipment_broker: Optional[Broker[LegacyLoadInfo]], - ) -> LegacyProtocolContext: + equipment_broker: Optional[Broker[LoadInfo]], + ) -> ProtocolContext: """Create a Protocol API v2 context.""" extra_labware = ( - protocol.extra_labware - if isinstance(protocol, LegacyPythonProtocol) - else None + protocol.extra_labware if isinstance(protocol, PythonProtocol) else None ) bundled_data = ( - protocol.bundled_data - if isinstance(protocol, LegacyPythonProtocol) - else None + protocol.bundled_data if isinstance(protocol, PythonProtocol) else None ) return create_protocol_context( @@ -156,7 +133,7 @@ def create( ) -class LegacySimulatingContextCreator(LegacyContextCreator): +class SimulatingContextCreator(ProtocolContextCreator): """Interface to construct PAPIv2 contexts using simulating implementations. Avoids some calls to the hardware API for performance. @@ -166,43 +143,29 @@ class LegacySimulatingContextCreator(LegacyContextCreator): _USE_SIMULATING_CORE = True -class LegacyExecutor: +class PythonProtocolExecutor: """Interface to execute Protocol API v2 protocols in a child thread.""" @staticmethod async def execute( - protocol: LegacyProtocol, - context: LegacyProtocolContext, - parameter_context: Optional[ParameterContext], - run_time_param_values: Optional[RunTimeParamValuesType], + protocol: Protocol, + context: ProtocolContext, + run_time_parameters_with_overrides: Optional[Parameters], ) -> None: """Execute a PAPIv2 protocol with a given ProtocolContext in a child thread.""" await to_thread.run_sync( - run_protocol, protocol, context, parameter_context, run_time_param_values + run_protocol, protocol, context, run_time_parameters_with_overrides ) - -__all__ = [ - # Re-exports of user-facing Python Protocol APIv2 stuff: - # TODO(mc, 2022-08-22): remove, no longer "legacy", so re-exports unnecessary - "LegacyProtocolContext", - "LegacyLabware", - "LegacyWell", - "LegacyPipetteContext", - "LegacyModuleContext", - # Re-exports of internal stuff: - "LegacyProtocol", - "LegacyJsonProtocol", - "LegacyPythonProtocol", - "LegacyLoadInfo", - "LegacyLabwareLoadInfo", - "LegacyInstrumentLoadInfo", - "LegacyModuleLoadInfo", - "LegacyModuleModel", - "LegacyMagneticModuleModel", - "LegacyTemperatureModuleModel", - "LegacyThermocyclerModuleModel", - "LegacyHeaterShakerModuleModel", - # legacy typed dicts - "LegacyLabwareDefinition", -] + @staticmethod + def extract_run_parameters( + protocol: PythonProtocol, + parameter_context: ParameterContext, + run_time_param_overrides: Optional[RunTimeParamValuesType], + ) -> Optional[Parameters]: + """Extract the parameters defined in the protocol, overridden with values for the run.""" + return exec_add_parameters( + protocol=protocol, + parameter_context=parameter_context, + run_time_param_overrides=run_time_param_overrides, + ) diff --git a/api/src/opentrons/protocol_runner/run_orchestrator.py b/api/src/opentrons/protocol_runner/run_orchestrator.py new file mode 100644 index 00000000000..bbd6088b411 --- /dev/null +++ b/api/src/opentrons/protocol_runner/run_orchestrator.py @@ -0,0 +1,101 @@ +"""Engine/Runner provider.""" +from __future__ import annotations +from typing import Optional, Union + +from . import protocol_runner, AnyRunner +from ..hardware_control import HardwareControlAPI +from ..protocol_engine import ProtocolEngine +from ..protocol_engine.types import PostRunHardwareState +from ..protocol_reader import JsonProtocolConfig, PythonProtocolConfig + + +class RunOrchestrator: + """Provider for runners and associated protocol engine. + + Build runners, manage command execution, run state and in-memory protocol engine associated to the runners. + """ + + _protocol_runner: Optional[ + Union[protocol_runner.JsonRunner, protocol_runner.PythonAndLegacyRunner, None] + ] + _setup_runner: protocol_runner.LiveRunner + _fixit_runner: protocol_runner.LiveRunner + _hardware_api: HardwareControlAPI + _protocol_engine: ProtocolEngine + + def __init__( + self, + protocol_engine: ProtocolEngine, + hardware_api: HardwareControlAPI, + fixit_runner: protocol_runner.LiveRunner, + setup_runner: protocol_runner.LiveRunner, + json_or_python_protocol_runner: Optional[ + Union[protocol_runner.PythonAndLegacyRunner, protocol_runner.JsonRunner] + ] = None, + run_id: Optional[str] = None, + ) -> None: + """Initialize a run orchestrator interface. + + Arguments: + protocol_engine: Protocol engine instance. + hardware_api: Hardware control API instance. + fixit_runner: LiveRunner for fixit commands. + setup_runner: LiveRunner for setup commands. + json_or_python_protocol_runner: JsonRunner/PythonAndLegacyRunner for protocol commands. + run_id: run id if any, associated to the runner/engine. + """ + self.run_id = run_id + self._protocol_engine = protocol_engine + self._hardware_api = hardware_api + self._protocol_runner = json_or_python_protocol_runner + self._setup_runner = setup_runner + self._fixit_runner = fixit_runner + + @property + def engine(self) -> ProtocolEngine: + """Get the "current" persisted ProtocolEngine.""" + return self._protocol_engine + + @property + def runner(self) -> AnyRunner: + """Get the "current" persisted ProtocolRunner.""" + return self._protocol_runner or self._setup_runner + + @classmethod + def build_orchestrator( + cls, + protocol_engine: ProtocolEngine, + hardware_api: HardwareControlAPI, + protocol_config: Optional[ + Union[JsonProtocolConfig, PythonProtocolConfig] + ] = None, + post_run_hardware_state: PostRunHardwareState = PostRunHardwareState.HOME_AND_STAY_ENGAGED, + drop_tips_after_run: bool = True, + run_id: Optional[str] = None, + ) -> "RunOrchestrator": + """Build a RunOrchestrator provider.""" + setup_runner = protocol_runner.LiveRunner( + protocol_engine=protocol_engine, + hardware_api=hardware_api, + ) + fixit_runner = protocol_runner.LiveRunner( + protocol_engine=protocol_engine, + hardware_api=hardware_api, + ) + json_or_python_runner = None + if protocol_config: + json_or_python_runner = protocol_runner.create_protocol_runner( + protocol_config=protocol_config, + protocol_engine=protocol_engine, + hardware_api=hardware_api, + post_run_hardware_state=post_run_hardware_state, + drop_tips_after_run=drop_tips_after_run, + ) + return cls( + run_id=run_id, + json_or_python_protocol_runner=json_or_python_runner, + setup_runner=setup_runner, + fixit_runner=fixit_runner, + hardware_api=hardware_api, + protocol_engine=protocol_engine, + ) diff --git a/api/src/opentrons/protocols/execution/execute.py b/api/src/opentrons/protocols/execution/execute.py index 4619e1ae08d..68bd22470c3 100644 --- a/api/src/opentrons/protocols/execution/execute.py +++ b/api/src/opentrons/protocols/execution/execute.py @@ -1,9 +1,9 @@ import logging from typing import Optional -from opentrons.protocol_api import ProtocolContext, ParameterContext -from opentrons.protocol_engine.types import RunTimeParamValuesType -from opentrons.protocols.execution.execute_python import run_python +from opentrons.protocol_api import ProtocolContext +from opentrons.protocol_api._parameters import Parameters +from opentrons.protocols.execution.execute_python import exec_run from opentrons.protocols.execution.json_dispatchers import ( pipette_command_map, temperature_module_command_map, @@ -21,27 +21,22 @@ def run_protocol( protocol: Protocol, context: ProtocolContext, - parameter_context: Optional[ParameterContext] = None, - run_time_param_overrides: Optional[RunTimeParamValuesType] = None, + run_time_parameters_with_overrides: Optional[Parameters] = None, ) -> None: """Run a protocol. :param protocol: The :py:class:`.protocols.types.Protocol` to execute :param context: The protocol context to use. - :param parameter_context: The parameter context to use. - :param run_time_param_overrides: Any parameter values that are potentially overriding the defaults + :param run_time_parameters_with_overrides: Run time parameters defined in the protocol, + updated with the run's RTP override values. When we are running either simulate + or execute, this will be None (until RTP is supported in cli commands) """ if isinstance(protocol, PythonProtocol): if protocol.api_level >= APIVersion(2, 0): - # If this is None here then we're either running simulate or execute, in any case we don't need to report - # this in analysis which is the reason we'd pass it to this function - if parameter_context is None: - parameter_context = ParameterContext(protocol.api_level) - run_python( + exec_run( proto=protocol, context=context, - parameter_context=parameter_context, - run_time_param_overrides=run_time_param_overrides, + run_time_parameters_with_overrides=run_time_parameters_with_overrides, ) else: raise RuntimeError(f"Unsupported python API version: {protocol.api_level}") diff --git a/api/src/opentrons/protocols/execution/execute_python.py b/api/src/opentrons/protocols/execution/execute_python.py index f33f70d7a4b..5a1e945a5a2 100644 --- a/api/src/opentrons/protocols/execution/execute_python.py +++ b/api/src/opentrons/protocols/execution/execute_python.py @@ -85,34 +85,57 @@ def _parse_and_set_parameters( return parameter_context.export_parameters_for_protocol() -def run_python( - proto: PythonProtocol, - context: ProtocolContext, - parameter_context: ParameterContext, - run_time_param_overrides: Optional[RunTimeParamValuesType] = None, -) -> None: - new_globs: Dict[Any, Any] = {} - exec(proto.contents, new_globs) - # If the protocol is written correctly, it will have defined a function - # like run(context: ProtocolContext). If so, that function is now in the - # current scope. - +def _get_filename( + protocol: PythonProtocol, +) -> str: # TODO(mm, 2023-10-11): This coupling to opentrons.protocols.parse is fragile. # Can we get the correct filename directly from proto.contents? - if proto.filename and proto.filename.endswith("zip"): + if protocol.filename and protocol.filename.endswith("zip"): # The ".zip" extension needs to match what opentrons.protocols.parse recognizes as a bundle, # and the "protocol.ot2.py" fallback needs to match what opentrons.protocol.py sets as the # AST filename. - filename = "protocol.ot2.py" + return "protocol.ot2.py" else: # "" needs to match what opentrons.protocols.parse sets as the fallback # AST filename. - filename = proto.filename or "" + return protocol.filename or "" + - if new_globs.get("add_parameters"): - context._params = _parse_and_set_parameters( - parameter_context, run_time_param_overrides, new_globs, filename +def exec_add_parameters( + protocol: PythonProtocol, + parameter_context: ParameterContext, + run_time_param_overrides: Optional[RunTimeParamValuesType], +) -> Optional[Parameters]: + """Exec the add_parameters function and get the final run time parameters with overrides.""" + new_globs: Dict[Any, Any] = {} + exec(protocol.contents, new_globs) + filename = _get_filename(protocol) + + return ( + _parse_and_set_parameters( + parameter_context=parameter_context, + run_time_param_overrides=run_time_param_overrides, + new_globs=new_globs, + filename=filename, ) + if new_globs.get("add_parameters") + else None + ) + + +def exec_run( + proto: PythonProtocol, + context: ProtocolContext, + run_time_parameters_with_overrides: Optional[Parameters] = None, +) -> None: + new_globs: Dict[Any, Any] = {} + exec(proto.contents, new_globs) + # If the protocol is written correctly, it will have defined a function + # like run(context: ProtocolContext). If so, that function is now in the + # current scope. + filename = _get_filename(proto) + if run_time_parameters_with_overrides: + context._params = run_time_parameters_with_overrides try: _runfunc_ok(new_globs.get("run")) diff --git a/api/src/opentrons/simulate.py b/api/src/opentrons/simulate.py index 9626fa86b96..1d3987360f1 100644 --- a/api/src/opentrons/simulate.py +++ b/api/src/opentrons/simulate.py @@ -874,7 +874,9 @@ def _run_file_non_pe( try: # TODO (spp, 2024-03-18): use true run-time param overrides once enabled # for cli protocol simulation/ execution - execute.run_protocol(protocol, context, run_time_param_overrides=None) + execute.run_protocol( + protocol, context, run_time_parameters_with_overrides=None + ) if ( isinstance(protocol, PythonProtocol) and protocol.api_level >= APIVersion(2, 0) diff --git a/api/src/opentrons/util/change_notifier.py b/api/src/opentrons/util/change_notifier.py new file mode 100644 index 00000000000..e05608cde45 --- /dev/null +++ b/api/src/opentrons/util/change_notifier.py @@ -0,0 +1,47 @@ +"""Simple state change notification interface.""" +import asyncio + + +class ChangeNotifier: + """An interface to emit or subscribe to state change notifications.""" + + def __init__(self) -> None: + """Initialize the ChangeNotifier with an internal Event.""" + self._event = asyncio.Event() + + def notify(self) -> None: + """Notify all `wait`'ers that the state has changed.""" + self._event.set() + + async def wait(self) -> None: + """Wait until the next state change notification.""" + await self._event.wait() + self._event.clear() + + +class ChangeNotifier_ts(ChangeNotifier): + """ChangeNotifier initialized with Event_ts.""" + + def __init__(self) -> None: + """Initialize the ChangeNotifier_Ts with an internal Event_ts.""" + super().__init__() + self._event = Event_ts() + + +class Event_ts(asyncio.Event): + """asyncio.Event with threadsafe methods.""" + + def __init__(self) -> None: + """Initialize Event_ts with the active event_loop or event_loop_policy if not active.""" + super().__init__() + if self._loop is None: + self._loop: asyncio.AbstractEventLoop = asyncio.get_event_loop() + + def set(self) -> None: + """Primarily intended for calling from a thread not responsible for the event loop. + + Calling set() from the event loop thread will actually delay the execution of the set() until the + calling method either yields, awaits, or exits altogether. This is usually fine but might occasionally cause + unexpected behavior. + """ + self._loop.call_soon_threadsafe(super().set) diff --git a/api/tests/opentrons/config/ot3_settings.py b/api/tests/opentrons/config/ot3_settings.py index 3cfa9b7c34c..eb15cb8efe3 100644 --- a/api/tests/opentrons/config/ot3_settings.py +++ b/api/tests/opentrons/config/ot3_settings.py @@ -120,7 +120,6 @@ "liquid_sense": { "starting_mount_height": 80, "max_z_distance": 20, - "min_z_distance": 3, "mount_speed": 10, "plunger_speed": 10, "sensor_threshold_pascals": 17, diff --git a/api/tests/opentrons/data/testosaur_with_rtp.py b/api/tests/opentrons/data/testosaur_with_rtp.py new file mode 100644 index 00000000000..092ecea8dc5 --- /dev/null +++ b/api/tests/opentrons/data/testosaur_with_rtp.py @@ -0,0 +1,44 @@ +from opentrons import protocol_api + +metadata = { + "protocolName": "Testosaur with RTP", + "author": "Opentrons ", + "description": 'A variant on "Dinosaur" for testing with Run time parameters', + "source": "Opentrons Repository", + "apiLevel": "2.18", +} + + +def add_parameters(parameters: protocol_api.ParameterContext) -> None: + parameters.add_int( + display_name="Sample count", + variable_name="sample_count", + default=3, + minimum=1, + maximum=6, + description="How many samples to process.", + ) + parameters.add_str( + display_name="Mount", + variable_name="mount", + choices=[ + {"display_name": "Left Mount", "value": "left"}, + {"display_name": "Right Mount", "value": "right"}, + ], + default="left", + description="What mount to use.", + ) + + +def run(ctx: protocol_api.ProtocolContext) -> None: + tip_rack = ctx.load_labware("opentrons_96_tiprack_300ul", 8) + source = ctx.load_labware("nest_12_reservoir_15ml", 1) + dest = ctx.load_labware("corning_96_wellplate_360ul_flat", 2) + + pipette = ctx.load_instrument("p300_single_gen2", ctx.params.mount, [tip_rack]) # type: ignore[attr-defined] + + for i in range(ctx.params.sample_count): # type: ignore[attr-defined] + pipette.pick_up_tip() + pipette.aspirate(50, source.wells_by_name()["A1"]) + pipette.dispense(50, dest.wells()[i]) + pipette.return_tip() diff --git a/api/tests/opentrons/drivers/absorbance_reader/__init__.py b/api/tests/opentrons/drivers/absorbance_reader/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/api/tests/opentrons/drivers/absorbance_reader/test_driver.py b/api/tests/opentrons/drivers/absorbance_reader/test_driver.py new file mode 100644 index 00000000000..ecda705fa3e --- /dev/null +++ b/api/tests/opentrons/drivers/absorbance_reader/test_driver.py @@ -0,0 +1,168 @@ +from mock import MagicMock +import pytest +import asyncio +from enum import Enum +from concurrent.futures.thread import ThreadPoolExecutor + +from opentrons.drivers.absorbance_reader import ( + AbsorbanceReaderDriver, + AbsorbanceHidInterface, +) +from opentrons.drivers.absorbance_reader.async_byonoy import AsyncByonoy +from opentrons.drivers.types import AbsorbanceReaderLidStatus + + +@pytest.fixture +def mock_interface() -> MagicMock: + return MagicMock(spec=AbsorbanceHidInterface) + + +@pytest.fixture +def mock_device() -> MagicMock: + return MagicMock(spec=AbsorbanceHidInterface.Device) + + +class MockErrorCode(Enum): + BYONOY_ERROR_NO_ERROR = "no_error" + BYONOY_ERROR = "error" + + +@pytest.fixture +async def mock_async_byonoy(mock_interface, mock_device) -> AsyncByonoy: + loop = asyncio.get_running_loop() + return AsyncByonoy( + mock_interface, mock_device, ThreadPoolExecutor(max_workers=1), loop + ) + + +@pytest.fixture +async def driver(mock_async_byonoy: AsyncByonoy) -> AbsorbanceReaderDriver: + return AbsorbanceReaderDriver(mock_async_byonoy) + + +@pytest.fixture +async def connected_driver(driver: AbsorbanceReaderDriver) -> AbsorbanceReaderDriver: + driver._connection._device_handle = 1 + return driver + + +async def test_driver_connect_disconnect( + mock_interface: MagicMock, + driver: AbsorbanceReaderDriver, +) -> None: + mock_interface.byonoy_open_device.return_value = ( + MockErrorCode.BYONOY_ERROR_NO_ERROR, + 1, + ) + + assert not await driver.is_connected() + await driver.connect() + + mock_interface.byonoy_open_device.assert_called_once() + assert await driver.is_connected() + assert driver._connection.verify_device_handle() + assert driver._connection._device_handle == 1 + + mock_interface.byonoy_free_device.return_value = MockErrorCode.BYONOY_ERROR_NO_ERROR + await driver.disconnect() + + assert not await driver.is_connected() + assert driver._connection._device_handle is None + + +async def test_driver_get_device_info( + mock_interface: MagicMock, + connected_driver: AbsorbanceReaderDriver, +) -> None: + + DEVICE_INFO = MagicMock(AbsorbanceHidInterface.DeviceInfo) + DEVICE_INFO.ref_no = "456" + DEVICE_INFO.sn = "123" + DEVICE_INFO.version = "1.0" + + mock_interface.byonoy_get_device_information.return_value = ( + MockErrorCode.BYONOY_ERROR_NO_ERROR, + DEVICE_INFO, + ) + + info = await connected_driver.get_device_info() + + mock_interface.byonoy_get_device_information.assert_called_once() + assert info == {"serial_number": "123", "reference_number": "456", "version": "1.0"} + + +@pytest.mark.parametrize( + "parts_aligned, module_status", + [(True, AbsorbanceReaderLidStatus.ON), (False, AbsorbanceReaderLidStatus.OFF)], +) +async def test_driver_get_lid_status( + mock_interface: MagicMock, + connected_driver: AbsorbanceReaderDriver, + parts_aligned: bool, + module_status: AbsorbanceReaderLidStatus, +) -> None: + + mock_interface.byonoy_get_device_parts_aligned.return_value = ( + MockErrorCode.BYONOY_ERROR_NO_ERROR, + parts_aligned, + ) + + status = await connected_driver.get_lid_status() + + mock_interface.byonoy_get_device_parts_aligned.assert_called_once() + assert status == module_status + + +async def test_driver_get_supported_wavelengths( + mock_interface: MagicMock, + connected_driver: AbsorbanceReaderDriver, +) -> None: + SUPPORTED_WAVELENGTHS = [450, 500] + mock_interface.byonoy_abs96_get_available_wavelengths.return_value = ( + MockErrorCode.BYONOY_ERROR_NO_ERROR, + SUPPORTED_WAVELENGTHS, + ) + + assert not connected_driver._connection._supported_wavelengths + + wavelengths = await connected_driver.get_available_wavelengths() + + mock_interface.byonoy_abs96_get_available_wavelengths.assert_called_once() + assert connected_driver._connection._supported_wavelengths == SUPPORTED_WAVELENGTHS + assert wavelengths == SUPPORTED_WAVELENGTHS + + +async def test_driver_initialize_and_read( + mock_interface: MagicMock, + connected_driver: AbsorbanceReaderDriver, +) -> None: + # set up mock interface + connected_driver._connection._supported_wavelengths = [450, 500] + mock_interface.byonoy_abs96_initialize_single_measurement.return_value = ( + MockErrorCode.BYONOY_ERROR_NO_ERROR + ) + mock_interface.ByonoyAbs96SingleMeasurementConfig = MagicMock( + spec=AbsorbanceHidInterface.MeasurementConfig + ) + + # current config should not have been setup yet + assert not connected_driver._connection._current_config + await connected_driver.initialize_measurement(450) + + conf = connected_driver._connection._current_config + assert conf and conf.sample_wavelength == 450 + mock_interface.byonoy_abs96_initialize_single_measurement.assert_called_once_with( + 1, conf + ) + + # setup up mock interface + MEASURE_RESULT = [0.1] * 96 + mock_interface.byonoy_abs96_single_measure.return_value = ( + MockErrorCode.BYONOY_ERROR_NO_ERROR, + MEASURE_RESULT, + ) + + result = await connected_driver.get_single_measurement(450) + mock_interface.byonoy_abs96_single_measure.assert_called_once_with(1, conf) + + assert result == MEASURE_RESULT diff --git a/api/tests/opentrons/hardware_control/backends/test_ot3_controller.py b/api/tests/opentrons/hardware_control/backends/test_ot3_controller.py index ed639444b3d..b57a4b2ab4b 100644 --- a/api/tests/opentrons/hardware_control/backends/test_ot3_controller.py +++ b/api/tests/opentrons/hardware_control/backends/test_ot3_controller.py @@ -95,6 +95,7 @@ EStopNotPresentError, FirmwareUpdateRequiredError, FailedGripperPickupError, + LiquidNotFoundError, ) from opentrons_hardware.hardware_control.move_group_runner import MoveGroupRunner @@ -177,7 +178,6 @@ def fake_liquid_settings() -> LiquidProbeSettings: return LiquidProbeSettings( starting_mount_height=100, max_z_distance=15, - min_z_distance=5, mount_speed=40, plunger_speed=10, sensor_threshold_pascals=15, @@ -715,14 +715,19 @@ async def test_liquid_probe( mock_move_group_run: mock.AsyncMock, mock_send_stop_threshold: mock.AsyncMock, ) -> None: - await controller.liquid_probe( - mount=mount, - max_z_distance=fake_liquid_settings.max_z_distance, - mount_speed=fake_liquid_settings.mount_speed, - plunger_speed=fake_liquid_settings.plunger_speed, - threshold_pascals=fake_liquid_settings.sensor_threshold_pascals, - output_option=fake_liquid_settings.output_option, - ) + try: + await controller.liquid_probe( + mount=mount, + max_z_distance=fake_liquid_settings.max_z_distance, + mount_speed=fake_liquid_settings.mount_speed, + plunger_speed=fake_liquid_settings.plunger_speed, + threshold_pascals=fake_liquid_settings.sensor_threshold_pascals, + output_option=fake_liquid_settings.output_option, + ) + except LiquidNotFoundError: + # the move raises a liquid not found now since we don't call the move group and it doesn't + # get any positions back + pass move_groups = (mock_move_group_run.call_args_list[0][0][0]._move_groups)[0][0] head_node = axis_to_node(Axis.by_mount(mount)) tool_node = sensor_node_for_mount(mount) diff --git a/api/tests/opentrons/hardware_control/backends/test_ot3_subsystem_manager.py b/api/tests/opentrons/hardware_control/backends/test_ot3_subsystem_manager.py index 86c2d70459b..a7690fde28a 100644 --- a/api/tests/opentrons/hardware_control/backends/test_ot3_subsystem_manager.py +++ b/api/tests/opentrons/hardware_control/backends/test_ot3_subsystem_manager.py @@ -227,10 +227,10 @@ def _pipette_info_from_network( else default_name ) return tools.types.PipetteInformation( - pipette_name, - pipette_name.value, - pipette_name.name, - f"dummyserial{pipette_name.name}", + name=pipette_name, + name_int=pipette_name.value, + model=pipette_name.name, + serial=f"dummyserial{pipette_name.name}", ) def _auto_tool_summary( diff --git a/api/tests/opentrons/hardware_control/backends/test_ot3_utils.py b/api/tests/opentrons/hardware_control/backends/test_ot3_utils.py index efdd64392d1..0d081878dd1 100644 --- a/api/tests/opentrons/hardware_control/backends/test_ot3_utils.py +++ b/api/tests/opentrons/hardware_control/backends/test_ot3_utils.py @@ -1,3 +1,5 @@ +import pytest +from typing import List from opentrons_hardware.hardware_control.motion_planning import Move from opentrons_hardware.hardware_control.motion import ( create_step, @@ -119,3 +121,48 @@ def test_get_system_contraints_for_plunger() -> None: ) assert updated_contraints[axis].max_acceleration == set_acceleration + + +@pytest.mark.parametrize( + ["moving", "expected"], + [ + [ + [NodeId.gantry_x, NodeId.gantry_y, NodeId.gripper_g, NodeId.gripper_z], + [], + ], + [ + [NodeId.head_l], + [NodeId.pipette_left], + ], + [ + [NodeId.head_r], + [NodeId.pipette_right], + ], + ], +) +def test_moving_pipettes_in_move_group( + moving: List[NodeId], expected: List[NodeId] +) -> None: + """Test that we can filter out the nonmoving nodes.""" + present_nodes = [ + NodeId.gantry_x, + NodeId.gantry_y, + NodeId.head_l, + NodeId.head_r, + NodeId.pipette_left, + NodeId.pipette_right, + NodeId.gripper_g, + NodeId.gripper_z, + ] + move_group = [ + create_step( + distance={node: f64(100) for node in moving}, + velocity={node: f64(100) for node in moving}, + acceleration={node: f64(0) for node in moving}, + duration=f64(1), + present_nodes=present_nodes, + ) + ] + + moving_pipettes = ot3utils.moving_pipettes_in_move_group(move_group) + assert set(moving_pipettes) == set(expected) diff --git a/api/tests/opentrons/hardware_control/test_module_control.py b/api/tests/opentrons/hardware_control/test_module_control.py index 36fd6cb1793..e37aa3c45d7 100644 --- a/api/tests/opentrons/hardware_control/test_module_control.py +++ b/api/tests/opentrons/hardware_control/test_module_control.py @@ -66,7 +66,10 @@ def subject( ( [ SimulatingModuleAtPort( - port="/dev/foo", name="bar", serial_number="test-123" + port="/dev/foo", + name="bar", + serial_number="test-123", + model="mymodel", ) ] ), @@ -101,6 +104,7 @@ async def test_register_modules( usb_port=USBPort(name="baz", port_number=0), type=ModuleType.TEMPERATURE, sim_serial_number=None, + sim_model=None, ) ).then_return(module) @@ -151,6 +155,7 @@ async def test_register_modules_sort( port=matchers.Anything(), type=matchers.Anything(), sim_serial_number=None, + sim_model=None, ) ).then_return(mod) diff --git a/api/tests/opentrons/hardware_control/test_modules.py b/api/tests/opentrons/hardware_control/test_modules.py index eb3d0e48c6c..a23d6096873 100644 --- a/api/tests/opentrons/hardware_control/test_modules.py +++ b/api/tests/opentrons/hardware_control/test_modules.py @@ -1,9 +1,10 @@ import asyncio -import pytest - +from typing import AsyncIterator, Union, Type, TypeVar, Optional from pathlib import Path from unittest import mock + from packaging.version import Version +import pytest from opentrons.hardware_control import ExecutionManager from opentrons.hardware_control.modules import ModuleAtPort @@ -22,19 +23,27 @@ Thermocycler, HeaterShaker, AbstractModule, + SimulatingModule, + build as build_module, ) from opentrons.hardware_control.modules.mod_abc import parse_fw_version from opentrons.drivers.rpi_drivers.types import USBPort -async def test_get_modules_simulating(): +async def test_get_modules_simulating() -> None: import opentrons.hardware_control as hardware_control mods = { - "tempdeck": ["111"], - "magdeck": ["222"], - "thermocycler": ["333"], - "heatershaker": ["444"], + "tempdeck": [ + SimulatingModule(serial_number="111", model="temperatureModuleV1") + ], + "magdeck": [SimulatingModule(serial_number="222", model="magneticModuleV2")], + "thermocycler": [ + SimulatingModule(serial_number="333", model="thermocyclerModuleV1") + ], + "heatershaker": [ + SimulatingModule(serial_number="444", model="heaterShakerModuleV1") + ], } api = await hardware_control.API.build_hardware_simulator(attached_modules=mods) await asyncio.sleep(0.05) @@ -44,10 +53,12 @@ async def test_get_modules_simulating(): await m.cleanup() -async def test_module_caching(): +async def test_module_caching() -> None: import opentrons.hardware_control as hardware_control - mod_names = {"tempdeck": ["111"]} + mod_names = { + "tempdeck": [SimulatingModule(serial_number="111", model="temperatureModuleV1")] + } api = await hardware_control.API.build_hardware_simulator( attached_modules=mod_names ) @@ -97,7 +108,9 @@ async def test_module_caching(): ) async def test_create_simulating_module( module_model: ModuleModel, - expected_sim_type: AbstractModule, + expected_sim_type: Union[ + Type[MagDeck], Type[TempDeck], Type[Thermocycler], Type[HeaterShaker] + ], ) -> None: """It should create simulating module instance for specified module.""" import opentrons.hardware_control as hardware_control @@ -112,17 +125,16 @@ async def test_create_simulating_module( @pytest.fixture -async def mod_tempdeck(): - from opentrons.hardware_control import modules +async def mod_tempdeck() -> AsyncIterator[AbstractModule]: usb_port = USBPort( name="", - hub=None, + hub=False, port_number=0, device_path="/dev/ot_module_sim_tempdeck0", ) - tempdeck = await modules.build( + tempdeck = await build_module( port="/dev/ot_module_sim_tempdeck0", usb_port=usb_port, type=ModuleType.TEMPERATURE, @@ -136,17 +148,15 @@ async def mod_tempdeck(): @pytest.fixture -async def mod_magdeck(): - from opentrons.hardware_control import modules - +async def mod_magdeck() -> AsyncIterator[AbstractModule]: usb_port = USBPort( name="", - hub=None, + hub=False, port_number=0, device_path="/dev/ot_module_sim_magdeck0", ) - magdeck = await modules.build( + magdeck = await build_module( port="/dev/ot_module_sim_magdeck0", usb_port=usb_port, type=ModuleType.MAGNETIC, @@ -159,17 +169,15 @@ async def mod_magdeck(): @pytest.fixture -async def mod_thermocycler(): - from opentrons.hardware_control import modules - +async def mod_thermocycler() -> AsyncIterator[AbstractModule]: usb_port = USBPort( name="", - hub=None, + hub=False, port_number=0, device_path="/dev/ot_module_sim_thermocycler0", ) - thermocycler = await modules.build( + thermocycler = await build_module( port="/dev/ot_module_sim_thermocycler0", usb_port=usb_port, type=ModuleType.THERMOCYCLER, @@ -182,17 +190,15 @@ async def mod_thermocycler(): @pytest.fixture -async def mod_thermocycler_gen2(): - from opentrons.hardware_control import modules - +async def mod_thermocycler_gen2() -> AsyncIterator[AbstractModule]: usb_port = USBPort( name="", - hub=None, + hub=False, port_number=0, device_path="/dev/ot_module_sim_thermocycler0", ) - thermocycler = await modules.build( + thermocycler = await build_module( port="/dev/ot_module_sim_thermocycler0", usb_port=usb_port, type=ModuleType.THERMOCYCLER, @@ -206,17 +212,15 @@ async def mod_thermocycler_gen2(): @pytest.fixture -async def mod_heatershaker(): - from opentrons.hardware_control import modules - +async def mod_heatershaker() -> AsyncIterator[AbstractModule]: usb_port = USBPort( name="", - hub=None, + hub=False, port_number=0, device_path="/dev/ot_module_sim_heatershaker0", ) - heatershaker = await modules.build( + heatershaker = await build_module( port="/dev/ot_module_sim_heatershaker0", usb_port=usb_port, type=ModuleType.HEATER_SHAKER, @@ -229,17 +233,19 @@ async def mod_heatershaker(): async def test_module_update_integration( - monkeypatch, - mod_tempdeck, - mod_magdeck, - mod_thermocycler, - mod_heatershaker, - mod_thermocycler_gen2, -): + monkeypatch: pytest.MonkeyPatch, + mod_tempdeck: AbstractModule, + mod_magdeck: AbstractModule, + mod_thermocycler: AbstractModule, + mod_heatershaker: AbstractModule, + mod_thermocycler_gen2: AbstractModule, +) -> None: from opentrons.hardware_control import modules - def async_return(result): - f = asyncio.Future() + T = TypeVar("T") + + def async_return(result: T) -> "asyncio.Future[T]": + f: "asyncio.Future[T]" = asyncio.Future() f.set_result(result) return f @@ -253,7 +259,7 @@ def async_return(result): ) monkeypatch.setattr(modules.update, "upload_via_avrdude", upload_via_avrdude_mock) - async def mock_find_avrdude_bootloader_port(): + async def mock_find_avrdude_bootloader_port() -> str: return "ot_module_avrdude_bootloader1" monkeypatch.setattr( @@ -279,7 +285,7 @@ async def mock_find_avrdude_bootloader_port(): ) monkeypatch.setattr(modules.update, "upload_via_bossa", upload_via_bossa_mock) - async def mock_find_bossa_bootloader_port(): + async def mock_find_bossa_bootloader_port() -> str: return "ot_module_bossa_bootloader1" monkeypatch.setattr( @@ -297,7 +303,7 @@ async def mock_find_bossa_bootloader_port(): ) monkeypatch.setattr(modules.update, "upload_via_dfu", upload_via_dfu_mock) - async def mock_find_dfu_device_hs(pid: str, expected_device_count: int): + async def mock_find_dfu_device_hs(pid: str, expected_device_count: int) -> str: if expected_device_count == 2: return "df11" return "none" @@ -310,7 +316,7 @@ async def mock_find_dfu_device_hs(pid: str, expected_device_count: int): ) upload_via_dfu_mock.reset_mock() - async def mock_find_dfu_device_tc2(pid: str, expected_device_count: int): + async def mock_find_dfu_device_tc2(pid: str, expected_device_count: int) -> str: if expected_device_count == 3: return "df11" return "none" @@ -325,7 +331,7 @@ async def mock_find_dfu_device_tc2(pid: str, expected_device_count: int): mod_thermocycler_gen2 -async def test_get_bundled_fw(monkeypatch, tmpdir): +async def test_get_bundled_fw(monkeypatch: pytest.MonkeyPatch, tmpdir: Path) -> None: from opentrons.hardware_control import modules dummy_td_file = Path(tmpdir) / "temperature-module@v1.2.3.hex" @@ -349,10 +355,16 @@ async def test_get_bundled_fw(monkeypatch, tmpdir): from opentrons.hardware_control import API mods = { - "tempdeck": ["111"], - "magdeck": ["222"], - "thermocycler": ["333"], - "heatershaker": ["444"], + "tempdeck": [ + SimulatingModule(serial_number="111", model="temperatureModuleV1") + ], + "magdeck": [SimulatingModule(serial_number="222", model="magneticModuleV2")], + "thermocycler": [ + SimulatingModule(serial_number="333", model="thermocyclerModuleV1") + ], + "heatershaker": [ + SimulatingModule(serial_number="444", model="heaterShakerModuleV1") + ], } api = await API.build_hardware_simulator(attached_modules=mods) @@ -375,8 +387,11 @@ async def test_get_bundled_fw(monkeypatch, tmpdir): async def test_get_thermocycler_bundled_fw( - mod_thermocycler, mod_thermocycler_gen2, monkeypatch, tmpdir -): + mod_thermocycler: AbstractModule, + mod_thermocycler_gen2: AbstractModule, + monkeypatch: pytest.MonkeyPatch, + tmpdir: Path, +) -> None: from opentrons.hardware_control import modules dummy_tc_file = Path(tmpdir) / "thermocycler@v0.1.2.bin" @@ -405,7 +420,7 @@ async def test_get_thermocycler_bundled_fw( (None, "magneticModuleV1"), ], ) -def test_magnetic_module_revision_parsing(revision, model): +def test_magnetic_module_revision_parsing(revision: Optional[str], model: str) -> None: assert MagDeck._model_from_revision(revision) == model @@ -422,7 +437,9 @@ def test_magnetic_module_revision_parsing(revision, model): (None, "temperatureModuleV1"), ], ) -def test_temperature_module_revision_parsing(revision, model): +def test_temperature_module_revision_parsing( + revision: Optional[str], model: str +) -> None: assert TempDeck._model_from_revision(revision) == model diff --git a/api/tests/opentrons/hardware_control/test_ot3_api.py b/api/tests/opentrons/hardware_control/test_ot3_api.py index 7ab0a2f1c00..7a57978bc14 100644 --- a/api/tests/opentrons/hardware_control/test_ot3_api.py +++ b/api/tests/opentrons/hardware_control/test_ot3_api.py @@ -115,7 +115,6 @@ def fake_liquid_settings() -> LiquidProbeSettings: return LiquidProbeSettings( starting_mount_height=100, max_z_distance=15, - min_z_distance=10, mount_speed=40, plunger_speed=10, sensor_threshold_pascals=15, @@ -776,12 +775,19 @@ async def test_liquid_probe( pipette_node: Axis, mount: OT3Mount, fake_liquid_settings: LiquidProbeSettings, - mock_instrument_handlers: Tuple[MagicMock], mock_current_position_ot3: AsyncMock, - mock_ungrip: AsyncMock, mock_move_to_plunger_bottom: AsyncMock, ) -> None: - mock_ungrip.return_value = None + instr_data = AttachedPipette( + config=load_pipette_data.load_definition( + PipetteModelType("p1000"), PipetteChannelType(1), PipetteVersionType(3, 4) + ), + id="fakepip", + ) + await ot3_hardware.cache_pipette(mount, instr_data, None) + pipette = ot3_hardware.hardware_pipettes[mount.to_mount()] + assert pipette + await ot3_hardware.add_tip(mount, 100) await ot3_hardware.home() mock_move_to.return_value = None @@ -800,7 +806,6 @@ async def test_liquid_probe( fake_settings_aspirate = LiquidProbeSettings( starting_mount_height=100, max_z_distance=15, - min_z_distance=5, mount_speed=40, plunger_speed=10, sensor_threshold_pascals=15, diff --git a/api/tests/opentrons/hardware_control/test_simulator_setup.py b/api/tests/opentrons/hardware_control/test_simulator_setup.py index 2507a9969b3..63dca593bff 100644 --- a/api/tests/opentrons/hardware_control/test_simulator_setup.py +++ b/api/tests/opentrons/hardware_control/test_simulator_setup.py @@ -58,10 +58,12 @@ async def test_with_magdeck(setup_klass: Type[simulator_setup.SimulatorSetup]) - attached_modules={ "magdeck": [ simulator_setup.ModuleItem( + model="magneticModuleV1", serial_number="123", calls=[simulator_setup.ModuleCall("engage", kwargs={"height": 3})], ), simulator_setup.ModuleItem( + model="magneticModuleV2", serial_number="1234", calls=[simulator_setup.ModuleCall("engage", kwargs={"height": 5})], ), @@ -71,11 +73,13 @@ async def test_with_magdeck(setup_klass: Type[simulator_setup.SimulatorSetup]) - simulator = await simulator_setup.create_simulator(setup) assert isinstance(simulator.attached_modules[0], MagDeck) + assert simulator.attached_modules[0].model() == "magneticModuleV1" assert simulator.attached_modules[0].live_data == { "data": {"engaged": True, "height": 3}, "status": "engaged", } assert simulator.attached_modules[0].device_info["serial"] == "123" + assert simulator.attached_modules[1].model() == "magneticModuleV2" assert simulator.attached_modules[1].live_data == { "data": {"engaged": True, "height": 5}, "status": "engaged", @@ -91,6 +95,7 @@ async def test_with_thermocycler( attached_modules={ "thermocycler": [ simulator_setup.ModuleItem( + model="thermocyclerModuleV2", serial_number="123", calls=[ simulator_setup.ModuleCall( @@ -110,6 +115,7 @@ async def test_with_thermocycler( simulator = await simulator_setup.create_simulator(setup) assert isinstance(simulator.attached_modules[0], Thermocycler) + assert simulator.attached_modules[0].model() == "thermocyclerModuleV2" assert simulator.attached_modules[0].live_data == { "data": { "currentCycleIndex": None, @@ -136,6 +142,7 @@ async def test_with_tempdeck(setup_klass: Type[simulator_setup.SimulatorSetup]) attached_modules={ "tempdeck": [ simulator_setup.ModuleItem( + model="temperatureModuleV2", serial_number="123", calls=[ simulator_setup.ModuleCall( @@ -152,6 +159,7 @@ async def test_with_tempdeck(setup_klass: Type[simulator_setup.SimulatorSetup]) simulator = await simulator_setup.create_simulator(setup) assert isinstance(simulator.attached_modules[0], TempDeck) + assert simulator.attached_modules[0].model() == "temperatureModuleV2" assert simulator.attached_modules[0].live_data == { "data": {"currentTemp": 23, "targetTemp": 23}, "status": "holding at target", @@ -168,12 +176,14 @@ def test_persistence_ot2(tmpdir: str) -> None: attached_modules={ "magdeck": [ simulator_setup.ModuleItem( + model="magneticModuleV1", serial_number="111", calls=[simulator_setup.ModuleCall("engage", kwargs={"height": 3})], ) ], "tempdeck": [ simulator_setup.ModuleItem( + model="temperatureModuleV2", serial_number="111", calls=[ simulator_setup.ModuleCall( @@ -205,6 +215,7 @@ def test_persistence_ot3(tmpdir: str) -> None: attached_modules={ "magdeck": [ simulator_setup.ModuleItem( + model="magneticModuleV2", serial_number="mag-1", calls=[ simulator_setup.ModuleCall( @@ -216,6 +227,7 @@ def test_persistence_ot3(tmpdir: str) -> None: ], "tempdeck": [ simulator_setup.ModuleItem( + model="temperatureModuleV2", serial_number="temp-1", calls=[ simulator_setup.ModuleCall( @@ -229,6 +241,7 @@ def test_persistence_ot3(tmpdir: str) -> None: ], ), simulator_setup.ModuleItem( + model="temperatureModuleV1", serial_number="temp-2", calls=[ simulator_setup.ModuleCall( diff --git a/api/tests/opentrons/hardware_control/test_thread_manager.py b/api/tests/opentrons/hardware_control/test_thread_manager.py index 193740b4d75..db962c5b51b 100644 --- a/api/tests/opentrons/hardware_control/test_thread_manager.py +++ b/api/tests/opentrons/hardware_control/test_thread_manager.py @@ -1,10 +1,11 @@ import asyncio import weakref -from typing import Any +from typing import NoReturn, Optional +import threading import pytest -from opentrons.hardware_control.modules import ModuleAtPort +from opentrons.hardware_control.modules import ModuleAtPort, SimulatingModule from opentrons.hardware_control.thread_manager import ( ThreadManagerException, ThreadManager, @@ -12,11 +13,11 @@ from opentrons.hardware_control.api import API -async def _raise_exception() -> Any: +async def _raise_exception() -> NoReturn: raise Exception("oh no") -def test_build_fail_raises_exception(): +def test_build_fail_raises_exception() -> None: """ Test that a builder that raises an exception raises a ThreadManagerException @@ -25,10 +26,12 @@ def test_build_fail_raises_exception(): ThreadManager(_raise_exception) -def test_module_cache_add_entry(): +def test_module_cache_add_entry() -> None: """Test that _cached_modules updates correctly.""" - mod_names = {"tempdeck": ["111"]} + mod_names = { + "tempdeck": [SimulatingModule(serial_number="111", model="temperatureModuleV2")] + } thread_manager = ThreadManager( API.build_hardware_simulator, attached_modules=mod_names ) @@ -47,9 +50,14 @@ def test_module_cache_add_entry(): assert mods == mods2 -async def test_module_cache_remove_entry(): +async def test_module_cache_remove_entry() -> None: """Test that module entry gets removed from cache when module detaches.""" - mod_names = {"tempdeck": ["111"], "magdeck": ["222"]} + mod_names = { + "tempdeck": [ + SimulatingModule(serial_number="111", model="temperatureModuleV2") + ], + "magdeck": [SimulatingModule(serial_number="222", model="magneticModuleV1")], + } thread_manager = ThreadManager( API.build_hardware_simulator, attached_modules=mod_names ) @@ -57,7 +65,8 @@ async def test_module_cache_remove_entry(): mods_before = thread_manager.attached_modules assert len(mods_before) == 2 - loop: asyncio.AbstractEventLoop = thread_manager._loop + loop = thread_manager._loop + assert loop # The coroutine must be called using the threadmanager's loop. future = asyncio.run_coroutine_threadsafe( @@ -73,7 +82,51 @@ async def test_module_cache_remove_entry(): assert len(mods_after) == 1 -async def test_wraps_instance(): +async def test_wraps_instance() -> None: """It should expose the underlying type.""" thread_manager = ThreadManager(API.build_hardware_simulator) assert thread_manager.wraps_instance(API) + + +class Blocker: + """Test object for nonblocking construction.""" + + @classmethod + async def build_blocking( + cls, + wait_event: asyncio.Event, + running_event: threading.Event, + loop: Optional[asyncio.AbstractEventLoop] = None, + ) -> "Blocker": + """Build an instance.""" + inst = cls(loop) + running_event.set() + await wait_event.wait() + return inst + + def __init__(self, loop: Optional[asyncio.AbstractEventLoop] = None) -> None: + """Initialize an instance.""" + self._loop = loop + + async def clean_up(self) -> None: + """Allows cleanup.""" + pass + + +def test_nonblocking_via_attr() -> None: + """Its init should return immediately if the builder has a nonblocking attribute.""" + + wait_event = asyncio.Event() + running_event = threading.Event() + thread_manager = ThreadManager( # type: ignore[type-var] + ThreadManager.nonblocking_builder(Blocker.build_blocking), + running_event=running_event, + wait_event=wait_event, + ) + + running_event.wait() + assert not thread_manager._is_running.is_set() + assert thread_manager._loop + thread_manager._loop.call_soon_threadsafe(wait_event.set) + thread_manager.managed_thread_ready_blocking() + thread_manager.clean_up() diff --git a/api/tests/opentrons/protocol_api_old/test_context.py b/api/tests/opentrons/protocol_api_old/test_context.py index c356c477f7f..f2406500e6a 100644 --- a/api/tests/opentrons/protocol_api_old/test_context.py +++ b/api/tests/opentrons/protocol_api_old/test_context.py @@ -21,6 +21,7 @@ from opentrons.hardware_control import API, ThreadManagedHardware from opentrons.hardware_control.instruments.ot2.pipette import Pipette from opentrons.hardware_control.types import Axis +from opentrons.hardware_control.modules import SimulatingModule from opentrons.protocols.advanced_control import transfers as tf from opentrons.protocols.api_support import instrument as instrument_support from opentrons.protocols.api_support.types import APIVersion @@ -959,7 +960,15 @@ def test_order_of_module_load(): import opentrons.hardware_control as hardware_control import opentrons.protocol_api as protocol_api - mods = {"tempdeck": ["111", "333"], "thermocycler": ["222"]} + mods = { + "tempdeck": [ + SimulatingModule(serial_number="111", model="temperatureModuleV1"), + SimulatingModule(serial_number="333", model="temperatureModuleV2"), + ], + "thermocycler": [ + SimulatingModule(serial_number="222", model="thermocyclerModuleV2") + ], + } thread_manager = hardware_control.ThreadManager( hardware_control.API.build_hardware_simulator, attached_modules=mods ) diff --git a/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_gripper.py b/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_gripper.py index 895bd7e3665..6ecf768c4eb 100644 --- a/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_gripper.py +++ b/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_gripper.py @@ -26,6 +26,7 @@ CalibrateGripperParams, CalibrateGripperParamsJaw, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.errors import HardwareNotSupportedError from opentrons.protocol_engine.types import Vec3f @@ -69,7 +70,10 @@ async def test_calibrate_gripper( ).then_return(Point(1.1, 2.2, 3.3)) result = await subject.execute(params) - assert result == CalibrateGripperResult(jawOffset=Vec3f(x=1.1, y=2.2, z=3.3)) + assert result == SuccessData( + public=CalibrateGripperResult(jawOffset=Vec3f(x=1.1, y=2.2, z=3.3)), + private=None, + ) @pytest.mark.ot3_only @@ -101,8 +105,8 @@ async def test_calibrate_gripper_saves_calibration( ) ).then_return(expected_calibration_data) result = await subject.execute(params) - assert result.jawOffset == Vec3f(x=1.1, y=2.2, z=3.3) - assert result.savedCalibration == expected_calibration_data + assert result.public.jawOffset == Vec3f(x=1.1, y=2.2, z=3.3) + assert result.public.savedCalibration == expected_calibration_data @pytest.mark.ot3_only diff --git a/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_module.py b/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_module.py index a7821bd80e0..0226453c72e 100644 --- a/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_module.py +++ b/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_module.py @@ -12,6 +12,7 @@ CalibrateModuleImplementation, CalibrateModuleParams, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.errors.exceptions import HardwareNotSupportedError from opentrons.protocol_engine.state.state import StateView from opentrons.protocol_engine.types import ( @@ -85,13 +86,16 @@ async def test_calibrate_module_implementation( result = await subject.execute(params) - assert result == CalibrateModuleResult( - moduleOffset=ModuleOffsetVector( - x=3, - y=4, - z=6, + assert result == SuccessData( + public=CalibrateModuleResult( + moduleOffset=ModuleOffsetVector( + x=3, + y=4, + z=6, + ), + location=location, ), - location=location, + private=None, ) diff --git a/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_pipette.py b/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_pipette.py index 65545c24f51..ba949f0e2df 100644 --- a/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_pipette.py +++ b/api/tests/opentrons/protocol_engine/commands/calibration/test_calibrate_pipette.py @@ -11,6 +11,7 @@ CalibratePipetteImplementation, CalibratePipetteParams, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.errors.exceptions import HardwareNotSupportedError from opentrons.protocol_engine.types import InstrumentOffsetVector @@ -59,8 +60,11 @@ async def test_calibrate_pipette_implementation( times=1, ) - assert result == CalibratePipetteResult( - pipetteOffset=InstrumentOffsetVector(x=3, y=4, z=6) + assert result == SuccessData( + public=CalibratePipetteResult( + pipetteOffset=InstrumentOffsetVector(x=3, y=4, z=6) + ), + private=None, ) diff --git a/api/tests/opentrons/protocol_engine/commands/calibration/test_move_to_maintenance_position.py b/api/tests/opentrons/protocol_engine/commands/calibration/test_move_to_maintenance_position.py index df58ab7dbc0..dd057d1cf8a 100644 --- a/api/tests/opentrons/protocol_engine/commands/calibration/test_move_to_maintenance_position.py +++ b/api/tests/opentrons/protocol_engine/commands/calibration/test_move_to_maintenance_position.py @@ -5,12 +5,14 @@ import pytest from decoy import Decoy + from opentrons.protocol_engine.commands.calibration.move_to_maintenance_position import ( MoveToMaintenancePositionParams, MoveToMaintenancePositionImplementation, MoveToMaintenancePositionResult, MaintenancePosition, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.state import StateView from opentrons.types import MountType, Mount, Point @@ -54,7 +56,7 @@ async def test_calibration_move_to_location_implementatio_for_attach_instrument( decoy.when(ot3_hardware_api.get_instrument_max_height(Mount.LEFT)).then_return(300) result = await subject.execute(params=params) - assert result == MoveToMaintenancePositionResult() + assert result == SuccessData(public=MoveToMaintenancePositionResult(), private=None) hw_mount = mount_type.to_hw_mount() decoy.verify( @@ -98,7 +100,7 @@ async def test_calibration_move_to_location_implementatio_for_attach_plate( decoy.when(ot3_hardware_api.get_instrument_max_height(Mount.LEFT)).then_return(300) result = await subject.execute(params=params) - assert result == MoveToMaintenancePositionResult() + assert result == SuccessData(public=MoveToMaintenancePositionResult(), private=None) decoy.verify( await ot3_hardware_api.prepare_for_mount_movement(Mount.LEFT), @@ -141,7 +143,7 @@ async def test_calibration_move_to_location_implementation_for_gripper( decoy.when(ot3_hardware_api.get_instrument_max_height(Mount.LEFT)).then_return(300) result = await subject.execute(params=params) - assert result == MoveToMaintenancePositionResult() + assert result == SuccessData(public=MoveToMaintenancePositionResult(), private=None) decoy.verify( await ot3_hardware_api.prepare_for_mount_movement(Mount.LEFT), diff --git a/api/tests/opentrons/protocol_engine/commands/conftest.py b/api/tests/opentrons/protocol_engine/commands/conftest.py index aad3cf21d4a..99046f7c84a 100644 --- a/api/tests/opentrons/protocol_engine/commands/conftest.py +++ b/api/tests/opentrons/protocol_engine/commands/conftest.py @@ -14,6 +14,7 @@ StatusBarHandler, TipHandler, ) +from opentrons.protocol_engine.resources.model_utils import ModelUtils from opentrons.protocol_engine.state import StateView @@ -65,6 +66,12 @@ def rail_lights(decoy: Decoy) -> RailLightsHandler: return decoy.mock(cls=RailLightsHandler) +@pytest.fixture +def model_utils(decoy: Decoy) -> ModelUtils: + """Get a mocked out ModelUtils.""" + return decoy.mock(cls=ModelUtils) + + @pytest.fixture def status_bar(decoy: Decoy) -> StatusBarHandler: """Get a mocked out StatusBarHandler.""" diff --git a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_close_labware_latch.py b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_close_labware_latch.py index 3d0f4988e9f..d728b97cb4d 100644 --- a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_close_labware_latch.py +++ b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_close_labware_latch.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import heater_shaker +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.heater_shaker.close_labware_latch import ( CloseLabwareLatchImpl, ) @@ -43,7 +44,9 @@ async def test_close_labware_latch( result = await subject.execute(data) decoy.verify(await heater_shaker_hardware.close_labware_latch(), times=1) - assert result == heater_shaker.CloseLabwareLatchResult() + assert result == SuccessData( + public=heater_shaker.CloseLabwareLatchResult(), private=None + ) async def test_close_labware_latch_virtual( @@ -73,4 +76,6 @@ async def test_close_labware_latch_virtual( result = await subject.execute(data) - assert result == heater_shaker.CloseLabwareLatchResult() + assert result == SuccessData( + public=heater_shaker.CloseLabwareLatchResult(), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_heater.py b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_heater.py index 0dbd7a6862d..0da296f71d6 100644 --- a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_heater.py +++ b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_heater.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import heater_shaker +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.heater_shaker.deactivate_heater import ( DeactivateHeaterImpl, ) @@ -44,4 +45,6 @@ async def test_deactivate_heater( result = await subject.execute(data) decoy.verify(await hs_hardware.deactivate_heater(), times=1) - assert result == heater_shaker.DeactivateHeaterResult() + assert result == SuccessData( + public=heater_shaker.DeactivateHeaterResult(), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_shaker.py b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_shaker.py index 24457182f45..3ab339f97e7 100644 --- a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_shaker.py +++ b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_deactivate_shaker.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import heater_shaker +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.heater_shaker.deactivate_shaker import ( DeactivateShakerImpl, ) @@ -44,7 +45,9 @@ async def test_deactivate_shaker( result = await subject.execute(data) decoy.verify(await hs_hardware.deactivate_shaker(), times=1) - assert result == heater_shaker.DeactivateShakerResult() + assert result == SuccessData( + public=heater_shaker.DeactivateShakerResult(), private=None + ) async def test_deactivate_shaker_virtual( @@ -74,4 +77,6 @@ async def test_deactivate_shaker_virtual( ).then_return(None) result = await subject.execute(data) - assert result == heater_shaker.DeactivateShakerResult() + assert result == SuccessData( + public=heater_shaker.DeactivateShakerResult(), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_open_labware_latch.py b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_open_labware_latch.py index 6232fe27981..6894c1d7e80 100644 --- a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_open_labware_latch.py +++ b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_open_labware_latch.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler, MovementHandler from opentrons.protocol_engine.commands import heater_shaker +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.heater_shaker.open_labware_latch import ( OpenLabwareLatchImpl, ) @@ -62,4 +63,6 @@ async def test_open_labware_latch( ), await hs_hardware.open_labware_latch(), ) - assert result == heater_shaker.OpenLabwareLatchResult(pipetteRetracted=True) + assert result == SuccessData( + public=heater_shaker.OpenLabwareLatchResult(pipetteRetracted=True), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_and_wait_for_shake_speed.py b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_and_wait_for_shake_speed.py index 389fd3ff53f..85e92ffd5b0 100644 --- a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_and_wait_for_shake_speed.py +++ b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_and_wait_for_shake_speed.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler, MovementHandler from opentrons.protocol_engine.commands import heater_shaker +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.heater_shaker.set_and_wait_for_shake_speed import ( SetAndWaitForShakeSpeedImpl, ) @@ -68,4 +69,7 @@ async def test_set_and_wait_for_shake_speed( ), await hs_hardware.set_speed(rpm=1234), ) - assert result == heater_shaker.SetAndWaitForShakeSpeedResult(pipetteRetracted=True) + assert result == SuccessData( + public=heater_shaker.SetAndWaitForShakeSpeedResult(pipetteRetracted=True), + private=None, + ) diff --git a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_target_temperature.py b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_target_temperature.py index 0004a6da7ab..b220c15ebef 100644 --- a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_target_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_set_target_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import heater_shaker +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.heater_shaker.set_target_temperature import ( SetTargetTemperatureImpl, ) @@ -53,4 +54,6 @@ async def test_set_target_temperature( result = await subject.execute(data) decoy.verify(await hs_hardware.start_set_temperature(celsius=45.6), times=1) - assert result == heater_shaker.SetTargetTemperatureResult() + assert result == SuccessData( + public=heater_shaker.SetTargetTemperatureResult(), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_wait_for_temperature.py b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_wait_for_temperature.py index 6f7f517af19..a575e8d4795 100644 --- a/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_wait_for_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/heater_shaker/test_wait_for_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import heater_shaker +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.heater_shaker.wait_for_temperature import ( WaitForTemperatureImpl, ) @@ -48,4 +49,6 @@ async def test_wait_for_temperature( decoy.verify( await hs_hardware.await_temperature(awaiting_temperature=123.45), times=1 ) - assert result == heater_shaker.WaitForTemperatureResult() + assert result == SuccessData( + public=heater_shaker.WaitForTemperatureResult(), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_disengage.py b/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_disengage.py index b294f21cecb..b87cd5d3f3b 100644 --- a/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_disengage.py +++ b/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_disengage.py @@ -9,6 +9,7 @@ MagneticModuleSubState, MagneticModuleId, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.magnetic_module import ( DisengageParams, DisengageResult, @@ -45,4 +46,4 @@ async def test_magnetic_module_disengage_implementation( result = await subject.execute(params=params) decoy.verify(await magnetic_module_hw.deactivate(), times=1) - assert result == DisengageResult() + assert result == SuccessData(public=DisengageResult(), private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_engage.py b/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_engage.py index 2bfea51d887..6563371345e 100644 --- a/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_engage.py +++ b/api/tests/opentrons/protocol_engine/commands/magnetic_module/test_engage.py @@ -9,6 +9,7 @@ MagneticModuleSubState, ) from opentrons.protocol_engine.execution import EquipmentHandler +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.magnetic_module import ( EngageParams, EngageResult, @@ -50,4 +51,4 @@ async def test_magnetic_module_engage_implementation( result = await subject.execute(params=params) decoy.verify(await magnetic_module_hw.engage(9001), times=1) - assert result == EngageResult() + assert result == SuccessData(public=EngageResult(), private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/temperature_module/test_deactivate.py b/api/tests/opentrons/protocol_engine/commands/temperature_module/test_deactivate.py index 0aa28cf525c..7e73ec94dc6 100644 --- a/api/tests/opentrons/protocol_engine/commands/temperature_module/test_deactivate.py +++ b/api/tests/opentrons/protocol_engine/commands/temperature_module/test_deactivate.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import temperature_module +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.temperature_module.deactivate import ( DeactivateTemperatureImpl, ) @@ -43,5 +44,6 @@ async def test_await_temperature( result = await subject.execute(data) decoy.verify(await tempdeck_hardware.deactivate(), times=1) - assert result == temperature_module.DeactivateTemperatureResult() - assert isinstance(result, temperature_module.DeactivateTemperatureResult) + assert result == SuccessData( + public=temperature_module.DeactivateTemperatureResult(), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/temperature_module/test_set_target_temperature.py b/api/tests/opentrons/protocol_engine/commands/temperature_module/test_set_target_temperature.py index e3f137e2166..cd57f86a4c6 100644 --- a/api/tests/opentrons/protocol_engine/commands/temperature_module/test_set_target_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/temperature_module/test_set_target_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import temperature_module +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.temperature_module.set_target_temperature import ( SetTargetTemperatureImpl, ) @@ -49,4 +50,7 @@ async def test_set_target_temperature( result = await subject.execute(data) decoy.verify(await tempdeck_hardware.start_set_temperature(celsius=1), times=1) - assert result == temperature_module.SetTargetTemperatureResult(targetTemperature=1) + assert result == SuccessData( + public=temperature_module.SetTargetTemperatureResult(targetTemperature=1), + private=None, + ) diff --git a/api/tests/opentrons/protocol_engine/commands/temperature_module/test_wait_for_temperature.py b/api/tests/opentrons/protocol_engine/commands/temperature_module/test_wait_for_temperature.py index 7a1a423d906..df18e8a144c 100644 --- a/api/tests/opentrons/protocol_engine/commands/temperature_module/test_wait_for_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/temperature_module/test_wait_for_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import temperature_module +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.temperature_module.wait_for_temperature import ( WaitForTemperatureImpl, ) @@ -46,7 +47,9 @@ async def test_wait_for_temperature( decoy.verify( await tempdeck_hardware.await_temperature(awaiting_temperature=123), times=1 ) - assert result == temperature_module.WaitForTemperatureResult() + assert result == SuccessData( + public=temperature_module.WaitForTemperatureResult(), private=None + ) async def test_wait_for_temperature_requested_celsius( @@ -86,4 +89,6 @@ async def test_wait_for_temperature_requested_celsius( decoy.verify( await tempdeck_hardware.await_temperature(awaiting_temperature=12), times=1 ) - assert result == temperature_module.WaitForTemperatureResult() + assert result == SuccessData( + public=temperature_module.WaitForTemperatureResult(), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_aspirate.py b/api/tests/opentrons/protocol_engine/commands/test_aspirate.py index f625c19f93f..4cb820eb0ea 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_aspirate.py +++ b/api/tests/opentrons/protocol_engine/commands/test_aspirate.py @@ -10,6 +10,7 @@ AspirateResult, AspirateImplementation, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.state import StateView @@ -84,7 +85,10 @@ async def test_aspirate_implementation_no_prep( result = await subject.execute(data) - assert result == AspirateResult(volume=50, position=DeckPoint(x=1, y=2, z=3)) + assert result == SuccessData( + public=AspirateResult(volume=50, position=DeckPoint(x=1, y=2, z=3)), + private=None, + ) async def test_aspirate_implementation_with_prep( @@ -140,7 +144,10 @@ async def test_aspirate_implementation_with_prep( result = await subject.execute(data) - assert result == AspirateResult(volume=50, position=DeckPoint(x=1, y=2, z=3)) + assert result == SuccessData( + public=AspirateResult(volume=50, position=DeckPoint(x=1, y=2, z=3)), + private=None, + ) decoy.verify( await movement.move_to_well( diff --git a/api/tests/opentrons/protocol_engine/commands/test_aspirate_in_place.py b/api/tests/opentrons/protocol_engine/commands/test_aspirate_in_place.py index 3d09c029bcd..c6197f2d26f 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_aspirate_in_place.py +++ b/api/tests/opentrons/protocol_engine/commands/test_aspirate_in_place.py @@ -10,6 +10,7 @@ AspirateInPlaceResult, AspirateInPlaceImplementation, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.errors.exceptions import PipetteNotReadyToAspirateError from opentrons.protocol_engine.notes import CommandNoteAdder @@ -84,7 +85,7 @@ async def test_aspirate_in_place_implementation( result = await subject.execute(params=data) - assert result == AspirateInPlaceResult(volume=123) + assert result == SuccessData(public=AspirateInPlaceResult(volume=123), private=None) async def test_handle_aspirate_in_place_request_not_ready_to_aspirate( diff --git a/api/tests/opentrons/protocol_engine/commands/test_blow_out.py b/api/tests/opentrons/protocol_engine/commands/test_blow_out.py index 2088e83fc97..919d37e9a76 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_blow_out.py +++ b/api/tests/opentrons/protocol_engine/commands/test_blow_out.py @@ -9,6 +9,7 @@ BlowOutImplementation, BlowOutParams, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.execution import ( MovementHandler, PipettingHandler, @@ -52,7 +53,9 @@ async def test_blow_out_implementation( result = await subject.execute(data) - assert result == BlowOutResult(position=DeckPoint(x=1, y=2, z=3)) + assert result == SuccessData( + public=BlowOutResult(position=DeckPoint(x=1, y=2, z=3)), private=None + ) decoy.verify( await pipetting.blow_out_in_place(pipette_id="pipette-id", flow_rate=1.234), diff --git a/api/tests/opentrons/protocol_engine/commands/test_blow_out_in_place.py b/api/tests/opentrons/protocol_engine/commands/test_blow_out_in_place.py index 00deb7c640c..a14bcdc8019 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_blow_out_in_place.py +++ b/api/tests/opentrons/protocol_engine/commands/test_blow_out_in_place.py @@ -7,7 +7,7 @@ BlowOutInPlaceResult, BlowOutInPlaceImplementation, ) - +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.execution import ( MovementHandler, PipettingHandler, @@ -36,7 +36,7 @@ async def test_blow_out_in_place_implementation( result = await subject.execute(data) - assert result == BlowOutInPlaceResult() + assert result == SuccessData(public=BlowOutInPlaceResult(), private=None) decoy.verify( await pipetting.blow_out_in_place(pipette_id="pipette-id", flow_rate=1.234) diff --git a/api/tests/opentrons/protocol_engine/commands/test_comment.py b/api/tests/opentrons/protocol_engine/commands/test_comment.py index 3aa088e0a37..4010f2ec56c 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_comment.py +++ b/api/tests/opentrons/protocol_engine/commands/test_comment.py @@ -4,6 +4,7 @@ CommentResult, CommentImplementation, ) +from opentrons.protocol_engine.commands.command import SuccessData async def test_comment_implementation() -> None: @@ -14,4 +15,4 @@ async def test_comment_implementation() -> None: result = await subject.execute(data) - assert result == CommentResult() + assert result == SuccessData(public=CommentResult(), private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py b/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py index 333662d4bcf..0bd683fc1fe 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py +++ b/api/tests/opentrons/protocol_engine/commands/test_configure_for_volume.py @@ -10,6 +10,7 @@ LoadedStaticPipetteData, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.configure_for_volume import ( ConfigureForVolumeParams, ConfigureForVolumeResult, @@ -65,9 +66,11 @@ async def test_configure_for_volume_implementation( ) ) - result, private_result = await subject.execute(data) + result = await subject.execute(data) - assert result == ConfigureForVolumeResult() - assert private_result == ConfigureForVolumePrivateResult( - pipette_id="pipette-id", serial_number="some number", config=config + assert result == SuccessData( + public=ConfigureForVolumeResult(), + private=ConfigureForVolumePrivateResult( + pipette_id="pipette-id", serial_number="some number", config=config + ), ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_configure_nozzle_layout.py b/api/tests/opentrons/protocol_engine/commands/test_configure_nozzle_layout.py index 23cdddd98be..67b4294c1be 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_configure_nozzle_layout.py +++ b/api/tests/opentrons/protocol_engine/commands/test_configure_nozzle_layout.py @@ -11,7 +11,7 @@ from opentrons.types import Point from opentrons.hardware_control.nozzle_manager import NozzleMap - +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.configure_nozzle_layout import ( ConfigureNozzleLayoutParams, ConfigureNozzleLayoutResult, @@ -124,10 +124,12 @@ async def test_configure_nozzle_layout_implementation( ) ).then_return(expected_nozzlemap) - result, private_result = await subject.execute(requested_nozzle_layout) + result = await subject.execute(requested_nozzle_layout) - assert result == ConfigureNozzleLayoutResult() - assert private_result == ConfigureNozzleLayoutPrivateResult( - pipette_id="pipette-id", - nozzle_map=expected_nozzlemap, + assert result == SuccessData( + public=ConfigureNozzleLayoutResult(), + private=ConfigureNozzleLayoutPrivateResult( + pipette_id="pipette-id", + nozzle_map=expected_nozzlemap, + ), ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_dispense.py b/api/tests/opentrons/protocol_engine/commands/test_dispense.py index cb6737f535f..4df18a19152 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_dispense.py +++ b/api/tests/opentrons/protocol_engine/commands/test_dispense.py @@ -5,6 +5,7 @@ from opentrons.protocol_engine.execution import MovementHandler, PipettingHandler from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.dispense import ( DispenseParams, DispenseResult, @@ -50,4 +51,7 @@ async def test_dispense_implementation( result = await subject.execute(data) - assert result == DispenseResult(volume=42, position=DeckPoint(x=1, y=2, z=3)) + assert result == SuccessData( + public=DispenseResult(volume=42, position=DeckPoint(x=1, y=2, z=3)), + private=None, + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_dispense_in_place.py b/api/tests/opentrons/protocol_engine/commands/test_dispense_in_place.py index 025d863d45b..e1bb654613c 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_dispense_in_place.py +++ b/api/tests/opentrons/protocol_engine/commands/test_dispense_in_place.py @@ -3,6 +3,7 @@ from opentrons.protocol_engine.execution import PipettingHandler +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.dispense_in_place import ( DispenseInPlaceParams, DispenseInPlaceResult, @@ -31,4 +32,4 @@ async def test_dispense_in_place_implementation( result = await subject.execute(data) - assert result == DispenseInPlaceResult(volume=42) + assert result == SuccessData(public=DispenseInPlaceResult(volume=42), private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/test_drop_tip.py b/api/tests/opentrons/protocol_engine/commands/test_drop_tip.py index 4a3c547c07a..9690dcc2461 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_drop_tip.py +++ b/api/tests/opentrons/protocol_engine/commands/test_drop_tip.py @@ -13,6 +13,7 @@ from opentrons.protocol_engine.execution import MovementHandler, TipHandler from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.drop_tip import ( DropTipParams, DropTipResult, @@ -110,7 +111,9 @@ async def test_drop_tip_implementation( result = await subject.execute(params) - assert result == DropTipResult(position=DeckPoint(x=111, y=222, z=333)) + assert result == SuccessData( + public=DropTipResult(position=DeckPoint(x=111, y=222, z=333)), private=None + ) decoy.verify( await mock_tip_handler.drop_tip(pipette_id="abc", home_after=True), @@ -170,4 +173,6 @@ async def test_drop_tip_with_alternating_locations( ).then_return(Point(x=111, y=222, z=333)) result = await subject.execute(params) - assert result == DropTipResult(position=DeckPoint(x=111, y=222, z=333)) + assert result == SuccessData( + public=DropTipResult(position=DeckPoint(x=111, y=222, z=333)), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_drop_tip_in_place.py b/api/tests/opentrons/protocol_engine/commands/test_drop_tip_in_place.py index fa47b5b7da3..4bfefe4fdbe 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_drop_tip_in_place.py +++ b/api/tests/opentrons/protocol_engine/commands/test_drop_tip_in_place.py @@ -4,6 +4,7 @@ from opentrons.protocol_engine.execution import TipHandler +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.drop_tip_in_place import ( DropTipInPlaceParams, DropTipInPlaceResult, @@ -28,7 +29,7 @@ async def test_drop_tip_implementation( result = await subject.execute(params) - assert result == DropTipInPlaceResult() + assert result == SuccessData(public=DropTipInPlaceResult(), private=None) decoy.verify( await mock_tip_handler.drop_tip(pipette_id="abc", home_after=False), diff --git a/api/tests/opentrons/protocol_engine/commands/test_get_tip_presence.py b/api/tests/opentrons/protocol_engine/commands/test_get_tip_presence.py index 94fe8caadf3..a1d0230f74a 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_get_tip_presence.py +++ b/api/tests/opentrons/protocol_engine/commands/test_get_tip_presence.py @@ -5,6 +5,7 @@ from opentrons.protocol_engine.execution import TipHandler from opentrons.protocol_engine.types import TipPresenceStatus +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.get_tip_presence import ( GetTipPresenceParams, GetTipPresenceResult, @@ -39,4 +40,6 @@ async def test_get_tip_presence_implementation( result = await subject.execute(data) - assert result == GetTipPresenceResult(status=status) + assert result == SuccessData( + public=GetTipPresenceResult(status=status), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_home.py b/api/tests/opentrons/protocol_engine/commands/test_home.py index b23e6e11dc3..f68c1b6de27 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_home.py +++ b/api/tests/opentrons/protocol_engine/commands/test_home.py @@ -5,6 +5,7 @@ from opentrons.types import MountType from opentrons.protocol_engine.execution import MovementHandler +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.home import ( HomeParams, HomeResult, @@ -20,7 +21,7 @@ async def test_home_implementation(decoy: Decoy, movement: MovementHandler) -> N result = await subject.execute(data) - assert result == HomeResult() + assert result == SuccessData(public=HomeResult(), private=None) decoy.verify(await movement.home(axes=[MotorAxis.X, MotorAxis.Y])) @@ -32,7 +33,7 @@ async def test_home_all_implementation(decoy: Decoy, movement: MovementHandler) result = await subject.execute(data) - assert result == HomeResult() + assert result == SuccessData(public=HomeResult(), private=None) decoy.verify(await movement.home(axes=None)) @@ -51,7 +52,7 @@ async def test_home_with_invalid_position( ) result = await subject.execute(data) - assert result == HomeResult() + assert result == SuccessData(public=HomeResult(), private=None) decoy.verify(await movement.home(axes=[MotorAxis.X, MotorAxis.Y]), times=1) decoy.reset() @@ -60,6 +61,6 @@ async def test_home_with_invalid_position( await movement.check_for_valid_position(mount=MountType.LEFT) ).then_return(True) result = await subject.execute(data) - assert result == HomeResult() + assert result == SuccessData(public=HomeResult(), private=None) decoy.verify(await movement.home(axes=[MotorAxis.X, MotorAxis.Y]), times=0) diff --git a/api/tests/opentrons/protocol_engine/commands/test_load_labware.py b/api/tests/opentrons/protocol_engine/commands/test_load_labware.py index 7ca9d112e27..867e8555386 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_load_labware.py +++ b/api/tests/opentrons/protocol_engine/commands/test_load_labware.py @@ -20,6 +20,7 @@ from opentrons.protocol_engine.resources import labware_validation from opentrons.protocol_engine.state import StateView +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.load_labware import ( LoadLabwareParams, LoadLabwareResult, @@ -80,10 +81,13 @@ async def test_load_labware_implementation( result = await subject.execute(data) - assert result == LoadLabwareResult( - labwareId="labware-id", - definition=well_plate_def, - offsetId="labware-offset-id", + assert result == SuccessData( + public=LoadLabwareResult( + labwareId="labware-id", + definition=well_plate_def, + offsetId="labware-offset-id", + ), + private=None, ) @@ -153,10 +157,13 @@ async def test_load_labware_on_labware( result = await subject.execute(data) - assert result == LoadLabwareResult( - labwareId="labware-id", - definition=well_plate_def, - offsetId="labware-offset-id", + assert result == SuccessData( + public=LoadLabwareResult( + labwareId="labware-id", + definition=well_plate_def, + offsetId="labware-offset-id", + ), + private=None, ) decoy.verify( diff --git a/api/tests/opentrons/protocol_engine/commands/test_load_liquid.py b/api/tests/opentrons/protocol_engine/commands/test_load_liquid.py index 2c7a4bb7c93..f1f998b85e7 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_load_liquid.py +++ b/api/tests/opentrons/protocol_engine/commands/test_load_liquid.py @@ -2,6 +2,7 @@ import pytest from decoy import Decoy +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands import ( LoadLiquidResult, LoadLiquidImplementation, @@ -35,7 +36,7 @@ async def test_load_liquid_implementation( ) result = await subject.execute(data) - assert result == LoadLiquidResult() + assert result == SuccessData(public=LoadLiquidResult(), private=None) decoy.verify(mock_state_view.liquid.validate_liquid_id("liquid-id")) diff --git a/api/tests/opentrons/protocol_engine/commands/test_load_module.py b/api/tests/opentrons/protocol_engine/commands/test_load_module.py index 65306f34adc..88a43d6e557 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_load_module.py +++ b/api/tests/opentrons/protocol_engine/commands/test_load_module.py @@ -16,6 +16,7 @@ from opentrons.protocol_engine import ModuleModel as EngineModuleModel from opentrons.hardware_control.modules import ModuleType +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.load_module import ( LoadModuleParams, LoadModuleResult, @@ -84,11 +85,14 @@ async def test_load_module_implementation( ) result = await subject.execute(data) - assert result == LoadModuleResult( - moduleId="module-id", - serialNumber="mod-serial", - model=ModuleModel.TEMPERATURE_MODULE_V2, - definition=tempdeck_v2_def, + assert result == SuccessData( + public=LoadModuleResult( + moduleId="module-id", + serialNumber="mod-serial", + model=ModuleModel.TEMPERATURE_MODULE_V2, + definition=tempdeck_v2_def, + ), + private=None, ) @@ -137,11 +141,14 @@ async def test_load_module_implementation_mag_block( ) result = await subject.execute(data) - assert result == LoadModuleResult( - moduleId="module-id", - serialNumber=None, - model=ModuleModel.MAGNETIC_BLOCK_V1, - definition=mag_block_v1_def, + assert result == SuccessData( + public=LoadModuleResult( + moduleId="module-id", + serialNumber=None, + model=ModuleModel.MAGNETIC_BLOCK_V1, + definition=mag_block_v1_def, + ), + private=None, ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_load_pipette.py b/api/tests/opentrons/protocol_engine/commands/test_load_pipette.py index 91e86ad1376..cb1913da0bb 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_load_pipette.py +++ b/api/tests/opentrons/protocol_engine/commands/test_load_pipette.py @@ -13,6 +13,7 @@ LoadedStaticPipetteData, ) from opentrons.protocol_engine.state import StateView +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.load_pipette import ( LoadPipetteParams, LoadPipetteResult, @@ -66,11 +67,13 @@ async def test_load_pipette_implementation( ) ) - result, private_result = await subject.execute(data) + result = await subject.execute(data) - assert result == LoadPipetteResult(pipetteId="some id") - assert private_result == LoadPipettePrivateResult( - pipette_id="some id", serial_number="some-serial-number", config=config_data + assert result == SuccessData( + public=LoadPipetteResult(pipetteId="some id"), + private=LoadPipettePrivateResult( + pipette_id="some id", serial_number="some-serial-number", config=config_data + ), ) @@ -117,11 +120,13 @@ async def test_load_pipette_implementation_96_channel( ) ) - result, private_result = await subject.execute(data) + result = await subject.execute(data) - assert result == LoadPipetteResult(pipetteId="pipette-id") - assert private_result == LoadPipettePrivateResult( - pipette_id="pipette-id", serial_number="some id", config=config_data + assert result == SuccessData( + public=LoadPipetteResult(pipetteId="pipette-id"), + private=LoadPipettePrivateResult( + pipette_id="pipette-id", serial_number="some id", config=config_data + ), ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_move_labware.py b/api/tests/opentrons/protocol_engine/commands/test_move_labware.py index beb9e14c11d..0872525faf0 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_move_labware.py +++ b/api/tests/opentrons/protocol_engine/commands/test_move_labware.py @@ -22,6 +22,7 @@ AddressableAreaLocation, ) from opentrons.protocol_engine.state import StateView +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.move_labware import ( MoveLabwareParams, MoveLabwareResult, @@ -99,8 +100,11 @@ async def test_manual_move_labware_implementation( decoy.verify( state_view.labware.raise_if_labware_has_labware_on_top("my-cool-labware-id") ) - assert result == MoveLabwareResult( - offsetId="wowzers-a-new-offset-id", + assert result == SuccessData( + public=MoveLabwareResult( + offsetId="wowzers-a-new-offset-id", + ), + private=None, ) @@ -162,8 +166,11 @@ async def test_move_labware_implementation_on_labware( "my-even-cooler-labware-id", ), ) - assert result == MoveLabwareResult( - offsetId="wowzers-a-new-offset-id", + assert result == SuccessData( + public=MoveLabwareResult( + offsetId="wowzers-a-new-offset-id", + ), + private=None, ) @@ -246,8 +253,11 @@ async def test_gripper_move_labware_implementation( post_drop_slide_offset=None, ), ) - assert result == MoveLabwareResult( - offsetId="wowzers-a-new-offset-id", + assert result == SuccessData( + public=MoveLabwareResult( + offsetId="wowzers-a-new-offset-id", + ), + private=None, ) @@ -333,8 +343,11 @@ async def test_gripper_move_to_waste_chute_implementation( post_drop_slide_offset=expected_slide_offset, ), ) - assert result == MoveLabwareResult( - offsetId="wowzers-a-new-offset-id", + assert result == SuccessData( + public=MoveLabwareResult( + offsetId="wowzers-a-new-offset-id", + ), + private=None, ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_move_relative.py b/api/tests/opentrons/protocol_engine/commands/test_move_relative.py index 9ac321cbb78..f8f49956721 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_move_relative.py +++ b/api/tests/opentrons/protocol_engine/commands/test_move_relative.py @@ -5,6 +5,7 @@ from opentrons.protocol_engine.execution import MovementHandler from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.move_relative import ( MoveRelativeParams, MoveRelativeResult, @@ -34,4 +35,6 @@ async def test_move_relative_implementation( result = await subject.execute(data) - assert result == MoveRelativeResult(position=DeckPoint(x=1, y=2, z=3)) + assert result == SuccessData( + public=MoveRelativeResult(position=DeckPoint(x=1, y=2, z=3)), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area.py b/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area.py index 20515bc12c4..20d944b6f87 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area.py +++ b/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area.py @@ -6,6 +6,7 @@ from opentrons.protocol_engine.state import StateView from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.move_to_addressable_area import ( MoveToAddressableAreaParams, MoveToAddressableAreaResult, @@ -47,4 +48,7 @@ async def test_move_to_addressable_area_implementation( result = await subject.execute(data) - assert result == MoveToAddressableAreaResult(position=DeckPoint(x=9, y=8, z=7)) + assert result == SuccessData( + public=MoveToAddressableAreaResult(position=DeckPoint(x=9, y=8, z=7)), + private=None, + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area_for_drop_tip.py b/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area_for_drop_tip.py index 73478ccafd5..5576b662566 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area_for_drop_tip.py +++ b/api/tests/opentrons/protocol_engine/commands/test_move_to_addressable_area_for_drop_tip.py @@ -6,6 +6,7 @@ from opentrons.protocol_engine.state import StateView from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.move_to_addressable_area_for_drop_tip import ( MoveToAddressableAreaForDropTipParams, MoveToAddressableAreaForDropTipResult, @@ -54,6 +55,7 @@ async def test_move_to_addressable_area_for_drop_tip_implementation( result = await subject.execute(data) - assert result == MoveToAddressableAreaForDropTipResult( - position=DeckPoint(x=9, y=8, z=7) + assert result == SuccessData( + public=MoveToAddressableAreaForDropTipResult(position=DeckPoint(x=9, y=8, z=7)), + private=None, ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_move_to_coordinates.py b/api/tests/opentrons/protocol_engine/commands/test_move_to_coordinates.py index 4f2c32b965b..c630c913480 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_move_to_coordinates.py +++ b/api/tests/opentrons/protocol_engine/commands/test_move_to_coordinates.py @@ -7,6 +7,7 @@ from opentrons.protocol_engine.types import DeckPoint from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.move_to_coordinates import ( MoveToCoordinatesParams, MoveToCoordinatesResult, @@ -54,4 +55,7 @@ async def test_move_to_coordinates_implementation( result = await subject.execute(params=params) - assert result == MoveToCoordinatesResult(position=DeckPoint(x=4.44, y=5.55, z=6.66)) + assert result == SuccessData( + public=MoveToCoordinatesResult(position=DeckPoint(x=4.44, y=5.55, z=6.66)), + private=None, + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_move_to_well.py b/api/tests/opentrons/protocol_engine/commands/test_move_to_well.py index aebe8318737..ddd6cf51a21 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_move_to_well.py +++ b/api/tests/opentrons/protocol_engine/commands/test_move_to_well.py @@ -5,6 +5,7 @@ from opentrons.protocol_engine.execution import MovementHandler from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.move_to_well import ( MoveToWellParams, MoveToWellResult, @@ -43,4 +44,6 @@ async def test_move_to_well_implementation( result = await subject.execute(data) - assert result == MoveToWellResult(position=DeckPoint(x=9, y=8, z=7)) + assert result == SuccessData( + public=MoveToWellResult(position=DeckPoint(x=9, y=8, z=7)), private=None + ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_pick_up_tip.py b/api/tests/opentrons/protocol_engine/commands/test_pick_up_tip.py index 087ac0a493e..1e24a8033f1 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_pick_up_tip.py +++ b/api/tests/opentrons/protocol_engine/commands/test_pick_up_tip.py @@ -1,58 +1,46 @@ """Test pick up tip commands.""" -import pytest -from decoy import Decoy +from datetime import datetime + +from decoy import Decoy, matchers from opentrons.types import MountType, Point from opentrons.protocol_engine import WellLocation, WellOffset, DeckPoint -from opentrons.protocol_engine.types import TipGeometry -from opentrons.protocol_engine.state import StateView +from opentrons.protocol_engine.errors import TipNotAttachedError from opentrons.protocol_engine.execution import MovementHandler, TipHandler +from opentrons.protocol_engine.resources import ModelUtils +from opentrons.protocol_engine.state import StateView +from opentrons.protocol_engine.types import TipGeometry +from opentrons.protocol_engine.commands.command import DefinedErrorData, SuccessData from opentrons.protocol_engine.commands.pick_up_tip import ( PickUpTipParams, PickUpTipResult, PickUpTipImplementation, + TipPhysicallyMissingError, + TipPhysicallyMissingErrorInternalData, ) -@pytest.fixture -def mock_state_view(decoy: Decoy) -> StateView: - """Get a mock StateView.""" - return decoy.mock(cls=StateView) - - -@pytest.fixture -def mock_movement_handler(decoy: Decoy) -> MovementHandler: - """Get a mock MovementHandler.""" - return decoy.mock(cls=MovementHandler) - - -@pytest.fixture -def mock_tip_handler(decoy: Decoy) -> TipHandler: - """Get a mock TipHandler.""" - return decoy.mock(cls=TipHandler) - - -async def test_pick_up_tip_implementation( +async def test_success( decoy: Decoy, - mock_state_view: StateView, - mock_movement_handler: MovementHandler, - mock_tip_handler: TipHandler, + state_view: StateView, + movement: MovementHandler, + tip_handler: TipHandler, + model_utils: ModelUtils, ) -> None: """A PickUpTip command should have an execution implementation.""" subject = PickUpTipImplementation( - state_view=mock_state_view, - movement=mock_movement_handler, - tip_handler=mock_tip_handler, + state_view=state_view, + movement=movement, + tip_handler=tip_handler, + model_utils=model_utils, ) - decoy.when(mock_state_view.pipettes.get_mount("pipette-id")).then_return( - MountType.LEFT - ) + decoy.when(state_view.pipettes.get_mount("pipette-id")).then_return(MountType.LEFT) decoy.when( - await mock_movement_handler.move_to_well( + await movement.move_to_well( pipette_id="pipette-id", labware_id="labware-id", well_name="A3", @@ -61,7 +49,7 @@ async def test_pick_up_tip_implementation( ).then_return(Point(x=111, y=222, z=333)) decoy.when( - await mock_tip_handler.pick_up_tip( + await tip_handler.pick_up_tip( pipette_id="pipette-id", labware_id="labware-id", well_name="A3", @@ -77,9 +65,55 @@ async def test_pick_up_tip_implementation( ) ) - assert result == PickUpTipResult( - tipLength=42, - tipVolume=300, - tipDiameter=5, - position=DeckPoint(x=111, y=222, z=333), + assert result == SuccessData( + public=PickUpTipResult( + tipLength=42, + tipVolume=300, + tipDiameter=5, + position=DeckPoint(x=111, y=222, z=333), + ), + private=None, + ) + + +async def test_tip_physically_missing_error( + decoy: Decoy, + state_view: StateView, + movement: MovementHandler, + tip_handler: TipHandler, + model_utils: ModelUtils, +) -> None: + """It should return a TipPhysicallyMissingError if the HW API indicates that.""" + subject = PickUpTipImplementation( + state_view=state_view, + movement=movement, + tip_handler=tip_handler, + model_utils=model_utils, + ) + + pipette_id = "pipette-id" + labware_id = "labware-id" + well_name = "well-name" + error_id = "error-id" + error_created_at = datetime(1234, 5, 6) + + decoy.when( + await tip_handler.pick_up_tip( + pipette_id=pipette_id, labware_id=labware_id, well_name=well_name + ) + ).then_raise(TipNotAttachedError()) + decoy.when(model_utils.generate_id()).then_return(error_id) + decoy.when(model_utils.get_timestamp()).then_return(error_created_at) + + result = await subject.execute( + PickUpTipParams(pipetteId=pipette_id, labwareId=labware_id, wellName=well_name) + ) + + assert result == DefinedErrorData( + public=TipPhysicallyMissingError.construct( + id=error_id, createdAt=error_created_at, wrappedErrors=[matchers.Anything()] + ), + private=TipPhysicallyMissingErrorInternalData( + pipette_id=pipette_id, labware_id=labware_id, well_name=well_name + ), ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_prepare_to_aspirate.py b/api/tests/opentrons/protocol_engine/commands/test_prepare_to_aspirate.py index d3f09d6685f..b11254af481 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_prepare_to_aspirate.py +++ b/api/tests/opentrons/protocol_engine/commands/test_prepare_to_aspirate.py @@ -6,6 +6,7 @@ PipettingHandler, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.prepare_to_aspirate import ( PrepareToAspirateParams, PrepareToAspirateImplementation, @@ -26,4 +27,4 @@ async def test_prepare_to_aspirate_implmenetation( ) result = await subject.execute(data) - assert isinstance(result, PrepareToAspirateResult) + assert result == SuccessData(public=PrepareToAspirateResult(), private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/test_reload_labware.py b/api/tests/opentrons/protocol_engine/commands/test_reload_labware.py index 556d4975786..8bafa40d47e 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_reload_labware.py +++ b/api/tests/opentrons/protocol_engine/commands/test_reload_labware.py @@ -18,6 +18,7 @@ from opentrons.protocol_engine.resources import labware_validation from opentrons.protocol_engine.state import StateView +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.reload_labware import ( ReloadLabwareParams, ReloadLabwareResult, @@ -56,9 +57,12 @@ async def test_reload_labware_implementation( result = await subject.execute(data) - assert result == ReloadLabwareResult( - labwareId="my-labware-id", - offsetId="labware-offset-id", + assert result == SuccessData( + public=ReloadLabwareResult( + labwareId="my-labware-id", + offsetId="labware-offset-id", + ), + private=None, ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_retract_axis.py b/api/tests/opentrons/protocol_engine/commands/test_retract_axis.py index 09ca68bd69b..a580875d779 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_retract_axis.py +++ b/api/tests/opentrons/protocol_engine/commands/test_retract_axis.py @@ -4,6 +4,7 @@ from opentrons.protocol_engine.types import MotorAxis from opentrons.protocol_engine.execution import MovementHandler +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.retract_axis import ( RetractAxisParams, RetractAxisResult, @@ -21,5 +22,5 @@ async def test_retract_axis_implementation( data = RetractAxisParams(axis=MotorAxis.Y) result = await subject.execute(data) - assert result == RetractAxisResult() + assert result == SuccessData(public=RetractAxisResult(), private=None) decoy.verify(await movement.retract_axis(axis=MotorAxis.Y)) diff --git a/api/tests/opentrons/protocol_engine/commands/test_save_position.py b/api/tests/opentrons/protocol_engine/commands/test_save_position.py index 99b52a4cd42..c0f5e091e30 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_save_position.py +++ b/api/tests/opentrons/protocol_engine/commands/test_save_position.py @@ -7,6 +7,7 @@ from opentrons.protocol_engine.resources import ModelUtils from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.save_position import ( SavePositionParams, SavePositionResult, @@ -45,7 +46,10 @@ async def test_save_position_implementation( result = await subject.execute(params) - assert result == SavePositionResult( - positionId="456", - position=DeckPoint(x=1, y=2, z=3), + assert result == SuccessData( + public=SavePositionResult( + positionId="456", + position=DeckPoint(x=1, y=2, z=3), + ), + private=None, ) diff --git a/api/tests/opentrons/protocol_engine/commands/test_set_rail_lights.py b/api/tests/opentrons/protocol_engine/commands/test_set_rail_lights.py index 473a685e068..161fb2d3fcf 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_set_rail_lights.py +++ b/api/tests/opentrons/protocol_engine/commands/test_set_rail_lights.py @@ -5,6 +5,7 @@ RailLightsHandler, ) +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.set_rail_lights import ( SetRailLightsParams, SetRailLightsResult, @@ -25,6 +26,6 @@ async def test_set_rail_lights_implementation( result = await subject.execute(data) - assert result == SetRailLightsResult() + assert result == SuccessData(public=SetRailLightsResult(), private=None) decoy.verify(await rail_lights.set_rail_lights(True), times=1) diff --git a/api/tests/opentrons/protocol_engine/commands/test_set_status_bar.py b/api/tests/opentrons/protocol_engine/commands/test_set_status_bar.py index 2ec4cc696f6..53652ce6b87 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_set_status_bar.py +++ b/api/tests/opentrons/protocol_engine/commands/test_set_status_bar.py @@ -3,6 +3,7 @@ import pytest from decoy import Decoy +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.set_status_bar import ( SetStatusBarParams, SetStatusBarResult, @@ -34,7 +35,7 @@ async def test_status_bar_busy( result = await subject.execute(params=data) - assert result == SetStatusBarResult() + assert result == SuccessData(public=SetStatusBarResult(), private=None) decoy.verify(await status_bar.set_status_bar(status=StatusBarState.OFF), times=0) @@ -62,6 +63,6 @@ async def test_set_status_bar_animation( data = SetStatusBarParams(animation=animation) result = await subject.execute(params=data) - assert result == SetStatusBarResult() + assert result == SuccessData(public=SetStatusBarResult(), private=None) decoy.verify(await status_bar.set_status_bar(status=expected_state), times=1) diff --git a/api/tests/opentrons/protocol_engine/commands/test_touch_tip.py b/api/tests/opentrons/protocol_engine/commands/test_touch_tip.py index 492f1a6751b..2f440c96f13 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_touch_tip.py +++ b/api/tests/opentrons/protocol_engine/commands/test_touch_tip.py @@ -9,6 +9,7 @@ from opentrons.protocol_engine.state import StateView from opentrons.types import Point +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.touch_tip import ( TouchTipParams, TouchTipResult, @@ -120,7 +121,9 @@ async def test_touch_tip_implementation( result = await subject.execute(params) - assert result == TouchTipResult(position=DeckPoint(x=4, y=5, z=6)) + assert result == SuccessData( + public=TouchTipResult(position=DeckPoint(x=4, y=5, z=6)), private=None + ) async def test_touch_tip_disabled( diff --git a/api/tests/opentrons/protocol_engine/commands/test_verify_tip_presence.py b/api/tests/opentrons/protocol_engine/commands/test_verify_tip_presence.py index 160ee056ae8..087d924f0d2 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_verify_tip_presence.py +++ b/api/tests/opentrons/protocol_engine/commands/test_verify_tip_presence.py @@ -4,6 +4,7 @@ from opentrons.protocol_engine.execution import TipHandler from opentrons.protocol_engine.types import TipPresenceStatus +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.verify_tip_presence import ( VerifyTipPresenceParams, VerifyTipPresenceResult, @@ -31,4 +32,4 @@ async def test_verify_tip_presence_implementation( result = await subject.execute(data) - assert isinstance(result, VerifyTipPresenceResult) + assert result == SuccessData(public=VerifyTipPresenceResult(), private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/test_wait_for_duration.py b/api/tests/opentrons/protocol_engine/commands/test_wait_for_duration.py index 17c3f2e09d7..9d351ce00d3 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_wait_for_duration.py +++ b/api/tests/opentrons/protocol_engine/commands/test_wait_for_duration.py @@ -3,6 +3,7 @@ from opentrons.protocol_engine.execution import RunControlHandler +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.wait_for_duration import ( WaitForDurationParams, WaitForDurationResult, @@ -21,5 +22,5 @@ async def test_pause_implementation( result = await subject.execute(data) - assert result == WaitForDurationResult() + assert result == SuccessData(public=WaitForDurationResult(), private=None) decoy.verify(await run_control.wait_for_duration(42.0), times=1) diff --git a/api/tests/opentrons/protocol_engine/commands/test_wait_for_resume.py b/api/tests/opentrons/protocol_engine/commands/test_wait_for_resume.py index fcfb6119697..752b85d3446 100644 --- a/api/tests/opentrons/protocol_engine/commands/test_wait_for_resume.py +++ b/api/tests/opentrons/protocol_engine/commands/test_wait_for_resume.py @@ -3,6 +3,7 @@ from opentrons.protocol_engine.execution import RunControlHandler +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.wait_for_resume import ( WaitForResumeCreate, WaitForResumeParams, @@ -22,7 +23,7 @@ async def test_wait_for_resume_implementation( result = await subject.execute(data) - assert result == WaitForResumeResult() + assert result == SuccessData(public=WaitForResumeResult(), private=None) decoy.verify(await run_control.wait_for_resume(), times=1) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_close_lid.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_close_lid.py index 4f6ca6f0ba1..a569c18c970 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_close_lid.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_close_lid.py @@ -11,6 +11,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler, MovementHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.close_lid import ( CloseLidImpl, ) @@ -54,4 +55,4 @@ async def test_close_lid( await tc_hardware.close(), times=1, ) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_block.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_block.py index 0886a56748d..75627b93014 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_block.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_block.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.deactivate_block import ( DeactivateBlockImpl, ) @@ -44,4 +45,4 @@ async def test_deactivate_block( result = await subject.execute(data) decoy.verify(await tc_hardware.deactivate_block(), times=1) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_lid.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_lid.py index 235b5ed16d5..11d6e292370 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_lid.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_deactivate_lid.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.deactivate_lid import ( DeactivateLidImpl, ) @@ -44,4 +45,4 @@ async def test_deactivate_lid( result = await subject.execute(data) decoy.verify(await tc_hardware.deactivate_lid(), times=1) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_open_lid.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_open_lid.py index c6b0e980d9e..8be2cd89c2d 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_open_lid.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_open_lid.py @@ -11,6 +11,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler, MovementHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.open_lid import ( OpenLidImpl, ) @@ -52,4 +53,4 @@ async def test_open_lid( await tc_hardware.open(), times=1, ) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_run_profile.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_run_profile.py index 277856444f7..d97bacf7c85 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_run_profile.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_run_profile.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.run_profile import ( RunProfileImpl, ) @@ -74,4 +75,4 @@ async def test_run_profile( ), times=1, ) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_block_temperature.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_block_temperature.py index ee7b0e99830..89e00592510 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_block_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_block_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.set_target_block_temperature import ( SetTargetBlockTemperatureImpl, ) @@ -66,4 +67,4 @@ async def test_set_target_block_temperature( ), times=1, ) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_lid_temperature.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_lid_temperature.py index 7d6201c65d5..aa558561ac8 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_lid_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_set_target_lid_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.set_target_lid_temperature import ( SetTargetLidTemperatureImpl, ) @@ -55,4 +56,4 @@ async def test_set_target_lid_temperature( result = await subject.execute(data) decoy.verify(await tc_hardware.set_target_lid_temperature(celsius=45.6), times=1) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_block_temperature.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_block_temperature.py index 6ea966e5201..060cc34f2c2 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_block_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_block_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.wait_for_block_temperature import ( WaitForBlockTemperatureImpl, ) @@ -50,4 +51,4 @@ async def test_set_target_block_temperature( tc_module_substate.get_target_block_temperature(), await tc_hardware.wait_for_block_target(), ) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_lid_temperature.py b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_lid_temperature.py index c2a9a8a72ea..08ad7db94a9 100644 --- a/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_lid_temperature.py +++ b/api/tests/opentrons/protocol_engine/commands/thermocycler/test_wait_for_lid_temperature.py @@ -10,6 +10,7 @@ ) from opentrons.protocol_engine.execution import EquipmentHandler from opentrons.protocol_engine.commands import thermocycler as tc_commands +from opentrons.protocol_engine.commands.command import SuccessData from opentrons.protocol_engine.commands.thermocycler.wait_for_lid_temperature import ( WaitForLidTemperatureImpl, ) @@ -50,4 +51,4 @@ async def test_set_target_block_temperature( tc_module_substate.get_target_lid_temperature(), await tc_hardware.wait_for_lid_target(), ) - assert result == expected_result + assert result == SuccessData(public=expected_result, private=None) diff --git a/api/tests/opentrons/protocol_engine/execution/test_command_executor.py b/api/tests/opentrons/protocol_engine/execution/test_command_executor.py index 8f4433a9ebe..2bc4a65d859 100644 --- a/api/tests/opentrons/protocol_engine/execution/test_command_executor.py +++ b/api/tests/opentrons/protocol_engine/execution/test_command_executor.py @@ -1,7 +1,7 @@ """Smoke tests for the CommandExecutor class.""" import asyncio from datetime import datetime -from typing import Any, Optional, Type, cast +from typing import Any, Optional, Type, Union, cast import pytest from decoy import Decoy, matchers @@ -14,6 +14,7 @@ ErrorRecoveryPolicy, ErrorRecoveryType, ) +from opentrons.protocol_engine.errors.error_occurrence import ErrorOccurrence from opentrons.protocol_engine.errors.exceptions import ( EStopActivatedError as PE_EStopActivatedError, ) @@ -32,6 +33,7 @@ CommandStatus, Command, ) +from opentrons.protocol_engine.commands.command import DefinedErrorData, SuccessData from opentrons.protocol_engine.execution import ( CommandExecutor, @@ -210,8 +212,19 @@ class _TestCommandResult(BaseModel): bar: str = "bar" -class _TestCommandImpl(AbstractCommandImpl[_TestCommandParams, _TestCommandResult]): - async def execute(self, params: _TestCommandParams) -> _TestCommandResult: +class _TestCommandDefinedError(ErrorOccurrence): + errorType: str = "testCommandDefinedError" + detail: str = "test command defined error" + + +_TestCommandReturn = Union[ + SuccessData[_TestCommandResult, None], + DefinedErrorData[_TestCommandDefinedError, None], +] + + +class _TestCommandImpl(AbstractCommandImpl[_TestCommandParams, _TestCommandReturn]): + async def execute(self, params: _TestCommandParams) -> _TestCommandReturn: raise NotImplementedError() @@ -237,7 +250,9 @@ async def test_execute( TestCommandImplCls = decoy.mock(func=_TestCommandImpl) command_impl = decoy.mock(cls=_TestCommandImpl) - class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): + class _TestCommand( + BaseCommand[_TestCommandParams, _TestCommandResult, ErrorOccurrence] + ): commandType: str = "testCommand" params: _TestCommandParams result: Optional[_TestCommandResult] @@ -245,7 +260,7 @@ class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): _ImplementationCls: Type[_TestCommandImpl] = TestCommandImplCls command_params = _TestCommandParams() - command_result = _TestCommandResult() + command_result = SuccessData(public=_TestCommandResult(), private=None) queued_command = cast( Command, @@ -289,7 +304,7 @@ class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): completedAt=datetime(year=2023, month=3, day=3), status=CommandStatus.SUCCEEDED, params=command_params, - result=command_result, + result=command_result.public, notes=command_notes, ), ) @@ -322,6 +337,7 @@ class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): tip_handler=mock_tip_handler, run_control=run_control, rail_lights=rail_lights, + model_utils=model_utils, status_bar=status_bar, command_note_adder=command_note_tracker, ) @@ -350,31 +366,27 @@ class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): @pytest.mark.parametrize( - ["command_error", "expected_error", "unexpected_error"], + ["command_error", "expected_error"], [ ( errors.ProtocolEngineError(message="oh no"), matchers.ErrorMatching(errors.ProtocolEngineError, match="oh no"), - False, ), ( EStopActivatedError(), matchers.ErrorMatching(PE_EStopActivatedError), - True, ), ( RuntimeError("oh no"), matchers.ErrorMatching(PythonException, match="oh no"), - True, ), ( asyncio.CancelledError(), matchers.ErrorMatching(errors.RunStoppedError), - False, ), ], ) -async def test_execute_raises_protocol_engine_error( +async def test_execute_undefined_error( decoy: Decoy, hardware_api: HardwareControlAPI, state_store: StateStore, @@ -394,13 +406,14 @@ async def test_execute_raises_protocol_engine_error( error_recovery_policy: ErrorRecoveryPolicy, command_error: Exception, expected_error: Any, - unexpected_error: bool, ) -> None: - """It should handle an error occuring during execution.""" + """It should handle an undefined error raised from execution.""" TestCommandImplCls = decoy.mock(func=_TestCommandImpl) command_impl = decoy.mock(cls=_TestCommandImpl) - class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): + class _TestCommand( + BaseCommand[_TestCommandParams, _TestCommandResult, ErrorOccurrence] + ): commandType: str = "testCommand" params: _TestCommandParams result: Optional[_TestCommandResult] @@ -469,6 +482,7 @@ class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): tip_handler=mock_tip_handler, run_control=run_control, rail_lights=rail_lights, + model_utils=model_utils, status_bar=status_bar, command_note_adder=command_note_tracker, ) @@ -484,7 +498,7 @@ class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): datetime(year=2023, month=3, day=3), ) - decoy.when(error_recovery_policy(matchers.Anything(), expected_error)).then_return( + decoy.when(error_recovery_policy(matchers.Anything(), None)).then_return( ErrorRecoveryType.WAIT_FOR_RECOVERY ) @@ -505,3 +519,140 @@ class _TestCommand(BaseCommand[_TestCommandParams, _TestCommandResult]): ) ), ) + + +async def test_execute_defined_error( + decoy: Decoy, + subject: CommandExecutor, + hardware_api: HardwareControlAPI, + state_store: StateStore, + action_dispatcher: ActionDispatcher, + equipment: EquipmentHandler, + movement: MovementHandler, + mock_gantry_mover: GantryMover, + labware_movement: LabwareMovementHandler, + pipetting: PipettingHandler, + mock_tip_handler: TipHandler, + run_control: RunControlHandler, + rail_lights: RailLightsHandler, + status_bar: StatusBarHandler, + model_utils: ModelUtils, + command_note_tracker: CommandNoteTracker, + error_recovery_policy: ErrorRecoveryPolicy, +) -> None: + """It should handle a defined error returned from execution.""" + TestCommandImplCls = decoy.mock(func=_TestCommandImpl) + command_impl = decoy.mock(cls=_TestCommandImpl) + + class _TestCommand( + BaseCommand[_TestCommandParams, _TestCommandResult, ErrorOccurrence] + ): + commandType: str = "testCommand" + params: _TestCommandParams + result: Optional[_TestCommandResult] + + _ImplementationCls: Type[_TestCommandImpl] = TestCommandImplCls + + command_params = _TestCommandParams() + command_id = "command-id" + created_at = datetime(year=2021, month=1, day=1) + started_at = datetime(year=2022, month=2, day=2) + failed_at = datetime(year=2023, month=3, day=3) + error_id = "error-id" + returned_error = DefinedErrorData( + public=_TestCommandDefinedError(id=error_id, createdAt=failed_at), + private=None, + ) + queued_command = cast( + Command, + _TestCommand( + id=command_id, + key="command-key", + createdAt=created_at, + status=CommandStatus.QUEUED, + params=command_params, + ), + ) + running_command = cast( + Command, + _TestCommand( + id=command_id, + key="command-key", + createdAt=created_at, + startedAt=started_at, + status=CommandStatus.RUNNING, + params=command_params, + ), + ) + command_notes = [ + CommandNote( + noteKind="warning", + shortMessage="hello", + longMessage="test command note", + source="test", + ) + ] + + decoy.when(state_store.commands.get(command_id=command_id)).then_return( + queued_command + ) + + decoy.when( + action_dispatcher.dispatch( + RunCommandAction(command_id=command_id, started_at=started_at) + ) + ).then_do( + lambda _: decoy.when( + state_store.commands.get(command_id=command_id) + ).then_return(running_command) + ) + + decoy.when( + queued_command._ImplementationCls( + state_view=state_store, + hardware_api=hardware_api, + equipment=equipment, + movement=movement, + gantry_mover=mock_gantry_mover, + labware_movement=labware_movement, + pipetting=pipetting, + tip_handler=mock_tip_handler, + run_control=run_control, + rail_lights=rail_lights, + model_utils=model_utils, + status_bar=status_bar, + command_note_adder=command_note_tracker, + ) + ).then_return( + command_impl # type: ignore[arg-type] + ) + + decoy.when(command_note_tracker.get_notes()).then_return(command_notes) + + decoy.when(await command_impl.execute(command_params)).then_return(returned_error) + + decoy.when(model_utils.generate_id()).then_return(error_id) + decoy.when(model_utils.get_timestamp()).then_return(started_at, failed_at) + + decoy.when( + error_recovery_policy( + matchers.Anything(), + returned_error, # type: ignore[arg-type] + ) + ).then_return(ErrorRecoveryType.WAIT_FOR_RECOVERY) + + await subject.execute("command-id") + + decoy.verify( + action_dispatcher.dispatch( + FailCommandAction( + command_id="command-id", + running_command=running_command, + error_id="error-id", + failed_at=datetime(year=2023, month=3, day=3), + error=returned_error, # type: ignore[arg-type] + type=ErrorRecoveryType.WAIT_FOR_RECOVERY, + notes=command_notes, + ) + ) + ) diff --git a/api/tests/opentrons/protocol_engine/state/test_change_notifier.py b/api/tests/opentrons/protocol_engine/state/test_change_notifier.py deleted file mode 100644 index 4967e6d254e..00000000000 --- a/api/tests/opentrons/protocol_engine/state/test_change_notifier.py +++ /dev/null @@ -1,56 +0,0 @@ -"""Tests for the ChangeNotifier interface.""" -import asyncio -import pytest -from opentrons.protocol_engine.state.change_notifier import ChangeNotifier - - -async def test_single_subscriber() -> None: - """Test that a single subscriber can wait for a notification.""" - subject = ChangeNotifier() - result = asyncio.create_task(subject.wait()) - - # ensure that the wait actually waits by delaying and - # checking that the task has not resolved - await asyncio.sleep(0.1) - assert result.done() is False - - asyncio.get_running_loop().call_soon(subject.notify) - - await result - - -@pytest.mark.parametrize("_test_repetition", range(10)) -async def test_multiple_subscribers(_test_repetition: int) -> None: - """Test that multiple subscribers can wait for a notification. - - This test checks that the subscribers are awoken in the order they - subscribed. This may or may not be guarenteed according to the - implementations of both ChangeNotifier and the event loop. - This test functions as a canary, given that our code may relies - on this ordering for determinism. - - This test runs multiple times to check for flakyness. - """ - subject = ChangeNotifier() - results = [] - - async def _do_task_1() -> None: - await subject.wait() - results.append(1) - - async def _do_task_2() -> None: - await subject.wait() - results.append(2) - - async def _do_task_3() -> None: - await subject.wait() - results.append(3) - - task_1 = asyncio.create_task(_do_task_1()) - task_2 = asyncio.create_task(_do_task_2()) - task_3 = asyncio.create_task(_do_task_3()) - - asyncio.get_running_loop().call_soon(subject.notify) - await asyncio.gather(task_1, task_2, task_3) - - assert results == [1, 2, 3] diff --git a/api/tests/opentrons/protocol_engine/state/test_command_state.py b/api/tests/opentrons/protocol_engine/state/test_command_state.py index 01b9186ac9b..2e65595fd08 100644 --- a/api/tests/opentrons/protocol_engine/state/test_command_state.py +++ b/api/tests/opentrons/protocol_engine/state/test_command_state.py @@ -356,8 +356,8 @@ def test_error_recovery_type_tracking() -> None: assert view.get_error_recovery_type("c2") == ErrorRecoveryType.FAIL_RUN -def test_get_recovery_in_progress_for_command() -> None: - """It should return whether error recovery is in progress for the given command.""" +def test_recovery_target_tracking() -> None: + """It should keep track of the command currently undergoing error recovery.""" subject = CommandStore(config=_make_config(), is_door_open=False) subject_view = CommandView(subject.state) @@ -382,12 +382,16 @@ def test_get_recovery_in_progress_for_command() -> None: subject.handle_action(fail_1) # c1 failed recoverably and we're currently recovering from it. + recovery_target = subject_view.get_recovery_target() + assert recovery_target is not None + assert recovery_target.command_id == "c1" assert subject_view.get_recovery_in_progress_for_command("c1") resume_from_1_recovery = actions.ResumeFromRecoveryAction() subject.handle_action(resume_from_1_recovery) # c1 failed recoverably, but we've already completed its recovery. + assert subject_view.get_recovery_target() is None assert not subject_view.get_recovery_in_progress_for_command("c1") queue_2 = actions.QueueCommandAction( @@ -411,6 +415,9 @@ def test_get_recovery_in_progress_for_command() -> None: subject.handle_action(fail_2) # c2 failed recoverably and we're currently recovering from it. + recovery_target = subject_view.get_recovery_target() + assert recovery_target is not None + assert recovery_target.command_id == "c2" assert subject_view.get_recovery_in_progress_for_command("c2") # ...and that means we're *not* currently recovering from c1, # even though it failed recoverably before. @@ -439,7 +446,8 @@ def test_get_recovery_in_progress_for_command() -> None: subject.handle_action(fail_3) # c3 failed, but not recoverably. - assert not subject_view.get_recovery_in_progress_for_command("c2") + assert subject_view.get_recovery_target() is None + assert not subject_view.get_recovery_in_progress_for_command("c3") def test_final_state_after_estop() -> None: diff --git a/api/tests/opentrons/protocol_engine/state/test_command_view_old.py b/api/tests/opentrons/protocol_engine/state/test_command_view_old.py index 19a2515a3e6..0be2beba529 100644 --- a/api/tests/opentrons/protocol_engine/state/test_command_view_old.py +++ b/api/tests/opentrons/protocol_engine/state/test_command_view_old.py @@ -25,7 +25,7 @@ CommandState, CommandView, CommandSlice, - CurrentCommand, + CommandPointer, RunResult, QueueStatus, ) @@ -846,7 +846,7 @@ def test_get_current() -> None: queued_command_ids=[], commands=[command], ) - assert subject.get_current() == CurrentCommand( + assert subject.get_current() == CommandPointer( index=0, command_id="command-id", command_key="command-key", @@ -866,7 +866,7 @@ def test_get_current() -> None: subject = get_command_view(commands=[command_1, command_2]) subject.state.command_history._set_terminal_command_id(command_1.id) - assert subject.get_current() == CurrentCommand( + assert subject.get_current() == CommandPointer( index=1, command_id="command-id-2", command_key="key-2", @@ -886,7 +886,7 @@ def test_get_current() -> None: subject = get_command_view(commands=[command_1, command_2]) subject.state.command_history._set_terminal_command_id(command_1.id) - assert subject.get_current() == CurrentCommand( + assert subject.get_current() == CommandPointer( index=1, command_id="command-id-2", command_key="key-2", diff --git a/api/tests/opentrons/protocol_engine/state/test_state_store.py b/api/tests/opentrons/protocol_engine/state/test_state_store.py index 515cbbd81e1..b853b47733f 100644 --- a/api/tests/opentrons/protocol_engine/state/test_state_store.py +++ b/api/tests/opentrons/protocol_engine/state/test_state_store.py @@ -6,10 +6,10 @@ from decoy import Decoy from opentrons_shared_data.deck.dev_types import DeckDefinitionV5 +from opentrons.util.change_notifier import ChangeNotifier from opentrons.protocol_engine.actions import PlayAction from opentrons.protocol_engine.state import State, StateStore, Config -from opentrons.protocol_engine.state.change_notifier import ChangeNotifier from opentrons.protocol_engine.types import DeckType diff --git a/api/tests/opentrons/protocol_runner/smoke_tests/conftest.py b/api/tests/opentrons/protocol_runner/smoke_tests/conftest.py index a49625fc258..5a758922e59 100644 --- a/api/tests/opentrons/protocol_runner/smoke_tests/conftest.py +++ b/api/tests/opentrons/protocol_runner/smoke_tests/conftest.py @@ -117,6 +117,58 @@ def run(ctx): return path +@pytest.fixture() +def python_protocol_file_with_run_time_params(tmp_path: Path) -> Path: + """Get minimal Python protocol input "file" with run time parameters.""" + path = tmp_path / "protocol-name.py" + path.write_text( + textwrap.dedent( + """ + # my protocol + metadata = { + "apiLevel": "2.18", + } + def add_parameters(params): + params.add_float( + display_name="Aspirate volume", + variable_name="aspirate_volume", + default=25.5, + minimum=10, + maximum=50, + ) + params.add_str( + display_name="Mount", + variable_name="mount", + choices=[ + {"display_name": "Left Mount", "value": "left"}, + {"display_name": "Right Mount", "value": "right"}, + ], + default="left", + ) + def run(ctx): + pipette = ctx.load_instrument( + instrument_name="p300_single", + mount=ctx.params.mount, + ) + tip_rack = ctx.load_labware( + load_name="opentrons_96_tiprack_300ul", + location="1", + ) + reservoir = ctx.load_labware( + load_name="nest_1_reservoir_195ml", + location=2, + ) + pipette.pick_up_tip( + location=tip_rack.wells_by_name()["A1"], + ) + pipette.aspirate(ctx.params.aspirate_volume, reservoir.wells()[0]) + """ + ) + ) + + return path + + @pytest.fixture() def legacy_python_protocol_file(tmp_path: Path) -> Path: """Get an on-disk, minimal Python protocol fixture.""" diff --git a/api/tests/opentrons/protocol_runner/smoke_tests/test_protocol_runner.py b/api/tests/opentrons/protocol_runner/smoke_tests/test_protocol_runner.py index 7253a6e2f91..c615b8e55c8 100644 --- a/api/tests/opentrons/protocol_runner/smoke_tests/test_protocol_runner.py +++ b/api/tests/opentrons/protocol_runner/smoke_tests/test_protocol_runner.py @@ -23,6 +23,7 @@ ModuleModel, commands, DeckPoint, + EngineStatus, ) from opentrons.protocol_reader import ProtocolReader from opentrons.protocol_runner import create_simulating_runner @@ -298,3 +299,86 @@ async def test_runner_with_legacy_json(legacy_json_protocol_file: Path) -> None: ) assert expected_command in commands_result + + +async def test_runner_with_python_and_run_time_parameters( + python_protocol_file_with_run_time_params: Path, +) -> None: + """It should run a Python protocol on the PythonAndLegacyRunner.""" + protocol_reader = ProtocolReader() + protocol_source = await protocol_reader.read_saved( + files=[python_protocol_file_with_run_time_params], + directory=None, + ) + + subject = await create_simulating_runner( + robot_type="OT-2 Standard", + protocol_config=protocol_source.config, + ) + result = await subject.run( + deck_configuration=[], + protocol_source=protocol_source, + run_time_param_values={"aspirate_volume": 40.2}, + ) + commands_result = result.commands + pipettes_result = result.state_summary.pipettes + tiprack_result = result.state_summary.labware + + pipette_id_captor = matchers.Captor() + tiprack_id_captor = matchers.Captor() + reservoir_id_captor = matchers.Captor() + + expected_pipette = LoadedPipette.construct( + id=pipette_id_captor, + pipetteName=PipetteNameType.P300_SINGLE, + mount=MountType.LEFT, + ) + + expected_tiprack = LoadedLabware.construct( + id=tiprack_id_captor, + location=DeckSlotLocation(slotName=DeckSlotName.SLOT_1), + loadName="opentrons_96_tiprack_300ul", + definitionUri="opentrons/opentrons_96_tiprack_300ul/1", + # fixme(mm, 2021-11-11): We should smoke-test that the engine picks up labware + # offsets, but it's unclear to me what the best way of doing that is, since + # we don't have access to the engine here to add offsets to it. + offsetId=None, + ) + + expected_reservoir = LoadedLabware.construct( + id=reservoir_id_captor, + location=DeckSlotLocation(slotName=DeckSlotName.SLOT_2), + loadName="nest_1_reservoir_195ml", + definitionUri="opentrons/nest_1_reservoir_195ml/2", + # fixme(mm, 2021-11-11): We should smoke-test that the engine picks up labware + # offsets, but it's unclear to me what the best way of doing that is, since + # we don't have access to the engine here to add offsets to it. + offsetId=None, + ) + + assert expected_pipette in pipettes_result + assert expected_tiprack in tiprack_result + assert expected_reservoir in tiprack_result + + assert result.state_summary.status == EngineStatus.SUCCEEDED + + expected_command = commands.Aspirate.construct( + id=matchers.IsA(str), + key=matchers.IsA(str), + status=commands.CommandStatus.SUCCEEDED, + createdAt=matchers.IsA(datetime), + startedAt=matchers.IsA(datetime), + completedAt=matchers.IsA(datetime), + params=commands.AspirateParams.construct( + labwareId=reservoir_id_captor.value, + wellName=matchers.IsA(str), + wellLocation=matchers.Anything(), + flowRate=matchers.IsA(float), + volume=40.2, + pipetteId=pipette_id_captor.value, + ), + notes=[], + result=matchers.Anything(), + ) + + assert expected_command in commands_result diff --git a/api/tests/opentrons/protocol_runner/test_legacy_command_mapper.py b/api/tests/opentrons/protocol_runner/test_legacy_command_mapper.py index a0581001a82..ada52714ee6 100644 --- a/api/tests/opentrons/protocol_runner/test_legacy_command_mapper.py +++ b/api/tests/opentrons/protocol_runner/test_legacy_command_mapper.py @@ -7,7 +7,13 @@ from decoy import matchers, Decoy from opentrons.hardware_control.dev_types import PipetteDict +from opentrons.hardware_control.modules.types import TemperatureModuleModel from opentrons.legacy_commands.types import CommentMessage, PauseMessage, CommandMessage +from opentrons.protocol_api.core.legacy.load_info import ( + LabwareLoadInfo as LegacyLabwareLoadInfo, + InstrumentLoadInfo as LegacyInstrumentLoadInfo, + ModuleLoadInfo as LegacyModuleLoadInfo, +) from opentrons.protocol_engine import ( DeckSlotLocation, ModuleLocation, @@ -29,12 +35,6 @@ LegacyCommandMapper, LegacyCommandParams, ) -from opentrons.protocol_runner.legacy_wrappers import ( - LegacyInstrumentLoadInfo, - LegacyLabwareLoadInfo, - LegacyModuleLoadInfo, - LegacyTemperatureModuleModel, -) from opentrons_shared_data.labware.dev_types import LabwareDefinition from opentrons_shared_data.module.dev_types import ModuleDefinitionV3 from opentrons_shared_data.pipette.dev_types import PipetteNameType @@ -396,8 +396,8 @@ def test_map_module_load( """It should correctly map a module load.""" test_definition = ModuleDefinition.parse_obj(minimal_module_def) input = LegacyModuleLoadInfo( - requested_model=LegacyTemperatureModuleModel.TEMPERATURE_V1, - loaded_model=LegacyTemperatureModuleModel.TEMPERATURE_V2, + requested_model=TemperatureModuleModel.TEMPERATURE_V1, + loaded_model=TemperatureModuleModel.TEMPERATURE_V2, deck_slot=DeckSlotName.SLOT_1, configuration="conf", module_serial="module-serial", diff --git a/api/tests/opentrons/protocol_runner/test_legacy_context_plugin.py b/api/tests/opentrons/protocol_runner/test_legacy_context_plugin.py index f11676bcd37..368a34a297f 100644 --- a/api/tests/opentrons/protocol_runner/test_legacy_context_plugin.py +++ b/api/tests/opentrons/protocol_runner/test_legacy_context_plugin.py @@ -17,12 +17,10 @@ from opentrons.legacy_broker import LegacyBroker from opentrons.util.broker import ReadOnlyBroker +from opentrons.protocol_api.core.legacy.load_info import LoadInfo, LabwareLoadInfo + from opentrons.protocol_runner.legacy_command_mapper import LegacyCommandMapper from opentrons.protocol_runner.legacy_context_plugin import LegacyContextPlugin -from opentrons.protocol_runner.legacy_wrappers import ( - LegacyLoadInfo, - LegacyLabwareLoadInfo, -) from opentrons.types import DeckSlotName @@ -38,9 +36,9 @@ def mock_legacy_broker(decoy: Decoy) -> LegacyBroker: @pytest.fixture -def mock_equipment_broker(decoy: Decoy) -> ReadOnlyBroker[LegacyLoadInfo]: +def mock_equipment_broker(decoy: Decoy) -> ReadOnlyBroker[LoadInfo]: """Get a mocked out `equipment_broker: Broker` dependency.""" - return decoy.mock(cls=ReadOnlyBroker[LegacyLoadInfo]) + return decoy.mock(cls=ReadOnlyBroker[LoadInfo]) @pytest.fixture @@ -64,7 +62,7 @@ def mock_action_dispatcher(decoy: Decoy) -> pe_actions.ActionDispatcher: @pytest.fixture def subject( mock_legacy_broker: LegacyBroker, - mock_equipment_broker: ReadOnlyBroker[LegacyLoadInfo], + mock_equipment_broker: ReadOnlyBroker[LoadInfo], mock_legacy_command_mapper: LegacyCommandMapper, mock_state_view: StateView, mock_action_dispatcher: pe_actions.ActionDispatcher, @@ -92,7 +90,7 @@ def __exit__(self, type: object, value: object, traceback: object) -> None: async def test_broker_subscribe_unsubscribe( decoy: Decoy, mock_legacy_broker: LegacyBroker, - mock_equipment_broker: ReadOnlyBroker[LegacyLoadInfo], + mock_equipment_broker: ReadOnlyBroker[LoadInfo], subject: LegacyContextPlugin, ) -> None: """It should subscribe to the brokers on setup and unsubscribe on teardown.""" @@ -125,7 +123,7 @@ async def test_broker_subscribe_unsubscribe( async def test_command_broker_messages( decoy: Decoy, mock_legacy_broker: LegacyBroker, - mock_equipment_broker: ReadOnlyBroker[LegacyLoadInfo], + mock_equipment_broker: ReadOnlyBroker[LoadInfo], mock_legacy_command_mapper: LegacyCommandMapper, mock_action_dispatcher: pe_actions.ActionDispatcher, subject: LegacyContextPlugin, @@ -181,7 +179,7 @@ async def test_command_broker_messages( async def test_equipment_broker_messages( decoy: Decoy, mock_legacy_broker: LegacyBroker, - mock_equipment_broker: ReadOnlyBroker[LegacyLoadInfo], + mock_equipment_broker: ReadOnlyBroker[LoadInfo], mock_legacy_command_mapper: LegacyCommandMapper, mock_action_dispatcher: pe_actions.ActionDispatcher, subject: LegacyContextPlugin, @@ -199,9 +197,9 @@ async def test_equipment_broker_messages( subject.setup() - handler: Callable[[LegacyLabwareLoadInfo], None] = labware_handler_captor.value + handler: Callable[[LabwareLoadInfo], None] = labware_handler_captor.value - load_info = LegacyLabwareLoadInfo( + load_info = LabwareLoadInfo( labware_definition=minimal_labware_def, labware_namespace="some_namespace", labware_load_name="some_load_name", diff --git a/api/tests/opentrons/protocol_runner/test_protocol_runner.py b/api/tests/opentrons/protocol_runner/test_protocol_runner.py index 68e215bf3dd..7ea37513890 100644 --- a/api/tests/opentrons/protocol_runner/test_protocol_runner.py +++ b/api/tests/opentrons/protocol_runner/test_protocol_runner.py @@ -5,18 +5,23 @@ from pytest_lazyfixture import lazy_fixture # type: ignore[import-untyped] from decoy import Decoy, matchers from pathlib import Path -from typing import List, cast, Optional, Union, Type +from typing import List, cast, Union, Type from opentrons_shared_data.labware.labware_definition import LabwareDefinition +from opentrons_shared_data.labware.dev_types import ( + LabwareDefinition as LabwareDefinitionTypedDict, +) from opentrons_shared_data.protocol.models import ProtocolSchemaV6, ProtocolSchemaV7 from opentrons_shared_data.protocol.dev_types import ( JsonProtocol as LegacyJsonProtocolDict, ) from opentrons.hardware_control import API as HardwareAPI from opentrons.legacy_broker import LegacyBroker +from opentrons.protocol_api import ProtocolContext from opentrons.protocol_engine.types import PostRunHardwareState from opentrons.protocols.api_support.types import APIVersion from opentrons.protocols.parse import PythonParseMode +from opentrons.protocols.types import PythonProtocol, JsonProtocol from opentrons.util.broker import Broker from opentrons import protocol_reader @@ -42,14 +47,10 @@ from opentrons.protocol_runner.json_file_reader import JsonFileReader from opentrons.protocol_runner.json_translator import JsonTranslator from opentrons.protocol_runner.legacy_context_plugin import LegacyContextPlugin -from opentrons.protocol_runner.legacy_wrappers import ( - LegacyFileReader, - LegacyContextCreator, - LegacyExecutor, - LegacyPythonProtocol, - LegacyJsonProtocol, - LegacyProtocolContext, - LegacyLabwareDefinition, +from opentrons.protocol_runner.python_protocol_wrappers import ( + PythonAndLegacyFileReader, + ProtocolContextCreator, + PythonProtocolExecutor, ) @@ -84,21 +85,21 @@ def json_translator(decoy: Decoy) -> JsonTranslator: @pytest.fixture -def legacy_file_reader(decoy: Decoy) -> LegacyFileReader: - """Get a mocked out LegacyFileReader dependency.""" - return decoy.mock(cls=LegacyFileReader) +def python_and_legacy_file_reader(decoy: Decoy) -> PythonAndLegacyFileReader: + """Get a mocked out PythonAndLegacyFileReader dependency.""" + return decoy.mock(cls=PythonAndLegacyFileReader) @pytest.fixture -def legacy_context_creator(decoy: Decoy) -> LegacyContextCreator: - """Get a mocked out LegacyContextCreator dependency.""" - return decoy.mock(cls=LegacyContextCreator) +def protocol_context_creator(decoy: Decoy) -> ProtocolContextCreator: + """Get a mocked out ProtocolContextCreator dependency.""" + return decoy.mock(cls=ProtocolContextCreator) @pytest.fixture -def legacy_executor(decoy: Decoy) -> LegacyExecutor: - """Get a mocked out LegacyExecutor dependency.""" - return decoy.mock(cls=LegacyExecutor) +def python_protocol_executor(decoy: Decoy) -> PythonProtocolExecutor: + """Get a mocked out PythonProtocolExecutor dependency.""" + return decoy.mock(cls=PythonProtocolExecutor) @pytest.fixture(autouse=True) @@ -132,22 +133,22 @@ def json_runner_subject( @pytest.fixture -def legacy_python_runner_subject( +def python_runner_subject( protocol_engine: ProtocolEngine, hardware_api: HardwareAPI, task_queue: TaskQueue, - legacy_file_reader: LegacyFileReader, - legacy_context_creator: LegacyContextCreator, - legacy_executor: LegacyExecutor, + python_and_legacy_file_reader: PythonAndLegacyFileReader, + protocol_context_creator: ProtocolContextCreator, + python_protocol_executor: PythonProtocolExecutor, ) -> PythonAndLegacyRunner: """Get a PythonAndLegacyRunner test subject with mocked dependencies.""" return PythonAndLegacyRunner( protocol_engine=protocol_engine, hardware_api=hardware_api, task_queue=task_queue, - legacy_file_reader=legacy_file_reader, - legacy_context_creator=legacy_context_creator, - legacy_executor=legacy_executor, + python_and_legacy_file_reader=python_and_legacy_file_reader, + protocol_context_creator=protocol_context_creator, + python_protocol_executor=python_protocol_executor, ) @@ -173,7 +174,6 @@ def live_runner_subject( (PythonProtocolConfig(api_version=APIVersion(2, 14)), PythonAndLegacyRunner), (JsonProtocolConfig(schema_version=5), PythonAndLegacyRunner), (PythonProtocolConfig(api_version=APIVersion(2, 13)), PythonAndLegacyRunner), - (None, LiveRunner), ], ) def test_create_protocol_runner( @@ -182,10 +182,10 @@ def test_create_protocol_runner( task_queue: TaskQueue, json_file_reader: JsonFileReader, json_translator: JsonTranslator, - legacy_file_reader: LegacyFileReader, - legacy_context_creator: LegacyContextCreator, - legacy_executor: LegacyExecutor, - config: Optional[Union[JsonProtocolConfig, PythonProtocolConfig]], + python_and_legacy_file_reader: PythonAndLegacyFileReader, + protocol_context_creator: ProtocolContextCreator, + python_protocol_executor: PythonProtocolExecutor, + config: Union[JsonProtocolConfig, PythonProtocolConfig], runner_type: Type[AnyRunner], ) -> None: """It should return protocol runner type depending on the config.""" @@ -206,7 +206,7 @@ def test_create_protocol_runner( "subject", [ (lazy_fixture("json_runner_subject")), - (lazy_fixture("legacy_python_runner_subject")), + (lazy_fixture("python_runner_subject")), (lazy_fixture("live_runner_subject")), ], ) @@ -226,7 +226,7 @@ def test_play_starts_run( "subject", [ (lazy_fixture("json_runner_subject")), - (lazy_fixture("legacy_python_runner_subject")), + (lazy_fixture("python_runner_subject")), (lazy_fixture("live_runner_subject")), ], ) @@ -245,7 +245,7 @@ def test_pause( "subject", [ (lazy_fixture("json_runner_subject")), - (lazy_fixture("legacy_python_runner_subject")), + (lazy_fixture("python_runner_subject")), (lazy_fixture("live_runner_subject")), ], ) @@ -268,7 +268,7 @@ async def test_stop( "subject", [ (lazy_fixture("json_runner_subject")), - (lazy_fixture("legacy_python_runner_subject")), + (lazy_fixture("python_runner_subject")), (lazy_fixture("live_runner_subject")), ], ) @@ -297,7 +297,7 @@ async def test_stop_when_run_never_started( "subject", [ (lazy_fixture("json_runner_subject")), - (lazy_fixture("legacy_python_runner_subject")), + (lazy_fixture("python_runner_subject")), (lazy_fixture("live_runner_subject")), ], ) @@ -521,12 +521,12 @@ async def test_load_json_runner( async def test_load_legacy_python( decoy: Decoy, - legacy_file_reader: LegacyFileReader, - legacy_context_creator: LegacyContextCreator, - legacy_executor: LegacyExecutor, + python_and_legacy_file_reader: PythonAndLegacyFileReader, + protocol_context_creator: ProtocolContextCreator, + python_protocol_executor: PythonProtocolExecutor, task_queue: TaskQueue, protocol_engine: ProtocolEngine, - legacy_python_runner_subject: PythonAndLegacyRunner, + python_runner_subject: PythonAndLegacyRunner, ) -> None: """It should load a legacy context-based Python protocol.""" labware_definition = LabwareDefinition.construct() # type: ignore[call-arg] @@ -541,9 +541,9 @@ async def test_load_legacy_python( content_hash="abc123", ) - extra_labware = {"definition-uri": cast(LegacyLabwareDefinition, {})} + extra_labware = {"definition-uri": cast(LabwareDefinitionTypedDict, {})} - legacy_protocol = LegacyPythonProtocol( + legacy_protocol = PythonProtocol( text="", contents="", filename="protocol.py", @@ -556,13 +556,13 @@ async def test_load_legacy_python( extra_labware=extra_labware, ) - legacy_context = decoy.mock(cls=LegacyProtocolContext) + protocol_context = decoy.mock(cls=ProtocolContext) decoy.when( await protocol_reader.extract_labware_definitions(legacy_protocol_source) ).then_return([labware_definition]) decoy.when( - legacy_file_reader.read( + python_and_legacy_file_reader.read( protocol_source=legacy_protocol_source, labware_definitions=[labware_definition], python_parse_mode=PythonParseMode.ALLOW_LEGACY_METADATA_AND_REQUIREMENTS, @@ -570,14 +570,14 @@ async def test_load_legacy_python( ).then_return(legacy_protocol) broker_captor = matchers.Captor() decoy.when( - legacy_context_creator.create( + protocol_context_creator.create( protocol=legacy_protocol, broker=broker_captor, equipment_broker=matchers.IsA(Broker), ) - ).then_return(legacy_context) + ).then_return(protocol_context) - await legacy_python_runner_subject.load( + await python_runner_subject.load( legacy_protocol_source, python_parse_mode=PythonParseMode.ALLOW_LEGACY_METADATA_AND_REQUIREMENTS, run_time_param_values=None, @@ -591,7 +591,7 @@ async def test_load_legacy_python( task_queue.set_run_func(run_func_captor), ) - assert broker_captor.value is legacy_python_runner_subject.broker + assert broker_captor.value is python_runner_subject.broker # Verify that the run func calls the right things: run_func = run_func_captor.value @@ -600,24 +600,23 @@ async def test_load_legacy_python( await protocol_engine.add_and_execute_command( request=pe_commands.HomeCreate(params=pe_commands.HomeParams(axes=None)) ), - await legacy_executor.execute( + await python_protocol_executor.execute( protocol=legacy_protocol, - context=legacy_context, - parameter_context=legacy_python_runner_subject._parameter_context, - run_time_param_values=None, + context=protocol_context, + run_time_parameters_with_overrides=None, ), ) async def test_load_python_with_pe_papi_core( decoy: Decoy, - legacy_file_reader: LegacyFileReader, - legacy_context_creator: LegacyContextCreator, + python_and_legacy_file_reader: PythonAndLegacyFileReader, + protocol_context_creator: ProtocolContextCreator, protocol_engine: ProtocolEngine, - legacy_python_runner_subject: PythonAndLegacyRunner, + python_runner_subject: PythonAndLegacyRunner, ) -> None: """It should load a legacy context-based Python protocol.""" - legacy_protocol_source = ProtocolSource( + protocol_source = ProtocolSource( directory=Path("/dev/null"), main_file=Path("/dev/null/abc.py"), files=[], @@ -627,7 +626,7 @@ async def test_load_python_with_pe_papi_core( content_hash="abc123", ) - legacy_protocol = LegacyPythonProtocol( + protocol = PythonProtocol( text="", contents="", filename="protocol.py", @@ -640,43 +639,43 @@ async def test_load_python_with_pe_papi_core( extra_labware=None, ) - legacy_context = decoy.mock(cls=LegacyProtocolContext) + protocol_context = decoy.mock(cls=ProtocolContext) decoy.when( - await protocol_reader.extract_labware_definitions(legacy_protocol_source) + await protocol_reader.extract_labware_definitions(protocol_source) ).then_return([]) decoy.when( - legacy_file_reader.read( - protocol_source=legacy_protocol_source, + python_and_legacy_file_reader.read( + protocol_source=protocol_source, labware_definitions=[], python_parse_mode=PythonParseMode.ALLOW_LEGACY_METADATA_AND_REQUIREMENTS, ) - ).then_return(legacy_protocol) + ).then_return(protocol) broker_captor = matchers.Captor() decoy.when( - legacy_context_creator.create( - protocol=legacy_protocol, broker=broker_captor, equipment_broker=None + protocol_context_creator.create( + protocol=protocol, broker=broker_captor, equipment_broker=None ) - ).then_return(legacy_context) + ).then_return(protocol_context) - await legacy_python_runner_subject.load( - legacy_protocol_source, + await python_runner_subject.load( + protocol_source, python_parse_mode=PythonParseMode.ALLOW_LEGACY_METADATA_AND_REQUIREMENTS, run_time_param_values=None, ) decoy.verify(protocol_engine.add_plugin(matchers.IsA(LegacyContextPlugin)), times=0) - assert broker_captor.value is legacy_python_runner_subject.broker + assert broker_captor.value is python_runner_subject.broker async def test_load_legacy_json( decoy: Decoy, - legacy_file_reader: LegacyFileReader, - legacy_context_creator: LegacyContextCreator, - legacy_executor: LegacyExecutor, + python_and_legacy_file_reader: PythonAndLegacyFileReader, + protocol_context_creator: ProtocolContextCreator, + python_protocol_executor: PythonProtocolExecutor, task_queue: TaskQueue, protocol_engine: ProtocolEngine, - legacy_python_runner_subject: PythonAndLegacyRunner, + python_runner_subject: PythonAndLegacyRunner, ) -> None: """It should load a legacy context-based JSON protocol.""" labware_definition = LabwareDefinition.construct() # type: ignore[call-arg] @@ -691,7 +690,7 @@ async def test_load_legacy_json( content_hash="abc123", ) - legacy_protocol = LegacyJsonProtocol( + legacy_protocol = JsonProtocol( text="{}", contents=cast(LegacyJsonProtocolDict, {}), filename="protocol.json", @@ -701,27 +700,27 @@ async def test_load_legacy_json( metadata={"protocolName": "A Very Impressive Protocol"}, ) - legacy_context = decoy.mock(cls=LegacyProtocolContext) + protocol_context = decoy.mock(cls=ProtocolContext) decoy.when( await protocol_reader.extract_labware_definitions(legacy_protocol_source) ).then_return([labware_definition]) decoy.when( - legacy_file_reader.read( + python_and_legacy_file_reader.read( protocol_source=legacy_protocol_source, labware_definitions=[labware_definition], python_parse_mode=PythonParseMode.ALLOW_LEGACY_METADATA_AND_REQUIREMENTS, ) ).then_return(legacy_protocol) decoy.when( - legacy_context_creator.create( + protocol_context_creator.create( legacy_protocol, broker=matchers.IsA(LegacyBroker), equipment_broker=matchers.IsA(Broker), ) - ).then_return(legacy_context) + ).then_return(protocol_context) - await legacy_python_runner_subject.load( + await python_runner_subject.load( legacy_protocol_source, python_parse_mode=PythonParseMode.ALLOW_LEGACY_METADATA_AND_REQUIREMENTS, run_time_param_values=None, @@ -742,11 +741,10 @@ async def test_load_legacy_json( await protocol_engine.add_and_execute_command( request=pe_commands.HomeCreate(params=pe_commands.HomeParams(axes=None)) ), - await legacy_executor.execute( + await python_protocol_executor.execute( protocol=legacy_protocol, - context=legacy_context, - parameter_context=legacy_python_runner_subject._parameter_context, - run_time_param_values=None, + context=protocol_context, + run_time_parameters_with_overrides=None, ), ) @@ -756,16 +754,16 @@ async def test_run_python_runner( hardware_api: HardwareAPI, protocol_engine: ProtocolEngine, task_queue: TaskQueue, - legacy_python_runner_subject: PythonAndLegacyRunner, + python_runner_subject: PythonAndLegacyRunner, ) -> None: """It should run a protocol to completion.""" decoy.when(protocol_engine.state_view.commands.has_been_played()).then_return( False, True ) - assert legacy_python_runner_subject.was_started() is False - await legacy_python_runner_subject.run(deck_configuration=[]) - assert legacy_python_runner_subject.was_started() is True + assert python_runner_subject.was_started() is False + await python_runner_subject.run(deck_configuration=[]) + assert python_runner_subject.was_started() is True decoy.verify( protocol_engine.play(deck_configuration=[]), diff --git a/api/tests/opentrons/protocol_runner/test_run_orchestrator_provider.py b/api/tests/opentrons/protocol_runner/test_run_orchestrator_provider.py new file mode 100644 index 00000000000..4c25ae28a4e --- /dev/null +++ b/api/tests/opentrons/protocol_runner/test_run_orchestrator_provider.py @@ -0,0 +1,143 @@ +"""Tests for the RunOrchestrator.""" +import pytest +from pytest_lazyfixture import lazy_fixture # type: ignore[import-untyped] +from decoy import Decoy +from typing import Union + +from opentrons.protocols.api_support.types import APIVersion +from opentrons.protocol_engine import ProtocolEngine +from opentrons.protocol_engine.types import PostRunHardwareState +from opentrons.hardware_control import API as HardwareAPI +from opentrons.protocol_reader import JsonProtocolConfig, PythonProtocolConfig +from opentrons.protocol_runner.run_orchestrator import RunOrchestrator +from opentrons import protocol_runner +from opentrons.protocol_runner.protocol_runner import ( + JsonRunner, + PythonAndLegacyRunner, + LiveRunner, +) + + +@pytest.fixture +def mock_protocol_python_runner(decoy: Decoy) -> PythonAndLegacyRunner: + """Get a mocked out PythonAndLegacyRunner dependency.""" + return decoy.mock(cls=PythonAndLegacyRunner) + + +@pytest.fixture +def mock_protocol_json_runner(decoy: Decoy) -> JsonRunner: + """Get a mocked out PythonAndLegacyRunner dependency.""" + return decoy.mock(cls=JsonRunner) + + +@pytest.fixture +def mock_setup_runner(decoy: Decoy) -> LiveRunner: + """Get a mocked out LiveRunner dependency.""" + return decoy.mock(cls=LiveRunner) + + +@pytest.fixture +def mock_fixit_runner(decoy: Decoy) -> LiveRunner: + """Get a mocked out LiveRunner dependency.""" + return decoy.mock(cls=LiveRunner) + + +@pytest.fixture +def mock_protocol_engine(decoy: Decoy) -> ProtocolEngine: + """Get a mocked out ProtocolEngine dependency.""" + return decoy.mock(cls=ProtocolEngine) + + +@pytest.fixture +def mock_hardware_api(decoy: Decoy) -> HardwareAPI: + """Get a mocked out HardwareAPI dependency.""" + return decoy.mock(cls=HardwareAPI) + + +@pytest.fixture +def json_protocol_subject( + mock_protocol_engine: ProtocolEngine, + mock_hardware_api: HardwareAPI, + mock_protocol_json_runner: JsonRunner, + mock_fixit_runner: LiveRunner, + mock_setup_runner: LiveRunner, +) -> RunOrchestrator: + """Get a RunOrchestrator subject with a json runner.""" + return RunOrchestrator( + protocol_engine=mock_protocol_engine, + hardware_api=mock_hardware_api, + fixit_runner=mock_fixit_runner, + setup_runner=mock_setup_runner, + json_or_python_protocol_runner=mock_protocol_json_runner, + ) + + +@pytest.fixture +def python_protocol_subject( + mock_protocol_engine: ProtocolEngine, + mock_hardware_api: HardwareAPI, + mock_protocol_python_runner: PythonAndLegacyRunner, + mock_fixit_runner: LiveRunner, + mock_setup_runner: LiveRunner, +) -> RunOrchestrator: + """Get a RunOrchestrator subject with a python runner.""" + return RunOrchestrator( + protocol_engine=mock_protocol_engine, + hardware_api=mock_hardware_api, + fixit_runner=mock_fixit_runner, + setup_runner=mock_setup_runner, + json_or_python_protocol_runner=mock_protocol_python_runner, + ) + + +@pytest.mark.parametrize( + "input_protocol_config, mock_protocol_runner, subject", + [ + ( + JsonProtocolConfig(schema_version=7), + lazy_fixture("mock_protocol_json_runner"), + lazy_fixture("json_protocol_subject"), + ), + ( + PythonProtocolConfig(api_version=APIVersion(2, 14)), + lazy_fixture("mock_protocol_python_runner"), + lazy_fixture("python_protocol_subject"), + ), + ], +) +def test_build_run_orchestrator_provider( + decoy: Decoy, + monkeypatch: pytest.MonkeyPatch, + subject: RunOrchestrator, + mock_protocol_engine: ProtocolEngine, + mock_hardware_api: HardwareAPI, + input_protocol_config: Union[PythonProtocolConfig, JsonProtocolConfig], + mock_setup_runner: LiveRunner, + mock_fixit_runner: LiveRunner, + mock_protocol_runner: Union[PythonAndLegacyRunner, JsonRunner], +) -> None: + """Should get a RunOrchestrator instance.""" + mock_create_runner_func = decoy.mock(func=protocol_runner.create_protocol_runner) + monkeypatch.setattr( + protocol_runner, "create_protocol_runner", mock_create_runner_func + ) + + decoy.when( + mock_create_runner_func( + protocol_config=input_protocol_config, + protocol_engine=mock_protocol_engine, + hardware_api=mock_hardware_api, + post_run_hardware_state=PostRunHardwareState.HOME_AND_STAY_ENGAGED, + drop_tips_after_run=True, + ) + ).then_return(mock_protocol_runner) + + result = subject.build_orchestrator( + protocol_engine=mock_protocol_engine, + hardware_api=mock_hardware_api, + protocol_config=input_protocol_config, + ) + + assert isinstance(result, RunOrchestrator) + assert isinstance(result._setup_runner, LiveRunner) + assert isinstance(result._fixit_runner, LiveRunner) diff --git a/api/tests/opentrons/protocols/execution/test_execute_python.py b/api/tests/opentrons/protocols/execution/test_execute_python.py index cc8e7e9b306..e663ea1bd69 100644 --- a/api/tests/opentrons/protocols/execution/test_execute_python.py +++ b/api/tests/opentrons/protocols/execution/test_execute_python.py @@ -1,4 +1,7 @@ import pytest + +from opentrons.protocol_api import ParameterContext +from opentrons.protocols.api_support.types import APIVersion from opentrons.protocols.execution import execute, execute_python from opentrons.protocols.parse import parse @@ -93,3 +96,17 @@ def run(ctx): execute.run_protocol(protocol, context=ctx) assert "[line 5]" in str(e.value) assert "Exception [line 5]: hi" in str(e.value) + + +@pytest.mark.ot2_only +@pytest.mark.parametrize("protocol_file", ["testosaur_with_rtp.py"]) +def test_rtp_extraction(protocol, protocol_file) -> None: + """It should set the RTP definitions in protocol with override values from run.""" + proto = parse(protocol.text, protocol.filename) + parameter_context = ParameterContext(api_version=APIVersion(2, 18)) + run_time_param_overrides = {"sample_count": 2} + assert execute_python.exec_add_parameters( # type: ignore + protocol=proto, + parameter_context=parameter_context, + run_time_param_overrides=run_time_param_overrides, + ).get_all() == {"sample_count": 2, "mount": "left"} diff --git a/robot-server/tests/service/notifications/test_change_notifier.py b/api/tests/opentrons/util/test_change_notifier.py similarity index 91% rename from robot-server/tests/service/notifications/test_change_notifier.py rename to api/tests/opentrons/util/test_change_notifier.py index e29b69834f7..bbaefbb2350 100644 --- a/robot-server/tests/service/notifications/test_change_notifier.py +++ b/api/tests/opentrons/util/test_change_notifier.py @@ -1,7 +1,7 @@ """Tests for the ChangeNotifier interface.""" import asyncio import pytest -from robot_server.service.notifications.change_notifier import ChangeNotifier +from opentrons.util.change_notifier import ChangeNotifier async def test_single_subscriber() -> None: @@ -24,12 +24,12 @@ async def test_multiple_subscribers(_test_repetition: int) -> None: """Test that multiple subscribers can wait for a notification. This test checks that the subscribers are awoken in the order they - subscribed. This may or may not be guarenteed according to the + subscribed. This may or may not be guaranteed according to the implementations of both ChangeNotifier and the event loop. - This test functions as a canary, given that our code may relies + This test functions as a canary, given that our code may rely on this ordering for determinism. - This test runs multiple times to check for flakyness. + This test runs multiple times to check for flakiness. """ subject = ChangeNotifier() results = [] diff --git a/app-shell-odd/src/http.ts b/app-shell-odd/src/http.ts index 008cd80133f..6a0371fa282 100644 --- a/app-shell-odd/src/http.ts +++ b/app-shell-odd/src/http.ts @@ -1,13 +1,14 @@ // fetch wrapper to throw if response is not ok import fs from 'fs' import { remove } from 'fs-extra' -import { Transform, Readable } from 'stream' import pump from 'pump' import _fetch from 'node-fetch' import FormData from 'form-data' +import { Transform } from 'stream' import { HTTP_API_VERSION } from './constants' +import type { Readable } from 'stream' import type { Request, RequestInit, Response } from 'node-fetch' type RequestInput = Request | string diff --git a/app-shell-odd/src/notifications/deserialize.ts b/app-shell-odd/src/notifications/deserialize.ts index 01fd4bc933b..5a154ebee5f 100644 --- a/app-shell-odd/src/notifications/deserialize.ts +++ b/app-shell-odd/src/notifications/deserialize.ts @@ -31,6 +31,10 @@ export function sendDeserialized( } catch {} // Prevents shell erroring during app shutdown event. } +export function sendDeserializedRefetch(topic: NotifyTopic): void { + sendDeserialized(topic, { refetch: true }) +} + export function sendDeserializedGenericError(topic: NotifyTopic): void { sendDeserialized(topic, FAILURE_STATUSES.ECONNFAILED) } diff --git a/app-shell-odd/src/notifications/subscribe.ts b/app-shell-odd/src/notifications/subscribe.ts index 6e334cb89c9..7f57d6d15a5 100644 --- a/app-shell-odd/src/notifications/subscribe.ts +++ b/app-shell-odd/src/notifications/subscribe.ts @@ -1,9 +1,12 @@ -import mqtt from 'mqtt' - import { connectionStore } from './store' -import { sendDeserialized, sendDeserializedGenericError } from './deserialize' +import { + sendDeserialized, + sendDeserializedGenericError, + sendDeserializedRefetch, +} from './deserialize' import { notifyLog } from './notifyLog' +import type mqtt from 'mqtt' import type { NotifyTopic } from '@opentrons/app/src/redux/shell/types' /** @@ -30,8 +33,8 @@ export function subscribe(topic: NotifyTopic): Promise { if (client == null) { return Promise.reject(new Error('Expected hostData, received null.')) } - - if ( + // The first time the client wants to subscribe on a robot to a particular topic. + else if ( !connectionStore.isActiveSub(topic) && !connectionStore.isPendingSub(topic) ) { @@ -44,13 +47,15 @@ export function subscribe(topic: NotifyTopic): Promise { }) ) .catch((error: Error) => notifyLog.debug(error.message)) - } else { - void waitUntilActiveOrErrored('subscription', topic).catch( - (error: Error) => { + } + // The client is either already subscribed or the subscription is currently pending. + else { + void waitUntilActiveOrErrored('subscription', topic) + .then(() => sendDeserializedRefetch(topic)) + .catch((error: Error) => { notifyLog.debug(error.message) sendDeserializedGenericError(topic) - } - ) + }) } }) .catch((error: Error) => { @@ -74,6 +79,8 @@ export function subscribe(topic: NotifyTopic): Promise { connectionStore .setSubStatus(topic, 'subscribed') .catch((error: Error) => notifyLog.debug(error.message)) + + sendDeserializedRefetch(topic) } } } diff --git a/app-shell-odd/src/usb.ts b/app-shell-odd/src/usb.ts index 69629eff161..ebfd8bb7f42 100644 --- a/app-shell-odd/src/usb.ts +++ b/app-shell-odd/src/usb.ts @@ -90,40 +90,48 @@ export function watchForMassStorage(dispatch: Dispatch): () => void { prevDirs = present.filter((entry): entry is string => entry !== null) }) - const mediaWatcher = fs.watch( - FLEX_USB_MOUNT_DIR, - { persistent: true }, - (event, fileName) => { - if (!!!fileName) { - rescan(dispatch) - return - } - if (!fileName.match(FLEX_USB_MOUNT_FILTER)) { - return - } - const fullPath = join(FLEX_USB_MOUNT_DIR, fileName) - fsPromises - .stat(fullPath) - .then(info => { - if (!info.isDirectory) { + const mediaWatcherCreator = (): fs.FSWatcher | null => { + try { + return fs.watch( + FLEX_USB_MOUNT_DIR, + { persistent: true }, + (event, fileName) => { + if (!!!fileName) { + rescan(dispatch) return } - if (prevDirs.includes(fullPath)) { + if (!fileName.match(FLEX_USB_MOUNT_FILTER)) { return } - console.log(`New mass storage device ${fileName} detected`) - prevDirs.push(fullPath) - return handleNewlyPresent(fullPath) - }) - .catch(() => { - if (prevDirs.includes(fullPath)) { - console.log(`Mass storage device at ${fileName} removed`) - prevDirs = prevDirs.filter(entry => entry !== fullPath) - dispatch(robotMassStorageDeviceRemoved(fullPath)) - } - }) + const fullPath = join(FLEX_USB_MOUNT_DIR, fileName) + fsPromises + .stat(fullPath) + .then(info => { + if (!info.isDirectory) { + return + } + if (prevDirs.includes(fullPath)) { + return + } + console.log(`New mass storage device ${fileName} detected`) + prevDirs.push(fullPath) + return handleNewlyPresent(fullPath) + }) + .catch(() => { + if (prevDirs.includes(fullPath)) { + console.log(`Mass storage device at ${fileName} removed`) + prevDirs = prevDirs.filter(entry => entry !== fullPath) + dispatch(robotMassStorageDeviceRemoved(fullPath)) + } + }) + } + ) + } catch { + return null } - ) + } + + const mediaWatcher = mediaWatcherCreator() const devWatcher = fs.watch( FLEX_USB_DEVICE_DIR, @@ -150,7 +158,7 @@ export function watchForMassStorage(dispatch: Dispatch): () => void { rescan(dispatch) return () => { - mediaWatcher.close() + mediaWatcher != null && mediaWatcher.close() devWatcher.close() } } diff --git a/app-shell/Makefile b/app-shell/Makefile index ec86ee924ff..88bbf74b9ad 100644 --- a/app-shell/Makefile +++ b/app-shell/Makefile @@ -171,18 +171,16 @@ _dist-collect-artifacts: # development ##################################################################### -.PHONY: clean-dev-autoupdate -clean-dev-autoupdate: - rm -f ./dev-app-update.yml -dev-app-update.yml: +.PHONY: dev-app-update-file +dev-app-update-file: cp ./dev-app-update-$(OPENTRONS_PROJECT).yml ./dev-app-update.yml .PHONY: dev dev: export NODE_ENV := development dev: export OPENTRONS_PROJECT := $(OPENTRONS_PROJECT) -dev: clean-dev-autoupdate ./dev-app-update.yml +dev: dev-app-update-file vite build $(electron) diff --git a/app-shell/dev-app-update-robot-stack.yml b/app-shell/dev-app-update-robot-stack.yml index 9edb1ccde11..0561f4592d7 100644 --- a/app-shell/dev-app-update-robot-stack.yml +++ b/app-shell/dev-app-update-robot-stack.yml @@ -1,3 +1,3 @@ provider: generic -bucket: https://builds.opentrons.com/app/ +url: https://builds.opentrons.com/app/ channel: latest diff --git a/app-shell/src/http.ts b/app-shell/src/http.ts index 8a3a8131ceb..32676d40949 100644 --- a/app-shell/src/http.ts +++ b/app-shell/src/http.ts @@ -1,12 +1,13 @@ // fetch wrapper to throw if response is not ok import fs from 'fs' import fsPromises from 'fs/promises' -import { Transform, Readable } from 'stream' +import { Transform } from 'stream' import pump from 'pump' import _fetch from 'node-fetch' import FormData from 'form-data' import type { Request, RequestInit, Response } from 'node-fetch' +import type { Readable } from 'stream' type RequestInput = Request | string diff --git a/app-shell/src/notifications/connect.ts b/app-shell/src/notifications/connect.ts index bcaf24e6e3d..ed46b4aa7b6 100644 --- a/app-shell/src/notifications/connect.ts +++ b/app-shell/src/notifications/connect.ts @@ -68,6 +68,7 @@ export function establishConnections( ): Promise { return new Promise((resolve, reject) => { const newConnections = healthyRobots.filter(({ ip, robotName }) => { + // Only attempt a new connection if the current broker connection is bad. if (connectionStore.isConnectedToBroker(robotName)) { return false } else { @@ -171,7 +172,7 @@ function establishListeners( client.on('reconnect', () => { notifyLog.debug(`Attempting to reconnect to ${robotName} on ${ip}`) }) - // handles transport layer errors only + // Handles transport layer errors only client.on('error', error => { notifyLog.warn(`Error - ${error.name}: ${error.message}`) sendDeserializedGenericError(ip, 'ALL_TOPICS') @@ -193,6 +194,15 @@ function establishListeners( ) sendDeserializedGenericError(ip, 'ALL_TOPICS') }) + + // Some network interfaces (such as link-local) will *sometimes* fire the 'offline' event when physically disconnected. + // While the keepalive packet will eventually result in an 'error' event and close the client, we can proactively + // close the client when possible, allowing for the connection store to connect to the robot on an alternative IP + // if one is available. + client.on('offline', () => { + sendDeserializedGenericError(ip, 'ALL_TOPICS') + client.end() + }) } export function closeConnectionsForcefullyFor( diff --git a/app-shell/src/notifications/deserialize.ts b/app-shell/src/notifications/deserialize.ts index 53752b32a0f..9743f1c3e5c 100644 --- a/app-shell/src/notifications/deserialize.ts +++ b/app-shell/src/notifications/deserialize.ts @@ -33,6 +33,14 @@ export function sendDeserialized({ } catch {} // Prevents shell erroring during app shutdown event. } +export function sendDeserializedRefetch(ip: string, topic: NotifyTopic): void { + sendDeserialized({ + ip, + topic, + message: { refetch: true }, + }) +} + export function sendDeserializedGenericError( ip: string, topic: NotifyTopic diff --git a/app-shell/src/notifications/index.ts b/app-shell/src/notifications/index.ts index 221addea9f6..6c162e66a02 100644 --- a/app-shell/src/notifications/index.ts +++ b/app-shell/src/notifications/index.ts @@ -4,7 +4,6 @@ import { cleanUpUnreachableRobots, getHealthyRobotDataForNotifyConnections, closeConnectionsForcefullyFor, - RobotData, } from './connect' import { subscribe } from './subscribe' import { notifyLog } from './notifyLog' @@ -12,6 +11,7 @@ import { notifyLog } from './notifyLog' import type { DiscoveryClientRobot } from '@opentrons/discovery-client' import type { BrowserWindow } from 'electron' import type { Action, Dispatch } from '../types' +import type { RobotData } from './connect' // Manages MQTT broker connections through a connection store. Broker connections are added based on health status // reported by discovery-client and broker connectivity status reported by MQTT. Because a robot may have several IPs, diff --git a/app-shell/src/notifications/subscribe.ts b/app-shell/src/notifications/subscribe.ts index 895a010406e..0fda7b30d31 100644 --- a/app-shell/src/notifications/subscribe.ts +++ b/app-shell/src/notifications/subscribe.ts @@ -1,9 +1,12 @@ -import mqtt from 'mqtt' - import { connectionStore } from './store' -import { sendDeserialized, sendDeserializedGenericError } from './deserialize' +import { + sendDeserialized, + sendDeserializedGenericError, + sendDeserializedRefetch, +} from './deserialize' import { notifyLog } from './notifyLog' +import type mqtt from 'mqtt' import type { NotifyTopic } from '@opentrons/app/src/redux/shell/types' /** @@ -36,8 +39,8 @@ export function subscribe(ip: string, topic: NotifyTopic): Promise { if (client == null) { return Promise.reject(new Error('Expected hostData, received null.')) } - - if ( + // The first time the client wants to subscribe on a robot to a particular topic. + else if ( !connectionStore.isActiveSub(robotName, topic) && !connectionStore.isPendingSub(robotName, topic) ) { @@ -50,16 +53,20 @@ export function subscribe(ip: string, topic: NotifyTopic): Promise { }) ) .catch((error: Error) => notifyLog.debug(error.message)) - } else { + } + // The client is either already subscribed or the subscription is currently pending. + else { void waitUntilActiveOrErrored({ connection: 'subscription', ip, robotName, topic, - }).catch((error: Error) => { - notifyLog.debug(error.message) - sendDeserializedGenericError(ip, topic) }) + .then(() => sendDeserializedRefetch(ip, topic)) + .catch((error: Error) => { + notifyLog.debug(error.message) + sendDeserializedGenericError(ip, topic) + }) } }) .catch((error: Error) => { @@ -81,6 +88,8 @@ export function subscribe(ip: string, topic: NotifyTopic): Promise { connectionStore .setSubStatus(ip, topic, 'subscribed') .catch((error: Error) => notifyLog.debug(error.message)) + + sendDeserializedRefetch(ip, topic) } } } diff --git a/app-shell/src/protocol-analysis/__tests__/protocolAnalysis.test.ts b/app-shell/src/protocol-analysis/__tests__/protocolAnalysis.test.ts index e83ed5d4c7a..8463e8a09cf 100644 --- a/app-shell/src/protocol-analysis/__tests__/protocolAnalysis.test.ts +++ b/app-shell/src/protocol-analysis/__tests__/protocolAnalysis.test.ts @@ -1,23 +1,24 @@ import { vi, it, expect, describe, beforeEach } from 'vitest' import { when } from 'vitest-when' -import electron from 'electron' import * as ProtocolAnalysis from '@opentrons/app/src/redux/protocol-analysis' import * as Cfg from '@opentrons/app/src/redux/config' import * as Dialogs from '../../dialogs' -import { Config, getConfig, handleConfigChange } from '../../config' +import { getConfig, handleConfigChange } from '../../config' import { getValidLabwareFilePaths } from '../../labware' import { selectPythonPath, getPythonPath } from '../getPythonPath' import { executeAnalyzeCli } from '../executeAnalyzeCli' import { writeFailedAnalysis } from '../writeFailedAnalysis' -import { createLogger } from '../../log' import { registerProtocolAnalysis, analyzeProtocolSource, CONFIG_PYTHON_PATH_TO_PYTHON_OVERRIDE, } from '..' -import { Dispatch } from '../../types' +import type electron from 'electron' +import type { createLogger } from '../../log' +import type { Dispatch } from '../../types' +import type { Config } from '../../config' vi.mock('../../labware') vi.mock('../../dialogs') diff --git a/app-shell/src/protocol-analysis/writeFailedAnalysis.ts b/app-shell/src/protocol-analysis/writeFailedAnalysis.ts index 8723cd52d04..02f0293dcde 100644 --- a/app-shell/src/protocol-analysis/writeFailedAnalysis.ts +++ b/app-shell/src/protocol-analysis/writeFailedAnalysis.ts @@ -1,7 +1,7 @@ import { writeFile } from 'fs/promises' import uuid from 'uuid/v4' -import { ProtocolAnalysisOutput } from '@opentrons/shared-data' +import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' const UNEXPECTED_ERROR_TYPE = 'UnexpectedAnalysisError' diff --git a/app-shell/src/robot-update/release-files.ts b/app-shell/src/robot-update/release-files.ts index 50e2366632a..2c6a4244670 100644 --- a/app-shell/src/robot-update/release-files.ts +++ b/app-shell/src/robot-update/release-files.ts @@ -7,13 +7,12 @@ import { move, readdir, remove, readFile } from 'fs-extra' import StreamZip from 'node-stream-zip' import getStream from 'get-stream' -import type { RobotUpdateTarget } from '@opentrons/app/src/redux/robot-update/types' - import { createLogger } from '../log' import { fetchToFile } from '../http' -import { Dispatch } from '../types' import { CURRENT_VERSION } from '../update' +import type { RobotUpdateTarget } from '@opentrons/app/src/redux/robot-update/types' +import type { Dispatch } from '../types' import type { DownloadProgress } from '../http' import type { ReleaseSetUrls, ReleaseSetFilepaths, UserFileInfo } from './types' @@ -94,16 +93,16 @@ export function downloadAndNotify( return move(tempPath, path, { overwrite: true }) .then(() => { if (isReleaseNotesDownload) { - return readFile(path, 'utf8').then(releaseNotes => + return readFile(path, 'utf8').then(releaseNotes => { dispatch({ type: 'robotUpdate:UPDATE_INFO', payload: { releaseNotes, target, version: CURRENT_VERSION }, }) - ) + }) } // This action will only have an effect if the user is actively waiting for the download to complete. else { - return dispatch({ + dispatch({ type: 'robotUpdate:DOWNLOAD_DONE', payload: target, }) @@ -151,7 +150,9 @@ export function readUpdateFileInfo(systemFile: string): Promise { versionInfo, })) - result.finally(() => zip.close()) + result.finally(() => { + zip.close() + }) return result }) diff --git a/app-shell/src/system-info/__tests__/dispatch.test.ts b/app-shell/src/system-info/__tests__/dispatch.test.ts index 4da4b838429..c6fcd11e6d9 100644 --- a/app-shell/src/system-info/__tests__/dispatch.test.ts +++ b/app-shell/src/system-info/__tests__/dispatch.test.ts @@ -5,7 +5,6 @@ import * as Fixtures from '@opentrons/app/src/redux/system-info/__fixtures__' import * as SystemInfo from '@opentrons/app/src/redux/system-info' import { uiInitialized } from '@opentrons/app/src/redux/shell/actions' import * as OS from '../../os' -import { createLogger } from '../../log' import { createUsbDeviceMonitor, getWindowsDriverVersion } from '../usb-devices' import { getActiveInterfaces, @@ -16,6 +15,7 @@ import { registerSystemInfo } from '..' import type { Dispatch } from '../../types' import type { UsbDeviceMonitor } from '../usb-devices' import type { NetworkInterfaceMonitor } from '../network-interfaces' +import type { createLogger } from '../../log' vi.mock('../../os') vi.mock('../usb-devices') diff --git a/app-shell/src/system-info/__tests__/usb-devices.test.ts b/app-shell/src/system-info/__tests__/usb-devices.test.ts index 47177333333..60a9eecea57 100644 --- a/app-shell/src/system-info/__tests__/usb-devices.test.ts +++ b/app-shell/src/system-info/__tests__/usb-devices.test.ts @@ -3,10 +3,11 @@ import { usb } from 'usb' import { vi, it, expect, describe, afterEach } from 'vitest' import * as Fixtures from '@opentrons/app/src/redux/system-info/__fixtures__' -import { createLogger } from '../../log' import { createUsbDeviceMonitor, getWindowsDriverVersion } from '../usb-devices' import { isWindows } from '../../os' +import type { createLogger } from '../../log' + vi.mock('execa') vi.mock('usb') vi.mock('electron-store') diff --git a/app-shell/src/usb.ts b/app-shell/src/usb.ts index accdf5c00d7..370051829d9 100644 --- a/app-shell/src/usb.ts +++ b/app-shell/src/usb.ts @@ -1,5 +1,5 @@ -import { ipcMain, IpcMainInvokeEvent } from 'electron' -import axios, { AxiosRequestConfig } from 'axios' +import { ipcMain } from 'electron' +import axios from 'axios' import FormData from 'form-data' import { @@ -17,6 +17,8 @@ import { USB_DEVICE_REMOVED, } from './constants' +import type { IpcMainInvokeEvent } from 'electron' +import type { AxiosRequestConfig } from 'axios' import type { IPCSafeFormData } from '@opentrons/app/src/redux/shell/types' import type { UsbDevice } from '@opentrons/app/src/redux/system-info/types' import type { PortInfo } from '@opentrons/usb-bridge/node-client' diff --git a/app-testing/files/protocols/Flex_S_v2_18_P1000_96_GRIP_HS_MB_TC_TM_Smoke.py b/app-testing/files/protocols/Flex_S_v2_18_P1000_96_GRIP_HS_MB_TC_TM_Smoke.py new file mode 100644 index 00000000000..1e4e4c12060 --- /dev/null +++ b/app-testing/files/protocols/Flex_S_v2_18_P1000_96_GRIP_HS_MB_TC_TM_Smoke.py @@ -0,0 +1,610 @@ +############# +# CHANGELOG # +############# + +# ---- +# 2.18 +# ---- + +# - labware.set_offset +# - Runtime Parameters added +# - TrashContainer.top() and Well.top() now return objects of the same type +# - pipette.drop_tip() if location argument not specified the tips will be dropped at different locations in the bin +# - pipette.drop_tip() if location is specified, the tips will be dropped in the same place every time + +# ---- +# 2.17 +# ---- + +# NOTHING NEW +# This protocol is exactly the same as 2.16 Smoke Test V3 +# The only difference is the API version in the metadata +# There were no new positive test cases for 2.17 +# The negative test cases are captured in the 2.17 dispense changes protocol + +# ---- +# 2.16 +# ---- + +# - prepare_to_aspirate added +# - fixed_trash property changed +# - instrument_context.trash_container property changed + +# ---- +# 2.15 +# ---- + +# - move_labware added - Manual Deck State Modification +# - ProtocolContext.load_adapter added +# - OFF_DECK location added + +from opentrons import protocol_api, types + +metadata = { + "protocolName": "Flex Smoke Test - v2.18", + "author": "Derek Maggio ", +} + +requirements = { + "robotType": "OT-3", + "apiLevel": "2.18", +} + +############# +### FLAGS ### +############# + +# prefer to move off deck, instead of waste chute disposal, if possible +PREFER_MOVE_OFF_DECK = True + +################# +### CONSTANTS ### +################# + +HEATER_SHAKER_ADAPTER_NAME = "opentrons_96_pcr_adapter" +HEATER_SHAKER_NAME = "heaterShakerModuleV1" +MAGNETIC_BLOCK_NAME = "magneticBlockV1" +TEMPERATURE_MODULE_ADAPTER_NAME = "opentrons_96_well_aluminum_block" +TEMPERATURE_MODULE_NAME = "temperature module gen2" +THERMOCYCLER_NAME = "thermocycler module gen2" + +TIPRACK_96_ADAPTER_NAME = "opentrons_flex_96_tiprack_adapter" +TIPRACK_96_NAME = "opentrons_flex_96_tiprack_1000ul" + +PIPETTE_96_CHANNEL_NAME = "flex_96channel_1000" + +############################## +# Runtime Parameters Support # +############################## + +# -------------------------- # +# Added in API version: 2.18 # +# -------------------------- # + + +def add_parameters(parameters: protocol_api.Parameters): + reservoir_choices = [ + {"display_name": "Agilent 1 Well 290 mL", "value": "agilent_1_reservoir_290ml"}, + {"display_name": "Nest 1 Well 290 mL", "value": "nest_1_reservoir_290ml"}, + ] + + well_plate_choices = [ + {"display_name": "Nest 96 Well 100 µL", "value": "nest_96_wellplate_100ul_pcr_full_skirt"}, + {"display_name": "Corning 96 Well 360 µL", "value": "corning_96_wellplate_360ul_flat"}, + {"display_name": "Opentrons Tough 96 Well 200 µL", "value": "opentrons_96_wellplate_200ul_pcr_full_skirt"}, + ] + + parameters.add_str( + variable_name="reservoir_name", + display_name="Reservoir Name", + description="Name of the reservoir", + default="nest_1_reservoir_290ml", + choices=reservoir_choices, + ) + + parameters.add_str( + variable_name="well_plate_name", + display_name="Well Plate Name", + description="Name of the well plate", + default="nest_96_wellplate_100ul_pcr_full_skirt", + choices=well_plate_choices, + ) + + parameters.add_bool( + variable_name="use_gripper", + display_name="Use Gripper", + description="Use Gripper for labware movements?", + default=True, + ) + + parameters.add_bool( + variable_name="reset_after_each_move", + display_name="Reset After Each Move", + description="Reset labware after each move?", + default=True, + ) + + parameters.add_float( + variable_name="heater_shaker_temperature", + display_name="Heater Shaker Temperature", + description="Temperature to set the heater shaker to", + default=75.0, + minimum=37.0, + maximum=100.0, + unit="°C", + ) + + parameters.add_int( + variable_name="heater_shaker_speed", + display_name="Heater Shaker Shake Speed", + description="Speed to set the heater shaker to", + default=1000, + minimum=200, + maximum=3000, + unit="seconds", + ) + + +def run(ctx: protocol_api.ProtocolContext) -> None: + + ############################## + # Runtime Parameters Support # + ############################## + + # -------------------------- # + # Added in API version: 2.18 # + # -------------------------- # + + PCR_PLATE_96_NAME = ctx.params.well_plate_name + RESERVOIR_NAME = ctx.params.reservoir_name + USING_GRIPPER = ctx.params.use_gripper + RESET_AFTER_EACH_MOVE = ctx.params.reset_after_each_move + HEATER_SHAKER_TEMPERATURE: float = ctx.params.heater_shaker_temperature + HEATER_SHAKER_SPEED: int = ctx.params.heater_shaker_speed + + ################ + ### FIXTURES ### + ################ + + trash_bin = ctx.load_trash_bin("B3") + waste_chute = ctx.load_waste_chute() + + ############### + ### MODULES ### + ############### + thermocycler = ctx.load_module(THERMOCYCLER_NAME) # A1 & B1 + magnetic_block = ctx.load_module(MAGNETIC_BLOCK_NAME, "C1") + heater_shaker = ctx.load_module(HEATER_SHAKER_NAME, "A3") + temperature_module = ctx.load_module(TEMPERATURE_MODULE_NAME, "D1") + + thermocycler.open_lid() + heater_shaker.open_labware_latch() + + ####################### + ### MODULE ADAPTERS ### + ####################### + + temperature_module_adapter = temperature_module.load_adapter(TEMPERATURE_MODULE_ADAPTER_NAME) + heater_shaker_adapter = heater_shaker.load_adapter(HEATER_SHAKER_ADAPTER_NAME) + + adapters = [temperature_module_adapter, heater_shaker_adapter] + + ############### + ### LABWARE ### + ############### + + source_reservoir = ctx.load_labware(RESERVOIR_NAME, "D2") + dest_pcr_plate = ctx.load_labware(PCR_PLATE_96_NAME, "C2") + + tip_rack_1 = ctx.load_labware(TIPRACK_96_NAME, "A2", adapter=TIPRACK_96_ADAPTER_NAME) + tip_rack_adapter = tip_rack_1.parent + + tip_rack_2 = ctx.load_labware(TIPRACK_96_NAME, "C3") + tip_rack_3 = ctx.load_labware(TIPRACK_96_NAME, "C4") + + tip_racks = [tip_rack_1, tip_rack_2, tip_rack_3] + + ########################## + ### PIPETTE DEFINITION ### + ########################## + + pipette_96_channel = ctx.load_instrument(PIPETTE_96_CHANNEL_NAME, mount="left", tip_racks=tip_racks) + pipette_96_channel.trash_container = trash_bin + + assert isinstance(pipette_96_channel.trash_container, protocol_api.TrashBin) + + ######################## + ### LOAD SOME LIQUID ### + ######################## + + water = ctx.define_liquid(name="water", description="High Quality H₂O", display_color="#42AB2D") + source_reservoir.wells_by_name()["A1"].load_liquid(liquid=water, volume=29000) + + ################################ + ### GRIPPER LABWARE MOVEMENT ### + ################################ + + def get_disposal_preference(): + """ + Get the disposal preference based on the PREFER_MOVE_OFF_DECK flag. + + Returns: + tuple: A tuple containing the disposal preference. The first element is the location preference, + either `protocol_api.OFF_DECK` or `waste_chute`. The second element is a boolean indicating + whether the gripper is being used or not. + """ + return (protocol_api.OFF_DECK, not USING_GRIPPER) if PREFER_MOVE_OFF_DECK else (waste_chute, USING_GRIPPER) + + def run_moves(labware, move_sequences, reset_location, use_gripper): + """ + Perform a series of moves for a given labware using specified move sequences. + + Will perform 2 versions of the moves: + 1. Moves to each location in the sequence, resetting to the reset location after each move. + 2. Moves to each location in the sequence, resetting to the reset location after all moves. + + Args: + labware (str): The labware to be moved. + move_sequences (list): A list of move sequences, where each sequence is a list of locations. + reset_location (str): The location to reset the labware after each move sequence. + use_gripper (bool): Flag indicating whether to use the gripper during the moves. + """ + + def move_to_locations(labware_to_move, move_locations, reset_after_each_move, use_gripper, reset_location): + """ + Move the labware to the specified locations. + + Args: + labware_to_move (str): The labware to be moved. + move_locations (list): A list of locations to move the labware to. + reset_after_each_move (bool): Flag indicating whether to reset the labware after each move. + use_gripper (bool): Flag indicating whether to use the gripper during the moves. + reset_location (str): The location to reset the labware after each move sequence. + """ + + def reset_labware(): + """ + Reset the labware to the reset location. + """ + ctx.move_labware(labware_to_move, reset_location, use_gripper=use_gripper) + + if len(move_locations) == 0: + return + + for location in move_locations: + ctx.move_labware(labware_to_move, location, use_gripper=use_gripper) + + if reset_after_each_move: + reset_labware() + + if not reset_after_each_move: + reset_labware() + + for move_sequence in move_sequences: + move_to_locations(labware, move_sequence, RESET_AFTER_EACH_MOVE, use_gripper, reset_location) + move_to_locations(labware, move_sequence, not RESET_AFTER_EACH_MOVE, use_gripper, reset_location) + + def test_gripper_moves(): + """ + Function to test the movement of the gripper in various locations. + + This function contains several helper functions to perform the movement of labware using a gripper. + Each function performs a sequence of moves, starting with a specific location on the deck. + + Args: + None + + Returns: + None + """ + + def deck_moves(labware, reset_location): + """ + Function to perform the movement of labware, with the inital position being on the deck. + + Args: + pcr_plate (str): The labware to be moved on the deck. + reset_location (str): The reset location on the deck. + + Returns: + None + """ + deck_move_sequence = [ + ["B2"], # Deck Moves + ["C3"], # Staging Area Slot 3 Moves + ["C4", "D4"], # Staging Area Slot 4 Moves + [thermocycler, temperature_module_adapter, heater_shaker_adapter, magnetic_block], # Module Moves + ] + + run_moves(labware, deck_move_sequence, reset_location, USING_GRIPPER) + + def staging_area_slot_3_moves(labware, reset_location): + """ + Function to perform the movement of labware, with the inital position being on staging area slot 3. + + Args: + labware (str): The labware to be moved in staging area slot 3. + reset_location (str): The reset location in staging area slot 3. + + Returns: + None + """ + staging_area_slot_3_move_sequence = [ + ["B2", "C2"], # Deck Moves + [], # Don't have Staging Area Slot 3 open + ["C4", "D4"], # Staging Area Slot 4 Moves + [thermocycler, temperature_module_adapter, heater_shaker_adapter, magnetic_block], # Module Moves + ] + + run_moves(labware, staging_area_slot_3_move_sequence, reset_location, USING_GRIPPER) + + def staging_area_slot_4_moves(labware, reset_location): + """ + Function to perform the movement of labware, with the inital position being on staging area slot 4. + + Args: + labware (str): The labware to be moved in staging area slot 4. + reset_location (str): The reset location in staging area slot 4. + + Returns: + None + """ + staging_area_slot_4_move_sequence = [ + ["C2", "B2"], # Deck Moves + ["C3"], # Staging Area Slot 3 Moves + ["C4"], # Staging Area Slot 4 Moves + [thermocycler, temperature_module_adapter, heater_shaker_adapter, magnetic_block], # Module Moves + ] + + run_moves(labware, staging_area_slot_4_move_sequence, reset_location, USING_GRIPPER) + + def module_moves(labware, module_locations): + """ + Function to perform the movement of labware, with the inital position being on a module. + + Args: + labware (str): The labware to be moved with modules. + module_locations (list): The locations of the modules. + + Returns: + None + """ + module_move_sequence = [ + ["C2", "B2"], # Deck Moves + ["C3"], # Staging Area Slot 3 Moves + ["C4", "D4"], # Staging Area Slot 4 Moves + ] + + for module_starting_location in module_locations: + labware_move_to_locations = module_locations.copy() + labware_move_to_locations.remove(module_starting_location) + all_sequences = module_move_sequence.copy() + all_sequences.append(labware_move_to_locations) + ctx.move_labware(labware, module_starting_location, use_gripper=USING_GRIPPER) + run_moves(labware, all_sequences, module_starting_location, USING_GRIPPER) + + DECK_MOVE_RESET_LOCATION = "C2" + STAGING_AREA_SLOT_3_RESET_LOCATION = "C3" + STAGING_AREA_SLOT_4_RESET_LOCATION = "D4" + + deck_moves(dest_pcr_plate, DECK_MOVE_RESET_LOCATION) + + ctx.move_labware(dest_pcr_plate, STAGING_AREA_SLOT_3_RESET_LOCATION, use_gripper=USING_GRIPPER) + staging_area_slot_3_moves(dest_pcr_plate, STAGING_AREA_SLOT_3_RESET_LOCATION) + + ctx.move_labware(dest_pcr_plate, STAGING_AREA_SLOT_4_RESET_LOCATION, use_gripper=USING_GRIPPER) + staging_area_slot_4_moves(dest_pcr_plate, STAGING_AREA_SLOT_4_RESET_LOCATION) + + module_locations = [thermocycler, magnetic_block] + adapters + module_moves(dest_pcr_plate, module_locations) + + ctx.move_labware(dest_pcr_plate, DECK_MOVE_RESET_LOCATION, use_gripper=USING_GRIPPER) + + def test_manual_moves(): + # In C4 currently + ctx.move_labware(source_reservoir, "D4", use_gripper=not USING_GRIPPER) + + def test_pipetting(): + def test_partial_tip_pickup_usage(): + pipette_96_channel.configure_nozzle_layout(style=protocol_api.COLUMN, start="A12") + + for i in range(1, 13): + + pipette_96_channel.pick_up_tip(tip_rack_2[f"A{i}"]) + + pipette_96_channel.aspirate(5, source_reservoir["A1"]) + pipette_96_channel.touch_tip() + + pipette_96_channel.dispense(5, dest_pcr_plate[f"A{i}"]) + + if i == 1: + ctx.pause( + "Watch the next 6 tips drop in the waste chute. They should drop in the same location of the waste chute each time." + ) + + if i == 7: + ctx.pause( + "Watch the next 6 tips drop in the waste chute. They should drop in different locations of the waste chute each time." + ) + + if i <= 6: + pipette_96_channel.drop_tip(waste_chute) + else: + pipette_96_channel.drop_tip() + + # leave this dropping in waste chute, do not use get_disposal_preference + # want to test partial drop + ctx.move_labware(tip_rack_2, waste_chute, use_gripper=USING_GRIPPER) + + def test_full_tip_rack_usage(): + pipette_96_channel.configure_nozzle_layout(style=protocol_api.ALL, start="A1") + pipette_96_channel.pick_up_tip(tip_rack_1["A1"]) + + pipette_96_channel.aspirate(5, source_reservoir["A1"]) + pipette_96_channel.touch_tip() + + pipette_96_channel.air_gap(height=30) + + pipette_96_channel.blow_out(waste_chute) + + pipette_96_channel.aspirate(5, source_reservoir["A1"]) + pipette_96_channel.touch_tip() + + pipette_96_channel.air_gap(height=30) + pipette_96_channel.blow_out(trash_bin) + + pipette_96_channel.aspirate(10, source_reservoir["A1"]) + pipette_96_channel.touch_tip() + + pipette_96_channel.dispense(10, dest_pcr_plate["A1"]) + pipette_96_channel.mix(repetitions=5, volume=15) + pipette_96_channel.return_tip() + + ctx.move_labware(tip_rack_1, get_disposal_preference()[0], use_gripper=get_disposal_preference()[1]) + ctx.move_labware(tip_rack_3, tip_rack_adapter, use_gripper=USING_GRIPPER) + + pipette_96_channel.pick_up_tip(tip_rack_3["A1"]) + pipette_96_channel.transfer( + volume=10, + source=source_reservoir["A1"], + dest=dest_pcr_plate["A1"], + new_tip="never", + touch_tip=True, + blow_out=True, + blowout_location="trash", + mix_before=(3, 5), + mix_after=(1, 5), + ) + pipette_96_channel.return_tip() + + test_partial_tip_pickup_usage() + test_full_tip_rack_usage() + + def test_module_usage(): + def test_thermocycler(): + thermocycler.close_lid() + + thermocycler.set_block_temperature(75.0, hold_time_seconds=5.0) + thermocycler.set_lid_temperature(80.0) + thermocycler.deactivate() + + def test_heater_shaker(): + heater_shaker.open_labware_latch() + heater_shaker.close_labware_latch() + + heater_shaker.set_target_temperature(HEATER_SHAKER_TEMPERATURE) + heater_shaker.set_and_wait_for_shake_speed(HEATER_SHAKER_SPEED) + heater_shaker.wait_for_temperature() + + heater_shaker.deactivate_heater() + heater_shaker.deactivate_shaker() + + def test_temperature_module(): + temperature_module.set_temperature(80) + temperature_module.set_temperature(10) + temperature_module.deactivate() + + def test_magnetic_block(): + pass + + test_thermocycler() + test_heater_shaker() + test_temperature_module() + test_magnetic_block() + + def test_labware_set_offset(): + """Test the labware.set_offset method.""" + ###################### + # labware.set_offset # + ###################### + + # -------------------------- # + # Added in API version: 2.18 # + # -------------------------- # + + SET_OFFSET_AMOUNT = 10.0 + ctx.move_labware(labware=source_reservoir, new_location=protocol_api.OFF_DECK, use_gripper=False) + pipette_96_channel.pick_up_tip(tip_rack_3["A1"]) + pipette_96_channel.move_to(dest_pcr_plate.wells_by_name()["A1"].top()) + + ctx.pause("Is the pipette tip in the middle of the PCR Plate, well A1, in slot C2? It should be at the LPC calibrated height.") + + dest_pcr_plate.set_offset( + x=0.0, + y=0.0, + z=SET_OFFSET_AMOUNT, + ) + + pipette_96_channel.move_to(dest_pcr_plate.wells_by_name()["A1"].top()) + ctx.pause( + "Is the pipette tip in the middle of the PCR Plate, well A1, in slot C2? It should be 10mm higher than the LPC calibrated height." + ) + + ctx.move_labware(labware=dest_pcr_plate, new_location="D2", use_gripper=False) + pipette_96_channel.move_to(dest_pcr_plate.wells_by_name()["A1"].top()) + + ctx.pause("Is the pipette tip in the middle of the PCR Plate, well A1, in slot D2? It should be at the LPC calibrated height.") + + dest_pcr_plate.set_offset( + x=0.0, + y=0.0, + z=SET_OFFSET_AMOUNT, + ) + + pipette_96_channel.move_to(dest_pcr_plate.wells_by_name()["A1"].top()) + ctx.pause( + "Is the pipette tip in the middle of the PCR Plate, well A1, in slot D2? It should be 10mm higher than the LPC calibrated height." + ) + + ctx.move_labware(labware=dest_pcr_plate, new_location="C2", use_gripper=False) + pipette_96_channel.move_to(dest_pcr_plate.wells_by_name()["A1"].top()) + + ctx.pause( + "Is the pipette tip in the middle of the PCR Plate, well A1, in slot C2? It should be 10mm higher than the LPC calibrated height." + ) + + ctx.move_labware(labware=source_reservoir, new_location="D2", use_gripper=False) + pipette_96_channel.move_to(source_reservoir.wells_by_name()["A1"].top()) + + ctx.pause("Is the pipette tip in the middle of the reservoir , well A1, in slot D2? It should be at the LPC calibrated height.") + + pipette_96_channel.return_tip() + ctx.move_labware(tip_rack_3, get_disposal_preference()[0], use_gripper=get_disposal_preference()[1]) + + ctx.pause("!!!!!!!!!!YOU NEED TO REDO LPC!!!!!!!!!!") + + def test_unique_top_methods(): + """ + Test the unique top() methods for TrashBin and WasteChute. + + Well objects should remain the same + """ + ######################## + # unique top() methods # + ######################## + + # ---------------------------- # + # Changed in API version: 2.18 # + # ---------------------------- # + + assert isinstance(trash_bin.top(), protocol_api.TrashBin) + assert isinstance(waste_chute.top(), protocol_api.WasteChute) + assert isinstance(source_reservoir.wells_by_name()["A1"].top(), types.Location) + + ################################################################################################### + ### THE ORDER OF THESE FUNCTION CALLS MATTER. CHANGING THEM WILL CAUSE THE PROTOCOL NOT TO WORK ### + ################################################################################################### + test_pipetting() + test_gripper_moves() + test_module_usage() + test_manual_moves() + test_labware_set_offset() + test_unique_top_methods() + + ################################################################################################### + ### THE ORDER OF THESE FUNCTION CALLS MATTER. CHANGING THEM WILL CAUSE THE PROTOCOL NOT TO WORK ### + ################################################################################################### + + +# Cannot test in this protocol +# - Waste Chute w/ Lid diff --git a/app-testing/files/protocols/OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3.py b/app-testing/files/protocols/OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3.py index da7b3ab385b..990081a9354 100644 --- a/app-testing/files/protocols/OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3.py +++ b/app-testing/files/protocols/OT2_S_v2_13_P300M_P20S_HS_TC_TM_SmokeTestV3.py @@ -12,6 +12,14 @@ requirements = {"robotType": "OT-2", "apiLevel": "2.13"} +############# +# CHANGELOG # +############# + +# 2.13 + +# - Heater-Shaker Module support added + def run(ctx: protocol_api.ProtocolContext) -> None: """This method is run by the protocol engine.""" @@ -58,6 +66,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: pipette_right = ctx.load_instrument(instrument_name="p20_single_gen2", mount="right", tip_racks=tips_20ul) + ######################### + # Heater-Shaker Support # + ######################### + + # -------------------------- # + # Added in API version: 2.13 # + # -------------------------- # + # modules https://docs.opentrons.com/v2/new_modules.html#available-modules hs_module = ctx.load_module("heaterShakerModuleV1", hs_position) temperature_module = ctx.load_module("temperature module gen2", temperature_position) diff --git a/app-testing/files/protocols/OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3.py b/app-testing/files/protocols/OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3.py index 4ff0f563d37..50a0e707f38 100644 --- a/app-testing/files/protocols/OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3.py +++ b/app-testing/files/protocols/OT2_S_v2_14_P300M_P20S_HS_TC_TM_SmokeTestV3.py @@ -12,6 +12,23 @@ requirements = {"robotType": "OT-2", "apiLevel": "2.14"} +############# +# CHANGELOG # +############# + +# ---- +# 2.14 +# ---- + +# - ProtocolContext.defined_liquid and Well.load_liquid added +# - load_labware without parameters should still find the labware + +# ---- +# 2.13 +# ---- + +# - Heater-Shaker Module support added + def run(ctx: protocol_api.ProtocolContext) -> None: """This method is run by the protocol engine.""" @@ -58,6 +75,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: pipette_right = ctx.load_instrument(instrument_name="p20_single_gen2", mount="right", tip_racks=tips_20ul) + ######################### + # Heater-Shaker Support # + ######################### + + # -------------------------- # + # Added in API version: 2.13 # + # -------------------------- # + # modules https://docs.opentrons.com/v2/new_modules.html#available-modules hs_module = ctx.load_module("heaterShakerModuleV1", hs_position) temperature_module = ctx.load_module("temperature module gen2", temperature_position) @@ -71,7 +96,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: hs_plate = hs_module.load_labware("opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt") tc_plate = thermocycler_module.load_labware("nest_96_wellplate_100ul_pcr_full_skirt") - # A 2.14 difference, no params specified, still should find it. + ################################### + # Load Labware with no parameters # + ################################### + + # -------------------------- # + # Fixed in API version: 2.14 # + # -------------------------- # + custom_labware = ctx.load_labware( "cpx_4_tuberack_100ul", custom_lw_position, @@ -102,7 +134,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: logo_destination_plate.wells_by_name()["E5"], ] - # >= 2.14 define_liquid and load_liquid + ####################################### + # define_liquid & load_liquid Support # + ####################################### + + # -------------------------- # + # Added in API version: 2.14 # + # -------------------------- # + water = ctx.define_liquid( name="water", description="H₂O", display_color="#42AB2D" ) # subscript 2 https://www.compart.com/en/unicode/U+2082 diff --git a/app-testing/files/protocols/OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3.py b/app-testing/files/protocols/OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3.py index aeb151c2267..4e91ce6964f 100644 --- a/app-testing/files/protocols/OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3.py +++ b/app-testing/files/protocols/OT2_S_v2_15_P300M_P20S_HS_TC_TM_SmokeTestV3.py @@ -12,6 +12,31 @@ requirements = {"robotType": "OT-2", "apiLevel": "2.15"} +############# +# CHANGELOG # +############# + +# ---- +# 2.15 +# ---- + +# - move_labware added - Manual Deck State Modification +# - ProtocolContext.load_adapter added +# - OFF_DECK location added + +# ---- +# 2.14 +# ---- + +# - ProtocolContext.defined_liquid and Well.load_liquid added +# - load_labware without parameters should still find the labware + +# ---- +# 2.13 +# ---- + +# - Heater-Shaker Module support added + def run(ctx: protocol_api.ProtocolContext) -> None: """This method is run by the protocol engine.""" @@ -58,6 +83,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: pipette_right = ctx.load_instrument(instrument_name="p20_single_gen2", mount="right", tip_racks=tips_20ul) + ######################### + # Heater-Shaker Support # + ######################### + + # -------------------------- # + # Added in API version: 2.13 # + # -------------------------- # + # modules https://docs.opentrons.com/v2/new_modules.html#available-modules hs_module = ctx.load_module("heaterShakerModuleV1", hs_position) temperature_module = ctx.load_module("temperature module gen2", temperature_position) @@ -72,7 +105,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: hs_plate = hs_module.load_labware(name="nest_96_wellplate_100ul_pcr_full_skirt", adapter="opentrons_96_pcr_adapter") tc_plate = thermocycler_module.load_labware("nest_96_wellplate_100ul_pcr_full_skirt") - # A 2.14 difference, no params specified, still should find it. + ################################### + # Load Labware with no parameters # + ################################### + + # -------------------------- # + # Fixed in API version: 2.14 # + # -------------------------- # + custom_labware = ctx.load_labware( "cpx_4_tuberack_100ul", custom_lw_position, @@ -103,7 +143,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: logo_destination_plate.wells_by_name()["E5"], ] - # >= 2.14 define_liquid and load_liquid + ####################################### + # define_liquid & load_liquid Support # + ####################################### + + # -------------------------- # + # Added in API version: 2.14 # + # -------------------------- # + water = ctx.define_liquid( name="water", description="H₂O", display_color="#42AB2D" ) # subscript 2 https://www.compart.com/en/unicode/U+2082 diff --git a/app-testing/files/protocols/OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3.py b/app-testing/files/protocols/OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3.py index 4c0ceafb2ba..7b2de5155f0 100644 --- a/app-testing/files/protocols/OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3.py +++ b/app-testing/files/protocols/OT2_S_v2_16_P300M_P20S_HS_TC_TM_SmokeTestV3.py @@ -12,6 +12,39 @@ requirements = {"robotType": "OT-2", "apiLevel": "2.16"} +############# +# CHANGELOG # +############# + +# ---- +# 2.16 +# ---- + +# - prepare_to_aspirate added +# - fixed_trash property changed +# - instrument_context.trash_container property changed + +# ---- +# 2.15 +# ---- + +# - move_labware added - Manual Deck State Modification +# - ProtocolContext.load_adapter added +# - OFF_DECK location added + +# ---- +# 2.14 +# ---- + +# - ProtocolContext.defined_liquid and Well.load_liquid added +# - load_labware without parameters should still find the labware + +# ---- +# 2.13 +# ---- + +# - Heater-Shaker Module support added + def run(ctx: protocol_api.ProtocolContext) -> None: """This method is run by the protocol engine.""" @@ -58,6 +91,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: pipette_right = ctx.load_instrument(instrument_name="p20_single_gen2", mount="right", tip_racks=tips_20ul) + ######################### + # Heater-Shaker Support # + ######################### + + # -------------------------- # + # Added in API version: 2.13 # + # -------------------------- # + # modules https://docs.opentrons.com/v2/new_modules.html#available-modules hs_module = ctx.load_module("heaterShakerModuleV1", hs_position) temperature_module = ctx.load_module("temperature module gen2", temperature_position) @@ -72,7 +113,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: hs_plate = hs_module.load_labware(name="nest_96_wellplate_100ul_pcr_full_skirt", adapter="opentrons_96_pcr_adapter") tc_plate = thermocycler_module.load_labware("nest_96_wellplate_100ul_pcr_full_skirt") - # A 2.14 difference, no params specified, still should find it. + ################################### + # Load Labware with no parameters # + ################################### + + # -------------------------- # + # Fixed in API version: 2.14 # + # -------------------------- # + custom_labware = ctx.load_labware( "cpx_4_tuberack_100ul", custom_lw_position, @@ -103,7 +151,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: logo_destination_plate.wells_by_name()["E5"], ] - # >= 2.14 define_liquid and load_liquid + ####################################### + # define_liquid & load_liquid Support # + ####################################### + + # -------------------------- # + # Added in API version: 2.14 # + # -------------------------- # + water = ctx.define_liquid( name="water", description="H₂O", display_color="#42AB2D" ) # subscript 2 https://www.compart.com/en/unicode/U+2082 diff --git a/app-testing/files/protocols/OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3.py b/app-testing/files/protocols/OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3.py index 1c0c1f9802d..822e64ab6e1 100644 --- a/app-testing/files/protocols/OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3.py +++ b/app-testing/files/protocols/OT2_S_v2_17_P300M_P20S_HS_TC_TM_SmokeTestV3.py @@ -12,19 +12,48 @@ requirements = {"robotType": "OT-2", "apiLevel": "2.17"} +############# +# CHANGELOG # +############# -######################### -#### LOOK AT THIS ####### -######################### +# ---- +# 2.17 +# ---- +# NOTHING NEW # This protocol is exactly the same as 2.16 Smoke Test V3 # The only difference is the API version in the metadata # There were no new positive test cases for 2.17 # The negative test cases are captured in the 2.17 dispense changes protcol -######################### -#### LOOK AT THIS ####### -######################### +# ---- +# 2.16 +# ---- + +# - prepare_to_aspirate added +# - fixed_trash property changed +# - instrument_context.trash_container property changed + +# ---- +# 2.15 +# ---- + +# - move_labware added - Manual Deck State Modification +# - ProtocolContext.load_adapter added +# - OFF_DECK location added + +# ---- +# 2.14 +# ---- + +# - ProtocolContext.defined_liquid and Well.load_liquid added +# - load_labware without parameters should still find the labware + +# ---- +# 2.13 +# ---- + +# - Heater-Shaker Module support added def run(ctx: protocol_api.ProtocolContext) -> None: @@ -72,7 +101,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: pipette_right = ctx.load_instrument(instrument_name="p20_single_gen2", mount="right", tip_racks=tips_20ul) - # modules https://docs.opentrons.com/v2/new_modules.html#available-modules + ######################### + # Heater-Shaker Support # + ######################### + + # -------------------------- # + # Added in API version: 2.13 # + # -------------------------- # + hs_module = ctx.load_module("heaterShakerModuleV1", hs_position) temperature_module = ctx.load_module("temperature module gen2", temperature_position) thermocycler_module = ctx.load_module("thermocycler module gen2") @@ -86,7 +122,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: hs_plate = hs_module.load_labware(name="nest_96_wellplate_100ul_pcr_full_skirt", adapter="opentrons_96_pcr_adapter") tc_plate = thermocycler_module.load_labware("nest_96_wellplate_100ul_pcr_full_skirt") - # A 2.14 difference, no params specified, still should find it. + ################################### + # Load Labware with no parameters # + ################################### + + # -------------------------- # + # Fixed in API version: 2.14 # + # -------------------------- # + custom_labware = ctx.load_labware( "cpx_4_tuberack_100ul", custom_lw_position, @@ -117,7 +160,14 @@ def run(ctx: protocol_api.ProtocolContext) -> None: logo_destination_plate.wells_by_name()["E5"], ] - # >= 2.14 define_liquid and load_liquid + ####################################### + # define_liquid & load_liquid Support # + ####################################### + + # -------------------------- # + # Added in API version: 2.14 # + # -------------------------- # + water = ctx.define_liquid( name="water", description="H₂O", display_color="#42AB2D" ) # subscript 2 https://www.compart.com/en/unicode/U+2082 @@ -147,7 +197,7 @@ def run(ctx: protocol_api.ProtocolContext) -> None: # Added in API version: 2.15 # # -------------------------- # - # Putting steps for this at beginning of protocol so you can do the manual stuff + # Putting steps for this at beginning of protocol so y # >= 2.14 define_liquid and load_liquidou can do the manual stuff # then walk away to let the rest of the protocol execute # The test flow is as follows: diff --git a/app-testing/files/protocols/OT2_S_v2_18_P300M_P20S_HS_TC_TM_SmokeTestV3.py b/app-testing/files/protocols/OT2_S_v2_18_P300M_P20S_HS_TC_TM_SmokeTestV3.py new file mode 100644 index 00000000000..a724789eb1f --- /dev/null +++ b/app-testing/files/protocols/OT2_S_v2_18_P300M_P20S_HS_TC_TM_SmokeTestV3.py @@ -0,0 +1,595 @@ +"""Smoke Test v3.0 """ + +# https://opentrons.atlassian.net/projects/RQA?selectedItem=com.atlassian.plugins.atlassian-connect-plugin:com.kanoah.test-manager__main-project-page#!/testCase/QB-T497 + +############# +# CHANGELOG # +############# + +# ---- +# 2.18 +# ---- + +# - labware.set_offset +# - Runtime Parameters added +# - TrashContainer.top() and Well.top() now return objects of the same type +# - pipette.drop_tip() if location argument not specified the tips will be dropped at different locations in the bin +# - pipette.drop_tip() if location is specified, the tips will be dropped in the same place every time + +# ---- +# 2.17 +# ---- + +# NOTHING NEW +# This protocol is exactly the same as 2.16 Smoke Test V3 +# The only difference is the API version in the metadata +# There were no new positive test cases for 2.17 +# The negative test cases are captured in the 2.17 dispense changes protocol + +# ---- +# 2.16 +# ---- + +# - prepare_to_aspirate added +# - fixed_trash property changed +# - instrument_context.trash_container property changed + +# ---- +# 2.15 +# ---- + +# - move_labware added - Manual Deck State Modification +# - ProtocolContext.load_adapter added +# - OFF_DECK location added + +# ---- +# 2.14 +# ---- + +# - ProtocolContext.defined_liquid and Well.load_liquid added +# - load_labware without parameters should still find the labware + +# ---- +# 2.13 +# ---- + +# - Heater-Shaker Module support added + +from opentrons import protocol_api, types + +metadata = { + "protocolName": "🛠️ 2.18 Smoke Test V3 🪄", + "author": "Opentrons Engineering ", + "source": "Software Testing Team", + "description": ("Description of the protocol that is longish \n has \n returns and \n emoji 😊 ⬆️ "), +} + +requirements = {"robotType": "OT-2", "apiLevel": "2.18"} + +############################## +# Runtime Parameters Support # +############################## + +# -------------------------- # +# Added in API version: 2.18 # +# -------------------------- # + + +def add_parameters(parameters: protocol_api.Parameters): + reservoir_choices = [ + {"display_name": "Nest 12 Well 15 mL", "value": "nest_12_reservoir_15ml"}, + {"display_name": "USA Scientific 12 Well 22 mL", "value": "usascientific_12_reservoir_22ml"}, + ] + + well_plate_choices = [ + {"display_name": "Nest 96 Well 100 µL", "value": "nest_96_wellplate_100ul_pcr_full_skirt"}, + {"display_name": "Corning 96 Well 360 µL", "value": "corning_96_wellplate_360ul_flat"}, + {"display_name": "Opentrons Tough 96 Well 200 µL", "value": "opentrons_96_wellplate_200ul_pcr_full_skirt"}, + ] + + parameters.add_str( + variable_name="reservoir_name", + display_name="Reservoir Name", + description="Name of the reservoir", + default="nest_12_reservoir_15ml", + choices=reservoir_choices, + ) + + parameters.add_str( + variable_name="well_plate_name", + display_name="Well Plate Name", + description="Name of the well plate", + default="nest_96_wellplate_100ul_pcr_full_skirt", + choices=well_plate_choices, + ) + + parameters.add_int( + variable_name="delay_time", + display_name="Delay Time", + description="Time to delay in seconds", + default=3, + minimum=1, + maximum=10, + unit="seconds", + ) + + parameters.add_bool( + variable_name="robot_lights", + display_name="Robot Lights", + description="Turn on the robot lights?", + default=True, + ) + + parameters.add_float( + variable_name="heater_shaker_temperature", + display_name="Heater Shaker Temperature", + description="Temperature to set the heater shaker to", + default=38.0, + minimum=37.0, + maximum=100.0, + unit="°C", + ) + + +def run(ctx: protocol_api.ProtocolContext) -> None: + """This method is run by the protocol engine.""" + + ############################## + # Runtime Parameters Support # + ############################## + + # -------------------------- # + # Added in API version: 2.18 # + # -------------------------- # + + RESERVOIR_NAME: str = ctx.params.reservoir_name + WELL_PLATE_NAME: str = ctx.params.well_plate_name + DELAY_TIME: int = ctx.params.delay_time + ROBOT_LIGHTS: bool = ctx.params.robot_lights + HEATER_SHAKER_TEMPERATURE: float = ctx.params.heater_shaker_temperature + + ctx.set_rail_lights(ROBOT_LIGHTS) + ctx.comment(f"Let there be light! {ctx.rail_lights_on} 🌠🌠🌠") + ctx.comment(f"Is the door is closed? {ctx.door_closed} 🚪🚪🚪") + ctx.comment(f"Is this a simulation? {ctx.is_simulating()} 🔮🔮🔮") + ctx.comment(f"Running against API Version: {ctx.api_version}") + + # deck positions + tips_300ul_position = "5" + tips_20ul_position = "4" + dye_source_position = "3" + logo_position = "2" + temperature_position = "9" + custom_lw_position = "6" + hs_position = "1" + + # Thermocycler has a default position that covers Slots 7, 8, 10, and 11. + # This is the only valid location for the Thermocycler on the OT-2 deck. + # This position is a default parameter when declaring the TC so you do not need to specify. + + # 300ul tips + tips_300ul = [ + ctx.load_labware( + load_name="opentrons_96_tiprack_300ul", + location=tips_300ul_position, + label="300ul tips", + ) + ] + + # 20ul tips + tips_20ul = [ + ctx.load_labware( + load_name="opentrons_96_tiprack_20ul", + location=tips_20ul_position, + label="20ul tips", + ) + ] + + # pipettes + pipette_left = ctx.load_instrument(instrument_name="p300_multi_gen2", mount="left", tip_racks=tips_300ul) + + pipette_right = ctx.load_instrument(instrument_name="p20_single_gen2", mount="right", tip_racks=tips_20ul) + + ######################### + # Heater-Shaker Support # + ######################### + + # -------------------------- # + # Added in API version: 2.13 # + # -------------------------- # + + hs_module = ctx.load_module("heaterShakerModuleV1", hs_position) + temperature_module = ctx.load_module("temperature module gen2", temperature_position) + thermocycler_module = ctx.load_module("thermocycler module gen2") + + # module labware + temp_adapter = temperature_module.load_adapter("opentrons_96_well_aluminum_block") + temp_plate = temp_adapter.load_labware( + WELL_PLATE_NAME, + label="Temperature-Controlled plate", + ) + hs_plate = hs_module.load_labware(name=WELL_PLATE_NAME, adapter="opentrons_96_pcr_adapter") + tc_plate = thermocycler_module.load_labware(WELL_PLATE_NAME) + + ################################### + # Load Labware with no parameters # + ################################### + + # -------------------------- # + # Fixed in API version: 2.14 # + # -------------------------- # + + custom_labware = ctx.load_labware( + "cpx_4_tuberack_100ul", + custom_lw_position, + label="4 custom tubes", + ) + + # create plates and pattern list + logo_destination_plate = ctx.load_labware( + load_name=WELL_PLATE_NAME, + location=logo_position, + label="logo destination", + ) + + dye_container = ctx.load_labware( + load_name=RESERVOIR_NAME, + location=dye_source_position, + label="dye container", + ) + + dye_source = dye_container.wells_by_name()["A2"] + + # Well Location set-up + dye_destination_wells = [ + logo_destination_plate.wells_by_name()["C7"], + logo_destination_plate.wells_by_name()["D6"], + logo_destination_plate.wells_by_name()["D7"], + logo_destination_plate.wells_by_name()["D8"], + logo_destination_plate.wells_by_name()["E5"], + ] + + ####################################### + # define_liquid & load_liquid Support # + ####################################### + + # -------------------------- # + # Added in API version: 2.14 # + # -------------------------- # + + water = ctx.define_liquid( + name="water", description="H₂O", display_color="#42AB2D" + ) # subscript 2 https://www.compart.com/en/unicode/U+2082 + + acetone = ctx.define_liquid( + name="acetone", description="C₃H₆O", display_color="#38588a" + ) # subscript 3 https://www.compart.com/en/unicode/U+2083 + # subscript 6 https://www.compart.com/en/unicode/U+2086 + + dye_container.wells_by_name()["A1"].load_liquid(liquid=water, volume=4000) + dye_container.wells_by_name()["A2"].load_liquid(liquid=water, volume=2000) + dye_container.wells_by_name()["A5"].load_liquid(liquid=acetone, volume=555.55555) + + # 2 different liquids in the same well + dye_container.wells_by_name()["A8"].load_liquid(liquid=water, volume=900.00) + dye_container.wells_by_name()["A8"].load_liquid(liquid=acetone, volume=1001.11) + + hs_module.close_labware_latch() + + pipette_right.pick_up_tip() + + ################################## + # Manual Deck State Modification # + ################################## + + # -------------------------- # + # Added in API version: 2.15 # + # -------------------------- # + + # Putting steps for this at beginning of protocol so y # >= 2.14 define_liquid and load_liquidou can do the manual stuff + # then walk away to let the rest of the protocol execute + + # The test flow is as follows: + # 1. Remove the existing PCR plate from slot 2 + # 2. Move the reservoir from slot 3 to slot 2 + # 3. Pickup P20 tip, move pipette to reservoir A1 in slot 2 + # 4. Pause and ask user to validate that the tip is in the middle of reservoir A1 in slot 2 + # 5. Move the reservoir back to slot 3 from slot 2 + # 6. Move pipette to reservoir A1 in slot 3 + # 7. Pause and ask user to validate that the tip is in the middle of reservoir A1 in slot 3 + # 8. Move custom labware from slot 6 to slot 2 + # 9. Move pipette to well A1 in slot 2 + # 10. Pause and ask user to validate that the tip is in the middle of well A1 in slot 2 + # 11. Move the custom labware back to slot 6 from slot 2 + # 12. Move pipette to well A1 in slot 6 + # 13. Pause and ask user to validate that the tip is in the middle of well A1 in slot 6 + # 14. Move the offdeck PCR plate back to slot 2 + # 15. Move pipette to well A1 in slot 2 + # 16. Pause and ask user to validate that the tip is in the middle of well A1 in slot 2 + + # In effect, nothing will actually change to the protocol, + # but we will be able to test that the UI responds appropriately. + + # Note: + # logo_destination_plate is a nest_96_wellplate_100ul_pcr_full_skirt - starting position is slot 2 + # dye_container is aRESERVOIR_NAME- starting position is slot 3 + + # Step 1 + ctx.move_labware( + labware=logo_destination_plate, + new_location=protocol_api.OFF_DECK, + ) + + # Step 2 + ctx.move_labware(labware=dye_container, new_location="2") + + # Step 3 + pipette_right.move_to(location=dye_container.wells_by_name()["A1"].top()) + + # Step 4 + ctx.pause("Is the pipette tip in the middle of reservoir A1 in slot 2?") + + # Step 5 + ctx.move_labware(labware=dye_container, new_location="3") + + # Step 6 + pipette_right.move_to(location=dye_container.wells_by_name()["A1"].top()) + + # Step 7 + ctx.pause("Is the pipette tip in the middle of reservoir A1 in slot 3?") + + # Step 8 + ctx.move_labware(labware=custom_labware, new_location="2") + + # Step 9 + pipette_right.move_to(location=custom_labware.wells_by_name()["A1"].top()) + + # Step 10 + ctx.pause("Is the pipette tip in the middle of custom labware A1 in slot 2?") + + # Step 11 + ctx.move_labware(labware=custom_labware, new_location="6") + + # Step 12 + pipette_right.move_to(location=custom_labware.wells_by_name()["A1"].top()) + + # Step 13 + ctx.pause("Is the pipette tip in the middle of custom labware A1 in slot 6?") + + # Step 14 + ctx.move_labware(labware=logo_destination_plate, new_location="2") + + # Step 15 + pipette_right.move_to(location=logo_destination_plate.wells_by_name()["A1"].top()) + + # Step 16 + ctx.pause("Is the pipette tip in the middle of well A1 in slot 2?") + + ####################### + # prepare_to_aspirate # + ####################### + + # -------------------------- # + # Added in API version: 2.16 # + # -------------------------- # + + pipette_right.prepare_to_aspirate() + pipette_right.move_to(dye_container.wells_by_name()["A1"].bottom(z=2)) + ctx.pause( + "Testing prepare_to_aspirate - watch pipette until next pause.\n The pipette should only move up out of the well after it has aspirated." + ) + pipette_right.aspirate(10, dye_container.wells_by_name()["A1"].bottom(z=2)) + ctx.pause("Did the pipette move up out of the well, only once, after aspirating?") + pipette_right.dispense(10, dye_container.wells_by_name()["A1"].bottom(z=2)) + + ######################################### + # protocol_context.fixed_trash property # + ######################################### + + # ---------------------------- # + # Changed in API version: 2.16 # + # ---------------------------- # + + pipette_right.move_to(ctx.fixed_trash) + ctx.pause("Is the pipette over the trash? Pipette will home after this pause.") + ctx.home() + + ############################################### + # instrument_context.trash_container property # + ############################################### + + # ---------------------------- # + # Changed in API version: 2.16 # + # ---------------------------- # + + pipette_right.move_to(pipette_right.trash_container) + ctx.pause("Is the pipette over the trash?") + + # Distribute dye + pipette_right.distribute( + volume=18, + source=dye_source, + dest=dye_destination_wells, + new_tip="never", + ) + pipette_right.drop_tip() + + # transfer + transfer_destinations = [ + logo_destination_plate.wells_by_name()["A11"], + logo_destination_plate.wells_by_name()["B11"], + logo_destination_plate.wells_by_name()["C11"], + ] + pipette_right.pick_up_tip() + pipette_right.transfer( + volume=60, + source=dye_container.wells_by_name()["A2"], + dest=transfer_destinations, + new_tip="never", + touch_tip=True, + blow_out=True, + blowout_location="destination well", + mix_before=(3, 20), + mix_after=(1, 20), + mix_touch_tip=True, + ) + + # consolidate + pipette_right.consolidate( + volume=20, + source=transfer_destinations, + dest=dye_container.wells_by_name()["A5"], + new_tip="never", + touch_tip=False, + blow_out=True, + blowout_location="destination well", + mix_before=(3, 20), + ) + + # well to well + pipette_right.return_tip() + pipette_right.pick_up_tip() + pipette_right.aspirate(volume=5, location=logo_destination_plate.wells_by_name()["A11"]) + pipette_right.air_gap(volume=10) + ctx.delay(seconds=DELAY_TIME) + pipette_right.dispense(volume=5, location=logo_destination_plate.wells_by_name()["H11"]) + + # move to + pipette_right.move_to(logo_destination_plate.wells_by_name()["E12"].top()) + pipette_right.move_to(logo_destination_plate.wells_by_name()["E11"].bottom()) + pipette_right.blow_out() + # touch tip + # pipette ends in the middle of the well as of 6.3.0 in all touch_tip + pipette_right.touch_tip(location=logo_destination_plate.wells_by_name()["H1"]) + ctx.pause("Is the pipette tip in the middle of the well?") + pipette_right.return_tip() + + # Play with the modules + temperature_module.await_temperature(25) + + hs_module.set_and_wait_for_shake_speed(466) + ctx.delay(seconds=DELAY_TIME) + + hs_module.set_and_wait_for_temperature(HEATER_SHAKER_TEMPERATURE) + + thermocycler_module.open_lid() + thermocycler_module.close_lid() + thermocycler_module.set_lid_temperature(38) # 37 is the minimum + thermocycler_module.set_block_temperature(temperature=28, hold_time_seconds=5) + thermocycler_module.deactivate_block() + thermocycler_module.deactivate_lid() + thermocycler_module.open_lid() + + hs_module.deactivate_shaker() + + # dispense to modules + + # to temperature module + pipette_right.pick_up_tip() + pipette_right.aspirate(volume=15, location=dye_source) + pipette_right.dispense(volume=15, location=temp_plate.well(0)) + pipette_right.drop_tip() + + # to heater shaker + pipette_left.pick_up_tip() + pipette_left.aspirate(volume=50, location=dye_source) + pipette_left.dispense(volume=50, location=hs_plate.well(0)) + hs_module.set_and_wait_for_shake_speed(350) + ctx.delay(DELAY_TIME) + hs_module.deactivate_shaker() + + # to custom labware + # This labware does not EXIST!!!! so... + # Use tip rack lid to catch dye on wet run + pipette_right.pick_up_tip() + pipette_right.aspirate(volume=10, location=dye_source, rate=2.0) + pipette_right.dispense(volume=10, location=custom_labware.well(3), rate=1.5) + pipette_right.drop_tip() + + # to thermocycler + pipette_left.aspirate(volume=75, location=dye_source) + pipette_left.dispense(volume=60, location=tc_plate.wells_by_name()["A6"]) + pipette_left.drop_tip() + + ######################## + # unique top() methods # + ######################## + + # ---------------------------- # + # Changed in API version: 2.18 # + # ---------------------------- # + + assert isinstance(ctx.fixed_trash.top(), protocol_api.TrashBin) + assert isinstance(dye_container.wells_by_name()["A1"].top(), types.Location) + + ############################# + # drop_tip location changes # + ############################# + + # ---------------------------- # + # Changed in API version: 2.18 # + # ---------------------------- # + + ctx.pause("Watch the next 5 tips drop in the trash. They should drop in different locations of the trash each time.") + for _ in range(5): + pipette_right.pick_up_tip() + pipette_right.drop_tip() + + ctx.pause("Watch the next 5 tips drop in the trash. They should drop in the same location of the trash each time.") + for _ in range(5): + pipette_right.pick_up_tip() + pipette_right.drop_tip(location=ctx.fixed_trash) + + ###################### + # labware.set_offset # + ###################### + + # -------------------------- # + # Added in API version: 2.18 # + # -------------------------- # + + SET_OFFSET_AMOUNT = 10.0 + + pipette_right.pick_up_tip() + + ctx.move_labware(labware=logo_destination_plate, new_location=protocol_api.OFF_DECK) + pipette_right.move_to(dye_container.wells_by_name()["A1"].top()) + + ctx.pause("Is the pipette tip in the middle of reservoir A1 in slot 3? It should be at the LPC calibrated height.") + + dye_container.set_offset( + x=0.0, + y=0.0, + z=SET_OFFSET_AMOUNT, + ) + + pipette_right.move_to(dye_container.wells_by_name()["A1"].top()) + ctx.pause("Is the pipette tip in the middle of reservoir A1 in slot 3? It should be 10mm higher than the LPC calibrated height.") + + ctx.move_labware(labware=dye_container, new_location="2") + pipette_right.move_to(dye_container.wells_by_name()["A1"].top()) + + ctx.pause("Is the pipette tip in the middle of reservoir A1 in slot 2? It should be at the LPC calibrated height.") + + dye_container.set_offset( + x=0.0, + y=0.0, + z=SET_OFFSET_AMOUNT, + ) + + pipette_right.move_to(dye_container.wells_by_name()["A1"].top()) + ctx.pause("Is the pipette tip in the middle of reservoir A1 in slot 2? It should be 10mm higher than the LPC calibrated height.") + + ctx.move_labware(labware=dye_container, new_location="3") + pipette_right.move_to(dye_container.wells_by_name()["A1"].top()) + + ctx.pause("Is the pipette tip in the middle of reservoir A1 in slot 3? It should be 10mm higher than the LPC calibrated height.") + + ctx.move_labware(labware=logo_destination_plate, new_location="2") + pipette_right.move_to(logo_destination_plate.wells_by_name()["A1"].top()) + + ctx.pause("Is the pipette tip in the middle of well A1 in slot 2? It should be at the LPC calibrated height.") + + ctx.pause("!!!!!!!!!!YOU NEED TO REDO LPC!!!!!!!!!!") + + pipette_right.return_tip() diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4cb705bdbf][Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4cb705bdbf][Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol].json index 1f2a502c2ab..471419d2827 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4cb705bdbf][Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[4cb705bdbf][Flex_X_v2_16_NO_PIPETTES_MM_MagneticModuleInFlexProtocol].json @@ -15,7 +15,7 @@ "errorInfo": { "args": "('Module Type magneticModuleType does not have a related fixture ID.',)", "class": "ValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 150, in execute\n result: CommandResult = await command_impl.execute(running_command.params) # type: ignore[arg-type]\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 116, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 167, in _ensure_module_location\n cutout_fixture_id = ModuleType.to_module_fixture_id(module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/hardware_control/modules/types.py\", line 79, in to_module_fixture_id\n raise ValueError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 146, in execute\n result = await command_impl.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 121, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 175, in _ensure_module_location\n cutout_fixture_id = ModuleType.to_module_fixture_id(module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/hardware_control/modules/types.py\", line 80, in to_module_fixture_id\n raise ValueError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -56,7 +56,7 @@ "errorInfo": { "args": "('Module Type magneticModuleType does not have a related fixture ID.',)", "class": "ValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 150, in execute\n result: CommandResult = await command_impl.execute(running_command.params) # type: ignore[arg-type]\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 116, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 167, in _ensure_module_location\n cutout_fixture_id = ModuleType.to_module_fixture_id(module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/hardware_control/modules/types.py\", line 79, in to_module_fixture_id\n raise ValueError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 146, in execute\n result = await command_impl.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 121, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 175, in _ensure_module_location\n cutout_fixture_id = ModuleType.to_module_fixture_id(module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/hardware_control/modules/types.py\", line 80, in to_module_fixture_id\n raise ValueError(\n" }, "errorType": "PythonException", "wrappedErrors": [] diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json index df53cf0907c..75501aa1ccd 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[6e744cbb48][Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices].json @@ -17,16 +17,16 @@ }, "errors": [ { - "detail": "ParameterValueError [line 48]: Parameter must be set to one of the allowed values of {'flex_1channel_50', 'flex_8channel_50'}.", + "detail": "ParameterValueError [line 48]: Parameter must be set to one of the allowed values of {'flex_8channel_50', 'flex_1channel_50'}.", "errorCode": "4000", "errorInfo": {}, "errorType": "ExceptionInProtocolError", "wrappedErrors": [ { - "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {'flex_1channel_50', 'flex_8channel_50'}.", + "detail": "opentrons.protocols.parameters.types.ParameterValueError: Parameter must be set to one of the allowed values of {'flex_8channel_50', 'flex_1channel_50'}.", "errorCode": "4000", "errorInfo": { - "args": "(\"Parameter must be set to one of the allowed values of {'flex_1channel_50', 'flex_8channel_50'}.\",)", + "args": "(\"Parameter must be set to one of the allowed values of {'flex_8channel_50', 'flex_1channel_50'}.\",)", "class": "ParameterValueError", "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 80, in _parse_and_set_parameters\n exec(\"add_parameters(__param_context)\", new_globs)\n\n File \"\", line 1, in \n\n File \"Flex_X_v2_18_NO_PIPETTES_Overrides_DefaultChoiceNoMatchChoice_Override_str_default_no_matching_choices.py\", line 48, in add_parameters\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/_parameter_context.py\", line 152, in add_str\n parameter = parameter_definition.create_str_parameter(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 241, in create_str_parameter\n return ParameterDefinition(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 84, in __init__\n self.value: ParamType = default\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/parameters/parameter_definition.py\", line 95, in value\n raise ParameterValueError(\n" }, diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c9e6e3d59d][OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c9e6e3d59d][OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests].json index ea5794cc6a8..cbbef937c61 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c9e6e3d59d][OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[c9e6e3d59d][OT2_X_v4_P300M_P20S_MM_TC1_TM_e2eTests].json @@ -6965,7 +6965,7 @@ "errorInfo": { "args": "('Cannot aspirate more than pipette max volume',)", "class": "AssertionError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 84, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 61, in _do_run\n await func(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/protocol_runner.py\", line 219, in run_func\n await self._legacy_executor.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/legacy_wrappers.py\", line 180, in execute\n await to_thread.run_sync(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 33, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 877, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 807, in run\n result = context.run(func, *args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 63, in run_protocol\n execute_json_v4.dispatch_json(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_json_v4.py\", line 272, in dispatch_json\n pipette_command_map[command_type]( # type: ignore\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_json_v3.py\", line 159, in _aspirate\n pipette.aspirate(volume, location)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/instrument_context.py\", line 272, in aspirate\n self._core.aspirate(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy_simulator/legacy_instrument_core.py\", line 119, in aspirate\n new_volume <= self._pipette_dict[\"working_volume\"]\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 84, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 61, in _do_run\n await func(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/protocol_runner.py\", line 224, in run_func\n await self._protocol_executor.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/python_protocol_wrappers.py\", line 155, in execute\n await to_thread.run_sync(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 33, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 877, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 807, in run\n result = context.run(func, *args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 63, in run_protocol\n execute_json_v4.dispatch_json(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_json_v4.py\", line 272, in dispatch_json\n pipette_command_map[command_type]( # type: ignore\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_json_v3.py\", line 159, in _aspirate\n pipette.aspirate(volume, location)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/api_support/util.py\", line 383, in _check_version_wrapper\n return decorated_obj(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/instrument_context.py\", line 272, in aspirate\n self._core.aspirate(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_api/core/legacy_simulator/legacy_instrument_core.py\", line 119, in aspirate\n new_volume <= self._pipette_dict[\"working_volume\"]\n" }, "errorType": "PythonException", "wrappedErrors": [] diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e42e36e3ca][OT2_X_v2_13_None_None_PythonSyntaxError].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e42e36e3ca][OT2_X_v2_13_None_None_PythonSyntaxError].json index 7e05bcc5181..238873d6edb 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e42e36e3ca][OT2_X_v2_13_None_None_PythonSyntaxError].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[e42e36e3ca][OT2_X_v2_13_None_None_PythonSyntaxError].json @@ -31,7 +31,7 @@ "msg": "No module named 'superspecialmagic'", "name": "superspecialmagic", "path": "None", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 84, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 61, in _do_run\n await func(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/protocol_runner.py\", line 219, in run_func\n await self._legacy_executor.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/legacy_wrappers.py\", line 180, in execute\n await to_thread.run_sync(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 33, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 877, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 807, in run\n result = context.run(func, *args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 40, in run_protocol\n run_python(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 95, in run_python\n exec(proto.contents, new_globs)\n\n File \"OT2_X_v2_13_None_None_PythonSyntaxError.py\", line 4, in \n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 84, in _run\n await self._run_func()\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/task_queue.py\", line 61, in _do_run\n await func(*args, **kwargs)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/protocol_runner.py\", line 224, in run_func\n await self._protocol_executor.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_runner/python_protocol_wrappers.py\", line 155, in execute\n await to_thread.run_sync(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/to_thread.py\", line 33, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 877, in run_sync_in_worker_thread\n return await future\n\n File \"/usr/local/lib/python3.10/site-packages/anyio/_backends/_asyncio.py\", line 807, in run\n result = context.run(func, *args)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute.py\", line 40, in run_protocol\n run_python(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocols/execution/execute_python.py\", line 95, in run_python\n exec(proto.contents, new_globs)\n\n File \"OT2_X_v2_13_None_None_PythonSyntaxError.py\", line 4, in \n" }, "errorType": "PythonException", "wrappedErrors": [] diff --git a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed1e64c539][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2].json b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed1e64c539][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2].json index 507c5d11bee..f31be30f943 100644 --- a/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed1e64c539][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2].json +++ b/app-testing/tests/__snapshots__/analyses_snapshot_test/test_analysis_snapshot[ed1e64c539][Flex_X_v2_16_NO_PIPETTES_TM_ModuleInCol2].json @@ -15,7 +15,7 @@ "errorInfo": { "args": "('A temperatureModuleType cannot be loaded into slot C2',)", "class": "ValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 150, in execute\n result: CommandResult = await command_impl.execute(running_command.params) # type: ignore[arg-type]\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 116, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 176, in _ensure_module_location\n raise ValueError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 146, in execute\n result = await command_impl.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 121, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 184, in _ensure_module_location\n raise ValueError(\n" }, "errorType": "PythonException", "wrappedErrors": [] @@ -56,7 +56,7 @@ "errorInfo": { "args": "('A temperatureModuleType cannot be loaded into slot C2',)", "class": "ValueError", - "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 150, in execute\n result: CommandResult = await command_impl.execute(running_command.params) # type: ignore[arg-type]\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 116, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 176, in _ensure_module_location\n raise ValueError(\n" + "traceback": " File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/execution/command_executor.py\", line 146, in execute\n result = await command_impl.execute(\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 121, in execute\n self._ensure_module_location(params.location.slotName, module_type)\n\n File \"/usr/local/lib/python3.10/site-packages/opentrons/protocol_engine/commands/load_module.py\", line 184, in _ensure_module_location\n raise ValueError(\n" }, "errorType": "PythonException", "wrappedErrors": [] diff --git a/app/src/App/DesktopApp.tsx b/app/src/App/DesktopApp.tsx index ffa50727da1..c4b8aa6d6cb 100644 --- a/app/src/App/DesktopApp.tsx +++ b/app/src/App/DesktopApp.tsx @@ -28,6 +28,7 @@ import { Labware } from '../pages/Labware' import { useSoftwareUpdatePoll } from './hooks' import { Navbar } from './Navbar' import { EstopTakeover, EmergencyStopContext } from '../organisms/EmergencyStop' +import { IncompatibleModuleTakeover } from '../organisms/IncompatibleModule' import { OPENTRONS_USB } from '../redux/discovery' import { appShellRequestor } from '../redux/shell/remote' import { useRobot, useIsFlex } from '../organisms/Devices/hooks' @@ -153,10 +154,6 @@ function RobotControlTakeover(): JSX.Element | null { const params = deviceRouteMatch?.params as DesktopRouteParams const robotName = params?.robotName const robot = useRobot(robotName) - const isFlex = useIsFlex(robotName) - - // E-stop is not supported on OT2 - if (!isFlex) return null if (deviceRouteMatch == null || robot == null || robotName == null) return null @@ -167,7 +164,29 @@ function RobotControlTakeover(): JSX.Element | null { hostname={robot.ip ?? null} requestor={robot?.ip === OPENTRONS_USB ? appShellRequestor : undefined} > - + + ) } + +interface TakeoverProps { + robotName: string +} + +function AllRobotsRobotControlTakeover({ + robotName, +}: TakeoverProps): JSX.Element | null { + return +} + +function FlexOnlyRobotControlTakeover({ + robotName, +}: TakeoverProps): JSX.Element | null { + // E-stop is not supported on OT2 + const isFlex = useIsFlex(robotName) + if (!isFlex) { + return null + } + return +} diff --git a/app/src/App/OnDeviceDisplayApp.tsx b/app/src/App/OnDeviceDisplayApp.tsx index 1459ff5071f..43f93bd425b 100644 --- a/app/src/App/OnDeviceDisplayApp.tsx +++ b/app/src/App/OnDeviceDisplayApp.tsx @@ -20,6 +20,7 @@ import { OnDeviceLocalizationProvider } from '../LocalizationProvider' import { ToasterOven } from '../organisms/ToasterOven' import { MaintenanceRunTakeover } from '../organisms/TakeoverModal' import { FirmwareUpdateTakeover } from '../organisms/FirmwareUpdateModal/FirmwareUpdateTakeover' +import { IncompatibleModuleTakeover } from '../organisms/IncompatibleModule' import { EstopTakeover } from '../organisms/EmergencyStop' import { ConnectViaEthernet } from '../pages/ConnectViaEthernet' import { ConnectViaUSB } from '../pages/ConnectViaUSB' @@ -179,6 +180,7 @@ export const OnDeviceDisplayApp = (): JSX.Element => { ) : ( <> + diff --git a/app/src/App/portal.tsx b/app/src/App/portal.tsx index 62f5d79fcf2..346d5842d81 100644 --- a/app/src/App/portal.tsx +++ b/app/src/App/portal.tsx @@ -1,8 +1,8 @@ import * as React from 'react' import { Box } from '@opentrons/components' -const TOP_PORTAL_ID = '__otAppTopPortalRoot' -const MODAL_PORTAL_ID = '__otAppModalPortalRoot' +export const TOP_PORTAL_ID = '__otAppTopPortalRoot' +export const MODAL_PORTAL_ID = '__otAppModalPortalRoot' export function getTopPortalEl(): HTMLElement { return global.document.getElementById(TOP_PORTAL_ID) ?? global.document.body } @@ -11,9 +11,9 @@ export function getModalPortalEl(): HTMLElement { } export function PortalRoot(): JSX.Element { - return + return } export function TopPortalRoot(): JSX.Element { - return + return } diff --git a/app/src/App/types.ts b/app/src/App/types.ts index 3b79224a535..806189ec1e8 100644 --- a/app/src/App/types.ts +++ b/app/src/App/types.ts @@ -1,4 +1,4 @@ -import * as React from 'react' +import type * as React from 'react' export interface RouteProps { /** diff --git a/app/src/assets/localization/en/app_settings.json b/app/src/assets/localization/en/app_settings.json index 389854a8b33..ab134dc34c9 100644 --- a/app/src/assets/localization/en/app_settings.json +++ b/app/src/assets/localization/en/app_settings.json @@ -1,4 +1,5 @@ { + "__dev_internal__forceHttpPolling": "Poll all network requests instead of using MQTT", "__dev_internal__protocolStats": "Protocol Stats", "__dev_internal__enableRunNotes": "Display Notes During a Protocol Run", "__dev_internal__enableQuickTransfer": "Enable Quick Transfer", diff --git a/app/src/assets/localization/en/error_recovery.json b/app/src/assets/localization/en/error_recovery.json index 7531853df16..b80e6a04121 100644 --- a/app/src/assets/localization/en/error_recovery.json +++ b/app/src/assets/localization/en/error_recovery.json @@ -1,3 +1,25 @@ { - "run_paused": "Run paused" + "are_you_sure_you_want_to_cancel": "Are you sure you want to cancel?", + "are_you_sure_you_want_to_resume": "Are you sure you want to resume?", + "before_you_begin": "Before you begin", + "cancel_run": "Cancel run", + "canceling_run": "Canceling run", + "confirm": "Confirm", + "continue": "Continue", + "general_error": "General error", + "general_error_message": "", + "go_back": "Go back", + "how_do_you_want_to_proceed": "How do you want to proceed?", + "launch_recovery_mode": "Launch Recovery Mode", + "recovery_mode": "Recovery Mode", + "recovery_mode_explanation": "Recovery Mode provides you with guided and manual controls for handling errors at runtime.
    You can make changes to ensure the step in progress when the error occurred can be completed or choose to cancel the protocol. When changes are made and no subsequent errors are detected, the method completes. Depending on the conditions that caused the error, you will only be provided with appropriate options.", + "retry_step": "Retry step", + "run_paused": "Run paused", + "run_will_resume": "The run will resume from the point at which the error occurred. Take any necessary actions to correct the problem first. If the step is completed successfully, the protocol continues.", + "if_tips_are_attached": "If tips are attached, you can choose to blow out any aspirated liquid and drop tips before the run is terminated.", + "stand_back": "Stand back, robot is in motion", + "stand_back_resuming": "Stand back, resuming current step", + "stand_back_retrying": "Stand back, retrying current command", + "tip_not_detected": "Tip not detected", + "view_recovery_options": "View recovery options" } diff --git a/app/src/assets/localization/en/incompatible_modules.json b/app/src/assets/localization/en/incompatible_modules.json new file mode 100644 index 00000000000..d9b1a231f0c --- /dev/null +++ b/app/src/assets/localization/en/incompatible_modules.json @@ -0,0 +1,7 @@ +{ + "incompatible_modules_attached": "incompatible module detected", + "remove_before_running_protocol": "Remove the following hardware before running a protocol:", + "needs_your_assistance": "{{robot_name}} needs your assistance", + "remove_before_using": "You must remove incompatible modules before using this robot.", + "is_not_compatible": "{{module_name}} is not compatible with the {{robot_type}}" +} diff --git a/app/src/assets/localization/en/index.ts b/app/src/assets/localization/en/index.ts index 51acf92db53..aef6c301f3e 100644 --- a/app/src/assets/localization/en/index.ts +++ b/app/src/assets/localization/en/index.ts @@ -27,6 +27,7 @@ import robot_controls from './robot_controls.json' import run_details from './run_details.json' import top_navigation from './top_navigation.json' import error_recovery from './error_recovery.json' +import incompatible_modules from './incompatible_modules.json' export const en = { shared, @@ -58,4 +59,5 @@ export const en = { run_details, top_navigation, error_recovery, + incompatible_modules, } diff --git a/app/src/assets/localization/en/quick_transfer.json b/app/src/assets/localization/en/quick_transfer.json index b0e9e294dc4..2d9d4594e0b 100644 --- a/app/src/assets/localization/en/quick_transfer.json +++ b/app/src/assets/localization/en/quick_transfer.json @@ -1,8 +1,24 @@ { + "advanced_settings": "Advanced settings", + "all": "All labware", + "aspirate_volume": "Aspirate volume per well", + "aspirate_volume_µL": "Aspirate volume per well (µL)", + "both_mounts": "Left + Right Mount", "create_new_transfer": "Create new quick transfer", + "create_transfer": "Create transfer", + "destination": "Destination", + "destination_labware": "Destination labware", + "dispense_volume": "Dispense volume per well", + "dispense_volume_µL": "Dispense volume per well (µL)", + "exit_quick_transfer": "Exit quick transfer?", "left_mount": "Left Mount", - "both_mounts": "Left + Right Mount", + "lose_all_progress": "You will lose all progress on this quick transfer.", + "overview": "Overview", + "pipette": "Pipette", + "quick_transfer_volume": "Quick Transfer {{volume}}µL", "right_mount": "Right Mount", + "reservoir": "Reservoirs", + "source": "Source", "select_attached_pipette": "Select attached pipette", "select_dest_labware": "Select destination labware", "select_dest_wells": "Select destination wells", @@ -12,10 +28,18 @@ "set_aspirate_volume": "Set aspirate volume", "set_dispense_volume": "Set dispense volume", "set_transfer_volume": "Set transfer volume", + "source_labware": "Source labware", + "source_labware_d2": "Source labware in D2", "use_deck_slots": "Quick transfers use deck slots B2-D2. These slots hold a tip rack, a source labware, and a destination labware.Make sure that your deck configuration is up to date to avoid collisions.", + "tip_management": "Tip management", "tip_rack": "Tip rack", + "tubeRack": "Tube racks", + "volume_per_well": "Volume per well", + "volume_per_well_µL": "Volume per well (µL)", + "value_out_of_range": "Value must be between {{min}}-{{max}}", "labware": "Labware", "pipette_currently_attached": "Quick transfer options depend on the pipettes currently attached to your robot.", + "wellPlate": "Well plates", "well_selection": "Well selection", "well_ratio": "Quick transfers with multiple source wells can either be one-to-one (select {{wells}} for this transfer) or consolidate (select 1 destination well)." } diff --git a/app/src/assets/localization/en/shared.json b/app/src/assets/localization/en/shared.json index 899adfc5a31..996ed8326d2 100644 --- a/app/src/assets/localization/en/shared.json +++ b/app/src/assets/localization/en/shared.json @@ -54,6 +54,7 @@ "refresh": "refresh", "remember_my_selection_and_do_not_ask_again": "Remember my selection and don't ask again", "reset_all": "Reset all", + "reset": "Reset", "restart": "restart", "resume": "resume", "return": "return", diff --git a/app/src/atoms/InputField/InputField.stories.tsx b/app/src/atoms/InputField/InputField.stories.tsx index 9a19201e3b9..677c6c1b048 100644 --- a/app/src/atoms/InputField/InputField.stories.tsx +++ b/app/src/atoms/InputField/InputField.stories.tsx @@ -1,32 +1,78 @@ import * as React from 'react' -import { InputField } from './index' -import type { Story, Meta } from '@storybook/react' +import { + DIRECTION_COLUMN, + Flex, + SPACING, + StyledText, + VIEWPORT, +} from '@opentrons/components' +import { InputField as InputFieldComponent } from './index' +import type { Meta, StoryObj } from '@storybook/react' -export default { +const meta: Meta = { + // ToDo (kk05/02/2024) this should be in Library but at this moment there is the same name component in components + // The unification for this component will be done when the old component is retired completely. title: 'App/Atoms/InputField', - component: InputField, -} as Meta + component: InputFieldComponent, + parameters: VIEWPORT.touchScreenViewport, + argTypes: { + units: { + control: { + type: 'boolean', + }, + }, + }, +} + +export default meta +type Story = StoryObj -const Template: Story> = args => ( - -) +export const InputField: Story = args => { + const [value, setValue] = React.useState(args.value) + return ( + + {'Input title'} + ) => { + setValue(e.target.value) + }} + units={args.units ? 'rem' : undefined} + /> + + ) +} -export const Primary = Template.bind({}) -Primary.args = { +InputField.args = { value: 200, - units: 'rpm', type: 'number', caption: 'example caption', max: 200, - min: 200, + min: 10, } -export const ErrorMessage = Template.bind({}) -ErrorMessage.args = { - units: 'C', +export const InputFieldWithError: Story = args => { + const [value, setValue] = React.useState(args.value) + return ( + + ) => { + setValue(e.target.value) + }} + units={args.type !== 'number' ? undefined : args.units} + /> + + ) +} + +InputFieldWithError.args = { type: 'number', caption: 'example caption', - max: 10, + max: 200, min: 10, - error: 'input does not equal 10', + error: 'input is not in the range', } diff --git a/app/src/atoms/Interstitial/Interstitial.tsx b/app/src/atoms/Interstitial/Interstitial.tsx index e512b8e7adb..c86968c1103 100644 --- a/app/src/atoms/Interstitial/Interstitial.tsx +++ b/app/src/atoms/Interstitial/Interstitial.tsx @@ -11,10 +11,9 @@ import { SPACING, Overlay, } from '@opentrons/components' -import { - InterstitialTitleBar, - InterstitialTitleBarProps, -} from './InterstitiallTitleBar' +import { InterstitialTitleBar } from './InterstitiallTitleBar' + +import type { InterstitialTitleBarProps } from './InterstitiallTitleBar' export interface InterstitialProps { titleBar: InterstitialTitleBarProps contentsClassName?: string diff --git a/app/src/atoms/Link/__tests__/ExternalLink.test.tsx b/app/src/atoms/Link/__tests__/ExternalLink.test.tsx index f89572e2429..6d39662a104 100644 --- a/app/src/atoms/Link/__tests__/ExternalLink.test.tsx +++ b/app/src/atoms/Link/__tests__/ExternalLink.test.tsx @@ -29,7 +29,7 @@ describe('ExternalLink', () => { const link = screen.getByText('Test Link') expect(link).toHaveAttribute('href', 'https://opentrons.com') expect(link).toHaveAttribute('target', '_blank') - expect(link).toHaveStyle(`color: ${COLORS.blue55}`) + expect(link).toHaveStyle(`color: ${COLORS.blue50}`) }) it('renders open-in-new icon', () => { diff --git a/app/src/atoms/MenuList/MenuItem.tsx b/app/src/atoms/MenuList/MenuItem.tsx index 42a4efe2cb8..b1a63aaec09 100644 --- a/app/src/atoms/MenuList/MenuItem.tsx +++ b/app/src/atoms/MenuList/MenuItem.tsx @@ -5,8 +5,8 @@ import { TYPOGRAPHY, ALIGN_CENTER, RESPONSIVENESS, - StyleProps, } from '@opentrons/components' +import type { StyleProps } from '@opentrons/components' interface ButtonProps extends StyleProps { /** optional isAlert boolean to turn the background red, only seen in ODD */ @@ -34,21 +34,23 @@ export const MenuItem = styled.button` text-align: ${TYPOGRAPHY.textAlignCenter}; font-size: ${TYPOGRAPHY.fontSize28}; background-color: ${({ isAlert }) => - isAlert ? COLORS.red50 : COLORS.transparent}; - color: ${({ isAlert }) => (isAlert ? COLORS.white : COLORS.black90)}; + isAlert != null ? COLORS.red50 : COLORS.transparent}; + color: ${({ isAlert }) => + isAlert != null ? COLORS.white : COLORS.black90}; padding: ${SPACING.spacing24}; height: 5.5rem; line-height: ${TYPOGRAPHY.lineHeight36}; &:hover, &:active { background-color: ${({ isAlert }) => - isAlert ? COLORS.red50 : COLORS.grey35}; + isAlert != null ? COLORS.red50 : COLORS.grey35}; } &:disabled { background-color: ${({ isAlert }) => - isAlert ? COLORS.red50 : COLORS.transparent}; - color: ${({ isAlert }) => (isAlert ? COLORS.white : COLORS.grey50)}; + isAlert != null ? COLORS.red50 : COLORS.transparent}; + color: ${({ isAlert }) => + isAlert != null ? COLORS.white : COLORS.grey50}; } } ` diff --git a/app/src/atoms/MenuList/__tests__/OverflowBtn.test.tsx b/app/src/atoms/MenuList/__tests__/OverflowBtn.test.tsx index 4dd34e9c07e..c2d1a1482f0 100644 --- a/app/src/atoms/MenuList/__tests__/OverflowBtn.test.tsx +++ b/app/src/atoms/MenuList/__tests__/OverflowBtn.test.tsx @@ -28,47 +28,7 @@ describe('OverflowBtn', () => { }) expect(getByRole('button')).toHaveStyle( - `background-color: ${COLORS.grey35}` - ) - }) - - it('renders an active state', () => { - const { getByRole } = render({ - onClick: vi.fn(), - }) - - expect(getByRole('button')).toHaveStyle( - `background-color: ${String(COLORS.grey35)}` - ) - }) - - it.skip('renders a focus state', () => { - const { getByRole } = render({ - onClick: vi.fn(), - }) - - // @ts-expect-error Refactor to test modifier states. - expect(getByRole('button')).toHaveStyleRule( - 'box-shadow', - `0 0 0 3px ${String(COLORS.yellow50)}`, - { - modifier: ':focus-visible', - } - ) - }) - - it.skip('renders a disabled state', () => { - const { getByRole } = render({ - onClick: vi.fn(), - }) - - // @ts-expect-error Refactor to test modifier states. - expect(getByRole('button')).toHaveStyleRule( - 'fill', - `${String(COLORS.grey40)}`, - { - modifier: ':disabled circle', - } + `background-color: ${COLORS.transparent}` ) }) }) diff --git a/app/src/atoms/SoftwareKeyboard/NumericalKeyboard/index.css b/app/src/atoms/SoftwareKeyboard/NumericalKeyboard/index.css index 28fe3159979..3df1453b84c 100644 --- a/app/src/atoms/SoftwareKeyboard/NumericalKeyboard/index.css +++ b/app/src/atoms/SoftwareKeyboard/NumericalKeyboard/index.css @@ -10,6 +10,7 @@ .simple-keyboard.oddTheme1.hg-theme-default { width: 100%; height: 100%; + border-radius: 0; background-color: #cbcccc; /* grey35 */ font-family: 'Public Sans', sans-serif; padding: 8px; diff --git a/app/src/atoms/buttons/LargeButton.stories.tsx b/app/src/atoms/buttons/LargeButton.stories.tsx index d60e89d81f3..2b52cbed5b4 100644 --- a/app/src/atoms/buttons/LargeButton.stories.tsx +++ b/app/src/atoms/buttons/LargeButton.stories.tsx @@ -58,3 +58,21 @@ export const PrimaryWithSubtext: Story = { subtext: 'Button subtext', }, } + +export const OnColor: Story = { + args: { + buttonType: 'onColor', + buttonText: 'Button text', + disabled: false, + subtext: 'Button subtext', + }, +} + +export const AlertAlt: Story = { + args: { + buttonType: 'alertAlt', + buttonText: 'Button text', + disabled: false, + subtext: 'Button subtext', + }, +} diff --git a/app/src/atoms/buttons/LargeButton.tsx b/app/src/atoms/buttons/LargeButton.tsx index c5e45d3b731..e0750e345e5 100644 --- a/app/src/atoms/buttons/LargeButton.tsx +++ b/app/src/atoms/buttons/LargeButton.tsx @@ -16,7 +16,12 @@ import { import { ODD_FOCUS_VISIBLE } from './constants' import type { IconName, StyleProps } from '@opentrons/components' -type LargeButtonTypes = 'primary' | 'secondary' | 'alert' +type LargeButtonTypes = + | 'primary' + | 'secondary' + | 'alert' + | 'onColor' + | 'alertAlt' interface LargeButtonProps extends StyleProps { onClick: () => void buttonType?: LargeButtonTypes @@ -41,27 +46,61 @@ export function LargeButton(props: LargeButtonProps): JSX.Element { { defaultBackgroundColor: string activeBackgroundColor: string + disabledBackgroundColor: string defaultColor: string + disabledColor: string iconColor: string + disabledIconColor: string + border?: string + disabledBorder?: string } > = { secondary: { defaultColor: COLORS.black90, + disabledColor: COLORS.grey50, defaultBackgroundColor: COLORS.blue35, activeBackgroundColor: COLORS.blue40, + disabledBackgroundColor: COLORS.grey35, iconColor: COLORS.blue50, + disabledIconColor: COLORS.grey50, }, alert: { defaultColor: COLORS.red60, + disabledColor: COLORS.grey50, defaultBackgroundColor: COLORS.red35, activeBackgroundColor: COLORS.red40, + disabledBackgroundColor: COLORS.grey35, iconColor: COLORS.red60, + disabledIconColor: COLORS.grey50, }, primary: { defaultColor: COLORS.white, + disabledColor: COLORS.grey50, defaultBackgroundColor: COLORS.blue50, activeBackgroundColor: COLORS.blue60, + disabledBackgroundColor: COLORS.grey35, iconColor: COLORS.white, + disabledIconColor: COLORS.grey50, + }, + onColor: { + defaultColor: COLORS.white, + disabledColor: COLORS.grey40, + defaultBackgroundColor: COLORS.transparent, + activeBackgroundColor: COLORS.transparent, + disabledBackgroundColor: COLORS.transparent, + iconColor: COLORS.white, + disabledIconColor: COLORS.grey40, + border: `${BORDERS.borderRadius4} solid ${COLORS.white}`, + disabledBorder: `${BORDERS.borderRadius4} solid ${COLORS.grey35}`, + }, + alertAlt: { + defaultColor: COLORS.red50, + disabledColor: COLORS.grey50, + defaultBackgroundColor: COLORS.white, + activeBackgroundColor: COLORS.white, + disabledBackgroundColor: COLORS.grey35, + iconColor: COLORS.red50, + disabledIconColor: COLORS.grey50, }, } @@ -75,6 +114,7 @@ export function LargeButton(props: LargeButtonProps): JSX.Element { box-shadow: none; padding: ${SPACING.spacing24}; line-height: ${TYPOGRAPHY.lineHeight20}; + border: ${LARGE_BUTTON_PROPS_BY_TYPE[buttonType].border}; ${TYPOGRAPHY.pSemiBold} &:focus { @@ -83,7 +123,7 @@ export function LargeButton(props: LargeButtonProps): JSX.Element { box-shadow: none; } &:hover { - border: none; + border: ${LARGE_BUTTON_PROPS_BY_TYPE[buttonType].border}; box-shadow: none; background-color: ${LARGE_BUTTON_PROPS_BY_TYPE[buttonType] .defaultBackgroundColor}; @@ -100,8 +140,9 @@ export function LargeButton(props: LargeButtonProps): JSX.Element { } &:disabled { - background-color: ${COLORS.grey35}; - color: ${COLORS.grey50}; + color: ${LARGE_BUTTON_PROPS_BY_TYPE[buttonType].disabledColor}; + background-color: ${LARGE_BUTTON_PROPS_BY_TYPE[buttonType] + .disabledBackgroundColor}; } ` return ( @@ -129,7 +170,7 @@ export function LargeButton(props: LargeButtonProps): JSX.Element { aria-label={`${iconName} icon`} color={ disabled - ? COLORS.grey50 + ? LARGE_BUTTON_PROPS_BY_TYPE[buttonType].disabledIconColor : LARGE_BUTTON_PROPS_BY_TYPE[buttonType].iconColor } size="5rem" diff --git a/app/src/atoms/buttons/__tests__/FloatingActionButton.test.tsx b/app/src/atoms/buttons/__tests__/FloatingActionButton.test.tsx index 7e62b0f8662..af9860abce6 100644 --- a/app/src/atoms/buttons/__tests__/FloatingActionButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/FloatingActionButton.test.tsx @@ -1,7 +1,7 @@ import * as React from 'react' import { describe, it, expect, vi, beforeEach } from 'vitest' import '@testing-library/jest-dom/vitest' -import { fireEvent, screen } from '@testing-library/react' +import { screen } from '@testing-library/react' import { BORDERS, COLORS, SPACING, TYPOGRAPHY } from '@opentrons/components' import { i18n } from '../../../i18n' @@ -30,7 +30,7 @@ describe('FloatingActionButton', () => { expect(button).toHaveStyle( `padding: ${SPACING.spacing12} ${SPACING.spacing24}` ) - expect(button).toHaveStyle(`background-color: ${COLORS.purple55}`) + expect(button).toHaveStyle(`background-color: ${COLORS.purple50}`) expect(button).toHaveStyle(`font-size: ${TYPOGRAPHY.fontSize28}`) expect(button).toHaveStyle(`font-weight: ${TYPOGRAPHY.fontWeightSemiBold}`) expect(button).toHaveStyle(`line-height: ${TYPOGRAPHY.lineHeight36}`) @@ -47,14 +47,5 @@ describe('FloatingActionButton', () => { render(props) const button = screen.getByRole('button') expect(button).toBeDisabled() - expect(button).toHaveStyle(`background-color: ${COLORS.grey35}`) - expect(button).toHaveStyle(`color: ${COLORS.grey50}`) - }) - - it('applies the correct states to the unselected floating action button - active', () => { - render(props) - const button = screen.getByRole('button') - fireEvent.mouseLeave(button) - expect(button).toHaveStyle(`background-color : ${COLORS.purple55}`) }) }) diff --git a/app/src/atoms/buttons/__tests__/LargeButton.test.tsx b/app/src/atoms/buttons/__tests__/LargeButton.test.tsx index 945dce27823..7d7c730b636 100644 --- a/app/src/atoms/buttons/__tests__/LargeButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/LargeButton.test.tsx @@ -24,9 +24,6 @@ describe('LargeButton', () => { render(props) fireEvent.click(screen.getByText('large button')) expect(props.onClick).toHaveBeenCalled() - expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.blue60}` - ) }) it('renders the alert button', () => { props = { @@ -35,7 +32,7 @@ describe('LargeButton', () => { } render(props) expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.red40}` + `background-color: ${COLORS.red35}` ) }) it('renders the secondary button', () => { @@ -45,9 +42,32 @@ describe('LargeButton', () => { } render(props) expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.blue40}` + `background-color: ${COLORS.blue35}` + ) + }) + + it('renders the onColor button', () => { + props = { + ...props, + buttonType: 'onColor', + } + render(props) + expect(screen.getByRole('button')).toHaveStyle( + `background-color: ${COLORS.transparent}` ) }) + + it('renders the alertAlt button', () => { + props = { + ...props, + buttonType: 'alertAlt', + } + render(props) + expect(screen.getByRole('button')).toHaveStyle( + `background-color: ${COLORS.white}` + ) + }) + it('renders the button as disabled', () => { props = { ...props, diff --git a/app/src/atoms/buttons/__tests__/MediumButton.test.tsx b/app/src/atoms/buttons/__tests__/MediumButton.test.tsx index f4d23ea3a32..1c85bf34eb1 100644 --- a/app/src/atoms/buttons/__tests__/MediumButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/MediumButton.test.tsx @@ -24,7 +24,6 @@ describe('MediumButton', () => { render(props) fireEvent.click(screen.getByText('Medium button')) expect(props.onClick).toHaveBeenCalled() - expect(screen.getByRole('button')).toHaveStyle('background-color: #045dd0') }) it('renders the alert button', () => { props = { @@ -32,7 +31,9 @@ describe('MediumButton', () => { buttonType: 'alert', } render(props) - expect(screen.getByRole('button')).toHaveStyle('background-color: #b91f20') + expect(screen.getByRole('button')).toHaveStyle( + `background-color: ${COLORS.red50}` + ) }) it('renders the secondary button', () => { props = { @@ -40,7 +41,9 @@ describe('MediumButton', () => { buttonType: 'secondary', } render(props) - expect(screen.getByRole('button')).toHaveStyle('background-color: #94afd4') + expect(screen.getByRole('button')).toHaveStyle( + `background-color: ${COLORS.blue35}` + ) }) it('renders the secondary alert button', () => { props = { @@ -48,7 +51,9 @@ describe('MediumButton', () => { buttonType: 'alertSecondary', } render(props) - expect(screen.getByRole('button')).toHaveStyle('background-color: #ccabac') + expect(screen.getByRole('button')).toHaveStyle( + `background-color: ${COLORS.red35}` + ) }) it('renders the tertiary high button', () => { props = { @@ -57,7 +62,7 @@ describe('MediumButton', () => { } render(props) expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.grey35}` + `background-color: ${COLORS.white}` ) }) it('renders the tertiary low light button', () => { @@ -67,7 +72,7 @@ describe('MediumButton', () => { } render(props) expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.grey35}` + `background-color: ${COLORS.white}` ) }) it('renders the button as disabled', () => { diff --git a/app/src/atoms/buttons/__tests__/QuaternaryButton.test.tsx b/app/src/atoms/buttons/__tests__/QuaternaryButton.test.tsx index 978f46e3c08..e9dd204ca2f 100644 --- a/app/src/atoms/buttons/__tests__/QuaternaryButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/QuaternaryButton.test.tsx @@ -1,12 +1,19 @@ import * as React from 'react' import '@testing-library/jest-dom/vitest' -import { describe, it, expect, beforeEach } from 'vitest' -import { screen, fireEvent } from '@testing-library/react' +import { describe, it, expect, beforeEach, vi } from 'vitest' +import { screen } from '@testing-library/react' import { COLORS, SPACING, TYPOGRAPHY, BORDERS } from '@opentrons/components' import { renderWithProviders } from '../../../__testing-utils__' import { QuaternaryButton } from '..' +vi.mock('styled-components', async () => { + const actual = await vi.importActual( + 'styled-components/dist/styled-components.browser.esm.js' + ) + return actual +}) + const render = (props: React.ComponentProps) => { return renderWithProviders()[0] } @@ -25,7 +32,7 @@ describe('QuaternaryButton', () => { const button = screen.getByText('secondary tertiary button') expect(button).toHaveStyle(`background-color: ${COLORS.white}`) expect(button).toHaveStyle(`border-radius: ${BORDERS.borderRadiusFull}`) - expect(button).toHaveStyle('box-shadow: 0 0 0') + expect(button).toHaveStyle('box-shadow: none') expect(button).toHaveStyle(`color: ${COLORS.blue50}`) expect(button).toHaveStyle( `padding: ${SPACING.spacing8} ${SPACING.spacing16} ${SPACING.spacing8} ${SPACING.spacing16}` @@ -47,14 +54,6 @@ describe('QuaternaryButton', () => { expect(button).toHaveStyle('opacity: 50%') }) - it('applies the correct states to the button - hover', () => { - render(props) - const button = screen.getByText('secondary tertiary button') - fireEvent.mouseOver(button) - expect(button).toHaveStyle('opacity: 70%') - expect(button).toHaveStyle('box-shadow: 0 0 0') - }) - it('renders secondary tertiary button with text and different background color', () => { props.color = COLORS.red50 render(props) diff --git a/app/src/atoms/buttons/__tests__/RadioButton.test.tsx b/app/src/atoms/buttons/__tests__/RadioButton.test.tsx index da44e16dffd..2f6e29103bd 100644 --- a/app/src/atoms/buttons/__tests__/RadioButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/RadioButton.test.tsx @@ -27,7 +27,7 @@ describe('RadioButton', () => { } render(props) const label = screen.getByRole('label') - expect(label).toHaveStyle(`background-color: ${COLORS.blue40}`) + expect(label).toHaveStyle(`background-color: ${COLORS.blue35}`) expect(label).toHaveStyle(`padding: ${SPACING.spacing24}`) }) it('renders the large selected button', () => { @@ -38,7 +38,7 @@ describe('RadioButton', () => { } render(props) const label = screen.getByRole('label') - expect(label).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(label).toHaveStyle(`background-color: ${COLORS.blue50}`) expect(label).toHaveStyle(`padding: ${SPACING.spacing24}`) }) it('renders the small button', () => { @@ -48,7 +48,7 @@ describe('RadioButton', () => { } render(props) const label = screen.getByRole('label') - expect(label).toHaveStyle(`background-color: ${COLORS.blue40}`) + expect(label).toHaveStyle(`background-color: ${COLORS.blue35}`) expect(label).toHaveStyle(`padding: ${SPACING.spacing20}`) }) it('renders the small selected button', () => { @@ -59,7 +59,7 @@ describe('RadioButton', () => { } render(props) const label = screen.getByRole('label') - expect(label).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(label).toHaveStyle(`background-color: ${COLORS.blue50}`) expect(label).toHaveStyle(`padding: ${SPACING.spacing20}`) }) }) diff --git a/app/src/atoms/buttons/__tests__/SmallButton.test.tsx b/app/src/atoms/buttons/__tests__/SmallButton.test.tsx index 2aa55acef6e..9c3e03f9b04 100644 --- a/app/src/atoms/buttons/__tests__/SmallButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/SmallButton.test.tsx @@ -25,7 +25,7 @@ describe('SmallButton', () => { fireEvent.click(screen.getByText('small button')) expect(props.onClick).toHaveBeenCalled() expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.blue60}` + `background-color: ${COLORS.blue50}` ) expect(screen.getByRole('button')).toHaveStyle( `border-radius: ${BORDERS.borderRadius16}` @@ -38,7 +38,7 @@ describe('SmallButton', () => { } render(props) expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.red55}` + `background-color: ${COLORS.red50}` ) }) it('renders the secondary button', () => { @@ -48,7 +48,7 @@ describe('SmallButton', () => { } render(props) expect(screen.getByRole('button')).toHaveStyle( - `background-color: ${COLORS.blue40}` + `background-color: ${COLORS.blue35}` ) }) it('renders the tertiary high light button', () => { diff --git a/app/src/atoms/buttons/__tests__/SubmitPrimaryButton.test.tsx b/app/src/atoms/buttons/__tests__/SubmitPrimaryButton.test.tsx index 40f61eeef13..c4d33d2aef5 100644 --- a/app/src/atoms/buttons/__tests__/SubmitPrimaryButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/SubmitPrimaryButton.test.tsx @@ -28,7 +28,7 @@ describe('SubmitPrimaryButton', () => { it('renders submit primary button with text - active', () => { render(props) const button = screen.getByText('submit primary button') - expect(button).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(button).toHaveStyle(`background-color: ${COLORS.blue50}`) expect(button).toHaveStyle(`border-radius: ${BORDERS.borderRadius8}`) expect(button).toHaveStyle( `padding: ${SPACING.spacing8} ${SPACING.spacing16}` diff --git a/app/src/atoms/buttons/__tests__/TabbedButton.test.tsx b/app/src/atoms/buttons/__tests__/TabbedButton.test.tsx index 893b71ab904..2a5ef52551d 100644 --- a/app/src/atoms/buttons/__tests__/TabbedButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/TabbedButton.test.tsx @@ -23,7 +23,7 @@ describe('Unselected TabbedButton', () => { it('renders unselected tabbed button with text', () => { render(props) const button = screen.getByText('tabbed button') - expect(button).toHaveStyle(`background-color: ${COLORS.purple40}`) + expect(button).toHaveStyle(`background-color: ${COLORS.purple35}`) expect(button).toHaveStyle( `padding: ${SPACING.spacing16} ${SPACING.spacing24}` ) @@ -68,7 +68,7 @@ describe('Selected TabbedButton', () => { it('renders selected tabbed button with text', () => { render(props) const button = screen.getByText('tabbed button') - expect(button).toHaveStyle(`background-color: ${COLORS.purple55}`) + expect(button).toHaveStyle(`background-color: ${COLORS.purple50}`) expect(button).toHaveStyle( `padding: ${SPACING.spacing16} ${SPACING.spacing24}` ) diff --git a/app/src/atoms/buttons/__tests__/TertiaryButton.test.tsx b/app/src/atoms/buttons/__tests__/TertiaryButton.test.tsx index 4c0b2b97a1e..11790f63c47 100644 --- a/app/src/atoms/buttons/__tests__/TertiaryButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/TertiaryButton.test.tsx @@ -22,7 +22,7 @@ describe('TertiaryButton', () => { it('renders tertiary button with text', () => { render(props) const button = screen.getByText('tertiary button') - expect(button).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(button).toHaveStyle(`background-color: ${COLORS.blue50}`) expect(button).toHaveStyle( `padding: ${SPACING.spacing8} ${SPACING.spacing16} ${SPACING.spacing8} ${SPACING.spacing16}` ) @@ -52,7 +52,7 @@ describe('TertiaryButton', () => { props.backgroundColor = COLORS.red50 render(props) const button = screen.getByText('tertiary button') - expect(button).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(button).toHaveStyle(`background-color: ${COLORS.red50}`) expect(button).toHaveStyle(`color: ${COLORS.white}`) }) }) diff --git a/app/src/atoms/buttons/__tests__/ToggleButton.test.tsx b/app/src/atoms/buttons/__tests__/ToggleButton.test.tsx index d9aa36d565a..bc47fabe48c 100644 --- a/app/src/atoms/buttons/__tests__/ToggleButton.test.tsx +++ b/app/src/atoms/buttons/__tests__/ToggleButton.test.tsx @@ -28,7 +28,7 @@ describe('ToggleButton', () => { it('renders toggle button - on', () => { render(props) const button = screen.getByLabelText('toggle button') - expect(button).toHaveStyle(`color: ${COLORS.blue55}`) + expect(button).toHaveStyle(`color: ${COLORS.blue50}`) expect(button).toHaveStyle(`height: ${SIZE_2}`) expect(button).toHaveStyle(`width: ${SIZE_2}`) expect(button).toHaveAttribute('aria-checked', 'true') @@ -52,7 +52,7 @@ describe('ToggleButton', () => { props.toggledOn = false render(props) const button = screen.getByLabelText('toggle button') - expect(button).toHaveStyle(`color: ${COLORS.grey55}`) + expect(button).toHaveStyle(`color: ${COLORS.grey50}`) expect(button).toHaveStyle(`height: ${SIZE_2}`) expect(button).toHaveStyle(`width: ${SIZE_2}`) expect(button).toHaveAttribute('aria-checked', 'false') diff --git a/app/src/molecules/CardButton/__tests__/CardButton.test.tsx b/app/src/molecules/CardButton/__tests__/CardButton.test.tsx index bcffe52df26..80d17c32d08 100644 --- a/app/src/molecules/CardButton/__tests__/CardButton.test.tsx +++ b/app/src/molecules/CardButton/__tests__/CardButton.test.tsx @@ -49,7 +49,7 @@ describe('CardButton', () => { screen.getByText('Find a network in your lab or enter your own.') expect(screen.getByTestId('cardButton_icon_wifi')).toBeInTheDocument() const button = screen.getByRole('button') - expect(button).toHaveStyle(`background-color: ${COLORS.blue40}`) + expect(button).toHaveStyle(`background-color: ${COLORS.blue35}`) }) it('renders the button as disabled', () => { diff --git a/app/src/molecules/InterventionModal/InterventionModal.stories.tsx b/app/src/molecules/InterventionModal/InterventionModal.stories.tsx new file mode 100644 index 00000000000..29148f44a52 --- /dev/null +++ b/app/src/molecules/InterventionModal/InterventionModal.stories.tsx @@ -0,0 +1,31 @@ +import * as React from 'react' + +import { StyledText } from '@opentrons/components' +import { InterventionModal as InterventionModalComponent } from './' +import type { Story, Meta } from '@storybook/react' + +export default { + title: 'App/Molecules/InterventionModal', + component: InterventionModalComponent, +} as Meta + +const Template: Story< + React.ComponentProps +> = args => + +export const ErrorIntervention = Template.bind({}) +ErrorIntervention.args = { + robotName: 'Otie', + type: 'error', + heading: Oh no, an error!, + iconName: 'alert-circle', + children: Heres some error content, +} + +export const InterventionRequiredIntervention = Template.bind({}) +InterventionRequiredIntervention.args = { + robotName: 'Otie', + type: 'intervention-required', + heading: Looks like theres something to do, + children: Youve got to intervene!, +} diff --git a/app/src/molecules/InterventionModal/__tests__/InterventionModal.test.tsx b/app/src/molecules/InterventionModal/__tests__/InterventionModal.test.tsx new file mode 100644 index 00000000000..79512ce47d0 --- /dev/null +++ b/app/src/molecules/InterventionModal/__tests__/InterventionModal.test.tsx @@ -0,0 +1,66 @@ +import * as React from 'react' +import { describe, it, expect, beforeEach } from 'vitest' +import '@testing-library/jest-dom/vitest' +import { screen } from '@testing-library/react' +import { COLORS, BORDERS } from '@opentrons/components' +import { renderWithProviders } from '../../../__testing-utils__' +import { InterventionModal } from '../' +import type { ModalType } from '../' + +const render = (props: React.ComponentProps) => { + return renderWithProviders()[0] +} + +describe('InterventionModal', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + heading: 'mock intervention heading', + children: 'mock intervention children', + iconName: 'alert-circle', + type: 'intervention-required', + } + }) + ;(['intervention-required', 'error'] as ModalType[]).forEach(type => { + const color = + type === 'intervention-required' ? COLORS.blue50 : COLORS.red50 + it(`renders with the ${type} style`, () => { + render({ ...props, type }) + const header = screen.getByTestId('__otInterventionModalHeader') + expect(header).toHaveStyle(`background-color: ${color}`) + const modal = screen.getByTestId('__otInterventionModal') + expect(modal).toHaveStyle(`border: 6px ${BORDERS.styleSolid} ${color}`) + }) + }) + it('uses intervention-required if prop is not passed', () => { + render({ ...props, type: undefined }) + const header = screen.getByTestId('__otInterventionModalHeader') + expect(header).toHaveStyle(`background-color: ${COLORS.blue50}`) + const modal = screen.getByTestId('__otInterventionModal') + expect(modal).toHaveStyle( + `border: 6px ${BORDERS.styleSolid} ${COLORS.blue50}` + ) + }) + it('renders passed elements', () => { + render(props) + screen.getByText('mock intervention children') + screen.getByText('mock intervention heading') + }) + it('renders an icon if an icon is specified', () => { + const { container } = render(props) + // eslint-disable-next-line testing-library/no-node-access, testing-library/no-container + const icon = container.querySelector( + '[aria-roledescription="alert-circle"]' + ) + expect(icon).not.toBeNull() + }) + it('does not render an icon if no icon is specified', () => { + const { container } = render({ ...props, iconName: undefined }) + // eslint-disable-next-line testing-library/no-node-access, testing-library/no-container + const icon = container.querySelector( + '[aria-roledescription="alert-circle"]' + ) + expect(icon).toBeNull() + }) +}) diff --git a/app/src/molecules/InterventionModal/index.tsx b/app/src/molecules/InterventionModal/index.tsx new file mode 100644 index 00000000000..c02adc18b64 --- /dev/null +++ b/app/src/molecules/InterventionModal/index.tsx @@ -0,0 +1,110 @@ +import * as React from 'react' +import { + ALIGN_CENTER, + BORDERS, + Box, + COLORS, + Flex, + Icon, + JUSTIFY_CENTER, + OVERFLOW_AUTO, + POSITION_ABSOLUTE, + POSITION_RELATIVE, + POSITION_STICKY, + SPACING, +} from '@opentrons/components' +import type { IconName } from '@opentrons/components' + +export type ModalType = 'intervention-required' | 'error' + +const BASE_STYLE = { + position: POSITION_ABSOLUTE, + alignItems: ALIGN_CENTER, + justifyContent: JUSTIFY_CENTER, + top: 0, + right: 0, + bottom: 0, + left: 0, + width: '100%', + height: '100%', + 'data-testid': '__otInterventionModalHeaderBase', +} as const + +const BORDER_STYLE_BASE = `6px ${BORDERS.styleSolid}` + +const MODAL_STYLE = { + backgroundColor: COLORS.white, + position: POSITION_RELATIVE, + overflowY: OVERFLOW_AUTO, + maxHeight: '100%', + width: '47rem', + borderRadius: BORDERS.borderRadius8, + boxShadow: BORDERS.smallDropShadow, + 'data-testid': '__otInterventionModal', +} as const + +const HEADER_STYLE = { + alignItems: ALIGN_CENTER, + gridGap: SPACING.spacing12, + padding: `${SPACING.spacing20} ${SPACING.spacing32}`, + color: COLORS.white, + position: POSITION_STICKY, + top: 0, + 'data-testid': '__otInterventionModalHeader', +} as const + +const WRAPPER_STYLE = { + position: POSITION_ABSOLUTE, + left: '0', + right: '0', + top: '0', + bottom: '0', + zIndex: '1', + backgroundColor: `${COLORS.black90}${COLORS.opacity40HexCode}`, + cursor: 'default', + 'data-testid': '__otInterventionModalWrapper', +} as const + +const INTERVENTION_REQUIRED_COLOR = COLORS.blue50 +const ERROR_COLOR = COLORS.red50 + +export interface InterventionModalProps { + /** optional modal heading **/ + heading?: React.ReactNode + /** overall style hint */ + type?: ModalType + /** optional icon name */ + iconName?: IconName | null | undefined + /** modal contents */ + children: React.ReactNode +} + +export function InterventionModal(props: InterventionModalProps): JSX.Element { + const modalType = props.type ?? 'intervention-required' + const headerColor = + modalType === 'error' ? ERROR_COLOR : INTERVENTION_REQUIRED_COLOR + const border = `${BORDER_STYLE_BASE} ${ + modalType === 'error' ? ERROR_COLOR : INTERVENTION_REQUIRED_COLOR + }` + return ( + + + { + e.stopPropagation() + }} + > + + {props.iconName != null ? ( + + ) : null} + {props.heading != null ? props.heading : null} + + {props.children} + + + + ) +} diff --git a/app/src/molecules/JogControls/types.ts b/app/src/molecules/JogControls/types.ts index f6896eaf313..9d0f906ec98 100644 --- a/app/src/molecules/JogControls/types.ts +++ b/app/src/molecules/JogControls/types.ts @@ -1,4 +1,4 @@ -import { +import type { HORIZONTAL_PLANE, VERTICAL_PLANE, NULL_STEP_SIZE_MM, diff --git a/app/src/molecules/LegacyModal/LegacyModalShell.tsx b/app/src/molecules/LegacyModal/LegacyModalShell.tsx index 9142ea14cbf..431b607c815 100644 --- a/app/src/molecules/LegacyModal/LegacyModalShell.tsx +++ b/app/src/molecules/LegacyModal/LegacyModalShell.tsx @@ -1,9 +1,7 @@ import * as React from 'react' import styled from 'styled-components' import { - StyleProps, COLORS, - POSITION_FIXED, POSITION_ABSOLUTE, ALIGN_CENTER, JUSTIFY_CENTER, @@ -15,6 +13,7 @@ import { styleProps, SPACING, } from '@opentrons/components' +import type { StyleProps } from '@opentrons/components' export interface LegacyModalShellProps extends StyleProps { /** Modal content */ children: React.ReactNode @@ -76,7 +75,7 @@ export function LegacyModalShell(props: LegacyModalShellProps): JSX.Element { } const Overlay = styled.div` - position: ${POSITION_FIXED}; + position: ${POSITION_ABSOLUTE}; left: 0; right: 0; top: 0; diff --git a/app/src/molecules/MiniCard/__tests__/MiniCard.test.tsx b/app/src/molecules/MiniCard/__tests__/MiniCard.test.tsx index 536f8dc0b37..6a7c3efd034 100644 --- a/app/src/molecules/MiniCard/__tests__/MiniCard.test.tsx +++ b/app/src/molecules/MiniCard/__tests__/MiniCard.test.tsx @@ -25,8 +25,8 @@ describe('MiniCard', () => { it('renders the correct style unselectedOptionStyles', () => { render(props) const miniCard = screen.getByText('mock mini card') - expect(miniCard).toHaveStyle(`background-color: ${COLORS.grey10}`) - expect(miniCard).toHaveStyle(`border: 1px solid ${COLORS.grey35}`) + expect(miniCard).toHaveStyle(`background-color: ${COLORS.white}`) + expect(miniCard).toHaveStyle(`border: 1px solid ${COLORS.grey30}`) expect(miniCard).toHaveStyle(`border-radius: ${BORDERS.borderRadius8}`) expect(miniCard).toHaveStyle(`padding: ${SPACING.spacing8}`) expect(miniCard).toHaveStyle(`width: 100%`) diff --git a/app/src/molecules/ModuleIcon/__tests__/ModuleIcon.test.tsx b/app/src/molecules/ModuleIcon/__tests__/ModuleIcon.test.tsx index aa570078eb8..49e0ed4c118 100644 --- a/app/src/molecules/ModuleIcon/__tests__/ModuleIcon.test.tsx +++ b/app/src/molecules/ModuleIcon/__tests__/ModuleIcon.test.tsx @@ -58,7 +58,7 @@ describe('ModuleIcon', () => { it('renders SharedIcon with correct style', () => { render(props) const module = screen.getByTestId('ModuleIcon_ot-temperature-v2') - expect(module).toHaveStyle(`color: ${COLORS.black90}`) + expect(module).toHaveStyle(`color: ${COLORS.grey60}`) expect(module).toHaveStyle(`height: ${SPACING.spacing16}`) expect(module).toHaveStyle(`width: ${SPACING.spacing16}`) expect(module).toHaveStyle(`margin-left: ${SPACING.spacing2}`) diff --git a/app/src/molecules/PythonLabwareOffsetSnippet/__tests__/createSnippet.test.ts b/app/src/molecules/PythonLabwareOffsetSnippet/__tests__/createSnippet.test.ts index 683caeed815..2d944a26dae 100644 --- a/app/src/molecules/PythonLabwareOffsetSnippet/__tests__/createSnippet.test.ts +++ b/app/src/molecules/PythonLabwareOffsetSnippet/__tests__/createSnippet.test.ts @@ -1,11 +1,11 @@ import { describe, it, expect } from 'vitest' import '@testing-library/jest-dom/vitest' -import { - transfer_settings, +import { transfer_settings } from '@opentrons/shared-data' +import { createSnippet } from '../createSnippet' +import type { ModuleModel, CompletedProtocolAnalysis, } from '@opentrons/shared-data' -import { createSnippet } from '../createSnippet' const protocolWithMagTempTC = ({ ...transfer_settings, diff --git a/app/src/molecules/PythonLabwareOffsetSnippet/createSnippet.ts b/app/src/molecules/PythonLabwareOffsetSnippet/createSnippet.ts index 7446158b52c..624e46ffaf6 100644 --- a/app/src/molecules/PythonLabwareOffsetSnippet/createSnippet.ts +++ b/app/src/molecules/PythonLabwareOffsetSnippet/createSnippet.ts @@ -1,8 +1,8 @@ import isEqual from 'lodash/isEqual' import { getLoadedLabwareDefinitionsByUri } from '@opentrons/shared-data' import { getLabwareDefinitionUri } from '../../organisms/Devices/ProtocolRun/utils/getLabwareDefinitionUri' -import { LabwareOffset } from '@opentrons/api-client' import { getLabwareOffsetLocation } from '../../organisms/Devices/ProtocolRun/utils/getLabwareOffsetLocation' +import type { LabwareOffset } from '@opentrons/api-client' import type { LoadedLabware, LoadedModule, diff --git a/app/src/organisms/AnalyticsSettingsModal/AnalyticsToggle.tsx b/app/src/organisms/AnalyticsSettingsModal/AnalyticsToggle.tsx index 110bfafd4b0..f577c1e3faf 100644 --- a/app/src/organisms/AnalyticsSettingsModal/AnalyticsToggle.tsx +++ b/app/src/organisms/AnalyticsSettingsModal/AnalyticsToggle.tsx @@ -1,5 +1,5 @@ import * as React from 'react' -import { connect, MapStateToProps, MapDispatchToProps } from 'react-redux' +import { connect } from 'react-redux' import { LabeledToggle } from '@opentrons/components' import { @@ -7,6 +7,7 @@ import { getAnalyticsOptedIn, } from '../../redux/analytics' +import type { MapStateToProps, MapDispatchToProps } from 'react-redux' import type { State } from '../../redux/types' interface SP { diff --git a/app/src/organisms/ApplyHistoricOffsets/LabwareOffsetTable.tsx b/app/src/organisms/ApplyHistoricOffsets/LabwareOffsetTable.tsx index c73326031b3..b9248b6de92 100644 --- a/app/src/organisms/ApplyHistoricOffsets/LabwareOffsetTable.tsx +++ b/app/src/organisms/ApplyHistoricOffsets/LabwareOffsetTable.tsx @@ -1,11 +1,11 @@ import * as React from 'react' import styled from 'styled-components' import { useTranslation } from 'react-i18next' -import { LabwareDefinition2 } from '@opentrons/shared-data' import { SPACING, TYPOGRAPHY, COLORS } from '@opentrons/components' import { OffsetVector } from '../../molecules/OffsetVector' import { formatTimestamp } from '../Devices/utils' import { getDisplayLocation } from '../LabwarePositionCheck/utils/getDisplayLocation' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { OffsetCandidate } from './hooks/useOffsetCandidatesForAnalysis' const OffsetTable = styled('table')` diff --git a/app/src/organisms/ApplyHistoricOffsets/hooks/__tests__/useOffsetCandidatesForAnalysis.test.tsx b/app/src/organisms/ApplyHistoricOffsets/hooks/__tests__/useOffsetCandidatesForAnalysis.test.tsx index 75c34f1f843..4ad6738c944 100644 --- a/app/src/organisms/ApplyHistoricOffsets/hooks/__tests__/useOffsetCandidatesForAnalysis.test.tsx +++ b/app/src/organisms/ApplyHistoricOffsets/hooks/__tests__/useOffsetCandidatesForAnalysis.test.tsx @@ -20,7 +20,7 @@ vi.mock('../useAllHistoricOffsets') vi.mock('../getLabwareLocationCombos') vi.mock('@opentrons/shared-data') vi.mock('../../../../resources/runs') -vi.mock('../../../../resources/useNotifyService') +vi.mock('../../../../resources/useNotifyDataReady') const mockLabwareDef = fixtureTiprack300ul as LabwareDefinition2 diff --git a/app/src/organisms/ApplyHistoricOffsets/hooks/useOffsetCandidatesForAnalysis.ts b/app/src/organisms/ApplyHistoricOffsets/hooks/useOffsetCandidatesForAnalysis.ts index 761c457bcef..7abc8f9fd97 100644 --- a/app/src/organisms/ApplyHistoricOffsets/hooks/useOffsetCandidatesForAnalysis.ts +++ b/app/src/organisms/ApplyHistoricOffsets/hooks/useOffsetCandidatesForAnalysis.ts @@ -3,12 +3,14 @@ import { getLabwareDisplayName, IDENTITY_VECTOR, getLoadedLabwareDefinitionsByUri, - CompletedProtocolAnalysis, } from '@opentrons/shared-data' import { useAllHistoricOffsets } from './useAllHistoricOffsets' import { getLabwareLocationCombos } from './getLabwareLocationCombos' -import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' +import type { + ProtocolAnalysisOutput, + CompletedProtocolAnalysis, +} from '@opentrons/shared-data' import type { LabwareOffset } from '@opentrons/api-client' export interface OffsetCandidate extends LabwareOffset { runCreatedAt: string diff --git a/app/src/organisms/CalibrateDeck/types.ts b/app/src/organisms/CalibrateDeck/types.ts index b2df75e4a6d..52467a1726d 100644 --- a/app/src/organisms/CalibrateDeck/types.ts +++ b/app/src/organisms/CalibrateDeck/types.ts @@ -1,4 +1,4 @@ -import { DispatchRequestsType } from '../../redux/robot-api' +import type { DispatchRequestsType } from '../../redux/robot-api' import type { MutableRefObject } from 'react' import type { DeckCalibrationSession } from '../../redux/sessions/types' export interface CalibrateDeckParentProps { diff --git a/app/src/organisms/CalibratePipetteOffset/__tests__/CalibratePipetteOffset.test.tsx b/app/src/organisms/CalibratePipetteOffset/__tests__/CalibratePipetteOffset.test.tsx index febbda5ded4..a4ea115fa73 100644 --- a/app/src/organisms/CalibratePipetteOffset/__tests__/CalibratePipetteOffset.test.tsx +++ b/app/src/organisms/CalibratePipetteOffset/__tests__/CalibratePipetteOffset.test.tsx @@ -1,18 +1,15 @@ import * as React from 'react' import { vi, it, describe, expect, beforeEach } from 'vitest' import { when } from 'vitest-when' - -import { renderWithProviders } from '../../../__testing-utils__' +import { fireEvent, screen } from '@testing-library/react' import { getDeckDefinitions } from '@opentrons/shared-data' - +import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import * as Sessions from '../../../redux/sessions' import { mockPipetteOffsetCalibrationSessionAttributes } from '../../../redux/sessions/__fixtures__' - import { CalibratePipetteOffset } from '../index' import type { PipetteOffsetCalibrationStep } from '../../../redux/sessions/types' -import { DispatchRequestsType } from '../../../redux/robot-api' -import { fireEvent, screen } from '@testing-library/react' +import type { DispatchRequestsType } from '../../../redux/robot-api' vi.mock('@opentrons/shared-data', async importOriginal => { const actual = await importOriginal() diff --git a/app/src/organisms/CalibratePipetteOffset/types.ts b/app/src/organisms/CalibratePipetteOffset/types.ts index e26c2d8216c..39df36d6ca5 100644 --- a/app/src/organisms/CalibratePipetteOffset/types.ts +++ b/app/src/organisms/CalibratePipetteOffset/types.ts @@ -5,7 +5,7 @@ import type { } from '../../redux/sessions/types' import type { PipetteOffsetCalibrationStep } from '../../redux/sessions/pipette-offset-calibration/types' -import { DispatchRequestsType } from '../../redux/robot-api' +import type { DispatchRequestsType } from '../../redux/robot-api' export interface CalibratePipetteOffsetParentProps { robotName: string diff --git a/app/src/organisms/CalibrateTipLength/types.ts b/app/src/organisms/CalibrateTipLength/types.ts index bcb791c5f5d..829793ed8be 100644 --- a/app/src/organisms/CalibrateTipLength/types.ts +++ b/app/src/organisms/CalibrateTipLength/types.ts @@ -1,4 +1,4 @@ -import { DispatchRequestsType } from '../../redux/robot-api' +import type { DispatchRequestsType } from '../../redux/robot-api' import type { TipLengthCalibrationSession } from '../../redux/sessions/types' export interface CalibrateTipLengthParentProps { diff --git a/app/src/organisms/CalibrationPanels/__tests__/DeckSetup.test.tsx b/app/src/organisms/CalibrationPanels/__tests__/DeckSetup.test.tsx index 3a6922f86be..d52e42581b1 100644 --- a/app/src/organisms/CalibrationPanels/__tests__/DeckSetup.test.tsx +++ b/app/src/organisms/CalibrationPanels/__tests__/DeckSetup.test.tsx @@ -1,9 +1,6 @@ import * as React from 'react' import { fireEvent, screen } from '@testing-library/react' import { vi, it, describe, expect } from 'vitest' - -import { getDeckDefinitions } from '@opentrons/shared-data' - import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { @@ -12,9 +9,10 @@ import { mockTipLengthCalBlock, } from '../../../redux/sessions/__fixtures__' import * as Sessions from '../../../redux/sessions' - import { DeckSetup } from '../DeckSetup' +import type { getDeckDefinitions } from '@opentrons/shared-data' + vi.mock('../../../assets/labware/getLabware') vi.mock('@opentrons/shared-data', async importOriginal => { const actual = await importOriginal() diff --git a/app/src/organisms/ChangePipette/ConfirmPipette.tsx b/app/src/organisms/ChangePipette/ConfirmPipette.tsx index 0a4768997f5..673359586b5 100644 --- a/app/src/organisms/ChangePipette/ConfirmPipette.tsx +++ b/app/src/organisms/ChangePipette/ConfirmPipette.tsx @@ -1,6 +1,6 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' - +import { OT2_ROBOT_TYPE } from '@opentrons/shared-data' import { COLORS, SPACING, @@ -13,11 +13,10 @@ import { CheckPipettesButton } from './CheckPipettesButton' import { SimpleWizardBody } from '../../molecules/SimpleWizardBody' import { LevelPipette } from './LevelPipette' -import { +import type { PipetteNameSpecs, PipetteModelSpecs, PipetteDisplayCategory, - OT2_ROBOT_TYPE, } from '@opentrons/shared-data' import type { PipetteOffsetCalibration } from '../../redux/calibration/types' import type { Mount } from '../../redux/pipettes/types' diff --git a/app/src/organisms/ChangePipette/__tests__/ChangePipette.test.tsx b/app/src/organisms/ChangePipette/__tests__/ChangePipette.test.tsx index 4e05137cfab..ad18c140bee 100644 --- a/app/src/organisms/ChangePipette/__tests__/ChangePipette.test.tsx +++ b/app/src/organisms/ChangePipette/__tests__/ChangePipette.test.tsx @@ -1,7 +1,6 @@ import * as React from 'react' import { vi, it, describe, expect, beforeEach } from 'vitest' import { fireEvent } from '@testing-library/react' -import { useHistory } from 'react-router-dom' import { getPipetteNameSpecs } from '@opentrons/shared-data' @@ -22,6 +21,7 @@ import { ExitModal } from '../ExitModal' import { ConfirmPipette } from '../ConfirmPipette' import { ChangePipette } from '..' +import type { useHistory } from 'react-router-dom' import type { PipetteNameSpecs } from '@opentrons/shared-data' import type { AttachedPipette } from '../../../redux/pipettes/types' import type { DispatchApiRequestType } from '../../../redux/robot-api' diff --git a/app/src/organisms/ChangePipette/__tests__/ConfirmPipette.test.tsx b/app/src/organisms/ChangePipette/__tests__/ConfirmPipette.test.tsx index 1f4f7a12438..ea38e20ea9c 100644 --- a/app/src/organisms/ChangePipette/__tests__/ConfirmPipette.test.tsx +++ b/app/src/organisms/ChangePipette/__tests__/ConfirmPipette.test.tsx @@ -8,13 +8,13 @@ import { LEFT } from '@opentrons/shared-data' import { mockPipetteInfo } from '../../../redux/pipettes/__fixtures__' import { CheckPipettesButton } from '../CheckPipettesButton' import { ConfirmPipette } from '../ConfirmPipette' -import { LevelingVideo } from '../LevelPipette' import type { PipetteModelSpecs, PipetteNameSpecs, } from '@opentrons/shared-data' import type { PipetteOffsetCalibration } from '../../../redux/calibration/types' +import type { LevelingVideo } from '../LevelPipette' vi.mock('../CheckPipettesButton') vi.mock('../LevelPipette', async importOriginal => { diff --git a/app/src/organisms/ChangePipette/__tests__/LevelPipette.test.tsx b/app/src/organisms/ChangePipette/__tests__/LevelPipette.test.tsx index 66526673ca1..1e58d6b03b1 100644 --- a/app/src/organisms/ChangePipette/__tests__/LevelPipette.test.tsx +++ b/app/src/organisms/ChangePipette/__tests__/LevelPipette.test.tsx @@ -2,14 +2,14 @@ import * as React from 'react' import { vi, it, describe, expect, beforeEach } from 'vitest' import { fireEvent } from '@testing-library/react' -import { LEFT, PipetteNameSpecs } from '@opentrons/shared-data' - +import { LEFT } from '@opentrons/shared-data' import { nestedTextMatcher, renderWithProviders, } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { LevelPipette } from '../LevelPipette' +import type { PipetteNameSpecs } from '@opentrons/shared-data' const render = (props: React.ComponentProps) => { return renderWithProviders(, { diff --git a/app/src/organisms/CheckCalibration/types.ts b/app/src/organisms/CheckCalibration/types.ts index 52113aefd17..03a70b2127c 100644 --- a/app/src/organisms/CheckCalibration/types.ts +++ b/app/src/organisms/CheckCalibration/types.ts @@ -1,5 +1,5 @@ import type { CalibrationCheckSession } from '../../redux/sessions/types' -import { DispatchRequestsType } from '../../redux/robot-api' +import type { DispatchRequestsType } from '../../redux/robot-api' export interface CalibrationCheckParentProps { robotName: string diff --git a/app/src/organisms/ChildNavigation/ChildNavigation.stories.tsx b/app/src/organisms/ChildNavigation/ChildNavigation.stories.tsx index cddbb2cd7a3..f6e87878be1 100644 --- a/app/src/organisms/ChildNavigation/ChildNavigation.stories.tsx +++ b/app/src/organisms/ChildNavigation/ChildNavigation.stories.tsx @@ -1,8 +1,8 @@ import * as React from 'react' import { VIEWPORT } from '@opentrons/components' -import { SmallButton } from '../../atoms/buttons' import { ChildNavigation } from '.' import type { Story, Meta } from '@storybook/react' +import type { SmallButton } from '../../atoms/buttons' export default { title: 'ODD/Organisms/ChildNavigation', diff --git a/app/src/organisms/ChildNavigation/__tests__/ChildNavigation.test.tsx b/app/src/organisms/ChildNavigation/__tests__/ChildNavigation.test.tsx index 8e2a1c7ec0e..b3ea0914d8f 100644 --- a/app/src/organisms/ChildNavigation/__tests__/ChildNavigation.test.tsx +++ b/app/src/organisms/ChildNavigation/__tests__/ChildNavigation.test.tsx @@ -3,8 +3,8 @@ import { fireEvent, screen } from '@testing-library/react' import { vi, it, describe, expect, beforeEach } from 'vitest' import { renderWithProviders } from '../../../__testing-utils__' -import { SmallButton } from '../../../atoms/buttons' import { ChildNavigation } from '..' +import type { SmallButton } from '../../../atoms/buttons' const render = (props: React.ComponentProps) => renderWithProviders() diff --git a/app/src/organisms/ChooseProtocolSlideout/__tests__/ChooseProtocolSlideout.test.tsx b/app/src/organisms/ChooseProtocolSlideout/__tests__/ChooseProtocolSlideout.test.tsx index fa8da0e1859..01c584d63bd 100644 --- a/app/src/organisms/ChooseProtocolSlideout/__tests__/ChooseProtocolSlideout.test.tsx +++ b/app/src/organisms/ChooseProtocolSlideout/__tests__/ChooseProtocolSlideout.test.tsx @@ -16,14 +16,14 @@ import { import { useTrackCreateProtocolRunEvent } from '../../../organisms/Devices/hooks' import { useCreateRunFromProtocol } from '../../ChooseRobotToRunProtocolSlideout/useCreateRunFromProtocol' import { ChooseProtocolSlideout } from '../' -import { useNotifyService } from '../../../resources/useNotifyService' +import { useNotifyDataReady } from '../../../resources/useNotifyDataReady' import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' vi.mock('../../ChooseRobotToRunProtocolSlideout/useCreateRunFromProtocol') vi.mock('../../../redux/protocol-storage') vi.mock('../../../organisms/Devices/hooks') vi.mock('../../../redux/config') -vi.mock('../../../resources/useNotifyService') +vi.mock('../../../resources/useNotifyDataReady') const render = (props: React.ComponentProps) => { return renderWithProviders( @@ -66,7 +66,7 @@ describe('ChooseProtocolSlideout', () => { vi.mocked(useTrackCreateProtocolRunEvent).mockReturnValue({ trackCreateProtocolRunEvent: mockTrackCreateProtocolRunEvent, }) - vi.mocked(useNotifyService).mockReturnValue({} as any) + vi.mocked(useNotifyDataReady).mockReturnValue({} as any) }) it('renders slideout if showSlideout true', () => { diff --git a/app/src/organisms/ChooseRobotSlideout/AvailableRobotOption.tsx b/app/src/organisms/ChooseRobotSlideout/AvailableRobotOption.tsx index 148b9e30e35..190b3e5bb5a 100644 --- a/app/src/organisms/ChooseRobotSlideout/AvailableRobotOption.tsx +++ b/app/src/organisms/ChooseRobotSlideout/AvailableRobotOption.tsx @@ -22,13 +22,13 @@ import { getNetworkInterfaces, fetchStatus } from '../../redux/networking' import { appShellRequestor } from '../../redux/shell/remote' import OT2_PNG from '../../assets/images/OT2-R_HERO.png' import FLEX_PNG from '../../assets/images/FLEX.png' -import { RobotBusyStatusAction } from '.' import { useNotifyAllRunsQuery } from '../../resources/runs' import type { IconName } from '@opentrons/components' import type { Runs } from '@opentrons/api-client' import type { Robot } from '../../redux/discovery/types' import type { Dispatch, State } from '../../redux/types' +import type { RobotBusyStatusAction } from '.' interface AvailableRobotOptionProps { robot: Robot diff --git a/app/src/organisms/ChooseRobotSlideout/__tests__/ChooseRobotSlideout.test.tsx b/app/src/organisms/ChooseRobotSlideout/__tests__/ChooseRobotSlideout.test.tsx index 4b0bb9bcdef..2b0c5c3086e 100644 --- a/app/src/organisms/ChooseRobotSlideout/__tests__/ChooseRobotSlideout.test.tsx +++ b/app/src/organisms/ChooseRobotSlideout/__tests__/ChooseRobotSlideout.test.tsx @@ -22,13 +22,13 @@ import { import { useFeatureFlag } from '../../../redux/config' import { getNetworkInterfaces } from '../../../redux/networking' import { ChooseRobotSlideout } from '..' -import { useNotifyService } from '../../../resources/useNotifyService' +import { useNotifyDataReady } from '../../../resources/useNotifyDataReady' import type { RunTimeParameter } from '@opentrons/shared-data' vi.mock('../../../redux/discovery') vi.mock('../../../redux/robot-update') vi.mock('../../../redux/networking') -vi.mock('../../../resources/useNotifyService') +vi.mock('../../../resources/useNotifyDataReady') vi.mock('../../../redux/config') const render = (props: React.ComponentProps) => { return renderWithProviders( @@ -111,7 +111,7 @@ describe('ChooseRobotSlideout', () => { wifi: null, ethernet: null, }) - vi.mocked(useNotifyService).mockReturnValue({} as any) + vi.mocked(useNotifyDataReady).mockReturnValue({} as any) }) it('renders slideout if isExpanded true', () => { diff --git a/app/src/organisms/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx b/app/src/organisms/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx index 9ac6e0232ea..29464720360 100644 --- a/app/src/organisms/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx +++ b/app/src/organisms/ChooseRobotToRunProtocolSlideout/__tests__/ChooseRobotToRunProtocolSlideout.test.tsx @@ -31,7 +31,7 @@ import { storedProtocolData as storedProtocolDataFixture } from '../../../redux/ import { useCreateRunFromProtocol } from '../useCreateRunFromProtocol' import { useOffsetCandidatesForAnalysis } from '../../ApplyHistoricOffsets/hooks/useOffsetCandidatesForAnalysis' import { ChooseRobotToRunProtocolSlideout } from '../' -import { useNotifyService } from '../../../resources/useNotifyService' +import { useNotifyDataReady } from '../../../resources/useNotifyDataReady' import type { State } from '../../../redux/types' @@ -44,7 +44,7 @@ vi.mock('../../../redux/networking') vi.mock('../../../redux/config') vi.mock('../useCreateRunFromProtocol') vi.mock('../../ApplyHistoricOffsets/hooks/useOffsetCandidatesForAnalysis') -vi.mock('../../../resources/useNotifyService') +vi.mock('../../../resources/useNotifyDataReady') vi.mock('../../../redux/config') const render = ( @@ -128,7 +128,7 @@ describe('ChooseRobotToRunProtocolSlideout', () => { when(vi.mocked(getNetworkInterfaces)) .calledWith({} as State, expect.any(String)) .thenReturn({ wifi: null, ethernet: null }) - vi.mocked(useNotifyService).mockReturnValue({} as any) + vi.mocked(useNotifyDataReady).mockReturnValue({} as any) }) afterEach(() => { vi.resetAllMocks() diff --git a/app/src/organisms/CommandText/LoadCommandText.tsx b/app/src/organisms/CommandText/LoadCommandText.tsx index 8dd2f8e64d1..251d0f3d38d 100644 --- a/app/src/organisms/CommandText/LoadCommandText.tsx +++ b/app/src/organisms/CommandText/LoadCommandText.tsx @@ -3,15 +3,8 @@ import { getModuleDisplayName, getModuleType, getOccludedSlotCountForModule, - LoadLabwareRunTimeCommand, getPipetteNameSpecs, } from '@opentrons/shared-data' - -import type { - RunTimeCommand, - CompletedProtocolAnalysis, - RobotType, -} from '@opentrons/shared-data' import { getLabwareName, getPipetteNameOnMount, @@ -20,15 +13,22 @@ import { getLiquidDisplayName, } from './utils' +import type { + RunTimeCommand, + RobotType, + LoadLabwareRunTimeCommand, +} from '@opentrons/shared-data' +import type { CommandTextData } from './types' + interface LoadCommandTextProps { command: RunTimeCommand - robotSideAnalysis: CompletedProtocolAnalysis + commandTextData: CommandTextData robotType: RobotType } export const LoadCommandText = ({ command, - robotSideAnalysis, + commandTextData, robotType, }: LoadCommandTextProps): JSX.Element | null => { const { t } = useTranslation('run_details') @@ -36,7 +36,7 @@ export const LoadCommandText = ({ switch (command.commandType) { case 'loadPipette': { const pipetteModel = getPipetteNameOnMount( - robotSideAnalysis, + commandTextData, command.params.mount ) return t('load_pipette_protocol_setup', { @@ -64,7 +64,7 @@ export const LoadCommandText = ({ 'moduleId' in command.params.location ) { const moduleModel = getModuleModel( - robotSideAnalysis, + commandTextData, command.params.location.moduleId ) const moduleName = @@ -80,7 +80,7 @@ export const LoadCommandText = ({ : 1, labware: command.result?.definition.metadata.displayName, slot_name: getModuleDisplayLocation( - robotSideAnalysis, + commandTextData, command.params.location.moduleId ), module_name: moduleName, @@ -91,7 +91,7 @@ export const LoadCommandText = ({ ) { const labwareId = command.params.location.labwareId const labwareName = command.result?.definition.metadata.displayName - const matchingAdapter = robotSideAnalysis.commands.find( + const matchingAdapter = commandTextData.commands.find( (command): command is LoadLabwareRunTimeCommand => command.commandType === 'loadLabware' && command.result?.labwareId === labwareId @@ -112,7 +112,7 @@ export const LoadCommandText = ({ }) } else if (adapterLoc != null && 'moduleId' in adapterLoc) { const moduleModel = getModuleModel( - robotSideAnalysis, + commandTextData, adapterLoc?.moduleId ?? '' ) const moduleName = @@ -122,7 +122,7 @@ export const LoadCommandText = ({ adapter_name: adapterName, module_name: moduleName, slot_name: getModuleDisplayLocation( - robotSideAnalysis, + commandTextData, adapterLoc?.moduleId ?? '' ), }) @@ -148,8 +148,8 @@ export const LoadCommandText = ({ case 'loadLiquid': { const { liquidId, labwareId } = command.params return t('load_liquids_info_protocol_setup', { - liquid: getLiquidDisplayName(robotSideAnalysis, liquidId), - labware: getLabwareName(robotSideAnalysis, labwareId), + liquid: getLiquidDisplayName(commandTextData, liquidId), + labware: getLabwareName(commandTextData, labwareId), }) } default: { diff --git a/app/src/organisms/CommandText/MoveLabwareCommandText.tsx b/app/src/organisms/CommandText/MoveLabwareCommandText.tsx index f2a68a76fd2..4296b3a2aa1 100644 --- a/app/src/organisms/CommandText/MoveLabwareCommandText.tsx +++ b/app/src/organisms/CommandText/MoveLabwareCommandText.tsx @@ -4,29 +4,30 @@ import { getLabwareName } from './utils' import { getLabwareDisplayLocation } from './utils/getLabwareDisplayLocation' import { getFinalLabwareLocation } from './utils/getFinalLabwareLocation' import type { - CompletedProtocolAnalysis, MoveLabwareRunTimeCommand, RobotType, } from '@opentrons/shared-data' +import type { CommandTextData } from './types' + interface MoveLabwareCommandTextProps { command: MoveLabwareRunTimeCommand - robotSideAnalysis: CompletedProtocolAnalysis + commandTextData: CommandTextData robotType: RobotType } export function MoveLabwareCommandText( props: MoveLabwareCommandTextProps ): JSX.Element { const { t } = useTranslation('protocol_command_text') - const { command, robotSideAnalysis, robotType } = props + const { command, commandTextData, robotType } = props const { labwareId, newLocation, strategy } = command.params - const allPreviousCommands = robotSideAnalysis.commands.slice( + const allPreviousCommands = commandTextData.commands.slice( 0, - robotSideAnalysis.commands.findIndex(c => c.id === command.id) + commandTextData.commands.findIndex(c => c.id === command.id) ) const oldLocation = getFinalLabwareLocation(labwareId, allPreviousCommands) const newDisplayLocation = getLabwareDisplayLocation( - robotSideAnalysis, + commandTextData, newLocation, t, robotType @@ -40,11 +41,11 @@ export function MoveLabwareCommandText( return strategy === 'usingGripper' ? t('move_labware_using_gripper', { - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), old_location: oldLocation != null ? getLabwareDisplayLocation( - robotSideAnalysis, + commandTextData, oldLocation, t, robotType @@ -53,11 +54,11 @@ export function MoveLabwareCommandText( new_location: location, }) : t('move_labware_manually', { - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), old_location: oldLocation != null ? getLabwareDisplayLocation( - robotSideAnalysis, + commandTextData, oldLocation, t, robotType diff --git a/app/src/organisms/CommandText/PipettingCommandText.tsx b/app/src/organisms/CommandText/PipettingCommandText.tsx index 2ac59c1a788..ff6ce1e1bbf 100644 --- a/app/src/organisms/CommandText/PipettingCommandText.tsx +++ b/app/src/organisms/CommandText/PipettingCommandText.tsx @@ -1,10 +1,6 @@ import { useTranslation } from 'react-i18next' -import { - CompletedProtocolAnalysis, - getLabwareDefURI, - RobotType, -} from '@opentrons/shared-data' +import { getLabwareDefURI } from '@opentrons/shared-data' import { getLabwareDefinitionsFromCommands } from '../LabwarePositionCheck/utils/labware' import { getLoadedLabware } from './utils/accessors' @@ -17,17 +13,19 @@ import { import type { PipetteName, PipettingRunTimeCommand, + RobotType, } from '@opentrons/shared-data' +import type { CommandTextData } from './types' interface PipettingCommandTextProps { command: PipettingRunTimeCommand - robotSideAnalysis: CompletedProtocolAnalysis + commandTextData: CommandTextData robotType: RobotType } export const PipettingCommandText = ({ command, - robotSideAnalysis, + commandTextData, robotType, }: PipettingCommandTextProps): JSX.Element | null => { const { t } = useTranslation('protocol_command_text') @@ -36,9 +34,9 @@ export const PipettingCommandText = ({ 'labwareId' in command.params ? command.params.labwareId : '' const wellName = 'wellName' in command.params ? command.params.wellName : '' - const allPreviousCommands = robotSideAnalysis.commands.slice( + const allPreviousCommands = commandTextData.commands.slice( 0, - robotSideAnalysis.commands.findIndex(c => c.id === command.id) + commandTextData.commands.findIndex(c => c.id === command.id) ) const labwareLocation = getFinalLabwareLocation( labwareId, @@ -47,7 +45,7 @@ export const PipettingCommandText = ({ const displayLocation = labwareLocation != null ? getLabwareDisplayLocation( - robotSideAnalysis, + commandTextData, labwareLocation, t, robotType @@ -58,7 +56,7 @@ export const PipettingCommandText = ({ const { volume, flowRate } = command.params return t('aspirate', { well_name: wellName, - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), labware_location: displayLocation, volume: volume, flow_rate: flowRate, @@ -69,7 +67,7 @@ export const PipettingCommandText = ({ return pushOut ? t('dispense_push_out', { well_name: wellName, - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), labware_location: displayLocation, volume: volume, flow_rate: flowRate, @@ -77,7 +75,7 @@ export const PipettingCommandText = ({ }) : t('dispense', { well_name: wellName, - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), labware_location: displayLocation, volume: volume, flow_rate: flowRate, @@ -87,15 +85,15 @@ export const PipettingCommandText = ({ const { flowRate } = command.params return t('blowout', { well_name: wellName, - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), labware_location: displayLocation, flow_rate: flowRate, }) } case 'dropTip': { - const loadedLabware = getLoadedLabware(robotSideAnalysis, labwareId) + const loadedLabware = getLoadedLabware(commandTextData, labwareId) const labwareDefinitions = getLabwareDefinitionsFromCommands( - robotSideAnalysis.commands + commandTextData.commands ) const labwareDef = labwareDefinitions.find( lw => getLabwareDefURI(lw) === loadedLabware?.definitionUri @@ -103,20 +101,20 @@ export const PipettingCommandText = ({ return labwareDef?.parameters.isTiprack ? t('return_tip', { well_name: wellName, - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), labware_location: displayLocation, }) : t('drop_tip', { well_name: wellName, - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), }) } case 'pickUpTip': { const pipetteId = command.params.pipetteId const pipetteName: | PipetteName - | undefined = robotSideAnalysis.pipettes.find( - pip => pip.id === pipetteId + | undefined = commandTextData.pipettes.find( + pipette => pipette.id === pipetteId )?.pipetteName return t('pickup_tip', { @@ -126,7 +124,7 @@ export const PipettingCommandText = ({ wellName, pipetteName ), - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), labware_location: displayLocation, }) } diff --git a/app/src/organisms/CommandText/__fixtures__/index.ts b/app/src/organisms/CommandText/__fixtures__/index.ts index ff40346cc6b..016bb909602 100644 --- a/app/src/organisms/CommandText/__fixtures__/index.ts +++ b/app/src/organisms/CommandText/__fixtures__/index.ts @@ -1,4 +1,13 @@ import robotSideAnalysis from './mockRobotSideAnalysis.json' import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' +import type { CommandTextData } from '../types' export const mockRobotSideAnalysis: CompletedProtocolAnalysis = robotSideAnalysis as CompletedProtocolAnalysis + +export const mockCommandTextData: CommandTextData = { + commands: mockRobotSideAnalysis.commands, + pipettes: mockRobotSideAnalysis.pipettes, + labware: mockRobotSideAnalysis.labware, + modules: mockRobotSideAnalysis.modules, + liquids: mockRobotSideAnalysis.liquids, +} diff --git a/app/src/organisms/CommandText/__tests__/CommandText.test.tsx b/app/src/organisms/CommandText/__tests__/CommandText.test.tsx index 418584e80e6..3cb3dac0a96 100644 --- a/app/src/organisms/CommandText/__tests__/CommandText.test.tsx +++ b/app/src/organisms/CommandText/__tests__/CommandText.test.tsx @@ -5,18 +5,18 @@ import { FLEX_ROBOT_TYPE, OT2_ROBOT_TYPE, GRIPPER_WASTE_CHUTE_ADDRESSABLE_AREA, - MoveToAddressableAreaForDropTipRunTimeCommand, } from '@opentrons/shared-data' - import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { CommandText } from '../' -import { mockRobotSideAnalysis } from '../__fixtures__' +import { mockCommandTextData } from '../__fixtures__' +import { getCommandTextData } from '../utils/getCommandTextData' import type { AspirateInPlaceRunTimeCommand, BlowoutInPlaceRunTimeCommand, BlowoutRunTimeCommand, + CompletedProtocolAnalysis, ConfigureForVolumeRunTimeCommand, DispenseInPlaceRunTimeCommand, DispenseRunTimeCommand, @@ -29,18 +29,19 @@ import type { MoveToWellRunTimeCommand, PrepareToAspirateRunTimeCommand, RunTimeCommand, + MoveToAddressableAreaForDropTipRunTimeCommand, } from '@opentrons/shared-data' describe('CommandText', () => { it('renders correct text for aspirate', () => { - const command = mockRobotSideAnalysis.commands.find( + const command = mockCommandTextData.commands.find( c => c.commandType === 'aspirate' ) expect(command).not.toBeUndefined() if (command != null) { const { getByText } = renderWithProviders( , @@ -52,14 +53,14 @@ describe('CommandText', () => { } }) it('renders correct text for dispense without pushOut', () => { - const command = mockRobotSideAnalysis.commands.find( + const command = mockCommandTextData.commands.find( c => c.commandType === 'dispense' ) expect(command).not.toBeUndefined() if (command != null) { const { getByText } = renderWithProviders( , @@ -71,7 +72,7 @@ describe('CommandText', () => { } }) it('renders correct text for dispense with pushOut', () => { - const command = mockRobotSideAnalysis.commands.find( + const command = mockCommandTextData.commands.find( c => c.commandType === 'dispense' ) const pushOutDispenseCommand = { @@ -85,7 +86,7 @@ describe('CommandText', () => { if (pushOutDispenseCommand != null) { const { getByText } = renderWithProviders( , @@ -99,7 +100,7 @@ describe('CommandText', () => { it('renders correct text for dispenseInPlace', () => { const { getByText } = renderWithProviders( { getByText('Dispensing 50 µL in place at 300 µL/sec') }) it('renders correct text for blowout', () => { - const dispenseCommand = mockRobotSideAnalysis.commands.find( + const dispenseCommand = mockCommandTextData.commands.find( c => c.commandType === 'dispense' ) const blowoutCommand = { @@ -128,7 +129,7 @@ describe('CommandText', () => { if (blowoutCommand != null) { const { getByText } = renderWithProviders( , @@ -142,7 +143,7 @@ describe('CommandText', () => { it('renders correct text for blowOutInPlace', () => { const { getByText } = renderWithProviders( { it('renders correct text for aspirateInPlace', () => { const { getByText } = renderWithProviders( { getByText('Aspirating 10 µL in place at 300 µL/sec') }) it('renders correct text for moveToWell', () => { - const dispenseCommand = mockRobotSideAnalysis.commands.find( + const dispenseCommand = mockCommandTextData.commands.find( c => c.commandType === 'aspirate' ) const moveToWellCommand = { @@ -190,7 +191,7 @@ describe('CommandText', () => { if (moveToWellCommand != null) { const { getByText } = renderWithProviders( , @@ -206,7 +207,7 @@ describe('CommandText', () => { commandType: 'moveLabware', params: { strategy: 'usingGripper', - labwareId: mockRobotSideAnalysis.labware[2].id, + labwareId: mockCommandTextData.labware[2].id, newLocation: { addressableAreaName: '5' }, }, id: 'def456', @@ -217,7 +218,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -231,7 +232,7 @@ describe('CommandText', () => { it('renders correct text for moveToAddressableArea for Waste Chutes', () => { const { getByText } = renderWithProviders( { it('renders correct text for moveToAddressableArea for Fixed Trash', () => { const { getByText } = renderWithProviders( { it('renders correct text for moveToAddressableArea for Trash Bins', () => { const { getByText } = renderWithProviders( { it('renders correct text for moveToAddressableAreaForDropTip for Trash Bin', () => { const { getByText } = renderWithProviders( { it('renders correct text for moveToAddressableArea for slots', () => { const { getByText } = renderWithProviders( { const { getByText } = renderWithProviders( , @@ -358,7 +359,7 @@ describe('CommandText', () => { const { getByText } = renderWithProviders( , @@ -367,14 +368,14 @@ describe('CommandText', () => { getByText('Preparing P300 Single-Channel GEN1 to aspirate') }) it('renders correct text for dropTip', () => { - const command = mockRobotSideAnalysis.commands.find( + const command = mockCommandTextData.commands.find( c => c.commandType === 'dropTip' ) expect(command).not.toBeUndefined() if (command != null) { const { getByText } = renderWithProviders( , @@ -386,7 +387,7 @@ describe('CommandText', () => { it('renders correct text for dropTip into a labware', () => { const { getByText } = renderWithProviders( { it('renders correct text for dropTipInPlace', () => { const { getByText } = renderWithProviders( { getByText('Dropping tip in place') }) it('renders correct text for pickUpTip', () => { - const command = mockRobotSideAnalysis.commands.find( + const command = mockCommandTextData.commands.find( c => c.commandType === 'pickUpTip' ) expect(command).not.toBeUndefined() if (command != null) { const { getByText } = renderWithProviders( , @@ -442,14 +443,14 @@ describe('CommandText', () => { } }) it('renders correct text for loadPipette', () => { - const command = mockRobotSideAnalysis.commands.find( + const command = mockCommandTextData.commands.find( c => c.commandType === 'loadPipette' ) expect(command).not.toBeNull() if (command != null) { const { getByText } = renderWithProviders( , @@ -459,14 +460,14 @@ describe('CommandText', () => { } }) it('renders correct text for loadModule', () => { - const command = mockRobotSideAnalysis.commands.find( + const command = mockCommandTextData.commands.find( c => c.commandType === 'loadModule' ) expect(command).not.toBeNull() if (command != null) { const { getByText } = renderWithProviders( , @@ -476,13 +477,13 @@ describe('CommandText', () => { } }) it('renders correct text for loadLabware that is category adapter in slot', () => { - const loadLabwareCommands = mockRobotSideAnalysis.commands.filter( + const loadLabwareCommands = mockCommandTextData.commands.filter( c => c.commandType === 'loadLabware' ) const loadLabwareCommand = loadLabwareCommands[0] const { getByText } = renderWithProviders( , @@ -491,13 +492,13 @@ describe('CommandText', () => { getByText('Load Opentrons 96 Flat Bottom Adapter in Slot 2') }) it('renders correct text for loadLabware in slot', () => { - const loadLabwareCommands = mockRobotSideAnalysis.commands.filter( + const loadLabwareCommands = mockCommandTextData.commands.filter( c => c.commandType === 'loadLabware' ) const loadTipRackCommand = loadLabwareCommands[2] const { getByText } = renderWithProviders( , @@ -506,13 +507,13 @@ describe('CommandText', () => { getByText('Load Opentrons 96 Tip Rack 300 µL in Slot 9') }) it('renders correct text for loadLabware in module', () => { - const loadLabwareCommands = mockRobotSideAnalysis.commands.filter( + const loadLabwareCommands = mockCommandTextData.commands.filter( c => c.commandType === 'loadLabware' ) const loadOnModuleCommand = loadLabwareCommands[3] const { getByText } = renderWithProviders( , @@ -550,7 +551,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -562,7 +563,7 @@ describe('CommandText', () => { ) }) it('renders correct text for loadLabware off deck', () => { - const loadLabwareCommands = mockRobotSideAnalysis.commands.filter( + const loadLabwareCommands = mockCommandTextData.commands.filter( c => c.commandType === 'loadLabware' ) const loadOffDeckCommand = { @@ -574,7 +575,7 @@ describe('CommandText', () => { } as LoadLabwareRunTimeCommand const { getByText } = renderWithProviders( , @@ -583,7 +584,7 @@ describe('CommandText', () => { getByText('Load NEST 96 Well Plate 100 µL PCR Full Skirt off deck') }) it('renders correct text for loadLiquid', () => { - const loadLabwareCommands = mockRobotSideAnalysis.commands.filter( + const loadLabwareCommands = mockCommandTextData.commands.filter( c => c.commandType === 'loadLabware' ) const liquidId = 'zxcvbn' @@ -594,7 +595,7 @@ describe('CommandText', () => { params: { liquidId, labwareId }, } as LoadLiquidRunTimeCommand const analysisWithLiquids = { - ...mockRobotSideAnalysis, + ...mockCommandTextData, liquids: [ { id: 'zxcvbn', @@ -615,7 +616,9 @@ describe('CommandText', () => { } const { getByText } = renderWithProviders( , @@ -638,7 +641,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -662,7 +665,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -685,7 +688,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -709,7 +712,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -735,7 +738,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -759,7 +762,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -786,7 +789,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -817,7 +820,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} isOnDevice={true} />, @@ -847,7 +850,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -872,7 +875,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -895,7 +898,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -918,7 +921,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -971,7 +974,7 @@ describe('CommandText', () => { completedAt: null, } as RunTimeCommand } - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -997,7 +1000,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1020,7 +1023,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1043,7 +1046,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1066,7 +1069,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1089,7 +1092,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1112,7 +1115,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1135,7 +1138,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1158,7 +1161,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1181,7 +1184,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1208,7 +1211,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1226,7 +1229,7 @@ describe('CommandText', () => { commandType: 'moveLabware', params: { strategy: 'manualMoveWithPause', - labwareId: mockRobotSideAnalysis.labware[2].id, + labwareId: mockCommandTextData.labware[2].id, newLocation: 'offDeck', }, id: 'def456', @@ -1237,7 +1240,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1255,7 +1258,7 @@ describe('CommandText', () => { commandType: 'moveLabware', params: { strategy: 'manualMoveWithPause', - labwareId: mockRobotSideAnalysis.labware[3].id, + labwareId: mockCommandTextData.labware[3].id, newLocation: { slotName: 'A3' }, }, id: 'def456', @@ -1266,7 +1269,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1284,7 +1287,7 @@ describe('CommandText', () => { commandType: 'moveLabware', params: { strategy: 'usingGripper', - labwareId: mockRobotSideAnalysis.labware[2].id, + labwareId: mockCommandTextData.labware[2].id, newLocation: 'offDeck', }, id: 'def456', @@ -1295,7 +1298,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1313,7 +1316,7 @@ describe('CommandText', () => { commandType: 'moveLabware', params: { strategy: 'usingGripper', - labwareId: mockRobotSideAnalysis.labware[2].id, + labwareId: mockCommandTextData.labware[2].id, newLocation: { addressableAreaName: GRIPPER_WASTE_CHUTE_ADDRESSABLE_AREA, }, @@ -1326,7 +1329,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { @@ -1344,8 +1347,8 @@ describe('CommandText', () => { commandType: 'moveLabware', params: { strategy: 'usingGripper', - labwareId: mockRobotSideAnalysis.labware[3].id, - newLocation: { moduleId: mockRobotSideAnalysis.modules[0].id }, + labwareId: mockCommandTextData.labware[3].id, + newLocation: { moduleId: mockCommandTextData.modules[0].id }, }, id: 'def456', result: { offsetId: 'fake_offset_id' }, @@ -1355,7 +1358,7 @@ describe('CommandText', () => { startedAt: null, completedAt: null, }} - robotSideAnalysis={mockRobotSideAnalysis} + commandTextData={mockCommandTextData} robotType={FLEX_ROBOT_TYPE} />, { diff --git a/app/src/organisms/CommandText/index.tsx b/app/src/organisms/CommandText/index.tsx index 47c54140149..74f133ddbb6 100644 --- a/app/src/organisms/CommandText/index.tsx +++ b/app/src/organisms/CommandText/index.tsx @@ -20,12 +20,9 @@ import { PipettingCommandText } from './PipettingCommandText' import { TemperatureCommandText } from './TemperatureCommandText' import { MoveLabwareCommandText } from './MoveLabwareCommandText' -import type { - CompletedProtocolAnalysis, - RobotType, - RunTimeCommand, -} from '@opentrons/shared-data' +import type { RobotType, RunTimeCommand } from '@opentrons/shared-data' import type { StyleProps } from '@opentrons/components' +import type { CommandTextData } from './types' const SIMPLE_TRANSLATION_KEY_BY_COMMAND_TYPE: { [commandType in RunTimeCommand['commandType']]?: string @@ -52,14 +49,14 @@ const SIMPLE_TRANSLATION_KEY_BY_COMMAND_TYPE: { interface Props extends StyleProps { command: RunTimeCommand - robotSideAnalysis: CompletedProtocolAnalysis + commandTextData: CommandTextData robotType: RobotType isOnDevice?: boolean } export function CommandText(props: Props): JSX.Element | null { const { command, - robotSideAnalysis, + commandTextData, robotType, isOnDevice = false, ...styleProps @@ -78,9 +75,7 @@ export function CommandText(props: Props): JSX.Element | null { case 'pickUpTip': { return ( - + ) } @@ -90,7 +85,7 @@ export function CommandText(props: Props): JSX.Element | null { case 'loadLiquid': { return ( - + ) } @@ -173,9 +168,9 @@ export function CommandText(props: Props): JSX.Element | null { } case 'moveToWell': { const { wellName, labwareId } = command.params - const allPreviousCommands = robotSideAnalysis.commands.slice( + const allPreviousCommands = commandTextData.commands.slice( 0, - robotSideAnalysis.commands.findIndex(c => c.id === command.id) + commandTextData.commands.findIndex(c => c.id === command.id) ) const labwareLocation = getFinalLabwareLocation( labwareId, @@ -184,7 +179,7 @@ export function CommandText(props: Props): JSX.Element | null { const displayLocation = labwareLocation != null ? getLabwareDisplayLocation( - robotSideAnalysis, + commandTextData, labwareLocation, t, robotType @@ -194,7 +189,7 @@ export function CommandText(props: Props): JSX.Element | null { {t('move_to_well', { well_name: wellName, - labware: getLabwareName(robotSideAnalysis, labwareId), + labware: getLabwareName(commandTextData, labwareId), labware_location: displayLocation, })} @@ -204,14 +199,14 @@ export function CommandText(props: Props): JSX.Element | null { return ( ) } case 'configureForVolume': { const { volume, pipetteId } = command.params - const pipetteName = robotSideAnalysis.pipettes.find( + const pipetteName = commandTextData.pipettes.find( pip => pip.id === pipetteId )?.pipetteName @@ -229,7 +224,7 @@ export function CommandText(props: Props): JSX.Element | null { } case 'configureNozzleLayout': { const { configurationParams, pipetteId } = command.params - const pipetteName = robotSideAnalysis.pipettes.find( + const pipetteName = commandTextData.pipettes.find( pip => pip.id === pipetteId )?.pipetteName @@ -248,7 +243,7 @@ export function CommandText(props: Props): JSX.Element | null { } case 'prepareToAspirate': { const { pipetteId } = command.params - const pipetteName = robotSideAnalysis.pipettes.find( + const pipetteName = commandTextData.pipettes.find( pip => pip.id === pipetteId )?.pipetteName @@ -265,7 +260,7 @@ export function CommandText(props: Props): JSX.Element | null { } case 'moveToAddressableArea': { const addressableAreaDisplayName = getAddressableAreaDisplayName( - robotSideAnalysis, + commandTextData, command.id, t ) @@ -280,7 +275,7 @@ export function CommandText(props: Props): JSX.Element | null { } case 'moveToAddressableAreaForDropTip': { const addressableAreaDisplayName = getAddressableAreaDisplayName( - robotSideAnalysis, + commandTextData, command.id, t ) diff --git a/app/src/organisms/CommandText/types.ts b/app/src/organisms/CommandText/types.ts new file mode 100644 index 00000000000..e89d088a9d3 --- /dev/null +++ b/app/src/organisms/CommandText/types.ts @@ -0,0 +1,6 @@ +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' + +export type CommandTextData = Pick< + CompletedProtocolAnalysis, + 'pipettes' | 'labware' | 'modules' | 'liquids' | 'commands' +> diff --git a/app/src/organisms/CommandText/utils/accessors.ts b/app/src/organisms/CommandText/utils/accessors.ts index 444f102d828..2ca6fda7efb 100644 --- a/app/src/organisms/CommandText/utils/accessors.ts +++ b/app/src/organisms/CommandText/utils/accessors.ts @@ -5,31 +5,32 @@ import type { LoadedModule, LoadedPipette, } from '@opentrons/shared-data' +import type { CommandTextData } from '../types' export function getLoadedLabware( - protocolData: CompletedProtocolAnalysis | RunData, + commandTextData: CompletedProtocolAnalysis | RunData | CommandTextData, labwareId: string ): LoadedLabware | undefined { // NOTE: old analysis contains a object dictionary of labware entities by id, this case is supported for backwards compatibility purposes - return Array.isArray(protocolData.labware) - ? protocolData.labware.find(l => l.id === labwareId) - : protocolData.labware[labwareId] + return Array.isArray(commandTextData.labware) + ? commandTextData.labware.find(l => l.id === labwareId) + : commandTextData.labware[labwareId] } export function getLoadedPipette( - analysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, mount: string ): LoadedPipette | undefined { // NOTE: old analysis contains a object dictionary of pipette entities by id, this case is supported for backwards compatibility purposes - return Array.isArray(analysis.pipettes) - ? analysis.pipettes.find(l => l.mount === mount) - : analysis.pipettes[mount] + return Array.isArray(commandTextData.pipettes) + ? commandTextData.pipettes.find(l => l.mount === mount) + : commandTextData.pipettes[mount] } export function getLoadedModule( - protocolData: CompletedProtocolAnalysis | RunData, + commandTextData: CompletedProtocolAnalysis | RunData | CommandTextData, moduleId: string ): LoadedModule | undefined { // NOTE: old analysis contains a object dictionary of module entities by id, this case is supported for backwards compatibility purposes - return Array.isArray(protocolData.modules) - ? protocolData.modules.find(l => l.id === moduleId) - : protocolData.modules[moduleId] + return Array.isArray(commandTextData.modules) + ? commandTextData.modules.find(l => l.id === moduleId) + : commandTextData.modules[moduleId] } diff --git a/app/src/organisms/CommandText/utils/getAddressableAreaDisplayName.ts b/app/src/organisms/CommandText/utils/getAddressableAreaDisplayName.ts index cba0f3ca2cd..6bfdd2fc850 100644 --- a/app/src/organisms/CommandText/utils/getAddressableAreaDisplayName.ts +++ b/app/src/organisms/CommandText/utils/getAddressableAreaDisplayName.ts @@ -1,16 +1,16 @@ import type { AddressableAreaName, - CompletedProtocolAnalysis, MoveToAddressableAreaParams, } from '@opentrons/shared-data' import type { TFunction } from 'i18next' +import type { CommandTextData } from '../types' export function getAddressableAreaDisplayName( - analysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, commandId: string, t: TFunction ): string { - const addressableAreaCommand = (analysis?.commands ?? []).find( + const addressableAreaCommand = (commandTextData?.commands ?? []).find( command => command.id === commandId ) diff --git a/app/src/organisms/CommandText/utils/getCommandTextData.ts b/app/src/organisms/CommandText/utils/getCommandTextData.ts new file mode 100644 index 00000000000..bf1a5a07f2e --- /dev/null +++ b/app/src/organisms/CommandText/utils/getCommandTextData.ts @@ -0,0 +1,16 @@ +import type { LegacyGoodRunData } from '@opentrons/api-client' +import type { + CompletedProtocolAnalysis, + RunTimeCommand, +} from '@opentrons/shared-data' +import type { CommandTextData } from '../types' + +export function getCommandTextData( + protocolData: CompletedProtocolAnalysis | LegacyGoodRunData, + protocolCommands?: RunTimeCommand[] +): CommandTextData { + const { pipettes, labware, modules, liquids } = protocolData + const commands = + 'commands' in protocolData ? protocolData.commands : protocolCommands ?? [] + return { commands, pipettes, labware, modules, liquids } +} diff --git a/app/src/organisms/CommandText/utils/getLabwareDisplayLocation.ts b/app/src/organisms/CommandText/utils/getLabwareDisplayLocation.ts index 67128059463..7f28d42b421 100644 --- a/app/src/organisms/CommandText/utils/getLabwareDisplayLocation.ts +++ b/app/src/organisms/CommandText/utils/getLabwareDisplayLocation.ts @@ -4,19 +4,16 @@ import { getModuleDisplayName, getModuleType, getOccludedSlotCountForModule, - LabwareLocation, } from '@opentrons/shared-data' import { getModuleDisplayLocation } from './getModuleDisplayLocation' import { getModuleModel } from './getModuleModel' import { getLabwareDefinitionsFromCommands } from '../../LabwarePositionCheck/utils/labware' -import type { - CompletedProtocolAnalysis, - RobotType, -} from '@opentrons/shared-data/' +import type { RobotType, LabwareLocation } from '@opentrons/shared-data' import type { TFunction } from 'i18next' +import type { CommandTextData } from '../types' export function getLabwareDisplayLocation( - robotSideAnalysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, location: LabwareLocation, t: TFunction, robotType: RobotType, @@ -33,13 +30,13 @@ export function getLabwareDisplayLocation( ? location.addressableAreaName : t('slot', { slot_name: location.addressableAreaName }) } else if ('moduleId' in location) { - const moduleModel = getModuleModel(robotSideAnalysis, location.moduleId) + const moduleModel = getModuleModel(commandTextData, location.moduleId) if (moduleModel == null) { console.warn('labware is located on an unknown module model') return '' } else { const slotName = getModuleDisplayLocation( - robotSideAnalysis, + commandTextData, location.moduleId ) return isOnDevice @@ -54,12 +51,10 @@ export function getLabwareDisplayLocation( }) } } else if ('labwareId' in location) { - const adapter = robotSideAnalysis.labware.find( + const adapter = commandTextData.labware.find( lw => lw.id === location.labwareId ) - const allDefs = getLabwareDefinitionsFromCommands( - robotSideAnalysis.commands - ) + const allDefs = getLabwareDefinitionsFromCommands(commandTextData.commands) const adapterDef = allDefs.find( def => getLabwareDefURI(def) === adapter?.definitionUri ) @@ -83,7 +78,7 @@ export function getLabwareDisplayLocation( }) } else if ('moduleId' in adapter.location) { const moduleIdUnderAdapter = adapter.location.moduleId - const moduleModel = robotSideAnalysis.modules.find( + const moduleModel = commandTextData.modules.find( module => module.id === moduleIdUnderAdapter )?.model if (moduleModel == null) { @@ -91,7 +86,7 @@ export function getLabwareDisplayLocation( return '' } const slotName = getModuleDisplayLocation( - robotSideAnalysis, + commandTextData, adapter.location.moduleId ) return t('adapter_in_mod_in_slot', { diff --git a/app/src/organisms/CommandText/utils/getLabwareName.ts b/app/src/organisms/CommandText/utils/getLabwareName.ts index 61d7020e054..e81505e470e 100644 --- a/app/src/organisms/CommandText/utils/getLabwareName.ts +++ b/app/src/organisms/CommandText/utils/getLabwareName.ts @@ -1,11 +1,8 @@ import { getLoadedLabware } from './accessors' -import { - CompletedProtocolAnalysis, - getLabwareDefURI, - getLabwareDisplayName, -} from '@opentrons/shared-data' +import { getLabwareDefURI, getLabwareDisplayName } from '@opentrons/shared-data' import { getLabwareDefinitionsFromCommands } from '../../LabwarePositionCheck/utils/labware' +import type { CommandTextData } from '../types' const FIXED_TRASH_DEF_URIS = [ 'opentrons/opentrons_1_trash_850ml_fixed/1', @@ -13,10 +10,10 @@ const FIXED_TRASH_DEF_URIS = [ 'opentrons/opentrons_1_trash_3200ml_fixed/1', ] export function getLabwareName( - analysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, labwareId: string ): string { - const loadedLabware = getLoadedLabware(analysis, labwareId) + const loadedLabware = getLoadedLabware(commandTextData, labwareId) if (loadedLabware == null) { return '' } else if (FIXED_TRASH_DEF_URIS.includes(loadedLabware.definitionUri)) { @@ -25,7 +22,7 @@ export function getLabwareName( return loadedLabware.displayName } else { const labwareDef = getLabwareDefinitionsFromCommands( - analysis.commands + commandTextData.commands ).find(def => getLabwareDefURI(def) === loadedLabware.definitionUri) return labwareDef != null ? getLabwareDisplayName(labwareDef) : '' } diff --git a/app/src/organisms/CommandText/utils/getLiquidDisplayName.ts b/app/src/organisms/CommandText/utils/getLiquidDisplayName.ts index a471f066419..1b4b15a854b 100644 --- a/app/src/organisms/CommandText/utils/getLiquidDisplayName.ts +++ b/app/src/organisms/CommandText/utils/getLiquidDisplayName.ts @@ -1,10 +1,10 @@ -import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' +import type { CommandTextData } from '../types' export function getLiquidDisplayName( - analysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, liquidId: string -): CompletedProtocolAnalysis['liquids'][number]['displayName'] { - const liquidDisplayName = (analysis?.liquids ?? []).find( +): CommandTextData['liquids'][number]['displayName'] { + const liquidDisplayName = (commandTextData?.liquids ?? []).find( liquid => liquid.id === liquidId )?.displayName return liquidDisplayName ?? '' diff --git a/app/src/organisms/CommandText/utils/getModuleDisplayLocation.ts b/app/src/organisms/CommandText/utils/getModuleDisplayLocation.ts index 2b18e46dad1..c71c74c4c86 100644 --- a/app/src/organisms/CommandText/utils/getModuleDisplayLocation.ts +++ b/app/src/organisms/CommandText/utils/getModuleDisplayLocation.ts @@ -1,11 +1,11 @@ import { getLoadedModule } from './accessors' -import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' +import type { CommandTextData } from '../types' export function getModuleDisplayLocation( - analysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, moduleId: string ): string { - const loadedModule = getLoadedModule(analysis, moduleId) + const loadedModule = getLoadedModule(commandTextData, moduleId) return loadedModule != null ? loadedModule.location.slotName : '' } diff --git a/app/src/organisms/CommandText/utils/getModuleModel.ts b/app/src/organisms/CommandText/utils/getModuleModel.ts index 37031b964ce..3e95e05ebeb 100644 --- a/app/src/organisms/CommandText/utils/getModuleModel.ts +++ b/app/src/organisms/CommandText/utils/getModuleModel.ts @@ -1,14 +1,12 @@ import { getLoadedModule } from './accessors' -import type { - ModuleModel, - CompletedProtocolAnalysis, -} from '@opentrons/shared-data' +import type { ModuleModel } from '@opentrons/shared-data' +import type { CommandTextData } from '../types' export function getModuleModel( - analysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, moduleId: string ): ModuleModel | null { - const loadedModule = getLoadedModule(analysis, moduleId) + const loadedModule = getLoadedModule(commandTextData, moduleId) return loadedModule != null ? loadedModule.model : null } diff --git a/app/src/organisms/CommandText/utils/getPipetteNameOnMount.ts b/app/src/organisms/CommandText/utils/getPipetteNameOnMount.ts index 07751dd855b..f1c09d73caf 100644 --- a/app/src/organisms/CommandText/utils/getPipetteNameOnMount.ts +++ b/app/src/organisms/CommandText/utils/getPipetteNameOnMount.ts @@ -1,14 +1,12 @@ import { getLoadedPipette } from './accessors' -import type { - CompletedProtocolAnalysis, - PipetteName, -} from '@opentrons/shared-data' +import type { PipetteName } from '@opentrons/shared-data' +import type { CommandTextData } from '../types' export function getPipetteNameOnMount( - analysis: CompletedProtocolAnalysis, + commandTextData: CommandTextData, mount: string ): PipetteName | null { - const loadedPipette = getLoadedPipette(analysis, mount) + const loadedPipette = getLoadedPipette(commandTextData, mount) return loadedPipette != null ? loadedPipette.pipetteName : null } diff --git a/app/src/organisms/CommandText/utils/getWellRange.ts b/app/src/organisms/CommandText/utils/getWellRange.ts index 7676aef6969..a0700357413 100644 --- a/app/src/organisms/CommandText/utils/getWellRange.ts +++ b/app/src/organisms/CommandText/utils/getWellRange.ts @@ -1,8 +1,5 @@ -import { - getPipetteNameSpecs, - PipetteName, - RunTimeCommand, -} from '@opentrons/shared-data' +import { getPipetteNameSpecs } from '@opentrons/shared-data' +import type { PipetteName, RunTimeCommand } from '@opentrons/shared-data' /** * @param pipetteName name of pipette being used diff --git a/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeckConfigurationDiscardChangesModal.test.tsx b/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeckConfigurationDiscardChangesModal.test.tsx index 33b112e1043..0461f81496b 100644 --- a/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeckConfigurationDiscardChangesModal.test.tsx +++ b/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeckConfigurationDiscardChangesModal.test.tsx @@ -1,11 +1,11 @@ import * as React from 'react' import { fireEvent, screen } from '@testing-library/react' import { describe, it, beforeEach, vi, expect } from 'vitest' -import { useHistory } from 'react-router-dom' import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { DeckConfigurationDiscardChangesModal } from '../DeckConfigurationDiscardChangesModal' +import type { useHistory } from 'react-router-dom' const mockFunc = vi.fn() const mockGoBack = vi.fn() diff --git a/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeviceDetailsDeckConfiguration.test.tsx b/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeviceDetailsDeckConfiguration.test.tsx index 27b6bbad2ba..baa497c843d 100644 --- a/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeviceDetailsDeckConfiguration.test.tsx +++ b/app/src/organisms/DeviceDetailsDeckConfiguration/__tests__/DeviceDetailsDeckConfiguration.test.tsx @@ -3,10 +3,7 @@ import { fireEvent, screen } from '@testing-library/react' import { when } from 'vitest-when' import { describe, it, beforeEach, vi, afterEach } from 'vitest' -import { - DeckConfiguration, - TRASH_BIN_ADAPTER_FIXTURE, -} from '@opentrons/shared-data' +import { TRASH_BIN_ADAPTER_FIXTURE } from '@opentrons/shared-data' import { DeckConfigurator } from '@opentrons/components' import { useModulesQuery, @@ -27,6 +24,7 @@ import { import type { UseQueryResult } from 'react-query' import type { MaintenanceRun } from '@opentrons/api-client' +import type { DeckConfiguration } from '@opentrons/shared-data' import type * as OpentronsComponents from '@opentrons/components' vi.mock('@opentrons/components', async importOriginal => { diff --git a/app/src/organisms/Devices/HistoricalProtocolRunOffsetDrawer.tsx b/app/src/organisms/Devices/HistoricalProtocolRunOffsetDrawer.tsx index 1be825a562b..30abbe455c2 100644 --- a/app/src/organisms/Devices/HistoricalProtocolRunOffsetDrawer.tsx +++ b/app/src/organisms/Devices/HistoricalProtocolRunOffsetDrawer.tsx @@ -2,6 +2,8 @@ import * as React from 'react' import isEqual from 'lodash/isEqual' import { useTranslation } from 'react-i18next' import { + ALIGN_CENTER, + ALIGN_END, BORDERS, Box, COLORS, @@ -98,34 +100,40 @@ export function HistoricalProtocolRunOffsetDrawer( ) : null} - - - {t('location')} - - - {t('labware')} - - + - {t('labware_offset_data')} - + + {t('location')} + +
    + + + {t('labware')} + + + + + {t('labware_offset_data')} + + {uniqueLabwareOffsets.map((offset, index) => { const labwareDefinitions = @@ -144,33 +152,32 @@ export function HistoricalProtocolRunOffsetDrawer( - - {t('slot', { slotName: offset.location.slotName })} - {offset.location.moduleModel != null && - ` - ${String( - getModuleDisplayName(offset.location.moduleModel) - )}`} - - - {labwareName} - - + + + {t('slot', { slotName: offset.location.slotName })} + {offset.location.moduleModel != null && + ` - ${getModuleDisplayName(offset.location.moduleModel)}`} + + + + + {labwareName} + + + + + ) })} diff --git a/app/src/organisms/Devices/PipetteCard/PipetteOverflowMenu.tsx b/app/src/organisms/Devices/PipetteCard/PipetteOverflowMenu.tsx index 8c21af89c5d..027a5cd1529 100644 --- a/app/src/organisms/Devices/PipetteCard/PipetteOverflowMenu.tsx +++ b/app/src/organisms/Devices/PipetteCard/PipetteOverflowMenu.tsx @@ -10,13 +10,13 @@ import { SPACING, DIRECTION_COLUMN, } from '@opentrons/components' -import { PipetteModelSpecs } from '@opentrons/shared-data' import { MenuItem } from '../../../atoms/MenuList/MenuItem' import { Divider } from '../../../atoms/structure' -import type { Mount } from '../../../redux/pipettes/types' +import type { PipetteModelSpecs } from '@opentrons/shared-data' import type { PipetteSettingsFieldsMap } from '@opentrons/api-client' +import type { Mount } from '../../../redux/pipettes/types' interface PipetteOverflowMenuProps { pipetteSpecs: PipetteModelSpecs | null diff --git a/app/src/organisms/Devices/PipetteCard/PipetteSettingsSlideout.tsx b/app/src/organisms/Devices/PipetteCard/PipetteSettingsSlideout.tsx index 0872255474b..e8681b99812 100644 --- a/app/src/organisms/Devices/PipetteCard/PipetteSettingsSlideout.tsx +++ b/app/src/organisms/Devices/PipetteCard/PipetteSettingsSlideout.tsx @@ -1,14 +1,14 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { Flex } from '@opentrons/components' -import { PipetteModelSpecs } from '@opentrons/shared-data' import { useUpdatePipetteSettingsMutation } from '@opentrons/react-api-client' import { Slideout } from '../../../atoms/Slideout' import { ConfigFormSubmitButton } from '../../ConfigurePipette/ConfigFormSubmitButton' import { ConfigurePipette } from '../../ConfigurePipette' -import type { AttachedPipette } from '../../../redux/pipettes/types' +import type { PipetteModelSpecs } from '@opentrons/shared-data' import type { PipetteSettingsFieldsMap } from '@opentrons/api-client' +import type { AttachedPipette } from '../../../redux/pipettes/types' interface PipetteSettingsSlideoutProps { robotName: string diff --git a/app/src/organisms/Devices/ProtocolRun/ProtocolRunSetup.tsx b/app/src/organisms/Devices/ProtocolRun/ProtocolRunSetup.tsx index 05ee4b41b40..f7fc3f21c91 100644 --- a/app/src/organisms/Devices/ProtocolRun/ProtocolRunSetup.tsx +++ b/app/src/organisms/Devices/ProtocolRun/ProtocolRunSetup.tsx @@ -394,6 +394,7 @@ function StepRightElement(props: StepRightElementProps): JSX.Element | null { marginRight={SPACING.spacing16} textTransform={TYPOGRAPHY.textTransformCapitalize} id="RunSetupCard_calibrationText" + whiteSpace="nowrap" > {statusText} @@ -414,6 +415,7 @@ function LearnAboutLPC(): JSX.Element { { // clicking link shouldn't toggle step expanded state e.preventDefault() diff --git a/app/src/organisms/Devices/ProtocolRun/RunTimer.tsx b/app/src/organisms/Devices/ProtocolRun/RunTimer.tsx index 42076cbf964..337431c7f0c 100644 --- a/app/src/organisms/Devices/ProtocolRun/RunTimer.tsx +++ b/app/src/organisms/Devices/ProtocolRun/RunTimer.tsx @@ -1,11 +1,11 @@ import * as React from 'react' -import { CSSProp } from 'styled-components' import { RUN_STATUS_STOP_REQUESTED } from '@opentrons/api-client' import { useInterval, TYPOGRAPHY, StyledText } from '@opentrons/components' import { formatInterval } from '../../../organisms/RunTimeControl/utils' import { EMPTY_TIMESTAMP } from '../constants' +import type { CSSProp } from 'styled-components' export function RunTimer({ runStatus, diff --git a/app/src/organisms/Devices/ProtocolRun/SetupGripperCalibrationItem.tsx b/app/src/organisms/Devices/ProtocolRun/SetupGripperCalibrationItem.tsx index 255a69f467c..f9eaec4b86e 100644 --- a/app/src/organisms/Devices/ProtocolRun/SetupGripperCalibrationItem.tsx +++ b/app/src/organisms/Devices/ProtocolRun/SetupGripperCalibrationItem.tsx @@ -8,14 +8,15 @@ import { JUSTIFY_FLEX_END, WRAP, } from '@opentrons/components' -import { GripperModel, getGripperDisplayName } from '@opentrons/shared-data' +import { getGripperDisplayName } from '@opentrons/shared-data' import { TertiaryButton } from '../../../atoms/buttons' import { SetupCalibrationItem } from './SetupCalibrationItem' import { GripperWizardFlows } from '../../GripperWizardFlows' +import { GRIPPER_FLOW_TYPES } from '../../GripperWizardFlows/constants' import type { GripperData } from '@opentrons/api-client' +import type { GripperModel } from '@opentrons/shared-data' import type { GripperWizardFlowType } from '../../GripperWizardFlows/types' -import { GRIPPER_FLOW_TYPES } from '../../GripperWizardFlows/constants' interface SetupGripperCalibrationItemProps { gripperData: GripperData | null diff --git a/app/src/organisms/Devices/ProtocolRun/SetupLiquids/__tests__/LiquidDetailCard.test.tsx b/app/src/organisms/Devices/ProtocolRun/SetupLiquids/__tests__/LiquidDetailCard.test.tsx index 648d80f8806..48d22bb3776 100644 --- a/app/src/organisms/Devices/ProtocolRun/SetupLiquids/__tests__/LiquidDetailCard.test.tsx +++ b/app/src/organisms/Devices/ProtocolRun/SetupLiquids/__tests__/LiquidDetailCard.test.tsx @@ -1,6 +1,6 @@ import * as React from 'react' import { fireEvent, screen } from '@testing-library/react' -import { describe, it, beforeEach, vi, expect, Mock } from 'vitest' +import { describe, it, beforeEach, vi, expect } from 'vitest' import { SPACING, COLORS } from '@opentrons/components' @@ -15,6 +15,7 @@ import { } from '../../../../../redux/analytics' import { getIsOnDevice } from '../../../../../redux/config' import { LiquidDetailCard } from '../LiquidDetailCard' +import type { Mock } from 'vitest' vi.mock('../../../../../redux/analytics') vi.mock('../../../../../redux/config') diff --git a/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/__tests__/LocationConflictModal.test.tsx b/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/__tests__/LocationConflictModal.test.tsx index 20e167fc549..9713f35508a 100644 --- a/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/__tests__/LocationConflictModal.test.tsx +++ b/app/src/organisms/Devices/ProtocolRun/SetupModuleAndDeck/__tests__/LocationConflictModal.test.tsx @@ -1,5 +1,4 @@ import * as React from 'react' -import { UseQueryResult } from 'react-query' import { MemoryRouter } from 'react-router-dom' import { screen, fireEvent } from '@testing-library/react' import '@testing-library/jest-dom/vitest' @@ -22,6 +21,7 @@ import { useCloseCurrentRun } from '../../../../ProtocolUpload/hooks' import { LocationConflictModal } from '../LocationConflictModal' import { useNotifyDeckConfigurationQuery } from '../../../../../resources/deck_configuration' +import type { UseQueryResult } from 'react-query' import type { DeckConfiguration } from '@opentrons/shared-data' vi.mock('@opentrons/react-api-client') diff --git a/app/src/organisms/Devices/ProtocolRun/SetupStep.tsx b/app/src/organisms/Devices/ProtocolRun/SetupStep.tsx index cbfbde15443..51da5d946c6 100644 --- a/app/src/organisms/Devices/ProtocolRun/SetupStep.tsx +++ b/app/src/organisms/Devices/ProtocolRun/SetupStep.tsx @@ -75,6 +75,7 @@ export function SetupStep({ justifyContent={JUSTIFY_SPACE_BETWEEN} width="100%" onClick={toggleExpanded} + gridGap={SPACING.spacing40} > { pause: () => {}, stop: () => {}, reset: () => {}, + resumeFromRecovery: () => {}, isPlayRunActionLoading: false, isPauseRunActionLoading: false, isStopRunActionLoading: false, isResetRunLoading: false, + isResumeRunFromRecoveryActionLoading: false, }) when(vi.mocked(useRunStatus)).calledWith(RUN_ID).thenReturn(RUN_STATUS_IDLE) when(vi.mocked(useRunTimestamps)).calledWith(RUN_ID).thenReturn({ @@ -777,10 +779,12 @@ describe('ProtocolRunHeader', () => { pause: () => {}, stop: () => {}, reset: () => {}, + resumeFromRecovery: () => {}, isPlayRunActionLoading: false, isPauseRunActionLoading: false, isStopRunActionLoading: false, isResetRunLoading: true, + isResumeRunFromRecoveryActionLoading: false, }) render() diff --git a/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunModuleControls.test.tsx b/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunModuleControls.test.tsx index fdcf49dbebb..5de2516791b 100644 --- a/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunModuleControls.test.tsx +++ b/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunModuleControls.test.tsx @@ -5,7 +5,6 @@ import { screen } from '@testing-library/react' import { renderWithProviders } from '../../../../__testing-utils__' import { i18n } from '../../../../i18n' -import { ModuleModel, ModuleType } from '@opentrons/shared-data' import { useInstrumentsQuery } from '@opentrons/react-api-client' import { ProtocolRunModuleControls } from '../ProtocolRunModuleControls' import { ModuleCard } from '../../../ModuleCard' @@ -16,6 +15,7 @@ import { mockThermocycler, mockHeaterShaker, } from '../../../../redux/modules/__fixtures__' +import type { ModuleModel, ModuleType } from '@opentrons/shared-data' vi.mock('@opentrons/react-api-client') vi.mock('../../../ModuleCard') diff --git a/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunRuntimeParameters.test.tsx b/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunRuntimeParameters.test.tsx index e2398fb084c..268afc7f151 100644 --- a/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunRuntimeParameters.test.tsx +++ b/app/src/organisms/Devices/ProtocolRun/__tests__/ProtocolRunRuntimeParameters.test.tsx @@ -1,10 +1,7 @@ import * as React from 'react' -import { UseQueryResult } from 'react-query' import { describe, it, vi, beforeEach, afterEach, expect } from 'vitest' import { screen } from '@testing-library/react' import { when } from 'vitest-when' - -import { Run } from '@opentrons/api-client' import { InfoScreen } from '@opentrons/components' import { renderWithProviders } from '../../../../__testing-utils__' import { i18n } from '../../../../i18n' @@ -12,9 +9,9 @@ import { useMostRecentCompletedAnalysis } from '../../../LabwarePositionCheck/us import { useRunStatus } from '../../../RunTimeControl/hooks' import { useNotifyRunQuery } from '../../../../resources/runs' import { mockSucceededRun } from '../../../RunTimeControl/__fixtures__' - import { ProtocolRunRuntimeParameters } from '../ProtocolRunRunTimeParameters' - +import type { UseQueryResult } from 'react-query' +import type { Run } from '@opentrons/api-client' import type { CompletedProtocolAnalysis, RunTimeParameter, diff --git a/app/src/organisms/Devices/ProtocolRun/__tests__/SetupFlexPipetteCalibrationItem.test.tsx b/app/src/organisms/Devices/ProtocolRun/__tests__/SetupFlexPipetteCalibrationItem.test.tsx index 65dfccbf6a4..13442cb63c5 100644 --- a/app/src/organisms/Devices/ProtocolRun/__tests__/SetupFlexPipetteCalibrationItem.test.tsx +++ b/app/src/organisms/Devices/ProtocolRun/__tests__/SetupFlexPipetteCalibrationItem.test.tsx @@ -11,7 +11,7 @@ import { useMostRecentCompletedAnalysis } from '../../../LabwarePositionCheck/us import { PipetteWizardFlows } from '../../../PipetteWizardFlows' import { SetupFlexPipetteCalibrationItem } from '../SetupFlexPipetteCalibrationItem' import _uncastedModifiedSimpleV6Protocol from '../../hooks/__fixtures__/modifiedSimpleV6.json' -import { CompletedProtocolAnalysis } from '@opentrons/shared-data' +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' vi.mock('@opentrons/react-api-client') vi.mock('../../../PipetteWizardFlows') diff --git a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareOffsetLocation.test.tsx b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareOffsetLocation.test.tsx index b4b59c212f2..4b81bacb8cf 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareOffsetLocation.test.tsx +++ b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLabwareOffsetLocation.test.tsx @@ -2,7 +2,6 @@ import { when } from 'vitest-when' import { describe, it, beforeEach, vi, expect, afterEach } from 'vitest' import { - CompletedProtocolAnalysis, getLabwareDefURI, multiple_tipacks_with_tc, opentrons96PcrAdapterV1, @@ -14,6 +13,7 @@ import type { LoadedLabware, LoadedModule, LabwareDefinition2, + CompletedProtocolAnalysis, } from '@opentrons/shared-data' vi.mock('../getLabwareLocation') diff --git a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLocationInfoNames.test.ts b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLocationInfoNames.test.ts index 8ff543ffcf4..5f6a14090f0 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLocationInfoNames.test.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getLocationInfoNames.test.ts @@ -1,6 +1,7 @@ import { describe, it, vi, expect, beforeEach } from 'vitest' -import { getLabwareDisplayName, ModuleModel } from '@opentrons/shared-data' +import { getLabwareDisplayName } from '@opentrons/shared-data' import { getLocationInfoNames } from '../getLocationInfoNames' +import type { ModuleModel } from '@opentrons/shared-data' const ADAPTER_DISPLAY_NAME = 'Opentrons 96 Flat Bottom Adapter' const LABWARE_DISPLAY_NAME = 'Corning 24 Well Plate 3.4 mL Flat' diff --git a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getModuleInitialLoadInfo.test.ts b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getModuleInitialLoadInfo.test.ts index 25225a56ea2..c30e012cc7e 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getModuleInitialLoadInfo.test.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getModuleInitialLoadInfo.test.ts @@ -1,10 +1,10 @@ import { describe, it, expect } from 'vitest' -import { - transfer_settings, +import { transfer_settings } from '@opentrons/shared-data' +import { getModuleInitialLoadInfo } from '../getModuleInitialLoadInfo' +import type { + LoadModuleRunTimeCommand, CompletedProtocolAnalysis, } from '@opentrons/shared-data' -import { getModuleInitialLoadInfo } from '../getModuleInitialLoadInfo' -import type { LoadModuleRunTimeCommand } from '@opentrons/shared-data' const protocolWithMagTempTC = (transfer_settings as unknown) as CompletedProtocolAnalysis diff --git a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getProtocolModulesInfo.test.ts b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getProtocolModulesInfo.test.ts index 93528250b0d..fcacd157034 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getProtocolModulesInfo.test.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getProtocolModulesInfo.test.ts @@ -4,11 +4,13 @@ import { multiple_temp_modules, ot2DeckDefV5, getModuleDef2, +} from '@opentrons/shared-data' +import { getProtocolModulesInfo } from '../getProtocolModulesInfo' +import type { ProtocolAnalysisOutput, LoadedLabware, LoadedModule, } from '@opentrons/shared-data' -import { getProtocolModulesInfo } from '../getProtocolModulesInfo' const protocolWithMagTempTC = ({ ...transfer_settings, diff --git a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getSlotLabwareDefinition.test.ts b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getSlotLabwareDefinition.test.ts index 973f50f5d61..5ee37cced9c 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getSlotLabwareDefinition.test.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/__tests__/getSlotLabwareDefinition.test.ts @@ -1,7 +1,7 @@ import { describe, it, expect } from 'vitest' -import { RunTimeCommand } from '@opentrons/shared-data' import { mockDefinition } from '../../../../../redux/custom-labware/__fixtures__' import { getSlotLabwareDefinition } from '../getSlotLabwareDefinition' +import type { RunTimeCommand } from '@opentrons/shared-data' const LABWARE_ID = '60e8b050-3412-11eb-ad93-ed232a2337cf:opentrons/corning_24_wellplate_3.4ml_flat/1' diff --git a/app/src/organisms/Devices/ProtocolRun/utils/getLocationInfoNames.ts b/app/src/organisms/Devices/ProtocolRun/utils/getLocationInfoNames.ts index 594d5d37f97..c01d46259f5 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/getLocationInfoNames.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/getLocationInfoNames.ts @@ -1,5 +1,5 @@ -import { - getLabwareDisplayName, +import { getLabwareDisplayName } from '@opentrons/shared-data' +import type { LoadLabwareRunTimeCommand, RunTimeCommand, LoadModuleRunTimeCommand, diff --git a/app/src/organisms/Devices/ProtocolRun/utils/getModuleName.ts b/app/src/organisms/Devices/ProtocolRun/utils/getModuleName.ts index 249c90c1749..7703a1da9c4 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/getModuleName.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/getModuleName.ts @@ -1,4 +1,4 @@ -import { ModuleTypesThatRequireExtraAttention } from './getModuleTypesThatRequireExtraAttention' +import type { ModuleTypesThatRequireExtraAttention } from './getModuleTypesThatRequireExtraAttention' export const getModuleName = ( type: ModuleTypesThatRequireExtraAttention diff --git a/app/src/organisms/Devices/ProtocolRun/utils/getModuleTypesThatRequireExtraAttention.ts b/app/src/organisms/Devices/ProtocolRun/utils/getModuleTypesThatRequireExtraAttention.ts index b3f50c09514..4efd3db210c 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/getModuleTypesThatRequireExtraAttention.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/getModuleTypesThatRequireExtraAttention.ts @@ -1,4 +1,5 @@ -import { getModuleType, ModuleModel, ModuleType } from '@opentrons/shared-data' +import { getModuleType } from '@opentrons/shared-data' +import type { ModuleModel, ModuleType } from '@opentrons/shared-data' const MODULE_TYPES_THAT_REQUIRE_EXTRA_ATTENTION = [ 'magneticModuleType', diff --git a/app/src/organisms/Devices/ProtocolRun/utils/getSlotLabwareDefinition.ts b/app/src/organisms/Devices/ProtocolRun/utils/getSlotLabwareDefinition.ts index 2b2dec3019d..c52258c982f 100644 --- a/app/src/organisms/Devices/ProtocolRun/utils/getSlotLabwareDefinition.ts +++ b/app/src/organisms/Devices/ProtocolRun/utils/getSlotLabwareDefinition.ts @@ -1,4 +1,4 @@ -import { LabwareDefinition2, RunTimeCommand } from '@opentrons/shared-data' +import type { LabwareDefinition2, RunTimeCommand } from '@opentrons/shared-data' export function getSlotLabwareDefinition( labwareId: string, diff --git a/app/src/organisms/Devices/RobotSettings/ConnectNetwork/types.ts b/app/src/organisms/Devices/RobotSettings/ConnectNetwork/types.ts index 1f70fd48800..a864b81c8eb 100644 --- a/app/src/organisms/Devices/RobotSettings/ConnectNetwork/types.ts +++ b/app/src/organisms/Devices/RobotSettings/ConnectNetwork/types.ts @@ -5,7 +5,7 @@ import type { WifiKey, } from '../../../../redux/networking/types' -import { +import type { CONNECT, DISCONNECT, JOIN_OTHER, diff --git a/app/src/organisms/Devices/RobotSettings/UpdateBuildroot/ViewUpdateModal.tsx b/app/src/organisms/Devices/RobotSettings/UpdateBuildroot/ViewUpdateModal.tsx index ea8435ab8bb..37e4177db0d 100644 --- a/app/src/organisms/Devices/RobotSettings/UpdateBuildroot/ViewUpdateModal.tsx +++ b/app/src/organisms/Devices/RobotSettings/UpdateBuildroot/ViewUpdateModal.tsx @@ -10,7 +10,7 @@ import { getRobotUpdateAvailable, } from '../../../../redux/robot-update' import { getAvailableShellUpdate } from '../../../../redux/shell' -import { getModalPortalEl } from '../../../../App/portal' +import { getTopPortalEl } from '../../../../App/portal' import { UpdateAppModal } from '../../../../organisms/UpdateAppModal' import { MigrationWarningModal } from './MigrationWarningModal' import { UpdateRobotModal } from './UpdateRobotModal' @@ -60,7 +60,7 @@ export function ViewUpdateModal( if (availableAppUpdateVersion && showAppUpdateModal) return createPortal( setShowAppUpdateModal(false)} />, - getModalPortalEl() + getTopPortalEl() ) if (showMigrationWarning) { diff --git a/app/src/organisms/Devices/RobotSettings/__tests__/RobotSettingsAdvanced.test.tsx b/app/src/organisms/Devices/RobotSettings/__tests__/RobotSettingsAdvanced.test.tsx index b373fb0565a..825c9c32cde 100644 --- a/app/src/organisms/Devices/RobotSettings/__tests__/RobotSettingsAdvanced.test.tsx +++ b/app/src/organisms/Devices/RobotSettings/__tests__/RobotSettingsAdvanced.test.tsx @@ -26,7 +26,7 @@ import { } from '../AdvancedTab' import { RobotSettingsAdvanced } from '../RobotSettingsAdvanced' -import { ShellUpdateState } from '../../../../redux/shell/types' +import type { ShellUpdateState } from '../../../../redux/shell/types' import type * as ShellUpdate from '../../../../redux/shell/update' vi.mock('../../../../redux/robot-settings/selectors') diff --git a/app/src/organisms/Devices/__tests__/HistoricalProtocolRunOverflowMenu.test.tsx b/app/src/organisms/Devices/__tests__/HistoricalProtocolRunOverflowMenu.test.tsx index c436bc04960..8abe226ead3 100644 --- a/app/src/organisms/Devices/__tests__/HistoricalProtocolRunOverflowMenu.test.tsx +++ b/app/src/organisms/Devices/__tests__/HistoricalProtocolRunOverflowMenu.test.tsx @@ -5,10 +5,7 @@ import '@testing-library/jest-dom/vitest' import { renderWithProviders } from '../../../__testing-utils__' import { when } from 'vitest-when' import { MemoryRouter } from 'react-router-dom' -import { - useAllCommandsQuery, - useDeleteRunMutation, -} from '@opentrons/react-api-client' +import { useDeleteRunMutation } from '@opentrons/react-api-client' import { i18n } from '../../../i18n' import runRecord from '../../../organisms/RunDetails/__fixtures__/runRecord.json' import { useDownloadRunLog, useTrackProtocolRunEvent, useRobot } from '../hooks' @@ -21,6 +18,7 @@ import { mockConnectableRobot } from '../../../redux/discovery/__fixtures__' import { getRobotUpdateDisplayInfo } from '../../../redux/robot-update' import { useIsEstopNotDisengaged } from '../../../resources/devices/hooks/useIsEstopNotDisengaged' import { HistoricalProtocolRunOverflowMenu } from '../HistoricalProtocolRunOverflowMenu' +import { useNotifyAllCommandsQuery } from '../../../resources/runs' import type { UseQueryResult } from 'react-query' import type { CommandsData } from '@opentrons/api-client' @@ -32,6 +30,7 @@ vi.mock('../../RunTimeControl/hooks') vi.mock('../../../redux/analytics') vi.mock('../../../redux/config') vi.mock('../../../resources/devices/hooks/useIsEstopNotDisengaged') +vi.mock('../../../resources/runs') vi.mock('@opentrons/react-api-client') const render = ( @@ -82,12 +81,14 @@ describe('HistoricalProtocolRunOverflowMenu', () => { pause: () => {}, stop: () => {}, reset: () => {}, + resumeFromRecovery: () => {}, isPlayRunActionLoading: false, isPauseRunActionLoading: false, isStopRunActionLoading: false, isResetRunLoading: false, + isResumeRunFromRecoveryActionLoading: false, }) - when(useAllCommandsQuery) + when(useNotifyAllCommandsQuery) .calledWith( RUN_ID, { diff --git a/app/src/organisms/Devices/__tests__/ModuleInfo.test.tsx b/app/src/organisms/Devices/__tests__/ModuleInfo.test.tsx index 3fb5e98d2f6..c1d494690e8 100644 --- a/app/src/organisms/Devices/__tests__/ModuleInfo.test.tsx +++ b/app/src/organisms/Devices/__tests__/ModuleInfo.test.tsx @@ -4,10 +4,10 @@ import { describe, it, vi, beforeEach, expect } from 'vitest' import '@testing-library/jest-dom/vitest' import { renderWithProviders } from '../../../__testing-utils__' import { when } from 'vitest-when' -import { ModuleModel, ModuleType } from '@opentrons/shared-data' import { i18n } from '../../../i18n' import { ModuleInfo } from '../ModuleInfo' import { useRunHasStarted } from '../hooks' +import type { ModuleModel, ModuleType } from '@opentrons/shared-data' vi.mock('../hooks') diff --git a/app/src/organisms/Devices/__tests__/RecentProtocolRuns.test.tsx b/app/src/organisms/Devices/__tests__/RecentProtocolRuns.test.tsx index aa4693135ed..92557e96570 100644 --- a/app/src/organisms/Devices/__tests__/RecentProtocolRuns.test.tsx +++ b/app/src/organisms/Devices/__tests__/RecentProtocolRuns.test.tsx @@ -1,5 +1,4 @@ import * as React from 'react' -import { UseQueryResult } from 'react-query' import { screen } from '@testing-library/react' import { describe, it, vi, beforeEach } from 'vitest' import '@testing-library/jest-dom/vitest' @@ -10,6 +9,7 @@ import { useIsRobotViewable, useRunStatuses } from '../hooks' import { RecentProtocolRuns } from '../RecentProtocolRuns' import { HistoricalProtocolRun } from '../HistoricalProtocolRun' +import type { UseQueryResult } from 'react-query' import type { Runs } from '@opentrons/api-client' import type { AxiosError } from 'axios' diff --git a/app/src/organisms/Devices/constants.ts b/app/src/organisms/Devices/constants.ts index a3913e104e2..f6c8eece866 100644 --- a/app/src/organisms/Devices/constants.ts +++ b/app/src/organisms/Devices/constants.ts @@ -1,8 +1,5 @@ -import { - getPipetteNameSpecs, - LabwareDefinition2, - PipetteName, -} from '@opentrons/shared-data' +import { getPipetteNameSpecs } from '@opentrons/shared-data' +import type { LabwareDefinition2, PipetteName } from '@opentrons/shared-data' import { getLatestLabwareDef } from '../../assets/labware/getLabware' export const RUN_LOG_WINDOW_SIZE = 60 // number of command items rendered at a time diff --git a/app/src/organisms/Devices/getModulePrepCommands.ts b/app/src/organisms/Devices/getModulePrepCommands.ts index dcb320417b2..cb55081533e 100644 --- a/app/src/organisms/Devices/getModulePrepCommands.ts +++ b/app/src/organisms/Devices/getModulePrepCommands.ts @@ -3,7 +3,6 @@ import { HEATERSHAKER_MODULE_TYPE, TEMPERATURE_MODULE_TYPE, } from '@opentrons/shared-data' -import { AttachedModule } from '../../redux/modules/types' import type { HeaterShakerDeactivateHeaterCreateCommand, HeaterShakerDeactivateShakerCreateCommand, @@ -15,6 +14,7 @@ import type { HeaterShakerCloseLatchCreateCommand, TCCloseLidCreateCommand, } from '@opentrons/shared-data' +import type { AttachedModule } from '../../redux/modules/types' export type ModulePrepCommandsType = | TemperatureModuleDeactivateCreateCommand diff --git a/app/src/organisms/Devices/hooks/__tests__/useAttachedModules.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useAttachedModules.test.tsx index 222de6739eb..49fba0eeaa0 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useAttachedModules.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useAttachedModules.test.tsx @@ -1,10 +1,10 @@ import { vi, it, expect, describe } from 'vitest' -import { UseQueryResult } from 'react-query' import { renderHook } from '@testing-library/react' import { mockModulesResponse } from '@opentrons/api-client' import { useModulesQuery } from '@opentrons/react-api-client' import { useAttachedModules } from '..' +import type { UseQueryResult } from 'react-query' import type { Modules } from '@opentrons/api-client' vi.mock('@opentrons/react-api-client') diff --git a/app/src/organisms/Devices/hooks/__tests__/useAttachedPipetteCalibrations.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useAttachedPipetteCalibrations.test.tsx index 4681855f02f..45c1ff6487f 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useAttachedPipetteCalibrations.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useAttachedPipetteCalibrations.test.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { when } from 'vitest-when' import { vi, it, expect, describe, beforeEach } from 'vitest' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { QueryClient, QueryClientProvider } from 'react-query' import { @@ -21,6 +21,7 @@ import { } from '../../../../redux/calibration/tip-length/__fixtures__' import { useAttachedPipetteCalibrations } from '..' +import type { Store } from 'redux' import type { State } from '../../../../redux/types' vi.mock('@opentrons/react-api-client') diff --git a/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettes.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettes.test.tsx index 1617e15b661..35dbd023839 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettes.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettes.test.tsx @@ -1,7 +1,5 @@ -import * as React from 'react' import { vi, it, expect, describe, beforeEach } from 'vitest' import { when } from 'vitest-when' -import { UseQueryResult } from 'react-query' import { renderHook } from '@testing-library/react' import { usePipettesQuery } from '@opentrons/react-api-client' import { getPipetteModelSpecs } from '@opentrons/shared-data' @@ -10,6 +8,8 @@ import { pipetteResponseFixtureLeft, pipetteResponseFixtureRight, } from '@opentrons/api-client' +import type * as React from 'react' +import type { UseQueryResult } from 'react-query' import type { FetchPipettesResponseBody } from '@opentrons/api-client' import type { PipetteModelSpecs } from '@opentrons/shared-data' diff --git a/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettesFromInstrumentsQuery.test.ts b/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettesFromInstrumentsQuery.test.ts index fbb72456a56..535a394fbe9 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettesFromInstrumentsQuery.test.ts +++ b/app/src/organisms/Devices/hooks/__tests__/useAttachedPipettesFromInstrumentsQuery.test.ts @@ -1,4 +1,3 @@ -import * as React from 'react' import { vi, it, expect, describe, beforeEach } from 'vitest' import { renderHook } from '@testing-library/react' import { useInstrumentsQuery } from '@opentrons/react-api-client' @@ -8,6 +7,7 @@ import { } from '@opentrons/api-client' import { useIsOEMMode } from '../../../../resources/robot-settings/hooks' import { useAttachedPipettesFromInstrumentsQuery } from '..' +import type * as React from 'react' vi.mock('@opentrons/react-api-client') vi.mock('../../../../resources/robot-settings/hooks') diff --git a/app/src/organisms/Devices/hooks/__tests__/useDeckCalibrationStatus.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useDeckCalibrationStatus.test.tsx index 25d8dc74ca5..d409b0ba3cd 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useDeckCalibrationStatus.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useDeckCalibrationStatus.test.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { QueryClient, QueryClientProvider } from 'react-query' import { useCalibrationStatusQuery } from '@opentrons/react-api-client' @@ -12,6 +12,7 @@ import { getDiscoverableRobotByName } from '../../../../redux/discovery' import { useDeckCalibrationStatus } from '..' import { mockConnectableRobot } from '../../../../redux/discovery/__fixtures__' +import type { Store } from 'redux' vi.mock('@opentrons/react-api-client') vi.mock('../../../../redux/calibration') diff --git a/app/src/organisms/Devices/hooks/__tests__/useIsFlex.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useIsFlex.test.tsx index 629f58b7dea..9461cae9c22 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useIsFlex.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useIsFlex.test.tsx @@ -2,13 +2,14 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { QueryClient, QueryClientProvider } from 'react-query' import { getRobotModelByName } from '../../../../redux/discovery' import { useIsFlex } from '..' +import type { Store } from 'redux' vi.mock('../../../../redux/discovery/selectors') diff --git a/app/src/organisms/Devices/hooks/__tests__/useIsLegacySessionInProgress.test.ts b/app/src/organisms/Devices/hooks/__tests__/useIsLegacySessionInProgress.test.ts index 115c213dff4..038773d9d84 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useIsLegacySessionInProgress.test.ts +++ b/app/src/organisms/Devices/hooks/__tests__/useIsLegacySessionInProgress.test.ts @@ -1,8 +1,8 @@ -import { UseQueryResult } from 'react-query' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { useAllSessionsQuery } from '@opentrons/react-api-client' import { useIsLegacySessionInProgress } from '../useIsLegacySessionInProgress' +import type { UseQueryResult } from 'react-query' import type { Sessions } from '@opentrons/api-client' vi.mock('@opentrons/react-api-client') diff --git a/app/src/organisms/Devices/hooks/__tests__/useIsRobotBusy.test.ts b/app/src/organisms/Devices/hooks/__tests__/useIsRobotBusy.test.ts index 457c0a75287..1a763143e3a 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useIsRobotBusy.test.ts +++ b/app/src/organisms/Devices/hooks/__tests__/useIsRobotBusy.test.ts @@ -1,5 +1,3 @@ -import { UseQueryResult } from 'react-query' - import { useAllSessionsQuery, useCurrentAllSubsystemUpdatesQuery, @@ -17,6 +15,7 @@ import { useIsFlex } from '../useIsFlex' import { useNotifyCurrentMaintenanceRun } from '../../../../resources/maintenance_runs' import { useNotifyAllRunsQuery } from '../../../../resources/runs' +import type { UseQueryResult } from 'react-query' import type { Sessions, Runs } from '@opentrons/api-client' import type { AxiosError } from 'axios' diff --git a/app/src/organisms/Devices/hooks/__tests__/useIsRobotViewable.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useIsRobotViewable.test.tsx index 96ed5c3f92b..4ed49e831e2 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useIsRobotViewable.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useIsRobotViewable.test.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { QueryClient, QueryClientProvider } from 'react-query' @@ -12,8 +12,8 @@ import { mockReachableRobot, mockUnreachableRobot, } from '../../../../redux/discovery/__fixtures__' - import { useIsRobotViewable } from '..' +import type { Store } from 'redux' vi.mock('../../../../redux/discovery') diff --git a/app/src/organisms/Devices/hooks/__tests__/useLights.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useLights.test.tsx index 88b6b3c423e..5f45fbecb23 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useLights.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useLights.test.tsx @@ -1,7 +1,7 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { QueryClient, QueryClientProvider } from 'react-query' import { @@ -11,6 +11,7 @@ import { import { useLights } from '..' +import type { Store } from 'redux' import type { Mock } from 'vitest' vi.mock('@opentrons/react-api-client') diff --git a/app/src/organisms/Devices/hooks/__tests__/usePipetteOffsetCalibration.test.tsx b/app/src/organisms/Devices/hooks/__tests__/usePipetteOffsetCalibration.test.tsx index 6cdf77cdb19..655b06532b8 100644 --- a/app/src/organisms/Devices/hooks/__tests__/usePipetteOffsetCalibration.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/usePipetteOffsetCalibration.test.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { QueryClient, QueryClientProvider } from 'react-query' @@ -15,9 +15,10 @@ import { useDispatchApiRequest } from '../../../../redux/robot-api' import { useRobot } from '../useRobot' import { usePipetteOffsetCalibration } from '..' +import type { Store } from 'redux' import type { DiscoveredRobot } from '../../../../redux/discovery/types' import type { DispatchApiRequestType } from '../../../../redux/robot-api' -import { AttachedPipette, Mount } from '../../../../redux/pipettes/types' +import type { AttachedPipette, Mount } from '../../../../redux/pipettes/types' vi.mock('../../../../redux/calibration') vi.mock('../../../../redux/robot-api') diff --git a/app/src/organisms/Devices/hooks/__tests__/useProtocolAnalysisErrors.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useProtocolAnalysisErrors.test.tsx index a327e420b05..20e90f86f75 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useProtocolAnalysisErrors.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useProtocolAnalysisErrors.test.tsx @@ -1,6 +1,5 @@ import { vi, it, expect, describe, beforeEach } from 'vitest' import { when } from 'vitest-when' -import { UseQueryResult } from 'react-query' import { renderHook } from '@testing-library/react' import { @@ -13,6 +12,7 @@ import { useNotifyRunQuery } from '../../../../resources/runs' import { RUN_ID_2 } from '../../../RunTimeControl/__fixtures__' +import type { UseQueryResult } from 'react-query' import type { Run, Protocol } from '@opentrons/api-client' import type { CompletedProtocolAnalysis, diff --git a/app/src/organisms/Devices/hooks/__tests__/useProtocolDetailsForRun.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useProtocolDetailsForRun.test.tsx index 7c0ad0363a9..45c2546efd0 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useProtocolDetailsForRun.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useProtocolDetailsForRun.test.tsx @@ -1,23 +1,18 @@ import { vi, it, expect, describe, beforeEach } from 'vitest' import { when } from 'vitest-when' -import { UseQueryResult } from 'react-query' import { renderHook } from '@testing-library/react' - +import { OT2_ROBOT_TYPE } from '@opentrons/shared-data' import { useProtocolAnalysisAsDocumentQuery, useProtocolQuery, } from '@opentrons/react-api-client' - import { useProtocolDetailsForRun } from '..' import { useNotifyRunQuery } from '../../../../resources/runs' - import { RUN_ID_2 } from '../../../RunTimeControl/__fixtures__' import type { Protocol, Run } from '@opentrons/api-client' -import { - CompletedProtocolAnalysis, - OT2_ROBOT_TYPE, -} from '@opentrons/shared-data' +import type { UseQueryResult } from 'react-query' +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' vi.mock('@opentrons/react-api-client') vi.mock('../../../../resources/runs') diff --git a/app/src/organisms/Devices/hooks/__tests__/useProtocolRunAnalyticsData.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useProtocolRunAnalyticsData.test.tsx index f256fb126b7..04305b8ed31 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useProtocolRunAnalyticsData.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useProtocolRunAnalyticsData.test.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { renderHook, waitFor } from '@testing-library/react' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { Provider } from 'react-redux' import { QueryClient, QueryClientProvider } from 'react-query' @@ -14,6 +14,7 @@ import { useProtocolMetadata } from '../useProtocolMetadata' import { useRunTimestamps } from '../../../RunTimeControl/hooks' import { formatInterval } from '../../../RunTimeControl/utils' import { mockConnectableRobot } from '../../../../redux/discovery/__fixtures__' +import type { Store } from 'redux' vi.mock('../../../../redux/analytics/hash') vi.mock('../../../../redux/protocol-storage') diff --git a/app/src/organisms/Devices/hooks/__tests__/useRobotAnalyticsData.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useRobotAnalyticsData.test.tsx index 1b42a08befd..29463fe55bc 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useRobotAnalyticsData.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useRobotAnalyticsData.test.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { renderHook } from '@testing-library/react' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { Provider } from 'react-redux' import { QueryClient, QueryClientProvider } from 'react-query' @@ -18,6 +18,7 @@ import { getRobotSerialNumber, } from '../../../../redux/discovery' +import type { Store } from 'redux' import type { DiscoveredRobot } from '../../../../redux/discovery/types' import type { AttachedPipettesByMount } from '../../../../redux/pipettes/types' diff --git a/app/src/organisms/Devices/hooks/__tests__/useRunPipetteInfoByMount.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useRunPipetteInfoByMount.test.tsx index b410220425d..1235869ca0b 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useRunPipetteInfoByMount.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useRunPipetteInfoByMount.test.tsx @@ -5,7 +5,6 @@ import { when } from 'vitest-when' import { getPipetteNameSpecs, getLoadedLabwareDefinitionsByUri, - RunTimeCommand, opentrons96Tiprack10UlV1Uncasted as _tiprack10ul, } from '@opentrons/shared-data' import { useAllTipLengthCalibrationsQuery } from '@opentrons/react-api-client' @@ -140,7 +139,7 @@ describe('useRunPipetteInfoByMount hook', () => { } as SharedData.PipetteNameSpecs) when(vi.mocked(getLoadedLabwareDefinitionsByUri)) .calledWith( - _uncastedModifiedSimpleV6Protocol.commands as RunTimeCommand[] + _uncastedModifiedSimpleV6Protocol.commands as SharedData.RunTimeCommand[] ) .thenReturn(_uncastedModifiedSimpleV6Protocol.labwareDefinitions as {}) }) diff --git a/app/src/organisms/Devices/hooks/__tests__/useRunStartedOrLegacySessionInProgress.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useRunStartedOrLegacySessionInProgress.test.tsx index 96acc785f07..2354c31c6a8 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useRunStartedOrLegacySessionInProgress.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useRunStartedOrLegacySessionInProgress.test.tsx @@ -1,4 +1,3 @@ -import { UseQueryResult } from 'react-query' import { useAllSessionsQuery } from '@opentrons/react-api-client' import { RUN_STATUS_IDLE, RUN_STATUS_RUNNING } from '@opentrons/api-client' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' @@ -7,6 +6,7 @@ import { useCurrentRunId } from '../../../ProtocolUpload/hooks' import { useRunStatus } from '../../../RunTimeControl/hooks' import { useRunStartedOrLegacySessionInProgress } from '..' +import type { UseQueryResult } from 'react-query' import type { Sessions } from '@opentrons/api-client' vi.mock('@opentrons/react-api-client') diff --git a/app/src/organisms/Devices/hooks/__tests__/useSyncRobotClock.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useSyncRobotClock.test.tsx index 427535824ee..37db5d9e752 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useSyncRobotClock.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useSyncRobotClock.test.tsx @@ -1,12 +1,13 @@ import * as React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { QueryClient, QueryClientProvider } from 'react-query' import { syncSystemTime } from '../../../../redux/robot-admin' import { useSyncRobotClock } from '..' +import type { Store } from 'redux' vi.mock('../../../../redux/discovery') diff --git a/app/src/organisms/Devices/hooks/__tests__/useTrackCreateProtocolRunEvent.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useTrackCreateProtocolRunEvent.test.tsx index b7e53546cfb..0be697813a8 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useTrackCreateProtocolRunEvent.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useTrackCreateProtocolRunEvent.test.tsx @@ -1,5 +1,5 @@ import * as React from 'react' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { Provider } from 'react-redux' import { QueryClient, QueryClientProvider } from 'react-query' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' @@ -13,6 +13,7 @@ import { useTrackEvent } from '../../../../redux/analytics' import { storedProtocolData } from '../../../../redux/protocol-storage/__fixtures__' import type { Mock } from 'vitest' +import type { Store } from 'redux' import type { ProtocolAnalyticsData } from '../../../../redux/analytics/types' vi.mock('../../hooks') diff --git a/app/src/organisms/Devices/hooks/__tests__/useTrackProtocolRunEvent.test.tsx b/app/src/organisms/Devices/hooks/__tests__/useTrackProtocolRunEvent.test.tsx index 4642cf31557..99ff16d05f7 100644 --- a/app/src/organisms/Devices/hooks/__tests__/useTrackProtocolRunEvent.test.tsx +++ b/app/src/organisms/Devices/hooks/__tests__/useTrackProtocolRunEvent.test.tsx @@ -1,5 +1,5 @@ import * as React from 'react' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { Provider } from 'react-redux' import { QueryClient, QueryClientProvider } from 'react-query' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' @@ -15,6 +15,7 @@ import { import { mockConnectableRobot } from '../../../../redux/discovery/__fixtures__' import { useRobot } from '../useRobot' +import type { Store } from 'redux' import type { Mock } from 'vitest' vi.mock('../useRobot') diff --git a/app/src/organisms/Devices/hooks/useCalibrationTaskList.ts b/app/src/organisms/Devices/hooks/useCalibrationTaskList.ts index d96bbf262b7..a391b97cd40 100644 --- a/app/src/organisms/Devices/hooks/useCalibrationTaskList.ts +++ b/app/src/organisms/Devices/hooks/useCalibrationTaskList.ts @@ -5,12 +5,14 @@ import { useCalibrationStatusQuery, useDeleteCalibrationMutation, } from '@opentrons/react-api-client' +import { getLabwareDefURI } from '@opentrons/shared-data' import { useAttachedPipettes } from '.' import { getDefaultTiprackDefForPipetteName } from '../constants' import { DECK_CAL_STATUS_OK } from '../../../redux/calibration/constants' import { formatTimestamp } from '../utils' +import type { PipetteName } from '@opentrons/shared-data' import type { SubTaskProps, TaskListProps, @@ -20,7 +22,6 @@ import type { AttachedPipette } from '../../../redux/pipettes/types' import type { DashboardCalOffsetInvoker } from '../../../pages/Devices/CalibrationDashboard/hooks/useDashboardCalibratePipOffset' import type { DashboardCalTipLengthInvoker } from '../../../pages/Devices/CalibrationDashboard/hooks/useDashboardCalibrateTipLength' import type { DashboardCalDeckInvoker } from '../../../pages/Devices/CalibrationDashboard/hooks/useDashboardCalibrateDeck' -import { getLabwareDefURI, PipetteName } from '@opentrons/shared-data' const CALIBRATION_DATA_POLL_MS = 5000 diff --git a/app/src/organisms/Devices/hooks/useDownloadRunLog.ts b/app/src/organisms/Devices/hooks/useDownloadRunLog.ts index ac825faa9b5..76d76f04dce 100644 --- a/app/src/organisms/Devices/hooks/useDownloadRunLog.ts +++ b/app/src/organisms/Devices/hooks/useDownloadRunLog.ts @@ -1,18 +1,12 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' - -import { - HostConfig, - getRun, - getCommands, - getProtocol, -} from '@opentrons/api-client' -import { IconProps } from '@opentrons/components' +import { getRun, getCommands, getProtocol } from '@opentrons/api-client' import { useHost } from '@opentrons/react-api-client' - import { ERROR_TOAST, INFO_TOAST } from '../../../atoms/Toast' import { useToaster } from '../../../organisms/ToasterOven' import { downloadFile } from '../utils' +import type { IconProps } from '@opentrons/components' +import type { HostConfig } from '@opentrons/api-client' export function useDownloadRunLog( robotName: string, diff --git a/app/src/organisms/Devices/hooks/useLastRunCommand.ts b/app/src/organisms/Devices/hooks/useLastRunCommand.ts index 347532abd36..b0840b888ae 100644 --- a/app/src/organisms/Devices/hooks/useLastRunCommand.ts +++ b/app/src/organisms/Devices/hooks/useLastRunCommand.ts @@ -1,5 +1,3 @@ -import { useAllCommandsQuery } from '@opentrons/react-api-client' -import { useRunStatus } from '../../RunTimeControl/hooks' import { RUN_STATUS_AWAITING_RECOVERY, RUN_STATUS_BLOCKED_BY_OPEN_DOOR, @@ -11,6 +9,9 @@ import { RUN_STATUS_STOP_REQUESTED, } from '@opentrons/api-client' +import { useNotifyAllCommandsQuery } from '../../../resources/runs' +import { useRunStatus } from '../../RunTimeControl/hooks' + import type { UseQueryOptions } from 'react-query' import type { CommandsData, RunCommandSummary } from '@opentrons/api-client' @@ -31,7 +32,7 @@ export function useLastRunCommand( options: UseQueryOptions = {} ): RunCommandSummary | null { const runStatus = useRunStatus(runId) - const { data: commandsData } = useAllCommandsQuery( + const { data: commandsData } = useNotifyAllCommandsQuery( runId, { cursor: null, pageLength: 1 }, { diff --git a/app/src/organisms/Devices/hooks/useModuleCalibrationStatus.ts b/app/src/organisms/Devices/hooks/useModuleCalibrationStatus.ts index e8bddaaeadb..941a5b261b4 100644 --- a/app/src/organisms/Devices/hooks/useModuleCalibrationStatus.ts +++ b/app/src/organisms/Devices/hooks/useModuleCalibrationStatus.ts @@ -1,8 +1,8 @@ import omitBy from 'lodash/omitBy' import { MAGNETIC_BLOCK_TYPE } from '@opentrons/shared-data' import { useModuleRenderInfoForProtocolById } from './useModuleRenderInfoForProtocolById' -import { ProtocolCalibrationStatus } from './useRunCalibrationStatus' import { useIsFlex } from './useIsFlex' +import type { ProtocolCalibrationStatus } from './useRunCalibrationStatus' export function useModuleCalibrationStatus( robotName: string, diff --git a/app/src/organisms/Devices/hooks/useProtocolAnalysisErrors.ts b/app/src/organisms/Devices/hooks/useProtocolAnalysisErrors.ts index 1c86de6ecf5..ad4633b3134 100644 --- a/app/src/organisms/Devices/hooks/useProtocolAnalysisErrors.ts +++ b/app/src/organisms/Devices/hooks/useProtocolAnalysisErrors.ts @@ -6,7 +6,7 @@ import { import { useNotifyRunQuery } from '../../../resources/runs' -import { AnalysisError } from '@opentrons/shared-data' +import type { AnalysisError } from '@opentrons/shared-data' export interface ProtocolAnalysisErrors { analysisErrors: AnalysisError[] | null diff --git a/app/src/organisms/Devices/hooks/useProtocolRunAnalyticsData.ts b/app/src/organisms/Devices/hooks/useProtocolRunAnalyticsData.ts index 538c10c6855..31e4df921b6 100644 --- a/app/src/organisms/Devices/hooks/useProtocolRunAnalyticsData.ts +++ b/app/src/organisms/Devices/hooks/useProtocolRunAnalyticsData.ts @@ -9,11 +9,11 @@ import { useRunTimestamps } from '../../RunTimeControl/hooks' import { formatInterval } from '../../RunTimeControl/utils' import { EMPTY_TIMESTAMP } from '../constants' +import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' import type { ProtocolAnalyticsData } from '../../../redux/analytics/types' import type { StoredProtocolData } from '../../../redux/protocol-storage/types' -import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' import type { State } from '../../../redux/types' -import { DiscoveredRobot } from '../../../redux/discovery/types' +import type { DiscoveredRobot } from '../../../redux/discovery/types' export const parseProtocolRunAnalyticsData = ( protocolAnalysis: ProtocolAnalysisOutput | null, diff --git a/app/src/organisms/Devices/hooks/useRunCalibrationStatus.ts b/app/src/organisms/Devices/hooks/useRunCalibrationStatus.ts index 27f16c107fe..8bed099c5df 100644 --- a/app/src/organisms/Devices/hooks/useRunCalibrationStatus.ts +++ b/app/src/organisms/Devices/hooks/useRunCalibrationStatus.ts @@ -5,16 +5,20 @@ import { useRunPipetteInfoByMount, useStoredProtocolAnalysis, } from '.' -import { DeckCalibrationStatus } from '../../../redux/calibration/api-types' import { useMostRecentCompletedAnalysis } from '../../LabwarePositionCheck/useMostRecentCompletedAnalysis' -import { +import { isGripperInCommands } from '../../../resources/protocols/utils' +import { useInstrumentsQuery } from '@opentrons/react-api-client' +import type { + GripperData, + Instruments, + PipetteData, +} from '@opentrons/api-client' +import type { CompletedProtocolAnalysis, LoadedPipette, ProtocolAnalysisOutput, } from '@opentrons/shared-data' -import { isGripperInCommands } from '../../../resources/protocols/utils' -import { useInstrumentsQuery } from '@opentrons/react-api-client' -import { GripperData, Instruments, PipetteData } from '@opentrons/api-client' +import type { DeckCalibrationStatus } from '../../../redux/calibration/api-types' export interface ProtocolCalibrationStatus { complete: boolean diff --git a/app/src/organisms/DropTipWizard/JogToPosition.tsx b/app/src/organisms/DropTipWizard/JogToPosition.tsx index bad08fb6705..f7c33c8eb3b 100644 --- a/app/src/organisms/DropTipWizard/JogToPosition.tsx +++ b/app/src/organisms/DropTipWizard/JogToPosition.tsx @@ -22,10 +22,11 @@ import { TYPOGRAPHY, } from '@opentrons/components' // import { NeedHelpLink } from '../CalibrationPanels' +import { JogControls } from '../../molecules/JogControls' import { SmallButton } from '../../atoms/buttons' -import { Jog, JogControls } from '../../molecules/JogControls' import { InProgressModal } from '../../molecules/InProgressModal/InProgressModal' import { SimpleWizardBody } from '../../molecules/SimpleWizardBody' +import type { Jog } from '../../molecules/JogControls' // TODO: get help link article URL // const NEED_HELP_URL = '' diff --git a/app/src/organisms/DropTipWizard/__tests__/TipsAttachedModal.test.tsx b/app/src/organisms/DropTipWizard/__tests__/TipsAttachedModal.test.tsx index 34540b1c516..dfd82df19c0 100644 --- a/app/src/organisms/DropTipWizard/__tests__/TipsAttachedModal.test.tsx +++ b/app/src/organisms/DropTipWizard/__tests__/TipsAttachedModal.test.tsx @@ -10,13 +10,12 @@ import { handleTipsAttachedModal } from '../TipsAttachedModal' import { LEFT } from '@opentrons/shared-data' import { mockPipetteInfo } from '../../../redux/pipettes/__fixtures__' import { ROBOT_MODEL_OT3 } from '../../../redux/discovery' -import { useNotifyCurrentMaintenanceRun } from '../../../resources/maintenance_runs' +import { useCloseCurrentRun } from '../../ProtocolUpload/hooks' import type { PipetteModelSpecs } from '@opentrons/shared-data' import type { HostConfig } from '@opentrons/api-client' -vi.mock('../../../resources/maintenance_runs') -vi.mock('../../../resources/useNotifyService') +vi.mock('../../ProtocolUpload/hooks') const MOCK_ACTUAL_PIPETTE = { ...mockPipetteInfo.pipetteSpecs, @@ -53,12 +52,8 @@ const render = (pipetteSpecs: PipetteModelSpecs) => { describe('TipsAttachedModal', () => { beforeEach(() => { - vi.mocked(useNotifyCurrentMaintenanceRun).mockReturnValue({ - data: { - data: { - id: 'test', - }, - }, + vi.mocked(useCloseCurrentRun).mockReturnValue({ + closeCurrentRun: vi.fn(), } as any) }) diff --git a/app/src/organisms/DropTipWizard/types.ts b/app/src/organisms/DropTipWizard/types.ts index e2fd26180d4..f7f6eb138d5 100644 --- a/app/src/organisms/DropTipWizard/types.ts +++ b/app/src/organisms/DropTipWizard/types.ts @@ -1,4 +1,4 @@ -import { +import type { BLOWOUT_SUCCESS, CHOOSE_BLOWOUT_LOCATION, CHOOSE_DROP_TIP_LOCATION, diff --git a/app/src/organisms/DropTipWizard/utils.tsx b/app/src/organisms/DropTipWizard/utils.tsx index d0a38fc768b..e0d094f06ac 100644 --- a/app/src/organisms/DropTipWizard/utils.tsx +++ b/app/src/organisms/DropTipWizard/utils.tsx @@ -6,7 +6,7 @@ import { AlertPrimaryButton, SPACING } from '@opentrons/components' import { DROP_TIP_SPECIAL_ERROR_TYPES } from './constants' import { SmallButton } from '../../atoms/buttons' -import type { RunCommandError } from '@opentrons/api-client' +import type { RunCommandError } from '@opentrons/shared-data' import type { useChainMaintenanceCommands } from '../../resources/runs' export interface ErrorDetails { diff --git a/app/src/organisms/ErrorRecoveryFlows/BeforeBeginning.tsx b/app/src/organisms/ErrorRecoveryFlows/BeforeBeginning.tsx new file mode 100644 index 00000000000..02c8ecc4ba7 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/BeforeBeginning.tsx @@ -0,0 +1,60 @@ +import * as React from 'react' +import { Trans, useTranslation } from 'react-i18next' + +import { + DIRECTION_COLUMN, + Flex, + JUSTIFY_SPACE_BETWEEN, + SPACING, + JUSTIFY_CENTER, + StyledText, +} from '@opentrons/components' + +import { SmallButton } from '../../atoms/buttons' +import { + NON_SANCTIONED_RECOVERY_COLOR_STYLE_PRIMARY, + BODY_TEXT_STYLE, + ODD_SECTION_TITLE_STYLE, +} from './constants' + +import type { RecoveryContentProps } from './types' + +export function BeforeBeginning({ + isOnDevice, + routeUpdateActions, +}: RecoveryContentProps): JSX.Element | null { + const { t } = useTranslation('error_recovery') + const { proceedNextStep } = routeUpdateActions + + if (isOnDevice) { + return ( + + + + {t('before_you_begin')} + + }} + /> + + + + ) + } else { + return null + } +} diff --git a/app/src/organisms/ErrorRecoveryFlows/ErrorRecoveryHeader.tsx b/app/src/organisms/ErrorRecoveryFlows/ErrorRecoveryHeader.tsx new file mode 100644 index 00000000000..0c501149b82 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/ErrorRecoveryHeader.tsx @@ -0,0 +1,90 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { css } from 'styled-components' + +import { + Box, + DIRECTION_ROW, + BORDERS, + ALIGN_CENTER, + Flex, + JUSTIFY_SPACE_BETWEEN, + TYPOGRAPHY, + COLORS, + SPACING, + RESPONSIVENESS, + StyledText, + Icon, +} from '@opentrons/components' + +import { useErrorName } from './utils' +import { NON_DESIGN_SANCTIONED_COLOR_1 } from './constants' + +import type { ErrorKind } from './types' + +interface ErrorRecoveryHeaderProps { + errorKind: ErrorKind +} +export function ErrorRecoveryHeader({ + errorKind, +}: ErrorRecoveryHeaderProps): JSX.Element { + const { t } = useTranslation('error_recovery') + const errorName = useErrorName(errorKind) + + return ( + + + + {t('recovery_mode')} + + + {errorName} + + + + + ) +} + +function AlertHeaderIcon(): JSX.Element { + return ( + + ) +} + +const BOX_STYLE = css` + background-color: ${NON_DESIGN_SANCTIONED_COLOR_1}; + @media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} { + border-radius: ${BORDERS.borderRadius12} ${BORDERS.borderRadius12} 0 0; + } +` +const HEADER_CONTAINER_STYLE = css` + flex-direction: ${DIRECTION_ROW}; + justify-content: ${JUSTIFY_SPACE_BETWEEN}; + padding: ${SPACING.spacing16} ${SPACING.spacing32}; + @media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} { + padding: 1.75rem ${SPACING.spacing32}; + } +` +const HEADER_TEXT_STYLE = css` + ${TYPOGRAPHY.pSemiBold} + color: ${COLORS.white}; + cursor: default; + + @media ${RESPONSIVENESS.touchscreenMediaQuerySpecs} { + font-size: ${TYPOGRAPHY.fontSize22}; + font-weight: ${TYPOGRAPHY.fontWeightBold}; + line-height: ${TYPOGRAPHY.lineHeight28}; + } +` diff --git a/app/src/organisms/ErrorRecoveryFlows/ErrorRecoveryWizard.tsx b/app/src/organisms/ErrorRecoveryFlows/ErrorRecoveryWizard.tsx new file mode 100644 index 00000000000..3a721903985 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/ErrorRecoveryWizard.tsx @@ -0,0 +1,169 @@ +import * as React from 'react' +import { createPortal } from 'react-dom' +import { useSelector } from 'react-redux' + +import { + BORDERS, + COLORS, + DIRECTION_COLUMN, + Flex, + POSITION_ABSOLUTE, +} from '@opentrons/components' + +import { getIsOnDevice } from '../../redux/config' +import { getTopPortalEl } from '../../App/portal' +import { BeforeBeginning } from './BeforeBeginning' +import { SelectRecoveryOption, RetryStep, CancelRun } from './RecoveryOptions' +import { ErrorRecoveryHeader } from './ErrorRecoveryHeader' +import { RecoveryInProgress } from './RecoveryInProgress' +import { getErrorKind } from './utils' +import { RECOVERY_MAP } from './constants' + +import type { FailedCommand, IRecoveryMap, RecoveryContentProps } from './types' +import type { + useRouteUpdateActions, + UseRouteUpdateActionsResult, +} from './utils' +import type { + useRecoveryCommands, + UseRecoveryCommandsResult, +} from './useRecoveryCommands' + +interface UseERWizardResult { + hasLaunchedRecovery: boolean + showERWizard: boolean + toggleERWizard: (hasLaunchedER: boolean) => Promise +} + +export function useERWizard(): UseERWizardResult { + const [showERWizard, setShowERWizard] = React.useState(false) + // Because RunPausedSplash has access to some ER Wiz routes but is not a part of the ER wizard, the splash screen + // is the "home" route as opposed to SelectRecoveryOption (accessed by pressing "go back" or "continue" enough times) + // when recovery mode has not been launched. + const [hasLaunchedRecovery, setHasLaunchedRecovery] = React.useState(false) + + const toggleERWizard = (hasLaunchedER: boolean): Promise => { + setHasLaunchedRecovery(hasLaunchedER) + setShowERWizard(!showERWizard) + return Promise.resolve() + } + + return { showERWizard, toggleERWizard, hasLaunchedRecovery } +} + +export interface ErrorRecoveryWizardProps { + failedCommand: FailedCommand | null + recoveryMap: IRecoveryMap + routeUpdateActions: UseRouteUpdateActionsResult + recoveryCommands: UseRecoveryCommandsResult + hasLaunchedRecovery: boolean +} + +export function ErrorRecoveryWizard( + props: ErrorRecoveryWizardProps +): JSX.Element { + const { + hasLaunchedRecovery, + failedCommand, + recoveryCommands, + routeUpdateActions, + } = props + const errorKind = getErrorKind(failedCommand?.error?.errorType) + const isOnDevice = useSelector(getIsOnDevice) + + useInitialPipetteHome({ + hasLaunchedRecovery, + recoveryCommands, + routeUpdateActions, + }) + + return ( + + ) +} + +function ErrorRecoveryComponent(props: RecoveryContentProps): JSX.Element { + return createPortal( + + + + , + getTopPortalEl() + ) +} + +export function ErrorRecoveryContent(props: RecoveryContentProps): JSX.Element { + const buildBeforeBeginning = (): JSX.Element => { + return + } + + const buildSelectRecoveryOption = (): JSX.Element => { + return + } + + const buildRecoveryInProgress = (): JSX.Element => { + return + } + + const buildResumeRun = (): JSX.Element => { + return + } + + const buildCancelRun = (): JSX.Element => { + return + } + + switch (props.recoveryMap.route) { + case RECOVERY_MAP.BEFORE_BEGINNING.ROUTE: + return buildBeforeBeginning() + case RECOVERY_MAP.OPTION_SELECTION.ROUTE: + return buildSelectRecoveryOption() + case RECOVERY_MAP.RETRY_FAILED_COMMAND.ROUTE: + return buildResumeRun() + case RECOVERY_MAP.CANCEL_RUN.ROUTE: + return buildCancelRun() + case RECOVERY_MAP.ROBOT_IN_MOTION.ROUTE: + case RECOVERY_MAP.ROBOT_RESUMING.ROUTE: + case RECOVERY_MAP.ROBOT_RETRYING_COMMAND.ROUTE: + case RECOVERY_MAP.ROBOT_CANCELING.ROUTE: + return buildRecoveryInProgress() + default: + return buildSelectRecoveryOption() + } +} +interface UseInitialPipetteHomeParams { + hasLaunchedRecovery: boolean + recoveryCommands: ReturnType + routeUpdateActions: ReturnType +} +// Home the Z-axis of all attached pipettes on Error Recovery launch. +export function useInitialPipetteHome({ + hasLaunchedRecovery, + recoveryCommands, + routeUpdateActions, +}: UseInitialPipetteHomeParams): void { + const { homePipetteZAxes } = recoveryCommands + const { setRobotInMotion } = routeUpdateActions + + // Synchronously set the recovery route to "robot in motion" before initial render to prevent screen flicker on ER launch. + React.useLayoutEffect(() => { + if (hasLaunchedRecovery) { + void setRobotInMotion(true) + .then(() => homePipetteZAxes()) + .finally(() => setRobotInMotion(false)) + } + }, [hasLaunchedRecovery]) +} diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryInProgress.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryInProgress.tsx new file mode 100644 index 00000000000..94ad1cc64d1 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryInProgress.tsx @@ -0,0 +1,39 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' + +import { InProgressModal } from '../../molecules/InProgressModal/InProgressModal' +import { RECOVERY_MAP } from './constants' + +import type { RobotMovingRoute, RecoveryContentProps } from './types' + +export function RecoveryInProgress({ + recoveryMap, +}: RecoveryContentProps): JSX.Element { + const { + ROBOT_CANCELING, + ROBOT_IN_MOTION, + ROBOT_RESUMING, + ROBOT_RETRYING_COMMAND, + } = RECOVERY_MAP + const { t } = useTranslation('error_recovery') + const { route } = recoveryMap + + const buildDescription = (): RobotMovingRoute => { + switch (route) { + case ROBOT_CANCELING.ROUTE: + return t('canceling_run') + case ROBOT_IN_MOTION.ROUTE: + return t('stand_back') + case ROBOT_RESUMING.ROUTE: + return t('stand_back_resuming') + case ROBOT_RETRYING_COMMAND.ROUTE: + return t('stand_back_retrying') + default: + return t('stand_back') + } + } + + const description = buildDescription() + + return +} diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/CancelRun.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/CancelRun.tsx new file mode 100644 index 00000000000..91ff0f7985a --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/CancelRun.tsx @@ -0,0 +1,76 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' + +import { + ALIGN_CENTER, + DIRECTION_COLUMN, + COLORS, + Flex, + Icon, + JUSTIFY_SPACE_BETWEEN, + SPACING, + StyledText, +} from '@opentrons/components' + +import { RECOVERY_MAP } from '../constants' +import { RecoveryFooterButtons } from './shared' + +import type { RecoveryContentProps } from '../types' + +export function CancelRun({ + isOnDevice, + routeUpdateActions, + recoveryCommands, +}: RecoveryContentProps): JSX.Element | null { + const { ROBOT_CANCELING } = RECOVERY_MAP + const { t } = useTranslation('error_recovery') + + const { cancelRun } = recoveryCommands + const { goBackPrevStep, setRobotInMotion } = routeUpdateActions + + const primaryBtnOnClick = (): Promise => { + return setRobotInMotion(true, ROBOT_CANCELING.ROUTE).then(() => cancelRun()) + } + + if (isOnDevice) { + return ( + + + + + {t('are_you_sure_you_want_to_cancel')} + + + {t('if_tips_are_attached')} + + + + + ) + } else { + return null + } +} diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/RetryStep.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/RetryStep.tsx new file mode 100644 index 00000000000..1f750a7df1c --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/RetryStep.tsx @@ -0,0 +1,72 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' + +import { + ALIGN_CENTER, + DIRECTION_COLUMN, + Flex, + Icon, + JUSTIFY_SPACE_BETWEEN, + SPACING, + StyledText, +} from '@opentrons/components' + +import { RECOVERY_MAP } from '../constants' +import { RecoveryFooterButtons } from './shared' + +import type { RecoveryContentProps } from '../types' + +export function RetryStep({ + isOnDevice, + routeUpdateActions, + recoveryCommands, +}: RecoveryContentProps): JSX.Element | null { + const { ROBOT_RETRYING_COMMAND } = RECOVERY_MAP + const { t } = useTranslation('error_recovery') + + const { retryFailedCommand, resumeRun } = recoveryCommands + const { goBackPrevStep, setRobotInMotion } = routeUpdateActions + + const primaryBtnOnClick = (): Promise => { + return setRobotInMotion(true, ROBOT_RETRYING_COMMAND.ROUTE) + .then(() => retryFailedCommand()) + .then(() => resumeRun()) + } + + if (isOnDevice) { + return ( + + + + + {t('are_you_sure_you_want_to_resume')} + + + {t('run_will_resume')} + + + + + ) + } else { + return null + } +} diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/SelectRecoveryOption.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/SelectRecoveryOption.tsx new file mode 100644 index 00000000000..8acf05cedd3 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/SelectRecoveryOption.tsx @@ -0,0 +1,115 @@ +import * as React from 'react' +import head from 'lodash/head' +import { useTranslation } from 'react-i18next' + +import { + DIRECTION_COLUMN, + Flex, + JUSTIFY_SPACE_BETWEEN, + SPACING, + StyledText, +} from '@opentrons/components' + +import { + RECOVERY_MAP, + ERROR_KINDS, + ODD_SECTION_TITLE_STYLE, +} from '../constants' +import { RadioButton } from '../../../atoms/buttons' +import { RecoveryFooterButtons } from './shared' + +import type { ErrorKind, RecoveryContentProps, RecoveryRoute } from '../types' + +// The "home" screen within Error Recovery. When a user completes a non-terminal flow or presses "Go back" enough +// to escape the boundaries of a route, they will be redirected here. +export function SelectRecoveryOption({ + isOnDevice, + errorKind, + routeUpdateActions, +}: RecoveryContentProps): JSX.Element | null { + const { t } = useTranslation('error_recovery') + const { proceedToRoute } = routeUpdateActions + const validRecoveryOptions = getRecoveryOptions(errorKind) + const [selectedRoute, setSelectedRoute] = React.useState( + head(validRecoveryOptions) as RecoveryRoute + ) + + if (isOnDevice) { + return ( + + + {t('how_do_you_want_to_proceed')} + + + + + + proceedToRoute(selectedRoute as RecoveryRoute) + } + /> + + ) + } else { + return null + } +} + +interface RecoveryOptionsProps { + validRecoveryOptions: RecoveryRoute[] + setSelectedRoute: (route: RecoveryRoute) => void + selectedRoute?: RecoveryRoute +} +export function RecoveryOptions({ + validRecoveryOptions, + selectedRoute, + setSelectedRoute, +}: RecoveryOptionsProps): JSX.Element[] { + const { t } = useTranslation('error_recovery') + + return validRecoveryOptions.map((recoveryOption: RecoveryRoute) => { + const buildOptionName = (): string => { + switch (recoveryOption) { + case RECOVERY_MAP.RETRY_FAILED_COMMAND.ROUTE: + return t('retry_step') + case RECOVERY_MAP.CANCEL_RUN.ROUTE: + return t('cancel_run') + default: + return 'INVALID_OPTION' + } + } + const optionName = buildOptionName() + + return ( + setSelectedRoute(recoveryOption)} + isSelected={recoveryOption === selectedRoute} + /> + ) + }) +} + +export function getRecoveryOptions(errorKind: ErrorKind): RecoveryRoute[] { + switch (errorKind) { + case ERROR_KINDS.GENERAL_ERROR: + return GENERAL_ERROR_OPTIONS + } +} + +export const GENERAL_ERROR_OPTIONS: RecoveryRoute[] = [ + RECOVERY_MAP.RETRY_FAILED_COMMAND.ROUTE, + RECOVERY_MAP.CANCEL_RUN.ROUTE, +] diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/CancelRun.test.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/CancelRun.test.tsx new file mode 100644 index 00000000000..9d36c1543e7 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/CancelRun.test.tsx @@ -0,0 +1,91 @@ +import * as React from 'react' +import { vi, describe, it, expect, beforeEach } from 'vitest' +import { screen, fireEvent, waitFor } from '@testing-library/react' + +import { renderWithProviders } from '../../../../__testing-utils__' +import { i18n } from '../../../../i18n' +import { mockRecoveryContentProps } from '../../__fixtures__' +import { CancelRun } from '../CancelRun' +import { RECOVERY_MAP } from '../../constants' + +import type { Mock } from 'vitest' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('RecoveryFooterButtons', () => { + const { CANCEL_RUN, ROBOT_CANCELING } = RECOVERY_MAP + let props: React.ComponentProps + let mockGoBackPrevStep: Mock + + beforeEach(() => { + mockGoBackPrevStep = vi.fn() + const mockRouteUpdateActions = { goBackPrevStep: mockGoBackPrevStep } as any + + props = { + ...mockRecoveryContentProps, + routeUpdateActions: mockRouteUpdateActions, + recoveryMap: { + route: CANCEL_RUN.ROUTE, + step: CANCEL_RUN.STEPS.CONFIRM_CANCEL, + }, + } + }) + + it('renders appropriate copy and click behavior', async () => { + render(props) + + screen.getByText('Are you sure you want to cancel?') + screen.queryByText( + 'If tips are attached, you can choose to blowout any aspirated liquid and drop tips before the run is terminated.' + ) + + const secondaryBtn = screen.getByRole('button', { name: 'Go back' }) + + fireEvent.click(secondaryBtn) + + expect(mockGoBackPrevStep).toHaveBeenCalled() + }) + + it('should call commands in the correct order for the primaryOnClick callback', async () => { + const setRobotInMotionMock = vi.fn(() => Promise.resolve()) + const cancelRunMock = vi.fn(() => Promise.resolve()) + + const mockRecoveryCommands = { + cancelRun: cancelRunMock, + } as any + + const mockRouteUpdateActions = { + setRobotInMotion: setRobotInMotionMock, + } as any + + render({ + ...props, + recoveryCommands: mockRecoveryCommands, + routeUpdateActions: mockRouteUpdateActions, + }) + + const primaryBtn = screen.getByRole('button', { name: 'Confirm' }) + fireEvent.click(primaryBtn) + + await waitFor(() => { + expect(setRobotInMotionMock).toHaveBeenCalledTimes(1) + }) + await waitFor(() => { + expect(setRobotInMotionMock).toHaveBeenCalledWith( + true, + ROBOT_CANCELING.ROUTE + ) + }) + await waitFor(() => { + expect(cancelRunMock).toHaveBeenCalledTimes(1) + }) + + expect(setRobotInMotionMock.mock.invocationCallOrder[0]).toBeLessThan( + cancelRunMock.mock.invocationCallOrder[0] + ) + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/RetryStep.test.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/RetryStep.test.tsx new file mode 100644 index 00000000000..e9cdf6f0dfa --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/RetryStep.test.tsx @@ -0,0 +1,102 @@ +import * as React from 'react' +import { vi, describe, it, expect, beforeEach } from 'vitest' +import { screen, fireEvent, waitFor } from '@testing-library/react' + +import { renderWithProviders } from '../../../../__testing-utils__' +import { i18n } from '../../../../i18n' +import { mockRecoveryContentProps } from '../../__fixtures__' +import { RetryStep } from '../RetryStep' +import { RECOVERY_MAP } from '../../constants' + +import type { Mock } from 'vitest' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('RecoveryFooterButtons', () => { + const { RETRY_FAILED_COMMAND, ROBOT_RETRYING_COMMAND } = RECOVERY_MAP + let props: React.ComponentProps + let mockGoBackPrevStep: Mock + + beforeEach(() => { + mockGoBackPrevStep = vi.fn() + const mockRouteUpdateActions = { goBackPrevStep: mockGoBackPrevStep } as any + + props = { + ...mockRecoveryContentProps, + routeUpdateActions: mockRouteUpdateActions, + recoveryMap: { + route: RETRY_FAILED_COMMAND.ROUTE, + step: RETRY_FAILED_COMMAND.STEPS.CONFIRM_RETRY, + }, + } + }) + + it('renders appropriate copy and click behavior', async () => { + render(props) + + screen.getByText('Are you sure you want to resume?') + screen.queryByText( + 'The run will resume from the point at which the error occurred.' + ) + + const secondaryBtn = screen.getByRole('button', { name: 'Go back' }) + + fireEvent.click(secondaryBtn) + + expect(mockGoBackPrevStep).toHaveBeenCalled() + }) + + it('should call commands in the correct order for the primaryOnClick callback', async () => { + const setRobotInMotionMock = vi.fn(() => Promise.resolve()) + const retryFailedCommandMock = vi.fn(() => Promise.resolve()) + const resumeRunMock = vi.fn() + + const mockRecoveryCommands = { + retryFailedCommand: retryFailedCommandMock, + resumeRun: resumeRunMock, + } as any + + const mockRouteUpdateActions = { + setRobotInMotion: setRobotInMotionMock, + } as any + + render({ + ...props, + recoveryCommands: mockRecoveryCommands, + routeUpdateActions: mockRouteUpdateActions, + }) + + const primaryBtn = screen.getByRole('button', { name: 'Confirm' }) + fireEvent.click(primaryBtn) + + await waitFor(() => { + expect(setRobotInMotionMock).toHaveBeenCalledTimes(1) + }) + await waitFor(() => { + expect(setRobotInMotionMock).toHaveBeenCalledWith( + true, + ROBOT_RETRYING_COMMAND.ROUTE + ) + }) + await waitFor(() => { + expect(retryFailedCommandMock).toHaveBeenCalledTimes(1) + }) + await waitFor(() => { + expect(resumeRunMock).toHaveBeenCalledTimes(1) + }) + + expect(setRobotInMotionMock.mock.invocationCallOrder[0]).toBeLessThan( + retryFailedCommandMock.mock.invocationCallOrder[0] + ) + + await waitFor(() => { + expect(retryFailedCommandMock.mock.invocationCallOrder[0]).toBeLessThan( + resumeRunMock.mock.invocationCallOrder[0] + ) + }) + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/SelectRecoveryOptions.test.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/SelectRecoveryOptions.test.tsx new file mode 100644 index 00000000000..692246f29cc --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/__tests__/SelectRecoveryOptions.test.tsx @@ -0,0 +1,108 @@ +import * as React from 'react' +import { vi, describe, it, expect, beforeEach } from 'vitest' +import { screen, fireEvent } from '@testing-library/react' + +import { renderWithProviders } from '../../../../__testing-utils__' +import { i18n } from '../../../../i18n' +import { mockRecoveryContentProps } from '../../__fixtures__' +import { + SelectRecoveryOption, + RecoveryOptions, + getRecoveryOptions, + GENERAL_ERROR_OPTIONS, +} from '../SelectRecoveryOption' +import { RECOVERY_MAP, ERROR_KINDS } from '../../constants' + +import type { Mock } from 'vitest' + +const renderSelectRecoveryOption = ( + props: React.ComponentProps +) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +const renderRecoveryOptions = ( + props: React.ComponentProps +) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('SelectRecoveryOption', () => { + const { RETRY_FAILED_COMMAND } = RECOVERY_MAP + let props: React.ComponentProps + let mockProceedToRoute: Mock + + beforeEach(() => { + mockProceedToRoute = vi.fn() + const mockRouteUpdateActions = { proceedToRoute: mockProceedToRoute } as any + + props = { + ...mockRecoveryContentProps, + routeUpdateActions: mockRouteUpdateActions, + recoveryMap: { + route: RETRY_FAILED_COMMAND.ROUTE, + step: RETRY_FAILED_COMMAND.STEPS.CONFIRM_RETRY, + }, + } + }) + + it('renders appropriate "General Error" copy and click behavior', () => { + renderSelectRecoveryOption(props) + + screen.getByText('How do you want to proceed?') + + const retryStepOption = screen.getByRole('label', { name: 'Retry step' }) + const continueBtn = screen.getByRole('button', { name: 'Continue' }) + expect( + screen.queryByRole('button', { name: 'Go back' }) + ).not.toBeInTheDocument() + + fireEvent.click(retryStepOption) + fireEvent.click(continueBtn) + + expect(mockProceedToRoute).toHaveBeenCalledWith(RETRY_FAILED_COMMAND.ROUTE) + }) +}) + +describe('RecoveryOptions', () => { + let props: React.ComponentProps + let mockSetSelectedRoute: Mock + + beforeEach(() => { + mockSetSelectedRoute = vi.fn() + const generalRecoveryOptions = getRecoveryOptions(ERROR_KINDS.GENERAL_ERROR) + + props = { + validRecoveryOptions: generalRecoveryOptions, + setSelectedRoute: mockSetSelectedRoute, + } + }) + + it('renders valid recovery options for a general error errorKind', () => { + renderRecoveryOptions(props) + + screen.getByRole('label', { name: 'Retry step' }) + screen.getByRole('label', { name: 'Cancel run' }) + }) + + it('updates the selectedRoute when a new option is selected', () => { + renderRecoveryOptions(props) + + fireEvent.click(screen.getByRole('label', { name: 'Cancel run' })) + + expect(mockSetSelectedRoute).toHaveBeenCalledWith( + RECOVERY_MAP.CANCEL_RUN.ROUTE + ) + }) +}) + +describe('getRecoveryOptions', () => { + it(`returns general error options when the errorKind is ${ERROR_KINDS.GENERAL_ERROR}`, () => { + const generalErrorOptions = getRecoveryOptions(ERROR_KINDS.GENERAL_ERROR) + expect(generalErrorOptions).toBe(GENERAL_ERROR_OPTIONS) + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/index.ts b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/index.ts new file mode 100644 index 00000000000..350a1c3bcc0 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/index.ts @@ -0,0 +1,3 @@ +export { SelectRecoveryOption } from './SelectRecoveryOption' +export { RetryStep } from './RetryStep' +export { CancelRun } from './CancelRun' diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/RecoveryFooterButtons.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/RecoveryFooterButtons.tsx new file mode 100644 index 00000000000..316744a2d17 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/RecoveryFooterButtons.tsx @@ -0,0 +1,60 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' + +import { + ALIGN_CENTER, + Flex, + JUSTIFY_FLEX_END, + JUSTIFY_SPACE_BETWEEN, + SPACING, +} from '@opentrons/components' + +import { SmallButton } from '../../../../atoms/buttons' + +interface RecoveryOptionProps { + isOnDevice: boolean + primaryBtnOnClick: () => void + secondaryBtnOnClick?: () => void + primaryBtnTextOverride?: string +} +export function RecoveryFooterButtons({ + isOnDevice, + secondaryBtnOnClick, + primaryBtnOnClick, + primaryBtnTextOverride, +}: RecoveryOptionProps): JSX.Element | null { + const { t } = useTranslation('error_recovery') + + const showGoBackBtn = secondaryBtnOnClick != null + + if (isOnDevice) { + return ( + + {showGoBackBtn ? ( + + ) : null} + + + ) + } else { + return null + } +} diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/__tests__/RecoveryFooterButtons.test.tsx b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/__tests__/RecoveryFooterButtons.test.tsx new file mode 100644 index 00000000000..e08ad726fa4 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/__tests__/RecoveryFooterButtons.test.tsx @@ -0,0 +1,60 @@ +import * as React from 'react' +import { vi, describe, it, expect, beforeEach } from 'vitest' +import { screen, fireEvent } from '@testing-library/react' + +import { renderWithProviders } from '../../../../../__testing-utils__' +import { i18n } from '../../../../../i18n' +import { RecoveryFooterButtons } from '../RecoveryFooterButtons' + +import type { Mock } from 'vitest' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('RecoveryFooterButtons', () => { + let props: React.ComponentProps + let mockPrimaryBtnOnClick: Mock + let mockSecondaryBtnOnClick: Mock + + beforeEach(() => { + mockPrimaryBtnOnClick = vi.fn() + mockSecondaryBtnOnClick = vi.fn() + props = { + isOnDevice: true, + primaryBtnOnClick: mockPrimaryBtnOnClick, + secondaryBtnOnClick: mockSecondaryBtnOnClick, + } + }) + + it('renders default button copy and click behavior', () => { + render(props) + + const primaryBtn = screen.getByRole('button', { name: 'Continue' }) + const secondaryBtn = screen.getByRole('button', { name: 'Go back' }) + + fireEvent.click(primaryBtn) + fireEvent.click(secondaryBtn) + + expect(mockPrimaryBtnOnClick).toHaveBeenCalled() + expect(mockSecondaryBtnOnClick).toHaveBeenCalled() + }) + + it('renders alternative button text when supplied', () => { + props = { ...props, primaryBtnTextOverride: 'MOCK_OVERRIDE_TEXT' } + render(props) + + screen.getByRole('button', { name: 'MOCK_OVERRIDE_TEXT' }) + }) + + it('does not render the secondary button if no on click handler is supplied', () => { + props = { ...props, secondaryBtnOnClick: undefined } + render(props) + + expect( + screen.queryByRole('button', { name: 'Go back' }) + ).not.toBeInTheDocument() + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/index.ts b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/index.ts new file mode 100644 index 00000000000..82d6cdb7120 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RecoveryOptions/shared/index.ts @@ -0,0 +1 @@ +export { RecoveryFooterButtons } from './RecoveryFooterButtons' diff --git a/app/src/organisms/ErrorRecoveryFlows/RunPausedSplash.tsx b/app/src/organisms/ErrorRecoveryFlows/RunPausedSplash.tsx new file mode 100644 index 00000000000..71a01e8ec02 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/RunPausedSplash.tsx @@ -0,0 +1,140 @@ +import * as React from 'react' +import styled, { css } from 'styled-components' +import { useTranslation } from 'react-i18next' +import { useSelector } from 'react-redux' + +import { + Flex, + Icon, + JUSTIFY_CENTER, + ALIGN_CENTER, + SPACING, + COLORS, + DIRECTION_COLUMN, + POSITION_ABSOLUTE, + TYPOGRAPHY, + OVERFLOW_WRAP_BREAK_WORD, + DISPLAY_FLEX, + JUSTIFY_SPACE_BETWEEN, +} from '@opentrons/components' + +import { getIsOnDevice } from '../../redux/config' +import { getErrorKind, useErrorMessage, useErrorName } from './utils' +import { LargeButton } from '../../atoms/buttons' +import { RECOVERY_MAP } from './constants' + +import type { FailedCommand } from './types' +import type { UseRouteUpdateActionsResult } from './utils' + +export function useRunPausedSplash(): boolean { + return useSelector(getIsOnDevice) +} + +interface RunPausedSplashProps { + toggleERWiz: (launchER: boolean) => Promise + routeUpdateActions: UseRouteUpdateActionsResult + failedCommand: FailedCommand | null +} +export function RunPausedSplash({ + toggleERWiz, + routeUpdateActions, + failedCommand, +}: RunPausedSplashProps): JSX.Element { + const { t } = useTranslation('error_recovery') + const errorKind = getErrorKind(failedCommand?.error?.errorType) + const title = useErrorName(errorKind) + const subText = useErrorMessage(errorKind) + + const { proceedToRoute } = routeUpdateActions + + // Do not launch error recovery, but do utilize the wizard's cancel route. + const onCancelClick = (): Promise => { + return toggleERWiz(false).then(() => + proceedToRoute(RECOVERY_MAP.CANCEL_RUN.ROUTE) + ) + } + + const onLaunchERClick = (): Promise => toggleERWiz(true) + + // TODO(jh 05-22-24): The hardcoded Z-indexing is non-ideal but must be done to keep the splash page above + // several components in the RunningProtocol page. Investigate why these components have seemingly arbitrary zIndex values + // and devise a better solution to layering modals. + return ( + + + + + {title} + + + {subText} + + + + + + + + ) +} + +const SplashHeader = styled.h1` + font-weight: ${TYPOGRAPHY.fontWeightBold}; + text-align: ${TYPOGRAPHY.textAlignLeft}; + font-size: ${TYPOGRAPHY.fontSize80}; + line-height: ${TYPOGRAPHY.lineHeight96}; + color: ${COLORS.white}; +` +const SplashBody = styled.h4` + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 4; + overflow: hidden; + overflow-wrap: ${OVERFLOW_WRAP_BREAK_WORD}; + font-weight: ${TYPOGRAPHY.fontWeightSemiBold}; + text-align: ${TYPOGRAPHY.textAlignCenter}; + text-transform: ${TYPOGRAPHY.textTransformCapitalize}; + font-size: ${TYPOGRAPHY.fontSize32}; + line-height: ${TYPOGRAPHY.lineHeight42}; + color: ${COLORS.white}; +` + +const SplashFrame = styled(Flex)` + width: 100%; + height: 100%; + flex-direction: ${DIRECTION_COLUMN}; + justify-content: ${JUSTIFY_CENTER}; + align-items: ${ALIGN_CENTER}; + grid-gap: ${SPACING.spacing40}; + padding: ${SPACING.spacing24}; + padding-bottom: 0px; +` + +const SHARED_BUTTON_STYLE = css` + width: 29rem; + height: 13.5rem; +` diff --git a/app/src/organisms/ErrorRecoveryFlows/__fixtures__/index.ts b/app/src/organisms/ErrorRecoveryFlows/__fixtures__/index.ts new file mode 100644 index 00000000000..37c034b5065 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__fixtures__/index.ts @@ -0,0 +1,45 @@ +import { RECOVERY_MAP } from '../constants' + +import type { FailedCommand, RecoveryContentProps } from '../types' + +export const mockFailedCommand: FailedCommand = { + commandType: 'pickUpTip', + completedAt: '2024-05-24T13:55:32.595751+00:00', + createdAt: '2024-05-24T13:55:19.014871+00:00', + status: 'failed', + key: '28d6daa63cc6d88bd8e3f0ababff79c3', + error: { + createdAt: '2024-05-24T13:55:32.595751+00:00', + detail: 'No tip detected.', + errorCode: '3003', + errorType: 'tipPhysicallyMissing', + errorInfo: {}, + wrappedErrors: [], + id: '123', + }, + startedAt: '2024-05-24T13:55:19.016799+00:00', + id: '1', + params: { + labwareId: '58774227-2413-40aa-957e-271ab7807927', + pipetteId: '3d471ffa-0b6b-45f9-86ce-4d0fe2c25fdc', + wellLocation: { + offset: { x: 0, y: 0, z: 0 }, + origin: 'top', + }, + wellName: 'A1', + }, + notes: [], +} + +export const mockRecoveryContentProps: RecoveryContentProps = { + failedCommand: mockFailedCommand, + errorKind: 'GENERAL_ERROR', + isOnDevice: true, + recoveryMap: { + route: RECOVERY_MAP.OPTION_SELECTION.ROUTE, + step: RECOVERY_MAP.OPTION_SELECTION.STEPS.SELECT, + }, + routeUpdateActions: {} as any, + recoveryCommands: {} as any, + hasLaunchedRecovery: true, +} diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/BeforeBeginning.test.tsx b/app/src/organisms/ErrorRecoveryFlows/__tests__/BeforeBeginning.test.tsx new file mode 100644 index 00000000000..676fad63a88 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/BeforeBeginning.test.tsx @@ -0,0 +1,56 @@ +import * as React from 'react' +import { beforeEach, describe, expect, it, vi } from 'vitest' +import { fireEvent, screen } from '@testing-library/react' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { mockRecoveryContentProps } from '../__fixtures__' +import { BeforeBeginning } from '../BeforeBeginning' +import { RECOVERY_MAP } from '../constants' + +import type { Mock } from 'vitest' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('BeforeBeginning', () => { + const { BEFORE_BEGINNING } = RECOVERY_MAP + let props: React.ComponentProps + let mockProceedNextStep: Mock + + beforeEach(() => { + mockProceedNextStep = vi.fn() + const mockRouteUpdateActions = { + proceedNextStep: mockProceedNextStep, + } as any + + props = { + ...mockRecoveryContentProps, + routeUpdateActions: mockRouteUpdateActions, + recoveryMap: { + route: BEFORE_BEGINNING.ROUTE, + step: BEFORE_BEGINNING.STEPS.RECOVERY_DESCRIPTION, + }, + } + }) + + it('renders appropriate copy and click behavior', () => { + render(props) + + screen.getByText('Before you begin') + screen.queryByText( + 'Recovery Mode provides you with guided and manual controls for handling errors at runtime.' + ) + + const primaryBtn = screen.getByRole('button', { + name: 'View recovery options', + }) + + fireEvent.click(primaryBtn) + + expect(mockProceedNextStep).toHaveBeenCalled() + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryFlows.test.tsx b/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryFlows.test.tsx new file mode 100644 index 00000000000..72d6fc35c86 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryFlows.test.tsx @@ -0,0 +1,128 @@ +import * as React from 'react' +import { vi, describe, expect, it, beforeEach } from 'vitest' +import { screen, renderHook } from '@testing-library/react' + +import { + RUN_STATUS_AWAITING_RECOVERY, + RUN_STATUS_RUNNING, + RUN_STATUS_STOP_REQUESTED, +} from '@opentrons/api-client' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { mockFailedCommand } from '../__fixtures__' +import { ErrorRecoveryFlows, useErrorRecoveryFlows } from '..' +import { useCurrentlyRecoveringFrom } from '../utils' +import { useFeatureFlag } from '../../../redux/config' +import { useERWizard, ErrorRecoveryWizard } from '../ErrorRecoveryWizard' +import { useRunPausedSplash, RunPausedSplash } from '../RunPausedSplash' + +import type { RunStatus } from '@opentrons/api-client' + +vi.mock('../ErrorRecoveryWizard') +vi.mock('../utils') +vi.mock('../useRecoveryCommands') +vi.mock('../../../redux/config') +vi.mock('../RunPausedSplash') + +describe('useErrorRecoveryFlows', () => { + beforeEach(() => { + vi.mocked(useCurrentlyRecoveringFrom).mockReturnValue('mockCommand' as any) + }) + + it('should have initial state of isEREnabled as false', () => { + const { result } = renderHook(() => + useErrorRecoveryFlows('MOCK_ID', RUN_STATUS_RUNNING) + ) + + expect(result.current.isERActive).toBe(false) + }) + + it('should toggle the value of isEREnabled properly when the run status is valid', () => { + const { result } = renderHook(() => + useErrorRecoveryFlows('MOCK_ID', RUN_STATUS_AWAITING_RECOVERY) + ) + + expect(result.current.isERActive).toBe(true) + + const { result: resultStopRequested } = renderHook(() => + useErrorRecoveryFlows('MOCK_ID', RUN_STATUS_STOP_REQUESTED) + ) + + expect(resultStopRequested.current.isERActive).toBe(true) + }) + + it('should disable error recovery when runStatus is not a valid ER run status', () => { + const { result } = renderHook( + (runStatus: RunStatus) => useErrorRecoveryFlows('MOCK_ID', runStatus), + { + initialProps: RUN_STATUS_RUNNING, + } + ) + + expect(result.current.isERActive).toBe(false) + }) + + it('should return the failed run command', () => { + const { result } = renderHook(() => + useErrorRecoveryFlows('MOCK_ID', RUN_STATUS_RUNNING) + ) + + expect(result.current.failedCommand).toEqual('mockCommand') + }) +}) + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('ErrorRecovery', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + failedCommand: mockFailedCommand, + runId: 'MOCK_RUN_ID', + } + vi.mocked(ErrorRecoveryWizard).mockReturnValue(
    MOCK WIZARD
    ) + vi.mocked(RunPausedSplash).mockReturnValue( +
    MOCK RUN PAUSED SPLASH
    + ) + vi.mocked(useFeatureFlag).mockReturnValue(true) + vi.mocked(useERWizard).mockReturnValue({ + hasLaunchedRecovery: true, + toggleERWizard: () => Promise.resolve(), + showERWizard: true, + }) + vi.mocked(useRunPausedSplash).mockReturnValue(true) + }) + + it('renders the wizard when the wizard is toggled on', () => { + render(props) + screen.getByText('MOCK WIZARD') + }) + + it('does not render the wizard when the wizard is toggled off', () => { + vi.mocked(useERWizard).mockReturnValue({ + hasLaunchedRecovery: true, + toggleERWizard: () => Promise.resolve(), + showERWizard: false, + }) + + render(props) + expect(screen.queryByText('MOCK WIZARD')).not.toBeInTheDocument() + }) + + it('renders the splash when the showSplash is true', () => { + render(props) + screen.getByText('MOCK RUN PAUSED SPLASH') + }) + + it('does not render the splash when the showSplash is false', () => { + vi.mocked(useRunPausedSplash).mockReturnValue(false) + render(props) + expect(screen.queryByText('MOCK RUN PAUSED SPLASH')).not.toBeInTheDocument() + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryHeader.test.tsx b/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryHeader.test.tsx new file mode 100644 index 00000000000..31e9f596728 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryHeader.test.tsx @@ -0,0 +1,36 @@ +import * as React from 'react' +import { screen } from '@testing-library/react' +import { beforeEach, describe, it } from 'vitest' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { ErrorRecoveryHeader } from '../ErrorRecoveryHeader' +import { ERROR_KINDS } from '../constants' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('ErrorRecoveryHeader', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + errorKind: ERROR_KINDS.GENERAL_ERROR, + } + }) + + it('renders appropriate copy independent of errorKind', () => { + render(props) + + screen.getByText('Recovery Mode') + }) + + it('renders the appropriate header for a general error kind', () => { + render(props) + + screen.getByText('General error') + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryWizard.test.tsx b/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryWizard.test.tsx new file mode 100644 index 00000000000..3111bff953a --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/ErrorRecoveryWizard.test.tsx @@ -0,0 +1,233 @@ +import * as React from 'react' +import { vi, describe, it, expect, beforeEach } from 'vitest' +import { renderHook, act, screen, waitFor } from '@testing-library/react' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { mockRecoveryContentProps } from '../__fixtures__' +import { + ErrorRecoveryContent, + useInitialPipetteHome, + useERWizard, +} from '../ErrorRecoveryWizard' +import { RECOVERY_MAP } from '../constants' +import { BeforeBeginning } from '../BeforeBeginning' +import { SelectRecoveryOption, RetryStep } from '../RecoveryOptions' +import { RecoveryInProgress } from '../RecoveryInProgress' + +import type { Mock } from 'vitest' + +vi.mock('../BeforeBeginning') +vi.mock('../RecoveryOptions') +vi.mock('../RecoveryInProgress') + +describe('useERWizard', () => { + it('has correct initial values', () => { + const { result } = renderHook(() => useERWizard()) + expect(result.current.showERWizard).toBe(false) + expect(result.current.hasLaunchedRecovery).toBe(false) + }) + + it('correctly toggles showERWizard and updates hasLaunchedRecovery as expected', async () => { + const { result } = renderHook(() => useERWizard()) + + await act(async () => { + await result.current.toggleERWizard(true) + }) + + expect(result.current.showERWizard).toBe(true) + expect(result.current.hasLaunchedRecovery).toBe(true) + + await act(async () => { + await result.current.toggleERWizard(false) + }) + + expect(result.current.showERWizard).toBe(false) + expect(result.current.hasLaunchedRecovery).toBe(false) + }) +}) + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('ErrorRecoveryContent', () => { + const { + OPTION_SELECTION, + BEFORE_BEGINNING, + RETRY_FAILED_COMMAND, + ROBOT_CANCELING, + ROBOT_RESUMING, + ROBOT_IN_MOTION, + ROBOT_RETRYING_COMMAND, + } = RECOVERY_MAP + + let props: React.ComponentProps + + beforeEach(() => { + props = mockRecoveryContentProps + + vi.mocked(SelectRecoveryOption).mockReturnValue( +
    MOCK_SELECT_RECOVERY_OPTION
    + ) + vi.mocked(BeforeBeginning).mockReturnValue(
    MOCK_BEFORE_BEGINNING
    ) + vi.mocked(RetryStep).mockReturnValue(
    MOCK_RESUME_RUN
    ) + vi.mocked(RecoveryInProgress).mockReturnValue(
    MOCK_IN_PROGRESS
    ) + }) + + it(`returns SelectRecoveryOption when the route is ${OPTION_SELECTION.ROUTE}`, () => { + render(props) + + screen.getByText('MOCK_SELECT_RECOVERY_OPTION') + }) + + it(`returns BeforeBeginning when the route is ${BEFORE_BEGINNING.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + ...props.recoveryMap, + route: BEFORE_BEGINNING.ROUTE, + }, + } + render(props) + + screen.getByText('MOCK_BEFORE_BEGINNING') + }) + + it(`returns ResumeRun when the route is ${RETRY_FAILED_COMMAND.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + ...props.recoveryMap, + route: RETRY_FAILED_COMMAND.ROUTE, + }, + } + render(props) + + screen.getByText('MOCK_RESUME_RUN') + }) + + it(`returns RecoveryInProgressModal when the route is ${ROBOT_CANCELING.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + ...props.recoveryMap, + route: ROBOT_CANCELING.ROUTE, + }, + } + render(props) + + screen.getByText('MOCK_IN_PROGRESS') + }) + + it(`returns RecoveryInProgressModal when the route is ${ROBOT_IN_MOTION.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + ...props.recoveryMap, + route: ROBOT_IN_MOTION.ROUTE, + }, + } + render(props) + + screen.getByText('MOCK_IN_PROGRESS') + }) + + it(`returns RecoveryInProgressModal when the route is ${ROBOT_RESUMING.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + ...props.recoveryMap, + route: ROBOT_IN_MOTION.ROUTE, + }, + } + render(props) + + screen.getByText('MOCK_IN_PROGRESS') + }) + + it(`returns RecoveryInProgressModal when the route is ${ROBOT_RETRYING_COMMAND.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + ...props.recoveryMap, + route: ROBOT_IN_MOTION.ROUTE, + }, + } + render(props) + + screen.getByText('MOCK_IN_PROGRESS') + }) +}) + +describe('useInitialPipetteHome', () => { + let mockZHomePipetteZAxes: Mock + let mockSetRobotInMotion: Mock + let mockRecoveryCommands: any + let mockRouteUpdateActions: any + + beforeEach(() => { + mockZHomePipetteZAxes = vi.fn() + mockSetRobotInMotion = vi.fn() + + mockSetRobotInMotion.mockResolvedValue(() => mockZHomePipetteZAxes()) + mockZHomePipetteZAxes.mockResolvedValue(() => mockSetRobotInMotion()) + + mockRecoveryCommands = { + homePipetteZAxes: mockZHomePipetteZAxes, + } as any + mockRouteUpdateActions = { + setRobotInMotion: mockSetRobotInMotion, + } as any + }) + + it('does not z-home the pipettes if error recovery was not launched', () => { + renderHook(() => + useInitialPipetteHome({ + hasLaunchedRecovery: false, + recoveryCommands: mockRecoveryCommands, + routeUpdateActions: mockRouteUpdateActions, + }) + ) + + expect(mockSetRobotInMotion).not.toHaveBeenCalled() + }) + + it('sets the motion screen properly and z-homes all pipettes only on the initial render of Error Recovery', async () => { + const { rerender } = renderHook(() => + useInitialPipetteHome({ + hasLaunchedRecovery: true, + recoveryCommands: mockRecoveryCommands, + routeUpdateActions: mockRouteUpdateActions, + }) + ) + + await waitFor(() => { + expect(mockSetRobotInMotion).toHaveBeenCalledWith(true) + }) + await waitFor(() => { + expect(mockZHomePipetteZAxes).toHaveBeenCalledTimes(1) + }) + await waitFor(() => { + expect(mockSetRobotInMotion).toHaveBeenCalledWith(false) + }) + + expect(mockSetRobotInMotion.mock.invocationCallOrder[0]).toBeLessThan( + mockZHomePipetteZAxes.mock.invocationCallOrder[0] + ) + expect(mockZHomePipetteZAxes.mock.invocationCallOrder[0]).toBeLessThan( + mockSetRobotInMotion.mock.invocationCallOrder[1] + ) + + rerender() + + await waitFor(() => { + expect(mockSetRobotInMotion).toHaveBeenCalledTimes(2) + }) + await waitFor(() => { + expect(mockZHomePipetteZAxes).toHaveBeenCalledTimes(1) + }) + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/RecoveryInProgress.test.tsx b/app/src/organisms/ErrorRecoveryFlows/__tests__/RecoveryInProgress.test.tsx new file mode 100644 index 00000000000..bd1f9f93b1e --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/RecoveryInProgress.test.tsx @@ -0,0 +1,80 @@ +import * as React from 'react' +import { beforeEach, describe, it } from 'vitest' +import { screen } from '@testing-library/react' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { mockRecoveryContentProps } from '../__fixtures__' +import { RecoveryInProgress } from '../RecoveryInProgress' +import { RECOVERY_MAP } from '../constants' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('RecoveryInProgress', () => { + const { + ROBOT_CANCELING, + ROBOT_IN_MOTION, + ROBOT_RESUMING, + ROBOT_RETRYING_COMMAND, + } = RECOVERY_MAP + let props: React.ComponentProps + + beforeEach(() => { + props = { + ...mockRecoveryContentProps, + recoveryMap: { + route: ROBOT_IN_MOTION.ROUTE, + step: ROBOT_IN_MOTION.STEPS.IN_MOTION, + }, + } + }) + + it(`renders appropriate copy when the route is ${ROBOT_IN_MOTION.ROUTE}`, () => { + render(props) + + screen.getByText('Stand back, robot is in motion') + }) + + it(`renders appropriate copy when the route is ${ROBOT_RESUMING.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + route: ROBOT_RESUMING.ROUTE, + step: ROBOT_RESUMING.STEPS.RESUMING, + }, + } + render(props) + + screen.getByText('Stand back, resuming current step') + }) + + it(`renders appropriate copy when the route is ${ROBOT_RETRYING_COMMAND.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + route: ROBOT_RETRYING_COMMAND.ROUTE, + step: ROBOT_RETRYING_COMMAND.STEPS.RETRYING, + }, + } + render(props) + + screen.getByText('Stand back, retrying current command') + }) + + it(`renders appropriate copy when the route is ${ROBOT_CANCELING.ROUTE}`, () => { + props = { + ...props, + recoveryMap: { + route: ROBOT_CANCELING.ROUTE, + step: ROBOT_CANCELING.STEPS.CANCELING, + }, + } + render(props) + + screen.getByText('Canceling run') + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/RunPausedSplash.test.tsx b/app/src/organisms/ErrorRecoveryFlows/__tests__/RunPausedSplash.test.tsx new file mode 100644 index 00000000000..5022ff1f8b8 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/RunPausedSplash.test.tsx @@ -0,0 +1,123 @@ +import * as React from 'react' +import { MemoryRouter } from 'react-router-dom' +import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest' +import { fireEvent, screen, waitFor, renderHook } from '@testing-library/react' +import { createStore } from 'redux' + +import { COLORS } from '@opentrons/components' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { mockFailedCommand } from '../__fixtures__' +import { getIsOnDevice } from '../../../redux/config' +import { useRunPausedSplash, RunPausedSplash } from '../RunPausedSplash' + +import type { Store } from 'redux' +import { QueryClient, QueryClientProvider } from 'react-query' +import { Provider } from 'react-redux' + +vi.mock('../../../redux/config') + +const store: Store = createStore(vi.fn(), {}) + +describe('useRunPausedSplash', () => { + let wrapper: React.FunctionComponent<{ children: React.ReactNode }> + beforeEach(() => { + vi.mocked(getIsOnDevice).mockReturnValue(true) + const queryClient = new QueryClient() + wrapper = ({ children }) => ( + + + {children} + + + ) + }) + + it('returns true if on the ODD', () => { + const { result } = renderHook(() => useRunPausedSplash(), { wrapper }) + expect(result.current).toEqual(true) + }) +}) + +const render = (props: React.ComponentProps) => { + return renderWithProviders( + + + , + { + i18nInstance: i18n, + } + ) +} + +describe('ConfirmCancelRunModal', () => { + let props: React.ComponentProps + const mockToggleERWiz = vi.fn(() => Promise.resolve()) + const mockProceedToRoute = vi.fn() + const mockRouteUpdateActions = { proceedToRoute: mockProceedToRoute } as any + + beforeEach(() => { + props = { + toggleERWiz: mockToggleERWiz, + routeUpdateActions: mockRouteUpdateActions, + failedCommand: mockFailedCommand, + } + }) + + afterEach(() => { + vi.restoreAllMocks() + }) + + it('should render a generic paused screen if there is no handled errorType', () => { + render(props) + screen.getByText('General error') + screen.getByText('') + }) + + it('should contain buttons with expected appearance and behavior', async () => { + render(props) + + const primaryBtn = screen.getByRole('button', { + name: 'Launch Recovery Mode', + }) + const secondaryBtn = screen.getByRole('button', { name: 'Cancel run' }) + + expect(primaryBtn).toBeInTheDocument() + expect(secondaryBtn).toBeInTheDocument() + + expect(primaryBtn).toHaveStyle({ 'background-color': 'transparent' }) + expect(secondaryBtn).toHaveStyle({ 'background-color': COLORS.white }) + + expect(screen.getByLabelText('remove icon')).toHaveStyle({ + color: COLORS.red50, + }) + expect(screen.getByLabelText('recovery icon')).toHaveStyle({ + color: COLORS.white, + }) + + fireEvent.click(secondaryBtn) + + await waitFor(() => { + expect(mockToggleERWiz).toHaveBeenCalledTimes(1) + }) + await waitFor(() => { + expect(mockToggleERWiz).toHaveBeenCalledWith(false) + }) + await waitFor(() => { + expect(mockProceedToRoute).toHaveBeenCalledTimes(1) + }) + + expect(mockToggleERWiz.mock.invocationCallOrder[0]).toBeLessThan( + mockProceedToRoute.mock.invocationCallOrder[0] + ) + + fireEvent.click(primaryBtn) + await waitFor(() => { + expect(mockToggleERWiz).toHaveBeenCalledTimes(2) + }) + await waitFor(() => { + expect(mockToggleERWiz).toHaveBeenCalledWith(true) + }) + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/useRecoveryCommands.test.ts b/app/src/organisms/ErrorRecoveryFlows/__tests__/useRecoveryCommands.test.ts new file mode 100644 index 00000000000..26d654f9cef --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/useRecoveryCommands.test.ts @@ -0,0 +1,126 @@ +import { vi, it, describe, expect, beforeEach } from 'vitest' +import { renderHook, act } from '@testing-library/react' + +import { + useResumeRunFromRecoveryMutation, + useStopRunMutation, +} from '@opentrons/react-api-client' + +import { useChainRunCommands } from '../../../resources/runs' +import { + useRecoveryCommands, + HOME_PIPETTE_Z_AXES, +} from '../useRecoveryCommands' + +vi.mock('@opentrons/react-api-client') +vi.mock('../../../resources/runs') + +const mockFailedCommand = { + id: 'MOCK_ID', + commandType: 'mockCommandType', + params: { test: 'mock_param' }, +} as any +const mockRunId = '123' + +describe('useRecoveryCommands', () => { + const mockResumeRunFromRecovery = vi.fn() + const mockStopRun = vi.fn() + const mockChainRunCommands = vi.fn().mockResolvedValue([]) + + beforeEach(() => { + vi.mocked(useResumeRunFromRecoveryMutation).mockReturnValue({ + resumeRunFromRecovery: mockResumeRunFromRecovery, + } as any) + vi.mocked(useStopRunMutation).mockReturnValue({ + stopRun: mockStopRun, + } as any) + vi.mocked(useChainRunCommands).mockReturnValue({ + chainRunCommands: mockChainRunCommands, + } as any) + }) + + it('should call chainRunRecoveryCommands with continuePastCommandFailure set to true', async () => { + const { result } = renderHook(() => + useRecoveryCommands({ + runId: mockRunId, + failedCommand: mockFailedCommand, + }) + ) + + await act(async () => { + await result.current.homePipetteZAxes() // can use any result returned command + }) + + expect(mockChainRunCommands).toHaveBeenCalledWith( + [HOME_PIPETTE_Z_AXES], + true + ) + }) + + it('should call retryFailedCommand with the failedCommand', async () => { + const expectedNewCommand = { + commandType: mockFailedCommand.commandType, + params: mockFailedCommand.params, + } + + const { result } = renderHook(() => + useRecoveryCommands({ + runId: mockRunId, + failedCommand: mockFailedCommand, + }) + ) + + await act(async () => { + await result.current.retryFailedCommand() + }) + + expect(mockChainRunCommands).toHaveBeenCalledWith( + [expectedNewCommand], + true + ) + }) + + it('should call resumeRun with runId', () => { + const { result } = renderHook(() => + useRecoveryCommands({ + runId: mockRunId, + failedCommand: mockFailedCommand, + }) + ) + + result.current.resumeRun() + + expect(mockResumeRunFromRecovery).toHaveBeenCalledWith(mockRunId) + }) + + it('should call cancelRun with runId', () => { + const { result } = renderHook(() => + useRecoveryCommands({ + runId: mockRunId, + failedCommand: mockFailedCommand, + }) + ) + + result.current.cancelRun() + + expect(mockStopRun).toHaveBeenCalledWith(mockRunId) + }) + + it('should call homePipetteZAxes with the appropriate command', async () => { + const { result } = renderHook(() => + useRecoveryCommands({ + runId: mockRunId, + failedCommand: mockFailedCommand, + }) + ) + + await act(async () => { + await result.current.homePipetteZAxes() + }) + + expect(mockChainRunCommands).toHaveBeenCalledWith( + [HOME_PIPETTE_Z_AXES], + true + ) + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/__tests__/utils.test.ts b/app/src/organisms/ErrorRecoveryFlows/__tests__/utils.test.ts new file mode 100644 index 00000000000..4657b4974ef --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/__tests__/utils.test.ts @@ -0,0 +1,269 @@ +import { vi, describe, it, expect, beforeEach } from 'vitest' +import { renderHook } from '@testing-library/react' + +import { ERROR_KINDS, INVALID, RECOVERY_MAP } from '../constants' +import { + getErrorKind, + getRecoveryRouteNavigation, + useRouteUpdateActions, + useCurrentlyRecoveringFrom, +} from '../utils' +import { useNotifyAllCommandsQuery } from '../../../resources/runs' + +import type { Mock } from 'vitest' +import type { GetRouteUpdateActionsParams } from '../utils' +import { useCommandQuery } from '@opentrons/react-api-client' +import { + RUN_STATUS_AWAITING_RECOVERY, + RUN_STATUS_IDLE, +} from '@opentrons/api-client' + +vi.mock('@opentrons/react-api-client') +vi.mock('../../../resources/runs') + +describe('getErrorKind', () => { + it(`returns ${ERROR_KINDS.GENERAL_ERROR} if the errorType isn't handled explicitly`, () => { + const mockErrorType = 'NON_HANDLED_ERROR' + const result = getErrorKind(mockErrorType) + expect(result).toEqual(ERROR_KINDS.GENERAL_ERROR) + }) +}) + +describe('getRecoveryRouteNavigation', () => { + it(`getNextStep and getPrevStep return ${INVALID} if the recovery route does not contain multiple steps`, () => { + const { ROBOT_IN_MOTION } = RECOVERY_MAP + const { getNextStep, getPrevStep } = getRecoveryRouteNavigation( + ROBOT_IN_MOTION.ROUTE + ) + const nextStepResult = getNextStep(ROBOT_IN_MOTION.STEPS.IN_MOTION) + const prevStepResult = getPrevStep(ROBOT_IN_MOTION.STEPS.IN_MOTION) + + expect(nextStepResult).toEqual(INVALID) + expect(prevStepResult).toEqual(INVALID) + }) +}) + +describe('useRouteUpdateActions', () => { + const { OPTION_SELECTION } = RECOVERY_MAP + + let useRouteUpdateActionsParams: GetRouteUpdateActionsParams + let mockSetRecoveryMap: Mock + let mockToggleERWizard: Mock + + beforeEach(() => { + mockSetRecoveryMap = vi.fn() + mockToggleERWizard = vi.fn() + + useRouteUpdateActionsParams = { + hasLaunchedRecovery: true, + toggleERWizard: mockToggleERWizard, + recoveryMap: { + route: RECOVERY_MAP.RETRY_FAILED_COMMAND.ROUTE, + step: RECOVERY_MAP.RETRY_FAILED_COMMAND.STEPS.CONFIRM_RETRY, + }, + setRecoveryMap: mockSetRecoveryMap, + } + }) + + it(`routes to ${OPTION_SELECTION.ROUTE} ${OPTION_SELECTION.STEPS.SELECT} if proceedNextStep is called and the next step does not exist`, () => { + const { result } = renderHook(() => + useRouteUpdateActions(useRouteUpdateActionsParams) + ) + const { proceedNextStep } = result.current + + proceedNextStep() + expect(mockSetRecoveryMap).toHaveBeenCalledWith({ + route: OPTION_SELECTION.ROUTE, + step: OPTION_SELECTION.STEPS.SELECT, + }) + expect(mockToggleERWizard).not.toHaveBeenCalled() + }) + + it('toggles off the ER Wizard if proceedNextStep is called and hasLaunchedRecovery is false', () => { + const { result } = renderHook(() => + useRouteUpdateActions({ + ...useRouteUpdateActionsParams, + hasLaunchedRecovery: false, + }) + ) + + const { proceedNextStep } = result.current + + proceedNextStep() + + expect(mockToggleERWizard).toHaveBeenCalled() + }) + + it(`routes to ${OPTION_SELECTION.ROUTE} ${OPTION_SELECTION.STEPS.SELECT} if proceedPrevStep is called and the previous step does not exist`, () => { + const { result } = renderHook(() => + useRouteUpdateActions(useRouteUpdateActionsParams) + ) + const { goBackPrevStep } = result.current + + goBackPrevStep() + expect(mockSetRecoveryMap).toHaveBeenCalledWith({ + route: OPTION_SELECTION.ROUTE, + step: OPTION_SELECTION.STEPS.SELECT, + }) + expect(mockToggleERWizard).not.toHaveBeenCalled() + }) + + it('toggles off the ER Wizard if proceedPrevStep is called and hasLaunchedRecovery is false', () => { + const { result } = renderHook(() => + useRouteUpdateActions({ + ...useRouteUpdateActionsParams, + hasLaunchedRecovery: false, + }) + ) + + const { goBackPrevStep } = result.current + + goBackPrevStep() + + expect(mockToggleERWizard).toHaveBeenCalled() + }) + + it('routes to the first step of the supplied route when proceedToRoute is called', () => { + const { result } = renderHook(() => + useRouteUpdateActions(useRouteUpdateActionsParams) + ) + const { proceedToRoute } = result.current + + proceedToRoute(RECOVERY_MAP.ROBOT_IN_MOTION.ROUTE) + expect(mockSetRecoveryMap).toHaveBeenCalledWith({ + route: RECOVERY_MAP.ROBOT_IN_MOTION.ROUTE, + step: RECOVERY_MAP.ROBOT_IN_MOTION.STEPS.IN_MOTION, + }) + }) + + it('routes to "robot in motion" when no other motion path is specified', () => { + const { result } = renderHook(() => + useRouteUpdateActions(useRouteUpdateActionsParams) + ) + const { setRobotInMotion } = result.current + + setRobotInMotion(true) + expect(mockSetRecoveryMap).toHaveBeenCalledWith({ + route: RECOVERY_MAP.ROBOT_IN_MOTION.ROUTE, + step: RECOVERY_MAP.ROBOT_IN_MOTION.STEPS.IN_MOTION, + }) + }) + + it('routes to alternative motion routes if specified', () => { + const { result } = renderHook(() => + useRouteUpdateActions(useRouteUpdateActionsParams) + ) + const { setRobotInMotion } = result.current + + setRobotInMotion(true, RECOVERY_MAP.ROBOT_RESUMING.ROUTE) + expect(mockSetRecoveryMap).toHaveBeenCalledWith({ + route: RECOVERY_MAP.ROBOT_RESUMING.ROUTE, + step: RECOVERY_MAP.ROBOT_RESUMING.STEPS.RESUMING, + }) + }) + + it('routes to the route prior to motion after the motion completes', () => { + const { result } = renderHook(() => + useRouteUpdateActions(useRouteUpdateActionsParams) + ) + const { setRobotInMotion } = result.current + + setRobotInMotion(true) + expect(mockSetRecoveryMap).toHaveBeenCalledWith({ + route: RECOVERY_MAP.ROBOT_IN_MOTION.ROUTE, + step: RECOVERY_MAP.ROBOT_IN_MOTION.STEPS.IN_MOTION, + }) + + setRobotInMotion(false) + expect(mockSetRecoveryMap).toHaveBeenCalledWith({ + route: RECOVERY_MAP.RETRY_FAILED_COMMAND.ROUTE, + step: RECOVERY_MAP.RETRY_FAILED_COMMAND.STEPS.CONFIRM_RETRY, + }) + }) +}) + +const MOCK_RUN_ID = 'runId' +const MOCK_COMMAND_ID = 'commandId' + +describe('useCurrentlyRecoveringFrom', () => { + it('disables all queries if the run is not awaiting-recovery', () => { + vi.mocked(useNotifyAllCommandsQuery).mockReturnValue({ + data: { + links: { + currentlyRecoveringFrom: { + meta: { + runId: MOCK_RUN_ID, + commandId: MOCK_COMMAND_ID, + }, + }, + }, + }, + } as any) + vi.mocked(useCommandQuery).mockReturnValue({ + data: { data: 'mockCommandDetails' }, + } as any) + + const { result } = renderHook(() => + useCurrentlyRecoveringFrom(MOCK_RUN_ID, RUN_STATUS_IDLE) + ) + + expect(vi.mocked(useNotifyAllCommandsQuery)).toHaveBeenCalledWith( + MOCK_RUN_ID, + { cursor: null, pageLength: 0 }, + { enabled: false, refetchInterval: 5000 } + ) + expect(vi.mocked(useCommandQuery)).toHaveBeenCalledWith( + MOCK_RUN_ID, + MOCK_COMMAND_ID, + { enabled: false } + ) + expect(result.current).toStrictEqual(null) + }) + + it('returns null if there is no currentlyRecoveringFrom command', () => { + vi.mocked(useNotifyAllCommandsQuery).mockReturnValue({ + data: { + links: {}, + }, + } as any) + vi.mocked(useCommandQuery).mockReturnValue({} as any) + + const { result } = renderHook(() => + useCurrentlyRecoveringFrom(MOCK_RUN_ID, RUN_STATUS_AWAITING_RECOVERY) + ) + + expect(vi.mocked(useCommandQuery)).toHaveBeenCalledWith(null, null, { + enabled: false, + }) + expect(result.current).toStrictEqual(null) + }) + + it('fetches and returns the currentlyRecoveringFrom command, given that there is one', () => { + vi.mocked(useNotifyAllCommandsQuery).mockReturnValue({ + data: { + links: { + currentlyRecoveringFrom: { + meta: { + runId: MOCK_RUN_ID, + commandId: MOCK_COMMAND_ID, + }, + }, + }, + }, + } as any) + vi.mocked(useCommandQuery).mockReturnValue({ + data: { data: 'mockCommandDetails' }, + } as any) + + const { result } = renderHook(() => + useCurrentlyRecoveringFrom(MOCK_RUN_ID, RUN_STATUS_AWAITING_RECOVERY) + ) + + expect(vi.mocked(useCommandQuery)).toHaveBeenCalledWith( + MOCK_RUN_ID, + MOCK_COMMAND_ID, + { enabled: true } + ) + expect(result.current).toStrictEqual('mockCommandDetails') + }) +}) diff --git a/app/src/organisms/ErrorRecoveryFlows/constants.ts b/app/src/organisms/ErrorRecoveryFlows/constants.ts new file mode 100644 index 00000000000..3c1a91c1d6f --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/constants.ts @@ -0,0 +1,134 @@ +import { css } from 'styled-components' + +import { SPACING, TYPOGRAPHY } from '@opentrons/components' + +import type { StepOrder } from './types' + +export const ERROR_KINDS = { + GENERAL_ERROR: 'GENERAL_ERROR', +} as const + +// TODO(jh, 05-09-24): Refactor to a directed graph. EXEC-430. +// Valid recovery routes and steps. +export const RECOVERY_MAP = { + BEFORE_BEGINNING: { + ROUTE: 'before-beginning', + STEPS: { + RECOVERY_DESCRIPTION: 'recovery-description', + }, + }, + CANCEL_RUN: { + ROUTE: 'cancel-run', + STEPS: { CONFIRM_CANCEL: 'confirm-cancel' }, + }, + DROP_TIP: { ROUTE: 'drop-tip', STEPS: {} }, + IGNORE_AND_RESUME: { ROUTE: 'ignore-and-resume', STEPS: {} }, + REFILL_AND_RESUME: { ROUTE: 'refill-and-resume', STEPS: {} }, + RETRY_FAILED_COMMAND: { + ROUTE: 'retry-failed-command', + STEPS: { CONFIRM_RETRY: 'confirm-retry' }, + }, + ROBOT_CANCELING: { + ROUTE: 'robot-cancel-run', + STEPS: { + CANCELING: 'canceling', + }, + }, + ROBOT_IN_MOTION: { + ROUTE: 'robot-in-motion', + STEPS: { + IN_MOTION: 'in-motion', + }, + }, + ROBOT_RESUMING: { + ROUTE: 'robot-resuming', + STEPS: { + RESUMING: 'resuming', + }, + }, + ROBOT_RETRYING_COMMAND: { + ROUTE: 'robot-retrying-command', + STEPS: { + RETRYING: 'retrying', + }, + }, + OPTION_SELECTION: { + ROUTE: 'option-selection', + STEPS: { SELECT: 'select' }, + }, +} as const + +const { + BEFORE_BEGINNING, + OPTION_SELECTION, + RETRY_FAILED_COMMAND, + ROBOT_CANCELING, + ROBOT_RESUMING, + ROBOT_IN_MOTION, + ROBOT_RETRYING_COMMAND, + DROP_TIP, + REFILL_AND_RESUME, + IGNORE_AND_RESUME, + CANCEL_RUN, +} = RECOVERY_MAP + +// The deterministic ordering of steps for a given route. +export const STEP_ORDER: StepOrder = { + [BEFORE_BEGINNING.ROUTE]: [BEFORE_BEGINNING.STEPS.RECOVERY_DESCRIPTION], + [OPTION_SELECTION.ROUTE]: [OPTION_SELECTION.STEPS.SELECT], + [RETRY_FAILED_COMMAND.ROUTE]: [RETRY_FAILED_COMMAND.STEPS.CONFIRM_RETRY], + [ROBOT_CANCELING.ROUTE]: [ROBOT_CANCELING.STEPS.CANCELING], + [ROBOT_IN_MOTION.ROUTE]: [ROBOT_IN_MOTION.STEPS.IN_MOTION], + [ROBOT_RESUMING.ROUTE]: [ROBOT_RESUMING.STEPS.RESUMING], + [ROBOT_RETRYING_COMMAND.ROUTE]: [ROBOT_RETRYING_COMMAND.STEPS.RETRYING], + [DROP_TIP.ROUTE]: [], + [REFILL_AND_RESUME.ROUTE]: [], + [IGNORE_AND_RESUME.ROUTE]: [], + [CANCEL_RUN.ROUTE]: [CANCEL_RUN.STEPS.CONFIRM_CANCEL], +} + +export const INVALID = 'INVALID' as const + +/** + * Styling + */ + +// These colors are temp and will be removed as design does design things. +export const NON_DESIGN_SANCTIONED_COLOR_1 = '#56FF00' +export const NON_DESIGN_SANCTIONED_COLOR_2 = '#FF00EF' + +export const NON_SANCTIONED_RECOVERY_COLOR_STYLE_PRIMARY = css` + background-color: ${NON_DESIGN_SANCTIONED_COLOR_1}; + + &:active { + background-color: ${NON_DESIGN_SANCTIONED_COLOR_2}; + } + &:hover { + background-color: ${NON_DESIGN_SANCTIONED_COLOR_1}; + } + &:focus { + background-color: ${NON_DESIGN_SANCTIONED_COLOR_2}; + } +` + +export const NON_SANCTIONED_RECOVERY_COLOR_STYLE_SECONDARY = css` + background-color: ${NON_DESIGN_SANCTIONED_COLOR_2}; + + &:active { + background-color: ${NON_DESIGN_SANCTIONED_COLOR_2}; + } + &:hover { + background-color: ${NON_DESIGN_SANCTIONED_COLOR_1}; + } + &:focus { + background-color: ${NON_DESIGN_SANCTIONED_COLOR_2}; + } +` + +export const BODY_TEXT_STYLE = css` + ${TYPOGRAPHY.bodyTextRegular}; +` + +export const ODD_SECTION_TITLE_STYLE = css` + margin-bottom: ${SPACING.spacing16}; +` diff --git a/app/src/organisms/ErrorRecoveryFlows/index.tsx b/app/src/organisms/ErrorRecoveryFlows/index.tsx new file mode 100644 index 00000000000..56f57f72157 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/index.tsx @@ -0,0 +1,113 @@ +import * as React from 'react' + +import { + RUN_STATUS_AWAITING_RECOVERY, + RUN_STATUS_STOP_REQUESTED, +} from '@opentrons/api-client' + +import { useFeatureFlag } from '../../redux/config' +import { ErrorRecoveryWizard, useERWizard } from './ErrorRecoveryWizard' +import { useRunPausedSplash, RunPausedSplash } from './RunPausedSplash' +import { useCurrentlyRecoveringFrom, useRouteUpdateActions } from './utils' +import { useRecoveryCommands } from './useRecoveryCommands' +import { RECOVERY_MAP } from './constants' + +import type { RunStatus } from '@opentrons/api-client' +import type { FailedCommand, IRecoveryMap } from './types' + +const VALID_ER_RUN_STATUSES: RunStatus[] = [ + RUN_STATUS_AWAITING_RECOVERY, + RUN_STATUS_STOP_REQUESTED, +] + +interface UseErrorRecoveryResult { + isERActive: boolean + failedCommand: FailedCommand | null +} + +export function useErrorRecoveryFlows( + runId: string, + runStatus: RunStatus | null +): UseErrorRecoveryResult { + const [isERActive, setIsERActive] = React.useState(false) + const failedCommand = useCurrentlyRecoveringFrom(runId, runStatus) + + const isValidRunStatus = + runStatus != null && VALID_ER_RUN_STATUSES.includes(runStatus) + + if (!isERActive && isValidRunStatus) { + setIsERActive(true) + } + // Because multiple ER flows may occur per run, disable ER when the status is not "awaiting-recovery" or a + // terminating run status in which we want to persist ER flows. Specific recovery commands cause run status to change. + // See a specific command's docstring for details. + else if (isERActive && !isValidRunStatus) { + setIsERActive(false) + } + + return { + isERActive, + failedCommand, + } +} + +interface ErrorRecoveryFlowsProps { + runId: string + failedCommand: FailedCommand | null +} + +export function ErrorRecoveryFlows({ + runId, + failedCommand, +}: ErrorRecoveryFlowsProps): JSX.Element | null { + const enableRunNotes = useFeatureFlag('enableRunNotes') + const { hasLaunchedRecovery, toggleERWizard, showERWizard } = useERWizard() + const showSplash = useRunPausedSplash() + + /** + * ER Wizard routing. + * Recovery Route: A logically-related collection of recovery steps or a single step if unrelated to any existing recovery route. + * Recovery Step: Analogous to a "step" in other wizard flows. + */ + const [recoveryMap, setRecoveryMap] = React.useState({ + route: RECOVERY_MAP.OPTION_SELECTION.ROUTE, + step: RECOVERY_MAP.OPTION_SELECTION.STEPS.SELECT, + }) + + const routeUpdateActions = useRouteUpdateActions({ + hasLaunchedRecovery, + recoveryMap, + toggleERWizard, + setRecoveryMap, + }) + + const recoveryCommands = useRecoveryCommands({ + runId, + failedCommand, + }) + + if (!enableRunNotes) { + return null + } + + return ( + <> + {showERWizard ? ( + + ) : null} + {showSplash ? ( + + ) : null} + + ) +} diff --git a/app/src/organisms/ErrorRecoveryFlows/types.ts b/app/src/organisms/ErrorRecoveryFlows/types.ts new file mode 100644 index 00000000000..4630722ec68 --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/types.ts @@ -0,0 +1,69 @@ +import type { RunCommandSummary } from '@opentrons/api-client' +import type { ERROR_KINDS, RECOVERY_MAP, INVALID } from './constants' +import type { UseRouteUpdateActionsResult } from './utils' +import type { UseRecoveryCommandsResult } from './useRecoveryCommands' + +export type FailedCommand = RunCommandSummary +export type InvalidStep = typeof INVALID +export type RecoveryRoute = typeof RECOVERY_MAP[keyof typeof RECOVERY_MAP]['ROUTE'] +export type RobotMovingRoute = + | typeof RECOVERY_MAP['ROBOT_IN_MOTION']['ROUTE'] + | typeof RECOVERY_MAP['ROBOT_RESUMING']['ROUTE'] + | typeof RECOVERY_MAP['ROBOT_RETRYING_COMMAND']['ROUTE'] + | typeof RECOVERY_MAP['ROBOT_CANCELING']['ROUTE'] +export type ErrorKind = keyof typeof ERROR_KINDS + +interface RecoveryMapDetails { + ROUTE: string + STEPS: Record + STEP_ORDER: RouteStep +} + +export type RecoveryMap = Record +export type StepOrder = { + [K in RecoveryRoute]: RouteStep[] +} + +type RecoveryStep< + K extends keyof RecoveryMap +> = RecoveryMap[K]['STEPS'][keyof RecoveryMap[K]['STEPS']] + +type RobotCancellingRunStep = RecoveryStep<'ROBOT_CANCELING'> +type RobotInMotionStep = RecoveryStep<'ROBOT_IN_MOTION'> +type RobotResumingStep = RecoveryStep<'ROBOT_RESUMING'> +type RobotRetryingCommandStep = RecoveryStep<'ROBOT_RETRYING_COMMAND'> +type BeforeBeginningStep = RecoveryStep<'BEFORE_BEGINNING'> +type CancelRunStep = RecoveryStep<'CANCEL_RUN'> +type DropTipStep = RecoveryStep<'DROP_TIP'> +type IgnoreAndResumeStep = RecoveryStep<'IGNORE_AND_RESUME'> +type RefillAndResumeStep = RecoveryStep<'REFILL_AND_RESUME'> +type ResumeStep = RecoveryStep<'RESUME'> +type OptionSelectionStep = RecoveryStep<'OPTION_SELECTION'> + +export type RouteStep = + | RobotInMotionStep + | RobotResumingStep + | RobotRetryingCommandStep + | BeforeBeginningStep + | CancelRunStep + | DropTipStep + | IgnoreAndResumeStep + | ResumeStep + | OptionSelectionStep + | RefillAndResumeStep + | RobotCancellingRunStep + +export interface IRecoveryMap { + route: RecoveryRoute + step: RouteStep +} + +export interface RecoveryContentProps { + failedCommand: FailedCommand | null + errorKind: ErrorKind + isOnDevice: boolean + recoveryMap: IRecoveryMap + routeUpdateActions: UseRouteUpdateActionsResult + recoveryCommands: UseRecoveryCommandsResult + hasLaunchedRecovery: boolean +} diff --git a/app/src/organisms/ErrorRecoveryFlows/useRecoveryCommands.ts b/app/src/organisms/ErrorRecoveryFlows/useRecoveryCommands.ts new file mode 100644 index 00000000000..2a9e26c0dcf --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/useRecoveryCommands.ts @@ -0,0 +1,82 @@ +import * as React from 'react' + +import { + useResumeRunFromRecoveryMutation, + useStopRunMutation, +} from '@opentrons/react-api-client' + +import { useChainRunCommands } from '../../resources/runs' + +import type { CreateCommand } from '@opentrons/shared-data' +import type { CommandData } from '@opentrons/api-client' +import type { FailedCommand } from './types' + +interface UseRecoveryCommandsParams { + runId: string + failedCommand: FailedCommand | null +} +export interface UseRecoveryCommandsResult { + /* A terminal recovery command that causes ER to exit as the run status becomes "running" */ + resumeRun: () => void + /* A terminal recovery command that causes ER to exit as the run status becomes "stop-requested" */ + cancelRun: () => void + /* A non-terminal recovery command */ + retryFailedCommand: () => Promise + /* A non-terminal recovery command */ + homePipetteZAxes: () => Promise +} +// Returns commands with a "fixit" intent. Commands may or may not terminate Error Recovery. See each command docstring for details. +export function useRecoveryCommands({ + runId, + failedCommand, +}: UseRecoveryCommandsParams): UseRecoveryCommandsResult { + const { chainRunCommands } = useChainRunCommands(runId, failedCommand?.id) + const { resumeRunFromRecovery } = useResumeRunFromRecoveryMutation() + const { stopRun } = useStopRunMutation() + + const chainRunRecoveryCommands = React.useCallback( + ( + commands: CreateCommand[], + continuePastFailure: boolean = true + ): Promise => + chainRunCommands(commands, continuePastFailure).catch(e => { + // the catch never occurs if continuePastCommandFailure is "true" + return Promise.reject(new Error(`placeholder error ${e}`)) + }), + [chainRunCommands] + ) + + const retryFailedCommand = React.useCallback((): Promise => { + const { commandType, params } = failedCommand as FailedCommand // Null case is handled before command could be issued. + + return chainRunRecoveryCommands([ + { commandType, params }, + ] as CreateCommand[]) // the created command is the same command that failed + }, [chainRunRecoveryCommands, failedCommand]) + + // Homes the Z-axis of all attached pipettes. + const homePipetteZAxes = React.useCallback((): Promise => { + return chainRunRecoveryCommands([HOME_PIPETTE_Z_AXES]) + }, [chainRunRecoveryCommands]) + + const resumeRun = React.useCallback((): void => { + resumeRunFromRecovery(runId) + }, [runId, resumeRunFromRecovery]) + + const cancelRun = React.useCallback((): void => { + stopRun(runId) + }, [runId]) + + return { + resumeRun, + cancelRun, + retryFailedCommand, + homePipetteZAxes, + } +} + +export const HOME_PIPETTE_Z_AXES: CreateCommand = { + commandType: 'home', + params: { axes: ['leftZ', 'rightZ'] }, + intent: 'fixit', +} diff --git a/app/src/organisms/ErrorRecoveryFlows/utils.ts b/app/src/organisms/ErrorRecoveryFlows/utils.ts new file mode 100644 index 00000000000..3e123cc76ca --- /dev/null +++ b/app/src/organisms/ErrorRecoveryFlows/utils.ts @@ -0,0 +1,252 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import head from 'lodash/head' +import last from 'lodash/last' + +import { RUN_STATUS_AWAITING_RECOVERY } from '@opentrons/api-client' +import { useCommandQuery } from '@opentrons/react-api-client' + +import { useNotifyAllCommandsQuery } from '../../resources/runs' +import { RECOVERY_MAP, ERROR_KINDS, INVALID, STEP_ORDER } from './constants' + +import type { RunStatus } from '@opentrons/api-client' +import type { + RouteStep, + IRecoveryMap, + RecoveryRoute, + ErrorKind, + RobotMovingRoute, + FailedCommand, +} from './types' + +// TODO(jh, 05-09-24): Migrate utils, useRecoveryCommands.ts, and respective tests to a utils dir, and make each util a separate file. + +const ALL_COMMANDS_POLL_MS = 5000 + +// Return the `currentlyRecoveringFrom` command returned by the server, if any. +// Otherwise, returns null. +export function useCurrentlyRecoveringFrom( + runId: string, + runStatus: RunStatus | null +): FailedCommand | null { + // There can only be a currentlyRecoveringFrom command when the run is awaiting-recovery. + // In case we're falling back to polling, only enable queries when that is the case. + const isRunStatusAwaitingRecovery = runStatus === RUN_STATUS_AWAITING_RECOVERY + + const { data: allCommandsQueryData } = useNotifyAllCommandsQuery( + runId, + { cursor: null, pageLength: 0 }, // pageLength 0 because we only care about the links. + { + enabled: isRunStatusAwaitingRecovery, + refetchInterval: ALL_COMMANDS_POLL_MS, + } + ) + const currentlyRecoveringFromLink = + allCommandsQueryData?.links.currentlyRecoveringFrom + + // TODO(mm, 2024-05-21): When the server supports fetching the + // currentlyRecoveringFrom command in one step, do that instead of this chained query. + const { data: commandQueryData } = useCommandQuery( + currentlyRecoveringFromLink?.meta.runId ?? null, + currentlyRecoveringFromLink?.meta.commandId ?? null, + { + enabled: + currentlyRecoveringFromLink != null && isRunStatusAwaitingRecovery, + } + ) + + return isRunStatusAwaitingRecovery ? commandQueryData?.data ?? null : null +} + +export function useErrorName(errorKind: ErrorKind): string { + const { t } = useTranslation('error_recovery') + + switch (errorKind) { + default: + return t('general_error') + } +} + +// The generalized error message shown to the user in select locations. +export function useErrorMessage(errorKind: ErrorKind): string { + const { t } = useTranslation('error_recovery') + + switch (errorKind) { + default: + return t('general_error_message') + } +} + +export function getErrorKind(errorType?: string): ErrorKind { + switch (errorType) { + default: + return ERROR_KINDS.GENERAL_ERROR + } +} + +export interface GetRouteUpdateActionsParams { + hasLaunchedRecovery: boolean + toggleERWizard: (launchER: boolean) => Promise + recoveryMap: IRecoveryMap + setRecoveryMap: (recoveryMap: IRecoveryMap) => void +} +export interface UseRouteUpdateActionsResult { + goBackPrevStep: () => Promise + proceedNextStep: () => Promise + proceedToRoute: (route: RecoveryRoute) => Promise + setRobotInMotion: ( + inMotion: boolean, + movingRoute?: RobotMovingRoute + ) => Promise +} +// Utilities related to routing within the error recovery flows. +export function useRouteUpdateActions( + routeUpdateActionsParams: GetRouteUpdateActionsParams +): UseRouteUpdateActionsResult { + const { recoveryMap, setRecoveryMap } = routeUpdateActionsParams + const { route: currentRoute, step: currentStep } = recoveryMap + const stashedMapRef = React.useRef(null) + const { OPTION_SELECTION, ROBOT_IN_MOTION } = RECOVERY_MAP + + // Redirect to the previous step for the current route if it exists, otherwise redirects to the option selection route. + const goBackPrevStep = React.useCallback((): Promise => { + return new Promise((resolve, reject) => { + const { getPrevStep } = getRecoveryRouteNavigation(currentRoute) + const updatedStep = getPrevStep(currentStep) + + return determineRecoveryRouting({ + currentRoute, + updatedStep, + ...routeUpdateActionsParams, + }).then(() => resolve()) + }) + }, [currentStep, currentRoute, routeUpdateActionsParams]) + + // Redirect to the next step for the current route if it exists, otherwise redirects to the option selection route. + const proceedNextStep = React.useCallback((): Promise => { + return new Promise((resolve, reject) => { + const { getNextStep } = getRecoveryRouteNavigation(currentRoute) + const updatedStep = getNextStep(currentStep) + + return determineRecoveryRouting({ + currentRoute, + updatedStep, + ...routeUpdateActionsParams, + }).then(() => resolve()) + }) + }, [currentStep, currentRoute, routeUpdateActionsParams]) + + // Redirect to a specific route. + const proceedToRoute = React.useCallback( + (route: RecoveryRoute): Promise => { + return new Promise((resolve, reject) => { + const newFlowSteps = STEP_ORDER[route] + setRecoveryMap({ route, step: head(newFlowSteps) as RouteStep }) + resolve() + }) + }, + [] + ) + + // Stashes the current map then sets the current map to robot in motion. Restores the map after motion completes. + const setRobotInMotion = React.useCallback( + (inMotion: boolean, robotMovingRoute?: RobotMovingRoute): Promise => { + return new Promise((resolve, reject) => { + if (inMotion) { + if (stashedMapRef.current == null) { + stashedMapRef.current = { route: currentRoute, step: currentStep } + } + + const route = robotMovingRoute ?? ROBOT_IN_MOTION.ROUTE + const step = + robotMovingRoute != null + ? (head(STEP_ORDER[robotMovingRoute]) as RouteStep) + : ROBOT_IN_MOTION.STEPS.IN_MOTION + setRecoveryMap({ route, step }) + } else { + if (stashedMapRef.current != null) { + setRecoveryMap(stashedMapRef.current) + stashedMapRef.current = null + } else { + setRecoveryMap({ + route: OPTION_SELECTION.ROUTE, + step: OPTION_SELECTION.STEPS.SELECT, + }) + } + } + + resolve() + }) + }, + [currentRoute, currentStep] + ) + + return { goBackPrevStep, proceedNextStep, proceedToRoute, setRobotInMotion } +} + +interface IRecoveryRouteNavigation { + getNextStep: (step: RouteStep) => RouteStep | typeof INVALID + getPrevStep: (step: RouteStep) => RouteStep | typeof INVALID +} +// Returns functions that calculate the next and previous steps of a route given a step. +export function getRecoveryRouteNavigation( + route: RecoveryRoute +): IRecoveryRouteNavigation { + const getNextStep = (step: RouteStep): RouteStep => { + const routeSteps = STEP_ORDER[route] + const isStepFinalStep = step === last(routeSteps) + + if (isStepFinalStep) { + return INVALID + } else { + const stepIndex = routeSteps.indexOf(step) + return stepIndex !== -1 ? routeSteps[stepIndex + 1] : INVALID + } + } + + const getPrevStep = (step: RouteStep): RouteStep | typeof INVALID => { + const routeSteps = STEP_ORDER[route] + const isStepFirstStep = step === head(routeSteps) + + if (isStepFirstStep) { + return INVALID + } else { + const stepIndex = routeSteps.indexOf(step) + return stepIndex !== -1 ? routeSteps[stepIndex - 1] : INVALID + } + } + + return { getNextStep, getPrevStep } +} + +interface DetermineRecoveryRoutingParams extends GetRouteUpdateActionsParams { + updatedStep: string + currentRoute: RecoveryRoute +} +// Determine the valid recovery map given the current step. +// Because RunPausedSplash has access to some ER Wiz routes but is not a part of the ER wizard, the splash +// is the fallback route as opposed to SelectRecoveryOption (ex, accessed by pressing "go back" enough times). +function determineRecoveryRouting({ + hasLaunchedRecovery, + toggleERWizard, + setRecoveryMap, + updatedStep, + currentRoute, +}: DetermineRecoveryRoutingParams): Promise { + const { OPTION_SELECTION } = RECOVERY_MAP + + if (updatedStep === INVALID) { + setRecoveryMap({ + route: OPTION_SELECTION.ROUTE, + step: OPTION_SELECTION.STEPS.SELECT, + }) + + if (!hasLaunchedRecovery) { + void toggleERWizard(false) + } + } else { + setRecoveryMap({ route: currentRoute, step: updatedStep }) + } + + return Promise.resolve() +} diff --git a/app/src/organisms/FirmwareUpdateModal/__tests__/FirmwareUpdateModal.test.tsx b/app/src/organisms/FirmwareUpdateModal/__tests__/FirmwareUpdateModal.test.tsx index 6c49288b30e..a889ece33fd 100644 --- a/app/src/organisms/FirmwareUpdateModal/__tests__/FirmwareUpdateModal.test.tsx +++ b/app/src/organisms/FirmwareUpdateModal/__tests__/FirmwareUpdateModal.test.tsx @@ -10,7 +10,7 @@ import { } from '@opentrons/react-api-client' import { i18n } from '../../../i18n' import { FirmwareUpdateModal } from '..' -import { +import type { BadPipette, PipetteData, SubsystemUpdateProgressData, diff --git a/app/src/organisms/GripperWizardFlows/types.ts b/app/src/organisms/GripperWizardFlows/types.ts index 584346392c3..ece9ff9a4c0 100644 --- a/app/src/organisms/GripperWizardFlows/types.ts +++ b/app/src/organisms/GripperWizardFlows/types.ts @@ -1,4 +1,6 @@ -import { +import type { useCreateCommandMutation } from '@opentrons/react-api-client' +import type { Coordinates, CreateCommand } from '@opentrons/shared-data' +import type { SECTIONS, GRIPPER_FLOW_TYPES, MOVE_PIN_FROM_FRONT_JAW_TO_REAR_JAW, @@ -9,8 +11,6 @@ import { SUCCESSFULLY_DETACHED, SUCCESSFULLY_CALIBRATED, } from './constants' -import { useCreateCommandMutation } from '@opentrons/react-api-client' -import type { Coordinates, CreateCommand } from '@opentrons/shared-data' export type GripperWizardStep = | BeforeBeginningStep diff --git a/app/src/organisms/IncompatibleModule/IncompatibleModuleDesktopModalBody.tsx b/app/src/organisms/IncompatibleModule/IncompatibleModuleDesktopModalBody.tsx new file mode 100644 index 00000000000..ac4c8c5993d --- /dev/null +++ b/app/src/organisms/IncompatibleModule/IncompatibleModuleDesktopModalBody.tsx @@ -0,0 +1,92 @@ +import * as React from 'react' +import { useTranslation, Trans } from 'react-i18next' +import { + DIRECTION_COLUMN, + DIRECTION_ROW, + ALIGN_CENTER, + JUSTIFY_FLEX_START, + Flex, + SPACING, + StyledText, + TYPOGRAPHY, + OVERFLOW_SCROLL, + Icon, + COLORS, +} from '@opentrons/components' +import { getModuleDisplayName } from '@opentrons/shared-data' +import type { AttachedModule } from '@opentrons/api-client' +import { useIsFlex } from '../Devices/hooks' +import { InterventionModal } from '../../molecules/InterventionModal' +export interface IncompatibleModuleDesktopModalBodyProps { + modules: AttachedModule[] + robotName: string +} + +export function IncompatibleModuleDesktopModalBody({ + modules, + robotName, +}: IncompatibleModuleDesktopModalBodyProps): JSX.Element { + const { t } = useTranslation('incompatible_modules') + const isFlex = useIsFlex(robotName) + const displayName = isFlex ? 'Flex' : 'OT-2' + return ( + + } + type="error" + > + + + {modules.map(module => ( +
  • + + + + + + +
  • + ))} + + + + + + + ) +} diff --git a/app/src/organisms/IncompatibleModule/IncompatibleModuleODDModalBody.tsx b/app/src/organisms/IncompatibleModule/IncompatibleModuleODDModalBody.tsx new file mode 100644 index 00000000000..fb4981c0c71 --- /dev/null +++ b/app/src/organisms/IncompatibleModule/IncompatibleModuleODDModalBody.tsx @@ -0,0 +1,55 @@ +import * as React from 'react' +import { useTranslation, Trans } from 'react-i18next' +import capitalize from 'lodash/capitalize' +import { + DIRECTION_COLUMN, + Flex, + SPACING, + StyledText, + TYPOGRAPHY, + OVERFLOW_SCROLL, +} from '@opentrons/components' +import { getModuleDisplayName } from '@opentrons/shared-data' +import type { AttachedModule } from '@opentrons/api-client' +import { Modal } from '../../molecules/Modal' +import { ListItem } from '../../atoms/ListItem' +import type { ModalHeaderBaseProps } from '../../molecules/Modal/types' +export interface IncompatibleModuleODDModalBodyProps { + modules: AttachedModule[] +} + +export function IncompatibleModuleODDModalBody({ + modules, +}: IncompatibleModuleODDModalBodyProps): JSX.Element { + const { t } = useTranslation('incompatible_modules') + const incompatibleModuleHeader: ModalHeaderBaseProps = { + title: capitalize(t('incompatible_modules_attached')), + } + return ( + + + + + + + {modules.map(module => ( + + + {getModuleDisplayName(module.moduleModel)} + + + ))} + + + + ) +} diff --git a/app/src/organisms/IncompatibleModule/IncompatibleModuleTakeover.tsx b/app/src/organisms/IncompatibleModule/IncompatibleModuleTakeover.tsx new file mode 100644 index 00000000000..3be98ad14fc --- /dev/null +++ b/app/src/organisms/IncompatibleModule/IncompatibleModuleTakeover.tsx @@ -0,0 +1,39 @@ +import * as React from 'react' +import { createPortal } from 'react-dom' +import { IncompatibleModuleODDModalBody } from './IncompatibleModuleODDModalBody' +import { IncompatibleModuleDesktopModalBody } from './IncompatibleModuleDesktopModalBody' +import { getTopPortalEl, getModalPortalEl } from '../../App/portal' +import { useIncompatibleModulesAttached } from './hooks' + +const POLL_INTERVAL_MS = 5000 + +export interface IncompatibleModuleTakeoverProps { + isOnDevice: boolean + robotName?: string +} + +export function IncompatibleModuleTakeover({ + isOnDevice, + robotName, +}: IncompatibleModuleTakeoverProps): JSX.Element | null { + const incompatibleModules = useIncompatibleModulesAttached({ + refetchInterval: POLL_INTERVAL_MS, + }) + if (incompatibleModules.length === 0) { + return null + } + if (isOnDevice) { + return createPortal( + , + getTopPortalEl() + ) + } else { + return createPortal( + , + getModalPortalEl() + ) + } +} diff --git a/app/src/organisms/IncompatibleModule/__fixtures__/index.ts b/app/src/organisms/IncompatibleModule/__fixtures__/index.ts new file mode 100644 index 00000000000..35399d22450 --- /dev/null +++ b/app/src/organisms/IncompatibleModule/__fixtures__/index.ts @@ -0,0 +1,154 @@ +export const oneIncompatibleModule = [ + { + id: '3feb840a3fa2dac2409b977f1e330f54f50e6231', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: false, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, +] +export const manyIncompatibleModules = [ + { + id: '3feb840a3fa2dac2409b977f1e330f54f50e6231', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: false, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: 'aojfhkalshdaoahosifhoaisdada', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: false, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: 'asojhfaohsoihfjaoisodaalallala', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: false, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: 'sfaoisdfolasda09sd09aaaaaaaaaa', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: false, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: 'oasihfa980109109dm011', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: false, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, +] diff --git a/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleDesktopModalBody.test.tsx b/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleDesktopModalBody.test.tsx new file mode 100644 index 00000000000..b3d7fc7bbf3 --- /dev/null +++ b/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleDesktopModalBody.test.tsx @@ -0,0 +1,54 @@ +import React from 'react' +import { screen } from '@testing-library/react' +import { describe, it, beforeEach, vi } from 'vitest' +import { when } from 'vitest-when' +import '@testing-library/jest-dom/vitest' +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { IncompatibleModuleDesktopModalBody } from '../IncompatibleModuleDesktopModalBody' +import { useIsFlex } from '../../Devices/hooks' +import * as Fixtures from '../__fixtures__' + +vi.mock('../../Devices/hooks') + +const getRenderer = (isFlex: boolean) => { + when(useIsFlex).calledWith('otie').thenReturn(isFlex) + return ( + props: React.ComponentProps + ) => { + return renderWithProviders( + , + { + i18nInstance: i18n, + } + )[0] + } +} + +describe('IncompatibleModuleDesktopModalBody', () => { + let props: React.ComponentProps + beforeEach(() => { + props = { + modules: [], + robotName: 'otie', + } + }) + + it('should render i18nd footer text', () => { + props = { ...props, modules: Fixtures.oneIncompatibleModule as any } + getRenderer(true)(props) + screen.getByText( + 'You must remove incompatible modules before using this robot.' + ) + screen.getByText('otie needs your assistance') + }) + ;['Flex', 'OT-2'].forEach(robotKind => + it(`should render a module card that says ${robotKind}`, () => { + props = { ...props, modules: Fixtures.oneIncompatibleModule as any } + getRenderer(robotKind === 'Flex')(props) + screen.getByText( + `Thermocycler Module GEN1 is not compatible with the ${robotKind}` + ) + }) + ) +}) diff --git a/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleODDModalBody.test.tsx b/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleODDModalBody.test.tsx new file mode 100644 index 00000000000..ce63b26ed88 --- /dev/null +++ b/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleODDModalBody.test.tsx @@ -0,0 +1,45 @@ +import React from 'react' +import { screen } from '@testing-library/react' +import { describe, it, beforeEach, expect } from 'vitest' +import '@testing-library/jest-dom/vitest' +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { IncompatibleModuleODDModalBody } from '../IncompatibleModuleODDModalBody' +import * as Fixtures from '../__fixtures__' + +const render = ( + props: React.ComponentProps +) => { + return renderWithProviders(, { + i18nInstance: i18n, + })[0] +} + +describe('IncompatibleModuleODDModalBody', () => { + let props: React.ComponentProps + beforeEach(() => { + props = { + modules: [], + } + }) + + it('should render i18nd header text', () => { + props = { ...props, modules: Fixtures.oneIncompatibleModule as any } + render(props) + screen.getByText('Incompatible module detected') + screen.getByText('Remove the following hardware before running a protocol:') + }) + + it('should render a module card', () => { + props = { ...props, modules: Fixtures.oneIncompatibleModule as any } + render(props) + screen.getByText('Thermocycler Module GEN1') + }) + + it('should overflow via scroll', () => { + props = { ...props, modules: Fixtures.manyIncompatibleModules as any } + render(props) + const labels = screen.getAllByText('Thermocycler Module GEN1') + expect(labels).toHaveLength(Fixtures.manyIncompatibleModules.length) + }) +}) diff --git a/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleTakeover.test.tsx b/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleTakeover.test.tsx new file mode 100644 index 00000000000..d5c31e5cf3a --- /dev/null +++ b/app/src/organisms/IncompatibleModule/__tests__/IncompatibleModuleTakeover.test.tsx @@ -0,0 +1,94 @@ +import React from 'react' +import { screen, findByText } from '@testing-library/react' +import { describe, it, beforeEach, afterEach, expect, vi } from 'vitest' +import { when } from 'vitest-when' +import '@testing-library/jest-dom/vitest' +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { IncompatibleModuleTakeover } from '../IncompatibleModuleTakeover' +import { IncompatibleModuleODDModalBody } from '../IncompatibleModuleODDModalBody' +import { IncompatibleModuleDesktopModalBody } from '../IncompatibleModuleDesktopModalBody' +import { useIncompatibleModulesAttached } from '../hooks' +import type { AttachedModule } from '@opentrons/api-client' +import { + PortalRoot, + TopPortalRoot, + MODAL_PORTAL_ID, + TOP_PORTAL_ID, +} from '../../../App/portal' +import * as Fixtures from '../__fixtures__' + +vi.mock('../hooks') +vi.mock('../IncompatibleModuleODDModalBody') +vi.mock('../IncompatibleModuleDesktopModalBody') + +const getRenderer = (incompatibleModules: AttachedModule[]) => { + when(useIncompatibleModulesAttached) + .calledWith(expect.anything()) + .thenReturn(incompatibleModules) + vi.mocked(IncompatibleModuleODDModalBody).mockReturnValue( +
    TEST ELEMENT ODD
    + ) + vi.mocked(IncompatibleModuleDesktopModalBody).mockReturnValue( +
    TEST ELEMENT DESKTOP
    + ) + return (props: React.ComponentProps) => { + const [rendered] = renderWithProviders( + <> + + + + , + { + i18nInstance: i18n, + } + ) + rendered.rerender( + <> + + + + + ) + return rendered + } +} + +describe('IncompatibleModuleTakeover', () => { + let props: React.ComponentProps + beforeEach(() => { + props = { isOnDevice: true } + }) + + afterEach(() => { + vi.restoreAllMocks() + }) + ;['desktop', 'odd'].forEach(target => { + it(`should render nothing on ${target} when no incompatible modules are attached`, () => { + getRenderer([])({ ...props, isOnDevice: target === 'odd' }) + expect(screen.findByTestId(TOP_PORTAL_ID)).resolves.toBeEmptyDOMElement() + expect( + screen.findByTestId(MODAL_PORTAL_ID) + ).resolves.toBeEmptyDOMElement() + expect(screen.queryByText(/TEST ELEMENT/)).toBeNull() + }) + }) + + it('should render the modal body on odd when incompatible modules are attached', async () => { + getRenderer(Fixtures.oneIncompatibleModule as any)({ + ...props, + isOnDevice: true, + }) + const container = await screen.findByTestId(TOP_PORTAL_ID) + await findByText(container, 'TEST ELEMENT ODD') + }) + + it('should render the modal body on desktop when incompatible modules are attached', async () => { + getRenderer(Fixtures.oneIncompatibleModule as any)({ + ...props, + isOnDevice: false, + }) + const container = await screen.findByTestId(MODAL_PORTAL_ID) + await findByText(container, 'TEST ELEMENT DESKTOP') + }) +}) diff --git a/app/src/organisms/IncompatibleModule/hooks/__fixtures__/incompatibleModuleFixtures.ts b/app/src/organisms/IncompatibleModule/hooks/__fixtures__/incompatibleModuleFixtures.ts new file mode 100644 index 00000000000..fbe7141b4ce --- /dev/null +++ b/app/src/organisms/IncompatibleModule/hooks/__fixtures__/incompatibleModuleFixtures.ts @@ -0,0 +1,386 @@ +export const mockModulesAllNotImplementedResponse = [ + { + id: '3feb840a3fa2dac2409b977f1e330f54f50e6231', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '8bcc37fdfcb4c2b5ab69963c589ceb1f9b1d1c4f', + serialNumber: 'dummySerialHS', + firmwareVersion: 'dummyVersionHS', + hardwareRevision: 'dummyModelHS', + hasAvailableUpdate: false, + moduleType: 'heaterShakerModuleType', + moduleModel: 'heaterShakerModuleV1', + data: { + status: 'idle', + labwareLatchStatus: 'idle_unknown', + speedStatus: 'idle', + currentSpeed: 0, + temperatureStatus: 'idle', + currentTemperature: 23.0, + targetSpeed: null, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '5fe40b412e39c6c079125b5dd4820ad8044e0962', + serialNumber: 'dummySerialTD', + firmwareVersion: 'dummyVersionTD', + hardwareRevision: 'temp_deck_v1.1', + hasAvailableUpdate: false, + moduleType: 'temperatureModuleType', + moduleModel: 'temperatureModuleV1', + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '67a5b5118a952417b4aa47a62a96deccb13bed32', + serialNumber: 'dummySerialMD', + firmwareVersion: 'dummyVersionMD', + hardwareRevision: 'mag_deck_v1.1', + hasAvailableUpdate: false, + moduleType: 'magneticModuleType', + moduleModel: 'magneticModuleV1', + data: { + status: 'engaged', + engaged: true, + height: 4.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, +] + +export const mockModulesAllCompatibleResponse = [ + { + id: '3feb840a3fa2dac2409b977f1e330f54f50e6231', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: true, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '8bcc37fdfcb4c2b5ab69963c589ceb1f9b1d1c4f', + serialNumber: 'dummySerialHS', + firmwareVersion: 'dummyVersionHS', + hardwareRevision: 'dummyModelHS', + hasAvailableUpdate: false, + moduleType: 'heaterShakerModuleType', + moduleModel: 'heaterShakerModuleV1', + compatibleWithRobot: true, + data: { + status: 'idle', + labwareLatchStatus: 'idle_unknown', + speedStatus: 'idle', + currentSpeed: 0, + temperatureStatus: 'idle', + currentTemperature: 23.0, + targetSpeed: null, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '5fe40b412e39c6c079125b5dd4820ad8044e0962', + serialNumber: 'dummySerialTD', + firmwareVersion: 'dummyVersionTD', + hardwareRevision: 'temp_deck_v1.1', + hasAvailableUpdate: false, + moduleType: 'temperatureModuleType', + moduleModel: 'temperatureModuleV1', + compatibleWithRobot: true, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '67a5b5118a952417b4aa47a62a96deccb13bed32', + serialNumber: 'dummySerialMD', + firmwareVersion: 'dummyVersionMD', + hardwareRevision: 'mag_deck_v1.1', + hasAvailableUpdate: false, + moduleType: 'magneticModuleType', + moduleModel: 'magneticModuleV1', + compatibleWithRobot: true, + data: { + status: 'engaged', + engaged: true, + height: 4.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, +] + +export const mockModulesWithOneIncompatibleResponse = [ + { + id: '3feb840a3fa2dac2409b977f1e330f54f50e6231', + serialNumber: 'dummySerialTC', + firmwareVersion: 'dummyVersionTC', + hardwareRevision: 'dummyModelTC', + hasAvailableUpdate: false, + moduleType: 'thermocyclerModuleType', + moduleModel: 'thermocyclerModuleV1', + compatibleWithRobot: false, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + lidStatus: 'open', + lidTemperature: 4.0, + lidTargetTemperature: 4.0, + holdTime: 121.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '8bcc37fdfcb4c2b5ab69963c589ceb1f9b1d1c4f', + serialNumber: 'dummySerialHS', + firmwareVersion: 'dummyVersionHS', + hardwareRevision: 'dummyModelHS', + hasAvailableUpdate: false, + moduleType: 'heaterShakerModuleType', + moduleModel: 'heaterShakerModuleV1', + compatibleWithRobot: true, + data: { + status: 'idle', + labwareLatchStatus: 'idle_unknown', + speedStatus: 'idle', + currentSpeed: 0, + temperatureStatus: 'idle', + currentTemperature: 23.0, + targetSpeed: null, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '5fe40b412e39c6c079125b5dd4820ad8044e0962', + serialNumber: 'dummySerialTD', + firmwareVersion: 'dummyVersionTD', + hardwareRevision: 'temp_deck_v1.1', + hasAvailableUpdate: false, + moduleType: 'temperatureModuleType', + moduleModel: 'temperatureModuleV1', + compatibleWithRobot: true, + data: { + status: 'holding at target', + currentTemperature: 3.0, + targetTemperature: 3.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, + { + id: '67a5b5118a952417b4aa47a62a96deccb13bed32', + serialNumber: 'dummySerialMD', + firmwareVersion: 'dummyVersionMD', + hardwareRevision: 'mag_deck_v1.1', + hasAvailableUpdate: false, + moduleType: 'magneticModuleType', + moduleModel: 'magneticModuleV1', + compatibleWithRobot: true, + data: { + status: 'engaged', + engaged: true, + height: 4.0, + }, + usbPort: { + port: 0, + path: '', + hub: false, + portGroup: 'unknown', + }, + }, +] + +export const v2MockModulesResponse = [ + { + name: 'thermocycler', + displayName: 'thermocycler', + moduleModel: 'thermocyclerModuleV1', + port: '/dev/ot_module_sim_thermocycler0', + usbPort: { + port: 0, + hub: false, + portGroup: 'unknown', + path: '', + }, + serial: 'dummySerialTC', + model: 'dummyModelTC', + revision: 'dummyModelTC', + fwVersion: 'dummyVersionTC', + hasAvailableUpdate: false, + status: 'holding at target', + data: { + lid: 'open', + lidTarget: 4.0, + lidTemp: 4.0, + currentTemp: 3.0, + targetTemp: 3.0, + holdTime: 121.0, + rampRate: null, + currentCycleIndex: null, + totalCycleCount: null, + currentStepIndex: null, + totalStepCount: null, + }, + }, + { + name: 'heatershaker', + displayName: 'heatershaker', + moduleModel: 'heaterShakerModuleV1', + port: '/dev/ot_module_sim_heatershaker1', + usbPort: { + hub: false, + portGroup: 'unknown', + path: '', + port: 0, + }, + serial: 'dummySerialHS', + model: 'dummyModelHS', + revision: 'dummyModelHS', + fwVersion: 'dummyVersionHS', + hasAvailableUpdate: false, + status: 'idle', + data: { + labwareLatchStatus: 'idle_unknown', + speedStatus: 'idle', + temperatureStatus: 'idle', + currentSpeed: 0, + currentTemp: 23.0, + targetSpeed: null, + targetTemp: null, + errorDetails: null, + }, + }, + { + name: 'tempdeck', + displayName: 'tempdeck', + moduleModel: 'temperatureModuleV1', + port: '/dev/ot_module_sim_tempdeck2', + usbPort: { + hub: false, + portGroup: 'unknown', + path: '', + port: 0, + }, + serial: 'dummySerialTD', + model: 'temp_deck_v1.1', + revision: 'temp_deck_v1.1', + fwVersion: 'dummyVersionTD', + hasAvailableUpdate: false, + status: 'holding at target', + data: { + currentTemp: 3.0, + targetTemp: 3.0, + }, + }, + { + name: 'magdeck', + displayName: 'magdeck', + moduleModel: 'magneticModuleV1', + port: '/dev/ot_module_sim_magdeck3', + usbPort: { + port: 0, + hub: false, + portGroup: 'unknown', + path: '', + }, + serial: 'dummySerialMD', + model: 'mag_deck_v1.1', + revision: 'mag_deck_v1.1', + fwVersion: 'dummyVersionMD', + hasAvailableUpdate: false, + status: 'engaged', + data: { + engaged: true, + height: 4.0, + }, + }, +] diff --git a/app/src/organisms/IncompatibleModule/hooks/__fixtures__/index.ts b/app/src/organisms/IncompatibleModule/hooks/__fixtures__/index.ts new file mode 100644 index 00000000000..fc83332dba7 --- /dev/null +++ b/app/src/organisms/IncompatibleModule/hooks/__fixtures__/index.ts @@ -0,0 +1 @@ +export * from './incompatibleModuleFixtures' diff --git a/app/src/organisms/IncompatibleModule/hooks/__tests__/useIncompatibleModulesAttached.test.tsx b/app/src/organisms/IncompatibleModule/hooks/__tests__/useIncompatibleModulesAttached.test.tsx new file mode 100644 index 00000000000..970805c95c6 --- /dev/null +++ b/app/src/organisms/IncompatibleModule/hooks/__tests__/useIncompatibleModulesAttached.test.tsx @@ -0,0 +1,72 @@ +import * as React from 'react' +import { QueryClient, QueryClientProvider } from 'react-query' + +import { vi, it, expect, describe, beforeEach } from 'vitest' +import { renderHook } from '@testing-library/react' +import { useModulesQuery } from '@opentrons/react-api-client' +import { useIncompatibleModulesAttached } from '..' + +import * as Fixtures from '../__fixtures__' + +import type { Modules } from '@opentrons/api-client' +import type { UseQueryResult } from 'react-query' +vi.mock('@opentrons/react-api-client') + +describe('useIncompatibleModulesAttached', () => { + let wrapper: React.FunctionComponent<{ children: React.ReactNode }> + beforeEach(() => { + const queryClient = new QueryClient() + const clientProvider: React.FunctionComponent<{ + children: React.ReactNode + }> = ({ children }) => ( + {children} + ) + wrapper = clientProvider + }) + it('treats older endpoint responses as if the module were compatible', () => { + vi.mocked(useModulesQuery).mockReturnValue(({ + data: { + data: Fixtures.v2MockModulesResponse, + meta: {}, + }, + error: null, + } as any) as UseQueryResult) + const { result } = renderHook(useIncompatibleModulesAttached, { wrapper }) + expect(result.current).toHaveLength(0) + }) + it('pulls incompatible modules out of endpoint responses', () => { + vi.mocked(useModulesQuery).mockReturnValue(({ + data: { + data: Fixtures.mockModulesWithOneIncompatibleResponse, + meta: {}, + }, + error: null, + } as any) as UseQueryResult) + const { result } = renderHook(useIncompatibleModulesAttached, { wrapper }) + expect(result.current).toHaveLength(1) + expect(result.current).toContain( + Fixtures.mockModulesWithOneIncompatibleResponse[0] + ) + }) + it('treats modules under new schema without compatibility as compatible', () => { + vi.mocked(useModulesQuery).mockReturnValue(({ + data: { + data: Fixtures.mockModulesAllNotImplementedResponse, + meta: {}, + }, + error: null, + } as any) as UseQueryResult) + const { result } = renderHook(useIncompatibleModulesAttached, { wrapper }) + expect(result.current).toHaveLength(0) + }) + it('passes all compatible modules', () => { + vi.mocked(useModulesQuery).mockReturnValue(({ + data: { + data: Fixtures.mockModulesAllCompatibleResponse, + meta: {}, + }, + } as any) as UseQueryResult) + const { result } = renderHook(useIncompatibleModulesAttached, { wrapper }) + expect(result.current).toHaveLength(0) + }) +}) diff --git a/app/src/organisms/IncompatibleModule/hooks/index.ts b/app/src/organisms/IncompatibleModule/hooks/index.ts new file mode 100644 index 00000000000..9a5e1978747 --- /dev/null +++ b/app/src/organisms/IncompatibleModule/hooks/index.ts @@ -0,0 +1 @@ +export * from './useIncompatibleModulesAttached' diff --git a/app/src/organisms/IncompatibleModule/hooks/useIncompatibleModulesAttached.ts b/app/src/organisms/IncompatibleModule/hooks/useIncompatibleModulesAttached.ts new file mode 100644 index 00000000000..f57ba37d69c --- /dev/null +++ b/app/src/organisms/IncompatibleModule/hooks/useIncompatibleModulesAttached.ts @@ -0,0 +1,17 @@ +import { useModulesQuery } from '@opentrons/react-api-client' +import type { UseQueryOptions } from 'react-query' +import type { AttachedModule, Modules, HostConfig } from '@opentrons/api-client' + +export function useIncompatibleModulesAttached( + options: UseQueryOptions = {}, + hostOverride?: HostConfig | null +): AttachedModule[] { + const { data, error } = useModulesQuery({ + ...options, + }) + return error == null + ? data?.data.filter( + attachedModule => attachedModule?.compatibleWithRobot === false + ) || [] + : [] +} diff --git a/app/src/organisms/IncompatibleModule/index.tsx b/app/src/organisms/IncompatibleModule/index.tsx new file mode 100644 index 00000000000..e9866b2689c --- /dev/null +++ b/app/src/organisms/IncompatibleModule/index.tsx @@ -0,0 +1 @@ +export * from './IncompatibleModuleTakeover' diff --git a/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx b/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx index 80e160437e8..acaf0789918 100644 --- a/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx +++ b/app/src/organisms/InstrumentMountItem/ProtocolInstrumentMountItem.tsx @@ -15,9 +15,7 @@ import { } from '@opentrons/components' import { NINETY_SIX_CHANNEL, - PipetteName, SINGLE_MOUNT_PIPETTES, - LoadedPipette, } from '@opentrons/shared-data' import { SmallButton } from '../../atoms/buttons' @@ -30,7 +28,11 @@ import { PipetteWizardFlows } from '../PipetteWizardFlows' import { GripperWizardFlows } from '../GripperWizardFlows' import type { InstrumentData } from '@opentrons/api-client' -import type { GripperModel } from '@opentrons/shared-data' +import type { + GripperModel, + PipetteName, + LoadedPipette, +} from '@opentrons/shared-data' import type { Mount } from '../../redux/pipettes/types' export const MountItem = styled.div<{ isReady: boolean }>` diff --git a/app/src/organisms/InterventionModal/MoveLabwareInterventionContent.tsx b/app/src/organisms/InterventionModal/MoveLabwareInterventionContent.tsx index 9a932bb697d..5e580a45af3 100644 --- a/app/src/organisms/InterventionModal/MoveLabwareInterventionContent.tsx +++ b/app/src/organisms/InterventionModal/MoveLabwareInterventionContent.tsx @@ -22,12 +22,7 @@ import { TYPOGRAPHY, } from '@opentrons/components' import { - CompletedProtocolAnalysis, - LabwareDefinitionsByUri, - LabwareLocation, - MoveLabwareRunTimeCommand, OT2_ROBOT_TYPE, - RobotType, getDeckDefFromRobotType, getLabwareDisplayName, getLoadedLabwareDefinitionsByUri, @@ -50,6 +45,13 @@ import { } from '../CommandText/utils/accessors' import { useNotifyDeckConfigurationQuery } from '../../resources/deck_configuration' +import type { + CompletedProtocolAnalysis, + LabwareDefinitionsByUri, + LabwareLocation, + MoveLabwareRunTimeCommand, + RobotType, +} from '@opentrons/shared-data' import type { RunData } from '@opentrons/api-client' const LABWARE_DESCRIPTION_STYLE = css` diff --git a/app/src/organisms/InterventionModal/__fixtures__/index.ts b/app/src/organisms/InterventionModal/__fixtures__/index.ts index 4d7b7dbc87d..7e9f57090e4 100644 --- a/app/src/organisms/InterventionModal/__fixtures__/index.ts +++ b/app/src/organisms/InterventionModal/__fixtures__/index.ts @@ -1,5 +1,4 @@ import { - LabwareDefinition2, SPAN7_8_10_11_SLOT, THERMOCYCLER_MODULE_V1, getModuleDef2, @@ -8,6 +7,7 @@ import { import type { RunData } from '@opentrons/api-client' import type { LabwareDefinitionsByUri, + LabwareDefinition2, Liquid, LoadedLabware, LoadedModule, diff --git a/app/src/organisms/InterventionModal/__tests__/InterventionModal.test.tsx b/app/src/organisms/InterventionModal/__tests__/InterventionModal.test.tsx index 555973db4eb..06f4f0a22a3 100644 --- a/app/src/organisms/InterventionModal/__tests__/InterventionModal.test.tsx +++ b/app/src/organisms/InterventionModal/__tests__/InterventionModal.test.tsx @@ -1,11 +1,8 @@ import * as React from 'react' import { fireEvent, screen } from '@testing-library/react' import { describe, it, expect, vi, beforeEach } from 'vitest' +import { getLabwareDefURI } from '@opentrons/shared-data' import { renderWithProviders } from '../../../__testing-utils__' -import { - CompletedProtocolAnalysis, - getLabwareDefURI, -} from '@opentrons/shared-data' import { i18n } from '../../../i18n' import { InterventionModal } from '..' @@ -18,6 +15,7 @@ import { } from '../__fixtures__' import { mockTipRackDefinition } from '../../../redux/custom-labware/__fixtures__' import { useIsFlex } from '../../Devices/hooks' +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' const ROBOT_NAME = 'Otie' diff --git a/app/src/organisms/InterventionModal/index.tsx b/app/src/organisms/InterventionModal/index.tsx index 4498ab54c16..60020c669cf 100644 --- a/app/src/organisms/InterventionModal/index.tsx +++ b/app/src/organisms/InterventionModal/index.tsx @@ -12,14 +12,8 @@ import { DISPLAY_FLEX, Flex, Icon, - JUSTIFY_CENTER, JUSTIFY_SPACE_BETWEEN, Link, - OVERFLOW_AUTO, - POSITION_ABSOLUTE, - POSITION_FIXED, - POSITION_RELATIVE, - POSITION_STICKY, PrimaryButton, SPACING, TYPOGRAPHY, @@ -28,6 +22,7 @@ import { import { SmallButton } from '../../atoms/buttons' import { Modal } from '../../molecules/Modal' +import { InterventionModal as InterventionModalMolecule } from '../../molecules/InterventionModal' import { getIsOnDevice } from '../../redux/config' import { PauseInterventionContent } from './PauseInterventionContent' import { MoveLabwareInterventionContent } from './MoveLabwareInterventionContent' @@ -40,39 +35,6 @@ import { useRobotType } from '../Devices/hooks' const LEARN_ABOUT_MANUAL_STEPS_URL = 'https://support.opentrons.com/s/article/Manual-protocol-steps' -const BASE_STYLE = { - position: POSITION_ABSOLUTE, - alignItems: ALIGN_CENTER, - justifyContent: JUSTIFY_CENTER, - top: 0, - right: 0, - bottom: 0, - left: 0, - width: '100%', - height: '100%', -} as const - -const MODAL_STYLE = { - backgroundColor: COLORS.white, - position: POSITION_RELATIVE, - overflowY: OVERFLOW_AUTO, - maxHeight: '100%', - width: '47rem', - border: `6px ${BORDERS.styleSolid} ${COLORS.blue50}`, - borderRadius: BORDERS.borderRadius8, - boxShadow: BORDERS.smallDropShadow, -} as const - -const HEADER_STYLE = { - alignItems: ALIGN_CENTER, - gridGap: SPACING.spacing12, - padding: `${SPACING.spacing20} ${SPACING.spacing32}`, - color: COLORS.white, - backgroundColor: COLORS.blue50, - position: POSITION_STICKY, - top: 0, -} as const - const CONTENT_STYLE = { display: DISPLAY_FLEX, flexDirection: DIRECTION_COLUMN, @@ -181,51 +143,31 @@ export function InterventionModal({ ) : ( - {headerTitle}} + iconName={iconName} + type="intervention-required" > - - { - e.stopPropagation() - }} - > - - {iconName != null ? ( - - ) : null} - {headerTitle} - - - {childContent} - - - {t('protocol_info:manual_steps_learn_more')} - - - - {t('confirm_and_resume')} - - - + + {childContent} + + + {t('protocol_info:manual_steps_learn_more')} + + + + {t('confirm_and_resume')} + - - + + ) } diff --git a/app/src/organisms/InterventionModal/utils/getLabwareNameFromRunData.ts b/app/src/organisms/InterventionModal/utils/getLabwareNameFromRunData.ts index e2c083c8afc..d6773e683f1 100644 --- a/app/src/organisms/InterventionModal/utils/getLabwareNameFromRunData.ts +++ b/app/src/organisms/InterventionModal/utils/getLabwareNameFromRunData.ts @@ -1,11 +1,8 @@ -import { - RunTimeCommand, - getLabwareDefURI, - getLabwareDisplayName, -} from '@opentrons/shared-data' +import { getLabwareDefURI, getLabwareDisplayName } from '@opentrons/shared-data' import { getLoadedLabware } from '../../CommandText/utils/accessors' import { getLabwareDefinitionsFromCommands } from '../../LabwarePositionCheck/utils/labware' +import type { RunTimeCommand } from '@opentrons/shared-data' import type { RunData } from '@opentrons/api-client' const FIXED_TRASH_DEF_URIS = [ diff --git a/app/src/organisms/InterventionModal/utils/isInterventionCommand.ts b/app/src/organisms/InterventionModal/utils/isInterventionCommand.ts index 133b8a4d254..b7f198596ff 100644 --- a/app/src/organisms/InterventionModal/utils/isInterventionCommand.ts +++ b/app/src/organisms/InterventionModal/utils/isInterventionCommand.ts @@ -1,5 +1,5 @@ -import { RunTimeCommand } from '@opentrons/shared-data' -import { RunCommandSummary } from '@opentrons/api-client' +import type { RunTimeCommand } from '@opentrons/shared-data' +import type { RunCommandSummary } from '@opentrons/api-client' export function isInterventionCommand( command: RunTimeCommand | RunCommandSummary diff --git a/app/src/organisms/LabwarePositionCheck/AttachProbe.tsx b/app/src/organisms/LabwarePositionCheck/AttachProbe.tsx index 9cf7f86f375..01a87bee4eb 100644 --- a/app/src/organisms/LabwarePositionCheck/AttachProbe.tsx +++ b/app/src/organisms/LabwarePositionCheck/AttachProbe.tsx @@ -6,27 +6,27 @@ import { StyledText, TYPOGRAPHY, } from '@opentrons/components' -import { - CompletedProtocolAnalysis, - getPipetteNameSpecs, - CreateCommand, -} from '@opentrons/shared-data' +import { getPipetteNameSpecs } from '@opentrons/shared-data' import { css } from 'styled-components' import { ProbeNotAttached } from '../PipetteWizardFlows/ProbeNotAttached' import { RobotMotionLoader } from './RobotMotionLoader' import attachProbe1 from '../../assets/videos/pipette-wizard-flows/Pipette_Attach_Probe_1.webm' import attachProbe8 from '../../assets/videos/pipette-wizard-flows/Pipette_Attach_Probe_8.webm' import attachProbe96 from '../../assets/videos/pipette-wizard-flows/Pipette_Attach_Probe_96.webm' -import { useChainRunCommands } from '../../resources/runs' import { GenericWizardTile } from '../../molecules/GenericWizardTile' +import type { + CompletedProtocolAnalysis, + CreateCommand, +} from '@opentrons/shared-data' +import type { LabwareOffset } from '@opentrons/api-client' import type { Jog } from '../../molecules/JogControls/types' +import type { useChainRunCommands } from '../../resources/runs' import type { AttachProbeStep, RegisterPositionAction, WorkingOffset, } from './types' -import type { LabwareOffset } from '@opentrons/api-client' interface AttachProbeProps extends AttachProbeStep { protocolData: CompletedProtocolAnalysis diff --git a/app/src/organisms/LabwarePositionCheck/CheckItem.tsx b/app/src/organisms/LabwarePositionCheck/CheckItem.tsx index 06239a0d4e0..7978f4f76ee 100644 --- a/app/src/organisms/LabwarePositionCheck/CheckItem.tsx +++ b/app/src/organisms/LabwarePositionCheck/CheckItem.tsx @@ -12,7 +12,6 @@ import { RobotMotionLoader } from './RobotMotionLoader' import { PrepareSpace } from './PrepareSpace' import { JogToWell } from './JogToWell' import { - CreateCommand, FLEX_ROBOT_TYPE, getIsTiprack, getLabwareDefURI, @@ -20,9 +19,6 @@ import { getModuleType, HEATERSHAKER_MODULE_TYPE, IDENTITY_VECTOR, - LabwareLocation, - MoveLabwareCreateCommand, - RobotType, THERMOCYCLER_MODULE_TYPE, } from '@opentrons/shared-data' import { useSelector } from 'react-redux' @@ -32,12 +28,18 @@ import { } from './utils/labware' import { UnorderedList } from '../../molecules/UnorderedList' import { getCurrentOffsetForLabwareInLocation } from '../Devices/ProtocolRun/utils/getCurrentOffsetForLabwareInLocation' -import { useChainRunCommands } from '../../resources/runs' import { getIsOnDevice } from '../../redux/config' import { getDisplayLocation } from './utils/getDisplayLocation' import type { LabwareOffset } from '@opentrons/api-client' -import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' +import type { + CompletedProtocolAnalysis, + CreateCommand, + LabwareLocation, + MoveLabwareCreateCommand, + RobotType, +} from '@opentrons/shared-data' +import type { useChainRunCommands } from '../../resources/runs' import type { CheckLabwareStep, RegisterPositionAction, diff --git a/app/src/organisms/LabwarePositionCheck/DetachProbe.tsx b/app/src/organisms/LabwarePositionCheck/DetachProbe.tsx index 202cf78d57a..55575570cce 100644 --- a/app/src/organisms/LabwarePositionCheck/DetachProbe.tsx +++ b/app/src/organisms/LabwarePositionCheck/DetachProbe.tsx @@ -8,17 +8,15 @@ import { TYPOGRAPHY, } from '@opentrons/components' import { RobotMotionLoader } from './RobotMotionLoader' -import { - CompletedProtocolAnalysis, - getPipetteNameSpecs, -} from '@opentrons/shared-data' +import { getPipetteNameSpecs } from '@opentrons/shared-data' import detachProbe1 from '../../assets/videos/pipette-wizard-flows/Pipette_Detach_Probe_1.webm' import detachProbe8 from '../../assets/videos/pipette-wizard-flows/Pipette_Detach_Probe_8.webm' import detachProbe96 from '../../assets/videos/pipette-wizard-flows/Pipette_Detach_Probe_96.webm' -import { useChainRunCommands } from '../../resources/runs' import { GenericWizardTile } from '../../molecules/GenericWizardTile' +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' import type { Jog } from '../../molecules/JogControls/types' +import type { useChainRunCommands } from '../../resources/runs' import type { DetachProbeStep, RegisterPositionAction, diff --git a/app/src/organisms/LabwarePositionCheck/IntroScreen/index.tsx b/app/src/organisms/LabwarePositionCheck/IntroScreen/index.tsx index 5fdfb0af52f..0ba541c95f6 100644 --- a/app/src/organisms/LabwarePositionCheck/IntroScreen/index.tsx +++ b/app/src/organisms/LabwarePositionCheck/IntroScreen/index.tsx @@ -19,9 +19,6 @@ import { } from '@opentrons/components' import { RobotMotionLoader } from '../RobotMotionLoader' import { getPrepCommands } from './getPrepCommands' -import { useChainRunCommands } from '../../../resources/runs' -import type { RegisterPositionAction } from '../types' -import type { Jog } from '../../../molecules/JogControls' import { WizardRequiredEquipmentList } from '../../../molecules/WizardRequiredEquipmentList' import { getLatestCurrentOffsets } from '../../Devices/ProtocolRun/SetupLabwarePositionCheck/utils' import { getIsOnDevice } from '../../../redux/config' @@ -40,6 +37,9 @@ import type { CompletedProtocolAnalysis, LabwareDefinition2, } from '@opentrons/shared-data' +import type { useChainRunCommands } from '../../../resources/runs' +import type { RegisterPositionAction } from '../types' +import type { Jog } from '../../../molecules/JogControls' export const INTERVAL_MS = 3000 diff --git a/app/src/organisms/LabwarePositionCheck/JogToWell.tsx b/app/src/organisms/LabwarePositionCheck/JogToWell.tsx index 828264b0218..415eb8f15fb 100644 --- a/app/src/organisms/LabwarePositionCheck/JogToWell.tsx +++ b/app/src/organisms/LabwarePositionCheck/JogToWell.tsx @@ -26,7 +26,6 @@ import { getPipetteNameSpecs, getVectorDifference, getVectorSum, - PipetteName, } from '@opentrons/shared-data' import levelWithTip from '../../assets/images/lpc_level_with_tip.svg' @@ -41,10 +40,10 @@ import { NeedHelpLink } from '../CalibrationPanels' import { JogControls } from '../../molecules/JogControls' import { LiveOffsetValue } from './LiveOffsetValue' -import type { Jog } from '../../molecules/JogControls' -import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { PipetteName, LabwareDefinition2 } from '@opentrons/shared-data' import type { WellStroke } from '@opentrons/components' import type { VectorOffset } from '@opentrons/api-client' +import type { Jog } from '../../molecules/JogControls' const DECK_MAP_VIEWBOX = '-10 -10 150 105' const LPC_HELP_LINK_URL = diff --git a/app/src/organisms/LabwarePositionCheck/LabwarePositionCheckComponent.tsx b/app/src/organisms/LabwarePositionCheck/LabwarePositionCheckComponent.tsx index 440c6c89586..0722465b50b 100644 --- a/app/src/organisms/LabwarePositionCheck/LabwarePositionCheckComponent.tsx +++ b/app/src/organisms/LabwarePositionCheck/LabwarePositionCheckComponent.tsx @@ -5,24 +5,11 @@ import { useSelector } from 'react-redux' import { useTranslation } from 'react-i18next' import { useConditionalConfirm } from '@opentrons/components' -import { - LabwareOffsetCreateData, - LabwareOffset, - CommandData, -} from '@opentrons/api-client' import { useCreateLabwareOffsetMutation, useCreateMaintenanceCommandMutation, } from '@opentrons/react-api-client' -import { - CompletedProtocolAnalysis, - Coordinates, - FIXED_TRASH_ID, - FLEX_ROBOT_TYPE, - CreateCommand, - DropTipCreateCommand, - RobotType, -} from '@opentrons/shared-data' +import { FIXED_TRASH_ID, FLEX_ROBOT_TYPE } from '@opentrons/shared-data' import { getTopPortalEl } from '../../App/portal' // import { useTrackEvent } from '../../redux/analytics' @@ -41,8 +28,20 @@ import { useChainMaintenanceCommands } from '../../resources/runs' import { FatalErrorModal } from './FatalErrorModal' import { RobotMotionLoader } from './RobotMotionLoader' import { useNotifyCurrentMaintenanceRun } from '../../resources/maintenance_runs' - import { getLabwarePositionCheckSteps } from './getLabwarePositionCheckSteps' + +import type { + CompletedProtocolAnalysis, + Coordinates, + CreateCommand, + DropTipCreateCommand, + RobotType, +} from '@opentrons/shared-data' +import type { + LabwareOffsetCreateData, + LabwareOffset, + CommandData, +} from '@opentrons/api-client' import type { Axis, Sign, StepSize } from '../../molecules/JogControls/types' import type { RegisterPositionAction, WorkingOffset } from './types' diff --git a/app/src/organisms/LabwarePositionCheck/PickUpTip.tsx b/app/src/organisms/LabwarePositionCheck/PickUpTip.tsx index f9fb114c789..dfeda1ee216 100644 --- a/app/src/organisms/LabwarePositionCheck/PickUpTip.tsx +++ b/app/src/organisms/LabwarePositionCheck/PickUpTip.tsx @@ -8,21 +8,16 @@ import { TYPOGRAPHY, } from '@opentrons/components' import { - CompletedProtocolAnalysis, - CreateCommand, getLabwareDefURI, getLabwareDisplayName, getModuleType, getVectorDifference, HEATERSHAKER_MODULE_TYPE, IDENTITY_VECTOR, - MoveLabwareCreateCommand, - RobotType, } from '@opentrons/shared-data' import { RobotMotionLoader } from './RobotMotionLoader' import { PrepareSpace } from './PrepareSpace' import { JogToWell } from './JogToWell' -import { useChainRunCommands } from '../../resources/runs' import { UnorderedList } from '../../molecules/UnorderedList' import { getCurrentOffsetForLabwareInLocation } from '../Devices/ProtocolRun/utils/getCurrentOffsetForLabwareInLocation' import { TipConfirmation } from './TipConfirmation' @@ -32,6 +27,13 @@ import { } from './utils/labware' import { getDisplayLocation } from './utils/getDisplayLocation' +import type { + CompletedProtocolAnalysis, + CreateCommand, + MoveLabwareCreateCommand, + RobotType, +} from '@opentrons/shared-data' +import type { useChainRunCommands } from '../../resources/runs' import type { Jog } from '../../molecules/JogControls/types' import type { PickUpTipStep, diff --git a/app/src/organisms/LabwarePositionCheck/PrepareSpace.tsx b/app/src/organisms/LabwarePositionCheck/PrepareSpace.tsx index da886ccaba1..ad3df11c6aa 100644 --- a/app/src/organisms/LabwarePositionCheck/PrepareSpace.tsx +++ b/app/src/organisms/LabwarePositionCheck/PrepareSpace.tsx @@ -16,19 +16,18 @@ import { BaseDeck, ALIGN_FLEX_START, } from '@opentrons/components' -import { - CompletedProtocolAnalysis, - LabwareDefinition2, - THERMOCYCLER_MODULE_TYPE, - getModuleType, - RobotType, -} from '@opentrons/shared-data' +import { THERMOCYCLER_MODULE_TYPE, getModuleType } from '@opentrons/shared-data' import { getIsOnDevice } from '../../redux/config' import { SmallButton } from '../../atoms/buttons' import { NeedHelpLink } from '../CalibrationPanels' import { useNotifyDeckConfigurationQuery } from '../../resources/deck_configuration' +import type { + CompletedProtocolAnalysis, + LabwareDefinition2, + RobotType, +} from '@opentrons/shared-data' import type { CheckLabwareStep } from './types' const LPC_HELP_LINK_URL = diff --git a/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx b/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx index 5b971940910..aa3b0fac940 100644 --- a/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx +++ b/app/src/organisms/LabwarePositionCheck/ResultsSummary.tsx @@ -4,14 +4,12 @@ import { useSelector } from 'react-redux' import isEqual from 'lodash/isEqual' import { useTranslation } from 'react-i18next' import { - CompletedProtocolAnalysis, getLabwareDefURI, getLabwareDisplayName, getModuleType, getVectorDifference, getVectorSum, IDENTITY_VECTOR, - LabwareDefinition2, } from '@opentrons/shared-data' import { NeedHelpLink } from '../CalibrationPanels' import { @@ -43,6 +41,10 @@ import { getCurrentOffsetForLabwareInLocation } from '../Devices/ProtocolRun/uti import { getLabwareDefinitionsFromCommands } from './utils/labware' import { getDisplayLocation } from './utils/getDisplayLocation' +import type { + CompletedProtocolAnalysis, + LabwareDefinition2, +} from '@opentrons/shared-data' import type { LabwareOffset, LabwareOffsetCreateData, diff --git a/app/src/organisms/LabwarePositionCheck/ReturnTip.tsx b/app/src/organisms/LabwarePositionCheck/ReturnTip.tsx index fe32fa4c5b1..5a46ec2b4eb 100644 --- a/app/src/organisms/LabwarePositionCheck/ReturnTip.tsx +++ b/app/src/organisms/LabwarePositionCheck/ReturnTip.tsx @@ -6,17 +6,13 @@ import { StyledText, TYPOGRAPHY, } from '@opentrons/components' + import { - CompletedProtocolAnalysis, - CreateCommand, getLabwareDisplayName, getModuleType, HEATERSHAKER_MODULE_TYPE, - MoveLabwareCreateCommand, - RobotType, } from '@opentrons/shared-data' import { UnorderedList } from '../../molecules/UnorderedList' -import { useChainRunCommands } from '../../resources/runs' import { getLabwareDef, getLabwareDefinitionsFromCommands, @@ -27,7 +23,14 @@ import { PrepareSpace } from './PrepareSpace' import { useSelector } from 'react-redux' import { getIsOnDevice } from '../../redux/config' +import type { + CompletedProtocolAnalysis, + CreateCommand, + RobotType, + MoveLabwareCreateCommand, +} from '@opentrons/shared-data' import type { VectorOffset } from '@opentrons/api-client' +import type { useChainRunCommands } from '../../resources/runs' import type { ReturnTipStep } from './types' interface ReturnTipProps extends ReturnTipStep { diff --git a/app/src/organisms/LabwarePositionCheck/getLabwarePositionCheckSteps.ts b/app/src/organisms/LabwarePositionCheck/getLabwarePositionCheckSteps.ts index fa1e4d881a2..1c51c06827f 100644 --- a/app/src/organisms/LabwarePositionCheck/getLabwarePositionCheckSteps.ts +++ b/app/src/organisms/LabwarePositionCheck/getLabwarePositionCheckSteps.ts @@ -1,7 +1,7 @@ import { getPrimaryPipetteId } from './utils/getPrimaryPipetteId' -import { CompletedProtocolAnalysis } from '@opentrons/shared-data' import { getTipBasedLPCSteps } from './utils/getTipBasedLPCSteps' import { getProbeBasedLPCSteps } from './utils/getProbeBasedLPCSteps' +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' import type { LabwarePositionCheckStep } from './types' export const getLabwarePositionCheckSteps = ( diff --git a/app/src/organisms/LabwarePositionCheck/index.tsx b/app/src/organisms/LabwarePositionCheck/index.tsx index 1dcd396983c..abadfa346a1 100644 --- a/app/src/organisms/LabwarePositionCheck/index.tsx +++ b/app/src/organisms/LabwarePositionCheck/index.tsx @@ -3,9 +3,9 @@ import { useLogger } from '../../logger' import { LabwarePositionCheckComponent } from './LabwarePositionCheckComponent' import { FatalErrorModal } from './FatalErrorModal' -import { +import { FLEX_ROBOT_TYPE } from '@opentrons/shared-data' +import type { CompletedProtocolAnalysis, - FLEX_ROBOT_TYPE, RobotType, } from '@opentrons/shared-data' import type { LabwareOffset } from '@opentrons/api-client' diff --git a/app/src/organisms/LabwarePositionCheck/types.ts b/app/src/organisms/LabwarePositionCheck/types.ts index 5f53e7511c0..2ddd14c25d6 100644 --- a/app/src/organisms/LabwarePositionCheck/types.ts +++ b/app/src/organisms/LabwarePositionCheck/types.ts @@ -1,5 +1,5 @@ -import { SECTIONS } from './constants' -import { useCreateCommandMutation } from '@opentrons/react-api-client' +import type { SECTIONS } from './constants' +import type { useCreateCommandMutation } from '@opentrons/react-api-client' import type { LabwareOffsetLocation, VectorOffset } from '@opentrons/api-client' import type { LabwareDefinition2 } from '@opentrons/shared-data' diff --git a/app/src/organisms/LabwarePositionCheck/utils/doesPipetteVisitAllTipracks.ts b/app/src/organisms/LabwarePositionCheck/utils/doesPipetteVisitAllTipracks.ts index 526451c467f..0976aab8b1b 100644 --- a/app/src/organisms/LabwarePositionCheck/utils/doesPipetteVisitAllTipracks.ts +++ b/app/src/organisms/LabwarePositionCheck/utils/doesPipetteVisitAllTipracks.ts @@ -1,7 +1,11 @@ -import { getIsTiprack, LabwareDefinition2 } from '@opentrons/shared-data' +import { getIsTiprack } from '@opentrons/shared-data' import { getPickUpTipCommandsWithPipette } from '../../Devices/ProtocolRun/utils/getPickUpTipCommandsWithPipette' import { getTipracksVisited } from '../../Devices/ProtocolRun/utils/getTipracksVisited' -import type { LoadedLabware, RunTimeCommand } from '@opentrons/shared-data' +import type { + LoadedLabware, + RunTimeCommand, + LabwareDefinition2, +} from '@opentrons/shared-data' export const doesPipetteVisitAllTipracks = ( pipetteId: string, diff --git a/app/src/organisms/LabwarePositionCheck/utils/getDisplayLocation.ts b/app/src/organisms/LabwarePositionCheck/utils/getDisplayLocation.ts index 6c00e9667dd..2c0fb134a40 100644 --- a/app/src/organisms/LabwarePositionCheck/utils/getDisplayLocation.ts +++ b/app/src/organisms/LabwarePositionCheck/utils/getDisplayLocation.ts @@ -3,9 +3,9 @@ import { getModuleType, THERMOCYCLER_MODULE_TYPE, getLabwareDefURI, - LabwareDefinition2, } from '@opentrons/shared-data' import type { i18n, TFunction } from 'i18next' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { LabwareOffsetLocation } from '@opentrons/api-client' export function getDisplayLocation( diff --git a/app/src/organisms/LabwarePositionCheck/utils/getProbeBasedLPCSteps.ts b/app/src/organisms/LabwarePositionCheck/utils/getProbeBasedLPCSteps.ts index bb02fee1e6e..34d41e2ce99 100644 --- a/app/src/organisms/LabwarePositionCheck/utils/getProbeBasedLPCSteps.ts +++ b/app/src/organisms/LabwarePositionCheck/utils/getProbeBasedLPCSteps.ts @@ -1,16 +1,15 @@ import { isEqual } from 'lodash' import { SECTIONS } from '../constants' -import { +import { getLabwareDefURI, getPipetteNameSpecs } from '@opentrons/shared-data' +import { getLabwareLocationCombos } from '../../ApplyHistoricOffsets/hooks/getLabwareLocationCombos' +import { getLabwareDefinitionsFromCommands } from './labware' + +import type { CompletedProtocolAnalysis, LoadedPipette, - getLabwareDefURI, - getPipetteNameSpecs, } from '@opentrons/shared-data' -import { getLabwareLocationCombos } from '../../ApplyHistoricOffsets/hooks/getLabwareLocationCombos' - import type { LabwarePositionCheckStep, CheckPositionsStep } from '../types' import type { LabwareLocationCombo } from '../../ApplyHistoricOffsets/hooks/getLabwareLocationCombos' -import { getLabwareDefinitionsFromCommands } from './labware' function getPrimaryPipetteId(pipettes: LoadedPipette[]): string { if (pipettes.length < 1) { diff --git a/app/src/organisms/ModuleCard/MagneticModuleData.tsx b/app/src/organisms/ModuleCard/MagneticModuleData.tsx index 6cd6c2284ab..744d24c9811 100644 --- a/app/src/organisms/ModuleCard/MagneticModuleData.tsx +++ b/app/src/organisms/ModuleCard/MagneticModuleData.tsx @@ -1,8 +1,9 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { COLORS, TYPOGRAPHY, StyledText } from '@opentrons/components' -import { MAGNETIC_MODULE_V1, MAGNETIC_MODULE_V2 } from '@opentrons/shared-data' +import { MAGNETIC_MODULE_V2 } from '@opentrons/shared-data' import { StatusLabel } from '../../atoms/StatusLabel' +import type { MAGNETIC_MODULE_V1 } from '@opentrons/shared-data' import type { MagneticStatus } from '../../redux/modules/api-types' interface MagModuleProps { diff --git a/app/src/organisms/ModuleCard/TestShakeSlideout.tsx b/app/src/organisms/ModuleCard/TestShakeSlideout.tsx index 8f855c26ccf..b221d2eed6c 100644 --- a/app/src/organisms/ModuleCard/TestShakeSlideout.tsx +++ b/app/src/organisms/ModuleCard/TestShakeSlideout.tsx @@ -23,7 +23,6 @@ import { } from '@opentrons/components' import { getIsHeaterShakerAttached } from '../../redux/config' import { - CreateCommand, getModuleDisplayName, HS_RPM_MAX, HS_RPM_MIN, @@ -41,6 +40,7 @@ import { ModuleSetupModal } from './ModuleSetupModal' import type { HeaterShakerModule, LatchStatus } from '../../redux/modules/types' import type { + CreateCommand, HeaterShakerCloseLatchCreateCommand, HeaterShakerDeactivateShakerCreateCommand, HeaterShakerSetAndWaitForShakeSpeedCreateCommand, diff --git a/app/src/organisms/ModuleWizardFlows/constants.ts b/app/src/organisms/ModuleWizardFlows/constants.ts index 9367f4f2bb2..5c5892003e8 100644 --- a/app/src/organisms/ModuleWizardFlows/constants.ts +++ b/app/src/organisms/ModuleWizardFlows/constants.ts @@ -1,9 +1,9 @@ import { HEATERSHAKER_MODULE_TYPE, - ModuleType, TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, } from '@opentrons/shared-data' +import type { ModuleType } from '@opentrons/shared-data' export const SECTIONS = { BEFORE_BEGINNING: 'BEFORE_BEGINNING', diff --git a/app/src/organisms/ModuleWizardFlows/types.ts b/app/src/organisms/ModuleWizardFlows/types.ts index df6020e9b36..39fc6e6920e 100644 --- a/app/src/organisms/ModuleWizardFlows/types.ts +++ b/app/src/organisms/ModuleWizardFlows/types.ts @@ -1,5 +1,5 @@ -import { AttachedModule } from '@opentrons/api-client' -import { FLOWS, SECTIONS } from './constants' +import type { AttachedModule } from '@opentrons/api-client' +import type { FLOWS, SECTIONS } from './constants' import type { CreateCommand } from '@opentrons/shared-data' import type { PipetteInformation } from '../Devices/hooks' diff --git a/app/src/organisms/OnDeviceDisplay/RobotDashboard/__tests__/RecentRunProtocolCard.test.tsx b/app/src/organisms/OnDeviceDisplay/RobotDashboard/__tests__/RecentRunProtocolCard.test.tsx index e1a54944a99..fc2f21a3034 100644 --- a/app/src/organisms/OnDeviceDisplay/RobotDashboard/__tests__/RecentRunProtocolCard.test.tsx +++ b/app/src/organisms/OnDeviceDisplay/RobotDashboard/__tests__/RecentRunProtocolCard.test.tsx @@ -250,7 +250,7 @@ describe('RecentRunProtocolCard', () => { it('when tapping a card, mock functions is called and loading state is activated', () => { render(props) const button = screen.getByLabelText('RecentRunProtocolCard') - expect(button).toHaveStyle(`background-color: ${COLORS.green40}`) + expect(button).toHaveStyle(`background-color: ${COLORS.green35}`) fireEvent.click(button) expect(mockTrackEvent).toHaveBeenCalledWith({ name: ANALYTICS_PROTOCOL_PROCEED_TO_RUN, diff --git a/app/src/organisms/OnDeviceDisplay/RunningProtocol/CurrentRunningProtocolCommand.tsx b/app/src/organisms/OnDeviceDisplay/RunningProtocol/CurrentRunningProtocolCommand.tsx index eeef83d83ab..095d3f1b99d 100644 --- a/app/src/organisms/OnDeviceDisplay/RunningProtocol/CurrentRunningProtocolCommand.tsx +++ b/app/src/organisms/OnDeviceDisplay/RunningProtocol/CurrentRunningProtocolCommand.tsx @@ -21,6 +21,7 @@ import { RUN_STATUS_RUNNING, RUN_STATUS_IDLE } from '@opentrons/api-client' import { CommandText } from '../../CommandText' import { RunTimer } from '../../Devices/ProtocolRun/RunTimer' +import { getCommandTextData } from '../../CommandText/utils/getCommandTextData' import { PlayPauseButton } from './PlayPauseButton' import { StopButton } from './StopButton' import { ANALYTICS_PROTOCOL_RUN_ACTION } from '../../../redux/analytics' @@ -233,7 +234,7 @@ export function CurrentRunningProtocolCommand({ {robotSideAnalysis != null && currentCommand != null ? ( diff --git a/app/src/organisms/OnDeviceDisplay/RunningProtocol/RunPausedSplash.tsx b/app/src/organisms/OnDeviceDisplay/RunningProtocol/RunPausedSplash.tsx deleted file mode 100644 index 529e5b6653f..00000000000 --- a/app/src/organisms/OnDeviceDisplay/RunningProtocol/RunPausedSplash.tsx +++ /dev/null @@ -1,94 +0,0 @@ -import * as React from 'react' -import styled from 'styled-components' -import { useTranslation } from 'react-i18next' - -import { - Flex, - Btn, - Icon, - JUSTIFY_CENTER, - ALIGN_CENTER, - SPACING, - COLORS, - DIRECTION_COLUMN, - POSITION_ABSOLUTE, - TYPOGRAPHY, - OVERFLOW_WRAP_BREAK_WORD, - DISPLAY_FLEX, -} from '@opentrons/components' - -interface RunPausedSplashProps { - onClose: () => void - errorType?: string - protocolName?: string -} - -export function RunPausedSplash({ - onClose, - errorType, - protocolName, -}: RunPausedSplashProps): JSX.Element { - const { t } = useTranslation('error_recovery') - - let subText: string | null - switch (errorType) { - default: - subText = protocolName ?? null - } - - return ( - - - - - {t('run_paused')} - - - {subText} - - - - ) -} - -const SplashHeader = styled.h1` - font-weight: ${TYPOGRAPHY.fontWeightBold}; - text-align: ${TYPOGRAPHY.textAlignLeft}; - font-size: ${TYPOGRAPHY.fontSize80}; - line-height: ${TYPOGRAPHY.lineHeight96}; - color: ${COLORS.white}; -` -const SplashBody = styled.h4` - display: -webkit-box; - -webkit-box-orient: vertical; - -webkit-line-clamp: 4; - overflow: hidden; - overflow-wrap: ${OVERFLOW_WRAP_BREAK_WORD}; - font-weight: ${TYPOGRAPHY.fontWeightSemiBold}; - text-align: ${TYPOGRAPHY.textAlignCenter}; - text-transform: ${TYPOGRAPHY.textTransformCapitalize}; - font-size: ${TYPOGRAPHY.fontSize32}; - line-height: ${TYPOGRAPHY.lineHeight42}; - color: ${COLORS.white}; -` - -const SplashFrame = styled(Flex)` - width: 100%; - height: 100%; - flex-direction: ${DIRECTION_COLUMN}; - justify-content: ${JUSTIFY_CENTER}; - align-items: ${ALIGN_CENTER}; - grid-gap: ${SPACING.spacing40}; -` diff --git a/app/src/organisms/OnDeviceDisplay/RunningProtocol/RunningProtocolCommandList.tsx b/app/src/organisms/OnDeviceDisplay/RunningProtocol/RunningProtocolCommandList.tsx index c59fedd338f..a9d476d5810 100644 --- a/app/src/organisms/OnDeviceDisplay/RunningProtocol/RunningProtocolCommandList.tsx +++ b/app/src/organisms/OnDeviceDisplay/RunningProtocol/RunningProtocolCommandList.tsx @@ -1,7 +1,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { css } from 'styled-components' -import { ViewportList, ViewportListRef } from 'react-viewport-list' +import { ViewportList } from 'react-viewport-list' import { ALIGN_CENTER, @@ -23,10 +23,12 @@ import { RUN_STATUS_RUNNING, RUN_STATUS_IDLE } from '@opentrons/api-client' import { CommandText } from '../../CommandText' import { CommandIcon } from '../../RunPreview/CommandIcon' +import { getCommandTextData } from '../../CommandText/utils/getCommandTextData' import { PlayPauseButton } from './PlayPauseButton' import { StopButton } from './StopButton' import { ANALYTICS_PROTOCOL_RUN_ACTION } from '../../../redux/analytics' +import type { ViewportListRef } from 'react-viewport-list' import type { CompletedProtocolAnalysis, RobotType, @@ -234,7 +236,7 @@ export function RunningProtocolCommandList({ ) => { - return renderWithProviders( - - - , - { - i18nInstance: i18n, - } - ) -} - -const MOCK_PROTOCOL_NAME = 'MOCK_PROTOCOL' - -describe('ConfirmCancelRunModal', () => { - let props: React.ComponentProps - const mockOnClose = vi.fn() - - beforeEach(() => { - props = { - onClose: mockOnClose, - protocolName: MOCK_PROTOCOL_NAME, - errorType: '', - } - }) - - afterEach(() => { - vi.restoreAllMocks() - }) - - it('should render a generic paused screen if there is no errorType', () => { - render(props) - expect(screen.getByText('Run paused')).toBeInTheDocument() - expect(screen.getByText(MOCK_PROTOCOL_NAME)) - expect(screen.getByRole('button')).toHaveStyle({ - 'background-color': COLORS.grey50, - }) - fireEvent.click(screen.getByRole('button')) - expect(mockOnClose).toHaveBeenCalled() - }) -}) diff --git a/app/src/organisms/PipetteWizardFlows/AttachProbe.tsx b/app/src/organisms/PipetteWizardFlows/AttachProbe.tsx index 489269e4311..ded4afcb7a7 100644 --- a/app/src/organisms/PipetteWizardFlows/AttachProbe.tsx +++ b/app/src/organisms/PipetteWizardFlows/AttachProbe.tsx @@ -9,12 +9,7 @@ import { StyledText, TYPOGRAPHY, } from '@opentrons/components' -import { - LEFT, - MotorAxes, - WASTE_CHUTE_CUTOUT, - CreateCommand, -} from '@opentrons/shared-data' +import { LEFT, WASTE_CHUTE_CUTOUT } from '@opentrons/shared-data' import { Banner } from '../../atoms/Banner' import { GenericWizardTile } from '../../molecules/GenericWizardTile' import { SimpleWizardBody } from '../../molecules/SimpleWizardBody' @@ -27,6 +22,7 @@ import { getPipetteAnimations } from './utils' import { ProbeNotAttached } from './ProbeNotAttached' import { useNotifyDeckConfigurationQuery } from '../../resources/deck_configuration' +import type { MotorAxes, CreateCommand } from '@opentrons/shared-data' import type { PipetteWizardStepProps } from './types' interface AttachProbeProps extends PipetteWizardStepProps { diff --git a/app/src/organisms/PipetteWizardFlows/BeforeBeginning.tsx b/app/src/organisms/PipetteWizardFlows/BeforeBeginning.tsx index 165c37053f9..3861bde63a7 100644 --- a/app/src/organisms/PipetteWizardFlows/BeforeBeginning.tsx +++ b/app/src/organisms/PipetteWizardFlows/BeforeBeginning.tsx @@ -1,6 +1,5 @@ import * as React from 'react' import { Trans, useTranslation } from 'react-i18next' -import { UseMutateFunction } from 'react-query' import { COLORS, DIRECTION_COLUMN, @@ -33,6 +32,7 @@ import { import { getIsGantryEmpty } from './utils' import { useNotifyDeckConfigurationQuery } from '../../resources/deck_configuration' +import type { UseMutateFunction } from 'react-query' import type { AxiosError } from 'axios' import type { CreateCommand, diff --git a/app/src/organisms/PipetteWizardFlows/__tests__/ChoosePipette.test.tsx b/app/src/organisms/PipetteWizardFlows/__tests__/ChoosePipette.test.tsx index bca0e623619..11a0f0f8452 100644 --- a/app/src/organisms/PipetteWizardFlows/__tests__/ChoosePipette.test.tsx +++ b/app/src/organisms/PipetteWizardFlows/__tests__/ChoosePipette.test.tsx @@ -65,7 +65,7 @@ describe('ChoosePipette', () => { // Single and 8-Channel pipettes are selected first by default expect(singleMountPipettes).toHaveStyle( - `background-color: ${COLORS.blue30}` + `background-color: ${COLORS.blue10}` ) expect(ninetySixPipette).toHaveStyle(`background-color: ${COLORS.white}`) @@ -139,7 +139,7 @@ describe('ChoosePipette', () => { name: '96-Channel pipette 96-Channel pipette', }) expect(singleMountPipettes).toHaveStyle(`background-color: ${COLORS.white}`) - expect(ninetySixPipette).toHaveStyle(`background-color: ${COLORS.blue30}`) + expect(ninetySixPipette).toHaveStyle(`background-color: ${COLORS.blue10}`) }) it('renders the correct text for the 96 channel button when there is a left pipette attached', () => { vi.mocked(getIsGantryEmpty).mockReturnValue(false) diff --git a/app/src/organisms/PipetteWizardFlows/__tests__/getPipetteWizardStepsForProtocol.test.tsx b/app/src/organisms/PipetteWizardFlows/__tests__/getPipetteWizardStepsForProtocol.test.tsx index 44380a60577..1fc4ea2464e 100644 --- a/app/src/organisms/PipetteWizardFlows/__tests__/getPipetteWizardStepsForProtocol.test.tsx +++ b/app/src/organisms/PipetteWizardFlows/__tests__/getPipetteWizardStepsForProtocol.test.tsx @@ -1,5 +1,5 @@ import { describe, it, expect } from 'vitest' -import { LEFT, RIGHT, LoadedPipette } from '@opentrons/shared-data' +import { LEFT, RIGHT } from '@opentrons/shared-data' import { mock96ChannelAttachedPipetteInformation, mockAttachedPipetteInformation, @@ -7,6 +7,7 @@ import { import { FLOWS, SECTIONS } from '../constants' import { getPipetteWizardStepsForProtocol } from '../getPipetteWizardStepsForProtocol' +import type { LoadedPipette } from '@opentrons/shared-data' import type { PipetteWizardStep } from '../types' const mockPipetteInfo = [ diff --git a/app/src/organisms/PipetteWizardFlows/getPipetteWizardSteps.ts b/app/src/organisms/PipetteWizardFlows/getPipetteWizardSteps.ts index d253fdf15e9..6d89993ab85 100644 --- a/app/src/organisms/PipetteWizardFlows/getPipetteWizardSteps.ts +++ b/app/src/organisms/PipetteWizardFlows/getPipetteWizardSteps.ts @@ -18,15 +18,15 @@ export const getPipetteWizardSteps = ( return [ { section: SECTIONS.BEFORE_BEGINNING, - mount: mount, - flowType: flowType, + mount, + flowType, }, - { section: SECTIONS.ATTACH_PROBE, mount: mount, flowType: flowType }, - { section: SECTIONS.DETACH_PROBE, mount: mount, flowType: flowType }, + { section: SECTIONS.ATTACH_PROBE, mount, flowType }, + { section: SECTIONS.DETACH_PROBE, mount, flowType }, { section: SECTIONS.RESULTS, - mount: mount, - flowType: flowType, + mount, + flowType, }, ] } @@ -35,21 +35,21 @@ export const getPipetteWizardSteps = ( return [ { section: SECTIONS.BEFORE_BEGINNING, - mount: mount, - flowType: flowType, + mount, + flowType, }, - { section: SECTIONS.MOUNT_PIPETTE, mount: mount, flowType: flowType }, + { section: SECTIONS.MOUNT_PIPETTE, mount, flowType }, { section: SECTIONS.FIRMWARE_UPDATE, - mount: mount, - flowType: flowType, + mount, + flowType, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: flowType }, - { section: SECTIONS.ATTACH_PROBE, mount: mount, flowType: flowType }, - { section: SECTIONS.DETACH_PROBE, mount: mount, flowType: flowType }, + { section: SECTIONS.RESULTS, mount, flowType }, + { section: SECTIONS.ATTACH_PROBE, mount, flowType }, + { section: SECTIONS.DETACH_PROBE, mount, flowType }, { section: SECTIONS.RESULTS, - mount: mount, + mount, flowType: FLOWS.CALIBRATE, }, ] @@ -64,7 +64,7 @@ export const getPipetteWizardSteps = ( { section: SECTIONS.BEFORE_BEGINNING, mount: detachMount, - flowType: flowType, + flowType, }, { section: SECTIONS.DETACH_PIPETTE, @@ -80,33 +80,33 @@ export const getPipetteWizardSteps = ( { section: SECTIONS.CARRIAGE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.MOUNTING_PLATE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.MOUNT_PIPETTE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.FIRMWARE_UPDATE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.RESULTS, mount: LEFT, flowType: FLOWS.ATTACH }, { section: SECTIONS.ATTACH_PROBE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.DETACH_PROBE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.RESULTS, @@ -120,38 +120,38 @@ export const getPipetteWizardSteps = ( { section: SECTIONS.BEFORE_BEGINNING, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.CARRIAGE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.MOUNTING_PLATE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.MOUNT_PIPETTE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.FIRMWARE_UPDATE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.RESULTS, mount: LEFT, flowType: FLOWS.ATTACH }, { section: SECTIONS.ATTACH_PROBE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.DETACH_PROBE, mount: LEFT, - flowType: flowType, + flowType, }, { section: SECTIONS.RESULTS, @@ -167,40 +167,40 @@ export const getPipetteWizardSteps = ( return [ { section: SECTIONS.BEFORE_BEGINNING, - mount: mount, - flowType: flowType, + mount, + flowType, }, { section: SECTIONS.DETACH_PIPETTE, - mount: mount, - flowType: flowType, + mount, + flowType, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: flowType }, + { section: SECTIONS.RESULTS, mount, flowType }, ] // 96 channel detach } else { return [ { section: SECTIONS.BEFORE_BEGINNING, - mount: mount, - flowType: flowType, + mount, + flowType, }, { section: SECTIONS.DETACH_PIPETTE, - mount: mount, - flowType: flowType, + mount, + flowType, }, { section: SECTIONS.MOUNTING_PLATE, - mount: mount, - flowType: flowType, + mount, + flowType, }, { section: SECTIONS.CARRIAGE, - mount: mount, - flowType: flowType, + mount, + flowType, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: flowType }, + { section: SECTIONS.RESULTS, mount, flowType }, ] } } diff --git a/app/src/organisms/PipetteWizardFlows/getPipetteWizardStepsForProtocol.ts b/app/src/organisms/PipetteWizardFlows/getPipetteWizardStepsForProtocol.ts index ac5cf5ddb16..064b65b7f95 100644 --- a/app/src/organisms/PipetteWizardFlows/getPipetteWizardStepsForProtocol.ts +++ b/app/src/organisms/PipetteWizardFlows/getPipetteWizardStepsForProtocol.ts @@ -1,5 +1,6 @@ -import { LEFT, LoadedPipette, RIGHT } from '@opentrons/shared-data' +import { LEFT, RIGHT } from '@opentrons/shared-data' import { FLOWS, SECTIONS } from './constants' +import type { LoadedPipette } from '@opentrons/shared-data' import type { Mount } from '../../redux/pipettes/types' import type { AttachedPipettesFromInstrumentsQuery } from '../Devices/hooks' import type { PipetteWizardStep } from './types' @@ -23,20 +24,20 @@ export const getPipetteWizardStepsForProtocol = ( return [ { section: SECTIONS.BEFORE_BEGINNING, - mount: mount, + mount, flowType: FLOWS.CALIBRATE, }, { section: SECTIONS.ATTACH_PROBE, - mount: mount, + mount, flowType: FLOWS.CALIBRATE, }, { section: SECTIONS.DETACH_PROBE, - mount: mount, + mount, flowType: FLOWS.CALIBRATE, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: FLOWS.CALIBRATE }, + { section: SECTIONS.RESULTS, mount, flowType: FLOWS.CALIBRATE }, ] } else if ( requiredPipette.pipetteName !== 'p1000_96' && @@ -73,28 +74,28 @@ export const getPipetteWizardStepsForProtocol = ( }, { section: SECTIONS.MOUNT_PIPETTE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.FIRMWARE_UPDATE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: FLOWS.ATTACH }, + { section: SECTIONS.RESULTS, mount, flowType: FLOWS.ATTACH }, { section: SECTIONS.ATTACH_PROBE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.DETACH_PROBE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.RESULTS, - mount: mount, + mount, flowType: FLOWS.CALIBRATE, }, ] @@ -103,39 +104,39 @@ export const getPipetteWizardStepsForProtocol = ( return [ { section: SECTIONS.BEFORE_BEGINNING, - mount: mount, + mount, flowType: FLOWS.DETACH, }, { section: SECTIONS.DETACH_PIPETTE, - mount: mount, + mount, flowType: FLOWS.DETACH, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: FLOWS.DETACH }, + { section: SECTIONS.RESULTS, mount, flowType: FLOWS.DETACH }, { section: SECTIONS.MOUNT_PIPETTE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.FIRMWARE_UPDATE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: FLOWS.ATTACH }, + { section: SECTIONS.RESULTS, mount, flowType: FLOWS.ATTACH }, { section: SECTIONS.ATTACH_PROBE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.DETACH_PROBE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.RESULTS, - mount: mount, + mount, flowType: FLOWS.CALIBRATE, }, ] @@ -383,33 +384,33 @@ export const getPipetteWizardStepsForProtocol = ( return [ { section: SECTIONS.BEFORE_BEGINNING, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.MOUNT_PIPETTE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.FIRMWARE_UPDATE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, - { section: SECTIONS.RESULTS, mount: mount, flowType: FLOWS.ATTACH }, + { section: SECTIONS.RESULTS, mount, flowType: FLOWS.ATTACH }, { section: SECTIONS.ATTACH_PROBE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.DETACH_PROBE, - mount: mount, + mount, flowType: FLOWS.ATTACH, }, { section: SECTIONS.RESULTS, - mount: mount, + mount, flowType: FLOWS.CALIBRATE, }, ] diff --git a/app/src/organisms/PipetteWizardFlows/hooks.tsx b/app/src/organisms/PipetteWizardFlows/hooks.tsx index f7fe127d623..8d727aeeb75 100644 --- a/app/src/organisms/PipetteWizardFlows/hooks.tsx +++ b/app/src/organisms/PipetteWizardFlows/hooks.tsx @@ -1,13 +1,8 @@ import { useTranslation } from 'react-i18next' import capitalize from 'lodash/capitalize' -import { - LEFT, - LoadedPipette, - PipetteMount, - RIGHT, - SINGLE_MOUNT_PIPETTES, -} from '@opentrons/shared-data' +import { LEFT, RIGHT, SINGLE_MOUNT_PIPETTES } from '@opentrons/shared-data' import { FLOWS } from './constants' +import type { LoadedPipette, PipetteMount } from '@opentrons/shared-data' import type { AttachedPipettesFromInstrumentsQuery } from '../Devices/hooks' import type { PipetteWizardFlow, SelectablePipettes } from './types' diff --git a/app/src/organisms/PipetteWizardFlows/types.ts b/app/src/organisms/PipetteWizardFlows/types.ts index f658406e3e3..587e7d84e1f 100644 --- a/app/src/organisms/PipetteWizardFlows/types.ts +++ b/app/src/organisms/PipetteWizardFlows/types.ts @@ -1,7 +1,6 @@ -import { SECTIONS, FLOWS } from './constants' -import { useCreateCommandMutation } from '@opentrons/react-api-client' -import { PipetteMount } from '@opentrons/shared-data' -import type { CreateCommand } from '@opentrons/shared-data' +import type { SECTIONS, FLOWS } from './constants' +import type { useCreateCommandMutation } from '@opentrons/react-api-client' +import type { PipetteMount, CreateCommand } from '@opentrons/shared-data' import type { AttachedPipettesFromInstrumentsQuery } from '../Devices/hooks/useAttachedPipettesFromInstrumentsQuery' export type PipetteWizardStep = diff --git a/app/src/organisms/ProtocolSetupDeckConfiguration/__tests__/ProtocolSetupDeckConfiguration.test.tsx b/app/src/organisms/ProtocolSetupDeckConfiguration/__tests__/ProtocolSetupDeckConfiguration.test.tsx index b489892b8ac..ef226bbfc19 100644 --- a/app/src/organisms/ProtocolSetupDeckConfiguration/__tests__/ProtocolSetupDeckConfiguration.test.tsx +++ b/app/src/organisms/ProtocolSetupDeckConfiguration/__tests__/ProtocolSetupDeckConfiguration.test.tsx @@ -20,7 +20,7 @@ import type { CompletedProtocolAnalysis, DeckConfiguration, } from '@opentrons/shared-data' -import { Modules } from '@opentrons/api-client' +import type { Modules } from '@opentrons/api-client' vi.mock('@opentrons/components/src/hardware-sim/BaseDeck/index') vi.mock('@opentrons/react-api-client') diff --git a/app/src/organisms/ProtocolSetupInstruments/utils.ts b/app/src/organisms/ProtocolSetupInstruments/utils.ts index 45682415bc7..1ce77275e74 100644 --- a/app/src/organisms/ProtocolSetupInstruments/utils.ts +++ b/app/src/organisms/ProtocolSetupInstruments/utils.ts @@ -3,7 +3,11 @@ import type { LoadedPipette, ProtocolAnalysisOutput, } from '@opentrons/shared-data' -import { GripperData, Instruments, PipetteData } from '@opentrons/api-client' +import type { + GripperData, + Instruments, + PipetteData, +} from '@opentrons/api-client' export function getProtocolUsesGripper( analysis: CompletedProtocolAnalysis | ProtocolAnalysisOutput diff --git a/app/src/organisms/ProtocolSetupLabware/LabwareMapViewModal.tsx b/app/src/organisms/ProtocolSetupLabware/LabwareMapViewModal.tsx index efd97cb14ed..e4b353944d2 100644 --- a/app/src/organisms/ProtocolSetupLabware/LabwareMapViewModal.tsx +++ b/app/src/organisms/ProtocolSetupLabware/LabwareMapViewModal.tsx @@ -11,7 +11,6 @@ import { import { Modal } from '../../molecules/Modal' import { getStandardDeckViewLayerBlockList } from '../Devices/ProtocolRun/utils/getStandardDeckViewLayerBlockList' import { getLabwareRenderInfo } from '../Devices/ProtocolRun/utils/getLabwareRenderInfo' -import { AttachedProtocolModuleMatch } from '../ProtocolSetupModulesAndDeck/utils' import type { CompletedProtocolAnalysis, @@ -20,6 +19,7 @@ import type { } from '@opentrons/shared-data' import type { LoadedLabwareByAdapter } from '@opentrons/api-client' import type { ModalHeaderBaseProps } from '../../molecules/Modal/types' +import type { AttachedProtocolModuleMatch } from '../ProtocolSetupModulesAndDeck/utils' interface LabwareMapViewModalProps { attachedProtocolModuleMatches: AttachedProtocolModuleMatch[] diff --git a/app/src/organisms/ProtocolSetupLabware/__tests__/LabwareMapViewModal.test.tsx b/app/src/organisms/ProtocolSetupLabware/__tests__/LabwareMapViewModal.test.tsx index 52c17cd31ca..8a76e5703fe 100644 --- a/app/src/organisms/ProtocolSetupLabware/__tests__/LabwareMapViewModal.test.tsx +++ b/app/src/organisms/ProtocolSetupLabware/__tests__/LabwareMapViewModal.test.tsx @@ -7,7 +7,6 @@ import { describe, it, vi, beforeEach, afterEach, expect } from 'vitest' import { BaseDeck, EXTENDED_DECK_CONFIG_FIXTURE } from '@opentrons/components' import { FLEX_ROBOT_TYPE, - getSimplestDeckConfigForProtocol, deckExample as deckDefFixture, fixtureTiprack300ul, } from '@opentrons/shared-data' @@ -20,6 +19,7 @@ import { mockProtocolModuleInfo } from '../__fixtures__' import { LabwareMapViewModal } from '../LabwareMapViewModal' import type { + getSimplestDeckConfigForProtocol, CompletedProtocolAnalysis, DeckDefinition, LabwareDefinition2, diff --git a/app/src/organisms/ProtocolSetupLabware/index.tsx b/app/src/organisms/ProtocolSetupLabware/index.tsx index 831d0a57962..e1dbcae4911 100644 --- a/app/src/organisms/ProtocolSetupLabware/index.tsx +++ b/app/src/organisms/ProtocolSetupLabware/index.tsx @@ -28,8 +28,6 @@ import { getLabwareDefURI, getLabwareDisplayName, HEATERSHAKER_MODULE_TYPE, - LoadLabwareRunTimeCommand, - RunTimeCommand, } from '@opentrons/shared-data' import { parseInitialLoadedLabwareByAdapter } from '@opentrons/api-client' import { @@ -46,10 +44,7 @@ import { useMostRecentCompletedAnalysis } from '../LabwarePositionCheck/useMostR import { getLabwareSetupItemGroups } from '../../pages/Protocols/utils' import { getProtocolModulesInfo } from '../Devices/ProtocolRun/utils/getProtocolModulesInfo' import { getAttachedProtocolModuleMatches } from '../ProtocolSetupModulesAndDeck/utils' -import { - getNestedLabwareInfo, - NestedLabwareInfo, -} from '../Devices/ProtocolRun/SetupLabware/getNestedLabwareInfo' +import { getNestedLabwareInfo } from '../Devices/ProtocolRun/SetupLabware/getNestedLabwareInfo' import { LabwareMapViewModal } from './LabwareMapViewModal' import { useNotifyDeckConfigurationQuery } from '../../resources/deck_configuration' @@ -59,10 +54,13 @@ import type { HeaterShakerOpenLatchCreateCommand, LabwareDefinition2, LabwareLocation, + LoadLabwareRunTimeCommand, + RunTimeCommand, } from '@opentrons/shared-data' import type { HeaterShakerModule, Modules } from '@opentrons/api-client' import type { LabwareSetupItem } from '../../pages/Protocols/utils' import type { SetupScreens } from '../../pages/ProtocolSetup' +import type { NestedLabwareInfo } from '../Devices/ProtocolRun/SetupLabware/getNestedLabwareInfo' import type { AttachedProtocolModuleMatch } from '../ProtocolSetupModulesAndDeck/utils' const MODULE_REFETCH_INTERVAL_MS = 5000 diff --git a/app/src/organisms/ProtocolSetupLiquids/index.tsx b/app/src/organisms/ProtocolSetupLiquids/index.tsx index 2e705d279b2..af886000ab2 100644 --- a/app/src/organisms/ProtocolSetupLiquids/index.tsx +++ b/app/src/organisms/ProtocolSetupLiquids/index.tsx @@ -16,11 +16,12 @@ import { parseLiquidsInLoadOrder, parseLabwareInfoByLiquidId, } from '@opentrons/api-client' -import { MICRO_LITERS, RunTimeCommand } from '@opentrons/shared-data' +import { MICRO_LITERS } from '@opentrons/shared-data' import { ODDBackButton } from '../../molecules/ODDBackButton' import { useMostRecentCompletedAnalysis } from '../LabwarePositionCheck/useMostRecentCompletedAnalysis' import { getTotalVolumePerLiquidId } from '../Devices/ProtocolRun/SetupLiquids/utils' import { LiquidDetails } from './LiquidDetails' +import type { RunTimeCommand } from '@opentrons/shared-data' import type { ParsedLiquid } from '@opentrons/api-client' import type { SetupScreens } from '../../pages/ProtocolSetup' diff --git a/app/src/organisms/ProtocolSetupModulesAndDeck/__tests__/ProtocolSetupModulesAndDeck.test.tsx b/app/src/organisms/ProtocolSetupModulesAndDeck/__tests__/ProtocolSetupModulesAndDeck.test.tsx index e2bd427d691..8154768b9c8 100644 --- a/app/src/organisms/ProtocolSetupModulesAndDeck/__tests__/ProtocolSetupModulesAndDeck.test.tsx +++ b/app/src/organisms/ProtocolSetupModulesAndDeck/__tests__/ProtocolSetupModulesAndDeck.test.tsx @@ -1,10 +1,10 @@ import * as React from 'react' -import { UseQueryResult } from 'react-query' import { fireEvent, screen, waitFor } from '@testing-library/react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { MemoryRouter } from 'react-router-dom' +import { RUN_STATUS_IDLE } from '@opentrons/api-client' import { FLEX_ROBOT_TYPE, WASTE_CHUTE_RIGHT_ADAPTER_NO_COVER_FIXTURE, @@ -39,7 +39,7 @@ import { useNotifyDeckConfigurationQuery } from '../../../resources/deck_configu import { useRunStatus } from '../../RunTimeControl/hooks' import type { CutoutConfig, DeckConfiguration } from '@opentrons/shared-data' -import { RUN_STATUS_IDLE } from '@opentrons/api-client' +import type { UseQueryResult } from 'react-query' vi.mock('../../../resources/runs') vi.mock('../../../redux/discovery') diff --git a/app/src/organisms/ProtocolSetupModulesAndDeck/utils.ts b/app/src/organisms/ProtocolSetupModulesAndDeck/utils.ts index 709d357c511..f1b8601dca1 100644 --- a/app/src/organisms/ProtocolSetupModulesAndDeck/utils.ts +++ b/app/src/organisms/ProtocolSetupModulesAndDeck/utils.ts @@ -1,9 +1,7 @@ import { - DeckConfiguration, FLEX_ROBOT_TYPE, NON_CONNECTING_MODULE_TYPES, OT2_ROBOT_TYPE, - RobotType, checkModuleCompatibility, getCutoutFixturesForModuleModel, getCutoutIdsFromModuleSlotName, @@ -11,6 +9,7 @@ import { getModuleType, } from '@opentrons/shared-data' +import type { DeckConfiguration, RobotType } from '@opentrons/shared-data' import type { ProtocolModuleInfo } from '../../organisms/Devices/ProtocolRun/utils/getProtocolModulesInfo' import type { AttachedModule } from '../../redux/modules/types' diff --git a/app/src/organisms/ProtocolSetupParameters/__tests__/ChooseEnum.test.tsx b/app/src/organisms/ProtocolSetupParameters/__tests__/ChooseEnum.test.tsx index e0facc22d96..2af4dc11a3c 100644 --- a/app/src/organisms/ProtocolSetupParameters/__tests__/ChooseEnum.test.tsx +++ b/app/src/organisms/ProtocolSetupParameters/__tests__/ChooseEnum.test.tsx @@ -73,7 +73,7 @@ describe('ChooseEnum', () => { const selectedOption = screen.getByRole('label', { name: 'temp offset', }) - expect(notSelectedOption).toHaveStyle(`background-color: ${COLORS.blue40}`) - expect(selectedOption).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(notSelectedOption).toHaveStyle(`background: ${COLORS.blue35}`) + expect(selectedOption).toHaveStyle(`background: ${COLORS.blue50}`) }) }) diff --git a/app/src/organisms/ProtocolSetupParameters/__tests__/ResetValuesModal.test.tsx b/app/src/organisms/ProtocolSetupParameters/__tests__/ResetValuesModal.test.tsx index ec2eb28a81c..46659717788 100644 --- a/app/src/organisms/ProtocolSetupParameters/__tests__/ResetValuesModal.test.tsx +++ b/app/src/organisms/ProtocolSetupParameters/__tests__/ResetValuesModal.test.tsx @@ -5,7 +5,7 @@ import { fireEvent, screen } from '@testing-library/react' import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { ResetValuesModal } from '../ResetValuesModal' -import { RunTimeParameter } from '@opentrons/shared-data' +import type { RunTimeParameter } from '@opentrons/shared-data' const mockGoBack = vi.fn() const mockSetRunTimeParametersOverrides = vi.fn() diff --git a/app/src/organisms/ProtocolUpload/hooks/useCurrentRunId.ts b/app/src/organisms/ProtocolUpload/hooks/useCurrentRunId.ts index 135ba73c504..6ae83907681 100644 --- a/app/src/organisms/ProtocolUpload/hooks/useCurrentRunId.ts +++ b/app/src/organisms/ProtocolUpload/hooks/useCurrentRunId.ts @@ -2,7 +2,7 @@ import { useNotifyAllRunsQuery } from '../../../resources/runs' import type { AxiosError } from 'axios' import type { UseAllRunsQueryOptions } from '@opentrons/react-api-client/src/runs/useAllRunsQuery' -import type { QueryOptionsWithPolling } from '../../../resources/useNotifyService' +import type { QueryOptionsWithPolling } from '../../../resources/useNotifyDataReady' export function useCurrentRunId( options: QueryOptionsWithPolling = {} diff --git a/app/src/organisms/ProtocolUpload/hooks/useRunCommands.ts b/app/src/organisms/ProtocolUpload/hooks/useRunCommands.ts index 33976bb6fd0..394c8a3eac0 100644 --- a/app/src/organisms/ProtocolUpload/hooks/useRunCommands.ts +++ b/app/src/organisms/ProtocolUpload/hooks/useRunCommands.ts @@ -1,4 +1,5 @@ -import { useAllCommandsQuery } from '@opentrons/react-api-client' +import { useNotifyAllCommandsQuery } from '../../../resources/runs' + import type { UseQueryOptions } from 'react-query' import type { CommandsData, @@ -13,7 +14,7 @@ export function useRunCommands( params?: GetCommandsParams, options?: UseQueryOptions ): RunCommandSummary[] | null { - const { data: commandsData } = useAllCommandsQuery(runId, params, { + const { data: commandsData } = useNotifyAllCommandsQuery(runId, params, { refetchInterval: REFETCH_INTERVAL, ...options, }) diff --git a/app/src/organisms/ProtocolsLanding/ProtocolCard.tsx b/app/src/organisms/ProtocolsLanding/ProtocolCard.tsx index 89658e81ef4..585aaa2277b 100644 --- a/app/src/organisms/ProtocolsLanding/ProtocolCard.tsx +++ b/app/src/organisms/ProtocolsLanding/ProtocolCard.tsx @@ -8,7 +8,6 @@ import { ErrorBoundary } from 'react-error-boundary' import { getModuleType, getPipetteNameSpecs, - ProtocolAnalysisOutput, FLEX_STANDARD_MODEL, getGripperDisplayName, } from '@opentrons/shared-data' @@ -42,6 +41,7 @@ import { getIsProtocolAnalysisInProgress } from '../../redux/protocol-storage' import { InstrumentContainer } from '../../atoms/InstrumentContainer' import { ProtocolOverflowMenu } from './ProtocolOverflowMenu' import { ProtocolAnalysisFailure } from '../ProtocolAnalysisFailure' +import { getProtocolUsesGripper } from '../ProtocolSetupInstruments/utils' import { ProtocolAnalysisStale } from '../ProtocolAnalysisFailure/ProtocolAnalysisStale' import { getAnalysisStatus, @@ -49,9 +49,9 @@ import { getRobotTypeDisplayName, } from './utils' +import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' import type { StoredProtocolData } from '../../redux/protocol-storage' import type { State } from '../../redux/types' -import { getProtocolUsesGripper } from '../ProtocolSetupInstruments/utils' interface ProtocolCardProps { handleRunProtocol: (storedProtocolData: StoredProtocolData) => void diff --git a/app/src/organisms/ProtocolsLanding/__tests__/hooks.test.tsx b/app/src/organisms/ProtocolsLanding/__tests__/hooks.test.tsx index cfba2402172..629cb692ff0 100644 --- a/app/src/organisms/ProtocolsLanding/__tests__/hooks.test.tsx +++ b/app/src/organisms/ProtocolsLanding/__tests__/hooks.test.tsx @@ -7,10 +7,10 @@ import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest' import { FLEX_ROBOT_TYPE, OT2_ROBOT_TYPE } from '@opentrons/shared-data' import { useSortedProtocols } from '../hooks' -import { StoredProtocolData } from '../../../redux/protocol-storage' import type { Store } from 'redux' import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' +import type { StoredProtocolData } from '../../../redux/protocol-storage' import type { State } from '../../../redux/types' const mockStoredProtocolData = [ diff --git a/app/src/organisms/ProtocolsLanding/hooks.tsx b/app/src/organisms/ProtocolsLanding/hooks.tsx index dcdc9c528c9..c067cd34f98 100644 --- a/app/src/organisms/ProtocolsLanding/hooks.tsx +++ b/app/src/organisms/ProtocolsLanding/hooks.tsx @@ -1,6 +1,6 @@ import { FLEX_ROBOT_TYPE } from '@opentrons/shared-data' -import { StoredProtocolData } from '../../redux/protocol-storage' import { getProtocolDisplayName } from './utils' +import type { StoredProtocolData } from '../../redux/protocol-storage' export type ProtocolSort = | 'alphabetical' diff --git a/app/src/organisms/QuickTransferFlow/ConfirmExitModal.tsx b/app/src/organisms/QuickTransferFlow/ConfirmExitModal.tsx new file mode 100644 index 00000000000..817e9fe9a1d --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/ConfirmExitModal.tsx @@ -0,0 +1,54 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { + SPACING, + COLORS, + StyledText, + Flex, + DIRECTION_COLUMN, + TYPOGRAPHY, +} from '@opentrons/components' +import { Modal } from '../../molecules/Modal' +import { SmallButton } from '../../atoms/buttons' + +interface ConfirmExitModalProps { + confirmExit: () => void + cancelExit: () => void +} + +export const ConfirmExitModal = (props: ConfirmExitModalProps): JSX.Element => { + const { i18n, t } = useTranslation(['quick_transfer', 'shared']) + + return ( + + + + {t('lose_all_progress')} + + + + + + + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/CreateNewTransfer.tsx b/app/src/organisms/QuickTransferFlow/CreateNewTransfer.tsx index 21689fa2ceb..c6f4986febc 100644 --- a/app/src/organisms/QuickTransferFlow/CreateNewTransfer.tsx +++ b/app/src/organisms/QuickTransferFlow/CreateNewTransfer.tsx @@ -10,9 +10,9 @@ import { DIRECTION_COLUMN, } from '@opentrons/components' -import { SmallButton } from '../../atoms/buttons' import { ChildNavigation } from '../ChildNavigation' import { useNotifyDeckConfigurationQuery } from '../../resources/deck_configuration' +import type { SmallButton } from '../../atoms/buttons' interface CreateNewTransferProps { onNext: () => void @@ -64,8 +64,8 @@ export function CreateNewTransfer(props: CreateNewTransferProps): JSX.Element { handleClickRemove={() => {}} additionalStaticFixtures={[ { location: 'cutoutB2', label: t('tip_rack') }, - { location: 'cutoutC2', label: t('labware') }, - { location: 'cutoutD2', label: t('labware') }, + { location: 'cutoutC2', label: t('source') }, + { location: 'cutoutD2', label: t('destination') }, ]} /> diff --git a/app/src/organisms/QuickTransferFlow/Overview.tsx b/app/src/organisms/QuickTransferFlow/Overview.tsx new file mode 100644 index 00000000000..fc660f400fc --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/Overview.tsx @@ -0,0 +1,83 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { + Flex, + StyledText, + SPACING, + TYPOGRAPHY, + DIRECTION_COLUMN, + JUSTIFY_SPACE_BETWEEN, + COLORS, + TEXT_ALIGN_RIGHT, +} from '@opentrons/components' +import { ListItem } from '../../atoms/ListItem' +import { CONSOLIDATE, DISTRIBUTE } from './constants' + +import type { QuickTransferSummaryState } from './types' + +interface OverviewProps { + state: QuickTransferSummaryState +} + +export function Overview(props: OverviewProps): JSX.Element | null { + const { state } = props + const { t } = useTranslation(['quick_transfer', 'shared']) + + let transferCopy = t('volume_per_well') + if (state.transferType === CONSOLIDATE) { + transferCopy = t('aspirate_volume') + } else if (state.transferType === DISTRIBUTE) { + transferCopy = t('dispense_volume') + } + + const displayItems = [ + { + option: t('pipette'), + value: state.pipette.displayName, + }, + { + option: t('tip_rack'), + value: state.tipRack.metadata.displayName, + }, + { + option: t('source_labware'), + value: state.source.metadata.displayName, + }, + { + option: t('destination_labware'), + value: + state.destination === 'source' + ? state.source.metadata.displayName + : state.destination.metadata.displayName, + }, + { + option: transferCopy, + value: `${state.volume}µL`, + }, + ] + + return ( + + {displayItems.map(displayItem => ( + + + + {displayItem.option} + + + {displayItem.value} + + + + ))} + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/SelectDestLabware.tsx b/app/src/organisms/QuickTransferFlow/SelectDestLabware.tsx new file mode 100644 index 00000000000..5cc42cfaa97 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/SelectDestLabware.tsx @@ -0,0 +1,148 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { + Flex, + SPACING, + DIRECTION_COLUMN, + DIRECTION_ROW, + COLORS, + POSITION_FIXED, + ALIGN_CENTER, +} from '@opentrons/components' + +import { LargeButton, TabbedButton } from '../../atoms/buttons' +import { ChildNavigation } from '../ChildNavigation' +import { getCompatibleLabwareByCategory } from './utils' + +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { SmallButton } from '../../atoms/buttons' +import type { LabwareFilter } from '../../pages/Labware/types' +import type { + QuickTransferWizardState, + QuickTransferWizardAction, +} from './types' + +interface SelectDestLabwareProps { + onNext: () => void + onBack: () => void + exitButtonProps: React.ComponentProps + state: QuickTransferWizardState + dispatch: React.Dispatch +} + +export function SelectDestLabware( + props: SelectDestLabwareProps +): JSX.Element | null { + const { onNext, onBack, exitButtonProps, state, dispatch } = props + const { i18n, t } = useTranslation(['quick_transfer', 'shared']) + const labwareDisplayCategoryFilters: LabwareFilter[] = [ + 'all', + 'wellPlate', + 'reservoir', + ] + if (state.pipette?.channels === 1) { + labwareDisplayCategoryFilters.push('tubeRack') + } + const [selectedCategory, setSelectedCategory] = React.useState( + 'all' + ) + const [selectedLabware, setSelectedLabware] = React.useState< + LabwareDefinition2 | 'source' | undefined + >(state.destination) + + if (state.pipette == null) return null + + const compatibleLabwareDefinitions = getCompatibleLabwareByCategory( + state.pipette.channels, + selectedCategory + ) + + const handleClickNext = (): void => { + // the button will be disabled if this values is null + if (selectedLabware != null) { + dispatch({ + type: 'SET_DEST_LABWARE', + labware: selectedLabware, + }) + onNext() + } + } + return ( + + + + + {labwareDisplayCategoryFilters.map(category => ( + setSelectedCategory(category)} + height={SPACING.spacing60} + > + {t(category)} + + ))} + + + {selectedCategory === 'all' && state?.source != null ? ( + { + setSelectedLabware('source') + }} + buttonText={t('source_labware_d2')} + subtext={state.source.metadata.displayName} + /> + ) : null} + {compatibleLabwareDefinitions?.map(definition => { + return definition.metadata.displayName != null ? ( + { + setSelectedLabware(definition) + }} + buttonText={definition.metadata.displayName} + /> + ) : null + })} + + + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/SelectDestWells.tsx b/app/src/organisms/QuickTransferFlow/SelectDestWells.tsx new file mode 100644 index 00000000000..0182ead0f32 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/SelectDestWells.tsx @@ -0,0 +1,82 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { Flex, POSITION_FIXED, SPACING } from '@opentrons/components' + +import { ChildNavigation } from '../ChildNavigation' +import { WellSelection } from '../../organisms/WellSelection' + +import type { SmallButton } from '../../atoms/buttons' +import type { + QuickTransferWizardState, + QuickTransferWizardAction, +} from './types' + +interface SelectDestWellsProps { + onNext: () => void + onBack: () => void + state: QuickTransferWizardState + dispatch: React.Dispatch +} + +export function SelectDestWells(props: SelectDestWellsProps): JSX.Element { + const { onNext, onBack, state, dispatch } = props + const { i18n, t } = useTranslation(['quick_transfer', 'shared']) + + const destinationWells = state.destinationWells ?? [] + const destinationWellGroup = destinationWells.reduce((acc, well) => { + return { ...acc, [well]: null } + }, {}) + + const [selectedWells, setSelectedWells] = React.useState(destinationWellGroup) + + const handleClickNext = (): void => { + dispatch({ + type: 'SET_DEST_WELLS', + wells: Object.keys(selectedWells), + }) + onNext() + } + + const resetButtonProps: React.ComponentProps = { + buttonType: 'tertiaryLowLight', + buttonText: t('shared:reset'), + onClick: () => { + setSelectedWells({}) + }, + } + + return ( + <> + + + {state.destination != null && state.source != null ? ( + { + setSelectedWells(prevWells => ({ ...prevWells, ...wellGroup })) + }} + channels={state.pipette?.channels ?? 1} + /> + ) : null} + + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/SelectPipette.tsx b/app/src/organisms/QuickTransferFlow/SelectPipette.tsx index 6ef31157fdf..98042f1e361 100644 --- a/app/src/organisms/QuickTransferFlow/SelectPipette.tsx +++ b/app/src/organisms/QuickTransferFlow/SelectPipette.tsx @@ -9,12 +9,13 @@ import { } from '@opentrons/components' import { useInstrumentsQuery } from '@opentrons/react-api-client' import { getPipetteSpecsV2, RIGHT, LEFT } from '@opentrons/shared-data' -import { SmallButton, LargeButton } from '../../atoms/buttons' +import { LargeButton } from '../../atoms/buttons' import { ChildNavigation } from '../ChildNavigation' import type { PipetteData, Mount } from '@opentrons/api-client' +import type { SmallButton } from '../../atoms/buttons' import type { - QuickTransferSetupState, + QuickTransferWizardState, QuickTransferWizardAction, } from './types' @@ -22,7 +23,7 @@ interface SelectPipetteProps { onNext: () => void onBack: () => void exitButtonProps: React.ComponentProps - state: QuickTransferSetupState + state: QuickTransferWizardState dispatch: React.Dispatch } diff --git a/app/src/organisms/QuickTransferFlow/SelectSourceLabware.tsx b/app/src/organisms/QuickTransferFlow/SelectSourceLabware.tsx new file mode 100644 index 00000000000..3524d7dd3c7 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/SelectSourceLabware.tsx @@ -0,0 +1,136 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { + Flex, + SPACING, + DIRECTION_COLUMN, + DIRECTION_ROW, + COLORS, + POSITION_FIXED, + ALIGN_CENTER, +} from '@opentrons/components' + +import { LargeButton, TabbedButton } from '../../atoms/buttons' +import { ChildNavigation } from '../ChildNavigation' +import { getCompatibleLabwareByCategory } from './utils' + +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { SmallButton } from '../../atoms/buttons' +import type { LabwareFilter } from '../../pages/Labware/types' +import type { + QuickTransferWizardState, + QuickTransferWizardAction, +} from './types' + +interface SelectSourceLabwareProps { + onNext: () => void + onBack: () => void + exitButtonProps: React.ComponentProps + state: QuickTransferWizardState + dispatch: React.Dispatch +} + +export function SelectSourceLabware( + props: SelectSourceLabwareProps +): JSX.Element | null { + const { onNext, onBack, exitButtonProps, state, dispatch } = props + const { i18n, t } = useTranslation(['quick_transfer', 'shared']) + const labwareDisplayCategoryFilters: LabwareFilter[] = [ + 'all', + 'wellPlate', + 'reservoir', + ] + if (state.pipette?.channels === 1) { + labwareDisplayCategoryFilters.push('tubeRack') + } + const [selectedCategory, setSelectedCategory] = React.useState( + 'all' + ) + + const [selectedLabware, setSelectedLabware] = React.useState< + LabwareDefinition2 | undefined + >(state.source) + + if (state.pipette == null) return null + + const compatibleLabwareDefinitions = getCompatibleLabwareByCategory( + state.pipette.channels, + selectedCategory + ) + + const handleClickNext = (): void => { + // the button will be disabled if this values is null + if (selectedLabware != null) { + dispatch({ + type: 'SET_SOURCE_LABWARE', + labware: selectedLabware, + }) + onNext() + } + } + return ( + + + + + {labwareDisplayCategoryFilters.map(category => ( + setSelectedCategory(category)} + height={SPACING.spacing60} + > + {t(category)} + + ))} + + + {compatibleLabwareDefinitions?.map(definition => { + return definition.metadata.displayName != null ? ( + { + setSelectedLabware(definition) + }} + buttonText={definition.metadata.displayName} + /> + ) : null + })} + + + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/SelectSourceWells.tsx b/app/src/organisms/QuickTransferFlow/SelectSourceWells.tsx new file mode 100644 index 00000000000..0a5edc181e5 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/SelectSourceWells.tsx @@ -0,0 +1,80 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { Flex, POSITION_FIXED, SPACING } from '@opentrons/components' + +import { ChildNavigation } from '../../organisms/ChildNavigation' +import { WellSelection } from '../../organisms/WellSelection' + +import type { SmallButton } from '../../atoms/buttons' +import type { + QuickTransferWizardState, + QuickTransferWizardAction, +} from './types' + +interface SelectSourceWellsProps { + onNext: () => void + onBack: () => void + state: QuickTransferWizardState + dispatch: React.Dispatch +} + +export function SelectSourceWells(props: SelectSourceWellsProps): JSX.Element { + const { onNext, onBack, state, dispatch } = props + const { i18n, t } = useTranslation(['quick_transfer', 'shared']) + + const sourceWells = state.sourceWells ?? [] + const sourceWellGroup = sourceWells.reduce((acc, well) => { + return { ...acc, [well]: null } + }, {}) + + const [selectedWells, setSelectedWells] = React.useState(sourceWellGroup) + + const handleClickNext = (): void => { + dispatch({ + type: 'SET_SOURCE_WELLS', + wells: Object.keys(selectedWells), + }) + onNext() + } + + const resetButtonProps: React.ComponentProps = { + buttonType: 'tertiaryLowLight', + buttonText: t('shared:reset'), + onClick: () => { + setSelectedWells({}) + }, + } + + return ( + <> + + + {state.source != null ? ( + { + setSelectedWells(prevWells => ({ ...prevWells, ...wellGroup })) + }} + channels={state.pipette?.channels ?? 1} + /> + ) : null} + + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/SelectTipRack.tsx b/app/src/organisms/QuickTransferFlow/SelectTipRack.tsx index bed59baa54b..acd5e90b054 100644 --- a/app/src/organisms/QuickTransferFlow/SelectTipRack.tsx +++ b/app/src/organisms/QuickTransferFlow/SelectTipRack.tsx @@ -2,12 +2,13 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { Flex, SPACING, DIRECTION_COLUMN } from '@opentrons/components' import { getAllDefinitions } from '@opentrons/shared-data' -import { SmallButton, LargeButton } from '../../atoms/buttons' +import { LargeButton } from '../../atoms/buttons' import { ChildNavigation } from '../ChildNavigation' import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { SmallButton } from '../../atoms/buttons' import type { - QuickTransferSetupState, + QuickTransferWizardState, QuickTransferWizardAction, } from './types' @@ -15,7 +16,7 @@ interface SelectTipRackProps { onNext: () => void onBack: () => void exitButtonProps: React.ComponentProps - state: QuickTransferSetupState + state: QuickTransferWizardState dispatch: React.Dispatch } @@ -64,6 +65,7 @@ export function SelectTipRack(props: SelectTipRackProps): JSX.Element { return tipRackDef != null ? ( void + exitButtonProps: React.ComponentProps + state: QuickTransferWizardState +} + +export function SummaryAndSettings( + props: SummaryAndSettingsProps +): JSX.Element | null { + const { onNext, exitButtonProps, state: wizardFlowState } = props + const { t } = useTranslation(['quick_transfer', 'shared']) + const displayCategory: string[] = [ + 'overview', + 'advanced_settings', + 'tip_management', + ] + const [selectedCategory, setSelectedCategory] = React.useState( + 'overview' + ) + // @ts-expect-error TODO figure out how to make this type non-null as we know + // none of these values will be undefined + const initialSummaryState = getInitialSummaryState(wizardFlowState) + const [state] = React.useReducer( + quickTransferSummaryReducer, + initialSummaryState + ) + + return ( + + + + + {displayCategory.map(category => ( + setSelectedCategory(category)} + height={SPACING.spacing60} + > + {t(category)} + + ))} + + {selectedCategory === 'overview' ? : null} + + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/VolumeEntry.tsx b/app/src/organisms/QuickTransferFlow/VolumeEntry.tsx new file mode 100644 index 00000000000..351f72bacd9 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/VolumeEntry.tsx @@ -0,0 +1,120 @@ +import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { + Flex, + SPACING, + DIRECTION_COLUMN, + ALIGN_CENTER, +} from '@opentrons/components' + +import { ChildNavigation } from '../ChildNavigation' +import { InputField } from '../../atoms/InputField' +import { NumericalKeyboard } from '../../atoms/SoftwareKeyboard' +import { getVolumeRange } from './utils' +import { CONSOLIDATE, DISTRIBUTE } from './constants' + +import type { SmallButton } from '../../atoms/buttons' +import type { + QuickTransferWizardState, + QuickTransferWizardAction, +} from './types' + +interface VolumeEntryProps { + onNext: () => void + onBack: () => void + exitButtonProps: React.ComponentProps + state: QuickTransferWizardState + dispatch: React.Dispatch +} + +export function VolumeEntry(props: VolumeEntryProps): JSX.Element { + const { onNext, onBack, exitButtonProps, state, dispatch } = props + const { i18n, t } = useTranslation(['quick_transfer', 'shared']) + const keyboardRef = React.useRef(null) + + const [volume, setVolume] = React.useState( + state.volume ? state.volume.toString() : '' + ) + const volumeRange = getVolumeRange(state) + let headerCopy = t('set_transfer_volume') + let textEntryCopy = t('volume_per_well_µL') + if (state.transferType === CONSOLIDATE) { + headerCopy = t('set_aspirate_volume') + textEntryCopy = t('aspirate_volume_µL') + } else if (state.transferType === DISTRIBUTE) { + headerCopy = t('set_dispense_volume') + textEntryCopy = t('dispense_volume_µL') + } + + const volumeAsNumber = Number(volume) + + const handleClickNext = (): void => { + // the button will be disabled if this values is null + if (volumeAsNumber != null) { + dispatch({ + type: 'SET_VOLUME', + volume: volumeAsNumber, + }) + onNext() + } + } + + const error = + volume !== '' && + (volumeAsNumber < volumeRange.min || volumeAsNumber > volumeRange.max) + ? t(`value_out_of_range`, { + min: volumeRange.min, + max: volumeRange.max, + }) + : null + + return ( + + + + + + + + setVolume(e)} + /> + + + + ) +} diff --git a/app/src/organisms/QuickTransferFlow/__tests__/ConfirmExitModal.test.tsx b/app/src/organisms/QuickTransferFlow/__tests__/ConfirmExitModal.test.tsx new file mode 100644 index 00000000000..f1e3681a93a --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/ConfirmExitModal.test.tsx @@ -0,0 +1,42 @@ +import * as React from 'react' +import { fireEvent, screen } from '@testing-library/react' +import { describe, it, expect, afterEach, vi, beforeEach } from 'vitest' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { ConfirmExitModal } from '../ConfirmExitModal' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + }) +} + +describe('ConfirmExitModal', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + confirmExit: vi.fn(), + cancelExit: vi.fn(), + } + }) + afterEach(() => { + vi.resetAllMocks() + }) + + it('renders the create new transfer screen and header', () => { + render(props) + screen.getByText('Exit quick transfer?') + screen.getByText('You will lose all progress on this quick transfer.') + }) + it('renders exit and cancel buttons and they work as expected', () => { + render(props) + const cancelBtn = screen.getByText('Cancel') + fireEvent.click(cancelBtn) + expect(props.cancelExit).toHaveBeenCalled() + const deleteBtn = screen.getByText('Delete') + fireEvent.click(deleteBtn) + expect(props.confirmExit).toHaveBeenCalled() + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/Overview.test.tsx b/app/src/organisms/QuickTransferFlow/__tests__/Overview.test.tsx new file mode 100644 index 00000000000..12b079cecd6 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/Overview.test.tsx @@ -0,0 +1,117 @@ +import * as React from 'react' +import { screen } from '@testing-library/react' +import { describe, it, afterEach, vi, beforeEach } from 'vitest' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { Overview } from '../Overview' + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + }) +} + +describe('Overview', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + state: { + pipette: { + displayName: 'Pipette display name', + } as any, + tipRack: { + metadata: { + displayName: 'Tip rack display name', + }, + } as any, + source: { + metadata: { + displayName: 'Source labware name', + }, + } as any, + destination: { + metadata: { + displayName: 'Destination labware name', + }, + } as any, + transferType: 'transfer', + volume: 25, + } as any, + } + }) + afterEach(() => { + vi.resetAllMocks() + }) + + it('renders the summary fields for a 1 to 1 transfer', () => { + render(props) + screen.getByText('Pipette') + screen.getByText('Pipette display name') + screen.getByText('Tip rack') + screen.getByText('Tip rack display name') + screen.getByText('Source labware') + screen.getByText('Source labware name') + screen.getByText('Destination labware') + screen.getByText('Destination labware name') + screen.getByText('Volume per well') + screen.getByText('25µL') + }) + it('renders the correct volume wording for n to 1 transfer', () => { + props = { + state: { + pipette: { + displayName: 'Pipette display name', + } as any, + tipRack: { + metadata: { + displayName: 'Tip rack display name', + }, + } as any, + source: { + metadata: { + displayName: 'Source labware name', + }, + } as any, + destination: { + metadata: { + displayName: 'Destination labware name', + }, + } as any, + transferType: 'consolidate', + volume: 25, + } as any, + } + render(props) + screen.getByText('Aspirate volume per well') + }) + it('renders the correct volume wording for 1 to n transfer', () => { + props = { + state: { + pipette: { + displayName: 'Pipette display name', + } as any, + tipRack: { + metadata: { + displayName: 'Tip rack display name', + }, + } as any, + source: { + metadata: { + displayName: 'Source labware name', + }, + } as any, + destination: { + metadata: { + displayName: 'Destination labware name', + }, + } as any, + transferType: 'distribute', + volume: 25, + } as any, + } + render(props) + screen.getByText('Dispense volume per well') + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/SelectDestLabware.test.tsx b/app/src/organisms/QuickTransferFlow/__tests__/SelectDestLabware.test.tsx new file mode 100644 index 00000000000..a2d2430c268 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/SelectDestLabware.test.tsx @@ -0,0 +1,116 @@ +import * as React from 'react' +import { fireEvent, screen } from '@testing-library/react' +import { describe, it, expect, afterEach, vi, beforeEach } from 'vitest' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { SelectDestLabware } from '../SelectDestLabware' + +vi.mock('@opentrons/react-api-client') +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + }) +} + +describe('SelectDestLabware', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + onNext: vi.fn(), + onBack: vi.fn(), + exitButtonProps: { + buttonType: 'tertiaryLowLight', + buttonText: 'Exit', + onClick: vi.fn(), + }, + state: { + mount: 'left', + pipette: { + channels: 1, + } as any, + }, + dispatch: vi.fn(), + } + }) + afterEach(() => { + vi.resetAllMocks() + }) + + it('renders the select destination labware screen, header, and exit button', () => { + render(props) + screen.getByText('Select destination labware') + const exitBtn = screen.getByText('Exit') + fireEvent.click(exitBtn) + expect(props.exitButtonProps.onClick).toHaveBeenCalled() + }) + + it('renders continue button and it is disabled if no labware is selected', () => { + render(props) + screen.getByText('Continue') + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeDisabled() + }) + + it('selects labware by default if there is one in state, button will be enabled', () => { + render({ + ...props, + state: { + pipette: { + channels: 1, + } as any, + destination: { + metadata: { + displayName: 'destination labware name', + }, + } as any, + }, + }) + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeEnabled() + fireEvent.click(continueBtn) + expect(props.onNext).toHaveBeenCalled() + expect(props.dispatch).toHaveBeenCalled() + }) + + it('renders all categories for a single channel pipette', () => { + render(props) + screen.getByText('All labware') + screen.getByText('Well plates') + screen.getByText('Reservoirs') + screen.getByText('Tube racks') + }) + + it.fails('does not render tube rack tab for multi channel pipette', () => { + render({ ...props, state: { pipette: { channels: 8 } as any } }) + screen.getByText('Tube racks') + }) + + it('renders the source labware as the first option', () => { + render({ + ...props, + state: { + pipette: { channels: 8 } as any, + source: { metadata: { displayName: 'source labware name' } } as any, + }, + }) + render(props) + screen.getByText('Source labware in D2') + screen.getByText('source labware name') + }) + it('enables continue button if you select a labware', () => { + render({ + ...props, + state: { + pipette: { channels: 8 } as any, + source: { metadata: { displayName: 'source labware name' } } as any, + }, + }) + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeDisabled() + const sourceLabware = screen.getByText('Source labware in D2') + fireEvent.click(sourceLabware) + expect(continueBtn).toBeEnabled() + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/SelectSourceLabware.test.tsx b/app/src/organisms/QuickTransferFlow/__tests__/SelectSourceLabware.test.tsx new file mode 100644 index 00000000000..43b8c1a1e15 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/SelectSourceLabware.test.tsx @@ -0,0 +1,101 @@ +import * as React from 'react' +import { fireEvent, screen } from '@testing-library/react' +import { describe, it, expect, afterEach, vi, beforeEach } from 'vitest' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { SelectSourceLabware } from '../SelectSourceLabware' + +vi.mock('@opentrons/react-api-client') +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + }) +} + +describe('SelectSourceLabware', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + onNext: vi.fn(), + onBack: vi.fn(), + exitButtonProps: { + buttonType: 'tertiaryLowLight', + buttonText: 'Exit', + onClick: vi.fn(), + }, + state: { + mount: 'left', + pipette: { + channels: 1, + } as any, + }, + dispatch: vi.fn(), + } + }) + afterEach(() => { + vi.resetAllMocks() + }) + + it('renders the select source labware screen, header, and exit button', () => { + render(props) + screen.getByText('Select source labware') + const exitBtn = screen.getByText('Exit') + fireEvent.click(exitBtn) + expect(props.exitButtonProps.onClick).toHaveBeenCalled() + }) + + it('renders continue button and it is disabled if no labware is selected', () => { + render(props) + screen.getByText('Continue') + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeDisabled() + }) + + it('selects labware by default if there is one in state, button will be enabled', () => { + render({ + ...props, + state: { + pipette: { + channels: 1, + } as any, + source: { + metadata: { + displayName: 'source display name', + }, + } as any, + }, + }) + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeEnabled() + fireEvent.click(continueBtn) + expect(props.onNext).toHaveBeenCalled() + expect(props.dispatch).toHaveBeenCalled() + }) + + it('renders all categories for a single channel pipette', () => { + render(props) + screen.getByText('All labware') + screen.getByText('Well plates') + screen.getByText('Reservoirs') + screen.getByText('Tube racks') + }) + + it.fails('does not render tube rack tab for multi channel pipette', () => { + render({ ...props, state: { pipette: { channels: 8 } as any } }) + screen.getByText('Tube racks') + }) + + it('enables continue button if you select a labware', () => { + render(props) + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeDisabled() + const labwareOption = screen.getByText('Bio-Rad 384 Well Plate 50 µL') + fireEvent.click(labwareOption) + expect(continueBtn).toBeEnabled() + fireEvent.click(continueBtn) + expect(props.onNext).toHaveBeenCalled() + expect(props.dispatch).toHaveBeenCalled() + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/SummaryAndSettings.test.tsx b/app/src/organisms/QuickTransferFlow/__tests__/SummaryAndSettings.test.tsx new file mode 100644 index 00000000000..614f5160e9c --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/SummaryAndSettings.test.tsx @@ -0,0 +1,71 @@ +import * as React from 'react' +import { fireEvent, screen } from '@testing-library/react' +import { describe, it, expect, afterEach, vi, beforeEach } from 'vitest' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { SummaryAndSettings } from '../SummaryAndSettings' +import { Overview } from '../Overview' + +vi.mock('../Overview') +vi.mock('../utils', async () => { + const actual = await vi.importActual('../utils') + return { + ...actual, + getInitialSummaryState: vi.fn(), + } +}) + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + }) +} + +describe('SummaryAndSettings', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + onNext: vi.fn(), + exitButtonProps: { + buttonType: 'tertiaryLowLight', + buttonText: 'Exit', + onClick: vi.fn(), + }, + state: { + pipette: {} as any, + mount: 'left', + tipRack: {} as any, + source: {} as any, + sourceWells: ['A1'], + destination: {} as any, + destinationWells: ['A1'], + transferType: 'transfer', + volume: 25, + }, + } + }) + afterEach(() => { + vi.resetAllMocks() + }) + + it('renders the header and buttons for the summary and settings screen', () => { + render(props) + screen.getByText('Quick Transfer 25µL') + const exitBtn = screen.getByText('Exit') + fireEvent.click(exitBtn) + expect(props.exitButtonProps.onClick).toHaveBeenCalled() + screen.getByText('Create transfer') + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + fireEvent.click(continueBtn) + expect(props.onNext).toHaveBeenCalled() + }) + it('renders the three tabs and shows overview screen by default', () => { + render(props) + screen.getByText('Overview') + screen.getByText('Advanced settings') + screen.getByText('Tip management') + expect(vi.mocked(Overview)).toHaveBeenCalled() + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/VolumeEntry.test.tsx b/app/src/organisms/QuickTransferFlow/__tests__/VolumeEntry.test.tsx new file mode 100644 index 00000000000..a130ef6075f --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/VolumeEntry.test.tsx @@ -0,0 +1,163 @@ +import * as React from 'react' +import { fireEvent, screen } from '@testing-library/react' +import { describe, it, expect, afterEach, vi, beforeEach } from 'vitest' + +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { InputField } from '../../../atoms/InputField' +import { NumericalKeyboard } from '../../../atoms/SoftwareKeyboard' +import { getVolumeRange } from '../utils' +import { VolumeEntry } from '../VolumeEntry' + +vi.mock('../../../atoms/InputField') +vi.mock('../../../atoms/SoftwareKeyboard') +vi.mock('../utils') + +const render = (props: React.ComponentProps) => { + return renderWithProviders(, { + i18nInstance: i18n, + }) +} + +describe('VolumeEntry', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + onNext: vi.fn(), + onBack: vi.fn(), + exitButtonProps: { + buttonType: 'tertiaryLowLight', + buttonText: 'Exit', + onClick: vi.fn(), + }, + state: { + mount: 'left', + pipette: { + channels: 1, + } as any, + sourceWells: ['A1'], + destinationWells: ['A1'], + transferType: 'transfer', + }, + dispatch: vi.fn(), + } + vi.mocked(getVolumeRange).mockReturnValue({ min: 5, max: 50 }) + }) + afterEach(() => { + vi.resetAllMocks() + }) + + it('renders the volume entry screen, continue, and exit buttons', () => { + render(props) + const exitBtn = screen.getByText('Exit') + fireEvent.click(exitBtn) + expect(props.exitButtonProps.onClick).toHaveBeenCalled() + expect(vi.mocked(InputField)).toHaveBeenCalled() + expect(vi.mocked(NumericalKeyboard)).toHaveBeenCalled() + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeDisabled() + }) + + it('renders transfer text if there are more destination wells than source wells', () => { + render(props) + screen.getByText('Set transfer volume') + expect(vi.mocked(InputField)).toHaveBeenCalledWith( + { + title: 'Volume per well (µL)', + error: null, + readOnly: true, + type: 'text', + value: '', + }, + {} + ) + }) + + it('renders dispense text if there are more destination wells than source wells', () => { + render({ + ...props, + state: { + sourceWells: ['A1'], + destinationWells: ['A1', 'A2'], + transferType: 'distribute', + }, + }) + render(props) + screen.getByText('Set dispense volume') + expect(vi.mocked(InputField)).toHaveBeenCalledWith( + { + title: 'Dispense volume per well (µL)', + error: null, + readOnly: true, + type: 'text', + value: '', + }, + {} + ) + }) + + it('renders aspirate text if there are more destination wells than source wells', () => { + render({ + ...props, + state: { + sourceWells: ['A1', 'A2'], + destinationWells: ['A1'], + transferType: 'consolidate', + }, + }) + render(props) + screen.getByText('Set aspirate volume') + expect(vi.mocked(InputField)).toHaveBeenCalledWith( + { + title: 'Aspirate volume per well (µL)', + error: null, + readOnly: true, + type: 'text', + value: '', + }, + {} + ) + }) + + it('calls on next and dispatch if you press continue when volume is non-null and within range', () => { + render({ + ...props, + state: { + sourceWells: ['A1', 'A2'], + destinationWells: ['A1'], + transferType: 'consolidate', + volume: 20, + }, + }) + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeEnabled() + fireEvent.click(continueBtn) + expect(vi.mocked(props.onNext)).toHaveBeenCalled() + expect(vi.mocked(props.dispatch)).toHaveBeenCalled() + }) + + it('displays an error and disables continue when volume is outside of range', () => { + render({ + ...props, + state: { + sourceWells: ['A1', 'A2'], + destinationWells: ['A1'], + transferType: 'consolidate', + volume: 90, + }, + }) + const continueBtn = screen.getByTestId('ChildNavigation_Primary_Button') + expect(continueBtn).toBeDisabled() + expect(vi.mocked(InputField)).toHaveBeenCalledWith( + { + title: 'Aspirate volume per well (µL)', + error: 'Value must be between 5-50', + readOnly: true, + type: 'text', + value: '90', + }, + {} + ) + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/utils/generateCompatibleLabwareForPipette.test.ts b/app/src/organisms/QuickTransferFlow/__tests__/utils/generateCompatibleLabwareForPipette.test.ts new file mode 100644 index 00000000000..fb94d4d7575 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/utils/generateCompatibleLabwareForPipette.test.ts @@ -0,0 +1,30 @@ +import { describe, it, expect } from 'vitest' +import { generateCompatibleLabwareForPipette } from '../../utils' +import { + SINGLE_CHANNEL_COMPATIBLE_LABWARE, + EIGHT_CHANNEL_COMPATIBLE_LABWARE, + NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE, +} from '../../constants' + +// if one of these fails, it is likely that a new definition has been added +// and you need to regenerate the lists stored at ../constants +describe('generateCompatibleLabwareForPipette', () => { + it('generates the list for single channel pipettes', () => { + const compatibleLabwareUris = generateCompatibleLabwareForPipette({ + channels: 1, + } as any) + expect(compatibleLabwareUris).toEqual(SINGLE_CHANNEL_COMPATIBLE_LABWARE) + }) + it('generates the list for eight channel pipettes', () => { + const compatibleLabwareUris = generateCompatibleLabwareForPipette({ + channels: 8, + } as any) + expect(compatibleLabwareUris).toEqual(EIGHT_CHANNEL_COMPATIBLE_LABWARE) + }) + it('generates the list for 96 channel pipettes', () => { + const compatibleLabwareUris = generateCompatibleLabwareForPipette({ + channels: 96, + } as any) + expect(compatibleLabwareUris).toEqual(NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE) + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/utils/getInitialSummaryState.test.ts b/app/src/organisms/QuickTransferFlow/__tests__/utils/getInitialSummaryState.test.ts new file mode 100644 index 00000000000..cff79762f9b --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/utils/getInitialSummaryState.test.ts @@ -0,0 +1,137 @@ +import { describe, it, expect, vi, beforeEach, afterEach } from 'vitest' +import { getInitialSummaryState } from '../../utils' +import { getVolumeRange } from '../../utils/getVolumeRange' + +vi.mock('../../utils/getVolumeRange') + +describe('getInitialSummaryState', () => { + const props = { + pipette: { + liquids: { + default: { + supportedTips: { + t50: { + defaultAspirateFlowRate: { + default: 50, + }, + defaultDispenseFlowRate: { + default: 75, + }, + }, + }, + }, + }, + } as any, + mount: 'left', + tipRack: { + wells: { + A1: { + totalLiquidVolume: 50, + }, + }, + } as any, + source: {} as any, + sourceWells: ['A1'], + destination: 'source', + destinationWells: ['A1'], + transferType: 'transfer', + volume: 25, + } as any + beforeEach(() => { + vi.mocked(getVolumeRange).mockReturnValue({ min: 5, max: 100 }) + }) + afterEach(() => { + vi.resetAllMocks() + }) + + it('generates the summary state with correct default value for 1 to 1 transfer', () => { + const initialSummaryState = getInitialSummaryState(props) + expect(initialSummaryState).toEqual({ + ...props, + aspirateFlowRate: 50, + dispenseFlowRate: 75, + path: 'single', + tipPositionAspirate: 1, + preWetTip: false, + tipPositionDispense: 1, + changeTip: 'once', + dropTipLocation: 'trashBin', + }) + }) + it('generates the summary state with correct default value for n to 1 transfer', () => { + const initialSummaryState = getInitialSummaryState({ + ...props, + transferType: 'consolidate', + }) + expect(initialSummaryState).toEqual({ + ...props, + transferType: 'consolidate', + aspirateFlowRate: 50, + dispenseFlowRate: 75, + path: 'multiAspirate', + tipPositionAspirate: 1, + preWetTip: false, + tipPositionDispense: 1, + changeTip: 'once', + dropTipLocation: 'trashBin', + }) + }) + it('generates the summary state with correct default value for n to 1 transfer with too high of volume for multiAspirate', () => { + const initialSummaryState = getInitialSummaryState({ + ...props, + transferType: 'consolidate', + volume: 60, + }) + expect(initialSummaryState).toEqual({ + ...props, + transferType: 'consolidate', + volume: 60, + aspirateFlowRate: 50, + dispenseFlowRate: 75, + path: 'single', + tipPositionAspirate: 1, + preWetTip: false, + tipPositionDispense: 1, + changeTip: 'once', + dropTipLocation: 'trashBin', + }) + }) + it('generates the summary state with correct default value for 1 to n transfer', () => { + const initialSummaryState = getInitialSummaryState({ + ...props, + transferType: 'distribute', + }) + expect(initialSummaryState).toEqual({ + ...props, + transferType: 'distribute', + aspirateFlowRate: 50, + dispenseFlowRate: 75, + path: 'multiDispense', + tipPositionAspirate: 1, + preWetTip: false, + tipPositionDispense: 1, + changeTip: 'once', + dropTipLocation: 'trashBin', + }) + }) + it('generates the summary state with correct default value for 1 to n transfer with too high of volume for multiDispense', () => { + const initialSummaryState = getInitialSummaryState({ + ...props, + transferType: 'distribute', + volume: 60, + }) + expect(initialSummaryState).toEqual({ + ...props, + transferType: 'distribute', + volume: 60, + aspirateFlowRate: 50, + dispenseFlowRate: 75, + path: 'single', + tipPositionAspirate: 1, + preWetTip: false, + tipPositionDispense: 1, + changeTip: 'once', + dropTipLocation: 'trashBin', + }) + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/__tests__/utils/getVolumeRange.test.ts b/app/src/organisms/QuickTransferFlow/__tests__/utils/getVolumeRange.test.ts new file mode 100644 index 00000000000..f609a8f75cf --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/__tests__/utils/getVolumeRange.test.ts @@ -0,0 +1,80 @@ +import { describe, it, expect } from 'vitest' +import { getVolumeRange } from '../../utils' + +import type { QuickTransferWizardState } from '../../types' + +describe('getVolumeRange', () => { + const state: QuickTransferWizardState = { + pipette: { + liquids: [ + { + maxVolume: 1000, + minVolume: 5, + }, + ] as any, + } as any, + tipRack: { + wells: { + A1: { + totalLiquidVolume: 200, + }, + } as any, + } as any, + source: { + wells: { + A1: { + totalLiquidVolume: 200, + }, + A2: { + totalLiquidVolume: 75, + }, + A3: { + totalLiquidVolume: 100, + }, + } as any, + } as any, + sourceWells: ['A1'], + destination: { + wells: { + A1: { + totalLiquidVolume: 1000, + }, + A2: { + totalLiquidVolume: 1000, + }, + } as any, + } as any, + destinationWells: ['A1'], + } + it('calculates the range for a 1 to 1 transfer', () => { + const result = getVolumeRange(state) + expect(result.min).toEqual(5) + // should equal lesser of pipette max, tip capacity, volume of all selected wells + expect(result.max).toEqual(200) + }) + it('calculates the range for an n to 1 transfer', () => { + const result = getVolumeRange({ ...state, sourceWells: ['A1', 'A2'] }) + expect(result.min).toEqual(5) + // should equal lesser of pipette max, tip capacity, volume of all + // selected source wells and 1 / 2 volume of destination well + expect(result.max).toEqual(75) + }) + it('calculates the range for an 1 to n transfer', () => { + const result = getVolumeRange({ ...state, destinationWells: ['A1', 'A2'] }) + expect(result.min).toEqual(5) + // should equal lesser of pipette max, tip capacity, volume of all + // selected destination wells and 1 / 2 volume of source well + expect(result.max).toEqual(100) + }) + it('calculates the range for 1 to n transfer with same labware', () => { + const result = getVolumeRange({ + ...state, + destination: 'source', + destinationWells: ['A2', 'A3'], + }) + expect(result.min).toEqual(5) + // should equal lesser of pipette max, tip capacity, volume of all + // selected destination wells and 1 / 2 volume of source well + expect(result.max).toEqual(75) + }) +}) diff --git a/app/src/organisms/QuickTransferFlow/constants.ts b/app/src/organisms/QuickTransferFlow/constants.ts index 3241759a044..5af14e79076 100644 --- a/app/src/organisms/QuickTransferFlow/constants.ts +++ b/app/src/organisms/QuickTransferFlow/constants.ts @@ -6,4 +6,193 @@ export const ACTIONS = { SET_DEST_LABWARE: 'SET_DEST_LABWARE', SET_DEST_WELLS: 'SET_DEST_WELLS', SET_VOLUME: 'SET_VOLUME', + SET_ASPIRATE_FLOW_RATE: 'SET_ASPIRATE_FLOW_RATE', + SET_DISPENSE_FLOW_RATE: 'SET_DISPENSE_FLOW_RATE', + SET_PIPETTE_PATH: 'SET_PIPETTE_PATH', + SET_ASPIRATE_TIP_POSITION: 'SET_ASPIRATE_TIP_POSITION', + SET_PRE_WET_TIP: 'SET_PRE_WET_TIP', + SET_MIX_ON_ASPIRATE: 'SET_MIX_ON_ASPIRATE', + SET_DELAY_ASPIRATE: 'SET_DELAY_ASPIRATE', + SET_TOUCH_TIP_ASPIRATE: 'SET_TOUCH_TIP_ASPIRATE', + SET_AIR_GAP_ASPIRATE: 'SET_AIR_GAP_ASPIRATE', + SET_DISPENSE_TIP_POSITION: 'SET_DISPENSE_TIP_POSITION', + SET_MIX_ON_DISPENSE: 'SET_MIX_ON_DISPENSE', + SET_DELAY_DISPENSE: 'SET_DELAY_DISPENSE', + SET_TOUCH_TIP_DISPENSE: 'SET_TOUCH_TIP_DISPENSE', + SET_BLOW_OUT: 'SET_BLOW_OUT', + SET_AIR_GAP_DISPENSE: 'SET_AIR_GAP_DISPENSE', + SET_CHANGE_TIP: 'SET_CHANGE_TIP', + SET_DROP_TIP_LOCATION: 'SET_DROP_TIP_LOCATION', } as const + +export const DISTRIBUTE = 'distribute' +export const CONSOLIDATE = 'consolidate' +export const TRANSFER = 'transfer' + +// these lists are generated by the util generateCompatibleLabwareForPipette in ./utils +export const SINGLE_CHANNEL_COMPATIBLE_LABWARE = [ + 'opentrons/agilent_1_reservoir_290ml/1', + 'opentrons/appliedbiosystemsmicroamp_384_wellplate_40ul/1', + 'opentrons/axygen_1_reservoir_90ml/1', + 'opentrons/biorad_384_wellplate_50ul/2', + 'opentrons/biorad_96_wellplate_200ul_pcr/2', + 'opentrons/corning_12_wellplate_6.9ml_flat/2', + 'opentrons/corning_24_wellplate_3.4ml_flat/2', + 'opentrons/corning_384_wellplate_112ul_flat/2', + 'opentrons/corning_48_wellplate_1.6ml_flat/2', + 'opentrons/corning_6_wellplate_16.8ml_flat/2', + 'opentrons/corning_96_wellplate_360ul_flat/2', + 'opentrons/geb_96_tiprack_1000ul/1', + 'opentrons/geb_96_tiprack_10ul/1', + 'opentrons/nest_12_reservoir_15ml/1', + 'opentrons/nest_1_reservoir_195ml/2', + 'opentrons/nest_1_reservoir_290ml/1', + 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2', + 'opentrons/nest_96_wellplate_200ul_flat/2', + 'opentrons/nest_96_wellplate_2ml_deep/2', + 'opentrons/opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical/1', + 'opentrons/opentrons_10_tuberack_nest_4x50ml_6x15ml_conical/1', + 'opentrons/opentrons_15_tuberack_falcon_15ml_conical/1', + 'opentrons/opentrons_15_tuberack_nest_15ml_conical/1', + 'opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/2', + 'opentrons/opentrons_24_aluminumblock_nest_0.5ml_screwcap/1', + 'opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/1', + 'opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/1', + 'opentrons/opentrons_24_aluminumblock_nest_2ml_screwcap/1', + 'opentrons/opentrons_24_aluminumblock_nest_2ml_snapcap/1', + 'opentrons/opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap/1', + 'opentrons/opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap/1', + 'opentrons/opentrons_24_tuberack_generic_2ml_screwcap/1', + 'opentrons/opentrons_24_tuberack_nest_0.5ml_screwcap/1', + 'opentrons/opentrons_24_tuberack_nest_1.5ml_screwcap/1', + 'opentrons/opentrons_24_tuberack_nest_1.5ml_snapcap/1', + 'opentrons/opentrons_24_tuberack_nest_2ml_screwcap/1', + 'opentrons/opentrons_24_tuberack_nest_2ml_snapcap/1', + 'opentrons/opentrons_6_tuberack_falcon_50ml_conical/1', + 'opentrons/opentrons_6_tuberack_nest_50ml_conical/1', + 'opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1', + 'opentrons/opentrons_96_aluminumblock_generic_pcr_strip_200ul/2', + 'opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1', + 'opentrons/opentrons_96_deep_well_adapter/1', + 'opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1', + 'opentrons/opentrons_96_filtertiprack_1000ul/1', + 'opentrons/opentrons_96_filtertiprack_10ul/1', + 'opentrons/opentrons_96_filtertiprack_200ul/1', + 'opentrons/opentrons_96_filtertiprack_20ul/1', + 'opentrons/opentrons_96_flat_bottom_adapter/1', + 'opentrons/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/1', + 'opentrons/opentrons_96_pcr_adapter/1', + 'opentrons/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/1', + 'opentrons/opentrons_96_tiprack_1000ul/1', + 'opentrons/opentrons_96_tiprack_10ul/1', + 'opentrons/opentrons_96_tiprack_20ul/1', + 'opentrons/opentrons_96_tiprack_300ul/1', + 'opentrons/opentrons_96_well_aluminum_block/1', + 'opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2', + 'opentrons/opentrons_aluminum_flat_bottom_plate/1', + 'opentrons/opentrons_flex_96_filtertiprack_1000ul/1', + 'opentrons/opentrons_flex_96_filtertiprack_200ul/1', + 'opentrons/opentrons_flex_96_filtertiprack_50ul/1', + 'opentrons/opentrons_flex_96_tiprack_1000ul/1', + 'opentrons/opentrons_flex_96_tiprack_200ul/1', + 'opentrons/opentrons_flex_96_tiprack_50ul/1', + 'opentrons/opentrons_flex_96_tiprack_adapter/1', + 'opentrons/opentrons_universal_flat_adapter/1', + 'opentrons/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1', + 'opentrons/thermoscientificnunc_96_wellplate_1300ul/1', + 'opentrons/thermoscientificnunc_96_wellplate_2000ul/1', + 'opentrons/usascientific_12_reservoir_22ml/1', + 'opentrons/usascientific_96_wellplate_2.4ml_deep/1', +] + +export const EIGHT_CHANNEL_COMPATIBLE_LABWARE = [ + 'opentrons/agilent_1_reservoir_290ml/1', + 'opentrons/appliedbiosystemsmicroamp_384_wellplate_40ul/1', + 'opentrons/axygen_1_reservoir_90ml/1', + 'opentrons/biorad_384_wellplate_50ul/2', + 'opentrons/biorad_96_wellplate_200ul_pcr/2', + 'opentrons/corning_384_wellplate_112ul_flat/2', + 'opentrons/corning_96_wellplate_360ul_flat/2', + 'opentrons/geb_96_tiprack_1000ul/1', + 'opentrons/geb_96_tiprack_10ul/1', + 'opentrons/nest_12_reservoir_15ml/1', + 'opentrons/nest_1_reservoir_195ml/2', + 'opentrons/nest_1_reservoir_290ml/1', + 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2', + 'opentrons/nest_96_wellplate_200ul_flat/2', + 'opentrons/nest_96_wellplate_2ml_deep/2', + 'opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1', + 'opentrons/opentrons_96_aluminumblock_generic_pcr_strip_200ul/2', + 'opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1', + 'opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1', + 'opentrons/opentrons_96_filtertiprack_1000ul/1', + 'opentrons/opentrons_96_filtertiprack_10ul/1', + 'opentrons/opentrons_96_filtertiprack_200ul/1', + 'opentrons/opentrons_96_filtertiprack_20ul/1', + 'opentrons/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/1', + 'opentrons/opentrons_96_pcr_adapter/1', + 'opentrons/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/1', + 'opentrons/opentrons_96_tiprack_1000ul/1', + 'opentrons/opentrons_96_tiprack_10ul/1', + 'opentrons/opentrons_96_tiprack_20ul/1', + 'opentrons/opentrons_96_tiprack_300ul/1', + 'opentrons/opentrons_96_well_aluminum_block/1', + 'opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2', + 'opentrons/opentrons_flex_96_filtertiprack_1000ul/1', + 'opentrons/opentrons_flex_96_filtertiprack_200ul/1', + 'opentrons/opentrons_flex_96_filtertiprack_50ul/1', + 'opentrons/opentrons_flex_96_tiprack_1000ul/1', + 'opentrons/opentrons_flex_96_tiprack_200ul/1', + 'opentrons/opentrons_flex_96_tiprack_50ul/1', + 'opentrons/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1', + 'opentrons/thermoscientificnunc_96_wellplate_1300ul/1', + 'opentrons/thermoscientificnunc_96_wellplate_2000ul/1', + 'opentrons/usascientific_12_reservoir_22ml/1', + 'opentrons/usascientific_96_wellplate_2.4ml_deep/1', +] + +export const NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE = [ + 'opentrons/agilent_1_reservoir_290ml/1', + 'opentrons/appliedbiosystemsmicroamp_384_wellplate_40ul/1', + 'opentrons/axygen_1_reservoir_90ml/1', + 'opentrons/biorad_384_wellplate_50ul/2', + 'opentrons/biorad_96_wellplate_200ul_pcr/2', + 'opentrons/corning_384_wellplate_112ul_flat/2', + 'opentrons/corning_96_wellplate_360ul_flat/2', + 'opentrons/geb_96_tiprack_1000ul/1', + 'opentrons/geb_96_tiprack_10ul/1', + 'opentrons/nest_12_reservoir_15ml/1', + 'opentrons/nest_1_reservoir_195ml/2', + 'opentrons/nest_1_reservoir_290ml/1', + 'opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2', + 'opentrons/nest_96_wellplate_200ul_flat/2', + 'opentrons/nest_96_wellplate_2ml_deep/2', + 'opentrons/opentrons_96_aluminumblock_biorad_wellplate_200ul/1', + 'opentrons/opentrons_96_aluminumblock_generic_pcr_strip_200ul/2', + 'opentrons/opentrons_96_aluminumblock_nest_wellplate_100ul/1', + 'opentrons/opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep/1', + 'opentrons/opentrons_96_filtertiprack_1000ul/1', + 'opentrons/opentrons_96_filtertiprack_10ul/1', + 'opentrons/opentrons_96_filtertiprack_200ul/1', + 'opentrons/opentrons_96_filtertiprack_20ul/1', + 'opentrons/opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat/1', + 'opentrons/opentrons_96_pcr_adapter/1', + 'opentrons/opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt/1', + 'opentrons/opentrons_96_tiprack_1000ul/1', + 'opentrons/opentrons_96_tiprack_10ul/1', + 'opentrons/opentrons_96_tiprack_20ul/1', + 'opentrons/opentrons_96_tiprack_300ul/1', + 'opentrons/opentrons_96_well_aluminum_block/1', + 'opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2', + 'opentrons/opentrons_flex_96_filtertiprack_1000ul/1', + 'opentrons/opentrons_flex_96_filtertiprack_200ul/1', + 'opentrons/opentrons_flex_96_filtertiprack_50ul/1', + 'opentrons/opentrons_flex_96_tiprack_1000ul/1', + 'opentrons/opentrons_flex_96_tiprack_200ul/1', + 'opentrons/opentrons_flex_96_tiprack_50ul/1', + 'opentrons/opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat/1', + 'opentrons/thermoscientificnunc_96_wellplate_1300ul/1', + 'opentrons/thermoscientificnunc_96_wellplate_2000ul/1', + 'opentrons/usascientific_12_reservoir_22ml/1', + 'opentrons/usascientific_96_wellplate_2.4ml_deep/1', +] diff --git a/app/src/organisms/QuickTransferFlow/index.tsx b/app/src/organisms/QuickTransferFlow/index.tsx index cdfecc4fbe2..d3d867e2e1c 100644 --- a/app/src/organisms/QuickTransferFlow/index.tsx +++ b/app/src/organisms/QuickTransferFlow/index.tsx @@ -2,132 +2,95 @@ import * as React from 'react' import { useHistory } from 'react-router-dom' import { useTranslation } from 'react-i18next' import { - Flex, + useConditionalConfirm, StepMeter, - SPACING, POSITION_STICKY, } from '@opentrons/components' -import { SmallButton } from '../../atoms/buttons' -import { ChildNavigation } from '../ChildNavigation' +import { ConfirmExitModal } from './ConfirmExitModal' import { CreateNewTransfer } from './CreateNewTransfer' import { SelectPipette } from './SelectPipette' import { SelectTipRack } from './SelectTipRack' -import { quickTransferReducer } from './utils' +import { SelectSourceLabware } from './SelectSourceLabware' +import { SelectSourceWells } from './SelectSourceWells' +import { SelectDestLabware } from './SelectDestLabware' +import { SelectDestWells } from './SelectDestWells' +import { VolumeEntry } from './VolumeEntry' +import { SummaryAndSettings } from './SummaryAndSettings' +import { quickTransferWizardReducer } from './reducers' -import type { QuickTransferSetupState } from './types' +import type { SmallButton } from '../../atoms/buttons' +import type { QuickTransferWizardState } from './types' const QUICK_TRANSFER_WIZARD_STEPS = 8 -const initialQuickTransferState: QuickTransferSetupState = {} +const initialQuickTransferState: QuickTransferWizardState = {} export const QuickTransferFlow = (): JSX.Element => { const history = useHistory() const { i18n, t } = useTranslation(['quick_transfer', 'shared']) const [state, dispatch] = React.useReducer( - quickTransferReducer, + quickTransferWizardReducer, initialQuickTransferState ) - const [currentStep, setCurrentStep] = React.useState(1) - const [continueIsDisabled] = React.useState(false) + const [currentStep, setCurrentStep] = React.useState(0) - // every child component will take state as a prop, an anonymous - // dispatch function related to that step (except create new), - // and a function to disable the continue button + const { + confirm: confirmExit, + showConfirmation: showConfirmExit, + cancel: cancelExit, + } = useConditionalConfirm(() => history.push('protocols'), true) const exitButtonProps: React.ComponentProps = { buttonType: 'tertiaryLowLight', buttonText: i18n.format(t('shared:exit'), 'capitalize'), - onClick: () => { - history.push('protocols') - }, + onClick: confirmExit, + } + const sharedMiddleStepProps = { + state, + dispatch, + onBack: () => setCurrentStep(prevStep => prevStep - 1), + onNext: () => setCurrentStep(prevStep => prevStep + 1), + exitButtonProps, } - // these will be moved to the child components once they all exist - const ORDERED_STEP_HEADERS: string[] = [ - t('create_new_transfer'), - t('select_attached_pipette'), - t('select_tip_rack'), - t('select_source_labware'), - t('select_source_wells'), - t('select_dest_labware'), - t('select_dest_wells'), - t('set_transfer_volume'), + const contentInOrder: JSX.Element[] = [ + setCurrentStep(prevStep => prevStep + 1)} + exitButtonProps={exitButtonProps} + />, + , + , + , + , + , + , + , + { + console.log('final quick transfer flow state:', state) + history.push('protocols') + }} + />, ] - const header = ORDERED_STEP_HEADERS[currentStep - 1] - let modalContent: JSX.Element | null = null - if (currentStep === 1) { - modalContent = ( - setCurrentStep(prevStep => prevStep + 1)} - exitButtonProps={exitButtonProps} - /> - ) - } else if (currentStep === 2) { - modalContent = ( - setCurrentStep(prevStep => prevStep - 1)} - onNext={() => setCurrentStep(prevStep => prevStep + 1)} - exitButtonProps={exitButtonProps} - /> - ) - } else if (currentStep === 3) { - modalContent = ( - setCurrentStep(prevStep => prevStep - 1)} - onNext={() => setCurrentStep(prevStep => prevStep + 1)} - exitButtonProps={exitButtonProps} - /> - ) - } else { - modalContent = null - } - - // until each page is wired up, show header title with empty screen return ( <> - - {modalContent == null ? ( - - { - setCurrentStep(prevStep => prevStep - 1) - } - } - buttonText={i18n.format(t('shared:continue'), 'capitalize')} - onClickButton={() => { - if (currentStep === 8) { - history.push('protocols') - } else { - setCurrentStep(prevStep => prevStep + 1) - } - }} - buttonIsDisabled={continueIsDisabled} - secondaryButtonProps={{ - buttonType: 'tertiaryLowLight', - buttonText: i18n.format(t('shared:exit'), 'capitalize'), - onClick: () => { - history.push('protocols') - }, - }} - top={SPACING.spacing8} - /> - {modalContent} - + {showConfirmExit ? ( + ) : ( - modalContent + <> + {currentStep < QUICK_TRANSFER_WIZARD_STEPS ? ( + + ) : null} + {contentInOrder[currentStep]} + )} ) diff --git a/app/src/organisms/QuickTransferFlow/reducers.ts b/app/src/organisms/QuickTransferFlow/reducers.ts new file mode 100644 index 00000000000..368081f4362 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/reducers.ts @@ -0,0 +1,203 @@ +import { CONSOLIDATE, DISTRIBUTE, TRANSFER } from './constants' +import type { + QuickTransferWizardState, + QuickTransferSummaryState, + QuickTransferWizardAction, + QuickTransferSummaryAction, + TransferType, +} from './types' + +export function quickTransferWizardReducer( + state: QuickTransferWizardState, + action: QuickTransferWizardAction +): QuickTransferWizardState { + switch (action.type) { + case 'SELECT_PIPETTE': { + return { + pipette: action.pipette, + mount: action.mount, + } + } + case 'SELECT_TIP_RACK': { + return { + pipette: state.pipette, + mount: state.mount, + tipRack: action.tipRack, + } + } + case 'SET_SOURCE_LABWARE': { + return { + pipette: state.pipette, + mount: state.mount, + tipRack: state.tipRack, + source: action.labware, + } + } + case 'SET_SOURCE_WELLS': { + return { + pipette: state.pipette, + mount: state.mount, + tipRack: state.tipRack, + source: state.source, + sourceWells: action.wells, + } + } + case 'SET_DEST_LABWARE': { + return { + pipette: state.pipette, + mount: state.mount, + tipRack: state.tipRack, + source: state.source, + sourceWells: state.sourceWells, + destination: action.labware, + } + } + case 'SET_DEST_WELLS': { + let transferType: TransferType = TRANSFER + if ( + state.sourceWells != null && + state.sourceWells.length > action.wells.length + ) { + transferType = DISTRIBUTE + } else if ( + state.sourceWells != null && + state.sourceWells.length < action.wells.length + ) { + transferType = CONSOLIDATE + } + return { + pipette: state.pipette, + mount: state.mount, + tipRack: state.tipRack, + source: state.source, + sourceWells: state.sourceWells, + destination: state.destination, + destinationWells: action.wells, + transferType: transferType, + } + } + case 'SET_VOLUME': { + return { + pipette: state.pipette, + mount: state.mount, + tipRack: state.tipRack, + source: state.source, + sourceWells: state.sourceWells, + destination: state.destination, + destinationWells: state.destinationWells, + transferType: state.transferType, + volume: action.volume, + } + } + } +} + +export function quickTransferSummaryReducer( + state: QuickTransferSummaryState, + action: QuickTransferSummaryAction +): QuickTransferSummaryState { + switch (action.type) { + case 'SET_ASPIRATE_FLOW_RATE': { + return { + ...state, + aspirateFlowRate: action.rate, + } + } + case 'SET_DISPENSE_FLOW_RATE': { + return { + ...state, + dispenseFlowRate: action.rate, + } + } + case 'SET_PIPETTE_PATH': { + return { + ...state, + path: action.path, + } + } + case 'SET_ASPIRATE_TIP_POSITION': { + return { + ...state, + tipPositionAspirate: action.position, + } + } + case 'SET_PRE_WET_TIP': { + return { + ...state, + preWetTip: action.preWetTip, + } + } + case 'SET_MIX_ON_ASPIRATE': { + return { + ...state, + mixOnAspirate: action.mixSettings, + } + } + case 'SET_DELAY_ASPIRATE': { + return { + ...state, + delayAspirate: action.delaySettings, + } + } + case 'SET_TOUCH_TIP_ASPIRATE': { + return { + ...state, + touchTipAspirate: action.position, + } + } + case 'SET_AIR_GAP_ASPIRATE': { + return { + ...state, + airGapAspirate: action.volume, + } + } + case 'SET_DISPENSE_TIP_POSITION': { + return { + ...state, + tipPositionDispense: action.position, + } + } + case 'SET_MIX_ON_DISPENSE': { + return { + ...state, + mixOnDispense: action.mixSettings, + } + } + case 'SET_DELAY_DISPENSE': { + return { + ...state, + delayDispense: action.delaySettings, + } + } + case 'SET_TOUCH_TIP_DISPENSE': { + return { + ...state, + touchTipDispense: action.position, + } + } + case 'SET_BLOW_OUT': { + return { + ...state, + blowOut: action.location, + } + } + case 'SET_AIR_GAP_DISPENSE': { + return { + ...state, + airGapDispense: action.volume, + } + } + case 'SET_CHANGE_TIP': { + return { + ...state, + changeTip: action.changeTip, + } + } + case 'SET_DROP_TIP_LOCATION': { + return { + ...state, + dropTipLocation: action.location, + } + } + } +} diff --git a/app/src/organisms/QuickTransferFlow/types.ts b/app/src/organisms/QuickTransferFlow/types.ts index 1d43017a58c..bf7ca136d5a 100644 --- a/app/src/organisms/QuickTransferFlow/types.ts +++ b/app/src/organisms/QuickTransferFlow/types.ts @@ -1,17 +1,71 @@ -import { ACTIONS } from './constants' import type { Mount } from '@opentrons/api-client' import type { LabwareDefinition2, PipetteV2Specs } from '@opentrons/shared-data' +import type { ACTIONS, CONSOLIDATE, DISTRIBUTE, TRANSFER } from './constants' -export interface QuickTransferSetupState { +export interface QuickTransferWizardState { pipette?: PipetteV2Specs mount?: Mount tipRack?: LabwareDefinition2 source?: LabwareDefinition2 sourceWells?: string[] - destination?: LabwareDefinition2 + destination?: LabwareDefinition2 | 'source' destinationWells?: string[] + transferType?: TransferType volume?: number } +export type PathOption = 'single' | 'multiAspirate' | 'multiDispense' +export type ChangeTipOptions = + | 'always' + | 'once' + | 'never' + | 'perDest' + | 'perSource' + +export interface QuickTransferSummaryState { + pipette: PipetteV2Specs + mount: Mount + tipRack: LabwareDefinition2 + source: LabwareDefinition2 + sourceWells: string[] + destination: LabwareDefinition2 | 'source' + destinationWells: string[] + transferType: TransferType + volume: number + aspirateFlowRate: number + dispenseFlowRate: number + path: PathOption + tipPositionAspirate: number + preWetTip: boolean + mixOnAspirate?: { + mixVolume: number + repititions: number + } + delayAspirate?: { + delayDuration: number + positionFromBottom: number + } + touchTipAspirate?: number + airGapAspirate?: number + tipPositionDispense: number + mixOnDispense?: { + mixVolume: number + repititions: number + } + delayDispense?: { + delayDuration: number + positionFromBottom: number + } + touchTipDispense?: number + blowOut?: string // trashBin or wasteChute or 'SOURCE_WELL' or 'DEST_WELL' + airGapDispense?: number + changeTip: ChangeTipOptions + dropTipLocation: string // trashBin or wasteChute or tiprack +} + +export type TransferType = + | typeof CONSOLIDATE + | typeof DISTRIBUTE + | typeof TRANSFER export type QuickTransferWizardAction = | SelectPipetteAction @@ -22,6 +76,99 @@ export type QuickTransferWizardAction = | SetDestWellsAction | SetVolumeAction +export type QuickTransferSummaryAction = + | SetAspirateFlowRateAction + | SetDispenseFlowRateAction + | SetPipettePath + | SetAspirateTipPosition + | SetPreWetTip + | SetMixOnAspirate + | SetDelayAspirate + | SetTouchTipAspirate + | SetAirGapAspirate + | SetDispenseTipPosition + | SetMixOnDispense + | SetDelayDispense + | SetTouchTipDispense + | SetBlowOut + | SetAirGapDispense + | SetChangeTip + | SetDropTipLocation + +interface SetAspirateFlowRateAction { + type: typeof ACTIONS.SET_ASPIRATE_FLOW_RATE + rate: number +} +interface SetDispenseFlowRateAction { + type: typeof ACTIONS.SET_DISPENSE_FLOW_RATE + rate: number +} +interface SetPipettePath { + type: typeof ACTIONS.SET_PIPETTE_PATH + path: PathOption +} +interface SetAspirateTipPosition { + type: typeof ACTIONS.SET_ASPIRATE_TIP_POSITION + position: number +} +interface SetPreWetTip { + type: typeof ACTIONS.SET_PRE_WET_TIP + preWetTip: boolean +} +interface SetMixOnAspirate { + type: typeof ACTIONS.SET_MIX_ON_ASPIRATE + mixSettings?: { mixVolume: number; repititions: number } +} +interface SetDelayAspirate { + type: typeof ACTIONS.SET_DELAY_ASPIRATE + delaySettings?: { + delayDuration: number + positionFromBottom: number + } +} +interface SetTouchTipAspirate { + type: typeof ACTIONS.SET_TOUCH_TIP_ASPIRATE + position?: number +} +interface SetAirGapAspirate { + type: typeof ACTIONS.SET_AIR_GAP_ASPIRATE + volume?: number +} +interface SetDispenseTipPosition { + type: typeof ACTIONS.SET_DISPENSE_TIP_POSITION + position: number +} +interface SetMixOnDispense { + type: typeof ACTIONS.SET_MIX_ON_DISPENSE + mixSettings?: { mixVolume: number; repititions: number } +} +interface SetDelayDispense { + type: typeof ACTIONS.SET_DELAY_DISPENSE + delaySettings?: { + delayDuration: number + positionFromBottom: number + } +} +interface SetTouchTipDispense { + type: typeof ACTIONS.SET_TOUCH_TIP_DISPENSE + position?: number +} +interface SetBlowOut { + type: typeof ACTIONS.SET_BLOW_OUT + location?: string +} +interface SetAirGapDispense { + type: typeof ACTIONS.SET_AIR_GAP_DISPENSE + volume?: number +} +interface SetChangeTip { + type: typeof ACTIONS.SET_CHANGE_TIP + changeTip: ChangeTipOptions +} +interface SetDropTipLocation { + type: typeof ACTIONS.SET_DROP_TIP_LOCATION + location: string +} interface SelectPipetteAction { type: typeof ACTIONS.SELECT_PIPETTE mount: Mount @@ -41,7 +188,7 @@ interface SetSourceWellsAction { } interface SetDestLabwareAction { type: typeof ACTIONS.SET_DEST_LABWARE - labware: LabwareDefinition2 + labware: LabwareDefinition2 | 'source' } interface SetDestWellsAction { type: typeof ACTIONS.SET_DEST_WELLS diff --git a/app/src/organisms/QuickTransferFlow/utils.ts b/app/src/organisms/QuickTransferFlow/utils.ts deleted file mode 100644 index ee13d4c1720..00000000000 --- a/app/src/organisms/QuickTransferFlow/utils.ts +++ /dev/null @@ -1,75 +0,0 @@ -import type { - QuickTransferSetupState, - QuickTransferWizardAction, -} from './types' - -export function quickTransferReducer( - state: QuickTransferSetupState, - action: QuickTransferWizardAction -): QuickTransferSetupState { - switch (action.type) { - case 'SELECT_PIPETTE': { - return { - pipette: action.pipette, - mount: action.mount, - } - } - case 'SELECT_TIP_RACK': { - return { - pipette: state.pipette, - mount: state.mount, - tipRack: action.tipRack, - } - } - case 'SET_SOURCE_LABWARE': { - return { - pipette: state.pipette, - mount: state.mount, - tipRack: state.tipRack, - source: action.labware, - } - } - case 'SET_SOURCE_WELLS': { - return { - pipette: state.pipette, - mount: state.mount, - tipRack: state.tipRack, - source: state.source, - sourceWells: action.wells, - } - } - case 'SET_DEST_LABWARE': { - return { - pipette: state.pipette, - mount: state.mount, - tipRack: state.tipRack, - source: state.source, - sourceWells: state.sourceWells, - destination: action.labware, - } - } - case 'SET_DEST_WELLS': { - return { - pipette: state.pipette, - mount: state.mount, - tipRack: state.tipRack, - source: state.source, - sourceWells: state.sourceWells, - destination: state.destination, - destinationWells: action.wells, - } - } - case 'SET_VOLUME': { - return { - pipette: state.pipette, - mount: state.mount, - tipRack: state.tipRack, - source: state.source, - sourceWells: state.sourceWells, - destination: state.destination, - destinationWells: state.destinationWells, - volume: action.volume, - } - } - } -} diff --git a/app/src/organisms/QuickTransferFlow/utils/generateCompatibleLabwareForPipette.ts b/app/src/organisms/QuickTransferFlow/utils/generateCompatibleLabwareForPipette.ts new file mode 100644 index 00000000000..b3ef857d410 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/utils/generateCompatibleLabwareForPipette.ts @@ -0,0 +1,29 @@ +import { makeWellSetHelpers, getLabwareDefURI } from '@opentrons/shared-data' +import { getAllDefinitions as getAllLatestDefValues } from '../../../pages/Labware/helpers/definitions' + +import type { PipetteV2Specs, WellSetHelpers } from '@opentrons/shared-data' + +export function generateCompatibleLabwareForPipette( + pipetteSpecs: PipetteV2Specs +): string[] { + const allLabwareDefinitions = getAllLatestDefValues() + const wellSetHelpers: WellSetHelpers = makeWellSetHelpers() + const { canPipetteUseLabware } = wellSetHelpers + + const compatibleDefUriList = allLabwareDefinitions.reduce( + (acc, definition) => { + if (pipetteSpecs.channels === 1) { + return [...acc, getLabwareDefURI(definition)] + } else { + const isCompatible = canPipetteUseLabware(pipetteSpecs, definition) + return isCompatible ? [...acc, getLabwareDefURI(definition)] : acc + } + }, + [] + ) + + // console.log(JSON.stringify(compatibleDefUriList)) + // to update this list, uncomment the above log statement and + // paste the result into the const in ./constants.ts + return compatibleDefUriList +} diff --git a/app/src/organisms/QuickTransferFlow/utils/getCompatibleLabwareByCategory.ts b/app/src/organisms/QuickTransferFlow/utils/getCompatibleLabwareByCategory.ts new file mode 100644 index 00000000000..a9bf05fae9e --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/utils/getCompatibleLabwareByCategory.ts @@ -0,0 +1,49 @@ +import { getAllDefinitions } from '@opentrons/shared-data' +import { + SINGLE_CHANNEL_COMPATIBLE_LABWARE, + EIGHT_CHANNEL_COMPATIBLE_LABWARE, + NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE, +} from '../constants' + +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { LabwareFilter } from '../../../pages/Labware/types' + +export function getCompatibleLabwareByCategory( + pipetteChannels: 1 | 8 | 96, + category: LabwareFilter +): LabwareDefinition2[] | undefined { + const allLabwareDefinitions = getAllDefinitions() + let compatibleLabwareUris: string[] = SINGLE_CHANNEL_COMPATIBLE_LABWARE + if (pipetteChannels === 8) { + compatibleLabwareUris = EIGHT_CHANNEL_COMPATIBLE_LABWARE + } else if (pipetteChannels === 96) { + compatibleLabwareUris = NINETY_SIX_CHANNEL_COMPATIBLE_LABWARE + } + + const compatibleLabwareDefinitions = compatibleLabwareUris.reduce< + LabwareDefinition2[] + >((acc, defUri) => { + return [...acc, allLabwareDefinitions[defUri]] + }, []) + + if (category === 'all') { + return compatibleLabwareDefinitions.filter( + def => + def.metadata.displayCategory === 'reservoir' || + def.metadata.displayCategory === 'tubeRack' || + def.metadata.displayCategory === 'wellPlate' + ) + } else if (category === 'reservoir') { + return compatibleLabwareDefinitions.filter( + def => def.metadata.displayCategory === 'reservoir' + ) + } else if (category === 'tubeRack') { + return compatibleLabwareDefinitions.filter( + def => def.metadata.displayCategory === 'tubeRack' + ) + } else if (category === 'wellPlate') { + return compatibleLabwareDefinitions.filter( + def => def.metadata.displayCategory === 'wellPlate' + ) + } +} diff --git a/app/src/organisms/QuickTransferFlow/utils/getInitialSummaryState.ts b/app/src/organisms/QuickTransferFlow/utils/getInitialSummaryState.ts new file mode 100644 index 00000000000..3ad299de97e --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/utils/getInitialSummaryState.ts @@ -0,0 +1,65 @@ +import { getTipTypeFromTipRackDefinition } from '@opentrons/shared-data' +import { getVolumeRange } from './' + +import type { LabwareDefinition2, PipetteV2Specs } from '@opentrons/shared-data' +import type { Mount } from '@opentrons/api-client' +import type { + QuickTransferSummaryState, + TransferType, + PathOption, +} from '../types' + +// sets up the initial summary state with defaults based on selections made +// in the wizard flow +export function getInitialSummaryState(props: { + pipette: PipetteV2Specs + mount: Mount + tipRack: LabwareDefinition2 + source: LabwareDefinition2 + sourceWells: string[] + destination: LabwareDefinition2 | 'source' + destinationWells: string[] + transferType: TransferType + volume: number +}): QuickTransferSummaryState { + const tipType = getTipTypeFromTipRackDefinition(props.tipRack) + const flowRatesForSupportedTip = + props.pipette.liquids.default.supportedTips[tipType] + + const volumeLimits = getVolumeRange(props) + + let path: PathOption = 'single' + if ( + props.transferType === 'consolidate' && + volumeLimits.max >= props.volume * 2 + ) { + path = 'multiAspirate' + } else if ( + props.transferType === 'distribute' && + volumeLimits.max >= props.volume * 2 + ) { + path = 'multiDispense' + } + + return { + pipette: props.pipette, + mount: props.mount, + tipRack: props.tipRack, + source: props.source, + sourceWells: props.sourceWells, + destination: props.destination, + destinationWells: props.destinationWells, + transferType: props.transferType, + volume: props.volume, + aspirateFlowRate: flowRatesForSupportedTip.defaultAspirateFlowRate.default, + dispenseFlowRate: flowRatesForSupportedTip.defaultDispenseFlowRate.default, + path: path, + tipPositionAspirate: 1, + preWetTip: false, + tipPositionDispense: 1, + // TODO add default logic for change tip depending on path, transfer type, number of tips + changeTip: 'once', + // TODO add default logic for drop tip location depending on deck config + dropTipLocation: 'trashBin', + } +} diff --git a/app/src/organisms/QuickTransferFlow/utils/getVolumeRange.ts b/app/src/organisms/QuickTransferFlow/utils/getVolumeRange.ts new file mode 100644 index 00000000000..2a222919120 --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/utils/getVolumeRange.ts @@ -0,0 +1,73 @@ +import type { QuickTransferWizardState } from '../types' + +export function getVolumeRange( + state: QuickTransferWizardState +): { min: number; max: number } { + if ( + state.pipette == null || + state.tipRack == null || + state.source == null || + state.sourceWells == null || + state.destination == null || + state.destinationWells == null + ) { + // this should only be called once all state values are set + return { min: 0, max: 0 } + } + + const minPipetteVolume = Object.values(state.pipette.liquids)[0].minVolume + const maxPipetteVolume = Object.values(state.pipette.liquids)[0].maxVolume + const tipRackVolume = Object.values(state.tipRack.wells)[0].totalLiquidVolume + const sourceLabwareVolume = Math.min( + ...state.sourceWells.map(well => + state.source ? state.source.wells[well].totalLiquidVolume : 0 + ) + ) + + const destLabwareVolume = Math.min( + ...state.destinationWells.map(well => { + if (state.source == null || state.destination == null) return 0 + return state.destination === 'source' + ? state.source.wells[well].totalLiquidVolume + : state.destination.wells[well].totalLiquidVolume + }) + ) + let maxVolume = maxPipetteVolume + if (state.sourceWells.length === state.destinationWells.length) { + // 1 to 1 transfer + maxVolume = Math.min( + ...[ + maxPipetteVolume, + tipRackVolume, + sourceLabwareVolume, + destLabwareVolume, + ] + ) + } else if (state.sourceWells.length < state.destinationWells.length) { + // 1 to n transfer + const ratio = state.sourceWells.length / state.destinationWells.length + + maxVolume = Math.min( + ...[ + maxPipetteVolume, + tipRackVolume, + sourceLabwareVolume * ratio, + destLabwareVolume, + ] + ) + } else if (state.sourceWells.length > state.destinationWells.length) { + // n to 1 transfer + const ratio = state.destinationWells.length / state.sourceWells.length + + maxVolume = Math.min( + ...[ + maxPipetteVolume, + tipRackVolume, + sourceLabwareVolume, + destLabwareVolume * ratio, + ] + ) + } + + return { min: minPipetteVolume, max: maxVolume } +} diff --git a/app/src/organisms/QuickTransferFlow/utils/index.ts b/app/src/organisms/QuickTransferFlow/utils/index.ts new file mode 100644 index 00000000000..42db68c6a6a --- /dev/null +++ b/app/src/organisms/QuickTransferFlow/utils/index.ts @@ -0,0 +1,4 @@ +export { getCompatibleLabwareByCategory } from './getCompatibleLabwareByCategory' +export { getVolumeRange } from './getVolumeRange' +export { generateCompatibleLabwareForPipette } from './generateCompatibleLabwareForPipette' +export { getInitialSummaryState } from './getInitialSummaryState' diff --git a/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/OverflowMenu.tsx b/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/OverflowMenu.tsx index b127dcbb669..d6048011a57 100644 --- a/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/OverflowMenu.tsx +++ b/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/OverflowMenu.tsx @@ -1,6 +1,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { saveAs } from 'file-saver' +import { css } from 'styled-components' import { Flex, @@ -10,7 +11,6 @@ import { DIRECTION_COLUMN, POSITION_RELATIVE, ALIGN_FLEX_END, - Mount, useOnClickOutside, } from '@opentrons/components' import { isFlexPipette, SINGLE_MOUNT_PIPETTES } from '@opentrons/shared-data' @@ -36,10 +36,10 @@ import { PipetteWizardFlows } from '../../PipetteWizardFlows' import { FLOWS } from '../../PipetteWizardFlows/constants' import { useIsEstopNotDisengaged } from '../../../resources/devices/hooks/useIsEstopNotDisengaged' +import type { Mount } from '@opentrons/components' import type { PipetteName } from '@opentrons/shared-data' import type { DeleteCalRequestParams } from '@opentrons/api-client' import type { SelectablePipettes } from '../../PipetteWizardFlows/types' -import { css } from 'styled-components' interface OverflowMenuProps { calType: 'pipetteOffset' | 'tipLength' @@ -74,7 +74,9 @@ export function OverflowMenu({ } = useMenuHandleClickOutside() const calsOverflowWrapperRef = useOnClickOutside({ - onClickOutside: () => setShowOverflowMenu(false), + onClickOutside: () => { + setShowOverflowMenu(false) + }, }) const pipetteOffsetCalibrations = useAllPipetteOffsetCalibrationsQuery().data ?.data @@ -184,7 +186,9 @@ export function OverflowMenu({ setShowPipetteWizardFlows(false)} + closeFlow={() => { + setShowPipetteWizardFlows(false) + }} selectedPipette={selectedPipette} onComplete={() => { setSelectedPipette(SINGLE_MOUNT_PIPETTES) diff --git a/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/OverflowMenu.test.tsx b/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/OverflowMenu.test.tsx index 638c51fb7e3..f35f4d64997 100644 --- a/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/OverflowMenu.test.tsx +++ b/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/OverflowMenu.test.tsx @@ -4,7 +4,6 @@ import { when } from 'vitest-when' import '@testing-library/jest-dom/vitest' import { describe, it, expect, vi, beforeEach } from 'vitest' import { OT3_PIPETTES } from '@opentrons/shared-data' -import { Mount } from '@opentrons/components' import { useDeleteCalibrationMutation, useAllPipetteOffsetCalibrationsQuery, @@ -28,6 +27,7 @@ import { import { renderWithProviders } from '../../../../__testing-utils__' import { useIsEstopNotDisengaged } from '../../../../resources/devices/hooks/useIsEstopNotDisengaged' import { OverflowMenu } from '../OverflowMenu' +import type { Mount } from '@opentrons/components' const render = ( props: React.ComponentProps diff --git a/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/TipLengthCalibrationItems.test.tsx b/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/TipLengthCalibrationItems.test.tsx index df6f0de2089..39bcde401d0 100644 --- a/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/TipLengthCalibrationItems.test.tsx +++ b/app/src/organisms/RobotSettingsCalibration/CalibrationDetails/__tests__/TipLengthCalibrationItems.test.tsx @@ -2,11 +2,11 @@ import * as React from 'react' import { screen } from '@testing-library/react' import { describe, it, expect, vi, beforeEach } from 'vitest' import '@testing-library/jest-dom/vitest' -import { Mount } from '@opentrons/components' import { i18n } from '../../../../i18n' import { renderWithProviders } from '../../../../__testing-utils__' import { TipLengthCalibrationItems } from '../TipLengthCalibrationItems' import { OverflowMenu } from '../OverflowMenu' +import type { Mount } from '@opentrons/components' vi.mock('../../../../redux/custom-labware/selectors') vi.mock('../../../../redux/config') diff --git a/app/src/organisms/RobotSettingsCalibration/RobotSettingsTipLengthCalibration.tsx b/app/src/organisms/RobotSettingsCalibration/RobotSettingsTipLengthCalibration.tsx index 00983365695..721568d38c0 100644 --- a/app/src/organisms/RobotSettingsCalibration/RobotSettingsTipLengthCalibration.tsx +++ b/app/src/organisms/RobotSettingsCalibration/RobotSettingsTipLengthCalibration.tsx @@ -1,6 +1,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' +import { getLabwareDefURI } from '@opentrons/shared-data' import { DIRECTION_COLUMN, Flex, @@ -11,12 +12,12 @@ import { import { useAllTipLengthCalibrationsQuery } from '@opentrons/react-api-client' import { useAttachedPipettes } from '../../organisms/Devices/hooks' +import { getDefaultTiprackDefForPipetteName } from '../Devices/constants' import { TipLengthCalibrationItems } from './CalibrationDetails/TipLengthCalibrationItems' +import type { PipetteName } from '@opentrons/shared-data' import type { FormattedPipetteOffsetCalibration } from '.' -import { TipLengthCalibration } from '../../redux/calibration/api-types' -import { getDefaultTiprackDefForPipetteName } from '../Devices/constants' -import { getLabwareDefURI, PipetteName } from '@opentrons/shared-data' +import type { TipLengthCalibration } from '../../redux/calibration/api-types' interface RobotSettingsTipLengthCalibrationProps { formattedPipetteOffsetCalibrations: FormattedPipetteOffsetCalibration[] diff --git a/app/src/organisms/RunDetails/ConfirmCancelModal.tsx b/app/src/organisms/RunDetails/ConfirmCancelModal.tsx index 2e1b6b5238f..ba1ec7e738f 100644 --- a/app/src/organisms/RunDetails/ConfirmCancelModal.tsx +++ b/app/src/organisms/RunDetails/ConfirmCancelModal.tsx @@ -20,7 +20,7 @@ import { } from '@opentrons/api-client' import { useStopRunMutation } from '@opentrons/react-api-client' -import { getModalPortalEl } from '../../App/portal' +import { getTopPortalEl } from '../../App/portal' import { LegacyModal } from '../../molecules/LegacyModal' import { useTrackProtocolRunEvent, useIsFlex } from '../Devices/hooks' import { useRunStatus } from '../RunTimeControl/hooks' @@ -108,6 +108,6 @@ export function ConfirmCancelModal( , - getModalPortalEl() + getTopPortalEl() ) } diff --git a/app/src/organisms/RunPreview/CommandIcon.tsx b/app/src/organisms/RunPreview/CommandIcon.tsx index b9314718c68..a2b3a00c592 100644 --- a/app/src/organisms/RunPreview/CommandIcon.tsx +++ b/app/src/organisms/RunPreview/CommandIcon.tsx @@ -1,7 +1,7 @@ import * as React from 'react' -import { Icon, IconName } from '@opentrons/components' -import { RunTimeCommand } from '@opentrons/shared-data' -import type { StyleProps } from '@opentrons/components' +import { Icon } from '@opentrons/components' +import type { IconName, StyleProps } from '@opentrons/components' +import type { RunTimeCommand } from '@opentrons/shared-data' const ICON_BY_COMMAND_TYPE: { [commandType: string]: IconName } = { delay: 'pause-circle', diff --git a/app/src/organisms/RunPreview/index.tsx b/app/src/organisms/RunPreview/index.tsx index b1f7ff85854..48292af7ad0 100644 --- a/app/src/organisms/RunPreview/index.tsx +++ b/app/src/organisms/RunPreview/index.tsx @@ -1,7 +1,7 @@ import * as React from 'react' import { css } from 'styled-components' import { useTranslation } from 'react-i18next' -import { ViewportList, ViewportListRef } from 'react-viewport-list' +import { ViewportList } from 'react-viewport-list' import { RUN_STATUSES_TERMINAL } from '@opentrons/api-client' import { @@ -22,7 +22,6 @@ import { import { useMostRecentCompletedAnalysis } from '../LabwarePositionCheck/useMostRecentCompletedAnalysis' import { - useNotifyLastRunCommand, useNotifyAllCommandsAsPreSerializedList, useNotifyRunQuery, } from '../../resources/runs' @@ -31,9 +30,11 @@ import { Divider } from '../../atoms/structure' import { NAV_BAR_WIDTH } from '../../App/constants' import { CommandIcon } from './CommandIcon' import { useRunStatus } from '../RunTimeControl/hooks' +import { useLastRunCommand } from '../Devices/hooks/useLastRunCommand' import type { RunStatus } from '@opentrons/api-client' import type { RobotType } from '@opentrons/shared-data' +import type { ViewportListRef } from 'react-viewport-list' const COLOR_FADE_MS = 500 const LIVE_RUN_COMMANDS_POLL_MS = 3000 @@ -73,7 +74,7 @@ export const RunPreviewComponent = ( ) const commandsFromQuery = commandsFromQueryResponse?.data const viewPortRef = React.useRef(null) - const currentRunCommandKey = useNotifyLastRunCommand(runId, { + const currentRunCommandKey = useLastRunCommand(runId, { refetchInterval: LIVE_RUN_COMMANDS_POLL_MS, })?.key const [ @@ -191,7 +192,7 @@ export const RunPreviewComponent = ( diff --git a/app/src/organisms/RunProgressMeter/__tests__/RunProgressMeter.test.tsx b/app/src/organisms/RunProgressMeter/__tests__/RunProgressMeter.test.tsx index 7a40319e050..77eeada15ba 100644 --- a/app/src/organisms/RunProgressMeter/__tests__/RunProgressMeter.test.tsx +++ b/app/src/organisms/RunProgressMeter/__tests__/RunProgressMeter.test.tsx @@ -3,15 +3,12 @@ import { when } from 'vitest-when' import { screen } from '@testing-library/react' import { describe, it, expect, vi, beforeEach } from 'vitest' import '@testing-library/jest-dom/vitest' -import { - useAllCommandsQuery, - useCommandQuery, -} from '@opentrons/react-api-client' + +import { useCommandQuery } from '@opentrons/react-api-client' import { RUN_STATUS_IDLE, RUN_STATUS_RUNNING, RUN_STATUS_SUCCEEDED, - RunCommandSummary, } from '@opentrons/api-client' import { i18n } from '../../../i18n' @@ -20,8 +17,8 @@ import { ProgressBar } from '../../../atoms/ProgressBar' import { useRunStatus } from '../../RunTimeControl/hooks' import { useMostRecentCompletedAnalysis } from '../../LabwarePositionCheck/useMostRecentCompletedAnalysis' import { - useNotifyLastRunCommand, useNotifyRunQuery, + useNotifyAllCommandsQuery, } from '../../../resources/runs' import { useDownloadRunLog } from '../../Devices/hooks' import { @@ -36,13 +33,15 @@ import { } from '../../InterventionModal/__fixtures__' import { RunProgressMeter } from '..' import { renderWithProviders } from '../../../__testing-utils__' +import { useLastRunCommand } from '../../Devices/hooks/useLastRunCommand' + +import type { RunCommandSummary } from '@opentrons/api-client' import type * as ApiClient from '@opentrons/react-api-client' vi.mock('@opentrons/react-api-client', async importOriginal => { const actual = await importOriginal() return { ...actual, - useAllCommandsQuery: vi.fn(), useCommandQuery: vi.fn(), } }) @@ -52,6 +51,7 @@ vi.mock('../../../resources/runs') vi.mock('../../Devices/hooks') vi.mock('../../../atoms/ProgressBar') vi.mock('../../InterventionModal') +vi.mock('../../Devices/hooks/useLastRunCommand') const render = (props: React.ComponentProps) => { return renderWithProviders(, { @@ -73,7 +73,7 @@ describe('RunProgressMeter', () => { when(useMostRecentCompletedAnalysis) .calledWith(NON_DETERMINISTIC_RUN_ID) .thenReturn(null) - when(useAllCommandsQuery) + when(useNotifyAllCommandsQuery) .calledWith(NON_DETERMINISTIC_RUN_ID, { cursor: null, pageLength: 1 }) .thenReturn(mockUseAllCommandsResponseNonDeterministic) when(useCommandQuery) @@ -83,7 +83,7 @@ describe('RunProgressMeter', () => { downloadRunLog: vi.fn(), isRunLogLoading: false, }) - when(useNotifyLastRunCommand) + when(useLastRunCommand) .calledWith(NON_DETERMINISTIC_RUN_ID, { refetchInterval: 1000 }) .thenReturn({ key: NON_DETERMINISTIC_COMMAND_KEY } as RunCommandSummary) @@ -112,7 +112,7 @@ describe('RunProgressMeter', () => { screen.getByText('Download run log') }) it('should render an intervention modal when lastRunCommand is a pause command', () => { - vi.mocked(useAllCommandsQuery).mockReturnValue({ + vi.mocked(useNotifyAllCommandsQuery).mockReturnValue({ data: { data: [mockPauseCommandWithStartTime], meta: { totalLength: 1 } }, } as any) vi.mocked(useNotifyRunQuery).mockReturnValue({ @@ -124,7 +124,7 @@ describe('RunProgressMeter', () => { }) it('should render an intervention modal when lastRunCommand is a move labware command', () => { - vi.mocked(useAllCommandsQuery).mockReturnValue({ + vi.mocked(useNotifyAllCommandsQuery).mockReturnValue({ data: { data: [mockMoveLabwareCommandFromSlot], meta: { totalLength: 1 }, diff --git a/app/src/organisms/RunProgressMeter/index.tsx b/app/src/organisms/RunProgressMeter/index.tsx index 4c7c92f5bd8..d230636956c 100644 --- a/app/src/organisms/RunProgressMeter/index.tsx +++ b/app/src/organisms/RunProgressMeter/index.tsx @@ -27,10 +27,7 @@ import { RUN_STATUS_RUNNING, RUN_STATUS_BLOCKED_BY_OPEN_DOOR, } from '@opentrons/api-client' -import { - useAllCommandsQuery, - useCommandQuery, -} from '@opentrons/react-api-client' +import { useCommandQuery } from '@opentrons/react-api-client' import { useMostRecentCompletedAnalysis } from '../LabwarePositionCheck/useMostRecentCompletedAnalysis' import { getTopPortalEl } from '../../App/portal' @@ -42,7 +39,11 @@ import { ProgressBar } from '../../atoms/ProgressBar' import { useDownloadRunLog, useRobotType } from '../Devices/hooks' import { InterventionTicks } from './InterventionTicks' import { isInterventionCommand } from '../InterventionModal/utils' -import { useNotifyRunQuery } from '../../resources/runs' +import { + useNotifyRunQuery, + useNotifyAllCommandsQuery, +} from '../../resources/runs' +import { getCommandTextData } from '../CommandText/utils/getCommandTextData' import type { RunStatus } from '@opentrons/api-client' @@ -74,7 +75,7 @@ export function RunProgressMeter(props: RunProgressMeterProps): JSX.Element { const { data: runRecord } = useNotifyRunQuery(runId) const runData = runRecord?.data ?? null const analysis = useMostRecentCompletedAnalysis(runId) - const { data: allCommandsQueryData } = useAllCommandsQuery(runId, { + const { data: allCommandsQueryData } = useNotifyAllCommandsQuery(runId, { cursor: null, pageLength: 1, }) @@ -138,7 +139,7 @@ export function RunProgressMeter(props: RunProgressMeterProps): JSX.Element { ) { currentStepContents = ( @@ -150,7 +151,7 @@ export function RunProgressMeter(props: RunProgressMeterProps): JSX.Element { ) { currentStepContents = ( diff --git a/app/src/organisms/RunTimeControl/__tests__/hooks.test.tsx b/app/src/organisms/RunTimeControl/__tests__/hooks.test.tsx index a46bc37d865..0fe4351caa7 100644 --- a/app/src/organisms/RunTimeControl/__tests__/hooks.test.tsx +++ b/app/src/organisms/RunTimeControl/__tests__/hooks.test.tsx @@ -1,5 +1,4 @@ import { when } from 'vitest-when' -import { UseQueryResult } from 'react-query' import { act, renderHook } from '@testing-library/react' import { describe, it, expect, vi, beforeEach } from 'vitest' import '@testing-library/jest-dom/vitest' @@ -31,6 +30,7 @@ import { mockCommand, } from '../__fixtures__' +import type { UseQueryResult } from 'react-query' import type { Run } from '@opentrons/api-client' import type * as ApiClient from '@opentrons/react-api-client' @@ -51,14 +51,17 @@ describe('useRunControls hook', () => { const mockPauseRun = vi.fn() const mockStopRun = vi.fn() const mockCloneRun = vi.fn() + const mockResumeRunFromRecovery = vi.fn() when(useRunActionMutations).calledWith(mockPausedRun.id).thenReturn({ playRun: mockPlayRun, pauseRun: mockPauseRun, stopRun: mockStopRun, + resumeRunFromRecovery: mockResumeRunFromRecovery, isPlayRunActionLoading: false, isPauseRunActionLoading: false, isStopRunActionLoading: false, + isResumeRunFromRecoveryActionLoading: false, }) when(useCloneRun) .calledWith(mockPausedRun.id, undefined, true) diff --git a/app/src/organisms/RunTimeControl/hooks.ts b/app/src/organisms/RunTimeControl/hooks.ts index d513fcbe118..076dc3f8a22 100644 --- a/app/src/organisms/RunTimeControl/hooks.ts +++ b/app/src/organisms/RunTimeControl/hooks.ts @@ -32,9 +32,11 @@ export interface RunControls { pause: () => void stop: () => void reset: () => void + resumeFromRecovery: () => void isPlayRunActionLoading: boolean isPauseRunActionLoading: boolean isStopRunActionLoading: boolean + isResumeRunFromRecoveryActionLoading: boolean isResetRunLoading: boolean } @@ -46,9 +48,11 @@ export function useRunControls( playRun, pauseRun, stopRun, + resumeRunFromRecovery, isPlayRunActionLoading, isPauseRunActionLoading, isStopRunActionLoading, + isResumeRunFromRecoveryActionLoading, } = useRunActionMutations(runId as string) const { cloneRun, isLoading: isResetRunLoading } = useCloneRun( @@ -62,9 +66,11 @@ export function useRunControls( pause: pauseRun, stop: stopRun, reset: cloneRun, + resumeFromRecovery: resumeRunFromRecovery, isPlayRunActionLoading, isPauseRunActionLoading, isStopRunActionLoading, + isResumeRunFromRecoveryActionLoading, isResetRunLoading, } } diff --git a/app/src/organisms/RunTimeControl/utils.ts b/app/src/organisms/RunTimeControl/utils.ts index 91cfee88a4b..e95efcaf164 100644 --- a/app/src/organisms/RunTimeControl/utils.ts +++ b/app/src/organisms/RunTimeControl/utils.ts @@ -1,5 +1,6 @@ -import { intervalToDuration, Duration } from 'date-fns' +import { intervalToDuration } from 'date-fns' import padStart from 'lodash/padStart' +import type { Duration } from 'date-fns' /** * utility to format a date-fns duration object to hh:mm:ss diff --git a/app/src/organisms/SendProtocolToFlexSlideout/index.tsx b/app/src/organisms/SendProtocolToFlexSlideout/index.tsx index 883a264b78c..4695cb7652c 100644 --- a/app/src/organisms/SendProtocolToFlexSlideout/index.tsx +++ b/app/src/organisms/SendProtocolToFlexSlideout/index.tsx @@ -6,7 +6,7 @@ import { useCreateProtocolMutation } from '@opentrons/react-api-client' import { FLEX_DISPLAY_NAME, FLEX_ROBOT_TYPE } from '@opentrons/shared-data' -import { PrimaryButton, IconProps, StyleProps } from '@opentrons/components' +import { PrimaryButton } from '@opentrons/components' import { ERROR_TOAST, INFO_TOAST, SUCCESS_TOAST } from '../../atoms/Toast' import { ChooseRobotSlideout } from '../../organisms/ChooseRobotSlideout' import { @@ -17,13 +17,14 @@ import { useToaster } from '../../organisms/ToasterOven' import { appShellRequestor } from '../../redux/shell/remote' import { OPENTRONS_USB } from '../../redux/discovery' import { getIsProtocolAnalysisInProgress } from '../../redux/protocol-storage' +import { getRobotUpdateDisplayInfo } from '../../redux/robot-update' +import { getValidCustomLabwareFiles } from '../../redux/custom-labware' import type { AxiosError } from 'axios' -import { getRobotUpdateDisplayInfo } from '../../redux/robot-update' +import type { IconProps, StyleProps } from '@opentrons/components' import type { Robot } from '../../redux/discovery/types' import type { StoredProtocolData } from '../../redux/protocol-storage' import type { State } from '../../redux/types' -import { getValidCustomLabwareFiles } from '../../redux/custom-labware' const _getFileBaseName = (filePath: string): string => { return filePath.split('/').reverse()[0] diff --git a/app/src/organisms/UpdateAppModal/__tests__/UpdateAppModal.test.tsx b/app/src/organisms/UpdateAppModal/__tests__/UpdateAppModal.test.tsx index 440ddca0f42..95681e4a661 100644 --- a/app/src/organisms/UpdateAppModal/__tests__/UpdateAppModal.test.tsx +++ b/app/src/organisms/UpdateAppModal/__tests__/UpdateAppModal.test.tsx @@ -7,12 +7,13 @@ import { i18n } from '../../../i18n' import * as Shell from '../../../redux/shell' import { renderWithProviders } from '../../../__testing-utils__' import { useRemoveActiveAppUpdateToast } from '../../Alerts' -import { UpdateAppModal, UpdateAppModalProps, RELEASE_NOTES_URL_BASE } from '..' +import { UpdateAppModal, RELEASE_NOTES_URL_BASE } from '..' import type { State } from '../../../redux/types' import type { ShellUpdateState } from '../../../redux/shell/types' import type * as ShellState from '../../../redux/shell' import type * as Dom from 'react-router-dom' +import type { UpdateAppModalProps } from '..' vi.mock('../../../redux/shell/update', async importOriginal => { const actual = await importOriginal() diff --git a/app/src/organisms/WellSelection/SelectionRect.tsx b/app/src/organisms/WellSelection/SelectionRect.tsx new file mode 100644 index 00000000000..35ac28f7930 --- /dev/null +++ b/app/src/organisms/WellSelection/SelectionRect.tsx @@ -0,0 +1,119 @@ +import * as React from 'react' +import { Flex, JUSTIFY_CENTER } from '@opentrons/components' + +import type { DragRect, GenericRect } from './types' + +interface SelectionRectProps { + onSelectionMove?: (rect: GenericRect) => void + onSelectionDone?: (rect: GenericRect) => void + children?: React.ReactNode +} + +export function SelectionRect(props: SelectionRectProps): JSX.Element { + const { onSelectionMove, onSelectionDone, children } = props + + const [positions, setPositions] = React.useState(null) + const parentRef = React.useRef(null) + + const getRect = (args: DragRect): GenericRect => { + const { xStart, yStart, xDynamic, yDynamic } = args + return { + x0: Math.min(xStart, xDynamic), + x1: Math.max(xStart, xDynamic), + y0: Math.min(yStart, yDynamic), + y1: Math.max(yStart, yDynamic), + } + } + + const handleDrag = React.useCallback( + (e: TouchEvent | MouseEvent): void => { + let xDynamic: number + let yDynamic: number + if (e instanceof TouchEvent) { + const touch = e.touches[0] + xDynamic = touch.clientX + yDynamic = touch.clientY + } else { + xDynamic = e.clientX + yDynamic = e.clientY + } + setPositions(prevPositions => { + if (prevPositions != null) { + const nextRect = { + ...prevPositions, + xDynamic, + yDynamic, + } + const rect = getRect(nextRect) + onSelectionMove != null && onSelectionMove(rect) + + return nextRect + } + return prevPositions + }) + }, + [onSelectionMove] + ) + + const handleDragEnd = React.useCallback( + (e: TouchEvent | MouseEvent): void => { + if (!(e instanceof TouchEvent) && !(e instanceof MouseEvent)) { + return + } + const finalRect = positions != null ? getRect(positions) : null + setPositions(prevPositions => { + return prevPositions === positions ? null : prevPositions + }) + // call onSelectionDone callback with {x0, x1, y0, y1} of final selection rectangle + onSelectionDone != null && finalRect != null && onSelectionDone(finalRect) + }, + [onSelectionDone, positions] + ) + + const handleTouchStart: React.TouchEventHandler = e => { + const touch = e.touches[0] + setPositions({ + xStart: touch.clientX, + xDynamic: touch.clientX, + yStart: touch.clientY, + yDynamic: touch.clientY, + }) + } + + const handleMouseDown: React.MouseEventHandler = e => { + setPositions({ + xStart: e.clientX, + xDynamic: e.clientX, + yStart: e.clientY, + yDynamic: e.clientY, + }) + } + + React.useEffect(() => { + document.addEventListener('touchmove', handleDrag) + document.addEventListener('touchend', handleDragEnd) + document.addEventListener('mousemove', handleDrag) + document.addEventListener('mouseup', handleDragEnd) + return () => { + document.removeEventListener('touchmove', handleDrag) + document.removeEventListener('touchend', handleDragEnd) + document.removeEventListener('mousemove', handleDrag) + document.removeEventListener('mouseup', handleDragEnd) + } + }, [handleDrag, handleDragEnd]) + + return ( + { + parentRef.current = ref + }} + justifyContent={JUSTIFY_CENTER} + width="100%" + > + {children} + + ) +} diff --git a/app/src/organisms/WellSelection/index.tsx b/app/src/organisms/WellSelection/index.tsx new file mode 100644 index 00000000000..7b20abae75c --- /dev/null +++ b/app/src/organisms/WellSelection/index.tsx @@ -0,0 +1,147 @@ +import * as React from 'react' +import reduce from 'lodash/reduce' + +import { + COLORS, + LabwareRender, + RobotCoordinateSpace, + WELL_LABEL_OPTIONS, +} from '@opentrons/components' +import { + arrayToWellGroup, + getCollidingWells, + getWellSetForMultichannel, +} from './utils' +import { SelectionRect } from './SelectionRect' + +import type { WellFill, WellGroup, WellStroke } from '@opentrons/components' +import type { + LabwareDefinition2, + PipetteChannels, +} from '@opentrons/shared-data' +import type { GenericRect } from './types' + +interface WellSelectionProps { + definition: LabwareDefinition2 + selectedPrimaryWells: WellGroup + selectWells: (wellGroup: WellGroup) => unknown + channels: PipetteChannels +} + +export function WellSelection(props: WellSelectionProps): JSX.Element { + const { definition, selectedPrimaryWells, selectWells, channels } = props + + const [highlightedWells, setHighlightedWells] = React.useState({}) + + const _wellsFromSelected: ( + selectedWells: WellGroup + ) => WellGroup = selectedWells => { + // Returns PRIMARY WELLS from the selection. + if (channels === 8 || channels === 96) { + // for the wells that have been highlighted, + // get all 8-well well sets and merge them + const primaryWells: WellGroup = reduce( + selectedWells, + (acc: WellGroup, _, wellName: string): WellGroup => { + const wellSet = getWellSetForMultichannel( + definition, + wellName, + channels + ) + if (!wellSet) return acc + return { ...acc, [wellSet[0]]: null } + }, + {} + ) + return primaryWells + } + + // single-channel or ingred selection mode + return selectedWells + } + + const _getWellsFromRect: (rect: GenericRect) => WellGroup = rect => { + const selectedWells = getCollidingWells(rect) + return _wellsFromSelected(selectedWells) + } + + const handleSelectionMove: (rect: GenericRect) => void = rect => { + if (channels === 8 || channels === 96) { + const selectedWells = _getWellsFromRect(rect) + const allWellsForMulti: WellGroup = reduce( + selectedWells, + (acc: WellGroup, _, wellName: string): WellGroup => { + const wellSetForMulti = + getWellSetForMultichannel(definition, wellName, channels) || [] + const channelWells = arrayToWellGroup(wellSetForMulti) + return { + ...acc, + ...channelWells, + } + }, + {} + ) + setHighlightedWells(allWellsForMulti) + } else { + setHighlightedWells(_getWellsFromRect(rect)) + } + } + + const handleSelectionDone: (rect: GenericRect) => void = rect => { + const wells = _wellsFromSelected(_getWellsFromRect(rect)) + + selectWells(wells) + setHighlightedWells({}) + } + + // For rendering, show all wells not just primary wells + const allSelectedWells = + channels === 8 || channels === 96 + ? reduce( + selectedPrimaryWells, + (acc, _, wellName): WellGroup => { + const wellSet = getWellSetForMultichannel( + definition, + wellName, + channels + ) + if (!wellSet) return acc + return { ...acc, ...arrayToWellGroup(wellSet) } + }, + {} + ) + : selectedPrimaryWells + + const wellFill: WellFill = {} + const wellStroke: WellStroke = {} + Object.keys(definition.wells).forEach(wellName => { + wellFill[wellName] = COLORS.blue35 + wellStroke[wellName] = COLORS.transparent + }) + Object.keys(allSelectedWells).forEach(wellName => { + wellFill[wellName] = COLORS.blue50 + wellStroke[wellName] = COLORS.transparent + }) + Object.keys(highlightedWells).forEach(wellName => { + wellFill[wellName] = COLORS.blue50 + wellStroke[wellName] = COLORS.transparent + }) + + return ( + + + + + + ) +} diff --git a/app/src/organisms/WellSelection/types.ts b/app/src/organisms/WellSelection/types.ts new file mode 100644 index 00000000000..6f8500b2194 --- /dev/null +++ b/app/src/organisms/WellSelection/types.ts @@ -0,0 +1,20 @@ +export interface DragRect { + xStart: number + yStart: number + xDynamic: number + yDynamic: number +} + +export interface GenericRect { + x0: number + x1: number + y0: number + y1: number +} + +export interface BoundingRect { + x: number + y: number + width: number + height: number +} diff --git a/app/src/organisms/WellSelection/utils.ts b/app/src/organisms/WellSelection/utils.ts new file mode 100644 index 00000000000..1fb5e66f678 --- /dev/null +++ b/app/src/organisms/WellSelection/utils.ts @@ -0,0 +1,80 @@ +import { + INTERACTIVE_WELL_DATA_ATTRIBUTE, + makeWellSetHelpers, +} from '@opentrons/shared-data' + +import type { WellGroup } from '@opentrons/components' +import type { WellSetHelpers } from '@opentrons/shared-data' +import type { BoundingRect, GenericRect } from './types' + +// Collision detection for SelectionRect / WellSelection +export const rectCollision = ( + rect1: BoundingRect, + rect2: BoundingRect +): boolean => + rect1.x < rect2.x + rect2.width && + rect1.x + rect1.width > rect2.x && + rect1.y < rect2.y + rect2.height && + rect1.height + rect1.y > rect2.y + +export function clientRectToBoundingRect(rect: ClientRect): BoundingRect { + return { + x: rect.left, + y: rect.top, + width: rect.width, + height: rect.height, + } +} + +export const getCollidingWells = (rectPositions: GenericRect): WellGroup => { + // Returns set of selected wells under a collision rect + const { x0, y0, x1, y1 } = rectPositions + const selectionBoundingRect = { + x: Math.min(x0, x1), + y: Math.min(y0, y1), + width: Math.abs(x1 - x0), + height: Math.abs(y1 - y0), + } + // NOTE: querySelectorAll returns a NodeList, so you need to unpack it as an Array to do .filter + const selectableElems: HTMLElement[] = [ + ...document.querySelectorAll( + `[${INTERACTIVE_WELL_DATA_ATTRIBUTE}]` + ), + ] + const collidedElems = selectableElems.filter((selectableElem, i) => + rectCollision( + selectionBoundingRect, + clientRectToBoundingRect(selectableElem.getBoundingClientRect()) + ) + ) + const collidedWellData = collidedElems.reduce( + (acc: WellGroup, elem): WellGroup => { + if ( + INTERACTIVE_WELL_DATA_ATTRIBUTE.replace('data-', '') in elem.dataset + ) { + const wellName = elem.dataset.wellname + return wellName != null ? { ...acc, [wellName]: null } : acc + } + + return acc + }, + {} + ) + return collidedWellData +} + +export const arrayToWellGroup = (w: string[]): WellGroup => + w.reduce((acc, wellName) => ({ ...acc, [wellName]: null }), {}) + +// memoization of well set utils +const wellSetHelpers: WellSetHelpers = makeWellSetHelpers() +const { + canPipetteUseLabware, + getAllWellSetsForLabware, + getWellSetForMultichannel, +} = wellSetHelpers +export { + canPipetteUseLabware, + getAllWellSetsForLabware, + getWellSetForMultichannel, +} diff --git a/app/src/pages/DeckConfiguration/index.tsx b/app/src/pages/DeckConfiguration/index.tsx index 2ed8530bcbd..6c92af7c3c8 100644 --- a/app/src/pages/DeckConfiguration/index.tsx +++ b/app/src/pages/DeckConfiguration/index.tsx @@ -11,7 +11,6 @@ import { JUSTIFY_SPACE_AROUND, } from '@opentrons/components' -import { SmallButton } from '../../atoms/buttons' import { ChildNavigation } from '../../organisms/ChildNavigation' import { DeckFixtureSetupInstructionsModal } from '../../organisms/DeviceDetailsDeckConfiguration/DeckFixtureSetupInstructionsModal' import { DeckConfigurationDiscardChangesModal } from '../../organisms/DeviceDetailsDeckConfiguration/DeckConfigurationDiscardChangesModal' @@ -21,6 +20,8 @@ import { useNotifyDeckConfigurationQuery, } from '../../resources/deck_configuration' +import type { SmallButton } from '../../atoms/buttons' + export function DeckConfigurationEditor(): JSX.Element { const { t, i18n } = useTranslation([ 'protocol_setup', diff --git a/app/src/pages/Devices/ProtocolRunDetails/index.tsx b/app/src/pages/Devices/ProtocolRunDetails/index.tsx index 672c2231e31..2d92e3ae705 100644 --- a/app/src/pages/Devices/ProtocolRunDetails/index.tsx +++ b/app/src/pages/Devices/ProtocolRunDetails/index.tsx @@ -37,14 +37,14 @@ import { useCurrentRunId } from '../../../organisms/ProtocolUpload/hooks' import { OPENTRONS_USB } from '../../../redux/discovery' import { fetchProtocols } from '../../../redux/protocol-storage' import { appShellRequestor } from '../../../redux/shell/remote' +import { useMostRecentCompletedAnalysis } from '../../../organisms/LabwarePositionCheck/useMostRecentCompletedAnalysis' +import type { ViewportListRef } from 'react-viewport-list' import type { DesktopRouteParams, ProtocolRunDetailsTab, } from '../../../App/types' import type { Dispatch } from '../../../redux/types' -import { useMostRecentCompletedAnalysis } from '../../../organisms/LabwarePositionCheck/useMostRecentCompletedAnalysis' -import { ViewportListRef } from 'react-viewport-list' const baseRoundTabStyling = css` ${TYPOGRAPHY.pSemiBold} diff --git a/app/src/pages/Labware/__tests__/hooks.test.tsx b/app/src/pages/Labware/__tests__/hooks.test.tsx index 20173b0dbf0..23035d94cc3 100644 --- a/app/src/pages/Labware/__tests__/hooks.test.tsx +++ b/app/src/pages/Labware/__tests__/hooks.test.tsx @@ -21,7 +21,7 @@ import { useAllLabware, useLabwareFailure, useNewLabwareName } from '../hooks' import type { Store } from 'redux' import type { State } from '../../../redux/types' -import { FailedLabwareFile } from '../../../redux/custom-labware/types' +import type { FailedLabwareFile } from '../../../redux/custom-labware/types' vi.mock('../../../redux/custom-labware') vi.mock('../helpers/getAllDefs') diff --git a/app/src/pages/Labware/index.tsx b/app/src/pages/Labware/index.tsx index c5ba42a5dd8..ad05c61f9ee 100644 --- a/app/src/pages/Labware/index.tsx +++ b/app/src/pages/Labware/index.tsx @@ -34,15 +34,11 @@ import { LabwareCard } from '../../organisms/LabwareCard' import { AddCustomLabwareSlideout } from '../../organisms/AddCustomLabwareSlideout' import { LabwareDetails } from '../../organisms/LabwareDetails' import { useToaster } from '../../organisms/ToasterOven' -import { - LabwareDefAndDate, - useAllLabware, - useLabwareFailure, - useNewLabwareName, -} from './hooks' +import { useAllLabware, useLabwareFailure, useNewLabwareName } from './hooks' import type { DropdownOption } from '../../atoms/MenuList/DropdownMenu' import type { LabwareFilter, LabwareSort } from './types' +import type { LabwareDefAndDate } from './hooks' const LABWARE_CREATOR_HREF = 'https://labware.opentrons.com/create/' const labwareDisplayCategoryFilters: LabwareFilter[] = [ diff --git a/app/src/pages/ProtocolDashboard/__tests__/DeleteProtocolConfirmationModal.test.tsx b/app/src/pages/ProtocolDashboard/__tests__/DeleteProtocolConfirmationModal.test.tsx index 22ee4ae1286..c12dcfa21fd 100644 --- a/app/src/pages/ProtocolDashboard/__tests__/DeleteProtocolConfirmationModal.test.tsx +++ b/app/src/pages/ProtocolDashboard/__tests__/DeleteProtocolConfirmationModal.test.tsx @@ -3,18 +3,14 @@ import { vi, it, describe, expect, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { act, fireEvent, screen } from '@testing-library/react' -import { - getProtocol, - deleteProtocol, - deleteRun, - HostConfig, -} from '@opentrons/api-client' +import { getProtocol, deleteProtocol, deleteRun } from '@opentrons/api-client' import { renderWithProviders } from '../../../__testing-utils__' import { useHost, useProtocolQuery } from '@opentrons/react-api-client' import { i18n } from '../../../i18n' import { useToaster } from '../../../organisms/ToasterOven' import { DeleteProtocolConfirmationModal } from '../DeleteProtocolConfirmationModal' +import type { HostConfig } from '@opentrons/api-client' vi.mock('@opentrons/api-client') vi.mock('@opentrons/react-api-client') diff --git a/app/src/pages/ProtocolDashboard/__tests__/LongPressModal.test.tsx b/app/src/pages/ProtocolDashboard/__tests__/LongPressModal.test.tsx index e657b7bbdc5..d39e45c6947 100644 --- a/app/src/pages/ProtocolDashboard/__tests__/LongPressModal.test.tsx +++ b/app/src/pages/ProtocolDashboard/__tests__/LongPressModal.test.tsx @@ -5,13 +5,13 @@ import { MemoryRouter } from 'react-router-dom' import { fireEvent, renderHook } from '@testing-library/react' import { useLongPress } from '@opentrons/components' -import { HostConfig } from '@opentrons/api-client' import { useCreateRunMutation, useHost } from '@opentrons/react-api-client' import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { LongPressModal } from '../LongPressModal' +import type { HostConfig } from '@opentrons/api-client' import type { UseLongPressResult } from '@opentrons/components' const MOCK_HOST_CONFIG = {} as HostConfig diff --git a/app/src/pages/ProtocolDashboard/__tests__/ProtocolCard.test.tsx b/app/src/pages/ProtocolDashboard/__tests__/ProtocolCard.test.tsx index 040e00d640c..081a1d720cd 100644 --- a/app/src/pages/ProtocolDashboard/__tests__/ProtocolCard.test.tsx +++ b/app/src/pages/ProtocolDashboard/__tests__/ProtocolCard.test.tsx @@ -2,7 +2,6 @@ import * as React from 'react' import { vi, it, describe, expect, beforeEach } from 'vitest' import { act, fireEvent, screen } from '@testing-library/react' import { MemoryRouter } from 'react-router-dom' -import { UseQueryResult } from 'react-query' import { useMostRecentSuccessfulAnalysisAsDocumentQuery, useProtocolAnalysisAsDocumentQuery, @@ -12,7 +11,7 @@ import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { ProtocolCard } from '../ProtocolCard' import type * as ReactRouterDom from 'react-router-dom' - +import type { UseQueryResult } from 'react-query' import type { CompletedProtocolAnalysis, ProtocolResource, diff --git a/app/src/pages/ProtocolDetails/__tests__/Liquids.test.tsx b/app/src/pages/ProtocolDetails/__tests__/Liquids.test.tsx index f6e665f63e3..af8f437e70c 100644 --- a/app/src/pages/ProtocolDetails/__tests__/Liquids.test.tsx +++ b/app/src/pages/ProtocolDetails/__tests__/Liquids.test.tsx @@ -1,6 +1,5 @@ import * as React from 'react' import { vi, it, describe, beforeEach } from 'vitest' -import { UseQueryResult } from 'react-query' import { when } from 'vitest-when' import { useProtocolAnalysisAsDocumentQuery, @@ -9,12 +8,13 @@ import { import { parseLabwareInfoByLiquidId, parseLiquidsInLoadOrder, - Protocol, } from '@opentrons/api-client' import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { Liquids } from '../Liquids' -import { CompletedProtocolAnalysis } from '@opentrons/shared-data' +import type { UseQueryResult } from 'react-query' +import type { Protocol } from '@opentrons/api-client' +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' vi.mock('@opentrons/api-client') vi.mock('@opentrons/react-api-client') diff --git a/app/src/pages/ProtocolDetails/__tests__/ProtocolDetails.test.tsx b/app/src/pages/ProtocolDetails/__tests__/ProtocolDetails.test.tsx index 0e9226de0a8..59db6871691 100644 --- a/app/src/pages/ProtocolDetails/__tests__/ProtocolDetails.test.tsx +++ b/app/src/pages/ProtocolDetails/__tests__/ProtocolDetails.test.tsx @@ -5,12 +5,7 @@ import { when } from 'vitest-when' import { Route, MemoryRouter } from 'react-router-dom' import '@testing-library/jest-dom/vitest' import { renderWithProviders } from '../../../__testing-utils__' -import { - deleteProtocol, - deleteRun, - getProtocol, - HostConfig, -} from '@opentrons/api-client' +import { deleteProtocol, deleteRun, getProtocol } from '@opentrons/api-client' import { useCreateRunMutation, useHost, @@ -33,6 +28,7 @@ import { Hardware } from '../Hardware' import { Labware } from '../Labware' import { Parameters } from '../Parameters' import { mockRunTimeParameterData } from '../fixtures' +import type { HostConfig } from '@opentrons/api-client' // Mock IntersectionObserver class IntersectionObserver { diff --git a/app/src/pages/ProtocolSetup/__tests__/ProtocolSetup.test.tsx b/app/src/pages/ProtocolSetup/__tests__/ProtocolSetup.test.tsx index 623761693f3..55daf6aa987 100644 --- a/app/src/pages/ProtocolSetup/__tests__/ProtocolSetup.test.tsx +++ b/app/src/pages/ProtocolSetup/__tests__/ProtocolSetup.test.tsx @@ -218,10 +218,12 @@ describe('ProtocolSetup', () => { pause: () => {}, stop: () => {}, reset: () => {}, + resumeFromRecovery: () => {}, isPlayRunActionLoading: false, isPauseRunActionLoading: false, isStopRunActionLoading: false, isResetRunLoading: false, + isResumeRunFromRecoveryActionLoading: false, }) when(vi.mocked(useRunStatus)).calledWith(RUN_ID).thenReturn(RUN_STATUS_IDLE) vi.mocked(useProtocolAnalysisAsDocumentQuery).mockReturnValue({ diff --git a/app/src/pages/Protocols/hooks/__tests__/hooks.test.tsx b/app/src/pages/Protocols/hooks/__tests__/hooks.test.tsx index 79e0e16a759..95cc478f7b6 100644 --- a/app/src/pages/Protocols/hooks/__tests__/hooks.test.tsx +++ b/app/src/pages/Protocols/hooks/__tests__/hooks.test.tsx @@ -1,5 +1,4 @@ import { vi, it, describe, expect, beforeEach, afterEach } from 'vitest' -import { UseQueryResult } from 'react-query' import { renderHook } from '@testing-library/react' import { when } from 'vitest-when' import omitBy from 'lodash/omitBy' @@ -11,10 +10,7 @@ import { useModulesQuery, } from '@opentrons/react-api-client' import { - CompletedProtocolAnalysis, - DeckConfiguration, FLEX_SIMPLEST_DECK_CONFIG, - LabwareDefinition2, WASTE_CHUTE_RIGHT_ADAPTER_NO_COVER_FIXTURE, fixtureTiprack300ul, } from '@opentrons/shared-data' @@ -24,9 +20,15 @@ import { useRunTimeParameters, } from '../index' import { useNotifyDeckConfigurationQuery } from '../../../../resources/deck_configuration/useNotifyDeckConfigurationQuery' +import { mockHeaterShaker } from '../../../../redux/modules/__fixtures__' +import type { UseQueryResult } from 'react-query' +import type { + CompletedProtocolAnalysis, + DeckConfiguration, + LabwareDefinition2, +} from '@opentrons/shared-data' import type { Protocol } from '@opentrons/api-client' -import { mockHeaterShaker } from '../../../../redux/modules/__fixtures__' vi.mock('@opentrons/react-api-client') vi.mock('../../../../organisms/Devices/hooks') diff --git a/app/src/pages/RobotDashboard/index.tsx b/app/src/pages/RobotDashboard/index.tsx index 2b4606d3812..86cb9b693f7 100644 --- a/app/src/pages/RobotDashboard/index.tsx +++ b/app/src/pages/RobotDashboard/index.tsx @@ -19,9 +19,9 @@ import { import { getOnDeviceDisplaySettings } from '../../redux/config' import { AnalyticsOptInModal } from './AnalyticsOptInModal' import { WelcomeModal } from './WelcomeModal' -import { RunData } from '@opentrons/api-client' import { ServerInitializing } from '../../organisms/OnDeviceDisplay/RobotDashboard/ServerInitializing' import { useNotifyAllRunsQuery } from '../../resources/runs' +import type { RunData } from '@opentrons/api-client' export const MAXIMUM_RECENT_RUN_PROTOCOLS = 8 diff --git a/app/src/pages/RunningProtocol/__tests__/RunningProtocol.test.tsx b/app/src/pages/RunningProtocol/__tests__/RunningProtocol.test.tsx index acf08a15d77..f6478270db5 100644 --- a/app/src/pages/RunningProtocol/__tests__/RunningProtocol.test.tsx +++ b/app/src/pages/RunningProtocol/__tests__/RunningProtocol.test.tsx @@ -2,6 +2,7 @@ import * as React from 'react' import { Route, MemoryRouter } from 'react-router-dom' import { vi, it, describe, expect, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' +import { screen } from '@testing-library/react' import { RUN_STATUS_BLOCKED_BY_OPEN_DOOR, @@ -10,7 +11,6 @@ import { RUN_STATUS_AWAITING_RECOVERY, } from '@opentrons/api-client' import { - useAllCommandsQuery, useProtocolAnalysesQuery, useProtocolQuery, useRunActionMutations, @@ -31,14 +31,18 @@ import { getLocalRobot } from '../../../redux/discovery' import { CancelingRunModal } from '../../../organisms/OnDeviceDisplay/RunningProtocol/CancelingRunModal' import { useTrackProtocolRunEvent } from '../../../organisms/Devices/hooks' import { useMostRecentCompletedAnalysis } from '../../../organisms/LabwarePositionCheck/useMostRecentCompletedAnalysis' -import { RunPausedSplash } from '../../../organisms/OnDeviceDisplay/RunningProtocol/RunPausedSplash' import { OpenDoorAlertModal } from '../../../organisms/OpenDoorAlertModal' import { RunningProtocol } from '..' import { - useNotifyLastRunCommand, useNotifyRunQuery, + useNotifyAllCommandsQuery, } from '../../../resources/runs' import { useFeatureFlag } from '../../../redux/config' +import { + ErrorRecoveryFlows, + useErrorRecoveryFlows, +} from '../../../organisms/ErrorRecoveryFlows' +import { useLastRunCommand } from '../../../organisms/Devices/hooks/useLastRunCommand' import type { UseQueryResult } from 'react-query' import type { ProtocolAnalyses, RunCommandSummary } from '@opentrons/api-client' @@ -50,7 +54,6 @@ vi.mock('../../../organisms/RunTimeControl/hooks') vi.mock( '../../../organisms/LabwarePositionCheck/useMostRecentCompletedAnalysis' ) -vi.mock('../../../organisms/OnDeviceDisplay/RunningProtocol/RunPausedSplash') vi.mock('../../../organisms/RunTimeControl/hooks') vi.mock('../../../organisms/OnDeviceDisplay/RunningProtocol') vi.mock('../../../redux/discovery') @@ -58,6 +61,8 @@ vi.mock('../../../organisms/OnDeviceDisplay/RunningProtocol/CancelingRunModal') vi.mock('../../../organisms/OpenDoorAlertModal') vi.mock('../../../resources/runs') vi.mock('../../../redux/config') +vi.mock('../../../organisms/ErrorRecoveryFlows') +vi.mock('../../../organisms/Devices/hooks/useLastRunCommand') const RUN_ID = 'run_id' const ROBOT_NAME = 'otie' @@ -71,6 +76,7 @@ const PROTOCOL_ANALYSIS = { const mockPlayRun = vi.fn() const mockPauseRun = vi.fn() const mockStopRun = vi.fn() +const mockResumeRunFromRecovery = vi.fn() const render = (path = '/') => { return renderWithProviders( @@ -127,22 +133,31 @@ describe('RunningProtocol', () => { playRun: mockPlayRun, pauseRun: mockPauseRun, stopRun: mockStopRun, + resumeRunFromRecovery: mockResumeRunFromRecovery, isPlayRunActionLoading: false, isPauseRunActionLoading: false, isStopRunActionLoading: false, + isResumeRunFromRecoveryActionLoading: false, }) when(vi.mocked(useMostRecentCompletedAnalysis)) .calledWith(RUN_ID) .thenReturn(mockRobotSideAnalysis) - when(vi.mocked(useAllCommandsQuery)) + when(vi.mocked(useNotifyAllCommandsQuery)) .calledWith(RUN_ID, { cursor: null, pageLength: 1 }) .thenReturn(mockUseAllCommandsResponseNonDeterministic) - vi.mocked(useNotifyLastRunCommand).mockReturnValue({ + vi.mocked(useLastRunCommand).mockReturnValue({ key: 'FAKE_COMMAND_KEY', } as RunCommandSummary) when(vi.mocked(useFeatureFlag)) .calledWith('enableRunNotes') .thenReturn(true) + vi.mocked(ErrorRecoveryFlows).mockReturnValue( +
    MOCK ERROR RECOVERY
    + ) + vi.mocked(useErrorRecoveryFlows).mockReturnValue({ + isERActive: false, + failedCommand: {} as any, + }) }) afterEach(() => { @@ -181,7 +196,18 @@ describe('RunningProtocol', () => { .calledWith(RUN_ID, { refetchInterval: 5000 }) .thenReturn(RUN_STATUS_AWAITING_RECOVERY) render(`/runs/${RUN_ID}/run`) - expect(vi.mocked(RunPausedSplash)).toHaveBeenCalled() + }) + + it('should render ErrorRecovery appropriately', () => { + render(`/runs/${RUN_ID}/run`) + expect(screen.queryByText('MOCK ERROR RECOVERY')).not.toBeInTheDocument() + + vi.mocked(useErrorRecoveryFlows).mockReturnValue({ + isERActive: true, + failedCommand: {} as any, + }) + render(`/runs/${RUN_ID}/run`) + screen.getByText('MOCK ERROR RECOVERY') }) // ToDo (kj:04/04/2023) need to figure out the way to simulate swipe diff --git a/app/src/pages/RunningProtocol/index.tsx b/app/src/pages/RunningProtocol/index.tsx index 306470ea770..3f38dde1960 100644 --- a/app/src/pages/RunningProtocol/index.tsx +++ b/app/src/pages/RunningProtocol/index.tsx @@ -24,17 +24,12 @@ import { import { RUN_STATUS_STOP_REQUESTED, RUN_STATUS_BLOCKED_BY_OPEN_DOOR, - RUN_STATUS_AWAITING_RECOVERY, RUN_STATUS_FINISHING, } from '@opentrons/api-client' -import { useFeatureFlag } from '../../redux/config' import { StepMeter } from '../../atoms/StepMeter' import { useMostRecentCompletedAnalysis } from '../../organisms/LabwarePositionCheck/useMostRecentCompletedAnalysis' -import { - useNotifyLastRunCommand, - useNotifyRunQuery, -} from '../../resources/runs' +import { useNotifyRunQuery } from '../../resources/runs' import { InterventionModal } from '../../organisms/InterventionModal' import { isInterventionCommand } from '../../organisms/InterventionModal/utils' import { @@ -53,9 +48,13 @@ import { } from '../../organisms/Devices/hooks' import { CancelingRunModal } from '../../organisms/OnDeviceDisplay/RunningProtocol/CancelingRunModal' import { ConfirmCancelRunModal } from '../../organisms/OnDeviceDisplay/RunningProtocol/ConfirmCancelRunModal' -import { RunPausedSplash } from '../../organisms/OnDeviceDisplay/RunningProtocol/RunPausedSplash' import { getLocalRobot } from '../../redux/discovery' import { OpenDoorAlertModal } from '../../organisms/OpenDoorAlertModal' +import { + useErrorRecoveryFlows, + ErrorRecoveryFlows, +} from '../../organisms/ErrorRecoveryFlows' +import { useLastRunCommand } from '../../organisms/Devices/hooks/useLastRunCommand' import type { OnDeviceRouteParams } from '../../App/types' @@ -95,7 +94,7 @@ export function RunningProtocol(): JSX.Element { const lastAnimatedCommand = React.useRef(null) const swipe = useSwipe() const robotSideAnalysis = useMostRecentCompletedAnalysis(runId) - const lastRunCommand = useNotifyLastRunCommand(runId, { + const lastRunCommand = useLastRunCommand(runId, { refetchInterval: LIVE_RUN_COMMANDS_POLL_MS, }) @@ -106,7 +105,6 @@ export function RunningProtocol(): JSX.Element { const runStatus = useRunStatus(runId, { refetchInterval: RUN_STATUS_REFETCH_INTERVAL, }) - const [enableSplash, setEnableSplash] = React.useState(true) const { startedAt, stoppedAt, completedAt } = useRunTimestamps(runId) const { data: runRecord } = useNotifyRunQuery(runId, { staleTime: Infinity }) const protocolId = runRecord?.data.protocolId ?? null @@ -122,9 +120,7 @@ export function RunningProtocol(): JSX.Element { const { trackProtocolRunEvent } = useTrackProtocolRunEvent(runId, robotName) const robotAnalyticsData = useRobotAnalyticsData(robotName) const robotType = useRobotType(robotName) - const errorType = runRecord?.data.errors[0]?.errorType - - const enableRunNotes = useFeatureFlag('enableRunNotes') + const { isERActive, failedCommand } = useErrorRecoveryFlows(runId, runStatus) React.useEffect(() => { if ( @@ -163,139 +159,124 @@ export function RunningProtocol(): JSX.Element { return ( <> - {enableSplash && - runStatus === RUN_STATUS_AWAITING_RECOVERY && - enableRunNotes ? ( - setEnableSplash(false)} - errorType={errorType} - protocolName={protocolName} - /> - ) : ( - <> - {runStatus === RUN_STATUS_BLOCKED_BY_OPEN_DOOR ? ( - - ) : null} - {runStatus === RUN_STATUS_STOP_REQUESTED ? ( - - ) : null} - - {robotSideAnalysis != null ? ( - - ) : null} - {showConfirmCancelRunModal ? ( - + ) : null} + {runStatus === RUN_STATUS_BLOCKED_BY_OPEN_DOOR ? ( + + ) : null} + {runStatus === RUN_STATUS_STOP_REQUESTED ? : null} + + {robotSideAnalysis != null ? ( + + ) : null} + {showConfirmCancelRunModal ? ( + + ) : null} + {interventionModalCommandKey != null && + runRecord?.data != null && + lastRunCommand != null && + isInterventionCommand(lastRunCommand) && + runStatus !== RUN_STATUS_FINISHING ? ( + + ) : null} + + {robotSideAnalysis != null ? ( + currentOption === 'CurrentRunningProtocolCommand' ? ( + - ) : null} - {interventionModalCommandKey != null && - runRecord?.data != null && - lastRunCommand != null && - isInterventionCommand(lastRunCommand) && - runStatus !== RUN_STATUS_FINISHING ? ( - + (lastAnimatedCommand.current = newCommandKey) + } /> - ) : null} - - {robotSideAnalysis != null ? ( - currentOption === 'CurrentRunningProtocolCommand' ? ( - - (lastAnimatedCommand.current = newCommandKey) - } - /> - ) : ( - <> - - - - ) - ) : ( - - )} - - + - - - + + ) + ) : ( + + )} + + + - - )} + + ) } diff --git a/app/src/redux/alerts/actions.ts b/app/src/redux/alerts/actions.ts index a1c169c4772..3439ea75703 100644 --- a/app/src/redux/alerts/actions.ts +++ b/app/src/redux/alerts/actions.ts @@ -1,6 +1,6 @@ import { addUniqueConfigValue, subtractConfigValue } from '../config' import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { AddUniqueConfigValueAction, diff --git a/app/src/redux/alerts/types.ts b/app/src/redux/alerts/types.ts index 9c6b1d54339..69a793ee672 100644 --- a/app/src/redux/alerts/types.ts +++ b/app/src/redux/alerts/types.ts @@ -1,4 +1,4 @@ -import { +import type { ALERT_U2E_DRIVER_OUTDATED, ALERT_APP_UPDATE_AVAILABLE, ALERT_TRIGGERED, diff --git a/app/src/redux/analytics/actions.ts b/app/src/redux/analytics/actions.ts index 8ae92b3ace1..c87e48dc078 100644 --- a/app/src/redux/analytics/actions.ts +++ b/app/src/redux/analytics/actions.ts @@ -1,8 +1,8 @@ // Actions for triggering analytics events that don't work well as epics looking // for unrelated events -import * as Types from './types' import * as Constants from './constants' +import type * as Types from './types' export const pipetteOffsetCalibrationStarted = ( mount: string, diff --git a/app/src/redux/analytics/types.ts b/app/src/redux/analytics/types.ts index 197660f7794..2d9b972f55b 100644 --- a/app/src/redux/analytics/types.ts +++ b/app/src/redux/analytics/types.ts @@ -1,12 +1,11 @@ -import { - ANALYTICS_PIPETTE_OFFSET_STARTED, - ANALYTICS_TIP_LENGTH_STARTED, -} from './constants' - import type { PipetteMount as Mount } from '@opentrons/shared-data' import type { CalibrationCheckComparisonsPerCalibration } from '../sessions/types' import type { DeckCalibrationStatus } from '../calibration/types' import type { ConfigV0 } from '../config/types' +import type { + ANALYTICS_PIPETTE_OFFSET_STARTED, + ANALYTICS_TIP_LENGTH_STARTED, +} from './constants' export type AnalyticsConfig = ConfigV0['analytics'] diff --git a/app/src/redux/calibration/__fixtures__/calibration-status.ts b/app/src/redux/calibration/__fixtures__/calibration-status.ts index 247d161fd26..0e765302a36 100644 --- a/app/src/redux/calibration/__fixtures__/calibration-status.ts +++ b/app/src/redux/calibration/__fixtures__/calibration-status.ts @@ -7,7 +7,7 @@ import { CALIBRATION_STATUS_PATH, DECK_CAL_STATUS_IDENTITY } from '../constants' import type { ResponseFixtures } from '../../robot-api/__fixtures__' import type { CalibrationStatus, ProtocolCalibrationStatus } from '../types' -import { DeckCalibrationData } from '@opentrons/api-client' +import type { DeckCalibrationData } from '@opentrons/api-client' export const mockCalibrationStatus: CalibrationStatus = { deckCalibration: { diff --git a/app/src/redux/calibration/actions.ts b/app/src/redux/calibration/actions.ts index de88eb16641..fff62325f6e 100644 --- a/app/src/redux/calibration/actions.ts +++ b/app/src/redux/calibration/actions.ts @@ -1,10 +1,10 @@ import { resetConfigValue, updateConfigValue } from '../config' +import * as Constants from './constants' import type { ResetConfigValueAction, UpdateConfigValueAction, } from '../config/types' -import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { RobotApiRequestMeta, diff --git a/app/src/redux/calibration/api-types.ts b/app/src/redux/calibration/api-types.ts index dc39685d4fb..ec07faddbf5 100644 --- a/app/src/redux/calibration/api-types.ts +++ b/app/src/redux/calibration/api-types.ts @@ -1,4 +1,4 @@ -import { +import type { DECK_CAL_STATUS_OK, DECK_CAL_STATUS_IDENTITY, DECK_CAL_STATUS_BAD_CALIBRATION, diff --git a/app/src/redux/calibration/pipette-offset/actions.ts b/app/src/redux/calibration/pipette-offset/actions.ts index 01827e2497c..c2d6bad6657 100644 --- a/app/src/redux/calibration/pipette-offset/actions.ts +++ b/app/src/redux/calibration/pipette-offset/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { AllPipetteOffsetCalibrations } from '../api-types' diff --git a/app/src/redux/calibration/pipette-offset/types.ts b/app/src/redux/calibration/pipette-offset/types.ts index 998cfddd3ad..f910352b099 100644 --- a/app/src/redux/calibration/pipette-offset/types.ts +++ b/app/src/redux/calibration/pipette-offset/types.ts @@ -5,7 +5,7 @@ import type { import type { AllPipetteOffsetCalibrations } from '../api-types' -import { +import type { FETCH_PIPETTE_OFFSET_CALIBRATIONS, FETCH_PIPETTE_OFFSET_CALIBRATIONS_SUCCESS, FETCH_PIPETTE_OFFSET_CALIBRATIONS_FAILURE, diff --git a/app/src/redux/calibration/tip-length/actions.ts b/app/src/redux/calibration/tip-length/actions.ts index 11f0f6cc8d9..e010dc74b9b 100644 --- a/app/src/redux/calibration/tip-length/actions.ts +++ b/app/src/redux/calibration/tip-length/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { AllTipLengthCalibrations } from '../api-types' diff --git a/app/src/redux/calibration/tip-length/types.ts b/app/src/redux/calibration/tip-length/types.ts index 103311e3f3f..36765f79e80 100644 --- a/app/src/redux/calibration/tip-length/types.ts +++ b/app/src/redux/calibration/tip-length/types.ts @@ -5,7 +5,7 @@ import type { import type { AllTipLengthCalibrations } from '../api-types' -import { +import type { FETCH_TIP_LENGTH_CALIBRATIONS, FETCH_TIP_LENGTH_CALIBRATIONS_SUCCESS, FETCH_TIP_LENGTH_CALIBRATIONS_FAILURE, diff --git a/app/src/redux/calibration/types.ts b/app/src/redux/calibration/types.ts index c8b54499bb9..a26655cb273 100644 --- a/app/src/redux/calibration/types.ts +++ b/app/src/redux/calibration/types.ts @@ -12,7 +12,7 @@ import type { import type { PipetteOffsetCalibrationsAction } from './pipette-offset/types' import type { TipLengthCalibrationsAction } from './tip-length/types' -import { +import type { FETCH_CALIBRATION_STATUS, FETCH_CALIBRATION_STATUS_SUCCESS, FETCH_CALIBRATION_STATUS_FAILURE, diff --git a/app/src/redux/config/actions.ts b/app/src/redux/config/actions.ts index e4112cb9e0a..e0a6906b17f 100644 --- a/app/src/redux/config/actions.ts +++ b/app/src/redux/config/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' // request a config value update export const updateConfigValue = ( diff --git a/app/src/redux/config/constants.ts b/app/src/redux/config/constants.ts index 5a72622f98e..7f4f08486d1 100644 --- a/app/src/redux/config/constants.ts +++ b/app/src/redux/config/constants.ts @@ -1,6 +1,7 @@ import type { DevInternalFlag } from './types' export const DEV_INTERNAL_FLAGS: DevInternalFlag[] = [ + 'forceHttpPolling', 'protocolStats', 'enableRunNotes', 'enableQuickTransfer', diff --git a/app/src/redux/config/schema-types.ts b/app/src/redux/config/schema-types.ts index 5728a2e4eb1..23fa8e547a9 100644 --- a/app/src/redux/config/schema-types.ts +++ b/app/src/redux/config/schema-types.ts @@ -8,6 +8,7 @@ export type UpdateChannel = 'latest' | 'beta' | 'alpha' export type DiscoveryCandidates = string[] export type DevInternalFlag = + | 'forceHttpPolling' | 'protocolStats' | 'enableRunNotes' | 'enableQuickTransfer' diff --git a/app/src/redux/config/types.ts b/app/src/redux/config/types.ts index 7e57539700d..b408a2204e2 100644 --- a/app/src/redux/config/types.ts +++ b/app/src/redux/config/types.ts @@ -1,4 +1,4 @@ -import { +import type { INITIALIZED, VALUE_UPDATED, UPDATE_VALUE, diff --git a/app/src/redux/custom-labware/__fixtures__/index.ts b/app/src/redux/custom-labware/__fixtures__/index.ts index 50311d1f5d1..56233d506fd 100644 --- a/app/src/redux/custom-labware/__fixtures__/index.ts +++ b/app/src/redux/custom-labware/__fixtures__/index.ts @@ -1,6 +1,6 @@ import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { LabwareWellGroupProperties } from '../../../pages/Labware/types' -import * as Types from '../types' +import type * as Types from '../types' export const mockDefinition: LabwareDefinition2 = { version: 1, diff --git a/app/src/redux/custom-labware/actions.ts b/app/src/redux/custom-labware/actions.ts index 8850c79a3cc..705a4259aa4 100644 --- a/app/src/redux/custom-labware/actions.ts +++ b/app/src/redux/custom-labware/actions.ts @@ -1,5 +1,5 @@ import { resetConfigValue } from '../config' -import * as Types from './types' +import type * as Types from './types' import type { ResetConfigValueAction } from '../config/types' diff --git a/app/src/redux/custom-labware/reducer.ts b/app/src/redux/custom-labware/reducer.ts index d6f6455acd5..2d8d0836865 100644 --- a/app/src/redux/custom-labware/reducer.ts +++ b/app/src/redux/custom-labware/reducer.ts @@ -4,7 +4,7 @@ import * as Actions from './actions' import type { Action } from '../types' import type { CustomLabwareState } from './types' -import { Reducer } from 'redux' +import type { Reducer } from 'redux' export const INITIAL_STATE: CustomLabwareState = { filenames: [], diff --git a/app/src/redux/discovery/reducer.ts b/app/src/redux/discovery/reducer.ts index e6ce2faa78a..741bd2fd693 100644 --- a/app/src/redux/discovery/reducer.ts +++ b/app/src/redux/discovery/reducer.ts @@ -5,7 +5,7 @@ import * as actions from './actions' import type { Action } from '../types' import type { DiscoveryState } from './types' -import { Reducer } from 'redux' +import type { Reducer } from 'redux' export const INITIAL_STATE: DiscoveryState = { scanning: false, diff --git a/app/src/redux/discovery/selectors.ts b/app/src/redux/discovery/selectors.ts index 3becb1a31a3..c92f6f6d2a1 100644 --- a/app/src/redux/discovery/selectors.ts +++ b/app/src/redux/discovery/selectors.ts @@ -25,7 +25,7 @@ import { } from './constants' import type { State } from '../types' -import { +import type { DiscoveredRobot, DiscoveryClientRobotAddress, Robot, diff --git a/app/src/redux/discovery/types.ts b/app/src/redux/discovery/types.ts index 6d87dee56da..399326ec1ed 100644 --- a/app/src/redux/discovery/types.ts +++ b/app/src/redux/discovery/types.ts @@ -5,7 +5,7 @@ import type { HealthStatus, } from '@opentrons/discovery-client' -import { +import type { HEALTH_STATUS_OK, CONNECTABLE, REACHABLE, diff --git a/app/src/redux/modules/__fixtures__/index.ts b/app/src/redux/modules/__fixtures__/index.ts index 258817bdc8a..a14454c56ec 100644 --- a/app/src/redux/modules/__fixtures__/index.ts +++ b/app/src/redux/modules/__fixtures__/index.ts @@ -1,5 +1,5 @@ -import * as Types from '../types' -import * as ApiTypes from '../api-types' +import type * as Types from '../types' +import type * as ApiTypes from '../api-types' import type { RobotApiResponse, RobotApiResponseMeta, diff --git a/app/src/redux/modules/actions.ts b/app/src/redux/modules/actions.ts index 3d4bfaa5b9c..85bfa6db5ef 100644 --- a/app/src/redux/modules/actions.ts +++ b/app/src/redux/modules/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { RobotApiRequestMeta } from '../robot-api/types' diff --git a/app/src/redux/modules/api-types.ts b/app/src/redux/modules/api-types.ts index 74bf735f760..4ebe20ef126 100644 --- a/app/src/redux/modules/api-types.ts +++ b/app/src/redux/modules/api-types.ts @@ -1,11 +1,8 @@ -import { +import type { TEMPDECK, MAGDECK, THERMOCYCLER, ModuleType, -} from '@opentrons/shared-data' - -import type { MagneticModuleModel, TemperatureModuleModel, ThermocyclerModuleModel, diff --git a/app/src/redux/modules/constants.ts b/app/src/redux/modules/constants.ts index 9be54c0375a..027a0398746 100644 --- a/app/src/redux/modules/constants.ts +++ b/app/src/redux/modules/constants.ts @@ -1,4 +1,5 @@ -import { ModuleType, THERMOCYCLER_MODULE_TYPE } from '@opentrons/shared-data' +import { THERMOCYCLER_MODULE_TYPE } from '@opentrons/shared-data' +import type { ModuleType } from '@opentrons/shared-data' // common constants diff --git a/app/src/redux/modules/epic/__tests__/updateModuleEpic.test.ts b/app/src/redux/modules/epic/__tests__/updateModuleEpic.test.ts index 8a7676aff66..79575a1ff9e 100644 --- a/app/src/redux/modules/epic/__tests__/updateModuleEpic.test.ts +++ b/app/src/redux/modules/epic/__tests__/updateModuleEpic.test.ts @@ -6,9 +6,9 @@ import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' import { modulesEpic } from '../../epic' +import type * as Types from '../../types' import type { Action, State } from '../../../types' vi.mock('../../../robot-api/http') diff --git a/app/src/redux/modules/types.ts b/app/src/redux/modules/types.ts index ff209830515..ce5b44123d3 100644 --- a/app/src/redux/modules/types.ts +++ b/app/src/redux/modules/types.ts @@ -4,18 +4,15 @@ import type { ThermocyclerModuleModel, MagneticModuleModel, HeaterShakerModuleModel, -} from '@opentrons/shared-data' - -import { TEMPERATURE_MODULE_TYPE, MAGNETIC_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, } from '@opentrons/shared-data' -import { ModuleOffset } from '@opentrons/api-client' +import type { ModuleOffset } from '@opentrons/api-client' -import * as ApiTypes from './api-types' +import type * as ApiTypes from './api-types' export * from './api-types' // common types diff --git a/app/src/redux/networking/actions.ts b/app/src/redux/networking/actions.ts index 49f6911605b..48e8ea924bc 100644 --- a/app/src/redux/networking/actions.ts +++ b/app/src/redux/networking/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { RobotApiRequestMeta, diff --git a/app/src/redux/networking/api-types.ts b/app/src/redux/networking/api-types.ts index 5c807e5eaec..09721757928 100644 --- a/app/src/redux/networking/api-types.ts +++ b/app/src/redux/networking/api-types.ts @@ -1,4 +1,4 @@ -import { +import type { STATUS_NONE, STATUS_PORTAL, STATUS_LIMITED, diff --git a/app/src/redux/networking/epic/disconnectEpic.ts b/app/src/redux/networking/epic/disconnectEpic.ts index a23902dae8b..56f93672ba1 100644 --- a/app/src/redux/networking/epic/disconnectEpic.ts +++ b/app/src/redux/networking/epic/disconnectEpic.ts @@ -2,15 +2,15 @@ import { ofType, combineEpics } from 'redux-observable' import { POST } from '../../robot-api/constants' import { mapToRobotApiRequest } from '../../robot-api/operators' +import * as Actions from '../actions' +import * as Constants from '../constants' + import type { ActionToRequestMapper, ResponseToActionMapper, } from '../../robot-api/operators' -import * as Actions from '../actions' -import * as Constants from '../constants' - import type { Action, Epic } from '../../types' -import { PostWifiDisconnectAction } from '../types' +import type { PostWifiDisconnectAction } from '../types' const mapActionToRequest: ActionToRequestMapper = action => ({ method: POST, diff --git a/app/src/redux/networking/epic/fetchEapOptionsEpic.ts b/app/src/redux/networking/epic/fetchEapOptionsEpic.ts index 4667558ad5b..b3f4438324c 100644 --- a/app/src/redux/networking/epic/fetchEapOptionsEpic.ts +++ b/app/src/redux/networking/epic/fetchEapOptionsEpic.ts @@ -10,7 +10,7 @@ import type { ResponseToActionMapper, } from '../../robot-api/operators' import type { Action, Epic } from '../../types' -import { FetchEapOptionsAction } from '../types' +import type { FetchEapOptionsAction } from '../types' const mapActionToRequest: ActionToRequestMapper = action => ({ method: GET, diff --git a/app/src/redux/networking/epic/wifiConfigureEpic.ts b/app/src/redux/networking/epic/wifiConfigureEpic.ts index 6f38c8a218a..5e7cb7b9388 100644 --- a/app/src/redux/networking/epic/wifiConfigureEpic.ts +++ b/app/src/redux/networking/epic/wifiConfigureEpic.ts @@ -13,7 +13,7 @@ import type { ResponseToActionMapper, } from '../../robot-api/operators' import type { Action, Epic } from '../../types' -import { +import type { PostWifiConfigureAction, PostWifiConfigureSuccessAction, } from '../types' diff --git a/app/src/redux/networking/reducer.ts b/app/src/redux/networking/reducer.ts index da3a67077bb..179450595a5 100644 --- a/app/src/redux/networking/reducer.ts +++ b/app/src/redux/networking/reducer.ts @@ -7,7 +7,7 @@ import * as Constants from './constants' import type { Action } from '../types' import type { NetworkingState, PerRobotNetworkingState } from './types' -import { Reducer } from 'redux' +import type { Reducer } from 'redux' const INITIAL_STATE: NetworkingState = {} const INITIAL_ROBOT_STATE: PerRobotNetworkingState = {} diff --git a/app/src/redux/networking/selectors.ts b/app/src/redux/networking/selectors.ts index ef6eb18ec96..bca3a638481 100644 --- a/app/src/redux/networking/selectors.ts +++ b/app/src/redux/networking/selectors.ts @@ -6,7 +6,7 @@ import { long2ip } from 'netmask' import { INTERFACE_WIFI, INTERFACE_ETHERNET } from './constants' import type { State } from '../types' -import * as Types from './types' +import type * as Types from './types' import type { Dictionary } from 'lodash' export function getInternetStatus( diff --git a/app/src/redux/networking/types.ts b/app/src/redux/networking/types.ts index 0077d8f29ba..0e73a7f01f3 100644 --- a/app/src/redux/networking/types.ts +++ b/app/src/redux/networking/types.ts @@ -3,7 +3,7 @@ import type { RobotApiErrorResponse, } from '../robot-api/types' -import { +import type { FETCH_STATUS, FETCH_STATUS_SUCCESS, FETCH_STATUS_FAILURE, @@ -21,7 +21,7 @@ import { FETCH_EAP_OPTIONS_FAILURE, } from './constants' -import * as ApiTypes from './api-types' +import type * as ApiTypes from './api-types' export * from './api-types' diff --git a/app/src/redux/pipettes/__fixtures__/index.ts b/app/src/redux/pipettes/__fixtures__/index.ts index a89b5d82a90..f8433cf6465 100644 --- a/app/src/redux/pipettes/__fixtures__/index.ts +++ b/app/src/redux/pipettes/__fixtures__/index.ts @@ -14,7 +14,7 @@ import type { PipetteInfo, PipetteInformation, } from '../../../organisms/Devices/hooks' -import { PipetteData } from '@opentrons/api-client' +import type { PipetteData } from '@opentrons/api-client' export const mockRobot = { name: 'robot', ip: '127.0.0.1', port: 31950 } diff --git a/app/src/redux/pipettes/actions.ts b/app/src/redux/pipettes/actions.ts index bd8247618ec..bdf77f118f2 100644 --- a/app/src/redux/pipettes/actions.ts +++ b/app/src/redux/pipettes/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { RobotApiRequestMeta } from '../robot-api/types' diff --git a/app/src/redux/pipettes/epic/__tests__/fetchPipetteSettingsEpic.test.ts b/app/src/redux/pipettes/epic/__tests__/fetchPipetteSettingsEpic.test.ts index 6f5c6d1fd8b..6bdd0e532ba 100644 --- a/app/src/redux/pipettes/epic/__tests__/fetchPipetteSettingsEpic.test.ts +++ b/app/src/redux/pipettes/epic/__tests__/fetchPipetteSettingsEpic.test.ts @@ -7,7 +7,7 @@ import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' +import type * as Types from '../../types' import { pipettesEpic } from '../../epic' import type { Action, State } from '../../../types' diff --git a/app/src/redux/pipettes/epic/__tests__/fetchPipettesEpic.test.ts b/app/src/redux/pipettes/epic/__tests__/fetchPipettesEpic.test.ts index ee07b47a82e..566acc682b7 100644 --- a/app/src/redux/pipettes/epic/__tests__/fetchPipettesEpic.test.ts +++ b/app/src/redux/pipettes/epic/__tests__/fetchPipettesEpic.test.ts @@ -7,9 +7,9 @@ import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' import { pipettesEpic } from '../../epic' +import type * as Types from '../../types' import type { Action, State } from '../../../types' import type { RobotApiResponse } from '../../../robot-api/types' diff --git a/app/src/redux/pipettes/epic/__tests__/updatePipetteSettingsEpic.test.ts b/app/src/redux/pipettes/epic/__tests__/updatePipetteSettingsEpic.test.ts index 1133ba82360..bea6b90bf28 100644 --- a/app/src/redux/pipettes/epic/__tests__/updatePipetteSettingsEpic.test.ts +++ b/app/src/redux/pipettes/epic/__tests__/updatePipetteSettingsEpic.test.ts @@ -7,9 +7,9 @@ import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' import { pipettesEpic } from '../../epic' +import type * as Types from '../../types' import type { Action, State } from '../../../types' import type { RobotApiRequestMeta } from '../../../robot-api/types' diff --git a/app/src/redux/pipettes/selectors.ts b/app/src/redux/pipettes/selectors.ts index 64ab5f72cc2..70b3d59c61e 100644 --- a/app/src/redux/pipettes/selectors.ts +++ b/app/src/redux/pipettes/selectors.ts @@ -11,7 +11,7 @@ import { } from '../calibration/tip-length' import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { PipetteModel } from '@opentrons/shared-data' import type { State } from '../types' diff --git a/app/src/redux/protocol-storage/actions.ts b/app/src/redux/protocol-storage/actions.ts index ce6b990a0a6..f28792af12a 100644 --- a/app/src/redux/protocol-storage/actions.ts +++ b/app/src/redux/protocol-storage/actions.ts @@ -1,4 +1,4 @@ -import * as Types from './types' +import type * as Types from './types' // action type literals diff --git a/app/src/redux/protocol-storage/reducer.ts b/app/src/redux/protocol-storage/reducer.ts index 0f8a3305959..56eca6c2625 100644 --- a/app/src/redux/protocol-storage/reducer.ts +++ b/app/src/redux/protocol-storage/reducer.ts @@ -5,7 +5,7 @@ import * as Actions from './actions' import type { Action } from '../types' import type { ProtocolStorageState } from './types' -import { Reducer } from 'redux' +import type { Reducer } from 'redux' export const INITIAL_STATE: ProtocolStorageState = { protocolKeys: [], diff --git a/app/src/redux/protocol-storage/types.ts b/app/src/redux/protocol-storage/types.ts index 6e33954516b..807bae7fe26 100644 --- a/app/src/redux/protocol-storage/types.ts +++ b/app/src/redux/protocol-storage/types.ts @@ -1,6 +1,6 @@ // common types -import { ProtocolAnalysisOutput } from '@opentrons/shared-data' +import type { ProtocolAnalysisOutput } from '@opentrons/shared-data' export interface StoredProtocolDir { dirPath: string diff --git a/app/src/redux/robot-admin/__tests__/selectors.test.ts b/app/src/redux/robot-admin/__tests__/selectors.test.ts index 77d1e24950c..61549a2bc3b 100644 --- a/app/src/redux/robot-admin/__tests__/selectors.test.ts +++ b/app/src/redux/robot-admin/__tests__/selectors.test.ts @@ -6,7 +6,7 @@ import { getNextRestartStatus, getResetConfigOptions, } from '../selectors' -import { ConnectivityStatus } from '../../discovery/types' +import type { ConnectivityStatus } from '../../discovery/types' import type { State } from '../../types' const START_TIME = new Date('2000-01-01') diff --git a/app/src/redux/robot-admin/actions.ts b/app/src/redux/robot-admin/actions.ts index c82ae42b22c..8cf09544dc4 100644 --- a/app/src/redux/robot-admin/actions.ts +++ b/app/src/redux/robot-admin/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { RobotApiRequestMeta } from '../robot-api/types' diff --git a/app/src/redux/robot-admin/epic/resetConfigEpic.ts b/app/src/redux/robot-admin/epic/resetConfigEpic.ts index 4d093f5ee25..c4b69445938 100644 --- a/app/src/redux/robot-admin/epic/resetConfigEpic.ts +++ b/app/src/redux/robot-admin/epic/resetConfigEpic.ts @@ -11,7 +11,7 @@ import type { ActionToRequestMapper, ResponseToActionMapper, } from '../../robot-api/operators' -import { +import type { ResetConfigAction, ResetConfigSuccessAction, RestartRobotAction, diff --git a/app/src/redux/robot-api/actions.ts b/app/src/redux/robot-api/actions.ts index caa8e7ef298..a41a232f702 100644 --- a/app/src/redux/robot-api/actions.ts +++ b/app/src/redux/robot-api/actions.ts @@ -1,5 +1,5 @@ -import * as Types from './types' import { DISMISS_REQUEST } from './constants' +import type * as Types from './types' export const dismissRequest = ( requestId: string diff --git a/app/src/redux/robot-api/helpers.ts b/app/src/redux/robot-api/helpers.ts index 90c1e0e5926..4b4974de782 100644 --- a/app/src/redux/robot-api/helpers.ts +++ b/app/src/redux/robot-api/helpers.ts @@ -1,4 +1,4 @@ -import * as Types from './types' +import type * as Types from './types' // TODO(mc, 2020-06-17): this is unit tested by component tests // write some direct tests and maybe fold into getRequestState selector diff --git a/app/src/redux/robot-api/operators.ts b/app/src/redux/robot-api/operators.ts index ddfec300379..d1b7f52d903 100644 --- a/app/src/redux/robot-api/operators.ts +++ b/app/src/redux/robot-api/operators.ts @@ -3,11 +3,10 @@ import { map, mergeMap, withLatestFrom, filter } from 'rxjs/operators' import { getRobotByName } from '../discovery/selectors' import { fetchRobotApi } from './http' -import * as Types from './types' import type { Observable, UnaryFunction, OperatorFunction } from 'rxjs' import type { State, Action } from '../types' -import type { RobotHost } from './types' +import type * as Types from './types' export type ActionToRequestMapper = ( triggerAction: TriggerAction, @@ -23,14 +22,14 @@ export type ResponseToActionMapper = ( export function withRobotHost
    ( state$: Observable, getRobotName: (action: A) => string -): UnaryFunction, Observable<[A, State, RobotHost]>> { +): UnaryFunction, Observable<[A, State, Types.RobotHost]>> { return pipe( - withLatestFrom(state$, (a: A, s: State): [A, State, RobotHost | null] => [ - a, - s, - getRobotByName(s, getRobotName(a)) as RobotHost | null, - ]), - filter((args): args is [A, State, RobotHost] => { + withLatestFrom(state$, (a: A, s: State): [ + A, + State, + Types.RobotHost | null + ] => [a, s, getRobotByName(s, getRobotName(a)) as Types.RobotHost | null]), + filter((args): args is [A, State, Types.RobotHost] => { const [, , maybeRobot] = args return maybeRobot !== null }) diff --git a/app/src/redux/robot-api/selectors.ts b/app/src/redux/robot-api/selectors.ts index b8c3ab7bf2e..ca5eea7b982 100644 --- a/app/src/redux/robot-api/selectors.ts +++ b/app/src/redux/robot-api/selectors.ts @@ -1,5 +1,5 @@ import type { State } from '../types' -import * as Types from './types' +import type * as Types from './types' export const getRequestById = ( state: State, diff --git a/app/src/redux/robot-api/types.ts b/app/src/redux/robot-api/types.ts index b32f0da11ac..92107e92e6c 100644 --- a/app/src/redux/robot-api/types.ts +++ b/app/src/redux/robot-api/types.ts @@ -1,4 +1,4 @@ -import { PENDING, SUCCESS, FAILURE } from './constants' +import type { PENDING, SUCCESS, FAILURE } from './constants' export type Method = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' diff --git a/app/src/redux/robot-controls/actions.ts b/app/src/redux/robot-controls/actions.ts index 4bf95e449e2..816475a1738 100644 --- a/app/src/redux/robot-controls/actions.ts +++ b/app/src/redux/robot-controls/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { RobotApiRequestMeta } from '../robot-api/types' import type { Mount } from '../pipettes/types' diff --git a/app/src/redux/robot-controls/epic/__tests__/fetchLightsEpic.test.ts b/app/src/redux/robot-controls/epic/__tests__/fetchLightsEpic.test.ts index 4d92e26b217..e6bbad02530 100644 --- a/app/src/redux/robot-controls/epic/__tests__/fetchLightsEpic.test.ts +++ b/app/src/redux/robot-controls/epic/__tests__/fetchLightsEpic.test.ts @@ -6,9 +6,9 @@ import * as RobotApiHttp from '../../../robot-api/http' import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' import { robotControlsEpic } from '..' +import type * as Types from '../../types' import type { Action, State } from '../../../types' vi.mock('../../../robot-api/http') diff --git a/app/src/redux/robot-controls/epic/__tests__/homeEpic.test.ts b/app/src/redux/robot-controls/epic/__tests__/homeEpic.test.ts index 987329abb30..541c7b666dd 100644 --- a/app/src/redux/robot-controls/epic/__tests__/homeEpic.test.ts +++ b/app/src/redux/robot-controls/epic/__tests__/homeEpic.test.ts @@ -6,9 +6,9 @@ import * as RobotApiHttp from '../../../robot-api/http' import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' import { robotControlsEpic } from '..' +import type * as Types from '../../types' import type { Action, State } from '../../../types' vi.mock('../../../robot-api/http') diff --git a/app/src/redux/robot-controls/epic/__tests__/moveEpic.test.ts b/app/src/redux/robot-controls/epic/__tests__/moveEpic.test.ts index 2825a07b5fd..5c1cef71c8f 100644 --- a/app/src/redux/robot-controls/epic/__tests__/moveEpic.test.ts +++ b/app/src/redux/robot-controls/epic/__tests__/moveEpic.test.ts @@ -7,9 +7,9 @@ import * as DiscoverySelectors from '../../../discovery/selectors' import * as PipettesSelectors from '../../../pipettes/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' import { robotControlsEpic } from '..' +import type * as Types from '../../types' import type { Action, State } from '../../../types' vi.mock('../../../robot-api/http') diff --git a/app/src/redux/robot-controls/epic/__tests__/updateLightsEpic.test.ts b/app/src/redux/robot-controls/epic/__tests__/updateLightsEpic.test.ts index 8d4586fc4e5..b97ae48d2ac 100644 --- a/app/src/redux/robot-controls/epic/__tests__/updateLightsEpic.test.ts +++ b/app/src/redux/robot-controls/epic/__tests__/updateLightsEpic.test.ts @@ -6,7 +6,7 @@ import * as RobotApiHttp from '../../../robot-api/http' import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Actions from '../../actions' -import * as Types from '../../types' +import type * as Types from '../../types' import { robotControlsEpic } from '..' import type { Action, State } from '../../../types' diff --git a/app/src/redux/robot-controls/epic/updateLightsEpic.ts b/app/src/redux/robot-controls/epic/updateLightsEpic.ts index e47bdf8340a..a3d643b15e4 100644 --- a/app/src/redux/robot-controls/epic/updateLightsEpic.ts +++ b/app/src/redux/robot-controls/epic/updateLightsEpic.ts @@ -14,7 +14,7 @@ import type { } from '../../robot-api/operators' import type { UpdateLightsAction } from '../types' -import { RobotApiRequestMeta } from '../../robot-api/types' +import type { RobotApiRequestMeta } from '../../robot-api/types' const mapActionToRequest: ActionToRequestMapper = action => ({ method: POST, diff --git a/app/src/redux/robot-settings/actions.ts b/app/src/redux/robot-settings/actions.ts index fcf22b0c59a..e5844295e7b 100644 --- a/app/src/redux/robot-settings/actions.ts +++ b/app/src/redux/robot-settings/actions.ts @@ -1,5 +1,5 @@ import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' import type { RobotApiRequestMeta } from '../robot-api/types' diff --git a/app/src/redux/robot-settings/epic/__tests__/fetchSettingsEpic.test.ts b/app/src/redux/robot-settings/epic/__tests__/fetchSettingsEpic.test.ts index 9847f182ab3..7c8a90cf66f 100644 --- a/app/src/redux/robot-settings/epic/__tests__/fetchSettingsEpic.test.ts +++ b/app/src/redux/robot-settings/epic/__tests__/fetchSettingsEpic.test.ts @@ -7,9 +7,9 @@ import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Selectors from '../../selectors' import * as Actions from '../../actions' -import * as Types from '../../types' import { robotSettingsEpic } from '..' +import type * as Types from '../../types' import type { Action, State } from '../../../types' import type { RobotApiRequestMeta } from '../../../robot-api/types' diff --git a/app/src/redux/robot-settings/epic/__tests__/updateSettingEpic.test.ts b/app/src/redux/robot-settings/epic/__tests__/updateSettingEpic.test.ts index 26ed9bacc96..2c42f1e8809 100644 --- a/app/src/redux/robot-settings/epic/__tests__/updateSettingEpic.test.ts +++ b/app/src/redux/robot-settings/epic/__tests__/updateSettingEpic.test.ts @@ -7,7 +7,7 @@ import * as DiscoverySelectors from '../../../discovery/selectors' import * as Fixtures from '../../__fixtures__' import * as Selectors from '../../selectors' import * as Actions from '../../actions' -import * as Types from '../../types' +import type * as Types from '../../types' import { robotSettingsEpic } from '..' import type { Action, State } from '../../../types' diff --git a/app/src/redux/robot-update/__tests__/epic.test.ts b/app/src/redux/robot-update/__tests__/epic.test.ts index ea1066c0e62..84cb04d51eb 100644 --- a/app/src/redux/robot-update/__tests__/epic.test.ts +++ b/app/src/redux/robot-update/__tests__/epic.test.ts @@ -13,7 +13,7 @@ import * as selectors from '../selectors' import { INITIAL_STATE } from '../reducer' import type { Action, State } from '../../types' -import { RobotApiResponse } from '../../robot-api/types' +import type { RobotApiResponse } from '../../robot-api/types' vi.mock('../selectors') vi.mock('../../robot-api/http') diff --git a/app/src/redux/sessions/__fixtures__/index.ts b/app/src/redux/sessions/__fixtures__/index.ts index 5f5e338f94d..391de0151f5 100644 --- a/app/src/redux/sessions/__fixtures__/index.ts +++ b/app/src/redux/sessions/__fixtures__/index.ts @@ -16,12 +16,12 @@ import { mockPipetteOffsetCalibrationSessionDetails, mockPipetteOffsetCalibrationSessionParams, } from './pipette-offset-calibration' +import * as Constants from '../constants' import type { ResponseFixtures } from '../../robot-api/__fixtures__' import type { RobotApiV2ErrorResponseBody } from '../../robot-api/types' -import * as Types from '../types' -import * as Constants from '../constants' +import type * as Types from '../types' export * from './calibration-check' export * from './tip-length-calibration' diff --git a/app/src/redux/sessions/actions.ts b/app/src/redux/sessions/actions.ts index d92163032f5..87cbdc2786f 100644 --- a/app/src/redux/sessions/actions.ts +++ b/app/src/redux/sessions/actions.ts @@ -1,5 +1,5 @@ -import * as Types from './types' import * as Constants from './constants' +import type * as Types from './types' import type { RobotApiRequestMeta, RobotApiV2ErrorResponseBody, diff --git a/app/src/redux/sessions/calibration-check/types.ts b/app/src/redux/sessions/calibration-check/types.ts index 450cf9bbe0a..5fde44d3241 100644 --- a/app/src/redux/sessions/calibration-check/types.ts +++ b/app/src/redux/sessions/calibration-check/types.ts @@ -4,7 +4,7 @@ import type { LabwareDefinition2, PipetteModel } from '@opentrons/shared-data' // calibration check session types -import { +import type { CHECK_STEP_SESSION_STARTED, CHECK_STEP_LABWARE_LOADED, CHECK_STEP_INSPECTING_TIP, diff --git a/app/src/redux/sessions/deck-calibration/types.ts b/app/src/redux/sessions/deck-calibration/types.ts index 44dd1b7f473..8587d38747b 100644 --- a/app/src/redux/sessions/deck-calibration/types.ts +++ b/app/src/redux/sessions/deck-calibration/types.ts @@ -1,6 +1,6 @@ // deck calibration types -import { +import type { DECK_STEP_SESSION_STARTED, DECK_STEP_LABWARE_LOADED, DECK_STEP_PREPARING_PIPETTE, diff --git a/app/src/redux/sessions/epic/__tests__/createSessionCommandEpic.test.ts b/app/src/redux/sessions/epic/__tests__/createSessionCommandEpic.test.ts index c587cb53e2b..434b5a96085 100644 --- a/app/src/redux/sessions/epic/__tests__/createSessionCommandEpic.test.ts +++ b/app/src/redux/sessions/epic/__tests__/createSessionCommandEpic.test.ts @@ -8,7 +8,7 @@ import * as Actions from '../../actions' import { sessionsEpic } from '..' import type { Action } from '../../../types' -import { CreateSessionCommandAction } from '../../types' +import type { CreateSessionCommandAction } from '../../types' vi.mock('../../../robot-api/http') diff --git a/app/src/redux/sessions/pipette-offset-calibration/types.ts b/app/src/redux/sessions/pipette-offset-calibration/types.ts index 55d1397bb74..5a840f432cc 100644 --- a/app/src/redux/sessions/pipette-offset-calibration/types.ts +++ b/app/src/redux/sessions/pipette-offset-calibration/types.ts @@ -1,5 +1,5 @@ // pipette offset calibration types -import { +import type { PIP_OFFSET_STEP_SESSION_STARTED, PIP_OFFSET_STEP_LABWARE_LOADED, PIP_OFFSET_STEP_PREPARING_PIPETTE, diff --git a/app/src/redux/sessions/selectors.ts b/app/src/redux/sessions/selectors.ts index 150580e2dce..8acb5923d40 100644 --- a/app/src/redux/sessions/selectors.ts +++ b/app/src/redux/sessions/selectors.ts @@ -1,5 +1,5 @@ import type { State } from '../types' -import * as Types from './types' +import type * as Types from './types' export const getRobotSessions: ( state: State, diff --git a/app/src/redux/sessions/tip-length-calibration/types.ts b/app/src/redux/sessions/tip-length-calibration/types.ts index 16b5eebb865..8a7db5be43f 100644 --- a/app/src/redux/sessions/tip-length-calibration/types.ts +++ b/app/src/redux/sessions/tip-length-calibration/types.ts @@ -1,5 +1,5 @@ // tip length calibration types -import { +import type { TIP_LENGTH_STEP_SESSION_STARTED, TIP_LENGTH_STEP_LABWARE_LOADED, TIP_LENGTH_STEP_MEASURING_NOZZLE_OFFSET, diff --git a/app/src/redux/sessions/types.ts b/app/src/redux/sessions/types.ts index be9ce194ca4..3103dcd57cc 100644 --- a/app/src/redux/sessions/types.ts +++ b/app/src/redux/sessions/types.ts @@ -1,6 +1,6 @@ import type { LabwareDefinition2 } from '@opentrons/shared-data' -import { +import type { CREATE_SESSION, CREATE_SESSION_SUCCESS, CREATE_SESSION_FAILURE, @@ -30,15 +30,15 @@ import type { RobotApiV2ErrorResponseBody, } from '../robot-api/types' -import * as CalCheckTypes from './calibration-check/types' -import * as TipLengthCalTypes from './tip-length-calibration/types' -import * as DeckCalTypes from './deck-calibration/types' -import * as PipOffsetCalTypes from './pipette-offset-calibration/types' -import * as CalCheckConstants from './calibration-check/constants' -import * as TipCalConstants from './tip-length-calibration/constants' -import * as DeckCalConstants from './deck-calibration/constants' -import * as PipOffsetCalConstants from './pipette-offset-calibration/constants' -import * as CommonCalConstants from './common-calibration/constants' +import type * as CalCheckTypes from './calibration-check/types' +import type * as TipLengthCalTypes from './tip-length-calibration/types' +import type * as DeckCalTypes from './deck-calibration/types' +import type * as PipOffsetCalTypes from './pipette-offset-calibration/types' +import type * as CalCheckConstants from './calibration-check/constants' +import type * as TipCalConstants from './tip-length-calibration/constants' +import type * as DeckCalConstants from './deck-calibration/constants' +import type * as PipOffsetCalConstants from './pipette-offset-calibration/constants' +import type * as CommonCalConstants from './common-calibration/constants' export * from './calibration-check/types' export * from './tip-length-calibration/types' diff --git a/app/src/redux/shell/types.ts b/app/src/redux/shell/types.ts index 8f485e24bd7..9696827ae60 100644 --- a/app/src/redux/shell/types.ts +++ b/app/src/redux/shell/types.ts @@ -138,7 +138,7 @@ export interface RobotMassStorageDeviceRemoved { export type NotifyTopic = | 'ALL_TOPICS' | 'robot-server/maintenance_runs/current_run' - | 'robot-server/runs/current_command' + | 'robot-server/runs/commands_links' | 'robot-server/runs' | `robot-server/runs/${string}` | 'robot-server/deck_configuration' diff --git a/app/src/redux/system-info/actions.ts b/app/src/redux/system-info/actions.ts index 5972f918291..359b4a859e9 100644 --- a/app/src/redux/system-info/actions.ts +++ b/app/src/redux/system-info/actions.ts @@ -1,7 +1,7 @@ // system-info actions import * as Constants from './constants' -import * as Types from './types' +import type * as Types from './types' export const initialized = ( usbDevices: Types.UsbDevice[], diff --git a/app/src/redux/system-info/types.ts b/app/src/redux/system-info/types.ts index febce9230b9..8b2ae57a560 100644 --- a/app/src/redux/system-info/types.ts +++ b/app/src/redux/system-info/types.ts @@ -1,6 +1,6 @@ // system-info types -import { +import type { INITIALIZED, USB_DEVICE_ADDED, USB_DEVICE_REMOVED, diff --git a/app/src/resources/__tests__/useNotifyService.test.ts b/app/src/resources/__tests__/useNotifyDataReady.ts similarity index 71% rename from app/src/resources/__tests__/useNotifyService.test.ts rename to app/src/resources/__tests__/useNotifyDataReady.ts index f2bf6bb516f..3fe27de0d77 100644 --- a/app/src/resources/__tests__/useNotifyService.test.ts +++ b/app/src/resources/__tests__/useNotifyDataReady.ts @@ -1,22 +1,25 @@ import { useDispatch } from 'react-redux' import { renderHook } from '@testing-library/react' import { describe, it, vi, expect, beforeEach, afterEach } from 'vitest' +import { when } from 'vitest-when' import { useHost } from '@opentrons/react-api-client' -import { useNotifyService } from '../useNotifyService' +import { useNotifyDataReady } from '../useNotifyDataReady' import { appShellListener } from '../../redux/shell/remote' import { useTrackEvent } from '../../redux/analytics' import { notifySubscribeAction } from '../../redux/shell' +import { useFeatureFlag } from '../../redux/config' import type { Mock } from 'vitest' import type { HostConfig } from '@opentrons/api-client' -import type { QueryOptionsWithPolling } from '../useNotifyService' +import type { QueryOptionsWithPolling } from '../useNotifyDataReady' -vi.unmock('../useNotifyService') +vi.unmock('../useNotifyDataReady') vi.mock('react-redux') vi.mock('@opentrons/react-api-client') vi.mock('../../redux/analytics') +vi.mock('../../redux/config') vi.mock('../../redux/shell/remote', () => ({ appShellListener: vi.fn(), })) @@ -27,19 +30,21 @@ const MOCK_OPTIONS: QueryOptionsWithPolling = { forceHttpPolling: false, } -describe('useNotifyService', () => { +describe('useNotifyDataReady', () => { let mockDispatch: Mock let mockTrackEvent: Mock let mockHTTPRefetch: Mock beforeEach(() => { mockDispatch = vi.fn() - mockHTTPRefetch = vi.fn() mockTrackEvent = vi.fn() vi.mocked(useTrackEvent).mockReturnValue(mockTrackEvent) vi.mocked(useDispatch).mockReturnValue(mockDispatch) vi.mocked(useHost).mockReturnValue(MOCK_HOST_CONFIG) vi.mocked(appShellListener).mockClear() + when(vi.mocked(useFeatureFlag)) + .calledWith('forceHttpPolling') + .thenReturn(false) }) afterEach(() => { @@ -48,14 +53,13 @@ describe('useNotifyService', () => { }) it('should trigger an HTTP refetch and subscribe action on a successful initial mount', () => { - renderHook(() => - useNotifyService({ + const { result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, - setRefetch: mockHTTPRefetch, options: MOCK_OPTIONS, } as any) ) - expect(mockHTTPRefetch).toHaveBeenCalledWith('once') + expect(result.current.shouldRefetch).toEqual(true) expect(mockDispatch).toHaveBeenCalledWith( notifySubscribeAction(MOCK_HOST_CONFIG.hostname, MOCK_TOPIC) ) @@ -63,40 +67,37 @@ describe('useNotifyService', () => { }) it('should not subscribe to notifications if forceHttpPolling is true', () => { - renderHook(() => - useNotifyService({ + const { result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, - setRefetch: mockHTTPRefetch, options: { ...MOCK_OPTIONS, forceHttpPolling: true }, } as any) ) - expect(mockHTTPRefetch).toHaveBeenCalled() + expect(result.current.shouldRefetch).toEqual(true) expect(appShellListener).not.toHaveBeenCalled() expect(mockDispatch).not.toHaveBeenCalled() }) it('should not subscribe to notifications if enabled is false', () => { - renderHook(() => - useNotifyService({ + const { result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, - setRefetch: mockHTTPRefetch, options: { ...MOCK_OPTIONS, enabled: false }, } as any) ) - expect(mockHTTPRefetch).toHaveBeenCalled() + expect(result.current.shouldRefetch).toEqual(true) expect(appShellListener).not.toHaveBeenCalled() expect(mockDispatch).not.toHaveBeenCalled() }) it('should not subscribe to notifications if staleTime is Infinity', () => { - renderHook(() => - useNotifyService({ + const { result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, - setRefetch: mockHTTPRefetch, options: { ...MOCK_OPTIONS, staleTime: Infinity }, } as any) ) - expect(mockHTTPRefetch).toHaveBeenCalled() + expect(result.current.shouldRefetch).toEqual(true) expect(appShellListener).not.toHaveBeenCalled() expect(mockDispatch).not.toHaveBeenCalled() }) @@ -106,14 +107,15 @@ describe('useNotifyService', () => { const errorSpy = vi.spyOn(console, 'error') errorSpy.mockImplementation(() => {}) - renderHook(() => - useNotifyService({ + const { result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, setRefetch: mockHTTPRefetch, options: MOCK_OPTIONS, } as any) ) - expect(mockHTTPRefetch).toHaveBeenCalledWith('always') + + expect(result.current.shouldRefetch).toEqual(true) }) it('should return set HTTP refetch to always and fire an analytics reporting event if the connection was refused', () => { @@ -123,8 +125,8 @@ describe('useNotifyService', () => { // eslint-disable-next-line n/no-callback-literal callback('ECONNREFUSED') }) - const { rerender } = renderHook(() => - useNotifyService({ + const { rerender, result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, setRefetch: mockHTTPRefetch, options: MOCK_OPTIONS, @@ -132,7 +134,7 @@ describe('useNotifyService', () => { ) expect(mockTrackEvent).toHaveBeenCalled() rerender() - expect(mockHTTPRefetch).toHaveBeenCalledWith('always') + expect(result.current.shouldRefetch).toEqual(true) }) it('should trigger a single HTTP refetch if the refetch flag was returned', () => { @@ -142,15 +144,15 @@ describe('useNotifyService', () => { // eslint-disable-next-line n/no-callback-literal callback({ refetch: true }) }) - const { rerender } = renderHook(() => - useNotifyService({ + const { rerender, result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, setRefetch: mockHTTPRefetch, options: MOCK_OPTIONS, } as any) ) rerender() - expect(mockHTTPRefetch).toHaveBeenCalledWith('once') + expect(result.current.shouldRefetch).toEqual(true) }) it('should trigger a single HTTP refetch if the unsubscribe flag was returned', () => { @@ -160,22 +162,20 @@ describe('useNotifyService', () => { // eslint-disable-next-line n/no-callback-literal callback({ unsubscribe: true }) }) - const { rerender } = renderHook(() => - useNotifyService({ + const { rerender, result } = renderHook(() => + useNotifyDataReady({ topic: MOCK_TOPIC, - setRefetch: mockHTTPRefetch, options: MOCK_OPTIONS, } as any) ) rerender() - expect(mockHTTPRefetch).toHaveBeenCalledWith('once') + expect(result.current.shouldRefetch).toEqual(true) }) it('should clean up the listener on dismount', () => { const { unmount } = renderHook(() => - useNotifyService({ + useNotifyDataReady({ topic: MOCK_TOPIC, - setRefetch: mockHTTPRefetch, options: MOCK_OPTIONS, }) ) @@ -185,10 +185,9 @@ describe('useNotifyService', () => { it('should still clean up the listener if the hostname changes to null after subscribing', () => { const { unmount, rerender } = renderHook(() => - useNotifyService({ + useNotifyDataReady({ hostOverride: MOCK_HOST_CONFIG, topic: MOCK_TOPIC, - setRefetch: mockHTTPRefetch, options: MOCK_OPTIONS, }) ) @@ -198,4 +197,20 @@ describe('useNotifyService', () => { expect.objectContaining({ hostname: MOCK_HOST_CONFIG.hostname }) ) }) + + it('should not utilize notifications if the feature flag is set to true', () => { + when(vi.mocked(useFeatureFlag)) + .calledWith('forceHttpPolling') + .thenReturn(true) + + const { result } = renderHook(() => + useNotifyDataReady({ + topic: MOCK_TOPIC, + options: MOCK_OPTIONS, + } as any) + ) + + expect(result.current.shouldRefetch).toEqual(true) + expect(appShellListener).not.toHaveBeenCalled() + }) }) diff --git a/app/src/resources/deck_configuration/useNotifyDeckConfigurationQuery.ts b/app/src/resources/deck_configuration/useNotifyDeckConfigurationQuery.ts index 3ccfd9feca5..a4e999bfbaa 100644 --- a/app/src/resources/deck_configuration/useNotifyDeckConfigurationQuery.ts +++ b/app/src/resources/deck_configuration/useNotifyDeckConfigurationQuery.ts @@ -1,31 +1,23 @@ -import * as React from 'react' - import { useDeckConfigurationQuery } from '@opentrons/react-api-client' -import { useNotifyService } from '../useNotifyService' +import { useNotifyDataReady } from '../useNotifyDataReady' import type { UseQueryResult } from 'react-query' import type { DeckConfiguration } from '@opentrons/shared-data' -import type { - QueryOptionsWithPolling, - HTTPRefetchFrequency, -} from '../useNotifyService' +import type { QueryOptionsWithPolling } from '../useNotifyDataReady' export function useNotifyDeckConfigurationQuery( options: QueryOptionsWithPolling = {} ): UseQueryResult { - const [refetch, setRefetch] = React.useState(null) - - useNotifyService({ + const { notifyOnSettled, shouldRefetch } = useNotifyDataReady({ topic: 'robot-server/deck_configuration', - setRefetch, options, }) const httpQueryResult = useDeckConfigurationQuery({ ...options, - enabled: options?.enabled !== false && refetch != null, - onSettled: refetch === 'once' ? () => setRefetch(null) : () => null, + enabled: options?.enabled !== false && shouldRefetch, + onSettled: notifyOnSettled, }) return httpQueryResult diff --git a/app/src/resources/maintenance_runs/useNotifyCurrentMaintenanceRun.ts b/app/src/resources/maintenance_runs/useNotifyCurrentMaintenanceRun.ts index 28859afe393..1d19084ba59 100644 --- a/app/src/resources/maintenance_runs/useNotifyCurrentMaintenanceRun.ts +++ b/app/src/resources/maintenance_runs/useNotifyCurrentMaintenanceRun.ts @@ -1,31 +1,23 @@ -import * as React from 'react' - import { useCurrentMaintenanceRun } from '@opentrons/react-api-client' -import { useNotifyService } from '../useNotifyService' +import { useNotifyDataReady } from '../useNotifyDataReady' import type { UseQueryResult } from 'react-query' import type { MaintenanceRun } from '@opentrons/api-client' -import type { - QueryOptionsWithPolling, - HTTPRefetchFrequency, -} from '../useNotifyService' +import type { QueryOptionsWithPolling } from '../useNotifyDataReady' export function useNotifyCurrentMaintenanceRun( options: QueryOptionsWithPolling = {} ): UseQueryResult | UseQueryResult { - const [refetch, setRefetch] = React.useState(null) - - useNotifyService({ + const { notifyOnSettled, shouldRefetch } = useNotifyDataReady({ topic: 'robot-server/maintenance_runs/current_run', - setRefetch, options, }) const httpQueryResult = useCurrentMaintenanceRun({ ...options, - enabled: options?.enabled !== false && refetch != null, - onSettled: refetch === 'once' ? () => setRefetch(null) : () => null, + enabled: options?.enabled !== false && shouldRefetch, + onSettled: notifyOnSettled, }) return httpQueryResult diff --git a/app/src/resources/networking/__tests__/useCanDisconnect.test.tsx b/app/src/resources/networking/__tests__/useCanDisconnect.test.tsx index 5a81f052edd..f51f5dca2e0 100644 --- a/app/src/resources/networking/__tests__/useCanDisconnect.test.tsx +++ b/app/src/resources/networking/__tests__/useCanDisconnect.test.tsx @@ -3,7 +3,7 @@ import { when } from 'vitest-when' import { describe, it, expect, vi, beforeEach } from 'vitest' import { createStore } from 'redux' import { Provider } from 'react-redux' -import { SECURITY_WPA_EAP, WifiNetwork } from '@opentrons/api-client' +import { SECURITY_WPA_EAP } from '@opentrons/api-client' import { renderHook } from '@testing-library/react' import { getRobotApiVersionByName } from '../../../redux/discovery' @@ -11,6 +11,7 @@ import { useIsFlex } from '../../../organisms/Devices/hooks' import { useCanDisconnect } from '../hooks/useCanDisconnect' import { useWifiList } from '../hooks/useWifiList' +import type { WifiNetwork } from '@opentrons/api-client' import type { Store } from 'redux' import type { State } from '../../../redux/types' diff --git a/app/src/resources/networking/__tests__/useNetworkConnection.test.tsx b/app/src/resources/networking/__tests__/useNetworkConnection.test.tsx index 624a5a37917..f6f038dd081 100644 --- a/app/src/resources/networking/__tests__/useNetworkConnection.test.tsx +++ b/app/src/resources/networking/__tests__/useNetworkConnection.test.tsx @@ -3,7 +3,7 @@ import * as React from 'react' import { when } from 'vitest-when' import { describe, it, expect, vi, beforeEach } from 'vitest' import { Provider } from 'react-redux' -import { createStore, Store } from 'redux' +import { createStore } from 'redux' import { renderHook } from '@testing-library/react' import { I18nextProvider } from 'react-i18next' @@ -14,6 +14,7 @@ import * as Fixtures from '../../../redux/networking/__fixtures__' import { getNetworkInterfaces } from '../../../redux/networking' import { useNetworkConnection } from '../hooks/useNetworkConnection' +import type { Store } from 'redux' vi.mock('../../../resources/networking/hooks') vi.mock('../../../redux/networking/selectors') diff --git a/app/src/resources/networking/__tests__/useWifiList.test.ts b/app/src/resources/networking/__tests__/useWifiList.test.ts index 8db28648272..d616067c2b8 100644 --- a/app/src/resources/networking/__tests__/useWifiList.test.ts +++ b/app/src/resources/networking/__tests__/useWifiList.test.ts @@ -1,11 +1,11 @@ import { when } from 'vitest-when' import { describe, it, expect, vi, beforeEach } from 'vitest' -import { SECURITY_WPA_EAP, WifiNetwork } from '@opentrons/api-client' +import { SECURITY_WPA_EAP } from '@opentrons/api-client' import { useWifiQuery } from '@opentrons/react-api-client' import { useRobot } from '../../../organisms/Devices/hooks' import { useWifiList } from '../hooks' -import type { WifiListResponse } from '@opentrons/api-client' import type { UseQueryResult } from 'react-query' +import type { WifiNetwork, WifiListResponse } from '@opentrons/api-client' vi.mock('@opentrons/react-api-client') vi.mock('../../../organisms/Devices/hooks') diff --git a/app/src/resources/runs/__tests__/util.test.ts b/app/src/resources/runs/__tests__/util.test.ts index 2c86d41ffda..40bdb92a0f3 100644 --- a/app/src/resources/runs/__tests__/util.test.ts +++ b/app/src/resources/runs/__tests__/util.test.ts @@ -1,5 +1,7 @@ import { describe, it, expect } from 'vitest' -import { formatTimeWithUtcLabel } from '../utils' +import { formatTimeWithUtcLabel, setCommandIntent } from '../utils' + +import type { CreateCommand } from '@opentrons/shared-data' describe('formatTimeWithUtc', () => { it('return formatted time with UTC', () => { @@ -21,3 +23,20 @@ describe('formatTimeWithUtc', () => { expect(result).toEqual('unknown') }) }) + +const mockCommand = { + commandType: 'home', + params: {}, + intent: 'protocol', +} as CreateCommand + +describe('setCommandIntent', () => { + it('explicitly sets the command intent to "fixit" if a failedCommandId is specified', () => { + const commandWithFixitIntent = setCommandIntent(mockCommand, 'MOCK_ID') + expect(commandWithFixitIntent.intent).toEqual('fixit') + }) + it('does not modify the command intent if no failedCommandId is specified', () => { + const command = setCommandIntent(mockCommand) + expect(command.intent).toEqual('protocol') + }) +}) diff --git a/app/src/resources/runs/hooks.ts b/app/src/resources/runs/hooks.ts index 528219776a4..5b41edd6d4c 100644 --- a/app/src/resources/runs/hooks.ts +++ b/app/src/resources/runs/hooks.ts @@ -1,25 +1,29 @@ import * as React from 'react' import { useSelector } from 'react-redux' -import type { CreateCommand } from '@opentrons/shared-data' -import type { HostConfig } from '@opentrons/api-client' + import { useCreateCommandMutation, useCreateLiveCommandMutation, useCreateMaintenanceCommandMutation, useCreateMaintenanceRunMutation, } from '@opentrons/react-api-client' + import { chainRunCommandsRecursive, chainMaintenanceCommandsRecursive, chainLiveCommandsRecursive, + setCommandIntent, } from './utils' import { getIsOnDevice } from '../../redux/config' import { useMaintenanceRunTakeover } from '../../organisms/TakeoverModal' + import type { UseCreateMaintenanceRunMutationOptions, UseCreateMaintenanceRunMutationResult, CreateMaintenanceRunType, } from '@opentrons/react-api-client' +import type { CreateCommand } from '@opentrons/shared-data' +import type { HostConfig } from '@opentrons/api-client' import type { ModulePrepCommandsType } from '../../organisms/Devices/getModulePrepCommands' export type CreateCommandMutate = ReturnType< @@ -40,18 +44,28 @@ type CreateRunCommandMutation = Omit< > & { createRunCommand: CreateRunCommand } export function useCreateRunCommandMutation( - runId: string + runId: string, + failedCommandId?: string ): CreateRunCommandMutation { const createCommandMutation = useCreateCommandMutation() + return { ...createCommandMutation, - createRunCommand: (variables, ...options) => - createCommandMutation.createCommand({ ...variables, runId }, ...options), + createRunCommand: (variables, ...options) => { + const { command } = variables + const commandWithIntent = setCommandIntent(command, failedCommandId) + + return createCommandMutation.createCommand( + { ...variables, runId, command: commandWithIntent, failedCommandId }, + ...options + ) + }, } } export function useChainRunCommands( - runId: string + runId: string, + failedCommandId?: string ): { chainRunCommands: ( commands: CreateCommand[], @@ -60,7 +74,11 @@ export function useChainRunCommands( isCommandMutationLoading: boolean } { const [isLoading, setIsLoading] = React.useState(false) - const { createRunCommand } = useCreateRunCommandMutation(runId) + + const { createRunCommand } = useCreateRunCommandMutation( + runId, + failedCommandId + ) return { chainRunCommands: ( commands: CreateCommand[], @@ -131,6 +149,7 @@ type CreateTargetedMaintenanceRunMutation = UseCreateMaintenanceRunMutationResul createTargetedMaintenanceRun: CreateMaintenanceRunType } +// A wrapper around useCreateMaintenanceRunMutation that ensures the ODD TakeoverModal renders, if applicable. export function useCreateTargetedMaintenanceRunMutation( options: UseCreateMaintenanceRunMutationOptions = {}, hostOverride?: HostConfig | null diff --git a/app/src/resources/runs/index.ts b/app/src/resources/runs/index.ts index 91595d17f08..a69aba067aa 100644 --- a/app/src/resources/runs/index.ts +++ b/app/src/resources/runs/index.ts @@ -2,5 +2,5 @@ export * from './hooks' export * from './utils' export * from './useNotifyAllRunsQuery' export * from './useNotifyRunQuery' -export * from './useNotifyLastRunCommand' +export * from './useNotifyAllCommandsQuery' export * from './useNotifyAllCommandsAsPreSerializedList' diff --git a/app/src/resources/runs/useNotifyAllCommandsAsPreSerializedList.ts b/app/src/resources/runs/useNotifyAllCommandsAsPreSerializedList.ts index 1410c23cef0..25d45392185 100644 --- a/app/src/resources/runs/useNotifyAllCommandsAsPreSerializedList.ts +++ b/app/src/resources/runs/useNotifyAllCommandsAsPreSerializedList.ts @@ -1,34 +1,26 @@ -import * as React from 'react' - import { useAllCommandsAsPreSerializedList } from '@opentrons/react-api-client' -import { useNotifyService } from '../useNotifyService' +import { useNotifyDataReady } from '../useNotifyDataReady' import type { UseQueryResult } from 'react-query' import type { AxiosError } from 'axios' import type { CommandsData, GetCommandsParams } from '@opentrons/api-client' -import type { - QueryOptionsWithPolling, - HTTPRefetchFrequency, -} from '../useNotifyService' +import type { QueryOptionsWithPolling } from '../useNotifyDataReady' export function useNotifyAllCommandsAsPreSerializedList( runId: string | null, params?: GetCommandsParams | null, options: QueryOptionsWithPolling = {} ): UseQueryResult { - const [refetch, setRefetch] = React.useState(null) - - useNotifyService({ + const { notifyOnSettled, shouldRefetch } = useNotifyDataReady({ topic: `robot-server/runs/pre_serialized_commands/${runId}`, - setRefetch, options, }) const httpResponse = useAllCommandsAsPreSerializedList(runId, params, { ...options, - enabled: options?.enabled !== false && refetch != null, - onSettled: refetch === 'once' ? () => setRefetch(null) : () => null, + enabled: options?.enabled !== false && shouldRefetch, + onSettled: notifyOnSettled, }) return httpResponse diff --git a/app/src/resources/runs/useNotifyAllCommandsQuery.ts b/app/src/resources/runs/useNotifyAllCommandsQuery.ts new file mode 100644 index 00000000000..ec6fc65a38f --- /dev/null +++ b/app/src/resources/runs/useNotifyAllCommandsQuery.ts @@ -0,0 +1,32 @@ +import { useAllCommandsQuery } from '@opentrons/react-api-client' + +import { useNotifyDataReady } from '../useNotifyDataReady' + +import type { UseQueryResult } from 'react-query' +import type { CommandsData, GetCommandsParams } from '@opentrons/api-client' +import type { QueryOptionsWithPolling } from '../useNotifyDataReady' + +export function useNotifyAllCommandsQuery( + runId: string | null, + params?: GetCommandsParams | null, + options: QueryOptionsWithPolling = {} +): UseQueryResult { + // Assume the useAllCommandsQuery() response can only change when the command links change. + // + // TODO(mm, 2024-05-21): I don't think this is correct. If a command goes from + // running to succeeded, that may change the useAllCommandsQuery response, but it + // will not necessarily change the command links. We might need an MQTT topic + // covering "any change in `GET /runs/{id}/commands`". + const { notifyOnSettled, shouldRefetch } = useNotifyDataReady({ + topic: 'robot-server/runs/commands_links', + options, + }) + + const httpResponse = useAllCommandsQuery(runId, params, { + ...options, + enabled: options?.enabled !== false && shouldRefetch, + onSettled: notifyOnSettled, + }) + + return httpResponse +} diff --git a/app/src/resources/runs/useNotifyAllRunsQuery.ts b/app/src/resources/runs/useNotifyAllRunsQuery.ts index 1ae93ffc713..68a8347c551 100644 --- a/app/src/resources/runs/useNotifyAllRunsQuery.ts +++ b/app/src/resources/runs/useNotifyAllRunsQuery.ts @@ -1,28 +1,20 @@ -import * as React from 'react' - import { useAllRunsQuery } from '@opentrons/react-api-client' -import { useNotifyService } from '../useNotifyService' +import { useNotifyDataReady } from '../useNotifyDataReady' import type { UseQueryResult } from 'react-query' import type { AxiosError } from 'axios' import type { HostConfig, GetRunsParams, Runs } from '@opentrons/api-client' import type { UseAllRunsQueryOptions } from '@opentrons/react-api-client/src/runs/useAllRunsQuery' -import type { - QueryOptionsWithPolling, - HTTPRefetchFrequency, -} from '../useNotifyService' +import type { QueryOptionsWithPolling } from '../useNotifyDataReady' export function useNotifyAllRunsQuery( params: GetRunsParams = {}, options: QueryOptionsWithPolling = {}, hostOverride?: HostConfig | null ): UseQueryResult { - const [refetch, setRefetch] = React.useState(null) - - useNotifyService({ + const { notifyOnSettled, shouldRefetch } = useNotifyDataReady({ topic: 'robot-server/runs', - setRefetch, options, hostOverride, }) @@ -31,8 +23,8 @@ export function useNotifyAllRunsQuery( params, { ...(options as UseAllRunsQueryOptions), - enabled: options?.enabled !== false && refetch != null, - onSettled: refetch === 'once' ? () => setRefetch(null) : () => null, + enabled: options?.enabled !== false && shouldRefetch, + onSettled: notifyOnSettled, }, hostOverride ) diff --git a/app/src/resources/runs/useNotifyLastRunCommand.ts b/app/src/resources/runs/useNotifyLastRunCommand.ts deleted file mode 100644 index 14c68944e43..00000000000 --- a/app/src/resources/runs/useNotifyLastRunCommand.ts +++ /dev/null @@ -1,31 +0,0 @@ -import * as React from 'react' - -import { useNotifyService } from '../useNotifyService' -import { useLastRunCommand } from '../../organisms/Devices/hooks/useLastRunCommand' - -import type { CommandsData, RunCommandSummary } from '@opentrons/api-client' -import type { - QueryOptionsWithPolling, - HTTPRefetchFrequency, -} from '../useNotifyService' - -export function useNotifyLastRunCommand( - runId: string, - options: QueryOptionsWithPolling = {} -): RunCommandSummary | null { - const [refetch, setRefetch] = React.useState(null) - - useNotifyService({ - topic: 'robot-server/runs/current_command', - setRefetch, - options, - }) - - const httpResponse = useLastRunCommand(runId, { - ...options, - enabled: options?.enabled !== false && refetch != null, - onSettled: refetch === 'once' ? () => setRefetch(null) : () => null, - }) - - return httpResponse -} diff --git a/app/src/resources/runs/useNotifyRunQuery.ts b/app/src/resources/runs/useNotifyRunQuery.ts index 2ca72687341..1b0a99e5f41 100644 --- a/app/src/resources/runs/useNotifyRunQuery.ts +++ b/app/src/resources/runs/useNotifyRunQuery.ts @@ -1,35 +1,27 @@ -import * as React from 'react' - import { useRunQuery } from '@opentrons/react-api-client' -import { useNotifyService } from '../useNotifyService' +import { useNotifyDataReady } from '../useNotifyDataReady' import type { UseQueryResult } from 'react-query' import type { Run } from '@opentrons/api-client' -import type { - QueryOptionsWithPolling, - HTTPRefetchFrequency, -} from '../useNotifyService' +import type { QueryOptionsWithPolling } from '../useNotifyDataReady' import type { NotifyTopic } from '../../redux/shell/types' export function useNotifyRunQuery( runId: string | null, options: QueryOptionsWithPolling = {} ): UseQueryResult { - const [refetch, setRefetch] = React.useState(null) - const isEnabled = options.enabled !== false && runId != null - useNotifyService({ + const { notifyOnSettled, shouldRefetch } = useNotifyDataReady({ topic: `robot-server/runs/${runId}` as NotifyTopic, - setRefetch, options: { ...options, enabled: options.enabled != null && runId != null }, }) const httpResponse = useRunQuery(runId, { ...options, - enabled: isEnabled && refetch != null, - onSettled: refetch === 'once' ? () => setRefetch(null) : () => null, + enabled: isEnabled && shouldRefetch, + onSettled: notifyOnSettled, }) return httpResponse diff --git a/app/src/resources/runs/utils.ts b/app/src/resources/runs/utils.ts index 1827a58ef8f..596b2ccba29 100644 --- a/app/src/resources/runs/utils.ts +++ b/app/src/resources/runs/utils.ts @@ -1,11 +1,12 @@ -import * as React from 'react' import { format } from 'date-fns' + +import type * as React from 'react' +import type { UseMutateAsyncFunction } from 'react-query' import type { CommandData } from '@opentrons/api-client' import type { CreateCommand } from '@opentrons/shared-data' +import type { CreateLiveCommandMutateParams } from '@opentrons/react-api-client/src/runs/useCreateLiveCommandMutation' +import type { ModulePrepCommandsType } from '../../organisms/Devices/getModulePrepCommands' import type { CreateMaintenanceCommand, CreateRunCommand } from './hooks' -import type { UseMutateAsyncFunction } from 'react-query' -import { CreateLiveCommandMutateParams } from '@opentrons/react-api-client/src/runs/useCreateLiveCommandMutation' -import { ModulePrepCommandsType } from '../../organisms/Devices/getModulePrepCommands' export const chainRunCommandsRecursive = ( commands: CreateCommand[], @@ -13,9 +14,11 @@ export const chainRunCommandsRecursive = ( continuePastCommandFailure: boolean = true, setIsLoading: React.Dispatch> ): Promise => { - if (commands.length < 1) + if (commands.length < 1) { return Promise.reject(new Error('no commands to execute')) + } setIsLoading(true) + return createRunCommand({ command: commands[0], waitUntilComplete: true, @@ -57,9 +60,11 @@ export const chainLiveCommandsRecursive = ( continuePastCommandFailure: boolean = true, setIsLoading: React.Dispatch> ): Promise => { - if (commands.length < 1) + if (commands.length < 1) { return Promise.reject(new Error('no commands to execute')) + } setIsLoading(true) + return createLiveCommand({ command: commands[0], waitUntilComplete: true, @@ -98,9 +103,11 @@ export const chainMaintenanceCommandsRecursive = ( continuePastCommandFailure: boolean = true, setIsLoading: React.Dispatch> ): Promise => { - if (commands.length < 1) + if (commands.length < 1) { return Promise.reject(new Error('no commands to execute')) + } setIsLoading(true) + return createMaintenanceCommand({ maintenanceRunId: maintenanceRunId, command: commands[0], @@ -145,3 +152,18 @@ export const formatTimeWithUtcLabel = (time: string | null): string => { ? `${format(new Date(time), 'M/d/yy HH:mm')} ${UTC_LABEL}` : `${time} ${UTC_LABEL}` } + +// Visit the command, setting the command intent to "fixit" if a failedCommandId is supplied. +export const setCommandIntent = ( + command: CreateCommand, + failedCommandId?: string +): CreateCommand => { + const isCommandWithFixitIntent = failedCommandId != null + if (isCommandWithFixitIntent) { + return { + ...command, + intent: 'fixit', + } + } + return command +} diff --git a/app/src/resources/useNotifyService.ts b/app/src/resources/useNotifyDataReady.ts similarity index 71% rename from app/src/resources/useNotifyService.ts rename to app/src/resources/useNotifyDataReady.ts index d8422ba786f..f4c485f4ff2 100644 --- a/app/src/resources/useNotifyService.ts +++ b/app/src/resources/useNotifyDataReady.ts @@ -10,6 +10,7 @@ import { useTrackEvent, ANALYTICS_NOTIFICATION_PORT_BLOCK_ERROR, } from '../redux/analytics' +import { useFeatureFlag } from '../redux/config' import type { UseQueryOptions } from 'react-query' import type { HostConfig } from '@opentrons/api-client' @@ -22,36 +23,43 @@ export interface QueryOptionsWithPolling forceHttpPolling?: boolean } -interface UseNotifyServiceProps { +interface useNotifyDataReadyProps { topic: NotifyTopic - setRefetch: (refetch: HTTPRefetchFrequency) => void options: QueryOptionsWithPolling hostOverride?: HostConfig | null } -export function useNotifyService({ +interface useNotifyDataReadyResults { + notifyOnSettled: () => void + shouldRefetch: boolean +} + +export function useNotifyDataReady({ topic, - setRefetch, options, hostOverride, -}: UseNotifyServiceProps): void { +}: useNotifyDataReadyProps): useNotifyDataReadyResults { const dispatch = useDispatch() const hostFromProvider = useHost() const host = hostOverride ?? hostFromProvider const hostname = host?.hostname ?? null const doTrackEvent = useTrackEvent() + const forcePollingFF = useFeatureFlag('forceHttpPolling') const seenHostname = React.useRef(null) + const [refetch, setRefetch] = React.useState(null) + const { enabled, staleTime, forceHttpPolling } = options const shouldUseNotifications = !forceHttpPolling && enabled !== false && hostname != null && - staleTime !== Infinity + staleTime !== Infinity && + !forcePollingFF React.useEffect(() => { if (shouldUseNotifications) { - // Always fetch on initial mount. + // Always fetch on initial mount to keep latency as low as possible. setRefetch('once') appShellListener({ hostname, @@ -76,7 +84,7 @@ export function useNotifyService({ } }, [topic, hostname, shouldUseNotifications]) - function onDataEvent(data: NotifyResponseData): void { + const onDataEvent = React.useCallback((data: NotifyResponseData): void => { if (data === 'ECONNFAILED' || data === 'ECONNREFUSED') { setRefetch('always') if (data === 'ECONNREFUSED') { @@ -88,5 +96,13 @@ export function useNotifyService({ } else if ('refetch' in data || 'unsubscribe' in data) { setRefetch('once') } - } + }, []) + + const notifyOnSettled = React.useCallback(() => { + if (refetch === 'once') { + setRefetch(null) + } + }, [refetch]) + + return { notifyOnSettled, shouldRefetch: refetch != null } } diff --git a/components/Makefile b/components/Makefile index bcb90baf56b..b433f37b767 100644 --- a/components/Makefile +++ b/components/Makefile @@ -5,7 +5,7 @@ port ?= 6060 # These variables can be overriden when make is invoked to customize the # behavior of jest -tests ?= +tests ?= src cov_opts ?= --coverage=true test_opts ?= @@ -31,6 +31,10 @@ lib: export NODE_ENV := production lib: yarn vite build +.PHONY: build-ts +build-ts: + yarn tsc --build --emitDeclarationOnly + # development ##################################################################### diff --git a/components/package.json b/components/package.json index 1ad9de63044..c0090f1503d 100644 --- a/components/package.json +++ b/components/package.json @@ -5,7 +5,7 @@ "source": "src/index.ts", "types": "lib/index.d.ts", "style": "src/index.module.css", - "main": "lib/opentrons-components.js", + "main": "lib/index.mjs", "module": "src/index.ts", "repository": { "type": "git", @@ -35,8 +35,10 @@ "classnames": "2.2.5", "interactjs": "^1.10.17", "lodash": "4.17.21", + "react-i18next": "13.5.0", "react-popper": "1.0.0", "react-remove-scroll": "2.4.3", + "react-router-dom": "5.3.4", "react-select": "5.4.0", "redux": "4.0.5", "styled-components": "5.3.6" diff --git a/components/src/atoms/Checkbox/Checkbox.stories.tsx b/components/src/atoms/Checkbox/Checkbox.stories.tsx new file mode 100644 index 00000000000..fc210122882 --- /dev/null +++ b/components/src/atoms/Checkbox/Checkbox.stories.tsx @@ -0,0 +1,24 @@ +import { Checkbox } from './index' + +import type { StoryObj, Meta } from '@storybook/react' + +const meta: Meta = { + title: 'ODD/Atoms/Checkbox', + component: Checkbox, +} + +type Story = StoryObj + +export const Basic: Story = { + args: { + isChecked: true, + labelText: 'Button Text', + onClick: () => { + console.log('clicked') + }, + tabIndex: 1, + disabled: false, + }, +} + +export default meta diff --git a/components/src/atoms/Checkbox/__tests__/Checkbox.test.tsx b/components/src/atoms/Checkbox/__tests__/Checkbox.test.tsx new file mode 100644 index 00000000000..a51f1583a4a --- /dev/null +++ b/components/src/atoms/Checkbox/__tests__/Checkbox.test.tsx @@ -0,0 +1,55 @@ +import * as React from 'react' +import { describe, beforeEach, afterEach, vi, expect, it } from 'vitest' +import { fireEvent, screen } from '@testing-library/react' +import '@testing-library/jest-dom/vitest' +import { renderWithProviders } from '../../../testing/utils' +import { Checkbox } from '..' + +const render = (props: React.ComponentProps) => { + return renderWithProviders()[0] +} + +describe('Checkbox', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + onClick: vi.fn(), + isChecked: false, + labelText: 'fake checkbox label', + tabIndex: 1, + disabled: false, + } + }) + + afterEach(() => { + vi.resetAllMocks() + }) + + it('renders label with disabled true', () => { + props.disabled = true + render(props) + const checkBoxInput = screen.getByRole('checkbox', { + name: 'fake checkbox label', + }) + expect(checkBoxInput).toBeDisabled() + }) + + it('renders label with correct style - tabIndex 1', () => { + props.tabIndex = 1 + render(props) + const checkBoxInput = screen.getByRole('checkbox', { + name: 'fake checkbox label', + }) + expect(checkBoxInput).toHaveAttribute('tabindex', '1') + }) + + it('calls mock function when clicking checkbox', () => { + render(props) + const checkBoxInput = screen.getByRole('checkbox', { + name: 'fake checkbox label', + }) + fireEvent.click(checkBoxInput) + expect(props.onClick).toHaveBeenCalled() + }) +}) diff --git a/components/src/atoms/Checkbox/index.tsx b/components/src/atoms/Checkbox/index.tsx new file mode 100644 index 00000000000..b68bbbe2df4 --- /dev/null +++ b/components/src/atoms/Checkbox/index.tsx @@ -0,0 +1,85 @@ +import * as React from 'react' +import { css } from 'styled-components' +import { COLORS, BORDERS } from '../../helix-design-system' +import { Flex } from '../../primitives' +import { Icon } from '../../icons' +import { + ALIGN_CENTER, + DIRECTION_ROW, + JUSTIFY_SPACE_BETWEEN, +} from '../../styles' +import { SPACING, TYPOGRAPHY } from '../../ui-style-constants' +import { StyledText } from '../StyledText' + +export interface CheckboxProps { + /** checkbox is checked if value is true */ + isChecked: boolean + /** label text that describes the option */ + labelText: string + /** callback click/tap handler */ + onClick: React.MouseEventHandler + /** html tabindex property */ + tabIndex?: number + /** if disabled is true, mouse events will not trigger onClick callback */ + disabled?: boolean +} +export function Checkbox(props: CheckboxProps): JSX.Element { + const { + isChecked, + labelText, + onClick, + tabIndex = 0, + disabled = false, + } = props + return ( + + + {labelText} + + + + ) +} + +interface CheckProps { + isChecked: boolean +} +function Check(props: CheckProps): JSX.Element { + return props.isChecked ? ( + + ) : ( + + ) +} diff --git a/components/src/atoms/CheckboxField/__tests__/CheckboxField.test.tsx b/components/src/atoms/CheckboxField/__tests__/CheckboxField.test.tsx index 58014d85f11..12778d0965f 100644 --- a/components/src/atoms/CheckboxField/__tests__/CheckboxField.test.tsx +++ b/components/src/atoms/CheckboxField/__tests__/CheckboxField.test.tsx @@ -41,7 +41,7 @@ describe('CheckboxField', () => { // INNER_STYLE_NO_VALUE expect(checkBoxIcon).toHaveStyle(`width: 1.25rem`) expect(checkBoxIcon).toHaveStyle(`min-width: 1.25rem`) - expect(checkBoxIcon).toHaveStyle(`color: ${String(COLORS.grey60)}`) + expect(checkBoxIcon).toHaveStyle(`color: ${String(COLORS.grey50)}`) expect(checkBoxIcon).toHaveStyle(`display: flex`) expect(checkBoxIcon).toHaveStyle( `border-radius: ${String(BORDERS.borderRadius2)}` @@ -82,7 +82,7 @@ describe('CheckboxField', () => { const checkBoxIcon = screen.getByTestId('CheckboxField_icon') expect(checkBoxIcon).toHaveStyle(`width: 1.25rem`) expect(checkBoxIcon).toHaveStyle(`min-width: 1.25rem`) - expect(checkBoxIcon).toHaveStyle(`color: ${String(COLORS.blue60)}`) + expect(checkBoxIcon).toHaveStyle(`color: ${String(COLORS.blue50)}`) expect(checkBoxIcon).toHaveStyle(`display: flex`) expect(checkBoxIcon).toHaveStyle( `border-radius: ${String(BORDERS.borderRadius2)}` @@ -99,7 +99,7 @@ describe('CheckboxField', () => { const checkBoxIcon = screen.getByTestId('CheckboxField_icon') expect(checkBoxIcon).toHaveStyle(`width: 1.25rem`) expect(checkBoxIcon).toHaveStyle(`min-width: 1.25rem`) - expect(checkBoxIcon).toHaveStyle(`color: ${String(COLORS.grey60)}`) + expect(checkBoxIcon).toHaveStyle(`color: ${String(COLORS.grey50)}`) expect(checkBoxIcon).toHaveStyle(`display: flex`) expect(checkBoxIcon).toHaveStyle( `border-radius: ${String(BORDERS.borderRadius2)}` diff --git a/components/src/atoms/CheckboxField/index.tsx b/components/src/atoms/CheckboxField/index.tsx index 39e88308231..f416a771186 100644 --- a/components/src/atoms/CheckboxField/index.tsx +++ b/components/src/atoms/CheckboxField/index.tsx @@ -4,7 +4,7 @@ import { SPACING, TYPOGRAPHY } from '../../ui-style-constants' import { COLORS, BORDERS } from '../../helix-design-system' import { Flex, Box } from '../../primitives' import { Icon } from '../../icons' -import { ALIGN_CENTER, JUSTIFY_CENTER, SIZE_1 } from '../../styles' +import { ALIGN_CENTER, JUSTIFY_CENTER } from '../../styles' export interface CheckboxFieldProps { /** change handler */ @@ -130,7 +130,7 @@ export function CheckboxField(props: CheckboxFieldProps): JSX.Element { justifyContent={JUSTIFY_CENTER} borderRadius={BORDERS.borderRadius2} backgroundColor={COLORS.grey30} - size={SIZE_1} + size="1.25rem" > = { +const meta: Meta = { title: 'Library/Atoms/Chip', argTypes: { type: { @@ -33,7 +33,7 @@ const meta: Meta = { }, }, }, - component: Chip, + component: ChipComponent, parameters: VIEWPORT.touchScreenViewport, decorators: [ Story => ( @@ -49,9 +49,9 @@ const meta: Meta = { } export default meta -type Story = StoryObj +type Story = StoryObj -export const ChipComponent: Story = { +export const Chip: Story = { args: { type: 'success', text: 'Chip component', diff --git a/components/src/atoms/StyledText/index.tsx b/components/src/atoms/StyledText/index.tsx index 64acb9c8174..aa1eb16c29f 100644 --- a/components/src/atoms/StyledText/index.tsx +++ b/components/src/atoms/StyledText/index.tsx @@ -1,8 +1,8 @@ -import * as React from 'react' import styled, { css } from 'styled-components' import { Text } from '../../primitives' import { TYPOGRAPHY, RESPONSIVENESS } from '../../ui-style-constants' +import type * as React from 'react' import type { FlattenSimpleInterpolation } from 'styled-components' export interface Props extends React.ComponentProps { diff --git a/components/src/atoms/buttons/__tests__/AlertPrimaryButton.test.tsx b/components/src/atoms/buttons/__tests__/AlertPrimaryButton.test.tsx index 3a56b84d0c9..41c1f3c0d28 100644 --- a/components/src/atoms/buttons/__tests__/AlertPrimaryButton.test.tsx +++ b/components/src/atoms/buttons/__tests__/AlertPrimaryButton.test.tsx @@ -24,7 +24,7 @@ describe('AlertPrimaryButton', () => { it('renders alert primary button with text', () => { render(props) const button = screen.getByText('alert primary button') - expect(button).toHaveStyle(`background-color: ${COLORS.red55}`) + expect(button).toHaveStyle(`background-color: ${COLORS.red50}`) expect(button).toHaveStyle( `padding: ${SPACING.spacing8} ${SPACING.spacing16} ${SPACING.spacing8} ${SPACING.spacing16}` ) diff --git a/components/src/atoms/buttons/__tests__/PrimaryButton.test.tsx b/components/src/atoms/buttons/__tests__/PrimaryButton.test.tsx index 4ec8c16357a..8353bba24f9 100644 --- a/components/src/atoms/buttons/__tests__/PrimaryButton.test.tsx +++ b/components/src/atoms/buttons/__tests__/PrimaryButton.test.tsx @@ -23,7 +23,7 @@ describe('PrimaryButton', () => { it('renders primary button with text', () => { render(props) const button = screen.getByText('primary button') - expect(button).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(button).toHaveStyle(`background-color: ${COLORS.blue50}`) expect(button).toHaveStyle( `padding: ${SPACING.spacing8} ${SPACING.spacing16} ${SPACING.spacing8} ${SPACING.spacing16}` ) @@ -51,14 +51,14 @@ describe('PrimaryButton', () => { render(props) const button = screen.getByText('primary button') fireEvent.mouseOver(button) - expect(button).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(button).toHaveStyle(`background-color: ${COLORS.blue50}`) }) it('renders primary button with text and different background color', () => { props.backgroundColor = COLORS.red50 render(props) const button = screen.getByText('primary button') - expect(button).toHaveStyle(`background-color: ${COLORS.blue60}`) + expect(button).toHaveStyle(`background-color: ${COLORS.red50}`) expect(button).toHaveStyle(`color: ${COLORS.white}`) }) }) diff --git a/components/src/atoms/buttons/__tests__/SecondaryButton.test.tsx b/components/src/atoms/buttons/__tests__/SecondaryButton.test.tsx index c2f1df7f388..c1c016e58f4 100644 --- a/components/src/atoms/buttons/__tests__/SecondaryButton.test.tsx +++ b/components/src/atoms/buttons/__tests__/SecondaryButton.test.tsx @@ -35,7 +35,7 @@ describe('SecondaryButton', () => { expect(button).toHaveStyle( `text-transform: ${TYPOGRAPHY.textTransformNone}` ) - expect(button).toHaveStyle(`color: ${COLORS.blue55}`) + expect(button).toHaveStyle(`color: ${COLORS.blue50}`) }) it('renders secondary button with text and disabled', () => { @@ -49,6 +49,6 @@ describe('SecondaryButton', () => { props.color = COLORS.red50 render(props) const button = screen.getByText('secondary button') - expect(button).toHaveStyle(`color: ${COLORS.blue55}`) + expect(button).toHaveStyle(`color: ${COLORS.red50}`) }) }) diff --git a/components/src/buttons/Button.tsx b/components/src/buttons/Button.tsx index 28937e2da13..ee8e1f22881 100644 --- a/components/src/buttons/Button.tsx +++ b/components/src/buttons/Button.tsx @@ -5,12 +5,9 @@ import omit from 'lodash/omit' import { Icon } from '../icons' import styles from './buttons.module.css' -import { - BUTTON_TYPE_SUBMIT, - BUTTON_TYPE_RESET, - BUTTON_TYPE_BUTTON, -} from '../primitives' +import { BUTTON_TYPE_BUTTON } from '../primitives' +import type { BUTTON_TYPE_SUBMIT, BUTTON_TYPE_RESET } from '../primitives' import type { IconName } from '../icons' import type { UseHoverTooltipTargetProps } from '../tooltips' diff --git a/components/src/forms/DeprecatedCheckboxField.tsx b/components/src/forms/DeprecatedCheckboxField.tsx index a520d4da7d1..68452eb90e4 100644 --- a/components/src/forms/DeprecatedCheckboxField.tsx +++ b/components/src/forms/DeprecatedCheckboxField.tsx @@ -62,7 +62,7 @@ export function DeprecatedCheckboxField( props.isIndeterminate ? 'minus-box' : props.value - ? 'checkbox-marked' + ? 'ot-checkbox' : 'checkbox-blank-outline' } width="100%" diff --git a/components/src/forms/DropdownField.tsx b/components/src/forms/DropdownField.tsx index cfd4b034304..234f22e9578 100644 --- a/components/src/forms/DropdownField.tsx +++ b/components/src/forms/DropdownField.tsx @@ -95,7 +95,7 @@ export function DropdownField(props: DropdownFieldProps): JSX.Element {
    - +
    diff --git a/components/src/forms/Select.tsx b/components/src/forms/Select.tsx index 6eafc8cc558..d1341f106e2 100644 --- a/components/src/forms/Select.tsx +++ b/components/src/forms/Select.tsx @@ -1,20 +1,18 @@ import * as React from 'react' -import ReactSelect, { - components as reactSelectComponents, - DropdownIndicatorProps, -} from 'react-select' +import ReactSelect, { components as reactSelectComponents } from 'react-select' + import cx from 'classnames' import { Icon } from '../icons' -import { POSITION_ABSOLUTE, POSITION_FIXED } from '../styles' import styles from './Select.module.css' - import type { + DropdownIndicatorProps, Props as ReactSelectProps, MenuProps, StylesConfig, CSSObjectWithLabel, } from 'react-select' +import type { POSITION_ABSOLUTE, POSITION_FIXED } from '../styles' export { reactSelectComponents } @@ -118,7 +116,10 @@ function DropdownIndicator( [styles.flipped]: props.selectProps.menuIsOpen, })} > - +
    ) diff --git a/components/src/hardware-sim/BaseDeck/BaseDeck.tsx b/components/src/hardware-sim/BaseDeck/BaseDeck.tsx index db72c865cd3..3b3b61dd9fa 100644 --- a/components/src/hardware-sim/BaseDeck/BaseDeck.tsx +++ b/components/src/hardware-sim/BaseDeck/BaseDeck.tsx @@ -27,12 +27,12 @@ import { DeckFromLayers } from '../Deck/DeckFromLayers' import { SlotLabels } from '../Deck' import { COLORS } from '../../helix-design-system' -import { Svg } from '../../primitives' import { SingleSlotFixture } from './SingleSlotFixture' import { StagingAreaFixture } from './StagingAreaFixture' import { WasteChuteFixture } from './WasteChuteFixture' import { WasteChuteStagingAreaFixture } from './WasteChuteStagingAreaFixture' +import type { Svg } from '../../primitives' import type { CutoutFixtureId, DeckConfiguration, diff --git a/components/src/hardware-sim/BaseDeck/WasteChuteFixture.tsx b/components/src/hardware-sim/BaseDeck/WasteChuteFixture.tsx index 6db439eba57..44d2ab9c49c 100644 --- a/components/src/hardware-sim/BaseDeck/WasteChuteFixture.tsx +++ b/components/src/hardware-sim/BaseDeck/WasteChuteFixture.tsx @@ -1,7 +1,5 @@ import * as React from 'react' -import { WASTE_CHUTE_CUTOUT } from '@opentrons/shared-data' - import { Icon } from '../../icons' import { Flex, Text } from '../../primitives' import { @@ -14,8 +12,11 @@ import { SPACING, TYPOGRAPHY } from '../../ui-style-constants' import { COLORS } from '../../helix-design-system' import { RobotCoordsForeignObject } from '../Deck/RobotCoordsForeignObject' import { SlotBase } from './SlotBase' - -import type { DeckDefinition, ModuleType } from '@opentrons/shared-data' +import type { + WASTE_CHUTE_CUTOUT, + DeckDefinition, + ModuleType, +} from '@opentrons/shared-data' interface WasteChuteFixtureProps extends React.SVGProps { cutoutId: typeof WASTE_CHUTE_CUTOUT diff --git a/components/src/hardware-sim/Deck/MoveLabwareOnDeck.tsx b/components/src/hardware-sim/Deck/MoveLabwareOnDeck.tsx index 91defab6667..c727ac5ad35 100644 --- a/components/src/hardware-sim/Deck/MoveLabwareOnDeck.tsx +++ b/components/src/hardware-sim/Deck/MoveLabwareOnDeck.tsx @@ -3,12 +3,9 @@ import styled from 'styled-components' import flatMap from 'lodash/flatMap' import { animated, useSpring, easings } from '@react-spring/web' import { - LabwareWell, - LoadedModule, getDeckDefFromRobotType, getModuleDef2, getPositionFromSlotId, - LoadedLabware, } from '@opentrons/shared-data' import { COLORS } from '../../helix-design-system' @@ -16,6 +13,9 @@ import { IDENTITY_AFFINE_TRANSFORM, multiplyMatrices } from '../utils' import { BaseDeck } from '../BaseDeck' import type { + LoadedLabware, + LabwareWell, + LoadedModule, Coordinates, LabwareDefinition2, LabwareLocation, diff --git a/components/src/hardware-sim/Deck/RobotWorkSpace.tsx b/components/src/hardware-sim/Deck/RobotWorkSpace.tsx index 34c780f569f..bf999139659 100644 --- a/components/src/hardware-sim/Deck/RobotWorkSpace.tsx +++ b/components/src/hardware-sim/Deck/RobotWorkSpace.tsx @@ -1,8 +1,9 @@ import * as React from 'react' import { OT2_ROBOT_TYPE } from '@opentrons/shared-data' -import { StyleProps, Svg } from '../../primitives' +import { Svg } from '../../primitives' import { DeckFromLayers } from './DeckFromLayers' +import type { StyleProps } from '../../primitives' import type { DeckDefinition, DeckSlot } from '@opentrons/shared-data' export interface RobotWorkSpaceRenderProps { diff --git a/components/src/hardware-sim/DeckSlotLocation/index.tsx b/components/src/hardware-sim/DeckSlotLocation/index.tsx index fbe8431ea54..cf02aea6a8a 100644 --- a/components/src/hardware-sim/DeckSlotLocation/index.tsx +++ b/components/src/hardware-sim/DeckSlotLocation/index.tsx @@ -20,6 +20,8 @@ interface LegacyDeckSlotLocationProps extends React.SVGProps { slotClipColor?: React.SVGProps['stroke'] } +type AddressableAreaFromDeckDef = typeof ot2DeckDefV5.locations.addressableAreas[number] + // dimensions of the OT-2 fixed trash, not in deck definition export const OT2_FIXED_TRASH_X_DIMENSION = 172.86 export const OT2_FIXED_TRASH_Y_DIMENSION = 165.86 @@ -41,7 +43,7 @@ export function LegacyDeckSlotLocation( if (robotType !== OT2_ROBOT_TYPE) return null const slotDef = ot2DeckDefV5.locations.addressableAreas.find( - s => s.id === slotName + (s: AddressableAreaFromDeckDef) => s.id === slotName ) if (slotDef == null) { console.warn( diff --git a/components/src/hardware-sim/Labware/LabwareRender.tsx b/components/src/hardware-sim/Labware/LabwareRender.tsx index b3133fe1813..c3049464851 100644 --- a/components/src/hardware-sim/Labware/LabwareRender.tsx +++ b/components/src/hardware-sim/Labware/LabwareRender.tsx @@ -6,11 +6,9 @@ import { StrokedWells, StaticLabware, } from './labwareInternals' -import { - LabwareAdapter, - LabwareAdapterLoadName, - labwareAdapterLoadNames, -} from './LabwareAdapter' +import { LabwareAdapter, labwareAdapterLoadNames } from './LabwareAdapter' + +import type { CSSProperties } from 'styled-components' import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { HighlightedWellLabels, @@ -19,7 +17,8 @@ import type { WellStroke, WellGroup, } from './labwareInternals/types' -import type { CSSProperties } from 'styled-components' +import type { LabwareAdapterLoadName } from './LabwareAdapter' + export const WELL_LABEL_OPTIONS = { SHOW_LABEL_INSIDE: 'SHOW_LABEL_INSIDE', SHOW_LABEL_OUTSIDE: 'SHOW_LABEL_OUTSIDE', @@ -58,10 +57,14 @@ export interface LabwareRenderProps { onMouseLeaveWell?: (e: WellMouseEvent) => unknown gRef?: React.RefObject onLabwareClick?: () => void + /** Hide labware outline */ + hideOutline?: boolean + /** Provides well data attribute */ + isInteractive?: boolean } export const LabwareRender = (props: LabwareRenderProps): JSX.Element => { - const { gRef, definition } = props + const { gRef, definition, hideOutline, isInteractive } = props const cornerOffsetFromSlot = definition.cornerOffsetFromSlot const labwareLoadName = definition.parameters.loadName @@ -95,12 +98,15 @@ export const LabwareRender = (props: LabwareRenderProps): JSX.Element => { transform={`translate(${cornerOffsetFromSlot.x}, ${cornerOffsetFromSlot.y})`} ref={gRef} > + {/* TODO(bh, 2024-05-13): refactor rendering of wells - multiple layers of styled wells, DOM ordering determines which are visible */} {props.wellStroke != null ? ( unknown /** Optional callback to be executed when mouse leaves a well element */ onMouseLeaveWell?: (e: WellMouseEvent) => unknown + /** Provides well data attribute */ + isInteractive?: boolean } const TipDecoration = React.memo(function TipDecoration(props: { @@ -49,34 +53,44 @@ const LabwareDetailGroup = styled.g` ` export function StaticLabwareComponent(props: StaticLabwareProps): JSX.Element { - const { isTiprack } = props.definition.parameters + const { + definition, + hideOutline = false, + highlight, + isInteractive, + onLabwareClick, + onMouseEnterWell, + onMouseLeaveWell, + } = props + + const { isTiprack } = definition.parameters return ( - - - - + + {!hideOutline ? ( + + + + ) : null} {flatMap( - props.definition.ordering, + definition.ordering, (row: string[], i: number, c: string[][]) => { return row.map(wellName => { return ( {isTiprack ? ( - + ) : null} ) diff --git a/components/src/hardware-sim/Labware/labwareInternals/Well.tsx b/components/src/hardware-sim/Labware/labwareInternals/Well.tsx index 53d3dcdf688..5a7d8760646 100644 --- a/components/src/hardware-sim/Labware/labwareInternals/Well.tsx +++ b/components/src/hardware-sim/Labware/labwareInternals/Well.tsx @@ -16,6 +16,8 @@ export interface WellProps extends StyleProps { /** Optional callback, called with WellMouseEvent args onMouseOver */ onMouseEnterWell?: (e: WellMouseEvent) => unknown onMouseLeaveWell?: (e: WellMouseEvent) => unknown + /** Provides well data attribute */ + isInteractive?: boolean } export function WellComponent(props: WellProps): JSX.Element { @@ -27,10 +29,10 @@ export function WellComponent(props: WellProps): JSX.Element { fill = COLORS.white, onMouseEnterWell, onMouseLeaveWell, + isInteractive = onMouseEnterWell != null || onMouseLeaveWell != null, } = props const { x, y } = well - const isInteractive = onMouseEnterWell != null || onMouseLeaveWell != null const pointerEvents: React.CSSProperties['pointerEvents'] = isInteractive ? 'auto' : 'none' diff --git a/components/src/hardware-sim/Labware/labwareInternals/WellLabels.tsx b/components/src/hardware-sim/Labware/labwareInternals/WellLabels.tsx index f3f044f04bd..bc6d0764768 100644 --- a/components/src/hardware-sim/Labware/labwareInternals/WellLabels.tsx +++ b/components/src/hardware-sim/Labware/labwareInternals/WellLabels.tsx @@ -1,9 +1,10 @@ import * as React from 'react' import { C_BLACK, C_BLUE } from '../../../styles/colors' import { RobotCoordsText } from '../../Deck' -import { WellLabelOption, WELL_LABEL_OPTIONS } from '../LabwareRender' +import { WELL_LABEL_OPTIONS } from '../LabwareRender' import { COLORS } from '../../../helix-design-system' import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { WellLabelOption } from '../LabwareRender' import type { HighlightedWellLabels } from './types' // magic layout numbers to make the letters close to the edges of the labware diff --git a/components/src/hardware-sim/Labware/labwareInternals/__tests__/StrokedWells.test.tsx b/components/src/hardware-sim/Labware/labwareInternals/__tests__/StrokedWells.test.tsx index e4b8c99581c..501ab817b2b 100644 --- a/components/src/hardware-sim/Labware/labwareInternals/__tests__/StrokedWells.test.tsx +++ b/components/src/hardware-sim/Labware/labwareInternals/__tests__/StrokedWells.test.tsx @@ -2,9 +2,10 @@ import * as React from 'react' import { describe, it, vi } from 'vitest' import { render, screen } from '@testing-library/react' import '@testing-library/jest-dom/vitest' -import { LabwareDefinition2, fixture12Trough } from '@opentrons/shared-data' +import { fixture12Trough } from '@opentrons/shared-data' import { StrokedWells } from '../StrokedWells' import { WellComponent as Well } from '../Well' +import type { LabwareDefinition2 } from '@opentrons/shared-data' vi.mock('../Well') diff --git a/components/src/hardware-sim/Labware/labwareInternals/__tests__/WellLabels.test.tsx b/components/src/hardware-sim/Labware/labwareInternals/__tests__/WellLabels.test.tsx index 61f9c77abaf..1fe1b63f9ce 100644 --- a/components/src/hardware-sim/Labware/labwareInternals/__tests__/WellLabels.test.tsx +++ b/components/src/hardware-sim/Labware/labwareInternals/__tests__/WellLabels.test.tsx @@ -2,12 +2,10 @@ import * as React from 'react' import { describe, it, expect } from 'vitest' import { render, screen } from '@testing-library/react' import '@testing-library/jest-dom/vitest' -import { - LabwareDefinition2, - fixture12Trough as _fixture12Trough, -} from '@opentrons/shared-data' +import { fixture12Trough as _fixture12Trough } from '@opentrons/shared-data' import { WellLabels } from '../WellLabels' import { WELL_LABEL_OPTIONS } from '../../LabwareRender' +import type { LabwareDefinition2 } from '@opentrons/shared-data' const troughFixture12 = _fixture12Trough as LabwareDefinition2 diff --git a/components/src/hardware-sim/Labware/labwareInternals/types.ts b/components/src/hardware-sim/Labware/labwareInternals/types.ts index 039c8a6104f..337a0932a03 100644 --- a/components/src/hardware-sim/Labware/labwareInternals/types.ts +++ b/components/src/hardware-sim/Labware/labwareInternals/types.ts @@ -1,4 +1,4 @@ -import * as React from 'react' +import type * as React from 'react' export interface WellMouseEvent { wellName: string diff --git a/components/src/hardware-sim/Module/Module.stories.tsx b/components/src/hardware-sim/Module/Module.stories.tsx index 98f8502e545..67b26a226d7 100644 --- a/components/src/hardware-sim/Module/Module.stories.tsx +++ b/components/src/hardware-sim/Module/Module.stories.tsx @@ -2,10 +2,8 @@ import * as React from 'react' import { fixture96Plate, getModuleDef2, - LabwareDefinition2, MAGNETIC_MODULE_V1, MAGNETIC_MODULE_V2, - ModuleModel, TEMPERATURE_MODULE_V1, TEMPERATURE_MODULE_V2, THERMOCYCLER_MODULE_V1, @@ -18,6 +16,7 @@ import { RobotCoordinateSpace } from '../RobotCoordinateSpace' import { Module as ModuleComponent } from './' import type { Story, Meta } from '@storybook/react' +import type { LabwareDefinition2, ModuleModel } from '@opentrons/shared-data' const moduleModels: ModuleModel[] = [ TEMPERATURE_MODULE_V2, diff --git a/components/src/hardware-sim/Module/Thermocycler/index.tsx b/components/src/hardware-sim/Module/Thermocycler/index.tsx index 9cec276b83b..e858e3ee92f 100644 --- a/components/src/hardware-sim/Module/Thermocycler/index.tsx +++ b/components/src/hardware-sim/Module/Thermocycler/index.tsx @@ -1,10 +1,6 @@ import * as React from 'react' -import { - THERMOCYCLER_MODULE_V1, - ThermocyclerModuleModel, - getModuleDef2, -} from '@opentrons/shared-data' +import { THERMOCYCLER_MODULE_V1, getModuleDef2 } from '@opentrons/shared-data' import { C_MED_LIGHT_GRAY } from '../../../styles' import { COLORS, BORDERS } from '../../../helix-design-system' @@ -12,6 +8,7 @@ import { COLORS, BORDERS } from '../../../helix-design-system' import { RobotCoordsForeignDiv } from '../../Deck' import { ThermocyclerGEN1 } from './ThermocyclerGEN1' import { ThermocyclerGEN2 } from './ThermocyclerGEN2' +import type { ThermocyclerModuleModel } from '@opentrons/shared-data' const ROOM_TEMPERATURE_C = 23 // value taken from TC firmware export interface ThermocyclerVizProps { diff --git a/components/src/hardware-sim/Module/index.tsx b/components/src/hardware-sim/Module/index.tsx index e2d865329b2..ae1b6902337 100644 --- a/components/src/hardware-sim/Module/index.tsx +++ b/components/src/hardware-sim/Module/index.tsx @@ -4,11 +4,9 @@ import { HEATERSHAKER_MODULE_TYPE, MAGNETIC_BLOCK_TYPE, MAGNETIC_MODULE_TYPE, - ModuleDefinition, OT2_STANDARD_DECKID, TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, - ThermocyclerModuleModel, } from '@opentrons/shared-data' import { C_DARK_GRAY, @@ -28,6 +26,11 @@ import { Temperature } from './Temperature' import { MagneticBlock } from './MagneticBlock' import { MagneticModule } from './MagneticModule' +import type { + ModuleDefinition, + ThermocyclerModuleModel, +} from '@opentrons/shared-data' + export * from './Thermocycler' const LABWARE_OFFSET_DISPLAY_THRESHOLD = 2 diff --git a/components/src/hardware-sim/Pipette/PipetteRender.tsx b/components/src/hardware-sim/Pipette/PipetteRender.tsx index 567377e2a32..da850a308aa 100644 --- a/components/src/hardware-sim/Pipette/PipetteRender.tsx +++ b/components/src/hardware-sim/Pipette/PipetteRender.tsx @@ -1,9 +1,5 @@ import * as React from 'react' -import { - getPipetteNameSpecs, - LabwareDefinition2, - PipetteName, -} from '@opentrons/shared-data' +import { getPipetteNameSpecs } from '@opentrons/shared-data' import { C_MED_DARK_GRAY, C_MED_GRAY } from '../../styles' import { BORDERS } from '../../helix-design-system' import { RobotCoordsForeignDiv } from '../Deck/RobotCoordsForeignDiv' @@ -18,6 +14,7 @@ import { } from './constants' import { EmanatingNozzle } from './EmanatingNozzle' import { EightEmanatingNozzles } from './EightEmanatingNozzles' +import type { LabwareDefinition2, PipetteName } from '@opentrons/shared-data' interface PipetteRenderProps { labwareDef: LabwareDefinition2 diff --git a/components/src/hardware-sim/ProtocolDeck/LabwareInfo.tsx b/components/src/hardware-sim/ProtocolDeck/LabwareInfo.tsx index 2aacdab6737..d35e4cec27d 100644 --- a/components/src/hardware-sim/ProtocolDeck/LabwareInfo.tsx +++ b/components/src/hardware-sim/ProtocolDeck/LabwareInfo.tsx @@ -1,7 +1,6 @@ import * as React from 'react' import { css } from 'styled-components' -import { LabwareDefinition2 } from '@opentrons/shared-data' import { RobotCoordsForeignDiv } from '../Deck' import { DISPLAY_FLEX, @@ -14,6 +13,7 @@ import { import { Box, Flex, Text } from '../../primitives' import { TYPOGRAPHY, SPACING } from '../../ui-style-constants' import { COLORS } from '../../helix-design-system' +import type { LabwareDefinition2 } from '@opentrons/shared-data' const labwareDisplayNameStyle = css` ${TYPOGRAPHY.labelSemiBold} diff --git a/components/src/hardware-sim/ProtocolDeck/utils/__tests__/getLabwareInforByLiquidId.test.ts b/components/src/hardware-sim/ProtocolDeck/utils/__tests__/getLabwareInforByLiquidId.test.ts index 2f43a9a2dc4..23ae614167c 100644 --- a/components/src/hardware-sim/ProtocolDeck/utils/__tests__/getLabwareInforByLiquidId.test.ts +++ b/components/src/hardware-sim/ProtocolDeck/utils/__tests__/getLabwareInforByLiquidId.test.ts @@ -1,6 +1,6 @@ import { describe, it, expect } from 'vitest' -import { RunTimeCommand } from '@opentrons/shared-data' import { getLabwareInfoByLiquidId } from '../getLabwareInfoByLiquidId' +import type { RunTimeCommand } from '@opentrons/shared-data' const mockLoadLiquidRunTimeCommands = [ { diff --git a/components/src/hardware-sim/utils.ts b/components/src/hardware-sim/utils.ts index aeb03098c94..dcdba4ba66c 100644 --- a/components/src/hardware-sim/utils.ts +++ b/components/src/hardware-sim/utils.ts @@ -1,4 +1,4 @@ -import { AffineTransformMatrix } from '@opentrons/shared-data' +import type { AffineTransformMatrix } from '@opentrons/shared-data' export const IDENTITY_AFFINE_TRANSFORM: AffineTransformMatrix = [ [1, 0, 0, 0], diff --git a/components/src/hooks/useDrag.ts b/components/src/hooks/useDrag.ts index e7587555962..8a89de19c09 100644 --- a/components/src/hooks/useDrag.ts +++ b/components/src/hooks/useDrag.ts @@ -1,11 +1,6 @@ -import { - useState, - useEffect, - useRef, - CSSProperties, - MutableRefObject, -} from 'react' +import { useState, useEffect, useRef } from 'react' import interact from 'interactjs' +import type { CSSProperties, MutableRefObject } from 'react' export interface ElementPosition { width: number diff --git a/components/src/hooks/useLongPress.ts b/components/src/hooks/useLongPress.ts index 4b29a7c4b32..2556720032f 100644 --- a/components/src/hooks/useLongPress.ts +++ b/components/src/hooks/useLongPress.ts @@ -1,12 +1,7 @@ -import { - useState, - useEffect, - useRef, - CSSProperties, - MutableRefObject, -} from 'react' +import { useState, useEffect, useRef } from 'react' import interact from 'interactjs' import type PointerEvent from 'interactjs' +import type { CSSProperties, MutableRefObject } from 'react' const HOLD_DURATION_MS = 1000 @@ -44,10 +39,10 @@ export const useLongPress = (): UseLongPressResult => { .pointerEvents({ holdDuration: HOLD_DURATION_MS, }) - .on('hold', (event: PointerEvent) => { + .on('hold', (_event: PointerEvent) => { setIsLongPressed(isLongPressed => !isLongPressed) }) - .on('tap', (event: PointerEvent) => { + .on('tap', (_event: PointerEvent) => { setIsTapped(isTapped => !isTapped) }) } diff --git a/components/src/hooks/useSelectDeckLocation/index.tsx b/components/src/hooks/useSelectDeckLocation/index.tsx index c7ccf53e6bf..4716e535fc6 100644 --- a/components/src/hooks/useSelectDeckLocation/index.tsx +++ b/components/src/hooks/useSelectDeckLocation/index.tsx @@ -2,7 +2,6 @@ import * as React from 'react' import isEqual from 'lodash/isEqual' import { useTranslation } from 'react-i18next' import { - CutoutConfig, FLEX_CUTOUT_BY_SLOT_ID, FLEX_SINGLE_SLOT_BY_CUTOUT_ID, FLEX_ROBOT_TYPE, @@ -11,9 +10,6 @@ import { getFixtureDisplayName, isAddressableAreaStandardSlot, OT2_ROBOT_TYPE, - AddressableArea, - CoordinateTuple, - CutoutFixtureId, } from '@opentrons/shared-data' import { DeckFromLayers, @@ -32,6 +28,10 @@ import { SPACING, TYPOGRAPHY } from '../../ui-style-constants' import { COLORS } from '../../helix-design-system' import type { + CutoutConfig, + AddressableArea, + CoordinateTuple, + CutoutFixtureId, DeckDefinition, ModuleLocation, RobotType, diff --git a/components/src/hooks/useSwipe.ts b/components/src/hooks/useSwipe.ts index 646ffe913d7..84bb3469330 100644 --- a/components/src/hooks/useSwipe.ts +++ b/components/src/hooks/useSwipe.ts @@ -1,11 +1,6 @@ -import { - useState, - useEffect, - useRef, - MutableRefObject, - CSSProperties, -} from 'react' +import { useState, useEffect, useRef } from 'react' import interact from 'interactjs' +import type { MutableRefObject, CSSProperties } from 'react' interface UseSwipeResult { ref: MutableRefObject diff --git a/components/src/icons/IconList.stories.tsx b/components/src/icons/IconList.stories.tsx index ec081a3f2ca..6cc5c24ed23 100644 --- a/components/src/icons/IconList.stories.tsx +++ b/components/src/icons/IconList.stories.tsx @@ -12,9 +12,10 @@ import { BORDERS, } from '@opentrons/components' import { ICON_DATA_BY_NAME } from './icon-data' -import { Icon as IconComponent, IconName } from './Icon' +import { Icon as IconComponent } from './Icon' import type { Story, Meta } from '@storybook/react' +import type { IconName } from './Icon' export default { title: 'Library/Atoms/IconList', diff --git a/components/src/icons/ModuleIcon.tsx b/components/src/icons/ModuleIcon.tsx index 5c240c4eee9..4d6bea3c734 100644 --- a/components/src/icons/ModuleIcon.tsx +++ b/components/src/icons/ModuleIcon.tsx @@ -1,5 +1,5 @@ import * as React from 'react' -import { Icon, IconName } from './Icon' +import { Icon } from './Icon' import { HEATERSHAKER_MODULE_TYPE, TEMPERATURE_MODULE_TYPE, @@ -10,6 +10,7 @@ import { import type { ModuleType } from '@opentrons/shared-data' import type { StyleProps } from '../primitives/types' +import type { IconName } from './Icon' export const MODULE_ICON_NAME_BY_TYPE: { [type in ModuleType]: IconName } = { [MAGNETIC_BLOCK_TYPE]: 'ot-magnet-v2', diff --git a/components/src/icons/icon-data.ts b/components/src/icons/icon-data.ts index 23bc9ed6365..b7f1f3dd253 100644 --- a/components/src/icons/icon-data.ts +++ b/components/src/icons/icon-data.ts @@ -80,7 +80,7 @@ export const ICON_DATA_BY_NAME = { 'checkbox-blank-outline': { path: 'M19 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2m0 2v14H5V5h14z', - viewBox: '0 0 24 24', + viewBox: '3 3 18 18', }, 'checkbox-marked': { path: @@ -291,6 +291,10 @@ export const ICON_DATA_BY_NAME = { 'M2.0672 4.46744C1.9125 4.28307 2.04206 4 2.28116 4L9.71887 4.00001C9.95795 4.00001 10.0875 4.28307 9.93281 4.46744L6.21412 8.89982C6.10205 9.03339 5.89826 9.0334 5.78619 8.89983L2.0672 4.46744Z', viewBox: '0 0 12 12', }, + 'menu-down-pd': { + path: 'M7,10L12,15L17,10H7Z', + viewBox: '0 0 24 24', + }, minus: { path: 'M19,13H5V11H19V13Z', viewBox: '0 0 24 24', @@ -358,7 +362,7 @@ export const ICON_DATA_BY_NAME = { 'ot-checkbox': { path: 'M 10.3839,4.5 5.5,9.38388 2.61612,6.5 3.5,5.61612 l 2,2 4,-4 z M 1.5,0 C 0.671573,0 0,0.671573 0,1.5 v 10 C 0,12.3284 0.671573,13 1.5,13 h 10 C 12.3284,13 13,12.3284 13,11.5 V 1.5 C 13,0.671573 12.3284,0 11.5,0 Z', - viewBox: '-1 -1 16 16', + viewBox: '0 0 13 13', }, 'ot-click-and-drag': { path: @@ -598,6 +602,11 @@ export const ICON_DATA_BY_NAME = { 'M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10ZM10 12.6923C10.6212 12.6923 11.125 13.209 11.125 13.8461C11.125 14.4833 10.6212 15 10 15C9.37879 15 8.875 14.4833 8.875 13.8461C8.875 13.209 9.37879 12.6923 10 12.6923ZM7.87898 5.89468C7.34803 6.43507 7.0365 7.15355 7.00316 7.91734L7.00357 7.91741L7.00016 7.99833C6.99832 8.04296 7.0125 8.08204 7.04263 8.11458C7.07248 8.14713 7.10998 8.16393 7.15381 8.16483L8.76193 8.19294C8.84503 8.19433 8.91449 8.12971 8.92063 8.04532L8.92608 7.97112C8.94522 7.70905 9.056 7.46447 9.23848 7.27867C9.44128 7.07227 9.71348 6.95761 10.0003 6.95761C10.2872 6.95761 10.5591 7.07219 10.7621 7.27867C10.9649 7.48515 11.0775 7.76227 11.0775 8.05433C11.0775 8.2529 11.0277 8.4473 10.9274 8.61797C10.827 8.78891 10.6826 8.93028 10.5102 9.02419C10.0639 9.2676 9.69055 9.6194 9.43022 10.0623C9.17009 10.5043 9.03901 11.0044 9.03901 11.5197V11.7636C9.03901 11.8515 9.10935 11.9231 9.19545 11.9231H10.8049C10.891 11.9231 10.9614 11.8515 10.9614 11.7636V11.5197C10.9614 11.3609 10.9952 11.2021 11.076 11.0649C11.1566 10.9274 11.275 10.8209 11.4129 10.7456C11.8917 10.4845 12.2939 10.095 12.5729 9.62072C12.8522 9.1462 13 8.6077 13 8.05433C13 7.24162 12.6856 6.469 12.1213 5.89468C11.5569 5.32017 10.7983 5 10.0001 5C9.20191 5 8.44327 5.32015 7.87898 5.89468Z', viewBox: '0 0 20 20', }, + recovery: { + path: + 'M24.4 49.6H34.2V38.6H44.2V29.8H34.2V18.8H24.4V29.8H13.4V38.6H24.4V49.6ZM28.8 72C20.46 69.9 13.575 65.115 8.145 57.645C2.715 50.175 0 41.88 0 32.76V10.8L28.8 0L57.6 10.8V32.76C57.6 41.88 54.885 50.175 49.455 57.645C44.025 65.115 37.14 69.9 28.8 72Z', + viewBox: '0 0 58 72', + }, 'radiobox-blank': { path: 'M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z', diff --git a/components/src/images/labware/measurement-guide/index.ts b/components/src/images/labware/measurement-guide/index.ts index 31d889ec356..b866627db1d 100644 --- a/components/src/images/labware/measurement-guide/index.ts +++ b/components/src/images/labware/measurement-guide/index.ts @@ -11,95 +11,141 @@ export interface DiagramProps { type Diagrams = Record +const FOOTPRINT_IMAGE_RELATIVE_PATH = './images/dimensions/footprint@3x.png' +const DIMENSIONS_HEIGHT_PLATE_IMAGE_RELATIVE_PATH = + './images/dimensions/height-plate-and-reservoir@3x.png' +const DIMENSIONS_HEIGHT_TIP_RACK_IMAGE_RELATIVE_PATH = + './images/dimensions/height-tip-rack@3x.png' + +const DIMENSIONS_HEIGHT_TUBE_RACK_IMAGE_RELATIVE_PATH = + './images/dimensions/height-tube-rack@3x.png' + +const DIMENSIONS_HEIGHT_TUBE_RACK_IMAGE_IRREGULAR_RELATIVE_PATH = + './images/dimensions/height-tube-rack-irregular@3x.png' + +const HEIGHT_ALUM_BLOCK_TUBES_IMAGE_RELATIVE_PATH = + './images/dimensions/height-alum-block-tubes@3x.png' + +const HEIGHT_ALUM_BLOCK_PLATE_IMAGE_RELATIVE_PATH = + './images/dimensions/height-alum-block-plate@3x.png' + +const OFFSET_RESEVOIR_IMAGE_RELATIVE_PATH = + './images/offset/offset-reservoir@3x.png' + +const SPACING_RESEVOIR_IMAGE_RELATIVE_PATH = + './images/spacing/spacing-reservoir@3x.png' + +const SPACING_RESEVOIR_MULTI_ROW_IMAGE_RELATIVE_PATH = + './images/spacing/spacing-reservoir-multi-row@3x.png' + +const OFFSET_WELL_CIRCULAR_IMAGE_RELATIVE_PATH = + './images/offset/offset-well-circular@3x.png' + +const SPACING_WELL_CIRCULAR_IMAGE_RELATIVE_PATH = + './images/spacing/spacing-well-circular@3x.png' + +const OFFSET_WELL_RECTANGULAR_IMAGE_RELATIVE_PATH = + './images/offset/offset-well-rectangular@3x.png' + +const SPACING_WELL_RECTANGULAR_IMAGE_RELATIVE_PATH = + './images/spacing/spacing-well-rectangular@3x.png' + +const DEPTH_LENGTH_TIP_RACK_IMAGE_RELATIVE_PATH = + './images/depth/length-tip-rack@3x.png' + +const SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH = + './images/shape/shape-circular@3x.png' + +const DEPTH_PLATE_FLAT_IMAGE_RELATIVE_PATH = + './images/depth/depth-plate-flat@3x.png' + +const SHAPE_RECTANGULAR_IMAGE_RELATIVE_PATH = + './images/shape/shape-rectangular@3x.png' + +const DEPTH_PLATE_ROUND_IMAGE_RELATIVE_PATH = + './images/depth/depth-plate-round@3x.png' + +const DEPTH_PLATE_V_SHAPE_IMAGE_RELATIVE_PATH = + './images/depth/depth-plate-v@3x.png' + +const DEPTH_RESEVOIR_AND_TUBES_FLAT_IMAGE_RELATIVE_PATH = + './images/depth/depth-reservoir-and-tubes-flat@3x.png' + +const DEPTH_RESEVOIR_AND_TUBES_ROUND_IMAGE_RELATIVE_PATH = + './images/depth/depth-reservoir-and-tubes-round@3x.png' + +const DEPTH_RESEVOIR_AND_TUBES_V_SHAPE_IMAGE_RELATIVE_PATH = + './images/depth/depth-reservoir-and-tubes-v@3x.png' + const FOOTPRINT_DIAGRAMS: Diagrams = { wellPlate: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, - new URL( - './images/dimensions/height-plate-and-reservoir@3x.png', - import.meta.url - ).href, + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(DIMENSIONS_HEIGHT_PLATE_IMAGE_RELATIVE_PATH, import.meta.url).href, ], tipRack: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, - new URL('./images/dimensions/height-tip-rack@3x.png', import.meta.url).href, + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(DIMENSIONS_HEIGHT_TIP_RACK_IMAGE_RELATIVE_PATH, import.meta.url) + .href, ], tubeRack: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, - new URL('./images/dimensions/height-tube-rack@3x.png', import.meta.url) + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(DIMENSIONS_HEIGHT_TUBE_RACK_IMAGE_RELATIVE_PATH, import.meta.url) .href, ], reservoir: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, - new URL( - './images/dimensions/height-plate-and-reservoir@3x.png', - import.meta.url - ).href, + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(DIMENSIONS_HEIGHT_PLATE_IMAGE_RELATIVE_PATH, import.meta.url).href, ], irregular: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, new URL( - './images/dimensions/height-tube-rack-irregular@3x.png', + DIMENSIONS_HEIGHT_TUBE_RACK_IMAGE_IRREGULAR_RELATIVE_PATH, import.meta.url ).href, ], adapter: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, - new URL( - './images/dimensions/height-plate-and-reservoir@3x.png', - import.meta.url - ).href, + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(DIMENSIONS_HEIGHT_PLATE_IMAGE_RELATIVE_PATH, import.meta.url).href, ], } const ALUM_BLOCK_FOOTPRINTS: Diagrams = { tubeRack: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, - new URL( - './images/dimensions/height-alum-block-tubes@3x.png', - import.meta.url - ).href, + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(HEIGHT_ALUM_BLOCK_TUBES_IMAGE_RELATIVE_PATH, import.meta.url).href, ], wellPlate: [ - new URL('./images/dimensions/footprint@3x.png', import.meta.url).href, - new URL( - './images/dimensions/height-alum-block-plate@3x.png', - import.meta.url - ).href, + new URL(FOOTPRINT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(HEIGHT_ALUM_BLOCK_PLATE_IMAGE_RELATIVE_PATH, import.meta.url).href, ], } const RESERVOIR_SPACING_DIAGRAMS: Diagrams = { singleRow: [ - new URL('./images/offset/offset-reservoir@3x.png', import.meta.url).href, - new URL('./images/spacing/spacing-reservoir@3x.png', import.meta.url).href, + new URL(OFFSET_RESEVOIR_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SPACING_RESEVOIR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], multiRow: [ - new URL('./images/offset/offset-reservoir@3x.png', import.meta.url).href, - new URL( - './images/spacing/spacing-reservoir-multi-row@3x.png', - import.meta.url - ).href, + new URL(OFFSET_RESEVOIR_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SPACING_RESEVOIR_MULTI_ROW_IMAGE_RELATIVE_PATH, import.meta.url) + .href, ], } const SPACING_DIAGRAMS: Diagrams = { circular: [ - new URL('./images/offset/offset-well-circular@3x.png', import.meta.url) - .href, - new URL('./images/spacing/spacing-well-circular@3x.png', import.meta.url) - .href, + new URL(OFFSET_WELL_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SPACING_WELL_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], rectangular: [ - new URL('./images/offset/offset-well-rectangular@3x.png', import.meta.url) - .href, - new URL('./images/spacing/spacing-well-rectangular@3x.png', import.meta.url) - .href, + new URL(OFFSET_WELL_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SPACING_WELL_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], } const TIPRACK_MEASUREMENT_DIAGRAMS: string[] = [ - new URL('./images/depth/length-tip-rack@3x.png', import.meta.url).href, - new URL('./images/shape/shape-circular@3x.png', import.meta.url).href, + new URL(DEPTH_LENGTH_TIP_RACK_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ] type NestedDiagrams = Record> @@ -107,32 +153,32 @@ type NestedDiagrams = Record> const PLATE_MEASUREMENT_DIAGRAMS: NestedDiagrams = { flat: { circular: [ - new URL('./images/depth/depth-plate-flat@3x.png', import.meta.url).href, - new URL('./images/shape/shape-circular@3x.png', import.meta.url).href, + new URL(DEPTH_PLATE_FLAT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], rectangular: [ - new URL('./images/depth/depth-plate-flat@3x.png', import.meta.url).href, - new URL('./images/shape/shape-rectangular@3x.png', import.meta.url).href, + new URL(DEPTH_PLATE_FLAT_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SHAPE_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], }, u: { circular: [ - new URL('./images/depth/depth-plate-round@3x.png', import.meta.url).href, - new URL('./images/shape/shape-circular@3x.png', import.meta.url).href, + new URL(DEPTH_PLATE_ROUND_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], rectangular: [ - new URL('./images/depth/depth-plate-round@3x.png', import.meta.url).href, - new URL('./images/shape/shape-rectangular@3x.png', import.meta.url).href, + new URL(DEPTH_PLATE_ROUND_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SHAPE_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], }, v: { circular: [ - new URL('./images/depth/depth-plate-v@3x.png', import.meta.url).href, - new URL('./images/shape/shape-circular@3x.png', import.meta.url).href, + new URL(DEPTH_PLATE_V_SHAPE_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], rectangular: [ - new URL('./images/depth/depth-plate-v@3x.png', import.meta.url).href, - new URL('./images/shape/shape-rectangular@3x.png', import.meta.url).href, + new URL(DEPTH_PLATE_V_SHAPE_IMAGE_RELATIVE_PATH, import.meta.url).href, + new URL(SHAPE_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], }, } @@ -140,49 +186,49 @@ const MEASUREMENT_DIAGRAMS: NestedDiagrams = { flat: { circular: [ new URL( - './images/depth/depth-reservoir-and-tubes-flat@3x.png', + DEPTH_RESEVOIR_AND_TUBES_FLAT_IMAGE_RELATIVE_PATH, import.meta.url ).href, - new URL('./images/shape/shape-circular@3x.png', import.meta.url).href, + new URL(SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], rectangular: [ new URL( - './images/depth/depth-reservoir-and-tubes-flat@3x.png', + DEPTH_RESEVOIR_AND_TUBES_FLAT_IMAGE_RELATIVE_PATH, import.meta.url ).href, - new URL('./images/shape/shape-rectangular@3x.png', import.meta.url).href, + new URL(SHAPE_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], }, u: { circular: [ new URL( - './images/depth/depth-reservoir-and-tubes-round@3x.png', + DEPTH_RESEVOIR_AND_TUBES_ROUND_IMAGE_RELATIVE_PATH, import.meta.url ).href, - new URL('./images/shape/shape-circular@3x.png', import.meta.url).href, + new URL(SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], rectangular: [ new URL( - './images/depth/depth-reservoir-and-tubes-round@3x.png', + DEPTH_RESEVOIR_AND_TUBES_ROUND_IMAGE_RELATIVE_PATH, import.meta.url ).href, - new URL('./images/shape/shape-rectangular@3x.png', import.meta.url).href, + new URL(SHAPE_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], }, v: { circular: [ new URL( - './images/depth/depth-reservoir-and-tubes-v@3x.png', + DEPTH_RESEVOIR_AND_TUBES_V_SHAPE_IMAGE_RELATIVE_PATH, import.meta.url ).href, - new URL('./images/shape/shape-circular@3x.png', import.meta.url).href, + new URL(SHAPE_CIRCULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], rectangular: [ new URL( - './images/depth/depth-reservoir-and-tubes-v@3x.png', + DEPTH_RESEVOIR_AND_TUBES_V_SHAPE_IMAGE_RELATIVE_PATH, import.meta.url ).href, - new URL('./images/shape/shape-rectangular@3x.png', import.meta.url).href, + new URL(SHAPE_RECTANGULAR_IMAGE_RELATIVE_PATH, import.meta.url).href, ], }, } diff --git a/components/src/instrument/InstrumentDiagram.tsx b/components/src/instrument/InstrumentDiagram.tsx index 1ed6344d308..8617009d601 100644 --- a/components/src/instrument/InstrumentDiagram.tsx +++ b/components/src/instrument/InstrumentDiagram.tsx @@ -1,5 +1,4 @@ import * as React from 'react' -import { FlattenSimpleInterpolation } from 'styled-components' import { Flex } from '../primitives' import { ALIGN_CENTER, JUSTIFY_CENTER } from '../styles' import singleSrc from './single_channel_GEN1_800px.png' @@ -10,6 +9,7 @@ import singleFlexSrc from './single-channel-flex.png' import eightChannelFlexSrc from './eight-channel-flex.png' import ninetySixSrc from './ninety-six-channel-gen1.png' +import type { FlattenSimpleInterpolation } from 'styled-components' import type { PipetteV2Specs } from '@opentrons/shared-data' import type { Mount } from '../robot-types' import type { StyleProps } from '..' diff --git a/components/src/modals/ModalShell.tsx b/components/src/modals/ModalShell.tsx index 4990ef47ce8..98fe207571e 100644 --- a/components/src/modals/ModalShell.tsx +++ b/components/src/modals/ModalShell.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import styled from 'styled-components' import { SPACING } from '../ui-style-constants' import { BORDERS, COLORS } from '../helix-design-system' -import { StyleProps, styleProps } from '../primitives' +import { styleProps } from '../primitives' import { POSITION_FIXED, POSITION_ABSOLUTE, @@ -12,6 +12,8 @@ import { JUSTIFY_CENTER, OVERFLOW_AUTO, } from '../styles' + +import type { StyleProps } from '../primitives' export interface ModalShellProps extends StyleProps { /** Modal content */ children: React.ReactNode diff --git a/components/src/primitives/Btn.tsx b/components/src/primitives/Btn.tsx index 39819cc0569..5ea917a3a29 100644 --- a/components/src/primitives/Btn.tsx +++ b/components/src/primitives/Btn.tsx @@ -1,9 +1,10 @@ -import styled, { StyledComponent, css } from 'styled-components' +import styled, { css } from 'styled-components' import * as Styles from '../styles' import { styleProps, isntStyleProp } from './style-props' import { RESPONSIVENESS } from '../ui-style-constants' +import type { StyledComponent } from 'styled-components' import type { StyleProps } from './types' export const BUTTON_TYPE_SUBMIT: 'submit' = 'submit' diff --git a/components/src/testing/utils/renderWithProviders.tsx b/components/src/testing/utils/renderWithProviders.tsx index fdf4d4dcc38..c948fe54204 100644 --- a/components/src/testing/utils/renderWithProviders.tsx +++ b/components/src/testing/utils/renderWithProviders.tsx @@ -5,11 +5,11 @@ import { QueryClient, QueryClientProvider } from 'react-query' import { I18nextProvider } from 'react-i18next' import { Provider } from 'react-redux' import { vi } from 'vitest' -import { render, RenderResult } from '@testing-library/react' +import { render } from '@testing-library/react' import { createStore } from 'redux' +import type { RenderResult, RenderOptions } from '@testing-library/react' import type { PreloadedState, Store } from 'redux' -import type { RenderOptions } from '@testing-library/react' export interface RenderWithProvidersOptions extends RenderOptions { initialState?: State diff --git a/components/vite.config.ts b/components/vite.config.ts index eabed922094..757aa06d443 100644 --- a/components/vite.config.ts +++ b/components/vite.config.ts @@ -12,6 +12,8 @@ export default defineConfig({ // Relative to the root ssr: 'src/index.ts', outDir: 'lib', + // do not delete the outdir, typescript types might live there and we dont want to delete them + emptyOutDir: false, commonjsOptions: { transformMixedEsModules: true, esmExternals: true, diff --git a/discovery-client/src/store/actions.ts b/discovery-client/src/store/actions.ts index 9094118be56..1c544576873 100644 --- a/discovery-client/src/store/actions.ts +++ b/discovery-client/src/store/actions.ts @@ -1,7 +1,7 @@ import type { HealthPollerResult } from '../types' import type { MdnsBrowserService } from '../mdns-browser' -import * as Types from './types' +import type * as Types from './types' export const SERVICE_FOUND: 'mdns:SERVICE_FOUND' = 'mdns:SERVICE_FOUND' diff --git a/discovery-client/src/store/types.ts b/discovery-client/src/store/types.ts index 2fbbd206453..cc74c390ff2 100644 --- a/discovery-client/src/store/types.ts +++ b/discovery-client/src/store/types.ts @@ -10,13 +10,13 @@ import type { import type { MdnsBrowserService } from '../mdns-browser' -import { +import type { HEALTH_STATUS_UNREACHABLE, HEALTH_STATUS_NOT_OK, HEALTH_STATUS_OK, } from '../constants' -import { +import type { INITIALIZE_STATE, SERVICE_FOUND, HEALTH_POLLED, diff --git a/discovery-client/typings/mdns-js.d.ts b/discovery-client/typings/mdns-js.d.ts index 7f9c55b6ccb..2d230a1b8cf 100644 --- a/discovery-client/typings/mdns-js.d.ts +++ b/discovery-client/typings/mdns-js.d.ts @@ -1,6 +1,6 @@ declare module 'mdns-js' { import EventEmitter from 'events' - import { Socket } from 'dgram' + import type { Socket } from 'dgram' namespace mdns { interface BrowserService { diff --git a/g-code-testing/Pipfile b/g-code-testing/Pipfile index 80f83a4561a..0b39a9dd222 100644 --- a/g-code-testing/Pipfile +++ b/g-code-testing/Pipfile @@ -31,6 +31,7 @@ flake8-docstrings = "~=1.7.0" flake8-noqa = "~=1.4.0" black = "==22.3.0" decoy = "~=2.1.1" +pyusb = "==1.2.1" [requires] python_version = "3.10" diff --git a/g-code-testing/Pipfile.lock b/g-code-testing/Pipfile.lock index ad7aa98a701..fd068bff783 100644 --- a/g-code-testing/Pipfile.lock +++ b/g-code-testing/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "2454d48b1b831db24fb96b42516e1ac204d98ea0ed929307858ee32ac793fb20" + "sha256": "214f2b205b35dd2d385ec40836249499ecebefc1696107a12d48c58b13c6353d" }, "pipfile-spec": 6, "requires": { @@ -23,14 +23,6 @@ ], "version": "==0.2.0" }, - "aiosqlite": { - "hashes": [ - "sha256:95ee77b91c8d2808bd08a59fbebf66270e9090c3d92ffbf260dc0db0b979577d", - "sha256:edba222e03453e094a3ce605db1b970c4b3376264e56f32e2a4959f948d66a96" - ], - "markers": "python_version >= '3.7'", - "version": "==0.19.0" - }, "anyio": { "hashes": [ "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780", @@ -58,11 +50,11 @@ }, "exceptiongroup": { "hashes": [ - "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14", - "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68" + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" ], "markers": "python_version < '3.11'", - "version": "==1.2.0" + "version": "==1.2.1" }, "fastapi": { "hashes": [ @@ -86,11 +78,11 @@ }, "idna": { "hashes": [ - "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca", - "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f" + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" ], "markers": "python_version >= '3.5'", - "version": "==3.6" + "version": "==3.7" }, "jsonschema": { "hashes": [ @@ -102,49 +94,49 @@ }, "numpy": { "hashes": [ - "sha256:02f98011ba4ab17f46f80f7f8f1c291ee7d855fcef0a5a98db80767a468c85cd", - "sha256:0b7e807d6888da0db6e7e75838444d62495e2b588b99e90dd80c3459594e857b", - "sha256:12c70ac274b32bc00c7f61b515126c9205323703abb99cd41836e8125ea0043e", - "sha256:1666f634cb3c80ccbd77ec97bc17337718f56d6658acf5d3b906ca03e90ce87f", - "sha256:18c3319a7d39b2c6a9e3bb75aab2304ab79a811ac0168a671a62e6346c29b03f", - "sha256:211ddd1e94817ed2d175b60b6374120244a4dd2287f4ece45d49228b4d529178", - "sha256:21a9484e75ad018974a2fdaa216524d64ed4212e418e0a551a2d83403b0531d3", - "sha256:39763aee6dfdd4878032361b30b2b12593fb445ddb66bbac802e2113eb8a6ac4", - "sha256:3c67423b3703f8fbd90f5adaa37f85b5794d3366948efe9a5190a5f3a83fc34e", - "sha256:46f47ee566d98849323f01b349d58f2557f02167ee301e5e28809a8c0e27a2d0", - "sha256:51c7f1b344f302067b02e0f5b5d2daa9ed4a721cf49f070280ac202738ea7f00", - "sha256:5f24750ef94d56ce6e33e4019a8a4d68cfdb1ef661a52cdaee628a56d2437419", - "sha256:697df43e2b6310ecc9d95f05d5ef20eacc09c7c4ecc9da3f235d39e71b7da1e4", - "sha256:6d45b3ec2faed4baca41c76617fcdcfa4f684ff7a151ce6fc78ad3b6e85af0a6", - "sha256:77810ef29e0fb1d289d225cabb9ee6cf4d11978a00bb99f7f8ec2132a84e0166", - "sha256:7ca4f24341df071877849eb2034948459ce3a07915c2734f1abb4018d9c49d7b", - "sha256:7f784e13e598e9594750b2ef6729bcd5a47f6cfe4a12cca13def35e06d8163e3", - "sha256:806dd64230dbbfaca8a27faa64e2f414bf1c6622ab78cc4264f7f5f028fee3bf", - "sha256:867e3644e208c8922a3be26fc6bbf112a035f50f0a86497f98f228c50c607bb2", - "sha256:8c66d6fec467e8c0f975818c1796d25c53521124b7cfb760114be0abad53a0a2", - "sha256:8ed07a90f5450d99dad60d3799f9c03c6566709bd53b497eb9ccad9a55867f36", - "sha256:9bc6d1a7f8cedd519c4b7b1156d98e051b726bf160715b769106661d567b3f03", - "sha256:9e1591f6ae98bcfac2a4bbf9221c0b92ab49762228f38287f6eeb5f3f55905ce", - "sha256:9e87562b91f68dd8b1c39149d0323b42e0082db7ddb8e934ab4c292094d575d6", - "sha256:a7081fd19a6d573e1a05e600c82a1c421011db7935ed0d5c483e9dd96b99cf13", - "sha256:a8474703bffc65ca15853d5fd4d06b18138ae90c17c8d12169968e998e448bb5", - "sha256:af36e0aa45e25c9f57bf684b1175e59ea05d9a7d3e8e87b7ae1a1da246f2767e", - "sha256:b1240f767f69d7c4c8a29adde2310b871153df9b26b5cb2b54a561ac85146485", - "sha256:b4d362e17bcb0011738c2d83e0a65ea8ce627057b2fdda37678f4374a382a137", - "sha256:b831295e5472954104ecb46cd98c08b98b49c69fdb7040483aff799a755a7374", - "sha256:b8c275f0ae90069496068c714387b4a0eba5d531aace269559ff2b43655edd58", - "sha256:bdd2b45bf079d9ad90377048e2747a0c82351989a2165821f0c96831b4a2a54b", - "sha256:cc0743f0302b94f397a4a65a660d4cd24267439eb16493fb3caad2e4389bccbb", - "sha256:da4b0c6c699a0ad73c810736303f7fbae483bcb012e38d7eb06a5e3b432c981b", - "sha256:f25e2811a9c932e43943a2615e65fc487a0b6b49218899e62e426e7f0a57eeda", - "sha256:f73497e8c38295aaa4741bdfa4fda1a5aedda5473074369eca10626835445511" + "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", + "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", + "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", + "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", + "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", + "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", + "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", + "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", + "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", + "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", + "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", + "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", + "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", + "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", + "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", + "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", + "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", + "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", + "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", + "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", + "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", + "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", + "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", + "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", + "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", + "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", + "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", + "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", + "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", + "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", + "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", + "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", + "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", + "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", + "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", + "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f" ], "markers": "python_version >= '3.9'", - "version": "==1.26.3" + "version": "==1.26.4" }, "opentrons": { "editable": true, - "markers": "python_version >= '3.7'", + "markers": "python_version >= '3.10'", "path": "./../api" }, "opentrons-hardware": { @@ -153,7 +145,7 @@ }, "opentrons-shared-data": { "editable": true, - "markers": "python_version >= '3.7'", + "markers": "python_version >= '3.10'", "path": "../shared-data/python" }, "paho-mqtt": { @@ -276,11 +268,11 @@ }, "sniffio": { "hashes": [ - "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101", - "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384" + "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", + "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" ], "markers": "python_version >= '3.7'", - "version": "==1.3.0" + "version": "==1.3.1" }, "sqlalchemy": { "hashes": [ @@ -351,11 +343,11 @@ }, "typing-extensions": { "hashes": [ - "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783", - "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd" + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" ], "markers": "python_version >= '3.8'", - "version": "==4.9.0" + "version": "==4.11.0" }, "uvicorn": { "hashes": [ @@ -377,85 +369,85 @@ "develop": { "aiohttp": { "hashes": [ - "sha256:017a21b0df49039c8f46ca0971b3a7fdc1f56741ab1240cb90ca408049766168", - "sha256:039df344b45ae0b34ac885ab5b53940b174530d4dd8a14ed8b0e2155b9dddccb", - "sha256:055ce4f74b82551678291473f66dc9fb9048a50d8324278751926ff0ae7715e5", - "sha256:06a9b2c8837d9a94fae16c6223acc14b4dfdff216ab9b7202e07a9a09541168f", - "sha256:07b837ef0d2f252f96009e9b8435ec1fef68ef8b1461933253d318748ec1acdc", - "sha256:0ed621426d961df79aa3b963ac7af0d40392956ffa9be022024cd16297b30c8c", - "sha256:0fa43c32d1643f518491d9d3a730f85f5bbaedcbd7fbcae27435bb8b7a061b29", - "sha256:1f5a71d25cd8106eab05f8704cd9167b6e5187bcdf8f090a66c6d88b634802b4", - "sha256:1f5cd333fcf7590a18334c90f8c9147c837a6ec8a178e88d90a9b96ea03194cc", - "sha256:27468897f628c627230dba07ec65dc8d0db566923c48f29e084ce382119802bc", - "sha256:298abd678033b8571995650ccee753d9458dfa0377be4dba91e4491da3f2be63", - "sha256:2c895a656dd7e061b2fd6bb77d971cc38f2afc277229ce7dd3552de8313a483e", - "sha256:361a1026c9dd4aba0109e4040e2aecf9884f5cfe1b1b1bd3d09419c205e2e53d", - "sha256:363afe77cfcbe3a36353d8ea133e904b108feea505aa4792dad6585a8192c55a", - "sha256:38a19bc3b686ad55804ae931012f78f7a534cce165d089a2059f658f6c91fa60", - "sha256:38f307b41e0bea3294a9a2a87833191e4bcf89bb0365e83a8be3a58b31fb7f38", - "sha256:3e59c23c52765951b69ec45ddbbc9403a8761ee6f57253250c6e1536cacc758b", - "sha256:4b4af9f25b49a7be47c0972139e59ec0e8285c371049df1a63b6ca81fdd216a2", - "sha256:504b6981675ace64c28bf4a05a508af5cde526e36492c98916127f5a02354d53", - "sha256:50fca156d718f8ced687a373f9e140c1bb765ca16e3d6f4fe116e3df7c05b2c5", - "sha256:522a11c934ea660ff8953eda090dcd2154d367dec1ae3c540aff9f8a5c109ab4", - "sha256:52df73f14ed99cee84865b95a3d9e044f226320a87af208f068ecc33e0c35b96", - "sha256:595f105710293e76b9dc09f52e0dd896bd064a79346234b521f6b968ffdd8e58", - "sha256:59c26c95975f26e662ca78fdf543d4eeaef70e533a672b4113dd888bd2423caa", - "sha256:5bce0dc147ca85caa5d33debc4f4d65e8e8b5c97c7f9f660f215fa74fc49a321", - "sha256:5eafe2c065df5401ba06821b9a054d9cb2848867f3c59801b5d07a0be3a380ae", - "sha256:5ed3e046ea7b14938112ccd53d91c1539af3e6679b222f9469981e3dac7ba1ce", - "sha256:5fe9ce6c09668063b8447f85d43b8d1c4e5d3d7e92c63173e6180b2ac5d46dd8", - "sha256:648056db9a9fa565d3fa851880f99f45e3f9a771dd3ff3bb0c048ea83fb28194", - "sha256:69361bfdca5468c0488d7017b9b1e5ce769d40b46a9f4a2eed26b78619e9396c", - "sha256:6b0e029353361f1746bac2e4cc19b32f972ec03f0f943b390c4ab3371840aabf", - "sha256:6b88f9386ff1ad91ace19d2a1c0225896e28815ee09fc6a8932fded8cda97c3d", - "sha256:770d015888c2a598b377bd2f663adfd947d78c0124cfe7b959e1ef39f5b13869", - "sha256:7943c414d3a8d9235f5f15c22ace69787c140c80b718dcd57caaade95f7cd93b", - "sha256:7cf5c9458e1e90e3c390c2639f1017a0379a99a94fdfad3a1fd966a2874bba52", - "sha256:7f46acd6a194287b7e41e87957bfe2ad1ad88318d447caf5b090012f2c5bb528", - "sha256:82e6aa28dd46374f72093eda8bcd142f7771ee1eb9d1e223ff0fa7177a96b4a5", - "sha256:835a55b7ca49468aaaac0b217092dfdff370e6c215c9224c52f30daaa735c1c1", - "sha256:84871a243359bb42c12728f04d181a389718710129b36b6aad0fc4655a7647d4", - "sha256:8aacb477dc26797ee089721536a292a664846489c49d3ef9725f992449eda5a8", - "sha256:8e2c45c208c62e955e8256949eb225bd8b66a4c9b6865729a786f2aa79b72e9d", - "sha256:90842933e5d1ff760fae6caca4b2b3edba53ba8f4b71e95dacf2818a2aca06f7", - "sha256:938a9653e1e0c592053f815f7028e41a3062e902095e5a7dc84617c87267ebd5", - "sha256:939677b61f9d72a4fa2a042a5eee2a99a24001a67c13da113b2e30396567db54", - "sha256:9d3c9b50f19704552f23b4eaea1fc082fdd82c63429a6506446cbd8737823da3", - "sha256:a6fe5571784af92b6bc2fda8d1925cccdf24642d49546d3144948a6a1ed58ca5", - "sha256:a78ed8a53a1221393d9637c01870248a6f4ea5b214a59a92a36f18151739452c", - "sha256:ab40e6251c3873d86ea9b30a1ac6d7478c09277b32e14745d0d3c6e76e3c7e29", - "sha256:abf151955990d23f84205286938796c55ff11bbfb4ccfada8c9c83ae6b3c89a3", - "sha256:acef0899fea7492145d2bbaaaec7b345c87753168589cc7faf0afec9afe9b747", - "sha256:b40670ec7e2156d8e57f70aec34a7216407848dfe6c693ef131ddf6e76feb672", - "sha256:b791a3143681a520c0a17e26ae7465f1b6f99461a28019d1a2f425236e6eedb5", - "sha256:b955ed993491f1a5da7f92e98d5dad3c1e14dc175f74517c4e610b1f2456fb11", - "sha256:ba39e9c8627edc56544c8628cc180d88605df3892beeb2b94c9bc857774848ca", - "sha256:bca77a198bb6e69795ef2f09a5f4c12758487f83f33d63acde5f0d4919815768", - "sha256:c3452ea726c76e92f3b9fae4b34a151981a9ec0a4847a627c43d71a15ac32aa6", - "sha256:c46956ed82961e31557b6857a5ca153c67e5476972e5f7190015018760938da2", - "sha256:c7c8b816c2b5af5c8a436df44ca08258fc1a13b449393a91484225fcb7545533", - "sha256:cd73265a9e5ea618014802ab01babf1940cecb90c9762d8b9e7d2cc1e1969ec6", - "sha256:dad46e6f620574b3b4801c68255492e0159d1712271cc99d8bdf35f2043ec266", - "sha256:dc9b311743a78043b26ffaeeb9715dc360335e5517832f5a8e339f8a43581e4d", - "sha256:df822ee7feaaeffb99c1a9e5e608800bd8eda6e5f18f5cfb0dc7eeb2eaa6bbec", - "sha256:e083c285857b78ee21a96ba1eb1b5339733c3563f72980728ca2b08b53826ca5", - "sha256:e5e46b578c0e9db71d04c4b506a2121c0cb371dd89af17a0586ff6769d4c58c1", - "sha256:e99abf0bba688259a496f966211c49a514e65afa9b3073a1fcee08856e04425b", - "sha256:ee43080e75fc92bf36219926c8e6de497f9b247301bbf88c5c7593d931426679", - "sha256:f033d80bc6283092613882dfe40419c6a6a1527e04fc69350e87a9df02bbc283", - "sha256:f1088fa100bf46e7b398ffd9904f4808a0612e1d966b4aa43baa535d1b6341eb", - "sha256:f56455b0c2c7cc3b0c584815264461d07b177f903a04481dfc33e08a89f0c26b", - "sha256:f59dfe57bb1ec82ac0698ebfcdb7bcd0e99c255bd637ff613760d5f33e7c81b3", - "sha256:f7217af2e14da0856e082e96ff637f14ae45c10a5714b63c77f26d8884cf1051", - "sha256:f734e38fd8666f53da904c52a23ce517f1b07722118d750405af7e4123933511", - "sha256:f95511dd5d0e05fd9728bac4096319f80615aaef4acbecb35a990afebe953b0e", - "sha256:fdd215b7b7fd4a53994f238d0f46b7ba4ac4c0adb12452beee724ddd0743ae5d", - "sha256:feeb18a801aacb098220e2c3eea59a512362eb408d4afd0c242044c33ad6d542", - "sha256:ff30218887e62209942f91ac1be902cc80cddb86bf00fbc6783b7a43b2bea26f" + "sha256:0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8", + "sha256:0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c", + "sha256:0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475", + "sha256:1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed", + "sha256:18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf", + "sha256:239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372", + "sha256:2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81", + "sha256:320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f", + "sha256:38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1", + "sha256:3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd", + "sha256:393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a", + "sha256:3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb", + "sha256:3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46", + "sha256:4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de", + "sha256:4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78", + "sha256:45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c", + "sha256:4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771", + "sha256:471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb", + "sha256:4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430", + "sha256:4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233", + "sha256:52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156", + "sha256:55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9", + "sha256:5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59", + "sha256:5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888", + "sha256:5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c", + "sha256:60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c", + "sha256:6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da", + "sha256:639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424", + "sha256:66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2", + "sha256:67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb", + "sha256:694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8", + "sha256:6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a", + "sha256:702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10", + "sha256:714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0", + "sha256:7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09", + "sha256:7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031", + "sha256:82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4", + "sha256:84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3", + "sha256:8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa", + "sha256:88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a", + "sha256:8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe", + "sha256:8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a", + "sha256:8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2", + "sha256:8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1", + "sha256:93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323", + "sha256:9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b", + "sha256:9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b", + "sha256:9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106", + "sha256:a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac", + "sha256:a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6", + "sha256:ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832", + "sha256:afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75", + "sha256:b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6", + "sha256:c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d", + "sha256:c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72", + "sha256:c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db", + "sha256:c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a", + "sha256:c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da", + "sha256:c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678", + "sha256:c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b", + "sha256:cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24", + "sha256:d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed", + "sha256:d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f", + "sha256:d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e", + "sha256:da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58", + "sha256:da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a", + "sha256:e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342", + "sha256:e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558", + "sha256:e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2", + "sha256:edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551", + "sha256:f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595", + "sha256:f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee", + "sha256:f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11", + "sha256:f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d", + "sha256:fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7", + "sha256:ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f" ], "markers": "python_version >= '3.8'", - "version": "==3.9.3" + "version": "==3.9.5" }, "aiosignal": { "hashes": [ @@ -524,61 +516,61 @@ "toml" ], "hashes": [ - "sha256:0193657651f5399d433c92f8ae264aff31fc1d066deee4b831549526433f3f61", - "sha256:02f2edb575d62172aa28fe00efe821ae31f25dc3d589055b3fb64d51e52e4ab1", - "sha256:0491275c3b9971cdbd28a4595c2cb5838f08036bca31765bad5e17edf900b2c7", - "sha256:077d366e724f24fc02dbfe9d946534357fda71af9764ff99d73c3c596001bbd7", - "sha256:10e88e7f41e6197ea0429ae18f21ff521d4f4490aa33048f6c6f94c6045a6a75", - "sha256:18e961aa13b6d47f758cc5879383d27b5b3f3dcd9ce8cdbfdc2571fe86feb4dd", - "sha256:1a78b656a4d12b0490ca72651fe4d9f5e07e3c6461063a9b6265ee45eb2bdd35", - "sha256:1ed4b95480952b1a26d863e546fa5094564aa0065e1e5f0d4d0041f293251d04", - "sha256:23b27b8a698e749b61809fb637eb98ebf0e505710ec46a8aa6f1be7dc0dc43a6", - "sha256:23f5881362dcb0e1a92b84b3c2809bdc90db892332daab81ad8f642d8ed55042", - "sha256:32a8d985462e37cfdab611a6f95b09d7c091d07668fdc26e47a725ee575fe166", - "sha256:3468cc8720402af37b6c6e7e2a9cdb9f6c16c728638a2ebc768ba1ef6f26c3a1", - "sha256:379d4c7abad5afbe9d88cc31ea8ca262296480a86af945b08214eb1a556a3e4d", - "sha256:3cacfaefe6089d477264001f90f55b7881ba615953414999c46cc9713ff93c8c", - "sha256:3e3424c554391dc9ef4a92ad28665756566a28fecf47308f91841f6c49288e66", - "sha256:46342fed0fff72efcda77040b14728049200cbba1279e0bf1188f1f2078c1d70", - "sha256:536d609c6963c50055bab766d9951b6c394759190d03311f3e9fcf194ca909e1", - "sha256:5d6850e6e36e332d5511a48a251790ddc545e16e8beaf046c03985c69ccb2676", - "sha256:6008adeca04a445ea6ef31b2cbaf1d01d02986047606f7da266629afee982630", - "sha256:64e723ca82a84053dd7bfcc986bdb34af8d9da83c521c19d6b472bc6880e191a", - "sha256:6b00e21f86598b6330f0019b40fb397e705135040dbedc2ca9a93c7441178e74", - "sha256:6d224f0c4c9c98290a6990259073f496fcec1b5cc613eecbd22786d398ded3ad", - "sha256:6dceb61d40cbfcf45f51e59933c784a50846dc03211054bd76b421a713dcdf19", - "sha256:7ac8f8eb153724f84885a1374999b7e45734bf93a87d8df1e7ce2146860edef6", - "sha256:85ccc5fa54c2ed64bd91ed3b4a627b9cce04646a659512a051fa82a92c04a448", - "sha256:869b5046d41abfea3e381dd143407b0d29b8282a904a19cb908fa24d090cc018", - "sha256:8bdb0285a0202888d19ec6b6d23d5990410decb932b709f2b0dfe216d031d218", - "sha256:8dfc5e195bbef80aabd81596ef52a1277ee7143fe419efc3c4d8ba2754671756", - "sha256:8e738a492b6221f8dcf281b67129510835461132b03024830ac0e554311a5c54", - "sha256:918440dea04521f499721c039863ef95433314b1db00ff826a02580c1f503e45", - "sha256:9641e21670c68c7e57d2053ddf6c443e4f0a6e18e547e86af3fad0795414a628", - "sha256:9d2f9d4cc2a53b38cabc2d6d80f7f9b7e3da26b2f53d48f05876fef7956b6968", - "sha256:a07f61fc452c43cd5328b392e52555f7d1952400a1ad09086c4a8addccbd138d", - "sha256:a3277f5fa7483c927fe3a7b017b39351610265308f5267ac6d4c2b64cc1d8d25", - "sha256:a4a3907011d39dbc3e37bdc5df0a8c93853c369039b59efa33a7b6669de04c60", - "sha256:aeb2c2688ed93b027eb0d26aa188ada34acb22dceea256d76390eea135083950", - "sha256:b094116f0b6155e36a304ff912f89bbb5067157aff5f94060ff20bbabdc8da06", - "sha256:b8ffb498a83d7e0305968289441914154fb0ef5d8b3157df02a90c6695978295", - "sha256:b9bb62fac84d5f2ff523304e59e5c439955fb3b7f44e3d7b2085184db74d733b", - "sha256:c61f66d93d712f6e03369b6a7769233bfda880b12f417eefdd4f16d1deb2fc4c", - "sha256:ca6e61dc52f601d1d224526360cdeab0d0712ec104a2ce6cc5ccef6ed9a233bc", - "sha256:ca7b26a5e456a843b9b6683eada193fc1f65c761b3a473941efe5a291f604c74", - "sha256:d12c923757de24e4e2110cf8832d83a886a4cf215c6e61ed506006872b43a6d1", - "sha256:d17bbc946f52ca67adf72a5ee783cd7cd3477f8f8796f59b4974a9b59cacc9ee", - "sha256:dfd1e1b9f0898817babf840b77ce9fe655ecbe8b1b327983df485b30df8cc011", - "sha256:e0860a348bf7004c812c8368d1fc7f77fe8e4c095d661a579196a9533778e156", - "sha256:f2f5968608b1fe2a1d00d01ad1017ee27efd99b3437e08b83ded9b7af3f6f766", - "sha256:f3771b23bb3675a06f5d885c3630b1d01ea6cac9e84a01aaf5508706dba546c5", - "sha256:f68ef3660677e6624c8cace943e4765545f8191313a07288a53d3da188bd8581", - "sha256:f86f368e1c7ce897bf2457b9eb61169a44e2ef797099fb5728482b8d69f3f016", - "sha256:f90515974b39f4dea2f27c0959688621b46d96d5a626cf9c53dbc653a895c05c", - "sha256:fe558371c1bdf3b8fa03e097c523fb9645b8730399c14fe7721ee9c9e2a545d3" + "sha256:0646599e9b139988b63704d704af8e8df7fa4cbc4a1f33df69d97f36cb0a38de", + "sha256:0cdcbc320b14c3e5877ee79e649677cb7d89ef588852e9583e6b24c2e5072661", + "sha256:0d0a0f5e06881ecedfe6f3dd2f56dcb057b6dbeb3327fd32d4b12854df36bf26", + "sha256:1434e088b41594baa71188a17533083eabf5609e8e72f16ce8c186001e6b8c41", + "sha256:16db7f26000a07efcf6aea00316f6ac57e7d9a96501e990a36f40c965ec7a95d", + "sha256:1cc0fe9b0b3a8364093c53b0b4c0c2dd4bb23acbec4c9240b5f284095ccf7981", + "sha256:1fc81d5878cd6274ce971e0a3a18a8803c3fe25457165314271cf78e3aae3aa2", + "sha256:2ec92012fefebee89a6b9c79bc39051a6cb3891d562b9270ab10ecfdadbc0c34", + "sha256:39afcd3d4339329c5f58de48a52f6e4e50f6578dd6099961cf22228feb25f38f", + "sha256:4a7b0ceee8147444347da6a66be737c9d78f3353b0681715b668b72e79203e4a", + "sha256:4a9ca3f2fae0088c3c71d743d85404cec8df9be818a005ea065495bedc33da35", + "sha256:4bf0655ab60d754491004a5efd7f9cccefcc1081a74c9ef2da4735d6ee4a6223", + "sha256:4cc37def103a2725bc672f84bd939a6fe4522310503207aae4d56351644682f1", + "sha256:4fc84a37bfd98db31beae3c2748811a3fa72bf2007ff7902f68746d9757f3746", + "sha256:5037f8fcc2a95b1f0e80585bd9d1ec31068a9bcb157d9750a172836e98bc7a90", + "sha256:54de9ef3a9da981f7af93eafde4ede199e0846cd819eb27c88e2b712aae9708c", + "sha256:556cf1a7cbc8028cb60e1ff0be806be2eded2daf8129b8811c63e2b9a6c43bca", + "sha256:57e0204b5b745594e5bc14b9b50006da722827f0b8c776949f1135677e88d0b8", + "sha256:5a5740d1fb60ddf268a3811bcd353de34eb56dc24e8f52a7f05ee513b2d4f596", + "sha256:5c3721c2c9e4c4953a41a26c14f4cef64330392a6d2d675c8b1db3b645e31f0e", + "sha256:5fa567e99765fe98f4e7d7394ce623e794d7cabb170f2ca2ac5a4174437e90dd", + "sha256:5fd215c0c7d7aab005221608a3c2b46f58c0285a819565887ee0b718c052aa4e", + "sha256:6175d1a0559986c6ee3f7fccfc4a90ecd12ba0a383dcc2da30c2b9918d67d8a3", + "sha256:61c4bf1ba021817de12b813338c9be9f0ad5b1e781b9b340a6d29fc13e7c1b5e", + "sha256:6537e7c10cc47c595828b8a8be04c72144725c383c4702703ff4e42e44577312", + "sha256:68f962d9b72ce69ea8621f57551b2fa9c70509af757ee3b8105d4f51b92b41a7", + "sha256:7352b9161b33fd0b643ccd1f21f3a3908daaddf414f1c6cb9d3a2fd618bf2572", + "sha256:796a79f63eca8814ca3317a1ea443645c9ff0d18b188de470ed7ccd45ae79428", + "sha256:79afb6197e2f7f60c4824dd4b2d4c2ec5801ceb6ba9ce5d2c3080e5660d51a4f", + "sha256:7a588d39e0925f6a2bff87154752481273cdb1736270642aeb3635cb9b4cad07", + "sha256:8748731ad392d736cc9ccac03c9845b13bb07d020a33423fa5b3a36521ac6e4e", + "sha256:8fe7502616b67b234482c3ce276ff26f39ffe88adca2acf0261df4b8454668b4", + "sha256:9314d5678dcc665330df5b69c1e726a0e49b27df0461c08ca12674bcc19ef136", + "sha256:9735317685ba6ec7e3754798c8871c2f49aa5e687cc794a0b1d284b2389d1bd5", + "sha256:9981706d300c18d8b220995ad22627647be11a4276721c10911e0e9fa44c83e8", + "sha256:9e78295f4144f9dacfed4f92935fbe1780021247c2fabf73a819b17f0ccfff8d", + "sha256:b016ea6b959d3b9556cb401c55a37547135a587db0115635a443b2ce8f1c7228", + "sha256:b6cf3764c030e5338e7f61f95bd21147963cf6aa16e09d2f74f1fa52013c1206", + "sha256:beccf7b8a10b09c4ae543582c1319c6df47d78fd732f854ac68d518ee1fb97fa", + "sha256:c0884920835a033b78d1c73b6d3bbcda8161a900f38a488829a83982925f6c2e", + "sha256:c3e757949f268364b96ca894b4c342b41dc6f8f8b66c37878aacef5930db61be", + "sha256:ca498687ca46a62ae590253fba634a1fe9836bc56f626852fb2720f334c9e4e5", + "sha256:d1d0d98d95dd18fe29dc66808e1accf59f037d5716f86a501fc0256455219668", + "sha256:d21918e9ef11edf36764b93101e2ae8cc82aa5efdc7c5a4e9c6c35a48496d601", + "sha256:d7fed867ee50edf1a0b4a11e8e5d0895150e572af1cd6d315d557758bfa9c057", + "sha256:db66fc317a046556a96b453a58eced5024af4582a8dbdc0c23ca4dbc0d5b3146", + "sha256:dde0070c40ea8bb3641e811c1cfbf18e265d024deff6de52c5950677a8fb1e0f", + "sha256:df4e745a81c110e7446b1cc8131bf986157770fa405fe90e15e850aaf7619bc8", + "sha256:e2213def81a50519d7cc56ed643c9e93e0247f5bbe0d1247d15fa520814a7cd7", + "sha256:ef48e2707fb320c8f139424a596f5b69955a85b178f15af261bab871873bb987", + "sha256:f152cbf5b88aaeb836127d920dd0f5e7edff5a66f10c079157306c4343d86c19", + "sha256:fc0b4d8bfeabd25ea75e94632f5b6e047eef8adaed0c2161ada1e922e7f7cece" ], "markers": "python_version >= '3.8'", - "version": "==7.4.1" + "version": "==7.5.1" }, "decoy": { "hashes": [ @@ -600,19 +592,19 @@ }, "exceptiongroup": { "hashes": [ - "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14", - "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68" + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" ], "markers": "python_version < '3.11'", - "version": "==1.2.0" + "version": "==1.2.1" }, "execnet": { "hashes": [ - "sha256:88256416ae766bc9e8895c76a87928c0012183da3cc4fc18016e6f050e025f41", - "sha256:cc59bc4423742fd71ad227122eb0dd44db51efb3dc4095b45ac9a08c770096af" + "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", + "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3" ], - "markers": "python_version >= '3.7'", - "version": "==2.0.2" + "markers": "python_version >= '3.8'", + "version": "==2.1.1" }, "flake8": { "hashes": [ @@ -735,11 +727,11 @@ }, "idna": { "hashes": [ - "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca", - "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f" + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" ], "markers": "python_version >= '3.5'", - "version": "==3.6" + "version": "==3.7" }, "iniconfig": { "hashes": [ @@ -906,11 +898,11 @@ }, "packaging": { "hashes": [ - "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", - "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" + "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", + "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" ], "markers": "python_version >= '3.7'", - "version": "==23.2" + "version": "==24.0" }, "pathspec": { "hashes": [ @@ -922,19 +914,19 @@ }, "platformdirs": { "hashes": [ - "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068", - "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768" + "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", + "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3" ], "markers": "python_version >= '3.8'", - "version": "==4.2.0" + "version": "==4.2.2" }, "pluggy": { "hashes": [ - "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981", - "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be" + "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", + "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" ], "markers": "python_version >= '3.8'", - "version": "==1.4.0" + "version": "==1.5.0" }, "py": { "hashes": [ @@ -988,11 +980,11 @@ }, "pytest-asyncio": { "hashes": [ - "sha256:2143d9d9375bf372a73260e4114541485e84fca350b0b6b92674ca56ff5f7ea2", - "sha256:b0079dfac14b60cd1ce4691fbfb1748fe939db7d0234b5aba97197d10fbe0fef" + "sha256:68516fdd1018ac57b846c9846b954f0393b26f094764a28c955eabb0536a4e8a", + "sha256:ffe523a89c1c222598c76856e76852b787504ddb72dd5d9b6617ffa8aa2cde5f" ], "markers": "python_version >= '3.8'", - "version": "==0.23.4" + "version": "==0.23.6" }, "pytest-cov": { "hashes": [ @@ -1020,6 +1012,15 @@ "markers": "python_version >= '3.6'", "version": "==2.5.0" }, + "pyusb": { + "hashes": [ + "sha256:2b4c7cb86dbadf044dfb9d3a4ff69fd217013dbe78a792177a3feb172449ea36", + "sha256:a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9" + ], + "index": "pypi", + "markers": "python_full_version >= '3.6.0'", + "version": "==1.2.1" + }, "snowballstemmer": { "hashes": [ "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1", @@ -1037,20 +1038,20 @@ }, "types-mock": { "hashes": [ - "sha256:13ca379d5710ccb3f18f69ade5b08881874cb83383d8fb49b1d4dac9d5c5d090", - "sha256:3d116955495935b0bcba14954b38d97e507cd43eca3e3700fc1b8e4f5c6bf2c7" + "sha256:5281a645d72e827d70043e3cc144fe33b1c003db084f789dc203aa90e812a5a4", + "sha256:d586a01d39ad919d3ddcd73de6cde73ca7f3c69707219f722d1b8d7733641ad7" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==5.1.0.20240106" + "version": "==5.1.0.20240425" }, "typing-extensions": { "hashes": [ - "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783", - "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd" + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" ], "markers": "python_version >= '3.8'", - "version": "==4.9.0" + "version": "==4.11.0" }, "yarl": { "hashes": [ diff --git a/hardware-testing/Pipfile b/hardware-testing/Pipfile index acc317ac325..e851331de96 100644 --- a/hardware-testing/Pipfile +++ b/hardware-testing/Pipfile @@ -23,6 +23,7 @@ flake8-docstrings = "~=1.6.0" flake8-noqa = "~=1.2.1" requests = "==2.27.1" types-requests = "==2.25.6" +pyusb = "==1.2.1" [requires] python_version = "3.10" diff --git a/hardware-testing/Pipfile.lock b/hardware-testing/Pipfile.lock index 6c717bc2743..cbe473a96c3 100644 --- a/hardware-testing/Pipfile.lock +++ b/hardware-testing/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "62d9d88f58594147f78dbda65db2d96b53ac2c07a54eb0b81854c7c7ebe4e247" + "sha256": "29fd7580a2384b6f20317de4c4869f27ede50315e7d87d75346bfbabd0ef683c" }, "pipfile-spec": 6, "requires": { @@ -25,19 +25,19 @@ }, "anyio": { "hashes": [ - "sha256:413adf95f93886e442aea925f3ee43baa5a765a64a0f52c6081894f9992fdd0b", - "sha256:cb29b9c70620506a9a8f87a309591713446953302d7d995344d0d7c6c0c9a7be" + "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780", + "sha256:91dee416e570e92c64041bd18b900d1d6fa78dff7048769ce5ac5ddad004fbb5" ], - "markers": "python_full_version >= '3.6.2'", - "version": "==3.6.1" + "markers": "python_version >= '3.7'", + "version": "==3.7.1" }, "attrs": { "hashes": [ - "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04", - "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015" + "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", + "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1" ], "markers": "python_version >= '3.7'", - "version": "==23.1.0" + "version": "==23.2.0" }, "click": { "hashes": [ @@ -47,134 +47,144 @@ "markers": "python_version >= '3.7'", "version": "==8.1.7" }, + "exceptiongroup": { + "hashes": [ + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" + ], + "markers": "python_version < '3.11'", + "version": "==1.2.1" + }, "hardware-testing": { "editable": true, "path": "." }, "idna": { "hashes": [ - "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca", - "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f" + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" ], "markers": "python_version >= '3.5'", - "version": "==3.6" + "version": "==3.7" }, "jsonschema": { "hashes": [ - "sha256:5f9c0a719ca2ce14c5de2fd350a64fd2d13e8539db29836a86adc990bb1a068f", - "sha256:8d4a2b7b6c2237e0199c8ea1a6d3e05bf118e289ae2b9d7ba444182a2959560d" + "sha256:0f864437ab8b6076ba6707453ef8f98a6a0d512a80e93f8abdb676f737ecb60d", + "sha256:a870ad254da1a8ca84b6a2905cac29d265f805acc57af304784962a2aa6508f6" ], - "version": "==3.0.2" + "markers": "python_version >= '3.7'", + "version": "==4.17.3" }, "msgpack": { "hashes": [ - "sha256:04ad6069c86e531682f9e1e71b71c1c3937d6014a7c3e9edd2aa81ad58842862", - "sha256:0bfdd914e55e0d2c9e1526de210f6fe8ffe9705f2b1dfcc4aecc92a4cb4b533d", - "sha256:1dc93e8e4653bdb5910aed79f11e165c85732067614f180f70534f056da97db3", - "sha256:1e2d69948e4132813b8d1131f29f9101bc2c915f26089a6d632001a5c1349672", - "sha256:235a31ec7db685f5c82233bddf9858748b89b8119bf4538d514536c485c15fe0", - "sha256:27dcd6f46a21c18fa5e5deed92a43d4554e3df8d8ca5a47bf0615d6a5f39dbc9", - "sha256:28efb066cde83c479dfe5a48141a53bc7e5f13f785b92ddde336c716663039ee", - "sha256:3476fae43db72bd11f29a5147ae2f3cb22e2f1a91d575ef130d2bf49afd21c46", - "sha256:36e17c4592231a7dbd2ed09027823ab295d2791b3b1efb2aee874b10548b7524", - "sha256:384d779f0d6f1b110eae74cb0659d9aa6ff35aaf547b3955abf2ab4c901c4819", - "sha256:38949d30b11ae5f95c3c91917ee7a6b239f5ec276f271f28638dec9156f82cfc", - "sha256:3967e4ad1aa9da62fd53e346ed17d7b2e922cba5ab93bdd46febcac39be636fc", - "sha256:3e7bf4442b310ff154b7bb9d81eb2c016b7d597e364f97d72b1acc3817a0fdc1", - "sha256:3f0c8c6dfa6605ab8ff0611995ee30d4f9fcff89966cf562733b4008a3d60d82", - "sha256:484ae3240666ad34cfa31eea7b8c6cd2f1fdaae21d73ce2974211df099a95d81", - "sha256:4a7b4f35de6a304b5533c238bee86b670b75b03d31b7797929caa7a624b5dda6", - "sha256:4cb14ce54d9b857be9591ac364cb08dc2d6a5c4318c1182cb1d02274029d590d", - "sha256:4e71bc4416de195d6e9b4ee93ad3f2f6b2ce11d042b4d7a7ee00bbe0358bd0c2", - "sha256:52700dc63a4676669b341ba33520f4d6e43d3ca58d422e22ba66d1736b0a6e4c", - "sha256:572efc93db7a4d27e404501975ca6d2d9775705c2d922390d878fcf768d92c87", - "sha256:576eb384292b139821c41995523654ad82d1916da6a60cff129c715a6223ea84", - "sha256:5b0bf0effb196ed76b7ad883848143427a73c355ae8e569fa538365064188b8e", - "sha256:5b6ccc0c85916998d788b295765ea0e9cb9aac7e4a8ed71d12e7d8ac31c23c95", - "sha256:5ed82f5a7af3697b1c4786053736f24a0efd0a1b8a130d4c7bfee4b9ded0f08f", - "sha256:6d4c80667de2e36970ebf74f42d1088cc9ee7ef5f4e8c35eee1b40eafd33ca5b", - "sha256:730076207cb816138cf1af7f7237b208340a2c5e749707457d70705715c93b93", - "sha256:7687e22a31e976a0e7fc99c2f4d11ca45eff652a81eb8c8085e9609298916dcf", - "sha256:822ea70dc4018c7e6223f13affd1c5c30c0f5c12ac1f96cd8e9949acddb48a61", - "sha256:84b0daf226913133f899ea9b30618722d45feffa67e4fe867b0b5ae83a34060c", - "sha256:85765fdf4b27eb5086f05ac0491090fc76f4f2b28e09d9350c31aac25a5aaff8", - "sha256:8dd178c4c80706546702c59529ffc005681bd6dc2ea234c450661b205445a34d", - "sha256:8f5b234f567cf76ee489502ceb7165c2a5cecec081db2b37e35332b537f8157c", - "sha256:98bbd754a422a0b123c66a4c341de0474cad4a5c10c164ceed6ea090f3563db4", - "sha256:993584fc821c58d5993521bfdcd31a4adf025c7d745bbd4d12ccfecf695af5ba", - "sha256:a40821a89dc373d6427e2b44b572efc36a2778d3f543299e2f24eb1a5de65415", - "sha256:b291f0ee7961a597cbbcc77709374087fa2a9afe7bdb6a40dbbd9b127e79afee", - "sha256:b573a43ef7c368ba4ea06050a957c2a7550f729c31f11dd616d2ac4aba99888d", - "sha256:b610ff0f24e9f11c9ae653c67ff8cc03c075131401b3e5ef4b82570d1728f8a9", - "sha256:bdf38ba2d393c7911ae989c3bbba510ebbcdf4ecbdbfec36272abe350c454075", - "sha256:bfef2bb6ef068827bbd021017a107194956918ab43ce4d6dc945ffa13efbc25f", - "sha256:cab3db8bab4b7e635c1c97270d7a4b2a90c070b33cbc00c99ef3f9be03d3e1f7", - "sha256:cb70766519500281815dfd7a87d3a178acf7ce95390544b8c90587d76b227681", - "sha256:cca1b62fe70d761a282496b96a5e51c44c213e410a964bdffe0928e611368329", - "sha256:ccf9a39706b604d884d2cb1e27fe973bc55f2890c52f38df742bc1d79ab9f5e1", - "sha256:dc43f1ec66eb8440567186ae2f8c447d91e0372d793dfe8c222aec857b81a8cf", - "sha256:dd632777ff3beaaf629f1ab4396caf7ba0bdd075d948a69460d13d44357aca4c", - "sha256:e45ae4927759289c30ccba8d9fdce62bb414977ba158286b5ddaf8df2cddb5c5", - "sha256:e50ebce52f41370707f1e21a59514e3375e3edd6e1832f5e5235237db933c98b", - "sha256:ebbbba226f0a108a7366bf4b59bf0f30a12fd5e75100c630267d94d7f0ad20e5", - "sha256:ec79ff6159dffcc30853b2ad612ed572af86c92b5168aa3fc01a67b0fa40665e", - "sha256:f0936e08e0003f66bfd97e74ee530427707297b0d0361247e9b4f59ab78ddc8b", - "sha256:f26a07a6e877c76a88e3cecac8531908d980d3d5067ff69213653649ec0f60ad", - "sha256:f64e376cd20d3f030190e8c32e1c64582eba56ac6dc7d5b0b49a9d44021b52fd", - "sha256:f6ffbc252eb0d229aeb2f9ad051200668fc3a9aaa8994e49f0cb2ffe2b7867e7", - "sha256:f9a7c509542db4eceed3dcf21ee5267ab565a83555c9b88a8109dcecc4709002", - "sha256:ff1d0899f104f3921d94579a5638847f783c9b04f2d5f229392ca77fba5b82fc" + "sha256:00e073efcba9ea99db5acef3959efa45b52bc67b61b00823d2a1a6944bf45982", + "sha256:0726c282d188e204281ebd8de31724b7d749adebc086873a59efb8cf7ae27df3", + "sha256:0ceea77719d45c839fd73abcb190b8390412a890df2f83fb8cf49b2a4b5c2f40", + "sha256:114be227f5213ef8b215c22dde19532f5da9652e56e8ce969bf0a26d7c419fee", + "sha256:13577ec9e247f8741c84d06b9ece5f654920d8365a4b636ce0e44f15e07ec693", + "sha256:1876b0b653a808fcd50123b953af170c535027bf1d053b59790eebb0aeb38950", + "sha256:1ab0bbcd4d1f7b6991ee7c753655b481c50084294218de69365f8f1970d4c151", + "sha256:1cce488457370ffd1f953846f82323cb6b2ad2190987cd4d70b2713e17268d24", + "sha256:26ee97a8261e6e35885c2ecd2fd4a6d38252246f94a2aec23665a4e66d066305", + "sha256:3528807cbbb7f315bb81959d5961855e7ba52aa60a3097151cb21956fbc7502b", + "sha256:374a8e88ddab84b9ada695d255679fb99c53513c0a51778796fcf0944d6c789c", + "sha256:376081f471a2ef24828b83a641a02c575d6103a3ad7fd7dade5486cad10ea659", + "sha256:3923a1778f7e5ef31865893fdca12a8d7dc03a44b33e2a5f3295416314c09f5d", + "sha256:4916727e31c28be8beaf11cf117d6f6f188dcc36daae4e851fee88646f5b6b18", + "sha256:493c5c5e44b06d6c9268ce21b302c9ca055c1fd3484c25ba41d34476c76ee746", + "sha256:505fe3d03856ac7d215dbe005414bc28505d26f0c128906037e66d98c4e95868", + "sha256:5845fdf5e5d5b78a49b826fcdc0eb2e2aa7191980e3d2cfd2a30303a74f212e2", + "sha256:5c330eace3dd100bdb54b5653b966de7f51c26ec4a7d4e87132d9b4f738220ba", + "sha256:5dbf059fb4b7c240c873c1245ee112505be27497e90f7c6591261c7d3c3a8228", + "sha256:5e390971d082dba073c05dbd56322427d3280b7cc8b53484c9377adfbae67dc2", + "sha256:5fbb160554e319f7b22ecf530a80a3ff496d38e8e07ae763b9e82fadfe96f273", + "sha256:64d0fcd436c5683fdd7c907eeae5e2cbb5eb872fafbc03a43609d7941840995c", + "sha256:69284049d07fce531c17404fcba2bb1df472bc2dcdac642ae71a2d079d950653", + "sha256:6a0e76621f6e1f908ae52860bdcb58e1ca85231a9b0545e64509c931dd34275a", + "sha256:73ee792784d48aa338bba28063e19a27e8d989344f34aad14ea6e1b9bd83f596", + "sha256:74398a4cf19de42e1498368c36eed45d9528f5fd0155241e82c4082b7e16cffd", + "sha256:7938111ed1358f536daf311be244f34df7bf3cdedb3ed883787aca97778b28d8", + "sha256:82d92c773fbc6942a7a8b520d22c11cfc8fd83bba86116bfcf962c2f5c2ecdaa", + "sha256:83b5c044f3eff2a6534768ccfd50425939e7a8b5cf9a7261c385de1e20dcfc85", + "sha256:8db8e423192303ed77cff4dce3a4b88dbfaf43979d280181558af5e2c3c71afc", + "sha256:9517004e21664f2b5a5fd6333b0731b9cf0817403a941b393d89a2f1dc2bd836", + "sha256:95c02b0e27e706e48d0e5426d1710ca78e0f0628d6e89d5b5a5b91a5f12274f3", + "sha256:99881222f4a8c2f641f25703963a5cefb076adffd959e0558dc9f803a52d6a58", + "sha256:9ee32dcb8e531adae1f1ca568822e9b3a738369b3b686d1477cbc643c4a9c128", + "sha256:a22e47578b30a3e199ab067a4d43d790249b3c0587d9a771921f86250c8435db", + "sha256:b5505774ea2a73a86ea176e8a9a4a7c8bf5d521050f0f6f8426afe798689243f", + "sha256:bd739c9251d01e0279ce729e37b39d49a08c0420d3fee7f2a4968c0576678f77", + "sha256:d16a786905034e7e34098634b184a7d81f91d4c3d246edc6bd7aefb2fd8ea6ad", + "sha256:d3420522057ebab1728b21ad473aa950026d07cb09da41103f8e597dfbfaeb13", + "sha256:d56fd9f1f1cdc8227d7b7918f55091349741904d9520c65f0139a9755952c9e8", + "sha256:d661dc4785affa9d0edfdd1e59ec056a58b3dbb9f196fa43587f3ddac654ac7b", + "sha256:dfe1f0f0ed5785c187144c46a292b8c34c1295c01da12e10ccddfc16def4448a", + "sha256:e1dd7839443592d00e96db831eddb4111a2a81a46b028f0facd60a09ebbdd543", + "sha256:e2872993e209f7ed04d963e4b4fbae72d034844ec66bc4ca403329db2074377b", + "sha256:e2f879ab92ce502a1e65fce390eab619774dda6a6ff719718069ac94084098ce", + "sha256:e3aa7e51d738e0ec0afbed661261513b38b3014754c9459508399baf14ae0c9d", + "sha256:e532dbd6ddfe13946de050d7474e3f5fb6ec774fbb1a188aaf469b08cf04189a", + "sha256:e6b7842518a63a9f17107eb176320960ec095a8ee3b4420b5f688e24bf50c53c", + "sha256:e75753aeda0ddc4c28dce4c32ba2f6ec30b1b02f6c0b14e547841ba5b24f753f", + "sha256:eadb9f826c138e6cf3c49d6f8de88225a3c0ab181a9b4ba792e006e5292d150e", + "sha256:ed59dd52075f8fc91da6053b12e8c89e37aa043f8986efd89e61fae69dc1b011", + "sha256:ef254a06bcea461e65ff0373d8a0dd1ed3aa004af48839f002a0c994a6f72d04", + "sha256:f3709997b228685fe53e8c433e2df9f0cdb5f4542bd5114ed17ac3c0129b0480", + "sha256:f51bab98d52739c50c56658cc303f190785f9a2cd97b823357e7aeae54c8f68a", + "sha256:f9904e24646570539a8950400602d66d2b2c492b9010ea7e965025cb71d0c86d", + "sha256:f9af38a89b6a5c04b7d18c492c8ccf2aee7048aff1ce8437c4683bb5a1df893d" ], "markers": "platform_system != 'Windows'", - "version": "==1.0.7" + "version": "==1.0.8" }, "numpy": { "hashes": [ - "sha256:06fa1ed84aa60ea6ef9f91ba57b5ed963c3729534e6e54055fc151fad0423f0a", - "sha256:174a8880739c16c925799c018f3f55b8130c1f7c8e75ab0a6fa9d41cab092fd6", - "sha256:1a13860fdcd95de7cf58bd6f8bc5a5ef81c0b0625eb2c9a783948847abbef2c2", - "sha256:1cc3d5029a30fb5f06704ad6b23b35e11309491c999838c31f124fee32107c79", - "sha256:22f8fc02fdbc829e7a8c578dd8d2e15a9074b630d4da29cda483337e300e3ee9", - "sha256:26c9d33f8e8b846d5a65dd068c14e04018d05533b348d9eaeef6c1bd787f9919", - "sha256:2b3fca8a5b00184828d12b073af4d0fc5fdd94b1632c2477526f6bd7842d700d", - "sha256:2beef57fb031dcc0dc8fa4fe297a742027b954949cabb52a2a376c144e5e6060", - "sha256:36340109af8da8805d8851ef1d74761b3b88e81a9bd80b290bbfed61bd2b4f75", - "sha256:3703fc9258a4a122d17043e57b35e5ef1c5a5837c3db8be396c82e04c1cf9b0f", - "sha256:3ced40d4e9e18242f70dd02d739e44698df3dcb010d31f495ff00a31ef6014fe", - "sha256:4a06263321dfd3598cacb252f51e521a8cb4b6df471bb12a7ee5cbab20ea9167", - "sha256:4eb8df4bf8d3d90d091e0146f6c28492b0be84da3e409ebef54349f71ed271ef", - "sha256:5d5244aabd6ed7f312268b9247be47343a654ebea52a60f002dc70c769048e75", - "sha256:64308ebc366a8ed63fd0bf426b6a9468060962f1a4339ab1074c228fa6ade8e3", - "sha256:6a3cdb4d9c70e6b8c0814239ead47da00934666f668426fc6e94cce869e13fd7", - "sha256:854ab91a2906ef29dc3925a064fcd365c7b4da743f84b123002f6139bcb3f8a7", - "sha256:94cc3c222bb9fb5a12e334d0479b97bb2df446fbe622b470928f5284ffca3f8d", - "sha256:96ca5482c3dbdd051bcd1fce8034603d6ebfc125a7bd59f55b40d8f5d246832b", - "sha256:a2bbc29fcb1771cd7b7425f98b05307776a6baf43035d3b80c4b0f29e9545186", - "sha256:a4cd6ed4a339c21f1d1b0fdf13426cb3b284555c27ac2f156dfdaaa7e16bfab0", - "sha256:aa18428111fb9a591d7a9cc1b48150097ba6a7e8299fb56bdf574df650e7d1f1", - "sha256:aa317b2325f7aa0a9471663e6093c210cb2ae9c0ad824732b307d2c51983d5b6", - "sha256:b04f5dc6b3efdaab541f7857351aac359e6ae3c126e2edb376929bd3b7f92d7e", - "sha256:b272d4cecc32c9e19911891446b72e986157e6a1809b7b56518b4f3755267523", - "sha256:b361d369fc7e5e1714cf827b731ca32bff8d411212fccd29ad98ad622449cc36", - "sha256:b96e7b9c624ef3ae2ae0e04fa9b460f6b9f17ad8b4bec6d7756510f1f6c0c841", - "sha256:baf8aab04a2c0e859da118f0b38617e5ee65d75b83795055fb66c0d5e9e9b818", - "sha256:bcc008217145b3d77abd3e4d5ef586e3bdfba8fe17940769f8aa09b99e856c00", - "sha256:bd3f0091e845164a20bd5a326860c840fe2af79fa12e0469a12768a3ec578d80", - "sha256:cc392fdcbd21d4be6ae1bb4475a03ce3b025cd49a9be5345d76d7585aea69440", - "sha256:d73a3abcac238250091b11caef9ad12413dab01669511779bc9b29261dd50210", - "sha256:f43740ab089277d403aa07567be138fc2a89d4d9892d113b76153e0e412409f8", - "sha256:f65738447676ab5777f11e6bbbdb8ce11b785e105f690bc45966574816b6d3ea", - "sha256:f79b231bf5c16b1f39c7f4875e1ded36abee1591e98742b05d8a0fb55d8a3eec", - "sha256:fe6b44fb8fcdf7eda4ef4461b97b3f63c466b27ab151bec2366db8b197387841" + "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", + "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", + "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", + "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", + "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", + "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", + "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", + "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", + "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", + "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", + "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", + "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", + "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", + "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", + "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", + "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", + "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", + "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", + "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", + "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", + "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", + "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", + "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", + "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", + "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", + "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", + "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", + "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", + "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", + "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", + "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", + "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", + "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", + "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", + "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", + "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f" ], "markers": "python_version >= '3.9'", - "version": "==1.26.2" + "version": "==1.26.4" }, "opentrons": { "editable": true, "extras": [ "flex-hardware" ], + "markers": "python_version >= '3.10'", "path": "./../api" }, "opentrons-hardware": { @@ -186,57 +196,58 @@ }, "opentrons-shared-data": { "editable": true, - "markers": "python_version >= '3.7'", + "markers": "python_version >= '3.10'", "path": "./../shared-data/python" }, "packaging": { "hashes": [ - "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", - "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" + "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", + "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" ], "markers": "python_version >= '3.7'", - "version": "==23.2" + "version": "==24.0" }, "pydantic": { "hashes": [ - "sha256:1061c6ee6204f4f5a27133126854948e3b3d51fcc16ead2e5d04378c199b2f44", - "sha256:19b5686387ea0d1ea52ecc4cffb71abb21702c5e5b2ac626fd4dbaa0834aa49d", - "sha256:2bd446bdb7755c3a94e56d7bdfd3ee92396070efa8ef3a34fab9579fe6aa1d84", - "sha256:328558c9f2eed77bd8fffad3cef39dbbe3edc7044517f4625a769d45d4cf7555", - "sha256:32e0b4fb13ad4db4058a7c3c80e2569adbd810c25e6ca3bbd8b2a9cc2cc871d7", - "sha256:3ee0d69b2a5b341fc7927e92cae7ddcfd95e624dfc4870b32a85568bd65e6131", - "sha256:4aafd4e55e8ad5bd1b19572ea2df546ccace7945853832bb99422a79c70ce9b8", - "sha256:4b3946f87e5cef3ba2e7bd3a4eb5a20385fe36521d6cc1ebf3c08a6697c6cfb3", - "sha256:4de71c718c9756d679420c69f216776c2e977459f77e8f679a4a961dc7304a56", - "sha256:5565a49effe38d51882cb7bac18bda013cdb34d80ac336428e8908f0b72499b0", - "sha256:5803ad846cdd1ed0d97eb00292b870c29c1f03732a010e66908ff48a762f20e4", - "sha256:5da164119602212a3fe7e3bc08911a89db4710ae51444b4224c2382fd09ad453", - "sha256:615661bfc37e82ac677543704437ff737418e4ea04bef9cf11c6d27346606044", - "sha256:78a4d6bdfd116a559aeec9a4cfe77dda62acc6233f8b56a716edad2651023e5e", - "sha256:7d0f183b305629765910eaad707800d2f47c6ac5bcfb8c6397abdc30b69eeb15", - "sha256:7ead3cd020d526f75b4188e0a8d71c0dbbe1b4b6b5dc0ea775a93aca16256aeb", - "sha256:84d76ecc908d917f4684b354a39fd885d69dd0491be175f3465fe4b59811c001", - "sha256:8cb0bc509bfb71305d7a59d00163d5f9fc4530f0881ea32c74ff4f74c85f3d3d", - "sha256:91089b2e281713f3893cd01d8e576771cd5bfdfbff5d0ed95969f47ef6d676c3", - "sha256:9c9e04a6cdb7a363d7cb3ccf0efea51e0abb48e180c0d31dca8d247967d85c6e", - "sha256:a8c5360a0297a713b4123608a7909e6869e1b56d0e96eb0d792c27585d40757f", - "sha256:afacf6d2a41ed91fc631bade88b1d319c51ab5418870802cedb590b709c5ae3c", - "sha256:b34ba24f3e2d0b39b43f0ca62008f7ba962cff51efa56e64ee25c4af6eed987b", - "sha256:bd67cb2c2d9602ad159389c29e4ca964b86fa2f35c2faef54c3eb28b4efd36c8", - "sha256:c0f5e142ef8217019e3eef6ae1b6b55f09a7a15972958d44fbd228214cede567", - "sha256:cdb4272678db803ddf94caa4f94f8672e9a46bae4a44f167095e4d06fec12979", - "sha256:d70916235d478404a3fa8c997b003b5f33aeac4686ac1baa767234a0f8ac2326", - "sha256:d8ce3fb0841763a89322ea0432f1f59a2d3feae07a63ea2c958b2315e1ae8adb", - "sha256:e0b214e57623a535936005797567231a12d0da0c29711eb3514bc2b3cd008d0f", - "sha256:e631c70c9280e3129f071635b81207cad85e6c08e253539467e4ead0e5b219aa", - "sha256:e78578f0c7481c850d1c969aca9a65405887003484d24f6110458fb02cca7747", - "sha256:f0ca86b525264daa5f6b192f216a0d1e860b7383e3da1c65a1908f9c02f42801", - "sha256:f1a68f4f65a9ee64b6ccccb5bf7e17db07caebd2730109cb8a95863cfa9c4e55", - "sha256:fafe841be1103f340a24977f61dee76172e4ae5f647ab9e7fd1e1fca51524f08", - "sha256:ff68fc85355532ea77559ede81f35fff79a6a5543477e168ab3a381887caea76" - ], - "markers": "python_full_version >= '3.6.1'", - "version": "==1.9.2" + "sha256:005655cabc29081de8243126e036f2065bd7ea5b9dff95fde6d2c642d39755de", + "sha256:0d142fa1b8f2f0ae11ddd5e3e317dcac060b951d605fda26ca9b234b92214986", + "sha256:22ed12ee588b1df028a2aa5d66f07bf8f8b4c8579c2e96d5a9c1f96b77f3bb55", + "sha256:2746189100c646682eff0bce95efa7d2e203420d8e1c613dc0c6b4c1d9c1fde4", + "sha256:28e552a060ba2740d0d2aabe35162652c1459a0b9069fe0db7f4ee0e18e74d58", + "sha256:3287e1614393119c67bd4404f46e33ae3be3ed4cd10360b48d0a4459f420c6a3", + "sha256:3350f527bb04138f8aff932dc828f154847fbdc7a1a44c240fbfff1b57f49a12", + "sha256:3453685ccd7140715e05f2193d64030101eaad26076fad4e246c1cc97e1bb30d", + "sha256:394f08750bd8eaad714718812e7fab615f873b3cdd0b9d84e76e51ef3b50b6b7", + "sha256:4e316e54b5775d1eb59187f9290aeb38acf620e10f7fd2f776d97bb788199e53", + "sha256:50f1666a9940d3d68683c9d96e39640f709d7a72ff8702987dab1761036206bb", + "sha256:51d405b42f1b86703555797270e4970a9f9bd7953f3990142e69d1037f9d9e51", + "sha256:584f2d4c98ffec420e02305cf675857bae03c9d617fcfdc34946b1160213a948", + "sha256:5e09c19df304b8123938dc3c53d3d3be6ec74b9d7d0d80f4f4b5432ae16c2022", + "sha256:676ed48f2c5bbad835f1a8ed8a6d44c1cd5a21121116d2ac40bd1cd3619746ed", + "sha256:67f1a1fb467d3f49e1708a3f632b11c69fccb4e748a325d5a491ddc7b5d22383", + "sha256:6a51a1dd4aa7b3f1317f65493a182d3cff708385327c1c82c81e4a9d6d65b2e4", + "sha256:6bd7030c9abc80134087d8b6e7aa957e43d35714daa116aced57269a445b8f7b", + "sha256:75279d3cac98186b6ebc2597b06bcbc7244744f6b0b44a23e4ef01e5683cc0d2", + "sha256:7ac9237cd62947db00a0d16acf2f3e00d1ae9d3bd602b9c415f93e7a9fc10528", + "sha256:7ea210336b891f5ea334f8fc9f8f862b87acd5d4a0cbc9e3e208e7aa1775dabf", + "sha256:82790d4753ee5d00739d6cb5cf56bceb186d9d6ce134aca3ba7befb1eedbc2c8", + "sha256:92229f73400b80c13afcd050687f4d7e88de9234d74b27e6728aa689abcf58cc", + "sha256:9bea1f03b8d4e8e86702c918ccfd5d947ac268f0f0cc6ed71782e4b09353b26f", + "sha256:a980a77c52723b0dc56640ced396b73a024d4b74f02bcb2d21dbbac1debbe9d0", + "sha256:af9850d98fc21e5bc24ea9e35dd80a29faf6462c608728a110c0a30b595e58b7", + "sha256:bbc6989fad0c030bd70a0b6f626f98a862224bc2b1e36bfc531ea2facc0a340c", + "sha256:be51dd2c8596b25fe43c0a4a59c2bee4f18d88efb8031188f9e7ddc6b469cf44", + "sha256:c365ad9c394f9eeffcb30a82f4246c0006417f03a7c0f8315d6211f25f7cb654", + "sha256:c3d5731a120752248844676bf92f25a12f6e45425e63ce22e0849297a093b5b0", + "sha256:ca832e124eda231a60a041da4f013e3ff24949d94a01154b137fc2f2a43c3ffb", + "sha256:d207d5b87f6cbefbdb1198154292faee8017d7495a54ae58db06762004500d00", + "sha256:d31ee5b14a82c9afe2bd26aaa405293d4237d0591527d9129ce36e58f19f95c1", + "sha256:d3b5c4cbd0c9cb61bbbb19ce335e1f8ab87a811f6d589ed52b0254cf585d709c", + "sha256:d573082c6ef99336f2cb5b667b781d2f776d4af311574fb53d908517ba523c22", + "sha256:e49db944fad339b2ccb80128ffd3f8af076f9f287197a480bf1e4ca053a866f0" + ], + "markers": "python_version >= '3.7'", + "version": "==1.10.15" }, "pyrsistent": { "hashes": [ @@ -293,35 +304,27 @@ }, "setuptools": { "hashes": [ - "sha256:1e8fdff6797d3865f37397be788a4e3cba233608e9b509382a2777d25ebde7f2", - "sha256:735896e78a4742605974de002ac60562d286fa8051a7e2299445e8e8fbb01aa6" + "sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987", + "sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32" ], "markers": "python_version >= '3.8'", - "version": "==69.0.2" - }, - "six": { - "hashes": [ - "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", - "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" - ], - "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", - "version": "==1.16.0" + "version": "==69.5.1" }, "sniffio": { "hashes": [ - "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101", - "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384" + "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", + "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" ], "markers": "python_version >= '3.7'", - "version": "==1.3.0" + "version": "==1.3.1" }, "typing-extensions": { "hashes": [ - "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783", - "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd" + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" ], "markers": "python_version >= '3.8'", - "version": "==4.9.0" + "version": "==4.11.0" }, "wrapt": { "hashes": [ @@ -410,11 +413,11 @@ }, "attrs": { "hashes": [ - "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04", - "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015" + "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", + "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1" ], "markers": "python_version >= '3.7'", - "version": "==23.1.0" + "version": "==23.2.0" }, "black": { "hashes": [ @@ -448,11 +451,11 @@ }, "certifi": { "hashes": [ - "sha256:9b469f3a900bf28dc19b8cfbf8019bf47f7fdd1a65a1d4ffb98fc14166beb4d1", - "sha256:e036ab49d5b79556f99cfc2d9320b34cfbe5be05c5871b51de9329f0603b0474" + "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", + "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" ], "markers": "python_version >= '3.6'", - "version": "==2023.11.17" + "version": "==2024.2.2" }, "charset-normalizer": { "hashes": [ @@ -481,61 +484,61 @@ }, "coverage": { "hashes": [ - "sha256:007a7e49831cfe387473e92e9ff07377f6121120669ddc39674e7244350a6a29", - "sha256:1191270b06ecd68b1d00897b2daddb98e1719f63750969614ceb3438228c088e", - "sha256:1367aa411afb4431ab58fd7ee102adb2665894d047c490649e86219327183134", - "sha256:1f0f8f0c497eb9c9f18f21de0750c8d8b4b9c7000b43996a094290b59d0e7523", - "sha256:222b038f08a7ebed1e4e78ccf3c09a1ca4ac3da16de983e66520973443b546bc", - "sha256:243576944f7c1a1205e5cd658533a50eba662c74f9be4c050d51c69bd4532936", - "sha256:2e9223a18f51d00d3ce239c39fc41410489ec7a248a84fab443fbb39c943616c", - "sha256:307aecb65bb77cbfebf2eb6e12009e9034d050c6c69d8a5f3f737b329f4f15fb", - "sha256:31c0b1b8b5a4aebf8fcd227237fc4263aa7fa0ddcd4d288d42f50eff18b0bac4", - "sha256:3b15e03b8ee6a908db48eccf4e4e42397f146ab1e91c6324da44197a45cb9132", - "sha256:3c854c1d2c7d3e47f7120b560d1a30c1ca221e207439608d27bc4d08fd4aeae8", - "sha256:475de8213ed95a6b6283056d180b2442eee38d5948d735cd3d3b52b86dd65b92", - "sha256:50c472c1916540f8b2deef10cdc736cd2b3d1464d3945e4da0333862270dcb15", - "sha256:593efa42160c15c59ee9b66c5f27a453ed3968718e6e58431cdfb2d50d5ad284", - "sha256:65d716b736f16e250435473c5ca01285d73c29f20097decdbb12571d5dfb2c94", - "sha256:733537a182b5d62184f2a72796eb6901299898231a8e4f84c858c68684b25a70", - "sha256:757453848c18d7ab5d5b5f1827293d580f156f1c2c8cef45bfc21f37d8681069", - "sha256:79c32f875fd7c0ed8d642b221cf81feba98183d2ff14d1f37a1bbce6b0347d9f", - "sha256:7f3bad1a9313401ff2964e411ab7d57fb700a2d5478b727e13f156c8f89774a0", - "sha256:7fbf3f5756e7955174a31fb579307d69ffca91ad163467ed123858ce0f3fd4aa", - "sha256:811ca7373da32f1ccee2927dc27dc523462fd30674a80102f86c6753d6681bc6", - "sha256:89400aa1752e09f666cc48708eaa171eef0ebe3d5f74044b614729231763ae69", - "sha256:8c944cf1775235c0857829c275c777a2c3e33032e544bcef614036f337ac37bb", - "sha256:9437a4074b43c177c92c96d051957592afd85ba00d3e92002c8ef45ee75df438", - "sha256:9e17d9cb06c13b4f2ef570355fa45797d10f19ca71395910b249e3f77942a837", - "sha256:9ede881c7618f9cf93e2df0421ee127afdfd267d1b5d0c59bcea771cf160ea4a", - "sha256:a1f76cfc122c9e0f62dbe0460ec9cc7696fc9a0293931a33b8870f78cf83a327", - "sha256:a2ac4245f18057dfec3b0074c4eb366953bca6787f1ec397c004c78176a23d56", - "sha256:a702e66483b1fe602717020a0e90506e759c84a71dbc1616dd55d29d86a9b91f", - "sha256:ad2453b852a1316c8a103c9c970db8fbc262f4f6b930aa6c606df9b2766eee06", - "sha256:af75cf83c2d57717a8493ed2246d34b1f3398cb8a92b10fd7a1858cad8e78f59", - "sha256:afdcc10c01d0db217fc0a64f58c7edd635b8f27787fea0a3054b856a6dff8717", - "sha256:c59a3e59fb95e6d72e71dc915e6d7fa568863fad0a80b33bc7b82d6e9f844973", - "sha256:cad9afc1644b979211989ec3ff7d82110b2ed52995c2f7263e7841c846a75348", - "sha256:d299d379b676812e142fb57662a8d0d810b859421412b4d7af996154c00c31bb", - "sha256:d31650d313bd90d027f4be7663dfa2241079edd780b56ac416b56eebe0a21aab", - "sha256:d874434e0cb7b90f7af2b6e3309b0733cde8ec1476eb47db148ed7deeb2a9494", - "sha256:db0338c4b0951d93d547e0ff8d8ea340fecf5885f5b00b23be5aa99549e14cfd", - "sha256:df04c64e58df96b4427db8d0559e95e2df3138c9916c96f9f6a4dd220db2fdb7", - "sha256:e995efb191f04b01ced307dbd7407ebf6e6dc209b528d75583277b10fd1800ee", - "sha256:eda7f6e92358ac9e1717ce1f0377ed2b9320cea070906ece4e5c11d172a45a39", - "sha256:ee453085279df1bac0996bc97004771a4a052b1f1e23f6101213e3796ff3cb85", - "sha256:ee6621dccce8af666b8c4651f9f43467bfbf409607c604b840b78f4ff3619aeb", - "sha256:eee5e741b43ea1b49d98ab6e40f7e299e97715af2488d1c77a90de4a663a86e2", - "sha256:f3bfd2c2f0e5384276e12b14882bf2c7621f97c35320c3e7132c156ce18436a1", - "sha256:f501e36ac428c1b334c41e196ff6bd550c0353c7314716e80055b1f0a32ba394", - "sha256:f9191be7af41f0b54324ded600e8ddbcabea23e1e8ba419d9a53b241dece821d", - "sha256:fbd8a5fe6c893de21a3c6835071ec116d79334fbdf641743332e442a3466f7ea", - "sha256:fc200cec654311ca2c3f5ab3ce2220521b3d4732f68e1b1e79bef8fcfc1f2b97", - "sha256:ff4800783d85bff132f2cc7d007426ec698cdce08c3062c8d501ad3f4ea3d16c", - "sha256:ffb0eacbadb705c0a6969b0adf468f126b064f3362411df95f6d4f31c40d31c1", - "sha256:fff0b2f249ac642fd735f009b8363c2b46cf406d3caec00e4deeb79b5ff39b40" + "sha256:0646599e9b139988b63704d704af8e8df7fa4cbc4a1f33df69d97f36cb0a38de", + "sha256:0cdcbc320b14c3e5877ee79e649677cb7d89ef588852e9583e6b24c2e5072661", + "sha256:0d0a0f5e06881ecedfe6f3dd2f56dcb057b6dbeb3327fd32d4b12854df36bf26", + "sha256:1434e088b41594baa71188a17533083eabf5609e8e72f16ce8c186001e6b8c41", + "sha256:16db7f26000a07efcf6aea00316f6ac57e7d9a96501e990a36f40c965ec7a95d", + "sha256:1cc0fe9b0b3a8364093c53b0b4c0c2dd4bb23acbec4c9240b5f284095ccf7981", + "sha256:1fc81d5878cd6274ce971e0a3a18a8803c3fe25457165314271cf78e3aae3aa2", + "sha256:2ec92012fefebee89a6b9c79bc39051a6cb3891d562b9270ab10ecfdadbc0c34", + "sha256:39afcd3d4339329c5f58de48a52f6e4e50f6578dd6099961cf22228feb25f38f", + "sha256:4a7b0ceee8147444347da6a66be737c9d78f3353b0681715b668b72e79203e4a", + "sha256:4a9ca3f2fae0088c3c71d743d85404cec8df9be818a005ea065495bedc33da35", + "sha256:4bf0655ab60d754491004a5efd7f9cccefcc1081a74c9ef2da4735d6ee4a6223", + "sha256:4cc37def103a2725bc672f84bd939a6fe4522310503207aae4d56351644682f1", + "sha256:4fc84a37bfd98db31beae3c2748811a3fa72bf2007ff7902f68746d9757f3746", + "sha256:5037f8fcc2a95b1f0e80585bd9d1ec31068a9bcb157d9750a172836e98bc7a90", + "sha256:54de9ef3a9da981f7af93eafde4ede199e0846cd819eb27c88e2b712aae9708c", + "sha256:556cf1a7cbc8028cb60e1ff0be806be2eded2daf8129b8811c63e2b9a6c43bca", + "sha256:57e0204b5b745594e5bc14b9b50006da722827f0b8c776949f1135677e88d0b8", + "sha256:5a5740d1fb60ddf268a3811bcd353de34eb56dc24e8f52a7f05ee513b2d4f596", + "sha256:5c3721c2c9e4c4953a41a26c14f4cef64330392a6d2d675c8b1db3b645e31f0e", + "sha256:5fa567e99765fe98f4e7d7394ce623e794d7cabb170f2ca2ac5a4174437e90dd", + "sha256:5fd215c0c7d7aab005221608a3c2b46f58c0285a819565887ee0b718c052aa4e", + "sha256:6175d1a0559986c6ee3f7fccfc4a90ecd12ba0a383dcc2da30c2b9918d67d8a3", + "sha256:61c4bf1ba021817de12b813338c9be9f0ad5b1e781b9b340a6d29fc13e7c1b5e", + "sha256:6537e7c10cc47c595828b8a8be04c72144725c383c4702703ff4e42e44577312", + "sha256:68f962d9b72ce69ea8621f57551b2fa9c70509af757ee3b8105d4f51b92b41a7", + "sha256:7352b9161b33fd0b643ccd1f21f3a3908daaddf414f1c6cb9d3a2fd618bf2572", + "sha256:796a79f63eca8814ca3317a1ea443645c9ff0d18b188de470ed7ccd45ae79428", + "sha256:79afb6197e2f7f60c4824dd4b2d4c2ec5801ceb6ba9ce5d2c3080e5660d51a4f", + "sha256:7a588d39e0925f6a2bff87154752481273cdb1736270642aeb3635cb9b4cad07", + "sha256:8748731ad392d736cc9ccac03c9845b13bb07d020a33423fa5b3a36521ac6e4e", + "sha256:8fe7502616b67b234482c3ce276ff26f39ffe88adca2acf0261df4b8454668b4", + "sha256:9314d5678dcc665330df5b69c1e726a0e49b27df0461c08ca12674bcc19ef136", + "sha256:9735317685ba6ec7e3754798c8871c2f49aa5e687cc794a0b1d284b2389d1bd5", + "sha256:9981706d300c18d8b220995ad22627647be11a4276721c10911e0e9fa44c83e8", + "sha256:9e78295f4144f9dacfed4f92935fbe1780021247c2fabf73a819b17f0ccfff8d", + "sha256:b016ea6b959d3b9556cb401c55a37547135a587db0115635a443b2ce8f1c7228", + "sha256:b6cf3764c030e5338e7f61f95bd21147963cf6aa16e09d2f74f1fa52013c1206", + "sha256:beccf7b8a10b09c4ae543582c1319c6df47d78fd732f854ac68d518ee1fb97fa", + "sha256:c0884920835a033b78d1c73b6d3bbcda8161a900f38a488829a83982925f6c2e", + "sha256:c3e757949f268364b96ca894b4c342b41dc6f8f8b66c37878aacef5930db61be", + "sha256:ca498687ca46a62ae590253fba634a1fe9836bc56f626852fb2720f334c9e4e5", + "sha256:d1d0d98d95dd18fe29dc66808e1accf59f037d5716f86a501fc0256455219668", + "sha256:d21918e9ef11edf36764b93101e2ae8cc82aa5efdc7c5a4e9c6c35a48496d601", + "sha256:d7fed867ee50edf1a0b4a11e8e5d0895150e572af1cd6d315d557758bfa9c057", + "sha256:db66fc317a046556a96b453a58eced5024af4582a8dbdc0c23ca4dbc0d5b3146", + "sha256:dde0070c40ea8bb3641e811c1cfbf18e265d024deff6de52c5950677a8fb1e0f", + "sha256:df4e745a81c110e7446b1cc8131bf986157770fa405fe90e15e850aaf7619bc8", + "sha256:e2213def81a50519d7cc56ed643c9e93e0247f5bbe0d1247d15fa520814a7cd7", + "sha256:ef48e2707fb320c8f139424a596f5b69955a85b178f15af261bab871873bb987", + "sha256:f152cbf5b88aaeb836127d920dd0f5e7edff5a66f10c079157306c4343d86c19", + "sha256:fc0b4d8bfeabd25ea75e94632f5b6e047eef8adaed0c2161ada1e922e7f7cece" ], "markers": "python_version >= '3.8'", - "version": "==7.3.3" + "version": "==7.5.1" }, "flake8": { "hashes": [ @@ -574,11 +577,11 @@ }, "idna": { "hashes": [ - "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca", - "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f" + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" ], "markers": "python_version >= '3.5'", - "version": "==3.6" + "version": "==3.7" }, "iniconfig": { "hashes": [ @@ -636,11 +639,11 @@ }, "packaging": { "hashes": [ - "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5", - "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7" + "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", + "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" ], "markers": "python_version >= '3.7'", - "version": "==23.2" + "version": "==24.0" }, "pathspec": { "hashes": [ @@ -652,19 +655,19 @@ }, "platformdirs": { "hashes": [ - "sha256:11c8f37bcca40db96d8144522d925583bdb7a31f7b0e37e3ed4318400a8e2380", - "sha256:906d548203468492d432bcb294d4bc2fff751bf84971fbb2c10918cc206ee420" + "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", + "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3" ], "markers": "python_version >= '3.8'", - "version": "==4.1.0" + "version": "==4.2.2" }, "pluggy": { "hashes": [ - "sha256:cf61ae8f126ac6f7c451172cf30e3e43d3ca77615509771b3a984a0730651e12", - "sha256:d89c696a773f8bd377d18e5ecda92b7a3793cbe66c87060a6fb58c7b6e1061f7" + "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", + "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" ], "markers": "python_version >= '3.8'", - "version": "==1.3.0" + "version": "==1.5.0" }, "py": { "hashes": [ @@ -716,6 +719,15 @@ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'", "version": "==2.10.1" }, + "pyusb": { + "hashes": [ + "sha256:2b4c7cb86dbadf044dfb9d3a4ff69fd217013dbe78a792177a3feb172449ea36", + "sha256:a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9" + ], + "index": "pypi", + "markers": "python_full_version >= '3.6.0'", + "version": "==1.2.1" + }, "requests": { "hashes": [ "sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61", @@ -737,7 +749,7 @@ "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc", "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f" ], - "markers": "python_version >= '3.7'", + "markers": "python_version < '3.11'", "version": "==2.0.1" }, "types-requests": { @@ -750,11 +762,11 @@ }, "typing-extensions": { "hashes": [ - "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783", - "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd" + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" ], "markers": "python_version >= '3.8'", - "version": "==4.9.0" + "version": "==4.11.0" }, "urllib3": { "hashes": [ diff --git a/hardware-testing/hardware_testing/gravimetric/config.py b/hardware-testing/hardware_testing/gravimetric/config.py index f80d87d7124..394309b43f4 100644 --- a/hardware-testing/hardware_testing/gravimetric/config.py +++ b/hardware-testing/hardware_testing/gravimetric/config.py @@ -90,7 +90,6 @@ class PhotometricConfig(VolumetricConfig): 1: { 50: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 11, "plunger_speed": 21, "sensor_threshold_pascals": 150, @@ -99,7 +98,6 @@ class PhotometricConfig(VolumetricConfig): 8: { 50: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 11, "plunger_speed": 21, "sensor_threshold_pascals": 150, @@ -110,21 +108,18 @@ class PhotometricConfig(VolumetricConfig): 1: { 50: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 10, "sensor_threshold_pascals": 200, }, 200: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 10, "sensor_threshold_pascals": 200, }, 1000: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 11, "sensor_threshold_pascals": 150, @@ -133,21 +128,18 @@ class PhotometricConfig(VolumetricConfig): 8: { 50: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 10, "sensor_threshold_pascals": 200, }, 200: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 10, "sensor_threshold_pascals": 200, }, 1000: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 11, "sensor_threshold_pascals": 150, @@ -156,21 +148,18 @@ class PhotometricConfig(VolumetricConfig): 96: { 50: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 10, "sensor_threshold_pascals": 200, }, 200: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 10, "sensor_threshold_pascals": 200, }, 1000: { "max_z_distance": 20, - "min_z_distance": 5, "mount_speed": 5, "plunger_speed": 11, "sensor_threshold_pascals": 150, @@ -189,7 +178,6 @@ def _get_liquid_probe_settings( return LiquidProbeSettings( starting_mount_height=well.top().point.z, max_z_distance=min(well.depth, lqid_cfg["max_z_distance"]), - min_z_distance=lqid_cfg["min_z_distance"], mount_speed=lqid_cfg["mount_speed"], plunger_speed=lqid_cfg["plunger_speed"], sensor_threshold_pascals=lqid_cfg["sensor_threshold_pascals"], diff --git a/hardware-testing/hardware_testing/gravimetric/helpers.py b/hardware-testing/hardware_testing/gravimetric/helpers.py index 135eced1f5d..842788bfd5b 100644 --- a/hardware-testing/hardware_testing/gravimetric/helpers.py +++ b/hardware-testing/hardware_testing/gravimetric/helpers.py @@ -19,13 +19,13 @@ from opentrons.protocol_api._nozzle_layout import NozzleLayout from opentrons.protocols.types import APIVersion from opentrons.hardware_control.thread_manager import ThreadManager -from opentrons.hardware_control.types import OT3Mount, Axis +from opentrons.hardware_control.types import OT3Mount, Axis, HardwareFeatureFlags from opentrons.hardware_control.ot3api import OT3API from opentrons.hardware_control.instruments.ot3.pipette import Pipette from opentrons import execute, simulate -from opentrons.types import Point, Location - +from opentrons.types import Point, Location, Mount +from opentrons.config.types import OT3Config, RobotConfig from opentrons_shared_data.labware.dev_types import LabwareDefinition from hardware_testing.opentrons_api import helpers_ot3 @@ -81,7 +81,17 @@ def get_api_context( """Get api context.""" async def _thread_manager_build_hw_api( - *args: Any, loop: asyncio.AbstractEventLoop, **kwargs: Any + attached_instruments: Optional[ + Dict[Union[Mount, OT3Mount], Dict[str, Optional[str]]] + ] = None, + attached_modules: Optional[List[str]] = None, + config: Union[OT3Config, RobotConfig, None] = None, + loop: Optional[asyncio.AbstractEventLoop] = None, + strict_attached_instruments: bool = True, + use_usb_bus: bool = False, + update_firmware: bool = True, + status_bar_enabled: bool = True, + feature_flags: Optional[HardwareFeatureFlags] = None, ) -> OT3API: return await helpers_ot3.build_async_ot3_hardware_api( is_simulating=is_simulating, diff --git a/hardware-testing/hardware_testing/liquid_sense/__main__.py b/hardware-testing/hardware_testing/liquid_sense/__main__.py index af83c031436..eb118c2edff 100644 --- a/hardware-testing/hardware_testing/liquid_sense/__main__.py +++ b/hardware-testing/hardware_testing/liquid_sense/__main__.py @@ -94,8 +94,9 @@ class RunArgs: start_height_offset: float aspirate: bool dial_indicator: Optional[mitutoyo_digimatic_indicator.Mitutoyo_Digimatic_Indicator] - plunger_speed: bool + plunger_speed: float trials_before_jog: int + multi_passes: int @classmethod def _get_protocol_context(cls, args: argparse.Namespace) -> ProtocolContext: @@ -236,6 +237,7 @@ def build_run_args(cls, args: argparse.Namespace) -> "RunArgs": dial_indicator=dial, plunger_speed=args.plunger_speed, trials_before_jog=args.trials_before_jog, + multi_passes=args.multi_passes, ) @@ -266,6 +268,7 @@ def build_run_args(cls, args: argparse.Namespace) -> "RunArgs": parser.add_argument("--ignore-env", action="store_true") parser.add_argument("--ignore-dial", action="store_true") parser.add_argument("--trials-before-jog", type=int, default=10) + parser.add_argument("--multi-passes", type=int, default=1) args = parser.parse_args() run_args = RunArgs.build_run_args(args) diff --git a/hardware-testing/hardware_testing/liquid_sense/execute.py b/hardware-testing/hardware_testing/liquid_sense/execute.py index 46368568bf2..05be865015f 100644 --- a/hardware-testing/hardware_testing/liquid_sense/execute.py +++ b/hardware-testing/hardware_testing/liquid_sense/execute.py @@ -26,6 +26,15 @@ from opentrons.protocol_api import ProtocolContext, Well, Labware +from opentrons_shared_data.errors.exceptions import LiquidNotFoundError + + +PROBE_MAX_TIME: Dict[int, float] = { + 1: 2.75, + 8: 1.75, + 96: 0.85, +} + def _load_tipracks( ctx: ProtocolContext, pipette_channels: int, protocol_cfg: Any, tip: int @@ -280,6 +289,41 @@ def _get_target_height() -> float: store_tip_results(run_args.test_report, tip, results, adjusted_results) +def get_plunger_travel(run_args: RunArgs) -> float: + """Get the travel distance for the pipette.""" + hw_mount = OT3Mount.LEFT if run_args.pipette.mount == "left" else OT3Mount.RIGHT + hw_api = get_sync_hw_api(run_args.ctx) + plunger_positions = hw_api._pipette_handler.get_pipette(hw_mount).plunger_positions + plunger_travel = plunger_positions.bottom - plunger_positions.top + return plunger_travel + + +def find_max_z_distances( + run_args: RunArgs, tip: int, well: Well, p_speed: float +) -> List[float]: + """Returns a list of max z distances for each probe. + + Each element is the max travel for the z mount for a particular call + to hw_api.liquid_probe, it is the limit of z distance the pipette can + move with the combination of z speed and plunger speed, + if the distance would exceed the well depth then the number is + truncated to avoid collisions. + """ + z_speed = run_args.z_speed + max_z_distance = well.depth + run_args.start_height_offset + plunger_travel = get_plunger_travel(run_args) + p_travel_time = min( + plunger_travel / p_speed, PROBE_MAX_TIME[run_args.pipette_channels] + ) + + z_travels: List[float] = [] + while max_z_distance > 0: + next_travel = min(p_travel_time * z_speed, max_z_distance) + z_travels.append(next_travel) + max_z_distance -= next_travel + return z_travels + + def _run_trial(run_args: RunArgs, tip: int, well: Well, trial: int) -> float: hw_api = get_sync_hw_api(run_args.ctx) lqid_cfg: Dict[str, int] = LIQUID_PROBE_SETTINGS[run_args.pipette_volume][ @@ -303,25 +347,36 @@ def _run_trial(run_args: RunArgs, tip: int, well: Well, trial: int) -> float: if run_args.plunger_speed == -1 else run_args.plunger_speed ) - lps = LiquidProbeSettings( - starting_mount_height=well.top().point.z + run_args.start_height_offset, - max_z_distance=min(well.depth, lqid_cfg["max_z_distance"]), - min_z_distance=lqid_cfg["min_z_distance"], - mount_speed=run_args.z_speed, - plunger_speed=plunger_speed, - sensor_threshold_pascals=lqid_cfg["sensor_threshold_pascals"], - expected_liquid_height=110, - output_option=OutputOptions.sync_buffer_to_csv, - aspirate_while_sensing=run_args.aspirate, - auto_zero_sensor=True, - num_baseline_reads=10, - data_files=data_files, - ) - hw_mount = OT3Mount.LEFT if run_args.pipette.mount == "left" else OT3Mount.RIGHT - run_args.recorder.set_sample_tag(f"trial-{trial}-{tip}ul") - # TODO add in stuff for secondary probe - height = hw_api.liquid_probe(hw_mount, lps, probe_target) + z_distances: List[float] = find_max_z_distances(run_args, tip, well, plunger_speed) + z_distances = z_distances[: run_args.multi_passes] + start_height = well.top().point.z + run_args.start_height_offset + for z_dist in z_distances: + lps = LiquidProbeSettings( + starting_mount_height=start_height, + max_z_distance=z_dist, + mount_speed=run_args.z_speed, + plunger_speed=plunger_speed, + sensor_threshold_pascals=lqid_cfg["sensor_threshold_pascals"], + expected_liquid_height=110, + output_option=OutputOptions.sync_buffer_to_csv, + aspirate_while_sensing=run_args.aspirate, + auto_zero_sensor=True, + num_baseline_reads=10, + data_files=data_files, + ) + + hw_mount = OT3Mount.LEFT if run_args.pipette.mount == "left" else OT3Mount.RIGHT + run_args.recorder.set_sample_tag(f"trial-{trial}-{tip}ul") + # TODO add in stuff for secondary probe + try: + height = hw_api.liquid_probe(hw_mount, lps, probe_target) + except LiquidNotFoundError as lnf: + ui.print_info(f"Liquid not found current position {lnf.detail}") + start_height -= z_dist + else: + break + run_args.recorder.clear_sample_tag() + ui.print_info(f"Trial {trial} complete") - run_args.recorder.clear_sample_tag() return height diff --git a/hardware-testing/hardware_testing/production_qc/pipette_assembly_qc_ot3/__main__.py b/hardware-testing/hardware_testing/production_qc/pipette_assembly_qc_ot3/__main__.py index 5e482afa6e7..fabdb101256 100644 --- a/hardware-testing/hardware_testing/production_qc/pipette_assembly_qc_ot3/__main__.py +++ b/hardware-testing/hardware_testing/production_qc/pipette_assembly_qc_ot3/__main__.py @@ -1377,7 +1377,6 @@ async def _test_liquid_probe( probe_settings = LiquidProbeSettings( starting_mount_height=start_pos.z, max_z_distance=max_z_distance_machine_coords, # FIXME: deck coords - min_z_distance=0, # FIXME: remove mount_speed=probe_cfg.mount_speed, plunger_speed=probe_cfg.plunger_speed, sensor_threshold_pascals=probe_cfg.sensor_threshold_pascals, diff --git a/hardware-testing/hardware_testing/scripts/abr_asair_sensor.py b/hardware-testing/hardware_testing/scripts/abr_asair_sensor.py index aa66f230409..33195dacd5a 100644 --- a/hardware-testing/hardware_testing/scripts/abr_asair_sensor.py +++ b/hardware-testing/hardware_testing/scripts/abr_asair_sensor.py @@ -25,7 +25,7 @@ def __init__(self, robot: str, duration: int, frequency: int) -> None: test_name = "ABR-Environment-Monitoring" run_id = data.create_run_id() file_name = data.create_file_name(test_name, run_id, robot) - sensor = asair_sensor.BuildAsairSensor(False, True) + sensor = asair_sensor.BuildAsairSensor(False, False) print(sensor) env_data = sensor.get_reading() header = [ diff --git a/hardware/opentrons_hardware/hardware_control/current_settings.py b/hardware/opentrons_hardware/hardware_control/current_settings.py index 05ce065f379..3603e2dec2e 100644 --- a/hardware/opentrons_hardware/hardware_control/current_settings.py +++ b/hardware/opentrons_hardware/hardware_control/current_settings.py @@ -73,7 +73,7 @@ async def set_run_current( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to set run current for {str(node)}" + f"received error {str(error)} trying to set run current for {str(node)}" ) @@ -97,5 +97,5 @@ async def set_hold_current( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to set run current for {str(node)}" + f"received error {str(error)} trying to set run current for {str(node)}" ) diff --git a/hardware/opentrons_hardware/hardware_control/gripper_settings.py b/hardware/opentrons_hardware/hardware_control/gripper_settings.py index e048a072412..de8a9e7ac0e 100644 --- a/hardware/opentrons_hardware/hardware_control/gripper_settings.py +++ b/hardware/opentrons_hardware/hardware_control/gripper_settings.py @@ -64,7 +64,7 @@ async def set_reference_voltage( expected_nodes=[NodeId.gripper_g], ) if error != ErrorCode.ok: - log.error(f"recieved error trying to set gripper vref {str(error)}") + log.error(f"received error trying to set gripper vref {str(error)}") async def set_pwm_param( @@ -80,7 +80,7 @@ async def set_pwm_param( expected_nodes=[NodeId.gripper_g], ) if error != ErrorCode.ok: - log.error(f"recieved error trying to set gripper pwm {str(error)}") + log.error(f"received error trying to set gripper pwm {str(error)}") async def set_error_tolerance( @@ -100,7 +100,7 @@ async def set_error_tolerance( expected_nodes=[NodeId.gripper_g], ) if error != ErrorCode.ok: - log.error(f"recieved error trying to set gripper error tolerance {str(error)}") + log.error(f"received error trying to set gripper error tolerance {str(error)}") async def set_jaw_holdoff( @@ -119,7 +119,7 @@ async def set_jaw_holdoff( ) if error != ErrorCode.ok: log.error( - f"recieved error trying to set gripper jaw holdoff value {str(error)}" + f"received error trying to set gripper jaw holdoff value {str(error)}" ) diff --git a/hardware/opentrons_hardware/hardware_control/hepa_uv_settings.py b/hardware/opentrons_hardware/hardware_control/hepa_uv_settings.py index 2812cdf3f7d..e51e48fd8ad 100644 --- a/hardware/opentrons_hardware/hardware_control/hepa_uv_settings.py +++ b/hardware/opentrons_hardware/hardware_control/hepa_uv_settings.py @@ -64,7 +64,7 @@ async def set_hepa_fan_state( expected_nodes=[NodeId.hepa_uv], ) if error != ErrorCode.ok: - log.error(f"recieved error trying to set hepa fan state {str(error)}") + log.error(f"received error trying to set hepa fan state {str(error)}") return error == ErrorCode.ok @@ -117,7 +117,7 @@ async def set_hepa_uv_state( expected_nodes=[NodeId.hepa_uv], ) if error != ErrorCode.ok: - log.error(f"recieved error trying to set hepa uv light state {str(error)}") + log.error(f"received error trying to set hepa uv light state {str(error)}") return error == ErrorCode.ok diff --git a/hardware/opentrons_hardware/hardware_control/limit_switches.py b/hardware/opentrons_hardware/hardware_control/limit_switches.py index 1764d34c9b4..b2040f21077 100644 --- a/hardware/opentrons_hardware/hardware_control/limit_switches.py +++ b/hardware/opentrons_hardware/hardware_control/limit_switches.py @@ -35,7 +35,7 @@ def _listener(message: MessageDefinition, arbitration_id: ArbitrationId) -> None ) return if message.message_id == MessageId.error_message: - log.error(f"recieved an error {str(message)}") + log.error(f"received an error {str(message)}") return elif message.message_id != MessageId.limit_sw_response: log.warning(f"unexpected message id: 0x{message.message_id:x}") diff --git a/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py b/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py index 32897d16679..c82dfee5f0a 100644 --- a/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py +++ b/hardware/opentrons_hardware/hardware_control/motor_enable_disable.py @@ -38,7 +38,7 @@ async def set_enable_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to enable {str(node)} ") + log.error(f"received error {str(error)} trying to enable {str(node)} ") async def set_disable_motor( @@ -53,7 +53,7 @@ async def set_disable_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to disable {str(node)} ") + log.error(f"received error {str(error)} trying to disable {str(node)} ") async def set_enable_tip_motor( @@ -68,7 +68,7 @@ async def set_enable_tip_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to enable {str(node)} ") + log.error(f"received error {str(error)} trying to enable {str(node)} ") async def set_disable_tip_motor( @@ -83,7 +83,7 @@ async def set_disable_tip_motor( expected_nodes=[node], ) if error != ErrorCode.ok: - log.error(f"recieved error {str(error)} trying to disable {str(node)} ") + log.error(f"received error {str(error)} trying to disable {str(node)} ") async def get_motor_enabled( diff --git a/hardware/opentrons_hardware/hardware_control/tool_sensors.py b/hardware/opentrons_hardware/hardware_control/tool_sensors.py index c2dcac25502..0676a29967a 100644 --- a/hardware/opentrons_hardware/hardware_control/tool_sensors.py +++ b/hardware/opentrons_hardware/hardware_control/tool_sensors.py @@ -72,7 +72,8 @@ # FIXME we should restrict some of these functions by instrument type. -def _build_pass_step( +def _fix_pass_step_for_buffer( + move_group: MoveGroupStep, movers: List[NodeId], distance: Dict[NodeId, float], speed: Dict[NodeId, float], @@ -82,8 +83,7 @@ def _build_pass_step( pipette_nodes = [ i for i in movers if i in [NodeId.pipette_left, NodeId.pipette_right] ] - - move_group = create_step( + pipette_move = create_step( distance={ax: float64(abs(distance[ax])) for ax in movers}, velocity={ ax: float64(speed[ax] * copysign(1.0, distance[ax])) for ax in movers @@ -92,10 +92,23 @@ def _build_pass_step( # use any node present to calculate duration of the move, assuming the durations # will be the same duration=float64(abs(distance[movers[0]] / speed[movers[0]])), - present_nodes=movers, - stop_condition=stop_condition, + present_nodes=pipette_nodes, + stop_condition=MoveStopCondition.sensor_report, + sensor_to_use=sensor_to_use, ) - pipette_move = create_step( + for node in pipette_nodes: + move_group[node] = pipette_move[node] + return move_group + + +def _build_pass_step( + movers: List[NodeId], + distance: Dict[NodeId, float], + speed: Dict[NodeId, float], + stop_condition: MoveStopCondition = MoveStopCondition.sync_line, + sensor_to_use: Optional[SensorId] = None, +) -> MoveGroupStep: + move_group = create_step( distance={ax: float64(abs(distance[ax])) for ax in movers}, velocity={ ax: float64(speed[ax] * copysign(1.0, distance[ax])) for ax in movers @@ -104,12 +117,9 @@ def _build_pass_step( # use any node present to calculate duration of the move, assuming the durations # will be the same duration=float64(abs(distance[movers[0]] / speed[movers[0]])), - present_nodes=pipette_nodes, - stop_condition=MoveStopCondition.sensor_report, - sensor_to_use=sensor_to_use, + present_nodes=movers, + stop_condition=stop_condition, ) - for node in pipette_nodes: - move_group[node] = pipette_move[node] return move_group @@ -144,7 +154,7 @@ async def run_sync_buffer_to_csv( ) ), ) - await asyncio.sleep(10) + await sensor_capturer.wait_for_complete() messenger.remove_listener(sensor_capturer) await messenger.send( node_id=tool, @@ -323,6 +333,15 @@ async def liquid_probe( stop_condition=MoveStopCondition.sync_line, sensor_to_use=sensor_id, ) + if sync_buffer_output: + sensor_group = _fix_pass_step_for_buffer( + sensor_group, + movers=[head_node, tool], + distance={head_node: max_z_distance, tool: max_z_distance}, + speed={head_node: mount_speed, tool: plunger_speed}, + stop_condition=MoveStopCondition.sync_line, + sensor_to_use=sensor_id, + ) sensor_runner = MoveGroupRunner(move_groups=[[sensor_group]]) if csv_output: diff --git a/hardware/opentrons_hardware/hardware_control/tools/detector.py b/hardware/opentrons_hardware/hardware_control/tools/detector.py index fd526406405..7483886c52f 100644 --- a/hardware/opentrons_hardware/hardware_control/tools/detector.py +++ b/hardware/opentrons_hardware/hardware_control/tools/detector.py @@ -16,6 +16,7 @@ PipetteInformation, ToolSummary, GripperInformation, + HepaUVInformation, ) from opentrons_hardware.hardware_control.tools.types import ToolDetectionResult @@ -44,7 +45,7 @@ async def _await_one_result(callback: WaitableCallback) -> ToolDetectionResult: if isinstance(response, message_definitions.PushToolsDetectedNotification): return _handle_detection_result(response) if isinstance(response, message_definitions.ErrorMessage): - log.error(f"Recieved error message {str(response)}") + log.error(f"Received error message {str(response)}") raise CanbusCommunicationError(message="Messenger closed before a tool was found") @@ -58,7 +59,7 @@ def _decode_or_default(orig: bytes) -> str: async def _await_responses( callback: WaitableCallback, for_nodes: Set[NodeId], - response_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation]]]", + response_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation, HepaUVInformation]]]", ) -> None: """Wait for pipette or gripper information and send back through a queue.""" seen: Set[NodeId] = set() @@ -77,12 +78,34 @@ async def _await_responses( ) seen.add(node) break + elif isinstance(response, message_definitions.HepaUVInfoResponse): + node = await _handle_hepa_uv_info( + response_queue, response, arbitration_id + ) elif isinstance(response, message_definitions.ErrorMessage): - log.error(f"Recieved error message {str(response)}") + log.error(f"Received error message {str(response)}") + + +async def _handle_hepa_uv_info( + response_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation, HepaUVInformation]]]", + response: message_definitions.HepaUVInfoResponse, + arbitration_id: ArbitrationId, +) -> NodeId: + node = NodeId(arbitration_id.parts.originating_node_id) + await response_queue.put( + ( + node, + HepaUVInformation( + model=model_versionstring_from_int(response.payload.model.value), + serial=_decode_or_default(response.payload.serial.value), + ), + ) + ) + return node async def _handle_gripper_info( - response_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation]]]", + response_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation, HepaUVInformation]]]", response: message_definitions.GripperInfoResponse, arbitration_id: ArbitrationId, ) -> NodeId: @@ -100,7 +123,7 @@ async def _handle_gripper_info( async def _handle_pipette_info( - response_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation]]]", + response_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation, HepaUVInformation]]]", response: message_definitions.PipetteInfoResponse, arbitration_id: ArbitrationId, ) -> NodeId: @@ -139,7 +162,9 @@ def _should_query(attach_response: ToolType) -> bool: IntermediateResolution = Tuple[ - Dict[NodeId, PipetteInformation], Dict[NodeId, GripperInformation] + Dict[NodeId, PipetteInformation], + Dict[NodeId, GripperInformation], + Dict[NodeId, HepaUVInformation], ] @@ -153,7 +178,7 @@ async def _do_tool_resolve( node_id=NodeId.broadcast, message=message_definitions.InstrumentInfoRequest(), ) - incoming_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation]]]" = ( + incoming_queue: "asyncio.Queue[Tuple[NodeId, Union[PipetteInformation, GripperInformation, HepaUVInformation]]]" = ( asyncio.Queue() ) try: @@ -166,14 +191,17 @@ async def _do_tool_resolve( pipettes: Dict[NodeId, PipetteInformation] = {} gripper: Dict[NodeId, GripperInformation] = {} + hepa_uv: Dict[NodeId, HepaUVInformation] = {} while not incoming_queue.empty(): node, info = incoming_queue.get_nowait() if isinstance(info, PipetteInformation): pipettes[node] = info - else: + elif isinstance(info, GripperInformation): gripper[node] = info + elif isinstance(info, HepaUVInformation): + hepa_uv[node] = info - return pipettes, gripper + return pipettes, gripper, hepa_uv async def _resolve_with_stimulus_retries( @@ -187,15 +215,23 @@ async def _resolve_with_stimulus_retries( should_respond ) expected_gripper = {NodeId.gripper}.intersection(should_respond) + expected_hepa_uv = {NodeId.hepa_uv}.intersection(should_respond) while True: - pipettes, gripper = await _do_tool_resolve( + pipettes, gripper, hepa_uv = await _do_tool_resolve( messenger, wc, should_respond, attempt_timeout_sec ) - output_queue.put_nowait((pipettes, gripper)) + output_queue.put_nowait((pipettes, gripper, hepa_uv)) seen_pipettes = set([k.application_for() for k in pipettes.keys()]) seen_gripper = set([k.application_for() for k in gripper.keys()]) - if seen_pipettes == expected_pipettes and seen_gripper == expected_gripper: + seen_hepa_uv = set([k.application_for() for k in hepa_uv.keys()]) + if all( + [ + seen_pipettes == expected_pipettes, + seen_gripper == expected_gripper, + seen_hepa_uv == expected_hepa_uv, + ] + ): return @@ -222,7 +258,7 @@ async def _resolve_tool_types( except asyncio.TimeoutError: log.warning("No response from expected tool") - last_element: IntermediateResolution = ({}, {}) + last_element: IntermediateResolution = ({}, {}, {}) try: while True: last_element = resolve_queue.get_nowait() diff --git a/hardware/opentrons_hardware/hardware_control/tools/types.py b/hardware/opentrons_hardware/hardware_control/tools/types.py index 1d9d4286931..48439b5a444 100644 --- a/hardware/opentrons_hardware/hardware_control/tools/types.py +++ b/hardware/opentrons_hardware/hardware_control/tools/types.py @@ -15,21 +15,29 @@ class ToolDetectionResult: @dataclass(frozen=True) -class GripperInformation: - """Model the information you can retrieve from a gripper.""" +class BaseToolInformation: + """Model the base information you can retrieve from any tool.""" model: str serial: str @dataclass(frozen=True) -class PipetteInformation: +class GripperInformation(BaseToolInformation): + """Model the information you can retrieve from a gripper.""" + + +@dataclass(frozen=True) +class HepaUVInformation(BaseToolInformation): + """Model the information you can retrieve from a hepa/uv device.""" + + +@dataclass(frozen=True) +class PipetteInformation(BaseToolInformation): """Model the information you can retrieve from a pipette.""" name: PipetteName name_int: int - model: str - serial: str @dataclass(frozen=True) diff --git a/hardware/opentrons_hardware/scripts/lld_data_script.py b/hardware/opentrons_hardware/scripts/lld_data_script.py index 3baa2e4049e..c06ad26d6b1 100644 --- a/hardware/opentrons_hardware/scripts/lld_data_script.py +++ b/hardware/opentrons_hardware/scripts/lld_data_script.py @@ -2,6 +2,7 @@ import csv import os import argparse +import sys from typing import List, Optional, Tuple, Any, Dict import matplotlib.pyplot as plot import numpy @@ -21,7 +22,7 @@ def name() -> str: ... @abstractmethod - def tick(self, pressure: float) -> Tuple[bool, float]: + def tick(self, pressures: Tuple[float, float]) -> Tuple[bool, Tuple[float, float]]: """Simulate firmware motor interrupt tick.""" ... @@ -45,9 +46,12 @@ def name() -> str: """Name of this algorithm.""" return "{:<30}".format("simple threshold") - def tick(self, pressure: float) -> Tuple[bool, float]: + def tick(self, pressures: Tuple[float, float]) -> Tuple[bool, Tuple[float, float]]: """Simulate firmware motor interrupt tick.""" - return (pressure < self.threshold, pressure) + return ( + pressures[0] < self.threshold or pressures[1] < self.threshold, + pressures, + ) def reset(self) -> None: """Reset simulator between runs.""" @@ -58,7 +62,8 @@ class LLDSMAT(LLDAlgoABC): """Simple moving average threshold.""" samples_n_smat: int - running_samples_smat: List[float] + running_samples_smat_p: List[float] + running_samples_smat_s: List[float] threshold_smat: float def __init__(self, samples: int = 10, thresh: float = -15) -> None: @@ -74,25 +79,40 @@ def name() -> str: def reset(self) -> None: """Reset simulator between runs.""" - self.running_samples_smat = [impossible_pressure] * self.samples_n_smat + self.running_samples_smat_p = [impossible_pressure] * self.samples_n_smat + self.running_samples_smat_s = [impossible_pressure] * self.samples_n_smat - def tick(self, pressure: float) -> Tuple[bool, float]: - """Simulate firmware motor interrupt tick.""" + @staticmethod + def _tick_one_sensor( + pressure: float, samples_n: int, running_samples: List[float] + ) -> Tuple[float, List[float]]: + """ticks one sensor returns the new current average and running_samples.""" try: - next_ind = self.running_samples_smat.index(impossible_pressure) + next_ind = running_samples.index(impossible_pressure) # if no exception we're still filling the minimum samples - self.running_samples_smat[next_ind] = pressure - return (False, impossible_pressure) + running_samples[next_ind] = pressure + return (impossible_pressure, running_samples) except ValueError: # the array has been filled pass # left shift old samples - for i in range(self.samples_n_smat - 1): - self.running_samples_smat[i] = self.running_samples_smat[i + 1] - self.running_samples_smat[self.samples_n_smat - 1] = pressure - new_running_avg = sum(self.running_samples_smat) / self.samples_n_smat + for i in range(samples_n - 1): + running_samples[i] = running_samples[i + 1] + running_samples[samples_n - 1] = pressure + new_running_avg = sum(running_samples) / samples_n + return (new_running_avg, running_samples) + + def tick(self, pressures: Tuple[float, float]) -> Tuple[bool, Tuple[float, float]]: + """Simulate firmware motor interrupt tick.""" + new_avg_p, self.running_samples_smad_p = LLDSMAT._tick_one_sensor( + pressures[0], self.samples_n_smat, self.running_samples_smat_p + ) + new_avg_s, self.running_samples_smad_s = LLDSMAT._tick_one_sensor( + pressures[1], self.samples_n_smat, self.running_samples_smat_s + ) return ( - new_running_avg < self.threshold_smat, - new_running_avg, + abs(new_avg_p) > self.threshold_smat + or abs(new_avg_s) > self.threshold_smat, + (new_avg_p, new_avg_s), ) @@ -100,7 +120,8 @@ class LLDSMAD(LLDAlgoABC): """Simple moving average derivative.""" samples_n_smad: int - running_samples_smad: List[float] + running_samples_smad_p: List[float] + running_samples_smad_s: List[float] derivative_threshold_smad: float def __init__(self, samples: int = 10, thresh: float = -2.5) -> None: @@ -116,27 +137,42 @@ def name() -> str: def reset(self) -> None: """Reset simulator between runs.""" - self.running_samples_smad = [impossible_pressure] * self.samples_n_smad + self.running_samples_smad_p = [impossible_pressure] * self.samples_n_smad + self.running_samples_smad_s = [impossible_pressure] * self.samples_n_smad - def tick(self, pressure: float) -> Tuple[bool, float]: - """Simulate firmware motor interrupt tick.""" + @staticmethod + def _tick_one_sensor( + pressure: float, samples_n: int, running_samples: List[float] + ) -> Tuple[float, float, List[float]]: + """ticks one sensor returns the new current average, new derivative and updated running samples.""" try: - next_ind = self.running_samples_smad.index(impossible_pressure) + next_ind = running_samples.index(impossible_pressure) # if no exception we're still filling the minimum samples - self.running_samples_smad[next_ind] = pressure - return (False, impossible_pressure) + running_samples[next_ind] = pressure + return (impossible_pressure, 0.0, running_samples) except ValueError: # the array has been filled pass # store old running average - prev_running_avg = sum(self.running_samples_smad) / self.samples_n_smad + prev_running_avg = sum(running_samples) / samples_n # left shift old samples - for i in range(self.samples_n_smad - 1): - self.running_samples_smad[i] = self.running_samples_smad[i + 1] - self.running_samples_smad[self.samples_n_smad - 1] = pressure - new_running_avg = sum(self.running_samples_smad) / self.samples_n_smad + for i in range(samples_n - 1): + running_samples[i] = running_samples[i + 1] + running_samples[samples_n - 1] = pressure + new_running_avg = sum(running_samples) / samples_n + return (new_running_avg, new_running_avg - prev_running_avg, running_samples) + + def tick(self, pressures: Tuple[float, float]) -> Tuple[bool, Tuple[float, float]]: + """Simulate firmware motor interrupt tick.""" + new_avg_p, der_p, self.running_samples_smad_p = LLDSMAD._tick_one_sensor( + pressures[0], self.samples_n_smad, self.running_samples_smad_p + ) + new_avg_s, der_s, self.running_samples_smad_s = LLDSMAD._tick_one_sensor( + pressures[1], self.samples_n_smad, self.running_samples_smad_s + ) return ( - (new_running_avg - prev_running_avg) < self.derivative_threshold_smad, - new_running_avg, + abs(der_p) > self.derivative_threshold_smad + or abs(der_s) > self.derivative_threshold_smad, + (new_avg_p, new_avg_s), ) @@ -147,13 +183,14 @@ class LLDWMAD(LLDAlgoABC): weights_wmad: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array( [0.19, 0.17, 0.15, 0.13, 0.11, 0.09, 0.07, 0.05, 0.03, 0.01] ) - running_samples_wmad: numpy.ndarray[Any, numpy.dtype[numpy.float32]] + running_samples_wmad_p: numpy.ndarray[Any, numpy.dtype[numpy.float32]] + running_samples_wmad_s: numpy.ndarray[Any, numpy.dtype[numpy.float32]] derivative_threshold_wmad: float def __init__(self, samples: int = 10, thresh: float = -4) -> None: """Init.""" self.samples_n_wmad = samples - self.derivative_threshold_wmad = thresh + self.derivative_threshold_wmad = abs(thresh) self.reset() @staticmethod @@ -164,45 +201,68 @@ def name() -> str: def reset(self) -> None: """Reset simulator between runs.""" assert numpy.sum(self.weights_wmad) == 1 - self.running_samples_wmad = numpy.full(self.samples_n_wmad, impossible_pressure) + self.running_samples_wmad_p = numpy.full( + self.samples_n_wmad, impossible_pressure + ) + self.running_samples_wmad_s = numpy.full( + self.samples_n_wmad, impossible_pressure + ) - def tick(self, pressure: float) -> Tuple[bool, float]: - """Simulate firmware motor interrupt tick.""" - if numpy.isin(impossible_pressure, self.running_samples_wmad): - next_ind = numpy.where(self.running_samples_wmad == impossible_pressure)[0][ - 0 - ] + @staticmethod + def _tick_one_sensor( + pressure: float, + samples_n: int, + running_samples: numpy.ndarray[Any, numpy.dtype[numpy.float32]], + weights_wmad: numpy.ndarray[Any, numpy.dtype[numpy.float32]], + ) -> Tuple[float, float, numpy.ndarray[Any, numpy.dtype[numpy.float32]]]: + """ticks one sensor returns the new current average, new derivative and updated running samples.""" + if numpy.isin(impossible_pressure, running_samples): + next_ind = numpy.where(running_samples == impossible_pressure)[0][0] # if no exception we're still filling the minimum samples - self.running_samples_wmad[next_ind] = pressure - return (False, impossible_pressure) + running_samples[next_ind] = pressure + return (impossible_pressure, 0.0, running_samples) # store old running average - prev_running_avg = numpy.sum( - numpy.multiply(self.running_samples_wmad, self.weights_wmad) - ) + prev_running_avg = numpy.sum(numpy.multiply(running_samples, weights_wmad)) # left shift old samples - for i in range(self.samples_n_wmad - 1): - self.running_samples_wmad[i] = self.running_samples_wmad[i + 1] - self.running_samples_wmad[self.samples_n_wmad - 1] = pressure - new_running_avg = numpy.sum( - numpy.multiply(self.running_samples_wmad, self.weights_wmad) + for i in range(samples_n - 1): + running_samples[i] = running_samples[i + 1] + running_samples[samples_n - 1] = pressure + new_running_avg = numpy.sum(numpy.multiply(running_samples, weights_wmad)) + return (new_running_avg, (new_running_avg - prev_running_avg), running_samples) + + def tick(self, pressures: Tuple[float, float]) -> Tuple[bool, Tuple[float, float]]: + """Simulate firmware motor interrupt tick.""" + new_avg_p, der_p, self.running_samples_wmad_p = LLDWMAD._tick_one_sensor( + pressures[0], + self.samples_n_wmad, + self.running_samples_wmad_p, + self.weights_wmad, + ) + new_avg_s, der_s, self.running_samples_wmad_s = LLDWMAD._tick_one_sensor( + pressures[1], + self.samples_n_wmad, + self.running_samples_wmad_s, + self.weights_wmad, ) return ( - (new_running_avg - prev_running_avg) < self.derivative_threshold_wmad, - new_running_avg, + abs(der_p) > self.derivative_threshold_wmad + or abs(der_s) > self.derivative_threshold_wmad, + (new_avg_p, new_avg_s), ) class LLDEMAD(LLDAlgoABC): """Exponential moving average derivative.""" - current_average_emad: float = impossible_pressure + current_average_emad_p: float = impossible_pressure + current_average_emad_s: float = impossible_pressure smoothing_factor: float derivative_threshold_emad: float def __init__(self, s_factor: float = 0.1, thresh: float = -2.5) -> None: """Init.""" self.smoothing_factor = s_factor - self.derivative_threshold_emad = thresh + self.derivative_threshold_emad = abs(thresh) self.reset() @staticmethod @@ -212,28 +272,47 @@ def name() -> str: def reset(self) -> None: """Reset simulator between runs.""" - self.current_average_emad = impossible_pressure + self.current_average_emad_p = impossible_pressure + self.current_average_emad_s = impossible_pressure - def tick(self, pressure: float) -> Tuple[bool, float]: - """Simulate firmware motor interrupt tick.""" - if self.current_average_emad == impossible_pressure: - self.current_average_emad = pressure - return (False, impossible_pressure) + @staticmethod + def _tick_one_sensor( + pressure: float, current_average: float, smoothing_factor: float + ) -> Tuple[float, float]: + """ticks one sensor returns the new current average, new derivative and updated running samples.""" + if current_average == impossible_pressure: + return (pressure, 0.0) else: - new_average = (pressure * self.smoothing_factor) + ( - self.current_average_emad * (1 - self.smoothing_factor) - ) - derivative = new_average - self.current_average_emad - self.current_average_emad = new_average - return ( - derivative < self.derivative_threshold_emad, - self.current_average_emad, + new_average = (pressure * smoothing_factor) + ( + current_average * (1 - smoothing_factor) ) + derivative = new_average - current_average + return (new_average, derivative) + + def tick(self, pressures: Tuple[float, float]) -> Tuple[bool, Tuple[float, float]]: + """Simulate firmware motor interrupt tick.""" + prev_avg_p = self.current_average_emad_p + prev_avg_s = self.current_average_emad_s + self.current_average_emad_p, der_p = LLDEMAD._tick_one_sensor( + pressures[0], self.current_average_emad_p, self.smoothing_factor + ) + self.current_average_emad_s, der_s = LLDEMAD._tick_one_sensor( + pressures[1], self.current_average_emad_s, self.smoothing_factor + ) + if prev_avg_p is impossible_pressure or prev_avg_s is impossible_pressure: + ret_avg = (impossible_pressure, impossible_pressure) + else: + ret_avg = (self.current_average_emad_p, self.current_average_emad_s) + return ( + abs(der_p) > self.derivative_threshold_emad + or abs(der_s) > self.derivative_threshold_emad, + ret_avg, + ) def _running_avg( time: List[float], - pressure: List[float], + pressures: List[Tuple[float, float]], z_travel: List[float], p_travel: List[float], no_plot: bool, @@ -241,14 +320,18 @@ def _running_avg( plot_name: str, ) -> Optional[Tuple[float, float, float]]: algorithm.reset() - average = float(0) + average: Tuple[float, float] = (float(0), float(0)) running_time = [] - running_derivative = [] - running_avg = [] + running_derivative_p = [] + running_derivative_s = [] + running_avg_p = [] + running_avg_s = [] return_val = None for i in range(1, len(time)): prev_avg = average - found, average = algorithm.tick(float(pressure[i])) + found, average = algorithm.tick( + (float(pressures[i][0]), float(pressures[i][1])) + ) if found: # if average < running_avg_threshold: # print(f"found z height = {z_travel[i]}") @@ -257,28 +340,44 @@ def _running_avg( if no_plot: # once we find it we don't need to keep going break - if average != impossible_pressure and prev_avg != impossible_pressure: - running_avg_derivative = average - prev_avg + if (impossible_pressure not in average) and ( + impossible_pressure not in prev_avg + ): + running_avg_derivative_p = average[0] - prev_avg[0] + running_avg_derivative_s = average[1] - prev_avg[1] running_time.append(time[i]) - running_derivative.append(running_avg_derivative) - running_avg.append(average) + running_derivative_p.append(running_avg_derivative_p) + running_derivative_s.append(running_avg_derivative_s) + running_avg_p.append(average[0]) + running_avg_s.append(average[1]) time_array: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array( running_time ) - derivative_array: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array( - running_derivative + derivative_array_p: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array( + running_derivative_p + ) + avg_array_p: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array( + running_avg_p + ) + + derivative_array_s: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array( + running_derivative_s + ) + avg_array_s: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array( + running_avg_s ) - avg_array: numpy.ndarray[Any, numpy.dtype[numpy.float32]] = numpy.array(running_avg) if not no_plot: plot.figure(plot_name) avg_ax = plot.subplot(211) avg_ax.set_title("Running Average") - plot.plot(time_array, avg_array) + plot.plot(time_array, avg_array_p) + plot.plot(time_array, avg_array_s) der_ax = plot.subplot(212) der_ax.set_title("Derivative") - plot.plot(time_array, derivative_array) + plot.plot(time_array, derivative_array_p) + plot.plot(time_array, derivative_array_s) mng = plot.get_current_fig_manager() if mng is not None: mng.resize(*mng.window.maxsize()) # type: ignore[attr-defined] @@ -302,7 +401,7 @@ def run( reader = csv.reader(file) reader_list = list(reader) - number_of_trials = int(reader_list[34][2]) + number_of_trials = int(reader_list[33][2]) expected_height = reader_list[44][6] # have a time list for each trial so the list lengths can all be equal @@ -310,31 +409,39 @@ def run( for trial in range(number_of_trials): time = [] - pressure = [] + pressures = [] z_travel = [] p_travel = [] for row in range((59 + number_of_trials), len(reader_list)): current_time = reader_list[row][0] - current_pressure = reader_list[row][3 * trial + 2] - current_z_pos = reader_list[row][3 * trial + 3] - current_p_pos = reader_list[row][3 * trial + 4] + current_pressure_s0 = reader_list[row][4 * trial + 2] + current_pressure_s1 = reader_list[row][4 * trial + 3] + current_z_pos = reader_list[row][4 * trial + 4] + current_p_pos = reader_list[row][4 * trial + 5] if any( [ data == "" - for data in [current_pressure, current_z_pos, current_p_pos] + for data in [ + current_pressure_s0, + current_pressure_s1, + current_z_pos, + current_p_pos, + ] ] ): break time.append(float(current_time)) - pressure.append(float(current_pressure)) + pressures.append( + (float(current_pressure_s0), float(current_pressure_s1)) + ) z_travel.append(float(current_z_pos)) p_travel.append(float(current_p_pos)) threshold_data = _running_avg( time, - pressure, + pressures, z_travel, p_travel, args.no_plot, @@ -350,7 +457,8 @@ def run( # ) results.append(float(threshold_z_pos)) else: - print("No threshold found") + print("No threshold found {algorithm.name()}") + results.append(sys.float_info.max) print( f"{algorithm.name()}, expected {expected_height} max {max(results)} min{min(results)}, avg {sum(results)/len(results)}" ) diff --git a/hardware/opentrons_hardware/sensors/scheduler.py b/hardware/opentrons_hardware/sensors/scheduler.py index edda0da3bb9..627d3da59f7 100644 --- a/hardware/opentrons_hardware/sensors/scheduler.py +++ b/hardware/opentrons_hardware/sensors/scheduler.py @@ -171,7 +171,7 @@ async def send_write( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write sensor info to {sensor_info.node_id.name}" + f"received error {str(error)} trying to write sensor info to {sensor_info.node_id.name}" ) async def send_read( @@ -384,7 +384,7 @@ def _log_sensor_output(message: MessageDefinition, arb: ArbitrationId) -> None: f"{SensorDataType.build(message.payload.sensor_data, message.payload.sensor).to_float()}" ) if isinstance(message, ErrorMessage): - log.error(f"recieved error message {str(message)}") + log.error(f"received error message {str(message)}") @asynccontextmanager async def bind_sync( @@ -411,7 +411,7 @@ async def bind_sync( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" ) try: @@ -436,7 +436,7 @@ async def bind_sync( ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" ) @asynccontextmanager @@ -457,7 +457,7 @@ def _logging_listener( SensorDataType.build(payload.sensor_data, payload.sensor).to_float() ) if isinstance(message, ErrorMessage): - log.error(f"Recieved error message {str(message)}") + log.error(f"Received error message {str(message)}") def _filter(arbitration_id: ArbitrationId) -> bool: return ( @@ -483,7 +483,7 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to bind sensor output on {str(target_sensor.node_id)}" ) try: @@ -505,7 +505,7 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" + f"received error {str(error)} trying to write unbind sensor output on {str(target_sensor.node_id)}" ) @asynccontextmanager @@ -562,7 +562,7 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to bind sensor output on {str(sensor.node_id)}" + f"received error {str(error)} trying to bind sensor output on {str(sensor.node_id)}" ) try: @@ -586,5 +586,5 @@ def _filter(arbitration_id: ArbitrationId) -> bool: ) if error != ErrorCode.ok: log.error( - f"recieved error {str(error)} trying to write unbind sensor output on {str(sensor.node_id)}" + f"received error {str(error)} trying to write unbind sensor output on {str(sensor.node_id)}" ) diff --git a/hardware/opentrons_hardware/sensors/sensor_driver.py b/hardware/opentrons_hardware/sensors/sensor_driver.py index 7e587d35b80..189560aecf8 100644 --- a/hardware/opentrons_hardware/sensors/sensor_driver.py +++ b/hardware/opentrons_hardware/sensors/sensor_driver.py @@ -235,6 +235,7 @@ def __init__( self.response_queue: asyncio.Queue[float] = asyncio.Queue() self.mount = mount self.start_time = 0.0 + self.event: Any = None async def __aenter__(self) -> None: """Create a csv heading for logging pressure readings.""" @@ -248,6 +249,16 @@ async def __aexit__(self, *args: Any) -> None: """Close csv file.""" self.data_file.close() + async def wait_for_complete(self, wait_time: float = 2.0) -> None: + """Wait for the data to stop, only use this with a send_accumulated_data_request.""" + self.event = asyncio.Event() + recieving = True + while recieving: + await asyncio.sleep(wait_time) + recieving = self.event.is_set() + self.event.clear() + self.event = None + def __call__( self, message: MessageDefinition, @@ -261,3 +272,5 @@ def __call__( self.response_queue.put_nowait(data) current_time = round((time.time() - self.start_time), 3) self.csv_writer.writerow([current_time, data]) # type: ignore + if self.event is not None: + self.event.set() diff --git a/hardware/tests/opentrons_hardware/hardware_control/test_tool_sensors.py b/hardware/tests/opentrons_hardware/hardware_control/test_tool_sensors.py index ba391da2c14..c88de67f089 100644 --- a/hardware/tests/opentrons_hardware/hardware_control/test_tool_sensors.py +++ b/hardware/tests/opentrons_hardware/hardware_control/test_tool_sensors.py @@ -1,10 +1,12 @@ """Test the tool-sensor coordination code.""" import logging from mock import patch, ANY, AsyncMock, call +import os import pytest from contextlib import asynccontextmanager from typing import Iterator, List, Tuple, AsyncIterator, Any, Dict from opentrons_hardware.firmware_bindings.messages.message_definitions import ( + AddLinearMoveRequest, ExecuteMoveGroupRequest, MoveCompleted, ReadFromSensorResponse, @@ -48,6 +50,7 @@ SensorType, SensorThresholdMode, SensorOutputBinding, + MoveStopCondition, ) from opentrons_hardware.sensors.scheduler import SensorScheduler from opentrons_hardware.sensors.sensor_driver import SensorDriver @@ -195,6 +198,109 @@ def move_responder( ) +@pytest.mark.parametrize( + "csv_output, sync_buffer_output, can_bus_only_output, move_stop_condition", + [ + (True, False, False, MoveStopCondition.sync_line), + (True, True, False, MoveStopCondition.sensor_report), + (False, False, True, MoveStopCondition.sync_line), + ], +) +async def test_liquid_probe_output_options( + mock_messenger: AsyncMock, + mock_bind_output: AsyncMock, + message_send_loopback: CanLoopback, + mock_sensor_threshold: AsyncMock, + csv_output: bool, + sync_buffer_output: bool, + can_bus_only_output: bool, + move_stop_condition: MoveStopCondition, +) -> None: + """Test that liquid_probe targets the right nodes.""" + sensor_info = SensorInformation( + sensor_type=SensorType.pressure, + sensor_id=SensorId.S0, + node_id=NodeId.pipette_left, + ) + test_csv_file: str = os.path.join(os.getcwd(), "test.csv") + + def move_responder( + node_id: NodeId, message: MessageDefinition + ) -> List[Tuple[NodeId, MessageDefinition, NodeId]]: + message.payload.serialize() + if isinstance(message, ExecuteMoveGroupRequest): + ack_payload = EmptyPayload() + ack_payload.message_index = message.payload.message_index + return [ + ( + NodeId.host, + MoveCompleted( + payload=MoveCompletedPayload( + group_id=UInt8Field(0), + seq_id=UInt8Field(0), + current_position_um=UInt32Field(14000), + encoder_position_um=Int32Field(14000), + position_flags=MotorPositionFlagsField(0), + ack_id=UInt8Field(2), + ) + ), + NodeId.head_l, + ), + ( + NodeId.host, + MoveCompleted( + payload=MoveCompletedPayload( + group_id=UInt8Field(0), + seq_id=UInt8Field(0), + current_position_um=UInt32Field(14000), + encoder_position_um=Int32Field(14000), + position_flags=MotorPositionFlagsField(0), + ack_id=UInt8Field(2), + ) + ), + NodeId.pipette_left, + ), + ] + else: + if ( + isinstance(message, AddLinearMoveRequest) + and node_id == NodeId.pipette_left + ): + assert ( + message.payload.request_stop_condition.value == move_stop_condition + ) + return [] + + message_send_loopback.add_responder(move_responder) + try: + position = await liquid_probe( + messenger=mock_messenger, + tool=NodeId.pipette_left, + head_node=NodeId.head_l, + max_z_distance=40, + mount_speed=10, + plunger_speed=8, + threshold_pascals=14, + csv_output=csv_output, + sync_buffer_output=sync_buffer_output, + can_bus_only_output=can_bus_only_output, + data_files={SensorId.S0: test_csv_file}, + auto_zero_sensor=True, + num_baseline_reads=8, + sensor_id=SensorId.S0, + ) + finally: + if os.path.isfile(test_csv_file): + # clean up the test file this creates if it exists + os.remove(test_csv_file) + assert position[NodeId.head_l].positions_only()[0] == 14 + assert mock_sensor_threshold.call_args_list[0][0][0] == SensorThresholdInformation( + sensor=sensor_info, + data=SensorDataType.build(14 * 65536, sensor_info.sensor_type), + mode=SensorThresholdMode.absolute, + ) + + @pytest.mark.parametrize( "target_node,motor_node,distance,speed,", [ diff --git a/labware-designer/typings/global.d.ts b/labware-designer/typings/global.d.ts index 007983beba5..24e685aa694 100644 --- a/labware-designer/typings/global.d.ts +++ b/labware-designer/typings/global.d.ts @@ -1,4 +1,4 @@ -import * as allSharedData from '@opentrons/shared-data' +import type * as allSharedData from '@opentrons/shared-data' declare global { interface Window { diff --git a/labware-library/Makefile b/labware-library/Makefile index ab92ed2b1a5..92fe4785cda 100644 --- a/labware-library/Makefile +++ b/labware-library/Makefile @@ -44,7 +44,7 @@ serve: all test-e2e: concurrently --no-color --kill-others --success first --names "labware-library-server,labware-library-tests" \ "$(MAKE) dev CYPRESS=1 GTM_ID=''" \ - "wait-on http://localhost:5173/ && echo \"Running cypress at $(date)\" && cypress run --browser chrome --headless --record false" + "wait-on http://localhost:5179/ && echo \"Running cypress at $(date)\" && cypress run --browser chrome --headless --record false" # unit tests .PHONY: test diff --git a/labware-library/cypress.config.js b/labware-library/cypress.config.js new file mode 100644 index 00000000000..e1871656f84 --- /dev/null +++ b/labware-library/cypress.config.js @@ -0,0 +1,13 @@ +const { defineConfig } = require('cypress') + +module.exports = defineConfig({ + video: false, + e2e: { + // We've imported your old cypress plugins here. + // You may want to clean this up later by importing these. + setupNodeEvents(on, config) { + return require('./cypress/plugins/index.js')(on, config) + }, + baseUrl: 'http://localhost:5179', + }, +}) diff --git a/labware-library/cypress.json b/labware-library/cypress.json deleted file mode 100644 index 68db341a5ba..00000000000 --- a/labware-library/cypress.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "baseUrl": "http://localhost:5173", - "video": false -} diff --git a/labware-library/cypress/integration/home.spec.js b/labware-library/cypress/e2e/home.cy.js similarity index 100% rename from labware-library/cypress/integration/home.spec.js rename to labware-library/cypress/e2e/home.cy.js diff --git a/labware-library/cypress/integration/labware-creator/create.spec.js b/labware-library/cypress/e2e/labware-creator/create.cy.js similarity index 98% rename from labware-library/cypress/integration/labware-creator/create.spec.js rename to labware-library/cypress/e2e/labware-creator/create.cy.js index c0a667be233..3c2999653d0 100644 --- a/labware-library/cypress/integration/labware-creator/create.spec.js +++ b/labware-library/cypress/e2e/labware-creator/create.cy.js @@ -3,7 +3,7 @@ // { force: true } context('The Labware Creator Landing Page', () => { - before(() => { + beforeEach(() => { cy.visit('/create') cy.viewport('macbook-15') cy.contains('NO').click({ force: true }) diff --git a/labware-library/cypress/integration/labware-creator/customTubeRack.spec.js b/labware-library/cypress/e2e/labware-creator/customTubeRack.cy.js similarity index 88% rename from labware-library/cypress/integration/labware-creator/customTubeRack.spec.js rename to labware-library/cypress/e2e/labware-creator/customTubeRack.cy.js index e9f829a438f..7d864ccb711 100644 --- a/labware-library/cypress/integration/labware-creator/customTubeRack.spec.js +++ b/labware-library/cypress/e2e/labware-creator/customTubeRack.cy.js @@ -11,13 +11,10 @@ context('Tubes and Rack', () => { }) describe('Custom 6 x 4 tube rack', () => { - it('should show analytics opt-in', () => { + it('should create a custom tuberack', () => { cy.contains('Share sessions with the Opentrons Product Team?') cy.contains('NO').click({ force: true }) - }) - it('should allow user to select custom tube rack', () => { - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E cy.get('label') .contains('What type of labware are you creating?') .children() @@ -25,7 +22,6 @@ context('Tubes and Rack', () => { .trigger('mousedown') cy.get('*[class^="_option_label"]').contains('Tubes + Tube Rack').click() - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E cy.get('label') .contains('Which tube rack?') .children() @@ -36,13 +32,11 @@ context('Tubes and Rack', () => { .click() cy.contains('start creating labware').click({ force: true }) - }) - it('does not have a preview image', () => { + // no preview image yet cy.contains('Add missing info to see labware preview').should('exist') - }) - it('tests regularity', () => { + // regularity cy.get("input[name='homogeneousWells'][value='false']").check({ force: true, }) @@ -58,9 +52,8 @@ context('Tubes and Rack', () => { cy.get("input[name='footprintXDimension']").type('128').blur() cy.get("input[name='footprintYDimension']").clear().type('86').blur() - }) - it('tests height', () => { + // height cy.get("input[name='labwareZDimension']").type('150').blur() cy.contains('This labware may be too tall').should('exist') cy.get("input[name='labwareZDimension']").clear().type('200').blur() @@ -72,9 +65,8 @@ context('Tubes and Rack', () => { cy.contains( 'Your labware is not compatible with the Labware Creator' ).should('not.exist') - }) - it('tests grid', () => { + // grid cy.get("input[name='gridRows']").type('6').blur() cy.get("input[name='gridColumns']").type('4').blur() @@ -84,16 +76,14 @@ context('Tubes and Rack', () => { cy.get("input[name='regularColumnSpacing'][value='true']").check({ force: true, }) - }) - it('tests volume', () => { + // volume cy.get("input[name='wellVolume']").focus().blur() cy.contains('Volume is a required field').should('exist') cy.get("input[name='wellVolume']").type('1500').blur() cy.contains('Volume is a required field').should('not.exist') - }) - it('tests rectangular wells', () => { + // rectangular wells cy.get("input[name='wellShape'][value='rectangular']").check({ force: true, }) @@ -108,9 +98,8 @@ context('Tubes and Rack', () => { cy.contains('Tube Y is a required field').should('exist') cy.get("input[name='wellYDimension']").type('10').blur() cy.contains('Tube Y is a required field').should('not.exist') - }) - it('tests circular wells', () => { + // circular wells cy.get("input[name='wellShape'][value='circular']").check({ force: true, }) @@ -121,9 +110,8 @@ context('Tubes and Rack', () => { cy.contains('Diameter is a required field').should('exist') cy.get("input[name='wellDiameter']").type('12').blur() cy.contains('Diameter is a required field').should('not.exist') - }) - it('tests well bottom shape and depth', () => { + // well bottom shape and depth cy.get("input[name='wellBottomShape'][value='flat']").check({ force: true, }) @@ -146,20 +134,17 @@ context('Tubes and Rack', () => { cy.contains('Depth is a required field').should('exist') cy.get("input[name='wellDepth']").type('100').blur() cy.contains('Depth is a required field').should('not.exist') - }) - it('tests offset', () => { + // offset cy.get("input[name='gridSpacingX']").type('18').blur() cy.get("input[name='gridSpacingY']").type('14').blur() cy.get("input[name='gridOffsetX']").type('15').blur() cy.get("input[name='gridOffsetY']").type('8').blur() - }) - it('does has a preview image', () => { + // verify preview image cy.contains('Add missing info to see labware preview').should('not.exist') - }) - it('tests the file export', () => { + // test file export // Try with missing fields cy.get('button[class*="_export_button_"]').click({ force: true }) cy.contains( @@ -180,9 +165,8 @@ context('Tubes and Rack', () => { cy.get("input[placeholder='somerackbrand_24_tuberack_1500ul']").should( 'exist' ) - }) - it('should export a file matching the fixture', () => { + // now try again with all fields inputed cy.fixture(expectedExportFixture).then(expectedExportLabwareDef => { cy.get('button').contains('EXPORT FILE').click() diff --git a/labware-library/cypress/integration/labware-creator/fileImport.spec.js b/labware-library/cypress/e2e/labware-creator/fileImport.cy.js similarity index 73% rename from labware-library/cypress/integration/labware-creator/fileImport.spec.js rename to labware-library/cypress/e2e/labware-creator/fileImport.cy.js index 97650526e22..ec0094b3806 100644 --- a/labware-library/cypress/integration/labware-creator/fileImport.spec.js +++ b/labware-library/cypress/e2e/labware-creator/fileImport.cy.js @@ -2,14 +2,15 @@ import { expectDeepEqual } from '@opentrons/shared-data/js/cypressUtils' const importedLabwareFile = 'TestLabwareDefinition.json' -context('File Import', () => { +describe('File Import', () => { before(() => { cy.visit('/create') cy.viewport('macbook-15') cy.contains('NO').click({ force: true }) }) - it('drags in a file', () => { + it('tests the file import flow', () => { + // import file cy.fixture(importedLabwareFile, 'utf8').then(fileJson => { const fileContent = JSON.stringify(fileJson) cy.get('[class*="file_drop"]').first().upload( @@ -22,71 +23,47 @@ context('File Import', () => { { subjectType: 'drag-n-drop', force: true } ) }) - }) - it('does has a preview image', () => { + // verify preview image cy.contains('Add missing info to see labware preview').should('not.exist') - }) - - it('tests regularity', () => { + // verify regularity cy.get("input[name='homogeneousWells'][value='true']").should('be.checked') - }) - - it('tests footprint', () => { + // verify footprint cy.get("input[name='footprintXDimension'][value='127']").should('exist') cy.get("input[name='footprintYDimension'][value='85']").should('exist') - }) - - it('tests height', () => { + // verify height cy.get("input[name='labwareZDimension'][value='5']").should('exist') - }) - - describe('Grid tests', () => { - it('tests number of rows', () => { - cy.get("input[name='gridRows'][value='3']").should('exist') - }) - - it('tests are all of your rows evenly spaced', () => { - cy.get("input[name='regularRowSpacing'][value='true']").should('exist') - }) - - it('tests number of columns', () => { - cy.get("input[name='gridColumns'][value='5']").should('exist') - }) - - it('tests are all of your columns evenly spaced', () => { - cy.get("input[name='regularColumnSpacing'][value='true']").should('exist') - }) - }) - - it('tests volume', () => { + // verify number of rows + cy.get("input[name='gridRows'][value='3']").should('exist') + // verify rows are evenly spaced + cy.get("input[name='regularRowSpacing'][value='true']").should('exist') + // verify number of columns + cy.get("input[name='gridColumns'][value='5']").should('exist') + // verify columns are evenly spaced + cy.get("input[name='regularColumnSpacing'][value='true']").should('exist') + + // verify volume cy.get("input[name='wellVolume'][value='5']").should('exist') - }) - - it('tests well shape', () => { + // verify well shape cy.get("input[name='wellShape'][value='circular']").should('exist') cy.get("input[name='wellDiameter'][value='5']").should('exist') - }) - it('tests well bottom shape and depth', () => { + // verify well bottom and depth cy.get("input[name='wellBottomShape'][value='flat']").should('exist') cy.get("img[src*='_flat.']").should('exist') cy.get("img[src*='_round.']").should('not.exist') cy.get("img[src*='_v.']").should('not.exist') cy.get("input[name='wellDepth'][value='5']").should('exist') - }) - it('tests well spacing', () => { + // verify grid spacing cy.get("input[name='gridSpacingX'][value='25']").should('exist') cy.get("input[name='gridSpacingY'][value='25']").should('exist') - }) - it('tests grid offset', () => { + // verify grid offset cy.get("input[name='gridOffsetX'][value='10']").should('exist') cy.get("input[name='gridOffsetY'][value='10']").should('exist') - }) - it('tests the file export', () => { + // go through file export // Brand info cy.get("input[name='brand'][value='TestPro']").should('exist') cy.get("input[name='brandId'][value='001']").should('exist') diff --git a/labware-library/cypress/e2e/labware-creator/reservoir.cy.js b/labware-library/cypress/e2e/labware-creator/reservoir.cy.js new file mode 100644 index 00000000000..c25dc51497e --- /dev/null +++ b/labware-library/cypress/e2e/labware-creator/reservoir.cy.js @@ -0,0 +1,211 @@ +// Scrolling seems wonky, so I disabled checking to see if +// an element is in view before clicking or checking with +// { force: true } + +context('Reservoirs', () => { + before(() => { + cy.visit('/create') + cy.viewport('macbook-15') + cy.contains('NO').click({ force: true }) + }) + + describe('Reservoir', () => { + before(() => { + cy.contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('Reservoir').click() + cy.contains('Reservoir').click({ force: true }) + cy.contains('start creating labware').click({ force: true }) + }) + + it('should create a resevoir', () => { + cy.contains('Add missing info to see labware preview').should('exist') + + // verify regularity + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // verify footprint + + cy.get("input[name='footprintXDimension']").type('150').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('exist') + cy.get("input[name='footprintXDimension']").clear().type('127').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('not.exist') + cy.get("input[name='footprintYDimension']").type('150').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('exist') + cy.get("input[name='footprintYDimension']").clear().type('85').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('not.exist') + + // verify height + + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // verify rows + cy.get("input[name='gridRows']").focus().blur() + cy.contains('Number of rows is a required field').should('exist') + cy.get("input[name='gridRows']").type('1').blur() + cy.contains('Number of rows is a required field').should('not.exist') + + // should not ask if all of your rows evenly spaced, since we only have one row + + cy.get("input[name='regularRowSpacing'][value='false']").should( + 'not.exist' + ) + + // verify number of columns + + cy.get("input[name='gridColumns']").focus().blur() + cy.contains('Number of columns is a required field').should('exist') + cy.get("input[name='gridColumns']").type('10').blur() + cy.contains('Number of columns is a required field').should('not.exist') + + // verify columns are evenly spaced + + cy.get("input[name='regularColumnSpacing'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='regularColumnSpacing'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // verify volume + + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('250').blur() + cy.contains('Volume is a required field').should('not.exist') + + // verify circular wells + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // verify rectangular wells + + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Well X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('8').blur() + cy.contains('Well X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Well Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('60').blur() + cy.contains('Well Y is a required field').should('not.exist') + + // verify well bottom shape and depth + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('70').blur() + cy.contains('Depth is a required field').should('not.exist') + + // verify grid spacing + + cy.get("input[name='gridSpacingX']").focus().blur() + cy.contains('X Spacing (Xs) is a required field').should('exist') + cy.get("input[name='gridSpacingX']").type('12').blur() + cy.contains('X Spacing (Xs) is a required field').should('not.exist') + + // verify grid offset + cy.get("input[name='gridOffsetX']").focus().blur() + cy.contains('X Offset (Xo) is a required field').should('exist') + cy.get("input[name='gridOffsetX']").type('10').blur() + cy.contains('X Offset (Xo) is a required field').should('not.exist') + cy.get("input[name='gridOffsetY']").focus().blur() + cy.contains('Y Offset (Yo) is a required field').should('exist') + cy.get("input[name='gridOffsetY']").type('45').blur() + cy.contains('Y Offset (Yo) is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should('not.exist') + + // verify file export + // Try with missing fields + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('exist') + cy.contains('close').click({ force: true }) + + // Brand info + cy.contains('Brand is a required field').should('exist') + cy.get("input[name='brand']").type('TestPro') + cy.contains('Brand is a required field').should('not.exist') + cy.get("input[name='brandId']").type('001') + + // File info + cy.get("input[placeholder='TestPro 10 Reservoir 250 µL']").should('exist') + cy.get("input[placeholder='testpro_10_reservoir_250ul']").should('exist') + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) +}) diff --git a/labware-library/cypress/integration/labware-creator/tipRack.spec.js b/labware-library/cypress/e2e/labware-creator/tipRack.cy.js similarity index 91% rename from labware-library/cypress/integration/labware-creator/tipRack.spec.js rename to labware-library/cypress/e2e/labware-creator/tipRack.cy.js index 188ec69f6eb..4963f493b64 100644 --- a/labware-library/cypress/integration/labware-creator/tipRack.spec.js +++ b/labware-library/cypress/e2e/labware-creator/tipRack.cy.js @@ -9,7 +9,8 @@ describe('Create a Tip Rack', () => { cy.viewport('macbook-15') cy.contains('NO').click({ force: true }) }) - it('Tip Rack Selection from drop down', () => { + it('Should create a tip rack', () => { + // Tip Rack Selection from drop down cy.get('label') .contains('What type of labware are you creating?') .children() @@ -17,9 +18,8 @@ describe('Create a Tip Rack', () => { .trigger('mousedown') cy.get('*[class^="_option_label"]').contains('Tip Rack').click() cy.get('button').contains('start creating labware').click({ force: true }) - }) - it('Custom Tip Racks Are Not Recommended', () => { + // Custom Tip Racks Are Not Recommended cy.get('#CustomTiprackWarning p') .first() .contains( @@ -32,9 +32,8 @@ describe('Create a Tip Rack', () => { 'Third party tips can fit, but not necessarily with a tight seal. You risk tips falling off mid-run as well as pipetting inaccuracy. They may also be more likely to bend or break.' ) .should('exist') - }) - it('Verify Hand-Placed Tip Fit section', () => { + // Verify Hand-Placed Tip Fit section cy.get('#HandPlacedTipFit h2') .contains('Hand-Placed Tip Fit') .should('exist') @@ -84,9 +83,8 @@ describe('Create a Tip Rack', () => { 'If your tip seems to fit when placed by hand it may work on the OT-2. Proceed through the form to generate a definition. Once you have a definition you can check performance on the robot.' ) .should('exist') - }) - it('Verify Total Footprint section', () => { + // Verify Total Footprint section cy.get('#Footprint h2').contains('Total Footprint').should('exist') // verify the copy changes in the Total Footprint section @@ -110,9 +108,7 @@ describe('Create a Tip Rack', () => { // Enter the length and width for the Footprint cy.get('input[name="footprintXDimension"]').clear().type('127') cy.get('input[name="footprintYDimension"]').clear().type('85') - }) - it('Verify errors in Total Footprint section', () => { // verify that length displays error for smaller value cy.get('input[name="footprintXDimension"]').clear().type('20') cy.get('#Footprint span') @@ -148,9 +144,8 @@ describe('Create a Tip Rack', () => { // entering the valid values for footprint cy.get('input[name="footprintXDimension"]').clear().type('127') cy.get('input[name="footprintYDimension"]').clear().type('85') - }) - it('Verify copy error in Total Height section', () => { + // Verify copy error in Total Height section cy.get('#Height h2').contains('Total Height').should('exist') cy.get('#Height p') .first() @@ -166,18 +161,16 @@ describe('Create a Tip Rack', () => { .should('exist') cy.get('img[alt="plate or reservoir height"]').should('exist') cy.get('input[name="labwareZDimension"]').clear().type('24') - }) - it('verify the Tip Length section', () => { + // Verify the Tip Length section cy.get('#WellBottomAndDepth h2').contains('Tip Length').should('exist') cy.get('#WellBottomAndDepth p') .contains('Reference the top of the tip to the bottom of the tip.') .should('exist') cy.get('img[alt="tip length"]').should('exist') cy.get('input[name="wellDepth"]').clear().type('12') - }) - it('verify the Grid section', () => { + // Verify the Grid section cy.get('#Grid h2').contains('Grid').should('exist') cy.get('#Grid p') .contains( @@ -189,26 +182,23 @@ describe('Create a Tip Rack', () => { cy.get('input[name="regularRowSpacing"]').first().click({ force: true }) cy.get('input[name="gridColumns"]').clear().type('5') cy.get('input[name="regularColumnSpacing"]').first().click({ force: true }) - }) - it('Verify copy change for volume', () => { + // Verify copy change for volume cy.get('#Volume h2').contains('Volume').should('exist') cy.get('#Volume p') .contains('Total maximum volume of each tip.') .should('exist') cy.get('input[name="wellVolume"]').clear().type('20') - }) - it('Verify the tip diameter of the tip', () => { + // Verify the tip diameter of the tip cy.get('#TipDiameter h2').contains('Tip Diameter').should('exist') cy.get('#TipDiameter p') .contains('Reference the inside of the tip.') .should('exist') cy.get('img[alt="circular well diameter"]').should('exist') cy.get('input[name="wellDiameter"]').clear().type('10') - }) - it('Verify the Tip Spacing section', () => { + // Verify the Tip Spacing section cy.get('#WellSpacing h2').contains('Tip Spacing').should('exist') cy.get('#WellSpacing p') .contains('Spacing is between the center of tips.') @@ -222,9 +212,8 @@ describe('Create a Tip Rack', () => { cy.get('img[alt="circular well spacing"]').should('exist') cy.get('input[name="gridSpacingX"]').clear().type('15') cy.get('input[name="gridSpacingY"]').clear().type('15') - }) - it('Verify the Grid Offset section', () => { + // Verify the Grid Offset section cy.get('#GridOffset h2').contains('Grid Offset').should('exist') cy.get('#GridOffset p') .contains( @@ -241,25 +230,22 @@ describe('Create a Tip Rack', () => { cy.get('img[alt="circular well offset"]').should('exist') cy.get('input[name="gridOffsetX"]').clear().type('10') cy.get('input[name="gridOffsetY"]').clear().type('10') - }) - it('Verify the Description section', () => { + // Verify the Description section cy.get('#Description h2').contains('Description').should('exist') cy.get('input[name="brand"]').clear().type('Brand Chalu') cy.get('input[name="brandId"]') .clear() .type('abcd12345!@#$%,efghij6789^&*()') - }) - it('Verify the File section and enter the file name', () => { + // Verify the File section and enter the file name cy.get('#File h2').contains('File').should('exist') cy.get('input[name="displayName"]') .clear() .type('Brand Chalu 1 Tip Rack 20ul') cy.get('input[name="loadName"]').clear().type('generic_1_tiprack_20ul') - }) - it('Verify the exported file to the fixture', () => { + // Verify the exported file to the fixture cy.get('button').contains('EXPORT FILE').click() cy.fixture(expectedExportFixture).then(expectedExportLabwareDef => { @@ -277,8 +263,7 @@ describe('Create a Tip Rack', () => { cy.window() .its('__lastSavedFileName__') .should('equal', `generic_1_tiprack_20ul.json`) - }) - it('verify the too big, too small error', () => { + // 'verify the too big, too small error cy.get('input[name="gridOffsetY"]').clear().type('24') cy.get('#CheckYourWork span') .contains( diff --git a/labware-library/cypress/e2e/labware-creator/tubesBlock.cy.js b/labware-library/cypress/e2e/labware-creator/tubesBlock.cy.js new file mode 100644 index 00000000000..27b653e92a3 --- /dev/null +++ b/labware-library/cypress/e2e/labware-creator/tubesBlock.cy.js @@ -0,0 +1,591 @@ +// Scrolling seems wonky, so I disabled checking to see if +// an element is in view before clicking or checking with +// { force: true } + +context('Tubes and Block', () => { + beforeEach(() => { + cy.visit('/create') + cy.viewport('macbook-15') + cy.contains('NO').click({ force: true }) + + cy.get('label') + .contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]') + .contains('Tubes / Plates + Opentrons Aluminum Block') + .click() + + cy.get('label') + .contains('Which aluminum block?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('96 well').click() + + cy.get('label') + .contains('What labware is on top of your aluminum block?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]') + .contains(/^Tubes$/) + .click() + + cy.contains('start creating labware').click({ force: true }) + }) + describe('96 Well', () => { + describe('Tubes', () => { + describe('Well shape tests', () => { + it('tests circular wells', () => { + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + }) + + it('tests the whole form and file export', () => { + cy.contains('Add missing info to see labware preview').should('exist') + + // verify regularity + + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // verify height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // verify volume + + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('10').blur() + cy.contains('Volume is a required field').should('not.exist') + + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Tube X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('10').blur() + cy.contains('Tube X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Tube Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('10').blur() + cy.contains('Tube Y is a required field').should('not.exist') + + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should( + 'not.exist' + ) + + // test file export + // Try with missing fields + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('exist') + cy.contains('close').click({ force: true }) + + // Brand info + cy.contains('Brand is a required field').should('exist') + cy.get("input[name='brand']").type('TestPro') + cy.contains('Brand is a required field').should('not.exist') + cy.get("input[name='brandId']").type('001') + + // File info + cy.get("input[placeholder='TestPro 96 Aluminum Block 10 µL']").should( + 'exist' + ) + cy.get("input[placeholder='testpro_96_aluminumblock_10ul']").should( + 'exist' + ) + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) + }) + + describe('PCR Tube Strip', () => { + it('does not have a preview image', () => { + cy.contains('Add missing info to see labware preview').should('exist') + }) + + it('tests the whole form and file export', () => { + // verify regularity + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + // verify height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // verify volume + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('10').blur() + cy.contains('Volume is a required field').should('not.exist') + + // circular wells + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // rectangular wells + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Tube X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('10').blur() + cy.contains('Tube X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Tube Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('10').blur() + cy.contains('Tube Y is a required field').should('not.exist') + + // well shape + + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + cy.contains('Add missing info to see labware preview').should( + 'not.exist' + ) + + // file export + // Try with missing fields + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('exist') + cy.contains('close').click({ force: true }) + + // Brand info + cy.contains('Brand is a required field').should('exist') + cy.get("input[name='brand']").type('TestPro') + cy.contains('Brand is a required field').should('not.exist') + cy.get("input[name='brandId']").type('001') + + // File info + cy.get("input[placeholder='TestPro 96 Aluminum Block 10 µL']").should( + 'exist' + ) + cy.get("input[placeholder='testpro_96_aluminumblock_10ul']").should( + 'exist' + ) + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) + + describe('PCR Plate', () => { + beforeEach(() => { + cy.get('label') + .contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]') + .contains('Tubes / Plates + Opentrons Aluminum Block') + .click() + + cy.get('label') + .contains('Which aluminum block?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('96 well').click() + + cy.get('label') + .contains('What labware is on top of your aluminum block?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('PCR Plate').click() + + cy.contains('start creating labware').click({ force: true }) + }) + it('does not have a preview image', () => { + cy.contains('Add missing info to see labware preview').should('exist') + }) + + it('tests the whole form and file export', () => { + // regularity + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // volume + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('10').blur() + cy.contains('Volume is a required field').should('not.exist') + + // circular well shape + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // rectangular well shape + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Well X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('10').blur() + cy.contains('Well X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Well Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('10').blur() + cy.contains('Well Y is a required field').should('not.exist') + + // well bottom + + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should( + 'not.exist' + ) + + // file export + // Try with missing fields + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('exist') + cy.contains('close').click({ force: true }) + + // Brand info + cy.contains('Brand is a required field').should('exist') + cy.get("input[name='brand']").type('TestPro') + cy.contains('Brand is a required field').should('not.exist') + cy.get("input[name='brandId']").type('001') + + // File info + cy.get("input[placeholder='TestPro 96 Aluminum Block 10 µL']").should( + 'exist' + ) + cy.get("input[placeholder='testpro_96_aluminumblock_10ul']").should( + 'exist' + ) + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) + }) + + describe('24 Well', () => { + describe('Tubes', () => { + it('does not have a preview image', () => { + cy.contains('Add missing info to see labware preview').should('exist') + }) + + it('tests the whole form and file export', () => { + cy.visit('/create') + cy.viewport('macbook-15') + cy.get('label') + .contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]') + .contains('Tubes / Plates + Opentrons Aluminum Block') + .click() + + cy.get('label') + .contains('Which aluminum block?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('24 well').click() + + cy.get('label') + .contains('What labware is on top of your aluminum block?') + .should('not.exist') + + cy.contains('start creating labware').click({ force: true }) + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // volume + + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('10').blur() + cy.contains('Volume is a required field').should('not.exist') + + // circular wells + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // rectangular wells + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Well X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('10').blur() + cy.contains('Well X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Well Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('10').blur() + cy.contains('Well Y is a required field').should('not.exist') + + // well bottom shape + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should( + 'not.exist' + ) + + // file export + // Try with missing fields + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('exist') + cy.contains('close').click({ force: true }) + + // Brand info + cy.contains('Brand is a required field').should('exist') + cy.get("input[name='brand']").type('TestPro') + cy.contains('Brand is a required field').should('not.exist') + cy.get("input[name='brandId']").type('001') + + // File info + cy.get("input[placeholder='TestPro 24 Aluminum Block 10 µL']").should( + 'exist' + ) + cy.get("input[placeholder='testpro_24_aluminumblock_10ul']").should( + 'exist' + ) + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) + }) +}) diff --git a/labware-library/cypress/e2e/labware-creator/tubesRack.cy.js b/labware-library/cypress/e2e/labware-creator/tubesRack.cy.js new file mode 100644 index 00000000000..64ff26bcdc3 --- /dev/null +++ b/labware-library/cypress/e2e/labware-creator/tubesRack.cy.js @@ -0,0 +1,401 @@ +// Scrolling seems wonky, so I disabled checking to see if +// an element is in view before clicking or checking with +// { force: true } + +context('Tubes and Rack', () => { + describe('Six tubes', () => { + before(() => { + cy.visit('/create') + cy.viewport('macbook-15') + cy.contains('NO').click({ force: true }) + cy.get('label') + .contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('Tubes + Tube Rack').click() + + cy.get('label') + .contains('Which tube rack?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('6 tubes').click() + + cy.contains('start creating labware').click({ force: true }) + }) + + it('creates a tuberack with 16 tubes', () => { + // does not have a preview image + cy.contains('Add missing info to see labware preview').should('exist') + + // Verify regularity + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify volume + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('10').blur() + cy.contains('Volume is a required field').should('not.exist') + + // Well shape tests + + // circular wells + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // rectangular wells + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Tube X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('10').blur() + cy.contains('Tube X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Tube Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('10').blur() + cy.contains('Tube Y is a required field').should('not.exist') + + // well bottom shape and depth + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should('not.exist') + + // Verify file export + // Brand field should not be shown for Opentrons tube rack (aka non-custom) + cy.contains('Brand is a required field').should('not.exist') + + // File info + cy.get( + "input[placeholder='Opentrons 6 Tube Rack with Generic 0.01 mL']" + ).should('exist') + cy.get("input[placeholder='opentrons_6_tuberack_10ul']").should('exist') + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) + + describe('Fifteen tubes', () => { + before(() => { + cy.visit('/create') + cy.viewport('macbook-15') + cy.contains('NO').click({ force: true }) + + cy.get('label') + .contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('Tubes + Tube Rack').click() + + cy.get('label') + .contains('Which tube rack?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('15 tubes').click() + + cy.contains('start creating labware').click({ force: true }) + }) + + it('creates a tuberack with 15 tubes', () => { + cy.contains('Add missing info to see labware preview').should('exist') + + // Verify regularity + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify volume + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('10').blur() + cy.contains('Volume is a required field').should('not.exist') + + // Well shape + // Verify circular wells + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // Verify rectangular wells + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Tube X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('10').blur() + cy.contains('Tube X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Tube Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('10').blur() + cy.contains('Tube Y is a required field').should('not.exist') + + // verify well bottom shape and depth + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should('not.exist') + + // Verify the file export + // Brand field should not be shown for Opentrons tube rack (aka non-custom) + cy.contains('Brand is a required field').should('not.exist') + + // File info + cy.get( + "input[placeholder='Opentrons 15 Tube Rack with Generic 0.01 mL']" + ).should('exist') + cy.get("input[placeholder='opentrons_15_tuberack_10ul']").should('exist') + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) + + describe('Twentyfour tubes', () => { + before(() => { + cy.visit('/create') + cy.viewport('macbook-15') + cy.contains('NO').click({ force: true }) + + cy.get('label') + .contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('Tubes + Tube Rack').click() + + cy.get('label') + .contains('Which tube rack?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('24 tubes').click() + + cy.contains('start creating labware').click({ force: true }) + }) + + it('create a tuberack with 24 tubes', () => { + cy.contains('Add missing info to see labware preview').should('exist') + + // Verify regularity + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify volume + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('10').blur() + cy.contains('Volume is a required field').should('not.exist') + + // Verify well shape + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // verify rectangular wells + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Tube X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('10').blur() + cy.contains('Tube X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Tube Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('10').blur() + cy.contains('Tube Y is a required field').should('not.exist') + + // verify well bottom shape and depth + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should('not.exist') + + // verify file export + // Brand field should not be shown for Opentrons tube rack (aka non-custom) + cy.contains('Brand is a required field').should('not.exist') + + // File info + cy.get( + "input[placeholder='Opentrons 24 Tube Rack with Generic 0.01 mL']" + ).should('exist') + cy.get("input[placeholder='opentrons_24_tuberack_10ul']").should('exist') + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + }) + }) +}) diff --git a/labware-library/cypress/e2e/labware-creator/wellPlate.cy.js b/labware-library/cypress/e2e/labware-creator/wellPlate.cy.js new file mode 100644 index 00000000000..33d7f02303e --- /dev/null +++ b/labware-library/cypress/e2e/labware-creator/wellPlate.cy.js @@ -0,0 +1,223 @@ +// NOTE: This uses data that produces a labware definition file +// that cannot be imported. The creator probably shouldn't allow +// a user to do this. + +// Scrolling seems wonky, so I disabled checking to see if +// an element is in view before clicking or checking with +// { force: true } + +context('Well Plates', () => { + before(() => { + cy.visit('/create') + cy.viewport('macbook-15') + cy.contains('NO').click({ force: true }) + }) + + describe('Create a well plate', () => { + before(() => { + cy.get('label') + .contains('What type of labware are you creating?') + .children() + .first() + .trigger('mousedown') + cy.get('*[class^="_option_label"]').contains('Well Plate').click() + cy.get('button').contains('start creating labware').click({ force: true }) + }) + it('creates a wellplate', () => { + cy.contains('Add missing info to see labware preview').should('exist') + + // Verify regularity + cy.get("input[name='homogeneousWells'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='homogeneousWells'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify footprint + cy.get("input[name='footprintXDimension']").type('150').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('exist') + cy.get("input[name='footprintXDimension']").clear().type('127').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('not.exist') + cy.get("input[name='footprintYDimension']").type('150').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('exist') + cy.get("input[name='footprintYDimension']").clear().type('85').blur() + cy.contains( + 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' + ).should('not.exist') + + // Verify height + cy.get("input[name='labwareZDimension']").type('150').blur() + cy.contains('This labware may be too tall').should('exist') + cy.get("input[name='labwareZDimension']").clear().type('200').blur() + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='labwareZDimension']").clear().type('75').blur() + cy.contains('This labware may be too tall').should('not.exist') + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify number of rows + cy.get("input[name='gridRows']").focus().blur() + cy.contains('Number of rows is a required field').should('exist') + cy.get("input[name='gridRows']").type('8').blur() + cy.contains('Number of rows is a required field').should('not.exist') + + // Verify rows are evenly spaced + cy.get("input[name='regularRowSpacing'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='regularRowSpacing'][value='true']").check({ + force: true, + }) + + // Verify number of columns + cy.get("input[name='gridColumns']").focus().blur() + cy.contains('Number of columns is a required field').should('exist') + cy.get("input[name='gridColumns']").type('10').blur() + cy.contains('Number of columns is a required field').should('not.exist') + + // Verify columns are evenly spaced + cy.get("input[name='regularColumnSpacing'][value='false']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('exist') + cy.get("input[name='regularColumnSpacing'][value='true']").check({ + force: true, + }) + cy.contains( + 'Your labware is not compatible with the Labware Creator' + ).should('not.exist') + + // Verify volume + cy.get("input[name='wellVolume']").focus().blur() + cy.contains('Volume is a required field').should('exist') + cy.get("input[name='wellVolume']").type('100').blur() + cy.contains('Volume is a required field').should('not.exist') + + // verify circular wells + cy.get("input[name='wellShape'][value='circular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('exist') + cy.get("input[name='wellXDimension']").should('not.exist') + cy.get("input[name='wellYDimension']").should('not.exist') + cy.get("input[name='wellDiameter']").focus().blur() + cy.contains('Diameter is a required field').should('exist') + cy.get("input[name='wellDiameter']").type('10').blur() + cy.contains('Diameter is a required field').should('not.exist') + + // verify rectangular wells + cy.get("input[name='wellShape'][value='rectangular']").check({ + force: true, + }) + cy.get("input[name='wellDiameter']").should('not.exist') + cy.get("input[name='wellXDimension']").should('exist') + cy.get("input[name='wellYDimension']").should('exist') + cy.get("input[name='wellXDimension']").focus().blur() + cy.contains('Well X is a required field').should('exist') + cy.get("input[name='wellXDimension']").type('8').blur() + cy.contains('Well X is a required field').should('not.exist') + cy.get("input[name='wellYDimension']").focus().blur() + cy.contains('Well Y is a required field').should('exist') + cy.get("input[name='wellYDimension']").type('8').blur() + cy.contains('Well Y is a required field').should('not.exist') + + // Verify well bottom shape and depth + cy.get("input[name='wellBottomShape'][value='flat']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='u']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('exist') + cy.get("img[src*='_v.']").should('not.exist') + cy.get("input[name='wellBottomShape'][value='v']").check({ + force: true, + }) + cy.get("img[src*='_flat.']").should('not.exist') + cy.get("img[src*='_round.']").should('not.exist') + cy.get("img[src*='_v.']").should('exist') + cy.get("input[name='wellDepth']").focus().blur() + cy.contains('Depth is a required field').should('exist') + cy.get("input[name='wellDepth']").type('10').blur() + cy.contains('Depth is a required field').should('not.exist') + + // Verify well spacing + cy.get("input[name='gridSpacingX']").focus().blur() + cy.contains('X Spacing (Xs) is a required field').should('exist') + cy.get("input[name='gridSpacingX']").type('12').blur() + cy.contains('X Spacing (Xs) is a required field').should('not.exist') + cy.get("input[name='gridSpacingY']").focus().blur() + cy.contains('Y Spacing (Ys) is a required field').should('exist') + cy.get("input[name='gridSpacingY']").type('10').blur() + cy.contains('Y Spacing (Ys) is a required field').should('not.exist') + + // Verify grid offset + cy.get("input[name='gridOffsetX']").focus().blur() + cy.contains('X Offset (Xo) is a required field').should('exist') + cy.get("input[name='gridOffsetX']").type('10').blur() + cy.contains('X Offset (Xo) is a required field').should('not.exist') + cy.get("input[name='gridOffsetY']").focus().blur() + cy.contains('Y Offset (Yo) is a required field').should('exist') + cy.get("input[name='gridOffsetY']").type('8').blur() + cy.contains('Y Offset (Yo) is a required field').should('not.exist') + + cy.contains('Add missing info to see labware preview').should('not.exist') + cy.contains( + 'Please double-check well size, Y Spacing, and Y Offset.' + ).should('not.exist') + + // Verify file export + // Try with missing fields + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('exist') + cy.contains('close').click({ force: true }) + + // Brand info + cy.contains('Brand is a required field').should('exist') + cy.get("input[name='brand']").type('TestPro') + cy.contains('Brand is a required field').should('not.exist') + cy.get("input[name='brandId']").type('001') + + // File info + cy.get("input[placeholder='TestPro 80 Well Plate 100 µL']").should( + 'exist' + ) + cy.get("input[placeholder='testpro_80_wellplate_100ul']").should('exist') + + // All fields present + cy.get('button[class*="_export_button_"]').click({ force: true }) + cy.contains( + 'Please resolve all invalid fields in order to export the labware definition' + ).should('not.exist') + + // TODO IMMEDIATELY match against fixture ??? Is this not happening? + }) + }) +}) diff --git a/labware-library/cypress/integration/navigation.spec.js b/labware-library/cypress/e2e/navigation.cy.js similarity index 100% rename from labware-library/cypress/integration/navigation.spec.js rename to labware-library/cypress/e2e/navigation.cy.js diff --git a/labware-library/cypress/integration/labware-creator/reservoir.spec.js b/labware-library/cypress/integration/labware-creator/reservoir.spec.js deleted file mode 100644 index 88b23084aa9..00000000000 --- a/labware-library/cypress/integration/labware-creator/reservoir.spec.js +++ /dev/null @@ -1,230 +0,0 @@ -// Scrolling seems wonky, so I disabled checking to see if -// an element is in view before clicking or checking with -// { force: true } - -context('Reservoirs', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - }) - - describe('Create a reservoir', () => { - before(() => { - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('Reservoir').click() - cy.contains('Reservoir').click({ force: true }) - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests footprint', () => { - cy.get("input[name='footprintXDimension']").type('150').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('exist') - cy.get("input[name='footprintXDimension']").clear().type('127').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('not.exist') - cy.get("input[name='footprintYDimension']").type('150').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('exist') - cy.get("input[name='footprintYDimension']").clear().type('85').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - describe('Grid tests', () => { - it('tests number of rows', () => { - cy.get("input[name='gridRows']").focus().blur() - cy.contains('Number of rows is a required field').should('exist') - cy.get("input[name='gridRows']").type('1').blur() - cy.contains('Number of rows is a required field').should('not.exist') - }) - - it('should not ask if all of your rows evenly spaced, since we only have one row', () => { - cy.get("input[name='regularRowSpacing'][value='false']").should( - 'not.exist' - ) - }) - - it('tests number of columns', () => { - cy.get("input[name='gridColumns']").focus().blur() - cy.contains('Number of columns is a required field').should('exist') - cy.get("input[name='gridColumns']").type('10').blur() - cy.contains('Number of columns is a required field').should('not.exist') - }) - - it('tests are all of your columns evenly spaced', () => { - cy.get("input[name='regularColumnSpacing'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='regularColumnSpacing'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('250').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Well X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('8').blur() - cy.contains('Well X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Well Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('60').blur() - cy.contains('Well Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('70').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('tests well spacing', () => { - cy.get("input[name='gridSpacingX']").focus().blur() - cy.contains('X Spacing (Xs) is a required field').should('exist') - cy.get("input[name='gridSpacingX']").type('12').blur() - cy.contains('X Spacing (Xs) is a required field').should('not.exist') - }) - - it('tests grid offset', () => { - cy.get("input[name='gridOffsetX']").focus().blur() - cy.contains('X Offset (Xo) is a required field').should('exist') - cy.get("input[name='gridOffsetX']").type('10').blur() - cy.contains('X Offset (Xo) is a required field').should('not.exist') - cy.get("input[name='gridOffsetY']").focus().blur() - cy.contains('Y Offset (Yo) is a required field').should('exist') - cy.get("input[name='gridOffsetY']").type('45').blur() - cy.contains('Y Offset (Yo) is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Try with missing fields - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('exist') - cy.contains('close').click({ force: true }) - - // Brand info - cy.contains('Brand is a required field').should('exist') - cy.get("input[name='brand']").type('TestPro') - cy.contains('Brand is a required field').should('not.exist') - cy.get("input[name='brandId']").type('001') - - // File info - cy.get("input[placeholder='TestPro 10 Reservoir 250 µL']").should( - 'exist' - ) - cy.get("input[placeholder='testpro_10_reservoir_250ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) -}) diff --git a/labware-library/cypress/integration/labware-creator/tubesBlock.spec.js b/labware-library/cypress/integration/labware-creator/tubesBlock.spec.js deleted file mode 100644 index 8d284e00d97..00000000000 --- a/labware-library/cypress/integration/labware-creator/tubesBlock.spec.js +++ /dev/null @@ -1,679 +0,0 @@ -// Scrolling seems wonky, so I disabled checking to see if -// an element is in view before clicking or checking with -// { force: true } - -context('Tubes and Block', () => { - describe('96 Well', () => { - describe('Tubes', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]') - .contains('Tubes / Plates + Opentrons Aluminum Block') - .click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('Which aluminum block?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('96 well').click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What labware is on top of your aluminum block?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]') - .contains(/^Tubes$/) - .click() - - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('10').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Tube X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('10').blur() - cy.contains('Tube X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Tube Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('10').blur() - cy.contains('Tube Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Try with missing fields - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('exist') - cy.contains('close').click({ force: true }) - - // Brand info - cy.contains('Brand is a required field').should('exist') - cy.get("input[name='brand']").type('TestPro') - cy.contains('Brand is a required field').should('not.exist') - cy.get("input[name='brandId']").type('001') - - // File info - cy.get("input[placeholder='TestPro 96 Aluminum Block 10 µL']").should( - 'exist' - ) - cy.get("input[placeholder='testpro_96_aluminumblock_10ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) - - describe('PCR Tube Strip', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]') - .contains('Tubes / Plates + Opentrons Aluminum Block') - .click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('Which aluminum block?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('96 well').click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What labware is on top of your aluminum block?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('PCR Tube Strip').click() - - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('10').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Tube X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('10').blur() - cy.contains('Tube X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Tube Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('10').blur() - cy.contains('Tube Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Try with missing fields - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('exist') - cy.contains('close').click({ force: true }) - - // Brand info - cy.contains('Brand is a required field').should('exist') - cy.get("input[name='brand']").type('TestPro') - cy.contains('Brand is a required field').should('not.exist') - cy.get("input[name='brandId']").type('001') - - // File info - cy.get("input[placeholder='TestPro 96 Aluminum Block 10 µL']").should( - 'exist' - ) - cy.get("input[placeholder='testpro_96_aluminumblock_10ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) - - describe('PCR Plate', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]') - .contains('Tubes / Plates + Opentrons Aluminum Block') - .click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('Which aluminum block?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('96 well').click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What labware is on top of your aluminum block?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('PCR Plate').click() - - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('10').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Well X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('10').blur() - cy.contains('Well X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Well Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('10').blur() - cy.contains('Well Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Try with missing fields - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('exist') - cy.contains('close').click({ force: true }) - - // Brand info - cy.contains('Brand is a required field').should('exist') - cy.get("input[name='brand']").type('TestPro') - cy.contains('Brand is a required field').should('not.exist') - cy.get("input[name='brandId']").type('001') - - // File info - cy.get("input[placeholder='TestPro 96 Aluminum Block 10 µL']").should( - 'exist' - ) - cy.get("input[placeholder='testpro_96_aluminumblock_10ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) - }) - - describe('24 Well', () => { - describe('Tubes', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]') - .contains('Tubes / Plates + Opentrons Aluminum Block') - .click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('Which aluminum block?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('24 well').click() - - cy.get('label') - .contains('What labware is on top of your aluminum block?') - .should('not.exist') - - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('10').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Well X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('10').blur() - cy.contains('Well X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Well Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('10').blur() - cy.contains('Well Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Try with missing fields - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('exist') - cy.contains('close').click({ force: true }) - - // Brand info - cy.contains('Brand is a required field').should('exist') - cy.get("input[name='brand']").type('TestPro') - cy.contains('Brand is a required field').should('not.exist') - cy.get("input[name='brandId']").type('001') - - // File info - cy.get("input[placeholder='TestPro 24 Aluminum Block 10 µL']").should( - 'exist' - ) - cy.get("input[placeholder='testpro_24_aluminumblock_10ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) - }) -}) diff --git a/labware-library/cypress/integration/labware-creator/tubesRack.spec.js b/labware-library/cypress/integration/labware-creator/tubesRack.spec.js deleted file mode 100644 index 3ea956a9bae..00000000000 --- a/labware-library/cypress/integration/labware-creator/tubesRack.spec.js +++ /dev/null @@ -1,446 +0,0 @@ -// Scrolling seems wonky, so I disabled checking to see if -// an element is in view before clicking or checking with -// { force: true } - -context('Tubes and Rack', () => { - describe('Six tubes', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('Tubes + Tube Rack').click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('Which tube rack?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('6 tubes').click() - - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('10').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Tube X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('10').blur() - cy.contains('Tube X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Tube Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('10').blur() - cy.contains('Tube Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Brand field should not be shown for Opentrons tube rack (aka non-custom) - cy.contains('Brand is a required field').should('not.exist') - - // File info - cy.get( - "input[placeholder='Opentrons 6 Tube Rack with Generic 0.01 mL']" - ).should('exist') - cy.get("input[placeholder='opentrons_6_tuberack_10ul']").should('exist') - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) - - describe('Fifteen tubes', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('Tubes + Tube Rack').click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('Which tube rack?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('15 tubes').click() - - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('10').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Tube X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('10').blur() - cy.contains('Tube X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Tube Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('10').blur() - cy.contains('Tube Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Brand field should not be shown for Opentrons tube rack (aka non-custom) - cy.contains('Brand is a required field').should('not.exist') - - // File info - cy.get( - "input[placeholder='Opentrons 15 Tube Rack with Generic 0.01 mL']" - ).should('exist') - cy.get("input[placeholder='opentrons_15_tuberack_10ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) - - describe('Twentyfour tubes', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('Tubes + Tube Rack').click() - - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('Which tube rack?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('24 tubes').click() - - cy.contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('10').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Tube X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('10').blur() - cy.contains('Tube X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Tube Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('10').blur() - cy.contains('Tube Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('does has a preview image', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - }) - - it('tests the file export', () => { - // Brand field should not be shown for Opentrons tube rack (aka non-custom) - cy.contains('Brand is a required field').should('not.exist') - - // File info - cy.get( - "input[placeholder='Opentrons 24 Tube Rack with Generic 0.01 mL']" - ).should('exist') - cy.get("input[placeholder='opentrons_24_tuberack_10ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - }) - }) - }) -}) diff --git a/labware-library/cypress/integration/labware-creator/wellPlate.spec.js b/labware-library/cypress/integration/labware-creator/wellPlate.spec.js deleted file mode 100644 index 0a32a628e34..00000000000 --- a/labware-library/cypress/integration/labware-creator/wellPlate.spec.js +++ /dev/null @@ -1,249 +0,0 @@ -// NOTE: This uses data that produces a labware definition file -// that cannot be imported. The creator probably shouldn't allow -// a user to do this. - -// Scrolling seems wonky, so I disabled checking to see if -// an element is in view before clicking or checking with -// { force: true } - -context('Well Plates', () => { - before(() => { - cy.visit('/create') - cy.viewport('macbook-15') - cy.contains('NO').click({ force: true }) - }) - - describe('Create a well plate', () => { - before(() => { - // TODO(IL, 2021-05-15): give Dropdown component semantic selectors for E2E - cy.get('label') - .contains('What type of labware are you creating?') - .children() - .first() - .trigger('mousedown') - cy.get('*[class^="_option_label"]').contains('Well Plate').click() - cy.get('button').contains('start creating labware').click({ force: true }) - }) - - it('does not have a preview image', () => { - cy.contains('Add missing info to see labware preview').should('exist') - }) - - it('tests regularity', () => { - cy.get("input[name='homogeneousWells'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='homogeneousWells'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - it('tests footprint', () => { - cy.get("input[name='footprintXDimension']").type('150').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('exist') - cy.get("input[name='footprintXDimension']").clear().type('127').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('not.exist') - cy.get("input[name='footprintYDimension']").type('150').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('exist') - cy.get("input[name='footprintYDimension']").clear().type('85').blur() - cy.contains( - 'Your labware is too large to fit in a single slot properly. Please fill out this form to request a custom labware definition.' - ).should('not.exist') - }) - - it('tests height', () => { - cy.get("input[name='labwareZDimension']").type('150').blur() - cy.contains('This labware may be too tall').should('exist') - cy.get("input[name='labwareZDimension']").clear().type('200').blur() - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='labwareZDimension']").clear().type('75').blur() - cy.contains('This labware may be too tall').should('not.exist') - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - - describe('Grid tests', () => { - it('tests number of rows', () => { - cy.get("input[name='gridRows']").focus().blur() - cy.contains('Number of rows is a required field').should('exist') - cy.get("input[name='gridRows']").type('8').blur() - cy.contains('Number of rows is a required field').should('not.exist') - }) - - it('tests are all of your rows evenly spaced', () => { - cy.get("input[name='regularRowSpacing'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='regularRowSpacing'][value='true']").check({ - force: true, - }) - }) - - it('tests number of columns', () => { - cy.get("input[name='gridColumns']").focus().blur() - cy.contains('Number of columns is a required field').should('exist') - cy.get("input[name='gridColumns']").type('10').blur() - cy.contains('Number of columns is a required field').should('not.exist') - }) - - it('tests are all of your columns evenly spaced', () => { - cy.get("input[name='regularColumnSpacing'][value='false']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('exist') - cy.get("input[name='regularColumnSpacing'][value='true']").check({ - force: true, - }) - cy.contains( - 'Your labware is not compatible with the Labware Creator' - ).should('not.exist') - }) - }) - - it('tests volume', () => { - cy.get("input[name='wellVolume']").focus().blur() - cy.contains('Volume is a required field').should('exist') - cy.get("input[name='wellVolume']").type('100').blur() - cy.contains('Volume is a required field').should('not.exist') - }) - - describe('Well shape tests', () => { - it('tests circular wells', () => { - cy.get("input[name='wellShape'][value='circular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('exist') - cy.get("input[name='wellXDimension']").should('not.exist') - cy.get("input[name='wellYDimension']").should('not.exist') - cy.get("input[name='wellDiameter']").focus().blur() - cy.contains('Diameter is a required field').should('exist') - cy.get("input[name='wellDiameter']").type('10').blur() - cy.contains('Diameter is a required field').should('not.exist') - }) - - it('tests rectangular wells', () => { - cy.get("input[name='wellShape'][value='rectangular']").check({ - force: true, - }) - cy.get("input[name='wellDiameter']").should('not.exist') - cy.get("input[name='wellXDimension']").should('exist') - cy.get("input[name='wellYDimension']").should('exist') - cy.get("input[name='wellXDimension']").focus().blur() - cy.contains('Well X is a required field').should('exist') - cy.get("input[name='wellXDimension']").type('8').blur() - cy.contains('Well X is a required field').should('not.exist') - cy.get("input[name='wellYDimension']").focus().blur() - cy.contains('Well Y is a required field').should('exist') - cy.get("input[name='wellYDimension']").type('8').blur() - cy.contains('Well Y is a required field').should('not.exist') - }) - - it('tests well bottom shape and depth', () => { - cy.get("input[name='wellBottomShape'][value='flat']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='u']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('exist') - cy.get("img[src*='_v.']").should('not.exist') - cy.get("input[name='wellBottomShape'][value='v']").check({ - force: true, - }) - cy.get("img[src*='_flat.']").should('not.exist') - cy.get("img[src*='_round.']").should('not.exist') - cy.get("img[src*='_v.']").should('exist') - cy.get("input[name='wellDepth']").focus().blur() - cy.contains('Depth is a required field').should('exist') - cy.get("input[name='wellDepth']").type('10').blur() - cy.contains('Depth is a required field').should('not.exist') - }) - - it('tests well spacing', () => { - cy.get("input[name='gridSpacingX']").focus().blur() - cy.contains('X Spacing (Xs) is a required field').should('exist') - cy.get("input[name='gridSpacingX']").type('12').blur() - cy.contains('X Spacing (Xs) is a required field').should('not.exist') - cy.get("input[name='gridSpacingY']").focus().blur() - cy.contains('Y Spacing (Ys) is a required field').should('exist') - cy.get("input[name='gridSpacingY']").type('10').blur() - cy.contains('Y Spacing (Ys) is a required field').should('not.exist') - }) - - it('tests grid offset', () => { - cy.get("input[name='gridOffsetX']").focus().blur() - cy.contains('X Offset (Xo) is a required field').should('exist') - cy.get("input[name='gridOffsetX']").type('10').blur() - cy.contains('X Offset (Xo) is a required field').should('not.exist') - cy.get("input[name='gridOffsetY']").focus().blur() - cy.contains('Y Offset (Yo) is a required field').should('exist') - cy.get("input[name='gridOffsetY']").type('8').blur() - cy.contains('Y Offset (Yo) is a required field').should('not.exist') - }) - - it('should have a preview image and no footprint errors', () => { - cy.contains('Add missing info to see labware preview').should( - 'not.exist' - ) - cy.contains( - 'Please double-check well size, Y Spacing, and Y Offset.' - ).should('not.exist') - }) - - it('should export a file', () => { - // Try with missing fields - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('exist') - cy.contains('close').click({ force: true }) - - // Brand info - cy.contains('Brand is a required field').should('exist') - cy.get("input[name='brand']").type('TestPro') - cy.contains('Brand is a required field').should('not.exist') - cy.get("input[name='brandId']").type('001') - - // File info - cy.get("input[placeholder='TestPro 80 Well Plate 100 µL']").should( - 'exist' - ) - cy.get("input[placeholder='testpro_80_wellplate_100ul']").should( - 'exist' - ) - - // All fields present - cy.get('button[class*="_export_button_"]').click({ force: true }) - cy.contains( - 'Please resolve all invalid fields in order to export the labware definition' - ).should('not.exist') - - // TODO IMMEDIATELY match against fixture ??? Is this not happening? - }) - }) - }) -}) diff --git a/labware-library/cypress/support/index.js b/labware-library/cypress/support/e2e.js similarity index 100% rename from labware-library/cypress/support/index.js rename to labware-library/cypress/support/e2e.js diff --git a/labware-library/src/labware-creator/components/ConditionalLabwareRender.tsx b/labware-library/src/labware-creator/components/ConditionalLabwareRender.tsx index 8b19353248c..4419fde57d9 100644 --- a/labware-library/src/labware-creator/components/ConditionalLabwareRender.tsx +++ b/labware-library/src/labware-creator/components/ConditionalLabwareRender.tsx @@ -6,11 +6,11 @@ import { RobotWorkSpace, } from '@opentrons/components' import { - LabwareDefinition2, SLOT_LENGTH_MM as DEFAULT_X_DIMENSION, SLOT_WIDTH_MM as DEFAULT_Y_DIMENSION, } from '@opentrons/shared-data' import styles from './ConditionalLabwareRender.module.css' +import type { LabwareDefinition2 } from '@opentrons/shared-data' interface Props { definition: LabwareDefinition2 | null diff --git a/labware-library/src/labware-creator/components/Dropdown.tsx b/labware-library/src/labware-creator/components/Dropdown.tsx index 414b70ee7a8..a4ea2c8101a 100644 --- a/labware-library/src/labware-creator/components/Dropdown.tsx +++ b/labware-library/src/labware-creator/components/Dropdown.tsx @@ -3,17 +3,16 @@ import * as React from 'react' import { Box, SelectField, - SelectOption, - StyleProps, Tooltip, useHoverTooltip, } from '@opentrons/components' import { Field } from 'formik' import { reportFieldEdit } from '../analyticsUtils' -import { getLabel, LabwareFields } from '../fields' -import type { RichOption, RichOptions } from '../fields' +import { getLabel } from '../fields' import fieldStyles from './fieldStyles.module.css' import styles from './Dropdown.module.css' +import type { SelectOption, StyleProps } from '@opentrons/components' +import type { LabwareFields, RichOption, RichOptions } from '../fields' export interface DropdownProps extends StyleProps { name: keyof LabwareFields diff --git a/labware-library/src/labware-creator/components/FormLevelErrorAlerts.tsx b/labware-library/src/labware-creator/components/FormLevelErrorAlerts.tsx index f274d656ed3..bf8883bfaa3 100644 --- a/labware-library/src/labware-creator/components/FormLevelErrorAlerts.tsx +++ b/labware-library/src/labware-creator/components/FormLevelErrorAlerts.tsx @@ -1,6 +1,7 @@ import * as React from 'react' import { AlertItem } from '@opentrons/components' -import { LabwareCreatorErrors, FORM_LEVEL_ERRORS } from '../formLevelValidation' +import { FORM_LEVEL_ERRORS } from '../formLevelValidation' +import type { LabwareCreatorErrors } from '../formLevelValidation' export const FormLevelErrorAlerts = (props: { errors: LabwareCreatorErrors diff --git a/labware-library/src/labware-creator/components/__tests__/FormAlerts.test.tsx b/labware-library/src/labware-creator/components/__tests__/FormAlerts.test.tsx index 108d83560ae..440c175b299 100644 --- a/labware-library/src/labware-creator/components/__tests__/FormAlerts.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/FormAlerts.test.tsx @@ -9,7 +9,8 @@ import { LABWARE_TOO_SMALL_ERROR, LABWARE_TOO_LARGE_ERROR, } from '../../fields' -import { FormAlerts, Props as FormAlertProps } from '../alerts/FormAlerts' +import { FormAlerts } from '../alerts/FormAlerts' +import type { Props as FormAlertProps } from '../alerts/FormAlerts' vi.mock('../../formSelectors') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/CreateNewDefinition.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/CreateNewDefinition.test.tsx index f2095e4d630..09e4cde21dd 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/CreateNewDefinition.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/CreateNewDefinition.test.tsx @@ -1,11 +1,12 @@ import React from 'react' import { vi, describe, it, expect } from 'vitest' -import { FormikConfig } from 'formik' import { render, fireEvent } from '@testing-library/react' import '@testing-library/jest-dom/vitest' -import { getDefaultFormState, LabwareFields } from '../../../fields' +import { getDefaultFormState } from '../../../fields' import { wrapInFormik } from '../../utils/wrapInFormik' import { CreateNewDefinition } from '../../sections/CreateNewDefinition' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' const formikConfig: FormikConfig = { initialValues: getDefaultFormState(), diff --git a/labware-library/src/labware-creator/components/__tests__/sections/CustomTiprackWarning.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/CustomTiprackWarning.test.tsx index 6e18832b7bd..a63ecf9f6e9 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/CustomTiprackWarning.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/CustomTiprackWarning.test.tsx @@ -1,16 +1,11 @@ import React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' -import { FormikConfig } from 'formik' import { render, screen } from '@testing-library/react' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' - +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { CustomTiprackWarning } from '../../sections/CustomTiprackWarning' - import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' let formikConfig: FormikConfig diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Description.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Description.test.tsx index 05b3bbb4914..26607f544e7 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Description.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Description.test.tsx @@ -1,17 +1,14 @@ import React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' -import { FormikConfig } from 'formik' import { render, screen } from '@testing-library/react' import '@testing-library/jest-dom/vitest' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { Description } from '../../sections/Description' import { isEveryFieldHidden } from '../../../utils/isEveryFieldHidden' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils/isEveryFieldHidden') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Export.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Export.test.tsx index 0711332637f..9e83ddecc74 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Export.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Export.test.tsx @@ -1,17 +1,14 @@ import React from 'react' -import { FormikConfig } from 'formik' import { vi, describe, it, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { render, screen } from '@testing-library/react' import '@testing-library/jest-dom/vitest' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { isEveryFieldHidden } from '../../../utils' import { Export } from '../../sections/Export' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/File.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/File.test.tsx index 1b6eb6c7ff5..f3756fd1b54 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/File.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/File.test.tsx @@ -1,17 +1,14 @@ import React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' -import { FormikConfig } from 'formik' import { render, screen } from '@testing-library/react' import '@testing-library/jest-dom/vitest' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { isEveryFieldHidden } from '../../../utils' import { File } from '../../sections/File' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Footprint.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Footprint.test.tsx index 11aa7fe13aa..8a578d3c7e3 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Footprint.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Footprint.test.tsx @@ -1,14 +1,15 @@ import React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import '@testing-library/jest-dom/vitest' -import { FormikConfig } from 'formik' import { when } from 'vitest-when' import { render, screen } from '@testing-library/react' import { nestedTextMatcher } from '../../__testUtils__/nestedTextMatcher' -import { getDefaultFormState, LabwareFields } from '../../../fields' +import { getDefaultFormState } from '../../../fields' import { Footprint } from '../../sections/Footprint' import { wrapInFormik } from '../../utils/wrapInFormik' import { isEveryFieldHidden } from '../../../utils' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Grid.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Grid.test.tsx index 3347be9baf0..40a49859748 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Grid.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Grid.test.tsx @@ -1,20 +1,17 @@ import React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' -import { FormikConfig } from 'formik' import isEqual from 'lodash/isEqual' import { when } from 'vitest-when' import { render, screen } from '@testing-library/react' -import { - getDefaultFormState, - LabwareFields, - yesNoOptions, -} from '../../../fields' +import { getDefaultFormState, yesNoOptions } from '../../../fields' import { isEveryFieldHidden, getLabwareName } from '../../../utils' import { Grid } from '../../sections/Grid' import { FormAlerts } from '../../alerts/FormAlerts' import { TextField } from '../../TextField' import { RadioField } from '../../RadioField' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') vi.mock('../../TextField') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/GridOffset.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/GridOffset.test.tsx index 6cb1fbeb77c..9ae5b28a65f 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/GridOffset.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/GridOffset.test.tsx @@ -1,16 +1,17 @@ import React from 'react' -import { FormikConfig } from 'formik' import isEqual from 'lodash/isEqual' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { render, screen } from '@testing-library/react' import { nestedTextMatcher } from '../../__testUtils__/nestedTextMatcher' -import { getDefaultFormState, LabwareFields } from '../../../fields' +import { getDefaultFormState } from '../../../fields' import { isEveryFieldHidden, getLabwareName } from '../../../utils' import { GridOffset } from '../../sections/GridOffset' import { FormAlerts } from '../../alerts/FormAlerts' import { TextField } from '../../TextField' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') vi.mock('../../TextField') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/HandPlacedTipFit.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/HandPlacedTipFit.test.tsx index 0261d3183c8..595908aa989 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/HandPlacedTipFit.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/HandPlacedTipFit.test.tsx @@ -1,12 +1,10 @@ import React from 'react' -import { FormikConfig } from 'formik' import isEqual from 'lodash/isEqual' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import { render, screen } from '@testing-library/react' import { getDefaultFormState, getInitialStatus, - LabwareFields, snugLooseOptions, } from '../../../fields' import { HandPlacedTipFit } from '../../sections/HandPlacedTipFit' @@ -14,6 +12,8 @@ import { FormAlerts } from '../../alerts/FormAlerts' import { TipFitAlerts } from '../../alerts/TipFitAlerts' import { Dropdown } from '../../Dropdown' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../Dropdown') vi.mock('../../alerts/FormAlerts') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Height.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Height.test.tsx index d70892e5359..84296e1c4b8 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Height.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Height.test.tsx @@ -2,13 +2,14 @@ import React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import '@testing-library/jest-dom/vitest' import { when } from 'vitest-when' -import { FormikConfig } from 'formik' import { render, screen } from '@testing-library/react' import { nestedTextMatcher } from '../../__testUtils__/nestedTextMatcher' -import { getDefaultFormState, LabwareFields } from '../../../fields' +import { getDefaultFormState } from '../../../fields' import { isEveryFieldHidden } from '../../../utils' import { Height } from '../../sections/Height' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Preview.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Preview.test.tsx index 385f677da2e..7389010bcac 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Preview.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Preview.test.tsx @@ -1,18 +1,15 @@ import React from 'react' -import { FormikConfig } from 'formik' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import '@testing-library/jest-dom/vitest' import { when } from 'vitest-when' import { render, screen } from '@testing-library/react' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { getLabwareName } from '../../../utils' import { Preview } from '../../sections/Preview' import { wrapInFormik } from '../../utils/wrapInFormik' import { FORM_LEVEL_ERRORS } from '../../../formLevelValidation' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Regularity.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Regularity.test.tsx index cee5a4e0ba0..cada50867ce 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Regularity.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Regularity.test.tsx @@ -2,16 +2,13 @@ import React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import '@testing-library/jest-dom/vitest' import { when } from 'vitest-when' -import { FormikConfig } from 'formik' import { render, screen } from '@testing-library/react' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { isEveryFieldHidden, getLabwareName } from '../../../utils' import { Regularity } from '../../sections/Regularity' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/Volume.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/Volume.test.tsx index faafd0e4ec8..c0fc90b54eb 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/Volume.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/Volume.test.tsx @@ -1,17 +1,14 @@ import React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' -import { FormikConfig } from 'formik' import '@testing-library/jest-dom/vitest' import { when } from 'vitest-when' import { render, screen } from '@testing-library/react' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { isEveryFieldHidden, getLabwareName } from '../../../utils' import { Volume } from '../../sections/Volume' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/WellBottomAndDepth.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/WellBottomAndDepth.test.tsx index fc081e38a96..db7c7193697 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/WellBottomAndDepth.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/WellBottomAndDepth.test.tsx @@ -2,18 +2,13 @@ import React from 'react' import { vi, it, expect, describe, beforeEach, afterEach } from 'vitest' import { render, screen } from '@testing-library/react' import '@testing-library/jest-dom/vitest' -import { FormikConfig } from 'formik' import { when } from 'vitest-when' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, - LabwareType, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { getLabwareName } from '../../../utils' import { WellBottomAndDepth } from '../../sections/WellBottomAndDepth' - import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields, LabwareType } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/WellShapeAndSides.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/WellShapeAndSides.test.tsx index f788c6108fc..74202597ee1 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/WellShapeAndSides.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/WellShapeAndSides.test.tsx @@ -1,16 +1,13 @@ import React from 'react' import { vi, describe, beforeEach, afterEach, it, expect } from 'vitest' import { render, screen } from '@testing-library/react' -import { FormikConfig } from 'formik' import { when } from 'vitest-when' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { displayAsTube, getLabwareName } from '../../../utils' import { WellShapeAndSides } from '../../sections/WellShapeAndSides' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/__tests__/sections/WellSpacing.test.tsx b/labware-library/src/labware-creator/components/__tests__/sections/WellSpacing.test.tsx index 4f79611f073..6cd9b77b09e 100644 --- a/labware-library/src/labware-creator/components/__tests__/sections/WellSpacing.test.tsx +++ b/labware-library/src/labware-creator/components/__tests__/sections/WellSpacing.test.tsx @@ -1,17 +1,14 @@ import React from 'react' -import { FormikConfig } from 'formik' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import { when } from 'vitest-when' import { render, screen } from '@testing-library/react' import { nestedTextMatcher } from '../../__testUtils__/nestedTextMatcher' -import { - getDefaultFormState, - getInitialStatus, - LabwareFields, -} from '../../../fields' +import { getDefaultFormState, getInitialStatus } from '../../../fields' import { isEveryFieldHidden, getLabwareName } from '../../../utils' import { WellSpacing } from '../../sections/WellSpacing' import { wrapInFormik } from '../../utils/wrapInFormik' +import type { FormikConfig } from 'formik' +import type { LabwareFields } from '../../../fields' vi.mock('../../../utils') diff --git a/labware-library/src/labware-creator/components/alerts/FormAlerts.tsx b/labware-library/src/labware-creator/components/alerts/FormAlerts.tsx index 4a421564a49..1312a0f44d6 100644 --- a/labware-library/src/labware-creator/components/alerts/FormAlerts.tsx +++ b/labware-library/src/labware-creator/components/alerts/FormAlerts.tsx @@ -4,7 +4,6 @@ import pick from 'lodash/pick' import { AlertItem } from '@opentrons/components' import { getLabel, - LabwareFields, IRREGULAR_LABWARE_ERROR, LABWARE_TOO_SMALL_ERROR, LABWARE_TOO_LARGE_ERROR, @@ -17,6 +16,7 @@ import { import { LinkOut } from '../LinkOut' import type { FormikTouched, FormikErrors } from 'formik' +import type { LabwareFields } from '../../fields' export interface Props { values: LabwareFields fieldList: Array diff --git a/labware-library/src/labware-creator/components/alerts/HeightAlerts.tsx b/labware-library/src/labware-creator/components/alerts/HeightAlerts.tsx index 21b76362f9f..98f00c67fc3 100644 --- a/labware-library/src/labware-creator/components/alerts/HeightAlerts.tsx +++ b/labware-library/src/labware-creator/components/alerts/HeightAlerts.tsx @@ -1,7 +1,8 @@ import * as React from 'react' -import { FormikTouched } from 'formik' -import { LabwareFields, MAX_SUGGESTED_Z } from '../../fields' import { AlertItem } from '@opentrons/components' +import { MAX_SUGGESTED_Z } from '../../fields' +import type { FormikTouched } from 'formik' +import type { LabwareFields } from '../../fields' export interface Props { values: LabwareFields diff --git a/labware-library/src/labware-creator/components/alerts/TipFitAlerts.tsx b/labware-library/src/labware-creator/components/alerts/TipFitAlerts.tsx index 5108beaa6c4..a4fdfb1ec19 100644 --- a/labware-library/src/labware-creator/components/alerts/TipFitAlerts.tsx +++ b/labware-library/src/labware-creator/components/alerts/TipFitAlerts.tsx @@ -1,7 +1,7 @@ import * as React from 'react' -import { FormikTouched } from 'formik' -import { LabwareFields } from '../../fields' import { AlertItem } from '@opentrons/components' +import type { FormikTouched } from 'formik' +import type { LabwareFields } from '../../fields' export interface Props { values: LabwareFields diff --git a/labware-library/src/labware-creator/components/alerts/XYDimensionAlerts.tsx b/labware-library/src/labware-creator/components/alerts/XYDimensionAlerts.tsx index 4f8149d4dd5..5c9fcdd704f 100644 --- a/labware-library/src/labware-creator/components/alerts/XYDimensionAlerts.tsx +++ b/labware-library/src/labware-creator/components/alerts/XYDimensionAlerts.tsx @@ -1,14 +1,14 @@ import * as React from 'react' -import { FormikTouched } from 'formik' import { AlertItem } from '@opentrons/components' import { SUGGESTED_X, SUGGESTED_Y, LINK_CUSTOM_LABWARE_FORM, SUGGESTED_XY_RANGE, - LabwareFields, } from '../../fields' import { LinkOut } from '../LinkOut' +import type { FormikTouched } from 'formik' +import type { LabwareFields } from '../../fields' const xyMessage = (
    diff --git a/labware-library/src/labware-creator/components/sections/Description.tsx b/labware-library/src/labware-creator/components/sections/Description.tsx index f6dcb71d4b1..7d5c7e12d84 100644 --- a/labware-library/src/labware-creator/components/sections/Description.tsx +++ b/labware-library/src/labware-creator/components/sections/Description.tsx @@ -1,6 +1,5 @@ import * as React from 'react' import { useFormikContext } from 'formik' -import { LabwareFields } from '../../fields' import { isEveryFieldHidden } from '../../utils' import { getIsOpentronsTubeRack } from '../../utils/getIsOpentronsTubeRack' import { FormAlerts } from '../alerts/FormAlerts' @@ -9,6 +8,7 @@ import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' import { Flex } from '@opentrons/components' +import type { LabwareFields } from '../../fields' interface Props { values: LabwareFields diff --git a/labware-library/src/labware-creator/components/sections/File.tsx b/labware-library/src/labware-creator/components/sections/File.tsx index bd2129a361a..e54b4c0111f 100644 --- a/labware-library/src/labware-creator/components/sections/File.tsx +++ b/labware-library/src/labware-creator/components/sections/File.tsx @@ -1,6 +1,5 @@ import * as React from 'react' import { useFormikContext } from 'formik' -import { LabwareFields } from '../../fields' import { maskLoadName } from '../../fieldMasks' import { getDefaultDisplayName, getDefaultLoadName } from '../../formSelectors' import { isEveryFieldHidden } from '../../utils' @@ -9,6 +8,7 @@ import { TextField } from '../TextField' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' const Content = (props: { values: LabwareFields }): JSX.Element => (
    diff --git a/labware-library/src/labware-creator/components/sections/Footprint.tsx b/labware-library/src/labware-creator/components/sections/Footprint.tsx index 8656738cec4..6564a20eed7 100644 --- a/labware-library/src/labware-creator/components/sections/Footprint.tsx +++ b/labware-library/src/labware-creator/components/sections/Footprint.tsx @@ -1,7 +1,6 @@ import * as React from 'react' import { useFormikContext } from 'formik' import { makeMaskToDecimal } from '../../fieldMasks' -import { LabwareFields } from '../../fields' import { isEveryFieldHidden } from '../../utils' import { FormAlerts } from '../alerts/FormAlerts' import { XYDimensionAlerts } from '../alerts/XYDimensionAlerts' @@ -10,6 +9,7 @@ import { SectionBody } from './SectionBody' import footprintImage from '../../images/footprint.svg' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' const maskTo2Decimal = makeMaskToDecimal(2) diff --git a/labware-library/src/labware-creator/components/sections/Grid.tsx b/labware-library/src/labware-creator/components/sections/Grid.tsx index d764b018824..067297a2bad 100644 --- a/labware-library/src/labware-creator/components/sections/Grid.tsx +++ b/labware-library/src/labware-creator/components/sections/Grid.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { useFormikContext } from 'formik' import { maskToInteger } from '../../fieldMasks' import { isEveryFieldHidden, getLabwareName } from '../../utils' -import { LabwareFields, yesNoOptions } from '../../fields' +import { yesNoOptions } from '../../fields' import { FormAlerts } from '../alerts/FormAlerts' import { TextField } from '../TextField' import { RadioField } from '../RadioField' @@ -10,6 +10,7 @@ import { GridImg } from '../diagrams' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' interface Props { values: LabwareFields diff --git a/labware-library/src/labware-creator/components/sections/GridOffset.tsx b/labware-library/src/labware-creator/components/sections/GridOffset.tsx index 855bb458374..8bc13c0bfae 100644 --- a/labware-library/src/labware-creator/components/sections/GridOffset.tsx +++ b/labware-library/src/labware-creator/components/sections/GridOffset.tsx @@ -2,13 +2,13 @@ import * as React from 'react' import { useFormikContext } from 'formik' import { makeMaskToDecimal } from '../../fieldMasks' import { isEveryFieldHidden, getLabwareName } from '../../utils' -import { LabwareFields } from '../../fields' import { FormAlerts } from '../alerts/FormAlerts' import { TextField } from '../TextField' import { XYOffsetImg, XYOffsetHelperTextImg } from '../diagrams' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' const maskTo2Decimal = makeMaskToDecimal(2) diff --git a/labware-library/src/labware-creator/components/sections/Height.tsx b/labware-library/src/labware-creator/components/sections/Height.tsx index 62eb3194552..a56256a38ef 100644 --- a/labware-library/src/labware-creator/components/sections/Height.tsx +++ b/labware-library/src/labware-creator/components/sections/Height.tsx @@ -2,7 +2,6 @@ import * as React from 'react' import { useFormikContext } from 'formik' import { isEveryFieldHidden } from '../../utils' import { makeMaskToDecimal } from '../../fieldMasks' -import { LabwareFields } from '../../fields' import { HeightAlerts } from '../alerts/HeightAlerts' import { FormAlerts } from '../alerts/FormAlerts' import { TextField } from '../TextField' @@ -11,6 +10,7 @@ import { HeightGuidingText } from '../HeightGuidingText' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' const maskTo2Decimal = makeMaskToDecimal(2) diff --git a/labware-library/src/labware-creator/components/sections/Preview.tsx b/labware-library/src/labware-creator/components/sections/Preview.tsx index 287c3368c75..f06a120fb92 100644 --- a/labware-library/src/labware-creator/components/sections/Preview.tsx +++ b/labware-library/src/labware-creator/components/sections/Preview.tsx @@ -1,6 +1,5 @@ import * as React from 'react' import { useFormikContext } from 'formik' -import { FormStatus, LabwareFields } from '../../fields' import { getLabwareName } from '../../utils' import { ConditionalLabwareRender } from '../ConditionalLabwareRender' import { FormLevelErrorAlerts } from '../FormLevelErrorAlerts' @@ -8,6 +7,7 @@ import { FormLevelErrorAlerts } from '../FormLevelErrorAlerts' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { FormStatus, LabwareFields } from '../../fields' export const PreviewInstructions = (props: { values: LabwareFields diff --git a/labware-library/src/labware-creator/components/sections/Volume.tsx b/labware-library/src/labware-creator/components/sections/Volume.tsx index 78980748bc9..c8ad8d4c34b 100644 --- a/labware-library/src/labware-creator/components/sections/Volume.tsx +++ b/labware-library/src/labware-creator/components/sections/Volume.tsx @@ -2,12 +2,12 @@ import * as React from 'react' import { useFormikContext } from 'formik' import { isEveryFieldHidden, getLabwareName } from '../../utils' import { makeMaskToDecimal } from '../../fieldMasks' -import { LabwareFields } from '../../fields' import { FormAlerts } from '../alerts/FormAlerts' import { TextField } from '../TextField' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' const maskTo2Decimal = makeMaskToDecimal(2) diff --git a/labware-library/src/labware-creator/components/sections/WellBottomAndDepth.tsx b/labware-library/src/labware-creator/components/sections/WellBottomAndDepth.tsx index 0d2112acb27..d27e1f6a23f 100644 --- a/labware-library/src/labware-creator/components/sections/WellBottomAndDepth.tsx +++ b/labware-library/src/labware-creator/components/sections/WellBottomAndDepth.tsx @@ -2,7 +2,6 @@ import * as React from 'react' import capitalize from 'lodash/capitalize' import { useFormikContext } from 'formik' import { makeMaskToDecimal } from '../../fieldMasks' -import { LabwareFields } from '../../fields' import { FormAlerts } from '../alerts/FormAlerts' import { TextField } from '../TextField' import { RadioField } from '../RadioField' @@ -12,6 +11,7 @@ import { wellBottomShapeOptionsWithIcons } from '../optionsWithImages' import styles from '../../styles.module.css' import { getLabwareName } from '../../utils' +import type { LabwareFields } from '../../fields' const maskTo2Decimal = makeMaskToDecimal(2) diff --git a/labware-library/src/labware-creator/components/sections/WellShapeAndSides.tsx b/labware-library/src/labware-creator/components/sections/WellShapeAndSides.tsx index 5a4cd5590cf..23b8362cef3 100644 --- a/labware-library/src/labware-creator/components/sections/WellShapeAndSides.tsx +++ b/labware-library/src/labware-creator/components/sections/WellShapeAndSides.tsx @@ -3,7 +3,6 @@ import { useFormikContext } from 'formik' import capitalize from 'lodash/capitalize' import { makeMaskToDecimal } from '../../fieldMasks' import { displayAsTube, getLabwareName } from '../../utils' -import { LabwareFields } from '../../fields' import { FormAlerts } from '../alerts/FormAlerts' import { wellShapeOptionsWithIcons } from '../optionsWithImages' import { TextField } from '../TextField' @@ -12,6 +11,7 @@ import { WellXYImg } from '../diagrams' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' const maskTo2Decimal = makeMaskToDecimal(2) diff --git a/labware-library/src/labware-creator/components/sections/WellSpacing.tsx b/labware-library/src/labware-creator/components/sections/WellSpacing.tsx index 05ed08b5ec3..05c473dd9e3 100644 --- a/labware-library/src/labware-creator/components/sections/WellSpacing.tsx +++ b/labware-library/src/labware-creator/components/sections/WellSpacing.tsx @@ -3,13 +3,13 @@ import { useFormikContext } from 'formik' import capitalize from 'lodash/capitalize' import { makeMaskToDecimal } from '../../fieldMasks' import { isEveryFieldHidden, getLabwareName } from '../../utils' -import { LabwareFields } from '../../fields' import { FormAlerts } from '../alerts/FormAlerts' import { TextField } from '../TextField' import { XYSpacingImg } from '../diagrams' import { SectionBody } from './SectionBody' import styles from '../../styles.module.css' +import type { LabwareFields } from '../../fields' const maskTo2Decimal = makeMaskToDecimal(2) diff --git a/labware-library/src/labware-creator/components/utils/wrapInFormik.tsx b/labware-library/src/labware-creator/components/utils/wrapInFormik.tsx index 2135236d709..4c8bf123ece 100644 --- a/labware-library/src/labware-creator/components/utils/wrapInFormik.tsx +++ b/labware-library/src/labware-creator/components/utils/wrapInFormik.tsx @@ -1,5 +1,6 @@ import * as React from 'react' -import { Formik, FormikConfig } from 'formik' +import { Formik } from 'formik' +import type { FormikConfig } from 'formik' /** * Wraps a component in so it can be unit tested in isolation diff --git a/labware-library/src/labware-creator/fieldsToLabware.ts b/labware-library/src/labware-creator/fieldsToLabware.ts index 1c956ff7c0d..d9a718e0964 100644 --- a/labware-library/src/labware-creator/fieldsToLabware.ts +++ b/labware-library/src/labware-creator/fieldsToLabware.ts @@ -1,17 +1,16 @@ -import { - createRegularLabware, - LabwareWellGroup, - // createIrregularLabware, -} from '@opentrons/shared-data' +import { createRegularLabware } from '@opentrons/shared-data' + import { DISPLAY_VOLUME_UNITS } from './fields' +import { getIsCustomTubeRack } from './utils' +import type { ProcessedLabwareFields } from './fields' import type { + LabwareWellGroup, + // createIrregularLabware, LabwareDefinition2, LabwareDisplayCategory, LabwareWellProperties, } from '@opentrons/shared-data' -import type { ProcessedLabwareFields } from './fields' -import { getIsCustomTubeRack } from './utils' // TODO Ian 2019-07-29: move this constant to shared-data? // This is the distance from channel 1 to channel 8 of any 8-channel, not tied to name/model diff --git a/labware-library/src/labware-creator/formLevelValidation.ts b/labware-library/src/labware-creator/formLevelValidation.ts index 370f61fabc4..38243803cb6 100644 --- a/labware-library/src/labware-creator/formLevelValidation.ts +++ b/labware-library/src/labware-creator/formLevelValidation.ts @@ -1,8 +1,9 @@ -import { FormikErrors } from 'formik' import { labwareFormSchemaBaseObject } from './labwareFormSchema' -import type { LabwareFields } from './fields' import { getLabwareName } from './utils' +import type { LabwareFields } from './fields' +import type { FormikErrors } from 'formik' + export const FORM_LEVEL_ERRORS = 'FORM_LEVEL_ERRORS' export const WELLS_OUT_OF_BOUNDS_X = 'WELLS_OUT_OF_BOUNDS_X' export const WELLS_OUT_OF_BOUNDS_Y = 'WELLS_OUT_OF_BOUNDS_Y' diff --git a/labware-library/src/labware-creator/getDefaultedDef.ts b/labware-library/src/labware-creator/getDefaultedDef.ts index c8d5fd8ca4b..f3ab100a6ea 100644 --- a/labware-library/src/labware-creator/getDefaultedDef.ts +++ b/labware-library/src/labware-creator/getDefaultedDef.ts @@ -1,13 +1,14 @@ import { - LabwareDefinition2, SLOT_LENGTH_MM as DEFAULT_X_DIMENSION, SLOT_WIDTH_MM as DEFAULT_Y_DIMENSION, } from '@opentrons/shared-data' import pick from 'lodash/pick' -import { LabwareFields, ProcessedLabwareFields } from './fields' import { labwareFormSchema } from './labwareFormSchema' import { fieldsToLabware } from './fieldsToLabware' +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { LabwareFields, ProcessedLabwareFields } from './fields' + // Fill arbitrary values in to any missing fields that aren't needed for this render, // eg some required definition data like well volume, height, and bottom shape don't affect the render. // diff --git a/labware-library/src/labware-creator/index.tsx b/labware-library/src/labware-creator/index.tsx index 648dec63a9f..8eed39b66da 100644 --- a/labware-library/src/labware-creator/index.tsx +++ b/labware-library/src/labware-creator/index.tsx @@ -11,19 +11,16 @@ import { aluminumBlockAutofills, aluminumBlockChildTypeOptions, aluminumBlockTypeOptions, - FormStatus, getDefaultFormState, getInitialStatus, tubeRackAutofills, tubeRackInsertOptions, } from './fields' + import { makeAutofillOnChange } from './utils/makeAutofillOnChange' import { labwareDefToFields } from './labwareDefToFields' import { labwareFormSchema } from './labwareFormSchema' -import { - formLevelValidation, - LabwareCreatorErrors, -} from './formLevelValidation' +import { formLevelValidation } from './formLevelValidation' import { fieldsToLabware } from './fieldsToLabware' import { LabwareCreator as LabwareCreatorComponent } from './components/LabwareCreator' import { Dropdown } from './components/Dropdown' @@ -48,17 +45,19 @@ import { Volume } from './components/sections/Volume' import { WellBottomAndDepth } from './components/sections/WellBottomAndDepth' import { WellShapeAndSides } from './components/sections/WellShapeAndSides' import { WellSpacing } from './components/sections/WellSpacing' +import { getDefaultedDef } from './getDefaultedDef' +import { getIsXYGeometryChanged } from './utils/getIsXYGeometryChanged' import styles from './styles.module.css' import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { LabwareCreatorErrors } from './formLevelValidation' import type { + FormStatus, ImportError, LabwareFields, ProcessedLabwareFields, } from './fields' -import { getDefaultedDef } from './getDefaultedDef' -import { getIsXYGeometryChanged } from './utils/getIsXYGeometryChanged' const ajv = new Ajv() const validateLabwareSchema = ajv.compile(labwareSchema) diff --git a/labware-library/src/labware-creator/labwareFormSchema.ts b/labware-library/src/labware-creator/labwareFormSchema.ts index 7b0898a8144..24b16894188 100644 --- a/labware-library/src/labware-creator/labwareFormSchema.ts +++ b/labware-library/src/labware-creator/labwareFormSchema.ts @@ -18,9 +18,8 @@ import { MIN_Y_DIMENSION, REQUIRED_FIELD_ERROR, MUST_BE_A_NUMBER_ERROR, - LabwareFields, } from './fields' -import type { ProcessedLabwareFields } from './fields' +import type { LabwareFields, ProcessedLabwareFields } from './fields' // global overrides for Yup's default error messages. Yup.setLocale({ diff --git a/labware-library/src/labware-creator/utils/displayAsTube.ts b/labware-library/src/labware-creator/utils/displayAsTube.ts index 9a55bcc34ad..c4bdd18d7fe 100644 --- a/labware-library/src/labware-creator/utils/displayAsTube.ts +++ b/labware-library/src/labware-creator/utils/displayAsTube.ts @@ -1,4 +1,4 @@ -import { LabwareFields } from '../fields' +import type { LabwareFields } from '../fields' export const displayAsTube = (values: LabwareFields): boolean => values.labwareType === 'tubeRack' || diff --git a/labware-library/src/labware-creator/utils/getIsCustomTubeRack.ts b/labware-library/src/labware-creator/utils/getIsCustomTubeRack.ts index 4766cf8d457..8c11ca58557 100644 --- a/labware-library/src/labware-creator/utils/getIsCustomTubeRack.ts +++ b/labware-library/src/labware-creator/utils/getIsCustomTubeRack.ts @@ -1,4 +1,4 @@ -import { LabwareFields, ProcessedLabwareFields } from '../fields' +import type { LabwareFields, ProcessedLabwareFields } from '../fields' export const getIsCustomTubeRack = ( values: LabwareFields | ProcessedLabwareFields diff --git a/labware-library/src/labware-creator/utils/getIsOpentronsTubeRack.ts b/labware-library/src/labware-creator/utils/getIsOpentronsTubeRack.ts index 5c3590c195b..7894b198e57 100644 --- a/labware-library/src/labware-creator/utils/getIsOpentronsTubeRack.ts +++ b/labware-library/src/labware-creator/utils/getIsOpentronsTubeRack.ts @@ -1,4 +1,4 @@ -import { LabwareFields, ProcessedLabwareFields } from '../fields' +import type { LabwareFields, ProcessedLabwareFields } from '../fields' // NOTE: if tubeRackInsertLoadName is blank, // assume Opentrons tube rack (aka non-custom tube rack) diff --git a/labware-library/src/labware-creator/utils/getIsXYGeometryChanged.ts b/labware-library/src/labware-creator/utils/getIsXYGeometryChanged.ts index b6f0d0058f4..7f8c217c504 100644 --- a/labware-library/src/labware-creator/utils/getIsXYGeometryChanged.ts +++ b/labware-library/src/labware-creator/utils/getIsXYGeometryChanged.ts @@ -1,6 +1,6 @@ import difference from 'lodash/difference' -import { LabwareFields } from '../fields' import { DEFAULTED_DEF_PATCH } from '../getDefaultedDef' +import type { LabwareFields } from '../fields' export const getIsXYGeometryChanged = ( prevValues: LabwareFields, diff --git a/labware-library/src/labware-creator/utils/getLabwareName.ts b/labware-library/src/labware-creator/utils/getLabwareName.ts index 1805ef762ae..5b280fe7960 100644 --- a/labware-library/src/labware-creator/utils/getLabwareName.ts +++ b/labware-library/src/labware-creator/utils/getLabwareName.ts @@ -1,5 +1,5 @@ -import { LabwareFields } from '../fields' import { displayAsTube } from './displayAsTube' +import type { LabwareFields } from '../fields' export const getLabwareName = ( values: LabwareFields, diff --git a/labware-library/src/labware-creator/utils/isEveryFieldHidden.ts b/labware-library/src/labware-creator/utils/isEveryFieldHidden.ts index 1a97ae26023..8de287116b0 100644 --- a/labware-library/src/labware-creator/utils/isEveryFieldHidden.ts +++ b/labware-library/src/labware-creator/utils/isEveryFieldHidden.ts @@ -1,5 +1,5 @@ import { getIsHidden } from '../formSelectors' -import { LabwareFields } from '../fields' +import type { LabwareFields } from '../fields' export const isEveryFieldHidden = ( fieldList: Array, diff --git a/labware-library/src/labware-creator/utils/makeAutofillOnChange.ts b/labware-library/src/labware-creator/utils/makeAutofillOnChange.ts index a9dba75ce71..67fa07497df 100644 --- a/labware-library/src/labware-creator/utils/makeAutofillOnChange.ts +++ b/labware-library/src/labware-creator/utils/makeAutofillOnChange.ts @@ -1,6 +1,6 @@ import mapValues from 'lodash/mapValues' -import { LabwareFields } from '../fields' import type { FormikTouched } from 'formik' +import type { LabwareFields } from '../fields' interface MakeAutofillOnChangeArgs { name: keyof LabwareFields diff --git a/labware-library/vite.config.ts b/labware-library/vite.config.ts index 2db2bd80b1a..d21c3622266 100644 --- a/labware-library/vite.config.ts +++ b/labware-library/vite.config.ts @@ -64,4 +64,7 @@ export default defineConfig({ ...testAliases, }, }, + server: { + port: 5179, + }, }) diff --git a/opentrons-ai-client/Makefile b/opentrons-ai-client/Makefile index 9c15fa32e41..580d96cfb86 100644 --- a/opentrons-ai-client/Makefile +++ b/opentrons-ai-client/Makefile @@ -6,6 +6,9 @@ SHELL := bash # add node_modules/.bin to PATH PATH := $(shell cd .. && yarn bin):$(PATH) +# dev server port +PORT ?= 5173 + benchmark_output := $(shell node -e 'console.log(new Date());') # These variables can be overriden when make is invoked to customize the @@ -42,6 +45,7 @@ build: .PHONY: dev dev: export NODE_ENV := development +dev: export PORT := $(PORT) dev: vite serve @@ -57,3 +61,7 @@ test: .PHONY: test-cov test-cov: make -C .. test-js-ai-client tests=$(tests) test_opts="$(test_opts)" cov_opts="$(cov_opts)" + +.PHONY: dev-deploy +dev-deploy: + aws s3 sync ./dist s3://dev-opentrons-ai-front-end/ --delete diff --git a/opentrons-ai-client/README.md b/opentrons-ai-client/README.md index d4c80c2bb23..c2a15875311 100644 --- a/opentrons-ai-client/README.md +++ b/opentrons-ai-client/README.md @@ -13,8 +13,13 @@ To get started: clone the `Opentrons/opentrons` repository, set up your computer ```shell # change into the cloned directory cd opentrons + # prerequisite: install dependencies as specified in project setup make setup + +# if you have done the setup already, you can run the following instead of make setup +make teardown-js && make setup-js + # launch the dev server make -C opentrons-ai-client dev ``` @@ -26,6 +31,8 @@ The UI stack is built using: - [React][] - [Babel][] - [Vite][] +- [Jotai][] +- [styled-components][] Some important directories: @@ -59,5 +66,7 @@ TBD [react]: https://react.dev/ [babel]: https://babeljs.io/ [vite]: https://vitejs.dev/ +[jotai]: https://jotai.org/ +[styled-components]: https://styled-components.com/ [bundle-analyzer]: https://github.com/webpack-contrib/webpack-bundle-analyzer [opentrons-ai-server]: https://github.com/Opentrons/opentrons/tree/edge/opentrons-ai-server diff --git a/opentrons-ai-client/index.html b/opentrons-ai-client/index.html index 57e7f83f591..4e8e60a4121 100644 --- a/opentrons-ai-client/index.html +++ b/opentrons-ai-client/index.html @@ -2,7 +2,8 @@ - + + Opentrons AI diff --git a/opentrons-ai-client/package.json b/opentrons-ai-client/package.json index d8ea50136ff..3742fbe70c7 100644 --- a/opentrons-ai-client/package.json +++ b/opentrons-ai-client/package.json @@ -19,9 +19,12 @@ }, "homepage": "https://github.com/Opentrons/opentrons", "dependencies": { + "@auth0/auth0-react": "2.2.4", "@fontsource/public-sans": "5.0.3", "@opentrons/components": "link:../components", + "axios": "^0.21.1", "i18next": "^19.8.3", + "jotai": "2.8.0", "react": "18.2.0", "react-dom": "18.2.0", "react-error-boundary": "^4.0.10", diff --git a/opentrons-ai-client/src/App.test.tsx b/opentrons-ai-client/src/App.test.tsx index 4ae3494a53c..cbc13739b45 100644 --- a/opentrons-ai-client/src/App.test.tsx +++ b/opentrons-ai-client/src/App.test.tsx @@ -1,29 +1,66 @@ import React from 'react' -import { screen } from '@testing-library/react' -import { describe, it, vi, beforeEach } from 'vitest' +import { fireEvent, screen } from '@testing-library/react' +import { describe, it, vi, beforeEach, expect } from 'vitest' +import * as auth0 from '@auth0/auth0-react' import { renderWithProviders } from './__testing-utils__' +import { i18n } from './i18n' import { SidePanel } from './molecules/SidePanel' import { ChatContainer } from './organisms/ChatContainer' +import { Loading } from './molecules/Loading' import { App } from './App' +vi.mock('@auth0/auth0-react') + +const mockLogout = vi.fn() + vi.mock('./molecules/SidePanel') vi.mock('./organisms/ChatContainer') +vi.mock('./molecules/Loading') const render = (): ReturnType => { - return renderWithProviders() + return renderWithProviders(, { + i18nInstance: i18n, + }) } describe('App', () => { beforeEach(() => { vi.mocked(SidePanel).mockReturnValue(
    mock SidePanel
    ) vi.mocked(ChatContainer).mockReturnValue(
    mock ChatContainer
    ) + vi.mocked(Loading).mockReturnValue(
    mock Loading
    ) + }) + + it('should render loading screen when isLoading is true', () => { + ;(auth0 as any).useAuth0 = vi.fn().mockReturnValue({ + isAuthenticated: false, + isLoading: true, + }) + render() + screen.getByText('mock Loading') }) it('should render text', () => { + ;(auth0 as any).useAuth0 = vi.fn().mockReturnValue({ + isAuthenticated: true, + isLoading: false, + }) render() screen.getByText('mock SidePanel') screen.getByText('mock ChatContainer') + screen.getByText('Logout') + }) + + it('should call a mock function when clicking logout button', () => { + ;(auth0 as any).useAuth0 = vi.fn().mockReturnValue({ + isAuthenticated: true, + isLoading: false, + logout: mockLogout, + }) + render() + const logoutButton = screen.getByText('Logout') + fireEvent.click(logoutButton) + expect(mockLogout).toHaveBeenCalled() }) }) diff --git a/opentrons-ai-client/src/App.tsx b/opentrons-ai-client/src/App.tsx index 268a61b2e7f..156b842516f 100644 --- a/opentrons-ai-client/src/App.tsx +++ b/opentrons-ai-client/src/App.tsx @@ -1,12 +1,52 @@ import React from 'react' -import { DIRECTION_ROW, Flex } from '@opentrons/components' +import { useAuth0 } from '@auth0/auth0-react' +import { useTranslation } from 'react-i18next' + +import { + COLORS, + Flex, + Link as LinkButton, + POSITION_ABSOLUTE, + POSITION_RELATIVE, + TYPOGRAPHY, +} from '@opentrons/components' import { SidePanel } from './molecules/SidePanel' import { ChatContainer } from './organisms/ChatContainer' +import { Loading } from './molecules/Loading' + +export function App(): JSX.Element | null { + const { t } = useTranslation('protocol_generator') + const { isAuthenticated, logout, isLoading, loginWithRedirect } = useAuth0() + + React.useEffect(() => { + if (!isAuthenticated && !isLoading) { + void loginWithRedirect() + } + }, [isAuthenticated, isLoading]) + + if (isLoading) { + return + } + + if (!isAuthenticated) { + return null + } -export function App(): JSX.Element { return ( - + + + logout()} + textDecoration={TYPOGRAPHY.textDecorationUnderline} + > + {t('logout')} + + diff --git a/opentrons-ai-client/src/assets/images/favicon/android-chrome-192x192.png b/opentrons-ai-client/src/assets/images/favicon/android-chrome-192x192.png new file mode 100644 index 00000000000..468479c76e7 Binary files /dev/null and b/opentrons-ai-client/src/assets/images/favicon/android-chrome-192x192.png differ diff --git a/opentrons-ai-client/src/assets/images/favicon/android-chrome-512x512.png b/opentrons-ai-client/src/assets/images/favicon/android-chrome-512x512.png new file mode 100644 index 00000000000..bab2df65fdb Binary files /dev/null and b/opentrons-ai-client/src/assets/images/favicon/android-chrome-512x512.png differ diff --git a/opentrons-ai-client/src/assets/images/favicon/apple-touch-icon.png b/opentrons-ai-client/src/assets/images/favicon/apple-touch-icon.png new file mode 100644 index 00000000000..ccbd74a497b Binary files /dev/null and b/opentrons-ai-client/src/assets/images/favicon/apple-touch-icon.png differ diff --git a/opentrons-ai-client/src/assets/images/favicon/favicon-16x16.png b/opentrons-ai-client/src/assets/images/favicon/favicon-16x16.png new file mode 100644 index 00000000000..4edd2e8b352 Binary files /dev/null and b/opentrons-ai-client/src/assets/images/favicon/favicon-16x16.png differ diff --git a/opentrons-ai-client/src/assets/images/favicon/favicon-32x32.png b/opentrons-ai-client/src/assets/images/favicon/favicon-32x32.png new file mode 100644 index 00000000000..eed71c70949 Binary files /dev/null and b/opentrons-ai-client/src/assets/images/favicon/favicon-32x32.png differ diff --git a/opentrons-ai-client/src/assets/images/favicon/favicon.ico b/opentrons-ai-client/src/assets/images/favicon/favicon.ico new file mode 100644 index 00000000000..d1266c550bf Binary files /dev/null and b/opentrons-ai-client/src/assets/images/favicon/favicon.ico differ diff --git a/opentrons-ai-client/src/assets/images/favicon/site.webmanifest b/opentrons-ai-client/src/assets/images/favicon/site.webmanifest new file mode 100644 index 00000000000..fe3af17b5d1 --- /dev/null +++ b/opentrons-ai-client/src/assets/images/favicon/site.webmanifest @@ -0,0 +1,19 @@ +{ + "name": "opentrons_favicon", + "short_name": "favicon", + "icons": [ + { + "src": "/android-chrome-192x192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "/android-chrome-512x512.png", + "sizes": "512x512", + "type": "image/png" + } + ], + "theme_color": "#ffffff", + "background_color": "#ffffff", + "display": "standalone" +} diff --git a/opentrons-ai-client/src/assets/localization/en/protocol_generator.json b/opentrons-ai-client/src/assets/localization/en/protocol_generator.json index 04509609800..dea672fb39a 100644 --- a/opentrons-ai-client/src/assets/localization/en/protocol_generator.json +++ b/opentrons-ai-client/src/assets/localization/en/protocol_generator.json @@ -1,26 +1,34 @@ { "api": "API: An API level is 2.15", "application": "Application: Your protocol's name, describing what it does.", - "commands": "Commands: List the protocol's steps, specifying quantities in microliters and giving exact source and destination locations.", + "commands": "Commands: List the protocol's steps, specifying quantities in microliters (mL) and giving exact source and destination locations.", + "copy_code": "Copy code", "disclaimer": "OpentronsAI can make mistakes. Review your protocol before running it on an Opentrons robot.", + "example": "For example prompts, click the buttons in the left panel.", "got_feedback": "Got feedback? We love to hear it.", - "make_sure_your_prompt": "Make sure your prompt includes the following:", - "metadata": "Metadata: Three pieces of information.", - "modules": "Modules: Thermocycler or Temperature Module.", - "opentronsai_asks": "OpentronsAI asks you to provide it!", + "key_info": "Here are some key pieces of information to provide in your prompt:", + "labware_and_tipracks": "Labware and tip racks: Use names from the
    Opentrons Labware Library.", + "liquid_locations": "Liquid locations: Describe where liquids should go in the labware.", + "loading": "Loading...", + "login": "Login", + "logout": "Logout", + "make_sure_your_prompt": "Write a prompt in a natural language for OpentronsAI to generate a protocol using the Opentrons Python Protocol API v2. The better the prompt, the better the quality of the protocol produced by OpentronsAI.", + "modules_and_adapters": "Modules and adapters: Specify the modules and labware adapters required by your protocol.", + "notes": "A few important things to note:", "opentronsai": "OpentronsAI", "ot2_pipettes": "OT-2 pipettes: Include volume, number of channels, and generation.", "pcr_flex": "PCR (Flex)", "pcr": "PCR", "reagent_transfer_flex": "Reagent Transfer (Flex)", "reagent_transfer": "Reagent Transfer", + "reload_page": "To start over and create a new protocol, simply reload the page.", + "robot_type": "Robot type: Choose the OT-2 or Opentrons Flex.", "robot": "Robot: OT-2.", "share_your_thoughts": "Share your thoughts here", "side_panel_body": "Write a prompt in natural language to generate a Reagent Transfer or a PCR protocol for the OT-2 or Opentrons Flex using the Opentrons Python Protocol API.", "side_panel_header": "Use natural language to generate protocols with OpentronsAI powered by OpenAI", - "simulator_description": "Once OpentronsAI has written your protocol, type \"simulate\" in the prompt box to try it out.", - "tipracks_and_labware": "Tip racks and labware: Use names from the Opentrons Labware Library.", "try_example_prompts": "Stuck? Try these example prompts to get started.", + "simulate_description": "Once OpentronsAI has written your protocol, type `simulate` in the prompt box to try it out.", "type_your_prompt": "Type your prompt...", "well_allocations": "Well allocations: Describe where liquids should go in labware.", "what_if_you": "What if you don’t provide all of those pieces of information? OpentronsAI asks you to provide it!", diff --git a/opentrons-ai-client/src/assets/prompts/prompt-data.ts b/opentrons-ai-client/src/assets/prompts/prompt-data.ts index b0276b47547..16619478c20 100644 --- a/opentrons-ai-client/src/assets/prompts/prompt-data.ts +++ b/opentrons-ai-client/src/assets/prompts/prompt-data.ts @@ -1,147 +1,131 @@ export const reagentTransfer = ` -Write a protocol for the Opentrons OT-2 as described below: - -Metadata: -- Application: Reagent transfer -- Robot: OT-2 -- API: 2.15 +Write a protocol using the Opentrons Python Protocol API v2 for OT-2 robot according to the following description: + +Labware: +- Source Labware: \`Thermo Scientific Nunc 96 Well Plate 1300 uL\` in slot 9 +- Destination Labware: \`Opentrons 96 Flat Bottom Adapter with NEST 96 Well Plate 200 uL Flat\` in slot 10 +- \`Opentrons 96 Filter Tip Rack 1000 uL\` in slot 8 +- \`Opentrons 96 Tip Rack 1000 uL\` in slot 3 Pipette mount: -- P1000 Single-Channel GEN2 is mounted on left -- P300 Single-Channel GEN2 is mounted on right - -Labware: -- Source Labware: Thermo Scientific Nunc 96 Well Plate 2000 µL on slot 7 -- Destination Labware: Opentrons 24 Well Aluminum Block with NEST 0.5 mL Screwcap on slot 3 -- Tiprack: Opentrons 96 Filter Tip Rack 1000 µL on slot 4 +- P1000 Single-Channel GEN2 is mounted on the left +- P1000 Single-Channel GEN2 is mounted on the right Commands: -- Using P1000 Single-Channel GEN2 pipette on left mount, transfer 195.0 uL of reagent - from H10, F12, D7, B1, C8 wells in source labware - to first well in the destination labware. - Use new tip for each transfer. +1. Use the left-mounted P1000 Single-Channel GEN2 pipette to transfer 196 uL of reagent from wells A7, A6, A5, A2, A3 +of the source labware to the corresponding wells A5, A9, A1, A10, A2 of the destination labware. Use a new tip for each transfer. +2. Use the right-mounted P1000 Single-Channel GEN2 pipette to transfer 8 uL of liquid from wells A9, A12, A6, A10, A3 +of the source labware to the corresponding wells A7, A11, A6, A3, A9 of the destination labware. Use the same tip for all transfers. ` export const flexReagentTransfer = ` -Write a protocol for the Opentrons Flex as described below: - -Metadata and requirements: -- Application: Reagent transfer -- Robot: Flex -- API: 2.15 +Write a protocol using the Opentrons Python Protocol API v2 for Flex robot according to the following description: + +Labware: +- Source Labware: \`Opentrons 96 PCR Heater-Shaker Adapter with NEST Well Plate 100 ul\`, in slot D1 +- Destination Labware: \`Opentrons 96 Well Aluminum Block with Bio-Rad Well Plate 200 uL\`, in slot C2 +- Tiprack: \`Opentrons Flex 96 Filter Tip Rack 1000 uL\`, in slot C1 Pipette Mount: -- Flex 1-Channel 1000 µL Pipette is mounted on the left side -- Flex 1-Channel 50 µL Pipette is mounted on the right side +- Flex 1-Channel 1000 uL Pipette is mounted on the left side -Labware: -- Source Labware 1: NEST 1 Well Reservoir 195 mL is positioned on slot B1 -- Source Labware 2: Bio-Rad 384 Well Plate 50 µL is positioned on slot B2 -- Source Labware 3: Bio-Rad 96 Well Plate 200 µL is positioned on slot B3 -- Destination Labware 1: Corning 384 Well Plate 112 µL Flat is positioned on slot D1 -- Destination Labware 2: Corning 96 Well Plate 360 µL Flat is positioned on slot D2 -- Tiprack 1: Opentrons Flex 96 Filter Tip Rack 200 µL is used on slot A1 -- Tiprack 2: Opentrons Flex 96 Filter Tip Rack 50 µL is used on slot A2 - -Commands -- Using Flex 1-Channel 50 µL Pipette on right mount, transfer 15 µL from first of source labware 1 to each well - in destination labware 1 and destination labware 2. Reuse the same tip. -- Again using Flex 1-Channel 50 µL Pipette, transfer 20 µL from each well in source labware 2 to - each well in the destination labware 1. Reuse the same tip. -- Using Flex 1-Channel 1000 µL Pipette on left mount, transfer 100µL liquid from each well in source labware 3 - to each well in destination labware 2. Use a new tip each time. +Commands: +1. Using Flex 1-Channel 1000 uL Pipette on left mount, transfer 117.0 uL of reagent from the first well in source labware +to E12, G12, B9, A6, D7 wells in the destination labware. Use a new tip for each transfer. ` export const pcr = ` -Write a protocol for the Opentrons OT-2 as described below: - -Metadata: -- Application: ThermoPrime Taq DNA Polymerase, with 10x buffer and separate vial of 25 mM MgCl2Thermo Scientific kit PCR amplification -- Robot: OT-2 -- API: 2.15 - -Pipette mount: -- P20 Single Channel is mounted on the right side - +Write a protocol using the Opentrons Python Protocol API v2 for the OT-2 robot according to the following description: + Modules: -- Thermocycler module is present on slot 7 -- Temperature module is place on slot 3 +- The thermocycler module is located in slot 7. +- The sample temperature module is positioned in slot 1. +- The mastermix temperature module is positioned in slot 3. Labware: -- Source sample labware is Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL plate placed on slot 1 -- Source mastermix labware is Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap, placed on temperature module on slot 3 -- Destination Labware is an Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt placed on thermocycler module on slot 7 -- 20 ul Filter tiprack is used on slot 4 +- The source sample labware, an Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt, is placed on the temperature module in slot 1. +- The source mastermix labware, an Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt, is placed on the temperature module in slot 3. +- The destination labware, an Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt, is placed on the thermocycler module in slot 7. +- A 20 uL filter tip rack is used in slot 4. -Well allocation: -- source wells are first 41 wells column wise in both master mix and sample source plates -- destination wells: first 41 wells column wise on thermocycler +Pipette Mount: +- A P20 Multi-Channel Gen2 pipette is mounted on the left side. + +Well Allocation: +- Sample source wells: the first 64 wells column-wise in the sample source plate. +- Mastermix source wells: the first 64 wells column-wise in the mastermix plate. +- Destination wells: the first 64 wells column-wise in the thermocycler. Commands: -Note that every step is a single entity. Do not combine. Also, every step should be performed in order. -1. The total number of samples is 41 -2. Set the thermocycler such that: - - block temperature is 6 degree C - - lid temperature to 90 degree C - - lid open -3. Set the master mix temperature module at 10 C. The temperature module wait time is 50 seconds. -4. Transfer 10 uL of mastermix from source well to destination well. Use the same pipette tip for all transfers. -5. Transfer 3 ul of sample to destination well reusing tip everytime. After dispensing, mix the sample and mastermix -of 13 ul total volume 4 times and then perform blowout before dropping tip. -6. Close the lid of the thermocycler. -7. Set the thermocycle to following parameters (**note that each step is independent**): - Step 1: 66 degree C for 47 seconds for 1 cycles - Step 2: 88 degree C for 28 seconds, 82 degree C for 14 seconds, 68 degree C for 68 seconds for 15 cycles - Step 3: 70 degree C for 240 seconds for 1 cycles -Then, execute thermocycler profile for each step. -8. After the above three steps are completed, hold thermocycler block at 4 C -9. Open thermocycler lid -10. Deactivate the temperature modules +1. Set the total number of samples to 64. +2. Open the thermocycler lid. +3. Set the thermocycler block temperature to 6C. +4. Set the thermocycler lid temperature to 55C. +5. Set the sample temperature module to 4C. +6. Set the mastermix temperature module to 10C. +7. Transfer 7 uL of mastermix from the mastermix source wells to the destination wells. Use the same pipette tip for all transfers. +8. Transfer 5 uL of the sample from the source to the destination. Mix the sample and mastermix for a total volume of 12 uL 9 times. +Blow out to \`destination well\` after each transfer. Use a new tip for each transfer. +9. Close the thermocycler lid. +10. Execute the thermocycler with the following profile: + - 74C for 65 seconds for 1 cycle, block max volume is sample and mastermix volume +11. Execute the thermocycler with the following profile: + - 60C for 7 seconds, 84C for 19 seconds, 57C for 44 seconds for 13 cycles, block max volume is sample and mastermix volume +12. Execute the thermocycler with the following profile: + - 75C for 480 seconds for 1 cycle, block max volume is sample and mastermix volume +13. Hold the thermocycler block at 4C. +14. Open the thermocycler lid. +15. Deactivate the mastermix temperature module. +16. Deactivate the sample temperature module. ` export const flexPcr = ` -Write a protocol for the Opentrons Flex as described below: - -Metadata and requirements: -- Application: GeneAmp2x PCR amplification -- Robot: Flex -- API: 2.15 - -Pipette mount: -- Flex 1-Channel 50 µL Pipette is mounted on the right side +Write a protocol using the Opentrons Python Protocol API v2 for Flex robot according to the following description: + +Modules: +- Thermocycler module GEN 2 +- Sample temperature module GEN 2 is placed in slot D1 +- Mastermix temperature module GEN 2 is placed in slot D3 -Modules and adapters: -- Thermocycler GEN 2 module is present on slot A1+B1 -- Temperature module GEN 2 is place on slot D3 +Adapter: +- Opentrons 96 Well Aluminum Block adapter is placed on the sample temperature module GEN 2 +- Opentrons 96 Well Aluminum Block adapter is placed on the mastermix temperature module GEN 2 Labware: -- Source sample labware is Opentrons 96 Well Aluminum Block with NEST Well Plate 100 µL plate placed on slot D1 -- Source mastermix labware is Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap, placed on temperature module on slot D3 -- Destination Labware is an Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt placed on thermocycler GEN 2 module -- Opentrons Flex 96 Filter Tip Rack 50 µL is used on slot C1 +- Source sample labware is Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt placed on the adapter on the sample temperature module in slot 1 +- Source mastermix labware is Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt placed on the adapter on the mastermix temperature module in slot 3 +- Destination Labware is an Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt placed on thermocycler module in slot 7 +- Opentrons Flex 96 Filter Tip Rack 1000 uL is used in slot C1 +- Opentrons Flex 96 Filter Tip Rack 50 uL is used in slot C2 -Sample position: -- source wells are first 64 wells column wise in both master mix and sample source plates -- destination wells: first 64 wells column wise on thermocycler +Pipette mount: +- Flex 8-Channel 1000 uL Pipette is mounted on the left side +- Flex 8-channel 50 ul pipette is mounted on the right side + +Well allocation: +- mastermix source wells: the first 9 columns in the mastermix plate +- sample source wells: the first 9 columns of the sample plate +- destination wells: first 9 columns on thermocycler Commands: -Note that every step is a single entity. Do not combine. Also, every step should be performed in order. -1. The total number of samples is 64 -2. Set the thermocycler such that - - block temperature is 6 degree C - - lid temperature to 90 degree C - - lid open -3. Set the master mix temperature module at 10 C. The temperature module wait time is 50 seconds. -4. Transfer 10 uL of mastermix from source well to destination well. Use the same pipette tip for all transfers. -5. Transfer 3 ul of sample to destination well reusing tip everytime. After dispensing, mix the sample and mastermix -of 13 ul total volume 4 times and then perform blowout before dropping tip. -6. Close the lid of the thermocycler. -7. Set the thermocycle to following parameters (**note that each step is independent**): - Step 1: 66 degree C for 47 seconds for 1 cycles - Step 2: 88 degree C for 28 seconds, 82 degree C for 14 seconds, 68 degree C for 68 seconds for 15 cycles - Step 3: 70 degree C for 240 seconds for 1 cycles -Then, execute thermocycler profile for each step. -8. After the above three steps are completed, hold thermocycler block at 4 C -9. Open thermocycler lid -10. Deactivate the temperature modules +1. Set the total number of samples to 72. +2. Set the thermocycler block temperature to 6 degree C. +3. Set the thermocycler lid temperature to 55 degree C. +4. Open the thermocycler lid. +5. Set the sample temperature module to 37 degree C. +6. Set the master mix temperature module to 10 C. +7. Use right pipette to transfer 15 uL of mastermix from source well to destination well. Use the same pipette tip for all transfers. +8. Use left pipette to transfer 10 ul of sample from the source to destination well. Mix the sample and mastermix of +25 ul total volume 9 times. Blow out to \`destination well\`. Use a new tip for each transfer. +9. Close the thermocycler lid. +10. Execute the thermocycle with the following profile: + - 74 degree C for 65 seconds for 1 cycle, block max volume is sample and mastermix volume +11. Execute the thermocycle with the following profile: + - 60 degree C for 7 seconds, 84 degree C for 19 seconds, 57 degree C for 44 seconds for 25 cycles, block max volume is sample and mastermix volume +12. Execute the thermocycle with the following profile: + - 75 degree C for 480 seconds for 1 cycle, block max volume is sample and mastermix volume +13. Hold thermocycler block at 4 C. +14. Open thermocycler lid. +15. Deactivate the master mix temperature module. +16. Deactivate the sample temperature module. ` diff --git a/opentrons-ai-client/src/atoms/SendButton/__tests__/SendButton.test.tsx b/opentrons-ai-client/src/atoms/SendButton/__tests__/SendButton.test.tsx new file mode 100644 index 00000000000..dcf90ec1022 --- /dev/null +++ b/opentrons-ai-client/src/atoms/SendButton/__tests__/SendButton.test.tsx @@ -0,0 +1,53 @@ +import React from 'react' +import { describe, it, vi, beforeEach, expect } from 'vitest' +import { fireEvent, screen } from '@testing-library/react' +import { renderWithProviders } from '../../../__testing-utils__' + +import { SendButton } from '../index' + +const mockHandleClick = vi.fn() +const render = (props: React.ComponentProps) => { + return renderWithProviders() +} + +describe('SendButton', () => { + let props: React.ComponentProps + + beforeEach(() => { + props = { + handleClick: mockHandleClick, + disabled: true, + isLoading: false, + } + }) + it('should render button with send icon and its initially disabled', () => { + render(props) + const button = screen.getByRole('button') + expect(button).toBeDisabled() + screen.getByTestId('SendButton_icon_send') + }) + + it('should render button and its not disabled when disabled false', () => { + props = { ...props, disabled: false } + render(props) + const button = screen.getByRole('button') + expect(button).not.toBeDisabled() + screen.getByTestId('SendButton_icon_send') + }) + + it('should render button with spinner icon when isLoading', () => { + props = { ...props, isLoading: true } + render(props) + const button = screen.getByRole('button') + expect(button).toBeDisabled() + screen.getByTestId('SendButton_icon_ot-spinner') + }) + + it('should call a mock function when clicking the button', () => { + props = { ...props, disabled: false } + render(props) + const button = screen.getByRole('button') + fireEvent.click(button) + expect(mockHandleClick).toHaveBeenCalled() + }) +}) diff --git a/opentrons-ai-client/src/atoms/SendButton/index.tsx b/opentrons-ai-client/src/atoms/SendButton/index.tsx new file mode 100644 index 00000000000..e165762b2ab --- /dev/null +++ b/opentrons-ai-client/src/atoms/SendButton/index.tsx @@ -0,0 +1,74 @@ +import React from 'react' +import { css } from 'styled-components' + +import { + ALIGN_CENTER, + BORDERS, + Btn, + COLORS, + DISPLAY_FLEX, + Icon, + JUSTIFY_CENTER, +} from '@opentrons/components' + +interface SendButtonProps { + handleClick: () => void + disabled?: boolean + isLoading?: boolean +} + +export function SendButton({ + handleClick, + disabled = false, + isLoading = false, +}: SendButtonProps): JSX.Element { + const playButtonStyle = css` + -webkit-tap-highlight-color: transparent; + &:focus { + background-color: ${COLORS.blue60}; + color: ${COLORS.white}; + } + + &:hover { + background-color: ${COLORS.blue50}; + color: ${COLORS.white}; + } + + &:focus-visible { + background-color: ${COLORS.blue50}; + } + + &:active { + background-color: ${COLORS.blue60}; + color: ${COLORS.white}; + } + + &:disabled { + background-color: ${COLORS.grey35}; + color: ${COLORS.grey50}; + } + ` + return ( + + + + ) +} diff --git a/opentrons-ai-client/src/main.tsx b/opentrons-ai-client/src/main.tsx index a5719bc94d8..f36640d349a 100644 --- a/opentrons-ai-client/src/main.tsx +++ b/opentrons-ai-client/src/main.tsx @@ -1,9 +1,9 @@ import React from 'react' import ReactDOM from 'react-dom/client' import { I18nextProvider } from 'react-i18next' -import { GlobalStyle } from './atoms/GlobalStyle' -import { PromptProvider } from './organisms/PromptButton/PromptProvider' +import { Auth0Provider } from '@auth0/auth0-react' +import { GlobalStyle } from './atoms/GlobalStyle' import { i18n } from './i18n' import { App } from './App' @@ -11,12 +11,18 @@ const rootElement = document.getElementById('root') if (rootElement != null) { ReactDOM.createRoot(rootElement).render( - - - + + + - - + + ) } else { diff --git a/opentrons-ai-client/src/molecules/ChatDisplay/ChatDisplay.stories.tsx b/opentrons-ai-client/src/molecules/ChatDisplay/ChatDisplay.stories.tsx index ae03a25f754..e3e0a1a6f36 100644 --- a/opentrons-ai-client/src/molecules/ChatDisplay/ChatDisplay.stories.tsx +++ b/opentrons-ai-client/src/molecules/ChatDisplay/ChatDisplay.stories.tsx @@ -24,7 +24,9 @@ type Story = StoryObj export const OpentronsAI: Story = { args: { - content: ` + chat: { + role: 'assistant', + content: ` ## sample output from OpentronsAI \`\`\`py @@ -50,13 +52,15 @@ def run(protocol: protocol_api.ProtocolContext): TEMP_DECK_WAIT_TIME = 50 # seconds \`\`\` `, - isUserInput: false, + }, }, } export const User: Story = { args: { - content: ` + chat: { + role: 'user', + content: ` - Application: Reagent transfer - Robot: OT-2 - API: 2.13 @@ -76,6 +80,6 @@ export const User: Story = { to first well in the destination labware. Use new tip for each transfer. `, - isUserInput: true, + }, }, } diff --git a/opentrons-ai-client/src/molecules/ChatDisplay/__tests__/ChatDisplay.test.tsx b/opentrons-ai-client/src/molecules/ChatDisplay/__tests__/ChatDisplay.test.tsx index 75b99717abb..0c51b7771f2 100644 --- a/opentrons-ai-client/src/molecules/ChatDisplay/__tests__/ChatDisplay.test.tsx +++ b/opentrons-ai-client/src/molecules/ChatDisplay/__tests__/ChatDisplay.test.tsx @@ -15,8 +15,11 @@ describe('ChatDisplay', () => { beforeEach(() => { props = { - content: 'mock text from the backend', - isUserInput: false, + chat: { + role: 'assistant', + reply: 'mock text from the backend', + }, + chatId: 'mockId', } }) it('should display response from the backend and label', () => { @@ -29,8 +32,11 @@ describe('ChatDisplay', () => { }) it('should display input from use and label', () => { props = { - content: 'mock text from user input', - isUserInput: true, + chat: { + role: 'user', + reply: 'mock text from user input', + }, + chatId: 'mockId', } render(props) screen.getByText('You') diff --git a/opentrons-ai-client/src/molecules/ChatDisplay/index.tsx b/opentrons-ai-client/src/molecules/ChatDisplay/index.tsx index c2d52e6a593..7355d1096d5 100644 --- a/opentrons-ai-client/src/molecules/ChatDisplay/index.tsx +++ b/opentrons-ai-client/src/molecules/ChatDisplay/index.tsx @@ -1,46 +1,130 @@ import React from 'react' +import styled from 'styled-components' import { useTranslation } from 'react-i18next' import Markdown from 'react-markdown' import { + ALIGN_CENTER, BORDERS, COLORS, DIRECTION_COLUMN, Flex, + Icon, + JUSTIFY_CENTER, + JUSTIFY_FLEX_END, + JUSTIFY_FLEX_START, + POSITION_ABSOLUTE, + POSITION_RELATIVE, + PrimaryButton, SPACING, StyledText, } from '@opentrons/components' +import type { ChatData } from '../../resources/types' + interface ChatDisplayProps { - content: string - isUserInput: boolean + chat: ChatData + chatId: string } -export function ChatDisplay({ - content, - isUserInput, -}: ChatDisplayProps): JSX.Element { +export function ChatDisplay({ chat, chatId }: ChatDisplayProps): JSX.Element { const { t } = useTranslation('protocol_generator') + const [isCopied, setIsCopied] = React.useState(false) + const { role, reply } = chat + const isUser = role === 'user' + + const handleClickCopy = async (): Promise => { + const lastCodeBlock = document.querySelector(`#${chatId}`) + const code = lastCodeBlock?.textContent ?? '' + await navigator.clipboard.writeText(code) + setIsCopied(true) + } + + function CodeText(props: JSX.IntrinsicAttributes): JSX.Element { + return + } + return ( - {isUserInput ? t('you') : t('opentronsai')} + + {isUser ? t('you') : t('opentronsai')} + {/* text should be markdown so this component will have a package or function to parse markdown */} - {/* ToDo (kk:04/19/2024) I will get feedback for additional styling from the design team. */} - {content} + + {reply} + + {!isUser ? ( + + + + + + ) : null} ) } + +// Note (05/08/2024) the following styles are temp +function ExternalLink(props: JSX.IntrinsicAttributes): JSX.Element { + return +} + +function ParagraphText(props: JSX.IntrinsicAttributes): JSX.Element { + return +} + +function HeaderText(props: JSX.IntrinsicAttributes): JSX.Element { + return +} + +function ListItemText(props: JSX.IntrinsicAttributes): JSX.Element { + return +} + +function UnnumberedListText(props: JSX.IntrinsicAttributes): JSX.Element { + return +} + +const CodeWrapper = styled(Flex)` + font-family: monospace; + padding: ${SPACING.spacing16}; + color: ${COLORS.white}; + background-color: ${COLORS.black90}; + border-radius: ${BORDERS.borderRadius8}; + overflow: auto; +` diff --git a/opentrons-ai-client/src/molecules/ChatFooter/__tests__/ChatFooter.test.tsx b/opentrons-ai-client/src/molecules/ChatFooter/__tests__/ChatFooter.test.tsx new file mode 100644 index 00000000000..9556a3b8a19 --- /dev/null +++ b/opentrons-ai-client/src/molecules/ChatFooter/__tests__/ChatFooter.test.tsx @@ -0,0 +1,31 @@ +import React from 'react' +import { describe, it, vi, beforeEach } from 'vitest' +import { screen } from '@testing-library/react' +import { renderWithProviders } from '../../../__testing-utils__' +import { i18n } from '../../../i18n' +import { InputPrompt } from '../../InputPrompt' +import { ChatFooter } from '../index' + +vi.mock('../../InputPrompt') + +const render = () => { + return renderWithProviders(, { i18nInstance: i18n }) +} + +describe('ChatFooter', () => { + beforeEach(() => { + vi.mocked(InputPrompt).mockReturnValue(
    mock InputPrompt
    ) + }) + + it('should render mock InputPrompt component', () => { + render() + screen.getByText('mock InputPrompt') + }) + + it('should render disclaimer text', () => { + render() + screen.getByText( + 'OpentronsAI can make mistakes. Review your protocol before running it on an Opentrons robot.' + ) + }) +}) diff --git a/opentrons-ai-client/src/molecules/ChatFooter/index.tsx b/opentrons-ai-client/src/molecules/ChatFooter/index.tsx new file mode 100644 index 00000000000..e28e758bb02 --- /dev/null +++ b/opentrons-ai-client/src/molecules/ChatFooter/index.tsx @@ -0,0 +1,38 @@ +import React from 'react' +import { useTranslation } from 'react-i18next' +import { css } from 'styled-components' +import { + COLORS, + DIRECTION_COLUMN, + Flex, + // POSITION_STICKY, + SPACING, + StyledText, + TYPOGRAPHY, +} from '@opentrons/components' +import { InputPrompt } from '../InputPrompt' + +export function ChatFooter(): JSX.Element { + const { t } = useTranslation('protocol_generator') + + return ( + + + {t('disclaimer')} + + ) +} + +const DISCLAIMER_TEXT_STYLE = css` + color: ${COLORS.grey55}; + font-size: ${TYPOGRAPHY.fontSize20}; + line-height: ${TYPOGRAPHY.lineHeight24}; + text-align: ${TYPOGRAPHY.textAlignCenter}; +` diff --git a/opentrons-ai-client/src/molecules/InputPrompt/index.tsx b/opentrons-ai-client/src/molecules/InputPrompt/index.tsx index cdff4e7c44b..3b5254a799c 100644 --- a/opentrons-ai-client/src/molecules/InputPrompt/index.tsx +++ b/opentrons-ai-client/src/molecules/InputPrompt/index.tsx @@ -2,65 +2,129 @@ import React from 'react' import { useTranslation } from 'react-i18next' import styled, { css } from 'styled-components' import { useForm } from 'react-hook-form' +import { useAtom } from 'jotai' +import axios from 'axios' +import { useAuth0 } from '@auth0/auth0-react' import { ALIGN_CENTER, BORDERS, - Btn, COLORS, DIRECTION_ROW, - DISPLAY_FLEX, Flex, - Icon, JUSTIFY_CENTER, SPACING, TYPOGRAPHY, } from '@opentrons/components' -import { promptContext } from '../../organisms/PromptButton/PromptProvider' -import type { SubmitHandler } from 'react-hook-form' +import { SendButton } from '../../atoms/SendButton' +import { preparedPromptAtom, chatDataAtom } from '../../resources/atoms' -// ToDo (kk:04/19/2024) Note this interface will be used by prompt buttons in SidePanel -// interface InputPromptProps {} +import type { ChatData } from '../../resources/types' + +const url = + 'https://fk0py9eu3e.execute-api.us-east-2.amazonaws.com/sandbox/chat/completion' interface InputType { userPrompt: string } -export function InputPrompt(/* props: InputPromptProps */): JSX.Element { +export function InputPrompt(): JSX.Element { const { t } = useTranslation('protocol_generator') - const { register, handleSubmit, watch, setValue } = useForm({ + const { register, watch, setValue, reset } = useForm({ defaultValues: { userPrompt: '', }, }) - const usePromptValue = (): string => React.useContext(promptContext) - const promptFromButton = usePromptValue() - const userPrompt = watch('userPrompt') ?? '' + const [preparedPrompt] = useAtom(preparedPromptAtom) + const [, setChatData] = useAtom(chatDataAtom) + const [submitted, setSubmitted] = React.useState(false) - const onSubmit: SubmitHandler = async data => { - // ToDo (kk: 04/19/2024) call api - const { userPrompt } = data - console.log('user prompt', userPrompt) - } + const [data, setData] = React.useState(null) + const [loading, setLoading] = React.useState(false) + // ToDo (kk:05/15/2024) this will be used in the future + // const [error, setError] = React.useState('') + + const { getAccessTokenSilently } = useAuth0() + + const userPrompt = watch('userPrompt') ?? '' const calcTextAreaHeight = (): number => { const rowsNum = userPrompt.split('\n').length return rowsNum } + // ToDo (kk:05/15/2024) This will be moved to a better place + const fetchData = async (prompt: string): Promise => { + if (prompt !== '') { + setLoading(true) + try { + const accessToken = await getAccessTokenSilently({ + authorizationParams: { + audience: 'sandbox-ai-api', + }, + }) + const postData = { + message: prompt, + fake: false, + } + const headers = { + Authorization: `Bearer ${accessToken}`, + 'Content-Type': 'application/json', + } + const response = await axios.post(url, postData, { headers }) + setData(response.data) + } catch (err) { + // setError('Error fetching data from the API.') + console.error(`error: ${err}`) + } finally { + setLoading(false) + } + } + } + + const handleClick = (): void => { + const userInput: ChatData = { + role: 'user', + reply: userPrompt, + } + setChatData(chatData => [...chatData, userInput]) + void fetchData(userPrompt) + setSubmitted(true) + reset() + } + React.useEffect(() => { - if (promptFromButton !== '') setValue('userPrompt', promptFromButton) - }, [promptFromButton, setValue]) + if (preparedPrompt !== '') setValue('userPrompt', preparedPrompt as string) + }, [preparedPrompt, setValue]) + + React.useEffect(() => { + if (submitted && data != null && !loading) { + const { role, reply } = data + const assistantResponse: ChatData = { + role, + reply, + } + setChatData(chatData => [...chatData, assistantResponse]) + setSubmitted(false) + } + }, [data, loading, submitted]) + + // ToDo (kk:05/02/2024) This is also temp. Asking the design about error. + // console.error('error', error) return ( - handleSubmit(onSubmit)}> + - + ) @@ -99,6 +163,7 @@ const StyledTextarea = styled.textarea` width: 100%; font-size: ${TYPOGRAPHY.fontSize20}; line-height: ${TYPOGRAPHY.lineHeight24}; + padding: 1.2rem 0; ::placeholder { position: absolute; @@ -106,65 +171,3 @@ const StyledTextarea = styled.textarea` transform: translateY(-50%); } ` - -interface PlayButtonProps { - onPlay?: () => void - disabled?: boolean - isLoading?: boolean -} - -function PlayButton({ - onPlay, - disabled = false, - isLoading = false, -}: PlayButtonProps): JSX.Element { - const playButtonStyle = css` - -webkit-tap-highlight-color: transparent; - &:focus { - background-color: ${COLORS.blue60}; - color: ${COLORS.white}; - } - - &:hover { - background-color: ${COLORS.blue50}; - color: ${COLORS.white}; - } - - &:focus-visible { - background-color: ${COLORS.blue50}; - } - - &:active { - background-color: ${COLORS.blue60}; - color: ${COLORS.white}; - } - - &:disabled { - background-color: ${COLORS.grey35}; - color: ${COLORS.grey50}; - } - ` - return ( - - - - ) -} diff --git a/opentrons-ai-client/src/molecules/Loading/index.tsx b/opentrons-ai-client/src/molecules/Loading/index.tsx new file mode 100644 index 00000000000..c715812b749 --- /dev/null +++ b/opentrons-ai-client/src/molecules/Loading/index.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import { useTranslation } from 'react-i18next' +import { + ALIGN_CENTER, + DIRECTION_COLUMN, + Flex, + Icon, + JUSTIFY_CENTER, + SPACING, + StyledText, +} from '@opentrons/components' + +export function Loading(): JSX.Element { + const { t } = useTranslation('protocol_generator') + return ( + + {t('loading')} + + + ) +} diff --git a/opentrons-ai-client/src/molecules/PrimaryFloatingButton/PrimaryFloatingButton.stories.tsx b/opentrons-ai-client/src/molecules/PrimaryFloatingButton/PrimaryFloatingButton.stories.tsx new file mode 100644 index 00000000000..6ab1620badf --- /dev/null +++ b/opentrons-ai-client/src/molecules/PrimaryFloatingButton/PrimaryFloatingButton.stories.tsx @@ -0,0 +1,18 @@ +import React from 'react' +import { PrimaryFloatingButton as PrimaryFloatingButtonComponent } from './index' + +import type { Meta, StoryObj } from '@storybook/react' + +const meta: Meta = { + title: 'AI/molecules/PrimaryFloatingButton', + component: PrimaryFloatingButtonComponent, + decorators: [Story => ], +} +export default meta +type Story = StoryObj +export const PrimaryFloatingButton: Story = { + args: { + buttonText: 'primary floating button', + iconName: 'arrow-down', + }, +} diff --git a/opentrons-ai-client/src/molecules/PrimaryFloatingButton/__tests__/PrimaryFloatingButton.test.tsx b/opentrons-ai-client/src/molecules/PrimaryFloatingButton/__tests__/PrimaryFloatingButton.test.tsx new file mode 100644 index 00000000000..7e5316a3805 --- /dev/null +++ b/opentrons-ai-client/src/molecules/PrimaryFloatingButton/__tests__/PrimaryFloatingButton.test.tsx @@ -0,0 +1,71 @@ +import * as React from 'react' +import { describe, it, beforeEach, expect } from 'vitest' +import { fireEvent, screen } from '@testing-library/react' +import { BORDERS, COLORS, TYPOGRAPHY, SPACING } from '@opentrons/components' +import { renderWithProviders } from '../../../__testing-utils__' +import { PrimaryFloatingButton } from '../index' + +const render = (props: React.ComponentProps) => { + return renderWithProviders() +} + +describe('PrimaryFloatingButton', () => { + let props: React.ComponentProps + beforeEach(() => { + props = { + buttonText: 'primary floating button', + iconName: 'arrow-down', + disabled: false, + } + }) + it('render primary floating button', () => { + render(props) + const button = screen.getByRole('button', { + name: 'primary floating button', + }) + expect(button).toHaveStyle(`background-color: ${COLORS.blue50}`) + expect(button).toHaveStyle( + `padding: ${SPACING.spacing8} ${SPACING.spacing16}` + ) + const buttonText = screen.getByText('primary floating button') + expect(buttonText).toHaveStyle(`font-size: ${TYPOGRAPHY.fontSizeP}`) + expect(buttonText).toHaveStyle( + `font-weight: ${TYPOGRAPHY.fontWeightSemiBold}` + ) + expect(buttonText).toHaveStyle(`line-height: ${TYPOGRAPHY.lineHeight20}`) + expect(button).toHaveStyle(`border-radius: ${BORDERS.borderRadiusFull}`) + expect(button).toHaveStyle( + `text-transform: ${TYPOGRAPHY.textTransformNone}` + ) + expect(button).toHaveStyle(`box-shadow: none`) + expect(button).toHaveStyle(`color: ${COLORS.white}`) + }) + + it('should render icon', () => { + render(props) + const icon = screen.getByTestId('PrimaryFloatingButton_Icon') + expect(icon).toHaveStyle(`width: 0.75rem`) + expect(icon).toHaveStyle(`height: 0.75rem`) + expect(icon).toHaveStyle(`color: ${COLORS.white}`) + }) + + it('renders primary button with text and disabled', () => { + props.disabled = true + render(props) + const button = screen.getByRole('button', { + name: 'primary floating button', + }) + expect(button).toBeDisabled() + expect(button).toHaveStyle(`background-color: ${COLORS.grey30}`) + expect(button).toHaveStyle(`color: ${COLORS.grey40}`) + }) + + it('applies the correct states to the button - hover', () => { + render(props) + const button = screen.getByRole('button', { + name: 'primary floating button', + }) + fireEvent.mouseOver(button) + expect(button).toHaveStyle(`background-color: ${COLORS.blue50}`) + }) +}) diff --git a/opentrons-ai-client/src/molecules/PrimaryFloatingButton/index.tsx b/opentrons-ai-client/src/molecules/PrimaryFloatingButton/index.tsx new file mode 100644 index 00000000000..056e4aee2b4 --- /dev/null +++ b/opentrons-ai-client/src/molecules/PrimaryFloatingButton/index.tsx @@ -0,0 +1,77 @@ +import * as React from 'react' +import { css } from 'styled-components' +import { + ALIGN_CENTER, + BORDERS, + Btn, + COLORS, + DIRECTION_ROW, + DISPLAY_FLEX, + Icon, + JUSTIFY_CENTER, + SPACING, + StyledText, + TYPOGRAPHY, +} from '@opentrons/components' + +import type { IconName, StyleProps } from '@opentrons/components' + +interface PrimaryFloatingButtonProps extends StyleProps { + buttonText: string + iconName: IconName + disabled?: boolean +} + +export function PrimaryFloatingButton({ + buttonText, + iconName, + disabled = false, + ...buttonProps +}: PrimaryFloatingButtonProps): JSX.Element { + return ( + + + + {buttonText} + + + ) +} + +const PRIMARY_FLOATING_STYLE = css` + display: ${DISPLAY_FLEX}; + flex-direction: ${DIRECTION_ROW}; + grid-gap: ${SPACING.spacing4}; + color: ${COLORS.white}; + align-items: ${ALIGN_CENTER}; + justify-content: ${JUSTIFY_CENTER}; + border-radius: ${BORDERS.borderRadiusFull}; + padding: ${SPACING.spacing8} ${SPACING.spacing16}; + background-color: ${COLORS.blue50}; + box-shadow: none; + text-transform: ${TYPOGRAPHY.textTransformNone}; + &:hover, + &:focus { + background-color: ${COLORS.blue55}; + box-shadow: none; + } + &:focus-visible { + box-shadow: 0 0 0 3px ${COLORS.yellow50}; + } + &:active { + background-color: ${COLORS.blue60}; + } + &:disabled { + background-color: ${COLORS.grey30}; + color: ${COLORS.grey40}; + } +` diff --git a/opentrons-ai-client/src/molecules/PromptGuide/__tests__/PromptGuide.test.tsx b/opentrons-ai-client/src/molecules/PromptGuide/__tests__/PromptGuide.test.tsx index 48ecca239f8..62c998fc2c8 100644 --- a/opentrons-ai-client/src/molecules/PromptGuide/__tests__/PromptGuide.test.tsx +++ b/opentrons-ai-client/src/molecules/PromptGuide/__tests__/PromptGuide.test.tsx @@ -16,29 +16,33 @@ describe('PromptGuide', () => { it('should render text', () => { render() screen.getByText('What type of protocol do you need?') - screen.getByText('Make sure your prompt includes the following:') - screen.getByText('Metadata: Three pieces of information.') screen.getByText( - "Application: Your protocol's name, describing what it does." + 'Write a prompt in a natural language for OpentronsAI to generate a protocol using the Opentrons Python Protocol API v2. The better the prompt, the better the quality of the protocol produced by OpentronsAI.' ) - screen.getByText('Robot: OT-2.') - screen.getByText('API: An API level is 2.15') screen.getByText( - 'OT-2 pipettes: Include volume, number of channels, and generation.' + 'Here are some key pieces of information to provide in your prompt:' ) - screen.getByText('Modules: Thermocycler or Temperature Module.') + screen.getByText('Robot type: Choose the OT-2 or Opentrons Flex.') screen.getByText( - 'Well allocations: Describe where liquids should go in labware.' + 'Modules and adapters: Specify the modules and labware adapters required by your protocol.' ) + screen.getByText(/Labware and tip racks: Use names from the /) + screen.getByText('Opentrons Labware Library') screen.getByText( - "Commands: List the protocol's steps, specifying quantities in microliters and giving exact source and destination locations." + 'Liquid locations: Describe where liquids should go in the labware.' ) screen.getByText( - 'What if you don’t provide all of those pieces of information?' + "Commands: List the protocol's steps, specifying quantities in microliters (mL) and giving exact source and destination locations." ) - screen.getByText('OpentronsAI asks you to provide it!') + screen.getByText('A few important things to note:') screen.getByText( - 'Once OpentronsAI has written your protocol, type "simulate" in the prompt box to try it out.' + 'For example prompts, click the buttons in the left panel.' + ) + screen.getByText( + 'Once OpentronsAI has written your protocol, type `simulate` in the prompt box to try it out.' + ) + screen.getByText( + 'To start over and create a new protocol, simply reload the page.' ) }) it('should have the right url', () => { diff --git a/opentrons-ai-client/src/molecules/PromptGuide/index.tsx b/opentrons-ai-client/src/molecules/PromptGuide/index.tsx index a0d6925c9bf..b5c384e7e80 100644 --- a/opentrons-ai-client/src/molecules/PromptGuide/index.tsx +++ b/opentrons-ai-client/src/molecules/PromptGuide/index.tsx @@ -33,62 +33,56 @@ export function PromptGuide(): JSX.Element { {t('make_sure_your_prompt')} + {t('key_info')} -
      +
    • - {t('metadata')} - -
    • - {t('application')} -
    • -
    • - {t('robot')} -
    • -
    • - {t('api')} -
    • -
      + {t('robot_type')}
    • - {t('ot2_pipettes')} -
    • -
    • - {t('modules')} -
    • -
    • - {t('well_allocations')} + {t('modules_and_adapters')}
    • , span: , }} />
    • +
    • + {t('liquid_locations')} +
    • {t('commands')}
    • -
    + +
    + {t('notes')} + + +
  • + {t('example')} +
  • +
  • + {t('simulate_description')} +
  • +
  • + {t('reload_page')} +
  • +
    - , - span: , - }} - /> - - {t('simulator_description')} - ) } diff --git a/opentrons-ai-client/src/molecules/SidePanel/index.tsx b/opentrons-ai-client/src/molecules/SidePanel/index.tsx index 59a998e543c..c5798376f67 100644 --- a/opentrons-ai-client/src/molecules/SidePanel/index.tsx +++ b/opentrons-ai-client/src/molecules/SidePanel/index.tsx @@ -6,6 +6,8 @@ import { DIRECTION_COLUMN, Flex, Link, + OVERFLOW_AUTO, + POSITION_FIXED, SPACING, StyledText, TYPOGRAPHY, @@ -20,11 +22,14 @@ export function SidePanel(): JSX.Element { const { t } = useTranslation('protocol_generator') return ( {/* logo */} diff --git a/opentrons-ai-client/src/organisms/ChatContainer/__tests__/ChatContainer.test.tsx b/opentrons-ai-client/src/organisms/ChatContainer/__tests__/ChatContainer.test.tsx index 406e7889878..751e7281403 100644 --- a/opentrons-ai-client/src/organisms/ChatContainer/__tests__/ChatContainer.test.tsx +++ b/opentrons-ai-client/src/organisms/ChatContainer/__tests__/ChatContainer.test.tsx @@ -4,11 +4,13 @@ import { describe, it, vi, beforeEach } from 'vitest' import { renderWithProviders } from '../../../__testing-utils__' import { i18n } from '../../../i18n' import { PromptGuide } from '../../../molecules/PromptGuide' -import { InputPrompt } from '../../../molecules/InputPrompt' +import { ChatFooter } from '../../../molecules/ChatFooter' import { ChatContainer } from '../index' vi.mock('../../../molecules/PromptGuide') -vi.mock('../../../molecules/InputPrompt') +vi.mock('../../../molecules/ChatFooter') +// Note (kk:05/20/2024) to avoid TypeError: scrollRef.current.scrollIntoView is not a function +window.HTMLElement.prototype.scrollIntoView = vi.fn() const render = (): ReturnType => { return renderWithProviders(, { @@ -19,17 +21,13 @@ const render = (): ReturnType => { describe('ChatContainer', () => { beforeEach(() => { vi.mocked(PromptGuide).mockReturnValue(
    mock PromptGuide
    ) - vi.mocked(InputPrompt).mockReturnValue(
    mock InputPrompt
    ) + vi.mocked(ChatFooter).mockReturnValue(
    mock ChatFooter
    ) }) + it('should render prompt guide and text', () => { render() screen.getByText('OpentronsAI') screen.getByText('mock PromptGuide') - screen.getByText('mock InputPrompt') - screen.getByText( - 'OpentronsAI can make mistakes. Review your protocol before running it on an Opentrons robot.' - ) + screen.getByText('mock ChatFooter') }) - - // ToDo (kk:04/16/2024) Add more test cases }) diff --git a/opentrons-ai-client/src/organisms/ChatContainer/index.tsx b/opentrons-ai-client/src/organisms/ChatContainer/index.tsx index be6c4d619da..e8521270a7a 100644 --- a/opentrons-ai-client/src/organisms/ChatContainer/index.tsx +++ b/opentrons-ai-client/src/organisms/ChatContainer/index.tsx @@ -1,64 +1,70 @@ import React from 'react' import { useTranslation } from 'react-i18next' -import { css } from 'styled-components' +import styled from 'styled-components' +import { useAtom } from 'jotai' + import { COLORS, DIRECTION_COLUMN, Flex, - POSITION_ABSOLUTE, - POSITION_RELATIVE, + OVERFLOW_AUTO, + POSITION_STICKY, SPACING, StyledText, - TYPOGRAPHY, } from '@opentrons/components' import { PromptGuide } from '../../molecules/PromptGuide' -import { InputPrompt } from '../../molecules/InputPrompt' +import { ChatDisplay } from '../../molecules/ChatDisplay' +import { ChatFooter } from '../../molecules/ChatFooter' +import { chatDataAtom } from '../../resources/atoms' export function ChatContainer(): JSX.Element { const { t } = useTranslation('protocol_generator') - const isDummyInitial = true + const [chatData] = useAtom(chatDataAtom) + const scrollRef = React.useRef(null) + + React.useEffect(() => { + if (scrollRef.current != null) + scrollRef.current.scrollIntoView({ behavior: 'smooth' }) + }, [chatData.length]) + return ( - {/* This will be updated when input textbox and function are implemented */} - {isDummyInitial ? ( - - - {t('opentronsai')} - - - - - - {t('disclaimer')} - - - - ) : null} + + + {t('opentronsai')} + {/* Prompt Guide remain as a reference for users. */} + + {chatData.length > 0 + ? chatData.map((chat, index) => ( + + )) + : null} + + + + + + ) } -const DISCLAIMER_TEXT_STYLE = css` - color: ${COLORS.grey55}; - font-size: ${TYPOGRAPHY.fontSize20}; - line-height: ${TYPOGRAPHY.lineHeight24}; - text-align: ${TYPOGRAPHY.textAlignCenter}; +const ChatDataContainer = styled(Flex)` + flex-direction: ${DIRECTION_COLUMN}; + grid-gap: ${SPACING.spacing40}; + width: 100%; ` diff --git a/opentrons-ai-client/src/organisms/PromptButton/PromptButton.stories.tsx b/opentrons-ai-client/src/organisms/PromptButton/PromptButton.stories.tsx index cc992b5b70d..f300b302393 100644 --- a/opentrons-ai-client/src/organisms/PromptButton/PromptButton.stories.tsx +++ b/opentrons-ai-client/src/organisms/PromptButton/PromptButton.stories.tsx @@ -1,6 +1,4 @@ import React from 'react' -import { Flex, SPACING } from '@opentrons/components' -import { PromptProvider, promptContext } from './PromptProvider' import { PromptButton as PromptButtonComponent } from '.' import type { Meta, StoryObj } from '@storybook/react' @@ -27,22 +25,15 @@ const meta: Meta = { decorators: [ Story => { return ( - + <> - - + ) }, ], } export default meta -const PromptDisplay = (): JSX.Element => { - const usePromptValue = (): string => React.useContext(promptContext) - const promptFromButton = usePromptValue() - return {promptFromButton} -} - type Story = StoryObj export const PromptButton: Story = { diff --git a/opentrons-ai-client/src/organisms/PromptButton/PromptProvider.tsx b/opentrons-ai-client/src/organisms/PromptButton/PromptProvider.tsx deleted file mode 100644 index f148e4fdd94..00000000000 --- a/opentrons-ai-client/src/organisms/PromptButton/PromptProvider.tsx +++ /dev/null @@ -1,24 +0,0 @@ -import React from 'react' - -export const promptContext = React.createContext('') -export const setPromptContext = React.createContext< - React.Dispatch> ->(() => undefined) - -interface PromptProviderProps { - children: React.ReactNode -} - -export function PromptProvider({ - children, -}: PromptProviderProps): React.ReactElement { - const [prompt, setPrompt] = React.useState('') - - return ( - - - {children} - - - ) -} diff --git a/opentrons-ai-client/src/organisms/PromptButton/__tests__/PromptButton.test.tsx b/opentrons-ai-client/src/organisms/PromptButton/__tests__/PromptButton.test.tsx index b4dadfcc931..d4659cc3c84 100644 --- a/opentrons-ai-client/src/organisms/PromptButton/__tests__/PromptButton.test.tsx +++ b/opentrons-ai-client/src/organisms/PromptButton/__tests__/PromptButton.test.tsx @@ -1,20 +1,15 @@ import React from 'react' -import { fireEvent, screen } from '@testing-library/react' -import { describe, it, vi, beforeEach, expect } from 'vitest' +import { useAtom } from 'jotai' +import { fireEvent, screen, renderHook } from '@testing-library/react' +import { describe, it, beforeEach, expect } from 'vitest' import { renderWithProviders } from '../../../__testing-utils__' -import { setPromptContext } from '../PromptProvider' import { reagentTransfer } from '../../../assets/prompts' +import { preparedPromptAtom } from '../../../resources/atoms' import { PromptButton } from '../index' -const mockSetPrompt = vi.fn() - const render = (props: React.ComponentProps) => { - return renderWithProviders( - - s - - ) + return renderWithProviders() } describe('PromptButton', () => { @@ -34,6 +29,8 @@ describe('PromptButton', () => { render(props) const button = screen.getByRole('button', { name: 'Reagent Transfer' }) fireEvent.click(button) - expect(mockSetPrompt).toHaveBeenCalledWith(reagentTransfer) + const { result } = renderHook(() => useAtom(preparedPromptAtom)) + fireEvent.click(button) + expect(result.current[0]).toBe(reagentTransfer) }) }) diff --git a/opentrons-ai-client/src/organisms/PromptButton/__tests__/PromptProvider.test.tsx b/opentrons-ai-client/src/organisms/PromptButton/__tests__/PromptProvider.test.tsx deleted file mode 100644 index 5caedf2c3ad..00000000000 --- a/opentrons-ai-client/src/organisms/PromptButton/__tests__/PromptProvider.test.tsx +++ /dev/null @@ -1,48 +0,0 @@ -import React from 'react' -import { describe, it, expect } from 'vitest' -import { fireEvent, screen } from '@testing-library/react' - -import { renderWithProviders } from '../../../__testing-utils__' -import { - PromptProvider, - promptContext, - setPromptContext, -} from '../PromptProvider' - -const TestComponent = () => { - const usePromptValue = (): string => React.useContext(promptContext) - const prompt = usePromptValue() - - const usePromptSetValue = (): React.Dispatch> => - React.useContext(setPromptContext) - const setPrompt = usePromptSetValue() - - return ( -
    -
    {prompt}
    - -
    - ) -} - -const render = () => { - return renderWithProviders( - - - - ) -} - -describe('PromptProvider', () => { - it('should render initial value', () => { - render() - const prompt = screen.getByTestId('mock_prompt') - expect(prompt.textContent).toEqual('') - }) - - it('should set a mock prompt', () => { - render() - fireEvent.click(screen.getByRole('button')) - expect(screen.getByText('Test Prompt')).toBeInTheDocument() - }) -}) diff --git a/opentrons-ai-client/src/organisms/PromptButton/index.tsx b/opentrons-ai-client/src/organisms/PromptButton/index.tsx index 452a615e67b..13a12cb492c 100644 --- a/opentrons-ai-client/src/organisms/PromptButton/index.tsx +++ b/opentrons-ai-client/src/organisms/PromptButton/index.tsx @@ -1,13 +1,14 @@ -import React, { useCallback } from 'react' +import React from 'react' import styled from 'styled-components' +import { useAtom } from 'jotai' import { BORDERS, PrimaryButton } from '@opentrons/components' -import { setPromptContext } from './PromptProvider' import { reagentTransfer, flexReagentTransfer, pcr, flexPcr, } from '../../assets/prompts' +import { preparedPromptAtom } from '../../resources/atoms' interface PromptButtonProps { buttonText: string @@ -30,18 +31,11 @@ const PROMPT_BY_NAME: Record = { } export function PromptButton({ buttonText }: PromptButtonProps): JSX.Element { - const usePromptSetValue = (): React.Dispatch> => - React.useContext(setPromptContext) - const setPrompt = usePromptSetValue() - - const handleClick = useCallback( - (event: React.MouseEvent) => { - const { prompt } = PROMPT_BY_NAME[buttonText] - setPrompt(prompt) - event.currentTarget.blur() - }, - [setPrompt, buttonText] - ) + const [, setPreparedPrompt] = useAtom(preparedPromptAtom) + const handleClick = (): void => { + const { prompt } = PROMPT_BY_NAME[buttonText] + setPreparedPrompt(prompt) + } return {buttonText} } diff --git a/opentrons-ai-client/src/resources/atoms.ts b/opentrons-ai-client/src/resources/atoms.ts new file mode 100644 index 00000000000..98ebd7df6f1 --- /dev/null +++ b/opentrons-ai-client/src/resources/atoms.ts @@ -0,0 +1,9 @@ +// jotai's atoms +import { atom } from 'jotai' +import type { ChatData } from './types' + +/** preparedPromptAtom is for PromptButton */ +export const preparedPromptAtom = atom('') + +/** ChatDataAtom is for chat data (user prompt and response from OpenAI API) */ +export const chatDataAtom = atom([]) diff --git a/opentrons-ai-client/src/resources/types.ts b/opentrons-ai-client/src/resources/types.ts new file mode 100644 index 00000000000..16d9239ec68 --- /dev/null +++ b/opentrons-ai-client/src/resources/types.ts @@ -0,0 +1,8 @@ +export interface ChatData { + /** assistant: ChatGPT API, user: user */ + role: 'assistant' | 'user' + /** content ChatGPT API return or user prompt */ + reply: string + /** for testing purpose will be removed and this is not used in the app */ + fake?: boolean +} diff --git a/opentrons-ai-server/.gitignore b/opentrons-ai-server/.gitignore new file mode 100644 index 00000000000..78bcfc1a90b --- /dev/null +++ b/opentrons-ai-server/.gitignore @@ -0,0 +1,9 @@ +.env +results +package +function.zip +requirements.txt +test.env +cached_token.txt +tests/helpers/cached_token.txt +tests/helpers/test.env diff --git a/opentrons-ai-server/Dockerfile b/opentrons-ai-server/Dockerfile new file mode 100644 index 00000000000..8a4ee3b944d --- /dev/null +++ b/opentrons-ai-server/Dockerfile @@ -0,0 +1,13 @@ +FROM --platform=linux/amd64 public.ecr.aws/lambda/python:3.12 + +COPY --from=public.ecr.aws/datadog/lambda-extension:57 /opt/. /opt/ + +WORKDIR ${LAMBDA_TASK_ROOT} + +COPY requirements.txt . + +RUN pip install -r requirements.txt + +COPY api ${LAMBDA_TASK_ROOT}/api + +CMD [ "datadog_lambda.handler.handler" ] \ No newline at end of file diff --git a/opentrons-ai-server/Makefile b/opentrons-ai-server/Makefile index 9de2141f6a0..48c18c9f6ff 100644 --- a/opentrons-ai-server/Makefile +++ b/opentrons-ai-server/Makefile @@ -1,2 +1,91 @@ # opentrons ai server makefile -# TBD \ No newline at end of file +.PHONY: install-pipenv +install-pipenv: + python -m pip install --user pipenv==2023.12.1 + +.PHONY: setup +setup: install-pipenv + python -m pipenv install --dev --python 3.12.3 + +.PHONY: teardown +teardown: + python -m pipenv --rm + +.PHONY: black +black: + python -m pipenv run python -m black . + +.PHONY: black-check +black-check: + python -m pipenv run python -m black . --check + +.PHONY: ruff +ruff: + python -m pipenv run python -m ruff check . --fix --unsafe-fixes + +.PHONY: ruff-check +ruff-check: + python -m pipenv run python -m ruff check . + +.PHONY: mypy +mypy: + python -m pipenv run python -m mypy deploy.py api tests + +.PHONY: format-readme +format-readme: + yarn prettier --ignore-path .eslintignore --write opentrons-ai-server/**/*.md opentrons-ai-server/**/*.json + +.PHONY: lint +lint: black-check ruff-check mypy + +.PHONY: format +format: + @echo runnning black + $(MAKE) black + @echo running ruff + $(MAKE) ruff + @echo formatting the readme with yarn prettier + $(MAKE) format-readme + +.PHONY: fixup +fixup: format lint + +.PHONY: pre-commit +pre-commit: fixup unit-test + @echo "pre-commit checks passed" + +.PHONY: gen-env +gen-env: + python -m pipenv run python -m api.settings + +.PHONY: unit-test +unit-test: + python -m pipenv run python -m pytest tests -m unit + +.PHONY: gen-requirements +gen-requirements: + @echo "Generating requirements.txt from Pipfile.lock..." + python -m pipenv requirements > requirements.txt + +ENV ?= sandbox + +.PHONY: deploy +deploy: gen-requirements + @echo "Deploying to environment: $(ENV)" + python -m pipenv run python deploy.py --env $(ENV) + +.PHONY: direct-chat-completion +direct-chat-completion: + python -m pipenv run python -m api.domain.openai_predict + +.PHONY: print-client-settings-vars +print-client-settings-vars: + python -m pipenv run python -m tests.helpers.settings + +.PHONY: live-client +live-client: + python -m pipenv run python -m tests.helpers.client + +.PHONY: test-live +test-live: + python -m pipenv run python -m pytest tests -m live --env $(ENV) diff --git a/opentrons-ai-server/Pipfile b/opentrons-ai-server/Pipfile new file mode 100644 index 00000000000..2ca1c97821d --- /dev/null +++ b/opentrons-ai-server/Pipfile @@ -0,0 +1,30 @@ +[[source]] +url = "https://pypi.org/simple" +verify_ssl = true +name = "pypi" + +[packages] +openai = "==1.25.1" +python-dotenv = "==1.0.1" +httpx = "==0.27.0" +llama-index = "==0.10.24" +datadog-lambda = "==5.94.0" +pydantic = "==2.7.1" + +[dev-packages] +docker = "==7.0.0" +pytest = "==8.2.0" +ruff = "==0.4.2" +mypy = "==1.10.0" +black = "==24.4.2" +types-requests = "*" +boto3 = "==1.34.97" +boto3-stubs = "==1.34.97" +rich = "==13.7.1" +pyjwt = "==2.8.0" +cryptography = "==42.0.7" +types-docker = "==7.0.0.20240513" + +[requires] +python_version = "3.12" +python_full_version = "3.12.3" diff --git a/opentrons-ai-server/Pipfile.lock b/opentrons-ai-server/Pipfile.lock new file mode 100644 index 00000000000..00922b74257 --- /dev/null +++ b/opentrons-ai-server/Pipfile.lock @@ -0,0 +1,2344 @@ +{ + "_meta": { + "hash": { + "sha256": "15df1bc32acf890b1eb461ea6e3162be9abcd9d5a6124c81da13eb6201061db9" + }, + "pipfile-spec": 6, + "requires": { + "python_full_version": "3.12.3", + "python_version": "3.12" + }, + "sources": [ + { + "name": "pypi", + "url": "https://pypi.org/simple", + "verify_ssl": true + } + ] + }, + "default": { + "aiohttp": { + "hashes": [ + "sha256:0605cc2c0088fcaae79f01c913a38611ad09ba68ff482402d3410bf59039bfb8", + "sha256:0a158704edf0abcac8ac371fbb54044f3270bdbc93e254a82b6c82be1ef08f3c", + "sha256:0cbf56238f4bbf49dab8c2dc2e6b1b68502b1e88d335bea59b3f5b9f4c001475", + "sha256:1732102949ff6087589408d76cd6dea656b93c896b011ecafff418c9661dc4ed", + "sha256:18f634d540dd099c262e9f887c8bbacc959847cfe5da7a0e2e1cf3f14dbf2daf", + "sha256:239f975589a944eeb1bad26b8b140a59a3a320067fb3cd10b75c3092405a1372", + "sha256:2faa61a904b83142747fc6a6d7ad8fccff898c849123030f8e75d5d967fd4a81", + "sha256:320e8618eda64e19d11bdb3bd04ccc0a816c17eaecb7e4945d01deee2a22f95f", + "sha256:38d80498e2e169bc61418ff36170e0aad0cd268da8b38a17c4cf29d254a8b3f1", + "sha256:3916c8692dbd9d55c523374a3b8213e628424d19116ac4308e434dbf6d95bbdd", + "sha256:393c7aba2b55559ef7ab791c94b44f7482a07bf7640d17b341b79081f5e5cd1a", + "sha256:3b7b30258348082826d274504fbc7c849959f1989d86c29bc355107accec6cfb", + "sha256:3fcb4046d2904378e3aeea1df51f697b0467f2aac55d232c87ba162709478c46", + "sha256:4109adee842b90671f1b689901b948f347325045c15f46b39797ae1bf17019de", + "sha256:4558e5012ee03d2638c681e156461d37b7a113fe13970d438d95d10173d25f78", + "sha256:45731330e754f5811c314901cebdf19dd776a44b31927fa4b4dbecab9e457b0c", + "sha256:4715a9b778f4293b9f8ae7a0a7cef9829f02ff8d6277a39d7f40565c737d3771", + "sha256:471f0ef53ccedec9995287f02caf0c068732f026455f07db3f01a46e49d76bbb", + "sha256:4d3ebb9e1316ec74277d19c5f482f98cc65a73ccd5430540d6d11682cd857430", + "sha256:4ff550491f5492ab5ed3533e76b8567f4b37bd2995e780a1f46bca2024223233", + "sha256:52c27110f3862a1afbcb2af4281fc9fdc40327fa286c4625dfee247c3ba90156", + "sha256:55b39c8684a46e56ef8c8d24faf02de4a2b2ac60d26cee93bc595651ff545de9", + "sha256:5a7ee16aab26e76add4afc45e8f8206c95d1d75540f1039b84a03c3b3800dd59", + "sha256:5ca51eadbd67045396bc92a4345d1790b7301c14d1848feaac1d6a6c9289e888", + "sha256:5d6b3f1fabe465e819aed2c421a6743d8debbde79b6a8600739300630a01bf2c", + "sha256:60cdbd56f4cad9f69c35eaac0fbbdf1f77b0ff9456cebd4902f3dd1cf096464c", + "sha256:6380c039ec52866c06d69b5c7aad5478b24ed11696f0e72f6b807cfb261453da", + "sha256:639d0042b7670222f33b0028de6b4e2fad6451462ce7df2af8aee37dcac55424", + "sha256:66331d00fb28dc90aa606d9a54304af76b335ae204d1836f65797d6fe27f1ca2", + "sha256:67c3119f5ddc7261d47163ed86d760ddf0e625cd6246b4ed852e82159617b5fb", + "sha256:694d828b5c41255e54bc2dddb51a9f5150b4eefa9886e38b52605a05d96566e8", + "sha256:6ae79c1bc12c34082d92bf9422764f799aee4746fd7a392db46b7fd357d4a17a", + "sha256:702e2c7c187c1a498a4e2b03155d52658fdd6fda882d3d7fbb891a5cf108bb10", + "sha256:714d4e5231fed4ba2762ed489b4aec07b2b9953cf4ee31e9871caac895a839c0", + "sha256:7b179eea70833c8dee51ec42f3b4097bd6370892fa93f510f76762105568cf09", + "sha256:7f64cbd44443e80094309875d4f9c71d0401e966d191c3d469cde4642bc2e031", + "sha256:82a6a97d9771cb48ae16979c3a3a9a18b600a8505b1115cfe354dfb2054468b4", + "sha256:84dabd95154f43a2ea80deffec9cb44d2e301e38a0c9d331cc4aa0166fe28ae3", + "sha256:8676e8fd73141ded15ea586de0b7cda1542960a7b9ad89b2b06428e97125d4fa", + "sha256:88e311d98cc0bf45b62fc46c66753a83445f5ab20038bcc1b8a1cc05666f428a", + "sha256:8b4f72fbb66279624bfe83fd5eb6aea0022dad8eec62b71e7bf63ee1caadeafe", + "sha256:8c64a6dc3fe5db7b1b4d2b5cb84c4f677768bdc340611eca673afb7cf416ef5a", + "sha256:8cf142aa6c1a751fcb364158fd710b8a9be874b81889c2bd13aa8893197455e2", + "sha256:8d1964eb7617907c792ca00b341b5ec3e01ae8c280825deadbbd678447b127e1", + "sha256:93e22add827447d2e26d67c9ac0161756007f152fdc5210277d00a85f6c92323", + "sha256:9c69e77370cce2d6df5d12b4e12bdcca60c47ba13d1cbbc8645dd005a20b738b", + "sha256:9dbc053ac75ccc63dc3a3cc547b98c7258ec35a215a92bd9f983e0aac95d3d5b", + "sha256:9e3a1ae66e3d0c17cf65c08968a5ee3180c5a95920ec2731f53343fac9bad106", + "sha256:a6ea1a5b409a85477fd8e5ee6ad8f0e40bf2844c270955e09360418cfd09abac", + "sha256:a81b1143d42b66ffc40a441379387076243ef7b51019204fd3ec36b9f69e77d6", + "sha256:ad7f2919d7dac062f24d6f5fe95d401597fbb015a25771f85e692d043c9d7832", + "sha256:afc52b8d969eff14e069a710057d15ab9ac17cd4b6753042c407dcea0e40bf75", + "sha256:b3df71da99c98534be076196791adca8819761f0bf6e08e07fd7da25127150d6", + "sha256:c088c4d70d21f8ca5c0b8b5403fe84a7bc8e024161febdd4ef04575ef35d474d", + "sha256:c26959ca7b75ff768e2776d8055bf9582a6267e24556bb7f7bd29e677932be72", + "sha256:c413016880e03e69d166efb5a1a95d40f83d5a3a648d16486592c49ffb76d0db", + "sha256:c6021d296318cb6f9414b48e6a439a7f5d1f665464da507e8ff640848ee2a58a", + "sha256:c671dc117c2c21a1ca10c116cfcd6e3e44da7fcde37bf83b2be485ab377b25da", + "sha256:c7a4b7a6cf5b6eb11e109a9755fd4fda7d57395f8c575e166d363b9fc3ec4678", + "sha256:c8a02fbeca6f63cb1f0475c799679057fc9268b77075ab7cf3f1c600e81dd46b", + "sha256:cd2adf5c87ff6d8b277814a28a535b59e20bfea40a101db6b3bdca7e9926bc24", + "sha256:d1469f228cd9ffddd396d9948b8c9cd8022b6d1bf1e40c6f25b0fb90b4f893ed", + "sha256:d153f652a687a8e95ad367a86a61e8d53d528b0530ef382ec5aaf533140ed00f", + "sha256:d5ab8e1f6bee051a4bf6195e38a5c13e5e161cb7bad83d8854524798bd9fcd6e", + "sha256:da00da442a0e31f1c69d26d224e1efd3a1ca5bcbf210978a2ca7426dfcae9f58", + "sha256:da22dab31d7180f8c3ac7c7635f3bcd53808f374f6aa333fe0b0b9e14b01f91a", + "sha256:e0ae53e33ee7476dd3d1132f932eeb39bf6125083820049d06edcdca4381f342", + "sha256:e7a6a8354f1b62e15d48e04350f13e726fa08b62c3d7b8401c0a1314f02e3558", + "sha256:e9a3d838441bebcf5cf442700e3963f58b5c33f015341f9ea86dcd7d503c07e2", + "sha256:edea7d15772ceeb29db4aff55e482d4bcfb6ae160ce144f2682de02f6d693551", + "sha256:f22eb3a6c1080d862befa0a89c380b4dafce29dc6cd56083f630073d102eb595", + "sha256:f26383adb94da5e7fb388d441bf09c61e5e35f455a3217bfd790c6b6bc64b2ee", + "sha256:f3c2890ca8c59ee683fd09adf32321a40fe1cf164e3387799efb2acebf090c11", + "sha256:f64fd07515dad67f24b6ea4a66ae2876c01031de91c93075b8093f07c0a2d93d", + "sha256:fcde4c397f673fdec23e6b05ebf8d4751314fa7c24f93334bf1f1364c1c69ac7", + "sha256:ff84aeb864e0fac81f676be9f4685f0527b660f1efdc40dcede3c251ef1e867f" + ], + "markers": "python_version >= '3.8'", + "version": "==3.9.5" + }, + "aiosignal": { + "hashes": [ + "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc", + "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17" + ], + "markers": "python_version >= '3.7'", + "version": "==1.3.1" + }, + "annotated-types": { + "hashes": [ + "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43", + "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d" + ], + "markers": "python_version >= '3.8'", + "version": "==0.6.0" + }, + "anyio": { + "hashes": [ + "sha256:048e05d0f6caeed70d731f3db756d35dcc1f35747c8c403364a8332c630441b8", + "sha256:f75253795a87df48568485fd18cdd2a3fa5c4f7c5be8e5e36637733fce06fed6" + ], + "markers": "python_version >= '3.8'", + "version": "==4.3.0" + }, + "attrs": { + "hashes": [ + "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", + "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1" + ], + "markers": "python_version >= '3.7'", + "version": "==23.2.0" + }, + "beautifulsoup4": { + "hashes": [ + "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051", + "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed" + ], + "markers": "python_full_version >= '3.6.0'", + "version": "==4.12.3" + }, + "bytecode": { + "hashes": [ + "sha256:0a1dc340cac823cff605609b8b214f7f9bf80418c6b9e0fc8c6db1793c27137d", + "sha256:7263239a8d3f70fc7c303862b20cd2c6788052e37ce0a26e67309d280e985984" + ], + "markers": "python_version >= '3.12'", + "version": "==0.15.1" + }, + "cattrs": { + "hashes": [ + "sha256:0341994d94971052e9ee70662542699a3162ea1e0c62f7ce1b4a57f563685108", + "sha256:a934090d95abaa9e911dac357e3a8699e0b4b14f8529bcc7d2b1ad9d51672b9f" + ], + "markers": "python_version >= '3.8'", + "version": "==23.2.3" + }, + "certifi": { + "hashes": [ + "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", + "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" + ], + "markers": "python_version >= '3.6'", + "version": "==2024.2.2" + }, + "charset-normalizer": { + "hashes": [ + "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", + "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087", + "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786", + "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", + "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", + "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", + "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", + "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", + "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", + "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898", + "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", + "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", + "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", + "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6", + "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", + "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a", + "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", + "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", + "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714", + "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2", + "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", + "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", + "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d", + "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", + "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", + "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", + "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", + "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", + "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a", + "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", + "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", + "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", + "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", + "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", + "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", + "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac", + "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25", + "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", + "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", + "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", + "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", + "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", + "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", + "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", + "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99", + "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c", + "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", + "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811", + "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", + "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", + "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", + "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", + "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04", + "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c", + "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", + "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", + "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", + "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99", + "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985", + "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", + "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238", + "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", + "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", + "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", + "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a", + "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", + "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8", + "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", + "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5", + "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5", + "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711", + "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", + "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", + "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", + "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", + "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4", + "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", + "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", + "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", + "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", + "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", + "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8", + "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", + "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b", + "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", + "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", + "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", + "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33", + "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", + "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561" + ], + "markers": "python_full_version >= '3.7.0'", + "version": "==3.3.2" + }, + "click": { + "hashes": [ + "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", + "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" + ], + "markers": "python_version >= '3.7'", + "version": "==8.1.7" + }, + "dataclasses-json": { + "hashes": [ + "sha256:0c09827d26fffda27f1be2fed7a7a01a29c5ddcd2eb6393ad5ebf9d77e9deae8", + "sha256:e54c5c87497741ad454070ba0ed411523d46beb5da102e221efb873801b0ba85" + ], + "markers": "python_version >= '3.7' and python_version < '4.0'", + "version": "==0.6.6" + }, + "datadog": { + "hashes": [ + "sha256:4a56d57490ea699a0dfd9253547485a57b4120e93489defadcf95c66272374d6", + "sha256:4cb7a7991af6cadb868fe450cd456473e65f11fc678b7d7cf61044ff1c6074d8" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'", + "version": "==0.49.1" + }, + "datadog-lambda": { + "hashes": [ + "sha256:2005c09351f0c10da63fd29d1f43d035c4c5c6a71492416817741536a6e45896", + "sha256:de8e9a40b4dbee3314bfc1c2c91d071691a78e324a041dcb07bf52754ead3e10" + ], + "index": "pypi", + "markers": "python_version < '4' and python_full_version >= '3.8.0'", + "version": "==5.94.0" + }, + "ddsketch": { + "hashes": [ + "sha256:6d047b455fe2837c43d366ff1ae6ba0c3166e15499de8688437a75cea914224e", + "sha256:aa8f20b2965e61731ca4fee2ca9c209f397f5bbb23f9d192ec8bd7a2f5bd9824" + ], + "markers": "python_version >= '3.7'", + "version": "==3.0.1" + }, + "ddtrace": { + "hashes": [ + "sha256:00810ecbf1af1e288435f7ac4f6198073229d1b61977b728b4a241c839190b04", + "sha256:03a204b5760e1b377210b0a301beb6b2775dcb82f8e1cdf10a7921d3a6357aa9", + "sha256:05c7587ceab5a91624a687d02a17a17019e867a5ceb08516e6616183e0c089c3", + "sha256:069ff3b9e34d9d3dfd256ba56f3eedc335068386d8e0e7422d7d981017283161", + "sha256:0e9c048d9894a556996a66e039c4d5bcb2f423983ead616cc0741d2fbf6ca57b", + "sha256:1392de7f7e0cfd0071f90438f8eab0cbf8c669d94f4c09426ad3ad80ab55c0ff", + "sha256:15592f3c2a64b3b5ae3eafba4b73a9e7c1724bcabd68b8d507c7a521858c66e0", + "sha256:159321423be46c38687689143dcbe941b00bd771a73011de05f6eff2a3ef732a", + "sha256:29060a48904c8a19f2dcac9dc7b9a84bf773bffa8ae1ba5cccc8a5bb74b238a0", + "sha256:2ac88197694d152ba6434bb89cde352e6356f34cf1a63071f72f7aa278ea7f55", + "sha256:35c9274db4a0b4d9dab79329fb0df2325b47e5f804ab834d3d79864650197d37", + "sha256:36e73afb37bc724793bc3f95c6fe5dfea3e0cfe939caf5ceff9bbbef0e3dac83", + "sha256:455ef7df497cf26cd81740045b4702f94748fe16624409409511a48601b031d3", + "sha256:4aac5b75f03a8872472cd8e7fa7ebe3ff8614458174c619a7d3be8ca8d8d9f5b", + "sha256:4d91b9d0b5d9fef3b1a3c78a98f3dca7708b78dd7cf04f6bb78c898b8d401c5e", + "sha256:51d55d553f848bac57b5b4b8818cc6b1c9a97ab7b77c8809453498699ba92d65", + "sha256:58cf8c5145151ff19f94e8fb99aaf581e5180e87c5cb4e6765806e45dc473077", + "sha256:5d1c74178eee1c4a8508c93819ca996439d13f159f8202190f7705509edafe4b", + "sha256:6580ddf25a9ed4a190e49565d843700710820a9dc5ff1f3ccbf6a159ed5e8521", + "sha256:65f344aac5073e1fd74ff4ba7b404c8400d9165b715d4b40b3f10a62468fc957", + "sha256:6a612efe745abd01cb89c0b49e2f7b7adaaf075975b095426e361bcb8415ca51", + "sha256:6c543750759f5ad91ab280a034b8daca0bf52527b0ee69e4ca5ba2e6d7ce207c", + "sha256:76f853ce8d6b1fcfb5211a5589f3f8610d92d669c6b9975af7b1d09e8197ee92", + "sha256:814bfcc447c7ed3acab0e07f1561b41853466a6a009d94f745bf1df39c085afa", + "sha256:819ea545b9fb8e51c0ab3553aefbb3ad8577454129ce9c9ea538146001ff2a19", + "sha256:85c881c943c4228faea04f1982c0fad722d6e2b5317fed4ceff64b3a9fb849eb", + "sha256:88202985f5d0230536e25d30c206fa883c8be24a01ae6a4caf1085633ba613d1", + "sha256:890348d2c7863dd00207412879b39f9524cbd6053d2a034e653996cb65bcd10a", + "sha256:8ef07d1ae9a29b9639eaadeefead70b8c1d99d9a6cb9b8fe837eb312642b3419", + "sha256:8f4a7cdf28c46e9c697e9dcd7b1787dc657bf1af610e4bab7041f80b4cf9962a", + "sha256:8ff3540e6430812d5178e5d8b42d7712301d4d68412fe3346f2cf6263173464e", + "sha256:948427c85cbbc0d4ebd77a81e07601cd54eba3b2056293e6f35815f3d824f1c3", + "sha256:9fd98f860c7a5821ce905d16635103b21a03302605acc2002dbcc2eb7848bf20", + "sha256:a018fae0a0be1eaa44059dcd87ecfa10bcb95cfa03c89f7bf7a06b7bc869d52c", + "sha256:a022870b41836d85583d5bfad2b9e82b9cae8193b18e18e1341b7bb87f1617b0", + "sha256:a0dfa90232408a30c5618141845fbd32295d2252467349922b7e26d040082f08", + "sha256:a6a80cf6059383823844420609b3c6d286b6b0010d883893a8e8fad4585ead61", + "sha256:aa791627fe1704ef7bc5416d4a4dfc43c95d52888b0db455ae568a75c63c93e2", + "sha256:b09329b8aec540dc3a8e2ee08ed21367977d299d423d21cbafebd8eaeb3eb5a6", + "sha256:b559ac4e790771cf48527bd9344437390a0129846e6087e582e4705a1131d4ec", + "sha256:b88610aa191efbdcda23a87e8a3f2281b5b299894fe884f40248449ef42f77ca", + "sha256:ba2f8d6b160e31b828df499cdb3f4635e538a566c39090557b72ac55779fae34", + "sha256:bfbb3c37b1bcd132619accae98a37a9c7425ed040b0da88c51b64ebbb18f956b", + "sha256:c05cd7675d0a15496cf0de34b4389683bf29e2b14ebde23a18fba656a51cd695", + "sha256:c25b9e5a7c8bf7bf2dd554af1b8dd3cb45d3e9ecb66acac6b73a61e6a19d2355", + "sha256:c507aabca054b6167c3f103dd12bbd594cc283e7272c13d3a8f1098528869cfd", + "sha256:c551b8788d9c9714963d77e54d1f1ff368022169d9ed6d3b1ea7cb0d660cd7d4", + "sha256:c675d91e4dbb4319ae6eb9537141c95d7fa4014f231b55f6240de6c6bc3d5ede", + "sha256:cbcdc34e20a20f18d6deca2099dfc47e30f1ef00b0060c486016b005c88c42b0", + "sha256:d0aeb72b3300bb146421934bf7f44cbf4c5fa436cbb86cb615de995d914e7b22", + "sha256:d56ce1faa85a7456694fa61a0fc4e4853ac5dd1316f7d8315592deddea9ee4e0", + "sha256:dab563872e32fb1e482d69194b7ecd1fdec5261140250218acd91872f8471cc8", + "sha256:dac86f13b32e00249f4743d7fbdfe47ad72c8b958c4a967f7677e85c5258d844", + "sha256:dc58a7079621dc6a6c28d5c64866aa017caca7f64af2b919b5d8304cdec063f7", + "sha256:dee692c1c5d667cbebbfe4aa216f112c74c4dda07c29523e9d9832c141830376", + "sha256:e1649afa71e00869d91f087fbd90dbeb7ed666ed958ef1d37fea8c70c3349c5f", + "sha256:e1a5fdd1ecb6b3f7282917f34f28ec8d81dc629a14a56e643b93faaa5918a4d2", + "sha256:e24b2f5117e7f9fa50c06ea95cafa0bb61dda78fcea7fd2758ef2358ecf2959c", + "sha256:e485740d85d37ee52ec7fa0f10ef9acc4c8580d2bdec14371bf3acddd0b1ba1c", + "sha256:f3d8398e1a1f931d153b457d312d1a5e1a1b56aa15839c3dd03403fa66364007" + ], + "markers": "python_version >= '3.7'", + "version": "==2.8.4" + }, + "deprecated": { + "hashes": [ + "sha256:6fac8b097794a90302bdbb17b9b815e732d3c4720583ff1b198499d78470466c", + "sha256:e5323eb936458dccc2582dc6f9c322c852a775a27065ff2b0c4970b9d53d01b3" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.2.14" + }, + "dirtyjson": { + "hashes": [ + "sha256:125e27248435a58acace26d5c2c4c11a1c0de0a9c5124c5a94ba78e517d74f53", + "sha256:90ca4a18f3ff30ce849d100dcf4a003953c79d3a2348ef056f1d9c22231a25fd" + ], + "version": "==1.0.8" + }, + "distro": { + "hashes": [ + "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed", + "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2" + ], + "markers": "python_version >= '3.6'", + "version": "==1.9.0" + }, + "envier": { + "hashes": [ + "sha256:b45ef6051fea33d0c32a64e186bff2cfb446e2242d6781216c9bc9ce708c5909", + "sha256:bd5ccf707447973ea0f4125b7df202ba415ad888bcdcb8df80e0b002ee11ffdb" + ], + "markers": "python_version >= '3.7'", + "version": "==0.5.1" + }, + "frozenlist": { + "hashes": [ + "sha256:04ced3e6a46b4cfffe20f9ae482818e34eba9b5fb0ce4056e4cc9b6e212d09b7", + "sha256:0633c8d5337cb5c77acbccc6357ac49a1770b8c487e5b3505c57b949b4b82e98", + "sha256:068b63f23b17df8569b7fdca5517edef76171cf3897eb68beb01341131fbd2ad", + "sha256:0c250a29735d4f15321007fb02865f0e6b6a41a6b88f1f523ca1596ab5f50bd5", + "sha256:1979bc0aeb89b33b588c51c54ab0161791149f2461ea7c7c946d95d5f93b56ae", + "sha256:1a4471094e146b6790f61b98616ab8e44f72661879cc63fa1049d13ef711e71e", + "sha256:1b280e6507ea8a4fa0c0a7150b4e526a8d113989e28eaaef946cc77ffd7efc0a", + "sha256:1d0ce09d36d53bbbe566fe296965b23b961764c0bcf3ce2fa45f463745c04701", + "sha256:20b51fa3f588ff2fe658663db52a41a4f7aa6c04f6201449c6c7c476bd255c0d", + "sha256:23b2d7679b73fe0e5a4560b672a39f98dfc6f60df63823b0a9970525325b95f6", + "sha256:23b701e65c7b36e4bf15546a89279bd4d8675faabc287d06bbcfac7d3c33e1e6", + "sha256:2471c201b70d58a0f0c1f91261542a03d9a5e088ed3dc6c160d614c01649c106", + "sha256:27657df69e8801be6c3638054e202a135c7f299267f1a55ed3a598934f6c0d75", + "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868", + "sha256:32453c1de775c889eb4e22f1197fe3bdfe457d16476ea407472b9442e6295f7a", + "sha256:3a670dc61eb0d0eb7080890c13de3066790f9049b47b0de04007090807c776b0", + "sha256:3e0153a805a98f5ada7e09826255ba99fb4f7524bb81bf6b47fb702666484ae1", + "sha256:410478a0c562d1a5bcc2f7ea448359fcb050ed48b3c6f6f4f18c313a9bdb1826", + "sha256:442acde1e068288a4ba7acfe05f5f343e19fac87bfc96d89eb886b0363e977ec", + "sha256:48f6a4533887e189dae092f1cf981f2e3885175f7a0f33c91fb5b7b682b6bab6", + "sha256:4f57dab5fe3407b6c0c1cc907ac98e8a189f9e418f3b6e54d65a718aaafe3950", + "sha256:4f9c515e7914626b2a2e1e311794b4c35720a0be87af52b79ff8e1429fc25f19", + "sha256:55fdc093b5a3cb41d420884cdaf37a1e74c3c37a31f46e66286d9145d2063bd0", + "sha256:5667ed53d68d91920defdf4035d1cdaa3c3121dc0b113255124bcfada1cfa1b8", + "sha256:590344787a90ae57d62511dd7c736ed56b428f04cd8c161fcc5e7232c130c69a", + "sha256:5a7d70357e7cee13f470c7883a063aae5fe209a493c57d86eb7f5a6f910fae09", + "sha256:5c3894db91f5a489fc8fa6a9991820f368f0b3cbdb9cd8849547ccfab3392d86", + "sha256:5c849d495bf5154cd8da18a9eb15db127d4dba2968d88831aff6f0331ea9bd4c", + "sha256:64536573d0a2cb6e625cf309984e2d873979709f2cf22839bf2d61790b448ad5", + "sha256:693945278a31f2086d9bf3df0fe8254bbeaef1fe71e1351c3bd730aa7d31c41b", + "sha256:6db4667b187a6742b33afbbaf05a7bc551ffcf1ced0000a571aedbb4aa42fc7b", + "sha256:6eb73fa5426ea69ee0e012fb59cdc76a15b1283d6e32e4f8dc4482ec67d1194d", + "sha256:722e1124aec435320ae01ee3ac7bec11a5d47f25d0ed6328f2273d287bc3abb0", + "sha256:7268252af60904bf52c26173cbadc3a071cece75f873705419c8681f24d3edea", + "sha256:74fb4bee6880b529a0c6560885fce4dc95936920f9f20f53d99a213f7bf66776", + "sha256:780d3a35680ced9ce682fbcf4cb9c2bad3136eeff760ab33707b71db84664e3a", + "sha256:82e8211d69a4f4bc360ea22cd6555f8e61a1bd211d1d5d39d3d228b48c83a897", + "sha256:89aa2c2eeb20957be2d950b85974b30a01a762f3308cd02bb15e1ad632e22dc7", + "sha256:8aefbba5f69d42246543407ed2461db31006b0f76c4e32dfd6f42215a2c41d09", + "sha256:96ec70beabbd3b10e8bfe52616a13561e58fe84c0101dd031dc78f250d5128b9", + "sha256:9750cc7fe1ae3b1611bb8cfc3f9ec11d532244235d75901fb6b8e42ce9229dfe", + "sha256:9acbb16f06fe7f52f441bb6f413ebae6c37baa6ef9edd49cdd567216da8600cd", + "sha256:9d3e0c25a2350080e9319724dede4f31f43a6c9779be48021a7f4ebde8b2d742", + "sha256:a06339f38e9ed3a64e4c4e43aec7f59084033647f908e4259d279a52d3757d09", + "sha256:a0cb6f11204443f27a1628b0e460f37fb30f624be6051d490fa7d7e26d4af3d0", + "sha256:a7496bfe1da7fb1a4e1cc23bb67c58fab69311cc7d32b5a99c2007b4b2a0e932", + "sha256:a828c57f00f729620a442881cc60e57cfcec6842ba38e1b19fd3e47ac0ff8dc1", + "sha256:a9b2de4cf0cdd5bd2dee4c4f63a653c61d2408055ab77b151c1957f221cabf2a", + "sha256:b46c8ae3a8f1f41a0d2ef350c0b6e65822d80772fe46b653ab6b6274f61d4a49", + "sha256:b7e3ed87d4138356775346e6845cccbe66cd9e207f3cd11d2f0b9fd13681359d", + "sha256:b7f2f9f912dca3934c1baec2e4585a674ef16fe00218d833856408c48d5beee7", + "sha256:ba60bb19387e13597fb059f32cd4d59445d7b18b69a745b8f8e5db0346f33480", + "sha256:beee944ae828747fd7cb216a70f120767fc9f4f00bacae8543c14a6831673f89", + "sha256:bfa4a17e17ce9abf47a74ae02f32d014c5e9404b6d9ac7f729e01562bbee601e", + "sha256:c037a86e8513059a2613aaba4d817bb90b9d9b6b69aace3ce9c877e8c8ed402b", + "sha256:c302220494f5c1ebeb0912ea782bcd5e2f8308037b3c7553fad0e48ebad6ad82", + "sha256:c6321c9efe29975232da3bd0af0ad216800a47e93d763ce64f291917a381b8eb", + "sha256:c757a9dd70d72b076d6f68efdbb9bc943665ae954dad2801b874c8c69e185068", + "sha256:c99169d4ff810155ca50b4da3b075cbde79752443117d89429595c2e8e37fed8", + "sha256:c9c92be9fd329ac801cc420e08452b70e7aeab94ea4233a4804f0915c14eba9b", + "sha256:cc7b01b3754ea68a62bd77ce6020afaffb44a590c2289089289363472d13aedb", + "sha256:db9e724bebd621d9beca794f2a4ff1d26eed5965b004a97f1f1685a173b869c2", + "sha256:dca69045298ce5c11fd539682cff879cc1e664c245d1c64da929813e54241d11", + "sha256:dd9b1baec094d91bf36ec729445f7769d0d0cf6b64d04d86e45baf89e2b9059b", + "sha256:e02a0e11cf6597299b9f3bbd3f93d79217cb90cfd1411aec33848b13f5c656cc", + "sha256:e6a20a581f9ce92d389a8c7d7c3dd47c81fd5d6e655c8dddf341e14aa48659d0", + "sha256:e7004be74cbb7d9f34553a5ce5fb08be14fb33bc86f332fb71cbe5216362a497", + "sha256:e774d53b1a477a67838a904131c4b0eef6b3d8a651f8b138b04f748fccfefe17", + "sha256:edb678da49d9f72c9f6c609fbe41a5dfb9a9282f9e6a2253d5a91e0fc382d7c0", + "sha256:f146e0911cb2f1da549fc58fc7bcd2b836a44b79ef871980d605ec392ff6b0d2", + "sha256:f56e2333dda1fe0f909e7cc59f021eba0d2307bc6f012a1ccf2beca6ba362439", + "sha256:f9a3ea26252bd92f570600098783d1371354d89d5f6b7dfd87359d669f2109b5", + "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac", + "sha256:fb3c2db03683b5767dedb5769b8a40ebb47d6f7f45b1b3e3b4b51ec8ad9d9825", + "sha256:fbeb989b5cc29e8daf7f976b421c220f1b8c731cbf22b9130d8815418ea45887", + "sha256:fde5bd59ab5357e3853313127f4d3565fc7dad314a74d7b5d43c22c6a5ed2ced", + "sha256:fe1a06da377e3a1062ae5fe0926e12b84eceb8a50b350ddca72dc85015873f74" + ], + "markers": "python_version >= '3.8'", + "version": "==1.4.1" + }, + "fsspec": { + "hashes": [ + "sha256:918d18d41bf73f0e2b261824baeb1b124bcf771767e3a26425cd7dec3332f512", + "sha256:f39780e282d7d117ffb42bb96992f8a90795e4d0fb0f661a70ca39fe9c43ded9" + ], + "markers": "python_version >= '3.8'", + "version": "==2024.3.1" + }, + "greenlet": { + "hashes": [ + "sha256:01bc7ea167cf943b4c802068e178bbf70ae2e8c080467070d01bfa02f337ee67", + "sha256:0448abc479fab28b00cb472d278828b3ccca164531daab4e970a0458786055d6", + "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257", + "sha256:098d86f528c855ead3479afe84b49242e174ed262456c342d70fc7f972bc13c4", + "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676", + "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61", + "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc", + "sha256:1996cb9306c8595335bb157d133daf5cf9f693ef413e7673cb07e3e5871379ca", + "sha256:1a7191e42732df52cb5f39d3527217e7ab73cae2cb3694d241e18f53d84ea9a7", + "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728", + "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305", + "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6", + "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379", + "sha256:2dd6e660effd852586b6a8478a1d244b8dc90ab5b1321751d2ea15deb49ed414", + "sha256:3ddc0f794e6ad661e321caa8d2f0a55ce01213c74722587256fb6566049a8b04", + "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a", + "sha256:419b386f84949bf0e7c73e6032e3457b82a787c1ab4a0e43732898a761cc9dbf", + "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491", + "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559", + "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e", + "sha256:5b51e85cb5ceda94e79d019ed36b35386e8c37d22f07d6a751cb659b180d5274", + "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb", + "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b", + "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9", + "sha256:6b66c9c1e7ccabad3a7d037b2bcb740122a7b17a53734b7d72a344ce39882a1b", + "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be", + "sha256:7170375bcc99f1a2fbd9c306f5be8764eaf3ac6b5cb968862cad4c7057756506", + "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405", + "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113", + "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f", + "sha256:81bb9c6d52e8321f09c3d165b2a78c680506d9af285bfccbad9fb7ad5a5da3e5", + "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230", + "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d", + "sha256:99bf650dc5d69546e076f413a87481ee1d2d09aaaaaca058c9251b6d8c14783f", + "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a", + "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e", + "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61", + "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6", + "sha256:b542be2440edc2d48547b5923c408cbe0fc94afb9f18741faa6ae970dbcb9b6d", + "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71", + "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22", + "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2", + "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3", + "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067", + "sha256:c9db1c18f0eaad2f804728c67d6c610778456e3e1cc4ab4bbd5eeb8e6053c6fc", + "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881", + "sha256:d46677c85c5ba00a9cb6f7a00b2bfa6f812192d2c9f7d9c4f6a55b60216712f3", + "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e", + "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac", + "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53", + "sha256:daf3cb43b7cf2ba96d614252ce1684c1bccee6b2183a01328c98d36fcd7d5cb0", + "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b", + "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83", + "sha256:e1f145462f1fa6e4a4ae3c0f782e580ce44d57c8f2c7aae1b6fa88c0b2efdb41", + "sha256:e3391d1e16e2a5a1507d83e4a8b100f4ee626e8eca43cf2cadb543de69827c4c", + "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf", + "sha256:fd096eb7ffef17c456cfa587523c5f92321ae02427ff955bebe9e3c63bc9f0da", + "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33" + ], + "markers": "platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32')))))", + "version": "==3.0.3" + }, + "h11": { + "hashes": [ + "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", + "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761" + ], + "markers": "python_version >= '3.7'", + "version": "==0.14.0" + }, + "httpcore": { + "hashes": [ + "sha256:34a38e2f9291467ee3b44e89dd52615370e152954ba21721378a87b2960f7a61", + "sha256:421f18bac248b25d310f3cacd198d55b8e6125c107797b609ff9b7a6ba7991b5" + ], + "markers": "python_version >= '3.8'", + "version": "==1.0.5" + }, + "httpx": { + "hashes": [ + "sha256:71d5465162c13681bff01ad59b2cc68dd838ea1f10e51574bac27103f00c91a5", + "sha256:a0cb88a46f32dc874e04ee956e4c2764aba2aa228f650b06788ba6bda2962ab5" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==0.27.0" + }, + "idna": { + "hashes": [ + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" + ], + "markers": "python_version >= '3.5'", + "version": "==3.7" + }, + "importlib-metadata": { + "hashes": [ + "sha256:7fc841f8b8332803464e5dc1c63a2e59121f46ca186c0e2e182e80bf8c1319f7", + "sha256:d97503976bb81f40a193d41ee6570868479c69d5068651eb039c40d850c59d67" + ], + "markers": "python_version >= '3.8'", + "version": "==7.0.0" + }, + "joblib": { + "hashes": [ + "sha256:06d478d5674cbc267e7496a410ee875abd68e4340feff4490bcb7afb88060ae6", + "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e" + ], + "markers": "python_version >= '3.8'", + "version": "==1.4.2" + }, + "llama-index": { + "hashes": [ + "sha256:2ec779fb0046271cf170f4b94a78ec6dc111d51e20cdf8a1e2ce471b48c7dc8a", + "sha256:f241b70086d109b296fc9a75fa5eaa580f9bfb48d3271bc9702b0c206ce298ab" + ], + "index": "pypi", + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.10.24" + }, + "llama-index-agent-openai": { + "hashes": [ + "sha256:6764d385699f4f40ee34bcd88309c820e9e71aa9675a4bde26d4f625d79190a8", + "sha256:6962f02e94c097c6a823dad494568e62b83f4218eb852ef0dce90bd3ffb10406" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.7" + }, + "llama-index-cli": { + "hashes": [ + "sha256:3cf1f706c3c69c6b1aab07fca7faad3959db1709808efd50491b669d38b0b580", + "sha256:d80d546786f02d3f16f6183b8e86b22b8b5c33a1500923659f2ccbff8d5df634" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.12" + }, + "llama-index-core": { + "hashes": [ + "sha256:02f06bdefb5c6fd11dee1f65007a98decf3b266ad76136b7cfd3bec44efc5493", + "sha256:a6e8ea790e5b3656a254d9b47f8c00044dd46aae1cd43004c5d1303a7502b3e6" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.10.36" + }, + "llama-index-embeddings-openai": { + "hashes": [ + "sha256:0fd292b2f9a0ad4534a790d6374726bc885853188087eb018167dcf239643924", + "sha256:fbd16d6197b91f4dbdc6d0707e573cc224ac2b0a48d5b370c6232dd8a2282473" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.9" + }, + "llama-index-indices-managed-llama-cloud": { + "hashes": [ + "sha256:74b3b0e9ebf9d348d3054f9fc0c657031acceb9351c31116ad8d5a7ae4729f5c", + "sha256:cba33e1a3677b2a2ae7f239119acbf6dc3818f105edc92315729842b56fbc949" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.6" + }, + "llama-index-legacy": { + "hashes": [ + "sha256:714ada95beac179b4acefa4d2deff74bb7b2f22b0f699ac247d4cb67738d16d4", + "sha256:82ddc4691edbf49533d65582c249ba22c03fe96fbd3e92f7758dccef28e43834" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.9.48" + }, + "llama-index-llms-openai": { + "hashes": [ + "sha256:2bd98ff3abbb4aa0daed1fbe01d8b69f8270ab86c53f8da51fc9f148a672264c", + "sha256:f61b64a997892e424fb3cd547090d279c5b210ef15b614fc39de854d3ccaa7e7" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.19" + }, + "llama-index-multi-modal-llms-openai": { + "hashes": [ + "sha256:0b6950a6cf98d16ade7d3b9dd0821ecfe457ca103819ae6c3e66cfc9634ca646", + "sha256:10de75a877a444af35306385faad9b9f0624391e55309970564114a080a0578c" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.6" + }, + "llama-index-program-openai": { + "hashes": [ + "sha256:4660b338503537c5edca1e0dab606af6ce372b4f1b597e2833c6b602447c5d8d", + "sha256:c6a4980c5ea826088b28b4dee3367edb20221e6d05eb0e05019049190131d772" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.6" + }, + "llama-index-question-gen-openai": { + "hashes": [ + "sha256:1f83b49e8b2e665030d1ec8c54687d6985d9fa8426147b64e46628a9e489b302", + "sha256:4486198117a45457d2e036ae60b93af58052893cc7d78fa9b6f47dd47b81e2e1" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.3" + }, + "llama-index-readers-file": { + "hashes": [ + "sha256:37de54ad0cfbdc607c195532b9a292417a4714f57773570b87027b8dc381f0e2", + "sha256:a8d4a69a9ea659c14ebb22ca9a5560b9c7ec6f501e7f68f6c52f591374165376" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.22" + }, + "llama-index-readers-llama-parse": { + "hashes": [ + "sha256:78608b193c818894aefeee0aa303f02b7f80f2e4caf13866c2fd3b0b1023e2c0", + "sha256:c4914b37d12cceee56fbd185cca80f87d60acbf8ea7a73f9719610180be1fcdd" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.1.4" + }, + "llama-parse": { + "hashes": [ + "sha256:01836147b5238873b24a7dd41c5ab942b01b09b92d75570f30cf2861c084a0eb", + "sha256:c48c53a3080daeede293df620dddb1f381e084c31ee2dd44dce3f8615df723e8" + ], + "markers": "python_version < '4.0' and python_full_version >= '3.8.1'", + "version": "==0.4.3" + }, + "llamaindex-py-client": { + "hashes": [ + "sha256:73f74792bb8c092bae6dc626627a09ac13a099fa8d10f8fcc83e17a2b332cca7", + "sha256:fd9416fd78b97209bf323bc3c7fab314499778563e7274f10853ad560563d10e" + ], + "markers": "python_version >= '3.8' and python_version < '4'", + "version": "==0.1.19" + }, + "marshmallow": { + "hashes": [ + "sha256:70b54a6282f4704d12c0a41599682c5c5450e843b9ec406308653b47c59648a1", + "sha256:82408deadd8b33d56338d2182d455db632c6313aa2af61916672146bb32edc56" + ], + "markers": "python_version >= '3.8'", + "version": "==3.21.2" + }, + "multidict": { + "hashes": [ + "sha256:01265f5e40f5a17f8241d52656ed27192be03bfa8764d88e8220141d1e4b3556", + "sha256:0275e35209c27a3f7951e1ce7aaf93ce0d163b28948444bec61dd7badc6d3f8c", + "sha256:04bde7a7b3de05732a4eb39c94574db1ec99abb56162d6c520ad26f83267de29", + "sha256:04da1bb8c8dbadf2a18a452639771951c662c5ad03aefe4884775454be322c9b", + "sha256:09a892e4a9fb47331da06948690ae38eaa2426de97b4ccbfafbdcbe5c8f37ff8", + "sha256:0d63c74e3d7ab26de115c49bffc92cc77ed23395303d496eae515d4204a625e7", + "sha256:107c0cdefe028703fb5dafe640a409cb146d44a6ae201e55b35a4af8e95457dd", + "sha256:141b43360bfd3bdd75f15ed811850763555a251e38b2405967f8e25fb43f7d40", + "sha256:14c2976aa9038c2629efa2c148022ed5eb4cb939e15ec7aace7ca932f48f9ba6", + "sha256:19fe01cea168585ba0f678cad6f58133db2aa14eccaf22f88e4a6dccadfad8b3", + "sha256:1d147090048129ce3c453f0292e7697d333db95e52616b3793922945804a433c", + "sha256:1d9ea7a7e779d7a3561aade7d596649fbecfa5c08a7674b11b423783217933f9", + "sha256:215ed703caf15f578dca76ee6f6b21b7603791ae090fbf1ef9d865571039ade5", + "sha256:21fd81c4ebdb4f214161be351eb5bcf385426bf023041da2fd9e60681f3cebae", + "sha256:220dd781e3f7af2c2c1053da9fa96d9cf3072ca58f057f4c5adaaa1cab8fc442", + "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9", + "sha256:29bfeb0dff5cb5fdab2023a7a9947b3b4af63e9c47cae2a10ad58394b517fddc", + "sha256:2f4848aa3baa109e6ab81fe2006c77ed4d3cd1e0ac2c1fbddb7b1277c168788c", + "sha256:2faa5ae9376faba05f630d7e5e6be05be22913782b927b19d12b8145968a85ea", + "sha256:2ffc42c922dbfddb4a4c3b438eb056828719f07608af27d163191cb3e3aa6cc5", + "sha256:37b15024f864916b4951adb95d3a80c9431299080341ab9544ed148091b53f50", + "sha256:3cc2ad10255f903656017363cd59436f2111443a76f996584d1077e43ee51182", + "sha256:3d25f19500588cbc47dc19081d78131c32637c25804df8414463ec908631e453", + "sha256:403c0911cd5d5791605808b942c88a8155c2592e05332d2bf78f18697a5fa15e", + "sha256:411bf8515f3be9813d06004cac41ccf7d1cd46dfe233705933dd163b60e37600", + "sha256:425bf820055005bfc8aa9a0b99ccb52cc2f4070153e34b701acc98d201693733", + "sha256:435a0984199d81ca178b9ae2c26ec3d49692d20ee29bc4c11a2a8d4514c67eda", + "sha256:4a6a4f196f08c58c59e0b8ef8ec441d12aee4125a7d4f4fef000ccb22f8d7241", + "sha256:4cc0ef8b962ac7a5e62b9e826bd0cd5040e7d401bc45a6835910ed699037a461", + "sha256:51d035609b86722963404f711db441cf7134f1889107fb171a970c9701f92e1e", + "sha256:53689bb4e102200a4fafa9de9c7c3c212ab40a7ab2c8e474491914d2305f187e", + "sha256:55205d03e8a598cfc688c71ca8ea5f66447164efff8869517f175ea632c7cb7b", + "sha256:5c0631926c4f58e9a5ccce555ad7747d9a9f8b10619621f22f9635f069f6233e", + "sha256:5cb241881eefd96b46f89b1a056187ea8e9ba14ab88ba632e68d7a2ecb7aadf7", + "sha256:60d698e8179a42ec85172d12f50b1668254628425a6bd611aba022257cac1386", + "sha256:612d1156111ae11d14afaf3a0669ebf6c170dbb735e510a7438ffe2369a847fd", + "sha256:6214c5a5571802c33f80e6c84713b2c79e024995b9c5897f794b43e714daeec9", + "sha256:6939c95381e003f54cd4c5516740faba40cf5ad3eeff460c3ad1d3e0ea2549bf", + "sha256:69db76c09796b313331bb7048229e3bee7928eb62bab5e071e9f7fcc4879caee", + "sha256:6bf7a982604375a8d49b6cc1b781c1747f243d91b81035a9b43a2126c04766f5", + "sha256:766c8f7511df26d9f11cd3a8be623e59cca73d44643abab3f8c8c07620524e4a", + "sha256:76c0de87358b192de7ea9649beb392f107dcad9ad27276324c24c91774ca5271", + "sha256:76f067f5121dcecf0d63a67f29080b26c43c71a98b10c701b0677e4a065fbd54", + "sha256:7901c05ead4b3fb75113fb1dd33eb1253c6d3ee37ce93305acd9d38e0b5f21a4", + "sha256:79660376075cfd4b2c80f295528aa6beb2058fd289f4c9252f986751a4cd0496", + "sha256:79a6d2ba910adb2cbafc95dad936f8b9386e77c84c35bc0add315b856d7c3abb", + "sha256:7afcdd1fc07befad18ec4523a782cde4e93e0a2bf71239894b8d61ee578c1319", + "sha256:7be7047bd08accdb7487737631d25735c9a04327911de89ff1b26b81745bd4e3", + "sha256:7c6390cf87ff6234643428991b7359b5f59cc15155695deb4eda5c777d2b880f", + "sha256:7df704ca8cf4a073334e0427ae2345323613e4df18cc224f647f251e5e75a527", + "sha256:85f67aed7bb647f93e7520633d8f51d3cbc6ab96957c71272b286b2f30dc70ed", + "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604", + "sha256:92d16a3e275e38293623ebf639c471d3e03bb20b8ebb845237e0d3664914caef", + "sha256:99f60d34c048c5c2fabc766108c103612344c46e35d4ed9ae0673d33c8fb26e8", + "sha256:9fe7b0653ba3d9d65cbe7698cca585bf0f8c83dbbcc710db9c90f478e175f2d5", + "sha256:a3145cb08d8625b2d3fee1b2d596a8766352979c9bffe5d7833e0503d0f0b5e5", + "sha256:aeaf541ddbad8311a87dd695ed9642401131ea39ad7bc8cf3ef3967fd093b626", + "sha256:b55358304d7a73d7bdf5de62494aaf70bd33015831ffd98bc498b433dfe5b10c", + "sha256:b82cc8ace10ab5bd93235dfaab2021c70637005e1ac787031f4d1da63d493c1d", + "sha256:c0868d64af83169e4d4152ec612637a543f7a336e4a307b119e98042e852ad9c", + "sha256:c1c1496e73051918fcd4f58ff2e0f2f3066d1c76a0c6aeffd9b45d53243702cc", + "sha256:c9bf56195c6bbd293340ea82eafd0071cb3d450c703d2c93afb89f93b8386ccc", + "sha256:cbebcd5bcaf1eaf302617c114aa67569dd3f090dd0ce8ba9e35e9985b41ac35b", + "sha256:cd6c8fca38178e12c00418de737aef1261576bd1b6e8c6134d3e729a4e858b38", + "sha256:ceb3b7e6a0135e092de86110c5a74e46bda4bd4fbfeeb3a3bcec79c0f861e450", + "sha256:cf590b134eb70629e350691ecca88eac3e3b8b3c86992042fb82e3cb1830d5e1", + "sha256:d3eb1ceec286eba8220c26f3b0096cf189aea7057b6e7b7a2e60ed36b373b77f", + "sha256:d65f25da8e248202bd47445cec78e0025c0fe7582b23ec69c3b27a640dd7a8e3", + "sha256:d6f6d4f185481c9669b9447bf9d9cf3b95a0e9df9d169bbc17e363b7d5487755", + "sha256:d84a5c3a5f7ce6db1f999fb9438f686bc2e09d38143f2d93d8406ed2dd6b9226", + "sha256:d946b0a9eb8aaa590df1fe082cee553ceab173e6cb5b03239716338629c50c7a", + "sha256:dce1c6912ab9ff5f179eaf6efe7365c1f425ed690b03341911bf4939ef2f3046", + "sha256:de170c7b4fe6859beb8926e84f7d7d6c693dfe8e27372ce3b76f01c46e489fcf", + "sha256:e02021f87a5b6932fa6ce916ca004c4d441509d33bbdbeca70d05dff5e9d2479", + "sha256:e030047e85cbcedbfc073f71836d62dd5dadfbe7531cae27789ff66bc551bd5e", + "sha256:e0e79d91e71b9867c73323a3444724d496c037e578a0e1755ae159ba14f4f3d1", + "sha256:e4428b29611e989719874670fd152b6625500ad6c686d464e99f5aaeeaca175a", + "sha256:e4972624066095e52b569e02b5ca97dbd7a7ddd4294bf4e7247d52635630dd83", + "sha256:e7be68734bd8c9a513f2b0cfd508802d6609da068f40dc57d4e3494cefc92929", + "sha256:e8e94e6912639a02ce173341ff62cc1201232ab86b8a8fcc05572741a5dc7d93", + "sha256:ea1456df2a27c73ce51120fa2f519f1bea2f4a03a917f4a43c8707cf4cbbae1a", + "sha256:ebd8d160f91a764652d3e51ce0d2956b38efe37c9231cd82cfc0bed2e40b581c", + "sha256:eca2e9d0cc5a889850e9bbd68e98314ada174ff6ccd1129500103df7a94a7a44", + "sha256:edd08e6f2f1a390bf137080507e44ccc086353c8e98c657e666c017718561b89", + "sha256:f285e862d2f153a70586579c15c44656f888806ed0e5b56b64489afe4a2dbfba", + "sha256:f2a1dee728b52b33eebff5072817176c172050d44d67befd681609b4746e1c2e", + "sha256:f7e301075edaf50500f0b341543c41194d8df3ae5caf4702f2095f3ca73dd8da", + "sha256:fb616be3538599e797a2017cccca78e354c767165e8858ab5116813146041a24", + "sha256:fce28b3c8a81b6b36dfac9feb1de115bab619b3c13905b419ec71d03a3fc1423", + "sha256:fe5d7785250541f7f5019ab9cba2c71169dc7d74d0f45253f8313f436458a4ef" + ], + "markers": "python_version >= '3.7'", + "version": "==6.0.5" + }, + "mypy-extensions": { + "hashes": [ + "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", + "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" + ], + "markers": "python_version >= '3.5'", + "version": "==1.0.0" + }, + "nest-asyncio": { + "hashes": [ + "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", + "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c" + ], + "markers": "python_version >= '3.5'", + "version": "==1.6.0" + }, + "networkx": { + "hashes": [ + "sha256:0c127d8b2f4865f59ae9cb8aafcd60b5c70f3241ebd66f7defad7c4ab90126c9", + "sha256:28575580c6ebdaf4505b22c6256a2b9de86b316dc63ba9e93abde3d78dfdbcf2" + ], + "markers": "python_version >= '3.10'", + "version": "==3.3" + }, + "nltk": { + "hashes": [ + "sha256:1834da3d0682cba4f2cede2f9aad6b0fafb6461ba451db0efb6f9c39798d64d3", + "sha256:fd5c9109f976fa86bcadba8f91e47f5e9293bd034474752e92a520f81c93dda5" + ], + "markers": "python_version >= '3.7'", + "version": "==3.8.1" + }, + "numpy": { + "hashes": [ + "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", + "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", + "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", + "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", + "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", + "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", + "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", + "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", + "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", + "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", + "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", + "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", + "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", + "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", + "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", + "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", + "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", + "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", + "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", + "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", + "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", + "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", + "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", + "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", + "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", + "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", + "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", + "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", + "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", + "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", + "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", + "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", + "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", + "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", + "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", + "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f" + ], + "markers": "python_version >= '3.9'", + "version": "==1.26.4" + }, + "openai": { + "hashes": [ + "sha256:aa2f381f476f5fa4df8728a34a3e454c321caa064b7b68ab6e9daa1ed082dbf9", + "sha256:f561ce86f4b4008eb6c78622d641e4b7e1ab8a8cdb15d2f0b2a49942d40d21a8" + ], + "index": "pypi", + "markers": "python_full_version >= '3.7.1'", + "version": "==1.25.1" + }, + "opentelemetry-api": { + "hashes": [ + "sha256:0f2c363d98d10d1ce93330015ca7fd3a65f60be64e05e30f557c61de52c80ca2", + "sha256:42719f10ce7b5a9a73b10a4baf620574fb8ad495a9cbe5c18d76b75d8689c67e" + ], + "markers": "python_version >= '3.8'", + "version": "==1.24.0" + }, + "packaging": { + "hashes": [ + "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", + "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" + ], + "markers": "python_version >= '3.7'", + "version": "==24.0" + }, + "pandas": { + "hashes": [ + "sha256:001910ad31abc7bf06f49dcc903755d2f7f3a9186c0c040b827e522e9cef0863", + "sha256:0ca6377b8fca51815f382bd0b697a0814c8bda55115678cbc94c30aacbb6eff2", + "sha256:0cace394b6ea70c01ca1595f839cf193df35d1575986e484ad35c4aeae7266c1", + "sha256:1cb51fe389360f3b5a4d57dbd2848a5f033350336ca3b340d1c53a1fad33bcad", + "sha256:2925720037f06e89af896c70bca73459d7e6a4be96f9de79e2d440bd499fe0db", + "sha256:3e374f59e440d4ab45ca2fffde54b81ac3834cf5ae2cdfa69c90bc03bde04d76", + "sha256:40ae1dffb3967a52203105a077415a86044a2bea011b5f321c6aa64b379a3f51", + "sha256:43498c0bdb43d55cb162cdc8c06fac328ccb5d2eabe3cadeb3529ae6f0517c32", + "sha256:4abfe0be0d7221be4f12552995e58723c7422c80a659da13ca382697de830c08", + "sha256:58b84b91b0b9f4bafac2a0ac55002280c094dfc6402402332c0913a59654ab2b", + "sha256:640cef9aa381b60e296db324337a554aeeb883ead99dc8f6c18e81a93942f5f4", + "sha256:66b479b0bd07204e37583c191535505410daa8df638fd8e75ae1b383851fe921", + "sha256:696039430f7a562b74fa45f540aca068ea85fa34c244d0deee539cb6d70aa288", + "sha256:6d2123dc9ad6a814bcdea0f099885276b31b24f7edf40f6cdbc0912672e22eee", + "sha256:8635c16bf3d99040fdf3ca3db669a7250ddf49c55dc4aa8fe0ae0fa8d6dcc1f0", + "sha256:873d13d177501a28b2756375d59816c365e42ed8417b41665f346289adc68d24", + "sha256:8e5a0b00e1e56a842f922e7fae8ae4077aee4af0acb5ae3622bd4b4c30aedf99", + "sha256:8e90497254aacacbc4ea6ae5e7a8cd75629d6ad2b30025a4a8b09aa4faf55151", + "sha256:9057e6aa78a584bc93a13f0a9bf7e753a5e9770a30b4d758b8d5f2a62a9433cd", + "sha256:90c6fca2acf139569e74e8781709dccb6fe25940488755716d1d354d6bc58bce", + "sha256:92fd6b027924a7e178ac202cfbe25e53368db90d56872d20ffae94b96c7acc57", + "sha256:9dfde2a0ddef507a631dc9dc4af6a9489d5e2e740e226ad426a05cabfbd7c8ef", + "sha256:9e79019aba43cb4fda9e4d983f8e88ca0373adbb697ae9c6c43093218de28b54", + "sha256:a77e9d1c386196879aa5eb712e77461aaee433e54c68cf253053a73b7e49c33a", + "sha256:c7adfc142dac335d8c1e0dcbd37eb8617eac386596eb9e1a1b77791cf2498238", + "sha256:d187d355ecec3629624fccb01d104da7d7f391db0311145817525281e2804d23", + "sha256:ddf818e4e6c7c6f4f7c8a12709696d193976b591cc7dc50588d3d1a6b5dc8772", + "sha256:e9b79011ff7a0f4b1d6da6a61aa1aa604fb312d6647de5bad20013682d1429ce", + "sha256:eee3a87076c0756de40b05c5e9a6069c035ba43e8dd71c379e68cab2c20f16ad" + ], + "markers": "python_version >= '3.9'", + "version": "==2.2.2" + }, + "pillow": { + "hashes": [ + "sha256:048ad577748b9fa4a99a0548c64f2cb8d672d5bf2e643a739ac8faff1164238c", + "sha256:048eeade4c33fdf7e08da40ef402e748df113fd0b4584e32c4af74fe78baaeb2", + "sha256:0ba26351b137ca4e0db0342d5d00d2e355eb29372c05afd544ebf47c0956ffeb", + "sha256:0ea2a783a2bdf2a561808fe4a7a12e9aa3799b701ba305de596bc48b8bdfce9d", + "sha256:1530e8f3a4b965eb6a7785cf17a426c779333eb62c9a7d1bbcf3ffd5bf77a4aa", + "sha256:16563993329b79513f59142a6b02055e10514c1a8e86dca8b48a893e33cf91e3", + "sha256:19aeb96d43902f0a783946a0a87dbdad5c84c936025b8419da0a0cd7724356b1", + "sha256:1a1d1915db1a4fdb2754b9de292642a39a7fb28f1736699527bb649484fb966a", + "sha256:1b87bd9d81d179bd8ab871603bd80d8645729939f90b71e62914e816a76fc6bd", + "sha256:1dfc94946bc60ea375cc39cff0b8da6c7e5f8fcdc1d946beb8da5c216156ddd8", + "sha256:2034f6759a722da3a3dbd91a81148cf884e91d1b747992ca288ab88c1de15999", + "sha256:261ddb7ca91fcf71757979534fb4c128448b5b4c55cb6152d280312062f69599", + "sha256:2ed854e716a89b1afcedea551cd85f2eb2a807613752ab997b9974aaa0d56936", + "sha256:3102045a10945173d38336f6e71a8dc71bcaeed55c3123ad4af82c52807b9375", + "sha256:339894035d0ede518b16073bdc2feef4c991ee991a29774b33e515f1d308e08d", + "sha256:412444afb8c4c7a6cc11a47dade32982439925537e483be7c0ae0cf96c4f6a0b", + "sha256:4203efca580f0dd6f882ca211f923168548f7ba334c189e9eab1178ab840bf60", + "sha256:45ebc7b45406febf07fef35d856f0293a92e7417ae7933207e90bf9090b70572", + "sha256:4b5ec25d8b17217d635f8935dbc1b9aa5907962fae29dff220f2659487891cd3", + "sha256:4c8e73e99da7db1b4cad7f8d682cf6abad7844da39834c288fbfa394a47bbced", + "sha256:4e6f7d1c414191c1199f8996d3f2282b9ebea0945693fb67392c75a3a320941f", + "sha256:4eaa22f0d22b1a7e93ff0a596d57fdede2e550aecffb5a1ef1106aaece48e96b", + "sha256:50b8eae8f7334ec826d6eeffaeeb00e36b5e24aa0b9df322c247539714c6df19", + "sha256:50fd3f6b26e3441ae07b7c979309638b72abc1a25da31a81a7fbd9495713ef4f", + "sha256:51243f1ed5161b9945011a7360e997729776f6e5d7005ba0c6879267d4c5139d", + "sha256:5d512aafa1d32efa014fa041d38868fda85028e3f930a96f85d49c7d8ddc0383", + "sha256:5f77cf66e96ae734717d341c145c5949c63180842a545c47a0ce7ae52ca83795", + "sha256:6b02471b72526ab8a18c39cb7967b72d194ec53c1fd0a70b050565a0f366d355", + "sha256:6fb1b30043271ec92dc65f6d9f0b7a830c210b8a96423074b15c7bc999975f57", + "sha256:7161ec49ef0800947dc5570f86568a7bb36fa97dd09e9827dc02b718c5643f09", + "sha256:72d622d262e463dfb7595202d229f5f3ab4b852289a1cd09650362db23b9eb0b", + "sha256:74d28c17412d9caa1066f7a31df8403ec23d5268ba46cd0ad2c50fb82ae40462", + "sha256:78618cdbccaa74d3f88d0ad6cb8ac3007f1a6fa5c6f19af64b55ca170bfa1edf", + "sha256:793b4e24db2e8742ca6423d3fde8396db336698c55cd34b660663ee9e45ed37f", + "sha256:798232c92e7665fe82ac085f9d8e8ca98826f8e27859d9a96b41d519ecd2e49a", + "sha256:81d09caa7b27ef4e61cb7d8fbf1714f5aec1c6b6c5270ee53504981e6e9121ad", + "sha256:8ab74c06ffdab957d7670c2a5a6e1a70181cd10b727cd788c4dd9005b6a8acd9", + "sha256:8eb0908e954d093b02a543dc963984d6e99ad2b5e36503d8a0aaf040505f747d", + "sha256:90b9e29824800e90c84e4022dd5cc16eb2d9605ee13f05d47641eb183cd73d45", + "sha256:9797a6c8fe16f25749b371c02e2ade0efb51155e767a971c61734b1bf6293994", + "sha256:9d2455fbf44c914840c793e89aa82d0e1763a14253a000743719ae5946814b2d", + "sha256:9d3bea1c75f8c53ee4d505c3e67d8c158ad4df0d83170605b50b64025917f338", + "sha256:9e2ec1e921fd07c7cda7962bad283acc2f2a9ccc1b971ee4b216b75fad6f0463", + "sha256:9e91179a242bbc99be65e139e30690e081fe6cb91a8e77faf4c409653de39451", + "sha256:a0eaa93d054751ee9964afa21c06247779b90440ca41d184aeb5d410f20ff591", + "sha256:a2c405445c79c3f5a124573a051062300936b0281fee57637e706453e452746c", + "sha256:aa7e402ce11f0885305bfb6afb3434b3cd8f53b563ac065452d9d5654c7b86fd", + "sha256:aff76a55a8aa8364d25400a210a65ff59d0168e0b4285ba6bf2bd83cf675ba32", + "sha256:b09b86b27a064c9624d0a6c54da01c1beaf5b6cadfa609cf63789b1d08a797b9", + "sha256:b14f16f94cbc61215115b9b1236f9c18403c15dd3c52cf629072afa9d54c1cbf", + "sha256:b50811d664d392f02f7761621303eba9d1b056fb1868c8cdf4231279645c25f5", + "sha256:b7bc2176354defba3edc2b9a777744462da2f8e921fbaf61e52acb95bafa9828", + "sha256:c78e1b00a87ce43bb37642c0812315b411e856a905d58d597750eb79802aaaa3", + "sha256:c83341b89884e2b2e55886e8fbbf37c3fa5efd6c8907124aeb72f285ae5696e5", + "sha256:ca2870d5d10d8726a27396d3ca4cf7976cec0f3cb706debe88e3a5bd4610f7d2", + "sha256:ccce24b7ad89adb5a1e34a6ba96ac2530046763912806ad4c247356a8f33a67b", + "sha256:cd5e14fbf22a87321b24c88669aad3a51ec052eb145315b3da3b7e3cc105b9a2", + "sha256:ce49c67f4ea0609933d01c0731b34b8695a7a748d6c8d186f95e7d085d2fe475", + "sha256:d33891be6df59d93df4d846640f0e46f1a807339f09e79a8040bc887bdcd7ed3", + "sha256:d3b2348a78bc939b4fed6552abfd2e7988e0f81443ef3911a4b8498ca084f6eb", + "sha256:d886f5d353333b4771d21267c7ecc75b710f1a73d72d03ca06df49b09015a9ef", + "sha256:d93480005693d247f8346bc8ee28c72a2191bdf1f6b5db469c096c0c867ac015", + "sha256:dc1a390a82755a8c26c9964d457d4c9cbec5405896cba94cf51f36ea0d855002", + "sha256:dd78700f5788ae180b5ee8902c6aea5a5726bac7c364b202b4b3e3ba2d293170", + "sha256:e46f38133e5a060d46bd630faa4d9fa0202377495df1f068a8299fd78c84de84", + "sha256:e4b878386c4bf293578b48fc570b84ecfe477d3b77ba39a6e87150af77f40c57", + "sha256:f0d0591a0aeaefdaf9a5e545e7485f89910c977087e7de2b6c388aec32011e9f", + "sha256:fdcbb4068117dfd9ce0138d068ac512843c52295ed996ae6dd1faf537b6dbc27", + "sha256:ff61bfd9253c3915e6d41c651d5f962da23eda633cf02262990094a18a55371a" + ], + "markers": "python_version >= '3.8'", + "version": "==10.3.0" + }, + "protobuf": { + "hashes": [ + "sha256:38aa5f535721d5bb99861166c445c4105c4e285c765fbb2ac10f116e32dcd46d", + "sha256:3c388ea6ddfe735f8cf69e3f7dc7611e73107b60bdfcf5d0f024c3ccd3794e23", + "sha256:7ee014c2c87582e101d6b54260af03b6596728505c79f17c8586e7523aaa8f8c", + "sha256:8ca2a1d97c290ec7b16e4e5dff2e5ae150cc1582f55b5ab300d45cb0dfa90e51", + "sha256:9b557c317ebe6836835ec4ef74ec3e994ad0894ea424314ad3552bc6e8835b4e", + "sha256:b9ba3ca83c2e31219ffbeb9d76b63aad35a3eb1544170c55336993d7a18ae72c", + "sha256:d693d2504ca96750d92d9de8a103102dd648fda04540495535f0fec7577ed8fc", + "sha256:da612f2720c0183417194eeaa2523215c4fcc1a1949772dc65f05047e08d5932", + "sha256:e6039957449cb918f331d32ffafa8eb9255769c96aa0560d9a5bf0b4e00a2a33", + "sha256:f7417703f841167e5a27d48be13389d52ad705ec09eade63dfc3180a959215d7", + "sha256:fbfe61e7ee8c1860855696e3ac6cfd1b01af5498facc6834fcc345c9684fb2ca" + ], + "markers": "python_version >= '3.8'", + "version": "==5.26.1" + }, + "pydantic": { + "hashes": [ + "sha256:e029badca45266732a9a79898a15ae2e8b14840b1eabbb25844be28f0b33f3d5", + "sha256:e9dbb5eada8abe4d9ae5f46b9939aead650cd2b68f249bb3a8139dbe125803cc" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==2.7.1" + }, + "pydantic-core": { + "hashes": [ + "sha256:0098300eebb1c837271d3d1a2cd2911e7c11b396eac9661655ee524a7f10587b", + "sha256:042473b6280246b1dbf530559246f6842b56119c2926d1e52b631bdc46075f2a", + "sha256:05b7133a6e6aeb8df37d6f413f7705a37ab4031597f64ab56384c94d98fa0e90", + "sha256:0680b1f1f11fda801397de52c36ce38ef1c1dc841a0927a94f226dea29c3ae3d", + "sha256:0d69b4c2f6bb3e130dba60d34c0845ba31b69babdd3f78f7c0c8fae5021a253e", + "sha256:1404c69d6a676245199767ba4f633cce5f4ad4181f9d0ccb0577e1f66cf4c46d", + "sha256:182245ff6b0039e82b6bb585ed55a64d7c81c560715d1bad0cbad6dfa07b4027", + "sha256:1a388a77e629b9ec814c1b1e6b3b595fe521d2cdc625fcca26fbc2d44c816804", + "sha256:1d90c3265ae107f91a4f279f4d6f6f1d4907ac76c6868b27dc7fb33688cfb347", + "sha256:20aca1e2298c56ececfd8ed159ae4dde2df0781988c97ef77d5c16ff4bd5b400", + "sha256:219da3f096d50a157f33645a1cf31c0ad1fe829a92181dd1311022f986e5fbe3", + "sha256:22057013c8c1e272eb8d0eebc796701167d8377441ec894a8fed1af64a0bf399", + "sha256:223ee893d77a310a0391dca6df00f70bbc2f36a71a895cecd9a0e762dc37b349", + "sha256:224c421235f6102e8737032483f43c1a8cfb1d2f45740c44166219599358c2cd", + "sha256:2334ce8c673ee93a1d6a65bd90327588387ba073c17e61bf19b4fd97d688d63c", + "sha256:269322dcc3d8bdb69f054681edff86276b2ff972447863cf34c8b860f5188e2e", + "sha256:2728b01246a3bba6de144f9e3115b532ee44bd6cf39795194fb75491824a1413", + "sha256:2b8ed04b3582771764538f7ee7001b02e1170223cf9b75dff0bc698fadb00cf3", + "sha256:2e29d20810dfc3043ee13ac7d9e25105799817683348823f305ab3f349b9386e", + "sha256:36789b70d613fbac0a25bb07ab3d9dba4d2e38af609c020cf4d888d165ee0bf3", + "sha256:390193c770399861d8df9670fb0d1874f330c79caaca4642332df7c682bf6b91", + "sha256:3a6515ebc6e69d85502b4951d89131ca4e036078ea35533bb76327f8424531ce", + "sha256:3f9a801e7c8f1ef8718da265bba008fa121243dfe37c1cea17840b0944dfd72c", + "sha256:43f0f463cf89ace478de71a318b1b4f05ebc456a9b9300d027b4b57c1a2064fb", + "sha256:4456f2dca97c425231d7315737d45239b2b51a50dc2b6f0c2bb181fce6207664", + "sha256:470b94480bb5ee929f5acba6995251ada5e059a5ef3e0dfc63cca287283ebfa6", + "sha256:4774f3184d2ef3e14e8693194f661dea5a4d6ca4e3dc8e39786d33a94865cefd", + "sha256:4b4356d3538c3649337df4074e81b85f0616b79731fe22dd11b99499b2ebbdf3", + "sha256:553ef617b6836fc7e4df130bb851e32fe357ce36336d897fd6646d6058d980af", + "sha256:6132dd3bd52838acddca05a72aafb6eab6536aa145e923bb50f45e78b7251043", + "sha256:6a46e22a707e7ad4484ac9ee9f290f9d501df45954184e23fc29408dfad61350", + "sha256:6e5c584d357c4e2baf0ff7baf44f4994be121e16a2c88918a5817331fc7599d7", + "sha256:75250dbc5290e3f1a0f4618db35e51a165186f9034eff158f3d490b3fed9f8a0", + "sha256:75f7e9488238e920ab6204399ded280dc4c307d034f3924cd7f90a38b1829563", + "sha256:78363590ef93d5d226ba21a90a03ea89a20738ee5b7da83d771d283fd8a56761", + "sha256:7ca4ae5a27ad7a4ee5170aebce1574b375de390bc01284f87b18d43a3984df72", + "sha256:800d60565aec896f25bc3cfa56d2277d52d5182af08162f7954f938c06dc4ee3", + "sha256:82d5d4d78e4448683cb467897fe24e2b74bb7b973a541ea1dcfec1d3cbce39fb", + "sha256:852e966fbd035a6468fc0a3496589b45e2208ec7ca95c26470a54daed82a0788", + "sha256:868649da93e5a3d5eacc2b5b3b9235c98ccdbfd443832f31e075f54419e1b96b", + "sha256:886eec03591b7cf058467a70a87733b35f44707bd86cf64a615584fd72488b7c", + "sha256:8b172601454f2d7701121bbec3425dd71efcb787a027edf49724c9cefc14c038", + "sha256:95b9d5e72481d3780ba3442eac863eae92ae43a5f3adb5b4d0a1de89d42bb250", + "sha256:98758d627ff397e752bc339272c14c98199c613f922d4a384ddc07526c86a2ec", + "sha256:997abc4df705d1295a42f95b4eec4950a37ad8ae46d913caeee117b6b198811c", + "sha256:9b5155ff768083cb1d62f3e143b49a8a3432e6789a3abee8acd005c3c7af1c74", + "sha256:9e08e867b306f525802df7cd16c44ff5ebbe747ff0ca6cf3fde7f36c05a59a81", + "sha256:9fdad8e35f278b2c3eb77cbdc5c0a49dada440657bf738d6905ce106dc1de439", + "sha256:a1874c6dd4113308bd0eb568418e6114b252afe44319ead2b4081e9b9521fe75", + "sha256:a8309f67285bdfe65c372ea3722b7a5642680f3dba538566340a9d36e920b5f0", + "sha256:ae0a8a797a5e56c053610fa7be147993fe50960fa43609ff2a9552b0e07013e8", + "sha256:b14d82cdb934e99dda6d9d60dc84a24379820176cc4a0d123f88df319ae9c150", + "sha256:b1bd7e47b1558ea872bd16c8502c414f9e90dcf12f1395129d7bb42a09a95438", + "sha256:b3ef08e20ec49e02d5c6717a91bb5af9b20f1805583cb0adfe9ba2c6b505b5ae", + "sha256:b89ed9eb7d616ef5714e5590e6cf7f23b02d0d539767d33561e3675d6f9e3857", + "sha256:c4fcf5cd9c4b655ad666ca332b9a081112cd7a58a8b5a6ca7a3104bc950f2038", + "sha256:c6fdc8627910eed0c01aed6a390a252fe3ea6d472ee70fdde56273f198938374", + "sha256:c9bd70772c720142be1020eac55f8143a34ec9f82d75a8e7a07852023e46617f", + "sha256:ca7b0c1f1c983e064caa85f3792dd2fe3526b3505378874afa84baf662e12241", + "sha256:cbca948f2d14b09d20268cda7b0367723d79063f26c4ffc523af9042cad95592", + "sha256:cc1cfd88a64e012b74e94cd00bbe0f9c6df57049c97f02bb07d39e9c852e19a4", + "sha256:ccdd111c03bfd3666bd2472b674c6899550e09e9f298954cfc896ab92b5b0e6d", + "sha256:cfeecd1ac6cc1fb2692c3d5110781c965aabd4ec5d32799773ca7b1456ac636b", + "sha256:d4d938ec0adf5167cb335acb25a4ee69a8107e4984f8fbd2e897021d9e4ca21b", + "sha256:d7d904828195733c183d20a54230c0df0eb46ec746ea1a666730787353e87182", + "sha256:d91cb5ea8b11607cc757675051f61b3d93f15eca3cefb3e6c704a5d6e8440f4e", + "sha256:d9319e499827271b09b4e411905b24a426b8fb69464dfa1696258f53a3334641", + "sha256:e0e8b1be28239fc64a88a8189d1df7fad8be8c1ae47fcc33e43d4be15f99cc70", + "sha256:e18609ceaa6eed63753037fc06ebb16041d17d28199ae5aba0052c51449650a9", + "sha256:e1b395e58b10b73b07b7cf740d728dd4ff9365ac46c18751bf8b3d8cca8f625a", + "sha256:e23ec367a948b6d812301afc1b13f8094ab7b2c280af66ef450efc357d2ae543", + "sha256:e25add29b8f3b233ae90ccef2d902d0ae0432eb0d45370fe315d1a5cf231004b", + "sha256:e6dac87ddb34aaec85f873d737e9d06a3555a1cc1a8e0c44b7f8d5daeb89d86f", + "sha256:ef26c9e94a8c04a1b2924149a9cb081836913818e55681722d7f29af88fe7b38", + "sha256:eff2de745698eb46eeb51193a9f41d67d834d50e424aef27df2fcdee1b153845", + "sha256:f0a21cbaa69900cbe1a2e7cad2aa74ac3cf21b10c3efb0fa0b80305274c0e8a2", + "sha256:f459a5ce8434614dfd39bbebf1041952ae01da6bed9855008cb33b875cb024c0", + "sha256:f93a8a2e3938ff656a7c1bc57193b1319960ac015b6e87d76c76bf14fe0244b4", + "sha256:fb2bd7be70c0fe4dfd32c951bc813d9fe6ebcbfdd15a07527796c8204bd36242" + ], + "markers": "python_version >= '3.8'", + "version": "==2.18.2" + }, + "pypdf": { + "hashes": [ + "sha256:dc035581664e0ad717e3492acebc1a5fc23dba759e788e3d4a9fc9b1a32e72c1", + "sha256:fe63f3f7d1dcda1c9374421a94c1bba6c6f8c4a62173a59b64ffd52058f846b1" + ], + "markers": "python_version >= '3.6'", + "version": "==4.2.0" + }, + "python-dateutil": { + "hashes": [ + "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", + "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.9.0.post0" + }, + "python-dotenv": { + "hashes": [ + "sha256:e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca", + "sha256:f7b63ef50f1b690dddf550d03497b66d609393b40b564ed0d674909a68ebf16a" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==1.0.1" + }, + "pytz": { + "hashes": [ + "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812", + "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319" + ], + "version": "==2024.1" + }, + "pyyaml": { + "hashes": [ + "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5", + "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc", + "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df", + "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741", + "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206", + "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27", + "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595", + "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62", + "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98", + "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696", + "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290", + "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9", + "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d", + "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6", + "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867", + "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47", + "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486", + "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6", + "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3", + "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007", + "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938", + "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0", + "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c", + "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735", + "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d", + "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28", + "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4", + "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba", + "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8", + "sha256:a08c6f0fe150303c1c6b71ebcd7213c2858041a7e01975da3a99aed1e7a378ef", + "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5", + "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd", + "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3", + "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0", + "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515", + "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c", + "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c", + "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924", + "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34", + "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43", + "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859", + "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673", + "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54", + "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a", + "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b", + "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab", + "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa", + "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c", + "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585", + "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d", + "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f" + ], + "markers": "python_version >= '3.6'", + "version": "==6.0.1" + }, + "regex": { + "hashes": [ + "sha256:031219782d97550c2098d9a68ce9e9eaefe67d2d81d8ff84c8354f9c009e720c", + "sha256:0709ba544cf50bd5cb843df4b8bb6701bae2b70a8e88da9add8386cbca5c1385", + "sha256:0a9f89d7db5ef6bdf53e5cc8e6199a493d0f1374b3171796b464a74ebe8e508a", + "sha256:0bc94873ba11e34837bffd7e5006703abeffc4514e2f482022f46ce05bd25e67", + "sha256:0ce56a923f4c01d7568811bfdffe156268c0a7aae8a94c902b92fe34c4bde785", + "sha256:0faecb6d5779753a6066a3c7a0471a8d29fe25d9981ca9e552d6d1b8f8b6a594", + "sha256:1118ba9def608250250f4b3e3f48c62f4562ba16ca58ede491b6e7554bfa09ff", + "sha256:12446827f43c7881decf2c126762e11425de5eb93b3b0d8b581344c16db7047a", + "sha256:14905ed75c7a6edf423eb46c213ed3f4507c38115f1ed3c00f4ec9eafba50e58", + "sha256:15e593386ec6331e0ab4ac0795b7593f02ab2f4b30a698beb89fbdc34f92386a", + "sha256:160ba087232c5c6e2a1e7ad08bd3a3f49b58c815be0504d8c8aacfb064491cd8", + "sha256:161a206c8f3511e2f5fafc9142a2cc25d7fe9a1ec5ad9b4ad2496a7c33e1c5d2", + "sha256:169fd0acd7a259f58f417e492e93d0e15fc87592cd1e971c8c533ad5703b5830", + "sha256:193b7c6834a06f722f0ce1ba685efe80881de7c3de31415513862f601097648c", + "sha256:1a3903128f9e17a500618e80c68165c78c741ebb17dd1a0b44575f92c3c68b02", + "sha256:1d5bd666466c8f00a06886ce1397ba8b12371c1f1c6d1bef11013e9e0a1464a8", + "sha256:224a9269f133564109ce668213ef3cb32bc72ccf040b0b51c72a50e569e9dc9e", + "sha256:236cace6c1903effd647ed46ce6dd5d76d54985fc36dafc5256032886736c85d", + "sha256:249fbcee0a277c32a3ce36d8e36d50c27c968fdf969e0fbe342658d4e010fbc8", + "sha256:29d839829209f3c53f004e1de8c3113efce6d98029f044fa5cfee666253ee7e6", + "sha256:2c8982ee19ccecabbaeac1ba687bfef085a6352a8c64f821ce2f43e6d76a9298", + "sha256:2f30a5ab8902f93930dc6f627c4dd5da2703333287081c85cace0fc6e21c25af", + "sha256:304e7e2418146ae4d0ef0e9ffa28f881f7874b45b4994cc2279b21b6e7ae50c8", + "sha256:32e5f3b8e32918bfbdd12eca62e49ab3031125c454b507127ad6ecbd86e62fca", + "sha256:334b79ce9c08f26b4659a53f42892793948a613c46f1b583e985fd5a6bf1c149", + "sha256:33d19f0cde6838c81acffff25c7708e4adc7dd02896c9ec25c3939b1500a1778", + "sha256:3799e36d60a35162bb35b2246d8bb012192b7437dff807ef79c14e7352706306", + "sha256:42be5de7cc8c1edac55db92d82b68dc8e683b204d6f5414c5a51997a323d7081", + "sha256:44b3267cea873684af022822195298501568ed44d542f9a2d9bebc0212e99069", + "sha256:458d68d34fb74b906709735c927c029e62f7d06437a98af1b5b6258025223210", + "sha256:45cc13d398b6359a7708986386f72bd156ae781c3e83a68a6d4cee5af04b1ce9", + "sha256:4e7eaf9df15423d07b6050fb91f86c66307171b95ea53e2d87a7993b6d02c7f7", + "sha256:4fad420b14ae1970a1f322e8ae84a1d9d89375eb71e1b504060ab2d1bfe68f3c", + "sha256:504b5116e2bd1821efd815941edff7535e93372a098e156bb9dffde30264e798", + "sha256:50e7e96a527488334379e05755b210b7da4a60fc5d6481938c1fa053e0c92184", + "sha256:51d27844763c273a122e08a3e86e7aefa54ee09fb672d96a645ece0454d8425e", + "sha256:5253dcb0bfda7214523de58b002eb0090cb530d7c55993ce5f6d17faf953ece7", + "sha256:534efd2653ebc4f26fc0e47234e53bf0cb4715bb61f98c64d2774a278b58c846", + "sha256:560278c9975694e1f0bc50da187abf2cdc1e4890739ea33df2bc4a85eeef143e", + "sha256:571452362d552de508c37191b6abbbb660028b8b418e2d68c20779e0bc8eaaa8", + "sha256:62b5f7910b639f3c1d122d408421317c351e213ca39c964ad4121f27916631c6", + "sha256:696639a73ca78a380acfaa0a1f6dd8220616a99074c05bba9ba8bb916914b224", + "sha256:6ccdeef4584450b6f0bddd5135354908dacad95425fcb629fe36d13e48b60f32", + "sha256:70364a097437dd0a90b31cd77f09f7387ad9ac60ef57590971f43b7fca3082a5", + "sha256:7117cb7d6ac7f2e985f3d18aa8a1728864097da1a677ffa69e970ca215baebf1", + "sha256:7467ad8b0eac0b28e52679e972b9b234b3de0ea5cee12eb50091d2b68145fe36", + "sha256:7d35d4cc9270944e95f9c88af757b0c9fc43f396917e143a5756608462c5223b", + "sha256:7dda3091838206969c2b286f9832dff41e2da545b99d1cfaea9ebd8584d02708", + "sha256:853cc36e756ff673bf984e9044ccc8fad60b95a748915dddeab9488aea974c73", + "sha256:8722f72068b3e1156a4b2e1afde6810f1fc67155a9fa30a4b9d5b4bc46f18fb0", + "sha256:8c6c71cf92b09e5faa72ea2c68aa1f61c9ce11cb66fdc5069d712f4392ddfd00", + "sha256:903350bf44d7e4116b4d5898b30b15755d61dcd3161e3413a49c7db76f0bee5a", + "sha256:91b53dea84415e8115506cc62e441a2b54537359c63d856d73cb1abe05af4c9a", + "sha256:951be1eae7b47660412dc4938777a975ebc41936d64e28081bf2e584b47ec246", + "sha256:972b49f2fe1047b9249c958ec4fa1bdd2cf8ce305dc19d27546d5a38e57732d8", + "sha256:9a8625849387b9d558d528e263ecc9c0fbde86cfa5c2f0eef43fff480ae24d71", + "sha256:9cdbb1998da94607d5eec02566b9586f0e70d6438abf1b690261aac0edda7ab6", + "sha256:9e6d4d6ae1827b2f8c7200aaf7501c37cf3f3896c86a6aaf2566448397c823dd", + "sha256:aab65121229c2ecdf4a31b793d99a6a0501225bd39b616e653c87b219ed34a49", + "sha256:ab98016541543692a37905871a5ffca59b16e08aacc3d7d10a27297b443f572d", + "sha256:ad45f3bccfcb00868f2871dce02a755529838d2b86163ab8a246115e80cfb7d6", + "sha256:b43b78f9386d3d932a6ce5af4b45f393d2e93693ee18dc4800d30a8909df700e", + "sha256:b66421f8878a0c82fc0c272a43e2121c8d4c67cb37429b764f0d5ad70b82993b", + "sha256:ba034c8db4b264ef1601eb33cd23d87c5013b8fb48b8161debe2e5d3bd9156b0", + "sha256:bbdc5db2c98ac2bf1971ffa1410c87ca7a15800415f788971e8ba8520fc0fda9", + "sha256:bc0db93ad039fc2fe32ccd3dd0e0e70c4f3d6e37ae83f0a487e1aba939bd2fbd", + "sha256:bf7c8ee4861d9ef5b1120abb75846828c811f932d63311596ad25fa168053e00", + "sha256:bf9596cba92ce7b1fd32c7b07c6e3212c7eed0edc271757e48bfcd2b54646452", + "sha256:c43395a3b7cc9862801a65c6994678484f186ce13c929abab44fb8a9e473a55a", + "sha256:c46a76a599fcbf95f98755275c5527304cc4f1bb69919434c1e15544d7052910", + "sha256:ca23b41355ba95929e9505ee04e55495726aa2282003ed9b012d86f857d3e49b", + "sha256:cd832bd9b6120d6074f39bdfbb3c80e416848b07ac72910f1c7f03131a6debc3", + "sha256:cfa6d61a76c77610ba9274c1a90a453062bdf6887858afbe214d18ad41cf6bde", + "sha256:d8a0f0ab5453e409586b11ebe91c672040bc804ca98d03a656825f7890cbdf88", + "sha256:e91b1976358e17197157b405cab408a5f4e33310cda211c49fc6da7cffd0b2f0", + "sha256:ea057306ab469130167014b662643cfaed84651c792948891d003cf0039223a5", + "sha256:eda3dd46df535da787ffb9036b5140f941ecb91701717df91c9daf64cabef953", + "sha256:f03b1dbd4d9596dd84955bb40f7d885204d6aac0d56a919bb1e0ff2fb7e1735a", + "sha256:fa9335674d7c819674467c7b46154196c51efbaf5f5715187fd366814ba3fa39" + ], + "markers": "python_version >= '3.8'", + "version": "==2024.5.10" + }, + "requests": { + "hashes": [ + "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", + "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + ], + "markers": "python_version >= '3.7'", + "version": "==2.31.0" + }, + "setuptools": { + "hashes": [ + "sha256:6c1fccdac05a97e598fb0ae3bbed5904ccb317337a51139dcd51453611bbb987", + "sha256:c636ac361bc47580504644275c9ad802c50415c7522212252c033bd15f301f32" + ], + "markers": "python_version >= '3.12'", + "version": "==69.5.1" + }, + "six": { + "hashes": [ + "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", + "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.16.0" + }, + "sniffio": { + "hashes": [ + "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", + "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" + ], + "markers": "python_version >= '3.7'", + "version": "==1.3.1" + }, + "soupsieve": { + "hashes": [ + "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690", + "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7" + ], + "markers": "python_version >= '3.8'", + "version": "==2.5" + }, + "sqlalchemy": { + "extras": [ + "asyncio" + ], + "hashes": [ + "sha256:0094c5dc698a5f78d3d1539853e8ecec02516b62b8223c970c86d44e7a80f6c7", + "sha256:0138c5c16be3600923fa2169532205d18891b28afa817cb49b50e08f62198bb8", + "sha256:0a089e218654e740a41388893e090d2e2c22c29028c9d1353feb38638820bbeb", + "sha256:0b3f4c438e37d22b83e640f825ef0f37b95db9aa2d68203f2c9549375d0b2260", + "sha256:16863e2b132b761891d6c49f0a0f70030e0bcac4fd208117f6b7e053e68668d0", + "sha256:1f9a727312ff6ad5248a4367358e2cf7e625e98b1028b1d7ab7b806b7d757513", + "sha256:2383146973a15435e4717f94c7509982770e3e54974c71f76500a0136f22810b", + "sha256:2753743c2afd061bb95a61a51bbb6a1a11ac1c44292fad898f10c9839a7f75b2", + "sha256:296230899df0b77dec4eb799bcea6fbe39a43707ce7bb166519c97b583cfcab3", + "sha256:2a4f4da89c74435f2bc61878cd08f3646b699e7d2eba97144030d1be44e27584", + "sha256:2b1708916730f4830bc69d6f49d37f7698b5bd7530aca7f04f785f8849e95255", + "sha256:2ecabd9ccaa6e914e3dbb2aa46b76dede7eadc8cbf1b8083c94d936bcd5ffb49", + "sha256:311710f9a2ee235f1403537b10c7687214bb1f2b9ebb52702c5aa4a77f0b3af7", + "sha256:37a4b4fb0dd4d2669070fb05b8b8824afd0af57587393015baee1cf9890242d9", + "sha256:3a365eda439b7a00732638f11072907c1bc8e351c7665e7e5da91b169af794af", + "sha256:3b48154678e76445c7ded1896715ce05319f74b1e73cf82d4f8b59b46e9c0ddc", + "sha256:3b69e934f0f2b677ec111b4d83f92dc1a3210a779f69bf905273192cf4ed433e", + "sha256:3cb5a646930c5123f8461f6468901573f334c2c63c795b9af350063a736d0134", + "sha256:408f8b0e2c04677e9c93f40eef3ab22f550fecb3011b187f66a096395ff3d9fd", + "sha256:40ad017c672c00b9b663fcfcd5f0864a0a97828e2ee7ab0c140dc84058d194cf", + "sha256:5a79d65395ac5e6b0c2890935bad892eabb911c4aa8e8015067ddb37eea3d56c", + "sha256:5a8e3b0a7e09e94be7510d1661339d6b52daf202ed2f5b1f9f48ea34ee6f2d57", + "sha256:69c9db1ce00e59e8dd09d7bae852a9add716efdc070a3e2068377e6ff0d6fdaa", + "sha256:7108d569d3990c71e26a42f60474b4c02c8586c4681af5fd67e51a044fdea86a", + "sha256:77d2edb1f54aff37e3318f611637171e8ec71472f1fdc7348b41dcb226f93d90", + "sha256:7d74336c65705b986d12a7e337ba27ab2b9d819993851b140efdf029248e818e", + "sha256:8409de825f2c3b62ab15788635ccaec0c881c3f12a8af2b12ae4910a0a9aeef6", + "sha256:955991a09f0992c68a499791a753523f50f71a6885531568404fa0f231832aa0", + "sha256:99650e9f4cf3ad0d409fed3eec4f071fadd032e9a5edc7270cd646a26446feeb", + "sha256:9a5baf9267b752390252889f0c802ea13b52dfee5e369527da229189b8bd592e", + "sha256:a0ef36b28534f2a5771191be6edb44cc2673c7b2edf6deac6562400288664221", + "sha256:a1429a4b0f709f19ff3b0cf13675b2b9bfa8a7e79990003207a011c0db880a13", + "sha256:a7bfc726d167f425d4c16269a9a10fe8630ff6d14b683d588044dcef2d0f6be7", + "sha256:a943d297126c9230719c27fcbbeab57ecd5d15b0bd6bfd26e91bfcfe64220621", + "sha256:ae8c62fe2480dd61c532ccafdbce9b29dacc126fe8be0d9a927ca3e699b9491a", + "sha256:b60203c63e8f984df92035610c5fb76d941254cf5d19751faab7d33b21e5ddc0", + "sha256:b6bf767d14b77f6a18b6982cbbf29d71bede087edae495d11ab358280f304d8e", + "sha256:b6c7ec2b1f4969fc19b65b7059ed00497e25f54069407a8701091beb69e591a5", + "sha256:bba002a9447b291548e8d66fd8c96a6a7ed4f2def0bb155f4f0a1309fd2735d5", + "sha256:bc0c53579650a891f9b83fa3cecd4e00218e071d0ba00c4890f5be0c34887ed3", + "sha256:c4f61ada6979223013d9ab83a3ed003ded6959eae37d0d685db2c147e9143797", + "sha256:c62d401223f468eb4da32627bffc0c78ed516b03bb8a34a58be54d618b74d472", + "sha256:e42203d8d20dc704604862977b1470a122e4892791fe3ed165f041e4bf447a1b", + "sha256:edc16a50f5e1b7a06a2dcc1f2205b0b961074c123ed17ebda726f376a5ab0953", + "sha256:efedba7e13aa9a6c8407c48facfdfa108a5a4128e35f4c68f20c3407e4376aa9", + "sha256:f1dc3eabd8c0232ee8387fbe03e0a62220a6f089e278b1f0aaf5e2d6210741ad", + "sha256:f69e4c756ee2686767eb80f94c0125c8b0a0b87ede03eacc5c8ae3b54b99dc46", + "sha256:f7703c2010355dd28f53deb644a05fc30f796bd8598b43f0ba678878780b6e4c", + "sha256:fa561138a64f949f3e889eb9ab8c58e1504ab351d6cf55259dc4c248eaa19da6" + ], + "markers": "python_version >= '3.7'", + "version": "==2.0.30" + }, + "sqlparse": { + "hashes": [ + "sha256:714d0a4932c059d16189f58ef5411ec2287a4360f17cdd0edd2d09d4c5087c93", + "sha256:c204494cd97479d0e39f28c93d46c0b2d5959c7b9ab904762ea6c7af211c8663" + ], + "markers": "python_version >= '3.8'", + "version": "==0.5.0" + }, + "striprtf": { + "hashes": [ + "sha256:8c8f9d32083cdc2e8bfb149455aa1cc5a4e0a035893bedc75db8b73becb3a1bb", + "sha256:fdb2bba7ac440072d1c41eab50d8d74ae88f60a8b6575c6e2c7805dc462093aa" + ], + "version": "==0.0.26" + }, + "tenacity": { + "hashes": [ + "sha256:3649f6443dbc0d9b01b9d8020a9c4ec7a1ff5f6f3c6c8a036ef371f573fe9185", + "sha256:953d4e6ad24357bceffbc9707bc74349aca9d245f68eb65419cf0c249a1949a2" + ], + "markers": "python_version >= '3.8'", + "version": "==8.3.0" + }, + "tiktoken": { + "hashes": [ + "sha256:03c6c40ff1db0f48a7b4d2dafeae73a5607aacb472fa11f125e7baf9dce73704", + "sha256:084cec29713bc9d4189a937f8a35dbdfa785bd1235a34c1124fe2323821ee93f", + "sha256:09ed925bccaa8043e34c519fbb2f99110bd07c6fd67714793c21ac298e449410", + "sha256:0bc603c30b9e371e7c4c7935aba02af5994a909fc3c0fe66e7004070858d3f8f", + "sha256:1063c5748be36344c7e18c7913c53e2cca116764c2080177e57d62c7ad4576d1", + "sha256:1077266e949c24e0291f6c350433c6f0971365ece2b173a23bc3b9f9defef6b6", + "sha256:10c7674f81e6e350fcbed7c09a65bca9356eaab27fb2dac65a1e440f2bcfe30f", + "sha256:131b8aeb043a8f112aad9f46011dced25d62629091e51d9dc1adbf4a1cc6aa98", + "sha256:13c94efacdd3de9aff824a788353aa5749c0faee1fbe3816df365ea450b82311", + "sha256:20295d21419bfcca092644f7e2f2138ff947a6eb8cfc732c09cc7d76988d4a89", + "sha256:21a20c3bd1dd3e55b91c1331bf25f4af522c525e771691adbc9a69336fa7f702", + "sha256:2398fecd38c921bcd68418675a6d155fad5f5e14c2e92fcf5fe566fa5485a858", + "sha256:2bcb28ddf79ffa424f171dfeef9a4daff61a94c631ca6813f43967cb263b83b9", + "sha256:2ee92776fdbb3efa02a83f968c19d4997a55c8e9ce7be821ceee04a1d1ee149c", + "sha256:485f3cc6aba7c6b6ce388ba634fbba656d9ee27f766216f45146beb4ac18b25f", + "sha256:54031f95c6939f6b78122c0aa03a93273a96365103793a22e1793ee86da31685", + "sha256:5d4511c52caacf3c4981d1ae2df85908bd31853f33d30b345c8b6830763f769c", + "sha256:71c55d066388c55a9c00f61d2c456a6086673ab7dec22dd739c23f77195b1908", + "sha256:79383a6e2c654c6040e5f8506f3750db9ddd71b550c724e673203b4f6b4b4590", + "sha256:811229fde1652fedcca7c6dfe76724d0908775b353556d8a71ed74d866f73f7b", + "sha256:861f9ee616766d736be4147abac500732b505bf7013cfaf019b85892637f235e", + "sha256:86b6e7dc2e7ad1b3757e8a24597415bafcfb454cebf9a33a01f2e6ba2e663992", + "sha256:8a81bac94769cab437dd3ab0b8a4bc4e0f9cf6835bcaa88de71f39af1791727a", + "sha256:8c46d7af7b8c6987fac9b9f61041b452afe92eb087d29c9ce54951280f899a97", + "sha256:8d57f29171255f74c0aeacd0651e29aa47dff6f070cb9f35ebc14c82278f3b25", + "sha256:8e58c7eb29d2ab35a7a8929cbeea60216a4ccdf42efa8974d8e176d50c9a3df5", + "sha256:8f5f6afb52fb8a7ea1c811e435e4188f2bef81b5e0f7a8635cc79b0eef0193d6", + "sha256:959d993749b083acc57a317cbc643fb85c014d055b2119b739487288f4e5d1cb", + "sha256:c72baaeaefa03ff9ba9688624143c858d1f6b755bb85d456d59e529e17234769", + "sha256:cabc6dc77460df44ec5b879e68692c63551ae4fae7460dd4ff17181df75f1db7", + "sha256:d20b5c6af30e621b4aca094ee61777a44118f52d886dbe4f02b70dfe05c15350", + "sha256:d427614c3e074004efa2f2411e16c826f9df427d3c70a54725cae860f09e4bf4", + "sha256:d6d73ea93e91d5ca771256dfc9d1d29f5a554b83821a1dc0891987636e0ae226", + "sha256:e215292e99cb41fbc96988ef62ea63bb0ce1e15f2c147a61acc319f8b4cbe5bf", + "sha256:e54be9a2cd2f6d6ffa3517b064983fb695c9a9d8aa7d574d1ef3c3f931a99225", + "sha256:fffdcb319b614cf14f04d02a52e26b1d1ae14a570f90e9b55461a72672f7b13d" + ], + "markers": "python_version >= '3.8'", + "version": "==0.7.0" + }, + "tqdm": { + "hashes": [ + "sha256:b75ca56b413b030bc3f00af51fd2c1a1a5eac6a0c1cca83cbb37a5c52abce644", + "sha256:e4d936c9de8727928f3be6079590e97d9abfe8d39a590be678eb5919ffc186bb" + ], + "markers": "python_version >= '3.7'", + "version": "==4.66.4" + }, + "typing-extensions": { + "hashes": [ + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" + ], + "markers": "python_version >= '3.8'", + "version": "==4.11.0" + }, + "typing-inspect": { + "hashes": [ + "sha256:9ee6fc59062311ef8547596ab6b955e1b8aa46242d854bfc78f4f6b0eff35f9f", + "sha256:b23fc42ff6f6ef6954e4852c1fb512cdd18dbea03134f91f856a95ccc9461f78" + ], + "version": "==0.9.0" + }, + "tzdata": { + "hashes": [ + "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd", + "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252" + ], + "markers": "python_version >= '2'", + "version": "==2024.1" + }, + "ujson": { + "hashes": [ + "sha256:0de4971a89a762398006e844ae394bd46991f7c385d7a6a3b93ba229e6dac17e", + "sha256:129e39af3a6d85b9c26d5577169c21d53821d8cf68e079060602e861c6e5da1b", + "sha256:22cffecf73391e8abd65ef5f4e4dd523162a3399d5e84faa6aebbf9583df86d6", + "sha256:232cc85f8ee3c454c115455195a205074a56ff42608fd6b942aa4c378ac14dd7", + "sha256:2544912a71da4ff8c4f7ab5606f947d7299971bdd25a45e008e467ca638d13c9", + "sha256:2601aa9ecdbee1118a1c2065323bda35e2c5a2cf0797ef4522d485f9d3ef65bd", + "sha256:26b0e2d2366543c1bb4fbd457446f00b0187a2bddf93148ac2da07a53fe51569", + "sha256:2987713a490ceb27edff77fb184ed09acdc565db700ee852823c3dc3cffe455f", + "sha256:29b443c4c0a113bcbb792c88bea67b675c7ca3ca80c3474784e08bba01c18d51", + "sha256:2a890b706b64e0065f02577bf6d8ca3b66c11a5e81fb75d757233a38c07a1f20", + "sha256:2aff2985cef314f21d0fecc56027505804bc78802c0121343874741650a4d3d1", + "sha256:348898dd702fc1c4f1051bc3aacbf894caa0927fe2c53e68679c073375f732cf", + "sha256:38665e7d8290188b1e0d57d584eb8110951a9591363316dd41cf8686ab1d0abc", + "sha256:38d5d36b4aedfe81dfe251f76c0467399d575d1395a1755de391e58985ab1c2e", + "sha256:3ff201d62b1b177a46f113bb43ad300b424b7847f9c5d38b1b4ad8f75d4a282a", + "sha256:4573fd1695932d4f619928fd09d5d03d917274381649ade4328091ceca175539", + "sha256:4734ee0745d5928d0ba3a213647f1c4a74a2a28edc6d27b2d6d5bd9fa4319e27", + "sha256:4c4fc16f11ac1612f05b6f5781b384716719547e142cfd67b65d035bd85af165", + "sha256:502bf475781e8167f0f9d0e41cd32879d120a524b22358e7f205294224c71126", + "sha256:57aaf98b92d72fc70886b5a0e1a1ca52c2320377360341715dd3933a18e827b1", + "sha256:59e02cd37bc7c44d587a0ba45347cc815fb7a5fe48de16bf05caa5f7d0d2e816", + "sha256:5b6fee72fa77dc172a28f21693f64d93166534c263adb3f96c413ccc85ef6e64", + "sha256:5b91b5d0d9d283e085e821651184a647699430705b15bf274c7896f23fe9c9d8", + "sha256:604a046d966457b6cdcacc5aa2ec5314f0e8c42bae52842c1e6fa02ea4bda42e", + "sha256:618efd84dc1acbd6bff8eaa736bb6c074bfa8b8a98f55b61c38d4ca2c1f7f287", + "sha256:61d0af13a9af01d9f26d2331ce49bb5ac1fb9c814964018ac8df605b5422dcb3", + "sha256:61e1591ed9376e5eddda202ec229eddc56c612b61ac6ad07f96b91460bb6c2fb", + "sha256:621e34b4632c740ecb491efc7f1fcb4f74b48ddb55e65221995e74e2d00bbff0", + "sha256:6627029ae4f52d0e1a2451768c2c37c0c814ffc04f796eb36244cf16b8e57043", + "sha256:67079b1f9fb29ed9a2914acf4ef6c02844b3153913eb735d4bf287ee1db6e557", + "sha256:6dea1c8b4fc921bf78a8ff00bbd2bfe166345f5536c510671bccececb187c80e", + "sha256:6e32abdce572e3a8c3d02c886c704a38a1b015a1fb858004e03d20ca7cecbb21", + "sha256:7223f41e5bf1f919cd8d073e35b229295aa8e0f7b5de07ed1c8fddac63a6bc5d", + "sha256:73814cd1b9db6fc3270e9d8fe3b19f9f89e78ee9d71e8bd6c9a626aeaeaf16bd", + "sha256:7490655a2272a2d0b072ef16b0b58ee462f4973a8f6bbe64917ce5e0a256f9c0", + "sha256:7663960f08cd5a2bb152f5ee3992e1af7690a64c0e26d31ba7b3ff5b2ee66337", + "sha256:78778a3aa7aafb11e7ddca4e29f46bc5139131037ad628cc10936764282d6753", + "sha256:7c10f4654e5326ec14a46bcdeb2b685d4ada6911050aa8baaf3501e57024b804", + "sha256:7ec0ca8c415e81aa4123501fee7f761abf4b7f386aad348501a26940beb1860f", + "sha256:924f7318c31874d6bb44d9ee1900167ca32aa9b69389b98ecbde34c1698a250f", + "sha256:94a87f6e151c5f483d7d54ceef83b45d3a9cca7a9cb453dbdbb3f5a6f64033f5", + "sha256:98ba15d8cbc481ce55695beee9f063189dce91a4b08bc1d03e7f0152cd4bbdd5", + "sha256:a245d59f2ffe750446292b0094244df163c3dc96b3ce152a2c837a44e7cda9d1", + "sha256:a5b366812c90e69d0f379a53648be10a5db38f9d4ad212b60af00bd4048d0f00", + "sha256:a65b6af4d903103ee7b6f4f5b85f1bfd0c90ba4eeac6421aae436c9988aa64a2", + "sha256:a984a3131da7f07563057db1c3020b1350a3e27a8ec46ccbfbf21e5928a43050", + "sha256:a9d2edbf1556e4f56e50fab7d8ff993dbad7f54bac68eacdd27a8f55f433578e", + "sha256:ab13a2a9e0b2865a6c6db9271f4b46af1c7476bfd51af1f64585e919b7c07fd4", + "sha256:ac56eb983edce27e7f51d05bc8dd820586c6e6be1c5216a6809b0c668bb312b8", + "sha256:ad88ac75c432674d05b61184178635d44901eb749786c8eb08c102330e6e8996", + "sha256:b0111b27f2d5c820e7f2dbad7d48e3338c824e7ac4d2a12da3dc6061cc39c8e6", + "sha256:b3cd8f3c5d8c7738257f1018880444f7b7d9b66232c64649f562d7ba86ad4bc1", + "sha256:b9500e61fce0cfc86168b248104e954fead61f9be213087153d272e817ec7b4f", + "sha256:ba17799fcddaddf5c1f75a4ba3fd6441f6a4f1e9173f8a786b42450851bd74f1", + "sha256:ba43cc34cce49cf2d4bc76401a754a81202d8aa926d0e2b79f0ee258cb15d3a4", + "sha256:baed37ea46d756aca2955e99525cc02d9181de67f25515c468856c38d52b5f3b", + "sha256:beeaf1c48e32f07d8820c705ff8e645f8afa690cca1544adba4ebfa067efdc88", + "sha256:c18610b9ccd2874950faf474692deee4223a994251bc0a083c114671b64e6518", + "sha256:c66962ca7565605b355a9ed478292da628b8f18c0f2793021ca4425abf8b01e5", + "sha256:caf270c6dba1be7a41125cd1e4fc7ba384bf564650beef0df2dd21a00b7f5770", + "sha256:cc6139531f13148055d691e442e4bc6601f6dba1e6d521b1585d4788ab0bfad4", + "sha256:d2c75269f8205b2690db4572a4a36fe47cd1338e4368bc73a7a0e48789e2e35a", + "sha256:d47ebb01bd865fdea43da56254a3930a413f0c5590372a1241514abae8aa7c76", + "sha256:d4dc2fd6b3067c0782e7002ac3b38cf48608ee6366ff176bbd02cf969c9c20fe", + "sha256:d7d0e0ceeb8fe2468c70ec0c37b439dd554e2aa539a8a56365fd761edb418988", + "sha256:d8640fb4072d36b08e95a3a380ba65779d356b2fee8696afeb7794cf0902d0a1", + "sha256:dee5e97c2496874acbf1d3e37b521dd1f307349ed955e62d1d2f05382bc36dd5", + "sha256:dfef2814c6b3291c3c5f10065f745a1307d86019dbd7ea50e83504950136ed5b", + "sha256:e1402f0564a97d2a52310ae10a64d25bcef94f8dd643fcf5d310219d915484f7", + "sha256:e7ce306a42b6b93ca47ac4a3b96683ca554f6d35dd8adc5acfcd55096c8dfcb8", + "sha256:e82d4bb2138ab05e18f089a83b6564fee28048771eb63cdecf4b9b549de8a2cc", + "sha256:ecb24f0bdd899d368b715c9e6664166cf694d1e57be73f17759573a6986dd95a", + "sha256:f00ea7e00447918ee0eff2422c4add4c5752b1b60e88fcb3c067d4a21049a720", + "sha256:f3caf9cd64abfeb11a3b661329085c5e167abbe15256b3b68cb5d914ba7396f3", + "sha256:f44bd4b23a0e723bf8b10628288c2c7c335161d6840013d4d5de20e48551773b", + "sha256:f77b74475c462cb8b88680471193064d3e715c7c6074b1c8c412cb526466efe9", + "sha256:f8ccb77b3e40b151e20519c6ae6d89bfe3f4c14e8e210d910287f778368bb3d1", + "sha256:fbd8fd427f57a03cff3ad6574b5e299131585d9727c8c366da4624a9069ed746" + ], + "markers": "python_version >= '3.8'", + "version": "==5.10.0" + }, + "urllib3": { + "hashes": [ + "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84", + "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" + ], + "markers": "python_version >= '3.11'", + "version": "==2.0.7" + }, + "wrapt": { + "hashes": [ + "sha256:0d2691979e93d06a95a26257adb7bfd0c93818e89b1406f5a28f36e0d8c1e1fc", + "sha256:14d7dc606219cdd7405133c713f2c218d4252f2a469003f8c46bb92d5d095d81", + "sha256:1a5db485fe2de4403f13fafdc231b0dbae5eca4359232d2efc79025527375b09", + "sha256:1acd723ee2a8826f3d53910255643e33673e1d11db84ce5880675954183ec47e", + "sha256:1ca9b6085e4f866bd584fb135a041bfc32cab916e69f714a7d1d397f8c4891ca", + "sha256:1dd50a2696ff89f57bd8847647a1c363b687d3d796dc30d4dd4a9d1689a706f0", + "sha256:2076fad65c6736184e77d7d4729b63a6d1ae0b70da4868adeec40989858eb3fb", + "sha256:2a88e6010048489cda82b1326889ec075a8c856c2e6a256072b28eaee3ccf487", + "sha256:3ebf019be5c09d400cf7b024aa52b1f3aeebeff51550d007e92c3c1c4afc2a40", + "sha256:418abb18146475c310d7a6dc71143d6f7adec5b004ac9ce08dc7a34e2babdc5c", + "sha256:43aa59eadec7890d9958748db829df269f0368521ba6dc68cc172d5d03ed8060", + "sha256:44a2754372e32ab315734c6c73b24351d06e77ffff6ae27d2ecf14cf3d229202", + "sha256:490b0ee15c1a55be9c1bd8609b8cecd60e325f0575fc98f50058eae366e01f41", + "sha256:49aac49dc4782cb04f58986e81ea0b4768e4ff197b57324dcbd7699c5dfb40b9", + "sha256:5eb404d89131ec9b4f748fa5cfb5346802e5ee8836f57d516576e61f304f3b7b", + "sha256:5f15814a33e42b04e3de432e573aa557f9f0f56458745c2074952f564c50e664", + "sha256:5f370f952971e7d17c7d1ead40e49f32345a7f7a5373571ef44d800d06b1899d", + "sha256:66027d667efe95cc4fa945af59f92c5a02c6f5bb6012bff9e60542c74c75c362", + "sha256:66dfbaa7cfa3eb707bbfcd46dab2bc6207b005cbc9caa2199bcbc81d95071a00", + "sha256:685f568fa5e627e93f3b52fda002c7ed2fa1800b50ce51f6ed1d572d8ab3e7fc", + "sha256:6906c4100a8fcbf2fa735f6059214bb13b97f75b1a61777fcf6432121ef12ef1", + "sha256:6a42cd0cfa8ffc1915aef79cb4284f6383d8a3e9dcca70c445dcfdd639d51267", + "sha256:6dcfcffe73710be01d90cae08c3e548d90932d37b39ef83969ae135d36ef3956", + "sha256:6f6eac2360f2d543cc875a0e5efd413b6cbd483cb3ad7ebf888884a6e0d2e966", + "sha256:72554a23c78a8e7aa02abbd699d129eead8b147a23c56e08d08dfc29cfdddca1", + "sha256:73870c364c11f03ed072dda68ff7aea6d2a3a5c3fe250d917a429c7432e15228", + "sha256:73aa7d98215d39b8455f103de64391cb79dfcad601701a3aa0dddacf74911d72", + "sha256:75ea7d0ee2a15733684badb16de6794894ed9c55aa5e9903260922f0482e687d", + "sha256:7bd2d7ff69a2cac767fbf7a2b206add2e9a210e57947dd7ce03e25d03d2de292", + "sha256:807cc8543a477ab7422f1120a217054f958a66ef7314f76dd9e77d3f02cdccd0", + "sha256:8e9723528b9f787dc59168369e42ae1c3b0d3fadb2f1a71de14531d321ee05b0", + "sha256:9090c9e676d5236a6948330e83cb89969f433b1943a558968f659ead07cb3b36", + "sha256:9153ed35fc5e4fa3b2fe97bddaa7cbec0ed22412b85bcdaf54aeba92ea37428c", + "sha256:9159485323798c8dc530a224bd3ffcf76659319ccc7bbd52e01e73bd0241a0c5", + "sha256:941988b89b4fd6b41c3f0bfb20e92bd23746579736b7343283297c4c8cbae68f", + "sha256:94265b00870aa407bd0cbcfd536f17ecde43b94fb8d228560a1e9d3041462d73", + "sha256:98b5e1f498a8ca1858a1cdbffb023bfd954da4e3fa2c0cb5853d40014557248b", + "sha256:9b201ae332c3637a42f02d1045e1d0cccfdc41f1f2f801dafbaa7e9b4797bfc2", + "sha256:a0ea261ce52b5952bf669684a251a66df239ec6d441ccb59ec7afa882265d593", + "sha256:a33a747400b94b6d6b8a165e4480264a64a78c8a4c734b62136062e9a248dd39", + "sha256:a452f9ca3e3267cd4d0fcf2edd0d035b1934ac2bd7e0e57ac91ad6b95c0c6389", + "sha256:a86373cf37cd7764f2201b76496aba58a52e76dedfaa698ef9e9688bfd9e41cf", + "sha256:ac83a914ebaf589b69f7d0a1277602ff494e21f4c2f743313414378f8f50a4cf", + "sha256:aefbc4cb0a54f91af643660a0a150ce2c090d3652cf4052a5397fb2de549cd89", + "sha256:b3646eefa23daeba62643a58aac816945cadc0afaf21800a1421eeba5f6cfb9c", + "sha256:b47cfad9e9bbbed2339081f4e346c93ecd7ab504299403320bf85f7f85c7d46c", + "sha256:b935ae30c6e7400022b50f8d359c03ed233d45b725cfdd299462f41ee5ffba6f", + "sha256:bb2dee3874a500de01c93d5c71415fcaef1d858370d405824783e7a8ef5db440", + "sha256:bc57efac2da352a51cc4658878a68d2b1b67dbe9d33c36cb826ca449d80a8465", + "sha256:bf5703fdeb350e36885f2875d853ce13172ae281c56e509f4e6eca049bdfb136", + "sha256:c31f72b1b6624c9d863fc095da460802f43a7c6868c5dda140f51da24fd47d7b", + "sha256:c5cd603b575ebceca7da5a3a251e69561bec509e0b46e4993e1cac402b7247b8", + "sha256:d2efee35b4b0a347e0d99d28e884dfd82797852d62fcd7ebdeee26f3ceb72cf3", + "sha256:d462f28826f4657968ae51d2181a074dfe03c200d6131690b7d65d55b0f360f8", + "sha256:d5e49454f19ef621089e204f862388d29e6e8d8b162efce05208913dde5b9ad6", + "sha256:da4813f751142436b075ed7aa012a8778aa43a99f7b36afe9b742d3ed8bdc95e", + "sha256:db2e408d983b0e61e238cf579c09ef7020560441906ca990fe8412153e3b291f", + "sha256:db98ad84a55eb09b3c32a96c576476777e87c520a34e2519d3e59c44710c002c", + "sha256:dbed418ba5c3dce92619656802cc5355cb679e58d0d89b50f116e4a9d5a9603e", + "sha256:dcdba5c86e368442528f7060039eda390cc4091bfd1dca41e8046af7c910dda8", + "sha256:decbfa2f618fa8ed81c95ee18a387ff973143c656ef800c9f24fb7e9c16054e2", + "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020", + "sha256:eb1b046be06b0fce7249f1d025cd359b4b80fc1c3e24ad9eca33e0dcdb2e4a35", + "sha256:eb6e651000a19c96f452c85132811d25e9264d836951022d6e81df2fff38337d", + "sha256:ed867c42c268f876097248e05b6117a65bcd1e63b779e916fe2e33cd6fd0d3c3", + "sha256:edfad1d29c73f9b863ebe7082ae9321374ccb10879eeabc84ba3b69f2579d537", + "sha256:f2058f813d4f2b5e3a9eb2eb3faf8f1d99b81c3e51aeda4b168406443e8ba809", + "sha256:f6b2d0c6703c988d334f297aa5df18c45e97b0af3679bb75059e0e0bd8b1069d", + "sha256:f8212564d49c50eb4565e502814f694e240c55551a5f1bc841d4fcaabb0a9b8a", + "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4" + ], + "markers": "python_version >= '3.6'", + "version": "==1.16.0" + }, + "xmltodict": { + "hashes": [ + "sha256:341595a488e3e01a85a9d8911d8912fd922ede5fecc4dce437eb4b6c8d037e56", + "sha256:aa89e8fd76320154a40d19a0df04a4695fb9dc5ba977cbb68ab3e4eb225e7852" + ], + "markers": "python_version >= '3.4'", + "version": "==0.13.0" + }, + "yarl": { + "hashes": [ + "sha256:008d3e808d03ef28542372d01057fd09168419cdc8f848efe2804f894ae03e51", + "sha256:03caa9507d3d3c83bca08650678e25364e1843b484f19986a527630ca376ecce", + "sha256:07574b007ee20e5c375a8fe4a0789fad26db905f9813be0f9fef5a68080de559", + "sha256:09efe4615ada057ba2d30df871d2f668af661e971dfeedf0c159927d48bbeff0", + "sha256:0d2454f0aef65ea81037759be5ca9947539667eecebca092733b2eb43c965a81", + "sha256:0e9d124c191d5b881060a9e5060627694c3bdd1fe24c5eecc8d5d7d0eb6faabc", + "sha256:18580f672e44ce1238b82f7fb87d727c4a131f3a9d33a5e0e82b793362bf18b4", + "sha256:1f23e4fe1e8794f74b6027d7cf19dc25f8b63af1483d91d595d4a07eca1fb26c", + "sha256:206a55215e6d05dbc6c98ce598a59e6fbd0c493e2de4ea6cc2f4934d5a18d130", + "sha256:23d32a2594cb5d565d358a92e151315d1b2268bc10f4610d098f96b147370136", + "sha256:26a1dc6285e03f3cc9e839a2da83bcbf31dcb0d004c72d0730e755b33466c30e", + "sha256:29e0f83f37610f173eb7e7b5562dd71467993495e568e708d99e9d1944f561ec", + "sha256:2b134fd795e2322b7684155b7855cc99409d10b2e408056db2b93b51a52accc7", + "sha256:2d47552b6e52c3319fede1b60b3de120fe83bde9b7bddad11a69fb0af7db32f1", + "sha256:357495293086c5b6d34ca9616a43d329317feab7917518bc97a08f9e55648455", + "sha256:35a2b9396879ce32754bd457d31a51ff0a9d426fd9e0e3c33394bf4b9036b099", + "sha256:3777ce5536d17989c91696db1d459574e9a9bd37660ea7ee4d3344579bb6f129", + "sha256:3986b6f41ad22988e53d5778f91855dc0399b043fc8946d4f2e68af22ee9ff10", + "sha256:44d8ffbb9c06e5a7f529f38f53eda23e50d1ed33c6c869e01481d3fafa6b8142", + "sha256:49a180c2e0743d5d6e0b4d1a9e5f633c62eca3f8a86ba5dd3c471060e352ca98", + "sha256:4aa9741085f635934f3a2583e16fcf62ba835719a8b2b28fb2917bb0537c1dfa", + "sha256:4b21516d181cd77ebd06ce160ef8cc2a5e9ad35fb1c5930882baff5ac865eee7", + "sha256:4b3c1ffe10069f655ea2d731808e76e0f452fc6c749bea04781daf18e6039525", + "sha256:4c7d56b293cc071e82532f70adcbd8b61909eec973ae9d2d1f9b233f3d943f2c", + "sha256:4e9035df8d0880b2f1c7f5031f33f69e071dfe72ee9310cfc76f7b605958ceb9", + "sha256:54525ae423d7b7a8ee81ba189f131054defdb122cde31ff17477951464c1691c", + "sha256:549d19c84c55d11687ddbd47eeb348a89df9cb30e1993f1b128f4685cd0ebbf8", + "sha256:54beabb809ffcacbd9d28ac57b0db46e42a6e341a030293fb3185c409e626b8b", + "sha256:566db86717cf8080b99b58b083b773a908ae40f06681e87e589a976faf8246bf", + "sha256:5a2e2433eb9344a163aced6a5f6c9222c0786e5a9e9cac2c89f0b28433f56e23", + "sha256:5aef935237d60a51a62b86249839b51345f47564208c6ee615ed2a40878dccdd", + "sha256:604f31d97fa493083ea21bd9b92c419012531c4e17ea6da0f65cacdcf5d0bd27", + "sha256:63b20738b5aac74e239622d2fe30df4fca4942a86e31bf47a81a0e94c14df94f", + "sha256:686a0c2f85f83463272ddffd4deb5e591c98aac1897d65e92319f729c320eece", + "sha256:6a962e04b8f91f8c4e5917e518d17958e3bdee71fd1d8b88cdce74dd0ebbf434", + "sha256:6ad6d10ed9b67a382b45f29ea028f92d25bc0bc1daf6c5b801b90b5aa70fb9ec", + "sha256:6f5cb257bc2ec58f437da2b37a8cd48f666db96d47b8a3115c29f316313654ff", + "sha256:6fe79f998a4052d79e1c30eeb7d6c1c1056ad33300f682465e1b4e9b5a188b78", + "sha256:7855426dfbddac81896b6e533ebefc0af2f132d4a47340cee6d22cac7190022d", + "sha256:7d5aaac37d19b2904bb9dfe12cdb08c8443e7ba7d2852894ad448d4b8f442863", + "sha256:801e9264d19643548651b9db361ce3287176671fb0117f96b5ac0ee1c3530d53", + "sha256:81eb57278deb6098a5b62e88ad8281b2ba09f2f1147c4767522353eaa6260b31", + "sha256:824d6c50492add5da9374875ce72db7a0733b29c2394890aef23d533106e2b15", + "sha256:8397a3817d7dcdd14bb266283cd1d6fc7264a48c186b986f32e86d86d35fbac5", + "sha256:848cd2a1df56ddbffeb375535fb62c9d1645dde33ca4d51341378b3f5954429b", + "sha256:84fc30f71689d7fc9168b92788abc977dc8cefa806909565fc2951d02f6b7d57", + "sha256:8619d6915b3b0b34420cf9b2bb6d81ef59d984cb0fde7544e9ece32b4b3043c3", + "sha256:8a854227cf581330ffa2c4824d96e52ee621dd571078a252c25e3a3b3d94a1b1", + "sha256:8be9e837ea9113676e5754b43b940b50cce76d9ed7d2461df1af39a8ee674d9f", + "sha256:928cecb0ef9d5a7946eb6ff58417ad2fe9375762382f1bf5c55e61645f2c43ad", + "sha256:957b4774373cf6f709359e5c8c4a0af9f6d7875db657adb0feaf8d6cb3c3964c", + "sha256:992f18e0ea248ee03b5a6e8b3b4738850ae7dbb172cc41c966462801cbf62cf7", + "sha256:9fc5fc1eeb029757349ad26bbc5880557389a03fa6ada41703db5e068881e5f2", + "sha256:a00862fb23195b6b8322f7d781b0dc1d82cb3bcac346d1e38689370cc1cc398b", + "sha256:a3a6ed1d525bfb91b3fc9b690c5a21bb52de28c018530ad85093cc488bee2dd2", + "sha256:a6327976c7c2f4ee6816eff196e25385ccc02cb81427952414a64811037bbc8b", + "sha256:a7409f968456111140c1c95301cadf071bd30a81cbd7ab829169fb9e3d72eae9", + "sha256:a825ec844298c791fd28ed14ed1bffc56a98d15b8c58a20e0e08c1f5f2bea1be", + "sha256:a8c1df72eb746f4136fe9a2e72b0c9dc1da1cbd23b5372f94b5820ff8ae30e0e", + "sha256:a9bd00dc3bc395a662900f33f74feb3e757429e545d831eef5bb280252631984", + "sha256:aa102d6d280a5455ad6a0f9e6d769989638718e938a6a0a2ff3f4a7ff8c62cc4", + "sha256:aaaea1e536f98754a6e5c56091baa1b6ce2f2700cc4a00b0d49eca8dea471074", + "sha256:ad4d7a90a92e528aadf4965d685c17dacff3df282db1121136c382dc0b6014d2", + "sha256:b8477c1ee4bd47c57d49621a062121c3023609f7a13b8a46953eb6c9716ca392", + "sha256:ba6f52cbc7809cd8d74604cce9c14868306ae4aa0282016b641c661f981a6e91", + "sha256:bac8d525a8dbc2a1507ec731d2867025d11ceadcb4dd421423a5d42c56818541", + "sha256:bef596fdaa8f26e3d66af846bbe77057237cb6e8efff8cd7cc8dff9a62278bbf", + "sha256:c0ec0ed476f77db9fb29bca17f0a8fcc7bc97ad4c6c1d8959c507decb22e8572", + "sha256:c38c9ddb6103ceae4e4498f9c08fac9b590c5c71b0370f98714768e22ac6fa66", + "sha256:c7224cab95645c7ab53791022ae77a4509472613e839dab722a72abe5a684575", + "sha256:c74018551e31269d56fab81a728f683667e7c28c04e807ba08f8c9e3bba32f14", + "sha256:ca06675212f94e7a610e85ca36948bb8fc023e458dd6c63ef71abfd482481aa5", + "sha256:d1d2532b340b692880261c15aee4dc94dd22ca5d61b9db9a8a361953d36410b1", + "sha256:d25039a474c4c72a5ad4b52495056f843a7ff07b632c1b92ea9043a3d9950f6e", + "sha256:d5ff2c858f5f6a42c2a8e751100f237c5e869cbde669a724f2062d4c4ef93551", + "sha256:d7d7f7de27b8944f1fee2c26a88b4dabc2409d2fea7a9ed3df79b67277644e17", + "sha256:d7eeb6d22331e2fd42fce928a81c697c9ee2d51400bd1a28803965883e13cead", + "sha256:d8a1c6c0be645c745a081c192e747c5de06e944a0d21245f4cf7c05e457c36e0", + "sha256:d8b889777de69897406c9fb0b76cdf2fd0f31267861ae7501d93003d55f54fbe", + "sha256:d9e09c9d74f4566e905a0b8fa668c58109f7624db96a2171f21747abc7524234", + "sha256:db8e58b9d79200c76956cefd14d5c90af54416ff5353c5bfd7cbe58818e26ef0", + "sha256:ddb2a5c08a4eaaba605340fdee8fc08e406c56617566d9643ad8bf6852778fc7", + "sha256:e0381b4ce23ff92f8170080c97678040fc5b08da85e9e292292aba67fdac6c34", + "sha256:e23a6d84d9d1738dbc6e38167776107e63307dfc8ad108e580548d1f2c587f42", + "sha256:e516dc8baf7b380e6c1c26792610230f37147bb754d6426462ab115a02944385", + "sha256:ea65804b5dc88dacd4a40279af0cdadcfe74b3e5b4c897aa0d81cf86927fee78", + "sha256:ec61d826d80fc293ed46c9dd26995921e3a82146feacd952ef0757236fc137be", + "sha256:ee04010f26d5102399bd17f8df8bc38dc7ccd7701dc77f4a68c5b8d733406958", + "sha256:f3bc6af6e2b8f92eced34ef6a96ffb248e863af20ef4fde9448cc8c9b858b749", + "sha256:f7d6b36dd2e029b6bcb8a13cf19664c7b8e19ab3a58e0fefbb5b8461447ed5ec" + ], + "markers": "python_version >= '3.7'", + "version": "==1.9.4" + }, + "zipp": { + "hashes": [ + "sha256:206f5a15f2af3dbaee80769fb7dc6f249695e940acca08dfb2a4769fe61e538b", + "sha256:2884ed22e7d8961de1c9a05142eb69a247f120291bc0206a00a7642f09b5b715" + ], + "markers": "python_version >= '3.8'", + "version": "==3.18.1" + } + }, + "develop": { + "black": { + "hashes": [ + "sha256:257d724c2c9b1660f353b36c802ccece186a30accc7742c176d29c146df6e474", + "sha256:37aae07b029fa0174d39daf02748b379399b909652a806e5708199bd93899da1", + "sha256:415e686e87dbbe6f4cd5ef0fbf764af7b89f9057b97c908742b6008cc554b9c0", + "sha256:48a85f2cb5e6799a9ef05347b476cce6c182d6c71ee36925a6c194d074336ef8", + "sha256:7768a0dbf16a39aa5e9a3ded568bb545c8c2727396d063bbaf847df05b08cd96", + "sha256:7e122b1c4fb252fd85df3ca93578732b4749d9be076593076ef4d07a0233c3e1", + "sha256:88c57dc656038f1ab9f92b3eb5335ee9b021412feaa46330d5eba4e51fe49b04", + "sha256:8e537d281831ad0e71007dcdcbe50a71470b978c453fa41ce77186bbe0ed6021", + "sha256:98e123f1d5cfd42f886624d84464f7756f60ff6eab89ae845210631714f6db94", + "sha256:accf49e151c8ed2c0cdc528691838afd217c50412534e876a19270fea1e28e2d", + "sha256:b1530ae42e9d6d5b670a34db49a94115a64596bc77710b1d05e9801e62ca0a7c", + "sha256:b9176b9832e84308818a99a561e90aa479e73c523b3f77afd07913380ae2eab7", + "sha256:bdde6f877a18f24844e381d45e9947a49e97933573ac9d4345399be37621e26c", + "sha256:be8bef99eb46d5021bf053114442914baeb3649a89dc5f3a555c88737e5e98fc", + "sha256:bf10f7310db693bb62692609b397e8d67257c55f949abde4c67f9cc574492cc7", + "sha256:c872b53057f000085da66a19c55d68f6f8ddcac2642392ad3a355878406fbd4d", + "sha256:d36ed1124bb81b32f8614555b34cc4259c3fbc7eec17870e8ff8ded335b58d8c", + "sha256:da33a1a5e49c4122ccdfd56cd021ff1ebc4a1ec4e2d01594fef9b6f267a9e741", + "sha256:dd1b5a14e417189db4c7b64a6540f31730713d173f0b63e55fabd52d61d8fdce", + "sha256:e151054aa00bad1f4e1f04919542885f89f5f7d086b8a59e5000e6c616896ffb", + "sha256:eaea3008c281f1038edb473c1aa8ed8143a5535ff18f978a318f10302b254063", + "sha256:ef703f83fc32e131e9bcc0a5094cfe85599e7109f896fe8bc96cc402f3eb4b6e" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==24.4.2" + }, + "boto3": { + "hashes": [ + "sha256:60e5dda0b29805fb410bfda1d98e898edaebedac0e6983e9c57cb88e44dfa64e", + "sha256:6c8125310005255ea998bccc3e8353b4df81a96ab105c89c118461f6c54c07c8" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==1.34.97" + }, + "boto3-stubs": { + "hashes": [ + "sha256:8aebce123ca023c21bfd5b1f7dc96c53358368bb7224021619943ef7dd5b2947", + "sha256:9f55147d67dc4a113a468f89f4a3dc75b9b3fa976f4f0988b8ba68a872e31e6a" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==1.34.97" + }, + "botocore": { + "hashes": [ + "sha256:727d5d3e800ac8b705fca6e19b6fefa1e728a81d62a712df9bd32ed0117c740b", + "sha256:a459d060b541beecb50681e6e8a39313cca981e146a59ba7c5229d62f631a016" + ], + "markers": "python_version >= '3.8'", + "version": "==1.34.105" + }, + "botocore-stubs": { + "hashes": [ + "sha256:64d80a3467e3b19939e9c2750af33328b3087f8f524998dbdf7ed168227f507d", + "sha256:b0345f55babd8b901c53804fc5c326a4a0bd2e23e3b71f9ea5d9f7663466e6ba" + ], + "markers": "python_version >= '3.8' and python_version < '4.0'", + "version": "==1.34.94" + }, + "certifi": { + "hashes": [ + "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f", + "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1" + ], + "markers": "python_version >= '3.6'", + "version": "==2024.2.2" + }, + "cffi": { + "hashes": [ + "sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc", + "sha256:131fd094d1065b19540c3d72594260f118b231090295d8c34e19a7bbcf2e860a", + "sha256:1b8ebc27c014c59692bb2664c7d13ce7a6e9a629be20e54e7271fa696ff2b417", + "sha256:2c56b361916f390cd758a57f2e16233eb4f64bcbeee88a4881ea90fca14dc6ab", + "sha256:2d92b25dbf6cae33f65005baf472d2c245c050b1ce709cc4588cdcdd5495b520", + "sha256:31d13b0f99e0836b7ff893d37af07366ebc90b678b6664c955b54561fc36ef36", + "sha256:32c68ef735dbe5857c810328cb2481e24722a59a2003018885514d4c09af9743", + "sha256:3686dffb02459559c74dd3d81748269ffb0eb027c39a6fc99502de37d501faa8", + "sha256:582215a0e9adbe0e379761260553ba11c58943e4bbe9c36430c4ca6ac74b15ed", + "sha256:5b50bf3f55561dac5438f8e70bfcdfd74543fd60df5fa5f62d94e5867deca684", + "sha256:5bf44d66cdf9e893637896c7faa22298baebcd18d1ddb6d2626a6e39793a1d56", + "sha256:6602bc8dc6f3a9e02b6c22c4fc1e47aa50f8f8e6d3f78a5e16ac33ef5fefa324", + "sha256:673739cb539f8cdaa07d92d02efa93c9ccf87e345b9a0b556e3ecc666718468d", + "sha256:68678abf380b42ce21a5f2abde8efee05c114c2fdb2e9eef2efdb0257fba1235", + "sha256:68e7c44931cc171c54ccb702482e9fc723192e88d25a0e133edd7aff8fcd1f6e", + "sha256:6b3d6606d369fc1da4fd8c357d026317fbb9c9b75d36dc16e90e84c26854b088", + "sha256:748dcd1e3d3d7cd5443ef03ce8685043294ad6bd7c02a38d1bd367cfd968e000", + "sha256:7651c50c8c5ef7bdb41108b7b8c5a83013bfaa8a935590c5d74627c047a583c7", + "sha256:7b78010e7b97fef4bee1e896df8a4bbb6712b7f05b7ef630f9d1da00f6444d2e", + "sha256:7e61e3e4fa664a8588aa25c883eab612a188c725755afff6289454d6362b9673", + "sha256:80876338e19c951fdfed6198e70bc88f1c9758b94578d5a7c4c91a87af3cf31c", + "sha256:8895613bcc094d4a1b2dbe179d88d7fb4a15cee43c052e8885783fac397d91fe", + "sha256:88e2b3c14bdb32e440be531ade29d3c50a1a59cd4e51b1dd8b0865c54ea5d2e2", + "sha256:8f8e709127c6c77446a8c0a8c8bf3c8ee706a06cd44b1e827c3e6a2ee6b8c098", + "sha256:9cb4a35b3642fc5c005a6755a5d17c6c8b6bcb6981baf81cea8bfbc8903e8ba8", + "sha256:9f90389693731ff1f659e55c7d1640e2ec43ff725cc61b04b2f9c6d8d017df6a", + "sha256:a09582f178759ee8128d9270cd1344154fd473bb77d94ce0aeb2a93ebf0feaf0", + "sha256:a6a14b17d7e17fa0d207ac08642c8820f84f25ce17a442fd15e27ea18d67c59b", + "sha256:a72e8961a86d19bdb45851d8f1f08b041ea37d2bd8d4fd19903bc3083d80c896", + "sha256:abd808f9c129ba2beda4cfc53bde801e5bcf9d6e0f22f095e45327c038bfe68e", + "sha256:ac0f5edd2360eea2f1daa9e26a41db02dd4b0451b48f7c318e217ee092a213e9", + "sha256:b29ebffcf550f9da55bec9e02ad430c992a87e5f512cd63388abb76f1036d8d2", + "sha256:b2ca4e77f9f47c55c194982e10f058db063937845bb2b7a86c84a6cfe0aefa8b", + "sha256:b7be2d771cdba2942e13215c4e340bfd76398e9227ad10402a8767ab1865d2e6", + "sha256:b84834d0cf97e7d27dd5b7f3aca7b6e9263c56308ab9dc8aae9784abb774d404", + "sha256:b86851a328eedc692acf81fb05444bdf1891747c25af7529e39ddafaf68a4f3f", + "sha256:bcb3ef43e58665bbda2fb198698fcae6776483e0c4a631aa5647806c25e02cc0", + "sha256:c0f31130ebc2d37cdd8e44605fb5fa7ad59049298b3f745c74fa74c62fbfcfc4", + "sha256:c6a164aa47843fb1b01e941d385aab7215563bb8816d80ff3a363a9f8448a8dc", + "sha256:d8a9d3ebe49f084ad71f9269834ceccbf398253c9fac910c4fd7053ff1386936", + "sha256:db8e577c19c0fda0beb7e0d4e09e0ba74b1e4c092e0e40bfa12fe05b6f6d75ba", + "sha256:dc9b18bf40cc75f66f40a7379f6a9513244fe33c0e8aa72e2d56b0196a7ef872", + "sha256:e09f3ff613345df5e8c3667da1d918f9149bd623cd9070c983c013792a9a62eb", + "sha256:e4108df7fe9b707191e55f33efbcb2d81928e10cea45527879a4749cbe472614", + "sha256:e6024675e67af929088fda399b2094574609396b1decb609c55fa58b028a32a1", + "sha256:e70f54f1796669ef691ca07d046cd81a29cb4deb1e5f942003f401c0c4a2695d", + "sha256:e715596e683d2ce000574bae5d07bd522c781a822866c20495e52520564f0969", + "sha256:e760191dd42581e023a68b758769e2da259b5d52e3103c6060ddc02c9edb8d7b", + "sha256:ed86a35631f7bfbb28e108dd96773b9d5a6ce4811cf6ea468bb6a359b256b1e4", + "sha256:ee07e47c12890ef248766a6e55bd38ebfb2bb8edd4142d56db91b21ea68b7627", + "sha256:fa3a0128b152627161ce47201262d3140edb5a5c3da88d73a1b790a959126956", + "sha256:fcc8eb6d5902bb1cf6dc4f187ee3ea80a1eba0a89aba40a5cb20a5087d961357" + ], + "markers": "platform_python_implementation != 'PyPy'", + "version": "==1.16.0" + }, + "charset-normalizer": { + "hashes": [ + "sha256:06435b539f889b1f6f4ac1758871aae42dc3a8c0e24ac9e60c2384973ad73027", + "sha256:06a81e93cd441c56a9b65d8e1d043daeb97a3d0856d177d5c90ba85acb3db087", + "sha256:0a55554a2fa0d408816b3b5cedf0045f4b8e1a6065aec45849de2d6f3f8e9786", + "sha256:0b2b64d2bb6d3fb9112bafa732def486049e63de9618b5843bcdd081d8144cd8", + "sha256:10955842570876604d404661fbccbc9c7e684caf432c09c715ec38fbae45ae09", + "sha256:122c7fa62b130ed55f8f285bfd56d5f4b4a5b503609d181f9ad85e55c89f4185", + "sha256:1ceae2f17a9c33cb48e3263960dc5fc8005351ee19db217e9b1bb15d28c02574", + "sha256:1d3193f4a680c64b4b6a9115943538edb896edc190f0b222e73761716519268e", + "sha256:1f79682fbe303db92bc2b1136016a38a42e835d932bab5b3b1bfcfbf0640e519", + "sha256:2127566c664442652f024c837091890cb1942c30937add288223dc895793f898", + "sha256:22afcb9f253dac0696b5a4be4a1c0f8762f8239e21b99680099abd9b2b1b2269", + "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3", + "sha256:2e81c7b9c8979ce92ed306c249d46894776a909505d8f5a4ba55b14206e3222f", + "sha256:3287761bc4ee9e33561a7e058c72ac0938c4f57fe49a09eae428fd88aafe7bb6", + "sha256:34d1c8da1e78d2e001f363791c98a272bb734000fcef47a491c1e3b0505657a8", + "sha256:37e55c8e51c236f95b033f6fb391d7d7970ba5fe7ff453dad675e88cf303377a", + "sha256:3d47fa203a7bd9c5b6cee4736ee84ca03b8ef23193c0d1ca99b5089f72645c73", + "sha256:3e4d1f6587322d2788836a99c69062fbb091331ec940e02d12d179c1d53e25fc", + "sha256:42cb296636fcc8b0644486d15c12376cb9fa75443e00fb25de0b8602e64c1714", + "sha256:45485e01ff4d3630ec0d9617310448a8702f70e9c01906b0d0118bdf9d124cf2", + "sha256:4a78b2b446bd7c934f5dcedc588903fb2f5eec172f3d29e52a9096a43722adfc", + "sha256:4ab2fe47fae9e0f9dee8c04187ce5d09f48eabe611be8259444906793ab7cbce", + "sha256:4d0d1650369165a14e14e1e47b372cfcb31d6ab44e6e33cb2d4e57265290044d", + "sha256:549a3a73da901d5bc3ce8d24e0600d1fa85524c10287f6004fbab87672bf3e1e", + "sha256:55086ee1064215781fff39a1af09518bc9255b50d6333f2e4c74ca09fac6a8f6", + "sha256:572c3763a264ba47b3cf708a44ce965d98555f618ca42c926a9c1616d8f34269", + "sha256:573f6eac48f4769d667c4442081b1794f52919e7edada77495aaed9236d13a96", + "sha256:5b4c145409bef602a690e7cfad0a15a55c13320ff7a3ad7ca59c13bb8ba4d45d", + "sha256:6463effa3186ea09411d50efc7d85360b38d5f09b870c48e4600f63af490e56a", + "sha256:65f6f63034100ead094b8744b3b97965785388f308a64cf8d7c34f2f2e5be0c4", + "sha256:663946639d296df6a2bb2aa51b60a2454ca1cb29835324c640dafb5ff2131a77", + "sha256:6897af51655e3691ff853668779c7bad41579facacf5fd7253b0133308cf000d", + "sha256:68d1f8a9e9e37c1223b656399be5d6b448dea850bed7d0f87a8311f1ff3dabb0", + "sha256:6ac7ffc7ad6d040517be39eb591cac5ff87416c2537df6ba3cba3bae290c0fed", + "sha256:6b3251890fff30ee142c44144871185dbe13b11bab478a88887a639655be1068", + "sha256:6c4caeef8fa63d06bd437cd4bdcf3ffefe6738fb1b25951440d80dc7df8c03ac", + "sha256:6ef1d82a3af9d3eecdba2321dc1b3c238245d890843e040e41e470ffa64c3e25", + "sha256:753f10e867343b4511128c6ed8c82f7bec3bd026875576dfd88483c5c73b2fd8", + "sha256:7cd13a2e3ddeed6913a65e66e94b51d80a041145a026c27e6bb76c31a853c6ab", + "sha256:7ed9e526742851e8d5cc9e6cf41427dfc6068d4f5a3bb03659444b4cabf6bc26", + "sha256:7f04c839ed0b6b98b1a7501a002144b76c18fb1c1850c8b98d458ac269e26ed2", + "sha256:802fe99cca7457642125a8a88a084cef28ff0cf9407060f7b93dca5aa25480db", + "sha256:80402cd6ee291dcb72644d6eac93785fe2c8b9cb30893c1af5b8fdd753b9d40f", + "sha256:8465322196c8b4d7ab6d1e049e4c5cb460d0394da4a27d23cc242fbf0034b6b5", + "sha256:86216b5cee4b06df986d214f664305142d9c76df9b6512be2738aa72a2048f99", + "sha256:87d1351268731db79e0f8e745d92493ee2841c974128ef629dc518b937d9194c", + "sha256:8bdb58ff7ba23002a4c5808d608e4e6c687175724f54a5dade5fa8c67b604e4d", + "sha256:8c622a5fe39a48f78944a87d4fb8a53ee07344641b0562c540d840748571b811", + "sha256:8d756e44e94489e49571086ef83b2bb8ce311e730092d2c34ca8f7d925cb20aa", + "sha256:8f4a014bc36d3c57402e2977dada34f9c12300af536839dc38c0beab8878f38a", + "sha256:9063e24fdb1e498ab71cb7419e24622516c4a04476b17a2dab57e8baa30d6e03", + "sha256:90d558489962fd4918143277a773316e56c72da56ec7aa3dc3dbbe20fdfed15b", + "sha256:923c0c831b7cfcb071580d3f46c4baf50f174be571576556269530f4bbd79d04", + "sha256:95f2a5796329323b8f0512e09dbb7a1860c46a39da62ecb2324f116fa8fdc85c", + "sha256:96b02a3dc4381e5494fad39be677abcb5e6634bf7b4fa83a6dd3112607547001", + "sha256:9f96df6923e21816da7e0ad3fd47dd8f94b2a5ce594e00677c0013018b813458", + "sha256:a10af20b82360ab00827f916a6058451b723b4e65030c5a18577c8b2de5b3389", + "sha256:a50aebfa173e157099939b17f18600f72f84eed3049e743b68ad15bd69b6bf99", + "sha256:a981a536974bbc7a512cf44ed14938cf01030a99e9b3a06dd59578882f06f985", + "sha256:a9a8e9031d613fd2009c182b69c7b2c1ef8239a0efb1df3f7c8da66d5dd3d537", + "sha256:ae5f4161f18c61806f411a13b0310bea87f987c7d2ecdbdaad0e94eb2e404238", + "sha256:aed38f6e4fb3f5d6bf81bfa990a07806be9d83cf7bacef998ab1a9bd660a581f", + "sha256:b01b88d45a6fcb69667cd6d2f7a9aeb4bf53760d7fc536bf679ec94fe9f3ff3d", + "sha256:b261ccdec7821281dade748d088bb6e9b69e6d15b30652b74cbbac25e280b796", + "sha256:b2b0a0c0517616b6869869f8c581d4eb2dd83a4d79e0ebcb7d373ef9956aeb0a", + "sha256:b4a23f61ce87adf89be746c8a8974fe1c823c891d8f86eb218bb957c924bb143", + "sha256:bd8f7df7d12c2db9fab40bdd87a7c09b1530128315d047a086fa3ae3435cb3a8", + "sha256:beb58fe5cdb101e3a055192ac291b7a21e3b7ef4f67fa1d74e331a7f2124341c", + "sha256:c002b4ffc0be611f0d9da932eb0f704fe2602a9a949d1f738e4c34c75b0863d5", + "sha256:c083af607d2515612056a31f0a8d9e0fcb5876b7bfc0abad3ecd275bc4ebc2d5", + "sha256:c180f51afb394e165eafe4ac2936a14bee3eb10debc9d9e4db8958fe36afe711", + "sha256:c235ebd9baae02f1b77bcea61bce332cb4331dc3617d254df3323aa01ab47bd4", + "sha256:cd70574b12bb8a4d2aaa0094515df2463cb429d8536cfb6c7ce983246983e5a6", + "sha256:d0eccceffcb53201b5bfebb52600a5fb483a20b61da9dbc885f8b103cbe7598c", + "sha256:d965bba47ddeec8cd560687584e88cf699fd28f192ceb452d1d7ee807c5597b7", + "sha256:db364eca23f876da6f9e16c9da0df51aa4f104a972735574842618b8c6d999d4", + "sha256:ddbb2551d7e0102e7252db79ba445cdab71b26640817ab1e3e3648dad515003b", + "sha256:deb6be0ac38ece9ba87dea880e438f25ca3eddfac8b002a2ec3d9183a454e8ae", + "sha256:e06ed3eb3218bc64786f7db41917d4e686cc4856944f53d5bdf83a6884432e12", + "sha256:e27ad930a842b4c5eb8ac0016b0a54f5aebbe679340c26101df33424142c143c", + "sha256:e537484df0d8f426ce2afb2d0f8e1c3d0b114b83f8850e5f2fbea0e797bd82ae", + "sha256:eb00ed941194665c332bf8e078baf037d6c35d7c4f3102ea2d4f16ca94a26dc8", + "sha256:eb6904c354526e758fda7167b33005998fb68c46fbc10e013ca97f21ca5c8887", + "sha256:eb8821e09e916165e160797a6c17edda0679379a4be5c716c260e836e122f54b", + "sha256:efcb3f6676480691518c177e3b465bcddf57cea040302f9f4e6e191af91174d4", + "sha256:f27273b60488abe721a075bcca6d7f3964f9f6f067c8c4c605743023d7d3944f", + "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5", + "sha256:fb69256e180cb6c8a894fee62b3afebae785babc1ee98b81cdf68bbca1987f33", + "sha256:fd1abc0d89e30cc4e02e4064dc67fcc51bd941eb395c502aac3ec19fab46b519", + "sha256:ff8fa367d09b717b2a17a052544193ad76cd49979c805768879cb63d9ca50561" + ], + "markers": "python_full_version >= '3.7.0'", + "version": "==3.3.2" + }, + "click": { + "hashes": [ + "sha256:ae74fb96c20a0277a1d615f1e4d73c8414f5a98db8b799a7931d1582f3390c28", + "sha256:ca9853ad459e787e2192211578cc907e7594e294c7ccc834310722b41b9ca6de" + ], + "markers": "python_version >= '3.7'", + "version": "==8.1.7" + }, + "cryptography": { + "hashes": [ + "sha256:02c0eee2d7133bdbbc5e24441258d5d2244beb31da5ed19fbb80315f4bbbff55", + "sha256:0d563795db98b4cd57742a78a288cdbdc9daedac29f2239793071fe114f13785", + "sha256:16268d46086bb8ad5bf0a2b5544d8a9ed87a0e33f5e77dd3c3301e63d941a83b", + "sha256:1a58839984d9cb34c855197043eaae2c187d930ca6d644612843b4fe8513c886", + "sha256:2954fccea107026512b15afb4aa664a5640cd0af630e2ee3962f2602693f0c82", + "sha256:2e47577f9b18723fa294b0ea9a17d5e53a227867a0a4904a1a076d1646d45ca1", + "sha256:31adb7d06fe4383226c3e963471f6837742889b3c4caa55aac20ad951bc8ffda", + "sha256:3577d029bc3f4827dd5bf8bf7710cac13527b470bbf1820a3f394adb38ed7d5f", + "sha256:36017400817987670037fbb0324d71489b6ead6231c9604f8fc1f7d008087c68", + "sha256:362e7197754c231797ec45ee081f3088a27a47c6c01eff2ac83f60f85a50fe60", + "sha256:3de9a45d3b2b7d8088c3fbf1ed4395dfeff79d07842217b38df14ef09ce1d8d7", + "sha256:4f698edacf9c9e0371112792558d2f705b5645076cc0aaae02f816a0171770fd", + "sha256:5482e789294854c28237bba77c4c83be698be740e31a3ae5e879ee5444166582", + "sha256:5e44507bf8d14b36b8389b226665d597bc0f18ea035d75b4e53c7b1ea84583cc", + "sha256:779245e13b9a6638df14641d029add5dc17edbef6ec915688f3acb9e720a5858", + "sha256:789caea816c6704f63f6241a519bfa347f72fbd67ba28d04636b7c6b7da94b0b", + "sha256:7f8b25fa616d8b846aef64b15c606bb0828dbc35faf90566eb139aa9cff67af2", + "sha256:8cb8ce7c3347fcf9446f201dc30e2d5a3c898d009126010cbd1f443f28b52678", + "sha256:93a3209f6bb2b33e725ed08ee0991b92976dfdcf4e8b38646540674fc7508e13", + "sha256:a3a5ac8b56fe37f3125e5b72b61dcde43283e5370827f5233893d461b7360cd4", + "sha256:a47787a5e3649008a1102d3df55424e86606c9bae6fb77ac59afe06d234605f8", + "sha256:a79165431551042cc9d1d90e6145d5d0d3ab0f2d66326c201d9b0e7f5bf43604", + "sha256:a987f840718078212fdf4504d0fd4c6effe34a7e4740378e59d47696e8dfb477", + "sha256:a9bc127cdc4ecf87a5ea22a2556cab6c7eda2923f84e4f3cc588e8470ce4e42e", + "sha256:bd13b5e9b543532453de08bcdc3cc7cebec6f9883e886fd20a92f26940fd3e7a", + "sha256:c65f96dad14f8528a447414125e1fc8feb2ad5a272b8f68477abbcc1ea7d94b9", + "sha256:d8e3098721b84392ee45af2dd554c947c32cc52f862b6a3ae982dbb90f577f14", + "sha256:e6b79d0adb01aae87e8a44c2b64bc3f3fe59515280e00fb6d57a7267a2583cda", + "sha256:e6b8f1881dac458c34778d0a424ae5769de30544fc678eac51c1c8bb2183e9da", + "sha256:e9b2a6309f14c0497f348d08a065d52f3020656f675819fc405fb63bbcd26562", + "sha256:ecbfbc00bf55888edda9868a4cf927205de8499e7fabe6c050322298382953f2", + "sha256:efd0bf5205240182e0f13bcaea41be4fdf5c22c5129fc7ced4a0282ac86998c9" + ], + "index": "pypi", + "markers": "python_version >= '3.7'", + "version": "==42.0.7" + }, + "docker": { + "hashes": [ + "sha256:12ba681f2777a0ad28ffbcc846a69c31b4dfd9752b47eb425a274ee269c5e14b", + "sha256:323736fb92cd9418fc5e7133bc953e11a9da04f4483f828b527db553f1e7e5a3" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==7.0.0" + }, + "idna": { + "hashes": [ + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" + ], + "markers": "python_version >= '3.5'", + "version": "==3.7" + }, + "iniconfig": { + "hashes": [ + "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", + "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374" + ], + "markers": "python_version >= '3.7'", + "version": "==2.0.0" + }, + "jmespath": { + "hashes": [ + "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", + "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe" + ], + "markers": "python_version >= '3.7'", + "version": "==1.0.1" + }, + "markdown-it-py": { + "hashes": [ + "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", + "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb" + ], + "markers": "python_version >= '3.8'", + "version": "==3.0.0" + }, + "mdurl": { + "hashes": [ + "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", + "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba" + ], + "markers": "python_version >= '3.7'", + "version": "==0.1.2" + }, + "mypy": { + "hashes": [ + "sha256:075cbf81f3e134eadaf247de187bd604748171d6b79736fa9b6c9685b4083061", + "sha256:12b6bfc1b1a66095ab413160a6e520e1dc076a28f3e22f7fb25ba3b000b4ef99", + "sha256:1ec404a7cbe9fc0e92cb0e67f55ce0c025014e26d33e54d9e506a0f2d07fe5de", + "sha256:28d0e038361b45f099cc086d9dd99c15ff14d0188f44ac883010e172ce86c38a", + "sha256:2b0695d605ddcd3eb2f736cd8b4e388288c21e7de85001e9f85df9187f2b50f9", + "sha256:3236a4c8f535a0631f85f5fcdffba71c7feeef76a6002fcba7c1a8e57c8be1ec", + "sha256:3be66771aa5c97602f382230165b856c231d1277c511c9a8dd058be4784472e1", + "sha256:3d087fcbec056c4ee34974da493a826ce316947485cef3901f511848e687c131", + "sha256:3f298531bca95ff615b6e9f2fc0333aae27fa48052903a0ac90215021cdcfa4f", + "sha256:4a2b5cdbb5dd35aa08ea9114436e0d79aceb2f38e32c21684dcf8e24e1e92821", + "sha256:4cf18f9d0efa1b16478c4c129eabec36148032575391095f73cae2e722fcf9d5", + "sha256:8b2cbaca148d0754a54d44121b5825ae71868c7592a53b7292eeb0f3fdae95ee", + "sha256:8f55583b12156c399dce2df7d16f8a5095291354f1e839c252ec6c0611e86e2e", + "sha256:92f93b21c0fe73dc00abf91022234c79d793318b8a96faac147cd579c1671746", + "sha256:9e36fb078cce9904c7989b9693e41cb9711e0600139ce3970c6ef814b6ebc2b2", + "sha256:9fd50226364cd2737351c79807775136b0abe084433b55b2e29181a4c3c878c0", + "sha256:a781f6ad4bab20eef8b65174a57e5203f4be627b46291f4589879bf4e257b97b", + "sha256:a87dbfa85971e8d59c9cc1fcf534efe664d8949e4c0b6b44e8ca548e746a8d53", + "sha256:b808e12113505b97d9023b0b5e0c0705a90571c6feefc6f215c1df9381256e30", + "sha256:bc6ac273b23c6b82da3bb25f4136c4fd42665f17f2cd850771cb600bdd2ebeda", + "sha256:cd777b780312ddb135bceb9bc8722a73ec95e042f911cc279e2ec3c667076051", + "sha256:da1cbf08fb3b851ab3b9523a884c232774008267b1f83371ace57f412fe308c2", + "sha256:e22e1527dc3d4aa94311d246b59e47f6455b8729f4968765ac1eacf9a4760bc7", + "sha256:f8c083976eb530019175aabadb60921e73b4f45736760826aa1689dda8208aee", + "sha256:f90cff89eea89273727d8783fef5d4a934be2fdca11b47def50cf5d311aff727", + "sha256:fa7ef5244615a2523b56c034becde4e9e3f9b034854c93639adb667ec9ec2976", + "sha256:fcfc70599efde5c67862a07a1aaf50e55bce629ace26bb19dc17cece5dd31ca4" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==1.10.0" + }, + "mypy-extensions": { + "hashes": [ + "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", + "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782" + ], + "markers": "python_version >= '3.5'", + "version": "==1.0.0" + }, + "packaging": { + "hashes": [ + "sha256:2ddfb553fdf02fb784c234c7ba6ccc288296ceabec964ad2eae3777778130bc5", + "sha256:eb82c5e3e56209074766e6885bb04b8c38a0c015d0a30036ebe7ece34c9989e9" + ], + "markers": "python_version >= '3.7'", + "version": "==24.0" + }, + "pathspec": { + "hashes": [ + "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", + "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712" + ], + "markers": "python_version >= '3.8'", + "version": "==0.12.1" + }, + "platformdirs": { + "hashes": [ + "sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf", + "sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1" + ], + "markers": "python_version >= '3.8'", + "version": "==4.2.1" + }, + "pluggy": { + "hashes": [ + "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", + "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" + ], + "markers": "python_version >= '3.8'", + "version": "==1.5.0" + }, + "pycparser": { + "hashes": [ + "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", + "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc" + ], + "markers": "python_version >= '3.8'", + "version": "==2.22" + }, + "pygments": { + "hashes": [ + "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", + "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a" + ], + "markers": "python_version >= '3.8'", + "version": "==2.18.0" + }, + "pyjwt": { + "hashes": [ + "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de", + "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320" + ], + "index": "pypi", + "markers": "python_version >= '3.7'", + "version": "==2.8.0" + }, + "pytest": { + "hashes": [ + "sha256:1733f0620f6cda4095bbf0d9ff8022486e91892245bb9e7d5542c018f612f233", + "sha256:d507d4482197eac0ba2bae2e9babf0672eb333017bcedaa5fb1a3d42c1174b3f" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==8.2.0" + }, + "python-dateutil": { + "hashes": [ + "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", + "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==2.9.0.post0" + }, + "requests": { + "hashes": [ + "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f", + "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1" + ], + "markers": "python_version >= '3.7'", + "version": "==2.31.0" + }, + "rich": { + "hashes": [ + "sha256:4edbae314f59eb482f54e9e30bf00d33350aaa94f4bfcd4e9e3110e64d0d7222", + "sha256:9be308cb1fe2f1f57d67ce99e95af38a1e2bc71ad9813b0e247cf7ffbcc3a432" + ], + "index": "pypi", + "markers": "python_full_version >= '3.7.0'", + "version": "==13.7.1" + }, + "ruff": { + "hashes": [ + "sha256:0e2e06459042ac841ed510196c350ba35a9b24a643e23db60d79b2db92af0c2b", + "sha256:1f32cadf44c2020e75e0c56c3408ed1d32c024766bd41aedef92aa3ca28eef68", + "sha256:22e306bf15e09af45ca812bc42fa59b628646fa7c26072555f278994890bc7ac", + "sha256:24016ed18db3dc9786af103ff49c03bdf408ea253f3cb9e3638f39ac9cf2d483", + "sha256:33bcc160aee2520664bc0859cfeaebc84bb7323becff3f303b8f1f2d81cb4edc", + "sha256:3afabaf7ba8e9c485a14ad8f4122feff6b2b93cc53cd4dad2fd24ae35112d5c5", + "sha256:5ec481661fb2fd88a5d6cf1f83403d388ec90f9daaa36e40e2c003de66751798", + "sha256:652e4ba553e421a6dc2a6d4868bc3b3881311702633eb3672f9f244ded8908cd", + "sha256:6a2243f8f434e487c2a010c7252150b1fdf019035130f41b77626f5655c9ca22", + "sha256:6ab165ef5d72392b4ebb85a8b0fbd321f69832a632e07a74794c0e598e7a8376", + "sha256:7891ee376770ac094da3ad40c116258a381b86c7352552788377c6eb16d784fe", + "sha256:799eb468ea6bc54b95527143a4ceaf970d5aa3613050c6cff54c85fda3fde480", + "sha256:82986bb77ad83a1719c90b9528a9dd663c9206f7c0ab69282af8223566a0c34e", + "sha256:8772130a063f3eebdf7095da00c0b9898bd1774c43b336272c3e98667d4fb8fa", + "sha256:8d14dc8953f8af7e003a485ef560bbefa5f8cc1ad994eebb5b12136049bbccc5", + "sha256:cbd1e87c71bca14792948c4ccb51ee61c3296e164019d2d484f3eaa2d360dfaf", + "sha256:ec4ba9436a51527fb6931a8839af4c36a5481f8c19e8f5e42c2f7ad3a49f5069" + ], + "index": "pypi", + "markers": "python_version >= '3.7'", + "version": "==0.4.2" + }, + "s3transfer": { + "hashes": [ + "sha256:5683916b4c724f799e600f41dd9e10a9ff19871bf87623cc8f491cb4f5fa0a19", + "sha256:ceb252b11bcf87080fb7850a224fb6e05c8a776bab8f2b64b7f25b969464839d" + ], + "markers": "python_version >= '3.8'", + "version": "==0.10.1" + }, + "six": { + "hashes": [ + "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926", + "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254" + ], + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==1.16.0" + }, + "types-awscrt": { + "hashes": [ + "sha256:3ae374b553e7228ba41a528cf42bd0b2ad7303d806c73eff4aaaac1515e3ea4e", + "sha256:64898a2f4a2468f66233cb8c29c5f66de907cf80ba1ef5bb1359aef2f81bb521" + ], + "markers": "python_version >= '3.7' and python_version < '4.0'", + "version": "==0.20.9" + }, + "types-docker": { + "hashes": [ + "sha256:9a1245de5163c775665af3d473453aff490749c16720c1b086b2fd7de794c5e1", + "sha256:d2fe85da198ed5dbb988b6c1223e0893fd93b9316ed04fd79435fd0f12a59e29" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==7.0.0.20240513" + }, + "types-requests": { + "hashes": [ + "sha256:4428df33c5503945c74b3f42e82b181e86ec7b724620419a2966e2de604ce1a1", + "sha256:6216cdac377c6b9a040ac1c0404f7284bd13199c0e1bb235f4324627e8898cf5" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==2.31.0.20240406" + }, + "types-s3transfer": { + "hashes": [ + "sha256:02154cce46528287ad76ad1a0153840e0492239a0887e8833466eccf84b98da0", + "sha256:49a7c81fa609ac1532f8de3756e64b58afcecad8767933310228002ec7adff74" + ], + "markers": "python_version >= '3.8' and python_version < '4.0'", + "version": "==0.10.1" + }, + "typing-extensions": { + "hashes": [ + "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", + "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" + ], + "markers": "python_version >= '3.8'", + "version": "==4.11.0" + }, + "urllib3": { + "hashes": [ + "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84", + "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e" + ], + "markers": "python_version >= '3.11'", + "version": "==2.0.7" + } + } +} diff --git a/opentrons-ai-server/README.md b/opentrons-ai-server/README.md index e00cdc1af3d..27a8855b44d 100644 --- a/opentrons-ai-server/README.md +++ b/opentrons-ai-server/README.md @@ -6,34 +6,56 @@ The Opentrons AI application's server. ## Developing -To get started: clone the `Opentrons/opentrons` repository, set up your computer for development as specified in the [contributing guide][contributing-guide-setup], and then: - -```shell -# change into the cloned directory -cd opentrons -# prerequisite: install dependencies as specified in project setup -make setup -# launch the dev server -make -C opentrons-ai-server dev -``` - -## Stack and structure - -The UI stack is built using: - -- [OpenAI Python API library][] - -Some important directories: - -- `opentrons-ai-client` — Opentrons AI application's client-side - -## Testing - -TBD - -## Building - -TBD - -[pytest]: https://docs.pytest.org/en/ -[openai python api library]: https://pypi.org/project/openai/ +- This folder is **not** plugged into the global Make ecosystem. This is intentional, this is a serverless application not tied to the Robot Stack dependencies. + +### Setup + +1. clone the repository `gh repo clone Opentrons/opentrons` +1. `cd opentrons/opentrons-ai-server` +1. Have pyenv installed per [DEV_SETUP.md](../DEV_SETUP.md) +1. Use pyenv to install python `pyenv install 3.12.3` or latest 3.12.\* +1. Have nodejs and yarn installed per [DEV_SETUP.md](../DEV_SETUP.md) + 1. This allows formatting of of `.md` and `.json` files +1. select the python version `pyenv local 3.12.3` + 1. This will create a `.python-version` file in this directory +1. select the node version with `nvs` or `nvm` currently 18.19\* +1. Install pipenv and python dependencies `make setup` +1. to build and deploy you must have +1. AWS credentials and the right roles +1. docker installed + +## Install a dev dependency + +`python -m pipenv install pytest==8.2.0 --dev` + +## Install a production dependency + +`python -m pipenv install openai==1.25.1` + +## Lambda Code Organizations and Separation of Concerns + +- handler + - the lambda handler +- domain + - the business logic +- integration + - the integration with other services + +## Dev process + +1. Make your changes +1. Fix what can be automatically then lent and unit test like CI will `make pre-commit` +1. `make pre-commit` passes +1. deploy to sandbox `make deploy test-live ENV=sandbox AWS_PROFILE=the-profile` + +## Custom runtime + +- Due to the size requirements of `llama-index` and our data we switched to a custom runtime +- This also allows us to use HTTP streaming +- The runtime is defined in the `Dockerfile` +- deploy.py contains the steps to + 1. build the container image + 1. tag the container image (currently uses the epoch until versioning in place) + 1. log into and push to the correct ECR + 1. create a new lambda version against the new image + 1. await the function to be ready diff --git a/opentrons-ai-server/api/__init__.py b/opentrons-ai-server/api/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/opentrons-ai-server/api/domain/__init__.py b/opentrons-ai-server/api/domain/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/opentrons-ai-server/api/domain/openai_predict.py b/opentrons-ai-server/api/domain/openai_predict.py new file mode 100644 index 00000000000..d6a0d7706c9 --- /dev/null +++ b/opentrons-ai-server/api/domain/openai_predict.py @@ -0,0 +1,199 @@ +from pathlib import Path +from typing import List, Tuple + +from llama_index.core import Settings as li_settings +from llama_index.core import StorageContext, load_index_from_storage +from llama_index.embeddings.openai import OpenAIEmbedding +from llama_index.llms.openai import OpenAI as li_OpenAI +from llama_index.program.openai import OpenAIPydanticProgram +from openai import OpenAI +from openai.types.chat import ChatCompletion, ChatCompletionFunctionMessageParam, ChatCompletionMessage, ChatCompletionMessageParam +from pydantic import BaseModel + +from api.domain.prompts import ( + example_pcr_1, + execute_function_call, + general_rules_1, + pipette_type, + prompt_template_str, + rules_for_transfer, + standard_labware_api, + system_notes, + tools, +) +from api.domain.utils import refine_characters +from api.settings import Settings, is_running_on_lambda + +ROOT_PATH: Path = Path(Path(__file__)).parent.parent.parent + + +class OpenAIPredict: + def __init__(self, settings: Settings) -> None: + self.settings: Settings = settings + self.client: OpenAI = OpenAI(api_key=settings.openai_api_key.get_secret_value()) + li_settings.embed_model = OpenAIEmbedding( + model_name="text-embedding-3-large", api_key=self.settings.openai_api_key.get_secret_value() + ) + + def get_docs_all(self, query: str) -> Tuple[str, str, str]: + commands = self.extract_atomic_description(query) + print(f"commands: {commands}") + + # define file paths for storage + example_command_path = str(ROOT_PATH / "api" / "storage" / "index" / "commands") + documentation_path = str(ROOT_PATH / "api" / "storage" / "index" / "v215") + labware_api_path = standard_labware_api + + # retrieve example commands + example_commands = f"\n\n{'='*15} EXAMPLE COMMANDS {'='*15}\n" + storage_context = StorageContext.from_defaults(persist_dir=example_command_path) + index = load_index_from_storage(storage_context) + retriever = index.as_retriever(similarity_top_k=1) + content_all = "" + if isinstance(commands, list): + for command in commands: + nodes = retriever.retrieve(command) + content = "\n".join(node.text for node in nodes) + content_all += f">>>> >>>> \n\\{content}n" + example_commands += content_all + else: + example_commands = [] + + # 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) + nodes = retriever.retrieve(query) + docs = "\n".join(node.text.strip() for node in nodes) + docs_v215 = f"\n{'='*15} DOCUMENTATION {'='*15}\n\n" + docs + + # 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 + + def extract_atomic_description(self, protocol_description: str) -> List[str]: + class atomic_descr(BaseModel): + """ + Model for atomic descriptions + """ + + desc: List[str] + + program = OpenAIPydanticProgram.from_defaults( + output_cls=atomic_descr, + prompt_template_str=prompt_template_str.format(protocol_description=protocol_description), + verbose=False, + llm=li_OpenAI(model=self.settings.OPENAI_MODEL_NAME), + ) + details = program(protocol_description=protocol_description) + descriptions = [] + print("=" * 50) + for x in details.desc: + if x not in ["Modules:", "Adapter:", "Labware:", "Pipette mount:", "Commands:", "Well Allocation:", "No modules"]: + descriptions.append(x) + return descriptions + + def refine_response(self, assitant_message: str) -> str: + if assitant_message is None: + return "" + system_message: ChatCompletionMessageParam = { + "role": "system", + "content": f"{general_rules_1}\n Please leave useful comments for each command.", + } + + user_message: ChatCompletionMessageParam = {"role": "user", "content": assitant_message} + + response = self.client.chat.completions.create( + model=self.settings.OPENAI_MODEL_NAME, + messages=[system_message, user_message], + stream=False, + temperature=0.005, + max_tokens=4000, + top_p=0.0, + frequency_penalty=0, + presence_penalty=0, + ) + + return response.choices[0].message.content if response.choices[0].message.content is not None else "" + + def predict(self, prompt: str, chat_completion_message_params: List[ChatCompletionMessageParam] | None = None) -> None | str: + + prompt = refine_characters(prompt) + messages: List[ChatCompletionMessageParam] = [{"role": "system", "content": system_notes}] + if chat_completion_message_params: + messages += chat_completion_message_params + + example_commands, docs_v215, 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"{rules_for_transfer}\n\n{standard_api_names}\n\n", + } + + messages.append(user_message) + + response: ChatCompletion = self.client.chat.completions.create( + model=self.settings.OPENAI_MODEL_NAME, + messages=messages, + stream=False, + temperature=0.005, + max_tokens=4000, + top_p=0.0, + frequency_penalty=0, + presence_penalty=0, + tools=tools, + tool_choice="auto", + ) + + assistant_message: ChatCompletionMessage = response.choices[0].message + if assistant_message.content is None: + assistant_message.content = "" + assistant_message.content = str(self.refine_response(assistant_message.content)) + + if assistant_message.tool_calls and assistant_message.tool_calls[0]: + print("Simulation is started.") + if assistant_message.tool_calls[0]: + assistant_message.content = str(assistant_message.tool_calls[0].function) + messages.append({"role": assistant_message.role, "content": assistant_message.content}) + tool_call = assistant_message.tool_calls[0] + function_response = execute_function_call(tool_call.function.name, tool_call.function.arguments) + + # append tool call response to messages + messages.append( + ChatCompletionFunctionMessageParam(role="function", name=tool_call.function.name, content=str(function_response)) + ) + response2: ChatCompletion = self.client.chat.completions.create( + model=self.settings.OPENAI_MODEL_NAME, + messages=messages, + stream=False, + temperature=0, + max_tokens=4000, + top_p=0.0, + frequency_penalty=0, + presence_penalty=0, + ) + final_response = response2.choices[0].message.content + return final_response + return assistant_message.content + + +def main() -> None: + """Intended for testing this class locally.""" + if is_running_on_lambda(): + return + from rich import print + from rich.prompt import Prompt + + settings = Settings.build() + openai = OpenAIPredict(settings) + prompt = Prompt.ask("Type a prompt to send to the OpenAI API:") + completion = openai.predict(prompt) + print(completion) + + +if __name__ == "__main__": + main() diff --git a/opentrons-ai-server/api/domain/prompts.py b/opentrons-ai-server/api/domain/prompts.py new file mode 100644 index 00000000000..001cc40c290 --- /dev/null +++ b/opentrons-ai-server/api/domain/prompts.py @@ -0,0 +1,512 @@ +import json +import uuid +from typing import Any, Dict, Iterable + +import requests +from openai.types.chat import ChatCompletionToolParam + +from api.settings import Settings + +settings = Settings.build() + + +def generate_unique_name() -> str: + unique_name = str(uuid.uuid4()) + ".py" + return unique_name + + +def send_post_request(payload: str) -> str: + url = "https://Opentrons-simulator.hf.space/protocol" + protocol_name: str = generate_unique_name() + data = {"name": protocol_name, "content": payload} + hf_token: str = settings.huggingface_api_key.get_secret_value() + headers = {"Content-Type": "application/json", "Authorization": "Bearer {}".format(hf_token)} + + response = requests.post(url, json=data, headers=headers) + + if response.status_code != 200: + print("Error: " + response.text) + return "Error: " + response.text + + # Check the response before returning it + # ToDo clean up code + response_data: Dict[str, Any] = response.json() + if "error_message" in response_data: + print("Error in response:", response_data["error_message"]) + return str(response_data["error_message"]) + elif "protocol_name" in response_data: + # print("Protocol executed successfully. Run log:", response_data["run_log"]) + + return str(response_data["run_status"]) + # ToDo if run_log option is on + # return response_data["run_log"] + else: + print("Unexpected response:", response_data) + return "Unexpected response" + + +def simulate_protocol(protocol: str) -> str: + response: str = send_post_request(protocol) + return response + + +available_functions: Dict[str, Any] = { + "simulate_protocol": simulate_protocol, +} + + +tools: Iterable[ChatCompletionToolParam] = [ + { + "type": "function", + "function": { + "name": "simulate_protocol", + "description": "Simulate the python protocol", + "parameters": { + "type": "object", + "properties": { + "protocol": { + "type": "string", + "description": "the python protocol in string format", + } + }, + "required": ["protocol"], + }, + }, + } +] + + +def execute_function_call(function_name: str, arguments: str) -> str: + function = available_functions.get(function_name, None) + if function: + _arguments: Dict[str, Any] = json.loads(arguments) + result = function(**_arguments) + if isinstance(result, str): + return result + else: + return str(result) + else: + return f"Error: function {function_name} does not exist" + + +system_notes = """\ +You are an expert at generating a protocol based on Opentrons Python API v2. +You will be shown the user's question/description and information related to +the Opentrons Python API v2 documentation. And you respond the user's question/description +using only this information. + +INSTRUCTIONS: + +1) All types of protocols are based on apiLevel 2.15, + thus prepend the following code block +`metadata` and `requirements`: +```python +from opentrons import protocol_api + +metadata = { + 'protocolName': '[protocol name by user]', + 'author': '[user name]', + 'description': "[what is the protocol about]" +} +requirements = {"robotType": "[Robot type]", "apiLevel": "2.15"} +``` + +2) See the transfer rules <> below. +3) Learn examples see <> + +4) Inside `run` function, according to the description generate the following in order: +- modules +- adapter +- labware +- pipettes +Note that sometimes API names is very long eg., +`Opentrons 96 Flat Bottom Adapter with NEST 96 Well Plate 200 uL Flat` + + +5) If the pipette is multi-channel eg., P20 Multi-Channel Gen2, please use `columns` method. +\n\n +""" + +standard_labware_api = """ + + + +### Approved Pipette Loadnames +Note that the labware names are hard to differenciate sometimes, +since there are caes that they differ in terms of last digits only. + +#### OT-2 Approved Loadnames +For OT-2 robots, use the following approved loadnames: +- p20_single_gen2 +- p300_single_gen2 +- p1000_single_gen2 +- p300_multi_gen2 +- p20_multi_gen2 + +#### Flex Approved Loadnames +For Flex robots, use these approved loadnames: +- flex_1channel_50 +- flex_1channel_1000 +- flex_8channel_50 +- flex_8channel_1000 +- flex_96channel_1000 + + +### Agilent Labware +- Agilent 1 Well Reservoir 290 mL: agilent_1_reservoir_290ml + +### Applied Biosystems Labware +- Applied Biosystems MicroAmp 384 Well Plate 40 uL: appliedbiosystemsmicroamp_384_wellplate_40ul + +### Axygen Labware +- Axygen 1 Well Reservoir 90 mL: axygen_1_reservoir_90ml + +### Bio-Rad Labware +- Bio-Rad 384 Well Plate 50 uL: biorad_384_wellplate_50ul +- Bio-Rad 96 Well Plate 200 uL PCR: biorad_96_wellplate_200ul_pcr + +### Corning Labware +- Corning 12 Well Plate 6.9 mL Flat: corning_12_wellplate_6.9ml_flat +- Corning 24 Well Plate 3.4 mL Flat: corning_24_wellplate_3.4ml_flat +- Corning 384 Well Plate 112 uL Flat: corning_384_wellplate_112ul_flat +- Corning 48 Well Plate 1.6 mL Flat: corning_48_wellplate_1.6ml_flat +- Corning 6 Well Plate 16.8 mL Flat: corning_6_wellplate_16.8ml_flat +- Corning 96 Well Plate 360 uL Flat: corning_96_wellplate_360ul_flat + +### GEB Labware +- GEB 96 Tip Rack 1000 uL: geb_96_tiprack_1000ul +- GEB 96 Tip Rack 10 uL: geb_96_tiprack_10ul + +### NEST Labware +- NEST 12 Well Reservoir 15 mL: nest_12_reservoir_15ml +- NEST 1 Well Reservoir 195 mL: nest_1_reservoir_195ml +- NEST 1 Well Reservoir 290 mL: nest_1_reservoir_290ml +- NEST 96 Well Plate 100 uL PCR Full Skirt: nest_96_wellplate_100ul_pcr_full_skirt +- NEST 96 Well Plate 200 uL Flat: nest_96_wellplate_200ul_flat +- NEST 96 Deep Well Plate 2mL: nest_96_wellplate_2ml_deep + + +### Opentrons Labware +- Opentrons 10 Tube Rack with Falcon 4x50 mL, 6x15 mL Conical: opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical +- Opentrons 10 Tube Rack with NEST 4x50 mL, 6x15 mL Conical: opentrons_10_tuberack_nest_4x50ml_6x15ml_conical +- Opentrons 15 Tube Rack with Falcon 15 mL Conical: opentrons_15_tuberack_falcon_15ml_conical +- Opentrons 15 Tube Rack with NEST 15 mL Conical: opentrons_15_tuberack_nest_15ml_conical +- Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap: opentrons_24_aluminumblock_generic_2ml_screwcap +- Opentrons 24 Well Aluminum Block with NEST 0.5 mL Screwcap: opentrons_24_aluminumblock_nest_0.5ml_screwcap +- Opentrons 24 Well Aluminum Block with NEST 1.5 mL Screwcap: opentrons_24_aluminumblock_nest_1.5ml_screwcap +- Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap: opentrons_24_aluminumblock_nest_1.5ml_snapcap +- Opentrons 24 Well Aluminum Block with NEST 2 mL Screwcap: opentrons_24_aluminumblock_nest_2ml_screwcap +- Opentrons 24 Well Aluminum Block with NEST 2 mL Snapcap: opentrons_24_aluminumblock_nest_2ml_snapcap +- Opentrons 24 Tube Rack with Eppendorf 1.5 mL Safe-Lock Snapcap: opentrons_24_tuberack_eppendorf_1.5ml_safelock_snapcap +- Opentrons 24 Tube Rack with Eppendorf 2 mL Safe-Lock Snapcap: opentrons_24_tuberack_eppendorf_2ml_safelock_snapcap +- Opentrons 24 Tube Rack with Generic 2 mL Screwcap: opentrons_24_tuberack_generic_2ml_screwcap +- Opentrons 24 Tube Rack with NEST 0.5 mL Screwcap: opentrons_24_tuberack_nest_0.5ml_screwcap #not opentrons_24_tuberack_nest_0_5ml_screwcap +- Opentrons 24 Tube Rack with NEST 1.5 mL Screwcap: opentrons_24_tuberack_nest_1.5ml_screwcap #not opentrons_24_tuberack_nest_1_5ml_screwcap +- Opentrons 24 Tube Rack with NEST 1.5 mL Snapcap: opentrons_24_tuberack_nest_1.5ml_snapcap + # note the use of dot. (`.`); opentrons_24_tuberack_nest_1_5ml_snapcap is incorrect +- Opentrons 24 Tube Rack with NEST 2 mL Screwcap: opentrons_24_tuberack_nest_2ml_screwcap +- Opentrons 24 Tube Rack with NEST 2 mL Snapcap: opentrons_24_tuberack_nest_2ml_snapcap +- Opentrons 6 Tube Rack with Falcon 50 mL Conical: opentrons_6_tuberack_falcon_50ml_conical +- Opentrons 6 Tube Rack with NEST 50 mL Conical: opentrons_6_tuberack_nest_50ml_conical +- Opentrons 96 Well Aluminum Block with Bio-Rad Well Plate 200 uL: opentrons_96_aluminumblock_biorad_wellplate_200ul +- Opentrons 96 Well Aluminum Block with Generic PCR Strip 200 uL: opentrons_96_aluminumblock_generic_pcr_strip_200ul +- Opentrons 96 Well Aluminum Block with NEST Well Plate 100 uL: opentrons_96_aluminumblock_nest_wellplate_100ul +- Opentrons 96 Deep Well Heater-Shaker Adapter: opentrons_96_deep_well_adapter +- Opentrons 96 Deep Well Heater-Shaker Adapter with NEST Deep Well Plate 2 mL: opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep +- Opentrons OT-2 96 Filter Tip Rack 1000 uL: opentrons_96_filtertiprack_1000ul +- Opentrons OT-2 96 Filter Tip Rack 10 uL: opentrons_96_filtertiprack_10ul +- Opentrons OT-2 96 Filter Tip Rack 200 uL: opentrons_96_filtertiprack_200ul +- Opentrons OT-2 96 Filter Tip Rack 20 uL: opentrons_96_filtertiprack_20ul +- Opentrons 96 Flat Bottom Heater-Shaker Adapter: opentrons_96_flat_bottom_adapter +- Opentrons 96 Flat Bottom Heater-Shaker Adapter with NEST 96 Well Plate 200 uL Flat: + opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat +- Opentrons 96 PCR Heater-Shaker Adapter: opentrons_96_pcr_adapter +- Opentrons 96 PCR Heater-Shaker Adapter with NEST Well Plate 100 ul: opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt +- Opentrons OT-2 96 Tip Rack 1000 uL: opentrons_96_tiprack_1000ul +- Opentrons OT-2 96 Tip Rack 10 uL: opentrons_96_tiprack_10ul +- Opentrons OT-2 96 Tip Rack 20 uL: opentrons_96_tiprack_20ul +- Opentrons OT-2 96 Tip Rack 300 uL: opentrons_96_tiprack_300ul +- Opentrons 96 Well Aluminum Block: opentrons_96_well_aluminum_block +- Opentrons 96 Well Aluminum Block adapter: opentrons_96_well_aluminum_block +- Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt: opentrons_96_wellplate_200ul_pcr_full_skirt +- Opentrons Aluminum Flat Bottom Plate: opentrons_aluminum_flat_bottom_plate +- Opentrons Flex 96 Filter Tip Rack 1000 uL: opentrons_flex_96_filtertiprack_1000ul +- Opentrons Flex 96 Filter Tip Rack 200 uL: opentrons_flex_96_filtertiprack_200ul # +- Opentrons Flex 96 Filter Tip Rack 50 uL: opentrons_flex_96_filtertiprack_50ul +- Opentrons Flex 96 Tip Rack 1000 uL: opentrons_flex_96_tiprack_1000ul +- Opentrons Flex 96 Tip Rack 200 uL: opentrons_flex_96_tiprack_200ul +- Opentrons Flex 96 Tip Rack 50 uL: opentrons_flex_96_tiprack_50ul +- Opentrons Flex 96 Tip Rack Adapter: opentrons_flex_96_tiprack_adapter +- Opentrons Universal Flat Heater-Shaker Adapter: opentrons_universal_flat_adapter +- Opentrons Universal Flat Heater-Shaker Adapter with Corning 384 Well Plate 112 ul Flat: \ + opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat + +### Other Labware Brands +- Thermo Scientific Nunc 96 Well Plate 1300 uL: thermoscientificnunc_96_wellplate_1300ul +- Thermo Scientific Nunc 96 Well Plate 2000 uL: thermoscientificnunc_96_wellplate_2000ul +- USA Scientific 12 Well Reservoir 22 mL: usascientific_12_reservoir_22ml +- USA Scientific 96 Deep Well Plate 2.4 mL: usascientific_96_wellplate_2.4ml_deep + +### Additional Opentrons Tube Racks +- 4-in-1 Tube Rack Set 15: opentrons_15_tuberack_nest_15ml_conical +- 4-in-1 Tube Rack Set 50: opentrons_6_tuberack_nest_50ml_conical + + +### Flex Pipettes +- Flex 1-Channel 50 uL Pipette (single channel): flex_1channel_50 +- Flex 1-Channel 1000 uL Pipette (single channel): flex_1channel_1000 +- Flex 8-Channel 50 uL Pipette (multi-channel): flex_8channel_50 +- Flex 8-Channel 1000 uL Pipette (multi-channel): flex_8channel_1000 +- Flex 96-Channel 1000 uL Pipette (multi-channel): flex_96channel_1000 + +### Modules +- temperature module: temperature module gen2 +- thermocycler module gen2: thermocyclerModuleV2 + + + +""" + +pipette_type = """\n +#### +Single channel pipettes: +- Flex 1-Channel 50 uL Pipette +- Flex 1-Channel 1000 uL Pipette +- flex_1channel_1000 + +#### +Multi channel pipettes: +- Flex 8-Channel 50 uL Pipette +- Flex 8-Channel 1000 uL Pipette +- Flex 96-Channel 1000 uL Pipette +""" + +example_pcr_1 = """ + +================= EXAMPLES ================= + +<> + +Write a protocol using the Opentrons Python Protocol API v2 for OT-2 robot for the following description: + +Labware: +- Source labware: `Opentrons 24 Tube Rack with NEST 1.5 mL Snapcap` in slot 3 +- Destination Labware: `Opentrons Tough 96 Well Plate 200 uL PCR Full Skirt` in slot 9 +- `Opentrons OT-2 96 Tip Rack 20 uL` in slot 2 + +Pipette mount: +- P20 Single Channel is mounted on the right + +Commands: +1. Using P20 Single Channel, transfer 1ul of reagent from the first tube of the source rack to each well in the destination plate. +Use the same tip for each transfer. + + + +```python +from opentrons import protocol_api + +metadata = { + 'protocolName': 'Reagent Transfer', + 'author': 'chatGPT', + 'description': 'Transfer reagent', +} +requirements = {"robotType": "OT-2", "apiLevel": "2.15"} + +def run(protocol): + # labware + tiprack = protocol.load_labware('opentrons_96_tiprack_20ul', 2) + source = protocol.load_labware('opentrons_24_tuberack_nest_1.5ml_snapcap', 3) + destination = protocol.load_labware('opentrons_96_wellplate_200ul_pcr_full_skirt', 9) + + # pipettes + p20s = protocol.load_instrument('p20_single_gen2', mount="right", tip_racks=[tiprack]) + + # parameters + vol = 1 + src_well = source.wells_by_name()['A1'] + dest_wells = destination.wells() + + # commands + p20s.transfer(vol, src_well, dest_wells, new_tip='once') +``` +Note that `transfer` method doesnt use any `for` loop in python. + + + + +<> +Using Flex 1-Channel 1000 uL Pipette on left mount, transfer 150 uL from wells A1, A2 in source labware 1 + to B6, B7 in source labware 2. Use the same tip for each transfer. + +First collect all wells for source and destination: +```python +source_wells_1 = [source_1.wells_by_name()[wells] for wells in ['A1', 'A2']] +destination_wells_1 = [source_2.wells_by_name()[wells] for wells in ['B6', 'B7']] +``` +Then use a transfer method, like so: +```python +p1000s.transfer(150, source_wells_1, destination_wells_1, new_tip="once") +``` + +Note that we are using a single transfer function for multiple wells. +""" + +rules_for_transfer = """ + +================= COMMON RULES for TRANSFER ================= + +- when we allocate wells for source and destination, we need to pay attention to pipette type. +For example, see the command below +``` +Sample source wells: the first 64 well column-wise in the sample source plate. +``` + +- pipette (eg., Flex 8-Channel 1000 uL Pipette), given the number of wells + we need to estimate the columns and use method `labware.columns()` to access the columns. + For example, + ```python + number_of_columns = math.ceil([number_of_samples] / 8) + source_wells = labware.columns()[:number_of_columns] + ``` + +- pipette (eg., Flex 1-Channel 1000 uL Pipette), +we use `labware.wells()`. For example, +```python +source_wells = labware.wells()[:[number_of_samples]] +``` +- If prompt says row-wise, we need to use `rows()` +- If prompt does not mention column-wise, we use `wells()` since it is default. +- If the number of samples are not specified, then use all wells. +```python +source_wells = sample_plate.wells() +``` +- If `blowout_location` location is mentioned explicitly, then incorporate to transfer method. +- Avoid using `for` with transfer +the following is incorrect: +```python +source_columns = [source_labware.columns_by_name()[str(index)] for index in [3, 2, 5, 1, 10]] +destination_columns = [source_labware.columns_by_name()[str(index)] for index in [4, 8, 1, 9, 2]] + +# Transfer reagents +for src, dest in zip(source_columns, destination_columns): + pipette.transfer(14.0, src, dest, new_tip='always') +``` + +The correct: +```python +source_columns = [source_labware.columns_by_name()[str(index)] for index in [3, 2, 5, 1, 10]] +destination_columns = [source_labware.columns_by_name()[str(index)] for index in [4, 8, 1, 9, 2]] + +# Transfer reagents +pipette.transfer(14.0, source_columns, destination_columns, new_tip='always') +``` +""" + +general_rules_1 = """ +If the input prompt do not contain any python protocol, or general request, then respond based on previous message. + +If the input prompt is python protocol for Opentrons robots, do the following as needed: + + + +1. Check if `transfer` is used inside `for` loop. If it is used, change the code such that + `for` is removed since transfer method can handle lists implicitly well. + +For example, Excerpt-1 and Excerpt-2 shown below are the same in terms of functionality. +But, we want Excerpt-2 over Excerpt-1 since `transfer` method handles lists implicitly. + +Excerpt-1 +```python +for source_well, destination_well in zip(source_wells, destination_wells): + pipette.pick_up_tip() + pipette.transfer(TRANSFER_VOL, source_well, destination_well, new_tip='never') + pipette.drop_tip() +``` + +Excerpt-2 +```python +pipette.transfer(TRANSFER_VOL, source_wells, destination_wells, new_tip='always') +``` + + + +2. Note that when command says `Use the same tip for all transfers` or similar. +Do not use new_tip='once' inside `for` loop, because this is not correct: +```python +for src, dest in zip(source_columns, destination_columns): + pipette.transfer(transfer_vol, src, dest, new_tip='once') +``` + +Instead, use without `for` loop like so: +```python +pipette.transfer(transfer_vol, source_columns, destination_columns, new_tip='once') +``` + +Otherwise, return the prompt as it is. + + + +3. Do not forget import necessary libraries such as `import math`, when using `ceil` or other methods. + + + +4. If the pipette is multi-channel eg., P20 Multi-Channel Gen2, please use `columns` method. + + +When you respond dont be verbose like reiterating what you have done, just return the python protocol. + +""" + +prompt_template_str = """\ + Below is a protocol description containing detailed information about the protocol: + + {protocol_description} + + Convert the protocol description to several atomic descriptions. \ + If statements are split by hyphen (-) or numbers (1), then each split can be considered\ + as a single atomic item. Get the statements fully. + If they are not split or unclear, please decide yourself. + If a protocol contains metadata and requirements, please ignore them. + If nothing is provided, return blank. + + Example input: + ``` + INTRO + + Metadata: + - M-1 + - M-2 + - M-3 + + Requirements: + - R-1 + + Modules + - M-1 + + Adapter + - A-1 + + Labware: + - L-1 + - L-2 + - L-3 + + Pipette mount: + - P-1 + + Well Allocation: + - wa-11 + - wa-12 + + Commands: + 1. C-1 + 2. C-2 + ``` + + Output: + ``` + [INTRO, M-1, A-1, L-1, L-2, L-3, P-1, wa-11, wa-12, C-1, C-2] + ``` + """ diff --git a/opentrons-ai-server/api/domain/utils.py b/opentrons-ai-server/api/domain/utils.py new file mode 100644 index 00000000000..6b54bb0c477 --- /dev/null +++ b/opentrons-ai-server/api/domain/utils.py @@ -0,0 +1,73 @@ +def refine_characters(prompt: str) -> str: + """ + Converts specific Greek characters in a string to their English phonetic equivalents and replaces + certain special characters. The function is designed to handle text with Greek characters and + special characters like backticks, converting them into more standardized or readable forms while + preserving the structure and formatting of the original text. + + Parameters: + - text (str): The input string containing Greek characters and possibly special characters. + + Returns: + - str: The modified string with Greek characters replaced by their English phonetic equivalents + and certain special characters like backticks replaced with single quotes. + + Example: + >>> refine_characters("Transfer `10μ`") + 'Transfer '10m'' + """ + + greek_to_english = { + "α": "a", + "β": "b", + "γ": "g", + "δ": "d", + "ε": "e", + "ζ": "z", + "η": "e", + "θ": "th", + "ι": "i", + "κ": "k", + "λ": "l", + "μ": "m", + "ν": "n", + "ξ": "x", + "ο": "o", + "π": "p", + "ρ": "r", + "σ": "s", + "ς": "s", + "τ": "t", + "υ": "u", + "φ": "ph", + "χ": "ch", + "ψ": "ps", + "ω": "o", + "Α": "A", + "Β": "B", + "Γ": "G", + "Δ": "D", + "Ε": "E", + "Ζ": "Z", + "Η": "E", + "Θ": "Th", + "Ι": "I", + "Κ": "K", + "Λ": "L", + "Μ": "M", + "Ν": "N", + "Ξ": "X", + "Ο": "O", + "Π": "P", + "Ρ": "R", + "Σ": "S", + "Τ": "T", + "Υ": "U", + "Φ": "Ph", + "Χ": "Ch", + "Ψ": "Ps", + "Ω": "O", + } + translation_table = str.maketrans(greek_to_english) + translated_text = prompt.translate(translation_table) + return translated_text diff --git a/opentrons-ai-server/api/handler/__init__.py b/opentrons-ai-server/api/handler/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/opentrons-ai-server/api/handler/function.py b/opentrons-ai-server/api/handler/function.py new file mode 100644 index 00000000000..8bc0113c698 --- /dev/null +++ b/opentrons-ai-server/api/handler/function.py @@ -0,0 +1,82 @@ +import json +import logging +from http import HTTPStatus +from typing import Any, Dict, Union + +from api.domain.openai_predict import OpenAIPredict +from api.models.chat_request import ChatRequest +from api.models.chat_response import ChatResponse +from api.models.empty_request_error import EmptyRequestError +from api.models.internal_server_error import InternalServerError +from api.settings import Settings + +logger = logging.getLogger() + + +def create_response(status_code: int, body: Any, content_type: str = "application/json") -> Dict[str, Any]: + return {"statusCode": status_code, "headers": {"Content-Type": content_type}, "body": json.dumps(body)} + + +def create_chat_completion(event: Dict[str, Any]) -> Dict[str, Any]: + logger.info("POST /chat/completion", extra={"event": event}) + try: + if not event.get("body"): + return create_response(HTTPStatus.BAD_REQUEST, EmptyRequestError(message="Request body is empty").model_dump()) + + body: ChatRequest = ChatRequest.model_validate_json(event["body"]) + if body.fake: + return create_response(HTTPStatus.OK, ChatResponse(reply="Fake response", fake=body.fake).model_dump()) + + settings: Settings = Settings.build() + openai: OpenAIPredict = OpenAIPredict(settings=settings) + response: Union[str, None] = openai.predict(prompt=body.message) + + if response is None or response == "": + return create_response(HTTPStatus.NO_CONTENT, ChatResponse(reply="No response was generated", fake=body.fake).model_dump()) + + return create_response(HTTPStatus.OK, ChatResponse(reply=response, fake=body.fake).model_dump()) + + except Exception as e: + logger.exception("Error processing request", extra={"error": str(e)}) + return create_response(HTTPStatus.INTERNAL_SERVER_ERROR, InternalServerError(exception_object=e).model_dump()) + + +def get_health(event: Dict[str, Any]) -> Dict[str, Any]: + logger.info("GET /health", extra={"event": event}) + return create_response(HTTPStatus.OK, {"version": "0.0.1"}) + + +def get_options(event: Dict[str, Any]) -> Dict[str, Any]: + """These are the CORS headers that are returned when an OPTIONS request is made""" + # These match the settings in terraform + allowed_origins = ",".join(["*"]) + allowed_methods = ",".join(["GET", "POST", "OPTIONS"]) + allowed_headers = ",".join(["content-type", "authorization", "origin", "accept"]) + expose_headers = ",".join(["content-type"]) + + cors_headers = { + "Access-Control-Allow-Origin": allowed_origins, + "Access-Control-Allow-Methods": allowed_methods, + "Access-Control-Allow-Headers": allowed_headers, + "Access-Control-Expose-Headers": expose_headers, + "Access-Control-Max-Age": "3600", + } + + return create_response(HTTPStatus.OK, cors_headers) + + +def handler(event: Dict[str, Any], context: Any) -> Dict[str, Any]: + settings: Settings = Settings.build() + raw_path: str = event.get("rawPath", "") + method: str = event.get("requestContext", {}).get("http", {}).get("method", "") + logger.info(f"path: {raw_path}, http_method: {method}") + # the below is not robust, this is to get things working + # TODO: this should be its own method with unit tests + if raw_path.lower() == f"/{settings.ENVIRONMENT}/chat/completion" and method.upper() == "POST": + return create_chat_completion(event) + elif raw_path == f"/{settings.ENVIRONMENT}/health".lower() and method.upper() == "GET": + return get_health(event) + elif method.upper() == "OPTIONS": + return get_options(event) + else: + return create_response(HTTPStatus.NOT_FOUND, {"message": f"path {raw_path} method {method} not found"}) diff --git a/opentrons-ai-server/api/integration/__init__.py b/opentrons-ai-server/api/integration/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/opentrons-ai-server/api/integration/aws_secrets_manager.py b/opentrons-ai-server/api/integration/aws_secrets_manager.py new file mode 100644 index 00000000000..a726eaeac0f --- /dev/null +++ b/opentrons-ai-server/api/integration/aws_secrets_manager.py @@ -0,0 +1,9 @@ +import boto3 +from pydantic import SecretStr + + +def fetch_secret(secret_name: str) -> SecretStr: + """Fetch a secret using Boto3.""" + client = boto3.client("secretsmanager") + response = client.get_secret_value(SecretId=secret_name) + return SecretStr(response["SecretString"]) diff --git a/opentrons-ai-server/api/models/__init__.py b/opentrons-ai-server/api/models/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/opentrons-ai-server/api/models/chat_request.py b/opentrons-ai-server/api/models/chat_request.py new file mode 100644 index 00000000000..77d714b234d --- /dev/null +++ b/opentrons-ai-server/api/models/chat_request.py @@ -0,0 +1,6 @@ +from pydantic import BaseModel + + +class ChatRequest(BaseModel): + message: str + fake: bool diff --git a/opentrons-ai-server/api/models/chat_response.py b/opentrons-ai-server/api/models/chat_response.py new file mode 100644 index 00000000000..d5a9609d0b1 --- /dev/null +++ b/opentrons-ai-server/api/models/chat_response.py @@ -0,0 +1,6 @@ +from pydantic import BaseModel + + +class ChatResponse(BaseModel): + reply: str + fake: bool diff --git a/opentrons-ai-server/api/models/empty_request_error.py b/opentrons-ai-server/api/models/empty_request_error.py new file mode 100644 index 00000000000..783b82cdf3c --- /dev/null +++ b/opentrons-ai-server/api/models/empty_request_error.py @@ -0,0 +1,6 @@ +from pydantic import BaseModel + + +class EmptyRequestError(BaseModel): + error: str = "Empty request" + message: str diff --git a/opentrons-ai-server/api/models/internal_server_error.py b/opentrons-ai-server/api/models/internal_server_error.py new file mode 100644 index 00000000000..d8ca81ada83 --- /dev/null +++ b/opentrons-ai-server/api/models/internal_server_error.py @@ -0,0 +1,9 @@ +from pydantic import BaseModel + + +class InternalServerError(BaseModel): + message: str = "Internal server error" + exception_object: Exception + + class Config: + arbitrary_types_allowed = True diff --git a/opentrons-ai-server/api/settings.py b/opentrons-ai-server/api/settings.py new file mode 100644 index 00000000000..ae6a28eb797 --- /dev/null +++ b/opentrons-ai-server/api/settings.py @@ -0,0 +1,78 @@ +import os +from dataclasses import asdict, dataclass +from pathlib import Path +from typing import Type + +from dotenv import load_dotenv +from pydantic import SecretStr + +from api.integration.aws_secrets_manager import fetch_secret + +ENV_PATH: Path = Path(Path(__file__).parent.parent, ".env") + + +def is_running_on_lambda() -> bool: + """Check if the script is running on AWS Lambda.""" + return "AWS_LAMBDA_FUNCTION_NAME" in os.environ + + +@dataclass(frozen=True) +class Settings: + HUGGINGFACE_SIMULATE_ENDPOINT: str + LOG_LEVEL: str + SERVICE_NAME: str + ENVIRONMENT: str + OPENAI_MODEL_NAME: str + openai_api_key: SecretStr + huggingface_api_key: SecretStr + + @classmethod + def build(cls: Type["Settings"]) -> "Settings": + # Load environment variables from .env file if it exists + load_dotenv(ENV_PATH) + + environment = os.getenv("ENVIRONMENT", "local") + service_name = os.getenv("SERVICE_NAME", "local-ai-api") + openai_model_name = os.getenv("OPENAI_MODEL_NAME", "gpt-4-1106-preview") + huggingface_simulate_endpoint = os.getenv("HUGGINGFACE_SIMULATE_ENDPOINT", "https://Opentrons-simulator.hf.space/protocol") + log_level = os.getenv("LOG_LEVEL", "debug") + + if is_running_on_lambda(): + openai_api_key = fetch_secret(f"{environment}-openai-api-key") + huggingface_api_key = fetch_secret(f"{environment}-huggingface-api-key") + else: + openai_api_key = SecretStr(os.getenv("OPENAI_API_KEY", "")) + huggingface_api_key = SecretStr(os.getenv("HUGGINGFACE_API_KEY", "")) + + return cls( + HUGGINGFACE_SIMULATE_ENDPOINT=huggingface_simulate_endpoint, + LOG_LEVEL=log_level, + SERVICE_NAME=service_name, + ENVIRONMENT=environment, + OPENAI_MODEL_NAME=openai_model_name, + openai_api_key=openai_api_key, + huggingface_api_key=huggingface_api_key, + ) + + @staticmethod + def get_service_name() -> str: + return os.getenv("SERVICE_NAME", "local-ai-api") + + +def generate_env_file(settings: Settings) -> None: + """ + Generates a .env file from the current settings including defaults. + """ + + with open(ENV_PATH, "w") as file: + for field, value in asdict(settings).items(): + if value is not None: + file.write(f"{field.upper()}={value}\n") + + print(f".env file generated at {str(ENV_PATH)}") + + +# Example usage +if __name__ == "__main__": + config: Settings = Settings.build() + generate_env_file(config) diff --git a/opentrons-ai-server/api/storage/index/commands/default__vector_store.json b/opentrons-ai-server/api/storage/index/commands/default__vector_store.json new file mode 100644 index 00000000000..1981eaee9b1 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/commands/default__vector_store.json @@ -0,0 +1,255731 @@ +{ + "embedding_dict": { + "8ee005f6-4244-4150-8397-38b43c51d568": [ + -0.033559899777173996, + 0.03156261891126633, + -0.02773684822022915, + 0.005379992071539164, + -0.031618881970644, + 0.012560348026454449, + -0.008143831044435501, + 0.024403363466262817, + -0.028524506837129593, + 0.023348461836576462, + 0.00027383456472307444, + 0.03091561421751976, + -0.0014179620193317533, + -0.03921416401863098, + -4.411901318235323e-5, + 0.013650411739945412, + -0.011280401609838009, + 0.009817606769502163, + -0.04340563714504242, + -0.005397574044764042, + 0.030943745747208595, + -0.033813074231147766, + -0.03035300225019455, + -0.002871087286621332, + -0.02732895314693451, + -0.031815797090530396, + 0.021688751876354218, + 0.0045712352730333805, + -0.03417877480387688, + -0.017581673339009285, + -0.009065111167728901, + -0.007672642357647419, + 0.03536026179790497, + 0.015851637348532677, + 0.028088482096791267, + -0.012778360396623611, + -0.026527229696512222, + 0.020619787275791168, + -0.03921416401863098, + 0.0018900298746302724, + -0.028651095926761627, + -0.016147010028362274, + 0.01955082081258297, + 0.022096646949648857, + -0.04526226222515106, + 0.03004356473684311, + -2.46692852670094e-5, + 0.045431043952703476, + -0.00803834106773138, + -0.00029339417233131826, + 0.01542967651039362, + 0.011322597973048687, + 0.01898820698261261, + 0.03111252933740616, + 0.006463023368269205, + 0.032575324177742004, + 0.008685346692800522, + 0.007370237726718187, + -0.01320735365152359, + -0.029705995693802834, + 0.012405629269778728, + -0.007102996110916138, + 0.010907670482993126, + -0.005527678411453962, + 0.007672642357647419, + -0.036823056638240814, + -0.006923662964254618, + 0.008924457244575024, + 0.0051619792357087135, + -0.01801769994199276, + -0.013319876044988632, + 0.02426270954310894, + -0.03178766742348671, + 0.015696918591856956, + -0.007510891184210777, + 0.0019498076289892197, + 0.025247283279895782, + -0.043124329298734665, + -0.015176501125097275, + 0.021112073212862015, + 0.001115557155571878, + 0.024234579876065254, + 0.04101452976465225, + -0.01576724462211132, + 0.04498095437884331, + 0.017694195732474327, + -0.043490029871463776, + -0.02323593944311142, + -0.010774049907922745, + -0.03282850235700607, + 0.03015608713030815, + 0.005292083602398634, + 0.015696918591856956, + -0.01339020300656557, + -0.030015433207154274, + 0.0037730270996689796, + 0.05077587440609932, + 0.028060350567102432, + 0.009592561051249504, + -0.01151247974485159, + -0.04126770421862602, + 0.020718244835734367, + -0.06126861646771431, + 0.021730948239564896, + -0.00831964798271656, + -0.009444874711334705, + -0.0026179112028330564, + -0.012032897211611271, + 0.01225794292986393, + 0.04627496376633644, + 0.03710436448454857, + 0.00048393558245152235, + -0.00447981059551239, + 0.007215518970042467, + -0.005316697992384434, + -0.06914521008729935, + 0.005457351449877024, + -0.004933417774736881, + 0.01801769994199276, + -0.02942468971014023, + 0.026935124769806862, + 0.03679492697119713, + 0.031056268140673637, + -0.00430047744885087, + -0.006048095878213644, + -0.04365881159901619, + -0.010394285432994366, + 0.01673775352537632, + -0.01256738044321537, + -0.0037589618004858494, + 0.0051268162205815315, + 0.004149274900555611, + 0.011730493046343327, + 0.03091561421751976, + 0.010977997444570065, + -0.017328497022390366, + 0.01862250827252865, + 0.0013353280955925584, + -0.016287662088871002, + 0.026808535680174828, + -0.0446152538061142, + -0.02498004212975502, + 0.012729131616652012, + 0.007539021782577038, + 0.0230812206864357, + 0.001678170752711594, + -0.014044241048395634, + 0.03184392675757408, + -0.005429220851510763, + 0.030268609523773193, + -0.045431043952703476, + -0.02236388809978962, + 0.059355732053518295, + -0.00777813233435154, + 0.015359350480139256, + 0.005281534977257252, + -0.0014847723068669438, + 0.013657444156706333, + -0.002763839205726981, + 0.01320735365152359, + -0.014712344855070114, + -0.0351070873439312, + 0.007996145635843277, + 0.019621148705482483, + 0.01694873347878456, + 0.019832128658890724, + 0.034825779497623444, + 0.02671007812023163, + -0.04360255226492882, + 0.018706900998950005, + -0.006484121084213257, + 0.02538793720304966, + 0.04582487419247627, + -0.021998189389705658, + -0.002243421506136656, + -0.023306267336010933, + 0.020507264882326126, + 0.02815880812704563, + 0.03139383718371391, + -0.02400953322649002, + 0.023250006139278412, + 0.009290155954658985, + -0.03434755653142929, + -0.01805989444255829, + 0.008748641237616539, + 0.03060617856681347, + -0.011238206177949905, + 0.013298777863383293, + 0.008460300974547863, + 0.007264747750014067, + 0.032378409057855606, + 0.0046274964697659016, + 0.05522052198648453, + 0.020591655746102333, + 0.03167514503002167, + -0.015359350480139256, + 0.0026495582424104214, + -0.006540382746607065, + 0.013502725400030613, + 0.016723688691854477, + 0.0060762264765799046, + -0.021379314363002777, + -0.032265886664390564, + 0.011090519838035107, + -0.027722783386707306, + -0.011399957351386547, + -0.010141109116375446, + 0.030690569430589676, + 0.010541971772909164, + -0.05834302678704262, + 0.02206851728260517, + -0.024403363466262817, + -0.0003749291936401278, + -0.011582806706428528, + -0.029058991000056267, + -0.0024473690427839756, + -0.015134304761886597, + 0.043743204325437546, + -0.03271597996354103, + -0.0075038583017885685, + -0.028552638366818428, + 0.01817241869866848, + 0.004075432196259499, + -0.029818518087267876, + -0.05924320966005325, + -0.020816702395677567, + -0.020647916942834854, + -0.007250682450830936, + -0.059918344020843506, + 0.008924457244575024, + 0.039186034351587296, + 0.01294714491814375, + 0.0078554917126894, + -0.03282850235700607, + -0.04323685169219971, + -0.025373872369527817, + -0.00437783682718873, + -0.013924685306847095, + -0.012553314678370953, + -0.012855719774961472, + 0.03448821231722832, + 0.029649734497070312, + 0.0024965975899249315, + 0.007623413577675819, + 0.017947372049093246, + 0.027877502143383026, + -0.015092108398675919, + 0.0183271374553442, + 0.006223912350833416, + -0.04464338719844818, + -0.032884761691093445, + -0.013122960925102234, + 0.009838704951107502, + -0.01739882491528988, + -0.019663343206048012, + 0.02779310941696167, + 0.004163340199738741, + -0.00028943829238414764, + 0.007377270143479109, + -0.029452819377183914, + -0.019480494782328606, + -2.6908202926279046e-5, + -0.000277350889518857, + -0.04582487419247627, + 0.032631587237119675, + -0.021308988332748413, + 0.0037167659029364586, + -0.051057182252407074, + -0.00771483825519681, + 0.026906993240118027, + -0.0256973747164011, + -0.011399957351386547, + -0.0174550861120224, + -0.013910620473325253, + -0.011610937304794788, + 0.007707805838435888, + 0.003062727628275752, + 0.022842111065983772, + 0.020141566172242165, + 0.005886344239115715, + -0.00855172611773014, + 0.00469782343134284, + -0.019747735932469368, + 0.005084619857370853, + -0.012785392813384533, + -0.022096646949648857, + -0.0095503656193614, + 0.017877046018838882, + -0.01925544999539852, + -0.029509080573916435, + 0.005095168948173523, + -0.04377133399248123, + 0.0461624413728714, + -0.011399957351386547, + 0.05890563875436783, + -0.021885666996240616, + -0.009894966147840023, + -0.01164610031992197, + -0.0173566285520792, + 0.03614792227745056, + -0.056992754340171814, + -0.0054819658398628235, + 0.033700551837682724, + 0.006325886119157076, + -0.0012781877303496003, + -0.003931262064725161, + 0.0407332219183445, + -0.008586889132857323, + 0.01852405071258545, + -0.007426498923450708, + 0.04554356634616852, + -0.009796508587896824, + -0.005823050159960985, + -0.014100502245128155, + -0.005707011092454195, + 0.008671281859278679, + -0.009866835549473763, + -0.0017238830914720893, + -0.023151548579335213, + -0.030212348327040672, + -0.021365249529480934, + 0.0021467222832143307, + -0.027933763340115547, + -0.0230812206864357, + 0.01751134730875492, + -0.009887933731079102, + 0.010063749738037586, + 0.01185004785656929, + -0.04064882919192314, + -0.024065794423222542, + -0.021618425846099854, + -0.045487307012081146, + -0.028060350567102432, + -0.03173140436410904, + 0.03299728408455849, + 0.004986162763088942, + -0.03198458254337311, + -0.041999101638793945, + 0.0032578841783106327, + -0.02036661095917225, + -0.028186939656734467, + 0.04891924932599068, + -0.026091203093528748, + -0.008917424827814102, + 0.01623140089213848, + -0.00926905870437622, + 0.012806490994989872, + 0.028018156066536903, + -0.0021906765177845955, + -0.0037941252812743187, + 0.0006579941255040467, + 0.002781420713290572, + 0.023868881165981293, + -0.011406989768147469, + 0.015739114955067635, + -0.01964927837252617, + -0.02701951563358307, + -0.03274410963058472, + 0.005629651714116335, + 0.010788114741444588, + -0.03783576190471649, + -0.023151548579335213, + -0.03927042707800865, + -0.047315798699855804, + 0.0042125689797103405, + 0.011737525463104248, + 0.010120011866092682, + -0.003458315273746848, + 0.013769966550171375, + -0.02645690180361271, + -0.018594378605484962, + 0.035078953951597214, + 0.025205086916685104, + -0.02288430742919445, + -0.014951455406844616, + 0.006086775567382574, + 0.05794919654726982, + 0.03761071711778641, + -0.005513613112270832, + 0.010619331151247025, + 0.013629313558340073, + -0.014656083658337593, + -0.010949866846203804, + -0.02876361832022667, + 0.05091652646660805, + -0.008811934851109982, + -0.026583490893244743, + -0.009536299854516983, + -0.011364794336259365, + -0.01720190979540348, + -0.012911980971693993, + 0.014909259043633938, + -0.014290384016931057, + -0.03789202496409416, + -0.03884846717119217, + 0.025655178353190422, + -0.011688296683132648, + -0.048497289419174194, + 0.0020447487477213144, + 0.027779044583439827, + -0.004841993097215891, + -0.015485938638448715, + 0.007271780166774988, + -0.00880490243434906, + -0.008586889132857323, + -0.008889294229447842, + -0.006916630547493696, + 0.0023242973256856203, + -0.01215948536992073, + 0.04469964653253555, + -0.009451908059418201, + 0.020746374502778053, + -0.0003566881932783872, + -0.015289023518562317, + 0.039636123925447464, + -0.03398185968399048, + -0.016962798312306404, + 0.016442380845546722, + -0.043883856385946274, + 0.012911980971693993, + 0.0405363067984581, + 0.0031225052662193775, + 0.0024983559269458055, + 0.029396558180451393, + -0.01867876946926117, + 0.022181039676070213, + 0.07105809450149536, + 0.027258627116680145, + -0.0007999661611393094, + -0.010661526583135128, + -0.02769465185701847, + 0.000672938534989953, + 0.02216697484254837, + -0.020999550819396973, + -0.010084847919642925, + -0.008143831044435501, + -0.0011498414678499103, + -0.017623869702219963, + 0.0009309496381320059, + -0.017694195732474327, + 0.010844375938177109, + 0.031450096517801285, + -0.006420827470719814, + 0.00481386249884963, + 0.017075320705771446, + -0.013875456526875496, + -0.005228789988905191, + -0.006677519530057907, + 0.025050368160009384, + 0.006403245497494936, + -0.0031611849553883076, + 0.04140835627913475, + -0.04202723130583763, + 0.02170281857252121, + -0.006628291215747595, + 0.016512708738446236, + -0.005070554558187723, + -0.010464612394571304, + 0.0175535436719656, + 0.015542199835181236, + 0.006452474277466536, + -0.018144287168979645, + 0.0004650352639146149, + -0.030578047037124634, + 0.00015054308460094035, + -0.05344828963279724, + -0.014501364901661873, + 0.003934778738766909, + -0.0067337811924517155, + -0.031450096517801285, + 0.014044241048395634, + -0.005967220291495323, + -0.04827224463224411, + -0.007102996110916138, + -0.02984664961695671, + -0.016104813665151596, + 0.012757262215018272, + -0.0021713366732001305, + 0.031450096517801285, + -0.04571235179901123, + -0.02420644834637642, + -0.04782215133309364, + -0.01842559315264225, + -0.0003815223171841353, + 0.019986847415566444, + 0.029312167316675186, + -0.014529495500028133, + 0.019719604402780533, + -0.00803834106773138, + -0.05499547719955444, + 0.05403903126716614, + 0.003815223230049014, + -0.013010438531637192, + 0.0028148258570581675, + -0.009775410406291485, + -0.060368433594703674, + 0.0006610709242522717, + -0.008741607889533043, + -0.00908620934933424, + -0.042814891785383224, + 0.036823056638240814, + -0.00898775178939104, + 0.011786754243075848, + -0.00419850368052721, + 0.01995871588587761, + -0.01838339865207672, + -0.01558439526706934, + -0.018031764775514603, + 0.02662568725645542, + -0.03271597996354103, + -0.014002044685184956, + 0.017947372049093246, + -0.02703358232975006, + -0.009205764159560204, + -0.010886572301387787, + 0.04709075391292572, + 0.008706444874405861, + 0.00399103993549943, + -0.0075249564833939075, + -0.025373872369527817, + -0.006621258333325386, + -0.018397463485598564, + -0.0027779045049101114, + 0.00849546492099762, + 0.02088702842593193, + -0.005278018303215504, + -0.023770423606038094, + 0.03434755653142929, + 0.0020904610864818096, + -0.011864113621413708, + -0.004469261504709721, + 0.002623185748234391, + -0.03254719451069832, + 0.0014135665260255337, + 0.0043708039447665215, + -0.024994106963276863, + -0.0010153416078537703, + 0.003182282904163003, + 0.0005973373772576451, + 0.03187205642461777, + -0.036513619124889374, + 0.054742299020290375, + -0.037498194724321365, + 0.006237977650016546, + 0.023657899349927902, + 0.03986117243766785, + -0.051422879099845886, + 0.038876596838235855, + 0.004177405498921871, + 0.013791064731776714, + -0.01566878706216812, + 0.04950999468564987, + 0.008896326646208763, + 0.019972780719399452, + 0.006906081456691027, + -0.017497282475233078, + -0.023981403559446335, + -0.003987523727118969, + -0.02144964225590229, + -0.005249887704849243, + -0.011428087949752808, + 0.023278135806322098, + 0.015725048258900642, + -0.007008055225014687, + -0.03378494456410408, + -0.0017054222989827394, + -0.023559443652629852, + -0.02047913335263729, + -0.01189927663654089, + 0.017750456929206848, + 0.0019744220189750195, + 0.032687846571207047, + 0.008938523009419441, + 0.003577870549634099, + 0.008052406832575798, + 0.027399281039834023, + 0.0035567726008594036, + 0.03299728408455849, + -0.004866607487201691, + 0.028229136019945145, + 0.01374886929988861, + -0.04408077150583267, + 0.016414251178503036, + -0.01925544999539852, + 0.012194649316370487, + 0.006617742124944925, + -0.03558530658483505, + -0.023151548579335213, + -0.0077007729560136795, + 0.01336207240819931, + 0.0057175601832568645, + 0.01596415974199772, + 0.021843470633029938, + 0.0027462574653327465, + 0.010492742992937565, + 0.016400184482336044, + -0.010752951726317406, + -0.010563069954514503, + 0.0028482312336564064, + 0.005692945793271065, + 0.005833599250763655, + 0.014156763441860676, + 0.036007266491651535, + -0.032265886664390564, + -0.008875228464603424, + 0.014768606051802635, + 0.008840065449476242, + -0.036682404577732086, + 0.01341130118817091, + -0.009979357942938805, + -0.001372249680571258, + 0.015092108398675919, + 0.01919918693602085, + -0.018552182242274284, + 0.040873873978853226, + 0.003597210394218564, + 0.0007274417439475656, + 0.03690744936466217, + 0.00195156573317945, + -0.006955310236662626, + 0.03280036896467209, + -0.057414714246988297, + 0.0655444785952568, + 0.0019937618635594845, + 0.005351861473172903, + -0.00023625373432878405, + 0.03659801185131073, + -0.02872142195701599, + -0.011364794336259365, + -0.001702785142697394, + 0.013713705353438854, + -0.01213135477155447, + 0.015246827155351639, + -0.024150187149643898, + 0.02590835466980934, + -0.003987523727118969, + 0.012968242168426514, + 0.019635213539004326, + -0.021773144602775574, + 0.03147822991013527, + -0.0006724990089423954, + -0.01130853220820427, + 0.0017775072483345866, + 0.04278676211833954, + 0.002545826369896531, + 0.004128177184611559, + -0.055614352226257324, + 0.023728227242827415, + 0.04413703456521034, + -0.012039930559694767, + -0.0533357672393322, + 0.014838933013379574, + 0.02507849968969822, + 0.025655178353190422, + 0.005910958629101515, + -0.0078062629327178, + -0.0012104982743039727, + 0.003512818366289139, + 0.0042301504872739315, + 0.001766079105436802, + 0.014993651770055294, + 0.011983668431639671, + -0.026386575773358345, + 0.01269396860152483, + 0.023151548579335213, + 0.004873639903962612, + 0.0008742487407289445, + 0.002888669027015567, + 0.0056402008049190044, + 0.03597913682460785, + 0.014923324808478355, + -0.02829946205019951, + 0.0054608676582574844, + 0.023981403559446335, + -0.005777338054031134, + -0.03071870096027851, + 0.006318853702396154, + -0.04185844957828522, + 0.033194199204444885, + -0.008924457244575024, + 0.01295417733490467, + 0.0049263848923146725, + -0.03004356473684311, + -0.0157109834253788, + 0.04678131639957428, + -0.019311711192131042, + -0.006744329817593098, + 0.005408122669905424, + -0.0329691544175148, + -0.0018935463158413768, + -0.011674230918288231, + -0.0074827601201832294, + -0.036372967064380646, + 0.010042652487754822, + -0.009184665977954865, + 0.015725048258900642, + -0.01642831601202488, + 0.006550931837409735, + 0.03659801185131073, + -0.031815797090530396, + -0.03071870096027851, + 0.00028921852936036885, + -0.003699184162542224, + -0.005573390517383814, + -0.009444874711334705, + 0.03209710493683815, + 0.009388613514602184, + -0.006143036764115095, + 0.02953721210360527, + -0.009726181626319885, + -0.00027207640232518315, + 0.022757718339562416, + 0.0036710535641759634, + 0.02728675678372383, + -0.0015550990356132388, + -0.012321236543357372, + 0.009606626816093922, + -0.012068061158061028, + -0.017117517068982124, + 0.016498642042279243, + -0.029621604830026627, + 0.04647187888622284, + -0.0029132834170013666, + -0.0008118337718769908, + -0.04776589199900627, + 0.0043391571380198, + 0.006026997696608305, + -0.030071694403886795, + 0.014895194210112095, + -0.006100840866565704, + 0.023432854562997818, + -0.008664248511195183, + -0.017891110852360725, + -0.012447824701666832, + -0.0029519631061702967, + -0.02630218304693699, + -0.0329691544175148, + -0.008762706071138382, + 0.013305810280144215, + -0.016217336058616638, + 0.002667139982804656, + -0.01949455961585045, + 0.02129492349922657, + 0.030240477994084358, + 0.020338479429483414, + -0.0033967792987823486, + -0.008066471666097641, + -0.0036886350717395544, + -0.007539021782577038, + -0.00223287264816463, + 0.029902910813689232, + -0.014529495500028133, + 0.03946734219789505, + 0.01292604673653841, + -0.012968242168426514, + 0.022195104509592056, + -0.032575324177742004, + 0.013305810280144215, + -0.014360710978507996, + 0.004511457402259111, + -0.011892244219779968, + -0.02616153098642826, + 0.010696690529584885, + -0.008354810997843742, + 0.0018583829514682293, + -0.020999550819396973, + -0.03223775699734688, + 0.00463452935218811, + 0.03541652485728264, + -0.017637934535741806, + 0.012405629269778728, + 0.03521960973739624, + 0.0018654156010597944, + 0.022124778479337692, + 0.02467060461640358, + 0.01694873347878456, + 0.04464338719844818, + 0.03187205642461777, + -0.028637031093239784, + 0.008790836669504642, + -0.014234122820198536, + -0.022406084463000298, + 0.009508169256150723, + -0.01811615750193596, + 0.0038679682184010744, + 0.012039930559694767, + 0.009894966147840023, + 0.018467789515852928, + -0.02154809981584549, + -0.012468922883272171, + 0.0029994335491210222, + 0.011554676108062267, + 0.019663343206048012, + 0.01555626466870308, + -0.014241156168282032, + 0.016442380845546722, + -0.0006386542809195817, + -0.031956449151039124, + 0.014684214256703854, + -0.03130944445729256, + -0.014142698608338833, + -0.04064882919192314, + 0.028468245640397072, + -0.008228223770856857, + 0.010513841174542904, + -0.0030908582266420126, + 0.021745014935731888, + -0.015021782368421555, + 0.011217107996344566, + 0.00816492922604084, + -0.01858031190931797, + -0.0003373483777977526, + -0.014965520240366459, + 0.007356172427535057, + 0.00032152485800907016, + 0.010520873591303825, + -0.009564430452883244, + -0.017019059509038925, + -0.006012932397425175, + -0.02979038842022419, + 0.010527906008064747, + 0.016850275918841362, + -0.00898071937263012, + 0.028496377170085907, + -0.038004547357559204, + -0.008404039777815342, + 0.013580084778368473, + -0.01724410615861416, + 0.03364429250359535, + 0.03367242217063904, + -0.032068971544504166, + 0.006575545761734247, + -0.026681948453187943, + 0.003177008358761668, + 0.007996145635843277, + 0.04242106154561043, + -0.019677409902215004, + -0.027103908360004425, + -0.02467060461640358, + 0.029312167316675186, + 0.005439769942313433, + -0.019578952342271805, + -0.003356341505423188, + -0.0008988630725070834, + 0.005228789988905191, + 0.006424343679100275, + 0.0001250496570719406, + 3.4648260225367267e-6, + 0.037807632237672806, + 0.012778360396623611, + 0.006072710268199444, + -0.01720190979540348, + 0.01949455961585045, + -0.0014724652282893658, + -0.01602042093873024, + 0.027202365919947624, + -0.0038117067888379097, + 0.029058991000056267, + 0.006459507159888744, + 0.02123866230249405, + 0.001358184264972806, + 0.0060551282949745655, + 0.026850732043385506, + -0.035388391464948654, + -0.01284868735820055, + 0.032434672117233276, + 0.0029994335491210222, + -0.006368082016706467, + -0.010696690529584885, + -0.014923324808478355, + 0.005977768916636705, + 0.0035761124454438686, + -0.003004708094522357, + 0.028369788080453873, + -0.023812618106603622, + -0.028496377170085907, + -0.02160436101257801, + -0.009845737367868423, + -0.028229136019945145, + -0.003924229647964239, + -0.0041949874721467495, + -0.0025634081102907658, + 0.022434215992689133, + -0.011990701779723167, + -0.04326498135924339, + 0.01858031190931797, + 0.005372959654778242, + -0.033813074231147766, + -0.016470512375235558, + 0.005242855288088322, + 0.02979038842022419, + 0.0013617005897685885, + 0.002871087286621332, + -0.009880900382995605, + 0.013249549083411694, + -0.04301180690526962, + -0.028271330520510674, + -0.025922419503331184, + 0.013678542338311672, + -0.03516334667801857, + -0.01760980486869812, + -0.020141566172242165, + -0.01611887849867344, + 0.023123417049646378, + -0.016568969935178757, + -0.04211162403225899, + -0.005003744270652533, + 0.02011343464255333, + -0.0024790160823613405, + 0.03192831948399544, + 0.019185122102499008, + 0.0164845772087574, + -0.017595738172531128, + -0.013959849253296852, + 0.03184392675757408, + 0.016878407448530197, + 0.01877722702920437, + 0.011442153714597225, + -0.006677519530057907, + -0.026836667209863663, + -0.014670148491859436, + -0.00885413121432066, + 0.025880223140120506, + -0.012117289938032627, + 0.009409711696207523, + -0.015359350480139256, + -0.008052406832575798, + 0.01811615750193596, + 0.047315798699855804, + 0.0016350956866517663, + 0.0011920374818146229, + 0.009001816622912884, + 0.02309528738260269, + -0.01197663601487875, + 0.03595100715756416, + 0.00449387589469552, + -0.016512708738446236, + -0.011315565556287766, + -0.03341924399137497, + -0.032012712210416794, + -0.03642922639846802, + -0.00020955158106517047, + 0.034938301891088486, + -0.005664815194904804, + 0.018313070759177208, + -0.010098913684487343, + -0.0067689442075788975, + 0.016695557162165642, + 0.0071276105009019375, + -0.014951455406844616, + 0.021069878712296486, + 0.0511978343129158, + -0.0033018384128808975, + -0.05108531191945076, + 0.007517923600971699, + 0.048131588846445084, + -0.0019339841092005372, + 0.016751818358898163, + -0.009001816622912884, + 0.01558439526706934, + -0.007820328697562218, + -0.01919918693602085, + -0.026175595819950104, + -0.007321008946746588, + -0.03817332908511162, + -0.0008056801743805408, + -0.04928494617342949, + 0.0152749577537179, + 0.007321008946746588, + 0.030381131917238235, + 0.0164845772087574, + -0.009796508587896824, + 0.012454858049750328, + -0.03378494456410408, + 0.0054995473474264145, + -0.023939207196235657, + -0.005204175598919392, + -0.01827087625861168, + 0.009388613514602184, + 0.0026829633861780167, + 0.04278676211833954, + -0.019283579662442207, + -0.018861619755625725, + -0.006259075831621885, + -0.0004566839779727161, + 0.013319876044988632, + -0.022645195946097374, + -0.017652001231908798, + 0.026077138260006905, + -0.006856852676719427, + 0.04028313234448433, + -0.042364802211523056, + 0.020690113306045532, + -0.0024737415369600058, + -0.0032367862295359373, + -0.0033000800758600235, + -0.0183271374553442, + 0.01187817845493555, + 0.00197793822735548, + -0.019818061962723732, + -0.014937389642000198, + 0.001812670612707734, + -0.034685127437114716, + 0.027919698506593704, + 0.006427859887480736, + 0.03240654245018959, + 0.01694873347878456, + 0.002429787302389741, + 0.004894738085567951, + 0.004001589026302099, + -0.014473233371973038, + -0.016343923285603523, + -0.004553653299808502, + -0.025711439549922943, + 0.03991743177175522, + 0.0033457924146205187, + -0.017750456929206848, + -0.04216788709163666, + 0.003625341225415468, + -0.01151247974485159, + -0.03223775699734688, + -0.026836667209863663, + -0.021210530772805214, + 0.02370009571313858, + 0.01123117282986641, + -0.00231023202650249, + -0.004001589026302099, + 0.003368648700416088, + 0.035304002463817596, + 0.01576724462211132, + -0.025809897109866142, + 0.005946122109889984, + -0.0005305270315147936, + -0.019564885646104813, + 0.0055030640214681625, + -0.020802635699510574, + 9.66992083704099e-5, + -0.05738658457994461, + -0.020029041916131973, + 0.006631807424128056, + 0.023925142362713814, + -0.013966881670057774, + -0.019213253632187843, + 0.0018583829514682293, + -0.004782215226441622, + -0.0055206455290317535, + -0.0038257723208516836, + -0.014170829206705093, + -0.012250910513103008, + 0.009859802201390266, + 0.021871602162718773, + -0.009845737367868423, + -0.0007990870508365333, + -0.03758258745074272, + 0.007377270143479109, + -0.008861163631081581, + 0.0066107092425227165, + -0.00413520960137248, + -0.018200548365712166, + 0.030578047037124634, + 0.009515201672911644, + 0.02979038842022419, + 0.06126861646771431, + -0.032884761691093445, + 0.049988213926553726, + -0.02144964225590229, + -0.003011740744113922, + 0.025936484336853027, + 0.007869557477533817, + -0.007581217680126429, + 0.03420690447092056, + 0.010471644811332226, + -0.007539021782577038, + 0.01925544999539852, + -0.0037624782416969538, + 0.009754312224686146, + -0.00025845060008578, + 0.007074865512549877, + 0.016779949888586998, + -0.004690790548920631, + 0.006582578644156456, + -0.002825374947860837, + -0.009719149209558964, + 0.015387481078505516, + 0.00037536874879151583, + -0.003565563354641199, + 0.013566019013524055, + -0.00419850368052721, + -0.012145420536398888, + 0.03558530658483505, + -0.019522691145539284, + 0.0010636912193149328, + 0.012110256589949131, + 0.00427234685048461, + 0.004022686742246151, + -0.010696690529584885, + -0.025205086916685104, + 0.03735753893852234, + -0.02063385210931301, + -0.010120011866092682, + 0.0007164531853049994, + 0.007391335442662239, + 0.004845509305596352, + 0.0017133341170847416, + 0.023671966046094894, + 0.024909716099500656, + 0.02164655737578869, + -0.010696690529584885, + 0.0078062629327178, + 0.0006131608970463276, + 0.03097187727689743, + 0.0044305818155407906, + -0.001403017551638186, + 0.0231796782463789, + 0.007208486087620258, + -0.010098913684487343, + -0.017722327262163162, + -0.009965293109416962, + -0.008312615565955639, + 0.014431037940084934, + -0.01258847862482071, + -0.005946122109889984, + -0.005963703617453575, + 0.0058757951483130455, + 0.0382014624774456, + -0.006315337028354406, + 0.00818602740764618, + 1.5219136002997402e-5, + -0.014585756696760654, + 0.011660166084766388, + 0.015415611676871777, + -0.006564997136592865, + 0.008889294229447842, + 0.005211208015680313, + -0.007707805838435888, + -0.0004151472821831703, + 0.010478677228093147, + 0.01341130118817091, + -0.014262253418564796, + 0.001263243262656033, + 0.010359122417867184, + 0.0034864458721131086, + 0.013453496620059013, + 0.026794470846652985, + -0.00025361563893966377, + -0.007574185263365507, + 0.0015199356712400913, + -0.011758623644709587, + -0.02247641235589981, + -0.02672414481639862, + -0.001639491063542664, + -0.009599593468010426, + -0.0007023878861218691, + -0.000797328888438642, + -0.028172874823212624, + -0.025781765580177307, + -0.014965520240366459, + -0.005038907751441002, + -0.004982646554708481, + 0.004919352475553751, + -0.04754084721207619, + -0.011610937304794788, + 0.00441651651635766, + 0.006484121084213257, + 0.0043532224372029305, + 0.001294011133722961, + -0.02742741070687771, + -0.004152791108936071, + -0.023320332169532776, + 0.007264747750014067, + 0.015162435360252857, + -0.00798207987099886, + 0.023840749636292458, + 0.017947372049093246, + -0.021435577422380447, + -0.012834621593356133, + -0.03783576190471649, + -0.021843470633029938, + 0.00440245121717453, + -0.0032068972941488028, + 0.013108896091580391, + 0.0039523602463305, + 0.0003817420802079141, + 0.014515429735183716, + -0.0003815223171841353, + 0.008031308650970459, + -0.03479764983057976, + 0.02052132971584797, + 0.0054608676582574844, + 0.010112978518009186, + -0.01853811740875244, + 0.00034042514744214714, + -0.018720965832471848, + -0.006339951418340206, + -0.022490477189421654, + 0.01174455787986517, + -0.005745690781623125, + -0.017061255872249603, + -0.000839085376355797, + 0.025838028639554977, + 0.005605037789791822, + 0.027553999796509743, + 0.0008852372993715107, + -0.030268609523773193, + 0.020872963592410088, + 0.004803313408046961, + -0.0014707070076838136, + 0.011083487421274185, + 0.00791175290942192, + -0.003419635584577918, + -0.008052406832575798, + 0.012110256589949131, + 0.005060005933046341, + -0.016934668645262718, + -0.0033897466491907835, + 0.030127955600619316, + 0.008889294229447842, + -0.018242744728922844, + -0.01848185621201992, + 0.006934212055057287, + 0.009810574352741241, + 0.01766606606543064, + 0.006491153966635466, + 0.01180081907659769, + 0.026400640606880188, + -0.006600160151720047, + 0.005650749895721674, + 0.013369104824960232, + 0.010155174881219864, + -0.001556857256218791, + 0.003004708094522357, + 0.016343923285603523, + -0.002085186541080475, + 0.031056268140673637, + -0.01780671998858452, + -0.0005573390517383814, + -0.017736392095685005, + 0.01805989444255829, + -0.020000912249088287, + 0.00813679862767458, + -0.009775410406291485, + 0.00041602636338211596, + 0.013720737770199776, + -0.010992062278091908, + 0.03474138677120209, + 0.023503180593252182, + 0.0058757951483130455, + 0.0027902116999030113, + -0.017497282475233078, + -0.01259551104158163, + -0.013636345975100994, + 0.006811140570789576, + -0.007222551386803389, + 0.012419694103300571, + -0.006839271169155836, + 0.0071662901900708675, + -2.7636193408397958e-5, + -0.0047470517456531525, + -0.02242015115916729, + -0.0021133171394467354, + -0.021815340965986252, + -0.0068076238967478275, + 0.015936028212308884, + -0.01269396860152483, + -0.05839928612112999, + -0.0013239000691100955, + -0.0021818857640028, + -0.002568682422861457, + 0.0056402008049190044, + -0.02114020474255085, + -0.002832407597452402, + 0.0001406533847330138, + 0.029649734497070312, + 0.012187615968286991, + -0.01194850541651249, + 0.029312167316675186, + 0.019114796072244644, + -0.02585209347307682, + 0.006192265544086695, + 0.014431037940084934, + 0.003621824784204364, + 0.0001761463936418295, + 0.004226634278893471, + -0.0004298719286452979, + -0.0060551282949745655, + -0.01277132797986269, + -0.005745690781623125, + 0.012075093574821949, + -0.014388841576874256, + -0.03302541747689247, + 0.03085935302078724, + 0.024122055619955063, + 0.004771666135638952, + -0.008713477291166782, + 0.0020517813973128796, + 0.007313976064324379, + -0.009613659232854843, + 0.005467900540679693, + 0.0011111617786809802, + -0.0238548144698143, + 0.00412114430218935, + 0.017525412142276764, + -0.021477771922945976, + 0.0016992688179016113, + -0.007890654727816582, + -0.003080309135839343, + 0.0012140145990997553, + 0.017694195732474327, + -0.008425137959420681, + -0.025584852322936058, + 0.01289791613817215, + -0.010830311104655266, + 0.010415383614599705, + -0.011814884841442108, + 0.00013373060210142285, + -0.0230812206864357, + -0.007081898394972086, + -0.005429220851510763, + -0.0256973747164011, + -0.00898071937263012, + -0.010577134788036346, + -0.013692607171833515, + -0.008685346692800522, + 0.024403363466262817, + 0.016090746968984604, + 0.010802180506289005, + 0.03265971690416336, + 0.025064434856176376, + -0.007489793002605438, + 0.007433531805872917, + -0.014585756696760654, + -0.0076656099408864975, + 0.005052973050624132, + -0.005137364845722914, + 0.01249002106487751, + -0.004648594651371241, + 0.012679902836680412, + -0.02645690180361271, + -0.053926508873701096, + -0.009374548681080341, + -0.012933079153299332, + -0.024445559829473495, + -0.00014834536705166101, + 0.008256354369223118, + 0.0030099826399236917, + 0.0003674569888971746, + -0.009592561051249504, + -0.013453496620059013, + 0.015063977800309658, + -0.017694195732474327, + 0.00104610959533602, + 8.474916285194922e-6, + -0.007735936436802149, + 0.00038393979775719345, + -0.0069517940282821655, + -0.009810574352741241, + -0.010851409286260605, + 0.0173566285520792, + -0.012173551134765148, + 0.012996372766792774, + -0.007187388371676207, + -0.0010083089582622051, + 0.017595738172531128, + 0.010309893637895584, + 0.010788114741444588, + 0.01838339865207672, + -0.025556720793247223, + -0.01950862444937229, + 0.02866516076028347, + -0.019325776025652885, + -0.008720510639250278, + 0.012145420536398888, + -0.01323548424988985, + -0.006688068620860577, + 0.0002914162469096482, + 0.019888389855623245, + 0.003984007053077221, + 0.00831964798271656, + 0.018819423392415047, + -0.009606626816093922, + -0.0030908582266420126, + 0.016906537115573883, + 0.022279497236013412, + -0.009444874711334705, + 0.010007488541305065, + 0.023503180593252182, + -0.014895194210112095, + -0.0333629846572876, + 0.03398185968399048, + 0.02354537695646286, + -0.006290722638368607, + -0.014353678561747074, + 0.028946466743946075, + 0.01894601248204708, + 0.03035300225019455, + -0.013854359276592731, + -0.026808535680174828, + 0.006937728263437748, + -0.02129492349922657, + 0.011350728571414948, + 0.007616381160914898, + 0.03170327469706535, + 0.004901770502328873, + 0.020451003685593605, + 0.01582350581884384, + 0.008671281859278679, + -0.05460164695978165, + 0.004873639903962612, + 0.00839700736105442, + 0.00469782343134284, + 0.006065677385777235, + 0.004827927798032761, + -0.005562841426581144, + -0.0014074129285290837, + 0.004342673346400261, + -0.001779265352524817, + 0.010513841174542904, + -0.000899302598554641, + 0.009198731742799282, + -0.0240517295897007, + 0.010788114741444588, + -0.014852997846901417, + 0.006547415163367987, + -0.024544017389416695, + 0.009276091121137142, + 0.014473233371973038, + 0.012475955300033092, + 0.006385663989931345, + 0.010527906008064747, + 0.0256973747164011, + 0.004701339639723301, + -0.0004795401473529637, + -0.0023735258728265762, + -0.03209710493683815, + 0.03235027939081192, + -0.00836887676268816, + -0.006818172987550497, + 0.000299767532851547, + 0.03218149393796921, + 0.012032897211611271, + 0.013657444156706333, + -0.01950862444937229, + 0.005263953004032373, + 0.0005520645645447075, + 0.007222551386803389, + 0.007057284004986286, + -0.024740930646657944, + -0.016962798312306404, + -0.008502497337758541, + 0.011906309053301811, + -0.014311482198536396, + 0.015021782368421555, + 0.026372510939836502, + 0.008643151260912418, + 0.026639752089977264, + -0.007574185263365507, + -0.009430809877812862, + -0.004514973610639572, + 0.0037343474105000496, + -0.014445102773606777, + -0.01623140089213848, + 0.0020324415527284145, + 0.01964927837252617, + -0.0037167659029364586, + -0.010893604718148708, + -0.006150069646537304, + 0.011603904888033867, + -0.005358894355595112, + 0.014416972175240517, + -0.011526545509696007, + 0.006005899980664253, + 0.02590835466980934, + -0.02697731927037239, + 0.031815797090530396, + -0.020099369809031487, + 0.005474933423101902, + -0.02067604847252369, + -0.024276774376630783, + -0.012862752191722393, + -0.02554265595972538, + -0.002157271374017, + 0.009557398036122322, + -0.010802180506289005, + -0.00852359551936388, + 0.002507146680727601, + 0.02835572324693203, + 0.018960077315568924, + 0.010844375938177109, + 0.017778588458895683, + 0.02922777459025383, + 0.01256738044321537, + 0.012609576806426048, + 0.010710755363106728, + -0.007349139545112848, + 0.018495921045541763, + 0.0007577701471745968, + 0.011702362447977066, + 0.01256738044321537, + -0.014782670885324478, + -0.005664815194904804, + 0.012574412859976292, + 0.016611164435744286, + 0.0006659058853983879, + -0.00455716997385025, + -0.012018832378089428, + 0.01877722702920437, + 0.008249321021139622, + -0.03865155205130577, + -0.013221418485045433, + -0.024797191843390465, + 0.007468694821000099, + 7.406280201394111e-5, + -0.014381809160113335, + 0.008685346692800522, + 0.01663929596543312, + 0.009262025356292725, + 0.008284484967589378, + -0.02738521434366703, + -0.022293562069535255, + -0.014374776743352413, + 0.00865018367767334, + -0.003431942779570818, + 0.0078554917126894, + -0.012426727451384068, + 0.0037202821113169193, + 0.019367972388863564, + -0.0019849708769470453, + -0.014909259043633938, + 0.01852405071258545, + 0.014290384016931057, + 0.009367515332996845, + 0.01632985845208168, + -0.024403363466262817, + -0.014810802415013313, + 0.004740019328892231, + 0.010549004189670086, + 0.014445102773606777, + 0.005833599250763655, + -0.008024276234209538, + -0.00104610959533602, + 0.0037659944500774145, + -0.0028587800916284323, + 0.008101635612547398, + 0.016090746968984604, + 0.009655855596065521, + 0.01182191725820303, + -0.008460300974547863, + 0.00023449557193089277, + 0.01351679116487503, + 0.027624325826764107, + 0.004789248108863831, + 0.0007713959203101695, + 0.017947372049093246, + 0.020338479429483414, + 0.0005195384728722274, + -0.002711093984544277, + 0.010077815502882004, + 0.007742969319224358, + 0.0056612989865243435, + 0.014557626098394394, + -0.0305499155074358, + -0.002403414808213711, + 0.0016764126485213637, + 0.0012298381188884377, + -0.0062344614416360855, + 0.0033827139995992184, + -0.015443742275238037, + -0.015063977800309658, + -0.0055030640214681625, + -0.00197618012316525, + 0.012546282261610031, + 0.008769738487899303, + 0.017019059509038925, + -0.011350728571414948, + -0.011224140413105488, + -0.011097552254796028, + 0.012356400489807129, + 0.013228450901806355, + -0.014670148491859436, + -0.011329630389809608, + -0.012061027809977531, + -0.0075601194985210896, + 0.0515916645526886, + -0.021998189389705658, + -0.007658577058464289, + 0.003857419127598405, + 0.009465972892940044, + -0.02191379852592945, + 0.014473233371973038, + 0.004564202390611172, + -0.0031488777603954077, + 0.01182191725820303, + -0.006171167362481356, + -0.01302450429648161, + 0.010120011866092682, + 0.004458712413907051, + -0.021730948239564896, + -0.015978224575519562, + 0.010197370313107967, + -0.005506580229848623, + -0.015598461031913757, + 0.010893604718148708, + -0.011730493046343327, + -0.008629085496068, + -0.005052973050624132, + 0.02166062220931053, + -0.0030767929274588823, + 0.0060762264765799046, + 0.0006707408465445042, + -0.010865474119782448, + 0.014269286766648293, + 0.0019814546685665846, + 0.0009432567749172449, + 0.00012746713764499873, + 0.012468922883272171, + -0.010267697274684906, + 0.0010566585697233677, + 0.005471416749060154, + -0.0032948057632893324, + -0.0007643632707186043, + 0.004638045560568571, + 0.006315337028354406, + 0.007510891184210777, + 0.005211208015680313, + 0.0065931277349591255, + 0.020605722442269325, + -0.029874779284000397, + 0.009958259761333466, + -0.023320332169532776, + 0.0076656099408864975, + -0.0028622965328395367, + 0.0004852541896980256, + 0.005812501534819603, + -0.013537888415157795, + 0.010176273062825203, + 0.019902454689145088, + 0.023348461836576462, + -0.006202814634889364, + 0.012272008694708347, + 0.0020588140469044447, + -0.0021695785690099, + 0.010534939356148243, + -0.010176273062825203, + -0.02447368949651718, + 0.015092108398675919, + -0.00428641214966774, + -0.006072710268199444, + -0.004602882079780102, + -0.007001022342592478, + 0.005408122669905424, + 0.01904446817934513, + -0.014838933013379574, + -0.009121372364461422, + -0.010837343521416187, + 0.019578952342271805, + -0.005348345264792442, + 0.002723401179537177, + -0.001734432065859437, + 0.023404724895954132, + 0.016315793618559837, + 0.026597555726766586, + -0.022434215992689133, + -0.0025563754606992006, + -0.003342276206240058, + -0.014768606051802635, + -0.007064316421747208, + 0.010724821127951145, + 0.011435120366513729, + 0.03884846717119217, + -0.05190110206604004, + -0.0047681499272584915, + -0.006557964254170656, + -0.031140660867094994, + -0.020240023732185364, + 0.0002198808069806546, + 0.020915159955620766, + -0.008200092241168022, + 0.019227318465709686, + 0.0035233674570918083, + -0.018144287168979645, + -0.031450096517801285, + -0.016779949888586998, + 0.0037976414896547794, + -0.008312615565955639, + -0.023826684802770615, + 0.015176501125097275, + -0.001658830908127129, + 0.011934440582990646, + 0.011885211803019047, + -0.00044657450052909553, + -0.011301499791443348, + 0.0035233674570918083, + 0.0002659228048287332, + -0.023517247289419174, + -0.002549342578276992, + 0.009909030981361866, + -0.030437393113970757, + -0.002607362112030387, + 0.006575545761734247, + 0.014002044685184956, + -0.012890882790088654, + 0.001167423091828823, + 0.00012647816038224846, + 0.024797191843390465, + -0.006259075831621885, + -0.010127044282853603, + -0.006684552412480116, + 0.01277132797986269, + 4.237458142597461e-6, + -0.011934440582990646, + 0.012124322354793549, + -0.01898820698261261, + 0.03423503413796425, + -0.0005467900773510337, + 0.025514524430036545, + -0.005151430610567331, + 0.021885666996240616, + 0.0004883309593424201, + -0.021998189389705658, + 0.028341658413410187, + -0.004303993657231331, + -0.020816702395677567, + 0.017384758219122887, + 0.02119646593928337, + 0.011224140413105488, + 0.015331219881772995, + 0.0044094836339354515, + -0.013151091523468494, + -0.004564202390611172, + -0.041127052158117294, + 0.007067832630127668, + -0.0074475971050560474, + 0.005903926212340593, + -0.0043743206188082695, + 0.013776999898254871, + -0.008333713747560978, + 0.002742741024121642, + -0.01300340611487627, + -0.035388391464948654, + 0.018847554922103882, + -0.0401424765586853, + 0.010942833498120308, + -0.0071662901900708675, + 0.032378409057855606, + -0.0230812206864357, + 0.01724410615861416, + -0.016090746968984604, + -0.0014962004497647285, + -0.0008179873693734407, + 0.020282218232750893, + -0.010591200552880764, + -0.012089158408343792, + -0.0021256243344396353, + 0.0012878576526418328, + 0.036935579031705856, + -0.022181039676070213, + -0.021154269576072693, + -0.021463707089424133, + -0.0043637715280056, + 0.010598232969641685, + -0.025050368160009384, + 0.0011850048322230577, + 0.013537888415157795, + -0.0014443345135077834, + 0.0032824985682964325, + -0.005422187969088554, + -0.006262592040002346, + 0.0025598916690796614, + 0.011582806706428528, + -0.012806490994989872, + 0.006448958069086075, + -0.007742969319224358, + 0.006332919001579285, + 0.030184216797351837, + 0.015978224575519562, + 0.008235256187617779, + -0.010155174881219864, + 0.005580423399806023, + 0.04683757945895195, + 0.020844832062721252, + 0.01811615750193596, + 0.0053061493672430515, + -0.014599821530282497, + -0.0014135665260255337, + 0.028018156066536903, + 0.02119646593928337, + -0.0008702928316779435, + -0.00788362231105566, + -0.011083487421274185, + -0.0034794132225215435, + 0.015289023518562317, + 0.0071487086825072765, + -0.03190018981695175, + -0.0025423099286854267, + 0.006990473251789808, + -0.00441651651635766, + 0.005703494884073734, + -0.005116267129778862, + 0.003468864131718874, + 0.011203042231500149, + -0.001319504575803876, + -0.005889860913157463, + -0.02732895314693451, + 0.0001739486906444654, + 0.007630446460098028, + 0.009212796576321125, + 0.013537888415157795, + 0.0001632897910894826, + -0.010781082324683666, + -0.004792764317244291, + 0.024937845766544342, + -0.0034671060275286436, + 0.010141109116375446, + -0.021182401105761528, + -0.0040332358330488205, + 0.0191007312387228, + -0.010584167204797268, + 0.025050368160009384, + -0.000538438733201474, + -0.006202814634889364, + 0.024178316816687584, + -0.015134304761886597, + -0.033447377383708954, + 0.02329220063984394, + 0.007067832630127668, + 0.009733214974403381, + 0.011920374818146229, + -0.007313976064324379, + -0.011048323474824429, + 0.0013493935111910105, + -0.009205764159560204, + -3.340518014738336e-5, + -0.0038117067888379097, + -0.00016350956866517663, + -0.003987523727118969, + -0.0021519968286156654, + 0.017623869702219963, + -0.01602042093873024, + -0.00869941245764494, + -0.008122732862830162, + 0.0005749207339249551, + -0.025500459596514702, + 0.020605722442269325, + 0.0033211782574653625, + -0.029312167316675186, + 0.002512421226128936, + 0.005158463027328253, + -0.010689657181501389, + -0.033869337290525436, + 0.0008360085776075721, + 0.0017511347541585565, + -0.012377498671412468, + 0.008952587842941284, + -0.00821415800601244, + -0.011674230918288231, + 0.002665381645783782, + 0.0027339502703398466, + -0.009381581097841263, + -0.0035919358488172293, + -0.000432289409218356, + 0.011913342401385307, + 0.018566247075796127, + 0.009149502962827682, + 0.0008399644866585732, + 0.008502497337758541, + -0.015415611676871777, + 0.007095963694155216, + -0.01739882491528988, + 0.02517695724964142, + -0.013931718654930592, + 0.006617742124944925, + 0.012039930559694767, + -0.0028587800916284323, + -0.013580084778368473, + -0.0075249564833939075, + -0.006962342653423548, + 0.01960708200931549, + 0.020338479429483414, + 0.02042287215590477, + -0.017680130898952484, + 0.01249002106487751, + 0.0024895649403333664, + -0.009353450499475002, + -0.002371767768636346, + -0.017342563718557358, + -0.02917151339352131, + 0.010788114741444588, + 0.0051268162205815315, + 0.02519102208316326, + -0.0033088710624724627, + 0.006410278379917145, + -0.011294467374682426, + 0.0175535436719656, + 0.0014786187093704939, + -0.029902910813689232, + -0.010921735316514969, + -0.010549004189670086, + -0.029255904257297516, + 0.006867401767522097, + 0.01164610031992197, + 0.012841654941439629, + 0.013847325928509235, + -0.01146325096487999, + -0.01123117282986641, + 0.03156261891126633, + -0.029565341770648956, + -0.0027884533628821373, + 0.009571462869644165, + 0.018650639802217484, + 0.013404267840087414, + 0.0050881365314126015, + -0.02903085947036743, + 0.012623641639947891, + 0.012145420536398888, + -0.026372510939836502, + 0.008741607889533043, + -0.0010469886474311352, + 0.014276319183409214, + 0.004539588000625372, + 0.002837682142853737, + 0.011428087949752808, + -0.0022363888565450907, + -0.0175535436719656, + -0.025528591126203537, + -0.01879129372537136, + -0.010584167204797268, + -0.007757034618407488, + 0.016456447541713715, + 0.005559325218200684, + -0.006603676825761795, + -0.0007577701471745968, + 0.009367515332996845, + -0.02860889956355095, + 0.0024122055619955063, + 0.026808535680174828, + 0.02498004212975502, + -0.0028306494932621717, + 0.0007700772839598358, + 0.010992062278091908, + 0.03285663202404976, + -0.00024570387904532254, + -0.008966653607785702, + 0.007391335442662239, + 0.023882945999503136, + 0.004100046120584011, + -0.000950289482716471, + 0.0024702250957489014, + -0.014198959805071354, + -0.009402679279446602, + 0.001812670612707734, + -0.016357989981770515, + -0.004623980261385441, + 0.017694195732474327, + -0.03710436448454857, + 0.016400184482336044, + -8.472168701700866e-5, + 0.00020900214440189302, + -0.006642356514930725, + -0.009916064329445362, + 0.0005779975326731801, + -0.018594378605484962, + -0.01720190979540348, + 0.009803541004657745, + 0.0008887536241672933, + 0.00418443838134408, + 0.00030020708800293505, + -0.02288430742919445, + 0.03170327469706535, + 0.02467060461640358, + 0.02585209347307682, + 0.018144287168979645, + -0.011610937304794788, + 0.0033475507516413927, + -0.002347153378650546, + 0.015387481078505516, + 0.031140660867094994, + -0.020746374502778053, + 0.049875691533088684, + -0.016765883192420006, + -0.0011313806753605604, + -0.012068061158061028, + 0.024909716099500656, + -0.0023418788332492113, + 0.0004514094616752118, + 0.004982646554708481, + 0.011997734196484089, + -0.012342334724962711, + -0.021745014935731888, + -0.013798097148537636, + -0.006712683010846376, + 0.01730036735534668, + 0.005763272754848003, + -0.020901093259453773, + -0.002385833067819476, + 0.013038569130003452, + 0.003934778738766909, + 0.03102813847362995, + 0.003857419127598405, + -0.009522234089672565, + 0.0086783142760396, + 0.012166517786681652, + -0.0045501370914280415, + 0.0026143949944525957, + -0.015936028212308884, + -0.003380955895408988, + 0.01623140089213848, + -0.0024473690427839756, + 0.002157271374017, + 0.03035300225019455, + 0.005348345264792442, + 0.004852541722357273, + -0.00229792483150959, + -0.01964927837252617, + -0.013369104824960232, + -0.014445102773606777, + 0.029199643060564995, + -0.02835572324693203, + -0.01317922305315733, + 0.017230039462447166, + 0.01197663601487875, + 0.01302450429648161, + 0.014951455406844616, + -0.0007379907765425742, + -0.004989678971469402, + -0.010091880336403847, + 0.0029361394699662924, + 0.024909716099500656, + -0.017328497022390366, + -0.005756239872425795, + 0.011076454073190689, + -0.011034258641302586, + -0.01867876946926117, + 0.003906647674739361, + 0.00818602740764618, + -0.026020877063274384, + -0.007996145635843277, + -0.009262025356292725, + -0.0019814546685665846, + -0.001960356719791889, + -0.007081898394972086, + -0.0035567726008594036, + -0.03249093145132065, + 0.008741607889533043, + 0.0037941252812743187, + 0.012201681733131409, + -0.012018832378089428, + -0.006557964254170656, + -0.002296166494488716, + 0.019536755979061127, + 0.024909716099500656, + -0.006867401767522097, + 0.0021062844898551702, + -0.01154061034321785, + 0.014881128445267677, + 0.00919169932603836, + 0.010928768664598465, + 0.011062389239668846, + 0.009789476171135902, + -0.0031857993453741074, + -0.015007716603577137, + -0.002711093984544277, + -0.013397235423326492, + -0.009909030981361866, + 0.0013309327187016606, + -0.020549459382891655, + -0.012715066783130169, + 0.02891833707690239, + -0.01817241869866848, + -0.019846193492412567, + -0.0051057180389761925, + 0.014993651770055294, + 0.013558986596763134, + 0.030887484550476074, + 0.011653133668005466, + 0.02206851728260517, + -0.011941472999751568, + 0.0003678965149447322, + -0.018003633245825768, + 0.020029041916131973, + 0.012370465323328972, + -0.0014592788647860289, + 0.002371767768636346, + 0.030268609523773193, + 0.01246189046651125, + -0.01623140089213848, + -0.015950094908475876, + 0.002679447177797556, + -0.012911980971693993, + -0.018102090805768967, + 0.009599593468010426, + -0.0021203497890383005, + -0.005731625482439995, + -0.006378631107509136, + 0.005731625482439995, + -0.03347550705075264, + 0.019480494782328606, + -0.0053237308748066425, + 0.0009590802947059274, + -0.02564111351966858, + -0.0033317271154373884, + -0.005527678411453962, + -0.01289791613817215, + 0.018313070759177208, + -0.03333485499024391, + 0.0016368537908419967, + 0.03071870096027851, + 0.015049912966787815, + 0.006786526180803776, + 0.009247960522770882, + 0.005685913376510143, + -0.014543560333549976, + -0.027553999796509743, + -0.009873867966234684, + 0.0053061493672430515, + -0.001110282726585865, + -0.02517695724964142, + -0.006979924626648426, + 0.02831352688372135, + 0.019002273678779602, + -0.0019339841092005372, + 0.011217107996344566, + -0.019466429948806763, + 0.014726409688591957, + 0.003776543540880084, + -0.019424233585596085, + 1.5150458239077125e-5, + -0.00442706560716033, + -0.008284484967589378, + 0.011828949674963951, + 0.0055206455290317535, + -0.0023963821586221457, + -0.005102201830595732, + -0.011392924934625626, + 0.009529267437756062, + 0.017004994675517082, + 0.020619787275791168, + 0.023053091019392014, + 0.0032631587237119675, + 0.01739882491528988, + -0.01166719850152731, + -0.006100840866565704, + 0.0006052491371519864, + 0.005295600276440382, + 0.023559443652629852, + -0.011090519838035107, + -0.007531988900154829, + -0.0060164486058056355, + 0.005917991511523724, + 0.024544017389416695, + -0.007679675240069628, + 0.03153448924422264, + 0.008502497337758541, + 0.009873867966234684, + 0.013010438531637192, + 0.0039031314663589, + 0.010956899262964725, + -0.0016377329593524337, + -0.017272235825657845, + -0.030127955600619316, + 0.005555809009820223, + 0.006579062435775995, + -0.013467562384903431, + 0.0013854359276592731, + -0.010823278687894344, + 0.0056226192973554134, + 0.006114906165748835, + 0.014501364901661873, + 0.022237300872802734, + -0.0001725201727822423, + 0.028383854776620865, + 0.019972780719399452, + -0.010190337896347046, + 0.021745014935731888, + -0.01341130118817091, + 0.003349308855831623, + -0.02236388809978962, + 0.009177633561193943, + 0.010127044282853603, + 0.005608553998172283, + 0.019789932295680046, + -0.023306267336010933, + -0.033756814897060394, + 0.0095503656193614, + 0.004434098023921251, + -0.0038433538284152746, + 0.004613431170582771, + -0.006237977650016546, + -0.006297755520790815, + -0.005436253733932972, + 0.008713477291166782, + 0.010647461749613285, + 0.0016570728039368987, + -0.005035391543060541, + -0.01558439526706934, + 0.015753179788589478, + -0.013826228678226471, + 0.005330763291567564, + -0.0026829633861780167, + 0.017933307215571404, + -0.029874779284000397, + 0.031056268140673637, + 0.020127499476075172, + -0.007257714867591858, + -0.016920601949095726, + -0.015992291271686554, + -0.004613431170582771, + -0.010091880336403847, + -0.005221757106482983, + 0.0015489454381167889, + -0.007391335442662239, + 0.03274410963058472, + 0.00391368055716157, + 0.010246599093079567, + -0.0035110602620989084, + -0.014381809160113335, + -0.023278135806322098, + 0.007651544641703367, + -0.01192740723490715, + 0.006600160151720047, + 0.014599821530282497, + 0.0031963482033461332, + 0.019691474735736847, + -0.0013766450574621558, + 0.019846193492412567, + 0.004613431170582771, + 0.00855172611773014, + 0.00202892511151731, + 0.0006553569110110402, + 0.000162630487466231, + 3.909175211447291e-5, + 0.010914702899754047, + -0.008235256187617779, + -0.0024544016923755407, + 0.016751818358898163, + -0.037751369178295135, + 0.013784032315015793, + 0.017525412142276764, + -0.004929901100695133, + 0.0018021215219050646, + -0.006026997696608305, + 0.014726409688591957, + -0.004342673346400261, + -0.02758212946355343, + -0.03555717691779137, + -0.01945236325263977, + 0.017877046018838882, + -0.026400640606880188, + -0.002252212492749095, + 0.010556036606431007, + 0.0028236168436706066, + -0.012117289938032627, + 0.0007705168682150543, + -0.0006311821052804589, + 0.0014909259043633938, + -0.009262025356292725, + 0.01842559315264225, + 0.0006896411650814116, + 0.024937845766544342, + 0.01555626466870308, + -0.014311482198536396, + 0.029115252196788788, + -0.006034030579030514, + -0.005102201830595732, + -0.018130222335457802, + 0.0008509529870934784, + 0.010612298734486103, + -3.2587906844128156e-6, + 0.014979586005210876, + 0.01558439526706934, + -0.011575774289667606, + -0.006533349864184856, + 0.00783439353108406, + -0.011730493046343327, + -0.0038820335175842047, + -0.03865155205130577, + 0.001332690822891891, + -0.0006848062039352953, + 0.00210452638566494, + -0.008558758534491062, + 0.0036183083429932594, + -0.01637205481529236, + -0.007553087081760168, + -0.014909259043633938, + 0.013558986596763134, + -0.001300164731219411, + 0.004149274900555611, + -0.01582350581884384, + -0.01852405071258545, + -0.012792426161468029, + 0.015078043565154076, + 0.0028042769990861416, + -0.006674003321677446, + 0.008143831044435501, + 0.0049088033847510815, + -0.0063926964066922665, + 0.012215746566653252, + 0.01274319738149643, + -0.01154061034321785, + -0.016203271225094795, + 0.020493198186159134, + -0.006783009506762028, + -0.008629085496068, + 0.025514524430036545, + -0.006237977650016546, + -0.024558082222938538, + 0.005376475863158703, + -0.0071838716976344585, + -0.009297189302742481, + -0.009887933731079102, + 0.013186255469918251, + 0.0015129030216485262, + 0.003584903199225664, + 0.03285663202404976, + 0.015837572515010834, + -0.001958598382771015, + 0.011477316729724407, + -0.010830311104655266, + -0.0007305185426957905, + -0.015626590698957443, + -0.001960356719791889, + -0.00890335999429226, + 0.020647916942834854, + -0.017595738172531128, + -0.019171057268977165, + 0.00042042176937684417, + -0.005650749895721674, + 0.013566019013524055, + -0.029762256890535355, + -0.015978224575519562, + 0.011020192876458168, + 0.011224140413105488, + 0.03707623481750488, + -0.007113545201718807, + -0.006065677385777235, + 0.01976180076599121, + -0.003264916827902198, + 0.021730948239564896, + 0.009360482916235924, + 0.011962571181356907, + -0.00042042176937684417, + 0.00031712945201434195, + -0.012581445276737213, + 0.007925818674266338, + 0.006754878908395767, + -0.02094328962266445, + -0.014142698608338833, + -0.014184894040226936, + -0.0022047418169677258, + 0.003540949197486043, + 0.0019814546685665846, + -0.007953949272632599, + 0.03561343997716904, + -0.0007278812699951231, + 0.008235256187617779, + -0.0009318286902271211, + -0.016161074861884117, + -0.0083407461643219, + -0.009585528634488583, + -0.0222091693431139, + -0.0023190227802842855, + -0.009557398036122322, + 0.015289023518562317, + 6.714001938235015e-5, + -0.005963703617453575, + 0.006508735474199057, + 0.006343468092381954, + -0.010070783086121082, + 0.007996145635843277, + 0.02461434341967106, + 0.0025089047849178314, + 0.004367287736386061, + 0.015345284715294838, + 0.02150590345263481, + -0.0009705083793960512, + -0.03465699404478073, + 0.02088702842593193, + 0.025050368160009384, + -0.006737297400832176, + -0.0078554917126894, + -0.023123417049646378, + 0.006797075271606445, + -0.009923096746206284, + 0.013298777863383293, + -0.011399957351386547, + 0.01724410615861416, + -0.010401317849755287, + -0.016217336058616638, + -0.016653360798954964, + 0.0036640209145843983, + 0.008636117912828922, + 0.00116830226033926, + -0.011392924934625626, + 0.00028218585066497326, + -0.00040921344771049917, + 0.007342107128351927, + 0.005474933423101902, + -0.0005305270315147936, + -0.012061027809977531, + 0.012419694103300571, + -0.009051045402884483, + -0.01929764449596405, + -0.004982646554708481, + -0.014684214256703854, + 0.001014462555758655, + 0.0265694260597229, + -0.021266791969537735, + -0.02845418080687523, + 0.0013476352905854583, + 0.006663454230874777, + 0.01215948536992073, + -0.009817606769502163, + -0.027413345873355865, + -0.007155741099268198, + -0.012398595921695232, + 0.004061366431415081, + 0.003240302437916398, + 0.0035743543412536383, + -0.006354016717523336, + 0.008157896809279919, + 0.016695557162165642, + 0.028622964397072792, + 0.010738885961472988, + 0.007001022342592478, + -0.009079176001250744, + 0.0012685178080573678, + 0.010471644811332226, + 0.010063749738037586, + -0.010703722946345806, + -0.0033510669600218534, + -0.011392924934625626, + 0.023404724895954132, + -0.013861391693353653, + 0.008924457244575024, + 0.01182191725820303, + -0.0005916233058087528, + -0.013355039060115814, + -0.010098913684487343, + -0.02078857086598873, + -0.010218468494713306, + -0.01976180076599121, + 0.01310186367481947, + -0.026949189603328705, + 0.020718244835734367, + 0.03229402005672455, + 0.00018856345559470356, + -0.008094602264463902, + 0.018650639802217484, + 0.009782442823052406, + -0.006318853702396154, + -0.0005837115459144115, + -0.004124660510569811, + -0.018903816118836403, + -0.005889860913157463, + -0.027610260993242264, + 0.018341202288866043, + -0.017736392095685005, + -0.009093241766095161, + -0.004666176158934832, + 0.0006900806911289692, + -0.005963703617453575, + 0.017722327262163162, + 0.021308988332748413, + 0.009740247391164303, + 0.0003547102678567171, + 0.0007573306211270392, + 0.024178316816687584, + 0.014163796789944172, + 0.006111389957368374, + 0.01836933195590973, + 0.009374548681080341, + 0.007841426879167557, + 0.017722327262163162, + -0.023151548579335213, + 0.0014962004497647285, + 0.007820328697562218, + -0.014740475453436375, + 0.0006540382746607065, + 0.0008333713631145656, + 0.0028974597807973623, + 0.010042652487754822, + -0.016301728785037994, + 0.0071662901900708675, + -0.012145420536398888, + -0.010668559931218624, + 0.0011261062463745475, + -0.0039523602463305, + 0.009775410406291485, + -0.0013951058499515057, + -0.014515429735183716, + 0.003945327363908291, + -0.009923096746206284, + 0.026428772136569023, + -0.0383983738720417, + -0.005605037789791822, + 0.015303089283406734, + 0.010802180506289005, + -0.02257486991584301, + -0.0044130003079771996, + -0.004360255319625139, + 0.019213253632187843, + 0.010682624764740467, + 0.0009291914757341146, + 0.010141109116375446, + -0.004022686742246151, + 0.01228607352823019, + 0.02400953322649002, + 0.004690790548920631, + -0.004100046120584011, + -0.002334846183657646, + -0.023925142362713814, + 0.00398049084469676, + -0.0034741386771202087, + 0.014205992221832275, + -0.001409171149134636, + -0.007085414603352547, + -0.004652110859751701, + -0.0019972780719399452, + 0.01210322417318821, + -0.019311711192131042, + -0.002157271374017, + -0.002296166494488716, + 0.010000456124544144, + -0.01231420412659645, + -0.013727771118283272, + -0.002359460573643446, + -0.007190904580056667, + -0.013418333604931831, + 0.019058534875512123, + -0.006269624922424555, + 0.00025691220071166754, + 0.005633168388158083, + -0.01782078482210636, + 0.004972097463905811, + 0.010907670482993126, + -0.0016825661296024919, + 0.008221190422773361, + 0.000644368352368474, + 0.017469150945544243, + -0.025514524430036545, + 0.011125682853162289, + -0.014431037940084934, + 0.014642017893493176, + -0.007152224890887737, + -0.0013230209005996585, + 0.007939883507788181, + -0.0026759307365864515, + 0.024333035573363304, + 0.011625003069639206, + -0.01782078482210636, + -0.011224140413105488, + -0.005633168388158083, + 0.00418443838134408, + 0.002737466711550951, + 0.020493198186159134, + -0.013481627218425274, + -0.0037659944500774145, + 0.014135665260255337, + 0.001919918810017407, + -0.024093925952911377, + -0.005524161737412214, + -0.020535394549369812, + -0.0010294070234522223, + -0.017117517068982124, + 0.005003744270652533, + 0.012869785539805889, + -0.016709621995687485, + 0.0014188410714268684, + 0.0018917880952358246, + 0.013566019013524055, + -0.004680241458117962, + 0.0035497399512678385, + -0.004585300572216511, + -0.0031840410083532333, + 0.0007481002248823643, + -0.021323053166270256, + -0.00040481804171577096, + -0.031450096517801285, + 0.001944533083587885, + -0.0011779721826314926, + 0.008636117912828922, + -0.004592332988977432, + -0.006839271169155836, + 0.011575774289667606, + 0.010795148089528084, + -0.010830311104655266, + -0.018130222335457802, + 0.02815880812704563, + 0.002398140262812376, + 0.015598461031913757, + -0.0021854019723832607, + -0.00895962119102478, + -2.3666581910219975e-5, + 0.0007982079987414181, + -0.013214386068284512, + -0.018045829609036446, + 0.01611887849867344, + -0.02488158456981182, + 0.00420905277132988, + 0.018299005925655365, + 0.006100840866565704, + -0.0019427749793976545, + 0.0004738261050079018, + 0.012933079153299332, + 0.013432398438453674, + 0.012785392813384533, + -0.00210452638566494, + -0.014346646144986153, + 0.01164610031992197, + 0.010162207297980785, + -0.04484030231833458, + -0.0008641392923891544, + 0.0004527280980255455, + -0.03409438207745552, + 0.02226543240249157, + -0.010499775409698486, + -0.0020201343577355146, + 0.0026530746836215258, + 0.014979586005210876, + 0.005232306197285652, + -0.005119783338159323, + 0.011941472999751568, + -0.00862205307930708, + -0.0019673893693834543, + -0.016751818358898163, + 0.008024276234209538, + -0.006874434649944305, + -0.011196009814739227, + 0.0037343474105000496, + -0.0016834452981129289, + 0.006674003321677446, + -0.002832407597452402, + 0.004177405498921871, + -0.011533577926456928, + 0.031196922063827515, + -0.017834849655628204, + -0.006487637758255005, + 0.0011885211570188403, + 0.029115252196788788, + -0.007134643383324146, + 0.0033704068046063185, + 0.0075249564833939075, + 0.01950862444937229, + 0.0060938079841434956, + 0.0003355901862960309, + 0.014881128445267677, + -0.0032860147766768932, + -0.006656421814113855, + 0.007510891184210777, + -0.005003744270652533, + 0.0018759645754471421, + -0.006993989925831556, + 0.0020078271627426147, + 0.011027226224541664, + 0.025373872369527817, + 0.013355039060115814, + 0.004423548933118582, + 0.0032684330362826586, + 0.00772890355437994, + -0.011610937304794788, + 0.005942605901509523, + -0.025823961943387985, + 0.0030398713424801826, + 0.006962342653423548, + 0.013840293511748314, + 0.00022834198898635805, + 0.006213363725692034, + -0.010872507467865944, + -0.005921507719904184, + 0.014824867248535156, + -0.014353678561747074, + 0.004444647114723921, + -0.014191927388310432, + -0.0025159374345093966, + 0.02614746429026127, + 0.0010109462309628725, + 0.008966653607785702, + -0.0021256243344396353, + -0.015331219881772995, + 0.0017177294939756393, + 0.018200548365712166, + -0.0007516165496781468, + -0.009304221719503403, + -0.01632985845208168, + 0.015626590698957443, + -0.002609120449051261, + -0.015303089283406734, + 0.009754312224686146, + 0.031056268140673637, + 0.010105946101248264, + -0.028243200853466988, + -0.00895962119102478, + -0.021126139909029007, + 0.0014786187093704939, + -0.0007366721401922405, + -0.023714162409305573, + -0.0024649505503475666, + 0.013467562384903431, + 0.005186593625694513, + -0.01576724462211132, + 0.015021782368421555, + -0.0008610624936409295, + 0.013045601546764374, + -0.006512252148240805, + 0.009501136839389801, + -0.03884846717119217, + -0.011610937304794788, + 0.0028201004024595022, + -0.006111389957368374, + -0.014529495500028133, + 0.005394057370722294, + 0.018299005925655365, + 0.014276319183409214, + -0.008080537430942059, + -0.0032121718395501375, + 0.0014434554614126682, + -0.003213929943740368, + 0.009522234089672565, + 0.0029238322749733925, + 0.0013933476293459535, + -0.015570330433547497, + 0.010900638066232204, + -0.01939610205590725, + 0.019578952342271805, + 0.014557626098394394, + -0.008636117912828922, + 0.0005344828823581338, + -0.00898071937263012, + -0.01935390569269657, + -0.001461037085391581, + -0.017131583765149117, + -0.011350728571414948, + 0.007630446460098028, + -0.01287681795656681, + -0.013319876044988632, + 0.0058582136407494545, + -0.022349823266267776, + 0.014726409688591957, + -0.015289023518562317, + 0.0014074129285290837, + 0.023306267336010933, + 0.016625231131911278, + 0.013467562384903431, + -0.005450319033116102, + -0.01986025832593441, + -0.004602882079780102, + 0.0056823971681296825, + -0.0024526435881853104, + -0.000905456196051091, + -0.015992291271686554, + -0.009065111167728901, + -0.00777813233435154, + -0.003315903712064028, + -0.0060199652798473835, + -0.008439203724265099, + 0.009051045402884483, + -0.019058534875512123, + -0.006842787377536297, + 0.011793786659836769, + 0.012194649316370487, + -0.012637707404792309, + -0.008615019731223583, + -0.0042301504872739315, + -0.013397235423326492, + 0.009072143584489822, + -0.013355039060115814, + -0.013277679681777954, + 0.006589611526578665, + 0.0024209965486079454, + -0.006793558597564697, + -0.0032614003866910934, + 0.010246599093079567, + 0.02718830108642578, + 0.009662888012826443, + -0.01317922305315733, + -0.011139748618006706, + 0.0034547988325357437, + 0.011188977397978306, + -0.0025423099286854267, + 0.0031348124612122774, + -0.0164845772087574, + -0.009789476171135902, + 0.014353678561747074, + 0.019635213539004326, + -0.02092922478914261, + 0.01797550357878208, + -0.001798605197109282, + -0.017131583765149117, + 0.0028851525858044624, + -0.006923662964254618, + 0.0051619792357087135, + 0.01241266168653965, + 0.0012676386395469308, + 0.018720965832471848, + 0.03896098956465721, + -0.012096191756427288, + 0.007264747750014067, + -0.010155174881219864, + 0.01189927663654089, + 0.003539190860465169, + 0.00803834106773138, + 0.02370009571313858, + 0.021984124556183815, + -0.011371826753020287, + -0.0038503864780068398, + -0.01970553956925869, + -0.008643151260912418, + -0.011828949674963951, + -0.021182401105761528, + 0.015049912966787815, + -0.027652457356452942, + 0.03251906484365463, + 0.0065544480457901955, + 0.010422416031360626, + 0.0021326569840312004, + -0.01302450429648161, + 0.0012008283520117402, + 0.03009982593357563, + 0.0024965975899249315, + 0.00046987022506073117, + -0.0009863318409770727, + -0.001218409975990653, + 0.010724821127951145, + -0.02575363591313362, + 0.02866516076028347, + -0.019986847415566444, + -0.00038657704135403037, + -0.010253632441163063, + 0.004870123695582151, + 0.002953721210360527, + -0.03747006133198738, + -0.014030175283551216, + -0.004100046120584011, + 0.02773684822022915, + -0.004905287176370621, + 0.00855172611773014, + -0.008024276234209538, + -0.004314542748034, + -0.006378631107509136, + -0.02718830108642578, + -0.004834960214793682, + -0.0087767718359828, + -0.000890072260517627, + -0.028594834730029106, + -0.029621604830026627, + 0.018130222335457802, + 0.016161074861884117, + -0.018228679895401, + -0.02236388809978962, + 0.03409438207745552, + -0.030803091824054718, + 0.022195104509592056, + 0.01964927837252617, + -0.020802635699510574, + 0.005422187969088554, + 0.01976180076599121, + -0.009873867966234684, + 0.01269396860152483, + -0.027990024536848068, + 0.006547415163367987, + -0.013418333604931831, + -0.007419466506689787, + 0.004778699018061161, + -0.006143036764115095, + 0.0013757660053670406, + -0.015176501125097275, + -0.010134076699614525, + 0.007370237726718187, + 0.026639752089977264, + 0.046500012278556824, + 0.027103908360004425, + 0.0020271670073270798, + 0.016709621995687485, + 0.01182191725820303, + -0.03853902965784073, + 0.00783439353108406, + -0.01827087625861168, + -0.010633395984768867, + 0.0025036302395164967, + -0.013122960925102234, + 0.004891221411526203, + 0.0036816024221479893, + 0.026808535680174828, + -0.022532673552632332, + -0.003910164348781109, + -0.018594378605484962, + -0.007124094292521477, + -0.0002602087624836713, + -0.014642017893493176, + -0.0016737753758206964, + -0.005172528326511383, + -0.01194850541651249, + 0.008143831044435501, + 0.01333394180983305, + 0.00875567365437746, + -0.014030175283551216, + -0.005942605901509523, + -0.02216697484254837, + -0.015992291271686554, + 0.02661162056028843, + -0.0016693798825144768, + -0.020029041916131973, + -0.005594488698989153, + -0.010534939356148243, + 0.012525184080004692, + 0.009726181626319885, + 0.003177008358761668, + 0.013551954180002213, + -0.011006128042936325, + 0.014951455406844616, + -0.03167514503002167, + 0.017286302521824837, + -0.017567608505487442, + -0.017722327262163162, + -0.013537888415157795, + 0.0032860147766768932, + -0.03977677971124649, + -0.00939564686268568, + 0.014248188585042953, + -0.02114020474255085, + 0.01565472222864628, + -0.00415982399135828, + -0.010612298734486103, + -0.014395874924957752, + 0.00862205307930708, + 0.03834211453795433, + 0.004100046120584011, + -0.015936028212308884, + -0.01218058355152607, + -0.0002659228048287332, + -0.003674569772556424, + 0.0028095515444874763, + 0.03040926344692707, + 0.005872278939932585, + 0.02063385210931301, + 0.014416972175240517, + -0.009620691649615765, + -0.007862524129450321, + -0.014656083658337593, + 0.012883850373327732, + -0.02288430742919445, + -0.021815340965986252, + -0.023264070972800255, + -0.013727771118283272, + -0.02370009571313858, + -0.02139338105916977, + 0.009233894757926464, + -0.031759534031152725, + 0.01133666280657053, + -0.0017757490277290344, + 0.011048323474824429, + 0.0005806347471661866, + 0.00931828748434782, + 0.00023713283007964492, + 0.0009467731579206884, + -0.011751590296626091, + -0.010661526583135128, + -0.013115928508341312, + -0.0016693798825144768, + 0.004553653299808502, + 0.013762934133410454, + -0.005956671200692654, + 0.008354810997843742, + 0.005235822405666113, + -0.03128131479024887, + 0.005379992071539164, + 0.0018988207448273897, + 0.006290722638368607, + 0.01566878706216812, + -0.00826338678598404, + -0.02257486991584301, + 0.007208486087620258, + 0.031196922063827515, + 0.01893194578588009, + -0.028397919610142708, + 0.02246234565973282, + 0.0024965975899249315, + -0.005408122669905424, + 0.017061255872249603, + 0.0010979755315929651, + 0.013741835951805115, + -0.006884983275085688, + -0.007440564222633839, + 0.009866835549473763, + 0.00885413121432066, + 0.003969941753894091, + 0.010007488541305065, + 0.017286302521824837, + -0.007384303025901318, + -0.018650639802217484, + 0.012447824701666832, + 0.007946916855871677, + 0.010042652487754822, + 0.007468694821000099, + -0.017314432188868523, + 0.020999550819396973, + 0.016709621995687485, + -0.0017564091831445694, + -0.004124660510569811, + 0.0183271374553442, + -0.013186255469918251, + 0.019747735932469368, + 0.0173566285520792, + -0.006821689195930958, + -0.03797641396522522, + -0.007539021782577038, + -0.013931718654930592, + -0.009564430452883244, + -0.014402907341718674, + -0.019874323159456253, + 0.007162773981690407, + 0.018299005925655365, + -0.01192740723490715, + 0.0032438188791275024, + 0.007588250562548637, + -0.01328471302986145, + 0.009923096746206284, + 0.009564430452883244, + -0.007053767330944538, + 0.009655855596065521, + -0.01817241869866848, + -0.013509757816791534, + -0.0031928319949656725, + -0.0069131143391132355, + 0.01786298118531704, + -0.010366154834628105, + 0.029818518087267876, + -0.02170281857252121, + -0.010471644811332226, + 0.007841426879167557, + 0.011252271011471748, + -3.540372290444793e-6, + 0.008889294229447842, + 0.024586211889982224, + 0.0022100163623690605, + 0.010506807826459408, + 0.008924457244575024, + -0.0005990955396555364, + -0.0005239338497631252, + -0.0063926964066922665, + 0.007029152940958738, + -0.01811615750193596, + -0.010774049907922745, + -0.004718921147286892, + -0.005612070206552744, + -0.010429448448121548, + -0.021463707089424133, + -0.022195104509592056, + 0.001389831304550171, + 0.02232169359922409, + 0.014276319183409214, + 0.014473233371973038, + -0.005056489259004593, + 0.02759619429707527, + 0.0014715860597789288, + 0.004708372056484222, + 0.008347778581082821, + 0.01760980486869812, + -0.003948844037950039, + -0.022349823266267776, + 0.002748015569522977, + 0.002832407597452402, + -0.014613887295126915, + 0.011484349146485329, + 0.012785392813384533, + -0.0016913569997996092, + 0.039804909378290176, + -0.014431037940084934, + 0.013115928508341312, + -0.007897688075900078, + -0.004578267689794302, + -0.008537660352885723, + -0.005358894355595112 + ], + "b62ec4b9-7646-4d54-ab3f-a82f006e5b48": [ + -0.011158580891788006, + 0.01028243638575077, + -0.016036955639719963, + 0.002225408097729087, + -0.02534511871635914, + -0.023452645167708397, + 0.001167024951428175, + 0.039783988147974014, + -0.018125684931874275, + 0.032382313162088394, + -0.0016576660564169288, + 0.033952366560697556, + -0.027055352926254272, + -0.02884969860315323, + 0.01575659029185772, + 0.021293824538588524, + -0.0621291846036911, + 0.030503859743475914, + -0.013948226347565651, + 0.0039847069419920444, + 0.061175938695669174, + -0.031877655535936356, + -0.011179608292877674, + 0.01640143245458603, + -0.02094336785376072, + -0.032774828374385834, + 0.007268497720360756, + -0.002744085853919387, + -0.004293109755963087, + -0.03210194781422615, + 0.006378334481269121, + 0.019737791270017624, + 0.026480602100491524, + 0.00885256752371788, + -0.004755714442580938, + -0.03081226348876953, + -0.014109437353909016, + 0.007184388116002083, + -0.03462524712085724, + 0.02094336785376072, + -0.02477036789059639, + 0.036083150655031204, + 0.013815052807331085, + 0.01718645729124546, + -0.012041735462844372, + 0.01790139265358448, + 0.013443566858768463, + 0.007731102406978607, + -0.0036307442933321, + -0.005442611873149872, + -0.005870170891284943, + 0.03313930332660675, + 0.009574511088430882, + 0.00817267969250679, + 0.012385183945298195, + 0.014466904103755951, + 0.006402866914868355, + 0.048671599477529526, + 0.014929508790373802, + -0.04012042656540871, + -0.019289204850792885, + -0.009742731228470802, + 0.011039425618946552, + -0.010478693060576916, + -0.013149182312190533, + -0.02378908544778824, + 0.006220628507435322, + 0.0034467538353055716, + -0.014733252115547657, + 0.01391318067908287, + -0.010899242013692856, + 0.01520987506955862, + -0.026312382891774178, + 0.004629549570381641, + -0.006693746894598007, + -0.00035264831967651844, + 0.037569090723991394, + -0.040765270590782166, + -0.0031663875561207533, + 0.014095419086515903, + -0.027461884543299675, + 0.015476223081350327, + 0.009967024438083172, + -0.02509278990328312, + 0.03347574174404144, + 0.0181537214666605, + -0.046905290335416794, + -0.043288566172122955, + -0.040176499634981155, + -0.01469119731336832, + 0.02763010561466217, + 0.007724093273282051, + -0.014067382551729679, + 0.0020747110247612, + -0.03700836002826691, + 0.004051293712109327, + 0.026999279856681824, + 0.02638247422873974, + 0.00026634804089553654, + -0.01842007040977478, + -0.025695577263832092, + 0.02049478143453598, + -0.043540894985198975, + 0.017677098512649536, + 0.02523297257721424, + 0.01124970056116581, + -0.001704977941699326, + 0.016850018873810768, + -0.022036796435713768, + 0.03417665883898735, + 0.0181537214666605, + 0.003777936799451709, + -0.026214255020022392, + -0.004804778378456831, + 0.0054215844720602036, + -0.06930656731128693, + 0.011102507822215557, + -0.025078771635890007, + 0.0011530066840350628, + -0.05298924073576927, + 0.07171771675348282, + 0.04488665238022804, + 0.010051134042441845, + -0.025933887809515, + 0.011936597526073456, + -0.01802755706012249, + 0.012048744596540928, + 0.015322021208703518, + 0.017102347686886787, + 0.0018066107295453548, + 0.012665550224483013, + -7.584129343740642e-5, + -0.01002309750765562, + 0.00885256752371788, + -0.028429148718714714, + 0.018406052142381668, + -0.017677098512649536, + 0.02069103717803955, + -0.034597210586071014, + 0.03541027009487152, + -0.015420150011777878, + -0.005985821597278118, + 0.009910950437188148, + -0.007618955802172422, + 0.025499319657683372, + -0.0013475108426064253, + -0.027728233486413956, + 0.040821343660354614, + 0.009118915535509586, + 0.031036555767059326, + -0.050353799015283585, + -0.0353822335600853, + 0.018770527094602585, + 0.011137553490698338, + -0.00708625977858901, + -0.011053443886339664, + 0.020480763167142868, + 0.009224053472280502, + 0.002591636497527361, + 0.02067701891064644, + 0.005071126390248537, + -0.0018696931656450033, + 0.0529051311314106, + -0.01692011021077633, + -0.005968298763036728, + 0.00646594911813736, + 0.038354117423295975, + 0.028176819905638695, + -0.05758725106716156, + 0.03260660916566849, + 0.02516288124024868, + -0.004135403782129288, + 0.0150416549295187, + -0.0026529666502028704, + -0.013646832667291164, + -0.026831060647964478, + 0.01513978373259306, + 0.01665376126766205, + 0.03255053609609604, + -0.037316761910915375, + -0.0015893267700448632, + -0.019821900874376297, + -0.02158821001648903, + -0.00237610493786633, + -0.006620150525122881, + 0.02119569666683674, + -0.003269772743806243, + -0.002230664948001504, + -0.033559855073690414, + -0.000843727495521307, + 0.025569412857294083, + -0.008705375716090202, + 0.062353476881980896, + 0.053269609808921814, + -0.017368696630001068, + 0.007801193743944168, + -0.007892313413321972, + -0.004082835279405117, + 0.018237831071019173, + 0.041017599403858185, + -0.017747189849615097, + -0.03442898765206337, + -0.06891404837369919, + 0.034849539399147034, + -0.0681290253996849, + 0.015602387487888336, + -0.018251849338412285, + 0.003627239726483822, + 0.024335799738764763, + -0.02035459689795971, + 0.029466504231095314, + -0.016639743000268936, + 0.02095738612115383, + -0.01439681276679039, + -0.005043089855462313, + -0.00473468704149127, + -0.029522577300667763, + 0.0280085988342762, + -0.007927359081804752, + 0.0012493826216086745, + -0.03476542979478836, + 0.039980243891477585, + -7.671743514947593e-5, + -0.028050653636455536, + -0.046905290335416794, + -0.015644442290067673, + -0.016850018873810768, + 0.013352448120713234, + -0.025933887809515, + -0.01899482123553753, + 0.03260660916566849, + 0.01984993740916252, + -0.006213619373738766, + -0.025008678436279297, + -0.028387093916535378, + 0.023326480761170387, + -0.008509119041264057, + -0.02335451729595661, + 0.01417251955717802, + -0.011978652328252792, + 0.04188673570752144, + 0.010310472920536995, + 0.03398040309548378, + 0.01933125965297222, + 0.014536995440721512, + 0.01313516404479742, + 0.013345438987016678, + 0.02380310371518135, + 0.005165750160813332, + -0.03027956746518612, + 0.019737791270017624, + -0.00911190640181303, + 0.01802755706012249, + -0.006854957435280085, + 0.005652886815369129, + -0.002467223908752203, + 0.017214493826031685, + -0.00010984666732838377, + -0.03367200121283531, + -0.013254319317638874, + -0.029690798372030258, + 0.009259099140763283, + 0.012441257014870644, + -0.027153482660651207, + 0.04965288192033768, + -0.012917879968881607, + 0.03386825695633888, + -0.05380230396986008, + -0.010044124908745289, + 0.021167660132050514, + -0.05559664964675903, + 0.008403982035815716, + -0.02638247422873974, + 0.025387173518538475, + 0.007373635191470385, + -0.017607007175683975, + -0.010583830066025257, + 0.006133014336228371, + 0.0006246913108043373, + 0.011039425618946552, + 0.00914695207029581, + 0.04197084531188011, + 0.025583431124687195, + 0.024461964145302773, + 8.26177256385563e-6, + -0.04533524066209793, + 0.009203026071190834, + 0.022134924307465553, + -0.03925129026174545, + -0.025064753368496895, + 0.012336120009422302, + -0.030363677069544792, + 0.03521401435136795, + -0.024742331355810165, + 0.039391472935676575, + 0.005726482719182968, + -0.0017137393588200212, + -0.022036796435713768, + -0.04384929686784744, + 0.030335640534758568, + -0.025303063914179802, + 0.008277816697955132, + 0.013345438987016678, + -0.028583349660038948, + 0.0005716845043934882, + -0.009062842465937138, + 0.034260768443346024, + -0.0223031435161829, + -0.027798324823379517, + 0.01352066732943058, + 0.03969987481832504, + -0.0019240141846239567, + -0.01602293737232685, + -0.04398948326706886, + 0.017396733164787292, + -0.017466824501752853, + 0.0032136994414031506, + 0.027475902810692787, + 0.0006868976051919162, + -0.014565031975507736, + -0.00930115394294262, + -0.025779686868190765, + -0.014719233848154545, + -8.268617239082232e-5, + 0.031625326722860336, + -0.03406451269984245, + 0.024560093879699707, + 0.008228752762079239, + -0.032971084117889404, + -0.04752209782600403, + -0.003259259043261409, + -0.043092310428619385, + -0.049064114689826965, + -0.005740501452237368, + 0.01881258189678192, + -0.03325144946575165, + -0.04065312072634697, + -0.016513578593730927, + -0.01122166309505701, + -0.00026525286375544965, + 0.0032084425911307335, + 0.04365304112434387, + -0.02840111218392849, + 0.0017154916422441602, + 0.0424194298684597, + -0.002875507576391101, + -0.006956590339541435, + 0.01543416827917099, + -0.018756508827209473, + -0.005849143024533987, + 0.0007872161804698408, + -0.007275506854057312, + 0.03995220735669136, + -0.021349897608160973, + 0.001255515613593161, + 0.0021903621964156628, + -0.024293744936585426, + -0.04183066263794899, + 0.012364156544208527, + 0.0032207085750997066, + -0.04455021396279335, + 0.003420469583943486, + -0.03274679183959961, + 0.0077591389417648315, + 0.004787255544215441, + 0.03027956746518612, + 0.02418159879744053, + 0.009476383216679096, + 0.020831219851970673, + -0.0026564712170511484, + -0.039643801748752594, + 0.04222317412495613, + 0.023186298087239265, + 0.007562882732599974, + -0.0352700874209404, + 0.03585885837674141, + 0.034260768443346024, + 0.02988705411553383, + -0.0035150933545082808, + 0.024223653599619865, + -0.011516048572957516, + 0.003802468767389655, + 0.005376025103032589, + -0.0023988846223801374, + 0.04494272917509079, + -0.008908641524612904, + -0.02269565686583519, + 0.007703065872192383, + -0.014873435720801353, + -0.03995220735669136, + -0.021055513992905617, + -0.012924889102578163, + -0.033111266791820526, + 0.005053603556007147, + -0.040681157261133194, + 0.02419561706483364, + -0.021167660132050514, + -0.02716750092804432, + -0.001980087487027049, + 0.0014754279982298613, + 0.01913500390946865, + -0.028583349660038948, + -0.015125765465199947, + -0.0031944243237376213, + 0.01261648628860712, + 0.0088175218552351, + 0.005589804146438837, + 0.003289047861471772, + 0.00021607923554256558, + 0.015504259616136551, + -0.008614256046712399, + 0.020747110247612, + 0.015644442290067673, + -0.019022857770323753, + 0.030195457860827446, + -0.007675028871744871, + 0.007205415517091751, + 0.019891994073987007, + -0.053269609808921814, + 0.006147032603621483, + 0.04365304112434387, + 0.05691437050700188, + -0.009055833332240582, + 0.02179848402738571, + -0.027574030682444572, + -0.005505694542080164, + 0.044970765709877014, + 0.013772997073829174, + -0.004762723576277494, + 0.008670330047607422, + -0.029550613835453987, + -0.0035641572903841734, + -0.01872847229242325, + 0.0009444841998629272, + 0.020466744899749756, + 0.0015017123660072684, + 0.016850018873810768, + 0.0003662285453174263, + -0.002108004642650485, + -0.03541027009487152, + 0.02988705411553383, + 0.029214175418019295, + 0.019022857770323753, + 0.005333969835191965, + -0.01358375046402216, + -0.030700115486979485, + -0.017915410920977592, + -0.00014303064381238073, + 0.02120971493422985, + 0.024363836273550987, + 0.012195936404168606, + 0.04384929686784744, + -0.049905210733413696, + 0.01952751725912094, + -0.0014132217038422823, + -0.009896932169795036, + -0.013534685596823692, + -0.023102188482880592, + 0.019092949107289314, + 0.001566547085531056, + -0.03700836002826691, + -0.008971723727881908, + 0.024672240018844604, + -0.03922325372695923, + -0.017887374386191368, + -0.047690317034721375, + -0.011887533590197563, + -0.00523584196344018, + 0.002323536202311516, + -0.015798645094037056, + 0.0026529666502028704, + 0.04609223082661629, + -0.029915090650320053, + 0.020522817969322205, + -0.03950361907482147, + -0.010373555123806, + 0.01410242822021246, + -0.022008759900927544, + 0.0033188366796821356, + -0.031485144048929214, + -0.02983098104596138, + -0.025443246588110924, + -0.02614416368305683, + -0.006115491036325693, + 0.028961844742298126, + 0.005593308713287115, + -0.018055593594908714, + 0.0009532456169836223, + 0.023648902773857117, + -0.019345277920365334, + 0.050550054758787155, + -0.0016278771217912436, + -0.011368855834007263, + -0.004839824512600899, + -0.023438626900315285, + -0.04183066263794899, + 0.013401512056589127, + -0.02160222828388214, + -0.011361846700310707, + -0.03476542979478836, + 0.06123201176524162, + -0.011754360049962997, + 0.0060629225336015224, + 0.025387173518538475, + 0.01050672959536314, + -0.006865471135824919, + -0.017130384221673012, + 0.017200475558638573, + 0.005617841146886349, + -0.020466744899749756, + -0.009308163076639175, + 0.010948305949568748, + -0.009721703827381134, + 0.005656391382217407, + -0.006416885182261467, + 0.03367200121283531, + -0.01990601234138012, + -0.0007118677021935582, + 0.013072081841528416, + -0.005586299579590559, + 0.006178573705255985, + 0.015167820267379284, + 0.009097888134419918, + 0.006861966568976641, + 0.022933967411518097, + -0.02076112851500511, + 0.01040860079228878, + 0.023887213319540024, + 0.04774639010429382, + 0.012609477154910564, + -0.030644042417407036, + 0.004980007652193308, + -0.01111652608960867, + -0.003376662265509367, + 0.015378095209598541, + -0.028821662068367004, + -0.016625724732875824, + -0.009034805931150913, + -0.006956590339541435, + 0.05085845664143562, + -0.018770527094602585, + 0.024560093879699707, + -0.017298605293035507, + 0.024924568831920624, + 0.007597928401082754, + 0.03327948600053787, + -0.008214734494686127, + 0.005397052504122257, + 0.024630185216665268, + 0.01686403714120388, + -0.008908641524612904, + 0.031877655535936356, + 0.00596479419618845, + 0.022022778168320656, + 0.02198072336614132, + -0.03969987481832504, + 0.004370210692286491, + -0.024938587099313736, + -0.036083150655031204, + 0.011032416485249996, + -0.00895069632679224, + 0.0024058937560766935, + 0.0015358820091933012, + -0.003648267360404134, + -0.04317642003297806, + -0.004489366430789232, + -0.028176819905638695, + 0.005432098172605038, + -0.018167739734053612, + 0.00981983169913292, + 0.027335720136761665, + 0.027574030682444572, + 0.032915011048316956, + -0.008642292581498623, + -0.02879362553358078, + 0.027125446125864983, + 0.00820772536098957, + 0.01958359032869339, + 0.0037393863312900066, + 0.008698366582393646, + 0.02036861516535282, + -0.04732584208250046, + 0.03154121711850166, + -0.02793850749731064, + -0.002623177831992507, + 0.009189007803797722, + -0.06336279958486557, + -0.032382313162088394, + 0.006991636008024216, + 0.0403447188436985, + 0.005491676274687052, + 0.01990601234138012, + 0.008761448785662651, + 0.017032256349921227, + 0.007689047604799271, + 0.03740087151527405, + -0.012819752097129822, + 0.007864275947213173, + -0.00872640311717987, + -0.009413300082087517, + 0.006655196659266949, + 0.004923934116959572, + 0.03597100451588631, + -0.007082755211740732, + -0.005666905082762241, + 0.022919949144124985, + -0.024630185216665268, + 0.004201991017907858, + 0.0030402226839214563, + -0.011621185578405857, + -0.0064589399844408035, + 0.014761288650333881, + 0.010660930536687374, + -0.008375944569706917, + 0.02223305217921734, + 0.008151652291417122, + 0.02251341938972473, + 0.024083470925688744, + 0.011621185578405857, + -0.020382635295391083, + 0.026746951043605804, + -0.06622253358364105, + 0.05960588902235031, + -0.028134765103459358, + -0.011312782764434814, + -0.022078851237893105, + -0.014151492156088352, + 0.010709995403885841, + -0.012763678096234798, + 0.005817601922899485, + 0.02988705411553383, + 0.01403934508562088, + 0.03866251930594444, + -0.02600397914648056, + 0.029550613835453987, + 0.012209954671561718, + 0.013331420719623566, + 0.0331953763961792, + -0.02918613888323307, + 0.028429148718714714, + -0.01439681276679039, + -0.01066793967038393, + -0.0035799280740320683, + 0.06386745721101761, + -0.014319712296128273, + 0.0035150933545082808, + -0.04839123412966728, + 0.036027077585458755, + 0.04026060923933983, + -0.00041551172034814954, + -0.05116686224937439, + 0.0011591396760195494, + 0.042307283729314804, + 0.0070336912758648396, + -0.015546314418315887, + -0.020985422655940056, + -0.021966705098748207, + 0.00014609715435653925, + 0.019078930839896202, + 0.0013212264748290181, + 0.016878055408596992, + 0.017747189849615097, + -0.017424769699573517, + 0.023508720099925995, + 0.012595458887517452, + -0.021686337888240814, + 0.0034379924181848764, + -0.015588369220495224, + 0.020466744899749756, + 0.020592909306287766, + -0.00603138143196702, + -0.008214734494686127, + 0.008873594924807549, + 0.032718755304813385, + 0.0018959775334224105, + -0.00930115394294262, + 0.012392193078994751, + -0.044830579310655594, + 0.01933125965297222, + -0.03684014081954956, + -0.016261249780654907, + -0.005901711992919445, + -0.025457264855504036, + -0.019177058711647987, + 0.034204695373773575, + -0.019036876037716866, + 0.006921544671058655, + 0.04202691838145256, + -0.032662682235240936, + -0.002109756926074624, + -0.011922579258680344, + 0.016850018873810768, + -0.029802944511175156, + 0.009875904768705368, + -0.0028019112069159746, + 0.013983272016048431, + -0.011726322583854198, + -0.00781521201133728, + 0.020186377689242363, + -0.017887374386191368, + -0.044129665940999985, + -0.022148942574858665, + -0.0030419749673455954, + -0.00885256752371788, + 0.005498685408383608, + 0.00572297815233469, + -0.01163520384579897, + -0.00497650308534503, + 0.035886894911527634, + -0.006027876865118742, + 0.02003217674791813, + 0.016177138313651085, + -0.010639903135597706, + -0.0034274787176400423, + 0.014158501289784908, + -0.005376025103032589, + -0.012237991206347942, + 0.007962404750287533, + 0.00209924322552979, + 0.004405256360769272, + -0.02587781473994255, + 0.059381596744060516, + 0.004300118889659643, + -0.043484821915626526, + -0.06274598836898804, + -0.0003447630151640624, + 0.011733331717550755, + -0.006879489403218031, + -0.014761288650333881, + -0.00327502959407866, + 0.040428828448057175, + 0.002078215591609478, + -0.019233131781220436, + -0.0007543607498519123, + -0.029943127185106277, + -0.0009401034330949187, + -0.004843329079449177, + -0.01602293737232685, + 0.02127980627119541, + -0.02924221195280552, + -0.009013778530061245, + -0.018013538792729378, + 0.028569331392645836, + 0.04191477224230766, + 0.004576980601996183, + -0.014088409952819347, + -0.01570051535964012, + -0.0018626840319484472, + 0.006108481902629137, + 0.01951349899172783, + 0.025246990844607353, + -0.031092628836631775, + 0.04917626082897186, + 0.014032335951924324, + -0.025527356192469597, + 0.007689047604799271, + -0.010843168944120407, + -0.005929748527705669, + -0.016443487256765366, + 0.03798964247107506, + -0.0017925924621522427, + -0.011396892368793488, + 0.016639743000268936, + -0.02378908544778824, + 0.008165670558810234, + -0.006830425467342138, + -0.0383821539580822, + 0.018041575327515602, + 0.05842835083603859, + -0.019106967374682426, + 0.01769111678004265, + 0.005362006835639477, + 0.024924568831920624, + 0.002765113255009055, + 0.0066446829587221146, + 0.0071037826128304005, + 0.02977490797638893, + 0.002637196099385619, + -0.05769939720630646, + 0.009069851599633694, + -0.026186218485236168, + -0.052092067897319794, + -0.008291834965348244, + -0.028933808207511902, + 0.0322701670229435, + -0.005642373114824295, + 0.02335451729595661, + 0.017284585162997246, + 0.001976582920178771, + -0.01842007040977478, + -0.0021745916455984116, + 0.002752847271040082, + -0.003679808462038636, + 0.015406131744384766, + 0.004612026736140251, + -0.006073436234146357, + 0.023592829704284668, + -0.0197097547352314, + -0.014081400819122791, + -0.0014009556034579873, + 0.004289605189114809, + -0.05155937373638153, + 0.02412552572786808, + 0.0331953763961792, + -0.01881258189678192, + 0.0029455991461873055, + 0.014277656562626362, + -0.0025495816953480244, + -0.005631859414279461, + 0.010674948804080486, + -0.030587969347834587, + -0.00235858210362494, + -0.003784945933148265, + -0.02691517025232315, + 0.010345518589019775, + -0.013857107609510422, + -0.006960094906389713, + -0.00946937408298254, + 0.0076820384711027145, + 0.00022473116405308247, + 0.009315172210335732, + 0.028933808207511902, + 0.021055513992905617, + -0.012896852567791939, + -0.015728551894426346, + -0.0015332535840570927, + -0.023228352889418602, + -0.011228673160076141, + 0.039924170821905136, + 0.014565031975507736, + -0.0029333329293876886, + 0.005228832829743624, + 0.005617841146886349, + 0.01228705607354641, + 0.02095738612115383, + 0.03728872537612915, + -0.02406945265829563, + -0.02471429482102394, + -0.019149022176861763, + 0.009448346681892872, + 0.014235601760447025, + -0.01693412847816944, + -0.01743878796696663, + -0.012630504556000233, + -0.003897092305123806, + -0.009350217878818512, + 0.0014535243390128016, + 0.014508958905935287, + 0.03972791135311127, + -0.010086179710924625, + 0.00496248435229063, + -0.005884189158678055, + -0.003623735159635544, + -0.009658620692789555, + -0.05526021122932434, + 0.015420150011777878, + -0.01822381280362606, + 0.02353675663471222, + 0.01096232421696186, + 0.009861886501312256, + -0.00839697290211916, + -0.007990441285073757, + 0.002230664948001504, + -0.033756110817193985, + 0.005298924166709185, + -0.009455355815589428, + -0.03156925365328789, + 0.019429389387369156, + 0.006781361531466246, + -0.011488012038171291, + -0.009189007803797722, + -0.007990441285073757, + 0.009217044338583946, + 0.018055593594908714, + -0.016962165012955666, + -0.023971322923898697, + -0.008277816697955132, + 0.004573476035147905, + -0.0342327319085598, + -0.009224053472280502, + -0.02043870836496353, + 0.027517957612872124, + 0.00627319747582078, + -0.007317562121897936, + -0.07138127833604813, + 0.028106726706027985, + 0.0065851048566401005, + -0.005600317846983671, + 0.01972377300262451, + -0.018910711631178856, + 0.004103862680494785, + 0.02620023675262928, + -0.018910711631178856, + -0.013576741330325603, + -0.00025758659467101097, + -0.04152225703001022, + -0.02418159879744053, + -0.027924489229917526, + 0.011242691427469254, + -0.01776120811700821, + -0.012252009473741055, + -0.00734559865668416, + -0.011537075974047184, + 0.028905771672725677, + -0.027644123882055283, + -0.04530720412731171, + 0.004527916666120291, + 0.028639424592256546, + -0.006998645141720772, + 0.05408266931772232, + 0.01879856362938881, + 0.023228352889418602, + -0.005036080721765757, + -0.01847614347934723, + 0.023578811436891556, + 0.02127980627119541, + 0.014249620027840137, + 0.001570051652379334, + -0.03599904105067253, + -0.0010680205887183547, + -0.011123535223305225, + 0.0015183590585365891, + 0.014635124243795872, + 0.015994900837540627, + -0.005085144657641649, + -0.011747350916266441, + 0.009231062605977058, + 0.021756429225206375, + 0.015546314418315887, + -0.002199123613536358, + 0.01976582780480385, + 0.019289204850792885, + 0.026017997413873672, + -0.0016699321568012238, + 0.013695896603167057, + -0.025303063914179802, + 0.0026845079846680164, + -0.009525447152554989, + -0.014873435720801353, + -0.03243838623166084, + -0.010787095874547958, + 0.009343208745121956, + 0.010569811798632145, + -0.01854623481631279, + 0.012392193078994751, + -0.019345277920365334, + -0.02346666343510151, + 0.0382700078189373, + 0.014354757964611053, + -0.022471364587545395, + 0.014579051174223423, + 0.03644762560725212, + 0.01033850945532322, + -0.00027007164317183197, + 0.009525447152554989, + 0.037849459797143936, + 0.001967821503058076, + 0.026859097182750702, + -0.006620150525122881, + -0.0032172040082514286, + -0.01886865682899952, + -0.0078082033433020115, + -0.018896693363785744, + -0.0003594384470488876, + -0.03765320032835007, + 0.010387573391199112, + -0.03625136986374855, + 0.014018317684531212, + 0.025078771635890007, + 0.024475982412695885, + 0.0037358817644417286, + -0.01595284603536129, + 0.02146204560995102, + -0.014873435720801353, + 0.011242691427469254, + -0.003641257993876934, + -0.009707685559988022, + -0.005148227326571941, + 0.004124890081584454, + 0.009910950437188148, + 0.02523297257721424, + 0.017719153314828873, + -0.0012546394718810916, + 0.006784866098314524, + -0.006900516804307699, + 0.00956049282103777, + -0.020775146782398224, + -0.007639983203262091, + 0.015097728930413723, + -0.011403901502490044, + 0.03521401435136795, + -0.025401191785931587, + 0.001385185052640736, + -0.027602067217230797, + 0.00024422537535429, + -0.0010732774389907718, + -0.010051134042441845, + 0.004496375564485788, + -0.0034642769023776054, + -0.019177058711647987, + -0.002234169514849782, + 0.00700214970856905, + -0.034989722073078156, + 0.024111507460474968, + 0.007040700409561396, + 0.021840538829565048, + -0.007696056738495827, + -0.015181838534772396, + 0.009777776896953583, + 0.023817121982574463, + 0.0012958182487636805, + -0.001035603228956461, + 8.665620043757372e-6, + -0.03347574174404144, + 0.027517957612872124, + 0.006872480269521475, + -0.009616565890610218, + -0.04295212775468826, + 0.028064671903848648, + 0.008249780163168907, + -0.002726562786847353, + -0.031008519232273102, + 0.004054798278957605, + -0.008894622325897217, + -0.0006290720193646848, + -0.0114109106361866, + -0.00655005918815732, + 0.009224053472280502, + 0.03170943632721901, + 0.013373475521802902, + -0.018644362688064575, + 0.0031961766071617603, + 0.002197371330112219, + -0.011102507822215557, + 0.02399936132133007, + -0.025204936042428017, + 0.005477657541632652, + -0.04026060923933983, + -0.02516288124024868, + 0.016513578593730927, + 0.02833102084696293, + -0.01520987506955862, + 0.0010285940952599049, + -0.013660850934684277, + 0.001973078353330493, + -0.006854957435280085, + -0.009882913902401924, + 0.024237671867012978, + -0.0008971723727881908, + 0.025275027379393578, + 0.034148622304201126, + -0.019934048876166344, + 0.023060133680701256, + -0.020340578630566597, + -0.0032259654253721237, + 0.0011749102268368006, + -0.005228832829743624, + -0.011256709694862366, + 0.007184388116002083, + 0.02251341938972473, + 0.005992830730974674, + 0.019877975806593895, + 0.045615606009960175, + -0.00898574199527502, + 0.0434567853808403, + -0.020999440923333168, + -0.004811787512153387, + 0.02802261710166931, + -0.009539465419948101, + -0.002481242176145315, + 0.002623177831992507, + 0.022541455924510956, + 0.001170529518276453, + 0.018195776268839836, + 0.015476223081350327, + 0.003103305120021105, + -0.008256789296865463, + -0.0006671843002550304, + 0.022457346320152283, + 0.0034222218673676252, + -0.004187972284853458, + -0.004314137157052755, + -0.013177218846976757, + -0.006770847365260124, + -0.009118915535509586, + -0.03002723678946495, + 0.006637673359364271, + 0.01206276286393404, + -0.00604890426620841, + 0.027644123882055283, + -0.022078851237893105, + 0.021504100412130356, + -0.011228673160076141, + 0.0035729187075048685, + -0.019751809537410736, + -0.008649302646517754, + -0.01568649709224701, + 0.07788577675819397, + -0.006409876048564911, + -0.0031909195240586996, + 0.009294144809246063, + -0.005694941617548466, + -0.011908560991287231, + 0.012111826799809933, + 0.033363595604896545, + 0.017999520525336266, + -0.015574350953102112, + -0.01854623481631279, + -0.00700214970856905, + 0.019695736467838287, + 0.03403647616505623, + -0.0013667859602719545, + -0.004107367247343063, + 0.01137586496770382, + 0.00878247618675232, + -0.03131692111492157, + -0.016765907406806946, + -0.011761369183659554, + -0.016611706465482712, + 0.02516288124024868, + -0.012167899869382381, + -0.0036132214590907097, + -0.020985422655940056, + 0.007843248546123505, + 0.012644522823393345, + -0.015462204813957214, + 0.00499402591958642, + 0.02069103717803955, + -0.0009655116591602564, + 0.023901231586933136, + 0.006378334481269121, + -0.02450401894748211, + 0.02171437442302704, + 0.003105057403445244, + -0.024784386157989502, + -0.009294144809246063, + -0.012504339218139648, + -0.008530146442353725, + -0.004619035869836807, + -0.007654001470655203, + -0.004328155890107155, + 0.0029455991461873055, + 0.006574591156095266, + 0.012903861701488495, + 0.02827494777739048, + -0.02210688777267933, + -0.005866665858775377, + -0.017985502257943153, + 0.0015288727590814233, + -0.012273037806153297, + 0.0007788927759975195, + -0.026214255020022392, + -0.006479967385530472, + -0.024630185216665268, + -0.03255053609609604, + -0.036812104284763336, + -0.02419561706483364, + -0.006346793379634619, + 0.0108922328799963, + -0.005870170891284943, + -0.021840538829565048, + -0.014593069441616535, + 0.018307922407984734, + -0.005362006835639477, + -0.010100197978317738, + 0.0011924331774935126, + -0.011235682293772697, + -0.00914695207029581, + -0.011074471287429333, + 0.003522102488204837, + 0.007128314580768347, + -0.00992496870458126, + 0.014270647428929806, + 0.020452726632356644, + -0.013415530323982239, + -0.0009514933335594833, + -0.02632640115916729, + -0.028260929509997368, + 0.017943447455763817, + 0.013142173178493977, + 0.005411070771515369, + -0.0020396653562784195, + -0.006364316213876009, + -0.005635363981127739, + -0.00028693745844066143, + 0.0039917160756886005, + -0.028246911242604256, + -0.0011582635343074799, + -0.01777522638440132, + 0.004209000151604414, + -0.009357227012515068, + -0.006932058371603489, + -0.02756001241505146, + -0.020775146782398224, + -0.022933967411518097, + -0.0041494220495224, + -0.0331953763961792, + -0.017424769699573517, + 0.004398247227072716, + 0.014607087709009647, + -0.01847614347934723, + 0.026929188519716263, + 0.012679568491876125, + -0.011572121642529964, + 0.03437291458249092, + -0.0059332530945539474, + -0.02035459689795971, + 0.007983432151377201, + 0.0005397052154876292, + -0.004338669590651989, + -0.0016383909387513995, + -0.010583830066025257, + 0.006529031787067652, + -0.014677179045975208, + 0.004738191608339548, + 0.013548704795539379, + -0.003541377605870366, + -0.021377934142947197, + 0.004825805779546499, + -0.006189087405800819, + 0.002374352654442191, + 0.01575659029185772, + -0.017803264781832695, + -0.020606927573680878, + 0.01666777953505516, + -0.01352066732943058, + 0.006963599473237991, + 0.0020396653562784195, + 0.01270760502666235, + 0.006655196659266949, + 0.027644123882055283, + 0.004626045003533363, + -0.007766148075461388, + 0.02210688777267933, + -0.013184227980673313, + -0.014242610894143581, + -0.014929508790373802, + -0.013899162411689758, + 0.011572121642529964, + 0.00038528471486642957, + 0.008312862366437912, + 0.000246853829594329, + 0.024237671867012978, + -0.0330832302570343, + 0.012539385817945004, + 0.013976262882351875, + -0.01575659029185772, + 0.005193786695599556, + -0.0038129824679344893, + -0.027798324823379517, + -0.0003679808578453958, + 0.01189454272389412, + -0.025583431124687195, + 0.005186777561903, + -0.025695577263832092, + 0.012420229613780975, + -0.0003559338510967791, + -0.01215388160198927, + -0.011095498688519001, + 0.002765113255009055, + -0.020270487293601036, + -0.015546314418315887, + 0.015237911604344845, + -0.00852313730865717, + -0.05848442390561104, + 0.0009541217586956918, + 0.0012844284065067768, + -0.020901313051581383, + 0.014046354219317436, + -0.021756429225206375, + 0.00891565065830946, + 0.002994663082063198, + 0.006385344080626965, + 0.020480763167142868, + -0.008481082506477833, + 0.032326240092515945, + -0.0029105532448738813, + -0.03313930332660675, + -0.017536915838718414, + 0.006648187525570393, + 0.0038234961684793234, + 0.031204774975776672, + 0.0051587410271167755, + -0.00080824363976717, + -0.012861806899309158, + -0.027798324823379517, + 0.00553022651001811, + 0.009805813431739807, + -0.02632640115916729, + -0.009917959570884705, + 0.023186298087239265, + 0.0055442447774112225, + 0.005092153791338205, + -0.02139195241034031, + -0.028176819905638695, + 0.011516048572957516, + -0.0036307442933321, + 0.023242371156811714, + -0.00022243127750698477, + 0.002086977008730173, + -0.00544611643999815, + 0.028415130451321602, + -0.014214574359357357, + -9.418557601748034e-5, + 0.013639823533594608, + -0.0036027077585458755, + -0.005978812463581562, + 0.004433292895555496, + 0.004002229776233435, + -0.01589677296578884, + 0.002637196099385619, + 0.026606768369674683, + -0.0076820384711027145, + -0.007191397249698639, + 0.00010612305050017312, + -0.02251341938972473, + -0.016821982339024544, + 0.004100358113646507, + -0.014929508790373802, + -0.008684348315000534, + 0.021055513992905617, + 0.0065886094234883785, + -0.013695896603167057, + 0.025204936042428017, + 0.004524412099272013, + 0.03041975013911724, + -0.013569732196629047, + -0.01872847229242325, + 0.010745041072368622, + 0.02158821001648903, + -0.019233131781220436, + 0.007787175476551056, + -0.007534845732152462, + -0.011691276915371418, + -0.006041895132511854, + -0.01533603947609663, + 0.003770927432924509, + -0.021167660132050514, + -0.024153562262654305, + -0.006592113990336657, + -0.003946156706660986, + -0.01725654862821102, + -0.00021005573216825724, + 0.0016103542875498533, + 0.024461964145302773, + 0.006721783429384232, + -0.004187972284853458, + -0.01228705607354641, + 0.003117323387414217, + -0.0019012343836948276, + -0.0014622857561334968, + -0.012532376684248447, + 0.008866585791110992, + 0.003127837087959051, + -0.02406945265829563, + -0.013422539457678795, + -0.029326321557164192, + -0.01513978373259306, + -0.03305519372224808, + 0.0017268816009163857, + 1.3306450455274899e-5, + -0.027840379625558853, + 0.04261568561196327, + 0.020859256386756897, + -0.002751094987615943, + 0.0016489046392962337, + -0.03327948600053787, + 0.01429868396371603, + 0.017536915838718414, + -0.01652759686112404, + -0.012756668962538242, + 0.021742410957813263, + -0.01122166309505701, + -0.01410242822021246, + -0.02101345919072628, + 0.034457024186849594, + -0.006392353214323521, + 0.004499880131334066, + 0.014438867568969727, + 0.013850098475813866, + -0.003287295578047633, + 0.0055477493442595005, + 0.025008678436279297, + -0.015153801999986172, + 0.018518198281526566, + 0.010394582524895668, + 0.0035869372077286243, + -0.01563042402267456, + 0.008544164709746838, + -0.005228832829743624, + -0.0010864196810871363, + -0.000591397809330374, + 0.022036796435713768, + -0.0017960970290005207, + 0.034989722073078156, + 0.009945997036993504, + -0.009749740362167358, + -0.015055673196911812, + -0.020634964108467102, + 0.003648267360404134, + 0.007380644325166941, + 0.05537235736846924, + 0.004745200742036104, + 0.013457585126161575, + -0.006462444551289082, + 0.015111747197806835, + -0.03636351600289345, + -0.007471763528883457, + 0.0034590200521051884, + -0.005740501452237368, + -0.012020708061754704, + 0.0005340102943591774, + -0.004808282945305109, + 0.019990121945738792, + -0.004534925799816847, + 8.542412251699716e-5, + 0.021616246551275253, + -0.0030332135502249002, + 0.006343288812786341, + -0.05141919106245041, + -0.010976343415677547, + -0.021027477458119392, + 0.02223305217921734, + -0.012034726329147816, + 0.021419990807771683, + -0.006350297946482897, + 0.01332441158592701, + 0.025513337925076485, + 0.01654161512851715, + 0.011102507822215557, + 0.01474727038294077, + 0.009637593291699886, + 0.006613141391426325, + -0.005046594422310591, + 0.03176550939679146, + -0.005523217376321554, + 0.028288966044783592, + 0.00012693148164544255, + 0.012896852567791939, + 0.016261249780654907, + 0.017663080245256424, + -0.011782396584749222, + -0.010380564257502556, + 0.02412552572786808, + -0.005281401332467794, + -0.0034817997366189957, + -0.020284505560994148, + -0.025919869542121887, + -0.024560093879699707, + 0.002507526660338044, + -0.017088329419493675, + 0.014635124243795872, + -0.016163120046257973, + 0.008305853232741356, + 0.013170209713280201, + -0.0033556348644196987, + -0.0031804058235138655, + -0.005744006019085646, + -0.0019082435173913836, + 0.0021728393621742725, + -0.03597100451588631, + -0.00981983169913292, + -0.001442134496755898, + -0.0052919150330126286, + -4.632616037270054e-5, + -0.0007898446056060493, + 0.009062842465937138, + 0.001635762513615191, + 0.0072404611855745316, + -0.0017189962090924382, + 0.0067182788625359535, + 0.01352066732943058, + -0.02943846769630909, + 0.023172279819846153, + -0.00701967254281044, + 0.007829230278730392, + -0.028583349660038948, + -0.02586379647254944, + -0.008649302646517754, + 0.0035886894911527634, + -0.008410991169512272, + -0.006381839048117399, + -0.017214493826031685, + 0.0008126243483275175, + -0.00862827431410551, + 0.019359298050403595, + 0.012504339218139648, + 0.005775547120720148, + 0.01426363829523325, + 0.03140103071928024, + -0.014214574359357357, + -0.007955395616590977, + 0.03027956746518612, + 0.00865631178021431, + 0.03067207895219326, + -0.01861632615327835, + 0.025331100448966026, + 0.013688887469470501, + -0.011109516955912113, + -0.013976262882351875, + 0.005193786695599556, + 0.005694941617548466, + -0.01345057599246502, + 0.006879489403218031, + -0.006890003103762865, + 0.005666905082762241, + -0.0006684985128231347, + -0.012364156544208527, + -0.022667620331048965, + -0.024798404425382614, + 0.005018557887524366, + -0.005207804962992668, + -0.014985581859946251, + 0.008354917168617249, + 0.008410991169512272, + 0.0004479290801100433, + 0.01588275469839573, + 0.00627319747582078, + -0.014025326818227768, + -0.017018238082528114, + -4.9420046707382426e-5, + 0.013934208080172539, + 0.0145229771733284, + 0.018055593594908714, + -0.016177138313651085, + 0.006154041737318039, + -0.006217123940587044, + 0.0016296295216307044, + 0.023775067180395126, + 0.004969493951648474, + 0.005197291262447834, + 0.022597528994083405, + -0.018139703199267387, + -0.0004639187245629728, + 0.013338429853320122, + 0.015251929871737957, + 0.007506809197366238, + 0.016247229650616646, + -0.011747350916266441, + -0.018910711631178856, + -0.000623377098236233, + -0.010948305949568748, + 0.014382794499397278, + 0.013457585126161575, + 0.011235682293772697, + 0.013114136643707752, + -0.004654081538319588, + -0.005074630957096815, + 0.02664882317185402, + 0.006630664225667715, + 0.005498685408383608, + 0.005232337396591902, + 0.017200475558638573, + 0.01874249055981636, + 0.004163440316915512, + 0.0006544802454300225, + 0.0011433690087869763, + 0.017480842769145966, + -0.0017829547869041562, + 0.006203105673193932, + -0.02587781473994255, + 0.01033850945532322, + 0.011123535223305225, + 0.008256789296865463, + -0.012336120009422302, + -0.0026617280673235655, + -0.016976183280348778, + -0.005828115623444319, + 0.02108355052769184, + -0.009420310147106647, + 0.005193786695599556, + 0.006087454501539469, + -0.008810512721538544, + -0.02069103717803955, + -0.009546474553644657, + -0.004874870181083679, + 0.004307128023356199, + -0.0018574271816760302, + 0.0017505374271422625, + -0.0212657880038023, + -0.02502269670367241, + -0.009427319280803204, + 0.06723185628652573, + 0.0016313818050548434, + 0.02677498757839203, + 0.014207565225660801, + 0.010198326781392097, + -0.021686337888240814, + 0.011810433119535446, + -0.005533731076866388, + 0.006690242327749729, + 0.0033030661288648844, + -0.022134924307465553, + -0.012651531957089901, + 0.016093028709292412, + 0.013941217213869095, + -0.03824197128415108, + 0.003110314253717661, + 0.01693412847816944, + -0.004587494768202305, + -0.006052408833056688, + 0.013688887469470501, + -0.015055673196911812, + 0.0004036837490275502, + -0.0072614885866642, + 0.013934208080172539, + -0.010058143176138401, + 0.018378015607595444, + -0.003935643006116152, + -0.016681797802448273, + 0.020901313051581383, + 0.012476302683353424, + 0.012609477154910564, + -0.014438867568969727, + -0.007338589522987604, + -0.015742572024464607, + 0.0010811628308147192, + -0.0017829547869041562, + 0.008677339181303978, + 0.015980882570147514, + 0.0011950616026297212, + -0.008158661425113678, + 0.016064992174506187, + -0.004170449450612068, + 0.007317562121897936, + 0.005565272178500891, + -0.01757897064089775, + -0.0005585423787124455, + -0.03274679183959961, + 0.0024497010745108128, + -0.021672319620847702, + -0.0022657106164842844, + 0.015728551894426346, + -0.024335799738764763, + 0.02088729292154312, + 0.034793466329574585, + 0.02516288124024868, + -0.0034537632018327713, + 0.01672385260462761, + 0.005638868547976017, + 0.010002070106565952, + 0.007836239412426949, + -0.024882514029741287, + -0.008418000303208828, + 0.02069103717803955, + -0.004289605189114809, + -0.010941296815872192, + 0.0005962165887467563, + -0.0024234168231487274, + -0.018237831071019173, + 0.0075488644652068615, + -0.027854397892951965, + -0.003918119706213474, + -0.027321701869368553, + -0.0072895255871117115, + -0.009833849966526031, + -0.010499720461666584, + 0.015742572024464607, + 0.010583830066025257, + 0.0333075225353241, + 0.029214175418019295, + -0.004955475218594074, + 0.006875984836369753, + 0.0039321379736065865, + -0.017985502257943153, + -0.010604857467114925, + 0.013023016974329948, + -0.005043089855462313, + 0.031008519232273102, + -0.04676510766148567, + -0.005621345713734627, + -0.01827988587319851, + -0.02308817021548748, + -0.02043870836496353, + 0.019695736467838287, + 0.008677339181303978, + 0.007387653458863497, + 0.006234646774828434, + 0.011109516955912113, + 0.007184388116002083, + -0.008796494454145432, + -0.015420150011777878, + -0.007829230278730392, + 0.010352527722716331, + -0.01391318067908287, + -0.010850178077816963, + -0.020270487293601036, + 0.0010329748038202524, + 0.033223412930965424, + -0.008460055105388165, + -0.007009158842265606, + 0.0018837114330381155, + 0.004608522169291973, + -0.007247470319271088, + 0.0029315806459635496, + -0.004787255544215441, + 0.001829390530474484, + 0.004128394648432732, + 0.021966705098748207, + 0.008635283447802067, + -0.012245000340044498, + -0.013268337585031986, + 0.014565031975507736, + 0.015560332685709, + -0.004881879314780235, + -0.012973953038454056, + -0.008670330047607422, + 0.0031663875561207533, + -0.01686403714120388, + -0.012090799398720264, + -0.004461329896003008, + -0.008530146442353725, + 0.011270727962255478, + 0.010590839199721813, + 0.021153641864657402, + 0.005127199925482273, + 0.02502269670367241, + -0.00859322864562273, + -0.01614910177886486, + 0.027391793206334114, + 0.006854957435280085, + -0.019667699933052063, + 0.024209635332226753, + 0.0041914768517017365, + 0.020256469026207924, + 0.012945916503667831, + 0.0035816803574562073, + -0.02820485644042492, + 0.006150537170469761, + -0.013317402452230453, + 0.010303463786840439, + -0.006283711176365614, + 0.022387253120541573, + -0.017859337851405144, + 0.015532296150922775, + -0.013380484655499458, + 0.005249860230833292, + 0.0015052169328555465, + -0.03283090144395828, + 0.029073990881443024, + -0.029073990881443024, + 0.00221314188092947, + 0.01274265069514513, + -0.0046365587040781975, + -0.032522499561309814, + 0.005127199925482273, + 0.005954280495643616, + -0.0015069692162796855, + 0.015588369220495224, + 0.012441257014870644, + 0.01014926191419363, + 0.008018477819859982, + -0.0028317002579569817, + 0.0029175623785704374, + 0.03852233663201332, + -0.02573763206601143, + 0.0004906411049887538, + -0.0027984066400676966, + 0.008824530988931656, + -0.008256789296865463, + -0.021027477458119392, + 0.006574591156095266, + -0.01180342398583889, + -0.01628928631544113, + 0.014221583493053913, + -0.006276702042669058, + -0.021111587062478065, + -0.009315172210335732, + 0.02010226808488369, + -0.013934208080172539, + 0.003131341887637973, + -0.0002733572036959231, + 0.0009900437435135245, + 0.01913500390946865, + 0.010436637327075005, + 0.0024199122563004494, + -0.00470314547419548, + 0.0013326163170859218, + 0.02988705411553383, + 0.01241322048008442, + 0.024041416123509407, + 0.00682692090049386, + -0.002624930115416646, + 0.0006772599881514907, + 0.004159935750067234, + 0.00442628376185894, + -0.014873435720801353, + 0.0024479487910866737, + -0.009588529355823994, + -0.007128314580768347, + -0.0024391873739659786, + -0.0016681798733770847, + -0.03170943632721901, + -0.026732932776212692, + 0.012076781131327152, + 0.0021430503111332655, + 0.003010433865711093, + -0.005330465268343687, + 0.008894622325897217, + 0.004194981884211302, + 0.011754360049962997, + -0.005369015969336033, + -0.004384228959679604, + 0.011880524456501007, + 0.02741982974112034, + 0.018700435757637024, + -0.002978892531245947, + 0.003981202375143766, + -0.006234646774828434, + 0.0036973312962800264, + 0.031344957649707794, + 0.0011836717603728175, + 0.018630344420671463, + -0.012399202212691307, + -0.00046610907884314656, + 0.0021605731453746557, + -0.003998725209385157, + 0.029326321557164192, + 0.008277816697955132, + -0.012658541090786457, + 0.015644442290067673, + -0.013107127510011196, + -0.020971404388546944, + 0.01115157175809145, + -0.0006089207017794251, + -0.018125684931874275, + -0.008516128174960613, + -0.017200475558638573, + -0.0038340098690241575, + -0.002327040769159794, + -0.01679394580423832, + -2.6585521482047625e-5, + 7.693647057749331e-5, + 0.004387733526527882, + 0.009266108274459839, + -0.011782396584749222, + -0.001959059853106737, + -0.003255754243582487, + -0.005312942434102297, + 0.013289365917444229, + 0.0030945437029004097, + -0.021630264818668365, + 0.016177138313651085, + 0.019485462456941605, + -0.021307842805981636, + 0.009931977838277817, + 0.0082988440990448, + 0.01154408510774374, + -0.031232813373208046, + 0.008418000303208828, + -0.005838629323989153, + -0.0027090399526059628, + 0.0038550375029444695, + -0.002202628180384636, + 0.011123535223305225, + 0.0290459543466568, + 0.003005177015438676, + 0.0036307442933321, + -0.007485781796276569, + -0.01076606847345829, + 0.006017363164573908, + 0.016906091943383217, + -0.010156271047890186, + -0.004089844413101673, + 0.009090879000723362, + -0.02088729292154312, + 0.012048744596540928, + -0.023915249854326248, + 0.024363836273550987, + 0.0011556351091712713, + -0.0035589004401117563, + 0.018784545361995697, + -0.0027931497897952795, + -0.021952686831355095, + -0.012826761230826378, + -0.0016059735789895058, + 0.0021693347953259945, + 0.028611386194825172, + -0.001049621612764895, + -0.01665376126766205, + 0.03541027009487152, + -0.027461884543299675, + -0.02491055056452751, + -0.009518438018858433, + -0.011466983705759048, + -0.007710075005888939, + 0.008418000303208828, + 0.019667699933052063, + 0.035830821841955185, + 0.015910791233181953, + -0.00439123809337616, + 0.019863955676555634, + 0.016821982339024544, + -0.0009006769396364689, + -0.012006689794361591, + -0.004675108939409256, + -0.01047168392688036, + -0.016709834337234497, + -0.0025548385456204414, + 0.028877735137939453, + -0.0021290320437401533, + 0.017592988908290863, + -0.004079330712556839, + -0.005586299579590559, + 0.014831379987299442, + -0.017228512093424797, + 0.0057054553180933, + -0.0024286736734211445, + 0.018069611862301826, + 0.012952925637364388, + 0.019219113513827324, + -0.02224707044661045, + 0.008130624890327454, + 0.02120971493422985, + -0.018686417490243912, + 0.0009953005937859416, + 0.008102587424218655, + 0.008600237779319286, + -0.005274392198771238, + -0.016751889139413834, + 0.0165976881980896, + -0.008305853232741356, + -0.01206276286393404, + -0.013829071074724197, + 0.0022569491993635893, + -0.004471843596547842, + 0.0030875345692038536, + -0.018952766433358192, + 0.007899322547018528, + -0.004359696991741657, + 0.013611786998808384, + 0.01613508351147175, + -0.017270566895604134, + -0.01267255935817957, + 0.013240301050245762, + 0.016387414187192917, + -0.005575785879045725, + -0.010177298448979855, + 0.013611786998808384, + 0.010254399850964546, + -0.01834997907280922, + -0.0005458382656797767, + 0.0013737952103838325, + 0.017677098512649536, + -0.0013790520606562495, + -0.008347908034920692, + 0.01241322048008442, + -0.00353436847217381, + -0.00019943247025366873, + 0.003138351021334529, + -0.040961526334285736, + 0.008621265180408955, + -0.007247470319271088, + -0.011459974572062492, + 0.004787255544215441, + -0.0034835520200431347, + -0.0007915968890301883, + 0.006581600289791822, + -0.018111666664481163, + -0.008544164709746838, + -0.01842007040977478, + -0.015980882570147514, + 0.042755868285894394, + 0.004037275444716215, + 0.010513738729059696, + -0.013401512056589127, + -0.021952686831355095, + 0.020775146782398224, + 0.02055085450410843, + 0.0037008358631283045, + -0.007061727810651064, + -0.003369653131812811, + 0.005309437867254019, + -0.0009234566823579371, + -0.002985901664942503, + 0.01474727038294077, + -0.040036316961050034, + 0.05052201822400093, + -0.013576741330325603, + 0.01111652608960867, + -0.00548116210848093, + 0.0145229771733284, + -0.008193707093596458, + -0.0017216246342286468, + 0.028232892975211143, + 0.008249780163168907, + 0.005309437867254019, + -0.023116206750273705, + -0.014999600127339363, + 0.0067147742956876755, + 0.014971563592553139, + -0.007124810013920069, + -0.012329110875725746, + 0.017228512093424797, + -0.005540740210562944, + 0.010618875734508038, + -0.00027357623912394047, + -0.019163040444254875, + -0.0051622455939650536, + 0.007012663409113884, + -0.0026442052330821753, + 0.01050672959536314, + 0.0030594978015869856, + 0.0009935483103618026, + -4.9639082135399804e-5, + 0.013541694730520248, + -0.0035746709909290075, + -0.016709834337234497, + 0.030756190419197083, + -0.00024641575873829424, + -0.009483392350375652, + -0.0001488351117586717, + -0.004450816195458174, + 0.0024181597400456667, + -0.010009079240262508, + 0.017270566895604134, + -0.031008519232273102, + -0.01614910177886486, + 0.016247229650616646, + -0.007075746078044176, + 0.004580485634505749, + 0.010345518589019775, + -0.020803183317184448, + -0.010759059339761734, + -0.024223653599619865, + 0.005691437050700188, + 0.007152846548706293, + -0.015994900837540627, + 0.008530146442353725, + 0.01706029288470745, + 0.0029105532448738813, + -0.0011573873925954103, + 0.0012458780547603965, + -0.009651611559092999, + -0.007338589522987604, + -0.0018469133647158742, + -0.020985422655940056, + -0.0035553958732634783, + -0.001312465057708323, + -0.012651531957089901, + 0.00807455088943243, + -0.03574671223759651, + 0.010955315083265305, + 0.010366545990109444, + 0.008705375716090202, + -0.018335960805416107, + 3.950865720980801e-5, + -0.022064832970499992, + 0.019163040444254875, + 0.011354837566614151, + -0.029214175418019295, + -0.012294065207242966, + -0.009217044338583946, + 0.04340071231126785, + 0.00756989186629653, + 0.004633054137229919, + -0.0031698921229690313, + 0.03386825695633888, + -0.018434088677167892, + 0.008081560023128986, + 0.003008681582286954, + -0.007583910133689642, + -0.02120971493422985, + 0.002377857221290469, + -0.019163040444254875, + -0.005179768428206444, + 0.013730942271649837, + 0.010261408984661102, + -0.0018924729665741324, + 0.015097728930413723, + -0.025989960879087448, + 0.015153801999986172, + 0.0013431301340460777, + 0.028877735137939453, + 0.01756495237350464, + -0.01595284603536129, + 0.027097409591078758, + 0.012364156544208527, + 0.00872640311717987, + 0.01965368166565895, + -0.011137553490698338, + 0.004524412099272013, + 0.03728872537612915, + 0.0017023495165631175, + -0.0074998000636696815, + -0.016359377652406693, + 0.018826600164175034, + 0.0023883709218353033, + -0.01665376126766205, + 0.021546155214309692, + 0.007380644325166941, + 0.011473992839455605, + 0.015167820267379284, + -0.004324651323258877, + -0.018237831071019173, + 0.012202945537865162, + -0.004675108939409256, + 0.027588048949837685, + 0.000614615622907877, + -0.0013930703280493617, + 0.004068817012012005, + -0.013983272016048431, + 0.000978653784841299, + -0.027644123882055283, + 0.011523057706654072, + 0.004279091488569975, + 0.009231062605977058, + -0.002854479942470789, + 0.0017917163204401731, + -0.006087454501539469, + -0.0038795694708824158, + -0.011158580891788006, + -0.01699020154774189, + 0.030307603999972343, + 0.006479967385530472, + -0.01783130131661892, + -0.0008428513538092375, + 0.031120665371418, + 0.018966784700751305, + 2.7940806830883957e-5, + 0.013443566858768463, + -0.0036167260259389877, + 0.015490241348743439, + -0.009903941303491592, + -0.006262683775275946, + 0.005670409649610519, + -0.0010128234280273318, + -0.0065150135196745396, + 0.013604777865111828, + 0.009609556756913662, + 0.011361846700310707, + 0.0027949020732194185, + -0.012315092608332634, + 0.007969413883984089, + 0.021167660132050514, + 0.022933967411518097, + 0.026746951043605804, + -0.009679649025201797, + 0.006672719493508339, + -0.0020133808720856905, + -0.01849016174674034, + 0.012160890735685825, + 0.0072895255871117115, + 0.0007399043533951044, + 0.00261091161519289, + 0.0009882914600893855, + -0.0072895255871117115, + 0.003141855588182807, + 0.005526721943169832, + -0.011263718828558922, + 0.012301074340939522, + 0.009938987903296947, + 0.0035781755577772856, + 0.002344563603401184, + 0.011466983705759048, + 0.005432098172605038, + -0.014508958905935287, + 0.000714058056473732, + -0.031008519232273102, + 0.00839697290211916, + 0.014929508790373802, + -0.011305773630738258, + 0.0006833929801359773, + -0.00885256752371788, + 0.009048824198544025, + -1.9795397747657262e-5, + 0.02756001241505146, + 0.019891994073987007, + -0.004124890081584454, + 0.008481082506477833, + 0.029606686905026436, + -0.014235601760447025, + 0.01322628278285265, + -0.005603822413831949, + 0.0008722022175788879, + -0.012076781131327152, + 0.009651611559092999, + 0.009006769396364689, + 0.003942652139812708, + 0.012749659828841686, + -0.023382553830742836, + -0.028933808207511902, + -0.020999440923333168, + -0.004759219009429216, + 0.008018477819859982, + -0.0034747906029224396, + 0.02199474163353443, + -0.013569732196629047, + -0.009651611559092999, + -0.005740501452237368, + 0.0029105532448738813, + 0.005985821597278118, + 0.009020787663757801, + -0.015223893336951733, + -0.00289478269405663, + -0.03658780828118324, + 0.017074311152100563, + -0.0013168457662686706, + 0.0014736757148057222, + -0.0030945437029004097, + 0.024938587099313736, + 0.009784786030650139, + 0.0013518915511667728, + 0.006623655091971159, + 0.006693746894598007, + 0.006784866098314524, + -0.0012117084115743637, + -0.015840699896216393, + 0.013555713929235935, + -0.006367820780724287, + 0.03061600588262081, + -0.011263718828558922, + 0.020200395956635475, + -0.020312542095780373, + -0.012959934771060944, + -0.01808363012969494, + 0.0017408998683094978, + -0.010198326781392097, + -0.007219433784484863, + 0.006861966568976641, + 0.0014114694204181433, + -0.004268577788025141, + -0.004180963151156902, + 0.00440876092761755, + 0.004801273811608553, + 0.016779927536845207, + -0.002381361788138747, + 0.014179528690874577, + -0.014144483022391796, + 0.0006299481610767543, + 0.0041914768517017365, + -0.0029088009614497423, + -0.01370991487056017, + 0.020186377689242363, + -0.028905771672725677, + 0.015378095209598541, + -0.0160790104418993, + -0.016036955639719963, + 0.009840859100222588, + -0.015560332685709, + 0.0322701670229435, + 0.008999760262668133, + 0.0026512143667787313, + -0.03510186821222305, + -0.011396892368793488, + 0.005866665858775377, + -0.0024391873739659786, + -0.005274392198771238, + 0.0024199122563004494, + 0.015167820267379284, + -0.02360684797167778, + 0.005638868547976017, + -0.00917498953640461, + 0.008838549256324768, + -0.01258144062012434, + -0.0009339704411104321, + 0.014789325185120106, + 0.03210194781422615, + 0.023074151948094368, + -0.01861632615327835, + 0.03650369867682457, + 0.014761288650333881, + -0.0029158100951462984, + 0.004520907532423735, + 0.02062094584107399, + 0.017887374386191368, + -1.0876517080760095e-5, + 0.011516048572957516, + 0.0067182788625359535, + -0.007661010604351759, + -0.0026634803507477045, + 0.00898574199527502, + -0.011095498688519001, + 0.0046680998057127, + -0.03611118718981743, + 0.01059784833341837, + 0.0005813221214339137, + -0.0004275586979929358, + -0.020705055445432663, + -0.012812742963433266, + -0.0059367576614022255, + -0.014312702231109142, + -0.013492630794644356, + 0.004089844413101673, + 0.006231142207980156, + -0.0048958975821733475, + -0.016569651663303375, + -0.026284346356987953, + -0.007962404750287533, + 0.01462110597640276, + 0.014929508790373802, + -0.023915249854326248, + 0.007282515987753868, + -0.006315252278000116, + -0.00895069632679224, + 0.016906091943383217, + 0.006578095722943544, + -0.042054954916238785, + -0.01602293737232685, + -0.004023257177323103, + -0.010724013671278954, + 0.0016795697156339884, + 0.006616645958274603, + 0.0010881719645112753, + -0.014565031975507736, + 0.0033030661288648844, + -0.0032084425911307335, + -0.016962165012955666, + -0.0011433690087869763, + 0.00468562263995409, + -0.01170529518276453, + -0.0017435282934457064, + 0.05172759294509888, + 0.006886498536914587, + -0.010394582524895668, + 0.01861632615327835, + -0.020410671830177307, + -0.012083790265023708, + -0.001563042402267456, + -0.0008262046030722558, + -0.02301807887852192, + 0.016681797802448273, + -0.017144402489066124, + -0.022205015644431114, + -0.006732297129929066, + 0.015602387487888336, + 0.026578731834888458, + 0.00014182594895828515, + -0.014789325185120106, + 0.013983272016048431, + 0.011417919769883156, + 0.027644123882055283, + -0.009196016937494278, + -0.003376662265509367, + 0.03201783820986748, + -0.012013698928058147, + 0.013934208080172539, + -0.013604777865111828, + 0.00395667040720582, + -0.028373075649142265, + 0.014971563592553139, + -0.01115157175809145, + -0.0031839103903621435, + 0.0023147747851908207, + -0.008060532622039318, + 0.010142252780497074, + -0.011417919769883156, + 7.907207327662036e-5, + 0.0007201911066658795, + -0.015167820267379284, + -2.364222200412769e-5, + 0.0041178809478878975, + -0.017719153314828873, + -0.020803183317184448, + -0.002744085853919387, + -0.02296200580894947, + -0.0015209874836727977, + -0.027658142149448395, + -0.02444794587790966, + 0.007485781796276569, + 3.8084923289716244e-5, + -0.005239346530288458, + -0.002719553653150797, + -0.012083790265023708, + -0.014887453988194466, + 0.006578095722943544, + -0.012588449753820896, + 0.006553563755005598, + 0.0040618074126541615, + 0.01654161512851715, + -0.0018696931656450033, + 0.018980802968144417, + 0.013604777865111828, + -0.005477657541632652, + -0.02335451729595661, + 0.00878247618675232, + 0.0034853043034672737, + -0.007885304279625416, + -0.011207644827663898, + -0.019345277920365334, + 0.0016331340884789824, + 0.0010058142943307757, + 0.013310393318533897, + 0.007394662592560053, + 0.008032496087253094, + -0.009378254413604736, + -0.01706029288470745, + -0.003967184107750654, + 0.005824611056596041, + 0.007450736127793789, + 0.03361592814326286, + -0.01628928631544113, + 0.0015893267700448632, + 0.0003296495124232024, + 0.0032014334574341774, + 0.00891565065830946, + 0.0017005972331389785, + -0.0114109106361866, + -0.006423894315958023, + -0.028260929509997368, + -0.011523057706654072, + 0.0013755474938079715, + -0.01972377300262451, + 0.020733091980218887, + 0.014593069441616535, + -0.007303543854504824, + -0.032662682235240936, + -0.0020081240218132734, + 0.021518118679523468, + 0.016639743000268936, + 0.0030980482697486877, + -0.027980562299489975, + -0.012090799398720264, + -0.0150416549295187, + -0.0145229771733284, + 0.003648267360404134, + 0.001500836224295199, + -0.009749740362167358, + 0.012406211346387863, + -0.013850098475813866, + 0.02802261710166931, + 0.002079967875033617, + 0.0015490241348743439, + -0.017621025443077087, + 0.01563042402267456, + 0.02199474163353443, + -0.002630186965689063, + -0.007646992336958647, + 0.012854797765612602, + 0.000410254840971902, + 0.002076463308185339, + -0.014593069441616535, + 0.005225328262895346, + 0.0031681398395448923, + -0.006266188342124224, + 0.0030367181170731783, + -0.007955395616590977, + -0.014663160778582096, + -0.006090959068387747, + -0.01822381280362606, + 0.011789405718445778, + -0.015854718163609505, + 0.024616166949272156, + 0.023564793169498444, + -0.015237911604344845, + 0.011726322583854198, + 0.025373155251145363, + 0.00011444642586866394, + -0.02269565686583519, + -0.009083869867026806, + -0.0006461568409577012, + -0.029971163719892502, + -0.01332441158592701, + -0.009910950437188148, + 0.01180342398583889, + 0.0019941057544201612, + -0.004100358113646507, + 0.007184388116002083, + -0.006147032603621483, + -0.0058035836555063725, + 0.003497570287436247, + 0.00390760600566864, + 0.011677258647978306, + -0.00940629094839096, + 0.016247229650616646, + 0.0191910769790411, + 0.009798804298043251, + 0.008978732861578465, + 0.012259019538760185, + 0.015279966406524181, + -0.0007959775975905359, + 0.02502269670367241, + -0.007920349948108196, + -0.013625805266201496, + -0.001619991846382618, + -0.004471843596547842, + -0.012441257014870644, + 0.004265073221176863, + 0.006669214926660061, + 0.016064992174506187, + -0.01570051535964012, + -0.004587494768202305, + 0.002898287260904908, + -0.0013720429269596934, + -0.0047662281431257725, + 0.003129589604213834, + -0.019821900874376297, + 0.01228705607354641, + -0.015812663361430168, + 0.0005563520244322717, + -0.009329190477728844, + 0.014551013708114624, + -0.027405811473727226, + -0.015027636662125587, + 0.01361879613250494, + -0.0025373154785484076, + -0.00499402591958642, + 0.01706029288470745, + -0.013695896603167057, + 0.002716049086302519, + -0.0029596174135804176, + -0.008796494454145432, + 0.002752847271040082, + -0.009616565890610218, + -0.006935562938451767, + 0.028611386194825172, + 0.032662682235240936, + 0.01474727038294077, + -0.014536995440721512, + -0.02067701891064644, + -0.0016059735789895058, + 0.0031926720403134823, + 0.011305773630738258, + -0.010030106641352177, + -0.004082835279405117, + -0.02120971493422985, + -0.002624930115416646, + 0.0012730384478345513, + -0.020200395956635475, + 0.0021675825119018555, + -0.0047662281431257725, + 0.02095738612115383, + -0.007871286012232304, + 0.0015437672846019268, + -0.009217044338583946, + -0.014452885836362839, + 0.0014517720555886626, + -0.006858462002128363, + -0.007745120674371719, + -0.006504499353468418, + 3.512793409754522e-5, + -0.017074311152100563, + -0.004569971468299627, + 0.011873515322804451, + -0.008922659792006016, + 0.008586219511926174, + 0.002330545336008072, + 0.01738271489739418, + -0.026578731834888458, + 0.012973953038454056, + -0.0007004778017289937, + 0.002088729292154312, + -0.0003727996372617781, + -0.006378334481269121, + 0.012266028672456741, + -0.013815052807331085, + 0.009672638960182667, + 0.00010951810691040009, + -0.014845399186015129, + -0.020733091980218887, + -0.0013396255671977997, + 0.0006211867439560592, + 0.006970608606934547, + 0.02244332619011402, + -0.00273181963711977, + 0.012455275282263756, + 0.015251929871737957, + 0.025961924344301224, + -0.019219113513827324, + 0.0008998007979243994, + -0.005586299579590559, + 0.0181537214666605, + -0.021153641864657402, + 0.014410831034183502, + 0.004296614322811365, + -0.00682692090049386, + 0.0124482661485672, + -0.012756668962538242, + -0.0011162086157128215, + 0.003513340838253498, + -0.011565112508833408, + -0.006770847365260124, + -0.011368855834007263, + -0.012798724696040154, + -0.021574191749095917, + -0.0008244523196481168, + -0.02639649249613285, + -0.005901711992919445, + 0.014887453988194466, + -0.003665790194645524, + -0.005852647591382265, + -0.009343208745121956, + 0.007387653458863497, + 0.00065886095399037, + -0.020186377689242363, + -0.007632974069565535, + 0.012602468021214008, + -0.004776741843670607, + 0.021223733201622963, + 0.005046594422310591, + -0.022653602063655853, + -0.010051134042441845, + -0.0038690557703375816, + -0.0064519308507442474, + -0.011102507822215557, + 0.013366466388106346, + -0.026606768369674683, + 0.008789485320448875, + 0.028120746836066246, + 0.006469453684985638, + 0.0008857824723236263, + -0.01335945725440979, + -0.008698366582393646, + 0.006006849464029074, + 0.016233211383223534, + 0.006416885182261467, + 0.0037428908981382847, + 0.025569412857294083, + 0.0022867380175739527, + -0.02224707044661045, + -0.008270807564258575, + -0.0008989246562123299, + -0.01002309750765562, + 0.010485702194273472, + -0.0015166067751124501, + -0.011333810165524483, + -0.006364316213876009, + 0.0223031435161829, + 0.0046680998057127, + 0.012567422352731228, + -0.0017137393588200212, + 0.0003298685478512198, + -0.00444380659610033, + -0.01750887930393219, + 0.017298605293035507, + -0.007408680859953165, + -0.008964714594185352, + -0.029017917811870575, + 0.0011442451504990458, + -0.005740501452237368, + 0.0030314612668007612, + -0.00041857821634039283, + -0.009974033571779728, + 0.02873755246400833, + -0.010121225379407406, + -0.002381361788138747, + 0.002761608688160777, + 0.016373395919799805, + -0.003262763610109687, + 0.0068514528684318066, + 0.003784945933148265, + 0.01339450292289257, + 0.02477036789059639, + 0.010653921402990818, + 0.008551173843443394, + -0.012952925637364388, + -0.0056739142164587975, + 0.0069811223074793816, + 0.0009558740421198308, + -0.0012090798700228333, + -0.018406052142381668, + -0.005456630140542984, + 0.0035921940580010414, + 0.006059417966753244, + 0.0037463954649865627, + -0.002367343520745635, + -0.00966562982648611, + -0.0041213855147361755, + 0.00653253635391593, + 0.0007272002403624356, + -0.006234646774828434, + 0.006627159658819437, + 0.0031891672406345606, + 0.009553483687341213, + -0.009385263547301292, + 0.008032496087253094, + 0.0031944243237376213, + -0.004794264677911997, + 0.0034222218673676252, + 0.005624850280582905, + 0.00843201857060194, + -0.012987971305847168, + 0.016429468989372253, + 0.011502030305564404, + -0.0016033451538532972, + 0.01652759686112404, + -0.0023165270686149597, + -0.01024739071726799, + 0.002332297619432211, + 0.0071037826128304005, + -0.0020554359070956707, + 0.008277816697955132, + -0.005950775928795338, + 0.0007894065347500145, + 0.002511031227186322, + -0.019036876037716866, + 0.022541455924510956, + 0.015125765465199947, + -0.020985422655940056, + -0.019948067143559456, + -0.003623735159635544, + -0.0025285540614277124, + -0.012167899869382381, + 0.004731182474642992, + -0.025246990844607353, + 0.008460055105388165, + 0.016611706465482712, + 0.0031874149572104216, + -0.013723933137953281, + -0.00038637989200651646, + 0.014607087709009647, + 0.0014149739872664213, + -0.008635283447802067, + -0.010829150676727295, + -0.01983591914176941, + -0.0145229771733284, + 0.004398247227072716, + -0.009273117408156395, + -0.009413300082087517, + 0.012847788631916046, + -0.005873675458133221, + 0.01258144062012434, + -0.003897092305123806, + 0.003634248860180378, + 0.005449621006846428, + -0.002379609504714608, + -0.0010478692129254341, + 0.005712464451789856, + -0.0008016725769266486, + 0.0012230982538312674, + -0.0011906808940693736, + -0.01122166309505701, + 0.0078082033433020115, + 0.003366148564964533, + -0.0056739142164587975, + 0.010836159810423851, + 0.005071126390248537, + -0.02101345919072628, + -0.0025180403608828783, + 8.54788813740015e-5, + 0.007541854865849018, + 0.006942572072148323, + -0.026536675170063972, + -0.0238591767847538, + 0.0018661885987967253, + -0.02314424328505993, + 0.015938827767968178, + 0.022976024076342583, + -0.0012747908476740122, + 0.02750393934547901, + 0.012833770364522934, + 0.014536995440721512, + -0.008284825831651688, + -0.0025530862621963024, + -0.007282515987753868, + 0.011495021171867847, + 0.010037115775048733, + 0.011607167311012745, + -0.02198072336614132, + -0.013576741330325603, + -0.003967184107750654, + -0.008200716227293015, + -0.0060629225336015224, + -0.03086833655834198, + -0.003777936799451709, + -0.012945916503667831, + -0.005407566204667091, + 0.015910791233181953, + 0.01170529518276453, + -0.005302428733557463, + -0.006641177926212549, + 0.0018661885987967253, + -0.013829071074724197, + 0.01267255935817957, + -0.009581520222127438, + -0.010429628193378448, + 0.005603822413831949, + -0.015083709731698036, + -0.01157913077622652, + -0.00917498953640461, + -0.0010364793706685305, + 0.02042469009757042, + 0.011572121642529964, + 0.00015190162230283022, + -0.0077521298080682755, + -0.000129669439047575, + 0.0021553162951022387, + -0.006311747711151838, + -0.007429708726704121, + -0.01938733458518982, + -0.004135403782129288, + 0.01640143245458603, + -0.007618955802172422, + -0.020999440923333168, + 0.009476383216679096, + 0.013240301050245762, + -0.027027316391468048, + -0.0064589399844408035, + -0.007478772662580013, + 0.016429468989372253, + 0.028373075649142265, + 0.01745280623435974, + -0.014607087709009647, + 0.014845399186015129, + -0.012623495422303677, + 0.026550693437457085, + -0.006634168792515993, + 0.018167739734053612, + 0.005828115623444319, + 0.003669294761493802, + 0.020536836236715317, + -0.003106809686869383, + -0.003781441366299987, + 0.00032373552676290274, + -0.01977984607219696, + -0.010016088373959064, + 0.0034222218673676252, + -0.018321942538022995, + 0.005922739394009113, + -0.010674948804080486, + 0.025527356192469597, + 0.01137586496770382, + 0.01313516404479742, + 0.00026350058033131063, + -0.017102347686886787, + 0.0035746709909290075, + 0.029073990881443024, + -0.000586140900850296, + 0.008410991169512272, + 0.012392193078994751, + 0.0027843883726745844, + 0.01137586496770382, + -0.0001244125742232427, + -0.009896932169795036, + -0.014551013708114624, + 0.01951349899172783, + 0.000454719178378582, + -0.0027931497897952795, + 0.009707685559988022, + -0.02418159879744053, + -0.007920349948108196, + -0.02308817021548748, + 0.026957225054502487, + 0.0015998405870050192, + -0.007443726994097233, + -0.014221583493053913, + -0.0041178809478878975, + 0.003788450499996543, + -0.00794838648289442, + 0.007920349948108196, + 0.004748705308884382, + 0.010864196345210075, + 0.006900516804307699, + -0.035494379699230194, + 0.01924715004861355, + 0.02249940112233162, + -0.0007819592719897628, + -0.009945997036993504, + 0.03176550939679146, + -0.014018317684531212, + 0.017354678362607956, + 0.017074311152100563, + -0.013436557725071907, + 0.010086179710924625, + -0.0031909195240586996, + -0.025246990844607353, + 0.00791334081441164, + -0.020480763167142868, + 0.01235714741051197, + -0.006991636008024216, + 0.013198246248066425, + 0.005411070771515369, + 0.00807455088943243, + 0.0008927916060201824, + -0.014319712296128273, + -0.00972871296107769, + 0.012378174811601639, + 0.03496168553829193, + 0.05402659624814987, + 0.011852487921714783, + 0.006371325347572565, + 0.01491549052298069, + 0.02788243442773819, + -0.02289191260933876, + 0.005607326980680227, + -0.005008044186979532, + -0.01704627461731434, + -0.024980641901493073, + -0.0072895255871117115, + 0.00026218636776320636, + 0.02095738612115383, + 0.018700435757637024, + -0.019990121945738792, + -0.006059417966753244, + -0.025793705135583878, + -0.010611866600811481, + -0.0010557546047493815, + -0.0025548385456204414, + 0.006409876048564911, + 0.010205335915088654, + -0.006090959068387747, + 0.007296534720808268, + 0.007794184610247612, + 0.012518358416855335, + -0.017004219815135002, + -0.0025268017780035734, + -0.02335451729595661, + -0.001239744946360588, + 0.02425169013440609, + -0.015167820267379284, + -0.016878055408596992, + 0.004317641723901033, + -0.009329190477728844, + 0.020004140213131905, + 0.007471763528883457, + 0.006378334481269121, + 0.0035676618572324514, + -0.014663160778582096, + -0.013864116743206978, + -0.02212090604007244, + 0.0020011148881167173, + -0.020004140213131905, + -0.017228512093424797, + -0.006546554621309042, + 0.011263718828558922, + -0.02756001241505146, + 0.0037043404299765825, + -0.004429788328707218, + -0.0077591389417648315, + -0.003897092305123806, + -0.02296200580894947, + -0.010324491187930107, + -0.016485542058944702, + 0.014719233848154545, + 0.03975595161318779, + 0.006777856964617968, + -0.01520987506955862, + -0.013016007840633392, + -0.024335799738764763, + 0.004832814913243055, + 0.010065152309834957, + 0.01277068816125393, + -0.011649222113192081, + 0.020663000643253326, + -0.006914535537362099, + -0.006133014336228371, + -0.006728792563080788, + -0.018055593594908714, + -0.006620150525122881, + -0.01673787087202072, + -0.019163040444254875, + -0.013289365917444229, + -0.012427238747477531, + -0.012763678096234798, + -0.01686403714120388, + 8.94626100489404e-6, + -0.015125765465199947, + 0.022737711668014526, + -0.002062445040792227, + 0.011810433119535446, + 0.00826379843056202, + -0.0012266028206795454, + -0.02450401894748211, + 0.013030027039349079, + -0.006346793379634619, + 0.004016248043626547, + -0.02859736792743206, + -0.005968298763036728, + -0.024041416123509407, + -0.005845638457685709, + -0.021419990807771683, + 0.002882516710087657, + 0.008474073372781277, + -0.011831460520625114, + 0.003900596871972084, + -0.015728551894426346, + -0.0011249700328335166, + 0.004548944067209959, + -0.001981839770451188, + 0.009840859100222588, + 0.00419848645105958, + 0.020859256386756897, + -0.006812902633100748, + -0.03344770520925522, + 0.011852487921714783, + 0.012202945537865162, + 0.0009865391766652465, + 0.02457411214709282, + -0.003753404598683119, + -0.015672478824853897, + -0.004531421232968569, + 0.013674869202077389, + -0.006381839048117399, + 0.02716750092804432, + -0.0056739142164587975, + 0.0023936277721077204, + -0.0005454001948237419, + 0.012434247881174088, + -0.014719233848154545, + 0.015308002941310406, + 0.01654161512851715, + 0.010009079240262508, + 0.0012336119543761015, + -0.007843248546123505, + -0.0065886094234883785, + 0.007969413883984089, + -0.0050325761549174786, + 0.005228832829743624, + 0.014943527057766914, + -0.00030446035088971257, + 0.013051054440438747, + 0.004352687858045101, + -0.019289204850792885, + -0.028961844742298126, + 0.005316447000950575, + -0.0032207085750997066, + 0.01693412847816944, + -0.0005852647591382265, + -0.03294304758310318, + 0.026424529030919075, + 0.017592988908290863, + -0.011887533590197563, + -0.016050973907113075, + -0.008971723727881908, + -0.023046115413308144, + 0.022345198318362236, + 0.007541854865849018, + -0.004706650041043758, + 0.01306507270783186, + -0.014775306917726994, + 0.00447534816339612, + -0.006472958251833916, + -0.0016278771217912436, + 0.019106967374682426, + 0.008894622325897217, + 0.020733091980218887, + -0.012245000340044498, + 0.0014237354043871164, + 0.0020011148881167173, + 0.009048824198544025, + -0.0015271204756572843, + 0.02303209714591503, + 0.012385183945298195, + -9.495220001554117e-5, + 0.0023953800555318594, + 0.010107207112014294, + -0.010254399850964546, + -0.016821982339024544, + 0.0020063717383891344, + -0.004499880131334066, + -0.009392272680997849, + 0.008670330047607422, + -0.0005077259265817702, + -0.010745041072368622, + -0.010787095874547958, + -0.01621919311583042, + -0.032073911279439926, + -0.004661090672016144, + 0.01287582516670227, + 0.03179354593157768, + 0.023971322923898697, + -0.0029631219804286957, + -0.0012572678970173001, + -0.006220628507435322, + 0.003271525027230382, + 0.0011643965262919664, + 0.006967104040086269, + -0.004664595238864422, + -0.002596893347799778, + 0.011817442253232002, + -0.020663000643253326, + -0.006641177926212549, + -0.006346793379634619, + -0.001054878463037312, + 0.003788450499996543, + 0.01756495237350464, + -0.005106172524392605, + -0.00760493753477931, + -0.0034397447016090155, + -0.022933967411518097, + -0.0038375144358724356, + -0.01613508351147175 + ], + "c455d382-4822-4de9-99de-ed945e58c6d0": [ + 0.004788598045706749, + -0.016429845243692398, + -0.00987304374575615, + -0.01962224394083023, + -0.04807862639427185, + -0.02730051428079605, + 0.03299729526042938, + 0.04073060676455498, + 0.01640232466161251, + 0.041996557265520096, + 0.004613153636455536, + 0.012556309811770916, + -0.010622981935739517, + -0.004499631002545357, + 0.0027262673247605562, + -0.0007039273623377085, + -0.06472864001989365, + 0.019264476373791695, + -0.021273484453558922, + -0.010616102255880833, + 0.07777343690395355, + -0.03291473165154457, + -0.017310507595539093, + 0.02658497542142868, + -0.024465883150696754, + -0.02109459973871708, + 0.02013137750327587, + -0.0008355106110684574, + -0.026818901300430298, + -0.021782618016004562, + -0.009136865846812725, + 0.008785977028310299, + 0.05044540390372276, + -0.01691145822405815, + 0.013368169777095318, + -0.0019986892584711313, + -0.01433827355504036, + 0.034841179847717285, + -0.024121874943375587, + 0.006064869463443756, + -0.028841672465205193, + 0.019993772730231285, + 0.026846421882510185, + -0.004503071308135986, + -0.009797361679375172, + 0.03718043863773346, + 0.03803357854485512, + 0.0007864893996156752, + 0.01437955442816019, + -0.00532181141898036, + -0.011441722512245178, + 0.02712162956595421, + -0.005352772306650877, + 0.005253009498119354, + 0.010182651691138744, + 0.01479236502200365, + 0.0009554835851304233, + 0.07793856412172318, + 0.024424603208899498, + -0.03844638913869858, + -0.007781472057104111, + 0.010320254601538181, + 0.00258178380317986, + 0.004575313068926334, + -0.02150741033256054, + -0.03357522934675217, + 0.013540173880755901, + 0.016471127048134804, + -0.018631499260663986, + 0.00040614503086544573, + 0.011310999281704426, + 0.004678515251725912, + -0.03288721293210983, + 0.0037909734528511763, + -0.0013751739170402288, + -0.02699778601527214, + 0.03789597377181053, + -0.013161764480173588, + 0.004203783813863993, + -0.001711442251689732, + -0.03170382231473923, + 0.022498155012726784, + 0.01188893336802721, + -0.016484886407852173, + 0.03343762457370758, + 0.019677285104990005, + -0.032859690487384796, + -0.05055548623204231, + -0.03500630334019661, + -0.021920220926404, + 0.02138356864452362, + 0.01660872995853424, + -0.006794167682528496, + 0.00825620349496603, + -0.024686049669981003, + -0.013684657402336597, + 0.04227176308631897, + 0.013320008292794228, + -0.038061100989580154, + -0.024328280240297318, + -0.028593985363841057, + 0.012831516563892365, + -0.042134158313274384, + 0.01225358247756958, + 0.0069833723828196526, + -0.014001145958900452, + 0.014572199434041977, + -0.010746825486421585, + -0.029337044805288315, + 0.02732803486287594, + 0.028731588274240494, + -0.013787860050797462, + -0.0009898844873532653, + -0.007368661928921938, + 0.005713981110602617, + -0.0929098129272461, + -0.023832907900214195, + -0.025607991963624954, + -0.007148496340960264, + -0.06737062335014343, + 0.05432581901550293, + 0.01764075458049774, + 0.017475631088018417, + -0.021548692137002945, + 0.01806732639670372, + 0.002729707397520542, + -0.013966744765639305, + 0.018149888142943382, + 0.017682036384940147, + 0.00809795968234539, + -0.004052420146763325, + -0.02669505961239338, + -0.010175771079957485, + 0.018411334604024887, + -0.02939208596944809, + 0.018865425139665604, + 0.028538944199681282, + 0.028786631301045418, + -0.03374035283923149, + 0.060600534081459045, + -0.02906183712184429, + -0.0301351435482502, + 0.00040829507634043694, + -0.009563435800373554, + 0.010093209333717823, + 0.011902693659067154, + -0.03258448466658592, + 0.03707035630941391, + 0.0019918091129511595, + 0.008517649956047535, + -0.05138110741972923, + -0.003718731692060828, + 0.012783355079591274, + -0.010464738123118877, + -0.01177885103970766, + 0.00705905444920063, + 0.008111719973385334, + 0.025319024920463562, + -0.020846914499998093, + 0.007176016923040152, + -0.026323528960347176, + -0.0390518419444561, + 0.024053074419498444, + -0.0022136946208775043, + 0.011462362483143806, + -0.010334014892578125, + 0.02658497542142868, + 0.022718321532011032, + -0.07281971722841263, + 0.016650011762976646, + 0.03891424089670181, + -0.02917191945016384, + 0.010210172273218632, + -0.0058687846176326275, + -0.006629043724387884, + 0.0006862969603389502, + 0.005751822143793106, + -0.0033712831791490316, + 0.026502413675189018, + -0.036602504551410675, + -0.0013080922653898597, + -0.027396835386753082, + -0.03159373998641968, + 0.016278481110930443, + -0.02908935770392418, + 0.014131869189441204, + 0.015549183823168278, + -0.01806732639670372, + -0.007458104286342859, + 0.04411564767360687, + 0.005586697719991207, + -0.008710294961929321, + 0.01629224233329296, + 0.06924203038215637, + -0.03374035283923149, + 0.012535669840872288, + 0.011152755469083786, + -0.00826308410614729, + 0.019856169819831848, + 0.01837005279958248, + -0.012810876592993736, + -0.06907690316438675, + -0.06775591522455215, + 0.0321991965174675, + -0.05424325913190842, + -0.008228682912886143, + -0.006711605470627546, + 0.004066180437803268, + 0.007485624868422747, + -0.02410811558365822, + 0.012349904514849186, + -0.03330002352595329, + 0.029006795957684517, + -0.014971249736845493, + -0.00975608080625534, + 0.009893683716654778, + -0.01120779663324356, + 0.018039805814623833, + 0.011875173076987267, + 0.024383321404457092, + -0.031180929392576218, + 0.008944220840930939, + 0.026007041335105896, + -0.03335506469011307, + -0.05850896239280701, + -0.019498400390148163, + -0.02606208249926567, + 0.0262684877961874, + -0.025085099041461945, + -0.015452861785888672, + 0.04827127233147621, + -0.020791873335838318, + 0.02119092270731926, + -0.042299285531044006, + -0.004609713796526194, + 0.009363911114633083, + -8.180952136171982e-5, + 0.010698664002120495, + 0.02046162448823452, + -0.02617216669023037, + 0.03718043863773346, + 0.01618216000497341, + 0.006054549477994442, + 0.026117123663425446, + 0.02035154215991497, + 0.028208695352077484, + 0.0021311326418071985, + 0.053335078060626984, + 0.028291258960962296, + -0.013636496849358082, + -0.0009967646328732371, + 0.03346514701843262, + 1.9108596461592242e-5, + -0.0013055122690275311, + 0.0021569333039224148, + 0.01589319296181202, + 0.021218443289399147, + 0.004544352181255817, + -0.01963600516319275, + -0.003976738080382347, + -0.020268980413675308, + -0.001059546135365963, + -0.004220983944833279, + -0.019360797479748726, + 0.04579440876841545, + -0.026034561917185783, + 0.014723563566803932, + -0.049151934683322906, + -0.018108606338500977, + -0.0020158898551017046, + -0.06797607988119125, + 0.019236953929066658, + -0.014131869189441204, + -0.00034809359931387007, + -0.018108606338500977, + -0.01619591936469078, + 0.007079694885760546, + 0.02274584211409092, + -0.0017630434595048428, + 0.009205667302012444, + -0.016471127048134804, + 0.015452861785888672, + 0.020379062741994858, + 0.03676762804389, + -0.004306986462324858, + -0.026970265433192253, + 0.011462362483143806, + 0.01618216000497341, + -0.03918944671750069, + -0.007781472057104111, + 0.009542795829474926, + -0.0037875333800911903, + 0.029859937727451324, + -0.012308623641729355, + 0.01069178432226181, + -0.003472765674814582, + -0.010898188687860966, + 0.004816119093447924, + -0.01682889461517334, + 0.006150871980935335, + -0.02284216322004795, + -0.01422819122672081, + 0.043372590094804764, + -0.012033416889607906, + 0.0221403855830431, + 0.008221803233027458, + 0.031923986971378326, + -0.017626995220780373, + -0.037235479801893234, + 0.005713981110602617, + 0.04306986182928085, + -0.01660872995853424, + -0.01204717718064785, + -0.04249192774295807, + -0.006677204743027687, + 0.008889179676771164, + 0.006594642531126738, + 0.009570316411554813, + 0.009246948175132275, + -0.0023082969710230827, + -0.0016830615932121873, + -0.0026093043852597475, + -0.035969529300928116, + 0.014324513264000416, + 0.0299149788916111, + -0.02908935770392418, + 0.011407321318984032, + 0.016842655837535858, + -0.0048401993699371815, + -0.023420097306370735, + 0.0029756734147667885, + -0.01808108575642109, + -0.010870668105781078, + -0.025607991963624954, + 0.006543041672557592, + -0.029006795957684517, + -0.028016051277518272, + -0.03921696916222572, + 0.014489637687802315, + 0.002113932278007269, + -0.009969365783035755, + 0.04389548301696777, + -0.031235970556735992, + -0.008696534670889378, + 0.008159881457686424, + 0.002229175064712763, + -0.009171266108751297, + 0.03343762457370758, + -0.017049061134457588, + -0.009934965521097183, + 0.0006742566474713385, + -0.021865179762244225, + 0.022663278505206108, + -0.0040042586624622345, + 0.025374066084623337, + -0.00496060261502862, + -0.02241559326648712, + -0.02939208596944809, + -0.0012917518615722656, + 0.022264229133725166, + -0.022167908027768135, + -0.013154884800314903, + -0.041501183062791824, + -0.0018198048928752542, + 0.01454467885196209, + 0.03646489977836609, + 0.014056187123060226, + 0.014654762111604214, + -0.0009692439343780279, + 0.02025521919131279, + -0.013842901214957237, + 0.022291749715805054, + 0.02171381562948227, + -0.0037978538312017918, + -0.04510639235377312, + -0.005858464632183313, + 0.051573753356933594, + 0.01901678927242756, + -0.018672781065106392, + 0.028814151883125305, + -0.0024355801288038492, + 0.022388072684407234, + 0.006635923869907856, + -0.021686295047402382, + 0.04353771358728409, + -0.00045194115955382586, + 0.0015213775914162397, + -0.001826685038395226, + -0.0030152343679219484, + -0.017902201041579247, + -0.0591694600880146, + 0.017214184626936913, + -0.05149118974804878, + -0.013010401278734207, + -0.03508886694908142, + 0.013203046284615993, + 0.009150626137852669, + 0.0014293552376329899, + 0.039712339639663696, + 0.0016684412257745862, + 0.00262134475633502, + -0.014709803275763988, + -0.0029361124616116285, + 0.034731097519397736, + -0.0011644687037914991, + -0.014042426832020283, + 0.004300106316804886, + 0.008944220840930939, + 0.00467163510620594, + 0.009453353472054005, + -0.0023564582224935293, + -0.004145302344113588, + 0.002617904683575034, + -0.011235317215323448, + 0.04653747007250786, + -0.0034452450927346945, + 0.03247440233826637, + 0.0031218770891427994, + -0.04758325591683388, + -0.005576377734541893, + 0.03811614215373993, + 0.05762830376625061, + 0.003213039366528392, + 0.024369562044739723, + -0.04009762778878212, + 0.018466375768184662, + 0.036189693957567215, + 0.02514014020562172, + -0.0007684289594180882, + -0.01075370516628027, + -0.012102218344807625, + -0.0027675481978803873, + -0.029254481196403503, + -0.01589319296181202, + 0.006064869463443756, + 0.0006334056379273534, + 0.01638856530189514, + -0.01261823158711195, + -0.008552051149308681, + -0.006518960930407047, + 0.014407075941562653, + 0.036602504551410675, + 0.01204717718064785, + 0.0013674336951225996, + -0.0062987953424453735, + -0.03621721267700195, + -0.016773853451013565, + 0.007403062656521797, + 0.017626995220780373, + 0.030575474724173546, + -0.0020193299278616905, + 0.06159127876162529, + -0.02065427042543888, + -0.0012109099188819528, + -0.014200670644640923, + 0.0034435249399393797, + -0.01638856530189514, + 0.016223439946770668, + 0.03093324415385723, + 0.017420589923858643, + -0.03148365765810013, + -0.0030049141496419907, + 0.03973986208438873, + -0.050830695778131485, + 0.006515520624816418, + -0.05050044506788254, + -0.025690553709864616, + 0.015728067606687546, + 0.005235809367150068, + -0.0015239575877785683, + -0.003271520836278796, + 0.026447372511029243, + 0.0006411458016373217, + -0.0013476532185450196, + -0.03737308084964752, + 0.0022033744025975466, + 0.016044555231928825, + 0.01261135097593069, + 0.020640509203076363, + 0.001824965002015233, + -0.020227698609232903, + -0.006948971655219793, + -0.03786845505237579, + 0.002485461300238967, + 0.04653747007250786, + -0.008187402039766312, + -0.01787468045949936, + 0.007616348098963499, + 0.013574575074017048, + -0.008785977028310299, + 0.03200655058026314, + 0.005903185810893774, + -0.0005065525183454156, + -0.0008802317315712571, + -0.009838642552495003, + -0.02772708423435688, + 0.020516665652394295, + -0.017310507595539093, + -0.012700793333351612, + -0.031125888228416443, + 0.04373035952448845, + -0.017737077549099922, + 0.01302416156977415, + 0.03646489977836609, + 0.008579571731388569, + 0.00774019118398428, + -0.01901678927242756, + 0.019801128655672073, + -0.004423949401825666, + -0.004193463362753391, + -0.0018318452639505267, + -0.00292063201777637, + -0.011283478699624538, + 0.013161764480173588, + -0.00996248610317707, + 0.02731427364051342, + -0.0374281220138073, + 0.020406583324074745, + 0.01828749105334282, + -0.019058071076869965, + 0.006027028895914555, + -0.0012332703918218613, + -0.03140109404921532, + 0.009652878157794476, + 0.029309524223208427, + -0.0065843225456774235, + -0.017695797607302666, + 0.041693828999996185, + 0.020929476246237755, + 0.011393561027944088, + -0.016154639422893524, + 0.02669505961239338, + -0.006054549477994442, + -0.01012072991579771, + 0.005892865359783173, + -0.02013137750327587, + 0.01454467885196209, + -0.010898188687860966, + -0.006374477408826351, + 0.04042787849903107, + -0.028511423617601395, + 0.01963600516319275, + -0.0055557372979819775, + 0.003288721200078726, + 0.026323528960347176, + 0.030988285318017006, + -0.026818901300430298, + 0.022071585059165955, + 0.007925955578684807, + 0.008957981131970882, + -0.019677285104990005, + -0.0005164427566342056, + 0.004771397914737463, + 0.005535096395760775, + 0.022511916235089302, + -0.0394921749830246, + 0.036602504551410675, + -0.009976246394217014, + -0.04650994762778282, + 0.0019935292657464743, + 0.011180276051163673, + -0.006240313872694969, + 0.0021741336677223444, + -0.02014513686299324, + -0.04306986182928085, + -0.0034934061113744974, + -0.027850927785038948, + 0.01746187172830105, + -0.0019126872066408396, + 0.024864934384822845, + 0.02585567720234394, + 0.017282987013459206, + 0.019278235733509064, + -0.016581209376454353, + -0.02566303312778473, + 0.012515028938651085, + 0.015549183823168278, + 0.023007288575172424, + -0.020943237468600273, + 0.0008066999143920839, + 0.014929968863725662, + -0.041473664343357086, + 0.01878286339342594, + -0.010134490206837654, + 0.010203291662037373, + 0.006629043724387884, + -0.042849697172641754, + -0.0392720103263855, + -0.010705544613301754, + 0.031208449974656105, + -0.008380047045648098, + 0.009941845200955868, + 0.03170382231473923, + -0.0017518632812425494, + -0.015439101494848728, + 0.03142861649394035, + -0.00992120523005724, + 0.020392823964357376, + -0.014517158269882202, + -0.019663525745272636, + -0.010588581673800945, + 0.021878939121961594, + 0.03159373998641968, + -0.01982864923775196, + -0.02430075965821743, + 0.005861904472112656, + -0.014324513264000416, + -0.013891062699258327, + -0.008971741423010826, + -0.02856646478176117, + 0.007162256632000208, + -0.0032698006834834814, + 0.019264476373791695, + -0.024878693744540215, + 0.03324497863650322, + 0.010698664002120495, + 0.011737569235265255, + 0.041693828999996185, + -0.012274223379790783, + -0.02388794906437397, + 0.0230623297393322, + -0.07320500910282135, + 0.031098367646336555, + -0.021232204511761665, + 0.01816364750266075, + 0.001747563132084906, + -0.008435088209807873, + -0.012157260440289974, + -0.01652616821229458, + 0.021314766258001328, + 0.0015626585809513927, + 0.013567694462835789, + 0.03164878115057945, + -0.017929721623659134, + 0.019759846851229668, + 0.00914374552667141, + 0.009425832889974117, + 0.03539159521460533, + -0.0007963796379044652, + 0.015452861785888672, + -0.02109459973871708, + 0.008696534670889378, + -0.010602341964840889, + 0.021232204511761665, + -0.01786092109978199, + 0.005019084084779024, + -0.02939208596944809, + 0.01542534027248621, + 0.02046162448823452, + -0.013877302408218384, + -0.05344516038894653, + -0.0005284830695018172, + 0.030355310067534447, + -0.0005431033787317574, + -0.01209533866494894, + -0.03894175961613655, + -0.0229522455483675, + 0.02761700190603733, + 0.022690799087285995, + -0.0038081740494817495, + 0.052922267466783524, + 0.005590138025581837, + -0.017062820494174957, + 0.00705905444920063, + 0.02161749266088009, + 0.0095978369936347, + 0.00841444730758667, + 0.0006415758398361504, + 0.004134981893002987, + 0.01808108575642109, + -0.012955360114574432, + -0.015301497653126717, + 0.017943482846021652, + 0.01023769285529852, + 0.006168072111904621, + -0.009467113763093948, + -0.008896059356629848, + -0.040868207812309265, + 0.014737323857843876, + -0.007815873250365257, + -0.021356046199798584, + 0.0062093534506857395, + -0.02282840386033058, + 0.0018490456277504563, + 0.04166630655527115, + -0.01922319456934929, + -0.004286345560103655, + 0.028731588274240494, + -0.01746187172830105, + -0.022718321532011032, + -0.002270455937832594, + 0.004011138807982206, + -0.022099105641245842, + 0.006254074163734913, + -0.009934965521097183, + -0.0046475548297166824, + -0.015507902950048447, + -0.0037840933073312044, + 0.007485624868422747, + -0.031758863478899, + -0.04009762778878212, + -0.008861659094691277, + -0.010629862546920776, + -0.017571954056620598, + -0.006856088992208242, + 0.026763860136270523, + -0.010808746330440044, + -0.0005293430876918137, + 0.027850927785038948, + -0.0006867269403301179, + 0.0344834104180336, + 0.01744811050593853, + -0.01597575470805168, + 0.011606846004724503, + 0.0076851495541632175, + -0.0019780488219112158, + -0.0011808091076090932, + 0.01189581397920847, + 0.004128101747483015, + 0.006371037103235722, + -0.012693913653492928, + 0.04953722283244133, + -0.0011421082308515906, + -0.04714292287826538, + -0.04700532183051109, + 0.012652631849050522, + 0.011083954013884068, + 0.013306248001754284, + -0.018645260483026505, + -0.0002307006943738088, + 0.03935457020998001, + 0.009336390532553196, + -0.028511423617601395, + 0.005665819626301527, + -0.005710540805011988, + -0.0344834104180336, + -0.04499631002545357, + -0.011930214241147041, + 0.04474862292408943, + -0.014654762111604214, + -0.012625111266970634, + -0.042299285531044006, + 0.03043787181377411, + 0.0004923621308989823, + 0.01849389635026455, + -0.005235809367150068, + -0.013712177984416485, + -0.022910965606570244, + 0.010395936667919159, + 0.023103609681129456, + 0.029447127133607864, + -0.04257449135184288, + 0.03343762457370758, + 0.012625111266970634, + -0.026433613151311874, + -0.017888441681861877, + -0.0013098123017698526, + 0.016457365825772285, + 0.010409696958959103, + 0.03341010585427284, + 0.00047645176528021693, + 0.013161764480173588, + 0.0029705134220421314, + -0.024328280240297318, + 0.000895282079000026, + -0.012563190422952175, + -0.011194036342203617, + 0.013209925964474678, + 0.05889425426721573, + -0.020901955664157867, + 0.020998278632760048, + 0.0017320828046649694, + 0.03280464932322502, + 0.0162096805870533, + 0.019085591658949852, + -0.02046162448823452, + 0.037125397473573685, + 0.005727741401642561, + -0.041886474937200546, + 0.025112619623541832, + -0.011655007489025593, + -0.06516896933317184, + 0.0014448356814682484, + -0.02522270195186138, + 0.006918010767549276, + -0.014352033846080303, + 0.041501183062791824, + 0.0260483231395483, + -0.008834137581288815, + -0.010877548716962337, + 0.013519533909857273, + 0.003684330964460969, + -0.008703414350748062, + 0.008331885561347008, + -0.00024532104725949466, + 0.01479236502200365, + 0.022663278505206108, + -0.02181013859808445, + 0.009769841097295284, + 0.012487508356571198, + 0.023626502603292465, + -0.0591694600880146, + 0.016250960528850555, + 0.03280464932322502, + -0.0050844457000494, + -0.01660872995853424, + 0.009893683716654778, + 0.00825620349496603, + 0.014696042984724045, + 0.004774837754666805, + -0.032034069299697876, + -0.008889179676771164, + -0.010960110463202, + 0.0101688914000988, + -0.008386926725506783, + -0.017737077549099922, + -0.015232696197926998, + -0.014310752972960472, + 0.023213692009449005, + -0.026007041335105896, + 0.010980751365423203, + 0.03093324415385723, + 0.02376410737633705, + 0.008834137581288815, + -0.010106969624757767, + -0.013684657402336597, + 0.010616102255880833, + -0.02501629665493965, + 0.028704067692160606, + 0.01486116647720337, + -0.0009615037124603987, + 0.00046398144331760705, + -0.009439593181014061, + 0.013904822990298271, + 0.029364565387368202, + 0.044721104204654694, + -0.03894175961613655, + -0.0028638707008212805, + -0.041501183062791824, + 0.0030685558449476957, + 0.0017157424008473754, + -0.0010930870193988085, + -0.00950839463621378, + -0.008221803233027458, + -0.013237446546554565, + -0.004620034247636795, + -0.0008703414932824671, + -0.012515028938651085, + 0.026227207854390144, + 0.01786092109978199, + 0.01177885103970766, + -0.01314112450927496, + -0.009831762872636318, + 0.01012072991579771, + -0.045959535986185074, + 0.033712830394506454, + -0.004399868659675121, + 0.014145629480481148, + -0.0033816033974289894, + 0.007671389263123274, + 0.010609221644699574, + 0.01920943334698677, + 0.008036037907004356, + -0.023337535560131073, + -0.002306576818227768, + -0.004207223653793335, + -0.02950216829776764, + 0.026130884885787964, + 0.009742320515215397, + 0.014420836232602596, + -0.019980013370513916, + 0.0017355228774249554, + 0.01277647539973259, + 0.0113660404458642, + -0.022814642637968063, + -0.010045047849416733, + -0.02046162448823452, + 0.0025439427699893713, + -0.030905723571777344, + 0.009308869950473309, + -0.020186418667435646, + 0.02244311384856701, + 0.014943729154765606, + -0.00015018120757304132, + -0.04901432991027832, + 0.02086067572236061, + -0.004110901616513729, + -0.007692029699683189, + 0.013959864154458046, + -0.011035792529582977, + 0.010671143420040607, + 0.030713077634572983, + -0.026213446632027626, + -0.030878202989697456, + 0.003271520836278796, + -0.052592016756534576, + -0.026227207854390144, + -0.011200916022062302, + -0.0024200996849685907, + -0.010533539578318596, + -0.0067597669549286366, + -0.01816364750266075, + -0.016374804079532623, + -0.001828405074775219, + -0.023805387318134308, + -0.0687466561794281, + 0.01375345978885889, + 0.02398427203297615, + -0.017324266955256462, + 0.06951723247766495, + 0.014076827093958855, + 0.010781225748360157, + -0.01638856530189514, + -0.016030795872211456, + 0.03500630334019661, + 0.024135636165738106, + 0.018659019842743874, + 0.001422475092113018, + -0.0030616754665970802, + -0.021108360961079597, + -0.00939831230789423, + 0.005387173034250736, + 0.008565811440348625, + 0.005916946101933718, + -0.013368169777095318, + -0.03137357532978058, + -0.007520025596022606, + 0.029970020055770874, + 0.02677762135863304, + 0.009611597284674644, + 0.011015151627361774, + 0.025387827306985855, + 0.0012152099516242743, + -0.03385043516755104, + 0.015617985278367996, + -0.030382830649614334, + 0.017406828701496124, + -0.0050156437791883945, + -0.02999754063785076, + -0.03563927859067917, + -0.015865672379732132, + 0.004279465414583683, + 0.025883199647068977, + -0.024686049669981003, + 0.0017836840124800801, + -0.013148004189133644, + -0.021369807422161102, + 0.015494142659008503, + 0.012432467192411423, + -0.011950855143368244, + 0.0349237434566021, + 0.035143908113241196, + -0.003238840028643608, + 0.003612089203670621, + 0.010375295765697956, + 0.025497909635305405, + 0.0015944793121889234, + 0.028428861871361732, + 0.007905314676463604, + 0.0019144072430208325, + -0.006336636375635862, + 0.004620034247636795, + -0.007623228244483471, + 0.005263329949229956, + -0.03310737758874893, + 0.005930706392973661, + -0.030465392395853996, + 0.015741828829050064, + 0.005314931273460388, + 0.010616102255880833, + -0.0033781633246690035, + 0.003863215446472168, + 0.010863788425922394, + -0.006371037103235722, + 0.012349904514849186, + -0.000522462883964181, + -0.017310507595539093, + 0.007767711766064167, + -0.0014886967837810516, + -0.017998524010181427, + 0.03572184219956398, + 0.005012203473597765, + 0.007829633541405201, + 0.011056432500481606, + -0.005369972437620163, + 0.0040902611799538136, + -0.015053811483085155, + 0.000983864301815629, + 0.02252567559480667, + -0.01023081224411726, + 0.030713077634572983, + -0.03797853738069534, + -0.005934146232903004, + -0.025374066084623337, + 0.009377671405673027, + -0.023021047934889793, + -0.030602995306253433, + -0.012742074206471443, + 0.01354705449193716, + 0.0053011709824204445, + -0.02128724567592144, + 0.00563829904422164, + -0.008675893768668175, + 0.028483903035521507, + 0.0007374681881628931, + -0.005610778462141752, + 0.004265705123543739, + -0.010127609595656395, + 0.01754443347454071, + 0.027286753058433533, + 0.00047430171980522573, + -0.005830944050103426, + -0.00877909641712904, + -0.029309524223208427, + 0.04141862317919731, + 0.009205667302012444, + -0.010457858443260193, + -0.0486290417611599, + -0.003660250222310424, + 0.024686049669981003, + -0.009749200195074081, + -0.03850143030285835, + 0.015562944114208221, + 0.006587762385606766, + -0.013774099759757519, + 0.010671143420040607, + 0.009006142616271973, + 0.012528789229691029, + 0.02190646156668663, + 0.00887541938573122, + -0.018961748108267784, + 0.0075406660325825214, + 0.012583830393850803, + -0.023722825571894646, + 0.00576558243483305, + -0.017929721623659134, + 0.022580716758966446, + -0.04650994762778282, + -0.022869683802127838, + 0.012872797437012196, + 0.033382583409547806, + -0.007299860008060932, + 0.0005560037097893655, + -0.006756326649338007, + 0.00705905444920063, + -0.003928577061742544, + -0.005913505796343088, + 0.015948234125971794, + -0.002153493231162429, + 0.0149024473503232, + 0.028401341289281845, + -0.009308869950473309, + 0.03115340881049633, + -0.0035106067080050707, + -0.007733311038464308, + -0.0037359322886914015, + 0.004121221601963043, + 0.001130067859776318, + -0.0069833723828196526, + 0.027892207726836205, + 0.006278154905885458, + 0.008655253797769547, + 0.05099581927061081, + -0.03074059821665287, + 0.025896959006786346, + -0.03156621754169464, + -0.017737077549099922, + 0.026323528960347176, + -0.00841444730758667, + -0.003976738080382347, + 0.02369530498981476, + 0.021012037992477417, + -0.013230566866695881, + 0.04130854085087776, + 0.005060364957898855, + 0.021328525617718697, + 0.0039870585314929485, + 0.01766827516257763, + 0.01870030164718628, + -0.008325005881488323, + -0.014173150062561035, + 0.01012072991579771, + -0.013774099759757519, + 0.005404373165220022, + -0.01479236502200365, + -0.014654762111604214, + 0.028401341289281845, + 0.0033781633246690035, + -0.0006088950322009623, + 0.04218919947743416, + -0.02337881736457348, + 0.02834630012512207, + -0.009900564327836037, + -0.002334097633138299, + 0.0027985090855509043, + -0.007437463384121656, + -0.027905968949198723, + 0.07039789855480194, + 0.011180276051163673, + -0.0036636905279010534, + 0.0032990414183586836, + -0.010870668105781078, + 0.00794659648090601, + 0.0076851495541632175, + 0.017310507595539093, + 0.007609467953443527, + 0.007664509117603302, + -0.03407059982419014, + 0.005418133921921253, + 0.028318779543042183, + 0.031208449974656105, + 0.01032713521271944, + -0.005053484812378883, + 0.024975016713142395, + 0.01600327529013157, + -0.024355800822377205, + -0.013987385667860508, + -0.00029670732328668237, + -0.017626995220780373, + 0.010017527267336845, + -0.03283217176795006, + -0.0016280201962217689, + -0.03291473165154457, + 0.0008707714732736349, + -0.007506265304982662, + -0.04766581580042839, + -0.0019092471338808537, + 0.01892046630382538, + 0.007616348098963499, + 0.01527397707104683, + 0.019801128655672073, + -0.028841672465205193, + 0.013918583281338215, + 0.002912031952291727, + -0.029309524223208427, + 0.0014181749429553747, + -0.0011412481544539332, + -0.0015239575877785683, + 0.005067245103418827, + -0.020530426874756813, + -0.009893683716654778, + 0.00023263573530130088, + 0.007630108390003443, + 0.015218935906887054, + 0.0065224007703363895, + 0.0011790890712291002, + -0.007334261201322079, + 0.0015497582498937845, + 0.00010535259934840724, + -0.01510885264724493, + -0.01901678927242756, + -0.004926201421767473, + 0.001785404048860073, + -0.017723318189382553, + -0.019347038120031357, + -0.04276713728904724, + -0.008930460549890995, + 0.0006746866274625063, + 0.010045047849416733, + 0.006457039155066013, + -0.022897204384207726, + -0.019773608073592186, + 0.010891309008002281, + -0.008242443203926086, + -0.011861412785947323, + -0.009116224944591522, + -0.0021053319796919823, + 0.006309115793555975, + 0.006240313872694969, + -0.004623474087566137, + 0.008964860811829567, + 0.009749200195074081, + 0.024342041462659836, + 0.01589319296181202, + -0.022718321532011032, + -0.0005336431786417961, + -0.0029722333420068026, + -0.026873942464590073, + 0.002081251470372081, + 0.02522270195186138, + 0.022883445024490356, + 0.003145957598462701, + -0.01640232466161251, + -0.005332131404429674, + -0.018425093963742256, + 0.002967073116451502, + -0.019058071076869965, + -0.011283478699624538, + 0.018149888142943382, + 0.01411810889840126, + -0.018356293439865112, + -0.01177885103970766, + -0.02731427364051342, + -0.02399803139269352, + -0.0002255405706819147, + -0.0035174868535250425, + -0.013079202733933926, + -0.012845276854932308, + 1.804700877983123e-5, + 0.011827011592686176, + -0.02586943842470646, + 0.028428861871361732, + 0.005545416846871376, + -0.027383076027035713, + 0.011971495114266872, + -0.004922761581838131, + -0.02628224901854992, + 0.0013983944663777947, + -0.007609467953443527, + -0.008558930829167366, + -0.002848390256986022, + 0.001960848458111286, + 0.005056924652308226, + -0.010003766976296902, + -0.01881038397550583, + 0.026653777807950974, + 0.000527193013112992, + -0.014475877396762371, + 0.006832008715718985, + -0.02355770207941532, + 0.007636988535523415, + 0.008703414350748062, + -0.007636988535523415, + -0.002528462326154113, + 0.00857269112020731, + -0.019773608073592186, + -0.003464165609329939, + 0.01819116808474064, + 0.011565565131604671, + 0.005610778462141752, + 0.021204683929681778, + 0.015081332065165043, + -0.017709556967020035, + 0.009054303169250488, + -0.00036873409408144653, + -0.011593085713684559, + 0.004031779710203409, + -0.030988285318017006, + -0.010622981935739517, + 0.0012143499916419387, + 0.021576212719082832, + 0.003649930004030466, + 0.0003459435247350484, + -0.028016051277518272, + 0.012948479503393173, + 0.02233303152024746, + -0.008951100520789623, + 0.024699809029698372, + -0.0006088950322009623, + -0.00830436497926712, + 0.006756326649338007, + 0.007616348098963499, + -0.021534930914640427, + 0.001617699977941811, + -0.013368169777095318, + 0.0025714633520692587, + 0.009522154927253723, + -0.004282905720174313, + -0.028263738378882408, + 0.009246948175132275, + -0.023488899692893028, + 0.00729297986254096, + 0.011455482803285122, + -0.009680398739874363, + -0.04007010906934738, + 0.01499877031892538, + 0.0009073223918676376, + -0.013691538013517857, + 0.001133507932536304, + -0.019911210983991623, + 0.019484641030430794, + 0.011565565131604671, + -0.017998524010181427, + 0.005497255828231573, + -0.006580882240086794, + 0.02480989322066307, + -0.0113660404458642, + -0.014001145958900452, + -0.03918944671750069, + 0.009659758768975735, + 0.017626995220780373, + 0.035364072769880295, + 0.00857269112020731, + -0.025497909635305405, + -0.03043787181377411, + -0.02203030325472355, + 0.010450977832078934, + 0.019883690401911736, + -0.02076435275375843, + -0.017723318189382553, + 0.024369562044739723, + 0.011538044549524784, + 0.018865425139665604, + -0.027341794222593307, + -0.024218197911977768, + 0.0076438686810433865, + 0.0019918091129511595, + 0.0029378326144069433, + -0.005621098913252354, + 0.016897697001695633, + -0.024438362568616867, + 0.01828749105334282, + -0.010953230783343315, + -0.009604716673493385, + 0.0017209025099873543, + 0.005019084084779024, + -0.012026537209749222, + -0.025484148412942886, + 0.008847898803651333, + -0.011249077506363392, + 0.006938651204109192, + 0.03002506121993065, + -0.009728560224175453, + 0.007471864577382803, + 0.0028002290055155754, + -0.015411579981446266, + -0.010100089013576508, + 0.004489311017096043, + 0.0018094846745952964, + -0.01629224233329296, + -0.004637234378606081, + -0.00030165244243107736, + -0.01670505292713642, + 0.01733802817761898, + 0.0015402979915961623, + 0.031923986971378326, + 0.005222049076110125, + 0.004626914393156767, + -0.0009047423372976482, + 0.009934965521097183, + -0.014847406186163425, + 0.011861412785947323, + 0.0019935292657464743, + -0.0016056596068665385, + 0.02284216322004795, + -0.006095830351114273, + -0.0056761400774121284, + -0.003032434731721878, + -0.0107949860394001, + -0.011909574270248413, + 0.0035467275884002447, + -0.009074944071471691, + -0.0002771418367046863, + -0.0013966744299978018, + 0.018824145197868347, + 0.010251453146338463, + -0.004355147480964661, + -0.024259477853775024, + 0.00402833940461278, + -0.005455974489450455, + -0.0038047339767217636, + 0.0014491357142105699, + 0.024644767865538597, + 0.004915881436318159, + 0.009006142616271973, + -0.013808500953018665, + -0.004575313068926334, + -0.007430583238601685, + -0.011028911918401718, + 0.024355800822377205, + -0.003244000021368265, + -0.0069833723828196526, + 0.023929230868816376, + 0.005624538753181696, + -0.0028707508463412523, + -0.005480055231601, + -0.008813497610390186, + 0.0058103036135435104, + 0.009721679612994194, + -0.009102464653551579, + -0.0073411413468420506, + 0.013952984474599361, + -0.002915472025051713, + 0.008448848500847816, + -0.010554180480539799, + 0.01479236502200365, + 0.00423474470153451, + 0.027245473116636276, + 0.030465392395853996, + 0.004919321276247501, + 0.011173395439982414, + -0.009109345264732838, + 0.021658774465322495, + -0.015384059399366379, + 0.012336144223809242, + 0.010657383129000664, + -0.007065934594720602, + -0.006763206794857979, + 0.012969120405614376, + -0.013230566866695881, + -0.0032405599486082792, + 1.7905911136040231e-6, + 0.009019902907311916, + -0.002079531317576766, + 0.04703284054994583, + 0.005696780513972044, + -0.015342778526246548, + -0.0017054220661520958, + -0.020819393917918205, + 0.00805667880922556, + 0.011551804840564728, + 0.031180929392576218, + 0.007650748826563358, + 0.02025521919131279, + 0.0076438686810433865, + -0.018961748108267784, + -0.028126133605837822, + -0.0012487508356571198, + 0.00841444730758667, + -0.010464738123118877, + -0.00612679123878479, + 0.002010729629546404, + 0.00296019297093153, + 0.0298048947006464, + -0.011152755469083786, + -0.0010801866883412004, + 0.02355770207941532, + -0.028098613023757935, + 0.01951216161251068, + -0.04983995109796524, + -0.014916208572685719, + -0.0076851495541632175, + 0.008214922621846199, + -0.019663525745272636, + 0.022195428609848022, + -0.010671143420040607, + 0.012803995981812477, + 0.017599474638700485, + 0.0046888357028365135, + 0.018218690529465675, + 0.017709556967020035, + 0.0010096649639308453, + 0.007609467953443527, + -0.007485624868422747, + 0.014407075941562653, + -0.00160307961050421, + 0.01898926869034767, + -0.026543695479631424, + 0.005965107120573521, + 0.015053811483085155, + 0.015755588188767433, + -0.01611335761845112, + -0.014668522402644157, + 0.009480874054133892, + -0.00010202001431025565, + -0.005156687460839748, + -0.024975016713142395, + -0.011434841901063919, + -0.026034561917185783, + 0.011194036342203617, + -0.001830125111155212, + 0.00966663844883442, + -0.005459414795041084, + 0.007912195287644863, + 0.008868538774549961, + -0.00980424229055643, + -0.008448848500847816, + -0.017626995220780373, + -0.0010475058807060122, + 0.028731588274240494, + -0.024328280240297318, + 0.0027056268882006407, + 0.010334014892578125, + -0.005992627702653408, + -0.0053011709824204445, + -0.01962224394083023, + 0.020117616280913353, + -0.018149888142943382, + -0.0048711602576076984, + -0.004995003342628479, + 0.0027864687144756317, + 0.026722580194473267, + -0.02139732800424099, + 0.028924234211444855, + -0.001711442251689732, + -0.0020485706627368927, + -0.02420443668961525, + -0.03709787502884865, + -0.016443606466054916, + 0.0017819639761000872, + -0.004606273490935564, + -0.005548857152462006, + -0.03481365740299225, + 0.007279219571501017, + -0.018851665779948235, + 0.028057333081960678, + 0.012631991878151894, + 0.008655253797769547, + -0.005985747557133436, + 0.033492665737867355, + -0.01479236502200365, + -0.019966252148151398, + 0.036519940942525864, + -0.006250634323805571, + 0.03563927859067917, + -0.012370545417070389, + 0.02119092270731926, + 0.01920943334698677, + -0.006832008715718985, + -0.025484148412942886, + -0.0031631579622626305, + -0.0061955926939845085, + 0.015218935906887054, + 0.018246211111545563, + -0.009171266108751297, + -0.02450716495513916, + 0.0069420915096998215, + -0.028263738378882408, + -0.03186894580721855, + -0.019360797479748726, + -0.002327217487618327, + -0.010320254601538181, + -0.01930575631558895, + 0.0043620276264846325, + -0.006174952257424593, + 0.012508148327469826, + 0.006374477408826351, + 0.008737815544009209, + -0.016994019970297813, + 0.00044807104859501123, + -0.001516217365860939, + 0.01354705449193716, + 0.009721679612994194, + 0.016773853451013565, + -0.005865344777703285, + -0.004857399966567755, + 0.006223113741725683, + 0.01080186665058136, + 0.01329248771071434, + 0.006288475356996059, + 0.012659512460231781, + 0.028263738378882408, + -0.0321991965174675, + -0.014503397978842258, + 0.0014112947974354029, + 0.025484148412942886, + 0.00516356760635972, + 0.004183143377304077, + -0.006174952257424593, + -0.027658281847834587, + -0.005799983162432909, + -0.0011180276051163673, + 0.01816364750266075, + 0.00648800004273653, + 0.012088458053767681, + 0.01107019279152155, + -0.00930198933929205, + -0.01437955442816019, + 0.009295109659433365, + 0.008132360875606537, + 0.0038804158102720976, + 0.008235563524067402, + 0.009694159030914307, + 0.011352280154824257, + -0.00044291093945503235, + 0.0027572279796004295, + -8.643213368486613e-5, + -0.00011524284491315484, + -0.006587762385606766, + 0.0065843225456774235, + -0.018356293439865112, + 0.0039870585314929485, + 0.025938240811228752, + 0.016567448154091835, + -0.011710048653185368, + 0.004609713796526194, + -0.02636481076478958, + -0.009171266108751297, + 0.01520517561584711, + -0.0023839788045734167, + 0.004014579113572836, + -0.0009073223918676376, + 0.0023547380696982145, + -0.02065427042543888, + -0.009886804036796093, + 0.0107949860394001, + -0.010636742226779461, + -0.004141862038522959, + -0.0023495780769735575, + -0.0035948886070400476, + -0.017571954056620598, + -0.009749200195074081, + 0.07931459695100784, + 0.004888360854238272, + 0.010712424293160439, + 0.013939224183559418, + 0.003605209058150649, + -0.01982864923775196, + 0.0004138852236792445, + 0.022498155012726784, + 0.00798787735402584, + -0.0107949860394001, + -0.022883445024490356, + -0.013767220079898834, + 0.026227207854390144, + 0.017915962263941765, + -0.029006795957684517, + 0.0013218526728451252, + 0.008896059356629848, + -0.011606846004724503, + -0.006009828299283981, + 0.012590711005032063, + -9.997746383305639e-5, + 0.0020554508082568645, + 0.006948971655219793, + 0.0008608812349848449, + -0.0005538536934182048, + 0.005363092292100191, + -0.01548038236796856, + -0.006229993887245655, + 0.009288229048252106, + 0.02428700029850006, + 0.007616348098963499, + -0.007815873250365257, + -0.01619591936469078, + -0.024355800822377205, + -0.0018748462898656726, + 0.0060339090414345264, + 0.011606846004724503, + 0.0033437625970691442, + -0.0004308706265874207, + -0.007017773110419512, + 0.0022360552102327347, + -0.004444589838385582, + 0.009859283454716206, + 0.01787468045949936, + -0.024383321404457092, + 0.0019092471338808537, + -0.010698664002120495, + 0.002442460274323821, + -0.011593085713684559, + 0.002585223875939846, + 0.006422638427466154, + -0.02503005787730217, + 0.022374311462044716, + 0.019691046327352524, + 0.024741090834140778, + -0.012232941575348377, + 0.017792118713259697, + 0.01808108575642109, + 0.007636988535523415, + -0.00346588552929461, + -0.022195428609848022, + -0.013127364218235016, + 0.0038872959557920694, + -0.009721679612994194, + -0.005184208042919636, + 0.006192152854055166, + -0.019498400390148163, + 0.008978622034192085, + 0.0018834464717656374, + -0.026007041335105896, + -0.010946350172162056, + -0.01920943334698677, + 0.0011644687037914991, + -0.022663278505206108, + -0.004104021470993757, + 0.02036530338227749, + 0.008049799129366875, + 0.04799606278538704, + 0.03140109404921532, + 0.0020692110992968082, + -0.0047507574781775475, + 0.001711442251689732, + -0.02369530498981476, + -0.006467359606176615, + 0.007251698989421129, + -0.01411810889840126, + 0.014874926768243313, + -0.04747316986322403, + 0.016058316454291344, + -0.026736339554190636, + -0.013354409486055374, + 0.00454779202118516, + 0.007781472057104111, + 0.011599966324865818, + -0.008978622034192085, + -0.0021294124890118837, + 0.010382176376879215, + 0.012150379829108715, + 0.002518142107874155, + -0.009267589077353477, + 0.0064019979909062386, + -0.006030468735843897, + -0.005005323328077793, + -0.0061061508022248745, + -0.013994265347719193, + -0.0033317222259938717, + 0.03052043356001377, + -0.004929641727358103, + -0.001314112450927496, + 0.00924006849527359, + -0.014627240598201752, + -0.005339011549949646, + 0.001075886539183557, + -0.0006574862054549158, + 0.0018438855186104774, + -0.008001637645065784, + 0.019360797479748726, + 0.005521336104720831, + -0.01660872995853424, + -0.006322876084595919, + 0.0150675717741251, + 0.008847898803651333, + 0.005208288319408894, + -0.011710048653185368, + -0.005610778462141752, + 0.01281775627285242, + -0.012962239794433117, + -0.009818002581596375, + -0.0034435249399393797, + -0.013003520667552948, + 0.021878939121961594, + 0.008724055252969265, + 0.02117716334760189, + -0.0026763861533254385, + 0.016237201169133186, + 0.0006759766838513315, + -0.008737815544009209, + 0.008724055252969265, + 0.002222294919192791, + -0.010636742226779461, + 0.026873942464590073, + 0.004630354233086109, + 0.01261823158711195, + 0.011551804840564728, + 0.005896305665373802, + 0.004613153636455536, + 0.0018903266172856092, + -0.015095092356204987, + 0.0031442376784980297, + 0.0014001145027577877, + 0.015948234125971794, + -0.024039313197135925, + 0.020076336339116096, + -0.0009167826501652598, + -0.002265295945107937, + 0.012274223379790783, + -0.030080102384090424, + 0.015934472903609276, + -0.03508886694908142, + 0.006353836972266436, + 0.008276844397187233, + -0.011125234887003899, + -0.007925955578684807, + 0.005177327897399664, + -0.002041690284386277, + 0.010347775183618069, + 0.0026471454184502363, + 0.010093209333717823, + 0.0034555653110146523, + 0.008125480264425278, + 0.0047507574781775475, + 0.010843147523701191, + 0.03288721293210983, + -0.030465392395853996, + 0.012122859247028828, + -0.015535423532128334, + 0.004097141325473785, + 0.004850519821047783, + -0.015370299108326435, + 0.00032250795629806817, + -0.003828814486041665, + -0.01878286339342594, + 0.015466622076928616, + 0.0004605413705576211, + -0.01993873156607151, + -0.022057823836803436, + 0.009831762872636318, + -0.004193463362753391, + 0.0011756489984691143, + -0.008558930829167366, + -0.0119370948523283, + 0.021672535687685013, + 0.0048229992389678955, + -0.004819558933377266, + 0.0006742566474713385, + -0.00753378588706255, + 0.0374281220138073, + 0.010430337861180305, + 0.03032778762280941, + 0.0011257678270339966, + -0.003577688243240118, + -0.003921696916222572, + 0.010760585777461529, + 0.0009322630357928574, + 0.0037359322886914015, + -0.012803995981812477, + -0.010973870754241943, + -0.010354655794799328, + -0.006653124000877142, + -0.006305675487965345, + -0.046564988791942596, + -0.03115340881049633, + 0.017489392310380936, + 0.004355147480964661, + 0.009267589077353477, + -0.005369972437620163, + 0.015810629352927208, + 0.01898926869034767, + 0.01205405779182911, + 0.01871406100690365, + 0.0014284952776506543, + -0.0036671306006610394, + 0.010966991074383259, + -0.007065934594720602, + 0.005153247155249119, + -0.004726676736027002, + 0.0017209025099873543, + 0.015714308246970177, + 0.027754604816436768, + -0.009219427593052387, + 0.011985255405306816, + -0.01618216000497341, + 0.005566057283431292, + 0.010272093117237091, + -0.0021397327072918415, + 0.026612496003508568, + 0.0048401993699371815, + -0.0022756161633878946, + 0.004623474087566137, + -0.004399868659675121, + -0.018204929307103157, + 0.01630600169301033, + -0.0019918091129511595, + -0.011393561027944088, + -0.011599966324865818, + -0.013794740661978722, + 8.68083952809684e-5, + 0.0060339090414345264, + -0.012226061895489693, + -2.5088431357289664e-5, + 0.0075819469057023525, + 0.008490129373967648, + 0.010196411982178688, + -0.0076851495541632175, + 0.006883610039949417, + -0.004059300292283297, + -0.00032680807635188103, + 0.015439101494848728, + 0.004417068790644407, + -0.013478253036737442, + 0.01618216000497341, + 0.014723563566803932, + -0.026103364303708076, + -0.0008733515278436244, + 0.0032405599486082792, + 0.011785730719566345, + -0.024864934384822845, + 0.012336144223809242, + -0.012088458053767681, + -0.0008307804819196463, + 0.00992120523005724, + -0.011655007489025593, + 0.0026505854912102222, + 0.024438362568616867, + -0.0008995822281576693, + -0.0027451878413558006, + -0.0073893023654818535, + -0.013829140923917294, + 0.006353836972266436, + 0.025676794350147247, + -0.009797361679375172, + -0.005345892161130905, + 0.00975608080625534, + -0.017200425267219543, + -0.0019488080870360136, + -0.03825374320149422, + 0.017007779330015182, + 0.01755819283425808, + -0.010966991074383259, + 0.01531525794416666, + -0.001859365846030414, + 0.0050638047978281975, + -0.007520025596022606, + -0.002237775130197406, + 0.007065934594720602, + 0.00693521136417985, + -0.003391923615708947, + -0.007155376486480236, + 0.03973986208438873, + -0.026516174897551537, + -0.003170038340613246, + -0.007836513221263885, + -0.0045133912935853004, + -0.006828568410128355, + -0.01816364750266075, + 0.009081823751330376, + 0.029364565387368202, + 0.01032713521271944, + -0.0008660414023324847, + 0.011579325422644615, + 0.009790481999516487, + 0.0044961911626160145, + -0.01868654042482376, + -0.00975608080625534, + -0.005944466684013605, + 0.008221803233027458, + 0.003400523914024234, + 0.0394921749830246, + -0.008944220840930939, + 0.00851077027618885, + -0.005442214198410511, + -0.0003425034519750625, + 0.023612743243575096, + -0.011503644287586212, + 0.017984764650464058, + -0.018108606338500977, + 0.021067079156637192, + 0.005029404070228338, + 0.03217167407274246, + -0.01567302644252777, + 0.018548937514424324, + 0.02314489148557186, + -0.022869683802127838, + -0.002227454911917448, + 0.01600327529013157, + 0.016539927572011948, + -0.02369530498981476, + -0.007602587807923555, + -0.005101645831018686, + -0.001657260931096971, + -0.014916208572685719, + -0.011503644287586212, + -0.008366286754608154, + 0.0058825453743338585, + -0.0019488080870360136, + 0.0006837168475612998, + 0.004348267335444689, + -0.01293471921235323, + 0.014008025638759136, + 0.009425832889974117, + -0.003997378516942263, + 0.017186664044857025, + 0.014200670644640923, + 0.011290358379483223, + -0.005700220819562674, + -0.008992382325232029, + 0.010829387232661247, + 0.010781225748360157, + -0.011510523967444897, + -0.013959864154458046, + -0.006143991835415363, + 0.020516665652394295, + -0.00038571952609345317, + -0.02200278267264366, + 0.006790727376937866, + -0.019140632823109627, + -0.0006467359489761293, + 0.008813497610390186, + -0.0415562242269516, + -0.008613972924649715, + 0.010086328722536564, + -0.012714553624391556, + -0.01085002813488245, + -0.009274468757212162, + -0.01952592097222805, + 0.011028911918401718, + -0.010526659898459911, + -0.002736587543040514, + -0.030602995306253433, + 0.0005013923509977758, + 0.016361044719815254, + 0.006801047828048468, + 0.004492750857025385, + -0.010148250497877598, + -0.015865672379732132, + 0.012473748065531254, + 0.024892454966902733, + 0.004148742184042931, + 0.0019591283053159714, + -0.017984764650464058, + -0.0031975589226931334, + 0.006460479460656643, + 0.003866655519232154, + 0.008118600584566593, + -0.027603240683674812, + 0.02615840546786785, + -0.019787367433309555, + 0.012508148327469826, + -0.01691145822405815, + 0.008015397936105728, + -0.004850519821047783, + 0.0036189693491905928, + 0.008380047045648098, + -0.0014491357142105699, + 0.01091194897890091, + -0.007609467953443527, + 0.0009322630357928574, + -0.003467605682089925, + 0.01849389635026455, + -0.005803423002362251, + 0.0030117942951619625, + 0.015053811483085155, + -0.012005896307528019, + -0.006763206794857979, + 0.01952592097222805, + -0.018122367560863495, + -0.009535915218293667, + 0.008015397936105728, + 0.013430091552436352, + 0.004276025574654341, + 0.00737554207444191, + -0.0010999671649187803, + 0.008345645852386951, + -0.008552051149308681, + -0.0031253171619027853, + -0.01531525794416666, + 0.01520517561584711, + 0.011641247197985649, + 0.006267834920436144, + 0.006027028895914555, + -0.0020554508082568645, + 0.014682282693684101, + -0.026309769600629807, + 0.01827373169362545, + -0.027961010113358498, + -0.00011449032899690792, + 0.007561306469142437, + -0.004499631002545357, + -0.001644360600039363, + 0.012191660702228546, + -0.023488899692893028, + -0.015136373229324818, + -0.01080186665058136, + 0.002879351144656539, + -0.006020148750394583, + -0.01214350014925003, + 0.004633794538676739, + 0.016223439946770668, + -0.007320500444620848, + -0.021438609808683395, + -0.01766827516257763, + 0.010265213437378407, + -0.00258178380317986, + -0.0016297402326017618, + -0.01147612277418375, + -0.0048229992389678955, + -0.0047369967214763165, + -0.02856646478176117, + 0.021149642765522003, + -0.03316241875290871, + 0.028208695352077484, + 0.003428044496104121, + 0.0162096805870533, + -0.014929968863725662, + 0.007148496340960264, + -0.00496060261502862, + 0.019567202776670456, + -0.002994593931362033, + -0.018769104033708572, + 0.012549430131912231, + -0.02201654389500618, + 0.033602748066186905, + -0.0023891390301287174, + 0.006560241803526878, + 0.009928084909915924, + 0.01859021931886673, + -0.009487753733992577, + 0.0003147677634842694, + -0.007705789990723133, + -0.011132114566862583, + -0.011235317215323448, + 0.009205667302012444, + -0.006660004146397114, + -0.0042106639593839645, + 0.0299149788916111, + 0.005786222871392965, + 0.009116224944591522, + 0.011627486906945705, + -0.0115311648696661, + 0.013615855947136879, + 0.015136373229324818, + 0.028291258960962296, + 0.008923579938709736, + -0.0015033171512186527, + 0.012604471296072006, + 0.0017062821425497532, + 0.016223439946770668, + 0.0230623297393322, + -0.010739944875240326, + -0.0047369967214763165, + 0.01475108414888382, + 0.00467163510620594, + -0.010354655794799328, + -0.02263575792312622, + 0.011379800736904144, + -0.006635923869907856, + -0.0017716437578201294, + 0.016787614673376083, + 0.010354655794799328, + 0.006938651204109192, + 0.010671143420040607, + -0.01608583703637123, + -0.01971856690943241, + 0.0006106150685809553, + -0.004702595993876457, + 0.024066833779215813, + -0.004706036299467087, + -0.011579325422644615, + 0.016691291704773903, + -0.0022429353557527065, + -0.016264721751213074, + -0.02834630012512207, + -0.0008514210348948836, + -0.002963633043691516, + 0.005008763633668423, + 0.0021414528600871563, + 0.015384059399366379, + -0.0008798016933724284, + -0.0020932916086167097, + -0.017365548759698868, + -0.009577196091413498, + 0.031621258705854416, + 0.015260216780006886, + -0.020420344546437263, + -0.0016323202289640903, + 0.02211286500096321, + 0.008276844397187233, + 0.00040184491081163287, + 0.024424603208899498, + -0.0039320169016718864, + 0.004327626898884773, + -0.005738061387091875, + 0.014283232390880585, + 0.016223439946770668, + -0.0024476204998791218, + -0.0186039786785841, + 0.011854532174766064, + 0.008455729112029076, + 0.001897206879220903, + -0.000740908260922879, + -0.007155376486480236, + 0.008545170538127422, + 0.025924479588866234, + 0.018232449889183044, + 0.023337535560131073, + -0.015714308246970177, + 0.012762715108692646, + -0.0030754359904676676, + -0.015961993485689163, + 0.008455729112029076, + -0.005142926704138517, + -0.0025336225517094135, + -0.006013268604874611, + -0.02304856851696968, + -0.02220918796956539, + 0.0066256034187972546, + 0.00592038594186306, + -0.005025964230298996, + 0.021259725093841553, + 0.008077319711446762, + -0.004196903668344021, + 0.013230566866695881, + 0.002224014839157462, + 0.014407075941562653, + -0.011696288362145424, + 0.007864033803343773, + -0.03627225384116173, + 0.0036636905279010534, + 0.014599720016121864, + 0.0014732163399457932, + 0.001240150653757155, + -0.023227453231811523, + 0.0028311898931860924, + 0.0007133876206353307, + 0.0043929885141551495, + 0.022910965606570244, + 0.005879105068743229, + 0.01870030164718628, + 0.018824145197868347, + -0.02317241206765175, + 0.012721434235572815, + -0.008710294961929321, + 0.0011756489984691143, + -0.01870030164718628, + 0.013264967128634453, + 0.004021459259092808, + -0.00765762897208333, + 0.007974117062985897, + -0.015287737362086773, + -0.0386115126311779, + -0.011875173076987267, + -0.004059300292283297, + 0.00793971586972475, + -0.004606273490935564, + 0.00774019118398428, + -0.0020915716886520386, + 0.008001637645065784, + -0.006219673436135054, + -0.0038425747770816088, + 0.010155130177736282, + 0.015177655033767223, + -0.029419606551527977, + 0.020227698609232903, + -0.024176916107535362, + 0.01345761213451624, + 0.014200670644640923, + 0.018755342811346054, + -0.008696534670889378, + 0.039822421967983246, + -0.0013958144700154662, + 0.01127659808844328, + 0.0021018919069319963, + -0.009563435800373554, + 0.0034349248744547367, + -0.007994757033884525, + -0.008483249694108963, + 0.015095092356204987, + 0.012322383932769299, + 0.017571954056620598, + -0.019360797479748726, + 0.014943729154765606, + -0.008490129373967648, + 0.007120975758880377, + -0.035033825784921646, + -0.004413628950715065, + -1.3814091289532371e-5, + -0.01940207928419113, + 0.01137292105704546, + -0.000655336189083755, + -0.012349904514849186, + -0.008744696155190468, + -0.009040542878210545, + 0.00924006849527359, + 0.01682889461517334, + 0.0009537635487504303, + 0.003969857934862375, + -0.00041238017729483545, + 0.008765336126089096, + 0.015576704405248165, + -0.014014906249940395, + -0.01755819283425808, + 0.014833645895123482, + -0.005541977006942034, + 0.018259970471262932, + 0.004104021470993757, + -0.012659512460231781, + 0.008552051149308681, + -0.017599474638700485, + 0.0347035750746727, + 0.006319435779005289, + -0.004998443182557821, + -0.02366778440773487, + 0.007774591911584139, + 0.010581701062619686, + -0.001790564158000052, + -0.0025731835048645735, + 0.0035536077339202166, + 0.02013137750327587, + -0.02491997554898262, + -0.002224014839157462, + -0.0027933488599956036, + -0.003469325602054596, + -0.014489637687802315, + -0.0028965515084564686, + 0.01365713682025671, + 0.017310507595539093, + 0.014475877396762371, + -0.009109345264732838, + 0.022277990356087685, + -0.00454779202118516, + 0.009494634345173836, + 0.009412072598934174, + 0.012989760376513004, + 0.02698402665555477, + -1.23560857900884e-5, + 0.01568678766489029, + 0.012398065999150276, + -0.014200670644640923, + -0.0048711602576076984, + 0.010375295765697956, + -0.02337881736457348, + -0.002707346808165312, + -0.03093324415385723, + -0.0021741336677223444, + -0.005369972437620163, + 0.004564992617815733, + -0.020709311589598656, + 0.005180767737329006, + -0.002377098659053445, + -0.012391185387969017, + -0.015865672379732132, + 0.015851911157369614, + 0.0033781633246690035, + -0.01245998777449131, + -0.008380047045648098, + -0.01590695232152939, + -0.003687771037220955, + 0.0001549113221699372, + 0.012542549520730972, + -0.026667539030313492, + 0.024575967341661453, + -0.010141369886696339, + 0.01681513525545597, + 0.028208695352077484, + 0.01733802817761898, + -0.04287721961736679, + -0.00459595350548625, + 0.0024682609364390373, + -0.020200178027153015, + 0.007630108390003443, + 0.015755588188767433, + 0.0010010646656155586, + -0.0061783925630152225, + 0.012508148327469826, + -0.007086575031280518, + -0.01570054702460766, + -0.006997132673859596, + 0.009879923425614834, + -0.024039313197135925, + 0.0012771314941346645, + 0.03217167407274246, + 0.00519452802836895, + -0.016484886407852173, + 0.022057823836803436, + -0.013381930068135262, + -0.0006226553814485669, + 0.006027028895914555, + 0.011194036342203617, + 0.0030049141496419907, + 0.024589726701378822, + -0.02553918957710266, + -0.017062820494174957, + -0.008435088209807873, + -0.005910065956413746, + 0.011145874857902527, + 0.005328691564500332, + -0.008276844397187233, + 0.0050947656854987144, + 0.005277090240269899, + 0.03167630359530449, + -0.010705544613301754, + -0.007265459280461073, + 0.019966252148151398, + -0.004922761581838131, + 0.017998524010181427, + -0.003753132652491331, + 0.0056451791897416115, + -0.024864934384822845, + 0.008730935864150524, + -0.0012883117888122797, + 0.004644114524126053, + 0.010210172273218632, + -0.0230623297393322, + -0.003500286489725113, + 0.005830944050103426, + 0.01940207928419113, + 0.010698664002120495, + -0.010953230783343315, + -0.0007284379680640996, + 0.02897927537560463, + -0.016842655837535858, + -0.006539601366966963, + -0.0032302397303283215, + -0.022580716758966446, + 0.009040542878210545, + -0.032254237681627274, + -0.031841427087783813, + 0.0046475548297166824, + 0.013471372425556183, + 0.002702186582610011, + 0.006446719169616699, + 0.001274551497772336, + -0.007024653255939484, + 0.009886804036796093, + -0.006529280915856361, + 0.013313128612935543, + -0.015342778526246548, + 0.019168153405189514, + 0.019567202776670456, + 0.020791873335838318, + 0.02452092431485653, + -0.012515028938651085, + -0.013842901214957237, + 0.013519533909857273, + 0.014929968863725662, + -0.011345399543642998, + -0.004712916444987059, + -0.015507902950048447, + -0.00882037729024887, + 0.00705905444920063, + 0.0016976818442344666, + -0.007334261201322079, + 0.013044801540672779, + -0.014145629480481148, + -0.025456627830863, + -0.0019402079051360488, + -8.729215187486261e-5, + -0.0025697434321045876, + 0.012673272751271725, + 0.006030468735843897, + 0.005517896264791489, + 0.011551804840564728, + 0.0022446555085480213, + 0.004936521872878075, + 0.017269225791096687, + 0.008290604688227177, + -0.00789843499660492, + -0.019291996955871582, + 0.01292783860117197, + 0.0016942417714744806, + 0.00011524284491315484, + 0.010175771079957485, + 0.006467359606176615, + -0.018562698736786842, + -0.02575935609638691, + -0.017915962263941765, + 0.004100581165403128, + 0.007808992639183998, + -0.001351953367702663, + -0.041060853749513626, + -0.0051670074462890625, + -0.005713981110602617, + -0.014888687059283257, + 0.0017209025099873543, + 0.014819885604083538, + -0.006436398718506098, + 0.011421081610023975, + -0.01868654042482376, + 0.030713077634572983, + -0.008964860811829567, + 0.002224014839157462, + -0.017833400517702103, + 0.004492750857025385, + 0.009762960486114025, + 0.007602587807923555, + -0.0046888357028365135, + 0.011909574270248413, + -0.01951216161251068, + -0.009742320515215397, + -0.012755834497511387, + -0.001792284194380045, + 0.01012072991579771, + 0.0027159471064805984, + -0.0013364730402827263, + 0.0011704888893291354, + -0.007038413546979427, + -4.7220539272530004e-5, + -0.01651240698993206, + 0.010106969624757767, + -0.007664509117603302, + 0.01199901569634676, + 0.0372079573571682, + 0.008724055252969265, + -0.003472765674814582, + 0.024631008505821228, + -0.008909819647669792, + -0.024465883150696754, + -0.008325005881488323, + -0.0043929885141551495, + -0.011985255405306816, + -0.012191660702228546, + -0.010299614630639553, + 0.023420097306370735, + -0.0019900891929864883, + -0.000657056225463748, + 0.013959864154458046, + -0.008627733215689659, + -0.00043323569116182625, + 0.00789843499660492, + 0.0009305429412052035, + 0.020956996828317642, + -0.0015334178460761905, + 0.002770988503471017, + 0.017929721623659134, + -0.011820131912827492, + 0.007114095613360405, + 0.017365548759698868, + 0.015851911157369614, + -0.017516912892460823, + 0.023227453231811523, + -0.0010879267938435078, + -0.01901678927242756, + 0.001588459243066609, + -0.010574821382761002, + -0.01922319456934929, + 0.022167908027768135, + 0.012005896307528019, + 0.018204929307103157, + -0.023337535560131073, + 0.007609467953443527, + 0.010375295765697956, + -0.01552166324108839, + -0.0037359322886914015, + 0.017682036384940147, + -0.011661888100206852, + 0.008242443203926086, + -0.030768118798732758, + 0.0002797218912746757, + -0.017613233998417854, + 0.012549430131912231, + -0.027782125398516655, + -0.015617985278367996, + 0.021933982148766518, + 0.004829879384487867, + 0.014186910353600979, + 0.007719550747424364, + 0.006367597263306379, + -0.015494142659008503, + 0.008586452342569828, + -0.001001924742013216, + -0.0009494634578004479, + -0.0026781060732901096, + -0.0010905069066211581, + 0.03918944671750069, + 0.029337044805288315, + 0.012865917757153511, + -0.0060029481537640095, + -0.013932343572378159, + -0.007437463384121656, + 0.012707673944532871, + 0.0006957571604289114, + -0.0070315334014594555, + -0.0008742116042412817, + -0.00716913677752018, + -0.01173068955540657, + -0.005249569658190012, + -0.008896059356629848, + -0.003756572725251317, + -0.011290358379483223, + 0.021273484453558922, + 0.00798787735402584, + -0.02460348792374134, + 0.004217544104903936, + -0.023543940857052803, + 0.0021448929328471422, + -0.003249160246923566, + -0.0038219343405216932, + -0.015604224987328053, + 0.002850110409781337, + -0.008441967889666557, + -0.010960110463202, + -8.902563422452658e-6, + -0.01458595972508192, + -0.0006613563164137304, + 0.006439839024096727, + 0.01652616821229458, + -0.022883445024490356, + -0.010870668105781078, + -0.009673519060015678, + 0.004950282163918018, + -0.0036327296402305365, + -0.01433827355504036, + 0.012879678048193455, + -0.014806125313043594, + 0.012673272751271725, + -0.017172904685139656, + -0.018122367560863495, + -0.013622736558318138, + -0.015095092356204987, + 0.0091919070109725, + 0.006979932077229023, + 0.013079202733933926, + -0.00338676362298429, + 0.01764075458049774, + 0.020640509203076363, + 0.005865344777703285, + -0.02368154376745224, + -0.01225358247756958, + -0.0033454825170338154, + 0.015163893811404705, + -0.023131130263209343, + 0.011352280154824257, + -0.0002986423787660897, + -0.00649144034832716, + 0.008889179676771164, + -0.005225488916039467, + -0.003498566336929798, + 0.01002440694719553, + 0.013719058595597744, + -0.0015334178460761905, + -0.006023588590323925, + -0.01411810889840126, + -0.027465637773275375, + 0.012164140120148659, + -0.036189693957567215, + -0.012563190422952175, + 0.012026537209749222, + 0.00044291093945503235, + -0.013168645091354847, + -0.011132114566862583, + 0.014255711808800697, + 0.008407567627727985, + -0.013464492745697498, + -0.0028673107735812664, + 0.008111719973385334, + -0.020076336339116096, + 0.024796131998300552, + 0.0017234825063496828, + -0.018411334604024887, + 0.007774591911584139, + 0.0016942417714744806, + -0.008153000846505165, + 0.00511540612205863, + 0.017117861658334732, + -0.011517404578626156, + 0.0013029321562498808, + 0.025208942592144012, + 0.012941599823534489, + -0.013361290097236633, + -0.002765828277915716, + -0.007678269408643246, + 0.01590695232152939, + 0.006508640479296446, + -0.00649144034832716, + 0.010987631045281887, + 0.014888687059283257, + -0.006804488133639097, + -0.0034779259003698826, + -0.02471357025206089, + 0.0036430498585104942, + -0.0023874188773334026, + -0.0011980095878243446, + 0.00939831230789423, + -0.015397819690406322, + -0.022154146805405617, + 0.024231957271695137, + 0.005641739349812269, + 0.0075406660325825214, + 0.004417068790644407, + -0.0038012939039617777, + 0.00334720266982913, + 0.0008522810530848801, + 0.010966991074383259, + -0.008675893768668175, + -0.0010896469466388226, + -0.023007288575172424, + 0.011400441639125347, + -0.019993772730231285, + 0.012473748065531254, + 0.02346137911081314, + -0.01920943334698677, + 0.019374558702111244, + -0.0025061017367988825, + -0.011613726615905762, + 0.001274551497772336, + 0.01638856530189514, + -0.009928084909915924, + 0.010155130177736282, + 0.002927512163296342, + 0.029006795957684517, + 0.02014513686299324, + -0.0030909162014722824, + 0.0023891390301287174, + -0.012803995981812477, + -0.009487753733992577, + 0.0040352195501327515, + -0.00013480833149515092, + 0.013003520667552948, + -0.0054938155226409435, + -0.011923334561288357, + 0.005875665228813887, + 0.009295109659433365, + 0.002162093296647072, + -0.0035226468462496996, + 0.0014525759033858776, + -0.011875173076987267, + 0.006367597263306379, + 0.01241182629019022, + -0.006797607988119125, + -0.018328772857785225, + 0.02357146143913269, + 0.004011138807982206, + -0.02928200177848339, + 0.005280530545860529, + -0.008916700258851051, + -0.010678023099899292, + 0.007698909845203161, + 0.002258415799587965, + -0.0049743629060685635, + -0.009625357575714588, + 0.019374558702111244, + 0.006653124000877142, + 0.007416822947561741, + 0.01984241046011448, + 0.004730116575956345, + -0.010788106359541416, + 0.005249569658190012, + 0.00015329878078773618, + 0.01892046630382538, + 0.008118600584566593, + -0.005707100965082645, + 0.0015230976277962327, + 0.003502006409689784, + -0.013058561831712723, + 0.02181013859808445, + 0.01422819122672081, + -0.002555983141064644, + -0.0026798262260854244, + -0.001130067859776318, + -0.017104102298617363, + -0.012308623641729355, + -0.0014362354995682836, + -0.03792349621653557, + -0.012267342768609524, + 0.009267589077353477, + 0.012515028938651085, + -0.015452861785888672, + -0.000491072132717818, + 0.026502413675189018, + 0.021920220926404, + -0.02607584372162819, + 0.009694159030914307, + -0.00918502639979124, + -0.01746187172830105, + 0.005511016119271517, + 0.0012281102826818824, + -0.005067245103418827, + -0.004785158205777407, + -0.005394053179770708, + 0.025525430217385292, + -0.004097141325473785, + -0.0033437625970691442, + 0.015370299108326435, + -0.004599393345415592, + -0.0009417232358828187, + 0.010409696958959103, + -0.0008290604455396533, + -0.0095978369936347, + 0.014599720016121864, + -0.0064329588785767555, + 0.010733065195381641, + -0.008407567627727985, + -0.0068388888612389565, + 0.01411810889840126, + 0.0012668112758547068, + -0.011125234887003899, + -0.00871717557311058, + 0.008737815544009209, + 0.013588335365056992, + 0.0005977147375233471, + -0.010719304904341698, + -0.011063313111662865, + -0.009501514956355095, + -0.02845638245344162, + 0.01787468045949936, + 0.021314766258001328, + 0.015053811483085155, + 0.015535423532128334, + 0.009013022296130657, + 0.008613972924649715, + -0.006470799911767244, + -0.006164632271975279, + -0.021892700344324112, + 0.006157752126455307, + -0.0006402857834473252, + 0.021892700344324112, + -0.012625111266970634, + -0.004613153636455536, + 0.004279465414583683, + -0.002007289556786418, + -0.015150133520364761, + -0.034125640988349915, + -0.010100089013576508, + -0.004251944832503796, + 0.005916946101933718, + 0.008744696155190468, + 0.009336390532553196, + -0.003314521862193942, + 0.00299975392408669, + -0.0026867063716053963, + -0.009783601388335228, + 0.004757637623697519, + -0.008847898803651333, + -0.022057823836803436, + -0.00040334995719604194, + -0.0026815461460500956, + -0.01808108575642109, + -0.01309296302497387, + 0.017255466431379318, + 0.017819639295339584, + 0.017489392310380936, + -0.02222294919192791, + -0.014352033846080303, + -0.0005921245901845396, + 0.00229625659994781, + -0.000620935345068574, + -0.006130231078714132, + -0.02203030325472355, + -0.012852157466113567, + 0.011751330457627773, + -0.011152755469083786, + -0.012865917757153511, + 0.021135881543159485, + 0.002225734991952777, + -0.030575474724173546, + -0.009074944071471691, + -0.0030530754011124372, + 0.01578310877084732, + 0.02285592444241047, + 0.02150741033256054, + -0.01027897372841835, + 0.016691291704773903, + -0.01422819122672081, + 0.008187402039766312, + -0.012838397175073624, + 0.006587762385606766, + -0.005012203473597765, + -0.0022446555085480213, + 0.02241559326648712, + 0.0023220572620630264, + -0.006821688264608383, + 0.009570316411554813, + 0.004926201421767473, + -0.014971249736845493, + 0.011765090748667717, + -0.024741090834140778, + 0.015053811483085155, + -0.013464492745697498, + 0.031621258705854416, + -0.0054525346495211124, + 0.013313128612935543, + -0.014696042984724045, + -0.023543940857052803, + 0.01527397707104683, + 0.028401341289281845, + -0.008311244659125805, + 0.007189777214080095, + 0.009845523163676262, + 0.006415758281946182, + -0.00035991889308206737, + -0.005287410691380501, + 0.010574821382761002, + -0.0012969119707122445, + 0.007478744722902775, + -0.009267589077353477, + -0.006549921818077564, + -0.002877630991861224, + -0.02699778601527214, + -0.011359160766005516, + -0.01995249278843403, + 0.02712162956595421, + -0.010031287558376789, + 0.012590711005032063, + -0.018136126920580864, + 0.0011739289620891213, + 0.017902201041579247, + -0.011194036342203617, + -0.01871406100690365, + -0.004788598045706749, + 0.008524530567228794, + 0.0023254973348230124, + -0.042134158313274384, + 0.013395690359175205, + 0.01314112450927496, + -0.0017716437578201294, + -0.003684330964460969, + 0.020172657445073128, + -0.022924724966287613, + 0.013980505056679249, + 0.010664262808859348, + -0.0049743629060685635, + 0.004255385138094425, + 0.006395117845386267, + -0.012171020731329918, + -0.006598082836717367, + -0.030162664130330086, + -0.0060339090414345264, + -0.013939224183559418, + -0.0021741336677223444, + 0.0005426733987405896, + -0.008806616999208927, + -0.01608583703637123, + -0.016842655837535858, + -0.01870030164718628, + 0.0034830858930945396, + 0.03418068215250969, + 0.049289535731077194, + 0.03685018792748451, + 0.013932343572378159, + 0.019374558702111244, + 0.031318534165620804, + -0.031235970556735992, + 0.004379228223115206, + 0.010093209333717823, + -0.03962977975606918, + -0.0119370948523283, + -0.015136373229324818, + 0.005132606718689203, + 0.03530903160572052, + 0.005579817574471235, + -0.013608976267278194, + -0.000676836702041328, + -0.006539601366966963, + 0.0050947656854987144, + -0.006154311820864677, + -0.0003132627170998603, + -0.0060029481537640095, + -0.0004293656093068421, + -0.01940207928419113, + -0.0006991972331888974, + 0.0035604878794401884, + -0.005218608770519495, + -0.0029051518067717552, + -0.01598951406776905, + -0.01168252807110548, + 0.014214430935680866, + 0.02357146143913269, + -0.011985255405306816, + -0.013285608030855656, + -0.012005896307528019, + -0.015287737362086773, + 0.016539927572011948, + 0.0031992788426578045, + -0.0007026373641565442, + -0.001969448523595929, + -0.012226061895489693, + 0.006391677539795637, + -0.021521171554923058, + -0.012625111266970634, + -0.01590695232152939, + -0.01116651576012373, + -0.01766827516257763, + 0.006814808119088411, + -0.019250715151429176, + -0.0003839994897134602, + -0.004324186593294144, + 0.006202473305165768, + 0.001617699977941811, + -0.03932705149054527, + -0.002693586517125368, + 0.0013278727419674397, + 0.019691046327352524, + 0.044500939548015594, + -0.013581454753875732, + -0.00789843499660492, + -0.013636496849358082, + -0.020392823964357376, + -0.001677041407674551, + 0.007021213416010141, + 0.012109098955988884, + -0.014214430935680866, + 0.019911210983991623, + 0.0009477433632127941, + 0.00394577719271183, + -0.010038168169558048, + -0.007045293692499399, + 0.005366532597690821, + -0.019181912764906883, + -0.008627733215689659, + -0.013567694462835789, + -0.029144398868083954, + 0.0007249978953041136, + -0.03800605982542038, + 0.00563829904422164, + -0.01023081224411726, + 0.023420097306370735, + -0.008593332022428513, + 0.003202719148248434, + 0.012212301604449749, + -0.0068079279735684395, + -0.011042672209441662, + 0.007072814740240574, + -0.001516217365860939, + -0.009281349368393421, + -0.020282739773392677, + -0.008125480264425278, + -0.01971856690943241, + -0.006054549477994442, + -0.020516665652394295, + 0.00672880606725812, + 0.010980751365423203, + -0.011063313111662865, + -0.0033128017093986273, + -0.004444589838385582, + -0.000895282079000026, + 0.0038219343405216932, + -0.006057989317923784, + 0.003588008461520076, + -0.0032164794392883778, + 0.018246211111545563, + -0.010657383129000664, + -0.03797853738069534, + -4.622614142135717e-5, + 0.015851911157369614, + 0.006020148750394583, + 0.02721795253455639, + 0.003835694631561637, + -0.00620591314509511, + 0.023089850321412086, + 0.014709803275763988, + -0.009047423489391804, + 0.016897697001695633, + 0.003182078478857875, + 0.011992136016488075, + 0.011599966324865818, + 0.01816364750266075, + -0.011235317215323448, + 0.0072860997170209885, + 0.01797100342810154, + 0.00037475425051525235, + 0.0059547871351242065, + -0.014489637687802315, + 0.008214922621846199, + 0.017214184626936913, + -0.008517649956047535, + -0.003056515473872423, + 0.016691291704773903, + -0.003433204721659422, + -0.0007679989794269204, + 0.011028911918401718, + -0.0006127651431597769, + -0.021892700344324112, + 0.0036705706734210253, + -0.0017441230593249202, + 0.015246456488966942, + -0.005572937428951263, + -0.01649864763021469, + 0.03572184219956398, + 0.016663771122694016, + 0.009990006685256958, + -0.004485870711505413, + 0.012315504252910614, + -0.010320254601538181, + 0.01982864923775196, + 0.006498320493847132, + 0.012576950713992119, + 0.010189531370997429, + -0.01598951406776905, + -0.009054303169250488, + 0.0072379386983811855, + -0.0031218770891427994, + 0.017695797607302666, + 0.011221556924283504, + 0.033492665737867355, + -0.011510523967444897, + 0.013271847739815712, + -0.011627486906945705, + 0.013574575074017048, + 0.004427389241755009, + 0.014352033846080303, + 0.003921696916222572, + 0.003536407370120287, + 0.008125480264425278, + 0.017282987013459206, + -0.01797100342810154, + -0.013099843636155128, + -0.006439839024096727, + 0.008393807336688042, + -0.015865672379732132, + -0.008524530567228794, + 0.003983618225902319, + -0.015081332065165043, + -0.01080186665058136, + -0.014654762111604214, + -0.052592016756534576, + 4.9504971684655175e-5, + 0.009116224944591522, + 0.020901955664157867, + 0.02585567720234394, + -0.020103856921195984, + 0.010457858443260193, + -0.0013020720798522234, + -0.01091194897890091, + 0.0027142269536852837, + 0.005053484812378883, + 0.002561143133789301, + -0.0021018919069319963, + 0.009776721708476543, + -0.013010401278734207, + -0.006529280915856361, + -0.00866901408880949, + 0.006580882240086794, + 0.01713162288069725, + -0.004117781762033701, + -0.013629616238176823, + 0.0021242524962872267, + -0.01266639307141304, + -0.030245225876569748, + -0.010905069299042225, + -0.021259725093841553 + ], + "472c884d-6522-40ed-afef-993a922a8de6": [ + -0.005787685047835112, + -0.0029103055130690336, + -0.00912420079112053, + -0.01456799078732729, + -0.05083797127008438, + -0.0443112775683403, + 0.0443112775683403, + 0.051774535328149796, + -0.00033497781259939075, + 0.04205766320228577, + -0.004876728169620037, + -0.00204873806796968, + -0.012533886358141899, + 0.0039840638637542725, + 0.008202268742024899, + -0.003292614594101906, + -0.06959855556488037, + 0.041238170117139816, + -0.023926332592964172, + -0.01212413888424635, + 0.0887981578707695, + -0.02749699167907238, + -0.021102001890540123, + 0.02045811153948307, + -0.03119935281574726, + -0.027306750416755676, + 0.013221677392721176, + 0.006716934032738209, + -0.0189654603600502, + -0.017750851809978485, + -0.014019221998751163, + 0.010368078015744686, + 0.050750166177749634, + -0.009768090210855007, + 0.013785080052912235, + -0.027438456192612648, + -0.009994914755225182, + 0.01801426149904728, + -0.02979450486600399, + 0.003954796120524406, + -0.01794109120965004, + 0.03936503827571869, + 0.023399515077471733, + 0.005787685047835112, + -0.013843615539371967, + 0.028506726026535034, + 0.0475892573595047, + -0.0014030196471139789, + 0.00927053950726986, + -0.001230157446116209, + -0.012629006057977676, + 0.029618898406624794, + -0.008377875201404095, + 0.012416815385222435, + 0.012928999960422516, + 0.002132882596924901, + 0.008399825543165207, + 0.08376411348581314, + 0.028784768655896187, + -0.03275053948163986, + -0.00446332199499011, + -1.0953946002700832e-5, + 0.007821789011359215, + 0.0030785948038101196, + -0.01801426149904728, + -0.0350041538476944, + 0.004851119127124548, + 0.011999751441180706, + -0.024189742282032967, + -0.0023286102805286646, + 0.015658212825655937, + -0.0023286102805286646, + -0.02364828996360302, + 0.01115830522030592, + 0.0019975195173174143, + -0.02246294915676117, + 0.027906738221645355, + -0.0037608975544571877, + 0.015731381252408028, + 0.020692253485322, + -0.024365348741412163, + 0.014999688602983952, + 0.0175020769238472, + -0.008077881298959255, + 0.028653064742684364, + 0.008326656185090542, + -0.043696656823158264, + -0.05449642986059189, + -0.034418798983097076, + -0.020414210855960846, + 0.03845774009823799, + 0.028214048594236374, + -0.0027036024257540703, + -0.005066968034952879, + -0.031609099358320236, + -0.002431047149002552, + 0.04352105036377907, + 0.0045803929679095745, + -0.023970235139131546, + -0.015760648995637894, + -0.016404537484049797, + 0.00993637926876545, + -0.036145590245723724, + 0.008787622675299644, + 0.0074486262165009975, + 0.008524213917553425, + 0.018058162182569504, + -0.0020798349287360907, + -0.016872821375727654, + 0.023779993876814842, + 0.037111423909664154, + -0.0022847086656838655, + -0.014472871087491512, + 0.002709090244024992, + 0.011487566865980625, + -0.08768598735332489, + -0.015058224089443684, + -0.027540892362594604, + -0.015365535393357277, + -0.06152067705988884, + 0.054525699466466904, + 0.020180068910121918, + 0.017165496945381165, + -0.028184780851006508, + 0.01757524535059929, + 0.003345662262290716, + -0.008904693648219109, + -0.005264524836093187, + 0.00501940818503499, + 0.01411434169858694, + -0.008480312302708626, + -0.025609225034713745, + -0.012263160198926926, + 0.00748521089553833, + -0.02326781116425991, + 0.022199539467692375, + 0.012021701782941818, + 0.030145715922117233, + -0.0269848071038723, + 0.04855509102344513, + -0.030672535300254822, + -0.03918943181633949, + 0.0012960097519680858, + -0.010016865096986294, + 0.012885098345577717, + 0.016038691624999046, + -0.03822359815239906, + 0.0450429692864418, + -0.0026615301612764597, + 0.018424008041620255, + -0.04802827164530754, + 0.0036456561647355556, + 0.01504359021782875, + -0.0139021510258317, + -0.01690208911895752, + -0.00037499223253689706, + 0.01564357802271843, + 0.01883375644683838, + -0.017077695578336716, + 0.011319277808070183, + -0.0070535121485590935, + -0.03936503827571869, + 0.03471147641539574, + -0.008494946174323559, + 0.019214235246181488, + -0.004884045105427504, + 0.02275562658905983, + 0.02009226568043232, + -0.05838903412222862, + 0.02098493091762066, + 0.030555464327335358, + -0.009548582136631012, + 0.018292304128408432, + -0.006969367619603872, + -0.005495008081197739, + -0.008107149042189121, + 0.010463197715580463, + 0.018131330609321594, + 0.02202393300831318, + -0.04000892490148544, + 0.002381657948717475, + -0.01742890663444996, + -0.03936503827571869, + 0.006863272283226252, + -0.03424319252371788, + 0.001041746698319912, + 0.016067959368228912, + -0.0017203912138938904, + -0.013002169318497181, + 0.032721273601055145, + 0.00926322303712368, + -0.017297202721238136, + 0.033189557492733, + 0.06210602819919586, + -0.02328244410455227, + 0.0010700997663661838, + 0.01608259417116642, + -0.011224157176911831, + 0.016053326427936554, + 0.020648352801799774, + -0.02268245629966259, + -0.06778395920991898, + -0.06872052699327469, + 0.028418922796845436, + -0.05546226352453232, + 0.00542915565893054, + -0.005959632340818644, + -0.0070974137634038925, + 0.006384014151990414, + -0.03260420262813568, + 0.009438828565180302, + -0.02757016010582447, + 0.030818874016404152, + -0.014070440083742142, + -0.018292304128408432, + 0.013265579007565975, + -0.015804549679160118, + 0.02675066515803337, + 0.014238729141652584, + 0.02306293696165085, + -0.04308203235268593, + -0.0001013507935567759, + 0.031316425651311874, + -0.030731070786714554, + -0.04788193479180336, + -0.014685061760246754, + -0.03491634875535965, + 0.02379462867975235, + -0.036350466310977936, + -0.018336204811930656, + 0.03520902618765831, + 0.0011469274759292603, + 0.020502014085650444, + -0.045540519058704376, + -0.013668009079992771, + 0.015950888395309448, + 0.01637526974081993, + 0.011758293025195599, + 0.015102125704288483, + -0.027701864019036293, + 0.05291597545146942, + -0.006120604928582907, + 0.0036877284292131662, + 0.021511748433113098, + 0.025609225034713745, + 0.03032132238149643, + -0.023399515077471733, + 0.06310112774372101, + 0.02521411143243313, + -0.008736404590308666, + 0.01839474029839039, + 0.03351150080561638, + -0.004320641979575157, + -0.017531344667077065, + 0.009321757592260838, + 0.02483363077044487, + 0.01538016926497221, + 0.00993637926876545, + -0.007946176454424858, + -0.0037572390865534544, + -0.02091176249086857, + -0.010068084113299847, + -0.021438580006361008, + -0.009321757592260838, + 0.05394034460186958, + -0.02135077677667141, + 0.015131393447518349, + -0.04559905454516411, + -0.012863148003816605, + 0.00258653168566525, + -0.05364766716957092, + 0.030731070786714554, + -0.01675575040280819, + -0.000486117962282151, + -0.01778011955320835, + -0.024511687457561493, + -0.0035779746249318123, + 0.010616852901875973, + -0.006427915301173925, + 0.010309542529284954, + -0.00527915870770812, + 0.026867736130952835, + 0.01070465613156557, + 0.027775034308433533, + -0.0029688409995287657, + -0.01925813779234886, + 0.008355923928320408, + 0.02209710329771042, + -0.03781384974718094, + -0.007873007096350193, + 0.002057884121313691, + -0.009402244351804256, + 0.033979784697294235, + -0.02054591476917267, + 0.022111736238002777, + 0.0053779371082782745, + -0.002888354705646634, + -0.011875363998115063, + -0.01824840158224106, + 0.004408445209264755, + -0.020662985742092133, + -0.01360215712338686, + 0.02951646037399769, + -0.0124899847432971, + 0.0324578620493412, + 0.005348669830709696, + 0.04720877856016159, + 0.0013115581823512912, + -0.041325971484184265, + 0.025521421805024147, + 0.047706328332424164, + -0.020414210855960846, + -0.008633967489004135, + -0.034945618361234665, + -0.0037407760974019766, + -0.006105971056967974, + 0.006596204824745655, + 0.011458299122750759, + -0.006775469519197941, + -0.004492589738219976, + 0.0013819835148751736, + -0.0027182362973690033, + -0.0326334685087204, + 0.012965585105121136, + 0.04009672999382019, + -0.013689960353076458, + -0.008977863006293774, + 0.02209710329771042, + -0.013397282920777798, + -0.033394429832696915, + -0.008721770718693733, + -0.03725776448845863, + -0.020999563857913017, + -0.03152129799127579, + 0.00392552837729454, + -0.021555650979280472, + -0.037111423909664154, + -0.03907236084342003, + 0.012409498915076256, + -0.002570068696513772, + -0.005520617123693228, + 0.0461258739233017, + -0.029545728117227554, + 0.0034078562166541815, + 0.00826080422848463, + -0.02268245629966259, + -0.003888943698257208, + 0.03471147641539574, + -0.006940099876374006, + -0.0064718169160187244, + 0.000732149463146925, + -0.01222657598555088, + 0.04217473417520523, + 0.003117008600383997, + 0.02430681325495243, + 0.0002734699519351125, + -0.014341166242957115, + -0.026370184496045113, + 0.005846220068633556, + 0.009907111525535583, + -0.011765609495341778, + -0.002063371939584613, + -0.04071135073900223, + -0.0018713027238845825, + 0.012972901575267315, + 0.014443603344261646, + 0.018350839614868164, + 0.007152290549129248, + -0.007909592241048813, + 0.008524213917553425, + -0.015585042536258698, + 0.03351150080561638, + 0.03023351915180683, + -0.013104606419801712, + -0.03948210924863815, + -0.006577912252396345, + 0.06889612972736359, + 0.02149711549282074, + -0.012358280830085278, + 0.0242482777684927, + -0.004668195731937885, + 0.025184843689203262, + 0.002683480968698859, + -0.0225214846432209, + 0.039247967302799225, + 0.009065665304660797, + -0.0026176285464316607, + 0.0018383765127509832, + -0.005608420353382826, + -0.008268121629953384, + -0.0561646893620491, + 0.011436347849667072, + -0.02809697762131691, + -0.00856811460107565, + -0.027453089132905006, + 0.0012292427709326148, + 0.0008231536485254765, + -0.001519175828434527, + 0.035911452025175095, + -0.007990078069269657, + -0.00826080422848463, + -0.018482543528079987, + -0.007938859984278679, + 0.035472434014081955, + 0.016433805227279663, + -0.015877719968557358, + 0.0067901029251515865, + 0.006029143463820219, + 0.010316858999431133, + 0.014560673385858536, + 0.0020999563857913017, + -0.0036218762397766113, + -0.0062559680081903934, + -0.02348731830716133, + 0.042964961379766464, + -0.011597320437431335, + 0.019843490794301033, + 0.011253424920141697, + -0.06860345602035522, + 0.009965647011995316, + 0.037843119353055954, + 0.045481983572244644, + -0.0015017981640994549, + 0.0225214846432209, + -0.03359930217266083, + 0.005608420353382826, + 0.0397455170750618, + 0.029457926750183105, + 0.005798660218715668, + -0.005385254044085741, + -0.016331369057297707, + 0.008546164259314537, + -0.030145715922117233, + -0.015687480568885803, + -0.002088980982080102, + 0.0009255905752070248, + -0.0035615116357803345, + -0.0062706018798053265, + -0.009702238254249096, + -0.0015649065608158708, + 0.021584918722510338, + 0.019170334562659264, + 0.008216902613639832, + 0.014092390425503254, + -0.006442549172788858, + -0.04109182953834534, + -0.033482231199741364, + 0.005052334163337946, + 0.005520617123693228, + 0.02476046234369278, + -0.004148694686591625, + 0.05789148434996605, + -0.013382649049162865, + 0.012965585105121136, + -0.008933961391448975, + 0.009994914755225182, + 0.005125503521412611, + 0.006702300161123276, + 0.028448190540075302, + 0.02083859220147133, + -0.02601897343993187, + -0.018116697669029236, + 0.03289688006043434, + -0.04483809322118759, + 0.0009141578921116889, + -0.05145259201526642, + -0.012153406627476215, + 0.02222880721092224, + -0.00010215108341071755, + 0.0011524151777848601, + 0.010411979630589485, + 0.032048117369413376, + -0.007382773794233799, + -0.008063247427344322, + -0.032809074968099594, + 0.005432814359664917, + 0.014033854939043522, + -0.001938984147273004, + 0.017370371147990227, + -0.0018584980862215161, + -0.030848141759634018, + -0.020809324458241463, + -0.038867488503456116, + 0.008487628772854805, + 0.048525821417570114, + 0.009307123720645905, + -0.023092204704880714, + 0.008846158161759377, + 0.007924226112663746, + -0.0002812441671267152, + 0.04387225955724716, + 0.007368139922618866, + 0.004086500499397516, + -0.008180318400263786, + -0.007631549146026373, + -0.04170645400881767, + 0.026179945096373558, + -0.03854554146528244, + -0.011670489795506, + -0.023911699652671814, + 0.04715024307370186, + -0.02609214186668396, + 0.011311960406601429, + 0.04589173197746277, + 0.023809261620044708, + 0.013075338676571846, + -0.007269361522048712, + 0.01538016926497221, + 0.005868170876055956, + 0.0006333710043691099, + -0.006475475616753101, + 0.0019902025815099478, + -0.012409498915076256, + 0.01445823721587658, + -0.021233705803751945, + 0.03254566714167595, + -0.03283834457397461, + 0.012197308242321014, + 0.03152129799127579, + -0.020414210855960846, + 0.0001318189169978723, + 0.0024822656996548176, + -0.02490680105984211, + 0.011948532424867153, + 0.0217897929251194, + -0.019755687564611435, + -0.016111861914396286, + 0.03831139951944351, + 0.03462367132306099, + 0.015438704751431942, + -0.012885098345577717, + 0.026940904557704926, + -0.012372913770377636, + -0.023092204704880714, + 0.006614496931433678, + -0.01523383054882288, + 0.007536428980529308, + -0.02363365702331066, + -0.004298691172152758, + 0.040506478399038315, + -0.017385005950927734, + 0.015102125704288483, + -0.004675512667745352, + 0.004386494401842356, + 0.03178470581769943, + 0.02736528590321541, + -0.03845774009823799, + 0.013660692609846592, + -0.0011167451739311218, + 0.01949227973818779, + -0.017092328518629074, + 0.0002014439960476011, + 0.005238915793597698, + 0.011077819392085075, + 0.025258012115955353, + -0.03869188204407692, + 0.035765111446380615, + -0.008882742375135422, + -0.04533564671874046, + -0.009709554724395275, + 0.013638741336762905, + -0.007792521268129349, + 0.001131378929130733, + -0.019916661083698273, + -0.05508178472518921, + -0.004649903625249863, + -0.024643391370773315, + 0.03438952937722206, + -0.0026871394366025925, + 0.010148569941520691, + 0.04167718440294266, + 0.022433681413531303, + 0.02720431424677372, + -0.01386556588113308, + -0.01808742992579937, + 0.018643515184521675, + 0.004477955866605043, + 0.021233705803751945, + -0.025331182405352592, + 0.001441433560103178, + 0.006062069442123175, + -0.03913089632987976, + 0.027540892362594604, + -0.015921620652079582, + 0.019228870049118996, + -0.0013874712167307734, + -0.04135524109005928, + -0.03488708287477493, + -0.013338747434318066, + 0.029296953231096268, + -0.010938797146081924, + 0.015819184482097626, + 0.03351150080561638, + 0.00023322687775362283, + -0.025682393461465836, + 0.02897500991821289, + -0.014685061760246754, + 0.001638075802475214, + 0.007602281402796507, + -0.020297139883041382, + -0.020999563857913017, + 0.02111663483083248, + 0.027438456192612648, + -0.0165947787463665, + -0.03152129799127579, + 0.0029560362454503775, + -0.02126297354698181, + -0.0062523093074560165, + -0.017750851809978485, + -0.015687480568885803, + 0.01222657598555088, + 0.0021712963934987783, + 0.00761691527441144, + -0.01442165207117796, + 0.03579438105225563, + 0.01442165207117796, + 0.01770694926381111, + 0.04097475856542587, + -0.011882680468261242, + -0.017077695578336716, + 0.021760525181889534, + -0.06790103018283844, + 0.04352105036377907, + -0.021292241290211678, + 0.009951013140380383, + -0.004496248438954353, + -0.011882680468261242, + -0.0064864507876336575, + -0.015306999906897545, + 0.010668071918189526, + -0.004126743879169226, + 0.0015676504699513316, + 0.03977478668093681, + -0.01735573820769787, + 0.017063060775399208, + 0.00448527280241251, + 0.012768028303980827, + 0.021745890378952026, + -0.011999751441180706, + 0.01681428588926792, + -0.028287218883633614, + -0.0036804114934056997, + -0.018716685473918915, + 0.019155699759721756, + -0.010953431017696857, + 0.004807217512279749, + -0.029018910601735115, + 0.004788924939930439, + 0.028506726026535034, + -0.010155887342989445, + -0.04990140348672867, + -0.0017039281083270907, + 0.033687107264995575, + 0.000564317568205297, + -0.010243689641356468, + -0.027906738221645355, + -0.018877657130360603, + 0.025828732177615166, + 0.00967297051101923, + 0.0021950765512883663, + 0.0475892573595047, + -0.002540800953283906, + -0.020341042429208755, + 0.01941910944879055, + 0.018204500898718834, + 0.005608420353382826, + 0.0015713089378550649, + 0.0035230976063758135, + 0.004587709903717041, + 0.014019221998751163, + -0.012329013086855412, + -0.01764841377735138, + 0.036057788878679276, + 0.015175295062363148, + 0.0038487007841467857, + -0.018848389387130737, + -0.0154972393065691, + -0.04501369968056679, + 0.012153406627476215, + -0.014648476615548134, + -0.017326470464468002, + 0.007821789011359215, + -0.01111440360546112, + 0.006307186093181372, + 0.02950182743370533, + -0.02091176249086857, + -0.010982698760926723, + 0.04156011343002319, + -0.019082531332969666, + -0.019389841705560684, + -0.010009548626840115, + 0.015131393447518349, + -0.03357003629207611, + 0.024292178452014923, + 0.002694456372410059, + -0.0027164071798324585, + -0.01044856384396553, + 0.0009566874941810966, + 0.013675326481461525, + -0.04041867330670357, + -0.04536491259932518, + -0.011853412725031376, + -0.002054225653409958, + -0.024877533316612244, + -0.0011194889666512609, + 0.030438393354415894, + -0.008077881298959255, + -0.0013508866541087627, + 0.02638481929898262, + -0.0018859364790841937, + 0.025375083088874817, + 0.003782848361879587, + -0.01799962669610977, + 0.013609473593533039, + 0.006962050683796406, + 0.0076827676966786385, + -0.004145035985857248, + 0.012321695685386658, + 0.0022645872086286545, + 0.011802194640040398, + -0.015424070879817009, + 0.046155139803886414, + 0.0018402057467028499, + -0.04565759003162384, + -0.053267188370227814, + 0.015760648995637894, + 0.00691083213314414, + 0.002072517992928624, + -0.015131393447518349, + -0.00257555628195405, + 0.03485781326889992, + -0.005099894478917122, + -0.01427531335502863, + 0.0018164257053285837, + -0.015658212825655937, + -0.027145778760313988, + -0.037550441920757294, + -0.01742890663444996, + 0.04870142787694931, + -0.02053128182888031, + -0.007675450760871172, + -0.027175046503543854, + 0.02231661044061184, + 0.002474948763847351, + 0.01845327578485012, + 0.0057291495613753796, + -0.006449866108596325, + -0.020355675369501114, + 0.010580268688499928, + 0.01156805269420147, + 0.017092328518629074, + -0.03105301409959793, + 0.03640900179743767, + 0.013463135808706284, + -0.01816059835255146, + -0.016916722059249878, + -0.024936068803071976, + 0.01742890663444996, + -0.005195014178752899, + 0.03517976030707359, + 0.010060766711831093, + 0.011882680468261242, + -0.003574316157028079, + -0.01223389245569706, + -0.007005952298641205, + -0.008955911733210087, + -0.006351087708026171, + 0.02647262252867222, + 0.05619395524263382, + -0.008246170356869698, + 0.02328244410455227, + -0.006343770772218704, + 0.023779993876814842, + 0.007199850864708424, + 0.021833693608641624, + -0.021906862035393715, + 0.0268970038741827, + 0.00516940513625741, + -0.041472312062978745, + 0.020414210855960846, + -0.024643391370773315, + -0.05335498973727226, + 0.0031609099823981524, + -0.03778458386659622, + 0.0030694485176354647, + -0.014867984689772129, + 0.0357358455657959, + 0.018438642844557762, + -0.009804674424231052, + -0.012592421844601631, + 0.014246046543121338, + -0.0020322748459875584, + -0.010646120645105839, + 0.014707012102007866, + 0.0025133625604212284, + 2.2379490474122576e-5, + 0.021599551662802696, + -0.022360511124134064, + 0.0022151980083435774, + -0.00392552837729454, + 0.01341191679239273, + -0.047179508954286575, + 0.010975382290780544, + 0.03594071790575981, + -0.0073461891151964664, + -0.017663048580288887, + 0.018189866095781326, + 0.014597258530557156, + 0.02133614383637905, + 0.011450981721282005, + -0.03550170361995697, + -0.01559967640787363, + -0.01160463783890009, + 0.012629006057977676, + 0.006493767723441124, + 0.003182860789820552, + -0.017326470464468002, + -0.013726544566452503, + 0.009036397561430931, + -0.035677310079336166, + 0.006460841745138168, + 0.021980032324790955, + 0.03541389852762222, + -0.0020414211321622133, + -0.007280336692929268, + -0.010953431017696857, + 0.0008725429070182145, + -0.02891647443175316, + 0.03681875020265579, + 0.010368078015744686, + 0.009738822467625141, + -0.0053779371082782745, + -0.006669373717159033, + 0.010411979630589485, + 0.018921559676527977, + 0.045628324151039124, + -0.03365783765912056, + -0.010060766711831093, + -0.028257951140403748, + 0.005941340234130621, + 0.0027328701689839363, + 0.0018969118827953935, + -0.011743659153580666, + -0.005930365063250065, + -0.011129037477076054, + -0.0017039281083270907, + 0.010821727104485035, + -0.006526694167405367, + 0.0300871804356575, + 0.018336204811930656, + 0.007459601387381554, + -0.007946176454424858, + -0.015746014192700386, + 0.019170334562659264, + -0.051715999841690063, + 0.032282259315252304, + 0.005798660218715668, + 0.013660692609846592, + 0.009746139869093895, + 0.005904755555093288, + 0.014202144928276539, + 0.01285583060234785, + 0.0029962793923914433, + -0.02966279909014702, + -0.0022151980083435774, + -0.012153406627476215, + -0.016111861914396286, + 0.019536180421710014, + 0.0054254974238574505, + 0.007305946201086044, + -0.02653115801513195, + 0.005765734240412712, + 0.010719290003180504, + 0.006182798650115728, + -0.02217027172446251, + -0.01757524535059929, + -0.025770196691155434, + -0.015350901521742344, + -0.03400905057787895, + 0.016111861914396286, + -0.010163203813135624, + 0.006925466004759073, + 0.01778011955320835, + -0.0032688346691429615, + -0.04530637711286545, + 0.020999563857913017, + -0.003356637666001916, + 0.0012758881784975529, + 0.01293631736189127, + -0.011399763636291027, + 0.011070501990616322, + 0.03351150080561638, + -0.025770196691155434, + -0.025887267664074898, + 0.013214359991252422, + -0.04826241359114647, + -0.024570222944021225, + -0.01993129402399063, + 0.009497364051640034, + -0.016360636800527573, + -0.010463197715580463, + -0.008143733255565166, + -0.012065603397786617, + 0.008099831640720367, + -0.015072857961058617, + -0.05868171155452728, + 0.02000446245074272, + 0.03002864494919777, + -0.008955911733210087, + 0.0523306205868721, + 0.018570346757769585, + 0.01360215712338686, + -0.016711847856640816, + -0.020443478599190712, + 0.03298468142747879, + 0.023399515077471733, + 0.013053388334810734, + -0.005030383355915546, + -0.010690022259950638, + -0.01562894508242607, + 0.008129099383950233, + 0.009255905635654926, + 0.021906862035393715, + 0.004159669857472181, + -0.014370433986186981, + -0.02083859220147133, + -0.0005190441152080894, + 0.027614060789346695, + 0.02601897343993187, + 0.020809324458241463, + 0.015028956346213818, + 0.02919451706111431, + 0.0006823029252700508, + -0.01838010735809803, + 0.01223389245569706, + -0.026940904557704926, + 0.01726793497800827, + 0.006065727677196264, + -0.03166763484477997, + -0.029618898406624794, + -0.017750851809978485, + 0.004474297631531954, + 0.02120443806052208, + -0.023326344788074493, + 0.023838529363274574, + -0.005505983252078295, + -0.023077569901943207, + 0.021965397521853447, + 0.005480374209582806, + -0.020062997937202454, + 0.0348285473883152, + 0.029355488717556, + 0.006277918815612793, + -0.0016774042742326856, + 0.002228002529591322, + 0.029926208779215813, + -0.006592546124011278, + 0.022653188556432724, + 0.0021383704151958227, + 0.01038271188735962, + 0.001841120421886444, + 0.004770632833242416, + -0.017545977607369423, + 0.0058571957051754, + -0.04322837293148041, + 0.008238853886723518, + -0.04492589831352234, + 0.006585229188203812, + 0.012599739246070385, + 0.014985054731369019, + -0.007916908711194992, + -0.005370620172470808, + 0.0024731194134801626, + -0.0024731194134801626, + -0.0028060392942279577, + -0.00545110646635294, + -0.026370184496045113, + 0.0027767717838287354, + 0.0011249766685068607, + -0.005740124732255936, + 0.04150157794356346, + -0.008421776816248894, + -0.0008601956069469452, + 0.01100465003401041, + 0.000732149463146925, + 0.0032432253938168287, + -0.02222880721092224, + -0.0032523716799914837, + 0.011033917777240276, + 0.00542915565893054, + 0.02202393300831318, + -0.031082281842827797, + 0.0048291683197021484, + -0.031462762504816055, + 0.021145902574062347, + -0.017955726012587547, + -0.011963166296482086, + -0.01963861659169197, + 0.00718887522816658, + 0.004265765193849802, + -0.026940904557704926, + 0.005414521787315607, + -0.03125789016485214, + 0.031082281842827797, + 0.005542567931115627, + -0.002601165557280183, + 0.00420722970739007, + -0.004748682025820017, + 0.010616852901875973, + 0.024555588141083717, + -0.005751100368797779, + -0.009490047581493855, + -0.009738822467625141, + -0.03193104639649391, + 0.03157983347773552, + 0.014077756553888321, + -0.006607179995626211, + -0.05575494095683098, + 0.0006137067684903741, + 0.033394429832696915, + -0.013104606419801712, + -0.041179634630680084, + 0.023911699652671814, + 0.0024145841598510742, + -0.01431189849972725, + 0.0014835058245807886, + 0.00856079813092947, + 0.012614372186362743, + 0.022433681413531303, + 0.016711847856640816, + -0.027145778760313988, + 0.014472871087491512, + 0.015409437008202076, + -0.018336204811930656, + 0.008648601360619068, + -0.006629130803048611, + 0.022580020129680634, + -0.039979659020900726, + -0.013982636854052544, + 0.012614372186362743, + 0.024189742282032967, + -0.010697339661419392, + 0.0015950888628140092, + -0.008772988803684711, + 0.0022700747940689325, + -0.008882742375135422, + -0.005370620172470808, + 0.024204377084970474, + 0.010763191618025303, + 0.024350713938474655, + 0.025258012115955353, + -0.00856079813092947, + 0.023882431909441948, + 0.003316394751891494, + 0.0011295496951788664, + -0.0004152352921664715, + 0.0010847336379811168, + 0.004587709903717041, + -0.012694858945906162, + 0.03359930217266083, + 0.0034371239598840475, + 0.010346126742661, + 0.03907236084342003, + -0.0300871804356575, + 0.024072671309113503, + -0.0242482777684927, + -0.011282692663371563, + 0.02468729391694069, + -0.011472932994365692, + -0.010368078015744686, + 0.01963861659169197, + 0.023853164166212082, + -0.006153530906885862, + 0.03526756167411804, + 0.015658212825655937, + 0.020062997937202454, + 0.00022396638814825565, + 0.01100465003401041, + 0.020589817315340042, + -0.0027365286368876696, + -0.022916598245501518, + -0.0036584606859833, + -0.015306999906897545, + 0.004748682025820017, + -0.013360698707401752, + -0.010053450241684914, + 0.026648227125406265, + 0.014699695631861687, + -0.006398648023605347, + 0.0350041538476944, + -0.02764332853257656, + 0.022360511124134064, + -0.021028831601142883, + 0.003148105461150408, + 0.00145881122443825, + 0.0037316300440579653, + -0.02164345420897007, + 0.07539355754852295, + -0.002271904144436121, + 0.005780368112027645, + -0.002399950288236141, + -0.018863024190068245, + -0.005282817408442497, + 0.012511936016380787, + 0.025550689548254013, + 0.006336453836411238, + -0.004788924939930439, + -0.018409375101327896, + 0.00353041454218328, + 0.03304321691393852, + 0.017824020236730576, + 0.012943633832037449, + 0.0005423668189905584, + 0.021014198660850525, + 0.016945989802479744, + -0.021380044519901276, + -0.011611954309046268, + -0.0034865131601691246, + -0.012314379215240479, + 0.020048364996910095, + -0.027292117476463318, + -4.776006244355813e-5, + -0.03023351915180683, + -0.0031938361935317516, + -0.00409747613593936, + -0.058886583894491196, + -0.009841259568929672, + 0.019360573962330818, + 0.0015475288964807987, + 0.016506975516676903, + 0.020560549572110176, + -0.030701803043484688, + 0.0217897929251194, + 0.01160463783890009, + -0.020048364996910095, + 0.00829738937318325, + -0.0025883610360324383, + -0.007302287500351667, + 0.007960810326039791, + -0.005538909696042538, + -0.022872695699334145, + 0.0005286475643515587, + 0.009351025335490704, + 0.014246046543121338, + 0.005648663267493248, + 0.010119302198290825, + -0.01193389855325222, + -0.012994852848351002, + -0.0013453989522531629, + -0.013016803190112114, + -0.02423364482820034, + -0.003331028390675783, + 0.01008271798491478, + -0.011787560768425465, + -0.015848452225327492, + -0.051628198474645615, + -0.02454095520079136, + 0.011370495893061161, + 0.010111985728144646, + 0.01115098875015974, + -0.023238543421030045, + -0.015072857961058617, + 0.01681428588926792, + -0.011429031379520893, + -0.026809200644493103, + -0.0034407824277877808, + -0.004038940649479628, + -0.006647423375397921, + 0.016565511003136635, + 0.004284057300537825, + 0.004232839215546846, + 0.002893842523917556, + 0.027262849733233452, + 0.022126371040940285, + -0.027979908511042595, + -0.011472932994365692, + -0.020253239199519157, + -0.019141066819429398, + 0.0028901840560138226, + 0.03313102200627327, + 0.02313610538840294, + 0.001299668219871819, + -0.016272833570837975, + -0.0008675124845467508, + -0.020633717998862267, + 0.004949897527694702, + -0.026428719982504845, + -0.015321633778512478, + 0.015511873178184032, + 0.01859961450099945, + -0.025448253378272057, + -0.009329074993729591, + -0.029018910601735115, + -0.019550813362002373, + -0.005505983252078295, + -0.0059486571699380875, + -0.0175020769238472, + -0.02320927567780018, + 0.010024182498455048, + 0.021584918722510338, + -0.028565261512994766, + 0.024262910708785057, + 0.004569417331367731, + -0.028579894453287125, + 0.006073044613003731, + -0.007412041537463665, + -0.021102001890540123, + -0.004046257585287094, + -0.01033881027251482, + -0.007027903106063604, + 0.0035340730100870132, + 0.007924226112663746, + 0.002346902620047331, + -0.011238791048526764, + -0.019331306219100952, + 0.016565511003136635, + -0.0010682705324143171, + -0.013470452278852463, + 0.0068047367967665195, + -0.016111861914396286, + 0.007719352375715971, + 0.013653375208377838, + -0.008626650087535381, + 0.002807868644595146, + 0.009358342736959457, + -0.018467910587787628, + 0.0021841011475771666, + 0.004968189634382725, + 0.013946052640676498, + 0.01074855774641037, + 0.025009237229824066, + 0.0065010846592485905, + -0.019214235246181488, + 0.02105809934437275, + -0.0081144655123353, + -0.01859961450099945, + -0.007624232210218906, + -0.015204562805593014, + -0.015848452225327492, + 0.004726731218397617, + 0.012950951233506203, + -0.0009297063224948943, + 0.0023103179410099983, + -0.03512122482061386, + 0.008780306205153465, + 0.014289947226643562, + -0.019609348848462105, + 0.02149711549282074, + -0.00251153321005404, + -0.008977863006293774, + 0.007521795108914375, + 0.008143733255565166, + -0.02906281128525734, + 0.009716872125864029, + -0.01726793497800827, + 0.0033273701556026936, + 0.018116697669029236, + 0.00046142336213961244, + -0.025667760521173477, + -0.0011679636081680655, + -0.019155699759721756, + 0.0015758819645270705, + 0.01101196650415659, + -0.015292366035282612, + -0.04981360211968422, + 0.010543683543801308, + -0.004949897527694702, + -0.0016563681419938803, + 0.005055992864072323, + -0.025828732177615166, + 0.020326407626271248, + 0.007423016708344221, + -0.021438580006361008, + 0.011370495893061161, + -0.010455881245434284, + 0.027292117476463318, + -0.015585042536258698, + -0.01867278292775154, + -0.03822359815239906, + -0.0004518199129961431, + 0.012065603397786617, + 0.040067460387945175, + 0.01003881637006998, + -0.012504618614912033, + -0.023077569901943207, + -0.02238977886736393, + 0.014216778799891472, + 0.01712159626185894, + -0.021980032324790955, + -0.009775406681001186, + 0.029179882258176804, + 0.021072734147310257, + 0.018570346757769585, + -0.02430681325495243, + -0.011911948211491108, + 0.005740124732255936, + 0.00379748223349452, + 0.02217027172446251, + 0.0013728373451158404, + 0.02215563878417015, + -0.018336204811930656, + 0.011655855923891068, + -0.013960686512291431, + -0.00598524184897542, + -0.000685961393173784, + 0.0004998372169211507, + -0.016126494854688644, + -0.01111440360546112, + 0.009841259568929672, + -0.01638990454375744, + 0.0015420411946251988, + 0.02654579095542431, + -0.004346251487731934, + -0.007064487785100937, + 0.0029285978525877, + -0.016053326427936554, + -0.008202268742024899, + -0.006914490833878517, + -0.00010843906056834385, + -0.023970235139131546, + 0.003793823765590787, + 0.001403934322297573, + -0.02505313977599144, + 0.01808742992579937, + 0.000784282514359802, + 0.03386271372437477, + 0.012241209857165813, + -0.006416940130293369, + 0.007470577023923397, + 0.012555837631225586, + -0.015424070879817009, + 0.01578991673886776, + -0.004240156151354313, + -0.004082842264324427, + 0.014472871087491512, + -0.005227940622717142, + -0.004499906674027443, + -0.014253363013267517, + -0.007225459907203913, + -0.008063247427344322, + 0.0025133625604212284, + -0.01319972611963749, + -0.00031211241730488837, + 0.002897500991821289, + 0.01816059835255146, + 0.010411979630589485, + 0.009504681453108788, + -0.028594529256224632, + -0.0014935665531083941, + 0.00489502027630806, + -0.0024347056169062853, + -0.006446207873523235, + 0.01770694926381111, + 0.001817340380512178, + 0.009036397561430931, + -0.012548520229756832, + -0.007690084632486105, + -0.016419172286987305, + -0.00789495836943388, + 0.018321571871638298, + 0.0033877347595989704, + -0.014546039514243603, + 0.02238977886736393, + 0.0012521081371232867, + -0.0002947347529698163, + -0.0019334964454174042, + -0.011699757538735867, + -0.00992906279861927, + 0.0062376754358410835, + -0.02364828996360302, + -0.006281577050685883, + 0.022360511124134064, + -0.008246170356869698, + 0.006669373717159033, + -0.008516896516084671, + 0.018570346757769585, + 0.002897500991821289, + 0.030204251408576965, + 0.028726233169436455, + 0.005388912744820118, + 0.0043169837445020676, + -0.011099769733846188, + 0.01956544816493988, + -0.012043653056025505, + 0.0034041977487504482, + 0.012811929918825626, + 0.0027529916260391474, + -0.011802194640040398, + 0.01049246545881033, + -0.006069386377930641, + -0.010441247373819351, + -0.002994450042024255, + 0.0029871331062167883, + -0.013126556761562824, + 0.0525062270462513, + -0.012050969526171684, + -0.028740867972373962, + -0.00048291683197021484, + -0.024336080998182297, + -0.0042877160012722015, + 0.009841259568929672, + 0.027979908511042595, + 0.007990078069269657, + 0.01523383054882288, + 0.008209586143493652, + -0.014238729141652584, + -0.025887267664074898, + -0.005114527884870768, + 0.014875301159918308, + -0.005085260607302189, + -0.0017322811763733625, + 0.004704780410975218, + 0.006877906154841185, + 0.03362857177853584, + 0.00035418473999015987, + -0.005787685047835112, + 0.02682383358478546, + -0.026106776669621468, + 0.026443354785442352, + -0.04723804444074631, + -0.016199663281440735, + -0.013587523251771927, + 0.010368078015744686, + -0.02578483149409294, + 0.020575182512402534, + -0.014297264628112316, + 0.012665591202676296, + 0.024028770625591278, + 0.007470577023923397, + 0.016038691624999046, + 0.009855893440544605, + 0.0036419976968318224, + 0.004752340726554394, + -0.013631424866616726, + 0.017385005950927734, + -0.005004774313420057, + 0.015672845765948296, + -0.01426799688488245, + 0.0013847274240106344, + 0.00922663789242506, + 0.009138834662735462, + -0.004426737315952778, + -0.013214359991252422, + 0.003618217771872878, + 0.00855348166078329, + -0.005915731191635132, + -0.018438642844557762, + -0.0163167342543602, + -0.019184967502951622, + 0.018102062866091728, + -0.011736341752111912, + 0.010507099330425262, + -0.007514478173106909, + 0.005505983252078295, + 0.00855348166078329, + -0.011553418822586536, + -0.01033881027251482, + -0.01652160845696926, + 0.001081989728845656, + 0.02007763274013996, + -0.015570408664643764, + 0.0020304457284510136, + 0.010258323512971401, + -0.0033438331447541714, + -0.0009466267074458301, + -0.020472746342420578, + 0.015438704751431942, + -0.010060766711831093, + 0.0002448882150929421, + -0.02187759429216385, + -0.0010975382756441832, + 0.014085073955357075, + -0.02786283753812313, + 0.03359930217266083, + -0.006365721579641104, + 0.006907173898071051, + -0.03105301409959793, + -0.028155513107776642, + -0.014407018199563026, + -0.002489582635462284, + -0.013689960353076458, + 0.0009324501734226942, + -0.03201884776353836, + 0.003479196224361658, + -0.024423884227871895, + 0.025828732177615166, + 0.00306761940009892, + -0.0008414459880441427, + -0.005634029395878315, + 0.031316425651311874, + -0.006812053732573986, + -0.012921683490276337, + 0.027101878076791763, + 0.009087616577744484, + 0.026267748326063156, + -0.011648539453744888, + 0.02076542377471924, + 0.029106713831424713, + -0.01386556588113308, + -0.01838010735809803, + -0.0024273886810988188, + -0.009987597353756428, + 0.013287529349327087, + 0.022770259529352188, + -0.018028894439339638, + -0.02045811153948307, + 0.008216902613639832, + -0.032428596168756485, + -0.02808234468102455, + -0.012329013086855412, + -0.00639133108779788, + -0.005732807796448469, + -0.02180442586541176, + 0.003446270013228059, + -0.009102250449359417, + 0.013294846750795841, + 0.0010371736716479063, + 0.015906987711787224, + -0.023077569901943207, + -0.011392447166144848, + -0.0038450423162430525, + 0.012775344774127007, + 0.007408382836729288, + 0.010441247373819351, + -0.008758354932069778, + 0.004415762145072222, + 0.004046257585287094, + -0.0016892942367121577, + 0.01238023117184639, + 0.008348607458174229, + 0.010024182498455048, + 0.030204251408576965, + -0.03553096950054169, + -0.01142171397805214, + -0.006212066393345594, + 0.023238543421030045, + 0.006453524809330702, + 0.0034737084060907364, + -0.012072920799255371, + -0.02809697762131691, + 0.00013787823263555765, + 0.0005944998702034354, + 0.009592483751475811, + 0.010060766711831093, + 0.011385129764676094, + 0.005901097320020199, + -0.013031437061727047, + -0.014553356915712357, + 0.006157189607620239, + 0.014092390425503254, + -0.001012478955090046, + 0.00224080728366971, + 0.016346001997590065, + 0.009014447219669819, + -0.0006521206232719123, + -0.009402244351804256, + -0.0019828856457024813, + 0.002228002529591322, + -0.014253363013267517, + 0.014407018199563026, + -0.012182674370706081, + 0.004679171368479729, + 0.01861424744129181, + 0.01437775045633316, + -0.015731381252408028, + -4.6388140617636964e-5, + -0.02550678886473179, + -0.006387672387063503, + 0.013207043521106243, + -0.00420722970739007, + 0.01160463783890009, + 0.0053962296806275845, + 0.0030657900497317314, + -0.019141066819429398, + -0.012738760560750961, + 0.007280336692929268, + -0.010697339661419392, + -0.0031042038463056087, + -0.0071303402073681355, + -0.008904693648219109, + -0.017399638891220093, + -0.012702175416052341, + 0.08470068126916885, + 0.00665108161047101, + 0.01130464393645525, + 0.005366961937397718, + 0.0031005453784018755, + -0.00746691832318902, + -0.0004543350951280445, + 0.007807155139744282, + 0.0024383640848100185, + -0.0028517702594399452, + -0.018511811271309853, + -0.009921745397150517, + 0.020662985742092133, + 0.007733985781669617, + -0.029838405549526215, + -0.00435722665861249, + 0.013375332579016685, + -0.005465740337967873, + 0.012716809287667274, + 0.014648476615548134, + -0.008999813348054886, + 0.0024347056169062853, + 0.00263957935385406, + 0.0028499409090727568, + -0.0036218762397766113, + 0.007807155139744282, + -0.0006475475383922458, + -0.003907236270606518, + 0.01278997864574194, + 0.029092079028487206, + 0.00251153321005404, + -0.004210888408124447, + -0.015877719968557358, + -0.018277669325470924, + 0.0003855102986562997, + 0.014326532371342182, + 0.007243752479553223, + 0.0008944936562329531, + 0.004909654147922993, + -0.012358280830085278, + -0.0024182426277548075, + -0.00896322913467884, + 0.017897190526127815, + 0.009987597353756428, + -0.014575307257473469, + 0.002127395011484623, + -0.004968189634382725, + 0.0021091026719659567, + -0.0033145654015243053, + -0.0012667420087382197, + 0.0022828795481473207, + -0.023823896422982216, + 0.023692192509770393, + 0.02364828996360302, + 0.02297513373196125, + -0.005096235778182745, + 0.019155699759721756, + 0.018189866095781326, + 0.014758230186998844, + 0.0013536304468289018, + -0.02098493091762066, + -0.012833880260586739, + 0.001814596471376717, + -0.01412165816873312, + -0.002213368657976389, + 0.0006763579440303147, + -0.00015548458031844348, + -0.0035615116357803345, + -0.002540800953283906, + -0.028272584080696106, + -0.019243502989411354, + -0.02031177468597889, + -0.0015502726892009377, + -0.015950888395309448, + -0.0036109008360654116, + 0.014794815331697464, + 0.011765609495341778, + 0.03854554146528244, + 0.03728703036904335, + 0.0024932411033660173, + 0.0060071926563978195, + 0.004456005059182644, + -0.014494821429252625, + -0.01071197260171175, + 0.005008432548493147, + -0.008575432002544403, + 0.013763129711151123, + -0.043989330530166626, + 0.002595677971839905, + -0.027101878076791763, + -0.01193389855325222, + 0.008853474631905556, + 0.015511873178184032, + 0.005195014178752899, + -0.014289947226643562, + 0.002039591781795025, + 0.005198672879487276, + 0.0071120476350188255, + 0.004799900576472282, + -0.0045328326523303986, + 0.018921559676527977, + 0.0008899205713532865, + -0.005820611026138067, + 0.0006292552570812404, + -0.011941215954720974, + 0.004499906674027443, + 0.032955415546894073, + -0.007990078069269657, + 0.0036072423681616783, + 0.01264363992959261, + -0.005524275824427605, + -0.006310844793915749, + -0.0003070820530410856, + 0.0014880788512527943, + -0.0048547773621976376, + -0.007342530880123377, + 0.01799962669610977, + -0.0037718729581683874, + -0.01637526974081993, + -0.014450919814407825, + 0.010031498968601227, + -0.0015676504699513316, + -0.01055831741541624, + -0.024482419714331627, + -0.009914428927004337, + 0.012914366088807583, + -0.009716872125864029, + -0.012292427942156792, + -0.011165622621774673, + -0.013521671295166016, + 0.008370557799935341, + 0.010141253471374512, + 0.014955787919461727, + -0.005096235778182745, + 0.01799962669610977, + 0.0029871331062167883, + -0.010309542529284954, + 0.01085831131786108, + 0.013207043521106243, + -0.01571674644947052, + 0.03433099389076233, + -0.004112110007554293, + 0.016419172286987305, + 0.01742890663444996, + 0.005604761652648449, + -0.0023578780237585306, + -0.0038669928908348083, + -0.021701989695429802, + 0.010390028357505798, + 0.0002974785747937858, + 0.016199663281440735, + -0.025697028264403343, + 0.015204562805593014, + -0.003524926956743002, + -0.0022609287407249212, + 0.015980156138539314, + -0.02266782335937023, + 0.024877533316612244, + -0.03877968341112137, + 0.0056998818181455135, + 0.006098654121160507, + -0.0035560238175094128, + -0.024277545511722565, + 0.008253487758338451, + -0.00819495227187872, + 0.009329074993729591, + 0.0035724868066608906, + 0.010375394485890865, + 0.00529745128005743, + 0.0029066470451653004, + 0.013682642951607704, + 0.012255843728780746, + 0.0342724584043026, + -0.027555527165532112, + 0.0014377750921994448, + -0.012109505012631416, + 0.012994852848351002, + -0.001449665054678917, + -0.01757524535059929, + 0.011538784950971603, + -0.011963166296482086, + -0.015277732163667679, + 0.019814223051071167, + 0.007587647531181574, + -0.021614186465740204, + -0.026589693501591682, + 0.012497302144765854, + -0.013316797092556953, + 0.0010746727930381894, + -0.005568177439272404, + -0.011941215954720974, + 0.029970109462738037, + 0.0031755438540130854, + -0.004488931503146887, + -0.0002014439960476011, + 0.005165746435523033, + 0.03822359815239906, + 0.004419420380145311, + 0.03365783765912056, + 0.0005391656304709613, + 0.0012868635822087526, + 0.0020926394499838352, + 0.010272957384586334, + -0.0011524151777848601, + 0.0010298567358404398, + -0.010499781928956509, + -0.01197048369795084, + -0.01004613284021616, + -0.0005707198870368302, + -0.009321757592260838, + -0.03690655156970024, + -0.01949227973818779, + 0.015438704751431942, + -0.0058571957051754, + 0.003475537756457925, + -0.004949897527694702, + 0.00826080422848463, + 0.017911823466420174, + 0.009387610480189323, + 0.02000446245074272, + -0.004697463475167751, + -0.0029999378602951765, + 0.009994914755225182, + 0.0008519640541635454, + -0.0014981396961957216, + 0.0014889935264363885, + 0.004119426943361759, + 0.016024058684706688, + 0.015263098292052746, + -0.015482605434954166, + 0.015467971563339233, + -0.011619271710515022, + 0.004660878796130419, + 0.012533886358141899, + -0.0005803233361802995, + 0.0217897929251194, + 0.011941215954720974, + 0.0045511252246797085, + 0.010287591256201267, + -0.008772988803684711, + -0.02023860439658165, + 0.009585167281329632, + -0.002524337964132428, + -0.01710696332156658, + -0.009292489849030972, + -0.020999563857913017, + -0.00145881122443825, + 0.00047102681128308177, + -0.01845327578485012, + -2.7867181415786035e-5, + 0.010836360976099968, + -0.0014569819904863834, + 0.012299745343625546, + -0.0004929775604978204, + 0.0014752743300050497, + -0.0018356327200308442, + -0.005827927961945534, + 0.014385067857801914, + 0.01330216322094202, + -0.02082395926117897, + 0.014553356915712357, + 0.013163141906261444, + -0.022887330502271652, + -0.002222514944151044, + -0.003342003794386983, + 0.013243627734482288, + -0.036643143743276596, + 0.008787622675299644, + -0.0077120354399085045, + 0.010309542529284954, + 0.007602281402796507, + -0.01090221293270588, + 0.008772988803684711, + 0.030935943126678467, + 0.004990140441805124, + -0.004642586689442396, + -0.006076703313738108, + -0.017663048580288887, + 0.007953493855893612, + 0.019814223051071167, + -0.0024383640848100185, + -0.011889996938407421, + 0.009519314393401146, + -0.018350839614868164, + -0.008019345812499523, + -0.042496681213378906, + 0.015467971563339233, + 0.00826080422848463, + -0.017209399491548538, + 0.0234287828207016, + 0.0012603397481143475, + -0.001050892868079245, + -0.012585105374455452, + -0.007843740284442902, + 0.007785204332321882, + 0.005740124732255936, + -0.008780306205153465, + -0.0039804051630198956, + 0.027526259422302246, + -0.017809387296438217, + -0.008275438100099564, + -0.007975444197654724, + -0.006640106439590454, + -0.014809449203312397, + -0.013872883282601833, + 0.0031096916645765305, + 0.034418798983097076, + 0.0026926270220428705, + -0.014619208872318268, + 0.015131393447518349, + 0.007536428980529308, + 0.004755998961627483, + -0.004968189634382725, + -0.00927053950726986, + -0.01415824331343174, + 0.006197432521730661, + -0.0005798659985885024, + 0.033774908632040024, + -0.01562894508242607, + 0.009387610480189323, + -0.01233632955700159, + 0.0004911483265459538, + 0.02208246849477291, + -0.007551062852144241, + 0.017253300175070763, + -0.01965325139462948, + 0.016199663281440735, + -0.003186519257724285, + 0.03558950498700142, + -0.016141129657626152, + 0.013536305166780949, + 0.020589817315340042, + -0.03523829206824303, + -0.004071866627782583, + 0.01682891882956028, + 0.00789495836943388, + -0.012533886358141899, + -0.0028316485695540905, + 0.0016883796779438853, + 0.0017130742780864239, + -0.017326470464468002, + -0.012050969526171684, + -0.01003881637006998, + -0.0010902213398367167, + 0.0014213119866326451, + 0.006376697216182947, + 0.006815712433308363, + -0.015980156138539314, + 0.01861424744129181, + 0.013111922889947891, + -0.011619271710515022, + 0.016711847856640816, + 0.014165559783577919, + 0.006230358500033617, + -0.0054108635522425175, + -0.001305155921727419, + 0.011099769733846188, + 0.01090221293270588, + -0.009131518192589283, + -0.004177961964160204, + -0.013331430964171886, + 0.014692378230392933, + -0.0031554223969578743, + -0.015760648995637894, + 0.0062413341365754604, + -0.030643267557024956, + -0.006764493882656097, + 0.0003628735721576959, + -0.03904309123754501, + -0.011253424920141697, + 0.00435722665861249, + -0.017809387296438217, + -0.006585229188203812, + 0.005495008081197739, + -0.022067835554480553, + 0.017809387296438217, + -0.006062069442123175, + -0.008487628772854805, + -0.023765360936522484, + -0.0015777111984789371, + 0.015131393447518349, + 0.008912010118365288, + -0.001036258996464312, + -0.01690208911895752, + -0.020399577915668488, + 0.018102062866091728, + 0.01586308516561985, + 0.010792459361255169, + 0.006124263163655996, + -0.011238791048526764, + -0.0035615116357803345, + -0.0017926457803696394, + 0.004946238826960325, + -0.0008976947865448892, + -0.0278043020516634, + 0.031111549586057663, + -0.020794691517949104, + 0.010521733202040195, + -0.0041999127715826035, + 0.0034682208206504583, + -0.005981583148241043, + 0.011736341752111912, + 0.02298976667225361, + -0.002167637925595045, + 0.008758354932069778, + -0.010163203813135624, + 0.004971848335117102, + -0.004799900576472282, + 0.02736528590321541, + -0.006460841745138168, + 0.0020926394499838352, + 0.015833817422389984, + -0.009563216008245945, + 0.000668583728838712, + 0.018350839614868164, + -0.01696062460541725, + -0.006705958396196365, + 0.008385191671550274, + 0.021102001890540123, + 0.0030639609321951866, + 0.0039657712914049625, + -0.0023194639943540096, + 0.012958267703652382, + -0.005677931010723114, + -0.006120604928582907, + -0.012138772755861282, + 0.018936192616820335, + 0.01570211350917816, + 0.002763967029750347, + 0.005034042056649923, + 0.002425559563562274, + 0.013382649049162865, + -0.017180131748318672, + 0.011333911679685116, + -0.025740928947925568, + -0.009036397561430931, + 0.010294908657670021, + -0.0016600266098976135, + 0.006614496931433678, + 0.011941215954720974, + -0.01830693706870079, + -0.009094933047890663, + -0.005952315405011177, + -0.007924226112663746, + -0.004591368138790131, + -0.006830346304923296, + 0.004459663759917021, + 0.017970358952879906, + -0.009182736277580261, + -0.003232249990105629, + -0.010441247373819351, + 0.006493767723441124, + -0.0006356575759127736, + -0.003579803742468357, + -0.012263160198926926, + -0.0016170396702364087, + -0.0019664226565510035, + -0.03380417823791504, + 0.022345878183841705, + -0.03453586995601654, + 0.022067835554480553, + 0.001120403641834855, + 0.019697152078151703, + -0.011648539453744888, + 0.007291312329471111, + -0.015365535393357277, + 0.011633905582129955, + -0.00017572044453117996, + -0.02328244410455227, + 0.000396485673263669, + -0.008992496877908707, + 0.03529682755470276, + 0.0006004448514431715, + -0.0068669309839606285, + 0.010697339661419392, + 0.014707012102007866, + -0.013770446181297302, + 0.008641283959150314, + -0.004734048154205084, + -0.014955787919461727, + -0.020692253485322, + 0.009694920852780342, + -0.013704594224691391, + -0.007269361522048712, + 0.016185030341148376, + 0.010792459361255169, + 0.010170521214604378, + 0.012321695685386658, + -0.011882680468261242, + 0.02000446245074272, + 0.02111663483083248, + 0.025901902467012405, + 0.016565511003136635, + 0.0017524027498438954, + 0.02054591476917267, + -0.0015383827267214656, + 0.01609722711145878, + 0.023619022220373154, + -0.013609473593533039, + -0.0008281840709969401, + 0.015394803136587143, + -0.0019609350711107254, + -0.00826080422848463, + -0.01994592882692814, + 0.010104668326675892, + -3.5098357329843566e-5, + -0.0019920319318771362, + 0.0062376754358410835, + 0.01675575040280819, + 0.0011450982419773936, + 0.011648539453744888, + -0.0103022251278162, + -0.021892229095101357, + -0.004770632833242416, + -0.0008611102239228785, + 0.019902026280760765, + -0.010221739299595356, + -0.007287653628736734, + 0.01608259417116642, + -0.002665188629180193, + -0.01559967640787363, + -0.03485781326889992, + 0.001232901238836348, + -0.00183471804484725, + -0.00721082603558898, + -0.0027767717838287354, + 0.026370184496045113, + 0.004788924939930439, + -0.0006617240724153817, + -0.01452408917248249, + -0.005004774313420057, + 0.025594592094421387, + 0.018467910587787628, + -0.021672721952199936, + 0.00596694927662611, + 0.016931356862187386, + 0.019214235246181488, + -0.0009297063224948943, + 0.027379920706152916, + -0.000264781090663746, + 0.005143795628100634, + -0.009885161183774471, + 0.0017889873124659061, + 0.007265702821314335, + -0.008582748472690582, + -0.02986767329275608, + 0.008377875201404095, + 0.016287466511130333, + -0.011794877238571644, + -0.006307186093181372, + -0.02454095520079136, + 0.010609536431729794, + 0.027145778760313988, + 0.01934594102203846, + 0.026779932901263237, + -0.012365597300231457, + 0.01624356582760811, + 0.005085260607302189, + -0.006705958396196365, + 0.010060766711831093, + -0.0007001379271969199, + -0.0024401932023465633, + 0.004068208392709494, + -0.010229055769741535, + -0.014436285942792892, + 0.004525515716522932, + 0.0010673559736460447, + 0.001852095709182322, + 0.015775281935930252, + 0.011465615592896938, + -0.004569417331367731, + 0.0035578531678766012, + -0.01852644607424736, + 0.00583890313282609, + -0.006632789503782988, + 0.008546164259314537, + -0.03684801608324051, + 0.0035121222026646137, + 0.014194827526807785, + -0.0035029761493206024, + 0.00044381702900864184, + -0.01735573820769787, + 0.008787622675299644, + -0.00476331589743495, + 0.004397470038384199, + 0.0206044502556324, + -0.0006178225739859045, + 0.02001909725368023, + 0.026940904557704926, + -0.01578991673886776, + 0.01617039553821087, + -0.006479133851826191, + -0.001499054254963994, + -0.01696062460541725, + 0.014765547588467598, + 0.008685185573995113, + -0.004086500499397516, + 9.98216728476109e-6, + -0.01956544816493988, + -0.029779870063066483, + -0.010163203813135624, + -0.005634029395878315, + 0.010441247373819351, + -0.0058571957051754, + 0.006340112537145615, + -0.0035779746249318123, + -0.0036163884215056896, + -0.003073106985539198, + -0.00277860090136528, + 0.01608259417116642, + 0.008099831640720367, + -0.021233705803751945, + 0.02105809934437275, + -0.03313102200627327, + 0.012043653056025505, + 0.009277855977416039, + 0.014553356915712357, + -0.018058162182569504, + 0.03359930217266083, + 0.009475413709878922, + 0.0012612543068826199, + 0.008275438100099564, + -0.005520617123693228, + 0.00011244050256209448, + -0.007829106412827969, + -0.009409560821950436, + 0.010133936069905758, + 0.012841196730732918, + 0.021453212946653366, + -0.018936192616820335, + 0.01212413888424635, + -0.009219321422278881, + 0.00203776266425848, + -0.03105301409959793, + -0.0087071368470788, + -0.004799900576472282, + -0.019141066819429398, + 0.017077695578336716, + 0.0037865068297833204, + -0.004313325043767691, + -0.008429093286395073, + -0.003301760880276561, + 0.00435722665861249, + 0.0189654603600502, + 0.0006301698740571737, + 0.008948595263063908, + -0.00830470584332943, + 0.0002439735981170088, + 0.009665653109550476, + -0.011889996938407421, + -0.008392509073019028, + 0.013053388334810734, + -0.012175356969237328, + 0.017589880153536797, + 0.0053815958090126514, + -0.02118980512022972, + 0.012146089226007462, + -0.011092453263700008, + 0.028140880167484283, + 0.011509517207741737, + -0.012797296047210693, + -0.02912134677171707, + 0.008246170356869698, + 0.006171823479235172, + -0.0021091026719659567, + -0.0015411266358569264, + 0.005008432548493147, + 0.019814223051071167, + -0.024965336546301842, + -0.00841445941478014, + -0.010433929972350597, + -0.0017121596029028296, + -0.015775281935930252, + 0.01096806488931179, + 0.01278266217559576, + 0.01764841377735138, + 0.013770446181297302, + -0.0054254974238574505, + 0.026179945096373558, + 0.00011101141717517748, + 0.002913963980972767, + 0.005414521787315607, + 0.012058286927640438, + 0.033101752400398254, + -1.1775670827773865e-5, + 0.014282630756497383, + 0.014604575000703335, + -0.017238667234778404, + -0.005436472594738007, + 0.005264524836093187, + -0.03157983347773552, + -0.005213306751102209, + -0.029677433893084526, + -0.005502325017005205, + -0.0038816267624497414, + 0.005930365063250065, + -0.015058224089443684, + 0.0029048179276287556, + 0.007152290549129248, + -0.016799651086330414, + -0.014926520176231861, + 0.005780368112027645, + -0.0008012028993107378, + -0.0034480991307646036, + -0.014231412671506405, + -0.012446083128452301, + -0.004163328092545271, + 0.0011167451739311218, + 0.005231598857790232, + -0.019697152078151703, + 0.022784894332289696, + -0.011099769733846188, + 0.010624170303344727, + 0.023399515077471733, + 0.014326532371342182, + -0.04618440940976143, + -0.01341191679239273, + 0.006329136900603771, + -0.014282630756497383, + -0.014238729141652584, + 0.010609536431729794, + 0.004884045105427504, + 0.00041089087608270347, + -0.0007952579180710018, + -0.01003881637006998, + -0.01570211350917816, + 0.0019920319318771362, + 0.015555774793028831, + -0.023765360936522484, + -0.004927946720272303, + 0.03193104639649391, + 0.004774291068315506, + -0.01681428588926792, + 0.01950691267848015, + -0.0074486262165009975, + 0.0025975070893764496, + 0.011655855923891068, + 0.007960810326039791, + -0.0017359396442770958, + 0.02045811153948307, + -0.01757524535059929, + -0.028565261512994766, + -0.008941277861595154, + -0.0045181987807154655, + 0.015467971563339233, + -0.003171885386109352, + -0.018716685473918915, + 0.008809573017060757, + 0.004156011622399092, + 0.025097040459513664, + -0.013104606419801712, + -0.008575432002544403, + 0.022623920813202858, + -0.005758417304605246, + 0.013894833624362946, + -0.01156073622405529, + 0.0039511374197900295, + -0.026721397414803505, + 0.01100465003401041, + 0.005140137393027544, + 0.0032505423296242952, + 0.0061937738209962845, + -0.011538784950971603, + -0.005516958888620138, + -0.0016792335081845522, + 0.0138582494109869, + 0.008655917830765247, + -0.0036621191538870335, + 0.003385905409231782, + 0.012577787972986698, + -0.017531344667077065, + -0.0074047246016561985, + -0.012753394432365894, + -0.035091955214738846, + 0.008619333617389202, + -0.026267748326063156, + -0.027979908511042595, + 0.006164506543427706, + 0.01770694926381111, + 0.0011963166762143373, + 0.004591368138790131, + 0.004452346824109554, + -0.008429093286395073, + 0.0024438516702502966, + -0.012570471502840519, + 0.018292304128408432, + -0.0026725055649876595, + 0.02284342795610428, + 0.017882555723190308, + 0.018731318414211273, + 0.016726482659578323, + -0.018058162182569504, + -0.01504359021782875, + 0.01881912164390087, + 0.010916846804320812, + -0.0005702625494450331, + -0.0028718917164951563, + -0.012285111472010612, + -0.00886079203337431, + -0.004364543594419956, + -0.0011450982419773936, + 0.0031151792500168085, + 0.008099831640720367, + -0.0124899847432971, + -0.020209336653351784, + -0.0045328326523303986, + 0.004964531399309635, + -0.00035921510425396264, + 0.015350901521742344, + -0.0022060517221689224, + -0.0013563743559643626, + 0.012446083128452301, + 0.00010518074850551784, + 0.009738822467625141, + 0.010360760614275932, + 0.00031737147946842015, + -0.008012029342353344, + -0.017370371147990227, + 0.003495659213513136, + 0.014926520176231861, + -0.015409437008202076, + 0.013397282920777798, + 0.004642586689442396, + -0.019184967502951622, + -0.027409188449382782, + -0.010236373171210289, + 0.00257555628195405, + 0.010953431017696857, + -0.0034407824277877808, + -0.03219445422291756, + -0.009943696670234203, + -0.003991380799561739, + -0.00840714294463396, + -0.004218205343931913, + 0.015014322474598885, + -0.0018859364790841937, + 0.0010079059284180403, + -0.017736217007040977, + 0.028521360829472542, + -0.0030950577929615974, + 0.002242636401206255, + -0.018028894439339638, + 0.004562100395560265, + 0.010587585158646107, + 0.0053815958090126514, + -0.004821851383894682, + 0.009182736277580261, + -0.016419172286987305, + -0.014758230186998844, + -0.011721707880496979, + 0.001081989728845656, + 0.005231598857790232, + -0.013097289018332958, + -0.004620635882019997, + -0.0014889935264363885, + -0.0014542381977662444, + 0.0017588050104677677, + -0.015292366035282612, + 0.015160661190748215, + -0.00721082603558898, + 0.018438642844557762, + 0.035677310079336166, + -0.0002540343557484448, + -0.0011963166762143373, + 0.011019283905625343, + -0.011143671348690987, + -0.02053128182888031, + -0.01675575040280819, + -0.0038999191019684076, + -0.01508749183267355, + -0.01160463783890009, + -0.01049246545881033, + 0.029706701636314392, + 0.0013325943145900965, + -0.005271841771900654, + 0.008275438100099564, + -0.014641160145401955, + 0.009387610480189323, + 0.01400458812713623, + -0.0019810565281659365, + 0.011736341752111912, + 0.0018136819126084447, + -0.006896198261529207, + 0.02015080116689205, + -0.009504681453108788, + 0.009109566919505596, + 0.0242482777684927, + 0.016272833570837975, + -0.0163167342543602, + 0.030731070786714554, + -0.004968189634382725, + -0.013616790995001793, + 0.004573076032102108, + -0.00038505299016833305, + -0.015819184482097626, + 0.015687480568885803, + 0.007455943152308464, + 0.019975194707512856, + -0.022960498929023743, + 0.00856079813092947, + 0.005780368112027645, + -0.012460717000067234, + -0.005853537004441023, + 0.015965523198246956, + -0.01808742992579937, + -0.000573006400372833, + -0.017911823466420174, + -0.001267656683921814, + -0.015585042536258698, + 0.015072857961058617, + -0.028126245364546776, + -0.010931480675935745, + 0.02802380919456482, + 0.001476188888773322, + 0.020209336653351784, + 0.015058224089443684, + 0.007653499953448772, + -0.018058162182569504, + 0.0012146090157330036, + 0.009819308295845985, + -0.002601165557280183, + 0.0070974137634038925, + 0.0124899847432971, + 0.04000892490148544, + 0.02800917625427246, + 0.010360760614275932, + -0.010368078015744686, + -0.011297326534986496, + -0.007770570460706949, + 0.010807093232870102, + 0.00405723275616765, + -0.0071157063357532024, + 0.004338934551924467, + -0.004404786508530378, + -0.006351087708026171, + 0.001866729580797255, + -0.002039591781795025, + 0.005202331114560366, + -0.004777949769049883, + 0.02638481929898262, + 0.003245054744184017, + -0.0154972393065691, + 0.011019283905625343, + -0.02054591476917267, + -0.00023185495228972286, + -0.008780306205153465, + 0.0002871891774702817, + -0.011750975623726845, + 0.005509641952812672, + 0.00035898646456189454, + -0.010455881245434284, + -0.007283995393663645, + -0.016346001997590065, + 0.0023487317375838757, + 0.009168102405965328, + 0.013550939038395882, + -0.01778011955320835, + -0.0021456871181726456, + -0.0071303402073681355, + 0.006687666289508343, + -0.0007906848331913352, + -0.01615576259791851, + 0.015160661190748215, + -0.014911886304616928, + 0.010807093232870102, + -0.013485086150467396, + -0.013353381305932999, + -0.02031177468597889, + -0.014355800114572048, + 0.005268183536827564, + 0.012146089226007462, + 0.022770259529352188, + -0.00746691832318902, + 0.014889935031533241, + 0.020209336653351784, + 0.006976684555411339, + -0.026779932901263237, + -0.005802318919450045, + 0.0025828732177615166, + 0.024789730086922646, + -0.029311588034033775, + 0.012702175416052341, + -0.0031645684503018856, + -0.014209461398422718, + -0.0028572578448802233, + -0.008919327519834042, + -0.004064549691975117, + 0.010924164205789566, + 0.0068193706683814526, + -0.0010728435590863228, + -0.014867984689772129, + -0.0163167342543602, + -0.020033730193972588, + 0.015116759575903416, + -0.036291930824518204, + -0.01130464393645525, + 0.0016170396702364087, + -0.005813294090330601, + -0.01141439750790596, + -0.008026663213968277, + -0.0005775794852524996, + 0.016477707773447037, + -0.017809387296438217, + -0.00530110951513052, + 0.011611954309046268, + -0.015775281935930252, + 0.024277545511722565, + 0.00285359937697649, + -0.026721397414803505, + -0.004653561860322952, + 0.0070974137634038925, + -0.003943820483982563, + -0.0003432093362789601, + 0.020428845658898354, + -0.018863024190068245, + 0.011348545551300049, + 0.024292178452014923, + 0.014216778799891472, + -0.01854107901453972, + -0.01115830522030592, + -0.011019283905625343, + 0.018877657130360603, + 0.006380355451256037, + -0.0017816703766584396, + 0.019697152078151703, + 0.012870464473962784, + -0.00908029917627573, + -0.012263160198926926, + -0.02980913780629635, + 0.000506239477545023, + -0.0054254974238574505, + 0.0015777111984789371, + 0.00922663789242506, + -0.01779475249350071, + -0.02193612977862358, + 0.013024120591580868, + 0.0016673434292897582, + 0.004276740830391645, + 0.0011624759063124657, + -0.003406026866286993, + 0.0056413463316857815, + -0.001707586576230824, + 0.007452284451574087, + -0.0068376632407307625, + -0.005187697242945433, + -0.015160661190748215, + 0.009731505997478962, + -0.009014447219669819, + 0.015672845765948296, + 0.014663110487163067, + -0.01181682851165533, + 0.012350963428616524, + -0.007799838203936815, + -0.004591368138790131, + 0.004946238826960325, + 0.017955726012587547, + -0.0070827798917889595, + 0.017311835661530495, + 0.011026600375771523, + 0.025770196691155434, + 0.012204624712467194, + 0.003987722098827362, + 0.002173125743865967, + 0.0015996620059013367, + -0.012650957331061363, + 0.0022847086656838655, + 0.0024383640848100185, + 0.0025225086137652397, + -0.004587709903717041, + -0.0017825850518420339, + 0.0040133316069841385, + 0.014809449203312397, + -0.004108451306819916, + -0.012365597300231457, + -0.0030017669778317213, + -0.004280399065464735, + 0.0033676130697131157, + 0.010580268688499928, + -0.011231474578380585, + -0.015394803136587143, + 0.010821727104485035, + -0.0062376754358410835, + -0.019214235246181488, + 0.0117143914103508, + -0.010419296100735664, + -0.01764841377735138, + 0.012168040499091148, + -0.003704191418364644, + -0.006713275332003832, + -0.008941277861595154, + 0.021819060668349266, + 0.012402181513607502, + 0.009131518192589283, + 0.014319214969873428, + 0.006632789503782988, + -0.014560673385858536, + 0.012072920799255371, + -0.006464499980211258, + 0.015804549679160118, + 0.0043169837445020676, + -0.008319339714944363, + 0.018189866095781326, + 0.0071120476350188255, + -0.010375394485890865, + 0.017209399491548538, + 0.013587523251771927, + -0.0029743285849690437, + -0.0015091150999069214, + -8.3229984738864e-5, + -0.0197849553078413, + -0.012541203759610653, + 0.008326656185090542, + -0.04281862452626228, + -0.012972901575267315, + 0.0068230293691158295, + 0.01160463783890009, + -0.011502200737595558, + -0.006281577050685883, + 0.0217897929251194, + 0.017824020236730576, + -0.019155699759721756, + 0.01289241574704647, + -0.012497302144765854, + -0.008421776816248894, + -5.779224738944322e-5, + 0.010390028357505798, + -0.004602343775331974, + 0.0017176473047584295, + -0.004704780410975218, + 0.0162289310246706, + -0.0030511561781167984, + 0.0005373363965190947, + 0.016785018146038055, + -0.014655794017016888, + 0.0008762013749219477, + -0.0003537274315021932, + -0.000422552227973938, + -0.0059779249131679535, + 0.009387610480189323, + -0.01452408917248249, + 0.008765672333538532, + -0.00785105675458908, + -0.003073106985539198, + 0.015321633778512478, + 0.005063309799879789, + -0.012409498915076256, + -0.005601103417575359, + 0.009131518192589283, + 0.011809511110186577, + 0.009614435024559498, + -0.008136416785418987, + -0.01600942388176918, + -0.002946890192106366, + -0.017077695578336716, + 0.020692253485322, + 0.014172877185046673, + 0.022214174270629883, + 0.02534581534564495, + 0.013792396523058414, + 0.0059449984692037106, + 0.0014505797298625112, + -0.011963166296482086, + -0.02356048673391342, + 0.0010079059284180403, + -0.0028956716414541006, + 0.01816059835255146, + -0.012541203759610653, + -0.003782848361879587, + 0.005140137393027544, + 0.0006699556251987815, + -0.01950691267848015, + -0.02386779710650444, + -0.004679171368479729, + -0.005414521787315607, + 0.011655855923891068, + 0.01263632345944643, + 0.009402244351804256, + -0.0065888878889381886, + 0.002998108509927988, + -0.006204749457538128, + -0.004660878796130419, + 0.005886463448405266, + -0.009358342736959457, + -0.017765484750270844, + 0.008809573017060757, + -0.012438766658306122, + -0.013214359991252422, + -0.005696223583072424, + 0.008531530387699604, + 0.009994914755225182, + 0.010016865096986294, + -0.018189866095781326, + -0.008385191671550274, + 0.0011386958649381995, + 0.005257207900285721, + -0.0016399050364270806, + -0.0048547773621976376, + -0.027218947187066078, + -0.009643702767789364, + 0.012687541544437408, + -0.006958392448723316, + -0.004701122175902128, + 0.016697214916348457, + 0.011180255562067032, + -0.02802380919456482, + -0.008033979684114456, + -0.009233955293893814, + 0.010097351856529713, + 0.024131206795573235, + 0.0175020769238472, + -0.01578991673886776, + 0.020648352801799774, + -0.008370557799935341, + 0.005886463448405266, + -0.011590003967285156, + 0.0037572390865534544, + -0.005465740337967873, + -0.005853537004441023, + 0.021219072863459587, + 0.0032999315299093723, + -0.005487691145390272, + 0.0059779249131679535, + 0.009036397561430931, + -0.00926322303712368, + 0.012277794070541859, + -0.017736217007040977, + 0.0103022251278162, + -0.009614435024559498, + 0.0419405922293663, + -0.004679171368479729, + 0.013316797092556953, + -0.009094933047890663, + -0.029999377205967903, + 0.01167780626565218, + 0.019594715908169746, + -0.007423016708344221, + -0.002246294869109988, + 0.014846033416688442, + -0.0013069851556792855, + -0.000871170952450484, + -0.001307899714447558, + 0.01141439750790596, + 0.0037224837578833103, + 0.012804612517356873, + -0.012724126689136028, + -0.0095266317948699, + 0.0034883422777056694, + -0.02667749486863613, + -0.007291312329471111, + -0.019214235246181488, + 0.031550563871860504, + -0.009811991825699806, + 0.012694858945906162, + -0.013404600322246552, + 0.008121782913804054, + 0.01156805269420147, + -0.01038271188735962, + -0.009182736277580261, + -0.006724250968545675, + 0.011436347849667072, + -0.0025023871567100286, + -0.04410640150308609, + 0.006457183044403791, + 0.003940162248909473, + -0.0037352885119616985, + -0.008421776816248894, + 0.019521545618772507, + -0.019184967502951622, + 0.020209336653351784, + 0.010148569941520691, + -0.013177775777876377, + 0.0039657712914049625, + 0.0001399361208314076, + -0.019623983651399612, + 0.0015484434552490711, + -0.029472559690475464, + -0.007280336692929268, + -0.007313263136893511, + 0.007313263136893511, + 0.0022956840693950653, + -0.0001973282196559012, + -0.014494821429252625, + -0.011590003967285156, + -0.021072734147310257, + 0.007653499953448772, + 0.03424319252371788, + 0.05581347644329071, + 0.03848700597882271, + 0.01615576259791851, + 0.011758293025195599, + 0.02550678886473179, + -0.019828857854008675, + 0.0017085011349990964, + 0.00721082603558898, + -0.04082842171192169, + -0.01690208911895752, + -0.0154972393065691, + -0.0011679636081680655, + 0.03632119670510292, + 0.0011542444117367268, + -0.017311835661530495, + -0.0016399050364270806, + -0.010850994847714901, + 0.004587709903717041, + -0.0029176224488765, + 0.004660878796130419, + -0.004466980695724487, + -0.0019517887849360704, + -0.016477707773447037, + 0.009299807250499725, + 0.006014509592205286, + 0.002961524063721299, + -0.012394865043461323, + -0.010982698760926723, + -0.010572951287031174, + 0.00800471194088459, + 0.01854107901453972, + -0.014465553686022758, + -0.021599551662802696, + -0.001747829606756568, + -0.01415824331343174, + 0.017297202721238136, + 0.012424132786691189, + 0.008026663213968277, + -0.0029542071279138327, + -0.004869411233812571, + -0.001076502026990056, + -0.027087243273854256, + 0.0024493394885212183, + -0.019243502989411354, + -0.00926322303712368, + -0.011750975623726845, + 0.009212004020810127, + -0.02609214186668396, + 0.004470638930797577, + -0.005604761652648449, + 0.00785105675458908, + 0.0022334903478622437, + -0.03438952937722206, + -0.01055831741541624, + -0.00489136204123497, + 0.015409437008202076, + 0.041325971484184265, + -0.021599551662802696, + -0.0037755314260721207, + -0.013550939038395882, + -0.016887454316020012, + 7.50270245930551e-8, + 0.014070440083742142, + 0.006508401595056057, + -0.01941910944879055, + 0.025331182405352592, + -0.007269361522048712, + -0.00979004055261612, + -0.008692502975463867, + -0.01482408307492733, + 0.008085197769105434, + -0.02009226568043232, + -0.0024054378736764193, + -0.012863148003816605, + -0.026004338636994362, + -0.012072920799255371, + -0.031550563871860504, + 0.010287591256201267, + -0.019155699759721756, + 0.025097040459513664, + -0.0065596201457083225, + -0.0010801604948937893, + 0.010214422829449177, + 0.0036932160146534443, + -0.009775406681001186, + -0.0016865504439920187, + -0.0018164257053285837, + -0.005048675928264856, + -0.016741115599870682, + -0.002231660997495055, + -0.023838529363274574, + -0.014663110487163067, + -0.0241604745388031, + 0.006976684555411339, + 0.013104606419801712, + -0.011575370095670223, + -0.007214484736323357, + 0.007240093778818846, + -0.001276802853681147, + 0.0032688346691429615, + -0.0025920195039361715, + 0.011326594278216362, + 0.003490171628072858, + 0.014750913716852665, + -0.017370371147990227, + -0.03579438105225563, + -0.0013847274240106344, + 0.017165496945381165, + 0.010148569941520691, + 0.022740991786122322, + -0.004240156151354313, + -0.008487628772854805, + 0.017253300175070763, + 0.007397407665848732, + -0.010836360976099968, + 0.017004525288939476, + 0.003738946979865432, + 0.013163141906261444, + 0.0016472219722345471, + 0.0050596510991454124, + -0.013733861967921257, + 0.006149872671812773, + 0.013989954255521297, + 0.00041134818457067013, + 0.006453524809330702, + -0.006427915301173925, + 0.0060071926563978195, + 0.011450981721282005, + -0.011348545551300049, + -0.006665715482085943, + 0.016185030341148376, + 0.001629844307899475, + -0.0019664226565510035, + 0.0050742849707603455, + -0.002549947239458561, + -0.017311835661530495, + 0.017063060775399208, + 0.0062998696230351925, + 0.017677681520581245, + -0.006607179995626211, + -0.01757524535059929, + 0.02906281128525734, + 0.023545853793621063, + 0.008992496877908707, + 0.0005259037134237587, + 0.004009672906249762, + -0.014955787919461727, + 0.021701989695429802, + 0.007049853913486004, + 0.006365721579641104, + 0.009094933047890663, + -0.011904630810022354, + -0.008502262644469738, + -0.0014780181227251887, + -0.010521733202040195, + 0.014772864058613777, + 0.024716561660170555, + 0.03076033852994442, + -0.021306876093149185, + 0.009468096308410168, + -0.013880199752748013, + 0.011765609495341778, + -0.0038816267624497414, + 0.017589880153536797, + -0.006680349353700876, + 0.0056559802033007145, + 0.007016927469521761, + 0.01925813779234886, + -0.015424070879817009, + -0.01156073622405529, + -0.006446207873523235, + 0.006164506543427706, + -0.0190532635897398, + -0.00527915870770812, + 0.007573013659566641, + -0.016433805227279663, + -0.0108948964625597, + -0.024994604289531708, + -0.045540519058704376, + 0.004086500499397516, + 0.012314379215240479, + 0.026121409609913826, + 0.02483363077044487, + -0.007305946201086044, + 3.135415317956358e-5, + -0.013389966450631618, + -0.005531592760235071, + 0.0015566750662401319, + 0.008216902613639832, + 0.0017661219462752342, + -0.004938921891152859, + 0.007075462955981493, + -0.01867278292775154, + -0.009212004020810127, + -0.007755936589092016, + 0.014363116584718227, + 0.014655794017016888, + -0.006877906154841185, + -0.009848576039075851, + 0.010294908657670021, + -0.010229055769741535, + -0.026370184496045113, + -0.0008176659466698766, + -0.015146027319133282 + ], + "43408a31-702a-4ea9-9e9a-15c5d24e0040": [ + 0.0010421295883134007, + -0.012483460828661919, + -0.008344401605427265, + -0.02455448918044567, + -0.054352767765522, + -0.004934465512633324, + 0.03685382753610611, + 0.05868331342935562, + 0.019811509177088737, + 0.04728248715400696, + 0.008594807237386703, + 0.01285170391201973, + -0.01782299391925335, + 0.004584633745253086, + -0.006201223470270634, + 0.0013394863344728947, + -0.06115790829062462, + 0.024407191202044487, + -0.017881913110613823, + 0.0029514729976654053, + 0.05924304202198982, + -0.03985869511961937, + -0.004713519010692835, + 0.02126975543797016, + -0.011923730373382568, + -0.01960529386997223, + 0.03552814945578575, + -0.010701160877943039, + -0.0055052428506314754, + -0.009198727086186409, + -0.013286232016980648, + 0.01733691245317459, + 0.03947572410106659, + -0.03208138793706894, + -0.002982773818075657, + -0.0023641244042664766, + -0.034084632992744446, + 0.014678193256258965, + -0.023567594587802887, + -0.001388278673402965, + -0.03184571489691734, + 0.01745475083589554, + 0.027456248179078102, + 0.001165491295978427, + -0.018176507204771042, + 0.024068407714366913, + 0.04442491754889488, + -0.006827238015830517, + 0.008123455569148064, + 0.014611909165978432, + -0.007125515025109053, + 0.03272949904203415, + -0.005652540363371372, + 0.014523530378937721, + -0.0033160343300551176, + 0.001447197631932795, + 0.01224042009562254, + 0.103579580783844, + 0.02616003155708313, + -0.010494944639503956, + 0.0010071464348584414, + 0.008933591656386852, + -0.009677443653345108, + 0.016453128308057785, + -0.018544752150774002, + -0.024053677916526794, + 0.00487922877073288, + 0.0070187244564294815, + -0.017660966143012047, + -0.005118587054312229, + 0.004956559743732214, + 0.0006913774996064603, + -0.05240844190120697, + 0.021151917055249214, + -0.003573804860934615, + -0.020268132910132408, + 0.04642816260457039, + -0.012719136662781239, + 0.013941705226898193, + -0.00519960094243288, + -0.025526652112603188, + 0.0129474475979805, + 0.008778929710388184, + -0.019384346902370453, + 0.041125454008579254, + 0.0093312943354249, + -0.04239221289753914, + -0.04863762483000755, + -0.04209761694073677, + -0.01998826675117016, + 0.029975036159157753, + 0.0238180011510849, + -0.016453128308057785, + -0.010163525119423866, + -0.02146124094724655, + -0.02869354747235775, + 0.03561652824282646, + 0.011518661864101887, + -0.028767196461558342, + -0.0070003122091293335, + -0.01632056012749672, + 0.0036990076769143343, + -0.05173087120056152, + 0.0025500874035060406, + 0.016659343615174294, + -0.022197728976607323, + -0.007747847121208906, + -0.005763013381510973, + -0.04165572300553322, + 0.029105979949235916, + 0.008314942009747028, + -0.026690302416682243, + 0.016011234372854233, + 0.008219199255108833, + 0.01576082967221737, + -0.07518062740564346, + -0.02776557393372059, + -0.02336137928068638, + -0.017970291897654533, + -0.060627639293670654, + 0.06516440212726593, + 0.02400948852300644, + 0.014935963787138462, + -0.025276245549321175, + 0.005821932572871447, + -0.0057151420041918755, + -0.014891774393618107, + 0.016939209774136543, + -0.00031922123162075877, + 0.006495818495750427, + 0.0012317751534283161, + -0.036058422178030014, + -0.010583323426544666, + 0.01847110316157341, + -0.021225566044449806, + 0.01903083361685276, + 0.02138759195804596, + 0.05258519574999809, + -0.03982923552393913, + 0.05338060483336449, + -0.02054799720644951, + -0.01063487771898508, + -0.0022389215882867575, + -0.013514542952179909, + 0.0044631133787333965, + 0.0007033454021438956, + -0.026660842821002007, + 0.050788167864084244, + -0.009088253602385521, + 0.008587442338466644, + -0.03499788045883179, + 0.016173262149095535, + 0.0295331422239542, + -0.008499064482748508, + -0.012424541637301445, + -0.006834602449089289, + -0.0002911426709033549, + 0.02372962236404419, + -0.03355436399579048, + 0.0019314381061121821, + -0.011953189969062805, + -0.037649232894182205, + 0.030225440859794617, + 0.004021220840513706, + -0.0014389121206477284, + 0.01602596417069435, + 0.030343279242515564, + 0.027736114338040352, + -0.06640169769525528, + 0.022153539583086967, + 0.03420247137546539, + -0.025379354134202003, + 0.008602172136306763, + -0.005453689023852348, + -0.008454875089228153, + -0.020032456144690514, + 0.019148671999573708, + 0.005512607749551535, + 0.019929347559809685, + -0.03420247137546539, + 0.0021873675286769867, + -0.00965534895658493, + -0.01303582638502121, + 0.003592217108234763, + -0.03582274541258812, + 0.015613531693816185, + 0.028472600504755974, + -0.021034078672528267, + -0.015156909823417664, + 0.035204093903303146, + 0.0048718638718128204, + -0.0007410903926938772, + 0.03944626450538635, + 0.04698789492249489, + -0.0034357134718447924, + -0.008697915822267532, + 0.016762452200055122, + 0.0034136190079152584, + 0.028546249493956566, + 0.016187991946935654, + -0.02053326740860939, + -0.05561952665448189, + -0.06263088434934616, + 0.016732992604374886, + -0.04631032422184944, + 0.0031024529598653316, + -0.011098864488303661, + -0.01341143436729908, + 0.009530146606266499, + -0.032670579850673676, + 0.015407315455377102, + -0.029886657372117043, + 0.02109299786388874, + -0.01168068964034319, + -0.020768944174051285, + -0.0010706684552133083, + -0.012461366131901741, + 0.022094620391726494, + 0.016895020380616188, + 0.013249407522380352, + -0.01261602807790041, + 0.017410561442375183, + 0.041861940175294876, + -0.034644365310668945, + -0.03797328844666481, + -0.0074827116914093494, + -0.011886905878782272, + 0.04601572826504707, + -0.024819623678922653, + -0.013293596915900707, + 0.04810735583305359, + 0.0011875858763232827, + 0.019546374678611755, + -0.04268680885434151, + -0.018397454172372818, + 0.0023144115693867207, + -0.006632068660110235, + 0.00783622544258833, + 0.018426913768053055, + -0.04389464482665062, + 0.036618150770664215, + 0.008874672465026379, + 8.745787636144087e-5, + 0.02710273489356041, + 0.022109350189566612, + 0.0373251773416996, + -0.011805891990661621, + 0.058477096259593964, + 0.05158357322216034, + -0.016379479318857193, + -0.0037413558457046747, + 0.03856247663497925, + -0.0013763107126578689, + -0.010259268805384636, + -0.011327175423502922, + 0.016570964828133583, + 0.01373548898845911, + -0.005763013381510973, + -0.024583948776125908, + 0.002115559997037053, + -0.026469355449080467, + -0.006867744494229555, + -0.004389464855194092, + -0.020783673971891403, + 0.04033004865050316, + -0.02428935281932354, + 0.02109299786388874, + -0.0406835600733757, + -0.01686556078493595, + 0.004978654440492392, + -0.04910897836089134, + 0.0016847148071974516, + -0.019855698570609093, + 0.00232177646830678, + -0.014228935353457928, + -0.014575084671378136, + 0.010097241960465908, + 0.010988391004502773, + -0.017101235687732697, + 0.001383675611577928, + -0.014552989974617958, + 0.016423668712377548, + 0.021048808470368385, + 0.04094869643449783, + -0.00110841344576329, + -0.011268256232142448, + 0.011054675094783306, + 0.021431781351566315, + -0.02614530175924301, + -0.01551042404025793, + 0.007070278748869896, + -0.01939907670021057, + 0.044041942805051804, + 0.012836975045502186, + 0.021225566044449806, + -0.0005132396472617984, + -0.020047185942530632, + -0.011386094614863396, + -0.016821371391415596, + 0.01349981315433979, + -0.0446016751229763, + -0.003951254766434431, + 0.014619274064898491, + 0.006068655755370855, + 0.00019781589799094945, + 0.007438522297888994, + 0.014464612118899822, + -0.02804543823003769, + -0.029297467321157455, + 0.022580701857805252, + 0.0459568127989769, + 0.004573586396872997, + -0.012962177395820618, + -0.01661515422165394, + -0.019752589985728264, + 0.0197820495814085, + 0.022271377965807915, + 0.025394083932042122, + 0.0008934512152336538, + -0.007990887388586998, + 0.01374285388737917, + -0.010244539007544518, + -0.04504356533288956, + 0.012829610146582127, + 0.027618275955319405, + -0.013470353558659554, + 0.01181325688958168, + 0.01661515422165394, + -0.01632056012749672, + -0.04106653481721878, + 0.0004966686828993261, + -0.04754762351512909, + -0.022904757410287857, + -0.028531519696116447, + 0.004625140689313412, + -0.01640893891453743, + -0.03517463430762291, + -0.0362057201564312, + -0.0019259144319221377, + 0.002319935243576765, + -0.008241293951869011, + 0.04395356401801109, + -0.050788167864084244, + -0.009552241303026676, + 0.0035369805991649628, + -0.002603482687845826, + -0.0010844776406884193, + 0.023228811100125313, + -0.003691642777994275, + -0.004783485550433397, + 0.0007963269599713385, + -0.03414355218410492, + 0.02542354352772236, + -0.009699538350105286, + 0.02287529781460762, + -0.00040046501089818776, + -0.025335164740681648, + -0.02035650983452797, + 0.006749906577169895, + 0.008322306908667088, + 5.9149140724912286e-5, + -0.011467108502984047, + -0.028251655399799347, + 0.0033767945133149624, + 0.005394769832491875, + 0.03426139056682587, + 0.02870827727019787, + 0.010649607516825199, + 0.00466564716771245, + 0.021711647510528564, + -0.013278867118060589, + 0.04106653481721878, + 0.007040819153189659, + -0.004661965183913708, + -0.01477393601089716, + -0.003888653125613928, + 0.03632355481386185, + 0.034379228949546814, + -0.02371489256620407, + 0.019752589985728264, + -0.0045441268011927605, + 0.020223943516612053, + -0.00839595589786768, + -0.02532043494284153, + 0.05022843927145004, + 0.0129474475979805, + -0.0016598583897575736, + 0.010288728401064873, + -0.011054675094783306, + -0.025939084589481354, + -0.05102384462952614, + -0.014317314140498638, + -0.03991761431097984, + 0.020282862707972527, + -0.03847409784793854, + 0.013654476031661034, + 0.018235426396131516, + 0.020857321098446846, + 0.02439246140420437, + 0.006271190010011196, + -0.001208759844303131, + -0.005188553594052792, + 0.010472849942743778, + 0.020282862707972527, + 0.013050556182861328, + -0.019207589328289032, + -0.009073523804545403, + -0.005218012724071741, + -0.005685682408511639, + 0.006436899304389954, + 0.028546249493956566, + -0.020680565387010574, + 0.02364124357700348, + -0.009581700898706913, + 0.05992061272263527, + -0.022109350189566612, + 0.008756835013628006, + 0.020886780694127083, + -0.03561652824282646, + -0.019192861393094063, + 0.03255274146795273, + 0.0551481731235981, + -0.010892648249864578, + 0.018780427053570747, + -0.0470762699842453, + 0.009927849285304546, + 0.025806516408920288, + 0.023140432313084602, + 0.0014886250719428062, + -0.013013731688261032, + -0.025482462719082832, + 0.005118587054312229, + -0.014435152523219585, + -0.017484210431575775, + 0.0003677833592519164, + -0.0011710148537531495, + 0.000495287764351815, + -0.0004467256076168269, + -0.005166458897292614, + -0.006145987194031477, + 0.02316989190876484, + 0.03381950035691261, + -0.008116090670228004, + -0.004105917178094387, + -0.01604069396853447, + -0.045073024928569794, + -0.025158407166600227, + -0.001083557028323412, + 0.005221695173531771, + 0.03546923026442528, + 0.004422606434673071, + 0.05382249504327774, + -0.013315691612660885, + 0.010237174108624458, + -0.0195021852850914, + 0.0022646987345069647, + -0.018588941544294357, + 0.01149656716734171, + 0.016644613817334175, + 0.018235426396131516, + -0.022433405742049217, + 0.004275308921933174, + 0.04751816391944885, + -0.03488004207611084, + 0.011533391661942005, + -0.033790040761232376, + -0.03664761036634445, + 0.00792460422962904, + 0.004919735714793205, + -0.009471227414906025, + -0.004507302772253752, + 0.03870977461338043, + -0.006558419670909643, + 0.0034946324303746223, + -0.029945576563477516, + -0.009375483728945255, + 0.01583447866141796, + 0.00037929098471067846, + 0.02098988927900791, + -0.014486705884337425, + -0.03152165934443474, + -0.026395706459879875, + -0.03066733293235302, + 0.025143679231405258, + 0.03991761431097984, + -0.0020916240755468607, + -0.02023867331445217, + 0.009832106530666351, + 0.006827238015830517, + -0.0073280492797493935, + 0.009603794664144516, + -0.0004929862334392965, + -0.007747847121208906, + -0.003489108756184578, + -0.017115965485572815, + -0.048195730894804, + -0.005534702446311712, + -0.01374285388737917, + 0.0017132536740973592, + -0.021255025640130043, + 0.0523495227098465, + -0.016718262806534767, + 0.015348396264016628, + 0.02820746600627899, + 0.010060417465865612, + 0.0007875811425037682, + -0.014022719115018845, + 0.01951691508293152, + 0.0012796467635780573, + -0.007184434216469526, + 0.010023592971265316, + 0.0046361880376935005, + -0.015016976743936539, + 0.016821371391415596, + -0.0009758457308635116, + 0.013249407522380352, + -0.04218599572777748, + 0.024333542212843895, + 0.01611434295773506, + -0.02586543560028076, + 0.004017538391053677, + -0.009508051909506321, + -0.03499788045883179, + 0.01124616153538227, + 0.021417051553726196, + 0.000588269263971597, + -0.015127450227737427, + 0.0384446382522583, + 0.01486967969685793, + -0.004017538391053677, + -0.025644490495324135, + 0.023744352161884308, + -0.02748570777475834, + -0.00852852314710617, + 0.006639433559030294, + -0.020091375336050987, + 0.011923730373382568, + -0.030637873336672783, + -0.008285482414066792, + 0.015628261491656303, + -0.021534889936447144, + 0.02869354747235775, + -0.014118462800979614, + -0.007107102777808905, + 0.01959056407213211, + 0.03278841823339462, + -0.019384346902370453, + 0.022006241604685783, + 0.012255149893462658, + 0.02194732241332531, + -0.023405568674206734, + -0.0026937024667859077, + -0.0046546002849936485, + 0.009463862515985966, + 0.0183827243745327, + -0.04436599835753441, + 0.029857197776436806, + -0.012122581712901592, + -0.05223168432712555, + -0.012328797951340675, + 0.017985021695494652, + -0.016732992604374886, + 0.005648857913911343, + -0.015642991289496422, + -0.0434822142124176, + -0.004220072645694017, + -0.02764773555099964, + 0.03187517449259758, + 0.013278867118060589, + 0.02446611039340496, + 0.022241918370127678, + 0.02512894943356514, + 0.027500437572598457, + -0.009066158905625343, + -0.033701661974191666, + 0.021800026297569275, + 0.013838597573339939, + 0.022551242262125015, + -0.012299339286983013, + -0.00249485089443624, + 0.024421920999884605, + -0.04295194149017334, + 0.021785296499729156, + -0.021048808470368385, + 0.0038113221526145935, + 0.013043191283941269, + -0.04183248057961464, + -0.05164249241352081, + -0.020017726346850395, + 0.006510548293590546, + -0.007954063825309277, + 0.02897341176867485, + 0.04395356401801109, + -0.005416864529252052, + -0.014228935353457928, + 0.012188865803182125, + -0.012122581712901592, + 0.008182374760508537, + -0.01317575853317976, + -0.0002869999152608216, + -0.015031706541776657, + 0.02652827464044094, + 0.04716464877128601, + -0.01611434295773506, + -0.031639497727155685, + 0.011452378705143929, + -0.03797328844666481, + -0.010966296307742596, + -0.01078217476606369, + -0.026042193174362183, + -0.0055420673452317715, + 0.0034835850819945335, + 0.02437773160636425, + -0.009301835671067238, + 0.038591936230659485, + 0.015245288610458374, + -0.002437773160636425, + 0.03122706338763237, + 0.0001512100570835173, + -0.03691274672746658, + 0.022079890593886375, + -0.05971439555287361, + 0.05093546584248543, + -0.03190463408827782, + 0.0348505824804306, + 0.008823118172585964, + -0.0014674511039629579, + -0.01932542771100998, + -0.00862426683306694, + 0.012041567824780941, + 0.006606291513890028, + 0.007302272133529186, + 0.02194732241332531, + -0.01574609987437725, + 0.03794382885098457, + 0.003069311147555709, + 0.005704094655811787, + 0.036235179752111435, + -0.01847110316157341, + 0.0334070660173893, + -0.030313819646835327, + 0.0035719636362046003, + -0.0020547998137772083, + 0.01087791845202446, + -0.010259268805384636, + -0.017322182655334473, + -0.0331713892519474, + 0.019075023010373116, + 0.03358382359147072, + -0.015628261491656303, + -0.04357059299945831, + 0.0027213208377361298, + 0.043275997042655945, + 0.0015097990399226546, + -0.008359131403267384, + -0.04639870300889015, + -0.02699962630867958, + 0.023110972717404366, + 0.029194358736276627, + -0.006749906577169895, + 0.0348505824804306, + 0.0025408812798559666, + -0.024333542212843895, + 0.007843590341508389, + 0.022197728976607323, + 0.0010301617439836264, + 0.0012842498254030943, + -0.006746224127709866, + 0.008749470114707947, + 0.03084409050643444, + -0.006389027927070856, + -0.017219074070453644, + 0.012159406207501888, + 0.00215790793299675, + 0.005155411548912525, + -0.013728124089539051, + -0.005615715868771076, + -0.04793059825897217, + 0.011312445625662804, + -0.007504806388169527, + -0.027706654742360115, + -0.0019314381061121821, + -0.02166745811700821, + -0.0014729746617376804, + 0.039328426122665405, + -0.014943328686058521, + -0.00013383355690166354, + 0.029209088534116745, + -0.032965175807476044, + 0.004857134073972702, + 0.0037266260478645563, + 0.004905005916953087, + -0.004731931257992983, + 0.004367370158433914, + -0.013124204240739346, + -0.0013385657221078873, + -0.013521907851099968, + -0.007541630417108536, + 0.0064037577249109745, + -0.03405517712235451, + -0.03741355612874031, + -0.002062164479866624, + -0.0009979403112083673, + -0.011187243275344372, + -0.010590688325464725, + 0.0260569229722023, + -0.010244539007544518, + 0.015392585657536983, + 0.016909750178456306, + -0.0028317938558757305, + 0.034173011779785156, + 0.0076521034352481365, + -0.009161902591586113, + 0.020518537610769272, + 0.015687180683016777, + 0.0037450382951647043, + -0.0005896501825191081, + 0.0011452378239482641, + 0.001499672420322895, + 0.017557859420776367, + -0.014147922396659851, + 0.04245113208889961, + 0.006492136046290398, + -0.06263088434934616, + -0.05034627392888069, + 0.021240295842289925, + 0.030520036816596985, + 0.004348957911133766, + -0.01261602807790041, + -0.003991761244833469, + 0.047783300280570984, + 0.0049086883664131165, + -0.027250032871961594, + 0.010907378047704697, + -0.009684808552265167, + -0.018912995234131813, + -0.032847337424755096, + -0.005140681751072407, + 0.04038896784186363, + -0.04142004996538162, + -0.012041567824780941, + -0.04471951350569725, + 0.03075571171939373, + 0.0033841594122350216, + 0.025349894538521767, + 0.0006209508865140378, + -0.017115965485572815, + -0.00975845754146576, + 0.008093995973467827, + 0.021151917055249214, + 0.0322876051068306, + -0.021785296499729156, + 0.059036824852228165, + 0.01960529386997223, + -0.015451504848897457, + -0.018721507862210274, + -0.009810011833906174, + 0.020975159481167793, + 0.015819748863577843, + 0.017042316496372223, + -0.011282986029982567, + 0.0133672459051013, + 0.013809137977659702, + -0.003721102373674512, + 0.00169944460503757, + 0.0018136000726372004, + -0.014597179368138313, + 0.026572464033961296, + 0.04601572826504707, + -0.011658594943583012, + 0.012984272092580795, + 0.0070371367037296295, + 0.03977031633257866, + 0.008845212869346142, + 0.020577456802129745, + -0.03243490308523178, + 0.043099239468574524, + 0.016482587903738022, + -0.03711896389722824, + 0.02277218922972679, + -0.018147047609090805, + -0.070172518491745, + 0.0034136190079152584, + -0.02764773555099964, + -0.005000749137252569, + -0.012350892648100853, + 0.031727876514196396, + 0.04197977855801582, + -0.026587193831801414, + -0.024097865447402, + 0.020209213718771935, + -0.003380476962774992, + -0.017778804525732994, + 0.0036898015532642603, + 0.010384472087025642, + 0.01191636547446251, + 0.03791436925530434, + -0.013256772421300411, + 0.0007917238981463015, + 0.017469480633735657, + 0.010325552895665169, + -0.048726003617048264, + 0.009073523804545403, + 0.03376058116555214, + 0.0011148577323183417, + -0.006897204089909792, + 0.017219074070453644, + -0.0007051866268739104, + 0.028899764642119408, + -0.0010982868261635303, + -0.027235303074121475, + -0.010531769134104252, + -0.003128230106085539, + 0.024687055498361588, + -0.00025316752726212144, + -0.019914617761969566, + -0.017322182655334473, + -0.007895144633948803, + 0.008506429381668568, + -0.017410561442375183, + -0.0006692828610539436, + 0.03243490308523178, + 0.01913394220173359, + 0.02567395009100437, + -0.009640619158744812, + -0.019251778721809387, + 0.00612021004781127, + -0.012277244590222836, + 0.006101797800511122, + 0.019561104476451874, + 0.010966296307742596, + 0.004923418164253235, + -0.012284609489142895, + 0.019855698570609093, + 0.02710273489356041, + 0.04840194806456566, + -0.036441393196582794, + -0.004319498315453529, + -0.02786868065595627, + -0.002410154789686203, + -0.001944326562806964, + -0.009876294992864132, + -0.01021507941186428, + -0.017602046951651573, + -0.008742105215787888, + -0.004223755095154047, + -0.0015171639388427138, + 0.002130289562046528, + 0.036353014409542084, + 0.017557859420776367, + 0.01632056012749672, + -0.0181028600782156, + -0.012291974388062954, + -0.004227437544614077, + -0.040271129459142685, + 0.03331868723034859, + 0.006396392825990915, + 0.008241293951869011, + -0.0104507552459836, + 0.011629135347902775, + 0.012417176738381386, + 0.020930970087647438, + 0.007622644305229187, + -0.02661665342748165, + 0.003632723819464445, + 0.0028575710020959377, + -0.01911921240389347, + 0.011695419438183308, + 0.0026126888114959, + 0.0017592841759324074, + -0.012645487673580647, + 0.00942703802138567, + 0.005089127458631992, + 0.0015889714704826474, + -0.02568867988884449, + -0.019723132252693176, + -0.032405443489551544, + -0.005704094655811787, + -0.021962052211165428, + 0.015967044979333878, + -0.0060207839123904705, + 0.004205342847853899, + 0.02205043099820614, + -0.005519972648471594, + -0.04489626735448837, + 0.010384472087025642, + -0.005814567673951387, + -0.016806641593575478, + 0.0005072556668892503, + 0.0028704595752060413, + 0.02906179055571556, + 0.00046582825598306954, + -0.009161902591586113, + -0.014111097902059555, + 0.007085008546710014, + -0.02708800509572029, + -0.027117464691400528, + -0.020135564729571342, + 0.016173262149095535, + 0.00295331422239542, + 0.0018080765148624778, + -0.03075571171939373, + -0.027780303731560707, + 0.010929472744464874, + -0.019104482606053352, + -0.05429384857416153, + 0.0068640620447695255, + 0.02680813893675804, + -0.0008184215985238552, + 0.06280764192342758, + 0.00941967312246561, + 0.019354887306690216, + -0.008690550923347473, + -0.018898265436291695, + 0.039711397141218185, + 0.012807515449821949, + 0.017985021695494652, + 0.0024451380595564842, + -0.007184434216469526, + -0.01205629762262106, + -0.010303458198904991, + 0.011422919109463692, + 0.02483435347676277, + 0.003496473655104637, + -0.026601923629641533, + -0.03187517449259758, + 0.0010338440770283341, + 0.029871927574276924, + 0.0030195980798453093, + 0.022006241604685783, + 0.005011796485632658, + 0.01677718199789524, + 0.001855948125012219, + -0.03617626056075096, + 0.032582201063632965, + -0.029415305703878403, + 0.0015070372028276324, + -0.014501435682177544, + -0.04041842743754387, + -0.03426139056682587, + -0.03349544480443001, + -0.021299215033650398, + 0.012520285323262215, + -0.03965247794985771, + 0.018323805183172226, + -0.01791137270629406, + -0.02654300443828106, + 0.026852328330278397, + 0.020032456144690514, + -0.009161902591586113, + 0.022934217005968094, + 0.02316989190876484, + -0.002378854202106595, + 0.017101235687732697, + 0.003478061640635133, + 0.028575709089636803, + 0.0031816253904253244, + 0.01951691508293152, + 0.003304986981675029, + -0.009471227414906025, + 0.0004925259272567928, + 0.0053248037584125996, + 0.0016552553279325366, + -9.539812890579924e-5, + -0.03426139056682587, + 0.016762452200055122, + -0.032110847532749176, + 0.010715890675783157, + -0.007077643647789955, + 0.007548995316028595, + -0.01744002103805542, + -0.0033749532885849476, + 0.017484210431575775, + -0.004750343505293131, + 0.004054362885653973, + 0.00443365378305316, + -0.007548995316028595, + -0.0033639059402048588, + 0.01735164225101471, + -0.0017611254006624222, + 0.03393733873963356, + 0.009618524461984634, + -0.005531019996851683, + 0.0067278118804097176, + 0.0014297061134129763, + -0.0031705780420452356, + -0.024421920999884605, + 0.005855074618011713, + 0.00368059566244483, + -0.014994882978498936, + 0.03234652429819107, + -0.03190463408827782, + -0.003977031912654638, + -0.0339667983353138, + 0.008381226100027561, + -0.021313944831490517, + -0.04725302755832672, + -0.00476139085367322, + 0.01752839982509613, + -0.0019848335068672895, + -0.008020346984267235, + -0.022359756752848625, + -0.01939907670021057, + 0.03853301703929901, + -0.00578879052773118, + 0.0018835663795471191, + -0.018500562757253647, + -0.01200474426150322, + 0.03405517712235451, + 0.01847110316157341, + 0.014928598888218403, + -0.013330421410501003, + -0.0034596493933349848, + -0.02101934887468815, + 0.04015329107642174, + 0.006017101928591728, + -0.022757459431886673, + -0.053410064429044724, + 0.0038628762122243643, + 0.03579328581690788, + -0.016202721744775772, + -0.027544626966118813, + 0.005969230085611343, + 0.010598053224384785, + -0.01621745154261589, + 0.009706903249025345, + 0.00680146086961031, + -0.0018890900537371635, + 0.01931069791316986, + 0.0037413558457046747, + -0.031285982578992844, + 0.004853451624512672, + 0.011172513477504253, + -0.014273124746978283, + 0.0017813787562772632, + -0.02831057459115982, + 0.010104606859385967, + -0.0643395334482193, + -0.018220696598291397, + 0.000662378326524049, + 0.04006491228938103, + -0.015436775051057339, + -0.0056783175095915794, + -0.00531743885949254, + -0.004072775132954121, + 0.005081762559711933, + 0.0014784983359277248, + 0.01632056012749672, + -0.006164398975670338, + 0.026189491152763367, + 0.024348272010684013, + -0.01688029058277607, + 0.01632056012749672, + -0.010030957870185375, + 0.006414805073291063, + -0.0019130258588120341, + -0.003216608427464962, + 0.015466234646737576, + -9.482274617766961e-5, + 0.027338409796357155, + -0.004094869829714298, + 0.00872001051902771, + 0.056591689586639404, + -0.04265734925866127, + 0.026675572618842125, + -0.021976782009005547, + 0.006978217512369156, + 0.026984896510839462, + 0.0025961180217564106, + -0.007659468334168196, + 0.010053052566945553, + 0.010723255574703217, + -0.018898265436291695, + 0.03423193097114563, + 0.01397852972149849, + 0.020518537610769272, + 0.0064847711473703384, + 0.013116839341819286, + 0.013698664493858814, + -0.014737112447619438, + -0.011938460171222687, + 0.01827961578965187, + -0.02803070843219757, + 0.003671389538794756, + -0.02071002498269081, + -0.016747722402215004, + 0.03216976672410965, + -0.0022720634005963802, + 0.0006591561832465231, + 0.029975036159157753, + -0.025644490495324135, + 0.012262514792382717, + -0.0006080623716115952, + -0.01763150654733181, + 0.011511296965181828, + -0.010001498274505138, + -0.037266261875629425, + 0.06787467747926712, + -0.0010642242850735784, + -0.004024903289973736, + 0.0018614717992022634, + -0.01271177176386118, + -0.005634128116071224, + 0.009868931025266647, + 0.008123455569148064, + -0.0006936790305189788, + 0.007007677108049393, + -0.023464487865567207, + -0.002660560654476285, + 0.023390838876366615, + 0.03358382359147072, + 0.006609973963350058, + -0.001261234632693231, + 0.012218325398862362, + 0.014309949241578579, + -0.03270003944635391, + -0.006819873116910458, + 0.009066158905625343, + -0.009301835671067238, + 0.01752839982509613, + -0.026705032214522362, + -0.004882911220192909, + -0.02729422226548195, + 0.005637810565531254, + -0.0016801117453724146, + -0.03387841954827309, + -0.001719697960652411, + 0.02755935676395893, + 0.001240060548298061, + 0.020179754123091698, + 0.015539883635938168, + -0.02504057064652443, + 0.018043940886855125, + 0.0034430783707648516, + -0.008638996630907059, + -0.0060207839123904705, + -0.008550617843866348, + -0.0070187244564294815, + -0.0037450382951647043, + -0.014074273407459259, + -0.003533298149704933, + -0.007504806388169527, + 0.014567719772458076, + 0.005004431586712599, + 0.006414805073291063, + 0.01040656678378582, + -0.010347647592425346, + -0.0004513286694418639, + 0.0056783175095915794, + -0.008918861858546734, + -0.010148795321583748, + 0.00036179940798319876, + -0.003303145756945014, + -0.017204344272613525, + -0.027308952063322067, + -0.02372962236404419, + -0.003244226798415184, + -0.007431157398968935, + 0.023214081302285194, + -0.006690987851470709, + -0.03741355612874031, + -0.009699538350105286, + 0.009323930367827415, + -0.00130634440574795, + -0.012888528406620026, + -0.006959805730730295, + -0.012829610146582127, + -0.0001871138229034841, + 0.011400824412703514, + -0.006742541678249836, + 0.015215829014778137, + 0.009294470772147179, + 0.009036700241267681, + 0.026793409138917923, + -0.012188865803182125, + -0.0009252122254110873, + -0.020886780694127083, + -0.007350143976509571, + 0.008513794280588627, + 0.01987042836844921, + 0.014567719772458076, + 0.018603671342134476, + -0.007747847121208906, + -0.0035995820071548223, + -0.005070715676993132, + 0.005494195502251387, + -0.013654476031661034, + -0.0014646892668679357, + 0.027308952063322067, + 0.011430284008383751, + -0.016718262806534767, + -0.001597256981767714, + -0.02182948589324951, + -0.006849332246929407, + -0.0009187679970636964, + -0.010885283350944519, + -0.015392585657536983, + -0.007571090012788773, + 0.0013615810312330723, + 0.005667270161211491, + -0.023184621706604958, + 0.01166595984250307, + 0.0075342655181884766, + -0.012910623103380203, + 0.016924479976296425, + -0.009537511505186558, + -0.030033953487873077, + -0.0030472164507955313, + -0.017277993261814117, + -0.008734740316867828, + -0.006381663028150797, + -0.0077257524244487286, + 0.000224053263082169, + -0.008557982742786407, + -0.01808813028037548, + 0.03113868460059166, + -0.011754338629543781, + -0.008314942009747028, + 0.014280489645898342, + -0.018338534981012344, + 0.009257646277546883, + 0.005479465704411268, + -0.02100461907684803, + -0.006289601791650057, + 0.0077257524244487286, + -0.0133672459051013, + 0.005479465704411268, + 0.022624891251325607, + 0.0024064723402261734, + 0.01271177176386118, + 0.01716015487909317, + -0.0009394816588610411, + -0.008786294609308243, + 0.015363126061856747, + 0.012962177395820618, + -0.006256460212171078, + 0.0015005930326879025, + -0.007331731729209423, + -0.008182374760508537, + 0.005512607749551535, + 0.016453128308057785, + -0.0007300431025214493, + -0.0033473349176347256, + -0.015908127650618553, + 0.01820596680045128, + 0.02185894548892975, + -0.010841093957424164, + 0.02364124357700348, + 0.004805579781532288, + -0.0019848335068672895, + -0.003271845169365406, + 0.008027711883187294, + -0.004124328959733248, + -0.013345151208341122, + -0.01611434295773506, + 0.0004050680436193943, + 0.01848583295941353, + -0.01031818799674511, + -0.02252178266644478, + -0.011393459513783455, + -0.013558732345700264, + 0.007821495644748211, + -0.004035950638353825, + -0.00048516105744056404, + -0.03776707127690315, + -0.00243961438536644, + -0.000324975058902055, + -0.012829610146582127, + -0.00044350349344313145, + -0.00579247297719121, + 0.014221570454537868, + -0.0023088878951966763, + -0.011327175423502922, + 0.015878668054938316, + -0.015245288610458374, + 0.03237598389387131, + 0.0009574335417710245, + -0.019104482606053352, + -0.040742479264736176, + 0.008108725771307945, + 0.02101934887468815, + 0.027500437572598457, + 0.005899263545870781, + -0.016261640936136246, + -0.01827961578965187, + -0.023655973374843597, + -0.008432780392467976, + 0.020002996549010277, + -0.024304082617163658, + -0.007674198132008314, + 0.026380976662039757, + 0.0052327425219118595, + 0.013146298937499523, + -0.018043940886855125, + -0.018780427053570747, + 0.011084134690463543, + -0.0124687310308218, + 0.014118462800979614, + 0.007224941160529852, + 0.01604069396853447, + -0.006061290856450796, + 0.00726913008838892, + -0.023287730291485786, + 0.00600237213075161, + -0.007169704418629408, + -0.00369348400272429, + -0.0209015104919672, + -0.024038948118686676, + 0.009913119487464428, + -0.015480964444577694, + -0.001383675611577928, + 0.022109350189566612, + 0.0033841594122350216, + 0.0007585819694213569, + 0.005218012724071741, + -0.01405954360961914, + -0.018883535638451576, + -0.004868181422352791, + -0.005704094655811787, + -0.016335289925336838, + 0.009868931025266647, + -0.006665210705250502, + -0.016482587903738022, + 0.009478592313826084, + 0.006035513710230589, + 0.04071301966905594, + 0.008557982742786407, + 0.009250281378626823, + -0.0022113032173365355, + -0.00466932961717248, + -0.0015190051635727286, + 0.0044999378733336926, + -0.015083260834217072, + -0.0055052428506314754, + 0.00783622544258833, + -0.0007438522297888994, + 0.0004552412428893149, + 0.0093312943354249, + -0.006551055237650871, + -0.010443390347063541, + 0.003932842519134283, + 0.0035406630486249924, + -0.00033280023490078747, + 0.007107102777808905, + 0.008410685695707798, + -0.003304986981675029, + 1.1788112715294119e-5, + -0.01911921240389347, + 0.0022186681162565947, + 0.0027894459199160337, + 0.007467981893569231, + -0.005019161384552717, + 0.01979677937924862, + -0.006381663028150797, + 0.013617651537060738, + -0.02428935281932354, + -0.003273686394095421, + -0.007085008546710014, + -0.0090514300391078, + 0.02118137665092945, + -0.005855074618011713, + -0.011776432394981384, + 0.021210836246609688, + 0.009449132718145847, + 0.005704094655811787, + 0.010045687668025494, + -0.012623392976820469, + -0.01527474820613861, + 0.014494070783257484, + -0.0036198352463543415, + -0.018264885991811752, + 0.022462863475084305, + -0.007843590341508389, + -0.011371364817023277, + -0.003067469922825694, + 0.020975159481167793, + 0.005041256081312895, + 0.020577456802129745, + 0.03337760642170906, + 0.005763013381510973, + 0.013794408179819584, + -0.008027711883187294, + 0.024613406509160995, + -0.017793534323573112, + 0.0135881919413805, + 0.008683186024427414, + -0.0004211787017993629, + 0.0003360223490744829, + 0.015289477072656155, + -0.005103857256472111, + 0.003921795170754194, + 0.005634128116071224, + 0.0023770129773765802, + -0.009684808552265167, + 0.03767869248986244, + -0.005991324782371521, + -0.008697915822267532, + -0.010804269462823868, + -0.016732992604374886, + -0.003476220415905118, + 0.015967044979333878, + 0.03402571752667427, + 0.0036677070893347263, + 0.023273000493645668, + 6.950599345145747e-5, + -0.008646361529827118, + -0.029326926916837692, + 0.006753589026629925, + 0.010472849942743778, + 0.0007641056436114013, + -0.01574609987437725, + 0.0022113032173365355, + 0.0004683599399868399, + 0.006790413521230221, + -0.0015429409686475992, + -0.006488453596830368, + 0.015142180025577545, + -0.03246436268091202, + 0.014575084671378136, + -0.0384446382522583, + -0.0053063915111124516, + 0.006808825768530369, + 0.004595681093633175, + -0.021873675286769867, + 0.022477593272924423, + -0.0108705535531044, + 0.0169833991676569, + 0.03009287267923355, + 0.0036216764710843563, + 0.02739732898771763, + -0.00011335000453982502, + -0.016070153564214706, + 0.00018515752162784338, + -0.008351766504347324, + 0.006827238015830517, + -0.008012982085347176, + 0.017837723717093468, + -0.02898814156651497, + 0.010362377390265465, + 0.011363999918103218, + 0.013072650879621506, + -0.01124616153538227, + 0.004577268846333027, + 0.007107102777808905, + 0.008241293951869011, + -0.016438398510217667, + -0.016246911138296127, + -0.010355012491345406, + -0.021137187257409096, + 0.012682312168180943, + -0.00771102262660861, + 0.0011397141497582197, + 0.0030067097395658493, + 0.006602609064429998, + 0.00847696978598833, + -0.0044447011314332485, + 0.0009537511505186558, + -0.00847696978598833, + -0.010664337314665318, + 0.020400699228048325, + -0.020768944174051285, + 0.0008092154748737812, + 0.015628261491656303, + -0.002575864549726248, + -0.013838597573339939, + -0.012873798608779907, + 0.02512894943356514, + -0.025570841506123543, + 0.0073096370324492455, + 0.0038997004739940166, + 0.014361503534018993, + 0.022153539583086967, + -0.014796030707657337, + 0.01576082967221737, + -0.007600549608469009, + -0.01111359428614378, + -0.019914617761969566, + -0.03190463408827782, + -0.006985582411289215, + -0.01190163567662239, + -0.019295968115329742, + -0.0063116964884102345, + -0.034084632992744446, + 0.0009482274763286114, + -0.0068456497974693775, + 0.02926800772547722, + 0.004253214690834284, + 0.00952278170734644, + 0.0025795469991862774, + 0.027058545500040054, + -0.018338534981012344, + -0.01885407604277134, + 0.02626313827931881, + 0.002038228791207075, + 0.021240295842289925, + -0.011459743604063988, + 0.014074273407459259, + 0.04059518128633499, + -0.013256772421300411, + -0.014140557497739792, + 0.006720446981489658, + 0.010266633704304695, + 0.030961928889155388, + 0.012645487673580647, + -0.020194483920931816, + -0.014575084671378136, + 0.004533079452812672, + -0.025732867419719696, + -0.02054799720644951, + -0.019620023667812347, + -0.0044631133787333965, + -0.004533079452812672, + -0.02907652035355568, + 0.006713082082569599, + -0.0047908504493534565, + 0.017233803868293762, + 0.0022646987345069647, + 0.009213456884026527, + -0.010494944639503956, + 0.016261640936136246, + -0.0032497504726052284, + 0.021814756095409393, + 0.0010863188654184341, + 0.005173823796212673, + -0.009728997945785522, + -0.0009528305381536484, + 1.81676477950532e-5, + -0.003159530693665147, + 0.013949070125818253, + 0.0014711334370076656, + 0.009301835671067238, + 0.024598678573966026, + -0.024259893223643303, + -0.013801773078739643, + -0.005262202117592096, + 0.019664213061332703, + 0.0022113032173365355, + 0.017410561442375183, + -0.014899139292538166, + -0.031727876514196396, + -0.0078067658469080925, + -0.005807202775031328, + 0.011614405550062656, + 0.00806453637778759, + 0.008874672465026379, + 0.010362377390265465, + -0.007990887388586998, + -0.003710055025294423, + 0.012188865803182125, + 0.009647984057664871, + -0.00487922877073288, + 0.004334228113293648, + 0.02138759195804596, + 0.013529272750020027, + 0.002126607345417142, + -0.009765822440385818, + -0.007339096628129482, + 0.006510548293590546, + -0.003328922903165221, + -0.0034522844944149256, + -0.01008251216262579, + -0.015701910480856895, + 0.022065160796046257, + 0.0076889279298484325, + -0.013153663836419582, + 0.016629884019494057, + -0.025659220293164253, + -0.0014297061134129763, + -0.0005302709178067744, + -0.011783797293901443, + -5.601331577054225e-5, + -0.0016386844217777252, + -0.001485863234847784, + -0.02869354747235775, + 0.0003123166679870337, + 0.01271177176386118, + -0.008432780392467976, + 0.0027470977511256933, + -0.004098552279174328, + -0.004150106105953455, + -0.008020346984267235, + -0.022477593272924423, + 0.0676979199051857, + 0.004282673820853233, + 0.028531519696116447, + 0.01867731846868992, + -0.007235988043248653, + -0.03054949641227722, + -0.012291974388062954, + 0.014656098559498787, + 0.003100611735135317, + 0.0046803769655525684, + -0.02428935281932354, + -0.008027711883187294, + 0.020489078015089035, + 0.027912870049476624, + -0.01495069358497858, + -0.007445887196809053, + 0.0027563038747757673, + -0.012063662521541119, + 0.0017942673293873668, + 0.010995755903422832, + 0.0074827116914093494, + 0.0012419017730280757, + 0.004179565701633692, + 0.01326413732022047, + -0.00989102479070425, + 0.006377980578690767, + -0.019104482606053352, + 0.0004145042912568897, + 0.020768944174051285, + 0.026557734236121178, + 0.006926663685590029, + -0.010428660549223423, + -0.003098770510405302, + -0.02663138322532177, + 0.006263825111091137, + 0.005932405591011047, + 0.012697041966021061, + -0.006127574946731329, + -0.0030103919561952353, + 0.003168736817315221, + -0.003884970908984542, + -0.0035774873103946447, + 0.023228811100125313, + 0.03161003813147545, + -0.021505430340766907, + 0.006639433559030294, + -0.015981774777173996, + -2.039724677160848e-5, + -0.009883659891784191, + 0.0009091015672311187, + 0.011953189969062805, + 0.0023052054457366467, + 0.01867731846868992, + 0.024583948776125908, + 0.020120834931731224, + -0.004905005916953087, + 0.0027470977511256933, + 0.008874672465026379, + 0.019384346902370453, + -0.00277655734680593, + -0.030225440859794617, + -0.00927974097430706, + 0.003148483345285058, + -0.010818999260663986, + -0.016187991946935654, + -0.008631631731987, + -0.02333191968500614, + 0.013669204898178577, + -0.0051149046048521996, + -0.028649358078837395, + -0.018029211089015007, + -0.006042878609150648, + -0.0027986520435661077, + -0.024775434285402298, + -0.0070371367037296295, + 0.016998128965497017, + 0.004396829288452864, + 0.04321707785129547, + 0.03591112419962883, + 0.009640619158744812, + 0.0015226876130327582, + 0.007401697803288698, + -0.021814756095409393, + -0.004731931257992983, + 0.0008681344916112721, + -0.01120933797210455, + 0.008256022818386555, + -0.03390787914395332, + 0.016261640936136246, + -0.014818125404417515, + -0.020886780694127083, + 0.005832979921251535, + 0.008918861858546734, + 0.01168068964034319, + -0.015996504575014114, + 0.0032221321016550064, + 0.004024903289973736, + 0.021608538925647736, + -0.009706903249025345, + -0.017690425738692284, + 0.009493322111666203, + -0.0014076114166527987, + -0.009198727086186409, + 0.003233179450035095, + -0.011157783679664135, + -0.000558809784706682, + 0.025747597217559814, + -0.01111359428614378, + -0.00806453637778759, + -0.003954937215894461, + -0.007814130745828152, + -0.004334228113293648, + 0.0015318937366828322, + 0.01158494595438242, + 0.014692923054099083, + -0.00847696978598833, + 0.023007864132523537, + 0.00018251077563036233, + -0.014103733003139496, + -0.010502309538424015, + 0.003060105023905635, + 0.008557982742786407, + 0.000981369405053556, + -0.02586543560028076, + -0.008521158248186111, + 0.022845838218927383, + -0.012579203583300114, + -0.013161028735339642, + -0.002467232756316662, + -0.003632723819464445, + 0.02568867988884449, + 0.002362283179536462, + 0.0028502061031758785, + -0.004242167342454195, + 0.009957308880984783, + 0.004385782405734062, + -0.020209213718771935, + 0.012269879691302776, + -0.00045501108979806304, + -0.02175583690404892, + 0.01439832802861929, + -0.02636624686419964, + 0.0059029459953308105, + 0.009633254259824753, + 0.015642991289496422, + 0.01583447866141796, + -0.008204469457268715, + -0.00738696800544858, + 0.01677718199789524, + -0.013963799923658371, + 0.017233803868293762, + -0.02343502826988697, + 0.004341593012213707, + 0.0002506358432583511, + -0.006035513710230589, + 0.0036272001452744007, + -0.02739732898771763, + 0.010723255574703217, + -0.02194732241332531, + -0.007129197474569082, + 0.004260579124093056, + -0.010818999260663986, + -0.005004431586712599, + 0.003264480270445347, + -0.017410561442375183, + 0.01327150221914053, + -0.0031135003082454205, + 0.012166771106421947, + -0.0016405255300924182, + 0.010517039336264133, + 0.011172513477504253, + 0.01997353695333004, + 0.03270003944635391, + -0.021800026297569275, + 0.012498190626502037, + -0.01735164225101471, + 0.003082199487835169, + 0.0060207839123904705, + -0.014611909165978432, + 0.00738328555598855, + -0.006322743836790323, + -0.010737985372543335, + 0.007394332904368639, + -0.0022462864872068167, + -0.011518661864101887, + -0.01941380649805069, + 0.01022244431078434, + -0.0063485209830105305, + 0.002680813893675804, + -0.016438398510217667, + -0.007747847121208906, + 0.031285982578992844, + 0.00010679066326702014, + -0.004731931257992983, + 0.005004431586712599, + -0.003236861899495125, + 0.04424815997481346, + 0.016202721744775772, + 0.03393733873963356, + 0.005490513052791357, + 0.0014462770195677876, + -0.014103733003139496, + 0.018073400482535362, + -0.004831356927752495, + 0.007048184052109718, + -0.00116088823415339, + -0.018986644223332405, + -0.018161777406930923, + -0.014147922396659851, + 0.002089782850816846, + -0.04024166986346245, + -0.03158057853579521, + 0.01855948194861412, + 0.008852577768266201, + 0.002117401221767068, + 0.010568593628704548, + 0.016187991946935654, + 0.022580701857805252, + 0.013934340327978134, + 0.019944077357649803, + -0.004485208075493574, + -0.00735750887542963, + 0.011982649564743042, + 0.005608351435512304, + 0.004492572974413633, + -0.01374285388737917, + -0.004595681093633175, + 0.020371239632368088, + 0.032670579850673676, + -0.0051333168521523476, + 0.001315550529398024, + -0.025556111708283424, + 0.0029164899606257677, + 0.00600237213075161, + -0.00027296063490211964, + 0.025747597217559814, + 0.0020658469293266535, + -0.0071181501261889935, + 0.013300961814820766, + 6.829769699834287e-5, + -0.021122457459568977, + 0.013396704569458961, + -0.005328486207872629, + -0.006455311551690102, + -0.003951254766434431, + -0.010524404235184193, + -0.0009224503883160651, + 0.00918399728834629, + -0.0003008090425282717, + -2.350430440856144e-5, + -0.005799837876111269, + 0.005950817838311195, + 0.0021008301991969347, + -0.002877824241295457, + 5.983959636068903e-5, + -0.005243789870291948, + 0.0014306267257779837, + 0.016438398510217667, + 0.007777306251227856, + -0.009125078096985817, + 0.013109475374221802, + 0.009412308223545551, + -0.013764948584139347, + 0.007051866501569748, + -0.006429534405469894, + 0.014560354873538017, + -0.0263367872685194, + 0.014685558155179024, + -0.0007797559956088662, + -0.007843590341508389, + 0.005519972648471594, + -0.008432780392467976, + -0.002640307182446122, + 0.03573436662554741, + 0.006893521640449762, + 8.918401726987213e-5, + -0.0035093622282147408, + -0.013161028735339642, + 0.009485957212746143, + 0.03287679702043533, + -0.010296093299984932, + -0.01604069396853447, + 0.005917675793170929, + -0.018250156193971634, + -0.009780552238225937, + -0.03325976803898811, + 0.02205043099820614, + 0.018971914425492287, + 0.0018587099621072412, + 0.022639621049165726, + 0.004897641018033028, + -0.007777306251227856, + -0.0030748348217457533, + 0.008992510847747326, + 0.004256897140294313, + 0.001865154248662293, + -0.0021818438544869423, + -0.010141431353986263, + 0.04174410179257393, + -0.021534889936447144, + -0.014906504191458225, + 0.006197541020810604, + -0.00442997133359313, + -0.021696917712688446, + -0.0006218714988790452, + 0.009854201227426529, + 0.028811385855078697, + 0.008683186024427414, + -0.00670571718364954, + 0.012527650222182274, + 0.00015408697072416544, + 0.0054610539227724075, + -0.011526026763021946, + -0.017764074727892876, + -0.006061290856450796, + 0.0004458049952518195, + -0.0037524031940847635, + 0.027912870049476624, + -0.012623392976820469, + 0.006447946652770042, + -0.003896018024533987, + 0.005895581096410751, + 0.027441518381237984, + -0.011231431737542152, + 0.016202721744775772, + -0.01997353695333004, + 0.01567245088517666, + -0.00011277462908765301, + 0.01820596680045128, + -0.015215829014778137, + 0.02680813893675804, + 0.013676569797098637, + -0.023037323728203773, + -0.010067782364785671, + 0.016187991946935654, + 0.020312320441007614, + -0.018736237660050392, + 0.0001283099118154496, + 0.004846086725592613, + -0.00885994266718626, + -0.002126607345417142, + -0.0310503076761961, + -0.00829284731298685, + -0.005089127458631992, + -0.00305826379917562, + -0.003157689468935132, + 0.0026384659577161074, + 0.003995443694293499, + 0.006996629759669304, + 0.010494944639503956, + -0.011570216156542301, + 0.0183827243745327, + 0.013138934038579464, + 0.011415554210543633, + -0.01078217476606369, + -0.008904132060706615, + 0.019855698570609093, + 0.01836799457669258, + -0.006241730414330959, + -0.008079266175627708, + 0.0015134814893826842, + 0.010355012491345406, + -0.016173262149095535, + -0.026204220950603485, + 0.015687180683016777, + -0.018323805183172226, + 0.0002471835759934038, + -0.005376357585191727, + -0.0348505824804306, + -0.002748938975855708, + 0.011636500246822834, + -0.017690425738692284, + -0.006562102120369673, + 0.0054426416754722595, + -0.012085757218301296, + -6.357957317959517e-5, + -0.00984683632850647, + -0.0005072556668892503, + -0.03152165934443474, + 0.005718824453651905, + 0.015466234646737576, + 0.009478592313826084, + 0.0056967297568917274, + -0.00039954439853318036, + -0.02118137665092945, + 0.017410561442375183, + 0.028546249493956566, + -0.003468855516985059, + 0.009692173451185226, + -0.008580077439546585, + -0.009920484386384487, + -0.0025427225045859814, + 0.007740482222288847, + 0.023214081302285194, + -0.030225440859794617, + 0.033141929656267166, + -0.03602896258234978, + 0.016629884019494057, + -0.023052053526043892, + 0.0038444639649242163, + -0.007843590341508389, + 0.008506429381668568, + 0.005895581096410751, + 0.010848458856344223, + 0.004032268188893795, + -0.014641368761658669, + 0.0009399419650435448, + -0.006182811222970486, + 0.026587193831801414, + -0.007283859886229038, + 0.007755212020128965, + 0.022934217005968094, + -0.0025427225045859814, + 0.004846086725592613, + 0.028929224237799644, + -0.024981651455163956, + -0.0019516914617270231, + 0.008101360872387886, + 0.003273686394095421, + 0.004234802443534136, + 0.0011102546704933047, + -0.018883535638451576, + 0.008977781049907207, + 0.001456403755582869, + 0.008093995973467827, + -0.013492448255419731, + 0.01374285388737917, + 0.005770378280431032, + -0.0016147485002875328, + 0.005663587711751461, + 0.0022223505657166243, + 0.014619274064898491, + -0.005044938530772924, + 0.007305954582989216, + -0.02418624423444271, + -0.004304768517613411, + 0.016806641593575478, + -0.01397852972149849, + -0.012954812496900558, + 0.014074273407459259, + -0.024230433627963066, + -0.009478592313826084, + -0.011827986687421799, + -0.00021668839326594025, + 0.0023659656289964914, + -0.020783673971891403, + 0.003233179450035095, + 0.021903134882450104, + -0.00510753970593214, + -0.016556235030293465, + -0.01621745154261589, + 0.018441643565893173, + -0.002769192447885871, + 0.0015549089293926954, + -0.01864786073565483, + -0.0019001374021172523, + 0.0016138278879225254, + -0.03046111762523651, + 0.01360292173922062, + -0.043747350573539734, + 0.022477593272924423, + 0.0006002371665090322, + 0.010664337314665318, + -0.013492448255419731, + 0.003476220415905118, + -0.0027747161220759153, + 0.026705032214522362, + 0.007232306059449911, + -0.020695295184850693, + 0.005457371473312378, + -0.02879665605723858, + 0.03888653218746185, + 0.0014186587650328875, + 0.006989264860749245, + 0.014015354216098785, + 0.013573462143540382, + -0.016570964828133583, + 0.00807190127670765, + -0.0008253261330537498, + -0.013845962472259998, + -0.011091499589383602, + 0.0071733868680894375, + -0.00455149170011282, + -0.004591998644173145, + 0.030696792528033257, + 0.003557233838364482, + 0.011953189969062805, + 0.00829284731298685, + -0.004422606434673071, + 0.012269879691302776, + 0.016806641593575478, + 0.03611734136939049, + 0.003369429614394903, + 5.822853199788369e-5, + 0.011791162192821503, + -0.0005947135505266488, + 0.019428536295890808, + 0.02504057064652443, + -0.008049806579947472, + -0.0005772219737991691, + 0.02230083756148815, + 0.015716640278697014, + -0.008882037363946438, + -0.016187991946935654, + 0.004028585739433765, + -0.0034449195954948664, + 0.003284733509644866, + 0.012999001890420914, + 0.018500562757253647, + 0.013109475374221802, + 0.00647372379899025, + -0.008506429381668568, + -0.0090514300391078, + -0.006241730414330959, + -0.0037229435984045267, + 0.029562601819634438, + -0.012461366131901741, + -0.006816190667450428, + 0.025394083932042122, + -0.005958182737231255, + -0.00747902924194932, + -0.03010760247707367, + 0.012866433709859848, + 0.0008506429148837924, + 0.009728997945785522, + 0.0165856946259737, + 0.014560354873538017, + -0.012954812496900558, + -0.0018485832260921597, + -0.013345151208341122, + -0.021048808470368385, + 0.024908002465963364, + 0.019708402454853058, + -0.014199475757777691, + -0.0022002558689564466, + 0.012844339944422245, + 0.004768755752593279, + -0.005490513052791357, + 0.02400948852300644, + -0.009368118830025196, + 0.016438398510217667, + 0.0015935745323076844, + 0.012925352901220322, + 0.009920484386384487, + 0.004728248808532953, + -0.030402198433876038, + 0.013396704569458961, + 0.006654163356870413, + -0.004330545663833618, + -0.0014969105832278728, + -0.0010559387737885118, + 0.006013419479131699, + 0.01979677937924862, + -0.002397266449406743, + 0.014877044595777988, + -0.008086631074547768, + 0.013256772421300411, + -0.002301522996276617, + -0.02324354089796543, + 0.021313944831490517, + 0.0005192235694266856, + -0.006197541020810604, + -0.004588316194713116, + -0.017660966143012047, + 0.005615715868771076, + 0.004006491042673588, + -0.009441767819225788, + -0.01247609592974186, + 0.026012733578681946, + 0.008963051252067089, + -0.01998826675117016, + 0.020651105791330338, + -0.011511296965181828, + 0.022831108421087265, + -0.012999001890420914, + 0.010745350271463394, + -0.03381950035691261, + 0.009073523804545403, + 0.005508925300091505, + 0.0029422668740153313, + -0.0021229248959571123, + -0.025261515751481056, + 0.0036953252274543047, + -0.0013919611228629947, + -0.0003723864210769534, + 0.019075023010373116, + 0.006654163356870413, + 0.022079890593886375, + 0.02465759590268135, + -0.02138759195804596, + 0.02252178266644478, + 0.00058366620214656, + -0.014435152523219585, + -0.012417176738381386, + 0.004448383580893278, + 0.015642991289496422, + -0.007880414836108685, + -0.001601860043592751, + -0.010745350271463394, + -0.02981300838291645, + -0.0037431970704346895, + 0.005291661713272333, + 0.015392585657536983, + 0.005011796485632658, + 0.011791162192821503, + 0.0029956623911857605, + 0.006252777762711048, + 0.0011194607941433787, + -0.007368556223809719, + 0.0036456123925745487, + 0.010185619816184044, + -0.028575709089636803, + 0.0226985402405262, + -0.017881913110613823, + 0.02091624028980732, + 0.01223305519670248, + 0.012277244590222836, + -0.009353389032185078, + 0.034526526927948, + -0.007497441489249468, + 0.020651105791330338, + 0.0032479092478752136, + -0.007022406905889511, + 0.0026182124856859446, + -0.011894270777702332, + -0.003218449652194977, + -0.0015318937366828322, + 0.005825615022331476, + 0.024363001808524132, + -0.0151863694190979, + -0.017513670027256012, + -0.016659343615174294, + -0.0075011239387094975, + -0.02661665342748165, + -9.131292608799413e-5, + -0.011187243275344372, + -0.014435152523219585, + 0.0006338394596241415, + -0.00927974097430706, + -0.00029988845926709473, + -0.007110785227268934, + -0.008138185366988182, + 0.0019682624842971563, + 0.015687180683016777, + -0.004253214690834284, + 0.006639433559030294, + -0.009404943324625492, + 0.0037229435984045267, + 0.01855948194861412, + -0.003098770510405302, + -0.010163525119423866, + 0.02054799720644951, + -0.005081762559711933, + 0.016644613817334175, + -0.005247472319751978, + -0.014103733003139496, + 0.007696292828768492, + -0.014221570454537868, + 0.03977031633257866, + -0.004768755752593279, + -0.0028023344930261374, + -0.02427462302148342, + 0.004323180764913559, + 0.004809262230992317, + -0.0032700039446353912, + 0.0018089970108121634, + 0.011363999918103218, + 0.02483435347676277, + -0.016261640936136246, + -0.012535015121102333, + -0.008985145948827267, + -2.4626295271445997e-5, + -0.01021507941186428, + -0.0015503058675676584, + 0.013661839999258518, + 0.020223943516612053, + 0.009117713198065758, + -0.005899263545870781, + 0.027588816359639168, + -0.004982336889952421, + 0.014980153180658817, + 0.0017730933614075184, + 0.012203595601022243, + 0.02071002498269081, + -1.3722830772167072e-5, + 0.011474473401904106, + 0.021417051553726196, + -0.008565347641706467, + 0.01045812014490366, + 0.0016276370733976364, + -0.016379479318857193, + -0.0016276370733976364, + -0.03440868854522705, + -0.005969230085611343, + -0.005634128116071224, + -0.005092809908092022, + 0.0020547998137772083, + 0.008845212869346142, + 0.0031613719183951616, + -0.018309075385332108, + -0.022345026955008507, + 0.01270440686494112, + 0.0015236082253977656, + 0.0003005788894370198, + -0.0051149046048521996, + -0.03476220369338989, + -0.017277993261814117, + 0.004418923985213041, + 0.021240295842289925, + -0.029488952830433846, + 0.021770566701889038, + -0.010126701556146145, + 0.00927974097430706, + 0.021976782009005547, + 0.01867731846868992, + -0.03664761036634445, + -0.015554612502455711, + 0.007011359557509422, + -0.0049418299458920956, + -0.007895144633948803, + 0.011003120802342892, + -0.0019369617803022265, + 0.005796155426651239, + 0.004742978606373072, + 0.016644613817334175, + -0.029503682628273964, + -0.0038260517176240683, + 0.008874672465026379, + -0.02082786150276661, + 0.008263387717306614, + 0.04480789229273796, + 0.007585819810628891, + -0.00555679714307189, + 0.016629884019494057, + -0.013654476031661034, + -0.004846086725592613, + 0.003951254766434431, + 0.005494195502251387, + -0.014361503534018993, + 0.03331868723034859, + -0.01279278565198183, + -0.00862426683306694, + 0.013698664493858814, + 0.0026531957555562258, + 0.014611909165978432, + 0.0022481277119368315, + -0.01677718199789524, + 0.00243961438536644, + -0.002244445262476802, + 0.031639497727155685, + -0.003918112721294165, + -0.018721507862210274, + 0.017381101846694946, + -0.015230558812618256, + 0.010369742289185524, + -0.00928710587322712, + 0.0037818625569343567, + -0.023611783981323242, + 0.009824741631746292, + -0.011371364817023277, + 0.008359131403267384, + 0.010273998603224754, + -0.01166595984250307, + -0.011511296965181828, + -0.01255710981786251, + 0.01611434295773506, + -0.0016598583897575736, + -0.0011139371199533343, + 0.0008893084595911205, + 0.010539134033024311, + -0.006573149468749762, + -0.0032976220827549696, + -0.012071027420461178, + -0.021711647510528564, + 0.02551192231476307, + -0.020680565387010574, + -0.01064224261790514, + 0.004396829288452864, + 0.022374486550688744, + -0.012336162850260735, + 0.013197853229939938, + -0.009169267490506172, + -0.012630757875740528, + 0.0006384424632415175, + -0.008587442338466644, + 0.009368118830025196, + -0.014022719115018845, + 0.023273000493645668, + 0.006687305402010679, + 0.014818125404417515, + 0.027132194489240646, + -0.007199164014309645, + -0.026130571961402893, + 0.012402446940541267, + 0.01789664290845394, + -0.011850081384181976, + 0.0007590422756038606, + -0.012107851915061474, + -0.014707652851939201, + -0.009301835671067238, + -0.014928598888218403, + -0.0061938585713505745, + 0.0015567501541227102, + -0.015731370076537132, + -0.019104482606053352, + 0.001894613727927208, + 0.006079703103750944, + 0.004916053265333176, + 0.012954812496900558, + -0.0070003122091293335, + 0.011062039993703365, + 0.004069092683494091, + 0.007140244822949171, + 0.015392585657536983, + 0.015215829014778137, + 0.001122222631238401, + -0.006363250780850649, + -0.012203595601022243, + 0.015495694242417812, + -0.0003077136352658272, + -0.017926102504134178, + 0.004952877294272184, + -0.00012865514145232737, + -0.02315516211092472, + -0.01913394220173359, + -0.019251778721809387, + 0.001103810383938253, + 0.004864498972892761, + -0.0014499594690278172, + -0.03293571621179581, + -0.006959805730730295, + -0.010016228072345257, + -0.010111971758306026, + -0.0016865560319274664, + 0.0183827243745327, + -0.014309949241578579, + 0.0073280492797493935, + -0.013757583685219288, + 0.041037075221538544, + -0.018264885991811752, + 0.0054610539227724075, + -0.00909561850130558, + 0.01158494595438242, + 0.019531644880771637, + 0.01640893891453743, + -0.0013799931621178985, + 0.012034203857183456, + -0.013573462143540382, + -0.017027588561177254, + -0.017410561442375183, + 0.004098552279174328, + 0.006064973305910826, + 0.01420684065669775, + -0.0003468395152594894, + 0.004065410234034061, + -0.010045687668025494, + 0.00419797794893384, + -0.014317314140498638, + 0.01847110316157341, + -0.000985972466878593, + 0.013816502876579762, + 0.028649358078837395, + 0.009913119487464428, + -0.005295344162732363, + 0.01621745154261589, + -0.014891774393618107, + -0.013448258861899376, + -0.015289477072656155, + -0.001728904084302485, + -0.013868057169020176, + -0.015451504848897457, + -0.016173262149095535, + 0.020577456802129745, + -0.008182374760508537, + 0.0013523749075829983, + -0.0005385563708841801, + -0.00659156171604991, + -0.004249532241374254, + -0.0030103919561952353, + 0.010620147921144962, + 0.01213731151074171, + 0.002640307182446122, + -0.001117619569413364, + 0.01808813028037548, + -0.012122581712901592, + -0.00021427178580779582, + 0.02333191968500614, + 0.018264885991811752, + -0.00464355293661356, + 0.021520160138607025, + 0.0031319125555455685, + -0.005413182079792023, + 0.006635751109570265, + -0.015996504575014114, + -0.018441643565893173, + 0.019914617761969566, + 0.0053248037584125996, + 0.01819123700261116, + -0.017042316496372223, + 0.00037491810508072376, + 0.013433529064059258, + -0.018912995234131813, + -0.001710491837002337, + 0.015805019065737724, + -0.01054649893194437, + 0.008565347641706467, + -0.008248657919466496, + -0.001669985125772655, + -0.017852453514933586, + 0.01883934624493122, + -0.0278539527207613, + -0.015598801895976067, + 0.035321932286024094, + 0.008977781049907207, + 0.021903134882450104, + 0.01190900057554245, + 0.0003581169876269996, + -0.01576082967221737, + 0.005383722484111786, + -0.008749470114707947, + -0.007681563030928373, + 0.0016165897250175476, + -0.012365622445940971, + 0.026763951405882835, + 0.024583948776125908, + 0.015790289267897606, + -0.005166458897292614, + -0.002535357838496566, + -0.0022573338355869055, + 0.007405380252748728, + 0.009463862515985966, + -0.003796592354774475, + -0.002574023324996233, + -0.016674073413014412, + -0.02194732241332531, + -0.0020861004013568163, + -0.010163525119423866, + 0.002062164479866624, + -0.0059213582426309586, + 0.004905005916953087, + 0.011518661864101887, + -0.005302709061652422, + 0.0013901198981329799, + -0.025806516408920288, + -0.008329671807587147, + 0.007184434216469526, + -0.01349981315433979, + -0.0043268632143735886, + -0.004087504930794239, + -0.008874672465026379, + -0.0020271814428269863, + -0.0011341904755681753, + -0.006252777762711048, + 0.005659905262291431, + 0.009058794938027859, + 0.018235426396131516, + -0.015981774777173996, + 0.0012842498254030943, + -0.014192111790180206, + -0.006624703761190176, + 0.0025869118981063366, + -0.005995007231831551, + 0.023685432970523834, + -0.01951691508293152, + 0.009250281378626823, + -0.015554612502455711, + -0.016467858105897903, + -0.013190488331019878, + -0.011643865145742893, + -0.004245849791914225, + 0.00431213341653347, + 0.019016103819012642, + -0.00019229223835282028, + 0.015039071440696716, + 0.019561104476451874, + 0.003954937215894461, + -0.025173136964440346, + -0.016438398510217667, + -0.015171639621257782, + 0.015127450227737427, + -0.02898814156651497, + 0.004533079452812672, + -0.00017664188635535538, + -0.016084883362054825, + 0.010649607516825199, + 0.000626934866886586, + -0.011975284665822983, + 0.012071027420461178, + 0.009220821782946587, + -0.0038113221526145935, + -0.004731931257992983, + -0.005516290199011564, + -0.017498940229415894, + 0.003601423231884837, + -0.025246785953640938, + 0.0026108475867658854, + 0.016423668712377548, + 0.0005183029570616782, + -0.008116090670228004, + -0.0090514300391078, + 0.006661528255790472, + -0.0024156784638762474, + -0.0007535186014138162, + -0.006050243508070707, + 0.003507521003484726, + -0.00534689798951149, + 0.021608538925647736, + 0.009294470772147179, + -0.036058422178030014, + 0.001504275482147932, + -0.003921795170754194, + -0.0037413558457046747, + 0.009957308880984783, + 0.022742729634046555, + -0.00928710587322712, + -0.007931969128549099, + 0.023140432313084602, + 0.010671702213585377, + -0.008778929710388184, + -0.0009574335417710245, + -0.013816502876579762, + 0.017395831644535065, + 0.012593933381140232, + -0.016173262149095535, + 0.0022794282995164394, + 0.011305080726742744, + -0.01190163567662239, + -0.010524404235184193, + -0.024525029584765434, + 0.010922107845544815, + -0.0051149046048521996, + 0.0006016180850565434, + 0.013794408179819584, + -0.019929347559809685, + -0.016821371391415596, + 0.028104357421398163, + 0.014692923054099083, + -0.009272376075387001, + 0.016659343615174294, + 0.0029662027955055237, + 0.00816028006374836, + -0.0057335542514920235, + -0.0020511173643171787, + -0.008675821125507355, + -0.0035296157002449036, + -0.005836662370711565, + 0.01453089527785778, + -0.024318812415003777, + 0.0006550134276039898, + 0.016158532351255417, + -0.007541630417108536, + 0.017705155536532402, + -0.007990887388586998, + -0.00952278170734644, + 0.004588316194713116, + 0.020135564729571342, + -0.0020640057045966387, + -0.010988391004502773, + 0.011400824412703514, + 0.01744002103805542, + 0.01271177176386118, + 0.0008441986283287406, + 0.002397266449406743, + -0.00647004134953022, + -0.014287854544818401, + 0.0009740045061334968, + 0.005218012724071741, + 0.009412308223545551, + -0.012778055854141712, + -0.0007691689534112811, + -0.0030637874733656645, + 0.015363126061856747, + -0.0035903758835047483, + 0.00024603281053714454, + -0.009007240645587444, + -0.001544782193377614, + 0.011422919109463692, + -0.008101360872387886, + -0.027706654742360115, + -0.008749470114707947, + 0.01717488467693329, + -0.007600549608469009, + -0.02617476135492325, + 0.005836662370711565, + -0.00017848311108537018, + -0.01111359428614378, + 0.011658594943583012, + -0.0012501872843131423, + -0.005357945337891579, + -0.008020346984267235, + 0.019060293212532997, + 0.0021800026297569275, + 0.0024819623213261366, + 0.020179754123091698, + 0.0018771220929920673, + -0.00951541680842638, + 0.0073096370324492455, + 0.0020529585890471935, + 0.011511296965181828, + 0.0011286669177934527, + -0.004702471662312746, + 0.009139807894825935, + 0.005781425628811121, + -0.011827986687421799, + -0.0009500687010586262, + 0.005840344820171595, + -0.00791723933070898, + -0.0038702411111444235, + 0.0035461867228150368, + -0.0062932842411100864, + -0.007939334027469158, + 0.00041381383198313415, + -0.038503557443618774, + -0.01260866317898035, + 0.008992510847747326, + 0.012674947269260883, + -0.012269879691302776, + 0.0036087881308048964, + 0.030402198433876038, + 0.02764773555099964, + -0.033141929656267166, + 0.018029211089015007, + -0.01997353695333004, + -0.030122332274913788, + 0.00830021221190691, + 0.001953532686457038, + 0.005192236043512821, + -0.0029109662864357233, + 0.0003224433748982847, + 0.035498689860105515, + 0.005048620980232954, + 0.006786731071770191, + 0.004006491042673588, + 0.0019075023010373116, + -0.007990887388586998, + 0.0013440893962979317, + -0.006687305402010679, + -0.010966296307742596, + 0.016276370733976364, + -0.005000749137252569, + 0.017307452857494354, + -0.0013597398065030575, + -0.003652977291494608, + 0.01716015487909317, + 0.003662183415144682, + -0.013934340327978134, + -0.0072286236099898815, + 0.022654350847005844, + 0.014943328686058521, + 0.0011047309963032603, + -0.009692173451185226, + -0.020886780694127083, + -0.012859068810939789, + -0.014589814469218254, + 0.011282986029982567, + 0.01373548898845911, + 0.018618401139974594, + 0.005763013381510973, + 0.010377107188105583, + 0.012409811839461327, + 0.0027710336726158857, + -0.004739296156913042, + -0.02137286216020584, + 0.002167114056646824, + 0.0053505804389715195, + 0.014899139292538166, + -0.010340282693505287, + -0.00579247297719121, + -0.006841967348009348, + -0.012188865803182125, + -0.007015042006969452, + -0.026130571961402893, + -0.018029211089015007, + 0.00305826379917562, + 0.012763326056301594, + 0.009471227414906025, + 0.009810011833906174, + -0.000759962887968868, + -0.002071370603516698, + -0.0016377638094127178, + -0.015215829014778137, + -0.00021243057562969625, + -0.01302846148610115, + -0.02205043099820614, + -0.007843590341508389, + -0.007968793623149395, + -0.015716640278697014, + -0.005891898646950722, + 0.024922732263803482, + 0.01677718199789524, + 0.011990014463663101, + -0.008101360872387886, + -0.013116839341819286, + -0.012291974388062954, + 0.0065215956419706345, + 0.003319716779515147, + -0.006296966690570116, + -0.01069379597902298, + -0.004628823138773441, + 0.015628261491656303, + -0.0044447011314332485, + -0.0032479092478752136, + 0.026307327672839165, + 0.001099207322113216, + -0.03216976672410965, + -0.014199475757777691, + 0.003373112063854933, + 0.013308326713740826, + 0.015083260834217072, + 0.013131569139659405, + -0.0010237174574285746, + 0.01021507941186428, + -0.015908127650618553, + -0.004731931257992983, + -0.00965534895658493, + 0.00543895922601223, + 0.004098552279174328, + 0.014641368761658669, + 0.01621745154261589, + -0.0007291224901564419, + 0.0013652634806931019, + 0.0113492701202631, + -0.011172513477504253, + -0.018588941544294357, + 0.006562102120369673, + -0.040005993098020554, + 0.012225690297782421, + -0.012969542294740677, + 0.022801648825407028, + 0.014501435682177544, + 0.004348957911133766, + -0.017042316496372223, + -0.023847460746765137, + -0.0032294970005750656, + 0.015061166137456894, + 0.0017206185730174184, + 0.005206965375691652, + 0.014796030707657337, + 0.017955562099814415, + 0.0030858819372951984, + -0.020017726346850395, + 0.01604069396853447, + 0.006996629759669304, + 0.010207714512944221, + -0.00848433468490839, + -0.010774809867143631, + -0.006514230743050575, + -0.022831108421087265, + 0.0005924120196141303, + -0.014648733660578728, + 0.027500437572598457, + -0.014376233331859112, + 0.0022996817715466022, + -0.020857321098446846, + 0.010885283350944519, + 0.01604069396853447, + -0.008167644962668419, + -0.022845838218927383, + -0.008506429381668568, + 0.004860816523432732, + 0.006934028584510088, + -0.03470328450202942, + 0.0249374620616436, + 0.01979677937924862, + -0.011474473401904106, + -0.0012326957657933235, + 0.03143328055739403, + -0.010715890675783157, + 0.006455311551690102, + 0.015436775051057339, + -0.010531769134104252, + 0.013345151208341122, + 0.005781425628811121, + -0.013477718457579613, + 0.006433216854929924, + -0.028531519696116447, + -0.005026526283472776, + -0.01932542771100998, + 0.007954063825309277, + -0.0004966686828993261, + 0.0011111752828583121, + -0.0052879792638123035, + -0.010355012491345406, + -0.011334540322422981, + -0.007548995316028595, + 0.02184421569108963, + 0.057239796966314316, + 0.03270003944635391, + 0.001199553837068379, + 0.020754214376211166, + 0.033613283187150955, + -0.019737862050533295, + 0.003921795170754194, + -0.001456403755582869, + -0.031727876514196396, + -0.009544876404106617, + -0.022860568016767502, + 0.0006255539483390749, + 0.029194358736276627, + 0.002069529378786683, + -0.01318312343209982, + -0.0014637686545029283, + -0.013396704569458961, + 0.0018789633177220821, + -0.013985894620418549, + 0.0030288042034953833, + 0.000566634931601584, + 0.0039291600696742535, + -0.017381101846694946, + -0.005700412206351757, + 0.004860816523432732, + -0.0010264792945235968, + -0.023228811100125313, + -0.023052053526043892, + -0.022654350847005844, + 0.007512170821428299, + 0.015318936668336391, + -0.00452203257009387, + -0.00849169958382845, + -0.015083260834217072, + -0.01126089133322239, + 0.021299215033650398, + 0.0033675883896648884, + 0.007224941160529852, + -0.012719136662781239, + -0.011746973730623722, + 0.01754312962293625, + -0.015584072098135948, + -0.012748596258461475, + -0.01988515816628933, + -0.003214767202734947, + -0.01857421174645424, + -0.0021615903824567795, + -0.02343502826988697, + 0.009824741631746292, + -0.006908251438289881, + -0.0046987892128527164, + 0.005188553594052792, + -0.027323679998517036, + -0.014994882978498936, + 0.000515541119966656, + 0.022919487208127975, + 0.040359508246183395, + -0.003951254766434431, + -0.01782299391925335, + -0.017130695283412933, + -0.014589814469218254, + -0.008042441681027412, + 0.00419797794893384, + 0.025762327015399933, + -0.018132317811250687, + 0.026425166055560112, + -0.01439832802861929, + -0.008594807237386703, + -0.00534689798951149, + -0.009265011176466942, + -0.002796810818836093, + -0.021034078672528267, + -0.0047724382020533085, + -0.015495694242417812, + -0.02315516211092472, + 0.00016547950508538634, + -0.02654300443828106, + 0.004146423656493425, + -0.015775559470057487, + 0.027721384540200233, + 0.00204007001593709, + -0.006315378937870264, + 0.004385782405734062, + 0.003746879519894719, + -0.014324679039418697, + -0.008278117515146732, + -0.005612033419311047, + 0.006208588369190693, + -0.004094869829714298, + 0.004139058757573366, + -0.009139807894825935, + -0.013845962472259998, + -0.025173136964440346, + 0.008241293951869011, + 0.0055052428506314754, + -0.015245288610458374, + 0.002156066708266735, + 0.0004708915948867798, + -0.004334228113293648, + -0.0038628762122243643, + -0.01623218134045601, + 0.01360292173922062, + -0.0008165803737938404, + 0.023140432313084602, + -0.004267944023013115, + -0.027603546157479286, + 0.0016709057381376624, + 0.013006366789340973, + 0.006742541678249836, + 0.01969367265701294, + -0.010273998603224754, + -0.007990887388586998, + 0.012299339286983013, + 0.012343527749180794, + -0.012954812496900558, + 0.016173262149095535, + -0.005240107420831919, + 0.005284296814352274, + -0.0013045031810179353, + 0.007718387525528669, + -0.011894270777702332, + 0.00928710587322712, + 0.02935638651251793, + 0.015996504575014114, + 0.0030766758136451244, + -0.01373548898845911, + 0.013131569139659405, + 0.016850830987095833, + -0.017027588561177254, + -0.0009537511505186558, + 0.012991636991500854, + 0.007814130745828152, + -0.009913119487464428, + 0.020268132910132408, + -0.003039851551875472, + -0.00667994050309062, + 0.010524404235184193, + -0.0033657471649348736, + 0.008653726428747177, + -0.003914430271834135, + -0.005895581096410751, + 0.00928710587322712, + 0.027029085904359818, + 0.0161438025534153, + 0.0034909499809145927, + 0.01125352643430233, + -0.005564162041991949, + 0.01055386383086443, + 0.00033141931635327637, + 0.003389683086425066, + 0.013455623760819435, + -0.02119610644876957, + -0.008764199912548065, + -0.0002533976803533733, + -0.00040207605343312025, + 0.019737862050533295, + 0.010185619816184044, + 0.03423193097114563, + -0.005380040034651756, + 0.006749906577169895, + -0.006816190667450428, + 0.0066762580536305904, + 0.010148795321583748, + 0.011157783679664135, + 0.005335851106792688, + 0.005652540363371372, + 0.0022904756478965282, + 0.006204905919730663, + -0.019826238974928856, + -0.0016285576857626438, + -0.01611434295773506, + 0.01318312343209982, + -0.010229809209704399, + -0.00345780816860497, + 0.00041427413816563785, + -0.010273998603224754, + -0.01181325688958168, + -0.02372962236404419, + -0.038857072591781616, + -0.006753589026629925, + 0.012034203857183456, + 0.021505430340766907, + 0.024142054840922356, + -0.019281238317489624, + 0.006031831260770559, + -0.004691424313932657, + -0.002809699159115553, + -0.0013845962239429355, + 0.0037744976580142975, + -0.012535015121102333, + 0.0036585009656846523, + 0.005206965375691652, + -0.02699962630867958, + -0.009677443653345108, + -0.014965423382818699, + 0.0009445450268685818, + 0.01392697636038065, + -0.0018890900537371635, + -0.010804269462823868, + -0.004949194844812155, + -0.0020658469293266535, + -0.028752466663718224, + -0.0015530677046626806, + -0.024878542870283127 + ], + "de188cbd-8053-4129-9d8b-18ccbec40b12": [ + -0.02339872159063816, + -0.019557341933250427, + -0.006152947433292866, + -0.034154586493968964, + -0.07289186865091324, + -0.0199886541813612, + 0.017373820766806602, + 0.05105665698647499, + -0.006014792248606682, + 0.04466783627867699, + -0.009461925365030766, + 0.04749832674860954, + -0.02486788108944893, + -0.007069487124681473, + 0.004670309368520975, + -0.005445324815809727, + -0.03658072277903557, + 0.020999545231461525, + 0.00798602681607008, + -0.013647007755935192, + 0.0736466720700264, + -0.030245814472436905, + -0.017360342666506767, + 0.03881815820932388, + -0.015567698515951633, + -0.03240237757563591, + 0.0282240342348814, + -0.009724756702780724, + -0.005819353740662336, + -0.008680171333253384, + -0.004916292615234852, + 0.007911895401775837, + 0.025528328493237495, + -0.028628390282392502, + 0.02835881896317005, + 0.0047410717234015465, + -0.011396094225347042, + 0.029383188113570213, + -0.0225091390311718, + 0.011638707481324673, + -0.013330263085663319, + 0.024086127057671547, + 0.015217256732285023, + 0.0025979860220104456, + -0.026768352836370468, + 0.039626866579055786, + 0.02117476612329483, + 0.013950275257229805, + 0.007911895401775837, + -0.0023183065932244062, + 0.0004277326224837452, + 0.023304373025894165, + 0.0030512013472616673, + 0.015068992972373962, + 0.028897961601614952, + 0.010951302945613861, + -0.009589971974492073, + 0.07235272973775864, + 0.013532441109418869, + -0.022765232250094414, + -0.0004372097027953714, + -0.0015761451795697212, + 0.01851949468255043, + 0.0061293598264455795, + -0.00510499207302928, + -0.04170256108045578, + 0.011685882695019245, + 0.0015525578055530787, + -0.020999545231461525, + -0.0012425517197698355, + 0.010910866782069206, + 0.02494875341653824, + -0.03226759284734726, + -0.004437804687768221, + -0.005024120677262545, + -0.020891716703772545, + 0.025797899812459946, + -0.024126563221216202, + 0.008889088407158852, + 0.01286525372415781, + -0.03253716230392456, + 0.019705606624484062, + 0.0162955392152071, + -0.01397723238915205, + 0.039276424795389175, + 0.030299726873636246, + -0.03860250115394592, + -0.0370929054915905, + -0.039788611233234406, + -0.02310219407081604, + 0.01824992522597313, + 0.016632501035928726, + 0.00042794321780093014, + 0.014462458901107311, + -0.0031792474910616875, + -0.029356230050325394, + 0.024180477485060692, + 0.019382121041417122, + -0.029787544161081314, + -0.007898416370153427, + -0.01779165491461754, + 0.02803533524274826, + -0.0370929054915905, + 0.0038750763051211834, + 0.04135211929678917, + -0.034855470061302185, + 0.03596070781350136, + -0.005950769409537315, + -0.022360876202583313, + 0.04092080518603325, + 0.023061759769916534, + -0.005546413827687502, + -0.014799422584474087, + 0.009987588040530682, + 0.02280566655099392, + -0.09386445581912994, + -0.0071840547025203705, + -0.02307523787021637, + -0.022306961938738823, + -0.07267621159553528, + 0.03242933377623558, + 0.03224063664674759, + 0.02310219407081604, + -0.013222434557974339, + 0.009232791140675545, + -0.006284363102167845, + -0.030731040984392166, + 0.003371316473931074, + -0.01255524717271328, + 0.011018695309758186, + 0.009940413758158684, + -0.03180932253599167, + -0.02852056175470352, + 0.009731495752930641, + 0.003945838660001755, + -0.0017100881086662412, + 0.009495621547102928, + 0.05022098869085312, + -0.01678076572716236, + 0.04046253487467766, + -0.011530879884958267, + -0.04073210805654526, + -0.001892048167064786, + -0.013431351631879807, + 0.008477993309497833, + 0.034990254789590836, + -0.02719966694712639, + 0.02310219407081604, + 0.00627762358635664, + 0.01310786698013544, + -0.011968931183218956, + 0.016470760107040405, + 0.022226089611649513, + -0.004754550289362669, + -0.023034801706671715, + 0.01811514049768448, + 0.022873058915138245, + 0.02347959391772747, + -0.02817011997103691, + 0.005094883032143116, + -0.030218856409192085, + -0.02055475302040577, + 0.024288304150104523, + -0.01134891901165247, + -0.004737702198326588, + 0.009947152808308601, + 0.04906183481216431, + 0.04730962961912155, + -0.062001220881938934, + 0.015284649096429348, + 0.03423545882105827, + -0.013606572523713112, + 0.029221445322036743, + -0.00025988282868638635, + 0.0032432705629616976, + -0.011685882695019245, + 0.01010215561836958, + 0.005078034941107035, + 0.043832167983055115, + -0.013896360993385315, + -0.004410848021507263, + 0.0099943270906806, + -0.04005818068981171, + -0.002464885590597987, + -0.014543330296874046, + 0.0035684399772435427, + 0.019314728677272797, + -0.0017538932152092457, + -0.0331302173435688, + 0.0421338751912117, + 0.001912265899591148, + 0.00839038286358118, + 0.01179371029138565, + 0.05229668319225311, + -0.019624734297394753, + -0.008646475151181221, + -0.014381587505340576, + -0.00809385534375906, + 0.03135105222463608, + 0.025663115084171295, + 0.008322990499436855, + -0.03321108967065811, + -0.05903594568371773, + 0.024450046941637993, + -0.03631114959716797, + -0.009852803312242031, + -0.0028523930814117193, + -0.010984999127686024, + 0.008410600945353508, + -0.015338563360273838, + 0.018748629838228226, + -0.03202497959136963, + 0.013990710489451885, + 0.014947686344385147, + -0.022549575194716454, + 0.0008727345848456025, + -0.012845035642385483, + 0.008747563697397709, + 0.015284649096429348, + 0.011773493140935898, + -0.024005256593227386, + -0.0054756514728069305, + 0.04577307775616646, + -0.04593481868505478, + -0.034316327422857285, + -0.023142630234360695, + -0.03221367672085762, + 0.026229212060570717, + -0.022023912519216537, + -0.0184116680175066, + 0.043778255581855774, + 0.0002910519251599908, + 0.00809385534375906, + -0.038548585027456284, + -0.011733056977391243, + -0.012002628296613693, + -0.010951302945613861, + -0.01385592482984066, + 0.017481649294495583, + -0.006894266232848167, + 0.03623028099536896, + 0.006213600747287273, + 0.011544357985258102, + 0.027240101248025894, + 0.03202497959136963, + 0.03550243750214577, + -0.03299543261528015, + 0.040004268288612366, + 0.034855470061302185, + -0.030164942145347595, + -0.008073637261986732, + 0.03765900433063507, + 0.005472281947731972, + -0.003484199056401849, + 0.0037301823031157255, + 0.03658072277903557, + 0.0023924384731799364, + -0.009226051159203053, + -0.026674004271626472, + -0.008673432283103466, + -0.01591813936829567, + -0.021430857479572296, + 0.011733056977391243, + -0.039815567433834076, + 0.03229454904794693, + -0.01064129639416933, + 0.017360342666506767, + -0.048280082643032074, + 0.01074912492185831, + 0.003642571857199073, + -0.044101737439632416, + -0.015796832740306854, + -0.006055227946490049, + 0.012218284420669079, + -0.03172845020890236, + 0.008754302747547626, + 0.017063815146684647, + 0.03372327238321304, + 0.012198066338896751, + 0.029679715633392334, + -0.02366829290986061, + 0.03348065912723541, + -0.00705600855872035, + 0.02467918209731579, + -0.021943042054772377, + -0.02364133484661579, + 0.024625267833471298, + 0.009333879686892033, + -0.02779272198677063, + -0.012467636726796627, + 0.005563261918723583, + -0.03186323493719101, + 0.04251127317547798, + 0.010486293584108353, + 0.02800837904214859, + 0.006719045341014862, + -0.035178955644369125, + -0.012548508122563362, + 0.0023199913557618856, + 0.034801553934812546, + -0.03771291673183441, + -0.006216970272362232, + 0.03587983921170235, + -0.009536057710647583, + 0.011335440911352634, + 0.015001599676907063, + 0.029248403385281563, + -0.015136385336518288, + -0.0216060783714056, + 0.024652225896716118, + 0.03237542137503624, + 0.01675380766391754, + -0.010486293584108353, + -0.016955986618995667, + 0.0004245735763106495, + 0.004916292615234852, + 0.02787359245121479, + 0.014812900684773922, + -0.0018330796156078577, + -0.019584299996495247, + -0.0011995888780802488, + 0.005438585299998522, + -0.03140496835112572, + 0.00038645463064312935, + 0.039519038051366806, + -0.039761655032634735, + 0.0184116680175066, + 0.008868870325386524, + -0.00044773981790058315, + -0.019314728677272797, + 0.002333469921723008, + -0.022212611511349678, + -0.016955986618995667, + -0.016632501035928726, + -0.0015138069866225123, + -0.01846558228135109, + -0.01795339770615101, + -0.04739049822092056, + -0.0061293598264455795, + 0.0009940413292497396, + -0.011382616125047207, + 0.04323911294341087, + -0.014705072157084942, + 0.01833079569041729, + -0.0031640841625630856, + -0.017414256930351257, + -0.010823257267475128, + 0.03623028099536896, + -0.031162353232502937, + -0.004235627129673958, + 0.0005997944390401244, + -0.030353641137480736, + 0.03641897812485695, + 0.0028759806882590055, + 0.013363959267735481, + 0.006799916736781597, + -0.025097016245126724, + -0.01610683836042881, + 0.013593094423413277, + 0.01010215561836958, + 0.0011086087906733155, + -0.028978832066059113, + -0.025285715237259865, + -0.01661902293562889, + -0.0014144028536975384, + 0.026323562487959862, + 0.021296072751283646, + 0.03361544385552406, + 0.003450502874329686, + 0.013080909848213196, + 0.00462313462048769, + 0.062432534992694855, + 0.034909382462501526, + 0.002100965240970254, + -0.026566175743937492, + 0.005950769409537315, + 0.022333918139338493, + 0.008902566507458687, + -0.017104249447584152, + 0.019368642941117287, + -0.011773493140935898, + 0.024530917406082153, + -0.008882349357008934, + -0.014179409481585026, + 0.06043771281838417, + 0.03674246370792389, + 0.007750152610242367, + -0.0046096560545265675, + -0.0199886541813612, + -0.034208498895168304, + -0.05650198459625244, + -0.03647289425134659, + -0.02817011997103691, + 0.009805628098547459, + -0.031108438968658447, + 0.03703898936510086, + -0.009172136895358562, + -0.0005020751268602908, + 0.014341152273118496, + 0.014314195141196251, + -0.01246089767664671, + -0.006028270814567804, + -0.00716383708640933, + 0.016902072355151176, + 0.015203777700662613, + -0.030542341992259026, + 0.012299155816435814, + 0.005647502839565277, + -0.006638174410909414, + -0.011288265697658062, + 0.005303800106048584, + -0.00391888152807951, + -0.007938852533698082, + -0.017575997859239578, + 0.06108468398451805, + -0.014597244560718536, + 0.03838684409856796, + -0.009124962612986565, + -0.06178556755185127, + 0.014799422584474087, + 0.03671550750732422, + 0.06954919546842575, + -0.017454691231250763, + 0.023439157754182816, + -0.028628390282392502, + 0.01390983909368515, + 0.04310432821512222, + 0.035232868045568466, + 0.007332318462431431, + -0.034720685333013535, + -0.034828513860702515, + 0.013788532465696335, + -0.03585287928581238, + -0.03585287928581238, + 0.014799422584474087, + 0.0034151216968894005, + 0.019665170460939407, + 0.0092058340087533, + -0.019746040925383568, + -0.0013764945324510336, + 0.029248403385281563, + 0.012588943354785442, + 0.011631968431174755, + -0.011679143644869328, + 0.013310045003890991, + -0.008154508657753468, + -0.012636118568480015, + -0.0030006570741534233, + -0.018263403326272964, + 0.02478701062500477, + 0.009758452884852886, + 0.044236525893211365, + -0.024854402989149094, + 0.010129112750291824, + 0.0010471129789948463, + 0.02028518170118332, + -0.01835775375366211, + 0.00958323199301958, + 0.01591813936829567, + 0.017535563558340073, + -0.010405422188341618, + 0.007251447066664696, + 0.039006855338811874, + -0.03830597177147865, + -0.004525415133684874, + -0.05046360194683075, + -0.03782074525952339, + 0.04008513689041138, + -0.01045259740203619, + -0.02600007690489292, + -0.02484092488884926, + 0.022360876202583313, + -0.03137800842523575, + 0.007898416370153427, + -0.014422023668885231, + 0.006142838392406702, + -0.003484199056401849, + 3.17219237331301e-5, + 0.02806229144334793, + -0.01935516484081745, + -0.038764242082834244, + -0.019557341933250427, + -0.030704082921147346, + 0.017589477822184563, + 0.05469585955142975, + -0.005441955290734768, + -0.012231762520968914, + 0.008774520829319954, + 0.016012489795684814, + -0.0062675150111317635, + 0.05151492729783058, + -0.014691594056785107, + -0.0030629951506853104, + -0.001278775162063539, + -0.0137076610699296, + -0.06334907561540604, + 0.01235306914895773, + -0.017966875806450844, + -0.004656830802559853, + -0.02481396682560444, + 0.04987054690718651, + 0.0018229706911370158, + 0.0274153221398592, + 0.011975671164691448, + -0.0060518584214150906, + 0.0014034515479579568, + 0.010742385871708393, + -0.0063382769003510475, + -0.00507129542529583, + 0.011571315117180347, + 0.006483171135187149, + 0.01648423820734024, + -0.0205277968198061, + 0.01680772192776203, + -0.01306743174791336, + 0.03135105222463608, + -0.02280566655099392, + 0.018991243094205856, + 0.009414751082658768, + -0.021862169727683067, + -0.02071649581193924, + 0.009522578679025173, + -0.004660200327634811, + 0.016093360260128975, + 0.0033308807760477066, + -0.013283087871968746, + -0.02101302333176136, + 0.005061186850070953, + 0.04722875729203224, + -0.016282059252262115, + -0.008969959802925587, + 0.019422557204961777, + -0.009030613116919994, + -0.021835213527083397, + 0.005485760513693094, + -0.013235912658274174, + 0.0071570975705981255, + -0.014529851265251637, + -0.005647502839565277, + 0.02763097919523716, + -0.008868870325386524, + 0.02356046438217163, + -0.01626858115196228, + -0.024719618260860443, + 0.020460402593016624, + 0.02790055051445961, + -0.023466113954782486, + 0.015190299600362778, + 0.0024817336816340685, + 0.01242046244442463, + -0.021916083991527557, + -0.013330263085663319, + 0.0038009444251656532, + -0.004383890889585018, + 0.026849225163459778, + -0.030434513464570045, + 0.030407555401325226, + -0.01838470995426178, + -0.03644593432545662, + 0.008114073425531387, + 0.04801051318645477, + -0.016578586772084236, + 0.011436529457569122, + -0.005182493478059769, + -0.04032775014638901, + -0.00023313639394473284, + -0.02787359245121479, + 0.017333384603261948, + -0.015742918476462364, + 0.0169694647192955, + 0.012137413024902344, + 0.008659953251481056, + 0.035178955644369125, + 0.0025760834105312824, + -0.016551630571484566, + 0.0028069030959159136, + 0.011719578877091408, + 0.013599833473563194, + -0.013262869790196419, + 0.012063281610608101, + 0.003780726809054613, + -0.039438169449567795, + -0.015446391887962818, + -0.02489483915269375, + -0.00798602681607008, + 0.00839038286358118, + -0.04207995906472206, + -0.04070515185594559, + -0.005603697616606951, + 0.02329089306294918, + -0.023304373025894165, + 0.024207433685660362, + 0.03348065912723541, + -0.026296604424715042, + -0.035556353628635406, + 0.024315262213349342, + 0.005674459505826235, + 0.01680772192776203, + -0.012750686146318913, + 0.0004801725153811276, + -0.03733551874756813, + 0.03614940866827965, + 0.012642857618629932, + -0.02171390689909458, + -0.02605399116873741, + 0.030623212456703186, + -0.00934061873704195, + -0.017077293246984482, + -0.02846664749085903, + -0.003379740519449115, + -0.01134891901165247, + -0.0037234430201351643, + 0.03606853634119034, + -0.014651157893240452, + 0.03803640231490135, + 0.00783776305615902, + 0.030757997184991837, + 0.026903139427304268, + 0.003686377080157399, + -0.01572944037616253, + 0.0007387917139567435, + -0.048954010009765625, + 0.05237755551934242, + -0.014826378785073757, + 0.026579653844237328, + -0.012582204304635525, + -0.01054694689810276, + -0.026013556867837906, + -0.017090771347284317, + 0.009273226372897625, + 0.015284649096429348, + 0.01069521065801382, + 0.026674004271626472, + -0.03143192455172539, + 0.00025861922767944634, + 0.017346864566206932, + 0.01236654818058014, + 0.025312673300504684, + -0.012892210856080055, + -0.0003236952470615506, + 0.005610436666756868, + -0.014961164444684982, + 0.005044338759034872, + 0.012541769072413445, + -0.017144685611128807, + -0.011962192133069038, + -0.04299649968743324, + 0.02600007690489292, + 0.02830490656197071, + -0.00029084132984280586, + -0.06426561623811722, + 0.011409572325646877, + 0.03162062168121338, + 0.0002506163436919451, + 0.002535647712647915, + -0.052350595593452454, + -0.020298661664128304, + 0.015689004212617874, + 0.03256411850452423, + -0.0045051975175738335, + 0.028763175010681152, + 0.00803994107991457, + -0.02500266581773758, + -0.000548828742466867, + 0.02808924950659275, + 0.007029051426798105, + -0.007399711292237043, + -0.0031741929706186056, + -0.009131701663136482, + 0.025204844772815704, + -0.03159366548061371, + -0.007595149800181389, + 0.002299773506820202, + 0.007231229450553656, + -0.009226051159203053, + -0.005660980939865112, + -0.005078034941107035, + -0.02811620570719242, + 0.01930125057697296, + -0.0028237514197826385, + -0.0007998663350008428, + 0.004188451915979385, + 0.0038818155881017447, + 0.022711317986249924, + 0.03280673176050186, + -0.009866281412541866, + 0.023937862366437912, + 0.02573050744831562, + -0.020756930112838745, + -0.004313128534704447, + 0.0021565642673522234, + 0.011685882695019245, + -0.017589477822184563, + 0.03561026602983475, + -0.006452844478189945, + 0.011733056977391243, + -0.028574476018548012, + -0.012305894866585732, + 0.029140574857592583, + -0.03331891819834709, + -0.03210585191845894, + -0.012090238742530346, + -0.005027490202337503, + -0.007649063598364592, + 0.001546660903841257, + 0.02806229144334793, + -0.014502894133329391, + -0.015608133748173714, + 0.0055261957459151745, + -0.013006778433918953, + 0.021579120308160782, + 0.005637393798679113, + -0.010311072692275047, + 0.03210585191845894, + 0.009367575868964195, + 0.016524674370884895, + -0.014853335916996002, + 0.002594616264104843, + 0.005489130038768053, + 0.017616434022784233, + -0.02071649581193924, + 0.05464194715023041, + 0.010877170599997044, + -0.048738352954387665, + -0.049034878611564636, + 0.01401766762137413, + 0.009306922554969788, + -0.0005530407652258873, + -0.017292950302362442, + 0.0028490235563367605, + 0.030784955248236656, + 0.0036728985141962767, + -0.023708729073405266, + 0.014138974249362946, + -0.020244747400283813, + -0.011625229381024837, + -0.019368642941117287, + 0.00965062528848648, + 0.03658072277903557, + -0.029491016641259193, + 0.0018751999596133828, + -0.02031213976442814, + 0.044721752405166626, + 0.010681732557713985, + 0.017912961542606354, + 0.00023397878976538777, + -0.011503922753036022, + -0.00017090349865611643, + 0.014637679792940617, + 0.0041581252589821815, + 0.0354754813015461, + -0.05202711373567581, + 0.04561133310198784, + 0.0258383359760046, + -0.01768382638692856, + -0.015082471072673798, + -0.008457775227725506, + 0.002892828779295087, + -0.0028523930814117193, + 0.02296740934252739, + -0.011544357985258102, + 0.0037335518281906843, + 0.002992232795804739, + -0.01903167925775051, + 0.015149863436818123, + -0.012784382328391075, + -0.02139042131602764, + 0.03685029223561287, + 0.03280673176050186, + -0.02109389379620552, + 0.01632249541580677, + -0.01878906600177288, + -0.003669528756290674, + 0.031081482768058777, + 0.015689004212617874, + -0.030731040984392166, + 0.035448525100946426, + 0.010445858351886272, + -0.03221367672085762, + 0.01070868968963623, + -0.02366829290986061, + -0.043778255581855774, + 0.004407478030771017, + -0.02573050744831562, + 0.0025558655615895987, + 0.004987054970115423, + 0.014085059985518456, + 0.030353641137480736, + -0.027159230783581734, + -0.01250133290886879, + 0.02749619446694851, + 0.014624201692640781, + -0.0053442358039319515, + 0.009124962612986565, + 0.009819106198847294, + -0.005694677587598562, + 0.013404394499957561, + 0.0036964858882129192, + 0.004832051694393158, + 0.0021093895193189383, + -0.017212077975273132, + -0.033965885639190674, + 0.014961164444684982, + 0.024611789733171463, + -0.011369137093424797, + 0.0005943187861703336, + 0.004700636025518179, + -0.0023772751446813345, + 0.02698400989174843, + 0.010513250716030598, + -0.030191900208592415, + -0.014543330296874046, + -0.022819144651293755, + 0.018586888909339905, + 0.003521264996379614, + -0.0003609717823565006, + 0.00783776305615902, + -0.040139053016901016, + -0.004286171402782202, + -0.03399284556508064, + 0.01392331812530756, + 0.01247437670826912, + 0.01405810285359621, + 0.0328606478869915, + -0.007824284955859184, + -0.02529919520020485, + 0.00716383708640933, + 0.007204272318631411, + 0.012251980602741241, + 0.01806122623383999, + 0.00017795867461245507, + 0.00510499207302928, + -0.011874581687152386, + 0.0207973662763834, + 0.017508605495095253, + 0.034073714166879654, + -0.024611789733171463, + -0.0092058340087533, + -0.03752421960234642, + -0.005118470638990402, + 0.0004586910945363343, + -0.01386940386146307, + -0.02361437864601612, + -0.005408258643001318, + -0.0038279015570878983, + 0.00320283486507833, + -0.004916292615234852, + -0.01420636661350727, + 0.030164942145347595, + 0.013283087871968746, + 0.003207889385521412, + -0.02364133484661579, + -0.01351896207779646, + -0.004565850831568241, + -0.04207995906472206, + 0.044182609766721725, + 0.014866814948618412, + 0.023978298529982567, + 0.03167453780770302, + 0.023735685274004936, + 0.001603944692760706, + 0.011827407404780388, + -0.009347357787191868, + -0.039060771465301514, + -0.002458146307617426, + 0.0042625837959349155, + -0.017454691231250763, + 0.01916646398603916, + -0.00017574735102243721, + 0.007022312376648188, + 0.008996916934847832, + -0.0011456747306510806, + 0.016740329563617706, + -0.0072379689663648605, + -0.03784770146012306, + -0.03587983921170235, + -0.03323804587125778, + 0.006196752656251192, + -0.014246802777051926, + 0.01376157533377409, + -0.00514542730525136, + 0.011423051357269287, + 0.019813433289527893, + -0.002033572643995285, + -0.06685349345207214, + 0.010257158428430557, + 0.00716383708640933, + 0.003612245200201869, + -0.018020790070295334, + -0.006513497792184353, + -0.0005875795031897724, + -0.0006549721583724022, + -0.009765192866325378, + -0.042403444647789, + 0.003612245200201869, + -0.0426730141043663, + -0.012278937734663486, + -0.002522169379517436, + -0.0013790217926725745, + -0.009320400655269623, + -0.006065336987376213, + -0.02269783802330494, + -0.02133650705218315, + 0.004862378351390362, + -0.011389355175197124, + -0.04164864867925644, + 0.014138974249362946, + 0.014785943552851677, + -0.009111483581364155, + 0.06394212692975998, + 0.022226089611649513, + 0.017292950302362442, + -0.03668854758143425, + -0.019314728677272797, + 0.0362841933965683, + 0.005364453420042992, + 0.0030697344336658716, + -0.0071570975705981255, + -0.00568119902163744, + 0.005974357016384602, + -0.008316250517964363, + -0.019206900149583817, + 0.005694677587598562, + 0.002663693856447935, + -0.013390916399657726, + -0.006291102152317762, + 0.009482143446803093, + 0.026660526171326637, + 0.01151066180318594, + 0.0015390792395919561, + 0.013768315315246582, + 0.012521550990641117, + 0.02031213976442814, + -0.03725464642047882, + 0.03329196199774742, + -0.02486788108944893, + 0.013754836283624172, + -0.013188738375902176, + -0.048954010009765625, + -0.039006855338811874, + -0.020460402593016624, + 0.011800450272858143, + 0.014462458901107311, + -0.024099605157971382, + 0.014192888513207436, + -0.022239569574594498, + -0.018748629838228226, + 0.0410555936396122, + 0.01575639843940735, + -0.01773774065077305, + 0.026862703263759613, + 0.05081404373049736, + -0.002458146307617426, + -0.017535563558340073, + 0.007008833810687065, + 0.028817089274525642, + -0.0017892743926495314, + 0.007514278404414654, + 0.000196175737073645, + -0.009677582420408726, + 0.013478526845574379, + -0.00595750892534852, + -0.027105316519737244, + 0.0020133547950536013, + -0.02337176539003849, + 0.017993833869695663, + -0.0516766719520092, + 0.017495127394795418, + -0.00404692767187953, + -0.0030023418366909027, + -0.012912428006529808, + -0.014799422584474087, + 0.008464514277875423, + -0.029221445322036743, + 0.016767287626862526, + -0.01426028087735176, + -0.03811727464199066, + 0.0013276349054649472, + 0.018883416429162025, + -0.01798035390675068, + 0.028628390282392502, + -0.007972548715770245, + 0.020460402593016624, + -0.01680772192776203, + -0.0017522084526717663, + 0.01160501129925251, + -0.014368109405040741, + -0.013802011497318745, + 0.0261079054325819, + -0.02337176539003849, + 0.03291456028819084, + -0.0250296238809824, + 0.002751304302364588, + -0.020379532128572464, + 0.019705606624484062, + -0.019867347553372383, + -0.021794777363538742, + -0.007905155420303345, + 0.016174232587218285, + 0.002835544990375638, + -0.008363425731658936, + 0.004107580985873938, + -0.03698507696390152, + 0.0429425872862339, + 0.013047213666141033, + -0.008410600945353508, + 0.004613025579601526, + -0.008410600945353508, + 0.029140574857592583, + 0.015392477624118328, + -0.013525701127946377, + 0.007696238812059164, + 0.012211545370519161, + -0.02318306639790535, + 0.026633568108081818, + 0.004148016683757305, + -0.002336839446797967, + -0.034505028277635574, + -0.008154508657753468, + 0.03380414471030235, + -0.026620090007781982, + -0.01814209669828415, + 0.012636118568480015, + 0.01578335464000702, + -0.017697304487228394, + 0.0016191080212593079, + -0.0007804909255355597, + 0.0026333671994507313, + 0.019328206777572632, + 0.015540741384029388, + -0.025743985548615456, + 0.007608628366142511, + -0.005917073227465153, + -0.005115100648254156, + 0.003945838660001755, + -0.017023378983139992, + 0.02581137791275978, + -0.039707738906145096, + -0.02264392375946045, + 0.0015449761413037777, + 0.04469479247927666, + -0.016605544835329056, + -0.01849253848195076, + -0.01416593138128519, + 0.0025289084296673536, + 0.0011389354476705194, + -0.005027490202337503, + 0.024342218413949013, + 0.009387793950736523, + 0.024773532524704933, + 0.01824992522597313, + -0.009832585230469704, + 0.023520028218626976, + -0.01029085461050272, + 0.020460402593016624, + -0.0026316822040826082, + 0.006250666454434395, + 0.003140496788546443, + -0.010661514475941658, + 0.018263403326272964, + -0.004319867584854364, + 0.019152985885739326, + 0.04598873108625412, + -0.03757813200354576, + 0.020029090344905853, + -0.03695812076330185, + -0.007972548715770245, + 0.02098606526851654, + 0.01250133290886879, + -0.005876637529581785, + 0.009980848990380764, + 0.01683467999100685, + -0.00527347344905138, + 0.01376157533377409, + 0.013397655449807644, + 0.02133650705218315, + 0.001360488822683692, + 0.019503427669405937, + 0.010594122111797333, + -0.008194943889975548, + -0.008397121913731098, + -0.0046635703183710575, + -0.023762641474604607, + 0.0007665911689400673, + -0.029949285089969635, + -0.024274826049804688, + 0.022226089611649513, + 0.006442735902965069, + 0.0017892743926495314, + 0.012359809130430222, + -0.022765232250094414, + -0.011214134283363819, + 0.007898416370153427, + -0.0002567238116171211, + 0.005792396608740091, + 0.008275815285742283, + -0.039114683866500854, + 0.0516766719520092, + 0.024557875469326973, + -0.011038913391530514, + 0.016686415299773216, + -0.014799422584474087, + 0.003312347922474146, + -0.0008289293618872762, + 0.020460402593016624, + 0.02245522476732731, + 0.012669814750552177, + -0.024086127057671547, + 0.020703015848994255, + 0.01416593138128519, + 0.024477005004882812, + 0.002132976893335581, + 0.011874581687152386, + 0.010223462246358395, + 0.00789167732000351, + -0.029113616794347763, + -0.01816905289888382, + 0.012110455892980099, + -0.011962192133069038, + 0.020756930112838745, + -0.017589477822184563, + -0.003858228214085102, + -0.02811620570719242, + -0.0015432912623509765, + -0.000371291273040697, + -0.04310432821512222, + -0.00034665086423046887, + 0.021794777363538742, + -0.0007489006384275854, + 0.010001067072153091, + 0.02245522476732731, + -0.023304373025894165, + 0.011389355175197124, + 0.0008483047713525593, + -0.016255103051662445, + 0.0002186048513976857, + 0.016686415299773216, + 0.0008676801226101816, + -0.012130673974752426, + 0.00690774479880929, + -0.007750152610242367, + -0.006412408780306578, + 0.017454691231250763, + 0.009414751082658768, + -0.004228887613862753, + -0.002522169379517436, + -0.017400776967406273, + 0.009064309298992157, + 0.002106019761413336, + -0.003517895471304655, + 0.0032045196276158094, + -0.01366722583770752, + 0.012373287230730057, + -0.027186188846826553, + -0.034855470061302185, + -0.0500592477619648, + 0.0012930961092934012, + 0.006954919546842575, + 0.009091266430914402, + -0.000896322017069906, + -0.02139042131602764, + -0.015244213864207268, + 0.00442095659673214, + 0.012730468064546585, + -0.004761289339512587, + 0.008996916934847832, + -0.020864758640527725, + -0.007177315186709166, + 0.008835174143314362, + -0.012683293782174587, + 0.012002628296613693, + 0.0056845685467123985, + 0.0047410717234015465, + 0.03226759284734726, + -0.019732562825083733, + 0.005350974854081869, + -0.01865428127348423, + -0.019274292513728142, + -0.0026249431539326906, + 0.0009030613000504673, + 0.0011018695076927543, + 0.006874048616737127, + -0.01637640967965126, + 0.007022312376648188, + -0.015015078708529472, + 0.010843474417924881, + -0.019975176081061363, + -0.015163342468440533, + 0.005519456695765257, + 0.016982942819595337, + -0.01029085461050272, + -0.01420636661350727, + -0.019489949569106102, + -0.00710992282256484, + -0.00894974172115326, + -0.00099825335200876, + -0.010877170599997044, + 0.0031152244191616774, + -0.005617175716906786, + 0.019099071621894836, + -0.027010967954993248, + 0.030488427728414536, + 0.020298661664128304, + -0.02031213976442814, + 0.0023654813412576914, + -0.016982942819595337, + -0.013802011497318745, + -0.003996382933109999, + 0.0036021361593157053, + -0.011813928373157978, + -0.010526728816330433, + -0.006793177220970392, + 0.006597738713026047, + -0.012690032832324505, + -0.0014295661821961403, + 0.021511727944016457, + -0.01260916143655777, + -0.004680418409407139, + 0.0071570975705981255, + -0.01886993646621704, + -0.0030882672872394323, + -0.00256260484457016, + -0.029329273849725723, + -0.00227450137026608, + 0.008774520829319954, + -0.020837802439928055, + 0.005880007054656744, + 0.022765232250094414, + -0.005074665416032076, + 0.007426667958498001, + 0.018452102318406105, + 0.026350518688559532, + -0.014233323745429516, + 0.023115672171115875, + -0.022306961938738823, + -0.005374562460929155, + 0.006294471677392721, + -0.007062748074531555, + -0.013593094423413277, + 0.009879759512841702, + 0.001174316625110805, + 0.00106227642390877, + 0.02066258154809475, + -0.017023378983139992, + 0.012198066338896751, + 0.03345370292663574, + -0.04202604666352272, + 0.015931617468595505, + 0.010877170599997044, + 0.0024766791611909866, + 0.0008693649433553219, + 0.017171643674373627, + -0.02176782116293907, + -0.0166998952627182, + -0.011463486589491367, + 0.005088143981993198, + 0.016848158091306686, + -0.014772465452551842, + -0.002321676118299365, + -0.008073637261986732, + -0.027550108730793, + -0.00020186199981253594, + 0.00948888249695301, + 0.012016106396913528, + -0.019853869453072548, + 0.009071048349142075, + 0.012380026280879974, + -0.0018111770041286945, + 0.007082965690642595, + -0.013384176418185234, + 0.010331290774047375, + -0.003888554871082306, + -0.03690420463681221, + 0.02738836593925953, + -0.010284115560352802, + 0.03172845020890236, + 0.00904409121721983, + -0.022306961938738823, + -0.03749725967645645, + -0.004896074999123812, + 0.014853335916996002, + 0.02806229144334793, + 0.02068953774869442, + -0.038575541228055954, + -0.02841273322701454, + -0.002752989064902067, + 0.0076558031141757965, + 0.011079348623752594, + -0.028628390282392502, + -0.0019796586129814386, + 0.04226865991950035, + 0.024908317252993584, + 0.008848652243614197, + -0.005431846249848604, + -0.017468171194195747, + 0.015095950104296207, + -0.010378465056419373, + 0.006988616194576025, + 0.011631968431174755, + -0.005384671501815319, + -0.004656830802559853, + 0.007082965690642595, + 0.0012973081320524216, + -0.015513784252107143, + -0.019341684877872467, + 0.010054980404675007, + 0.006216970272362232, + -0.018209489062428474, + 0.007177315186709166, + -0.03566418215632439, + 0.019099071621894836, + 0.021916083991527557, + -0.002795109525322914, + -0.00837690383195877, + 6.146944997453829e-6, + -0.006345016416162252, + -0.0033561531454324722, + -0.007554714102298021, + -0.016228146851062775, + -0.022468702867627144, + -0.00014299874601420015, + 0.0007316312403418124, + -0.0017960136756300926, + 0.004869117867201567, + 0.008969959802925587, + 0.007783849257975817, + 0.007635585498064756, + 0.0048994445241987705, + 0.022980887442827225, + 0.003374685999006033, + -0.01935516484081745, + 0.01346504781395197, + -0.00449508847668767, + -0.008882349357008934, + -0.006860570050776005, + -0.0003011608205270022, + -0.013505483977496624, + 0.019907783716917038, + 0.003868337022140622, + -0.009387793950736523, + 0.009765192866325378, + -0.002075693104416132, + -0.00029063073452562094, + -0.0029231554362922907, + 0.004148016683757305, + -0.003391534322872758, + -0.006166425999253988, + -0.01779165491461754, + 0.006169795524328947, + 0.013337002135813236, + 0.021592600271105766, + -0.005593588575720787, + 0.018775587901473045, + -0.007264925632625818, + 0.011247830465435982, + -0.017697304487228394, + 0.009785410016775131, + 0.0026165188755840063, + -0.005970987491309643, + 0.01792643964290619, + 0.008316250517964363, + -0.004003122448921204, + 0.0205277968198061, + 0.01675380766391754, + 0.001876884838566184, + 0.01578335464000702, + -0.030272770673036575, + -2.8826145353377797e-5, + -0.002778261201456189, + -0.004939879756420851, + -0.00255249603651464, + 0.028897961601614952, + -0.008787998929619789, + -0.01385592482984066, + -0.00514542730525136, + 0.024153519421815872, + 0.0036290932912379503, + 0.023061759769916534, + 0.0015180190093815327, + 0.008619518019258976, + 0.011874581687152386, + -0.0129191679880023, + 0.010061720386147499, + -0.012292415834963322, + 0.013653747737407684, + 0.013485265895724297, + 0.005404889117926359, + -0.01578335464000702, + 0.017522083595395088, + 0.012730468064546585, + -0.01396375335752964, + -0.0032516946084797382, + -0.00829603336751461, + -0.008046680130064487, + 0.04291562736034393, + -0.004535524174571037, + -0.016039445996284485, + -0.0001414192229276523, + -0.015015078708529472, + -0.004596177488565445, + 0.01664598099887371, + 0.024247869849205017, + 0.011982410214841366, + 0.015028556808829308, + -0.000891267554834485, + -0.0011936919763684273, + -0.026714440435171127, + -0.017495127394795418, + 0.005556522402912378, + -0.0013596463249996305, + -0.003322456730529666, + 0.007116661872714758, + 0.008531907573342323, + 0.011813928373157978, + 0.010769343003630638, + -0.016389887779951096, + 0.030811911448836327, + -0.00919235497713089, + 0.01661902293562889, + -0.04488349333405495, + 0.0018549822270870209, + -0.002323361113667488, + 0.002788370242342353, + -0.017414256930351257, + 0.019489949569106102, + 0.00019238490494899452, + 0.01583726890385151, + -0.005259994883090258, + 0.002394123235717416, + 0.027428802102804184, + 0.014691594056785107, + 0.010594122111797333, + 0.01640336588025093, + -0.003361207665875554, + 0.010742385871708393, + -0.01064129639416933, + 0.022118262946605682, + -0.022306961938738823, + 0.012784382328391075, + 0.02364133484661579, + 0.013990710489451885, + -0.01010215561836958, + -0.00650001922622323, + -0.0005547255859710276, + 0.010627818293869495, + 0.00620349170640111, + -0.011369137093424797, + -0.02033909596502781, + -0.013323523104190826, + 0.0049971635453403, + -0.002997287316247821, + 0.00848473235964775, + -0.0025811379309743643, + 0.01019650511443615, + 0.00908452644944191, + 0.006088924594223499, + -0.005600327625870705, + -0.008208422921597958, + 0.0006924592889845371, + 0.01675380766391754, + -0.02302132360637188, + -0.002997287316247821, + 0.0010033078724518418, + -0.013539180159568787, + -0.01664598099887371, + -0.0001220438425661996, + 0.031243223696947098, + 0.00010930242569884285, + 0.0011802135268226266, + -0.004555741790682077, + 0.006274254061281681, + 0.013950275257229805, + -0.014044624753296375, + 0.017481649294495583, + 0.005886746570467949, + -0.01407158188521862, + -0.02703792415559292, + -0.014300717040896416, + 0.003101745853200555, + -0.019422557204961777, + -0.013647007755935192, + -0.009873020462691784, + -0.03835988789796829, + 0.015459869988262653, + -0.026593133807182312, + 0.02136346511542797, + 0.006166425999253988, + 0.02792750671505928, + -0.002955166855826974, + 0.03641897812485695, + -0.029652757570147514, + -0.01675380766391754, + 0.03639202192425728, + 0.016605544835329056, + 0.017077293246984482, + -0.02253609709441662, + 0.03234846517443657, + 0.02608094923198223, + -0.0278196781873703, + -0.01618771068751812, + 0.004161495249718428, + -0.004889335483312607, + -0.006462953519076109, + -0.0005951611674390733, + -0.015055513940751553, + -0.0021565642673522234, + -0.0006633962038904428, + -0.03221367672085762, + -0.01026389840990305, + -0.018452102318406105, + 0.005586849059909582, + -0.022980887442827225, + -0.02071649581193924, + 0.011369137093424797, + -0.0010075198952108622, + 0.015850747004151344, + -0.0010968151036649942, + 0.010270637460052967, + -0.015715962275862694, + -0.0012905689654871821, + 0.00027146594948135316, + 0.009536057710647583, + 0.01390983909368515, + -0.0038009444251656532, + -0.0002115496899932623, + -0.007103183306753635, + 0.005900225136429071, + -0.014610722661018372, + 0.005937290843576193, + 0.00447487086057663, + 0.009293444454669952, + 0.01637640967965126, + -0.03345370292663574, + -0.005297061055898666, + -0.0011675773421302438, + 0.020729973912239075, + 0.018937330693006516, + 0.0036290932912379503, + -0.005226298701018095, + -0.02846664749085903, + 0.004377151373773813, + 0.0023503180127590895, + 0.011813928373157978, + 0.014314195141196251, + 0.009610189124941826, + 0.01382896862924099, + -0.014179409481585026, + -0.009569753892719746, + 0.022765232250094414, + 0.012056541629135609, + -0.001022683223709464, + -0.007574931718409061, + 0.021107371896505356, + -0.00298886327072978, + 0.0008365110261365771, + -0.013208956457674503, + -0.007062748074531555, + 0.017387298867106438, + -0.0007514278404414654, + 0.002961906138807535, + -0.0025187996216118336, + 0.0005399834481067955, + 0.01357287634164095, + 0.022118262946605682, + -0.01626858115196228, + 0.007379493210464716, + -0.012191327288746834, + 0.004134538117796183, + 0.004070514813065529, + -0.0037975749000906944, + 0.0024547765497118235, + 0.006914484314620495, + 0.004397369455546141, + -0.022900016978383064, + -0.005408258643001318, + 0.019368642941117287, + -0.008626257069408894, + -0.006665131542831659, + -0.007015572860836983, + -0.002993917791172862, + -0.007264925632625818, + -0.011355658993124962, + 0.055100217461586, + 0.013411133550107479, + 0.021565642207860947, + 0.009259747341275215, + 0.005061186850070953, + -0.034208498895168304, + 0.00255249603651464, + 0.02693009562790394, + 0.009670842438936234, + -0.0015710907755419612, + -0.021484771743416786, + -0.007460364606231451, + 0.022023912519216537, + 0.003224737476557493, + -0.015163342468440533, + -0.004828682169318199, + 0.01591813936829567, + 0.0062607754953205585, + -0.006526976358145475, + 0.02234739623963833, + 0.009374314919114113, + -0.00590359466150403, + 0.005964247975498438, + 0.0012914113467559218, + -0.00837690383195877, + 0.010917606763541698, + -0.0032213679514825344, + -0.012386766262352467, + 0.01694250851869583, + 0.005428476724773645, + 0.011665664613246918, + -0.010236941277980804, + -0.004030079580843449, + -0.02133650705218315, + 0.010722167789936066, + -0.004383890889585018, + 0.007453625090420246, + -0.005361083894968033, + -0.004973576404154301, + -0.009347357787191868, + -0.013471786864101887, + -0.009414751082658768, + 0.014044624753296375, + 0.011760014109313488, + -0.03267194703221321, + 0.003376370994374156, + -0.020649103447794914, + 0.0037335518281906843, + -0.010816517286002636, + 0.010183027014136314, + 0.008167986758053303, + -0.0028978832997381687, + 0.006432626862078905, + 0.02551485039293766, + 0.015715962275862694, + -0.007884938269853592, + 0.01412549614906311, + 0.02103997953236103, + 0.004289540927857161, + 0.0001560560631332919, + -0.031243223696947098, + -0.030218856409192085, + 0.005694677587598562, + -0.011719578877091408, + -0.022414790466427803, + -0.006190013140439987, + -0.020460402593016624, + -0.000494072213768959, + 0.0018280252115800977, + -0.02339872159063816, + -0.01795339770615101, + -0.01621466688811779, + 0.009037352167069912, + -0.009327140636742115, + -0.004319867584854364, + 0.016982942819595337, + 0.021686948835849762, + 0.02827794849872589, + 0.024059168994426727, + -0.0007821757462807, + -0.010823257267475128, + 0.0026165188755840063, + -0.018559930846095085, + -0.007190793752670288, + 0.011038913391530514, + -0.011854364536702633, + 0.020177355036139488, + -0.03237542137503624, + 0.02470613829791546, + -0.024571353569626808, + -0.021700426936149597, + -0.014853335916996002, + -0.0006250666920095682, + 0.020945630967617035, + 0.002473309636116028, + -0.0038144229911267757, + 0.012494593858718872, + 0.014961164444684982, + -0.0063989306800067425, + -0.011780232191085815, + -0.00025988282868638635, + -0.008269076235592365, + -0.015068992972373962, + -0.002011670032516122, + -0.012036324478685856, + -0.0050039030611515045, + 0.013060691766440868, + -0.002097595715895295, + -0.002683911705389619, + -0.011227612383663654, + -0.004912923090159893, + -0.019314728677272797, + 0.019476471468806267, + 0.009637146256864071, + 0.0028540780767798424, + -0.0008061843691393733, + 0.003448817878961563, + -0.004319867584854364, + -0.020649103447794914, + -0.015877705067396164, + 0.012211545370519161, + 0.013545919209718704, + 0.0036998556461185217, + -0.030353641137480736, + 0.001954386243596673, + 0.011631968431174755, + 0.0033174024429172277, + -0.01242046244442463, + -0.002368851099163294, + -0.01290568895637989, + 0.026175297796726227, + 0.016470760107040405, + 0.017198599874973297, + 0.008774520829319954, + 0.01583726890385151, + 0.0005088143516331911, + -0.01050651166588068, + 0.005529565736651421, + -0.006402300205081701, + -0.03701203316450119, + 0.008046680130064487, + 0.005856419913470745, + 0.004650091752409935, + 0.022226089611649513, + 0.008787998929619789, + 0.00620349170640111, + -0.00785124208778143, + -0.039195556193590164, + -0.001389973098412156, + -0.0030057113617658615, + 0.010371726006269455, + -0.0169694647192955, + -0.001593835768289864, + -0.001507067703641951, + 0.00020217789278831333, + -0.003162399400025606, + -0.02285958081483841, + 0.023816555738449097, + -0.029356230050325394, + 0.00505107780918479, + 0.0036931163631379604, + -7.128877041395754e-5, + -0.0278196781873703, + 0.00452878512442112, + 0.0003314875066280365, + -0.008693649433553219, + 0.017131207510828972, + 0.013384176418185234, + 0.0025289084296673536, + -0.005731743294745684, + 0.021808255463838577, + 0.019557341933250427, + 0.023789599537849426, + -0.015082471072673798, + -0.009825846180319786, + -0.022320440039038658, + 0.002490157727152109, + 0.010580643080174923, + -0.029194489121437073, + 0.007413189392536879, + -0.01060086116194725, + -0.017306428402662277, + -0.0004110950685571879, + -0.0005046023288741708, + -0.026579653844237328, + -0.01567552611231804, + 0.012440679594874382, + 0.0056306542828679085, + 0.01570248417556286, + -0.006661761552095413, + 0.0026552698109298944, + 0.02044692449271679, + 0.009408011101186275, + -0.003349413862451911, + 0.011355658993124962, + 0.0036728985141962767, + 0.0384407564997673, + 0.024638745933771133, + 0.02540702186524868, + 5.454591155285016e-5, + -0.003915512003004551, + 0.0036290932912379503, + 0.01164544653147459, + -0.003076473716646433, + 0.005991205107420683, + 0.009165397845208645, + -0.019921261817216873, + -0.021929562091827393, + -0.011220873333513737, + -0.003265172941610217, + -0.0019358533900231123, + -0.01651119440793991, + 0.014745508320629597, + 0.005462172906845808, + 0.00849821139127016, + -0.009428229182958603, + 0.005283582489937544, + 0.026202255859971046, + -0.007008833810687065, + -0.007568192668259144, + -0.010573904030025005, + -0.010924345813691616, + 0.015486827120184898, + -0.02519136667251587, + -0.0010833365377038717, + -0.014543330296874046, + 0.0023772751446813345, + 0.004178343340754509, + 0.0028793502133339643, + -0.00221047829836607, + 0.018586888909339905, + -0.011443269439041615, + -0.00928670447319746, + 0.013370698317885399, + 0.005563261918723583, + 0.040139053016901016, + 0.006456214003264904, + -0.015176820568740368, + 0.009306922554969788, + 0.0025187996216118336, + -0.029221445322036743, + 0.0042962804436683655, + -0.009259747341275215, + -0.011011956259608269, + -0.004441174678504467, + -0.00454900274053216, + -0.006035010330379009, + 0.007008833810687065, + -0.0074199289083480835, + -2.1784142518299632e-5, + -0.02117476612329483, + 0.005259994883090258, + 0.017778176814317703, + -0.000727419217582792, + 0.01881602220237255, + -0.005384671501815319, + -0.0032584338914602995, + 0.012892210856080055, + 0.005566631443798542, + -0.019382121041417122, + 0.012932646088302135, + 0.00894974172115326, + -0.013181999325752258, + -0.005782288033515215, + -0.008545385673642159, + -0.0003205362008884549, + -0.04544959217309952, + 0.012204805389046669, + -0.020622145384550095, + -0.010984999127686024, + 0.017373820766806602, + -0.006510128267109394, + 0.00419519143179059, + 0.02581137791275978, + 0.02407264895737171, + 0.013498743996024132, + -0.004596177488565445, + -0.01835775375366211, + 0.006725784856826067, + 0.024288304150104523, + -0.007022312376648188, + 0.003615614725276828, + 0.012952864170074463, + -0.021686948835849762, + -0.010742385871708393, + -0.022873058915138245, + 0.02527223713696003, + 0.009495621547102928, + -0.008916045539081097, + 0.014866814948618412, + -0.007581671234220266, + 0.01432767417281866, + 0.004896074999123812, + -0.007534496486186981, + 0.004127798601984978, + 0.0025609200820326805, + 0.0008820010698400438, + -0.022926973178982735, + 0.03747030347585678, + -0.024005256593227386, + -0.0024632008280605078, + 0.0029501125682145357, + -0.0076018888503313065, + -0.02765793725848198, + -0.010991738177835941, + -0.0003938256995752454, + 0.035286784172058105, + 0.007642324548214674, + 0.0021363464184105396, + 0.022293483838438988, + 0.013343741185963154, + -0.015190299600362778, + -0.005202711094170809, + -0.013566137291491032, + -0.009731495752930641, + -0.006048488896340132, + -0.00011783180525526404, + 0.021026501432061195, + -0.010931084863841534, + 0.004481609910726547, + -0.004575959872454405, + 0.0072110118344426155, + 0.02500266581773758, + -0.015068992972373962, + 0.016389887779951096, + -0.021619556471705437, + 0.011369137093424797, + -0.006307950243353844, + 0.015567698515951633, + -0.024665703997015953, + 0.01286525372415781, + 0.001646065036766231, + -0.03337283059954643, + 0.002705814316868782, + 0.005472281947731972, + 0.00785124208778143, + -0.027536630630493164, + -0.00467704888433218, + 0.0095427967607975, + 0.00590359466150403, + -0.009455186314880848, + -0.026593133807182312, + -0.0061630564741790295, + -0.01570248417556286, + -0.004148016683757305, + 0.01401766762137413, + 0.005061186850070953, + -0.008174726739525795, + 0.009293444454669952, + 0.004555741790682077, + -0.008686910383403301, + 0.023870470002293587, + 0.01846558228135109, + 0.018910372629761696, + -0.02041996829211712, + -0.0057115256786346436, + 0.00713014043867588, + 0.011214134283363819, + -0.02248218283057213, + -0.009408011101186275, + -0.009360836818814278, + 0.0038447496481239796, + -0.007763631176203489, + -0.011719578877091408, + 0.01250133290886879, + -0.012312633916735649, + -0.00019175310444552451, + 0.012319372966885567, + -0.03342674672603607, + 0.00824211910367012, + -0.004936510231345892, + -0.013074170798063278, + -0.004205300472676754, + 0.008963219821453094, + -0.0011161904549226165, + 0.015715962275862694, + -0.005546413827687502, + 0.020622145384550095, + -0.020163875073194504, + 0.006665131542831659, + 0.019732562825083733, + -0.01030433364212513, + -0.002505321055650711, + -0.0017126152524724603, + -0.02345263585448265, + 0.012177849188446999, + 0.030811911448836327, + 0.0006996197625994682, + 0.010297594591975212, + -0.005505978129804134, + 0.005418367683887482, + -0.003214628668501973, + 0.021579120308160782, + 0.014758986420929432, + -0.03760508820414543, + 0.03194410726428032, + -0.0063382769003510475, + -0.005758700426667929, + -0.017454691231250763, + 0.0076288459822535515, + 0.010445858351886272, + 0.008026462979614735, + 0.023142630234360695, + 0.008262337185442448, + -0.006392191164195538, + -0.005654241889715195, + -0.0014076635707169771, + 0.0010285800090059638, + 0.01255524717271328, + 0.0053947800770401955, + 0.008572342805564404, + 0.015149863436818123, + -0.014233323745429516, + -0.0005319805932231247, + 0.028871003538370132, + -0.02058170922100544, + -0.008909306488931179, + 0.011187177151441574, + 0.00163848337251693, + -0.0007830181275494397, + 0.0007661699783056974, + -0.013754836283624172, + 0.009475404396653175, + 0.01045259740203619, + 0.01789948344230652, + -0.021323028951883316, + 0.02234739623963833, + 0.02719966694712639, + -0.0034572421573102474, + -0.0007156255305744708, + 0.001467474619857967, + 0.008632996119558811, + -0.0141120171174407, + 0.009711278602480888, + -0.029976243153214455, + -0.012346330098807812, + 0.024355698376893997, + -0.009515839628875256, + -0.009023873135447502, + 0.01382896862924099, + -0.019786477088928223, + -0.006435996387153864, + -0.010964781045913696, + 0.0022711316123604774, + 0.0004970206646248698, + -0.017131207510828972, + -0.003292130073532462, + 0.01672685146331787, + -0.007008833810687065, + -0.009697799570858479, + -0.012898949906229973, + 0.00519934156909585, + -0.005233037751168013, + 0.0008761042263358831, + -0.007305361330509186, + -0.0014632624806836247, + -0.021794777363538742, + -0.02709183841943741, + 0.008794738911092281, + -0.028709260746836662, + 0.013235912658274174, + -0.00633153785020113, + -0.009441708214581013, + -0.006358494982123375, + 0.004815203603357077, + 0.0012770903995260596, + 0.01675380766391754, + -0.004151386208832264, + -0.01824992522597313, + 0.0032786515075713396, + -0.030084071680903435, + 0.04313128441572189, + 0.005074665416032076, + -0.0017791654681786895, + 0.009899977594614029, + 0.023520028218626976, + -0.00924626924097538, + 0.004707375541329384, + -0.0036661592312157154, + -0.0137750543653965, + -0.020029090344905853, + 0.0018802544800564647, + 0.0018179162871092558, + -0.021619556471705437, + 0.02827794849872589, + -0.009576492942869663, + -0.00424910569563508, + 0.013235912658274174, + -0.012022845447063446, + 0.007649063598364592, + 0.024315262213349342, + 0.03170149400830269, + -0.0008752618450671434, + 0.012029584497213364, + 0.012878731824457645, + 0.001176843885332346, + 0.012090238742530346, + 0.030865825712680817, + -0.010991738177835941, + -0.006014792248606682, + 0.010075198486447334, + 0.007884938269853592, + -0.021269114688038826, + -0.01613379642367363, + 0.016632501035928726, + -0.00924626924097538, + -0.004255844745784998, + 0.01889689452946186, + 0.021484771743416786, + 0.00036876407102681696, + 0.008066898211836815, + -0.013545919209718704, + -0.009920195676386356, + 0.004653461277484894, + -0.010897388681769371, + 0.044290438294410706, + -0.019489949569106102, + -0.007857981137931347, + 0.011867842637002468, + -0.006506758742034435, + -0.0014337782049551606, + -0.012198066338896751, + -0.001892048167064786, + -0.006301211193203926, + 0.015055513940751553, + 0.02470613829791546, + 0.014098539017140865, + 0.005037599243223667, + 0.005243146792054176, + -0.013377437368035316, + -0.018128618597984314, + 0.03318413347005844, + 0.004057036712765694, + -0.004484979901462793, + 0.005303800106048584, + 0.02470613829791546, + 0.010971521027386189, + -0.01691555045545101, + 0.03221367672085762, + -0.017939919605851173, + 0.015500305220484734, + -0.00234863325022161, + 0.013552658259868622, + 0.020056048408150673, + 0.008491471409797668, + -0.012676553800702095, + 0.010351507924497128, + 0.008316250517964363, + 0.0068706790916621685, + -0.004892705008387566, + -0.003135442268103361, + -0.0011928495950996876, + 0.025663115084171295, + 0.025528328493237495, + 0.020379532128572464, + -0.00849821139127016, + 0.018182532861828804, + 0.004956728313118219, + -0.02516440860927105, + 0.009030613116919994, + 0.018586888909339905, + -0.0017201969167217612, + 0.0006284362752921879, + -0.01412549614906311, + -0.022145219147205353, + 0.01160501129925251, + 0.0011557836551219225, + -0.012164370156824589, + 0.005324018187820911, + -0.004282801877707243, + 0.0023873839527368546, + 0.01835775375366211, + 0.0050039030611515045, + 0.03172845020890236, + -0.023762641474604607, + 0.0067392634227871895, + -0.030596254393458366, + -0.008862131275236607, + 0.0034471331164240837, + 0.002416025847196579, + -0.001760632498189807, + -0.012912428006529808, + -0.004441174678504467, + -0.0029332642443478107, + -0.008275815285742283, + 0.015095950104296207, + -0.0021936302073299885, + 0.012764164246618748, + 0.014556808397173882, + -0.009832585230469704, + 0.014705072157084942, + -0.00675948103889823, + -0.007649063598364592, + 0.007123401388525963, + 0.0052667343989014626, + 0.0068100253120064735, + -0.0027327712159603834, + 0.0053172786720097065, + -0.011578054167330265, + -0.035151995718479156, + -0.008538646623492241, + 0.0061630564741790295, + 0.008747563697397709, + 0.004724223632365465, + -0.008646475151181221, + -0.002237435430288315, + -0.011517400853335857, + 0.005138688255101442, + -0.0027007597964257, + 0.0026283126790076494, + 0.020056048408150673, + -0.016929028555750847, + 0.00848473235964775, + -0.00597772654145956, + 0.030542341992259026, + 0.0021734123583883047, + 0.007291882764548063, + -0.02288653887808323, + 0.04644700139760971, + 0.010385205037891865, + 0.014893772080540657, + 0.0073660146445035934, + -0.003292130073532462, + -0.00207063858397305, + -0.003935729619115591, + -0.004707375541329384, + 0.008713867515325546, + 0.009441708214581013, + 0.0325910784304142, + -0.004798355512320995, + 0.0024092865642160177, + -0.007702977862209082, + 0.00039487870526500046, + -0.024692660197615623, + -0.0030815282370895147, + -0.016093360260128975, + -0.011079348623752594, + 0.002544071990996599, + -0.025447458028793335, + -0.005044338759034872, + -0.008996916934847832, + -0.010236941277980804, + 0.0042962804436683655, + 0.011591533198952675, + -0.006125990301370621, + -0.008538646623492241, + -0.00041846613748930395, + -0.004778137430548668, + 0.009515839628875256, + -0.014098539017140865, + -0.002977069467306137, + 0.021430857479572296, + -0.019179943948984146, + 0.010095416568219662, + -0.01426028087735176, + -0.005687938071787357, + 0.002646845765411854, + -0.021835213527083397, + 0.025851814076304436, + -0.0033527833875268698, + -0.013148302212357521, + -0.019665170460939407, + 0.0006764535792171955, + 0.010081937536597252, + 0.005229668226093054, + -0.00899017695337534, + 0.010519989766180515, + 0.012636118568480015, + -0.018802544102072716, + 0.00298886327072978, + -0.0031472358386963606, + -0.0016098414780572057, + -0.012238502502441406, + 0.006227079313248396, + 0.00905757024884224, + 0.011989149264991283, + 0.004781507421284914, + -0.007116661872714758, + 0.03835988789796829, + -0.01591813936829567, + 0.025690071284770966, + -0.003324141725897789, + -0.004242366179823875, + 0.013505483977496624, + -1.0214195754087996e-5, + 0.007857981137931347, + 0.0006427572225220501, + -0.020109960809350014, + -0.0018330796156078577, + 0.01020998414605856, + -0.02101302333176136, + -0.007453625090420246, + -0.02047388255596161, + 0.001273720758035779, + 0.009306922554969788, + -0.0007484794477932155, + 0.0005134476232342422, + -0.00818820483982563, + 0.0005682041519321501, + -0.03159366548061371, + -0.010573904030025005, + 0.0013638583477586508, + 0.011025434359908104, + -0.0007341585005633533, + -0.0003260118537582457, + -0.014651157893240452, + -5.907385639147833e-5, + 0.004444544203579426, + 0.003575179260224104, + -0.007804066874086857, + 0.03830597177147865, + 0.007251447066664696, + -0.010338029824197292, + 0.020298661664128304, + 0.009091266430914402, + -0.04092080518603325, + -0.019678648561239243, + 0.007554714102298021, + -0.0022559682838618755, + -0.010769343003630638, + 0.005859789438545704, + -0.009691060520708561, + -0.00681339530274272, + 0.023870470002293587, + 0.008215161971747875, + -0.022428268566727638, + -0.0002815748448483646, + -0.009819106198847294, + -0.013161781243979931, + -0.01190153881907463, + 0.03787466138601303, + -0.004279432352632284, + -0.014085059985518456, + 0.008477993309497833, + -0.018101660534739494, + -0.013188738375902176, + 0.011888060718774796, + 0.02041996829211712, + 0.0022947192192077637, + 0.026768352836370468, + -0.02811620570719242, + -0.02041996829211712, + 0.001169262221083045, + 0.005324018187820911, + 0.009569753892719746, + -0.007514278404414654, + -0.01691555045545101, + 0.005660980939865112, + -0.009495621547102928, + 0.027024446055293083, + -0.016740329563617706, + -0.014799422584474087, + 0.01567552611231804, + -0.006914484314620495, + 0.010311072692275047, + -0.006483171135187149, + 0.0024564615450799465, + -0.019597778096795082, + 0.016416845843195915, + -0.018694715574383736, + -0.008592560887336731, + 0.00047890888527035713, + 0.0019678648095577955, + -0.0034943080972880125, + 3.809263216680847e-5, + 0.01186110358685255, + 0.009846063330769539, + -0.007992765866219997, + 0.0003070576931349933, + 0.016201188787817955, + -0.012932646088302135, + -0.025609200820326805, + -0.009185615926980972, + -0.011631968431174755, + 0.029356230050325394, + -0.023331329226493835, + -0.014475937932729721, + -0.0009375999798066914, + 0.011975671164691448, + 0.006803286261856556, + 0.0184116680175066, + -0.012171109206974506, + -0.01275742519646883, + 0.004353564232587814, + -0.009367575868964195, + 0.017818612977862358, + -0.003824531799182296, + 0.01372114010155201, + 0.015486827120184898, + 0.00799950584769249, + 0.013552658259868622, + 0.002961906138807535, + -0.018236447125673294, + 0.01768382638692856, + 0.013950275257229805, + -0.006789807695895433, + -0.009987588040530682, + -0.02567659318447113, + -0.0024817336816340685, + 0.0014480991521850228, + 0.00135037989821285, + -0.011126523837447166, + 0.014192888513207436, + -0.013566137291491032, + -0.023897428065538406, + -0.005381301511079073, + 0.005896855145692825, + -0.0011456747306510806, + 0.0043939994648098946, + 0.012669814750552177, + 0.001611526357010007, + 0.011429790407419205, + 0.008794738911092281, + -0.0003302239056210965, + 0.019476471468806267, + 0.010432379320263863, + -0.01643032394349575, + -0.01401766762137413, + 0.003726812545210123, + 0.003061310388147831, + -0.00848473235964775, + 0.007527756970375776, + -0.0026249431539326906, + -0.02125563658773899, + -0.05011316016316414, + -0.009974109940230846, + -0.0011043967679142952, + 0.00970453955233097, + 0.014678115025162697, + -0.04261910170316696, + -0.017279470339417458, + -0.002699075033888221, + -0.010742385871708393, + -0.0027142383623868227, + 0.01895080879330635, + 0.003989643882960081, + 0.010580643080174923, + 0.004801725037395954, + 0.03720073401927948, + -0.010391944088041782, + 0.0017025063280016184, + -0.022549575194716454, + -0.0053711929358541965, + 0.007143619004637003, + 0.008026462979614735, + 0.002485103439539671, + 0.014637679792940617, + -0.014988121576607227, + 0.004929771181195974, + -0.014718551188707352, + 0.0166998952627182, + 0.011375876143574715, + -0.001134723424911499, + -0.01824992522597313, + 0.0015390792395919561, + -0.009293444454669952, + -0.004683787934482098, + -0.0073929717764258385, + 0.009758452884852886, + -0.006806655786931515, + 0.015338563360273838, + 0.02259001135826111, + -0.001668810029514134, + -0.013128085061907768, + 0.002085801912471652, + -0.008410600945353508, + -0.011355658993124962, + -0.010728906840085983, + -0.003986274357885122, + -0.021740863099694252, + -0.018667759373784065, + -0.01854645274579525, + 0.021579120308160782, + -0.007433407474309206, + -0.01056042592972517, + 0.0008777890470810235, + -0.01651119440793991, + 0.013700922019779682, + 0.002107704523950815, + 0.0016831309767439961, + 0.0071570975705981255, + -0.006190013140439987, + 0.002559235319495201, + 0.010728906840085983, + -0.018613845109939575, + -0.0056070671416819096, + 0.021754341199994087, + 0.030865825712680817, + -0.027267059311270714, + 0.021700426936149597, + 0.019476471468806267, + -0.003632462816312909, + -0.00849821139127016, + -0.006078815553337336, + -0.026593133807182312, + 0.02253609709441662, + -0.0036728985141962767, + -0.003528004279360175, + -0.01397723238915205, + 0.0009215942700393498, + -0.0048185731284320354, + -0.021484771743416786, + -0.011315222829580307, + 0.026700960472226143, + -0.007696238812059164, + 0.00149443163536489, + -0.027064882218837738, + 0.00031548176775686443, + -0.030299726873636246, + 0.012750686146318913, + -0.03566418215632439, + -0.026417912915349007, + 0.023317851126194, + 0.013316784054040909, + 0.00692796241492033, + 0.009279965423047543, + -0.014745508320629597, + -0.003588657593354583, + 0.024086127057671547, + 0.005398150067776442, + -0.0034572421573102474, + 0.005671089980751276, + 0.001981343375518918, + 0.024854402989149094, + 0.02768489345908165, + 0.008073637261986732, + -0.010984999127686024, + -0.015136385336518288, + 0.0020925411954522133, + 0.0005719949840568006, + 0.012413723394274712, + 0.004424326121807098, + 0.006240557879209518, + -0.005714895203709602, + -0.01862732321023941, + -0.015459869988262653, + -0.007467103656381369, + 0.006193383131176233, + -0.016578586772084236, + 0.024207433685660362, + 0.012575465254485607, + -0.014502894133329391, + 0.0019510167185217142, + -0.010001067072153091, + 0.00011193495447514579, + -0.012535030022263527, + -0.004933140706270933, + 0.0025861922185868025, + -0.009832585230469704, + -0.00713014043867588, + -0.0023991777561604977, + -0.005906964186578989, + -0.021916083991527557, + -0.0034943080972880125, + 0.009461925365030766, + 0.01034476887434721, + -0.007231229450553656, + -0.011207395233213902, + -0.018532974645495415, + 0.01277090422809124, + 0.007884938269853592, + -0.00590359466150403, + 0.019503427669405937, + 0.0016915551386773586, + 0.014570287428796291, + -0.0038043141830712557, + -0.020379532128572464, + -0.0066078477539122105, + -0.003558330936357379, + -0.00469726650044322, + 0.015581176616251469, + 0.020163875073194504, + -0.006988616194576025, + -0.005017381627112627, + 0.03693116456270218, + 0.003753769677132368, + -0.0365537628531456, + -0.020002134144306183, + -0.017993833869695663, + 0.0067123062908649445, + -0.016147274523973465, + 0.012110455892980099, + 0.008835174143314362, + -0.006001314148306847, + 0.0013074170565232635, + -0.002936634002253413, + -0.007224490400403738, + 0.017939919605851173, + -0.0005054447683505714, + 0.005741852335631847, + 0.0003024244506377727, + -0.02139042131602764, + -0.015149863436818123, + -0.0035010473802685738, + -0.034478072077035904, + -0.011948714032769203, + 0.011207395233213902, + -0.0016603859839960933, + -0.02825099229812622, + -0.004670309368520975, + 0.020069526508450508, + 0.008781259879469872, + -0.016335973516106606, + -0.01564856991171837, + 0.01357287634164095, + 0.0030899522826075554, + 0.028574476018548012, + -0.006429257337003946, + -0.02066258154809475, + -0.0019678648095577955, + -0.0010285800090059638, + 0.010998477227985859, + 0.0018751999596133828, + 0.01295960322022438, + -0.005876637529581785, + -0.005900225136429071, + 0.019314728677272797, + 0.014624201692640781, + -0.01792643964290619, + 0.0007000409532338381, + -0.006382082123309374, + 0.023573942482471466, + 0.01164544653147459, + -0.015958575531840324, + 0.0032213679514825344, + 0.021740863099694252, + -0.005357714369893074, + -0.009805628098547459, + -0.029895372688770294, + 0.006651652976870537, + -0.004279432352632284, + 0.0006663446547463536, + 0.009226051159203053, + -0.015608133748173714, + -0.003959317225962877, + 0.018829502165317535, + 0.0051622758619487286, + -0.027010967954993248, + 0.020406488329172134, + -0.0034673509653657675, + 0.02071649581193924, + -0.0027108686044812202, + -0.00249858177267015, + -0.005489130038768053, + -0.01822296716272831, + -0.010169547982513905, + 0.005270103923976421, + -0.021619556471705437, + 0.00028747168835252523, + 0.01171283982694149, + -0.005832832306623459, + 0.017346864566206932, + 0.00127624801825732, + -0.0030680496711283922, + 0.011106305755674839, + 0.03752421960234642, + -0.014462458901107311, + 0.02085128054022789, + 0.014341152273118496, + 8.439874363830313e-5, + 0.019921261817216873, + 0.012029584497213364, + 0.006035010330379009, + -0.009118223562836647, + -0.018371231853961945, + 0.007514278404414654, + 0.002453091787174344, + -0.001378179294988513, + -0.0019628105219453573, + 0.019328206777572632, + -0.00038371680420823395, + 0.029625801369547844, + 0.011578054167330265, + 0.0008878979133442044, + -0.0036459413822740316, + 0.006651652976870537, + -0.0022795558907091618, + 0.018613845109939575, + -0.017117729410529137, + -0.007662542164325714, + 0.008518428541719913, + -0.00959671102464199, + -0.02771184965968132, + -0.0020790626294910908, + 0.0005926339654251933, + -0.01659206673502922, + 0.002023463835939765, + -0.016255103051662445, + -0.004333346150815487, + -0.00464335223659873, + 0.023573942482471466, + 0.00965062528848648, + 0.006200122181326151, + 0.01645728014409542, + 0.00015847798204049468, + -0.01779165491461754, + 0.009279965423047543, + 1.3386387763603125e-5, + 0.009792149998247623, + -0.01819601096212864, + 0.004235627129673958, + 0.0010117319179698825, + 0.004437804687768221, + -0.00212455284781754, + 0.0011751590063795447, + 0.022280003875494003, + 0.007783849257975817, + -0.005111731123179197, + -0.012764164246618748, + -0.005300430580973625, + -0.0020217790734022856, + -0.007116661872714758, + -0.030569298192858696, + -0.01246089767664671, + 0.01806122623383999, + 0.020244747400283813, + -0.016848158091306686, + -0.014395066536962986, + 0.0058665284886956215, + 0.012305894866585732, + -0.01610683836042881, + 0.00943496823310852, + -0.009967369958758354, + -0.025097016245126724, + 0.002532278187572956, + -0.013175259344279766, + 0.0013369013322517276, + -0.0035246347542852163, + 0.014422023668885231, + 0.02125563658773899, + -0.0062675150111317635, + 0.0066348048858344555, + 0.016201188787817955, + -0.01134891901165247, + 0.0018061226001009345, + 0.003307293402031064, + -0.004458022769540548, + -0.014866814948618412, + -0.004238996654748917, + -0.005118470638990402, + 0.006564042530953884, + -0.013525701127946377, + 0.01164544653147459, + 0.013438090682029724, + 0.00033275113673880696, + 0.00020280970784369856, + -0.001601417432539165, + 0.001829709974117577, + -3.395956809981726e-5, + 0.0005922127747908235, + -0.01661902293562889, + -0.01803426817059517, + 0.0028540780767798424, + -0.010951302945613861, + 0.012602422386407852, + 0.024463525041937828, + 0.014516373164951801, + 0.006995355244725943, + 0.001318368362262845, + 0.006216970272362232, + -0.006526976358145475, + -0.014853335916996002, + -0.02364133484661579, + 0.0030579406302422285, + -0.015635089948773384, + 0.0065033892169594765, + -0.023816555738449097, + -0.007325578946620226, + 0.010762603022158146, + -0.0064966497011482716, + -0.008026462979614735, + -0.035448525100946426, + -0.00027125535416416824, + 0.007541235536336899, + 0.0008032359182834625, + 0.017252514138817787, + 0.0023654813412576914, + -0.008976698853075504, + 0.005226298701018095, + 0.0028372297529131174, + -0.0162955392152071, + 0.007325578946620226, + -0.004458022769540548, + -0.025555286556482315, + -0.008255597203969955, + -8.950583833211567e-6, + -0.0013866034569218755, + -0.00106227642390877, + 0.016794243827462196, + 0.03579896688461304, + 0.01803426817059517, + -0.016982942819595337, + -0.016551630571484566, + 0.0007788061047904193, + -0.0072379689663648605, + -0.0007838605670258403, + -0.005886746570467949, + -0.008525167591869831, + -0.002758043585345149, + 0.012946125119924545, + 0.018155574798583984, + -0.00905757024884224, + 0.02492179535329342, + 0.004228887613862753, + -0.020109960809350014, + -0.007824284955859184, + 0.003952577710151672, + 0.016470760107040405, + 0.01179371029138565, + 0.02717270888388157, + 0.0024817336816340685, + 0.008511689491569996, + -0.01407158188521862, + -0.006109142210334539, + -0.01065477542579174, + 0.008929523639380932, + -0.010115633718669415, + 0.013950275257229805, + 0.012198066338896751, + 0.008592560887336731, + 0.0014590504579246044, + 0.01054694689810276, + -0.00424910569563508, + -0.019975176081061363, + 0.0022256416268646717, + -0.01412549614906311, + -0.00022555471514351666, + -0.0019274293445050716, + 0.024113083258271217, + 0.011773493140935898, + -0.004117690026760101, + -0.014368109405040741, + -0.01637640967965126, + 0.007029051426798105, + 0.01613379642367363, + -0.003108485136181116, + 0.009158658795058727, + 0.005502608604729176, + -0.008174726739525795, + -0.002048735972493887, + -0.013653747737407684, + -0.00044731859816238284, + -0.0024261348880827427, + 0.006001314148306847, + -0.005519456695765257, + -0.0092058340087533, + -0.0026013555470854044, + -0.03625723719596863, + -0.0028490235563367605, + -0.012400244362652302, + 0.02245522476732731, + -0.0074199289083480835, + -0.0027917397674173117, + -0.004185082390904427, + 0.0024783641565591097, + -0.0005319805932231247, + -0.011045652441680431, + -0.024584831669926643, + 0.0030478318221867085, + -0.006186643615365028, + 0.011652186512947083, + -0.03676941990852356, + 0.024436568841338158, + 0.005984465591609478, + -0.008835174143314362, + -0.00813429057598114, + 0.017859047278761864, + -0.012373287230730057, + 0.005249886307865381, + 0.0062338183633983135, + -0.00818820483982563, + -0.0018482429441064596, + 0.00527347344905138, + -0.021673470735549927, + 0.004744441248476505, + -0.023573942482471466, + -0.0027647828683257103, + -0.014785943552851677, + -0.0025187996216118336, + -0.0021144438069313765, + -0.00580924516543746, + 0.011321961879730225, + -0.017468171194195747, + -0.009718017652630806, + 0.006456214003264904, + 0.04054340720176697, + 0.04677048698067665, + 0.030515383929014206, + -0.008275815285742283, + 0.013087648898363113, + 0.03561026602983475, + -0.026458347216248512, + 0.0064696925692260265, + 0.01235306914895773, + -0.02838577702641487, + -0.007433407474309206, + -0.01271698996424675, + -0.011382616125047207, + 0.028790133073925972, + 0.003581918543204665, + -0.021633034572005272, + -0.0026855964679270983, + -0.01382896862924099, + -0.023708729073405266, + -0.004316498059779406, + 0.0020217790734022856, + -0.0016620708629488945, + 0.012454158626496792, + -0.018613845109939575, + 0.011975671164691448, + 0.011894799768924713, + -0.00924626924097538, + 0.0032365312799811363, + -0.012433940544724464, + -0.006675240118056536, + 0.011227612383663654, + 0.023169586434960365, + -0.011874581687152386, + -0.006125990301370621, + -0.011288265697658062, + -0.015796832740306854, + 0.019179943948984146, + -0.0017741110641509295, + 0.007898416370153427, + -0.0037234430201351643, + -0.0040536667220294476, + -0.0018179162871092558, + -0.01643032394349575, + -0.010526728816330433, + -0.01191501785069704, + 0.0040267095901072025, + -0.017077293246984482, + 0.02339872159063816, + -0.028709260746836662, + 0.00904409121721983, + -0.013222434557974339, + 0.002500266768038273, + -0.011052391491830349, + -0.020703015848994255, + -0.014812900684773922, + -0.009374314919114113, + 0.0037369215860962868, + 0.030838869512081146, + -0.010075198486447334, + -0.007729934994131327, + -0.03248324990272522, + -0.01405810285359621, + 0.01015606988221407, + -0.0025289084296673536, + 0.006412408780306578, + -0.019786477088928223, + 0.030164942145347595, + -0.003622354008257389, + 0.0061293598264455795, + 0.005792396608740091, + -0.00894974172115326, + 0.011072609573602676, + -0.01591813936829567, + -0.0015188615070655942, + -0.02133650705218315, + -0.02240131050348282, + -0.005991205107420683, + -0.019368642941117287, + 0.0014590504579246044, + -0.010364986956119537, + 0.03221367672085762, + -0.0012770903995260596, + -0.0030596256256103516, + 0.01610683836042881, + 0.009556274861097336, + -0.020972587168216705, + 0.009987588040530682, + -0.0056576114147901535, + 0.006671870592981577, + -0.0041918219067156315, + -0.002212163060903549, + -0.01688859425485134, + -0.0002666221116669476, + 0.006415778771042824, + 0.013040474615991116, + 0.006375343073159456, + -0.010169547982513905, + 0.004171603824943304, + 0.0017126152524724603, + 0.0009199094492942095, + 0.009933673776686192, + -0.008902566507458687, + 0.007460364606231451, + -0.0034269152674824, + 0.02489483915269375, + -0.002138031180948019, + -0.03264499083161354, + 0.0020251485984772444, + -0.007076226640492678, + 0.01432767417281866, + 0.02383003570139408, + -0.013060691766440868, + 0.0013520646607503295, + 0.01591813936829567, + 0.00909800548106432, + -0.008363425731658936, + 0.008774520829319954, + -0.0056576114147901535, + 0.005634024273604155, + 0.005489130038768053, + -0.007136879954487085, + -0.0005656768917106092, + -0.002045366447418928, + 0.022900016978383064, + 0.012743947096168995, + 0.01312134601175785, + -0.0017185121541842818, + 0.01916646398603916, + 0.017764698714017868, + -0.0037065946962684393, + 0.003773987526074052, + 0.029544930905103683, + 0.015257691964507103, + -0.017670348286628723, + 0.026283126324415207, + -0.015769876539707184, + -0.006078815553337336, + 0.0019678648095577955, + -0.009711278602480888, + 0.005010642111301422, + -0.004238996654748917, + -0.006847091484814882, + -0.0061360993422567844, + 0.022428268566727638, + 0.010095416568219662, + -0.005044338759034872, + 0.01169936079531908, + -0.012818078510463238, + 0.0011414627078920603, + 0.019206900149583817, + 0.012157631106674671, + -0.00263673672452569, + -0.009529318660497665, + -0.003170823445543647, + 0.00010535363981034607, + 0.0034976776223629713, + 0.017589477822184563, + 0.013323523104190826, + 0.005350974854081869, + 0.004929771181195974, + -0.0056845685467123985, + -0.005549783352762461, + 0.005121840164065361, + 0.0225091390311718, + 0.006681979633867741, + -0.0006094821146689355, + 0.010533468797802925, + 0.016794243827462196, + 0.010378465056419373, + -0.0125148119404912, + -0.008403860963881016, + -0.008114073425531387, + 0.0009990957332774997, + -0.0032516946084797382, + -0.012198066338896751, + 0.006590999662876129, + 0.0004645879671443254, + -0.01626858115196228, + -0.011928495950996876, + -0.034046757966279984, + 0.0003736079088412225, + 0.028709260746836662, + 0.021889127790927887, + 0.02500266581773758, + 0.00348082953132689, + 0.00799950584769249, + -0.006287732627242804, + -0.008410600945353508, + 0.002232380909845233, + 0.01773774065077305, + -0.0001673232764005661, + 0.002075693104416132, + 0.018532974645495415, + -0.02559572272002697, + -0.011409572325646877, + -0.006415778771042824, + 0.0036728985141962767, + 0.00340669765137136, + 0.006934701930731535, + -0.025851814076304436, + -0.005489130038768053, + -0.012312633916735649, + -0.023115672171115875, + 0.003029298735782504, + -0.019894305616617203 + ], + "65081f7f-fbb2-4b98-abb2-c498ffeed3ae": [ + -0.01818837597966194, + -0.01109306700527668, + -0.017068438231945038, + -0.023079250007867813, + -0.06356716901063919, + -0.0213213711977005, + 0.02999735437333584, + 0.05639389157295227, + 0.006861398462206125, + 0.044400621205568314, + 0.009115452878177166, + 0.025149010121822357, + -0.023419484496116638, + -0.012376034632325172, + 0.012539064511656761, + 0.00372131634503603, + -0.04862520098686218, + 0.03668863698840141, + 0.003941051196306944, + -0.013623561710119247, + 0.08108925819396973, + -0.023107603192329407, + -0.025063952431082726, + 0.03938215970993042, + -0.025786951184272766, + -0.02731800638139248, + 0.02200184017419815, + -0.014204796403646469, + -0.005557165946811438, + -0.019761962816119194, + -0.021562369540333748, + -0.00039339630166068673, + 0.034817345440387726, + -0.002961104502901435, + 0.03158511593937874, + -0.00798842590302229, + -0.024737894535064697, + 0.013028151355683804, + -0.037595927715301514, + 0.012142123654484749, + -0.0015718131326138973, + 0.03697216510772705, + 0.01818837597966194, + 0.020130548626184464, + -0.024851305410265923, + 0.037680987268686295, + 0.04301133006811142, + 0.014474148862063885, + 0.012475269846618176, + -0.023617954924702644, + 0.0010969022987410426, + 0.031046411022543907, + -0.026212243363261223, + 0.006662928499281406, + 0.019861197099089622, + -0.010823714546859264, + -0.0021743120159953833, + 0.07825396955013275, + 0.009930598549544811, + -0.03388169780373573, + -0.002041407860815525, + 0.008938247337937355, + 0.012695005163550377, + -0.0015948498621582985, + -0.011263184249401093, + -0.01905314065515995, + 0.015197147615253925, + 0.013736973516643047, + -0.0381062813103199, + 0.01351723913103342, + 0.030933000147342682, + 0.017763083800673485, + -0.039268746972084045, + 0.0061525763012468815, + 0.011979094706475735, + -0.01318409200757742, + 0.050071198493242264, + -0.02826782874763012, + 0.006180929485708475, + 0.02237042784690857, + -0.041310157626867294, + 0.01728108525276184, + 0.011780624277889729, + -0.0073433974757790565, + 0.03379664197564125, + 0.032605819404125214, + -0.045081090182065964, + -0.05350189656019211, + -0.018996434286236763, + -0.04165039211511612, + 0.018712904304265976, + 0.020655078813433647, + 0.007967161014676094, + 0.015721675008535385, + -0.017989907413721085, + -0.011716830544173717, + 0.021491488441824913, + 0.007931720465421677, + -0.015154617838561535, + -0.013382562436163425, + -0.007931720465421677, + 0.02513483352959156, + -0.030365942046046257, + -0.004199771210551262, + 0.013935443945229053, + -0.001290942425839603, + 0.0376526340842247, + -0.003685875330120325, + -0.014204796403646469, + 0.007088221609592438, + 0.01874125748872757, + 0.00592220900580287, + -0.007478073704987764, + 0.019251609221100807, + 0.038956865668296814, + -0.08108925819396973, + -0.027346359565854073, + -0.01643049716949463, + -0.0362916961312294, + -0.07275350391864777, + 0.04726426303386688, + 0.03362652286887169, + 0.015182971023023129, + -0.037539221346378326, + 0.0029628765769302845, + 0.004291918128728867, + -0.020243961364030838, + 0.0066877370700240135, + -0.0113411545753479, + 0.011085978709161282, + -0.0038914335891604424, + -0.024156659841537476, + -0.03736910596489906, + 0.019818667322397232, + -0.008215248584747314, + 0.014672619290649891, + 0.007449720986187458, + 0.05667741969227791, + -0.02317848429083824, + 0.03456217050552368, + -0.0019474888686090708, + -0.03561122715473175, + -0.017479553818702698, + -0.01760714314877987, + 0.007286692038178444, + 0.016090262681245804, + -0.027332182973623276, + 0.04023274779319763, + 0.008697248063981533, + 0.022342074662446976, + -0.032690878957509995, + -0.004107624292373657, + 0.02078266628086567, + -0.002854781225323677, + -0.006921648513525724, + -0.007889190688729286, + 0.017408672720193863, + 0.02137807570397854, + -0.013921267352998257, + 0.0029664207249879837, + -0.0027821268886327744, + -0.03235064446926117, + 0.029657119885087013, + -0.01390709076076746, + 0.0015576366567984223, + 0.0077332500368356705, + 0.03320122882723808, + 0.05009955167770386, + -0.04550638422369957, + 0.023419484496116638, + 0.03167017549276352, + -0.017720554023981094, + 0.018259258940815926, + 0.01570749841630459, + -0.009179246611893177, + -0.032549113035202026, + 0.008753953501582146, + 0.021619075909256935, + 0.010377156548202038, + -0.025914538651704788, + -0.005131872370839119, + -0.0010499428026378155, + -0.03391005098819733, + 0.005046813748776913, + -0.01915237493813038, + 0.013311680406332016, + 0.027757475152611732, + 0.0012998026795685291, + -0.02495053969323635, + 0.008264866657555103, + 0.0001443117653252557, + 0.002480877563357353, + 0.03152840957045555, + 0.05852035805583, + -0.017933201044797897, + 0.00092324084835127, + 0.0007172394543886185, + -0.0031294499058276415, + 0.027232946828007698, + 0.023844778537750244, + -0.010752832517027855, + -0.05886059254407883, + -0.05662071332335472, + 0.021534018218517303, + -0.05494789406657219, + 0.007152015808969736, + -0.0025588481221348047, + 0.0015328279696404934, + 0.02653830125927925, + -0.025645185261964798, + 0.01919490471482277, + -0.02222866378724575, + 0.020470784977078438, + 0.006056885235011578, + -0.008222336880862713, + -3.976741481892532e-6, + -0.016132792457938194, + 0.017437025904655457, + 0.006248267367482185, + 0.014559207484126091, + -0.015239676460623741, + -0.00023767692619003356, + 0.029458649456501007, + -0.03419358283281326, + -0.04681061580777168, + -0.026354007422924042, + -0.0260846558958292, + 0.02509230561554432, + -0.018939727917313576, + -0.0006011698278598487, + 0.04998613893985748, + 0.015211323276162148, + 0.009002041071653366, + -0.03334299474954605, + 0.0009321011602878571, + 0.0005519952392205596, + 0.004830623045563698, + 0.0056989300064742565, + 0.01896808110177517, + -0.01260994654148817, + 0.05086508020758629, + 0.0021105180494487286, + -0.005216930992901325, + 0.016090262681245804, + 0.035384401679039, + 0.032605819404125214, + -0.015140441246330738, + 0.05818012356758118, + 0.031244881451129913, + -0.006634575314819813, + 0.02581530250608921, + 0.039268746972084045, + 0.008803571574389935, + -0.005812341812998056, + 0.005053902044892311, + 0.03787945583462715, + 0.009767569601535797, + 0.009448599070310593, + -0.027232946828007698, + 0.0006649637944065034, + -0.03734075278043747, + -0.013758238404989243, + -0.009051659144461155, + -0.02880653366446495, + 0.04389026761054993, + -0.028055181726813316, + 0.01458755973726511, + -0.04034615680575371, + -0.0004323815228417516, + 0.02168995887041092, + -0.04950413852930069, + -0.003218052675947547, + -0.01542397029697895, + 0.016799084842205048, + -0.013063592836260796, + -0.0076765441335737705, + 0.011241919361054897, + 0.02022978477180004, + 0.023476190865039825, + 0.0146300895139575, + 0.0034838609863072634, + 0.024936363101005554, + 0.005213386844843626, + 0.026339830830693245, + -0.008222336880862713, + -0.024071600288152695, + -0.00979592278599739, + 0.020073844119906425, + -0.03288934752345085, + -0.02059837244451046, + 0.008562571369111538, + -0.023348601534962654, + 0.0440036803483963, + -0.004830623045563698, + 0.02977053076028824, + 0.009370628744363785, + -0.01869872957468033, + -0.022356251254677773, + -0.014970324002206326, + 0.01445288397371769, + -0.04522285610437393, + 0.004040286410599947, + 0.05032637342810631, + -0.009243041276931763, + 0.012092506512999535, + -0.0026332743000239134, + 0.04474085569381714, + -0.014360737055540085, + -0.02994064800441265, + 0.017408672720193863, + 0.02917511947453022, + 0.0006423700833693147, + -0.01946425624191761, + -0.017578789964318275, + -0.00231430446729064, + 0.00731504475697875, + 0.016813261434435844, + 0.02690688893198967, + 0.0031099573243409395, + -0.0032357731834053993, + 0.004118256736546755, + -0.007035059854388237, + -0.0517156645655632, + 0.014545030891895294, + 0.03308781981468201, + -0.03487405180931091, + 0.011249007657170296, + 0.020924430340528488, + -0.021434782072901726, + -0.007098854053765535, + 0.002018371131271124, + -0.03558287397027016, + -0.013857473619282246, + -0.019946256652474403, + 0.00044855152373202145, + -0.0244968943297863, + -0.029657119885087013, + -0.033229582011699677, + -0.004557726439088583, + 0.007683632429689169, + -0.01773473061621189, + 0.048710260540246964, + -0.018769610673189163, + 0.00396940391510725, + 0.006879119202494621, + -0.019676903262734413, + -0.02069760672748089, + 0.04641367495059967, + -0.02137807570397854, + -0.003381081623956561, + 0.0006534454296343029, + -0.010568538680672646, + 0.030734529718756676, + 0.005688298027962446, + 0.008449160493910313, + 0.003590184263885021, + -0.011043448932468891, + -0.0036167651414871216, + 0.017479553818702698, + -0.0069818985648453236, + -0.015480675734579563, + -0.012475269846618176, + -0.03416522964835167, + -0.013630650006234646, + 0.004841255489736795, + 0.019804490730166435, + 0.013247886672616005, + 0.012120858766138554, + -0.011057625524699688, + 0.01696920208632946, + -0.007176824379712343, + 0.03626334294676781, + 0.028707297518849373, + 0.009930598549544811, + -0.032917700707912445, + 0.007254794705659151, + 0.042812857776880264, + 0.02068343013525009, + -0.013623561710119247, + 0.02014472521841526, + -0.02276736870408058, + 0.018854670226573944, + -0.005943473894149065, + -0.019932080060243607, + 0.04374850541353226, + 0.00713429506868124, + -0.006375855300575495, + 0.005776900798082352, + -0.01592014543712139, + -0.020626725628972054, + -0.03614993020892143, + -0.018812140449881554, + -0.033966757357120514, + 0.01481438335031271, + -0.017351966351270676, + 0.02590036205947399, + 0.01458755973726511, + 0.0007128092693164945, + 0.021930957213044167, + 0.012716270051896572, + -0.013077769428491592, + -0.014729324728250504, + -0.007690720725804567, + 0.028012651950120926, + 0.0340234637260437, + -0.013510150834918022, + 0.0066062225960195065, + 0.022653955966234207, + 0.0023267087526619434, + -0.00432027131319046, + -0.008505865931510925, + 0.0024844217114150524, + -0.015934322029352188, + -0.018897198140621185, + 0.05965447425842285, + -0.021831722930073738, + 0.02478042244911194, + 0.021803369745612144, + -0.058917298913002014, + 0.011858594603836536, + 0.037766046822071075, + 0.06521163880825043, + -0.009944775141775608, + 0.012858034111559391, + -0.02822529897093773, + 0.005163769703358412, + 0.03297440707683563, + 0.029146768152713776, + -0.009349364787340164, + -0.00413952162489295, + -0.01742284931242466, + 0.00432027131319046, + -0.02358960174024105, + -0.026382360607385635, + 0.0006348388269543648, + 0.005411857273429632, + -0.0018819228280335665, + 0.006730266381055117, + -0.0014521994162350893, + -0.01394962053745985, + 0.02499306946992874, + 0.019563492387533188, + 0.013127386569976807, + 0.006971266120672226, + -0.012404387816786766, + -0.03952392563223839, + -0.04522285610437393, + -0.008257778361439705, + -0.013127386569976807, + 0.024667011573910713, + 0.015197147615253925, + 0.055458247661590576, + -0.027431417256593704, + -0.002261142712086439, + -0.011149772442877293, + 0.00020090678299311548, + 0.003767389804124832, + 0.008626366034150124, + 0.008364101871848106, + 0.025234069675207138, + -0.005642224568873644, + 0.004476211965084076, + 0.02278154529631138, + -0.03053605929017067, + 0.008399542421102524, + -0.06135564669966698, + -0.005518180783838034, + 0.028111886233091354, + -0.009221776388585567, + -0.010157421231269836, + -0.00914380606263876, + 0.04054462909698486, + -0.021165430545806885, + 0.010490568354725838, + -0.009264306165277958, + 0.008009690791368484, + 0.009831363335251808, + -0.019038964062929153, + 0.0051814899779856205, + -0.007272515445947647, + -0.031783584505319595, + -0.010384244844317436, + -0.02618389017879963, + 0.03391005098819733, + 0.04136686027050018, + 0.009427335113286972, + -0.030706176534295082, + 0.0040721832774579525, + 0.020881900563836098, + 0.007212265394628048, + 0.02835288643836975, + 0.00019780568254645914, + 0.003983580507338047, + -0.016813261434435844, + -0.029742177575826645, + -0.050156258046627045, + 0.011922389268875122, + -0.029969001188874245, + 0.00011950298357987776, + -0.02680765464901924, + 0.05591189116239548, + -0.007662367541342974, + 0.016317086294293404, + 0.02527659758925438, + 0.007152015808969736, + 0.0073363096453249454, + -0.008357013575732708, + 0.009157982654869556, + 0.005146048963069916, + 0.008144366554915905, + -0.013262062333524227, + 0.013141563162207603, + -0.01806078851222992, + 0.0020733047276735306, + -0.014559207484126091, + 0.030252529308199883, + -0.02890576794743538, + 0.01618949882686138, + 0.016302909702062607, + -0.008498777635395527, + -0.00946277566254139, + 0.0053374310955405235, + -0.010306274518370628, + 0.012602858245372772, + 5.991762373014353e-5, + -0.011837330646812916, + -0.015551558695733547, + 0.018457729369401932, + 0.0440036803483963, + -0.0003958328743465245, + -0.02022978477180004, + 0.012553240172564983, + -0.004423050209879875, + -0.007307956460863352, + 0.006804693024605513, + -0.024610305204987526, + -0.009179246611893177, + -0.03203876316547394, + -0.015140441246330738, + 0.028693120926618576, + -0.022809896618127823, + 0.017947377637028694, + -0.012631211429834366, + -0.008902806788682938, + 0.021165430545806885, + 0.0310747642070055, + -0.033144526183605194, + 0.010696126148104668, + 0.008357013575732708, + 0.009228864684700966, + -0.016302909702062607, + 0.01606190949678421, + 0.004277742002159357, + -0.00445849122479558, + 0.03467557951807976, + -0.043124739080667496, + 0.029118414968252182, + -0.02395818941295147, + -0.03575298935174942, + -0.014183531515300274, + 0.03240735083818436, + 0.0009622260695323348, + -0.006024988368153572, + -0.009923510253429413, + -0.034505464136600494, + -0.00015671615255996585, + -0.041763801127672195, + 0.018273435533046722, + -0.004880240652710199, + 0.016118615865707397, + 0.014034679159522057, + 0.028650591149926186, + 0.022483838722109795, + -0.018401023000478745, + -0.022923309355974197, + 0.017989907413721085, + 0.005762724205851555, + 0.010667773894965649, + -0.027927594259381294, + -0.001023362041451037, + 0.0018712905002757907, + -0.03830474987626076, + 0.014615912921726704, + -0.025716068223118782, + -0.0054402099922299385, + 0.011979094706475735, + -0.04150862619280815, + -0.034136876463890076, + -0.0010570310987532139, + 0.013276238925755024, + -0.00910127628594637, + 0.010391333140432835, + 0.03218052536249161, + -0.01340382732450962, + 0.0036468899343162775, + 0.021392252296209335, + 0.010653597302734852, + 0.016997555270791054, + 0.004596711602061987, + 0.0015585226938128471, + -0.021633252501487732, + 0.0242700707167387, + 0.025106480345129967, + -0.01565079391002655, + -0.026779301464557648, + 0.020499136298894882, + -0.025517597794532776, + -0.0006441421573981643, + -0.021151253953576088, + -0.026169713586568832, + 0.00396940391510725, + -0.009803010150790215, + 0.021406428888440132, + -0.009760481305420399, + 0.03512922674417496, + 0.007088221609592438, + 0.04272780194878578, + 0.02041407860815525, + -0.008683071471750736, + -0.022696485742926598, + 0.01488526538014412, + -0.05747130140662193, + 0.06084529310464859, + -0.033371347934007645, + 0.020130548626184464, + 0.0002578340645413846, + -0.019138198345899582, + -0.016855791211128235, + -0.021066194400191307, + 0.008909895084798336, + 0.004798726178705692, + 0.024170836433768272, + 0.0403745099902153, + -0.027828358113765717, + 0.017181849107146263, + 0.01218465343117714, + 0.017040085047483444, + 0.01964855007827282, + -0.011553801596164703, + 0.007825396955013275, + -0.023036720231175423, + -0.011291537433862686, + -0.0075560444965958595, + 0.019223257899284363, + -0.012588681653141975, + -0.008357013575732708, + -0.03770934045314789, + 0.015891792252659798, + 0.030224177986383438, + 0.010830802842974663, + -0.070768803358078, + 0.0015895337564870715, + 0.026070479303598404, + 0.0025074584409594536, + -0.0035547432489693165, + -0.04079980403184891, + -0.01937919855117798, + 0.00590803287923336, + 0.0165580864995718, + -0.009973128326237202, + 0.013049416244029999, + 0.004759741015732288, + -0.02051331289112568, + 0.003070971928536892, + 0.035781342536211014, + 0.005362239666283131, + 0.004086359869688749, + -0.011858594603836536, + 0.001984701957553625, + 0.03728404641151428, + -0.010277921333909035, + -0.008697248063981533, + 0.03076288290321827, + 0.013056504540145397, + -0.002993001602590084, + -0.007215809542685747, + -0.008753953501582146, + -0.03379664197564125, + 0.022058546543121338, + -0.027006125077605247, + -0.009271393530070782, + 0.0011279132449999452, + -0.0023816425818949938, + 0.006797604728490114, + 0.023944012820720673, + -0.01847190596163273, + 0.003409434575587511, + 0.03433534502983093, + -0.027828358113765717, + -0.024284247308969498, + 0.0019386286148801446, + 0.024355130270123482, + -0.011745183728635311, + 0.0331161729991436, + -0.00560323940590024, + 0.017479553818702698, + -0.02581530250608921, + 0.008059307932853699, + 0.02604212611913681, + -0.019974607974290848, + -0.0453646183013916, + -0.027232946828007698, + -0.008647629991173744, + -0.011355331167578697, + 0.009037482552230358, + 0.022809896618127823, + -0.01936502195894718, + -0.01560826413333416, + 0.011879859492182732, + 0.009838451631367207, + 0.007570220623165369, + -0.0005954106454737484, + -0.0032889349386096, + 0.025758597999811172, + 0.010993831790983677, + 0.0021778561640530825, + -0.00888863019645214, + 0.006386487744748592, + 0.0030851485207676888, + 0.026623360812664032, + -0.029969001188874245, + 0.056053657084703445, + 0.005426033865660429, + -0.06220623478293419, + -0.06016482412815094, + 0.025375833734869957, + -0.0016621879767626524, + -0.010540185496211052, + -0.03113146871328354, + -0.008066396228969097, + 0.038134630769491196, + 0.005493371747434139, + -0.01688414439558983, + 0.0082790432497859, + -0.013198268599808216, + -0.0263114795088768, + -0.028381239622831345, + -0.009810098446905613, + 0.04706579074263573, + -0.025304950773715973, + 0.0037709339521825314, + -0.020981136709451675, + 0.032832641154527664, + 0.009803010150790215, + 0.019847020506858826, + -0.0068259574472904205, + 0.0053019896149635315, + -0.005511092487722635, + 0.0011518360115587711, + 0.002509230514988303, + 0.0322088785469532, + -0.03206711634993553, + 0.023490367457270622, + 0.03288934752345085, + -0.016274556517601013, + -0.016643144190311432, + -0.0023656939156353474, + -0.0016001660842448473, + 0.0043698884546756744, + 0.019138198345899582, + 0.006804693024605513, + 0.004951122682541609, + 0.006297884974628687, + -0.015027030371129513, + -0.004532917868345976, + -0.020768489688634872, + -0.019988784566521645, + 0.028282005339860916, + 0.04235921427607536, + -0.014176443219184875, + 0.04139521345496178, + -0.01660061441361904, + 0.015338911674916744, + 0.02546089142560959, + 0.01960602030158043, + -0.024014895781874657, + 0.01964855007827282, + -0.00017908835434354842, + -0.04201897978782654, + 0.028792357072234154, + -0.0306211169809103, + -0.03824804350733757, + 0.01787649467587471, + -0.0244968943297863, + 0.013744061812758446, + 0.0028299724217504263, + 0.021718312054872513, + 0.03008241206407547, + -0.00512832822278142, + -0.025631008669734, + 0.009356452152132988, + 0.024737894535064697, + -0.008931159041821957, + -0.002424171892926097, + 0.019620196893811226, + 0.001878378796391189, + 0.024071600288152695, + -0.014828559942543507, + -0.008746865205466747, + -0.006584957707673311, + -0.008066396228969097, + -0.040176041424274445, + 0.028409592807292938, + 0.02622641995549202, + -0.016983378678560257, + -0.015820911154150963, + 0.0080522196367383, + 0.009221776388585567, + 0.015197147615253925, + 0.023447837680578232, + -0.026623360812664032, + 0.004323814995586872, + -0.021448958665132523, + 0.011979094706475735, + 0.0029380677733570337, + -0.005454386584460735, + -0.005167313385754824, + -0.017522083595395088, + 0.007754514459520578, + -0.034420404583215714, + 0.01358812116086483, + 0.01556573435664177, + 0.03907027840614319, + 0.014644266106188297, + 0.006482178810983896, + -0.023206837475299835, + -0.016983378678560257, + -0.01723855547606945, + 0.027417240664362907, + 0.01859949342906475, + 0.0048199906013906, + -0.01200035959482193, + -0.008633454330265522, + 0.025716068223118782, + 0.022242840379476547, + 0.037595927715301514, + -0.03308781981468201, + -0.013148651458323002, + -0.04023274779319763, + 0.004238756373524666, + 0.0017552209319546819, + -0.015409793704748154, + -0.010993831790983677, + -0.012886387296020985, + -0.005890312138944864, + -0.013651914894580841, + 0.004997196141630411, + -0.008016779087483883, + 0.024553600698709488, + 0.008321572095155716, + 0.02323519065976143, + -0.0129289161413908, + -0.0034076625015586615, + 0.0024454365484416485, + -0.049334023147821426, + 0.025205716490745544, + 0.006868486758321524, + 0.021406428888440132, + 0.010745744220912457, + 0.00439115334302187, + -0.0007172394543886185, + 0.032690878957509995, + -0.007492250297218561, + -0.05194249004125595, + -0.0064077521674335, + -0.0147435013204813, + -0.027743300423026085, + 0.03725569322705269, + -0.016841614618897438, + -0.0013839752646163106, + -0.011723918840289116, + 0.021576546132564545, + -0.0007814764394424856, + 0.01073156762868166, + -0.0371989868581295, + -0.012737534008920193, + -0.041083332151174545, + -0.01777726039290428, + -0.02890576794743538, + 0.016997555270791054, + -0.0028264285065233707, + 0.01569332368671894, + 0.004221036098897457, + -0.0021158342715352774, + -0.05999470874667168, + 0.02336277812719345, + -0.009370628744363785, + 0.0016311770305037498, + 0.004600255750119686, + -0.010880419984459877, + 0.014325295574963093, + 0.02694941870868206, + -0.026155538856983185, + -0.02816859260201454, + -0.007541867904365063, + -0.03444875776767731, + -0.011865682899951935, + -0.013347120955586433, + 0.005146048963069916, + -0.010887508280575275, + -0.00156826910097152, + -0.0114545663818717, + -0.023830601945519447, + 0.022313721477985382, + -0.007662367541342974, + -0.04785967245697975, + 0.022653955966234207, + 0.01263829879462719, + -0.016217852011322975, + 0.05330342799425125, + 0.020442431792616844, + 0.008286131545901299, + -0.013169915415346622, + -0.019081491976976395, + 0.02758735790848732, + 0.018443552777171135, + 0.018443552777171135, + -0.0002875159843824804, + -0.0129289161413908, + -0.011490006931126118, + 0.0005471220938488841, + -0.0046640499494969845, + 0.009023305959999561, + 0.005316166207194328, + -0.017805613577365875, + -0.021562369540333748, + 0.012836769223213196, + 0.020173078402876854, + 0.012057065032422543, + 0.011057625524699688, + 0.02037154883146286, + 0.031783584505319595, + 0.0026368184480816126, + -0.020655078813433647, + 0.03141499683260918, + -0.03172688186168671, + 0.011490006931126118, + 0.00044301385059952736, + -0.03796451538801193, + -0.033598169684410095, + -0.01923743449151516, + 0.009788834489881992, + 0.008605101145803928, + -0.018457729369401932, + 0.030422646552324295, + -0.01833014190196991, + -0.03393840417265892, + 0.03816298395395279, + 0.015027030371129513, + -0.012468181550502777, + 0.03728404641151428, + 0.03955227509140968, + -0.0037035958375781775, + -0.008222336880862713, + 0.005379960406571627, + 0.033598169684410095, + -0.004557726439088583, + 0.024922186508774757, + -0.0043876091949641705, + 0.00021718753851018846, + -0.0007748312200419605, + 0.004299006424844265, + -0.015679147094488144, + 0.0037461251486092806, + -0.03612157702445984, + 0.002190260449424386, + -0.04165039211511612, + 0.01729525998234749, + 0.0011199390282854438, + 0.010143245570361614, + -0.01243274100124836, + -0.013276238925755024, + 0.01152544841170311, + -0.016458850353956223, + 0.0028565532993525267, + -0.011901124380528927, + -0.04295462369918823, + -0.010249568149447441, + 0.016274556517601013, + -0.017748907208442688, + 0.031329941004514694, + 0.0016949709970504045, + 0.006684192921966314, + -0.0006060429732315242, + -0.01202162355184555, + 0.01583508774638176, + -0.02037154883146286, + -0.017848141491413116, + 0.021987663581967354, + -0.00968251097947359, + 0.014644266106188297, + -0.03796451538801193, + 0.0033031112980097532, + -0.037992868572473526, + 0.008881541900336742, + -0.024213364347815514, + -0.008867365308105946, + -0.01669985055923462, + 0.007421368267387152, + -0.0013937215553596616, + -0.025078129023313522, + 0.0033491847570985556, + -0.039722394198179245, + 0.0331161729991436, + 0.006071061827242374, + 0.00216013565659523, + -0.01037006825208664, + -0.005022005178034306, + 0.018982257694005966, + 0.030422646552324295, + 0.002027231501415372, + -0.02521989308297634, + -0.002725421218201518, + -0.028891591355204582, + 0.03257746621966362, + 0.007215809542685747, + -0.026878535747528076, + -0.031556762754917145, + -0.005720194894820452, + 0.022483838722109795, + -0.008839012123644352, + -0.04346497356891632, + 0.004742020275443792, + 0.002539355307817459, + -0.005833606235682964, + 0.00590803287923336, + 0.003342096460983157, + 0.002883134176954627, + 0.019889550283551216, + 0.005539445206522942, + -0.030195824801921844, + 0.008945335634052753, + 0.0012687917333096266, + -0.014389090240001678, + 0.013999237678945065, + -0.017947377637028694, + 0.01238312292844057, + -0.052282724529504776, + -0.02762988768517971, + -0.0022363339085131884, + 0.030195824801921844, + -0.005202754866331816, + -0.0011084206635132432, + -0.01651555672287941, + 0.005245284177362919, + -0.007931720465421677, + -0.005620959680527449, + 0.02385895326733589, + 0.0022434222046285868, + 0.02051331289112568, + 0.016643144190311432, + -0.01719602569937706, + 0.02546089142560959, + -0.010015657171607018, + 0.0003482088795863092, + -0.005659944843500853, + -0.00047269577044062316, + -0.0014362508663907647, + -0.013956708833575249, + 0.021406428888440132, + -0.002930979710072279, + 0.0278992410749197, + 0.04706579074263573, + -0.027927594259381294, + 0.014856912195682526, + -0.024581952020525932, + -0.0046640499494969845, + 0.025106480345129967, + -0.0029327517841011286, + -0.0007770463125780225, + 0.013673179782927036, + -0.0005245283828116953, + -0.008023867383599281, + 0.030110765248537064, + 0.001172214630059898, + 0.014304031617939472, + 0.006570781581103802, + 0.0061702970415353775, + 0.01379367895424366, + 0.004033198114484549, + -0.018315965309739113, + -0.003361589042469859, + -0.02476624585688114, + -0.002534039318561554, + -0.02005966752767563, + -0.026566654443740845, + 0.011149772442877293, + 0.00542248971760273, + -0.01022830419242382, + 0.018216729164123535, + -0.022342074662446976, + 0.0040899040177464485, + 0.0071980892680585384, + 0.008399542421102524, + 0.014871088787913322, + -0.0017605370376259089, + -0.031159821897745132, + 0.06509822607040405, + 0.014842736534774303, + -0.01048348005861044, + 0.012290976010262966, + -0.020258137956261635, + -0.00030346447601914406, + 0.007570220623165369, + 0.03612157702445984, + 0.0014876405475661159, + 0.008030954748392105, + -0.007548956200480461, + 0.014970324002206326, + 0.01824508234858513, + 0.01542397029697895, + 9.558023884892464e-5, + 0.0028725017327815294, + 0.007049236446619034, + 0.018883023411035538, + -0.01909566856920719, + -0.009859716519713402, + 0.005135416518896818, + -0.01272335834801197, + 0.021023664623498917, + -0.026339830830693245, + 0.002418855670839548, + -0.02785671129822731, + 0.00738592678681016, + 0.007811220362782478, + -0.048795316368341446, + -0.010207039304077625, + 0.02400071918964386, + -0.000574145931750536, + 0.017366142943501472, + 0.008477512747049332, + -0.02977053076028824, + 0.01882631704211235, + 0.0043663447722792625, + -0.02160489931702614, + -0.00037013806286267936, + 0.007612749934196472, + -0.016912497580051422, + 0.0017242098692804575, + 0.0028051636181771755, + -0.003802830819040537, + -0.007017339579761028, + 0.015523205511271954, + 0.020924430340528488, + 0.00809474941343069, + 0.004465579520910978, + -0.006506987381726503, + -0.007896278984844685, + -0.008449160493910313, + -0.011156860738992691, + -0.005791076924651861, + -0.011362419463694096, + 0.013829120434820652, + -0.012404387816786766, + -0.025801127776503563, + -0.04485426843166351, + -0.015168794430792332, + 0.007428456097841263, + 0.02721877209842205, + -0.002046724082902074, + -0.027530653402209282, + -0.02241295762360096, + 0.009299746714532375, + -0.004547093994915485, + -0.018812140449881554, + 0.017323613166809082, + -0.016543909907341003, + -0.024298423901200294, + 0.005195666570216417, + -0.01022830419242382, + 0.010348803363740444, + 0.00047934098984114826, + 0.010143245570361614, + 0.023419484496116638, + -0.023617954924702644, + 0.003092236816883087, + -0.02214360423386097, + -0.02626894973218441, + 0.002557076048105955, + 0.007350485771894455, + 0.014013414271175861, + 0.0045081088319420815, + -0.008569659665226936, + -0.0035777799785137177, + -0.0030780602246522903, + 0.016983378678560257, + -0.036461811512708664, + -0.011497095227241516, + 0.00018196794553659856, + 0.015211323276162148, + -0.013049416244029999, + -0.02142060548067093, + -0.042132388800382614, + -0.013595209456980228, + -0.01102218497544527, + -0.00161611451767385, + -0.012808416970074177, + -0.012305152602493763, + 0.0016861107433214784, + 0.01665732078254223, + -0.026098832488059998, + 0.025035599246621132, + 0.014098472893238068, + -0.03651851788163185, + 0.013708620332181454, + -0.008853188715875149, + -0.020484959706664085, + -0.006737354677170515, + -0.014615912921726704, + -0.014233148656785488, + -0.0037461251486092806, + -0.002883134176954627, + -0.0016568718710914254, + -0.018585316836833954, + -0.015253853052854538, + 0.02119378186762333, + -0.004550638142973185, + -0.024284247308969498, + -0.003257037838920951, + -0.008924070745706558, + -0.018883023411035538, + 0.0027130169328302145, + -0.02113707736134529, + -0.016416320577263832, + 0.020839370787143707, + -0.020626725628972054, + -0.003127677831798792, + 0.019634373486042023, + 0.007641103118658066, + 0.0030443912837654352, + 0.020924430340528488, + 0.00320387608371675, + -0.019620196893811226, + 0.01946425624191761, + -0.023646308109164238, + -0.0064467377960681915, + 0.007655279245227575, + -0.010391333140432835, + -0.012290976010262966, + 0.020343195647001266, + 0.00609232671558857, + 0.0024117673747241497, + 0.0076765441335737705, + -0.022441308945417404, + 0.013120298273861408, + 0.031925350427627563, + -0.022030193358659744, + 0.01334003359079361, + -0.006173841189593077, + -0.00701025128364563, + -0.001601938041858375, + -0.0025854287669062614, + -0.021264664828777313, + -0.0029097150545567274, + -0.004660505801439285, + 0.004975931718945503, + 0.01200035959482193, + -0.013616473414003849, + -0.014289855025708675, + -0.0036610665265470743, + -0.018996434286236763, + -0.0039339629001915455, + 0.004504564683884382, + -0.0073363096453249454, + -0.02849465049803257, + -0.006545972544699907, + 0.002734281588345766, + -0.01415517833083868, + -0.0013095489703118801, + -0.012921827845275402, + 0.00979592278599739, + -0.0012333506019786, + -0.02653830125927925, + 0.020130548626184464, + -0.004632153082638979, + 0.038588277995586395, + -0.017351966351270676, + -0.02096696011722088, + -0.01592014543712139, + 0.010873331688344479, + 0.01678490824997425, + 0.0290333554148674, + 0.01833014190196991, + -0.005234651733189821, + -0.02358960174024105, + -0.021576546132564545, + 0.011319889687001705, + 0.01738031953573227, + -0.03847486898303032, + 0.0015797873493283987, + 0.019350845366716385, + 0.006709001958370209, + -0.007995514199137688, + -0.012893475592136383, + -0.011015096679329872, + -0.007527691312134266, + -0.008392454124987125, + 0.0051247840747237206, + -0.008498777635395527, + 0.00809474941343069, + -0.02228536829352379, + 0.009774657897651196, + -0.012574505060911179, + -0.00810183770954609, + -0.004968843422830105, + 0.011057625524699688, + -0.009250129573047161, + -0.009250129573047161, + 0.004501020535826683, + -0.033144526183605194, + 0.010462215170264244, + 0.03189699724316597, + 0.0026704876217991114, + -0.00731504475697875, + -0.0031294499058276415, + -0.008683071471750736, + -0.015948498621582985, + -0.010759920813143253, + -0.014240236952900887, + -0.008902806788682938, + 0.0005302875651977956, + 0.004795182030647993, + -0.014325295574963093, + 0.011043448932468891, + 0.01073156762868166, + 0.030706176534295082, + 0.002241650130599737, + -0.013276238925755024, + 0.020811019465327263, + 0.0007770463125780225, + -0.02804100513458252, + 0.013006886467337608, + -0.013687356375157833, + -0.007967161014676094, + -0.004699490964412689, + -0.005153137259185314, + -0.019563492387533188, + -0.003164890920743346, + -0.02010219730436802, + -0.0030975528061389923, + 0.017394496127963066, + -0.004107624292373657, + -0.0003311528416816145, + 0.0015425742603838444, + 0.011695565655827522, + 0.0008333090809173882, + -0.005163769703358412, + -0.011851506307721138, + 0.017848141491413116, + 0.0004106738488189876, + 0.008739776909351349, + -0.015268029645085335, + 0.008307395502924919, + 0.0006233205203898251, + -0.0005090229096822441, + -0.01268082857131958, + -0.008966600522398949, + -0.005791076924651861, + -0.01079536136239767, + 0.014296943321824074, + 0.0006747100851498544, + 0.004174962639808655, + 0.0294870026409626, + 0.01828761212527752, + 0.007541867904365063, + 0.002686436055228114, + -0.027913417667150497, + -0.0034643684048205614, + 0.013141563162207603, + -0.020173078402876854, + -0.00864054262638092, + 0.04102662578225136, + -0.007130750920623541, + -0.002888450399041176, + -0.0025234068743884563, + 0.02816859260201454, + 0.0022824073676019907, + 0.015735851600766182, + 0.02509230561554432, + 0.0016515556490048766, + 0.006060429383069277, + -0.010639420710504055, + 0.019038964062929153, + -0.01991790346801281, + 0.001071207458153367, + 0.00830030720680952, + -0.00500074028968811, + -0.006343958433717489, + 0.016543909907341003, + 0.0001388848468195647, + -0.011660125106573105, + -0.002677575685083866, + 0.010575626976788044, + -0.015509028919041157, + 0.056875891983509064, + -0.00688620749861002, + -0.013687356375157833, + -0.0028388327918946743, + -0.02005966752767563, + -0.015126264654099941, + 0.01620367541909218, + 0.045024383813142776, + 0.016444673761725426, + 0.012992709875106812, + -0.008831923827528954, + 0.00046693658805452287, + -0.036461811512708664, + -0.012716270051896572, + 0.010696126148104668, + 0.0038170074112713337, + -0.015395617112517357, + 0.005092887207865715, + 0.006595590151846409, + 0.02940194308757782, + 0.002654538955539465, + -0.011929476633667946, + 0.03566792979836464, + -0.02527659758925438, + 0.02305089682340622, + -0.05693259462714195, + -0.020031314343214035, + 0.0026137817185372114, + 0.002347973408177495, + -0.01728108525276184, + 0.0179190244525671, + -0.006322693545371294, + 0.014070119708776474, + 0.027105359360575676, + 0.00895951222628355, + 0.019138198345899582, + 0.010008568875491619, + 0.004394697491079569, + 0.011617595329880714, + -0.003987124655395746, + 0.015509028919041157, + -0.003916242625564337, + 0.01979031413793564, + -0.01614696905016899, + 0.0033031112980097532, + 0.011653036810457706, + 0.012744622305035591, + 0.0059930915012955666, + -0.014899441972374916, + 0.001841165591031313, + 0.00798842590302229, + 0.006524708122014999, + -0.009781746193766594, + -0.02091025374829769, + -0.01959184557199478, + -0.005110607948154211, + -0.013581032864749432, + 0.015253853052854538, + -0.01820255257189274, + -0.006634575314819813, + 0.005553621798753738, + 0.0011163948802277446, + -0.01477185357362032, + -0.021562369540333748, + -0.0015035889809951186, + 0.015679147094488144, + -0.02731800638139248, + -0.002266458934172988, + 0.00971086323261261, + -0.004983020015060902, + -0.014899441972374916, + -0.007910455577075481, + 0.02377389557659626, + -0.017181849107146263, + -0.005280725192278624, + -0.008966600522398949, + 0.004738476127386093, + 0.016217852011322975, + -0.021108724176883698, + 0.03388169780373573, + 0.005149593111127615, + -0.003710684133693576, + -0.028919944539666176, + -0.02653830125927925, + 0.0006733810296282172, + 0.006134856026619673, + -0.021207958459854126, + 0.003251721616834402, + -0.034136876463890076, + 0.006095870863646269, + -0.020655078813433647, + 0.022739015519618988, + 0.0045435503125190735, + 0.009264306165277958, + 0.0025588481221348047, + 0.03833310306072235, + -0.0018083825707435608, + -0.0072051770985126495, + 0.028650591149926186, + 0.015579910948872566, + 0.024893835186958313, + -0.016955025494098663, + 0.018727080896496773, + 0.02917511947453022, + -0.02391565963625908, + -0.00884610041975975, + 0.0016923128860071301, + -0.002055584220215678, + -0.011029273271560669, + 0.0082790432497859, + -0.00738592678681016, + -0.010107804089784622, + -0.006099414546042681, + -0.020541666075587273, + -0.02358960174024105, + -0.01818837597966194, + -0.011128507554531097, + -0.00909418798983097, + -0.01855696365237236, + 0.009554922580718994, + -0.004827078897505999, + 0.006811780855059624, + 0.009519482031464577, + 0.00415015360340476, + -0.010646509006619453, + 0.0017135775415226817, + -0.007322133053094149, + 0.02568771503865719, + 0.0025623920373618603, + 0.015579910948872566, + -0.01354559138417244, + -0.010922949761152267, + -0.0031400821171700954, + -0.007357574068009853, + 0.013410915620625019, + 0.009767569601535797, + 0.010440950281918049, + 0.02237042784690857, + -0.02795594558119774, + -0.0010534869506955147, + -0.0005577544216066599, + 0.01184441801160574, + 0.0025889729149639606, + 0.012985622510313988, + -0.00023922747641336173, + -0.030507706105709076, + 0.005677665583789349, + -0.011482919566333294, + -0.0053019896149635315, + 0.01569332368671894, + 0.017550436779856682, + 0.00780413206666708, + -0.009299746714532375, + -0.016572263091802597, + 0.02096696011722088, + 0.016317086294293404, + 0.0028264285065233707, + 0.0032162806019186974, + 0.018117494881153107, + 0.01932249218225479, + 0.006818869151175022, + -0.012340594083070755, + -0.002697068266570568, + 0.0074001033790409565, + -0.008810659870505333, + 0.004437226802110672, + -0.015523205511271954, + 0.013687356375157833, + 0.011241919361054897, + 0.01628873310983181, + -0.018259258940815926, + 0.004182050935924053, + -0.02672259509563446, + -0.0052630044519901276, + 0.01874125748872757, + -0.016572263091802597, + -0.0013600524980574846, + 0.011008008383214474, + -0.0014840963995084167, + -0.026254773139953613, + -0.014856912195682526, + 0.00910127628594637, + -0.013432180508971214, + -0.012468181550502777, + -0.012085418216884136, + -0.009398981928825378, + -0.014389090240001678, + -0.005830062553286552, + 0.07377421110868454, + -0.0003555186267476529, + 0.019818667322397232, + 0.012531976215541363, + -0.004759741015732288, + -0.014438707381486893, + 0.0013281555147841573, + 0.014204796403646469, + 0.01760714314877987, + 0.002945156069472432, + -0.025475068017840385, + -0.010880419984459877, + 0.010235392488539219, + 0.014233148656785488, + -0.03138664737343788, + -0.0033598169684410095, + 0.01200035959482193, + 0.0036220813635736704, + 0.012702093459665775, + 0.017408672720193863, + 0.007350485771894455, + -0.0045081088319420815, + 0.0013813171535730362, + 0.006368767004460096, + -0.015012853778898716, + 0.000410009321058169, + -0.00444431509822607, + -4.300003274693154e-5, + 0.032690878957509995, + 0.014686794951558113, + 0.0018429376650601625, + -0.014488325454294682, + -0.009342276491224766, + -0.030422646552324295, + 0.0028228843584656715, + 0.011837330646812916, + 0.002509230514988303, + 0.00262087001465261, + -0.005355151370167732, + -0.006021444220095873, + -0.017890671268105507, + 0.005436665844172239, + 0.016402145847678185, + 0.02276736870408058, + -0.021930957213044167, + 0.013077769428491592, + -0.016529733315110207, + 0.0035299344453960657, + -0.009484040550887585, + 0.00256416411139071, + -0.0008377392077818513, + -0.012893475592136383, + 0.011922389268875122, + 0.029827237129211426, + 0.01560826413333416, + -0.00013777731510344893, + 0.00871142465621233, + 0.015480675734579563, + 0.011284449137747288, + 0.0055146366357803345, + -0.02872147411108017, + -0.0146300895139575, + 0.009476952254772186, + -0.011950741522014141, + -0.013807855546474457, + -0.0035423387307673693, + -0.0076978085562586784, + -0.002629730151966214, + -0.0021353268530219793, + -0.027559006586670876, + -0.017351966351270676, + -0.0247237179428339, + -0.0018854669760912657, + -0.02409995347261429, + -0.004614432342350483, + 0.025886185467243195, + 0.0060143559239804745, + 0.04318144544959068, + 0.028111886233091354, + 0.005266548600047827, + -0.00021164986537769437, + 0.0016861107433214784, + -0.012468181550502777, + -0.008853188715875149, + 0.007740337867289782, + -0.004522285424172878, + 0.012517799623310566, + -0.046215206384658813, + 0.0073433974757790565, + -0.032464053481817245, + -0.017592966556549072, + -0.0029965457506477833, + 0.016628967598080635, + 0.00989515706896782, + 0.001109306700527668, + 0.00420685950666666, + 0.007031515706330538, + 0.009703775867819786, + -0.006230546627193689, + -0.008215248584747314, + 0.022427134215831757, + 0.009739216417074203, + -0.008902806788682938, + -0.0008532446809113026, + -0.0028866783250123262, + -0.0017818016931414604, + 0.02022978477180004, + -0.004465579520910978, + 0.003276530420407653, + 0.00044788699597120285, + 0.0011119648115709424, + -0.014204796403646469, + 0.0034501918125897646, + 0.012283887714147568, + -0.008789394982159138, + 0.0022398780565708876, + 0.008548395708203316, + -0.0010508288396522403, + -0.0226823091506958, + -0.012744622305035591, + 0.014226061291992664, + 0.01079536136239767, + 0.00374966929666698, + -0.02150566503405571, + -0.004313183017075062, + 0.008612189441919327, + -0.014041767455637455, + -0.011263184249401093, + -0.011171037331223488, + -0.010518920607864857, + 0.016076086089015007, + 0.008867365308105946, + 0.023532895371317863, + -0.00784666184335947, + 0.006003723945468664, + -0.0033633611164987087, + -0.02028649114072323, + 0.014055943116545677, + 0.010568538680672646, + -0.021562369540333748, + 0.014615912921726704, + -0.0036398018710315228, + 0.017479553818702698, + 0.02504977583885193, + 0.008016779087483883, + -0.008505865931510925, + -0.014488325454294682, + -0.021207958459854126, + 0.010745744220912457, + -0.001148291863501072, + 0.020300667732954025, + -0.01942172646522522, + 0.020541666075587273, + -0.009944775141775608, + 0.0043876091949641705, + 0.002122922334820032, + -0.029373589903116226, + 0.022171957418322563, + -0.027105359360575676, + 0.002161907497793436, + 0.02069760672748089, + -0.01029918622225523, + -0.017181849107146263, + 0.009987303987145424, + 0.0005298445466905832, + 0.0018234449671581388, + 0.021675782278180122, + 0.02018725499510765, + 0.007095309905707836, + 0.01202162355184555, + 0.00675861956551671, + 0.018429376184940338, + 0.026439066976308823, + -0.02295166254043579, + -0.0030851485207676888, + -0.004341535735875368, + 0.0043698884546756744, + 0.0008129304042086005, + -0.016217852011322975, + 0.007889190688729286, + -0.006811780855059624, + -0.00809474941343069, + 0.007169736083596945, + 0.008335748687386513, + -0.021661605685949326, + -0.027417240664362907, + 0.021477311849594116, + -0.013800767250359058, + 0.010915861465036869, + -0.0008594468818046153, + -0.004812902305275202, + 0.022299544885754585, + 0.008385365828871727, + -0.010405509732663631, + -0.012156300246715546, + 0.00988806877285242, + 0.04732096940279007, + 0.016614791005849838, + 0.02653830125927925, + -0.008867365308105946, + 0.010965478606522083, + -0.0028494650032371283, + 0.013198268599808216, + 0.0028725017327815294, + -0.002840604865923524, + -0.005138960666954517, + -0.006375855300575495, + -0.014800206758081913, + 0.007105942349880934, + -0.0031542587094008923, + -0.029798883944749832, + -0.01011489238590002, + 0.016118615865707397, + -0.004986564163118601, + -0.00927848182618618, + 0.007428456097841263, + 0.002151275286450982, + 0.011468742974102497, + -0.003389941994100809, + 0.013822032138705254, + -0.007726161740720272, + -0.01139077264815569, + 0.008449160493910313, + -0.005050357896834612, + 0.003863080870360136, + 0.005606783553957939, + 0.0005276295123621821, + 0.013878737576305866, + 0.005340975243598223, + -0.006967721972614527, + 0.0031914717983454466, + 0.004437226802110672, + -0.0005400339141488075, + 0.01043386198580265, + -0.003499809419736266, + 0.030507706105709076, + 0.010596890933811665, + -0.009788834489881992, + 0.014941970817744732, + -0.014459972269833088, + -0.030904646962881088, + -0.01601938158273697, + -0.004174962639808655, + -0.021080370992422104, + -0.0030443912837654352, + -0.013970884494483471, + -0.0053586955182254314, + 0.00161611451767385, + -0.016047734767198563, + -2.5307166652055457e-5, + -0.010774096474051476, + -0.0027201049961149693, + 0.008002602495253086, + -0.012687916867434978, + 0.001258159289136529, + -0.0025553039740771055, + -0.010044010356068611, + 0.011738095432519913, + 0.002812251914292574, + -0.0176922008395195, + 0.01742284931242466, + 0.016217852011322975, + -0.023830601945519447, + -0.001990018179640174, + 0.003576007904484868, + 0.011376596055924892, + -0.045081090182065964, + 0.014842736534774303, + -0.012829680927097797, + 0.010767009109258652, + 0.013992149382829666, + -0.01184441801160574, + 0.006641663610935211, + 0.03921204060316086, + 0.017366142943501472, + 0.004823534749448299, + 0.001258159289136529, + -0.024199189618229866, + 0.009916421957314014, + 0.025659361854195595, + -0.012737534008920193, + -0.004118256736546755, + 0.011879859492182732, + -0.02546089142560959, + -0.0009746304713189602, + -0.02839541621506214, + 0.022965839132666588, + 0.014658442698419094, + -0.008973688818514347, + 0.015877615660429, + -0.0025606199633330107, + -0.004423050209879875, + 0.009476952254772186, + -0.00639712018892169, + 0.012744622305035591, + 0.007265427149832249, + -0.005968282464891672, + -6.252033199416474e-5, + 0.03317287564277649, + -0.025758597999811172, + -0.007492250297218561, + 0.008931159041821957, + -0.014644266106188297, + -0.013822032138705254, + -0.0016985151451081038, + 0.012843857519328594, + 0.036178283393383026, + 0.004656961653381586, + -0.004019021522253752, + 0.02218613401055336, + 0.002835288643836975, + -0.007378838956356049, + -0.005826518405228853, + -0.00909418798983097, + 0.0034005744382739067, + 0.003600816708058119, + -0.0024560687597841024, + 0.03206711634993553, + -0.016132792457938194, + 0.01397797279059887, + -0.004805814474821091, + -0.0018925551557913423, + 0.02517736330628395, + -0.012985622510313988, + 0.020243961364030838, + -0.025418363511562347, + 0.017592966556549072, + -0.003916242625564337, + 0.012368947267532349, + -0.010646509006619453, + 0.009880981408059597, + 0.013127386569976807, + -0.03960898146033287, + 0.0013910634443163872, + 0.010029833763837814, + 0.012170476838946342, + -0.021789193153381348, + 0.00013146435958333313, + 0.006712546106427908, + -0.0007810334209352732, + -0.0035317065194249153, + -0.019336668774485588, + 0.003070971928536892, + -0.008477512747049332, + -0.0027856710366904736, + -0.0019634373020380735, + 0.009781746193766594, + -0.009987303987145424, + 0.006595590151846409, + 0.015664970502257347, + -0.019520962610840797, + 0.004182050935924053, + 0.021760839968919754, + 0.014034679159522057, + -0.00968959927558899, + 0.006570781581103802, + 0.010306274518370628, + 0.026779301464557648, + -0.01097965519875288, + 0.007081133313477039, + -0.004125345032662153, + 0.008867365308105946, + -0.0020077386870980263, + -0.015367264859378338, + 0.009420246817171574, + -0.014601736329495907, + -0.005468563176691532, + 0.010681950487196445, + -0.031188175082206726, + 0.0010269060730934143, + 0.0015071331290528178, + -0.01674238033592701, + -0.0010676634265109897, + -0.001290942425839603, + -0.0035104418639093637, + 0.014282766729593277, + -0.006769251544028521, + -0.005082254763692617, + -0.027204595506191254, + -0.001406125957146287, + 0.02754482999444008, + -0.006354590877890587, + 0.0032924788538366556, + -0.00907292403280735, + -0.021165430545806885, + 0.01892555132508278, + 0.022809896618127823, + 0.012737534008920193, + 0.009923510253429413, + -0.003418294945731759, + -0.00957618746906519, + -0.006475090514868498, + 0.0015434602973982692, + 0.006173841189593077, + -0.030876293778419495, + 0.03975074738264084, + -0.013325856998562813, + 0.005078710615634918, + -0.011156860738992691, + 0.006110046990215778, + -0.008271954953670502, + 0.005170857533812523, + 0.017323613166809082, + 0.008328660391271114, + -0.001162468339316547, + -0.009852628223598003, + 0.0011084206635132432, + 0.007113030645996332, + 0.020541666075587273, + -0.006942912936210632, + 0.012687916867434978, + 0.024652834981679916, + -0.015551558695733547, + 0.0021246944088488817, + 0.016628967598080635, + -0.01556573435664177, + -0.010497656650841236, + 0.0031879276502877474, + 0.008250690065324306, + 0.0021176061127334833, + 0.0010357664432376623, + -0.0066062225960195065, + 0.006248267367482185, + 0.0008470424800179899, + 0.010887508280575275, + -0.025106480345129967, + 0.030139118432998657, + 0.013495974242687225, + 0.0003183054504916072, + -0.0016223167767748237, + 0.0023727822117507458, + 0.002328480826690793, + -0.012227182276546955, + 0.011575065553188324, + -0.0331161729991436, + -0.0197336096316576, + 0.020258137956261635, + -0.007208721246570349, + -0.0020963414572179317, + 0.01801825873553753, + -0.015849264338612556, + 0.0007907797116786242, + -0.020655078813433647, + -0.0041926829144358635, + -0.0017942060949280858, + -0.003976492211222649, + -0.001219174126163125, + 0.024922186508774757, + -0.002213297178968787, + -0.016898320987820625, + -0.018230905756354332, + 0.004224580246955156, + 0.0014185303589329123, + 0.008541307412087917, + -0.011376596055924892, + 0.008775218389928341, + -0.012368947267532349, + -0.02731800638139248, + 0.008364101871848106, + -0.02368883602321148, + 0.02263977937400341, + -0.005606783553957939, + -0.0017047172877937555, + -0.00884610041975975, + 0.009562010876834393, + -0.010526008903980255, + 0.02604212611913681, + -0.004823534749448299, + -0.02377389557659626, + -0.0006002837908454239, + -0.021448958665132523, + 0.04437226802110672, + 0.0010871560079976916, + 0.00971086323261261, + 0.005231107585132122, + 0.013439267873764038, + -0.006900383625179529, + 0.004685314372181892, + 0.00511415209621191, + -0.0024596129078418016, + -0.0197336096316576, + 0.004749108571559191, + -0.007641103118658066, + -0.007726161740720272, + 0.017663847655057907, + -0.004656961653381586, + 0.005404768977314234, + 0.012305152602493763, + -0.007832485251128674, + 0.017890671268105507, + 0.024652834981679916, + 0.02721877209842205, + 0.014615912921726704, + -0.0004567472788039595, + 0.023490367457270622, + 0.0060497974045574665, + 0.012234270572662354, + 0.024922186508774757, + -0.019634373486042023, + 0.0019226801814511418, + 0.022257015109062195, + 0.0029043988324701786, + -0.007867925800383091, + -0.016487203538417816, + 0.01379367895424366, + -0.0010782957542687654, + 0.0021353268530219793, + 0.009476952254772186, + 0.025602657347917557, + 0.0037744781002402306, + 0.012772975489497185, + -0.020314842462539673, + -0.011518360115587711, + 0.0020910254679620266, + -0.005188578274101019, + 0.031018057838082314, + -0.0053586955182254314, + 0.0014513133792206645, + 0.01481438335031271, + 0.006382943596690893, + -0.004004845395684242, + -0.029798883944749832, + -0.006471546366810799, + -0.0028193402104079723, + -0.0032836187165230513, + 0.014254413545131683, + 0.007513515185564756, + 0.004674682393670082, + 0.0010862699709832668, + -0.02816859260201454, + -0.005695386324077845, + 0.028523003682494164, + 0.010497656650841236, + -0.009476952254772186, + 0.008555484004318714, + 0.02028649114072323, + 0.022852426394820213, + -0.002915031276643276, + 0.021349724382162094, + -0.0057166507467627525, + 0.00014608382480219007, + 0.01116394903510809, + 0.02653830125927925, + 0.01542397029697895, + 0.00848460104316473, + -0.020541666075587273, + 0.010029833763837814, + 0.02431260049343109, + 0.003926874604076147, + -0.009115452878177166, + -0.012631211429834366, + 0.00809474941343069, + 0.028324533253908157, + 0.01597685180604458, + 0.009725039824843407, + -0.008952423930168152, + 0.014842736534774303, + 0.015225499868392944, + -0.016898320987820625, + 0.005737915635108948, + 0.015849264338612556, + -0.0022593706380575895, + -0.006368767004460096, + 0.001199681544676423, + -0.008328660391271114, + 0.0007969819125719368, + -0.0071980892680585384, + -0.003870168933644891, + 0.001725981943309307, + 0.004731387831270695, + -0.007882102392613888, + 0.012482358142733574, + 0.003944595344364643, + 0.015778381377458572, + -0.012702093459665775, + -0.004111168440431356, + -0.030706176534295082, + 0.006482178810983896, + 0.01818837597966194, + 0.0019262242130935192, + -0.007155559957027435, + -0.02327772043645382, + 0.005486283451318741, + -0.00907292403280735, + 0.00957618746906519, + 0.01138368435204029, + -0.0016382652102038264, + 0.007981337606906891, + 0.01983284391462803, + -0.017933201044797897, + 0.013439267873764038, + -0.0115679781883955, + -0.008357013575732708, + -0.005947018042206764, + 0.005762724205851555, + 0.008215248584747314, + 0.0019226801814511418, + 0.0038276396226137877, + -0.015239676460623741, + -0.033144526183605194, + -0.0181458480656147, + 0.01647302694618702, + 0.007148471660912037, + -0.0012679056962952018, + 0.0065495166927576065, + 0.007045692298561335, + -0.014296943321824074, + -0.004242300521582365, + -0.009186334908008575, + 0.009973128326237202, + 0.02476624585688114, + -0.014417442493140697, + 0.015806734561920166, + -0.02517736330628395, + 0.0240432471036911, + -0.003937507048249245, + 0.0026173258665949106, + -0.019209081307053566, + 0.026921065524220467, + 0.0161044392734766, + 0.0075560444965958595, + 0.01431111991405487, + -0.007300868164747953, + 0.0014796663308516145, + -0.011808977462351322, + -0.008612189441919327, + 0.006297884974628687, + 0.006149032153189182, + 0.03135829418897629, + -0.003756757592782378, + 0.017848141491413116, + 0.005188578274101019, + 0.0075560444965958595, + -0.02704865299165249, + 0.0037603015080094337, + -0.012454005889594555, + -0.015268029645085335, + 0.00812310166656971, + -0.015154617838561535, + -0.007187456823885441, + -0.015523205511271954, + -0.004653417505323887, + 0.0053374310955405235, + 0.029288532212376595, + -0.0015230816788971424, + -0.007626926526427269, + -0.008796483278274536, + -0.004671138245612383, + 0.005340975243598223, + -0.015126264654099941, + -0.013269150629639626, + 0.029600413516163826, + 0.0019297683611512184, + 0.011298625729978085, + -0.010809537954628468, + -0.010873331688344479, + -0.0068649426102638245, + -0.023447837680578232, + 0.03249240666627884, + 0.0013476480962708592, + -0.011397860012948513, + -0.030479352921247482, + 0.0008248917874880135, + 0.010320451110601425, + -0.006110046990215778, + -0.012758798897266388, + 0.0033119716681540012, + 0.01705426163971424, + -0.035639580339193344, + 0.00784666184335947, + -0.006262443959712982, + -0.006538884714245796, + -0.008442072197794914, + 0.008073484525084496, + 0.007690720725804567, + 0.022880779579281807, + 0.0062270029447972775, + -0.006382943596690893, + 0.03189699724316597, + -0.007534779608249664, + 0.003257037838920951, + 0.0046640499494969845, + 0.012475269846618176, + 0.014296943321824074, + -1.2487453204812482e-5, + 0.0026952961925417185, + 0.008293218910694122, + -0.011780624277889729, + 0.008732689544558525, + 0.011029273271560669, + -0.012985622510313988, + 0.0064680022187530994, + -0.02636818401515484, + -0.000810272351372987, + -0.001009185565635562, + 0.004423050209879875, + -0.012560328468680382, + -0.012156300246715546, + 0.007506426889449358, + -0.014644266106188297, + -0.015891792252659798, + -0.0069854422472417355, + 0.002677575685083866, + -0.0008824836113490164, + -0.005323254503309727, + -0.002089253393933177, + -0.006925192661583424, + 0.0035299344453960657, + 0.007945896126329899, + -0.01969107985496521, + 0.02668006718158722, + -0.0031329940538853407, + 0.0043486240319907665, + 0.012624123133718967, + 0.012716270051896572, + -0.04740602523088455, + -0.023717189207673073, + 0.005957650486379862, + 0.0006423700833693147, + -0.017805613577365875, + -0.0016613019397482276, + 0.0016143424436450005, + 0.0014291626866906881, + 0.009186334908008575, + 0.003489177208393812, + -0.024114130064845085, + -0.0021052018273621798, + 0.004143065772950649, + -0.01864202320575714, + -0.00020157131075393409, + 0.037539221346378326, + 0.009299746714532375, + -0.0048022703267633915, + 0.010568538680672646, + -0.01138368435204029, + -0.0017242098692804575, + 0.01005109865218401, + 0.019450079649686813, + -0.0016037101158872247, + 0.026623360812664032, + -0.010653597302734852, + -0.01979031413793564, + -0.005890312138944864, + 0.002027231501415372, + 0.016501380130648613, + -0.004075727425515652, + -0.011298625729978085, + 0.012042888440191746, + 0.004203315358608961, + 0.02799847535789013, + -0.004685314372181892, + -0.0007495794561691582, + 0.023802248761057854, + -0.005649312864989042, + 0.011490006931126118, + -0.005869047716259956, + 0.002337341196835041, + -0.022923309355974197, + 0.019393375143408775, + -0.0011128508485853672, + 0.008130189962685108, + -6.955317803658545e-5, + -0.007485162001103163, + -0.004281285684555769, + -0.008994953706860542, + 0.006833045743405819, + -0.0023355691228061914, + -0.010334626771509647, + -0.001500930986367166, + 0.017621319741010666, + -0.02391565963625908, + -0.01847190596163273, + -0.006967721972614527, + -0.026665890589356422, + 0.017536260187625885, + -0.02845212258398533, + -0.029798883944749832, + 0.002376326359808445, + 0.008080572821199894, + 0.009413158521056175, + 0.005362239666283131, + -0.003519302001222968, + -0.009448599070310593, + 0.005808797664940357, + -0.01181606575846672, + 0.008144366554915905, + -0.0044691236689686775, + 0.02526242285966873, + 0.02010219730436802, + 0.0179190244525671, + 0.02521989308297634, + 0.0025499877519905567, + -0.014686794951558113, + 0.01728108525276184, + 0.006432561203837395, + -0.018585316836833954, + -0.0014778942568227649, + -0.022980013862252235, + -0.004111168440431356, + 0.007598573807626963, + -0.00030833765049465, + -0.0014752361457794905, + 0.010327539406716824, + -0.024213364347815514, + -0.028707297518849373, + -0.008073484525084496, + -0.00046029139775782824, + -0.0013511922443285584, + 0.020584195852279663, + 0.010285009630024433, + -0.003505125641822815, + 0.0068259574472904205, + 0.005791076924651861, + -0.00195103301666677, + 0.016799084842205048, + -0.006212826352566481, + -0.005046813748776913, + -0.01678490824997425, + 0.008342836983501911, + -0.003063883865252137, + -0.010377156548202038, + 0.008605101145803928, + 0.007152015808969736, + -0.029203472658991814, + -0.041536979377269745, + -0.0015505484770983458, + 0.0019917902536690235, + 0.012326417490839958, + 0.00041377494926564395, + -0.03391005098819733, + -0.0032446335535496473, + -0.003257037838920951, + -0.01583508774638176, + -0.01138368435204029, + 0.014126826077699661, + -0.014459972269833088, + 0.01806078851222992, + -0.0031259057577699423, + 0.037142280489206314, + 0.00017089259927161038, + -0.007945896126329899, + -0.018500259146094322, + 0.009009129367768764, + 0.020711783319711685, + 0.008775218389928341, + -0.008193984627723694, + 0.019889550283551216, + -0.010540185496211052, + -0.006053341086953878, + -0.012695005163550377, + 0.012971445918083191, + 0.002227473771199584, + -0.011695565655827522, + -0.014360737055540085, + 0.003806374967098236, + -0.008016779087483883, + -0.0015532065881416202, + -0.017706377431750298, + 0.010178686119616032, + -0.01851443573832512, + 0.011156860738992691, + 0.0344771109521389, + -0.002300127875059843, + -0.003338552312925458, + 0.013666091486811638, + -0.00907292403280735, + -0.02200184017419815, + -0.008569659665226936, + -0.011851506307721138, + -0.016529733315110207, + -0.020839370787143707, + 0.0005599695141427219, + 0.020314842462539673, + -0.0036468899343162775, + -0.008385365828871727, + -0.0018819228280335665, + -0.018712904304265976, + 0.008739776909351349, + 0.010249568149447441, + -0.00731504475697875, + 0.005791076924651861, + 0.00578398909419775, + 0.007070501334965229, + 0.01583508774638176, + -0.017592966556549072, + 0.0036681548226624727, + 0.025602657347917557, + 0.019662726670503616, + -0.013198268599808216, + 0.030734529718756676, + -0.0009108365047723055, + -0.018046611919999123, + 0.0015416882233694196, + 0.010611067526042461, + -0.026850184425711632, + 0.01773473061621189, + 0.005826518405228853, + 0.0009250129223801196, + -0.008108926005661488, + 0.0010924721136689186, + -0.01005109865218401, + -0.00567057728767395, + -0.012617034837603569, + 0.023107603192329407, + -0.007506426889449358, + 0.0029805973172187805, + -0.039126984775066376, + -0.005606783553957939, + -0.02105201780796051, + 0.01868455298244953, + -0.023291897028684616, + -0.014913618564605713, + 0.04011933505535126, + 0.007931720465421677, + 0.010150333866477013, + 0.017805613577365875, + -0.009108364582061768, + -0.011872771196067333, + 0.018613670021295547, + 0.01207124162465334, + 0.003620309289544821, + -0.015764204785227776, + 0.005706018302589655, + 0.027743300423026085, + 0.022242840379476547, + 0.013609386049211025, + -0.015324735082685947, + -0.0028654136694967747, + -0.008442072197794914, + 0.0015071331290528178, + 0.012397299520671368, + 0.0009631121065467596, + 0.0112277427688241, + -0.006655840203166008, + -0.013786591589450836, + -0.005869047716259956, + 0.004936946555972099, + 0.006329781841486692, + -0.01224844716489315, + 0.017933201044797897, + 0.0021264664828777313, + -0.018004082143306732, + 0.006942912936210632, + -0.010533097200095654, + -0.0015895337564870715, + -0.01202162355184555, + -0.004164330195635557, + -0.008675983175635338, + -0.001534600043669343, + -0.0043876091949641705, + -0.006188017316162586, + 0.0016471254639327526, + -0.006326237693428993, + 0.004160786047577858, + -0.004593167454004288, + 0.017663847655057907, + -0.027077006176114082, + -0.0012129719834774733, + -0.006570781581103802, + -0.003446647897362709, + 0.002486193785443902, + -0.011043448932468891, + 0.019818667322397232, + -0.00713429506868124, + 0.002916803117841482, + -0.012454005889594555, + -0.017862318083643913, + -0.01624620333313942, + -0.013056504540145397, + -0.004483300261199474, + 0.015480675734579563, + 0.025531774386763573, + -0.0038559925742447376, + 0.01628873310983181, + 0.03263417258858681, + 0.018160024657845497, + -0.02862223982810974, + -0.0012298064539209008, + -0.004004845395684242, + 0.022299544885754585, + -0.020881900563836098, + 0.007754514459520578, + 0.0018066104967147112, + -0.004936946555972099, + 0.010887508280575275, + -0.009973128326237202, + -0.00463924091309309, + 0.012163388542830944, + -0.006085238419473171, + -0.005369327962398529, + -0.008449160493910313, + -0.014601736329495907, + -0.02414248324930668, + 0.002094569616019726, + -0.036008164286613464, + -0.013992149382829666, + 0.0009560238686390221, + -0.00909418798983097, + -0.02082519605755806, + -0.0226823091506958, + 0.011801889166235924, + 0.006219914648681879, + -0.007081133313477039, + -0.0015461184084415436, + 0.011312801390886307, + -0.02055584266781807, + 0.02414248324930668, + 0.003563603386282921, + -0.0322088785469532, + -0.007860837504267693, + 0.009519482031464577, + -0.005330342799425125, + -0.00706695718690753, + 0.0029008546844124794, + -0.015381441451609135, + 0.006276620086282492, + 0.022965839132666588, + 0.017323613166809082, + -0.01624620333313942, + 0.010497656650841236, + -0.0098668048158288, + 0.03252075985074043, + 0.00878230668604374, + -0.008512954227626324, + 0.011837330646812916, + 0.027530653402209282, + 0.004862519912421703, + -0.00830030720680952, + -0.01756461337208748, + -0.00387371308170259, + 0.010178686119616032, + 0.003863080870360136, + 0.006911016069352627, + -0.016855791211128235, + -0.011653036810457706, + 0.016770731657743454, + 0.004621520638465881, + -0.014970324002206326, + 0.004901505075395107, + -0.0028388327918946743, + 0.012588681653141975, + -0.010894596576690674, + 0.0027236491441726685, + -0.008704336360096931, + -0.013120298273861408, + -0.020116373896598816, + 0.002969964873045683, + -0.008746865205466747, + 0.007825396955013275, + 0.01184441801160574, + -0.02418501302599907, + 0.014800206758081913, + 0.0020148269832134247, + 0.0010747516062110662, + 0.009221776388585567, + 0.020881900563836098, + -0.011624683625996113, + 0.010150333866477013, + 0.013985061086714268, + 0.017139319330453873, + 0.02105201780796051, + 0.007889190688729286, + 0.003008950036019087, + -0.006095870863646269, + -0.017592966556549072, + -0.0001744367036735639, + -0.0002647007640916854, + -0.002907942980527878, + -0.007485162001103163, + 0.01249653473496437, + 0.0027466858737170696, + 0.022611428052186966, + 0.0006171183194965124, + -0.012156300246715546, + -0.005574886221438646, + -0.013729885220527649, + 0.0023692380636930466, + 0.008732689544558525, + -0.016799084842205048, + -0.013325856998562813, + 0.0029398398473858833, + -0.00878230668604374, + -0.019350845366716385, + -0.006942912936210632, + 0.010221215896308422, + -0.01932249218225479, + 0.007669455837458372, + -0.006276620086282492, + -0.0004447858955245465, + -0.01213503535836935, + 0.023079250007867813, + 0.0015576366567984223, + 0.00374966929666698, + 0.020017137750983238, + -0.007435544393956661, + -0.012262623757123947, + -0.0009542518528178334, + 0.00359550048597157, + 0.012843857519328594, + 0.004483300261199474, + -0.01202162355184555, + 0.012276800349354744, + 0.006010811775922775, + -0.0037035958375781775, + 0.010837891139090061, + 0.01828761212527752, + -0.003863080870360136, + -0.0064857229590415955, + -0.0061525763012468815, + -0.005812341812998056, + -0.007272515445947647, + 0.004302550572901964, + -0.027119535952806473, + -0.01565079391002655, + 0.01549485232681036, + 0.02082519605755806, + -0.01678490824997425, + -0.001587761682458222, + 0.027970122173428535, + 0.007853749208152294, + -0.017536260187625885, + 0.009923510253429413, + -0.013439267873764038, + -0.02577277459204197, + -0.003905610181391239, + 0.0015097912400960922, + 0.0013503062073141336, + 0.0032871628645807505, + 0.0006211054278537631, + 0.01820255257189274, + -0.008406630717217922, + -0.0007832485134713352, + 0.013233710080385208, + -0.009313923306763172, + -0.0043309032917022705, + 0.0004474440065678209, + 0.006616855040192604, + -0.01969107985496521, + 0.005103519652038813, + -0.003499809419736266, + -0.0023302529007196426, + -0.001228920416906476, + 0.008534219115972519, + 0.021151253953576088, + 0.004975931718945503, + -0.01005109865218401, + 0.0007114802720025182, + 0.007201633416116238, + 0.006893295794725418, + 0.006301429122686386, + -0.015055382624268532, + -0.017323613166809082, + 0.004196227062493563, + -0.02726130001246929, + 0.009767569601535797, + 0.017848141491413116, + 0.007074045017361641, + 0.02014472521841526, + 0.01445288397371769, + 0.013347120955586433, + -0.008286131545901299, + -0.01859949342906475, + -0.014842736534774303, + 0.005174401681870222, + -0.0034643684048205614, + 0.0017321842024102807, + -0.02880653366446495, + -0.004281285684555769, + 0.007726161740720272, + -0.008839012123644352, + -0.01719602569937706, + -0.03484569862484932, + -0.001434478908777237, + -0.007095309905707836, + -0.0018996434519067407, + 0.013432180508971214, + 0.008994953706860542, + -0.009179246611893177, + -0.0009958951268345118, + -0.013729885220527649, + -0.009611628949642181, + 3.173086588503793e-5, + -0.009625804610550404, + -0.016260379925370216, + 0.01152544841170311, + -0.005379960406571627, + 0.002674031537026167, + -0.004121800884604454, + 0.011865682899951935, + 0.029260179027915, + 0.012397299520671368, + -0.007655279245227575, + -0.008335748687386513, + 0.0007743882015347481, + 0.005131872370839119, + -0.00463924091309309, + -0.0025411273818463087, + -0.02014472521841526, + -0.0007987539866007864, + 0.012057065032422543, + -0.0022646868601441383, + 0.001180188963189721, + 0.017522083595395088, + 0.006857854314148426, + -0.023206837475299835, + -0.007478073704987764, + 0.006336870137602091, + 0.01701173186302185, + 0.02504977583885193, + 0.01983284391462803, + -0.016175322234630585, + 0.014941970817744732, + -0.020938606932759285, + 0.01336129754781723, + -0.006911016069352627, + 0.014396178536117077, + -0.00579462107270956, + 0.0013325856998562813, + 0.017309436574578285, + 0.004908593371510506, + 0.0020644445903599262, + 0.016912497580051422, + -0.0010260200360789895, + -0.015849264338612556, + 0.005415401421487331, + -0.020570019260048866, + 0.00036504340823739767, + -0.006627487484365702, + 0.024553600698709488, + 0.0037744781002402306, + 0.007591485511511564, + -0.007357574068009853, + -0.0179190244525671, + 0.00670191366225481, + 0.019988784566521645, + -0.0037461251486092806, + 0.009519482031464577, + -0.0037319487892091274, + -0.008534219115972519, + 0.0009400753770023584, + -0.004773917142301798, + 0.00469594681635499, + -0.008945335634052753, + 0.024978892877697945, + -0.014615912921726704, + -0.00791754387319088, + -0.00585132697597146, + -0.029005002230405807, + -0.014842736534774303, + -0.010639420710504055, + 0.026694241911172867, + -0.010235392488539219, + 0.00957618746906519, + -0.006747987121343613, + 0.004483300261199474, + 0.005280725192278624, + -0.009058747440576553, + -0.010681950487196445, + -0.0018340774113312364, + 0.002601377433165908, + -0.0007752742385491729, + -0.03688710555434227, + 0.02513483352959156, + 0.017663847655057907, + -0.01614696905016899, + -0.027077006176114082, + 0.011986183002591133, + -0.012057065032422543, + 0.006709001958370209, + 0.00664520775899291, + -0.01141203660517931, + 0.0056989300064742565, + 0.00420685950666666, + -0.013921267352998257, + 0.009994392283260822, + -0.02078266628086567, + 0.003118817461654544, + -0.004001301247626543, + 0.005982459057122469, + 0.0006414840463548899, + 0.000688443542458117, + -0.0028423769399523735, + -0.004167874343693256, + -0.02368883602321148, + -0.0009294430492445827, + 0.035781342536211014, + 0.05341683700680733, + 0.03416522964835167, + 0.0021654516458511353, + 0.00044323535985313356, + 0.02546089142560959, + -0.026141362264752388, + 5.1389608415775e-5, + 0.0038099191151559353, + -0.03688710555434227, + -0.011511271819472313, + -0.00846333708614111, + -0.009994392283260822, + 0.028934121131896973, + 0.010058186948299408, + -0.013616473414003849, + 0.00039339630166068673, + -0.012269712053239346, + -4.621188418241218e-5, + -0.0013068908592686057, + 0.00846333708614111, + -0.009540745988488197, + 0.007513515185564756, + -0.012631211429834366, + 0.009441511705517769, + 0.01239021122455597, + 0.004341535735875368, + -0.008931159041821957, + -0.015338911674916744, + -0.01746537908911705, + 0.006244723219424486, + 0.02142060548067093, + -0.019450079649686813, + -0.01383620873093605, + -0.010603979229927063, + -0.010837891139090061, + 0.016983378678560257, + 0.0008802685188129544, + 0.009845539927482605, + -0.006021444220095873, + -0.007740337867289782, + -0.0017649672226980329, + -0.013091945089399815, + 0.002371010137721896, + -0.009831363335251808, + -0.01220591738820076, + -0.0147435013204813, + 0.023121779784560204, + -0.02971382439136505, + 0.018585316836833954, + -0.022739015519618988, + 0.0015771293547004461, + -0.005553621798753738, + -0.015806734561920166, + -0.011553801596164703, + -0.007449720986187458, + 0.011993271298706532, + 0.04564814642071724, + -0.0012218322372063994, + -0.009264306165277958, + -0.027516476809978485, + -0.01102218497544527, + 0.0033527289051562548, + 0.013573944568634033, + 0.0004033641016576439, + -0.022342074662446976, + 0.02142060548067093, + -0.0061135911382734776, + -0.014367825351655483, + 0.0017986362800002098, + -0.013325856998562813, + 0.0012847401667386293, + -0.0023816425818949938, + 0.0015133352717384696, + -0.016274556517601013, + -0.022257015109062195, + -0.0025234068743884563, + -0.022384604439139366, + 0.00610295869410038, + -0.00505744619295001, + 0.03342805430293083, + -0.008789394982159138, + 0.001731298165395856, + 0.016898320987820625, + 0.007726161740720272, + -0.024553600698709488, + 0.004805814474821091, + -0.012921827845275402, + -0.004805814474821091, + -0.00968959927558899, + -0.009420246817171574, + -0.02872147411108017, + 0.0004620634426828474, + -0.01764967106282711, + -0.0016294049564749002, + 0.005599695257842541, + -0.00372131634503603, + -0.002697068266570568, + 0.002066216664388776, + 0.002195576671510935, + 0.007669455837458372, + -0.0009126085205934942, + -0.0008966600289568305, + 0.004536462016403675, + 0.02509230561554432, + -0.013637738302350044, + -0.03804957494139671, + 0.00518503412604332, + 0.006786972284317017, + 0.009221776388585567, + 0.024837128818035126, + -0.005840694531798363, + -0.025475068017840385, + 0.012241358868777752, + -0.0005745889502577484, + -0.013644826598465443, + 0.014658442698419094, + -0.000903748266864568, + 0.007120118476450443, + 0.00719100097194314, + -0.0018588860984891653, + -0.01979031413793564, + 0.006783428136259317, + 0.03030923567712307, + 0.013850385323166847, + 0.010448038578033447, + -0.0013848613016307354, + 0.015168794430792332, + 0.023065073415637016, + -0.013935443945229053, + 0.0009383033611811697, + 0.01728108525276184, + 0.002941611921414733, + -0.014077208004891872, + 0.01011489238590002, + -0.014226061291992664, + -0.0034820889122784138, + 0.011837330646812916, + -0.003533478593453765, + 0.017720554023981094, + -0.012617034837603569, + -0.01932249218225479, + 0.012191741727292538, + 0.019889550283551216, + 0.0033580451272428036, + 0.0008846986456774175, + 0.001329041551798582, + -0.012283887714147568, + 0.012815504334867, + 0.020343195647001266, + 0.005610327236354351, + 0.006684192921966314, + -0.01549485232681036, + 0.0012395527446642518, + -0.011830242350697517, + -0.00590803287923336, + 0.013566856272518635, + 0.01855696365237236, + 0.008201072923839092, + -0.008073484525084496, + 0.00621637050062418, + -0.0014167582849040627, + 0.004313183017075062, + 0.010029833763837814, + 0.00943442340940237, + 0.0082790432497859, + 0.00494403438642621, + 0.01200035959482193, + 0.004600255750119686, + -0.01719602569937706, + -0.018386846408247948, + -0.01431111991405487, + -0.0025712524075061083, + -0.01286512240767479, + -0.007229986134916544, + 0.005961194634437561, + -0.011688477359712124, + -0.01470097154378891, + -0.011794800870120525, + -0.03830474987626076, + -0.009476952254772186, + 0.017351966351270676, + 0.02146313525736332, + 0.02022978477180004, + -0.005418945569545031, + 0.0226823091506958, + -0.008208160288631916, + -0.006595590151846409, + 0.0001239331322722137, + 0.008222336880862713, + -0.007098854053765535, + -0.0037603015080094337, + 0.013198268599808216, + -0.02300836704671383, + -0.006620399188250303, + -0.0010056414175778627, + 0.0053586955182254314, + 0.0005147820920683444, + 0.0014468831941485405, + -0.006978354416787624, + 0.003131221979856491, + -0.016359616070985794, + -0.027530653402209282, + 0.0060320766642689705, + -0.013198268599808216 + ], + "53f4439e-ed64-466a-b4e5-22f63fae7143": [ + -0.03149556741118431, + -0.016457783058285713, + -0.012538586743175983, + -0.021228978410363197, + -0.06514953076839447, + -0.011643988080322742, + 0.025233373045921326, + 0.058787938207387924, + 0.005072944797575474, + 0.03833996132016182, + 0.0016161358216777444, + 0.019681179895997047, + -0.028882769867777824, + -0.016812782734632492, + 0.007959092035889626, + 0.012126787565648556, + -0.058333538472652435, + 0.0371471606194973, + -0.0014040234964340925, + -0.01682698167860508, + 0.08139431476593018, + -0.019553380087018013, + -0.011367088183760643, + 0.043849553912878036, + -0.025204973295331, + -0.02311757579445839, + 0.024438174441456795, + -0.006432593334466219, + -0.009485590271651745, + -0.027192970737814903, + -0.0058965436182916164, + 0.005772294010967016, + 0.034023165702819824, + -0.0043806955218315125, + 0.01872977986931801, + -0.0077602919191122055, + -0.015705183148384094, + 0.007973291911184788, + -0.04171955585479736, + 0.009954189881682396, + -0.008399290964007378, + 0.04671794921159744, + 0.013667485676705837, + 0.020675178617239, + -0.02046217769384384, + 0.029592769220471382, + 0.03987355902791023, + 0.004061195533722639, + 0.001909898011945188, + -0.011686587706208229, + -0.00571549404412508, + 0.02006457932293415, + -0.013724285177886486, + 0.018104981631040573, + 0.010770688764750957, + 0.009584990330040455, + 0.0009567239903844893, + 0.07554391771554947, + 0.013610685244202614, + -0.0329439640045166, + -0.0024636974558234215, + 0.0012708986178040504, + 0.007944891229271889, + -0.00786679144948721, + -0.009144790470600128, + -0.01872977986931801, + 0.009719889611005783, + 0.013284086249768734, + -0.03822635859251022, + 0.016415182501077652, + 0.012985886074602604, + 0.011182487942278385, + -0.03907835856080055, + 0.00694024283438921, + 0.008278591558337212, + -0.00888919085264206, + 0.050693947821855545, + -0.03927715867757797, + 0.01153038814663887, + 0.017906181514263153, + -0.04038475826382637, + 0.016344182193279266, + 0.0035304713528603315, + -0.007071592379361391, + 0.03978835791349411, + 0.021285777911543846, + -0.04458795487880707, + -0.05501074343919754, + -0.023784974589943886, + -0.035215962678194046, + 0.024239374324679375, + 0.014512384310364723, + -0.0010596738429740071, + 0.015563183464109898, + -0.01657138206064701, + 0.0013685235753655434, + 0.021953176707029343, + 0.014895784668624401, + -0.023997975513339043, + -0.014611784368753433, + -0.015648383647203445, + 0.018289580941200256, + -0.023884374648332596, + -0.01613118313252926, + 0.023202775046229362, + 0.001648085773922503, + 0.03799916058778763, + -0.007795791607350111, + -0.003741696011275053, + 0.009996789507567883, + 0.02306077629327774, + 0.006297693587839603, + -1.3485826002579415e-6, + 0.016060182824730873, + 0.04132195562124252, + -0.07787271589040756, + -0.02805916965007782, + -0.01430648472160101, + -0.042003557085990906, + -0.07270392030477524, + 0.038567159324884415, + 0.04248635470867157, + 0.024551773443818092, + -0.03575556352734566, + 0.007795791607350111, + -0.004107345826923847, + -0.01686958223581314, + 0.003610346233472228, + -0.0032375964801758528, + 0.015790384262800217, + -0.012836786918342113, + -0.03464796394109726, + -0.03430716320872307, + 0.027434371411800385, + -0.009847689419984818, + 0.013688785955309868, + 0.017196182161569595, + 0.052795544266700745, + -0.03459116443991661, + 0.02226557582616806, + 0.00108629884198308, + -0.03447756543755531, + -0.01607438363134861, + -0.021626576781272888, + 0.007852591574192047, + 0.020305978134274483, + -0.025190774351358414, + 0.03470476344227791, + 0.005289494525641203, + 0.02002197876572609, + -0.03265996649861336, + -0.0014297609450295568, + 0.016855381429195404, + 0.0037097460590302944, + -0.008477390743792057, + -0.006372243165969849, + 0.010117488913238049, + 0.016301583498716354, + -0.024594374001026154, + 0.01430648472160101, + 0.0008400178630836308, + -0.02431037463247776, + 0.022890375927090645, + -0.016457783058285713, + 0.0016871357802301645, + 0.00831409078091383, + 0.038907960057258606, + 0.05614674091339111, + -0.036067962646484375, + 0.0232169758528471, + 0.03240436688065529, + -0.023145975545048714, + 0.016386782750487328, + -0.0015069734072312713, + -0.007490491960197687, + -0.029280368238687515, + 0.012048686854541302, + 0.028925370424985886, + 0.012716086581349373, + -0.026326771825551987, + -0.005037444643676281, + -0.00015176234592217952, + -0.033767566084861755, + 0.0017368356930091977, + -0.01581878401339054, + 0.012297187000513077, + 0.025929173454642296, + -0.0019258729880675673, + -0.028272170573472977, + 0.004920294973999262, + -0.0070289927534759045, + -0.00012147643428761512, + 0.032574765384197235, + 0.050551947206258774, + -0.02232237718999386, + -0.009797989390790462, + 0.005243344698101282, + -0.0011271238327026367, + 0.034818362444639206, + 0.028840169310569763, + -0.022592175751924515, + -0.04316795617341995, + -0.05421554297208786, + 0.014654384925961494, + -0.050693947821855545, + 0.006521343253552914, + 0.005310794338583946, + -0.0011839237995445728, + 0.015179784037172794, + -0.03799916058778763, + 0.01772158220410347, + -0.023131774738430977, + 0.020334377884864807, + 0.008441891521215439, + -0.0070289927534759045, + 0.005630293861031532, + -0.025219174101948738, + 0.021101178601384163, + 0.006911842618137598, + 0.012872286140918732, + -0.03166596591472626, + -0.0011093738721683621, + 0.0401291586458683, + -0.03470476344227791, + -0.05120514705777168, + -0.02051897905766964, + -0.022535376250743866, + 0.027221370488405228, + -0.02571617253124714, + 0.003164821770042181, + 0.035272762179374695, + 0.010486689396202564, + 0.022336576133966446, + -0.05100634694099426, + -0.010564789175987244, + -0.0013392360415309668, + -0.013546785339713097, + -0.008221791125833988, + 0.027093570679426193, + -0.009478489868342876, + 0.04708715155720711, + 0.0060030436143279076, + -0.0018513230606913567, + 0.021626576781272888, + 0.024040574207901955, + 0.03288716450333595, + -0.0025595473125576973, + 0.04870595037937164, + 0.028925370424985886, + -0.012737386859953403, + 0.028627170249819756, + 0.039362359791994095, + 0.007561492267996073, + -0.008015891537070274, + 0.012687686830759048, + 0.04157755523920059, + 0.0065674930810928345, + 0.008342491462826729, + -0.032574765384197235, + 0.010493788868188858, + -0.03839676082134247, + -0.011686587706208229, + 0.003645846154540777, + -0.03964635729789734, + 0.04683155193924904, + -0.027334971353411674, + 0.019255179911851883, + -0.03530116379261017, + 0.012531486339867115, + 0.00905959028750658, + -0.04549675062298775, + 0.0006696180207654834, + -0.011026288382709026, + 0.008626490831375122, + -0.017849382013082504, + 0.0016081483336165547, + 0.02041957899928093, + 0.008150791749358177, + 0.02786037139594555, + 0.003812696086242795, + 0.007973291911184788, + 0.036323562264442444, + 3.172809010720812e-5, + 0.030387967824935913, + -0.015264984220266342, + -0.03010396845638752, + -0.005818443838506937, + 0.01792038045823574, + -0.029365569353103638, + -0.018644580617547035, + 0.0105860885232687, + -0.02236497588455677, + 0.04649075120687485, + -0.005261094309389591, + 0.024750573560595512, + -0.007277492433786392, + -0.013369285501539707, + -0.01706838235259056, + -0.00716389250010252, + 0.006794692948460579, + -0.044502753764390945, + 0.00666334293782711, + 0.052000343799591064, + -0.007021892815828323, + 0.013596485368907452, + -0.000512086960952729, + 0.05620354041457176, + -0.007185192313045263, + -0.043906353414058685, + 0.017764180898666382, + 0.03214876726269722, + -0.006673993077129126, + -0.0201213788241148, + -0.033313166350126266, + -0.003079621819779277, + 0.0007499367347918451, + 0.008101091720163822, + 0.008221791125833988, + 0.0028133720625191927, + -0.0142070846632123, + 0.005257544573396444, + -0.014597584493458271, + -0.05466994270682335, + 0.012723186984658241, + 0.04342355579137802, + -0.03325636312365532, + -0.0015761983813717961, + 0.01115408819168806, + -0.0019773480016738176, + -0.01305688638240099, + -0.009790889918804169, + -0.049444347620010376, + -0.02147037722170353, + -0.012069987133145332, + -0.0056338440626859665, + -0.01911317929625511, + -0.035471562296152115, + -0.036011163145303726, + -0.006120193749666214, + 0.003429296426475048, + -0.011793087236583233, + 0.05850393697619438, + -0.019936779513955116, + -0.0010445864172652364, + 0.00941458996385336, + -0.01831798069179058, + -0.021882176399230957, + 0.0382547602057457, + -0.005143944639712572, + -0.011324487626552582, + 0.0006163680809549987, + -0.01942558027803898, + 0.022052576765418053, + 0.010010989382863045, + 0.0008235991117544472, + 0.014022485353052616, + -0.01871558092534542, + -0.008179191499948502, + 0.011388388462364674, + -0.0017678980948403478, + -0.004323895554989576, + -0.010444088838994503, + -0.026837971061468124, + -0.012822586111724377, + 0.005282394587993622, + 0.02611377276480198, + 0.01547798328101635, + 0.004103795625269413, + -0.0033547463826835155, + 0.019837379455566406, + -0.003667146200314164, + 0.03799916058778763, + 0.025176573544740677, + 0.007575692143291235, + -0.04237275570631027, + 0.009485590271651745, + 0.04197515547275543, + 0.02296137623488903, + -0.008704590611159801, + 0.018161781132221222, + -0.02456597425043583, + 0.014334884472191334, + -0.007639592047780752, + -0.021342577412724495, + 0.05395994335412979, + 0.009840589947998524, + -0.002264897571876645, + 0.004281295463442802, + -0.020689377561211586, + -0.019879978150129318, + -0.04095275700092316, + -0.02176857739686966, + -0.029223568737506866, + 0.014235485345125198, + -0.021725976839661598, + 0.027334971353411674, + 0.004533345345407724, + 0.004842194728553295, + 0.02540377341210842, + 0.01280128676444292, + -0.02017817832529545, + -0.031012767925858498, + -0.0027476970572024584, + 0.011807287111878395, + 0.04109475761651993, + -0.0036121211014688015, + 0.002090947702527046, + 0.015605784021317959, + -0.0016542982775717974, + -0.01992257870733738, + -0.00170044822152704, + -0.000909686554223299, + -0.019595978781580925, + -0.00841349083930254, + 0.05634554103016853, + -0.02236497588455677, + 0.016003383323550224, + 0.01485318411141634, + -0.05330674350261688, + 0.012020287103950977, + 0.03220556676387787, + 0.061627935618162155, + -0.010167188942432404, + 0.009251290000975132, + -0.012929086573421955, + 0.0036635962314903736, + 0.04424715414643288, + 0.01728138141334057, + 0.012268787249922752, + 0.0014475110219791532, + -0.02795977145433426, + -0.011459387838840485, + -0.022691575810313225, + -0.026482971385121346, + 0.003858845913782716, + 0.001938297995366156, + 0.002105147810652852, + 0.0017519231187179685, + 0.0006221368676051497, + -0.0012930860975757241, + 0.034619562327861786, + 0.007873891852796078, + 0.008356691338121891, + 0.006734342779964209, + -0.01113278791308403, + -0.04072555527091026, + -0.030728768557310104, + -0.0012895361287519336, + -0.01752278208732605, + 0.026042772457003593, + 0.004593695048242807, + 0.06032153591513634, + -0.016017582267522812, + 0.006247993558645248, + -0.012027387507259846, + 0.0033671713899821043, + 0.0037736459635198116, + 0.013631985522806644, + 0.009087990038096905, + 0.01976637914776802, + -0.013411886058747768, + 0.008896290324628353, + 0.012914886698126793, + -0.028896968811750412, + 0.0008928240858949721, + -0.05415874347090721, + -0.013667485676705837, + 0.02780357003211975, + -0.0049699945375323296, + 0.0011448737932369113, + -0.020135579630732536, + 0.027917170897126198, + -0.03246116638183594, + 0.014654384925961494, + -0.019340379163622856, + 0.00444459542632103, + 0.019042180851101875, + -0.017849382013082504, + 0.0033831463661044836, + -0.010387289337813854, + -0.03464796394109726, + -0.01831798069179058, + -0.02686637081205845, + 0.026028573513031006, + 0.03439236432313919, + 0.012453386560082436, + -0.025886572897434235, + 0.00030774029437452555, + 0.02047637850046158, + 0.002980221761390567, + 0.03470476344227791, + -0.0010641113622114062, + -0.004110895562916994, + -0.01290068682283163, + -0.02605697326362133, + -0.061968736350536346, + 0.010841688141226768, + -0.032432764768600464, + -0.001838898053392768, + -0.031211568042635918, + 0.06372953206300735, + -0.0010658863466233015, + 0.007831291295588017, + 0.02137097716331482, + 0.003894345834851265, + 0.007032542489469051, + 0.0021299978252500296, + 0.010358888655900955, + 0.004781845025718212, + 0.00849159061908722, + 0.0064148432575166225, + 0.00823599100112915, + -0.017139382660388947, + 2.290856900799554e-5, + -0.01672758162021637, + 0.028144370764493942, + -0.031069567427039146, + 0.012339786626398563, + 0.011459387838840485, + -0.01706838235259056, + -0.007589892018586397, + 0.0003660933580249548, + -0.010564789175987244, + 0.016287382692098618, + 0.004856395069509745, + -0.011125688441097736, + -0.020135579630732536, + 0.016202183440327644, + 0.03419356420636177, + -0.0037310461048036814, + -0.021342577412724495, + 0.01897118054330349, + -0.0011395488400012255, + -0.01332668587565422, + 0.007071592379361391, + -0.025687772780656815, + -0.0005804243846796453, + -0.04251475632190704, + -0.011920887045562267, + 0.02945076860487461, + -0.027519570663571358, + 0.009556589648127556, + -0.011949287727475166, + -0.006858592852950096, + 0.012943286448717117, + 0.030671967193484306, + -0.032120365649461746, + 0.006755643058568239, + 0.005459894426167011, + 0.010096189565956593, + -0.024892574176192284, + 0.019184179604053497, + -0.0024849972687661648, + -0.004135745577514172, + 0.035017162561416626, + -0.03413676470518112, + 0.030189167708158493, + -0.021882176399230957, + -0.03158076852560043, + -0.00034723401768133044, + 0.03657916188240051, + -0.00014610453217756003, + -0.0012771111214533448, + -0.0074478923343122005, + -0.039419159293174744, + -0.006766292732208967, + -0.03689156100153923, + 0.012865186668932438, + -0.003392021404579282, + 0.015208183787763119, + 0.01325568649917841, + 0.023728175088763237, + 0.01752278208732605, + -0.018204381689429283, + -0.022450176998972893, + 0.010941088199615479, + -0.0035979212261736393, + 0.011260587722063065, + -0.025900771841406822, + 0.0034044464118778706, + -0.0033636214211583138, + -0.0380275584757328, + 0.014235485345125198, + -0.02849937044084072, + -0.007959092035889626, + 0.006599443033337593, + -0.039617959409952164, + -0.038623958826065063, + -0.00029842156800441444, + 0.014114785008132458, + -0.005679993890225887, + 0.020348578691482544, + 0.037033561617136, + -0.018161781132221222, + -0.002122897654771805, + 0.0309559665620327, + 0.009329389780759811, + 0.01801978051662445, + 0.0010783113539218903, + 0.0011306738015264273, + -0.028726570308208466, + 0.029166769236326218, + 0.026994172483682632, + -0.013369285501539707, + -0.022932976484298706, + 0.02091657742857933, + -0.02540377341210842, + -0.0062657431699335575, + -0.02570197358727455, + -0.020135579630732536, + 1.8845488739316352e-5, + -0.0055237943306565285, + 0.025872372090816498, + -0.005726144183427095, + 0.026639172807335854, + 0.010422788560390472, + 0.04169115424156189, + 0.01113278791308403, + 0.003218071535229683, + -0.021498776972293854, + 0.014924184419214725, + -0.05458474159240723, + 0.052341144531965256, + -0.04018595814704895, + 0.01225458737462759, + -0.005080044735223055, + -0.02127157710492611, + -0.011714987456798553, + -0.021527176722884178, + 0.009251290000975132, + 0.004980644676834345, + 0.020490579307079315, + 0.032716765999794006, + -0.02085977792739868, + 0.02421097457408905, + 0.017196182161569595, + 0.02381337434053421, + 0.02056157775223255, + -0.010117488913238049, + 0.014924184419214725, + -0.018289580941200256, + -0.010145889595150948, + -0.006318993400782347, + 0.019411379471421242, + -0.012552786618471146, + -0.01677018217742443, + -0.04649075120687485, + 0.01577618345618248, + 0.02645457163453102, + 0.012488886713981628, + -0.06747832894325256, + 0.008285691030323505, + 0.035414762794971466, + 0.007476292084902525, + -0.003936945926398039, + -0.0283005703240633, + -0.028385769575834274, + 0.0037807461339980364, + 0.01887178048491478, + -0.015946583822369576, + 0.018545180559158325, + 0.00634029321372509, + -0.02095917798578739, + 0.006436143070459366, + 0.03308596462011337, + -0.0010960613144561648, + 0.00521494448184967, + -0.019354579970240593, + -0.0011626237537711859, + 0.02601437270641327, + -0.016699181869626045, + -0.013035586103796959, + 0.032716765999794006, + 0.011793087236583233, + -0.0037523461505770683, + -0.009052490815520287, + -0.01062868908047676, + -0.030132368206977844, + 0.021541377529501915, + -0.01348288543522358, + -0.016088582575321198, + 0.002342997584491968, + -0.004586595110595226, + 0.009322290308773518, + 0.018161781132221222, + -0.01223328709602356, + 0.00394404586404562, + 0.038907960057258606, + -0.0226631760597229, + -0.013184686191380024, + 0.002222297713160515, + 0.029564369469881058, + -0.019553380087018013, + 0.020391179248690605, + -0.0004246683092787862, + 0.011438087560236454, + -0.020192379131913185, + -0.002855971921235323, + 0.030643567442893982, + -0.015534783713519573, + -0.04010075703263283, + -0.017565380781888962, + -0.009805089794099331, + -0.011835687793791294, + 0.0007419492467306554, + 0.021001778542995453, + -0.018445780500769615, + -0.005122644826769829, + 0.010848788544535637, + -0.0042386953718960285, + 0.013674585148692131, + -0.0001850435510277748, + -0.003505621338263154, + 0.026383571326732635, + 0.003965345676988363, + 0.014093484729528427, + -0.015492184087634087, + 0.011998987756669521, + 0.004987744614481926, + 0.02770416997373104, + -0.02686637081205845, + 0.06333193182945251, + 0.007412392180413008, + -0.05626033991575241, + -0.05890153720974922, + 0.019184179604053497, + 0.006137943360954523, + -0.013347986154258251, + -0.028967969119548798, + -0.002502747345715761, + 0.029819969087839127, + 0.006123743485659361, + -0.015137184411287308, + 0.004597245249897242, + -0.007170992437750101, + -0.01322728581726551, + -0.01593238301575184, + -0.001819373108446598, + 0.04319635406136513, + -0.020092979073524475, + -0.001567323342896998, + -0.024636974558234215, + 0.036522362381219864, + 0.021143777295947075, + 0.012737386859953403, + -0.016003383323550224, + -0.002074972726404667, + 0.0023926973808556795, + -0.011793087236583233, + 0.010323389433324337, + 0.035812363028526306, + -0.020689377561211586, + 0.03115476667881012, + 0.0283005703240633, + -0.024920973926782608, + -0.010373089462518692, + -0.009173190221190453, + -0.006187643390148878, + 0.0009039178257808089, + 0.018147580325603485, + 0.0036635962314903736, + 0.004501395393162966, + 0.0011794862803071737, + -0.02125737816095352, + -0.007068042643368244, + -0.020391179248690605, + -0.021285777911543846, + 0.03453436493873596, + 0.04078235849738121, + -0.0054243942722678185, + 0.032035164535045624, + -0.012382387183606625, + 0.01926937885582447, + 0.021853776648640633, + 0.02291877567768097, + -0.01861618086695671, + 0.026085373014211655, + 0.005158144515007734, + -0.04052675887942314, + 0.023642975836992264, + -0.03459116443991661, + -0.04277035593986511, + 0.017409181222319603, + -0.0283005703240633, + 0.016358382999897003, + 0.007561492267996073, + 0.025843972340226173, + 0.02715037204325199, + -0.004579495172947645, + -0.025332773104310036, + 0.015222383663058281, + 0.020135579630732536, + -0.013766885735094547, + -0.010344688780605793, + 0.007284592371433973, + -0.00291987182572484, + 0.014824784360826015, + -0.01133158802986145, + -0.005385344382375479, + -0.006734342779964209, + -0.00826439168304205, + -0.038510359823703766, + 0.023231174796819687, + 0.012446287088096142, + -0.00853419117629528, + -0.013142086565494537, + 0.017011582851409912, + 0.006851492915302515, + 0.010919788852334023, + 0.021640777587890625, + -0.0318363681435585, + -0.0002591497323010117, + -0.019610179588198662, + 0.0036422961857169867, + -0.0017678980948403478, + 0.007412392180413008, + -0.01642938330769539, + -0.012524386867880821, + 0.009222890250384808, + -0.03538636118173599, + 0.01921257935464382, + 0.022379176691174507, + 0.03478996455669403, + 0.014519484713673592, + 0.0006496493006125093, + -0.01787778176367283, + -0.009400390088558197, + -0.0053214444778859615, + 0.020533178001642227, + 0.010664189234375954, + 0.004831545054912567, + -0.0024814472999423742, + -0.00878979079425335, + 0.032319165766239166, + 0.027093570679426193, + 0.02984836883842945, + -0.02206677757203579, + -0.01607438363134861, + -0.03743116185069084, + 0.009144790470600128, + 0.0021583978086709976, + -0.009208690375089645, + -0.011494887992739677, + -0.0019063480431213975, + -0.001331248553469777, + -0.015690984204411507, + -0.00011221316526643932, + -0.008732990361750126, + 0.012836786918342113, + 0.011565887369215488, + 0.02212357707321644, + -0.01966697908937931, + -0.016784382984042168, + 0.01125348825007677, + -0.05248314514756203, + 0.02950756810605526, + 0.0021015978418290615, + 0.013866285793483257, + 0.00951399002224207, + 0.007252642419189215, + -0.0015060858568176627, + 0.03166596591472626, + -0.01080618891865015, + -0.04393475502729416, + -0.0018424480222165585, + -0.007110642734915018, + -0.03214876726269722, + 0.02500617317855358, + -0.002208097605034709, + -0.0013871610863134265, + -0.024239374324679375, + 0.02561677247285843, + 0.008207591250538826, + 0.006553293205797672, + -0.02875497005879879, + -0.018147580325603485, + -0.03115476667881012, + -0.016997382044792175, + -0.029535969719290733, + 0.014455584809184074, + -0.008093991316854954, + 0.016258982941508293, + 0.016599781811237335, + 0.004870594944804907, + -0.061968736350536346, + 0.01996517926454544, + -0.01225458737462759, + -0.0021495227701961994, + 0.003915645647794008, + -0.014143184758722782, + 0.010294988751411438, + 0.030331168323755264, + -0.016812782734632492, + -0.02859877049922943, + 0.003171921707689762, + -0.041265156120061874, + -0.01203448697924614, + -0.0015699858777225018, + -0.0008528865873813629, + -0.012069987133145332, + -0.008945990353822708, + -0.01352548599243164, + -0.015108783729374409, + 0.018062381073832512, + -0.020604178309440613, + -0.04961474612355232, + 0.018445780500769615, + 0.008228891529142857, + -0.011359987780451775, + 0.0546131432056427, + 0.014838984236121178, + 0.007880991324782372, + -0.01023108884692192, + -0.032233964651823044, + 0.022833576425909996, + 0.023529374971985817, + 0.013390585780143738, + -0.0012611361453309655, + -0.016400983557105064, + -0.007121292408555746, + 0.010387289337813854, + 0.0013942610239610076, + 0.016088582575321198, + 0.0016800357261672616, + -0.013184686191380024, + -0.016883783042430878, + 0.010110389441251755, + 0.012659287080168724, + 0.011040488258004189, + 0.005016144830733538, + 0.012396587058901787, + 0.030927566811442375, + 0.001185698783956468, + -0.021825376898050308, + 0.03149556741118431, + -0.024296173825860023, + 0.019709579646587372, + 0.005143944639712572, + -0.03723236173391342, + -0.03229076415300369, + -0.023997975513339043, + 0.0014865609118714929, + 0.018090780824422836, + -0.024324573576450348, + 0.03396636247634888, + -0.02476477436721325, + -0.0319499671459198, + 0.02910996973514557, + 0.003218071535229683, + -0.014114785008132458, + 0.02996196784079075, + 0.03743116185069084, + -0.0025542222429066896, + -0.012169387191534042, + 0.00565514387562871, + 0.03126836568117142, + -0.011800187639892101, + 0.014824784360826015, + 0.001083636307157576, + 0.0030228218529373407, + 0.0024920974392443895, + 0.004543995019048452, + -0.016755983233451843, + 0.005349844228476286, + -0.05001234635710716, + 0.016557183116674423, + -0.03780036047101021, + 0.02032017894089222, + 0.005758094135671854, + 0.0013276985846459866, + -0.004231595434248447, + -0.016599781811237335, + 0.022080976516008377, + -0.011033388786017895, + -0.0006727242725901306, + -0.016017582267522812, + -0.040015559643507004, + -0.0043380954302847385, + 0.02061837911605835, + -0.01787778176367283, + 0.03774356096982956, + 0.007540191989392042, + 0.009549490176141262, + 0.002820472000166774, + -0.002307497663423419, + 0.013631985522806644, + -0.02595757320523262, + -0.01591818407177925, + 0.022975575178861618, + -0.007476292084902525, + 0.015463783405721188, + -0.03657916188240051, + -0.0014031360624358058, + -0.04313955456018448, + 0.010167188942432404, + -0.024083174765110016, + -0.007419492118060589, + -0.017693180590867996, + 0.008406391367316246, + -0.00742659205570817, + -0.02405477501451969, + 0.006581692956387997, + -0.03765835985541344, + 0.03655076026916504, + 0.0005085369921289384, + 0.0012566986260935664, + -0.014065084978938103, + -0.008818190544843674, + 0.017338180914521217, + 0.030075568705797195, + -0.0020731978584080935, + -0.008640690706670284, + -0.0026642722077667713, + -0.04109475761651993, + 0.024551773443818092, + 0.009478489868342876, + -0.028030769899487495, + -0.03899315744638443, + 0.00029842156800441444, + 0.021427776664495468, + -0.011487787589430809, + -0.0380275584757328, + 0.0057438937947154045, + -0.0036156713031232357, + -0.007582792080938816, + 0.008370891213417053, + 0.004536895081400871, + 0.005065844859927893, + 0.022052576765418053, + 0.00676274299621582, + -0.03399476408958435, + 0.005278844386339188, + -0.002705097198486328, + -0.026000171899795532, + 0.011750487610697746, + -0.019056379795074463, + 0.015122984535992146, + -0.052994344383478165, + -0.02056157775223255, + -0.009734089486300945, + 0.027718370780348778, + -0.004760545212775469, + -0.0028453220147639513, + -0.014065084978938103, + -0.0005182994646020234, + -0.0044481451623141766, + -0.0030831717886030674, + 0.019709579646587372, + 0.01113278791308403, + 0.02685217186808586, + 0.023273775354027748, + -0.009187390096485615, + 0.028385769575834274, + -0.023699775338172913, + -0.005846844054758549, + -0.003603246295824647, + -0.0011617363197728992, + 0.0006421055877581239, + -0.01105468813329935, + 0.01352548599243164, + 0.0010081989457830787, + 0.024225175380706787, + 0.042912356555461884, + -0.034420762211084366, + 0.014121885411441326, + -0.02147037722170353, + -0.0004859057371504605, + 0.021981576457619667, + 0.009144790470600128, + -0.00040336832171306014, + 0.00816499162465334, + 0.001795410644263029, + -0.013333786278963089, + 0.023131774738430977, + -0.0036334211472421885, + 0.01817598007619381, + -0.001083636307157576, + 0.00338137149810791, + 0.012162286788225174, + 0.003770095994696021, + -0.011686587706208229, + -0.010444088838994503, + -0.02252117544412613, + -0.0015344858402386308, + -0.016713382676243782, + -0.024750573560595512, + 0.009989689104259014, + 0.009258390404284, + -0.008704590611159801, + 0.020589977502822876, + -0.028726570308208466, + 0.008527090772986412, + -0.006010143551975489, + 0.004355845507234335, + 0.019155779853463173, + -0.00581489410251379, + -0.03214876726269722, + 0.05821993947029114, + 0.015989182516932487, + -0.01986577920615673, + 0.010855888947844505, + -0.016940582543611526, + -0.004117995500564575, + 0.013191785663366318, + 0.02996196784079075, + 0.004476545378565788, + 0.005871693603694439, + -0.008860791102051735, + 0.01837478019297123, + 0.01762218214571476, + 0.012474686838686466, + -0.003496746299788356, + -0.0005449244054034352, + 0.00273882201872766, + 0.017210381105542183, + -0.02246437594294548, + -0.016102783381938934, + 0.003809145884588361, + -0.01573358289897442, + 0.03004716895520687, + -0.025148173794150352, + -0.003990195691585541, + -0.026781171560287476, + 0.006013693753629923, + 0.0017297356389462948, + -0.04896154999732971, + -0.005246894434094429, + 0.02621317282319069, + -0.008377991616725922, + 0.010678389109671116, + 0.010167188942432404, + -0.02875497005879879, + 0.024281974881887436, + 0.005999493878334761, + -0.014370384626090527, + -0.0027636720333248377, + -0.0027867471799254417, + -0.02047637850046158, + 0.005065844859927893, + 0.0030228218529373407, + -0.0014270985266193748, + -0.0035020713694393635, + 0.01811918057501316, + 0.016145382076501846, + 0.007895192131400108, + 0.008342491462826729, + -0.014370384626090527, + -0.00960628967732191, + -0.008874990977346897, + -0.006812443025410175, + -0.010827488265931606, + -0.013965684920549393, + 0.0034062215127050877, + -0.01088428869843483, + -0.027533771470189095, + -0.047995951026678085, + -0.014107685536146164, + 0.009670189581811428, + 0.02047637850046158, + -0.0010605613933876157, + -0.026823772117495537, + -0.015009384602308273, + 0.019979378208518028, + 0.005648043937981129, + -0.02425357513129711, + 0.012772887013852596, + -0.015179784037172794, + -0.019439779222011566, + 0.006436143070459366, + -0.014625984244048595, + 0.009705689735710621, + -0.0029642467852681875, + 0.019851578399538994, + 0.014881584793329239, + -0.026340972632169724, + -0.003189671551808715, + -0.013994085602462292, + -0.026170572265982628, + 0.00233412254601717, + 0.013844985514879227, + 0.01891437917947769, + 0.008157891221344471, + -0.014462685212492943, + -0.003628096077591181, + -0.009038290940225124, + 0.02431037463247776, + -0.03558516129851341, + -0.0007095555192790926, + -0.00011104832083219662, + 0.01450528483837843, + -0.020845577120780945, + -0.0128793865442276, + -0.028783369809389114, + -0.014341984875500202, + -0.01837478019297123, + -0.0010357113787904382, + -0.01153038814663887, + -0.005704843904823065, + 0.006531992927193642, + 0.01223328709602356, + -0.02316017635166645, + 0.02550317347049713, + 0.0165287833660841, + -0.02730657160282135, + 0.00915899034589529, + -0.006897642742842436, + -0.014924184419214725, + -0.014420084655284882, + -0.01495258416980505, + -0.024097373709082603, + -0.01412898488342762, + -0.013908885419368744, + -0.004994844552129507, + -0.019808979704976082, + -0.01867298036813736, + 0.019240979105234146, + -0.009790889918804169, + -0.021030178293585777, + 0.000473924505058676, + -0.014980983920395374, + -0.007873891852796078, + -0.0031967717222869396, + -0.02615637332201004, + -0.030927566811442375, + 0.01388048566877842, + -0.024523373693227768, + -0.007639592047780752, + 0.013738485984504223, + 0.008903390727937222, + 0.0026110222097486258, + 0.016741782426834106, + 0.0023642973974347115, + -0.02401217445731163, + 0.016940582543611526, + -0.021555576473474503, + -0.009698589332401752, + 0.0008724115905351937, + -0.012204887345433235, + -0.008093991316854954, + 0.015406983904540539, + 0.0013516610488295555, + -0.0016631731996312737, + 0.012588286772370338, + -0.02425357513129711, + 0.014682784676551819, + 0.028016570955514908, + -0.03180796653032303, + 0.02076037786900997, + -0.008243091404438019, + -0.00621604360640049, + 0.005456344224512577, + 0.0008653115946799517, + -0.02406897395849228, + -0.003986645955592394, + -0.0032074216287583113, + 0.006471643224358559, + 0.016798581928014755, + -0.013163385912775993, + -0.015307583846151829, + -0.0006145930965431035, + -0.016500381752848625, + -0.005598343908786774, + 0.005697743967175484, + -0.006397093180567026, + -0.038709159940481186, + -0.00028355594258755445, + 0.011040488258004189, + -0.008037191815674305, + -0.005257544573396444, + -0.016486182808876038, + 0.019780579954385757, + 0.0025400223676115274, + -0.025531573221087456, + 0.019042180851101875, + -0.0014901108806952834, + 0.04299755394458771, + -0.006322543136775494, + -0.024139974266290665, + -0.016897981986403465, + 0.006759192794561386, + 0.022095177322626114, + 0.03024596907198429, + 0.011083087883889675, + -0.010500889271497726, + -0.014938384294509888, + -0.015165584161877632, + -0.0002651403483469039, + 0.012708986178040504, + -0.032830365002155304, + 0.006148593500256538, + 0.023188576102256775, + 0.009939989075064659, + 0.0024299724027514458, + -0.015435383655130863, + -0.017792580649256706, + -0.0031878966838121414, + -0.013411886058747768, + 0.007107092533260584, + -0.004725045058876276, + 0.011949287727475166, + -0.009322290308773518, + 0.006375793367624283, + -0.005662243813276291, + 0.002891471842303872, + -0.00808689184486866, + 0.015449583530426025, + -0.013497086241841316, + 0.001853098045103252, + 0.004998394753783941, + -0.03229076415300369, + 0.008030091412365437, + 0.027917170897126198, + 0.0035837211180478334, + -0.003812696086242795, + -0.0009274365147575736, + -0.019908379763364792, + -0.014540784992277622, + -0.012531486339867115, + -0.018601980060338974, + -0.015066184103488922, + 0.006024343427270651, + 0.0012966361828148365, + -0.00931518990546465, + 0.0026447472628206015, + 0.0028630720917135477, + 0.028115971013903618, + 0.0010605613933876157, + -0.017636381089687347, + 0.013291185721755028, + -0.005243344698101282, + -0.02695157192647457, + 0.006322543136775494, + -0.00489189475774765, + -0.003051221836358309, + -0.0035837211180478334, + 0.0005582369049079716, + -0.025190774351358414, + -0.006989942863583565, + -0.015193983912467957, + 0.001800735597498715, + 0.0190705806016922, + -0.0017403856618329883, + -0.0003314809000585228, + 0.00032859653583727777, + 0.00010028739779954776, + 0.002174372784793377, + 0.003940495662391186, + -0.01040858868509531, + 0.014569184742867947, + 0.012240387499332428, + 0.008150791749358177, + -0.015534783713519573, + 0.007724791765213013, + 0.003961795940995216, + -0.00026181223802268505, + -0.0105860885232687, + -0.00426709558814764, + -0.007096442393958569, + -0.011970587074756622, + 0.010273689404129982, + -0.005200744606554508, + 0.0014883358962833881, + 0.030842367559671402, + 0.026468772441148758, + 0.008669090457260609, + 0.005229144357144833, + -0.028967969119548798, + -0.0014013610780239105, + 0.013028486631810665, + -0.02421097457408905, + -0.009286790154874325, + 0.04132195562124252, + -0.0051616947166621685, + 0.005559294018894434, + -0.0019826728384941816, + 0.024452373385429382, + 0.0035180463455617428, + 0.021740177646279335, + 0.0142070846632123, + 0.0038304459303617477, + 0.00752599211409688, + -0.003894345834851265, + 0.023089176043868065, + -0.025204973295331, + -0.006627843249589205, + 0.01042988896369934, + 0.0023571974597871304, + -0.009968389756977558, + 0.004696644842624664, + 0.0001380061003146693, + -0.012815486639738083, + -0.009776690043509007, + 0.007930691353976727, + -0.014370384626090527, + 0.05597634240984917, + -0.00019724667072296143, + -0.016003383323550224, + 0.0037097460590302944, + -0.020902378484606743, + -0.010571888647973537, + 0.019652780145406723, + 0.03893635794520378, + 0.009939989075064659, + 0.01217648759484291, + -0.012084187008440495, + 0.003365396521985531, + -0.029763169586658478, + -0.0059533435851335526, + 0.007753191981464624, + 0.0020110728219151497, + -0.011445187963545322, + 0.012751586735248566, + 0.0038623958826065063, + 0.028882769867777824, + 0.0010783113539218903, + -0.009265489876270294, + 0.03385276347398758, + -0.019397178664803505, + 0.021385177969932556, + -0.06140073388814926, + -0.021200576797127724, + 0.006081143394112587, + 0.009166090749204159, + -0.016088582575321198, + 0.03035956807434559, + -0.018687181174755096, + 0.0131562864407897, + 0.019681179895997047, + 0.010316289030015469, + 0.02250697650015354, + 0.007483392022550106, + 0.0034878712613135576, + 0.0064396932721138, + -0.009286790154874325, + 0.01682698167860508, + -0.0044374954886734486, + 0.014192884787917137, + -0.02006457932293415, + 0.009691489860415459, + 0.01322728581726551, + 0.018133381381630898, + 0.0009505114867351949, + -0.007241992279887199, + 0.002591497264802456, + 0.0019169979495927691, + 0.0008204928599298, + -0.010387289337813854, + -0.01424968522042036, + -0.02071777731180191, + 0.006780493073165417, + -0.013170486316084862, + 0.02107277698814869, + -0.017437580972909927, + 0.004487195052206516, + 0.004146395716816187, + 0.007376892026513815, + -0.018843380734324455, + -0.0170257817953825, + 0.005907193757593632, + 0.01412898488342762, + -0.018459981307387352, + -0.009968389756977558, + 0.003265996463596821, + -0.013347986154258251, + -0.014015384949743748, + -0.007341392338275909, + 0.032120365649461746, + -0.0072490922175347805, + -0.008825290948152542, + -0.01150908786803484, + 0.003894345834851265, + 0.01583298295736313, + -0.016315782442688942, + 0.03518756479024887, + -0.0022205226123332977, + -0.002903896849602461, + -0.030387967824935913, + -0.02212357707321644, + -0.006109543610364199, + 0.0023447724524885416, + -0.02490677312016487, + 0.011345787905156612, + -0.03663596138358116, + 0.006034993566572666, + -0.021030178293585777, + 0.019581779837608337, + 0.00030064029851928353, + 0.020391179248690605, + -0.0015406983438879251, + 0.03544316440820694, + -0.003386696334928274, + -0.0037523461505770683, + 0.030615167692303658, + 0.009918689727783203, + 0.024551773443818092, + -0.025020373985171318, + 0.018701380118727684, + 0.025645172223448753, + -0.022237176075577736, + -0.0095068896189332, + 0.004075395874679089, + -0.0038055959157645702, + -0.010799088515341282, + 0.013319586403667927, + -0.015378584153950214, + -0.009364889934659004, + 0.0013152735773473978, + -0.01696898229420185, + -0.019837379455566406, + -0.013717185705900192, + -0.01195638719946146, + -0.004348745569586754, + -0.02530437335371971, + 0.004334545228630304, + -0.0036422961857169867, + 0.004011495970189571, + 0.01752278208732605, + 0.0010445864172652364, + -0.00249564740806818, + 0.007774491794407368, + -0.006244443356990814, + 0.021654976531863213, + -0.0033139216247946024, + 0.01352548599243164, + -0.012787086889147758, + -0.009989689104259014, + -0.007142592687159777, + -0.015264984220266342, + 0.012595387175679207, + 0.01197768747806549, + 0.004196095746010542, + 0.018033981323242188, + -0.017536981031298637, + 0.0011022738181054592, + -0.002028822898864746, + 0.018062381073832512, + 0.0029429469723254442, + 0.011757588014006615, + 0.006411293055862188, + -0.02281937561929226, + 0.005264644511044025, + -0.0034186462871730328, + 0.0009469615179114044, + 0.011466488242149353, + 0.01797718182206154, + 0.007174542639404535, + -0.01515138428658247, + -0.012006087228655815, + 0.027689971029758453, + 0.006659793201833963, + 0.005197194404900074, + 0.007831291295588017, + 0.015989182516932487, + 0.014838984236121178, + -0.0007361804600805044, + -0.013000085949897766, + -0.010117488913238049, + 0.0095068896189332, + -0.007185192313045263, + -6.362258864101022e-5, + -0.01767898164689541, + 0.0077105918899178505, + 0.010032289661467075, + 0.016557183116674423, + -0.019297780469059944, + 0.0007623616838827729, + -0.018701380118727684, + -0.006308343261480331, + 0.013830785639584064, + -0.018190180882811546, + -0.005076494533568621, + 0.005612544249743223, + -0.0015043108724057674, + -0.021555576473474503, + -0.011821487918496132, + 0.007944891229271889, + -0.01867298036813736, + -0.00986188929527998, + -0.01116118859499693, + -0.008676190860569477, + -0.016542982310056686, + -0.007682192139327526, + 0.0781567171216011, + 0.0040292455814778805, + 0.021924776956439018, + 0.01495258416980505, + -0.006294143386185169, + -0.020788777619600296, + 0.0025755222886800766, + 0.009805089794099331, + 0.017238782718777657, + -0.003386696334928274, + -0.02595757320523262, + -0.0023944724816828966, + 0.004817344713956118, + 0.0037203961983323097, + -0.023174375295639038, + -0.0025275973603129387, + 0.012545687146484852, + 0.0031861215829849243, + 0.011090188287198544, + 0.010479588992893696, + 0.0054740943014621735, + -0.007724791765213013, + 0.003940495662391186, + -0.003933395724743605, + -0.011090188287198544, + 0.009790889918804169, + -0.007305892184376717, + 0.005200744606554508, + 0.026894772425293922, + 0.00943589024245739, + 0.002898572012782097, + -0.013035586103796959, + -0.00905959028750658, + -0.021938977763056755, + 0.00620184326544404, + 0.012964586727321148, + 0.0014821233926340938, + -0.004462345503270626, + -0.005619644187390804, + -0.008945990353822708, + -0.01607438363134861, + 0.0008085116278380156, + 0.009428789839148521, + 0.014625984244048595, + -0.024835774675011635, + 0.00849159061908722, + -0.0063651432283222675, + 0.0031754716765135527, + -0.010365989059209824, + 0.002850647084414959, + 0.005019694566726685, + -0.016017582267522812, + 0.01706838235259056, + 0.023827575147151947, + 0.011225088499486446, + -0.00013467798999045044, + 0.010117488913238049, + 0.017295582219958305, + 0.017011582851409912, + 0.010756488889455795, + -0.025645172223448753, + -0.017636381089687347, + 0.0046007949858903885, + -0.009549490176141262, + -0.01285808626562357, + 0.003037021728232503, + -0.01583298295736313, + 0.002076747827231884, + -0.00021166852093301713, + -0.027420170605182648, + -0.01613118313252926, + -0.02510557323694229, + -0.0003485652559902519, + -0.02246437594294548, + -0.008441891521215439, + 0.026923172175884247, + 0.0033192464616149664, + 0.04419035464525223, + 0.03141036629676819, + 0.003573071211576462, + -0.003017496783286333, + 0.006109543610364199, + -0.011281888000667095, + -0.006212493404746056, + 0.011118588037788868, + -0.009421690367162228, + 0.02016397938132286, + -0.04203195497393608, + 0.012829686515033245, + -0.030416367575526237, + -0.01672758162021637, + -0.0014643734320998192, + 0.013454485684633255, + 0.0030157219152897596, + -0.0005963993608020246, + 0.0029003468807786703, + 0.01023818925023079, + 0.013752685859799385, + 0.002250697696581483, + -0.017054181545972824, + 0.02022077888250351, + -9.451864752918482e-5, + -0.01583298295736313, + -0.008874990977346897, + -0.006780493073165417, + -0.003065421711653471, + 0.018800780177116394, + 0.0019027979578822851, + 0.007802892010658979, + -0.0016365483170375228, + -0.004579495172947645, + -0.017011582851409912, + 0.009194490499794483, + 0.01728138141334057, + 0.0017119856784120202, + 0.00021699351782444865, + 0.010564789175987244, + -0.0009922239696606994, + -0.01843157969415188, + -0.017096782103180885, + 0.014483984559774399, + 0.002390922512859106, + 0.002745922189205885, + -0.02071777731180191, + -0.001657848246395588, + 0.007618291769176722, + -0.010152989067137241, + -0.011019187979400158, + -0.010891388170421124, + -0.010074889287352562, + 0.020234977826476097, + 0.010678389109671116, + 0.025176573544740677, + -0.0016187982400879264, + 0.011693688109517097, + 0.00032615591771900654, + -0.009556589648127556, + 0.0131278857588768, + 0.0044481451623141766, + -0.017934581264853477, + 0.017139382660388947, + -0.004235145635902882, + 0.018289580941200256, + 0.02925196848809719, + 0.006606542970985174, + -0.004657594952732325, + -0.015364384278655052, + -0.020291779190301895, + 0.011480688117444515, + -0.00896019022911787, + 0.01515138428658247, + -0.02032017894089222, + 0.017536981031298637, + -0.004788944963365793, + 0.0006798242684453726, + 0.0032979464158415794, + -0.02891116961836815, + 0.01936877891421318, + -0.026880571618676186, + 0.014107685536146164, + 0.018786579370498657, + -0.00394404586404562, + -0.01797718182206154, + 0.016145382076501846, + -0.005250444635748863, + 0.0036263212095946074, + 0.023500975221395493, + 0.013440285809338093, + 0.010287889279425144, + 0.00291987182572484, + 0.012687686830759048, + 0.014001185074448586, + 0.02685217186808586, + -0.025048773735761642, + -0.0001102162932511419, + -0.011345787905156612, + 0.00816499162465334, + 0.004977094940841198, + -0.018587781116366386, + 0.012013187631964684, + -0.009819289669394493, + -0.011643988080322742, + 0.01106178853660822, + 0.0046504950150847435, + -0.011104388162493706, + -0.02425357513129711, + 0.0126024866476655, + -0.011651087552309036, + 0.006755643058568239, + -0.007121292408555746, + -0.014519484713673592, + 0.021044377237558365, + 0.00933649018406868, + -0.01290068682283163, + -0.005665794014930725, + 0.009932889603078365, + 0.04802434891462326, + 0.027334971353411674, + 0.030018769204616547, + -0.009897389449179173, + -0.0035783962812274694, + 0.0031186717096716166, + 0.007320092059671879, + -0.00037718709791079164, + -0.0022968475241214037, + -0.002417547395452857, + -0.005910743959248066, + -0.019453980028629303, + -0.001191023737192154, + 0.0033902465365827084, + -0.0211721770465374, + -0.006918942555785179, + 0.0134047856554389, + -0.006961542647331953, + -0.010323389433324337, + -0.0014137859689071774, + 0.00024694661260582507, + 0.009876089170575142, + -0.003447046270594001, + 0.0064077433198690414, + -0.0036050211638212204, + -0.013191785663366318, + 0.007703491952270269, + -0.005857493728399277, + 0.00778869166970253, + 0.009258390404284, + -0.0019968729466199875, + 0.012148086912930012, + 0.004455245099961758, + -0.007575692143291235, + 0.012439186684787273, + -0.00015897327102720737, + -0.007071592379361391, + 0.009173190221190453, + -0.0050019449554383755, + 0.03510236367583275, + 0.01385208498686552, + -0.014938384294509888, + 0.02002197876572609, + -0.010941088199615479, + -0.02805916965007782, + -0.005296594463288784, + -0.008392191492021084, + -0.015023584477603436, + 0.0010161864338442683, + -0.012907786294817924, + -0.002231172751635313, + 0.0031115717720240355, + -0.007923591881990433, + -2.6319894459447823e-5, + -0.014739584177732468, + 0.00016873575805220753, + 0.01857358030974865, + -0.01617378368973732, + 0.012744486331939697, + -0.00557704409584403, + -0.004121545702219009, + 0.012140987440943718, + 0.005438594147562981, + -0.01593238301575184, + 0.01853097975254059, + 0.01563418284058571, + -0.02440977469086647, + 0.0028044970240443945, + 0.00034434962435625494, + 0.008825290948152542, + -0.041861556470394135, + 0.011665287427604198, + -0.006113093346357346, + 0.0014537235256284475, + 0.014299385249614716, + -0.012666386552155018, + 0.007511792238801718, + 0.04708715155720711, + 0.012062887661159039, + 0.007596991956233978, + -0.013248586095869541, + -0.02715037204325199, + 0.013163385912775993, + 0.025744572281837463, + -0.014036685228347778, + -0.0008688615635037422, + 0.01105468813329935, + -0.019950978457927704, + -0.0036884460132569075, + -0.03141036629676819, + 0.019453980028629303, + 0.011920887045562267, + -0.002733497181907296, + 0.025545774027705193, + -0.0056835440918803215, + 0.008626490831375122, + 0.014867383986711502, + -0.003596146125346422, + 0.009371990337967873, + 0.0050019449554383755, + -0.007320092059671879, + -0.006823092699050903, + 0.033568765968084335, + -0.0247079748660326, + -0.00620184326544404, + 0.0034949714317917824, + -0.018388980999588966, + -0.012126787565648556, + -0.0029926467686891556, + 0.009670189581811428, + 0.03720396012067795, + 0.0014182234881445765, + -0.005385344382375479, + 0.021441977471113205, + 0.005009044893085957, + -0.008072691038250923, + -2.7013253202312626e-5, + -0.01932618021965027, + 0.005154594779014587, + 0.004054095596075058, + -0.00015231702127493918, + 0.02720717154443264, + -0.008853690698742867, + 0.02085977792739868, + -0.007703491952270269, + 0.001638323301449418, + 0.021044377237558365, + -0.01613118313252926, + 0.018133381381630898, + -0.021953176707029343, + 0.020447978749871254, + -0.012148086912930012, + 0.019297780469059944, + -0.019851578399538994, + 0.012787086889147758, + 0.012481787241995335, + -0.036408763378858566, + 0.0025826222263276577, + 0.0006101556355133653, + 0.006695292890071869, + -0.02077457867562771, + -0.000926549022551626, + 0.008903390727937222, + 0.002612797310575843, + -0.001219423720613122, + -0.020845577120780945, + 0.005569944158196449, + -0.011814387515187263, + -0.0021299978252500296, + -0.004196095746010542, + 0.013291185721755028, + -0.006670442875474691, + 0.005087144672870636, + 0.018999580293893814, + -0.022137776017189026, + 0.008022991940379143, + 0.009265489876270294, + 0.01140968780964613, + -0.006251543294638395, + 0.0069863926619291306, + 0.005005494691431522, + 0.01547798328101635, + -0.011260587722063065, + 0.003123996779322624, + -0.009663090109825134, + 0.011842787265777588, + -0.007717691827565432, + -0.011920887045562267, + 0.005399544257670641, + -0.017153581604361534, + -0.006066943518817425, + 0.013844985514879227, + -0.029280368238687515, + -0.00142887351103127, + -0.004359395243227482, + -0.01233268715441227, + 0.004398445598781109, + 0.003876595990732312, + -0.006272843573242426, + 0.013766885735094547, + -0.01013878919184208, + -0.0077105918899178505, + -0.02950756810605526, + 0.004384245257824659, + 0.02776097133755684, + 0.005637394264340401, + -0.00022509194968733937, + -0.005623193923383951, + -0.021441977471113205, + 0.02017817832529545, + 0.02017817832529545, + 0.0012078862637281418, + 0.006581692956387997, + -0.006645592860877514, + -0.012936186045408249, + -0.0035375712905079126, + 0.003475446254014969, + 0.007128392346203327, + -0.03385276347398758, + 0.033767566084861755, + -0.014810584485530853, + 0.005140394438058138, + -0.006581692956387997, + 0.006574593018740416, + -0.00356242130510509, + 0.007433691993355751, + 0.02066097781062126, + 0.0006594118312932551, + 0.003990195691585541, + -0.018900180235505104, + 0.000496555701829493, + 0.0050125946290791035, + 0.019993579015135765, + -0.009670189581811428, + 0.015335983596742153, + 0.02416837401688099, + -0.017551181837916374, + 0.003351196413859725, + 0.015847183763980865, + -0.013163385912775993, + -0.006308343261480331, + 0.0011785987298935652, + 0.004717945121228695, + 0.007376892026513815, + -0.002231172751635313, + -0.012687686830759048, + 0.009741189889609814, + 0.00931518990546465, + 0.014285185374319553, + -0.02925196848809719, + 0.03024596907198429, + 0.011246387846767902, + -0.0029287468641996384, + -0.001714648213237524, + 0.0007295242394320667, + 0.008200491778552532, + -0.01068548858165741, + 0.0060385437682271, + -0.0329439640045166, + -0.015335983596742153, + 0.015662582591176033, + -0.004536895081400871, + -0.0019826728384941816, + 0.01797718182206154, + -0.017593782395124435, + -0.004838644992560148, + -0.012481787241995335, + -0.00420674541965127, + -0.009038290940225124, + -0.006911842618137598, + -0.0008098428952507675, + 0.017139382660388947, + 0.00023319038155023009, + -0.01485318411141634, + -0.016841182485222816, + 0.014725384302437305, + 0.004004395566880703, + 0.010273689404129982, + -0.011473587714135647, + 0.008640690706670284, + -0.013859185390174389, + -0.02325957641005516, + 0.010500889271497726, + -0.024935172870755196, + 0.022776776924729347, + 0.00026380911003798246, + -0.0021779227536171675, + -0.0013933735899627209, + 0.0033281215000897646, + -0.015804583206772804, + 0.029819969087839127, + -0.005399544257670641, + -0.026085373014211655, + 0.0031257716473191977, + -0.022293977439403534, + 0.03967475891113281, + -0.0031683717388659716, + 0.005200744606554508, + 0.006737892981618643, + 0.022876175120472908, + -0.008626490831375122, + 0.006233793217688799, + 0.005963993724435568, + 0.006784042809158564, + -0.029933568090200424, + 0.010571888647973537, + -0.006581692956387997, + -0.002724622143432498, + 0.02560257352888584, + -0.014711184427142143, + 0.010941088199615479, + 0.011175388470292091, + -0.00808689184486866, + 0.015279184095561504, + 0.02171177789568901, + 0.029166769236326218, + 0.0159749835729599, + 0.007696392014622688, + 0.02436717413365841, + 0.009897389449179173, + 0.01972377859055996, + 0.02405477501451969, + -0.01593238301575184, + 0.006485843099653721, + 0.02181117795407772, + 0.001724410685710609, + -0.00630124332383275, + -0.019283579662442207, + 0.007689292076975107, + 0.0034878712613135576, + 0.0029642467852681875, + 0.010550589300692081, + 0.02290457673370838, + 0.006500042974948883, + 0.016202183440327644, + -0.018956979736685753, + -0.013901785016059875, + -0.008576790802180767, + 0.0013729610946029425, + 0.031779564917087555, + -0.0019489479018375278, + 0.007831291295588017, + 0.01686958223581314, + 0.006326093338429928, + -0.007767391856759787, + -0.04294075444340706, + -0.006425493396818638, + -0.00898859091103077, + -0.0028062721248716116, + 0.007075142581015825, + 0.003248246619477868, + 0.0037949460092931986, + 0.0016915731830522418, + -0.027377571910619736, + -0.0131278857588768, + 0.03160916641354561, + 0.008676190860569477, + -0.0134047856554389, + 0.008221791125833988, + 0.020675178617239, + 0.02085977792739868, + -0.0027956219855695963, + 0.029564369469881058, + -0.0023234726395457983, + 0.0034594712778925896, + 0.008747191168367863, + 0.01912738010287285, + 0.014909984543919563, + 0.009854789823293686, + -0.01728138141334057, + 0.005498944316059351, + 0.027917170897126198, + 0.008825290948152542, + -0.005747443996369839, + -0.013312486000359058, + 0.011949287727475166, + 0.022734176367521286, + 0.019894178956747055, + 0.027377571910619736, + -0.006713042967021465, + 0.015705183148384094, + 0.00996128935366869, + -0.010735188610851765, + 0.017749981954693794, + 0.0036192212719470263, + -0.007011242676526308, + 0.0038552959449589252, + -0.0016889107646420598, + 0.0002977559342980385, + -0.0008701928309164941, + -0.011658187955617905, + -0.005797144025564194, + 0.005829093977808952, + -0.00019746854377444834, + -0.004987744614481926, + 0.005662243813276291, + -0.0031736965756863356, + 0.014356184750795364, + -0.005726144183427095, + -0.0014466234715655446, + -0.02365717478096485, + 0.005435044411569834, + 0.01821858063340187, + -0.0006358930841088295, + -0.008782690390944481, + -0.022790975868701935, + 0.00680179288610816, + -0.006098893471062183, + 0.005307244602590799, + 0.014654384925961494, + 0.0005604556645266712, + 0.008214691653847694, + 0.02446657419204712, + -0.017636381089687347, + 0.018488381057977676, + -0.01708258129656315, + -0.009258390404284, + -0.012197786942124367, + 0.005438594147562981, + 0.008001691661775112, + 0.0035659712739288807, + -0.003777195932343602, + -0.01738078147172928, + -0.03109796717762947, + -0.023273775354027748, + 0.009826390072703362, + 0.011395487934350967, + -0.0007419492467306554, + 0.00287727196700871, + -0.0017377231270074844, + -0.01792038045823574, + -0.0033849214669317007, + -0.01827538013458252, + 0.0015105233760550618, + 0.02252117544412613, + -0.016699181869626045, + 0.011068888008594513, + -0.022748375311493874, + 0.024878373369574547, + 0.003525146283209324, + 0.010500889271497726, + -0.01853097975254059, + 0.03024596907198429, + 0.02296137623488903, + 0.00253469729796052, + 0.015193983912467957, + -0.003541121259331703, + 0.006975742522627115, + -0.014540784992277622, + -0.01133158802986145, + 0.0007880991906858981, + -0.0006713930633850396, + 0.0216123778373003, + -0.006258643232285976, + 0.024338774383068085, + 0.008172091096639633, + 0.004543995019048452, + -0.028087571263313293, + 0.0035872713197022676, + -0.010990788228809834, + -0.012041587382555008, + 0.004941594786942005, + 0.0030547718051820993, + -0.009208690375089645, + -0.014356184750795364, + 0.0018060605507344007, + 0.0010738738346844912, + 0.030529968440532684, + 0.0011546362657099962, + -0.004359395243227482, + -0.001795410644263029, + -0.004061195533722639, + 0.00968438945710659, + -0.011736287735402584, + -0.012297187000513077, + 0.02271997556090355, + 0.0005462556728161871, + 0.009641789831221104, + -0.012183587066829205, + -0.01821858063340187, + 0.003379596397280693, + -0.02276257611811161, + 0.031722765415906906, + 0.0025968223344534636, + -0.010252389125525951, + -0.03453436493873596, + 0.0006811555358581245, + 0.013411886058747768, + -0.007518892176449299, + -0.006645592860877514, + -0.0033139216247946024, + 0.0216123778373003, + -0.030870767310261726, + 0.003610346233472228, + 0.0002584840985946357, + -0.00040114959119819105, + -0.01277998648583889, + -0.0018175981240347028, + -0.0012566986260935664, + 0.023287976160645485, + 0.013035586103796959, + -0.0065071433782577515, + 0.031722765415906906, + -0.007561492267996073, + 0.011473587714135647, + 0.003108021803200245, + 0.008484491147100925, + 0.01736658252775669, + -1.084412906493526e-5, + 0.014278084971010685, + 0.013738485984504223, + -0.016841182485222816, + 0.009293890558183193, + 0.007540191989392042, + -0.013759785331785679, + 0.0073981923051178455, + -0.031069567427039146, + 0.004735695198178291, + -0.0069295926950871944, + -0.00057864940026775, + 0.0012185361701995134, + -0.009166090749204159, + 0.006748543120920658, + -0.018601980060338974, + -0.013816585764288902, + -0.004614995326846838, + 0.0037736459635198116, + -0.004675345029681921, + -0.010522188618779182, + -0.008420591242611408, + -0.003255346557125449, + 0.00806559156626463, + 0.004739244934171438, + -0.019879978150129318, + 0.0319499671459198, + -0.006908292882144451, + -0.00016618419613223523, + 0.01250308658927679, + 0.012808386236429214, + -0.04572395235300064, + -0.01926937885582447, + 0.006748543120920658, + -0.00561609398573637, + -0.013568085618317127, + 0.0006216930923983455, + 0.008867890574038029, + 0.0006793805514462292, + 0.005630293861031532, + -0.0040292455814778805, + -0.025574173778295517, + 0.0009700364898890257, + 0.006823092699050903, + -0.019340379163622856, + 0.0021867977920919657, + 0.037033561617136, + -0.0018761730752885342, + -0.007362692151218653, + 0.013965684920549393, + -0.011281888000667095, + -0.006098893471062183, + 0.01567678339779377, + 0.016045983880758286, + -0.002067872788757086, + 0.028996368870139122, + -0.013688785955309868, + -0.027917170897126198, + -0.0037239461671561003, + 0.0010064239613711834, + 0.03155236691236496, + -0.002626997185871005, + -0.014377485029399395, + 0.006606542970985174, + 0.006894092541188002, + 0.025886572897434235, + -0.007007692474871874, + -0.007504692301154137, + 0.022095177322626114, + -0.005690644029527903, + 0.010344688780605793, + -0.006670442875474691, + 0.0028719468973577023, + -0.025673573836684227, + 0.01567678339779377, + -0.004551095422357321, + 0.00647874316200614, + -0.008945990353822708, + -0.0005103119765408337, + -0.005829093977808952, + -0.0029109970200806856, + 0.0035428963601589203, + 0.004476545378565788, + -0.010770688764750957, + 0.0003938277077395469, + 0.011672387830913067, + -0.02435297518968582, + -0.024949373677372932, + 0.0009487365023232996, + -0.021740177646279335, + 0.018758179619908333, + -0.024083174765110016, + -0.028825970366597176, + 0.0018069481011480093, + 0.011189588345587254, + 0.004096695687621832, + 0.005495394114404917, + -0.004064745735377073, + -0.006592343095690012, + -5.114213490742259e-5, + -0.014093484729528427, + 0.008931790478527546, + -0.009698589332401752, + 0.02270577661693096, + 0.02375657483935356, + 0.01623058319091797, + 0.01115408819168806, + 0.004433945287019014, + -0.0190137792378664, + 0.017338180914521217, + 0.008562590926885605, + -0.013489985838532448, + -0.005211394280195236, + -0.016187982633709908, + 0.002085622865706682, + 0.006485843099653721, + -0.008519991301000118, + 2.060661972791422e-5, + 0.01515138428658247, + -0.015520583838224411, + -0.03075716830790043, + -0.0015060858568176627, + 0.0052717444486916065, + 0.0023163724690675735, + 0.023529374971985817, + 0.008470291271805763, + -0.003865945851430297, + 0.007561492267996073, + 0.013333786278963089, + 0.00786679144948721, + 0.019894178956747055, + 0.002160172676667571, + -0.004252895712852478, + -0.016798581928014755, + 0.009464289993047714, + -0.005711943842470646, + -0.019141579046845436, + 0.007405292242765427, + 0.0077105918899178505, + -0.0242677740752697, + -0.04813794791698456, + -0.004359395243227482, + 0.003656496061012149, + 0.006482293363660574, + -0.001964922994375229, + -0.038510359823703766, + -0.008931790478527546, + -0.00489189475774765, + -0.01767898164689541, + -0.012737386859953403, + 0.014711184427142143, + -0.004086045548319817, + 0.012808386236429214, + -0.0069792927242815495, + 0.037317559123039246, + 0.0032216215040534735, + -0.011182487942278385, + -0.021143777295947075, + 0.005470544099807739, + 0.024722173810005188, + 0.0029589219484478235, + -0.010621588677167892, + 0.026099571958184242, + -0.013908885419368744, + 0.0005364932003431022, + -0.011381288059055805, + 0.011892487294971943, + 0.005924943834543228, + -0.011580088175833225, + -0.013660385273396969, + 0.008882090449333191, + -0.011438087560236454, + -0.001509635942056775, + -0.011104388162493706, + 0.010635788552463055, + -0.028470970690250397, + 0.014810584485530853, + 0.028627170249819756, + -0.0070396424271166325, + -0.005048094782978296, + 0.009748289361596107, + -0.00742659205570817, + -0.025843972340226173, + -0.0031825716141611338, + -0.015179784037172794, + -0.012787086889147758, + -0.025772972032427788, + -0.005704843904823065, + 0.012396587058901787, + -0.0006447680643759668, + -0.014810584485530853, + -0.00398309575393796, + -0.022393375635147095, + 0.007696392014622688, + 0.006989942863583565, + -0.006780493073165417, + 0.009080890566110611, + -0.0013809485826641321, + -0.0002939840778708458, + 0.007852591574192047, + -0.019056379795074463, + 0.0008453428745269775, + 0.02212357707321644, + 0.015705183148384094, + -0.027221370488405228, + 0.032517965883016586, + -0.006602993234992027, + -0.019610179588198662, + -0.002579072257503867, + -0.001264686114154756, + -0.024778973311185837, + 0.014334884472191334, + 0.006638492923229933, + -0.0003170590498484671, + -0.0040185959078371525, + -0.002208097605034709, + -0.006897642742842436, + -0.00831409078091383, + -0.009670189581811428, + 0.02460857480764389, + -0.005339194554835558, + 0.0023305725771933794, + -0.04458795487880707, + -0.007195842452347279, + -0.025233373045921326, + 0.02565937303006649, + -0.023543575778603554, + -0.012417887337505817, + 0.040469955652952194, + 0.015122984535992146, + 0.01692638173699379, + 0.016017582267522812, + -0.014909984543919563, + 0.0009522864711470902, + 0.023586174473166466, + 0.00404344592243433, + 0.0015353733906522393, + -0.01583298295736313, + 0.012318487279117107, + 0.024793174117803574, + 0.020305978134274483, + 0.016216382384300232, + -0.012368187308311462, + -0.013397686183452606, + -0.0008258178713731468, + -0.009350690059363842, + 0.009769589640200138, + 0.0008852803148329258, + 0.006961542647331953, + -0.022691575810313225, + -0.015492184087634087, + -0.0030139468144625425, + -0.004295495338737965, + 0.004657594952732325, + 0.0012664612149819732, + 0.014938384294509888, + -0.008832390420138836, + -0.020405378192663193, + 0.006162793375551701, + -0.017792580649256706, + 0.0014270985266193748, + -0.013191785663366318, + -0.012304287403821945, + -0.003567746141925454, + -0.003997295629233122, + -0.008853690698742867, + -0.00553089426830411, + 0.009258390404284, + -0.009471390396356583, + 0.0057332441210746765, + 0.012964586727321148, + 0.019837379455566406, + -0.01712518185377121, + 0.0011067113373428583, + -0.0024441725108772516, + -0.006744992919266224, + 0.0001907013647723943, + -0.01362488605082035, + 0.017210381105542183, + -0.009052490815520287, + 0.004476545378565788, + -0.016102783381938934, + -0.018516780808568, + -0.012694786302745342, + -0.013461586087942123, + -0.00376299605704844, + 0.004149945452809334, + 0.023784974589943886, + -0.0035198212135583162, + 0.016812782734632492, + 0.037715159356594086, + 0.025630973279476166, + -0.03464796394109726, + -0.0001670717028900981, + -0.005044544581323862, + 0.024835774675011635, + -0.017309781163930893, + 0.015137184411287308, + -0.0013569861184805632, + -0.00640064338222146, + 0.001814935589209199, + -0.010018089786171913, + -0.005261094309389591, + 0.01258118636906147, + -0.00291987182572484, + -0.006773392669856548, + -0.000745499215554446, + -0.01922678016126156, + -0.025375373661518097, + 0.00426709558814764, + -0.03879435732960701, + -0.00951399002224207, + 0.0036884460132569075, + -0.010735188610851765, + -0.019752178341150284, + -0.023145975545048714, + 0.014391684904694557, + 0.011913787573575974, + -0.007696392014622688, + -0.007206492591649294, + 0.005438594147562981, + -0.017153581604361534, + 0.014682784676551819, + 0.014782184734940529, + -0.02815856970846653, + -0.009897389449179173, + 0.0017661231104284525, + -0.00028821532032452524, + -0.00716389250010252, + 0.013568085618317127, + -0.01677018217742443, + 0.0013330236542969942, + 0.03618156164884567, + 0.016159582883119583, + -0.011764687485992908, + 0.00489189475774765, + -0.009450090117752552, + 0.019894178956747055, + 0.003837545868009329, + -0.006052743643522263, + 0.012098386883735657, + 0.027831969782710075, + 0.00466824509203434, + -0.012219087220728397, + -0.019482379779219627, + -0.003265996463596821, + 0.0030334717594087124, + -0.004401995334774256, + 0.007944891229271889, + -0.017309781163930893, + -0.0029926467686891556, + 0.014157384634017944, + 0.0026713721454143524, + -0.0159749835729599, + 0.0024707973934710026, + -0.0026908970903605223, + 0.008498691022396088, + -0.008022991940379143, + 0.006805342622101307, + -0.010877188295125961, + -0.015080383978784084, + -0.019695378839969635, + -0.0013303611194714904, + -0.006333193276077509, + 0.0018442230066284537, + 0.013220186345279217, + -0.017210381105542183, + 0.012424986809492111, + -0.001600160845555365, + -0.003848196007311344, + 0.0076608918607234955, + 0.018587781116366386, + -0.00941458996385336, + 0.010600288398563862, + 0.017650581896305084, + 0.013383486308157444, + 0.01897118054330349, + 0.009293890558183193, + 0.004075395874679089, + -0.008157891221344471, + -0.012268787249922752, + 0.005626744125038385, + 0.0024423974100500345, + 0.0013800610322505236, + -0.014121885411441326, + 0.01485318411141634, + 0.0016205733409151435, + 0.024821573868393898, + -0.00036720273783430457, + -0.009663090109825134, + 0.000470374507131055, + -0.004284845665097237, + 0.0036422961857169867, + 0.0004441932833287865, + -0.012524386867880821, + -0.015563183464109898, + 0.005470544099807739, + -0.008420591242611408, + -0.022577976807951927, + -0.004984194878488779, + 0.011750487610697746, + -0.01732398197054863, + 0.0012726736022159457, + -0.01043698936700821, + 0.0002267560048494488, + -0.01270188670605421, + 0.028044970706105232, + 0.005232694558799267, + 0.0055841440334916115, + 0.019993579015135765, + -0.007511792238801718, + -0.017110982909798622, + -0.0009975489228963852, + -0.006599443033337593, + 0.017338180914521217, + 0.0055841440334916115, + -0.012694786302745342, + 0.007873891852796078, + 0.008945990353822708, + -0.007937791757285595, + 0.009570789523422718, + 0.014391684904694557, + -0.007060942705720663, + 0.00063367432449013, + -0.0017519231187179685, + -0.000421562057454139, + -0.01348288543522358, + -0.0009771364275366068, + -0.03050156868994236, + -0.016897981986403465, + 0.01140968780964613, + 0.01867298036813736, + -0.015761982649564743, + -0.006581692956387997, + 0.03055836819112301, + 0.008250190876424313, + -0.01887178048491478, + 0.005300144199281931, + -0.0159749835729599, + -0.0221093762665987, + 0.0028683969285339117, + -0.0017545856535434723, + -0.0014093485660851002, + -0.0004943370004184544, + 0.0027902971487492323, + 0.018587781116366386, + -0.015108783729374409, + -0.0025062973145395517, + 0.0034257464576512575, + -0.025843972340226173, + -0.0064680930227041245, + 0.001467035966925323, + 0.00762539217248559, + -0.019950978457927704, + 0.008818190544843674, + -0.007895192131400108, + 0.007490491960197687, + 0.0006957992445677519, + 0.011963487602770329, + 0.017039982602000237, + 0.0019489479018375278, + -0.011480688117444515, + -0.003246471518650651, + 0.008519991301000118, + 0.007192292250692844, + 0.0038623958826065063, + -0.015506383962929249, + -0.023870175704360008, + 0.0025098472833633423, + -0.020234977826476097, + 0.008285691030323505, + 0.02206677757203579, + 0.01722458191215992, + 0.024423973634839058, + 0.007696392014622688, + 0.007575692143291235, + -0.003450596472248435, + -0.014924184419214725, + -0.021044377237558365, + 0.005104894749820232, + -0.0036529460921883583, + -0.003629871178418398, + -0.026284173130989075, + -0.001348111080005765, + 0.00025537784676998854, + -0.00941458996385336, + -0.01706838235259056, + -0.033171165734529495, + 0.003134646685793996, + 0.00752599211409688, + -0.004153495654463768, + 0.018658779561519623, + 0.00565514387562871, + -0.014185785315930843, + -0.005040994845330715, + -0.010003889910876751, + -0.011189588345587254, + -0.004398445598781109, + -0.006084693595767021, + -0.019851578399538994, + 0.00968438945710659, + -0.004838644992560148, + 0.0012504862388595939, + 0.0011990112252533436, + 0.011416788212954998, + 0.025204973295331, + 0.00841349083930254, + -0.010458288714289665, + -0.009329389780759811, + -0.002903896849602461, + 0.0012593611609190702, + -0.0051616947166621685, + 0.007327192462980747, + -0.02206677757203579, + -4.5456592488335446e-5, + 0.011771787889301777, + 0.01088428869843483, + 0.002843546913936734, + 0.0170257817953825, + 0.01197768747806549, + -0.026482971385121346, + -0.008995690383017063, + 0.005910743959248066, + 0.011885387822985649, + 0.03470476344227791, + 0.011544588021934032, + -0.02222297713160515, + 0.01787778176367283, + -0.015449583530426025, + 0.0170257817953825, + -0.004313245415687561, + 0.019652780145406723, + -0.0029571468476206064, + 0.0063047935254871845, + 0.013475785963237286, + 0.0015726482961326838, + 0.0030636468436568975, + 0.013986985199153423, + -0.0019844479393213987, + -0.010543488897383213, + 0.004061195533722639, + -0.017451781779527664, + 0.0015344858402386308, + -0.0017093231435865164, + 0.032915566116571426, + 0.0059533435851335526, + 0.004075395874679089, + -0.009421690367162228, + -0.017693180590867996, + 0.006145043298602104, + 0.014469784684479237, + -0.006027893628925085, + 0.005630293861031532, + 0.0006225805846042931, + -0.005864593666046858, + 0.008740090765058994, + 0.004036345519125462, + -0.00036121212178841233, + -0.005949793849140406, + 0.021186377853155136, + -0.015264984220266342, + -0.013532585464417934, + -0.007142592687159777, + -0.027973970398306847, + -0.01623058319091797, + -0.010763588361442089, + 0.036522362381219864, + -0.010870088823139668, + 0.0006057181162759662, + -0.0010250614723190665, + -0.002216972643509507, + 0.0033955713734030724, + -0.005179444327950478, + -0.014015384949743748, + 0.004977094940841198, + 0.0003645402321126312, + 0.007703491952270269, + -0.034221965819597244, + 0.024182574823498726, + 0.017565380781888962, + -0.0066171931102871895, + -0.024935172870755196, + 0.012744486331939697, + -0.00933649018406868, + 0.010500889271497726, + 0.003303271485492587, + -0.01388048566877842, + 0.003628096077591181, + 0.011040488258004189, + -0.01872977986931801, + 0.008619391359388828, + -0.014448484405875206, + 0.007043192628771067, + -0.004480095114558935, + 0.009343590587377548, + -0.0013445611111819744, + 0.009187390096485615, + -0.005850393790751696, + -0.005800693761557341, + -0.02700837142765522, + -0.00014954358630347997, + 0.033625565469264984, + 0.05447114259004593, + 0.032375965267419815, + -0.0006873680395074189, + 0.0019595979247242212, + 0.023287976160645485, + -0.02516237273812294, + 0.0028808219358325005, + 0.0097837895154953, + -0.03459116443991661, + -0.01145228836685419, + -0.018246980383992195, + -0.021938977763056755, + 0.030387967824935913, + 0.009144790470600128, + -0.01922678016126156, + -0.00233412254601717, + -0.016855381429195404, + -0.0011324487859383225, + 0.007511792238801718, + 0.007383992429822683, + -0.008299890905618668, + 0.002342997584491968, + -0.013965684920549393, + 0.014455584809184074, + 0.01116118859499693, + 0.0025204974226653576, + -0.005282394587993622, + -0.009719889611005783, + -0.014079284854233265, + 0.015435383655130863, + 0.02715037204325199, + -0.014824784360826015, + -0.018232781440019608, + -0.001724410685710609, + -0.010536388494074345, + 0.017693180590867996, + -0.001980897970497608, + 0.012673486955463886, + -0.0054243942722678185, + -0.002271997509524226, + -0.0025755222886800766, + -0.013539685867726803, + 0.002855971921235323, + -0.010720988735556602, + -0.012950385920703411, + -0.021299976855516434, + 0.024452373385429382, + -0.029564369469881058, + 0.024438174441456795, + -0.021427776664495468, + 0.006993492599576712, + -0.002648297231644392, + -0.01843157969415188, + -0.013759785331785679, + -0.015122984535992146, + 0.012850986793637276, + 0.03993035852909088, + -0.0045901453122496605, + -0.014711184427142143, + -0.029365569353103638, + -0.011182487942278385, + 0.011785987764596939, + 0.007746092043817043, + -0.003486096393316984, + -0.027192970737814903, + 0.018204381689429283, + -0.016883783042430878, + -0.018758179619908333, + -0.004483645316213369, + -0.011984786950051785, + 0.000993111403658986, + -0.007944891229271889, + -0.0052717444486916065, + -0.018204381689429283, + -0.020944977179169655, + -0.006571043282747269, + -0.023003974929451942, + 0.00898859091103077, + -0.002932296833023429, + 0.03558516129851341, + -0.0030068468768149614, + 0.008392191492021084, + 0.021101178601384163, + 0.005552194081246853, + -0.019709579646587372, + -0.0030405716970562935, + -0.011892487294971943, + -0.0009238865459337831, + -0.017210381105542183, + -0.011871187947690487, + -0.025645172223448753, + 0.0016312232473865151, + -0.01632998324930668, + 0.004515595268458128, + 0.005332094617187977, + -0.004295495338737965, + -0.0036067962646484375, + -0.006123743485659361, + -0.0026660473085939884, + 0.002179697621613741, + 0.0030547718051820993, + -0.003512721275910735, + 0.01008198969066143, + 0.018104981631040573, + -0.012936186045408249, + -0.03453436493873596, + 0.006311893463134766, + 0.009229990653693676, + 0.0015043108724057674, + 0.026894772425293922, + -0.0131278857588768, + -0.022478576749563217, + 0.009705689735710621, + 0.004831545054912567, + -0.02041957899928093, + 0.0216123778373003, + -0.00213354779407382, + 0.008030091412365437, + 0.003484321292489767, + 0.0004943370004184544, + -0.022336576133966446, + 0.004785394761711359, + 0.029535969719290733, + 0.006560393143445253, + 0.005552194081246853, + -0.004625645000487566, + 0.009116390720009804, + 0.022776776924729347, + -0.016400983557105064, + 0.0033014966174960136, + 0.023870175704360008, + 0.01475378405302763, + -0.015392784029245377, + 0.00998258963227272, + -0.012204887345433235, + -0.004998394753783941, + 0.012673486955463886, + -0.012013187631964684, + 0.010252389125525951, + -0.012694786302745342, + -0.011423887684941292, + 0.009130590595304966, + 0.013369285501539707, + 0.00790939200669527, + -0.005963993724435568, + -0.0009664864628575742, + -0.010294988751411438, + 0.014909984543919563, + 0.01593238301575184, + 0.011494887992739677, + 0.007568592205643654, + -0.010720988735556602, + -0.0001454389130230993, + -0.015421183779835701, + -0.004362945444881916, + 0.011274788528680801, + 0.018587781116366386, + 0.00831409078091383, + -0.007980391383171082, + 0.004526245407760143, + -0.0009309865417890251, + 0.005552194081246853, + 0.005711943842470646, + 0.0131562864407897, + 0.0013392360415309668, + 0.01581878401339054, + 0.011544588021934032, + 0.006354493089020252, + -0.016542982310056686, + -0.019098980352282524, + -0.010401489213109016, + -0.00398309575393796, + -0.017607981339097023, + -0.006283493246883154, + 0.00539244432002306, + -0.013965684920549393, + -0.013710085302591324, + -0.017607981339097023, + -0.03788556158542633, + 0.0009434114908799529, + 0.015690984204411507, + 0.022535376250743866, + 0.02565937303006649, + -0.005065844859927893, + 0.01952498033642769, + -0.004551095422357321, + -0.0016267858445644379, + -0.00046105575165711343, + 0.010564789175987244, + -0.0074478923343122005, + -0.006294143386185169, + 0.01385208498686552, + -0.016202183440327644, + -0.001366748590953648, + -0.0038446460384875536, + 0.006659793201833963, + 0.0001647420140216127, + 0.0033405465073883533, + -0.008321191184222698, + 0.0021867977920919657, + -0.018332181498408318, + -0.03024596907198429, + 0.003706196090206504, + -0.00968438945710659 + ], + "9f951089-d568-4e58-80d0-8e52a8fc72bf": [ + -0.02830786444246769, + -0.016956759616732597, + -0.015460986644029617, + -0.01021180022507906, + -0.06201169639825821, + 0.015377111732959747, + -0.0008466148283332586, + 0.04604746028780937, + 0.0021562904585152864, + 0.05927177518606186, + -0.0054483902640640736, + 0.012518366798758507, + -0.013895316980779171, + 0.00537499925121665, + -0.014538359828293324, + 0.010519342496991158, + -0.03427698090672493, + 0.031145641580224037, + -0.0037743819411844015, + -0.006923194974660873, + 0.050269175320863724, + -0.03690506890416145, + -0.0044279093854129314, + 0.0390019454061985, + -0.011288197711110115, + -0.011686604470014572, + 0.02689596638083458, + -0.017571844160556793, + -0.02057737112045288, + -0.00396310118958354, + 0.00458867009729147, + 0.015083548612892628, + 0.046690501272678375, + -0.02946813777089119, + 0.01029567513614893, + 0.0024708223063498735, + -0.00042592850513756275, + 0.03642977401614189, + -0.029943430796265602, + 0.02057737112045288, + -0.014971715398132801, + 0.019473014399409294, + 0.02131826803088188, + 0.00971553847193718, + -0.021765602752566338, + 0.029496096074581146, + 0.03956111520528793, + -0.0036310951691120863, + 0.0027276899199932814, + 0.003851267509162426, + 0.004176283720880747, + 0.019053639844059944, + -0.001913401996716857, + 0.006458386778831482, + 0.012979679740965366, + 0.005266660824418068, + -0.013671650551259518, + 0.059551358222961426, + 0.008653120137751102, + -0.03628998249769211, + -0.016481468454003334, + -0.014706110581755638, + -0.00653527257964015, + -0.0024201476480811834, + 0.01667717657983303, + -0.026197006925940514, + 0.0012502640020102262, + -0.008247723802924156, + -0.026266902685165405, + -0.0008147248299792409, + -0.007450909353792667, + 0.004127356689423323, + -0.03810727968811989, + 0.006608663126826286, + -0.002154543064534664, + -0.015013652853667736, + 0.04406241327524185, + -0.043615080416202545, + 0.009142391383647919, + 0.01448244322091341, + -0.04557216539978981, + 0.01891384646296501, + 0.01568465307354927, + 0.003795350668951869, + 0.03452860563993454, + 0.0175019484013319, + -0.021891415119171143, + -0.05186280235648155, + -0.02790246717631817, + -0.009380037896335125, + 0.01515344437211752, + 0.027762675657868385, + 0.0010327128693461418, + 0.010980655439198017, + -0.004819326568394899, + -0.00709793483838439, + 0.025218462571501732, + 0.0027049737982451916, + -0.04020415619015694, + 0.0011061036493629217, + -0.027832571417093277, + 0.02763686329126358, + -0.020269829779863358, + -0.0035227565094828606, + 0.040539659559726715, + -0.01934720203280449, + 0.028084198012948036, + -0.0164395309984684, + -0.028657345101237297, + 0.017963262274861336, + 0.028741220012307167, + -0.010756989009678364, + -0.02805623970925808, + 0.013510889373719692, + 0.03167685121297836, + -0.08370740711688995, + -0.02430981583893299, + -0.01692880131304264, + -0.019542910158634186, + -0.06380103528499603, + 0.034053314477205276, + 0.03933744877576828, + 0.02391839772462845, + -0.0214999970048666, + 0.01170058362185955, + -0.008862808346748352, + -0.005986589007079601, + 0.01079193688929081, + -0.008324609138071537, + 0.010072007775306702, + 0.005140847992151976, + -0.05085630342364311, + -0.022562416270375252, + 0.006269667763262987, + -0.007028039079159498, + 0.0318446010351181, + 0.01361573301255703, + 0.038302987813949585, + -0.04540441557765007, + 0.0522821806371212, + 0.0007177441730163991, + -0.04724967107176781, + -0.021975290030241013, + -0.035059813410043716, + 0.0017858418868854642, + -0.005203754175454378, + -0.023121584206819534, + 0.057985689491033554, + -0.009016579017043114, + 0.02025585062801838, + -0.03827502951025963, + 0.011309166438877583, + 0.02133224718272686, + -0.007304128259420395, + 0.0015167423989623785, + 0.0002546834002714604, + 0.011176364496350288, + 0.014845902100205421, + -0.02084297500550747, + 0.0033322900999337435, + -0.03218010067939758, + -0.019123535603284836, + 0.03992457315325737, + -0.0019221389666199684, + 0.030362805351614952, + 0.020647266879677773, + 0.051163844764232635, + 0.047445379197597504, + -0.0476410873234272, + 0.019207410514354706, + 0.04814434051513672, + -0.02938426285982132, + 0.02010207809507847, + 0.007171325851231813, + 0.00044362092739902437, + -0.015391090884804726, + -0.005441400688141584, + 0.017390115186572075, + 0.03743627667427063, + -0.05289726331830025, + 4.032669312437065e-5, + -0.007807379122823477, + -0.03410923108458519, + 0.010072007775306702, + 0.004983582068234682, + 0.024379711598157883, + 0.023848501965403557, + 0.0010003859642893076, + -0.016495447605848312, + 0.034137189388275146, + -0.005514791235327721, + 0.0037149703130126, + 0.0415182001888752, + 0.05054875835776329, + -0.005277145188301802, + -0.009659621864557266, + -0.018382638692855835, + -0.02316352166235447, + 0.024379711598157883, + 0.03617814928293228, + -0.010337612591683865, + -0.04012028127908707, + -0.059383608400821686, + 0.01734817773103714, + -0.04034394770860672, + -0.006881257519125938, + -0.014328672550618649, + -0.010113946162164211, + 0.027678800746798515, + -0.02656046487390995, + 0.025414172559976578, + -0.032655391842126846, + 0.03078218176960945, + 0.007583711761981249, + -0.00983436219394207, + 0.012707086279988289, + -0.027832571417093277, + 0.007828347384929657, + 0.016705134883522987, + -0.0012598746689036489, + -0.007989108562469482, + 0.015293236821889877, + 0.025218462571501732, + -0.0245614405721426, + -0.02398829348385334, + -0.023177500814199448, + -0.025120608508586884, + 0.008198796771466732, + -0.03178868442773819, + -0.026602402329444885, + 0.050996094942092896, + -0.012679127976298332, + -0.007646618410944939, + -0.050744470208883286, + -0.004487320780754089, + 0.005231712944805622, + -0.009855330921709538, + -0.014412547461688519, + 0.03989661484956741, + -0.0037848663050681353, + 0.04683029279112816, + 0.00763263925909996, + -0.006961637642234564, + 0.00999512244015932, + 0.032487642019987106, + 0.04157411679625511, + -0.015139465220272541, + 0.029859555885195732, + 0.0214999970048666, + 0.012385564856231213, + 0.004833305720239878, + 0.031061764806509018, + 0.00809395220130682, + -0.01950097270309925, + 0.0008854944608174264, + 0.031173599883913994, + 0.013853379525244236, + -0.0056196353398263454, + -0.028657345101237297, + 0.00017670572560746223, + -0.007325096987187862, + -0.004847284872084856, + 0.012686117552220821, + -0.028685303404927254, + 0.046019501984119415, + -0.027692779898643494, + 0.017194407060742378, + -0.03612223267555237, + 0.01569863222539425, + 0.014049088582396507, + -0.05653185397386551, + -0.009645642712712288, + 0.0017072089249268174, + 0.01652340590953827, + -0.005574203096330166, + 0.003321805503219366, + 0.016565343365073204, + 0.011840376071631908, + 0.011155395768582821, + 0.015167423523962498, + -0.013231305405497551, + 0.02755298838019371, + 0.016201883554458618, + 0.035814691334962845, + -0.022143039852380753, + -0.027860529720783234, + -0.0006819224799983203, + 0.02200324833393097, + -0.028685303404927254, + -0.02042360045015812, + 0.014049088582396507, + -0.012427502311766148, + 0.056643687188625336, + 0.0016355655388906598, + 0.0396449901163578, + 0.006374511867761612, + -0.03388556092977524, + -0.014007151126861572, + 3.0606785003328696e-5, + 0.007835336960852146, + -0.04632704332470894, + 0.012147918343544006, + 0.026378735899925232, + 0.005455379839986563, + -0.0031540552154183388, + -0.00867408886551857, + 0.026784133166074753, + -0.01108550000935793, + -0.026434652507305145, + 0.014035109430551529, + 0.03408127278089523, + -0.006147349718958139, + -0.02647658996284008, + -0.010763978585600853, + -0.004822821356356144, + 0.01200113631784916, + 0.01568465307354927, + -0.010449446737766266, + -0.0042566643096506596, + -0.016802988946437836, + -0.01336410827934742, + -0.010023080743849277, + -0.054323140531778336, + -0.005528770387172699, + 0.017543885856866837, + -0.04260857775807381, + 0.0010222283890470862, + 0.017627760767936707, + -0.014412547461688519, + -0.015125486068427563, + -0.025302337482571602, + -0.028154093772172928, + -0.005067457444965839, + -0.011183354072272778, + 0.005497317295521498, + -0.021765602752566338, + -0.028168072924017906, + -0.0429999940097332, + -0.007146862335503101, + 0.004854274448007345, + -0.018983744084835052, + 0.031341347843408585, + -0.004504794720560312, + 0.007353055290877819, + -0.001556932576932013, + -0.015083548612892628, + -0.018871909007430077, + 0.03226397559046745, + -0.006301120854914188, + 0.0011157143162563443, + 0.0006945911445654929, + -0.015866383910179138, + 0.01849447190761566, + 0.01294473186135292, + -0.009282183833420277, + 0.01365068182349205, + -0.04898308962583542, + -0.01066612359136343, + 0.008254713378846645, + 0.024799088016152382, + 0.01295172143727541, + -0.022646291181445122, + -0.03192847594618797, + -0.019221389666199684, + 0.009743496775627136, + 0.013385077007114887, + 0.03243172541260719, + -0.0026193512603640556, + -0.014174900949001312, + 0.020619308575987816, + -0.010889790952205658, + 0.028769178315997124, + 0.03712873533368111, + 0.010218789801001549, + -0.03986865654587746, + 0.005319082643836737, + 0.06134069710969925, + 0.026546485722064972, + -0.01941709779202938, + 0.02141612209379673, + -0.019305264577269554, + 0.022184979170560837, + -0.0048857275396585464, + -0.01860630512237549, + 0.03478023037314415, + 0.025609880685806274, + 0.007520805578678846, + -0.006168318446725607, + -0.01867620088160038, + -0.01985045336186886, + -0.04341937229037285, + -0.028936928138136864, + -0.03005526401102543, + 0.006832330487668514, + -0.015614758245646954, + 0.018368659541010857, + 0.014664173126220703, + 0.006063474807888269, + 0.03237580880522728, + -0.0009034053073264658, + -0.025344274938106537, + -0.021639790385961533, + -0.0022069651167839766, + 0.02358289808034897, + 0.030111180618405342, + -0.015391090884804726, + -0.0011174617102369666, + 0.008415473625063896, + 0.00838751532137394, + -0.0008837470668368042, + -0.008352567441761494, + -0.005385484080761671, + -0.00343363918364048, + -0.0320403091609478, + 0.06547854095697403, + -0.0101209357380867, + 0.021052664145827293, + 0.03047463856637478, + -0.06430428475141525, + 0.018242845311760902, + 0.05770610645413399, + 0.06480753421783447, + -0.017306240275502205, + -0.003900194773450494, + -0.020297788083553314, + -1.6272653738269582e-5, + 0.04688621312379837, + 0.020773079246282578, + -0.005098910536617041, + -0.016579322516918182, + -0.031257472932338715, + 0.00300028407946229, + -0.016076071187853813, + -0.03696098551154137, + 0.014342651702463627, + -0.01007899735122919, + 0.014496422372758389, + -0.005368009675294161, + -0.014384589157998562, + -0.005637109279632568, + 0.01650942675769329, + -0.0024900436401367188, + -0.02000422403216362, + -0.004501299932599068, + -0.019794536754488945, + -0.024058189243078232, + -0.01832672208547592, + 0.015055590309202671, + -0.01926332712173462, + 0.03313068673014641, + 0.001999024534597993, + 0.0469980463385582, + -0.03972886502742767, + -0.012064043432474136, + 0.005154827143996954, + 0.013308190740644932, + -0.0019221389666199684, + 0.023177500814199448, + 0.0396449901163578, + 0.007996098138391972, + -0.014678152278065681, + 0.0012327900622040033, + 0.012958711013197899, + -0.044369958341121674, + 0.004466352052986622, + -0.06458386778831482, + -0.04039986431598663, + 0.01551690325140953, + -0.009205298498272896, + -0.04065149277448654, + -0.011001624166965485, + 0.00992522668093443, + -0.009442944079637527, + 0.007031533867120743, + -0.019724640995264053, + 0.013587774708867073, + 0.006465376354753971, + 0.0013664660509675741, + 0.023051688447594643, + -0.015181402675807476, + -0.03777177631855011, + -0.028112156316637993, + -0.023610856384038925, + 0.010044049471616745, + 0.04425812140107155, + -0.006741465535014868, + -0.03595448285341263, + 0.0032029824797064066, + 0.021122559905052185, + -0.0031295916996896267, + 0.048675548285245895, + -0.007996098138391972, + 0.004190262872725725, + -0.011581760831177235, + -0.004207736812531948, + -0.04573991894721985, + -0.010106955654919147, + -0.03679323568940163, + 0.0028028280939906836, + -0.029775679111480713, + 0.06402470171451569, + -0.02140214294195175, + 0.018228866159915924, + 0.03492002189159393, + 0.00763263925909996, + -0.011427990160882473, + -0.002804575487971306, + -0.007339076139032841, + 0.007080460898578167, + -0.0004897085600532591, + -0.006779908202588558, + 0.0069057210348546505, + -0.01985045336186886, + 0.024924900382757187, + 0.00792620237916708, + 0.023722689598798752, + -0.018075095489621162, + 0.021947331726551056, + -0.01625780016183853, + -0.0040260073728859425, + -0.014153932221233845, + 0.003496545599773526, + -0.020269829779863358, + 0.009233256801962852, + 0.01335711870342493, + -0.010966676287353039, + -0.02033972553908825, + 0.006080948747694492, + 0.029104677960276604, + -0.009806403890252113, + -0.012483418919146061, + 0.019724640995264053, + -0.01592230051755905, + 0.005647593643516302, + 0.004043481312692165, + -0.031257472932338715, + 0.009491872042417526, + -0.016481468454003334, + -0.00942197535187006, + 0.01975259929895401, + -0.028992844745516777, + 0.029999347403645515, + -0.01315442007035017, + -0.03310272842645645, + 0.031005848199129105, + 0.033242519944906235, + -0.02755298838019371, + 0.01307753473520279, + 0.012539335526525974, + 0.007625649683177471, + -0.024086149409413338, + 0.015600779093801975, + -0.0007985613774508238, + 0.0030771696474403143, + 0.015726590529084206, + -0.04381078854203224, + 0.03293497860431671, + -0.010113946162164211, + -0.02217100001871586, + -0.0015324689447879791, + 0.026756174862384796, + -0.010016091167926788, + 0.002570423996075988, + 0.0022593869362026453, + -0.05057671666145325, + -0.01037256047129631, + -0.02896488644182682, + 0.01568465307354927, + -0.001082513714209199, + 0.004403445404022932, + 0.016551364213228226, + 0.0186622217297554, + 0.031648892909288406, + -0.014510401524603367, + -0.017446031793951988, + 0.020297788083553314, + 0.0015368374297395349, + 0.02017197385430336, + -0.0122807202860713, + 0.006996585987508297, + -0.010652144439518452, + -0.03380168601870537, + 0.0011480412213131785, + -0.029663845896720886, + 0.001236284850165248, + -0.00838052574545145, + -0.052589721977710724, + -0.03450064733624458, + 0.007248211186379194, + 0.024505523964762688, + -0.022352728992700577, + 0.032990895211696625, + 0.02538621425628662, + -0.04006436467170715, + -0.0022349234204739332, + 0.028279906138777733, + 0.0033742275554686785, + 0.02422594092786312, + -0.010148894041776657, + 0.012085012160241604, + -0.031900517642498016, + 0.03545123338699341, + 0.020465537905693054, + -0.02615506947040558, + -0.026518527418375015, + 0.02871326170861721, + -0.02306566759943962, + -0.009058516472578049, + -0.011896292679011822, + -0.014070057310163975, + 0.021891415119171143, + -0.008107931353151798, + 0.0373244434595108, + -0.00701405992731452, + 0.03533940017223358, + 0.007912223227322102, + 0.02240864560008049, + 0.0207591000944376, + -0.007541774306446314, + -0.01600617542862892, + 0.01876007579267025, + -0.04272041097283363, + 0.04193757846951485, + -0.024631336331367493, + 0.02531631663441658, + -0.010861832648515701, + -0.023177500814199448, + -0.0028535027522593737, + -0.011630687862634659, + -0.009156371466815472, + 0.00533655658364296, + 0.011812417767941952, + 0.022268854081630707, + -0.03824707120656967, + 0.024421649053692818, + 0.021290309727191925, + 0.0038722362369298935, + 0.033326394855976105, + -0.0029251459054648876, + 0.010330623015761375, + -0.01617392525076866, + -0.014146942645311356, + 0.01361573301255703, + 0.027539009228348732, + -0.01087581180036068, + -0.0025791609659790993, + -0.03561898320913315, + 0.025134587660431862, + 0.031061764806509018, + 0.005710500292479992, + -0.07174121588468552, + -0.0011113458313047886, + 0.03824707120656967, + 0.003267636289820075, + -0.0046061440370976925, + -0.03698894381523132, + -0.025260400027036667, + 0.025833547115325928, + 0.0268819872289896, + -0.020968789234757423, + 0.011239270679652691, + 0.018144991248846054, + -0.019808515906333923, + 0.013182378374040127, + 0.03120155818760395, + 0.012329647317528725, + 0.009820383042097092, + -0.0027102159801870584, + -0.006357037927955389, + 0.016285758465528488, + -0.004309086129069328, + 0.0013568553840741515, + 0.021639790385961533, + 0.017627760767936707, + -0.00605648523196578, + -0.013147430494427681, + 0.005693025887012482, + -0.02797236479818821, + 0.0025249915197491646, + -0.01677503064274788, + -0.012392554432153702, + 0.006790392566472292, + 0.007367034442722797, + 0.009505851194262505, + 0.019640766084194183, + -0.01934720203280449, + -0.00023786468955222517, + 0.01029567513614893, + -0.021541936323046684, + -0.008017066866159439, + -0.008618172258138657, + 0.02074512094259262, + 0.0009925226913765073, + 0.0018749592127278447, + -0.0036590537056326866, + 0.009387027472257614, + -0.020689204335212708, + -0.003486061003059149, + 0.01286784652620554, + -0.04269245266914368, + -0.028908969834446907, + -8.573176273785066e-6, + -0.015097527764737606, + -0.01975259929895401, + -0.01659330166876316, + 0.01575455069541931, + -0.012797950766980648, + 0.0006094053969718516, + -0.017711637541651726, + -0.010030070319771767, + 0.020227892324328423, + 0.008730005472898483, + -0.005193269811570644, + 0.011148406192660332, + 0.013014628551900387, + 0.007164336275309324, + -0.01065913401544094, + 0.014300714246928692, + -0.0021248371340334415, + 0.0381631962954998, + -0.01825682446360588, + 0.05848894268274307, + -0.0038897101767361164, + -0.04026007279753685, + -0.03575877472758293, + 0.02997138909995556, + 0.02581956796348095, + -0.004679534584283829, + -0.0028832084499299526, + -0.0039036895614117384, + 0.04423016309738159, + -0.0017185669858008623, + -0.01469213142991066, + 0.018396617844700813, + -0.014957736246287823, + -0.004822821356356144, + -0.021541936323046684, + -0.00485776923596859, + 0.02896488644182682, + -0.02242262475192547, + 0.020130036398768425, + -0.0027836067602038383, + 0.026210986077785492, + -0.00031147387926466763, + 0.02440766990184784, + 0.02040962129831314, + -0.0104913841933012, + 0.005860776640474796, + 0.004819326568394899, + 0.013692619279026985, + 0.05927177518606186, + -0.03525552153587341, + 0.046606626361608505, + 0.020521454513072968, + -0.010533321648836136, + -0.020130036398768425, + 0.008443431928753853, + 0.011945219710469246, + 0.013175388798117638, + 0.01973862014710903, + -0.011204322800040245, + 0.010819895192980766, + -0.00466555543243885, + -0.046606626361608505, + -0.007905233651399612, + -0.003314815927296877, + -0.004288117401301861, + 0.024799088016152382, + 0.035311441868543625, + -0.005049983039498329, + -0.0029863049276173115, + -0.01882997155189514, + 0.01926332712173462, + 0.03617814928293228, + 0.018871909007430077, + -0.02723146602511406, + 0.03201235085725784, + 0.009072495624423027, + -0.030418721958994865, + 0.009904257953166962, + -0.015964237973093987, + -0.034304939210414886, + 0.01469213142991066, + -0.010477405041456223, + -0.005941156763583422, + -0.0025512026622891426, + 0.041378408670425415, + 0.04160207509994507, + -0.004609638825058937, + -0.017473990097641945, + 0.02605721540749073, + 0.023037709295749664, + -0.013308190740644932, + -0.0007334707770496607, + 0.004155314993113279, + -0.014929777942597866, + 0.020801037549972534, + -0.01460825651884079, + 0.005217733792960644, + -0.0026595413219183683, + -0.0032536571379750967, + -0.035311441868543625, + 0.02573569305241108, + 0.027622884139418602, + -0.017446031793951988, + -0.006066969595849514, + 0.01249040849506855, + 0.0010265969904139638, + 0.025512026622891426, + 0.0009689327562227845, + -0.0148598812520504, + -0.012476429343223572, + -0.009820383042097092, + 0.010463425889611244, + 0.0035349882673472166, + 0.00539247365668416, + 0.0025634344201534986, + -0.02533029578626156, + 0.014342651702463627, + -0.03466839715838432, + 0.009799414314329624, + 0.004389466252177954, + 0.018117032945156097, + 0.019794536754488945, + 0.001642555114813149, + -0.018941806629300117, + -0.019361181184649467, + 0.0052002593874931335, + 0.010624186135828495, + 0.015488944947719574, + 0.005570708308368921, + -0.00279234373010695, + -0.01365068182349205, + 0.03956111520528793, + 0.008135889656841755, + 0.0493185892701149, + -0.029579970985651016, + -0.004466352052986622, + -0.024547461420297623, + 0.0044523729011416435, + 0.0018557377625256777, + -0.016984717920422554, + -0.028000323101878166, + -0.006671569775789976, + -0.007625649683177471, + -0.016733093187212944, + -0.014307703822851181, + -0.014594276435673237, + 0.028825094923377037, + 0.02148601785302162, + 0.007241221610456705, + -0.021877435967326164, + -0.015726590529084206, + 0.009303152561187744, + -0.025302337482571602, + 0.01965474523603916, + 0.013014628551900387, + 0.011441969312727451, + 0.02175162360072136, + -0.005969115067273378, + 0.010861832648515701, + 0.025875484570860863, + 0.004434898961335421, + -0.03078218176960945, + -0.0018994227284565568, + -0.010190831497311592, + -0.014209848828613758, + 0.01659330166876316, + -0.00838052574545145, + -0.012078022584319115, + 8.878971129888669e-5, + 0.014496422372758389, + 0.013420024886727333, + -0.019780557602643967, + -0.029915472492575645, + -0.03886215388774872, + -0.02896488644182682, + 0.010225779376924038, + -0.020773079246282578, + 0.022212937474250793, + 0.00933810044080019, + 0.007933191955089569, + 0.002657793927937746, + -0.0024935384280979633, + -0.06860987842082977, + 0.017893366515636444, + 0.0010545552941039205, + 0.0028639871161431074, + -0.0198224950581789, + -0.0042461794801056385, + 0.017697658389806747, + 0.010239758528769016, + -0.006975616794079542, + -0.023219438269734383, + -0.008855818770825863, + -0.021723665297031403, + -0.025749672204256058, + -0.001322781085036695, + 0.0023904419504106045, + -0.01916547305881977, + -0.0022541447542607784, + -0.02190539427101612, + -0.017879387363791466, + 0.007807379122823477, + -0.02997138909995556, + -0.044621583074331284, + 0.017725616693496704, + -0.0008754469454288483, + -0.018061116337776184, + 0.04878738150000572, + 0.025609880685806274, + -0.01095269713550806, + -0.01958484947681427, + -0.017194407060742378, + 0.03220805898308754, + 0.018144991248846054, + 0.00982737261801958, + 0.003512272145599127, + -0.0059761046431958675, + -0.003917668480426073, + -0.006259183399379253, + -0.0036835172213613987, + 0.013203347101807594, + 0.0017447778955101967, + -0.011106468737125397, + -0.017152469605207443, + 0.011092489585280418, + 0.004434898961335421, + 0.007653607986867428, + 0.00867408886551857, + 0.020381662994623184, + 0.03022301383316517, + -0.0016818715957924724, + -0.027776654809713364, + 0.03310272842645645, + -0.009876299649477005, + -0.0004115124756935984, + -0.025539984926581383, + -0.03475227206945419, + -0.019151493906974792, + -0.025274379178881645, + 0.014118984341621399, + 0.01741807349026203, + -0.02839173935353756, + 0.026448631659150124, + -0.006496829446405172, + -0.007049007806926966, + 0.03992457315325737, + 0.00791921280324459, + 0.004074934404343367, + 0.03659752756357193, + 0.02713361196219921, + -3.037471003608516e-7, + -0.02183549851179123, + 0.00691271061077714, + 0.02274414524435997, + -0.0006688169669359922, + 0.006475860718637705, + 0.016383614391088486, + -0.01074300892651081, + 0.01793530397117138, + -0.01411199476569891, + -0.0006679432699456811, + 0.003907184116542339, + -0.03922561556100845, + 0.044118329882621765, + -0.022394666448235512, + 0.014181890524923801, + 0.008932704105973244, + -0.006025032140314579, + -0.004655071068555117, + -0.024337774142622948, + 0.012532345950603485, + -0.015391090884804726, + 0.0048263161443173885, + -0.00591669324785471, + -0.034221064299345016, + -0.0010737767443060875, + 0.008932704105973244, + -0.018885888159275055, + 0.04207736998796463, + 0.010715050622820854, + -0.004714482463896275, + -0.004745936021208763, + -0.017460010945796967, + 0.0056860363110899925, + -0.027021778747439384, + -0.02731534279882908, + 0.019389139488339424, + -0.021541936323046684, + 0.02259037457406521, + -0.023932376876473427, + 0.008646130561828613, + -0.023359229788184166, + 0.010924738831818104, + -0.033578019589185715, + -0.011469927616417408, + -0.01975259929895401, + 0.0021493008825927973, + 0.0023904419504106045, + -0.015293236821889877, + -0.00838052574545145, + -0.01891384646296501, + 0.0636892020702362, + -0.00553925521671772, + 0.010924738831818104, + -0.0005259671015664935, + -0.012224803678691387, + 0.02217100001871586, + 0.005948146339505911, + -0.010316643863916397, + -0.01067311316728592, + 0.007394992746412754, + -0.02074512094259262, + 0.046187251806259155, + 0.010847853496670723, + -0.006409459747374058, + -0.010694081895053387, + -0.008827860467135906, + 0.02846163511276245, + -0.0009112685802392662, + -0.05004550889134407, + 0.003690506797283888, + 0.009401006624102592, + -0.011693594045937061, + 0.006105412263423204, + -0.0029915471095591784, + 0.0035629465710371733, + 0.02074512094259262, + 0.002664783503860235, + -0.028098177164793015, + 0.00041347829392179847, + 0.00925422552973032, + -0.014636214822530746, + 0.002140563912689686, + -0.0030369795858860016, + -0.005322577431797981, + -0.057482440024614334, + -0.021555915474891663, + -0.010281695984303951, + 0.033242519944906235, + -0.01734817773103714, + -0.0040504708886146545, + -0.004012028221040964, + -0.0004901454085484147, + -0.00912841223180294, + 0.0010860085021704435, + 0.018382638692855835, + -0.0019466025987640023, + 0.02790246717631817, + 0.03777177631855011, + 0.002731184707954526, + 0.0103795500472188, + -0.0017605045577511191, + 0.008128900080919266, + 0.003928152844309807, + -0.003921163268387318, + -0.007129387930035591, + -0.002154543064534664, + 0.019389139488339424, + 0.00709793483838439, + 0.012986669316887856, + 0.059886861592531204, + -0.009582736529409885, + 0.02134622633457184, + -0.02242262475192547, + -0.005308598279953003, + 0.02647658996284008, + 0.004819326568394899, + -0.00485776923596859, + 0.02913263626396656, + 0.007318107411265373, + -0.019375160336494446, + 0.017963262274861336, + 0.010407508350908756, + 0.02997138909995556, + 0.005025519523769617, + 0.022268854081630707, + 0.0026123616844415665, + -0.0027154581621289253, + -0.0022978298366069794, + 0.0006963385385461152, + -0.01810305379331112, + 0.01144895888864994, + -0.02375064790248871, + -0.021038684993982315, + 0.011637677438557148, + 0.003033484797924757, + -8.294684812426567e-5, + 0.03743627667427063, + -0.02647658996284008, + -0.0065737152472138405, + -0.0055846874602139, + -0.007143367547541857, + 0.022925876080989838, + 0.013671650551259518, + -0.04012028127908707, + 0.04747333750128746, + 0.01477600634098053, + -0.01585240475833416, + 0.007269179914146662, + -0.015125486068427563, + -0.007807379122823477, + 0.015614758245646954, + 0.021038684993982315, + 0.011211312375962734, + 0.013196357525885105, + -0.016802988946437836, + 0.005937661975622177, + 0.01884395070374012, + 0.032990895211696625, + -0.0035891577135771513, + 0.014181890524923801, + 0.009946195408701897, + 0.005259671248495579, + -0.015097527764737606, + -0.01523731928318739, + 0.017278281971812248, + -0.0025686766020953655, + 0.028992844745516777, + -0.014000161550939083, + -0.012511377222836018, + -0.029496096074581146, + 0.0019448550883680582, + -0.004267148673534393, + -0.04143432527780533, + -0.0006731855100952089, + 0.019277306273579597, + -0.00539247365668416, + 0.008660109713673592, + 0.019277306273579597, + -0.021206434816122055, + 0.020647266879677773, + -0.003851267509162426, + -0.010344602167606354, + -0.017641739919781685, + -0.0007417708984576166, + -0.01709655299782753, + -0.008163847960531712, + 0.005700015928596258, + -0.004749430809170008, + -0.0069476584903895855, + 0.01650942675769329, + 0.010763978585600853, + -0.01701267808675766, + 0.008233744651079178, + -0.019808515906333923, + 0.002760890405625105, + -0.0039141736924648285, + -0.008366546593606472, + 0.006776413414627314, + -0.0067274863831698895, + 0.004490815568715334, + -0.007996098138391972, + -0.03908582031726837, + -0.03916969895362854, + -0.011197333224117756, + 0.00905152689665556, + 0.014510401524603367, + 0.00019396129937376827, + -0.02696586214005947, + -0.007087450474500656, + 0.012224803678691387, + 0.005549739580601454, + -0.003987564705312252, + 0.004585175309330225, + -0.01336410827934742, + -0.006447902414947748, + -0.00867408886551857, + -0.021849477663636208, + 0.01145594846457243, + 0.0055078016594052315, + 0.0047599151730537415, + 0.023792585358023643, + -0.014580297283828259, + -0.0040679448284208775, + -0.01808907464146614, + -0.022212937474250793, + 0.013685629703104496, + 0.016705134883522987, + 0.012567293830215931, + 0.00015136844012886286, + -0.02242262475192547, + -0.006538767367601395, + -0.011602729558944702, + 0.03511573001742363, + -0.02156989462673664, + -0.01066612359136343, + 0.003592652501538396, + 0.013832410797476768, + -0.02607119455933571, + -0.023219438269734383, + -0.01999024488031864, + -0.0071258931420743465, + -0.010833874344825745, + 0.0004189389292150736, + -0.012714075855910778, + 0.00040343074942938983, + 1.815656787584885e-6, + 0.030754223465919495, + -0.006849804427474737, + 0.021975290030241013, + -0.0070000807754695415, + -0.004385971464216709, + 0.0046900189481675625, + -0.006189287640154362, + -0.009848341345787048, + -0.0003223951207473874, + -0.009435954503715038, + 0.0022593869362026453, + -0.0043824766762554646, + -0.0054483902640640736, + -0.0015158687019720674, + -0.017446031793951988, + -0.00491368630900979, + 0.014650193974375725, + -0.010540311224758625, + -0.013720577582716942, + -0.00023131194757297635, + -0.026923924684524536, + -0.009366058744490147, + 0.009533809497952461, + -0.01916547305881977, + -0.0051338584162294865, + 0.00757672218605876, + -0.015992196276783943, + -0.002891945419833064, + 0.024114107713103294, + -0.0009374796063639224, + 0.00628714170306921, + 0.016299737617373466, + 0.030921973288059235, + -0.03218010067939758, + 0.023373208940029144, + -0.00757672218605876, + -0.010239758528769016, + 0.00633257394656539, + 0.0082197654992342, + 0.008716026321053505, + 0.013951233588159084, + 0.0033427744638174772, + -0.010106955654919147, + -0.0003180266357958317, + -0.03220805898308754, + 0.02797236479818821, + 0.0301391389220953, + -0.019962286576628685, + 0.02980363741517067, + -0.008443431928753853, + -0.00668205413967371, + 0.0029775679577142, + 0.00954079907387495, + -0.01460825651884079, + -0.00016436472651548684, + -0.008282671682536602, + 0.015628736466169357, + 0.01968270353972912, + -0.009366058744490147, + -0.007856305688619614, + -0.014845902100205421, + -0.010756989009678364, + 9.539706661598757e-5, + 0.0017447778955101967, + -0.010722040198743343, + -0.03721261024475098, + 9.840040729613975e-5, + 0.017222365364432335, + -0.006119391415268183, + 1.9084873201791197e-5, + -0.011651656590402126, + 0.0219193734228611, + 0.013923275284469128, + -0.01951495185494423, + 0.03120155818760395, + -0.0081708375364542, + 0.03975682333111763, + 0.0018330216407775879, + -0.010023080743849277, + -0.028741220012307167, + 0.003582168137654662, + 0.009149381890892982, + 0.03293497860431671, + 0.022730166092514992, + -0.0257217139005661, + -0.019067618995904922, + -0.02871326170861721, + 0.0004984455881640315, + 0.014328672550618649, + -0.029999347403645515, + 2.169232175219804e-5, + 0.04305591434240341, + 0.014049088582396507, + 0.009219277650117874, + -0.006217245943844318, + -0.018815992400050163, + 0.0012581272749230266, + -0.004763409961014986, + 0.008240734227001667, + 0.01029567513614893, + 0.0009855331154540181, + 0.006133370567113161, + 0.004697008524090052, + -0.005500812083482742, + 0.0033375322818756104, + -0.007241221610456705, + 0.007905233651399612, + -0.02126235142350197, + -0.006986101623624563, + 0.012133939191699028, + -0.0223387498408556, + -0.00933810044080019, + 0.029244471341371536, + -0.0034423761535435915, + -0.002084647072479129, + 0.009373048320412636, + -0.016872884705662727, + 0.006552746519446373, + -0.013301201164722443, + -0.00566856237128377, + -0.016048112884163857, + 0.006059980019927025, + -0.015223340131342411, + -0.022115081548690796, + -0.009820383042097092, + 0.017446031793951988, + 0.02249252051115036, + -0.007604680489748716, + -0.003770887153223157, + 0.011602729558944702, + -0.003868741448968649, + -0.018564367666840553, + 0.014056078158318996, + -0.009806403890252113, + -0.010477405041456223, + -0.004071439616382122, + -0.005462369415909052, + -0.012259751558303833, + 0.014580297283828259, + -0.003138328669592738, + -0.010037059895694256, + 0.014412547461688519, + 0.00021929858485236764, + -0.00027608906384557486, + -0.01990636996924877, + 0.008017066866159439, + -0.0034423761535435915, + 0.0062242355197668076, + -0.005825828295201063, + 0.00962467398494482, + 0.003248414723202586, + 0.0034650922752916813, + -0.014664173126220703, + 0.016495447605848312, + -0.014265765435993671, + 0.0033969436772167683, + -0.013727567158639431, + -0.003949122037738562, + -0.014887839555740356, + -0.014762027189135551, + 0.022967813536524773, + -0.003222203813493252, + -0.0028272916097193956, + 0.043279580771923065, + 0.0022296812385320663, + -0.005703510716557503, + -0.003970090765506029, + -0.022939855232834816, + -0.017655720934271812, + 0.009072495624423027, + -0.00576991168782115, + -0.012078022584319115, + 0.03696098551154137, + -0.0027905963361263275, + -0.0014957735547795892, + -0.014286735095083714, + 0.020227892324328423, + 0.0020951314363628626, + 0.02015799470245838, + 0.013972203247249126, + 0.005556729156523943, + 0.010099966078996658, + -0.009673601016402245, + 0.012707086279988289, + -0.006842814851552248, + 0.020060140639543533, + 0.012735044583678246, + 0.0028709766920655966, + -0.009456923231482506, + -0.00456420611590147, + 0.015796488150954247, + -0.008841839618980885, + 0.00485776923596859, + -0.008855818770825863, + -0.02366677299141884, + 0.05046488344669342, + -0.002023488050326705, + -0.017557865008711815, + 0.007443919777870178, + -0.005444895476102829, + -0.006514303851872683, + 0.031089723110198975, + 0.03508777171373367, + 0.0039840699173510075, + 0.01793530397117138, + -0.006339563988149166, + -0.012294699437916279, + -0.029328346252441406, + -0.0008461779798381031, + -0.0005067457095719874, + 0.007653607986867428, + -0.01827080361545086, + 0.007164336275309324, + 0.006835825275629759, + 0.007940181531012058, + -0.008450421504676342, + -0.011260239407420158, + 0.03975682333111763, + -0.033158645033836365, + 0.004235695116221905, + -0.04459362477064133, + -0.01827080361545086, + -0.0034423761535435915, + 0.011050551198422909, + -0.022548437118530273, + 0.020605329424142838, + -0.002960094017907977, + -0.0029181563295423985, + 0.0051163844764232635, + 0.0004174099594820291, + 0.025875484570860863, + 0.023694731295108795, + -0.004683029372245073, + 0.016886863857507706, + 0.010722040198743343, + 0.025861505419015884, + -0.006150844506919384, + 0.026923924684524536, + -0.019123535603284836, + 0.008373536169528961, + 0.01716644875705242, + 0.013119472190737724, + 0.008730005472898483, + -0.0013516132021322846, + -0.004144830629229546, + 0.018382638692855835, + -0.010058028623461723, + -0.01352486852556467, + -0.005948146339505911, + -0.018871909007430077, + -0.002890198025852442, + -0.002902429783716798, + -0.0008439937373623252, + -0.010162873193621635, + 0.01642555184662342, + 0.009366058744490147, + 0.01182639691978693, + -0.0021283321548253298, + -0.011365083046257496, + 0.02000422403216362, + 0.007024544291198254, + -0.01526527851819992, + 0.002306566806510091, + 0.022129060700535774, + -0.00763263925909996, + -0.011127437464892864, + -0.00982737261801958, + 0.030586473643779755, + 6.967753870412707e-5, + 0.007087450474500656, + -0.02008809894323349, + -0.0017133248038589954, + 0.008226755075156689, + -0.03682119399309158, + 0.01390929613262415, + 0.009645642712712288, + -0.015391090884804726, + -0.021765602752566338, + -0.021891415119171143, + -0.015447007492184639, + -0.007954160682857037, + -0.012714075855910778, + 0.002781859366223216, + -0.03220805898308754, + 0.014580297283828259, + -0.018158970400691032, + 0.014803964644670486, + -0.006108907051384449, + 0.03120155818760395, + -0.016034133732318878, + 0.021555915474891663, + -0.005182785447686911, + 0.0007312864763662219, + 0.0160201545804739, + -0.0008946683374233544, + 0.027119632810354233, + -0.017739595845341682, + 0.0234011672437191, + 0.01257428340613842, + -0.015544861555099487, + -0.01776755414903164, + -0.0008684573112986982, + 0.010463425889611244, + 0.00067405920708552, + 0.02207314409315586, + -0.011693594045937061, + 0.0027975859120488167, + 0.007118903566151857, + -0.03561898320913315, + -0.01523731928318739, + -0.015405070036649704, + 0.0014136458048596978, + 0.0023729680106043816, + -0.03408127278089523, + 0.009184329770505428, + 0.005221228580921888, + 0.028028281405568123, + 0.007674576714634895, + 0.023638814687728882, + -0.000266259943600744, + 0.007814368233084679, + -0.0023799575865268707, + 0.011267228983342648, + 0.011980167590081692, + 0.01286085695028305, + -0.009184329770505428, + -0.0005045614670962095, + -0.014356630854308605, + 0.004060955252498388, + 0.01869018003344536, + -6.55274634482339e-5, + 0.0013061808422207832, + 0.012476429343223572, + -0.028349801898002625, + 0.003777876729145646, + 0.0022191968746483326, + 0.015670673921704292, + 0.01381843164563179, + 0.015614758245646954, + -0.0006849804194644094, + -0.032487642019987106, + -0.004707492887973785, + 0.013392066583037376, + 0.016411572694778442, + 0.0167610514909029, + 0.006737970747053623, + 0.017278281971812248, + -0.023792585358023643, + -0.009477892890572548, + 0.01460825651884079, + 0.012832898646593094, + 0.006070464383810759, + -0.004791368264704943, + 0.02175162360072136, + 0.010344602167606354, + 0.007297138217836618, + -0.001126198680140078, + 0.005371504463255405, + 0.005556729156523943, + 0.0035507148131728172, + -0.004861264023929834, + -0.025414172559976578, + 0.0085902139544487, + 0.02440766990184784, + 0.014594276435673237, + -0.02200324833393097, + 0.013056566007435322, + -0.011288197711110115, + -0.0016748820198699832, + 0.005616140551865101, + -0.01456631813198328, + -0.00024507270427420735, + 0.011427990160882473, + 0.005801364779472351, + -0.016313716769218445, + -0.005378494504839182, + 0.020535433664917946, + -0.029328346252441406, + -0.0014739311300218105, + -0.01600617542862892, + -0.008513328619301319, + -0.005811849143356085, + -0.005095415748655796, + 0.06139661371707916, + 0.01058923825621605, + 0.01575455069541931, + 0.01859232597053051, + 0.0017674941336736083, + -0.0186622217297554, + -0.0010231022024527192, + 0.011777469888329506, + 0.009610694833099842, + -0.0035035351756960154, + -0.022967813536524773, + 0.0027154581621289253, + 0.011784459464251995, + 0.0010868821991607547, + -0.02930038794875145, + 0.011050551198422909, + 0.009037547744810581, + 0.0010790189262479544, + 0.0101209357380867, + 0.012336636893451214, + 0.01009297650307417, + 0.005217733792960644, + 0.014943757094442844, + -0.003169781994074583, + -0.01203608512878418, + 0.0074159614741802216, + -0.013182378374040127, + 0.00021591299446299672, + 0.0089606624096632, + 0.019039660692214966, + 0.008149868808686733, + -0.013203347101807594, + -0.0034423761535435915, + -0.022646291181445122, + 0.002540718298405409, + 0.002282103057950735, + 0.01067311316728592, + -0.002165027428418398, + -0.010463425889611244, + -0.0005513043724931777, + -0.01684492640197277, + -0.003316563321277499, + 0.013713588006794453, + 0.018480492755770683, + -0.029524054378271103, + 0.0020933840423822403, + -0.0020706679206341505, + 0.006748455110937357, + -0.022646291181445122, + 0.003746423637494445, + 0.007318107411265373, + -0.013986182399094105, + 0.018312742933630943, + 0.021709686145186424, + 0.015642715618014336, + 0.0015647958498448133, + 0.016621259972453117, + 0.021220413967967033, + 0.021793561056256294, + 0.004326560068875551, + -0.02955201268196106, + -0.007751462049782276, + 0.0026001296937465668, + -0.00510590011253953, + -0.023722689598798752, + 0.0022349234204739332, + -0.03301885351538658, + -0.01439856830984354, + 0.010393529199063778, + -0.020898893475532532, + -0.014887839555740356, + -0.004917181096971035, + 0.007583711761981249, + -0.025358255952596664, + -0.006800876930356026, + 0.022520478814840317, + 0.0033934488892555237, + 0.040455784648656845, + 0.023708710446953773, + 0.007506826426833868, + 0.0016346918419003487, + 0.0059551359154284, + -0.009407996200025082, + -0.0018819487886503339, + 0.0011043562553822994, + -0.00809395220130682, + 0.01926332712173462, + -0.0318446010351181, + 0.02017197385430336, + -0.014426526613533497, + -0.008135889656841755, + -0.0045362478122115135, + 0.01985045336186886, + 0.01600617542862892, + -0.009449933655560017, + -0.0022401656024158, + 0.00719928415492177, + 0.011351103894412518, + -0.0036590537056326866, + -0.010421487502753735, + 0.01600617542862892, + -0.006150844506919384, + -0.025861505419015884, + 0.012301689013838768, + -0.01021180022507906, + -0.002159785246476531, + 0.02232477068901062, + 0.004763409961014986, + 0.0011174617102369666, + -0.007814368233084679, + 0.004053965676575899, + -0.018298763781785965, + 0.008128900080919266, + 0.005651088431477547, + -0.012672137469053268, + 0.0011733784340322018, + 0.013322170823812485, + -0.009317131713032722, + -0.018144991248846054, + -0.014300714246928692, + -0.005409947596490383, + 0.010729029774665833, + 0.015321195125579834, + -0.029188552871346474, + 0.0037813715171068907, + -0.0031523078214377165, + -0.01469213142991066, + -0.012273730710148811, + 0.00026276512653566897, + 0.0010056281462311745, + 0.011127437464892864, + 0.0021195949520915747, + 0.031816642731428146, + 0.008310629986226559, + 0.013783483766019344, + 0.005864271428436041, + -0.01266514789313078, + 0.013266253285109997, + -0.008492358960211277, + -0.018815992400050163, + 0.009505851194262505, + 0.014929777942597866, + 0.010931728407740593, + 0.022772103548049927, + 0.020898893475532532, + 0.011511865071952343, + -0.006025032140314579, + -0.025106629356741905, + 0.0018347690347582102, + 0.012595252133905888, + 0.015405070036649704, + -0.01867620088160038, + 0.0025319813285022974, + 0.0018068106146529317, + -0.013783483766019344, + 0.01817294955253601, + -0.026001298800110817, + 0.006601673550903797, + -0.0211784765124321, + 0.0012520113959908485, + 0.008555266074836254, + -0.010365570895373821, + -0.011064530350267887, + 0.00829665083438158, + -0.008548276498913765, + 0.013972203247249126, + 0.004560711327940226, + 0.00971553847193718, + -0.0038198144175112247, + 0.010680102743208408, + 0.01934720203280449, + 0.02398829348385334, + 0.03293497860431671, + -0.03053055703639984, + 0.010938717983663082, + -0.029496096074581146, + 0.00991823710501194, + 0.0002922524872701615, + -0.012895804829895496, + 0.007049007806926966, + -0.02391839772462845, + -0.002331030322238803, + 0.010477405041456223, + -0.0023659782018512487, + -0.015251299366354942, + -0.01685890555381775, + -0.0022786082699894905, + -0.0008902997942641377, + 0.01257428340613842, + -0.02681209146976471, + -0.008681078441441059, + 0.032319892197847366, + 0.0070839556865394115, + -0.01758582331240177, + 0.011770480312407017, + 0.009107443504035473, + 0.025022754445672035, + 0.01575455069541931, + 0.02997138909995556, + -0.00044056298793293536, + 0.0017211880767717957, + 0.003606631653383374, + 0.02980363741517067, + -0.005015035159885883, + 0.0010388287482783198, + 0.00633257394656539, + -0.010631175711750984, + -0.017404094338417053, + -0.00800308771431446, + -0.004892717115581036, + -0.022282833233475685, + -0.008149868808686733, + 0.013252274133265018, + 0.001667892443947494, + -0.00686727836728096, + -3.7760200939374045e-5, + 0.012147918343544006, + 0.016802988946437836, + 0.0037324444856494665, + -0.005857281386852264, + -0.0016582816606387496, + -0.01534915342926979, + 0.009491872042417526, + -0.012126949615776539, + 0.0004792241961695254, + -0.003648569108918309, + -0.010365570895373821, + 0.007360044866800308, + 0.007828347384929657, + 0.0009837857214733958, + 0.0018155475845560431, + -0.01066612359136343, + -0.015544861555099487, + 0.007132882717996836, + 0.011665635742247105, + 0.026784133166074753, + 0.010407508350908756, + -0.01659330166876316, + 0.022632312029600143, + 0.010141904465854168, + -0.020717162638902664, + 0.0048018526285886765, + -0.010924738831818104, + -0.0058677662163972855, + -0.0029181563295423985, + -0.007269179914146662, + 0.01958484947681427, + 0.0015429533086717129, + 0.001513247611001134, + -2.4013084839680232e-5, + -0.021136539056897163, + 0.008226755075156689, + 0.016565343365073204, + -0.019473014399409294, + 0.003279868047684431, + -0.0025634344201534986, + -0.020647266879677773, + 0.00913540180772543, + 0.011155395768582821, + -0.012686117552220821, + 0.020647266879677773, + 0.008485369384288788, + -0.022045185789465904, + 0.002030477626249194, + -0.01456631813198328, + -0.003673032857477665, + -0.03824707120656967, + 0.007842326536774635, + -0.011882313527166843, + -0.00850633904337883, + 0.022143039852380753, + -0.013042586855590343, + 0.00038551990292035043, + 0.034556563943624496, + 0.024757150560617447, + 0.009603705257177353, + -0.008499348536133766, + -0.01973862014710903, + 0.008282671682536602, + 0.023359229788184166, + -0.007478868123143911, + 0.00719928415492177, + 0.004242684692144394, + -0.012231793254613876, + -0.01174252200871706, + -0.02713361196219921, + 0.02198926918208599, + 0.029440179467201233, + -0.002320545958355069, + 0.02862938679754734, + -0.00246033794246614, + 0.008513328619301319, + 0.011372072622179985, + 0.00043488392839208245, + 0.015405070036649704, + 0.011309166438877583, + -0.005364514887332916, + 0.003075422253459692, + 0.03285110369324684, + -0.02590344287455082, + -0.012126949615776539, + -0.0013690871419385076, + -0.012133939191699028, + -0.020465537905693054, + -0.01860630512237549, + 0.009282183833420277, + 0.03377372771501541, + 0.012839888222515583, + -0.011525844223797321, + 0.032403767108917236, + -0.005637109279632568, + 0.0018155475845560431, + -0.004840295296162367, + -0.013098503462970257, + 0.004036491736769676, + 0.00027587063959799707, + -0.010554290376603603, + 0.030502598732709885, + -0.00048621377209201455, + 0.0024131580721586943, + -0.007031533867120743, + 0.013406045734882355, + 0.02472919225692749, + -0.016397593542933464, + 0.016537385061383247, + -0.009946195408701897, + 0.014356630854308605, + -0.008017066866159439, + 0.0034668396692723036, + -0.021304288879036903, + 0.015992196276783943, + 0.0069057210348546505, + -0.029691804200410843, + 0.0027801119722425938, + 0.008268692530691624, + 0.008338588289916515, + -0.0013201599940657616, + -0.0008627782808616757, + -0.004211231600493193, + -0.01316140964627266, + -0.00021438402472995222, + -0.01901170238852501, + 0.006989596411585808, + -0.0051897750236094, + -0.011875323951244354, + 0.0012135686120018363, + 0.01144895888864994, + -0.017991220578551292, + 0.006301120854914188, + 0.007989108562469482, + -0.022296812385320663, + 0.014174900949001312, + 0.004438393749296665, + 0.017809491604566574, + -0.013063555583357811, + -0.015377111732959747, + -0.01095269713550806, + 0.015474965795874596, + -0.013748535886406898, + -0.011015603318810463, + -0.0039036895614117384, + -0.008953672833740711, + -0.0014905313728377223, + -0.007982118986546993, + 0.009498861618340015, + -0.02091287262737751, + -0.006919700186699629, + 0.016733093187212944, + -0.029943430796265602, + 0.004291612189263105, + 0.00312434951774776, + -0.007891254499554634, + -0.008639140985906124, + 0.007325096987187862, + -0.010736019350588322, + 0.012092001736164093, + -0.013629712164402008, + -0.0011925998842343688, + -0.04297203570604324, + 0.006150844506919384, + 0.015586799941956997, + 0.0038233092054724693, + 0.003680022433400154, + -0.006032021716237068, + -0.016159946098923683, + 0.014971715398132801, + 0.02790246717631817, + 0.025791609659790993, + 0.015321195125579834, + -0.003321805503219366, + -0.0021685222163796425, + -0.00866709928959608, + 0.008059004321694374, + 0.01523731928318739, + -0.031816642731428146, + 0.026350777596235275, + -0.020032182335853577, + 0.00040867296047508717, + -0.01793530397117138, + 0.009680590592324734, + 0.005161816719919443, + 0.004990571644157171, + 0.020060140639543533, + 0.005266660824418068, + 0.004882232751697302, + -0.00941498577594757, + -0.0021859961561858654, + 0.0005045614670962095, + 0.017138490453362465, + 0.005084931384772062, + 0.006315100006759167, + 0.01515344437211752, + -0.011679614894092083, + 0.00038071456947363913, + 0.007220252882689238, + -0.014468464069068432, + 0.003826803993433714, + 0.022855980321764946, + 0.0026735204737633467, + -0.0024708223063498735, + 0.009848341345787048, + -0.011344114318490028, + 0.0007426445954479277, + 0.005727974232286215, + 0.01992034912109375, + -0.028908969834446907, + 0.018144991248846054, + 0.005948146339505911, + -0.0028395233675837517, + 0.007325096987187862, + -0.007255200762301683, + 0.006423438899219036, + 0.0006819224799983203, + 0.0012624957598745823, + -0.029747720807790756, + -0.0018959279404953122, + 0.0019972771406173706, + -0.01625780016183853, + -0.008646130561828613, + 0.004448878113180399, + -0.02274414524435997, + -0.004176283720880747, + -0.009394017048180103, + 0.00838751532137394, + -0.011400031857192516, + -0.01759980246424675, + 0.008702047169208527, + 0.02563783898949623, + 0.000107301224488765, + -0.008918724954128265, + -0.013413035310804844, + 0.015474965795874596, + 0.0037638975773006678, + 0.016215862706303596, + -0.015558840706944466, + 0.0012100738240405917, + -0.02225487492978573, + -0.02440766990184784, + 0.014720089733600616, + -0.0446774996817112, + 0.012476429343223572, + -9.152002166956663e-5, + 0.0005473727360367775, + -0.01020481064915657, + -0.000244417431531474, + -0.010414497926831245, + 0.02963588759303093, + -0.008820869959890842, + -0.014594276435673237, + 0.006077453959733248, + -0.03030688874423504, + 0.03707281872630119, + 0.002540718298405409, + -0.002930388320237398, + 0.005343546159565449, + 0.026532506570219994, + -0.008107931353151798, + 0.011092489585280418, + 0.0073740240186452866, + -0.009205298498272896, + -0.013853379525244236, + 0.020297788083553314, + 0.002897187601774931, + -0.011518854647874832, + 0.01439856830984354, + -0.015447007492184639, + 0.007898244075477123, + 0.004476836416870356, + 0.014174900949001312, + 0.01162369828671217, + 0.017977241426706314, + 0.01170757319778204, + 0.001476552220992744, + 0.002449853578582406, + 0.023387188091874123, + 0.008869797922670841, + 0.024449607357382774, + 0.019053639844059944, + -0.004218221176415682, + 0.002884955843910575, + 0.009610694833099842, + 0.001955339452251792, + -0.009086474776268005, + -0.019403118640184402, + 0.0054064528085291386, + 4.057242040289566e-5, + -0.0024271372240036726, + 0.019445056095719337, + 0.02704973705112934, + 0.016481468454003334, + 0.005486832931637764, + -0.014762027189135551, + -0.002615856472402811, + 0.002953104441985488, + -0.004987076856195927, + 0.02846163511276245, + -0.0008426831918768585, + 0.006933679338544607, + 0.014650193974375725, + 0.01627177931368351, + -0.013937254436314106, + -0.023135563358664513, + -0.001150662312284112, + -0.01850845105946064, + 0.0011218301951885223, + 0.013336149975657463, + 0.005958630703389645, + -0.0043405392207205296, + -0.004081923980265856, + -0.0242399200797081, + -0.00984135176986456, + 0.033158645033836365, + 0.00658070482313633, + 0.0057139950804412365, + 0.013140440918505192, + 0.016551364213228226, + 0.019151493906974792, + -0.005707005504518747, + 0.03279518708586693, + -0.020381662994623184, + 0.02018595300614834, + -0.006206761579960585, + 0.0280422605574131, + 0.017571844160556793, + 0.005343546159565449, + -0.025875484570860863, + 0.020940830931067467, + 0.029076719656586647, + -0.005528770387172699, + 0.008632151409983635, + -0.010568269528448582, + 0.0015953753609210253, + 0.034808188676834106, + 0.013035597279667854, + 0.026210986077785492, + -0.005416937172412872, + 0.015628736466169357, + -0.0011707573430612683, + -0.014831922948360443, + 0.00414832541719079, + 0.0015883857849985361, + -0.008848829194903374, + -0.0006675064214505255, + -0.011358093470335007, + -0.004396455828100443, + 0.007947171106934547, + -0.010449446737766266, + -0.004833305720239878, + 0.006528283003717661, + -0.0013376339338719845, + 0.0018802013946697116, + 0.0042741382494568825, + 0.007028039079159498, + 0.026630360633134842, + -0.019794536754488945, + -0.004861264023929834, + -0.03226397559046745, + -0.003680022433400154, + 0.005920188035815954, + -0.002091636648401618, + -0.001697598141618073, + -0.016453510150313377, + 0.004151820205152035, + 0.0034546079114079475, + -0.004057460464537144, + 4.210139741189778e-5, + -0.0005770785501226783, + 0.00924723595380783, + 0.016327695921063423, + -0.017068594694137573, + 0.01950097270309925, + -0.004455867689102888, + -0.012476429343223572, + -0.015530882403254509, + 0.014943757094442844, + 0.011630687862634659, + -0.0021458060946315527, + -0.004431404173374176, + -0.011980167590081692, + -0.022646291181445122, + -0.030167097225785255, + 0.004948634188622236, + 0.0013752030208706856, + -0.0039141736924648285, + -0.006916205398738384, + 0.005263166036456823, + -0.006119391415268183, + 0.009820383042097092, + -0.015447007492184639, + 0.0032588993199169636, + 0.015027632005512714, + -0.025092650204896927, + 0.0026228460483253, + -0.007157346699386835, + 0.022702207788825035, + 0.008639140985906124, + 0.008352567441761494, + -0.008730005472898483, + 0.03995253145694733, + 0.0341651476919651, + -0.010470415465533733, + 0.016872884705662727, + -0.00510590011253953, + 0.005343546159565449, + -0.007989108562469482, + -0.004330054856836796, + 0.0005897471564821899, + 0.005235207732766867, + 0.020381662994623184, + -0.01390230655670166, + 0.012749023735523224, + -0.0022681239061057568, + -0.007360044866800308, + -0.03760402649641037, + -0.0015831434866413474, + -0.006364027503877878, + -0.025106629356741905, + -0.008541286922991276, + -0.008163847960531712, + -0.009799414314329624, + -0.018368659541010857, + -0.007968139834702015, + -0.005556729156523943, + 0.023932376876473427, + 0.00458867009729147, + -0.016635239124298096, + -0.014664173126220703, + 0.00019210467871744186, + 0.00614036014303565, + -0.005734963808208704, + -0.004071439616382122, + 0.0179213248193264, + -0.01610402949154377, + 0.01975259929895401, + -0.00809395220130682, + -0.008932704105973244, + -0.0007553132600151002, + -0.021891415119171143, + 0.03201235085725784, + -0.005556729156523943, + -0.022604353725910187, + -0.01983647421002388, + 0.0013280232669785619, + 0.01419586967676878, + -0.005308598279953003, + -0.0048437900841236115, + -0.006758939474821091, + 0.006374511867761612, + -0.020451558753848076, + -0.00030797909130342305, + -0.0019535920582711697, + -0.00290417717769742, + -0.001402287743985653, + 0.0010781452292576432, + 0.010023080743849277, + 0.005340051371604204, + 0.006832330487668514, + -0.010882801376283169, + 0.0368771106004715, + -0.009484882466495037, + 0.007262190338224173, + -0.007139872293919325, + 0.010833874344825745, + 0.014552338980138302, + -1.0552652383921668e-5, + 0.005612645763903856, + 0.005672057159245014, + -0.004337044432759285, + 0.004029502160847187, + 0.017292261123657227, + -0.010512352921068668, + -0.0047599151730537415, + -0.01759980246424675, + -0.005591677036136389, + -0.003907184116542339, + -0.002350251656025648, + 0.001796326250769198, + -0.002713710768148303, + 0.004302096553146839, + -0.02341514639556408, + -0.010770968161523342, + -0.001637312932871282, + 0.013175388798117638, + -0.002018245868384838, + -0.016984717920422554, + -0.007541774306446314, + 0.007604680489748716, + -0.00543790590018034, + 0.009142391383647919, + -0.008031046018004417, + 0.010407508350908756, + -0.019794536754488945, + -0.002608866896480322, + 0.012448471039533615, + 0.009575746953487396, + -0.04213328659534454, + -0.025526005774736404, + 0.001175125828012824, + -0.0056860363110899925, + -0.0031226021237671375, + 0.0009706801502034068, + 0.0018260320648550987, + -0.006717002019286156, + 0.018983744084835052, + -0.005717489868402481, + -0.025092650204896927, + 0.0035035351756960154, + -0.0030317374039441347, + -0.008443431928753853, + 0.004312580917030573, + 0.04182574525475502, + -0.0004067071422468871, + -0.00941498577594757, + 0.022212937474250793, + -0.010770968161523342, + -0.004113377537578344, + 0.0035524622071534395, + 0.012385564856231213, + 0.012972690165042877, + 0.013517878949642181, + -0.017208386212587357, + -0.021458059549331665, + 0.005193269811570644, + -0.00014590781938750297, + 0.020353704690933228, + -0.009876299649477005, + -0.01335711870342493, + 0.011434979736804962, + 0.006273162551224232, + 0.025777630507946014, + -0.012015115469694138, + -0.015978217124938965, + 0.014803964644670486, + -0.0004503921081777662, + 0.003680022433400154, + -0.007035028655081987, + -0.006647105794399977, + -0.01766970008611679, + 0.003216961631551385, + -0.012378575280308723, + 0.004123861901462078, + 0.010302664712071419, + -0.01477600634098053, + -0.007996098138391972, + 0.0019168967846781015, + 0.014244796708226204, + 0.0056196353398263454, + -0.0130705451592803, + 0.00686727836728096, + 0.0025756661780178547, + -0.019067618995904922, + -0.005525275599211454, + -0.01162369828671217, + -0.025022754445672035, + 0.02018595300614834, + -0.031984392553567886, + -0.031816642731428146, + -0.0038058350328356028, + 0.00838751532137394, + -0.00749284727498889, + 0.016397593542933464, + -0.020689204335212708, + 0.00028701030532829463, + -0.0009933963883668184, + -0.020353704690933228, + 0.017124511301517487, + 0.006447902414947748, + 0.016789009794592857, + 0.023107605054974556, + 0.023429125547409058, + 0.014678152278065681, + -0.0029775679577142, + -0.012721065431833267, + 0.016048112884163857, + 0.017460010945796967, + -0.009575746953487396, + 0.0006876015104353428, + -0.026658320799469948, + -0.0052002593874931335, + 0.010638165287673473, + -0.014384589157998562, + 0.003223951207473874, + 0.01758582331240177, + -0.017473990097641945, + -0.01990636996924877, + 0.00025424655177630484, + -0.003617116017267108, + -0.005609150975942612, + 0.00830364041030407, + 0.021052664145827293, + 0.0015551851829513907, + 0.010889790952205658, + 0.002152795670554042, + 0.007132882717996836, + 0.015097527764737606, + 0.008045025169849396, + -0.005741953384131193, + -0.00829665083438158, + 0.006891741883009672, + -0.0011978420661762357, + -0.012252761982381344, + 0.011756501160562038, + -0.0022349234204739332, + -0.03313068673014641, + -0.03612223267555237, + -0.0027591430116444826, + -0.005591677036136389, + 0.010889790952205658, + -0.004693513736128807, + -0.04221716150641441, + -0.00668205413967371, + 0.008031046018004417, + -0.009498861618340015, + 0.00695115327835083, + 0.02630884014070034, + -0.014720089733600616, + 0.0026315830182284117, + -0.004106387961655855, + 0.040875159204006195, + -0.02032574638724327, + -0.01050536334514618, + -0.014153932221233845, + -0.001796326250769198, + 0.005741953384131193, + 0.0029443674720823765, + -0.004197252448648214, + 0.024435628205537796, + -0.01708257384598255, + -0.0025337287224829197, + 0.006115896627306938, + 0.0127000967040658, + 0.007304128259420395, + 0.005899219308048487, + -0.007311117835342884, + 0.010896780528128147, + -0.0010615448700264096, + -0.009016579017043114, + -0.013126461766660213, + 0.0006941542960703373, + -0.011407021433115005, + 0.013322170823812485, + 0.023946356028318405, + 0.0007103176903910935, + -0.005444895476102829, + 0.006329079158604145, + -0.010435467585921288, + -0.01801917888224125, + -0.006898731458932161, + -0.0014267513761296868, + -0.010246748104691505, + -0.008785922080278397, + 0.0017998210387304425, + 0.006944163702428341, + 0.00532956700772047, + -0.013413035310804844, + 0.006007557734847069, + -0.020479517057538033, + 0.0014844154939055443, + 0.005997073370963335, + -0.008450421504676342, + 0.0006631379364989698, + 0.008338588289916515, + -0.008925714530050755, + 0.009736507199704647, + -0.01029567513614893, + 0.015614758245646954, + 0.024715213105082512, + 0.021388163790106773, + -0.027119632810354233, + 0.03170480951666832, + 0.010051039047539234, + -0.011903282254934311, + -0.004878737963736057, + 0.003998049069195986, + -0.030167097225785255, + 0.020633287727832794, + 0.008394504897296429, + -0.0022855978459119797, + -0.014167911373078823, + 0.00875097420066595, + -0.007038523443043232, + -0.010652144439518452, + 0.001630323356948793, + 0.027427176013588905, + -0.008562255650758743, + 0.007786410395056009, + -0.04126657545566559, + -0.000442965654656291, + -0.02555396407842636, + 0.019305264577269554, + -0.03094993159174919, + -0.017865408211946487, + 0.03701690211892128, + -0.0006959016900509596, + 0.008848829194903374, + -0.004005038645118475, + -0.021639790385961533, + 0.0009383533033542335, + 0.0188579298555851, + -0.010169862769544125, + -0.00010828413360286504, + -0.0015857646940276027, + 0.018899867311120033, + 0.019151493906974792, + 0.008079973049461842, + 0.004714482463896275, + -0.014678152278065681, + 0.0025232441257685423, + 0.013636701740324497, + -0.009449933655560017, + 0.010708061046898365, + 0.007304128259420395, + 0.011875323951244354, + -0.019612807780504227, + -0.018075095489621162, + -0.020311767235398293, + -0.0016032386338338256, + -0.0012074527330696583, + -0.0035087773576378822, + 0.012818919494748116, + 0.008716026321053505, + -0.01402113027870655, + 0.009687580168247223, + -0.020227892324328423, + -0.005081436596810818, + -0.012686117552220821, + -0.007073471322655678, + -0.009932216256856918, + -0.018117032945156097, + -0.020199932157993317, + -0.016872884705662727, + 0.008639140985906124, + -0.022925876080989838, + 0.006730981171131134, + 0.009778444655239582, + 0.011791449040174484, + -0.025204483419656754, + -0.00809395220130682, + -0.015978217124938965, + 0.0029111667536199093, + 0.00016360024164896458, + 0.0026350778061896563, + 0.025679776445031166, + -0.0059097036719322205, + 0.006542262155562639, + -0.005707005504518747, + -0.02291189692914486, + -0.028237968683242798, + -0.008604193106293678, + 0.0064618815667927265, + 0.020563391968607903, + 0.027692779898643494, + -0.013000649400055408, + 0.00771651417016983, + 0.028419697657227516, + 0.012972690165042877, + -0.04174187034368515, + -0.019109556451439857, + -0.016705134883522987, + 0.011868334375321865, + -0.01776755414903164, + 0.012567293830215931, + 0.014510401524603367, + -0.014845902100205421, + 0.007807379122823477, + -0.0015543114859610796, + -0.016551364213228226, + 0.008841839618980885, + 0.006591189187020063, + -0.0023153037764132023, + -0.01286085695028305, + -0.022352728992700577, + -0.017306240275502205, + 0.0026438147760927677, + -0.02721748687326908, + -0.01012792531400919, + 0.01825682446360588, + -0.004952128976583481, + -0.01882997155189514, + -0.012469439767301083, + 0.01627177931368351, + 0.016495447605848312, + -0.0034598500933498144, + 0.0066156527027487755, + 0.009561767801642418, + -0.010400518774986267, + 0.024771129712462425, + 0.008632151409983635, + -0.03377372771501541, + 0.0009016579133458436, + 0.010701071470975876, + 0.00495911855250597, + 0.01353185810148716, + 0.012182866223156452, + -0.020647266879677773, + -0.006832330487668514, + 0.02133224718272686, + 0.015460986644029617, + -0.010030070319771767, + -0.007814368233084679, + -0.010106955654919147, + 0.029356304556131363, + 0.002708468586206436, + -0.017194407060742378, + -0.006482850294560194, + 0.028657345101237297, + -0.004078429192304611, + -0.009072495624423027, + -0.023792585358023643, + 0.012769992463290691, + -0.005633614491671324, + -0.0030928964260965586, + 0.01240653358399868, + -0.022534457966685295, + -0.0012109475210309029, + 0.0164395309984684, + 0.02173764444887638, + -0.007506826426833868, + 0.006454891990870237, + -0.00801007729023695, + 0.017292261123657227, + 0.0007706029573455453, + 0.004260159097611904, + -0.004529258236289024, + -0.017627760767936707, + -0.005930672399699688, + -0.00018304004333913326, + -0.006577210035175085, + 0.004137841053307056, + 0.0062836469151079655, + -0.0219193734228611, + 0.014496422372758389, + -0.007688555866479874, + -0.014014140702784061, + 0.005347040947526693, + 0.02946813777089119, + -0.010176852345466614, + 0.0028325337916612625, + 0.007842326536774635, + 0.017236344516277313, + 0.0183407012373209, + 0.0007911348948255181, + 0.005734963808208704, + -0.022059164941310883, + -0.0014302461640909314, + 4.600574175128713e-5, + 0.008135889656841755, + 0.004599154461175203, + -0.007968139834702015, + 0.02124837227165699, + 0.014007151126861572, + 0.03220805898308754, + 0.019291285425424576, + -0.002850007964298129, + 0.0005006298306398094, + -0.003250162350013852, + 0.00757672218605876, + -0.0014739311300218105, + -0.0061718132346868515, + -0.017655720934271812, + 0.013056566007435322, + -0.01841059699654579, + -0.005333061795681715, + -0.0021335743367671967, + 0.0164395309984684, + -0.024128086864948273, + 0.006479355506598949, + -0.005402958020567894, + -0.005574203096330166, + -0.013119472190737724, + 0.03634589910507202, + 0.008191807195544243, + -0.0011436727363616228, + 0.009317131713032722, + -0.0033794697374105453, + -0.004235695116221905, + 0.0076815662905573845, + 0.010281695984303951, + 0.016076071187853813, + -0.0037254546768963337, + -0.022031206637620926, + 0.00734606571495533, + 0.001316665206104517, + -0.011316156014800072, + 0.0020531939808279276, + 0.0017814732855185866, + 0.006217245943844318, + 0.0008243354968726635, + -0.012224803678691387, + -0.010183841921389103, + -0.0012878330890089273, + -0.0028395233675837517, + -0.015502924099564552, + -0.02200324833393097, + -0.005193269811570644, + 0.01916547305881977, + -0.01741807349026203, + -0.01650942675769329, + 0.02165376953780651, + 0.03673731908202171, + -0.015363132581114769, + 0.008184817619621754, + -0.009582736529409885, + -0.02333127148449421, + 0.01916547305881977, + -0.004676039796322584, + 0.0002861366083379835, + 0.005151332356035709, + -0.0004818452871404588, + 0.021290309727191925, + -0.0055776978842914104, + 0.0020898892544209957, + 0.014803964644670486, + -0.0051897750236094, + -0.009953184984624386, + -0.004808842204511166, + -0.006524788215756416, + -0.01990636996924877, + 0.004518773872405291, + -0.019459035247564316, + -0.001943107694387436, + -0.01174252200871706, + -0.0038722362369298935, + 0.024435628205537796, + 0.0022873454727232456, + -0.013685629703104496, + 0.00345635530538857, + 0.017641739919781685, + 0.009401006624102592, + 0.002621098654344678, + -0.011400031857192516, + -0.014496422372758389, + 0.0051757958717644215, + -0.030977889895439148, + 0.004012028221040964, + 0.022702207788825035, + 0.013748535886406898, + 0.009373048320412636, + 0.015824446454644203, + -0.003959606401622295, + -0.004113377537578344, + -0.018312742933630943, + -0.022017227485775948, + 0.0022593869362026453, + -0.0055846874602139, + 0.0065737152472138405, + -0.03355006128549576, + -0.0039421324618160725, + -0.0036870120093226433, + -0.012238782830536366, + -0.0033759749494493008, + -0.04543237388134003, + -0.010826884768903255, + 0.02207314409315586, + 0.013510889373719692, + 0.023345250636339188, + 0.0018347690347582102, + -0.010847853496670723, + 0.004763409961014986, + 0.0037079807370901108, + -0.011211312375962734, + 0.0015726591227576137, + -0.011393041349947453, + -0.025526005774736404, + -0.006479355506598949, + 0.008709036745131016, + 0.0010798926232382655, + -0.009477892890572548, + 0.013860369101166725, + 0.030250972136855125, + 0.009750486351549625, + -0.011302176862955093, + -0.006675064563751221, + -0.01336410827934742, + -0.004434898961335421, + 0.0018539903685450554, + 0.00896765198558569, + -0.018158970400691032, + -0.004829810932278633, + 0.0037638975773006678, + 0.011945219710469246, + -0.013182378374040127, + 0.031984392553567886, + -0.01107851043343544, + -0.010351591743528843, + -0.009198308922350407, + 0.0081708375364542, + 0.026280881837010384, + 0.02067522518336773, + 0.02980363741517067, + -0.007877275347709656, + 0.019724640995264053, + -0.015167423523962498, + 0.011588750407099724, + -0.002960094017907977, + 0.01751592755317688, + 0.00039840699173510075, + 0.00809395220130682, + 0.005385484080761671, + 0.0010694082593545318, + 0.013916285708546638, + 0.00030382900149561465, + -0.00867408886551857, + -0.030083222314715385, + 0.009792424738407135, + -0.020801037549972534, + 0.004952128976583481, + -0.019375160336494446, + 0.025875484570860863, + 0.010239758528769016, + -0.0012476429110392928, + -0.0055322651751339436, + -0.016551364213228226, + -0.002250649966299534, + 0.009512840770184994, + 0.002526738913729787, + 1.4170313988870475e-5, + 0.004805347416549921, + -0.004099398385733366, + -0.01901170238852501, + -0.015181402675807476, + 0.006818350870162249, + -0.005790880415588617, + 0.01650942675769329, + -0.014929777942597866, + -0.02481306716799736, + -0.00734606571495533, + -0.03424902260303497, + -0.015782508999109268, + -0.021052664145827293, + 0.026937903836369514, + -0.009016579017043114, + -0.0023519990500062704, + -0.009799414314329624, + 0.002084647072479129, + -0.0104913841933012, + -0.014139953069388866, + -0.014370610006153584, + 0.02689596638083458, + -0.005029014311730862, + 0.012476429343223572, + -0.03570285812020302, + 0.016215862706303596, + 0.022045185789465904, + -0.00912841223180294, + -0.016313716769218445, + 0.011973178014159203, + -0.00456420611590147, + 0.008541286922991276, + 0.023429125547409058, + -0.016131987795233727, + -0.004763409961014986, + 0.011840376071631908, + -0.006444407626986504, + 0.008079973049461842, + -0.02049349620938301, + -0.010847853496670723, + -0.006052990444004536, + -0.011889303103089333, + 0.0017893366748467088, + 0.010344602167606354, + 0.008499348536133766, + -0.020898893475532532, + -0.003199487691745162, + 0.02017197385430336, + 0.02795838564634323, + 0.0524778887629509, + 0.03441677242517471, + 0.004438393749296665, + 0.002109110588207841, + 0.0377158597111702, + -0.031481143087148666, + 0.021681727841496468, + 0.01257428340613842, + -0.029496096074581146, + -0.017320219427347183, + -0.01835468038916588, + 0.00074439198942855, + 0.03942132368683815, + 0.009317131713032722, + -0.01958484947681427, + -0.0043580131605267525, + -0.012756013311445713, + -0.005238702520728111, + 0.006440912839025259, + -0.004053965676575899, + -0.0020898892544209957, + 0.00934509001672268, + -0.01867620088160038, + 0.014174900949001312, + 0.013580785132944584, + -0.006175308022648096, + 0.0005508675239980221, + -0.01867620088160038, + -0.014356630854308605, + -0.002680510049685836, + 0.029412221163511276, + -0.004599154461175203, + -0.00792620237916708, + -0.006608663126826286, + -0.002596634905785322, + 0.009645642712712288, + -0.0015307215508073568, + 0.015866383910179138, + -0.008059004321694374, + -0.009072495624423027, + 0.007814368233084679, + -0.02225487492978573, + 0.00808696262538433, + -0.020269829779863358, + -0.008184817619621754, + -0.014454484917223454, + 0.013503899797797203, + -0.029272429645061493, + 0.026099152863025665, + -0.01874609664082527, + 0.005413442384451628, + -0.01050536334514618, + -0.0186622217297554, + -0.01266514789313078, + 0.015488944947719574, + 0.015488944947719574, + 0.03176072612404823, + -0.00628714170306921, + -0.01993432827293873, + -0.02581956796348095, + -0.0009610694833099842, + 0.011469927616417408, + 0.008695057593286037, + 0.0017054615309461951, + -0.02415604516863823, + 0.02208712324500084, + -0.0012633694568648934, + -0.013755525462329388, + -0.0032082246616482735, + -0.01685890555381775, + 0.012133939191699028, + -0.01087581180036068, + -0.011148406192660332, + -0.01899772323668003, + -0.015097527764737606, + -0.00763263925909996, + -0.029412221163511276, + 0.0027224477380514145, + -0.009373048320412636, + 0.02299577184021473, + -0.0031645395793020725, + -0.0004988824366591871, + 0.0037324444856494665, + 0.0044523729011416435, + -0.02084297500550747, + 0.005836312659084797, + -0.014971715398132801, + -0.009065506048500538, + -0.010421487502753735, + -0.006884752307087183, + -0.018885888159275055, + -0.0018155475845560431, + -0.003956111613661051, + 0.021388163790106773, + 0.0005740206106565893, + -0.020619308575987816, + -0.012448471039533615, + -0.0043999506160616875, + -0.0021265847608447075, + -0.0053540305234491825, + -0.00317502417601645, + 0.0018172949785366654, + 0.013259263709187508, + 0.02555396407842636, + 0.00046742925769649446, + -0.030083222314715385, + -0.0024900436401367188, + 0.010477405041456223, + 0.006643611006438732, + 0.03807932138442993, + -0.024868983775377274, + -0.005542750004678965, + 0.02126235142350197, + 0.00912841223180294, + -0.029831595718860626, + 0.018466513603925705, + 0.005172301083803177, + 0.017963262274861336, + -0.00999512244015932, + 0.012686117552220821, + -0.010910759679973125, + -0.0003298215742688626, + 0.03069830685853958, + 0.005874755792319775, + 0.005172301083803177, + -0.0028447655495256186, + 0.007821357809007168, + 0.01843855530023575, + -0.003400438465178013, + 0.0018504955805838108, + 0.01610402949154377, + 0.0071538519114255905, + -0.005368009675294161, + 0.02314954251050949, + -0.005224723368883133, + -0.008520318195223808, + 0.012986669316887856, + -0.01733419857919216, + -0.00467254500836134, + -0.005095415748655796, + -0.013378087431192398, + 0.0005556729156523943, + 0.017977241426706314, + 0.007758451625704765, + 0.005518286023288965, + -0.004529258236289024, + -0.011987157166004181, + 0.004602649249136448, + 0.01020481064915657, + 0.011022592894732952, + -0.007118903566151857, + -0.009575746953487396, + 0.009491872042417526, + 0.0011235775891691446, + -0.001008249237202108, + 0.019962286576628685, + 0.017194407060742378, + 0.014915797859430313, + -0.014202859252691269, + 0.001402287743985653, + -0.001273853937163949, + 0.016537385061383247, + 0.014524380676448345, + 0.02156989462673664, + 0.0020811522845178843, + -0.009771455079317093, + 0.010442457161843777, + 0.00021733275207225233, + -0.012672137469053268, + -0.005483338143676519, + 0.0011952209752053022, + -0.0018068106146529317, + -0.013021618127822876, + -0.016076071187853813, + 0.005605656187981367, + 0.006210256367921829, + -0.018466513603925705, + -0.01677503064274788, + -0.01852243021130562, + -0.004158809781074524, + 0.0032886050175875425, + 0.020870935171842575, + 0.026937903836369514, + -0.0075277951546013355, + 0.0119102718308568, + -0.001674008322879672, + -0.00552178081125021, + 0.005857281386852264, + 0.0003280741802882403, + 0.004389466252177954, + 0.0036380847450345755, + 0.011714562773704529, + -0.00838052574545145, + 0.008191807195544243, + 0.002848260337486863, + -0.0003405243915040046, + 0.002776617184281349, + -0.0015027631307020783, + -0.007318107411265373, + 0.005965620279312134, + -0.006143854930996895, + -0.03192847594618797, + -0.004406940191984177, + -0.015642715618014336 + ], + "b1ee9aa0-c711-4ca7-89af-d49425266d7b": [ + -0.022012803703546524, + -0.01363868173211813, + -0.015157305635511875, + -0.005622521508485079, + -0.05307949334383011, + 0.009263601154088974, + 0.003689892590045929, + 0.04260822758078575, + 0.012785360217094421, + 0.060513515025377274, + 0.0002535558305680752, + 0.006761488504707813, + 0.0007624753634445369, + 0.014390761964023113, + -0.003510911948978901, + 0.0060744923539459705, + -0.036880847066640854, + 0.02627941220998764, + -0.029461288824677467, + 0.0009043943136930466, + 0.06114989146590233, + -0.019438376650214195, + -0.007961924187839031, + 0.042203258723020554, + -0.016285425052046776, + -0.010109690949320793, + 0.025021124631166458, + -0.013465125113725662, + -0.009480547159910202, + 0.0045884111896157265, + -0.0015484532341361046, + 0.02027723379433155, + 0.05730271339416504, + -0.033525414764881134, + 0.014426919631659985, + -0.0040062726475298405, + -0.0045884111896157265, + 0.028419947251677513, + -0.02568642608821392, + 0.022996293380856514, + -0.02943236194550991, + 0.020508643239736557, + 0.022215286269783974, + 0.013862859457731247, + -0.02824638970196247, + 0.022273140028119087, + 0.04411238804459572, + 0.0003444020403549075, + 0.00847536325454712, + 0.006439685355871916, + 0.006432453636080027, + 0.03314937278628349, + 0.0011389673454687, + -0.004921061918139458, + 0.010840076953172684, + 0.007412326987832785, + -0.017934216186404228, + 0.06895995140075684, + 0.014636634849011898, + -0.025614110752940178, + -0.011122106574475765, + -0.009805966168642044, + 0.01136074773967266, + -0.004248529206961393, + 0.01901894621551037, + -0.013877322897315025, + -0.0012438246048986912, + -0.010558046400547028, + -0.023502500727772713, + 0.002115225186571479, + 0.004870441276580095, + -0.0002795441832859069, + -0.027913739904761314, + 0.014882506802678108, + -0.0037784790620207787, + -0.017977604642510414, + 0.04717855900526047, + -0.040409836918115616, + 0.007148376200348139, + 0.01810777373611927, + -0.039426349103450775, + 0.015591197647154331, + 0.01997351087629795, + 0.013609755784273148, + 0.035203129053115845, + 0.015735827386379242, + -0.026019075885415077, + -0.0555092915892601, + -0.02648189477622509, + -0.02235991694033146, + 0.02000243589282036, + 0.015403177589178085, + 0.004324459936469793, + 0.003265039762482047, + -0.009856587275862694, + -0.009039423428475857, + 0.031731992959976196, + -0.0004745697369799018, + -0.0466868132352829, + -0.010492962785065174, + -0.03928171843290329, + 0.027942664921283722, + -0.02176693081855774, + 0.003006512299180031, + 0.04023628309369087, + -0.008721236139535904, + 0.01426782552152872, + -0.027537699788808823, + -0.024572769179940224, + 0.028188537806272507, + 0.008294574916362762, + -0.022171897813677788, + -0.01368930283933878, + 0.012011585757136345, + 0.020335087552666664, + -0.08747269213199615, + -0.017702806740999222, + -0.031124543398618698, + -0.02727736346423626, + -0.054381173104047775, + 0.045327283442020416, + 0.0452694334089756, + 0.016574686393141747, + -0.024731863290071487, + -0.001129023963585496, + -0.0020302545744925737, + -0.011252273805439472, + -0.0008302710484713316, + -0.003373512765392661, + 0.0020881067030131817, + 0.012235763482749462, + -0.04943479970097542, + -0.016285425052046776, + -0.005821388680487871, + -0.010138616897165775, + 0.021926024928689003, + 0.014014721848070621, + 0.035868432372808456, + -0.04171151667833328, + 0.053397681564092636, + -0.014260594733059406, + -0.03806681931018829, + -0.0030137437861412764, + -0.03702547773718834, + 0.004349770490080118, + -0.004613721743226051, + -0.021622300148010254, + 0.06566236913204193, + 0.003603114280849695, + 0.02875259891152382, + -0.04437272250652313, + -0.003042669966816902, + 0.018266865983605385, + -0.006851883139461279, + 0.004913830664008856, + -0.0020429096184670925, + 0.013566366396844387, + 0.015041600912809372, + -0.016574686393141747, + -0.00720622856169939, + -0.024081023409962654, + -0.03259977698326111, + 0.04535621032118797, + 0.006775951944291592, + 0.022475622594356537, + 0.011006401851773262, + 0.035405613481998444, + 0.04309996962547302, + -0.03905031085014343, + 0.015923848375678062, + 0.04610829055309296, + -0.030372463166713715, + 0.013219253160059452, + 0.005463427398353815, + 0.00551043264567852, + -0.032831184566020966, + -0.01000121794641018, + -0.0015014482196420431, + 0.034711387008428574, + -0.042868562042713165, + -0.003387975972145796, + -0.016270961612462997, + -0.03763292729854584, + 0.012958917766809464, + -0.014108732342720032, + 0.0181222353130579, + 0.01968424767255783, + 0.0020338702015578747, + 0.0021224566735327244, + 0.029316658154129982, + 5.586080987995956e-6, + 0.004483554046601057, + 0.03621554747223854, + 0.05111251398921013, + -0.017167672514915466, + -0.00940100010484457, + -0.022273140028119087, + -0.01781851053237915, + 0.017847437411546707, + 0.032628703862428665, + -0.008316269144415855, + -0.05568284913897514, + -0.05776553228497505, + 0.018136698752641678, + -0.03708333149552345, + 0.0019000867614522576, + -0.020638812333345413, + -0.0054598115384578705, + 0.016878411173820496, + -0.035781655460596085, + 0.023256627842783928, + -0.027508772909641266, + 0.02658313699066639, + 0.011064254678785801, + -0.019510691985487938, + -0.0031384876929223537, + -0.014361836016178131, + 0.013580829836428165, + 0.015996163710951805, + 0.004740273579955101, + -0.013609755784273148, + -0.001570147811435163, + 0.03121132031083107, + -0.03002534806728363, + -0.028607966378331184, + -0.02817407436668873, + -0.02431243285536766, + 0.03277333453297615, + -0.041393328458070755, + -0.01654576137661934, + 0.04633970186114311, + -0.01426782552152872, + -0.007246001623570919, + -0.06398465484380722, + 0.0021333040203899145, + -0.004447396378964186, + 0.008207796141505241, + -0.006841035559773445, + 0.029070785269141197, + -0.024471526965498924, + 0.04900090768933296, + 0.009986755438148975, + -0.008873097598552704, + 0.011794639751315117, + 0.03375682234764099, + 0.03161628916859627, + -0.01546102948486805, + 0.05767875164747238, + 0.036880847066640854, + 0.009538399986922741, + 0.002917925827205181, + 0.028911691159009933, + -0.0035289910156279802, + -0.020045826211571693, + 0.003245152998715639, + 0.02629387564957142, + 0.016487907618284225, + -0.016025090590119362, + -0.014745107851922512, + -0.0021821167320013046, + -0.01211282704025507, + -0.004093050956726074, + 0.009053886868059635, + -0.024052098393440247, + 0.04269500449299812, + -0.025671962648630142, + 0.015056063421070576, + -0.0309220589697361, + -0.000693775771651417, + 0.005011456552892923, + -0.04408346116542816, + -0.0037278581876307726, + -0.009849355556070805, + 0.005814156960695982, + -0.0028745366726070642, + 0.005481506232172251, + 0.0006029295618645847, + 0.0009925287449732423, + -0.00021310440206434578, + 0.011172727681696415, + -0.031471654772758484, + 0.040988363325595856, + 0.02344464883208275, + 0.036273397505283356, + -0.00228878203779459, + -0.020928073674440384, + -0.003436788683757186, + 0.01693626306951046, + -0.02646743133664131, + -0.020306160673499107, + 0.019539617002010345, + -0.015041600912809372, + 0.051835671067237854, + 0.006916966754943132, + 0.0350295752286911, + -0.0036935084499418736, + -0.021130556240677834, + -0.0015638202894479036, + -0.008641689084470272, + 0.014853580854833126, + -0.047381043434143066, + 0.005691220983862877, + 0.03181876987218857, + 0.0054381173104047775, + -0.004949988331645727, + 0.011830797418951988, + 0.029562531039118767, + -0.012619035318493843, + -0.027783572673797607, + 0.009234675206243992, + 0.03268655389547348, + -0.012402089312672615, + -0.030285684391856194, + -0.01368207111954689, + -0.01431844662874937, + 0.019351597875356674, + 0.017717270180583, + -0.0015791872283443809, + -0.010948549956083298, + -0.01093408651649952, + -0.016082942485809326, + -0.0070182085037231445, + -0.059125062078237534, + 0.0070579820312559605, + 0.005926245823502541, + -0.047294262796640396, + 0.0034801780711859465, + 0.025946760550141335, + -0.0018359068781137466, + -0.011375210247933865, + -0.022027267143130302, + -0.024746324867010117, + -0.001178740756586194, + -0.0030896749813109636, + 0.0032270741648972034, + -0.028506726026535034, + -0.031442731618881226, + -0.04026520624756813, + -0.016097405925393105, + 0.004121976904571056, + -0.017456933856010437, + 0.04023628309369087, + -0.009921670891344547, + 0.010008449666202068, + 0.008251185528934002, + -0.01979995332658291, + -0.00999398622661829, + 0.03288903832435608, + -0.005025919526815414, + 0.000950947345700115, + 0.0007403288036584854, + -0.022663641721010208, + 0.022620253264904022, + 0.018165625631809235, + 0.0023050529416650534, + -0.0016921800561249256, + -0.03803789243102074, + -0.0038327155634760857, + -0.002456915332004428, + 0.0254984050989151, + 0.007137528620660305, + -0.02993857115507126, + -0.02677115611732006, + -0.02056649699807167, + 0.007990850135684013, + 0.0156635120511055, + 0.01635774038732052, + -0.01407257467508316, + -0.023864077404141426, + 0.031240247189998627, + -0.01191034447401762, + 0.018194550648331642, + 0.03572380170226097, + 0.003879720577970147, + -0.04347601160407066, + -0.015056063421070576, + 0.0618441179394722, + 0.024587230756878853, + -0.017977604642510414, + 0.027812497690320015, + -0.02272149547934532, + 0.025281459093093872, + -0.0027280980721116066, + -0.02677115611732006, + 0.027393069118261337, + 0.020942535251379013, + 0.01470895018428564, + -0.004100282676517963, + -0.010492962785065174, + -0.029909644275903702, + -0.04949264973402023, + -0.007665431126952171, + -0.04440164938569069, + -0.005485122092068195, + -0.018339181318879128, + 0.012669655494391918, + 0.02088468335568905, + 0.025165755301713943, + 0.022388843819499016, + -0.007094139698892832, + -0.018151162192225456, + -0.019178040325641632, + 0.003686276962980628, + 0.016010627150535583, + 0.03326507657766342, + -0.021116092801094055, + -0.012373162433505058, + 0.008323500864207745, + -0.0004438356845639646, + 0.0007118546054698527, + 0.0011814526515081525, + -0.007622041739523411, + -0.008844171650707722, + -0.02784142456948757, + 0.06872854381799698, + -0.012821517884731293, + 0.011194421909749508, + 0.013400041498243809, + -0.06462103128433228, + 0.009639641270041466, + 0.0724889412522316, + 0.05634814873337746, + -0.016560222953557968, + -0.011346284300088882, + -0.0230396818369627, + 0.010066301561892033, + 0.041190844029188156, + 0.024659547954797745, + 0.0018069806974381208, + -0.012785360217094421, + -0.020928073674440384, + 0.010702677071094513, + -0.0181222353130579, + -0.02953360415995121, + -0.006678326055407524, + -0.013277105055749416, + 0.018064383417367935, + -0.008149944245815277, + -0.011845260858535767, + -0.011541536077857018, + 0.028969544917345047, + 0.011534304358065128, + -0.01927928254008293, + -0.00425937632098794, + -0.017109820619225502, + -0.042290039360523224, + -0.022085119038820267, + 0.021795857697725296, + -0.015128378756344318, + 0.03878997266292572, + 0.016386667266488075, + 0.0501868799328804, + -0.03109561651945114, + -0.0025925065856426954, + -0.0033066209871321917, + 0.011924806982278824, + 0.014101500622928143, + 0.0257008895277977, + 0.036360178142786026, + 0.002046525478363037, + -0.011259505525231361, + 0.008612762205302715, + 0.018035458400845528, + -0.04833560436964035, + 0.015142842195928097, + -0.07677001506090164, + -0.03181876987218857, + 0.0309220589697361, + -0.013161400333046913, + -0.02519468031823635, + -0.008431973867118359, + 0.008996034041047096, + -0.007394248154014349, + -0.0022164667025208473, + -0.013805007562041283, + 0.022229749709367752, + -0.004309996962547302, + -0.002357481513172388, + 0.02047971822321415, + -0.02144874446094036, + -0.025165755301713943, + -0.013754386454820633, + -0.025845520198345184, + 0.019423913210630417, + 0.03867426887154579, + -0.0006657535559497774, + -0.03378574922680855, + 0.014802959747612476, + 0.006078108213841915, + -0.0091117387637496, + 0.05027365684509277, + -0.008149944245815277, + 0.010022913105785847, + -0.017847437411546707, + 0.004523327574133873, + -0.042492520064115524, + -0.015417641028761864, + -0.033120445907115936, + -0.020306160673499107, + -0.020523106679320335, + 0.05993499234318733, + -0.025657499209046364, + -0.0007936613983474672, + 0.03216588497161865, + 0.001020550960674882, + -0.015634587034583092, + -0.0012293616309762, + -0.002798605477437377, + 0.011114874854683876, + -0.004639032296836376, + 0.002249008510261774, + 0.008287343196570873, + -0.008714004419744015, + 0.00974811427295208, + 0.0006924198241904378, + 0.01919250376522541, + -0.025266995653510094, + 0.024196729063987732, + 0.010471267625689507, + -0.013255410827696323, + -0.008851403370499611, + -0.003075211774557829, + -0.03433534502983093, + 0.019742101430892944, + 0.020725589245557785, + -0.013703766278922558, + -0.01731230318546295, + 0.01068821456283331, + 0.03959990665316582, + -0.007025439757853746, + -0.015489956364035606, + 0.03245514631271362, + -0.010861771181225777, + 0.005206707864999771, + -0.007672662381082773, + -0.023676058277487755, + 0.013631450943648815, + -0.01215621642768383, + -0.015316398814320564, + 0.011346284300088882, + -0.02607692778110504, + 0.03505849838256836, + -0.010348332114517689, + -0.015244083479046822, + 0.015677975490689278, + 0.039715610444545746, + -0.02371944673359394, + 0.021318575367331505, + 0.015157305635511875, + 0.005886472295969725, + -0.020523106679320335, + 0.0026322801131755114, + 6.519684393424541e-5, + 0.00995059683918953, + 0.008938182145357132, + -0.04000487178564072, + 0.02254793792963028, + 0.0031619903165847063, + -0.02085575833916664, + -0.004613721743226051, + 0.02531038597226143, + -0.009581788443028927, + 0.011664471589028835, + -0.0004083559615537524, + -0.052905935794115067, + -0.006501153111457825, + -0.027494309470057487, + 0.02066773734986782, + 0.002218274399638176, + 0.0003403342852834612, + 0.007065213285386562, + 0.015229620970785618, + 0.03424856811761856, + -0.006182965822517872, + -0.02577320486307144, + 0.016690392047166824, + 0.004483554046601057, + 0.028897229582071304, + -0.01441245712339878, + 0.0027371374890208244, + -0.005007840692996979, + -0.02392192929983139, + -0.0019687863532453775, + -0.013696534559130669, + -0.003463907167315483, + -0.006240817718207836, + -0.048075269907712936, + -0.039426349103450775, + 0.0008673326810821891, + 0.021029314026236534, + -0.017543712630867958, + 0.021824784576892853, + 0.02519468031823635, + -0.03699655085802078, + -0.00411112979054451, + 0.02541162632405758, + 0.0037025478668510914, + 0.010326636955142021, + -0.006298670079559088, + 0.01240932010114193, + -0.03178984299302101, + 0.036186620593070984, + 0.021029314026236534, + -0.020016899332404137, + -0.029851792380213737, + 0.03387252613902092, + -0.03349648788571358, + 0.010615899227559566, + -0.014781265519559383, + -0.01820901408791542, + 0.007723283488303423, + -0.009560094214975834, + 0.037835411727428436, + -0.004982530139386654, + 0.03566594794392586, + -0.0014680023305118084, + 0.024138877168297768, + 0.028391020372509956, + -0.007191765122115612, + -0.025180218741297722, + 0.021824784576892853, + -0.04359171539545059, + 0.04735211655497551, + -0.029360046610236168, + 0.018845390528440475, + 0.0004056441248394549, + -0.028014980256557465, + -0.004613721743226051, + -0.009364842437207699, + -0.007217075675725937, + -0.005119929555803537, + 0.009299758821725845, + 0.03100883774459362, + -0.03841393440961838, + 0.03384360298514366, + 0.022663641721010208, + 0.00039163301698863506, + 0.01919250376522541, + -0.004476322326809168, + 0.01575029082596302, + -0.015822606161236763, + 0.009639641270041466, + 0.01554780825972557, + 0.02490541897714138, + -0.014173815958201885, + 0.0038218682166188955, + -0.029851792380213737, + 0.004884904250502586, + 0.033120445907115936, + 0.012481635436415672, + -0.06253834813833237, + -0.006631320808082819, + 0.03876104578375816, + 0.004751121159642935, + -0.007520800456404686, + -0.045934733003377914, + -0.03031461127102375, + 0.03537668660283089, + 0.018194550648331642, + -0.013942406512796879, + 0.018570590764284134, + 0.012062206864356995, + -0.02590337209403515, + 0.009003265760838985, + 0.03271548077464104, + 0.009921670891344547, + 0.0010160311358049512, + -0.0005242865299805999, + -0.014000259339809418, + 0.024862030521035194, + 0.003422325709834695, + -0.0016524066450074315, + 0.03306259587407112, + 0.01979995332658291, + -0.0034114783629775047, + -0.015316398814320564, + -0.0006503865006379783, + -0.017268914729356766, + 0.008453669026494026, + -0.009372074156999588, + -0.01839703507721424, + 0.007209843955934048, + -0.007365322206169367, + 0.010919623076915741, + 0.022490086033940315, + -0.022273140028119087, + 0.0003308428858872503, + 0.008721236139535904, + -0.017471397295594215, + -0.014607707969844341, + -0.006175734102725983, + 0.017760658636689186, + -0.003105945885181427, + 0.01521515753120184, + -0.005962403491139412, + -0.009480547159910202, + -0.017456933856010437, + -0.006533695384860039, + 0.017760658636689186, + -0.024948809295892715, + -0.029302194714546204, + -0.0032126111909747124, + -0.018165625631809235, + -0.021810321137309074, + -0.024066559970378876, + 0.020219381898641586, + -0.014940358698368073, + -0.009039423428475857, + 0.00025332983932457864, + -0.021839246153831482, + 0.025136828422546387, + 0.0016280001727864146, + -0.003552493406459689, + 0.01220683753490448, + 0.007788367103785276, + 0.018585054203867912, + -0.018064383417367935, + -0.0016207685694098473, + -0.0012808863539248705, + 0.03424856811761856, + -0.025527331978082657, + 0.04804634302854538, + -0.0028908075764775276, + -0.04153795912861824, + -0.04289748892188072, + 0.018483813852071762, + 0.028304243460297585, + -0.010435109958052635, + -0.015692438930273056, + -0.0031818770803511143, + 0.0454719141125679, + 0.008424743078649044, + -0.017355693504214287, + 0.021535523235797882, + -0.004472706932574511, + -0.009429926052689552, + -0.024066559970378876, + -0.005514048505574465, + 0.03931064531207085, + -0.018237940967082977, + 0.013371115550398827, + -0.008207796141505241, + 0.016560222953557968, + -0.007419558707624674, + 0.037951115518808365, + 0.0156635120511055, + -0.004328075796365738, + -0.0017192983068525791, + 0.008374121971428394, + 0.016719317063689232, + 0.047786008566617966, + -0.03355433791875839, + 0.04969513416290283, + 0.02046525478363037, + -0.01546102948486805, + -0.01038448978215456, + -0.003501872532069683, + 0.011599387973546982, + 0.012062206864356995, + 0.01165724080055952, + -0.011057022958993912, + 0.009314222261309624, + -0.004559485241770744, + -0.03190555050969124, + -0.010767761617898941, + -0.005456196144223213, + -0.001258287695236504, + 0.023155387490987778, + 0.04009165242314339, + 0.002565388334915042, + 0.013081853277981281, + -0.019828878343105316, + 0.02895508147776127, + 0.03737259283661842, + 0.010999170131981373, + -0.030372463166713715, + 0.02934558503329754, + 0.002303245011717081, + -0.029302194714546204, + 0.011678935028612614, + -0.010659287683665752, + -0.034017156809568405, + 0.009212980046868324, + -0.025671962648630142, + 0.0015330861788243055, + -0.0039014150388538837, + 0.03850071132183075, + 0.03826930373907089, + -0.012908296659588814, + -0.00575630459934473, + 0.04029413312673569, + 0.002462338889017701, + -0.01742800883948803, + 0.006772336084395647, + 0.013768849894404411, + -0.008258417248725891, + 0.025165755301713943, + -0.016878411173820496, + -0.0013378346338868141, + 0.0020935304928570986, + -0.0031131773721426725, + -0.046021513640880585, + 0.02726290188729763, + 0.026944713667035103, + 0.004476322326809168, + -0.03424856811761856, + 0.010514657013118267, + 0.009965060278773308, + 0.03239729255437851, + 0.013255410827696323, + -0.02649635821580887, + -0.011093180626630783, + -0.008229491300880909, + 0.02361820638179779, + 0.0017545521259307861, + -0.002937812590971589, + -0.00016429151582997292, + -0.02697363868355751, + 0.016386667266488075, + -0.03002534806728363, + 0.013421735726296902, + -0.007249617483466864, + 0.031153468415141106, + 0.028622429817914963, + 0.0056550633162260056, + -0.019930120557546616, + -0.011411367915570736, + 0.0033265077508985996, + 0.009646872989833355, + 0.012264689430594444, + -0.0034657148644328117, + 0.0004083559615537524, + -0.011136570014059544, + 0.030256757512688637, + 0.013161400333046913, + 0.04735211655497551, + -0.025455016642808914, + -0.005127160809934139, + -0.029114175587892532, + 0.002164037898182869, + 0.0027769107837229967, + -0.029172027483582497, + -0.017572639510035515, + -0.010912392288446426, + -0.009986755438148975, + -0.023256627842783928, + -0.009711956605315208, + -0.017963143065571785, + 0.02934558503329754, + 0.024442600086331367, + 0.014896970242261887, + -0.00546704325824976, + -0.014332910068333149, + 0.015345324762165546, + -0.02895508147776127, + 0.021304113790392876, + 0.00684465141966939, + 0.00851875264197588, + 0.02390746772289276, + 0.005217554979026318, + 0.015677975490689278, + 0.027407532557845116, + 0.011548767797648907, + -0.02195495180785656, + -0.014781265519559383, + -0.018585054203867912, + -0.01927928254008293, + 0.006088955793529749, + -0.004396775737404823, + -0.0050403825007379055, + 0.00015129735402297229, + 0.013515746220946312, + 0.0056550633162260056, + -0.010854539461433887, + -0.02036401256918907, + -0.03977346420288086, + -0.036967627704143524, + 0.01661807671189308, + -0.027508772909641266, + 0.02478971518576145, + 0.013219253160059452, + 0.000376491982024163, + -0.0072206915356218815, + -0.007701588794589043, + -0.05137285217642784, + 0.030256757512688637, + 0.0023068608716130257, + -0.004819820635020733, + -0.01432567834854126, + 0.004093050956726074, + 0.026120318099856377, + 0.01575029082596302, + -0.012662424705922604, + -0.027407532557845116, + -0.00442931754514575, + -0.026033539324998856, + -0.03286011144518852, + -0.01467279251664877, + 0.004367849323898554, + -0.016560222953557968, + -0.0011028096778318286, + -0.029360046610236168, + -0.03043031506240368, + 0.012011585757136345, + -0.01802099496126175, + -0.056753117591142654, + 0.01334218867123127, + 0.0152585469186306, + -0.013262641616165638, + 0.05660848692059517, + 0.01402195356786251, + -0.0018964710179716349, + -0.01802099496126175, + -0.014484772458672523, + 0.024442600086331367, + 0.013805007562041283, + 0.010413415729999542, + 0.005524895619601011, + -0.0077811358496546745, + -0.01841149851679802, + -0.0063095176592469215, + 0.008714004419744015, + 0.01308908499777317, + 0.0014426920097321272, + -0.011932038702070713, + -0.010825613513588905, + 0.0015502611640840769, + 0.021781394258141518, + 0.011302894912660122, + 0.017080893740057945, + 0.02047971822321415, + 0.027335217222571373, + 0.0024189497344195843, + -0.021795857697725296, + 0.03219481185078621, + -0.006085339933633804, + -0.0006643976084887981, + -0.007759441155940294, + -0.028897229582071304, + -0.014260594733059406, + -0.018830927088856697, + -0.0014607708435505629, + 0.020103678107261658, + -0.028607966378331184, + 0.01653129793703556, + -0.0038363311905413866, + -0.01682055927813053, + 0.02512236498296261, + 0.01186695508658886, + 0.009516704827547073, + 0.0411619171500206, + 0.0205809585750103, + 0.0024099103175103664, + -0.014332910068333149, + 0.005130776669830084, + 0.026120318099856377, + -0.01347958855330944, + 0.0019669784232974052, + 0.009878281503915787, + -0.01240932010114193, + 0.012423783540725708, + -0.0046426476910710335, + 0.006266128271818161, + -0.003897799411788583, + -0.03832715377211571, + 0.02834763191640377, + -0.03141380473971367, + 0.01839703507721424, + -0.004573948215693235, + 0.004270223435014486, + -0.01162108313292265, + -0.013667608611285686, + 0.015345324762165546, + -0.011780176311731339, + -0.006439685355871916, + -0.005669526290148497, + -0.047901712357997894, + -0.010543583892285824, + 0.006942277308553457, + -0.017948679625988007, + 0.03259977698326111, + 0.0045558693818748, + 0.002807644894346595, + -0.005676758009940386, + -0.020407402887940407, + -6.225903052836657e-5, + -0.0309220589697361, + -0.020204918459057808, + 0.020754516124725342, + -0.019857805222272873, + 0.018266865983605385, + -0.018773075193166733, + 0.004537790548056364, + -0.017066432163119316, + 0.0098348930478096, + -0.03514527902007103, + -0.02390746772289276, + -0.015244083479046822, + 0.013284336775541306, + -0.010167543776333332, + -0.022417770698666573, + -0.002263471717014909, + -0.021694615483283997, + 0.05947217345237732, + -0.0028166843112558126, + 0.0052573285065591335, + -0.006906119640916586, + -0.013993027620017529, + 0.014115964062511921, + 0.011440293863415718, + -0.00765096815302968, + -0.01151984091848135, + 0.010051839053630829, + -0.01968424767255783, + 0.03951312601566315, + 0.010594204068183899, + -0.0033644733484834433, + -0.01693626306951046, + 0.010210932232439518, + 0.031471654772758484, + -0.02678561955690384, + -0.04145117849111557, + -0.0012845020974054933, + 0.008229491300880909, + -0.011461989022791386, + 0.0026178169064223766, + -0.002849226351827383, + 0.005568285007029772, + 0.01373269222676754, + 0.0004375081043690443, + -0.031124543398618698, + 0.005264560226351023, + 0.012091132812201977, + -0.017992068082094193, + 0.004009888041764498, + -0.00969026144593954, + 0.0034458281006664038, + -0.05848868563771248, + -0.025874445214867592, + -0.0028799602296203375, + 0.026814546436071396, + -0.015793681144714355, + -0.003478370141237974, + 0.0018512739334255457, + 0.002249008510261774, + -0.00817163847386837, + 0.006743409670889378, + 0.016415592283010483, + 0.0008176158298738301, + 0.03427749499678612, + 0.03653373196721077, + 0.004982530139386654, + 0.012517793104052544, + -0.001693987986072898, + 0.014014721848070621, + 0.0103411003947258, + -0.0015077758580446243, + -0.004545022267848253, + 0.00919851753860712, + 0.025021124631166458, + 0.0022869741078466177, + 0.018917705863714218, + 0.05898043140769005, + -0.025151291862130165, + 0.024138877168297768, + -0.01791975274682045, + -0.013110780157148838, + 0.017977604642510414, + 0.003709779353812337, + -0.002098954049870372, + 0.027320753782987595, + 0.008945413865149021, + -0.017167672514915466, + 0.023661594837903976, + 0.005286254920065403, + 0.028130685910582542, + 0.007434021681547165, + 0.01802099496126175, + 0.015388714149594307, + -0.002079067286103964, + -0.0015529729425907135, + -0.005777999293059111, + -0.022302065044641495, + 0.015533344820141792, + -0.027942664921283722, + -0.019250355660915375, + 0.022793810814619064, + -0.007321932818740606, + -0.0061142658814787865, + 0.038153599947690964, + -0.023473573848605156, + -0.001749128452502191, + -0.002154998481273651, + -0.0127998236566782, + 0.026337264105677605, + -2.901090010709595e-5, + -0.03433534502983093, + 0.0551043264567852, + 0.016589149832725525, + -0.010709908790886402, + 0.01058697234839201, + -0.020450791344046593, + -0.016704853624105453, + 0.024688472971320152, + 0.022880587726831436, + 0.008547678589820862, + 0.004364233464002609, + -0.02146320603787899, + -0.0009346763836219907, + 0.017702806740999222, + 0.03358326479792595, + -0.0014327486278489232, + 0.014882506802678108, + 0.023372333496809006, + 0.005850314628332853, + -0.020060287788510323, + -0.013016769662499428, + 0.015171768143773079, + -0.00032451530569233, + 0.016270961612462997, + -0.011505378410220146, + -0.005741841625422239, + -0.03129810094833374, + -0.014383530244231224, + 0.008055933751165867, + -0.05169104039669037, + -0.0009202132932841778, + 0.03277333453297615, + -0.0017952295020222664, + 0.02491988241672516, + 0.01969871111214161, + -0.015070526860654354, + 0.01880200020968914, + -0.0008551294449716806, + -0.016372203826904297, + -0.013537440448999405, + 0.007318317424505949, + -0.016502371057868004, + -0.004136440344154835, + 0.0006775048095732927, + -0.00949501059949398, + -0.001531278365291655, + 0.009589020162820816, + 0.015128378756344318, + -0.014173815958201885, + 0.00728215929120779, + -0.020421864464879036, + -0.005416422616690397, + 0.0006973915151320398, + -0.014549856074154377, + 0.004338923376053572, + -0.007412326987832785, + -0.00079727714182809, + -0.011982659809291363, + -0.03595520928502083, + -0.034219641238451004, + -0.00890202447772026, + 0.0045341746881604195, + 0.016025090590119362, + -0.00042259303154423833, + -0.015996163710951805, + -0.0061287288554012775, + 0.01397856418043375, + 0.0020591807551681995, + -0.0017997492104768753, + -0.004194292239844799, + -0.015880459919571877, + 0.004483554046601057, + -0.0008252993575297296, + -0.01216344814747572, + 0.0032379215117543936, + 0.003700739936903119, + 0.013949638232588768, + 0.03002534806728363, + -0.013949638232588768, + 0.0005581844015978277, + -0.023155387490987778, + -0.02156444825232029, + 0.017355693504214287, + 0.013190326280891895, + 0.025078976526856422, + -0.0016316159162670374, + -0.017500324174761772, + -0.007401479873806238, + -0.00720622856169939, + 0.022085119038820267, + -0.017384618520736694, + -0.016299888491630554, + 0.0005866585997864604, + 0.015996163710951805, + -0.026236021891236305, + -0.0196697860956192, + -0.030488166958093643, + -0.007094139698892832, + -0.011729556135833263, + -0.005886472295969725, + -0.010984707623720169, + 0.000525190494954586, + 0.005069308448582888, + 0.015244083479046822, + -0.001520431018434465, + 0.01333495695143938, + 0.007173686288297176, + -0.008482594974339008, + 0.0033861680421978235, + -0.005015071947127581, + -0.00796915590763092, + 0.01013138610869646, + -0.015981700271368027, + 0.003923109732568264, + -0.004808973055332899, + -0.006649399641901255, + -0.0074774110689759254, + -0.016762707382440567, + -0.01969871111214161, + 0.020320624113082886, + -0.012785360217094421, + -0.022099582478404045, + 0.006157655268907547, + -0.01990119367837906, + -0.003680853173136711, + 0.011924806982278824, + -0.02392192929983139, + 0.001402014517225325, + -0.0009206652757711709, + -0.0033427788875997066, + -0.0007050750427879393, + 0.015113916248083115, + -0.00965410377830267, + 0.01042787916958332, + 0.0011850683949887753, + 0.027783572673797607, + -0.028680281713604927, + 0.030459241941571236, + 0.0038905679248273373, + -0.009053886868059635, + 0.001272750785574317, + 0.006678326055407524, + 0.0013550096191465855, + 0.01969871111214161, + 0.015345324762165546, + -0.005503200925886631, + -0.0005346818943507969, + -0.02225867658853531, + 0.016010627150535583, + 0.029475752264261246, + -0.01773173362016678, + 0.03555024415254593, + -0.005568285007029772, + -0.008916486985981464, + -0.0034819860011339188, + 0.01682055927813053, + -0.021043777465820312, + -0.00028022212791256607, + 0.0017753427382558584, + 0.017196599394083023, + 0.017153209075331688, + -0.007097755093127489, + -0.013609755784273148, + -0.007549726404249668, + -0.00021107053908053786, + 0.000510275480337441, + -0.0004763776087202132, + -0.013884554617106915, + -0.03080635517835617, + 0.0010422455379739404, + 0.015735827386379242, + -0.015171768143773079, + -0.013327726162970066, + -0.0043714651837944984, + 0.01888877898454666, + 0.006493921857327223, + -0.011411367915570736, + 0.0275521632283926, + -0.015692438930273056, + 0.04093050956726074, + 0.002693748101592064, + -0.00945162121206522, + -0.03259977698326111, + 0.0070182085037231445, + 0.016516834497451782, + 0.032917965203523636, + 0.008294574916362762, + -0.026308337226510048, + -0.021839246153831482, + -0.021882636472582817, + -0.013009537942707539, + 0.020841294899582863, + -0.03222373500466347, + -0.004863210022449493, + 0.047496747225522995, + 0.025845520198345184, + 0.01288660243153572, + -0.0028203001711517572, + -0.01181633397936821, + 0.01191757619380951, + -0.0069856662303209305, + 0.008800782263278961, + 0.006407143082469702, + 0.012647961266338825, + -0.012148984707891941, + 0.011678935028612614, + -0.008699540980160236, + -0.005651447456330061, + 0.001496024546213448, + 0.006645784247666597, + -0.01909126155078411, + -0.016025090590119362, + 0.01614079438149929, + -0.017934216186404228, + -0.002840186934918165, + 0.037054404616355896, + -0.0005337779293768108, + 0.006085339933633804, + 0.00950224231928587, + -0.0255996473133564, + 0.003789326408877969, + -0.010319406166672707, + -0.010247090831398964, + -0.021983876824378967, + 0.005232018418610096, + -0.012438246980309486, + -0.02264918014407158, + -0.0064722271636128426, + 0.007191765122115612, + 0.024269044399261475, + -0.0024930729996412992, + -0.010073533281683922, + 0.015620123594999313, + -0.007202612701803446, + -0.00627335999161005, + 0.00950224231928587, + -0.0071664550341665745, + -0.01097024418413639, + -0.006367370020598173, + 0.0017798624467104673, + -0.018859852105379105, + 0.013891786336898804, + -0.003785710548982024, + -0.019134651869535446, + 0.01643005572259426, + 0.00034937370219267905, + -0.00029242533491924405, + -0.01343619916588068, + 0.004360618069767952, + -0.008728466928005219, + 0.0088586350902915, + -0.007441253401339054, + -0.0005843987455591559, + 0.00669640488922596, + 0.010955780744552612, + -0.01622757315635681, + 0.02029169723391533, + -0.013920712284743786, + 0.009270832873880863, + -0.016314351931214333, + -0.003749552881345153, + -0.024167802184820175, + -0.005474274978041649, + 0.027190586552023888, + 0.007462948095053434, + -0.005495969206094742, + 0.03630232438445091, + -0.003657350782305002, + -0.0043714651837944984, + -0.013378346338868141, + -0.025657499209046364, + -0.027017029002308846, + 0.001164277782663703, + -0.0019977125339210033, + -0.012727508321404457, + 0.04202970489859581, + 0.0005048518069088459, + 0.0007127585122361779, + -0.003753168508410454, + 0.013103548437356949, + 0.004870441276580095, + 0.009466084651648998, + 0.021709078922867775, + 0.005770768038928509, + -0.0005753593286499381, + -0.0052971020340919495, + 0.0072206915356218815, + -0.0073834010399878025, + 0.022880587726831436, + 0.015128378756344318, + -0.00336989713832736, + -0.00561528978869319, + -0.001609921338967979, + 0.01452816091477871, + -0.002972162328660488, + 0.011838029138743877, + -0.007860682904720306, + -0.030459241941571236, + 0.04223218560218811, + 0.004414854571223259, + -0.011664471589028835, + -0.0024044865276664495, + -0.006580700166523457, + 0.0014291328843683004, + 0.035579171031713486, + 0.03375682234764099, + 0.007571421097964048, + 0.0235458891838789, + -0.005702068097889423, + -0.004928293637931347, + -0.03129810094833374, + 0.006555390078574419, + 0.007307469844818115, + 0.0011154648382216692, + -0.009516704827547073, + 0.0031222167890518904, + -0.005676758009940386, + 0.014426919631659985, + -0.002080875216051936, + -0.010471267625689507, + 0.03257085010409355, + -0.037835411727428436, + 0.006204660050570965, + -0.05443902313709259, + -0.007264080457389355, + 0.005300717893987894, + 0.009914439171552658, + -0.03711225837469101, + 0.02272149547934532, + -0.004284686874598265, + 0.0006594259175471961, + 0.008540446870028973, + -0.001793421572074294, + 0.02431243285536766, + 0.011389673687517643, + -0.015200694091618061, + 0.008779088035225868, + -0.0027606398798525333, + 0.018266865983605385, + -0.008229491300880909, + 0.024731863290071487, + -0.026944713667035103, + 0.011259505525231361, + 0.014217205345630646, + 0.015244083479046822, + 0.005622521508485079, + 0.0015891306102275848, + 0.003774863202124834, + 0.025614110752940178, + -0.0026557825040072203, + -0.01849827542901039, + -0.016184182837605476, + -0.018035458400845528, + 0.004754736553877592, + -0.011404136195778847, + 0.00076292734593153, + -0.00792576652020216, + 0.026612062007188797, + 0.003476562211290002, + 0.0066747101955115795, + -0.005163318477571011, + -0.012929990887641907, + 0.01929374597966671, + 0.014397993683815002, + -0.01132459007203579, + -0.00019626847642939538, + 0.019062336534261703, + -0.010283248499035835, + -0.013956869952380657, + -0.0015629163244739175, + 0.018368108198046684, + -0.003060748800635338, + 0.000262595247477293, + -0.01664700172841549, + -0.00534049142152071, + 0.022316528484225273, + -0.040988363325595856, + 0.01300230622291565, + 0.01004460733383894, + -0.013595293276011944, + -0.011433063074946404, + -0.03659158572554588, + -0.010471267625689507, + -0.003689892590045929, + -0.008316269144415855, + -0.003120408859103918, + -0.033438634127378464, + 0.014115964062511921, + -0.008352426812052727, + 0.013161400333046913, + -0.0004488073755055666, + 0.04171151667833328, + -0.0031421035528182983, + 0.027335217222571373, + -0.005940709263086319, + -0.008836939930915833, + 0.015056063421070576, + -0.000748012273106724, + 0.024558305740356445, + -0.01583706960082054, + 0.021202871575951576, + 0.013515746220946312, + -0.014853580854833126, + -0.014079805463552475, + 0.001139871310442686, + 0.015359788201749325, + 0.012640729546546936, + 0.017485860735177994, + -0.016560222953557968, + 0.0020501413382589817, + 0.003698932006955147, + -0.03317829966545105, + -0.011960964649915695, + -0.012597340159118176, + -0.0049463724717497826, + 0.002500304486602545, + -0.034508902579545975, + 0.0010359178995713592, + 0.0044401646591722965, + 0.027190586552023888, + 0.00792576652020216, + 0.0226347167044878, + 0.0013857436133548617, + 0.005846699234098196, + 0.0016985076945275068, + 0.0225334744900465, + 0.020638812333345413, + 0.013884554617106915, + -0.00735447509214282, + 0.0007904975791461766, + -0.011628313921391964, + 0.005741841625422239, + 0.014463077299296856, + 0.014397993683815002, + 0.006045566406100988, + 0.01930820755660534, + -0.023169850930571556, + 0.00044519160292111337, + -0.010355563834309578, + 0.02548394165933132, + 0.010659287683665752, + 0.01407257467508316, + -0.00622997060418129, + -0.03294689208269119, + 0.0003057584981434047, + 0.003977346234023571, + 0.006627705413848162, + 0.009871050715446472, + 0.009082812815904617, + 0.01496928557753563, + -0.01550441887229681, + -0.009335916489362717, + 0.0034910254180431366, + 0.012221300043165684, + 0.00830903835594654, + 0.005720146931707859, + 0.018136698752641678, + 0.00506569305434823, + 0.008417511358857155, + -0.002371944719925523, + 0.0029088864102959633, + 0.0024695703759789467, + 0.0033030053600668907, + -0.008583836257457733, + -0.023271091282367706, + -0.0027624478098005056, + 0.021029314026236534, + 0.01661807671189308, + -0.025628572329878807, + 0.010514657013118267, + -0.015070526860654354, + -0.017109820619225502, + 0.0002476802037563175, + -0.017601564526557922, + 0.0033210841938853264, + 0.00010694767843233421, + -0.0017192983068525791, + -0.016907338052988052, + -0.006269744131714106, + 0.024659547954797745, + -0.020826831459999084, + -0.0028166843112558126, + -0.016415592283010483, + -0.016777168959379196, + -0.010203701443970203, + -0.0004126496787648648, + 0.0630590170621872, + 0.008121018297970295, + 0.015909384936094284, + 0.009039423428475857, + -0.0013233715435490012, + -0.016473446041345596, + -0.006067261099815369, + 0.015446566976606846, + 0.009010497480630875, + -0.0017229140503332019, + -0.02246115915477276, + -0.00940100010484457, + 0.008200565353035927, + -0.003959267400205135, + -0.02666991390287876, + 0.004147287458181381, + 0.007007360924035311, + 0.0004799933813046664, + 0.0156635120511055, + 0.01615525782108307, + -0.0008153559756465256, + 0.010138616897165775, + 0.007954692468047142, + 0.004505248740315437, + -0.010536352172493935, + 0.011707860976457596, + -0.011483683250844479, + 0.00940823182463646, + 0.011136570014059544, + 0.012445477768778801, + 0.012120058760046959, + -0.012872138991951942, + -0.0043859281577169895, + -0.02036401256918907, + 0.0033066209871321917, + 0.00020869768923148513, + 0.0032379215117543936, + -0.008685078471899033, + -0.011158264242112637, + 0.0018693527672439814, + -0.009379305876791477, + -0.004208755679428577, + 0.006468611303716898, + 0.01661807671189308, + -0.022374380379915237, + 0.003510911948978901, + -0.001564724138006568, + 0.004566716495901346, + -0.016806095838546753, + 0.0009247330017387867, + 0.006139576435089111, + -0.004501632880419493, + 0.019163576886057854, + 0.027393069118261337, + 0.013913480564951897, + -0.007672662381082773, + 0.016314351931214333, + 0.02765340358018875, + 0.02027723379433155, + 0.004378696903586388, + -0.03231051564216614, + -0.012033279985189438, + 0.0001540091761853546, + -0.006743409670889378, + -0.026062466204166412, + -0.0010015681618824601, + -0.02658313699066639, + -0.007470179349184036, + 0.012083901092410088, + -0.028665820136666298, + -0.011534304358065128, + -0.006034719292074442, + 0.005463427398353815, + -0.02548394165933132, + -0.013486819341778755, + 0.02382068894803524, + 0.006493921857327223, + 0.03798004239797592, + 0.022012803703546524, + -0.0007453004363924265, + 0.008786319755017757, + 0.0014743299689143896, + -0.011924806982278824, + 0.0014878890942782164, + -0.0009419079287908971, + -0.005105466116219759, + 0.019959047436714172, + -0.030256757512688637, + 0.01839703507721424, + -0.019828878343105316, + -0.010984707623720169, + 0.0015448374906554818, + 0.012170679867267609, + 0.013269873335957527, + -0.004465475212782621, + -0.001411957899108529, + 0.0069314297288656235, + 0.016878411173820496, + 0.007730514742434025, + -0.008591067977249622, + 0.01546102948486805, + -0.004487169906497002, + -0.014492003247141838, + 0.009936134330928326, + -0.010196469724178314, + -0.0015484532341361046, + 0.013913480564951897, + 0.007144760340452194, + 0.005687605123966932, + -0.008417511358857155, + -0.003304813290014863, + -0.025758741423487663, + 0.005832235794514418, + 5.886924554943107e-5, + -0.005271791946142912, + 0.0008153559756465256, + 0.015330862253904343, + -0.013371115550398827, + -0.014983748085796833, + -0.01734123006463051, + -0.004067740403115749, + 0.0007990850135684013, + 0.00760757876560092, + -0.03314937278628349, + 0.003205379471182823, + 0.0007674470543861389, + -0.011628313921391964, + -0.011375210247933865, + 0.00018711606389842927, + -0.0006368273752741516, + 0.015808144584298134, + 0.0061685023829340935, + 0.018339181318879128, + 0.004942756611853838, + 0.006971203256398439, + 0.006385448854416609, + -0.015099452808499336, + 0.01722552441060543, + -0.009726420044898987, + -0.006562621332705021, + 0.016097405925393105, + 0.00979873538017273, + 0.00915512815117836, + 0.017543712630867958, + 0.01624203659594059, + 0.014159352518618107, + -0.009010497480630875, + -0.018093310296535492, + 0.00949501059949398, + 0.00642160652205348, + 0.019221430644392967, + -0.018353644758462906, + 0.006616857834160328, + 0.0028745366726070642, + -0.018180089071393013, + 0.01338557805866003, + -0.03722796216607094, + 0.008041471242904663, + -0.024240117520093918, + 0.002758831949904561, + 0.005206707864999771, + -0.014390761964023113, + -0.011700629256665707, + -0.0016677735839039087, + -0.011071485467255116, + 0.005445348564535379, + -0.0031782612204551697, + 0.01338557805866003, + 0.007068829145282507, + 0.010362794622778893, + 0.0023809841368347406, + 0.028000518679618835, + 0.027624478563666344, + -0.03367004543542862, + 0.015706902369856834, + -0.021810321137309074, + 0.015880459919571877, + 0.00145715510006994, + -0.013559134677052498, + -0.002357481513172388, + -0.018946630880236626, + -0.006913350895047188, + 0.008627225644886494, + -0.0029649308416992426, + -0.016502371057868004, + -0.012980611994862556, + 0.0014869851293042302, + -0.006143192294985056, + 0.011975428089499474, + -0.014925896190106869, + -0.014954822137951851, + 0.031327024102211, + 0.008403047919273376, + -0.021087167784571648, + 0.004537790548056364, + 0.005886472295969725, + 0.031124543398618698, + 0.006540926638990641, + 0.04029413312673569, + -0.001520431018434465, + -0.00107026775367558, + 0.003995425067842007, + 0.02207065559923649, + -0.0034006310161203146, + 0.007932998239994049, + 0.004234065767377615, + -0.01470895018428564, + -0.009610715322196484, + -0.010355563834309578, + -0.00035253752139396966, + -0.030777428299188614, + -0.006428837776184082, + 0.014238899573683739, + 0.005145239643752575, + -0.007622041739523411, + 0.0025925065856426954, + 0.015677975490689278, + 0.014188279397785664, + -0.0013938790652900934, + -0.003973730374127626, + 0.0014110540505498648, + -0.0076292734593153, + 0.007209843955934048, + -0.02343018539249897, + 0.0027118269354104996, + -0.007195380982011557, + -0.007679894100874662, + 0.01939498633146286, + 0.014636634849011898, + -0.0005369417485781014, + -0.0018096925923600793, + -0.018642906099557877, + -0.015128378756344318, + 0.004678805358707905, + 0.014882506802678108, + 0.02225867658853531, + 0.0026973639614880085, + -0.009646872989833355, + 0.02520914375782013, + -0.004414854571223259, + -0.015128378756344318, + 0.005329643841832876, + -0.014050879515707493, + -0.008771856315433979, + 0.0012546719517558813, + -0.015591197647154331, + 0.014087037183344364, + -0.008981571532785892, + -0.0017889018636196852, + -2.564936403359752e-5, + -0.014839117415249348, + 0.012691350653767586, + 0.006280591245740652, + -0.016285425052046776, + 0.007271312177181244, + -0.004140055738389492, + -0.02154998481273651, + 0.014137658290565014, + 0.013240947388112545, + -0.004667958244681358, + 0.02442813850939274, + 0.01919250376522541, + -0.021578911691904068, + 0.003308428917080164, + -0.012785360217094421, + 0.008692309260368347, + -0.03170306608080864, + 0.008323500864207745, + -0.00940823182463646, + -0.0016885643126443028, + 0.028564577922225, + -0.013819470070302486, + 0.001282694167457521, + 0.023560352623462677, + 0.023097535595297813, + 0.004624568857252598, + 7.321932935155928e-5, + -0.015721365809440613, + 0.004960835445672274, + 0.024196729063987732, + -0.0040207356214523315, + 0.0033228921238332987, + 0.01211282704025507, + -0.01339280977845192, + -0.006725330837070942, + -0.04026520624756813, + 0.017948679625988007, + 0.020147066563367844, + 0.004378696903586388, + 0.027291826903820038, + -0.004458243492990732, + 0.009053886868059635, + 0.010529120452702045, + 0.00012078929285053164, + 0.011599387973546982, + 0.008533216081559658, + -0.010066301561892033, + 0.0011028096778318286, + 0.04500909522175789, + -0.01842596009373665, + -0.01123057957738638, + 0.007564189378172159, + -0.00826564896851778, + -0.024731863290071487, + -0.022490086033940315, + 0.013537440448999405, + 0.029012933373451233, + 0.01486804336309433, + -0.006493921857327223, + 0.029996423050761223, + -0.004761968273669481, + -0.0059117828495800495, + -0.005315180867910385, + -0.016878411173820496, + 0.0039411885663867, + 0.003615769324824214, + -0.013580829836428165, + 0.014896970242261887, + -0.007101370953023434, + 0.002747984603047371, + -0.0072351545095443726, + 0.012987843714654446, + 0.02784142456948757, + -0.01663253828883171, + 0.02105824090540409, + -0.007405095733702183, + 0.01605401560664177, + -0.015041600912809372, + 0.007224307395517826, + -0.020537570118904114, + 0.020740052685141563, + 0.012221300043165684, + -0.03297581523656845, + -0.0014101500855758786, + 0.01127396896481514, + 0.009943366050720215, + 0.002952275797724724, + -0.0005884664715267718, + -0.005705683957785368, + 0.0017527441959828138, + -0.0022869741078466177, + -0.012633497826755047, + 0.007564189378172159, + 0.0011832605814561248, + -0.011758482083678246, + 0.004172598011791706, + 0.00688804080709815, + -0.0235458891838789, + 0.008034239523112774, + 0.0061685023829340935, + -0.01585153304040432, + 0.007321932818740606, + 0.011331820860505104, + 0.019062336534261703, + -0.014115964062511921, + -0.011165495961904526, + -0.0010539967333897948, + 0.01948176510632038, + -0.015113916248083115, + -0.01682055927813053, + -0.0142822889611125, + -0.001664157840423286, + -0.0033373550977557898, + -0.005571900401264429, + 0.00783175602555275, + -0.013363883830606937, + 0.003114985302090645, + 0.01407257467508316, + -0.028492262586951256, + 0.014043647795915604, + -0.0019290129421278834, + -0.007238770369440317, + -0.004396775737404823, + 0.00398457795381546, + -0.015142842195928097, + -0.0004989761509932578, + -0.027320753782987595, + -0.004367849323898554, + -0.031355950981378555, + -0.002710019238293171, + 0.018859852105379105, + -2.994309033965692e-5, + 0.0028691128827631474, + -0.004375081043690443, + -0.011903112754225731, + 0.01871522143483162, + 0.027103807777166367, + 0.026149243116378784, + 0.016863947734236717, + -0.01152707263827324, + -0.003382552182301879, + 0.0035561092663556337, + 0.010153080336749554, + 0.018339181318879128, + -0.031182395294308662, + 0.02341572195291519, + -0.014455845579504967, + 0.007701588794589043, + -0.01663253828883171, + 0.010847307741641998, + 0.0029739702586084604, + 0.005007840692996979, + 0.018266865983605385, + 0.005980482324957848, + 0.016386667266488075, + -0.019366061314940453, + -0.004798125941306353, + 0.007390632759779692, + 0.021781394258141518, + -0.0044401646591722965, + 0.0017617836128920317, + 0.014925896190106869, + -0.01314693782478571, + -0.004082203842699528, + 0.013240947388112545, + -0.01939498633146286, + 0.002144151134416461, + 0.01702304184436798, + 0.010485731065273285, + -0.005626136902719736, + 0.0037242425605654716, + -0.009017729200422764, + 0.007195380982011557, + 0.0023647132329642773, + 0.01308908499777317, + -0.02392192929983139, + 0.01841149851679802, + 0.011997122317552567, + -0.00733278039842844, + 0.007079676259309053, + 0.005025919526815414, + 0.00812824908643961, + 0.003753168508410454, + -0.004516095854341984, + -0.02312646061182022, + 0.002406294457614422, + 0.0048776729963719845, + -0.010102459229528904, + -0.005503200925886631, + 0.009509473107755184, + -0.024833103641867638, + -0.016675928607583046, + -0.009979523718357086, + 0.0002560416760388762, + -0.003731474047526717, + -0.010319406166672707, + 0.010478499345481396, + 0.01734123006463051, + -0.006396295968443155, + -0.014643865637481213, + -0.010594204068183899, + 0.016777168959379196, + -5.853026596014388e-5, + 0.00336989713832736, + -0.010051839053630829, + 0.0006408951012417674, + -0.018469350412487984, + -0.024471526965498924, + 0.01802099496126175, + -0.04914553835988045, + 0.014181047677993774, + 0.0007692549261264503, + 0.005987714044749737, + -0.006747025530785322, + 0.0045341746881604195, + -0.01692180149257183, + 0.024688472971320152, + 0.0012158025056123734, + -0.018642906099557877, + 0.017601564526557922, + -0.03288903832435608, + 0.03384360298514366, + 0.00014248391380533576, + -0.002169461688026786, + 0.004082203842699528, + 0.03158736228942871, + -0.006974819116294384, + 0.016994116827845573, + 0.004071356263011694, + -0.007068829145282507, + -0.014390761964023113, + 0.017066432163119316, + 0.002809452824294567, + -0.013609755784273148, + 0.01521515753120184, + -0.004017119761556387, + 0.010558046400547028, + 0.0039050308987498283, + 0.01270581316202879, + 0.015027137473225594, + 0.01927928254008293, + 0.005322412587702274, + 0.004067740403115749, + 1.8954540792037733e-5, + 0.018671832978725433, + 0.011057022958993912, + 0.023068608716130257, + 0.020450791344046593, + 0.0008334348094649613, + 0.005409190896898508, + 0.009805966168642044, + 0.0015195270534604788, + -0.012966148555278778, + -0.020913610234856606, + 0.008525984361767769, + -0.0033373550977557898, + -0.0002718606556300074, + 0.012604571878910065, + 0.024630621075630188, + 0.013631450943648815, + 0.0051886290311813354, + -0.0076292734593153, + -0.010478499345481396, + 0.00129806122276932, + -0.004252144601196051, + 0.035434540361166, + -0.009856587275862694, + 0.004140055738389492, + 0.01820901408791542, + 0.01000121794641018, + -0.01216344814747572, + -0.029996423050761223, + -0.0008090283954516053, + -0.023300018161535263, + 0.0005392016028054059, + 0.01423166785389185, + 0.005141624249517918, + -0.009422695264220238, + -0.007520800456404686, + -0.01899002119898796, + -0.0025491174310445786, + 0.019062336534261703, + 0.013248179107904434, + 0.00797638762742281, + 0.01436906773597002, + 0.014781265519559383, + 0.020638812333345413, + -0.009017729200422764, + 0.027682330459356308, + -0.017543712630867958, + 0.01068098284304142, + -0.010051839053630829, + 0.017196599394083023, + 0.01969871111214161, + 0.0014110540505498648, + -0.02599015086889267, + 0.017847437411546707, + 0.02629387564957142, + -0.008771856315433979, + 0.011729556135833263, + -0.021593375131487846, + 0.0038471785373985767, + 0.027624478563666344, + 0.013899017125368118, + 0.020233845338225365, + -0.005597210954874754, + 0.016025090590119362, + -0.00010203249257756397, + -0.01664700172841549, + 0.0011335436720401049, + 0.0030354384798556566, + -0.008677846752107143, + -0.004443780519068241, + -0.013862859457731247, + -0.010225395672023296, + 0.006110650021582842, + -0.01692180149257183, + -0.002699171891435981, + 0.00940100010484457, + -0.0002967190812341869, + 0.012828749604523182, + 0.011042559519410133, + 0.011100412346422672, + 0.02512236498296261, + -0.007325548678636551, + -0.004067740403115749, + -0.037835411727428436, + -0.005589979235082865, + 0.014723412692546844, + -0.010623130016028881, + -8.841686212690547e-5, + -0.011136570014059544, + 0.0019253971986472607, + 0.008005313575267792, + -0.0023159002885222435, + 0.0041834451258182526, + 0.003317468333989382, + 0.007564189378172159, + 0.019423913210630417, + -0.020537570118904114, + 0.015388714149594307, + -0.01152707263827324, + -0.0142822889611125, + -0.00551043264567852, + 0.014007490128278732, + 0.005387496203184128, + -0.0025635804049670696, + -0.0016614460619166493, + -0.012141753919422626, + -0.02147766947746277, + -0.02175246924161911, + 0.0015565886860713363, + 0.0034404045436531305, + 0.003288542153313756, + 0.00026960080140270293, + 0.004957219585776329, + -0.0034801780711859465, + -0.0010973860044032335, + -0.01152707263827324, + 0.00568037386983633, + 0.017861900851130486, + -0.030950985848903656, + 0.002317708218470216, + -0.011158264242112637, + 0.02619263343513012, + 0.014058111235499382, + 0.012467172928154469, + -0.0017816703766584396, + 0.04205862805247307, + 0.031471654772758484, + -0.0016524066450074315, + 0.01318309549242258, + 0.00274436897598207, + -0.003818252356722951, + -0.013819470070302486, + 0.0035000648349523544, + 0.00642160652205348, + 0.007119449786841869, + 0.022967366501688957, + -0.012872138991951942, + 0.005987714044749737, + 0.0039411885663867, + -0.014954822137951851, + -0.03641802817583084, + 0.010919623076915741, + -0.009899976663291454, + -0.02461615763604641, + -0.015692438930273056, + -0.006533695384860039, + -0.013349420391023159, + -0.011433063074946404, + 0.0023502500262111425, + -0.0036718137562274933, + 0.021029314026236534, + 0.010022913105785847, + -0.011671703308820724, + -0.01452816091477871, + 0.002352057956159115, + 0.010565278120338917, + -0.004299149848520756, + -0.015620123594999313, + 0.01634327694773674, + -0.009350379928946495, + 0.012264689430594444, + -0.00489575183019042, + -0.011346284300088882, + 0.002427989151328802, + -0.01920696720480919, + 0.03326507657766342, + -0.009176822379231453, + -0.026698840782046318, + -0.028101759031414986, + -0.0016623499104753137, + 0.003937572706490755, + -0.0039050308987498283, + -0.010623130016028881, + -0.0005554725648835301, + 0.0130529273301363, + -0.017977604642510414, + -0.0036681981291621923, + -0.010167543776333332, + -0.0023809841368347406, + 0.0004368301306385547, + 0.011418599635362625, + 0.015793681144714355, + 0.011382441967725754, + 0.0027606398798525333, + -0.0010377258295193315, + 0.02775464579463005, + -0.00536218611523509, + 0.0021965799387544394, + -0.008525984361767769, + 0.007434021681547165, + 0.011252273805439472, + -1.0840246432053391e-5, + 0.00881524570286274, + 0.006913350895047188, + -0.011006401851773262, + 0.004899367690086365, + 0.015113916248083115, + -0.0008234914857894182, + -0.006559005472809076, + -0.013508514501154423, + -0.010355563834309578, + -0.0013089084532111883, + -0.0015764754498377442, + 0.0007489162380807102, + 0.0033210841938853264, + -0.008207796141505241, + -0.026062466204166412, + -0.010370026342570782, + 0.004349770490080118, + 0.010760529898107052, + -0.0007669950718991458, + -0.011245043016970158, + -0.006107034627348185, + 0.005839467514306307, + 0.0037567843683063984, + 0.017182135954499245, + -0.013363883830606937, + 0.01245270948857069, + -0.023661594837903976, + 0.006689173169434071, + 0.016487907618284225, + 0.01939498633146286, + -0.03161628916859627, + -0.024934345856308937, + -0.0019398602889850736, + -0.009646872989833355, + -0.0067687202244997025, + 0.005123545415699482, + 0.005730994511395693, + -0.0010865386575460434, + 0.01929374597966671, + -0.0022562399972230196, + -0.020118141546845436, + 0.007361706346273422, + -0.005774383898824453, + -0.011396905407309532, + 0.0058575463481247425, + 0.035405613481998444, + 0.003626616671681404, + -0.014535392634570599, + 0.024081023409962654, + -0.008301806636154652, + -0.006193812936544418, + 0.009046655148267746, + 0.013833933509886265, + 0.010051839053630829, + 0.017934216186404228, + -0.012235763482749462, + -0.021405354142189026, + 0.006598779000341892, + 0.0013685687445104122, + 0.01899002119898796, + -0.0031547588296234608, + -0.018093310296535492, + 0.005958788096904755, + 0.003575995797291398, + 0.02205619402229786, + -0.008034239523112774, + -0.01161385141313076, + 0.013551903888583183, + -0.005799693986773491, + -0.004718578886240721, + -0.015779217705130577, + -0.0013459702022373676, + -0.019640859216451645, + 3.4067328670062125e-5, + -0.009603483602404594, + 0.0041147456504404545, + 0.013371115550398827, + -0.024355823174118996, + -0.004910214804112911, + -0.0033952074591070414, + 0.0001903928496176377, + 0.005662295036017895, + -0.013009537942707539, + 0.003275887109339237, + 0.005477890372276306, + -0.012785360217094421, + 0.004526943434029818, + -0.007636504713445902, + -0.029605919495224953, + 0.012676887214183807, + -0.029793940484523773, + -0.028492262586951256, + -0.009314222261309624, + 0.013378346338868141, + -0.007303853984922171, + 0.00920574925839901, + -0.007499105762690306, + 0.009531168267130852, + 0.004230450373142958, + -0.024543842300772667, + 0.00856214202940464, + -0.0014182855375111103, + 0.020450791344046593, + 0.015041600912809372, + 0.02371944673359394, + 0.022012803703546524, + -0.008793551474809647, + -0.010059070773422718, + 0.017746195197105408, + 0.010297711007297039, + -0.008207796141505241, + 0.0019850574899464846, + -0.02105824090540409, + -0.014101500622928143, + 0.006989282090216875, + -0.01344343088567257, + -0.002323131775483489, + 0.011447525583207607, + -0.012922760099172592, + -0.021318575367331505, + -0.001049477024935186, + -0.0013965909602120519, + -0.008330732583999634, + 0.015735827386379242, + 0.019149115309119225, + -0.00597686693072319, + 0.006154039409011602, + -0.0005432693287730217, + 0.006179349962621927, + 0.012177911587059498, + 0.005145239643752575, + 0.0036645822692662477, + -0.014477540738880634, + 0.005448964424431324, + -0.007636504713445902, + -0.008497058413922787, + 0.013551903888583183, + 0.002990241162478924, + -0.026048002764582634, + -0.03286011144518852, + -0.0026973639614880085, + -0.01461493968963623, + 0.00940100010484457, + -0.0035199513658881187, + -0.03633125126361847, + -0.0028926155064255, + 0.0026467430870980024, + -0.012980611994862556, + 0.000856937316711992, + 0.02539716474711895, + -0.010796687565743923, + 0.005980482324957848, + -0.007687125820666552, + 0.03630232438445091, + -0.015287472866475582, + 0.007564189378172159, + -0.008648919872939587, + -0.0023104767315089703, + 0.00914789643138647, + 0.014759570360183716, + 0.0026919404044747353, + 0.022027267143130302, + -0.01800653152167797, + 2.833294274751097e-5, + 0.004754736553877592, + 0.0004754736728500575, + 0.004758352413773537, + 0.0021459590643644333, + -0.007061597425490618, + 0.007260465063154697, + -0.006808493752032518, + -0.0033066209871321917, + -0.009617946110665798, + 0.003883336205035448, + -0.0152585469186306, + 0.010247090831398964, + 0.02678561955690384, + -0.0010223587742075324, + -0.012337004765868187, + 0.0181222353130579, + -0.004610105883330107, + -0.01496928557753563, + -0.006898887921124697, + -0.0012447285698726773, + -0.012315310537815094, + -0.011577693745493889, + 0.001876584254205227, + 0.010008449666202068, + 0.007361706346273422, + -0.017297839745879173, + 0.005293486174196005, + -0.012864907272160053, + -0.0008772760629653931, + -0.002238161163404584, + -0.016097405925393105, + 0.0075858840718865395, + 0.002690132474526763, + -0.012568414211273193, + 0.007401479873806238, + -0.016560222953557968, + 0.014448614791035652, + 0.02707488089799881, + 0.019915657117962837, + -0.022085119038820267, + 0.033438634127378464, + 0.011440293863415718, + -0.010746066458523273, + 0.0024876492097973824, + 0.013356652110815048, + -0.029200952500104904, + 0.02844887413084507, + 0.012575645931065083, + -0.005315180867910385, + -0.007766672410070896, + 0.006374601274728775, + -0.003977346234023571, + -0.020899146795272827, + 0.004436548799276352, + 0.027248438447713852, + -0.014043647795915604, + 0.006750641390681267, + -0.0352320559322834, + -0.00031231206958182156, + -0.01734123006463051, + 0.018093310296535492, + -0.029475752264261246, + -0.015981700271368027, + 0.038529638200998306, + 0.0019995204638689756, + 0.013710997067391872, + 0.0015791872283443809, + -0.022287601605057716, + -0.0007588596199639142, + 0.015374251641333103, + -0.015012674033641815, + -0.0015981700271368027, + -0.0028564578387886286, + 0.018874315544962883, + 0.03219481185078621, + 0.013494051061570644, + 0.01314693782478571, + -0.011722324416041374, + -0.0005206707864999771, + 0.010008449666202068, + -0.0018359068781137466, + 0.008887561038136482, + 0.0032162268180400133, + 0.0196697860956192, + -0.018266865983605385, + -0.0201759934425354, + -0.018830927088856697, + -0.008873097598552704, + -0.0017626875778660178, + -0.00191274203825742, + 0.014441383071243763, + 0.02292397804558277, + -0.013667608611285686, + 0.014896970242261887, + -0.013573598116636276, + 0.0015882266452535987, + -5.1750699640251696e-5, + -0.016806095838546753, + -0.0023610973730683327, + -0.007256849203258753, + -0.014925896190106869, + -0.005553821567445993, + 0.011158264242112637, + -0.016126330941915512, + 0.0023104767315089703, + 0.008685078471899033, + 0.015446566976606846, + -0.021607838571071625, + -0.016126330941915512, + -0.017587102949619293, + -0.0005771672003902495, + -0.0018548896769061685, + -7.203290442703292e-5, + 0.02205619402229786, + -0.0024695703759789467, + 0.013877322897315025, + -0.014549856074154377, + -0.01575029082596302, + -0.03100883774459362, + 0.00152585469186306, + 0.0058430833742022514, + 0.018556129187345505, + 0.02954806759953499, + -0.013537440448999405, + 0.009386537596583366, + 0.0280583705753088, + 0.009241906926035881, + -0.040988363325595856, + -0.01334218867123127, + -0.011411367915570736, + 0.010435109958052635, + -0.015142842195928097, + 0.004418469965457916, + 0.0172110628336668, + -0.014766802079975605, + 0.006703636609017849, + -0.006027487572282553, + -0.013631450943648815, + 0.00876462459564209, + 0.013862859457731247, + 0.00012078929285053164, + -0.014759570360183716, + -0.020812368020415306, + -0.015084989368915558, + 0.005720146931707859, + -0.020508643239736557, + -0.011078717187047005, + 0.014152121730148792, + 0.0006928718066774309, + -0.014810191467404366, + -0.012365931645035744, + 0.010022913105785847, + 0.01615525782108307, + -0.004382312297821045, + 0.0023755605798214674, + 0.012676887214183807, + -0.013125242665410042, + 0.028492262586951256, + 0.004989761859178543, + -0.04000487178564072, + 0.016965189948678017, + 0.00969026144593954, + 0.00425937632098794, + 0.0022327376063913107, + 0.014810191467404366, + -0.01702304184436798, + 0.0021785011049360037, + 0.017008578404784203, + 0.019221430644392967, + -0.005427269730716944, + -0.007542494684457779, + -0.000604285451117903, + 0.026756692677736282, + 0.003082443494349718, + -0.019713174551725388, + -0.0018440423300489783, + 0.020754516124725342, + -0.0031384876929223537, + -0.014940358698368073, + -0.020161530002951622, + 0.013081853277981281, + -0.0006874481332488358, + 0.005777999293059111, + 0.00608172407373786, + -0.03167413920164108, + -0.01122334785759449, + 0.012308078818023205, + 0.012915528379380703, + -0.00720622856169939, + 0.010666519403457642, + -0.006269744131714106, + 0.013884554617106915, + -0.0017988452455028892, + 0.0012510562082752585, + -0.004147287458181381, + -0.014542624354362488, + 0.001039533643051982, + 0.0038363311905413866, + -0.008258417248725891, + 0.013414504006505013, + -0.00047095396439544857, + -0.012235763482749462, + 0.007079676259309053, + -0.0013170440215617418, + -0.007303853984922171, + 0.010362794622778893, + 0.019742101430892944, + -0.008431973867118359, + -0.004581179935485125, + 0.009762577712535858, + 0.018483813852071762, + 0.01593831181526184, + -0.010702677071094513, + -0.001619864720851183, + -0.013580829836428165, + -0.007419558707624674, + 0.004234065767377615, + 0.003999040927737951, + 0.008316269144415855, + -0.0137760816141963, + 0.01722552441060543, + 0.013400041498243809, + 0.02146320603787899, + 0.013956869952380657, + 0.007571421097964048, + -0.006848267279565334, + -0.00033604056807234883, + -0.0012347851879894733, + -0.0004106158157810569, + -0.002775103086605668, + -0.018136698752641678, + 0.016169721260666847, + -0.0034747542813420296, + -0.01929374597966671, + -0.001416477607563138, + 0.01583706960082054, + -0.024471526965498924, + 0.0021766931749880314, + -0.005138008389621973, + -0.005434501450508833, + -0.009813197888433933, + 0.032426219433546066, + 0.002789566060528159, + 0.0013758002314716578, + 0.00826564896851778, + -0.0014372683363035321, + 0.00026033539324998856, + 0.005401959642767906, + 0.011042559519410133, + 0.013862859457731247, + -0.009596251882612705, + -0.013327726162970066, + 0.0037061634939163923, + 0.0014435959747061133, + -0.006613241974264383, + 0.003926725592464209, + 0.0007868818356655538, + 0.006916966754943132, + -0.003203571541234851, + -0.017051968723535538, + -0.01186695508658886, + -0.0021622299682348967, + -0.007264080457389355, + -0.012676887214183807, + -0.016372203826904297, + 0.0032668476924300194, + 0.021043777465820312, + -0.013501282781362534, + -0.013718228787183762, + 0.018353644758462906, + 0.04023628309369087, + -0.018339181318879128, + 0.008388584479689598, + -0.009842123836278915, + -0.017789585515856743, + 0.014629403129220009, + -1.8290707885171287e-5, + 0.00304086203686893, + 0.007795598823577166, + -4.612930933944881e-5, + 0.025353774428367615, + -0.009126202203333378, + 0.001654214458540082, + 0.013797775842249393, + -0.005224786698818207, + -0.018064383417367935, + 0.010319406166672707, + -0.007556958124041557, + -0.019438376650214195, + 0.008048702962696552, + -0.016719317063689232, + 0.000634115538559854, + -0.00969026144593954, + -0.00351814366877079, + 0.022793810814619064, + 0.0011624698527157307, + 0.0014345564413815737, + -0.002832955215126276, + 0.028926154598593712, + 0.014766802079975605, + -0.0021586143411695957, + -0.010565278120338917, + -0.021535523235797882, + 0.00791853480041027, + -0.03364111855626106, + 0.008374121971428394, + 0.015475492924451828, + 0.01713874749839306, + 0.0036103457678109407, + 0.015330862253904343, + -0.00017366991960443556, + 0.0034747542813420296, + -0.01829579286277294, + -0.02107270434498787, + 0.0052971020340919495, + -0.002297821454703808, + 0.013306031003594398, + -0.015186231583356857, + -0.0013143321266397834, + -0.003991809207946062, + -0.006869961973279715, + -0.008294574916362762, + -0.04009165242314339, + -0.0014137658290565014, + 0.021897099912166595, + 0.01622757315635681, + 0.02668437734246254, + 0.006602394860237837, + -0.016025090590119362, + 0.005253713112324476, + 0.0011877802899107337, + -0.006703636609017849, + -0.007520800456404686, + -0.017442472279071808, + -0.028116222470998764, + 0.002695556031540036, + 0.005792462732642889, + -0.005412806756794453, + -0.012734740041196346, + 0.018368108198046684, + 0.024890955537557602, + 0.021824784576892853, + -0.008880329318344593, + 0.0022960135247558355, + -0.012655192986130714, + 0.0009093660046346486, + 0.0008537735557183623, + 0.018136698752641678, + -0.019756563007831573, + -0.00489575183019042, + 0.010348332114517689, + 0.004519711714237928, + -0.009581788443028927, + 0.02490541897714138, + -0.008930950425565243, + -0.020450791344046593, + -0.012691350653767586, + 0.01849827542901039, + 0.016097405925393105, + 0.02363266795873642, + 0.02460169419646263, + -0.0023159002885222435, + 0.01436906773597002, + -0.02244669571518898, + 0.005676758009940386, + -0.006653015501797199, + 0.014332910068333149, + -0.004487169906497002, + 0.009437157772481441, + 0.005232018418610096, + 0.012814286164939404, + 0.01751478761434555, + 0.005821388680487871, + -0.001238401047885418, + -0.021839246153831482, + 0.009733650833368301, + -0.02895508147776127, + 0.005495969206094742, + -0.022764883935451508, + 0.031558435410261154, + 0.010514657013118267, + 0.001876584254205227, + -0.008909255266189575, + -0.018541665747761726, + 0.005456196144223213, + 0.007047134451568127, + -0.007990850135684013, + -0.006743409670889378, + 0.01692180149257183, + -0.0011019057128578424, + -0.013747154735028744, + -0.021289650350809097, + 0.008048702962696552, + 0.009516704827547073, + 0.01161385141313076, + -0.02029169723391533, + -0.020523106679320335, + -0.004765584133565426, + -0.031269174069166183, + -0.010059070773422718, + -0.015432103537023067, + 0.024442600086331367, + -0.014050879515707493, + -0.00398457795381546, + -0.01603955216705799, + 0.004487169906497002, + -0.006671094335615635, + -0.016372203826904297, + -0.01402195356786251, + 0.02431243285536766, + -0.004136440344154835, + 0.01780404895544052, + -0.03161628916859627, + 0.021723542362451553, + 0.016965189948678017, + -0.014361836016178131, + -0.007144760340452194, + 0.010905160568654537, + -0.0009617946343496442, + -0.00017299196042586118, + 0.012467172928154469, + -0.01909126155078411, + -0.002838379004970193, + 0.017543712630867958, + -0.0022562399972230196, + 0.007824525237083435, + -0.01861398108303547, + -0.011830797418951988, + -0.007911303080618382, + -0.011505378410220146, + 0.0043172286823391914, + -0.0011272161500528455, + 0.005900935735553503, + -0.01713874749839306, + -0.014123194850981236, + 0.02580212987959385, + 0.01920696720480919, + 0.05209600552916527, + 0.03228158876299858, + 0.01308908499777317, + -0.0028058369643986225, + 0.03945527598261833, + -0.028304243460297585, + 0.017500324174761772, + 0.0142822889611125, + -0.03329400345683098, + -0.007593115791678429, + -0.015012674033641815, + -0.003353626001626253, + 0.02577320486307144, + 0.00622997060418129, + -0.019438376650214195, + -0.005087387282401323, + -0.008967108093202114, + -0.0043172286823391914, + 0.003077019704505801, + -0.0071266815066337585, + -0.009856587275862694, + -0.0016777169657871127, + -0.016863947734236717, + 0.013942406512796879, + 0.011302894912660122, + -0.0026774771977216005, + -0.0017202022718265653, + -0.025527331978082657, + -0.01000121794641018, + -0.007904072292149067, + 0.043938830494880676, + -0.003362665418535471, + -0.0076003470458090305, + -0.005991329904645681, + -0.0022815505508333445, + 0.007744978182017803, + -0.0008008928853087127, + 0.014853580854833126, + -0.0012158025056123734, + 0.001268231077119708, + 0.015591197647154331, + -0.015041600912809372, + 0.004617337603121996, + -0.011678935028612614, + -0.002292397664859891, + -0.01731230318546295, + 0.019944583997130394, + -0.025628572329878807, + 0.02341572195291519, + -0.015113916248083115, + 0.007419558707624674, + -0.0038507943972945213, + -0.015489956364035606, + -0.012026049196720123, + 0.019120188429951668, + 0.01702304184436798, + 0.027986055240035057, + -0.010109690949320793, + -0.012286384589970112, + -0.022200824692845345, + -0.0015240467619150877, + 0.015909384936094284, + 0.013588061556220055, + 0.010905160568654537, + -0.023647131398320198, + 0.02737860567867756, + -0.00666747847571969, + -0.01309631671756506, + -0.007137528620660305, + -0.015706902369856834, + 0.01712428405880928, + -0.009979523718357086, + -0.008663383312523365, + -0.02194048836827278, + -0.01564905047416687, + -0.005712915677577257, + -0.026612062007188797, + 0.009169590659439564, + -0.020508643239736557, + 0.017254451289772987, + -0.015981700271368027, + -0.0037387055344879627, + -0.0005970539059489965, + 0.0023448264691978693, + -0.01462217140942812, + 0.005470659118145704, + -0.01313970610499382, + -0.004346154630184174, + -0.006916966754943132, + 0.004678805358707905, + -0.017890827730298042, + -0.00411112979054451, + -0.00940100010484457, + 0.02273595705628395, + 0.013103548437356949, + -0.013645913451910019, + -0.014101500622928143, + 0.0045486376620829105, + -0.003463907167315483, + -0.008012545295059681, + -0.004552253521978855, + -0.0020971461199223995, + 0.009480547159910202, + 0.025570720434188843, + -0.00765096815302968, + -0.019655322656035423, + 0.002997472882270813, + 0.011425831355154514, + 0.012611803598701954, + 0.035492390394210815, + -0.016560222953557968, + -0.011252273805439472, + 0.020450791344046593, + 0.010449573397636414, + -0.035405613481998444, + 0.018787536770105362, + 0.0037965578958392143, + 0.008359658531844616, + -0.01861398108303547, + 0.020812368020415306, + -0.012611803598701954, + 0.006428837776184082, + 0.039426349103450775, + 0.00703628733754158, + 0.000376491982024163, + -0.008280111476778984, + 0.009184054099023342, + 0.021911561489105225, + -0.0023303632624447346, + -0.0021857325918972492, + 0.018975557759404182, + -0.0011407752754166722, + -0.010145848616957664, + 0.02351696416735649, + -0.009892744943499565, + 0.000267566938418895, + 0.014289520680904388, + -0.007227922789752483, + -0.004863210022449493, + -0.00787514541298151, + -0.0052573285065591335, + -0.003621193114668131, + 0.015403177589178085, + 0.017789585515856743, + 0.014470309019088745, + -0.0036103457678109407, + -0.004400391131639481, + 0.011888649314641953, + 0.008316269144415855, + 0.006895272061228752, + -0.007484642788767815, + -0.0007249617483466864, + 0.0031637982465326786, + -0.009943366050720215, + -0.002362905303016305, + 0.01751478761434555, + 0.009646872989833355, + 0.018368108198046684, + -0.01156323030591011, + -0.002089914632961154, + -0.004215986933559179, + 0.014687255024909973, + 0.0069639720022678375, + 0.02037847600877285, + 0.00044496561167761683, + -0.013624219223856926, + 0.013877322897315025, + 0.011367978528141975, + -0.021087167784571648, + 0.0023249397054314613, + -0.004624568857252598, + -0.0048234364949166775, + -0.005727378651499748, + -0.011172727681696415, + -0.0005920822150073946, + 0.002263471717014909, + -0.017601564526557922, + -0.01250333059579134, + -0.031355950981378555, + -0.010059070773422718, + 0.013530208729207516, + 0.019423913210630417, + 0.03219481185078621, + -0.009914439171552658, + 0.013747154735028744, + -0.012987843714654446, + -0.013255410827696323, + -0.0030535173136740923, + -0.007846219465136528, + 0.0005740033811889589, + 0.0008384065004065633, + 0.006483074277639389, + -0.01397856418043375, + 0.0112161161378026, + 0.0009093660046346486, + 0.00014598669076804072, + 0.013320494443178177, + -0.005087387282401323, + 0.0025292306672781706, + 0.013537440448999405, + 0.0027027875185012817, + -0.032252661883831024, + -0.009046655148267746, + -0.01127396896481514 + ], + "7c6b9285-17da-4a33-b28a-7e96d60a0e9c": [ + -0.010376199148595333, + -0.009298852644860744, + -0.016039004549384117, + -0.013668841682374477, + -0.05394815653562546, + -0.006763719953596592, + -0.012638628482818604, + 0.056129783391952515, + 0.011298677884042263, + 0.0703507661819458, + -0.0001419278560206294, + 0.013453371822834015, + -0.021735478192567825, + -0.0062620798125863075, + -0.030919861048460007, + -0.003088956233114004, + -0.041127726435661316, + 0.028441963717341423, + -0.005743606947362423, + 0.0022944125812500715, + 0.05903862044215202, + -0.043013084679841995, + -0.014396050944924355, + 0.031027596443891525, + -0.0213045384734869, + -0.015944737941026688, + 0.041316259652376175, + -0.009285385720431805, + 0.0008374690660275519, + 0.005026497412472963, + -0.008140703663229942, + 0.022031748667359352, + 0.03528311848640442, + -0.007905034348368645, + -0.0008921780972741544, + -0.013655374757945538, + -0.009292119182646275, + 0.04005037993192673, + -0.007581830024719238, + 0.0006548250094056129, + -0.020577330142259598, + 0.012975298799574375, + 0.030408121645450592, + 0.009446987882256508, + -0.016914349049329758, + 0.033667098730802536, + 0.03062359057366848, + 0.010477200150489807, + 0.01851690374314785, + 0.00601294357329607, + 0.0016538961790502071, + 0.0317278727889061, + -0.01106300763785839, + 0.0042151203379035, + 0.02121027186512947, + -0.004605658818036318, + 0.014180581085383892, + 0.08354827016592026, + 0.03886529803276062, + -0.00933925248682499, + 0.004033318255096674, + 0.0031041062902659178, + 0.01205955445766449, + 0.0036057461984455585, + -0.012409691698849201, + -0.028091825544834137, + 0.008612043224275112, + -0.0008429399458691478, + -0.009130517020821571, + -0.0029054705519229174, + 0.003555245464667678, + 0.01582353562116623, + -0.04794194549322128, + -0.005635872017592192, + -0.01754729077219963, + -0.010322332382202148, + 0.02698754519224167, + -0.02693367749452591, + 0.0007604555576108396, + 0.007898300886154175, + -0.027539685368537903, + 0.032966822385787964, + 0.012732896022498608, + 0.002764068776741624, + 0.05656072124838829, + 0.019823186099529266, + -0.029923316091299057, + -0.034609775990247726, + -0.05914635583758354, + 0.0011977070244029164, + 0.012665562331676483, + 0.01579660177230835, + 0.005625771824270487, + 0.00311588984914124, + -0.023647768422961235, + -0.026677807793021202, + 0.014301782473921776, + 0.025236856192350388, + -0.036710601300001144, + -0.01115727610886097, + -0.01742609031498432, + 0.041100792586803436, + -0.03617192804813385, + -0.005538237281143665, + 0.011810417287051678, + -0.02405177429318428, + -0.006767086684703827, + -0.015608065761625767, + -0.0288729015737772, + 0.03541778773069382, + 0.023876704275608063, + -0.03151240199804306, + 0.00555507093667984, + 0.01026173122227192, + 0.012766563333570957, + -0.08182451128959656, + -0.014544186182320118, + -0.02399790659546852, + 0.01250396016985178, + -0.08166290819644928, + 0.03924236819148064, + 0.034932978451251984, + 0.021870145574212074, + -0.011736350134015083, + 0.01867850497364998, + -0.02681247517466545, + -0.02696061134338379, + -0.012322157621383667, + 0.007898300886154175, + 0.023418832570314407, + -0.0016808297950774431, + -0.03056972473859787, + -0.032024141401052475, + 0.032024141401052475, + -0.01536566298455, + 0.014463384635746479, + 0.026152601465582848, + 0.04621819034218788, + -0.023863239213824272, + 0.06367121636867523, + -0.00842350721359253, + 0.0004122115205973387, + 0.004235320724546909, + -0.02779555507004261, + -0.001747322385199368, + -0.0046258592046797276, + -0.0330476239323616, + 0.03867676109075546, + 0.00383468228392303, + 0.011823884211480618, + -0.02498098649084568, + 0.014476851560175419, + 0.04710700362920761, + 0.010403132997453213, + 0.0020116090308874846, + 0.01850343681871891, + 0.011325611732900143, + 0.018207166343927383, + -0.034636709839105606, + -0.008342706598341465, + -0.0031057896558195353, + -0.04557178169488907, + 0.021062135696411133, + -0.0032640250865370035, + 0.008342706598341465, + 0.003391959937289357, + 0.06361734867095947, + 0.007804032880812883, + -0.056883927434682846, + 0.02589673176407814, + 0.02491365186870098, + -0.020038656890392303, + 0.00029395584715530276, + -0.005147699266672134, + -0.0195134487003088, + -0.01676621474325657, + 0.018059030175209045, + 0.001073138671927154, + 0.031216131523251534, + -0.03420577198266983, + 0.0232302974909544, + -0.013978579081594944, + -0.02318989671766758, + -0.004821128211915493, + 0.0011413146276026964, + 0.014961658045649529, + 0.04064292088150978, + 0.0002112610382027924, + -0.010874472558498383, + 0.019877053797245026, + 0.00047218104009516537, + 0.014247915707528591, + 0.0335862971842289, + 0.03399030119180679, + -0.008012768812477589, + -0.02492711879312992, + -0.01585046947002411, + -0.016995150595903397, + 0.0315932035446167, + 0.01936531439423561, + -0.025506192818284035, + -0.04627205803990364, + -0.0634557455778122, + 0.019917454570531845, + -0.04516777768731117, + -0.0043464223854243755, + 0.002723668236285448, + -0.027351150289177895, + 0.004975996911525726, + -0.01672581396996975, + 0.023688169196248055, + -0.008443707600235939, + 0.009709591045975685, + -0.005063531454652548, + -0.02798409014940262, + -0.005622405093163252, + -0.008948714472353458, + 0.012153821997344494, + 0.007783832959830761, + -0.010106862522661686, + -0.019648117944598198, + 0.012557826936244965, + 0.03619886189699173, + -0.04250134155154228, + -0.054325226694345474, + -0.01757422462105751, + -0.016106339171528816, + 0.017277954146265984, + -0.03867676109075546, + -0.01337930466979742, + 0.05103931948542595, + 0.008517775684595108, + -0.010167463682591915, + -0.03724927455186844, + -0.01677968166768551, + -0.010120329447090626, + 0.0008256855653598905, + -0.02134493924677372, + 0.024805916473269463, + -0.0014535769587382674, + 0.056991662830114365, + 0.0028751699719578028, + 0.010147263295948505, + 0.012335624545812607, + 0.027418483048677444, + 0.027499284595251083, + -0.041100792586803436, + 0.04438669979572296, + 0.02766088768839836, + -0.0023684801999479532, + -0.005171265918761492, + 0.0353100523352623, + -0.0011371062137186527, + -0.018112897872924805, + -0.0018634737934917212, + 0.043201617896556854, + -0.002927354071289301, + -0.010834071785211563, + -0.03329002484679222, + -0.03337082639336586, + -0.01772236078977585, + -0.017951296642422676, + -0.00668291887268424, + -0.032778285443782806, + 0.04058905318379402, + -0.01848996989428997, + 0.015271395444869995, + -0.036737535148859024, + 0.009938526898622513, + -0.006571817211806774, + -0.05580658093094826, + -0.007339427247643471, + -0.0007352052489295602, + 0.006016310304403305, + -0.012618428096175194, + -0.0038212155923247337, + 0.008612043224275112, + -0.0035013779997825623, + -0.0034744443837553263, + 0.01113707572221756, + -0.005302567966282368, + 0.008127237670123577, + 0.014220981858670712, + 0.03816502168774605, + -0.014732721261680126, + -0.027149146422743797, + 0.02784942276775837, + 0.006810853723436594, + -0.029977183789014816, + -0.041262395679950714, + 0.0007882309146225452, + -0.020658129826188087, + 0.027108745649456978, + 0.00044566820724867284, + 0.02511565387248993, + -0.002562066074460745, + -0.01205282099545002, + -0.0015966620994731784, + 0.026677807793021202, + 0.015567665919661522, + -0.02976171299815178, + -0.005039964336901903, + 0.019661584869027138, + -0.018907440826296806, + -0.013008966110646725, + 0.00602641049772501, + 0.022705089300870895, + -0.014719255268573761, + -0.040292780846357346, + -0.005911942105740309, + 0.044602170586586, + 0.01850343681871891, + -0.011857551522552967, + 0.004511390812695026, + -0.003955883905291557, + 0.03361323103308678, + 0.041100792586803436, + 0.025735128670930862, + -0.0022641122341156006, + -0.027607019990682602, + 0.013022433035075665, + 0.004999564029276371, + -0.04511390998959541, + -0.007299026474356651, + 0.020577330142259598, + -0.02596406452357769, + 0.0018819906981661916, + 0.019082510843873024, + -0.009574922733008862, + -0.02766088768839836, + -0.020038656890392303, + -0.0120124202221632, + -0.014086313545703888, + -0.045868054032325745, + 0.009191117249429226, + 0.011514146812260151, + -0.02696061134338379, + -0.0447368398308754, + -0.016012070700526237, + 0.010423333384096622, + -0.0297347791492939, + 0.02582939714193344, + -0.049450233578681946, + 0.021870145574212074, + 0.01586393639445305, + -0.003405426861718297, + 0.005201566498726606, + 0.030919861048460007, + 0.008618776686489582, + -0.012174022383987904, + 0.0006657668272964656, + -0.02768781967461109, + 0.0484536848962307, + 0.00254523241892457, + 0.012692495249211788, + 0.009487387724220753, + -0.030246520414948463, + 0.003152923658490181, + -0.02881903573870659, + 0.025371523573994637, + -0.004046785179525614, + -0.01680661551654339, + -0.008389840833842754, + -0.02211255021393299, + -0.000415367801906541, + 0.008591842837631702, + 0.031997207552194595, + 0.015002058818936348, + 0.029465442523360252, + 0.011480480432510376, + -0.009197850711643696, + 0.030300388112664223, + 0.01018766313791275, + 0.021089069545269012, + -0.03609112650156021, + -0.004864895716309547, + 0.04662219434976578, + 0.00978365819901228, + -0.029330775141716003, + 0.024334577843546867, + -0.0006320997490547597, + 0.01764155924320221, + 0.020011723041534424, + -0.019095977768301964, + 0.0626477375626564, + 0.02670474164187908, + 0.009049715474247932, + -0.001743955654092133, + -0.02884596958756447, + -0.025223389267921448, + -0.02595059759914875, + -0.01427484955638647, + -0.01945958286523819, + -0.0032505581621080637, + -0.041370127350091934, + 0.011507413350045681, + 0.004295921418815851, + 0.023553501814603806, + -0.0003509794769342989, + -0.01115727610886097, + -0.005696472711861134, + 0.0039962842129170895, + 0.003545145271345973, + -0.0051914663054049015, + 0.029142240062355995, + -0.028226494789123535, + 0.0009064865880645812, + 0.0033364093396812677, + -0.0068445210345089436, + 0.01862463727593422, + 0.012530893087387085, + -0.019217178225517273, + 0.002077259821817279, + -0.0077434321865439415, + 0.03423270583152771, + -0.02873823419213295, + 0.04015811160206795, + 0.01162861566990614, + -0.07649164646863937, + -0.003344826167449355, + 0.025654327124357224, + 0.05656072124838829, + -0.0023230297956615686, + 0.0008000144152902067, + -0.01586393639445305, + 0.023755503818392754, + 0.03598339483141899, + 0.013534173369407654, + 0.007783832959830761, + -0.0032741252798587084, + -0.013554372824728489, + 0.002716934774070978, + -0.016254475340247154, + -0.02134493924677372, + 0.0011253227712586522, + 3.9690352423349395e-5, + 0.01026846468448639, + 0.000880394596606493, + -0.01581006869673729, + -0.003972717560827732, + 0.04080452024936676, + 0.0014476851793006063, + 0.011945085600018501, + -0.009972194209694862, + -0.027297282591462135, + -0.03695300593972206, + -0.016025537624955177, + 0.002647917252033949, + 0.002863386645913124, + 0.014288315549492836, + -0.0013264836743474007, + 0.04387496039271355, + -0.05470230057835579, + 0.01665847934782505, + -0.003743781242519617, + 0.014503785409033298, + -0.026489272713661194, + -0.005635872017592192, + 0.01945958286523819, + 0.006453982554376125, + -0.010483933612704277, + 0.014247915707528591, + 0.036737535148859024, + -0.022691624239087105, + 0.021035201847553253, + -0.030973728746175766, + -0.02122373878955841, + 0.004437323193997145, + 0.0020082422997802496, + -0.028388096019625664, + -0.01766849309206009, + 0.027176080271601677, + -0.003225307911634445, + 0.004622492473572493, + -0.016241008415818214, + -0.0032572916243225336, + 0.027054879814386368, + -5.271004920359701e-5, + 0.041100792586803436, + -0.022503087297081947, + -0.015500331297516823, + -0.028926769271492958, + -0.029977183789014816, + 0.0020351759158074856, + 0.02317642979323864, + 0.016469944268465042, + -0.03151240199804306, + 0.005672906059771776, + -0.008814046159386635, + -0.01758769154548645, + 0.03261668235063553, + -0.0006034827092662454, + -0.01742609031498432, + -0.03256281465291977, + -0.002942504361271858, + -0.057853538542985916, + 0.002950920956209302, + -0.013311970047652721, + -0.010605135932564735, + -0.025479258969426155, + 0.05133558809757233, + -0.033882565796375275, + 0.011440079659223557, + 0.021668143570423126, + 0.0018786239670589566, + 0.00150828598998487, + -0.02766088768839836, + -0.022718556225299835, + 0.01535219606012106, + -0.008369640447199345, + 0.0213045384734869, + 0.016106339171528816, + -0.014261382631957531, + -0.016429543495178223, + -0.005585371516644955, + 0.009675923734903336, + -0.004181453492492437, + 0.023755503818392754, + 0.01399204507470131, + -0.03401723504066467, + -0.0024408644530922174, + 0.007541429717093706, + -0.022651223465800285, + 0.008504308760166168, + 0.0004654476069845259, + -0.00668965233489871, + -0.005066898185759783, + 0.021089069545269012, + 0.0071845585480332375, + -0.02884596958756447, + -0.007076823618263006, + 0.006962355691939592, + -0.016012070700526237, + -0.007117224391549826, + 0.01776275970041752, + -0.0195134487003088, + 0.028415029868483543, + -0.009446987882256508, + -0.00581430783495307, + 0.03129693493247032, + -0.029384642839431763, + 0.04629899188876152, + -0.01531179528683424, + -0.036764468997716904, + 0.016375675797462463, + 0.02798409014940262, + -0.028926769271492958, + 0.010457000695168972, + 0.005497836973518133, + 0.013749642297625542, + -0.031162265688180923, + -0.000880394596606493, + 0.004999564029276371, + -0.013493772596120834, + 0.00974999088793993, + -0.028415029868483543, + 0.021789345890283585, + 0.002588999690487981, + -0.030892929062247276, + -0.009669190272688866, + 0.02401137351989746, + -0.020927468314766884, + 0.011918152682483196, + 0.0013761426089331508, + -0.04522164538502693, + -0.0019358580466359854, + -0.03883836418390274, + 0.03816502168774605, + 0.009137250483036041, + 0.009244984947144985, + 0.009608589112758636, + 0.023459233343601227, + 0.028118759393692017, + -0.010894672945141792, + -0.03401723504066467, + 0.02603139914572239, + 0.003481177845969796, + 0.03223961219191551, + -0.006861354224383831, + 0.00888137985020876, + 0.02515605464577675, + -0.03711460903286934, + 0.002907153917476535, + -0.02500792033970356, + 0.015096326358616352, + 0.010524334385991096, + -0.040400516241788864, + -0.03547165170311928, + -0.017224086448550224, + 0.014853923581540585, + -0.004760527517646551, + 0.029276907444000244, + 0.030192652717232704, + -0.016214074566960335, + -0.03590259328484535, + 0.005531503818929195, + -0.003545145271345973, + -0.0074067614041268826, + 0.0034441440366208553, + -0.005265533924102783, + -0.009628789499402046, + 0.025277256965637207, + 0.02582939714193344, + -0.02865743264555931, + -0.0023129296023398638, + 0.014948191121220589, + -0.025613928213715553, + -0.02049652859568596, + -0.03369402885437012, + -0.0021210270933806896, + -0.0004612392222043127, + -0.00047849360271357, + 0.01952691562473774, + -0.009379653260111809, + 0.04328241944313049, + 0.03407110273838043, + 0.024765515699982643, + 0.01291469857096672, + 0.012322157621383667, + -0.02406524121761322, + 0.030219586566090584, + -0.036441266536712646, + 0.05952342599630356, + -0.03601032868027687, + 0.028307294473052025, + -0.016981683671474457, + -0.009615322574973106, + -0.024846317246556282, + -0.008107037283480167, + 0.008551442995667458, + 0.004804294556379318, + -0.002169844461604953, + 0.013251369819045067, + -0.041127726435661316, + 0.039565570652484894, + 0.0041679865680634975, + 0.016321808099746704, + 0.010827338322997093, + -0.027189547196030617, + 0.021695077419281006, + -0.01336583774536848, + -0.011918152682483196, + -0.0015604699729010463, + -0.0007899142801761627, + -0.015392596833407879, + -0.018759306520223618, + -0.035633254796266556, + 0.021897079423069954, + 0.032939888536930084, + 0.007723232265561819, + -0.04511390998959541, + -0.012665562331676483, + 0.044036563485860825, + 0.01204608753323555, + -0.012396224774420261, + -0.04263601079583168, + -0.029088372364640236, + 0.011716149747371674, + 0.01381697691977024, + -0.01665847934782505, + 0.0008778695482760668, + -0.015069392509758472, + -0.008840980008244514, + 0.015459930524230003, + 0.02403830736875534, + 0.016106339171528816, + -0.006029777228832245, + 0.006996022537350655, + -0.008719777688384056, + 0.012167288921773434, + -0.0018483236199244857, + 0.0017288054805248976, + 0.013736175373196602, + 0.01859770528972149, + 0.003428993746638298, + -0.036656733602285385, + 0.014409517869353294, + -0.024725116789340973, + 0.01752035692334175, + -0.02024065889418125, + -0.010739804245531559, + 0.005380002316087484, + -0.01761462539434433, + 0.011460280045866966, + 0.03054279088973999, + -0.01651034504175186, + 0.0074067614041268826, + 0.02782248891890049, + -0.025384990498423576, + 0.003935683518648148, + 0.022381886839866638, + 0.0016185457352548838, + -0.01071287039667368, + 0.001993092242628336, + -0.006639151368290186, + 0.0056998394429683685, + -0.028334228321909904, + 0.006282280199229717, + 0.011918152682483196, + -0.03972717374563217, + -0.023459233343601227, + -0.009534521959722042, + -0.005346335005015135, + 0.004026584792882204, + -0.010834071785211563, + 0.04190880060195923, + -0.018126364797353745, + -0.0011876068310812116, + 0.004703293554484844, + -0.026435405015945435, + 0.027162613347172737, + -0.001199390273541212, + 0.005948976147919893, + 0.0222337506711483, + 0.008659177459776402, + 0.00383468228392303, + -0.014194048009812832, + 0.006787286605685949, + -0.0039962842129170895, + 0.02970784716308117, + -0.020186791196465492, + 0.049719568341970444, + -0.0009611956193111837, + -0.042124271392822266, + -0.047645676881074905, + 0.018072497099637985, + 0.02426724322140217, + -0.004191553685814142, + 0.0012431575451046228, + -0.010362732224166393, + 0.04627205803990364, + 0.001979625318199396, + -0.03250895068049431, + 0.016469944268465042, + -0.015904337167739868, + -0.02671820856630802, + -0.012214423157274723, + 0.010780204087495804, + 0.03821888938546181, + -0.014126714318990707, + -0.009042982012033463, + -0.019203711301088333, + 0.02418644167482853, + -0.00536316866055131, + 0.03143160045146942, + 0.015015524812042713, + -0.016039004549384117, + -0.00646408274769783, + 0.0015225944807752967, + 0.023930571973323822, + 0.05823061242699623, + -0.006049977149814367, + 0.06043917313218117, + 0.02399790659546852, + -0.0029744880739599466, + -0.020900534465909004, + -0.011891218833625317, + 0.027081813663244247, + -0.007938701659440994, + 0.02030799351632595, + -0.01587740331888199, + 0.009662456810474396, + 0.013251369819045067, + -0.01567539945244789, + 0.019971322268247604, + 0.006120678037405014, + -0.021021734923124313, + 0.03423270583152771, + 0.028522765263915062, + -0.03218574449419975, + 0.012396224774420261, + 0.01289449818432331, + 0.023917105048894882, + 0.02487325109541416, + 0.003019938711076975, + -0.020025189965963364, + 0.051362521946430206, + 0.02951931022107601, + -0.0297347791492939, + 0.01383044384419918, + -0.04734940454363823, + -0.03407110273838043, + -0.0007873892318457365, + -0.022920560091733932, + -0.00690848845988512, + -0.004777361173182726, + 0.03536392003297806, + 0.029303841292858124, + -0.016995150595903397, + 0.01589087024331093, + 0.020590797066688538, + 0.004841328598558903, + -0.009729791432619095, + -0.010935072787106037, + 0.000993179390206933, + 0.01024826429784298, + 0.018166765570640564, + -0.018368767574429512, + -0.010174197144806385, + 0.005558437667787075, + -0.0082619059830904, + -0.04826515167951584, + 0.02609873376786709, + 0.039457838982343674, + -0.0033768098801374435, + -0.006053343880921602, + 0.013924711383879185, + 0.011857551522552967, + 0.034717511385679245, + -0.0036360465455800295, + -0.03420577198266983, + -0.0062115793116390705, + 0.021641209721565247, + 0.03886529803276062, + 0.013588040135800838, + -0.00533623481169343, + -0.020563863217830658, + -0.008335973136126995, + -0.00255869934335351, + -0.03218574449419975, + 0.001714496873319149, + 0.008477374911308289, + 0.026637407019734383, + 0.04888462647795677, + -0.0214392077177763, + -0.03967330604791641, + 0.009487387724220753, + -0.004359888844192028, + 0.01768196001648903, + 0.018045563250780106, + 0.012423158623278141, + -0.01587740331888199, + -0.010894672945141792, + 0.031916409730911255, + 0.012396224774420261, + 0.07045850157737732, + -0.04387496039271355, + -0.00765589764341712, + -0.010012594982981682, + -0.02298789471387863, + 0.0041174860671162605, + -0.024698182940483093, + -0.02774168737232685, + 0.0029627045150846243, + 0.010867739096283913, + 0.014948191121220589, + 0.007373094093054533, + -0.0028516030870378017, + 0.041370127350091934, + 0.014234448783099651, + -2.538183434808161e-5, + -0.008356173522770405, + -0.007265359628945589, + 0.007103757467120886, + -0.021789345890283585, + 0.021924013271927834, + 0.019015176221728325, + 0.013439904898405075, + 0.009736524894833565, + 0.007844433188438416, + 0.004521491006016731, + 0.006551617290824652, + -0.009817325510084629, + -0.03140466660261154, + 0.0036326798144727945, + -0.0032640250865370035, + -0.015904337167739868, + 0.006480916403234005, + -0.006989289540797472, + 0.005184732843190432, + -0.0010083295637741685, + 0.005221766885370016, + 0.011251543648540974, + -0.0026159335393458605, + -0.04718780145049095, + -0.032805219292640686, + -0.03458284214138985, + -0.009574922733008862, + -0.007857900112867355, + 0.012887764722108841, + 0.007581830024719238, + 0.006982556078583002, + 0.02860356494784355, + -0.003282541874796152, + -0.04557178169488907, + -0.010423333384096622, + -0.003183224005624652, + -0.013163834810256958, + -0.009042982012033463, + -0.0021311272867023945, + 0.003737047780305147, + -0.013742908835411072, + 0.013231169432401657, + -0.03269748389720917, + -0.008362906984984875, + -0.026435405015945435, + -0.02407870814204216, + -0.01157474797219038, + 0.0051409658044576645, + -0.016187140718102455, + -0.008154170587658882, + -0.0408853217959404, + -0.03242814913392067, + -0.0025906830560415983, + -0.03215881064534187, + -0.0354447215795517, + 0.016294874250888824, + 0.013790043070912361, + 0.008558176457881927, + 0.03881143033504486, + 0.016402609646320343, + 0.006891654804348946, + -0.02141227386891842, + -0.01568886637687683, + 0.03598339483141899, + 0.014382584020495415, + 0.005161166191101074, + -0.006312580779194832, + 0.016294874250888824, + -0.007527962792664766, + 0.00023061961110215634, + -0.003439093939960003, + 0.013285036198794842, + 0.002461064839735627, + -0.012214423157274723, + -0.014207514934241772, + 0.001146364607848227, + -0.004703293554484844, + -0.0019442748744040728, + 0.016873948276042938, + 0.008894846774637699, + 0.017075952142477036, + 0.011345812119543552, + -0.03697993978857994, + 0.05833834409713745, + -0.03153933584690094, + -0.009251718409359455, + -0.020631197839975357, + -0.05634525418281555, + -0.012254822999238968, + -0.028468897566199303, + -0.013076300732791424, + 0.005844607949256897, + -0.04554484784603119, + 0.020914001390337944, + -0.023647768422961235, + -0.03178174048662186, + 0.022758956998586655, + 0.030758259817957878, + 0.005683005787432194, + 0.03598339483141899, + 0.04516777768731117, + 0.01155454758554697, + -0.01110340841114521, + -0.0013475255109369755, + 0.02889983542263508, + -0.0008913364144973457, + 0.0023112462367862463, + 0.02492711879312992, + -0.026637407019734383, + -0.008854446932673454, + -0.01206628791987896, + -0.010490667074918747, + -0.0014064429560676217, + -0.04799581319093704, + 0.012234622612595558, + -0.027957158163189888, + 0.02697407826781273, + 0.008834246546030045, + 0.01107647456228733, + 0.02133147232234478, + -0.03275135159492493, + 0.0034980112686753273, + -0.0031647072173655033, + 0.0002323029621038586, + -0.009204584173858166, + -0.018799707293510437, + -0.015513798221945763, + 0.004676359705626965, + -0.010611869394779205, + 0.006699752528220415, + 0.01247029285877943, + 0.008457174524664879, + -0.012584760785102844, + 0.003814482130110264, + 0.009393120184540749, + -0.0006813379004597664, + -0.017399156466126442, + 0.005888375453650951, + -0.0048547955229878426, + 0.015028991736471653, + -0.03536392003297806, + 0.0034710776526480913, + -0.03975410759449005, + -0.004275721497833729, + -0.01754729077219963, + -0.024698182940483093, + -0.01656421087682247, + 0.018718905746936798, + -0.004060252103954554, + -0.014369117096066475, + -0.025344589725136757, + -0.03070439212024212, + 0.044979240745306015, + 0.0033734431490302086, + -0.010147263295948505, + -0.012665562331676483, + 0.007083557080477476, + 0.019190244376659393, + 0.012126888148486614, + -0.0024745315313339233, + 0.0008761861827224493, + -0.005134232342243195, + -0.018247567117214203, + 0.033667098730802536, + 0.023391898721456528, + 0.0004776519490405917, + -0.051443323493003845, + -0.01025499776005745, + 0.02763395383954048, + -0.029330775141716003, + -0.03980797529220581, + 0.0010478884214535356, + 0.006191378924995661, + -0.008814046159386635, + 0.0005092148203402758, + 0.0033633429557085037, + 0.010935072787106037, + 0.01669888012111187, + 0.01586393639445305, + -0.03334389254450798, + 0.013089767657220364, + 0.020765865221619606, + -0.007164358161389828, + 0.027189547196030617, + -0.019688518717885017, + 0.0067771864123642445, + -0.06108558177947998, + -0.010773470625281334, + -0.00012025466276099905, + 0.02414604276418686, + -0.007810766343027353, + 0.0017456390196457505, + -0.011460280045866966, + 0.008147437125444412, + -0.015257928520441055, + -0.0003509794769342989, + 0.014988591894507408, + -0.005481003317981958, + 0.025694727897644043, + 0.01765502616763115, + -0.008504308760166168, + 0.00467299297451973, + -0.004164619836956263, + 0.008187837898731232, + 0.005228500347584486, + 0.003405426861718297, + 0.012301957234740257, + 0.006292380392551422, + 0.03619886189699173, + -8.33260637591593e-5, + 0.01870543882250786, + 0.034636709839105606, + -0.02418644167482853, + 0.017237553372979164, + -0.030973728746175766, + -0.007965635508298874, + 0.024482712149620056, + 0.009042982012033463, + -0.008443707600235939, + 0.023095628246665, + 0.007736698724329472, + -0.009096849709749222, + 0.028307294473052025, + 0.0013306919718161225, + 0.00254523241892457, + 0.011379478499293327, + 0.015985136851668358, + 0.01862463727593422, + -0.01742609031498432, + -0.002774168737232685, + 0.004831228405237198, + -0.00603987742215395, + 0.010436800308525562, + -0.01675274781882763, + -0.001982992049306631, + 0.02022719196975231, + -0.00023188213526736945, + 0.00042083871085196733, + 0.03056972473859787, + -0.017089419066905975, + 0.011036074720323086, + -0.003198374295607209, + -0.011467013508081436, + 0.017870495095849037, + -0.004114119336009026, + -0.021681610494852066, + 0.04888462647795677, + 0.015015524812042713, + -0.00013466838572639972, + 0.008187837898731232, + -0.01959425024688244, + -0.006827687378972769, + -0.0006834420491941273, + 0.014948191121220589, + 0.006410215049982071, + 0.017062485218048096, + -0.026246868073940277, + 0.007709765341132879, + 0.013136900961399078, + 0.0315932035446167, + -0.007265359628945589, + -0.001568045001477003, + 0.027310749515891075, + -0.009958727285265923, + -0.015459930524230003, + -0.011958552524447441, + -0.0029677546117454767, + -0.008470641449093819, + 0.02141227386891842, + -0.01247029285877943, + -0.009393120184540749, + -0.038569025695323944, + 0.0005302567733451724, + -0.0034744443837553263, + -0.027283815667033195, + 0.003521578386425972, + 0.020200258120894432, + 0.0023836304899305105, + 0.008093570359051228, + 0.017304887995123863, + -0.030246520414948463, + 0.036441266536712646, + 0.013702508062124252, + -0.0061577120795845985, + -0.0011017557699233294, + 0.004386822693049908, + -0.010052994824945927, + -0.014476851560175419, + -0.004279088228940964, + -0.009244984947144985, + -0.016981683671474457, + 0.008908313699066639, + 0.018840108066797256, + 0.0016690463526174426, + 0.013278302736580372, + -0.015419530682265759, + 0.004413756541907787, + -0.00020631618099287152, + 0.011891218833625317, + -0.004178086761385202, + -0.006810853723436594, + 0.0036596134305000305, + -0.036656733602285385, + -0.031997207552194595, + -0.02418644167482853, + -0.0036730803549289703, + 0.012396224774420261, + 0.024321110919117928, + -0.011918152682483196, + -0.038461290299892426, + -0.0018365401774644852, + 0.005740240216255188, + 0.010403132997453213, + -0.0007171091856434941, + 0.004312755074352026, + -0.011190943419933319, + 0.018045563250780106, + 0.010618602856993675, + -0.010793671011924744, + 0.017143284901976585, + 0.010295398533344269, + 0.009709591045975685, + 0.016294874250888824, + -0.02782248891890049, + 0.010113595984876156, + -0.04204346984624863, + -0.01773582585155964, + 0.0056459722109138966, + 0.02681247517466545, + 0.005127498880028725, + 0.003777448320761323, + -0.022004814818501472, + 0.009736524894833565, + -0.012120154686272144, + 0.01564846746623516, + -0.03533698618412018, + 0.021102536469697952, + -0.0025990998838096857, + 0.005215033423155546, + -0.0057032061740756035, + -0.01153434719890356, + -0.02049652859568596, + -0.002317979699000716, + -0.0036427800077944994, + 0.009554722346365452, + -0.006241879891604185, + -0.006810853723436594, + 0.005406935699284077, + 0.015608065761625767, + -0.021695077419281006, + 0.016160206869244576, + 0.008766911923885345, + -0.003019938711076975, + 0.01848996989428997, + -0.01851690374314785, + -0.01859770528972149, + 0.01205282099545002, + -0.014180581085383892, + -0.007568363565951586, + -0.025358056649565697, + 0.01851690374314785, + 0.006198112387210131, + -0.022395353764295578, + -0.014975124970078468, + 0.02242228575050831, + -0.029007570818066597, + -0.021533474326133728, + -0.0021176603622734547, + -0.011810417287051678, + 0.009117050096392632, + 0.009675923734903336, + -0.00576717359945178, + 0.0076895649544894695, + 0.0042184870690107346, + -0.020079055801033974, + 0.015500331297516823, + 0.02224721759557724, + 0.01201915368437767, + 0.013264835812151432, + 0.016187140718102455, + 0.01747995615005493, + -0.01567539945244789, + 0.020644664764404297, + -0.001441793399862945, + -0.013924711383879185, + -0.017304887995123863, + 0.0013180668465793133, + -0.008006035350263119, + 0.004669626243412495, + 0.028037957847118378, + -0.016496878117322922, + -0.00554833747446537, + -0.013574573211371899, + 0.029196105897426605, + 0.02029452659189701, + -0.01870543882250786, + 0.033667098730802536, + 0.005433869548141956, + -0.005171265918761492, + -0.0029627045150846243, + 0.012827163562178612, + 0.0009620373020879924, + 0.0018920908914878964, + -0.020577330142259598, + 0.015500331297516823, + 0.016833549365401268, + -0.002511565340682864, + -0.01770889386534691, + -0.01862463727593422, + -0.011736350134015083, + 0.00024850526824593544, + -0.00040063844062387943, + 0.009972194209694862, + -0.02126413770020008, + -0.0019308080663904548, + 0.001202757004648447, + 0.01199221983551979, + -0.005659439135342836, + -0.031808674335479736, + 0.002814569277688861, + 0.0021513274405151606, + -0.030219586566090584, + 0.02034839428961277, + -0.019930921494960785, + 0.02327069826424122, + 0.011197676882147789, + -0.015567665919661522, + -0.0353100523352623, + 0.012645361945033073, + 0.0029744880739599466, + 0.021021734923124313, + -0.008820779621601105, + -0.019297979772090912, + -0.017304887995123863, + -0.011386211961507797, + -0.010874472558498383, + 0.007157624699175358, + -0.030165718868374825, + -0.011655548587441444, + 0.046918466687202454, + 0.011022607795894146, + 0.019028643146157265, + -0.0156619343906641, + -0.009150717407464981, + 0.014422984793782234, + -0.025465792044997215, + 0.014261382631957531, + 0.010288665071129799, + -0.01106974110007286, + -0.010558001697063446, + -0.0006316789076663554, + -0.011278477497398853, + -0.0056493389420211315, + -0.0049591632559895515, + 0.006969089154154062, + -0.010430066846311092, + -0.009002582170069218, + 0.017291421070694923, + -0.015069392509758472, + 0.004073718562722206, + 0.008659177459776402, + 0.018274500966072083, + -0.014072846621274948, + 0.015284862369298935, + -0.007400027941912413, + -0.019042110070586205, + -0.02212601527571678, + -0.01576966792345047, + -0.01931144669651985, + 0.010962006635963917, + -0.01197875291109085, + -0.005332868080586195, + -0.0006645043031312525, + -0.007628964260220528, + 0.0186515711247921, + 0.003737047780305147, + -0.018718905746936798, + 0.007918501272797585, + 0.012301957234740257, + -0.014746188186109066, + 0.010120329447090626, + 0.005858074873685837, + -0.0115478141233325, + 0.008026235736906528, + 0.005619038362056017, + -0.0027219848707318306, + 0.01067246962338686, + -0.0003720214299391955, + -0.015594599768519402, + 0.013419704511761665, + 0.017978230491280556, + -0.00026113042258657515, + -0.020765865221619606, + 0.01290796510875225, + -0.005295834504067898, + -0.003743781242519617, + -0.0037538812030106783, + 0.01570233330130577, + -0.007790566422045231, + -0.0034222605172544718, + -0.005484370049089193, + 0.017075952142477036, + -0.014247915707528591, + 0.0032202578149735928, + -0.036683667451143265, + 0.0027102013118565083, + -0.004141052719205618, + -0.004561891779303551, + 0.009561455808579922, + 0.0054776365868747234, + -0.012248089537024498, + 0.00623177969828248, + 0.004619125742465258, + 0.0028128859121352434, + 0.028199560940265656, + -0.030192652717232704, + -0.021681610494852066, + 0.0011034391354769468, + -0.0005622405442409217, + -0.007891567423939705, + 0.03312842175364494, + -0.0205099955201149, + -0.014624986797571182, + -0.02325723133981228, + 0.01758769154548645, + 0.0034071102272719145, + 0.008612043224275112, + 0.01861117035150528, + 0.007332693785429001, + 0.008086836896836758, + 0.01742609031498432, + 0.021735478192567825, + 0.00245264801196754, + 0.011972019448876381, + 0.012382757849991322, + -0.011480480432510376, + -0.0033902765717357397, + 0.02976171299815178, + 0.009669190272688866, + 0.011918152682483196, + -0.007952168583869934, + 0.008059903047978878, + -0.024832850322127342, + 0.021897079423069954, + -0.014396050944924355, + -0.014584586024284363, + 0.016065938398241997, + -0.018974775448441505, + -0.011029341258108616, + 0.011729616671800613, + 0.02145267464220524, + 0.007588563486933708, + 0.008968914858996868, + 0.002358380239456892, + -0.012598227709531784, + -0.028064891695976257, + -0.006578550674021244, + -0.002487998455762863, + 0.015230994671583176, + -0.0044002896174788475, + 0.010948539711534977, + 0.0048547955229878426, + 0.020590797066688538, + -0.008537976071238518, + -0.018072497099637985, + 0.016294874250888824, + -0.02413257583975792, + 0.007097024004906416, + -0.03897302970290184, + -0.006837787572294474, + -0.010524334385991096, + 0.008309039287269115, + -0.013843909837305546, + 0.024698182940483093, + -0.011709416285157204, + 0.0051375990733504295, + -0.004013117868453264, + -0.01204608753323555, + 0.032078009098768234, + 0.01533872913569212, + -0.014382584020495415, + 0.017830094322562218, + -0.01489432342350483, + 0.008362906984984875, + -0.011312144808471203, + 0.023755503818392754, + -0.028091825544834137, + 0.0025940497871488333, + 0.013035899959504604, + 0.017143284901976585, + -0.0012313741026446223, + -0.0006262080278247595, + -0.00766263110563159, + 0.024469245225191116, + -0.008039702661335468, + -0.022058682516217232, + -0.0072316923178732395, + -0.014194048009812832, + 0.004164619836956263, + -0.01870543882250786, + -0.003801015205681324, + 0.010928339324891567, + 0.021722011268138885, + 0.005393468774855137, + 0.013285036198794842, + 0.005908575374633074, + 0.012665562331676483, + 0.0010815554996952415, + 0.013271569274365902, + -0.010382932610809803, + -0.023445766419172287, + 0.012355824932456017, + -0.0016463210340589285, + -0.021479608491063118, + -0.013574573211371899, + 0.016241008415818214, + -0.02131800539791584, + 0.008524509146809578, + -0.012786763720214367, + 0.0027623854111880064, + 0.029492376372218132, + -0.019230645149946213, + 0.013884310610592365, + -0.0028886368963867426, + -0.017358755692839622, + -0.02677207626402378, + -0.015123260207474232, + -0.012551093474030495, + -0.02024065889418125, + -0.009069915860891342, + -0.018018629401922226, + -0.045894987881183624, + -0.001897140871733427, + -0.00977692473679781, + 0.03151240199804306, + -0.010901406407356262, + 0.0368991382420063, + 0.003831315552815795, + 0.03253588080406189, + -0.009460453875362873, + -0.020819732919335365, + 0.008605309762060642, + 0.010834071785211563, + 0.02962704561650753, + -0.008524509146809578, + 0.012288490310311317, + 0.03059665858745575, + -0.01399204507470131, + -0.010430066846311092, + 0.004551791585981846, + 0.005531503818929195, + 0.006474182941019535, + 0.004366622306406498, + -0.027539685368537903, + 0.0003709693264681846, + 0.006480916403234005, + -0.02500792033970356, + -0.014503785409033298, + -0.01486738957464695, + -0.000800435256678611, + -0.0016261207638308406, + -0.043174684047698975, + -0.000893861404620111, + 0.0072316923178732395, + 0.01943264901638031, + 0.016941282898187637, + 0.008470641449093819, + -0.01847650296986103, + 0.013190768659114838, + -0.002348280046135187, + 0.002838136162608862, + 0.017049018293619156, + 0.01245682593435049, + -0.006969089154154062, + 0.004568625241518021, + -0.01247029285877943, + -0.01563500054180622, + 0.010571468621492386, + 0.006329414434731007, + 0.0009140616748481989, + 0.01867850497364998, + -0.021802812814712524, + -0.014813522808253765, + 0.009891392663121223, + 0.008282105438411236, + 0.024523112922906876, + 0.005272267386317253, + -0.005114031955599785, + -0.02692021057009697, + -0.011467013508081436, + 0.006662718486040831, + 0.025371523573994637, + 0.007521229330450296, + 0.014584586024284363, + 0.01024153083562851, + -0.014800055883824825, + -0.00037286311271600425, + 0.0054742698557674885, + 0.002442547818645835, + 0.004093918949365616, + 0.009864459745585918, + 0.01839570142328739, + 0.013170568272471428, + 0.007238425780087709, + -0.029223039746284485, + 0.0033700764179229736, + 0.01111014187335968, + 0.00554833747446537, + -0.011426612734794617, + -0.01203935407102108, + -0.013803509995341301, + 0.02114293724298477, + 0.010100129060447216, + -0.005339601542800665, + 0.0129416324198246, + -0.02884596958756447, + 0.00466625951230526, + 0.0031276734080165625, + -0.016348741948604584, + 0.002732084831222892, + -0.003952517174184322, + 0.006076910998672247, + -0.025263790041208267, + -0.015123260207474232, + 0.017816627398133278, + -0.012881031259894371, + 0.004231953993439674, + -0.007366360630840063, + -0.005864808335900307, + 0.0011413146276026964, + -0.018301434814929962, + 0.06275546550750732, + 0.0041309529915452, + 0.017116352915763855, + 0.010127062909305096, + 0.006541517097502947, + -0.02686634287238121, + -0.011446813121438026, + 0.010423333384096622, + 0.008477374911308289, + 0.0061105783097445965, + -0.023890171200037003, + -0.00036697136238217354, + 0.0038784495554864407, + 0.019998256117105484, + -0.017022084444761276, + -0.011648815125226974, + 0.015621532686054707, + 0.003425627015531063, + -0.006602117791771889, + 0.01866503804922104, + 0.005804207641631365, + 0.0022876793518662453, + -0.0014106513699516654, + 0.002548599150031805, + -0.011702682822942734, + 0.018826641142368317, + -0.006201479118317366, + -0.0026765342336148024, + 0.015527265146374702, + 0.03215881064534187, + 0.005817674566060305, + 0.002713568042963743, + 0.0102213304489851, + -0.024361511692404747, + 0.0144364507868886, + -0.012806964106857777, + 0.006935421843081713, + -0.012214423157274723, + -0.0002430343593005091, + 0.005656072404235601, + 0.0029627045150846243, + -0.014975124970078468, + 0.008080103434622288, + 0.01337257120758295, + -0.031808674335479736, + 0.00690848845988512, + -0.02798409014940262, + 0.0028465529903769493, + 0.007844433188438416, + -0.005039964336901903, + 0.0028549698181450367, + 0.008962181396782398, + 0.00871304515749216, + 0.021573875099420547, + 0.026300735771656036, + 0.00039516756078228354, + 0.013015699572861195, + 0.03275135159492493, + 0.008645710535347462, + -0.006888288073241711, + -0.0213045384734869, + -0.0041747200302779675, + -0.000606428598985076, + -0.005019763950258493, + -0.014611519873142242, + -0.010147263295948505, + -0.017789693549275398, + -0.007325960323214531, + -0.003733681049197912, + -0.01154108066111803, + -0.017089419066905975, + -0.011689215898513794, + 0.014598052948713303, + -0.020954400300979614, + 0.0008298939210362732, + 0.02312256209552288, + 0.0058749085292220116, + 0.02331109717488289, + 0.03592952713370323, + -0.002592366421595216, + -0.0020385426469147205, + 0.009877926670014858, + -0.017102885991334915, + -0.0016892466228455305, + -0.0018129731761291623, + -0.01853037066757679, + 0.022637756541371346, + -0.029196105897426605, + 0.0021126102656126022, + -0.011244810186326504, + -0.030381187796592712, + -0.00046166006359271705, + -0.0036596134305000305, + 0.01663154549896717, + -0.018247567117214203, + 0.005777273792773485, + 0.0023465966805815697, + 0.002713568042963743, + 0.007299026474356651, + -0.020173324272036552, + 0.0038986499421298504, + -0.0067266859114170074, + -0.006888288073241711, + 0.008248439058661461, + -0.001880307332612574, + -0.0032842252403497696, + 0.013271569274365902, + -0.0033397760707885027, + 0.0064438823610544205, + 0.003868349362164736, + 0.004258887842297554, + -0.007783832959830761, + 0.006538150366395712, + 0.0009157450404018164, + -0.010416599921882153, + -0.01018092967569828, + 0.00781750027090311, + -0.015028991736471653, + -0.02029452659189701, + -0.016187140718102455, + -0.013069567270576954, + 0.0024812649935483932, + -0.0016118122730404139, + -0.0213718730956316, + -0.0018331734463572502, + 0.0050870985724031925, + -0.007918501272797585, + -0.015392596833407879, + 0.0003785444132518023, + 0.0007516179466620088, + 0.026193002238869667, + 0.011823884211480618, + 0.013332170434296131, + -0.007487562485039234, + 0.01290123164653778, + 0.0231629628688097, + -0.006831054110080004, + 0.0071306913159787655, + -0.00690848845988512, + -0.024415379390120506, + 0.014557653106749058, + -0.010322332382202148, + 0.01757422462105751, + 0.005945609416812658, + -0.0016252790810540318, + 0.007447161711752415, + 0.004642692860215902, + -0.02508872002363205, + 0.01664501242339611, + -0.011467013508081436, + 0.01660461165010929, + -0.025344589725136757, + -0.0005062689888291061, + 0.0006927005015313625, + -0.0077434321865439415, + 0.009372919797897339, + -0.02514258772134781, + 0.031054530292749405, + -0.0186515711247921, + 0.004470990505069494, + -0.001175823388621211, + -0.009029515087604523, + -0.013002232648432255, + -0.002917253877967596, + -0.03420577198266983, + 0.014921257272362709, + 0.017399156466126442, + 0.014342183247208595, + -0.006420315243303776, + -0.0013551006559282541, + 0.0038784495554864407, + 0.02033492736518383, + 0.025250323116779327, + -0.019122911617159843, + 0.010322332382202148, + -0.017318354919552803, + -0.0061139450408518314, + 0.007245159242302179, + -0.012140355072915554, + 0.001292816479690373, + -0.012167288921773434, + -0.0066728186793625355, + -0.0028751699719578028, + -0.0016900883056223392, + -0.01680661551654339, + -0.0037033807020634413, + 0.018907440826296806, + 0.0013576257042586803, + 0.013500506058335304, + -0.017291421070694923, + -0.01159494835883379, + 0.02040226012468338, + 0.0026849510613828897, + -0.024307643994688988, + 0.011743083596229553, + 0.010019328445196152, + 0.03617192804813385, + 0.013487039133906364, + 0.054082825779914856, + 0.0011202726745977998, + -0.003575445618480444, + -0.004703293554484844, + 0.024725116789340973, + 0.011931619606912136, + -0.017143284901976585, + 0.002292729215696454, + -0.016348741948604584, + -0.016200607642531395, + -0.003955883905291557, + -0.0038919164799153805, + -0.01937878131866455, + -0.013628440909087658, + 0.011298677884042263, + 0.0066223181784152985, + 0.00825517252087593, + 0.0061072115786373615, + 0.02119680494070053, + 0.019149845466017723, + 0.01659114472568035, + -0.0003602379292715341, + -0.007804032880812883, + -0.0049625299870967865, + 0.008053169585764408, + -0.012335624545812607, + -0.001631170860491693, + -0.0061577120795845985, + -0.009514321573078632, + 0.005019763950258493, + 0.010133796371519566, + -0.005029864143580198, + 0.008282105438411236, + -0.015230994671583176, + -0.010470467619597912, + -0.010537801310420036, + 0.002425714395940304, + 0.01581006869673729, + -0.006736786104738712, + -0.01532526221126318, + 0.010995673947036266, + -0.0033145255874842405, + -0.00556853786110878, + 0.004343055654317141, + -0.0034222605172544718, + 0.010551268234848976, + -0.003258974989876151, + -0.024294177070260048, + -0.006864720955491066, + 0.0014796688919886947, + 0.0008601943263784051, + -2.2501719286083244e-5, + -0.01162861566990614, + 0.0038784495554864407, + -0.0076356977224349976, + -0.013614973984658718, + 0.01847650296986103, + -0.007070090156048536, + -0.011265010572969913, + 0.016900882124900818, + 0.004571991972625256, + -0.001568045001477003, + 0.0041679865680634975, + 0.001139631262049079, + -0.0186515711247921, + 0.0010874472791329026, + -0.015392596833407879, + 0.014530719257891178, + -0.04656833037734032, + 0.009083382785320282, + -0.007810766343027353, + 0.001754055730998516, + 0.013338903896510601, + -0.0029930048622190952, + -0.006427048705518246, + 0.027176080271601677, + 0.014018978923559189, + -0.001887040794827044, + 0.0041679865680634975, + -0.018920907750725746, + -0.004326221998780966, + 0.028226494789123535, + -0.009951993823051453, + 0.0012145405635237694, + 0.017964763566851616, + -0.007797299884259701, + -1.764892294886522e-5, + -0.014948191121220589, + 0.016887415200471878, + 0.01575620099902153, + 0.004407023079693317, + 0.024725116789340973, + -0.02227415144443512, + 0.0038212155923247337, + -0.010753271169960499, + -0.0053732688538730145, + 0.006730052642524242, + 0.010571468621492386, + 0.0029593377839773893, + -0.009022781625390053, + 0.026435405015945435, + -0.01861117035150528, + -0.010005861520767212, + 0.0011084891157224774, + -0.004420490004122257, + -0.03350549563765526, + -0.0031327232718467712, + 0.015379129908978939, + 0.03129693493247032, + 0.009635522961616516, + 0.002245595445856452, + 0.016456477344036102, + -0.013715974986553192, + 0.00930558517575264, + -0.008356173522770405, + -0.013500506058335304, + -0.009150717407464981, + -0.018166765570640564, + -0.000596328463871032, + 0.02115640416741371, + -0.0111505426466465, + -0.0075144958682358265, + -0.0013197502121329308, + -0.008605309762060642, + 0.02679901011288166, + -0.022839758545160294, + 0.012187489308416843, + -0.014180581085383892, + 0.026395004242658615, + 0.00018800969701260328, + 0.0018769406015053391, + -0.026543138548731804, + 0.028280360624194145, + 0.004807661287486553, + -0.026489272713661194, + 0.005120765417814255, + 0.0008345231763087213, + 0.020940935239195824, + -0.003006471786648035, + -0.008477374911308289, + -0.0036798138171434402, + -0.005383368581533432, + -0.007750165648758411, + -0.028953703120350838, + -0.0076962984167039394, + -0.006002843379974365, + -0.002309562871232629, + 0.007245159242302179, + -0.005615671630948782, + 0.0011320561170578003, + -0.003831315552815795, + 0.01163534913212061, + 0.00383468228392303, + 0.009884660132229328, + 0.013426437973976135, + 0.006753619760274887, + -0.019149845466017723, + -0.011911419220268726, + 0.014759655110538006, + 0.02793022431433201, + -0.006585284136235714, + -0.009999128058552742, + 0.007043156772851944, + 0.014382584020495415, + -0.017789693549275398, + -0.003774081589654088, + 0.011372745037078857, + -0.014463384635746479, + 0.010281931608915329, + -0.0008812362793833017, + -0.025762062519788742, + -0.004656159318983555, + -0.008834246546030045, + -0.006693019066005945, + 0.005258800461888313, + 0.015284862369298935, + -0.017897428944706917, + 0.0021142936311662197, + -0.018261034041643143, + 0.003959250636398792, + -0.027054879814386368, + -0.001371934195049107, + 0.007117224391549826, + -0.008524509146809578, + 0.00933251902461052, + -0.008551442995667458, + -0.014167114160954952, + 0.011258277110755444, + 0.011433346197009087, + -0.0003659192589111626, + 0.021748945116996765, + 0.00444068992510438, + -0.010005861520767212, + 0.006319314241409302, + 0.016456477344036102, + 0.015136727131903172, + -0.02222028374671936, + 0.033774830400943756, + -0.018974775448441505, + 0.0019358580466359854, + -0.01863810420036316, + 0.0029374542646110058, + -0.019042110070586205, + -0.004127586260437965, + 0.02592366561293602, + 0.0077434321865439415, + -0.0021277605555951595, + -0.009682657197117805, + 0.012126888148486614, + -0.006235146429389715, + 0.01760115846991539, + 0.0033010588958859444, + 0.006181279197335243, + 0.0051375990733504295, + -0.0005942242569290102, + 0.0028314029332250357, + 0.029034504666924477, + -0.01586393639445305, + -0.0074134948663413525, + 0.005093831568956375, + 0.004804294556379318, + -0.004979363642632961, + 0.004104019142687321, + -0.005319401156157255, + 0.010894672945141792, + -0.002385313855484128, + 0.00932578556239605, + -0.009440254420042038, + 0.025209922343492508, + 0.018907440826296806, + -0.009938526898622513, + -0.000352242001099512, + -0.008928514085710049, + 0.010275198146700859, + -0.0033801766112446785, + 0.01071960385888815, + -0.02884596958756447, + -0.010962006635963917, + 0.012389491312205791, + -0.016496878117322922, + -0.010079928673803806, + 0.020065590739250183, + -0.01675274781882763, + -0.02512912079691887, + -0.02784942276775837, + -0.011743083596229553, + -0.0106859365478158, + -0.004999564029276371, + -0.004467623773962259, + 0.012106687761843204, + -0.007305759936571121, + -0.020765865221619606, + -0.020119456574320793, + 0.02951931022107601, + -0.01664501242339611, + -0.0037269475869834423, + -0.01154108066111803, + -0.01675274781882763, + -0.01070613693445921, + -0.02957317791879177, + 0.00981059204787016, + -0.044817641377449036, + 0.01531179528683424, + 0.0038212155923247337, + -0.000789072597399354, + -0.017857028171420097, + -0.006962355691939592, + 0.006804120261222124, + 0.016119806095957756, + 0.01571580022573471, + -0.01857077144086361, + 0.004070351831614971, + -0.043013084679841995, + 0.03970023989677429, + 0.015177126973867416, + -0.0017725726356729865, + 0.014813522808253765, + 0.025775529444217682, + -0.020833199843764305, + -0.0006468290812335908, + -0.0011522563872858882, + 0.0062082125805318356, + -0.008396574296057224, + 0.004720127210021019, + -0.008793845772743225, + -0.00691522192209959, + 0.01948651485145092, + -0.010322332382202148, + 0.0014165431493893266, + 0.002381947124376893, + -0.0027825855650007725, + 0.005689739249646664, + 0.02604486607015133, + 0.018180232495069504, + 0.009150717407464981, + -0.001897140871733427, + -0.003952517174184322, + 0.004238687455654144, + 0.026381537318229675, + 0.029411576688289642, + -0.01022806391119957, + 0.011877751909196377, + 0.02024065889418125, + 0.0076895649544894695, + 0.004585458431392908, + -0.009251718409359455, + 0.018732372671365738, + -0.01164208259433508, + 0.010302131995558739, + 0.020173324272036552, + 0.008066636510193348, + 0.011312144808471203, + -0.0007204758585430682, + -0.01020113006234169, + -0.018813174217939377, + 0.006804120261222124, + -0.012234622612595558, + 0.030165718868374825, + -0.0054709031246602535, + 0.005151065997779369, + 0.013911244459450245, + -0.010389666073024273, + -0.0005003772093914449, + -0.01757422462105751, + 0.008228238672018051, + -0.005642605479806662, + 0.004649426322430372, + 0.00767609803006053, + 0.024832850322127342, + -0.010867739096283913, + 0.0033044256269931793, + -0.0014670437667518854, + -0.01589087024331093, + 0.015917804092168808, + 0.01773582585155964, + -0.014342183247208595, + 0.0008947030873969197, + 0.01842263527214527, + 0.005127498880028725, + -0.002651283983141184, + 0.028253428637981415, + -0.012618428096175194, + 0.01659114472568035, + -1.1862391147587914e-5, + 0.01245009247213602, + -0.003201741026714444, + -0.0006123203202150762, + -0.027122212573885918, + 0.016146739944815636, + 0.018261034041643143, + -0.001856740447692573, + 0.0055988384410738945, + -0.014422984793782234, + 0.007548163179308176, + 0.007325960323214531, + 0.007581830024719238, + 0.019957855343818665, + -0.0038885497488081455, + 0.015163660049438477, + 0.0036764470860362053, + -0.012705962173640728, + 0.020819732919335365, + 0.024725116789340973, + -0.00360911269672215, + 0.0061577120795845985, + -0.011029341258108616, + -0.00489182909950614, + 0.01205955445766449, + 0.003962617367506027, + -0.010052994824945927, + 0.0021681610960513353, + -0.005558437667787075, + -0.014422984793782234, + 0.004750427324324846, + -0.007299026474356651, + 0.020833199843764305, + -0.013870843686163425, + 0.0061139450408518314, + -0.015163660049438477, + 0.006221679504960775, + 5.710912773793098e-6, + -0.012780030257999897, + 0.006514583248645067, + -0.021654676645994186, + 0.004477723967283964, + -0.003612479427829385, + -0.007258626166731119, + 0.01383044384419918, + 0.0009645623504184186, + 0.003784181782975793, + 0.016860481351614, + -0.005538237281143665, + 0.011716149747371674, + -0.0038717160932719707, + -0.02696061134338379, + -0.002232128521427512, + 0.01067920308560133, + 0.01680661551654339, + -0.009554722346365452, + -0.009999128058552742, + -0.018085964024066925, + -0.012645361945033073, + 0.00046292258775793016, + 0.002573849633336067, + 0.0023566968739032745, + -0.0002933245850726962, + -0.0056459722109138966, + -2.0134502847213298e-5, + -0.004087185487151146, + 0.014180581085383892, + -0.00016823026817291975, + 0.01156128104776144, + 0.016483411192893982, + -0.01940571516752243, + 0.003391959937289357, + 0.0144364507868886, + 0.02024065889418125, + 0.009985661134123802, + 0.016362208873033524, + -0.007992568425834179, + 0.030300388112664223, + 0.000691017194185406, + 0.00782423373311758, + 0.022004814818501472, + -0.001139631262049079, + -0.002913887146860361, + -0.017883962020277977, + 0.005454069934785366, + 0.0018718906212598085, + -0.0025267156306654215, + 0.015917804092168808, + -0.006177912466228008, + -0.01112360879778862, + -0.014422984793782234, + -0.013298503123223782, + -0.021573875099420547, + 0.007063357159495354, + -0.003494644770398736, + -0.017978230491280556, + 0.003925583325326443, + -0.013635174371302128, + -0.003265708452090621, + -0.01839570142328739, + -0.002720301505178213, + -0.00534970173612237, + 0.017978230491280556, + -0.008201304823160172, + 0.014921257272362709, + 0.0005327818216755986, + 0.014194048009812832, + 0.017089419066905975, + -0.0071306913159787655, + -0.0034138436894863844, + 0.002046959474682808, + -0.02868436649441719, + 0.016214074566960335, + 0.013790043070912361, + -0.01563500054180622, + 0.007070090156048536, + -0.011817150749266148, + 0.025735128670930862, + -0.009574922733008862, + -0.022893626242876053, + -0.01947304978966713, + -0.010948539711534977, + 0.016483411192893982, + -0.006410215049982071, + -0.006416948512196541, + 0.0018281233496963978, + 0.015621532686054707, + -0.029303841292858124, + -0.001956058433279395, + -0.0010773470858111978, + 0.005380002316087484, + -0.014719255268573761, + 0.0018331734463572502, + 0.015594599768519402, + 0.011022607795894146, + 0.008470641449093819, + -0.006800753530114889, + 0.017170218750834465, + -0.00977692473679781, + 0.015931271016597748, + -0.007548163179308176, + 0.003770714858546853, + 0.009278652258217335, + -1.169142524304334e-5, + 0.016981683671474457, + 0.006241879891604185, + -0.011318878270685673, + 0.006575183942914009, + 0.010443533770740032, + -0.019728919491171837, + -0.008228238672018051, + -0.020065590739250183, + -0.02310909517109394, + 0.009473920799791813, + -0.007265359628945589, + 0.007245159242302179, + 0.008174370974302292, + 0.008107037283480167, + -0.017991697415709496, + -0.01203935407102108, + 0.009723057970404625, + 0.012975298799574375, + 0.01200568675994873, + -0.01760115846991539, + -0.023661235347390175, + -0.01337257120758295, + 0.005309301428496838, + 0.014247915707528591, + -0.013298503123223782, + 0.011716149747371674, + -0.005969176068902016, + -0.004235320724546909, + 0.02889983542263508, + 0.0008429399458691478, + -0.03261668235063553, + -0.021748945116996765, + 0.018139831721782684, + -0.01774929277598858, + -0.014072846621274948, + 0.010093395598232746, + 0.0022809458896517754, + 0.0001338267175015062, + 0.007507762406021357, + 0.0076962984167039394, + -0.033640164881944656, + -0.005831141024827957, + -0.010517600923776627, + -0.0033178923185914755, + 0.007810766343027353, + 0.05340948328375816, + -0.0014796688919886947, + -0.006571817211806774, + 0.008376373909413815, + -0.010988940484821796, + -0.007548163179308176, + -0.00047260188148356974, + 0.0030906395986676216, + -0.00047891444410197437, + 0.019890520721673965, + -0.020011723041534424, + -0.01936531439423561, + 0.021843211725354195, + 0.007137424778193235, + 0.004255521111190319, + -0.016389142721891403, + -0.024644315242767334, + -0.0027186181396245956, + 0.0036562466993927956, + 0.03611806035041809, + -0.012254822999238968, + -0.019809719175100327, + 0.014032445847988129, + -0.0018550570821389556, + 0.008746711537241936, + -0.010490667074918747, + 0.016443010419607162, + -0.025452325120568275, + 0.007763632573187351, + -0.017062485218048096, + -0.0010007544187828898, + 0.0071778250858187675, + -0.012578027322888374, + -0.01857077144086361, + -0.011830617673695087, + 0.004040051717311144, + -0.006662718486040831, + -0.004255521111190319, + -0.0023533301427960396, + 0.04153173044323921, + -0.014261382631957531, + 0.011911419220268726, + -0.015042458660900593, + -0.024348044767975807, + 0.01773582585155964, + -0.017883962020277977, + -0.013736175373196602, + -0.010766737163066864, + 0.015500331297516823, + -0.014072846621274948, + 0.007898300886154175, + -0.010349265299737453, + 0.023364964872598648, + -0.0016160206869244576, + -0.00888137985020876, + 0.02608526684343815, + 0.012692495249211788, + 0.009891392663121223, + 0.006935421843081713, + 0.020186791196465492, + 0.02122373878955841, + -0.020079055801033974, + -0.007110490929335356, + 0.01381697691977024, + 0.01160841528326273, + -0.0012785079888999462, + -0.001166564878076315, + -0.024334577843546867, + -0.014948191121220589, + -0.002548599150031805, + -0.005114031955599785, + 0.007016222923994064, + 0.0006400956772267818, + -0.032912954688072205, + -0.015931271016597748, + -0.014207514934241772, + 0.0026294002309441566, + 0.0031613404862582684, + -0.0015242778463289142, + 0.008477374911308289, + -0.004545058123767376, + 0.0028095191810280085, + -0.005147699266672134, + 0.0075144958682358265, + 0.009029515087604523, + -0.007494295947253704, + -0.01954038254916668, + -0.019001709297299385, + 0.007265359628945589, + 0.0035956460051238537, + -0.0240921750664711, + 0.010436800308525562, + 0.00782423373311758, + -0.010052994824945927, + -0.01960771717131138, + -0.0011707732919603586, + -0.008376373909413815, + 0.010167463682591915, + 0.005514670629054308, + -0.04021197929978371, + -0.017264487221837044, + 0.001361834118142724, + -0.023378431797027588, + 0.0038616161327809095, + 0.019688518717885017, + -0.009076649323105812, + 0.011009140871465206, + 0.0023533301427960396, + 0.04188187047839165, + -0.008787112310528755, + -0.005073631647974253, + -0.018261034041643143, + -0.0011135392123833299, + 0.013648641295731068, + 0.013870843686163425, + -0.0028650700114667416, + 0.013130167499184608, + -0.004595558624714613, + -0.0046292259357869625, + -0.014140180312097073, + 0.022435752674937248, + -0.00028027858934365213, + 0.01427484955638647, + -0.014194048009812832, + 0.0030384554993361235, + -0.012847363948822021, + -0.006373181473463774, + -0.006342880893498659, + 0.008517775684595108, + -0.0070027559995651245, + 0.013769842684268951, + 0.02678554318845272, + -0.005023130681365728, + -0.007905034348368645, + 0.016375675797462463, + 0.0002586054033599794, + -0.007608763873577118, + 0.0010554634500294924, + 0.006847887299954891, + -0.016941282898187637, + -0.011480480432510376, + -0.01337257120758295, + 0.026341136544942856, + 0.0023146129678934813, + -0.012167288921773434, + 0.002787635661661625, + -0.006743519566953182, + -0.006787286605685949, + -0.003163023851811886, + 0.014517252333462238, + -0.0016017121961340308, + 0.008006035350263119, + -0.007366360630840063, + -0.005002930760383606, + -0.021964414045214653, + 0.0028819034341722727, + 0.0231629628688097, + 0.012369291856884956, + -0.010052994824945927, + 0.03619886189699173, + 0.005504570435732603, + -0.02032146044075489, + 0.0024290811270475388, + -0.015554198995232582, + -0.01847650296986103, + 0.022624289616942406, + -0.012416425161063671, + 0.0025873163249343634, + -0.017372222617268562, + 0.009022781625390053, + 0.006817587185651064, + -0.020860133692622185, + 8.974385855253786e-5, + 0.01158148143440485, + 0.0036158461589366198, + 0.004750427324324846, + -0.032859086990356445, + 0.003316208953037858, + -0.02032146044075489, + 0.012349091470241547, + -0.030327320098876953, + -0.0006788128521293402, + 0.022381886839866638, + 0.013870843686163425, + 0.0013205918949097395, + 0.003243824699893594, + -0.02232801914215088, + -0.011648815125226974, + 0.023014826700091362, + 0.0031714404467493296, + -0.0073596276342868805, + 0.0064405156299471855, + -4.4977135985391214e-5, + 0.02771475352346897, + 0.018826641142368317, + 0.015042458660900593, + -0.002913887146860361, + -0.01200568675994873, + 0.012766563333570957, + 0.005174632649868727, + 0.009938526898622513, + 0.00511739868670702, + 0.02123720571398735, + -0.008746711537241936, + -0.016308341175317764, + -0.008679377846419811, + -0.019271045923233032, + 0.0028684367425739765, + -0.004046785179525614, + 0.007622230798006058, + 0.008221505209803581, + -0.008107037283480167, + 0.01111687533557415, + -0.01578313484787941, + -0.00391211686655879, + -0.002179944422096014, + -0.00974325742572546, + -0.0042184870690107346, + -0.007137424778193235, + -0.008989115245640278, + 0.003070439212024212, + 0.005225133616477251, + -0.010739804245531559, + -0.005174632649868727, + 0.011366011574864388, + 0.021116003394126892, + -0.006878187879920006, + 0.00034003768814727664, + -0.0036360465455800295, + -0.008544709533452988, + 0.0005904367426410317, + -0.0006493541295640171, + 0.017143284901976585, + -0.014247915707528591, + 0.02596406452357769, + -0.018961308524012566, + -0.003077172674238682, + -0.02593713067471981, + -0.01661807857453823, + -0.013857376761734486, + 0.019230645149946213, + 0.02310909517109394, + -0.012524159625172615, + 0.010733070783317089, + 0.028011023998260498, + 0.003504744730889797, + -0.03978104144334793, + -0.012591494247317314, + -0.017129819840192795, + 0.0036697136238217354, + -0.012847363948822021, + 0.019917454570531845, + 0.006117311306297779, + -0.008531242609024048, + 0.004420490004122257, + -0.0025873163249343634, + -0.021614275872707367, + 0.0036023794673383236, + 0.006969089154154062, + -0.010005861520767212, + -0.002923987340182066, + -0.008221505209803581, + -0.009096849709749222, + 0.0025570159777998924, + -0.011500679887831211, + 0.003023305209353566, + 0.021870145574212074, + -0.006349614355713129, + -0.009164183400571346, + 0.0031546070240437984, + 0.0024442311841994524, + 0.016106339171528816, + 0.0129416324198246, + -0.005693105980753899, + -0.0008618776919320226, + 0.012261556461453438, + 0.023620834574103355, + -0.006134144961833954, + -0.02876516804099083, + -0.01159494835883379, + 0.0013382671168074012, + -0.011884485371410847, + -0.011379478499293327, + 0.005070264916867018, + -0.004306021612137556, + -0.011204410344362259, + 0.019728919491171837, + 0.013588040135800838, + -0.0034475107677280903, + -0.004720127210021019, + -0.0034778111148625612, + 0.01656421087682247, + 0.026395004242658615, + -0.017830094322562218, + -0.0024206642992794514, + 0.020873600617051125, + -0.027607019990682602, + -0.023432299494743347, + -0.019284512847661972, + 0.025398457422852516, + -0.009460453875362873, + 0.0009637206676416099, + 0.010295398533344269, + -0.03232041373848915, + -0.008665910921990871, + 0.010564735159277916, + 0.012827163562178612, + -0.018907440826296806, + 0.015594599768519402, + 0.008389840833842754, + 0.005511303897947073, + -0.003918849863111973, + 0.00345424422994256, + 0.0009241618099622428, + -0.013803509995341301, + 0.008342706598341465, + 0.00669638579711318, + -0.029869448393583298, + -0.0009788708994165063, + -0.001209490466862917, + 0.007756899110972881, + 0.016133273020386696, + -0.011022607795894146, + -0.006204845849424601, + 0.009224784560501575, + 0.025627395138144493, + -0.0018079230794683099, + 0.006558350287377834, + 0.013857376761734486, + 0.02038879320025444, + 0.01202588714659214, + -0.0015840368578210473, + 0.006103844847530127, + -0.004521491006016731, + -0.014584586024284363, + 0.002057059668004513, + 0.007171091623604298, + 0.009090116247534752, + -0.032051075249910355, + 0.009817325510084629, + 0.005147699266672134, + 0.024280710145831108, + 0.00621831277385354, + -0.007373094093054533, + -0.00465952605009079, + -0.004669626243412495, + 0.0015099693555384874, + -0.0015242778463289142, + -0.017224086448550224, + -0.014975124970078468, + 0.009736524894833565, + -0.011850818060338497, + -0.01858423836529255, + 0.0066694519482553005, + 0.004534957930445671, + -0.007049890235066414, + 0.009904859587550163, + -0.005265533924102783, + -0.010800404474139214, + 0.003030038671568036, + 0.02397097274661064, + 0.008248439058661461, + -0.005693105980753899, + 0.0240921750664711, + -0.0004481932264752686, + -0.005093831568956375, + 0.006420315243303776, + 0.002395414048805833, + -0.004689826630055904, + -0.008968914858996868, + -0.014018978923559189, + 0.008585109375417233, + -0.015486864373087883, + -0.01948651485145092, + 0.0013163834810256958, + 0.002873486839234829, + 0.0120797548443079, + -0.007736698724329472, + -0.005063531454652548, + -0.003385226707905531, + -0.00668965233489871, + -0.010457000695168972, + -0.030785193666815758, + -0.012537626549601555, + -2.0463281543925405e-5, + 0.011891218833625317, + -0.014328716322779655, + -0.0017321720952168107, + 0.02314949594438076, + 0.023647768422961235, + -0.022772423923015594, + 0.005615671630948782, + -0.008585109375417233, + -0.03248201683163643, + 0.002764068776741624, + -0.0022018281742930412, + -0.011682482436299324, + 0.005002930760383606, + 0.014113247394561768, + 0.01756075769662857, + 0.0015831952914595604, + 0.02025412581861019, + 0.009016048163175583, + -0.007204758934676647, + -0.018368767574429512, + 0.018328366801142693, + -0.013204235583543777, + -0.005908575374633074, + 0.013056100346148014, + -0.00888811331242323, + 0.012982032261788845, + -0.013406237587332726, + 0.0025940497871488333, + 0.0015663616359233856, + -0.004093918949365616, + -0.01335237082093954, + -0.00034214186598546803, + 0.013237902894616127, + 0.013884310610592365, + -0.0034441440366208553, + -0.00513086561113596, + -0.030031049624085426, + -0.010167463682591915, + -0.017385689541697502, + 0.011702682822942734, + 0.01164208259433508, + 0.007804032880812883, + 0.0027825855650007725, + 0.025438858196139336, + 0.0036360465455800295, + 0.00023419674835167825, + -0.008194571360945702, + -0.02325723133981228, + -0.00244591454975307, + -0.003046872327104211, + -0.0025570159777998924, + -0.003353242762386799, + -0.007931968197226524, + -0.005443969741463661, + -0.0013710925122722983, + -0.017143284901976585, + -0.029330775141716003, + -0.00827537290751934, + 0.014167114160954952, + 0.02511565387248993, + 0.021843211725354195, + 0.011500679887831211, + 0.004016484599560499, + 0.00233312975615263, + -0.00979712512344122, + -0.007622230798006058, + -0.0029391376301646233, + -0.005723406560719013, + 0.0009460454457439482, + -0.008234972134232521, + 0.005497836973518133, + -0.009170916862785816, + 0.0025990998838096857, + 0.032966822385787964, + 0.022705089300870895, + 0.015958204865455627, + -0.013951645232737064, + -0.017102885991334915, + -0.0021445939783006907, + 0.0010781887685880065, + 0.013426437973976135, + -0.008968914858996868, + -0.006928688380867243, + -0.010834071785211563, + 0.012982032261788845, + 0.009702857583761215, + -0.016012070700526237, + 0.017022084444761276, + 0.009157449938356876, + -0.009170916862785816, + -0.010403132997453213, + -0.0034340438432991505, + 0.021856678649783134, + 0.021008267998695374, + 0.010820604860782623, + 0.0025990998838096857, + 0.02030799351632595, + -0.0013778259744867682, + 0.0022843126207590103, + -0.018759306520223618, + 0.023634301498532295, + 0.0038515159394592047, + 0.015432997606694698, + -0.0010756637202575803, + 0.0124770263209939, + 0.014490318484604359, + -0.003504744730889797, + -0.007305759936571121, + -0.033828698098659515, + 0.011877751909196377, + -0.030165718868374825, + 0.01292143203318119, + -0.020590797066688538, + 0.028926769271492958, + 0.013204235583543777, + -0.0025687995366752148, + 0.004804294556379318, + -0.01071960385888815, + 0.0002240966132376343, + 0.007783832959830761, + 0.006171179004013538, + -0.0008745028171688318, + 0.014557653106749058, + 0.0005592946545220912, + -0.010133796371519566, + -0.024321110919117928, + -0.003962617367506027, + 0.007588563486933708, + 0.011386211961507797, + -0.00535643519833684, + -0.02235495299100876, + -0.010450267232954502, + -0.030246520414948463, + -0.0033246257808059454, + -0.016443010419607162, + 0.023742036893963814, + -0.01954038254916668, + -0.008941981010138988, + -0.01531179528683424, + 0.01576966792345047, + 0.012187489308416843, + -0.017816627398133278, + -0.014975124970078468, + 0.004689826630055904, + -0.01062533538788557, + 0.008470641449093819, + -0.05090465024113655, + 0.01251742709428072, + 0.010403132997453213, + -0.012719429098069668, + 0.0009544622153043747, + 0.014826989732682705, + -0.006285646930336952, + 0.00931905210018158, + 0.0102213304489851, + -0.01955384947359562, + 0.013412971049547195, + 0.015486864373087883, + -0.0120797548443079, + 0.0007402552873827517, + -0.020159857347607613, + -0.006652618292719126, + -0.013628440909087658, + 0.00020347551617305726, + 0.0014476851793006063, + 0.0058749085292220116, + -0.0034744443837553263, + -0.02041572704911232, + -0.013911244459450245, + 0.009904859587550163, + 0.020671596750617027, + 0.04562564939260483, + 0.02038879320025444, + 0.0013837176375091076, + 0.012396224774420261, + 0.017062485218048096, + -0.024859784170985222, + 0.021089069545269012, + -0.0024896818213164806, + -0.032024141401052475, + -0.005497836973518133, + -0.026502739638090134, + -0.0004637642705347389, + 0.022058682516217232, + -7.412021659547463e-5, + -0.01869197189807892, + 0.007157624699175358, + -0.013756375759840012, + -0.0036394132766872644, + -0.0011169059434905648, + -0.001242315862327814, + 0.009083382785320282, + 0.009063182398676872, + -0.020065590739250183, + 0.013291769661009312, + 0.008733244612812996, + -0.009864459745585918, + -0.021089069545269012, + -0.018880508840084076, + -0.022449219599366188, + 0.021573875099420547, + 0.015594599768519402, + -0.012578027322888374, + 0.006783919874578714, + 0.0026933676563203335, + -0.01020786352455616, + 0.01861117035150528, + 0.00722495885565877, + 0.004420490004122257, + -0.001136264530941844, + -0.014194048009812832, + 0.0062082125805318356, + -0.011285210959613323, + 0.00513086561113596, + -0.01589087024331093, + -0.013002232648432255, + -0.0016715714009478688, + -0.012665562331676483, + -0.028118759393692017, + 0.015406063757836819, + 0.004800927825272083, + -0.005386735312640667, + -0.006716585718095303, + -0.025425391271710396, + -0.017385689541697502, + -0.000858931802213192, + 0.010995673947036266, + 0.030973728746175766, + -0.015244461596012115, + -0.0020015088375657797, + -0.009898126125335693, + -0.0017119718249887228, + 0.012746362946927547, + -0.006278913468122482, + 0.007373094093054533, + -0.014059379696846008, + 0.03450204059481621, + 0.0027657519094645977, + 0.005353068467229605, + 0.00555507093667984, + 0.002698417752981186, + 0.004023218061774969, + -0.02422684244811535, + -0.005736873485147953, + -0.007682831492275, + -0.027458883821964264, + -0.007447161711752415, + -0.028011023998260498, + 0.005127498880028725, + -0.013601507060229778, + 0.023890171200037003, + 0.01486738957464695, + -0.009359452873468399, + 0.01651034504175186, + 0.007965635508298874, + -0.016375675797462463, + -0.005679639056324959, + 0.0037235808558762074, + 0.003344826167449355, + 0.0014796688919886947, + 0.015486864373087883, + -0.028926769271492958, + 0.003531678579747677, + 0.006194745656102896, + 0.008457174524664879, + 0.009265185333788395, + -0.036495134234428406, + 0.011675748974084854, + -0.0012818747200071812, + -0.0036899137776345015, + 0.00334145943634212, + -0.020105989649891853, + 0.0016033954452723265, + 0.013271569274365902, + 0.021089069545269012, + 0.007022956386208534, + -0.03059665858745575, + -0.008861180394887924, + 0.015998603776097298, + 0.007366360630840063, + 0.01661807857453823, + -0.02226068452000618, + -0.002405514009296894, + 0.01851690374314785, + -0.0059860097244381905, + -0.012099954299628735, + 0.01251742709428072, + -0.0007385719218291342, + 0.01111014187335968, + -0.004178086761385202, + 0.00015507906209677458, + -0.005922042299062014, + 0.00222034496255219, + 0.02682594209909439, + 0.011844084598124027, + 0.0061644455417990685, + -0.01293489895761013, + 0.02496751956641674, + 0.007238425780087709, + -0.020213725045323372, + -0.000539936067070812, + 0.022947493940591812, + 0.007891567423939705, + -0.01770889386534691, + 0.016402609646320343, + -0.008908313699066639, + -0.0021849945187568665, + 0.007804032880812883, + -0.014382584020495415, + -0.004986097104847431, + -0.0074067614041268826, + -0.002046959474682808, + 0.016860481351614, + 0.03261668235063553, + 0.011695949360728264, + -0.004393556155264378, + -0.005885008722543716, + -0.025223389267921448, + 0.01203935407102108, + 0.009871193207800388, + 0.0022573787719011307, + 0.0008408357389271259, + -0.022960960865020752, + -0.014072846621274948, + 0.00974999088793993, + 0.0020082422997802496, + 0.012281756848096848, + 0.015486864373087883, + 0.03897302970290184, + 0.003381859976798296, + -0.004386822693049908, + -0.007117224391549826, + 0.013473572209477425, + 0.014153647236526012, + 0.016294874250888824, + -0.005528137553483248, + 0.010369465686380863, + 0.004609025549143553, + 0.02884596958756447, + -0.009467187337577343, + 0.004942330066114664, + -0.01160168182104826, + 0.01026846468448639, + -0.0020637931302189827, + -0.015904337167739868, + 0.0036798138171434402, + 0.011049541644752026, + -0.011716149747371674, + -0.010611869394779205, + -0.025371523573994637, + -0.012557826936244965, + 0.014598052948713303, + 0.028522765263915062, + 0.021870145574212074, + -0.007777099497616291, + 0.015527265146374702, + -0.0031815406400710344, + -0.004198287148028612, + 0.018974775448441505, + 0.007898300886154175, + -0.014692321419715881, + -7.012225250946358e-5, + -0.004258887842297554, + -0.0025974165182560682, + 0.0018516903510317206, + -0.008302305825054646, + 0.011736350134015083, + 0.005164532456547022, + 0.03175480663776398, + -0.02025412581861019, + -0.005279000848531723, + 0.00036192129482515156, + -0.012153821997344494, + 0.004470990505069494, + -0.027580086141824722 + ], + "14658e25-10cf-4679-8a52-bedbc8515f4c": [ + -0.002134242095053196, + -0.02275126427412033, + -0.01029190607368946, + -0.029253624379634857, + -0.05442404747009277, + -0.013263413682579994, + 0.014472993090748787, + 0.05579443648457527, + 0.020416008308529854, + 0.04762803018093109, + -0.0019979022908955812, + 0.03361649811267853, + -0.01879391446709633, + -0.017241738736629486, + 0.002340499544516206, + -0.0072504798881709576, + -0.05576646700501442, + 0.027659496292471886, + 0.010005243122577667, + 0.00023946860164869577, + 0.07120432704687119, + -0.043209224939346313, + -0.02015032060444355, + 0.020681696012616158, + -0.02655479498207569, + -0.03459534794092178, + 0.033812265843153, + -0.006813493557274342, + -0.004625065252184868, + -0.019842682406306267, + -0.008823631331324577, + 0.020611779764294624, + 0.023296624422073364, + -0.024387342855334282, + 0.004694982897490263, + -0.0036986537743359804, + -0.011900016106665134, + 0.01967488043010235, + -0.020933400839567184, + 0.0009919593576341867, + -0.010159062221646309, + 0.02872224897146225, + 0.02283516526222229, + -0.004492220934480429, + -0.02558992989361286, + 0.04485928639769554, + 0.024778882041573524, + -0.004523684270679951, + 0.01359901949763298, + 0.009299072436988354, + -0.004712462425231934, + 0.04074811562895775, + -0.009187203831970692, + 0.02723998948931694, + 0.013263413682579994, + -0.01237545721232891, + 0.004712462425231934, + 0.0907813236117363, + 0.030707914382219315, + -0.0010732387891039252, + 0.0069708083756268024, + 0.002541513415053487, + -0.0012838663533329964, + 0.022653380408883095, + -0.014836565591394901, + -0.038678549230098724, + 0.015395907685160637, + 0.008439083583652973, + -0.02006641961634159, + -0.004873273428529501, + -0.013857715763151646, + 0.018416358157992363, + -0.05400453880429268, + -0.0023247681092470884, + 0.0003616063331719488, + -0.007879740558564663, + 0.04329312592744827, + -0.020290156826376915, + 0.019814714789390564, + -0.005114489700645208, + -0.02736584283411503, + 0.02363223023712635, + 0.008320222608745098, + -0.013878691010177135, + 0.035714030265808105, + 0.020094387233257294, + -0.05014507472515106, + -0.03990910202264786, + -0.05540289729833603, + -0.01606711931526661, + 0.01420031301677227, + 0.02648487687110901, + -0.006631706841289997, + 0.01847229339182377, + -0.01787099987268448, + -0.038398876786231995, + 0.009816464968025684, + 0.02459709532558918, + -0.030707914382219315, + -0.0054990379139781, + -0.01950707659125328, + 0.023604262620210648, + -0.044999122619628906, + -0.0016334555111825466, + 0.017968883737921715, + -0.026149271056056023, + 0.014431041665375233, + -0.003009962849318981, + -0.022569477558135986, + 0.04427197575569153, + 0.02227582409977913, + -0.03020450659096241, + 0.015298022888600826, + 0.0062751262448728085, + -0.0004092378367204219, + -0.08261492103338242, + -0.010795313864946365, + -0.025575945153832436, + -0.002957524498924613, + -0.08323019742965698, + 0.04983743652701378, + 0.01991260051727295, + 0.024093687534332275, + -0.014976400882005692, + 0.01613703742623329, + -0.013368290849030018, + -0.02543610893189907, + 0.021842332556843758, + 0.002772242296487093, + 0.012305540032684803, + 0.0012200663331896067, + -0.020178288221359253, + -0.009550776332616806, + 0.019618945196270943, + -0.005659848917275667, + 0.011837090365588665, + 0.022499561309814453, + 0.05176716670393944, + -0.028051037341356277, + 0.05372486636042595, + -0.021255023777484894, + -0.015857364982366562, + 0.010208004154264927, + 0.0009508826187811792, + 0.01029190607368946, + 0.004841810557991266, + -0.037196289747953415, + 0.021856317296624184, + -0.0060094380751252174, + 0.009823456406593323, + -0.024415308609604836, + 0.028694281354546547, + 0.03188253566622734, + -0.0008883935515768826, + -0.028023069724440575, + 0.01217968761920929, + 0.017619295045733452, + 0.02143680863082409, + -0.024485226720571518, + -0.011005068197846413, + -0.016486626118421555, + -0.018528226763010025, + 0.022010136395692825, + 0.00046233172179199755, + -0.0011964690638706088, + 0.010487675666809082, + 0.058507248759269714, + 0.022583462297916412, + -0.052746016532182693, + 0.020122354850172997, + 0.01081629004329443, + -0.026373008266091347, + 0.007037230301648378, + -0.001285614212974906, + -0.024778882041573524, + -0.007096660789102316, + 0.030987586826086044, + -0.0009264113614335656, + 0.042677849531173706, + -0.02620520628988743, + 0.016570527106523514, + 0.0005654605338349938, + -0.023702146485447884, + -0.014934450387954712, + -0.015577694401144981, + 0.006163257639855146, + 0.03772766515612602, + -0.006708616856485605, + -0.03602167218923569, + 0.027701448649168015, + 0.006977800279855728, + 0.011997900903224945, + 0.030512144789099693, + 0.05473168566823006, + -0.018682045862078667, + -0.015549727715551853, + -0.009250130504369736, + -0.016570527106523514, + 0.027995102107524872, + 0.0178290493786335, + -0.010061177425086498, + -0.052857886999845505, + -0.05884285271167755, + 0.008879565633833408, + -0.05179513618350029, + -0.002676105359569192, + 0.0058311475440859795, + -0.012074810452759266, + 0.002616675104945898, + -0.014151370152831078, + 0.01710190251469612, + -0.04457961395382881, + 0.007159586530178785, + 0.012753013521432877, + -0.03288935124874115, + -0.002260094042867422, + -0.015256072394549847, + 0.01097710058093071, + 0.01589931733906269, + 0.02047194354236126, + -0.01546582579612732, + 0.016766298562288284, + 0.041838835924863815, + -0.052382443100214005, + -0.040608279407024384, + -0.018360424786806107, + -0.029337525367736816, + 0.03165879845619202, + -0.02303093671798706, + -0.026694631204009056, + 0.044607579708099365, + 0.0014691485557705164, + 0.012452366761863232, + -0.039321791380643845, + -0.025575945153832436, + -0.0035937768407166004, + -0.0011361648794263601, + -0.02459709532558918, + 0.03157489746809006, + -0.016444675624370575, + 0.030316375195980072, + 0.0025222860276699066, + 0.004792867694050074, + 0.028778182342648506, + 0.017605312168598175, + 0.03912602365016937, + -0.0282468069344759, + 0.05828351154923439, + 0.051012054085731506, + -0.019940568134188652, + -0.023939868435263634, + 0.036357276141643524, + 0.001856318674981594, + -0.02500261925160885, + -0.006830973085016012, + 0.024820832535624504, + -0.006897395011037588, + -0.006068868562579155, + -0.023939868435263634, + -0.015270056203007698, + -0.018696030601859093, + -0.006652682553976774, + -0.001863310462795198, + -0.035238590091466904, + 0.04586610198020935, + -0.021380875259637833, + 0.0270861703902483, + -0.03669288009405136, + -2.8438262233976275e-6, + -0.005492046475410461, + -0.04787973687052727, + 0.0015714034670963883, + -0.008467050269246101, + 0.015437859110534191, + -0.024988636374473572, + 0.002772242296487093, + 0.010963116772472858, + 0.0001401634217472747, + -0.008557943627238274, + 0.022611429914832115, + -0.017619295045733452, + 0.012934800237417221, + -0.0013730116188526154, + 0.01722775585949421, + -0.006841460708528757, + -0.01279496494680643, + 0.022933050990104675, + 0.009809472598135471, + -0.035350460559129715, + -0.017395557835698128, + 0.004009787924587727, + -0.024778882041573524, + 0.02992483414709568, + 0.00949484296143055, + 0.015060302801430225, + -0.011389615945518017, + -0.02607935480773449, + -0.006110819056630135, + 0.0035832892172038555, + 0.009445900097489357, + -0.04402027279138565, + -0.004628560971468687, + 0.02103128656744957, + -0.01345918420702219, + -0.0020276173017919064, + 0.014906483702361584, + 0.01610906980931759, + -0.023939868435263634, + -0.04032861068844795, + 0.010131094604730606, + 0.04416010528802872, + 0.01686418242752552, + -0.0067121125757694244, + -0.01686418242752552, + -0.00847404170781374, + 0.009459883905947208, + 0.029617195948958397, + 0.020360074937343597, + 0.005055059678852558, + -0.017087919637560844, + 0.011158887296915054, + -0.0050690434873104095, + -0.04455164819955826, + -0.0009771018521860242, + 0.03132319077849388, + -0.013752838596701622, + 0.014794615097343922, + 0.01159936934709549, + 0.0016448171809315681, + -0.02723998948931694, + -0.0038070264272391796, + -0.032665614038705826, + -0.025506027042865753, + -0.03121132403612137, + 0.009935325011610985, + -0.0025991955772042274, + -0.023981818929314613, + -0.04491521790623665, + -0.004317426588386297, + 0.003908407408744097, + -0.019115537405014038, + 0.03372836485505104, + -0.0370844230055809, + 0.011382624506950378, + 0.0031602862291038036, + 0.00837615691125393, + 0.005513021722435951, + 0.03020450659096241, + -0.0022128995042294264, + -0.01357804425060749, + 0.0007306414190679789, + -0.028190873563289642, + 0.043125323951244354, + 0.0004728193744085729, + 0.021101204678416252, + 0.027100155130028725, + -0.01492046657949686, + -0.0109980758279562, + 0.00959272775799036, + 0.009641669690608978, + -0.01281594019383192, + -0.009900365956127644, + -0.030260439962148666, + -0.0024698476772755384, + 0.0024960667360574007, + 0.02715608850121498, + 0.024415308609604836, + 0.02539415843784809, + 0.0028229327872395515, + 0.014556894078850746, + -0.007467225193977356, + 0.05873098596930504, + 0.007774863857775927, + -0.010627511888742447, + -0.01978674903512001, + 0.00582765182480216, + 0.04614577442407608, + 0.017395557835698128, + -0.01705995202064514, + 0.018933750689029694, + 0.004331409931182861, + 0.020332107320427895, + -0.0008547455654479563, + 0.004946687258780003, + 0.06840761005878448, + 0.03417583927512169, + 0.010592552833259106, + 0.01225659716874361, + -0.023702146485447884, + -0.033588528633117676, + -0.04416010528802872, + -0.02407970279455185, + -0.020122354850172997, + 0.012711063027381897, + -0.03411990404129028, + 0.027184056118130684, + -0.006963816937059164, + 0.013116586953401566, + 0.023660195991396904, + 0.01279496494680643, + -0.004271979909390211, + -0.002226883079856634, + 0.0004286837356630713, + 0.003621743991971016, + 0.008222337812185287, + -0.02683446742594242, + 0.009767522104084492, + 0.009215171448886395, + -0.003852472873404622, + -0.0008468798478133976, + 0.025492044165730476, + -0.02483481727540493, + 0.003380527487024665, + -0.01289984118193388, + 0.05296975374221802, + -0.02139485813677311, + 0.02984093315899372, + 0.00516692828387022, + -0.05643767863512039, + -0.010683446191251278, + 0.026988286525011063, + 0.06270232051610947, + -0.009487850591540337, + 0.014025518670678139, + -0.02760356292128563, + 0.012004893273115158, + 0.033812265843153, + 0.026331057772040367, + 0.011158887296915054, + -0.03048417717218399, + -0.028582412749528885, + 0.004369864705950022, + -0.025813665241003036, + -0.026988286525011063, + 0.009194196201860905, + 0.008592902682721615, + 0.010711412876844406, + -0.0008945113513618708, + -0.01415836252272129, + -0.0011685019126161933, + 0.03493095189332962, + 0.03674881532788277, + 0.01149449311196804, + -0.013025693595409393, + 0.0010522634256631136, + -0.024499211460351944, + -0.0121587123721838, + -0.012193671427667141, + 0.004880265332758427, + 0.02266736328601837, + 0.01019402127712965, + 0.049138255417346954, + -0.025785699486732483, + 0.013843731954693794, + -0.007802831009030342, + 0.026820482686161995, + -0.024848800152540207, + -0.002824680646881461, + 0.030707914382219315, + 0.014459009282290936, + -0.023226706311106682, + 0.007984616793692112, + 0.04835517704486847, + -0.030624013394117355, + 0.014277222566306591, + -0.025869600474834442, + -0.03828701004385948, + 0.013976575806736946, + 0.004649536218494177, + -0.02891801856458187, + -0.019157487899065018, + 0.03652507811784744, + -0.01045271661132574, + 0.014403074979782104, + -0.02115713804960251, + -0.006715608295053244, + 0.017619295045733452, + -0.005603914614766836, + 0.03865057975053787, + -0.02174444869160652, + -0.030987586826086044, + -0.029309557750821114, + -0.020611779764294624, + 0.012333506718277931, + 0.034707214683294296, + 0.0006004194146953523, + -0.02519838884472847, + 0.014088444411754608, + 0.00241915718652308, + -0.009103302843868732, + 0.02812095545232296, + -0.0018842857098206878, + -0.019059602171182632, + -0.003733612596988678, + -0.013487150892615318, + -0.05495542287826538, + 0.014934450387954712, + -0.003162034321576357, + 0.00668064970523119, + -0.023170771077275276, + 0.06348539888858795, + -0.01671036332845688, + 0.019968533888459206, + 0.0019140008371323347, + -0.0033228453248739243, + 0.0014595348620787263, + -0.002385946223512292, + 0.021338924765586853, + -0.0003242439706809819, + -0.013305365107953548, + 0.015186154283583164, + 0.014556894078850746, + -0.031099455431103706, + 0.002382450271397829, + -0.010159062221646309, + 0.020402025431394577, + -0.03140709176659584, + 0.024485226720571518, + 0.017759131267666817, + -0.03375633433461189, + -0.01414437871426344, + 0.0067680468782782555, + -0.027421776205301285, + 0.009788497351109982, + 0.016556544229388237, + -0.008229329250752926, + -0.016276873648166656, + 0.030512144789099693, + 0.023016951978206635, + -0.010599544271826744, + -0.001625589793547988, + 8.794353198027238e-5, + -0.0180667694658041, + -0.007334381341934204, + 0.0019314802484586835, + -0.01574549823999405, + 0.027939168736338615, + -0.024331407621502876, + 0.0009412689250893891, + 0.029421426355838776, + -0.013494143262505531, + 0.029952801764011383, + -0.011012059636414051, + -0.03409193828701973, + 0.00917322002351284, + 0.024457260966300964, + -0.01858416199684143, + 0.012732038274407387, + 0.00773291289806366, + 0.03048417717218399, + -0.02115713804960251, + -0.009355006739497185, + 0.0036601987667381763, + -0.011529451236128807, + 0.03121132403612137, + -0.03652507811784744, + 0.03028840757906437, + -0.01858416199684143, + -0.04681698605418205, + -0.0034172344021499157, + 0.044803351163864136, + -0.0268764179199934, + 0.00953679345548153, + -0.02111518755555153, + -0.036161504685878754, + 0.012459359131753445, + -0.019101552665233612, + 0.026498861610889435, + -3.433075107750483e-5, + 0.020541861653327942, + 0.016934100538492203, + 0.01950707659125328, + 0.021856317296624184, + -0.010767347179353237, + -0.008676803670823574, + 0.02066771313548088, + 0.013249430805444717, + 0.014640795066952705, + -0.016081102192401886, + 0.007788847200572491, + 0.02423352375626564, + -0.047012753784656525, + 0.007635028101503849, + -0.020318124443292618, + -0.0038909276481717825, + 0.009837440215051174, + -0.04049641266465187, + -0.04211850464344025, + -0.01694808341562748, + 0.016878167167305946, + -0.013550077565014362, + 0.028890050947666168, + 0.04287361726164818, + -0.012361474335193634, + -0.0403006412088871, + 0.012347490526735783, + -0.006544309668242931, + 0.02075161412358284, + -0.007243487983942032, + -0.009180212393403053, + -0.02440132573246956, + 0.02919768914580345, + 0.041279491037130356, + -0.027142105624079704, + -0.012746022082865238, + 0.006002446636557579, + -0.03280545026063919, + -0.028302740305662155, + -0.012060827575623989, + -0.015549727715551853, + -0.009935325011610985, + -0.002905086148530245, + 0.02287711761891842, + -0.008564935065805912, + 0.04796363785862923, + 0.011941966600716114, + 0.021464776247739792, + 0.023744098842144012, + 0.002286313334479928, + -0.028554445132613182, + 0.030512144789099693, + -0.05123579129576683, + 0.053780801594257355, + -0.026261139661073685, + 0.034958917647600174, + 0.00041885155951604247, + -0.00915224477648735, + -0.028554445132613182, + -0.005586435552686453, + 0.009550776332616806, + 0.003258171258494258, + -0.006131794303655624, + -0.0009028140921145678, + -0.01630483940243721, + 0.010138086974620819, + 0.0035832892172038555, + 0.0005624016048386693, + 0.029337525367736816, + -0.01578744873404503, + 0.025310257449746132, + -0.014011534862220287, + -0.013116586953401566, + -0.003558818018063903, + -0.0028002094477415085, + -0.01673833094537258, + -0.03669288009405136, + -0.04704072326421738, + 0.028834117576479912, + 0.02234574221074581, + -0.003730116644874215, + -0.04650934785604477, + 0.014004543423652649, + 0.0407760851085186, + 0.007278447039425373, + -0.0005982345319353044, + -0.05260618031024933, + -0.03392413631081581, + 0.02051389403641224, + 0.025729764252901077, + -0.0020940392278134823, + 0.02131095714867115, + -0.0004994755727238953, + -0.018514243885874748, + 0.002990735461935401, + 0.0324418768286705, + 0.015004368498921394, + -0.0007712811348028481, + -0.008026568219065666, + 0.008795663714408875, + 0.032022371888160706, + -0.024653030559420586, + -0.011249780654907227, + 0.012655128724873066, + -0.0024803353007882833, + -0.011061002500355244, + -0.01847229339182377, + 0.0038070264272391796, + -0.040804050862789154, + 0.015605662018060684, + -0.004831322468817234, + -0.014228280633687973, + 0.008327214978635311, + -0.0043104346841573715, + 0.0076070609502494335, + 0.023618245497345924, + -0.013158537447452545, + 0.0016491870628669858, + 0.030092637985944748, + -0.0375039279460907, + 0.002508302452042699, + 0.0004535919870249927, + 0.006561789195984602, + -0.024163605645298958, + 0.017493443563580513, + -0.0012375457445159554, + 0.014640795066952705, + -0.02174444869160652, + -0.008054534904658794, + 0.005915048997849226, + -0.040636248886585236, + -0.03582590073347092, + -0.010634503327310085, + 0.008439083583652973, + -0.0024174093268811703, + -0.010138086974620819, + 0.03325292468070984, + -0.018514243885874748, + -0.013633978553116322, + 0.009103302843868732, + -0.009858415462076664, + 0.030428243800997734, + 0.00032817685860209167, + -0.01789896748960018, + 0.025086520239710808, + 0.005970983300358057, + -0.0024908229243010283, + -0.007257471792399883, + -0.00703023886308074, + -0.010110119357705116, + 0.018052786588668823, + -0.017605312168598175, + 0.04790770262479782, + 0.009061352349817753, + -0.052018873393535614, + -0.0389302521944046, + 0.03937772661447525, + 0.02287711761891842, + 0.008159412071108818, + -0.009984266944229603, + -0.0012541512260213494, + 0.04930606111884117, + -0.0003356056404300034, + -0.03996503725647926, + 0.011354656890034676, + -0.015857364982366562, + -0.01903163641691208, + -0.02496066875755787, + 0.0028002094477415085, + 0.030064670369029045, + -0.03249781206250191, + -0.016444675624370575, + -0.018598144873976707, + 0.050620514899492264, + 0.008509000763297081, + 0.011627336964011192, + -0.004331409931182861, + -0.006173745263367891, + -0.005925536621361971, + 0.0019297323888167739, + 0.008515993133187294, + 0.03884635120630264, + -0.027393808588385582, + 0.04687291756272316, + 0.023548327386379242, + -0.009893374517560005, + -0.019437158480286598, + -0.012871874496340752, + 0.022695330902934074, + -0.0052473340183496475, + 0.02203810214996338, + -0.0008848976576700807, + 0.0069043864496052265, + 0.007054709829390049, + -0.01826253905892372, + 0.016039151698350906, + 0.011123928241431713, + -0.024373358115553856, + 0.022094037383794785, + 0.04041251167654991, + -0.03370039910078049, + 0.017633279785513878, + 0.0009403949370607734, + 0.01974479854106903, + 0.008781680837273598, + 0.014088444411754608, + -0.025813665241003036, + 0.04622967541217804, + 0.028540462255477905, + -0.03213423863053322, + 0.009991259314119816, + -0.03227407485246658, + -0.05884285271167755, + -0.005719279404729605, + -0.016081102192401886, + 0.004628560971468687, + -0.02195420116186142, + 0.022541511803865433, + 0.03179863467812538, + -0.021772414445877075, + -0.013123578391969204, + 0.022457608953118324, + -0.006575772538781166, + -0.0029750040266662836, + 0.010138086974620819, + 0.007355356588959694, + 0.011067993938922882, + 0.03920992463827133, + 0.002961020451039076, + 0.0008359551429748535, + 0.005701799876987934, + -0.009683621115982533, + -0.033588528633117676, + 0.002363222884014249, + 0.04111168906092644, + -0.012543260119855404, + 0.00839014071971178, + -0.004579618573188782, + -0.001618598005734384, + 0.027072187513113022, + 0.0006908756331540644, + -0.0412515252828598, + -0.011941966600716114, + -0.004327914211899042, + 0.025464076548814774, + 0.002338751684874296, + -0.012424400076270103, + -0.00887257419526577, + -0.01826253905892372, + -0.0021814366336911917, + -0.02543610893189907, + -0.008509000763297081, + 0.029673131182789803, + 0.002475091489031911, + 0.030987586826086044, + -0.015367940999567509, + -0.021324940025806427, + -6.522023613797501e-5, + 0.0012646389659494162, + 0.0032756507862359285, + 0.018402375280857086, + 0.01035483181476593, + -0.004824331030249596, + -0.0060793561860919, + 0.01731165684759617, + 0.03308512270450592, + 0.05084425210952759, + -0.0481594055891037, + -0.0057961889542639256, + -0.026806499809026718, + -0.015885332599282265, + 0.004894248675554991, + -0.011550427414476871, + -0.017437508329749107, + -0.018486276268959045, + -0.003908407408744097, + 0.01029190607368946, + 0.005984967108815908, + 0.002226883079856634, + 0.04315328970551491, + 0.012270580977201462, + 0.008033559657633305, + -0.019716830924153328, + -0.011830097995698452, + 0.005950008053332567, + -0.04234224185347557, + 0.030428243800997734, + 0.024205556139349937, + 0.021562661975622177, + 0.004618073347955942, + 0.013235446996986866, + 0.010921166278421879, + 0.00967662874609232, + 0.0008377031190320849, + -0.029784999787807465, + 0.0024034257512539625, + 0.01352210994809866, + -0.01858416199684143, + 0.005317251663655043, + 5.1018174417549744e-5, + 0.000397439202060923, + -0.009963291697204113, + -0.008208354003727436, + 0.004775388166308403, + -0.003072889056056738, + -0.030987586826086044, + -0.017045969143509865, + -0.02238769270479679, + -0.004841810557991266, + -0.008781680837273598, + 0.010641494765877724, + -0.012480334378778934, + 0.011361649259924889, + 0.025575945153832436, + 0.005803180858492851, + -0.06471595168113708, + -0.0060968357138335705, + 0.0009098058799281716, + -0.012249605730175972, + -0.006047892849892378, + 0.00030130217783153057, + 0.01281594019383192, + -0.008299247361719608, + -0.013654953800141811, + -0.026303090155124664, + 0.0015801431145519018, + -0.026932351291179657, + -0.009382974356412888, + -0.008522984571754932, + 0.01778709888458252, + -0.0061772409826517105, + -0.006271630059927702, + -0.008264288306236267, + -0.0259255338460207, + 0.0002654693089425564, + -0.02331060729920864, + -0.048970453441143036, + 0.008131444454193115, + 0.02006641961634159, + 0.009382974356412888, + 0.05895472317934036, + 0.015270056203007698, + 0.018877817317843437, + -0.011690262705087662, + -0.03221813961863518, + 0.04457961395382881, + 0.013801781460642815, + 0.01415836252272129, + -0.003340324852615595, + 0.007376331835985184, + -0.007012759335339069, + -0.006530326325446367, + 0.0027250477578490973, + 0.013836740516126156, + 0.007096660789102316, + -0.01492046657949686, + -0.023772064596414566, + 0.003670686623081565, + 0.013787797652184963, + 0.008900540880858898, + 0.006698128767311573, + 0.003165530040860176, + 0.007865756750106812, + 0.008306238800287247, + -0.04648137837648392, + 0.03328089043498039, + -0.046565279364585876, + 0.010949133895337582, + -0.00835518166422844, + -0.05330536141991615, + -0.04091591760516167, + -0.039601463824510574, + -0.008767697028815746, + 0.018696030601859093, + -0.04346092790365219, + 0.019758781418204308, + -0.019800731912255287, + -0.022205905988812447, + 0.034231774508953094, + 0.02150672674179077, + -0.01733962446451187, + 0.025897568091750145, + 0.044999122619628906, + 1.7656984709901735e-5, + -0.0018598145106807351, + 0.0010094387689605355, + 0.03501485288143158, + -0.002524033887311816, + 0.009921341203153133, + 0.0072364965453743935, + -0.016165005043148994, + -0.0019349762005731463, + 0.007963641546666622, + -0.022373707965016365, + 0.00020188775670249015, + -0.022821182385087013, + 0.020416008308529854, + -0.035658098757267, + 0.02947736158967018, + 0.0067016249522566795, + 0.0036601987667381763, + -0.0025624888949096203, + -0.01101905107498169, + -0.000533560523763299, + -0.01151546835899353, + 0.020723648369312286, + -0.011613353155553341, + -0.019842682406306267, + 0.004614577163010836, + 0.016528576612472534, + -0.003663694718852639, + 0.021422825753688812, + 0.012130744755268097, + 0.01414437871426344, + -0.011865057051181793, + 0.012746022082865238, + -0.006722600199282169, + -0.009788497351109982, + -0.006463904399424791, + -0.0020573323126882315, + -0.017129870131611824, + 0.035350460559129715, + -0.026568777859210968, + 0.002676105359569192, + -0.028372658416628838, + 0.008495017886161804, + -0.013773813843727112, + -0.03918195515871048, + -0.005254325456917286, + 0.006166753359138966, + 0.0055724517442286015, + 0.0013887430541217327, + -0.023730114102363586, + -0.02891801856458187, + 0.043964337557554245, + 0.006068868562579155, + -0.011613353155553341, + -0.004359377082437277, + 0.0028526477981358767, + 0.023883933201432228, + 0.030064670369029045, + -0.009872399270534515, + -4.162296318099834e-5, + 0.01097710058093071, + -0.03140709176659584, + 0.03537842631340027, + 0.018206605687737465, + -0.023702146485447884, + -0.03697255253791809, + -0.00454815523698926, + 0.038510747253894806, + -0.027575595304369926, + -0.024457260966300964, + 0.00843209121376276, + 0.013249430805444717, + -0.014598844572901726, + 0.006834468804299831, + -0.0017968884203583002, + -0.0007909455453045666, + 0.004862785805016756, + 0.011389615945518017, + -0.015102253295481205, + 0.007977625355124474, + 0.006558293476700783, + -0.003918895032256842, + 0.018737981095910072, + -0.01894773356616497, + 0.009194196201860905, + -0.06085648760199547, + -0.022289806976914406, + 0.010012234561145306, + 0.04522285982966423, + -0.007676978595554829, + -0.01281594019383192, + -0.0023212721571326256, + 0.0016815239796414971, + -0.006775038782507181, + 0.0002698391617741436, + 0.019926583394408226, + 0.002316028345376253, + 0.021660545840859413, + 0.017255723476409912, + -0.014403074979782104, + 0.020639745518565178, + -0.006173745263367891, + 0.012053835205733776, + -0.0013668937608599663, + 0.0005759482155553997, + 0.006897395011037588, + -0.006638698745518923, + 0.023730114102363586, + -0.002104526851326227, + 0.008481034077703953, + 0.03319698944687843, + -0.03177066519856453, + 0.016472643241286278, + -0.03409193828701973, + 0.0016649184981361032, + 0.036105573177337646, + 0.01417933776974678, + -0.012634153477847576, + 0.01089319959282875, + 0.008124453015625477, + -0.009858415462076664, + 0.027463726699352264, + 0.020527876913547516, + 0.004558643326163292, + 0.009886382147669792, + 0.012676103971898556, + 0.015969233587384224, + -0.017759131267666817, + -0.01766124553978443, + 0.008571927435696125, + -0.019003668799996376, + 0.009159237146377563, + -0.02655479498207569, + -0.004649536218494177, + 0.020416008308529854, + 0.00574724655598402, + 0.009138261899352074, + 0.010361824184656143, + -0.019437158480286598, + 0.008837615139782429, + 0.008704771287739277, + -0.008739729411900043, + 0.016290856525301933, + 0.0035081275273114443, + -0.031714729964733124, + 0.052214641124010086, + 0.005131969228386879, + 0.0006642194930464029, + 0.009452891536056995, + -0.023128820583224297, + -0.00639049056917429, + -0.004950182978063822, + 0.015731513500213623, + 0.008362173102796078, + 0.010809297673404217, + -0.03160286322236061, + 0.007781855296343565, + 0.0123964324593544, + 0.029421426355838776, + 0.01211676187813282, + -0.0040762098506093025, + 0.0052718049846589565, + 0.015969233587384224, + -0.035993702709674835, + -0.00769096240401268, + 0.004331409931182861, + -0.007278447039425373, + 0.026261139661073685, + -0.019087569788098335, + -0.0015443102456629276, + -0.029113788157701492, + -0.004516692366451025, + 0.002242614747956395, + -0.02992483414709568, + 0.002808949211612344, + 0.029505327343940735, + 0.006656178273260593, + 0.010173045098781586, + 0.02672259882092476, + -0.030596045777201653, + 0.015242088586091995, + 0.00258346414193511, + -0.007271455135196447, + 0.005257821641862392, + 0.009040376171469688, + -0.0003290508175268769, + -0.011613353155553341, + -0.004324418492615223, + -0.02195420116186142, + -0.009914349764585495, + 0.00671910447999835, + 0.003259919350966811, + -0.00766998715698719, + 0.010704421438276768, + -0.010599544271826744, + 0.013871699571609497, + -0.0029645164031535387, + -0.0033385767601430416, + -0.012655128724873066, + -0.006418457720428705, + 0.005502534098923206, + -0.038678549230098724, + -0.02115713804960251, + -0.029673131182789803, + -0.0015556719154119492, + -0.002331760013476014, + 0.01954902708530426, + -0.011767172254621983, + -0.03501485288143158, + 0.00576822180300951, + 0.004873273428529501, + 0.010103127919137478, + -0.004674007650464773, + 0.010774338617920876, + -0.017773114144802094, + -0.00120957859326154, + 0.005670336540788412, + -0.005586435552686453, + 0.01890578307211399, + 0.009935325011610985, + 0.00033014328801073134, + 0.02407970279455185, + -0.026219189167022705, + 0.006219191942363977, + -0.019758781418204308, + -0.012046843767166138, + 0.0007634154171682894, + 0.01341723371297121, + -0.0033752836752682924, + 0.011830097995698452, + -0.013626987114548683, + 0.007907707244157791, + -0.020891450345516205, + 0.01754937693476677, + -0.011760180816054344, + 0.0040202755481004715, + 0.016934100538492203, + 0.01095612533390522, + -0.0001381969777867198, + 0.006743575446307659, + -0.0029872397426515818, + -0.0027635025326162577, + -0.008984441868960857, + 0.004628560971468687, + -0.020485926419496536, + -0.0006388742476701736, + -0.00835518166422844, + 0.02266736328601837, + -0.01995455101132393, + 0.027072187513113022, + 0.016095086932182312, + -0.018723996356129646, + 0.012599194422364235, + -0.01815067045390606, + -0.02131095714867115, + 0.002122006379067898, + 0.0016395733691751957, + -0.014640795066952705, + -0.0069358497858047485, + 0.005376681685447693, + 0.0009762278059497476, + -0.014186329208314419, + -0.02203810214996338, + 0.02491871826350689, + -0.018486276268959045, + -0.006278621964156628, + 0.01417933776974678, + -0.012361474335193634, + 0.014850549399852753, + -0.005726270843297243, + -0.008383149281144142, + -0.002298549050465226, + 0.008928507566452026, + -0.032385941594839096, + 0.009914349764585495, + 0.01850026100873947, + 0.003544834442436695, + 0.0007721551228314638, + 0.01954902708530426, + 0.010984092950820923, + -0.010606535710394382, + 0.024303440004587173, + 0.0067121125757694244, + -0.0005593427340500057, + -0.0015416883397847414, + -0.0030676452443003654, + -0.015633629634976387, + 0.005408145021647215, + 0.022205905988812447, + -0.017954900860786438, + 0.007746896706521511, + -0.020080402493476868, + 0.024289457127451897, + 0.030344342812895775, + -0.01710190251469612, + 0.03400803729891777, + 0.012459359131753445, + -0.002805453259497881, + -0.005072539206594229, + 0.011760180816054344, + -0.0006537318113259971, + -0.018374407663941383, + -0.01854221150279045, + -0.002572976518422365, + 0.019716830924153328, + -0.01472469698637724, + -0.02251354418694973, + -0.010201012715697289, + -0.02111518755555153, + 0.0026009436696767807, + 0.0015923788305372, + 0.005285788793116808, + -0.04217443987727165, + 0.007187553681433201, + -0.007327389437705278, + -0.001978674903512001, + 0.007145603187382221, + -0.024457260966300964, + 0.01025694701820612, + -0.004128648433834314, + -0.02623317390680313, + 0.02984093315899372, + -0.00951581820845604, + 0.022010136395692825, + 0.004121656529605389, + -0.02223387360572815, + -0.03288935124874115, + -0.00030501658329740167, + 0.02223387360572815, + 0.026946336030960083, + 0.0022810695227235556, + -0.03269357979297638, + -0.020891450345516205, + -0.014472993090748787, + -0.005184407811611891, + 0.014584860764443874, + -0.029393458738923073, + -0.0030187026131898165, + 0.03705645352602005, + 0.014165353961288929, + 0.019563011825084686, + -0.004785876255482435, + -0.0069043864496052265, + 0.02382799983024597, + -0.02451319433748722, + 0.0065338220447301865, + 0.00971158780157566, + -0.0033280891366302967, + -0.0002901590196415782, + 0.012046843767166138, + -0.010305889882147312, + -0.006614227779209614, + -0.0058311475440859795, + 0.005754237994551659, + -0.014570877887308598, + -0.016612477600574493, + 0.027631530538201332, + -0.019702846184372902, + -0.0032739026937633753, + 0.0127390306442976, + 0.006621219217777252, + -0.008886557072401047, + 0.008362173102796078, + -0.006425449624657631, + -0.011361649259924889, + -0.01222163811326027, + -0.010683446191251278, + -0.019660895690321922, + 0.006603739690035582, + 0.0015574198914691806, + 0.005376681685447693, + 0.014305190183222294, + 0.004684495273977518, + 0.03179863467812538, + 0.009872399270534515, + 0.00272854370996356, + 0.0045446595177054405, + 0.009159237146377563, + -0.019730813801288605, + 0.005296276416629553, + 0.0029645164031535387, + -0.011788147501647472, + -0.0016439431346952915, + -0.011969934217631817, + 0.002905086148530245, + 0.013976575806736946, + 0.0035972727928310633, + -0.005408145021647215, + 0.010249955579638481, + 0.004922215826809406, + -0.0002720241027418524, + 0.01047369185835123, + 0.009466875344514847, + 0.0022373709362000227, + -0.0042300294153392315, + -0.0065338220447301865, + 0.0020276173017919064, + -0.0017829048447310925, + 0.012424400076270103, + 0.004597098100930452, + 0.00746023328974843, + -0.013976575806736946, + 0.00836916547268629, + -0.028834117576479912, + 0.010732388123869896, + 0.003525607055053115, + -0.017884982749819756, + 0.016962068155407906, + 0.010228979401290417, + -0.009438908658921719, + 0.010389790870249271, + 0.018849849700927734, + -0.0023352557327598333, + 0.02343645878136158, + -0.015256072394549847, + -0.0037720673717558384, + 0.0038175140507519245, + -0.004929207731038332, + -0.010208004154264927, + 0.025492044165730476, + -0.013710888102650642, + -0.020569827407598495, + -0.011263763532042503, + 0.01787099987268448, + 0.0004863659560214728, + 0.01939520798623562, + 0.014906483702361584, + 0.010110119357705116, + 0.011445550248026848, + -0.003565809689462185, + 0.020276173949241638, + -0.012697079218924046, + 0.01171822939068079, + 0.005778709426522255, + -0.000541863264515996, + -0.006156265735626221, + 0.022443626075983047, + 0.013137562200427055, + 0.00951581820845604, + -0.003443453460931778, + 0.0034172344021499157, + -0.005152944941073656, + 0.03666491433978081, + -0.005366194061934948, + -0.0129767507314682, + 0.015577694401144981, + -0.017954900860786438, + 0.001655304804444313, + 0.021618595346808434, + 0.025506027042865753, + 0.01163432840257883, + -0.0014665266498923302, + 0.0032983741257339716, + -0.0021814366336911917, + -0.02131095714867115, + -0.012487325817346573, + -0.0001318606809945777, + -0.003834993578493595, + -0.010613528080284595, + 0.00835518166422844, + -8.750654524192214e-5, + 0.0007459359476342797, + -0.0034504453651607037, + -0.014417058788239956, + 0.016486626118421555, + -0.006373011041432619, + 0.020206255838274956, + -0.050173040479421616, + -0.00785177294164896, + 0.0038070264272391796, + -0.0018615624867379665, + -0.016332807019352913, + 0.010368815623223782, + -0.005936024710536003, + 0.01566159538924694, + 0.005785701330751181, + -0.005642369389533997, + 0.026652680709958076, + 0.0004645166336558759, + -0.009180212393403053, + 0.009271105751395226, + 0.0021359899546951056, + 0.016878167167305946, + -0.01815067045390606, + 0.025268306955695152, + -0.03392413631081581, + 0.0049012405797839165, + 0.019646912813186646, + 0.020863482728600502, + -0.012123753316700459, + -0.0104177575558424, + 0.009998250752687454, + 0.0017662993632256985, + -0.0008586784824728966, + -0.03084775060415268, + -0.009389965794980526, + -0.01778709888458252, + 0.004191574640572071, + 1.1962505595874973e-5, + 0.008425099775195122, + 0.016290856525301933, + 0.01496241707354784, + 0.0036846701987087727, + 0.00010979285434586927, + -0.0014586609322577715, + 0.007893724367022514, + -0.002917321864515543, + 0.016416708007454872, + -0.02363223023712635, + 0.00021314015612006187, + 0.012543260119855404, + -0.0038140180986374617, + -0.01718580536544323, + -0.013039677403867245, + 0.0305680800229311, + -0.014990384690463543, + 0.00413564033806324, + 0.003029190469533205, + 0.006005942355841398, + 0.013074635528028011, + 0.003852472873404622, + 0.012927808798849583, + -0.009550776332616806, + -0.01638874225318432, + -0.022653380408883095, + -0.01838839240372181, + -0.005792692769318819, + -0.021059252321720123, + -0.01991260051727295, + -0.016612477600574493, + -0.037028487771749496, + 0.0061213066801428795, + -0.01959097757935524, + 0.025212373584508896, + -0.0050131091848015785, + 0.02627512440085411, + -0.008187378756701946, + 0.03918195515871048, + -0.019730813801288605, + -0.031714729964733124, + 0.025506027042865753, + -0.0010880964109674096, + 0.01907358691096306, + -0.0169061329215765, + 0.014074460603296757, + 0.039713334292173386, + -0.017395557835698128, + -0.008802656084299088, + 0.01081629004329443, + -0.007100156508386135, + 0.01729767397046089, + 0.00705121411010623, + -0.013808772899210453, + -0.004950182978063822, + 0.007152595091611147, + -0.035658098757267, + -0.01879391446709633, + -0.021464776247739792, + 0.017241738736629486, + -0.022611429914832115, + -0.026652680709958076, + 0.018010836094617844, + -0.0014429293805733323, + 0.0067121125757694244, + 0.0067820302210748196, + 0.00895647518336773, + -0.013906657695770264, + 0.01658451184630394, + -0.0022513545118272305, + 0.0068484521470963955, + 0.013564060442149639, + -0.00018473603995516896, + -0.004495717119425535, + -0.010068168863654137, + 0.012787972576916218, + -0.01871001347899437, + 0.0050690434873104095, + -0.007565109990537167, + 0.017815064638853073, + 0.018402375280857086, + -0.0389302521944046, + -0.006617723498493433, + 0.005058555863797665, + 0.0072504798881709576, + 0.01847229339182377, + 0.008117460645735264, + -0.002718056086450815, + -0.02058381214737892, + -0.00483831437304616, + -0.0036846701987087727, + 0.013396257534623146, + 0.01294179167598486, + 0.006579268723726273, + 0.012557243928313255, + -0.015004368498921394, + -0.0043523856438696384, + 0.018122704699635506, + 0.0053277392871677876, + 0.0002672172267921269, + 0.003953853622078896, + 0.020765598863363266, + 0.00206782016903162, + 0.007278447039425373, + -0.0206257626414299, + -0.0037755633238703012, + 0.013032685033977032, + -0.0006629084818996489, + -0.0048453062772750854, + -0.0007835167925804853, + -0.010326865129172802, + 0.020122354850172997, + 0.008788672275841236, + -0.009865406900644302, + 0.006939345505088568, + -0.015074285678565502, + 0.017479458823800087, + 0.0035972727928310633, + -0.007152595091611147, + 0.0008582414593547583, + 0.0002344432577956468, + -0.006998775526881218, + -0.026261139661073685, + 0.0014499211683869362, + 0.009320047684013844, + -0.008439083583652973, + -0.005513021722435951, + -0.007355356588959694, + -0.003025694517418742, + -0.006456912495195866, + -0.013214471749961376, + 0.07539939880371094, + 0.004967662505805492, + 0.020695680752396584, + 0.015969233587384224, + -0.00196294323541224, + -0.03221813961863518, + 0.0005580317229032516, + 0.024387342855334282, + 0.007935674861073494, + 0.0035238591954112053, + -0.02603740245103836, + -0.00894948374480009, + 0.026107320562005043, + 0.020527876913547516, + -0.02139485813677311, + -0.0009517566068097949, + 0.012011884711682796, + 0.004705470521003008, + -0.017045969143509865, + 0.0018091241363435984, + 0.012186679057776928, + -0.01027792226523161, + -0.007355356588959694, + 0.007921691052615643, + -0.00917322002351284, + 0.00969760399311781, + -0.0003141932829748839, + -0.01778709888458252, + 0.017857015132904053, + 0.02732389234006405, + 0.0024960667360574007, + -0.0020922913681715727, + 0.002838664222508669, + -0.02444327622652054, + 0.008222337812185287, + 0.003946862183511257, + 0.011739205569028854, + -0.002775738248601556, + 0.005278796888887882, + 0.0029313054401427507, + -0.0060548847541213036, + -0.012410416267812252, + 0.022443626075983047, + 0.02094738371670246, + -0.02916972152888775, + 0.005953503772616386, + -0.021898267790675163, + 0.0005693933926522732, + 8.944567184698826e-7, + 0.002917321864515543, + 0.007823806256055832, + 0.00305890548042953, + 0.012228630483150482, + 0.024806849658489227, + 0.016276873648166656, + -0.00415661558508873, + 0.005180912092328072, + 0.012459359131753445, + 0.006628211122006178, + -0.012487325817346573, + -0.02524033933877945, + -0.023366542533040047, + 0.00027180559118278325, + -0.009718579240143299, + -0.01602516882121563, + -0.007788847200572491, + -0.020374057814478874, + 0.005544484592974186, + -0.0004079268837813288, + -0.022219888865947723, + -0.014934450387954712, + -0.015619644895195961, + 0.004041251260787249, + -0.025645863264799118, + -0.0038210100028663874, + 0.027505677193403244, + 0.01473868079483509, + 0.02820485644042492, + 0.029337525367736816, + -0.006673657801002264, + -0.01978674903512001, + 0.005359202157706022, + -0.01959097757935524, + -0.01167627889662981, + 0.007970633916556835, + -0.010844256728887558, + 0.018891800194978714, + -0.038678549230098724, + 0.007558118551969528, + -0.024736931547522545, + -0.026974301785230637, + -0.0062891095876693726, + -0.006705120671540499, + 0.0183044895529747, + -0.0128578906878829, + 0.0014254499692469835, + 0.002078307792544365, + 0.015158187597990036, + -0.009550776332616806, + -0.017535394057631493, + -0.007537142839282751, + -0.0021831844933331013, + -0.011879040859639645, + 0.0019507077522575855, + 0.003723124973475933, + -0.0025520010385662317, + 0.017675230279564857, + -0.00035155564546585083, + -0.005533996969461441, + -0.0062995972111821175, + -0.0025450093671679497, + 0.001420206157490611, + 0.008124453015625477, + 0.00893549993634224, + -0.0014429293805733323, + -0.014626812189817429, + 0.0058066765777766705, + -0.0002451494219712913, + -0.02558992989361286, + -0.008509000763297081, + 0.00961370300501585, + 0.006254150532186031, + -0.0007634154171682894, + -0.03012060560286045, + -0.003492396092042327, + 0.018038801848888397, + -0.000503845454659313, + -0.01589931733906269, + -0.00036095085670240223, + 0.004418807569891214, + 0.029141755774617195, + 0.012403424829244614, + 0.011207829229533672, + -0.003518615150824189, + 0.022723298519849777, + 0.008320222608745098, + -0.008264288306236267, + 0.00703023886308074, + -0.008096485398709774, + -0.03319698944687843, + 0.016640445217490196, + -0.012032859958708286, + 0.007886731997132301, + 0.01231952290982008, + 0.00965565349906683, + 0.010152069851756096, + 4.763152901432477e-5, + -0.0257157813757658, + 0.009977275505661964, + -0.018723996356129646, + 0.013668937608599663, + -0.030344342812895775, + -0.002639398444443941, + 0.005383673589676619, + -0.0007157838554121554, + 0.0009552525007165968, + -0.022821182385087013, + 0.025659846141934395, + -0.029253624379634857, + -0.004502709023654461, + -0.004268484190106392, + -0.00827128067612648, + -0.017255723476409912, + 0.0025257819797843695, + -0.012676103971898556, + 0.014598844572901726, + 0.007467225193977356, + 0.009257121942937374, + -0.009299072436988354, + -0.011347665451467037, + 0.01686418242752552, + 0.015535743907094002, + 0.029812967404723167, + -0.013759830966591835, + 0.015242088586091995, + -0.013508126139640808, + 0.001989162527024746, + 0.010851248167455196, + -0.011927983723580837, + 0.005044572055339813, + -0.011872049421072006, + -0.017535394057631493, + -0.006974304560571909, + -0.00522635830566287, + -0.027505677193403244, + -0.009487850591540337, + 0.01486453227698803, + 0.004069218412041664, + 0.008998425677418709, + -0.015801431611180305, + 0.0023876940831542015, + 0.01822058856487274, + -0.0027040725108236074, + -0.005876594223082066, + 0.010180037468671799, + 0.005152944941073656, + 0.04242614284157753, + 0.02972906455397606, + 0.043684665113687515, + -0.0001083726529031992, + 0.005114489700645208, + -0.0031847576610744, + 0.018122704699635506, + 0.003726620925590396, + 0.0018685542745515704, + 0.004841810557991266, + -0.01982869952917099, + -0.018122704699635506, + -0.014011534862220287, + -0.0008071140618994832, + -0.014836565591394901, + -0.019702846184372902, + 0.015871349722146988, + 0.012606186792254448, + 0.01225659716874361, + 0.004698478616774082, + 0.01714385487139225, + 0.012669112533330917, + 0.00899143423885107, + 0.004495717119425535, + -0.0037161330692470074, + -0.007586085703223944, + 0.015409891493618488, + -0.0017400801880285144, + 0.006264638155698776, + -0.008984441868960857, + -0.008180387318134308, + 0.013536093756556511, + 0.022485576570034027, + -0.003413738450035453, + 0.00836916547268629, + -0.016836214810609818, + -0.00855095125734806, + 0.005097010638564825, + 0.0011405347613617778, + 0.016514593735337257, + 0.001519839046522975, + -0.01914350502192974, + 0.01359901949763298, + 0.008124453015625477, + -0.02507253736257553, + 0.002630658680573106, + -0.007725920993834734, + 0.0034521932248026133, + -0.008306238800287247, + -0.009019400924444199, + -0.010187028907239437, + 0.0071386112831532955, + -0.001586260972544551, + -2.296910315635614e-5, + -0.009564760141074657, + 0.0060793561860919, + 0.004345393739640713, + 0.0004140447126701474, + 0.006684145424515009, + -0.01221464667469263, + -1.7588707123650238e-5, + 0.014948434196412563, + 0.0024768393486738205, + -0.015270056203007698, + 0.006089843809604645, + 0.012529276311397552, + -0.006579268723726273, + -0.002857891609892249, + -0.015843382105231285, + 0.010410766117274761, + -0.031742699444293976, + 0.0053941612131893635, + -0.007921691052615643, + -0.015675580129027367, + 0.007156090810894966, + 7.969541184138507e-5, + -0.0069708083756268024, + 0.03188253566622734, + 0.008998425677418709, + 0.005097010638564825, + -0.005544484592974186, + -0.012494318187236786, + 0.004694982897490263, + 0.024149620905518532, + -0.015731513500213623, + 0.006345043890178204, + 0.006691137328743935, + -0.019493093714118004, + -0.007907707244157791, + -0.02242964319884777, + 0.020961368456482887, + 0.01774514839053154, + -0.00027311654412187636, + 0.02403775230050087, + -0.009585735388100147, + -0.004499212838709354, + -0.008488025516271591, + 7.37960945116356e-5, + 0.0031532945577055216, + 0.006271630059927702, + 0.004946687258780003, + -0.010739380493760109, + 0.034231774508953094, + -0.018178638070821762, + -0.004677503369748592, + -0.0011213073739781976, + -0.0037650757003575563, + -0.0305680800229311, + -0.008502009324729443, + -0.0033088617492467165, + 0.035658098757267, + 0.004775388166308403, + 0.0044327909126877785, + 0.013654953800141811, + 0.003459185129031539, + -0.0024576119612902403, + -0.00836916547268629, + -0.01843034289777279, + -0.012032859958708286, + -0.0027145601343363523, + 0.005988462828099728, + 0.020611779764294624, + -0.007285438943654299, + -0.00322496029548347, + -0.009236146695911884, + -0.000884023669641465, + 0.026331057772040367, + -0.007523159496486187, + 0.011962941847741604, + -0.01556371059268713, + 0.01279496494680643, + 0.006194720510393381, + 0.019045619294047356, + -0.022891100496053696, + 0.02163258008658886, + 0.008536968380212784, + -0.024331407621502876, + -0.0049012405797839165, + 0.002190176397562027, + 0.026107320562005043, + -0.018682045862078667, + -3.228237619623542e-5, + 0.007222512736916542, + -0.004978150129318237, + -0.010424749925732613, + -0.02135290764272213, + -0.01606711931526661, + -0.006103827152401209, + -0.005547980312258005, + 0.014626812189817429, + 0.008019575849175453, + 0.004425799008458853, + 0.004848801996558905, + 0.004936199635267258, + -0.0016430692048743367, + 0.032749515026807785, + 0.014312181621789932, + 0.010662470012903214, + -0.022373707965016365, + -0.0007791469106450677, + 0.017759131267666817, + 0.01606711931526661, + -0.01364096999168396, + -0.02219192124903202, + 0.008320222608745098, + 0.011487500742077827, + -0.018206605687737465, + -0.018248556181788445, + 0.01871001347899437, + -0.012088794261217117, + -0.0023107845336198807, + 0.008110469207167625, + -0.04038454219698906, + -0.006631706841289997, + 0.00032074807677417994, + -0.010606535710394382, + -0.00409718556329608, + 0.015256072394549847, + -0.006586260627955198, + 0.003165530040860176, + -0.0004184145655017346, + 0.019968533888459206, + -0.025254324078559875, + 0.010410766117274761, + 0.02231777459383011, + -0.0006349413888528943, + -0.0019349762005731463, + -0.0017024993430823088, + -0.023883933201432228, + 0.009914349764585495, + 0.021045269444584846, + -0.0034049986861646175, + 0.009606710635125637, + 0.008809647522866726, + -0.002994231414049864, + 0.006624715402722359, + 0.009368990547955036, + 0.017577344551682472, + -0.034063972532749176, + 0.031630828976631165, + -0.017045969143509865, + -0.007355356588959694, + -0.0180667694658041, + -0.00015130657993722707, + -0.0057961889542639256, + 0.001473518437705934, + 0.01710190251469612, + 0.005589931271970272, + -0.013074635528028011, + -0.018290506675839424, + 0.005715783219784498, + -0.010746371932327747, + 0.01280195638537407, + 0.0040202755481004715, + 0.013179512694478035, + 0.011900016106665134, + -0.01035483181476593, + 0.008005592972040176, + 0.030735881999135017, + -0.02019227109849453, + -0.00949484296143055, + 0.004883761052042246, + -0.0026568779721856117, + -0.0030676452443003654, + -0.0032529274467378855, + -0.019800731912255287, + 0.015186154283583164, + -0.0034277220256626606, + 0.01101905107498169, + -0.0035902811214327812, + 0.02015032060444355, + 0.023925883695483208, + -0.008571927435696125, + -0.004296451341360807, + 0.0040517388842999935, + 0.006977800279855728, + -0.01705995202064514, + 0.010669462382793427, + -0.0247928649187088, + -0.004625065252184868, + 0.01578744873404503, + -0.008648836985230446, + -0.016766298562288284, + 0.016808249056339264, + -0.024163605645298958, + -0.016850199550390244, + -0.020220238715410233, + -0.014542910270392895, + -0.013731863349676132, + -0.019702846184372902, + 0.0013852472184225917, + 0.025617895647883415, + -0.00907533522695303, + -0.010704421438276768, + -0.006194720510393381, + 0.015801431611180305, + -0.00963467825204134, + -0.0011195593979209661, + -0.01671036332845688, + -0.010571577586233616, + -0.008942491374909878, + -0.03112742118537426, + 0.018737981095910072, + -0.03260967880487442, + 0.013857715763151646, + -0.0014324417570605874, + -0.0007966263801790774, + -0.02247159369289875, + 0.0005532248760573566, + -0.004726445768028498, + 0.019842682406306267, + -0.0001793829578673467, + -0.019926583394408226, + 0.0070022717118263245, + -0.036189474165439606, + 0.034958917647600174, + 0.004499212838709354, + 0.005789197050035, + 0.01617898792028427, + 0.024219539016485214, + -0.01673833094537258, + 0.0076979538425803185, + -0.006537317764014006, + -0.013095610775053501, + -0.011990909464657307, + 0.00713161937892437, + 0.0008053660858422518, + -0.011005068197846413, + 0.03221813961863518, + -7.82205825089477e-5, + -0.0006410591886378825, + 0.008585910312831402, + -0.009124278090894222, + 0.013703896664083004, + 0.024051737040281296, + 0.04197867214679718, + -0.0005969235207885504, + 0.005845131352543831, + 0.0024803353007882833, + -0.004062226507812738, + 0.01429819781333208, + 0.03445551171898842, + -0.015325990505516529, + 0.0024034257512539625, + 0.012284563854336739, + 0.010739380493760109, + -0.012718054465949535, + -0.01686418242752552, + 0.017647262662649155, + -0.00831323117017746, + 0.001282118377275765, + 0.015871349722146988, + 0.01468274649232626, + 0.015074285678565502, + 0.005481558386236429, + -0.018528226763010025, + -0.01594126783311367, + -0.0002324768138350919, + -0.01472469698637724, + 0.03630134090781212, + -0.007390315644443035, + -0.01211676187813282, + 0.014032510109245777, + -0.0042545003816485405, + 0.003310609608888626, + -0.02223387360572815, + 0.009669637307524681, + -0.005345218814909458, + 0.005880090408027172, + 0.019660895690321922, + 0.03336479142308235, + -0.0026359024923294783, + 0.0008682921761646867, + -0.012403424829244614, + -0.025785699486732483, + 0.02928159013390541, + 0.02395385131239891, + -0.013976575806736946, + -0.004810347221791744, + 0.013550077565014362, + 0.003237196011468768, + -0.015130219981074333, + 0.03439957648515701, + -0.00894948374480009, + 0.017619295045733452, + -0.0023247681092470884, + 0.01566159538924694, + 0.005897569935768843, + 0.0041985660791397095, + -0.021213071420788765, + 0.014277222566306591, + 0.006540813948959112, + 0.005645865574479103, + -0.0006589756230823696, + 0.0008682921761646867, + 0.0072364965453743935, + 0.02375808171927929, + 0.009557768702507019, + 0.02468099631369114, + -0.012753013521432877, + 0.017157837748527527, + -0.0008455688366666436, + -0.02066771313548088, + 0.027184056118130684, + 0.012592202983796597, + -0.00736234849318862, + -0.004044746980071068, + -0.01834644004702568, + -0.0076629952527582645, + 0.012445375323295593, + -0.004974654410034418, + -0.012186679057776928, + 0.012955775484442711, + 0.008760705590248108, + -0.005901065655052662, + 0.014934450387954712, + -0.0048348186537623405, + 0.02051389403641224, + -0.017647262662649155, + 0.00909631047397852, + -0.02648487687110901, + 0.0012611430138349533, + 0.004271979909390211, + -0.008795663714408875, + 0.0021657049655914307, + -0.023492394015192986, + 0.000998077099211514, + -0.0030449219048023224, + -0.00225310237146914, + 0.018094737082719803, + 0.0021657049655914307, + 0.018234573304653168, + 0.02326865680515766, + -0.0067925178445875645, + 0.021255023777484894, + -0.0006747071165591478, + -0.025743748992681503, + -0.0055619641207158566, + 0.008753713220357895, + 0.0141373872756958, + -0.010382799431681633, + 0.0010513894958421588, + -0.012690087780356407, + -0.03669288009405136, + -0.003336828900501132, + 0.006841460708528757, + 0.009264113381505013, + 0.005006117280572653, + 0.0002995542308781296, + -0.0033350808080285788, + -0.0030152068939059973, + 0.009334031492471695, + -0.0028456561267375946, + 0.0018493268871679902, + 0.01566159538924694, + -0.02015032060444355, + 0.017241738736629486, + -0.006750567350536585, + 0.018919767811894417, + 0.013508126139640808, + 0.015172171406447887, + -0.016598494723439217, + 0.03319698944687843, + -6.281680543906987e-5, + 0.01566159538924694, + 0.014095436781644821, + -0.010445725172758102, + -0.0052718049846589565, + -0.016360774636268616, + 0.0029819959308952093, + -0.002726795617491007, + 0.009830447845160961, + 0.02423352375626564, + -0.013242438435554504, + -0.007397307548671961, + -0.024177588522434235, + -0.005789197050035, + -0.018640095368027687, + -0.0009272853494621813, + -0.016360774636268616, + -0.0076070609502494335, + 0.013284388929605484, + -0.007921691052615643, + -0.002352735260501504, + -0.009585735388100147, + -0.01546582579612732, + 0.0028037053998559713, + 0.008669812232255936, + -0.005530501250177622, + 0.01694808341562748, + -0.0023020447697490454, + 0.0027704944368451834, + 0.018919767811894417, + -0.022695330902934074, + -0.007208529394119978, + 0.01791295036673546, + -0.02251354418694973, + 0.019898617640137672, + -0.0036182482726871967, + -0.014032510109245777, + 0.0026918367948383093, + -0.015228105708956718, + 0.029952801764011383, + -0.003974829334765673, + -0.011158887296915054, + -0.01950707659125328, + -0.0009753538761287928, + 0.016458658501505852, + 0.0027040725108236074, + 0.003677678294479847, + 0.010522634722292423, + 0.021562661975622177, + -0.007998600602149963, + -0.014375107362866402, + -0.002309036673977971, + 0.0036392235197126865, + -0.011067993938922882, + -0.003992308396846056, + 0.012438383884727955, + 0.01153644360601902, + 0.008124453015625477, + 0.0023142804857343435, + 0.03241391107439995, + -0.009907357394695282, + 0.018877817317843437, + 0.0020957873202860355, + 0.0005506029701791704, + 0.021646562963724136, + -1.0870038749999367e-5, + 0.016556544229388237, + 0.014333156868815422, + -0.017815064638853073, + 0.010669462382793427, + 0.006463904399424791, + -0.02242964319884777, + -0.007383323740214109, + -0.02820485644042492, + -0.009320047684013844, + 0.0008372660959139466, + -0.0011920991819351912, + 8.925449219532311e-5, + -0.004191574640572071, + 0.009991259314119816, + -0.020653730258345604, + -0.008306238800287247, + 0.0029225656762719154, + 0.0127390306442976, + -0.0028456561267375946, + -0.010012234561145306, + -0.035909801721572876, + -0.013053660281002522, + -0.004334906116127968, + 0.01081629004329443, + -0.0206257626414299, + 0.022807199507951736, + 3.2528183510294184e-5, + -0.004104177001863718, + 0.02315678820014, + 0.004782380070537329, + -0.03644117712974548, + -0.00961370300501585, + 0.012011884711682796, + -0.0030676452443003654, + -0.007299422286450863, + 0.01733962446451187, + -0.010788322426378727, + -0.002742527285590768, + 0.00833420641720295, + 0.013850724324584007, + -0.029505327343940735, + -0.007152595091611147, + -0.005544484592974186, + -0.011900016106665134, + 0.004209053702652454, + 0.041475262492895126, + -0.007537142839282751, + -0.009907357394695282, + 0.010019225999712944, + -0.019576994702219963, + -0.019646912813186646, + -0.0017697953153401613, + 0.017773114144802094, + -0.00576822180300951, + 0.030232474207878113, + -0.018234573304653168, + -0.019451143220067024, + 0.010928158648312092, + -0.0011352909496054053, + 0.005320747382938862, + -0.007243487983942032, + -0.022219888865947723, + -0.007086173165589571, + -0.012151720002293587, + 0.03093165159225464, + -0.008201362565159798, + -0.02659674547612667, + 0.02700226940214634, + -0.0032004890963435173, + 0.008033559657633305, + -0.011934975162148476, + 0.014696729369461536, + -0.013787797652184963, + 0.019367242231965065, + -0.01533997431397438, + 0.001159762148745358, + 0.008571927435696125, + 0.0035063796676695347, + -0.009977275505661964, + -0.0067680468782782555, + 0.003852472873404622, + 0.003403250826522708, + -0.006334556266665459, + -0.001833595335483551, + 0.01883586496114731, + -0.004513196647167206, + -0.012641144916415215, + -0.01279496494680643, + -0.015367940999567509, + 0.022499561309814453, + -0.019437158480286598, + -0.014074460603296757, + -0.006519838701933622, + 0.01650061085820198, + -0.00825030542910099, + 0.019003668799996376, + -0.0019105050014331937, + 0.005705295596271753, + 0.0024226531386375427, + -0.0026813491713255644, + 0.014948434196412563, + -0.002662121783941984, + 0.00963467825204134, + 0.00605838093906641, + 0.00949484296143055, + 0.014417058788239956, + -0.011158887296915054, + -0.015256072394549847, + 0.013613003306090832, + 0.01234049815684557, + -0.009368990547955036, + -0.004747421480715275, + -0.025422126054763794, + -0.015633629634976387, + -0.001889529637992382, + -0.012067819014191628, + -0.00047631526831537485, + 0.012389441020786762, + -0.010249955579638481, + -0.023772064596414566, + -0.007872749119997025, + 0.004086697474122047, + 0.005471070762723684, + 0.0013424225617200136, + 0.003036182140931487, + 0.0048453062772750854, + 0.011417582631111145, + 0.0011667539365589619, + 0.012018876150250435, + 0.014612828381359577, + -0.0007791469106450677, + -0.02135290764272213, + -0.019171470776200294, + 0.02058381214737892, + 0.000984093639999628, + -0.010774338617920876, + 0.013109594583511353, + -0.002097535179927945, + -0.014472993090748787, + -0.029533294960856438, + -0.007656003348529339, + 0.008439083583652973, + 0.013144553638994694, + -0.0032669110223650932, + -0.036636948585510254, + -0.017675230279564857, + -0.008536968380212784, + -0.012948784045875072, + -0.005131969228386879, + 0.019115537405014038, + -0.005757734179496765, + 0.010403774678707123, + -0.004985142033547163, + 0.04049641266465187, + -0.01766124553978443, + 0.005596923176199198, + -0.012871874496340752, + 0.001404474605806172, + 0.014046493917703629, + 0.010739380493760109, + -0.008278272114694118, + 0.007837790064513683, + -0.005936024710536003, + -0.010061177425086498, + -0.026303090155124664, + 0.009788497351109982, + -0.0007454989827238023, + 0.013207479380071163, + -0.0141373872756958, + 0.0028963463846594095, + -0.0016037403838708997, + 0.002101031132042408, + -0.00353434681892395, + 0.011962941847741604, + -0.001172871794551611, + 0.014284214936196804, + 0.029533294960856438, + 0.0019244884606450796, + -0.016794264316558838, + 0.011326690204441547, + -0.014696729369461536, + -0.008502009324729443, + -0.008704771287739277, + -0.0012550251558423042, + -0.019856667146086693, + -0.01675231382250786, + -0.02435937523841858, + 0.025897568091750145, + -0.010641494765877724, + -0.0002855706843547523, + -0.00019303878070786595, + -0.006837964523583651, + 0.004946687258780003, + 0.0009578744065947831, + 0.018696030601859093, + 0.001877293922007084, + 0.006984792184084654, + -0.0070162550546228886, + 0.005782205145806074, + -0.02528228983283043, + -0.0002637213619891554, + 0.030707914382219315, + 0.015857364982366562, + -0.01566159538924694, + 0.01810871995985508, + 0.013074635528028011, + -0.009648662060499191, + -0.015298022888600826, + -0.018528226763010025, + -0.020374057814478874, + 0.027393808588385582, + -0.002609683433547616, + 0.00368117424659431, + -0.015046318992972374, + -0.007502184249460697, + 0.0013118335045874119, + -0.01673833094537258, + -0.010788322426378727, + 0.012808947823941708, + 0.004411815665662289, + 0.006442928686738014, + -0.020080402493476868, + 0.000859115447383374, + -0.028750214725732803, + 0.013822756707668304, + -0.026988286525011063, + -0.01686418242752552, + 0.025366192683577538, + 0.016234921291470528, + 0.018849849700927734, + 0.00773291289806366, + -0.009375981986522675, + -0.010431741364300251, + 0.015675580129027367, + -0.0007769619696773589, + -0.005509525537490845, + 0.007816814817488194, + -0.0052088787779212, + 0.02747771143913269, + 0.023981818929314613, + 0.006684145424515009, + 0.004576122388243675, + -0.011564410291612148, + -0.002630658680573106, + 0.013850724324584007, + 0.012095785699784756, + -0.007208529394119978, + 0.0031742698047310114, + -0.015969233587384224, + -0.021814364939928055, + -0.004387344233691692, + -0.00647089583799243, + -0.000867418188136071, + -0.013682921417057514, + 0.012095785699784756, + 0.008851598016917706, + -0.006949833128601313, + 0.00545708741992712, + -0.01415836252272129, + -0.002705820370465517, + -0.0011737457243725657, + -0.007998600602149963, + -0.0007446249946951866, + -0.005705295596271753, + -0.01287886593490839, + 0.0006100331665948033, + 0.0036392235197126865, + -0.011788147501647472, + 0.0021394859068095684, + 0.016850199550390244, + 0.01155741885304451, + 0.00423702085390687, + -0.009103302843868732, + -0.01357804425060749, + 0.0001705339818727225, + 0.0004457262111827731, + -0.003600768744945526, + 0.012662120163440704, + -0.003911903128027916, + 0.013207479380071163, + -0.015325990505516529, + -0.020933400839567184, + -0.0183044895529747, + -0.017675230279564857, + -0.0022723297588527203, + 0.00825030542910099, + 0.01654256135225296, + 0.0004157926596235484, + 0.014514943584799767, + 0.03258171305060387, + 0.004628560971468687, + -0.02588358335196972, + -0.010697429068386555, + -0.013829748146235943, + 0.011284738779067993, + -0.016514593735337257, + 0.008089493960142136, + 0.013249430805444717, + -0.004775388166308403, + -0.00038148919702507555, + -0.0012209402630105615, + -0.0114595340564847, + 0.018570177257061005, + 0.012613178230822086, + -0.0018510747468098998, + 0.004086697474122047, + -0.011858065612614155, + -0.020653730258345604, + 0.0019979022908955812, + -0.026568777859210968, + 0.003293130313977599, + 0.015591678209602833, + -0.005621394142508507, + -0.01468274649232626, + -0.005841635633260012, + 0.011990909464657307, + 0.0044887252151966095, + -0.013955600559711456, + -0.008222337812185287, + 0.00833420641720295, + 0.005401153117418289, + 0.027030237019062042, + -0.0008499387186020613, + -0.015619644895195961, + -0.0104177575558424, + -0.013305365107953548, + 0.008404124528169632, + -0.0067820302210748196, + 0.02743575908243656, + -0.007893724367022514, + -0.004904736299067736, + 0.020136337727308273, + 0.012032859958708286, + -0.00748120853677392, + -4.64980939796078e-6, + 0.007159586530178785, + 0.024107670411467552, + 0.009809472598135471, + -0.012662120163440704, + 0.006715608295053244, + 0.014361124485731125, + -0.010662470012903214, + -0.014186329208314419, + -0.02616325579583645, + 0.015675580129027367, + -0.014431041665375233, + -0.0027407791931182146, + 0.017577344551682472, + -0.022052086889743805, + -0.011606361716985703, + 0.02006641961634159, + 0.0020590804051607847, + -0.023576295003294945, + 0.01731165684759617, + 0.00783079769462347, + 0.009473866783082485, + 0.004813843406736851, + -0.003667190670967102, + -0.0003522111219353974, + -0.011962941847741604, + 0.002487327205017209, + 0.01143855880945921, + -0.026848450303077698, + -0.007037230301648378, + 0.012081802822649479, + -0.009355006739497185, + 0.014011534862220287, + -0.006348539609462023, + -0.010585560463368893, + 0.013396257534623146, + 0.027100155130028725, + -0.01280195638537407, + 0.0030326861888170242, + 0.020569827407598495, + 0.0007564236293546855, + 0.016095086932182312, + -0.000302394648315385, + 0.006855444051325321, + -0.0031987412367016077, + -0.01894773356616497, + -0.0031742698047310114, + 0.001889529637992382, + 0.008460058830678463, + -0.012662120163440704, + 0.0022216392681002617, + 0.0033455686643719673, + 0.026932351291179657, + -2.5782203010749072e-5, + -0.0011571402428671718, + -0.004397831857204437, + -0.007327389437705278, + -0.00011700313189066947, + 0.010907182469964027, + -0.027072187513113022, + 0.00210802280344069, + 0.009823456406593323, + -0.007900715805590153, + -0.023184755817055702, + 0.011969934217631817, + -0.008522984571754932, + -0.01021499652415514, + 0.00769096240401268, + -0.009424924850463867, + -0.004401328042149544, + -0.003169025992974639, + 0.01733962446451187, + 0.001948959776200354, + -0.0008726619998924434, + 0.02058381214737892, + 0.0033298369962722063, + -0.011221813037991524, + 0.008697778917849064, + 0.0012663868255913258, + 0.008704771287739277, + -0.009103302843868732, + -0.0002558555861469358, + 0.001996154198423028, + -0.0059430161491036415, + -0.01547980960458517, + -0.0013424225617200136, + 0.013668937608599663, + 0.002487327205017209, + -0.0005457961233332753, + -0.003343820571899414, + 0.007327389437705278, + -0.014277222566306591, + -0.0060968357138335705, + -0.03537842631340027, + -0.010711412876844406, + 0.017843032255768776, + 0.0122775724157691, + -0.009348015300929546, + -0.0037685714196413755, + 0.0178290493786335, + 0.019800731912255287, + -0.022219888865947723, + 0.01538192480802536, + -0.014878516085445881, + -0.030791815370321274, + 0.0015740253729745746, + -0.0062331752851605415, + -0.0012104526394978166, + -0.00894948374480009, + 0.004943191073834896, + 0.025729764252901077, + 0.0074951923452317715, + 0.013067644089460373, + 0.01301870122551918, + 0.0036951578222215176, + -0.0031987412367016077, + 0.01157839410007, + -0.006666665896773338, + -0.002097535179927945, + -0.00014944937720429152, + -0.004646040499210358, + 0.009180212393403053, + -0.006893898826092482, + 0.0021272501908242702, + -0.005250829737633467, + -0.0009508826187811792, + -0.016374757513403893, + -0.004590106196701527, + 0.009473866783082485, + 0.017199788242578506, + 0.003425974166020751, + -0.01414437871426344, + -0.02143680863082409, + -0.006421953439712524, + -0.015088269487023354, + 0.010047193616628647, + 0.01598321832716465, + 0.01538192480802536, + 0.013291381299495697, + 0.008236321620643139, + 0.011361649259924889, + -0.000617898884229362, + -0.006292605306953192, + -0.01733962446451187, + -0.0032651631627231836, + -0.002441880526021123, + 0.008180387318134308, + -0.01622093841433525, + -0.0039293826557695866, + 0.0076629952527582645, + -0.005733262747526169, + -0.011200837790966034, + -0.020332107320427895, + -0.01602516882121563, + 0.004086697474122047, + 0.008963466621935368, + 0.019451143220067024, + 0.005072539206594229, + -0.0013834992423653603, + -0.0065478053875267506, + -0.0053277392871677876, + -0.018877817317843437, + 0.007044222205877304, + 0.006219191942363977, + -0.013172521255910397, + -0.008536968380212784, + -0.006047892849892378, + -0.0021954202093183994, + 0.0016212199116125703, + 0.023254673928022385, + 0.027827300131320953, + 0.010529626160860062, + -0.013969584368169308, + -0.019255373626947403, + -0.007054709829390049, + 0.00035308508086018264, + 0.0034644289407879114, + -0.011144903488457203, + -0.006397482473403215, + -0.008865581825375557, + 0.011207829229533672, + 0.011837090365588665, + -0.01359901949763298, + 0.028945986181497574, + 0.0009045620681717992, + -0.02319873869419098, + -0.014626812189817429, + 0.0015801431145519018, + 0.008963466621935368, + 0.019171470776200294, + 0.018136687576770782, + 0.008152419701218605, + 0.01361999474465847, + -0.011997900903224945, + -0.002144729718565941, + -0.013116586953401566, + 0.01492046657949686, + -0.006303093396127224, + 0.012032859958708286, + 0.008040551096200943, + 0.0050131091848015785, + 0.00613878620788455, + 0.0049257115460932255, + -0.00512847350910306, + -0.023925883695483208, + 0.006442928686738014, + -0.023506376892328262, + 0.005785701330751181, + -0.010131094604730606, + 0.021856317296624184, + 0.010690437629818916, + -0.008509000763297081, + -0.008418107405304909, + -0.015675580129027367, + 0.004625065252184868, + 0.006240167189389467, + -0.0035273549146950245, + 0.0009377730311825871, + 0.005034084431827068, + -0.0003710015444085002, + -0.005789197050035, + -0.01350113470107317, + 0.0028299244586378336, + 0.0019839187152683735, + 0.0028928506653755903, + -0.004495717119425535, + -0.01838839240372181, + -0.003373535815626383, + -0.02094738371670246, + 0.0031113438308238983, + -0.012697079218924046, + 0.02732389234006405, + -0.014249255880713463, + 0.00837615691125393, + -0.011948958970606327, + 0.009480859152972698, + -0.0017374582821503282, + -0.01350113470107317, + -0.02094738371670246, + -0.002011885866522789, + -0.004261492285877466, + 0.005432615987956524, + -0.04466351494193077, + 0.013675929047167301, + 0.00582765182480216, + -0.013109594583511353, + -0.0030082149896770716, + 0.025645863264799118, + -0.010802306234836578, + 0.006026917602866888, + 0.004677503369748592, + -0.007156090810894966, + 0.011256772093474865, + 0.0022775735706090927, + -0.01731165684759617, + 0.007117636036127806, + -0.023212723433971405, + 0.004320922307670116, + -0.01950707659125328, + -0.0033840234391391277, + -0.0018755460623651743, + -0.0013966088881716132, + 0.0024366367142647505, + -0.012753013521432877, + -0.009292080998420715, + -0.003981820773333311, + 0.03828701004385948, + 0.0528019517660141, + 0.03490298613905907, + -0.0015250828582793474, + 0.01798286847770214, + 0.030540112406015396, + -0.025422126054763794, + 0.011312706395983696, + -0.0008123578736558557, + -0.030791815370321274, + -0.013710888102650642, + -0.023939868435263634, + -0.007142107468098402, + 0.034315675497055054, + -0.0007918195333331823, + -0.015857364982366562, + -0.0003734049678314477, + -0.013808772899210453, + -0.010522634722292423, + -0.0061527700163424015, + 0.0016404472989961505, + 0.010620519518852234, + -0.00012628910189960152, + -0.019451143220067024, + 0.003415486542508006, + 0.006666665896773338, + 0.0015766472788527608, + -0.012095785699784756, + -0.012053835205733776, + -0.01654256135225296, + 0.018486276268959045, + 0.011900016106665134, + -0.014018526300787926, + -0.0033980070147663355, + -0.009606710635125637, + -0.01103303488343954, + 0.020569827407598495, + 0.011144903488457203, + 0.007037230301648378, + -0.006796014029532671, + -0.016374757513403893, + 0.003162034321576357, + -0.012109769508242607, + -0.011047018691897392, + -0.020080402493476868, + -0.005593426991254091, + -0.016053136438131332, + 0.0020765597000718117, + -0.015046318992972374, + 0.004967662505805492, + -0.008690787479281425, + 9.668325947131962e-5, + -0.014598844572901726, + -0.03870651498436928, + -0.01542387530207634, + -0.012773988768458366, + 0.010620519518852234, + 0.038231074810028076, + -0.001308337552472949, + -0.0008097359677776694, + -0.02259744517505169, + -0.015353957191109657, + 0.00644992059096694, + -0.005691312253475189, + 0.008215346373617649, + -0.016514593735337257, + 0.021576644852757454, + -0.01153644360601902, + 0.01023597177118063, + 0.0006253276951611042, + -0.006093339528888464, + -0.0009657401242293417, + -0.02859639562666416, + -0.0014385594986379147, + -0.011739205569028854, + -0.029057852923870087, + -0.0017392062582075596, + -0.025338225066661835, + -0.005058555863797665, + -0.01995455101132393, + 0.02524033933877945, + 0.0027704944368451834, + -0.0067260959185659885, + 0.008397132158279419, + 0.0029627683106809855, + -0.016920117661356926, + -0.007390315644443035, + 0.0008066770387813449, + 0.003181261708959937, + 0.0013939868658781052, + 0.006345043890178204, + -0.01705995202064514, + -0.003604264697059989, + 0.005341723095625639, + 0.0058870818465948105, + 0.006796014029532671, + -0.02182834967970848, + 0.006313581019639969, + 0.00035199261037632823, + 0.0025292779318988323, + 0.0013406745856627822, + -0.01281594019383192, + 0.015773463994264603, + 0.005596923176199198, + 0.025939518585801125, + 0.0006650934228673577, + -0.03873448446393013, + -0.010082152672111988, + 0.0010653730714693666, + 0.009564760141074657, + 0.01671036332845688, + -0.020010486245155334, + -0.00042191045940853655, + 0.01222163811326027, + 0.004065722227096558, + -0.0022478585597127676, + 0.015130219981074333, + 0.003425974166020751, + 0.006240167189389467, + 0.0033350808080285788, + -0.003911903128027916, + -0.003950357902795076, + -0.0021394859068095684, + 0.03048417717218399, + 0.014004543423652649, + 0.0038804400246590376, + -0.0114595340564847, + 0.015927283093333244, + 0.007369340397417545, + -0.012438383884727955, + 0.0030571576207876205, + 0.01750742644071579, + 0.012074810452759266, + -0.011326690204441547, + 0.029812967404723167, + -0.008306238800287247, + -0.00827128067612648, + 0.002263589994981885, + -0.00963467825204134, + 0.004775388166308403, + -0.0031043521594256163, + -0.012270580977201462, + 0.007879740558564663, + 0.024708963930606842, + 0.01634678989648819, + 0.0066456906497478485, + 0.012578219175338745, + -0.022723298519849777, + 0.003170774085447192, + 0.0068239811807870865, + 0.008278272114694118, + 0.007093164604157209, + -0.02575773186981678, + -0.002840412314981222, + 0.0008796537877060473, + 0.003366543911397457, + 0.01854221150279045, + 0.02070966362953186, + 0.03188253566622734, + -0.0009561264305375516, + 0.0003128823300357908, + -0.00953679345548153, + 0.013899666257202625, + 0.010361824184656143, + 0.01350113470107317, + -0.004708966240286827, + 0.014116412028670311, + 0.004037755075842142, + 0.019716830924153328, + -0.016123054549098015, + -0.0035762975458055735, + -0.012067819014191628, + 0.0077189295552670956, + -0.013696904294192791, + -0.00337003986351192, + 0.0017252226825803518, + -0.0027460232377052307, + -0.01165530364960432, + -0.02066771313548088, + -0.030903683975338936, + -0.004939695354551077, + 0.024205556139349937, + 0.02159062772989273, + 0.02227582409977913, + -0.010501659475266933, + 0.01105401013046503, + -0.008299247361719608, + -0.0053382269106805325, + -0.003915398847311735, + 0.020262189209461212, + -0.012067819014191628, + 0.010571577586233616, + 0.009438908658921719, + -0.014361124485731125, + -0.018206605687737465, + -0.012242613360285759, + 0.010319872759282589, + 0.014109419658780098, + 0.011256772093474865, + -0.025967486202716827, + -0.00676105497404933, + -0.0026516339275985956, + -0.01492046657949686, + 0.013347315602004528, + -0.02500261925160885 + ], + "a768f0e7-ac33-46a0-b154-f561a05c9d54": [ + -0.011916643008589745, + -0.030531354248523712, + -0.015413626097142696, + -0.015938173979520798, + -0.05232024937868118, + -0.007276415359228849, + 0.013355785980820656, + 0.057242926210165024, + 0.018964409828186035, + 0.048446670174598694, + -0.0026731747202575207, + 0.026738472282886505, + -0.03045065514743328, + -0.022205844521522522, + -0.0026227375492453575, + -0.011089472100138664, + -0.05084075778722763, + 0.02115674875676632, + 0.015265677124261856, + 0.001404677634127438, + 0.0607399120926857, + -0.03644932806491852, + -0.018924059346318245, + 0.022353792563080788, + -0.031741850078105927, + -0.01950240693986416, + 0.03050445392727852, + -0.004024893511086702, + -0.014377981424331665, + -0.019892456009984016, + -0.02267659269273281, + 0.023133888840675354, + 0.028433164581656456, + -0.025326229631900787, + -0.005588448140770197, + -0.0039004813879728317, + -0.0053900619968771935, + 0.022232744842767715, + -0.024573033675551414, + 0.009455304592847824, + -0.012468090280890465, + 0.015427076257765293, + 0.014956329017877579, + 0.0068493797443807125, + -0.018843360245227814, + 0.04365849122405052, + 0.024035034701228142, + -0.0032212596852332354, + 0.011116372421383858, + -0.00309012271463871, + -0.007525239139795303, + 0.040080808103084564, + -0.011795593425631523, + 0.01708141900599003, + 0.006701430771499872, + -0.008836607448756695, + 0.012441190890967846, + 0.09850732982158661, + 0.046751976013183594, + -0.010047102347016335, + 0.0036247577518224716, + 0.002841298934072256, + 0.0019115721806883812, + 0.01877611130475998, + -0.019018208608031273, + -0.04005390778183937, + 0.006345007102936506, + 0.012178916484117508, + -0.012125116772949696, + -0.011701444163918495, + -0.008285160176455975, + 0.0206053014844656, + -0.0539342425763607, + 0.0019603280816227198, + -0.010349725373089314, + 0.0005602738820016384, + 0.03359793871641159, + -0.013766009360551834, + 0.021654397249221802, + -0.009845352731645107, + -0.023429788649082184, + 0.02472098171710968, + 0.008049787022173405, + -0.008460009470582008, + 0.02808346599340439, + 0.020847400650382042, + -0.03989250957965851, + -0.03666452690958977, + -0.054391540586948395, + -0.013416310772299767, + 0.018762661144137383, + 0.018883710727095604, + -0.008802982978522778, + 0.013032987713813782, + -0.02212514542043209, + -0.028433164581656456, + 0.01804981380701065, + 0.027370618656277657, + -0.024573033675551414, + -0.008540709502995014, + -0.01924685761332512, + 0.025554878637194633, + -0.042797695845365524, + -0.013961033895611763, + 0.008016161620616913, + -0.017094869166612625, + 0.013140587136149406, + -0.004983201157301664, + -0.01669136993587017, + 0.032602645456790924, + 0.02072635106742382, + -0.02918636053800583, + 0.028191065415740013, + 0.017740465700626373, + -0.002932086121290922, + -0.08446560055017471, + 0.0034364585299044847, + -0.020847400650382042, + 0.007511788979172707, + -0.08677898347377777, + 0.04263629764318466, + 0.022905241698026657, + 0.020564952865242958, + -0.01779426448047161, + 0.007915287278592587, + -0.010934798046946526, + -0.022609341889619827, + 0.006886367220431566, + 0.011815768666565418, + 0.0033725714311003685, + 0.012797613628208637, + -0.029240161180496216, + -0.008399484679102898, + 0.032172247767448425, + -0.016543421894311905, + 0.004539353307336569, + 0.03470083326101303, + 0.044035088270902634, + -0.02556832879781723, + 0.03809021785855293, + -0.013564260676503181, + -0.013059888035058975, + 0.004280441906303167, + -0.009038357064127922, + 0.007915287278592587, + -0.011371920816600323, + -0.04005390778183937, + 0.022824540734291077, + -0.004714202601462603, + 0.017000718042254448, + -0.027787568047642708, + 0.035104334354400635, + 0.03835921734571457, + -0.0035474204923957586, + -0.02161404676735401, + 0.009979852475225925, + 0.010369900614023209, + 0.024357832968235016, + -0.030612053349614143, + -0.0015845706220716238, + -0.010067276656627655, + -0.029105661436915398, + 0.011640919372439384, + -0.000723354343790561, + -0.0022797640413045883, + 0.006469419226050377, + 0.05713532865047455, + 0.0257028266787529, + -0.04594498127698898, + 0.019045108929276466, + 0.007498339284211397, + -0.027303369715809822, + -0.011250871233642101, + 0.005749847739934921, + -0.012555515393614769, + -0.020242152735590935, + 0.027760667726397514, + -0.004105593077838421, + 0.055359937250614166, + -0.025541428476572037, + 0.015238777734339237, + 0.010544749908149242, + -0.029105661436915398, + -0.007303315214812756, + -0.017915314063429832, + 0.010127801448106766, + 0.037525322288274765, + -0.014472130686044693, + -0.0282448660582304, + 0.03163424879312515, + 0.0032481595408171415, + 0.012696739286184311, + 0.01724281720817089, + 0.04080710560083389, + -0.020322853699326515, + -0.023792937397956848, + -0.017000718042254448, + -0.016839319840073586, + 0.021183649078011513, + 0.02369878627359867, + -0.026819171383976936, + -0.04944196343421936, + -0.05848032236099243, + -0.0030548167414963245, + -0.04371229186654091, + -0.00035894516622647643, + 0.005726310424506664, + -0.013752559199929237, + 0.0022007457446306944, + -0.02242104336619377, + 0.016382021829485893, + -0.03241434693336487, + 0.004909226670861244, + 0.017565615475177765, + -0.04341639205813408, + -0.006496319081634283, + -0.011876293458044529, + 0.01482182927429676, + 0.004441841505467892, + 0.011452620849013329, + -0.02137194760143757, + 0.021842695772647858, + 0.041560303419828415, + -0.052347149699926376, + -0.05062555894255638, + -0.02242104336619377, + -0.01448558084666729, + 0.03887031599879265, + -0.03117695078253746, + -0.02127779833972454, + 0.054310839623212814, + -0.00029715950950048864, + 0.0028497050516307354, + -0.05301964655518532, + -0.0322798453271389, + -0.008634858764708042, + 0.004714202601462603, + -0.03669142350554466, + 0.026980571448802948, + -0.015171527862548828, + 0.033059943467378616, + 0.0014189681969583035, + 0.0018056539120152593, + 0.023053189739584923, + 0.013207837007939816, + 0.02531277947127819, + -0.03257574513554573, + 0.04731687530875206, + 0.05326174572110176, + -0.007767337840050459, + -0.009912602603435516, + 0.0386551171541214, + 0.008964382112026215, + -0.016839319840073586, + -0.0013374279951676726, + 0.02773376740515232, + -0.019004760310053825, + -0.0027925430331379175, + -0.019125808030366898, + -0.023510487750172615, + -0.028513863682746887, + 0.005359799601137638, + 0.006953616626560688, + -0.032387446612119675, + 0.04024220630526543, + -0.024653732776641846, + 0.023671887814998627, + -0.02802966721355915, + -0.014404881745576859, + -0.006516493856906891, + -0.03674522414803505, + 0.008244810625910759, + -0.011055847629904747, + 0.023174239322543144, + -0.03324824199080467, + -0.007384014781564474, + 0.012320141308009624, + -0.018883710727095604, + -0.002979160752147436, + 0.026899872347712517, + -0.00823808554559946, + 0.011008772067725658, + -0.00233692629262805, + 0.02765306830406189, + -0.006059196311980486, + -0.019932804629206657, + 0.015131178312003613, + 0.01104239746928215, + -0.028782863169908524, + -0.01110964734107256, + 0.003086760174483061, + -0.022192394360899925, + 0.02714197151362896, + 0.01427038200199604, + 0.014014833606779575, + -0.01627442240715027, + -0.026577074080705643, + -0.0035709580406546593, + 0.002970754634588957, + 0.013080062344670296, + -0.030208555981516838, + 0.007182265631854534, + 0.024438533931970596, + -0.011714894324541092, + 0.00569268548861146, + 0.014310731552541256, + 0.01708141900599003, + -0.010880998335778713, + -0.037094924598932266, + -0.0018729035509750247, + 0.04726307466626167, + 0.012649664655327797, + -0.0001405938673997298, + -0.010618723928928375, + -0.00596840912476182, + 0.026778822764754295, + 0.041560303419828415, + 0.0390855148434639, + -0.005854084622114897, + -0.022232744842767715, + 0.012501715682446957, + -0.005030275788158178, + -0.04538008198142052, + 0.001844322425313294, + 0.026684673503041267, + -0.01737731695175171, + 0.008715558797121048, + 0.01276398915797472, + -0.004361141938716173, + -0.029374659061431885, + 0.0009944546036422253, + -0.023631537333130836, + -0.02564902789890766, + -0.052266452461481094, + -0.0014130838681012392, + 0.005672510247677565, + -0.021223999559879303, + -0.0598791129887104, + -0.0027101619634777308, + 0.006355094723403454, + -0.020067304372787476, + 0.04400819167494774, + -0.04938816279172897, + 0.013396136462688446, + -0.002555487910285592, + 0.0057363975793123245, + 0.0010011795675382018, + 0.03529263287782669, + 0.00410895561799407, + -0.02186959609389305, + 0.0006590468692593277, + -0.03631482645869255, + 0.03787501901388168, + -0.0021267710253596306, + 0.021990645676851273, + 0.012071317061781883, + -0.0016518202610313892, + -0.007545413915067911, + 0.0012735407799482346, + 0.014956329017877579, + -0.015117728151381016, + -0.002123408718034625, + -0.02429058402776718, + -0.0065837437286973, + 0.006580381188541651, + 0.023295288905501366, + 0.021721646189689636, + 0.024021584540605545, + 0.0004930241848342121, + 0.009502380155026913, + -0.01227306667715311, + 0.05178225412964821, + 0.008332234807312489, + -0.0026143311988562346, + -0.025514528155326843, + 0.0005770862917415798, + 0.05729672685265541, + 0.01856091059744358, + -0.01686622016131878, + 0.01529257744550705, + 0.007269690278917551, + 0.02080705016851425, + 0.001775391516275704, + -0.005393424071371555, + 0.06848707050085068, + 0.030638953670859337, + 0.011546770110726357, + 0.022757291793823242, + -0.027841366827487946, + -0.02684607170522213, + -0.043174292892217636, + -0.023295288905501366, + -0.018614711239933968, + 0.0029825232923030853, + -0.04344329237937927, + 0.02645602449774742, + -0.0020712900441139936, + 0.01055147498846054, + 0.010228675790131092, + 0.015306026674807072, + 0.007747163064777851, + -0.017054518684744835, + 0.00045939936535432935, + -7.8177748946473e-5, + 0.00972430408000946, + -0.032683342695236206, + 0.011264321394264698, + 0.009717578999698162, + -0.0021957019343972206, + -0.0027639619074761868, + 0.02977815829217434, + -0.02918636053800583, + 0.003527245717123151, + -0.0036617449950426817, + 0.046106379479169846, + -0.02204444445669651, + 0.026899872347712517, + -0.0006872076774016023, + -0.05062555894255638, + -0.017269717529416084, + 0.025339679792523384, + 0.05928731709718704, + -0.01248826552182436, + 0.004952938761562109, + -0.0335710383951664, + 0.018318813294172287, + 0.03182254731655121, + 0.017310068011283875, + 0.004885689355432987, + -0.022622792050242424, + -0.017404217272996902, + 0.016422372311353683, + -0.030262356624007225, + -0.01609957404434681, + 0.007982537150382996, + 0.016045773401856422, + 0.010524574667215347, + -0.001041529350914061, + -0.018655061721801758, + 0.007195715792477131, + 0.022743841633200645, + 0.021223999559879303, + 0.014808379113674164, + -0.004290529526770115, + -0.000299471226753667, + -0.020739801228046417, + -0.02192339487373829, + -0.017175568267703056, + -0.0037626195698976517, + 0.014606630429625511, + 0.005003375932574272, + 0.05049106106162071, + -0.033490341156721115, + 0.017848065122961998, + -0.01911235973238945, + 0.022568993270397186, + -0.030343055725097656, + -0.0034314149525016546, + 0.022353792563080788, + 0.008742458187043667, + -0.014472130686044693, + 0.013201111927628517, + 0.03074655309319496, + -0.026482922956347466, + 0.02322803996503353, + -0.020497702062129974, + -0.02918636053800583, + 0.01792876422405243, + -0.00047621180419810116, + -0.02816416509449482, + -0.015023577958345413, + 0.031365249305963516, + -0.000949061126448214, + 0.006842654664069414, + -0.01848021149635315, + -0.004330879542976618, + 0.020376652479171753, + 0.0045763407833874226, + 0.04344329237937927, + -0.03515813127160072, + -0.03615342825651169, + -0.03219914808869362, + -0.023819835856556892, + 0.015736425295472145, + 0.026657773181796074, + 0.01282451394945383, + -0.03521193191409111, + 0.014283832162618637, + -0.005595173221081495, + -0.011775419116020203, + 0.026657773181796074, + 0.0027975866105407476, + -0.023335639387369156, + -0.018076714128255844, + -0.01576332561671734, + -0.0649900883436203, + 0.016556870192289352, + -0.005648972932249308, + -0.012582414783537388, + -0.02659052237868309, + 0.06294570118188858, + -0.0083927595987916, + 0.016812419518828392, + -0.0002719408948905766, + -0.0011886380380019546, + 0.002721930854022503, + -0.017605965957045555, + 0.008359135128557682, + 0.00366847007535398, + -0.009650329127907753, + 0.003167459974065423, + 0.012965737842023373, + -0.027020921930670738, + -0.005511111114174128, + -0.013470110483467579, + 0.011842668987810612, + -0.030181655660271645, + 0.026012176647782326, + 0.02373913675546646, + -0.05084075778722763, + -0.012232717126607895, + -0.0012920345179736614, + -0.027249570935964584, + 0.010719599202275276, + 0.006741780322045088, + -0.00019176666683051735, + -0.012750538997352123, + 0.03359793871641159, + 0.011149996891617775, + -0.015507776290178299, + 0.0023655074182897806, + 0.010376625694334507, + -0.02616012468934059, + -0.007094840984791517, + -0.000580448773689568, + -0.005857447162270546, + 0.023308739066123962, + -0.022246193140745163, + -0.0015366551233455539, + 0.03513123095035553, + -0.015736425295472145, + 0.04180239886045456, + -0.009206481277942657, + -0.04051120579242706, + 0.003728994634002447, + 0.027895167469978333, + -0.03464703634381294, + 0.00617015827447176, + 0.0018493662355467677, + 0.026563623920083046, + -0.018843360245227814, + 0.004969751462340355, + -0.00029295642161741853, + -0.017901863902807236, + 0.024196434766054153, + -0.032683342695236206, + 0.022824540734291077, + -0.018681960180401802, + -0.03755222260951996, + -0.0023520574904978275, + 0.024747882038354874, + -0.014377981424331665, + 0.01627442240715027, + -0.015521226450800896, + -0.03462013602256775, + 0.021425748243927956, + -0.020928099751472473, + 0.02913256175816059, + -0.00036651076516136527, + 0.018466761335730553, + 0.017861515283584595, + 0.01720246858894825, + 0.008244810625910759, + -0.008527259342372417, + -0.017955664545297623, + 0.01822466403245926, + 0.011909917928278446, + 0.016529971733689308, + -0.01830536313354969, + 0.004657040350139141, + 0.030100956559181213, + -0.042582497000694275, + 0.005131150595843792, + -0.02273039147257805, + 0.0039441934786736965, + 0.004425028804689646, + -0.03499673306941986, + -0.04196380078792572, + -0.008547434583306313, + 0.010080726817250252, + -0.0027051183860749006, + 0.0314190499484539, + 0.03962351009249687, + -0.006556843873113394, + -0.033113740384578705, + 0.010733048431575298, + -0.008655034005641937, + 0.010047102347016335, + 0.0001484746899222955, + -0.010390075854957104, + -0.01134502049535513, + 0.02591802552342415, + 0.025514528155326843, + -0.02361808717250824, + -0.018628161400556564, + 0.01002692710608244, + -0.029805058613419533, + -0.036637626588344574, + -0.022501742467284203, + -0.018318813294172287, + -0.01371893472969532, + -0.00292031723074615, + 0.013449936173856258, + -0.009852077811956406, + 0.051970552653074265, + 0.018197763711214066, + 0.02611977607011795, + 0.01924685761332512, + 0.010282476432621479, + -0.014660430140793324, + 0.03080035373568535, + -0.051029056310653687, + 0.0543646402657032, + -0.03292544186115265, + 0.037955719977617264, + 0.004552803467959166, + -0.006883004680275917, + -0.03375934064388275, + -0.0073907398618757725, + 0.011197071522474289, + 0.007464714348316193, + 0.005040363408625126, + -0.0007943868404254317, + -0.018722310662269592, + 0.011425720527768135, + 0.00016822927864268422, + 0.012501715682446957, + 0.030477555468678474, + -0.015736425295472145, + 0.02659052237868309, + -0.006573656108230352, + -0.011049122549593449, + 0.008406209759414196, + -0.004135855473577976, + -0.016072673723101616, + -0.023429788649082184, + -0.05092145875096321, + 0.014768029563128948, + 0.030127856880426407, + 0.007303315214812756, + -0.04395439103245735, + 0.0032750593964010477, + 0.04032290726900101, + 0.010383350774645805, + 0.000736804271582514, + -0.05347694456577301, + -0.03529263287782669, + 0.01737731695175171, + 0.010840647853910923, + -0.0004598196828737855, + 0.020914649590849876, + -0.0013130500447005033, + -0.019300658255815506, + 0.018655061721801758, + 0.028271764516830444, + 0.018157413229346275, + -0.003574320347979665, + 0.001574483118019998, + -0.0036012204363942146, + 0.01856091059744358, + -0.003765982110053301, + -0.0045326282270252705, + 0.024317484349012375, + 0.004546078387647867, + 0.001613992266356945, + -0.03007405623793602, + 0.0079623619094491, + -0.034001436084508896, + 0.029401559382677078, + -0.005511111114174128, + -0.0021065962500870228, + 0.004704114980995655, + -0.01596507430076599, + 0.004559528082609177, + 0.02645602449774742, + -0.014472130686044693, + 0.005480848718434572, + 0.028298664838075638, + -0.02859456278383732, + -0.002716887043789029, + 0.009636878967285156, + 0.011217246763408184, + -0.028002766892313957, + 0.017135217785835266, + -0.004606603179126978, + 0.006062558386474848, + -0.026106325909495354, + 0.0003501186438370496, + 0.007182265631854534, + -0.032172247767448425, + -0.03464703634381294, + 0.001075994921848178, + 0.00154253956861794, + -0.008460009470582008, + -0.018318813294172287, + 0.04489588737487793, + -0.017471466213464737, + -0.0036213952116668224, + 0.0182650126516819, + -0.008359135128557682, + 0.03435113653540611, + -0.002716887043789029, + -0.012441190890967846, + 0.0206053014844656, + 0.0031523287761956453, + 0.002974117174744606, + -0.01950240693986416, + -0.0041694799438118935, + -0.004579703323543072, + 0.01848021149635315, + -0.02289179153740406, + 0.04833906888961792, + 0.005467399023473263, + -0.03997321054339409, + -0.04255559667944908, + 0.04069950431585312, + 0.01830536313354969, + 0.006173520348966122, + -0.004465378820896149, + -0.003890394000336528, + 0.055198535323143005, + -0.002938810968771577, + -0.024115735664963722, + 0.011607294902205467, + -0.00968395359814167, + -0.021466096863150597, + -0.020363202318549156, + -0.0018729035509750247, + 0.04352399334311485, + -0.021129848435521126, + -0.016920018941164017, + -0.029240161180496216, + 0.026133226230740547, + 0.0015492645325139165, + 0.0182650126516819, + -0.005184950307011604, + -0.006842654664069414, + -0.0030279168859124184, + -0.006005396135151386, + 0.02285144105553627, + 0.04387369006872177, + -0.01753871701657772, + 0.04597188159823418, + 0.012131841853260994, + -0.015198427252471447, + -0.021909944713115692, + -0.02178889699280262, + 0.018036363646388054, + -0.011304670944809914, + 0.0035306082572788, + -0.007827863097190857, + 0.0044855535961687565, + 0.012010792270302773, + -0.01373910903930664, + 0.021291248500347137, + -0.0009314080816693604, + -0.01950240693986416, + 0.012696739286184311, + 0.030262356624007225, + -0.030988652259111404, + 0.029213260859251022, + 0.008607959374785423, + 0.03464703634381294, + 0.01639547199010849, + 0.004008080810308456, + -0.021439198404550552, + 0.0505448579788208, + 0.03639552742242813, + -0.02255554310977459, + 0.01310023758560419, + -0.037525322288274765, + -0.05345004424452782, + -0.009966402314603329, + -0.030020257458090782, + -0.00295226089656353, + -0.028217965736985207, + 0.02145264856517315, + 0.03096175193786621, + -0.009973127394914627, + -0.010410250164568424, + 0.026657773181796074, + -0.004388041794300079, + -0.002772368025034666, + 0.008870232850313187, + 0.0010928072733804584, + 0.012885038740932941, + 0.03644932806491852, + -0.008527259342372417, + 0.000412114430218935, + 0.007041041273623705, + -0.008473459631204605, + -0.04158720001578331, + 0.008910582400858402, + 0.04002700746059418, + 0.009139231406152248, + 0.006724968086928129, + 0.0075992136262357235, + 0.009065256454050541, + 0.03453943505883217, + 0.0002622737374622375, + -0.04252869635820389, + -0.006946892011910677, + 0.0037861568853259087, + 0.029751257970929146, + 0.00872900802642107, + -0.007000691723078489, + -0.02450578287243843, + -0.013826534152030945, + -7.386956713162363e-5, + -0.030558254569768906, + -0.006671168375760317, + 0.021815795451402664, + 0.008749183267354965, + 0.04110300540924072, + -0.025581777095794678, + -0.037444621324539185, + -0.007289865054190159, + 0.0021940208971500397, + 0.010746498592197895, + 0.01733696646988392, + 0.006745142862200737, + -0.019260307773947716, + -4.773151158588007e-5, + 0.01954275742173195, + 0.02696712128818035, + 0.05654352903366089, + -0.04048430547118187, + -0.0014349400298669934, + -0.0239946860820055, + -0.017269717529416084, + 0.007821138016879559, + -0.010820473544299603, + -0.016529971733689308, + -0.011237421073019505, + 0.00024125822528731078, + 0.023644987493753433, + 0.001995634287595749, + 0.003692007390782237, + 0.05062555894255638, + 0.010820473544299603, + 0.016328223049640656, + -0.0028681987896561623, + -0.008258260786533356, + 0.012804338708519936, + -0.045729782432317734, + 0.027599267661571503, + 0.021291248500347137, + 0.019018208608031273, + 0.0022461393382400274, + 0.017215918749570847, + 0.0021503085736185312, + 0.018157413229346275, + -0.0033893838990479708, + -0.030020257458090782, + -0.0070275915786623955, + 0.010168151929974556, + -0.021896496415138245, + 0.001142403925769031, + -0.005722947884351015, + 0.0058910720981657505, + -0.007363840006291866, + 0.0006174361333250999, + -0.004095505457371473, + -0.006405531894415617, + -0.03946211189031601, + -0.019273757934570312, + -0.022609341889619827, + -0.002769005484879017, + -0.016045773401856422, + 0.013402861542999744, + -0.013194386847317219, + 0.0036146703641861677, + 0.02710162103176117, + 0.0035373331047594547, + -0.05406874045729637, + -0.006223957985639572, + -0.0018644973170012236, + -0.012716914527118206, + -0.010228675790131092, + -0.003095166524872184, + 0.012225992046296597, + -0.011035672388970852, + -0.009979852475225925, + -0.033194441348314285, + 0.00131977500859648, + -0.017901863902807236, + -0.0220847949385643, + -0.017229367047548294, + 0.016852770000696182, + -0.011983892880380154, + -0.008897132240235806, + -0.011015497148036957, + -0.026698121801018715, + -0.00339274643920362, + -0.021815795451402664, + -0.04583737999200821, + 0.009314080700278282, + 0.020228704437613487, + 0.010820473544299603, + 0.049038466066122055, + 0.01091462280601263, + 0.019260307773947716, + -0.012098217383027077, + -0.025084130465984344, + 0.047720372676849365, + 0.017189018428325653, + 0.01958310604095459, + 0.0016745170578360558, + 0.012649664655327797, + -0.01566917449235916, + -0.010645624250173569, + -0.004250179510563612, + 0.017404217272996902, + 0.008809708058834076, + -0.016408922150731087, + -0.019273757934570312, + -0.0022730391938239336, + 0.0063719069585204124, + 0.000412114430218935, + 0.011291220784187317, + 0.015077377669513226, + 0.015144627541303635, + 0.009529279544949532, + -0.040161509066820145, + 0.04303979501128197, + -0.04242109879851341, + 0.0026429123245179653, + -0.012125116772949696, + -0.06213870272040367, + -0.025501077994704247, + -0.03513123095035553, + -0.021143298596143723, + 0.024304034188389778, + -0.037310123443603516, + 0.018318813294172287, + -0.022878341376781464, + -0.025985276326537132, + 0.018668511882424355, + 0.01566917449235916, + -0.009542729705572128, + 0.030100956559181213, + 0.05127115547657013, + 0.006556843873113394, + -0.007928737439215183, + -0.00823808554559946, + 0.030934851616621017, + -0.006096183322370052, + 0.01070614904165268, + 0.004512453451752663, + -0.027034370228648186, + 0.002758918097242713, + 0.005517836194485426, + -0.01378618460148573, + 0.0023486949503421783, + -0.02200409583747387, + 0.00836586020886898, + -0.031123152002692223, + 0.021694745868444443, + 0.009630153886973858, + 0.014001383446156979, + -0.002491600578650832, + -0.016745170578360558, + 0.0032380721531808376, + -0.008164111524820328, + 0.008977832272648811, + -0.018870260566473007, + -0.023133888840675354, + 0.0005678394809365273, + 0.02918636053800583, + -0.010679248720407486, + 0.004643590189516544, + 0.002762280637398362, + 0.015050478279590607, + -0.019488956779241562, + 0.008251535706222057, + -0.0037491696421056986, + -0.013476835563778877, + -0.011775419116020203, + -0.004852064419537783, + -0.010820473544299603, + 0.030719652771949768, + -0.04737067595124245, + 7.460511551471427e-5, + -0.03636862710118294, + -0.00781441293656826, + -0.016637571156024933, + -0.03152665123343468, + -0.00236886995844543, + 0.00932080578058958, + 0.004821802023798227, + -0.0052824621088802814, + -0.024263683706521988, + -0.028056565672159195, + 0.043470192700624466, + 0.009307355619966984, + -0.01889715902507305, + -0.00011421937961131334, + 0.012017517350614071, + 0.01881645992398262, + 0.024788232520222664, + -0.009354430250823498, + -0.00149462406989187, + 0.0025941564235836267, + -0.029078761115670204, + 0.031069351360201836, + 0.020161453634500504, + -0.028998062014579773, + -0.0467250756919384, + -0.0015601925551891327, + 0.03241434693336487, + -0.023819835856556892, + -0.031795646995306015, + 0.011479520238935947, + 0.017780814319849014, + -0.014391431584954262, + 0.005023551173508167, + -0.003692007390782237, + 0.0062609449960291386, + 0.01242774073034525, + 0.007444539573043585, + -0.016368571668863297, + 0.01525222696363926, + 0.00872900802642107, + -0.0033675276208668947, + 0.025581777095794678, + -0.028648363426327705, + 0.019260307773947716, + -0.06531289219856262, + -0.023268388584256172, + -0.0008927395101636648, + 0.03246814385056496, + -0.01242101565003395, + -0.005995308980345726, + 0.00045813844189979136, + 0.009798278100788593, + 0.0005749847623519599, + 0.003688644850626588, + 0.023429788649082184, + 0.005524561274796724, + 0.0271823201328516, + 0.013624785467982292, + -0.014606630429625511, + 0.01643582247197628, + -0.0037256323266774416, + 0.0040753306820988655, + 0.002547081559896469, + 0.003048091661185026, + 0.009919327683746815, + -0.0036617449950426817, + 0.0263349749147892, + -0.00418293010443449, + 0.012602590024471283, + 0.027787568047642708, + -0.03262954577803612, + 0.023429788649082184, + -0.03601892665028572, + -0.0051513253711164, + 0.030773453414440155, + 0.009737753309309483, + -0.022716941311955452, + 0.017780814319849014, + 0.0066240932792425156, + -0.00733694015070796, + 0.02213859371840954, + 0.005958321504294872, + 0.002046071458607912, + 0.014929428696632385, + 0.010423700325191021, + 0.015897823497653008, + -0.01365840993821621, + -0.009805003181099892, + 0.01017487607896328, + -0.014095532707870007, + 0.013577709905803204, + -0.018668511882424355, + 0.001028079423122108, + 0.022165494039654732, + -0.00016013829736039042, + -0.0017022575484588742, + 0.0174176674336195, + -0.016987269744277, + 0.010228675790131092, + 0.003665107535198331, + -0.004287166986614466, + 0.02637532353401184, + -0.0016913294093683362, + -0.03155354782938957, + 0.05503713712096214, + 0.007316764909774065, + -0.006328194867819548, + 0.01174179371446371, + -0.017982564866542816, + -0.006230682600289583, + 0.0019939530175179243, + 0.015265677124261856, + -0.00013765168841928244, + 0.023039739578962326, + -0.030477555468678474, + 0.001844322425313294, + 0.012057867832481861, + 0.031661149114370346, + 0.00878953281790018, + -0.010074001736938953, + 0.01570952497422695, + 0.0074848891235888, + -0.024182984605431557, + -0.008406209759414196, + 0.005403511691838503, + -0.011203796602785587, + 0.025043779984116554, + -0.01936790719628334, + -0.003681920003145933, + -0.033974539488554, + -0.00384331913664937, + 0.007162090856581926, + -0.04239419847726822, + 0.003829869208857417, + 0.03219914808869362, + 0.013799633830785751, + 0.012279791757464409, + 0.024747882038354874, + -0.02688642218708992, + 0.020080754533410072, + 0.01242774073034525, + -0.004263629671186209, + 0.005558186210691929, + 0.0011600569123402238, + -0.0015139584429562092, + -0.015480875968933105, + -0.0026412310544401407, + -0.018197763711214066, + -0.015265677124261856, + -0.0008187648491002619, + 0.006556843873113394, + 0.00028770253993570805, + 0.005110975820571184, + -0.009603254497051239, + 0.01544052641838789, + -0.0027370620518922806, + 0.003977818414568901, + -0.015386726707220078, + -0.01371893472969532, + 0.0015433800872415304, + -0.031499750912189484, + -0.024035034701228142, + -0.029320860281586647, + 0.0014652024256065488, + 0.0024579758755862713, + 0.018924059346318245, + -0.013248186558485031, + -0.03930071368813515, + 0.000265005772234872, + 0.004041705746203661, + 0.0141224330291152, + -0.00433424161747098, + 0.0068023051135241985, + -0.01842641271650791, + 0.006476144306361675, + 0.003076672786846757, + -0.0032683343160897493, + 0.01712176762521267, + 0.004092142917215824, + 0.009831903502345085, + 0.020847400650382042, + -0.025070680305361748, + 0.01180904358625412, + -0.027599267661571503, + -0.009314080700278282, + 0.003655020147562027, + 0.0182650126516819, + 0.004435116425156593, + 0.011022222228348255, + -0.009858802892267704, + 0.009515829384326935, + -0.015265677124261856, + 0.02119709923863411, + -0.023429788649082184, + 0.010316100902855396, + 0.015817124396562576, + 0.0159247238188982, + -0.0002517659740988165, + 0.001002020202577114, + -0.005464036483317614, + -0.004754552152007818, + -0.0053900619968771935, + 0.0036852825433015823, + -0.009831903502345085, + -0.005659060552716255, + -0.009213206358253956, + 0.017955664545297623, + -0.021654397249221802, + 0.029159460216760635, + 0.01757906563580036, + -0.013826534152030945, + 0.008137211203575134, + -0.021035699173808098, + -0.01733696646988392, + -0.0015374957583844662, + -0.007121740840375423, + -0.012407565489411354, + -0.012999363243579865, + 0.013120412826538086, + 0.0028396176639944315, + -0.017256267368793488, + -0.026321524754166603, + 0.02659052237868309, + -0.019636906683444977, + -0.009105606935918331, + 0.01236049085855484, + -0.01631477288901806, + 0.022447943687438965, + -0.0031069351825863123, + -0.007518514059484005, + -0.001176869380287826, + 0.016893118619918823, + -0.02794896624982357, + 0.009199756197631359, + 0.018964409828186035, + 0.001714866841211915, + 0.013174212537705898, + 0.01639547199010849, + 0.012972462922334671, + -0.012131841853260994, + 0.02115674875676632, + -0.0012911938829347491, + 0.006496319081634283, + -0.009529279544949532, + 0.001650979625992477, + -0.013194386847317219, + 0.004714202601462603, + 0.02523208037018776, + -0.015090827830135822, + 0.0026092876214534044, + -0.014404881745576859, + 0.028056565672159195, + 0.029966456815600395, + -0.0220847949385643, + 0.02859456278383732, + 0.007592489011585712, + -0.005272374954074621, + -0.006025571376085281, + 0.018870260566473007, + -0.0015374957583844662, + -0.004909226670861244, + -0.01818431355059147, + -0.003792881965637207, + 0.015736425295472145, + -0.00370545731857419, + -0.03682592511177063, + -0.013685309328138828, + -0.01919305883347988, + -0.00021835129882674664, + -0.002234370680525899, + 0.003076672786846757, + -0.030423754826188087, + 0.015184978023171425, + -0.005652335472404957, + 0.00946875475347042, + -0.0032397531904280186, + -0.026617422699928284, + 0.011916643008589745, + 2.8055725124431774e-5, + -0.024263683706521988, + 0.02710162103176117, + -0.01860126107931137, + 0.02353738807141781, + 0.005887709558010101, + -0.02098190039396286, + -0.03467393293976784, + 0.002096508862450719, + 0.01987900584936142, + 0.023416338488459587, + -0.006852742284536362, + -0.0233625378459692, + -0.017511816695332527, + -0.008312060497701168, + -0.0163551215082407, + 0.015857474878430367, + -0.030558254569768906, + -0.0057767475955188274, + 0.027841366827487946, + 0.021170198917388916, + 0.022098245099186897, + -0.009710853919386864, + -0.01106929685920477, + 0.017444567754864693, + -0.02395433560013771, + 0.0066476305946707726, + 0.014001383446156979, + -0.009435130283236504, + -0.0027051183860749006, + 0.008554159663617611, + -0.0149697782471776, + -0.008742458187043667, + -0.006250857841223478, + 0.007121740840375423, + -0.0009204800007864833, + -0.012125116772949696, + 0.023295288905501366, + -0.013544085435569286, + 0.00322798453271389, + 0.014539380557835102, + 0.011930093169212341, + -0.01174851879477501, + 0.017471466213464737, + -0.008998007513582706, + -0.010329551063477993, + -0.016449270769953728, + -0.013006088323891163, + -0.026442574337124825, + 0.005652335472404957, + 0.0014567961916327477, + -0.0023890449665486813, + 0.00823808554559946, + -0.0019468782702460885, + 0.03537333011627197, + 0.02123744785785675, + 0.008802982978522778, + 0.0035877705086022615, + 0.017000718042254448, + -0.0052824621088802814, + 0.00815738644450903, + 0.007323489990085363, + -0.02064565196633339, + -0.003256565658375621, + -0.0035709580406546593, + 0.0013550809817388654, + 0.012999363243579865, + 0.003839956596493721, + -0.007310040295124054, + 0.008749183267354965, + 0.016879670321941376, + -0.0002668971719685942, + 0.0015206834068521857, + 0.0011180259753018618, + -0.0004829367680940777, + 0.00527573749423027, + -0.010524574667215347, + 0.010497675277292728, + -0.011506420560181141, + 0.008971107192337513, + 0.004233367275446653, + 0.011607294902205467, + -2.865992246370297e-5, + 0.009367880411446095, + -0.026698121801018715, + 0.009858802892267704, + -0.0036012204363942146, + -0.010074001736938953, + 0.006536668632179499, + 0.006425706669688225, + -0.011371920816600323, + 0.0049630263820290565, + 0.01373910903930664, + -0.00014080401160754263, + 0.02217894420027733, + -0.013853433541953564, + -0.006109633482992649, + 0.01353063527494669, + -0.009367880411446095, + -0.01002692710608244, + 0.025084130465984344, + -0.015655726194381714, + -0.012784164398908615, + -0.011647644452750683, + 0.01983865536749363, + 0.001624920405447483, + 0.021049149334430695, + 0.01753871701657772, + -0.004024893511086702, + 0.006661080755293369, + 0.0012390753254294395, + 0.021681295707821846, + -0.013201111927628517, + 0.013523910194635391, + 0.008977832272648811, + -0.009838627651333809, + -0.009609979577362537, + 0.01792876422405243, + 0.008587784133851528, + 0.01229996606707573, + -0.008507084101438522, + 0.0033002779819071293, + -0.010477500036358833, + 0.026025626808404922, + -0.0007334417896345258, + -0.012844689190387726, + 0.020188353955745697, + -0.02149299718439579, + -5.642668475047685e-5, + 0.014041732996702194, + 0.028809763491153717, + 0.023389438167214394, + 0.0006985560175962746, + 0.0006502203177660704, + 0.0038735815323889256, + -0.025850776582956314, + -0.01537327654659748, + -0.0027336995117366314, + 0.008036336861550808, + -0.006112996023148298, + 0.003997993655502796, + -0.007794237695634365, + 0.004465378820896149, + -0.008036336861550808, + -0.003048091661185026, + 0.011735068634152412, + -0.012313416227698326, + 0.01834571175277233, + -0.04973786324262619, + -0.009273731149733067, + 0.0003490678791422397, + -0.0032246222253888845, + -0.009858802892267704, + 0.00904508214443922, + -0.015991974622011185, + 0.010349725373089314, + 0.0064626941457390785, + -0.008298610337078571, + 0.028809763491153717, + -0.00247478811070323, + -0.020403552800416946, + 0.009717578999698162, + -0.010074001736938953, + 0.008533984422683716, + -0.015911273658275604, + 0.02373913675546646, + -0.03225294500589371, + 0.0059616840444505215, + 0.021519897505640984, + 0.016852770000696182, + -0.015615375712513924, + 0.00336584635078907, + 0.00410895561799407, + 0.011694719083607197, + -0.002326838904991746, + -0.03284474462270737, + -0.013490285724401474, + -0.007014141418039799, + 0.0041224053129553795, + -0.016301322728395462, + 0.003135516308248043, + 0.014095532707870007, + 0.016247522085905075, + 0.0001465832901885733, + 0.002536994172260165, + -0.008998007513582706, + 0.009636878967285156, + -0.0039206561632454395, + 0.018022913485765457, + -0.013174212537705898, + -0.008150661364197731, + 0.010295925661921501, + -0.0025588502176105976, + -0.017646316438913345, + -0.00685946736484766, + 0.03168804943561554, + -0.019596556201577187, + 0.0008549115736968815, + -0.002703437115997076, + 0.0014593180967494845, + 0.02595837600529194, + 0.00016570741718169302, + 0.015104277990758419, + -0.013826534152030945, + -0.015090827830135822, + -0.021035699173808098, + -0.022353792563080788, + -0.004774727392941713, + -0.02076670154929161, + -0.02178889699280262, + -0.012710189446806908, + -0.030020257458090782, + 0.002197383204475045, + -0.009462029673159122, + 0.02645602449774742, + -0.0007250356138683856, + 0.03265644609928131, + -0.0016417327569797635, + 0.034216638654470444, + -0.018534012138843536, + -0.03133834898471832, + 0.025891127064824104, + 0.002933767158538103, + 0.019166158512234688, + -0.003688644850626588, + 0.010114352218806744, + 0.04465378820896149, + -0.014283832162618637, + -0.00202925899066031, + 0.008507084101438522, + -0.0006149142282083631, + 0.021183649078011513, + 0.013375961221754551, + -0.021358497440814972, + -0.010437150485813618, + 0.0038096944335848093, + -0.0331406407058239, + -0.01572297513484955, + -0.016260972246527672, + 0.009731028228998184, + -0.010571649298071861, + -0.035776831209659576, + 0.008332234807312489, + 0.0028362551238387823, + 0.010739773511886597, + 0.011506420560181141, + 0.001306324964389205, + -0.017659766599535942, + 0.004028255585581064, + -0.01338268630206585, + 0.00768663827329874, + 0.01669136993587017, + 0.002175527159124613, + -0.0024125822819769382, + 0.004290529526770115, + 0.00549093633890152, + -0.018534012138843536, + -0.00018703816749621183, + 0.0014324181247502565, + 0.010188326239585876, + 0.026832621544599533, + -0.03596512973308563, + -0.008661759085953236, + -0.005178225226700306, + 0.011835943907499313, + 0.018870260566473007, + 0.009946228004992008, + 0.00302119180560112, + -0.019865555688738823, + -0.006472781766206026, + -0.0010743136517703533, + 0.017310068011283875, + 0.00946875475347042, + 0.010733048431575298, + 0.01055820006877184, + -0.005037000868469477, + -0.0063248323276638985, + 0.00932080578058958, + 0.00962342880666256, + 0.0022831265814602375, + 0.009186306037008762, + 0.017619416117668152, + 0.0042838044464588165, + 0.006086096167564392, + -0.021439198404550552, + -0.006560206413269043, + 0.010524574667215347, + -0.003177547361701727, + -0.006879642140120268, + -0.0032616094686090946, + -0.006899816915392876, + 0.016987269744277, + 0.007094840984791517, + -0.007975812070071697, + 0.007256240583956242, + -0.01924685761332512, + 0.008533984422683716, + 0.010517849586904049, + -0.013012813404202461, + 0.0022461393382400274, + -0.003249840810894966, + -0.0017804352100938559, + -0.023053189739584923, + -0.002454613335430622, + 0.007067941129207611, + -0.0149697782471776, + -0.0014509118627756834, + -0.01393413357436657, + -0.006429069209843874, + -0.006876279599964619, + -0.011418995447456837, + 0.07467404752969742, + -0.003044729121029377, + 0.01639547199010849, + 0.013275086879730225, + -0.0019065283704549074, + -0.027841366827487946, + -0.0037861568853259087, + 0.023053189739584923, + 0.01572297513484955, + 0.006832567509263754, + -0.02127779833972454, + -0.013436486013233662, + 0.016368571668863297, + 0.015642276033759117, + -0.03015475533902645, + -0.005107613280415535, + 0.02021525427699089, + 0.008634858764708042, + -0.0131674874573946, + 0.007982537150382996, + 0.007780788000673056, + -0.003453270997852087, + -0.011728344485163689, + 0.01227306667715311, + -0.008251535706222057, + 0.015749875456094742, + -0.0005871737375855446, + -0.014956329017877579, + 0.026402223855257034, + 0.02357773669064045, + 0.0058910720981657505, + 0.0014004745753481984, + 0.007478164508938789, + -0.02055150270462036, + 0.006650993134826422, + 0.0032515220809727907, + 0.008264985866844654, + -0.006805667653679848, + 0.004720927681773901, + 0.012152017094194889, + -0.006516493856906891, + -0.01242101565003395, + 0.01627442240715027, + 0.008352410048246384, + -0.027451319620013237, + 0.008500359021127224, + -0.022878341376781464, + 0.0017501729307696223, + 0.0075992136262357235, + 0.002758918097242713, + -0.0012382346903905272, + 0.001857772353105247, + 0.007397464942187071, + 0.01809016428887844, + 0.024909282103180885, + -0.004270354751497507, + 0.0030497729312628508, + 0.015749875456094742, + 0.007478164508938789, + -0.008338959887623787, + -0.017189018428325653, + -0.01800946332514286, + 0.0020023591350764036, + -0.017901863902807236, + -0.016072673723101616, + -0.01482182927429676, + -0.019529307261109352, + 0.0020258966833353043, + -0.004902501590549946, + -0.02420988492667675, + -0.018803009763360023, + -0.011197071522474289, + 0.006718243006616831, + -0.020282503217458725, + -0.0010432106209918857, + 0.024411633610725403, + 0.019421707838773727, + 0.024263683706521988, + 0.02607942558825016, + -0.0112575963139534, + -0.015601925551891327, + 0.007619388867169619, + -0.018547462299466133, + -0.012373941019177437, + 0.008170835673809052, + -0.02000005543231964, + 0.016260972246527672, + -0.03585752844810486, + -0.003890394000336528, + -0.025420378893613815, + -0.030558254569768906, + -0.0023840011563152075, + -0.006946892011910677, + 0.01537327654659748, + -0.022232744842767715, + -0.0006401328719221056, + 0.004636865574866533, + 0.016301322728395462, + -0.00928045529872179, + -0.014256931841373444, + -0.003557508112862706, + 0.005366524215787649, + 0.00013975324691273272, + 0.0017367230029776692, + 0.002873242599889636, + -0.006708155386149883, + 0.015507776290178299, + 0.005618710536509752, + 0.00024272930750157684, + -0.0034734460059553385, + -0.0035137957893311977, + 0.002886692527681589, + 0.00714864069595933, + 0.007121740840375423, + -0.0023940885439515114, + -0.01427038200199604, + 0.004808351863175631, + -0.005921334493905306, + -0.017821164801716805, + -0.006190333049744368, + 0.009542729705572128, + 0.0026143311988562346, + -0.0059381467290222645, + -0.026577074080705643, + -0.006035658530890942, + 0.01804981380701065, + 0.0012088129296898842, + -0.018211213871836662, + 0.003118703840300441, + 0.004579703323543072, + 0.035319533199071884, + 0.015010128729045391, + 0.02192339487373829, + -0.0037861568853259087, + 0.02094154991209507, + 0.01631477288901806, + -0.00811031088232994, + 0.009334255941212177, + -0.004922676365822554, + -0.0233625378459692, + 0.02182924561202526, + -0.009885703213512897, + 0.012259616516530514, + 0.010416975244879723, + 0.004361141938716173, + 0.007592489011585712, + -0.004804989788681269, + -0.017605965957045555, + 0.016745170578360558, + -0.025178279727697372, + 0.007888386957347393, + -0.028702164068818092, + 0.003140560118481517, + 0.010524574667215347, + -0.00025723001454025507, + 0.006274395156651735, + -0.021909944713115692, + 0.030262356624007225, + -0.029240161180496216, + -0.0020612026564776897, + 0.00370545731857419, + -0.011782144196331501, + -0.011412270367145538, + 0.0017686665523797274, + -0.03074655309319496, + 0.019986605271697044, + 0.010349725373089314, + 0.015507776290178299, + -0.010699423961341381, + -0.012663114815950394, + 0.011546770110726357, + 0.01529257744550705, + 0.032010845839977264, + -0.013799633830785751, + 0.013470110483467579, + -0.015453976579010487, + -0.005134513135999441, + 0.0059852213598787785, + -0.011546770110726357, + -0.0021553521510213614, + -0.007464714348316193, + -0.01193681824952364, + -0.0028396176639944315, + -0.0002505050506442785, + -0.013698759488761425, + -0.011674544773995876, + 0.011116372421383858, + -0.003080035327002406, + 0.01427038200199604, + -0.01008745189756155, + -0.009791553020477295, + 0.02098190039396286, + -0.0007868212414905429, + -0.008325510658323765, + 0.009858802892267704, + 0.0045763407833874226, + 0.045810483396053314, + 0.030773453414440155, + 0.051163554191589355, + -0.001163419452495873, + 0.0032548843882977962, + -0.011123096570372581, + 0.015010128729045391, + 0.011708169244229794, + -0.0021872958168387413, + 0.0038870314601808786, + -0.01944860816001892, + -0.02137194760143757, + -0.007605938706547022, + 0.01023540087044239, + -0.021506447345018387, + -0.014525930397212505, + 0.007794237695634365, + 0.0043006171472370625, + 0.012286516837775707, + -0.0001913463493110612, + 0.018117062747478485, + 0.018587810918688774, + 0.006237407680600882, + 0.00714864069595933, + -0.007558864075690508, + -0.0025638940278440714, + 0.015050478279590607, + -0.001659385859966278, + -0.0010886042146012187, + -0.0003950918617192656, + -0.0018123788759112358, + 0.015279127284884453, + 0.02854076400399208, + -0.009367880411446095, + 0.011492970399558544, + -0.018762661144137383, + -0.00507398834452033, + 0.0009801640408113599, + -0.002298257779330015, + 0.010585099458694458, + -0.0008099382976070046, + -0.021694745868444443, + 0.01429728139191866, + 0.00343477725982666, + -0.013510460965335369, + 0.0008351569413207471, + -0.008130486123263836, + 0.0056456103920936584, + -0.006953616626560688, + -0.01749836653470993, + -0.011223971843719482, + -0.0032128533348441124, + 0.0018241475336253643, + -2.2013762645656243e-5, + -0.012051142752170563, + 0.003305321792140603, + -0.008991282433271408, + 0.0027336995117366314, + 0.012535340152680874, + -0.011782144196331501, + 0.0057128602638840675, + 0.011714894324541092, + 0.0018409600015729666, + -0.012320141308009624, + 0.005568273365497589, + 0.008533984422683716, + -0.014445231296122074, + 0.0013609654270112514, + -0.011183621361851692, + 0.009414955042302608, + -0.029159460216760635, + -0.0019620093517005444, + -0.00618024542927742, + -0.007854762487113476, + 0.0062844823114573956, + 0.007168815936893225, + -0.013476835563778877, + 0.02837936393916607, + 0.003295234404504299, + -0.0011869568843394518, + -0.005221937783062458, + -0.008587784133851528, + 0.005457311403006315, + 0.03712182119488716, + -0.015978524461388588, + 0.0022007457446306944, + 0.011492970399558544, + -0.017727015540003777, + -0.0009751203469932079, + -0.02322803996503353, + 0.01843986287713051, + 0.012414290569722652, + 0.007693363353610039, + 0.026563623920083046, + -0.018372612074017525, + -0.004979838617146015, + -0.007666463498026133, + 0.0013138905633240938, + 0.0021486273035407066, + 0.009327530860900879, + 0.006862829905003309, + -0.01257568970322609, + 0.031150052323937416, + -0.02531277947127819, + -0.00811031088232994, + -0.0011180259753018618, + -0.0075992136262357235, + -0.025258978828787804, + -0.000757819798309356, + 0.00013681106793228537, + 0.03330204263329506, + 0.005511111114174128, + 8.154023817041889e-5, + 0.010161426849663258, + 0.004404854029417038, + 0.0035608704201877117, + -0.014028282836079597, + -0.018574360758066177, + -0.011062572710216045, + -0.002901823725551367, + -0.0007111653685569763, + 0.01737731695175171, + -0.003043048083782196, + -0.001945197000168264, + -0.0034902584739029408, + -0.0013971120351925492, + 0.03741772100329399, + -0.011761968955397606, + 0.01248826552182436, + -0.012252891436219215, + 0.015534675680100918, + 0.010719599202275276, + 0.01346338540315628, + -0.027975866571068764, + 0.026106325909495354, + 0.01373910903930664, + -0.027343720197677612, + -0.0048722391948103905, + -0.006136533338576555, + 0.021936845034360886, + -0.011802318505942822, + 0.0008986238390207291, + 0.006691343151032925, + -0.0037861568853259087, + -0.009139231406152248, + -0.020269053056836128, + -0.023012841120362282, + -0.0038096944335848093, + -0.0033675276208668947, + 0.014768029563128948, + 0.0024428446777164936, + 0.005507748574018478, + 0.001561033190228045, + 0.008944207802414894, + -0.0016761982114985585, + 0.021761996671557426, + 0.015534675680100918, + 0.008043061941862106, + -0.020417002961039543, + 0.002244458068162203, + 0.01208476722240448, + 0.020524602383375168, + -0.006355094723403454, + -0.01682586967945099, + -0.0020763338543474674, + 0.01712176762521267, + -0.020955000072717667, + -0.012165467254817486, + 0.01877611130475998, + -0.007377289701253176, + 0.006516493856906891, + 0.0039206561632454395, + -0.028567664325237274, + -0.0037592570297420025, + -0.0027185683138668537, + -0.016704820096492767, + -0.0023655074182897806, + 0.016247522085905075, + -0.010995322838425636, + 0.0017073012422770262, + -0.004287166986614466, + 0.014499031007289886, + -0.02127779833972454, + 0.00479826470836997, + 0.016328223049640656, + -0.000311450072331354, + 0.003765982110053301, + -0.008412934839725494, + -0.02285144105553627, + 0.01193681824952364, + 0.01787496544420719, + 0.0027992678806185722, + 0.012784164398908615, + 0.006809030193835497, + -0.004125767853111029, + 0.003148966236039996, + 0.004428391344845295, + 0.020067304372787476, + -0.029697459191083908, + 0.03088105283677578, + -0.014566280879080296, + -0.005833909846842289, + -0.013584434986114502, + 0.003702094778418541, + -0.017014168202877045, + -0.00821791123598814, + 0.01979830488562584, + 0.007222615648061037, + -0.010403525084257126, + -0.02098190039396286, + 0.008103586733341217, + -0.0060289339162409306, + 0.018359161913394928, + -0.002316751517355442, + 0.008971107192337513, + 0.006213870365172625, + -0.00686955451965332, + 0.010020202025771141, + 0.027168869972229004, + -0.013987933285534382, + -0.009455304592847824, + 0.003940831404179335, + -0.0010818792507052422, + -0.004472103901207447, + 0.002009084215387702, + -0.01838606223464012, + 0.011123096570372581, + 0.002955623436719179, + 0.011271046474575996, + -0.004677215125411749, + 0.023887086659669876, + 0.025810426101088524, + -0.011062572710216045, + -0.003453270997852087, + -0.002854748861864209, + 0.00870883371680975, + -0.010941523127257824, + 0.004818439483642578, + -0.024707531556487083, + -0.007774062920361757, + 0.02200409583747387, + -0.008950931951403618, + -0.010208501480519772, + 0.02200409583747387, + -0.024573033675551414, + -0.020524602383375168, + -0.028809763491153717, + -0.01958310604095459, + -0.005733035039156675, + -0.014996678568422794, + -0.004818439483642578, + 0.010544749908149242, + -0.007854762487113476, + -0.006345007102936506, + -0.01186956837773323, + 0.023120440542697906, + -0.014014833606779575, + 0.002340288832783699, + -0.015063928440213203, + -0.01257568970322609, + -0.006516493856906891, + -0.026577074080705643, + 0.009731028228998184, + -0.033974539488554, + 0.01503702811896801, + -0.0016081079374998808, + -0.001998996827751398, + -0.02515137940645218, + -0.0028194428887218237, + -0.003581045428290963, + 0.022071344777941704, + 0.006835930049419403, + -0.021183649078011513, + 0.012111667543649673, + -0.04158720001578331, + 0.030020257458090782, + 0.014391431584954262, + 0.0014845366822555661, + 0.021223999559879303, + 0.023725686594843864, + -0.012091492302715778, + -0.002666449872776866, + -0.0056893229484558105, + -0.012468090280890465, + -0.0112575963139534, + 0.00459651555866003, + -0.0017501729307696223, + -0.007888386957347393, + 0.027209220454096794, + -0.0020897837821394205, + 0.004149305168539286, + 0.0023974510841071606, + -0.015453976579010487, + 0.009798278100788593, + 0.03096175193786621, + 0.04234039783477783, + 0.009731028228998184, + 0.002146946033462882, + 0.00020248457440175116, + -0.0032195784151554108, + 0.01763286627829075, + 0.0344049371778965, + -0.01572297513484955, + 0.004142580088227987, + 0.012589139863848686, + 0.008446559309959412, + -0.005568273365497589, + -0.002019171603024006, + 0.013012813404202461, + -0.01584402471780777, + 0.005084075964987278, + 0.015332926996052265, + 0.019825205206871033, + 0.013221287168562412, + 0.003187634749338031, + -0.017915314063429832, + -0.010954972356557846, + 0.0009759609820321202, + -0.015359826385974884, + 0.021519897505640984, + -0.0039441934786736965, + -0.011943543329834938, + 0.008547434583306313, + -0.0077538881450891495, + 0.004478828515857458, + -0.021210549399256706, + 0.004700752440840006, + 0.0031304724980145693, + 0.00424681743606925, + 0.016247522085905075, + 0.027679968625307083, + -0.0013609654270112514, + -0.0038634941447526217, + -0.008278435096144676, + -0.022878341376781464, + 0.027034370228648186, + 0.02137194760143757, + -0.013349060900509357, + 0.0025269067846238613, + 0.015104277990758419, + 0.0014181275619193912, + -0.017444567754864693, + 0.03381313756108284, + -0.00968395359814167, + 0.01357098575681448, + 0.0013601247919723392, + 0.010356450453400612, + -0.0023419701028615236, + -0.0011592163937166333, + -0.025635577738285065, + 0.017619416117668152, + 0.009556179866194725, + 0.006355094723403454, + -0.004697389900684357, + -0.007478164508938789, + 0.007861487567424774, + 0.02009420469403267, + 0.011782144196331501, + 0.014942878857254982, + -0.00966377928853035, + 0.018628161400556564, + -0.0018964409828186035, + -0.015575026161968708, + 0.030692754313349724, + 0.011291220784187317, + -0.0005821300437673926, + -0.006862829905003309, + -0.021761996671557426, + -0.008076686412096024, + 0.011916643008589745, + -0.00309012271463871, + -0.005339624360203743, + 0.011654369533061981, + 0.004411579109728336, + -0.006395444273948669, + 0.02229999378323555, + -0.020712900906801224, + 0.016328223049640656, + -0.014324181713163853, + 0.009159406647086143, + -0.020080754533410072, + 0.008338959887623787, + 0.01276398915797472, + -0.01601887308061123, + 0.0003389804041944444, + -0.017444567754864693, + 0.0036718323826789856, + -0.00135676225181669, + 0.0005157209816388786, + 0.023416338488459587, + 0.00302119180560112, + 0.023981235921382904, + 0.017189018428325653, + -0.004287166986614466, + 0.02039010263979435, + 0.002281445311382413, + -0.02854076400399208, + -0.00418293010443449, + 0.012743813917040825, + 0.01261604018509388, + -0.011149996891617775, + -0.01051112450659275, + -0.012205816805362701, + -0.03088105283677578, + 0.0013323843013495207, + 0.0037727069575339556, + 0.004835251718759537, + 0.0027757305651903152, + 0.0007124262629076838, + -0.0007834587595425546, + -0.004579703323543072, + 0.013221287168562412, + -0.003557508112862706, + -0.004683940205723047, + 0.017727015540003777, + -0.018870260566473007, + 0.015090827830135822, + -0.005295912269502878, + 0.01537327654659748, + 0.017471466213464737, + 0.01631477288901806, + -0.019233407452702522, + 0.02416953444480896, + 0.0027118432335555553, + 0.01669136993587017, + 0.01429728139191866, + -0.00535307452082634, + -0.014606630429625511, + -0.021842695772647858, + 0.011607294902205467, + 0.001213856739923358, + 0.006119720637798309, + 0.021035699173808098, + -0.007088116370141506, + -0.00733694015070796, + -0.024949630722403526, + -0.005877621937543154, + -0.02196374535560608, + 0.007014141418039799, + -0.021842695772647858, + -0.011264321394264698, + 0.012649664655327797, + -0.0038634941447526217, + -0.004878964275121689, + -0.008197735995054245, + -0.012528615072369576, + -0.004993288777768612, + 0.013651684857904911, + -0.002064565196633339, + 0.019717605784535408, + 0.006553481332957745, + 0.0023873636964708567, + 0.024061935022473335, + -0.015117728151381016, + -0.003172503551468253, + 0.012138566933572292, + -0.01609957404434681, + 0.0135911600664258, + 0.005248837638646364, + -0.019166158512234688, + 0.0033002779819071293, + -0.014216582290828228, + 0.030047155916690826, + -0.006879642140120268, + -0.020121103152632713, + -0.0220847949385643, + -0.01014797668904066, + 0.022824540734291077, + -0.0027067996561527252, + 0.002809355268254876, + 0.015077377669513226, + 0.014391431584954262, + -0.014068633317947388, + -0.004068605601787567, + -0.007175541017204523, + -0.0019048472167924047, + -0.016624120995402336, + 0.005433774087578058, + 0.0167855191975832, + 0.013120412826538086, + 0.004354416858404875, + 0.0028446614742279053, + 0.02464028261601925, + -0.011829218827188015, + 0.011896468698978424, + -0.002035984070971608, + 0.0023150702472776175, + 0.021761996671557426, + -1.147316288552247e-5, + 0.015575026161968708, + 0.01962345652282238, + -0.01572297513484955, + 0.009952952153980732, + 0.011183621361851692, + -0.02234034426510334, + -0.010659074410796165, + -0.032306745648384094, + -0.011297945864498615, + 0.0010062233777716756, + 0.004310704302042723, + 0.0020931463222950697, + 0.004784814547747374, + 0.008507084101438522, + -0.017363866791129112, + -0.014929428696632385, + 0.004482191056013107, + 0.011412270367145538, + 0.0024260322097688913, + -0.00966377928853035, + -0.030423754826188087, + -0.02001350373029709, + 0.004115680232644081, + 0.015090827830135822, + -0.016933469101786613, + 0.010887723416090012, + -0.0071889907121658325, + 0.005043725948780775, + 0.023039739578962326, + 0.00685946736484766, + -0.029105661436915398, + -0.012595864944159985, + 0.01089444849640131, + -0.008406209759414196, + -0.015104277990758419, + 0.015534675680100918, + -0.004388041794300079, + -0.0031859534792602062, + 0.007935462519526482, + 0.01877611130475998, + -0.031284552067518234, + -0.0017501729307696223, + -0.004788177087903023, + -0.008184285834431648, + 0.006973791867494583, + 0.04960336163640022, + -0.0029573047067970037, + -0.009502380155026913, + 0.01017487607896328, + -0.018547462299466133, + -0.016260972246527672, + -0.0027521930169314146, + 0.012454641051590443, + -0.00830533541738987, + 0.02688642218708992, + -0.02438473328948021, + -0.022447943687438965, + 0.01008745189756155, + 0.006852742284536362, + -0.0018359161913394928, + -0.007982537150382996, + -0.023349089547991753, + -0.013086787424981594, + -0.004889051895588636, + 0.026819171383976936, + -0.007538688834756613, + -0.026092875748872757, + 0.024586481973528862, + -0.008621408604085445, + 0.014095532707870007, + -0.015427076257765293, + 0.019986605271697044, + -0.013665135018527508, + 0.00733694015070796, + -0.00879625789821148, + -0.00031502271303907037, + 0.0016173548065125942, + -0.0027336995117366314, + -0.014646979980170727, + -0.020591851323843002, + 0.009213206358253956, + 0.0017720290925353765, + -0.0015047115739434958, + -0.00872900802642107, + 0.029105661436915398, + -0.008863507770001888, + -0.0020174903329461813, + -0.010793573223054409, + -0.022609341889619827, + 0.023120440542697906, + -0.027034370228648186, + -0.01441833097487688, + -0.007632838562130928, + 0.015655726194381714, + -0.007115016225725412, + 0.008742458187043667, + 0.003557508112862706, + 0.012743813917040825, + 0.004317429382354021, + -0.008224635384976864, + 0.013409585691988468, + 0.0014769710833206773, + 0.008372585289180279, + 0.010827198624610901, + 0.010295925661921501, + 0.02212514542043209, + -0.010343000292778015, + -0.013349060900509357, + 0.014149332419037819, + 0.008574333973228931, + -0.010410250164568424, + -0.001635007793083787, + -0.026859521865844727, + -0.02141229808330536, + -0.005134513135999441, + -0.0033826588187366724, + 0.0013407905353233218, + 0.011358470655977726, + -0.017363866791129112, + -0.012669839896261692, + -0.01000002771615982, + 0.009179580956697464, + 0.0013769371435046196, + 0.0004049691488035023, + 8.926344162318856e-5, + -0.004216555040329695, + 0.007868212647736073, + -0.004411579109728336, + 0.0056287981569767, + 0.023214589804410934, + -0.004586427938193083, + -0.01966380700469017, + -0.016583770513534546, + 0.018197763711214066, + 0.005134513135999441, + -0.015265677124261856, + 0.004105593077838421, + 0.003930743783712387, + -0.011156721971929073, + -0.030127856880426407, + -0.005336262285709381, + 0.0038567690644413233, + 0.014472130686044693, + 0.0022999390494078398, + -0.03515813127160072, + -0.011271046474575996, + -0.0013996339403092861, + -0.013920683413743973, + -0.0016417327569797635, + 0.016408922150731087, + -0.0038971188478171825, + 0.008137211203575134, + -0.0004661243292503059, + 0.03771362081170082, + -0.014835279434919357, + -0.004976476076990366, + -0.012461365200579166, + -0.006082733627408743, + 0.019045108929276466, + 0.016166822984814644, + -0.009065256454050541, + 0.012535340152680874, + -0.012743813917040825, + -0.007202440872788429, + -0.026980571448802948, + 0.004613327793776989, + -0.0010650667827576399, + 0.0073503898456692696, + -0.009932777844369411, + 0.0028816487174481153, + -0.015938173979520798, + 0.004882326815277338, + -0.004095505457371473, + 0.01236049085855484, + -0.00284634274430573, + 0.00811031088232994, + 0.037444621324539185, + -0.0014509118627756834, + -0.013295261189341545, + 0.017901863902807236, + -0.01117017213255167, + -0.006926716770976782, + -0.011486245319247246, + 0.004004718270152807, + -0.01987900584936142, + -0.016583770513534546, + -0.02225964330136776, + 0.023685337975621223, + -0.010080726817250252, + -0.007377289701253176, + 0.005770022515207529, + -0.0020477527286857367, + -0.0009431767393834889, + -0.002740424359217286, + 0.02090119943022728, + 0.008009436540305614, + 0.004667127970606089, + -0.006691343151032925, + 0.010598549619317055, + -0.024317484349012375, + -0.004310704302042723, + 0.021479547023773193, + 0.017431117594242096, + -0.014068633317947388, + 0.02030940353870392, + 0.00864158384501934, + -0.01584402471780777, + -0.007451264653354883, + -0.02115674875676632, + -0.019018208608031273, + 0.02433093450963497, + -0.0003694529295898974, + -0.0024697445333003998, + -0.013564260676503181, + -0.01036317553371191, + 0.001998996827751398, + -0.015010128729045391, + -0.009670503437519073, + 0.012878313660621643, + 0.014499031007289886, + 0.010800298303365707, + -0.02497653104364872, + 0.0067552304826676846, + -0.01325491163879633, + 0.02080705016851425, + -0.023160789161920547, + -0.005608623381704092, + 0.02361808717250824, + 0.023268388584256172, + 0.017471466213464737, + 0.009878978133201599, + -0.01236049085855484, + -0.007774062920361757, + 0.023766037076711655, + 0.0011760287452489138, + -0.006334919948130846, + 0.011102922260761261, + -0.004630140494555235, + 0.027679968625307083, + 0.02340288832783699, + 0.007585763931274414, + 0.00981172826141119, + -0.01627442240715027, + -0.007444539573043585, + 0.018170863389968872, + 0.0037189072463661432, + -0.005928059108555317, + 0.006015483755618334, + -0.015951624140143394, + -0.01763286627829075, + 0.002067927736788988, + -0.014835279434919357, + 0.010605274699628353, + -0.014310731552541256, + 0.0032128533348441124, + 0.008036336861550808, + -0.0031523287761956453, + 0.005134513135999441, + -0.009267006069421768, + -0.002419307129457593, + 0.010464049875736237, + -0.01291193813085556, + 0.0029219985008239746, + -0.013275086879730225, + -0.011230695992708206, + -0.0026261000894010067, + 0.0043006171472370625, + -0.0103026507422328, + -0.004488916136324406, + 0.014055183157324791, + 0.010410250164568424, + 0.004744464997202158, + -0.012582414783537388, + -0.010759948752820492, + -0.008379310369491577, + 0.0026597247924655676, + -0.004512453451752663, + 0.008540709502995014, + -0.00781441293656826, + 0.02281109057366848, + -0.018722310662269592, + -0.015534675680100918, + -0.02429058402776718, + -0.023940885439515114, + -0.00356759550049901, + 0.015198427252471447, + 0.02369878627359867, + 0.0023470139130949974, + 0.02200409583747387, + 0.03572303056716919, + 0.005739760119467974, + -0.023644987493753433, + -0.01055147498846054, + -0.015749875456094742, + 0.00900473166257143, + -0.017605965957045555, + 0.006788854952901602, + 0.003974455874413252, + 0.00010271337669109926, + 0.0015635550953447819, + -0.003977818414568901, + -0.013328886590898037, + 0.02141229808330536, + 0.016247522085905075, + -0.005316087044775486, + 0.007034316658973694, + -0.009482204914093018, + -0.016893118619918823, + -0.0006809030310250819, + -0.024142634123563766, + 0.0049865636974573135, + 0.02361808717250824, + -0.005833909846842289, + -0.012044417671859264, + -0.007928737439215183, + 0.00866848323494196, + 0.004683940205723047, + -0.0026092876214534044, + -0.005810372065752745, + 0.011291220784187317, + 0.008614683523774147, + 0.027249570935964584, + -0.002755555557087064, + -0.018547462299466133, + -0.005608623381704092, + -0.0043241544626653194, + -0.007034316658973694, + -0.0112575963139534, + 0.0216678474098444, + -0.003987906035035849, + -0.007807687856256962, + 0.02667122334241867, + 0.015279127284884453, + -0.011365195736289024, + 0.004233367275446653, + 0.005161412991583347, + 0.019300658255815506, + 0.019045108929276466, + -0.022461391985416412, + 0.0045326282270252705, + 0.016462720930576324, + -0.023860186338424683, + -0.020524602383375168, + -0.019085459411144257, + 0.013692034408450127, + -0.013671860098838806, + 0.00445865374058485, + 0.011640919372439384, + -0.0314190499484539, + -0.02162749692797661, + 0.009240105748176575, + 0.002753874287009239, + -0.02310699038207531, + 0.01647617109119892, + 0.008291885256767273, + 0.005295912269502878, + 0.0017316791927441955, + 0.0019653718918561935, + 0.011775419116020203, + -0.012259616516530514, + 0.010887723416090012, + 0.008964382112026215, + -0.0263349749147892, + 0.001014629495330155, + 0.010712874121963978, + -0.005154687911272049, + 0.015238777734339237, + -0.004381316713988781, + -0.011667819693684578, + 0.009381330572068691, + 0.022447943687438965, + -0.009616703726351261, + 0.004347691778093576, + 0.01572297513484955, + 0.009354430250823498, + 0.008850057609379292, + 0.0019166158745065331, + -0.0031842722091823816, + 0.001990590477362275, + -0.024882381781935692, + -0.002284807851538062, + 0.002175527159124613, + 0.010094176977872849, + -0.01580367423593998, + 0.0068661924451589584, + 0.006540031172335148, + 0.022959040477871895, + 0.007000691723078489, + -0.003984543494880199, + -0.010114352218806744, + -0.008903857320547104, + -0.005773385055363178, + 0.004552803467959166, + -0.021385397762060165, + -0.0031287912279367447, + 0.007995987311005592, + -0.009334255941212177, + -0.02263624221086502, + 0.008890407159924507, + -0.002637868747115135, + -0.003964368719607592, + 0.003581045428290963, + -0.014539380557835102, + -0.00021898177510593086, + -0.005218575242906809, + 0.020282503217458725, + 0.004176205024123192, + -0.002123408718034625, + 0.024734431877732277, + 0.004878964275121689, + -0.009912602603435516, + 0.00781441293656826, + 0.000832214776892215, + 0.004586427938193083, + -0.014162782579660416, + -0.002515137894079089, + 0.012078042142093182, + -0.008661759085953236, + -0.021331598982214928, + -0.00473437737673521, + 0.01267656497657299, + 0.003991268575191498, + -0.002547081559896469, + -0.005437136627733707, + 0.0034599960781633854, + -0.011903192847967148, + -0.01021522656083107, + -0.03843991830945015, + -0.008681933395564556, + 0.01881645992398262, + 0.015682624652981758, + -0.01950240693986416, + 0.0014181275619193912, + 0.01745801605284214, + 0.02047080174088478, + -0.01983865536749363, + 0.01873576082289219, + -0.013409585691988468, + -0.03402833640575409, + 0.0007750525255687535, + -0.004744464997202158, + -0.003295234404504299, + -0.01085409801453352, + 0.011230695992708206, + 0.02519172988831997, + 0.005084075964987278, + 0.01848021149635315, + 0.008197735995054245, + -0.004290529526770115, + -0.013160762377083302, + 0.012057867832481861, + -0.012394116260111332, + -0.0033406277652829885, + 0.00714864069595933, + -0.006133170798420906, + 0.018708860501646996, + -0.006492956541478634, + -0.005944871809333563, + 0.0024714258033782244, + -0.0017089825123548508, + -0.020793600007891655, + -0.006469419226050377, + 0.01214529201388359, + 0.02377948723733425, + 0.0009482204914093018, + -0.012185641564428806, + -0.024559583514928818, + -0.00528918718919158, + -0.016301322728395462, + 0.01386688370257616, + 0.010524574667215347, + 0.011492970399558544, + 0.012447915971279144, + 0.008049787022173405, + 0.013732384890317917, + 0.0023436513729393482, + -0.0051513253711164, + -0.015238777734339237, + -0.0062777576968073845, + 0.003201084677129984, + 0.00555482367053628, + -0.006724968086928129, + -0.007108291145414114, + -0.0027387430891394615, + -0.0015492645325139165, + -0.013006088323891163, + -0.022918689996004105, + -0.006126445718109608, + 0.00576665997505188, + 0.017780814319849014, + 0.021909944713115692, + 0.012831239029765129, + -0.00023936682555358857, + -0.004640227649360895, + -0.010349725373089314, + -0.01529257744550705, + 0.008264985866844654, + -0.0007510948344133794, + -0.008930757641792297, + -0.004451928660273552, + -0.0027185683138668537, + -0.008749183267354965, + 0.0012525252532213926, + 0.02875596284866333, + 0.017484916374087334, + 0.015938173979520798, + -0.015211877413094044, + -0.014431781135499477, + -0.0046234154142439365, + 0.005205125082284212, + 0.0018375974614173174, + -0.004905864130705595, + -0.012985913082957268, + -0.008251535706222057, + 0.013907233253121376, + 0.0070612165145576, + -0.003715544706210494, + 0.02064565196633339, + 0.009515829384326935, + -0.02667122334241867, + -0.021304698660969734, + 0.0006682936800643802, + 0.012447915971279144, + 0.022959040477871895, + 0.011452620849013329, + 0.013328886590898037, + 0.014942878857254982, + -0.002634506206959486, + -0.00521521270275116, + -0.012629489414393902, + 0.014875628985464573, + -0.01214529201388359, + 0.016583770513534546, + 0.004529265686869621, + 0.0149697782471776, + 0.004206467419862747, + -0.0003530608082655817, + 0.0042770798318088055, + -0.018453311175107956, + 0.004351054318249226, + -0.03163424879312515, + 0.013423035852611065, + -0.005208487622439861, + 0.026819171383976936, + 0.008426385000348091, + -0.01601887308061123, + -0.005195037927478552, + -0.01903165876865387, + 0.008460009470582008, + 0.008150661364197731, + -0.0014114025980234146, + -0.002869880059733987, + 0.012481540441513062, + -0.005292549729347229, + -0.006993966642767191, + -0.016449270769953728, + -0.00034780692658387125, + -0.0028076739981770515, + 0.004431753885000944, + -0.003380977548658848, + -0.017700115218758583, + 0.001086922944523394, + -0.020887751132249832, + 0.00037092401180416346, + -0.010820473544299603, + 0.02459993213415146, + -0.02047080174088478, + 0.0059381467290222645, + -0.026025626808404922, + 0.018614711239933968, + 0.006106270942837, + -0.01899131014943123, + -0.016812419518828392, + 0.004899139050394297, + -0.005144600290805101, + 0.001450071227736771, + -0.047854870557785034, + 0.01686622016131878, + 0.0007014982402324677, + -0.01242774073034525, + 5.8160465414403006e-5, + 0.0197445061057806, + -0.012730364687740803, + 0.005746485199779272, + 0.0012634533923119307, + -0.006200420204550028, + 0.00911233201622963, + 0.004505728371441364, + -0.018507111817598343, + 0.0027185683138668537, + -0.017444567754864693, + 0.0026294623967260122, + -0.018803009763360023, + -0.002165439771488309, + -0.002064565196633339, + -0.0028295302763581276, + -0.0013105281395837665, + -0.01441833097487688, + -0.005867534317076206, + 0.00020773845608346164, + 0.03292544186115265, + 0.04626777768135071, + 0.033275142312049866, + 0.0033372652251273394, + 0.01757906563580036, + 0.027249570935964584, + -0.024317484349012375, + 0.01297918800264597, + 0.0021267710253596306, + -0.026832621544599533, + -0.008096861653029919, + -0.029024962335824966, + -0.005531286355108023, + 0.027895167469978333, + -0.0038634941447526217, + -0.014700779691338539, + 0.0005741441273130476, + -0.01775391586124897, + 0.00025029489188455045, + -0.002257907995954156, + 0.002446206985041499, + 0.004303979687392712, + 0.0003398210392333567, + -0.017942214384675026, + 0.0019485594239085913, + 0.007155365776270628, + 0.0016568639548495412, + -0.01979830488562584, + -0.010248851031064987, + -0.023268388584256172, + 0.023456688970327377, + 0.0178346149623394, + -0.018453311175107956, + 0.0019653718918561935, + -0.008318785578012466, + -0.010188326239585876, + 0.021883046254515648, + 0.009502380155026913, + 0.0046873027458786964, + -0.006358457263559103, + -0.012609315104782581, + 0.010995322838425636, + -0.012320141308009624, + -0.0024663819931447506, + -0.017700115218758583, + -0.008823158219456673, + -0.0103026507422328, + -0.0028211241587996483, + -0.02586422674357891, + 0.010080726817250252, + -0.0034381397999823093, + 0.0014652024256065488, + -0.01433763187378645, + -0.02391398511826992, + -0.013510460965335369, + -0.01605922356247902, + 0.0074848891235888, + 0.030020257458090782, + -0.004636865574866533, + -0.005127788055688143, + -0.021546797826886177, + -0.00885678268969059, + 0.008386035449802876, + -0.0053732492960989475, + 0.007276415359228849, + -0.016072673723101616, + 0.021600596606731415, + -0.008957657031714916, + 0.007774062920361757, + 0.0017602603184059262, + -0.005928059108555317, + 0.005988583900034428, + -0.027814466506242752, + -0.00500001385807991, + -0.006129808258265257, + -0.030208555981516838, + 0.006230682600289583, + -0.031580448150634766, + 0.0037861568853259087, + -0.011788868345320225, + 0.02650982327759266, + 0.005047088488936424, + -0.01153331995010376, + 0.013510460965335369, + 0.0026866246480494738, + -0.012609315104782581, + -0.011183621361851692, + 0.004129130393266678, + -0.000821707013528794, + 0.0028345740865916014, + 0.007982537150382996, + -0.013517185114324093, + -0.0014618398854508996, + 0.0037222697865217924, + -0.0026008812710642815, + 0.013799633830785751, + -0.02324148826301098, + 3.2679141440894455e-5, + 0.0018998034065589309, + -0.0020074029453098774, + 0.006287844851613045, + -0.014902529306709766, + 0.010880998335778713, + 0.012044417671859264, + 0.02480168081820011, + 0.0012769033201038837, + -0.03698732331395149, + -0.010867548175156116, + 0.008500359021127224, + 0.008621408604085445, + 0.014660430140793324, + -0.013523910194635391, + -0.0002984204620588571, + 0.009340980090200901, + 0.0005585926701314747, + -0.0016930106794461608, + 0.014808379113674164, + -0.0031506475061178207, + 0.002906867302954197, + 0.0011566944885998964, + -0.004367866553366184, + -0.006062558386474848, + -0.008991282433271408, + 0.024828581139445305, + 0.008338959887623787, + 0.004630140494555235, + -0.00900473166257143, + 0.025326229631900787, + 0.013692034408450127, + -0.017189018428325653, + 0.0012558877933770418, + 0.018493661656975746, + 0.011371920816600323, + -0.019865555688738823, + 0.03193014860153198, + -0.0071419160813093185, + -0.002308345166966319, + 0.008688658475875854, + -0.007646288722753525, + -0.005716222804039717, + -0.010867548175156116, + -0.004340966697782278, + 0.012138566933572292, + 0.029159460216760635, + 0.020874300971627235, + 0.0028429802041500807, + 0.000519503781106323, + -0.027922067791223526, + 0.0023318827152252197, + 0.004061880521476269, + 0.006230682600289583, + 0.0009860483696684241, + -0.0259045772254467, + -0.016368571668863297, + 0.0031472849659621716, + -0.00022003253980074078, + 0.01208476722240448, + 0.01613992266356945, + 0.039273813366889954, + -0.003411239944398403, + 0.0015013490337878466, + -0.0006918310537002981, + 0.007982537150382996, + 0.012434465810656548, + 0.012468090280890465, + -0.0013971120351925492, + 0.016247522085905075, + 0.001977140549570322, + 0.022784192115068436, + -0.011183621361851692, + -0.00264459359459579, + -0.018708860501646996, + 0.004831889644265175, + -0.00713519100099802, + -0.005837272386997938, + -0.005131150595843792, + -0.005995308980345726, + -0.007706813048571348, + -0.018587810918688774, + -0.034889135509729385, + -0.012098217383027077, + 0.023967785760760307, + 0.02238069288432598, + 0.020659102126955986, + -0.012555515393614769, + 0.0057363975793123245, + -0.014230032451450825, + -0.004845339339226484, + 0.0022495018783956766, + 0.015978524461388588, + -0.017767366021871567, + 0.00583054730668664, + 0.006479506380856037, + -0.009098881855607033, + -0.01085409801453352, + -0.012710189446806908, + 0.016287872567772865, + 0.008486909791827202, + 0.007558864075690508, + -0.023012841120362282, + -0.004690665286034346, + -0.0020258966833353043, + -0.012178916484117508, + 0.010020202025771141, + -0.02459993213415146 + ], + "9937a4e2-dddb-4aba-9d47-b1c6da63e335": [ + -0.020007111132144928, + -0.0020722663030028343, + -0.011292966082692146, + -0.008912515826523304, + -0.05202982574701309, + -0.01761249266564846, + 0.012086449190974236, + 0.05798094719648361, + 0.026935920119285583, + 0.05373014509677887, + -0.004109109286218882, + 0.010570329613983631, + -0.016308913007378578, + -0.01771167851984501, + -0.01504784170538187, + 0.0019624538253992796, + -0.045937009155750275, + 0.03230610117316246, + -0.012398174032568932, + 0.0036025552544742823, + 0.06886300444602966, + -0.05001777783036232, + 0.014835301786661148, + 0.032022714614868164, + -0.018958579748868942, + -0.025915727019309998, + 0.03950412571430206, + -0.009727253578603268, + 0.008310318924486637, + -0.015005333349108696, + -0.014070156961679459, + 0.02507973648607731, + 0.031257569789886475, + 0.004923846572637558, + 0.008586621843278408, + -0.02343609184026718, + -0.0295005701482296, + 0.028267838060855865, + -0.007020908873528242, + 0.002681548008695245, + -0.04571029916405678, + 0.011633030138909817, + 0.029188845306634903, + 0.002754165790975094, + -0.012221057899296284, + 0.03548003360629082, + 0.019638707861304283, + -0.0052568260580301285, + 0.005412688944488764, + 0.01437479816377163, + 0.0003772587515413761, + 0.017499137669801712, + -0.004378326702862978, + 0.007261788006871939, + 0.014410221017897129, + 0.009450951591134071, + 0.011930585838854313, + 0.08620627969503403, + 0.02648250013589859, + -0.019383659586310387, + -0.01173929963260889, + -0.0051824371330440044, + -0.004133905749768019, + -0.010761615820229053, + 0.0019199458183720708, + -0.02427208237349987, + 0.008409504778683186, + 0.004495223984122276, + -0.013319181278347969, + 0.020191311836242676, + -0.0022387560456991196, + 0.009415527805685997, + -0.04055265709757805, + 0.005611059721559286, + -0.015685461461544037, + -0.003907196223735809, + 0.062061719596385956, + -0.035706743597984314, + -0.002881689928472042, + 0.00036463915603235364, + -0.03837057948112488, + 0.016379758715629578, + 0.01613888144493103, + 0.00048707114183343947, + 0.05197314918041229, + 0.004449173342436552, + -0.044576749205589294, + -0.042933106422424316, + -0.04542691260576248, + -0.006826080847531557, + 0.020318835973739624, + 0.029018813744187355, + 0.00015508788055740297, + 0.00961389858275652, + -0.022316714748740196, + -0.027389338240027428, + 0.01921362802386284, + 0.005419773515313864, + -0.03471488878130913, + -0.008614960126578808, + -0.015742139890789986, + 0.011625945568084717, + -0.044151671230793, + 0.0045944093726575375, + 0.0183492973446846, + -0.029868973419070244, + 0.004385411273688078, + -0.0034909716341644526, + -0.043103139847517014, + 0.02432876080274582, + 0.003946161828935146, + -0.017102396115660667, + 0.008650382980704308, + 0.007063417229801416, + 0.02870708703994751, + -0.06126823648810387, + -0.02047470025718212, + -0.02584487944841385, + -0.01326958928257227, + -0.05968127027153969, + 0.07764799892902374, + 0.020403852686285973, + 0.013113725930452347, + -0.032051052898168564, + 0.013510467484593391, + 0.0065426938235759735, + -0.009302172809839249, + 0.005476450547575951, + 0.005618144292384386, + 0.027601879090070724, + 0.0009661720250733197, + -0.018774379044771194, + -0.027502693235874176, + -0.003537022043019533, + -0.01922779716551304, + 0.033382970839738846, + 0.007623106241226196, + 0.05656401440501213, + -0.02857956290245056, + 0.05305001884698868, + -0.013567144982516766, + 0.001043217838741839, + 0.0058838194236159325, + -0.01983707956969738, + 0.021764108911156654, + 0.004891965538263321, + -0.03905070573091507, + 0.03536667674779892, + -0.002716971328482032, + 0.009890200570225716, + -0.044435057789087296, + 0.010974155738949776, + 0.03083248808979988, + 0.005834226496517658, + -0.0004091397568117827, + -0.0038646881002932787, + 0.014962824992835522, + 0.018958579748868942, + -0.024725502356886864, + -0.00802693236619234, + -0.02794194221496582, + -0.019312813878059387, + 0.032617826014757156, + 0.00014733901480212808, + -0.003942619543522596, + 0.025575662031769753, + 0.03893735259771347, + 0.024711333215236664, + -0.05781091749668121, + 0.024087881669402122, + 0.03882399946451187, + -0.03154095634818077, + -0.00045474732178263366, + -0.005572093650698662, + -0.01248319074511528, + -0.02342192269861698, + 0.031370922923088074, + 0.01506201084703207, + 0.00850868970155716, + -0.03511162847280502, + 0.014551914297044277, + -0.019383659586310387, + -0.026638362556695938, + 0.0036344362888485193, + -0.007063417229801416, + -0.004275599028915167, + 0.021792449057102203, + -0.017867540940642357, + -0.044378381222486496, + 0.021055642515420914, + 0.0026514381170272827, + -0.009082548320293427, + 0.04052431881427765, + 0.056195612996816635, + -0.0019819368608295918, + -0.019553693011403084, + -0.008097779005765915, + -0.009273834526538849, + 0.040836043655872345, + 0.010931647382676601, + -0.028990473598241806, + -0.04698554053902626, + -0.054863691329956055, + 0.017881710082292557, + -0.04752397537231445, + 0.0045837820507586, + 0.011944755911827087, + -0.02430042251944542, + -0.005575636401772499, + -0.016563961282372475, + 0.02123984321951866, + -0.030294053256511688, + 0.02870708703994751, + -0.005472908262163401, + -0.009805184789001942, + -0.005781091749668121, + -0.018958579748868942, + 0.0037017406430095434, + 0.00848743598908186, + 0.02727598324418068, + -0.003953246399760246, + 0.005242656450718641, + 0.03916406258940697, + -0.02933053858578205, + -0.054041869938373566, + -0.011909332126379013, + -0.033439647406339645, + 0.01836346834897995, + -0.014275612309575081, + -0.02872125618159771, + 0.03389306738972664, + 0.009018786251544952, + 0.022444238886237144, + -0.02720513753592968, + -0.015926340594887733, + 0.009153394959867, + -0.0013806252973154187, + 0.0046227481216192245, + 0.024725502356886864, + -0.021594077348709106, + 0.04270639643073082, + 0.008437843061983585, + 0.01107334066182375, + 0.010931647382676601, + 0.017499137669801712, + 0.024867195636034012, + -0.027375169098377228, + 0.05956791341304779, + 0.03224942460656166, + -0.007113009691238403, + -0.004895507823675871, + 0.03899402916431427, + 0.004778610542416573, + -0.032022714614868164, + 0.006365577224642038, + 0.02420123666524887, + 0.03531000018119812, + -0.0072830417193472385, + -0.03607514500617981, + -0.014962824992835522, + -0.031144214794039726, + -0.012051025405526161, + -0.01608220301568508, + -0.011951840482652187, + 0.046078700572252274, + -0.03142759948968887, + 0.01504784170538187, + -0.03369469568133354, + 0.008260726928710938, + 0.012043940834701061, + -0.04262138158082962, + -0.01249027531594038, + -0.0047502717934548855, + 0.012972032651305199, + 0.0002736454189289361, + -0.010584498755633831, + 0.015359566546976566, + -0.003818637691438198, + -0.023322736844420433, + -0.0005300219636410475, + -0.01756998524069786, + 0.009302172809839249, + 0.024796348065137863, + 0.03950412571430206, + -0.003343964694067836, + -0.03162597119808197, + 0.02128235250711441, + 0.007970254868268967, + -0.03241945430636406, + -0.036443546414375305, + 0.009323427453637123, + -0.012872847728431225, + 0.0438399463891983, + -0.004966354463249445, + 0.021126490086317062, + -1.1042124242521822e-5, + -0.016478944569826126, + -0.011540928855538368, + 0.004527105018496513, + 0.013517552055418491, + -0.05004611611366272, + 0.00045607570791617036, + 0.02191997319459915, + -0.0058767348527908325, + -0.022670947015285492, + 0.018122589215636253, + 0.026935920119285583, + -0.034289807081222534, + -0.03304290771484375, + 0.012964948080480099, + 0.0514630526304245, + 0.006748149171471596, + -0.01628057472407818, + -0.026369145140051842, + -0.01438896730542183, + 0.0077860536985099316, + 0.019454507157206535, + 0.01983707956969738, + 0.005387892480939627, + -0.01912861131131649, + -0.012072280049324036, + -0.009755591861903667, + -0.051009632647037506, + -0.006613540463149548, + 0.010060233063995838, + -0.02643999271094799, + 0.0065781171433627605, + 0.030634118244051933, + -0.01359548419713974, + -0.02709178254008293, + 0.004994693212211132, + -0.037917159497737885, + -0.021735770627856255, + -0.017357444390654564, + 0.026865072548389435, + -0.02133902907371521, + -0.025462308898568153, + -0.025419799610972404, + -0.020304666832089424, + 0.012313158251345158, + -0.014240188524127007, + 0.023336905986070633, + -0.04247968643903732, + -0.006741064600646496, + 0.0221041738986969, + 0.012291904538869858, + -0.0011052086483687162, + 0.017938386648893356, + 0.004909676965326071, + 0.0024814060889184475, + 0.0007142234244383872, + -0.012794915586709976, + 0.016748161986470222, + 0.0014461585087701678, + 0.004828203469514847, + 0.030662456527352333, + -0.04318815469741821, + -0.003150907577946782, + -0.0046333749778568745, + 0.0006513469270430505, + -0.018037572503089905, + 0.005763379856944084, + -0.02058805339038372, + -0.010003555566072464, + 0.011895162984728813, + 0.0368686281144619, + 0.044491734355688095, + 0.010974155738949776, + 0.03445984050631523, + 0.008763737976551056, + -0.023096028715372086, + 0.037152014672756195, + 0.015742139890789986, + 0.0008581308065913618, + -0.024782178923487663, + -0.0059936316683888435, + 0.052539922297000885, + 0.029557248577475548, + -0.02866457961499691, + 0.025476478040218353, + 0.009408443234860897, + 0.02139570750296116, + -0.007956085726618767, + -0.013567144982516766, + 0.05350343510508537, + 0.010492397472262383, + 0.007304295897483826, + -0.011122933588922024, + -0.021013135090470314, + -0.017059888690710068, + -0.02274179458618164, + -0.025518985465168953, + -0.020758086815476418, + 0.001687037292867899, + -0.040836043655872345, + 0.01618138886988163, + 0.008331573568284512, + 0.017867540940642357, + 0.021849125623703003, + -0.006599371321499348, + -0.029613925144076347, + -0.011144187301397324, + -0.001722460612654686, + 0.0065922862850129604, + 0.0147361159324646, + -0.0147361159324646, + -0.00513284420594573, + -0.009500543586909771, + -0.018887734040617943, + 0.015019502490758896, + 0.01028694212436676, + -0.006436423864215612, + 0.00994687806814909, + -0.03179600462317467, + 0.05809430405497551, + -0.01914278045296669, + 0.02046053111553192, + 0.03074747323989868, + -0.07849815487861633, + -0.0091604795306921, + 0.022415898740291595, + 0.055628836154937744, + -0.000876285252161324, + 0.0058448538184165955, + -0.049649376422166824, + 0.007878154516220093, + 0.032079391181468964, + 0.002743538934737444, + 0.0036627750378102064, + -0.004413750022649765, + -0.023011012002825737, + 0.002631955314427614, + -0.012114787474274635, + -0.017895879223942757, + 0.000727949955035001, + -0.007389312144368887, + 0.025986574590206146, + -0.0010352475801482797, + -0.010442805476486683, + -0.015812985599040985, + 0.04191291332244873, + 0.02503722719848156, + 0.018023403361439705, + -0.02054554596543312, + -0.015430414117872715, + -0.045341894030570984, + -0.012355666607618332, + 0.010959986597299576, + -0.0009644008823670447, + 0.02417289838194847, + 0.005639398004859686, + 0.04463342949748039, + -0.051831454038619995, + 0.010541990399360657, + -0.013071218505501747, + 0.010166503489017487, + -0.021863294765353203, + 0.005171809811145067, + 0.02347859926521778, + 0.013737177476286888, + -0.025221429765224457, + -0.0059511237777769566, + 0.044548410922288895, + -0.037010323256254196, + 0.017074057832360268, + -0.029783956706523895, + -0.04171454533934593, + -0.0018703531241044402, + 0.0047077639028429985, + -0.004860084503889084, + -0.020361345261335373, + 0.03536667674779892, + -0.018193434923887253, + 0.022330883890390396, + -0.03080414980649948, + -0.0073538888245821, + 0.017796693369746208, + -0.009330512024462223, + 0.029812296852469444, + -0.007159060332924128, + -0.026340806856751442, + -0.023761987686157227, + -0.04579531401395798, + 0.026695040985941887, + 0.01680484041571617, + -0.003333337837830186, + -0.030549101531505585, + 0.014693607576191425, + 0.008898346684873104, + -0.026298299431800842, + 0.0256606787443161, + -0.012029771693050861, + -0.015161195769906044, + -0.019369490444660187, + -0.020120466127991676, + -0.03462987393140793, + 0.0030712049920111895, + -0.015727970749139786, + -0.0020598680712282658, + -0.04548358917236328, + 0.05007445439696312, + -0.014013479463756084, + 0.018930241465568542, + 0.032079391181468964, + 0.005653567612171173, + 0.0031385093461722136, + -0.0022954335436224937, + -0.0017481426475569606, + 0.014034733176231384, + -0.014693607576191425, + 0.016677316278219223, + 0.0012389319017529488, + -0.017059888690710068, + 0.026029082015156746, + -0.0039319926872849464, + 0.02431459166109562, + -0.017867540940642357, + 0.005759837571531534, + 0.011264626868069172, + -0.009075463749468327, + -0.0032128982711583376, + 0.007460158783942461, + -0.019978772848844528, + 0.000225823896471411, + 0.012794915586709976, + -0.03154095634818077, + -0.02707761339843273, + 0.039305754005908966, + 0.000807209697086364, + -0.016308913007378578, + -0.03077581152319908, + -0.009188818745315075, + -0.010931647382676601, + -0.0018597261514514685, + 0.025235598906874657, + -0.026709210127592087, + 0.01023026555776596, + -0.021168997511267662, + -0.002398161217570305, + 0.023209381848573685, + -0.009805184789001942, + 0.053956855088472366, + -0.003609639825299382, + -0.02051720768213272, + 0.01138506643474102, + 0.03601846843957901, + -0.002812614431604743, + -0.0003090687678195536, + 0.0009590873378328979, + 0.02282680943608284, + -0.037095338106155396, + -0.0024247285909950733, + -0.0047502717934548855, + 5.130851786816493e-5, + 0.042989782989025116, + -0.041657865047454834, + 0.02503722719848156, + -0.016733992844820023, + -0.03375137224793434, + -0.0032695757690817118, + 0.02869291789829731, + -0.03145594149827957, + -0.0003188101982232183, + -0.001631245482712984, + -0.04131780192255974, + -0.016025526449084282, + -0.031994376331567764, + 0.024668823927640915, + 0.009783931076526642, + 0.009826438501477242, + 0.015827154740691185, + 0.02434292994439602, + 0.03445984050631523, + -0.0026921750977635384, + -0.0053382995538413525, + 0.03250447288155556, + -0.0021661382634192705, + 0.015246212482452393, + -0.0091321412473917, + -0.0019642249681055546, + 0.009734338149428368, + -0.04554026573896408, + 0.01428978145122528, + -0.029188845306634903, + 0.0028976304456591606, + -0.00017113907961174846, + -0.06466887891292572, + -0.038597289472818375, + -0.014155172742903233, + 0.00812611822038889, + -0.011108764447271824, + 0.020828932523727417, + 0.03307124599814415, + -0.007899408228695393, + -0.006702098995447159, + 0.013425451703369617, + 0.0026514381170272827, + 0.02132485993206501, + 0.0022688659373670816, + 0.003946161828935146, + -0.024102050811052322, + 0.018930241465568542, + 0.04715557023882866, + -0.008218218572437763, + -0.0059936316683888435, + 0.018193434923887253, + -0.02789943479001522, + 0.003034010296687484, + -0.014353543519973755, + -0.020786425098776817, + 0.017796693369746208, + 0.005384350195527077, + 0.02140987664461136, + -3.265590521550621e-6, + 0.03485658019781113, + 0.01027277298271656, + 0.036273516714572906, + 0.015954678878188133, + 0.01540207490324974, + -0.027786079794168472, + 0.026029082015156746, + -0.02438543736934662, + 0.054636985063552856, + -0.03582009673118591, + 0.033496323972940445, + -0.008246556855738163, + -0.018179265782237053, + 0.002984417602419853, + -0.012943694368004799, + 0.005798803176730871, + 0.008544113487005234, + 0.009535967372357845, + 0.022330883890390396, + -0.01778252422809601, + 0.03026571497321129, + 0.01775418594479561, + 0.007566428743302822, + 0.03326961398124695, + -0.019312813878059387, + 0.013092472217977047, + -0.01983707956969738, + -0.0015630555571988225, + -0.00045186918578110635, + 0.028537055477499962, + -0.010201926343142986, + -0.019511183723807335, + -0.03434648737311363, + 0.0294155552983284, + 0.03397808223962784, + -0.005079708993434906, + -0.04828912019729614, + -0.006277018692344427, + 0.040666013956069946, + -0.001976623199880123, + -0.012058109976351261, + -0.04777902364730835, + -0.02191997319459915, + 0.019001087173819542, + 0.02505139634013176, + -0.018774379044771194, + 0.020333006978034973, + -0.000623451080173254, + 0.0012849821941927075, + 0.002885232213884592, + 0.024739671498537064, + 0.013354605063796043, + 0.013326266780495644, + -0.004984066355973482, + 0.01754164509475231, + 0.026114096865057945, + -0.00714843301102519, + 0.00021453270164784044, + 0.016464775428175926, + 0.01249735988676548, + -0.007842730730772018, + -0.011590521782636642, + 0.003372303443029523, + -0.03326961398124695, + 0.0047006793320178986, + -0.01392137911170721, + -0.021168997511267662, + -0.0035511914175003767, + -0.013475044630467892, + 0.016733992844820023, + 0.02427208237349987, + -0.013439620845019817, + 0.0008063241257332265, + 0.03315626084804535, + -0.04579531401395798, + -0.008204049430787563, + 0.019511183723807335, + 0.01181014720350504, + -0.0052993339486420155, + 0.0017242318717762828, + -0.006486016325652599, + 0.031229229643940926, + -0.02051720768213272, + -0.014523576013743877, + 0.01611054129898548, + -0.04315981641411781, + -0.031115874648094177, + -0.01216438040137291, + -0.014991164207458496, + 0.00029312827973626554, + -0.013142065145075321, + 0.026935920119285583, + -0.017513306811451912, + 0.00884166918694973, + 0.01681900955736637, + -0.0034573194570839405, + 0.026992596685886383, + -0.00011091938358731568, + -0.009011701680719852, + -0.005033658817410469, + 0.011321304365992546, + -0.0005862565594725311, + -0.01439605187624693, + -0.0016808381769806147, + 0.01428269688040018, + 0.01982291042804718, + -0.01679067127406597, + 0.051094647496938705, + 0.0072051105089485645, + -0.05520375818014145, + -0.04721224680542946, + 0.02866457961499691, + 0.019553693011403084, + 0.006337238475680351, + -0.018661024048924446, + -0.009890200570225716, + 0.04993276298046112, + -0.006939435377717018, + -0.04347154125571251, + 0.01836346834897995, + -0.018235944211483, + -0.009273834526538849, + -0.023025181144475937, + -0.008324488997459412, + 0.041657865047454834, + -0.024541301652789116, + -0.0009829981718212366, + -0.021735770627856255, + 0.03258948773145676, + 0.007764799520373344, + 0.017810862511396408, + 0.001543572754599154, + -0.014318120665848255, + 0.004753814544528723, + -0.0021395706571638584, + 0.006475389469414949, + 0.027729403227567673, + -0.026000743731856346, + 0.04865752160549164, + 0.03216440603137016, + -0.009025870822370052, + -0.015770478174090385, + -0.00041223931475542486, + 0.004874253645539284, + 0.00884166918694973, + 0.02795611135661602, + -0.022245867177844048, + 0.011746385134756565, + 0.009387189522385597, + -0.03006734512746334, + 0.014318120665848255, + 0.01693236455321312, + -0.019539523869752884, + 0.037010323256254196, + 0.03837057948112488, + -0.02573152631521225, + 0.014048903249204159, + 0.0004038262413814664, + 0.03386472910642624, + 0.014636930078268051, + 0.01507617998868227, + -0.023294398561120033, + 0.04562528058886528, + 0.03358134254813194, + -0.04701387882232666, + 0.022175021469593048, + -0.022458408027887344, + -0.039957545697689056, + 0.00567482179030776, + -0.019539523869752884, + -0.009429696947336197, + -0.01698904111981392, + 0.031002521514892578, + 0.03808719292283058, + -0.025476478040218353, + -0.014792793430387974, + 0.016464775428175926, + -0.0028994015883654356, + -0.017244089394807816, + -0.009238410741090775, + 0.0004782153118867427, + 0.0047431872226297855, + 0.03091750480234623, + -0.008884177543222904, + -0.0006039682193659246, + 0.015175365842878819, + 0.008409504778683186, + -0.03885233774781227, + 0.00993270892649889, + 0.043046463280916214, + -0.014877809211611748, + -0.005437484942376614, + 0.010768700391054153, + 0.00401700846850872, + 0.007545174565166235, + 0.012263565324246883, + -0.04109109193086624, + 0.013524637557566166, + 0.014190596528351307, + 0.015968848019838333, + 0.0004113537142984569, + -0.022543422877788544, + -0.004477512091398239, + -0.016606468707323074, + 0.0022848064545542, + -0.01693236455321312, + 0.011257542297244072, + 0.02121150493621826, + 0.032646164298057556, + 0.020800594240427017, + -0.0006292073521763086, + -0.030464086681604385, + -0.011923501268029213, + -0.0014142774743959308, + 0.014594422653317451, + -0.0002791803271975368, + 0.007502666674554348, + -0.0053701805882155895, + -0.01135672815144062, + 0.01684734784066677, + 0.02794194221496582, + 0.050301164388656616, + -0.02791360393166542, + -0.012964948080480099, + -0.03443150222301483, + -0.020361345261335373, + -0.011562183499336243, + -0.03947578743100166, + -0.012766577303409576, + -0.004144532606005669, + -0.0031385093461722136, + -0.0026089302264153957, + 0.008345742709934711, + -0.003533479757606983, + 0.03808719292283058, + 0.00803401693701744, + 0.011158357374370098, + -0.004775068257004023, + -0.007956085726618767, + 0.004406665451824665, + -0.03363801911473274, + 0.015812985599040985, + 0.008529944345355034, + 0.010414466261863708, + -0.008898346684873104, + 0.017159072682261467, + 0.008310318924486637, + -0.0006354064680635929, + -0.0018951494712382555, + -0.03919240087270737, + -0.005270995199680328, + -0.0018986918730661273, + -0.023195212706923485, + 0.02727598324418068, + -0.0053312149830162525, + 0.00031438228324986994, + -0.01107334066182375, + -0.00402763532474637, + -0.0012398174731060863, + 0.010031893849372864, + -0.04831745848059654, + -0.013446705415844917, + -0.04633374884724617, + -0.0038717726711183786, + -0.014906148426234722, + 0.012107702903449535, + 0.005720871966332197, + 0.014126834459602833, + 0.0072511606849730015, + -0.004757356829941273, + -0.04290476813912392, + 0.01025860384106636, + -0.007063417229801416, + -0.0052603683434426785, + 0.016408098861575127, + -0.0002031308104051277, + 0.02420123666524887, + -0.0005818286444991827, + -0.0021661382634192705, + -0.037095338106155396, + -0.0072015682235360146, + -0.03618850186467171, + -0.028409531340003014, + -0.007410565856844187, + -0.003783214371651411, + -0.012532783672213554, + -0.003496285295113921, + -0.014367712661623955, + -0.04270639643073082, + 0.013715922832489014, + -0.0365285649895668, + -0.06438548862934113, + 0.005444569978863001, + 0.00535601144656539, + 0.00028980732895433903, + 0.03287287428975105, + 0.0047502717934548855, + 0.005568551365286112, + -0.01537373661994934, + -0.02339358441531658, + 0.04120444878935814, + 0.021778279915452003, + 0.006946519948542118, + -0.01363090705126524, + -0.001838472206145525, + -0.0182501133531332, + -0.013850532472133636, + 0.0031438227742910385, + 0.008423673920333385, + 0.01249735988676548, + -0.008770822547376156, + -0.016464775428175926, + -0.00039474901859648526, + 0.014877809211611748, + 0.0026709209196269512, + -0.003432523226365447, + 0.0020333006978034973, + 0.016620637848973274, + 0.01173221506178379, + -0.03511162847280502, + 0.030379069969058037, + -0.03828556090593338, + -0.0047821528278291225, + -0.00850160513073206, + -0.038738980889320374, + -0.03250447288155556, + -0.02286931872367859, + -0.005979462526738644, + -8.828164573060349e-5, + -0.03451651707291603, + 0.030577439814805984, + -0.02427208237349987, + -0.031059198081493378, + 0.024725502356886864, + 0.020899780094623566, + -0.0039638737216591835, + 0.03009568341076374, + 0.03808719292283058, + 0.007006739731878042, + 0.002752394648268819, + -0.0026602940633893013, + 0.033297955989837646, + 0.0034874293487519026, + 0.005285164806991816, + 0.017966726794838905, + -0.024130389094352722, + -0.010315281338989735, + -0.009798100218176842, + -0.011186695657670498, + -0.014403136447072029, + -0.06172165647149086, + 0.015515429899096489, + -0.01995043456554413, + 0.013163318857550621, + 0.007601852063089609, + 8.086487650871277e-5, + 0.010775784961879253, + -0.013758431188762188, + 0.009096717461943626, + -0.00993979349732399, + 0.007977339439094067, + 0.009380104951560497, + -0.0006380631821230054, + -0.006153036840260029, + 0.0005030116299167275, + 0.0073609733954072, + 0.028395362198352814, + 0.03474322706460953, + 0.0007173229241743684, + -0.0034927427768707275, + -0.005536670330911875, + 0.013552975840866566, + -0.0011344329686835408, + 3.583847137633711e-5, + 0.008296149782836437, + 0.0001171184703707695, + 0.04035428538918495, + -0.033439647406339645, + -0.002532769925892353, + -0.023053519427776337, + 0.0046758828684687614, + -0.022231698036193848, + -0.02291182614862919, + -0.0077577149495482445, + 0.01612471230328083, + -0.003988669719547033, + -0.014764454215765, + -0.01837763749063015, + -0.011597606353461742, + 0.03185268118977547, + -0.009819353930652142, + 0.008161541074514389, + -0.015501260757446289, + -0.010662429966032505, + 0.028196990489959717, + 0.014070156961679459, + -0.004279141314327717, + -0.010534905828535557, + 0.006117613520473242, + -0.021679094061255455, + 0.03298622742295265, + 0.02495221234858036, + -0.026114096865057945, + -0.032646164298057556, + 0.0026691497769206762, + 0.02343609184026718, + -0.018561838194727898, + -0.039334092289209366, + 0.017314936965703964, + 0.011909332126379013, + -0.008593706414103508, + -0.0059582083486020565, + 0.008452012203633785, + 0.01626640558242798, + 0.0038044683169573545, + 0.0007478756015188992, + -0.02867874875664711, + 0.014806962572038174, + 0.02133902907371521, + -0.025419799610972404, + 0.021579908207058907, + -0.023096028715372086, + 0.004845914896577597, + -0.062061719596385956, + -0.010024809278547764, + 0.005901530850678682, + 0.022302545607089996, + -0.0012601858470588923, + -0.018136758357286453, + -0.0032341524492949247, + 0.0007505323737859726, + -0.013715922832489014, + -0.012887016870081425, + 0.008912515826523304, + -0.013071218505501747, + 0.019525352865457535, + 0.03477156534790993, + -0.001700321095995605, + -0.00022604528930969536, + -0.0018296162597835064, + 0.0035529625602066517, + 0.0017446002457290888, + -0.015118688344955444, + 0.001233618357218802, + 0.0006836707470938563, + 0.017229920253157616, + -0.011951840482652187, + 0.006085732486099005, + 0.04647544398903847, + -0.020134635269641876, + 0.0024123305920511484, + -0.023336905986070633, + 0.00812611822038889, + 0.0294722318649292, + -0.00402055075392127, + -0.004753814544528723, + 0.013496298342943192, + 0.006709183566272259, + -0.020375514402985573, + 0.03142759948968887, + 0.01990792527794838, + 0.014651100151240826, + 0.007102382835000753, + 0.011207949370145798, + 0.021126490086317062, + -0.012660306878387928, + -0.005472908262163401, + -0.010166503489017487, + -0.0220758356153965, + -8.972072100732476e-5, + -0.01285867765545845, + -0.015657123178243637, + 0.022996842861175537, + 0.00025526955141685903, + 0.005069082137197256, + 0.03363801911473274, + -0.022472577169537544, + 0.015529599040746689, + -0.007531005423516035, + -0.017527475953102112, + 0.01606803387403488, + 0.007481412496417761, + -0.02791360393166542, + 0.05800928547978401, + 0.0014293324202299118, + 0.007297211326658726, + 0.01359548419713974, + -0.005745668429881334, + -0.011923501268029213, + 0.018802717328071594, + 0.008891262114048004, + 0.005830684211105108, + 0.018689362332224846, + -0.03434648737311363, + 0.016337251290678978, + 0.023166874423623085, + 0.031909357756376266, + -0.0037336216773837805, + -0.003476802259683609, + 0.02272762544453144, + 0.008643298409879208, + -0.03601846843957901, + -0.02057388424873352, + 0.0036202669143676758, + -0.010017724707722664, + 0.009698914363980293, + -0.016620637848973274, + 0.00017490281607024372, + -0.030379069969058037, + 0.0003126111114397645, + -0.009776846505701542, + -0.02498055063188076, + 0.014070156961679459, + 0.014580253511667252, + -0.009798100218176842, + 0.010867885313928127, + 0.01108042523264885, + -0.03176766633987427, + 0.030379069969058037, + 0.005774007178843021, + -0.010074402205646038, + -0.021140659227967262, + 0.000729721097741276, + -0.014502321369946003, + -0.013531722128391266, + -0.018873563036322594, + -0.007297211326658726, + -0.004913219250738621, + 0.014622760936617851, + 0.015161195769906044, + 0.004109109286218882, + 0.015671292319893837, + -0.010400297120213509, + -0.00957847572863102, + 0.004679425153881311, + -0.0046333749778568745, + -0.008962108753621578, + 0.004456257913261652, + -0.00879916176199913, + -0.036415208131074905, + -0.026879241690039635, + -0.020219651982188225, + -0.01768333837389946, + 0.006085732486099005, + 0.020800594240427017, + -0.012291904538869858, + -0.03992920741438866, + -0.0008957681129686534, + 0.0045944093726575375, + 0.00025416258722543716, + -0.002228128956630826, + -0.0004804292693734169, + -0.004679425153881311, + -0.0018057056004181504, + 0.0038646881002932787, + -0.006450593005865812, + 0.021749939769506454, + 0.011951840482652187, + 0.000938718905672431, + 0.010166503489017487, + -0.03548003360629082, + -0.0007430049008689821, + -0.030520763248205185, + -0.027616048231720924, + -0.0012114787241443992, + 0.019298644736409187, + 0.009103802032768726, + 0.0065852017141878605, + -0.012384004890918732, + 0.0033262530341744423, + -0.010931647382676601, + 0.024031205102801323, + -0.017045719549059868, + -0.0003796941018663347, + 0.01280908565968275, + 0.0026585229206830263, + 0.004948642570525408, + -0.0029330537654459476, + -0.02714845910668373, + 0.0012584147043526173, + -0.015812985599040985, + 0.0009998242603614926, + -0.018717700615525246, + -0.008232387714087963, + -0.007396396715193987, + 0.01679067127406597, + -0.022600101307034492, + 0.02196248061954975, + 0.007495582103729248, + -0.014027648605406284, + 0.026822565123438835, + -0.006524981930851936, + -0.018916072323918343, + 0.00267623458057642, + -0.016323082149028778, + -0.0023007469717413187, + -0.01070493832230568, + -0.0065852017141878605, + 0.0073609733954072, + -0.02709178254008293, + -0.019525352865457535, + 0.02050303854048252, + -0.01138506643474102, + -0.012249396182596684, + 0.002842724323272705, + -0.018873563036322594, + 0.00024884907179512084, + 0.0034537771716713905, + -0.0014133919030427933, + -0.010924562811851501, + 0.0028923170175403357, + -0.03247613087296486, + 0.007913577370345592, + 0.036981984972953796, + 0.006563948001712561, + 0.009273834526538849, + 0.006192002445459366, + 0.011222119443118572, + -0.011151272803544998, + -0.0023875341285020113, + 0.014665269292891026, + -0.008671637624502182, + -0.005550839938223362, + -0.011257542297244072, + -0.006369119510054588, + 0.010988324880599976, + 0.024017035961151123, + -0.008267811499536037, + -0.0019819368608295918, + -0.014431474730372429, + 0.02143821492791176, + 0.021565739065408707, + -0.005947581492364407, + 0.029982328414916992, + 0.013191658072173595, + 0.005944039206951857, + 0.003019841155037284, + 0.0011760554043576121, + -0.00200850423425436, + -0.0072511606849730015, + -0.02415872924029827, + 0.012561121955513954, + 0.030010666698217392, + -0.02123984321951866, + -0.012787831015884876, + -3.611521970015019e-5, + -0.012561121955513954, + -0.0001632795319892466, + -0.0014505863655358553, + 0.0020704951602965593, + -0.04024093225598335, + -0.008749568834900856, + -0.005033658817410469, + -0.012058109976351261, + 0.0011671995744109154, + -0.022642608731985092, + -0.0015125772915780544, + 0.004272056743502617, + -0.018604345619678497, + 0.02054554596543312, + -0.0041161938570439816, + 0.040070898830890656, + -0.006609998177736998, + -0.009465120732784271, + -0.024626316502690315, + 0.018576007336378098, + 0.009805184789001942, + 0.01918528974056244, + 0.00715197529643774, + -0.02874959632754326, + -0.008175710216164589, + -0.010683683678507805, + -0.003910738509148359, + 0.001494865631684661, + -0.03817220777273178, + -0.010896224528551102, + 0.04060933366417885, + -0.004314564634114504, + 0.0065922862850129604, + -0.008225303143262863, + -0.006861504167318344, + 0.006925266236066818, + -0.027771910652518272, + 0.023110197857022285, + -0.0031101705972105265, + 0.009557221084833145, + -0.013857617042958736, + 0.0035671319346874952, + -0.013134980574250221, + 0.011215033940970898, + 0.010804123245179653, + 0.009493459016084671, + -0.02492387220263481, + -0.009373019449412823, + 0.017258258536458015, + -0.014821131713688374, + -0.0001730209478409961, + 0.020361345261335373, + 0.00425788713619113, + 0.0021377995144575834, + 0.01978040114045143, + -0.011902247555553913, + -0.02063056267797947, + -0.007892323657870293, + -0.002566422102972865, + -0.002637268742546439, + 0.01027985755354166, + -0.012752408161759377, + -0.003150907577946782, + 0.013531722128391266, + 0.0005295791779644787, + 0.03460153192281723, + 0.004165786784142256, + -0.016039695590734482, + 0.0007438904722221196, + 9.841050632530823e-5, + -0.02500888891518116, + -0.0012708129361271858, + -0.011576352640986443, + 0.0006947405636310577, + 0.017088226974010468, + -0.00037570897256955504, + 1.3145386219548527e-6, + -0.0009829981718212366, + -0.008933770470321178, + -0.006323068868368864, + 0.011321304365992546, + 0.0029295114800333977, + -0.0002758593764156103, + -0.00535246916115284, + 0.0052568260580301285, + -0.006981943268328905, + -0.005412688944488764, + 0.004144532606005669, + 0.016408098861575127, + -0.010641176253557205, + -0.013035794720053673, + -0.012369835749268532, + 0.01251861359924078, + -0.023223552852869034, + 0.004399580880999565, + -0.03097418136894703, + -0.004690052475780249, + 8.999746205518022e-5, + -0.011236288584768772, + 0.01696070283651352, + -0.007665614131838083, + -0.01608220301568508, + 0.023733647540211678, + 0.017173243686556816, + -0.0015338313532993197, + 0.02140987664461136, + -0.031342584639787674, + -0.0073680579662323, + -0.0025805914774537086, + -0.004296853207051754, + -0.01327667385339737, + 0.017966726794838905, + -0.012136041186749935, + -0.017966726794838905, + -0.028267838060855865, + 0.025972403585910797, + 0.0006451478693634272, + 0.01910027302801609, + 0.023988695815205574, + 0.01772584766149521, + 0.00993270892649889, + 0.001614419394172728, + 0.00884166918694973, + -0.008175710216164589, + 0.010981240309774876, + 0.008317403495311737, + 0.0004308365751057863, + 0.010867885313928127, + 0.020120466127991676, + 0.0036220380570739508, + 0.001511691720224917, + 0.0046723405830562115, + 0.01137089729309082, + -0.012731154449284077, + 0.036613579839468, + -0.015529599040746689, + -0.009656406939029694, + -0.005419773515313864, + -0.007063417229801416, + -0.0034838870633393526, + 0.01394971739500761, + 0.03298622742295265, + 0.0038044683169573545, + 0.018831055611371994, + -0.0018561838660389185, + -0.0031739326659590006, + -0.02058805339038372, + -0.0058838194236159325, + 0.002089977962896228, + -0.012674476951360703, + -0.01249027531594038, + -0.00014446087880060077, + 0.01391429454088211, + 0.011831400915980339, + -0.013184572570025921, + -0.014594422653317451, + 0.010081486776471138, + -0.018731869757175446, + 0.0038044683169573545, + -0.033439647406339645, + -0.029642263427376747, + -0.0005353354499675333, + 0.009833523072302341, + -0.02067307010293007, + 0.03315626084804535, + -0.01397097110748291, + 0.020219651982188225, + -0.004102024715393782, + -0.0018473280360922217, + 0.023662801831960678, + 0.011328388936817646, + -0.014247274026274681, + -0.0001587409060448408, + -0.0073822271078825, + 0.02505139634013176, + 0.00040559741319157183, + 0.014473983086645603, + -0.01687568612396717, + 0.011300050653517246, + 0.01285867765545845, + -2.546053656260483e-5, + 0.0004671454953495413, + -0.00814028736203909, + -0.002465465571731329, + 0.006560405250638723, + -0.009989386424422264, + -0.016351420432329178, + -0.0034874293487519026, + -0.017442461103200912, + -0.010038979351520538, + 0.0014275612775236368, + 0.001976623199880123, + 0.005083251744508743, + 0.010945816524326801, + 0.005019489675760269, + -0.0017437146743759513, + 0.004863626789301634, + 0.0002428713778499514, + 0.0021643671207129955, + 0.017088226974010468, + -0.034318145364522934, + -0.00513638649135828, + 0.007587682921439409, + -0.0029596213717013597, + -0.0052887070924043655, + -0.022571763023734093, + 0.008019847795367241, + -0.014948655851185322, + 0.00481403386220336, + 0.008359911851584911, + 0.004055974073708057, + 0.029670603573322296, + -0.0019961060024797916, + 0.017329106107354164, + -0.0091604795306921, + -0.008395335637032986, + -0.03885233774781227, + -0.023322736844420433, + -0.021721601486206055, + -2.4879373086150736e-5, + -0.003850518725812435, + -0.013992225751280785, + -0.03533833846449852, + 0.0041161938570439816, + -0.01775418594479561, + 0.031002521514892578, + 0.003747791051864624, + 0.0147219467908144, + -2.3398786652251147e-5, + 0.023847002536058426, + -0.018193434923887253, + -0.014566083438694477, + 0.02061639353632927, + 0.0059511237777769566, + 0.031285908073186874, + -0.014360628090798855, + 0.008076525293290615, + 0.0367552749812603, + -0.01060575246810913, + -0.009982301853597164, + 0.0025912185665220022, + -0.003776129800826311, + 0.008919601328670979, + 0.017938386648893356, + 0.0001213249925058335, + -0.007545174565166235, + 0.018661024048924446, + -0.01103083323687315, + -0.01252569817006588, + -0.015586276538670063, + 0.0022635525092482567, + -0.00880624633282423, + -0.032787859439849854, + 0.014920317567884922, + 0.006709183566272259, + 0.009982301853597164, + 0.02719096839427948, + 0.0017800235655158758, + -0.016748161986470222, + 0.007991508580744267, + 0.006266391836106777, + 0.015147026628255844, + -0.0010653574718162417, + 0.009266749955713749, + -0.009252580814063549, + -0.008161541074514389, + -0.0041197361424565315, + -0.008614960126578808, + 0.01622389629483223, + 0.004073685966432095, + 0.02057388424873352, + 0.012015602551400661, + -0.01843431405723095, + -0.022288374602794647, + 0.0054056039080023766, + 0.00570316007360816, + 0.0182926207780838, + 0.015685461461544037, + -0.00480694929137826, + -0.03173932805657387, + -0.013652161695063114, + 0.003882399760186672, + 0.012079364620149136, + 0.007956085726618767, + 0.005745668429881334, + 0.013531722128391266, + -0.014424390159547329, + -0.009188818745315075, + 0.01173221506178379, + 0.007552259601652622, + 0.008742484264075756, + 0.0052143181674182415, + 0.0147219467908144, + 0.021792449057102203, + 0.015359566546976566, + -0.019468676298856735, + 0.007644359953701496, + 0.007010282017290592, + -0.003163305576890707, + -0.01246902160346508, + -0.018051741644740105, + -0.008600790984928608, + 0.027531031519174576, + -0.0038788574747741222, + -0.020247990265488625, + 0.00813320279121399, + -0.018023403361439705, + -0.004388953559100628, + -0.0017667398788034916, + -0.0091604795306921, + -0.0027028019540011883, + -0.00017136048700194806, + -0.010860800743103027, + -0.03216440603137016, + -0.008707060478627682, + 0.009691829793155193, + -0.01762666180729866, + -0.0058413115330040455, + -0.00803401693701744, + -0.0073609733954072, + -0.009670576080679893, + -0.007346803788095713, + 0.06857961416244507, + 0.01847682148218155, + 0.022189190611243248, + 0.009826438501477242, + 0.005171809811145067, + -0.026709210127592087, + -0.009847693145275116, + 0.005076166708022356, + 0.0059192427434027195, + 0.0064683048985898495, + -0.020403852686285973, + -0.007679783273488283, + 0.01756998524069786, + 0.020347176119685173, + -0.01756998524069786, + -0.009280919097363949, + 0.010775784961879253, + 0.005394977051764727, + -0.009337596595287323, + 0.005001777783036232, + 0.0064328815788030624, + 0.0002180750307161361, + 0.002118316711857915, + 0.007098840549588203, + -0.011852654628455639, + 0.010527821257710457, + -0.0091179721057415, + -0.005940496921539307, + 0.014063072390854359, + 0.031059198081493378, + 0.0038682303857058287, + -0.012447766959667206, + -0.005040743388235569, + -0.02580237202346325, + 0.0014497007941827178, + -0.0077860536985099316, + 0.003924907650798559, + -0.011094595305621624, + -0.005086794029921293, + 0.013836362399160862, + 0.0028214703779667616, + -0.010081486776471138, + 0.016308913007378578, + 0.03185268118977547, + -0.030039004981517792, + -0.01134964358061552, + -0.015954678878188133, + 0.0016223896527662873, + -0.008529944345355034, + -0.002600074280053377, + 0.016351420432329178, + 0.009429696947336197, + 0.017910048365592957, + 0.026680871844291687, + 0.01540207490324974, + 0.0035635896492749453, + 0.004498766269534826, + 0.026624193415045738, + 0.012284819968044758, + -0.007630190812051296, + -0.023790325969457626, + -0.004491681698709726, + 0.0045944093726575375, + -0.006677302531898022, + -0.010513652116060257, + -0.010797038674354553, + -0.02071557752788067, + -0.00402055075392127, + -0.003946161828935146, + -0.023223552852869034, + -0.022968504577875137, + -0.009018786251544952, + 0.00212363013997674, + -0.022670947015285492, + -0.0065462361089885235, + 0.035735081881284714, + -0.006181375589221716, + 0.024824688211083412, + 0.02799862064421177, + 0.006174291018396616, + -0.0046227481216192245, + 0.00992562435567379, + -0.01921362802386284, + -0.00239639007486403, + 0.01608220301568508, + -0.008005678653717041, + 0.017938386648893356, + -0.040864381939172745, + 0.011654283851385117, + -0.011555098928511143, + -0.03077581152319908, + -0.00990437064319849, + 0.007059874944388866, + 0.0039036537054926157, + -0.01138506643474102, + 0.002747081220149994, + 0.002817927859723568, + 0.008926685899496078, + -0.0008838127250783145, + -0.020375514402985573, + 0.0039674160070717335, + -0.0011184924514964223, + -0.021735770627856255, + 0.0016055635642260313, + -0.013751346617937088, + -0.008529944345355034, + 0.01769750937819481, + -0.01537373661994934, + 0.005848396103829145, + -0.0035901570226997137, + 0.008444927632808685, + -0.0032040425576269627, + -0.0017755957087501884, + 0.01541624404489994, + -0.009564305655658245, + 0.0007478756015188992, + 0.016606468707323074, + -0.004172871354967356, + -0.02422957494854927, + -0.02422957494854927, + -0.007346803788095713, + 0.006865046452730894, + 0.0008895689970813692, + -0.020418021827936172, + 0.0047077639028429985, + 0.011987263336777687, + -0.017045719549059868, + -0.016578130424022675, + -0.015841323882341385, + 0.006085732486099005, + 0.006383288651704788, + 0.0038292647805064917, + 0.006634794641286135, + -0.007066959515213966, + 0.00681899581104517, + 0.005001777783036232, + -0.0007709007477387786, + 0.012270650826394558, + -0.011888078413903713, + -0.02645416185259819, + 0.005820057354867458, + -0.011144187301397324, + 0.007325550075620413, + 0.006425796542316675, + -0.007545174565166235, + -0.0012265336699783802, + -0.00882750004529953, + -0.012228142470121384, + 0.009883115999400616, + -0.006751691456884146, + 0.019567862153053284, + -0.03307124599814415, + 0.01280908565968275, + -0.002911799820140004, + -0.00995396263897419, + 0.009110886603593826, + -0.037973836064338684, + 0.015628784894943237, + -0.009330512024462223, + 0.005267452914267778, + -0.00959972944110632, + -0.0016524995444342494, + -0.017966726794838905, + 0.0023538819514214993, + -0.018051741644740105, + 0.012029771693050861, + 0.012674476951360703, + 0.0021112319082021713, + 0.00295253680087626, + -0.0008439614321105182, + 0.006691471673548222, + 0.01979457028210163, + 0.026666702702641487, + -0.025334784761071205, + 0.010938731953501701, + -0.007013824302703142, + 0.0038930268492549658, + -0.009663491509854794, + -0.021069811657071114, + 0.010648260824382305, + -0.012249396182596684, + -0.018717700615525246, + 0.0059900893829762936, + -0.0015143484342843294, + -0.01538790576159954, + -0.019383659586310387, + 0.018235944211483, + -0.003051722189411521, + 0.007035078480839729, + -0.01214312668889761, + 0.0021448840852826834, + 0.021183166652917862, + 0.0020014196634292603, + -0.015940509736537933, + 0.0065001859329640865, + -0.0012708129361271858, + 0.04585199058055878, + 0.010152333416044712, + 0.030294053256511688, + 0.0021094607654958963, + 0.003719452302902937, + 0.002775419969111681, + 0.0256890170276165, + 0.001700321095995605, + -0.008721230551600456, + -0.005518958903849125, + -0.012773661874234676, + -0.019695386290550232, + -0.00993270892649889, + -0.006011343561112881, + -0.020956456661224365, + -0.021749939769506454, + 0.01218563411384821, + 0.008777907118201256, + 0.003988669719547033, + 0.023152705281972885, + 0.010081486776471138, + 0.014651100151240826, + 0.014863640069961548, + 0.0035653607919812202, + -0.0039036537054926157, + -0.0047502717934548855, + -0.0026620652060955763, + 0.004172871354967356, + -0.007842730730772018, + -0.019978772848844528, + -0.003441378939896822, + 0.007290126755833626, + 0.021636584773659706, + 0.0006517897709272802, + 0.007531005423516035, + -0.018490992486476898, + -0.0073538888245821, + -0.0028303260914981365, + 0.004272056743502617, + 0.03145594149827957, + 0.005554382223635912, + -0.009883115999400616, + 0.01215729583054781, + 0.005019489675760269, + -0.027502693235874176, + 0.006634794641286135, + -0.0147219467908144, + 0.000246856507146731, + -0.0039674160070717335, + -0.023719478398561478, + 0.0017552272183820605, + 0.008699975907802582, + -0.02128235250711441, + -2.598635182948783e-5, + -0.012943694368004799, + 0.002408788073807955, + 0.006737522315233946, + -0.018859393894672394, + 0.0003500270249787718, + -0.004357072524726391, + -0.02281264029443264, + 0.019610369578003883, + 0.00015885161701589823, + -0.012716984376311302, + 0.00992562435567379, + 0.013581314124166965, + -0.021083980798721313, + 0.01980874128639698, + -0.010428636334836483, + 0.013985141180455685, + -0.03088916651904583, + 0.012348582036793232, + 0.00845909770578146, + 0.009394274093210697, + 0.004215379245579243, + -0.009337596595287323, + 0.0038753151893615723, + 0.03771878778934479, + 0.007835646159946918, + 0.001028162892907858, + -0.008912515826523304, + -0.02865041047334671, + 0.012780746445059776, + 0.02274179458618164, + -0.01507617998868227, + -0.005380807910114527, + 0.012539868243038654, + -0.0013407740043476224, + -0.006652506068348885, + -0.02489553391933441, + 0.019497014582157135, + 0.027403507381677628, + -0.008083609864115715, + 0.024427946656942368, + 0.007913577370345592, + -0.0009037383715622127, + -0.005278079770505428, + -0.005076166708022356, + 0.006110528949648142, + 0.007481412496417761, + -0.01507617998868227, + -0.0011556870304048061, + 0.028494548052549362, + -0.023776156827807426, + -0.013793854974210262, + 0.007949001155793667, + -0.005065539851784706, + -0.00990437064319849, + -0.014665269292891026, + 0.006188460160046816, + 0.02714845910668373, + 0.011980178765952587, + 0.010627007111907005, + 0.015968848019838333, + -0.005210775416344404, + -0.002474321285262704, + -0.007835646159946918, + -0.022203359752893448, + -0.008742484264075756, + -0.008614960126578808, + -0.0032058137003332376, + 0.019610369578003883, + -0.0091250566765666, + 0.01026568841189146, + 0.003161534434184432, + -0.0046758828684687614, + 0.018094250932335854, + -0.021806618198752403, + 0.014126834459602833, + -0.012943694368004799, + 0.021480722352862358, + -0.0009130369871854782, + 0.01756998524069786, + -0.014020564034581184, + 0.02502305805683136, + -0.0010644717840477824, + -0.021834956482052803, + -0.004874253645539284, + 0.0029684770852327347, + 0.023181043565273285, + -0.01628057472407818, + -0.003443150082603097, + -0.0007647016900591552, + -0.01771167851984501, + -0.006893385201692581, + -0.02279847115278244, + -0.001093696104362607, + -0.004094939678907394, + -0.00625576451420784, + -0.003939077258110046, + -0.005859022960066795, + -0.0033138548023998737, + 0.0064966436475515366, + 0.010350704193115234, + 0.004619205370545387, + 0.007467243354767561, + 0.0045766974799335, + 0.008310318924486637, + -0.015798816457390785, + -0.012546952813863754, + 0.01503367256373167, + 0.02787109650671482, + -0.01360256876796484, + -0.006652506068348885, + 0.00846618227660656, + 0.013808024115860462, + -0.019355321303009987, + -0.011122933588922024, + -0.007856899872422218, + -0.015019502490758896, + -0.006493100896477699, + 0.017215751111507416, + -0.046022024005651474, + -0.00340064219199121, + -0.0008058813400566578, + -0.014091410674154758, + -0.0016135338228195906, + -0.010520736686885357, + -0.01281617023050785, + 0.006209714338183403, + -0.011902247555553913, + 0.007623106241226196, + -0.050981294363737106, + 0.005639398004859686, + 0.022302545607089996, + -0.0032128982711583376, + 0.016011357307434082, + -0.001688808435574174, + -0.018108420073986053, + 0.018986918032169342, + 0.0182642824947834, + 0.006089274771511555, + 0.00991853978484869, + 0.001356714521534741, + -0.01438896730542183, + 0.012447766959667206, + 0.013134980574250221, + 0.023266060277819633, + -0.029727280139923096, + 0.026964258402585983, + -0.022529253736138344, + 0.006889842450618744, + -0.02051720768213272, + 0.013035794720053673, + -0.012376920320093632, + 0.0011158357374370098, + 0.018306789919734, + 0.010315281338989735, + 0.019567862153053284, + -0.01359548419713974, + -0.0008789420244283974, + -0.004364157561212778, + 0.012575291097164154, + -0.0027028019540011883, + 0.010804123245179653, + 0.018661024048924446, + 0.0022989758290350437, + 0.0015710258157923818, + 0.015742139890789986, + -0.018760209903120995, + -0.005834226496517658, + 0.010627007111907005, + 0.0011326618259772658, + -0.004994693212211132, + 0.00038943550316616893, + -0.005713787395507097, + -0.0011680851457640529, + 0.0030428662430495024, + 0.013106641359627247, + -0.01915695145726204, + 0.02502305805683136, + 0.014098495244979858, + -0.015501260757446289, + 0.003917823079973459, + -0.0024211863055825233, + 0.011448828503489494, + -0.0045908670872449875, + 0.0059652929194271564, + -0.03290121257305145, + -0.002492033177986741, + 0.003223525360226631, + -0.017314936965703964, + -0.011576352640986443, + 0.014934486709535122, + -0.025320613756775856, + -0.01776835508644581, + -0.00993979349732399, + 0.00012276406050659716, + -0.008848754689097404, + -0.01251861359924078, + 0.013475044630467892, + 0.025915727019309998, + 0.0029560790862888098, + -0.018802717328071594, + -0.0220900047570467, + 0.015557937324047089, + -0.007183856330811977, + 0.0032961431425064802, + -0.014551914297044277, + -0.014240188524127007, + -0.010357788763940334, + -0.03471488878130913, + 0.019411999732255936, + -0.04644710570573807, + 0.017329106107354164, + 0.006138867698609829, + 0.006174291018396616, + -0.021083980798721313, + -0.008409504778683186, + -0.0017392868176102638, + 0.021594077348709106, + 0.009181734174489975, + -0.01764083094894886, + 0.007835646159946918, + -0.037152014672756195, + 0.042309656739234924, + 0.007920661941170692, + 0.01328375842422247, + 0.009507629089057446, + 0.025490647181868553, + -0.015756309032440186, + 0.004534189589321613, + -0.0014780395431444049, + -0.0012477877316996455, + -0.015628784894943237, + 0.007396396715193987, + -0.010988324880599976, + -0.002279493026435375, + 0.026029082015156746, + -0.006280560977756977, + 0.007934832014143467, + 0.0022989758290350437, + -0.0016161906532943249, + 0.008855839259922504, + 0.026808395981788635, + 0.01391429454088211, + 0.004392496310174465, + -0.014431474730372429, + 0.007941916584968567, + 0.0023361702915281057, + 0.023960357531905174, + 0.038568951189517975, + -0.014863640069961548, + 0.004870711360126734, + 0.02791360393166542, + 0.006358492188155651, + -0.00128409662283957, + -0.0147219467908144, + 0.01842014491558075, + -0.0025221428368240595, + 0.006687929388135672, + 0.01772584766149521, + 0.005642940755933523, + 0.007941916584968567, + 0.00569253321737051, + -0.015175365842878819, + -0.012320242822170258, + 0.012426513247191906, + -0.0066241673193871975, + 0.033439647406339645, + -0.0039992970414459705, + 0.011548014357686043, + 0.017910048365592957, + 0.0009776846272870898, + -0.007261788006871939, + -0.02933053858578205, + 0.010088571347296238, + -0.010379043407738209, + 0.019326983019709587, + 0.01921362802386284, + 0.00850868970155716, + -0.009854777716100216, + -0.005635855719447136, + -0.027446016669273376, + -0.008366996422410011, + 0.02288348786532879, + 0.014084326103329659, + -0.004463342949748039, + 0.002182078780606389, + 0.01918528974056244, + 0.002883461071178317, + 0.006386830937117338, + 0.020446360111236572, + -0.0029330537654459476, + 0.01609637215733528, + -0.0035830724518746138, + 0.025929896160960197, + 0.007538089994341135, + 0.0070917559787631035, + -0.024782178923487663, + 0.014027648605406284, + 0.022529253736138344, + -0.004923846572637558, + 0.011130018159747124, + 0.005161182954907417, + 0.0047502717934548855, + 0.02503722719848156, + -0.007318465039134026, + 0.025263937190175056, + 0.0008421902894042432, + 0.014233103953301907, + 0.0003183674125466496, + -0.008919601328670979, + 0.02063056267797947, + 0.017144903540611267, + -0.006213256623595953, + 0.00803401693701744, + -0.006195544730871916, + -0.0015258610947057605, + 0.012695730663836002, + -0.001653385115787387, + -0.013390028849244118, + 0.01138506643474102, + 0.0037407062482088804, + -0.010974155738949776, + 0.0029613925144076347, + 0.006422254256904125, + 0.01917112059891224, + -0.015784647315740585, + 0.002809072146192193, + -0.03185268118977547, + -0.0022688659373670816, + 0.007963170297443867, + -0.003611411200836301, + -0.00017102838319260627, + -0.01987958699464798, + 0.001875666668638587, + 0.004913219250738621, + -0.004998235497623682, + 0.007488497532904148, + -0.006723352707922459, + 0.003301456803455949, + 0.030379069969058037, + -0.01686151698231697, + 0.016393929719924927, + -0.004753814544528723, + -0.010974155738949776, + -0.0018561838660389185, + 0.008005678653717041, + 0.02047470025718212, + -0.0016879228642210364, + 0.003776129800826311, + -0.022189190611243248, + -0.028919627889990807, + -0.015288719907402992, + 0.012369835749268532, + 0.013432536274194717, + -0.0009750278550200164, + 0.013397113420069218, + 0.0004981409292668104, + -0.0024105594493448734, + 0.007098840549588203, + 0.007113009691238403, + 0.011186695657670498, + 0.020233821123838425, + -0.025972403585910797, + 0.00047954366891644895, + -0.008154456503689289, + 0.014693607576191425, + 0.0052887070924043655, + 0.01108042523264885, + -0.0040772282518446445, + 0.02935887686908245, + 0.010761615820229053, + 0.015345397405326366, + 0.010853716172277927, + -0.003051722189411521, + 0.01629474386572838, + -0.011115849018096924, + -0.008855839259922504, + -0.00803401693701744, + -0.0001989242882700637, + 0.014622760936617851, + -0.017810862511396408, + -0.010308196768164635, + -0.005306418519467115, + -0.007261788006871939, + -0.017074057832360268, + 0.005069082137197256, + -0.014077241532504559, + -0.006447050720453262, + -0.0038717726711183786, + -0.005802345462143421, + -0.013446705415844917, + -0.011866823770105839, + -0.005494162440299988, + 0.0011193780228495598, + 0.0183209590613842, + 0.0006398343830369413, + 0.004183498211205006, + -0.0022299003321677446, + 0.010556159541010857, + 0.015756309032440186, + -0.0038930268492549658, + -0.01509034913033247, + 0.017881710082292557, + -0.019638707861304283, + 0.017825031653046608, + -0.007672698702663183, + -0.012972032651305199, + 0.009996470995247364, + -0.02193414233624935, + 0.03324127569794655, + -0.003304999088868499, + -0.019383659586310387, + -0.025263937190175056, + -0.006904012057930231, + 0.00240347464568913, + 0.0018154470017179847, + -0.0020403852686285973, + 0.0008891262114048004, + 0.016663147136569023, + -0.02196248061954975, + -0.009649322368204594, + -0.01329084299504757, + 0.012313158251345158, + -0.011158357374370098, + 0.00513992877677083, + 0.0029348249081522226, + 0.02047470025718212, + 0.01690402440726757, + -0.009798100218176842, + 0.018094250932335854, + -0.0072830417193472385, + 0.015118688344955444, + 0.0036627750378102064, + 0.009365934878587723, + 0.021622415632009506, + -1.1125147466373164e-5, + 0.015954678878188133, + 0.013106641359627247, + -0.00881333090364933, + 0.009415527805685997, + 0.015657123178243637, + -0.022302545607089996, + -0.00039142806781455874, + -0.03165430948138237, + -0.006319526582956314, + 0.0004286225885152817, + -0.0047502717934548855, + 0.0025876760482788086, + -2.7121006496599875e-5, + 0.0030145274940878153, + -0.014452729374170303, + -0.01540207490324974, + 0.010655345395207405, + 0.014821131713688374, + -0.002525685355067253, + -0.012334411963820457, + -0.0256181713193655, + -0.012759492732584476, + -0.0003577758907340467, + 0.015557937324047089, + -0.03244779258966446, + 0.016025526449084282, + -0.005274537485092878, + -0.013078303076326847, + 0.02788526564836502, + -0.0027966739144176245, + -0.045993685722351074, + -0.011292966082692146, + 0.009684745222330093, + -0.013198742642998695, + -0.0013080073986202478, + 0.0019217170774936676, + 0.0034484637435525656, + 0.005639398004859686, + 0.006099901627749205, + 0.00211654556915164, + -0.01766916923224926, + -0.0036981983575969934, + 0.0030092140659689903, + -0.01679067127406597, + 0.02067307010293007, + 0.04641876369714737, + 0.0016994355246424675, + -0.002290119882673025, + 0.012575291097164154, + -0.018675193190574646, + -0.004548358730971813, + 0.0009635152528062463, + 0.005483535584062338, + -0.008848754689097404, + 0.019298644736409187, + -0.014339374378323555, + -0.003503369865939021, + 0.018618516623973846, + -0.0007058103801682591, + 0.018859393894672394, + -0.005635855719447136, + -0.014360628090798855, + -0.0008413047180511057, + 0.005154098384082317, + 0.04551192745566368, + -0.008281980641186237, + -0.01690402440726757, + 0.02712012082338333, + -0.009280919097363949, + 0.010860800743103027, + -0.00679419981315732, + 0.017456630244851112, + -0.01618138886988163, + 0.012709899805486202, + -0.01625223644077778, + 0.009316342882812023, + 0.013496298342943192, + -0.010818292386829853, + -0.00814028736203909, + -0.011243373155593872, + 0.002125401282683015, + 0.009769761934876442, + -0.0147077776491642, + -0.012922439724206924, + 0.018604345619678497, + -0.004725475795567036, + -0.0002053447678918019, + -0.002708115614950657, + -0.022430067881941795, + 0.018150927498936653, + -0.01688985526561737, + -0.031229229643940926, + -0.010520736686885357, + 0.014424390159547329, + -0.009061294607818127, + 0.014424390159547329, + -0.0221041738986969, + 0.002709886757656932, + -0.0020740374457091093, + -0.012107702903449535, + 0.013227080926299095, + 0.0010024809744209051, + 0.025561492890119553, + -0.002366280183196068, + 0.019482845440506935, + 0.019001087173819542, + -0.006206172052770853, + -0.018533499911427498, + 0.020134635269641876, + 0.006925266236066818, + -0.011668452993035316, + -0.0020970627665519714, + -0.02292599529027939, + -0.012624884024262428, + 0.004856542218476534, + -0.007587682921439409, + 0.0034892004914581776, + 0.0006455906550399959, + -0.016705654561519623, + -0.018009234219789505, + -0.0033103125169873238, + -0.003225296502932906, + 0.003811553120613098, + 0.005657109897583723, + 0.014962824992835522, + -0.004321649204939604, + 0.011477166786789894, + 0.011505506001412868, + 0.012681561522185802, + 0.012043940834701061, + -0.006103444378823042, + -0.01282325480133295, + -0.014835301786661148, + 0.015359566546976566, + 0.0031455939169973135, + -0.021849125623703003, + 0.01992209441959858, + 0.0016578130889683962, + -0.01686151698231697, + -0.022571763023734093, + -0.002359195379540324, + 0.008664553053677082, + 0.016762331128120422, + -0.01326250471174717, + -0.04026927053928375, + -0.009202987886965275, + -0.010924562811851501, + -0.01215729583054781, + -0.0078002228401601315, + 0.017484968528151512, + -0.018108420073986053, + 0.013007456436753273, + -0.005632313434034586, + 0.04262138158082962, + -0.012986201792955399, + 0.00200850423425436, + -0.013347520492970943, + 0.005380807910114527, + 0.01768333837389946, + 0.018009234219789505, + -0.016379758715629578, + 0.011328388936817646, + -0.0014328747056424618, + -0.0025752780493348837, + -0.00884166918694973, + 0.006021970417350531, + -0.004197667818516493, + 0.01619555801153183, + -0.010747445747256279, + 0.01028694212436676, + 0.000514081446453929, + -0.00401346618309617, + -0.017159072682261467, + 0.01285867765545845, + -0.005079708993434906, + 0.013829277828335762, + 0.02493804320693016, + 0.007268872577697039, + -0.00813320279121399, + 0.009514713659882545, + -0.006896927487105131, + -0.007297211326658726, + -0.008749568834900856, + -0.009507629089057446, + -0.007102382835000753, + -0.01430395059287548, + -0.005448112264275551, + 0.02437126822769642, + -0.006783572491258383, + 0.00026058306684717536, + 0.0003181460197083652, + -0.007913577370345592, + -0.004612120799720287, + -0.003196957753971219, + 0.019284475594758987, + 0.007495582103729248, + 0.013042879290878773, + -0.0041197361424565315, + 0.01070493832230568, + -0.006021970417350531, + 0.009401358664035797, + 0.0256465096026659, + 0.01620972715318203, + -0.018816886469721794, + 0.03737872466444969, + 0.0028994015883654356, + 0.0004179955867584795, + 0.0147077776491642, + -0.008182794786989689, + -0.02140987664461136, + 0.020885610952973366, + 0.0005251512629911304, + 0.016663147136569023, + -0.024640485644340515, + -0.001354943378828466, + -0.005419773515313864, + -0.010017724707722664, + -0.0011663140030577779, + 0.01611054129898548, + -0.006698556710034609, + 0.010938731953501701, + -0.026298299431800842, + -0.002047469839453697, + -0.026737548410892487, + 0.004406665451824665, + -0.02655334770679474, + -0.016620637848973274, + 0.02437126822769642, + 0.0013186343712732196, + 0.009989386424422264, + -0.007552259601652622, + -0.023691140115261078, + -0.01215729583054781, + 0.01608220301568508, + -0.015742139890789986, + -0.0015418014954775572, + -0.006599371321499348, + -0.005278079770505428, + 0.026624193415045738, + 0.014041817747056484, + 0.019440338015556335, + -0.005281622521579266, + -0.007049247622489929, + 0.0036025552544742823, + 0.006050309166312218, + 0.006450593005865812, + -0.0004197667585685849, + 0.007736460771411657, + -0.012766577303409576, + -0.017371613532304764, + -0.012915355153381824, + -0.012993287295103073, + -0.001974852057173848, + -0.004371242132037878, + 0.011307135224342346, + 0.00045386175042949617, + -0.009068379178643227, + -0.0004720162251032889, + -0.021693263202905655, + -0.009061294607818127, + -0.0020439275540411472, + -0.006953604519367218, + -0.008090694434940815, + 0.002562879817560315, + -0.011930585838854313, + 0.00991145521402359, + 0.0221608504652977, + -0.01438188273459673, + 0.007074044086039066, + 0.008296149782836437, + 0.025306444615125656, + -0.012384004890918732, + 0.008324488997459412, + -0.00878499262034893, + -2.4685650714673102e-5, + -0.0031385093461722136, + -0.0018057056004181504, + 0.022529253736138344, + -0.016677316278219223, + 0.007906492799520493, + -0.017810862511396408, + -0.01778252422809601, + -0.012107702903449535, + -0.02580237202346325, + -0.0037938414607197046, + 0.011661368422210217, + 0.013177487999200821, + -0.01846265234053135, + 0.010527821257710457, + 0.025249768048524857, + 0.022557592019438744, + -0.033326294273138046, + -0.001842014491558075, + -0.017045719549059868, + 0.00682253809645772, + -0.01507617998868227, + 0.018122589215636253, + -0.0007430049008689821, + -0.015487090684473515, + 0.01395680196583271, + -0.014665269292891026, + -0.022614270448684692, + 0.015487090684473515, + 0.0031473650597035885, + -0.0033209396060556173, + -0.006068020593374968, + -0.011987263336777687, + -0.022373391315340996, + 0.004165786784142256, + -0.024527130648493767, + 0.003783214371651411, + 0.021679094061255455, + -0.0004875139275100082, + -0.010223180055618286, + -0.010995409451425076, + -0.0014629845973104239, + 0.0024229574482887983, + -0.00023910765594337136, + -0.013049963861703873, + -0.00804110150784254, + 0.009153394959867, + 0.030690794810652733, + 0.014063072390854359, + -0.02867874875664711, + -0.013439620845019817, + -0.011505506001412868, + 0.008622044697403908, + 0.004275599028915167, + 0.009479289874434471, + -0.015274550765752792, + -0.00368402898311615, + 0.01217854954302311, + 0.0065462361089885235, + -0.006269934121519327, + -0.004456257913261652, + 0.0006526753422804177, + 0.01615305058658123, + 0.013326266780495644, + -0.0007049247506074607, + -0.0014275612775236368, + 0.026850903406739235, + -0.01280908565968275, + -0.005302876234054565, + -0.01910027302801609, + 0.018746038898825645, + -0.008253641426563263, + 0.0003854503738693893, + 0.017867540940642357, + -0.00962806772440672, + -0.005816515069454908, + 0.024810519069433212, + 0.018760209903120995, + 0.00036574614932760596, + 0.015713799744844437, + -0.004034720361232758, + 0.005742126144468784, + -0.013092472217977047, + -0.005065539851784706, + -0.009422612376511097, + -0.01428978145122528, + 0.002286577597260475, + 0.011859739199280739, + -0.013829277828335762, + -0.007183856330811977, + 0.004959269892424345, + -0.0005348926642909646, + 0.012029771693050861, + -0.017144903540611267, + -0.009493459016084671, + 0.0058731925673782825, + 0.01690402440726757, + -0.0016640120884403586, + 0.0006540036993101239, + 0.003953246399760246, + 0.008947939611971378, + 0.012072280049324036, + -0.0010529592400416732, + -0.0016994355246424675, + -0.006184917874634266, + -0.018887734040617943, + 0.0010963528184220195, + 0.01216438040137291, + 0.008189879357814789, + -0.018576007336378098, + -0.0072830417193472385, + 0.0009785701986402273, + 0.023903680965304375, + -0.0038611458148807287, + 0.004725475795567036, + 0.005766922142356634, + -0.009443867020308971, + 0.011448828503489494, + -0.009833523072302341, + -0.017895879223942757, + -0.008565367199480534, + 0.014792793430387974, + -0.015954678878188133, + -0.011491336859762669, + -0.004261429887264967, + -0.006344323046505451, + -0.014920317567884922, + 0.008862923830747604, + 0.00805527064949274, + -0.0045837820507586, + -0.004959269892424345, + 0.010981240309774876, + 0.00512221734970808, + 0.0034165827091783285, + 0.009840608574450016, + -0.00623451080173254, + -0.008636213839054108, + -0.004470427520573139, + -0.014098495244979858, + 0.012270650826394558, + 0.005710245110094547, + -0.016436437144875526, + 0.012568206526339054, + -0.005061997566372156, + -0.01982291042804718, + 0.012107702903449535, + 0.007580597884953022, + -1.670155870669987e-5, + -0.0065887439996004105, + -0.007991508580744267, + 0.004477512091398239, + -0.014764454215765, + -0.0005034544155932963, + -0.031030859798192978, + -0.004495223984122276, + 0.010527821257710457, + 0.00802693236619234, + -0.019553693011403084, + 0.001577224931679666, + 0.027729403227567673, + 0.024087881669402122, + -0.022628439590334892, + 0.012759492732584476, + -0.023365246132016182, + -0.025533154606819153, + 0.015472921542823315, + -0.007906492799520493, + -0.004442088771611452, + 0.006014885846525431, + -0.008664553053677082, + 0.025320613756775856, + -0.002222815528512001, + 0.012107702903449535, + 0.005380807910114527, + -0.01612471230328083, + -0.011491336859762669, + 0.010662429966032505, + -0.00680482666939497, + -0.006110528949648142, + 0.005501247011125088, + -0.0007244076114147902, + 0.005235571879893541, + -0.01170387677848339, + 0.004360615275800228, + 0.011526759713888168, + 0.0052497414872050285, + -0.021849125623703003, + -0.0019358863355591893, + 0.014920317567884922, + 0.015147026628255844, + 0.009450951591134071, + -0.011654283851385117, + -0.02503722719848156, + -0.008423673920333385, + -0.015501260757446289, + -0.001063586212694645, + 0.029132166877388954, + -5.6566670536994934e-5, + 0.01137089729309082, + 0.023705309256911278, + 0.009054210036993027, + -0.001973080914467573, + -0.015586276538670063, + -0.01922779716551304, + 0.00425434485077858, + 8.291278936667368e-5, + 0.007339719217270613, + -0.014410221017897129, + -0.00715197529643774, + -0.006312442012131214, + -0.010485312901437283, + -0.017910048365592957, + -0.026836734265089035, + -0.017867540940642357, + 0.002327314577996731, + 0.013057048432528973, + 0.012043940834701061, + 0.010003555566072464, + 0.007453074213117361, + 0.00015209903358481824, + -0.004165786784142256, + -0.017470799386501312, + 0.000626993365585804, + -0.010123995132744312, + -0.006064478307962418, + 0.003885942045599222, + -0.005504789296537638, + -0.006025512702763081, + -0.014537745155394077, + 0.0147219467908144, + 0.01765500009059906, + 0.005586263258010149, + -0.005979462526738644, + -0.024073712527751923, + -0.017229920253157616, + -0.005012404639273882, + 0.010740361176431179, + -0.010379043407738209, + -0.010598667897284031, + -0.000955544994212687, + 0.013857617042958736, + -0.003368761157616973, + -0.013829277828335762, + 0.02869291789829731, + 0.001080412301234901, + -0.013659246265888214, + -0.0030729761347174644, + -0.0019642249681055546, + 0.01027277298271656, + 0.01679067127406597, + 0.02050303854048252, + -0.006340780761092901, + 0.007290126755833626, + -0.0066277096047997475, + 0.0019146323902532458, + -0.015756309032440186, + 0.016379758715629578, + 0.01069076918065548, + 0.015260381624102592, + 0.01363090705126524, + -0.006826080847531557, + 0.002394618932157755, + 0.0038328070659190416, + -0.014821131713688374, + -0.030322391539812088, + 0.007594767492264509, + -0.03375137224793434, + 0.013177487999200821, + -0.0183351282030344, + 0.020007111132144928, + 0.009011701680719852, + 0.01681900955736637, + 0.0039674160070717335, + -0.0066560483537614346, + 0.0020722663030028343, + 0.01616721972823143, + -0.0025416258722543716, + 0.002258238848298788, + 0.00624867994338274, + 0.007871069945394993, + 0.0002935710654128343, + -0.016422268003225327, + 0.005625228863209486, + 0.007538089994341135, + 0.01983707956969738, + -0.012235227040946484, + -0.010761615820229053, + -0.020446360111236572, + -0.04191291332244873, + -0.013035794720053673, + -0.018916072323918343, + 0.030577439814805984, + -0.008211134001612663, + -0.004828203469514847, + -0.024838857352733612, + 0.008558282628655434, + 0.01925613544881344, + -0.008735399693250656, + -0.01901525817811489, + 0.005072624422609806, + -0.006340780761092901, + 0.01103791780769825, + -0.041487835347652435, + 0.015444583259522915, + 0.019709555432200432, + -0.005717329680919647, + -0.007594767492264509, + 0.029217183589935303, + -0.0059121581725776196, + 0.003058806760236621, + 0.008593706414103508, + -0.013687584549188614, + 0.01608220301568508, + 0.013772600330412388, + -0.02070140838623047, + 0.006184917874634266, + -0.031314246356487274, + 0.005593347828835249, + -0.008756653405725956, + 0.008558282628655434, + -0.0019358863355591893, + 0.011087510734796524, + 0.005448112264275551, + -0.011569268070161343, + -0.02143821492791176, + -0.0053737228736281395, + 0.02867874875664711, + 0.05815098062157631, + 0.02503722719848156, + -0.0005663309129886329, + 0.013581314124166965, + 0.03020903840661049, + -0.02291182614862919, + 0.014509406872093678, + 0.006925266236066818, + -0.02641165442764759, + -0.0053418418392539024, + -0.026128267869353294, + 0.002052783500403166, + 0.03241945430636406, + 0.0037336216773837805, + -0.011321304365992546, + -0.006425796542316675, + -0.010556159541010857, + -0.00879207719117403, + 0.0017065202118828893, + 0.011300050653517246, + 0.003129653399810195, + 0.014077241532504559, + -0.018972748890519142, + 0.010308196768164635, + 0.0070917559787631035, + -0.006733980029821396, + -0.02057388424873352, + -0.022571763023734093, + -0.029075490310788155, + 0.015614614821970463, + 0.020772255957126617, + -0.00402409303933382, + -0.0023042892571538687, + -0.003712367732077837, + -0.010414466261863708, + 0.02145238406956196, + -0.007194483652710915, + 0.012773661874234676, + -0.013382943347096443, + -0.021905802190303802, + -0.0058873617090284824, + -0.012794915586709976, + -0.00283741089515388, + -0.014424390159547329, + -0.017116565257310867, + -0.016323082149028778, + -0.011916416697204113, + -0.010563245043158531, + 0.007318465039134026, + -0.008898346684873104, + 0.0018331586616113782, + -0.015175365842878819, + -0.032646164298057556, + -0.015543768182396889, + 0.011526759713888168, + 0.013666330836713314, + 0.033411309123039246, + -0.00623451080173254, + -0.0070917559787631035, + -0.006493100896477699, + -0.014877809211611748, + 0.010931647382676601, + 0.006202629767358303, + 0.008083609864115715, + -0.01755581423640251, + 0.021891633048653603, + -0.004473969805985689, + 0.0007881696801632643, + -0.006489558611065149, + -0.009450951591134071, + 0.0017933073686435819, + -0.02121150493621826, + -0.005157640669494867, + -0.005579178687185049, + -0.0220474973320961, + -0.006896927487105131, + -0.02070140838623047, + 0.003935534972697496, + -0.006755233742296696, + 0.016478944569826126, + 0.0005335643072612584, + 0.004442088771611452, + 0.009528882801532745, + 0.000616809178609401, + -0.02285514958202839, + 0.003946161828935146, + 0.003018070012331009, + -0.0020970627665519714, + -0.005104505456984043, + 0.011966009624302387, + -0.022614270448684692, + -0.00590861588716507, + -0.013730092905461788, + 0.006670217961072922, + 0.0017640831647440791, + -0.022968504577875137, + -0.0040807705372571945, + -0.005738583393394947, + 0.0009617441100999713, + -0.0028905458748340607, + -0.017895879223942757, + 0.01396388653665781, + 0.0073751425370574, + 0.02363446354866028, + -0.007949001155793667, + -0.029670603573322296, + 0.0035600471310317516, + 0.003712367732077837, + 0.0006770289037376642, + 0.022557592019438744, + -0.024002864956855774, + -0.023875340819358826, + 0.005724414251744747, + 0.007318465039134026, + -0.0091463103890419, + 0.015798816457390785, + 0.0037973837461322546, + 0.0019606826826930046, + 0.009231326170265675, + 0.0073751425370574, + -0.007991508580744267, + 0.005862565245479345, + 0.018235944211483, + 0.023166874423623085, + 0.003161534434184432, + -0.01507617998868227, + 0.013885955326259136, + 0.009557221084833145, + -0.013198742642998695, + 0.005175352096557617, + 0.021027304232120514, + 0.015940509736537933, + -0.0010520736686885357, + 0.014608591794967651, + -0.0065781171433627605, + -0.008877092972397804, + 0.004838830325752497, + -0.008607875555753708, + 0.015260381624102592, + 0.0037584181409329176, + -0.014792793430387974, + 0.0011052086483687162, + 0.02791360393166542, + 0.016677316278219223, + -0.010818292386829853, + 0.002984417602419853, + -0.015968848019838333, + 0.007495582103729248, + 0.009295088239014149, + -0.005869649816304445, + 0.002715200185775757, + -0.019326983019709587, + -0.0012628426775336266, + -0.006269934121519327, + -0.0011840256629511714, + 0.031144214794039726, + 0.018604345619678497, + 0.03176766633987427, + -0.0030446373857557774, + 0.0016764103202149272, + -0.004282683599740267, + 0.009691829793155193, + 0.014679438434541225, + 0.026000743731856346, + 0.004059516359120607, + 0.0021962481550872326, + 0.006333696190267801, + 0.008529944345355034, + -0.024838857352733612, + -0.004388953559100628, + -0.010959986597299576, + 0.010336535051465034, + -0.015997188165783882, + -0.005462281405925751, + 0.006553320679813623, + 0.0026107013691216707, + -0.01061992160975933, + -0.01219271868467331, + -0.02140987664461136, + -0.011016663163900375, + 0.011562183499336243, + 0.03222108259797096, + 0.021126490086317062, + -0.011675537563860416, + 0.007027993910014629, + -0.003978042863309383, + -0.003340422408655286, + 0.014041817747056484, + 0.0045696129091084, + -0.005823599640280008, + 0.0005654453416354954, + 0.006521439645439386, + -0.007977339439094067, + -0.01677650213241577, + -0.004420834593474865, + 0.005618144292384386, + -0.001752570504322648, + 0.021140659227967262, + -0.009670576080679893, + 0.0032518641091883183, + -0.0077860536985099316, + -0.026128267869353294, + 0.0016551562584936619, + -0.03539501875638962 + ], + "e2332648-6300-46c2-b1d5-f5966f11ce80": [ + -0.003268084255978465, + -0.005439119879156351, + -0.008038433268666267, + -0.013395192101597786, + -0.05097157135605812, + -0.027277961373329163, + 0.013533558696508408, + 0.045384202152490616, + -0.00532710924744606, + 0.05434507876634598, + 0.012861493043601513, + 0.017447352409362793, + -0.001762525294907391, + 0.017579130828380585, + -0.006516401655972004, + 0.00826245453208685, + -0.051735881716012955, + 0.01383664645254612, + -0.0231796782463789, + -0.009652708657085896, + 0.07954095304012299, + -0.03782016783952713, + -0.015707887709140778, + 0.020069727674126625, + -0.02748880535364151, + -0.01782950758934021, + 0.018620172515511513, + -0.007979133166372776, + -0.003630472579970956, + -0.01717061921954155, + -0.006104596890509129, + 0.010028274729847908, + 0.03502648323774338, + -0.014271512627601624, + 0.01199834980070591, + 0.009968974627554417, + -0.021058058366179466, + 0.04799339920282364, + -0.02983444556593895, + 0.016748931258916855, + -0.02184872515499592, + 0.022283589467406273, + 0.014956756494939327, + -0.0016472198767587543, + -0.02382538840174675, + 0.042432382702827454, + 0.05199943482875824, + -0.0009570347610861063, + 0.0004175702342763543, + 0.0008763209916651249, + -0.0044409045949578285, + 0.04069291800260544, + -0.00420699967071414, + 0.0007836648728698492, + 0.014521890319883823, + 0.015958266332745552, + -0.0025235407520085573, + 0.0882909819483757, + 0.027277961373329163, + -0.0386371873319149, + -0.009777897037565708, + 0.012393682263791561, + 0.007768288720399141, + 0.012215782888233662, + -0.015365267172455788, + -0.025960184633731842, + 0.022731633856892586, + 0.015470689162611961, + -0.03737212345004082, + -0.0024658881593495607, + 0.004757171031087637, + 0.007564033381640911, + -0.03212737664580345, + 0.019068216904997826, + -0.0007494850433431566, + -0.0153125561773777, + 0.03231186419725418, + -0.03399861976504326, + 0.013039392419159412, + 0.0069644455797970295, + -0.03613341599702835, + 0.00832175463438034, + 0.0045331488363444805, + -0.012966915033757687, + 0.02730431593954563, + 0.00720164505764842, + -0.035079192370176315, + -0.048915840685367584, + -0.06019600108265877, + -0.024971853941679, + 0.02733067236840725, + 0.02651365101337433, + -0.011234039440751076, + -0.0004949895665049553, + -0.019239528104662895, + -0.015352088958024979, + 0.030229778960347176, + 0.005346875637769699, + -0.02514316327869892, + -0.03220644220709801, + -0.031204933300614357, + 0.0153125561773777, + -0.03368235006928444, + 0.004253121558576822, + 0.008407410234212875, + -0.009962385520339012, + 0.00745202274993062, + -0.00832175463438034, + -0.027752360329031944, + 0.02651365101337433, + 0.020557302981615067, + -0.01618228852748871, + -0.009125597774982452, + 0.01182703860104084, + 0.013105281628668308, + -0.07938282191753387, + -0.004569387994706631, + -0.012775837443768978, + -0.012228960171341896, + -0.0466492660343647, + 0.06183004379272461, + 0.026750851422548294, + 0.02400987595319748, + -0.014535068534314632, + 0.017908575013279915, + -0.00882909819483757, + -0.010100752115249634, + 0.003874261165037751, + 0.005396292079240084, + -0.0028727513272315264, + 0.00704351207241416, + -0.022705279290676117, + -0.013164580799639225, + 0.029386403039097786, + -0.029887156561017036, + 0.009382564574480057, + 0.026764027774333954, + 0.03484199568629265, + -0.04061385244131088, + 0.043934646993875504, + -0.03268084302544594, + -0.02348276600241661, + -0.0036897724494338036, + -0.022547146305441856, + 0.027357026934623718, + 0.001451200689189136, + -0.036396969109773636, + 0.03015071153640747, + 0.006513107568025589, + 0.02564391866326332, + -0.04137816280126572, + 0.008025255054235458, + 0.03560630604624748, + 0.003485517343506217, + -0.007748522330075502, + 0.002513657556846738, + 0.0063978019170463085, + 0.028543025255203247, + -0.023245567455887794, + 0.008045021444559097, + -0.024365676566958427, + -0.03268084302544594, + 0.022784344851970673, + 0.006723951548337936, + 0.01108249556273222, + 0.014877690002322197, + 0.016630331054329872, + 0.021413858979940414, + -0.06214630976319313, + 0.016696220263838768, + 0.050602592527866364, + -0.025050919502973557, + 0.00569938076660037, + 0.004223471507430077, + -0.0015846254536882043, + 0.00045216185390017927, + 0.009006998501718044, + 0.007801233325153589, + 0.018409328535199165, + -0.038057368248701096, + 0.0019239528337493539, + -0.023917632177472115, + -0.01730239763855934, + 0.006358268670737743, + -0.028279470279812813, + 0.020385993644595146, + 0.017605485394597054, + -0.0006716538919135928, + -0.005765269510447979, + 0.04248509556055069, + 0.007471789140254259, + -0.006358268670737743, + 0.005310636945068836, + 0.04933752864599228, + -0.005649964325129986, + -0.009033353999257088, + -0.011886338703334332, + 0.0005032256594859064, + 0.03731941431760788, + 0.014640490524470806, + -0.005300753749907017, + -0.06747012585401535, + -0.0636749342083931, + 0.02748880535364151, + -0.04053478688001633, + -0.012024705298244953, + -0.004740698728710413, + -0.004134521819651127, + 0.015734244138002396, + -0.018857372924685478, + 0.017078375443816185, + -0.014548245817422867, + 0.019753459841012955, + -0.0066152350045740604, + -0.023192856460809708, + 0.0038149612955749035, + -0.001302950899116695, + 0.021084414795041084, + 0.03510554879903793, + 0.004572682548314333, + -0.020385993644595146, + 0.010285240598022938, + 0.03618612512946129, + -0.020715437829494476, + -0.052895523607730865, + -0.013863001950085163, + -0.006990801077336073, + 0.026869449764490128, + -0.02130843698978424, + -0.022072745487093925, + 0.055083032697439194, + -0.020109260454773903, + 0.015246666967868805, + -0.029860801994800568, + -0.006177074275910854, + 0.005821275059133768, + -0.009586819447577, + 0.008453532122075558, + 0.027225250378251076, + -0.03826821222901344, + 0.04786162078380585, + 0.028753869235515594, + 0.012354148551821709, + 0.036581460386514664, + 0.004025805275887251, + 0.024194365367293358, + -0.006081535946577787, + 0.04809882119297981, + 0.03948056697845459, + -0.023878099396824837, + -0.004394782707095146, + 0.02901742421090603, + 0.021927790716290474, + -0.009244197979569435, + -0.006891967728734016, + 0.008934520184993744, + 0.020715437829494476, + -0.0015385033329948783, + -0.015180778689682484, + 0.0009018528508022428, + -0.0052809868939220905, + -0.006223196629434824, + 0.007676044479012489, + -0.023113789036870003, + 0.050418104976415634, + -0.014759089797735214, + 0.02767329290509224, + -0.050892505794763565, + -0.02983444556593895, + 0.013955246657133102, + -0.061882756650447845, + 0.006658062804490328, + -0.013144814409315586, + 0.0024658881593495607, + -0.028516670688986778, + -0.010680573992431164, + 0.009099242277443409, + 0.03481563925743103, + -0.0011217567371204495, + 0.018422506749629974, + -0.019555794075131416, + 0.02097899280488491, + 0.028727514669299126, + 0.0486522875726223, + -0.02283705584704876, + -0.03710857033729553, + -0.003182428888976574, + 0.008947698399424553, + -0.02400987595319748, + -0.015352088958024979, + 0.02082085981965065, + 0.0014577895635738969, + 0.03431488573551178, + -0.008427176624536514, + 0.0058476305566728115, + -0.009527519345283508, + -0.01634042151272297, + -0.005047081504017115, + -0.012446393258869648, + 0.016551265493035316, + -0.025274941697716713, + 0.008209743537008762, + 0.04369745030999184, + 0.010594918392598629, + 0.01798764057457447, + 0.004009332973510027, + 0.012815370224416256, + -0.032549064606428146, + -0.029439114034175873, + 0.01980617083609104, + 0.02580205164849758, + -0.010430196300148964, + -0.006463690660893917, + -0.02767329290509224, + -0.014930400997400284, + 0.018870551139116287, + 0.00450020469725132, + 0.01800081878900528, + 0.0009290319867432117, + -0.014047491364181042, + -0.0007606037543155253, + -0.004523265641182661, + -0.03687136992812157, + 0.015009467490017414, + 0.0236804336309433, + -0.02183554694056511, + 0.00011231980170123279, + 0.018896905705332756, + -0.013849824666976929, + -0.028226759284734726, + 0.0011448177974671125, + -0.03413039445877075, + -0.020280571654438972, + -0.032733552157878876, + -0.0011588191846385598, + -0.009119009599089622, + -0.019371306523680687, + -0.040903761982917786, + 0.0005522304563783109, + 0.0016150990268215537, + -0.02717253938317299, + 0.04630664363503456, + -0.03982318565249443, + 0.009988741017878056, + 0.01551022194325924, + 0.0047472878359258175, + -0.008862042799592018, + 0.025261763483285904, + -0.005030609667301178, + -0.0033339729998260736, + 0.0005884693237021565, + -0.017579130828380585, + 0.030598755925893784, + 0.0043321880511939526, + 0.009303498081862926, + -0.013876180164515972, + -0.016920242458581924, + -0.011372406035661697, + 0.010878239758312702, + 0.025525318458676338, + -0.0074059003964066505, + -0.02435249835252762, + -0.02266574464738369, + -0.010825528763234615, + 0.019450372084975243, + 0.01984570547938347, + 0.023126967251300812, + 0.011115439236164093, + 9.484383554081433e-6, + 0.014284690842032433, + -0.018857372924685478, + 0.044725313782691956, + 0.027541516348719597, + -0.0014231979148462415, + -0.04132545366883278, + 0.0014256688300520182, + 0.03418310731649399, + 0.026395050808787346, + -0.028912002220749855, + 0.02298201061785221, + 0.0023011660668998957, + 0.026381872594356537, + 0.0007367190555669367, + -0.02352229878306389, + 0.057402316480875015, + 0.0039796833880245686, + -0.0022468077950179577, + 0.0015294436598196626, + -0.004230060614645481, + -0.03167933225631714, + -0.05163045972585678, + -0.008769798092544079, + -0.06130293384194374, + -0.002358818892389536, + -0.04343389347195625, + 0.019872060045599937, + 0.017697731032967567, + 0.009356209076941013, + 0.030256133526563644, + 0.003623883705586195, + -0.0008722029160708189, + -0.01025229599326849, + -0.006219902075827122, + 0.019213171675801277, + 0.012143304571509361, + -0.00582456961274147, + 0.0018448862247169018, + 0.005508303176611662, + -0.0041806441731750965, + 0.00036609460948966444, + 0.012103771790862083, + -0.0028743986040353775, + 0.013599446974694729, + -0.00034303354914300144, + 0.04427726939320564, + -0.01750006340444088, + 0.024747831746935844, + -0.008433765731751919, + -0.04770348593592644, + -0.012070827186107635, + 0.04659655690193176, + 0.04833601787686348, + -0.016406310722231865, + 0.012624292634427547, + -0.05379161238670349, + 0.009955796413123608, + 0.03729305788874626, + 0.0256834514439106, + -0.007768288720399141, + -0.01880466192960739, + -0.03312888741493225, + 0.0009990388061851263, + -0.010720106773078442, + -0.00981743074953556, + -0.00301935407333076, + 0.008611665107309818, + 0.008941109292209148, + -0.003874261165037751, + -0.004226766061037779, + 0.010555384680628777, + 0.008855453692376614, + 0.016893886029720306, + -0.00882251001894474, + 0.013625802472233772, + 0.012828548438847065, + -0.023759499192237854, + -0.018962794914841652, + -0.0015162659110501409, + 0.01174797210842371, + 0.039427854120731354, + -0.0004752229433506727, + 0.0582456961274147, + -0.02033328264951706, + 0.002436238108202815, + -0.016907064244151115, + 0.007214822806417942, + -0.022613033652305603, + 0.015615643933415413, + 0.02350912243127823, + 0.001246121828444302, + -0.005458886735141277, + -0.0007247767644003034, + 0.035237327218055725, + -0.05102428421378136, + -0.002304460620507598, + -0.04978557303547859, + -0.03737212345004082, + 0.01126039493829012, + -0.007188467308878899, + -0.01100342907011509, + -0.003874261165037751, + 0.03882167860865593, + -0.016208643093705177, + -0.0050075482577085495, + -0.029702669009566307, + -0.007320245262235403, + 0.009494575671851635, + 0.022112280130386353, + 0.017052020877599716, + -0.0036436503287404776, + -0.0048065874725580215, + -0.01880466192960739, + -0.03102044388651848, + 0.008881809189915657, + 0.04651748761534691, + -0.011622783727943897, + -0.01747370883822441, + 0.006018941290676594, + 0.028622092679142952, + 0.01066080667078495, + 0.02180919051170349, + -0.015207134187221527, + 0.0178163293749094, + -0.0178163293749094, + -0.011754561215639114, + -0.039744120091199875, + 0.01618228852748871, + -0.014706378802657127, + 0.0030457095708698034, + -0.03115222230553627, + 0.043908294290304184, + -0.01050267368555069, + 0.022244056686758995, + 0.033260662108659744, + 0.022441724315285683, + -0.0005456415819935501, + -0.008045021444559097, + 0.025274941697716713, + -0.0006642414373345673, + 0.0001923129166243598, + -0.005775152705609798, + -6.717568612657487e-5, + -0.014785445295274258, + 0.01166890561580658, + -0.0046220989897847176, + 0.01764502003788948, + -0.03502648323774338, + 0.029544536024332047, + 0.009046531282365322, + -0.015220311470329762, + 0.015945088118314743, + 0.006990801077336073, + -0.023113789036870003, + 0.0005052846972830594, + 0.025288119912147522, + 0.0009339736425317824, + -0.02279752306640148, + 0.042933139950037, + 0.01865970715880394, + 0.011444883421063423, + -0.023087434470653534, + 0.014917222782969475, + -0.024431565776467323, + -0.017065197229385376, + 0.0089081646874547, + -0.02801591530442238, + 0.01440329011529684, + -0.005248042289167643, + -0.003049003891646862, + 0.03252270817756653, + -0.035764437168836594, + 0.023245567455887794, + 0.0008269043755717576, + -0.005897046998143196, + 0.01665668748319149, + 0.02315332181751728, + -0.05384432151913643, + 0.026026073843240738, + -0.0030226483941078186, + 0.005221686791628599, + -0.008077966049313545, + 0.0017789974808692932, + 0.0033899785485118628, + 0.02084721438586712, + 0.019740283489227295, + -0.045884955674409866, + 0.02432614378631115, + -0.025564853101968765, + -0.03897980973124504, + -0.004279477056115866, + 0.01375757995992899, + -0.008288810029625893, + -0.006157307885587215, + -0.01523348968476057, + -0.04915304109454155, + 0.007517911493778229, + -0.03847905620932579, + 0.010805762372910976, + -0.0018053529784083366, + 0.025103630498051643, + 0.02465558610856533, + 0.016959775239229202, + 0.023693609982728958, + -0.005528070032596588, + -0.03381412848830223, + 0.0016982837114483118, + 0.004602332133799791, + 0.018883729353547096, + -0.017882218584418297, + 0.010614684782922268, + 0.022230878472328186, + -0.04203705117106438, + 0.009850374422967434, + -0.01408702414482832, + 0.01440329011529684, + 0.009553874842822552, + -0.0630951076745987, + -0.05168316885828972, + -0.012597937136888504, + 0.015760600566864014, + -0.016775287687778473, + 0.029860801994800568, + 0.02983444556593895, + -0.0016554559115320444, + -0.007274122908711433, + 0.013691691681742668, + -0.008110910654067993, + 0.024602875113487244, + -0.025090452283620834, + -0.0022220995742827654, + -0.015417978167533875, + 0.01914728432893753, + 0.02665860578417778, + -0.010305007919669151, + -0.02867480367422104, + 0.010206174105405807, + -0.011939049698412418, + -0.01174797210842371, + -0.013461080379784107, + -0.023719966411590576, + -0.011299928650259972, + 0.004045572131872177, + 0.00582456961274147, + -0.017789974808692932, + 0.04485709220170975, + 0.013981602154672146, + 0.018712418153882027, + 0.03444666042923927, + 0.002404941013082862, + -0.03154755383729935, + 0.015207134187221527, + -0.06757554411888123, + 0.037055857479572296, + -0.011332872323691845, + 0.02701440639793873, + -0.0025185991544276476, + -0.003310911823064089, + -0.013546735979616642, + -0.004737404175102711, + 0.01256499346345663, + 0.006891967728734016, + 0.022257234901189804, + 0.036265190690755844, + -0.02030692622065544, + 0.03879532217979431, + 0.007794644217938185, + -0.0063813296146690845, + 0.04203705117106438, + -0.006302263122051954, + 0.010680573992431164, + -0.02234947867691517, + -0.011958816088736057, + -0.0031033621635288, + 0.017131086438894272, + -0.010179818607866764, + -0.005669730715453625, + -0.031415775418281555, + 0.007359778508543968, + 0.02698804996907711, + -0.012703359127044678, + -0.05835111811757088, + -0.012354148551821709, + 0.04095647484064102, + 0.005850925110280514, + -0.00840082112699747, + -0.05149868130683899, + -0.019371306523680687, + 0.02115030214190483, + 0.027357026934623718, + -0.01465366780757904, + 0.04496251419186592, + 0.013718047179281712, + -0.021624702960252762, + 0.009231019765138626, + 0.02465558610856533, + 0.0074388450011610985, + -0.006394507363438606, + 0.012275082059204578, + 0.008809331804513931, + 0.024273432791233063, + 5.32450940227136e-6, + -0.0029617012478411198, + 0.016538087278604507, + 0.002846395829692483, + 0.0019700750708580017, + -0.00898723118007183, + -0.006193546578288078, + -0.04013945534825325, + 0.005854219198226929, + -0.012064238078892231, + -0.018923262134194374, + -0.0008026078576222062, + -0.012782426550984383, + -0.007676044479012489, + 0.04501522332429886, + -0.028279470279812813, + 0.005267809145152569, + 0.03336608409881592, + -0.01848839595913887, + -0.004131227266043425, + 0.004055455327033997, + 0.009883319027721882, + -0.024892786517739296, + 0.015404799953103065, + -0.017434174194931984, + -0.009830608032643795, + -0.023430055007338524, + 0.002630610018968582, + 0.017895396798849106, + -0.03884803503751755, + -0.03613341599702835, + -0.015049000270664692, + -0.015075355768203735, + -0.004928481765091419, + -0.0034328061155974865, + 0.02202003449201584, + -0.011721616610884666, + 0.00366341695189476, + 0.017618663609027863, + -0.0025169518776237965, + 0.028727514669299126, + 0.02498503029346466, + -0.010212763212621212, + 0.002902401378378272, + 0.009296908974647522, + -0.002042552689090371, + -0.012538637965917587, + 0.003445983864367008, + -0.0076958113349974155, + 0.01948990486562252, + -0.012795603834092617, + 0.03797830268740654, + 0.01465366780757904, + -0.04187891632318497, + -0.04082469642162323, + 0.024971853941679, + 0.03629154711961746, + 0.011708438396453857, + -0.025393541902303696, + 0.0010583387920632958, + 0.027541516348719597, + 0.005692791659384966, + -0.022415367886424065, + 0.013810290955007076, + -0.0047934097237885, + -0.02402305416762829, + -0.040877409279346466, + -0.0028743986040353775, + 0.03666052594780922, + -0.011154972948133945, + -0.006154013331979513, + -0.033076174557209015, + 0.03413039445877075, + -0.005976113490760326, + 0.02549896389245987, + 0.009599997662007809, + -0.024286609143018723, + -0.01701248623430729, + 0.016248175874352455, + 0.031204933300614357, + 0.0356326587498188, + -0.033260662108659744, + 0.04512064531445503, + 0.02980809099972248, + -0.029729023575782776, + -0.01800081878900528, + -0.00420699967071414, + 0.017697731032967567, + 0.0020771443378180265, + 0.025116808712482452, + -0.0029452291782945395, + 0.015431155450642109, + 0.013388602994382381, + -0.01585284434258938, + 0.01081893965601921, + -0.018883729353547096, + -0.01490404549986124, + 0.026184206828475, + 0.06082853674888611, + -0.02149292454123497, + 0.008394232019782066, + 0.005254631396383047, + 0.01665668748319149, + 0.020056549459695816, + 0.026935338973999023, + -0.007768288720399141, + 0.04161536321043968, + 0.00013157167995814234, + -0.041536297649145126, + 0.02281070128083229, + -0.009830608032643795, + -0.06747012585401535, + 0.001453671487979591, + -0.01898915134370327, + 0.0009957443689927459, + 0.002816746011376381, + 0.029201913625001907, + 0.044409047812223434, + -0.011695261113345623, + -0.005478653125464916, + 0.013586269691586494, + 0.011438294313848019, + 0.0023637604899704456, + 0.013045981526374817, + 0.00806478876620531, + 0.0004274535458534956, + 0.018264373764395714, + -0.018620172515511513, + -0.001016334630548954, + 0.006364857777953148, + 0.006219902075827122, + -0.05234205722808838, + 0.01699930988252163, + 0.036924079060554504, + -0.0003634178719948977, + -0.005033903755247593, + 0.0017246392089873552, + -0.0028809874784201384, + 0.02462923154234886, + 0.0078078219667077065, + -0.030414268374443054, + 0.006766779348254204, + -0.01458777952939272, + 0.019397661089897156, + 0.00331255909986794, + -0.020122438669204712, + -0.016076866537332535, + -0.014429645612835884, + 0.014680023305118084, + -0.03515826165676117, + -0.0022748105693608522, + 0.023746320977807045, + 0.002754151588305831, + 0.01016664132475853, + 0.0008207273203879595, + -0.003142895409837365, + -0.00416087731719017, + -0.019753459841012955, + 0.0048065874725580215, + 0.013744402676820755, + -0.004786821082234383, + 0.006262729875743389, + -0.017710907384753227, + 0.016577620059251785, + 0.019872060045599937, + 0.051577746868133545, + -0.02331145480275154, + -0.009020175784826279, + -0.04177349433302879, + 0.004368427209556103, + 0.003266436979174614, + -0.00882909819483757, + -0.012024705298244953, + 0.002849690383300185, + -0.019885238260030746, + -0.006315440870821476, + -0.005653258413076401, + -0.0026586127933114767, + 0.027594227343797684, + 0.012466159649193287, + 0.023245567455887794, + -0.0039236778393387794, + -0.009375975467264652, + -0.007228000555187464, + -0.04944295063614845, + 0.03033520095050335, + 0.0035579949617385864, + 0.00917172059416771, + 0.00429594935849309, + 0.01149759441614151, + 0.00441125500947237, + 0.014442823827266693, + 0.006585584953427315, + -0.03818914666771889, + 0.0037457779981195927, + 0.012380504049360752, + -0.015088533982634544, + 0.02912284806370735, + 0.00925737526267767, + 0.004078516270965338, + -0.0012156482553109527, + 0.00044598476961255074, + 0.01050267368555069, + -0.012327793054282665, + -0.02980809099972248, + -0.01116156205534935, + -0.030282489955425262, + 0.004697870928794146, + -0.030941378325223923, + 0.00024028819461818784, + -0.01292079221457243, + 0.005037198308855295, + 0.011708438396453857, + -0.013494024984538555, + -0.04348660260438919, + 0.02730431593954563, + -0.004404665902256966, + 0.007616744842380285, + 0.003072065068408847, + 0.0028134514577686787, + 0.019608505070209503, + 0.012512282468378544, + -0.002764035016298294, + -0.02667178399860859, + 0.0003504460328258574, + -0.04469895735383034, + -0.02097899280488491, + -0.0005094027146697044, + 0.010627862997353077, + -0.001501440885476768, + -0.0001535002957098186, + -0.02432614378631115, + -0.031573910266160965, + 0.012018116191029549, + -0.008473298512399197, + -0.051419615745544434, + 0.0008870278834365308, + 0.0396386981010437, + -0.02701440639793873, + 0.06615234911441803, + 0.010436785407364368, + 0.0020771443378180265, + -0.023271922022104263, + -0.020596837624907494, + 0.03046697936952114, + 0.03312888741493225, + 0.02416800893843174, + 0.008736854419112206, + -0.015391622669994831, + -0.008143855258822441, + -0.010878239758312702, + 0.005817980505526066, + 0.02030692622065544, + -0.002294577192515135, + -0.017394641414284706, + -0.03399861976504326, + -0.003834727918729186, + 0.027383383363485336, + 0.027541516348719597, + 0.010285240598022938, + 0.009619764052331448, + 0.01684117503464222, + 0.0073466007597744465, + -0.029439114034175873, + 0.01157007273286581, + -0.038716256618499756, + 0.0066910069435834885, + -0.01166890561580658, + -0.042432382702827454, + -0.04712366685271263, + -0.02846395969390869, + -0.00724776741117239, + 0.01684117503464222, + -0.020201504230499268, + 0.01814577355980873, + -0.02864844724535942, + -0.017908575013279915, + 0.007708989083766937, + 0.021216191351413727, + -0.0188178401440382, + 0.03067782334983349, + 0.035395462065935135, + 0.0034328061155974865, + 0.004325599409639835, + 0.006088124588131905, + 0.02316650003194809, + 0.000989155494607985, + 0.01750006340444088, + 0.004009332973510027, + 0.003220314858481288, + -0.008862042799592018, + 0.005811391863971949, + -1.8402533896733075e-5, + -0.005010842811316252, + -0.034420307725667953, + 0.0124134486541152, + -0.04327575862407684, + 0.010601507499814034, + 0.01174797210842371, + 0.0013754286337643862, + -0.007017156574875116, + 0.007399311754852533, + 0.012242138385772705, + -0.029280981048941612, + 0.006483457516878843, + 0.00798572227358818, + -0.01458777952939272, + 0.0026783794164657593, + 0.01032477430999279, + -0.016445843502879143, + 0.024431565776467323, + 0.013902535662055016, + 0.0027656820602715015, + 0.003057240042835474, + -0.010337951593101025, + 0.012769248336553574, + -0.01735510863363743, + -0.0006185310776345432, + 0.0076035670936107635, + -0.023548655211925507, + 0.03378777205944061, + -0.03837363421916962, + -0.004124638624489307, + -0.03365599736571312, + 0.004134521819651127, + -0.018606996163725853, + -0.037240345031023026, + 0.00816362164914608, + 0.009145365096628666, + -0.005715853068977594, + -0.01980617083609104, + -0.006084830034524202, + -0.005442414432764053, + 0.025037741288542747, + -0.008361288346350193, + 0.0036205891519784927, + -0.0050240205600857735, + -0.004249827470630407, + 0.024708297103643417, + 0.021875079721212387, + 0.010133696720004082, + -0.02581522986292839, + -0.010680573992431164, + -0.02116348035633564, + 0.05550472065806389, + 0.011688672006130219, + -0.007208234164863825, + -0.05882551521062851, + -0.009474808350205421, + 0.0231796782463789, + -0.024695120751857758, + -0.029280981048941612, + 0.008110910654067993, + 0.012789014726877213, + -0.01515442319214344, + 0.013573091477155685, + 0.01900232769548893, + -0.005785036366432905, + 0.019964303821325302, + 0.018949616700410843, + -0.03521097078919411, + 0.02202003449201584, + 0.009606585837900639, + -0.015694711357355118, + 0.0003901852178387344, + -0.025762518867850304, + 0.024866431951522827, + -0.04411913827061653, + -0.03449937328696251, + 0.0005279339384287596, + 0.02980809099972248, + -0.00358435045927763, + -0.006157307885587215, + -0.011405350640416145, + -0.0029831151477992535, + -0.00611777463927865, + -0.0039994497783482075, + 0.009731775149703026, + -0.006766779348254204, + 0.0153125561773777, + 0.020096082240343094, + -0.02381221018731594, + 0.027778714895248413, + -0.010272063314914703, + 0.002026080386713147, + -0.004434315953403711, + -0.0074388450011610985, + 0.005564308725297451, + -0.016445843502879143, + 0.021532457321882248, + 0.004892243072390556, + 0.021532457321882248, + 0.03652874752879143, + -0.04248509556055069, + 0.03225915506482124, + -0.021624702960252762, + -0.015193955972790718, + 0.032232798635959625, + 0.0014437881764024496, + -0.00010665748413885012, + 0.018580639734864235, + 0.007682633586227894, + -0.012459571473300457, + 0.027277961373329163, + 0.012716537341475487, + 0.02167741395533085, + 0.0018053529784083366, + 0.014218801632523537, + 0.01498311199247837, + 0.0015936852432787418, + -0.009560463950037956, + 0.007570622488856316, + -0.010693751275539398, + 0.01009416300803423, + -0.020544126629829407, + -0.027067117393016815, + 0.035738080739974976, + 0.004740698728710413, + -0.002793684834614396, + 0.029623601585626602, + -0.022876588627696037, + 0.011866572313010693, + -0.0006819490226916969, + -0.013704868964850903, + 0.0008565543103031814, + -0.0047934097237885, + -0.03225915506482124, + 0.07058008015155792, + 0.0008647904032841325, + 0.0025482492055743933, + 0.0076958113349974155, + -0.019924771040678024, + -0.0016472198767587543, + 0.008150443434715271, + 0.01157666090875864, + 0.005017431918531656, + 0.01215648278594017, + -0.02999257855117321, + -0.0008977348334155977, + 0.028543025255203247, + 0.03926972299814224, + 0.0018745361594483256, + 0.006664651446044445, + 0.026236917823553085, + 0.00558407511562109, + -0.027620581910014153, + -0.005383114330470562, + 0.013474258594214916, + -0.009494575671851635, + 0.017381463199853897, + -0.009534108452498913, + -0.004763759672641754, + -0.018751950934529305, + -0.006677829194813967, + 0.015892377123236656, + -0.04799339920282364, + -0.0034789282362908125, + 0.01551022194325924, + 0.003118187189102173, + 0.007458611391484737, + 0.026289628818631172, + -0.02283705584704876, + 0.005475359037518501, + 0.009810841642320156, + -0.025235408917069435, + -0.011187917552888393, + -0.010720106773078442, + -0.0025235407520085573, + -0.020451880991458893, + -0.015417978167533875, + -0.011451472528278828, + -0.0019371305825188756, + 0.005768564064055681, + 0.006098007783293724, + 0.0005472888005897403, + 0.006157307885587215, + 6.928618677193299e-5, + 0.0070566898211836815, + 0.00403568847104907, + -0.024945497512817383, + -0.009415509179234505, + -0.012275082059204578, + -0.011504183523356915, + -0.014469179324805737, + -0.02617102861404419, + -0.03768838942050934, + -0.015049000270664692, + 0.004467260092496872, + 0.012789014726877213, + 0.005109676159918308, + -0.02016197144985199, + -0.03294439613819122, + 0.002900754101574421, + 9.533284901408479e-5, + -0.006272613070905209, + -0.009553874842822552, + -0.007254356052726507, + -0.012360737659037113, + -0.004740698728710413, + -0.003722716821357608, + 0.006826078984886408, + 0.005234864540398121, + 0.020043371245265007, + 0.026434583589434624, + -0.025960184633731842, + -0.012532048858702183, + -0.009501163847744465, + -0.01883101835846901, + 0.008288810029625893, + 0.014956756494939327, + 0.019872060045599937, + 0.007478378247469664, + -0.010884828865528107, + -0.004760465584695339, + -0.013045981526374817, + 6.856552499812096e-5, + -0.029702669009566307, + -0.020425526425242424, + 0.022033212706446648, + 0.009889908134937286, + -0.027857782319188118, + -0.0006345914443954825, + -0.020214682444930077, + -0.022784344851970673, + -0.0038116667419672012, + 0.003831433365121484, + -0.01601097732782364, + -0.00950775295495987, + 0.009369386360049248, + 0.01815895177423954, + -0.02315332181751728, + 0.020017016679048538, + 0.013810290955007076, + -0.008446943014860153, + 0.011616194620728493, + -0.013197525404393673, + -0.017262864857912064, + 0.0021611524280160666, + -0.0012181190541014075, + 0.012044471688568592, + -0.01066080667078495, + 0.004737404175102711, + 0.004585860297083855, + -0.004767054226249456, + -0.008407410234212875, + 0.032048311084508896, + 0.002164446981623769, + -0.016300886869430542, + 0.0011547011090442538, + -0.02068908140063286, + -0.0055544255301356316, + 0.01599779911339283, + -0.020201504230499268, + -0.00027549752849154174, + 0.004150994122028351, + -0.020201504230499268, + -0.009125597774982452, + 0.01631406508386135, + 0.00400274433195591, + 0.014521890319883823, + 0.009362797252833843, + 0.024378854781389236, + -0.01449553482234478, + 0.018264373764395714, + -0.003174192737787962, + -0.016050510108470917, + 0.010865062475204468, + -0.023021545261144638, + -0.0002841454406734556, + 0.004895537625998259, + 0.017552774399518967, + 0.012261904776096344, + 0.020056549459695816, + -0.016762109473347664, + 0.006585584953427315, + 0.027884138748049736, + -0.013118458911776543, + 0.02451063133776188, + -0.009448452852666378, + -0.007195056416094303, + 0.004681398626416922, + 0.019055038690567017, + -0.018093062564730644, + 0.011932460591197014, + -0.012294849380850792, + -0.003913794178515673, + 0.011266984045505524, + -0.005103087052702904, + -0.010298418812453747, + -0.015207134187221527, + -0.010568562895059586, + 0.015536577440798283, + 0.00395662197843194, + -0.005518186371773481, + -0.02499820850789547, + 0.011365816928446293, + -0.0021067941561341286, + -0.014930400997400284, + 0.004701165482401848, + -0.014851334504783154, + 0.010272063314914703, + 0.010785995982587337, + -0.024102121591567993, + 0.012373915873467922, + -0.005705969408154488, + 0.026065606623888016, + 0.004935070872306824, + -0.01474591251462698, + -0.03386684134602547, + 0.012630881741642952, + 0.011688672006130219, + 0.01614275388419628, + -0.002437885385006666, + -0.021532457321882248, + -0.022389011457562447, + -0.020267393440008163, + -0.0009809194598346949, + 0.023285100236535072, + -0.02650047279894352, + -0.016907064244151115, + 0.017579130828380585, + -0.0008231981191784143, + 0.011635961011052132, + -0.01015346311032772, + -0.013928891159594059, + 0.003399861743673682, + 2.76166701951297e-5, + 0.009685653261840343, + -0.010239118710160255, + 0.001633218489587307, + -0.008710498921573162, + 0.011939049698412418, + -0.010146874003112316, + -0.00732683390378952, + 0.0010904595255851746, + 0.007636511232703924, + -0.012736303731799126, + -0.02667178399860859, + 0.009448452852666378, + -0.016090042889118195, + 0.020926281809806824, + 0.03471021726727486, + -0.00387755548581481, + -0.002724501769989729, + 0.010515851899981499, + 0.0012156482553109527, + -0.005050376057624817, + -0.001246121828444302, + 0.0027673293370753527, + -0.013474258594214916, + 0.004342071712017059, + -0.0023621132131665945, + -0.03181111067533493, + 0.005307342391461134, + 0.003630472579970956, + 0.032918043434619904, + 0.000660946941934526, + 0.01340836938470602, + -0.0015706241829320788, + -0.0130921034142375, + -0.00036671230918727815, + 0.007135756313800812, + 0.0006115303840488195, + -0.002241866197437048, + 0.02349594421684742, + -0.003002881770953536, + -0.0077880555763840675, + 0.001221413491293788, + -0.02014879323542118, + 0.0006152366404421628, + 0.003157720435410738, + -0.0010929303243756294, + -0.000229993078391999, + -0.013573091477155685, + 0.013223880901932716, + 0.007188467308878899, + -0.0004587507282849401, + -0.01765819638967514, + 0.01618228852748871, + 0.002063966589048505, + -0.0012041176669299603, + 0.0024856547825038433, + 0.016393132507801056, + -0.006256141234189272, + 0.006911734584718943, + -0.020109260454773903, + -0.002299519022926688, + -0.006885379087179899, + -0.01292079221457243, + 0.01883101835846901, + -0.004361838102340698, + 0.002352230018004775, + 0.021967323496937752, + 0.004608921241015196, + 0.0028974597807973623, + 0.0035349337849766016, + -0.018040351569652557, + -0.0017477002693340182, + 0.01473273430019617, + -0.00563019746914506, + -0.004964720457792282, + 0.012868081219494343, + 0.004539737943559885, + 0.004832942970097065, + -0.002026080386713147, + 0.019779816269874573, + 0.004684693180024624, + 0.01208400446921587, + 0.01964803785085678, + -0.005432531237602234, + 0.013382013887166977, + -0.026698140427470207, + 0.010305007919669151, + -0.013276591897010803, + 0.017565952613949776, + 0.0044738491997122765, + -0.004315716214478016, + -0.013704868964850903, + 0.024866431951522827, + -0.007649688981473446, + 0.003963211085647345, + 0.00745202274993062, + 0.00043404242023825645, + -0.004921893123537302, + 0.04032394289970398, + 0.010219352319836617, + -0.013744402676820755, + -0.016024155542254448, + -0.015444333665072918, + 0.027093471959233284, + 0.024115297943353653, + 0.03449937328696251, + -0.004799998831003904, + 0.03679230436682701, + 0.006812901236116886, + -0.010634451173245907, + -0.030414268374443054, + -0.004032394383102655, + 0.004226766061037779, + -0.011537128128111362, + -0.010298418812453747, + 0.008176799863576889, + 0.01108249556273222, + 0.01717061921954155, + -0.003785311244428158, + 0.007478378247469664, + 0.01884419471025467, + -0.033735062927007675, + 0.013533558696508408, + -0.03984954208135605, + -0.013942069374024868, + -0.00783417746424675, + 0.00034385715844109654, + -0.022889766842126846, + 0.0221781674772501, + 0.01007439661771059, + 0.02780507132411003, + 0.016617154702544212, + 0.001043513766489923, + 0.03199559822678566, + 0.016762109473347664, + 0.0014133146032691002, + 0.0076233334839344025, + -0.006845845840871334, + 0.00470446003600955, + -0.0018432390643283725, + 0.01750006340444088, + -0.01664350926876068, + 0.015114889480173588, + 0.025301296263933182, + 0.00806478876620531, + -0.006295674480497837, + -0.013876180164515972, + -0.0025696628727018833, + 0.002917226403951645, + -0.008216332644224167, + -0.02350912243127823, + -0.005656552966684103, + -0.030519690364599228, + 0.012881259433925152, + -0.010351129807531834, + 0.002437885385006666, + 3.176045720465481e-5, + 0.0064571020193398, + 0.011846804991364479, + -0.0128417257219553, + -0.0068392567336559296, + -0.018857372924685478, + -0.002653671195730567, + 0.023601366207003593, + -0.01092436257749796, + -0.0093364417552948, + 0.010693751275539398, + -0.006058474536985159, + -0.009006998501718044, + -0.0046220989897847176, + 0.039559632539749146, + -0.017921751365065575, + -0.002530129626393318, + 0.00024770069285295904, + -0.0019980776123702526, + 0.03916430100798607, + -0.01913410611450672, + 0.024233898147940636, + -0.01565517671406269, + -0.006130952388048172, + -0.027277961373329163, + -0.03879532217979431, + -0.0178163293749094, + -0.010555384680628777, + -0.008473298512399197, + -0.0008371995063498616, + -0.040218520909547806, + 0.0033800951205193996, + -0.011971994303166866, + 0.03178475424647331, + 0.009764719754457474, + 0.0035876447800546885, + 0.007504733745008707, + 0.027251604944467545, + -0.013125048018991947, + -0.016590798273682594, + 0.03586985915899277, + 0.00490871537476778, + 0.028727514669299126, + -0.010772817768156528, + 0.02698804996907711, + 0.03183746710419655, + -0.00892134290188551, + -0.026684962213039398, + 0.003722716821357608, + 0.008486476726830006, + 0.01233438216149807, + 0.02382538840174675, + -0.02230994589626789, + -0.006891967728734016, + 0.004111460875719786, + -0.043038561940193176, + -0.0017509947065263987, + -0.019555794075131416, + -0.012670415453612804, + -0.00890157651156187, + -0.02999257855117321, + 0.00950775295495987, + -0.009501163847744465, + 0.00900040939450264, + 0.00925078708678484, + 0.0038907332345843315, + -0.017921751365065575, + 0.010430196300148964, + 0.0035645838361233473, + 0.0050964984111487865, + 0.018620172515511513, + 0.018870551139116287, + -0.006282496731728315, + -0.003095126012340188, + -0.012037882581353188, + -0.00247577135451138, + 0.01474591251462698, + 0.0027409738395363092, + 0.02751515991985798, + 0.018778307363390923, + -0.03521097078919411, + -0.01883101835846901, + -0.005577486474066973, + 0.016893886029720306, + 0.0025894297286868095, + 0.01583966612815857, + -0.006832668092101812, + -0.03500012680888176, + -0.011728205718100071, + -0.005323814693838358, + 0.025749340653419495, + 0.00806478876620531, + 0.014864511787891388, + 0.011701850220561028, + -0.0004078928322996944, + -0.01768455281853676, + 0.004687987733632326, + 0.010529029183089733, + 0.00023328751558437943, + 0.014205624349415302, + 0.01918681710958481, + 0.0074059003964066505, + 0.01106931734830141, + 0.006163896527141333, + -0.014956756494939327, + 0.00925078708678484, + -0.002800273708999157, + 0.002342346590012312, + -0.01797446236014366, + 0.012037882581353188, + 0.005241453647613525, + 0.006509813014417887, + -0.017038842663168907, + 0.008862042799592018, + -0.02481371909379959, + -0.015417978167533875, + 0.004786821082234383, + 0.002304460620507598, + 0.0063055576756596565, + 0.008697320707142353, + 0.0018959500594064593, + -0.02099216915667057, + -0.0050075482577085495, + 0.014956756494939327, + -0.0011357581242918968, + 0.003269731532782316, + 0.00127165368758142, + -0.011682082898914814, + -0.003963211085647345, + -0.01833026297390461, + 0.04319669306278229, + -0.0007766641792841256, + 0.013928891159594059, + 0.0039829774759709835, + 0.008045021444559097, + -0.029755380004644394, + -0.004645159933716059, + 0.0236804336309433, + -0.005195331294089556, + -0.0047143432311713696, + -0.021940968930721283, + -0.014640490524470806, + 0.02381221018731594, + 0.019885238260030746, + -0.032232798635959625, + -0.007083045318722725, + 0.004523265641182661, + -0.008532598614692688, + -0.015220311470329762, + 0.0035975282080471516, + 0.012064238078892231, + 0.002553190803155303, + 0.016867531463503838, + 0.006091419141739607, + -0.005623608827590942, + 0.015431155450642109, + -0.022375835105776787, + -0.003828139044344425, + 0.010291829705238342, + 0.019239528104662895, + 0.0026174322701990604, + -0.008440354838967323, + -0.0004698694683611393, + -0.01699930988252163, + -0.002857926534488797, + 0.006091419141739607, + 0.01058174017816782, + 0.00429594935849309, + -0.0025943713262677193, + 9.909056825563312e-5, + 0.00027446800959296525, + -0.0020656136330217123, + 0.015417978167533875, + 0.012321204878389835, + -0.01801399700343609, + 0.007959366776049137, + -0.02016197144985199, + 0.002530129626393318, + -0.007708989083766937, + -0.004869182128459215, + 0.004875770770013332, + -0.013994780369102955, + 0.01985888183116913, + 0.014390112832188606, + 0.01664350926876068, + -0.01424515713006258, + 0.00704351207241416, + 0.02014879323542118, + 0.01714426465332508, + -0.0019124222453683615, + -0.023126967251300812, + -0.0010336304549127817, + 0.005066848360002041, + 0.0015385033329948783, + -0.002345641143620014, + 0.001298832823522389, + -0.021374324336647987, + 0.006417568773031235, + 0.006371446419507265, + -0.01684117503464222, + -0.02468194253742695, + -0.009389153681695461, + 0.0029353457503020763, + -0.02250761166214943, + -0.007636511232703924, + 0.01092436257749796, + 0.0021677413024008274, + 0.05047081783413887, + 0.028094982728362083, + -0.006552640814334154, + 0.001610157429240644, + 0.0039039109833538532, + -0.021716946735978127, + -0.010522440075874329, + 0.008367876522243023, + -0.011728205718100071, + 0.013876180164515972, + -0.04612215608358383, + 0.022428546100854874, + -0.024563342332839966, + -0.019041862338781357, + -0.005946463905274868, + 0.01408702414482832, + 0.016221821308135986, + -0.007741933222860098, + -0.002801920985803008, + 0.006111185532063246, + 0.012169660069048405, + 0.000610706745646894, + -0.004869182128459215, + -0.003515167161822319, + -0.000255113176535815, + -0.016459021717309952, + -0.0014849686995148659, + -0.024774186313152313, + -0.006773367989808321, + 0.027277961373329163, + -0.007432255893945694, + -0.005857513751834631, + 0.010357718914747238, + -0.012367326766252518, + -0.02230994589626789, + 0.0014355521416291595, + -0.00792642217129469, + 0.0038215501699596643, + 0.001298832823522389, + 0.013665336184203625, + 0.008025255054235458, + -0.0043980772607028484, + 0.00039677409222349524, + 0.008110910654067993, + 0.010054630227386951, + 0.003413039492443204, + -0.015497044660151005, + -0.007142345421016216, + 0.012439804151654243, + -0.013428136706352234, + -0.018949616700410843, + 0.0002561426954343915, + -0.018132595345377922, + 0.022033212706446648, + 0.005669730715453625, + 0.022757990285754204, + 0.016603976488113403, + 0.0122355492785573, + -0.0007330128573812544, + -0.021756479516625404, + 0.011583250015974045, + -0.0078078219667077065, + -0.020610015839338303, + 0.017921751365065575, + 0.004239943809807301, + 0.0036107059568166733, + 0.0161691103130579, + 0.015945088118314743, + 0.01040384080260992, + 0.004118049517273903, + -0.014798623509705067, + 0.004888948518782854, + -0.002492243656888604, + 0.021756479516625404, + -0.022033212706446648, + 0.009125597774982452, + -0.008137266151607037, + -0.009955796413123608, + 0.005172270350158215, + -0.038347277790308, + 0.006480162963271141, + -0.022375835105776787, + -0.0002806450938805938, + 0.0014989700866863132, + -0.008275632746517658, + -0.00890157651156187, + 0.006486751604825258, + 0.0013564855325967073, + 0.01523348968476057, + 0.0037820166908204556, + 0.020385993644595146, + 0.0007894301088526845, + 0.014297868125140667, + 0.008288810029625893, + 0.00833493284881115, + 0.031890176236629486, + -0.03194288909435272, + 0.010904595255851746, + -0.015773776918649673, + 0.010272063314914703, + 0.0027426211163401604, + -0.013810290955007076, + -0.0021232664585113525, + -0.007676044479012489, + -0.010357718914747238, + 0.009224431589245796, + -0.0030292372684925795, + -0.018462039530277252, + -0.020227860659360886, + 0.017104731872677803, + -0.001350720296613872, + 0.0027656820602715015, + -0.005593958776444197, + -0.013612625189125538, + 0.026553183794021606, + -0.0007346600759774446, + -0.005656552966684103, + 0.004200410563498735, + -0.011359227821230888, + 0.03225915506482124, + 0.011504183523356915, + 0.04082469642162323, + 0.011458061635494232, + 0.006226491183042526, + -0.0050437874160707, + 0.025195874273777008, + -0.005399586632847786, + -0.0059398747980594635, + -0.011662316508591175, + -0.019252706319093704, + -0.018369795754551888, + -0.006753601599484682, + 0.001513795112259686, + -0.03352421894669533, + -0.031231287866830826, + 0.011332872323691845, + 0.011820449493825436, + -0.0002682909253053367, + -0.005564308725297451, + 0.007471789140254259, + 0.014811800792813301, + 0.002348935464397073, + 0.013559914194047451, + -0.0008680848404765129, + -0.0049153040163218975, + 0.009534108452498913, + -0.007959366776049137, + 0.0005822922103106976, + -0.00352175603620708, + -0.0019206583965569735, + 0.011115439236164093, + 0.027699649333953857, + -0.006898556835949421, + 0.014021135866641998, + -0.014693201519548893, + 0.013243647292256355, + 0.008565543219447136, + -0.0013910771813243628, + 0.023733144626021385, + 0.005485242232680321, + -0.01780315302312374, + 0.011695261113345623, + -0.006177074275910854, + -0.028411248698830605, + 0.00973836425691843, + -0.00529087008908391, + -0.007142345421016216, + -0.0016274532536044717, + -0.0015417977701872587, + -0.0010451610432937741, + 0.009955796413123608, + -0.011049550957977772, + -2.5724941224325448e-5, + -0.011286750435829163, + 0.014429645612835884, + 0.015022644773125648, + -0.006022235844284296, + 0.0022797523997724056, + -0.003554700408130884, + 0.001762525294907391, + 0.015049000270664692, + 0.0034361006692051888, + -0.015879198908805847, + 0.015892377123236656, + 0.009830608032643795, + -0.031257644295692444, + -0.0029847624246031046, + 0.005231570452451706, + 0.011774327605962753, + -0.029570890590548515, + 0.010957306250929832, + -0.004065338522195816, + -0.0020227860659360886, + 0.003561289282515645, + -0.009718596935272217, + 0.013335891999304295, + 0.028200404718518257, + -0.0063978019170463085, + 0.0010641040280461311, + -0.013652157969772816, + -0.01735510863363743, + 0.0117347938939929, + 0.038057368248701096, + -0.0015632116701453924, + 0.002088674809783697, + 0.001988194417208433, + -0.017381463199853897, + 0.000807137752417475, + -0.038426343351602554, + 0.02013561502099037, + 0.011023195460438728, + -0.006157307885587215, + 0.010898007079958916, + 0.0074388450011610985, + 0.006806312594562769, + 0.0006172956200316548, + 0.0030391206964850426, + 0.004098283126950264, + 0.002904048655182123, + -0.002289635594934225, + -0.002302813343703747, + 0.03884803503751755, + -0.023759499192237854, + -0.004790115170180798, + -0.0054819476790726185, + -0.008249277248978615, + -0.010641040280461311, + -0.005254631396383047, + 0.0129142040386796, + 0.037213992327451706, + 0.006371446419507265, + -0.009296908974647522, + 0.010285240598022938, + 0.010515851899981499, + -0.00022072746651247144, + -0.02296883426606655, + -0.010331363417208195, + -0.006793134845793247, + -0.013559914194047451, + 0.0012625940144062042, + 0.030546044930815697, + -0.015457510948181152, + 0.013968424871563911, + -0.0005094027146697044, + 0.006984212435781956, + 0.02614467404782772, + -0.009461631067097187, + 0.013395192101597786, + -0.020069727674126625, + 0.027198893949389458, + 0.017276041209697723, + 0.03365599736571312, + -0.007886888459324837, + 0.016880709677934647, + 0.01400795765221119, + -0.027594227343797684, + 0.0010855179280042648, + 0.019410839304327965, + 0.009099242277443409, + -0.019358128309249878, + -0.0027030878700315952, + -9.979836249840446e-6, + -0.01199834980070591, + -0.0156683549284935, + -0.01914728432893753, + -0.0024329437874257565, + 0.011596428230404854, + -0.011965405195951462, + 0.00387755548581481, + -0.005014137364923954, + -0.010456551797688007, + 0.012538637965917587, + 0.0012897731503471732, + 0.0013350717490538955, + 0.02283705584704876, + 0.015035822987556458, + 0.017038842663168907, + -0.012854903936386108, + -0.016459021717309952, + 0.013863001950085163, + 0.02084721438586712, + -0.008077966049313545, + -0.008295399136841297, + -0.008176799863576889, + 0.02198050171136856, + -0.007214822806417942, + -0.02946546860039234, + 0.010871650651097298, + -0.016959775239229202, + -0.001279889838770032, + -0.0007428961689583957, + -0.030071645975112915, + 0.0013185994466766715, + 0.011214273050427437, + -0.017855864018201828, + -0.013849824666976929, + -0.0038841443601995707, + -0.012209193781018257, + 0.00031214815680868924, + -0.00030411797342821956, + 0.002413177164271474, + -0.028437603265047073, + -0.001497322809882462, + 0.007919833064079285, + 0.0020112553611397743, + 0.0008779682102613151, + -0.011174739338457584, + -0.028226759284734726, + 0.01025229599326849, + 0.03399861976504326, + -0.002647082321345806, + 0.021058058366179466, + -0.007320245262235403, + -0.014508712105453014, + -0.0025581324007362127, + 0.0036996558774262667, + 0.019279060885310173, + -0.024550164118409157, + 0.02484007552266121, + -0.014152913354337215, + 0.022072745487093925, + -0.019582150503993034, + 0.005775152705609798, + -0.009527519345283508, + 0.004671515431255102, + 0.012604526244103909, + -0.0015146186342462897, + 0.011543717235326767, + -0.01182703860104084, + 0.00033829777385108173, + -0.0019008917734026909, + 0.019424017518758774, + -0.007952777668833733, + 0.007702399976551533, + 0.019740283489227295, + -0.01718379743397236, + 0.00011921754048671573, + 0.023416876792907715, + -0.022771166637539864, + -0.003072065068408847, + 0.013994780369102955, + 0.017131086438894272, + -0.00013733695959672332, + 0.01099025085568428, + -0.008440354838967323, + 0.01190610509365797, + 0.0027492099907249212, + 0.0035184617154300213, + -0.017869040369987488, + 0.023588187992572784, + 0.010594918392598629, + -0.001892655622214079, + 0.006509813014417887, + -0.009375975467264652, + 0.012868081219494343, + -0.012650648131966591, + 0.008881809189915657, + -0.03853176534175873, + -0.007821000181138515, + 0.012446393258869648, + -0.019081395119428635, + -0.010588329285383224, + 0.005112970247864723, + -0.020860392600297928, + -0.014640490524470806, + -0.01292079221457243, + 0.0016826350474730134, + -0.003834727918729186, + -0.0065065184608101845, + 0.002507068682461977, + 0.025709807872772217, + 0.000884557084646076, + -0.01558928843587637, + -0.012558404356241226, + 0.014034313149750233, + 0.0006947149522602558, + -0.0008231981191784143, + -0.016630331054329872, + -0.004038983024656773, + -0.007445433642715216, + -0.02964995801448822, + 0.015378444455564022, + -0.03579079359769821, + 0.024853253737092018, + 0.008499654941260815, + 0.01583966612815857, + -0.02202003449201584, + 0.007030334323644638, + 0.0009776250226423144, + 0.023258743807673454, + -0.00028599853976629674, + -0.01558928843587637, + 0.01632724329829216, + -0.034736573696136475, + 0.033418796956539154, + -0.004687987733632326, + 0.013382013887166977, + 0.01651173271238804, + 0.013902535662055016, + -0.01835661754012108, + -0.002281399443745613, + -0.009277142584323883, + -0.007524500135332346, + -0.01192587148398161, + 0.008927932009100914, + -0.005910224746912718, + -0.0060485913418233395, + 0.02279752306640148, + 0.0009850375354290009, + 0.012769248336553574, + 0.0013984896941110492, + -0.009573642164468765, + 0.022296767681837082, + 0.0234695877879858, + 0.03231186419725418, + -0.002352230018004775, + -0.0069315009750425816, + 0.006677829194813967, + 0.0044903215020895, + 0.010041452012956142, + 0.024247076362371445, + -0.008638020604848862, + -0.002614137949422002, + 0.012518870644271374, + 0.004338777158409357, + -0.015088533982634544, + -0.016037331894040108, + 0.00399286113679409, + 0.00031420719460584223, + -0.0014964992878958583, + 0.01946355029940605, + 0.0091585423797369, + 0.005350170191377401, + 0.0005736442981287837, + -0.017078375443816185, + -0.011682082898914814, + 0.004009332973510027, + -0.009975563734769821, + 0.025064097717404366, + -0.008453532122075558, + -0.012940559536218643, + 0.009455041959881783, + 0.001996430568397045, + -0.015602466650307178, + -0.0234695877879858, + -0.0023802327923476696, + 0.00016019212489482015, + 0.010337951593101025, + 0.010680573992431164, + 0.009112420491874218, + -0.01307233702391386, + -0.009889908134937286, + -0.019727105274796486, + -0.017921751365065575, + 0.03252270817756653, + 0.016775287687778473, + -0.012802192941308022, + -0.003004529047757387, + 0.027594227343797684, + 0.004487026948481798, + -0.003373506246134639, + 0.03310253098607063, + -0.00224516075104475, + 0.013302947394549847, + -0.003946738783270121, + 0.01149759441614151, + 0.018633350729942322, + -8.812626037979499e-5, + -0.03202195465564728, + 0.014376934617757797, + -0.006727246101945639, + -0.0045331488363444805, + -0.0025103630032390356, + -0.02064954861998558, + 0.007478378247469664, + 0.021058058366179466, + 0.021255725994706154, + 0.014798623509705067, + -0.0006280025700107217, + 0.00884227640926838, + 0.0023571716155856848, + -0.01747370883822441, + 0.004358543548732996, + -0.008552365936338902, + 0.003416334046050906, + 0.001777350204065442, + -0.011247217655181885, + -0.008249277248978615, + 0.012637470848858356, + -0.0009965680073946714, + -0.010785995982587337, + 0.0231796782463789, + 0.012887848541140556, + -0.010028274729847908, + 0.01897597312927246, + -0.010601507499814034, + 0.017447352409362793, + -0.022059569135308266, + 0.005396292079240084, + -0.03929607570171356, + 0.003864377737045288, + 0.008150443434715271, + 0.0029271095991134644, + 0.0005909401224926114, + -0.02912284806370735, + 0.0024280021898448467, + -0.000558407511562109, + 0.004664926789700985, + 0.016432665288448334, + 0.006806312594562769, + 0.02049141563475132, + 0.008862042799592018, + -0.020109260454773903, + 0.009092654101550579, + -0.010041452012956142, + -0.0006770073669031262, + -0.012090593576431274, + -0.003976388834416866, + 0.00458915438503027, + -0.013546735979616642, + 0.007774877827614546, + -0.013006447814404964, + -0.037556614726781845, + -0.013382013887166977, + 0.00036712412838824093, + 0.01342154759913683, + 0.0005439943633973598, + 0.0074388450011610985, + -0.0001248798507731408, + 0.021044880151748657, + 0.0027261488139629364, + 7.76767119532451e-5, + 0.006068358197808266, + 0.007550855632871389, + -0.02730431593954563, + 0.013039392419159412, + -0.016445843502879143, + 0.023285100236535072, + 0.0026750850956887007, + 0.011708438396453857, + -0.00925737526267767, + 0.035237327218055725, + -0.0029699373990297318, + 0.019885238260030746, + -0.002024433109909296, + -0.009059709496796131, + 0.0024082353338599205, + -0.015325733460485935, + 0.0004538090724963695, + 0.011952226981520653, + 0.018738772720098495, + 0.02084721438586712, + -0.023957164958119392, + 0.009316675364971161, + -0.002607549075037241, + -0.004974604118615389, + -0.026566362008452415, + -0.011675494723021984, + -0.008763209916651249, + -0.014271512627601624, + 0.011174739338457584, + 0.005943169351667166, + -0.011075906455516815, + -0.005791625007987022, + -0.012709948234260082, + -0.005392997991293669, + 0.020728614181280136, + 0.007188467308878899, + 0.0026240211445838213, + -0.004450788255780935, + 0.01166890561580658, + 0.006944678723812103, + -0.002768976613879204, + -0.007274122908711433, + 0.016630331054329872, + -0.006391213275492191, + 0.025920651853084564, + -0.005458886735141277, + -0.01091118436306715, + -0.0027212072163820267, + -0.01865970715880394, + 0.034894704818725586, + 0.0005390527076087892, + -0.022085923701524734, + -0.02680356241762638, + -0.006045296788215637, + 0.0119851715862751, + 0.010311596095561981, + -0.005053670611232519, + 0.013559914194047451, + 0.020385993644595146, + -0.01900232769548893, + 0.00550500862300396, + -0.010878239758312702, + 0.00563019746914506, + -0.01275607105344534, + -0.000646121974568814, + 0.005376525688916445, + 0.017276041209697723, + 0.008367876522243023, + -0.014838156290352345, + 0.03149484470486641, + -0.01458777952939272, + 0.009619764052331448, + -0.0006078241276554763, + 0.00791324395686388, + 0.028595736250281334, + -1.0353034667787142e-5, + 0.016867531463503838, + 0.011122028343379498, + -0.010548795573413372, + 0.012051060795783997, + 0.001754289143718779, + -0.02216499112546444, + -0.010291829705238342, + -0.0330498181283474, + 0.0011785858077928424, + -0.004006038885563612, + 0.0006947149522602558, + -0.021888257935643196, + -0.0015632116701453924, + 0.010785995982587337, + -0.015431155450642109, + -0.02180919051170349, + 0.011530539020895958, + 0.0094089200720191, + 0.0013688397593796253, + -0.009362797252833843, + -0.010838706977665424, + -0.0005991762154735625, + 0.012222371064126492, + 0.011866572313010693, + -0.026553183794021606, + 0.029729023575782776, + -0.00981743074953556, + 0.009053120389580727, + 0.01884419471025467, + 0.01558928843587637, + -0.03600163757801056, + -0.017038842663168907, + -0.0008108439506031573, + -0.007557444740086794, + 0.00289416522718966, + 0.004612215794622898, + -0.004523265641182661, + 0.005195331294089556, + 0.01801399700343609, + -0.0012032941449433565, + -0.0234695877879858, + -0.0024411799386143684, + 0.00554124778136611, + -0.018949616700410843, + -0.002724501769989729, + 0.03455208241939545, + 0.009725186042487621, + -0.016603976488113403, + 0.022613033652305603, + -0.008222921751439571, + 0.005060259252786636, + 0.003623883705586195, + 0.0009800958214327693, + -0.001737816957756877, + 0.037556614726781845, + -0.016221821308135986, + -0.006391213275492191, + 0.008038433268666267, + 0.009145365096628666, + 0.005310636945068836, + 0.0003475633857306093, + -0.010160052217543125, + 0.00023205210163723677, + 0.002233630046248436, + 0.03515826165676117, + -0.005215098150074482, + -0.0035283449105918407, + 0.011952226981520653, + -0.016630331054329872, + 0.009639530442655087, + -0.007722166832536459, + -0.0003603293444029987, + -0.01067398488521576, + 0.004852709826081991, + -0.008690731599926949, + 5.7910074247047305e-5, + 0.0049482486210763454, + -0.012261904776096344, + -0.006404391024261713, + -0.013691691681742668, + 0.0231796782463789, + 0.00536993658170104, + -0.008203155361115932, + -0.0010402193292975426, + 0.014363757334649563, + -0.004760465584695339, + -0.003887438913807273, + -0.009692241437733173, + -0.014917222782969475, + 0.01847521774470806, + -0.019568972289562225, + -0.023456411436200142, + 0.00950775295495987, + 0.007728755474090576, + 0.006532873958349228, + 0.002337404992431402, + -0.005613725166767836, + 0.003406450618058443, + 0.016208643093705177, + -0.004832942970097065, + 0.0024477688129991293, + -0.014482356607913971, + 0.023575009778141975, + 0.008684143424034119, + 0.026052430272102356, + 0.024260254576802254, + -0.0017658197320997715, + -0.02980809099972248, + 0.016735753044486046, + 0.013362247496843338, + -0.014706378802657127, + -0.00857213232666254, + -0.006819490343332291, + -0.01091118436306715, + -0.011616194620728493, + 0.007873711176216602, + -0.013981602154672146, + 0.0023802327923476696, + -0.008025255054235458, + -0.01980617083609104, + 0.004536443389952183, + 0.010140285827219486, + 0.003310911823064089, + 0.021058058366179466, + 0.0019371305825188756, + 0.004977898206561804, + 0.012657237239181995, + -0.0022303357254713774, + -0.001392724341712892, + 0.011220862157642841, + 0.004223471507430077, + -0.01618228852748871, + -0.018106240779161453, + 0.007761700078845024, + 0.0071291676722466946, + -0.0068722013384103775, + -0.0006140011828392744, + 0.0023802327923476696, + -0.028622092679142952, + -0.03299710899591446, + -0.02233630046248436, + 0.0003045297635253519, + 0.013823469169437885, + -0.0024280021898448467, + -0.03394590690732002, + 0.0027360322419553995, + -0.00032656133407726884, + 0.0015187367098405957, + 0.0032153732609003782, + 0.009830608032643795, + -0.001152230310253799, + 0.0008199036819860339, + -0.0005283457576297224, + 0.03945421054959297, + -0.00799231044948101, + 0.0009743305272422731, + -0.013217291794717312, + 0.01432422362267971, + 0.013546735979616642, + 0.022085923701524734, + 0.0023110494948923588, + 0.025050919502973557, + -0.015628822147846222, + -0.007610155735164881, + -0.013296358287334442, + -0.00595964165404439, + 0.005518186371773481, + 0.013744402676820755, + 0.0013021272607147694, + 0.0006527108489535749, + -0.009066297672688961, + -0.00036527100019156933, + -0.02067590318620205, + 0.006463690660893917, + -0.010884828865528107, + 0.01946355029940605, + 0.02983444556593895, + 0.005603841971606016, + 0.001327659236267209, + 0.009830608032643795, + -0.01583966612815857, + -0.0058311582542955875, + -0.018119418993592262, + -0.003226903732866049, + -0.009797663427889347, + -0.01515442319214344, + -0.013197525404393673, + 0.01614275388419628, + -0.009652708657085896, + -0.008137266151607037, + 0.01325023639947176, + -0.0076035670936107635, + -0.004094988573342562, + -0.005017431918531656, + 0.018224840983748436, + 0.008815920911729336, + 0.006051885895431042, + -0.001321893883869052, + 0.01249251514673233, + -0.011761149391531944, + -0.0017822919180616736, + 0.017368286848068237, + 0.037741102278232574, + -0.024405209347605705, + 0.02263939008116722, + 0.006210018880665302, + -0.008684143424034119, + 0.0016702809371054173, + -0.004737404175102711, + -0.03249635174870491, + 0.026250096037983894, + 0.00950775295495987, + 0.018896905705332756, + -0.011662316508591175, + 0.011701850220561028, + 0.006315440870821476, + -0.01680164225399494, + -0.0042728884145617485, + 0.021123947575688362, + -0.014535068534314632, + 0.0025037741288542747, + -0.020768148824572563, + -0.003755661193281412, + -0.016722576692700386, + 0.014482356607913971, + -0.029781734570860863, + -0.014350579120218754, + 0.02549896389245987, + 0.006088124588131905, + 0.02585476264357567, + 0.010627862997353077, + 0.0002423472178634256, + -0.0029617012478411198, + 0.018277551978826523, + -0.0070566898211836815, + -0.004124638624489307, + -0.010608095675706863, + -0.00833493284881115, + 0.03760932385921478, + 0.02134796977043152, + 0.011378995142877102, + -0.01208400446921587, + -0.007774877827614546, + -0.011372406035661697, + 0.006911734584718943, + 0.011945638805627823, + -0.003940150141716003, + 0.0013013037387281656, + -0.007873711176216602, + -0.025090452283620834, + -0.00729388976469636, + -0.018382973968982697, + -0.004444199148565531, + -0.004203705117106438, + 0.025195874273777008, + 0.012499104253947735, + -0.01583966612815857, + -0.0017509947065263987, + -0.01685435324907303, + -0.0016867531230673194, + 0.0038380222395062447, + -0.013994780369102955, + -0.009679064154624939, + -0.006865612231194973, + -0.01751324161887169, + -0.006727246101945639, + 0.0005946463788859546, + -0.018527928739786148, + 0.009244197979569435, + 0.009020175784826279, + 0.014034313149750233, + -0.017882218584418297, + -0.01016664132475853, + -0.015128066763281822, + -0.0005617019487544894, + 0.0007787232170812786, + -0.005159092601388693, + 0.022244056686758995, + -0.02366725541651249, + 0.007340011652559042, + -0.014614135026931763, + -0.02184872515499592, + -0.01083211787045002, + -0.01634042151272297, + 0.01681482046842575, + 0.003180781612172723, + 0.023930810391902924, + -0.008743442595005035, + 0.01798764057457447, + 0.017565952613949776, + 0.004859298467636108, + -0.017921751365065575, + -0.008552365936338902, + -0.0029831151477992535, + 0.010700340382754803, + -0.023403700441122055, + 0.011187917552888393, + -0.0031956066377460957, + -0.018264373764395714, + 0.002584487898275256, + -0.016248175874352455, + 0.0012494162656366825, + 0.017776796594262123, + 0.012545226141810417, + -0.011879749596118927, + -0.00991626363247633, + -0.011346050538122654, + -0.018738772720098495, + -0.0030078233685344458, + -0.021585168316960335, + -0.007511322386562824, + 0.013981602154672146, + -1.4052844562684186e-5, + -0.019358128309249878, + -0.00562031427398324, + 0.01764502003788948, + 0.0043980772607028484, + -0.008025255054235458, + -0.008717087097465992, + 0.011912694200873375, + -0.010878239758312702, + 0.03231186419725418, + 0.006799723487347364, + -0.02169059030711651, + 0.004279477056115866, + -0.0046418653801083565, + -0.0016208643792197108, + 0.0069644455797970295, + 0.02183554694056511, + -0.014706378802657127, + 0.006058474536985159, + 0.022889766842126846, + 0.011464649811387062, + -0.00898723118007183, + 0.004259710665792227, + -0.0060485913418233395, + 0.02798956073820591, + 0.012927381321787834, + -0.021374324336647987, + 0.0057718586176633835, + 0.012657237239181995, + -0.014956756494939327, + -0.008466710336506367, + -0.024233898147940636, + 0.0021776247303932905, + -0.0016595739871263504, + -0.00387755548581481, + 0.009119009599089622, + -0.01701248623430729, + -0.012947147712111473, + 0.02615785226225853, + 0.015378444455564022, + -0.00520192040130496, + 0.0012889495119452477, + 0.0010418666061013937, + 0.001288125989958644, + 0.012288260273635387, + 0.006157307885587215, + -0.0057718586176633835, + -0.0014248451916500926, + -0.018382973968982697, + 0.017552774399518967, + -0.016762109473347664, + 0.004279477056115866, + 0.014851334504783154, + -0.008018665947020054, + 0.026737673208117485, + -0.011062728241086006, + -0.01342154759913683, + 0.006766779348254204, + 0.017579130828380585, + -0.007689222227782011, + 0.0015516810817644, + 0.012933970429003239, + 0.02416800893843174, + 0.011813861317932606, + 0.0047308155335485935, + -0.005155798047780991, + -0.016221821308135986, + -0.01424515713006258, + -0.005165681708604097, + -0.009119009599089622, + 0.009606585837900639, + -0.007689222227782011, + -0.00231269677169621, + 0.006190252024680376, + 0.007307067513465881, + -0.002637198893353343, + -0.0005024020792916417, + -0.007853943854570389, + -9.852433868218213e-5, + 0.007274122908711433, + 0.006878789979964495, + -0.01768455281853676, + -0.020794503390789032, + 0.021229369565844536, + 0.0024280021898448467, + -0.02331145480275154, + 0.006114480085670948, + -0.016274532303214073, + -0.009580230340361595, + 0.008170210756361485, + -0.0005744679365307093, + -0.006667945999652147, + -0.011378995142877102, + 0.015352088958024979, + 0.0039236778393387794, + 0.003538228338584304, + 0.014614135026931763, + 0.0011827038833871484, + -0.004648454487323761, + 0.00603870814666152, + 0.002039258135482669, + 0.011846804991364479, + -0.002544954651966691, + -0.008143855258822441, + 0.008875221014022827, + 0.004585860297083855, + -0.007998899556696415, + 0.005827863700687885, + 0.009672475047409534, + 0.00013074807066004723, + -0.01717061921954155, + -0.0006255317712202668, + -0.020702259615063667, + 0.003940150141716003, + -0.00445408234372735, + -0.044909801334142685, + -0.004938364960253239, + 0.014719557017087936, + 0.017117908224463463, + -0.02013561502099037, + -0.006773367989808321, + 0.024892786517739296, + 0.025630740448832512, + -0.0196743942797184, + 0.011721616610884666, + -0.00857213232666254, + -0.020254215225577354, + 0.006104596890509129, + -0.0032334926072508097, + -0.005063553806394339, + -0.0020277276635169983, + 6.470485823228955e-5, + 0.018923262134194374, + -0.00832175463438034, + 0.0030473568476736546, + 0.015694711357355118, + 0.006496635265648365, + 6.851404759800062e-5, + 0.008183388039469719, + -0.008914753794670105, + -0.002576251979917288, + 0.014205624349415302, + -0.0068722013384103775, + 0.006951267831027508, + -0.008453532122075558, + 0.002755798865109682, + 0.01440329011529684, + -0.0012930675875395536, + -0.02248125709593296, + -0.007307067513465881, + 0.017052020877599716, + 0.008539187721908092, + 0.003538228338584304, + -0.016880709677934647, + -0.012400271371006966, + 0.00019282767607364804, + -0.022454900667071342, + 0.01558928843587637, + 0.024418387562036514, + 0.011108851060271263, + 0.017104731872677803, + 0.01551022194325924, + 0.011971994303166866, + -0.012940559536218643, + -0.00582456961274147, + -0.013599446974694729, + 0.0034986950922757387, + -0.0031857232097536325, + 0.016221821308135986, + -0.013276591897010803, + -0.010258885100483894, + 0.0045331488363444805, + -0.015734244138002396, + -0.010851884260773659, + -0.028094982728362083, + -0.011062728241086006, + -0.008789565414190292, + 0.004437610507011414, + 0.01424515713006258, + 0.008387643843889236, + -0.01474591251462698, + -0.0022089218255132437, + 0.00628579081967473, + -0.008934520184993744, + 0.006022235844284296, + -0.014456001110374928, + -0.016551265493035316, + 0.0012411801144480705, + -0.007320245262235403, + -0.012828548438847065, + -0.00041036366019397974, + 0.013889357447624207, + 0.011596428230404854, + 0.018224840983748436, + -0.00840082112699747, + -0.02080768160521984, + -0.007853943854570389, + 0.009455041959881783, + -0.0032318453304469585, + -0.0031313649378716946, + -0.02032010443508625, + -0.004022510722279549, + 0.0045660934410989285, + -0.00816362164914608, + -0.02100534737110138, + 0.02298201061785221, + 0.00974495243281126, + -0.03481563925743103, + -0.0213216133415699, + -0.003920383285731077, + 0.022085923701524734, + 0.013184348121285439, + 0.01981934905052185, + -0.0013334244722500443, + 0.01342154759913683, + -0.014073846861720085, + 0.010430196300148964, + -0.014376934617757797, + 0.0158133115619421, + -0.00028867527726106346, + 0.008789565414190292, + 0.02281070128083229, + 0.00990308541804552, + -0.0069644455797970295, + 0.004938364960253239, + -0.004648454487323761, + -0.018593817949295044, + 0.006107891444116831, + -0.03560630604624748, + 0.005903636105358601, + -0.011062728241086006, + 0.029228270053863525, + 0.0013400133466348052, + 0.009942619130015373, + -0.0077880555763840675, + -0.024431565776467323, + 0.003164309309795499, + 0.028622092679142952, + -0.005827863700687885, + 0.008348110131919384, + 0.011174739338457584, + 0.004391488153487444, + 0.00724776741117239, + -0.016274532303214073, + 0.003067123470827937, + -0.0008310223929584026, + -0.00035435816971585155, + -0.019279060885310173, + 0.00030164714553393424, + 0.0031247760634869337, + -0.022441724315285683, + -0.013302947394549847, + -0.011596428230404854, + 0.027936849743127823, + -0.004836237523704767, + 0.007629922591149807, + -0.016287710517644882, + 0.007228000555187464, + 0.009191486984491348, + -0.012644059956073761, + -0.018527928739786148, + -0.0024329437874257565, + 0.0007754287216812372, + -0.0001113932448788546, + -0.036212481558322906, + 0.0214665699750185, + 0.010291829705238342, + -0.012420037761330605, + -0.010206174105405807, + 0.02381221018731594, + -0.011603016406297684, + 0.009731775149703026, + 0.018435684964060783, + -0.0027327376883476973, + 0.005014137364923954, + 0.002149621956050396, + -0.013942069374024868, + 0.0012140010949224234, + -0.02333781123161316, + -0.009632941335439682, + -0.012677003629505634, + -0.0036502392031252384, + 0.0016340421279892325, + -0.007445433642715216, + -0.012189427390694618, + -0.0076233334839344025, + -0.017895396798849106, + 0.002918873680755496, + 0.029386403039097786, + 0.04585859924554825, + 0.037266701459884644, + 0.007234589662402868, + 0.016261354088783264, + 0.03146848827600479, + -0.025696629658341408, + 0.010588329285383224, + 0.005673025269061327, + -0.03879532217979431, + -0.01558928843587637, + -0.015760600566864014, + 0.004154288675636053, + 0.024405209347605705, + -0.0015063825994729996, + -0.007972544059157372, + -0.006532873958349228, + -0.009310086257755756, + -0.0078078219667077065, + -0.01348743587732315, + 0.0034262172412127256, + -0.003989566583186388, + -0.0072214119136333466, + -0.026381872594356537, + 0.008130677044391632, + -7.762523455312476e-5, + -0.009112420491874218, + -0.006542757153511047, + -0.010575151070952415, + -0.02300836704671383, + 0.013678513467311859, + 0.029939867556095123, + -0.014179268851876259, + -0.009672475047409534, + -0.01748688519001007, + -0.00790665578097105, + 0.019410839304327965, + 0.004905420821160078, + -0.0036041170824319124, + 0.0015854490920901299, + -0.023456411436200142, + 0.010265474207699299, + -0.021110769361257553, + -0.01015346311032772, + -0.013928891159594059, + -0.009455041959881783, + -0.02049141563475132, + 0.006786545738577843, + -0.022454900667071342, + -0.0001942689996212721, + -0.02398352138698101, + 0.00137625215575099, + 0.01165572740137577, + -0.03897980973124504, + -0.0023324633948504925, + 0.002507068682461977, + 0.01582648791372776, + 0.031732045114040375, + -0.005877280607819557, + -0.007596977986395359, + -0.02549896389245987, + -0.021255725994706154, + 0.0006115303840488195, + 0.004322304856032133, + 0.02083403617143631, + -0.02100534737110138, + 0.021255725994706154, + -0.007596977986395359, + -0.0027129710651934147, + -0.00281015713699162, + -0.012070827186107635, + 0.00412793317809701, + -0.022270413115620613, + -0.0024395326618105173, + -0.01433740183711052, + -0.025077275931835175, + 0.004543032497167587, + -0.03579079359769821, + 8.635035555926152e-6, + -0.010272063314914703, + 0.02480054274201393, + 0.008058199658989906, + -0.0003224432875867933, + -0.005600547417998314, + 0.0025713101495057344, + -0.01913410611450672, + 0.006799723487347364, + 0.010594918392598629, + 0.000637885881587863, + -0.021123947575688362, + -0.011635961011052132, + -0.014851334504783154, + -0.0161691103130579, + -0.023693609982728958, + 0.003989566583186388, + 0.02067590318620205, + -0.014600956812500954, + -0.0026190795470029116, + 0.0039994497783482075, + -0.004292654804885387, + 0.00691832322627306, + -0.017895396798849106, + 0.005172270350158215, + -0.006885379087179899, + 0.02080768160521984, + -0.002024433109909296, + -0.02585476264357567, + 0.006493340712040663, + 0.0019667805172502995, + 0.008802742697298527, + 0.023904453963041306, + -0.010720106773078442, + -0.006664651446044445, + 0.017196975648403168, + 0.01066080667078495, + -0.024247076362371445, + 0.014772268012166023, + -0.00532710924744606, + 0.008394232019782066, + 0.001250239904038608, + 0.006592174060642719, + -0.003831433365121484, + -0.0024247076362371445, + 0.015536577440798283, + 0.01664350926876068, + 0.008051610551774502, + -0.016103221103549004, + 0.011616194620728493, + 0.013131637126207352, + -0.016630331054329872, + -0.0033356202766299248, + 0.011504183523356915, + 0.0030539457220584154, + -0.005353464744985104, + 0.015365267172455788, + -0.009501163847744465, + -0.0213216133415699, + 0.008381054736673832, + -0.004335482604801655, + 0.013395192101597786, + -0.0017789974808692932, + -0.0072214119136333466, + -0.002179271774366498, + 0.01465366780757904, + 0.00013332185335457325, + 0.003151131561025977, + 0.005653258413076401, + 0.0011629372602328658, + 0.010443373583257198, + 0.016287710517644882, + 0.006470279768109322, + 0.008611665107309818, + -0.02030692622065544, + -0.011444883421063423, + -0.003709539072588086, + 0.00026108435122296214, + 0.01731557585299015, + 0.013006447814404964, + 0.027251604944467545, + -0.010944128967821598, + 0.006819490343332291, + -0.010298418812453747, + 0.005669730715453625, + 0.016538087278604507, + 0.01900232769548893, + 0.0014108438044786453, + 0.009316675364971161, + -0.0007511322619393468, + 0.0011398761998862028, + -0.00982401892542839, + -0.005020726006478071, + -0.0161691103130579, + 0.0023736439179629087, + -0.004674809984862804, + -0.008031844161450863, + -0.009072886779904366, + -0.015259845182299614, + -0.01599779911339283, + -0.018857372924685478, + -0.04382922500371933, + -0.004717637784779072, + 0.01732875220477581, + 0.020768148824572563, + 0.023206032812595367, + -0.018791483715176582, + 0.006493340712040663, + -0.000587645685300231, + -0.007893477566540241, + 0.002482360228896141, + 0.018251195549964905, + -0.014139735139906406, + 0.0008829098660498857, + 0.01665668748319149, + -0.011596428230404854, + -0.002251749625429511, + -0.00923760887235403, + 0.0023736439179629087, + 0.02115030214190483, + -0.004572682548314333, + -0.00295675965026021, + -0.0068722013384103775, + -0.004496910143643618, + -0.03117857687175274, + -0.005890458356589079, + -0.0209658145904541 + ], + "015aadd8-9061-4542-9d1c-6e0f3b3ec96f": [ + -0.013478055596351624, + -0.017124051228165627, + -0.018351275473833084, + -0.017352372407913208, + -0.049003325402736664, + -0.01645335927605629, + 0.03376292064785957, + 0.05896381661295891, + 0.015682777389883995, + 0.03647422790527344, + 0.01104501262307167, + 0.014462688006460667, + -0.02007794938981533, + -0.018436895683407784, + 0.011401764117181301, + 0.008619105443358421, + -0.07431837916374207, + 0.035760726779699326, + -0.008776076138019562, + -0.008048304356634617, + 0.07540290802717209, + -0.02815479412674904, + -0.010402861051261425, + 0.023888051509857178, + -0.016895730048418045, + -0.02522943541407585, + 0.03105161339044571, + 0.002042399952188134, + -0.000343595864251256, + -0.02685622125864029, + -0.01595390774309635, + 0.01974973827600479, + 0.02491549402475357, + -0.0009088233346119523, + 0.0008851885795593262, + -0.020220650359988213, + -0.016324928030371666, + 0.015554346144199371, + -0.0287826769053936, + 0.0017712690168991685, + -0.015012084506452084, + 0.037615831941366196, + 0.03079475276172161, + 0.006706919986754656, + -0.008126789703965187, + 0.03596050664782524, + 0.025771697983145714, + -0.013306815177202225, + 0.012714607641100883, + 0.0015313539188355207, + -0.004366633016616106, + 0.03553240746259689, + -0.012607582844793797, + 0.012493422254920006, + 0.006728325039148331, + 0.00350686302408576, + 0.01903623715043068, + 0.09064330905675888, + 0.02814052440226078, + -0.018665215000510216, + -0.0056009916588664055, + 0.007691552862524986, + -0.0038850191049277782, + 0.0011139551643282175, + -0.017937444150447845, + -0.026256877928972244, + 0.009139962494373322, + 0.013563675805926323, + -0.032621316611766815, + 0.005633099470287561, + 0.001669595018029213, + -0.004409443121403456, + -0.03921407833695412, + 0.002086993772536516, + 0.012678933329880238, + -0.00947530847042799, + 0.05813615396618843, + -0.0286114364862442, + 0.006906700786203146, + -0.007634473033249378, + -0.04440837353467941, + 0.013092764653265476, + 0.0020352648571133614, + -0.030908912420272827, + 0.033905621618032455, + -0.0007875279989093542, + -0.057308491319417953, + -0.04740508273243904, + -0.0419539250433445, + -0.018122954294085503, + 0.023288710042834282, + 0.02167619578540325, + -0.003089464269578457, + 0.012664662674069405, + -0.032450076192617416, + -0.015111975371837616, + 0.02557191625237465, + 0.010174540802836418, + -0.02645665965974331, + -0.008376515470445156, + -0.014419877901673317, + 0.0066320025362074375, + -0.028825486078858376, + 0.0015804072609171271, + 0.02338859997689724, + -0.0033588113728910685, + -0.006653407588601112, + 0.0058828252367675304, + -0.02628541924059391, + 0.02250385656952858, + 0.009625143371522427, + -0.01766631379723549, + 0.010545562021434307, + 0.004994514863938093, + 0.02355984039604664, + -0.06878160685300827, + -0.01423436775803566, + -0.020420430228114128, + -0.01823711395263672, + -0.07614494860172272, + 0.069009929895401, + 0.035446785390377045, + 0.011137768626213074, + -0.03835787624120712, + 0.013214059174060822, + -0.01128760352730751, + -0.010681127198040485, + 0.011665759608149529, + 0.013121304102241993, + 0.01893634721636772, + -0.009296933189034462, + -0.023745350539684296, + -0.024630093947052956, + 0.019863899797201157, + -0.030594971030950546, + 0.022403966635465622, + 0.0071314540691673756, + 0.04606369882822037, + -0.04046984016895294, + 0.044151511043310165, + -0.007484637200832367, + -0.002515095053240657, + 0.00350686302408576, + -0.016339199617505074, + 0.015169055201113224, + 0.0001986657443922013, + -0.03490452468395233, + 0.04283866658806801, + -0.006111145950853825, + 0.021333713084459305, + -0.03336336091160774, + 0.005333428271114826, + 0.011180578731000423, + -0.0003206300316378474, + -0.011944025754928589, + -0.0029663851018995047, + 0.012429207563400269, + 0.007463232148438692, + -0.013849076814949512, + 0.016467629000544548, + 0.0008963370346464217, + -0.019464338198304176, + 0.03250715881586075, + -0.006428654305636883, + -0.0037815612740814686, + 0.007812848314642906, + 0.033277738839387894, + 0.023274440318346024, + -0.03741605207324028, + 0.027369942516088486, + 0.02597147785127163, + -0.021433604881167412, + -0.019492877647280693, + -0.008212409913539886, + -0.022289806976914406, + -0.024530204012989998, + 0.029310667887330055, + 0.016424819827079773, + 0.008005494251847267, + -0.04583537578582764, + 0.010937987826764584, + -0.009375417605042458, + -0.013799130916595459, + -0.0025703913997858763, + -0.028754135593771935, + 0.017637772485613823, + 0.020063679665327072, + -0.01407026220113039, + -0.03307795897126198, + -0.005640234332531691, + 0.015525806695222855, + -0.008982991799712181, + 0.057765133678913116, + 0.052285436540842056, + -0.021333713084459305, + -0.002409853506833315, + 0.00675329752266407, + -0.00967508926987648, + 0.03016686998307705, + 0.030452271923422813, + -0.015154785476624966, + -0.05328433960676193, + -0.049146026372909546, + 0.01145884394645691, + -0.06587051600217819, + 0.006414384115487337, + -0.006182495970278978, + -0.019706929102540016, + 0.010509886778891087, + -0.03949947655200958, + 0.01149451918900013, + -0.021248092874884605, + 0.024416042491793633, + -0.0062502785585820675, + -0.01423436775803566, + -0.0018872132059186697, + -0.013085628859698772, + 0.021504953503608704, + 0.0043131206184625626, + 0.006549949757754803, + -0.012115266174077988, + 0.02588585764169693, + 0.03105161339044571, + -0.0461207777261734, + -0.0530560202896595, + -0.027869394049048424, + -0.021162472665309906, + 0.03150825574994087, + -0.024301882833242416, + -0.011665759608149529, + 0.026656439527869225, + 0.024458853527903557, + 0.019935250282287598, + -0.038500573486089706, + -0.024059291929006577, + 0.003121571848168969, + 0.002862927271053195, + 0.00010897630272665992, + 0.036074668169021606, + -0.023888051509857178, + 0.03570364788174629, + -0.0036085371393710375, + 0.014840844087302685, + 0.016638869419693947, + 0.0032285971101373434, + 0.018108684569597244, + -0.001314627705141902, + 0.048204205930233, + 0.03616028651595116, + -0.01974973827600479, + 0.0183798149228096, + 0.02789793349802494, + 0.0033035147935152054, + -0.010352916084229946, + -0.0044914958998560905, + 0.016995619982481003, + 0.006503571756184101, + -0.0010381456231698394, + -0.029010996222496033, + -0.0012459531426429749, + -0.04654888063669205, + 0.004327390342950821, + 0.003777993842959404, + -0.02200440503656864, + 0.04540727660059929, + -0.03250715881586075, + 0.028768405318260193, + -0.03958509862422943, + -0.01366356573998928, + 0.003770858747884631, + -0.060048338025808334, + 0.0004120474914088845, + -0.029310667887330055, + 0.01612514816224575, + -0.007877063937485218, + -0.00923985242843628, + 0.005340563599020243, + -0.008875967003405094, + -0.025700347498059273, + 0.007841388694941998, + 0.005322725977748632, + 0.03630298748612404, + 0.02113393321633339, + 0.026099907234311104, + 0.0017436208436265588, + -0.028982456773519516, + 0.0053512658923864365, + 0.012664662674069405, + -0.034961603581905365, + -0.020377621054649353, + 0.0116586247459054, + -0.017552152276039124, + 0.03524700552225113, + -0.006517841946333647, + 0.031251393258571625, + 0.0004709114145953208, + -0.003241083351895213, + -0.00956092868000269, + -0.026485199108719826, + 0.008383650332689285, + -0.04086940363049507, + -0.003984909504652023, + 0.01645335927605629, + -0.013849076814949512, + 0.005654504522681236, + 0.010602641850709915, + 0.035047225654125214, + -0.018579594790935516, + -0.037787072360515594, + 0.013221194967627525, + 0.036331526935100555, + 0.0008116086828522384, + -0.022275537252426147, + -0.029396288096904755, + 0.0007375828572548926, + 0.000179378897882998, + 0.024744253605604172, + 0.041668523102998734, + 0.01917893812060356, + -0.007941278629004955, + 0.01588255725800991, + -0.013891886919736862, + -0.04418005049228668, + 0.016653139144182205, + 0.03307795897126198, + -0.0244445838034153, + 0.01362789049744606, + 0.01636773906648159, + -0.011230523698031902, + -0.03330627828836441, + -0.00278087449260056, + -0.05454010143876076, + -0.03507576510310173, + -0.018579594790935516, + 0.01669595018029213, + -0.018565325066447258, + -0.03088037297129631, + -0.019778279587626457, + -0.009503848850727081, + -0.0025703913997858763, + -0.012614717707037926, + 0.04620639979839325, + -0.04049837961792946, + -0.007969819009304047, + 0.021490683779120445, + 0.005319158546626568, + -0.008454999886453152, + 0.02532932534813881, + 0.005276348441839218, + -0.0030573566909879446, + 0.0006831783102825284, + -0.02097696252167225, + 0.03573218733072281, + -0.0027006056625396013, + 0.012657527811825275, + -0.002336719539016485, + -0.029795849695801735, + -0.022703638300299644, + 0.007484637200832367, + -0.004256040323525667, + -0.019207477569580078, + -0.006107578054070473, + -0.027469832450151443, + 0.004602088592946529, + 0.004170420113950968, + 0.015326025895774364, + 0.009339743293821812, + 0.0018925644690170884, + 0.0018836456583812833, + 0.020948423072695732, + -0.030823292210698128, + 0.04338093101978302, + 0.010688262060284615, + -0.0011487384326756, + -0.02121955342590809, + 0.02522943541407585, + 0.03772999346256256, + 0.034219563007354736, + -0.00012218723713885993, + 0.023745350539684296, + -0.01153019443154335, + 0.005618829280138016, + -0.0002552999940235168, + -0.027455562725663185, + 0.06113286316394806, + 0.006111145950853825, + 0.0028522247448563576, + 0.0183798149228096, + -0.01903623715043068, + -0.012650392949581146, + -0.016710219904780388, + -0.0195927694439888, + -0.033905621618032455, + 0.010702531784772873, + -0.026813410222530365, + 0.02049178071320057, + 0.008298030123114586, + 0.0029521151445806026, + 0.01366356573998928, + 0.015169055201113224, + 0.00015685897960793227, + -0.01895061694085598, + 0.0034051889088004827, + 0.0026702817995101213, + 0.020106490701436996, + 0.003112653037533164, + -0.009090017527341843, + 0.016153687611222267, + -0.005972012877464294, + 0.005518938880413771, + 0.021076852455735207, + -0.013356760144233704, + 0.0028522247448563576, + -0.010245890356600285, + 0.04055546224117279, + -0.018408354371786118, + 0.015026355162262917, + 0.01839408464729786, + -0.048346903175115585, + -0.004955272190272808, + 0.03065205179154873, + 0.055653166025877, + -0.0026149852201342583, + 0.009296933189034462, + -0.0320790559053421, + 0.006417951546609402, + 0.046577420085668564, + 0.014726684428751469, + -0.0037637236528098583, + -0.0005199646693654358, + -0.017694853246212006, + -0.005729421973228455, + -0.018522515892982483, + -0.009375417605042458, + 0.0006336790975183249, + -0.0063109262846410275, + 0.006403681822121143, + 0.007720093242824078, + 0.003949234262108803, + -0.015625696629285812, + 0.04183976352214813, + 0.03921407833695412, + 0.019250286743044853, + -0.0034694040659815073, + -0.0019371582893654704, + -0.04797588288784027, + -0.034390803426504135, + -0.006981618236750364, + 0.014384202659130096, + 0.026599358767271042, + 0.0025793102104216814, + 0.04015589877963066, + -0.024401772767305374, + 0.018750835210084915, + -0.02313173934817314, + -0.0004147231229580939, + -0.003242867300286889, + -0.00217618141323328, + 0.02241823635995388, + 0.018765106797218323, + -0.01676730066537857, + -0.005336996167898178, + 0.03587488830089569, + -0.03370584174990654, + 0.019863899797201157, + -0.029567528516054153, + -0.030423730611801147, + -0.0032054083421826363, + 0.00588996009901166, + -0.00958946906030178, + -0.005308455787599087, + 0.06090454384684563, + -0.0075916629284620285, + 0.03193635493516922, + -0.03353460133075714, + -0.018337005749344826, + 0.021890245378017426, + -0.012586177326738834, + 0.009846329689025879, + -0.007712957914918661, + -0.03347751870751381, + -0.028811216354370117, + -0.02482987381517887, + 0.018822185695171356, + 0.028953917324543, + 0.015297485515475273, + -0.029653148725628853, + 0.010937987826764584, + 0.00011839676153613254, + -0.004662736319005489, + 0.007484637200832367, + 0.013884751126170158, + -0.01960703916847706, + -0.002538283821195364, + -0.028896836563944817, + -0.03807247430086136, + 0.018279924988746643, + -0.009846329689025879, + -0.003533619223162532, + -0.007834253832697868, + 0.06313066929578781, + -0.009532388299703598, + 0.016667410731315613, + 0.020106490701436996, + 0.0115730045363307, + 0.007734362967312336, + -0.01758069172501564, + 0.018493974581360817, + 0.005294186063110828, + -0.009689358994364738, + 0.0025561214424669743, + 0.005026622675359249, + -0.014212962239980698, + 0.007288424298167229, + -0.0007852982962504029, + 0.018907805904746056, + -0.033420439809560776, + 0.01652470976114273, + 0.02113393321633339, + -0.025614727288484573, + 0.0015144082717597485, + -0.0055724517442286015, + -0.022760719060897827, + 0.009289797395467758, + 0.012200886383652687, + -0.016410548239946365, + 0.0012780607212334871, + 0.040127359330654144, + 0.01120911817997694, + 0.0009810654446482658, + -0.024002211168408394, + 0.0039920443668961525, + -0.026470929384231567, + -0.018608136102557182, + 0.010966528207063675, + -0.02547202631831169, + 0.018807915970683098, + -0.03299234062433243, + -0.013178384862840176, + 0.0320790559053421, + -0.032450076192617416, + 0.02103404328227043, + -0.0041418797336518764, + -0.005058730021119118, + 0.009696493856608868, + 0.033334821462631226, + 0.0015536509454250336, + 0.008276624605059624, + 0.014669603668153286, + 0.028668515384197235, + -0.01936444826424122, + 0.02210429683327675, + -0.0052299704402685165, + 0.008347975090146065, + 0.030338110402226448, + -0.052371058613061905, + 0.025600457563996315, + -0.02079145237803459, + -0.0414402037858963, + -0.003838641569018364, + 0.013777726329863071, + -0.017623502761125565, + -0.0007282181177288294, + -0.005947040393948555, + -0.036417149007320404, + -0.004166852682828903, + -0.02991000935435295, + 0.02652801014482975, + 0.010830962099134922, + 0.02120528370141983, + 0.02403075248003006, + 0.04586391896009445, + 0.02532932534813881, + -0.015383105725049973, + -0.021790355443954468, + 0.032221756875514984, + 0.006343034096062183, + 0.013856211677193642, + -0.010038974694907665, + 0.0037744264118373394, + 0.013064224272966385, + -0.048175662755966187, + 0.03530408442020416, + -0.020349081605672836, + 0.007848523557186127, + 0.00923985242843628, + -0.04537873715162277, + -0.0436948724091053, + -0.013684971258044243, + 0.019806819036602974, + 0.00223682913929224, + 0.014255772344768047, + 0.036731090396642685, + 0.004405875690281391, + -0.007784308400005102, + 0.015211865305900574, + -0.014526903629302979, + 0.008726131170988083, + -0.00584714999422431, + -0.008340840227901936, + 0.00037681832327507436, + 0.0073704770766198635, + 0.04554997757077217, + -0.00695307832211256, + -0.01693854108452797, + 0.014220098033547401, + -0.034219563007354736, + -0.009261257946491241, + -0.0075203124433755875, + -0.02177608571946621, + 0.0007732579251751304, + 0.0023688271176069975, + 0.0286970566958189, + -0.004502198658883572, + 0.02951044775545597, + 0.01799452304840088, + 0.022618018090724945, + 0.022047216072678566, + 0.009061477147042751, + -0.02701319009065628, + 0.028268953785300255, + -0.052142735570669174, + 0.05782221257686615, + -0.03678816929459572, + 0.025029655545949936, + -0.010673992335796356, + -0.012350722216069698, + -0.014583983458578587, + -0.012108131311833858, + 0.024558743461966515, + 0.016167959198355675, + 0.0231460090726614, + 0.02137652412056923, + -0.015069165267050266, + 0.024130642414093018, + 0.008975856937468052, + 0.010395726189017296, + 0.02338859997689724, + -0.022075755521655083, + 0.03958509862422943, + -0.015268946066498756, + -0.007427557371556759, + -0.009339743293821812, + 0.012108131311833858, + -0.010766747407615185, + -0.015340295620262623, + -0.03838641569018364, + 0.018522515892982483, + 0.02727005071938038, + 0.0026488767471164465, + -0.05796491354703903, + 0.010638317093253136, + 0.035846348851919174, + 0.004744789097458124, + -0.012293641455471516, + -0.04175414517521858, + -0.03821517527103424, + 0.0048339772038161755, + 0.009161367081105709, + -0.0064429244957864285, + 0.017923174425959587, + -0.008233814500272274, + -0.0195071492344141, + 0.010624046437442303, + 0.028839755803346634, + -0.010574101470410824, + 0.004666303750127554, + -0.012914388440549374, + 0.016881460323929787, + 0.027883663773536682, + -0.00693524070084095, + -0.011009338311851025, + 0.02291768789291382, + 0.004955272190272808, + 0.01100220251828432, + -0.01140889897942543, + -0.003913559019565582, + -0.0527135394513607, + 0.01205818634480238, + -0.02500111423432827, + -0.01960703916847706, + -0.00018105116032529622, + -0.01354940515011549, + -0.007969819009304047, + 0.02137652412056923, + -0.021747544407844543, + 0.0008200815063901246, + 0.029310667887330055, + -0.036902330815792084, + -0.006564219482243061, + 0.0015215432504191995, + 0.008098249323666096, + -0.021148202940821648, + 0.008483540266752243, + -0.003770858747884631, + 0.004020584747195244, + -0.015868287533521652, + -0.010488481260836124, + 0.019792549312114716, + -0.02628541924059391, + -0.04158290475606918, + -0.012835903093218803, + 0.0023688271176069975, + -0.0024205560330301523, + 0.0035603756550699472, + 0.016182228922843933, + -0.014491228386759758, + -0.01133754849433899, + 0.02186170592904091, + 0.008833156898617744, + 0.02572888694703579, + 0.009403957985341549, + -0.012907253578305244, + 0.011144903488457203, + 0.002643525367602706, + -0.0036995084956288338, + -0.00968222413212061, + -0.004766194149851799, + 0.001971049699932337, + 0.023274440318346024, + -0.027455562725663185, + 0.04643471911549568, + 0.0026310391258448362, + -0.05785075202584267, + -0.06798247992992401, + 0.023845240473747253, + 0.029339207336306572, + -0.006756865419447422, + -0.020192110911011696, + -0.009282662533223629, + 0.04828982427716255, + 0.0036995084956288338, + -0.030195411294698715, + 0.010966528207063675, + -0.003483674256131053, + -0.012664662674069405, + -0.022032946348190308, + -0.007448962423950434, + 0.04483647271990776, + -0.03379146009683609, + -0.015711316838860512, + -0.03153679519891739, + 0.02234688773751259, + 0.013135574758052826, + 0.013820536434650421, + -0.010281565599143505, + -0.00020379404304549098, + -0.011993970721960068, + -0.013085628859698772, + 0.015326025895774364, + 0.02298903837800026, + -0.016153687611222267, + 0.04175414517521858, + 0.01612514816224575, + -0.018807915970683098, + -0.01692427136003971, + -0.017780473455786705, + 0.01638200879096985, + 0.00879034586250782, + 0.017323831096291542, + -0.0009427146869711578, + 0.010859502479434013, + 0.0187222957611084, + -0.0067497300915420055, + 0.005190728232264519, + 0.002946763765066862, + -0.010973663069307804, + 0.017809012904763222, + 0.05402638018131256, + -0.013321084901690483, + 0.022361157462000847, + 0.004423713311553001, + 0.030680591240525246, + 0.0029110887553542852, + 0.023574110120534897, + -0.010880907997488976, + 0.03296379745006561, + 0.0182941947132349, + -0.043666329234838486, + 0.028026364743709564, + -0.03233591839671135, + -0.06278818845748901, + -7.436030136886984e-5, + -0.015254675410687923, + 0.004826841875910759, + -0.003938531968742609, + 0.03444788232445717, + 0.02283206768333912, + -0.01382767129689455, + -0.02532932534813881, + 0.010602641850709915, + -0.0014903275296092033, + -0.01165148988366127, + 0.0037744264118373394, + 0.009532388299703598, + 0.01193689089268446, + 0.039242617785930634, + -0.01652470976114273, + -0.009332607500255108, + 0.0003685684350784868, + 0.00598628306761384, + -0.045920997858047485, + 0.012265102006494999, + 0.03079475276172161, + 0.001670486875809729, + 0.00297530391253531, + 0.013007143512368202, + 0.0075916629284620285, + -0.004441550932824612, + 0.016638869419693947, + -0.033277738839387894, + -0.008012629114091396, + -0.002468717284500599, + 0.005558181554079056, + 0.0020673724357038736, + -0.018493974581360817, + -0.021904515102505684, + 0.002930710092186928, + 0.004755491856485605, + -0.015097705647349358, + -0.009625143371522427, + 0.03282109647989273, + 0.039699260145425797, + 0.008811751380562782, + -0.005390508566051722, + -0.01144457422196865, + -0.016753030940890312, + -0.020377621054649353, + 0.022218456491827965, + 0.015026355162262917, + 0.010738207027316093, + 0.001435031183063984, + 0.0026149852201342583, + 0.030851831659674644, + 0.02458728291094303, + 0.052856236696243286, + -0.03322065994143486, + -0.01613941788673401, + -0.027940744534134865, + -0.007384747266769409, + 0.005526074208319187, + -0.02217564731836319, + -0.008026898838579655, + -0.026984650641679764, + -0.004120474681258202, + -0.007605932652950287, + 0.010260161012411118, + 0.004537873435765505, + 0.03193635493516922, + -0.00562239671126008, + 0.017866093665361404, + -0.006582057103514671, + -0.016481898725032806, + 0.012771688401699066, + -0.049945149570703506, + 0.01716686226427555, + 0.0041240425780415535, + 0.010738207027316093, + 0.0015206513926386833, + 0.010474211536347866, + 0.011829865165054798, + 0.007484637200832367, + -0.00594347296282649, + -0.0395280197262764, + -0.0015679209027439356, + -0.01367070060223341, + -0.019050506874918938, + 0.00904007162898779, + 0.0004254256491549313, + -0.011230523698031902, + -0.030366651713848114, + 0.005757962353527546, + -0.0011995754903182387, + 0.02420199289917946, + -0.021747544407844543, + -0.018094414845108986, + -0.02685622125864029, + -0.01742372289299965, + -0.030937451869249344, + 0.012072456069290638, + -0.014869384467601776, + 0.01419155765324831, + 0.010067515075206757, + -0.0019835359416902065, + -0.05005931109189987, + 0.019578497856855392, + -0.00042185813072137535, + -0.003187570720911026, + 0.0187222957611084, + -0.0013342490419745445, + 0.025500565767288208, + 0.02548629604279995, + -0.027113081887364388, + -0.01177992019802332, + 0.002131587592884898, + -0.02635676972568035, + -0.01943579874932766, + -0.022318346425890923, + 0.013485190458595753, + -0.006121848244220018, + -0.0045521436259150505, + -0.006664109881967306, + -0.02708454057574272, + 0.01459825411438942, + -0.038101013749837875, + -0.05376952141523361, + 0.009974760003387928, + 0.01000330038368702, + -0.0016678111860528588, + 0.05137215554714203, + 0.005215700715780258, + 0.01137322373688221, + 0.0056116944178938866, + -0.020677292719483376, + 0.028012093156576157, + 0.01893634721636772, + 0.01464106421917677, + 0.001192440395243466, + -0.015482996590435505, + -0.01133754849433899, + -0.008048304356634617, + 0.0010408211965113878, + 0.015054894611239433, + 0.00457711610943079, + -0.01775193400681019, + -0.02177608571946621, + 0.008875967003405094, + 0.01815149374306202, + 0.007563122548162937, + 0.00350686302408576, + 0.016110878437757492, + 0.01879364624619484, + -0.0014698144514113665, + -0.021947326138615608, + 0.037045031785964966, + -0.041982464492321014, + 0.016667410731315613, + -0.015568616800010204, + -0.03127993270754814, + -0.03264985606074333, + -0.032136134803295135, + -0.021719004958868027, + 0.009996164590120316, + -0.034790363162755966, + 0.037301890552043915, + -0.022946229204535484, + -0.037473130971193314, + 0.026513738557696342, + 0.014055992476642132, + -0.007962684147059917, + 0.012785958126187325, + 0.03304941952228546, + 0.0020352648571133614, + 0.007498907390981913, + -0.01789463311433792, + 0.03621736913919449, + -0.00048696520389057696, + 0.018836457282304764, + 0.004587818868458271, + -0.003860046621412039, + -0.009953354485332966, + -0.0016187579603865743, + -0.017281021922826767, + -0.0013324652099981904, + -0.04146874323487282, + 0.01773766241967678, + -0.01629638858139515, + 0.01733810268342495, + 0.014912194572389126, + 0.022546667605638504, + -0.002029913477599621, + -0.015354566276073456, + 0.012736013159155846, + -0.006764000281691551, + 0.015097705647349358, + -0.01193689089268446, + -0.007259884383529425, + -0.006450059358030558, + 0.019250286743044853, + 0.008005494251847267, + 0.024373233318328857, + 0.026313958689570427, + 0.005518938880413771, + 0.007302694488316774, + 0.005679477006196976, + 0.013899021781980991, + -0.020905612036585808, + -0.003852911526337266, + 0.005779367405921221, + -0.00685675535351038, + 0.0242733433842659, + -0.02508673444390297, + -0.011223388835787773, + -0.03864327445626259, + 0.007199236657470465, + -0.013613620772957802, + -0.021347984671592712, + -0.0022725043818354607, + 0.0115730045363307, + -0.01652470976114273, + -0.007862793281674385, + -0.012386397458612919, + -0.03227883577346802, + 0.02371681109070778, + -0.0030644917860627174, + 0.0001078614586731419, + -0.019878169521689415, + -0.015126245096325874, + 0.02146214433014393, + 0.03356314077973366, + 0.0073990169912576675, + -0.007755768019706011, + -0.006992320995777845, + -0.03162241354584694, + 0.023745350539684296, + 0.024301882833242416, + -0.03113723360002041, + -0.04537873715162277, + 0.016995619982481003, + 0.023402869701385498, + -0.01708124205470085, + -0.03233591839671135, + 0.0005538560217246413, + -0.0010069299023598433, + -0.010595506988465786, + -0.0012941145105287433, + 0.001383302267640829, + 0.0050408923998475075, + 0.017837554216384888, + -0.0025864453054964542, + -0.02637103945016861, + 0.0075203124433755875, + 0.003437296487390995, + -0.018180035054683685, + 0.02201867662370205, + -0.0286114364862442, + 0.006475031841546297, + -0.05884965509176254, + -0.015311756171286106, + -0.0018551055109128356, + 0.03790123388171196, + -0.013185519725084305, + -0.0028343871235847473, + -0.014755223877727985, + -0.004851814359426498, + 0.004059826955199242, + -0.0011746028903871775, + 0.016995619982481003, + 0.0004396956937853247, + 0.022061485797166824, + 0.02796928398311138, + -0.018822185695171356, + 0.025757426396012306, + -0.021490683779120445, + -0.007295559160411358, + -0.004976677242666483, + -0.007912738248705864, + 0.011465979740023613, + 0.005675909575074911, + 0.017395181581377983, + -0.008019763976335526, + 0.008326569572091103, + 0.04985952749848366, + -0.03304941952228546, + 0.02370254136621952, + -0.024715714156627655, + 0.008875967003405094, + 0.0319078154861927, + -0.010538426227867603, + 0.004270310513675213, + 0.0036156720016151667, + 0.003703076159581542, + -0.013727781362831593, + 0.0369308702647686, + 0.012243696488440037, + 0.007320532109588385, + -0.00024303665850311518, + -0.00223682913929224, + 0.019450068473815918, + -0.011672895401716232, + -0.01579693704843521, + 0.003239299636334181, + -0.030680591240525246, + -0.003612104570493102, + -0.025500565767288208, + -0.01936444826424122, + 0.01740945130586624, + 0.0047019789926707745, + -0.009924815036356449, + 0.016153687611222267, + -0.02057740092277527, + 0.012935793958604336, + -0.005807907320559025, + -0.0018354842904955149, + 0.010245890356600285, + -0.01168716512620449, + -0.02460155449807644, + 0.07249181717634201, + -0.0012718176003545523, + -0.003187570720911026, + 0.009061477147042751, + -0.01960703916847706, + -0.01363502535969019, + 0.02079145237803459, + 0.02645665965974331, + 0.0007139481022022665, + 0.004045557230710983, + -0.021733274683356285, + 0.0029824390076100826, + 0.02347422018647194, + 0.026142718270421028, + -0.001669595018029213, + -0.003299947362393141, + 0.017452262341976166, + 0.01926455833017826, + -0.033420439809560776, + -0.012307912111282349, + -0.000861107895616442, + -0.014469822868704796, + 0.03079475276172161, + -0.02111966349184513, + -0.004045557230710983, + -0.03008124977350235, + 0.010738207027316093, + 0.006175361108034849, + -0.02283206768333912, + 0.001126441522501409, + 0.017937444150447845, + -0.005836447700858116, + 0.004345227964222431, + 0.008975856937468052, + -0.02855435572564602, + 0.024972574785351753, + 0.0023902321700006723, + -0.021562034264206886, + -0.003135841805487871, + -0.009603738784790039, + -0.010987932793796062, + -0.0030056277755647898, + -0.017951713874936104, + -0.006728325039148331, + -0.013306815177202225, + 0.004445118363946676, + 0.012707472778856754, + 0.017851823940873146, + 0.006835350301116705, + -0.003075194312259555, + -0.007777173072099686, + 0.0036709685809910297, + 0.00014983545406721532, + -0.004634196404367685, + -0.01188694592565298, + -0.013770591467618942, + -0.027855122461915016, + -0.01661032997071743, + -0.03193635493516922, + -0.01579693704843521, + -0.006788972765207291, + 0.029938548803329468, + -0.007855658419430256, + -0.04466523230075836, + 9.961158502846956e-5, + 0.015326025895774364, + -0.0019888870883733034, + -0.014177286997437477, + 0.002622120315209031, + -0.02081999182701111, + -0.009204177185893059, + 0.006428654305636883, + -0.0025739590637385845, + 0.007463232148438692, + 0.016410548239946365, + 0.009304068051278591, + 0.010852367617189884, + -0.01742372289299965, + 0.003681671107187867, + -0.0232316292822361, + -0.014377067796885967, + 0.011501654051244259, + 0.02047751098871231, + 0.00879034586250782, + 0.011672895401716232, + -0.011601544916629791, + -0.003909991588443518, + -0.002720226999372244, + 0.015540076419711113, + -0.019136127084493637, + 0.007231344003230333, + 0.013528000563383102, + 0.012065321207046509, + -0.004113339819014072, + -0.0016062717186287045, + -0.021091124042868614, + -0.00232780072838068, + -0.008611970581114292, + -0.008897371590137482, + -0.02501538395881653, + -0.00943963322788477, + 0.008519215509295464, + 0.007784308400005102, + -0.02234688773751259, + 0.01919320784509182, + 0.01443414855748415, + -0.019164666533470154, + 0.022846339270472527, + -0.01366356573998928, + -0.02999562956392765, + -0.0027166593354195356, + -0.02096269279718399, + -0.022289806976914406, + -0.0047733294777572155, + -0.007827118039131165, + -0.005030190106481314, + -0.015368836000561714, + -0.02385951206088066, + 0.02097696252167225, + -0.015611426904797554, + -0.017380911856889725, + 0.004648466594517231, + -0.011594410054385662, + 0.010053245350718498, + 0.002190451603382826, + -0.02517235465347767, + -0.02845446579158306, + 0.013613620772957802, + -0.026513738557696342, + 0.0036156720016151667, + 0.011758515611290932, + 0.007463232148438692, + 0.010517021641135216, + 0.023688271641731262, + -0.013849076814949512, + -0.015454456210136414, + 0.00931833777576685, + 0.0011531978379935026, + -0.002984222723171115, + -0.002515095053240657, + -0.012129535898566246, + -0.00683178286999464, + 0.007884198799729347, + 0.026342498138546944, + -0.014006046578288078, + 0.007456097286194563, + -0.026328228414058685, + 0.016082338988780975, + 0.010873772203922272, + -0.01725248247385025, + 0.023645460605621338, + -0.006211035884916782, + -0.008355109952390194, + 0.0007509610150009394, + -0.001412734272889793, + -0.016567518934607506, + -0.010402861051261425, + -0.020748641341924667, + -0.010381456464529037, + 0.01605379767715931, + -0.013656430877745152, + -0.01789463311433792, + -0.002604282693937421, + -0.026813410222530365, + -0.003952801693230867, + -0.0023063956759870052, + -0.0020620212890207767, + -0.036987949162721634, + -0.007470367476344109, + -0.002870062366127968, + -0.016995619982481003, + 0.0029949252493679523, + -0.013563675805926323, + 0.01596817746758461, + -0.005347698461264372, + -0.0143913384526968, + 0.025514835491776466, + -0.010545562021434307, + 0.03533262759447098, + -0.013313950039446354, + -0.026813410222530365, + -0.01596817746758461, + 0.013349625281989574, + 0.02014929987490177, + 0.03981341794133186, + 0.005390508566051722, + -0.007277722004801035, + -0.015368836000561714, + -0.021262364462018013, + -0.0014011397724971175, + 0.018650945276021957, + -0.03476182371377945, + -0.003913559019565582, + 0.023288710042834282, + -0.007884198799729347, + 0.007605932652950287, + -0.03313503786921501, + -0.017866093665361404, + 0.012200886383652687, + -0.02209002524614334, + 0.023331519216299057, + 0.0005021271063014865, + 0.015854017809033394, + -0.003150111995637417, + 0.00870472565293312, + -0.020063679665327072, + 0.005668774247169495, + 0.008390785194933414, + 0.0008981208084151149, + -0.018679486587643623, + -0.017523612827062607, + 0.0006769351311959326, + -0.01847970485687256, + -0.006453626789152622, + 0.019621308892965317, + 0.0034729717299342155, + -0.0035853481385856867, + -0.006614164914935827, + -0.022304076701402664, + -0.008933046832680702, + -0.004730519372969866, + -0.005593856796622276, + -0.011401764117181301, + 0.012193751521408558, + 0.00915423221886158, + -0.0144769586622715, + 0.018993426114320755, + 0.003920694347470999, + 0.04349508881568909, + -0.0034337290562689304, + -0.012322181835770607, + 0.005240673199295998, + 0.012250831350684166, + -0.0187222957611084, + 0.01205818634480238, + -0.008547755889594555, + -0.01613941788673401, + 0.006535679567605257, + -0.0068710255436599255, + -0.006307358853518963, + -0.0004140542005188763, + -0.0015456239925697446, + -0.009603738784790039, + 0.012386397458612919, + 0.008062574081122875, + -0.0003121571789961308, + 0.0065321121364831924, + 0.010524156503379345, + 0.012764553539454937, + -0.004423713311553001, + -0.007613067980855703, + 0.006414384115487337, + -0.0034640529192984104, + 0.01136608887463808, + -0.007391882129013538, + 0.005279915872961283, + -0.003107301890850067, + 2.1307514543877915e-5, + -0.019664118066430092, + -0.01669595018029213, + -0.01185840554535389, + -0.023031849414110184, + 0.0003076978027820587, + 0.003059140406548977, + -0.015854017809033394, + 0.027955014258623123, + 0.017195401713252068, + -0.006885295733809471, + 0.013185519725084305, + -0.01896488666534424, + 0.00588996009901166, + 0.0033070824574679136, + -0.0098820049315691, + -0.00951811857521534, + 0.03170803561806679, + -0.003007411491125822, + -0.007306261919438839, + -0.009667954407632351, + 0.015111975371837616, + -0.000679610762745142, + 0.015340295620262623, + 0.030623512342572212, + 0.006756865419447422, + -0.003906424157321453, + 0.0018765105633065104, + 0.022275537252426147, + -0.020777182653546333, + 0.0069709159433841705, + 0.0048625171184539795, + 0.008483540266752243, + -0.00022374981199391186, + 0.01104501262307167, + -0.018408354371786118, + 0.0006153956055641174, + -0.005654504522681236, + 0.010238755494356155, + -0.011872675269842148, + 0.04606369882822037, + -0.012571907602250576, + -0.0077985781244933605, + -0.010474211536347866, + -0.02942482754588127, + -0.007513177581131458, + 0.009660818614065647, + 0.03147971257567406, + 0.0032678397838026285, + 0.01612514816224575, + -0.0038707491476088762, + 0.00683178286999464, + -0.03273547813296318, + 0.0033356223721057177, + 0.002493690000846982, + 0.007010158617049456, + -0.008397920057177544, + 0.005440453998744488, + -0.007869928143918514, + 0.012436342425644398, + -0.004170420113950968, + -0.01197256613522768, + 0.0194215290248394, + -0.02007794938981533, + 0.010745341889560223, + -0.04572121798992157, + -0.017223941162228584, + -0.00011639003787422553, + 0.014940734952688217, + -0.022546667605638504, + 0.02684194967150688, + -0.018251385539770126, + 0.028839755803346634, + 0.032050516456365585, + 0.008383650332689285, + 0.020092220976948738, + 0.00014102815475780517, + -0.005747259594500065, + 0.002213640371337533, + -0.013371029868721962, + 0.01588255725800991, + -0.0002689011162146926, + 0.015340295620262623, + -0.02087707258760929, + 0.006228873506188393, + 0.012814498506486416, + 0.023830970749258995, + -0.01391329150646925, + -0.0037637236528098583, + 0.014055992476642132, + -0.006956645753234625, + -0.011822730302810669, + -0.01653897948563099, + -0.01662459969520569, + -0.03030957095324993, + 0.006835350301116705, + -0.01613941788673401, + 0.006228873506188393, + -0.010110325179994106, + 0.002629255410283804, + 0.004623493645340204, + -0.0036745360121130943, + -0.011986835859715939, + 0.010695396922528744, + -0.007441827096045017, + 0.021091124042868614, + -0.024701444432139397, + -0.010231620632112026, + 0.01144457422196865, + -0.003970639314502478, + -0.0003852911468129605, + -0.018351275473833084, + 0.025771697983145714, + -0.0195927694439888, + 0.0019460771000012755, + 0.007848523557186127, + 0.015454456210136414, + 0.01678157038986683, + -0.01629638858139515, + 0.026585089042782784, + -0.0097107645124197, + -0.0036923736333847046, + -0.02338859997689724, + -0.01869375631213188, + -0.009004397317767143, + -0.0071956692263484, + -0.025286516174674034, + 0.0015661371871829033, + -0.026913300156593323, + -0.0069709159433841705, + -0.008890236727893353, + 0.029710229486227036, + -0.0005823961109854281, + 0.0023028282448649406, + 0.009090017527341843, + 0.04086940363049507, + -0.008226679638028145, + -0.019007697701454163, + 0.02378816157579422, + 0.0068924305960536, + 0.02540067583322525, + -0.01596817746758461, + 0.008904506452381611, + 0.030851831659674644, + -0.020605942234396935, + -0.01565423607826233, + 0.0027612531557679176, + 0.003326703794300556, + 0.015525806695222855, + 0.006942375563085079, + -0.012843038886785507, + -0.012265102006494999, + 0.00018305789853911847, + -0.021918784826993942, + -0.02063448168337345, + -0.027869394049048424, + -0.0040812320075929165, + -0.008512080647051334, + -0.03150825574994087, + 0.0073419371619820595, + 0.008041169494390488, + -0.0010015786392614245, + 0.016510440036654472, + 0.012065321207046509, + -0.0024062858428806067, + 0.011844135820865631, + -0.003492593066766858, + 0.015383105725049973, + -0.0032678397838026285, + 0.011501654051244259, + -0.013399570249021053, + 0.0004954380565322936, + 0.010096055455505848, + -0.0026328228414058685, + 0.021005501970648766, + 0.00500165019184351, + 0.00013902143109589815, + 0.013028549030423164, + -0.017880363389849663, + -0.010438536293804646, + -0.004009881988167763, + 0.010659721679985523, + 0.006164658349007368, + 0.021148202940821648, + -0.010959392413496971, + -0.036417149007320404, + -0.004195392597466707, + -0.011187713593244553, + 0.007484637200832367, + 0.014041721820831299, + 0.014405608177185059, + 0.0035692944657057524, + -0.008362244814634323, + -0.009646548889577389, + 0.02146214433014393, + 0.004694844130426645, + 0.0019050507107749581, + 0.019578497856855392, + 0.02330297976732254, + 0.018180035054683685, + 0.00028294819639995694, + -0.009653683751821518, + 0.002138722687959671, + 0.007563122548162937, + -0.008183869533240795, + -0.0014894356718286872, + -0.01192975603044033, + -0.008191004395484924, + 0.020463241264224052, + 0.012393532320857048, + -0.016596060246229172, + 0.004919597413390875, + -0.026913300156593323, + 0.0028076309245079756, + 0.01782328262925148, + -0.01144457422196865, + 0.0004789383092429489, + 0.004955272190272808, + -0.011594410054385662, + -0.0322502963244915, + -0.006293088663369417, + 8.01017667981796e-5, + -0.011094958521425724, + 0.0005204105982556939, + -0.0021066151093691587, + -0.009325472638010979, + -0.018037334084510803, + -0.014612523838877678, + 0.07751487195491791, + 0.005533209070563316, + 0.028911106288433075, + 0.023345790803432465, + -0.000543599424418062, + -0.017537882551550865, + -0.011544464156031609, + 0.013485190458595753, + 0.006557084619998932, + -0.004687708802521229, + -0.03219321742653847, + -0.01702416129410267, + 0.012379261665046215, + 0.02234688773751259, + -0.026256877928972244, + 0.003888586536049843, + 0.004070529714226723, + -0.001963914604857564, + 0.0028379547875374556, + 0.009004397317767143, + -0.00026622548466548324, + 0.001027443096973002, + -0.006211035884916782, + 0.015283215790987015, + -0.0010925501119345427, + 0.017523612827062607, + -0.008055439218878746, + 0.0005926527082920074, + 0.028083443641662598, + 0.02540067583322525, + 0.004338093101978302, + -0.004748356528580189, + -0.0013012494891881943, + -0.0184654351323843, + -0.0012298993533477187, + 0.008583431132137775, + -0.0013342490419745445, + 0.0014100585831329226, + 0.005504669155925512, + -0.010367185808718204, + 0.0010033623548224568, + -0.001888996921479702, + 0.011009338311851025, + 0.02283206768333912, + -0.025186626240611076, + -0.008540621027350426, + -0.013000008650124073, + 0.0034034051932394505, + -0.008733266033232212, + -0.007577392738312483, + 0.006628434639424086, + 0.0007674607331864536, + 0.012843038886785507, + 0.03008124977350235, + 0.016253579407930374, + -0.0016258929390460253, + 0.008590565994381905, + 0.006296656560152769, + 0.01886499673128128, + -0.004737654235213995, + -0.020705832168459892, + -0.005629532039165497, + 0.004809004254639149, + -0.0048910570330917835, + -0.009903409518301487, + -0.008447865024209023, + -0.01992098055779934, + 0.0028647109866142273, + -0.010859502479434013, + -0.0319078154861927, + -0.009910544380545616, + -0.02361692115664482, + -0.006182495970278978, + -0.021747544407844543, + -0.0029342775233089924, + 0.032706938683986664, + 0.006653407588601112, + 0.03025249019265175, + 0.038414955139160156, + 0.0022172078024595976, + -0.004605656489729881, + 1.525946913716325e-6, + -0.013107034377753735, + -0.002607850357890129, + 0.01133754849433899, + -0.01189408078789711, + 0.01685292087495327, + -0.03927115723490715, + 0.0005012352485209703, + -0.023188820108771324, + -0.02458728291094303, + -0.0010238755494356155, + 0.009582333266735077, + 0.007045833393931389, + -0.010038974694907665, + 0.0015732721658423543, + 0.003917126916348934, + 0.016810109838843346, + -0.003376648761332035, + -0.018893536180257797, + 0.0009074855479411781, + 0.0015144082717597485, + -0.008940181694924831, + -0.005397643428295851, + -0.004309552721679211, + -0.00455927848815918, + 0.023674000054597855, + -0.009011532180011272, + -0.0004883030196651816, + -0.004045557230710983, + -0.0005493966164067388, + -0.008305164985358715, + -0.005319158546626568, + 0.012236561626195908, + 0.001798025332391262, + -0.006924538407474756, + 0.019892439246177673, + 0.0011870891321450472, + -0.018279924988746643, + -0.020377621054649353, + 0.012029645964503288, + 0.004348795395344496, + -0.0022725043818354607, + -0.018037334084510803, + -0.0043916055001318455, + 0.01896488666534424, + -0.012828768230974674, + -0.014041721820831299, + -0.006521409377455711, + -0.002722010714933276, + 0.010402861051261425, + 0.0056723421439528465, + 0.007584527600556612, + -0.010731072165071964, + 0.011787055060267448, + 0.0011460628593340516, + -0.015140515752136707, + 0.017809012904763222, + 0.010053245350718498, + -0.020049409940838814, + 0.03079475276172161, + -0.01862240582704544, + 0.01636773906648159, + 0.017809012904763222, + 0.006096875760704279, + -0.008312299847602844, + -0.004045557230710983, + -0.00934687815606594, + 0.026171257719397545, + -0.016410548239946365, + 0.023245899006724358, + -0.024059291929006577, + 0.01643908955156803, + -0.00347653916105628, + -0.0008089330513030291, + 0.006275251507759094, + -0.032621316611766815, + 0.01862240582704544, + -0.022618018090724945, + 0.002115533920004964, + 0.009097152389585972, + -0.01869375631213188, + -0.013513730838894844, + 0.005048027727752924, + -0.006639137398451567, + 0.008519215509295464, + 0.014812304638326168, + 0.013977507129311562, + 0.004883922170847654, + 0.006368006579577923, + -0.006364439148455858, + 0.012143806554377079, + 0.03707357123494148, + -0.026028558611869812, + 0.00967508926987648, + -0.009646548889577389, + 0.007534582633525133, + -0.0010087136179208755, + -0.01636773906648159, + 0.00899726152420044, + -0.008369379676878452, + -0.020506052300333977, + 0.0036852385383099318, + -0.0049231648445129395, + -0.020120760425925255, + -0.017623502761125565, + 0.0228891484439373, + -0.00926839280873537, + -0.005615261849015951, + -0.015111975371837616, + -0.01386334653943777, + 0.019664118066430092, + 0.004470090847462416, + -0.016025258228182793, + -0.006114713381975889, + 0.007955548353493214, + 0.03695940971374512, + 0.020377621054649353, + 0.04021298140287399, + 0.005936337634921074, + -0.0015028138877823949, + -0.008019763976335526, + 0.009261257946491241, + 0.006599894724786282, + -0.007484637200832367, + -0.004027719609439373, + -0.008105384185910225, + -0.008490675128996372, + -0.008083979599177837, + 0.003030600259080529, + -0.0395280197262764, + -0.022304076701402664, + 0.0121794817969203, + 0.010224485769867897, + -0.0030484378803521395, + 0.011787055060267448, + 0.006778270471841097, + 0.010702531784772873, + 0.008276624605059624, + 0.007527447305619717, + -0.0061004431918263435, + 0.003892154200002551, + 0.00956092868000269, + 0.015026355162262917, + 0.0034123240038752556, + 0.010310105979442596, + -0.007377611938863993, + 0.020177841186523438, + 0.02587158791720867, + -0.0038850191049277782, + 0.006128983572125435, + -0.0195927694439888, + 0.002094128867611289, + -0.0036459958646446466, + -0.005115810316056013, + 0.024658633396029472, + 0.0067818379029631615, + -0.015839748084545135, + 0.017552152276039124, + -0.003075194312259555, + -0.021433604881167412, + 0.008440730161964893, + 0.0004392497648950666, + -0.011822730302810669, + -0.002887899987399578, + -0.020220650359988213, + -0.0069994558580219746, + -0.003076978027820587, + -0.0064108166843652725, + -2.5585741241229698e-5, + -0.003383783856406808, + -0.003917126916348934, + 0.0004062502703163773, + -0.011644355021417141, + -0.011180578731000423, + -0.0011514141224324703, + -0.007812848314642906, + 0.008768941275775433, + -0.0032000571954995394, + -0.0063216290436685085, + 0.011259064078330994, + 0.011152038350701332, + -0.01702416129410267, + 0.009403957985341549, + 0.0023920158855617046, + 0.0184654351323843, + -0.03824371472001076, + 0.015340295620262623, + 0.0037744264118373394, + 0.004163284786045551, + 0.005722287110984325, + -0.007655878085643053, + 0.00451646838337183, + 0.039556559175252914, + -0.005633099470287561, + 0.00012274466280359775, + -0.008890236727893353, + -0.016153687611222267, + 0.004341660533100367, + 0.029310667887330055, + -0.009782114066183567, + -0.015154785476624966, + 0.0071492912247776985, + -0.02564326673746109, + -0.0020531024783849716, + -0.029653148725628853, + 0.017452262341976166, + 0.02129090391099453, + 0.0059827156364917755, + 0.02484414353966713, + -0.0011986836325377226, + -0.0037744264118373394, + -0.0023509894963353872, + 0.0044914958998560905, + 0.007327666971832514, + 0.014369932934641838, + -0.010766747407615185, + -0.005832879804074764, + 0.03764437139034271, + -0.021248092874884605, + -0.01402745209634304, + 0.004662736319005489, + -0.013128438964486122, + -0.01645335927605629, + 0.00592563534155488, + 0.017452262341976166, + 0.035760726779699326, + 0.015240405686199665, + -0.003710211021825671, + 0.017323831096291542, + 0.005176458042114973, + -0.0009801735868677497, + 0.001443949993699789, + -0.015554346144199371, + -0.002425907179713249, + -0.0007946629775688052, + -0.007284856867045164, + 0.033334821462631226, + -0.006357303820550442, + 0.012728878296911716, + -0.009489578194916248, + 0.0016044878866523504, + 0.03185073658823967, + -0.024045022204518318, + 0.010010435245931149, + -0.018679486587643623, + 0.02072010189294815, + 0.00693524070084095, + 0.012728878296911716, + -0.027598261833190918, + 0.015411646105349064, + 0.018408354371786118, + -0.02313173934817314, + -0.0068995654582977295, + 0.01129473838955164, + 0.018993426114320755, + -0.015097705647349358, + -0.004969542380422354, + 0.012443477287888527, + -0.007213506381958723, + 0.003917126916348934, + -0.01685292087495327, + 0.0009962273761630058, + -0.002802279544994235, + 0.0042738779447972775, + -0.007605932652950287, + 0.005383373703807592, + 0.002727361861616373, + 0.0028736297972500324, + 0.010645451955497265, + -0.009304068051278591, + -0.0006550841499119997, + 0.009946219623088837, + 0.0018479705322533846, + -0.015568616800010204, + 0.0007741498411633074, + 0.02103404328227043, + 0.023103199899196625, + -0.0027773070614784956, + -0.010802422650158405, + 0.00975357461720705, + 0.019735468551516533, + -0.02103404328227043, + -0.016967080533504486, + 0.013185519725084305, + -0.012600447982549667, + -0.0033498925622552633, + 0.0004615467041730881, + -0.031736575067043304, + -0.007010158617049456, + -0.003269623499363661, + -0.01149451918900013, + -0.007848523557186127, + 0.002818333450704813, + -0.007969819009304047, + -0.0040526920929551125, + -0.013577945530414581, + 0.008019763976335526, + -0.030908912420272827, + 0.005736557301133871, + 0.029481908306479454, + 0.004858949687331915, + 0.007441827096045017, + -0.002060237340629101, + -0.024644363671541214, + 0.02073437161743641, + 0.016510440036654472, + -0.007655878085643053, + -0.002001373562961817, + -0.004933867137879133, + -0.010038974694907665, + 0.002900386229157448, + -0.003255353542044759, + 0.015768397599458694, + -0.03792977333068848, + 0.037473130971193314, + -0.026413848623633385, + 0.01185840554535389, + -0.01805160380899906, + 0.010638317093253136, + -0.01733810268342495, + 0.005996985360980034, + 0.016410548239946365, + 0.009011532180011272, + 0.00955379381775856, + -0.024330422282218933, + -0.001746296533383429, + -0.0010069299023598433, + 0.023160278797149658, + -0.013535135425627232, + 0.012671797536313534, + 0.018979156389832497, + -0.006246711127460003, + 0.012208021245896816, + 0.012714607641100883, + -0.026099907234311104, + -0.0034176751505583525, + -0.0013396003050729632, + 0.008347975090146065, + 0.010331510566174984, + -0.0010604425333440304, + -0.008062574081122875, + 0.0052299704402685165, + -0.001759674632921815, + 0.010709666647017002, + -0.008198139257729053, + 0.026742059737443924, + 0.01000330038368702, + -7.402584742521867e-5, + 0.00874753575772047, + 0.008840291760861874, + 0.008155329152941704, + -0.018180035054683685, + 0.016096608713269234, + -0.03667401149868965, + -0.005144350230693817, + 0.019050506874918938, + -0.007306261919438839, + -0.00931120291352272, + 0.014712413772940636, + -0.028882566839456558, + -0.017437992617487907, + -0.03139409422874451, + -0.0093611478805542, + -0.00713502150028944, + -0.017523612827062607, + 0.006846053060144186, + 0.02548629604279995, + -0.0022189917508512735, + -0.02032054029405117, + -0.013577945530414581, + 0.009996164590120316, + -0.0036014020442962646, + 0.00477689690887928, + -0.018108684569597244, + -0.005857852753251791, + -0.0013342490419745445, + -0.02685622125864029, + 0.011515924707055092, + -0.033905621618032455, + 0.015368836000561714, + 0.005365536082535982, + 0.008198139257729053, + -0.013221194967627525, + 0.005772232078015804, + -0.01683865115046501, + 0.018979156389832497, + 0.009917679242789745, + -0.027127351611852646, + -0.0007166237337514758, + -0.024644363671541214, + 0.04355217143893242, + 0.004737654235213995, + 0.004958839621394873, + 0.01173711009323597, + 0.0275697223842144, + -0.0231460090726614, + 0.010424266569316387, + 0.002208289224654436, + -0.0005765989189967513, + -0.013642161153256893, + -0.0013280058046802878, + -0.009603738784790039, + -0.005429751239717007, + 0.025843046605587006, + -0.003651347244158387, + 0.009097152389585972, + 0.010802422650158405, + -0.02137652412056923, + 0.01815149374306202, + 0.01893634721636772, + 0.03795831277966499, + 0.00935401301831007, + -0.004095502197742462, + 0.017195401713252068, + 0.004480793606489897, + 0.01603952795267105, + 0.026485199108719826, + -0.015326025895774364, + 0.007677283138036728, + 0.029453368857502937, + 0.0057900696992874146, + -0.0044522532261908054, + -0.01895061694085598, + 0.020020870491862297, + 0.0025721751153469086, + 0.0035264843609184027, + 0.014241502620279789, + 0.01173711009323597, + 0.014726684428751469, + 0.014163017272949219, + -0.007081508636474609, + -0.015069165267050266, + -0.00584714999422431, + -0.0036602660547941923, + 0.03256423771381378, + -1.815110408642795e-6, + -0.005579586606472731, + 0.01451263390481472, + -0.011344684287905693, + -0.003299947362393141, + -0.03233591839671135, + 0.011908350512385368, + 0.0037494536954909563, + 0.0033909189514815807, + 0.0045949537307024, + 0.009489578194916248, + -0.006903133355081081, + 0.0006466113263741136, + -0.010823827236890793, + -0.017866093665361404, + 0.03264985606074333, + 0.024744253605604172, + -0.010574101470410824, + -0.006574922241270542, + 0.013028549030423164, + 0.021918784826993942, + -0.003785128938034177, + 0.02290341816842556, + -0.0002961033897008747, + 0.01192975603044033, + 0.008847426623106003, + 0.011622949503362179, + 0.005904230289161205, + -0.0034248102456331253, + -0.023274440318346024, + 0.011273333802819252, + 0.009989029727876186, + 0.011744244955480099, + -0.0007656769594177604, + -0.006792540196329355, + 0.015211865305900574, + 0.016810109838843346, + 0.014726684428751469, + 0.02380243130028248, + -0.010081784799695015, + 0.020534591749310493, + 0.0058221775107085705, + -0.015354566276073456, + 0.02597147785127163, + 0.00457711610943079, + -0.011551599949598312, + 0.0018265654798597097, + -0.013499460183084011, + 9.531942487228662e-5, + 0.0036852385383099318, + -0.0035924832336604595, + -0.013328219763934612, + 0.01403458695858717, + 0.003369513899087906, + -0.02120528370141983, + 0.011594410054385662, + 0.005697314627468586, + 0.005347698461264372, + -0.0139561016112566, + 0.005679477006196976, + -0.031422633677721024, + 0.013799130916595459, + 0.017038431018590927, + -0.010809557512402534, + -0.0030270328279584646, + -0.01652470976114273, + 0.008554890751838684, + -0.0037066435907036066, + 0.010545562021434307, + 0.018279924988746643, + 8.489560423186049e-5, + 0.01137322373688221, + 0.032706938683986664, + -0.015397376380860806, + 0.017295291647315025, + -0.013528000563383102, + -0.009047207422554493, + -0.015782667323946953, + 0.01210099644958973, + 0.0186366755515337, + -0.008469270542263985, + 0.0036709685809910297, + -0.015397376380860806, + -0.03048081137239933, + -0.01140889897942543, + 0.010830962099134922, + 0.015582886524498463, + 0.00580433988943696, + 0.010973663069307804, + -0.0021048313938081264, + -0.008048304356634617, + 0.008562025614082813, + -0.01205818634480238, + 0.0033124336041510105, + 0.01636773906648159, + -0.019821088761091232, + 0.0026149852201342583, + -0.02248958684504032, + 0.012914388440549374, + 0.006018390413373709, + 0.012215156108140945, + -0.007017293479293585, + 0.021790355443954468, + -0.002682768041267991, + 0.01193689089268446, + 0.006175361108034849, + 0.0006987861706875265, + 0.00677113514393568, + -0.013535135425627232, + -0.010930852964520454, + 0.004470090847462416, + -0.0031144367530941963, + 0.014883654192090034, + -0.019863899797201157, + 0.006582057103514671, + -0.01870802603662014, + -0.004345227964222431, + -0.0182941947132349, + 0.0019764008466154337, + -0.012628987431526184, + -0.00935401301831007, + 0.011630084365606308, + 0.005144350230693817, + -0.0076487427577376366, + -0.01926455833017826, + -0.007976953871548176, + -0.0003790479968301952, + 0.019649848341941833, + -0.0039635044522583485, + 0.018037334084510803, + -0.007570257876068354, + 0.005868555046617985, + 0.01451263390481472, + -0.010581236332654953, + -0.024644363671541214, + 0.017352372407913208, + -0.015425915829837322, + 0.01145170908421278, + -0.01629638858139515, + -0.022118566557765007, + 0.010823827236890793, + -0.01140889897942543, + 0.03381999954581261, + 0.0059113651514053345, + -0.002773739630356431, + -0.0367596298456192, + -0.011801325716078281, + 0.01789463311433792, + 0.003967071883380413, + -0.0048981923609972, + 0.0032143271528184414, + 0.028582895174622536, + -0.029068076983094215, + -0.005757962353527546, + -0.007613067980855703, + -0.005929202772676945, + -0.016567518934607506, + -0.007138588931411505, + 0.0071956692263484, + 0.027612533420324326, + 0.02580023743212223, + 0.0016428387025371194, + 0.02267509698867798, + -0.0008031358593143523, + -0.0027719559147953987, + 0.0030627078376710415, + 0.009418228641152382, + 0.01926455833017826, + -1.1698926755343564e-5, + 0.015354566276073456, + 0.02103404328227043, + -0.0051728906109929085, + 0.00879034586250782, + 0.004762626718729734, + -0.005090837832540274, + 0.003241083351895213, + -0.04751924052834511, + -0.001329789636656642, + -0.0045236037112772465, + -0.002117317635565996, + -0.010060380212962627, + 0.00033668382093310356, + 0.00980351958423853, + -0.012864443473517895, + -0.009339743293821812, + -0.004291715566068888, + 0.00117906229570508, + 0.0016490818234160542, + -0.014362798072397709, + -0.023017579689621925, + -0.011708569712936878, + 0.002274288097396493, + 0.016267849132418633, + -0.03427664190530777, + 0.019621308892965317, + -0.007762903347611427, + 0.00467343907803297, + 0.016010988503694534, + 0.00996049027889967, + -0.031422633677721024, + -0.01455544400960207, + 0.0012530881213024259, + -0.008933046832680702, + -0.011951160617172718, + 0.00902580190449953, + 0.003642428433522582, + 0.006211035884916782, + -0.0017846472328528762, + -0.00015585562505293638, + -0.024886954575777054, + -0.002673849230632186, + 0.011144903488457203, + -0.02000660076737404, + 0.006653407588601112, + 0.05573878809809685, + -0.0017124051228165627, + -0.006385844200849533, + 0.018365545198321342, + -0.00879034586250782, + -0.013428110629320145, + 0.004851814359426498, + 0.012778823263943195, + -0.01411307230591774, + 0.024644363671541214, + -0.0071314540691673756, + -0.020206380635499954, + 0.007869928143918514, + 0.006607029587030411, + 0.028568625450134277, + -0.0022261266130954027, + -0.014448418281972408, + 0.0019211045000702143, + 0.0025971478316932917, + 0.02815479412674904, + -0.007470367476344109, + -0.020263461396098137, + 0.03304941952228546, + -0.008298030123114586, + 0.007527447305619717, + -0.003344541182741523, + 0.006236008834093809, + -0.03176511451601982, + 0.01676730066537857, + -0.015154785476624966, + 0.008811751380562782, + 0.008041169494390488, + 0.004812571685761213, + -0.010659721679985523, + -0.006325196474790573, + 0.00906861200928688, + -0.0013342490419745445, + -0.014505498111248016, + -0.007577392738312483, + 0.007049401290714741, + -0.02281779795885086, + -0.007976953871548176, + -0.010731072165071964, + -0.025286516174674034, + 0.014455553144216537, + -0.021904515102505684, + -0.016267849132418633, + 0.003151895711198449, + 0.024772794917225838, + -0.012464881874620914, + 0.007755768019706011, + -0.0007750416989438236, + 0.0004668979672715068, + 0.010652586817741394, + -0.002402718411758542, + 0.010281565599143505, + -0.008462135680019855, + 0.021433604881167412, + 0.0024080697912722826, + 0.01766631379723549, + 0.0241877231746912, + -0.00717783160507679, + -0.01960703916847706, + 0.00870472565293312, + 0.00036165639176033437, + -0.01910758763551712, + -0.004662736319005489, + -0.015254675410687923, + -0.013449515216052532, + -0.0016116229817271233, + -0.010324375703930855, + 0.00022218903177417815, + 0.015154785476624966, + -0.020548861473798752, + -0.016738759353756905, + 0.002425907179713249, + 0.00449863076210022, + 0.006885295733809471, + 0.02928212843835354, + -0.011794189922511578, + 0.0005846258136443794, + 0.002691686851903796, + 0.007762903347611427, + 0.01742372289299965, + 0.017780473455786705, + -0.005433318670839071, + -0.004487928468734026, + -0.02380243130028248, + 0.013335354626178741, + 0.009767844341695309, + -0.02645665965974331, + 0.0197640098631382, + 0.01573985628783703, + -0.014812304638326168, + -0.025700347498059273, + -0.012586177326738834, + 0.019464338198304176, + 0.015854017809033394, + -0.010716802440583706, + -0.04129750281572342, + -0.008583431132137775, + -0.012907253578305244, + -0.022189917042851448, + -0.014291447587311268, + 0.012907253578305244, + -0.018593866378068924, + 0.014655333943665028, + -0.01830846443772316, + 0.03835787624120712, + -0.004423713311553001, + -0.0007456097519025207, + -0.007127886172384024, + 0.01455544400960207, + 0.025058194994926453, + 0.00967508926987648, + -0.005294186063110828, + 0.01104501262307167, + -0.010374320670962334, + -0.010745341889560223, + -0.010417130775749683, + 0.009610873647034168, + -0.006318061612546444, + 0.004109772387892008, + -0.006296656560152769, + 0.001374383457005024, + -0.011501654051244259, + -0.00907574687153101, + -0.011844135820865631, + 0.00911855697631836, + -0.008083979599177837, + 0.014812304638326168, + 0.03493306413292885, + -0.003273191163316369, + -0.008497809991240501, + 0.02267509698867798, + -0.008669051341712475, + -0.023659730330109596, + -0.005183592904359102, + -0.0009623360238038003, + -0.019378717988729477, + -0.01661032997071743, + -0.008940181694924831, + 0.014048856683075428, + 0.0028647109866142273, + -0.002918223850429058, + -0.00010223147546639666, + -0.00699588842689991, + -0.007199236657470465, + -0.003164381952956319, + 0.008840291760861874, + 0.006032660603523254, + -0.008512080647051334, + -0.0009427146869711578, + 0.010467076674103737, + -0.01141603384166956, + 0.003770858747884631, + 0.023502759635448456, + 0.012878713198006153, + -0.005868555046617985, + 0.0345049649477005, + -0.005576019175350666, + -0.01750934310257435, + -0.00042275001760572195, + -0.008875967003405094, + -0.013014279305934906, + 0.014048856683075428, + 0.006243143696337938, + 0.01926455833017826, + -0.010731072165071964, + -0.005062297452241182, + 0.007691552862524986, + -0.007541717495769262, + -0.005840015131980181, + 0.013642161153256893, + -0.00919704232364893, + 0.006703352555632591, + -0.023588379845023155, + -0.0018408355535939336, + -0.025029655545949936, + 0.02057740092277527, + -0.02291768789291382, + -0.008490675128996372, + 0.03147971257567406, + 0.004973109811544418, + 0.015668507665395737, + 0.0183798149228096, + -0.01149451918900013, + -0.00951098371297121, + 0.0016811894020065665, + 0.0016339198919013143, + 0.003624590812250972, + -0.012322181835770607, + -0.00895445141941309, + 0.03079475276172161, + 0.025686077773571014, + 0.022518128156661987, + -0.00291465618647635, + -0.015911096706986427, + -0.000883850792888552, + 0.0014038154622539878, + 0.0034051889088004827, + -0.007877063937485218, + 0.006739027798175812, + -0.026656439527869225, + -0.009846329689025879, + 0.006671244744211435, + -0.009767844341695309, + -0.002470501232892275, + -0.005658071953803301, + 0.007320532109588385, + 0.00015630156849510968, + -0.0036852385383099318, + -0.003481890307739377, + -0.022218456491827965, + -0.0031554631423205137, + 0.0030234653968364, + -0.01926455833017826, + -0.007448962423950434, + 0.0021636951714754105, + -0.01210099644958973, + -0.0019228882156312466, + 0.014669603668153286, + 0.0021851002238690853, + 0.006849620491266251, + 0.0005328968982212245, + 0.015697047114372253, + -0.009018667042255402, + 0.0023830970749258995, + 0.002659579273313284, + -0.010324375703930855, + -0.002825468545779586, + -0.009132827632129192, + 0.01358508039265871, + -0.008690455928444862, + 0.010360050946474075, + -0.02565753646194935, + -0.008176734670996666, + -0.01936444826424122, + -0.014955004677176476, + -0.010695396922528744, + 0.005287050735205412, + 0.023245899006724358, + -0.004848246928304434, + 0.021248092874884605, + 0.030109789222478867, + 0.02385951206088066, + -0.026556549593806267, + 0.005087270401418209, + -0.006339466664940119, + 0.02959606796503067, + -0.02371681109070778, + 0.006482166703790426, + 0.00040312870987690985, + -0.011822730302810669, + 0.00935401301831007, + -0.012607582844793797, + -0.009368282742798328, + 0.005108675453811884, + -0.0015857585240155458, + -0.010146000422537327, + -0.0012432774528861046, + -0.00226715300232172, + -0.02330297976732254, + 0.004755491856485605, + -0.025372136384248734, + -0.0004374659911263734, + 0.01596817746758461, + 0.0017650258960202336, + -0.005376238375902176, + -0.009546658955514431, + 0.010995067656040192, + -0.00024593525449745357, + -0.012322181835770607, + -0.0012432774528861046, + 0.008540621027350426, + -0.01145884394645691, + 0.020020870491862297, + 0.006335898768156767, + -0.031222853809595108, + -0.01451976876705885, + -0.001404707320034504, + -0.013299679383635521, + -0.010681127198040485, + 0.010673992335796356, + -0.018807915970683098, + -0.00038127769948914647, + 0.026742059737443924, + 0.009453902952373028, + -0.00580433988943696, + -0.0036406447179615498, + -0.011387494392693043, + 0.012550503015518188, + 0.018451165407896042, + -0.003695941064506769, + 0.0018408355535939336, + 0.022047216072678566, + 1.761458406690508e-5, + -0.023017579689621925, + -0.020548861473798752, + 0.01100220251828432, + -0.0005908689345233142, + -0.005130080506205559, + 0.014048856683075428, + -0.019335908815264702, + -0.008861696347594261, + 0.024373233318328857, + 0.011523059569299221, + -0.008583431132137775, + 0.010509886778891087, + 0.013028549030423164, + -0.0006925429916009307, + -0.010324375703930855, + -0.0010131730232387781, + -0.009946219623088837, + -0.0034872416872531176, + -0.008340840227901936, + 0.00275055062957108, + -0.01596817746758461, + 0.0011309009278193116, + 0.008526350371539593, + -0.008405054919421673, + 0.01702416129410267, + -0.012265102006494999, + 0.0002043514687102288, + 0.007605932652950287, + 0.012885848991572857, + -0.007192101329565048, + 0.001699026906862855, + 0.01605379767715931, + 0.017694853246212006, + 0.010788151994347572, + 0.002424123464152217, + 0.0049624075181782246, + -0.00956092868000269, + -0.011844135820865631, + -0.002613201504573226, + 0.007962684147059917, + 0.006903133355081081, + -0.022275537252426147, + 0.0033374063204973936, + 0.0014296799199655652, + 0.008412189781665802, + -0.000824094982817769, + -0.008240949362516403, + -0.004173987545073032, + -0.01870802603662014, + 0.00717783160507679, + -0.00948244333267212, + -0.023245899006724358, + -0.00435236282646656, + 0.010752476751804352, + 0.006314493715763092, + -0.023445680737495422, + 0.006510707084089518, + -0.004017016850411892, + -0.006574922241270542, + 0.012892983853816986, + 0.002563256537541747, + -0.004177554976195097, + -0.009860599413514137, + 0.021019773557782173, + -0.00026912408065982163, + 0.0015893259551376104, + 0.013449515216052532, + -0.0022618018556386232, + -0.013478055596351624, + 0.0036674009170383215, + -0.0007835145224817097, + 0.006460761651396751, + 0.0068817283026874065, + -0.009304068051278591, + 0.005115810316056013, + 0.00058953114785254, + -0.017323831096291542, + 0.005522506311535835, + 0.0034426478669047356, + -0.017923174425959587, + -0.0018158629536628723, + 0.008298030123114586, + 0.008048304356634617, + -0.022161375731229782, + 0.004127610009163618, + -0.0365883894264698, + -0.007663012947887182, + 0.018208574503660202, + 0.013014279305934906, + -0.009974760003387928, + 0.0023688271176069975, + 0.03199343755841255, + 0.010788151994347572, + -0.019806819036602974, + 0.008690455928444862, + -0.01999232918024063, + -0.024373233318328857, + 0.0022778555285185575, + -0.0002697930030990392, + -1.433972101949621e-5, + 0.004965974949300289, + -0.0021280201617628336, + 0.023331519216299057, + 0.0028611435554921627, + 0.00899726152420044, + 0.0025579051580280066, + -0.0004731411172542721, + -0.012643258087337017, + 0.009853464551270008, + 0.006895998027175665, + 0.0005163971800357103, + 0.011187713593244553, + -0.004405875690281391, + 0.011230523698031902, + 0.0003201840736437589, + 0.0016910000704228878, + 0.007976953871548176, + 0.010395726189017296, + -0.01999232918024063, + -0.008183869533240795, + 0.008833156898617744, + 0.01870802603662014, + 0.01104501262307167, + -0.015054894611239433, + -0.026642169803380966, + 0.004295282997190952, + -0.02501538395881653, + 0.008383650332689285, + 0.01362789049744606, + 0.011273333802819252, + 0.023345790803432465, + 0.013428110629320145, + 0.014170152135193348, + 0.0006292196922004223, + 0.0018568893428891897, + -0.01685292087495327, + 0.0049517047591507435, + 0.010017570108175278, + 0.004826841875910759, + -0.01603952795267105, + -0.0075916629284620285, + -0.004373767878860235, + -0.011751379817724228, + -0.025058194994926453, + -0.026670709252357483, + -0.009218447841703892, + -0.0014519768301397562, + 0.003695941064506769, + 0.018037334084510803, + 0.01205818634480238, + -0.001586650381796062, + -0.009989029727876186, + -0.006086173001676798, + -0.008583431132137775, + 0.00914709735661745, + -0.005354833323508501, + -0.011323278769850731, + -0.0008963370346464217, + -0.016667410731315613, + -0.011266198940575123, + -0.003703076159581542, + 0.01434852834790945, + 0.011394629254937172, + 0.005283483304083347, + -0.006764000281691551, + -0.02290341816842556, + -0.011544464156031609, + 0.0034408641513437033, + -0.00018172006821259856, + -0.008440730161964893, + -0.010624046437442303, + -0.002650660462677479, + 0.01862240582704544, + -0.005187160335481167, + 0.00285400846041739, + 0.014098802581429482, + 0.017452262341976166, + -0.02829749509692192, + -0.00943963322788477, + 0.0007509610150009394, + 0.017594963312149048, + 0.028411654755473137, + 0.005404778756201267, + -0.01702416129410267, + 0.00891164131462574, + -0.012707472778856754, + 0.01581120677292347, + -0.00691740307956934, + 0.012978604063391685, + 0.00017402763478457928, + 0.01153019443154335, + 0.013742051087319851, + -0.0012076023267582059, + 0.0043916055001318455, + 0.01740945130586624, + -0.023688271641731262, + -0.021419333294034004, + 0.00568304443731904, + -0.028283225372433662, + 0.009139962494373322, + -0.005972012877464294, + 0.025357866659760475, + 0.004809004254639149, + 0.008069708943367004, + -0.005283483304083347, + -0.02241823635995388, + -0.0019817522261291742, + 0.008711861446499825, + 0.0005097080720588565, + 0.0031536794267594814, + 0.008811751380562782, + 0.0036299421917647123, + 0.00013656876399181783, + -0.006014822982251644, + -0.0007224209257401526, + -0.001775728422217071, + 0.023602651432156563, + -0.009532388299703598, + -0.004163284786045551, + -0.002688119187951088, + -0.026485199108719826, + -0.005119377747178078, + -0.0027559020090848207, + 0.03927115723490715, + -0.010245890356600285, + 0.0010845232754945755, + -0.011066418141126633, + 0.006542814429849386, + 0.0116586247459054, + -0.0016401630127802491, + -0.010288700461387634, + -0.0036299421917647123, + 0.007541717495769262, + 0.004509333521127701, + -0.04215370491147041, + 0.014683874323964119, + 0.023973671719431877, + -0.019236017018556595, + -0.012700337916612625, + 0.022318346425890923, + -0.008854561485350132, + 0.01718113198876381, + 0.005526074208319187, + -0.010124594904482365, + 0.01596817746758461, + 0.005914932582527399, + -0.019093317911028862, + 0.009289797395467758, + -0.016496170312166214, + 0.014926464296877384, + -0.010124594904482365, + 0.01740945130586624, + -0.00040089900721795857, + 0.0008789454586803913, + -0.011137768626213074, + -0.013763456605374813, + -0.025357866659760475, + -0.003656698390841484, + 0.033334821462631226, + 0.0558244064450264, + 0.02846873551607132, + 0.0029289263766258955, + 0.008654780685901642, + 0.020777182653546333, + -0.021105393767356873, + 0.004049124661833048, + -0.005019487347453833, + -0.029938548803329468, + -0.018422625958919525, + -0.020363351330161095, + -0.00042564861360006034, + 0.03150825574994087, + 0.0092755276709795, + -0.019692659378051758, + 0.004327390342950821, + -0.017680583521723747, + -0.00347653916105628, + 0.007095778826624155, + 0.009610873647034168, + 0.003753021126613021, + 0.011109228245913982, + -0.022846339270472527, + 0.0006425978499464691, + 0.007727228105068207, + 0.010852367617189884, + -0.026827679947018623, + -0.01165148988366127, + -0.028854025527834892, + 0.010374320670962334, + 0.015582886524498463, + -0.012272236868739128, + -0.010973663069307804, + 0.000268009229330346, + -0.007434692233800888, + 0.021419333294034004, + 0.006125415675342083, + 0.009874869138002396, + -0.010245890356600285, + -0.016310658305883408, + 0.007570257876068354, + -0.010360050946474075, + -0.0011424953117966652, + -0.013214059174060822, + -0.01638200879096985, + -0.016909999772906303, + 0.008362244814634323, + -0.019949520006775856, + 0.013727781362831593, + -0.012636123225092888, + 0.005650937091559172, + -0.005543911829590797, + -0.030281031504273415, + -0.009461038745939732, + -0.009382553398609161, + 0.026342498138546944, + 0.04355217143893242, + -0.0024312585592269897, + -0.016581790521740913, + -0.017937444150447845, + -0.014698144048452377, + 0.00461992621421814, + 0.011230523698031902, + 0.016810109838843346, + -0.018094414845108986, + 0.013891886919736862, + -0.02024918980896473, + -0.008069708943367004, + -0.010288700461387634, + -0.008504945784807205, + -0.0021191013511270285, + -0.02057740092277527, + -0.008340840227901936, + -0.007349072024226189, + -0.023431411013007164, + -0.00934687815606594, + -0.019849630072712898, + 0.0020316974259912968, + -0.01354227028787136, + 0.03781561180949211, + -0.003226813394576311, + 0.0016276767710223794, + 0.012743148021399975, + 0.0016044878866523504, + -0.01822284422814846, + -0.004569981247186661, + -0.0016508655389770865, + 0.0004923164960928261, + -0.01893634721636772, + 0.0008660132298246026, + -0.02330297976732254, + -0.002900386229157448, + -0.023003308102488518, + 0.006546382326632738, + 0.0031929221004247665, + -0.012950063683092594, + 0.006104010622948408, + -0.010260161012411118, + -0.004876787308603525, + -0.0016125148395076394, + -0.013649296015501022, + 0.014940734952688217, + 0.002138722687959671, + 0.01886499673128128, + -0.00715285912156105, + -0.03410540148615837, + 0.00477689690887928, + 0.012693203054368496, + 0.0033427574671804905, + 0.017951713874936104, + -0.011216253973543644, + -0.019207477569580078, + 0.003663833485916257, + 0.00894731655716896, + -0.012436342425644398, + 0.028111984953284264, + -0.002782658440992236, + 0.008583431132137775, + 0.0005248700035735965, + 0.013264005072414875, + -0.01613941788673401, + 0.007684418000280857, + 0.028425924479961395, + 0.011437439359724522, + 0.004762626718729734, + -0.013256869278848171, + 0.0058507174253463745, + 0.017124051228165627, + -0.01725248247385025, + 0.0035247006453573704, + 0.01185127068310976, + 0.013763456605374813, + -0.007720093242824078, + 0.007527447305619717, + -0.010631182231009007, + -0.009867734275758266, + 0.008305164985358715, + 0.0021422901190817356, + 0.015383105725049973, + -0.00481970701366663, + -0.021818894892930984, + 0.01902196742594242, + 0.02354557067155838, + 0.011066418141126633, + 0.0036442121490836143, + -0.003981342073529959, + -0.014897924847900867, + 0.01749507151544094, + 0.00580433988943696, + 0.0012227642582729459, + 0.015668507665395737, + -0.031650952994823456, + 0.0010773881804198027, + -0.006706919986754656, + -0.009725034236907959, + 0.022361157462000847, + 0.015754127874970436, + 0.032221756875514984, + -0.009090017527341843, + 0.009625143371522427, + -0.006253845989704132, + 0.005586721934378147, + 0.00357999699190259, + 0.019392987713217735, + 0.006203901022672653, + 0.0007848523673601449, + 0.0037351837381720543, + 0.010709666647017002, + -0.019778279587626457, + -0.005144350230693817, + -0.016724489629268646, + 0.0024294748436659575, + -0.016467629000544548, + 0.0013788428623229265, + 0.008305164985358715, + -0.01725248247385025, + -0.0092755276709795, + -0.021248092874884605, + -0.03316358104348183, + -1.877123759186361e-5, + 0.013328219763934612, + 0.022760719060897827, + 0.01790890283882618, + -0.012650392949581146, + 0.005354833323508501, + -0.0005645585479214787, + -0.0015607859240844846, + 0.0023153144866228104, + 0.006689082365483046, + -0.014163017272949219, + 3.654608008218929e-6, + 0.00560455908998847, + -0.01750934310257435, + -0.011351819150149822, + -0.010338646359741688, + 0.009489578194916248, + 0.015625696629285812, + 0.0036067531909793615, + -0.008740400895476341, + -0.007102913688868284, + 4.409220127854496e-5, + -0.02313173934817314, + 0.005379806272685528, + -0.01910758763551712 + ], + "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6": [ + -0.030803795903921127, + -0.018432969227433205, + -0.01295818854123354, + -0.01653311215341091, + -0.05740180239081383, + -0.01659112237393856, + 0.02593087963759899, + 0.05249987915158272, + -0.0063957036472857, + 0.04052062705159187, + -0.0028914816211909056, + 0.017823854461312294, + -0.017214739695191383, + -0.006580613553524017, + 0.013545549474656582, + 0.0047133867628872395, + -0.06862691789865494, + 0.03695295378565788, + -0.005445774644613266, + -0.014502729289233685, + 0.09096112102270126, + -0.01295818854123354, + -0.008237550035119057, + 0.029193993657827377, + -0.03228307515382767, + -0.014422964304685593, + 0.012088024988770485, + -0.000270113319857046, + -0.006555233616381884, + -0.008737894706428051, + -0.006856165360659361, + 0.007258615922182798, + 0.03274716064333916, + -0.020057274028658867, + 0.031325895339250565, + -0.012755149975419044, + -0.01625755988061428, + 0.009492035955190659, + -0.0403175875544548, + 0.015184357762336731, + -0.007374637760221958, + 0.0437692366540432, + 0.026104912161827087, + 0.016330072656273842, + -0.014771029353141785, + 0.020129788666963577, + 0.0342264398932457, + 0.0012889300705865026, + 0.0030473859515041113, + -0.015097341500222683, + -0.01345853228121996, + 0.027497174218297005, + -0.014879800379276276, + 0.007374637760221958, + 0.020173296332359314, + 0.01138464268296957, + -0.0023802604991942644, + 0.0812152847647667, + 0.016475100070238113, + -0.021115973591804504, + 0.00041468741255812347, + 0.0228417981415987, + 0.031238878145813942, + -0.009513790719211102, + -0.01446647197008133, + -0.012305566109716892, + 0.0019052959978580475, + 0.006272430531680584, + -0.03648886829614639, + 0.002532539190724492, + 0.010528981685638428, + 0.0023530677426606417, + -0.025089722126722336, + -0.001026068115606904, + 0.013980630785226822, + -0.012182292528450489, + 0.036691904067993164, + -0.03477754443883896, + 0.006801779847592115, + 0.021522050723433495, + -0.04417531192302704, + 0.009941620752215385, + 0.002198976231738925, + -0.005938867572695017, + 0.038983337581157684, + 0.020390836521983147, + -0.04983137920498848, + -0.05493633821606636, + -0.02108696848154068, + -0.028657393530011177, + 0.01975271664559841, + 0.012878423556685448, + 0.009383265860378742, + 0.007196979131549597, + -0.03297920525074005, + -0.00953554455190897, + 0.0370979830622673, + 0.007400017697364092, + -0.025466792285442352, + -0.021464038640260696, + -0.01396612823009491, + 0.018432969227433205, + -0.022392213344573975, + -0.012972691096365452, + 0.030977830290794373, + 0.00940501969307661, + 0.02323337271809578, + -0.009586304426193237, + -0.0016696266829967499, + 0.021536553278565407, + 0.028715403750538826, + -0.0017412338638678193, + -0.0087959049269557, + 0.01323374081403017, + 0.0341104194521904, + -0.08283958584070206, + -0.022870803251862526, + -0.017823854461312294, + -0.04719188064336777, + -0.05896809697151184, + 0.050672534853219986, + 0.04339216649532318, + 0.011101839132606983, + -0.028831426054239273, + 0.012987193651497364, + -0.003926613833755255, + -0.011761713773012161, + -0.005670567043125629, + 0.001822811784222722, + 0.021261001005768776, + -0.00789673626422882, + -0.031238878145813942, + -0.030049655586481094, + 0.027758223935961723, + -0.012972691096365452, + 0.010354948230087757, + -0.00030908940243534744, + 0.0565316379070282, + -0.0308328028768301, + 0.028758911415934563, + -0.011892237700521946, + -0.028323829174041748, + -0.014292439445853233, + -0.016489602625370026, + 0.004604616668075323, + 0.016431592404842377, + -0.030194683000445366, + 0.05162971466779709, + 0.0014303316129371524, + 0.021928125992417336, + -0.03590875864028931, + -0.006025883834809065, + 0.003239547135308385, + -0.006286933086812496, + -0.0023095596116036177, + -0.002081141574308276, + 0.02041984349489212, + -0.0018074025865644217, + -0.02894744835793972, + 0.0023766346275806427, + 0.010768276639282703, + -0.02417604997754097, + 0.03335627540946007, + -0.015445406548678875, + 0.011022074148058891, + -0.010797281749546528, + 0.026612507179379463, + 0.0426960363984108, + -0.03889631852507591, + 0.03373334929347038, + 0.04513249173760414, + -0.014227177016437054, + 0.028294824063777924, + 0.0017149477498605847, + -0.012334571219980717, + -0.03332727029919624, + -0.000924095802474767, + 0.018012389540672302, + 0.008853916078805923, + -0.01786736212670803, + -0.007947495207190514, + -0.015184357762336731, + -0.026873556897044182, + 0.004550231155008078, + -0.03268915042281151, + 0.007795216981321573, + 0.01638808473944664, + 0.009796593338251114, + -0.030339708551764488, + -0.003915736917406321, + 0.0044523379765450954, + -0.01907108910381794, + 0.039186373353004456, + 0.05658964812755585, + -0.016881177201867104, + 0.00919472984969616, + -0.00027623167261481285, + -0.0005207385984249413, + 0.024466104805469513, + 0.019433656707406044, + -0.011174352839589119, + -0.050324469804763794, + -0.06323190033435822, + 0.02907797135412693, + -0.06091146171092987, + 0.0002338565100217238, + -0.004677130375057459, + -0.011333882808685303, + 0.015459909103810787, + -0.03442947939038277, + 0.006323189940303564, + -0.025814857333898544, + 0.02900545857846737, + 0.008215796202421188, + -0.005877230782061815, + 0.00789673626422882, + -0.016707144677639008, + 0.033472299575805664, + 0.010456467978656292, + 0.01403139065951109, + -0.023146355524659157, + 0.00416590878739953, + 0.028526868671178818, + -0.0468728207051754, + -0.04707586020231247, + -0.02115948125720024, + -0.025278257206082344, + 0.023740967735648155, + -0.03680792823433876, + -0.0038323462940752506, + 0.028120791539549828, + 0.010782779194414616, + 0.01592399738729, + -0.04110073298215866, + 0.0008225766941905022, + 0.0028443478513509035, + 0.009890860877931118, + 0.007729954551905394, + 0.029397031292319298, + -0.009832850657403469, + 0.051687728613615036, + -0.008150533773005009, + 3.586026286939159e-5, + 0.019694706425070763, + 0.01598200760781765, + 0.024002017453312874, + -0.023189863190054893, + 0.04814906045794487, + 0.022653263062238693, + -0.031876999884843826, + 0.031528934836387634, + 0.03477754443883896, + -0.00032223251764662564, + -0.004158657509833574, + 0.002155468100681901, + 0.040114548057317734, + 0.014379455707967281, + 0.0024999079760164022, + -0.028048278763890266, + 0.0054711545817554, + -0.03480654954910278, + -0.0109423091635108, + -0.0034589008428156376, + -0.02848336100578308, + 0.060679417103528976, + -0.018752029165625572, + 0.020593876019120216, + -0.04313111677765846, + -0.005840974394232035, + 0.002119211247190833, + -0.04379824176430702, + 0.020579373463988304, + -0.022682268172502518, + -0.007128091529011726, + -0.01901307702064514, + 0.001376852858811617, + 0.0028080909978598356, + 0.016939187422394753, + -0.006192665547132492, + 0.014647756703197956, + 0.005376887042075396, + 0.047104865312576294, + 0.013509292155504227, + 0.023871492594480515, + -0.000401997531298548, + -0.03457450494170189, + -0.021870115771889687, + 0.006308687385171652, + -0.03976648300886154, + -0.0067618973553180695, + 0.012385331094264984, + -0.021725088357925415, + 0.024422595277428627, + -0.021507548168301582, + 0.014879800379276276, + -0.01104382798075676, + -0.016605624929070473, + -0.01907108910381794, + -0.02565532736480236, + 0.017620816826820374, + -0.02933902107179165, + -0.0015925809275358915, + 0.04292807728052139, + -0.017954379320144653, + 0.026206431910395622, + 0.011674696579575539, + 0.062361735850572586, + -0.015184357762336731, + -0.03773610293865204, + 0.0330372154712677, + 0.023015830665826797, + -0.01805589720606804, + -0.015894990414381027, + -0.03651787340641022, + 0.007215107791125774, + -0.002155468100681901, + 0.014444718137383461, + 0.02323337271809578, + -0.0154744116589427, + 0.005525539629161358, + -0.0003741250839084387, + 0.0003927067155018449, + -0.04600265622138977, + 0.007447151467204094, + 0.05070153996348381, + -0.03727201372385025, + -0.004941804800182581, + 0.002721074502915144, + -0.015024827793240547, + -0.015126346610486507, + -0.011225112713873386, + -0.03973747789859772, + -0.011863232590258121, + -0.01175446156412363, + 0.004608242306858301, + -0.022247185930609703, + -0.03680792823433876, + -0.03135490044951439, + -0.017678827047348022, + -0.009078708477318287, + -0.016083527356386185, + 0.04110073298215866, + -0.018302444368600845, + 0.021072465926408768, + -0.0002667142543941736, + -0.01447372417896986, + -0.011761713773012161, + 0.023726465180516243, + -0.017229242250323296, + -0.0046735042706131935, + 0.0006177256000228226, + -0.023001328110694885, + 0.03190600499510765, + 0.0017820228822529316, + 0.006015006918460131, + 0.002150029642507434, + -0.0197382140904665, + -0.02094194106757641, + 0.016736149787902832, + -0.008244801312685013, + -0.008672632277011871, + -0.025611819699406624, + -0.037359029054641724, + -0.011522417888045311, + 0.0018110283417627215, + 0.014480975456535816, + 0.010340445674955845, + 0.005699572619050741, + -0.00875964853912592, + 0.022145668044686317, + -0.02316085807979107, + 0.03843223303556442, + 0.023146355524659157, + -0.014103904366493225, + -0.017954379320144653, + 0.004184037446975708, + 0.03483555465936661, + 0.03628582879900932, + -0.005434897728264332, + 0.022377710789442062, + -0.020506858825683594, + 0.02007177658379078, + -0.005525539629161358, + -0.015227865427732468, + 0.04988938942551613, + 0.007606681436300278, + -0.002086580265313387, + 0.005880856886506081, + -0.00862912368029356, + -0.008281058631837368, + -0.047917015850543976, + -0.010601495392620564, + -0.03268915042281151, + 0.008578364737331867, + -0.009158473461866379, + 0.03181898966431618, + 0.0008447839645668864, + 0.010536232963204384, + 0.021841110661625862, + 0.003154343692585826, + -0.016228554770350456, + -0.028570376336574554, + 0.002093831542879343, + 0.014292439445853233, + 0.04487144574522972, + -0.005891733802855015, + -0.014531734399497509, + 0.025568312034010887, + -0.01024617813527584, + -0.013422275893390179, + 0.0007568611763417721, + 0.0039556194096803665, + 0.008027260191738605, + -0.020767908543348312, + 0.04910624027252197, + -0.02384248748421669, + 0.0218846183270216, + -0.0106740090996027, + -0.06340593099594116, + 0.01854899153113365, + 0.04930927976965904, + 0.05525539815425873, + -0.006102023180574179, + 0.006906924769282341, + -0.004035384394228458, + -0.0022044149227440357, + 0.0436532162129879, + 0.032805174589157104, + 0.0100793968886137, + -0.0024364585988223553, + -0.030339708551764488, + 0.004419706761837006, + -0.024538617581129074, + -0.018766531720757484, + -0.0030745784752070904, + -0.007374637760221958, + -0.0025851114187389612, + -0.01195024885237217, + -0.010819035582244396, + -0.0016288377810269594, + 0.027555186301469803, + 0.014720270410180092, + 0.000634947617072612, + -0.0010088460985571146, + -0.01010115072131157, + -0.03706897422671318, + -0.03869328275322914, + -0.000880587613210082, + -0.004938179161399603, + 0.03141291067004204, + 0.006232548039406538, + 0.0641600713133812, + -0.014292439445853233, + 0.004245673771947622, + -0.010920555330812931, + 0.004260176792740822, + 0.006910550408065319, + 0.005906236357986927, + 0.011246866546571255, + 0.011391893960535526, + 3.999580803792924e-5, + -0.004321813117712736, + 0.03695295378565788, + -0.04733690619468689, + 0.007149845361709595, + -0.06555233895778656, + -0.03184799477458, + 0.013008948415517807, + -0.01406764704734087, + 0.0027464544400572777, + -0.023015830665826797, + 0.04104272276163101, + -0.029455043375492096, + 0.0051883514970541, + -0.026017896831035614, + -0.0023585064336657524, + 0.007055577822029591, + -0.02423406019806862, + 0.0029948134906589985, + -0.011029325425624847, + -0.025945382192730904, + -0.008484096266329288, + -0.034545499831438065, + 0.028323829174041748, + 0.038577258586883545, + 0.012472347356379032, + -0.03570571914315224, + 0.01685217209160328, + 0.018984071910381317, + 0.00218991213478148, + 0.04768497496843338, + 0.005366009660065174, + 0.02263876050710678, + -0.02216017059981823, + -0.020869426429271698, + -0.056647658348083496, + 0.028294824063777924, + -0.025669829919934273, + -0.00023816199973225594, + -0.018447471782565117, + 0.04635072126984596, + -0.0030292575247585773, + 0.006667629815638065, + 0.038055162876844406, + 0.007055577822029591, + 0.005398640874773264, + -0.0009580865735188127, + 0.01537289284169674, + 0.0011429963633418083, + 0.012834914959967136, + 0.007030197884887457, + 0.007490659598261118, + -0.013625314459204674, + 0.00802000891417265, + -0.014596996828913689, + 0.029324518516659737, + -0.029629075899720192, + 0.012987193651497364, + 0.011304877698421478, + -0.018897056579589844, + 0.0011593119706958532, + 0.0028806044720113277, + -0.011768965050578117, + 0.016156040132045746, + 0.012146036140620708, + -0.013726833276450634, + -0.0008538481779396534, + 0.01773683726787567, + 0.0469888411462307, + 0.011935746297240257, + -0.030861807987093925, + 0.01590949483215809, + 0.00018003777950070798, + -0.019187111407518387, + -0.0011420899536460638, + -0.019433656707406044, + 0.006667629815638065, + -0.03875129297375679, + -0.007708200719207525, + 0.02337840013206005, + -0.03605378419160843, + 0.003926613833755255, + -0.01746128685772419, + 0.012900177389383316, + 0.017910869792103767, + 0.030252693220973015, + -0.014190920628607273, + 0.011812472715973854, + 0.01195024885237217, + 0.01259562000632286, + -0.0164605975151062, + 0.02591637708246708, + -0.007961998693645, + 0.01282766368240118, + 0.03527063876390457, + -0.04121675714850426, + 0.02229069545865059, + -0.006899673491716385, + -0.047510940581560135, + -0.013328008353710175, + 0.04121675714850426, + 0.0043689473532140255, + 0.002775459783151746, + -0.0007962904637679458, + -0.045306526124477386, + 0.003730827011168003, + -0.04701784625649452, + 0.023552432656288147, + -0.010086648166179657, + 0.011174352839589119, + 0.02324787527322769, + 0.04156482219696045, + 0.04440735653042793, + -0.011283122934401035, + -0.027700211852788925, + 0.01087704673409462, + 0.005478405859321356, + 0.016156040132045746, + -0.02021680399775505, + 0.004992564674466848, + -0.004571985453367233, + -0.031006835401058197, + 0.017896367236971855, + -0.018969569355249405, + -0.007628435734659433, + 0.01934664137661457, + -0.04548056051135063, + -0.03715599328279495, + -0.013929870910942554, + 0.023015830665826797, + -0.015532422810792923, + 0.010151910595595837, + 0.036836933344602585, + -0.003261301200836897, + -0.0008325473172590137, + 0.029048966243863106, + -0.007606681436300278, + 0.010717516764998436, + -0.0023295008577406406, + -0.006928679067641497, + -0.019187111407518387, + 0.023320388048887253, + 0.0350675992667675, + -0.009608058258891106, + -0.028251316398382187, + 0.0175918098539114, + -0.031209873035550117, + 0.007961998693645, + -0.029933633282780647, + -0.02323337271809578, + 0.004778649192303419, + -0.023856990039348602, + 0.01899857446551323, + -0.013161227107048035, + 0.01551792025566101, + 0.010935057885944843, + 0.03440047428011894, + 0.035560693591833115, + -0.002159093739464879, + -0.019375646486878395, + 0.011101839132606983, + -0.05467528849840164, + 0.036633893847465515, + -0.037968143820762634, + 0.01205176766961813, + -0.00030365088605321944, + -0.015053832903504372, + -0.009912615641951561, + -0.026380464434623718, + 0.014437466859817505, + 0.006979438476264477, + 0.010072145611047745, + 0.03976648300886154, + -0.018679514527320862, + 0.015532422810792923, + 0.017606312409043312, + 0.021072465926408768, + 0.015358390286564827, + -0.00997062586247921, + 0.021783098578453064, + -0.03335627540946007, + -0.012204046361148357, + 0.0013578180223703384, + 0.014451969414949417, + -0.011826975271105766, + -0.016431592404842377, + -0.03892532363533974, + 0.0072622415609657764, + 0.02633695676922798, + 0.005492908880114555, + -0.07291971892118454, + 0.007276744581758976, + 0.026365961879491806, + 0.009035199880599976, + -0.013683324679732323, + -0.025568312034010887, + -0.022058650851249695, + 0.00215728092007339, + 0.0019669325556606054, + -0.011406396515667439, + 0.022725775837898254, + 0.0008810408180579543, + -0.03103584051132202, + 0.010507226921617985, + 0.031180867925286293, + -0.014567991718649864, + -0.0065080998465418816, + -0.012138783931732178, + 0.005993252620100975, + 0.03762007877230644, + -0.02149304375052452, + -0.01239258237183094, + 0.024350082501769066, + 0.0007337474380619824, + 0.0028080909978598356, + -0.004615493584424257, + -0.009376014582812786, + -0.03889631852507591, + 0.005307998973876238, + -0.0228417981415987, + -0.010325943119823933, + 0.0003061435418203473, + -0.003723575733602047, + -0.003991876263171434, + 0.023421907797455788, + -0.014248931780457497, + -0.0019324886379763484, + 0.04124576225876808, + -0.02162356860935688, + -0.011892237700521946, + -0.008933681063354015, + 0.027975764125585556, + -0.015749963000416756, + 0.035212624818086624, + -0.0018926061457023025, + 0.007954747416079044, + -0.027975764125585556, + -4.387642184155993e-5, + 0.03434246405959129, + -0.015894990414381027, + -0.039244383573532104, + -0.021072465926408768, + -0.01356730330735445, + -0.01698269508779049, + -0.0011828788556158543, + 0.01605452038347721, + -0.013415024615824223, + -0.013277248479425907, + 0.010093899443745613, + 0.006141905672848225, + 0.011972002685070038, + 0.005014318507164717, + -0.011863232590258121, + 0.021202990785241127, + 0.007976501248776913, + -0.003850474487990141, + -0.006120151840150356, + 0.0130597073584795, + 0.006410206202417612, + 0.030861807987093925, + -0.04179686680436134, + 0.04504547640681267, + 0.004949056543409824, + -0.04658276587724686, + -0.061085496097803116, + 0.018839044496417046, + 0.027685709297657013, + -0.017243744805455208, + -0.029513053596019745, + -0.006769148632884026, + 0.021710585802793503, + 0.0106740090996027, + -0.005797465797513723, + 0.0054711545817554, + -0.006928679067641497, + -0.018171919509768486, + -0.023450912907719612, + -0.012544861063361168, + 0.041390787810087204, + -0.02593087963759899, + -0.006268804892897606, + -0.018563494086265564, + 0.026714026927947998, + 0.024219557642936707, + 0.015198860317468643, + -0.005268116481602192, + -0.006167285609990358, + -0.008520353585481644, + -0.0034081414341926575, + 0.01611253246665001, + 0.025553809478878975, + -0.03564770892262459, + 0.03431345894932747, + 0.02458212524652481, + -0.01847647689282894, + -0.02049235627055168, + -0.006156408693641424, + 0.006518976762890816, + 0.006116526201367378, + 0.02465463988482952, + 0.01104382798075676, + 0.010615997947752476, + 0.0103767029941082, + -0.019767219200730324, + -0.0030346959829330444, + -0.017287252470850945, + -0.008846664801239967, + 0.030716780573129654, + 0.05609655752778053, + -0.00631231302395463, + 0.0319640152156353, + -0.01272614486515522, + 0.026423972100019455, + 0.013139472343027592, + 0.029281010851264, + -0.018723024055361748, + 0.023885995149612427, + -0.007476157043129206, + -0.03164495527744293, + 0.019723711535334587, + -0.029846616089344025, + -0.05070153996348381, + 0.010732019320130348, + -0.0351836197078228, + 0.00892642978578806, + 0.011196106672286987, + 0.03103584051132202, + 0.01772233471274376, + -0.013538297265768051, + -0.024161547422409058, + 0.006011381279677153, + 0.010057643055915833, + -0.01779484935104847, + -0.002615929814055562, + 0.018636006861925125, + -0.004934553522616625, + 0.029527556151151657, + -0.021275503560900688, + -0.002615929814055562, + -0.008911927230656147, + -0.003660126356408, + -0.036894943565130234, + 0.02276928536593914, + 0.01484354306012392, + -0.00023952164337970316, + -0.012443341314792633, + 0.01115259900689125, + 0.005286244675517082, + 0.009629812091588974, + 0.02423406019806862, + -0.029991643503308296, + -0.005358758382499218, + -0.019158104434609413, + 0.009078708477318287, + 0.0011067395098507404, + 3.979752818850102e-6, + -0.008781402371823788, + -0.023059340193867683, + 0.012588368728756905, + -0.031383905559778214, + 0.014125658199191093, + 0.017809351906180382, + 0.04144880175590515, + 0.0014638692373409867, + 0.007563173305243254, + -0.01738877221941948, + -0.001306152087636292, + -0.014118406921625137, + 0.033414289355278015, + 0.007708200719207525, + 0.004249299876391888, + 0.0005991440266370773, + -0.006323189940303564, + 0.02652549184858799, + 0.03155793994665146, + 0.03437146916985512, + -0.010195418260991573, + -0.021057963371276855, + -0.03002064861357212, + -0.005181100219488144, + 0.010761025361716747, + -0.010485473088920116, + -0.009579052217304707, + -0.01986873894929886, + -0.004600991029292345, + -0.004136903677135706, + -0.01125411782413721, + -0.0017648008652031422, + 0.01953517645597458, + 0.0034607136622071266, + 0.021261001005768776, + -0.0112106092274189, + -0.00936876330524683, + 0.0035150989424437284, + -0.05574849247932434, + 0.031064845621585846, + 0.002177222166210413, + 0.006102023180574179, + 0.023044835776090622, + 0.011370140127837658, + 0.006602367386221886, + 0.021464038640260696, + 0.0007051951834000647, + -0.035560693591833115, + 0.0018690392607823014, + -0.017069712281227112, + -0.016504105180501938, + 0.02136252075433731, + 0.002169970888644457, + 0.012175041250884533, + -0.028164299204945564, + 0.009550047107040882, + -0.0010795468697324395, + 0.0013904491206631064, + -0.015343887731432915, + -0.030774790793657303, + -0.025684332475066185, + -0.010173664428293705, + -0.036691904067993164, + 0.01572095789015293, + -0.0050832065753638744, + 0.01664913259446621, + 0.0039519937708973885, + 0.0018817291129380465, + -0.05769185721874237, + 0.02700408175587654, + -0.009347008541226387, + 0.007189727853983641, + 0.005753957666456699, + -0.012501352466642857, + 0.005264490842819214, + 0.03593776375055313, + -0.022609755396842957, + -0.024161547422409058, + -0.0015889552887529135, + -0.04420431703329086, + -0.00859286729246378, + -0.003671003272756934, + 0.013610810972750187, + -0.010275183245539665, + -0.0023875117767602205, + -0.009347008541226387, + -0.005282619036734104, + 0.01537289284169674, + -0.019709208980202675, + -0.04211592674255371, + 0.008346321061253548, + 0.013908117078244686, + -0.006486345548182726, + 0.06375399976968765, + 0.020651886239647865, + 0.007211482152342796, + -0.01583698019385338, + -0.016634630039334297, + 0.010891549289226532, + 0.026568999513983727, + 0.011522417888045311, + 0.0017149477498605847, + -0.022856300696730614, + -0.005663315765559673, + 0.008556609973311424, + -0.003712698584422469, + 0.013654319569468498, + 0.014263434335589409, + -0.014350450597703457, + -0.014713019132614136, + 0.009883609600365162, + 0.018897056579589844, + 0.02020230144262314, + 0.01631557010114193, + 0.012189543806016445, + 0.027772726491093636, + 0.005884482525289059, + -0.024553120136260986, + 0.023204367607831955, + -0.031383905559778214, + 0.02089843340218067, + -0.0006825347081758082, + -0.036169808357954025, + -0.034284450113773346, + -0.024799667298793793, + 0.006671255454421043, + 0.01419817190617323, + -0.018447471782565117, + 0.044494371861219406, + -0.012537609785795212, + -0.03927339240908623, + 0.012537609785795212, + 0.012900177389383316, + -0.021667078137397766, + 0.01746128685772419, + 0.02633695676922798, + 0.0012427025940269232, + -0.007671943865716457, + 0.0036093667149543762, + 0.028961950913071632, + -0.010514478199183941, + 0.02539427950978279, + -0.006022258196026087, + 0.0018962317844852805, + -0.001835501636378467, + 0.005594427697360516, + -0.012552112340927124, + 0.006453714333474636, + -0.0436532162129879, + 0.025437787175178528, + -0.03573472425341606, + 0.017287252470850945, + 0.010238926857709885, + 0.019230619072914124, + -0.014937810599803925, + -0.010282434523105621, + 0.009847353212535381, + -0.011921243742108345, + 0.013081462122499943, + -0.0019578684587031603, + -0.02114497870206833, + -0.0073528834618628025, + 0.011188855394721031, + -0.003705447306856513, + 0.02490118518471718, + -0.0016342762392014265, + 0.011928495019674301, + 0.007845976389944553, + 0.004256551153957844, + 0.009383265860378742, + -0.01698269508779049, + -0.00875964853912592, + 0.015822477638721466, + -0.008223047479987144, + 0.018636006861925125, + -0.027903251349925995, + 0.004782274831086397, + -0.031238878145813942, + 0.014734772965312004, + -0.02780173160135746, + -0.0071317171677947044, + -0.016214050352573395, + 0.011892237700521946, + -0.007845976389944553, + -0.013262745924293995, + 0.011261369101703167, + -0.0370979830622673, + 0.033211249858140945, + -0.003707260126248002, + -0.004883794113993645, + -0.01551792025566101, + -0.01383560337126255, + 0.013146723620593548, + 0.02055036649107933, + -0.009296249598264694, + -0.013893614523112774, + -0.011196106672286987, + -0.034748539328575134, + 0.03231208026409149, + 0.011283122934401035, + -0.024524115025997162, + -0.04063664749264717, + -0.0014176417607814074, + 0.024944694712758064, + -0.013625314459204674, + -0.04052062705159187, + -0.001347847399301827, + -0.0033283764496445656, + -0.009107713587582111, + 0.006442837417125702, + 0.004608242306858301, + 0.006482719909399748, + 0.01477828063070774, + 0.011921243742108345, + -0.02559731714427471, + 0.0023421908263117075, + 0.001602551550604403, + -0.008215796202421188, + 0.011710953898727894, + -0.012813161127269268, + 0.024147044867277145, + -0.044900450855493546, + -0.02350892312824726, + -0.0018853547517210245, + 0.029730595648288727, + 0.0002424675039947033, + -0.009579052217304707, + -0.01901307702064514, + -0.007483408320695162, + 0.0025488545652478933, + -0.006301435641944408, + 0.022479230538010597, + 0.005627058912068605, + 0.029658081009984016, + 0.01838945969939232, + -0.013415024615824223, + 0.025350769981741905, + -0.018505482003092766, + -0.009412270970642567, + -0.000796743668615818, + 0.002030382165685296, + 0.002188099315389991, + -0.006754646077752113, + 0.025031710043549538, + -0.004477717448025942, + 0.016228554770350456, + 0.04910624027252197, + -0.03419743478298187, + 0.017954379320144653, + -0.01537289284169674, + 0.0036329335998743773, + 0.023320388048887253, + 0.002275115577504039, + 0.005724952556192875, + 0.007664692588150501, + 0.0160400178283453, + -0.004883794113993645, + 0.03431345894932747, + 0.006638624239712954, + 0.01585148274898529, + -0.0028751660138368607, + 0.0018998575396835804, + 0.014074898324906826, + -0.0011085523292422295, + -0.02478516474366188, + -0.0013215611688792706, + -0.027294136583805084, + -0.003219605889171362, + -0.026380464434623718, + -0.01901307702064514, + 0.014285188168287277, + 0.004901922307908535, + -0.009724079631268978, + 0.026409469544887543, + -0.02719261683523655, + 0.0033320020884275436, + -0.0010160974925383925, + 0.00414778059348464, + 0.008585616014897823, + -0.001853630063124001, + -0.027961261570453644, + 0.07628435641527176, + 0.011457156389951706, + -0.012414336204528809, + 0.010615997947752476, + -0.014596996828913689, + 0.0024926564656198025, + 0.008244801312685013, + 0.03289218991994858, + 0.004510348662734032, + 0.00503969844430685, + -0.003799715079367161, + 0.005888108164072037, + 0.026293447241187096, + 0.0244516022503376, + 0.008708888664841652, + 0.0002961729187518358, + 0.008853916078805923, + 0.021261001005768776, + -0.027584191411733627, + -0.004292808007448912, + -0.004640873521566391, + -0.0052137309685349464, + 0.02391500025987625, + -0.017040707170963287, + -0.00017595889221411198, + -0.029455043375492096, + -0.0016351827653124928, + 0.008375326171517372, + -0.03866427764296532, + -0.004060764331370592, + 0.021710585802793503, + -0.0010686698369681835, + 0.010753774084150791, + 0.008991692215204239, + -0.02961457334458828, + 0.029658081009984016, + -0.0006938649457879364, + -0.01679416000843048, + 0.0005003441474400461, + -0.006859790999442339, + -0.008853916078805923, + 0.005978750064969063, + -0.008846664801239967, + -0.013487538322806358, + -0.0056306845508515835, + 0.01239258237183094, + 0.012885674834251404, + 0.009622560814023018, + -0.0010741084115579724, + -0.010819035582244396, + -0.009013446047902107, + 0.005579925142228603, + -0.005536417011171579, + -0.007577675860375166, + -0.007998255081474781, + 0.004862039815634489, + -0.016823165118694305, + -0.014662259258329868, + -0.05110761895775795, + -0.02685905434191227, + 0.006899673491716385, + 0.01644609495997429, + -0.0003829626948572695, + -0.017548302188515663, + -0.020260313525795937, + 0.02263876050710678, + -0.004648124799132347, + -0.022653263062238693, + 0.006348569877445698, + -0.016069024801254272, + -0.017171232029795647, + 0.012465096078813076, + -0.01188498642295599, + 0.00552191399037838, + 0.006830785423517227, + 0.01638808473944664, + 0.01074652187526226, + -0.02961457334458828, + -0.010536232963204384, + -0.025872869417071342, + -0.016620127484202385, + 0.0014511793851852417, + 0.012269308790564537, + 0.016504105180501938, + 0.005616181995719671, + -0.012037265114486217, + -0.011935746297240257, + -0.0056306845508515835, + 0.011805221438407898, + -0.02800476923584938, + -0.0017493916675448418, + 0.0055472939275205135, + 0.019361143931746483, + -0.02089843340218067, + -0.013306253589689732, + -0.039853498339653015, + -0.0008873857441358268, + -0.018287941813468933, + -0.012182292528450489, + -0.014553489163517952, + -0.017432279884815216, + 0.01474202424287796, + 0.01551792025566101, + -0.018113909289240837, + 0.013639817014336586, + 0.009811095893383026, + -0.019636696204543114, + 0.007490659598261118, + -0.004303684923797846, + -0.017359767109155655, + -0.0012925557093694806, + -0.006294184364378452, + -0.012109778821468353, + -0.004847537260502577, + -0.0154744116589427, + -0.003154343692585826, + -0.018418466672301292, + -0.005340630188584328, + 0.019825231283903122, + -0.014937810599803925, + -0.02432107739150524, + -0.005779337603598833, + -0.014626001939177513, + -0.004724264144897461, + -0.0011031138710677624, + -0.03431345894932747, + -0.030252693220973015, + 0.004466840531677008, + -0.01960768923163414, + -0.007381889037787914, + 0.014430215582251549, + 0.006642249878495932, + 0.011870483867824078, + 0.02665601670742035, + 0.003843223210424185, + -0.021710585802793503, + 0.023668453097343445, + -0.013473035767674446, + -0.013153974898159504, + 0.001277146628126502, + -0.007991003803908825, + -0.008998943492770195, + 0.0127914072945714, + 0.002695694798603654, + -0.004764146637171507, + 0.013248243369162083, + -0.03245710954070091, + 0.005253613460808992, + 0.021652575582265854, + -0.02519124001264572, + 0.01672164723277092, + -0.011841478757560253, + -0.007410894613713026, + 0.009020697325468063, + 0.0060005043633282185, + -0.024872180074453354, + -0.008433337323367596, + -0.004985312931239605, + 0.004035384394228458, + 0.0149088054895401, + -0.014060395769774914, + -0.016881177201867104, + -0.004470466170459986, + -0.017896367236971855, + -0.0050868322141468525, + 0.005862728226929903, + -0.009187478572130203, + -0.04661177098751068, + 0.0072694928385317326, + 0.01087704673409462, + -0.0191436018794775, + 0.004615493584424257, + -0.0025271004997193813, + 0.01968020386993885, + 0.0020231306552886963, + -0.025684332475066185, + 0.024002017453312874, + -0.0024165173526853323, + 0.03779411315917969, + -0.009550047107040882, + -0.013262745924293995, + -0.023465415462851524, + 0.010086648166179657, + 0.011732707731425762, + 0.04443636164069176, + 0.016098029911518097, + -0.006062140688300133, + -0.020767908543348312, + -0.01751929707825184, + 0.007497910875827074, + 0.018084904178977013, + -0.02813529409468174, + -0.00923823844641447, + 0.028497863560914993, + -0.0016369955847039819, + 0.0009209233103320003, + -0.016301067546010017, + -0.005993252620100975, + 0.0027863369323313236, + -0.014111155644059181, + 0.020100783556699753, + -0.009774839505553246, + 0.014169166795909405, + -0.022914312779903412, + 0.007606681436300278, + -0.014582494273781776, + -0.006707512307912111, + -0.000915031589102, + 0.008107025176286697, + -0.012204046361148357, + -0.014546236954629421, + 0.0011556862154975533, + -0.02833833359181881, + 0.010565238073468208, + 0.012349073775112629, + 0.001624305616132915, + -0.007414520252496004, + -0.005115837790071964, + -0.019665701314806938, + 0.0010432901326566935, + -0.013415024615824223, + -0.012044516392052174, + -0.016837667673826218, + 0.009760336950421333, + 0.02263876050710678, + -0.02249373309314251, + 0.011116341687738895, + 0.007700948975980282, + 0.017098717391490936, + -0.014517231844365597, + -0.024132540449500084, + 0.016417089849710464, + -0.007073706015944481, + -0.01583698019385338, + 0.005833722651004791, + -0.007037449162453413, + 0.0005977843538857996, + -0.004833034705370665, + -0.003208728739991784, + -0.022276192903518677, + -0.007258615922182798, + -0.012610122561454773, + -0.01003588829189539, + 0.014219925738871098, + -0.0016578432405367494, + -0.00032903067767620087, + -0.00044459928176365793, + 0.0103767029941082, + 0.003984624985605478, + -0.004238422494381666, + -0.0149088054895401, + 0.008882921189069748, + 0.01579347252845764, + 0.009898113086819649, + -0.010217173025012016, + 0.015488915145397186, + -0.0013451281702145934, + 0.0054131438955664635, + -0.0006503567565232515, + -0.007360135205090046, + -0.021057963371276855, + -0.014865297824144363, + 0.006116526201367378, + 0.00498893903568387, + 0.0009680571965873241, + 0.029527556151151657, + 0.016678137704730034, + -0.0017203862080350518, + 0.0009318003430962563, + -0.022334203124046326, + -0.0034226439893245697, + 0.009753085672855377, + -0.01751929707825184, + -0.010884298011660576, + 0.040114548057317734, + -0.0028878559824079275, + 0.003991876263171434, + -0.005344255827367306, + 0.01390086580067873, + 0.002119211247190833, + 0.016301067546010017, + 0.01503933034837246, + 0.002102895639836788, + 0.0030473859515041113, + -0.0059606218710541725, + 0.013037953525781631, + -0.012950937263667583, + 0.0007845070213079453, + 0.009426773525774479, + 0.01899857446551323, + -0.004234796855598688, + 0.01121786143630743, + -0.007889484986662865, + -0.018853547051548958, + 0.00048402859829366207, + 0.0014140161219984293, + -0.01838945969939232, + 0.050266459584236145, + -0.008099773898720741, + -0.02243572287261486, + -0.013117718510329723, + -0.017504794523119926, + 2.0082879927940667e-5, + 0.012784156017005444, + 0.03376235440373421, + -0.005895359441637993, + 0.011536921374499798, + 0.0023059339728206396, + 0.004945430438965559, + -0.0298176109790802, + -0.003060075920075178, + 0.009274495765566826, + -0.0024890308268368244, + 0.006040386855602264, + 0.013705079443752766, + 0.000660327379591763, + 0.029048966243863106, + 0.0006739236996509135, + -0.009318003430962563, + 0.03002064861357212, + -0.01888255402445793, + 0.026699524372816086, + -0.061607591807842255, + -0.011863232590258121, + 0.007708200719207525, + 0.013146723620593548, + -0.022870803251862526, + 0.029368026182055473, + -0.009477533400058746, + 0.0271346066147089, + 0.013951625674962997, + 0.01605452038347721, + 0.02652549184858799, + 0.004289182368665934, + 0.005645187105983496, + 0.012979942373931408, + -0.006946807261556387, + 0.022000640630722046, + 0.0005569954519160092, + 0.010260680690407753, + -0.019578684121370316, + 0.009397768415510654, + 0.012167789973318577, + 0.021928125992417336, + -0.00253616482950747, + -0.010173664428293705, + 0.005688695702701807, + 0.014850794337689877, + -0.00503969844430685, + -0.0061346543952822685, + -0.02390049770474434, + -0.030716780573129654, + 0.01383560337126255, + -0.027555186301469803, + 0.009832850657403469, + -0.013248243369162083, + -0.004325438756495714, + 0.0029041715897619724, + -0.012508603744208813, + -0.014691264368593693, + -0.016417089849710464, + 0.003700008848682046, + 0.016402587294578552, + -0.011696451343595982, + -0.006051263771951199, + 0.007331129629164934, + -0.00560530461370945, + -0.010521730408072472, + -0.01074652187526226, + 0.027772726491093636, + -0.01299444492906332, + -0.006268804892897606, + -0.015590433962643147, + 0.003984624985605478, + 0.023131852969527245, + -0.0240310225635767, + 0.03820018842816353, + 0.009716828353703022, + -0.0005891733453609049, + -0.03532864898443222, + -0.026409469544887543, + -0.005786588881164789, + -0.0013686950551345944, + -0.01725824736058712, + 0.007584927137941122, + -0.029730595648288727, + 0.0014557114336639643, + -0.010253429412841797, + 0.023015830665826797, + 0.003745329799130559, + 0.018287941813468933, + -5.781263826065697e-5, + 0.035821739584207535, + -0.0027265131939202547, + -0.016823165118694305, + 0.03907035291194916, + 0.007149845361709595, + 0.017678827047348022, + -0.018752029165625572, + 0.02149304375052452, + 0.029252003878355026, + -0.02706209197640419, + -0.008687134832143784, + 0.00325586274266243, + -0.0007287621265277267, + 0.002090205904096365, + 0.006526228040456772, + -0.014292439445853233, + -0.009158473461866379, + -0.00012984474597033113, + -0.018621504306793213, + -0.02088393084704876, + -0.024741655215620995, + -0.009963374584913254, + -0.012878423556685448, + -0.01579347252845764, + 0.010898800566792488, + -0.011399145238101482, + 0.001033319509588182, + -0.0019977509509772062, + 0.014582494273781776, + -0.0034081414341926575, + 0.004640873521566391, + -0.006624121684581041, + 0.020260313525795937, + 0.0028461606707423925, + 0.005851851310580969, + -0.014227177016437054, + 0.0009177508181892335, + -0.009760336950421333, + -0.004209416918456554, + 0.018157416954636574, + 0.003919362556189299, + 0.0008538481779396534, + 0.024480607360601425, + -0.02430657483637333, + -0.0030020650010555983, + -0.010753774084150791, + 0.020028268918395042, + -0.0009481158922426403, + 0.014567991718649864, + -0.006819908507168293, + -0.029193993657827377, + 0.012001008726656437, + -0.012552112340927124, + -0.005688695702701807, + 0.005768460687249899, + 0.014662259258329868, + 0.0022044149227440357, + -0.00319785182364285, + -0.008433337323367596, + 0.019027581438422203, + 0.010753774084150791, + 0.0016524046659469604, + 0.01323374081403017, + 0.020042771473526955, + 0.005050575360655785, + 0.0019361143931746483, + -0.0006218045018613338, + -0.0024056402035057545, + 0.011797970160841942, + -0.0077227032743394375, + 0.002800839487463236, + -0.0034734036307781935, + 0.00644646305590868, + 0.012196795083582401, + 0.020666388794779778, + -0.028164299204945564, + -0.00540589215233922, + -0.024799667298793793, + -0.008643626235425472, + 0.019636696204543114, + -0.010086648166179657, + 0.000509408360812813, + 0.014277936890721321, + -0.0006997566670179367, + -0.02324787527322769, + -0.009847353212535381, + 0.005913487635552883, + -0.012291062623262405, + -0.003777961013838649, + -0.007744457572698593, + -0.017620816826820374, + -0.01503933034837246, + -0.011602183803915977, + 0.07390590757131577, + 0.006348569877445698, + 0.016011012718081474, + 0.012668133713304996, + -0.003094519954174757, + -0.01590949483215809, + -0.0029223000165075064, + 0.012544861063361168, + 0.005579925142228603, + -0.005826471373438835, + -0.026815546676516533, + -0.015097341500222683, + 0.006707512307912111, + 0.011797970160841942, + -0.024930192157626152, + 0.0015436342218890786, + 0.0023258752189576626, + -0.004887419752776623, + 0.019317634403705597, + 0.0051303403452038765, + -0.005094083491712809, + 0.001096768886782229, + -0.0005189257790334523, + 0.012414336204528809, + -0.00856386125087738, + 0.0112106092274189, + -0.014611499384045601, + 0.0014384894166141748, + 0.02665601670742035, + 0.004332690499722958, + 0.00920198205858469, + -0.007497910875827074, + -0.004600991029292345, + -0.014212674461305141, + 0.0003725388669408858, + 0.013879111967980862, + -0.002599614206701517, + -9.993286948883906e-5, + -0.004223919939249754, + -0.01793987676501274, + -0.00836082361638546, + 0.010398456826806068, + 0.012979942373931408, + 0.017229242250323296, + -0.024002017453312874, + 0.00791849009692669, + -0.0149088054895401, + 0.0008606463088653982, + -0.01356730330735445, + -0.0044160811230540276, + 0.004194914363324642, + -0.012182292528450489, + 0.015735460445284843, + 0.02752617932856083, + 0.0015028453199192882, + -0.008041763678193092, + 0.01625755988061428, + 0.010869795456528664, + 0.01960768923163414, + 0.005993252620100975, + -0.0212900061160326, + -0.015053832903504372, + 0.012131532654166222, + -0.0033591946121305227, + -0.006576987449079752, + 0.0008833068422973156, + -0.0130597073584795, + 0.0012263869866728783, + -0.0051774741150438786, + -0.023465415462851524, + -0.020724400877952576, + -0.03332727029919624, + -0.008984440937638283, + -0.019564181566238403, + -0.006036761216819286, + 0.01585148274898529, + 0.012653631158173084, + 0.042812056839466095, + 0.022798290476202965, + 0.0012245741672813892, + 0.0007432648562826216, + 0.0034317083191126585, + -0.010971314273774624, + -0.004633621778339148, + 0.005804717540740967, + -0.006689383648335934, + 0.016576619818806648, + -0.04078167304396629, + 0.006167285609990358, + -0.017606312409043312, + -0.010224424302577972, + -0.0100793968886137, + 0.02269677072763443, + 0.013777593150734901, + -0.0072259847074747086, + -0.005344255827367306, + 0.007947495207190514, + 0.01618504524230957, + -0.010586991906166077, + -0.01142089907079935, + 0.008266556076705456, + 0.0006580613553524017, + -0.011623937636613846, + -0.001327906153164804, + -0.013929870910942554, + 0.0039556194096803665, + 0.022073153406381607, + -0.0085276048630476, + -0.00437982426956296, + -0.0007459841435775161, + -0.0009544608765281737, + -0.023537930101156235, + -0.0029948134906589985, + 0.0071824765764176846, + 0.0017040707170963287, + 0.002171783708035946, + 0.011558675207197666, + -0.0022243561688810587, + -0.016736149787902832, + -0.02363944798707962, + 0.018824541941285133, + 0.003846848849207163, + 0.008716139942407608, + -0.023276880383491516, + -0.006845287978649139, + 0.009615309536457062, + -0.01266088243573904, + -0.011826975271105766, + -0.014669510535895824, + -0.01403139065951109, + 0.006243424955755472, + 0.00980384461581707, + 0.0017448596190661192, + 0.008252052590250969, + 0.008919178508222103, + -0.003138028085231781, + -0.020724400877952576, + 0.012146036140620708, + 0.0034298954997211695, + -0.018302444368600845, + 0.02552480250597, + -0.003712698584422469, + 0.016359077766537666, + 0.023784475401043892, + 0.016968192532658577, + -0.00532250152900815, + -0.006917801685631275, + -0.019158104434609413, + 0.014357701875269413, + 0.001259018201380968, + 0.018839044496417046, + -0.02256624586880207, + 0.025800354778766632, + -0.005507411435246468, + 0.0002130088396370411, + 0.011370140127837658, + -0.0339943990111351, + 0.019854236394166946, + -0.027714716270565987, + 0.016504105180501938, + 0.01773683726787567, + -0.010267931967973709, + -0.03237009048461914, + 0.016228554770350456, + 0.00846234243363142, + -0.008549358695745468, + 0.01995575614273548, + 0.014981319196522236, + 0.016228554770350456, + 0.0008121528080664575, + 0.010260680690407753, + 0.012204046361148357, + 0.023726465180516243, + -0.030571753159165382, + 0.002017692197114229, + -0.0030872684437781572, + 0.017084214836359024, + 0.00039406633004546165, + -0.02565532736480236, + 0.011174352839589119, + -0.0056306845508515835, + -0.013444029726088047, + 0.017896367236971855, + 0.003792463568970561, + -0.020042771473526955, + -0.02255174331367016, + 0.020303821191191673, + -0.01524236798286438, + 0.0007011163397692144, + -0.0016233992064371705, + -0.021855613216757774, + 0.0175918098539114, + 0.0015363828279078007, + -0.012508603744208813, + -0.008339068852365017, + 0.0017294504214078188, + 0.025887371972203255, + 0.02101445384323597, + 0.04052062705159187, + -0.0014557114336639643, + 0.0029313641134649515, + -0.0010596056235954165, + 0.006867042277008295, + 0.005094083491712809, + -0.004220294300466776, + -0.005166597198694944, + -0.015111844055354595, + -0.01986873894929886, + -0.0008946370799094439, + -0.00330662215128541, + -0.03068777546286583, + -0.010826287791132927, + 0.011834226548671722, + -0.0004804029013030231, + -0.015619439072906971, + -0.005014318507164717, + -0.004484969191253185, + 0.013647068291902542, + -0.005659690126776695, + 0.011834226548671722, + -0.0066349986009299755, + -0.007062829099595547, + 0.00993436947464943, + 0.003745329799130559, + 0.002104708459228277, + 0.006073018070310354, + -0.004492220468819141, + 0.015198860317468643, + 0.006410206202417612, + -0.0073093753308057785, + 0.006442837417125702, + -0.005144843365997076, + -0.008259303867816925, + 0.013255494646728039, + -0.00201587937772274, + 0.031993020325899124, + 0.01142089907079935, + -0.008650877512991428, + 0.013393270783126354, + -0.02041984349489212, + -0.026510989293456078, + -0.0009009820641949773, + -0.006109274458140135, + -0.026365961879491806, + -0.0007369199302047491, + -0.007845976389944553, + -0.010456467978656292, + -0.0024020145647227764, + -0.011167101562023163, + -2.9090435418765992e-5, + -0.00652985367923975, + 0.000644011830445379, + 0.017316259443759918, + -0.009760336950421333, + -0.009325254708528519, + 0.00523911090567708, + -0.005746706388890743, + 0.008382577449083328, + -0.00656248489394784, + -0.017548302188515663, + 0.017780346795916557, + 0.018911559134721756, + -0.01041295938193798, + -0.0011230551172047853, + 0.005268116481602192, + 0.01551792025566101, + -0.04437835142016411, + 0.016634630039334297, + -0.0032921195961534977, + 0.0062615531496703625, + 0.022986825555562973, + -0.010043139569461346, + 0.018984071910381317, + 0.042086921632289886, + 0.004771397914737463, + 0.0039955019019544125, + 0.0006045825430192053, + -0.021536553278565407, + 0.005347881466150284, + 0.026902562007308006, + 0.001380478497594595, + -0.007099085953086615, + 0.010971314273774624, + -0.028584878891706467, + -0.005152094643563032, + -0.03089081309735775, + 0.024147044867277145, + 0.016620127484202385, + -0.003683693241328001, + 0.01570645533502102, + -0.0010849854443222284, + 0.011812472715973854, + 0.003150717820972204, + 1.887904181785416e-5, + 0.013175729662179947, + 0.0035876126494258642, + -0.012305566109716892, + -0.005884482525289059, + 0.04379824176430702, + -0.021710585802793503, + -0.00806351751089096, + -0.0022497358731925488, + -0.011935746297240257, + -0.01115259900689125, + -0.005819220095872879, + 0.02034732885658741, + 0.0437692366540432, + 0.0035567942541092634, + -0.0028099038172513247, + 0.021391525864601135, + 0.007555922027677298, + -0.006580613553524017, + 0.0002896013611461967, + -0.006526228040456772, + -0.0019977509509772062, + -0.002077515935525298, + 0.004260176792740822, + 0.025887371972203255, + -0.013117718510329723, + 0.018215427175164223, + -0.00656248489394784, + 0.0030075034592300653, + 0.02585836686193943, + -0.013690575957298279, + 0.014524483121931553, + -0.022058650851249695, + 0.019781721755862236, + -0.004967184737324715, + 0.024002017453312874, + -0.023450912907719612, + 0.008781402371823788, + 0.01879553683102131, + -0.03489356487989426, + 0.0031108353286981583, + 0.012196795083582401, + 0.0012445154134184122, + -0.020767908543348312, + -0.0072259847074747086, + 0.00957180093973875, + 0.005409517791122198, + 0.0007976500783115625, + -0.017475789412856102, + 0.0022279818076640368, + -0.00717159966006875, + -0.0035658585838973522, + 0.0023639448918402195, + 0.003148905001580715, + -0.007577675860375166, + 0.017345264554023743, + 0.007787965703755617, + -0.021638071164488792, + -0.001519160927273333, + 0.016272062435746193, + 0.005830097012221813, + -0.010188166983425617, + 0.000925908621866256, + 0.011493412777781487, + 0.019636696204543114, + -0.011464407667517662, + 0.006787277292460203, + -0.01537289284169674, + 0.012479598633944988, + 0.002122836885973811, + -0.01121786143630743, + 0.008404331281781197, + -0.0228998102247715, + 0.0007999161607585847, + -0.00013211079931352288, + -0.026307949796319008, + -0.0015871424693614244, + -0.0007836006116122007, + -0.005391389597207308, + 0.0024672767613083124, + 0.010137408040463924, + -0.011014822870492935, + 0.016402587294578552, + -0.016214050352573395, + -0.0012436090037226677, + -0.018824541941285133, + -0.003933865111321211, + 0.022058650851249695, + -0.003864977275952697, + 0.004437834955751896, + -0.0044160811230540276, + -0.03216705471277237, + 0.021913623437285423, + 0.024292072281241417, + 0.004575611092150211, + 0.0065878648310899734, + -0.0015064709587022662, + -0.006268804892897606, + -0.002111959969624877, + -0.00406438997015357, + -0.0011040202807635069, + -0.03895432874560356, + 0.026423972100019455, + -0.011022074148058891, + 0.010659505613148212, + -0.015619439072906971, + 0.007780714426189661, + -0.009419522248208523, + 0.013451281003654003, + 0.01807039976119995, + 0.006210793741047382, + 0.01115259900689125, + -0.017345264554023743, + -0.0022225433494895697, + 0.01618504524230957, + 0.020579373463988304, + 0.00038228288758546114, + 0.01074652187526226, + 0.020332826301455498, + -0.018955066800117493, + 0.0018998575396835804, + 0.011341134086251259, + -0.02041984349489212, + -0.00034172055893577635, + 0.01577896997332573, + 0.012247554957866669, + 0.012820412404835224, + -0.0018264374230057001, + -0.002255174331367016, + 0.016286564990878105, + 0.0044958461076021194, + 0.008491347543895245, + -0.021841110661625862, + 0.03222506493330002, + 0.010398456826806068, + 0.004057138692587614, + 0.005848225671797991, + 0.015546925365924835, + 0.007247739005833864, + -0.011261369101703167, + 0.007867730222642422, + -0.033472299575805664, + -0.014502729289233685, + 0.019419154152274132, + -0.005964247509837151, + -0.0018781034741550684, + 0.014821789227426052, + -0.027120104059576988, + -0.004880168475210667, + -0.02432107739150524, + -0.005808343179523945, + -0.010188166983425617, + -0.0016125221736729145, + -0.0017240119632333517, + 0.01677965745329857, + -0.0010306001640856266, + -0.014531734399497509, + -0.010267931967973709, + 0.0109423091635108, + 0.0012608310207724571, + 0.0030038778204470873, + -0.014517231844365597, + 0.00953554455190897, + -0.011631188914179802, + -0.02329138293862343, + 0.009593555703759193, + -0.024959197267889977, + 0.016025515273213387, + -0.00037117922329343855, + 4.1213810618501157e-5, + -0.0035876126494258642, + 0.01429969072341919, + -0.010761025361716747, + 0.016475100070238113, + 0.0044160811230540276, + -0.020057274028658867, + 0.00411514937877655, + -0.02223268337547779, + 0.045799620449543, + -0.0020847672130912542, + 0.003723575733602047, + 0.011130844242870808, + 0.02095644362270832, + -0.013857358135282993, + 0.008781402371823788, + 0.006120151840150356, + -0.002797213848680258, + -0.022479230538010597, + -0.010681260377168655, + -0.010913304053246975, + -0.010151910595595837, + 0.030136670917272568, + 0.00033061689464375377, + 0.014024139381945133, + 0.012747898697853088, + -0.018026892095804214, + 0.008679883554577827, + 0.013255494646728039, + 0.03048473596572876, + 0.01579347252845764, + 0.003977373708039522, + 0.020869426429271698, + 0.007320252712816, + 0.012747898697853088, + 0.023827984929084778, + -0.01772233471274376, + 0.005898985080420971, + 0.015488915145397186, + -0.010637751780450344, + -0.0041296519339084625, + -0.020796913653612137, + 0.0014393958263099194, + 0.0023711961694061756, + 0.0023421908263117075, + 0.007084583397954702, + 0.023813480511307716, + 0.010869795456528664, + 0.022058650851249695, + -0.0122258011251688, + -0.017823854461312294, + 0.0010668570175766945, + -0.008737894706428051, + 0.038635268807411194, + -0.013886363245546818, + -0.005362384021282196, + 0.017171232029795647, + 0.0009141251211985946, + -0.004300059285014868, + -0.03672090917825699, + -0.0062180450186133385, + -0.005964247509837151, + -0.015967505052685738, + 0.006149156950414181, + 0.0024128914810717106, + -0.000995249836705625, + -0.003277616808190942, + -0.018302444368600845, + -0.007200605235993862, + 0.027961261570453644, + 0.011768965050578117, + -0.017417777329683304, + 0.005641561467200518, + 0.02329138293862343, + 0.02337840013206005, + -0.0030655143782496452, + 0.03483555465936661, + -0.002686630468815565, + 0.007563173305243254, + -0.0033573817927390337, + 0.0022279818076640368, + 0.016910182312130928, + -0.007845976389944553, + -0.020709896460175514, + 0.003781586652621627, + 0.017606312409043312, + 0.005558170843869448, + -0.0017312632407993078, + -0.01644609495997429, + 0.00507232965901494, + 0.017577307298779488, + 0.026960574090480804, + 0.01994125172495842, + -0.005431272089481354, + 0.014626001939177513, + 0.00806351751089096, + -0.014357701875269413, + 0.015227865427732468, + 0.001820998964831233, + 0.000509408360812813, + 0.007124465890228748, + -0.0018400338012725115, + -0.0033084352035075426, + 0.0033283764496445656, + -0.00812877994030714, + -0.008672632277011871, + 0.008034512400627136, + 0.004350818693637848, + -0.0018037769477814436, + 0.008215796202421188, + 0.0027863369323313236, + 0.01161668635904789, + -0.00616365997120738, + 0.002117398427799344, + -0.028323829174041748, + 0.009158473461866379, + 0.024828672409057617, + 0.005028821527957916, + -0.005848225671797991, + -0.015401897951960564, + 0.005728578194975853, + -0.0051303403452038765, + 0.008933681063354015, + 0.009774839505553246, + -0.005844600033015013, + 0.015561428852379322, + 0.025060715153813362, + -0.01733076199889183, + 0.021652575582265854, + -0.01766432449221611, + -0.004209416918456554, + -0.01618504524230957, + 0.006569736171513796, + 0.011348385363817215, + -0.00431456184014678, + 0.004234796855598688, + -0.013690575957298279, + -0.03353030979633331, + -0.020854923874139786, + 0.0005995972314849496, + 0.017229242250323296, + 0.005880856886506081, + 0.006885170470923185, + 0.0006852539372630417, + -0.011696451343595982, + 0.0016768780769780278, + -0.009782090783119202, + 0.009557298384606838, + 0.014749275520443916, + -0.017287252470850945, + 0.007215107791125774, + -0.03089081309735775, + 0.023479918017983437, + -0.003341066185384989, + 0.005315250251442194, + -0.013857358135282993, + 0.03373334929347038, + 0.011638440191745758, + -0.0035386658273637295, + 0.013357013463973999, + 0.0003244985709898174, + -0.000925908621866256, + -0.011892237700521946, + -0.014415713027119637, + 0.009513790719211102, + 0.009883609600365162, + 0.023044835776090622, + -0.01912909932434559, + 0.01712772250175476, + 0.00155723060015589, + -0.000647637527436018, + -0.024770662188529968, + 0.0024183301720768213, + -0.014720270410180092, + -0.013045204803347588, + 0.012544861063361168, + 0.005249987822026014, + -0.006972187198698521, + -0.014154663309454918, + 0.0057612089440226555, + 0.003671003272756934, + 0.02646748162806034, + -0.003828720422461629, + 0.0030256318859755993, + -0.004376198630779982, + 0.002624993911013007, + 0.006116526201367378, + -0.00751966517418623, + -0.0201587937772274, + 0.02317536063492298, + -0.007758960127830505, + 0.013690575957298279, + -0.010325943119823933, + -0.016968192532658577, + 0.0024563998449593782, + -0.015068335458636284, + 0.028381841257214546, + 0.010166413150727749, + -0.003719950094819069, + -0.04118775203824043, + 0.004162283148616552, + 0.014771029353141785, + -5.982375660096295e-5, + -0.005007067229598761, + 0.00019975243776571006, + 0.031383905559778214, + -0.025234749540686607, + -0.003678254783153534, + -0.012146036140620708, + -0.005884482525289059, + -0.012312817387282848, + -3.175304664182477e-5, + 0.004738766700029373, + 0.021246498450636864, + 0.015996510162949562, + -0.00896268617361784, + 0.033414289355278015, + 0.0007885859231464565, + 0.0005995972314849496, + 0.008868418633937836, + 0.004205791279673576, + 0.02169608324766159, + -9.397032044944353e-6, + 0.010420210659503937, + 0.008455091156065464, + -0.019723711535334587, + 0.0028606632258743048, + -0.00768644642084837, + -0.004833034705370665, + 0.01031144056469202, + -0.03680792823433876, + -0.01110909041017294, + -0.007903987541794777, + 0.005384138319641352, + -0.005656064487993717, + -0.008650877512991428, + 0.010703014209866524, + -0.012682636268436909, + -0.015604936517775059, + 0.0005479312385432422, + 0.005768460687249899, + 0.001017003902234137, + -0.011638440191745758, + -0.010521730408072472, + 0.0051702228374779224, + 0.009114964865148067, + 0.01333525963127613, + -0.0160400178283453, + 0.034284450113773346, + -0.0004262442816980183, + 0.006609618663787842, + 0.015358390286564827, + 0.013182980939745903, + -0.03553168475627899, + -0.012037265114486217, + -0.00362749514169991, + 0.007302124053239822, + -0.018839044496417046, + 0.0020231306552886963, + 0.007041074801236391, + 0.004278304986655712, + 0.005975124426186085, + -0.0015182545175775886, + -0.014640505425632, + 0.005427646450698376, + 0.008658129721879959, + -0.023871492594480515, + -0.0014765590894967318, + 0.038113173097372055, + 0.0017539238324388862, + -0.016765154898166656, + 0.01733076199889183, + -0.01041295938193798, + -0.003984624985605478, + 0.014611499384045601, + 0.01838945969939232, + -0.0030927069019526243, + 0.024770662188529968, + -0.014981319196522236, + -0.02136252075433731, + -0.011428150348365307, + 0.00011381243530195206, + 0.028990956023335457, + -0.0025289133191108704, + -0.01927412673830986, + 0.010703014209866524, + 0.004731515422463417, + 0.02021680399775505, + -0.004568359814584255, + -0.000794930849224329, + 0.028729906305670738, + -0.0037960894405841827, + 0.006725640501827002, + -0.007022946607321501, + -0.007671943865716457, + -0.020970946177840233, + 0.010362200438976288, + -0.013190232217311859, + 0.004484969191253185, + 0.00022751156939193606, + -0.003730827011168003, + -0.0023113724309951067, + 0.004981687292456627, + 0.01138464268296957, + -0.0019197987858206034, + -0.007055577822029591, + -0.0017675200942903757, + -0.0008357197511941195, + -0.020593876019120216, + -0.018041394650936127, + -0.005873605143278837, + -0.020912935957312584, + 0.012675384990870953, + -0.016707144677639008, + -0.03202202543616295, + 0.010826287791132927, + 0.007084583397954702, + -0.002577860141173005, + 0.001327906153164804, + -0.00812877994030714, + -0.008948183618485928, + 0.007099085953086615, + -0.02317536063492298, + 0.008476844988763332, + -0.003268552478402853, + 0.02907797135412693, + 0.018026892095804214, + 0.01940465159714222, + 0.011065582744777203, + -0.0010179103119298816, + -0.021594563499093056, + 0.01345853228121996, + 0.0007187915034592152, + -0.010304189287126064, + -0.0014593370724469423, + -0.004949056543409824, + 0.0025216620415449142, + 0.006656752899289131, + -0.0067655229941010475, + -0.0007088208803907037, + 0.01201551128178835, + -0.011225112713873386, + -0.024016520008444786, + 0.0035042220260947943, + 0.004717012867331505, + -0.0018853547517210245, + 0.029237501323223114, + -0.0038976084906607866, + -0.001651498256251216, + 0.0025633573532104492, + 0.004952682182192802, + 0.010601495392620564, + 0.010666756890714169, + -0.003973747603595257, + 0.004466840531677008, + -0.019303131848573685, + 0.001848191604949534, + 0.011942997574806213, + -0.013378767296671867, + 0.016808662563562393, + 0.010383954271674156, + -0.01968020386993885, + -0.0405496321618557, + -0.00742177153006196, + 0.0051702228374779224, + 0.005362384021282196, + -0.0006086613866500556, + -0.037359029054641724, + -0.011022074148058891, + -0.006421083118766546, + -0.013647068291902542, + -0.013850105926394463, + 0.011522417888045311, + -0.008817659690976143, + 0.019448159262537956, + -0.012138783931732178, + 0.028889436274766922, + 0.00599687872454524, + -0.006058515049517155, + -0.017359767109155655, + 0.008643626235425472, + 0.018694017082452774, + 0.004184037446975708, + -0.00542039517313242, + 0.018781034275889397, + -0.01825893670320511, + -0.011602183803915977, + -0.0030093162786215544, + 0.003342879004776478, + -0.003663751995190978, + -0.01322648860514164, + -0.010790030471980572, + -0.002722887322306633, + -0.01199375744909048, + -0.010695762932300568, + -0.010304189287126064, + 0.013277248479425907, + -0.02571333944797516, + 0.013328008353710175, + 0.030455730855464935, + -0.002275115577504039, + 0.0013288125628605485, + 0.012095276266336441, + -0.02055036649107933, + -0.024364585056900978, + -0.0014267059741541743, + -0.011928495019674301, + -0.01268988847732544, + -0.02020230144262314, + 0.0006983970524743199, + 0.005906236357986927, + 0.004851162899285555, + -0.015459909103810787, + -0.010006883181631565, + -0.01618504524230957, + -0.0007201511180028319, + 0.001307964907027781, + -0.00836082361638546, + 0.009883609600365162, + -0.006993941031396389, + -0.004814906045794487, + 0.009564549662172794, + -0.009412270970642567, + -0.011493412777781487, + 0.02854137122631073, + 0.00907145719975233, + -0.023001328110694885, + 0.031238878145813942, + -0.0008130592759698629, + -0.019303131848573685, + 0.010891549289226532, + 0.009564549662172794, + -0.0228417981415987, + 0.020303821191191673, + 0.012813161127269268, + 0.008846664801239967, + -0.004756895359605551, + -0.0029893750324845314, + -0.0004731515364255756, + -0.0071389684453606606, + -0.010470970533788204, + 0.014756526798009872, + -0.014691264368593693, + -0.0024328327272087336, + -0.03950543329119682, + -0.0005887201405130327, + -0.02108696848154068, + 0.019970258697867393, + -0.026743032038211823, + -0.01773683726787567, + 0.04188388213515282, + 0.004659001715481281, + 0.01644609495997429, + 0.015503417700529099, + -0.00875964853912592, + -0.008607369847595692, + 0.000916844408493489, + 0.00527174212038517, + 0.0022279818076640368, + -0.022609755396842957, + 0.007541419006884098, + 0.023595940321683884, + 0.023450912907719612, + 0.021928125992417336, + -0.019970258697867393, + -0.013719581998884678, + -0.00423117121681571, + -0.003203290281817317, + 0.01181972399353981, + -0.006421083118766546, + 0.004666252993047237, + -0.022058650851249695, + -0.010884298011660576, + 0.006732892245054245, + -0.005714075174182653, + -0.008223047479987144, + -0.004568359814584255, + 0.02149304375052452, + -0.0034625264815986156, + -0.011972002685070038, + 0.006094771903008223, + -0.015256871469318867, + -0.0005687788943760097, + -0.015169854275882244, + -0.002061200328171253, + 0.0029821237549185753, + 0.009223735891282558, + -0.007874981500208378, + -0.008643626235425472, + 0.002159093739464879, + -0.0066313729621469975, + 0.009252741001546383, + 0.003810591995716095, + 0.026307949796319008, + -0.007109962869435549, + -0.005347881466150284, + -0.0049164253287017345, + -0.0030491987708956003, + -0.007157096639275551, + -0.01289292611181736, + 0.02411803789436817, + -0.004260176792740822, + 0.004013630095869303, + -0.014850794337689877, + -0.014771029353141785, + -0.013269997201859951, + -0.0019687453750520945, + 0.004829408600926399, + 0.0010614184429869056, + 0.02295782044529915, + -0.012240303680300713, + 0.019027581438422203, + 0.0320800356566906, + 0.02564082480967045, + -0.021812105551362038, + 0.0009535544668324292, + 0.004822157323360443, + 0.032138049602508545, + -0.02691706456243992, + 0.008136031217873096, + 0.008433337323367596, + -0.007392766419798136, + 0.0034389595966786146, + -0.015677450224757195, + -0.008034512400627136, + 0.004057138692587614, + 0.0031126481480896473, + -0.0028552247676998377, + -0.015822477638721466, + -0.011863232590258121, + -0.014865297824144363, + 0.00892642978578806, + -0.02935352362692356, + -0.019970258697867393, + 0.009158473461866379, + -0.004448712337762117, + -0.008469593711197376, + -0.012588368728756905, + 0.01551792025566101, + 0.005576299503445625, + -0.01751929707825184, + 0.0016324634198099375, + 0.010688511654734612, + -0.021855613216757774, + 0.024669142439961433, + -0.0007092740852385759, + -0.02913598343729973, + -0.003560420125722885, + -0.009825599379837513, + -0.0007681914139539003, + -0.006747394800186157, + 0.00651172548532486, + -0.017577307298779488, + 0.0015119095332920551, + 0.016634630039334297, + 0.01879553683102131, + -0.00819404236972332, + 0.0025017207954078913, + -0.015532422810792923, + 0.017954379320144653, + 0.0045901136472821236, + -0.004608242306858301, + 0.01753379963338375, + 0.018824541941285133, + 0.009615309536457062, + -0.016837667673826218, + -0.020840421319007874, + 0.0023041211534291506, + 0.009085959754884243, + -0.008737894706428051, + 0.006337692495435476, + -0.024132540449500084, + -0.009651565924286842, + 0.008658129721879959, + 0.008643626235425472, + -0.008788653649389744, + 0.004767772275954485, + -0.007584927137941122, + 0.008752397261559963, + -0.003937490750104189, + 0.003763458225876093, + -0.01873752661049366, + -0.00725499028339982, + -0.017504794523119926, + 0.005025195889174938, + -0.005735829472541809, + 0.0072694928385317326, + 0.005358758382499218, + -0.01400238461792469, + 0.015764467418193817, + -0.010072145611047745, + -0.0005733110010623932, + 0.009927118197083473, + 0.01827343925833702, + -0.01373408455401659, + 0.010195418260991573, + 0.01772233471274376, + 0.011370140127837658, + 0.017635319381952286, + 0.009325254708528519, + 0.003843223210424185, + -0.008288309909403324, + -0.0087959049269557, + -0.0018926061457023025, + -0.003810591995716095, + -0.008281058631837368, + -0.011507915332913399, + 0.0154744116589427, + 0.0022841799072921276, + 0.011167101562023163, + 0.0023856989573687315, + -0.01014465931802988, + -0.008455091156065464, + -0.01302345097064972, + 0.003930239472538233, + 0.0011176165426149964, + -0.012037265114486217, + -0.00768644642084837, + 0.00421304302290082, + 0.0007740831933915615, + -0.023189863190054893, + -0.006783651653677225, + -0.0034081414341926575, + -0.016286564990878105, + 0.013755838386714458, + -0.004793152213096619, + -0.0027083847671747208, + -0.017374269664287567, + 0.029962638393044472, + 0.006874293554574251, + 0.016417089849710464, + 0.017142225056886673, + -0.00037299207178875804, + -0.014604248106479645, + 0.01356730330735445, + -0.009927118197083473, + 0.019114596769213676, + 0.0050832065753638744, + -0.008824910968542099, + -0.0018182796193286777, + 0.00980384461581707, + 0.001995938131585717, + 0.006337692495435476, + 0.0039955019019544125, + -0.009245489723980427, + 0.002180847804993391, + -0.006533479318022728, + -0.00106595060788095, + -0.010456467978656292, + 0.00281896791420877, + -0.029368026182055473, + -0.004100646823644638, + 0.015111844055354595, + 0.023479918017983437, + -0.012472347356379032, + -0.008513102307915688, + 0.034081414341926575, + 0.0087959049269557, + -0.013806598260998726, + 0.0007160722743719816, + -0.011290374211966991, + -0.020637383684515953, + -0.004782274831086397, + 0.004934553522616625, + -0.011725456453859806, + 0.003763458225876093, + 0.01020266953855753, + 0.01178346760571003, + -0.018911559134721756, + 9.241240945812024e-7, + 0.009064205922186375, + -0.014865297824144363, + -0.006700261030346155, + 0.0012318255612626672, + 0.006798154208809137, + -0.006859790999442339, + 0.005137591622769833, + -0.008440588600933552, + -0.0024835923686623573, + -0.0015137223526835442, + 0.010804533027112484, + 0.022073153406381607, + 0.00619629118591547, + -0.011181604117155075, + -0.0012417961843311787, + 0.009151222184300423, + 0.005445774644613266, + 0.001580797485075891, + -0.003667377633973956, + -0.023189863190054893, + 0.004644499160349369, + -0.017243744805455208, + 0.013306253589689732, + 0.01537289284169674, + 0.012240303680300713, + 0.028526868671178818, + 0.007019320968538523, + 0.011203357949852943, + -0.0032304830383509398, + -0.018171919509768486, + -0.022392213344573975, + 0.0038395975716412067, + -0.00043462865869514644, + 0.0049127996899187565, + -0.017084214836359024, + -0.003121712477877736, + 0.007468905299901962, + -0.011261369101703167, + -0.017548302188515663, + -0.02807728387415409, + -0.00299843936227262, + 0.0013668822357431054, + -0.0034335211385041475, + 0.01551792025566101, + 0.00751966517418623, + -0.015880487859249115, + -0.010826287791132927, + -0.005656064487993717, + -0.007903987541794777, + 0.01020266953855753, + -0.01205176766961813, + -0.021986138075590134, + 0.010115653276443481, + -0.008991692215204239, + -0.0054566520266234875, + -0.0015291315503418446, + -4.6765635488554835e-5, + 0.022667765617370605, + 0.010804533027112484, + -0.011906740255653858, + -0.016156040132045746, + -0.003777961013838649, + 0.004865665454417467, + -0.00022433909180108458, + -0.003212354611605406, + -0.01840396411716938, + 0.0002472262131050229, + 0.015198860317468643, + 0.001519160927273333, + -0.002757331356406212, + 0.010180915705859661, + 0.01994125172495842, + -0.028845928609371185, + -0.010666756890714169, + 0.0049127996899187565, + 0.011435401625931263, + 0.033675335347652435, + 0.019723711535334587, + -0.022609755396842957, + 0.00892642978578806, + -0.019912246614694595, + 0.012349073775112629, + -0.001365975826047361, + 0.017156729474663734, + -0.003083642804995179, + -0.002072077477350831, + 0.020434346050024033, + 0.002539790468290448, + -0.0010469157714396715, + 0.018563494086265564, + -0.004144154954701662, + -0.01195024885237217, + 0.012131532654166222, + -0.02088393084704876, + 0.004608242306858301, + -0.0054566520266234875, + 0.023958507925271988, + -0.006051263771951199, + 0.0037960894405841827, + -0.005732203833758831, + -0.01840396411716938, + 0.010449216701090336, + 0.018563494086265564, + -0.01074652187526226, + 0.006431960500776768, + 0.006022258196026087, + -0.0006421989528462291, + 0.005811968818306923, + 0.00041174155194312334, + 0.002601427026093006, + 0.002614116994664073, + 0.018099406734108925, + -0.014879800379276276, + -0.003302996512502432, + 0.011457156389951706, + -0.016605624929070473, + 0.00010803400073200464, + -0.011921243742108345, + 0.025205742567777634, + -0.0065008485689759254, + 0.004967184737324715, + -0.0018309695878997445, + -0.0004663533763960004, + -0.001562669058330357, + -0.0025071592535823584, + -0.00768644642084837, + 0.0011946622980758548, + 0.006848914083093405, + 0.006036761216819286, + -0.026162924244999886, + 0.024205055087804794, + 0.01881003938615322, + -0.021913623437285423, + -0.023392902687191963, + 0.011036576703190804, + -0.006649501156061888, + 0.008911927230656147, + -0.003680067602545023, + -0.005075955297797918, + 0.005152094643563032, + 0.001329718972556293, + -0.008817659690976143, + -0.0002805371768772602, + -0.015633942559361458, + 0.0034915320575237274, + -0.0175918098539114, + 0.017678827047348022, + 2.2433909180108458e-5, + 0.002197163412347436, + -0.010449216701090336, + -0.0028552247676998377, + -0.035299643874168396, + 0.005819220095872879, + 0.031325895339250565, + 0.057720862329006195, + 0.02941153384745121, + 0.008853916078805923, + -0.0007994629559107125, + 0.02519124001264572, + -0.022319700568914413, + 0.0019397400319576263, + 0.006482719909399748, + -0.036024779081344604, + -0.021841110661625862, + -0.004622744861990213, + -0.00859286729246378, + 0.028236813843250275, + 0.007461654022336006, + -0.01899857446551323, + -0.005395015235990286, + -0.01302345097064972, + -0.004571985453367233, + -0.0030927069019526243, + 0.009209233336150646, + -0.008107025176286697, + 7.931180152809247e-5, + -0.012697139754891396, + 0.011116341687738895, + 0.014147412031888962, + 0.003759832587093115, + -0.0023113724309951067, + -0.010594244115054607, + -0.016939187422394753, + 0.008143282495439053, + 0.025698836892843246, + -0.02081141620874405, + -0.016359077766537666, + -0.003864977275952697, + -0.011022074148058891, + 0.02256624586880207, + 0.010623249225318432, + 0.013893614523112774, + -0.00936876330524683, + -0.00020621067960746586, + 0.0029132356867194176, + -0.021812105551362038, + -0.004401578102260828, + -0.010325943119823933, + -0.004144154954701662, + -0.014734772965312004, + 0.02471265010535717, + -0.026743032038211823, + 0.016634630039334297, + -0.013342510908842087, + 0.009064205922186375, + -0.0018762905383482575, + -0.026844551786780357, + -0.0044124554842710495, + -0.012573866173624992, + 0.01501032430678606, + 0.030542748048901558, + -0.007283995859324932, + -0.009129468351602554, + -0.03297920525074005, + -0.017229242250323296, + 0.00757042458280921, + 0.015430903993546963, + 0.003196039004251361, + -0.027569688856601715, + 0.015198860317468643, + -0.016736149787902832, + -0.021435033529996872, + -0.006040386855602264, + -0.014176418073475361, + 0.004785900469869375, + -0.010325943119823933, + -0.0019524298841133714, + -0.02202964574098587, + -0.023465415462851524, + -0.004905547946691513, + -0.02432107739150524, + 0.00806351751089096, + -0.008868418633937836, + 0.039389412850141525, + -0.015619439072906971, + 0.003767083864659071, + 0.016141537576913834, + 0.0043290648609399796, + -0.02049235627055168, + 0.005159345921128988, + -0.0103767029941082, + -0.0044958461076021194, + -0.031383905559778214, + -0.006993941031396389, + -0.02907797135412693, + -0.0030437603127211332, + -0.016069024801254272, + 0.007606681436300278, + 0.007613932713866234, + -0.005496534518897533, + 0.0034317083191126585, + 0.002657625125721097, + -0.0016252121422439814, + 0.00842608604580164, + 0.0022026021033525467, + 0.005242736544460058, + 0.0039048597682267427, + 0.016402587294578552, + -0.01618504524230957, + -0.03442947939038277, + 0.005895359441637993, + 0.0049563078209757805, + 0.0018690392607823014, + 0.02626444213092327, + -0.007113588508218527, + -0.016547614708542824, + 0.00548928277567029, + 0.007258615922182798, + -0.019433656707406044, + 0.02545228973031044, + 0.001970558427274227, + 0.01285666972398758, + 0.003846848849207163, + -0.001589861698448658, + -0.028628386557102203, + 0.007233235985040665, + 0.02384248748421669, + 0.011377391405403614, + 0.00317247211933136, + 0.004205791279673576, + 0.002117398427799344, + 0.013915368355810642, + -0.014459220692515373, + 0.006421083118766546, + 0.020187798887491226, + 0.0024709024000912905, + -0.01501032430678606, + 0.0024382714182138443, + -0.008498599752783775, + -0.01239258237183094, + 0.009296249598264694, + 0.008716139942407608, + 0.011928495019674301, + -0.011058330535888672, + -0.01524236798286438, + 0.0071389684453606606, + 0.015387395396828651, + 0.002191724954172969, + -0.002699320437386632, + -0.005340630188584328, + -0.0055871764197945595, + 0.014277936890721321, + 0.012233052402734756, + 0.0018744777189567685, + 0.0034534623846411705, + -0.009658817201852798, + 0.0024872180074453354, + -0.012472347356379032, + -0.009354260750114918, + 0.015865985304117203, + 0.017910869792103767, + 0.01514084916561842, + -0.013523794710636139, + 0.006975812837481499, + -0.005598053336143494, + 0.004557482432574034, + 0.0014919682871550322, + 0.015401897951960564, + 0.00498893903568387, + 0.01131938025355339, + 0.012646379880607128, + 0.006838036701083183, + -0.020100783556699753, + -0.011638440191745758, + -0.01692468486726284, + -0.0044559636153280735, + -0.013197483494877815, + -0.0044088298454880714, + 0.004140529315918684, + -0.01480728667229414, + -0.01551792025566101, + -0.017838357016444206, + -0.036633893847465515, + 0.002146404003724456, + 0.016098029911518097, + 0.020129788666963577, + 0.023537930101156235, + -0.0020013765897601843, + 0.008208544924855232, + -0.007606681436300278, + -0.006392078008502722, + 0.00664587551727891, + 0.0018454722594469786, + 0.007160722743719816, + -0.010753774084150791, + 0.017490291967988014, + -0.01907108910381794, + -0.006660378538072109, + -0.0008116996032185853, + 0.008208544924855232, + 0.016170542687177658, + 0.0029784981161355972, + -0.0019216116052120924, + -0.005307998973876238, + -0.013103215955197811, + -0.026844551786780357, + -0.0019488042453303933, + -0.01272614486515522 + ], + "f6f713d6-68a5-45e1-aa49-aed586e59c7e": [ + -0.013384467922151089, + -0.029354894533753395, + -0.007956796325743198, + -0.02469448558986187, + -0.05717526376247406, + -0.023486757650971413, + 0.02921280823647976, + 0.057743605226278305, + -0.008702745661139488, + 0.03503832221031189, + 0.0014466095017269254, + 0.0118783600628376, + -0.01804487779736519, + -0.00552357966080308, + -0.005015623290091753, + 0.009803909808397293, + -0.050781410187482834, + 0.022818954661488533, + -0.018783722072839737, + -0.013959914445877075, + 0.0946858748793602, + -0.018158545717597008, + -0.00129741954151541, + 0.04651883989572525, + -0.03270811587572098, + -0.016524560749530792, + 0.02551858127117157, + 0.0033017152454704046, + -0.001139349304139614, + -0.01746232621371746, + -0.013235277496278286, + 0.003115227911621332, + 0.03594766929745674, + -0.017405491322278976, + 0.022392697632312775, + -0.006777485366910696, + -0.033333294093608856, + 0.02104288339614868, + -0.03526565805077553, + 0.013249486684799194, + -0.01283743791282177, + 0.046376753598451614, + 0.016013052314519882, + 0.007757876068353653, + -0.02040349878370762, + 0.027692493051290512, + 0.04271094501018524, + 0.0019270365592092276, + 0.012986628338694572, + -0.012922689318656921, + -0.007686833385378122, + 0.035606663674116135, + -0.01089086476713419, + 0.011004533618688583, + 0.017433909699320793, + 0.0067597245797514915, + -0.0015354129718616605, + 0.08235283941030502, + -0.0005829951842315495, + -0.0389314666390419, + 0.0021099718287587166, + 0.0012583460193127394, + 0.018940016627311707, + -0.007274785079061985, + -0.02480815351009369, + -0.0027209401596337557, + 0.010564067400991917, + 0.02193802408874035, + -0.03952822834253311, + 0.01364732626825571, + 0.021994858980178833, + 0.01101163774728775, + -0.02458081766963005, + 0.008638807572424412, + 0.010748779401183128, + -0.0030086636543273926, + 0.05288427695631981, + -0.025134950876235962, + -0.00806336011737585, + 0.0017441012896597385, + -0.039386142045259476, + 0.013554970733821392, + 5.47251729585696e-5, + -0.00038363123894669116, + 0.04364871233701706, + 0.037340108305215836, + -0.04262569546699524, + -0.059789638966321945, + -0.025433329865336418, + -0.03637392446398735, + 0.01226909551769495, + 0.013043462298810482, + 0.013881768099963665, + 0.006322811357676983, + -0.026911022141575813, + -0.01065642386674881, + 0.023444131016731262, + 0.0048735374584794044, + -0.020261412486433983, + -0.030292659997940063, + -0.005008519161492586, + 0.016055678948760033, + -0.03321962431073189, + -0.012205157428979874, + 0.031287260353565216, + 0.010095185600221157, + 0.028786551207304, + -0.011686544865369797, + -0.013895976357161999, + 0.02024720422923565, + 0.01619776338338852, + 0.001866650185547769, + -0.009406070224940777, + -0.00032124677090905607, + 0.02068766951560974, + -0.07712408900260925, + -0.026882603764533997, + -0.02823241800069809, + -0.03299228847026825, + -0.058368783444166183, + 0.052713774144649506, + 0.028928637504577637, + 0.016965026035904884, + -0.03617500513792038, + 0.014947409741580486, + 0.0032697459682822227, + -0.014947409741580486, + 0.0011482295813038945, + 0.007772084791213274, + -0.004759869072586298, + -0.008425679057836533, + -0.023032084107398987, + -0.024282436817884445, + 0.03074733354151249, + -0.017902791500091553, + 0.0009652943699620664, + 0.0038682816084474325, + 0.05083824321627617, + -0.02009090967476368, + 0.0337311327457428, + -0.00040605413960292935, + -0.04290986433625221, + -0.006347676273435354, + -0.022861581295728683, + 0.015799924731254578, + 0.012411180883646011, + -0.02784878760576248, + 0.032225023955106735, + -0.0006313931080512702, + 0.03236711025238037, + -0.02949698083102703, + 0.009541051462292671, + 0.018655845895409584, + -0.00684142392128706, + 0.008525138720870018, + -0.008866144344210625, + 0.01753336936235428, + 0.01734865829348564, + -0.03645917773246765, + 0.0051292916759848595, + -0.0036160796880722046, + -0.029980070888996124, + 0.0353793241083622, + -0.01619776338338852, + 0.011295808479189873, + 0.016098303720355034, + 0.021653853356838226, + 0.0354645773768425, + -0.04325086995959282, + 0.029468562453985214, + 0.03833470866084099, + -0.010194645263254642, + -0.002950053196400404, + 0.013768099248409271, + -0.0019678862299770117, + -0.017178155481815338, + 0.013043462298810482, + 0.014947409741580486, + 0.009221358224749565, + -0.027436738833785057, + 0.011800212785601616, + -0.0063583324663341045, + -0.028459755703806877, + 0.01454957015812397, + -0.036430761218070984, + 0.018016459420323372, + 0.02001986838877201, + -0.0066851298324763775, + -0.01639668270945549, + 0.012908481061458588, + -0.0013942153891548514, + -0.010031246580183506, + 0.024097725749015808, + 0.04970156028866768, + -0.01915314421057701, + 0.0014865710400044918, + -0.007118490990251303, + 0.005669217091053724, + 0.018115919083356857, + 0.017831748351454735, + -0.011501832865178585, + -0.06507522612810135, + -0.07007664442062378, + 0.02291841432452202, + -0.04470014572143555, + -0.010159123688936234, + -0.020772920921444893, + -0.008034943602979183, + 0.011082679964601994, + -0.021142344921827316, + 0.020829755812883377, + -0.0084327831864357, + 0.024467147886753082, + 0.005964044947177172, + -0.009157420136034489, + -0.0033976230770349503, + -0.027109941467642784, + 0.019096311181783676, + 0.009192941710352898, + 0.01737707480788231, + -0.01911051943898201, + 0.008475408889353275, + 0.03748219460248947, + -0.04109117016196251, + -0.06109682843089104, + -0.023529382422566414, + -0.016609812155365944, + 0.02980956807732582, + -0.025419121608138084, + -0.016652436926960945, + 0.039187222719192505, + 0.007178877480328083, + 0.0055306837894022465, + -0.051292918622493744, + -0.005733155645430088, + 0.006308602634817362, + 0.0028204000554978848, + 0.006955092307180166, + 0.033560629934072495, + -0.021696478128433228, + 0.04589366540312767, + 0.00806336011737585, + 0.0012592340353876352, + 0.007047447841614485, + 0.0220659002661705, + 0.008326218463480473, + -0.020318247377872467, + 0.05433355271816254, + 0.04029548913240433, + -0.001281434902921319, + 0.022662660107016563, + 0.031514596194028854, + 0.010017038322985172, + 0.004806046839803457, + 0.010336730629205704, + 0.029070723801851273, + 0.011175036430358887, + -0.0022414010018110275, + -0.018215380609035492, + 0.01828642189502716, + -0.025419121608138084, + -0.002259161788970232, + -0.004010367207229137, + -0.023302046582102776, + 0.052827443927526474, + -0.02009090967476368, + 0.027379903942346573, + -0.043705545365810394, + -0.001291203312575817, + -0.0043762377463281155, + -0.05069615691900253, + 0.006884049624204636, + -0.017320239916443825, + 0.009562363848090172, + -0.011537354439496994, + -0.006894705817103386, + 0.001982094720005989, + 0.009612093679606915, + 0.006347676273435354, + 0.017519161105155945, + 0.0008636143174953759, + 0.0371980220079422, + 0.014464318752288818, + 0.04418863728642464, + 0.00456094928085804, + -0.016737688332796097, + -0.007502122316509485, + 0.01071325782686472, + -0.026953646913170815, + -0.006276633590459824, + 0.02740832045674324, + -0.01808750256896019, + 0.027791952714323997, + -0.012361451052129269, + 0.017007652670145035, + 0.010215957649052143, + -0.01460640411823988, + -0.013753890991210938, + -0.027948247268795967, + 0.018670054152607918, + -0.022279029712080956, + -0.005715395323932171, + 0.04910479858517647, + -0.007828919216990471, + 0.015870966017246246, + 0.005718947388231754, + 0.04219943657517433, + -0.01221226155757904, + -0.03583399951457977, + 0.03134409338235855, + 0.035521410405635834, + -0.0024705142714083195, + -0.024978656321763992, + -0.02716677635908127, + -0.001333829015493393, + 0.011516042053699493, + 0.016723480075597763, + 0.020986050367355347, + -0.0009226686670444906, + 0.00041182636050507426, + -0.005768677219748497, + -0.007836023345589638, + -0.04276777803897858, + 0.02371409349143505, + 0.0373685248196125, + -0.03762428089976311, + 0.0010896193562075496, + 0.02949698083102703, + -0.009335027076303959, + -0.014137521386146545, + -0.004095618613064289, + -0.057431019842624664, + -0.014130417257547379, + -0.012311721220612526, + -0.0018160322215408087, + -0.020147744566202164, + -0.030292659997940063, + -0.03177035227417946, + -0.014144626446068287, + -0.005218095146119595, + -0.01722078025341034, + 0.039073552936315536, + -0.03861887753009796, + 0.004461489152163267, + 0.0015700464136898518, + -0.012752186506986618, + -0.001973214326426387, + 0.02233586274087429, + -0.02190960757434368, + -0.020574001595377922, + 0.0006078601581975818, + -0.031230425462126732, + 0.03316279128193855, + -0.003921563737094402, + 0.010336730629205704, + -0.007715250365436077, + -0.028303461149334908, + -0.019948825240135193, + 0.007331619504839182, + 0.006411614827811718, + -0.007608686573803425, + -0.02327362820506096, + -0.027706701308488846, + -0.008525138720870018, + 0.008745371364057064, + 0.017959626391530037, + 0.013491031713783741, + -0.0032200159039348364, + -0.005424119532108307, + 0.007068760693073273, + -0.013050566427409649, + 0.04919005185365677, + 0.0220659002661705, + 0.0019891990814357996, + -0.02756461501121521, + 0.018258005380630493, + 0.044018134474754333, + 0.03168509900569916, + -0.025390705093741417, + 0.021497558802366257, + -0.02571750245988369, + 0.0047918385826051235, + -0.01521737314760685, + -0.0388462170958519, + 0.06013064458966255, + 0.007239263504743576, + -0.0012299289228394628, + 0.005171917378902435, + 7.997867942322046e-5, + -0.017860164865851402, + -0.04938897117972374, + -0.01868426240980625, + -0.02678314410150051, + -0.005377941764891148, + -0.02142651565372944, + 0.032310277223587036, + 0.009697345085442066, + 0.01401674933731556, + 0.02300366573035717, + 0.013356050476431847, + 0.0021312846802175045, + -0.011317121796309948, + 0.0025717501994222403, + 9.119012247538194e-5, + 0.02992323786020279, + -0.008859040215611458, + -0.01211280096322298, + 0.01891160011291504, + -0.006422271020710468, + -0.011537354439496994, + -0.001987423049286008, + -0.0042945388704538345, + -0.006077713333070278, + -0.012006237171590328, + 0.04342137277126312, + -0.027777744457125664, + 0.03114517405629158, + -0.0046817222610116005, + -0.0639953762292862, + 0.005747364368289709, + 0.03142934665083885, + 0.05686267465353012, + -0.020034076645970345, + 0.0036835703067481518, + -0.029951654374599457, + 0.014620613306760788, + 0.030093740671873093, + 0.03032107651233673, + -0.0009599661570973694, + -0.007850231602787971, + -0.029241226613521576, + -0.0051292916759848595, + -0.03415738791227341, + -0.013228173367679119, + -0.005907210521399975, + 0.0042803301475942135, + -0.0031507492531090975, + 4.395774521981366e-5, + -0.003278626361861825, + 0.0014368410920724273, + 0.018456924706697464, + 0.0210713017731905, + 0.002372830407693982, + 0.005647904239594936, + -0.011544458568096161, + -0.037027519196271896, + -0.04177318140864372, + 0.0035894387401640415, + -0.010393564589321613, + 0.03535090759396553, + -0.001553173759020865, + 0.05893712490797043, + -0.012752186506986618, + 0.0011322449427098036, + -0.01679452322423458, + 0.0054205674678087234, + 0.0007082081283442676, + 0.01170075312256813, + 0.007523435167968273, + 0.005484506022185087, + -0.005942732095718384, + 0.0012938673608005047, + 0.02752199023962021, + -0.03671493008732796, + 0.012794812209904194, + -0.053225282579660416, + -0.030150573700666428, + 0.01891160011291504, + -0.016524560749530792, + -0.0060421922244131565, + -0.018968433141708374, + 0.03955664485692978, + -0.03475414961576462, + -0.0029855745378881693, + -0.02021878771483898, + 0.005353076849132776, + -0.0019359169527888298, + 0.005686977878212929, + 0.013675743713974953, + -0.00825517624616623, + -0.0322534404695034, + -0.02747936360538006, + -0.029155975207686424, + 0.017561785876750946, + 0.049531057476997375, + 0.0024190081749111414, + -0.0371980220079422, + 0.00894429162144661, + 0.027578823268413544, + 0.006372541189193726, + 0.018215380609035492, + -0.007622894831001759, + 0.01260299701243639, + -0.021483350545167923, + -0.01886897347867489, + -0.059789638966321945, + 0.02288999781012535, + -0.018186962231993675, + -0.005409910809248686, + -0.021540183573961258, + 0.041659511625766754, + -0.0017458773218095303, + -0.005612383130937815, + 0.03617500513792038, + 0.010926386341452599, + -0.004507666919380426, + -0.017362866550683975, + 0.012226469814777374, + -0.0018471133662387729, + 0.006699338089674711, + 0.0009795029181987047, + 0.0024456491228193045, + -0.009974412620067596, + 0.005726051516830921, + -0.009228462353348732, + 0.025546999648213387, + -0.02831766940653324, + 0.0018844108562916517, + 0.0212418045848608, + -0.02138388901948929, + -0.004614231176674366, + 0.00015474014799110591, + -0.019607819616794586, + 0.024040890857577324, + 0.01734865829348564, + -0.0035432607401162386, + 0.008596181869506836, + 0.02580275386571884, + 0.02827504277229309, + 0.006717098876833916, + -0.020772920921444893, + 0.018613219261169434, + -0.02146914042532444, + -0.02355780079960823, + 0.004457937087863684, + -0.013363154605031013, + 0.0070225829258561134, + -0.027976663783192635, + -0.0025024835485965014, + 0.03370271623134613, + -0.015188955701887608, + 0.012851647101342678, + -0.011444998905062675, + -0.008567764423787594, + 0.012190948240458965, + 0.02073029614984989, + -0.027351487427949905, + 0.011288704350590706, + 0.0034224879927933216, + 0.0033034912776201963, + -0.011018741875886917, + 0.01340578030794859, + -0.012688248418271542, + 0.00917873252183199, + 0.027067314833402634, + -0.03506673872470856, + 0.035492993891239166, + -0.012716664932668209, + -0.03145776316523552, + 0.0002028050657827407, + 0.011494728736579418, + -0.00021146339713595808, + 0.006756172515451908, + 0.005996014457195997, + -0.03913038596510887, + 0.0018124800408259034, + -0.05211701616644859, + 0.017916999757289886, + 0.0013276127865538, + 0.01879793033003807, + 0.02480815351009369, + 0.02342992275953293, + 0.02276211977005005, + -0.010848239064216614, + -0.03358904644846916, + 0.007324514910578728, + 0.005061801057308912, + 0.011139514856040478, + -0.03793686628341675, + 0.005651456769555807, + 0.014073583297431469, + -0.0372832752764225, + 0.015132121741771698, + -0.010848239064216614, + 0.012553267180919647, + 0.003640944603830576, + -0.05143500491976738, + -0.04958789050579071, + -0.008198341354727745, + 0.019948825240135193, + -0.009029543027281761, + 0.006610534619539976, + 0.04327928647398949, + -0.02807612344622612, + -0.01848534308373928, + 0.022506365552544594, + 0.005292690359055996, + 0.010336730629205704, + -0.0038256561383605003, + 0.0018222484504804015, + -0.020190371200442314, + 0.01977832242846489, + 0.021923815831542015, + 0.0014155282406136394, + -0.04131850600242615, + 0.025632251054048538, + -0.029155975207686424, + 0.011217662133276463, + -0.03094625286757946, + -0.02485078014433384, + -0.012205157428979874, + -0.00894429162144661, + 0.020772920921444893, + -0.009647615253925323, + 0.037851616740226746, + 0.006155860610306263, + 0.022279029712080956, + 0.01592780090868473, + 0.00604574428871274, + -0.00866722408682108, + 0.012979524210095406, + -0.06354070454835892, + 0.04722926765680313, + -0.03157142922282219, + 0.031287260353565216, + -0.004052992910146713, + -0.013000836595892906, + -0.015430500730872154, + -0.019693071022629738, + 0.005907210521399975, + 0.020460333675146103, + 0.02324521169066429, + 0.041858430951833725, + -0.025120742619037628, + 0.018698470667004585, + 0.017320239916443825, + 0.00020724523346871138, + 0.019451525062322617, + -0.003102795220911503, + 0.007651312276721001, + -0.00837594922631979, + -0.008979813195765018, + -0.004418863449245691, + 0.02863025851547718, + -0.009235567413270473, + -0.010571172460913658, + -0.03535090759396553, + 0.006472001317888498, + 0.03680018335580826, + 0.004177317954599857, + -0.07337302714586258, + -0.005452536512166262, + 0.03466889634728432, + 0.0006886713672429323, + -0.015515752136707306, + -0.03350379690527916, + -0.016581395640969276, + 0.009981516748666763, + 0.018314840272068977, + -0.020062493160367012, + 0.028303461149334908, + 0.0070367916487157345, + -0.03680018335580826, + 0.016382474452257156, + 0.023543590679764748, + -0.0018400091212242842, + -0.006862736772745848, + 0.0013293888187035918, + 0.00020225004118401557, + 0.031287260353565216, + -0.0070510003715753555, + -0.017647037282586098, + 0.019209979102015495, + -0.0007117603090591729, + 0.0037794781383126974, + -0.013604700565338135, + -0.01232592947781086, + -0.03790844976902008, + 0.017590202391147614, + -0.019806738942861557, + -0.017504950985312462, + -0.004088514484465122, + -0.015601003542542458, + 0.0018577697919681668, + 0.035407744348049164, + -0.020716087892651558, + 0.0007495018071494997, + 0.04140375554561615, + -0.024879196658730507, + -0.025376496836543083, + -0.011331330053508282, + 0.018229588866233826, + -0.01010939385741949, + 0.025220202282071114, + -0.013746785931289196, + -0.004330059979110956, + -0.028530796989798546, + -0.009200045838952065, + 0.03276494890451431, + -0.025973256677389145, + -0.04191526398062706, + -0.01746232621371746, + -0.009981516748666763, + -0.009938891045749187, + 0.006599878426641226, + 0.017504950985312462, + -0.014407484792172909, + -0.01521737314760685, + 0.016098303720355034, + 0.004472145810723305, + 0.007026134990155697, + 0.003216463839635253, + -0.003854073118418455, + 0.02898547239601612, + 0.001820472301915288, + 0.002616151934489608, + -0.010301209054887295, + 0.0071824295446276665, + 0.007242816034704447, + 0.02823241800069809, + -0.038164205849170685, + 0.054759807884693146, + 0.004710139241069555, + -0.046774595975875854, + -0.0691104605793953, + 0.022818954661488533, + 0.019181562587618828, + -0.01490478403866291, + -0.02733727917075157, + -0.00043380525312386453, + 0.035720329731702805, + 0.011743378825485706, + -0.015984635800123215, + 0.004084962420165539, + 0.0004919715574942529, + -0.010969012044370174, + -0.024836571887135506, + -0.0019021716434508562, + 0.052713774144649506, + -0.022264821454882622, + 0.002070898190140724, + -0.02477973699569702, + 0.018016459420323372, + -0.003289282787591219, + 0.026086924597620964, + -0.006120339035987854, + -0.015075286850333214, + -0.015870966017246246, + -0.0006673585157841444, + 0.005694082472473383, + 0.017959626391530037, + -0.03310595452785492, + 0.03574874997138977, + 0.03148617967963219, + -0.02088659070432186, + -0.020105119794607162, + -0.017234988510608673, + -0.006621191278100014, + 0.00825517624616623, + 0.010088080540299416, + -0.0015513976104557514, + 0.011743378825485706, + 0.008780892938375473, + -0.010059664025902748, + 0.0067952461540699005, + -0.031173590570688248, + -0.0004826471849810332, + 0.026001673191785812, + 0.04847962409257889, + -0.009761284105479717, + 0.04592208191752434, + -0.002726268256083131, + 0.01710711233317852, + 0.021795937791466713, + 0.019764114171266556, + -0.011317121796309948, + 0.01746232621371746, + -0.0024492014199495316, + -0.03978398069739342, + 0.023955639451742172, + -0.02689681202173233, + -0.04865012690424919, + 0.00526072084903717, + -0.03461206331849098, + 0.0029482771642506123, + 0.011963611468672752, + 0.026768935844302177, + 0.024708693847060204, + -0.013093192130327225, + -0.012560371309518814, + 0.00735293235629797, + 0.004070753697305918, + 0.003635616507381201, + 0.008532242849469185, + 0.02890022099018097, + -0.0006176285678520799, + 0.02095763199031353, + -0.01986357383430004, + -0.0049019549041986465, + 0.0010798509465530515, + -0.002532676560804248, + -0.04265411198139191, + 0.020815547555685043, + 0.03276494890451431, + 0.006979957222938538, + -0.016027260571718216, + 0.008617494255304337, + 0.004465041216462851, + 0.0017139081610366702, + 0.027834577485919, + -0.02233586274087429, + -0.008645911701023579, + -0.016027260571718216, + -0.004365581553429365, + -2.775110203856457e-7, + -0.0020424812100827694, + -0.021128134801983833, + -0.008645911701023579, + 0.01506107859313488, + -0.028687091544270515, + 0.0254475399851799, + 0.0076442076824605465, + 0.03287861868739128, + 0.0050475928001105785, + -0.00038407527608796954, + -0.012055967003107071, + -0.017391283065080643, + -0.01632564142346382, + 0.02075871266424656, + 0.00640095816925168, + 0.013299216516315937, + -0.00273870094679296, + -0.007242816034704447, + 0.014045165851712227, + 0.019906198605895042, + 0.051577091217041016, + -0.02327362820506096, + -0.013590492308139801, + -0.04416021704673767, + 0.0018471133662387729, + 0.008546452037990093, + -0.015586795285344124, + -0.01124607864767313, + -0.006472001317888498, + -0.0022982354275882244, + 0.007445287890732288, + 0.010606693103909492, + -0.007978108711540699, + 0.016425101086497307, + 0.015586795285344124, + 0.0160840954631567, + -0.018527967855334282, + -0.017121320590376854, + -0.0030583934858441353, + -0.0423131063580513, + 0.013853350654244423, + -0.007317410781979561, + 0.012737978249788284, + 0.020190371200442314, + 0.016140930354595184, + -0.010009934194386005, + 0.021696478128433228, + -0.010208853520452976, + -0.040636494755744934, + -0.0010283448500558734, + -0.02095763199031353, + -0.018016459420323372, + 0.020502958446741104, + -0.014229877851903439, + 0.008354635909199715, + -0.013071879744529724, + 0.0016410892130807042, + 0.0035183958243578672, + 0.009150316007435322, + -0.02327362820506096, + -0.016453517600893974, + -0.026754727587103844, + -0.011899672448635101, + -0.03716960549354553, + 0.020417707040905952, + -0.007971004582941532, + 0.026243219152092934, + 0.010329626500606537, + 0.0018861870048567653, + -0.046149417757987976, + 0.023884596303105354, + -0.00640095816925168, + -0.009512634016573429, + 0.005040488205850124, + -0.002070898190140724, + 0.013498136773705482, + 0.031088339164853096, + -0.019550984725356102, + -0.026129551231861115, + -0.005424119532108307, + -0.03782320022583008, + -0.023884596303105354, + -0.0013897751923650503, + 0.008205446414649487, + -0.001459929975681007, + -0.00025397809804417193, + -0.017959626391530037, + -0.003733300371095538, + 0.011338434182107449, + -0.007764980662614107, + -0.039698731154203415, + 0.0056550088338553905, + 0.026768935844302177, + -0.019124727696180344, + 0.05615224689245224, + 0.013320528902113438, + 0.0038682816084474325, + -0.015515752136707306, + -0.007715250365436077, + 0.03532249107956886, + 0.021696478128433228, + 0.022321654483675957, + -0.0022715942468494177, + -0.02198064886033535, + 0.0009439815185032785, + -0.001301859738305211, + -0.016339849680662155, + 0.01581413298845291, + 0.004944580607116222, + -0.018925808370113373, + -0.014514048583805561, + 0.003550365101546049, + 0.02382776327431202, + 0.018002251163125038, + 0.02119917795062065, + 0.013142921961843967, + 0.015913592651486397, + 0.0011881912359967828, + -0.021568601951003075, + 0.01425119023770094, + -0.02838871255517006, + 0.021739104762673378, + -0.002630360424518585, + -0.03378796577453613, + -0.034072138369083405, + -0.01706448569893837, + -0.00299267889931798, + 0.018883181735873222, + -0.023898806422948837, + 0.03748219460248947, + -0.021966440603137016, + -0.03915880247950554, + 0.01651035249233246, + 0.011054263450205326, + -0.019252605736255646, + 0.024410314857959747, + 0.04009656980633736, + 0.003429592354223132, + -0.014933201484382153, + 0.007249920163303614, + 0.030463162809610367, + -0.013732577674090862, + 0.014577987603843212, + -0.003321252064779401, + 0.00473855622112751, + -0.004028127994388342, + 0.01840009167790413, + -0.02342992275953293, + 0.00685208011418581, + -0.039613477885723114, + 0.016481934115290642, + -0.0507245771586895, + 0.01628301478922367, + 0.007154012098908424, + 0.009157420136034489, + -0.013050566427409649, + -0.014847950078547001, + 0.016766106709837914, + -0.01635405793786049, + 0.0016766106709837914, + -0.018059086054563522, + -0.04003973677754402, + -0.006276633590459824, + 0.018101710826158524, + -0.013675743713974953, + 0.018584802746772766, + 0.003227120265364647, + 0.01919577084481716, + 0.005679873749613762, + -0.004184422083199024, + 0.021227596327662468, + -0.013540762476623058, + -0.011487624607980251, + 0.01702186092734337, + -0.011494728736579418, + 0.014918993227183819, + -0.03955664485692978, + -0.00457160547375679, + -0.025120742619037628, + 0.016183555126190186, + -0.0390167199075222, + -0.017760705202817917, + -0.0084327831864357, + 0.010777195915579796, + -0.01329211238771677, + -0.022193778306245804, + 0.0016410892130807042, + -0.029155975207686424, + 0.03177035227417946, + -0.005196782294660807, + 0.005349524784833193, + -0.02209431864321232, + -0.017163945361971855, + 0.010784300975501537, + 0.03515198826789856, + 0.010585380718111992, + -0.023841971531510353, + -0.0070723132230341434, + -0.029752735048532486, + 0.022719494998455048, + 0.004894850309938192, + -0.01577150635421276, + -0.031798768788576126, + -0.004983654245734215, + 0.029980070888996124, + -0.016723480075597763, + -0.036430761218070984, + -0.007935483008623123, + 0.008830622769892216, + -0.009562363848090172, + 0.011175036430358887, + 0.005374389700591564, + 0.007537643425166607, + 0.025177575647830963, + 0.0006527059595100582, + -0.02611534111201763, + 0.016268806532025337, + 0.002555765677243471, + -0.015586795285344124, + -0.0005257168668322265, + -0.015188955701887608, + 0.026200592517852783, + -0.046376753598451614, + -0.021128134801983833, + -0.005615935195237398, + 0.025816962122917175, + -0.005765125155448914, + 0.0015389651525765657, + -0.008020734414458275, + -0.008027839474380016, + 0.009320818819105625, + 0.00047287880443036556, + 0.007978108711540699, + -0.006219799164682627, + 0.029781151562929153, + 0.019877782091498375, + -0.024708693847060204, + 0.033986885100603104, + -0.012823229655623436, + -0.006947988178580999, + -0.00473855622112751, + 0.006241112016141415, + 0.006205590441823006, + 0.001992751145735383, + 0.01868426240980625, + 0.0028221760876476765, + 0.0185990110039711, + 0.04367712885141373, + -0.037851616740226746, + 0.019138935953378677, + -0.02324521169066429, + -0.0021153001580387354, + 0.03606133535504341, + 0.010315418243408203, + -0.003644496900960803, + 0.009214254096150398, + 0.014002540148794651, + -0.009647615253925323, + 0.023927222937345505, + -0.00305306538939476, + 0.01722078025341034, + -0.004131140187382698, + 0.007068760693073273, + 0.007317410781979561, + -0.0007734787650406361, + -0.02398405782878399, + -0.014933201484382153, + -0.021923815831542015, + 0.01089086476713419, + -0.028218209743499756, + -0.032821785658597946, + 0.020304039120674133, + -0.0062979464419186115, + -0.013498136773705482, + 0.025191785767674446, + -0.026371095329523087, + 0.008823518641293049, + -0.001093171420507133, + 0.009505529887974262, + 0.002106419764459133, + -0.009818118065595627, + -0.021696478128433228, + 0.07547589391469955, + 0.010976116172969341, + -0.01722078025341034, + 0.02327362820506096, + -0.0220232754945755, + 0.0011011637980118394, + 0.002385262865573168, + 0.029241226613521576, + -0.0018009355990216136, + 0.006155860610306263, + -0.01136685162782669, + -0.0009129002573899925, + 0.016922401264309883, + 0.023572009056806564, + 0.005651456769555807, + -0.000523052760399878, + 0.009136106818914413, + 0.0270104818046093, + -0.01886897347867489, + -0.017391283065080643, + -0.004326507914811373, + -0.011238974519073963, + 0.01599884405732155, + -0.027038898319005966, + -0.00996730849146843, + -0.029837986454367638, + -0.009647615253925323, + 0.01500424463301897, + -0.05359470471739769, + -0.0006553700659424067, + 0.025490164756774902, + -0.008049151860177517, + 0.010791405104100704, + 0.014634821563959122, + -0.033958468586206436, + 0.025120742619037628, + 0.008489617146551609, + -0.01541629247367382, + 0.007196637801826, + -6.432705413317308e-5, + -0.005296242423355579, + 0.0056550088338553905, + 0.00038895945181138813, + -0.002562869805842638, + -0.007495017722249031, + 0.014052269980311394, + 0.020545585080981255, + 0.012745082378387451, + -0.00160023954231292, + -0.00348109845072031, + -0.0024971552193164825, + -0.000658922188449651, + -0.013235277496278286, + -0.007828919216990471, + -0.013427093625068665, + -0.002546885283663869, + -0.0023675020784139633, + -0.022051692008972168, + -0.06427954882383347, + -0.007068760693073273, + 0.0028896669391542673, + 0.01722078025341034, + -2.0799450794584118e-5, + -0.025078115984797478, + -0.019096311181783676, + 0.014776906929910183, + -0.00839726161211729, + -0.02638530544936657, + 0.005480953957885504, + -0.01521737314760685, + -0.016169346868991852, + 0.02229323796927929, + -0.005271377507597208, + 0.00876668468117714, + 0.006091922055929899, + 0.013341842219233513, + 0.01879793033003807, + -0.024396104738116264, + -0.005044040270149708, + -0.024168768897652626, + -0.02055979333817959, + -0.0006469336804002523, + 0.007473704870790243, + 0.020431915298104286, + 0.005331763997673988, + -0.006898258347064257, + 0.0025166920386254787, + -0.006010222714394331, + 0.015515752136707306, + -0.034896235913038254, + -0.01632564142346382, + 0.00552357966080308, + 0.01919577084481716, + -0.022151151672005653, + -0.014876367524266243, + -0.0371980220079422, + -0.006773933302611113, + -0.009775492362678051, + -0.007914170622825623, + -0.013121609576046467, + -0.012702456675469875, + 0.006628295406699181, + 0.006908914539963007, + -0.022563200443983078, + 0.021327055990695953, + 0.01341288536787033, + -0.02929805964231491, + 0.017078693956136703, + -0.011331330053508282, + -0.022747911512851715, + -0.010741675272583961, + -0.015458918176591396, + -0.01452825777232647, + -0.0017778465989977121, + -0.006976405158638954, + -0.00048353520105592906, + -0.00621269503608346, + -0.009910473600029945, + 0.02580275386571884, + -0.00273870094679296, + -0.027109941467642784, + 0.008248072117567062, + -0.007615790702402592, + -0.008169924840331078, + 0.0037155395839363337, + -0.027862995862960815, + -0.018698470667004585, + 0.00839726161211729, + -0.008013630285859108, + -0.0028630257584154606, + 0.005797094199806452, + 0.0004142684629186988, + 0.012737978249788284, + 0.01817275397479534, + -0.000998151721432805, + -0.024239812046289444, + 0.02139809913933277, + -0.013540762476623058, + -0.017078693956136703, + 0.0071611166931688786, + -0.005793542135506868, + -0.015529961325228214, + 0.018272213637828827, + 0.013377363793551922, + -0.0037901345640420914, + 0.028445545583963394, + -0.015046870335936546, + 0.012340138666331768, + 0.029553813859820366, + -0.021412307396531105, + 0.02387038804590702, + -0.006198486313223839, + -0.008127299137413502, + 0.010720361955463886, + 0.003971294034272432, + -0.02001986838877201, + 0.000210575366509147, + 0.0017734065186232328, + 0.011096889153122902, + 0.015757298097014427, + -0.006908914539963007, + -0.01989199034869671, + -0.005704738665372133, + -0.022875789552927017, + 0.00821965467184782, + 0.002154373563826084, + 0.003676466178148985, + -0.02685418725013733, + -0.000559906242415309, + 0.012510641478002071, + -0.0030033353250473738, + 0.0013977675698697567, + -0.019636236131191254, + 0.020076701417565346, + 0.007686833385378122, + -0.03154301270842552, + 0.014045165851712227, + -0.008688537403941154, + 0.04299511760473251, + -0.01155866775661707, + -0.015558377839624882, + -0.02426822856068611, + 0.0009635182796046138, + 0.006582117639482021, + 0.04060807824134827, + 0.0038114474155008793, + -0.01052144169807434, + -0.0168655663728714, + -0.026356887072324753, + 0.0038292082026600838, + 0.023330463096499443, + -0.027351487427949905, + 0.0004924155655317008, + 0.0185990110039711, + 0.0057509164325892925, + 0.01050012931227684, + -0.013583388179540634, + -0.01930943876504898, + 0.011025846004486084, + -0.0019465733785182238, + 0.012453806586563587, + -0.005637248046696186, + 0.013789411634206772, + -0.018101710826158524, + 0.0021508214995265007, + -0.010663527995347977, + 0.0009892713278532028, + -0.0013897751923650503, + 0.011395269073545933, + 0.0006411614594981074, + -0.022477949038147926, + 0.006500418297946453, + -0.020929215475916862, + 0.00393222039565444, + 0.039698731154203415, + -0.0031489732209593058, + -0.0042945388704538345, + 0.0005274929571896791, + -0.016425101086497307, + 0.0034739940892904997, + -0.006827215198427439, + -0.01170075312256813, + -0.018812140449881554, + 0.010407773777842522, + 0.0195083599537611, + -0.008006526157259941, + 0.007502122316509485, + 0.012020445428788662, + 0.017362866550683975, + -0.0101662278175354, + -0.013228173367679119, + 0.012809021398425102, + -0.0023461892269551754, + -0.02772090956568718, + 0.01588517613708973, + -0.014592195861041546, + -0.01052144169807434, + -0.003985502291470766, + 0.015828341245651245, + -0.03742535784840584, + 0.00433716457337141, + -0.0047421082854270935, + -0.0014723625499755144, + 0.01155866775661707, + 0.0026712100952863693, + -0.0003514399577397853, + -0.004937476012855768, + 0.005448984447866678, + 0.0015363011043518782, + 0.006823663134127855, + -0.023486757650971413, + -0.004987206310033798, + 0.011778900399804115, + 0.007207294460386038, + -0.01382493320852518, + 0.015899384394288063, + -0.006756172515451908, + 0.0037723740097135305, + -0.006113234907388687, + -0.012219365686178207, + -0.017362866550683975, + -0.006788141559809446, + 0.01922418735921383, + -0.0012618982000276446, + -0.003205807413905859, + 0.02909914031624794, + 0.009526842273771763, + 0.011253182776272297, + -0.009825222194194794, + -0.02158281020820141, + -0.001527420710772276, + 0.006191382184624672, + -0.021014466881752014, + -0.003864729544147849, + 0.04183001443743706, + -0.0006669145077466965, + 0.0031187799759209156, + 0.0021934472024440765, + 0.025035491213202477, + 0.0016046797391027212, + 0.022818954661488533, + 0.009235567413270473, + 0.003049513092264533, + 0.017192363739013672, + -0.0050475928001105785, + 0.019181562587618828, + -0.017647037282586098, + -0.008837726898491383, + 0.010841134935617447, + -0.0027120597660541534, + -0.0005119523266330361, + 0.007210846524685621, + -0.006791694089770317, + -0.006290841847658157, + -0.010841134935617447, + 0.0013844469795003533, + -0.02803349867463112, + 0.05325369909405708, + -0.013341842219233513, + -0.016993442550301552, + -0.005036936141550541, + -0.023543590679764748, + -0.0017112439963966608, + 0.01868426240980625, + 0.03958506137132645, + -0.0008196565904654562, + 0.021525975316762924, + 0.0038256561383605003, + 0.004362029489129782, + -0.04234152287244797, + -0.008759580552577972, + 0.01136685162782669, + 0.009157420136034489, + -0.012745082378387451, + 0.0026854188181459904, + 0.0007011038833297789, + 0.028871802613139153, + -0.003807895351201296, + 0.0031667337752878666, + 0.03668651357293129, + -0.028715509921312332, + 0.026982063427567482, + -0.054560888558626175, + -0.005598174408078194, + 0.008340427652001381, + 0.007573164999485016, + -0.01592780090868473, + 0.03239552676677704, + -0.0034704420249909163, + 0.019138935953378677, + 0.02115655317902565, + 0.009782596491277218, + 0.02304629236459732, + 0.012070175260305405, + 0.011260287836194038, + 0.013540762476623058, + -0.0033034912776201963, + 0.009263983927667141, + 0.00547740189358592, + 0.02689681202173233, + -0.02571750245988369, + 0.002697851276025176, + 0.020772920921444893, + 0.018655845895409584, + -0.004305195063352585, + -0.0054205674678087234, + 0.004564501345157623, + 0.0019696622621268034, + 0.0026001674123108387, + -0.007210846524685621, + -0.018613219261169434, + -0.0185990110039711, + 0.007473704870790243, + -0.02780616097152233, + 0.003807895351201296, + -0.014329337514936924, + -0.0016357610002160072, + 0.00484512047842145, + -0.011395269073545933, + -0.02244953252375126, + -0.02300366573035717, + -0.0016206643776968122, + 0.01820117048919201, + -0.020588209852576256, + -0.012063071131706238, + 0.00809888169169426, + -0.017718080431222916, + -0.008439887315034866, + -0.014819532632827759, + 0.02811875008046627, + -0.021952232345938683, + -0.00645068846642971, + -0.010883760638535023, + 0.009107690304517746, + 0.03012215718626976, + -0.03455523028969765, + 0.035407744348049164, + -0.0011988476617261767, + -0.0007912394357845187, + -0.031088339164853096, + -0.026925230398774147, + -0.007871544919908047, + 0.000998151721432805, + -0.02591642178595066, + 0.007054552435874939, + -0.032026104629039764, + 0.004056544974446297, + -0.016780314967036247, + 0.02921280823647976, + 0.01095480378717184, + 0.002154373563826084, + -0.005601726472377777, + 0.04151742532849312, + -0.006440031807869673, + -0.013654430396854877, + 0.028445545583963394, + 0.018215380609035492, + 0.012453806586563587, + -0.00376526964828372, + 0.02496444806456566, + 0.03114517405629158, + -0.021369680762290955, + -0.006095474120229483, + 0.002859473694115877, + 0.002918083919212222, + 0.0014324008952826262, + -0.0007046560058370233, + -0.011920985765755177, + -0.012006237171590328, + -0.0061523085460066795, + -0.029781151562929153, + -0.0073884534649550915, + -0.019337857142090797, + -0.017476534470915794, + 3.5354903957340866e-5, + -0.028971264138817787, + 0.0015309728914871812, + -0.016112511977553368, + 0.0053850458934903145, + 0.004806046839803457, + 0.01784595660865307, + -0.001527420710772276, + 0.0067597245797514915, + -0.014116209000349045, + 0.02171068638563156, + 0.013654430396854877, + 0.02024720422923565, + -0.007949692197144032, + -0.0024243362713605165, + -0.01118924468755722, + 0.005601726472377777, + 0.01597042754292488, + 0.017647037282586098, + -0.0009750627214089036, + 0.015700463205575943, + -0.02504969947040081, + -0.007331619504839182, + -0.006692233961075544, + 0.02186698094010353, + 0.008347531780600548, + 0.01670927181839943, + -0.005267825443297625, + -0.03358904644846916, + 0.0014403932727873325, + -0.012929793447256088, + 0.007317410781979561, + 0.014833741821348667, + 0.017718080431222916, + 0.0015957994619384408, + -0.010294104926288128, + -0.01341288536787033, + 0.020261412486433983, + 0.014990035444498062, + -0.004326507914811373, + 0.018613219261169434, + 0.015828341245651245, + 0.017078693956136703, + -0.0024154558777809143, + -0.003310595639050007, + -0.005214543081820011, + 0.0022715942468494177, + -0.0066851298324763775, + -0.0011988476617261767, + -0.004017471801489592, + 0.006070609204471111, + 0.0061878301203250885, + 0.015259998850524426, + -0.018854765221476555, + -0.007317410781979561, + -0.03577716648578644, + -0.017519161105155945, + 0.023955639451742172, + -0.005971149075776339, + 0.003410055534914136, + 0.005871689412742853, + -0.0018115920247510076, + -0.021881189197301865, + -0.004884194117039442, + 0.013228173367679119, + -0.006741963792592287, + -0.0050831139087677, + -0.011146618984639645, + -0.022833162918686867, + -0.014222772791981697, + -0.002086882945150137, + 0.06518889218568802, + 0.0018453373340889812, + 0.026214802637696266, + 0.007196637801826, + 0.007150460034608841, + -0.014343545772135258, + -0.0069053624756634235, + 0.024595025926828384, + 0.015146329998970032, + 0.0052891382947564125, + -0.02311733551323414, + -0.014180147089064121, + 0.005765125155448914, + 0.01470586471259594, + -0.03788003325462341, + -0.00927819311618805, + 0.006237559951841831, + -0.001974990591406822, + 0.011082679964601994, + 0.019479941576719284, + -0.0002986018662340939, + 0.004695930518209934, + 0.0018471133662387729, + 0.0009972635889425874, + -0.010009934194386005, + 0.006493314169347286, + -0.0034970829728990793, + 0.006024431437253952, + 0.029155975207686424, + 0.01588517613708973, + 0.01631143130362034, + 0.0012370331678539515, + -0.007850231602787971, + -0.011686544865369797, + -0.00015540617459919304, + 0.011175036430358887, + 0.0026818665210157633, + 0.007701042108237743, + -0.002360397716984153, + -0.012333034537732601, + -0.014805324375629425, + -0.0024047994520515203, + 0.01922418735921383, + 0.02135547250509262, + -0.018513759598135948, + 0.011544458568096161, + -0.018229588866233826, + 0.0008258728194050491, + -0.010514337569475174, + -0.0005869913147762418, + 0.005150604527443647, + -0.008340427652001381, + 0.010663527995347977, + 0.0270104818046093, + 0.01112530566751957, + -0.01089086476713419, + 0.013157131150364876, + 0.026086924597620964, + 0.00873116310685873, + 0.007502122316509485, + -0.024055099114775658, + -0.019764114171266556, + 0.00806336011737585, + -0.013945706188678741, + -0.014009644277393818, + 0.0006256208871491253, + -0.006432927679270506, + -0.0029678139835596085, + -0.0040991706773638725, + -0.02972431667149067, + -0.017092904075980186, + -0.01993461698293686, + -0.0062979464419186115, + -0.021085510030388832, + -0.006933779455721378, + 0.009548155590891838, + 0.010194645263254642, + 0.043904464691877365, + 0.036430761218070984, + 0.0005425895797088742, + 0.006599878426641226, + 0.0028861146420240402, + -0.008816414512693882, + -0.006791694089770317, + 0.0065394919365644455, + -0.005360180977731943, + 0.013043462298810482, + -0.042455192655324936, + 0.01191388163715601, + -0.02752199023962021, + -0.008240967057645321, + 0.003273298032581806, + 0.02048875018954277, + 0.01118924468755722, + -0.010961907915771008, + -0.008887456730008125, + 0.013938602060079575, + 0.015515752136707306, + -0.0005652344552800059, + -0.007963900454342365, + 0.007914170622825623, + -0.0033425649162381887, + -0.008638807572424412, + -0.007495017722249031, + -0.00753053929656744, + -0.0006011998630128801, + 0.01766124553978443, + -0.000763710355386138, + -0.0035059633664786816, + 0.0007015478913672268, + -0.0044543850235641, + -0.018002251163125038, + 0.00547384936362505, + -0.001793831237591803, + 0.0053637330420315266, + 0.012027549557387829, + 0.018940016627311707, + 0.00570118660107255, + -0.019835155457258224, + -0.01655297726392746, + 0.012759290635585785, + 0.005814854986965656, + -0.0012157203163951635, + -0.021440723910927773, + -0.0101449154317379, + 0.00876668468117714, + -0.01631143130362034, + -0.012894272804260254, + -0.008773788809776306, + -0.013562074862420559, + 0.01293689850717783, + 0.011594188399612904, + 0.01989199034869671, + -0.004770525731146336, + -0.0017378850607201457, + 0.005235855933278799, + -0.025106534361839294, + 0.019536776468157768, + 0.005218095146119595, + -0.014577987603843212, + 0.014208564534783363, + 0.004319403786212206, + 0.01541629247367382, + 0.0178175400942564, + 0.010080976411700249, + -0.00305306538939476, + -0.0070367916487157345, + -0.02442452311515808, + 0.016211971640586853, + -0.0038292082026600838, + 0.013775203377008438, + -0.021327055990695953, + 0.019593611359596252, + -0.007907066494226456, + 0.0009040199220180511, + 0.0065039703622460365, + -0.027109941467642784, + 0.032026104629039764, + -0.033873219043016434, + -0.00014785787789151073, + 0.02838871255517006, + -0.013249486684799194, + -0.022861581295728683, + 0.0034953069407492876, + -0.006809454411268234, + -0.008603285998106003, + 0.01442879717797041, + 0.013235277496278286, + 0.016808731481432915, + 0.0035237239208072424, + 0.008248072117567062, + 0.020261412486433983, + 0.03452681377530098, + -0.030775751918554306, + 0.0006922234897501767, + -0.007573164999485016, + 0.012404076755046844, + 0.00792127475142479, + -0.019238395616412163, + 0.009200045838952065, + -0.004528979770839214, + -0.013398676179349422, + 0.00553423585370183, + 0.003946428652852774, + -0.02480815351009369, + -0.022108526900410652, + 0.02371409349143505, + -0.004926819819957018, + 0.003960637375712395, + -0.00012787707964889705, + -0.01683714985847473, + 0.027550406754016876, + 0.010173331946134567, + -0.010421982035040855, + -0.005964044947177172, + 0.00031702860724180937, + 0.03054841421544552, + 0.01659560389816761, + 0.03125884383916855, + 0.0018009355990216136, + 0.00753053929656744, + -0.003957085311412811, + 0.008773788809776306, + 0.009803909808397293, + -0.004898402839899063, + 0.0013347170315682888, + -0.007107834331691265, + -0.014379067346453667, + 0.00013509237032849342, + 0.0013453734572976828, + -0.026570016518235207, + -0.00884483102709055, + 0.010883760638535023, + -0.002165029989555478, + -0.010997429490089417, + -0.0004173765773884952, + 0.002447425154969096, + 0.015515752136707306, + 0.003410055534914136, + 0.013796516694128513, + -0.008617494255304337, + -0.007239263504743576, + 0.011707857251167297, + 0.0008134403033182025, + 0.0027333726175129414, + 0.009342131204903126, + 0.008518034592270851, + 0.017675453796982765, + 0.01295821089297533, + -0.007828919216990471, + 0.014862158335745335, + -0.005903658457100391, + 0.00188263482414186, + 0.016581395640969276, + -0.007907066494226456, + 0.03608975559473038, + 0.00993178691715002, + -0.006237559951841831, + 0.013569178991019726, + -0.02217957004904747, + -0.03316279128193855, + 0.003655153326690197, + 0.0053992546163499355, + -0.023572009056806564, + -0.0025717501994222403, + -0.013832037337124348, + 0.0013205084251239896, + 0.00014252966502681375, + -0.005775781348347664, + -2.6238667487632483e-5, + -0.010919282212853432, + -0.009874952025711536, + 0.011608397588133812, + -0.002751133404672146, + 0.0037368524353951216, + 0.0029163078870624304, + -0.006592773832380772, + 0.00908637698739767, + -0.00037208679714240134, + -0.016368266195058823, + 0.02080133929848671, + 0.006368989124894142, + -0.01675189845263958, + -0.0041489009745419025, + 0.001422632485628128, + 0.010926386341452599, + -0.04254044219851494, + 0.018101710826158524, + -0.012617205269634724, + 0.00821965467184782, + 0.014265398494899273, + -0.01521737314760685, + 0.015430500730872154, + 0.03358904644846916, + 0.01844271644949913, + 0.002944725099951029, + -0.001008808147162199, + -0.01919577084481716, + 0.014165938831865788, + 0.03003690578043461, + -0.0024136798456311226, + -0.000381855177693069, + 0.011153723113238811, + -0.014791116118431091, + 0.0024261123035103083, + -0.03310595452785492, + 0.020105119794607162, + 0.0009723986149765551, + -0.007107834331691265, + 0.02119917795062065, + 0.001709467964246869, + 0.008425679057836533, + 0.011160827241837978, + 0.0006806790479458869, + 0.014059375040233135, + -0.0019536777399480343, + -0.008148611523211002, + -0.008383053354918957, + 0.038590461015701294, + -0.02689681202173233, + -0.010876656509935856, + 0.002300011459738016, + -0.010798509232699871, + -0.014535361900925636, + -0.011210557073354721, + 0.011764691211283207, + 0.035492993891239166, + 0.011665231548249722, + -0.0028541453648358583, + 0.015757298097014427, + 0.00809888169169426, + -0.005875241477042437, + -0.007551852148026228, + -0.010407773777842522, + 0.0037688217125833035, + 0.007075865287333727, + -0.0038007909897714853, + 0.028971264138817787, + -0.010414877906441689, + 0.016055678948760033, + -0.005683425813913345, + 0.005381493829190731, + 0.021923815831542015, + -0.011196348816156387, + 0.012297512963414192, + -0.031713515520095825, + 0.021881189197301865, + -0.005221647676080465, + 0.018627427518367767, + -0.0193804819136858, + 0.01935206539928913, + 0.014947409741580486, + -0.03716960549354553, + -0.0047776298597455025, + 0.01922418735921383, + 0.012354346923530102, + -0.01773228868842125, + 0.006205590441823006, + 0.002285802736878395, + 0.004674617666751146, + -0.003598318900913, + -0.017163945361971855, + -0.002278698608279228, + -0.006415166892111301, + 0.010130706243216991, + 0.0018755305791273713, + 0.007622894831001759, + -0.006535939872264862, + 0.013611804693937302, + 0.00640095816925168, + -0.010905073024332523, + 0.009079272858798504, + 0.02021878771483898, + 0.01527420710772276, + -0.007416870910674334, + -0.008645911701023579, + 0.014457214623689651, + 0.013888872228562832, + -0.0034953069407492876, + 0.002168582286685705, + -0.022108526900410652, + 0.022776329889893532, + 0.006269528996199369, + -0.022122735157608986, + -0.001648193458095193, + -0.009306609630584717, + -0.004102723207324743, + 0.0034633376635611057, + -0.029752735048532486, + 0.003289282787591219, + 0.00017616400145925581, + -0.01364732626825571, + -0.010372252203524113, + 0.002641016850247979, + -0.009590781293809414, + 0.00014164163440000266, + -0.015331041067838669, + -0.00020913231128361076, + -0.02225061133503914, + -0.007495017722249031, + 0.022279029712080956, + 0.0029553815256804228, + 0.007978108711540699, + -0.009981516748666763, + -0.019678862765431404, + 0.015714673325419426, + 0.020474541932344437, + 0.009207149967551231, + 0.00616296473890543, + -0.01232592947781086, + -0.009747074916958809, + -0.01085534319281578, + -0.004710139241069555, + 0.0010363372275605798, + -0.03830628842115402, + 0.030093740671873093, + -0.009107690304517746, + 0.018968433141708374, + -0.017490742728114128, + 0.01581413298845291, + -0.01808750256896019, + 0.0026072715409100056, + 0.023458341136574745, + 0.006930227391421795, + 0.013242382556200027, + -0.021184969693422318, + 0.00666381698101759, + 0.009569467976689339, + 0.019948825240135193, + -0.004219943657517433, + 0.009491321630775928, + 0.02843133732676506, + -0.016467725858092308, + -0.007914170622825623, + 0.013064775615930557, + -0.018215380609035492, + -0.0013906632084399462, + 0.0052394079975783825, + 0.018314840272068977, + 0.01124607864767313, + 0.005122187547385693, + -0.0031827185302972794, + 0.019536776468157768, + 0.007075865287333727, + 0.0024971552193164825, + -0.023841971531510353, + 0.025277037173509598, + 0.010940594598650932, + -0.002902099397033453, + 0.012880063615739346, + 0.0010887312237173319, + 0.005559100769460201, + -0.012297512963414192, + 0.005793542135506868, + -0.03162826597690582, + -0.015160538256168365, + 0.0059320759028196335, + -0.007271233014762402, + -0.004475697875022888, + 0.010748779401183128, + -0.02500707283616066, + -0.013434197753667831, + -0.028530796989798546, + 0.0022467293310910463, + 0.0011473415652289987, + 0.006859184708446264, + 0.0006140763871371746, + 0.024211393669247627, + -0.008887456730008125, + -0.016410892829298973, + -0.016780314967036247, + 0.01651035249233246, + 0.004766973666846752, + -0.003708435455337167, + -0.0030939150601625443, + -0.007129147183150053, + -0.019437316805124283, + -0.030605249106884003, + 0.004550292622298002, + -0.027266236022114754, + 0.02135547250509262, + -0.0012725546257570386, + 0.009789700619876385, + 6.0608406784012914e-5, + 0.008503826335072517, + -0.016879774630069733, + 0.02320258691906929, + 0.004010367207229137, + -0.01757599413394928, + 0.0018542177276685834, + -0.019011059775948524, + 0.04225626960396767, + -0.010450399480760098, + 0.004326507914811373, + 0.0016881551127880812, + 0.023074708878993988, + -0.013086088001728058, + 0.009342131204903126, + 0.004358477424830198, + 0.0009288848959840834, + -0.0193804819136858, + -0.007928378880023956, + -0.008851936087012291, + -0.013817829079926014, + 0.021256012842059135, + -0.0017813987797126174, + 0.019849365577101707, + 0.011139514856040478, + -0.024154560640454292, + 0.00707941735163331, + 0.012105696834623814, + 0.03142934665083885, + 0.004344268701970577, + 0.0036285121459513903, + 0.01962202787399292, + 0.008752475492656231, + 0.009938891045749187, + 0.025546999648213387, + -0.016183555126190186, + -0.0024651859421283007, + 0.011359747499227524, + 0.00030059993150644004, + -0.013817829079926014, + -0.02080133929848671, + 0.009150316007435322, + -0.0031809424981474876, + 0.00010811829997692257, + 0.01433644164353609, + 0.013064775615930557, + 0.012233573943376541, + 0.009263983927667141, + -0.014577987603843212, + -0.011608397588133812, + 0.00981101393699646, + -0.009526842273771763, + 0.01919577084481716, + -0.012404076755046844, + -0.0037368524353951216, + 0.010009934194386005, + -0.005505818873643875, + -0.010137811303138733, + -0.03086100146174431, + -0.0034029511734843254, + -0.0033514450769871473, + -0.00040871824603527784, + 0.0019412451656535268, + 0.0023817105684429407, + -0.000910236150957644, + -0.002944725099951029, + -0.020858172327280045, + -0.01722078025341034, + 0.02870129980146885, + 0.011537354439496994, + -0.008105985820293427, + 0.009207149967551231, + 0.014130417257547379, + 0.02142651565372944, + -0.005466745235025883, + 0.025419121608138084, + 0.002259161788970232, + -0.0018382330890744925, + 0.0004435736336745322, + 0.011040054261684418, + 0.016609812155365944, + -0.009313713759183884, + -0.023529382422566414, + 0.010237270966172218, + 0.014890575781464577, + 0.008688537403941154, + -0.009974412620067596, + -0.005853928625583649, + 0.013427093625068665, + 0.022989457473158836, + 0.02249215729534626, + 0.017448117956519127, + -0.01568625494837761, + 0.01864163763821125, + -0.006159412674605846, + -0.0035326043143868446, + 0.019209979102015495, + 0.0008849271689541638, + -0.006571460980921984, + 0.0012636742321774364, + -0.006425823550671339, + -0.009626302868127823, + 0.005740260239690542, + -0.0026197039987891912, + -0.007374245207756758, + 0.003092138795182109, + 0.0003860733413603157, + 0.0009484217152930796, + 0.007395558059215546, + -0.00404944084584713, + 0.01911051943898201, + -0.01547312643378973, + -0.0005097322282381356, + -0.027635658159852028, + -0.0017227884382009506, + 0.01722078025341034, + 0.0018346809083595872, + -0.0035947668366134167, + -0.016027260571718216, + 0.004539636429399252, + -0.004695930518209934, + 0.005321107339113951, + 0.026300054043531418, + 0.0044863540679216385, + 0.013519449159502983, + 0.01734865829348564, + -0.01425119023770094, + 0.009739970788359642, + -0.012233573943376541, + -0.009072168730199337, + -0.004322955850511789, + 0.0006256208871491253, + 0.0044863540679216385, + -0.00046000228030607104, + 0.005424119532108307, + -0.0007876873132772744, + -0.042227853089571, + -0.010727466084063053, + -0.0016695063095539808, + 0.017561785876750946, + -0.000998151721432805, + 0.007523435167968273, + -0.004113379400223494, + -0.015544169582426548, + -0.003216463839635253, + -0.00621269503608346, + 0.009292401373386383, + 0.014187252148985863, + -0.014329337514936924, + 0.01331342477351427, + -0.023728303611278534, + 0.025731710717082024, + 0.003665809752419591, + 0.011196348816156387, + -0.018115919083356857, + 0.033248040825128555, + 0.007395558059215546, + 0.003482874482870102, + 0.004614231176674366, + -0.007249920163303614, + 0.010706153698265553, + -0.005171917378902435, + -0.003601871198043227, + 0.0008400813676416874, + 0.0032626416068524122, + 0.030463162809610367, + -0.012638518586754799, + 0.009853639639914036, + -0.0015878070844337344, + 0.0002859473752323538, + -0.02649897336959839, + -0.003633840475231409, + -0.006916018668562174, + -0.014407484792172909, + 0.01683714985847473, + -0.0006962196785025299, + -0.016410892829298973, + -0.00986784789711237, + -0.004290986340492964, + -0.0002584182657301426, + 0.02831766940653324, + 0.0038789380341768265, + 0.004319403786212206, + -0.00553423585370183, + -0.008560660295188427, + 0.013725473545491695, + -0.0014634821563959122, + -0.010592484846711159, + 0.015345250256359577, + -0.0024296646006405354, + 0.006617638748139143, + -0.008716954849660397, + -0.009519738145172596, + 0.0009297729702666402, + -0.016524560749530792, + 0.030406327918171883, + -0.0034171598963439465, + -0.006894705817103386, + -0.03998290002346039, + 0.0025770782958716154, + 0.014890575781464577, + 0.0006478217546828091, + -0.023529382422566414, + -0.000821432622615248, + 0.03302070498466492, + -0.02745094709098339, + 0.00815571565181017, + -0.008539346978068352, + -0.003466889727860689, + -0.01293689850717783, + 0.007281889207661152, + -0.001730780815705657, + 0.020716087892651558, + 0.005893002264201641, + 0.0007690385682508349, + 0.03441314399242401, + -0.009157420136034489, + -0.0011180364526808262, + 0.0069053624756634235, + 0.010478815995156765, + 0.020630836486816406, + -1.2529622836154886e-5, + 0.008091777563095093, + 0.008205446414649487, + -0.019238395616412163, + 0.002300011459738016, + 0.005843272432684898, + -0.010983220301568508, + -0.00021856768580619246, + -0.0320829376578331, + -0.003614303655922413, + 0.0009315490024164319, + -0.0028843386098742485, + -0.01106847170740366, + -0.007210846524685621, + 0.009150316007435322, + -0.013377363793551922, + -0.00815571565181017, + -0.004131140187382698, + 0.0033390126191079617, + 0.004166661761701107, + -0.006457792595028877, + -0.013775203377008438, + -0.007544748019427061, + 0.005956940818578005, + 0.010770091786980629, + -0.019281022250652313, + 0.028204001486301422, + -0.005377941764891148, + 0.009612093679606915, + 0.020474541932344437, + 0.0160840954631567, + -0.03194085508584976, + -0.017178155481815338, + 0.0009617422474548221, + -0.003085034666582942, + -0.02139809913933277, + 0.00815571565181017, + -0.0014768026303499937, + 0.004095618613064289, + 0.0053992546163499355, + 0.0041346922516822815, + -0.016069887205958366, + 0.0005221647443249822, + 0.007150460034608841, + -0.013775203377008438, + 0.00011400153016438708, + 0.04055124521255493, + 0.007857336662709713, + -0.015245789662003517, + 0.01989199034869671, + -0.013697056099772453, + -0.002339084865525365, + 0.014918993227183819, + 0.016680855304002762, + -0.006873392965644598, + 0.02929805964231491, + -0.009505529887974262, + -0.01380362082272768, + -0.00996730849146843, + 0.005743812303990126, + 0.021256012842059135, + -0.0036320644430816174, + -0.010635110549628735, + 0.011075575836002827, + -0.0015886951005086303, + 0.02053137682378292, + -0.007509226445108652, + -0.00333723658695817, + 0.028132958337664604, + -0.009853639639914036, + 0.003418935928493738, + 0.0025344528257846832, + -0.010940594598650932, + -0.02595904842019081, + 0.01370416022837162, + -0.004596470855176449, + 0.002823952119797468, + 0.004834464285522699, + -0.007040343713015318, + -0.008525138720870018, + -0.003186270594596863, + 0.01067773625254631, + 0.006059953011572361, + -0.005541339982300997, + -0.0009297729702666402, + 0.005608831066638231, + -0.013618908822536469, + -0.01521737314760685, + -0.009846535511314869, + -0.017945416271686554, + 0.013341842219233513, + -0.02654159814119339, + -0.018030667677521706, + 0.001746765454299748, + 0.005672769621014595, + -0.008077569305896759, + -0.0006673585157841444, + 0.002065570093691349, + -0.001286763115786016, + 0.005314003210514784, + -0.01521737314760685, + 0.0035450367722660303, + -0.0007139803492464125, + 0.03125884383916855, + 0.022989457473158836, + 0.014649029821157455, + 0.024254020303487778, + -0.004255465231835842, + -0.014393275603652, + 0.01034383475780487, + 0.006166517268866301, + -0.006489762105047703, + 0.003935772459954023, + -0.006482657510787249, + -0.006024431437253952, + 0.0004768749640788883, + -0.0009528618538752198, + -0.002552213380113244, + 0.017135528847575188, + -0.014308024197816849, + -0.02217957004904747, + -0.0017512055346742272, + -0.0025646458379924297, + -0.003299939213320613, + 0.019295230507850647, + -0.0027848787140101194, + 0.0024385449942201376, + 0.002374606439843774, + -0.0028896669391542673, + 0.0046462006866931915, + 0.022548992186784744, + -0.008688537403941154, + -0.0058610327541828156, + -0.017647037282586098, + -0.005154156591743231, + 0.011175036430358887, + -0.016055678948760033, + 0.0045218756422400475, + 0.013192652724683285, + -0.02175331301987171, + -0.04310878366231918, + -0.009313713759183884, + 0.004820255562663078, + 0.011622605845332146, + 0.0028790105134248734, + -0.04046599194407463, + -0.005789990071207285, + -0.007928378880023956, + -0.013775203377008438, + -0.01260299701243639, + 0.020971842110157013, + -0.007573164999485016, + 0.016112511977553368, + -0.003743956796824932, + 0.031912434846162796, + -0.009171628393232822, + -0.010933490470051765, + -0.022932622581720352, + 0.014066479168832302, + 0.020588209852576256, + 0.0071326992474496365, + -0.0018222484504804015, + 0.01820117048919201, + -0.022080108523368835, + -0.0047421082854270935, + -0.006983509287238121, + 0.0043158517219126225, + 0.0040991706773638725, + -0.0002799531212076545, + -0.011466311290860176, + -0.0023870388977229595, + -0.007122043054550886, + -0.007217950653284788, + -0.018186962231993675, + 0.001144677517004311, + -0.016879774630069733, + 0.008596181869506836, + 0.03779478371143341, + 0.012432494200766087, + 0.0011704305652529001, + 0.020829755812883377, + -0.004092066548764706, + -0.021810146048665047, + -0.013249486684799194, + -0.009235567413270473, + -0.019494149833917618, + -0.023103125393390656, + -0.013057670556008816, + 0.012155426666140556, + -0.0017378850607201457, + -0.01425119023770094, + 0.0026587776374071836, + -0.016183555126190186, + -0.0024190081749111414, + 0.00020480314560700208, + 0.00666381698101759, + 0.019479941576719284, + -0.0033354605548083782, + 0.0018417851533740759, + 0.010429086163640022, + -0.015160538256168365, + -0.0018577697919681668, + 0.027706701308488846, + 0.016183555126190186, + -0.009917577728629112, + 0.027394112199544907, + -0.004422415513545275, + -0.015515752136707306, + 0.010549859143793583, + 0.007701042108237743, + -0.018584802746772766, + 0.027834577485919, + 0.0029518292285501957, + 0.007136251777410507, + -0.004081410355865955, + -0.0043158517219126225, + 0.0035574694629758596, + -0.008922978304326534, + -0.008333323523402214, + 0.028743926435709, + -0.013817829079926014, + 0.005782885942608118, + -0.034384727478027344, + -0.0005918755196034908, + -0.02406930923461914, + 0.011054263450205326, + -0.032026104629039764, + -0.013462615199387074, + 0.038078952580690384, + -0.0002806191623676568, + 0.016723480075597763, + 0.01071325782686472, + -0.013285008259117603, + -0.011572876013815403, + -0.0018897390691563487, + 0.0026712100952863693, + -0.0044259680435061455, + -0.015743089839816093, + -0.004095618613064289, + 0.028260834515094757, + 0.02414035052061081, + 0.014400380663573742, + -0.020360874012112617, + -0.0013764547184109688, + -0.004095618613064289, + 0.005345972254872322, + 0.011146618984639645, + 0.002447425154969096, + 0.0059391800314188, + -0.01710711233317852, + -0.012198052369058132, + -0.0039038031827658415, + -0.009576572105288506, + 0.006120339035987854, + -0.014677447266876698, + 0.02547595649957657, + 0.005996014457195997, + -0.011494728736579418, + -0.0032697459682822227, + -0.011103993281722069, + 0.002024720422923565, + -0.011594188399612904, + -0.005278481636196375, + 0.004422415513545275, + -0.0027919828426092863, + -0.009050855413079262, + -0.008184133097529411, + 0.00333723658695817, + -0.0034011751413345337, + 0.0032519851811230183, + 0.00254155695438385, + 0.013306320644915104, + -0.021256012842059135, + -0.006791694089770317, + -0.007743667811155319, + 0.00507245771586895, + -0.0010105841793119907, + -0.011075575836002827, + 0.027507781982421875, + -0.011175036430358887, + 0.006361884996294975, + -0.022577408701181412, + -0.01577150635421276, + -0.0114236855879426, + -0.009398965165019035, + -0.004198630806058645, + 0.008937187492847443, + 0.027791952714323997, + -0.0010292328661307693, + 0.01224778313189745, + 0.025944838300347328, + 0.013590492308139801, + -0.028800761327147484, + -0.004479249939322472, + -0.010628006421029568, + 0.02291841432452202, + -0.03316279128193855, + 0.011061367578804493, + -0.0018524415791034698, + -0.00542767159640789, + 0.008560660295188427, + -0.016481934115290642, + 0.0007912394357845187, + 0.006763276644051075, + 0.008851936087012291, + -0.0005443656118586659, + -0.008034943602979183, + -0.007296097930520773, + -0.01899685151875019, + 0.0006091921823099256, + -0.027536198496818542, + -0.019678862765431404, + 0.013050566427409649, + -0.010279896669089794, + -0.015430500730872154, + -0.009853639639914036, + 0.012297512963414192, + 0.008319114334881306, + -0.017902791500091553, + -0.00012454694660846144, + 0.015458918176591396, + -0.024310853332281113, + 0.030207408592104912, + -0.007580269128084183, + -0.025646459311246872, + -0.011217662133276463, + 0.0006700226222164929, + -0.0029518292285501957, + -0.0014581539435312152, + 0.009349235333502293, + -0.005903658457100391, + 0.0016313208034262061, + 0.021682269871234894, + 0.019281022250652313, + -0.017519161105155945, + 0.006035087630152702, + -0.019536776468157768, + 0.014542466029524803, + 0.00707941735163331, + -0.005683425813913345, + 0.008177028968930244, + 0.023884596303105354, + 0.006052848417311907, + -0.005264273378998041, + -0.00996730849146843, + -0.0005323771620169282, + 0.009157420136034489, + 0.0006629183189943433, + 0.0010265688179060817, + -0.022790538147091866, + -0.010386460460722446, + 0.015487335622310638, + 0.008184133097529411, + -0.007100730203092098, + 0.0030139917507767677, + 0.0052891382947564125, + 0.0023142199497669935, + 0.003408279502764344, + 0.0016313208034262061, + -0.00507245771586895, + -0.008972708135843277, + -0.024637650698423386, + 0.00965471938252449, + -0.017519161105155945, + 0.0024296646006405354, + 0.00827648863196373, + -0.011267391964793205, + 0.021213386207818985, + -0.01425119023770094, + 0.0023461892269551754, + 0.013910184614360332, + 0.02331625483930111, + -0.011906777508556843, + 0.01714973710477352, + 0.007558956276625395, + 0.02780616097152233, + 0.016013052314519882, + 0.014308024197816849, + -0.011238974519073963, + -0.008532242849469185, + -0.018854765221476555, + 0.006088369991630316, + 0.009697345085442066, + -0.0046462006866931915, + -0.014592195861041546, + 0.021085510030388832, + 0.005885897669941187, + 0.012382764369249344, + -0.005857480689883232, + -0.005221647676080465, + -0.008084673434495926, + -0.01527420710772276, + 0.009207149967551231, + 0.002191671170294285, + -0.017675453796982765, + -0.019082102924585342, + 0.0037119875196367502, + 0.0014572659274563193, + -0.016652436926960945, + 0.0034846505150198936, + -0.0005443656118586659, + -0.01695081777870655, + 0.014350649900734425, + 0.0005368173588067293, + -0.012858751229941845, + -0.006773933302611113, + 0.030150573700666428, + 0.002433216664940119, + 0.006610534619539976, + 0.023841971531510353, + -0.002301787491887808, + -0.005125739611685276, + -0.0032626416068524122, + 0.004717243369668722, + 0.013363154605031013, + -0.00438334234058857, + -0.002022944390773773, + 0.0037190918810665607, + 0.0040032630786299706, + 0.005164813250303268, + 0.006688681896775961, + 0.010358043946325779, + -0.01104715932160616, + -0.001982094720005989, + -0.001973214326426387, + -0.002124180318787694, + -0.004131140187382698, + -0.002179238712415099, + -0.031798768788576126, + -0.01476269867271185, + 0.025589624419808388, + 0.02429664507508278, + -0.01442879717797041, + -0.00866722408682108, + 0.02458081766963005, + 0.00299267889931798, + -0.019209979102015495, + 0.0014377291081473231, + -0.007594477850943804, + -0.016226179897785187, + -0.009434486739337444, + 0.0009279968799091876, + -0.001955453772097826, + 0.004497010726481676, + 0.005044040270149708, + 0.019522568210959435, + -0.010137811303138733, + 0.0007122043170966208, + 0.006518179085105658, + -0.0053992546163499355, + -0.005218095146119595, + -0.001165990368463099, + 0.0051435003988444805, + -0.007999422028660774, + 0.0017325568478554487, + -0.00525006465613842, + 0.00020236104319337755, + 0.0020318247843533754, + 0.00333723658695817, + 0.021739104762673378, + 0.001155333942733705, + -0.0061878301203250885, + -0.011338434182107449, + 0.0074026621878147125, + 0.008994021452963352, + 0.004269673489034176, + -0.0033390126191079617, + -0.0220659002661705, + 0.010159123688936234, + -0.0211139265447855, + 0.009796805679798126, + 0.01340578030794859, + 0.01283743791282177, + 0.016140930354595184, + 0.014620613306760788, + 0.010137811303138733, + -0.00690181041136384, + -0.012979524210095406, + -0.025788545608520508, + 0.00873116310685873, + 0.0038931467570364475, + -0.00024087956990115345, + -0.017860164865851402, + -0.008880352601408958, + 0.00109849963337183, + -0.0031898226588964462, + -0.011864151805639267, + -0.028644466772675514, + 0.006738411728292704, + -0.008297801949083805, + 0.002033600816503167, + 0.013007940724492073, + 0.0074239750392735004, + -0.009612093679606915, + -0.0012574580032378435, + -0.008113089948892593, + -0.009370548650622368, + 0.004749212879687548, + -0.018229588866233826, + -0.022236403077840805, + 0.005321107339113951, + -0.004706587176769972, + -0.012396972626447678, + 0.001491011236794293, + 0.018570594489574432, + 0.024722902104258537, + 0.01840009167790413, + -0.005722499452531338, + -0.013881768099963665, + -0.0006789029575884342, + 0.014833741821348667, + -0.004710139241069555, + -0.001740549225360155, + -0.019479941576719284, + -0.004649752750992775, + 0.01089086476713419, + -0.001109156059101224, + -0.009789700619876385, + 0.010720361955463886, + 0.02186698094010353, + -0.032338693737983704, + -0.0076442076824605465, + -0.0002890554897021502, + 0.02166806161403656, + 0.022165359929203987, + 0.012347242794930935, + -0.019082102924585342, + 0.021540183573961258, + -0.024282436817884445, + 0.010102289728820324, + -0.007338723633438349, + 0.009640511125326157, + -0.003111675614491105, + 0.0007721466827206314, + 0.031400926411151886, + 0.004511219449341297, + -0.002907427493482828, + 0.010059664025902748, + 9.041309385793284e-5, + -0.014876367524266243, + 0.02088659070432186, + -0.027081524953246117, + 0.0015442933654412627, + 0.002745805075392127, + 0.017405491322278976, + -0.005488058086484671, + 0.004230600316077471, + -0.005278481636196375, + -0.01993461698293686, + 0.019082102924585342, + 0.018968433141708374, + -0.008248072117567062, + 0.005924971308559179, + 0.014151730574667454, + -0.006727755535393953, + 0.0030566174536943436, + -0.0053104511462152, + 0.005733155645430088, + -0.007942588068544865, + 0.019593611359596252, + -0.01651035249233246, + -0.012922689318656921, + 0.002291131066158414, + -0.02634267881512642, + -0.01122476626187563, + -0.0031827185302972794, + 0.020517166703939438, + -0.01037935633212328, + -0.0006700226222164929, + -0.010542755015194416, + -0.000784579198807478, + 0.009711554273962975, + -0.009910473600029945, + -0.009384756907820702, + 0.00011333550355629995, + 0.005903658457100391, + 0.006603430490940809, + -0.03637392446398735, + 0.026484765112400055, + 0.021440723910927773, + -0.014776906929910183, + -0.010450399480760098, + 0.014691655524075031, + -0.007004822138696909, + 0.009910473600029945, + 0.008212550543248653, + -0.012340138666331768, + 0.009768388234078884, + 0.011196348816156387, + -0.014748490415513515, + 0.007509226445108652, + -0.02017616108059883, + 0.0048131514340639114, + -0.004482802003622055, + 0.008326218463480473, + 0.0028541453648358583, + -0.0009422054281458259, + -0.0020833308808505535, + -0.017860164865851402, + -0.022321654483675957, + 0.0073671406134963036, + 0.02587379701435566, + 0.05092349648475647, + 0.0270104818046093, + 0.0084540955722332, + 0.0029997832607477903, + 0.025632251054048538, + -0.021810146048665047, + 0.0065394919365644455, + 0.01301504485309124, + -0.03023582510650158, + -0.01588517613708973, + -0.002514916006475687, + -0.00381855177693069, + 0.026413721963763237, + 0.0109476987272501, + -0.014087791554629803, + -0.0004679945996031165, + -0.0143719632178545, + 0.0037901345640420914, + 0.0006495977868326008, + 0.013611804693937302, + -0.008070465177297592, + -0.0022325206082314253, + -0.010052559897303581, + 0.007288993801921606, + 0.014109104871749878, + -0.004223495721817017, + -0.014990035444498062, + -0.008773788809776306, + -0.020304039120674133, + 0.0101449154317379, + 0.022236403077840805, + -0.016155138611793518, + -0.018812140449881554, + -0.012851647101342678, + -0.002573526231572032, + 0.0203324556350708, + 0.0076797292567789555, + 0.006802350282669067, + -0.0008969156187959015, + -0.003410055534914136, + -0.0010221286211162806, + -0.008134403266012669, + 0.004269673489034176, + -0.0036480489652603865, + -0.007729459088295698, + -0.015643630176782608, + 0.026982063427567482, + -0.026101132854819298, + 0.009548155590891838, + -0.01352655328810215, + 0.015643630176782608, + 0.0031418688595294952, + -0.0169081911444664, + -0.009896265342831612, + -0.005115083418786526, + 0.017547577619552612, + 0.045751579105854034, + -0.012304617092013359, + -0.009612093679606915, + -0.03276494890451431, + -0.015942009165883064, + -0.002566422102972865, + 0.010095185600221157, + 0.01547312643378973, + -0.026442138478159904, + 0.015316832810640335, + -0.017519161105155945, + -0.009342131204903126, + 0.005981805734336376, + -0.010208853520452976, + 0.009171628393232822, + -0.011501832865178585, + 0.002545109251514077, + -0.01733444817364216, + -0.021810146048665047, + -0.008127299137413502, + -0.024836571887135506, + 0.015245789662003517, + -0.021014466881752014, + 0.03114517405629158, + -0.009711554273962975, + 0.009136106818914413, + 0.015757298097014427, + 0.0034917546436190605, + -0.026456346735358238, + 0.010869552381336689, + -0.0026925229467451572, + 0.0029589335899800062, + -0.024552399292588234, + -0.011778900399804115, + -0.01683714985847473, + 0.0022147600539028645, + -0.011729170568287373, + 0.008240967057645321, + 0.0053104511462152, + -0.005299794487655163, + -0.001234369003213942, + -6.182945799082518e-5, + 0.0023888149298727512, + 0.0101449154317379, + -0.0023248763754963875, + -0.005076009780168533, + 0.005644352175295353, + 0.02095763199031353, + -0.013974123634397984, + -0.042568858712911606, + 0.0007162004476413131, + 0.010613798163831234, + 0.0062979464419186115, + 0.018769513815641403, + -0.0057864380069077015, + -0.020389290526509285, + 0.010983220301568508, + 0.0012441374128684402, + -0.015146329998970032, + 0.02725202776491642, + -0.00042825500713661313, + 0.013341842219233513, + 0.003101019188761711, + 0.006752620451152325, + -0.014045165851712227, + 0.0024261123035103083, + 0.025348078459501266, + 0.004187974613159895, + 0.007942588068544865, + -0.002593063050881028, + 0.0022147600539028645, + 0.02021878771483898, + -0.013746785931289196, + 0.004077857825905085, + 0.01962202787399292, + 0.0011686544166877866, + -0.0161267202347517, + 0.012681144289672375, + -0.008205446414649487, + -0.012830333784222603, + 0.00542767159640789, + -0.0016934833256527781, + 0.005065353121608496, + -0.014791116118431091, + -0.019437316805124283, + 0.012055967003107071, + 0.02682577073574066, + 0.010564067400991917, + -0.004301642999053001, + -0.002980246441438794, + -0.0084540955722332, + 0.01370416022837162, + 0.017945416271686554, + 0.0031098995823413134, + 0.004550292622298002, + -0.007480809465050697, + 0.00219699926674366, + -0.017163945361971855, + -0.008368844166398048, + 0.014677447266876698, + 0.02273370325565338, + 0.01619776338338852, + -0.016496144235134125, + 0.00020225004118401557, + 0.0020495853386819363, + -0.0015247565461322665, + 0.01044329535216093, + 0.00302287214435637, + -0.0025380048900842667, + 0.0026285843923687935, + 0.0016180003294721246, + 0.005111531354486942, + -0.012986628338694572, + -0.008475408889353275, + -0.014805324375629425, + 0.003662257455289364, + -0.0029678139835596085, + -0.009313713759183884, + -0.0026712100952863693, + -0.012979524210095406, + -0.015259998850524426, + -0.011061367578804493, + -0.04117641970515251, + -0.005374389700591564, + 0.019437316805124283, + 0.017007652670145035, + 0.029184391722083092, + 0.007232159376144409, + 0.00667447317391634, + -0.005907210521399975, + -0.006514627020806074, + 0.005168365314602852, + 0.009896265342831612, + -0.003305267309769988, + -0.0054205674678087234, + 0.014073583297431469, + -0.021739104762673378, + -0.002070898190140724, + -0.007047447841614485, + 0.0022041036281734705, + 0.012084384448826313, + 0.005388597957789898, + -0.008546452037990093, + -0.003550365101546049, + -0.0063796453177928925, + -0.02095763199031353, + -0.004067201633006334, + -0.019124727696180344 + ], + "3667515a-1927-4b16-803c-9b93e91b7689": [ + -0.01901966519653797, + -0.024313073605298996, + -0.011002123355865479, + -0.01963910646736622, + -0.055524472147226334, + -0.014268268831074238, + 0.0317041352391243, + 0.05282145366072655, + -0.009516872465610504, + 0.04108022525906563, + -0.0035336315631866455, + 0.005824860651046038, + -0.02204648219048977, + -0.000475139677291736, + -0.0041671511717140675, + 0.0020571788772940636, + -0.06048000231385231, + 0.028663242235779762, + -0.005328603554517031, + -0.00945352017879486, + 0.0927472710609436, + -0.0231868177652359, + -0.007890838198363781, + 0.045923132449388504, + -0.03305564448237419, + -0.009706927463412285, + 0.023271286860108376, + 2.6135432563023642e-5, + 0.0033277375623583794, + -0.004146033897995949, + -0.010650168173015118, + 0.004899218212813139, + 0.032323576509952545, + -0.02153966575860977, + 0.02856469340622425, + -0.01455687265843153, + -0.03474503010511398, + 0.019892515614628792, + -0.03680044785141945, + 0.014922905713319778, + -0.015598660334944725, + 0.03784223645925522, + 0.01901966519653797, + 0.00931977666914463, + -0.019709497690200806, + 0.029254525899887085, + 0.033027488738298416, + 0.010769832879304886, + 0.008024581708014011, + -0.02477765455842018, + -0.0105586601421237, + 0.02735396847128868, + -0.006468939129263163, + 0.0033277375623583794, + 0.023496538400650024, + 0.008256872184574604, + -0.0056207263842225075, + 0.07455821335315704, + 0.011966480873525143, + -0.03657519817352295, + -0.0005389315774664283, + 0.01962502859532833, + 0.01354324072599411, + -0.009721006266772747, + -0.024214526638388634, + -0.0006946718203835189, + 0.004698603413999081, + 0.016246257349848747, + -0.03333720937371254, + 0.0010919413762167096, + 0.014852514490485191, + 0.008615866303443909, + -0.022947486490011215, + -0.0008614106336608529, + 0.006521732080727816, + -0.006655475124716759, + 0.03930637240409851, + -0.01395150925964117, + 0.0026044694241136312, + 0.007616313174366951, + -0.04237542301416397, + 0.005040000192821026, + -0.000249008386163041, + -0.002653743140399456, + 0.04840089753270149, + 0.026438884437084198, + -0.04429005831480026, + -0.05586234852671623, + -0.019146369770169258, + -0.02225765399634838, + 0.019653186202049255, + 0.01835799030959606, + 0.0036251398269087076, + 0.0022947487886995077, + -0.025509722530841827, + -0.008559553883969784, + 0.03668782487511635, + 0.0016621090471744537, + -0.023229051381349564, + -0.02429899573326111, + -0.011283687315881252, + 0.02083575539290905, + -0.030014749616384506, + -0.0117060337215662, + 0.015401565469801426, + 0.0028226817958056927, + 0.03361877426505089, + -0.011361117474734783, + -0.0071059782058000565, + 0.01847061514854431, + 0.023017877712845802, + -0.001114818500354886, + 0.0050083245150744915, + 0.016851620748639107, + 0.02413005754351616, + -0.08576447516679764, + -0.027790391817688942, + -0.017175419256091118, + -0.04017921909689903, + -0.06853274255990982, + 0.05307486280798912, + 0.03367508575320244, + 0.011755308136343956, + -0.031985700130462646, + 0.005539776757359505, + -0.0052194977179169655, + -0.015443800017237663, + -0.006328156683593988, + 0.005476424936205149, + 0.007848603650927544, + 0.00031434011179953814, + -0.027593297883868217, + -0.01837206818163395, + 0.03860246017575264, + -0.01231139712035656, + 0.0001298935094382614, + 0.0071587711572647095, + 0.04907665029168129, + -0.02477765455842018, + 0.03367508575320244, + -0.0006814735243096948, + -0.039616093039512634, + -0.010101118125021458, + -0.02583352103829384, + 0.008615866303443909, + 0.006465419195592403, + -0.02648111805319786, + 0.0370820127427578, + 0.010706480592489243, + 0.02697385661303997, + -0.036828603595495224, + 0.00022360161528922617, + 0.019315307959914207, + -0.01238882727921009, + 0.0077993301674723625, + -0.012241005897521973, + 0.014739888720214367, + 0.012205810286104679, + -0.04305117577314377, + 0.0010453072609379888, + 0.008805922232568264, + -0.03114100731909275, + 0.03908111900091171, + -0.017611844465136528, + 0.007292514201253653, + 0.0030901676509529352, + 0.021638212725520134, + 0.04316380247473717, + -0.05239911004900932, + 0.028198661282658577, + 0.04654257372021675, + -0.017527375370264053, + 0.018174972385168076, + 0.004962570033967495, + 0.0043044136837124825, + -0.02900111861526966, + 0.011846816167235374, + 0.009868827648460865, + 0.014359776861965656, + -0.0185410063713789, + 2.6355404770583846e-5, + -0.010600894689559937, + -0.03032447025179863, + 0.007091899868100882, + -0.03530815988779068, + 0.012100224383175373, + 0.023609163239598274, + -0.00012098464503651485, + -0.0205541905015707, + 0.012550726532936096, + 0.0077993301674723625, + -0.009235307574272156, + 0.028198661282658577, + 0.04347352311015129, + -0.01810458116233349, + 0.00011581530270632356, + -0.004079162143170834, + 0.001718421932309866, + 0.020244469866156578, + 0.016978325322270393, + -0.01699240319430828, + -0.06419665366411209, + -0.06475978344678879, + 0.017302123829722404, + -0.04958346486091614, + -0.007602234836667776, + -0.016133632510900497, + -0.0023475419729948044, + 0.022961566224694252, + -0.03294301778078079, + 0.007489609532058239, + -0.009150838479399681, + 0.0156831294298172, + 0.010995084419846535, + -0.014127486385405064, + 0.0012925559422001243, + -0.02280670590698719, + 0.02555195614695549, + 0.01057977695018053, + 0.015162235125899315, + -0.01968134194612503, + 0.011952403001487255, + 0.03344983235001564, + -0.03964424878358841, + -0.0470493882894516, + -0.02367955446243286, + -0.01657005585730076, + 0.032267265021800995, + -0.04079866036772728, + -0.00010866620868910104, + 0.04364246129989624, + 0.009157877415418625, + 0.004026368726044893, + -0.05434190109372139, + -0.004033408127725124, + -0.00024394903448410332, + 0.020638659596443176, + 0.003333016997203231, + 0.020863911136984825, + -0.017414748668670654, + 0.05262435972690582, + 0.005015363451093435, + 0.0073699443601071835, + 0.0010233101202175021, + 0.02829720824956894, + 0.020793519914150238, + -0.027593297883868217, + 0.05777698755264282, + 0.029817655682563782, + -0.014233073219656944, + 0.01909005641937256, + 0.03254882991313934, + 0.0156831294298172, + 0.00043334500514902174, + 0.000860090833157301, + 0.028972962871193886, + 0.01952648162841797, + 0.002071256982162595, + -0.017724469304084778, + 0.010959888808429241, + -0.02555195614695549, + -0.005803743377327919, + -0.0043008942157030106, + -0.024918437004089355, + 0.06042369082570076, + -0.01678122952580452, + 0.016795307397842407, + -0.04429005831480026, + -0.006011397112160921, + -0.004269218072295189, + -0.04195307567715645, + 0.013064581900835037, + -0.014127486385405064, + -0.0012943156762048602, + -0.012135419994592667, + -0.002574553247541189, + -0.00353011186234653, + 0.020849833264946938, + 0.011023241095244884, + 0.009904023259878159, + 0.006680111866444349, + 0.03612469509243965, + 0.012346592731773853, + 0.03877139836549759, + 0.001357667613774538, + -0.027565140277147293, + -0.017794860526919365, + 0.009580223821103573, + -0.03398480638861656, + -0.011248492635786533, + 0.01469765417277813, + -0.014570950530469418, + 0.023552849888801575, + -0.0178089402616024, + 0.017175419256091118, + -0.0009564385982230306, + -0.019047822803258896, + -0.013867040164768696, + -0.026523353531956673, + 0.02401743084192276, + -0.025129610672593117, + 0.00641262624412775, + 0.044008493423461914, + -0.009397206827998161, + 0.028269052505493164, + 0.012191732414066792, + 0.04814748838543892, + -0.013142012059688568, + -0.031507041305303574, + 0.025903912261128426, + 0.03694123029708862, + -0.016654526814818382, + -0.024805812165141106, + -0.022623687982559204, + -0.003765922039747238, + 0.008411732502281666, + 0.024355309084057808, + 0.015753520652651787, + -0.004842905327677727, + 0.004420558921992779, + -0.0026766201481223106, + 0.0004177269875071943, + -0.04595128819346428, + 0.020596425980329514, + 0.049442682415246964, + -0.033196426928043365, + -0.0030848884489387274, + 0.01206502877175808, + -0.012649274431169033, + -0.015570503659546375, + -0.009932179003953934, + -0.04688045009970665, + -0.016105474904179573, + -0.019005587324500084, + -0.011755308136343956, + -0.016809387132525444, + -0.029507935047149658, + -0.04116469621658325, + -0.01842838153243065, + -0.007876760326325893, + -0.02335575595498085, + 0.04327642545104027, + -0.0309720691293478, + 0.014739888720214367, + -0.001974469283595681, + -0.021145476028323174, + -0.008608827367424965, + 0.02911374531686306, + -0.025523800402879715, + -0.012649274431169033, + 0.0006458380375988781, + -0.02631217986345291, + 0.03668782487511635, + -0.009312737733125687, + 0.014296425506472588, + -0.007190447300672531, + -0.022834861651062965, + -0.016260335221886635, + 0.007778212893754244, + 0.0031130448915064335, + -0.003741285065189004, + -0.02379217930138111, + -0.0315915085375309, + -0.011149944737553596, + 0.016598213464021683, + 0.023876650258898735, + 0.007750056218355894, + -0.00407212320715189, + -0.0076515087857842445, + 0.005536257289350033, + -0.007764134556055069, + 0.03902480751276016, + 0.03268961235880852, + 0.0019339944701641798, + -0.026438884437084198, + -0.0022683520801365376, + 0.033196426928043365, + 0.03657519817352295, + -0.009537989273667336, + 0.01513407938182354, + -0.01744290627539158, + 0.01672491617500782, + -0.00756703969091177, + -0.026579666882753372, + 0.04302302002906799, + 0.0156831294298172, + -0.005648883059620857, + -0.00022283171711023897, + -0.004906257148832083, + -0.0015591620467603207, + -0.0524272657930851, + -0.012874525971710682, + -0.03145072981715202, + 0.004888659343123436, + -0.014190838672220707, + 0.03274592384696007, + 0.01143150869756937, + 0.00786972139030695, + 0.029902124777436256, + -0.0024636872112751007, + 0.0016621090471744537, + -0.020821677520871162, + 0.0030127374920994043, + 0.014226034283638, + 0.039841342717409134, + -0.012790056876838207, + -0.015753520652651787, + 0.02263776585459709, + -0.014613185077905655, + -0.01159340888261795, + 0.004086201544851065, + -0.008024581708014011, + 0.0011517738457769156, + -0.009713967330753803, + 0.0422346405684948, + -0.018400223925709724, + 0.029958438128232956, + -0.008320223540067673, + -0.061324696987867355, + 0.0009186033857986331, + 0.0525398924946785, + 0.0522020123898983, + -0.012656313367187977, + -0.006739944685250521, + -0.028761789202690125, + 0.00696167629212141, + 0.033309053629636765, + 0.03587128594517708, + 0.0017008241266012192, + -0.005539776757359505, + -0.03161966800689697, + 0.011030280031263828, + -0.0369693860411644, + -0.018343912437558174, + -0.005092793609946966, + -0.011311843991279602, + 0.0003139001491945237, + -0.0074403355829417706, + -0.0075811175629496574, + -0.0011825698893517256, + 0.0310283824801445, + 0.015260783024132252, + 0.003811676288023591, + 0.0033400559332221746, + -0.01700648106634617, + -0.030634190887212753, + -0.03252067044377327, + -0.002791005652397871, + -0.005536257289350033, + 0.034576091915369034, + -0.0009186033857986331, + 0.07681073248386383, + -0.018625475466251373, + -0.0013585475971922278, + -0.022848939523100853, + 0.00015662012447137386, + -0.002914190059527755, + 0.010150391608476639, + 0.0026027096901088953, + 0.008151285350322723, + 0.0037940784823149443, + 0.0033576537389308214, + 0.026607822626829147, + -0.03505475074052811, + 0.011452626436948776, + -0.06025475263595581, + -0.034181900322437286, + 0.012783017009496689, + -0.023651398718357086, + -0.002732933033257723, + -0.00874256994575262, + 0.04040447250008583, + -0.020469721406698227, + -0.0007773813558742404, + -0.017316201701760292, + 0.007524804677814245, + 0.00349491648375988, + -0.008580670692026615, + 0.015542346984148026, + -0.021075084805488586, + -0.024552403017878532, + -0.022496985271573067, + -0.031281787902116776, + 0.026002459228038788, + 0.03809564560651779, + 0.0026326258666813374, + -0.03384402394294739, + 0.00866513978689909, + 0.018414301797747612, + 0.005215977784246206, + 0.037588827311992645, + 0.004867542069405317, + 0.025425253435969353, + -0.031000224873423576, + -0.020863911136984825, + -0.057101231068372726, + 0.023566927760839462, + -0.02280670590698719, + 0.0015327654546126723, + -0.021455196663737297, + 0.05273698642849922, + -0.011164022609591484, + 0.006887765601277351, + 0.03485765680670738, + 0.005796704441308975, + 0.002065977780148387, + -0.007602234836667776, + -0.0043642460368573666, + -0.005451788194477558, + 0.012135419994592667, + 0.003987653646618128, + 0.010959888808429241, + -0.013881118036806583, + 0.004103798884898424, + -0.01469765417277813, + 0.02631217986345291, + -0.030521566048264503, + 0.0065815644338727, + 0.01687977835536003, + -0.024524247273802757, + 0.005370838101953268, + -0.006405586842447519, + -0.01695016771554947, + 0.01689385622739792, + 0.019596872851252556, + -0.005215977784246206, + -0.001656829728744924, + 0.02215910702943802, + 0.030943911522626877, + 0.004089721012860537, + -0.02674860507249832, + 0.024158213287591934, + -0.014021900482475758, + -0.018794413655996323, + 0.003333016997203231, + -0.010657207109034061, + 0.010516425594687462, + -0.033252738416194916, + -0.009960335679352283, + 0.037870392203330994, + -0.024383464828133583, + 0.013008268550038338, + -0.018062347546219826, + -0.005983240436762571, + 0.012790056876838207, + 0.02422860451042652, + -0.03187307342886925, + 0.008763687685132027, + 0.00975620187819004, + 0.006046592723578215, + -0.008228715509176254, + 0.023918883875012398, + -0.012219889089465141, + 0.009657653979957104, + 0.03305564448237419, + -0.03812380135059357, + 0.02653743140399456, + -0.01990659348666668, + -0.04721832647919655, + -0.006247207056730986, + 0.02210279367864132, + 0.009502793662250042, + 0.0018055308610200882, + 0.005515140015631914, + -0.03930637240409851, + 0.001930475002154708, + -0.046852294355630875, + 0.015021453611552715, + -0.003843352198600769, + 0.017640000209212303, + 0.01979396678507328, + 0.028649164363741875, + 0.03311195597052574, + 0.0014782124198973179, + -0.032492514699697495, + 0.010629050433635712, + -0.00016882857016753405, + 0.020216314122080803, + -0.025368940085172653, + 0.005490503273904324, + 0.005075195804238319, + -0.03280223533511162, + 0.018836649134755135, + -0.02237028069794178, + 0.004417039453983307, + 0.018892962485551834, + -0.04578235000371933, + -0.04840089753270149, + -0.005170223768800497, + 0.014409051276743412, + -0.012325475923717022, + 0.012881564907729626, + 0.04034815728664398, + -0.01727396808564663, + -0.005539776757359505, + 0.01810458116233349, + 0.0034438828006386757, + 0.008059777319431305, + -0.0016471509588882327, + -0.0008618506253696978, + -0.020540112629532814, + 0.021370727568864822, + 0.02693162113428116, + -0.008334302343428135, + -0.03373139724135399, + 0.02566458284854889, + -0.03401296213269234, + 0.013339106924831867, + -0.03871508687734604, + -0.023454302921891212, + 0.0012643994996324182, + -0.017780782654881477, + 0.019146369770169258, + -0.013888156972825527, + 0.034238215535879135, + 0.01299419067800045, + 0.02729765512049198, + 0.033477991819381714, + 0.0008873673505149782, + -0.010080000385642052, + 0.008186480961740017, + -0.05383508652448654, + 0.03722279518842697, + -0.03530815988779068, + 0.021905699744820595, + 0.011973519809544086, + -0.007862682454288006, + -0.01286044716835022, + -0.022412514314055443, + -0.0020536594092845917, + 0.00414251396432519, + 0.01693608984351158, + 0.04676782339811325, + -0.02691754326224327, + 0.026664135977625847, + 0.010988045483827591, + 0.01258592214435339, + 0.0089044701308012, + -0.007084860932081938, + 0.012811173684895039, + -0.014739888720214367, + -0.022989721968770027, + 0.0018882403383031487, + 0.02297564409673214, + -0.011410391889512539, + -0.0074544139206409454, + -0.04062972217798233, + 0.0049238549545407295, + 0.03536447137594223, + 0.003692011348903179, + -0.07658547908067703, + -0.0009889944922178984, + 0.03294301778078079, + 0.00028750349883921444, + -0.02215910702943802, + -0.028367599472403526, + -0.019287152215838432, + 0.011100671254098415, + 0.0030567320063710213, + -0.013655866496264935, + 0.023482458665966988, + 0.005515140015631914, + -0.02945162169635296, + 0.023327598348259926, + 0.02456648088991642, + -0.0023985756561160088, + -0.009601341560482979, + -0.00678569870069623, + -0.0011940083932131529, + 0.030718659982085228, + -0.00407212320715189, + -0.01831575483083725, + 0.012438101693987846, + 0.0030373744666576385, + 0.006028994917869568, + -0.0128252524882555, + -0.013930391520261765, + -0.04485318809747696, + 0.014226034283638, + -0.02208871580660343, + -0.010037765838205814, + -0.006380950100719929, + -0.013451732695102692, + -0.004740838427096605, + 0.03482949733734131, + -0.0184846930205822, + -0.0027047765906900167, + 0.039447151124477386, + -0.016513744369149208, + -0.019709497690200806, + -0.007862682454288006, + 0.022665923461318016, + -0.007876760326325893, + 0.03054972179234028, + -0.013684023171663284, + 0.009636537171900272, + -0.029705028980970383, + -0.000829734664876014, + 0.024496091529726982, + -0.01695016771554947, + -0.04375508800148964, + -0.011164022609591484, + -0.016105474904179573, + -0.0115652522072196, + -0.0065815644338727, + 0.022299889475107193, + -0.015288939699530602, + -0.015162235125899315, + 0.009685810655355453, + 0.0025393576361238956, + 0.018118660897016525, + -0.0014711732510477304, + -0.009777318686246872, + 0.019948827102780342, + 0.014739888720214367, + 0.003941899631172419, + -0.011987598612904549, + 0.0103052519261837, + 0.010586815886199474, + 0.03285855054855347, + -0.040770504623651505, + 0.04786592349410057, + 0.005458827130496502, + -0.038686931133270264, + -0.06014212593436241, + 0.020638659596443176, + 0.025847598910331726, + -0.009362011216580868, + -0.025045141577720642, + -0.0033558940049260855, + 0.03277407959103584, + 0.009383128955960274, + -0.009777318686246872, + 0.006409106310456991, + 0.005075195804238319, + -0.013782570138573647, + -0.01918860524892807, + -0.008383575826883316, + 0.04544446989893913, + -0.015162235125899315, + -0.006528771482408047, + -0.029676873236894608, + 0.024144135415554047, + 0.005184302106499672, + 0.02653743140399456, + 0.001250321278348565, + -0.013536201789975166, + -0.016696760430932045, + 0.0030831287149339914, + 0.010389721021056175, + 0.03223910927772522, + -0.029958438128232956, + 0.03367508575320244, + 0.02500290609896183, + -0.01759776659309864, + -0.02619955502450466, + -0.0105586601421237, + 0.003239748766645789, + 0.008235754445195198, + 0.01200871542096138, + 0.007433296646922827, + 0.01357139740139246, + 0.019146369770169258, + -0.009326816536486149, + -0.002124050399288535, + -0.033365365117788315, + -0.005233575589954853, + 0.026945699006319046, + 0.04845720902085304, + -0.009214190766215324, + 0.038517989218235016, + -0.007134134415537119, + 0.037194639444351196, + 0.028170503675937653, + 0.022243576124310493, + -0.020694972947239876, + 0.01617586612701416, + -0.0037940784823149443, + -0.025523800402879715, + 0.015176313929259777, + -0.025354862213134766, + -0.04398033767938614, + 0.01638703979551792, + -0.0413336344063282, + 0.0014377374900504947, + 0.006444301921874285, + 0.03049341030418873, + 0.024693185463547707, + -0.018273521214723587, + -0.012881564907729626, + 0.013578436337411404, + 0.016049163416028023, + -0.01837206818163395, + 0.00132599170319736, + 0.025129610672593117, + 0.0020606983453035355, + 0.024496091529726982, + -0.022412514314055443, + 0.002574553247541189, + 0.001659469329752028, + -0.0038257543928921223, + -0.03885586932301521, + 0.028325363993644714, + 0.02719910815358162, + 0.016246257349848747, + -0.017062794417142868, + 0.017569608986377716, + 0.003677933244034648, + 0.00917899515479803, + 0.02483396790921688, + -0.025861676782369614, + -0.012255084700882435, + -0.017668157815933228, + 0.01173419039696455, + -0.006419665180146694, + 0.0005169343785382807, + -0.011171062476933002, + -0.013803687877953053, + 0.01803419180214405, + -0.03240804746747017, + 0.015035531483590603, + 0.010410838760435581, + 0.036659665405750275, + 0.008587709628045559, + 0.00736290542408824, + -0.023003799840807915, + -0.004219944588840008, + -0.014993296936154366, + 0.02204648219048977, + 0.009052290581166744, + 0.011931285262107849, + -0.01173419039696455, + -0.0005314525333233178, + 0.017344359308481216, + 0.03466055914759636, + 0.04206570237874985, + -0.01638703979551792, + -0.017949720844626427, + -0.045106593519449234, + 0.0022208380978554487, + 0.008094972930848598, + -0.014866593293845654, + -0.01088245864957571, + -0.0024936033878475428, + -0.001102500013075769, + 0.0059797209687530994, + 0.005451788194477558, + -0.004617653787136078, + 0.02483396790921688, + 0.005349720828235149, + 0.020216314122080803, + -0.003706089686602354, + -0.008658100850880146, + -0.0012749581364914775, + -0.048541679978370667, + 0.02276447042822838, + -0.007313631474971771, + 0.010952849872410297, + 0.02390480600297451, + 0.014035978354513645, + -0.010248939506709576, + 0.025861676782369614, + -0.008679218590259552, + -0.03705385699868202, + -0.004128436092287302, + -0.01704871654510498, + -0.019892515614628792, + 0.029845811426639557, + -0.011065475642681122, + 0.020680895075201988, + -0.015429721213877201, + 0.010143352672457695, + 0.00462117325514555, + 0.013796648941934109, + -0.016260335221886635, + -0.02269407920539379, + -0.027888940647244453, + -0.009284581057727337, + -0.040432628244161606, + 0.018414301797747612, + -0.008256872184574604, + 0.02138480544090271, + 0.013078659772872925, + 0.000496257038321346, + -0.05377877503633499, + 0.02576312981545925, + -0.007355866488069296, + -0.0028825141489505768, + -0.004705642815679312, + -0.0054940227419137955, + 0.008897430263459682, + 0.03395665064454079, + -0.007750056218355894, + -0.02790301851928234, + 0.002542877336964011, + -0.03711016848683357, + -0.015640893951058388, + 0.004614134319126606, + 0.008869274519383907, + -0.009369051083922386, + 7.286575419129804e-5, + -0.018780335783958435, + -0.00706022372469306, + 0.017668157815933228, + -0.014211956411600113, + -0.039503466337919235, + 0.005085754673928022, + 0.022299889475107193, + -0.014240112155675888, + 0.06447821855545044, + 0.01924491673707962, + 0.010502346791327, + -0.0185410063713789, + -0.008003463968634605, + 0.024650951847434044, + 0.020188158378005028, + 0.021778995171189308, + 0.002908910857513547, + -0.01678122952580452, + -0.016851620748639107, + -0.0008869274170137942, + -0.01324055902659893, + 0.01617586612701416, + 0.011058436706662178, + -0.01962502859532833, + -0.01545787788927555, + 0.011269609443843365, + 0.01901966519653797, + 0.021145476028323174, + 0.01595061458647251, + 0.009200111962854862, + 0.02231396734714508, + 0.007419218309223652, + -0.022074637934565544, + 0.016161788254976273, + -0.01941385492682457, + 0.0037518437020480633, + -0.012297319248318672, + -0.03806748986244202, + -0.03322458267211914, + -0.021483352407813072, + -0.0030655309092253447, + 0.017696313560009003, + -0.028860336169600487, + 0.04338905215263367, + -0.021187711507081985, + -0.03727910667657852, + 0.007197486236691475, + 0.012086145579814911, + -0.01687977835536003, + 0.025847598910331726, + 0.03598391264677048, + 0.0022120391950011253, + -0.009186034090816975, + 0.009446481242775917, + 0.020272627472877502, + -0.011663799174129963, + 0.017414748668670654, + -0.009439442306756973, + 0.0018512849928811193, + -0.0015917179407551885, + 0.013015308417379856, + -0.019779888913035393, + 0.0057051959447562695, + -0.041530728340148926, + 0.02182123064994812, + -0.042459890246391296, + 0.015429721213877201, + 0.0028842738829553127, + 0.017020558938384056, + -0.015035531483590603, + -0.012902682647109032, + 0.0047232406213879585, + -0.01060793362557888, + 0.002113491762429476, + -0.013092738576233387, + -0.029198214411735535, + -0.012332514859735966, + 0.009059330448508263, + -0.01896335370838642, + 0.01678122952580452, + 0.0059797209687530994, + 0.010826146230101585, + 0.0057791066356003284, + -0.003860950004309416, + 0.005874134600162506, + -0.018273521214723587, + -0.012980112805962563, + 0.0156831294298172, + -0.007778212893754244, + 0.013339106924831867, + -0.041981231421232224, + 0.00907340832054615, + -0.02835352160036564, + 0.014542793855071068, + -0.0361810065805912, + -0.01634480617940426, + -0.017062794417142868, + 0.01968134194612503, + -0.01469765417277813, + -0.021018771454691887, + -0.0012600000482052565, + -0.034998439252376556, + 0.0360683836042881, + -0.0019075978780165315, + -0.0009476396953687072, + -0.02253921888768673, + -0.012543687596917152, + 0.007384022697806358, + 0.024313073605298996, + -0.004733799025416374, + -0.022511063143610954, + -0.013071620836853981, + -0.028437990695238113, + 0.03508290648460388, + 0.012452179566025734, + -0.01918860524892807, + -0.04699307680130005, + -0.0001951152371475473, + 0.02922637015581131, + -0.010347486473619938, + -0.04051709547638893, + -0.005413073115050793, + 0.008109050802886486, + -0.007883799262344837, + 0.005437709856778383, + 0.00016739875718485564, + 0.011501899920403957, + 0.028170503675937653, + 0.006271843798458576, + -0.02681899629533291, + 0.011748269200325012, + 0.006152179092168808, + -0.020216314122080803, + 0.01112882699817419, + -0.02208871580660343, + 0.031112851575016975, + -0.052230171859264374, + -0.022792626172304153, + -0.008031620644032955, + 0.024974750354886055, + -0.007552961353212595, + -0.005596089642494917, + -0.0185410063713789, + -0.0034016482532024384, + 0.008615866303443909, + -0.0014544554287567735, + 0.015260783024132252, + 0.002354581141844392, + 0.027762236073613167, + 0.02407374419271946, + -0.02083575539290905, + 0.02428491786122322, + -0.015162235125899315, + -0.006729385815560818, + -0.004716201219707727, + 0.005096313077956438, + 0.005659441463649273, + -0.002703016856685281, + 0.027987487614154816, + 0.0020606983453035355, + 0.014599107205867767, + 0.05065340921282768, + -0.042403578758239746, + 0.016626369208097458, + -0.02773408032953739, + -0.005215977784246206, + 0.026495197787880898, + 0.0063985479064285755, + -0.011093632318079472, + 0.00852435827255249, + 0.010037765838205814, + -0.006870167795568705, + 0.028269052505493164, + -0.0022824301850050688, + 0.00934793334454298, + -0.00575798936188221, + 0.003959497436881065, + 0.016654526814818382, + -0.0018671229481697083, + -0.02210279367864132, + -0.002578072715550661, + -0.02253921888768673, + 0.00407212320715189, + -0.02253921888768673, + -0.02900111861526966, + 0.02001921832561493, + -0.002914190059527755, + -0.010523464530706406, + 0.03257698565721512, + -0.021863464266061783, + 0.007405139971524477, + -0.005395475309342146, + 0.008918548002839088, + 0.014641341753304005, + -0.003134162165224552, + -0.024876203387975693, + 0.072812519967556, + 0.013691062107682228, + -0.01695016771554947, + 0.018118660897016525, + -0.01634480617940426, + 0.003074329812079668, + -0.0005028561572544277, + 0.02922637015581131, + -0.002122290665283799, + 0.012360670603811741, + -0.009573184885084629, + 0.0039559779688715935, + 0.01852692849934101, + 0.02220134250819683, + -0.0014421369414776564, + -0.0015811593038961291, + 0.015317095443606377, + 0.015232626348733902, + -0.017625922337174416, + -0.007172849494963884, + -0.0030813689809292555, + -0.006018436048179865, + 0.012930838391184807, + -0.023890728130936623, + -0.009024134837090969, + -0.03164782375097275, + -0.006447821389883757, + 0.0012036871630698442, + -0.05248357728123665, + -0.005571452900767326, + 0.021694526076316833, + 0.0025112011935561895, + 0.01340245921164751, + 0.013705139979720116, + -0.03021184541285038, + 0.021694526076316833, + 0.0062612853944301605, + -0.019864358007907867, + 0.007883799262344837, + 0.0028842738829553127, + -0.007940112613141537, + -0.002544637070968747, + -0.0022965085227042437, + -0.005191341042518616, + -0.0023141063284128904, + 0.016907934099435806, + 0.01742882840335369, + 0.010051843710243702, + -0.00012923359463457018, + -0.009277542121708393, + -0.008017542771995068, + 0.006233128719031811, + -0.00801050290465355, + -0.00726435799151659, + -0.007348827086389065, + 0.0043008942157030106, + -0.003150000236928463, + -0.0209483802318573, + -0.05555262789130211, + -0.01951240375638008, + 0.0031904750503599644, + 0.01835799030959606, + -0.004322011489421129, + -0.018160894513130188, + -0.029479777440428734, + 0.020427487790584564, + -0.0046387710608541965, + -0.02165229246020317, + 0.007433296646922827, + -0.007355866488069296, + -0.00828502792865038, + 0.01634480617940426, + -0.008862234652042389, + 0.006395028438419104, + 0.005666480865329504, + 0.024031510576605797, + 0.01869586668908596, + -0.016105474904179573, + -0.007489609532058239, + -0.0317041352391243, + -0.021342571824789047, + 0.005110391415655613, + 0.016922011971473694, + 0.02187754400074482, + 0.0078415647149086, + -0.012846369296312332, + -0.0058424584567546844, + 0.0009247626294381917, + 0.010523464530706406, + -0.03294301778078079, + -0.0103052519261837, + 0.005268771201372147, + 0.024467933923006058, + -0.022665923461318016, + -0.02039933018386364, + -0.0367441363632679, + -0.0048605031333863735, + -0.00940424669533968, + -0.0039454190991818905, + -0.006233128719031811, + -0.01644335314631462, + 0.00967877171933651, + 0.014134526252746582, + -0.015556425787508488, + 0.02203240431845188, + 0.00404396653175354, + -0.02379217930138111, + 0.009516872465610504, + -0.004747877363115549, + -0.01935754343867302, + -0.007989386096596718, + -0.014000782743096352, + -0.01203687209635973, + -0.005078715272247791, + -0.00600435771048069, + -0.008299106732010841, + -0.015035531483590603, + -0.0066836318001151085, + 0.024425700306892395, + -0.005691117607057095, + -0.027269499376416206, + 0.0038574303034693003, + -0.01962502859532833, + -0.0037518437020480633, + 0.007046145852655172, + -0.02653743140399456, + -0.017344359308481216, + 0.011375196278095245, + -0.016161788254976273, + -0.010875419713556767, + 0.017794860526919365, + 0.001597877126187086, + 0.011142905801534653, + 0.019160447642207146, + 0.004360726568847895, + -0.018611397594213486, + 0.026720447465777397, + -0.01397966593503952, + -0.014711732976138592, + 0.00280332425609231, + -0.006518212612718344, + -0.010192626155912876, + 0.011572291143238544, + 0.006152179092168808, + -0.0007188687450252473, + 0.020216314122080803, + -0.018738102167844772, + 0.012304358184337616, + 0.0314788855612278, + -0.02539709582924843, + 0.02303195744752884, + -0.01112882699817419, + -0.002071256982162595, + 0.008756648749113083, + 0.01005888357758522, + -0.022961566224694252, + -0.00043466483475640416, + 0.005040000192821026, + 0.016584135591983795, + 0.009354972280561924, + -0.005990279838442802, + -0.01727396808564663, + -0.012184693478047848, + -0.016049163416028023, + 0.008228715509176254, + 0.003910223487764597, + -0.0032767041120678186, + -0.027720000594854355, + 0.008292067795991898, + 0.018681788817048073, + -0.011755308136343956, + 0.001884720753878355, + -0.013684023171663284, + 0.0105586601421237, + 0.002067737514153123, + -0.03328089416027069, + 0.02170860394835472, + -0.007412179373204708, + 0.040488939732313156, + -0.01135407853871584, + -0.011832738295197487, + -0.024636872112751007, + 0.013578436337411404, + 0.007229162380099297, + 0.042797766625881195, + 0.007257319055497646, + -0.011973519809544086, + -0.01683754287660122, + -0.020441565662622452, + 0.0053567602299153805, + 0.02697385661303997, + -0.02894480526447296, + -0.003132402431219816, + 0.018301676958799362, + 0.004244581330567598, + 0.006852569989860058, + -0.011178101412951946, + -0.01447240263223648, + 0.002757570007815957, + -0.01472581084817648, + 0.0073065925389528275, + -0.012944917194545269, + 0.012881564907729626, + -0.019878437742590904, + 0.0043748049065470695, + -0.022933408617973328, + -0.009164916351437569, + -0.00502944178879261, + 0.007426257245242596, + -0.0010153910843655467, + -0.018062347546219826, + 0.00819351989775896, + -0.025411173701286316, + 0.014683576300740242, + 0.03415374457836151, + 0.001355907879769802, + -0.004719721153378487, + 0.0052722906693816185, + -0.021131398156285286, + -0.002217318629845977, + -0.010826146230101585, + -0.015246705152094364, + -0.016260335221886635, + 0.009425363503396511, + 0.019596872851252556, + -0.017259888350963593, + 0.00696167629212141, + 0.009038212709128857, + 0.02000514045357704, + -0.002549916272982955, + -0.009122681804001331, + 0.013113855384290218, + -0.005103352013975382, + -0.020371174439787865, + 0.011832738295197487, + -0.0074403355829417706, + -0.004899218212813139, + -0.0032802235800772905, + 0.012050949968397617, + -0.028705475851893425, + -0.0028420393355190754, + -0.014409051276743412, + -0.0011060195975005627, + 0.013691062107682228, + -0.0019375140545889735, + -0.00031148045673035085, + -0.0018055308610200882, + 0.006395028438419104, + -0.0005468506133183837, + -0.0019832681864500046, + -0.030521566048264503, + 0.011340000666677952, + 0.007700782734900713, + 0.005515140015631914, + -0.011677877977490425, + 0.01771039143204689, + -0.002866676077246666, + 0.012043911032378674, + -0.0015442039584740996, + -0.010995084419846535, + -0.017611844465136528, + -0.004392402246594429, + 0.01387407910078764, + 0.0006700349622406065, + 0.002966983476653695, + 0.034069277346134186, + 0.01716134138405323, + 0.009777318686246872, + 0.0020730169489979744, + -0.020990615710616112, + -0.006528771482408047, + 0.012050949968397617, + -0.019695419818162918, + -0.011297766119241714, + 0.039559777826070786, + -0.0023756984155625105, + 0.003436843864619732, + -0.005451788194477558, + 0.025622347369790077, + 0.003135921899229288, + 0.02023039199411869, + 0.012853408232331276, + 0.00032819833722896874, + 0.007510726805776358, + -0.004853463731706142, + 0.014810279943048954, + -0.01200871542096138, + -0.0069581568241119385, + 0.012374749407172203, + -0.0019234358333051205, + 0.0009986732620745897, + 0.012248045764863491, + -0.005617206916213036, + -0.008306145668029785, + -0.004033408127725124, + 0.003362933173775673, + -0.026509275659918785, + 0.04079866036772728, + -0.0037624023389071226, + -0.014669498428702354, + -0.006905363406985998, + -0.018653633072972298, + 3.3648852877377067e-6, + 0.016035085543990135, + 0.04333274066448212, + -0.0018794414354488254, + 0.020089609548449516, + 0.0023915364872664213, + -0.0014553352957591414, + -0.03646257147192955, + -0.004015810322016478, + 0.013142012059688568, + 0.00811608973890543, + -0.004853463731706142, + 0.00811608973890543, + -0.0005041760159656405, + 0.023552849888801575, + 0.0008702095365151763, + -0.0011676118010655046, + 0.032098326832056046, + -0.027283577248454094, + 0.022187264636158943, + -0.057157546281814575, + -0.0007650628685951233, + 0.005743911024183035, + 0.005451788194477558, + -0.012867487035691738, + 0.02945162169635296, + -0.00794715154916048, + 0.019258994609117508, + 0.015401565469801426, + 0.00917899515479803, + 0.025889834389090538, + 0.004406480584293604, + 0.0044381567277014256, + 0.006873687729239464, + -0.007447374518960714, + 0.022665923461318016, + 0.0009282821556553245, + 0.01924491673707962, + -0.03373139724135399, + 0.003765922039747238, + 0.01803419180214405, + 0.01727396808564663, + -0.005860056262463331, + -0.0011068994645029306, + 0.0027505308389663696, + 0.012811173684895039, + -0.0012142459163442254, + -0.003545949934050441, + -0.01945609040558338, + -0.024918437004089355, + 0.009003017097711563, + -0.02532670460641384, + 0.010973966680467129, + -0.010650168173015118, + -0.002894832519814372, + 0.007063743192702532, + -0.011663799174129963, + -0.015654973685741425, + -0.021694526076316833, + 0.0010690642520785332, + 0.01941385492682457, + -0.012768939137458801, + -0.00874256994575262, + 5.994239108986221e-5, + -0.01776670478284359, + -0.016527822241187096, + -0.005522178951650858, + 0.02680491842329502, + -0.022187264636158943, + -0.011846816167235374, + -0.016246257349848747, + 0.005395475309342146, + 0.03114100731909275, + -0.030465252697467804, + 0.02729765512049198, + 0.006549888756126165, + -0.0012036871630698442, + -0.03581497445702553, + -0.029198214411735535, + -0.000723708129953593, + 0.004336089827120304, + -0.01628849282860756, + 0.007954190485179424, + -0.03004290722310543, + 0.003709609154611826, + -0.007007430773228407, + 0.025580113753676414, + 0.014866593293845654, + 0.014711732976138592, + -0.005754469428211451, + 0.032098326832056046, + -0.00736290542408824, + -0.017893409356474876, + 0.04462793469429016, + 0.016626369208097458, + 0.014880671165883541, + -0.0004764595360029489, + 0.022060560062527657, + 0.036096539348363876, + -0.022229498252272606, + -0.0032010336872190237, + 0.0026185475289821625, + 0.004846424795687199, + 0.0015600420301780105, + 0.000799378554802388, + -0.014183799736201763, + -0.010685363784432411, + -0.003120084060356021, + -0.021427040919661522, + -0.011910168454051018, + -0.013430614955723286, + -0.01733027957379818, + -0.004054525401443243, + -0.023862570524215698, + -4.8586334742140025e-5, + -0.013106816448271275, + 0.011114749126136303, + 0.0020307821687310934, + 0.006641396787017584, + -0.00153892464004457, + 0.005972682032734156, + -0.012536648660898209, + 0.023074191063642502, + 0.0010426676599308848, + 0.01803419180214405, + -0.009038212709128857, + -0.00031434011179953814, + -0.016541900113224983, + 0.00814424641430378, + 0.018512850627303123, + 0.008988939225673676, + 0.003924301825463772, + 0.023552849888801575, + -0.029705028980970383, + -0.004448715131729841, + -0.010629050433635712, + 0.0210610069334507, + 0.00811608973890543, + 0.0205541905015707, + -0.0061029051430523396, + -0.036828603595495224, + 0.0016321928706020117, + -0.006486536469310522, + -0.004184748977422714, + 0.011135866865515709, + 0.018343912437558174, + 0.0026115085929632187, + -0.004937933292239904, + -0.013064581900835037, + 0.018766257911920547, + 0.014310503378510475, + -0.0019111174624413252, + 0.011727151460945606, + 0.014655419625341892, + 0.014282346703112125, + 0.0007967388955876231, + -0.0022349164355546236, + -0.008383575826883316, + 0.010298212990164757, + -0.006644916720688343, + 0.0007413058774545789, + -0.008334302343428135, + 0.011340000666677952, + 0.013416537083685398, + 0.017147263512015343, + -0.017400670796632767, + -0.004737318493425846, + -0.02928268350660801, + -0.01737251505255699, + 0.02138480544090271, + -0.01589430309832096, + 0.0013779051369056106, + 0.011389274150133133, + 0.0014887710567563772, + -0.02110324054956436, + -0.0072432407177984715, + 0.009713967330753803, + -0.0073769837617874146, + -0.008686257526278496, + -0.011086592450737953, + -0.02253921888768673, + -0.014458324760198593, + -0.0071693300269544125, + 0.07196782529354095, + 0.0015142877819016576, + 0.01842838153243065, + 0.01340245921164751, + -0.0011552933137863874, + -0.016218101605772972, + -0.006240168120712042, + 0.020737208425998688, + 0.00786972139030695, + 0.00022096195607446134, + -0.024425700306892395, + -0.020413408055901527, + 0.0037448047660291195, + 0.015697207301855087, + -0.0370820127427578, + -0.006694190204143524, + 0.009791397489607334, + -0.0020413408055901527, + 0.014317542314529419, + 0.012438101693987846, + -0.005156145431101322, + -0.0008455726783722639, + -0.0023158660624176264, + 0.003713128622621298, + -0.008749609813094139, + 0.012205810286104679, + -0.01896335370838642, + 0.008130167610943317, + 0.02917005680501461, + 0.01107955351471901, + 0.014613185077905655, + -0.003660335438326001, + 0.0012855167733505368, + -0.007834525778889656, + 0.0021909219212830067, + 0.005585531238466501, + -0.0017412989400327206, + 0.003970056306570768, + -0.009354972280561924, + -0.005919888615608215, + -0.019442012533545494, + 0.007609274238348007, + 0.014444246888160706, + 0.017865251749753952, + -0.019005587324500084, + 0.00866513978689909, + -0.01962502859532833, + 0.00026968575548380613, + -0.011959441937506199, + 0.00032379888580180705, + -0.0005692877457477152, + -0.013367263600230217, + 0.014599107205867767, + 0.020272627472877502, + 0.01258592214435339, + -0.010861340910196304, + 0.017203576862812042, + 0.019892515614628792, + 0.011811620555818081, + 0.0029053911566734314, + -0.019498325884342194, + -0.014993296936154366, + 0.007130614947527647, + -0.012923799455165863, + -0.014275307767093182, + -0.004121396690607071, + -0.0028737152460962534, + -0.0018724023830145597, + 0.0003530551912263036, + -0.028142347931861877, + -0.023721788078546524, + -0.01958279497921467, + -0.00975620187819004, + -0.020483799278736115, + 0.0005657681613229215, + 0.014352737925946712, + 0.010431955568492413, + 0.046795979142189026, + 0.029676873236894608, + 0.001655949861742556, + 0.0026467039715498686, + 0.005265251733362675, + -0.008700335398316383, + -0.0036673746071755886, + 0.005430670455098152, + -0.010157430544495583, + 0.014204916544258595, + -0.04108022525906563, + 0.014402012340724468, + -0.029029276221990585, + -0.009221229702234268, + 0.0004619413521140814, + 0.014852514490485191, + 0.017189498990774155, + -0.010685363784432411, + -0.006666033994406462, + 0.010375643149018288, + 0.017640000209212303, + -0.006465419195592403, + -0.004469832871109247, + 0.010664246045053005, + -0.0013365503400564194, + -0.008876313455402851, + -0.0030039388220757246, + -0.016541900113224983, + -0.0024953633546829224, + 0.023341678082942963, + -0.007560000289231539, + 0.0019111174624413252, + 0.0029511454049497843, + -0.004603575449436903, + -0.022496985271573067, + 0.0070215086452662945, + 0.0036462571006268263, + 0.0010373883415013552, + 0.00967877171933651, + 0.014936983585357666, + 0.0019515922758728266, + -0.012177654542028904, + -0.015936536714434624, + 0.02062458172440529, + 0.012930838391184807, + 0.005761508829891682, + -0.018343912437558174, + -0.00808793306350708, + 0.00962245836853981, + -0.012853408232331276, + -0.008151285350322723, + -0.006866648327559233, + -0.009502793662250042, + 0.008820000104606152, + 0.011283687315881252, + 0.014514638110995293, + -0.003871508641168475, + 0.0024654469452798367, + 0.0017984916921705008, + -0.02221542038023472, + 0.018231285735964775, + 0.0028508382383733988, + -0.009340894408524036, + 0.013937430456280708, + 0.0053462013602256775, + 0.011769386008381844, + 0.020906146615743637, + 0.01088245864957571, + 0.0056946370750665665, + -0.006423184648156166, + -0.022792626172304153, + 0.015232626348733902, + -0.005230056121945381, + 0.021004693582654, + -0.024425700306892395, + 0.02670636959373951, + -0.011396313086152077, + 0.0029282683972269297, + 0.015471955761313438, + -0.03254882991313934, + 0.027621453627943993, + -0.03032447025179863, + 0.013029386289417744, + 0.023764023557305336, + -0.01183977723121643, + -0.024608716368675232, + 0.013965587131679058, + -0.013437654823064804, + -0.0038539108354598284, + 0.014359776861965656, + 0.021976090967655182, + 0.011332961730659008, + 0.004557821433991194, + 0.0060501121915876865, + 0.018203129991889, + 0.033309053629636765, + -0.02681899629533291, + 0.0015283660031855106, + -0.0030584917403757572, + 0.017175419256091118, + -0.0029282683972269297, + -0.02324312925338745, + 0.003155279438942671, + 0.0009775558719411492, + -0.009136760607361794, + 0.012480336241424084, + 0.007426257245242596, + -0.02418637089431286, + -0.02258145436644554, + 0.023397989571094513, + -0.00907340832054615, + 0.00817240308970213, + 0.0010065921815112233, + -0.019540559500455856, + 0.025861676782369614, + 0.004005251452326775, + -0.009699888527393341, + -0.0030514525715261698, + -0.001946312957443297, + 0.0313662588596344, + 0.018878884613513947, + 0.03772960975766182, + -0.001355907879769802, + 0.007757095620036125, + -0.004716201219707727, + 0.010657207109034061, + 0.012191732414066792, + 0.00042894555372186005, + -0.00975620187819004, + -0.012402906082570553, + -0.01583798974752426, + 0.002893072785809636, + -0.001099860412068665, + -0.02922637015581131, + -0.011480783112347126, + 0.00989698339253664, + 0.001328631304204464, + -0.012980112805962563, + -0.004871061537414789, + -0.0003963896888308227, + 0.017893409356474876, + 0.0026942179538309574, + 0.010896536521613598, + -0.00989698339253664, + -0.010523464530706406, + 0.0076515087857842445, + 0.0014403772074729204, + 0.0023176257964223623, + 0.008672179654240608, + 0.0054201120510697365, + 0.018949273973703384, + 0.005726313218474388, + -0.007042625918984413, + 0.007091899868100882, + -0.0031165643595159054, + 0.0033787712454795837, + 0.008263911120593548, + -0.0016814665868878365, + 0.032154638320207596, + 0.008834078907966614, + -0.006521732080727816, + 0.014141565188765526, + -0.0157394427806139, + -0.02708648145198822, + 0.0010497067123651505, + -0.001988547621294856, + -0.022567374631762505, + -0.0034051677212119102, + -0.01527486089617014, + -0.0035107543226331472, + -0.007827486842870712, + -0.006373911164700985, + -2.5901712433551438e-5, + -0.010129273869097233, + -0.005543296225368977, + 0.00819351989775896, + -0.006951117888092995, + 0.0049238549545407295, + 0.003846871666610241, + -0.0068842461332678795, + 0.011002123355865479, + -0.0034034079872071743, + -0.019160447642207146, + 0.018006034195423126, + 0.010270056314766407, + -0.019498325884342194, + -0.004709162283688784, + 0.0007417458691634238, + 0.014444246888160706, + -0.03803933039307594, + 0.01776670478284359, + -0.004226983524858952, + 0.006891285069286823, + 0.020709050819277763, + -0.006310558877885342, + 0.01337430253624916, + 0.03449162095785141, + 0.011776424944400787, + -0.00046326121082529426, + 0.0014104609144851565, + -0.01996290683746338, + 0.011980559676885605, + 0.033252738416194916, + -0.0009318017400801182, + -0.0021152514964342117, + 0.012360670603811741, + -0.018724022433161736, + -0.001446536392904818, + -0.036772292107343674, + 0.023764023557305336, + 0.008834078907966614, + -0.0070320675149559975, + 0.022299889475107193, + -0.006813854910433292, + 0.012212850153446198, + 0.0077993301674723625, + 0.0037483242340385914, + 0.010375643149018288, + 0.0012793575879186392, + -0.013775531202554703, + -0.008517319336533546, + 0.04617653787136078, + -0.029789498075842857, + -0.003137681633234024, + -0.001956871710717678, + -0.012501453049480915, + -0.012149497866630554, + -0.008862234652042389, + 0.015007374808192253, + 0.03620916232466698, + 0.008707374334335327, + -0.0014544554287567735, + 0.021131398156285286, + 0.0031429610680788755, + -0.0008064176654443145, + -0.010410838760435581, + -0.010460112243890762, + 0.0009326816070824862, + 0.0013532682787626982, + 0.00011103090946562588, + 0.02626994624733925, + -0.01112882699817419, + 0.01958279497921467, + -0.0007760614971630275, + 0.0032485476695001125, + 0.021905699744820595, + -0.006930000148713589, + 0.011438548564910889, + -0.026875309646129608, + 0.020258547738194466, + -0.005247653927654028, + 0.020300783216953278, + -0.02187754400074482, + 0.018569162115454674, + 0.017076872289180756, + -0.038461677730083466, + 0.00038209150079637766, + 0.013261676765978336, + 0.0032679052092134953, + -0.01672491617500782, + 0.0017747347010299563, + 0.000331937859300524, + 0.001854804577305913, + -0.0015565224457532167, + -0.015471955761313438, + -0.0062507265247404575, + -0.006993352435529232, + 0.0015776397194713354, + 0.007475531194359064, + 8.628404611954466e-5, + -0.00509983254596591, + 0.018400223925709724, + 0.006328156683593988, + -0.01687977835536003, + 0.006141620222479105, + 0.020737208425998688, + 0.014387933537364006, + -0.007222123444080353, + -0.008214637637138367, + 0.014514638110995293, + 0.019836202263832092, + -0.006729385815560818, + 0.00852435827255249, + -0.02576312981545925, + 0.01754145324230194, + 0.0026167877949774265, + -0.022623687982559204, + -0.003588184481486678, + -0.01027709525078535, + -0.0017307403031736612, + -0.001477332436479628, + -0.02718503028154373, + 0.002954664872959256, + -0.0020290224347263575, + -0.011192179284989834, + -0.0037518437020480633, + 0.0042410618625581264, + -0.012853408232331276, + 0.013662905432283878, + -0.016105474904179573, + -0.006993352435529232, + -0.027396202087402344, + -0.0061029051430523396, + 0.01897743158042431, + 0.0014500559773296118, + 0.008629944175481796, + -0.008207597769796848, + -0.029507935047149658, + 0.021793073043227196, + 0.026058772578835487, + 0.015584581531584263, + 0.01244514063000679, + -0.00376944150775671, + -0.012015755288302898, + -0.0063985479064285755, + -0.0026361453346908092, + -0.0002252514095744118, + -0.03187307342886925, + 0.028860336169600487, + -0.012775978073477745, + 0.01782301813364029, + -0.016161788254976273, + 0.008313184604048729, + -0.015387486666440964, + 0.006715307477861643, + 0.02314458228647709, + 0.009397206827998161, + 0.012107263319194317, + -0.015753520652651787, + 0.004329050425440073, + 0.011403352953493595, + 0.02210279367864132, + -0.0005917248781770468, + 0.0129660340026021, + 0.025509722530841827, + -0.01359955407679081, + -0.0006951117538847029, + 0.015317095443606377, + -0.016316648572683334, + 0.00036449372419156134, + 0.014585028402507305, + 0.01755553111433983, + 0.01057977695018053, + 0.0038398324977606535, + -0.00361810065805912, + 0.010586815886199474, + 0.0012336034560576081, + 0.007721900008618832, + -0.021919777616858482, + 0.029648717492818832, + 0.008876313455402851, + -0.0013215922517701983, + 0.007405139971524477, + 0.005504581145942211, + 0.005416592583060265, + -0.007707821670919657, + 0.007707821670919657, + -0.031169163063168526, + -0.021891621872782707, + 0.01269150897860527, + -0.012628156691789627, + -0.008200558833777905, + 0.01863955333828926, + -0.026509275659918785, + -0.011114749126136303, + -0.02467910759150982, + -0.003765922039747238, + 0.0016321928706020117, + -0.0022701118141412735, + -0.0011640922166407108, + 0.018006034195423126, + -0.004103798884898424, + -0.014514638110995293, + -0.01847061514854431, + 0.01699240319430828, + -0.0038820672780275345, + -0.002562234876677394, + -0.015387486666440964, + 0.0024496091064065695, + -0.012163575738668442, + -0.02532670460641384, + 0.005895251873880625, + -0.027762236073613167, + 0.023341678082942963, + -0.0004584218258969486, + 0.003963016904890537, + -0.0020413408055901527, + 0.012297319248318672, + -0.003695530816912651, + 0.029310839250683784, + 0.007750056218355894, + -0.013796648941934109, + 0.0028701957780867815, + -0.02527039311826229, + 0.041868604719638824, + -0.005342681892216206, + -0.0008913268684409559, + 0.010213743895292282, + 0.018456537276506424, + -0.00981955323368311, + 0.003677933244034648, + 0.004131955560296774, + -0.00180905032902956, + -0.020849833264946938, + -0.006542849354445934, + -0.011670839041471481, + -0.006271843798458576, + 0.030859442427754402, + -0.0012107263319194317, + 0.014655419625341892, + 0.0049238549545407295, + -0.018555084243416786, + 0.007679664995521307, + 0.014331621117889881, + 0.027382124215364456, + 0.013578436337411404, + 0.003545949934050441, + 0.020371174439787865, + 0.0092423465102911, + 0.01269150897860527, + 0.020638659596443176, + -0.014514638110995293, + 0.0012995949946343899, + 0.012874525971710682, + -0.002729413565248251, + -0.00869329646229744, + -0.01645743101835251, + 0.0007932193111628294, + -0.0015591620467603207, + 0.005353240296244621, + 0.012874525971710682, + 0.01754145324230194, + 0.011544134467840195, + 0.013888156972825527, + -0.012761900201439857, + -0.0043044136837124825, + 0.014275307767093182, + -0.008615866303443909, + 0.027818549424409866, + -0.013064581900835037, + -0.0022947487886995077, + 0.011508938856422901, + -0.0037518437020480633, + -0.00822167657315731, + -0.03657519817352295, + -0.002409134292975068, + -0.007686704397201538, + -0.009418324567377567, + 0.0041565923020243645, + -0.003331257263198495, + -0.0010928212432190776, + -0.0049238549545407295, + -0.018343912437558174, + -0.007531844079494476, + 0.03038078360259533, + 0.0066730729304254055, + -0.017738549038767815, + 0.012839330360293388, + 0.018245363608002663, + 0.021244022995233536, + -0.008714414201676846, + 0.025734974071383476, + -0.0012177653843536973, + -0.002442569937556982, + -0.0033682123757898808, + 0.005504581145942211, + 0.012480336241424084, + -0.0031165643595159054, + -0.01628849282860756, + 0.011009162291884422, + 0.01704871654510498, + 0.00540251424536109, + -0.006750503089278936, + -0.008918548002839088, + 0.010382682085037231, + 0.01666860468685627, + 0.018498772755265236, + 0.016865698620676994, + -0.010410838760435581, + 0.018512850627303123, + -0.0033259778283536434, + -0.007897877134382725, + 0.019385699182748795, + 0.003632178995758295, + -0.0019797487184405327, + -0.0035477096680551767, + -0.0020747766830027103, + -0.006739944685250521, + 0.001281997305341065, + -0.009186034090816975, + -0.004336089827120304, + 0.008545475080609322, + 0.0006858729175291955, + -0.003987653646618128, + 0.0047865924425423145, + -0.011924246326088905, + 0.016133632510900497, + -0.012198771350085735, + 0.0008090573246590793, + -0.03291486203670502, + 0.006370391231030226, + 0.016809387132525444, + 0.008123128674924374, + -0.00605715112760663, + -0.015387486666440964, + 0.005821341183036566, + -0.001914636930450797, + 0.0065111736766994, + 0.0156831294298172, + -0.0006168017280288041, + 0.017738549038767815, + 0.019765811040997505, + -0.014951062388718128, + 0.014430168084800243, + -0.014296425506472588, + -0.015528269112110138, + -0.010263017378747463, + -0.002153966575860977, + 0.004325530957430601, + -0.0014658939326182008, + 0.000648037763312459, + -0.014824358746409416, + -0.03587128594517708, + -0.006243687588721514, + 0.00039858941454440355, + 0.014838436618447304, + 0.0030884079169481993, + 0.005986759904772043, + -0.0015459638088941574, + -0.015823911875486374, + -0.0041636317037045956, + -0.0019375140545889735, + 0.009066369384527206, + 0.0160210058093071, + -0.011853855103254318, + 0.0156831294298172, + -0.027874860912561417, + 0.027241341769695282, + 0.0035213129594922066, + 0.01590838097035885, + -0.01572536490857601, + 0.030408939346671104, + 0.007433296646922827, + 0.00028134428430348635, + 0.011748269200325012, + -0.004885139875113964, + 0.007496648468077183, + -0.011663799174129963, + -0.008207597769796848, + 0.00409675994887948, + 0.009657653979957104, + 0.025650504976511, + -0.008756648749113083, + 0.012677431106567383, + -0.0010444273939356208, + -0.0029617040418088436, + -0.026227710768580437, + 0.004892178811132908, + -0.012670392170548439, + -0.017034638673067093, + 0.006092346739023924, + 0.0014966899761930108, + -0.004332569893449545, + -0.013796648941934109, + 0.0008204958285205066, + -0.0023000279907137156, + 0.02741027995944023, + -0.0024654469452798367, + 0.0015582821797579527, + -0.004251620266586542, + -0.0061768158338963985, + 0.01000257022678852, + 0.002426731865853071, + -0.01203687209635973, + 0.017640000209212303, + -0.0061873747035861015, + 0.008552514016628265, + -0.012768939137458801, + -0.012543687596917152, + 0.002671340946108103, + -0.020272627472877502, + 0.02659374475479126, + -0.0013787850039079785, + -0.009833632037043571, + -0.03668782487511635, + 0.006556927692145109, + 0.01151597872376442, + -0.0029916202183812857, + -0.012304358184337616, + 0.002092374488711357, + 0.024636872112751007, + -0.02422860451042652, + 0.0035371510311961174, + -0.012297319248318672, + -0.0008825279655866325, + -0.014409051276743412, + 0.009573184885084629, + 0.005786145571619272, + 0.02494659274816513, + 0.005022402387112379, + -0.011727151460945606, + 0.03671598061919212, + -0.009256425313651562, + 0.0017219414003193378, + 0.005972682032734156, + 0.007081340998411179, + 0.019864358007907867, + -1.1775380698964e-5, + 0.010270056314766407, + 0.008200558833777905, + -0.019976984709501266, + 0.0046387710608541965, + -0.003472039243206382, + -0.007489609532058239, + 0.002593910787254572, + -0.03339352086186409, + -0.010945810936391354, + -0.0002985020983032882, + -0.00198678788729012, + -0.002986341016367078, + -0.008545475080609322, + 0.006060670595616102, + -0.010417877696454525, + -0.02165229246020317, + 0.004424078390002251, + 0.0024936033878475428, + 0.0032925421837717295, + -0.007827486842870712, + -0.012290280312299728, + -0.003091927617788315, + 0.008763687685132027, + 0.01627441495656967, + -0.019864358007907867, + 0.031056538224220276, + -0.003334776731207967, + 0.007183408364653587, + 0.016541900113224983, + 0.013613631948828697, + -0.03280223533511162, + -0.011952403001487255, + -0.0007008310640230775, + -0.0009898743592202663, + -0.01909005641937256, + 0.0019674303475767374, + 0.0036427376326173544, + 0.004307933151721954, + 0.012029833160340786, + 0.0008926466689445078, + -0.015936536714434624, + 0.003151759970933199, + 0.005180782172828913, + -0.021947933360934258, + 0.0030127374920994043, + 0.0414462573826313, + 0.005983240436762571, + -0.01507776603102684, + 0.020877990871667862, + -0.012205810286104679, + 0.0024478493724018335, + 0.011466704308986664, + 0.01572536490857601, + -0.008256872184574604, + 0.03108469396829605, + -0.014599107205867767, + -0.022722234949469566, + -0.01063609030097723, + 0.0008372137090191245, + 0.028100112453103065, + -0.0031412013340741396, + -0.017147263512015343, + 0.0077148606069386005, + 0.0015433240914717317, + 0.021356649696826935, + -0.009713967330753803, + -0.00487810093909502, + 0.02933899685740471, + -0.012951956130564213, + 0.003903184551745653, + 0.0001954451872734353, + -0.009988492354750633, + -0.015331174246966839, + 0.0063985479064285755, + -0.005863575730472803, + 0.0075811175629496574, + -0.0017544972943142056, + -0.013346145860850811, + -0.00726435799151659, + -0.0025675140786916018, + 0.018724022433161736, + 0.0007259078556671739, + -0.004153072834014893, + 0.0006251606391742826, + 0.010403799824416637, + -0.020709050819277763, + -0.011938325129449368, + -0.009601341560482979, + -0.021976090967655182, + 0.014908827841281891, + -0.022299889475107193, + -0.021145476028323174, + 0.0018196090823039412, + 0.0049872067756950855, + -0.0063246372155845165, + -0.0031728772446513176, + -0.004821788053959608, + -0.008102011866867542, + 0.0068208943121135235, + -0.024636872112751007, + 0.004835866391658783, + -0.00014551152708008885, + 0.029536090791225433, + 0.020849833264946938, + 0.01395150925964117, + 0.02297564409673214, + -0.0014087011804804206, + -0.0206105038523674, + 0.015331174246966839, + 0.004684525541961193, + -0.014092291705310345, + 0.005068156868219376, + -0.006553408224135637, + 7.347067730734125e-5, + 0.0009133240673691034, + -0.0028226817958056927, + -0.002565754344686866, + 0.016584135591983795, + -0.014585028402507305, + -0.01738659292459488, + -0.00032027935958467424, + 0.0036462571006268263, + -0.0034790784120559692, + 0.018020112067461014, + -0.00043488480150699615, + -0.0044522350654006, + 0.0027206146623939276, + -0.004325530957430601, + 0.002576312981545925, + 0.020934302359819412, + -0.00819351989775896, + -0.001720181666314602, + -0.016035085543990135, + -0.002863156609237194, + 0.014768045395612717, + -0.016260335221886635, + 0.006391508504748344, + 0.012881564907729626, + -0.015556425787508488, + -0.04215016961097717, + -0.010241899639368057, + 0.002363380044698715, + 0.011199218221008778, + 0.002414413494989276, + -0.042910393327474594, + -0.0048499442636966705, + -0.008644022978842258, + -0.01452871598303318, + -0.011044357903301716, + 0.01897743158042431, + -0.01628849282860756, + 0.01634480617940426, + -0.004297374747693539, + 0.03015553206205368, + -0.003396368818357587, + -0.015669051557779312, + -0.02182123064994812, + 0.005962123163044453, + 0.01901966519653797, + 0.013733296655118465, + -0.006345754489302635, + 0.015669051557779312, + -0.019610950723290443, + -0.011241452768445015, + -0.00045798186329193413, + 0.0017395392060279846, + 0.00540251424536109, + -0.008538436144590378, + -0.00927050318568945, + -0.0017844134708866477, + -0.012726704590022564, + -0.004234022460877895, + -0.015246705152094364, + 0.006303519941866398, + -0.01759776659309864, + 0.009840670973062515, + 0.03384402394294739, + 0.005497542209923267, + -0.00542715098708868, + 0.019343465566635132, + -0.019779888913035393, + -0.01340245921164751, + -0.012360670603811741, + -0.013043464161455631, + -0.010185587219893932, + -0.01890704035758972, + -0.006926480680704117, + 0.00849620159715414, + 0.0044275978580117226, + -0.012050949968397617, + -0.0019551117438822985, + -0.014078212901949883, + -0.0013515084283426404, + 0.00467396667227149, + 0.004821788053959608, + 0.017203576862812042, + -0.0016638687811791897, + 0.004596536513417959, + 0.011396313086152077, + -0.008700335398316383, + -0.009312737733125687, + 0.022736314684152603, + 0.014796202071011066, + -0.015767598524689674, + 0.03038078360259533, + 0.0013603073311969638, + -0.014838436618447304, + 0.012832291424274445, + 0.006877207197248936, + -0.018414301797747612, + 0.023918883875012398, + 0.011340000666677952, + 0.005451788194477558, + -0.016105474904179573, + -0.00527581013739109, + 0.0013823045883327723, + -0.010164469480514526, + -0.008629944175481796, + 0.009721006266772747, + -0.012712626717984676, + 0.005497542209923267, + -0.041305478662252426, + -0.002229637000709772, + -0.017175419256091118, + 0.014028939418494701, + -0.02532670460641384, + -0.012149497866630554, + 0.037645142525434494, + 0.0004159671952947974, + 0.013796648941934109, + 0.010544581338763237, + -0.007827486842870712, + -0.013085698708891869, + 0.0045226258225739, + 0.004740838427096605, + -0.009087486192584038, + -0.01617586612701416, + 0.0025569554418325424, + 0.019920671358704567, + 0.02045564353466034, + 0.012853408232331276, + -0.02051195688545704, + -0.006190894171595573, + -0.005307486280798912, + -0.0027804470155388117, + 0.005353240296244621, + -7.495548925362527e-5, + 0.0038855867460370064, + -0.018681788817048073, + -0.01644335314631462, + -0.001234483323059976, + -0.012846369296312332, + -0.002155726309865713, + -0.01271966565400362, + 0.024003352969884872, + 0.007496648468077183, + -0.012374749407172203, + 0.0039559779688715935, + -0.015063688158988953, + -0.004219944588840008, + -0.007771173492074013, + -0.0011174582177773118, + 0.0037940784823149443, + 0.0008724092622287571, + -0.007961229421198368, + -0.00844692811369896, + 0.0006753142806701362, + -0.004526145290583372, + 0.0010074721649289131, + 0.0036216203588992357, + 0.022187264636158943, + -0.020188158378005028, + -0.004698603413999081, + -0.011537095531821251, + -0.003586424747481942, + -0.002245475072413683, + -0.012874525971710682, + 0.029536090791225433, + -0.012360670603811741, + 0.007426257245242596, + -0.021849386394023895, + -0.012248045764863491, + -0.010959888808429241, + -0.008461005985736847, + 0.0013479888439178467, + 0.009277542121708393, + 0.029254525899887085, + -0.0023563408758491278, + 0.017090950161218643, + 0.02659374475479126, + 0.0180905032902956, + -0.024327151477336884, + -0.007968268357217312, + -0.005986759904772043, + 0.02155374363064766, + -0.027832627296447754, + 0.007447374518960714, + 0.004895698744803667, + -0.006514693144708872, + 0.005993799306452274, + -0.016626369208097458, + -0.005117430351674557, + 0.006708268541842699, + 0.008545475080609322, + -0.0004571019671857357, + -0.014380894601345062, + -0.010509385727345943, + -0.013852961361408234, + 0.0007628631428815424, + -0.03344983235001564, + -0.014458324760198593, + 0.013177207671105862, + -0.005972682032734156, + -0.01600692793726921, + -0.007658547721803188, + 0.0103052519261837, + 0.0156268160790205, + -0.013726257719099522, + -0.002175083849579096, + 0.011924246326088905, + -0.022680001333355904, + 0.03004290722310543, + -0.005546816159039736, + -0.03153519704937935, + -0.0033259778283536434, + 0.00301625719293952, + -0.007672626059502363, + -0.005627765785902739, + 0.005032961256802082, + -0.0064724585972726345, + 0.0011737709864974022, + 0.01962502859532833, + 0.018118660897016525, + -0.015303017571568489, + 0.007623352576047182, + -0.018738102167844772, + 0.02172268182039261, + 0.003695530816912651, + -0.014050056226551533, + 0.012029833160340786, + 0.01963910646736622, + 0.004216424655169249, + -0.014444246888160706, + -0.017062794417142868, + -0.0021381285041570663, + 0.00822167657315731, + 0.005465866066515446, + 0.007123576011508703, + -0.027705922722816467, + -0.012149497866630554, + 0.012438101693987846, + 0.004360726568847895, + -0.009889944456517696, + 0.00683849211782217, + -0.0021627654787153006, + 0.010481229983270168, + -0.0025375979021191597, + 0.0017879330553114414, + -0.009509832598268986, + -0.007190447300672531, + -0.017344359308481216, + 0.007412179373204708, + -0.016358884051442146, + 0.005673519801348448, + 0.004251620266586542, + -0.018709944561123848, + 0.0185410063713789, + -0.01055162027478218, + -0.0002641864703036845, + 0.005955084227025509, + 0.02303195744752884, + -0.011501899920403957, + 0.008137207478284836, + 0.010206704027950764, + 0.0205541905015707, + 0.007447374518960714, + 0.007257319055497646, + -0.005384916439652443, + 0.0005807263078168035, + -0.01617586612701416, + 0.002036061603575945, + 0.0015327654546126723, + -0.005187821574509144, + -0.01060793362557888, + 0.01973765529692173, + 0.010981006547808647, + 0.018301676958799362, + -0.0017861733213067055, + -0.004800670780241489, + -0.009003017097711563, + -0.011501899920403957, + 0.0025041622575372458, + 0.0014914106577634811, + -0.020160000771284103, + -0.01727396808564663, + 0.004469832871109247, + -0.006366871763020754, + -0.02329944260418415, + -0.009066369384527206, + -0.004554301965981722, + -0.01951240375638008, + 0.01364882756024599, + 0.0005785265821032226, + -0.003377011278644204, + -0.01138223521411419, + 0.03268961235880852, + 0.009601341560482979, + 0.00992514006793499, + 0.018301676958799362, + -0.004212905187159777, + -0.0010673045180737972, + 0.005444748792797327, + -0.0015142877819016576, + 0.01765407994389534, + -0.001735139754600823, + -0.0065991622395813465, + 0.004100279416888952, + 0.004589497577399015, + -0.0020290224347263575, + 0.001176410703919828, + 0.0039207823574543, + -0.007940112613141537, + -0.0010197905357927084, + -0.008791844360530376, + 0.00017454785120207816, + -0.006159218028187752, + -0.006933520082384348, + -0.029423465952277184, + -0.008200558833777905, + 0.019765811040997505, + 0.02363731898367405, + -0.012466257438063622, + -0.008235754445195198, + 0.024496091529726982, + 0.008207597769796848, + -0.020596425980329514, + 0.0011209776857867837, + -0.009488715790212154, + -0.018611397594213486, + -0.0009300419478677213, + 0.0008253352134488523, + -0.0067469836212694645, + 0.0031746369786560535, + 0.009882905520498753, + 0.018822571262717247, + -0.013761453330516815, + 0.0002578072890173644, + 0.008080894127488136, + -0.008834078907966614, + -0.010072961449623108, + -0.001161452615633607, + 0.00487810093909502, + -0.011586369015276432, + 0.008207597769796848, + -0.009685810655355453, + 0.007426257245242596, + 0.0009889944922178984, + 0.006944078486412764, + 0.030606035143136978, + 0.004216424655169249, + -0.007405139971524477, + -0.0008658100850880146, + 0.014753967523574829, + 0.013409498147666454, + -0.006539329886436462, + -0.002097653690725565, + -0.021187711507081985, + 0.003334776731207967, + -0.019822124391794205, + 0.009713967330753803, + 0.011375196278095245, + 0.005388435907661915, + 0.01930123008787632, + 0.012466257438063622, + 0.009024134837090969, + -0.0022085197269916534, + -0.018329832702875137, + -0.02401743084192276, + 0.006300000473856926, + 0.0002822241804096848, + 0.0011588128982111812, + -0.013423576019704342, + -0.0061169834807515144, + -0.00019643506675492972, + -0.0031148046255111694, + -0.014317542314529419, + -0.028212739154696465, + 0.0005371718434616923, + -0.0018477654084563255, + 0.0031429610680788755, + 0.01326871570199728, + 0.010945810936391354, + -0.009805475361645222, + -0.00774301728233695, + -0.01186793390661478, + -0.010995084419846535, + 0.011445587500929832, + -0.01782301813364029, + -0.026030616834759712, + 0.009699888527393341, + -0.005743911024183035, + -0.018724022433161736, + 0.0013215922517701983, + 0.014289386570453644, + 0.028804024681448936, + 0.011663799174129963, + -0.012839330360293388, + -0.00975620187819004, + 0.0014975699596107006, + 0.015528269112110138, + -0.003106005722656846, + 0.005652402527630329, + -0.018006034195423126, + -0.0005904050776734948, + 0.007165810558944941, + -0.005532737821340561, + -0.000813456776086241, + 0.014000782743096352, + 0.020934302359819412, + -0.03443530946969986, + -0.00605715112760663, + 0.0037940784823149443, + 0.020300783216953278, + 0.02824089489877224, + 0.01678122952580452, + -0.012515531852841377, + 0.014683576300740242, + -0.021638212725520134, + 0.00329078221693635, + -0.005941005889326334, + 0.00852435827255249, + 0.0035406704992055893, + 0.006813854910433292, + 0.0309157557785511, + 0.00972804520279169, + -0.004117877222597599, + 0.014366816729307175, + -0.001856564311310649, + -0.014683576300740242, + 0.016809387132525444, + -0.02998659387230873, + 0.00153892464004457, + -0.0060501121915876865, + 0.0205541905015707, + -0.0046387710608541965, + -0.0012432822259142995, + 1.9866229195031337e-6, + -0.02253921888768673, + 0.015204469673335552, + 0.0231868177652359, + -0.010094079189002514, + 0.006739944685250521, + 0.01585206761956215, + 0.0022665923461318016, + 0.00839061476290226, + -0.006708268541842699, + 0.002896592253819108, + -0.001129776588641107, + 0.02011776715517044, + -0.017090950161218643, + -0.01231139712035656, + 0.004944972228258848, + -0.019399777054786682, + -0.002338743070140481, + -0.014092291705310345, + 0.021089162677526474, + -0.007623352576047182, + 0.004839385859668255, + -0.0117623470723629, + 0.0019691900815814734, + 0.005011843983083963, + -0.007848603650927544, + -0.014782123267650604, + -0.00012934357800986618, + -4.388442903291434e-5, + 0.0023246649652719498, + -0.03271776810288429, + 0.02369363233447075, + 0.017752626910805702, + -0.01699240319430828, + -0.017175419256091118, + 0.01022782176733017, + -0.008580670692026615, + 0.009291620925068855, + 0.0005186941707506776, + -0.01472581084817648, + 0.00477251410484314, + 0.0015890783397480845, + -0.01907597854733467, + 0.003120084060356021, + -0.0209483802318573, + -0.0006660754443146288, + -0.01112882699817419, + 0.01447240263223648, + 0.003737765597179532, + 0.0058318995870649815, + -0.0001653090148465708, + -0.003797597950324416, + -0.027888940647244453, + 0.005684078671038151, + 0.02083575539290905, + 0.05059709772467613, + 0.028156425803899765, + 0.00814424641430378, + 0.003100726520642638, + 0.030352627858519554, + -0.020849833264946938, + 0.004811229184269905, + 0.011065475642681122, + -0.028747711330652237, + -0.010650168173015118, + -0.00808793306350708, + -0.000979315722361207, + 0.02769184485077858, + 0.013458771631121635, + -0.008228715509176254, + -0.0024020951241254807, + -0.010361564345657825, + 0.001868882798589766, + -0.0016260335687547922, + 0.00967877171933651, + -0.012402906082570553, + -0.0013295112876221538, + -0.010312290862202644, + 0.0037201677914708853, + 0.016696760430932045, + -0.005610167980194092, + -0.010037765838205814, + -0.01744290627539158, + -0.02265184558928013, + 0.006571006029844284, + 0.026579666882753372, + -0.019005587324500084, + -0.01381776574999094, + -0.006831452716141939, + -0.010354525409638882, + 0.019230838865041733, + 0.006363352295011282, + 0.011072514578700066, + -0.004216424655169249, + 0.0036110617220401764, + 0.004543743096292019, + -0.02221542038023472, + -0.0034861175809055567, + -0.011480783112347126, + -0.004529665224254131, + -0.01962502859532833, + 0.02051195688545704, + -0.02494659274816513, + 0.015148157253861427, + -0.013515084981918335, + 0.010326369665563107, + 0.00301625719293952, + -0.016907934099435806, + -0.012649274431169033, + -0.009228268638253212, + 0.017090950161218643, + 0.03820826858282089, + -0.012557766400277615, + -0.010136313736438751, + -0.02911374531686306, + -0.014268268831074238, + -0.0043783243745565414, + 0.011635643430054188, + 0.01545787788927555, + -0.028860336169600487, + 0.019005587324500084, + -0.013655866496264935, + -0.0184846930205822, + -0.0029053911566734314, + -0.008784804493188858, + 0.006623799446970224, + -0.004990726709365845, + -0.005398994777351618, + -0.018724022433161736, + -0.02203240431845188, + -0.0003561347839422524, + -0.03575866296887398, + 0.009425363503396511, + -0.015190391801297665, + 0.03392849490046501, + -0.005546816159039736, + 0.00015684009122196585, + 0.021905699744820595, + 0.0006581564666703343, + -0.01963910646736622, + 0.006127542350441217, + -0.00706022372469306, + 0.002113491762429476, + -0.02532670460641384, + -0.009629497304558754, + -0.020357096567749977, + -0.004445195663720369, + -0.012015755288302898, + 0.003931341227144003, + 0.012578883208334446, + -0.014085251837968826, + -0.0016805867198854685, + 0.01733027957379818, + 0.004670447204262018, + 0.012740782462060452, + -0.004536704160273075, + -0.005040000192821026, + 0.005462346598505974, + 0.020272627472877502, + -0.019258994609117508, + -0.03905296325683594, + 0.005388435907661915, + 0.00945352017879486, + 0.00693703955039382, + 0.024763576686382294, + -0.0035406704992055893, + -0.017076872289180756, + 0.009946257807314396, + -0.002426731865853071, + -0.020145922899246216, + 0.019385699182748795, + -0.0014060615794733167, + 0.019836202263832092, + 0.004814748652279377, + 0.0010162709513679147, + -0.016372961923480034, + 0.0022225978318601847, + 0.02619955502450466, + 0.009995531290769577, + 0.007334749214351177, + -0.003846871666610241, + 0.009742123074829578, + 0.018949273973703384, + -0.015035531483590603, + 0.007750056218355894, + 0.02466502971947193, + 0.0005816061748191714, + -0.01657005585730076, + 0.01600692793726921, + -0.008939665742218494, + -0.012409945018589497, + 0.012592962011694908, + 0.0031992739532142878, + 0.0044311173260211945, + -0.013001229614019394, + -0.0128252524882555, + -0.00034777584369294345, + 0.02379217930138111, + 0.010713520459830761, + 0.0013585475971922278, + -0.006152179092168808, + -0.0051983799785375595, + 0.009214190766215324, + 0.014409051276743412, + 0.0019973465241491795, + 0.004656368866562843, + -0.005476424936205149, + -0.002996899653226137, + -0.0131631288677454, + -0.004768994636833668, + 0.010481229983270168, + 0.022285811603069305, + 0.016907934099435806, + -0.015556425787508488, + 0.006500614807009697, + 0.0030549722723662853, + -0.0005301327328197658, + 0.010122234933078289, + 0.007933072745800018, + 0.00226131291128695, + 0.008453967049717903, + 0.009312737733125687, + 0.008946704678237438, + -0.012409945018589497, + -0.009235307574272156, + -0.019258994609117508, + -0.0022894693538546562, + -0.006437262985855341, + -0.008883352391421795, + 0.0012907962081953883, + -0.016682682558894157, + -0.013367263600230217, + -0.01545787788927555, + -0.03733542189002037, + -0.006099385675042868, + 0.01439497247338295, + 0.02757922001183033, + 0.03344983235001564, + 0.00027980448794551194, + -0.004730279557406902, + -0.0057685477659106255, + -0.011924246326088905, + 0.011262570507824421, + 0.00706022372469306, + -0.0014122207649052143, + -0.015162235125899315, + 0.015612738206982613, + -0.01733027957379818, + -0.004740838427096605, + -0.010502346791327, + 0.007285475265234709, + 0.015120000578463078, + 0.003677933244034648, + -0.005863575730472803, + -0.009369051083922386, + -0.011171062476933002, + -0.026903465390205383, + -0.0068103354424238205, + -0.015964694321155548 + ], + "142927a5-1925-4ba1-b05d-67ad5f108340": [ + -0.011733305640518665, + -0.03489170968532562, + -0.017259499058127403, + -0.0012794105568900704, + -0.06399203091859818, + -0.008837608620524406, + 0.010256786830723286, + 0.04650316759943962, + 0.015510613098740578, + 0.03807410970330238, + -0.00494203669950366, + -0.002105472609400749, + -0.013747391290962696, + -0.018664341419935226, + -0.006723177153617144, + -0.008371717296540737, + -0.05338403210043907, + 0.025631215423345566, + 0.009669046849012375, + -0.004580074921250343, + 0.05281062796711922, + -0.04154321178793907, + -0.023724643513560295, + 0.024857118725776672, + -0.04165789484977722, + -0.02335193008184433, + 0.02620462141931057, + -0.005214404314756393, + -0.01575431041419506, + -0.019696472212672234, + -0.019065726548433304, + 0.019954504445195198, + 0.040625765919685364, + -0.008421890437602997, + 0.006834274157881737, + -0.01721649430692196, + -0.022061768919229507, + 0.024971799924969673, + -0.03970831632614136, + -0.019811153411865234, + -0.001007043058052659, + 0.02738010138273239, + 0.027337096631526947, + 0.012478732503950596, + -0.01277977041900158, + 0.033114153891801834, + 0.02051357366144657, + 0.002637664321810007, + 0.0038919884245842695, + -0.010557824745774269, + -0.006640749983489513, + 0.024971799924969673, + -0.008429057896137238, + 0.03537910431623459, + 0.0023258752189576626, + 0.0059454962611198425, + 0.013969586230814457, + 0.09220357239246368, + 0.04332076758146286, + -0.030247129499912262, + -0.0019424103666096926, + 0.013188321143388748, + 0.0027200912591069937, + 0.02336626499891281, + -0.016858115792274475, + -0.03543644770979881, + -0.00027079961728304625, + 0.01182648353278637, + -0.01879335753619671, + 0.0034314722288399935, + 0.003845399245619774, + 0.023738978430628777, + -0.05123376101255417, + 0.005615788046270609, + 0.0032899128273129463, + -0.01678643934428692, + 0.05126243084669113, + -0.008013338781893253, + 0.017302503809332848, + 0.0005178566207177937, + -0.04449624940752983, + 0.02059958502650261, + 0.019782481715083122, + -0.023265918716788292, + 0.03532176464796066, + 0.016456732526421547, + -0.04980025067925453, + -0.03569447994232178, + -0.04028172045946121, + -0.01671476475894451, + 0.027179410681128502, + 0.02587491273880005, + 0.0029870830476284027, + 0.0031626885756850243, + -0.016413725912570953, + -0.009912744164466858, + 0.016313379630446434, + 0.026591669768095016, + -0.040224380791187286, + -0.01289445161819458, + -0.03431830555200577, + 0.009160149842500687, + -0.03299947455525398, + -0.0066049122251570225, + 0.018033595755696297, + -0.017617877572774887, + 0.009403846226632595, + 0.004447474610060453, + -0.011790646240115166, + 0.03818879276514053, + 0.031451281160116196, + -0.021101314574480057, + 0.014191781170666218, + 0.004626663867384195, + 0.006275204010307789, + -0.0667443722486496, + -0.027337096631526947, + -0.035035062581300735, + -0.00490978267043829, + -0.07832716405391693, + 0.05114775151014328, + 0.009970084764063358, + 0.004497647751122713, + -0.020871952176094055, + 0.012342548929154873, + -0.020241206511855125, + -0.01859266683459282, + 0.022348470985889435, + 0.0020105023868381977, + 0.016012342646718025, + -0.010887532494962215, + -0.022692514583468437, + -0.010987878777086735, + 0.035121072083711624, + -0.0126292509958148, + 0.016542742028832436, + 0.03021845780313015, + 0.050975728780031204, + -0.013826235197484493, + 0.034719690680503845, + -0.013625542633235455, + 0.0012390930205583572, + 0.0012050470104441047, + -0.016313379630446434, + 0.007468604017049074, + 0.016241705045104027, + -0.04945620521903038, + 0.04108448699116707, + -0.0012068388750776649, + 0.0038238964043557644, + -0.0336015485227108, + 0.025846242904663086, + 0.035866498947143555, + 0.008859111927449703, + -0.028512578457593918, + 0.0061820256523787975, + 0.019997509196400642, + 0.03426096588373184, + -0.032512079924345016, + 0.005264577455818653, + -0.00913147907704115, + -0.040855128318071365, + 0.02207610383629799, + -0.004415220580995083, + -0.007547446992248297, + -0.005189317744225264, + 0.07018480449914932, + 0.021431023254990578, + -0.03569447994232178, + 0.02368163876235485, + 0.024269377812743187, + -0.02398267574608326, + -0.015137899667024612, + 0.0024728102143853903, + -0.02262083813548088, + -0.03400293365120888, + 0.010823024436831474, + 0.0006571761914528906, + 0.03773006796836853, + -0.041571881622076035, + 0.012500234879553318, + -0.008751598186790943, + -0.01336751040071249, + -0.008586743846535683, + -0.014822526834905148, + 0.016858115792274475, + 0.042317308485507965, + -0.012700927443802357, + -0.016227370128035545, + 0.024885788559913635, + 0.022147778421640396, + 0.0009998754831030965, + 0.03827480226755142, + 0.030935214832425117, + -0.012235035188496113, + -0.013510862365365028, + 0.008493565954267979, + -0.011747640557587147, + 0.021531367674469948, + 0.03116457723081112, + -0.025631215423345566, + -0.05301131680607796, + -0.057655900716781616, + 0.006981209386140108, + -0.055763665586709976, + 0.006440057884901762, + 0.006235782522708178, + -0.00018366887525189668, + 0.020212536677718163, + -0.02524416707456112, + 0.004347128793597221, + -0.024771107360720634, + 0.009726387448608875, + 0.00496353954076767, + -0.028584253042936325, + -0.006013588048517704, + -0.011317586526274681, + 0.016843780875205994, + -0.013403348624706268, + 0.0006329856696538627, + -0.017990591004490852, + 0.013095143251121044, + 0.03084920346736908, + -0.04934152588248253, + -0.05117642134428024, + -0.0270647294819355, + -0.015309921465814114, + 0.039163582026958466, + -0.029100317507982254, + -0.0023402103688567877, + 0.050775036215782166, + 0.009497025050222874, + 0.02313690260052681, + -0.05527627095580101, + -0.021072644740343094, + 0.0008816106128506362, + 0.00716398237273097, + -0.025731561705470085, + 0.031651969999074936, + -0.007425598334521055, + 0.03600985184311867, + 0.0038382315542548895, + -0.0040317559614777565, + 0.002596450736746192, + 0.01817694678902626, + 0.018019260838627815, + -0.021517032757401466, + 0.046761199831962585, + 0.03738602623343468, + -0.005246658343821764, + -0.004164355807006359, + 0.034088943153619766, + -0.01066533848643303, + -0.00925332773476839, + -0.020972298458218575, + 0.02905731275677681, + -0.024914460256695747, + -0.014069932512938976, + -0.027193745598196983, + -0.017947586253285408, + -0.03887687996029854, + -0.008199695497751236, + -0.00024033745285123587, + -0.026692016050219536, + 0.037558045238256454, + -0.02588924765586853, + 0.019366763532161713, + -0.026562999933958054, + -0.007905825041234493, + 0.00918881967663765, + -0.042862046509981155, + 0.015123564749956131, + -0.02240581065416336, + 0.027107734233140945, + 0.011066721752285957, + -0.019209077581763268, + 0.019080061465501785, + -0.00860824715346098, + -0.006730344612151384, + 0.026491323485970497, + 0.008106517605483532, + 0.013195489533245564, + 0.01923774741590023, + 0.005698215216398239, + -1.1059330063289963e-5, + -0.018449315801262856, + 0.013324505649507046, + 0.019252082332968712, + -0.0389055497944355, + -0.02048490382730961, + 0.003981582820415497, + -0.01658574864268303, + 0.022993551567196846, + 0.0047986856661736965, + 0.024656428024172783, + -0.008242701180279255, + -0.028584253042936325, + 0.0018510239897295833, + -0.004325625952333212, + 0.01341768354177475, + -0.035350434482097626, + -0.013790396973490715, + 0.024040017277002335, + -0.011224408634006977, + 0.01415594294667244, + 0.007733803708106279, + 0.030046436935663223, + -0.010278290137648582, + -0.03231138736009598, + -0.012700927443802357, + 0.04808003455400467, + 0.013166818767786026, + -0.01062233280390501, + -0.012485899962484837, + -0.009704884141683578, + 0.02768114022910595, + 0.010536322370171547, + 0.028999973088502884, + -0.0028562750667333603, + -0.0076621281914412975, + 0.009045468643307686, + -0.000750354549381882, + -0.05226588994264603, + 0.014808191917836666, + 0.023509616032242775, + -0.02662033960223198, + 0.027093399316072464, + 0.018893703818321228, + -0.0038669018540531397, + -0.01562529429793358, + -0.013955251313745975, + -0.029960425570607185, + -0.020742936059832573, + -0.037127990275621414, + 0.01078001968562603, + 0.0011727929813787341, + -0.017589207738637924, + -0.04515566676855087, + -0.013123813085258007, + 0.004762847442179918, + -0.020785940811038017, + 0.045270346105098724, + -0.0386761873960495, + -0.014672007411718369, + 0.01410576980561018, + -0.0008417410426773131, + -0.002811477752402425, + 0.01743151992559433, + 0.014865531586110592, + -0.010249619372189045, + 0.000738707254640758, + -0.022176450118422508, + 0.024341054260730743, + -0.020470568910241127, + 0.022563498467206955, + -0.007454268634319305, + -0.01119573786854744, + -0.017359845340251923, + 0.017718223854899406, + -0.0012265497352927923, + -0.03170931339263916, + -0.01956745609641075, + -0.017374180257320404, + -0.011582787148654461, + -0.00356765603646636, + 0.041371192783117294, + 0.013073640875518322, + 0.016671758145093918, + -0.007590452674776316, + 0.028354890644550323, + -0.01146093849092722, + 0.04937019571661949, + 0.009059803560376167, + -0.0022129861172288656, + -0.008307209238409996, + 0.0037522208876907825, + 0.05713983625173569, + 0.03087787516415119, + -0.0030999723821878433, + 0.01072984654456377, + -0.003422512672841549, + 0.011489608325064182, + 0.016098354011774063, + -0.01573997549712658, + 0.06617096811532974, + 0.02950170263648033, + 0.016098354011774063, + -0.004956372082233429, + -0.04119917005300522, + -0.015668299049139023, + -0.020327217876911163, + -0.011740473099052906, + -0.01495154295116663, + -0.0035371938720345497, + -0.04151454195380211, + 0.021846741437911987, + 0.014277791604399681, + 0.01067250594496727, + 0.015596623532474041, + 0.012328214012086391, + -0.004239615518599749, + -0.023609962314367294, + 0.0114179328083992, + 0.0034243047703057528, + 0.020628254860639572, + -0.017202159389853477, + 0.0022631590254604816, + 0.011747640557587147, + -0.012557575479149818, + 0.0168007742613554, + 0.00994141399860382, + -0.02398267574608326, + 0.0025176075287163258, + -0.0007360194576904178, + 0.05476020276546478, + -0.028799280524253845, + 0.02588924765586853, + 0.02176073007285595, + -0.035350434482097626, + -0.0007772329263389111, + 0.019825488328933716, + 0.05387142673134804, + -0.005873820278793573, + 0.018234288319945335, + -0.03116457723081112, + 0.015123564749956131, + 0.044238217175006866, + 0.011131229810416698, + -0.005110474769026041, + -0.01923774741590023, + 0.006113933864980936, + 0.010923370718955994, + -0.015782980248332024, + -0.01850665546953678, + 0.00042736611794680357, + 0.01562529429793358, + 0.020857617259025574, + -0.01681510917842388, + -0.0024656427558511496, + -0.019467109814286232, + 0.0229505468159914, + 0.03320016711950302, + 0.011683132499456406, + -0.020026179030537605, + 0.006809187587350607, + -0.042345982044935226, + -0.022749854251742363, + -0.01595500111579895, + 0.013331673108041286, + 0.018363304436206818, + 0.01548194233328104, + 0.05883138254284859, + -0.021789399906992912, + 0.015123564749956131, + -0.016299044713377953, + 0.010378635488450527, + -0.017560536041855812, + 0.0069310362450778484, + 0.025201162323355675, + 0.02273551933467388, + -0.013116645626723766, + 0.011654462665319443, + 0.03922092169523239, + -0.04641715809702873, + 0.014277791604399681, + -0.047506626695394516, + -0.02915765903890133, + -0.0016521239886060357, + 0.0006414971430785954, + -0.01827729307115078, + -0.011281749233603477, + 0.029530372470617294, + -0.023165574297308922, + 0.004666085354983807, + -0.03557979688048363, + -0.016628753393888474, + 0.028913961723446846, + -0.017159152776002884, + 0.047506626695394516, + -0.026132944971323013, + -0.026132944971323013, + -0.035780489444732666, + -0.008744430728256702, + 0.02252049185335636, + 0.029645053669810295, + 0.012063013389706612, + -0.016456732526421547, + 0.019725142046809196, + -0.008049177005887032, + -0.022549163550138474, + 0.016542742028832436, + 0.014306461438536644, + -0.022778524085879326, + -0.008206862956285477, + -0.015926331281661987, + -0.052667275071144104, + 0.018305962905287743, + -0.012392722070217133, + -0.005411512218415737, + -0.016987131908535957, + 0.05610770732164383, + -0.02323724888265133, + 0.004461809992790222, + -0.003881237003952265, + 0.010987878777086735, + 7.240361446747556e-5, + -0.0016700428677722812, + -0.0062178634107112885, + 0.008335879072546959, + -0.00014783104415982962, + 0.009475522674620152, + 0.024068687111139297, + -0.01859266683459282, + -0.0028491076081991196, + 0.001209526788443327, + 0.035551127046346664, + -0.024011345580220222, + 0.008930787444114685, + 0.012521738186478615, + -0.05238057300448418, + -0.013933748006820679, + -0.015596623532474041, + -0.029616383835673332, + 0.0011727929813787341, + 0.012715262360870838, + 0.010543489828705788, + -0.01953878439962864, + 0.04965689778327942, + 0.023194244131445885, + -0.01194833219051361, + -0.01985415816307068, + 0.0035963263362646103, + -0.02388232946395874, + -0.004182274919003248, + -0.002531942678615451, + -0.018520990386605263, + 0.021517032757401466, + -0.03864751756191254, + -0.007683631032705307, + 0.028039518743753433, + -0.03509240224957466, + 0.03423229604959488, + -0.015682633966207504, + -0.026032600551843643, + 0.00705646863207221, + 0.03188133239746094, + -0.012371218763291836, + 0.006031506694853306, + 0.0038919884245842695, + 0.02716507576406002, + -0.036927301436662674, + 0.014005424454808235, + -9.861002763500437e-5, + 0.005827231332659721, + 0.017087478190660477, + -0.03795943036675453, + 0.018951045349240303, + -0.02431238442659378, + -0.03965097665786743, + -0.005486771930009127, + 0.023824989795684814, + -0.015596623532474041, + 0.012987629510462284, + -0.010909035801887512, + -0.03150862082839012, + 0.015152234584093094, + -0.005665961187332869, + 0.027537789195775986, + -0.002458475064486265, + 0.02323724888265133, + 0.018836364150047302, + 0.019911497831344604, + 0.012177694588899612, + 0.009432516992092133, + -0.008364549838006496, + 0.0143781378865242, + 0.007332419976592064, + 0.019610460847616196, + -0.007884322665631771, + -0.004010253120213747, + 0.013897910714149475, + -0.05040232464671135, + 0.020542243495583534, + -0.0069489553570747375, + -0.001210422720760107, + 0.006913117598742247, + -0.04257534071803093, + -0.032082024961709976, + -0.010400138795375824, + 0.00488827982917428, + 0.00935367401689291, + 0.027122069150209427, + 0.03741469606757164, + -0.0003736093931365758, + -0.011274581775069237, + 0.004959955811500549, + -0.0041715232655406, + -0.0016342051094397902, + 0.004103431478142738, + -0.016929790377616882, + -0.012715262360870838, + 0.02442706562578678, + 0.03583782911300659, + -0.037357352674007416, + -0.008937954902648926, + 0.01880769245326519, + -0.027021724730730057, + -0.025416189804673195, + -0.018893703818321228, + -0.016198698431253433, + -0.005053134169429541, + -0.009955748915672302, + 0.029444361105561256, + -0.012930288910865784, + 0.0485960990190506, + 0.018979715183377266, + 0.02492879517376423, + 0.03156596049666405, + 0.010894699953496456, + -0.021502697840332985, + 0.02844090200960636, + -0.07144629955291748, + 0.06330393999814987, + -0.030619842931628227, + 0.0386761873960495, + 0.003196734469383955, + 0.004415220580995083, + -0.030591171234846115, + -0.010048927739262581, + 0.026562999933958054, + -0.00999158713966608, + 0.00850073341280222, + 0.007576117292046547, + -0.026118610054254532, + 0.009310668334364891, + -0.002775639994069934, + 0.014062764123082161, + 0.025745896622538567, + -0.0071747335605323315, + 0.026147281751036644, + -0.015811650082468987, + -0.014127273112535477, + 0.02051357366144657, + 0.009783728048205376, + -0.009332170709967613, + -0.015825984999537468, + -0.06015021353960037, + 0.02252049185335636, + 0.0340602733194828, + -0.005633706692606211, + -0.048338066786527634, + 0.006966874003410339, + 0.032397396862506866, + 0.009482690133154392, + -0.006379133556038141, + -0.05025897175073624, + -0.038303472101688385, + 0.027767151594161987, + 0.009002462960779667, + -0.008988128043711185, + 0.01660008355975151, + -0.00999158713966608, + -0.014428310096263885, + 0.01859266683459282, + 0.03216803818941116, + 0.01273676473647356, + 0.012536073103547096, + -0.0025158156640827656, + 0.007948830723762512, + 0.027738479897379875, + -0.025444859638810158, + -0.010952040553092957, + 0.008930787444114685, + 0.01083736028522253, + 0.010493316687643528, + -0.028483906760811806, + 0.012600581161677837, + -0.03486303985118866, + 0.027638135477900505, + -0.015438937582075596, + -0.022033097222447395, + 0.0012444686144590378, + -0.02885662019252777, + -0.009389511309564114, + 0.03632522374391556, + -0.015152234584093094, + -0.01870734803378582, + 0.01784723997116089, + -0.018463650718331337, + -0.0245274119079113, + 0.010077597573399544, + 0.005769890733063221, + -0.006056593265384436, + 0.022878870368003845, + -0.01850665546953678, + 0.004952788352966309, + -0.01766088232398033, + 0.0018528158543631434, + 0.009332170709967613, + -0.035551127046346664, + -0.028784945607185364, + -0.009661879390478134, + 0.01126024592667818, + 0.006483063567429781, + -0.009210322052240372, + 0.038303472101688385, + -0.011109727434813976, + -0.0033526290208101273, + 0.028283216059207916, + 0.0033974263351410627, + 0.02336626499891281, + -0.009425349533557892, + -0.003413553349673748, + 0.03242607042193413, + -0.004999377299100161, + -0.0004215424705762416, + -0.014299293980002403, + -0.009891240857541561, + 0.00913147907704115, + 0.010858862660825253, + -0.025645552203059196, + 0.04658918082714081, + 0.003427888499572873, + -0.049312856048345566, + -0.04188725724816322, + 0.030075106769800186, + 0.01427062414586544, + 0.005099723115563393, + 0.004608744755387306, + -0.009016797877848148, + 0.05094705894589424, + 0.0007113809115253389, + -0.017732558771967888, + 0.003334710141643882, + -0.011847986839711666, + -0.024441400542855263, + -0.01900838501751423, + 0.0001653019862715155, + 0.027838826179504395, + -0.03833214193582535, + -0.011116894893348217, + -0.02439839392900467, + 0.02250615693628788, + 0.0032917046919465065, + 0.00919598713517189, + -0.006002836395055056, + -0.006845025345683098, + 0.006812771316617727, + -0.020312882959842682, + 0.008013338781893253, + 0.039048898965120316, + -0.011597122065722942, + 0.03807410970330238, + 0.01489420235157013, + -0.020470568910241127, + -0.00914581399410963, + -0.03179532289505005, + 0.008522235788404942, + 0.009640376083552837, + 0.0014415767509490252, + -0.006221447139978409, + 0.010285457596182823, + 0.02643398381769657, + -0.017259499058127403, + -0.005289663560688496, + -0.0026304966304451227, + -0.02389666438102722, + 0.00039712796569801867, + 0.03727134317159653, + -0.023753313347697258, + 0.048452746123075485, + 0.005662376992404461, + 0.032913465052843094, + 0.008780268020927906, + 0.019782481715083122, + -0.008429057896137238, + 0.03927826136350632, + 0.02094362862408161, + -0.026046935468912125, + 0.026491323485970497, + -0.03927826136350632, + -0.055104248225688934, + 0.0016001590993255377, + -0.02832622081041336, + -0.0026914209593087435, + -0.026290632784366608, + 0.02389666438102722, + 0.0244127307087183, + -0.014485650695860386, + -0.013926580548286438, + 0.02305089309811592, + -0.003338293870911002, + 0.0019907914102077484, + 0.010142105631530285, + 0.007382593117654324, + 0.007239241618663073, + 0.032397396862506866, + -0.0004605161084327847, + -0.016528407111763954, + -0.00493845297023654, + -0.0029476615600287914, + -0.049714237451553345, + 0.006579825654625893, + 0.03294213488698006, + -0.00249789678491652, + 0.010256786830723286, + 0.0011781686916947365, + -0.0039779990911483765, + 0.02399701066315174, + 0.0017372388392686844, + -0.04911216348409653, + -0.01565396413207054, + 0.0165714118629694, + 0.008787436410784721, + -0.0015625293599441648, + -0.01141076534986496, + -0.021316342055797577, + 0.004565739538520575, + -0.0025373182725161314, + -0.015238245017826557, + -0.003798810066655278, + 0.01744585484266281, + 0.003655458567664027, + 0.0384468249976635, + -0.021502697840332985, + -0.021603044122457504, + 0.002811477752402425, + -0.015496278181672096, + 0.015998007729649544, + 0.028799280524253845, + 0.006905949674546719, + -0.012614916078746319, + -0.010149273090064526, + 0.021803736686706543, + 0.026347972452640533, + 0.049398865550756454, + -0.0319100022315979, + -0.003021129174157977, + -0.01943843998014927, + -0.003960080444812775, + 0.008816106244921684, + -0.01283711101859808, + -0.005053134169429541, + -0.02101530320942402, + 0.0026143696159124374, + 0.015295585617423058, + 0.011188570410013199, + 0.007060052361339331, + 0.03340085595846176, + 0.009955748915672302, + 0.021316342055797577, + -0.01900838501751423, + 0.01945277489721775, + 0.03646857663989067, + -0.041571881622076035, + 0.0321393646299839, + 0.007726636249572039, + 0.017073141410946846, + -0.0016503321239724755, + 0.022147778421640396, + 0.008593911305069923, + 0.011073889210820198, + -0.002818645443767309, + -0.027623798698186874, + -0.013983921147882938, + -0.002877777675166726, + -0.023265918716788292, + -0.005139145068824291, + -0.00925332773476839, + -0.005662376992404461, + -0.01766088232398033, + 0.002075010444968939, + -0.006167690735310316, + 0.02547352947294712, + -0.02978840470314026, + -0.011052386835217476, + -0.03294213488698006, + -0.013890743255615234, + -0.012500234879553318, + 0.02157437428832054, + -0.023609962314367294, + -0.003590950509533286, + 0.027107734233140945, + -0.011002213694155216, + -0.04704790189862251, + -0.004873944912105799, + -0.017202159389853477, + -0.013267165049910545, + -0.009962916374206543, + 0.000674647162668407, + 0.02230546623468399, + -0.0034708939492702484, + -0.027451777830719948, + -0.022477487102150917, + -0.010500484146177769, + -0.021215995773673058, + -0.032512079924345016, + -0.021101314574480057, + 0.01713048294186592, + -0.01678643934428692, + -0.00705288490280509, + -0.008479231037199497, + -0.037127990275621414, + 0.004271869547665119, + -0.02978840470314026, + -0.038217462599277496, + 0.01188382413238287, + -0.0006737512303516269, + 0.012364051304757595, + 0.03807410970330238, + 0.019940169528126717, + 0.021302007138729095, + -0.009869738481938839, + -0.017288168892264366, + 0.04512699693441391, + 0.010249619372189045, + 0.017087478190660477, + 0.0009398470865562558, + -0.004003085661679506, + -0.01955311931669712, + -0.0043650479055941105, + 0.010600830428302288, + 0.026046935468912125, + 0.0039779990911483765, + -0.013783229514956474, + -0.02293621189892292, + 0.002813269617035985, + 0.005687463562935591, + 0.011016548611223698, + 0.018363304436206818, + 0.004605161026120186, + 0.017775563523173332, + 0.002162812976166606, + -0.024441400542855263, + 0.03147995099425316, + -0.03626788407564163, + 0.014808191917836666, + -0.017101813107728958, + -0.05166381597518921, + -0.02386799454689026, + -0.025545205920934677, + -0.019897162914276123, + 0.01479385606944561, + -0.028139865025877953, + 0.03033313900232315, + -0.0251438207924366, + -0.033773571252822876, + 0.015438937582075596, + 0.012650754302740097, + 0.0041213505901396275, + 0.02789616771042347, + 0.03351553902029991, + -0.0024871453642845154, + 0.006586993113160133, + -0.011288916692137718, + 0.036210544407367706, + 0.0033526290208101273, + 0.008486398495733738, + -0.005501106847077608, + -0.008077846840023994, + -0.005114058498293161, + -0.0006347775924950838, + -0.00387048558332026, + 0.003734302008524537, + -0.023394934833049774, + 0.01998317427933216, + -0.013675715774297714, + 0.014507154002785683, + 0.0027344264090061188, + 0.01900838501751423, + 0.0007772329263389111, + -0.011389262042939663, + -0.0022201535757631063, + 0.006733928341418505, + 0.020771605893969536, + -0.006232198793441057, + -0.021043973043560982, + -0.005443766247481108, + 0.012880115769803524, + -0.0019943751394748688, + 0.02230546623468399, + 0.01342485100030899, + 0.013109478168189526, + -0.004239615518599749, + 0.02358129248023033, + 0.014385305345058441, + -0.019194742664694786, + -0.00866558775305748, + 0.013725888915359974, + -0.011023717001080513, + 0.04266135394573212, + -0.049284182488918304, + 0.01678643934428692, + -0.02821153961122036, + 0.003336502006277442, + -0.01072984654456377, + -0.028498241677880287, + -0.009038301184773445, + 0.014349467121064663, + 0.0021556455176323652, + -0.01869301311671734, + -0.02588924765586853, + -0.009160149842500687, + 0.045929763466119766, + 0.014299293980002403, + -0.008930787444114685, + 0.0009891240624710917, + 0.006346879526972771, + 0.006956122815608978, + 0.03489170968532562, + -0.000890570052433759, + -0.008751598186790943, + -0.008737263269722462, + -0.03655458614230156, + 0.034375645220279694, + 0.02029854618012905, + -0.0386761873960495, + -0.04604444280266762, + 0.02048490382730961, + 0.030189787968993187, + -0.016098354011774063, + -0.03489170968532562, + 0.01421328354626894, + 0.010242451913654804, + -0.010959208942949772, + 0.001349294325336814, + -0.004483312368392944, + 0.013510862365365028, + 0.019782481715083122, + -0.0029333264101296663, + -0.03939294442534447, + 0.008421890437602997, + 0.007640625350177288, + -0.014019759371876717, + 0.03130792826414108, + -0.031651969999074936, + 0.028555583208799362, + -0.05516158789396286, + -0.018936708569526672, + -0.005719717592000961, + 0.03096388466656208, + -0.010966376401484013, + 0.0013322713784873486, + 0.004504815209656954, + 0.015596623532474041, + 0.0052789123728871346, + 0.006791268941015005, + 0.02651999518275261, + -0.00028423877665773034, + 0.02144535817205906, + 0.010278290137648582, + -0.01890803873538971, + 0.011167068034410477, + -0.00998441968113184, + -0.001958537381142378, + -0.008737263269722462, + 0.0013788605574518442, + 0.02292187698185444, + -0.009310668334364891, + 0.02071426622569561, + -0.014722180552780628, + 0.012915953993797302, + 0.051721155643463135, + -0.033859580755233765, + 0.027609463781118393, + -0.02725108526647091, + 0.010543489828705788, + 0.031967345625162125, + 0.012550408020615578, + -0.011432267725467682, + 0.012134688906371593, + -0.013711553998291492, + -0.014428310096263885, + 0.0287562757730484, + -0.002128767082467675, + 0.003884820733219385, + 0.01193399727344513, + 0.00320927775464952, + 0.03351553902029991, + -0.010880365036427975, + -0.010493316687643528, + 0.002125183353200555, + -0.016213035210967064, + -0.0012650754069909453, + -0.01152544654905796, + 0.000839949119836092, + 0.0168007742613554, + -0.009210322052240372, + -0.005913241766393185, + 0.02049923874437809, + -0.017818568274378777, + 0.012751099653542042, + 0.006802020128816366, + -0.007647792808711529, + 0.020785940811038017, + -0.00923899281769991, + -0.022477487102150917, + 0.06399203091859818, + 0.008249868638813496, + 0.0008354694000445306, + -0.00031402899185195565, + -0.009074138477444649, + -0.003734302008524537, + -0.00787715520709753, + 0.02026987634599209, + -0.017159152776002884, + 0.011439435184001923, + -0.026046935468912125, + 0.004637415055185556, + 0.006966874003410339, + 0.032798781991004944, + 0.009167317301034927, + -0.0033544208854436874, + 0.015195240266621113, + 0.01606968231499195, + -0.03285612165927887, + -0.0252585019916296, + 0.0019424103666096926, + -0.017890244722366333, + 0.028698934242129326, + -0.016987131908535957, + 0.0025014805141836405, + -0.022004427388310432, + 0.0021305589471012354, + 0.009783728048205376, + -0.016356386244297028, + 0.005959831178188324, + 0.015897661447525024, + 0.0034207208082079887, + -0.00026923170662485063, + 0.008593911305069923, + -0.02156003937125206, + 0.015137899667024612, + 0.00249789678491652, + -0.021617379039525986, + 0.011847986839711666, + 0.0019692888017743826, + 0.0011038051452487707, + -0.014629002660512924, + -0.017159152776002884, + 0.0015087726060301065, + 0.005042382515966892, + -0.0035156910307705402, + 0.01985415816307068, + 0.013618375174701214, + 0.009855403564870358, + -0.006207112222909927, + -0.0002725914819166064, + 0.0024889372289180756, + -0.003083845367655158, + -0.00782698206603527, + -0.006873695645481348, + 0.006522485055029392, + -0.030992556363344193, + -0.028340555727481842, + -0.0270647294819355, + 0.006429306697100401, + -0.001132475445047021, + 0.020542243495583534, + -0.015998007729649544, + -0.05040232464671135, + 0.0030677183531224728, + 0.0032791614066809416, + 0.006572658196091652, + -0.0187216829508543, + 0.00839321967214346, + -0.03265542909502983, + 0.004662501625716686, + 0.015309921465814114, + 0.0005989397177472711, + 0.01416311040520668, + 0.007246409077197313, + 0.009210322052240372, + 0.0014989172341302037, + -0.024785444140434265, + 0.00433637760579586, + -0.03678394854068756, + -0.0012507402570918202, + -0.010887532494962215, + 0.01787590980529785, + 0.0023402103688567877, + 0.010113435797393322, + -0.00781981460750103, + -0.0030892209615558386, + -0.0036070775240659714, + 0.01004176028072834, + -0.008185360580682755, + 0.0030265047680586576, + 0.01807660236954689, + 0.004895447753369808, + 0.007970333099365234, + -0.005121225956827402, + -0.013926580548286438, + 0.011331922374665737, + -0.017202159389853477, + -0.008034841157495975, + -0.006862944457679987, + -0.007525944150984287, + -0.00929633341729641, + 0.009955748915672302, + -0.01617002859711647, + 0.02167472057044506, + 0.009418182075023651, + -0.021689055487513542, + 0.014421142637729645, + -0.027021724730730057, + -0.018836364150047302, + 0.00639346893876791, + -5.969238554826006e-5, + -0.01586899161338806, + -0.0114179328083992, + 0.006096014752984047, + 0.0020570915658026934, + -0.009425349533557892, + -0.02557387575507164, + 0.031537290662527084, + -0.023939670994877815, + -0.02270684950053692, + 0.008830441161990166, + -0.01829162798821926, + 0.016614418476819992, + -0.004813020583242178, + -0.005160647444427013, + -0.000827853858936578, + 0.012428559362888336, + -0.023179909214377403, + 0.016944125294685364, + 0.010120603255927563, + 0.009489857591688633, + 0.0019173239124938846, + 0.013123813085258007, + -0.004329209681600332, + -0.016944125294685364, + 0.008980960585176945, + 0.003336502006277442, + 0.012829943560063839, + -0.008414722979068756, + -0.0100345928221941, + -0.01594066619873047, + 0.016413725912570953, + 0.029415691271424294, + -0.0082857059314847, + -0.0024889372289180756, + -0.005196485202759504, + 0.036927301436662674, + 0.03374490141868591, + -0.016327714547514915, + 0.014492818154394627, + -0.001745302346535027, + -0.008278538472950459, + -0.0052681611850857735, + 0.007375425659120083, + -0.013130980543792248, + 0.009016797877848148, + -0.02684970200061798, + 0.009339338168501854, + 0.02590358443558216, + -0.0020535076037049294, + -0.026032600551843643, + -0.0020194617100059986, + -0.019624795764684677, + -0.011403597891330719, + 0.002293621189892292, + 9.916999260894954e-5, + -0.041485872119665146, + 0.0022362805902957916, + -0.011740473099052906, + -0.003805977525189519, + 0.0054688528180122375, + -0.02545919455587864, + 0.008550906553864479, + -0.00923899281769991, + -0.03116457723081112, + 0.03156596049666405, + -0.023222913965582848, + 0.029100317507982254, + -0.01337467785924673, + -0.023509616032242775, + -0.018420644104480743, + -0.0019047806272283196, + 0.030304469168186188, + 0.03254074975848198, + 0.0032755776774138212, + -0.002302580513060093, + -0.013847737573087215, + -0.01608401909470558, + -0.005608620587736368, + 0.013561034575104713, + -0.03225404769182205, + -0.009583035483956337, + 0.0319100022315979, + -0.0014254497364163399, + 0.008543739095330238, + -0.01595500111579895, + -0.018535325303673744, + 0.008866279385983944, + -0.0050352150574326515, + 0.013044970110058784, + 0.008837608620524406, + -0.007099474314600229, + -0.007300165947526693, + 0.020097855478525162, + -0.015926331281661987, + -0.00792016088962555, + -0.00918881967663765, + 0.0015069807413965464, + -0.007640625350177288, + -0.024556081742048264, + 0.001300017349421978, + -0.025086481124162674, + 0.007113809231668711, + 0.005712550133466721, + 5.5660628277109936e-5, + -0.003499564016237855, + -0.0005639978335238993, + -0.012220700271427631, + -0.012299543246626854, + -0.01586899161338806, + -0.010486149229109287, + -0.012356883846223354, + 0.010156441479921341, + -0.0010222741402685642, + -0.007210571318864822, + 0.012772602960467339, + 0.010866030119359493, + 0.038618844002485275, + 0.0027953507378697395, + -8.371493458980694e-5, + 0.0031895667780190706, + 0.028053853660821915, + -0.011503943242132664, + 0.0014944375725463033, + -0.007654960732907057, + -0.014750851318240166, + -0.008271371014416218, + -0.004390134010463953, + 0.00010314575774827972, + 0.00982673279941082, + -1.3313194358488545e-5, + -0.011539781466126442, + 0.014249120838940144, + -0.0003774171636905521, + -0.00028491075499914587, + 0.0009098328882828355, + 0.009812397882342339, + 0.009848236106336117, + -0.0011889199959114194, + -0.01399825606495142, + 0.008020506240427494, + -0.006680171471089125, + 0.011224408634006977, + 0.00036644181818701327, + 0.013403348624706268, + 0.00502088014036417, + 0.011095392517745495, + -0.010185111314058304, + 0.00573405297473073, + -0.00792016088962555, + -0.0112459110096097, + 0.006092431023716927, + -0.002818645443767309, + -0.0143207972869277, + 0.015696968883275986, + 0.009719219990074635, + -0.006242949981242418, + 0.019381098449230194, + -0.009669046849012375, + -0.012457230128347874, + 0.011131229810416698, + 3.698575892485678e-5, + -0.01061516534537077, + 0.025416189804673195, + -0.009102809242904186, + -0.017044471576809883, + -0.009798062965273857, + 0.012980462051928043, + -0.0005080012488178909, + 0.02449874021112919, + 0.02026987634599209, + 0.004870361182838678, + -0.007303749676793814, + 0.0005299519398249686, + 0.02821153961122036, + -0.02325158379971981, + 0.00976939219981432, + 0.0013071848079562187, + -0.012822776101529598, + -0.005436598788946867, + 0.022104773670434952, + -0.00011400909716030583, + -0.0032666181214153767, + -0.002635872457176447, + 0.006235782522708178, + -0.0001261043653357774, + 0.035149745643138885, + -0.008264203555881977, + -0.011546948924660683, + 0.007848484441637993, + -0.03818879276514053, + -0.010794354602694511, + 0.007805479224771261, + 0.03391692414879799, + 0.00983390025794506, + 0.020327217876911163, + -0.0067410957999527454, + 0.0003706975548993796, + -0.031021226197481155, + -0.008708592504262924, + 0.0040855128318071365, + 0.003874069545418024, + -0.006905949674546719, + -0.0028240210376679897, + 0.006626414600759745, + 0.01061516534537077, + -0.012306710705161095, + 0.0016207658918574452, + 0.007884322665631771, + -0.0029566208831965923, + 0.014629002660512924, + -0.03770139813423157, + -0.017173487693071365, + -0.005820063408464193, + 0.002447723876684904, + -0.025645552203059196, + 0.02240581065416336, + -0.01050765160471201, + 0.019524449482560158, + 0.01500888355076313, + 0.004454642068594694, + 0.010880365036427975, + -0.002738010138273239, + -0.008995295502245426, + 0.014965877868235111, + -0.00634329579770565, + 0.025000469759106636, + -0.013259997591376305, + 0.00867275521159172, + -0.034805700182914734, + 0.0069847931154072285, + 0.00633612833917141, + 0.022993551567196846, + -0.016456732526421547, + 0.009339338168501854, + 0.006350463721901178, + 0.0015078766737133265, + -0.002377839991822839, + -0.03087787516415119, + -0.02252049185335636, + -0.01562529429793358, + -0.006769766099750996, + -0.020972298458218575, + 0.0045478204265236855, + 0.008264203555881977, + 0.006945371627807617, + -0.006748263258486986, + -0.007425598334521055, + -0.0023760481271892786, + 0.017273833975195885, + -0.004576490726321936, + 0.010858862660825253, + -0.016413725912570953, + -0.003784474916756153, + 0.019180405884981155, + -0.0033042479772120714, + -0.01490853726863861, + -0.011159900575876236, + 0.020986633375287056, + -0.031651969999074936, + 0.01272959727793932, + -0.005551279988139868, + 0.00491695012897253, + 0.02323724888265133, + -0.0030623425263911486, + 0.011704635806381702, + -0.015295585617423058, + -0.006680171471089125, + -0.029100317507982254, + -0.020527908578515053, + -0.0013761726440861821, + -0.00017011769523378462, + -0.03403160348534584, + -0.0006047633942216635, + -0.03870485723018646, + -0.00389557215385139, + -0.0084003871306777, + 0.03732868283987045, + -0.011833651922643185, + 0.01839197427034378, + 0.006812771316617727, + 0.01963913068175316, + -0.004114183131605387, + -0.026290632784366608, + 0.027322761714458466, + 0.010213782079517841, + 0.023968340829014778, + -0.015352926217019558, + -0.00556919863447547, + 0.0437508225440979, + -0.00850790087133646, + 0.009325003251433372, + 0.007898657582700253, + -0.003411761485040188, + 0.01346785668283701, + 0.016729099676012993, + -0.02072860114276409, + -0.009425349533557892, + 0.00707797147333622, + -0.023409271612763405, + -0.013482191599905491, + -0.008092181757092476, + 0.002481769770383835, + 0.0010545281693339348, + -0.030075106769800186, + 0.006977625656872988, + -0.0005357755580917001, + -0.009504192508757114, + 0.014134440571069717, + -0.0048452746123075485, + -0.01416311040520668, + 0.009475522674620152, + -0.01467917487025261, + 0.0038633181247860193, + -0.0004327417991589755, + -0.0004909783019684255, + -0.00430770730599761, + -0.005250242073088884, + 0.0037593883462250233, + -0.01649973727762699, + 0.010084765031933784, + -0.0017874117475003004, + 0.013080808334052563, + 0.015324256382882595, + -0.014041261747479439, + -0.01966780051589012, + -0.0012319254456087947, + 0.0046015772968530655, + 0.021302007138729095, + 0.0165714118629694, + -0.012765435501933098, + -0.023509616032242775, + -0.004343545064330101, + -0.00713531207293272, + 0.011539781466126442, + 0.017904579639434814, + 0.006357631180435419, + 0.01797625608742237, + -0.004640998784452677, + -0.007257160730659962, + 0.010593662969768047, + 0.002075010444968939, + 0.003461934393271804, + 0.014234785921871662, + 0.02313690260052681, + 0.017187822610139847, + -0.003934993874281645, + -0.022047434002161026, + -0.005873820278793573, + 0.007848484441637993, + -0.0059454962611198425, + 0.0027702641673386097, + -0.009540030732750893, + -0.01009910088032484, + 0.02124466560781002, + 0.004558572079986334, + -1.1619296856224537e-5, + 0.011081056669354439, + -0.031967345625162125, + -0.0006267140852287412, + -0.0010410889517515898, + -0.009704884141683578, + -0.004214528948068619, + -0.004296955652534962, + -0.00501729641109705, + -0.02199009247124195, + 0.00420019356533885, + 0.005289663560688496, + -0.0012059429427608848, + 0.003119683125987649, + -0.007260744459927082, + -0.0028347724582999945, + -0.008013338781893253, + -0.010378635488450527, + 0.08526536822319031, + -0.006744679529219866, + 0.01744585484266281, + 0.02408302202820778, + -0.005841566249728203, + -0.019395433366298676, + -0.0011369551066309214, + 0.0186070017516613, + 0.01753186620771885, + 0.005250242073088884, + -0.024240707978606224, + -0.022377140820026398, + 0.024771107360720634, + 0.025072146207094193, + -0.016184363514184952, + 0.0017264874186366796, + 0.012034343555569649, + -0.0001229685585713014, + 0.00042355834739282727, + 0.00856524147093296, + 0.0033400857355445623, + 0.006701674312353134, + -0.007153230719268322, + 0.006712425500154495, + -0.009281997568905354, + 0.0143207972869277, + -0.0020337968599051237, + 0.0027200912591069937, + 0.019997509196400642, + 0.015725640580058098, + 0.01278693787753582, + 0.0015831361524760723, + 0.004239615518599749, + -0.030189787968993187, + -0.0036249966360628605, + 0.0008188944193534553, + 0.005777058191597462, + -0.003605285659432411, + 0.004587242379784584, + 0.0071854847483336926, + -0.005794977303594351, + -0.005411512218415737, + 0.006242949981242418, + 0.018563995137810707, + -0.02950170263648033, + -0.0021932751405984163, + -0.020871952176094055, + 0.002483561635017395, + 0.0011880240635946393, + -0.0004999377415515482, + 0.007325252518057823, + 0.009561533108353615, + 0.0075617823749780655, + 0.022176450118422508, + 0.03689863160252571, + 0.000700629607308656, + 0.005379258189350367, + 0.004805853124707937, + 0.002764888573437929, + -0.0034601425286382437, + -0.014012591913342476, + -0.024756772443652153, + 0.0032522832043468952, + -0.013725888915359974, + -0.005293247755616903, + -0.015094893984496593, + -0.022577833384275436, + 0.001158457831479609, + -0.0032630343921482563, + -0.023738978430628777, + -0.024900125339627266, + -0.008443392813205719, + 0.007848484441637993, + -0.02333759516477585, + 0.0054581016302108765, + 0.024240707978606224, + 0.013948083855211735, + 0.03182399272918701, + 0.035149745643138885, + -0.007217738777399063, + -0.014019759371876717, + 0.006852193269878626, + -0.016628753393888474, + -0.006020755507051945, + 0.0016637712251394987, + -0.010192278772592545, + 0.01050765160471201, + -0.053212009370326996, + 0.006035090424120426, + -0.024326719343662262, + -0.037357352674007416, + -0.00013819962623529136, + -0.0008739950717426836, + 0.01558228861540556, + -0.02545919455587864, + 0.0003198526392225176, + 0.01141076534986496, + 0.013826235197484493, + -0.013245661742985249, + -0.012808440253138542, + -0.009181652218103409, + -0.0039887502789497375, + -0.0038633181247860193, + 0.010213782079517841, + 0.0004383414634503424, + -0.016184363514184952, + 0.021818071603775024, + -0.009740722365677357, + -0.015152234584093094, + 0.004458226263523102, + 0.00031022122129797935, + 0.005888155661523342, + -0.0026269129011780024, + 0.004397301934659481, + 0.001717527979053557, + -0.0027182993944734335, + 0.019381098449230194, + 0.004386550281196833, + -0.02388232946395874, + 0.0018286253325641155, + 0.014256289228796959, + 0.003992334473878145, + 0.001032129512168467, + -0.03041915036737919, + -0.0028061021585017443, + 0.024670762941241264, + -0.009798062965273857, + -0.013059305027127266, + -0.010063262656331062, + -0.011632959358394146, + 0.028369225561618805, + 0.00633971206843853, + 0.015094893984496593, + -0.0168007742613554, + 0.018004925921559334, + 0.00034023539046756923, + -0.009790895506739616, + 0.010880365036427975, + -0.006941787898540497, + -0.016757769510149956, + 0.03254074975848198, + -0.016241705045104027, + 0.016829445958137512, + 0.012485899962484837, + 0.004755679983645678, + -0.0012157984310761094, + -0.013596872799098492, + -0.015811650082468987, + 0.027638135477900505, + -0.017374180257320404, + 0.0043112910352647305, + -0.023265918716788292, + 0.018234288319945335, + 0.0016342051094397902, + 0.013711553998291492, + 0.004931285511702299, + -0.02758079394698143, + 0.02167472057044506, + -0.026376642286777496, + -0.003056966932490468, + 0.00716039864346385, + -0.0112459110096097, + -0.011618624441325665, + 0.004580074921250343, + -0.02568855695426464, + 0.013353175483644009, + 0.010959208942949772, + 0.024814113974571228, + 0.0019459942122921348, + -0.0009161045309156179, + 0.007142479531466961, + 0.010192278772592545, + 0.027609463781118393, + -0.017675217241048813, + 0.011697467416524887, + -0.01072984654456377, + -0.006131852976977825, + 0.013747391290962696, + -0.010005922056734562, + 0.005053134169429541, + -0.0007700653513893485, + -0.017804233357310295, + -0.009482690133154392, + -0.0021323508117347956, + -0.015109228901565075, + -0.01050765160471201, + 0.01933809369802475, + -0.003791642375290394, + 0.00568029610440135, + -0.0126865915954113, + -0.0036984640173614025, + 0.025416189804673195, + -0.004662501625716686, + -0.014478483237326145, + 0.0063719660975039005, + 0.003999501932412386, + 0.03902022913098335, + 0.0350637324154377, + 0.042087946087121964, + 0.0042216964066028595, + -0.00023249792866408825, + -0.018836364150047302, + 0.01776122860610485, + 0.005364923272281885, + -0.0003527786466293037, + 0.003694880288094282, + -0.01325282920151949, + -0.013396181166172028, + 0.0004063113883603364, + -0.0017748685786500573, + -0.034805700182914734, + -0.00981956534087658, + 0.0113605922088027, + 0.00252298335544765, + -0.00046320396359078586, + 0.02094362862408161, + 0.020757270976901054, + 0.01806226558983326, + 0.015711305662989616, + 0.010192278772592545, + -0.012385553680360317, + -0.004081928636878729, + 0.027939172461628914, + 0.009618873707950115, + -0.012600581161677837, + 0.0007454268634319305, + -0.010593662969768047, + 0.018520990386605263, + 0.025502199307084084, + 0.001018690294586122, + -0.0018761104438453913, + -0.012801272794604301, + -0.005716133862733841, + -0.0019262833520770073, + 0.0035604883451014757, + 0.020011844113469124, + -0.005185734014958143, + -0.01605534739792347, + 0.017503196373581886, + -0.001412906451150775, + -0.017245164141058922, + 0.005619371775537729, + -0.0031358101405203342, + -0.003388466779142618, + -0.011023717001080513, + -0.013295834884047508, + -0.012722429819405079, + -0.007834149524569511, + 9.429828787688166e-5, + -2.5044484573299997e-5, + -0.019696472212672234, + 0.003119683125987649, + 3.0798135412624106e-5, + -0.009074138477444649, + 0.011066721752285957, + -0.011446602642536163, + -0.0008336775354109704, + 0.0029637885745614767, + 0.007776809390634298, + -0.013496526516973972, + 0.007206987589597702, + 0.011761975474655628, + -0.019295087084174156, + -0.005006544757634401, + -0.004859609995037317, + 0.012973294593393803, + -0.03701331093907356, + 0.013152483850717545, + 0.007389760576188564, + -0.005812895949929953, + -0.00037159351631999016, + 0.01210601907223463, + -0.007249993272125721, + 0.03116457723081112, + -0.0015446104807779193, + -0.013625542633235455, + 0.0041213505901396275, + -0.0244127307087183, + 0.006981209386140108, + 0.019094396382570267, + -0.013059305027127266, + -0.00015130284009501338, + 0.0030462155118584633, + -0.017402850091457367, + -0.006382717750966549, + -0.021474028006196022, + 0.022778524085879326, + 0.014041261747479439, + -0.0030390480533242226, + 0.01890803873538971, + -0.006307458039373159, + -0.003309623571112752, + -0.015338591299951077, + 0.010314127430319786, + 0.017675217241048813, + 0.02026987634599209, + 0.006264452822506428, + -0.015467607416212559, + 0.03388825058937073, + -0.022033097222447395, + -0.008765933103859425, + 0.006164107006043196, + -0.013009132817387581, + -0.02748044766485691, + 0.003845399245619774, + 0.006146187894046307, + 0.04139986261725426, + 0.0014075307408347726, + 0.005888155661523342, + 0.016012342646718025, + -0.001322415890172124, + 0.011339089833199978, + -0.010944873094558716, + -0.014120104722678661, + -0.018148276954889297, + -0.0067410957999527454, + 0.009446851909160614, + 0.018578331917524338, + -0.0015499861910939217, + -0.0025552373845130205, + -0.0029978344682604074, + -0.006773349829018116, + 0.025745896622538567, + -0.017818568274378777, + 0.010851695202291012, + -0.01608401909470558, + 0.0170301366597414, + 0.008916452527046204, + 0.0015490902587771416, + -0.010751348920166492, + 0.019467109814286232, + 0.0037092154379934072, + -0.031021226197481155, + -0.010134938172996044, + 0.0033669641707092524, + 0.015596623532474041, + -0.00994141399860382, + -0.0032074858900159597, + 0.017990591004490852, + -0.004787934012711048, + -0.0004851546254940331, + -0.02273551933467388, + -0.002075010444968939, + -0.003449391108006239, + 0.007346755359321833, + 0.0021323508117347956, + 0.004784350283443928, + 0.009726387448608875, + 0.013274332508444786, + 0.027294091880321503, + -0.012514570727944374, + 0.007726636249572039, + 0.013905078172683716, + 0.006748263258486986, + -0.010364300571382046, + -0.0005380154470913112, + 0.016872450709342957, + 0.015281250700354576, + -0.0017802441725507379, + -0.005934744607657194, + 0.010192278772592545, + 0.011059554293751717, + -0.020370222628116608, + -0.0169154554605484, + 0.012872948311269283, + -0.006454393267631531, + 0.00786998774856329, + -0.006024339236319065, + -0.03434697538614273, + -0.010916203260421753, + 0.0054581016302108765, + -0.00908847339451313, + 0.011439435184001923, + 0.019266417250037193, + -0.01731683872640133, + 0.001108284923247993, + -0.004551404621452093, + 0.0033042479772120714, + -0.020785940811038017, + 0.0027971426025032997, + 0.013295834884047508, + -0.0037629720754921436, + 0.006845025345683098, + -0.004261117894202471, + -0.022004427388310432, + 0.01847798563539982, + 0.02082894742488861, + 0.0061354367062449455, + 0.003999501932412386, + -0.005271744914352894, + -0.01077285222709179, + 0.0022828697692602873, + 0.011346257291734219, + 0.018951045349240303, + -0.027982177212834358, + 0.026376642286777496, + -0.026376642286777496, + -0.0018142901826649904, + -0.015897661447525024, + 0.0023885914124548435, + -0.017474526539444923, + 0.0010491524590179324, + 0.011131229810416698, + 0.01605534739792347, + -0.014922872185707092, + -0.030361810699105263, + 0.011568451300263405, + -0.011790646240115166, + 0.02059958502650261, + -0.0029602048452943563, + 0.002076802309602499, + 0.015209575183689594, + -0.0020678427536040545, + 0.0085150683298707, + 0.026606004685163498, + -0.013238494284451008, + -0.002175356261432171, + -0.0026663346216082573, + 0.011568451300263405, + -0.0020445482805371284, + 0.0036697937175631523, + -0.015238245017826557, + 0.017718223854899406, + 0.00024302529345732182, + 0.009798062965273857, + -0.0022058184258639812, + 0.019581791013479233, + 0.004902615211904049, + -0.00987690594047308, + 0.0025516534224152565, + -0.003952912520617247, + 0.007149646990001202, + -0.0158403217792511, + 0.015080559067428112, + -0.033773571252822876, + -0.006454393267631531, + 0.010844527743756771, + -0.004239615518599749, + -0.01594066619873047, + 0.02398267574608326, + -0.026806697249412537, + -0.010851695202291012, + -0.034490328282117844, + -0.018004925921559334, + 0.005863069090992212, + -0.01004176028072834, + -0.003528234316036105, + 0.011726138181984425, + -0.011776311323046684, + -0.01552494801580906, + -0.01912306621670723, + 0.01932375878095627, + -0.005106891039758921, + -0.006289539393037558, + -0.009869738481938839, + -0.01277977041900158, + -0.00249789678491652, + -0.025430524721741676, + 0.008909284137189388, + -0.026476988568902016, + 0.02725108526647091, + 0.001324207871221006, + -0.0031788155902177095, + -0.029415691271424294, + -0.010930538177490234, + -0.0013457104796543717, + 0.020255541428923607, + 0.006870111916214228, + -0.024484405294060707, + -0.0003830167988780886, + -0.031852662563323975, + 0.036210544407367706, + 0.0069847931154072285, + 0.00160463887732476, + 0.008744430728256702, + 0.021058309823274612, + -0.013446354307234287, + -0.00011025732237612829, + 0.005400761030614376, + -0.009848236106336117, + -0.0073288362473249435, + 0.006260869093239307, + -0.011482440866529942, + -0.006755431182682514, + 0.02313690260052681, + -0.002062467159703374, + -0.008199695497751236, + 0.010228116996586323, + -0.006676587741822004, + -0.0024136777501553297, + 0.020671259611845016, + 0.03426096588373184, + 0.01432796474546194, + -0.0002882705593947321, + 0.00568029610440135, + -0.005361339543014765, + 0.025530871003866196, + 0.020470568910241127, + -0.020140860229730606, + -0.0011539781698957086, + 0.029415691271424294, + 0.011611456982791424, + -0.009547198191285133, + -0.011317586526274681, + 0.006160522811114788, + -0.006536820437759161, + -0.001437992905266583, + 0.014471315778791904, + 0.017058806493878365, + 0.010901868343353271, + 0.010242451913654804, + -0.015825984999537468, + -0.012829943560063839, + 0.0012964335037395358, + -0.009016797877848148, + 0.027537789195775986, + -0.014750851318240166, + -0.00918881967663765, + 0.01869301311671734, + -0.003314999397844076, + 0.00992707908153534, + -0.025745896622538567, + 0.020155195146799088, + -0.004415220580995083, + -0.0014093227218836546, + 0.014693510718643665, + 0.020441899076104164, + 0.0018187698442488909, + 0.004139269236475229, + -0.017918914556503296, + -0.01955311931669712, + 0.018879368901252747, + 0.03254074975848198, + -0.021617379039525986, + 0.0038023937959223986, + 0.01986849308013916, + 0.0053147501312196255, + -0.014535823836922646, + 0.019065726548433304, + -0.00988407339900732, + 0.007171149831265211, + 0.008586743846535683, + 0.008077846840023994, + 0.007088722661137581, + -0.004418804310262203, + -0.01681510917842388, + 0.01347502414137125, + 0.005859485361725092, + 0.004064009990543127, + -0.00035837831092067063, + 0.003359796479344368, + 0.019481444731354713, + 0.015911996364593506, + 0.000508897181134671, + 0.022592168301343918, + -0.009540030732750893, + 0.018865033984184265, + 0.0006957018631510437, + -0.016356386244297028, + 0.025301508605480194, + 0.014227618463337421, + -0.0020696346182376146, + -0.010758516378700733, + -0.025100816041231155, + 0.005418680142611265, + 0.010005922056734562, + -0.0010025632800534368, + -0.009511359967291355, + 0.011382094584405422, + 0.00011983274453086779, + -0.01786157488822937, + 0.018420644104480743, + 0.0005160647560842335, + 0.00866558775305748, + -0.0076979659497737885, + 0.00493845297023654, + -0.02842656709253788, + 0.01336034294217825, + 0.013704386539757252, + -0.0034870209638029337, + -0.0014057388762012124, + -0.010321294888854027, + 0.0005393593455664814, + -0.0056946310214698315, + 0.00041168706957250834, + 0.027423107996582985, + -0.008586743846535683, + 0.021631713956594467, + 0.017732558771967888, + -0.017302503809332848, + 0.019796816632151604, + -0.004816604312509298, + -0.014392472803592682, + -0.017689552158117294, + 0.006042258348315954, + 0.008808938786387444, + -0.010385802946984768, + -0.004572906997054815, + -0.006913117598742247, + -0.03193867579102516, + -0.0013519821222871542, + 0.0016583956312388182, + -0.00010168984590563923, + 0.01562529429793358, + 0.0112459110096097, + -0.0019710806664079428, + 0.001440680818632245, + 0.007307333406060934, + 0.00488469609990716, + 0.006769766099750996, + 0.014965877868235111, + -0.013439185917377472, + 0.03041915036737919, + -0.010213782079517841, + 0.000232273931032978, + 0.00861541461199522, + 0.012715262360870838, + -0.016958462074398994, + 0.028684599325060844, + 0.005321917589753866, + 0.01045747846364975, + 0.007497274316847324, + -0.006812771316617727, + 0.004243199247866869, + -0.01671476475894451, + 0.0004712674708571285, + 0.003716382896527648, + 0.00559786893427372, + 0.019925832748413086, + -0.01552494801580906, + 0.000726164027582854, + -0.01563962921500206, + 0.0010097308550029993, + -0.016628753393888474, + 0.01882202923297882, + -0.015109228901565075, + -0.01923774741590023, + 0.011396430432796478, + -0.0018492320086807013, + 0.008321544155478477, + -0.005841566249728203, + -0.005784225650131702, + -0.002958412980660796, + 0.017617877572774887, + -0.013109478168189526, + 0.017732558771967888, + -0.0015625293599441648, + 0.007647792808711529, + 0.018463650718331337, + -0.015983672812581062, + -0.02038455754518509, + 0.010392970405519009, + -0.006296706851571798, + 0.021416686475276947, + 0.0067410957999527454, + -0.014299293980002403, + 0.002725467085838318, + -0.010686840862035751, + 0.03245474025607109, + 0.004064009990543127, + -0.013690050691366196, + -0.02471376769244671, + 0.0008265099604614079, + 0.01638505607843399, + -0.004454642068594694, + -0.0048811123706400394, + 0.005303998943418264, + 0.017087478190660477, + -0.022749854251742363, + -0.00504955044016242, + -0.009862571023404598, + 0.0005904282443225384, + -0.02051357366144657, + -0.004468977451324463, + 0.002100096782669425, + 0.02621895633637905, + 0.00497070699930191, + 0.0013779646251350641, + 0.032082024961709976, + -0.0023330426774919033, + 0.010285457596182823, + 0.005286079831421375, + 0.008085014298558235, + 0.0182629581540823, + -1.0450366971781477e-5, + 0.01409860234707594, + 0.011776311323046684, + -0.018320299685001373, + 0.017388515174388885, + 0.0005209924420341849, + -0.009389511309564114, + -0.013267165049910545, + -0.03403160348534584, + 0.004666085354983807, + -0.004124934319406748, + 0.004974290728569031, + -0.004264701623469591, + 0.00908847339451313, + 0.0008457727963104844, + -0.015797315165400505, + -0.017703888937830925, + 0.012184862047433853, + -0.0007494586170651019, + 0.0003657698689494282, + -0.0007427390082739294, + -0.026763692498207092, + -0.01690112054347992, + 0.0023384185042232275, + 0.02134501188993454, + -0.02555954083800316, + 0.018635671585798264, + 0.00633971206843853, + 0.007070804014801979, + 0.01573997549712658, + 0.00913864653557539, + -0.021803736686706543, + -0.010980711318552494, + 0.006730344612151384, + -0.014284959062933922, + -0.023911001160740852, + 0.016886785626411438, + 0.004210945218801498, + -0.011346257291734219, + 0.01061516534537077, + 0.018736017867922783, + -0.022663844749331474, + -0.004515566397458315, + 0.005866652820259333, + -0.015668299049139023, + 0.011690299957990646, + 0.044954974204301834, + 0.0008372613228857517, + -0.007669295649975538, + 0.004741345066577196, + -0.013518029823899269, + -0.002610785886645317, + 0.0019495779415592551, + 0.0201838668435812, + -0.0008547322358936071, + 0.025401854887604713, + -0.033974263817071915, + -0.020370222628116608, + 0.010887532494962215, + -0.004727009683847427, + 0.010866030119359493, + -0.009210322052240372, + -0.0112459110096097, + -0.003374131629243493, + -0.0008081430569291115, + 0.03205335512757301, + -0.008923619985580444, + -0.019280752167105675, + 0.03084920346736908, + -0.013403348624706268, + 0.01627037487924099, + -0.007568949833512306, + 0.00992707908153534, + -0.030046436935663223, + 0.014026926830410957, + -0.004551404621452093, + 0.015324256382882595, + 0.011589954607188702, + -0.01606968231499195, + -0.021201660856604576, + -0.018736017867922783, + 0.0015947833890095353, + 0.001528483466245234, + -0.004064009990543127, + -0.0045191505923867226, + 0.029845744371414185, + -0.0084577277302742, + 0.0029870830476284027, + -0.008292874321341515, + -0.01721649430692196, + 0.023638632148504257, + -0.026018265634775162, + -0.0074184308759868145, + -0.000187700628885068, + 0.01273676473647356, + -0.010550657287240028, + 0.0075617823749780655, + -0.0015266916016116738, + 0.0001183768326882273, + -0.00026676783454604447, + -0.012614916078746319, + 0.006845025345683098, + -0.005723301321268082, + 0.01489420235157013, + 0.011697467416524887, + 0.006629998795688152, + 0.024470070376992226, + -0.004906198941171169, + -0.014879867434501648, + 0.008378884755074978, + 0.02166038379073143, + -0.013496526516973972, + -0.003553320886567235, + -0.017832905054092407, + -0.015195240266621113, + 0.009375176392495632, + -0.011109727434813976, + 0.007242825347930193, + 0.007217738777399063, + -0.020413227379322052, + -0.0028724020812660456, + -0.004454642068594694, + 0.000611930969171226, + -0.0015562578337267041, + 0.012665089219808578, + -0.012636419385671616, + -0.003295288421213627, + 0.011683132499456406, + 0.0021556455176323652, + 0.011539781466126442, + 0.03836081176996231, + 0.0026466238778084517, + 0.0008842984680086374, + -0.018836364150047302, + 0.020155195146799088, + 0.013346008025109768, + -0.02262083813548088, + 0.005673128645867109, + 0.008163857273757458, + -0.012227867729961872, + -0.018664341419935226, + -0.01336034294217825, + 0.011181402951478958, + 0.012557575479149818, + -0.0043220422230660915, + -0.0372140035033226, + -0.013697219081223011, + -0.0033257505856454372, + -0.01606968231499195, + -0.0002992458757944405, + 0.017603542655706406, + -0.00562653923407197, + 0.01553928293287754, + -0.009511359967291355, + 0.042317308485507965, + -0.0034744776785373688, + 0.005282496102154255, + -0.007805479224771261, + -0.005927577149122953, + 0.019782481715083122, + 0.01120290532708168, + -0.016557076945900917, + 0.01690112054347992, + -0.015811650082468987, + -0.016929790377616882, + -0.015223910100758076, + -0.002892112825065851, + 0.002748761558905244, + 0.0042288638651371, + -0.015410266816616058, + 0.00715681491419673, + -0.012765435501933098, + 0.0014218658907338977, + -0.0011808564886450768, + 0.014399640262126923, + -0.004003085661679506, + 0.0042682853527367115, + 0.031021226197481155, + -0.00249789678491652, + -0.004841690883040428, + 0.0187216829508543, + -0.01358253788203001, + -0.018764687702059746, + -0.005013712681829929, + -0.0014568078331649303, + -0.011589954607188702, + -0.014722180552780628, + -0.02620462141931057, + 0.018678676337003708, + -0.016542742028832436, + 0.002548069693148136, + 0.000840845110360533, + -0.010471814312040806, + -0.0011279956670477986, + 0.00214131036773324, + 0.025917919352650642, + 0.004529901780188084, + 0.002281077904626727, + -0.007006295956671238, + 0.015782980248332024, + -0.01678643934428692, + 0.0027541371528059244, + 0.014464148320257664, + 0.013453521765768528, + 0.004877528641372919, + 0.024670762941241264, + -0.00563012296333909, + -0.022162113338708878, + 0.005766307003796101, + -0.01273676473647356, + -0.011045219376683235, + 0.024699432775378227, + -0.0037127991672605276, + 0.006411388050764799, + -0.01542460173368454, + -0.0016852739499881864, + -0.0037808911874890327, + -0.01606968231499195, + -0.0045549883507192135, + 0.020585250109434128, + 0.005501106847077608, + 0.009561533108353615, + -0.023939670994877815, + 0.0034171370789408684, + -0.01701580174267292, + 0.015438937582075596, + -0.024025680497288704, + -0.015023218467831612, + 0.026247626170516014, + 0.014865531586110592, + 0.019409768283367157, + 0.01278693787753582, + -0.003748637158423662, + -0.004927701782435179, + 0.008070679381489754, + -0.004418804310262203, + -0.006913117598742247, + -0.001081406488083303, + -0.005350587889552116, + 0.02472810260951519, + 0.02822587452828884, + 0.0034458073787391186, + 0.0009765808936208487, + -0.01410576980561018, + -0.007482938934117556, + 0.010858862660825253, + 0.007633457891643047, + 0.004393718205392361, + -0.0050352150574326515, + -0.01933809369802475, + -0.004802269395440817, + 0.0076979659497737885, + -0.005644458346068859, + -0.007120976690202951, + -0.005751971621066332, + 0.0017515739891678095, + -0.0002696796727832407, + -0.001527587533928454, + 0.008106517605483532, + -0.01733117550611496, + -0.004210945218801498, + 0.013897910714149475, + -0.010242451913654804, + -0.005153479985892773, + 0.0035300261806696653, + 0.005074636545032263, + -0.006031506694853306, + 0.006769766099750996, + -0.00930350087583065, + -0.005988501477986574, + 0.00628237146884203, + 0.018965380266308784, + -0.009403846226632595, + 0.0004802269395440817, + -0.009869738481938839, + 0.0007543863030150533, + -0.0034923965577036142, + -0.017058806493878365, + 0.006676587741822004, + -0.004021004773676395, + 0.019209077581763268, + -0.012055845931172371, + -0.020857617259025574, + -0.011274581775069237, + -0.014342299662530422, + -0.015811650082468987, + 0.0082857059314847, + 0.01966780051589012, + -0.007196236401796341, + 0.03225404769182205, + 0.02759512886404991, + 0.01996883936226368, + -0.0270647294819355, + -0.01743151992559433, + -0.0026143696159124374, + 0.01731683872640133, + -0.016012342646718025, + 0.016227370128035545, + 0.009217489510774612, + -0.008092181757092476, + -0.0019495779415592551, + -0.0018178739119321108, + -0.013955251313745975, + 0.006096014752984047, + 0.015295585617423058, + -0.004418804310262203, + -0.011740473099052906, + -2.4624509023851715e-5, + -0.01711614802479744, + 0.0017246955540031195, + -0.022692514583468437, + 0.0003621860814746469, + 0.02019820176064968, + -0.003745053196325898, + -0.0030641343910247087, + -0.008321544155478477, + 0.008930787444114685, + 0.0014066348085179925, + -0.0016485401429235935, + -0.014607499353587627, + 0.009446851909160614, + -0.002531942678615451, + 0.02112998440861702, + 0.004684004466980696, + -0.03044782020151615, + 0.0038023937959223986, + -0.0026143696159124374, + -0.018191281706094742, + -0.011389262042939663, + 0.027924837544560432, + -0.00022421042376663536, + 0.0003261242527514696, + 0.028383562341332436, + 0.017560536041855812, + -0.011059554293751717, + -0.0036644181236624718, + -0.00047305936459451914, + 0.005515442229807377, + 0.013410516083240509, + 0.0020337968599051237, + -0.0020929293241351843, + 0.022792860865592957, + 0.004468977451324463, + -0.02186107635498047, + -0.013152483850717545, + 0.011840819381177425, + -0.013761727139353752, + -0.0031662723049521446, + 0.012421391904354095, + -0.020871952176094055, + -0.027638135477900505, + 0.020628254860639572, + 0.010256786830723286, + -0.011167068034410477, + 0.006920285057276487, + 0.006002836395055056, + 0.0027290508151054382, + -0.00419660983607173, + -0.01489420235157013, + -0.005128393415361643, + -0.013589705340564251, + 0.0064149717800319195, + 0.005103306844830513, + -0.016729099676012993, + -0.008321544155478477, + 0.01776122860610485, + -0.0013053929433226585, + 0.011647295206785202, + -0.004035339690744877, + -0.015897661447525024, + -0.008156689815223217, + 0.025932254269719124, + -0.008493565954267979, + -0.001018690294586122, + 0.01575431041419506, + 0.009869738481938839, + -0.0028204373084008694, + -0.0014881659299135208, + 0.003531818278133869, + -0.004074761178344488, + -0.025487864390015602, + 0.0011521861888468266, + 0.009038301184773445, + 0.0055584474466741085, + -0.021416686475276947, + 0.005859485361725092, + 0.002239864319562912, + 0.018879368901252747, + 0.010206613689661026, + -0.0017963711870834231, + -0.01126024592667818, + -0.02345227636396885, + -0.004458226263523102, + 0.008894949220120907, + -0.02270684950053692, + -0.011589954607188702, + 0.0008708592504262924, + -0.002813269617035985, + -0.01678643934428692, + 0.010005922056734562, + -0.004959955811500549, + -0.0049348692409694195, + 0.012442894279956818, + -0.009511359967291355, + -0.0024728102143853903, + -0.011002213694155216, + 0.02388232946395874, + 0.0027738481294363737, + 0.003730718046426773, + 0.024799779057502747, + 0.009848236106336117, + -0.014170277863740921, + 0.016542742028832436, + -0.004895447753369808, + -0.003974415361881256, + -0.006346879526972771, + -0.002868818351998925, + 0.00792016088962555, + -0.006131852976977825, + -0.015037553384900093, + 0.0014299293980002403, + 0.010120603255927563, + -0.0025409022346138954, + 0.014062764123082161, + 0.006189193110913038, + 0.0013976753689348698, + -0.012127521447837353, + -0.005830815061926842, + -0.037787407636642456, + -0.015782980248332024, + 0.010973543860018253, + 0.014922872185707092, + -0.01637072116136551, + 0.008658419363200665, + 0.01935242861509323, + 0.020986633375287056, + -0.033028144389390945, + 0.01879335753619671, + -0.020126525312662125, + -0.027437442913651466, + -6.848385237390175e-5, + -0.003791642375290394, + 0.003300664247944951, + -0.001679898239672184, + 0.012399889528751373, + 0.023079562932252884, + 0.007719468791037798, + 0.007991836406290531, + 0.0071854847483336926, + -0.005816479679197073, + -0.006268036551773548, + 0.009023965336382389, + -0.0015589456306770444, + -0.0004313978715799749, + 0.007970333099365234, + -0.0010545281693339348, + 0.013926580548286438, + 0.0039421613328158855, + -0.012514570727944374, + 0.003218237077817321, + 0.004848858341574669, + -0.01806226558983326, + 0.001361837494187057, + 0.004056842532008886, + 0.010536322370171547, + 0.001668251003138721, + -0.007461436092853546, + -0.02059958502650261, + 0.0008601079462096095, + -0.01816261187195778, + 0.0114752734079957, + -3.088212906732224e-5, + 0.015238245017826557, + 0.013833402656018734, + 0.008386052213609219, + 0.02494313009083271, + -0.0044116368517279625, + -0.0039027396123856306, + -0.012457230128347874, + 0.006554739084094763, + 0.000739603245165199, + 0.0003798810066655278, + -0.006633582524955273, + -0.00491336639970541, + -0.00351210730150342, + -0.0022219454403966665, + -0.020370222628116608, + -0.026032600551843643, + -0.011267413385212421, + 0.0031286426819860935, + 0.00918881967663765, + 0.015381596982479095, + 0.01083736028522253, + 0.0019298671977594495, + -0.014600331895053387, + -0.00860824715346098, + -0.004182274919003248, + 0.010392970405519009, + -0.001872526598162949, + -0.002671710215508938, + -0.0056946310214698315, + -0.0006029714713804424, + -0.01615569368004799, + -0.0002690077235456556, + 0.019524449482560158, + 0.01690112054347992, + 0.012643586844205856, + -0.014069932512938976, + -0.01731683872640133, + -0.00043856544652953744, + -0.0006065552588552237, + -0.004160772077739239, + -0.01061516534537077, + -0.017187822610139847, + -0.016127023845911026, + 0.014041261747479439, + -0.0067052580416202545, + 0.009310668334364891, + 0.01912306621670723, + 0.012958959676325321, + -0.01965346559882164, + -0.01988282799720764, + 0.0018546077189967036, + 0.009332170709967613, + 0.016442395746707916, + 0.0018617752939462662, + 0.0072822473011910915, + 0.020370222628116608, + -0.014614666812121868, + -0.004841690883040428, + -0.011761975474655628, + 0.022004427388310432, + 0.004687588196247816, + 0.006773349829018116, + 0.012120353989303112, + 0.014492818154394627, + 0.013797564432024956, + 0.012235035188496113, + -0.0036733776796609163, + -0.027136405929923058, + 0.003232572227716446, + -0.027666805312037468, + 0.015911996364593506, + -0.00628595519810915, + 0.016313379630446434, + -0.005407928489148617, + -0.0059813340194523335, + -0.017818568274378777, + -0.020542243495583534, + -0.000737811322323978, + 0.014994548633694649, + 0.005906074307858944, + 0.010443143546581268, + 0.005461685359477997, + -0.0062178634107112885, + -0.00573405297473073, + -0.011783478781580925, + 0.005777058191597462, + -0.002838356187567115, + 0.011690299957990646, + 0.006167690735310316, + -0.008214030414819717, + -0.00702779833227396, + -0.026276297867298126, + -0.0014209699584171176, + -0.007619122508913279, + 0.03041915036737919, + -0.012865780852735043, + 0.0010384011548012495, + -0.026462653651833534, + 0.018736017867922783, + 0.007748139090836048, + -0.014822526834905148, + -0.01628470979630947, + -0.012012840248644352, + -0.0002900624240282923, + -0.007002712227404118, + -0.05043099448084831, + 0.015768645331263542, + 0.004049674607813358, + -0.014779521152377129, + -0.0034296803642064333, + 0.018664341419935226, + -0.005153479985892773, + 0.005594285205006599, + 0.02409735694527626, + -0.008493565954267979, + 0.003121474990621209, + 0.013209824450314045, + -0.013933748006820679, + 0.0036482911091297865, + -0.0210296381264925, + -0.0004721634031739086, + -0.010414473712444305, + 0.005777058191597462, + -7.587540494569112e-6, + 0.00039533607196062803, + -0.006404220126569271, + -0.01325282920151949, + -0.02187541127204895, + -0.011783478781580925, + 0.03147995099425316, + 0.05114775151014328, + 0.031766653060913086, + -0.00499579356983304, + 0.001196983503177762, + 0.02240581065416336, + -0.026606004685163498, + 0.001351086189970374, + 0.0012274456676095724, + -0.02399701066315174, + -0.0015580496983602643, + -0.017789898440241814, + -0.003920658491551876, + 0.022592168301343918, + 0.0028168533463031054, + -0.00914581399410963, + -0.0015240036882460117, + -0.024341054260730743, + 0.008135187439620495, + 0.0009362632990814745, + -0.0010876781307160854, + 0.00925332773476839, + 0.005723301321268082, + -0.020126525312662125, + 0.0037773072253912687, + 0.013718721456825733, + 0.0039027396123856306, + -0.021373681724071503, + -0.011030884459614754, + -0.02059958502650261, + 0.016872450709342957, + 0.012364051304757595, + -0.012880115769803524, + 0.0035461531952023506, + -0.0045191505923867226, + -0.007884322665631771, + 0.022878870368003845, + 0.00781264714896679, + 0.008142354898154736, + -0.012643586844205856, + -0.011102559976279736, + 0.018406309187412262, + -0.013238494284451008, + -0.006572658196091652, + -0.016327714547514915, + -0.014249120838940144, + -0.01050765160471201, + -0.003490604693070054, + -0.013181153684854507, + 0.009518527425825596, + -0.0008632437093183398, + -0.005633706692606211, + -0.01542460173368454, + -0.03474836051464081, + -0.018664341419935226, + -0.008278538472950459, + 0.011926829814910889, + 0.03076319396495819, + -0.0014272416010499, + -0.005519025959074497, + -0.010328462347388268, + -0.013991088606417179, + -0.005397177301347256, + -0.0026663346216082573, + 0.021617379039525986, + -0.009611706249415874, + 0.01774689368903637, + -0.0009147606324404478, + 0.005182150285691023, + -0.009052636101841927, + -0.014413975179195404, + 0.007389760576188564, + -0.02389666438102722, + -0.011124062351882458, + -0.0029494534246623516, + -0.024154698476195335, + 0.0008323335787281394, + -0.03305681422352791, + 0.0005308478721417487, + -0.009002462960779667, + 0.019725142046809196, + 0.006637166254222393, + 0.010084765031933784, + 0.02019820176064968, + -0.0023724643979221582, + -0.009461186826229095, + -0.004053258802741766, + 0.00793449580669403, + 0.004479728639125824, + 0.0032934965565800667, + 0.01432796474546194, + -0.015883326530456543, + 0.0020732185803353786, + -0.00216639693826437, + 0.0024226373061537743, + 0.007034966256469488, + -0.02209043875336647, + 0.004805853124707937, + 0.000687638355884701, + -0.0060816798359155655, + -0.00030484554008580744, + -0.007948830723762512, + 0.012500234879553318, + 2.434452653687913e-5, + 0.028713269159197807, + -0.0018635671585798264, + -0.0357518196105957, + 0.007253577001392841, + 0.0069955443032085896, + 0.006683755200356245, + -0.0023366266395896673, + 0.002435180591419339, + -0.006321793422102928, + 0.0012041510781273246, + 0.012536073103547096, + 0.0005398073117248714, + 0.02474243752658367, + -0.008930787444114685, + 0.01565396413207054, + 0.01734551042318344, + -0.005038798786699772, + -0.00782698206603527, + -0.0003798810066655278, + 0.020112190395593643, + 0.011274581775069237, + 0.005787809379398823, + 0.0004923222004435956, + 0.009669046849012375, + 0.013862072490155697, + -0.02072860114276409, + 0.008300041779875755, + 0.01617002859711647, + 0.001514148316346109, + -0.017402850091457367, + 0.011561283841729164, + -0.003927826415747404, + -0.006522485055029392, + 0.01495154295116663, + -0.008794603869318962, + -0.006601328495889902, + -0.005493939388543367, + -0.016542742028832436, + 0.044209547340869904, + 0.022448817268013954, + 0.011969835497438908, + 0.0028867372311651707, + 0.010937705636024475, + -0.012163359671831131, + 0.0008139667334035039, + 0.00914581399410963, + -0.0022613671608269215, + -0.0036733776796609163, + -0.03899155929684639, + -0.005544112529605627, + 0.0033562127500772476, + -0.0072284904308617115, + 0.024599086493253708, + -0.0023903832770884037, + 0.03686995804309845, + -0.0004936660989187658, + -0.001349294325336814, + 0.006981209386140108, + 0.0019262833520770073, + 0.002917199395596981, + 0.020527908578515053, + 0.000737811322323978, + 0.01273676473647356, + 0.015410266816616058, + 0.015309921465814114, + -0.018779022619128227, + -0.00034068338572978973, + -0.021732060238718987, + 0.01146093849092722, + -0.023638632148504257, + -0.005407928489148617, + 0.00252298335544765, + -0.007576117292046547, + -0.00798466894775629, + -0.02303655818104744, + -0.034719690680503845, + -0.00491336639970541, + 0.026562999933958054, + 0.013776062056422234, + 0.015324256382882595, + -0.013733056373894215, + 0.016241705045104027, + -0.009446851909160614, + -0.0025426940992474556, + 0.009762224741280079, + 0.007611955050379038, + -0.004662501625716686, + -0.007307333406060934, + 0.01067967340350151, + -0.005239490885287523, + -0.014636170119047165, + -0.02072860114276409, + 0.011632959358394146, + 0.0019889995455741882, + 0.002148477826267481, + -0.02504347637295723, + -0.009016797877848148, + -0.002867026487365365, + -0.006866528186947107, + 0.004286204464733601, + -0.02958771213889122 + ], + "d7ba5df5-4220-447e-b9ee-4506ddd585ca": [ + -0.0195996705442667, + -0.02725800685584545, + -0.014607569202780724, + -0.005031101871281862, + -0.06291182339191437, + -0.025853978469967842, + 0.03398032486438751, + 0.05755098536610603, + 0.02365575172007084, + 0.030179521068930626, + 0.012763895094394684, + 0.011246410198509693, + -0.027513286098837852, + -0.011324411258101463, + -0.020294593647122383, + 0.008487990126013756, + -0.05888410285115242, + 0.03162609413266182, + 0.0043255421333014965, + -0.007303784601390362, + 0.06546460092067719, + -0.03891569748520851, + -0.019585488364100456, + 0.02825075387954712, + -0.018153095617890358, + -0.023528113961219788, + 0.02484704926609993, + 0.002808057004585862, + -0.0028328755870461464, + -0.010898948647081852, + -0.023485567420721054, + 0.02287573739886284, + 0.032023195177316666, + -0.010544396005570889, + 0.017358897253870964, + -0.02152843587100506, + -0.021925535053014755, + 0.017543265596032143, + -0.03381013870239258, + -0.0056586600840091705, + -0.01195551548153162, + 0.026095075532794, + 0.023216107860207558, + 0.01257952768355608, + -0.0052509247325360775, + 0.031767915934324265, + 0.027697652578353882, + -0.00919000431895256, + 0.0016610791208222508, + -0.009665105491876602, + 0.010537304915487766, + 0.024648500606417656, + -0.015061396174132824, + 0.02375502698123455, + -0.006598224863409996, + -0.0025687338784337044, + 0.02903077006340027, + 0.08356096595525742, + 0.044333264231681824, + -0.044276535511016846, + -0.005708297714591026, + 0.010331664234399796, + -0.010813855566084385, + 0.0013242540881037712, + -0.016649791970849037, + -0.023684116080403328, + 0.0032087014988064766, + 0.023641569539904594, + -0.023528113961219788, + 0.008870907127857208, + 0.016366150230169296, + 0.004339724313467741, + -0.05363672226667404, + 0.019840765744447708, + 0.006825138349086046, + -0.020578235387802124, + 0.04796388000249863, + -0.019557124003767967, + 0.005662205629050732, + 0.0015254627214744687, + -0.05184977874159813, + 0.016635609790682793, + 0.028761310502886772, + -0.016082508489489555, + 0.04600675031542778, + 0.007282511331140995, + -0.04546783119440079, + -0.0386887863278389, + -0.0324486568570137, + -0.022606275975704193, + 0.025045597925782204, + 0.04240449517965317, + 0.003190973773598671, + 0.017401443794369698, + -0.008551809936761856, + 0.0022248178720474243, + 0.02710200473666191, + 0.015699591487646103, + -0.027016911655664444, + -0.010806764476001263, + -0.025485243648290634, + 0.016082508489489555, + -0.026520537212491035, + -0.010211115702986717, + -0.0011771147837862372, + -0.019429484382271767, + 0.005336017347872257, + 0.005367927253246307, + -0.01853601261973381, + 0.026931818574666977, + 0.015373402275145054, + -0.023145196959376335, + 0.019330210983753204, + 0.001769217662513256, + 0.033923596143722534, + -0.06779046356678009, + -0.029271867126226425, + -0.02832166478037834, + -0.005648023448884487, + -0.07539207488298416, + 0.06018885597586632, + 0.016167599707841873, + 0.005236742552369833, + -0.01775599643588066, + 0.01418919675052166, + -0.0038965335115790367, + -0.026477990671992302, + 0.0035685724578797817, + -0.003203383181244135, + 0.031030448153614998, + -0.022946646437048912, + -0.014962121844291687, + -0.03307266905903816, + 0.030746804550290108, + -0.016451243311166763, + 0.015217399224638939, + 0.011076224967837334, + 0.05281416326761246, + -0.025641247630119324, + 0.04450344666838646, + -0.00047554372576996684, + -0.008956000208854675, + 0.0063039460219442844, + -0.024137943983078003, + 0.0205073244869709, + 0.013593547977507114, + -0.05065848305821419, + 0.03888733312487602, + -0.004768732935190201, + 0.014373564161360264, + -0.039369527250528336, + 0.022180814296007156, + 0.034490879625082016, + -0.0034887979272753, + -0.02035132236778736, + 0.001983721973374486, + 0.012373887002468109, + 0.017486536875367165, + -0.030207885429263115, + 0.012884442694485188, + -0.0077576120384037495, + -0.03190973773598671, + 0.011756965890526772, + -0.008948909118771553, + -0.009743106551468372, + 0.01674906723201275, + 0.040305543690919876, + 0.03069007769227028, + -0.04597838595509529, + 0.024577589705586433, + 0.036958567798137665, + -0.01106204278767109, + -0.009104912169277668, + 0.0007857772870920599, + -0.021982263773679733, + -0.01838000863790512, + 0.030548255890607834, + 0.012047698721289635, + 0.02425140142440796, + -0.032703936100006104, + 0.00743851438164711, + -6.270457561186049e-6, + -0.029810786247253418, + -0.022393545135855675, + -0.021060427650809288, + 0.003354067914187908, + 0.028959859162569046, + -0.006793228443711996, + -0.034831251949071884, + 0.012324250303208828, + 0.013749551959335804, + -0.006385493092238903, + 0.025456879287958145, + 0.04665912687778473, + -0.01757162995636463, + -0.003513616742566228, + 0.008183075115084648, + -0.012487344443798065, + 0.029328593984246254, + 0.03100208379328251, + -0.03744075819849968, + -0.04535437375307083, + -0.04773696884512901, + 0.017798542976379395, + -0.06869812309741974, + 0.009268006309866905, + 0.008431262336671352, + -0.008899271488189697, + -0.0006209103157743812, + -0.031455911695957184, + 0.02097533456981182, + -0.03034970723092556, + 0.03196646645665169, + 0.008083799853920937, + -0.017926182597875595, + -0.010395483113825321, + -0.030775168910622597, + 0.014891210943460464, + -0.004080900922417641, + -0.006123124156147242, + -0.030207885429263115, + 0.01004802156239748, + 0.0254426971077919, + -0.03412214666604996, + -0.049552276730537415, + -0.02357066050171852, + -0.013288632966578007, + 0.04078773781657219, + -0.022549547255039215, + 0.017245439812541008, + 0.0428299605846405, + 0.010317482054233551, + 0.024166308343410492, + -0.05085702985525131, + -0.021372433751821518, + 0.00410926528275013, + -0.011629326269030571, + 0.00195358507335186, + 0.043397244065999985, + -0.014976304024457932, + 0.03951134532690048, + -0.012515708804130554, + 0.0001106315030483529, + 0.018011273816227913, + 0.01850764825940132, + 0.015515224076807499, + -0.0076370639726519585, + 0.036079276353120804, + 0.0319381020963192, + -0.012657529674470425, + 0.013451727107167244, + 0.04016372188925743, + 0.003985171671956778, + -0.004793551750481129, + -0.006559223867952824, + 0.031739551573991776, + -0.0033186126966029406, + -0.019840765744447708, + -0.029697328805923462, + -0.001591054955497384, + -0.04351070150732994, + -0.012735530734062195, + -0.002247863681986928, + -0.017273804172873497, + 0.029640601947903633, + -0.03613600507378578, + 0.019996769726276398, + -0.03681674599647522, + 0.001992585835978389, + 0.012395160272717476, + -0.057153888046741486, + 0.005924574565142393, + -0.01145204994827509, + 0.02313101477921009, + -0.0017532628262415528, + -0.013288632966578007, + 0.01594068668782711, + -0.015571951866149902, + -0.01681997813284397, + 0.018918929621577263, + 0.005268652457743883, + 0.018989840522408485, + 0.014621751382946968, + 0.030491527169942856, + -0.006264945026487112, + -0.01640869677066803, + 0.016493789851665497, + 0.013068810105323792, + -0.03979498893022537, + -0.021244794130325317, + 0.0024074125103652477, + -0.01326735969632864, + 0.02819402702152729, + -0.003022561315447092, + 0.021925535053014755, + -0.010948585346341133, + -0.005804026965051889, + -0.004981464706361294, + -0.0013508455595001578, + -0.000682070676703006, + -0.038773875683546066, + -0.006736500188708305, + 0.035114895552396774, + -0.008431262336671352, + 0.012359704822301865, + 0.007778884842991829, + 0.02603834681212902, + -0.028704581782221794, + -0.051651228219270706, + 0.0069527775049209595, + 0.05820336192846298, + 0.012090245261788368, + -0.01819564215838909, + -0.03256211429834366, + -0.010069294832646847, + 0.0159690510481596, + 0.010757126845419407, + 0.0366181954741478, + -0.0013614821946248412, + -0.010005475953221321, + 0.016238510608673096, + -0.0059352112002670765, + -0.04305687174201012, + -0.00514101330190897, + 0.018933111801743507, + -0.027073640376329422, + 0.013465909287333488, + 0.017103619873523712, + -0.011218045838177204, + -0.024577589705586433, + -0.004782915115356445, + -0.04603511467576027, + -0.022804826498031616, + -0.027116186916828156, + 0.02300337515771389, + 0.0010698626283556223, + -0.03284575790166855, + -0.033299583941698074, + -0.00030602325568906963, + -0.0007813454139977694, + -0.014175014570355415, + 0.03369668498635292, + -0.05635968968272209, + -0.009275097399950027, + 0.01900402083992958, + 0.006757773458957672, + -0.01757162995636463, + 0.028137298300862312, + 0.008948909118771553, + -0.007275420241057873, + 0.0006656725890934467, + -0.017826907336711884, + 0.027300553396344185, + 0.006541496142745018, + 0.02422303706407547, + 0.0140828313305974, + -0.02432231232523918, + -0.013855917379260063, + 0.009473646990954876, + 0.009856563061475754, + -0.012246248312294483, + 0.012969535775482655, + -0.029044952243566513, + -0.011154226027429104, + -0.00915454886853695, + 0.032703936100006104, + 0.0038327141664922237, + 0.011459141038358212, + 0.01716034859418869, + 0.014260107651352882, + -0.0036111187655478716, + 0.048559531569480896, + 0.014522476121783257, + 0.007778884842991829, + -0.010189843364059925, + 0.02341465651988983, + 0.04073100909590721, + 0.033923596143722534, + -0.0015493950340896845, + 0.021429162472486496, + 0.0010494758607819676, + 0.01778436079621315, + 0.009175822138786316, + -0.015699591487646103, + 0.05698370188474655, + 0.023825937882065773, + 0.012494435533881187, + 0.015373402275145054, + -0.024804502725601196, + -0.005364381708204746, + -0.026449628174304962, + -0.01565704494714737, + -0.019273482263088226, + 0.012253339402377605, + -0.04481545463204384, + 0.024024486541748047, + 0.019613852724432945, + 0.011076224967837334, + 0.023230290040373802, + 0.004414180293679237, + -0.021017881110310555, + -0.01934439316391945, + 0.0017665585037320852, + 0.012388069182634354, + 0.017217077314853668, + -0.008027072064578533, + 0.004924736451357603, + 0.014373564161360264, + -0.014401928521692753, + 0.002669781446456909, + 0.012104427441954613, + -0.01504721399396658, + 0.0057792081497609615, + -0.015529406256973743, + 0.04081610217690468, + -0.02635035291314125, + 0.007200964260846376, + 0.00787816010415554, + -0.037298936396837234, + 0.011005314067006111, + 0.015642862766981125, + 0.06245799362659454, + -0.00560193182900548, + 0.020478960126638412, + -0.033554863184690475, + 0.011778239160776138, + 0.02837839350104332, + 0.020805148407816887, + 0.007580335717648268, + -0.009445282630622387, + -0.023145196959376335, + -0.0008252213010564446, + -0.021386615931987762, + -0.026208531111478806, + 0.0038433505687862635, + 0.004438999108970165, + 0.015061396174132824, + -0.006392584182322025, + 0.0017000798834487796, + -0.023457203060388565, + 0.03468943014740944, + 0.0231026504188776, + 0.01991167664527893, + -0.008168892934918404, + -0.01272134855389595, + -0.03644801303744316, + -0.025215784087777138, + -0.010409665293991566, + 0.011303137987852097, + 0.020748421549797058, + 0.0004671231145039201, + 0.05176468566060066, + -0.026648176833987236, + 0.025584518909454346, + -0.0209044236689806, + 0.005679933354258537, + -0.014068649150431156, + -0.0015990324318408966, + 0.016153419390320778, + 0.024747774004936218, + -0.006956323049962521, + 0.005896210670471191, + 0.043992891907691956, + -0.03199483081698418, + 0.014579204842448235, + -0.03780949488282204, + -0.03182464465498924, + 0.004885735455900431, + 0.003421433037146926, + -0.008431262336671352, + -0.014352290891110897, + 0.04529764503240585, + -0.021797897294163704, + 0.013153903186321259, + -0.041213199496269226, + -0.022748097777366638, + 0.035455264151096344, + 0.0045099095441401005, + 0.027229642495512962, + -0.004999192431569099, + -0.03522834926843643, + -0.022166632115840912, + -0.008920544758439064, + 0.01794036291539669, + 0.029583873227238655, + 0.017217077314853668, + -0.021840441972017288, + 0.012302977032959461, + 0.005392745602875948, + -0.0006900480948388577, + 0.023513931781053543, + -0.0021627710666507483, + -0.008303622715175152, + -0.014465748332440853, + -0.014862846583127975, + -0.047680240124464035, + 0.023825937882065773, + -0.008204348385334015, + 0.0020510870963335037, + -0.018337462097406387, + 0.0560760460793972, + -0.018762925639748573, + 0.015132307074964046, + 0.011643508449196815, + 0.005800481420010328, + 0.0008921431144699454, + -0.0028452849946916103, + 0.00031466546352021396, + -0.0017869452713057399, + -0.0004103946848772466, + 0.005311198532581329, + 0.011764056980609894, + -0.02147170901298523, + 0.007303784601390362, + -0.0009041092707775533, + 0.03610764071345329, + -0.035738907754421234, + 0.03032134287059307, + 0.008310713805258274, + -0.022776462137699127, + -0.011983879841864109, + 0.000749435625039041, + -0.02152843587100506, + 0.01309717446565628, + 0.013288632966578007, + -0.0034107964020222425, + -0.007087507285177708, + 0.0391993410885334, + 0.006179852411150932, + -0.02328701689839363, + -0.01869201473891735, + 0.001154955243691802, + -0.02269136905670166, + -0.02025204710662365, + 0.01028202660381794, + -0.02284737303853035, + 0.011820784769952297, + -0.029271867126226425, + -0.008055436424911022, + 0.025513608008623123, + -0.016706520691514015, + 0.036079276353120804, + -0.009572921320796013, + -0.028420940041542053, + 0.0028523760847747326, + 0.04748168960213661, + -0.015742138028144836, + 0.0058430274948477745, + 0.01531667448580265, + 0.029612237587571144, + -0.02656308375298977, + 0.019018203020095825, + 0.0007636177469976246, + 0.004857371095567942, + 0.03332794830203056, + -0.03990844637155533, + 0.029498780146241188, + -0.026052528992295265, + -0.041610296815633774, + -0.010118932463228703, + 0.019698945805430412, + -0.024464132264256477, + 0.009083638899028301, + -0.009062365628778934, + -0.034150511026382446, + -0.0005207491922192276, + -0.012969535775482655, + 0.021514253690838814, + -0.00016896649322006851, + 0.025272512808442116, + 0.02412376180291176, + 0.023230290040373802, + 0.017089437693357468, + -0.0014970985939726233, + 0.0062117623165249825, + 0.021570982411503792, + 0.010856402106583118, + 0.012458980083465576, + -0.003949716687202454, + 0.002465913537889719, + 0.007154872175306082, + -0.047368232160806656, + 0.034490879625082016, + -0.02619434893131256, + 0.001084044692106545, + 0.007615790702402592, + -0.05150940641760826, + -0.030292978510260582, + -0.005492020398378372, + 0.008133437484502792, + 0.002100724494084716, + 0.024577589705586433, + 0.039965175092220306, + 0.011012405157089233, + -0.015515224076807499, + 0.015713773667812347, + -0.008516354486346245, + 0.01226752158254385, + -0.007218691986054182, + -0.010629488155245781, + -0.0024003214202821255, + 0.018209824338555336, + 0.04013535752892494, + -0.018677832558751106, + -0.01594068668782711, + 0.018663650378584862, + -0.024052850902080536, + -0.0158414114266634, + -0.020138589665293694, + -0.012196610681712627, + 0.003026106860488653, + -0.009622558951377869, + 0.01703270897269249, + -0.018323279917240143, + 0.03622109815478325, + 0.023641569539904594, + 0.022960828617215157, + 0.022081539034843445, + 0.009296370670199394, + -0.014416110701858997, + 0.03466106578707695, + -0.05984848737716675, + 0.05848700553178787, + -0.02669072337448597, + 0.039738260209560394, + -0.006296854931861162, + -0.010530213825404644, + -0.01591232232749462, + -0.017429808154702187, + 0.031455911695957184, + 0.0051871053874492645, + 0.010962767526507378, + 0.020762603729963303, + -0.014437383972108364, + 0.018167277798056602, + 0.012217883951961994, + 0.012388069182634354, + 0.01812473125755787, + -0.019542941823601723, + 0.02012440748512745, + -0.015387584455311298, + -0.006998869124799967, + -0.009913291782140732, + 0.006775501184165478, + -0.010601123794913292, + -0.014274289831519127, + -0.04529764503240585, + 0.029895879328250885, + 0.035682179033756256, + 0.00013827552902512252, + -0.058770645409822464, + 0.014104104600846767, + 0.03278902918100357, + 0.009062365628778934, + -0.004144720267504454, + -0.04532600939273834, + -0.03290248662233353, + 0.01659306325018406, + 0.01650797203183174, + -0.014260107651352882, + 0.029498780146241188, + -0.011218045838177204, + -0.010771309025585651, + 0.009948747232556343, + 0.02381175570189953, + -0.0005801367806270719, + 0.015671227127313614, + -0.001980176428332925, + 0.020464777946472168, + 0.027073640376329422, + -0.015302492305636406, + -0.0072966935113072395, + 0.02744237519800663, + 0.006318128202110529, + 0.006190489046275616, + -0.01788363605737686, + -0.0007578562945127487, + -0.03741239383816719, + 0.016635609790682793, + 0.002439322182908654, + -0.017217077314853668, + 0.0054069277830421925, + -0.01887638308107853, + -0.008034163154661655, + 0.034519243985414505, + -0.01370700541883707, + -0.016153419390320778, + 0.02972569316625595, + -0.03494470939040184, + 0.0011132953222841024, + 0.004321996588259935, + 0.011778239160776138, + -0.01978403702378273, + 0.027300553396344185, + -0.002850603312253952, + 0.0033806595019996166, + -0.011296046897768974, + -0.0017958091339096427, + 0.015699591487646103, + -0.029527144506573677, + -0.03641964867711067, + -0.004158902447670698, + 0.013026264496147633, + 0.003467524889856577, + -0.0013029809342697263, + 0.02531505934894085, + -0.013692823238670826, + 0.005793390329927206, + 0.023088468238711357, + 0.019230935722589493, + 0.030009334906935692, + 0.0020705873612314463, + -0.013614821247756481, + 0.017146166414022446, + -0.00606285035610199, + -0.006651407573372126, + -0.001323367701843381, + 0.0068605937995016575, + 0.01517485361546278, + 0.019046567380428314, + -0.029186774045228958, + 0.049183543771505356, + 0.011856240220367908, + -0.05460110679268837, + -0.059337928891181946, + 0.02235099859535694, + 0.020237864926457405, + 0.011083316057920456, + -0.027527466416358948, + -0.004226267337799072, + 0.05065848305821419, + -0.0004496170731727034, + -0.02975405752658844, + 0.012196610681712627, + -0.022138267755508423, + -0.01781272515654564, + -0.011310229077935219, + 0.0014811436412855983, + 0.03381013870239258, + -0.03159773349761963, + -0.0030580165330320597, + -0.026747452095150948, + 0.033271219581365585, + 0.009473646990954876, + 0.008027072064578533, + 0.001007815939374268, + -0.0043539064936339855, + 0.003485252382233739, + -0.02175535075366497, + 0.005587749648839235, + 0.031767915934324265, + -0.010338755324482918, + 0.03437742590904236, + 0.028704581782221794, + -0.01206188090145588, + -0.01788363605737686, + -0.021046245470643044, + 0.007849795743823051, + 0.003928443416953087, + 0.01799709163606167, + -0.009374371729791164, + 0.021585164591670036, + 0.027740199118852615, + -0.014026102609932423, + 0.01178533025085926, + -0.00867235753685236, + -0.012118609622120857, + 0.019741490483283997, + 0.03406541794538498, + -0.01731635071337223, + 0.0436241589486599, + 0.008920544758439064, + 0.032051559537649155, + 0.005577113013714552, + 0.0231026504188776, + -0.005846573039889336, + 0.04104301333427429, + 0.0270027294754982, + -0.04294341802597046, + 0.02910168096423149, + -0.03681674599647522, + -0.05678515136241913, + -0.00471200468018651, + -0.023528113961219788, + -0.0019429484382271767, + -0.008105073124170303, + 0.036050911992788315, + 0.019018203020095825, + -0.009984202682971954, + -0.014990486204624176, + 0.012168246321380138, + 0.015501041896641254, + -0.010806764476001263, + 0.0022354545071721077, + 0.009480738081037998, + 0.019230935722589493, + 0.03434906154870987, + -0.014288472011685371, + -0.005864300765097141, + 0.003924897871911526, + 0.0020404504612088203, + -0.052870891988277435, + 0.0013783234171569347, + 0.03559708595275879, + -0.021996445953845978, + 0.0038504416588693857, + 0.012572436593472958, + -0.0074243322014808655, + 0.0033062035217881203, + 0.0026272351387888193, + -0.03922770544886589, + 0.0020510870963335037, + 0.012302977032959461, + 0.012586618773639202, + -0.0059352112002670765, + -0.010232388973236084, + -0.015827229246497154, + -0.008431262336671352, + 0.0007746975170448422, + 0.003676710883155465, + 0.0008881543762981892, + 0.029810786247253418, + 0.015699591487646103, + 0.01548685971647501, + -0.0051303766667842865, + -0.019103296101093292, + -0.009055274538695812, + -0.02152843587100506, + 0.016834160313010216, + 0.013444636017084122, + 0.002460595453158021, + -0.010232388973236084, + -0.012310068123042583, + 0.03363995626568794, + 0.0316828228533268, + 0.038518600165843964, + -0.027385646477341652, + -0.010898948647081852, + -0.01703270897269249, + -0.012742621824145317, + 0.003861078293994069, + -0.018167277798056602, + -0.025456879287958145, + -0.015401766635477543, + -0.007027233485132456, + 0.0005464542773552239, + 0.016465425491333008, + 0.002595325466245413, + 0.035455264151096344, + -0.009665105491876602, + 0.01028202660381794, + -0.03034970723092556, + -0.0031767915934324265, + 0.006286218296736479, + -0.04546783119440079, + 0.02403866872191429, + 0.012863170355558395, + 0.010083477012813091, + -0.00637485645711422, + 0.015259945765137672, + 0.01017566118389368, + 0.017982909455895424, + -0.004158902447670698, + -0.019925858825445175, + -0.001415551407262683, + -0.0070839617401361465, + -0.02694600075483322, + 0.009537465870380402, + -0.01079967338591814, + -0.004548910539597273, + -0.02606671117246151, + 0.005336017347872257, + -0.008863816037774086, + 0.014387746341526508, + -0.033866867423057556, + -0.006800319533795118, + -0.03641964867711067, + -0.01674906723201275, + -0.008729086257517338, + 0.01706107333302498, + -0.031427547335624695, + 0.005137467756867409, + 0.010544396005570889, + -0.00936018954962492, + -0.05006283521652222, + 0.005453019868582487, + -0.0075165159069001675, + -0.0022691369522362947, + -0.0012134563876315951, + -0.0008247781079262495, + 0.022081539034843445, + 0.013558093458414078, + -0.012544072233140469, + -0.0244074035435915, + -0.003114745020866394, + -0.03474615886807442, + -0.02159934677183628, + -0.01456502266228199, + 0.004151811357587576, + -0.008580174297094345, + -0.006516677793115377, + -0.004892826545983553, + -0.03988008201122284, + 0.006658498663455248, + -0.03460433706641197, + -0.03551199287176132, + 0.01364318560808897, + -8.636681013740599e-5, + 0.0034320696722716093, + 0.036703288555145264, + 0.009863654151558876, + 0.014820300973951817, + -0.013111356645822525, + -0.023684116080403328, + 0.04407798498868942, + 0.03341304138302803, + 0.02975405752658844, + 0.0011390004074200988, + 0.0043255421333014965, + -0.019202571362257004, + -0.006513132248073816, + 0.006708135828375816, + 0.01812473125755787, + 0.004541819449514151, + -0.014593387022614479, + -0.024761956185102463, + 0.010962767526507378, + 0.003098790068179369, + 0.011288955807685852, + 0.005761480424553156, + 0.010976949706673622, + 0.019670581445097923, + 0.006722318008542061, + -0.029527144506573677, + 0.05159449949860573, + -0.0319381020963192, + 0.019457848742604256, + -0.003547299187630415, + -0.045893292874097824, + -0.02762674167752266, + -0.02056405320763588, + -0.021173883229494095, + -0.006069941446185112, + -0.03159773349761963, + 0.0353134423494339, + -0.028903132304549217, + -0.03199483081698418, + 0.02671908773481846, + 0.018550194799900055, + -0.001999676926061511, + 0.03400868922472, + 0.03522834926843643, + 0.004843188915401697, + 0.005509748123586178, + -0.010168570093810558, + 0.025073962286114693, + 0.0035862999502569437, + 0.007172599900513887, + 0.0027974203694611788, + -0.01209733635187149, + 0.003034970723092556, + -0.01412537693977356, + -0.025215784087777138, + 0.002623689593747258, + -0.042489588260650635, + 0.016706520691514015, + -0.013437544927001, + 0.011530051939189434, + 0.018450919538736343, + 0.009991293773055077, + 0.004956645891070366, + -0.02100369893014431, + 0.007169054355472326, + 0.0022921827621757984, + 0.02694600075483322, + -0.003655437845736742, + -0.004492181818932295, + -0.0025793705135583878, + 0.011239319108426571, + 0.011374048888683319, + 0.026307806372642517, + 0.019996769726276398, + 0.0034604337997734547, + 0.005648023448884487, + 0.015302492305636406, + 0.003985171671956778, + -0.010055112652480602, + 0.0010893630096688867, + 0.007601608522236347, + -0.0028949223924428225, + 0.02456340752542019, + -0.03690183907747269, + 0.012068971991539001, + -0.032079923897981644, + 0.007197418715804815, + -0.005984848830848932, + -0.019528759643435478, + -0.014175014570355415, + 0.013075901195406914, + -0.003221110673621297, + -0.008927635848522186, + -0.025868160650134087, + -0.032335199415683746, + 0.019386937841773033, + 0.005740207154303789, + -0.00982819963246584, + -0.003345204284414649, + 0.012083154171705246, + 0.009558739140629768, + 0.0376393087208271, + 0.004084446467459202, + -0.006598224863409996, + -0.007002414669841528, + -0.026577265933156013, + 0.021400798112154007, + 0.02456340752542019, + -0.04819079488515854, + -0.04229103773832321, + 0.004488636273890734, + 0.02681836113333702, + -0.020081860944628716, + -0.04229103773832321, + 0.01548685971647501, + 0.00675068236887455, + -0.00979983527213335, + 0.007594517432153225, + 0.006846411619335413, + 0.0072399647906422615, + 0.015827229246497154, + 0.002613052958622575, + -0.03951134532690048, + 0.0027601923793554306, + 0.01021820679306984, + -0.019854947924613953, + 0.025995800271630287, + -0.0234997496008873, + 0.008821269497275352, + -0.06047249957919121, + -0.013792097568511963, + -0.002187589881941676, + 0.05119740217924118, + -0.009459464810788631, + 0.0023347290698438883, + -0.003157291328534484, + 0.011047860607504845, + 0.0020900878589600325, + 0.0009821108542382717, + 0.01134568452835083, + -0.006272036116570234, + 0.022421909496188164, + 0.01456502266228199, + -0.016309421509504318, + 0.02412376180291176, + -0.012558254413306713, + -0.005204832646995783, + -0.009615467861294746, + -0.004017081577330828, + 0.02191135287284851, + -0.005016919691115618, + 0.017855271697044373, + -0.01134568452835083, + 0.01435938198119402, + 0.046148572117090225, + -0.039426252245903015, + 0.015827229246497154, + -0.022322634235024452, + 0.005321835167706013, + 0.031767915934324265, + 0.006335855927318335, + -0.0004963736864738166, + 0.010352937504649162, + 0.0009129730751737952, + -0.0002712327695917338, + 0.03071844018995762, + 0.003974535036832094, + 0.009119094349443913, + -0.0017585811438038945, + 0.004999192431569099, + 0.0140828313305974, + -0.01140950433909893, + -0.011544234119355679, + -0.00013694596418645233, + -0.032363563776016235, + -0.0058713918551802635, + -0.006888957694172859, + -0.03122899681329727, + 0.013926828280091286, + 0.007169054355472326, + -0.006498950067907572, + 0.025485243648290634, + -0.023797573521733284, + 0.01791200041770935, + -0.0029250592924654484, + -0.0074526965618133545, + 0.016862524673342705, + 0.0036164370831102133, + -0.026109255850315094, + 0.07573244720697403, + 0.0008939158287830651, + 0.002095406176522374, + -0.0011602735612541437, + -0.012685894034802914, + -0.00821853056550026, + 0.006498950067907572, + 0.02684672549366951, + -0.0017009662697091699, + 0.010352937504649162, + -0.0234997496008873, + 0.016607245430350304, + 0.010083477012813091, + 0.03616436943411827, + 0.007027233485132456, + 0.00310233561322093, + 0.012572436593472958, + 0.013806279748678207, + -0.03718548268079758, + -0.023045921698212624, + 0.0014545521698892117, + -0.009544556960463524, + 0.029895879328250885, + -0.02118806540966034, + -0.0061869435012340546, + -0.02097533456981182, + 0.012302977032959461, + -0.012508617714047432, + -0.023740844801068306, + 0.004080900922417641, + 0.016082508489489555, + -0.005867846310138702, + 0.005116194486618042, + 0.014905393123626709, + -0.02181207947432995, + 0.011799512431025505, + 0.0009723606053739786, + -0.014515385031700134, + 0.0036802564281970263, + -0.0050949216820299625, + -0.007069779559969902, + -0.0002650280948728323, + -0.018961476162075996, + -0.0026148257311433554, + -0.0005482270498760045, + 0.0036802564281970263, + 0.012132791802287102, + 0.021145518869161606, + 0.014260107651352882, + -0.0008026185678318143, + -0.0013907327083870769, + 0.010126023553311825, + -2.9610686397063546e-5, + -0.007030779030174017, + -0.008232712745666504, + -0.002036904916167259, + -0.021826261654496193, + -0.03034970723092556, + -0.020294593647122383, + -0.016493789851665497, + 0.009629650041460991, + 0.020493142306804657, + -0.019557124003767967, + -0.051310859620571136, + -0.007034324575215578, + 0.005392745602875948, + -0.006615952122956514, + -0.009842381812632084, + 0.009778562001883984, + -0.013983556069433689, + 0.002785010961815715, + 0.015217399224638939, + -0.004144720267504454, + 0.017103619873523712, + 0.000875301833730191, + 0.0109698586165905, + 0.01174987480044365, + -0.0303780697286129, + 0.005974212195724249, + -0.032023195177316666, + -0.009395645000040531, + -0.00514101330190897, + 0.018181459978222847, + 0.006488313432782888, + 0.013898463919758797, + -0.003428524127230048, + -0.006009667180478573, + -0.004648185335099697, + 0.007601608522236347, + -0.016621427610516548, + 0.014004829339683056, + 0.018706196919083595, + 0.01086349319666624, + 0.007161963265389204, + 0.003910715691745281, + -0.009572921320796013, + 0.0019145843107253313, + -0.013657367788255215, + -0.005832390859723091, + -0.010409665293991566, + -0.014203378930687904, + -0.007200964260846376, + 0.01412537693977356, + -0.01988331228494644, + 0.009849472902715206, + 0.010005475953221321, + -0.016139237210154533, + 0.011253501288592815, + -0.023457203060388565, + -0.028208209201693535, + -0.001965994480997324, + -0.008105073124170303, + -0.022620458155870438, + 0.0021858171094208956, + -0.0021787260193377733, + -0.0021769532468169928, + -0.025641247630119324, + -0.03900079056620598, + 0.03301594406366348, + -0.011069133877754211, + -0.008835451677441597, + 0.011544234119355679, + -0.012515708804130554, + 0.010019658133387566, + 0.00022093061124905944, + -0.0032547933515161276, + -0.01850764825940132, + 0.01220370177179575, + -0.03148427605628967, + 0.0031289272010326385, + 0.012848988175392151, + 0.02632198855280876, + 0.010260753333568573, + 0.017514901235699654, + -0.009608376771211624, + -0.011700237169861794, + 0.0008358578779734671, + 0.0014244152698665857, + 0.004977919161319733, + -0.0019553578458726406, + -0.02619434893131256, + -0.01650797203183174, + 0.01004802156239748, + 0.022705551236867905, + -0.013607730157673359, + 0.0018897656118497252, + -0.016990162432193756, + 0.02165607549250126, + 0.02196808159351349, + -0.011600962840020657, + 0.027059458196163177, + -0.006881866604089737, + -0.006601770408451557, + -0.0045099095441401005, + 0.0021893626544624567, + -0.01625269278883934, + -0.00890636257827282, + -0.018933111801743507, + -0.0021609982941299677, + 0.02362738735973835, + -0.01412537693977356, + -0.013898463919758797, + -0.0007645041332580149, + -0.015515224076807499, + -0.0003924454504158348, + 0.0036377101205289364, + 0.002481868490576744, + -0.03988008201122284, + -0.0019518123008310795, + -0.004435453563928604, + -0.008970181457698345, + 0.009849472902715206, + -0.02271973341703415, + 0.004396452568471432, + -0.00037959293695166707, + -0.030179521068930626, + 0.03548362851142883, + -0.014891210943460464, + 0.029952608048915863, + -0.018550194799900055, + -0.016961798071861267, + -0.018450919538736343, + 0.005325380712747574, + 0.020748421549797058, + 0.03440579026937485, + 0.0039461711421608925, + -0.016422878950834274, + -0.017826907336711884, + -0.004187266808003187, + 0.005165832117199898, + 0.010317482054233551, + -0.045779839158058167, + -0.00825398601591587, + 0.02118806540966034, + 0.002230136189609766, + 0.00433617876842618, + -0.029640601947903633, + -0.015089760534465313, + 0.00853053666651249, + -0.012083154171705246, + 0.019713126122951508, + 0.010714581236243248, + -0.002485414035618305, + -0.011125861667096615, + 0.012076063081622124, + -0.010062203742563725, + -0.0015485086478292942, + -0.0009448828059248626, + 0.008998545818030834, + -0.018422555178403854, + -0.011069133877754211, + -0.0023081377148628235, + -0.02497468888759613, + 0.010643670335412025, + 0.010579850524663925, + 0.014990486204624176, + 0.001209910842590034, + -0.009700560010969639, + -0.0075732446275651455, + -0.014075740240514278, + -0.009714742191135883, + -0.0004542705719359219, + -0.010686216875910759, + 0.0195996705442667, + 0.0072364192456007, + -0.009629650041460991, + 0.016578881070017815, + 0.010133114643394947, + 0.03653310611844063, + 0.0011735692387446761, + -0.00479709729552269, + 0.00043011666275560856, + 0.01638033241033554, + -0.020237864926457405, + -0.0021521346643567085, + -0.003538435325026512, + -0.019585488364100456, + 0.013941009528934956, + -0.005289925262331963, + 0.004031263757497072, + 0.0005198628059588373, + -0.009934565052390099, + 8.226729551097378e-5, + 0.012735530734062195, + 0.0027938748244196177, + -0.00029959698440507054, + 0.002877194667235017, + 0.0080483453348279, + 0.007495243102312088, + -0.0035402080975472927, + -0.005502657033503056, + 0.01186333131045103, + 0.0054352921433746815, + 0.0009280415251851082, + -0.0027991931419819593, + 0.0059068468399345875, + -0.0039178067818284035, + 0.0005544316954910755, + -0.028548579663038254, + -0.012735530734062195, + -0.005928120110183954, + -0.018422555178403854, + 0.012841897085309029, + -0.005694115534424782, + -0.0039178067818284035, + 0.02303173951804638, + 0.026832543313503265, + -0.009686377830803394, + 0.015954868867993355, + -0.009197095409035683, + 0.0037405304610729218, + 0.0055274758487939835, + -0.007530698087066412, + -0.008729086257517338, + 0.027896201238036156, + -0.00271587329916656, + -0.015387584455311298, + -0.017387261614203453, + 0.015869775786995888, + -0.0029197409749031067, + 0.03676001727581024, + 0.020748421549797058, + 0.009168731048703194, + 0.005414018873125315, + 0.007339239586144686, + 0.019429484382271767, + -0.02331538125872612, + 0.0003888999344781041, + 0.009381462819874287, + 0.007856886833906174, + 0.0039816261269152164, + 0.01978403702378273, + -0.01591232232749462, + -0.003722802735865116, + 0.002964060055091977, + 0.008062527514994144, + -0.002754874061793089, + 0.03953970968723297, + -0.005874937400221825, + -0.014692661352455616, + -0.006793228443711996, + -0.024761956185102463, + -0.014905393123626709, + 0.00603094045072794, + 0.03857532888650894, + 0.011388231068849564, + 0.017103619873523712, + -0.002230136189609766, + 0.0013933918671682477, + -0.03554035723209381, + 0.001861401367932558, + -0.0033930689096450806, + 0.00010808315710164607, + -0.016990162432193756, + -0.0022070901468396187, + 0.0028825129847973585, + 0.010118932463228703, + -0.010820946656167507, + -0.01120386365801096, + 0.011097497306764126, + -0.011700237169861794, + 0.013480091467499733, + -0.037242211401462555, + -0.024364857003092766, + -0.002818693406879902, + 0.002451731590554118, + -0.014536658301949501, + 0.02178371511399746, + -0.024577589705586433, + 0.019684763625264168, + 0.012189519591629505, + 0.001333117950707674, + 0.002850603312253952, + -0.01796872727572918, + -0.009303461760282516, + 0.010608214884996414, + -0.0075165159069001675, + 0.027484921738505363, + 0.002432231092825532, + 0.008821269497275352, + -0.023060103878378868, + 0.009119094349443913, + 0.010991131886839867, + 0.01706107333302498, + -0.011508778668940067, + -0.00686768488958478, + -0.01335954386740923, + 0.005453019868582487, + -0.004126993007957935, + -0.012529890052974224, + -0.002582916058599949, + -0.016181781888008118, + -0.008721995167434216, + -0.01944366656243801, + 0.012430615723133087, + -0.007108780555427074, + 0.009197095409035683, + 0.00042191764805465937, + -0.004598547704517841, + -0.007927796803414822, + 0.011012405157089233, + -0.005470747128129005, + 0.019386937841773033, + -0.029044952243566513, + -0.0067825922742486, + 0.00919000431895256, + -0.0033522951416671276, + -0.010303299874067307, + -0.014309744350612164, + 0.0289456769824028, + -0.02606671117246151, + -0.0013925054809078574, + 0.006325219292193651, + 0.0038752604741603136, + 0.032335199415683746, + 0.0018755834316834807, + 0.025924889370799065, + -0.016039961948990822, + -0.0035277989227324724, + -0.02809475176036358, + -0.02632198855280876, + -0.004304269328713417, + -0.0073321484960615635, + -0.02406703308224678, + 0.002423367230221629, + -0.03627782687544823, + -0.008516354486346245, + -0.015231581404805183, + 0.036703288555145264, + -0.009714742191135883, + 0.0012755031930282712, + -0.004236903972923756, + 0.02941368706524372, + -0.012423524633049965, + -0.020748421549797058, + 0.023485567420721054, + 0.0018773562042042613, + 0.02819402702152729, + -0.012664620764553547, + -0.00023400475038215518, + 0.044049620628356934, + -0.01697598025202751, + -0.010267844423651695, + 0.0007698224508203566, + 0.005016919691115618, + 0.016706520691514015, + 0.013799188658595085, + -0.013047537766397, + -0.01928766444325447, + 0.0068605937995016575, + -0.026463808491826057, + -0.022237541154026985, + -0.019528759643435478, + -0.009700560010969639, + -0.004857371095567942, + -0.032930850982666016, + 0.009509101510047913, + 0.0006825138116255403, + -0.015642862766981125, + 0.011047860607504845, + -0.0006590247503481805, + -0.020961152389645576, + 0.0074526965618133545, + -0.014579204842448235, + 0.006381947547197342, + -0.0007551971357315779, + 0.0005513293435797095, + -0.008601447567343712, + 0.00017096084775403142, + -0.0066478620283305645, + -0.010771309025585651, + 0.013302815146744251, + -0.0005548748886212707, + 0.011735692620277405, + 0.010168570093810558, + -0.014777754433453083, + -0.02581143192946911, + 0.0014705071225762367, + 0.004456726834177971, + 0.014167923480272293, + 0.02081933058798313, + 0.002276228042319417, + -0.024449950084090233, + -0.003224656218662858, + 0.0032849302515387535, + 0.0038752604741603136, + 0.012650438584387302, + 0.008105073124170303, + 0.006389038637280464, + -0.012380978092551231, + -0.00959419459104538, + 0.02072005718946457, + 0.0031218361109495163, + 0.0009962929179891944, + 0.0072364192456007, + 0.01874874345958233, + 0.018053820356726646, + 0.0010246571619063616, + -0.013742460869252682, + -0.0029746966902166605, + 0.009516192600131035, + -0.01143786869943142, + -0.0023790481500327587, + -0.017302168533205986, + -0.005711843259632587, + 0.01791200041770935, + 0.007466878741979599, + -0.007707974407821894, + 0.012118609622120857, + -0.03310103341937065, + -0.002465913537889719, + 0.012934080325067043, + -0.005240288097411394, + -0.0017381943762302399, + 0.0012781622353941202, + -0.005371472332626581, + -0.02450667880475521, + 0.00016209704335778952, + 0.004988555796444416, + -0.010055112652480602, + -0.010026749223470688, + -0.004896372091025114, + 0.006261399481445551, + -0.011161317117512226, + -0.018337462097406387, + 0.0833340510725975, + -0.007906523533165455, + 0.018450919538736343, + 0.02128734067082405, + -0.003302657976746559, + -0.01606832630932331, + -0.007991616614162922, + 0.008622719906270504, + 0.005197741556912661, + 0.0046020932495594025, + -0.027484921738505363, + -0.005470747128129005, + 0.021400798112154007, + 0.025357605889439583, + -0.018734561279416084, + -0.004499272909015417, + 0.010005475953221321, + 0.01456502266228199, + -0.004641094245016575, + 0.00904818344861269, + 0.008913453668355942, + -0.007885251194238663, + -0.0031005628407001495, + -0.00033948416239582, + -0.009998384863138199, + 0.02141498029232025, + -0.0009289279114454985, + -0.0005154309328645468, + 0.021301522850990295, + 0.021826261654496193, + 0.0072683291509747505, + -0.005811118055135012, + 0.001683238660916686, + -0.032675571739673615, + -0.004130538087338209, + 0.0036377101205289364, + 0.0018419009866192937, + 0.003924897871911526, + -0.006201125681400299, + 0.002201771829277277, + -0.004304269328713417, + -0.007644155062735081, + 0.012941171415150166, + 0.021542618051171303, + -0.03341304138302803, + -0.003857532748952508, + -0.01151586975902319, + 0.0016415787395089865, + -0.0001955579500645399, + -0.003612891538068652, + 0.002946332562714815, + -0.006906685419380665, + 0.010211115702986717, + 0.019798219203948975, + 0.02650635503232479, + 0.002751328516751528, + 0.003861078293994069, + 0.018266553059220314, + 0.015898140147328377, + 0.0023116832599043846, + -0.020365504547953606, + -0.010494758374989033, + 0.0052863797172904015, + -0.017713449895381927, + -0.006311037112027407, + -0.008693630807101727, + -0.024364857003092766, + 0.003354067914187908, + -0.00982819963246584, + -0.02443576790392399, + -0.0195996705442667, + -0.01456502266228199, + 0.009636741131544113, + -0.023017557337880135, + 0.006530859507620335, + 0.03488798066973686, + 0.002239000052213669, + 0.029867514967918396, + 0.03948298096656799, + -0.00165841996204108, + -0.015387584455311298, + 0.009104912169277668, + -0.01640869677066803, + -0.00990620069205761, + 0.005612568464130163, + -0.008799996227025986, + 0.01957130618393421, + -0.04912681505084038, + 0.015713773667812347, + -0.02072005718946457, + -0.03562545031309128, + -0.0010521350195631385, + 0.010289117693901062, + 0.004736823495477438, + -0.010168570093810558, + -0.002746010199189186, + 0.01517485361546278, + 0.015217399224638939, + -0.01428138092160225, + -0.015387584455311298, + 0.0031962920911610126, + 0.005924574565142393, + -0.015075578354299068, + -0.004066718742251396, + -0.005573567468672991, + -0.00508783059194684, + 0.030236249789595604, + -0.018606923520565033, + -0.008105073124170303, + 0.003722802735865116, + 0.002687508938834071, + -0.000703343830537051, + 0.0058146631345152855, + 0.01416083239018917, + -0.0025882343761622906, + -0.0009945201454684138, + 0.015557769685983658, + -0.0016752613009884953, + -0.017486536875367165, + -0.009353098459541798, + 0.005513293668627739, + 0.006569860503077507, + -0.004690731409937143, + -0.02172698639333248, + -0.0017789679113775492, + 0.01962803490459919, + -0.019585488364100456, + -0.014536658301949501, + -0.020464777946472168, + -0.00314488192088902, + 0.014806118793785572, + 0.0018702652305364609, + 0.013870099559426308, + -0.010898948647081852, + 0.027385646477341652, + 0.0018135367427021265, + -0.010643670335412025, + 0.007169054355472326, + -0.0012542299227789044, + -0.020776784047484398, + 0.023712480440735817, + -0.015231581404805183, + 0.020322958007454872, + 0.02141498029232025, + 0.004683640319854021, + 0.0034692976623773575, + -0.01517485361546278, + -0.008459625765681267, + 0.020549871027469635, + -0.012536981143057346, + 0.01822400651872158, + -0.033923596143722534, + 0.01681997813284397, + -0.005449474323540926, + 0.002682190854102373, + 0.008133437484502792, + -0.030888626351952553, + 0.02684672549366951, + -0.019542941823601723, + 0.008615628816187382, + 0.011522960849106312, + -0.004850280005484819, + -0.009402736090123653, + 0.013870099559426308, + -0.01669233851134777, + 0.007023687940090895, + 0.015430130995810032, + 0.02006767876446247, + 0.005392745602875948, + -0.004052536562085152, + 0.013366634957492352, + 0.007289602421224117, + 0.024804502725601196, + -0.018053820356726646, + 0.004719095770269632, + -0.01028202660381794, + 0.004591456614434719, + -0.00502401078119874, + -0.016479607671499252, + 0.004403543658554554, + -0.00675068236887455, + -0.017259621992707253, + -0.0029073315672576427, + 0.005438837688416243, + -0.015827229246497154, + -0.021897170692682266, + 0.017926182597875595, + -0.00842417124658823, + 0.0023081377148628235, + -0.01267171185463667, + -0.009119094349443913, + 0.018394190818071365, + -0.004733277950435877, + -0.025045597925782204, + -0.0005127717740833759, + 0.005839481949806213, + 0.04668749123811722, + 0.024308130145072937, + 0.0358240008354187, + -0.004846734460443258, + 0.0017736495938152075, + -0.005297016352415085, + 0.0171319842338562, + 0.011274773627519608, + -0.005456565413624048, + -0.00037914974382147193, + -0.006449312437325716, + -0.015571951866149902, + -0.00331683992408216, + 0.00502401078119874, + -0.03156936913728714, + -0.018762925639748573, + 0.008856724947690964, + 0.013593547977507114, + -0.005811118055135012, + 0.022010628134012222, + 0.017415625974535942, + 0.0168767049908638, + 0.005133922211825848, + 0.010324573144316673, + -0.006442221347242594, + -0.0048148250207304955, + 0.013614821247756481, + 0.01874874345958233, + -0.0044744545593857765, + -0.0007144236005842686, + -0.008261076174676418, + 0.02100369893014431, + 0.025357605889439583, + -0.002531505888327956, + 0.009324734099209309, + -0.019869130104780197, + 0.009026910178363323, + -0.003963898401707411, + -0.0019677672535181046, + 0.025995800271630287, + 0.0064244940876960754, + -0.019670581445097923, + 0.014806118793785572, + -0.004609184339642525, + -0.017982909455895424, + 0.001108863390982151, + -0.005477838218212128, + -0.006935049779713154, + -0.00135793664958328, + -0.022152449935674667, + -0.009168731048703194, + 0.0002998185809701681, + -0.010636579245328903, + -2.6356003218097612e-5, + -0.010530213825404644, + 0.001339322654530406, + 0.004524091724306345, + -0.00884254276752472, + -0.0012728440342471004, + -0.0069527775049209595, + -0.0024162763729691505, + 0.004899917636066675, + 0.002761965151876211, + -0.01518903486430645, + 0.01340918056666851, + 0.004258177243173122, + -0.01700434461236, + 0.006431585177779198, + -0.002795647596940398, + 0.009133276529610157, + -0.03137081861495972, + 0.02084769494831562, + 0.005133922211825848, + -0.0005925461300648749, + 0.006318128202110529, + 5.971996142761782e-5, + -0.0012435934040695429, + 0.033866867423057556, + -0.0012985490029677749, + -0.007218691986054182, + -0.0023045921698212624, + -0.03137081861495972, + 0.00850217230618, + 0.024024486541748047, + -0.010168570093810558, + -0.011161317117512226, + 0.010494758374989033, + -0.014905393123626709, + -0.0065273139625787735, + -0.020961152389645576, + 0.014309744350612164, + 0.02422303706407547, + 0.0023967758752405643, + 0.024960506707429886, + -0.003463979344815016, + 0.0020528598688542843, + -0.007800158113241196, + 0.0006067281938157976, + 0.005772117059677839, + 0.010409665293991566, + -0.005091376136988401, + -0.009629650041460991, + 0.028761310502886772, + -0.026151802390813828, + -0.00853053666651249, + -0.004520546179264784, + -0.022776462137699127, + -0.015004667453467846, + 0.0016531017608940601, + 0.0034941162448376417, + 0.045212551951408386, + 0.00271587329916656, + -0.0006732068140991032, + 0.016422878950834274, + 0.0035065256524831057, + 0.0032175653614103794, + 0.00022447614173870534, + -0.017089437693357468, + -0.0056870244443416595, + 0.0015759865054860711, + -0.00034635362681001425, + 0.022365180775523186, + -0.005240288097411394, + 0.013508455827832222, + -0.003022561315447092, + -0.0012329567689448595, + 0.025385970249772072, + -0.02040805108845234, + 0.016678156331181526, + -0.016777431592345238, + 0.015855593606829643, + 0.006793228443711996, + 0.010083477012813091, + -0.020861877128481865, + 0.014132468029856682, + 0.011274773627519608, + -0.02694600075483322, + -0.004800642840564251, + 0.004673003684729338, + 0.012863170355558395, + -0.01934439316391945, + -0.0008726426749490201, + 0.013054627925157547, + -0.017699267715215683, + -0.005541658028960228, + -0.025981618091464043, + 0.0004529409925453365, + -0.004119901917874813, + 0.006225944496691227, + -0.010508940555155277, + 0.004173084627836943, + 0.006552132777869701, + 0.006839320529252291, + 0.017486536875367165, + -0.009346007369458675, + 0.000200433045392856, + 0.006225944496691227, + 0.010742944665253162, + -0.021585164591670036, + 0.0071123261004686356, + 0.017614174634218216, + 0.026180166751146317, + -0.012154065072536469, + -0.001710716518573463, + 0.013288632966578007, + 0.010771309025585651, + -0.023428838700056076, + -0.016550516709685326, + 0.008140528574585915, + -0.011983879841864109, + -0.004070264287292957, + 0.0027743743266910315, + -0.02518741972744465, + -0.013607730157673359, + -0.0011177272535860538, + -0.014260107651352882, + -0.0029410142451524734, + 0.00390717014670372, + -0.008062527514994144, + 0.009913291782140732, + -0.009062365628778934, + 0.0008101527928374708, + -0.027499103918671608, + 0.009494920261204243, + 0.025825614109635353, + -0.0017541492125019431, + 0.001725784968584776, + -0.0062401266768574715, + -0.029583873227238655, + 0.018011273816227913, + 0.01950039528310299, + -0.006353583186864853, + 0.0016087826807051897, + -0.003253020578995347, + -0.021925535053014755, + -0.003744076006114483, + 0.000574375269934535, + 0.015231581404805183, + -0.03128572553396225, + 0.033242855221033096, + -0.028676217421889305, + 0.0017975819064304233, + -0.028108933940529823, + 0.009686377830803394, + -0.02287573739886284, + -0.0012710712617263198, + 0.01318935863673687, + 0.012423524633049965, + 0.0012125700013712049, + -0.01316099427640438, + 0.004729732405394316, + -0.011083316057920456, + 0.017273804172873497, + -0.01347300037741661, + 0.006818047259002924, + 0.009367280639708042, + -0.01134568452835083, + 0.011813693679869175, + 0.022152449935674667, + -0.02191135287284851, + -0.0109698586165905, + -0.0005717161111533642, + 0.0030048335902392864, + 0.0027903292793780565, + -0.009679286740720272, + -0.00979983527213335, + 0.0115513252094388, + 0.0022088629193603992, + 0.00689250323921442, + -0.01233134139329195, + 0.016139237210154533, + 0.008551809936761856, + -0.007030779030174017, + 0.00402417266741395, + 0.002184044336900115, + 0.005183559842407703, + -0.023074286058545113, + 0.02593907155096531, + -0.026804180815815926, + -0.010785491205751896, + 0.012870261445641518, + -0.009785653091967106, + -0.00833198707550764, + 0.01840837299823761, + -0.020620781928300858, + -0.010104750283062458, + -0.024449950084090233, + -0.010679125785827637, + -0.0054352921433746815, + -0.0158414114266634, + 0.004176630172878504, + 0.020294593647122383, + -0.0023329562973231077, + -0.01744399033486843, + -0.021514253690838814, + 0.008480899035930634, + -0.003630619030445814, + 0.00468009477481246, + -0.01650797203183174, + -0.009026910178363323, + 0.001139886793680489, + -0.030519891530275345, + 0.00894181802868843, + -0.023868484422564507, + 0.030746804550290108, + 0.006144397426396608, + -0.0031094267033040524, + -0.022109903395175934, + -0.0035703452304005623, + 0.0026768725365400314, + 0.020805148407816887, + 0.010558578185737133, + -0.021202247589826584, + 0.002146816346794367, + -0.03009442798793316, + 0.03213665261864662, + 0.015302492305636406, + 0.006913776509463787, + 0.012544072233140469, + 0.012586618773639202, + -0.01703270897269249, + -0.008211439475417137, + -0.0022035446017980576, + -0.0005978643894195557, + -0.0159690510481596, + 0.004098628647625446, + -0.019429484382271767, + 0.0011638191062957048, + 0.026733269914984703, + -0.010338755324482918, + 0.001274616806767881, + 0.020578235387802124, + -0.016805795952677727, + 0.006041577085852623, + 0.012466071173548698, + 0.03434906154870987, + 0.014607569202780724, + -0.006442221347242594, + 0.012905715964734554, + -0.0067400457337498665, + 0.026875089854002, + 0.03009442798793316, + -0.017585810273885727, + 0.007743429858237505, + 0.021017881110310555, + 0.0037582579534500837, + -0.011494596488773823, + -0.012480253353714943, + 0.0110336784273386, + 0.0030119246803224087, + 0.0042900871485471725, + 0.009686377830803394, + 0.017855271697044373, + 0.015288310125470161, + 0.006974050309509039, + -0.013075901195406914, + -0.006878321524709463, + 0.0007751407101750374, + -0.003814986441284418, + 0.027555830776691437, + -0.002318774349987507, + -0.01217533741146326, + 0.016167599707841873, + -0.0050665573216974735, + -0.0006102737388573587, + -0.032987579703330994, + 0.014373564161360264, + -0.004775824025273323, + 0.002196453744545579, + 0.009870745241641998, + 0.01487702876329422, + -0.000666558975353837, + 0.0021539072040468454, + -0.01903238520026207, + -0.020308775827288628, + 0.0281656626611948, + 0.02437903918325901, + -0.019854947924613953, + 0.00428299605846405, + 0.01991167664527893, + 0.015642862766981125, + -0.0008132551447488368, + 0.01913166046142578, + -0.008197257295250893, + 0.015160671435296535, + 0.012430615723133087, + 0.02253536693751812, + 0.007743429858237505, + 0.0026573720388114452, + -0.01775599643588066, + 0.010211115702986717, + 0.004804188385605812, + 0.009069456718862057, + 0.006704590283334255, + -0.0046020932495594025, + 0.013692823238670826, + 0.01650797203183174, + -0.001176228397525847, + 0.016025779768824577, + -0.002632553456351161, + 0.016039961948990822, + 0.014380655251443386, + -0.011494596488773823, + 0.03125736117362976, + 0.007509424816817045, + -0.007098143920302391, + -0.0034958890173584223, + -0.019429484382271767, + 0.00216808938421309, + 0.0077292476780712605, + -0.0027779198717325926, + -0.01042384747415781, + 0.01622432842850685, + -0.0053147440776228905, + -0.018621105700731277, + 0.00919000431895256, + 0.001333117950707674, + 0.010402574203908443, + -0.008147619664669037, + -0.0018294916953891516, + -0.027839474380016327, + 0.011941333301365376, + 0.012685894034802914, + -0.009927473962306976, + -0.004701368045061827, + -0.018933111801743507, + 0.007537789177149534, + -0.0012506844941526651, + 0.0059352112002670765, + 0.02484704926609993, + 0.00033084192546084523, + 0.02313101477921009, + 0.020989516749978065, + -0.012983717955648899, + 0.023372109979391098, + -0.0055948407389223576, + -0.0075448802672326565, + -0.012139882892370224, + 0.0036944386083632708, + 0.01975567266345024, + -0.006562769412994385, + 0.001763013075105846, + -0.010672034695744514, + -0.03210828825831413, + -0.013629003427922726, + 0.009707651101052761, + 0.0007698224508203566, + 0.006839320529252291, + 0.008154710754752159, + 0.00029738101875409484, + 0.0018968567019328475, + 0.007282511331140995, + -0.004123447462916374, + 0.008246894925832748, + 0.01562868058681488, + -0.01765672117471695, + 0.014387746341526508, + -0.0306333489716053, + 0.0015591452829539776, + 0.0075448802672326565, + 0.01581304706633091, + -0.011990970000624657, + 0.017557447776198387, + 0.006814501713961363, + 0.017529083415865898, + 0.012763895094394684, + -0.00617276132106781, + 0.0071123261004686356, + -0.01918838918209076, + -0.00904818344861269, + -0.006105396430939436, + 0.006513132248073816, + 0.015883957967162132, + -0.02471940964460373, + 0.012139882892370224, + -0.009665105491876602, + -0.0052509247325360775, + -0.02121642976999283, + 0.0013490727869793773, + -0.011147134937345982, + -0.01578468456864357, + 0.017543265596032143, + 0.004800642840564251, + -0.000148912105942145, + -0.005552294198423624, + -0.0038752604741603136, + 0.0010645443107932806, + 0.019486213102936745, + -0.010984040796756744, + 0.013572275638580322, + -0.01086349319666624, + 0.004953100346028805, + 0.022393545135855675, + -0.01669233851134777, + -0.012607892043888569, + 0.01504721399396658, + -0.007403059396892786, + 0.021897170692682266, + -0.001725784968584776, + -0.008133437484502792, + 0.0050665573216974735, + -0.021868806332349777, + 0.039369527250528336, + 0.0028860585298389196, + -0.0058997562155127525, + -0.02910168096423149, + -0.0005593068199232221, + 0.022804826498031616, + -0.008119255304336548, + 0.005123285576701164, + 0.009076547808945179, + 0.022053174674510956, + -0.022932464256882668, + -0.007715065497905016, + -0.006467040162533522, + -0.0013003217754885554, + -0.017103619873523712, + -0.010076385922729969, + 0.009338916279375553, + 0.03398032486438751, + 0.014387746341526508, + -0.004013536032289267, + 0.028959859162569046, + -0.0019376302370801568, + 0.005726024974137545, + 0.0035331170074641705, + 0.015217399224638939, + 0.023556478321552277, + -1.0608880074869376e-5, + 0.015727955847978592, + 0.021797897294163704, + -0.013657367788255215, + 0.01306171901524067, + 0.0017381943762302399, + -0.014508293941617012, + -0.006562769412994385, + -0.032335199415683746, + -0.0009018933051265776, + -0.0026112801861017942, + 0.0043255421333014965, + -0.012366795912384987, + 0.005573567468672991, + 0.004697822500020266, + -0.02084769494831562, + -0.018337462097406387, + 0.006704590283334255, + 0.005981303285807371, + 0.0006958095473237336, + -0.004364543128758669, + -0.021485889330506325, + -0.004609184339642525, + 0.0023950031027197838, + 0.023840120062232018, + -0.019925858825445175, + 0.01535922009497881, + 0.007374695036560297, + 0.014373564161360264, + 0.023825937882065773, + 0.01373536977916956, + -0.028931496664881706, + -0.0069244131445884705, + 0.01267171185463667, + -0.009977111592888832, + -0.01916002482175827, + 0.0067684100940823555, + -0.0009413372608833015, + 0.010402574203908443, + 0.011501687578856945, + 0.005878482945263386, + -0.02765510603785515, + -0.006272036116570234, + 0.011331502348184586, + -0.026804180815815926, + 0.01744399033486843, + 0.0589408315718174, + -0.0011496369261294603, + -0.004818370565772057, + 0.011842058040201664, + -0.005176468752324581, + -0.009353098459541798, + 0.0006758659728802741, + 0.019897494465112686, + -0.003279611933976412, + 0.02043641358613968, + -0.022010628134012222, + -0.015742138028144836, + 0.011161317117512226, + 0.0007933115703053772, + 0.0159690510481596, + -0.005169377662241459, + -0.007367603946477175, + -0.012317159213125706, + -0.002926832064986229, + 0.030831897631287575, + -0.0077576120384037495, + -0.018011273816227913, + 0.029668964445590973, + -0.01640869677066803, + 0.016678156331181526, + 0.002776147099211812, + 0.01278516836464405, + -0.027215460315346718, + 0.007193873170763254, + -0.01548685971647501, + 0.013721187599003315, + 0.005839481949806213, + -0.0027690562419593334, + -0.02678999863564968, + -0.010416756384074688, + 0.012366795912384987, + 0.005105557851493359, + -0.012934080325067043, + -0.004527637269347906, + 0.02484704926609993, + -0.013941009528934956, + -0.009771470911800861, + -0.008232712745666504, + -0.018053820356726646, + 0.019089113920927048, + -0.01690506935119629, + -0.01757162995636463, + 0.0015990324318408966, + 0.016734885051846504, + -0.012607892043888569, + 0.010955676436424255, + -0.007048506755381823, + 0.0016637382796034217, + -0.005591295193880796, + -0.010785491205751896, + 0.007466878741979599, + 0.0036164370831102133, + 0.022393545135855675, + 0.005552294198423624, + 0.014749390073120594, + 0.027371464297175407, + 0.0005477838567458093, + -0.012210792861878872, + 0.011671872809529305, + 0.01487702876329422, + -0.021939717233181, + 0.003479934297502041, + -0.01750071905553341, + -0.01487702876329422, + 0.0003359386173542589, + -0.0038008042611181736, + 0.011366957798600197, + 0.008721995167434216, + -0.015515224076807499, + -0.01757162995636463, + -0.00034258648520335555, + 0.006775501184165478, + 0.004733277950435877, + 0.02269136905670166, + -0.007594517432153225, + -0.0010397256119176745, + 0.008629810996353626, + 0.0037298938259482384, + 0.02059241756796837, + 0.014933757483959198, + -0.0005078966496512294, + -0.005180014297366142, + -0.014933757483959198, + 0.009984202682971954, + 0.006942140869796276, + -0.028080569580197334, + 0.010877675376832485, + 0.02084769494831562, + -0.02147170901298523, + -0.019798219203948975, + -0.010913130827248096, + 0.014409019611775875, + 0.016351968050003052, + -0.004063173197209835, + -0.03741239383816719, + -0.01548685971647501, + -0.010459302924573421, + -0.014933757483959198, + -0.0031041083857417107, + 0.013657367788255215, + -0.011352775618433952, + 0.008629810996353626, + -0.006938595324754715, + 0.04396452754735947, + -0.006591133773326874, + -0.003676710883155465, + -0.016366150230169296, + 0.011983879841864109, + 0.032391928136348724, + 0.021088792011141777, + -0.012714257463812828, + 0.014919575303792953, + -0.010360028594732285, + -0.009232550859451294, + -0.022762279957532883, + 0.005027556326240301, + 0.002221272327005863, + 0.00864399317651987, + -0.010147296823561192, + 0.0049105542711913586, + -0.011069133877754211, + -0.0073888772167265415, + -0.00669749965891242, + 0.014316835440695286, + -0.0018844472942873836, + 0.01517485361546278, + 0.03800804167985916, + -0.010735854506492615, + -0.006814501713961363, + 0.026109255850315094, + -0.009892018511891365, + -0.01794036291539669, + -0.011600962840020657, + -0.0047900062054395676, + -0.0159690510481596, + -0.01850764825940132, + -0.013636094518005848, + 0.021613528952002525, + -0.008034163154661655, + 0.005332471802830696, + 0.0019004021305590868, + -0.011416595429182053, + -0.0011833194876089692, + -0.008055436424911022, + 0.01991167664527893, + 0.008750359527766705, + 0.001001611235551536, + 0.00821853056550026, + 0.01257952768355608, + -0.014678479172289371, + 0.0024871868081390858, + 0.0229750107973814, + 0.013969373889267445, + -0.0027105549816042185, + 0.02097533456981182, + -0.0052863797172904015, + -0.013948100619018078, + 0.0041695390827953815, + -0.010622397065162659, + -0.009197095409035683, + 0.020734239369630814, + -0.002893149619922042, + 0.01918838918209076, + -0.016706520691514015, + -0.005531021393835545, + -0.007254146970808506, + 0.002091860631480813, + -0.0033381131943315268, + 0.0074526965618133545, + -0.0011975015513598919, + 0.01174987480044365, + -0.015926504507660866, + -0.0036022549029439688, + -0.023145196959376335, + 0.015515224076807499, + -0.024180490523576736, + -0.01470684353262186, + 0.03528507798910141, + 0.02141498029232025, + 0.017089437693357468, + 0.0140190115198493, + -0.006764864549040794, + -0.0013189358869567513, + 0.006846411619335413, + 0.004002899397164583, + 0.0021946809720247984, + -0.00781434029340744, + -0.007303784601390362, + 0.015103942714631557, + 0.026307806372642517, + 0.020734239369630814, + 0.0016406923532485962, + -0.01809636689722538, + -0.0021308613941073418, + -0.0002958298719022423, + 0.009523283690214157, + 0.004772278480231762, + -0.0026272351387888193, + -0.019727308303117752, + -0.010019658133387566, + 0.013948100619018078, + 0.00019600112864281982, + -0.009984202682971954, + -0.0015485086478292942, + 0.00396035285666585, + -0.006885412149131298, + 0.003554390277713537, + 0.0001196615194203332, + -0.020946970209479332, + -0.0038717149291187525, + 0.0036288462579250336, + -0.009665105491876602, + -0.01333117950707674, + 0.005208378192037344, + -0.004775824025273323, + -0.0019890402909368277, + 0.009225459769368172, + -0.005736661609262228, + 0.007339239586144686, + 0.011600962840020657, + 0.014089922420680523, + -0.01048766728490591, + 0.006786137819290161, + -0.0034072508569806814, + 0.0018755834316834807, + 0.0006457290146499872, + -0.0171319842338562, + 0.011480414308607578, + -0.016990162432193756, + 0.013324088416993618, + -0.02110297419130802, + -0.01796872727572918, + -0.016479607671499252, + -0.020493142306804657, + -0.006754227913916111, + 0.004286541603505611, + 0.019798219203948975, + -0.011040769517421722, + 0.02975405752658844, + 0.028931496664881706, + 0.029215138405561447, + -0.03610764071345329, + 0.0024003214202821255, + 0.0020599509589374065, + 0.02162771113216877, + -0.02043641358613968, + 0.010012567043304443, + 0.0010627715382725, + -0.012877351604402065, + 0.0013650276232510805, + -0.008197257295250893, + -0.01666397415101528, + 0.010771309025585651, + 0.0017869452713057399, + -0.014068649150431156, + -0.005215469282120466, + -0.00021206680685281754, + -0.028988223522901535, + 0.005336017347872257, + -0.02632198855280876, + -0.00043011666275560856, + 0.018550194799900055, + 0.0013003217754885554, + -0.005648023448884487, + -0.01216115616261959, + 0.006888957694172859, + 0.0019464939832687378, + -0.007835613563656807, + -0.00936018954962492, + -0.0008190165972337127, + -0.0037972587160766125, + 0.01840837299823761, + 0.006534405052661896, + -0.030122792348265648, + -0.006013212725520134, + 0.0030544709879904985, + -0.007934887893497944, + -0.00280096591450274, + 0.015004667453467846, + -0.01059403270483017, + -0.0008934726356528699, + 0.025088144466280937, + 0.012012243270874023, + -0.012310068123042583, + 0.008707812987267971, + -0.008558901026844978, + 0.013139721006155014, + 0.021230611950159073, + -0.001496212207712233, + 0.005219014827162027, + 0.027499103918671608, + 0.0002785454271361232, + -0.020152771845459938, + -0.026449628174304962, + 0.013012082315981388, + -0.0069527775049209595, + -0.00594584783539176, + 0.014338108710944653, + -0.01212570071220398, + -0.004424816928803921, + 0.01903238520026207, + 0.010778400115668774, + -0.009977111592888832, + 0.01134568452835083, + 0.006566314958035946, + 0.008807087317109108, + -0.001404028502292931, + -0.002348911250010133, + -0.003497661789879203, + -0.012380978092551231, + -0.009977111592888832, + 0.015089760534465313, + -0.007509424816817045, + 0.0012976627331227064, + 0.015827229246497154, + -0.006435130722820759, + 0.02028041146695614, + -0.008445443585515022, + -0.006534405052661896, + -0.0032512478064745665, + 0.015274127945303917, + -0.0076654283329844475, + 0.0071477810852229595, + 0.008409989066421986, + 0.010643670335412025, + 0.011040769517421722, + -0.001563577214255929, + 0.012068971991539001, + -0.008133437484502792, + -0.020762603729963303, + -0.008027072064578533, + 0.005204832646995783, + 0.0021308613941073418, + -0.017075255513191223, + 0.0057508437894284725, + 0.002724737161770463, + 0.02131570503115654, + 0.0033434315118938684, + -0.008204348385334015, + -0.0006767523591406643, + -0.014260107651352882, + 0.009076547808945179, + 0.00019589033036027104, + -0.026577265933156013, + -0.010615305975079536, + 0.0075448802672326565, + -0.006381947547197342, + -0.020322958007454872, + 0.009686377830803394, + -0.008757450617849827, + -0.00539983669295907, + 0.006314582657068968, + -0.0030136974528431892, + -0.006502495612949133, + -0.01456502266228199, + 0.017046891152858734, + -0.004584365524351597, + 0.0052792890928685665, + 0.01473520789295435, + 0.006903139874339104, + -0.015132307074964046, + 0.015883957967162132, + -0.0072966935113072395, + 0.007417241111397743, + 0.003853987203910947, + -0.01819564215838909, + 0.004988555796444416, + -0.0013277996331453323, + -0.01799709163606167, + 0.01076421793550253, + 0.005694115534424782, + 0.00033837617957033217, + 0.009707651101052761, + 0.001010474981740117, + 0.005048829596489668, + -0.019330210983753204, + -0.004793551750481129, + -0.03227847442030907, + -0.01416083239018917, + 0.01340918056666851, + 0.008750359527766705, + -0.014962121844291687, + 0.0018684924580156803, + 0.024960506707429886, + 0.01072167232632637, + -0.02191135287284851, + 0.018365826457738876, + -0.015926504507660866, + -0.02484704926609993, + 0.009984202682971954, + 0.004502818454056978, + 0.0002422037796350196, + -0.0020812239963561296, + 0.004087992012500763, + 0.019089113920927048, + 0.006190489046275616, + 0.009168731048703194, + -0.0031200633384287357, + -0.013948100619018078, + -0.012047698721289635, + 0.006233035586774349, + 0.005098467227071524, + 0.003651892300695181, + 0.006651407573372126, + -0.008544718846678734, + 0.02196808159351349, + -0.0034905706997960806, + -0.004857371095567942, + 0.012295885942876339, + 0.006431585177779198, + -0.02134406939148903, + 0.0013898463221266866, + 0.0027655106969177723, + 0.019826583564281464, + 0.004644639790058136, + -0.005219014827162027, + -0.028619488701224327, + -0.0006904912879690528, + -0.022421909496188164, + 0.007208055350929499, + 0.01209733635187149, + 0.011218045838177204, + 0.02612343803048134, + 0.015699591487646103, + 0.023060103878378868, + 0.0007569699082523584, + -0.006034485995769501, + -0.016295239329338074, + -5.3148273764236365e-6, + 0.00018259460921399295, + 0.0059635755605995655, + -0.009679286740720272, + -0.007122962735593319, + -0.0045737288892269135, + -0.008012889884412289, + -0.017798542976379395, + -0.027995476499199867, + -0.013551002368330956, + 0.002662690356373787, + 0.004513455089181662, + 0.016238510608673096, + 0.007991616614162922, + 0.0009936337592080235, + -0.014621751382946968, + 0.0007161963148973882, + -0.006669135298579931, + 0.006257854402065277, + -0.0022035446017980576, + -0.01267171185463667, + 0.00586075522005558, + -0.010416756384074688, + -0.0016601927345618606, + -0.0001622078416403383, + 0.01439483743160963, + 0.01234552264213562, + 0.0051941960118710995, + -0.007856886833906174, + -0.025229966267943382, + -0.007856886833906174, + 0.006059304811060429, + 0.005031101871281862, + -0.011927151121199131, + -0.015586134046316147, + -0.01387719064950943, + 0.010877675376832485, + 0.0037830767687410116, + -0.0014235288836061954, + 0.022265905514359474, + 0.019528759643435478, + -0.021854624152183533, + -0.006949231959879398, + -0.0006958095473237336, + 0.006796773988753557, + 0.0185643769800663, + 0.011501687578856945, + -0.0073321484960615635, + 0.017713449895381927, + -0.010984040796756744, + 0.01014020573347807, + -0.011225136928260326, + 0.009785653091967106, + 0.009225459769368172, + 0.0007206282461993396, + 0.009856563061475754, + -0.006052213720977306, + 0.003676710883155465, + 0.011210954748094082, + -0.005265106912702322, + -0.02237936295568943, + 0.00468009477481246, + -0.02359902486205101, + 0.020961152389645576, + -0.00887799821794033, + 0.020081860944628716, + -0.005126831121742725, + 0.005236742552369833, + -0.004176630172878504, + -0.02040805108845234, + 0.000503907969687134, + 0.011544234119355679, + 0.0030278796330094337, + 0.012324250303208828, + 0.013047537766397, + 0.0008996773394756019, + -0.00016796930867712945, + -0.014905393123626709, + 0.003999353852123022, + 0.0010698626283556223, + 0.028903132304549217, + -0.0036838019732385874, + -0.005077193956822157, + -0.00928218849003315, + -0.02606671117246151, + -0.0021024972666054964, + -0.006389038637280464, + 0.029385322704911232, + -0.011239319108426571, + 0.0038894424214959145, + -0.014338108710944653, + 0.01412537693977356, + 0.008353260345757008, + -0.004726186860352755, + -0.016366150230169296, + -0.015727955847978592, + 0.003970989491790533, + -0.003421433037146926, + -0.04853116720914841, + 0.010296208783984184, + 0.014487020671367645, + -0.009026910178363323, + -0.007551971357315779, + 0.023074286058545113, + -0.013238995335996151, + 0.01859274134039879, + 0.01504721399396658, + -0.00497082807123661, + 0.015089760534465313, + 0.004442544654011726, + -0.01640869677066803, + 0.006559223867952824, + -0.020989516749978065, + 0.0006962527404539287, + -0.016578881070017815, + 0.00881417840719223, + -0.0021893626544624567, + 0.016734885051846504, + -0.01014020573347807, + -0.015898140147328377, + -0.018351644277572632, + -0.0185643769800663, + 0.03400868922472, + 0.05573567748069763, + 0.031767915934324265, + -0.0058075725100934505, + 0.00310233561322093, + 0.019259300082921982, + -0.023116832599043846, + 0.0022248178720474243, + -0.0019145843107253313, + -0.030122792348265648, + -0.012529890052974224, + -0.0220673568546772, + 0.004027718212455511, + 0.02913004532456398, + 0.004485090728849173, + -0.008920544758439064, + 0.0016406923532485962, + -0.019925858825445175, + -0.0041695390827953815, + 0.00035920614027418196, + 0.005495565943419933, + 0.002776147099211812, + 0.008757450617849827, + -0.021273158490657806, + 0.004676549229770899, + 0.015089760534465313, + 0.005598386283963919, + -0.025556154549121857, + -0.018365826457738876, + -0.025853978469967842, + 0.015586134046316147, + 0.012111518532037735, + -0.012650438584387302, + -0.008863816037774086, + -0.0005894437781535089, + -0.012905715964734554, + 0.02891731448471546, + 0.006339401472359896, + 0.010686216875910759, + -0.012324250303208828, + -0.020521506667137146, + 0.014416110701858997, + -0.011728601530194283, + -0.0012692984892055392, + -0.014650114811956882, + -0.017415625974535942, + -0.019018203020095825, + -0.0001279713469557464, + -0.01897565834224224, + 0.015926504507660866, + -0.01578468456864357, + 0.00246945908293128, + -0.0019642217084765434, + -0.030519891530275345, + -0.018493466079235077, + -0.01028202660381794, + 0.020578235387802124, + 0.031739551573991776, + -0.012799350544810295, + -0.009835290722548962, + -0.007367603946477175, + -0.015118124894797802, + 0.0026609175838530064, + 0.004651730880141258, + 0.020294593647122383, + -0.02056405320763588, + 0.012154065072536469, + -0.008707812987267971, + -0.0014270744286477566, + -0.006562769412994385, + -0.01412537693977356, + 0.0003689563600346446, + -0.021046245470643044, + -0.0079207057133317, + -0.003701529698446393, + -0.025768885388970375, + -0.0012187747051939368, + -0.022294269874691963, + -0.001501530408859253, + 0.00023710708774160594, + 0.03332794830203056, + 0.017075255513191223, + 0.005208378192037344, + 0.019613852724432945, + 0.003307976061478257, + -0.016678156331181526, + -0.0018188550602644682, + -0.006069941446185112, + 0.009629650041460991, + -0.008459625765681267, + 0.005559385288506746, + -0.02835002914071083, + 0.00042435521027073264, + -0.007381786126643419, + 0.007651246152818203, + 0.008792905136942863, + -0.019954223185777664, + 0.006048668175935745, + -0.0031165177933871746, + -0.007509424816817045, + 0.007115871645510197, + -0.010069294832646847, + 0.014508293941617012, + -0.005495565943419933, + 0.01700434461236, + -0.0005916597438044846, + -0.03537017107009888, + 0.004648185335099697, + 0.010742944665253162, + -2.0566824332490796e-6, + 0.010005475953221321, + -0.005304107442498207, + -0.007346330676227808, + 0.0053147440776228905, + 0.002141498029232025, + -0.003658983390778303, + 0.025924889370799065, + -0.005265106912702322, + 0.013104265555739403, + 0.015458495356142521, + -0.0002665792708285153, + -0.00864399317651987, + 0.003559708595275879, + 0.013912646099925041, + 0.014295562170445919, + -0.0013162767281755805, + -0.007310875691473484, + 0.012288794852793217, + 0.007488152012228966, + -0.02043641358613968, + 0.010672034695744514, + 0.01765672117471695, + 0.019670581445097923, + -0.020918605849146843, + 0.008615628816187382, + -0.007431423291563988, + -0.005949393380433321, + 0.01020402554422617, + -0.01378500647842884, + 0.011948424391448498, + -0.005690569989383221, + -0.016181781888008118, + 0.012600800953805447, + 0.028009658679366112, + 0.007601608522236347, + 0.0011212726822122931, + -7.340347656281665e-5, + -0.009445282630622387, + 0.0008939158287830651, + 0.015529406256973743, + -0.004293632693588734, + 0.0050665573216974735, + -0.03125736117362976, + -0.001029089093208313, + 0.006144397426396608, + -0.007275420241057873, + 0.028080569580197334, + 0.017387261614203453, + 0.03917097672820091, + -0.01416083239018917, + -0.0010335209080949426, + 0.0003891215310432017, + 0.005956484470516443, + 0.012373887002468109, + 0.017699267715215683, + 0.006201125681400299, + 0.012756804004311562, + 0.007197418715804815, + 0.012111518532037735, + -0.017018526792526245, + -0.0022815463598817587, + -0.014196287840604782, + 0.019259300082921982, + -0.017458172515034676, + -0.0027495557442307472, + -0.00033992735552601516, + -0.009388553909957409, + -0.004499272909015417, + -0.022705551236867905, + -0.034547608345746994, + -0.004492181818932295, + 0.019074931740760803, + 0.023045921698212624, + 0.021542618051171303, + -0.016493789851665497, + 0.012678802944719791, + 0.005952938925474882, + 0.002604189096018672, + 0.007303784601390362, + 0.012508617714047432, + -0.006736500188708305, + 0.002352456795051694, + 0.00628976384177804, + -0.010480576194822788, + -0.013217722997069359, + -0.009480738081037998, + 0.014217561110854149, + -0.001950039528310299, + 0.007431423291563988, + -0.024308130145072937, + -0.002508459845557809, + -0.010842219926416874, + -0.014820300973951817, + 0.002230136189609766, + -0.03653310611844063 + ], + "0308889d-fbbc-401a-88d1-998060d1c644": [ + -0.012961171567440033, + -0.013705065473914146, + -0.013416890054941177, + -0.005492078606039286, + -0.05656271427869797, + 0.008082302287220955, + 0.01589653454720974, + 0.04409747198224068, + 0.012512154877185822, + 0.06626683473587036, + -0.0062158671207726, + 0.0047548869624733925, + -0.009141177870333195, + 0.008926722221076488, + -0.0035251169465482235, + 0.0034245909191668034, + -0.035706888884305954, + 0.03696681559085846, + -0.02409946918487549, + -0.0046208519488573074, + 0.05806390568614006, + -0.028710268437862396, + -0.005502131301909685, + 0.05087963491678238, + -0.013262749649584293, + -0.017799830064177513, + 0.03527797758579254, + -0.014475765638053417, + -0.017116252332925797, + 5.994918683427386e-5, + -1.7068501620087773e-5, + 0.016151200979948044, + 0.049351636320352554, + -0.043159227818250656, + 0.006658182013779879, + -0.00394732691347599, + -0.005699832458049059, + 0.03366955742239952, + -0.0290051456540823, + 0.015400606207549572, + -0.027410130947828293, + 0.029219601303339005, + 0.024273714050650597, + -0.0033676261082291603, + -0.013088504783809185, + 0.027008024975657463, + 0.04270350933074951, + 0.004925781395286322, + 0.009623703546822071, + 0.00789465382695198, + 0.0007057773182168603, + 0.02956809103488922, + 0.00969742238521576, + 0.01174145471304655, + 0.00969742238521576, + 0.0023489610757678747, + -0.014368537813425064, + 0.07554204761981964, + 0.004235501866787672, + -0.030238265171647072, + -0.007398724555969238, + -0.017732812091708183, + -0.00017550190386828035, + 0.003119661472737789, + 0.012123453430831432, + -0.01922059990465641, + 0.002174715744331479, + -0.0058238147757947445, + -0.03460780158638954, + -0.0017759619513526559, + -0.0016871638363227248, + 0.000231629004701972, + -0.030345493927598, + 0.02056094817817211, + -0.003112959675490856, + -0.010421210899949074, + 0.055597662925720215, + -0.03777102380990982, + 0.0006031569209881127, + 0.009523177519440651, + -0.03911137580871582, + 0.016124393790960312, + 0.017719408497214317, + 0.0031347405165433884, + 0.03865565359592438, + 0.02476964332163334, + -0.02167343720793724, + -0.042086947709321976, + -0.038628850132226944, + -0.016204815357923508, + 0.00784774124622345, + 0.017933866009116173, + 0.0029923284891992807, + -0.0026354605797678232, + -0.010809912346303463, + -0.013068399392068386, + 0.03364275023341179, + 0.004061256535351276, + -0.040344495326280594, + -0.009127774275839329, + -0.019917581230401993, + 0.020949648693203926, + -0.02822774276137352, + -0.0005612709792330861, + 0.0395938977599144, + -0.012760119512677193, + 0.03302619233727455, + -0.02708844654262066, + -0.02301378734409809, + 0.023509714752435684, + 0.031069282442331314, + -0.009127774275839329, + -0.016593515872955322, + 0.00210434733889997, + 0.023616943508386612, + -0.08326245844364166, + -0.018992740660905838, + -0.021324947476387024, + -0.017491549253463745, + -0.052836544811725616, + 0.05259528011083603, + 0.03554604575037956, + 0.010494929738342762, + -0.031122896820306778, + 0.01384580135345459, + -0.0121167516335845, + -0.014274713583290577, + -0.0011543752625584602, + -0.008068898692727089, + 0.0029018549248576164, + 0.005884130485355854, + -0.04002281278371811, + -0.01915358193218708, + 0.004718027077615261, + -0.013638047501444817, + 0.030774405226111412, + 0.016271833330392838, + 0.03594814985990524, + -0.035063520073890686, + 0.05476664751768112, + -0.017464743927121162, + -0.03605537861585617, + -0.018161725252866745, + -0.033481910824775696, + -0.006457129493355751, + -0.0020323037169873714, + -0.029192794114351273, + 0.060637373477220535, + 0.001732400618493557, + 0.0031096090096980333, + -0.03685958683490753, + 0.016419271007180214, + 0.013483907096087933, + -0.006869286764413118, + 0.009161283262073994, + 0.0010186650324612856, + 0.0204671248793602, + 0.018992740660905838, + -0.023201435804367065, + -0.001973663456737995, + -0.03329426050186157, + -0.026672938838601112, + 0.04463361203670502, + 0.0052575175650417805, + 0.03887011110782623, + 0.02812051586806774, + 0.04809170961380005, + 0.03262408822774887, + -0.05329226329922676, + 0.015682078897953033, + 0.05554404854774475, + -0.03299938514828682, + 0.026029571890830994, + 0.005820463877171278, + -0.003409511875361204, + -0.02722248062491417, + -0.0011284060310572386, + -0.004604097455739975, + 0.02771840989589691, + -0.04546462744474411, + 0.015266571193933487, + -0.019207196310162544, + -0.03803909569978714, + 0.024850064888596535, + -0.009288616478443146, + 0.01083671860396862, + 0.02523876540362835, + 0.00032126481528393924, + -0.013557626865804195, + 0.04661732539534569, + 0.008403985761106014, + 0.020949648693203926, + 0.027637990191578865, + 0.06444396078586578, + -0.006909497547894716, + -0.002023926470428705, + -0.027503954246640205, + -0.02191470004618168, + 0.022357014939188957, + 0.035036712884902954, + -0.015145939774811268, + -0.05688439682126045, + -0.06851862370967865, + 0.022692102938890457, + -0.030801212415099144, + -0.0065509541891515255, + -0.0015254843747243285, + -0.0033860558178275824, + 0.013369977474212646, + -0.02704823575913906, + 0.03305299952626228, + -0.028254549950361252, + 0.02049393020570278, + 0.001020340365357697, + -0.020306281745433807, + 0.012820434756577015, + -0.016539903357625008, + 0.01605737768113613, + 0.013450399041175842, + 0.00526757026091218, + -0.0022718908730894327, + 0.01625842973589897, + 0.03589453548192978, + -0.031203316524624825, + -0.033589135855436325, + -0.01683477871119976, + -0.016338849440217018, + 0.014288117177784443, + -0.03364275023341179, + -0.03895053267478943, + 0.04173845797777176, + -0.010662473738193512, + -0.0018831898923963308, + -0.049244411289691925, + -0.0065308487974107265, + -0.0059075867757201195, + 0.0025181800592690706, + -0.003126363269984722, + 0.028656654059886932, + -0.015534641221165657, + 0.04409747198224068, + 0.017598778009414673, + -0.0030526439659297466, + 0.0005516372621059418, + 0.033723171800374985, + 0.03761018440127373, + -0.020587755367159843, + 0.05849281698465347, + 0.030452720820903778, + 0.0028197586070746183, + -0.0018764880951493979, + 0.03790505975484848, + -0.0018262250814586878, + -0.021110491827130318, + -1.1335370800225064e-5, + 0.03061356395483017, + 0.009013844653964043, + -0.0033056349493563175, + -0.0214723851531744, + 0.0071440585888922215, + -0.0009801299311220646, + -0.007881250232458115, + 0.007794127333909273, + -0.02671314962208271, + 0.058117516338825226, + -0.0262440275400877, + 0.008611740544438362, + -0.03696681559085846, + 0.004959289915859699, + 0.007733811624348164, + -0.042489051818847656, + -0.0004728917556349188, + 0.0003174950834363699, + 0.01450257282704115, + -0.003917168825864792, + 0.0030325388070195913, + 0.022222980856895447, + 0.005287675652652979, + 0.0053479913622140884, + -0.0006173981237225235, + -0.022531261667609215, + 0.025962553918361664, + 0.021244525909423828, + 0.0368327796459198, + -0.0033475207164883614, + -0.027772024273872375, + 0.006135446019470692, + 0.013021486811339855, + -0.03179306909441948, + -0.027503954246640205, + 0.021820876747369766, + -0.013584434054791927, + 0.05090644210577011, + -0.007077041082084179, + 0.025453221052885056, + 0.0071574617177248, + -0.022263191640377045, + -0.011915699578821659, + -0.003352547064423561, + 0.016338849440217018, + -0.04238182306289673, + 0.011882190592586994, + 0.040773406624794006, + 0.003967431839555502, + -0.009000441059470177, + 0.015266571193933487, + 0.02608318440616131, + -0.016379060223698616, + -0.02698121778666973, + 0.02015884406864643, + 0.047260694205760956, + -0.009730931371450424, + -0.025560449808835983, + -0.016794567927718163, + -0.009523177519440651, + 0.021995121613144875, + 0.021043473854660988, + -0.0076399873942136765, + -0.007660092785954475, + -0.002494724001735449, + -0.017464743927121162, + -0.002526557305827737, + -0.05393562838435173, + 0.0023171277716755867, + 0.013638047501444817, + -0.025935746729373932, + 0.008578231558203697, + 0.025158343836665154, + -0.012545663863420486, + -0.01285394374281168, + -0.022705506533384323, + -0.03350871801376343, + 0.0047280797734856606, + -0.0047347815707325935, + -0.009436054155230522, + -0.02439434640109539, + -0.01993098482489586, + -0.04827935993671417, + -0.004406396299600601, + 0.004774991888552904, + -0.01830916292965412, + 0.05570489168167114, + -0.009838159196078777, + 0.002010523108765483, + 0.0023472856264561415, + -0.02187448926270008, + -0.026873990893363953, + 0.03383040055632591, + -0.005850621964782476, + 0.004017695318907499, + 0.0006462993915192783, + -0.013436995446681976, + 0.017558567225933075, + 0.00200382131151855, + 0.0021194263827055693, + 0.0009893449023365974, + -0.03136415779590607, + -0.0049492372199893, + 0.007083742879331112, + 0.03251685947179794, + 0.012666295282542706, + -0.02345610223710537, + -0.02379118837416172, + -0.013068399392068386, + 0.004463361110538244, + 0.017009025439620018, + 0.03417889028787613, + 0.004674465861171484, + -0.006755357142537832, + 0.014609800651669502, + -0.014515976421535015, + 0.02916598692536354, + 0.04080021381378174, + 0.017357515171170235, + -0.039567094296216965, + -0.008966933004558086, + 0.06540901213884354, + 0.02702142857015133, + -0.03460780158638954, + 0.02287975139915943, + -0.01821533776819706, + 0.024019047617912292, + 0.0037027131766080856, + -0.017558567225933075, + 0.04200652614235878, + 0.020507333800196648, + 0.014087064191699028, + 0.0007246260065585375, + -0.015869727358222008, + -0.03305299952626228, + -0.03527797758579254, + -0.021968314424157143, + -0.039808355271816254, + -0.009811352007091045, + -0.025480028241872787, + 0.009757738560438156, + 0.015976956114172935, + 0.01031398307532072, + 0.03468822315335274, + 0.002230005105957389, + -0.020172247663140297, + -0.011379560455679893, + -0.001732400618493557, + 0.02539960667490959, + 0.023885013535618782, + -0.025144940242171288, + -0.008062196895480156, + -0.0026840481441468, + -1.051074195856927e-5, + -0.0014768966939300299, + -0.012807031162083149, + -0.01922059990465641, + -0.009456159546971321, + -0.034018050879240036, + 0.06798248738050461, + -0.01901954784989357, + 0.02019905485212803, + 0.02769160270690918, + -0.06476564705371857, + 0.010086123831570148, + 0.06015484780073166, + 0.061012670397758484, + -0.012170366011559963, + -0.002168013947084546, + -0.031230123713612556, + 0.0006839966517873108, + 0.03672555461525917, + 0.016794567927718163, + 0.006101937498897314, + -0.01999800279736519, + -0.012083243578672409, + 0.0030342142563313246, + -0.03246324509382248, + -0.026833780109882355, + 0.0026991271879523993, + -0.005280973855406046, + 0.020252667367458344, + -0.004289115779101849, + -0.012773523107171059, + 0.001401502056978643, + 0.0214723851531744, + 0.00479844817891717, + -0.014837659895420074, + -0.009228300303220749, + -0.01999800279736519, + -0.031203316524624825, + -0.02517174743115902, + 0.020413510501384735, + -0.010602157562971115, + 0.03511713445186615, + 0.014864467084407806, + 0.05061156675219536, + -0.020480528473854065, + -0.005173746030777693, + 0.002603627275675535, + 0.0218074731528759, + -0.006701743230223656, + 0.023952031508088112, + 0.02637806162238121, + 0.014569589868187904, + -0.020453721284866333, + -0.002382469829171896, + 0.017960671335458755, + -0.048976339399814606, + 0.00129176105838269, + -0.06122712790966034, + -0.04197971895337105, + 0.014891273342072964, + -0.01406025793403387, + -0.026793569326400757, + -0.006581111811101437, + 0.015306781977415085, + -0.006765409838408232, + -0.006758708041161299, + -0.011969313956797123, + 0.013832397758960724, + 0.002199847251176834, + 0.000563784153200686, + 0.03551923856139183, + -0.020239265635609627, + -0.027343112975358963, + -0.01912677474319935, + -0.020038211718201637, + 0.012418330647051334, + 0.0409342497587204, + -0.01855042576789856, + -0.029058758169412613, + 0.012793627567589283, + 0.022169366478919983, + -0.008008583448827267, + 0.039701126515865326, + -0.0022584875114262104, + 0.004942535888403654, + -0.02033308893442154, + -0.0016126070404425263, + -0.04734111577272415, + -0.01342359185218811, + -0.03417889028787613, + -0.008826196193695068, + -0.037181273102760315, + 0.050048619508743286, + -0.02573469467461109, + 0.012793627567589283, + 0.026190413162112236, + 0.010387701913714409, + -0.0017374269664287567, + -0.0008427441935054958, + -0.010595455765724182, + -0.002601951826363802, + -0.005086623132228851, + 0.003464801236987114, + -0.004185238853096962, + -0.01928761787712574, + 0.019582493230700493, + 0.00748584745451808, + 0.024112872779369354, + -0.023107610642910004, + 0.014194292016327381, + 0.0033307664562016726, + -0.018711267039179802, + -0.005773551762104034, + -0.00210434733889997, + -0.03568008169531822, + 0.009355633519589901, + 0.022222980856895447, + -0.007077041082084179, + -0.012223979458212852, + 0.012987978756427765, + 0.022491050884127617, + -0.009328826330602169, + -0.01942165195941925, + 0.02109708823263645, + -0.024541784077882767, + 0.01031398307532072, + 0.0018295759800821543, + -0.028844302520155907, + 0.0064939893782138824, + -0.00027812234475277364, + -0.013383381068706512, + 0.023201435804367065, + -0.03297257795929909, + 0.030265072360634804, + -0.020386703312397003, + -0.02631104364991188, + 0.0170760415494442, + 0.019944388419389725, + -0.028147321194410324, + 0.02120431512594223, + 0.010468123480677605, + 0.004225449170917273, + -0.024783046916127205, + 0.012780224904417992, + 0.005364745389670134, + 0.0006785514997318387, + 0.013751977123320103, + -0.03222198039293289, + 0.03409846872091293, + -0.0010086123365908861, + -0.01868445985019207, + -0.005076570436358452, + 0.027235884219408035, + 0.0003621035721153021, + 0.006292936857789755, + 0.003866905812174082, + -0.047662798315286636, + -0.002243408467620611, + -0.023576732724905014, + 0.015682078897953033, + 0.006869286764413118, + 0.007251286413520575, + 0.008464301936328411, + 0.01443555485457182, + 0.02557385340332985, + -0.0012063138419762254, + -0.033213838934898376, + 0.02430052123963833, + 0.0021311542950570583, + 0.02530578337609768, + -0.00873907282948494, + 0.009952088817954063, + -0.008223039098083973, + -0.028790690004825592, + 0.012458540499210358, + -0.014234502799808979, + 0.006018165498971939, + -0.006142147816717625, + -0.05827835947275162, + -0.04278393089771271, + -0.006768760737031698, + 0.023911820724606514, + -0.018912319093942642, + 0.019609300419688225, + 0.03125692903995514, + -0.030828019604086876, + -0.0017826637485995889, + 0.02644507959485054, + 0.009027248248457909, + 0.02164663001894951, + -0.009355633519589901, + 0.009610299952328205, + -0.03643067553639412, + 0.029916582629084587, + 0.016593515872955322, + -0.022330209612846375, + -0.02755756862461567, + 0.026739954948425293, + -0.027061639353632927, + 0.00032377796014770865, + -0.015615061856806278, + -0.01922059990465641, + 0.015360395424067974, + -0.013135416433215141, + 0.03396443650126457, + -0.005559096112847328, + 0.02860303968191147, + 0.0053680962882936, + 0.0143149234354496, + 0.024206696078181267, + -0.0076399873942136765, + -0.023777784779667854, + 0.017625585198402405, + -0.03887011110782623, + 0.050182655453681946, + -0.02080221101641655, + 0.026485290378332138, + -0.0033542225137352943, + -0.0231880322098732, + -0.007023427169770002, + -0.01130584068596363, + -0.005853972863405943, + -0.0036524501629173756, + 0.016218218952417374, + 0.02782563865184784, + -0.03667194023728371, + 0.024555187672376633, + 0.019368037581443787, + 0.003019135445356369, + 0.030399108305573463, + -0.006711795926094055, + -0.0010965727269649506, + -0.02519855462014675, + -0.006044972687959671, + 0.010695982724428177, + 0.029782546684145927, + -0.010481526143848896, + -0.004674465861171484, + -0.0368327796459198, + 0.020279474556446075, + 0.0272894985973835, + 0.001232283073477447, + -0.06841139495372772, + -0.010615561157464981, + 0.03538520634174347, + -0.002469592494890094, + -0.0031866789795458317, + -0.0416044220328331, + -0.029246408492326736, + 0.037047237157821655, + 0.02798647992312908, + -0.03442015498876572, + 0.019448459148406982, + 0.014515976421535015, + -0.02580171264708042, + 0.012860645540058613, + 0.0313105434179306, + 0.017853444442152977, + 0.006708445027470589, + 0.0025617412757128477, + -0.018992740660905838, + 0.023134417831897736, + -0.010548544116318226, + -0.0006240998627617955, + 0.021432174369692802, + 0.009067459031939507, + -0.008853002451360226, + -0.007077041082084179, + 0.002875047968700528, + -0.02466241456568241, + -0.002191470004618168, + -0.010421210899949074, + -0.01915358193218708, + 0.009563387371599674, + 0.006329796742647886, + 0.016647130250930786, + 0.023496311157941818, + -0.022866347804665565, + -0.0033307664562016726, + 0.004014344420284033, + -0.022129155695438385, + -0.018228741362690926, + 0.002709179650992155, + 0.021378561854362488, + -0.00020754461002070457, + 0.00994538702070713, + -0.004543781746178865, + 0.007023427169770002, + -0.020922843366861343, + 0.0015581552870571613, + 0.013041592203080654, + -0.05763499066233635, + -0.02537279948592186, + -0.010930543765425682, + -0.020453721284866333, + -0.01031398307532072, + -0.02432732842862606, + 0.02718227170407772, + -0.017223481088876724, + 0.0057601481676101685, + -0.003706064075231552, + -0.010360894724726677, + 0.01895252987742424, + 0.0017793128499761224, + 0.0011702919146046042, + 0.010890332981944084, + 0.011366156861186028, + -0.000167753009009175, + -0.015802711248397827, + 0.00484871119260788, + 0.0019317774567753077, + 0.034018050879240036, + -0.020239265635609627, + 0.05010223388671875, + 0.006359954364597797, + -0.04264989495277405, + -0.03527797758579254, + 0.020788807421922684, + 0.028549427166581154, + 8.396813427680172e-6, + -0.004483466502279043, + -0.0027326359413564205, + 0.044982101768255234, + 0.005026307422667742, + -0.004764939658343792, + 0.021968314424157143, + -0.009302020072937012, + -0.015708886086940765, + -0.03176626190543175, + -0.0053915525786578655, + 0.03694000840187073, + -0.023710768669843674, + 0.01315552182495594, + -0.009067459031939507, + 0.026994621381163597, + -0.0064169191755354404, + 0.025882132351398468, + 0.021016666665673256, + -0.014676817692816257, + -0.001140971784479916, + 0.011131595820188522, + 0.019046355038881302, + 0.054016049951314926, + -0.037583377212285995, + 0.04417789354920387, + 0.028978338465094566, + -0.00647723488509655, + -0.016781164333224297, + 0.007465742062777281, + 0.023027190938591957, + 0.0170358307659626, + 0.01690179668366909, + -0.014408747665584087, + 0.021030070260167122, + -0.004460010211914778, + -0.039057761430740356, + -0.006514094304293394, + -0.006875988561660051, + 0.00023351387062575668, + 0.033589135855436325, + 0.034527380019426346, + -0.006929602473974228, + 0.005203903652727604, + -0.02060115896165371, + 0.022960172966122627, + 0.03846800699830055, + 0.024756239727139473, + -0.032248787581920624, + 0.026739954948425293, + 0.010910438373684883, + -0.028924724087119102, + 0.010461421683430672, + -0.01868445985019207, + -0.03954028710722923, + 0.013081802986562252, + -0.0170760415494442, + -0.0059578497894108295, + -0.0040981159545481205, + 0.03932582959532738, + 0.041014667600393295, + -0.01438194140791893, + -0.012927662581205368, + 0.03232920914888382, + 0.009925281628966331, + -0.0160305704921484, + 0.0012264190008863807, + 0.0013286205939948559, + -0.0027309604920446873, + 0.01255236566066742, + -0.015615061856806278, + 0.009610299952328205, + 0.000837717903777957, + 0.0006831589853391051, + -0.03935263678431511, + 0.025426413863897324, + 0.03235601633787155, + -0.008182828314602375, + -0.02412627637386322, + 0.010448018088936806, + 0.0004067120607942343, + 0.03484906628727913, + 0.003505011787638068, + -0.016110990196466446, + -0.01058205310255289, + -0.00809570588171482, + 0.028308164328336716, + -0.0016745980829000473, + 0.005213956348598003, + 0.011352753266692162, + -0.024823257699608803, + 0.011339349672198296, + -0.03833397105336189, + 0.014301519840955734, + -0.002601951826363802, + 0.03074759803712368, + 0.02510473132133484, + 0.0037730815820395947, + -0.024716028943657875, + -0.017987478524446487, + 0.003086152719333768, + 0.010374298319220543, + 0.01596355251967907, + 0.0076131802052259445, + -0.002563416725024581, + -0.010850122198462486, + 0.029487671330571175, + 0.014569589868187904, + 0.050584759563207626, + -0.020172247663140297, + -0.002085917629301548, + -0.033589135855436325, + -0.003252021037042141, + -0.004674465861171484, + -0.018604040145874023, + -0.010086123831570148, + 0.004305870272219181, + -0.010568649508059025, + -0.02224978804588318, + -0.009972194209694862, + -0.015708886086940765, + 0.026672938838601112, + 0.013430293649435043, + 0.011191911064088345, + -0.022263191640377045, + -0.012036330997943878, + 0.011017666198313236, + -0.03350871801376343, + 0.01797407492995262, + 0.008269951678812504, + 0.011808471754193306, + 0.019609300419688225, + 0.0036457483656704426, + 0.0075863734818995, + 0.020762000232934952, + 0.008893213234841824, + -0.0347418375313282, + -0.007358514238148928, + -0.013664854690432549, + -0.014609800651669502, + 0.02409946918487549, + -0.010850122198462486, + 0.004470062907785177, + 0.011882190592586994, + 0.013148820027709007, + 0.007606478873640299, + -0.02107028104364872, + -0.025493431836366653, + -0.038628850132226944, + -0.030828019604086876, + 0.010133035480976105, + -0.01510572899132967, + 0.016727551817893982, + 0.01110478863120079, + 0.0046845185570418835, + 0.009710825979709625, + -0.0019150231964886189, + -0.06331807374954224, + 0.019917581230401993, + -0.004795097280293703, + 0.008303459733724594, + -0.00473813246935606, + -0.0020205755718052387, + 0.028442198410630226, + 0.020413510501384735, + -0.006902795750647783, + -0.04147038608789444, + -0.0053982543759047985, + -0.028147321194410324, + -0.03766379877924919, + -0.0008662003092467785, + 0.004681167658418417, + -0.025815114378929138, + 0.0018798389937728643, + -0.024421151727437973, + -0.027798831462860107, + 0.0005587578634731472, + -0.02771840989589691, + -0.047904063016176224, + 0.01596355251967907, + 0.006128744222223759, + -0.01505211554467678, + 0.060369305312633514, + 0.00880609080195427, + -0.01369166187942028, + -0.01763898879289627, + -0.016513096168637276, + 0.028951531276106834, + 0.021847683936357498, + 0.0031280387192964554, + 0.0034128627739846706, + -0.0033039595000445843, + -0.015360395424067974, + -0.014569589868187904, + -0.00022094810265116394, + 0.016137797385454178, + 0.001933452906087041, + -0.011332647874951363, + -0.017022427171468735, + -0.008377179503440857, + 0.019408248364925385, + 0.0020390055142343044, + 0.01948866993188858, + 0.012418330647051334, + 0.019260810688138008, + 0.010474824346601963, + -0.027262691408395767, + 0.03602857142686844, + -0.013577732257544994, + -0.005662973038852215, + -0.02298698015511036, + -0.032409630715847015, + -0.021767262369394302, + -0.021525999531149864, + 0.0005696481675840914, + 0.015802711248397827, + -0.027932865545153618, + 0.026458483189344406, + -0.013751977123320103, + -0.014422151260077953, + 0.030801212415099144, + 0.02015884406864643, + 0.013162223622202873, + 0.04404385760426521, + 0.014663414098322392, + -0.007023427169770002, + -0.011875488795340061, + 0.0031917053274810314, + 0.02597595751285553, + 0.0034815557301044464, + 0.01199612021446228, + 0.0197969488799572, + -0.009355633519589901, + -0.0001173852215288207, + -0.0026924253907054663, + -0.004067958332598209, + -0.001821198733523488, + -0.040237266570329666, + 0.024287117645144463, + -0.025547046214342117, + 0.010762999765574932, + -0.00252823275513947, + -0.006098586600273848, + -0.003994239028543234, + -0.021499192342162132, + 0.0009575115982443094, + -0.019475266337394714, + -0.008176126517355442, + -0.002037330064922571, + -0.0389237254858017, + -0.0018262250814586878, + 0.003910467028617859, + -0.013926222920417786, + 0.029514476656913757, + 0.014274713583290577, + 0.003094529965892434, + -0.0033223892096430063, + -0.021619824692606926, + 0.0006492313696071506, + -0.02610999159514904, + -0.027772024273872375, + 0.02049393020570278, + -0.016043974086642265, + 0.030157845467329025, + -0.03251685947179794, + 0.006256077438592911, + -0.029460864141583443, + 0.015387202613055706, + -0.043400488793849945, + -0.021150702610611916, + -0.015119132585823536, + 0.009201493114233017, + -0.0034111873246729374, + -0.024823257699608803, + -0.016124393790960312, + -0.015561448410153389, + 0.055329591035842896, + 0.0017558567924425006, + 0.0041751861572265625, + -0.00023581759887747467, + -0.023817995563149452, + 0.0228529442101717, + 0.012994680553674698, + -0.006065077614039183, + -0.016539903357625008, + 0.008283354341983795, + -0.013430293649435043, + 0.04610799252986908, + 0.009503072127699852, + -0.0035184151493012905, + -0.012083243578672409, + -0.008068898692727089, + 0.020239265635609627, + -0.00811581127345562, + -0.04310561344027519, + 0.005666323937475681, + 0.01942165195941925, + -0.015011904761195183, + 0.0059645515866577625, + 8.816980698611587e-5, + 0.008920020423829556, + 0.016781164333224297, + 0.0048185535706579685, + -0.026967814192175865, + 0.006239322945475578, + 0.012478645890951157, + -0.00979794841259718, + -0.00042095326352864504, + -0.006741953548043966, + -7.125837873900309e-5, + -0.04953928664326668, + -0.014864467084407806, + -0.005039711017161608, + 0.02954128384590149, + -0.0041684843599796295, + -0.004225449170917273, + 0.0017357515171170235, + -0.0014567914186045527, + -0.00031204993138089776, + 0.0036323447711765766, + 0.02100326307117939, + -0.0027745217084884644, + 0.025278976187109947, + 0.029782546684145927, + -0.0006906984490342438, + 0.00843749474734068, + -0.001990417717024684, + 0.014824256300926208, + 0.001638576271943748, + -0.007693601306527853, + -0.003464801236987114, + -0.004051203839480877, + 0.028844302520155907, + 0.0057668499648571014, + 0.020078422501683235, + 0.05683078244328499, + -0.018496811389923096, + 0.016848182305693626, + -0.0170760415494442, + -0.005649569444358349, + 0.02785244584083557, + -6.837872206233442e-5, + -0.007271391339600086, + 0.02570788748562336, + 0.007539461366832256, + -0.020507333800196648, + 0.016151200979948044, + 0.00014199317956808954, + 0.03114970214664936, + 0.003344169817864895, + 0.018121514469385147, + 0.021727051585912704, + -0.006014814600348473, + -0.002777872607111931, + -0.0021881191059947014, + -0.012156962417066097, + 0.01196261215955019, + -0.015038711950182915, + -0.01763898879289627, + 0.02231680601835251, + -0.0006890229997225106, + 0.0033625997602939606, + 0.035331591963768005, + -0.02432732842862606, + 0.000123772828374058, + -0.006209165323525667, + -0.010789806954562664, + 0.023107610642910004, + 0.009449457749724388, + -0.042864348739385605, + 0.0498073548078537, + 0.01510572899132967, + -0.008169424720108509, + 0.005421710200607777, + -0.005552394315600395, + -0.010461421683430672, + 0.014998501166701317, + 0.015561448410153389, + 0.0030459424015134573, + 0.012545663863420486, + -0.0231880322098732, + 0.0017240234883502126, + 0.020078422501683235, + 0.029728934168815613, + 0.005508833099156618, + 0.008142618462443352, + 0.022088946774601936, + -0.002772846259176731, + -0.017518356442451477, + -0.010106229223310947, + 0.021794069558382034, + -0.002987302141264081, + 0.020306281745433807, + -0.01058205310255289, + -0.010783105157315731, + -0.026699746027588844, + -0.0051871491596102715, + 0.004902325104922056, + -0.03975474089384079, + 0.0015506158815696836, + 0.01777302287518978, + 0.0014065284049138427, + 0.005579201504588127, + 0.02116410620510578, + -0.010783105157315731, + 0.022893154993653297, + -0.005146938841789961, + -0.01680797152221203, + -0.015400606207549572, + 0.004992798902094364, + -0.011748155578970909, + -0.009027248248457909, + 0.007881250232458115, + -0.008343670517206192, + -0.004828606266528368, + 0.006969813257455826, + 0.006561006885021925, + -0.015641868114471436, + 0.006922900676727295, + -0.01582951843738556, + 0.0024092767853289843, + -0.0014685194473713636, + -0.015226360410451889, + -0.003649099264293909, + 0.00226351385936141, + 0.001764233922585845, + -0.006684988737106323, + -0.04256947338581085, + -0.04029088094830513, + -0.010756297968327999, + 0.01544081699103117, + 0.016459481790661812, + 0.0022350314538925886, + -0.026994621381163597, + -0.00942265149205923, + 0.01652649976313114, + 0.009710825979709625, + -0.006943006068468094, + -0.0015279974322766066, + -0.0156954824924469, + 0.0020808912813663483, + 0.0019234003266319633, + -0.0197969488799572, + 0.014207695610821247, + 0.005210605449974537, + 0.012699803337454796, + 0.019716529175639153, + -0.020078422501683235, + -0.0027678199112415314, + -0.013805591501295567, + -0.020078422501683235, + 0.014221099205315113, + 0.016660533845424652, + 0.016915200278162956, + -0.0007665118901059031, + -0.014636607840657234, + -0.008524617180228233, + -0.007988478057086468, + 0.02771840989589691, + -0.01915358193218708, + -0.016647130250930786, + 0.0034882572945207357, + 0.008062196895480156, + -0.021834280341863632, + -0.024220099672675133, + -0.02251785807311535, + -0.005776902660727501, + -0.017732812091708183, + 0.007204373832792044, + -0.011614121496677399, + 0.002343934727832675, + 0.001946856384165585, + 0.0204269140958786, + -0.0006986567168496549, + 0.02930002100765705, + 0.004272361285984516, + -0.007794127333909273, + 0.011748155578970909, + -0.007794127333909273, + -0.014556186273694038, + 0.00040901577449403703, + -0.009590194560587406, + 0.0046074483543634415, + -0.0001569673913763836, + -0.01132594607770443, + -0.00610863883048296, + -0.016084184870123863, + -0.01750495284795761, + 0.018134918063879013, + -0.012270892038941383, + -0.01999800279736519, + 0.005937744397670031, + -0.025788309052586555, + -0.010809912346303463, + 0.007968372665345669, + -0.016848182305693626, + -0.0038032394368201494, + -0.005394903477281332, + -0.015775904059410095, + 0.00014000361261423677, + 0.015212957747280598, + -6.204348028404638e-5, + 0.014207695610821247, + 0.010025807656347752, + 0.025962553918361664, + -0.03329426050186157, + 0.015936745330691338, + -0.004885571077466011, + -0.014006643556058407, + 0.005053114611655474, + 0.006232621148228645, + 0.012371418066322803, + 0.01721007749438286, + 0.0038132918998599052, + -0.005719937849789858, + -0.0030828018207103014, + -0.02519855462014675, + 0.018523618578910828, + 0.03275812044739723, + -0.0245283804833889, + 0.023670557886362076, + -0.00742553174495697, + -0.0018999442690983415, + 0.004145028069615364, + 0.013436995446681976, + -0.016553305089473724, + 0.011446577496826649, + -0.003042591502889991, + 0.021686840802431107, + 0.016781164333224297, + -0.006118691526353359, + -0.005552394315600395, + -0.027142060920596123, + -0.0036289941053837538, + 0.008256548084318638, + -0.0007824285421520472, + -0.009509773924946785, + -0.032007526606321335, + -0.005482025910168886, + 0.011828577145934105, + -0.000546610914170742, + -0.0015899885911494493, + -0.016915200278162956, + 0.02109708823263645, + 0.014529379084706306, + -0.018027689307928085, + 0.026538902893662453, + -0.014422151260077953, + 0.032650891691446304, + 0.002955468837171793, + -0.006437024567276239, + -0.033213838934898376, + 0.008296757936477661, + 0.01478404551744461, + 0.02053414098918438, + 0.02312101423740387, + -0.02795967273414135, + -0.016419271007180214, + -0.025587255135178566, + -0.0012339585227891803, + 0.012049734592437744, + -0.025453221052885056, + -0.0018379531102254987, + 0.044740837067365646, + 0.013229241594672203, + 0.011949208565056324, + 0.007593075279146433, + -0.01256576832383871, + 0.008410687558352947, + -0.01004591304808855, + 0.011681138537824154, + 0.005220658145844936, + 0.00584727106615901, + 0.0012431733775883913, + 0.008223039098083973, + -0.012679697945713997, + 0.005515534896403551, + -0.0035586256999522448, + 0.016446078196167946, + -0.01670074462890625, + -0.017089445143938065, + 0.01955568790435791, + -0.025010906159877777, + -0.00895352941006422, + 0.027061639353632927, + -0.009000441059470177, + 0.0009893449023365974, + 0.009764440357685089, + -0.017317304387688637, + -0.006812321953475475, + -0.015548044815659523, + -0.010039211250841618, + -0.01928761787712574, + 0.0004178117960691452, + -0.01450257282704115, + -0.016888393089175224, + 0.0009725905256345868, + 0.005649569444358349, + 0.029755739495158195, + -0.007934863679111004, + -0.0029152582865208387, + 0.013235943391919136, + -0.006520796101540327, + -0.023348873481154442, + 0.01470362488180399, + -0.005770200863480568, + 0.0009801299311220646, + 0.007820934057235718, + 0.0053915525786578655, + -0.015802711248397827, + 0.01043461449444294, + -0.009261809289455414, + -0.0057970080524683, + 0.017732812091708183, + 0.0019485318334773183, + -0.00024210047558881342, + -0.022598277777433395, + -0.000729233433958143, + -0.0017030804883688688, + 0.006792217027395964, + -0.01053514052182436, + 0.0022467593662440777, + 0.0071172513999044895, + -0.007988478057086468, + -0.012103348039090633, + 0.02251785807311535, + -0.01794726774096489, + 0.020252667367458344, + -0.010830016806721687, + 0.0011811822187155485, + -0.005599306430667639, + -0.009121072478592396, + 0.02338908426463604, + -0.00479844817891717, + -0.007325005251914263, + 0.035572852939367294, + -0.0053278859704732895, + 0.0017592075746506453, + -0.009724229574203491, + -0.019301021471619606, + -0.016379060223698616, + 0.0014576291432604194, + 0.0046644131653010845, + -0.0075863734818995, + 0.03249005228281021, + 0.0016628700541332364, + -0.005585902836173773, + -0.009931983426213264, + 0.017250286415219307, + 0.0037596779875457287, + 0.0187514778226614, + 0.018389584496617317, + 0.0052441139705479145, + 0.010669175535440445, + -0.01814832165837288, + 0.012967873364686966, + -0.00898703746497631, + 0.013349873013794422, + 0.008370477706193924, + -0.005877428688108921, + -0.00013131227751728147, + 0.0005654596025124192, + 0.013108610175549984, + -0.011567208915948868, + 0.02033308893442154, + -0.005589253734797239, + -0.023630347102880478, + 0.04798448085784912, + 0.0040277475491166115, + -0.020507333800196648, + 0.008631845004856586, + -0.00858493335545063, + -0.003081126371398568, + 0.02133835107088089, + 0.03578731045126915, + -0.0015212957514449954, + 0.013953029178082943, + 0.007412128150463104, + -0.00996549241244793, + -0.032543666660785675, + 0.002994003938511014, + -0.0010421210899949074, + 0.0030325388070195913, + -0.005033009219914675, + 0.006269481033086777, + -0.0007200185209512711, + 0.014140678569674492, + -0.008933424018323421, + -0.01649969257414341, + 0.028951531276106834, + -0.03514394164085388, + 0.004902325104922056, + -0.04232821241021156, + -0.005941095296293497, + -0.0005721613415516913, + 0.008357074111700058, + -0.03337468206882477, + 0.021311543881893158, + 0.002255136612802744, + 0.004121572244912386, + 0.006182358134537935, + 0.003940625116229057, + 0.022732313722372055, + 0.016459481790661812, + -0.006373357959091663, + 0.008933424018323421, + 0.00415843166410923, + 0.011835278943181038, + -0.002312101423740387, + 0.026257431134581566, + -0.026069780811667442, + 0.006929602473974228, + 0.014636607840657234, + 0.015481026843190193, + 0.0013043268118053675, + 0.0018295759800821543, + -0.004279063083231449, + 0.02338908426463604, + -0.005552394315600395, + -0.009415949694812298, + -0.009710825979709625, + -0.021365158259868622, + -0.00032000825740396976, + -0.006768760737031698, + -0.0080152852460742, + -0.005230710841715336, + 0.01643267460167408, + 0.010307281278073788, + 0.007733811624348164, + -0.000231629004701972, + -0.012572470121085644, + 0.017585374414920807, + 0.009911878034472466, + -0.013886012136936188, + 0.004895623307675123, + 0.021378561854362488, + -0.01100426260381937, + -0.01105787605047226, + -0.008893213234841824, + 0.020949648693203926, + -0.007941565476357937, + 0.006353252567350864, + -0.008169424720108509, + -0.006101937498897314, + 0.01623162254691124, + -0.04197971895337105, + 0.018121514469385147, + 0.001497001969255507, + -0.021150702610611916, + -0.02887110970914364, + -0.03297257795929909, + -0.00838388130068779, + -0.0021763911936432123, + -0.011955910362303257, + -0.0011954234214499593, + -0.0360821858048439, + 0.018979337066411972, + -0.012679697945713997, + 0.01774621568620205, + 0.004433203022927046, + 0.036377061158418655, + -0.016660533845424652, + 0.020989859476685524, + -0.010354193858802319, + -0.0053915525786578655, + 0.019703125581145287, + 0.0022919962648302317, + 0.02294676937162876, + -0.01497169490903616, + 0.023804591968655586, + 0.020815614610910416, + -0.016472885385155678, + -0.01372516993433237, + -0.0032989331521093845, + 0.016271833330392838, + 0.01305499579757452, + 0.02056094817817211, + -0.012009523808956146, + 0.0038099410012364388, + 0.00510672852396965, + -0.03125692903995514, + -0.009429353289306164, + -0.015400606207549572, + -0.0008620117441751063, + -0.007398724555969238, + -0.024622205644845963, + -0.0004088063433300704, + 0.00011518621613504365, + 0.02940724976360798, + 0.005518885795027018, + 0.026659535244107246, + 0.0035820817574858665, + 0.010883631184697151, + -0.0005767687689512968, + 0.017223481088876724, + 0.013128715567290783, + 0.01968972198665142, + -0.007298198528587818, + 0.0006953058764338493, + -0.009992299601435661, + 0.0023355574812740088, + 0.01781323365867138, + 0.008283354341983795, + 0.0030911790672689676, + 0.014020047150552273, + -0.03484906628727913, + -0.005609359126538038, + -0.009449457749724388, + 0.021499192342162132, + 0.01747814565896988, + 0.014408747665584087, + -0.01371176727116108, + -0.03297257795929909, + -0.007338408846408129, + 0.005502131301909685, + 0.016995621845126152, + 0.009684018790721893, + 0.003308985847979784, + 0.01616460457444191, + -0.01058875396847725, + -0.007660092785954475, + 0.012780224904417992, + 0.017183270305395126, + 0.005595955532044172, + -0.0025232064072042704, + 0.019073162227869034, + 0.009040651842951775, + 0.009784544818103313, + -0.0037831340450793505, + 0.010307281278073788, + 0.0062158671207726, + 0.007271391339600086, + -0.005103377625346184, + -0.022759120911359787, + 0.0013998266076669097, + 0.022933365777134895, + 0.018443197011947632, + -0.020855825394392014, + 0.015387202613055706, + -0.012290997430682182, + -0.008832897990942001, + 0.004449957516044378, + -0.01120531465858221, + -0.00115688843652606, + 0.005542341619729996, + 0.003112959675490856, + -0.01928761787712574, + -0.0049492372199893, + 0.021257929503917694, + -0.027436936274170876, + -0.0053680962882936, + -0.01915358193218708, + -0.011902295984327793, + -0.006098586600273848, + -0.007003321778029203, + 0.055597662925720215, + 0.014542782679200172, + 0.015306781977415085, + 0.017920462414622307, + -0.008712266571819782, + -0.02109708823263645, + -0.00594779709354043, + 0.013450399041175842, + 0.010595455765724182, + 0.005123482551425695, + -0.023027190938591957, + -0.004939184989780188, + 0.02278592810034752, + 0.0031146351248025894, + -0.026739954948425293, + 0.006172305438667536, + 0.00695640966296196, + -0.0036826080176979303, + 0.005133535247296095, + 0.010997560806572437, + 0.012445136904716492, + 0.0075863734818995, + 0.01851021498441696, + 0.0035385205410420895, + -0.008290056139230728, + -0.00027016401872970164, + -0.01687498949468136, + 0.0010731166694313288, + 0.002818083157762885, + 0.028522619977593422, + 0.00605837581679225, + -0.01014643907546997, + -0.0037328710313886404, + -0.02722248062491417, + -0.0009876694530248642, + -0.0046007465571165085, + 0.004225449170917273, + -0.00888651143759489, + -0.011634225957095623, + 0.005200552754104137, + -0.019166985526680946, + 0.0008821169612929225, + 0.016017166897654533, + 0.02167343720793724, + -0.02301378734409809, + 0.0038065901026129723, + 3.719991218531504e-5, + 0.0033860558178275824, + -0.017290497198700905, + 0.006792217027395964, + 0.005941095296293497, + -0.008859704248607159, + 0.016539903357625008, + 0.02006501890718937, + 0.015682078897953033, + -0.003407836426049471, + 0.01848340779542923, + 0.01922059990465641, + 0.012880750931799412, + -0.0022668647579848766, + -0.027798831462860107, + -0.007807530928403139, + -0.0005311131826601923, + -0.0015481027076020837, + -0.01810811087489128, + 0.007418829947710037, + -0.02943405695259571, + -0.01723688468337059, + 0.012860645540058613, + -0.02187448926270008, + -0.015534641221165657, + -0.00900714285671711, + 0.008283354341983795, + -0.029862968251109123, + -0.013859204947948456, + 0.01888551190495491, + 0.00025340967113152146, + 0.0524880550801754, + 0.019502073526382446, + -0.001638576271943748, + 0.005853972863405943, + 0.004248905461281538, + -0.015226360410451889, + 0.0013302960433065891, + 0.0069832163862884045, + -0.008571529760956764, + 0.02035989612340927, + -0.030131038278341293, + 0.021016666665673256, + -0.02267869934439659, + -0.015749096870422363, + -0.0010940595529973507, + 0.012840540148317814, + 0.018322566524147987, + -0.015883130952715874, + 0.0005880779935978353, + 0.004500220529735088, + 0.016781164333224297, + 0.00236906623467803, + -0.014180888421833515, + 0.02345610223710537, + -0.006370007060468197, + -0.02093624696135521, + 0.006721848621964455, + -0.007800829131156206, + -0.0014819230418652296, + 0.018858706578612328, + 0.004543781746178865, + 0.0023740925826132298, + -0.006842480041086674, + 0.010943946428596973, + -0.013631345704197884, + 0.004372887313365936, + -0.0016771112568676472, + -0.008779283612966537, + -0.0004025234666187316, + 0.011681138537824154, + -0.00379318674094975, + -0.02301378734409809, + -0.014288117177784443, + 0.0008955204393714666, + 0.0027309604920446873, + 0.014301519840955734, + -0.034259311854839325, + 0.0063968137837946415, + 0.0007501763757318258, + -0.01470362488180399, + -0.012411628849804401, + 0.001280033029615879, + 0.006470533087849617, + 0.023107610642910004, + 0.006634725723415613, + 0.026016168296337128, + 0.003055994864553213, + 0.01767919957637787, + 0.005066517740488052, + -0.018590636551380157, + 0.012947767972946167, + -0.01031398307532072, + -0.018590636551380157, + 0.008893213234841824, + 0.016539903357625008, + 0.003900414565578103, + 0.01710284873843193, + 0.016110990196466446, + 0.012110049836337566, + -0.0058305165730416775, + -0.027932865545153618, + 0.007720408495515585, + 0.008082302287220955, + 0.014985098503530025, + -0.02049393020570278, + 0.004661062266677618, + -0.010448018088936806, + -0.010897034779191017, + 0.015641868114471436, + -0.03444696217775345, + 0.004831956699490547, + -0.014944887720048428, + 0.000860336294863373, + 0.014757238328456879, + -0.011640927754342556, + -0.012981276959180832, + 0.0026873990427702665, + -0.013805591501295567, + 0.01246524229645729, + 0.007231181021779776, + 0.013142118230462074, + 0.002168013947084546, + 0.00925510749220848, + 0.02082901820540428, + 0.02160642109811306, + 0.0245283804833889, + -0.036511097103357315, + 0.011815173551440239, + -0.022799329832196236, + 0.012130155228078365, + 0.0025868730153888464, + -0.0069765145890414715, + 0.0071373567916452885, + -0.015226360410451889, + -0.004349431488662958, + 0.007807530928403139, + -0.0005520561244338751, + -0.019140178337693214, + -0.015883130952715874, + 0.004392992705106735, + -0.0028063550125807524, + 0.010025807656347752, + -0.018255548551678658, + -0.003608888713642955, + 0.03152500092983246, + 0.012411628849804401, + -0.013979836367070675, + 0.002136180642992258, + 0.0017927163280546665, + 0.02109708823263645, + 0.010843420401215553, + 0.033857207745313644, + -0.00025089652626775205, + 0.002538285218179226, + -0.0009055730770342052, + 0.02809370867908001, + -0.007579671684652567, + 0.005100026726722717, + 0.0010722789447754622, + -0.014395345002412796, + -0.019381441175937653, + -0.004242203664034605, + 2.653864157764474e-6, + -0.027142060920596123, + -0.005140237044543028, + 0.019984599202871323, + 0.0017910408787429333, + -0.006205814424902201, + -0.00447676470503211, + 0.010387701913714409, + 0.020788807421922684, + 0.010964051820337772, + 0.001486111548729241, + 0.003923870623111725, + -0.009871668182313442, + 0.0036692044232040644, + -0.016754359006881714, + 0.0038199936971068382, + -0.0075863734818995, + -0.01238482166081667, + 0.017518356442451477, + 0.005867376457899809, + -0.0005156153929419816, + 0.006507392972707748, + -0.012619382701814175, + -0.0143149234354496, + 0.008772581815719604, + 0.014770641922950745, + 0.019609300419688225, + 0.006450428161770105, + -0.009684018790721893, + 0.017692603170871735, + 0.009429353289306164, + -0.021365158259868622, + 0.0053144823759794235, + -0.010628964751958847, + -0.0018362776609137654, + 0.005910937674343586, + -0.0030576703138649464, + 0.011908997781574726, + 0.00389371276833117, + -0.005753446836024523, + -2.3168135157902725e-5, + -0.016003763303160667, + 0.008665353991091251, + 0.01327615324407816, + -0.017893655225634575, + 0.00967731699347496, + -0.0004858764004893601, + -0.01828235574066639, + 0.012049734592437744, + 0.013477206230163574, + -0.008926722221076488, + 0.01830916292965412, + 0.010401105508208275, + -0.02100326307117939, + 0.0026555657386779785, + -0.02107028104364872, + 0.004744834266602993, + -0.031203316524624825, + 0.012150260619819164, + -0.01797407492995262, + -0.00484871119260788, + 0.017491549253463745, + -0.012894154526293278, + 0.0009893449023365974, + 0.02771840989589691, + 0.021150702610611916, + 0.005559096112847328, + -0.007492549251765013, + -0.016673937439918518, + 0.008531318977475166, + 0.018778285011649132, + -0.0036893095821142197, + 0.003471503034234047, + 0.008899915032088757, + -0.004530378617346287, + -0.005421710200607777, + -0.0388433039188385, + 0.024447958916425705, + 0.015427413396537304, + -0.00010345816554035991, + 0.017357515171170235, + 0.0015615061856806278, + 0.01206313818693161, + 0.004969342611730099, + 0.0008620117441751063, + 0.013349873013794422, + 0.012679697945713997, + -0.0014157432597130537, + 0.0052374121733009815, + 0.037422534078359604, + -0.02691420167684555, + -0.020963052287697792, + 0.0008205447229556739, + -0.0019569089636206627, + -0.022397225722670555, + -0.016419271007180214, + 0.00784774124622345, + 0.031122896820306778, + 0.0016695718513801694, + -0.007184268906712532, + 0.02479645051062107, + -0.004322624299675226, + -0.0015916640404611826, + -0.00843749474734068, + -0.015132536180317402, + 0.006075130309909582, + 0.0037462746258825064, + -0.01253226026892662, + 0.02093624696135521, + -0.003970782738178968, + 0.0017541813431307673, + -0.008772581815719604, + 0.008792687207460403, + 0.021351754665374756, + -0.011131595820188522, + 0.01730390079319477, + -0.015145939774811268, + 0.020319685339927673, + -0.013899415731430054, + 0.006561006885021925, + -0.015735693275928497, + 0.025989361107349396, + 0.00848440732806921, + -0.027637990191578865, + -0.00742553174495697, + 0.008819494396448135, + 0.008296757936477661, + -0.0057869553565979, + 0.0013194057391956449, + 0.0015288351569324732, + -0.013242645189166069, + 0.00011487206938909367, + -0.021995121613144875, + 0.005994709208607674, + 0.0017240234883502126, + -0.009241703897714615, + 0.006875988561660051, + 0.002047382527962327, + -0.018872108310461044, + 0.005652920342981815, + 0.009462861344218254, + -0.015521237626671791, + 0.015775904059410095, + 0.005974604282528162, + 0.01995779201388359, + -0.01857723295688629, + -0.016928603872656822, + -0.0030643721111118793, + 0.017987478524446487, + -0.007291496731340885, + -0.008042092435061932, + -0.0026639429852366447, + -0.0021378560923039913, + 0.001408203854225576, + -0.006634725723415613, + 0.005415008403360844, + -0.02171364799141884, + -0.0054552191868424416, + 0.018228741362690926, + -0.03262408822774887, + 0.00526757026091218, + 0.002677346346899867, + -0.013899415731430054, + 0.004751536063849926, + 0.0020875930786132812, + -0.011687840335071087, + 0.007016725372523069, + -0.01797407492995262, + 0.002238382352516055, + -0.03337468206882477, + -0.0011376208858564496, + 0.018134918063879013, + -0.0003197988262400031, + 0.005358043592423201, + -0.006118691526353359, + -0.01206313818693161, + 0.018054496496915817, + 0.03350871801376343, + 0.02798647992312908, + 0.02443455532193184, + -0.0077606188133358955, + -0.0023422592785209417, + -0.0023288559168577194, + 0.013631345704197884, + 0.01290085632354021, + -0.03337468206882477, + 0.013148820027709007, + -0.018831899389624596, + 0.010360894724726677, + -0.017424533143639565, + 0.013664854690432549, + 0.008832897990942001, + 0.006661532912403345, + 0.0170760415494442, + 0.005662973038852215, + 0.010126333683729172, + -0.01734411157667637, + -0.0011124893790110946, + 0.002286969916895032, + 0.011949208565056324, + 0.005535639822483063, + 0.00022827813518233597, + 0.016754359006881714, + -0.011031069792807102, + 0.004470062907785177, + 0.009838159196078777, + -0.021257929503917694, + 0.0032051086891442537, + 0.024287117645144463, + 0.009563387371599674, + -0.009409247897565365, + 0.010863525792956352, + -0.009952088817954063, + 0.0077807242050766945, + -0.005659622140228748, + 0.015668675303459167, + -0.03152500092983246, + 0.021552806720137596, + 0.0005143588059581816, + -0.009295318275690079, + -0.0011694541899487376, + -0.002070838585495949, + 0.011862085200846195, + 0.0008414876647293568, + 0.0021378560923039913, + -0.03305299952626228, + -0.011614121496677399, + 0.0013705064775422215, + -0.0173709187656641, + -0.008269951678812504, + 0.002553364261984825, + -0.020748596638441086, + -0.011051175184547901, + -0.010320684872567654, + 0.0006613783189095557, + -0.004523676820099354, + -0.008196231909096241, + 0.009938685223460197, + 0.025587255135178566, + -0.001253225957043469, + -0.011285735294222832, + -0.014717028476297855, + 0.01922059990465641, + 0.0005411657621152699, + 0.010923841968178749, + -0.01443555485457182, + -0.005713236052542925, + -0.020963052287697792, + -0.031122896820306778, + 0.013269451446831226, + -0.04323964938521385, + 0.017183270305395126, + -0.0004157175135333091, + 0.0022400578018277884, + -0.008343670517206192, + -0.0001625172735657543, + -0.012505453079938889, + 0.02718227170407772, + -0.009818053804337978, + -0.02116410620510578, + 0.013832397758960724, + -0.03356232866644859, + 0.03525117039680481, + -0.0010463097132742405, + -0.0021261281799525023, + 0.008068898692727089, + 0.020587755367159843, + -0.01228429563343525, + 0.008196231909096241, + 0.003092854516580701, + -0.007304900325834751, + -0.010984157212078571, + 0.013088504783809185, + 0.002615355420857668, + -0.008625143207609653, + 0.009958790615200996, + -0.01616460457444191, + 0.008135916665196419, + 0.001269142609089613, + 0.021834280341863632, + 0.01226419024169445, + 0.02191470004618168, + 0.012244084849953651, + 0.004570588935166597, + -0.006356603465974331, + 0.013557626865804195, + 0.004872167482972145, + 0.027664795517921448, + 0.026739954948425293, + -0.005140237044543028, + 0.0038870112039148808, + 0.013939626514911652, + 0.00510672852396965, + -0.016137797385454178, + -0.0231478214263916, + 0.008223039098083973, + 0.001392287202179432, + -0.001497001969255507, + 0.02278592810034752, + 0.023898417130112648, + 0.018697863444685936, + 0.010421210899949074, + -0.01993098482489586, + -0.003308985847979784, + 0.011191911064088345, + -0.0077606188133358955, + 0.02812051586806774, + -0.003545222105458379, + -0.0009223273955285549, + 0.01623162254691124, + 0.014891273342072964, + -0.008966933004558086, + -0.02089603617787361, + -0.004821904469281435, + -0.01972993277013302, + 0.004955939017236233, + 0.019703125581145287, + 0.001385585404932499, + -0.004647659137845039, + -0.008156022056937218, + -0.019971195608377457, + -0.01083671860396862, + 0.025480028241872787, + 0.008578231558203697, + 0.009670615196228027, + 0.0036055378150194883, + 0.013463802635669708, + 0.014046854339540005, + -0.011774962767958641, + 0.03313341736793518, + -0.008752476423978806, + 0.008283354341983795, + -0.010675877332687378, + 0.020641369745135307, + 0.020922843366861343, + 0.00447676470503211, + -0.02218277007341385, + 0.014489169232547283, + 0.03101566806435585, + -0.009100967086851597, + 0.01861744374036789, + -0.013142118230462074, + 0.0018178478349000216, + 0.025895535945892334, + 0.010662473738193512, + 0.024756239727139473, + -0.001175318262539804, + 0.011687840335071087, + 0.0039640809409320354, + -0.013363276608288288, + -0.0013755328254774213, + 0.0006462993915192783, + -0.0008276653243228793, + -0.002407601336017251, + -0.015427413396537304, + -0.004282413981854916, + 0.005029658321291208, + -0.00917468685656786, + -0.006001411005854607, + 0.006343199871480465, + 0.0002617868594825268, + 0.0013001381885260344, + 0.00996549241244793, + 0.0025114782620221376, + 0.025654273107647896, + -0.021954910829663277, + -0.004124923143535852, + -0.04029088094830513, + -0.006916198879480362, + 0.005944446194916964, + 0.0019770143553614616, + -0.0013981511583551764, + -0.016204815357923508, + 6.974001735216007e-5, + 0.006433673668652773, + 0.0003350871556904167, + 0.00927521288394928, + 0.00484871119260788, + 0.006319744046777487, + 0.014837659895420074, + -0.01888551190495491, + 0.01273331232368946, + -0.007593075279146433, + -0.015561448410153389, + -0.010850122198462486, + 0.009248405694961548, + 0.016513096168637276, + -0.003409511875361204, + -0.006698392331600189, + -0.00784774124622345, + -0.028040094301104546, + -0.02227659523487091, + 0.0077606188133358955, + -0.0011501866392791271, + -0.0038870112039148808, + -0.0022149260621517897, + 0.0004783369367942214, + -0.0047347815707325935, + 0.0016947033582255244, + -0.007418829947710037, + 0.00478839548304677, + 0.01290085632354021, + -0.022839540615677834, + 0.00748584745451808, + -0.006162252742797136, + 0.025024309754371643, + 0.012907557189464569, + 0.00782763585448265, + -0.007345110643655062, + 0.03935263678431511, + 0.02671314962208271, + -0.008156022056937218, + 0.011761559173464775, + -0.012646189890801907, + 0.000983480829745531, + -0.005049763713032007, + 0.001490300172008574, + 0.005770200863480568, + 0.004004291724413633, + 0.024943888187408447, + -0.018322566524147987, + 0.001832926762290299, + -0.0017876899801194668, + -0.010468123480677605, + -0.03350871801376343, + -0.0005340451607480645, + -0.007150759920477867, + -0.02671314962208271, + -0.008732371963560581, + -0.0020071722101420164, + -0.005652920342981815, + -0.014127274975180626, + -0.01142647210508585, + -0.0064102173782885075, + 0.01855042576789856, + 0.0027996532153338194, + -0.017759619280695915, + -0.016338849440217018, + 0.006420270074158907, + 0.008873107843101025, + -0.0030844772700220346, + -0.012425032444298267, + 0.021499192342162132, + -0.015306781977415085, + 0.02234361134469509, + -0.007733811624348164, + -0.003345845267176628, + -0.003910467028617859, + -0.020239265635609627, + 0.03179306909441948, + -0.01093724463135004, + -0.028522619977593422, + -0.02573469467461109, + 0.0076198820024728775, + 0.011232121847569942, + -0.002387495944276452, + -0.01147338468581438, + -0.0048185535706579685, + 0.004718027077615261, + -0.018778285011649132, + -0.004372887313365936, + -0.005324535071849823, + 0.002248434815555811, + -0.002764469012618065, + 0.005934393499046564, + 0.01201622560620308, + 0.00685588363558054, + -0.0001709991629468277, + -0.0031481438782066107, + 0.03366955742239952, + -0.014837659895420074, + 0.011178507469594479, + -0.006835778243839741, + 0.002841539215296507, + 0.018470004200935364, + -9.967534424504265e-6, + 0.0124317342415452, + 0.00748584745451808, + -0.009221598505973816, + 0.005659622140228748, + 0.01999800279736519, + -0.017022427171468735, + -0.004372887313365936, + -0.014167485758662224, + -0.00890661682933569, + 0.0012657917104661465, + -0.002350636525079608, + -0.0008770906715653837, + -0.00425895769149065, + -0.0014551159692928195, + -0.014609800651669502, + -0.016620323061943054, + 0.010870227590203285, + 0.010260368697345257, + -0.00016010882973205298, + -0.011674436740577221, + -0.01327615324407816, + 0.0014090415788814425, + -0.0023673907853662968, + 0.014221099205315113, + -0.019475266337394714, + 0.015561448410153389, + -0.019260810688138008, + 0.003545222105458379, + 0.011547103524208069, + 0.014033450745046139, + -0.0449552945792675, + -0.02668634243309498, + -0.0006316393264569342, + -0.00910766888409853, + 0.008772581815719604, + 0.012579171918332577, + 0.00326374894939363, + -0.006205814424902201, + 0.015346991829574108, + 0.00046870316145941615, + -0.027436936274170876, + 0.010012404061853886, + -0.00752605777233839, + -0.005086623132228851, + 0.008444196544587612, + 0.04071979224681854, + 0.005197201855480671, + -0.012807031162083149, + 0.021820876747369766, + -0.016660533845424652, + -0.0046141501516103745, + 0.005622762721031904, + 0.0065375505946576595, + 0.006239322945475578, + 0.00868545938283205, + -0.017116252332925797, + -0.013457100838422775, + 0.009194792248308659, + 0.0006655668839812279, + 0.012619382701814175, + -0.00685588363558054, + -0.005012903828173876, + 0.003464801236987114, + 0.004875518381595612, + 0.02564086951315403, + -0.00457729073241353, + -0.011520296335220337, + 0.016043974086642265, + -0.008042092435061932, + 0.004322624299675226, + -0.006889392156153917, + -0.0027761971578001976, + -0.018496811389923096, + 0.0020138737745583057, + -0.00574674503877759, + 0.0011903971899300814, + 0.012545663863420486, + -0.022370418533682823, + -0.002932012779638171, + -0.005482025910168886, + 0.012518856674432755, + 0.008658652193844318, + -0.015883130952715874, + -0.005475324112921953, + 0.017330707982182503, + -0.011165104806423187, + -0.003308985847979784, + -0.008940125815570354, + -0.023911820724606514, + 0.02107028104364872, + -0.032918963581323624, + -0.026418272405862808, + -0.009134476073086262, + 0.011332647874951363, + -0.0016771112568676472, + 0.012961171567440033, + -0.008028688840568066, + 0.006132095120847225, + -0.0005742556531913579, + -0.021794069558382034, + 0.017759619280695915, + 0.0024427855387330055, + 0.022491050884127617, + 0.022129155695438385, + 0.016593515872955322, + 0.02127133309841156, + -0.006785515230149031, + -0.01636565662920475, + 0.021954910829663277, + 0.014837659895420074, + -0.007867846637964249, + 0.0009323800331912935, + -0.02466241456568241, + -0.006681638304144144, + 0.006081832107156515, + -0.011165104806423187, + -0.0041751861572265625, + 0.016178008168935776, + -0.01450257282704115, + -0.030559949576854706, + -0.00026262455503456295, + 0.0002831486635841429, + -0.008296757936477661, + 0.008732371963560581, + 0.021552806720137596, + -0.003920519724488258, + 0.009235002100467682, + 0.0048252553679049015, + 0.0012858969857916236, + 0.018054496496915817, + 0.003511713584885001, + -0.001770935719832778, + -0.009784544818103313, + 0.011486788280308247, + -0.011252227239310741, + -0.00546862231567502, + 0.012505453079938889, + -0.0015481027076020837, + -0.027906058356165886, + -0.038628850132226944, + -0.008350372314453125, + -0.011071279644966125, + 0.0037395728286355734, + 0.000331526855006814, + -0.04179207235574722, + -0.013765380717813969, + 0.004791746381670237, + -0.015749096870422363, + 0.001966961659491062, + 0.03101566806435585, + -0.010474824346601963, + 0.009013844653964043, + -0.00047708034981042147, + 0.03656471148133278, + -0.014636607840657234, + -0.0026002763770520687, + -0.009436054155230522, + 0.001259927754290402, + 0.0030777757056057453, + 0.007284794934093952, + -0.010809912346303463, + 0.026833780109882355, + -0.018161725252866745, + -0.005827165674418211, + 0.007043532095849514, + 0.00016188898007385433, + 0.00895352941006422, + 0.004932483192533255, + -0.007606478873640299, + 0.004781693685799837, + 0.0019200494280084968, + -0.0064805857837200165, + -0.010843420401215553, + 0.0012683048844337463, + -0.011547103524208069, + 0.013296258635818958, + 0.02298698015511036, + 0.007479145657271147, + -0.005931042600423098, + 0.01268639974296093, + -0.01438194140791893, + -0.008611740544438362, + -0.01218376960605383, + 0.002184768207371235, + -0.01120531465858221, + -0.005673025734722614, + -0.009509773924946785, + 0.010019105859100819, + -0.004054554738104343, + -0.012766821309924126, + 0.008283354341983795, + -0.01828235574066639, + 0.008021987043321133, + 0.001663707778789103, + 0.0001105787669075653, + 0.003334117354825139, + 0.012404927052557468, + -0.010474824346601963, + 0.01406025793403387, + -0.0017307251691818237, + 0.015159343369305134, + 0.02194150723516941, + 0.02006501890718937, + -0.02238382212817669, + 0.037422534078359604, + 0.010260368697345257, + -0.003535169642418623, + -0.0012549014063552022, + 0.010354193858802319, + -0.029755739495158195, + 0.018805092200636864, + 0.010669175535440445, + -0.0005436789360828698, + -0.018724670633673668, + 0.015266571193933487, + -0.004935834091156721, + -0.011332647874951363, + 0.0021964963525533676, + 0.030908439308404922, + -0.01325604785233736, + 0.008651950396597385, + -0.04350771754980087, + -0.0022668647579848766, + -0.031122896820306778, + 0.012471944093704224, + -0.034125275909900665, + -0.025868728756904602, + 0.02916598692536354, + 0.003665853524580598, + 0.00811581127345562, + -0.0009583492646925151, + -0.018563829362392426, + -0.005599306430667639, + 0.013738573528826237, + -0.01085682399570942, + -0.003749625291675329, + -0.00017476889479439706, + 0.016218218952417374, + 0.02745033986866474, + 0.008430792950093746, + 0.008745774626731873, + -0.009395844303071499, + 0.009395844303071499, + 0.011835278943181038, + -0.004503571428358555, + 0.0137921879068017, + 0.006088533904403448, + 0.015333588235080242, + -0.015548044815659523, + -0.017464743927121162, + -0.018925722688436508, + -0.004064607433974743, + -0.0017793128499761224, + -0.005110079422593117, + 0.012043032795190811, + 0.012076541781425476, + -0.01364474929869175, + 0.016982218250632286, + -0.020038211718201637, + 0.0010597131913527846, + -0.011600717902183533, + -0.011942506767809391, + -0.002198171801865101, + -0.015145939774811268, + -0.0156552717089653, + -0.009958790615200996, + 0.00838388130068779, + -0.022102350369095802, + 0.004336027894169092, + 0.008920020423829556, + 0.012860645540058613, + -0.024273714050650597, + -0.011754857376217842, + -0.0214723851531744, + 0.005354692693799734, + 0.0001022015858325176, + 0.004976044408977032, + 0.027101850137114525, + -0.00831686332821846, + -0.0015958526637405157, + -0.007224479224532843, + -0.01857723295688629, + -0.02526557259261608, + -0.009134476073086262, + 0.005904235877096653, + 0.023603539913892746, + 0.02684718370437622, + -0.010327386669814587, + 0.011466682888567448, + 0.020775403827428818, + 0.004547132644802332, + -0.03830716386437416, + -0.012934364378452301, + -0.010253666900098324, + 0.008202933706343174, + -0.0170760415494442, + 0.00984486099332571, + 0.018724670633673668, + -0.010930543765425682, + 0.005877428688108921, + -0.0077539170160889626, + -0.017290497198700905, + 0.006323094945400953, + 0.00908756349235773, + 0.01110478863120079, + -0.02056094817817211, + -0.012766821309924126, + -0.020453721284866333, + 0.001134270103648305, + -0.01995779201388359, + -0.009456159546971321, + 0.012150260619819164, + 0.0023288559168577194, + -0.0248634684830904, + -0.008819494396448135, + 0.015212957747280598, + 0.019301021471619606, + -0.004145028069615364, + 0.0015053790993988514, + 0.013778784312307835, + -0.008826196193695068, + 0.028844302520155907, + 0.002715881448239088, + -0.02930002100765705, + 0.008021987043321133, + 0.008290056139230728, + 0.00210434733889997, + 0.016942007467150688, + 0.014033450745046139, + -0.015065519139170647, + -0.005763499066233635, + 0.0174111295491457, + 0.022370418533682823, + -0.012907557189464569, + -0.008343670517206192, + -0.0064035155810415745, + 0.028066901490092278, + 0.003049293300136924, + -0.017585374414920807, + -0.00155396678019315, + 0.020587755367159843, + -0.004815202672034502, + -0.012083243578672409, + -0.01828235574066639, + 0.007653390988707542, + 0.0014341730857267976, + 0.008779283612966537, + 0.011185209266841412, + -0.02298698015511036, + -0.011486788280308247, + 0.008296757936477661, + 0.026150202378630638, + -0.009013844653964043, + 0.0060282181948423386, + -0.00774721521884203, + 0.014864467084407806, + 0.004952588118612766, + -0.0019317774567753077, + -0.006232621148228645, + -0.016124393790960312, + -0.005860674660652876, + 0.007077041082084179, + -0.00838388130068779, + 0.010273772291839123, + 0.002672320231795311, + -0.0184163898229599, + 0.013979836367070675, + -0.0066012172028422356, + -0.01470362488180399, + 0.007338408846408129, + 0.02325505018234253, + -0.009583492763340473, + 0.0041684843599796295, + 0.009067459031939507, + 0.015132536180317402, + 0.011942506767809391, + -0.004067958332598209, + 0.0024779695086181164, + -0.016620323061943054, + -0.004543781746178865, + 0.0029504424892365932, + 0.014609800651669502, + 0.003836747957393527, + -0.015749096870422363, + 0.017692603170871735, + 0.011721349321305752, + 0.023174628615379333, + 0.009449457749724388, + 0.0021060227882117033, + -0.005260868463665247, + -0.004201992880553007, + 0.005411657504737377, + 0.0013043268118053675, + -0.006822374649345875, + -0.01814832165837288, + 0.01754516363143921, + -0.021552806720137596, + -0.01619141176342964, + -0.0018748126458376646, + 0.007928161881864071, + -0.027611183002591133, + 0.011346051469445229, + -0.006805620156228542, + -0.0058238147757947445, + -0.012230681255459785, + 0.03098886087536812, + 0.003950677812099457, + 0.004764939658343792, + 0.012639488093554974, + -0.00826324988156557, + 0.0015665325336158276, + 0.001547264982946217, + 0.01352411787956953, + 0.016553305089473724, + -0.009067459031939507, + -0.0174111295491457, + 0.013229241594672203, + 0.0017307251691818237, + -0.0014660063898190856, + 0.005133535247296095, + 0.004299168474972248, + 0.0039037654642015696, + 0.002533258870244026, + -0.009549983777105808, + -0.011258929036557674, + -0.0026455132756382227, + -0.005535639822483063, + -0.021418770775198936, + -0.01690179668366909, + -0.0016084184171631932, + 0.015976956114172935, + -0.008651950396597385, + -0.016392463818192482, + 0.017987478524446487, + 0.03490268066525459, + -0.019944388419389725, + 0.00895352941006422, + -0.010655771940946579, + -0.015132536180317402, + 0.012894154526293278, + -0.006839129142463207, + 0.002829811070114374, + 0.007097146008163691, + -0.0029504424892365932, + 0.027530761435627937, + -0.00289850402623415, + 0.012270892038941383, + 0.01804109290242195, + -0.0009491344098933041, + -0.013778784312307835, + -0.0004603260022122413, + -0.011976015754044056, + -0.013061697594821453, + 0.009067459031939507, + -0.011882190592586994, + -0.00226351385936141, + -0.007680197712033987, + -0.0040411511436104774, + 0.021298140287399292, + -0.0019183739786967635, + -0.011064577847719193, + -0.005967902485281229, + 0.02053414098918438, + 0.014824256300926208, + 0.005220658145844936, + -0.013738573528826237, + -0.011862085200846195, + 0.0009876694530248642, + -0.02109708823263645, + 0.003977484535425901, + 0.020118633285164833, + 0.006383410654962063, + 0.0018446547910571098, + 0.010890332981944084, + -0.005646218545734882, + -0.005535639822483063, + -0.015427413396537304, + -0.017357515171170235, + 0.0037094149738550186, + -0.009858264587819576, + 0.0107361925765872, + -0.019381441175937653, + -0.004513624124228954, + 0.00569648202508688, + -0.01053514052182436, + -0.005130184348672628, + -0.04171165078878403, + -0.013698363676667213, + 0.018537022173404694, + 0.018738074228167534, + 0.0187514778226614, + 0.004134975839406252, + -0.010749596171081066, + 0.006949707865715027, + 8.790802530711517e-5, + -0.00774721521884203, + 0.010206755250692368, + -0.01605737768113613, + -0.025252168998122215, + -0.007733811624348164, + 0.014408747665584087, + -0.006359954364597797, + -0.014368537813425064, + 0.02211575210094452, + 0.025922343134880066, + 0.01391281932592392, + -0.0072579882107675076, + 0.0009893449023365974, + -0.011513595469295979, + -0.0024461362045258284, + 0.0015204580267891288, + 0.010716087184846401, + -0.01716986671090126, + 0.0009374063229188323, + 0.007023427169770002, + -0.0019133477471768856, + -0.01995779201388359, + 0.03420569747686386, + -0.012679697945713997, + -0.01589653454720974, + -0.00784774124622345, + 0.008021987043321133, + 0.02476964332163334, + 0.023335469886660576, + 0.02298698015511036, + 0.000787454831879586, + 0.016486288979649544, + -0.0174111295491457, + 0.005093324929475784, + -0.0077807242050766945, + 0.016151200979948044, + 0.007197672501206398, + 0.009724229574203491, + 0.006745304446667433, + 0.003253696486353874, + 0.009013844653964043, + 0.004295817576348782, + -0.0033676261082291603, + -0.02040010690689087, + 0.00626613013446331, + -0.03088163398206234, + 0.010072720237076283, + -0.021418770775198936, + 0.03128373622894287, + 0.00789465382695198, + 0.00878598541021347, + -0.005582552403211594, + -0.017062637954950333, + 0.006574410013854504, + 0.013302960433065891, + 0.0009809676557779312, + -0.004359484184533358, + 0.014864467084407806, + -0.0014936510706320405, + -0.021284736692905426, + -0.010729490779340267, + 0.009489668533205986, + -0.0037194674368947744, + 0.018590636551380157, + -0.013584434054791927, + -0.019046355038881302, + -0.005709885153919458, + -0.03136415779590607, + -0.019984599202871323, + -0.02040010690689087, + 0.024555187672376633, + -0.004151729866862297, + -0.0007149922312237322, + -0.014247906394302845, + 0.005555745214223862, + -0.000663053710013628, + -0.016553305089473724, + -0.016620323061943054, + 0.017290497198700905, + -0.011252227239310741, + 0.013818995095789433, + -0.03769060596823692, + 0.014167485758662224, + 0.02341589145362377, + -0.007003321778029203, + -0.0036323447711765766, + 0.013818995095789433, + -0.0015464272582903504, + -0.002407601336017251, + 0.023281855508685112, + -0.021968314424157143, + -0.003384380368515849, + 0.015427413396537304, + -0.011835278943181038, + 0.005716586951166391, + -0.020172247663140297, + -0.009194792248308659, + -0.0046979221515357494, + -0.01265289168804884, + 0.0029454161413013935, + 0.004376238211989403, + 0.003960730507969856, + -0.015387202613055706, + -0.006457129493355751, + 0.012378119863569736, + 0.025989361107349396, + 0.047662798315286636, + 0.032784927636384964, + 0.00917468685656786, + 0.0038903621025383472, + 0.040237266570329666, + -0.024447958916425705, + 0.015641868114471436, + 0.01147338468581438, + -0.02997019700706005, + -0.008343670517206192, + -0.017290497198700905, + -0.0021780666429549456, + 0.03251685947179794, + 0.010977455414831638, + -0.017183270305395126, + -0.006205814424902201, + -0.007459040265530348, + -0.001990417717024684, + 0.0012976250145584345, + -0.0020959703251719475, + -0.0012398224789649248, + 0.006735252216458321, + -0.015936745330691338, + 0.014154082164168358, + 0.01256576832383871, + -0.007700303103774786, + -0.0003750881878659129, + -0.016472885385155678, + -0.01995779201388359, + -6.958294397918507e-5, + 0.03313341736793518, + 0.0016025543445721269, + -0.005726639647036791, + -0.009784544818103313, + -0.003642397467046976, + 0.008156022056937218, + -0.0032503455877304077, + 0.013229241594672203, + -0.00858493335545063, + -0.0034044855274260044, + 0.00908756349235773, + -0.026217220351099968, + -0.0019619353115558624, + -0.005776902660727501, + -0.005693131126463413, + -0.016727551817893982, + 0.008846301585435867, + -0.020989859476685524, + 0.023844802752137184, + -0.016995621845126152, + 0.005482025910168886, + -0.006239322945475578, + -0.02396543323993683, + -0.00907416082918644, + 0.01946186274290085, + 0.019475266337394714, + 0.03098886087536812, + -0.006859234068542719, + -0.01797407492995262, + -0.017116252332925797, + -0.0069899181835353374, + 0.007660092785954475, + 0.009818053804337978, + 0.010012404061853886, + -0.017263690009713173, + 0.02617700956761837, + 1.5026565051812213e-5, + -0.014140678569674492, + 0.003200082341209054, + -0.01443555485457182, + 0.016178008168935776, + -0.0018128216033801436, + -0.005110079422593117, + -0.02526557259261608, + -0.012344610877335072, + -0.0018614091677591205, + -0.027637990191578865, + 0.004262308590114117, + -0.011821875348687172, + 0.009811352007091045, + -0.00969742238521576, + 9.227986083715223e-6, + 0.00284321466460824, + 0.002930337330326438, + -0.017759619280695915, + 0.008558126166462898, + -0.012994680553674698, + -0.004496869631111622, + -0.010722788982093334, + -0.00573669234290719, + -0.013021486811339855, + -0.006634725723415613, + 0.0007514329627156258, + 0.02493048459291458, + 0.003672555321827531, + -0.019059758633375168, + -0.019180389121174812, + 0.006373357959091663, + -0.00010497652692720294, + -0.0030224863439798355, + -0.005562447011470795, + -0.0025969254784286022, + 0.00888651143759489, + 0.02704823575913906, + -0.009268511086702347, + -0.02718227170407772, + -0.004322624299675226, + 0.016955411061644554, + 0.0013587784487754107, + 0.03203433379530907, + -0.023563329130411148, + -0.013953029178082943, + 0.02533259056508541, + 0.005033009219914675, + -0.029648512601852417, + 0.01532018557190895, + 0.004852062091231346, + 0.007975074462592602, + -0.009570089168846607, + 0.012807031162083149, + -0.008176126517355442, + -0.002037330064922571, + 0.03444696217775345, + 0.004999500699341297, + 0.005910937674343586, + -0.006101937498897314, + 0.0059846569783985615, + 0.022625084966421127, + 0.004067958332598209, + 0.0006613783189095557, + 0.017357515171170235, + -0.004024396650493145, + -0.0038199936971068382, + 0.024421151727437973, + 0.001538050128147006, + -0.00627618283033371, + 0.01636565662920475, + -0.017598778009414673, + -0.009978896006941795, + -0.0036625026259571314, + -0.008551424369215965, + -0.0003244062536396086, + 0.018778285011649132, + 0.006882690358906984, + 0.003940625116229057, + 0.0033106612972915173, + -0.008524617180228233, + 0.005582552403211594, + 0.012760119512677193, + 0.006798918358981609, + -0.010990859009325504, + -0.01142647210508585, + 0.007820934057235718, + -0.0011485113063827157, + -0.0027008026372641325, + 0.016419271007180214, + 0.015132536180317402, + 0.018443197011947632, + -0.008846301585435867, + 0.004423150792717934, + -0.0025483379140496254, + 0.01354422327131033, + 0.012880750931799412, + 0.020413510501384735, + 0.006111989729106426, + -0.0042321509681642056, + 0.010883631184697151, + 0.0046208519488573074, + -0.0170760415494442, + -0.0036692044232040644, + -0.005220658145844936, + -0.0026471884921193123, + -0.010240264236927032, + -0.01721007749438286, + -0.00231377687305212, + 0.0004052460426464677, + -0.018161725252866745, + -0.017665795981884003, + -0.027276095002889633, + -0.012478645890951157, + 0.010669175535440445, + 0.02127133309841156, + 0.030962053686380386, + -0.0071172513999044895, + 0.004382940009236336, + -0.0029035303741693497, + -0.011848682537674904, + 0.008618442341685295, + -0.004201992880553007, + 0.006095235701650381, + 0.003913817927241325, + 0.004657711833715439, + -0.009040651842951775, + 0.01063566654920578, + -0.006815672852098942, + 0.005569148808717728, + 0.005676376633346081, + 0.005522236693650484, + 0.00026932632317766547, + 0.0004240947018843144, + -0.001896593370474875, + -0.026150202378630638, + -0.0028247847221791744, + -0.013416890054941177 + ], + "7b7305d6-06d3-45c3-a5f1-48efe2b8822b": [ + -0.023532837629318237, + 0.001219183555804193, + -0.01786060817539692, + -0.003349728649482131, + -0.06513380259275436, + 0.00047081237426027656, + 0.003555519739165902, + 0.04191916435956955, + 0.00749841146171093, + 0.058880515396595, + -0.008833460509777069, + 0.004762597847729921, + -0.008127890527248383, + 0.010293022729456425, + -0.000921737402677536, + 0.010133923031389713, + -0.03522316366434097, + 0.034725114703178406, + -0.01777759939432144, + -0.004081238526850939, + 0.06209016591310501, + -0.017597747966647148, + -0.010714980773627758, + 0.03837747871875763, + -0.020475367084145546, + -0.019064227119088173, + 0.027793927118182182, + -0.013246732763946056, + -0.01455411221832037, + -0.007823526859283447, + 0.00844608899205923, + 0.01222988124936819, + 0.052101507782936096, + -0.03245622292160988, + 0.015121335163712502, + -0.003645445453003049, + -0.0010946711990982294, + 0.027489563450217247, + -0.019244078546762466, + 0.005025457590818405, + -0.025455862283706665, + 0.02665948122739792, + 0.032815925776958466, + 0.01483080629259348, + -0.03361833840608597, + 0.02706068754196167, + 0.04471377283334732, + -0.003880635369569063, + 0.006156445015221834, + 0.0028741604182869196, + 0.002540398156270385, + 0.01867685467004776, + -0.010659642517566681, + 0.005568469874560833, + 0.014208244159817696, + 0.011960105039179325, + -0.02044769749045372, + 0.07714232802391052, + 0.02180349826812744, + -0.03442075103521347, + -0.014982988126575947, + -0.006498853676021099, + 0.0072563039138913155, + -0.004368308931589127, + 0.025926241651177406, + -0.030851397663354874, + 0.0015788859454914927, + -0.013627186417579651, + -0.03511248901486397, + 0.005437040235847235, + -0.0010142569663003087, + 0.0004368741356302053, + -0.04089539498090744, + 0.017943615093827248, + -0.008605187758803368, + -0.016587814316153526, + 0.055587854236364365, + -0.043385643512010574, + 0.002699497388675809, + 0.02120860666036606, + -0.032760586589574814, + 0.015730062499642372, + 0.021720491349697113, + 0.016546310856938362, + 0.02495781145989895, + 0.018095796927809715, + -0.030021315440535545, + -0.04709334298968315, + -0.03264990821480751, + -0.02351900190114975, + 0.025026986375451088, + 0.013136054389178753, + 0.0072217173874378204, + 0.003439654130488634, + -0.007692097220569849, + -0.008639775216579437, + 0.02916356362402439, + 0.004821395501494408, + -0.04183615371584892, + -0.016643153503537178, + -0.029025215655565262, + 0.02638278715312481, + -0.024902474135160446, + 0.010818741284310818, + 0.035831891000270844, + -0.010597385466098785, + 0.02487480454146862, + -0.022204704582691193, + -0.022993283346295357, + 0.024224571883678436, + 0.0198943093419075, + -0.014443434774875641, + -0.024445928633213043, + -0.0013073798036202788, + 0.021651316434144974, + -0.08643925189971924, + -0.013129137456417084, + -0.01928558200597763, + -0.025054655969142914, + -0.05384468287229538, + 0.04523949325084686, + 0.04568220302462578, + 0.019866639748215675, + -0.021831167861819267, + 0.005360949318856001, + -0.013385079801082611, + -0.0063086263835430145, + -0.003282284364104271, + -0.01182867493480444, + 0.011697244830429554, + 0.02039235830307007, + -0.03953959420323372, + -0.021443797275424004, + 0.0029882967937737703, + -0.007325477432459593, + 0.021388458088040352, + 0.009421436116099358, + 0.03494647145271301, + -0.03906921297311783, + 0.0433579720556736, + -0.007906535640358925, + -0.040037643164396286, + -0.004018982406705618, + -0.03126643970608711, + 0.001225236221216619, + 0.009428353048861027, + -0.02270275540649891, + 0.0676240473985672, + 0.0019749044440686703, + 0.013952302746474743, + -0.04402203857898712, + 0.014263583347201347, + 0.014222078956663609, + -0.017002856358885765, + 0.005803659558296204, + 0.012119203805923462, + 0.022273879498243332, + 0.01543953362852335, + -0.020157169550657272, + -0.007263221312314272, + -0.026977678760886192, + -0.018925879150629044, + 0.04285992309451103, + 0.008197064511477947, + 0.03879252076148987, + 0.02154063992202282, + 0.05132676288485527, + 0.03776875138282776, + -0.04797876626253128, + 0.017749929800629616, + 0.05625192075967789, + -0.025525035336613655, + 0.024100059643387794, + -0.004869816824793816, + -0.009034063667058945, + -0.017957450821995735, + -0.008674361743032932, + 0.0112130306661129, + 0.03375668451189995, + -0.0537063330411911, + 0.0018279107753187418, + -0.01697518676519394, + -0.03685566037893295, + 0.025442026555538177, + -0.0023553590290248394, + 0.015992922708392143, + 0.017832938581705093, + 0.005658395122736692, + -0.010486708022654057, + 0.047259360551834106, + -0.0021841544657945633, + 0.010645807720720768, + 0.04136577621102333, + 0.06491244584321976, + -0.012250633910298347, + -0.006460808217525482, + -0.022260043770074844, + -0.021969515830278397, + 0.018566178157925606, + 0.030104324221611023, + -0.0069381059147417545, + -0.04452008754014969, + -0.06269889324903488, + 0.009691212326288223, + -0.03292660415172577, + -0.0033289764542132616, + -0.007574502378702164, + -0.011835591867566109, + 0.01615893840789795, + -0.022509068250656128, + 0.019617615267634392, + -0.03237321600317955, + 0.029633942991495132, + 0.0032926604617387056, + -0.021858837455511093, + 0.004150412045419216, + -0.020198673009872437, + 0.020752061158418655, + 0.019327085465192795, + -0.003214840078726411, + -0.012174542993307114, + 0.005001246929168701, + 0.023366820067167282, + -0.024930143728852272, + -0.03652362897992134, + -0.026272108778357506, + -0.022273879498243332, + 0.01094325352460146, + -0.03317562863230705, + -0.026867002248764038, + 0.04125509783625603, + -0.009864146821200848, + -0.0019818218424916267, + -0.052101507782936096, + -0.017072029411792755, + -0.002234305255115032, + 0.00019152423192281276, + -0.012762517668306828, + 0.029523266479372978, + -0.012292137369513512, + 0.04797876626253128, + 0.014623286202549934, + -0.00800337828695774, + 0.008542931638658047, + 0.03436541184782982, + 0.03563820570707321, + -0.013945384882390499, + 0.055643193423748016, + 0.032954271882772446, + 0.004973577335476875, + -0.0034067966043949127, + 0.038073115050792694, + 0.006651035510003567, + -0.027752423658967018, + 0.005924713332206011, + 0.03273291885852814, + 0.013239814899861813, + -0.010694229044020176, + -0.019119566306471825, + -0.0038183792494237423, + -0.00427838321775198, + 0.004703800659626722, + 0.008356163278222084, + -0.038073115050792694, + 0.05146511271595955, + -0.02004649117588997, + 0.014913815073668957, + -0.031515464186668396, + 0.0035209329798817635, + 0.007809692528098822, + -0.05091172456741333, + 0.005623808596283197, + -0.004797184839844704, + 0.0007851196569390595, + 0.002491976600140333, + 0.0024971647653728724, + 0.013855459168553352, + 0.0032632616348564625, + -0.0007712849183008075, + 0.006585320923477411, + -0.023864870890975, + 0.03168148174881935, + 0.009040981531143188, + 0.028527166694402695, + -0.011662658303976059, + -0.03347999230027199, + -0.0027876936364918947, + 0.014761633239686489, + -0.028056787326931953, + -0.017971284687519073, + 0.015771565958857536, + -0.005499296355992556, + 0.04393903166055679, + 0.0025525034870952368, + 0.041476454585790634, + 0.0035762719344347715, + -0.020945746451616287, + -0.010797989554703236, + 0.0012286949204280972, + 0.014457269571721554, + -0.043523989617824554, + 0.018455499783158302, + 0.030104324221611023, + 0.0033549165818840265, + -0.013737864792346954, + 0.001640277449041605, + 0.02849949710071087, + 0.002569796983152628, + -0.026133762672543526, + 0.01543953362852335, + 0.0331202894449234, + -0.008529096841812134, + -0.023214638233184814, + -0.014512607827782631, + -0.0004016388556919992, + 0.01516283955425024, + 0.023864870890975, + -0.0026303238701075315, + -0.014512607827782631, + -0.014443434774875641, + -0.0074776592664420605, + -0.011814840137958527, + -0.05481310933828354, + 0.001725879730656743, + 0.00872969999909401, + -0.03605324774980545, + -0.001161250751465559, + 0.019949648529291153, + -0.010403700172901154, + -0.006460808217525482, + -0.019949648529291153, + -0.022592077031731606, + -3.4262517146999016e-5, + -0.016684656962752342, + 0.010216931812465191, + -0.012202211655676365, + -0.02836115099489689, + -0.03395037353038788, + -0.011558897793293, + 0.004032817203551531, + -0.01676766574382782, + 0.0425555594265461, + -0.009317675605416298, + 0.00138865876942873, + 0.004461693111807108, + -0.019742127507925034, + -0.017694590613245964, + 0.03632993996143341, + -0.006547275464981794, + 0.0028343857266008854, + 0.0006934647099114954, + -0.02030935138463974, + 0.017763763666152954, + 0.006637200713157654, + 0.008307741954922676, + 0.008473758585751057, + -0.03538918122649193, + -0.007505328860133886, + 0.001386929419822991, + 0.029357248917222023, + 0.016324954107403755, + -0.031736817210912704, + -0.03154313191771507, + -0.0165601447224617, + -0.007283973507583141, + 0.012299055233597755, + 0.02093191258609295, + -0.0039013875648379326, + -0.024252241477370262, + 0.024902474135160446, + -0.006685622502118349, + 0.031377118080854416, + 0.038820188492536545, + 0.006478101946413517, + -0.03624693304300308, + -0.008902634494006634, + 0.06231152266263962, + 0.020267846062779427, + -0.02107025869190693, + 0.01996348239481449, + -0.01997731812298298, + 0.02304862253367901, + 0.007546832785010338, + -0.01963144913315773, + 0.03652362897992134, + 0.02338065579533577, + 0.004762597847729921, + -0.006111482158303261, + -0.013419666327536106, + -0.03406104817986488, + -0.040452685207128525, + -0.021180937066674232, + -0.04662296548485756, + -0.00038261612644419074, + -0.02284110151231289, + 0.020696721971035004, + 0.015301186591386795, + 0.006872390862554312, + 0.029799960553646088, + -0.007187130395323038, + -0.01615893840789795, + -0.019783630967140198, + -0.002192801097407937, + 0.016034426167607307, + 0.03298194333910942, + -0.01942392997443676, + 0.002995214192196727, + 0.014249748550355434, + 0.0015010657953098416, + -0.004613874945789576, + -0.002594007644802332, + -0.006187573075294495, + -0.0088265435770154, + -0.03190283477306366, + 0.0646357536315918, + -0.014692459255456924, + 0.018289484083652496, + 0.02793227508664131, + -0.06834345310926437, + 0.018593845888972282, + 0.05893585458397865, + 0.06126008555293083, + -0.008715866133570671, + -0.00014461592945735902, + -0.024653447791934013, + 0.014844641089439392, + 0.04512881487607956, + 0.011669576168060303, + 0.0007881459896452725, + -0.014097566716372967, + -0.023325316607952118, + 0.0010306857293471694, + -0.01976979710161686, + -0.03256690129637718, + 0.004689965862780809, + -0.010403700172901154, + 0.015647053718566895, + -0.003373939311131835, + -0.021526804193854332, + -0.0060042631812393665, + 0.015052162110805511, + 0.0027323546819388866, + -0.016739996150135994, + -0.010272270068526268, + -0.012319806963205338, + -0.0308790672570467, + -0.024362919852137566, + 0.01935475505888462, + -0.00923466682434082, + 0.036440618336200714, + 0.006239452864974737, + 0.04745304584503174, + -0.043523989617824554, + -0.009296922944486141, + -0.00220663589425385, + 0.01321906317025423, + -0.006889684125781059, + 0.010597385466098785, + 0.03217953070998192, + 0.004202292300760746, + -0.020475367084145546, + -0.0038045444525778294, + 0.022273879498243332, + -0.05127142742276192, + 0.006619907449930906, + -0.07465208321809769, + -0.03707701712846756, + 0.021291615441441536, + -0.009594369679689407, + -0.025801729410886765, + -0.009552865289151669, + 0.011372129432857037, + -0.004811019636690617, + 0.0034932636190205812, + -0.019105730578303337, + 0.010735733434557915, + 0.011593485251069069, + -0.011171526275575161, + 0.016573980450630188, + -0.01786060817539692, + -0.02966161258518696, + -0.027171365916728973, + -0.029523266479372978, + 0.01267259195446968, + 0.04028666764497757, + 0.000688276719301939, + -0.03945658728480339, + 0.007636758498847485, + 0.017542408779263496, + -0.0060630603693425655, + 0.05318061634898186, + -0.010382947511970997, + 0.010950171388685703, + -0.020599879324436188, + -0.009587451815605164, + -0.04950058460235596, + -0.005326362326741219, + -0.04274924471974373, + -0.011683410033583641, + -0.03447609022259712, + 0.05461942404508591, + -0.02556653879582882, + 0.011019344441592693, + 0.03187516704201698, + 0.009144742041826248, + -0.01636645942926407, + 0.004689965862780809, + -0.003294389694929123, + 0.014747798442840576, + -0.0017163683660328388, + -0.007263221312314272, + 0.0037457470316439867, + -0.007097205147147179, + 0.03245622292160988, + -0.0031093505676835775, + 0.02201101928949356, + -0.025926241651177406, + 0.020876573398709297, + 0.005931630730628967, + -0.01182867493480444, + -0.014803136698901653, + -0.00604922603815794, + -0.020198673009872437, + 0.009193163365125656, + 0.013336657546460629, + -0.015896078199148178, + -0.021028755232691765, + 0.010127006098628044, + 0.03417172655463219, + -0.009739633649587631, + -0.02235688641667366, + 0.015384194441139698, + -0.014581781812012196, + 0.00872278306633234, + 0.005073878914117813, + -0.03217953070998192, + 0.00872278306633234, + -0.010465956293046474, + -0.010728815570473671, + 0.021969515830278397, + -0.021582143381237984, + 0.03464210778474808, + -0.019949648529291153, + -0.017528574913740158, + 0.028333481401205063, + 0.022785762324929237, + -0.0243214163929224, + 0.022177036851644516, + 0.013578765094280243, + -0.0008114920346997678, + -0.029218902811408043, + 0.0025542329531162977, + 0.005260647740215063, + -0.003877176670357585, + 0.004790267441421747, + -0.04640160873532295, + 0.026258274912834167, + -0.0007284838357008994, + -0.024238407611846924, + -0.0056341844610869884, + 0.023200804367661476, + -0.0025888197124004364, + 0.0001565051352372393, + 0.005125759169459343, + -0.05392768979072571, + -0.006025014910846949, + -0.028997546061873436, + 0.025372853502631187, + 0.003593565197661519, + 0.004838688764721155, + 0.014035310596227646, + 0.021388458088040352, + 0.03464210778474808, + -0.003908304963260889, + -0.018220309168100357, + 0.023145465180277824, + -0.002481600735336542, + 0.022273879498243332, + -0.01100550964474678, + 0.012741765938699245, + -0.009691212326288223, + -0.030519364401698112, + 0.009241584688425064, + -0.019327085465192795, + 0.010376030579209328, + -0.012299055233597755, + -0.05705433338880539, + -0.03558286651968956, + 0.00028771869256161153, + 0.023546671494841576, + -0.013689443469047546, + 0.02603692002594471, + 0.024515101686120033, + -0.03549985960125923, + -0.009324592538177967, + 0.02582939900457859, + 0.00568952364847064, + 0.009068651124835014, + -0.008971807546913624, + 0.00630516791716218, + -0.03480812534689903, + 0.02841648831963539, + 0.023463664576411247, + -0.025262175127863884, + -0.024791795760393143, + 0.024833299219608307, + -0.01792978122830391, + 0.007297808304429054, + -0.008798873983323574, + -0.015868408605456352, + 0.016311120241880417, + -0.0032010055147111416, + 0.04028666764497757, + -0.004925156012177467, + 0.03787942975759506, + 0.0018607681849971414, + 0.029772290959954262, + 0.02086273953318596, + -0.010687311179935932, + -0.028803860768675804, + 0.018483169376850128, + -0.04653995484113693, + 0.055587854236364365, + -0.02344982884824276, + 0.02338065579533577, + -0.012236799113452435, + -0.022675085812807083, + -0.009200080297887325, + -0.015757732093334198, + 0.0006048360955901444, + -0.005205308552831411, + 0.010680394247174263, + 0.0331202894449234, + -0.03347999230027199, + 0.030519364401698112, + 0.019271748140454292, + 0.012451237067580223, + 0.023698853328824043, + -0.009206998161971569, + 0.008093304000794888, + -0.028042951598763466, + -0.0003886688209604472, + 0.016269616782665253, + 0.03447609022259712, + -0.011877096258103848, + -0.0003575407317839563, + -0.041614800691604614, + 0.019603779539465904, + 0.03334164619445801, + 0.008902634494006634, + -0.06247754022479057, + -0.003360104514285922, + 0.028333481401205063, + 0.0019541524816304445, + -0.0069138952530920506, + -0.04393903166055679, + -0.025677217170596123, + 0.03406104817986488, + 0.017141202464699745, + -0.025787895545363426, + 0.014263583347201347, + 0.012354393489658833, + -0.01784677244722843, + 0.008785039186477661, + 0.03334164619445801, + 0.016407962888479233, + 0.004551618825644255, + -0.005274482071399689, + -0.005786366295069456, + 0.01595141738653183, + 0.005613432731479406, + -0.00047124471166171134, + 0.026119926944375038, + 0.015121335163712502, + -0.008785039186477661, + -0.017763763666152954, + 0.006602614186704159, + -0.02126394584774971, + 0.0051430524326860905, + -0.012091534212231636, + -0.010846410878002644, + -0.00034305750159546733, + 0.0074638244695961475, + 0.012644922360777855, + 0.01550870668143034, + -0.02051687054336071, + -0.0011500100372359157, + 0.012582666240632534, + -0.02100108563899994, + -0.010597385466098785, + -0.003911763429641724, + 0.02100108563899994, + -0.007263221312314272, + 0.01923024281859398, + -0.004264548420906067, + 0.006374341435730457, + -0.023283813148736954, + -0.008369998075067997, + 0.014139071106910706, + -0.04463076591491699, + -0.023560507223010063, + -0.0065680271945893764, + -0.014332757331430912, + -0.01104701403528452, + -0.02350516803562641, + 0.021222440525889397, + -0.014028393663465977, + 0.000977940857410431, + -0.004575829487293959, + -0.015536376275122166, + 0.010714980773627758, + 0.004797184839844704, + -0.007968791760504246, + 0.010265353135764599, + 0.016587814316153526, + 0.007913452573120594, + -0.009739633649587631, + 0.0019022722262889147, + 0.0005360948853194714, + 0.03168148174881935, + -0.016989020630717278, + 0.055449508130550385, + -0.00521568488329649, + -0.045571524649858475, + -0.04200217127799988, + 0.023408325389027596, + 0.024625780060887337, + -0.01410448458045721, + -0.00854984950274229, + -0.0046865069307386875, + 0.048836518079042435, + 0.00550275482237339, + -0.014927648939192295, + 0.017265714704990387, + -0.013848542235791683, + -0.012451237067580223, + -0.029329579323530197, + -0.0050946311093866825, + 0.042970601469278336, + -0.020461533218622208, + 0.021167103201150894, + -0.0017864066176116467, + 0.017334887757897377, + -0.002308666706085205, + 0.03417172655463219, + 0.016200441867113113, + -0.007768188137561083, + 0.003852966008707881, + 0.010708063840866089, + 0.0024539311416447163, + 0.05744170397520065, + -0.03851582482457161, + 0.04568220302462578, + 0.019382424652576447, + -0.017639251425862312, + -0.009801889769732952, + 0.0022637040819972754, + 0.008183229714632034, + 0.00674787862226367, + 0.016311120241880417, + -0.018413996323943138, + 0.009366096928715706, + -0.00910323765128851, + -0.028444157913327217, + -0.015287351794540882, + -0.0015235471073538065, + -0.002284456044435501, + 0.0301319919526577, + 0.03707701712846756, + -0.005533882882446051, + 0.0008823949610814452, + -0.025857068598270416, + 0.013440418057143688, + 0.04252789169549942, + 0.013149889186024666, + -0.034116387367248535, + 0.039899297058582306, + 0.01005783211439848, + -0.02398938313126564, + 0.003166418755427003, + -0.0162142775952816, + -0.03361833840608597, + 0.012361311353743076, + -0.024086225777864456, + -0.008293907158076763, + -0.0032131108455359936, + 0.03754739463329315, + 0.03414405882358551, + -0.01730721816420555, + -0.004458234645426273, + 0.025953911244869232, + 0.008695113472640514, + -0.01550870668143034, + -0.00011078574607381597, + 0.004624250810593367, + -0.0015252764569595456, + 0.018580012023448944, + -0.025165332481265068, + 0.0010358737781643867, + -0.0041711642406880856, + -0.004323346074670553, + -0.046982668340206146, + 0.031100422143936157, + 0.023947877809405327, + -0.009213915094733238, + -0.025815563276410103, + 0.010542047210037708, + -0.001143092755228281, + 0.03129410743713379, + 0.010189262218773365, + -0.020599879324436188, + -0.014609451405704021, + -0.001616066787391901, + 0.013170641846954823, + 0.004938990343362093, + 0.0017155037494376302, + 0.008404584601521492, + -0.026687150821089745, + 0.013744781725108624, + -0.030242670327425003, + 0.008847295306622982, + -0.00253002205863595, + 0.03287126496434212, + 0.023366820067167282, + 0.002606112975627184, + -0.013952302746474743, + -0.014125236310064793, + 0.0009813995566219091, + 0.016269616782665253, + 0.019991151988506317, + -0.003491534385830164, + -0.0038979288656264544, + -0.013876211829483509, + 0.03107275255024433, + 0.013398914597928524, + 0.052931591868400574, + -0.0330096110701561, + 0.0012096721911802888, + -0.0294402576982975, + 0.0006169414846226573, + 0.0007215664372779429, + -0.021831167861819267, + -0.015245847404003143, + 0.0038252966478466988, + -0.01384162437170744, + -0.01711353287100792, + -0.011780253611505032, + -0.016587814316153526, + 0.022052524611353874, + 0.02324230782687664, + 0.007954956963658333, + -0.018026623874902725, + -0.009283089078962803, + 0.009117072448134422, + -0.024183068424463272, + 0.01812346652150154, + 0.007017655298113823, + 0.011226865462958813, + 0.024044722318649292, + 0.004575829487293959, + 0.016103599220514297, + 0.015287351794540882, + 0.0016869696555659175, + -0.03115576133131981, + -0.002763482742011547, + -0.019396260380744934, + -0.007934204302728176, + 0.015992922708392143, + -0.004236879292875528, + -0.002632053103297949, + 0.004734928719699383, + 0.011427468620240688, + 0.012008526362478733, + -0.0008655338897369802, + -0.024155398830771446, + -0.027697084471583366, + -0.023366820067167282, + 0.003935974091291428, + -0.01907806098461151, + 0.01704435981810093, + 0.010548964142799377, + -0.0013679066905751824, + 0.004399436991661787, + -0.001129257958382368, + -0.06142609938979149, + 0.024100059643387794, + -0.008584436029195786, + 0.006574944593012333, + -0.01567472331225872, + 0.0037007841747254133, + 0.019755961373448372, + 0.01104701403528452, + -0.011185361072421074, + -0.03140478581190109, + -0.007076452951878309, + -0.035748884081840515, + -0.031045082956552505, + -0.013481922447681427, + 0.005907420068979263, + -0.030989743769168854, + 0.0009571888367645442, + -0.028997546061873436, + -0.03217953070998192, + 0.013807037845253944, + -0.026147596538066864, + -0.05425972118973732, + 0.016587814316153526, + 0.007948039099574089, + -0.019589945673942566, + 0.06264355778694153, + 0.012188376858830452, + -0.0076021719723939896, + -0.00724246958270669, + -0.016933681443333626, + 0.033230967819690704, + 0.018289484083652496, + -0.0010038809850811958, + 0.0005810576840303838, + -0.0038010859861969948, + -0.022329218685626984, + -0.004634627141058445, + 0.006197948940098286, + 0.022066358476877213, + -0.0052917758002877235, + -0.005827870685607195, + -0.012451237067580223, + 0.00035408203257247806, + 0.017404062673449516, + 0.006554192863404751, + 0.01243740227073431, + 0.022730425000190735, + 0.02445976249873638, + 0.0014102754648774862, + -0.019520772621035576, + 0.030851397663354874, + -0.014733963645994663, + 0.003166418755427003, + -0.01199469156563282, + -0.03594256937503815, + -0.023629680275917053, + -0.021167103201150894, + 0.0002849085140042007, + 0.02011566422879696, + -0.02652113512158394, + 0.029799960553646088, + -0.008134808391332626, + -0.018151136115193367, + 0.035887230187654495, + 0.009186245501041412, + 0.008612105622887611, + 0.03572121635079384, + 0.025538869202136993, + -0.00011964860459556803, + -0.020696721971035004, + 0.0037388296332210302, + 0.027074523270130157, + -0.0034880756866186857, + 0.015923747792840004, + 0.011738749220967293, + -0.007809692528098822, + 0.0101200882345438, + -0.0062740398570895195, + -0.004337180871516466, + -0.004167705774307251, + -0.034254737198352814, + 0.03273291885852814, + -0.03464210778474808, + 0.017666921019554138, + 0.0014759904006496072, + -0.0009770762408152223, + 0.00021130354434717447, + -0.018081963062286377, + 0.009027146734297276, + -0.0013497486943379045, + -0.008957972750067711, + 0.00040812385850585997, + -0.03846048563718796, + -0.010230766609311104, + 0.001492419047281146, + -0.016186608001589775, + 0.03190283477306366, + 0.010631972923874855, + 0.0016653529601171613, + -0.008584436029195786, + -0.017556244507431984, + 0.01128220371901989, + -0.03134944662451744, + -0.021485300734639168, + 0.023740358650684357, + -0.02603692002594471, + 0.018925879150629044, + -0.030021315440535545, + 0.00943527091294527, + -0.013910798355937004, + 0.007671345490962267, + -0.03264990821480751, + -0.019866639748215675, + -0.01472012884914875, + 0.005658395122736692, + -0.003411984769627452, + -0.02855483628809452, + -0.012935451231896877, + -0.033369313925504684, + 0.05672230198979378, + 0.0013782827882096171, + 0.015467203222215176, + -0.005921254865825176, + -0.01593758352100849, + 0.019589945673942566, + 0.009511361829936504, + -0.004994329530745745, + -0.009525195695459843, + 0.01356493029743433, + -0.02282726764678955, + 0.04233420640230179, + 0.008169394917786121, + 0.0027721296064555645, + -0.019382424652576447, + 0.0022637040819972754, + 0.018593845888972282, + -0.011773335747420788, + -0.04006531462073326, + 0.008286990225315094, + 0.00620140740647912, + -0.016117434948682785, + 0.0019904684741050005, + -0.00258190231397748, + 0.0031041624024510384, + 0.012707178480923176, + 0.0010670018382370472, + -0.03389503434300423, + 0.008625940419733524, + 0.010306856594979763, + -0.011199195869266987, + -0.000740156858228147, + -0.004762597847729921, + -2.0117069652769715e-5, + -0.04164246842265129, + -0.020558375865221024, + -0.00511192437261343, + 0.026202935725450516, + -0.010659642517566681, + 0.00024232354189734906, + -0.003856424707919359, + 0.0007392921834252775, + -0.007145626470446587, + 0.005035833455622196, + 0.019036557525396347, + 0.007996461354196072, + 0.027102191001176834, + 0.03345232084393501, + 0.004703800659626722, + 0.016048260033130646, + -0.002310396172106266, + 0.012188376858830452, + 0.007975708693265915, + -0.010244600474834442, + -0.005603056401014328, + -0.0064469738863408566, + 0.02699151448905468, + 0.00258190231397748, + 0.022301549091935158, + 0.05625192075967789, + -0.01826181448996067, + 0.021928010508418083, + -0.022246209904551506, + -0.0019109189743176103, + 0.02447359822690487, + 0.005232978146523237, + 0.003036718349903822, + 0.023214638233184814, + 0.002747918711975217, + -0.017058193683624268, + 0.01725188083946705, + 0.008833460509777069, + 0.03455910086631775, + 0.008985642343759537, + 0.01581307128071785, + 0.02480562962591648, + -0.0038252966478466988, + -0.009656625799834728, + -0.00430951127782464, + -0.02351900190114975, + 0.014816971495747566, + -0.01970062404870987, + -0.021374622359871864, + 0.020433863624930382, + 1.5928828361211345e-5, + -0.005578845739364624, + 0.03743671998381615, + -0.020696721971035004, + 0.0019921979401260614, + -0.004472068976610899, + -0.004354474134743214, + 0.02481946535408497, + 0.010237683542072773, + -0.03962260112166405, + 0.056943655014038086, + 0.011226865462958813, + -0.011060848832130432, + 0.006488477811217308, + -0.01770842634141445, + -0.020959582179784775, + 0.02079356461763382, + 0.024999316781759262, + 0.00724246958270669, + 0.008397667668759823, + -0.00967737752944231, + -0.004271465819329023, + 0.019465433433651924, + 0.026050753891468048, + 0.001258958363905549, + 0.017210375517606735, + 0.025040820240974426, + -0.0021443795412778854, + -0.01956227608025074, + -0.012458154000341892, + 0.015992922708392143, + -0.001330725965090096, + 0.018649185076355934, + -0.007519163656979799, + -0.008321576751768589, + -0.024238407611846924, + -0.0032909309957176447, + -0.0006238588248379529, + -0.04288759455084801, + -0.004956284072250128, + 0.021761994808912277, + 0.0038598834071308374, + 0.0074638244695961475, + 0.018898209556937218, + -0.012762517668306828, + 0.020738227292895317, + -0.008058717474341393, + -0.01662931777536869, + -0.014360425993800163, + 0.012859360314905643, + -0.012914699502289295, + -0.005903961602598429, + 0.009760386310517788, + -0.007076452951878309, + -0.0046519204042851925, + 0.011427468620240688, + 0.011441303417086601, + -0.014969153329730034, + 0.011150774545967579, + -0.020738227292895317, + 0.005066961515694857, + -0.008902634494006634, + -0.011268368922173977, + 0.005682606250047684, + -0.0032476976048201323, + -0.0023916750214993954, + -0.014332757331430912, + -0.03292660415172577, + -0.03987162560224533, + -0.012824773788452148, + 0.013371245004236698, + 0.014145988039672375, + 0.00954594835639, + -0.02351900190114975, + -0.0007609089370816946, + 0.012693343684077263, + 0.008273155428469181, + -0.0027946108020842075, + 0.005115383304655552, + -0.014429599978029728, + -0.007283973507583141, + -0.000159855728270486, + -0.01614510267972946, + 0.008916469290852547, + 0.0005581440054811537, + 0.014028393663465977, + 0.029523266479372978, + -0.017611581832170486, + -0.008397667668759823, + -0.014415765181183815, + -0.015992922708392143, + 0.015840740874409676, + 0.025054655969142914, + 0.016573980450630188, + -0.0051430524326860905, + -0.018040457740426064, + 0.00020643977040890604, + -0.012050029821693897, + 0.024791795760393143, + -0.01455411221832037, + -0.013793203048408031, + -0.001536517171189189, + 0.009158575907349586, + -0.02836115099489689, + -0.02072439156472683, + -0.022951779887080193, + -0.0035053689498454332, + -0.016947517171502113, + 0.0049216970801353455, + -0.011980856768786907, + 0.002827468328177929, + 0.0022256586235016584, + 0.018718359991908073, + -0.005589221604168415, + 0.01963144913315773, + 0.003389503341168165, + -0.01281785685569048, + 0.0057794488966465, + -0.010548964142799377, + -0.00854984950274229, + 0.0034223608672618866, + -0.008715866133570671, + 0.0031473960261791945, + -0.002414156449958682, + -0.0032373215071856976, + 0.0004202292475383729, + -0.012471988797187805, + -0.013578765094280243, + 0.01373094692826271, + -0.016200441867113113, + -0.02304862253367901, + 0.004216127097606659, + -0.021153267472982407, + -0.01400764100253582, + 0.006422762759029865, + -0.010825658217072487, + 0.0054197465069592, + 0.00410544965416193, + -0.013032294809818268, + -0.001843474805355072, + 0.016103599220514297, + -0.0050600441172719, + 0.01812346652150154, + 0.007802775129675865, + 0.022301549091935158, + -0.03032567910850048, + 0.017473235726356506, + -0.004447858314961195, + -0.0044409409165382385, + -0.0005836517084389925, + 0.012534244917333126, + 0.006685622502118349, + 0.010258435271680355, + 0.009573617950081825, + -0.0038183792494237423, + 0.0012693344615399837, + -0.02011566422879696, + 0.02515149861574173, + 0.030242670327425003, + -0.021097928285598755, + 0.023961713537573814, + -0.007574502378702164, + -0.012285220436751842, + 0.004769515246152878, + 0.019410094246268272, + -0.02010183036327362, + 0.005520048085600138, + -0.009518278762698174, + 0.018552342429757118, + 0.02433525025844574, + -0.0008123567095026374, + -0.010133923031389713, + -0.01410448458045721, + -0.004375226330012083, + 0.010548964142799377, + 0.003932515624910593, + -0.015218177810311317, + -0.03480812534689903, + -0.0076851798221468925, + 0.016587814316153526, + -0.0060630603693425655, + -0.009158575907349586, + -0.011842509731650352, + 0.025137662887573242, + 0.010542047210037708, + -0.018759863451123238, + 0.028444157913327217, + -0.013440418057143688, + 0.03251156210899353, + 0.0010981298983097076, + -0.009317675605416298, + -0.028139794245362282, + 0.002960627432912588, + 0.018690690398216248, + 0.027835430577397346, + 0.019479267299175262, + -0.026867002248764038, + -0.018358657136559486, + -0.0235743410885334, + -0.006595696788281202, + 0.009864146821200848, + -0.026867002248764038, + 0.0002849085140042007, + 0.04867050051689148, + 0.016850674524903297, + 0.015757732093334198, + 0.0019005429930984974, + -0.0072217173874378204, + -0.00017293384007643908, + -0.010818741284310818, + 0.014069897122681141, + 0.005098089575767517, + 0.008798873983323574, + 0.0005183691973797977, + 0.0051430524326860905, + -0.010797989554703236, + -0.002101146150380373, + -0.007097205147147179, + -0.006229077000170946, + -0.014090649783611298, + -0.008231651037931442, + 0.015038327313959599, + -0.021319285035133362, + -0.0006472049281001091, + 0.02392021007835865, + -0.002037160564213991, + 0.0001878493931144476, + 0.0012433943338692188, + -0.019479267299175262, + -0.005648019257932901, + -0.016394129022955894, + -0.01928558200597763, + -0.014872310683131218, + 0.0011690327664837241, + -0.014069897122681141, + -0.023532837629318237, + -0.0012286949204280972, + 0.01165574137121439, + 0.025995414704084396, + 0.0008413231698796153, + -0.004067404195666313, + 0.010265353135764599, + 0.00025140258367173374, + -0.016587814316153526, + 0.012285220436751842, + -0.011918600648641586, + -0.006242911797016859, + -0.005824411753565073, + -0.0019437763839960098, + -0.01696135103702545, + 0.01305304653942585, + -0.005755238234996796, + -0.011067765764892101, + 0.016933681443333626, + -0.0024158856831490993, + -0.00025659060338512063, + -0.019645284861326218, + 0.007332394830882549, + 0.0008599135326221585, + 0.008120973594486713, + -0.008058717474341393, + 0.0039636436849832535, + 0.0008906092843972147, + -0.0010107982670888305, + -0.014471104368567467, + 0.013986889272928238, + -0.01914723590016365, + 0.014235913753509521, + -0.012022361159324646, + -0.000111974666651804, + -0.017417896538972855, + -0.0031837120186537504, + 0.020364688709378242, + 0.0032995776273310184, + -0.0076851798221468925, + 0.040314339101314545, + -0.006481560412794352, + -0.00475222198292613, + -0.008584436029195786, + -0.028125960379838943, + -0.022384556010365486, + 0.01090174913406372, + -0.00370770157314837, + -0.00016385481285396963, + 0.03303728252649307, + 0.0009061733144335449, + -0.0017647899221628904, + -0.008985642343759537, + 0.016601648181676865, + 0.003932515624910593, + 0.019202573224902153, + 0.019105730578303337, + 0.008259320631623268, + 0.007297808304429054, + -0.00677900668233633, + 0.014083731919527054, + -0.008688196539878845, + 0.009753468446433544, + 0.00960820447653532, + 0.004385602194815874, + -0.002986567560583353, + -0.0039636436849832535, + 0.01560555025935173, + -0.010210013948380947, + 0.014159822836518288, + -0.002573255682364106, + -0.028471827507019043, + 0.04579288139939308, + -0.0033652926795184612, + -0.018234144896268845, + 0.003437924897298217, + -0.009739633649587631, + -0.005696440581232309, + 0.028305811807513237, + 0.03287126496434212, + 0.00028555700555443764, + 0.013073798269033432, + -0.0012995977886021137, + -0.011960105039179325, + -0.031045082956552505, + -0.00013380756718106568, + -0.0017725719371810555, + 0.0005404182593338192, + -0.004475527908653021, + 0.0020786647219210863, + -0.005229519214481115, + 0.01983897015452385, + -0.0009269253932870924, + -0.013585682958364487, + 0.03851582482457161, + -0.028471827507019043, + 0.009670460596680641, + -0.04360699653625488, + -0.007996461354196072, + -0.0023501708637923002, + 0.006823969539254904, + -0.033092621713876724, + 0.01983897015452385, + 0.0005987834301777184, + 0.00502891605719924, + 0.009601286612451077, + 0.0022775386460125446, + 0.027793927118182182, + 0.009559783153235912, + -0.001512306509539485, + 0.007712849415838718, + 0.007124874275177717, + 0.024044722318649292, + -0.009186245501041412, + 0.02365734986960888, + -0.02120860666036606, + 0.008293907158076763, + 0.013405831530690193, + 0.01669849269092083, + 0.0006325055146589875, + 0.00661299005150795, + 0.0015218178741633892, + 0.022882606834173203, + -0.010611220262944698, + -0.021706655621528625, + -0.013883128762245178, + -0.02268891967833042, + -0.013703277334570885, + -0.004499738570302725, + -0.002336336299777031, + -0.003814920550212264, + 0.013454252853989601, + 0.003593565197661519, + 0.00622215960174799, + 0.002242951886728406, + -0.01895354874432087, + 0.018995054066181183, + 0.009587451815605164, + -0.01744556613266468, + 0.0040120650082826614, + 0.02284110151231289, + -0.013025376945734024, + -0.0076021719723939896, + -0.009753468446433544, + 0.024362919852137566, + -0.00020687210781034082, + 0.013087633065879345, + -0.024722622707486153, + 0.0012044842587783933, + 0.01739022694528103, + -0.034393083304166794, + 0.01682300493121147, + 0.015965253114700317, + -0.012942369095981121, + -0.03204118087887764, + -0.029329579323530197, + -0.014360425993800163, + -0.007066076621413231, + -0.005392077378928661, + -0.0013246731832623482, + -0.0455438569188118, + 0.015467203222215176, + -0.014429599978029728, + 0.017611581832170486, + 5.5987333325902e-5, + 0.03464210778474808, + -0.010244600474834442, + 0.023186970502138138, + -0.0031750653870403767, + -0.0005775990430265665, + 0.0195484422147274, + -0.005077337846159935, + 0.022937944158911705, + -0.018081963062286377, + 0.023892540484666824, + 0.01593758352100849, + -0.014581781812012196, + -0.0064400564879179, + 0.0007475065649487078, + 0.01560555025935173, + 0.005731027573347092, + 0.012679509818553925, + -0.018483169376850128, + 0.0029900262597948313, + 0.005461250897496939, + -0.03375668451189995, + -0.00848759338259697, + -0.013627186417579651, + -0.002272350713610649, + 0.003839131211861968, + -0.02685316652059555, + 0.004900944884866476, + 0.0044305650517344475, + 0.024362919852137566, + 0.009684295393526554, + 0.02487480454146862, + -0.005357490386813879, + 0.009110154584050179, + 0.00014861502859275788, + 0.014803136698901653, + 0.014083731919527054, + 0.018012790009379387, + -0.0055719283409416676, + -0.00379070988856256, + -0.004831771366298199, + 0.0007064347737468779, + 0.01682300493121147, + 0.007802775129675865, + -0.0001548838772578165, + 0.014374260790646076, + -0.03176448866724968, + -0.0012831691419705749, + -0.004067404195666313, + 0.0209872517734766, + 0.013281319290399551, + 0.008508345112204552, + -0.006917353719472885, + -0.030021315440535545, + -0.00014937161176931113, + 0.0039152223616838455, + 0.012679509818553925, + 0.011427468620240688, + 0.013094550929963589, + 0.02030935138463974, + -0.014526442624628544, + -0.008743534795939922, + 0.0012546350480988622, + 0.01560555025935173, + 0.005004705395549536, + 0.0024487432092428207, + 0.020461533218622208, + 0.00739465095102787, + 0.0011085058795288205, + -0.009296922944486141, + 0.007180212996900082, + -0.0007509652059525251, + 0.006709833163768053, + -0.0038737179711461067, + -0.022121697664260864, + 0.00038910115836188197, + 0.01730721816420555, + 0.012022361159324646, + -0.022854937240481377, + 0.013302071020007133, + -0.016463302075862885, + -0.008252402767539024, + -0.0010099336504936218, + -0.013475005514919758, + 0.005177639424800873, + 0.005907420068979263, + 0.0007159461383707821, + -0.017542408779263496, + -0.0128801129758358, + 0.02296561375260353, + -0.02086273953318596, + -0.004447858314961195, + -0.019866639748215675, + -0.013620269484817982, + -0.017874442040920258, + -0.005191473755985498, + 0.06413770467042923, + 0.018289484083652496, + 0.011745667085051537, + 0.011973938904702663, + 0.0004785944183822721, + -0.014249748550355434, + -0.0064400564879179, + 0.016255781054496765, + 0.010645807720720768, + 0.0008357028127647936, + -0.017002856358885765, + -0.0027288959827274084, + 0.015854574739933014, + -0.0018590388353914022, + -0.031128091737627983, + 0.002829197561368346, + 0.005066961515694857, + -0.004271465819329023, + 0.017431732267141342, + 0.01745939999818802, + 0.003787251189351082, + 0.0008469434687867761, + 0.009891815483570099, + 0.004434023518115282, + -0.007643675897270441, + 0.002673557261005044, + -0.009767303243279457, + 0.003138749161735177, + 0.008017213083803654, + 0.022038688883185387, + 0.00397056108340621, + -0.006623366381973028, + -0.011870179325342178, + -0.029080554842948914, + -0.0008897446095943451, + 0.0004491956497076899, + -0.0030419062823057175, + -0.0013523426605388522, + -0.005623808596283197, + -0.0007855519652366638, + -0.020461533218622208, + -0.005845163948833942, + 0.009705047123134136, + 0.019133400171995163, + -0.028886869549751282, + 0.0017449024599045515, + 0.0019385883351787925, + 0.003814920550212264, + -0.016449466347694397, + -0.003060929011553526, + 0.011247617192566395, + -0.008238567970693111, + 0.016241947188973427, + 0.028859199956059456, + 0.01506599597632885, + 0.0017405791440978646, + 0.01588224433362484, + 0.023325316607952118, + 0.015149004757404327, + 0.0008140860591083765, + -0.029799960553646088, + -0.0062878746539354324, + 0.005015081260353327, + 0.0021737783681601286, + -0.02221854031085968, + -0.0019247536547482014, + -0.020765895023941994, + -0.011766418814659119, + 0.010860245674848557, + -0.017293384298682213, + -0.010583551600575447, + -0.009290006011724472, + 0.010210013948380947, + -0.028181299567222595, + -0.01455411221832037, + 0.01826181448996067, + -0.0007764729671180248, + 0.03782409057021141, + 0.020973416045308113, + -0.0026545345317572355, + 0.002791152335703373, + 0.006350130774080753, + -0.011296038515865803, + -0.002427991246804595, + 0.0009182787034660578, + -0.005921254865825176, + 0.02018483728170395, + -0.026355117559432983, + 0.0176530871540308, + -0.01478930190205574, + -0.012188376858830452, + -0.004029358737170696, + 0.012029278092086315, + 0.013647939078509808, + -0.012658757157623768, + 0.003297848394140601, + 0.006827428005635738, + 0.007788940332829952, + 0.0020267846994102, + -0.01976979710161686, + 0.01745939999818802, + -0.0036177760921418667, + -0.01614510267972946, + 0.009040981531143188, + -0.011219947598874569, + 0.001059219823218882, + 0.01881520263850689, + -0.0067755477502942085, + 0.007609088905155659, + -0.0088265435770154, + 0.007166378665715456, + -0.02282726764678955, + 0.006737502757459879, + 0.002801528200507164, + -0.010887914337217808, + -0.0010825658682733774, + 0.00889571662992239, + -0.006059601902961731, + -0.016200441867113113, + -0.01593758352100849, + -0.0016999397194013, + 0.0012892218073830009, + 0.0065092300064861774, + -0.030353348702192307, + 0.004527408163994551, + 0.0011681681498885155, + -0.014118319377303123, + -0.01434659119695425, + -0.006180655676871538, + -0.0027548361103981733, + 0.01772226020693779, + 0.002504082163795829, + 0.018912045285105705, + 0.008390749804675579, + 0.010424451902508736, + 0.002165131736546755, + -0.00988489855080843, + 0.013274401426315308, + -0.012873195111751556, + -0.017694590613245964, + 0.010535129345953465, + 0.010272270068526268, + 0.013177558779716492, + 0.01777759939432144, + 0.015315021388232708, + 0.009082484990358353, + -0.008536014705896378, + -0.028319645673036575, + 0.006294792052358389, + 0.01222988124936819, + 0.016380293294787407, + -0.01676766574382782, + 0.009891815483570099, + -0.0016273075016215444, + -0.00821781624108553, + 0.021485300734639168, + -0.03688333183526993, + 0.014235913753509521, + -0.01949310302734375, + -0.0011845967965200543, + 0.0076990146189928055, + -0.0062740398570895195, + -0.018759863451123238, + 0.0013480193447321653, + -0.013205228373408318, + 0.009573617950081825, + 0.0016644882271066308, + 0.010625055059790611, + -6.344510620692745e-5, + 0.005838246550410986, + 0.013578765094280243, + 0.02261974662542343, + 0.033424653112888336, + -0.03442075103521347, + 0.009801889769732952, + -0.02445976249873638, + 0.014844641089439392, + 0.0017094510840252042, + -0.013454252853989601, + 0.010472873225808144, + -0.02181733399629593, + -0.0044167302548885345, + 0.009967906400561333, + -0.0014569676714017987, + -0.009456022642552853, + -0.012368228286504745, + 0.007360064424574375, + -0.006595696788281202, + 0.006121858023107052, + -0.015854574739933014, + -0.003839131211861968, + 0.02732354775071144, + 0.008923386223614216, + -0.022135531529784203, + 0.009698130190372467, + 0.008964890614151955, + 0.029910637065768242, + 0.007353147026151419, + 0.03538918122649193, + -0.002747918711975217, + 0.0022792681120336056, + 0.007526081055402756, + 0.028720851987600327, + -0.004520490765571594, + 0.005347114522010088, + -0.0007548562134616077, + -0.007263221312314272, + -0.018497003242373466, + -0.0108394930139184, + -0.0012321536196395755, + -0.032898932695388794, + -0.005928172264248133, + 0.015550211071968079, + 0.004371767397969961, + -0.006599155254662037, + 0.0016385482158511877, + 0.00855676643550396, + 0.021042590960860252, + -0.001588397310115397, + -0.002611301140859723, + -0.0031301025301218033, + -0.00811405573040247, + 0.0031992760486900806, + -0.016878342255949974, + 0.0014612909872084856, + -0.008259320631623268, + -0.010099336504936218, + 0.013765533454716206, + 0.0032096521463245153, + 0.008951055817306042, + 0.0015486226184293628, + -0.016186608001589775, + -0.017597747966647148, + 0.006069977767765522, + 0.014816971495747566, + 0.01907806098461151, + 0.007200965192168951, + -0.0028205509297549725, + 0.026950011029839516, + 0.0022792681120336056, + -0.02407239004969597, + 0.006661411840468645, + -0.008625940419733524, + -0.004472068976610899, + -0.0011785441311076283, + -0.008909551426768303, + 0.01826181448996067, + 0.0005546853062696755, + -0.0037215363699942827, + -2.4751156161073595e-5, + -0.01751473918557167, + 0.005239895544946194, + 0.014132153242826462, + -0.010203097015619278, + 0.00807255133986473, + -0.004537784028798342, + -0.019299417734146118, + 0.01039678230881691, + 0.015176674351096153, + -0.009871063753962517, + 0.021568309515714645, + 0.016643153503537178, + -0.02916356362402439, + -0.0003130102704744786, + -0.01260341890156269, + 0.005824411753565073, + -0.03787942975759506, + 0.0055615524761378765, + -0.010659642517566681, + -0.0014595616376027465, + 0.02037852443754673, + -0.011690327897667885, + 0.0029173940420150757, + 0.03566587716341019, + 0.021180937066674232, + 0.0053886184468865395, + -0.006875849794596434, + -0.016380293294787407, + 0.0003813191142398864, + 0.02223237417638302, + -0.006104564759880304, + -0.0006904383772052824, + 0.0034880756866186857, + -0.01607592962682247, + -0.013184476643800735, + -0.033701349049806595, + 0.02195568010210991, + 0.01916106976568699, + -0.004122742917388678, + 0.025801729410886765, + 0.004112366586923599, + 0.01182867493480444, + 0.008141725324094296, + -0.007304725702852011, + 0.017556244507431984, + 0.008259320631623268, + -0.0014898250810801983, + 0.0014189222129061818, + 0.039235230535268784, + -0.018081963062286377, + -0.015979086980223656, + 0.003856424707919359, + -0.015633219853043556, + -0.016878342255949974, + -0.010645807720720768, + 0.01723804511129856, + 0.03563820570707321, + 0.00950444396585226, + -0.01294928602874279, + 0.02883153036236763, + -0.005343655589967966, + -0.002201447729021311, + 1.5996380170690827e-5, + -0.017196541652083397, + -0.00258190231397748, + 0.0010047456016764045, + -0.012077699415385723, + 0.027558736503124237, + -0.006855097599327564, + 0.003462135558947921, + -0.00664411811158061, + 0.0135995177552104, + 0.02296561375260353, + -0.018151136115193367, + 0.018344821408391, + -0.015245847404003143, + 0.01887054182589054, + -0.010258435271680355, + 0.00724246958270669, + -0.024902474135160446, + 0.02400321699678898, + 0.005461250897496939, + -0.030215000733733177, + 0.005229519214481115, + 0.011662658303976059, + 0.0084530059248209, + -0.0034171727020293474, + 0.0006839533452875912, + -0.0001153252596850507, + -0.007982626557350159, + -0.004600040148943663, + -0.019313251599669456, + 0.006512688472867012, + -0.0017898653168231249, + -0.011289121583104134, + 0.0055131311528384686, + 0.00666487030684948, + -0.02671482041478157, + 0.012852443382143974, + 0.010299939662218094, + -0.016726160421967506, + 0.014637120068073273, + 0.01506599597632885, + 0.018566178157925606, + -0.013378161936998367, + -0.014222078956663609, + -0.0074638244695961475, + 0.0198943093419075, + -0.01373094692826271, + -0.01294928602874279, + -0.010618138127028942, + 0.0031093505676835775, + -0.00029290668317116797, + -0.008293907158076763, + 0.007048783358186483, + -0.023131631314754486, + -0.003891011467203498, + 0.023961713537573814, + -0.03264990821480751, + 0.006969233974814415, + -0.0016696762759238482, + -0.007014196831732988, + -0.0008694248972460628, + 0.001490689697675407, + -0.012693343684077263, + 0.005347114522010088, + -0.019133400171995163, + -0.0007449125405400991, + -0.03292660415172577, + -0.000921737402677536, + 0.02324230782687664, + 0.006135692819952965, + -0.004831771366298199, + -0.011095435358583927, + -0.013461170718073845, + 0.021443797275424004, + 0.025317514315247536, + 0.02202485501766205, + 0.016739996150135994, + -0.00944218784570694, + 0.0021616730373352766, + -0.006059601902961731, + 0.013468087650835514, + 0.020004987716674805, + -0.02112559787929058, + 0.017196541652083397, + -0.021914176642894745, + 0.012285220436751842, + -0.017404062673449516, + 0.007124874275177717, + 0.01005091518163681, + 0.006391634698957205, + 0.02044769749045372, + 0.005744862370193005, + 0.010293022729456425, + -0.013350492343306541, + -0.003309953724965453, + 0.0008516991510987282, + 0.017556244507431984, + 0.005056585650891066, + 0.0029087471775710583, + 0.008902634494006634, + -0.01805429346859455, + -0.0023052082397043705, + 0.01032760925590992, + -0.01806812733411789, + 0.0010626785224303603, + 0.022370722144842148, + 0.010362195782363415, + -0.010583551600575447, + 0.009732716716825962, + -0.009110154584050179, + -0.0013998994836583734, + -0.004963201470673084, + 0.020945746451616287, + -0.02910822443664074, + 0.017971284687519073, + 0.007629841100424528, + -0.011316790245473385, + 0.00563764339312911, + 0.002166860969737172, + 0.0048490650951862335, + 0.003181982785463333, + 0.0007012467249296606, + -0.026673315092921257, + -0.004133118782192469, + 0.007795857731252909, + -0.010023245587944984, + -0.0015313292387872934, + 0.006436597555875778, + -0.025400523096323013, + -0.01770842634141445, + -0.00821781624108553, + 0.0019143776735290885, + -0.007775105535984039, + -0.0060803540982306, + 0.007996461354196072, + 0.025718720629811287, + -0.002455660607665777, + -0.018593845888972282, + -0.01087408047169447, + 0.015079830773174763, + -0.002735813381150365, + 0.015204343944787979, + -0.009047898463904858, + -0.00047556805657222867, + -0.01866302080452442, + -0.0286931823939085, + 0.022675085812807083, + -0.04532250016927719, + 0.010777236893773079, + 0.0009053086978383362, + 0.0023536295630037785, + -0.008840378373861313, + 0.0029623566661030054, + -0.017224211245775223, + 0.014858475886285305, + -0.002310396172106266, + -0.02188650704920292, + 0.010424451902508736, + -0.030989743769168854, + 0.03508481755852699, + 0.0003813191142398864, + -0.004423647653311491, + 0.00923466682434082, + 0.022509068250656128, + -0.012430484406650066, + 0.010251518338918686, + 0.00589358527213335, + -0.01315680705010891, + -0.018317151814699173, + 0.02010183036327362, + 0.0069969031028449535, + -0.009255419485270977, + 0.01914723590016365, + -0.013350492343306541, + 0.0041849990375339985, + 0.0084530059248209, + 0.011842509731650352, + 0.015591715462505817, + 0.022273879498243332, + 0.004966659937053919, + 0.009573617950081825, + -0.00497703580185771, + 0.011475889943540096, + 0.0037215363699942827, + 0.028305811807513237, + 0.02275809459388256, + -0.0026873918250203133, + 0.005222602281719446, + 0.008349246345460415, + 0.0006497988943010569, + -0.009843394160270691, + -0.0275449026376009, + 0.011081600561738014, + -0.0009165493538603187, + 0.0014535089721903205, + 0.01260341890156269, + 0.024293746799230576, + 0.020129499956965446, + 0.0013774180551990867, + -0.016532475128769875, + -0.009013311937451363, + 0.004402895458042622, + -0.005731027573347092, + 0.027627911418676376, + -0.0033670219127088785, + 0.002661451930180192, + 0.018427830189466476, + 0.018427830189466476, + -0.001141363405622542, + -0.025953911244869232, + -0.007024572696536779, + -0.019576111808419228, + 0.002711602719500661, + 0.021236276254057884, + 0.0038633421063423157, + -0.004741846118122339, + -0.012084617279469967, + -0.020226342603564262, + -0.005319444928318262, + 0.029882967472076416, + 0.01567472331225872, + 0.013703277334570885, + 0.011427468620240688, + 0.01277635246515274, + 0.02303478866815567, + -0.007041865959763527, + 0.03558286651968956, + -0.014609451405704021, + 0.020765895023941994, + -0.003427548799663782, + 0.01840016059577465, + 0.020973416045308113, + -0.0032131108455359936, + -0.022675085812807083, + 0.01826181448996067, + 0.029633942991495132, + -0.007954956963658333, + 0.0034448420628905296, + -0.020835069939494133, + 0.0026943092234432697, + 0.030906736850738525, + 0.014761633239686489, + 0.023546671494841576, + -0.011593485251069069, + 0.021291615441441536, + 0.002505811396986246, + -0.013848542235791683, + -0.002284456044435501, + 0.005468168295919895, + -0.0022360344883054495, + 0.0007842549821361899, + -0.013454252853989601, + -0.012465071864426136, + 0.007719766814261675, + -0.009566700085997581, + -0.0023709230590611696, + 0.010618138127028942, + -0.002047536661848426, + -0.0016843756893649697, + 0.006941564381122589, + 0.006108023226261139, + 0.02256440743803978, + -0.016878342255949974, + -0.0016134727047756314, + -0.03716002404689789, + -0.005834788084030151, + 0.005897044204175472, + -0.006640659645199776, + 0.0028966418467462063, + -0.017473235726356506, + 0.0015036597615107894, + 0.0021201688796281815, + -0.00026177859399467707, + 0.010846410878002644, + -6.322893750621006e-5, + 0.00821781624108553, + 0.018690690398216248, + -0.019672954455018044, + 0.011067765764892101, + -0.009068651124835014, + -0.008902634494006634, + -0.013848542235791683, + 0.014222078956663609, + 0.01635262370109558, + -0.0032788256648927927, + -0.012347476556897163, + -0.011731832288205624, + -0.022384556010365486, + -0.02520683780312538, + 0.006523064337670803, + 1.2747115761158057e-5, + -0.002246410585939884, + -0.0008638045401312411, + 0.005042750854045153, + -0.006989986170083284, + 0.00620140740647912, + -0.004050110466778278, + 0.008570601232349873, + 0.015467203222215176, + -0.02378186210989952, + 0.001776030519977212, + -0.01326056756079197, + 0.022260043770074844, + 0.009303840808570385, + 0.00950444396585226, + -0.00933151040226221, + 0.03890319913625717, + 0.028886869549751282, + -0.008432254195213318, + 0.01206386461853981, + -0.006571486126631498, + 0.0013843354536220431, + -0.011365212500095367, + -0.00669599836692214, + 0.003811461851000786, + 0.005298692733049393, + 0.02732354775071144, + -0.01567472331225872, + 0.004759139381349087, + 0.0010047456016764045, + -0.011420550756156445, + -0.03641295060515404, + 0.006709833163768053, + -0.009386848658323288, + -0.027351217344403267, + -0.00508079631254077, + -0.013848542235791683, + -0.007297808304429054, + -0.016324954107403755, + -0.004665755201131105, + -0.0025767141487449408, + 0.021928010508418083, + 0.0030176956206560135, + -0.020475367084145546, + -0.01636645942926407, + 0.0034465715289115906, + 0.004510114435106516, + -0.00037742810673080385, + -0.010438286699354649, + 0.018842872232198715, + -0.016338789835572243, + 0.019520772621035576, + -0.01039678230881691, + -0.006194490473717451, + 0.0004993464681319892, + -0.017473235726356506, + 0.03046402521431446, + -0.0020302433986216784, + -0.02711602672934532, + -0.021485300734639168, + 0.009013311937451363, + 0.0046761310659348965, + -0.0017293384298682213, + -0.010133923031389713, + -0.00586245721206069, + 0.009456022642552853, + -0.02223237417638302, + -0.00783736165612936, + -0.006235994398593903, + -0.001246853033080697, + -0.0007669616024941206, + 0.01339199673384428, + 0.010258435271680355, + -0.0008940679836086929, + 0.008376915007829666, + -0.0007686909520998597, + 0.03478045389056206, + -0.015923747792840004, + 0.004527408163994551, + -0.008639775216579437, + 0.007021114230155945, + 0.019050391390919685, + -1.0605708666844293e-5, + 0.014581781812012196, + 0.009684295393526554, + -0.0032131108455359936, + 0.0020942287519574165, + 0.01499682292342186, + -0.011697244830429554, + -0.006218701135367155, + -0.018842872232198715, + -0.0018123466288670897, + 0.00475222198292613, + -0.0016748643247410655, + -0.012056947685778141, + -0.0058209532871842384, + -0.0014396742917597294, + -0.025372853502631187, + -0.012126120738685131, + 0.004880193155258894, + 0.006031932309269905, + 0.0012027549091726542, + -0.012734848074615002, + -0.01199469156563282, + 0.0037595818284898996, + -0.005530424416065216, + 0.012209129519760609, + -0.020087994635105133, + 0.018247978761792183, + -0.017957450821995735, + -0.00019984667596872896, + 0.013855459168553352, + 0.01332974061369896, + -0.038211461156606674, + -0.026534968987107277, + 0.0008940679836086929, + -0.009490609169006348, + -0.005170722026377916, + 0.006623366381973028, + 0.001149145420640707, + -0.008127890527248383, + 0.014208244159817696, + -0.005983510985970497, + -0.015411864034831524, + 0.0053159864619374275, + -0.01005091518163681, + -0.009497527033090591, + 0.0020717475563287735, + 0.036440618336200714, + 0.004575829487293959, + -0.011427468620240688, + 0.02187267318367958, + -0.008024130016565323, + -0.014097566716372967, + 0.006574944593012333, + 0.008363080210983753, + 0.007622923702001572, + 0.011171526275575161, + -0.014180575497448444, + -0.020364688709378242, + 0.012036195024847984, + 0.0010012869024649262, + 0.013267484493553638, + -0.007436155341565609, + -0.016712326556444168, + 0.013066881336271763, + 0.0028326562605798244, + 0.020295515656471252, + -0.007726684212684631, + -0.012043112888932228, + 0.014650954864919186, + -0.006457349751144648, + 0.00341544346883893, + -0.002163402270525694, + 0.0006459078867919743, + -0.023864870890975, + 0.0038183792494237423, + -0.010742650367319584, + 0.0051292176358401775, + 0.00838383287191391, + -0.016933681443333626, + -0.002255057217553258, + -0.004271465819329023, + 0.0001595314679434523, + 0.00848759338259697, + -0.017888275906443596, + 0.0003207922854926437, + 0.009310757741332054, + -0.014180575497448444, + 0.007954956963658333, + -0.009206998161971569, + -0.025718720629811287, + 0.01805429346859455, + -0.030989743769168854, + -0.031736817210912704, + -0.015411864034831524, + 0.018524672836065292, + -0.005409370642155409, + 0.012734848074615002, + -0.014886145479977131, + 0.00988489855080843, + -0.0007786346250213683, + -0.026216771453619003, + 0.015356524847447872, + 0.0038633421063423157, + 0.023463664576411247, + 0.018483169376850128, + 0.019271748140454292, + 0.017417896538972855, + -0.0026925799902528524, + -0.011337542906403542, + 0.023602010682225227, + 0.011531228199601173, + -0.006523064337670803, + 0.0006497988943010569, + -0.018842872232198715, + -0.004299135413020849, + 0.004932073410600424, + -0.01607592962682247, + -0.004786808975040913, + 0.01820647530257702, + -0.01662931777536869, + -0.022066358476877213, + -0.0031301025301218033, + 0.0007829579990357161, + -0.007539915386587381, + 0.011330625042319298, + 0.01608976535499096, + -0.004876734223216772, + 0.005506213754415512, + 0.003116267966106534, + 0.008231651037931442, + 0.015245847404003143, + 0.007871948182582855, + 0.004523949231952429, + -0.016172772273421288, + 0.009663542732596397, + -0.0023052082397043705, + -0.006550733931362629, + 0.019576111808419228, + 0.007173295598477125, + -0.02883153036236763, + -0.039511922746896744, + -0.003297848394140601, + -0.0055719283409416676, + 0.009034063667058945, + -0.006184114143252373, + -0.04393903166055679, + -0.005360949318856001, + 0.01312221959233284, + -0.016172772273421288, + -0.0015460285358130932, + 0.03212419152259827, + -0.01234055869281292, + 0.00741540314629674, + -0.00545087456703186, + 0.03721536323428154, + -0.01560555025935173, + 0.008639775216579437, + -0.0125065753236413, + 0.005250271409749985, + 0.005682606250047684, + -0.00015855871606618166, + -0.004620792344212532, + 0.03176448866724968, + -0.014118319377303123, + 0.0015373819041997194, + 0.01148972474038601, + -0.001776030519977212, + 0.004074321128427982, + 0.0039152223616838455, + -0.009746551513671875, + 0.008902634494006634, + 0.00259746634401381, + -0.010376030579209328, + -0.007353147026151419, + 0.005800201091915369, + -0.017127368599176407, + 0.017279550433158875, + 0.022204704582691193, + -0.005751779768615961, + -0.00899947714060545, + 0.00713870907202363, + -0.016601648181676865, + -0.012956203892827034, + -0.014118319377303123, + 0.005443957168608904, + -0.012050029821693897, + -0.008459923788905144, + 0.004070862662047148, + 0.01779143325984478, + 0.002127086278051138, + -0.013046128675341606, + 0.0026406997349113226, + -0.0125065753236413, + 0.007795857731252909, + 0.004254172556102276, + -0.0036385280545800924, + 0.00410544965416193, + 0.013059963472187519, + -0.015619385056197643, + 0.009276171214878559, + -0.009373013861477375, + 0.015315021388232708, + 0.028803860768675804, + 0.0202401764690876, + -0.024999316781759262, + 0.03666197508573532, + 0.0066925399005413055, + -0.005741403438150883, + -0.002594007644802332, + 0.012624170631170273, + -0.030076654627919197, + 0.0202401764690876, + 0.007692097220569849, + -0.0017881359672173858, + -0.01022384874522686, + 0.01772226020693779, + -0.006855097599327564, + -0.010583551600575447, + 0.0006930324016138911, + 0.02589857205748558, + -0.01874602772295475, + -0.000564628979191184, + -0.039982303977012634, + 0.004434023518115282, + -0.030491694808006287, + 0.011358294636011124, + -0.03641295060515404, + -0.018704524263739586, + 0.03375668451189995, + 0.005381701048463583, + 0.007712849415838718, + -0.00036099940189160407, + -0.015757732093334198, + -0.0011785441311076283, + 0.012430484406650066, + -0.009594369679689407, + -0.005499296355992556, + 0.0027704001404345036, + 0.021983349695801735, + 0.027973778545856476, + 0.011697244830429554, + 0.0064469738863408566, + -0.011835591867566109, + 0.0029779206961393356, + 0.01629728451371193, + -0.008598270826041698, + 0.010687311179935932, + 0.010625055059790611, + 0.019728293642401695, + -0.008695113472640514, + -0.021761994808912277, + -0.01305304653942585, + 0.0016765935579314828, + -2.5973852189054014e-6, + -0.006367424037307501, + 0.014159822836518288, + 0.014208244159817696, + -0.010569716803729534, + 0.015121335163712502, + -0.01900888793170452, + 0.002677015960216522, + -0.00995407160371542, + -0.010438286699354649, + -0.005969676189124584, + -0.011053930968046188, + -0.019742127507925034, + -0.009539030492305756, + 0.003977478481829166, + -0.020876573398709297, + 0.0032425096724182367, + 0.010023245587944984, + 0.010846410878002644, + -0.024362919852137566, + -0.009255419485270977, + -0.01862151548266411, + 0.006955399177968502, + -0.0003223054518457502, + 0.0012727930443361402, + 0.024238407611846924, + -0.009462939575314522, + 0.00943527091294527, + -0.009656625799834728, + -0.02112559787929058, + -0.030381018295884132, + -0.0069865272380411625, + 0.014581781812012196, + 0.024252241477370262, + 0.02678399346768856, + -0.01366177387535572, + 0.007111039478331804, + 0.02541435696184635, + 0.004568912088871002, + -0.04844914376735687, + -0.013758616521954536, + -0.01100550964474678, + 0.007961873896420002, + -0.014595616608858109, + 0.004772974178195, + 0.013613352552056313, + -0.015245847404003143, + 0.011019344441592693, + -0.007927287369966507, + -0.013973054476082325, + 0.009649708867073059, + 0.015121335163712502, + 0.003932515624910593, + -0.01635262370109558, + -0.01819263957440853, + -0.017362557351589203, + 0.004672672599554062, + -0.02527601085603237, + -0.01148972474038601, + 0.01209845207631588, + 0.0088265435770154, + -0.02030935138463974, + -0.011040096171200275, + 0.009020228870213032, + 0.012976955622434616, + -0.006135692819952965, + 0.002400321653112769, + 0.00944218784570694, + -0.009566700085997581, + 0.024777961894869804, + 0.0012900864239782095, + -0.02985529787838459, + 0.009359179995954037, + 0.004807560704648495, + 0.0017250151140615344, + 0.007104122079908848, + 0.013142972253262997, + -0.02426607720553875, + 4.4962798710912466e-5, + 0.016850674524903297, + 0.015992922708392143, + -0.005713734310120344, + -0.0084530059248209, + -0.0015996380243450403, + 0.026424290612339973, + 0.004499738570302725, + -0.019742127507925034, + 0.0008235974237322807, + 0.026700984686613083, + -0.0033756685443222523, + -0.012292137369513512, + -0.021236276254057884, + 0.0021461090072989464, + -0.0058209532871842384, + 0.0028707017190754414, + 0.013253649696707726, + -0.025884738191962242, + -0.008750452660024166, + 0.007809692528098822, + 0.01846933364868164, + -0.007263221312314272, + 0.006353589240461588, + -0.007899617776274681, + 0.010680394247174263, + -0.007920370437204838, + 0.002284456044435501, + 0.0011897848453372717, + -0.018787533044815063, + -0.0046380856074392796, + 0.00333243515342474, + -0.0057829078286886215, + 0.01499682292342186, + 0.009788055904209614, + -0.02481946535408497, + 0.010749567300081253, + -0.008335411548614502, + -0.005928172264248133, + 0.011676493100821972, + 0.025594208389520645, + -0.011683410033583641, + -0.002248140051960945, + 0.007332394830882549, + 0.012541161850094795, + 0.016643153503537178, + -0.002052724827080965, + 0.002306937472894788, + -0.01602059043943882, + -0.003953267820179462, + 0.004900944884866476, + 0.009469857439398766, + 0.008957972750067711, + -0.012409732677042484, + 0.024445928633213043, + 0.011628071777522564, + 0.026341283693909645, + 0.011911682784557343, + -0.0020700180903077126, + -0.005305610131472349, + -0.001620390103198588, + 0.003437924897298217, + 0.0005131812067702413, + -0.008148642256855965, + -0.022439895197749138, + 0.01356493029743433, + -0.013786286115646362, + -0.014125236310064793, + -0.0031889001838862896, + 0.011330625042319298, + -0.030657712370157242, + 0.013959219679236412, + -0.008162477053701878, + -0.012409732677042484, + -0.01326056756079197, + 0.030491694808006287, + 0.005274482071399689, + 0.004561994690448046, + 0.008252402767539024, + -0.0055961390025913715, + -0.00425763102248311, + 0.007304725702852011, + 0.011434385553002357, + 0.013308988884091377, + -0.011579650454223156, + -0.019340921193361282, + 0.008224733173847198, + 0.0030713051091879606, + 0.0013653127243742347, + 0.008681278675794601, + 0.00034132818109355867, + 0.00978113804012537, + 0.004074321128427982, + -0.02010183036327362, + -0.017971284687519073, + -0.005969676189124584, + -0.0037146189715713263, + -0.015287351794540882, + -0.0162142775952816, + -0.0015036597615107894, + 0.016518641263246536, + -0.007505328860133886, + -0.015245847404003143, + 0.020420027896761894, + 0.039760950952768326, + -0.008397667668759823, + 0.014913815073668957, + -0.01827564835548401, + -0.023200804367661476, + 0.01711353287100792, + -0.003956726286560297, + 0.002075206022709608, + 0.0027721296064555645, + -0.00010894831939367577, + 0.024141564965248108, + -0.004914779681712389, + 0.008376915007829666, + 0.01840016059577465, + -0.007187130395323038, + -0.01321906317025423, + -0.0029744619969278574, + -0.0058174943551421165, + -0.015896078199148178, + 0.01472012884914875, + -0.006772089283913374, + -0.0012658757623285055, + -0.013696360401809216, + -0.00035473055322654545, + 0.020544540137052536, + 0.0010159863159060478, + -0.004548159893602133, + -0.0017985119484364986, + 0.020669052377343178, + 0.01043136976659298, + 0.004541242495179176, + -0.017915945500135422, + -0.018040457740426064, + 0.006090729963034391, + -0.02631361410021782, + 0.002113251481205225, + 0.014118319377303123, + 0.016781499609351158, + 0.0004989141598343849, + 0.014637120068073273, + -0.005260647740215063, + -0.009407601319253445, + -0.018649185076355934, + -0.017293384298682213, + 0.0015019304119050503, + -0.006651035510003567, + 0.010811823420226574, + -0.01874602772295475, + -0.004894027952104807, + -0.0031958173494786024, + -0.007636758498847485, + -0.008791957050561905, + -0.03776875138282776, + -0.0014111401978880167, + 0.012797104194760323, + 0.014609451405704021, + 0.02548353187739849, + 0.00521568488329649, + -0.013149889186024666, + 0.007954956963658333, + -0.0006178061594255269, + -0.005921254865825176, + 0.005298692733049393, + -0.01206386461853981, + -0.022370722144842148, + -0.00041849989793263376, + 0.009206998161971569, + -0.007111039478331804, + -0.012243716046214104, + 0.012866278178989887, + 0.027489563450217247, + 0.014747798442840576, + -0.009850312024354935, + -0.0023034787736833096, + -0.010638889856636524, + -0.004645003005862236, + 0.007214799989014864, + 0.009151658974587917, + -0.019797466695308685, + -0.001765654538758099, + 0.0061011058278381824, + -0.002580172847956419, + -0.019686788320541382, + 0.030657712370157242, + -0.007982626557350159, + -0.01779143325984478, + -0.00854984950274229, + 0.009013311937451363, + 0.014623286202549934, + 0.018842872232198715, + 0.024653447791934013, + -0.005191473755985498, + 0.018151136115193367, + -0.013641021214425564, + 0.006616448983550072, + -0.005942007061094046, + 0.012568831443786621, + 0.0004197969101369381, + 0.011697244830429554, + 0.005516589619219303, + 0.007719766814261675, + 0.010867162607610226, + -0.0019818218424916267, + -0.00589358527213335, + -0.02350516803562641, + 0.004852523561567068, + -0.022467564791440964, + 0.005623808596283197, + -0.021720491349697113, + 0.030962076038122177, + 0.01745939999818802, + 0.005482002627104521, + -0.011614236980676651, + -0.013855459168553352, + 0.0012503117322921753, + 0.0119324354454875, + 0.0013281318824738264, + -0.005803659558296204, + 0.007263221312314272, + -0.0038460486102849245, + -0.018441665917634964, + -0.010590468533337116, + 0.0035797306336462498, + 0.00633629597723484, + 0.013488839380443096, + -0.014083731919527054, + -0.025787895545363426, + -0.0065299817360937595, + -0.03475278615951538, + -0.020267846062779427, + -0.025179168209433556, + 0.026756323873996735, + -0.010127006098628044, + -0.0014050875324755907, + -0.013765533454716206, + 0.008127890527248383, + -0.007512246258556843, + -0.017127368599176407, + -0.003244238905608654, + 0.02039235830307007, + -0.002919123275205493, + 0.014886145479977131, + -0.03497413918375969, + 0.018234144896268845, + 0.022066358476877213, + -0.008397667668759823, + -0.015079830773174763, + 0.012700261548161507, + -0.0016930223209783435, + 0.0035382264759391546, + 0.023352986201643944, + -0.022509068250656128, + 0.004904403816908598, + 0.012209129519760609, + -0.009047898463904858, + 0.004032817203551531, + -0.027434224262833595, + -0.0058555398136377335, + -0.009359179995954037, + -0.013585682958364487, + 0.005219143349677324, + 0.010313774459064007, + 0.004288759082555771, + -0.013357410207390785, + -0.008937221020460129, + 0.027849266305565834, + 0.030685381963849068, + 0.04800643399357796, + 0.030768388882279396, + 0.004693424329161644, + 0.009864146821200848, + 0.03699400648474693, + -0.027835430577397346, + 0.01600675657391548, + 0.015425698831677437, + -0.029218902811408043, + -0.010258435271680355, + -0.01888437569141388, + -0.0067893825471401215, + 0.021167103201150894, + 0.010355278849601746, + -0.02393404394388199, + -0.004119283985346556, + -0.0101200882345438, + -0.004513573367148638, + 0.009587451815605164, + -0.004790267441421747, + -0.004157329443842173, + 0.011593485251069069, + -0.013959219679236412, + 0.01683683879673481, + 0.016048260033130646, + -0.0074776592664420605, + -0.0032788256648927927, + -0.021457631140947342, + -0.011911682784557343, + -0.007124874275177717, + 0.036966338753700256, + -0.0015027951449155807, + -0.012928534299135208, + -0.010846410878002644, + -0.0016359541332349181, + 0.005174180492758751, + 0.001194972894154489, + 0.012285220436751842, + -0.010535129345953465, + -0.009130907244980335, + 0.007671345490962267, + -0.021761994808912277, + 0.001955881714820862, + -0.012527327984571457, + -0.008591352961957455, + -0.013149889186024666, + 0.015425698831677437, + -0.024349085986614227, + 0.027780093252658844, + -0.01595141738653183, + 0.004734928719699383, + -0.004112366586923599, + -0.020599879324436188, + -0.006381258834153414, + 0.016573980450630188, + 0.010265353135764599, + 0.029965976253151894, + -0.015564045868813992, + -0.020157169550657272, + -0.024086225777864456, + -0.00014277850277721882, + 0.009220832958817482, + 0.012963120825588703, + 0.006066519301384687, + -0.016795335337519646, + 0.024639613926410675, + -0.004738387186080217, + -0.006232535932213068, + -0.0012624170631170273, + -0.018510838970541954, + 0.01427741814404726, + -0.004928614478558302, + -0.011904765851795673, + -0.025165332481265068, + -0.01267259195446968, + -0.0026130303740501404, + -0.027226705104112625, + 0.00923466682434082, + -0.02221854031085968, + 0.016477135941386223, + -0.009421436116099358, + -0.006841262802481651, + 0.0018313693581148982, + 0.0008114920346997678, + -0.018081963062286377, + 0.0037146189715713263, + -0.01227138563990593, + -0.009075568057596684, + -0.009594369679689407, + 0.0017881359672173858, + -0.012520410120487213, + -0.007775105535984039, + -0.003852966008707881, + 0.018178805708885193, + 0.006478101946413517, + -0.020281681790947914, + -0.013371245004236698, + 0.0005832194001413882, + 0.0013791474048048258, + -0.00013791474339086562, + -0.006433139089494944, + -0.0017985119484364986, + 0.004779891576617956, + 0.027240538969635963, + 0.0031543131917715073, + -0.023408325389027596, + -0.008681278675794601, + 0.015550211071968079, + 0.010099336504936218, + 0.028388820588588715, + -0.02297944948077202, + -0.010272270068526268, + 0.021485300734639168, + 0.0088265435770154, + -0.027655581012368202, + 0.016532475128769875, + 0.008390749804675579, + 0.011268368922173977, + -0.015328856185078621, + 0.018759863451123238, + -0.009483692236244678, + 0.004274924751371145, + 0.03334164619445801, + -0.001286627841182053, + 0.006706374231725931, + -0.0035382264759391546, + 0.009843394160270691, + 0.02412772923707962, + -0.003098974470049143, + -0.0015313292387872934, + 0.018164969980716705, + 0.0018192640272900462, + -0.0049216970801353455, + 0.021443797275424004, + -0.011351377703249454, + -0.011233782395720482, + 0.013481922447681427, + -0.012790187261998653, + -0.006083812564611435, + -0.007546832785010338, + -0.013973054476082325, + 0.005955841392278671, + 0.018842872232198715, + 0.013357410207390785, + 0.002633782336488366, + 0.0021357329096645117, + -0.012658757157623768, + 0.007422320544719696, + 0.014208244159817696, + 0.007249386515468359, + -0.004645003005862236, + -0.013039211742579937, + 0.003552061039954424, + -0.0032096521463245153, + -0.0030280714854598045, + 0.014159822836518288, + 0.014650954864919186, + 0.012638005428016186, + -0.009393766522407532, + 0.004063945263624191, + -0.005274482071399689, + 0.018109632655978203, + 0.011095435358583927, + 0.029080554842948914, + -0.00012364769645500928, + 0.00041071788291446865, + 0.01970062404870987, + 0.010625055059790611, + -0.0179989542812109, + -0.003683490911498666, + -0.0053644077852368355, + -0.003956726286560297, + -0.013724029995501041, + -0.02100108563899994, + 0.0027946108020842075, + -0.00029204203747212887, + -0.01581307128071785, + -0.01595141738653183, + -0.02296561375260353, + -0.0067997588776052, + 0.018580012023448944, + 0.022730425000190735, + 0.02801528200507164, + -0.008964890614151955, + 0.01339199673384428, + -0.009656625799834728, + -0.012312890030443668, + 0.003977478481829166, + -0.0028637845534831285, + 0.00758141977712512, + 0.0008166800835169852, + 0.011475889943540096, + -0.004932073410600424, + 0.011316790245473385, + -0.0007319424767047167, + -0.004503197502344847, + 0.009296922944486141, + -0.0005257189041003585, + -0.006353589240461588, + 0.009843394160270691, + 6.890332588227466e-5, + -0.03386736288666725, + 0.0011145586613565683, + -0.011669576168060303 + ], + "85c3ec39-c43e-47ee-9a60-ce18351fb179": [ + -0.009269319474697113, + -0.002329354640096426, + -0.01811262220144272, + -0.0018277531489729881, + -0.049555473029613495, + -0.0067510055378079414, + 0.018923429772257805, + 0.05123205855488777, + 0.0261519867926836, + 0.05513492971658707, + 0.004689629655331373, + -0.0046140458434820175, + -0.0029941482935100794, + -0.006098236422985792, + -0.011234497651457787, + 0.010032028891146183, + -0.049033258110284805, + 0.024777736514806747, + -0.025712227448821068, + 0.005895534530282021, + 0.05678403005003929, + -0.032459795475006104, + -0.0019978166092187166, + 0.021067259833216667, + -0.020476331934332848, + -0.014773192815482616, + 0.04381110519170761, + -0.004253305494785309, + -0.009612882509827614, + -0.0019187972648069263, + -0.00968159455806017, + 0.02421429380774498, + 0.05244139954447746, + -0.02674291469156742, + -0.005538229364901781, + -0.006091365125030279, + -0.012072790414094925, + 0.03688488155603409, + -0.012498808093369007, + 0.012814885936677456, + -0.03229488804936409, + 0.02223537303507328, + 0.03443871811032295, + 0.003628021338954568, + -0.02393944375216961, + 0.023183606564998627, + 0.04403098672628403, + 0.0005350987776182592, + 0.01128946803510189, + 0.014182264916598797, + -0.0039028713945299387, + 0.03834158927202225, + -0.012649975717067719, + 0.0014120424166321754, + 0.0019840742461383343, + 0.0040677813813090324, + 0.009468586184084415, + 0.09410867094993591, + 0.036197759211063385, + -0.01528166513890028, + -0.008657777681946754, + -0.0008700723410584033, + -0.003287894418463111, + 0.0029426137916743755, + 7.375860150204971e-5, + -0.02869435027241707, + 0.0003736243525054306, + -0.012148374691605568, + -0.0208473801612854, + -0.0020819895435124636, + -0.0034768537152558565, + -0.006221919320523739, + -0.03946847468614578, + 0.029408961534500122, + -0.009715951047837734, + -0.00943422969430685, + 0.06024714186787605, + -0.03320189192891121, + 0.012711817398667336, + 0.004565947223454714, + -0.029353991150856018, + 0.023650851100683212, + 0.009674723260104656, + 0.006531125400215387, + 0.0370497927069664, + 0.0038375945296138525, + -0.029601356014609337, + -0.037242189049720764, + -0.039633385837078094, + -0.004998836200684309, + 0.017356783151626587, + 0.022194145247340202, + -0.00456938287243247, + -0.0013622258557006717, + -0.01936318911612034, + -0.023430971428751945, + 0.032487280666828156, + 0.0135638527572155, + -0.03625272959470749, + -0.011323824524879456, + -0.01779654435813427, + 0.02136959508061409, + -0.0311130303889513, + 0.009021954610943794, + 0.025093814358115196, + -0.018676064908504486, + -0.011523090302944183, + -0.014869390055537224, + -0.034356262534856796, + 0.025657257065176964, + 0.010313750244677067, + -0.034191351383924484, + -0.0030319401994347572, + 0.001222224091179669, + 0.00968159455806017, + -0.06129157170653343, + -0.015707682818174362, + -0.019225765019655228, + -0.006259710993617773, + -0.05799337103962898, + 0.06167636066675186, + 0.03603284806013107, + 0.012739301659166813, + -0.02018773928284645, + 0.001067620818503201, + -0.014855647459626198, + -0.00972969364374876, + 0.009420487098395824, + -0.003724218811839819, + 0.012753044255077839, + 0.004552204627543688, + -0.034741051495075226, + -0.016532232984900475, + -0.003614278743043542, + -0.029161594808101654, + 0.02833704464137554, + 0.008534095250070095, + 0.019583068788051605, + -0.037626978009939194, + 0.051396969705820084, + -0.015020557679235935, + -0.019693009555339813, + 0.0002166591730201617, + -0.030480876564979553, + 0.007441566325724125, + -0.013577595353126526, + -0.024818964302539825, + 0.06458977609872818, + 0.006562046241015196, + 0.01884097419679165, + -0.042959071695804596, + 0.020380135625600815, + 0.029189079999923706, + -0.0030319401994347572, + 0.0006974321440793574, + 0.0031126774847507477, + 0.00757899135351181, + 0.015913819894194603, + -0.016188669949769974, + -0.01269807480275631, + -0.020792409777641296, + -0.03388901799917221, + 0.04235440120100975, + 0.018538638949394226, + 0.02189180999994278, + 0.021204685792326927, + 0.04592745006084442, + 0.01383870281279087, + -0.04952798783779144, + 0.021039774641394615, + 0.03369662165641785, + -0.02241402491927147, + 0.009715951047837734, + -0.015322892926633358, + -0.007400339003652334, + -0.02751249447464943, + 0.009777792729437351, + -0.002430705586448312, + 0.023018695414066315, + -0.05876295268535614, + 0.013172190636396408, + -0.021974265575408936, + -0.023513425141572952, + 0.01416852232068777, + -0.010780994780361652, + 0.028282076120376587, + 0.031690217554569244, + -0.02064124308526516, + -0.010753510519862175, + 0.028282076120376587, + 0.006122285965830088, + 0.01814010739326477, + 0.0450204461812973, + 0.05744367092847824, + -0.007049905136227608, + -0.011612416245043278, + -0.013611950911581516, + -0.02833704464137554, + 0.0258084237575531, + 0.03226740285754204, + -0.018538638949394226, + -0.06338043510913849, + -0.04985780641436577, + 0.0031951323617249727, + -0.041474878787994385, + -0.000521356298122555, + -0.008197404444217682, + -0.010602342896163464, + 0.017150646075606346, + -0.029821235686540604, + 0.01613370142877102, + -0.0274437814950943, + 0.01820881851017475, + -0.004772084765136242, + -0.036445122212171555, + -0.0016697143437340856, + -0.015020557679235935, + 0.01429220475256443, + 0.017398010939359665, + 0.010815351270139217, + 0.0009447972406633198, + 0.019541842862963676, + 0.03669248893857002, + -0.02469528093934059, + -0.03872637823224068, + -0.030260995030403137, + -0.02337600104510784, + 0.026564262807369232, + -0.043453801423311234, + -0.03122297115623951, + 0.030755726620554924, + -0.007455308921635151, + -0.0046415310353040695, + -0.0430140420794487, + -0.02234531380236149, + -0.0006793951033614576, + -0.0009276191121898592, + -0.016944508999586105, + 0.029546385630965233, + -0.02979375049471855, + 0.043866075575351715, + 0.014924360439181328, + 0.002252053003758192, + 0.017645375803112984, + 0.023156121373176575, + 0.02733384259045124, + -0.010987132787704468, + 0.05109463259577751, + 0.03666500374674797, + -0.0013682381249964237, + -0.008321086876094341, + 0.037901829928159714, + -0.002039044164121151, + -0.02844698540866375, + 0.0010753510287031531, + 0.019954117015004158, + -0.00013130533625371754, + -0.016710886731743813, + -0.015790138393640518, + -0.0038513371255248785, + -0.007709545083343983, + -0.005101904738694429, + -0.006551739294081926, + -0.021204685792326927, + 0.05268876254558563, + -0.03465859591960907, + 0.01023129466921091, + -0.02806219458580017, + -0.016326095908880234, + -0.0022623599506914616, + -0.05587702617049217, + -0.009860247373580933, + -0.011942236684262753, + 0.004242998547852039, + 0.012175858952105045, + -0.009351775050163269, + 0.010657312348484993, + -0.017233101651072502, + -0.030480876564979553, + 0.008472254499793053, + -0.02671542949974537, + 0.023582138121128082, + 0.022386539727449417, + 0.03663751855492592, + 0.0024341412354260683, + -0.017604148015379906, + 0.005644734017550945, + 0.0024805220309644938, + -0.02528620883822441, + -0.0284744706004858, + 0.013735633343458176, + -0.009221220389008522, + 0.0437011644244194, + 0.0031109596602618694, + 0.03823164850473404, + -0.001673149992711842, + -0.011660515330731869, + -0.0032157462555915117, + -0.007984395138919353, + 0.017356783151626587, + -0.044525716453790665, + 0.0030267867259681225, + 0.009777792729437351, + 0.01314470637589693, + -0.009839633479714394, + 0.011942236684262753, + 0.011213883757591248, + -0.012711817398667336, + -0.03094812110066414, + 0.00753776403144002, + 0.03979829326272011, + -0.00654830364510417, + -0.020476331934332848, + 0.007084261160343885, + -0.013385199941694736, + 0.022565193474292755, + 0.03630769997835159, + 0.013247774913907051, + -0.00032123105484060943, + -0.00884330179542303, + -0.00659983791410923, + -0.012828628532588482, + -0.05491504818201065, + 0.006386829074472189, + 0.0033342752140015364, + -0.02584965154528618, + 0.006953707430511713, + 0.014622025191783905, + -0.016037503257393837, + -0.02619321458041668, + -0.013996741734445095, + -0.02764992043375969, + -0.0014910617610439658, + -0.03746206685900688, + -0.001633640262298286, + -0.008431026712059975, + -0.020448846742510796, + -0.028804291039705276, + -0.022290343418717384, + 0.001010933076031506, + -0.015666455030441284, + 0.04034799337387085, + -0.03391650319099426, + -0.010746639221906662, + 0.010073255747556686, + 0.003686426905915141, + -0.0057031395845115185, + 0.03215746209025383, + 0.01633983850479126, + -0.006909044459462166, + 0.0007309294887818396, + -0.029024170711636543, + 0.01877226121723652, + -0.005421418230980635, + 0.016917023807764053, + 0.005988296587020159, + -0.020517559722065926, + -0.0007309294887818396, + 0.002186776138842106, + 0.02307366579771042, + -0.004002504516392946, + -0.01672462932765484, + -0.03534572198987007, + -0.0042670476250350475, + -0.0005647310754284263, + 0.013989870436489582, + 0.015845108777284622, + -0.00905631110072136, + -0.01952810026705265, + 0.014635767787694931, + -0.012856113724410534, + 0.018758518621325493, + 0.02327980287373066, + -0.0024289877619594336, + -0.026976536959409714, + -0.005874921102076769, + 0.06601899117231369, + 0.026165729388594627, + -0.024241778999567032, + 0.02025645226240158, + -0.00451784860342741, + 0.020105285570025444, + 0.014099810272455215, + -0.028227105736732483, + 0.0502975694835186, + 0.02168567292392254, + 0.0029872769955545664, + 0.006854074541479349, + -0.015171725302934647, + -0.025506088510155678, + -0.0244616586714983, + -0.006654807832092047, + -0.0489233173429966, + -0.001641370472498238, + -0.035263266414403915, + 0.01297292485833168, + 0.021397080272436142, + 0.01599627546966076, + 0.024186808615922928, + -0.012828628532588482, + -0.01713690347969532, + -0.0053630126640200615, + 0.01515798270702362, + 0.011021489277482033, + 0.01779654435813427, + -0.02268887497484684, + -0.0013605080312117934, + 0.005359577015042305, + 0.0008305626688525081, + 0.020201481878757477, + 0.027842314913868904, + -0.03202003613114357, + 0.016174929216504097, + -0.024860192090272903, + 0.06151145324110985, + -0.017562922090291977, + 0.010190067812800407, + 0.025368664413690567, + -0.06904234737157822, + -0.004603739362210035, + 0.048620983958244324, + 0.04870343580842018, + 0.005112211685627699, + -0.016119958832859993, + -0.03985326364636421, + 0.008781461045145988, + 0.03875386342406273, + 0.013234032317996025, + -0.0036589419469237328, + -0.0062837605364620686, + -0.011255111545324326, + 0.005751238204538822, + -0.0138936722651124, + -0.02303243800997734, + -0.0008593359962105751, + -0.006455541588366032, + 0.016010018065571785, + 0.01193536538630724, + -0.010265651158988476, + -0.002399784978479147, + 0.020201481878757477, + 0.03004111535847187, + -0.01198346447199583, + -0.022977467626333237, + -0.013508882373571396, + -0.04422337934374809, + -0.020064057782292366, + 0.012457580305635929, + 0.01761789061129093, + 0.027031507343053818, + 0.018305016681551933, + 0.04985780641436577, + -0.04631224274635315, + 0.002863594563677907, + -0.01339207123965025, + 0.005036627873778343, + -0.009289933368563652, + 0.006015781778842211, + 0.02833704464137554, + 0.006520818453282118, + -0.02587713673710823, + -0.008204275742173195, + 0.025643514469265938, + -0.046916913241147995, + 0.02191929519176483, + -0.043591227382421494, + -0.03405392915010452, + 0.004431957844644785, + 0.003250102512538433, + -0.02403564192354679, + 0.011392536573112011, + 0.027814829722046852, + 0.01181168295443058, + 0.009200607426464558, + -0.02369207888841629, + 0.0025853088591247797, + 0.011612416245043278, + -0.013103478588163853, + 0.03556560352444649, + -0.014470857568085194, + -0.025190012529492378, + -0.03056333027780056, + -0.030673271045088768, + 0.015336635522544384, + 0.025162527337670326, + -0.002013277029618621, + -0.02633063867688179, + 0.019239507615566254, + -0.0017659119330346584, + -0.018511153757572174, + 0.022290343418717384, + 0.00359022943302989, + -0.016765855252742767, + -0.02612450160086155, + -0.013261517509818077, + -0.03787434473633766, + -0.011976593174040318, + -0.02307366579771042, + -0.008582194335758686, + -0.029189079999923706, + 0.06305061280727386, + -0.02719641663134098, + 0.009255576878786087, + 0.023252317681908607, + 0.013701277785003185, + 0.005235894583165646, + -0.012065919116139412, + -0.007503407541662455, + 0.014718222431838512, + -0.01945938728749752, + -0.000620559963863343, + -0.004105573520064354, + -0.01257439237087965, + 0.017260586842894554, + 0.0027759859804064035, + 0.009970187209546566, + -0.02674291469156742, + 0.013165319338440895, + 0.010217552073299885, + -0.029216565191745758, + -0.002437576884403825, + -0.0029099753592163324, + -0.031442850828170776, + 0.0022228502202779055, + 0.02380201779305935, + -0.013220289722084999, + -0.011454378254711628, + 0.03306446596980095, + 0.015391605906188488, + 0.0009130176622420549, + -0.0208473801612854, + 0.01793396845459938, + -0.024406688287854195, + 0.005764980800449848, + 0.005180924199521542, + -0.02674291469156742, + 0.025478603318333626, + -0.009908346459269524, + -0.0037104764487594366, + 0.006105107720941305, + -0.031717702746391296, + 0.0496654137969017, + -0.010780994780361652, + -0.012155245989561081, + 0.02025645226240158, + 0.02230408601462841, + -0.010904678143560886, + 0.015735168009996414, + 0.004428522195667028, + 0.01290421187877655, + -0.026358123868703842, + 0.00757899135351181, + 0.0020304550416767597, + 0.0021129101514816284, + 0.012670589610934258, + -0.04699936881661415, + 0.025066329166293144, + 0.0010899524204432964, + -0.023499684408307076, + -0.01528166513890028, + 0.012959182262420654, + -0.019060853868722916, + 0.0073041412979364395, + 0.0015194057486951351, + -0.05348582938313484, + -0.010471789166331291, + -0.01672462932765484, + 0.026962794363498688, + 0.02025645226240158, + 0.007819484919309616, + 0.012512550689280033, + 0.030068600550293922, + 0.029683811590075493, + -0.015721425414085388, + -0.015130497515201569, + 0.035922907292842865, + 0.000907005334738642, + 0.028282076120376587, + -0.00035880820360034704, + 0.007207944057881832, + 0.004868282470852137, + -0.019225765019655228, + 0.013343972153961658, + -0.019170794636011124, + 0.013639436103403568, + -0.011172656901180744, + -0.04933559149503708, + -0.04224446043372154, + -0.016848310828208923, + 0.014457114972174168, + 0.0016714321682229638, + 0.021218428388237953, + 0.026000820100307465, + -0.01768660359084606, + -0.010794737376272678, + 0.003504338674247265, + -0.004538462497293949, + 0.012258314527571201, + 0.003841030178591609, + 0.005545100662857294, + -0.01998160220682621, + 0.022111689671874046, + 0.032899558544158936, + -0.026440579444169998, + -0.017947711050510406, + 0.018552381545305252, + -0.04130997136235237, + -0.003133291145786643, + -0.003337710862979293, + -0.020806152373552322, + 0.007365982513874769, + -0.0012917955173179507, + 0.022262858226895332, + -0.0011724074138328433, + 0.04661457613110542, + 0.015295407734811306, + 0.024791479110717773, + 0.015858851373195648, + -0.009344903752207756, + -0.04741164296865463, + 0.03369662165641785, + -0.040402963757514954, + 0.06783300638198853, + -0.032075006514787674, + 0.04062284529209137, + 0.007895069196820259, + -0.014512085355818272, + -0.0062356614507734776, + -0.008554709143936634, + -0.0027519366703927517, + -0.010952776297926903, + 0.006510511506348848, + 0.021740643307566643, + -0.0258084237575531, + 0.0430140420794487, + 0.0096060112118721, + 0.008108077570796013, + 0.025299951434135437, + -0.020132768899202347, + 0.026839112862944603, + -0.038451530039310455, + -0.0008846737327985466, + 0.01547406055033207, + 0.023059923201799393, + -0.009997672401368618, + -0.007544635329395533, + -0.030865665525197983, + 0.0033566069323569536, + 0.028392015025019646, + 0.0010641852859407663, + -0.054310381412506104, + -0.0038238519337028265, + 0.04298655688762665, + 0.004442264791578054, + -0.008747104555368423, + -0.05661911889910698, + -0.04774146154522896, + 0.03551063314080238, + 0.019060853868722916, + -0.00909066665917635, + 0.02612450160086155, + 0.002392913680523634, + -0.021067259833216667, + 0.01401735469698906, + 0.0377369187772274, + 0.016642173752188683, + 0.0022606421262025833, + -0.005304607097059488, + 0.004809876903891563, + 0.019747979938983917, + 0.018648579716682434, + -0.008609679527580738, + 0.02389821596443653, + 0.014910617843270302, + 0.002683224156498909, + -0.020448846742510796, + 0.007846970111131668, + -0.03960590064525604, + 0.005929891020059586, + -0.010059514082968235, + -0.025822166353464127, + 0.0033274039160460234, + -0.009722822345793247, + 0.00591614842414856, + 0.017507951706647873, + -0.022001750767230988, + -0.009468586184084415, + 0.012395739555358887, + -0.041887156665325165, + -0.0019205150892958045, + 0.0029889948200434446, + 0.005424853879958391, + -0.0024908289778977633, + -0.0012196473544463515, + -0.00240665627643466, + 0.009647238068282604, + -0.010629827156662941, + -0.0011578060220927, + 0.004583125468343496, + -0.04636721312999725, + -0.027361327782273293, + 0.0019737672992050648, + -0.010100740939378738, + -0.0026007690466940403, + -0.028048451989889145, + 0.030096085742115974, + -0.011770455166697502, + 0.010155711323022842, + 0.011406279169023037, + -0.0188684593886137, + 0.030590815469622612, + -0.009427358396351337, + -0.016944508999586105, + 0.01227892842143774, + 0.010121354833245277, + 0.004857975523918867, + -0.019541842862963676, + -0.007125488948076963, + -0.004445700440555811, + 0.024860192090272903, + -0.02209794707596302, + 0.04886834695935249, + -0.0039131781086325645, + -0.04754906892776489, + -0.03825913369655609, + 0.024654053151607513, + 0.03185512498021126, + 0.009221220389008522, + -0.004084959626197815, + -0.009076924994587898, + 0.054585229605436325, + 0.005019450094550848, + -0.03243231028318405, + 0.022084206342697144, + -0.0077713867649436, + 0.0015486085321754217, + -0.03325686231255531, + -0.008238631300628185, + 0.04642218351364136, + -0.025712227448821068, + -0.003899435745552182, + -0.009255576878786087, + 0.009530426934361458, + -0.0042807902209460735, + 0.02924405038356781, + 0.016504747793078423, + -0.008678391575813293, + -0.001518546836450696, + 0.005936762318015099, + 0.015309150330722332, + 0.04603739082813263, + -0.020737439393997192, + 0.0516168475151062, + 0.022152917459607124, + -0.009338032454252243, + -0.01111768651753664, + -0.004785827361047268, + 0.02473650872707367, + 0.016600945964455605, + 0.012959182262420654, + -0.01547406055033207, + 0.01555651519447565, + 0.003260409226641059, + -0.019198279827833176, + -0.0012342487461864948, + 0.004318582359701395, + -0.013776861131191254, + 0.026385609060525894, + 0.037929315119981766, + -0.004737728741019964, + 0.003923485055565834, + -0.005950504448264837, + 0.044663142412900925, + 0.015446575358510017, + 0.01396238524466753, + -0.03806673735380173, + 0.04568008705973625, + 0.024516629055142403, + -0.038451530039310455, + 0.012622490525245667, + -0.022262858226895332, + -0.040705300867557526, + 0.014965588226914406, + -0.015199210494756699, + -0.007716416381299496, + -0.02753997966647148, + 0.0430140420794487, + 0.034603629261255264, + -0.025904621928930283, + -0.006953707430511713, + 0.0396883524954319, + -0.007551506627351046, + -0.025588544085621834, + 0.011667386628687382, + 0.002920282306149602, + 0.0003832870570477098, + 0.02990369126200676, + -0.02077866718173027, + 0.003435626160353422, + 0.0067853620275855064, + 0.0025938977487385273, + -0.05027008429169655, + 0.011248240247368813, + 0.03688488155603409, + -0.005345834419131279, + -0.020902350544929504, + 0.0201602540910244, + 0.0023379437625408173, + 0.02639935165643692, + 0.004899202845990658, + -0.03202003613114357, + -0.010932162404060364, + 0.013948642648756504, + 0.021520763635635376, + 0.004851104225963354, + -0.018813489004969597, + -0.0064314925111830235, + -0.012656847015023232, + 0.009283062070608139, + -0.019830435514450073, + -0.00837605632841587, + 0.005988296587020159, + 0.03982577845454216, + 0.03336680307984352, + -0.015171725302934647, + -0.03358668088912964, + -0.009296804666519165, + 0.0017487338045611978, + 0.00393722765147686, + 0.010897806845605373, + -0.00043482144246809185, + -0.006668550428003073, + -0.002939178142696619, + 0.028254590928554535, + 0.01804390922188759, + 0.0674482136964798, + -0.03735212981700897, + -0.0015297125792130828, + -0.03004111535847187, + -0.013398942537605762, + -0.007709545083343983, + -0.019871661439538002, + -0.004184592980891466, + -0.01672462932765484, + -0.009399873204529285, + -0.022468995302915573, + -0.008431026712059975, + -0.0042601763270795345, + 0.04249182716012001, + 0.020242709666490555, + 0.006960578728467226, + -0.004208642058074474, + 0.004878589417785406, + 0.013261517509818077, + -0.017288072034716606, + 0.01884097419679165, + 0.023293545469641685, + 0.012821757234632969, + 0.010691668838262558, + 0.004150236491113901, + 0.029024170711636543, + 0.015391605906188488, + 0.005253072362393141, + -0.02521749585866928, + -0.008705876767635345, + -0.010492402128875256, + -0.015446575358510017, + 0.004830490332096815, + -0.005177488550543785, + -0.00903569720685482, + -0.0006905608461238444, + 0.006373086478561163, + 0.011090201325714588, + 0.00023126059386413544, + -0.03166273236274719, + -0.02459908463060856, + -0.030783211812376976, + 0.0008747963584028184, + -0.017439238727092743, + 0.019514357671141624, + 0.003775753313675523, + -0.008218018338084221, + 0.014196007512509823, + -0.0028000352904200554, + -0.04339883103966713, + 0.01606498844921589, + 0.0046277884393930435, + -0.012814885936677456, + -0.0017349912086501718, + 0.01181168295443058, + 0.028749320656061172, + 0.010753510519862175, + -0.004012811463326216, + -0.025135042145848274, + -0.00480300560593605, + -0.027567464858293533, + -0.029353991150856018, + -0.01893717236816883, + 0.022180402651429176, + -0.017439238727092743, + 0.0015675044851377606, + -0.03284458816051483, + -0.041364941745996475, + 0.005826822016388178, + -0.028529440984129906, + -0.05409049987792969, + 0.010382462292909622, + 0.017013221979141235, + 0.0009370670304633677, + 0.05400804430246353, + 0.011035231873393059, + -0.004775520414113998, + -0.004122751299291849, + -0.023266060277819633, + 0.031415365636348724, + 0.027388812974095345, + 0.00417085038498044, + 0.003416730323806405, + 0.011969721876084805, + -0.02011902816593647, + -0.01475945021957159, + 0.008891400881111622, + 0.02296372503042221, + 0.002361993072554469, + -0.011502476409077644, + -0.01702696457505226, + -0.005294300150126219, + 0.015460317954421043, + -0.004026554059237242, + 0.018263788893818855, + 0.01071915403008461, + 0.0181813333183527, + 0.005806208122521639, + -0.029821235686540604, + 0.038561467081308365, + -0.033091951161623, + -0.008575323037803173, + -0.0205038171261549, + -0.03650009259581566, + -0.021836839616298676, + -0.032762132585048676, + -0.016903281211853027, + 0.017714088782668114, + -0.037654463201761246, + 0.024241778999567032, + -0.01416852232068777, + -0.022922499105334282, + 0.019816692918539047, + 0.019789207726716995, + 0.0022314393427222967, + 0.024406688287854195, + 0.016188669949769974, + 0.0040815239772200584, + -0.004840797279030085, + -0.014333432540297508, + 0.037269674241542816, + -0.0006905608461238444, + 0.012732431292533875, + 0.031415365636348724, + -0.015776395797729492, + -0.010416818782687187, + 0.0010315467370674014, + 0.0030508360359817743, + -0.008087464608252048, + -0.042436856776475906, + 0.024818964302539825, + -0.019679266959428787, + 0.01811262220144272, + -0.000932772527448833, + 0.011275725439190865, + -0.0015838237013667822, + -0.015721425414085388, + 0.007743901573121548, + 0.002889361698180437, + -0.0013862751657143235, + -0.002243463881313801, + -0.020352650433778763, + -0.014333432540297508, + -0.0016911870334297419, + 0.005036627873778343, + 0.0192120224237442, + 0.022633906453847885, + -0.003762010717764497, + 0.0011818554485216737, + -0.011550575494766235, + -0.0050400635227561, + -0.028007224202156067, + -0.010066384449601173, + 0.004449136089533567, + -0.011165785603225231, + 0.03589542210102081, + -0.027113962918519974, + 0.004263611976057291, + -0.027746116742491722, + -0.00020302404300309718, + -0.030343450605869293, + -0.03218494728207588, + -0.00562068447470665, + 0.014608282595872879, + -0.004459443036466837, + -0.025767195969820023, + -0.026550520211458206, + -0.020132768899202347, + 0.04974786937236786, + -0.012491936795413494, + -8.014671766432002e-5, + -0.010183196514844894, + -0.012368254363536835, + 0.020627500489354134, + 0.018126364797353745, + -0.0028000352904200554, + -0.009736564941704273, + 0.0023963493295013905, + -0.02036639302968979, + 0.03551063314080238, + 0.012732431292533875, + -0.02018773928284645, + -0.02896920032799244, + 0.004005940165370703, + 0.02584965154528618, + -0.02005031518638134, + -0.03625272959470749, + 0.012024692259728909, + 0.005754673853516579, + -0.012601876631379128, + 0.0029804056975990534, + -0.0005862037069164217, + -0.0004365392669569701, + 0.006218483671545982, + -0.0020493511110544205, + -0.029463930055499077, + 0.004576254170387983, + 0.016188669949769974, + -0.02251022309064865, + 0.023156121373176575, + -0.01633983850479126, + -0.010293136350810528, + -0.061456482857465744, + -0.013680663891136646, + -0.0004275207465980202, + 0.026344381272792816, + -0.014154779724776745, + -0.004012811463326216, + 0.0002585308684501797, + 0.0007966358098201454, + -0.0028275204822421074, + 0.007963781245052814, + 0.013206547126173973, + -0.0067647481337189674, + 0.026000820100307465, + 0.031058061867952347, + 0.009289933368563652, + -6.677998317172751e-5, + -0.0007678624824620783, + 0.01599627546966076, + 0.008142434060573578, + -0.017301814630627632, + 0.007812613621354103, + 0.011420021764934063, + 0.03311943635344505, + 0.001177560887299478, + 0.009372388012707233, + 0.049555473029613495, + -0.021383337676525116, + 0.018703550100326538, + -0.02366459369659424, + -0.009070053696632385, + 0.03001363016664982, + -0.0069708856754004955, + -0.002676352858543396, + 0.021836839616298676, + -0.0008322804351337254, + -0.022881271317601204, + 0.02990369126200676, + 0.0027313227765262127, + 0.02130088210105896, + 0.006472719833254814, + 0.009393001906573772, + 0.0317726731300354, + -0.006094800774008036, + -0.0073041412979364395, + 0.006483026780188084, + -0.017920225858688354, + 0.011378793977200985, + -0.02178187109529972, + -0.01012822613120079, + 0.028254590928554535, + -0.007434695027768612, + 0.002521749585866928, + 0.03331183269619942, + -0.014786935411393642, + 0.018098879605531693, + -0.008829559199512005, + -0.02105351723730564, + 0.03001363016664982, + -0.0019187972648069263, + -0.03317440673708916, + 0.057113852351903915, + 0.007805742789059877, + 0.0003321820986457169, + 0.0016808800864964724, + -0.020311422646045685, + -0.02476399391889572, + 0.02362336590886116, + 0.0065964022651314735, + 0.004431957844644785, + 0.012059047818183899, + -0.020792409777641296, + -0.008307344280183315, + 0.02501135878264904, + 0.03237733989953995, + -0.0007231993367895484, + -0.00024843873688951135, + 0.024104353040456772, + -0.009111280553042889, + -0.02869435027241707, + -0.008094334974884987, + 0.01568019762635231, + 0.00032402249053120613, + 0.019033368676900864, + -0.011612416245043278, + -0.008946370333433151, + -0.032734647393226624, + 0.0005295159062370658, + -0.0008803792297840118, + -0.04098014906048775, + 0.00452815555036068, + 0.018305016681551933, + 0.0016448060050606728, + 0.019129566848278046, + 0.01741175353527069, + -0.011097072623670101, + 0.03191009536385536, + 0.0018569559324532747, + -0.012718688696622849, + -0.011887267231941223, + 0.004644966684281826, + -0.011303210631012917, + 0.0006102531333453953, + -0.003978454973548651, + -0.011261982843279839, + -0.010238165967166424, + 0.0042945328168570995, + 0.004785827361047268, + -0.015446575358510017, + 0.009001340717077255, + -0.017947711050510406, + -0.0008443051483482122, + -2.982016303576529e-5, + 0.0027588079683482647, + 0.004930123686790466, + 0.002430705586448312, + -0.013034765608608723, + -0.02653677761554718, + -0.0310855470597744, + -0.020737439393997192, + -0.01682082563638687, + 0.0011732663260772824, + 0.03015105612576008, + -0.002873901277780533, + -0.03237733989953995, + 0.008836430497467518, + 0.010835965164005756, + 0.0073041412979364395, + -0.005648169666528702, + -0.005057241767644882, + -0.01037559099495411, + 0.013021023012697697, + -0.0013630847679451108, + -0.0015589153626933694, + 0.010870321653783321, + 0.008389798924326897, + 0.006891866214573383, + 0.0192120224237442, + -0.020902350544929504, + 0.003250102512538433, + -0.024915160611271858, + -0.010265651158988476, + 0.01893717236816883, + 0.027911027893424034, + 0.013261517509818077, + 0.009977058507502079, + -0.017988938838243484, + 0.0005308042746037245, + -0.003693298203870654, + 0.02060001529753208, + -0.006472719833254814, + -0.007194201461970806, + 0.010540501214563847, + -0.0015408783219754696, + -0.019198279827833176, + -0.008163047954440117, + -0.012375125661492348, + -8.88968279468827e-5, + -0.01223082933574915, + -0.002303587505593896, + -0.020627500489354134, + 0.0024221164640039206, + -0.0017264022026211023, + 0.011399407871067524, + -0.011371922679245472, + 0.011145171709358692, + 0.0017358501208946109, + -0.003140162443742156, + 0.015858851373195648, + -0.012821757234632969, + -0.01416852232068777, + 0.014786935411393642, + -0.02088860794901848, + -0.0016774445539340377, + -0.007194201461970806, + 0.0021507020574063063, + -0.007043033838272095, + -0.01609247364103794, + -0.03122297115623951, + 0.015611485578119755, + -0.016436036676168442, + -0.0231698639690876, + 0.011969721876084805, + -0.018827231600880623, + 0.006562046241015196, + 0.003679555607959628, + -0.015638969838619232, + -0.003748268121853471, + -0.007778257597237825, + -0.017466723918914795, + 0.0011045538121834397, + 0.02257893607020378, + -0.007091132458299398, + 0.0175216943025589, + 0.004473185166716576, + 0.008870786987245083, + -0.03083818033337593, + 0.013357714749872684, + 0.021465793251991272, + 0.0034442152827978134, + -0.007750772871077061, + 0.002528620883822441, + 0.0033669136464595795, + 0.0012540036113932729, + 0.02872183546423912, + -0.012388868257403374, + -0.008479125797748566, + -0.015872593969106674, + 0.022565193474292755, + 0.013708149082958698, + -0.008699005469679832, + 0.037379615008831024, + -0.004157107789069414, + -0.007166716270148754, + -0.0033858097158372402, + 0.02205672115087509, + -0.007077389862388372, + 0.0067510055378079414, + -0.03292704373598099, + 0.011653644032776356, + 0.022194145247340202, + 0.0015812469646334648, + -0.01793396845459938, + -0.018717290833592415, + -0.00010210251639364287, + 0.009654109366238117, + -0.0026351253036409616, + -0.0003605260280892253, + -0.039770808070898056, + -0.007455308921635151, + -0.006125721614807844, + -0.010856579057872295, + -0.007702674251049757, + -0.01193536538630724, + 0.023540910333395004, + 0.016188669949769974, + -0.011261982843279839, + 0.02858440950512886, + -0.012560649774968624, + 0.029546385630965233, + -0.0007816049619577825, + -0.0009447972406633198, + -0.031937580555677414, + 0.016174929216504097, + 0.018827231600880623, + 0.02532743662595749, + 0.015831366181373596, + -0.025588544085621834, + -0.021603217348456383, + -0.027526237070560455, + -0.01775531657040119, + 0.013124092482030392, + -0.021561989560723305, + -0.0100801270455122, + 0.03465859591960907, + 0.010361848399043083, + 0.02473650872707367, + -0.008870786987245083, + -0.01014884002506733, + 0.0072972699999809265, + -0.022840043529868126, + 0.02428300678730011, + 0.010829093866050243, + 0.010698540136218071, + -0.0033617601729929447, + -2.1445823222165927e-5, + -0.019940374419093132, + 0.00492668803781271, + 0.0046312240883708, + -0.004775520414113998, + -0.033146921545267105, + -0.014333432540297508, + 0.019335703924298286, + -0.008575323037803173, + -0.013845574110746384, + 0.022743845358490944, + 0.0028996686451137066, + 0.000653198454529047, + 0.006328423507511616, + -0.02883177623152733, + -0.009152508340775967, + -0.014429629780352116, + -0.008719619363546371, + -0.02123217098414898, + 0.005751238204538822, + -0.02032516524195671, + -0.022070463746786118, + 0.011207012459635735, + 0.003107524011284113, + 0.04098014906048775, + 0.0060226526111364365, + -0.004782391712069511, + 0.0018999013118445873, + 0.003177954349666834, + -0.009516684338450432, + 0.005156875122338533, + -0.006032959558069706, + -0.013976127840578556, + 0.009413615800440311, + -0.006352473050355911, + -0.003119548549875617, + 0.021699415519833565, + 0.004218949005007744, + -0.018305016681551933, + 0.013591337017714977, + 0.012952310964465141, + -0.00027098500868305564, + -0.01693076640367508, + 0.004411343950778246, + 0.005658476613461971, + 0.008520352654159069, + 0.00147903710603714, + 0.002478804439306259, + -0.005033192224800587, + -0.0005140556022524834, + -0.006153206806629896, + 0.011784197762608528, + -0.021878067404031754, + 0.018442440778017044, + -0.029436444863677025, + 0.0014446808490902185, + -0.019198279827833176, + -0.01198346447199583, + 0.01759040728211403, + -0.001756463898345828, + -0.013041636906564236, + 0.03281710296869278, + -0.004909509792923927, + -0.006458977237343788, + 0.010093869641423225, + -0.018882201984524727, + -0.025038843974471092, + 0.011825425550341606, + -0.004150236491113901, + -0.013811217620968819, + 0.026797885075211525, + -0.006366215646266937, + -0.009894603863358498, + -0.012856113724410534, + 0.01731555536389351, + 0.005442032124847174, + 0.007798871491104364, + 0.0423269160091877, + 0.00382041628472507, + 0.0010590318124741316, + 0.001917079440318048, + 0.01804390922188759, + -0.0034201659727841616, + 0.020036572590470314, + 0.012794272042810917, + -0.004493799060583115, + 0.004778956063091755, + 0.017246844246983528, + 0.007757644169032574, + 0.0023894780315458775, + 0.019610553979873657, + -0.0018277531489729881, + -0.021561989560723305, + 0.030343450605869293, + -0.00816991925239563, + -0.014841905795037746, + 0.0023173298686742783, + -0.014814420603215694, + -0.005359577015042305, + 0.02428300678730011, + 0.02303243800997734, + -0.0010598907247185707, + 0.01223082933574915, + 0.004057474434375763, + -0.015391605906188488, + -0.026949051767587662, + 0.0060844942927360535, + -0.0034751358907669783, + 0.007393467705696821, + -0.01574891060590744, + 0.0031693652272224426, + -0.008609679527580738, + 0.010712282732129097, + -0.013941771350800991, + -0.00905631110072136, + 0.01528166513890028, + -0.03452117368578911, + 0.014051711186766624, + -0.03452117368578911, + -0.006527689751237631, + -0.002934024902060628, + 0.014127295464277267, + -0.022675132378935814, + 0.015048042871057987, + -0.0018122928449884057, + 0.010856579057872295, + 0.005095033906400204, + -0.006812846753746271, + 0.024228036403656006, + 0.0018999013118445873, + -0.01841495744884014, + 0.003775753313675523, + 0.0015666455728933215, + 0.020586272701621056, + -0.014731965027749538, + 0.020874865353107452, + -0.023059923201799393, + 0.0020235837437212467, + 0.009585397318005562, + 0.011955979280173779, + -0.012409482151269913, + 0.008183661848306656, + 0.0006682293023914099, + 0.018607351928949356, + -0.017356783151626587, + -0.025451119989156723, + -0.008472254499793053, + -0.016600945964455605, + -0.010671054944396019, + -0.006338730454444885, + -0.00684376759454608, + 0.0006235661567188799, + 0.01959681138396263, + 0.00312641984783113, + 0.010334364138543606, + -0.002277820138260722, + 0.002214261097833514, + 0.009118151850998402, + 0.015240438282489777, + -0.01834624446928501, + -0.00173670903313905, + 0.022262858226895332, + -0.001485908403992653, + -0.017054447904229164, + -0.011303210631012917, + 0.014539570547640324, + -0.009612882509827614, + 0.017947711050510406, + -0.010451175272464752, + 0.005737495608627796, + 0.02490141987800598, + -0.020696211606264114, + 0.004548768978565931, + 0.0049747866578400135, + -0.011818554252386093, + -0.021589474752545357, + -0.02883177623152733, + -0.022152917459607124, + -0.01113830041140318, + -0.010897806845605373, + -0.0009465150069445372, + -0.039358533918857574, + 0.004019682761281729, + -0.008424155414104462, + 0.02869435027241707, + -0.003755139419808984, + 0.026770399883389473, + 0.003086910117417574, + 0.023582138121128082, + 0.0006119708996266127, + -0.01396238524466753, + 0.013982999138534069, + -0.010279393754899502, + 0.029683811590075493, + -0.01269807480275631, + 0.006204741075634956, + 0.03015105612576008, + -0.004947301931679249, + -0.009461714886128902, + 0.0006858368869870901, + 0.014388402923941612, + 0.029161594808101654, + 0.013653178699314594, + -0.023389743641018867, + -0.0043082754127681255, + 0.0038856933824718, + -0.024118095636367798, + -0.022331571206450462, + -0.017741573974490166, + 0.0025320565328001976, + 0.0041158804669976234, + -0.03927607834339142, + 0.004019682761281729, + 0.01131008192896843, + 0.0261519867926836, + 0.014113552868366241, + 0.006933093536645174, + -0.004885460715740919, + 0.022496480494737625, + -0.00896698422729969, + 0.012052176520228386, + 0.004174286033958197, + 0.013467654585838318, + -0.005091598257422447, + 0.009413615800440311, + -0.002102603204548359, + -0.0049885292537510395, + 0.017150646075606346, + 0.003803238272666931, + 0.0025938977487385273, + 0.01528166513890028, + -0.01679334044456482, + -0.004624352790415287, + -0.007592733949422836, + 0.02205672115087509, + 0.011268854141235352, + 0.009496071375906467, + -0.009324289858341217, + -0.027801087126135826, + -0.009949573315680027, + 0.0017160952556878328, + 0.016765855252742767, + 0.004194899462163448, + 0.012141503393650055, + 0.011378793977200985, + -0.010155711323022842, + 0.0011818554485216737, + -0.004040296655148268, + 0.010863450355827808, + 0.008520352654159069, + 0.003004455240443349, + 0.022015493363142014, + 0.017920225858688354, + 0.007970652543008327, + -0.01290421187877655, + 0.0014867671998217702, + -0.004332324489951134, + 0.0005475529469549656, + -0.010835965164005756, + -0.023980671539902687, + -0.01515798270702362, + 0.025052586570382118, + 0.0062287901528179646, + -0.01900588348507881, + 0.00876084715127945, + -0.021520763635635376, + -0.0009808712638914585, + -0.008712748065590858, + -0.0104236900806427, + 0.002812060061842203, + -0.004370116628706455, + -0.007572120055556297, + -0.02373330667614937, + -0.010815351270139217, + 0.021699415519833565, + -0.014869390055537224, + -7.595954957650974e-5, + -0.014443372376263142, + -0.0049747866578400135, + -0.007743901573121548, + -0.01831875927746296, + 0.06777803599834442, + 0.012986667454242706, + 0.015638969838619232, + 0.014841905795037746, + -0.002045915462076664, + -0.0188684593886137, + -0.015693940222263336, + 0.009715951047837734, + 0.007496536243706942, + 0.0060707516968250275, + -0.02733384259045124, + -0.010293136350810528, + 0.02196052297949791, + 0.014099810272455215, + -0.025038843974471092, + 0.0012471323134377599, + 4.007335883216001e-5, + -0.007235428784042597, + 0.004720550496131182, + 0.01221021544188261, + 0.006187562830746174, + 0.006740698590874672, + 0.011426893062889576, + 0.015611485578119755, + -0.01221021544188261, + 0.00891201477497816, + -0.012533164583146572, + 0.0026746350340545177, + 0.014745707623660564, + 0.035675544291734695, + 0.0027313227765262127, + -0.010086998343467712, + -0.0014652946265414357, + -0.02587713673710823, + -0.0020235837437212467, + -0.0035799224860966206, + 0.0021335238125175238, + -0.008382927626371384, + -0.0020115592051297426, + 0.007221686188131571, + -0.011653644032776356, + -0.0021077566780149937, + 0.007530892733484507, + 0.02494264580309391, + -0.022111689671874046, + -0.006709778215736151, + -0.004909509792923927, + 0.003621150040999055, + -0.01890968717634678, + 0.002798317465931177, + 0.005651605315506458, + 0.010327492840588093, + 0.014745707623660564, + 0.023389743641018867, + 0.025313694030046463, + -0.00222800369374454, + 0.0027828572783619165, + 0.020173996686935425, + 0.020077800378203392, + -0.00753776403144002, + -0.028048451989889145, + -0.0018174463184550405, + -0.004029989708214998, + 0.0002677641168702394, + -0.009441100992262363, + -0.006221919320523739, + -0.025890879333019257, + -0.0029700989834964275, + 0.0016508183907717466, + -0.02075118198990822, + -0.01547406055033207, + -0.00036095548421144485, + 0.00370704079978168, + -0.03136039525270462, + -0.009049439802765846, + 0.0251487847417593, + -0.0017985503654927015, + 0.03160776197910309, + 0.02539614960551262, + 0.0060501378029584885, + 0.001454128767363727, + 0.000996331567876041, + -0.017150646075606346, + 0.0029237179551273584, + 0.0019411288667470217, + -0.01555651519447565, + 0.01094590499997139, + -0.028749320656061172, + 0.014182264916598797, + -0.017150646075606346, + -0.01800268143415451, + 0.00217303354293108, + 0.00851348228752613, + 0.013419556431472301, + -0.018813489004969597, + 0.009592268615961075, + 0.005469516851007938, + 0.013625693507492542, + -0.0001807998341973871, + -0.013989870436489582, + 0.009049439802765846, + 0.003281023120507598, + -0.014938103035092354, + 0.009173122234642506, + -0.0030851922929286957, + -0.0007442425121553242, + 0.02244151011109352, + -0.0026162294670939445, + -0.001898183487355709, + -0.006053573451936245, + -0.00046166227548383176, + -0.005651605315506458, + -0.0005857742507942021, + 0.006245968397706747, + -0.005421418230980635, + -0.004741164389997721, + 0.011990335769951344, + -0.009578526020050049, + -0.0135638527572155, + -0.019349446520209312, + -0.008815816603600979, + -0.0003293906629551202, + 0.006287196185439825, + -0.02833704464137554, + 0.004225820302963257, + 0.010155711323022842, + -0.010760381817817688, + -0.014814420603215694, + 0.00022524825180880725, + 0.008245502598583698, + 0.021342109888792038, + 0.004699936602264643, + 0.014924360439181328, + 0.0008709312533028424, + 0.010107612237334251, + 0.008025622926652431, + -0.007833227515220642, + 0.008431026712059975, + -0.009324289858341217, + -0.009509813040494919, + 0.021328367292881012, + -0.002430705586448312, + 0.013213418424129486, + 0.009303675964474678, + 0.010217552073299885, + 0.013515753671526909, + -0.0041021378710865974, + -0.014223492704331875, + 0.01797519624233246, + -0.005469516851007938, + 0.023128636181354523, + -0.028611894696950912, + 0.008094334974884987, + -0.0023499683011323214, + -0.010801608674228191, + 0.013845574110746384, + -0.0423818863928318, + 0.00953729823231697, + -0.01602376066148281, + -0.00891201477497816, + -0.008699005469679832, + -0.01349513977766037, + -0.0010787866776809096, + -0.004696500953286886, + -0.023224832490086555, + 0.01693076640367508, + -0.004387294873595238, + 0.011784197762608528, + -0.0026265361811965704, + 0.0042670476250350475, + 0.00025423633633181453, + 0.019995344802737236, + 0.03468608111143112, + -0.030755726620554924, + 0.018758518621325493, + -0.01966552436351776, + 0.013921157456934452, + -0.0097503075376153, + -0.01170861441642046, + 0.0033926810137927532, + -0.015460317954421043, + -0.008218018338084221, + 0.009812148287892342, + -0.009179993532598019, + -0.010567986406385899, + -0.014319689944386482, + 0.004229255951941013, + -0.00398876192048192, + 0.004304839763790369, + -0.022194145247340202, + -0.01319967582821846, + 0.03405392915010452, + 0.001872416352853179, + -0.017095675691962242, + 0.007256042677909136, + 0.0046277884393930435, + 0.03138788044452667, + 0.012120889499783516, + 0.04683445766568184, + 0.005177488550543785, + 0.005861178506165743, + 0.0009439383284188807, + 0.030590815469622612, + -0.0008580476278439164, + 0.006974321324378252, + -0.004249869845807552, + -0.012704946100711823, + -0.018332501873373985, + -0.01223082933574915, + 0.001034982386045158, + -0.039221107959747314, + -0.01627112552523613, + 0.017219359055161476, + 0.016875796020030975, + 0.003775753313675523, + 0.012045305222272873, + 0.012354511767625809, + 0.025052586570382118, + 0.016422294080257416, + 0.0037860600277781487, + -0.0039063068106770515, + -0.004390730522572994, + 0.008211147040128708, + 5.962019258731743e-6, + 0.0034717002417892218, + -0.00920747872442007, + -0.010629827156662941, + 0.019514357671141624, + 0.03251476585865021, + 0.004407908301800489, + -7.633532368345186e-5, + -0.0274437814950943, + -0.01238199695944786, + -0.00428422586992383, + 0.0104236900806427, + 0.010636698454618454, + 0.0016499594785273075, + -0.004325453657656908, + 0.021740643307566643, + 0.008128691464662552, + -0.010458046570420265, + 0.010780994780361652, + -0.011385665275156498, + 0.004191463813185692, + -0.0015090988017618656, + -0.01897840015590191, + 0.007915683090686798, + 0.001472165808081627, + -0.00097142334561795, + -2.1392141206888482e-5, + -0.011000875383615494, + 0.009289933368563652, + -0.0020562224090099335, + -0.006692599970847368, + 0.009125023148953915, + -0.00990147516131401, + -0.015377863310277462, + 0.011852910742163658, + 0.006960578728467226, + -0.00509846955537796, + 0.003744832705706358, + 0.019266992807388306, + -0.02359588071703911, + 0.01101461797952652, + -0.016642173752188683, + 0.01408606767654419, + -0.02760869264602661, + 0.0004530732112471014, + 0.0018380600959062576, + -0.00753776403144002, + 0.0065379966981709, + -0.007359111215919256, + -0.0022606421262025833, + 0.029271535575389862, + 0.005455774255096912, + 0.0018311887979507446, + -0.006197869777679443, + -0.012966053560376167, + -0.004497234709560871, + 0.029024170711636543, + -0.009928959421813488, + -0.00561037752777338, + 0.0029426137916743755, + -0.006754441186785698, + -0.005551971960812807, + -0.030590815469622612, + 0.0158863365650177, + 0.02685285545885563, + 0.01385931670665741, + 0.027965998277068138, + -0.0030010195914655924, + -0.0008546120370738208, + -0.0018672628793865442, + 0.001047865953296423, + 0.0069468361325562, + 0.009289933368563652, + -0.006074187345802784, + 0.008650907315313816, + 0.04350877180695534, + -0.02230408601462841, + -0.014979330822825432, + 0.003524952568113804, + -0.005404239986091852, + -0.019679266959428787, + -0.007860712707042694, + 0.018263788893818855, + 0.023224832490086555, + 0.00909066665917635, + -0.0017272611148655415, + 0.022042978554964066, + -0.005538229364901781, + 0.0030645786318928003, + -0.0031676474027335644, + -0.012498808093369007, + -0.0053698839619755745, + 0.0018878766568377614, + -0.012986667454242706, + 0.02508007176220417, + -0.007737030275166035, + -0.004029989708214998, + -0.003396116429939866, + 0.008802074007689953, + 0.02619321458041668, + -0.017494209110736847, + 0.015391605906188488, + -0.008245502598583698, + 0.020627500489354134, + 0.004225820302963257, + 0.006002039182931185, + -0.024118095636367798, + 0.03402644395828247, + 0.0035867937840521336, + -0.018827231600880623, + -0.006335294805467129, + 0.015089270658791065, + 0.018098879605531693, + -0.0012900776928290725, + -0.001949717872776091, + -0.003816980868577957, + -0.011509347707033157, + 0.0018810053588822484, + -0.017356783151626587, + 0.00468275835737586, + 0.00487515376880765, + -0.00643492816016078, + 0.006795668508857489, + 0.00023727293591946363, + -0.005366448312997818, + 0.007695802953094244, + 0.013831831514835358, + -0.001608732040040195, + 0.017535436898469925, + 0.007812613621354103, + 0.005744366906583309, + -0.017288072034716606, + -0.014223492704331875, + 0.013900543563067913, + 0.018895944580435753, + -0.00834170076996088, + -0.01416852232068777, + 0.004325453657656908, + 0.005043499171733856, + -0.010664183646440506, + -0.008664648979902267, + 0.002348250476643443, + -0.019885404035449028, + 0.004531591199338436, + 0.013955513946712017, + -0.02872183546423912, + -0.003796366974711418, + 0.0022812557872384787, + -0.01233389787375927, + 0.0006665114779025316, + 0.005789030343294144, + -0.01866232231259346, + -0.001485908403992653, + -0.019266992807388306, + -0.006328423507511616, + -0.0443333201110363, + 0.0032157462555915117, + 0.015776395797729492, + 0.005129389930516481, + 0.005270250607281923, + -0.0043151467107236385, + -0.011887267231941223, + 0.02584965154528618, + 0.025712227448821068, + 0.011083330027759075, + 0.017741573974490166, + -0.004651837982237339, + -0.009942702017724514, + 0.009922088123857975, + 0.008678391575813293, + 0.024200551211833954, + -0.01845618337392807, + 0.02380201779305935, + -0.02869435027241707, + 0.008224889636039734, + -0.01695825159549713, + 0.008156176656484604, + -0.0027296049520373344, + 0.011550575494766235, + 0.011275725439190865, + -0.00010806118370965123, + 0.003346299985423684, + -0.015405348502099514, + -0.00010102888336405158, + -0.007853841409087181, + 0.015515288338065147, + -0.00829360168427229, + 0.0023448148276656866, + 0.01059547159820795, + -0.005466081202030182, + 0.005637862719595432, + 0.009867118671536446, + -0.017081933096051216, + -0.0016370759112760425, + 0.019445644691586494, + 0.011062716133892536, + -0.005177488550543785, + 0.006606709212064743, + -0.009922088123857975, + 0.0019033369608223438, + -0.013185933232307434, + 0.016106216236948967, + -0.024310491979122162, + 0.022730102762579918, + 0.006874687969684601, + -0.01141315046697855, + 0.007098003756254911, + 0.007194201461970806, + 0.011818554252386093, + 0.005198102444410324, + 0.002166162244975567, + -0.025052586570382118, + 0.0014360917266458273, + 0.007599605247378349, + -0.018016424030065536, + -0.013735633343458176, + 0.008382927626371384, + -0.02760869264602661, + -0.01834624446928501, + -0.017466723918914795, + -0.012416353449225426, + -0.0069846282713115215, + -0.01859360933303833, + 0.01181168295443058, + 0.0281309075653553, + -0.002533774357289076, + -0.01679334044456482, + -0.0218505822122097, + 0.018373729661107063, + -0.01168800052255392, + 0.014896875247359276, + -0.015666455030441284, + -0.011502476409077644, + -0.007139231543987989, + -0.03281710296869278, + 0.01814010739326477, + -0.052743732929229736, + 0.010808479972183704, + 0.0017899612430483103, + 0.00886391568928957, + -0.015707682818174362, + 0.005795901641249657, + -0.009530426934361458, + 0.01884097419679165, + 0.010059514082968235, + -0.024173066020011902, + 0.010313750244677067, + -0.03784685954451561, + 0.03298201039433479, + 0.00591614842414856, + -0.002238310407847166, + 0.020943578332662582, + 0.025822166353464127, + -0.014209750108420849, + 0.014305947348475456, + -0.0019153616158291698, + -0.014704480767250061, + -0.00978466309607029, + 0.012189601548016071, + -0.001582105876877904, + -0.005050370469689369, + 0.017604148015379906, + 0.0011036948999390006, + 0.004593432415276766, + -0.0020871430169790983, + 0.011282596737146378, + 0.016312353312969208, + 0.02310115098953247, + 0.0192120224237442, + -0.0031453159172087908, + -0.001010074163787067, + 0.0037998026236891747, + 0.003552437527105212, + 0.032075006514787674, + 0.02628941275179386, + -0.0013940053759142756, + 0.008211147040128708, + 0.014058582484722137, + 0.013996741734445095, + -0.009819019585847855, + -0.029024170711636543, + 0.016449779272079468, + -0.006053573451936245, + 0.006211612373590469, + 0.017260586842894554, + 0.02011902816593647, + 0.011035231873393059, + -0.004744600038975477, + -0.004163979087024927, + -0.011646772734820843, + 0.0050091431476175785, + -0.006761312484741211, + 0.026426836848258972, + -0.0009052875102497637, + 0.007627090439200401, + 0.01702696457505226, + 0.010835965164005756, + -0.007792000193148851, + -0.027086477726697922, + 0.003930356353521347, + -0.006994935218244791, + 0.010416818782687187, + 0.00884330179542303, + 0.005919584073126316, + -0.014965588226914406, + -0.007544635329395533, + -0.009777792729437351, + -0.008224889636039734, + 0.024173066020011902, + 0.017040705308318138, + 0.010327492840588093, + 0.005868049804121256, + 0.01299353875219822, + 0.010004543699324131, + -0.013089735992252827, + 0.029051655903458595, + -0.00990147516131401, + 0.014037968590855598, + -0.007867584004998207, + 0.016010018065571785, + 0.00966098066419363, + -0.003614278743043542, + -0.03919362276792526, + 0.011667386628687382, + 0.027938513085246086, + -0.00741408159956336, + 0.01665591634809971, + -0.006592966616153717, + 0.009846504777669907, + 0.021465793251991272, + -0.003055989509448409, + 0.02046258933842182, + -0.0010633263736963272, + 0.02053130231797695, + -0.0027811394538730383, + -0.01408606767654419, + 0.01713690347969532, + 0.008073722012341022, + -0.0041090091690421104, + -0.003454522229731083, + -0.016642173752188683, + 8.669588169141207e-6, + 0.004167414736002684, + -0.008369185961782932, + -0.009427358396351337, + 0.01918453723192215, + 0.01198346447199583, + -0.01181168295443058, + 0.011564318090677261, + 0.002221132395789027, + 0.02022896707057953, + -0.01396238524466753, + 0.006081058643758297, + -0.03894625976681709, + 0.0017495927168056369, + 0.006194434128701687, + -0.014718222431838512, + 0.0037654463667422533, + -0.01873103342950344, + 0.00827298779040575, + -0.0036589419469237328, + -0.00292200013063848, + 0.017769059166312218, + -0.0004582266556099057, + 0.012354511767625809, + 0.02965632639825344, + -0.022152917459607124, + 0.020861122757196426, + -0.003737961407750845, + -0.022262858226895332, + -0.008747104555368423, + 0.01210714690387249, + 0.020943578332662582, + -0.007187330164015293, + -0.009241834282875061, + -0.009619753807783127, + -0.019088339060544968, + -0.01406545378267765, + 0.0018037037225440145, + 0.008444769307971, + 0.005940197966992855, + 0.011887267231941223, + 0.003102370537817478, + 0.001755604986101389, + 0.009887732565402985, + -0.004919816739857197, + 0.003210592782124877, + 0.017810286954045296, + -0.03344925865530968, + 0.001010074163787067, + -0.0042945328168570995, + 0.015501545742154121, + 0.01309660729020834, + 0.007785128895193338, + -0.0022091076243668795, + 0.03542817756533623, + 0.011825425550341606, + 0.006008910480886698, + 0.011035231873393059, + -0.003463111352175474, + 0.004734293092042208, + -0.015130497515201569, + 0.0029941482935100794, + -0.000996331567876041, + -0.0005935044609941542, + 0.01372189074754715, + -0.021905552595853806, + -0.013440169394016266, + -0.008156176656484604, + -0.015212953090667725, + -0.027979740872979164, + 0.0030525538604706526, + -0.008252373896539211, + -0.020407618954777718, + -0.004679322708398104, + -0.00016362170572392642, + -0.0027519366703927517, + -0.018428700044751167, + -0.004246434196829796, + -0.006493333727121353, + 0.017191873863339424, + 0.0008000714587979019, + 0.003442497458308935, + -0.01980295032262802, + 0.013900543563067913, + 0.018263788893818855, + -0.006689164321869612, + -0.022853786125779152, + 0.00903569720685482, + -0.024200551211833954, + 0.01754917949438095, + -0.001865545054897666, + -0.015803880989551544, + 0.007441566325724125, + -0.01890968717634678, + 0.027938513085246086, + -0.009461714886128902, + -0.019583068788051605, + -0.02389821596443653, + -0.004555640276521444, + 0.0014618589775636792, + -0.0018638272304087877, + -0.007544635329395533, + 0.001279770745895803, + 0.014649510383605957, + -0.016051245853304863, + -0.014127295464277267, + -0.013886800967156887, + -0.0030267867259681225, + 0.0021386772859841585, + 0.008183661848306656, + 0.010492402128875256, + 0.009489200077950954, + 0.008307344280183315, + -0.001222224091179669, + 0.02664671652019024, + -0.011213883757591248, + 0.003234642092138529, + -0.009296804666519165, + 0.009846504777669907, + 0.02573971264064312, + -1.2876887922175229e-5, + 0.013976127840578556, + 0.015446575358510017, + -0.005572585854679346, + 0.013611950911581516, + 0.02043510414659977, + -0.014058582484722137, + -0.0038891287986189127, + -0.026564262807369232, + -0.015116755850613117, + -0.008314215578138828, + -0.005242765415459871, + -0.005936762318015099, + 0.009042568504810333, + -0.0016121675726026297, + -0.021479535847902298, + -0.017892740666866302, + 0.012320155277848244, + 0.008224889636039734, + 0.0039406633004546165, + -0.012780529446899891, + -0.027759859338402748, + -0.013130963779985905, + -0.007551506627351046, + 0.022001750767230988, + -0.030398420989513397, + 0.003449368756264448, + -0.01918453723192215, + 0.007723287679255009, + 0.022592678666114807, + 0.015391605906188488, + -0.033421773463487625, + -0.017947711050510406, + 0.004139929544180632, + -0.014745707623660564, + -0.0081012062728405, + 0.004205206409096718, + 0.0017916790675371885, + -0.003634892636910081, + 0.008561580441892147, + 0.0007734453538432717, + -0.03149782121181488, + -0.004895767197012901, + 0.006919351406395435, + -0.003069732105359435, + 0.010554243810474873, + 0.04886834695935249, + 0.0024736509658396244, + -0.00659983791410923, + 0.026206957176327705, + -0.013364586047828197, + -0.005510744638741016, + -0.003816980868577957, + -0.002999301766976714, + -0.0036589419469237328, + 0.01973423734307289, + -0.00321746408008039, + -0.013515753671526909, + 0.022661389783024788, + 0.003559308825060725, + 0.017631633207201958, + -0.0032844587694853544, + -0.02168567292392254, + 0.0005694550345651805, + 0.0013794039841741323, + 0.03136039525270462, + 0.0016010018298402429, + -0.014580797404050827, + 0.01782402954995632, + 0.000907005334738642, + 0.011282596737146378, + -0.009544169530272484, + 0.01475945021957159, + -0.022675132378935814, + 0.009001340717077255, + -0.012155245989561081, + 0.011495605111122131, + 0.020654985681176186, + -0.020146511495113373, + -0.005617248825728893, + -0.01401735469698906, + 0.004751470871269703, + 0.003992197569459677, + -0.012883597984910011, + -0.002109474502503872, + 0.012155245989561081, + -0.010492402128875256, + 0.014182264916598797, + -0.01790648326277733, + -0.028075937181711197, + 0.018895944580435753, + -0.031140515580773354, + -0.017494209110736847, + -0.008156176656484604, + 0.024379203096032143, + -0.021342109888792038, + 0.009983929805457592, + -0.007709545083343983, + 0.01151621900498867, + -0.0012883598683401942, + -0.017301814630627632, + 0.017494209110736847, + 0.009447972290217876, + 0.017494209110736847, + 0.0027622433844953775, + 0.019376931712031364, + 0.020613757893443108, + -0.01280114334076643, + -0.013508882373571396, + 0.020173996686935425, + 0.011701743118464947, + -0.014113552868366241, + 0.0021318059880286455, + -0.01376998983323574, + -0.016848310828208923, + 0.001858673756942153, + -0.019720494747161865, + -0.0022091076243668795, + 0.010849707759916782, + -0.017150646075606346, + -0.013646307401359081, + -0.006160077638924122, + 0.0057100108824670315, + -0.0014395273756235838, + 0.007792000193148851, + 0.006874687969684601, + -0.004593432415276766, + -0.00024242638028226793, + -0.0029116931837052107, + 0.018621094524860382, + 0.014745707623660564, + -0.0017100829863920808, + -0.004342631436884403, + -0.018689807504415512, + 0.01873103342950344, + 0.005472952499985695, + -0.013646307401359081, + 0.014512085355818272, + 0.010499273426830769, + -0.0221391748636961, + -0.006905608810484409, + -0.0155427735298872, + -0.0038238519337028265, + 0.013433299027383327, + -0.009255576878786087, + -0.04469062760472298, + -0.0053561413660645485, + 0.0028000352904200554, + -0.011358180083334446, + 0.0049610440619289875, + 0.018552381545305252, + -0.020558787509799004, + 0.008197404444217682, + -0.004576254170387983, + 0.03617027401924133, + -0.020009087398648262, + 0.00555884325876832, + -0.0026849419809877872, + 0.005270250607281923, + 0.014855647459626198, + 0.012753044255077839, + -0.006915915757417679, + 0.016257382929325104, + -0.012127760797739029, + -0.0067647481337189674, + 0.0021300881635397673, + -0.0009868836496025324, + -0.004325453657656908, + 0.010416818782687187, + -0.002944331616163254, + 0.006909044459462166, + -0.004356374032795429, + -0.0005359576898626983, + -0.009413615800440311, + 0.00909066665917635, + -0.007228557486087084, + 0.012636233121156693, + 0.023568395525217056, + 0.0034442152827978134, + -0.012622490525245667, + 0.018167590722441673, + -0.00955791212618351, + -0.007723287679255009, + -0.013955513946712017, + 0.009551040828227997, + -0.01702696457505226, + -0.008575323037803173, + -0.007077389862388372, + 0.014319689944386482, + 0.00015664308739360422, + -0.003992197569459677, + 0.0026815063320100307, + -0.004806441254913807, + -0.010210680775344372, + 0.000575896876398474, + 0.01131008192896843, + 0.004761777818202972, + 0.01153683289885521, + -0.012478194199502468, + 0.012127760797739029, + -0.00909066665917635, + 0.017507951706647873, + 0.028364529833197594, + 0.018689807504415512, + -0.014264720492064953, + 0.029986144974827766, + 0.014745707623660564, + -0.009420487098395824, + -0.0005896393558941782, + 0.0026145116426050663, + -0.018923429772257805, + 0.027278872206807137, + 0.003293047659099102, + 0.005582892801612616, + -0.014196007512509823, + 0.016848310828208923, + 0.009221220389008522, + -0.012862985022366047, + 0.0026643280871212482, + 0.014141038060188293, + -0.006579224020242691, + 0.01101461797952652, + -0.03125045448541641, + -0.0023379437625408173, + -0.024406688287854195, + 0.015803880989551544, + -0.02421429380774498, + -0.010059514082968235, + 0.028749320656061172, + 0.006671986076980829, + 0.011296339333057404, + -4.949449066771194e-5, + -0.010787866078317165, + -0.010664183646440506, + 0.00527368625625968, + -0.01319967582821846, + -0.003686426905915141, + 0.008520352654159069, + 0.004349502734839916, + 0.031140515580773354, + 0.014250977896153927, + 0.01229954231530428, + -0.0021129101514816284, + 0.0034321905113756657, + 0.006888430565595627, + 0.0022864092607051134, + 0.00591614842414856, + -0.0012394022196531296, + 0.015336635522544384, + -0.017810286954045296, + -0.018030166625976562, + -0.005208409391343594, + -0.006988063920289278, + 0.0020682469476014376, + -0.0023276368156075478, + 0.0011724074138328433, + 0.021726900711655617, + -0.003545566229149699, + 0.016243640333414078, + -0.02081989496946335, + -0.003081756643950939, + 0.007221686188131571, + -0.02314237877726555, + -0.008190533146262169, + -0.006678857374936342, + -0.015130497515201569, + -0.0002118278353009373, + 0.006170384585857391, + -0.010966518893837929, + 0.01106958743184805, + 0.0053286561742424965, + 0.013728762045502663, + -0.014470857568085194, + -0.008802074007689953, + -0.01973423734307289, + -0.007688931655138731, + -0.002849851967766881, + 0.0038135452196002007, + 0.022633906453847885, + -0.020091542974114418, + 0.016436036676168442, + -0.017329297959804535, + -0.016573460772633553, + -0.031168000772595406, + -0.016985736787319183, + -0.0006197011098265648, + 0.021108487620949745, + 0.022977467626333237, + -0.013955513946712017, + 0.019198279827833176, + 0.023582138121128082, + 0.001388851902447641, + -0.03812170773744583, + -0.00945484358817339, + -0.004493799060583115, + 0.007956909947097301, + -0.01929447613656521, + 0.008011880330741405, + 0.008918886072933674, + -0.01408606767654419, + 0.010224423371255398, + -0.0035026208497583866, + -0.01963803917169571, + 0.0012488501379266381, + 0.01535037811845541, + -0.0014300794573500752, + -0.01118639949709177, + -0.005174052901566029, + -0.021603217348456383, + 0.009344903752207756, + -0.02198800817131996, + 0.0007854700670577586, + 0.015735168009996414, + 0.007379725109785795, + -0.01223082933574915, + -0.006414314266294241, + -0.000720622600056231, + 0.007262913975864649, + 0.0037929313257336617, + 0.0007025855593383312, + 0.0013905697269365191, + 0.0056687830947339535, + 0.028419500216841698, + 0.0006106825894676149, + -0.03369662165641785, + 0.004710243549197912, + 0.0014300794573500752, + 0.001807139371521771, + 0.01339207123965025, + 0.011282596737146378, + -0.01804390922188759, + -0.009097537957131863, + 0.009234962984919548, + 0.01775531657040119, + -0.005139696877449751, + -0.012581263668835163, + -0.007647703867405653, + 0.023582138121128082, + 0.01193536538630724, + -0.014965588226914406, + -0.007572120055556297, + 0.014676995575428009, + -0.01825004629790783, + -0.016367323696613312, + -0.02767740562558174, + 0.01515798270702362, + -0.0066170161589980125, + 0.006105107720941305, + 0.016367323696613312, + -0.03031596541404724, + -0.01893717236816883, + 0.01245070993900299, + 0.023128636181354523, + -0.001473024720326066, + 0.013886800967156887, + 0.001169830677099526, + 0.005198102444410324, + -0.007235428784042597, + -0.00428422586992383, + -0.0053767552599310875, + -0.003892564447596669, + 0.020380135625600815, + 0.00829360168427229, + -0.017398010939359665, + 0.0040883952751755714, + 0.001910208142362535, + -0.014250977896153927, + 0.01113830041140318, + -0.008389798924326897, + -0.016078731045126915, + 0.011955979280173779, + 0.01807139441370964, + -0.006146335508674383, + -0.0073110125958919525, + 0.013364586047828197, + 0.01952810026705265, + 0.009482328779995441, + -0.008245502598583698, + 0.00481331255286932, + -0.007365982513874769, + -0.007565248757600784, + -0.0022297215182334185, + 0.003621150040999055, + 0.012773658148944378, + -0.01599627546966076, + 0.007482794113457203, + 0.00764083256945014, + 0.01599627546966076, + 0.0056962682865560055, + 0.0012917955173179507, + -0.007372853811830282, + -0.0033686314709484577, + 0.003229488618671894, + -0.010341235436499119, + -0.019857918843626976, + -0.015446575358510017, + 0.018744776025414467, + -0.012938568368554115, + -0.02070995420217514, + 0.0005810502916574478, + 0.007018984295427799, + -0.019789207726716995, + 0.015267923474311829, + -0.002722733886912465, + -0.013831831514835358, + -0.015130497515201569, + 0.02396692894399166, + 0.0014575644163414836, + -0.0013785450719296932, + 0.009887732565402985, + -0.0004135635099373758, + -0.0016173210460692644, + 0.008946370333433151, + -0.0005930750048719347, + 0.004535026848316193, + 0.0008275564759969711, + -0.023321030661463737, + 0.007558377925306559, + 1.1286569133517332e-5, + -0.021342109888792038, + 0.004820183385163546, + -0.0040540387853980064, + -0.000413348781876266, + -0.0004702513397205621, + -0.00869213417172432, + -0.010045771487057209, + -0.0158863365650177, + -0.00034914552816189826, + -0.026949051767587662, + -0.016174929216504097, + 0.0001008141553029418, + 0.010664183646440506, + -0.0155427735298872, + -0.0035696157719939947, + 0.02490141987800598, + 0.0436461940407753, + -0.019899146631360054, + 0.01790648326277733, + -0.01873103342950344, + -0.02102603204548359, + 0.01814010739326477, + -0.0008915450307540596, + 0.0039544058963656425, + 0.004943866282701492, + 0.0013235750375315547, + 0.030370935797691345, + 0.005589764099568129, + 0.019308218732476234, + 0.01349513977766037, + 0.0064040073193609715, + -0.019693009555339813, + 0.008245502598583698, + -0.010588600300252438, + -0.008616550825536251, + 0.022249115630984306, + -0.005734060425311327, + 0.007489665411412716, + -0.012856113724410534, + -0.007620219141244888, + 0.015776395797729492, + 0.0014068889431655407, + -0.010561115108430386, + -0.005249636713415384, + 0.03430129215121269, + 0.025382407009601593, + 0.0012771940091624856, + -0.013137835077941418, + -0.02476399391889572, + -0.007049905136227608, + -0.025657257065176964, + -0.001047865953296423, + 0.009915217757225037, + 0.015845108777284622, + 0.0016963405068963766, + 0.01515798270702362, + -0.006871252320706844, + 0.0015219823690131307, + -0.011646772734820843, + -0.014374660328030586, + 0.0019514356972649693, + 0.0043220180086791515, + 0.012155245989561081, + -0.0053149135783314705, + -0.0019445643993094563, + -0.006634194403886795, + -0.008252373896539211, + -0.015034300275146961, + -0.023513425141572952, + -0.007084261160343885, + 0.019610553979873657, + 0.03265219181776047, + 0.024228036403656006, + 0.010492402128875256, + 0.0041090091690421104, + 0.006294067483395338, + -0.005294300150126219, + -0.010348105803132057, + 0.009372388012707233, + -0.015666455030441284, + -0.012725559994578362, + 0.0024427303578704596, + 0.010093869641423225, + -0.013680663891136646, + -0.012237700633704662, + 0.023266060277819633, + 0.00915937963873148, + 0.01838747225701809, + -0.008369185961782932, + -0.0017032116884365678, + -0.023650851100683212, + -0.0057100108824670315, + 0.012704946100711823, + 0.0050400635227561, + -0.014099810272455215, + -0.006802539806813002, + 0.009489200077950954, + -0.009516684338450432, + -0.007104875054210424, + 0.03243231028318405, + -0.007084261160343885, + -0.018744776025414467, + -0.00804623682051897, + 0.007207944057881832, + 0.012265185825526714, + 0.017425496131181717, + 0.007785128895193338, + 0.0008932627970352769, + 0.013488268479704857, + -0.014415888115763664, + 0.0033291217405349016, + -0.014622025191783905, + 0.015529030933976173, + 0.002784575102850795, + 0.015529030933976173, + -0.0017779365880414844, + 0.0039063068106770515, + 0.014443372376263142, + 0.0035696157719939947, + -0.012340769171714783, + -0.021603217348456383, + 0.01223082933574915, + -0.030618300661444664, + 0.017988938838243484, + -0.019789207726716995, + 0.033091951161623, + 0.011866653338074684, + 0.005778723396360874, + -0.006187562830746174, + -0.0205038171261549, + -0.0008026481955312192, + 0.0013330229558050632, + -0.0011681129690259695, + -0.004936994984745979, + 0.0089326286688447, + 0.011550575494766235, + -0.014718222431838512, + -0.018964657559990883, + 0.0029700989834964275, + 0.006551739294081926, + 0.011969721876084805, + -0.0019634603522717953, + -0.021878067404031754, + -0.007524021435528994, + -0.034988418221473694, + -0.011282596737146378, + -0.021383337676525116, + 0.02924405038356781, + -0.01793396845459938, + 0.01071915403008461, + -0.019583068788051605, + 0.016559718176722527, + 0.009502941742539406, + -0.01210714690387249, + -0.009111280553042889, + 0.008424155414104462, + -0.012086533010005951, + 0.004380423575639725, + -0.043206434696912766, + 0.018469925969839096, + 0.019857918843626976, + -0.018497411161661148, + -0.0004818465677089989, + 0.01811262220144272, + -0.0016456649173051119, + 0.003923485055565834, + 0.014745707623660564, + -0.01914330944418907, + 0.01973423734307289, + 0.011722357012331486, + -0.008870786987245083, + -0.00042773547465913, + -0.025904621928930283, + -0.0015417372342199087, + -0.013756247237324715, + -0.005538229364901781, + 0.003080038819462061, + 0.003964712843298912, + -0.0015348660526797175, + -0.019019626080989838, + -0.013756247237324715, + 0.010155711323022842, + 0.022331571206450462, + 0.04774146154522896, + 0.02442043088376522, + 0.00945484358817339, + 0.009001340717077255, + 0.03457614406943321, + -0.020998546853661537, + 0.0165459755808115, + 0.0064108786173164845, + -0.03204752132296562, + -0.004253305494785309, + -0.031442850828170776, + 0.00666167913004756, + 0.019940374419093132, + 0.006775055080652237, + -0.018621094524860382, + -0.004998836200684309, + -0.008005009032785892, + -0.0012771940091624856, + 0.00019024779612664133, + -0.011777326464653015, + 0.003737961407750845, + 0.008334829472005367, + -0.022771330550312996, + 0.005754673853516579, + 0.007647703867405653, + 0.0025715662632137537, + -0.021740643307566643, + -0.025368664413690567, + -0.01793396845459938, + 6.001609654049389e-5, + 0.026481807231903076, + -0.0013716737739741802, + -0.00018412809004075825, + 0.00025788668426685035, + -0.003744832705706358, + 0.012704946100711823, + 0.007908811792731285, + 0.012258314527571201, + -0.004658709280192852, + -0.015446575358510017, + 0.018030166625976562, + -0.015515288338065147, + -0.0014300794573500752, + -0.013130963779985905, + -0.010884064249694347, + -0.018634837120771408, + -0.0027965998742729425, + -0.016971994191408157, + 0.013556981459259987, + -0.0069846282713115215, + -0.00047368695959448814, + -0.0039681484922766685, + -0.0311130303889513, + -0.010609214194118977, + 0.009228091686964035, + 0.01814010739326477, + 0.033531710505485535, + -0.007620219141244888, + -0.0175216943025589, + 0.0005857742507942021, + -0.0060363952070474625, + 0.007365982513874769, + 0.0073041412979364395, + 0.014896875247359276, + -0.017466723918914795, + 0.028089679777622223, + -0.005163746420294046, + 0.00047583424020558596, + -0.0089326286688447, + -0.011323824524879456, + 0.010341235436499119, + -0.018442440778017044, + -0.006912480108439922, + -0.015515288338065147, + -0.01929447613656521, + -0.0065826596692204475, + -0.027416298165917397, + 0.010389333590865135, + -0.018882201984524727, + 0.018236303701996803, + -0.013426427729427814, + -0.003583358135074377, + -0.000726634927559644, + 0.0030216332525014877, + -0.013158448040485382, + 0.004504106007516384, + 0.0011732663260772824, + -0.008719619363546371, + -0.00041377823799848557, + 0.015790138393640518, + -0.00806685071438551, + -0.00990147516131401, + -0.014869390055537224, + 0.016944508999586105, + 0.009083795361220837, + -0.021259654313325882, + -0.0034888784866780043, + 0.0010667619062587619, + -0.005974553991109133, + -0.00515000382438302, + -0.013845574110746384, + -0.00029374603764154017, + 0.00684376759454608, + 0.021946780383586884, + 0.006592966616153717, + -0.023224832490086555, + -0.009812148287892342, + 0.01640855148434639, + 0.008485997095704079, + 0.02483270689845085, + -0.02032516524195671, + -0.010712282732129097, + 0.015803880989551544, + 0.005641298368573189, + -0.025478603318333626, + 0.014443372376263142, + 0.003442497458308935, + -0.0004105573461856693, + -0.012670589610934258, + 0.013605079613626003, + -0.007730158977210522, + 0.0036658132448792458, + 0.03463111072778702, + 0.001660266425460577, + 0.0015717990463599563, + -0.0158863365650177, + 0.011131429113447666, + 0.019349446520209312, + -0.005624120123684406, + 0.002889361698180437, + 0.0155427735298872, + 0.0005724612274207175, + -0.002528620883822441, + 0.01952810026705265, + 0.0018243174999952316, + -0.00936551671475172, + 0.018579866737127304, + -0.007565248757600784, + -0.0030594251584261656, + 0.0028790547512471676, + -0.008073722012341022, + 0.012821757234632969, + 0.02633063867688179, + 0.02039387822151184, + 0.013928028754889965, + 0.0012024692259728909, + -0.009887732565402985, + 0.013185933232307434, + 2.8397598725860007e-5, + -0.0010573139879852533, + 0.004486927762627602, + -0.025451119989156723, + -0.0028378271963447332, + 0.006087929476052523, + -0.00480300560593605, + 0.02202923595905304, + 0.017288072034716606, + 0.040293022990226746, + -0.005438596475869417, + 0.006898737512528896, + -0.005407675635069609, + 0.015776395797729492, + 0.008231760933995247, + 0.025753455236554146, + 0.0025131606962531805, + -0.004029989708214998, + 0.006136028561741114, + 0.019060853868722916, + -0.016875796020030975, + 0.0039269207045435905, + -0.00799813773483038, + -0.0004457725153770298, + -0.018511153757572174, + -0.013453911989927292, + 0.0012686050031334162, + -0.0026265361811965704, + -0.013845574110746384, + -0.019720494747161865, + -0.02310115098953247, + -0.01349513977766037, + 0.008946370333433151, + 0.027883542701601982, + 0.030728241428732872, + -0.017988938838243484, + 0.001094246981665492, + -0.0016095909522846341, + -0.009296804666519165, + 0.0046690162271261215, + -0.010622956790030003, + -0.004521284252405167, + 0.007929425686597824, + -0.002777703804895282, + -0.010052642785012722, + 0.006472719833254814, + -0.004878589417785406, + 0.006816282402724028, + 0.0165459755808115, + 0.0124026108533144, + -0.0024736509658396244, + 0.0053355274721980095, + 0.005795901641249657, + -0.02421429380774498, + 0.007915683090686798, + -0.026440579444169998 + ], + "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9": [ + -0.02394108846783638, + -0.003119186032563448, + -0.012719149701297283, + -0.02315683662891388, + -0.05492619052529335, + -0.01385275088250637, + 0.032938603311777115, + 0.052758801728487015, + 0.007097485009580851, + 0.048281434923410416, + 0.0059959664940834045, + 0.024383122101426125, + -0.01850835792720318, + -0.0005685830255970359, + 0.013717289082705975, + 0.002623680979013443, + -0.05717913433909416, + 0.035448212176561356, + -0.013460624031722546, + -0.010138245299458504, + 0.07414750754833221, + -0.033765632659196854, + -0.011621195822954178, + 0.035134509205818176, + -0.02107500284910202, + -0.024810897186398506, + 0.015414126217365265, + -0.012120265513658524, + -0.011678232811391354, + -0.004976438358426094, + -0.0028126146644353867, + 0.013239608146250248, + 0.03912707045674324, + -0.013146922923624516, + 0.024425899609923363, + -0.003112056525424123, + -0.025381261482834816, + 0.009439547546207905, + -0.037216342985630035, + 0.0029106461443006992, + -0.011378790251910686, + 0.03864225745201111, + 0.01484376098960638, + 0.004805328790098429, + -0.022885913029313087, + 0.032995641231536865, + 0.041237421333789825, + -0.004234963562339544, + 0.005767820402979851, + -0.0049443552270531654, + -0.0002923122956417501, + 0.023228133097290993, + -0.014758205972611904, + 0.023912571370601654, + 0.00811344850808382, + 0.0028803455643355846, + 0.00016899303591344506, + 0.06034466251730919, + 0.0036645978689193726, + -0.03989706188440323, + -0.004848106298595667, + 0.0012022233568131924, + 0.003942651208490133, + 0.0008386154077015817, + -7.252107752719894e-5, + -0.024582751095294952, + 0.019791681319475174, + 0.00778548838570714, + -0.034763772040605545, + 0.0026058570947498083, + 0.0031566161196678877, + 0.01050898339599371, + -0.02968752197921276, + 0.011913508176803589, + 0.006994106341153383, + -0.009895840659737587, + 0.041921861469745636, + -0.03718782588839531, + 0.00674457149580121, + 0.02415497601032257, + -0.04294851794838905, + 0.018750764429569244, + 0.010380650870501995, + -0.013389328494668007, + 0.028874751180410385, + 0.020989447832107544, + -0.048224397003650665, + -0.04565775394439697, + -0.019948530942201614, + -0.031797874718904495, + 0.02492496930062771, + 0.023399241268634796, + 0.01087259128689766, + 0.023912571370601654, + -0.004099501762539148, + 0.00018781956168822944, + 0.019905753433704376, + 0.004719773773103952, + -0.02576625905930996, + -0.023869793862104416, + -0.017966510728001595, + 0.01805206574499607, + -0.03593302145600319, + -0.0032902956008911133, + 0.017766883596777916, + -0.0121773025020957, + 0.03134158253669739, + -0.008077800273895264, + -0.022030364722013474, + 0.02635088376700878, + 0.025210151448845863, + -0.00959639810025692, + -0.0026807175017893314, + 0.016355229541659355, + 0.039982616901397705, + -0.07848228514194489, + -0.019834458827972412, + -0.021502777934074402, + -0.04562923684716225, + -0.07146678864955902, + 0.04334777221083641, + 0.036617461591959, + 0.02874641865491867, + -0.030172331258654594, + -0.0020764865912497044, + -0.005536109674721956, + -0.01291164755821228, + 0.015485421754419804, + -0.004349036607891321, + 0.005981707479804754, + -0.011507122777402401, + -0.01366738136857748, + -0.017410404980182648, + 0.018765022978186607, + -0.009917229413986206, + 0.02024797350168228, + 0.018009288236498833, + 0.049165502190589905, + -0.03932669758796692, + 0.03222564607858658, + -0.009717601351439953, + -0.04046742618083954, + -0.013161182403564453, + -0.01363886334002018, + 0.021659627556800842, + 0.012925907038152218, + -0.029031600803136826, + 0.03932669758796692, + -0.00024218251928687096, + 0.010423428378999233, + -0.03687412664294243, + 0.005372129380702972, + 0.027477355673909187, + -0.009710471145808697, + -0.006099345628172159, + 0.0037964950315654278, + 0.008847793564200401, + 0.014829501509666443, + -0.010295095853507519, + 0.007336325477808714, + -0.012341282330453396, + -0.029544929042458534, + 0.031427133828401566, + -0.004505887161940336, + 0.012220079079270363, + 0.014451634138822556, + 0.030799733474850655, + 0.05164659023284912, + -0.046769965440034866, + 0.019378166645765305, + 0.04126593843102455, + -0.01966334879398346, + 0.022914431989192963, + 0.004609265830367804, + -0.0032992076594382524, + -0.025523852556943893, + 0.011050830595195293, + 0.014522929675877094, + 0.02461126819252968, + -0.03339489549398422, + -0.005657311994582415, + -0.01559949479997158, + -0.028575308620929718, + 0.0044702389277517796, + -0.026422178372740746, + 0.020732782781124115, + 0.026464955881237984, + 0.0004919401835650206, + -0.020305009558796883, + 0.01658337563276291, + -0.002447224222123623, + -0.0001951719168573618, + 0.025124598294496536, + 0.05680839717388153, + 0.0005997748812660575, + -0.00437042536213994, + -0.0005378368077799678, + 0.0064237406477332115, + 0.038984477519989014, + 0.028575308620929718, + -0.01674022525548935, + -0.052815839648246765, + -0.04808180779218674, + 0.019706126302480698, + -0.046598855406045914, + 0.004035335499793291, + 0.010188153013586998, + -0.009924358688294888, + 0.014986352063715458, + -0.04012520983815193, + 0.017438923940062523, + -0.037216342985630035, + 0.018978910520672798, + 0.006177770439535379, + -0.004762551281601191, + 0.005856940057128668, + -0.01491505652666092, + 0.01601300947368145, + 0.011521382257342339, + 0.025951627641916275, + -0.019392425194382668, + 0.009304085746407509, + 0.04058150202035904, + -0.03313823044300079, + -0.05013512074947357, + -0.027206432074308395, + -0.02739180065691471, + 0.02384127490222454, + -0.03479229286313057, + 0.010722870007157326, + 0.045001834630966187, + 0.0006964696804061532, + 0.021060744300484657, + -0.05081956088542938, + -0.00222264276817441, + 0.0014161104336380959, + -0.0020390565041452646, + -0.00983167439699173, + 0.018023548647761345, + -0.020846856757998466, + 0.04642774537205696, + 0.01215591374784708, + 0.004028205759823322, + 0.017339108511805534, + 0.0304575152695179, + 0.026949767023324966, + -0.00826316885650158, + 0.046655893325805664, + 0.02754865027964115, + -0.009632046334445477, + 0.00506199337542057, + 0.0397544726729393, + 0.007126003038138151, + -0.01048759464174509, + -0.0012993637938052416, + 0.027634205296635628, + 0.01924983412027359, + 0.012127394787967205, + -0.03271045908331871, + -0.00022591817833017558, + -0.03185490891337395, + -0.020419083535671234, + -0.009610657580196857, + -0.03781522810459137, + 0.04936512932181358, + -0.016212638467550278, + 0.025367002934217453, + -0.04913698136806488, + 0.012348411604762077, + 0.016412265598773956, + -0.04936512932181358, + 0.0026432874146848917, + -0.01559949479997158, + 0.01184221263974905, + -0.008199003525078297, + 0.002169171115383506, + 0.019050205126404762, + 0.020647229626774788, + 0.02133166790008545, + 0.010188153013586998, + 0.007963727228343487, + 0.012505262158811092, + 0.012355540879070759, + 0.029345301911234856, + -0.020362045615911484, + -0.032738976180553436, + -0.0058426810428500175, + 0.007749840617179871, + -0.038984477519989014, + -0.0182516947388649, + 0.007614378817379475, + -0.00920427218079567, + 0.04329073801636696, + 0.006826561409980059, + 0.020518897101283073, + -0.011022311635315418, + -0.017225036397576332, + -0.013054238632321358, + -0.007977986708283424, + 0.008512703701853752, + -0.044944796711206436, + -0.0014615614200010896, + 0.054954711347818375, + -0.00035959758679382503, + 0.013339421711862087, + -0.01048759464174509, + 0.03981150686740875, + -0.024696823209524155, + -0.029174191877245903, + 0.011635455302894115, + 0.030428996309638023, + -0.004249222576618195, + -0.016055786982178688, + -0.031170470640063286, + -0.004969309084117413, + 0.00925417896360159, + -0.002589815529063344, + -0.0014686910435557365, + 0.00017857339116744697, + -0.009945747442543507, + 0.015428384765982628, + -0.011350272223353386, + -0.05732172727584839, + 0.0076571558602154255, + 0.023898310959339142, + -0.02910289727151394, + 0.00710817938670516, + 0.006623368710279465, + -0.02034778706729412, + -0.0027145829517394304, + -0.004427461884915829, + -0.04711218550801277, + -0.027049580588936806, + -0.006776654161512852, + 0.00891908910125494, + -0.020005566999316216, + -0.029773075133562088, + -0.03775819018483162, + -0.014986352063715458, + 0.005001391749829054, + -0.02081833779811859, + 0.05444138124585152, + -0.02034778706729412, + -0.001912506646476686, + 0.01189211942255497, + -0.03128454461693764, + -0.030799733474850655, + 0.03322378545999527, + -0.012063229456543922, + -0.003996122628450394, + 0.0006853297236375511, + -0.01675448566675186, + 0.007222252432256937, + 0.0059104119427502155, + 0.00051199208246544, + 0.011471474543213844, + -0.02384127490222454, + -0.012612205930054188, + 0.017068184912204742, + -0.0040032523684203625, + -0.014672650955617428, + -0.016597634181380272, + -0.044830724596977234, + -0.001980237429961562, + 0.013047109358012676, + 0.025908850133419037, + 0.02201610617339611, + 0.013146922923624516, + -0.006006660871207714, + 0.01638374663889408, + -0.019535016268491745, + 0.03844263032078743, + 0.031740836799144745, + 0.0010115074692294002, + -0.03624672442674637, + 0.0024151410907506943, + 0.04599997401237488, + 0.028190311044454575, + -0.016668930649757385, + 0.014786724001169205, + -0.017909474670886993, + 0.012690630741417408, + -0.01616986095905304, + -0.017196517437696457, + 0.04716922342777252, + 0.015727827325463295, + -0.0017645680345594883, + -0.007400491740554571, + -0.0032582124695181847, + -0.01622689701616764, + -0.03827152028679848, + -0.021160557866096497, + -0.027919387444853783, + 0.0183087307959795, + -0.013703029602766037, + 0.027249209582805634, + 0.011742398142814636, + 0.008968996815383434, + 0.03282453119754791, + 0.008933348581194878, + -0.012084617279469967, + -0.02529570646584034, + -0.009325474500656128, + 0.023128317669034004, + 0.01946371980011463, + -0.017339108511805534, + -0.0051225945353507996, + 0.010808425024151802, + 0.0064807771705091, + -0.015984490513801575, + 0.0008274755091406405, + 0.00042198129813186824, + -0.00644156476482749, + -0.017339108511805534, + 0.06758830696344376, + -0.010423428378999233, + 0.01826595328748226, + 0.021260371431708336, + -0.0520743653178215, + -0.002657546428963542, + 0.036075614392757416, + 0.061314284801483154, + -0.020005566999316216, + 0.016868557780981064, + -0.029544929042458534, + 0.003418627893552184, + 0.04993549361824989, + 0.022244252264499664, + 0.005429165903478861, + -0.0025844683405011892, + -0.026593288406729698, + 0.003505964996293187, + -0.02331368811428547, + -0.03459266200661659, + 0.005365000106394291, + 0.005340046249330044, + 0.005254491697996855, + -0.004006817005574703, + -0.00874085072427988, + 0.004145843908190727, + 0.025110337883234024, + 0.02358461171388626, + 0.007692803628742695, + 0.007272159215062857, + -0.008006504736840725, + -0.029972704127430916, + -0.020476119592785835, + 0.005646617617458105, + -0.015399866737425327, + 0.023641647771000862, + 0.0038285779301077127, + 0.057920608669519424, + -0.02362738735973835, + 0.013496272265911102, + -0.012277116067707539, + 0.004591441713273525, + 0.005557498428970575, + 0.011050830595195293, + 0.014273394830524921, + 0.027006803080439568, + -0.011692491360008717, + 0.00978176761418581, + 0.015428384765982628, + -0.0412089042365551, + 0.0054434253834187984, + -0.06342463940382004, + -0.02588033117353916, + 0.02617977373301983, + -0.00374302314594388, + -0.009097328409552574, + -0.018693726509809494, + 0.03579043224453926, + -0.036075614392757416, + 0.014052378945052624, + -0.020718524232506752, + 0.004513016436249018, + 0.0021067874040454626, + -0.01934964768588543, + 0.01632671058177948, + -0.0023705812636762857, + -0.034820809960365295, + -0.01721077784895897, + -0.022871654480695724, + 0.020219454541802406, + 0.047083668410778046, + -0.008648165501654148, + -0.015243016183376312, + -0.0004843650385737419, + 0.03322378545999527, + -0.0033277259208261967, + 0.02988714911043644, + -0.004955049604177475, + 0.003653903491795063, + -0.00403177086263895, + -0.030942324548959732, + -0.058804675936698914, + 0.009482325054705143, + -0.029915668070316315, + 0.0035843902733176947, + -0.04075261205434799, + 0.052445102483034134, + -0.0010569584555923939, + 0.01538560725748539, + 0.04163667559623718, + 0.00679447827860713, + 0.006566332187503576, + -0.0009277350618503988, + 0.01228424534201622, + 0.0009678388596512377, + 0.005521850194782019, + -0.011286105960607529, + 0.0030888852197676897, + -0.021345926448702812, + 0.007407621014863253, + -0.02113203890621662, + 0.040809646248817444, + -0.025010524317622185, + 0.01669744774699211, + 0.01559949479997158, + -0.005514720920473337, + -0.003397239139303565, + -0.0014455198543146253, + -0.009211401455104351, + 0.008291687816381454, + 0.005967448465526104, + -0.017139481380581856, + -0.023598870262503624, + 0.020362045615911484, + 0.04100927338004112, + -0.002331368625164032, + -0.030115295201539993, + 0.007086790632456541, + -0.004366860259324312, + -0.010345003567636013, + 0.002664675936102867, + -0.02645069733262062, + 0.007207993417978287, + -0.04220704361796379, + -0.012726278975605965, + 0.028204571455717087, + -0.02044760063290596, + 0.003974734339863062, + -0.014252006076276302, + -0.011100737378001213, + 0.02034778706729412, + 0.02529570646584034, + -0.020205195993185043, + 0.02264350838959217, + 0.005201019812375307, + -0.0016424742061644793, + -0.022044623270630836, + 0.014986352063715458, + 0.002299285726621747, + -0.009560750797390938, + 0.0396403968334198, + -0.02666458487510681, + 0.029544929042458534, + -0.028190311044454575, + -0.03342341631650925, + -0.012277116067707539, + 0.03604709729552269, + -0.001518597942776978, + 0.0032047408167272806, + -0.012505262158811092, + -0.04215000569820404, + -0.011485734023153782, + -0.024753859266638756, + 0.008968996815383434, + -0.006990541238337755, + 0.02024797350168228, + 0.015171720646321774, + 0.03233972191810608, + 0.020048344507813454, + -0.01778114214539528, + -0.02143148146569729, + 0.004202880430966616, + 0.003457840532064438, + 0.013795713894069195, + -0.02034778706729412, + 0.0010801295284181833, + 0.0063560097478330135, + -0.04021076485514641, + 0.012690630741417408, + -0.028147533535957336, + -0.005511155817657709, + 0.01768132857978344, + -0.04674144834280014, + -0.03533414006233215, + 0.0066304984502494335, + 0.020932411774992943, + -0.00717234518378973, + 0.0122343385592103, + 0.03704523667693138, + -0.012448226101696491, + 0.006577026564627886, + 0.02362738735973835, + 0.010245189070701599, + 0.024297567084431648, + -0.006912115961313248, + 0.0015150331892073154, + -0.02629384584724903, + 0.030970843508839607, + 0.036645978689193726, + -0.012426837347447872, + -0.026621807366609573, + 0.01993427239358425, + -0.025538112968206406, + -0.01022380031645298, + -0.027505872771143913, + -0.03470673784613609, + 0.0033598088193684816, + -0.009175754152238369, + 0.024696823209524155, + -0.009311215952038765, + 0.026621807366609573, + 0.01622689701616764, + 0.030371960252523422, + 0.020946670323610306, + -0.004905142821371555, + -0.03119898959994316, + 0.003721634391695261, + -0.06793052703142166, + 0.04648478329181671, + -0.035961542278528214, + 0.015371348708868027, + 0.0038749203085899353, + -0.0205474141985178, + -0.018964650109410286, + -0.017567254602909088, + 0.014686910435557365, + -0.00032016215845942497, + 0.010687222704291344, + 0.028361421078443527, + -0.009011774323880672, + 0.026165515184402466, + 0.02034778706729412, + 0.008184744045138359, + 0.021374445408582687, + -0.011057959869503975, + 0.014729687012732029, + -0.01353904977440834, + -0.008334465324878693, + 0.002149564679712057, + 0.027562910690903664, + -0.00915436539798975, + -0.015114683657884598, + -0.04041039198637009, + 0.007478917017579079, + 0.024012384936213493, + 0.006231242325156927, + -0.06781645119190216, + 0.008783627301454544, + 0.029074378311634064, + -0.0015809816541150212, + 0.0025595149490982294, + -0.03365156054496765, + -0.02325665019452572, + 0.01674022525548935, + 0.027406059205532074, + -0.009140105918049812, + 0.027192171663045883, + 0.013082757592201233, + -0.022087400779128075, + 0.004562923684716225, + 0.03459266200661659, + -0.0021727357525378466, + 0.006887162569910288, + -0.013025720603764057, + 0.013724418357014656, + 0.029915668070316315, + -0.01398108247667551, + -0.012662112712860107, + 0.0251958929002285, + 0.003411498386412859, + -0.013396457768976688, + 0.004855235572904348, + -0.011393049731850624, + -0.03701671585440636, + 0.015157461166381836, + -0.021517036482691765, + -0.01525727566331625, + 0.002971247537061572, + -0.0021406528539955616, + 0.005354305729269981, + 0.01882205903530121, + -0.00981028564274311, + -3.748593007912859e-5, + 0.043262217193841934, + -0.022500917315483093, + -0.007906691171228886, + -0.005372129380702972, + 0.02231554687023163, + -0.012662112712860107, + 0.01611282303929329, + 0.002718147821724415, + 0.019221315160393715, + -0.024525713175535202, + -0.00029988744063302875, + 0.021659627556800842, + -0.024169234558939934, + -0.04768254980444908, + -0.015613754279911518, + -0.010166764259338379, + -0.013838491402566433, + 0.0052580563351511955, + 0.013802843168377876, + -0.016512079164385796, + -0.008633906953036785, + 0.01358895655721426, + -0.00018625996017362922, + 0.00747178727760911, + 0.010772776789963245, + -0.001681686844676733, + 0.024953488260507584, + 0.010466205887496471, + -0.002732406836003065, + -0.004341906867921352, + 0.013524790294468403, + -0.0034489284735172987, + 0.026579029858112335, + -0.032168611884117126, + 0.050363268703222275, + 0.00808493047952652, + -0.05478360131382942, + -0.051931772381067276, + 0.030970843508839607, + 0.016255414113402367, + -0.005225973203778267, + -0.019834458827972412, + -0.004413202404975891, + 0.030371960252523422, + 0.007578730583190918, + -0.010844073258340359, + 0.013453494757413864, + -0.01261933520436287, + -0.01436607912182808, + -0.025167375802993774, + -0.008633906953036785, + 0.039098549634218216, + -0.03889892250299454, + 0.006159946788102388, + -0.022415362298488617, + 0.04223556071519852, + 0.01695411279797554, + 0.015029129572212696, + -0.011100737378001213, + -0.004680561367422342, + 0.004324082750827074, + 0.012063229456543922, + 0.011278976686298847, + 0.0471407026052475, + -0.0305715873837471, + 0.042178522795438766, + 0.034450072795152664, + -0.016398007050156593, + -0.009582139551639557, + 0.0013439236208796501, + 0.00847705639898777, + 0.0012761927209794521, + 0.026693101972341537, + 0.011549900285899639, + 0.0030265015084296465, + -0.0020586627069860697, + -0.021688146516680717, + -0.015128943137824535, + -0.02133166790008545, + -0.017282072454690933, + 0.028974564746022224, + 0.04719774052500725, + -0.015100425109267235, + 0.022415362298488617, + -0.007692803628742695, + 0.02091815322637558, + 0.03194046393036842, + 0.02739180065691471, + -0.022885913029313087, + 0.023142578080296516, + 0.005831986665725708, + -0.03867077827453613, + 0.021345926448702812, + -0.03678857162594795, + -0.047283295542001724, + 0.008305946364998817, + -0.02294294908642769, + 0.001681686844676733, + 0.0006180444033816457, + 0.03176935389637947, + 0.03579043224453926, + 0.0004732250818051398, + -0.02937382087111473, + 0.01192063745111227, + 0.023812757804989815, + -0.008883441798388958, + -5.809483991470188e-5, + 0.018166139721870422, + -0.00014715874567627907, + 0.03396526351571083, + -0.013945435173809528, + 0.002391970017924905, + 0.0019695430528372526, + -0.002463265787810087, + -0.03946928679943085, + 0.00711887376382947, + 0.02754865027964115, + -0.014052378945052624, + -0.0007263247389346361, + 0.0019481544150039554, + 0.002006973372772336, + 0.00842714961618185, + 0.02107500284910202, + -0.025694962590932846, + 0.007175910286605358, + -0.023028504103422165, + 0.01194202620536089, + -0.010380650870501995, + -0.0009633828885853291, + -0.003996122628450394, + -0.016369488090276718, + 0.009539362043142319, + -0.039725951850414276, + 0.013089886866509914, + 0.013703029602766037, + 0.025937369093298912, + 0.0013118404895067215, + 0.008783627301454544, + -0.015057647600769997, + -0.013603216037154198, + -0.011350272223353386, + 0.012327022850513458, + 0.018693726509809494, + 0.007407621014863253, + -0.007557341828942299, + -0.007058272138237953, + 0.013660252094268799, + 0.021360184997320175, + 0.03522006422281265, + -0.020219454541802406, + 0.0009749684249982238, + -0.04126593843102455, + 0.00844853837043047, + 0.0011567723704501987, + -0.011065089143812656, + -0.008911959826946259, + -0.004309823736548424, + -0.010958146303892136, + -0.019592052325606346, + 0.0009067919454537332, + 0.0038891793228685856, + 0.01924983412027359, + 0.014273394830524921, + 0.016939854249358177, + -0.031170470640063286, + -0.0176385510712862, + 0.005432731006294489, + -0.040239281952381134, + 0.018707986921072006, + -0.013439235277473927, + 0.017410404980182648, + 0.004566488321870565, + 0.013189700432121754, + 0.0018162574851885438, + 0.024654045701026917, + 5.904173303861171e-5, + -0.03932669758796692, + 0.0013519442873075604, + 0.0003932402469217777, + -0.03484932705760002, + 0.03541969507932663, + -0.001506121247075498, + -0.002678935183212161, + -0.02070426568388939, + 0.016911335289478302, + 0.00160682643763721, + -0.0020016261842101812, + -0.027819573879241943, + -0.020176677033305168, + -0.028803454712033272, + -0.0036717276088893414, + -0.026835693046450615, + 0.00881214626133442, + -0.012754797004163265, + 0.013310903683304787, + 0.011927767656743526, + -0.008548351936042309, + -0.06775941699743271, + 0.014465893618762493, + -0.013189700432121754, + -0.006926375441253185, + 0.011065089143812656, + -0.01638374663889408, + 0.010815554298460484, + 0.019321128726005554, + -0.01715373992919922, + -0.029858630150556564, + -0.004046029876917601, + -0.03832855820655823, + -0.014045248739421368, + -0.014052378945052624, + -0.0011478604283183813, + -0.006865773815661669, + -0.005657311994582415, + -0.006801608018577099, + -0.0175815150141716, + 0.023855535313487053, + -0.013467754237353802, + -0.05612396076321602, + 0.014957834035158157, + 0.01522875763475895, + -0.011699620634317398, + 0.06302537769079208, + 0.019078724086284637, + 0.006220547948032618, + -0.00578920915722847, + -0.030486032366752625, + 0.02419775351881981, + 0.02988714911043644, + 0.016098564490675926, + -0.006523554679006338, + -0.024639787152409554, + -0.021046483889222145, + -0.002456136280670762, + 0.0036039967089891434, + 0.012398318387567997, + -0.000569474243093282, + -0.012070358730852604, + -0.019706126302480698, + 0.005885458551347256, + 0.022572211921215057, + 0.01557097677141428, + 0.005051298998296261, + 0.005511155817657709, + 0.02456849068403244, + -0.0028375680558383465, + -0.03567635640501976, + 0.022258510813117027, + -0.023613128811120987, + 0.02472534216940403, + 0.0017645680345594883, + -0.03245379403233528, + -0.03667449951171875, + -0.015513939782977104, + 0.004687691107392311, + 0.016569115221500397, + -0.03385118767619133, + 0.04140853136777878, + -0.025538112968206406, + -0.0304575152695179, + 0.036132652312517166, + -0.0001267726329388097, + -0.015428384765982628, + 0.03159824386239052, + 0.04460257664322853, + -0.002686064690351486, + -0.004252787213772535, + 0.006259760819375515, + 0.0363893136382103, + -0.0029872888699173927, + 0.0258660726249218, + 0.007250770460814238, + 0.0070832259953022, + 9.970254905056208e-5, + 0.0010533937020227313, + -0.012683501467108727, + 0.0025719916447997093, + -0.04354740306735039, + 0.024297567084431648, + -0.04001113399863243, + 0.011542771011590958, + 0.004755422007292509, + 0.004837411921471357, + -0.008591129444539547, + -0.006184900179505348, + 0.02133166790008545, + -0.018807800486683846, + 3.968607052229345e-5, + -0.010751388967037201, + -0.0320260189473629, + -0.0030835382640361786, + 0.019392425194382668, + -0.01462987344712019, + 0.04793921485543251, + 0.006687534973025322, + -0.0001969543081941083, + -0.0028981694485992193, + -0.007685674354434013, + 0.0102737070992589, + -0.02617977373301983, + -0.01215591374784708, + 0.027249209582805634, + -0.013389328494668007, + 0.016882816329598427, + -0.029659003019332886, + 0.0018608171958476305, + -0.028703641146421432, + 0.015214498154819012, + -0.032738976180553436, + -0.01626967452466488, + -0.014786724001169205, + 0.015043388120830059, + -0.009617786854505539, + -0.01699689030647278, + 0.005051298998296261, + -0.022985726594924927, + 0.03222564607858658, + 0.004441720899194479, + -0.0022796792909502983, + -0.014900797046720982, + -0.009938618168234825, + 0.02185925468802452, + 0.026365142315626144, + -0.0020301444455981255, + -0.013524790294468403, + 0.007892431691288948, + -0.02331368811428547, + 0.04562923684716225, + 0.013203959912061691, + -0.002759142778813839, + -0.025324225425720215, + -0.00479819905012846, + 0.021317407488822937, + 0.00011875186464749277, + -0.04069557413458824, + 0.012248598039150238, + 0.011100737378001213, + -0.003910568077117205, + 0.009788896888494492, + 0.003587955143302679, + -0.002739536575973034, + 0.01815187931060791, + 0.005183195695281029, + -0.027577169239521027, + 0.004997827112674713, + 0.00650573056191206, + -0.023912571370601654, + 0.00581416254863143, + -0.019991308450698853, + 0.01494357455521822, + -0.05638062208890915, + -0.022572211921215057, + -0.002081833779811859, + 0.036588944494724274, + -0.006527119316160679, + -0.010680092498660088, + 0.002652199240401387, + -0.002848262432962656, + -0.001694163540378213, + -0.0032225647009909153, + 0.01113638561218977, + 0.0016317798290401697, + 0.02817605249583721, + 0.030001221224665642, + -0.006662581115961075, + 0.0191500186920166, + -0.017082445323467255, + 0.0045878770761191845, + -0.008284557610750198, + -0.006053003016859293, + -0.002873215824365616, + -0.01581338234245777, + 0.02399812638759613, + 0.006566332187503576, + 0.011307494714856148, + 0.044944796711206436, + -0.0244686771184206, + 0.019121501594781876, + -0.017253555357456207, + -0.0002548820630181581, + 0.020276490598917007, + 0.0012120265746489167, + -0.0048088934272527695, + 0.012783315032720566, + -6.0935526562388986e-5, + -0.014137933030724525, + 0.027163654565811157, + 0.012412577867507935, + 0.01748170144855976, + 0.00033241609344258904, + 0.005621664226055145, + 0.010594538412988186, + 0.0030621495097875595, + -0.017396146431565285, + -0.010744258761405945, + -0.02910289727151394, + -0.0008528745966032147, + -0.02290017157793045, + -0.02503904327750206, + 0.014223488047719002, + 0.017039667814970016, + -0.0007463766378350556, + 0.023655906319618225, + -0.028076238930225372, + 0.010908238589763641, + 0.0038071894086897373, + 0.005496896803379059, + 0.008676684461534023, + 0.0007053816225379705, + -0.036703016608953476, + 0.06057281047105789, + 0.012590817175805569, + -0.017552996054291725, + 0.008911959826946259, + -0.013032849878072739, + 0.0028108321130275726, + 0.013367939740419388, + 0.03302415832877159, + 0.012134524993598461, + 0.006359574850648642, + -0.013859880156815052, + 0.011635455302894115, + 0.01497209258377552, + 0.020946670323610306, + 0.0033063371665775776, + 0.00404246523976326, + 0.0063346209935843945, + 0.02066148817539215, + -0.0182516947388649, + -0.014038119465112686, + 0.00440963776782155, + -0.007072531618177891, + 0.0229572094976902, + -0.01731059141457081, + -0.003450710792094469, + -0.023969607427716255, + 0.006035179365426302, + 0.001084585557691753, + -0.039412252604961395, + -0.008099189028143883, + 0.019007427617907524, + -0.004962179344147444, + 0.010473335161805153, + 0.014701168984174728, + -0.022985726594924927, + 0.017139481380581856, + 0.0028660863172262907, + -0.016298191621899605, + -0.005639488343149424, + -0.006958458572626114, + -0.01291164755821228, + -0.0032475183252245188, + 0.0026807175017893314, + -0.007814006879925728, + 0.0022351194638758898, + 0.019092982634902, + 0.015371348708868027, + -0.007635767105966806, + 0.007136697415262461, + -0.005643052980303764, + -0.001024875440634787, + -0.003849966684356332, + -0.009389640763401985, + -0.011200550943613052, + -0.00479819905012846, + 0.013824231922626495, + -0.011043700389564037, + -0.030029740184545517, + -0.040667057037353516, + -0.018494099378585815, + 0.00026423961389809847, + 0.01993427239358425, + 0.0017681329045444727, + -0.030543068423867226, + -0.020718524232506752, + 0.021787960082292557, + 0.0010391345713287592, + -0.01778114214539528, + -0.0007205319707281888, + -0.010630185715854168, + -0.01966334879398346, + 0.0012654983438551426, + -0.013817102648317814, + 0.013268126174807549, + -0.006591285578906536, + 0.014729687012732029, + 0.024169234558939934, + -0.025424038991332054, + -0.001199549762532115, + -0.01063731499016285, + -0.03368007764220238, + 0.003609343897551298, + 0.006188464816659689, + 0.016283933073282242, + 0.005322222597897053, + -0.014301913790404797, + 0.00025933803408406675, + -0.007464657537639141, + 0.02478237822651863, + -0.03245379403233528, + -0.006929940078407526, + 0.00956788007169962, + 0.009225660935044289, + -0.02321387268602848, + -0.012041840702295303, + -0.035761911422014236, + -0.01116490364074707, + -0.014886537566781044, + 0.001187073066830635, + -0.009147236123681068, + -0.007350584492087364, + -0.0028999517671763897, + 0.014957834035158157, + -0.014009601436555386, + 0.01644078455865383, + 0.009546491317451, + -0.025580890476703644, + 0.01043768785893917, + -0.005414906889200211, + -0.020119640976190567, + -0.005429165903478861, + -0.014130803756415844, + -0.00920427218079567, + -0.0024739601649343967, + -0.012048969976603985, + 0.0025470382533967495, + -0.019164279103279114, + -0.02138870395720005, + 0.023969607427716255, + -0.010772776789963245, + -0.015941714867949486, + -0.00029788227402605116, + -0.02262924797832966, + -0.007036883383989334, + 0.0027359717059880495, + -0.023327946662902832, + -0.02841845713555813, + 0.016184119507670403, + -0.02451145462691784, + -0.00473403325304389, + 0.013517661020159721, + 0.004926531575620174, + -0.0017948687309399247, + 0.018551135435700417, + 0.0032992076594382524, + -0.014073766767978668, + 0.02372720278799534, + -0.017039667814970016, + -0.012227209284901619, + 0.011721009388566017, + -0.019848717376589775, + -0.011721009388566017, + 0.00710817938670516, + 0.008099189028143883, + 0.0062704551964998245, + 0.008612518198788166, + -0.033765632659196854, + 0.012726278975605965, + 0.02968752197921276, + -0.018665209412574768, + 0.01684003882110119, + -0.007400491740554571, + -0.003825013292953372, + 0.007714192382991314, + -0.006298973225057125, + -0.018394285812973976, + -0.008199003525078297, + -0.007871042937040329, + 0.008976126089692116, + 0.021474258974194527, + -0.010394910350441933, + -0.008206132799386978, + -0.008769368752837181, + -0.01872224546968937, + 0.0014419551007449627, + 0.006587720941752195, + -0.011122126132249832, + -0.03636079654097557, + -0.0025577323976904154, + 0.009097328409552574, + -0.012797574512660503, + 0.006723182741552591, + -0.009760378859937191, + 0.009703341871500015, + 0.0023474101908504963, + -0.024183494970202446, + 0.013645993545651436, + 0.005008521489799023, + 0.03889892250299454, + -0.00020497507648542523, + -0.02858956716954708, + -0.01987723633646965, + 0.009510844014585018, + 0.026792915537953377, + 0.023912571370601654, + 0.01251952163875103, + -0.020647229626774788, + -0.020718524232506752, + -0.02101796679198742, + 0.00784965418279171, + 0.018223175778985023, + -0.035961542278528214, + 0.008655295707285404, + 0.01913576014339924, + 0.002555950079113245, + -0.005682265851646662, + -0.014180710539221764, + -0.01616986095905304, + -0.0044310265220701694, + -0.01789521612226963, + 0.0077284518629312515, + -0.0019410249078646302, + 0.010594538412988186, + -0.006815867032855749, + 0.004833847284317017, + -0.0032653422094881535, + 0.00850557442754507, + -0.0006657234043814242, + 0.00221016607247293, + -0.016968371346592903, + -0.005372129380702972, + -0.0007717757252976298, + -0.04012520983815193, + 0.0052402326837182045, + 0.02759142778813839, + 0.004391813650727272, + -0.0027234950102865696, + 0.009218531660735607, + -0.0035683487076312304, + -0.016554856672883034, + -0.0033598088193684816, + -0.009731859900057316, + -0.013631734065711498, + 0.00356656638905406, + 0.007835395634174347, + -0.011671102605760098, + 0.00912584736943245, + 0.013310903683304787, + 0.02294294908642769, + 0.006010225974023342, + -0.0006942416657693684, + 0.004648478236049414, + -0.007735581137239933, + -0.03373711556196213, + 0.008584000170230865, + -0.012982943095266819, + -0.001206679386086762, + -0.005129724275320768, + -0.009460936300456524, + -0.017652809619903564, + -0.0025666444562375546, + -0.023442018777132034, + -0.015014870092272758, + 0.012761926278471947, + -0.010808425024151802, + -0.00032951970933936536, + 0.010744258761405945, + 0.0036378621589392424, + 0.0023081975523382425, + -0.00048035464715212584, + -0.009952876716852188, + 0.012533780187368393, + 0.008020764216780663, + 0.010722870007157326, + -0.009389640763401985, + 0.011778046377003193, + 0.0009927923092618585, + -0.0011237981962040067, + -0.007104614283889532, + 1.5373130736406893e-5, + -0.002388405380770564, + -0.010009913705289364, + 0.023755719885230064, + -0.0021994716953486204, + 0.006060132756829262, + 0.031227508559823036, + 0.018137620761990547, + 0.00252386718057096, + 0.0010222018463537097, + -0.027249209582805634, + 0.0027840964030474424, + 0.012982943095266819, + -0.022187216207385063, + -0.001539986697025597, + 0.03462118282914162, + -0.007407621014863253, + 0.006880033295601606, + -0.0027306245174258947, + 0.029459374025464058, + 0.0005026345606893301, + 0.024554232135415077, + 0.01063731499016285, + -0.002632593037560582, + 0.008534092456102371, + -0.009952876716852188, + 0.015742085874080658, + -0.019549274817109108, + 0.005489767529070377, + 0.009525102563202381, + -0.00218521268106997, + -0.011093608103692532, + 0.011008053086698055, + -0.0028981694485992193, + -0.00923279020935297, + 0.005607405211776495, + 0.010765647515654564, + -0.008612518198788166, + 0.050619933754205704, + -0.004113760776817799, + -0.01862243190407753, + -0.0048088934272527695, + -0.01050898339599371, + 0.000249312084633857, + 0.014451634138822556, + 0.04166519641876221, + 0.01893613301217556, + 0.02174518257379532, + -0.003757282393053174, + -0.0011496428633108735, + -0.0305715873837471, + -0.0077070631086826324, + 0.0176385510712862, + 0.0017984334845095873, + -0.011820823885500431, + 0.008256039582192898, + -0.002978377044200897, + 0.022500917315483093, + -0.004398943390697241, + -0.01184221263974905, + 0.034450072795152664, + -0.026151254773139954, + 0.012312764301896095, + -0.049735866487026215, + -0.018351508304476738, + -0.0031084916554391384, + 0.006637627724558115, + -0.02164536900818348, + 0.01867946796119213, + -0.003573695896193385, + 0.009710471145808697, + 0.02232980728149414, + 0.014373209327459335, + 0.024169234558939934, + 0.00915436539798975, + 0.0053756944835186005, + 0.0032778189051896334, + -0.00956788007169962, + 0.02133166790008545, + -0.005992401856929064, + 0.017652809619903564, + -0.025338483974337578, + 0.011093608103692532, + 0.013524790294468403, + 0.013710158877074718, + 0.006291843950748444, + -0.017253555357456207, + 0.007357714232057333, + -0.001994496677070856, + 0.001451758318580687, + -0.01913576014339924, + -0.012590817175805569, + -0.023955348879098892, + 0.006420176010578871, + -0.00609221588820219, + 0.01699689030647278, + -0.00981028564274311, + -0.0004391368420328945, + 0.010280837304890156, + -0.0008319314802065492, + -0.021887773647904396, + -0.015328571200370789, + -0.005511155817657709, + 0.016939854249358177, + -0.03182639181613922, + 0.001091715064831078, + 0.008968996815383434, + -0.009610657580196857, + -0.00981028564274311, + -0.00881214626133442, + 0.03251082822680473, + -0.008662424981594086, + -0.009867321699857712, + -0.0036325149703770876, + 0.003181569743901491, + 0.007004800718277693, + -0.0026254632975906134, + 0.03875633329153061, + 0.0005168936913833022, + -0.007992245256900787, + -0.038471147418022156, + -0.031484171748161316, + -0.006990541238337755, + -0.0027448837645351887, + -0.019691865891218185, + 0.014202099293470383, + -0.040296319872140884, + 0.0175815150141716, + -0.017667070031166077, + 0.02164536900818348, + 0.007699933368712664, + 0.011956285685300827, + -0.01262646447867155, + 0.035761911422014236, + -0.008020764216780663, + -0.007379102986305952, + 0.025395521894097328, + 0.008954737335443497, + 0.025067560374736786, + -0.026279587298631668, + 0.020219454541802406, + 0.02937382087111473, + -0.018907614052295685, + -0.015556717291474342, + 0.0020515331998467445, + -0.0015471162041649222, + -0.0028625214472413063, + 0.012006192468106747, + -0.008313076570630074, + -0.016340969130396843, + -0.004976438358426094, + -0.023541834205389023, + -0.025267189368605614, + -0.01424487680196762, + -0.006006660871207714, + -0.006872903555631638, + -0.02262924797832966, + 0.014522929675877094, + -0.008469927124679089, + 0.0031370099168270826, + 0.0007067184196785092, + -0.0014232400571927428, + -0.00024040011339820921, + 0.006552073173224926, + -0.0027306245174258947, + 0.02848975360393524, + 0.0038749203085899353, + 0.011122126132249832, + -0.015071907080709934, + -0.005197455175220966, + -0.005971013102680445, + -0.011599807068705559, + 0.021217593923211098, + 0.004930096212774515, + 0.011364531703293324, + 0.018921872600913048, + -0.031797874718904495, + -0.003422192530706525, + -0.0004950593574903905, + 0.014644132927060127, + 0.0013911569258198142, + 0.015784863382577896, + -0.004687691107392311, + -0.029145674780011177, + 0.002270767465233803, + -0.00303897843696177, + 0.008106319233775139, + 0.00889057107269764, + 0.017652809619903564, + 0.009475195780396461, + -0.011450085788965225, + -0.01579912193119526, + 0.02754865027964115, + 0.01246961485594511, + -0.0034471461549401283, + 0.0012975813588127494, + 0.019848717376589775, + 0.013645993545651436, + 0.0060423086397349834, + -0.00981028564274311, + -0.009425288997590542, + 0.001138948486186564, + -0.0057535613887012005, + 0.00021466684120241553, + -0.016911335289478302, + 0.01095101609826088, + 0.01048759464174509, + 0.015243016183376312, + -0.017196517437696457, + 0.007371973246335983, + -0.021146299317479134, + -0.005899717565625906, + 0.013125535100698471, + -0.012106006033718586, + 0.0029659003484994173, + 0.007493176031857729, + 0.001199549762532115, + -0.020119640976190567, + -0.00857686996459961, + 0.009553621523082256, + -0.014858019538223743, + -0.006972717586904764, + -0.00504773436114192, + -0.00513685354962945, + -0.01162832509726286, + -0.00409593665972352, + 0.07500305771827698, + 0.0008181179291568696, + 0.011635455302894115, + 0.011200550943613052, + -0.007407621014863253, + -0.02143148146569729, + 0.0027644899673759937, + 0.021260371431708336, + 0.012248598039150238, + -0.004698385484516621, + -0.02305702306330204, + -0.004987132735550404, + 0.01652633771300316, + 0.010744258761405945, + -0.014073766767978668, + 0.0016389094525948167, + 0.013168311677873135, + -0.0016086087562143803, + 0.010765647515654564, + 0.0038428371772170067, + 0.006409481633454561, + -0.01149999350309372, + 0.0036859866231679916, + 0.00325286528095603, + -0.012277116067707539, + 0.006209853570908308, + -0.020062604919075966, + -0.012298504821956158, + 0.020148159936070442, + 0.013032849878072739, + 0.005828422028571367, + -0.01715373992919922, + -0.0066483221016824245, + -0.025737740099430084, + -0.0015693961177021265, + 0.01301146112382412, + 0.004930096212774515, + 2.0413957827258855e-5, + -0.008049282245337963, + -0.008469927124679089, + -0.00986019242554903, + 0.0046556079760193825, + 0.018280211836099625, + 0.028889009729027748, + -0.02347053773701191, + 0.013260996900498867, + -0.014743946492671967, + 0.005714348517358303, + -0.010708611458539963, + 0.0022066012024879456, + 0.005881893448531628, + -0.029544929042458534, + 0.022130178287625313, + 0.022401101887226105, + 0.004716209135949612, + 0.0008043043781071901, + 0.006049438379704952, + 0.010423428378999233, + 0.018280211836099625, + 0.007190169300884008, + -0.03222564607858658, + -0.013581827282905579, + 0.009995654225349426, + -0.011464345268905163, + -0.018137620761990547, + 0.00674457149580121, + -0.02341350167989731, + 0.0028161793015897274, + 0.0016050440026447177, + -0.030400477349758148, + -0.01913576014339924, + -0.012505262158811092, + -0.001864382065832615, + -0.03014381416141987, + -0.005871199071407318, + 0.023484796285629272, + -0.006359574850648642, + 0.05019215866923332, + 0.029017342254519463, + 0.009482325054705143, + -0.0030568023212254047, + 0.001728028990328312, + -0.011029441840946674, + -0.005782079417258501, + 0.009917229413986206, + -0.011571289040148258, + 0.019706126302480698, + -0.049051426351070404, + 0.020362045615911484, + -0.023983865976333618, + -0.01385275088250637, + 0.002087180968374014, + 0.018080584704875946, + 0.012704890221357346, + -0.005621664226055145, + 0.010287966579198837, + 0.01348914299160242, + 0.009460936300456524, + -0.008897701278328896, + -0.006552073173224926, + 0.024739600718021393, + 9.340848191641271e-5, + -0.018693726509809494, + -0.0048801894299685955, + -0.021203335374593735, + -0.0036307324189692736, + 0.017724106088280678, + 0.0005405103438533843, + -0.008462796919047832, + 0.0008074235520325601, + -0.0032706893980503082, + -0.010181022807955742, + -0.0012530215317383409, + 0.016569115221500397, + -0.010451946407556534, + -0.0035647840704768896, + 0.014415986835956573, + 0.002272549783810973, + -0.02280035801231861, + -0.008676684461534023, + 0.016412265598773956, + 0.009375382214784622, + 0.012398318387567997, + -0.024896452203392982, + 0.0006314123747870326, + 0.012077488005161285, + -0.008006504736840725, + -0.00847705639898777, + -0.007985115982592106, + -0.009646305814385414, + 0.01569930836558342, + 0.009097328409552574, + 0.022672025486826897, + 0.0021067874040454626, + 0.008805016055703163, + -0.00440963776782155, + -0.015784863382577896, + 0.0071438271552324295, + 0.002657546428963542, + -0.02739180065691471, + 0.01579912193119526, + -0.002015885431319475, + 0.008405760861933231, + 0.028717899695038795, + 0.010394910350441933, + 0.0037964950315654278, + -0.014287654310464859, + -0.028090497478842735, + 0.007735581137239933, + 0.0004108413413632661, + 0.018807800486683846, + -0.01840854436159134, + 0.010787036269903183, + -0.010102597996592522, + -0.001837646123021841, + 0.009332604706287384, + -0.029017342254519463, + 0.0069406344555318356, + -0.01721077784895897, + 0.007225817069411278, + 0.010573149658739567, + -0.01022380031645298, + -0.018494099378585815, + 0.009482325054705143, + -0.003445363836362958, + 0.008569740690290928, + 0.018180398270487785, + 0.00874085072427988, + 0.0057749501429498196, + 0.011599807068705559, + 0.013289514929056168, + 0.016298191621899605, + 0.02175944112241268, + -0.028575308620929718, + -0.0006247283890843391, + -0.012505262158811092, + 0.013645993545651436, + -0.0015007740585133433, + -0.02185925468802452, + 0.009696212597191334, + -0.013360810466110706, + -0.01457996666431427, + 0.014301913790404797, + -0.0014223487814888358, + -0.01559949479997158, + -0.023499056696891785, + 0.019649090245366096, + -0.008398630656301975, + 0.0036022141575813293, + -2.1131093035364756e-6, + -0.007136697415262461, + 0.022458139806985855, + 0.006238372065126896, + -0.0121773025020957, + -0.0026058570947498083, + 0.00991009920835495, + 0.04314814507961273, + 0.01950649730861187, + 0.02576625905930996, + -0.00581416254863143, + 0.003322378732264042, + -0.0013207524316385388, + 0.016668930649757385, + -0.009696212597191334, + 0.0029730298556387424, + -0.004837411921471357, + -0.008548351936042309, + -0.01840854436159134, + -0.0004794634587597102, + -1.7058047774298757e-7, + -0.020989447832107544, + -0.021944809705018997, + 0.01626967452466488, + -0.0031566161196678877, + -0.012804703786969185, + 0.0017993247602134943, + 0.005457684397697449, + 0.011735268868505955, + 0.0009981394978240132, + 0.0087622394785285, + 0.000247752497671172, + -0.010730000212788582, + 0.005561063066124916, + -0.0001548453001305461, + 0.008013634011149406, + 0.003486358793452382, + -0.005211714189499617, + 0.01644078455865383, + 0.015927454456686974, + -0.003473882097750902, + 0.005004956852644682, + 0.0002871878969017416, + -0.002117481781169772, + 0.01095101609826088, + 0.005521850194782019, + 0.028347162529826164, + 0.011507122777402401, + -0.009168624877929688, + 0.01924983412027359, + -0.005632358603179455, + -0.039155587553977966, + -0.003885614452883601, + -0.010245189070701599, + -0.016925593838095665, + 5.7760640629567206e-5, + -0.008954737335443497, + 0.005981707479804754, + 0.007956597954034805, + -0.004103066399693489, + -2.461928852426354e-5, + -0.009988524951040745, + 0.004509451799094677, + 0.013738677836954594, + -0.011378790251910686, + 0.008862053044140339, + -0.007175910286605358, + -0.009553621523082256, + 0.007956597954034805, + 0.0018064542673528194, + -0.020946670323610306, + 0.02007686346769333, + 0.012412577867507935, + -0.020789820700883865, + 0.0011888555018231273, + 7.2855269536376e-5, + 0.009218531660735607, + -0.04329073801636696, + 0.010672963224351406, + -0.006070827133953571, + 0.0035808254033327103, + 0.01423774752765894, + -0.010444817133247852, + 0.011150644160807133, + 0.040809646248817444, + 0.012897388078272343, + 0.010316484607756138, + -0.009446677751839161, + -0.024226272478699684, + 0.019435202702879906, + 0.023185355588793755, + -0.01462987344712019, + -0.00032595492666587234, + 0.00573930237442255, + -0.017809661105275154, + -0.007892431691288948, + -0.038585223257541656, + 0.015898937359452248, + 0.015542457811534405, + -0.01111499685794115, + 0.017139481380581856, + 0.007061837241053581, + 0.0035041826777160168, + 0.008826404809951782, + -0.008405760861933231, + 0.010573149658739567, + 0.005553933326154947, + -0.0026931941974908113, + 0.00072231434751302, + 0.02816179394721985, + -0.029744558036327362, + -0.0077284518629312515, + 0.0009954659035429358, + -0.006994106341153383, + -0.006958458572626114, + -0.003871355438604951, + 0.00747178727760911, + 0.03944076970219612, + 0.0010266577592119575, + -0.006858644541352987, + 0.019677607342600822, + 0.005279445089399815, + -0.011464345268905163, + -0.006887162569910288, + -0.01882205903530121, + -3.7959380279062316e-5, + 0.005090511403977871, + -0.004377554636448622, + 0.02697828598320484, + -0.01179230585694313, + 0.016882816329598427, + -0.001960631227120757, + -0.001924983342178166, + 0.018280211836099625, + -0.014487282373011112, + 0.021502777934074402, + -0.020105382427573204, + 0.017025407403707504, + -0.002149564679712057, + 0.023327946662902832, + -0.014023859985172749, + 0.013453494757413864, + 0.01607004553079605, + -0.030657142400741577, + 0.00035558719537220895, + 0.0027983554173260927, + 0.006880033295601606, + -0.02039056457579136, + 0.0008934239740483463, + -0.0011924202553927898, + -0.0043953787535429, + 0.00042643729830160737, + -0.01924983412027359, + 0.005643052980303764, + -0.00442033214494586, + -0.011685362085700035, + 0.00012632703874260187, + 0.012505262158811092, + -0.011350272223353386, + 0.014508671127259731, + 0.01286174077540636, + -0.021345926448702812, + 0.0077926176600158215, + 0.011336012743413448, + 0.017652809619903564, + -0.00444528553634882, + 0.0073862322606146336, + 0.010309355333447456, + 0.019549274817109108, + -0.014900797046720982, + 0.009617786854505539, + -0.0038891793228685856, + 0.009753248654305935, + -0.00041396054439246655, + -0.018636690452694893, + 0.006070827133953571, + -0.01783817820250988, + -0.008070670999586582, + 0.01642652414739132, + -0.037900783121585846, + 0.0013323379680514336, + 0.005161807406693697, + -0.022971468046307564, + -0.0011843994725495577, + 0.004320518113672733, + -0.00988158117979765, + 0.011321754194796085, + -0.010330744087696075, + -0.005432731006294489, + -0.03667449951171875, + 0.004737597890198231, + 0.029202710837125778, + 0.004391813650727272, + 0.00389274419285357, + -0.001037352136336267, + -0.023356465622782707, + 0.019549274817109108, + 0.024525713175535202, + 0.00506199337542057, + 0.011706750839948654, + -0.007033318746834993, + -0.011043700389564037, + -0.0031886992510408163, + 0.005446990020573139, + 0.01390265766531229, + -0.028233088552951813, + 0.031170470640063286, + -0.015827640891075134, + -0.002564862137660384, + -0.01055889017879963, + 0.003276036586612463, + -0.0035006178077310324, + 0.011735268868505955, + 0.017253555357456207, + 0.005322222597897053, + -0.0025791211519390345, + -0.016512079164385796, + 0.00012031145888613537, + 0.0017725888174027205, + 0.015556717291474342, + -0.006865773815661669, + 0.010501853190362453, + 0.032567866146564484, + -0.015713566914200783, + 0.005892587825655937, + 0.02123185433447361, + -0.011300365440547466, + 0.0024650481063872576, + 0.008997514843940735, + 0.005382823757827282, + 0.007350584492087364, + -0.0013385764323174953, + -0.014487282373011112, + 0.004666302353143692, + 0.0028999517671763897, + 0.013239608146250248, + -0.025580890476703644, + 0.02635088376700878, + 0.006883597932755947, + 0.006263325456529856, + -0.00038321426836773753, + 0.008904830552637577, + 0.003249300643801689, + -0.016554856672883034, + 0.006641192361712456, + -0.0305145513266325, + -0.016155600547790527, + 0.011521382257342339, + -0.011991932988166809, + 0.001484732492826879, + 0.015071907080709934, + -0.024639787152409554, + 0.0018625996308401227, + -0.018579654395580292, + 0.0027555779088288546, + -0.0022066012024879456, + -0.013268126174807549, + 0.002514955122023821, + 0.031484171748161316, + 0.003267124528065324, + -0.010979535058140755, + -0.014886537566781044, + 0.004548664204776287, + 0.006309667602181435, + 0.010865462012588978, + -0.010131116025149822, + 0.006655451841652393, + -0.008441408164799213, + -0.031683798879384995, + 0.01228424534201622, + -0.024226272478699684, + 0.016355229541659355, + -0.0009803156135603786, + 0.001160337240435183, + -0.00913297664374113, + 0.002835785737261176, + -0.0003743023262359202, + 0.028389940038323402, + -0.013988212682306767, + -0.020262232050299644, + 0.007642896845936775, + -0.02248665690422058, + 0.04397517442703247, + -0.007186604663729668, + 0.007250770460814238, + 0.006723182741552591, + 0.02107500284910202, + -0.002768054837360978, + 0.0051012057811021805, + 0.00204796832986176, + -0.00443459115922451, + -0.01569930836558342, + 0.008854923769831657, + -0.003586172591894865, + 0.001518597942776978, + 0.026678843423724174, + -0.014045248739421368, + 0.01652633771300316, + 0.015685049816966057, + 0.0026343753561377525, + 0.01689707674086094, + 0.029031600803136826, + 0.02910289727151394, + 0.008341594599187374, + -0.0001949491270352155, + 0.030343441292643547, + -0.0002664675994310528, + 0.01491505652666092, + 0.019107243046164513, + -0.013474883511662483, + 0.000281617947621271, + 0.01850835792720318, + 0.0022404666524380445, + -0.0034008040092885494, + -0.024739600718021393, + 0.006509295664727688, + 0.006245501339435577, + -0.0011763786897063255, + 0.015513939782977104, + 0.02357035130262375, + 0.007856783457100391, + 0.015770604833960533, + -0.02128889039158821, + -0.01484376098960638, + 0.0013234260259196162, + -0.0012414359953254461, + 0.04138001427054405, + -0.004751856904476881, + 0.000894760771188885, + 0.02248665690422058, + 0.00956788007169962, + 0.0007606357685290277, + -0.03593302145600319, + -0.003545177634805441, + -0.006858644541352987, + -0.0004117325588595122, + 0.006594850216060877, + 0.002028362127020955, + 0.00027738476637750864, + -0.003498835489153862, + -0.031683798879384995, + -0.005678700748831034, + 0.03088528849184513, + 0.004284870345145464, + -0.008933348581194878, + 0.0007338998839259148, + 0.01579912193119526, + 0.016198378056287766, + -0.00010365723574068397, + 0.02784809283912182, + -0.010387780144810677, + 0.009888710454106331, + 0.012426837347447872, + 0.020005566999316216, + 0.026621807366609573, + 0.003803624538704753, + -0.02190203219652176, + 0.010694351978600025, + 0.020362045615911484, + 0.0011407309211790562, + 0.00641661137342453, + -0.005853375419974327, + 0.011307494714856148, + 0.03410785272717476, + 0.01262646447867155, + 0.015556717291474342, + -0.007535953540354967, + 0.011749528348445892, + 0.009917229413986206, + -0.01261933520436287, + 0.0063346209935843945, + 0.0017485265852883458, + -0.005457684397697449, + 0.0007615269860252738, + -0.007282853592187166, + -0.007871042937040329, + -0.0012654983438551426, + -0.011906378902494907, + -0.006798042915761471, + 0.010615927167236805, + 0.0077070631086826324, + -0.000322167354170233, + 0.00580346817150712, + 0.0005405103438533843, + 0.006395222619175911, + -0.01944946125149727, + 0.001172813936136663, + -0.02878919616341591, + -0.0006532466504722834, + 0.01288312952965498, + 0.015685049816966057, + -0.007735581137239933, + -0.02649347484111786, + -0.0006661689840257168, + 0.002286809030920267, + 0.0075716013088822365, + 0.010337873362004757, + 0.002942729275673628, + 0.014223488047719002, + 0.018451321870088577, + -0.022244252264499664, + 0.01934964768588543, + -0.014045248739421368, + -0.002935599535703659, + -0.010309355333447456, + 0.012918776832520962, + 0.009667694568634033, + -0.002176300622522831, + 0.004562923684716225, + -0.01654059812426567, + -0.03410785272717476, + -0.030172331258654594, + 0.014045248739421368, + 0.0129615543410182, + 0.0027787492144852877, + 0.000671070592943579, + 0.00043624042882584035, + -0.0044310265220701694, + -0.013018591329455376, + -0.015428384765982628, + 0.010166764259338379, + 0.019050205126404762, + -0.022458139806985855, + 0.020518897101283073, + -0.026365142315626144, + 0.020333528518676758, + 0.007535953540354967, + 0.00478394003584981, + -0.023983865976333618, + 0.034877847880125046, + 0.024012384936213493, + 0.0038606610614806414, + 0.012576557695865631, + -0.005186760798096657, + 0.007204428315162659, + -0.01121481042355299, + -0.00884066428989172, + 0.002753795590251684, + 0.00443459115922451, + 0.021659627556800842, + -0.005197455175220966, + 0.013738677836954594, + 0.012191561050713062, + 0.00010577382636256516, + -0.036218203604221344, + 0.005849810317158699, + -0.011100737378001213, + -0.016626153141260147, + 0.0012851046631112695, + -0.003194046439602971, + -0.012448226101696491, + -0.010109727270901203, + -0.003557654330506921, + 0.0032992076594382524, + 0.028047719970345497, + 0.0030265015084296465, + -0.014095155522227287, + -0.007357714232057333, + -0.0028910397086292505, + 0.01215591374784708, + -0.00675526587292552, + -0.014430245384573936, + 0.036959681659936905, + -0.00029164389707148075, + 0.01684003882110119, + -0.008127707056701183, + -0.012990073300898075, + -0.0051225945353507996, + -0.018280211836099625, + 0.0410948283970356, + 0.0012191560817882419, + -0.010758518241345882, + -0.036218203604221344, + -0.001015963382087648, + 0.011229069903492928, + 0.0013412500265985727, + -0.005051298998296261, + -0.005044169258326292, + 0.015770604833960533, + -0.022458139806985855, + -0.00024842089624144137, + -0.0023153272923082113, + -0.007885302416980267, + 0.0007263247389346361, + -0.003046107944101095, + 0.002413358772173524, + 0.020276490598917007, + 0.011122126132249832, + -0.013631734065711498, + 0.03541969507932663, + -0.012369800359010696, + 0.01453005988150835, + -0.0030407607555389404, + 0.015143202617764473, + 0.019677607342600822, + -1.2866642464359757e-5, + 0.006341750733554363, + 0.010765647515654564, + -0.015884676948189735, + 0.00504773436114192, + 0.012134524993598461, + -0.021203335374593735, + 0.0020568803884088993, + -0.0305145513266325, + -0.0028108321130275726, + -0.002686064690351486, + 0.003661033231765032, + -0.004523710813373327, + -0.006220547948032618, + 0.008420019410550594, + -0.016155600547790527, + -0.021460000425577164, + 0.002611204283311963, + 0.0035558720119297504, + -0.005250926595181227, + -0.008961866609752178, + -0.010159634053707123, + -0.003910568077117205, + -0.0009517973521724343, + 0.006502165924757719, + -0.01716800034046173, + 0.03222564607858658, + -0.009325474500656128, + -0.0037608470302075148, + 0.013959693722426891, + 0.0183087307959795, + -0.05204584449529648, + -0.01893613301217556, + 0.0031013621482998133, + -0.008348723873496056, + -0.006587720941752195, + 0.00028384593315422535, + 0.0051725017838180065, + 0.004313388839364052, + 0.01230563409626484, + -0.003921262454241514, + -0.020476119592785835, + -0.0021406528539955616, + 0.011877859942615032, + -0.022871654480695724, + 0.0024026643950492144, + 0.038471147418022156, + 0.003871355438604951, + -0.012982943095266819, + 0.019649090245366096, + -0.011129255406558514, + -0.0030692790169268847, + 0.011179162189364433, + 0.014252006076276302, + 0.002055098069831729, + 0.030314922332763672, + -0.015628013759851456, + -0.015585235320031643, + 0.0006897856947034597, + -0.0020800514612346888, + 0.019791681319475174, + -0.007600119337439537, + -0.009746119379997253, + 0.014772464521229267, + 0.003409715835005045, + 0.03188342973589897, + -0.007097485009580851, + -0.001146078109741211, + 0.02764846384525299, + -0.0017102051060646772, + 0.01124332845211029, + -0.010730000212788582, + -8.070893818512559e-5, + -0.012163043022155762, + 0.01538560725748539, + 0.00015595929289702326, + 0.011093608103692532, + 0.001742288121022284, + 0.0006764177815057337, + -0.0064237406477332115, + -0.00011719227040885016, + 0.008598258718848228, + 0.00811344850808382, + -0.00742188049480319, + 0.008149095810949802, + 0.004103066399693489, + -0.012676372192800045, + -0.025024782866239548, + -0.002133523114025593, + -0.020476119592785835, + 0.017823919653892517, + -0.023556092754006386, + -0.03162676468491554, + 0.003921262454241514, + 0.010623056441545486, + 0.00219768937677145, + 0.010002783499658108, + -0.0077070631086826324, + -0.012170172296464443, + 0.004969309084117413, + -0.016184119507670403, + 0.0015952407848089933, + -0.012576557695865631, + 0.026564769446849823, + 0.023513315245509148, + 0.018494099378585815, + 0.017823919653892517, + 0.00778548838570714, + -0.014501540921628475, + 0.01966334879398346, + 0.009304085746407509, + -0.013318032957613468, + -0.005418471526354551, + -0.015513939782977104, + -0.0007971748127602041, + 0.011129255406558514, + -0.010209541767835617, + -0.004662737250328064, + 0.011129255406558514, + -0.014159321784973145, + -0.026194032281637192, + -0.003491705982014537, + -0.00012510163651313633, + -0.0038000596687197685, + 0.02174518257379532, + 0.0053935181349515915, + -0.0004549555596895516, + 0.011806564405560493, + 0.009988524951040745, + 0.002568426774814725, + 0.02081833779811859, + 0.005564627703279257, + -0.0059745777398347855, + -0.009667694568634033, + 0.007343455217778683, + -0.005564627703279257, + -0.006184900179505348, + 0.0021263936068862677, + 0.0059745777398347855, + -0.03088528849184513, + -0.042634814977645874, + -0.00024886647588573396, + 0.0074147507548332214, + 0.006587720941752195, + -0.004213574808090925, + -0.04001113399863243, + -0.007963727228343487, + -0.0029855065513402224, + -0.0044310265220701694, + -0.009197142906486988, + 0.012897388078272343, + -0.012925907038152218, + 0.010295095853507519, + -0.0036503388546407223, + 0.027263468131422997, + 0.0012895605759695172, + -0.004242092836648226, + -0.021360184997320175, + 0.007557341828942299, + 0.021303148940205574, + 0.012341282330453396, + -0.006352445110678673, + 0.0251388568431139, + -0.012113136239349842, + -0.007871042937040329, + -0.007514564786106348, + 0.005885458551347256, + 0.003418627893552184, + 0.000860895321238786, + -0.008056411519646645, + 0.0035095298662781715, + -0.0044310265220701694, + -0.00644156476482749, + -0.02019093744456768, + 0.01528579369187355, + -0.015000610612332821, + 0.017880955711007118, + 0.024083681404590607, + -0.003030066378414631, + -0.0065413787961006165, + 0.003675292246043682, + -0.013139793649315834, + -0.025367002934217453, + -0.00389274419285357, + -0.008141966536641121, + -0.008612518198788166, + -0.01658337563276291, + -0.0011888555018231273, + 0.015014870092272758, + 0.001565831364132464, + -0.008484185673296452, + -0.003440016647800803, + -0.018921872600913048, + 0.009632046334445477, + 0.00784965418279171, + -0.006865773815661669, + 0.00034244207199662924, + 0.007036883383989334, + 0.008405760861933231, + 0.012098876759409904, + -0.015314311720430851, + -0.008997514843940735, + 0.02570922300219536, + 0.02101796679198742, + -0.024169234558939934, + 0.036018576472997665, + -0.0003680639492813498, + -0.013032849878072739, + 0.001912506646476686, + 0.005218843929469585, + -0.02321387268602848, + 0.02133166790008545, + 0.014159321784973145, + 0.003409715835005045, + -0.01799502968788147, + 0.0021121345926076174, + -0.004455979913473129, + -0.01288312952965498, + -0.01626967452466488, + 0.0222299937158823, + -0.0032920779194682837, + 0.015128943137824535, + -0.04021076485514641, + -0.0008020764216780663, + -0.023698683828115463, + 0.02231554687023163, + -0.029459374025464058, + -0.02268628589808941, + 0.03647486865520477, + 0.00915436539798975, + 0.018037807196378708, + 0.008690943010151386, + -0.006124299019575119, + -0.006252631079405546, + 0.02472534216940403, + 0.0046556079760193825, + 0.004716209135949612, + -0.008633906953036785, + 0.007628637831658125, + 0.022672025486826897, + 0.02388405241072178, + 0.009446677751839161, + -0.015784863382577896, + -0.010181022807955742, + -0.0008448538137599826, + -0.0022957208566367626, + 0.01087972056120634, + 0.0007753405370749533, + 0.0021460000425577164, + -0.016141341999173164, + -0.013339421711862087, + -0.011093608103692532, + 0.004124455153942108, + 0.003928391728550196, + -0.006730312015861273, + 0.022614989429712296, + -0.003242171136662364, + -0.019420942291617393, + 0.004698385484516621, + -0.018037807196378708, + -0.004284870345145464, + -0.007072531618177891, + -0.01559949479997158, + -0.015371348708868027, + -0.009753248654305935, + -0.008897701278328896, + -0.0035041826777160168, + 0.011421567760407925, + -0.00959639810025692, + 0.013396457768976688, + 0.009061681106686592, + 0.02191629260778427, + -0.021217593923211098, + 0.0012761927209794521, + -0.01846558041870594, + -0.004883754067122936, + -0.004762551281601191, + -0.008206132799386978, + 0.019363906234502792, + -0.006206288933753967, + 0.0015881112776696682, + -0.014109415002167225, + -0.018608171492815018, + -0.012134524993598461, + -0.011713880114257336, + 0.003757282393053174, + 0.007735581137239933, + 0.020533155649900436, + -0.003505964996293187, + 0.014009601436555386, + 0.023242391645908356, + 0.02696402557194233, + -0.03644635155797005, + -0.0059068468399345875, + -0.010936757549643517, + 0.02191629260778427, + -0.02097518928349018, + 0.010387780144810677, + 0.0041387141682207584, + -0.010722870007157326, + 0.008619647473096848, + -0.00782113615423441, + -0.009917229413986206, + 0.013517661020159721, + -0.001633562264032662, + -0.004152973182499409, + -0.01014537550508976, + -0.015000610612332821, + -0.024839414283633232, + 0.005568192806094885, + -0.03772967308759689, + -0.008291687816381454, + 0.008127707056701183, + -0.009931487962603569, + -0.022258510813117027, + -0.02655051089823246, + 0.01622689701616764, + 0.008976126089692116, + -0.008940477855503559, + -0.0061813355423510075, + 0.004505887161940336, + -0.022985726594924927, + 0.022814618423581123, + 0.007514564786106348, + -0.03553376719355583, + -0.0008876312058418989, + 0.007535953540354967, + -0.004427461884915829, + -0.0025862508919090033, + 0.016312452033162117, + -0.014016730710864067, + -0.0008127707405947149, + 0.024069420993328094, + 0.010844073258340359, + -0.014030990190804005, + 0.0027234950102865696, + -0.007343455217778683, + 0.025281447917222977, + 0.003336637746542692, + -0.0038285779301077127, + 0.01160693634301424, + 0.022158697247505188, + 0.002800137735903263, + -0.008776498027145863, + -0.026436438784003258, + -0.004987132735550404, + 0.005233102943748236, + -0.004530840553343296, + 0.017396146431565285, + -0.011649713851511478, + -0.0012931254459545016, + 0.019834458827972412, + 0.0005837333737872541, + -0.014159321784973145, + 0.00020464087720029056, + -0.006291843950748444, + 0.011699620634317398, + -0.004833847284317017, + -0.004441720899194479, + -0.013531919568777084, + -0.01113638561218977, + -0.014351820573210716, + 0.005760691128671169, + -0.009382511489093304, + 0.004060288891196251, + 0.016084305942058563, + -0.018479840829968452, + 0.012769056484103203, + -0.007243641186505556, + -0.009489455260336399, + 0.0008617865387350321, + 0.013360810466110706, + -0.007956597954034805, + 0.0070083653554320335, + 0.019292611628770828, + 0.011029441840946674, + 0.016626153141260147, + 0.018351508304476738, + 0.004869495052844286, + -0.013752936385571957, + -0.009681953117251396, + 0.005853375419974327, + -0.0027840964030474424, + 0.002734189387410879, + -0.005521850194782019, + 0.021032225340604782, + -0.0007165215793065727, + 0.0236844252794981, + -0.01045907661318779, + -0.0005507591413334012, + 0.003151268931105733, + -0.006159946788102388, + 0.006616238970309496, + 0.0002337161567993462, + -0.011877859942615032, + -0.01569930836558342, + 0.0072971126064658165, + -0.010209541767835617, + -0.014644132927060127, + -0.0020640098955482244, + 0.006010225974023342, + -0.012533780187368393, + 0.0028375680558383465, + -0.00374302314594388, + -0.0035416129976511, + -0.0028767806943506002, + 0.02290017157793045, + 0.000613588432315737, + 0.0029676826670765877, + 0.012811833992600441, + -0.008783627301454544, + -0.008648165501654148, + 0.0025452557019889355, + 0.0001717780251055956, + 0.016255414113402367, + 0.0033651560079306364, + -0.012555168941617012, + 0.005489767529070377, + 0.008277428336441517, + -0.005368564743548632, + 0.008933348581194878, + 0.015727827325463295, + -0.002983724232763052, + 0.003363373689353466, + 0.0005668006488122046, + -0.008455667644739151, + -0.011514252051711082, + 0.0024151410907506943, + -0.030115295201539993, + -0.01913576014339924, + 0.012391189113259315, + 0.020960930734872818, + -0.008405760861933231, + -0.01291164755821228, + 0.03342341631650925, + 0.016512079164385796, + -0.015442644245922565, + 0.009211401455104351, + -0.010216671042144299, + -0.01946371980011463, + 0.011756657622754574, + -0.005222408566623926, + 0.00012020005669910461, + -6.956898869248107e-5, + -0.0007276615360751748, + 0.021303148940205574, + -0.014130803756415844, + -0.00029164389707148075, + 0.004277740605175495, + -0.010309355333447456, + -0.00020085330470465124, + 0.0026005099061876535, + 0.0036111262161284685, + -0.016968371346592903, + 0.00272527732886374, + -0.009532232768833637, + 0.0010685439920052886, + -0.0071438271552324295, + 0.008726591244339943, + 0.02039056457579136, + 0.005874764174222946, + -0.01535708922892809, + -0.0048302821815013885, + 0.015114683657884598, + 0.0066304984502494335, + 0.001837646123021841, + -0.018280211836099625, + -0.016626153141260147, + 0.005407777149230242, + -0.01934964768588543, + 0.010230929590761662, + 0.011663973331451416, + 0.01118629239499569, + 0.027135135605931282, + 0.004580747336149216, + 0.012419707141816616, + -0.009917229413986206, + -0.019592052325606346, + -0.02603718265891075, + -0.0008849576115608215, + -0.00718303956091404, + 0.00404246523976326, + -0.025680704042315483, + -0.004284870345145464, + 0.00711887376382947, + -0.013318032957613468, + -0.012120265513658524, + -0.02884623222053051, + 0.0017262466717511415, + 0.0028660863172262907, + -0.0011754875304177403, + 0.013132664375007153, + 0.006726747378706932, + -0.014301913790404797, + -0.007165215909481049, + -0.007307806983590126, + -0.011029441840946674, + -0.003621820593252778, + -0.00978176761418581, + -0.019677607342600822, + 0.011706750839948654, + -0.004887318704277277, + -0.0038214484229683876, + -0.005279445089399815, + 0.007478917017579079, + 0.030229367315769196, + 0.011086477898061275, + -0.015585235320031643, + -0.014045248739421368, + -0.010516112670302391, + -0.0037501526530832052, + 0.001912506646476686, + 0.004541534930467606, + -0.0205474141985178, + 0.0019909318070858717, + 0.003967604599893093, + 0.012982943095266819, + -0.005489767529070377, + 0.020176677033305168, + 0.001878641196526587, + -0.021659627556800842, + -0.009353993460536003, + 0.009403900243341923, + 0.015870418399572372, + 0.027562910690903664, + 0.018707986921072006, + -0.018765022978186607, + 0.01579912193119526, + -0.020162418484687805, + 0.012056099250912666, + -0.007628637831658125, + 0.010473335161805153, + 0.0021923421882092953, + 0.006110039539635181, + 0.02107500284910202, + 0.002345627872273326, + -0.005496896803379059, + 0.017239294946193695, + -0.003643209347501397, + -0.015984490513801575, + -0.0019321129657328129, + -0.02284313552081585, + 0.005967448465526104, + -0.007970857433974743, + 0.029601966962218285, + 0.0050370399840176105, + -6.527314326376654e-6, + -0.011385920457541943, + -0.014900797046720982, + 0.008947608061134815, + 0.01462987344712019, + -0.008783627301454544, + 0.0077926176600158215, + -0.0006318579544313252, + -0.00923279020935297, + 0.00713313277810812, + 0.006616238970309496, + 0.012754797004163265, + -0.006904986687004566, + 0.01773836463689804, + -0.012483873404562473, + -0.015456903725862503, + -0.005129724275320768, + -0.032995641231536865, + -0.01465839147567749, + -0.014252006076276302, + 0.03496340289711952, + -0.008534092456102371, + 0.009403900243341923, + -0.0022155132610350847, + -0.003653903491795063, + -0.006666146218776703, + -0.010680092498660088, + -0.016554856672883034, + 0.0015408778563141823, + 0.002522084629163146, + 0.004555793944746256, + -0.029773075133562088, + 0.02957344800233841, + 0.019321128726005554, + -0.010608796961605549, + -0.026821434497833252, + 0.015898937359452248, + -0.012041840702295303, + 0.0034489284735172987, + 0.014052378945052624, + -0.014786724001169205, + -0.0010738911805674434, + 0.010116856545209885, + -0.015300053171813488, + 0.010530372150242329, + -0.02029075101017952, + 0.004377554636448622, + -0.007856783457100391, + 0.0020051910541951656, + 0.00042064450099132955, + 0.006537813693284988, + -0.001369768287986517, + -0.004242092836648226, + -0.017182258889079094, + -0.007749840617179871, + 0.02983011305332184, + 0.05441286414861679, + 0.03792930021882057, + -0.004135149531066418, + 0.004848106298595667, + 0.02963048405945301, + -0.027520133182406425, + 0.006291843950748444, + 0.001837646123021841, + -0.03251082822680473, + -0.005653747357428074, + -0.01285461150109768, + -0.014786724001169205, + 0.025224411860108376, + 0.011514252051711082, + -0.014066637493669987, + -0.0024187059607356787, + -0.00747178727760911, + 0.0027431012131273746, + -0.0022208604495972395, + 0.006388092879205942, + -0.010352132841944695, + 0.005785644520074129, + -0.011050830595195293, + 0.013154053129255772, + 0.01363886334002018, + -0.0003856650728266686, + 0.005874764174222946, + -0.009218531660735607, + -0.016825780272483826, + 0.018551135435700417, + 0.025694962590932846, + -0.01048759464174509, + -0.009368252009153366, + -0.0073862322606146336, + -0.0075716013088822365, + 0.009817414917051792, + 0.0057749501429498196, + 0.012925907038152218, + -0.009760378859937191, + -0.004049594514071941, + 3.3141350286314264e-5, + -0.02576625905930996, + -0.005322222597897053, + -0.020019827410578728, + -0.007065401878207922, + -0.01622689701616764, + 0.020219454541802406, + -0.023299427703022957, + 0.01581338234245777, + -0.021773701533675194, + 0.005108335521072149, + 0.005183195695281029, + -0.016725966706871986, + -0.014686910435557365, + 0.0006523554911836982, + 0.013146922923624516, + 0.0319119468331337, + 0.0025470382533967495, + -0.010216671042144299, + -0.028290126472711563, + -0.015884676948189735, + 0.007197299040853977, + 0.009439547546207905, + -0.0005650182720273733, + -0.022258510813117027, + 0.015485421754419804, + -0.001308275735937059, + -0.014487282373011112, + -0.00784965418279171, + -0.01652633771300316, + 0.0019766727928072214, + -0.010680092498660088, + -0.006081521511077881, + -0.017353368923068047, + -0.01919279620051384, + -0.0005979925044812262, + -0.026379400864243507, + 0.005432731006294489, + -0.012990073300898075, + 0.027762537822127342, + -0.007104614283889532, + 0.006352445110678673, + 0.017495959997177124, + -0.0012369800824671984, + -0.016298191621899605, + 0.0012521303724497557, + -0.01189211942255497, + -0.0008809472201392055, + -0.007033318746834993, + -0.010330744087696075, + -0.024497196078300476, + -0.008355854079127312, + -0.014230617322027683, + 0.0035469599533826113, + 0.007019059732556343, + -0.00413158442825079, + -0.00581416254863143, + -0.004598571453243494, + -0.0009214966557919979, + 0.0017948687309399247, + -0.00028540552011691034, + 0.0014481934485957026, + 0.008270299062132835, + 0.018579654395580292, + -0.008042152971029282, + -0.043319255113601685, + 0.010188153013586998, + 0.010088338516652584, + 0.004427461884915829, + 0.02811901643872261, + -0.01585615985095501, + -0.016055786982178688, + 0.013389328494668007, + 0.005949624348431826, + -0.017225036397576332, + 0.02749161422252655, + -2.015634663621313e-6, + 0.015057647600769997, + 0.008591129444539547, + -0.002122828969731927, + -0.016768744215369225, + 0.00784965418279171, + 0.023983865976333618, + 0.016212638467550278, + 0.0018429933115839958, + -0.0032920779194682837, + 0.002133523114025593, + 0.021944809705018997, + -0.014137933030724525, + 0.002564862137660384, + 0.016811521723866463, + 0.0037251992616802454, + -0.011678232811391354, + 0.009325474500656128, + -3.1164010579232126e-5, + -0.003696681000292301, + 0.01225572731345892, + -0.0038357076700776815, + 0.020533155649900436, + -0.013218219392001629, + -0.011350272223353386, + 0.00816335529088974, + 0.017980771139264107, + 0.005008521489799023, + -0.003286730730906129, + 0.004527275450527668, + -0.008876312524080276, + 0.006345315370708704, + 0.014644132927060127, + 0.011671102605760098, + 0.002292156219482422, + -0.01591319590806961, + 0.006263325456529856, + -0.009296956472098827, + -0.0008461906109005213, + 0.020219454541802406, + 0.016241155564785004, + 0.014209228567779064, + -0.007400491740554571, + 0.009945747442543507, + -0.0051511130295693874, + 0.011343142949044704, + 0.014223488047719002, + 0.021787960082292557, + 0.0072115580551326275, + 0.006605544593185186, + 0.015485421754419804, + -0.0011220157612115145, + -0.027049580588936806, + -0.021360184997320175, + -0.0032582124695181847, + -0.005069122649729252, + -0.011642584577202797, + -0.008141966536641121, + 0.005329351872205734, + -0.00923279020935297, + -0.013767195865511894, + -0.023755719885230064, + -0.03251082822680473, + -0.0021727357525378466, + 0.017495959997177124, + 0.014137933030724525, + 0.025780517607927322, + -0.013631734065711498, + 0.02029075101017952, + -0.001702184323221445, + -0.004616395104676485, + -0.0009927923092618585, + 0.01390265766531229, + -0.00674457149580121, + 0.0020800514612346888, + 0.018422802910208702, + -0.01535708922892809, + -0.009838803671300411, + -0.0016629716847091913, + 0.0020800514612346888, + 0.0012093529803678393, + -0.003268906846642494, + -0.004801764152944088, + 0.0005244688363745809, + -0.019235573709011078, + -0.03599005937576294, + -0.0005168936913833022, + -0.014601355418562889 + ], + "8ac0adf3-cc9a-46bd-974d-a948fad3c944": [ + -0.02196628600358963, + -0.0018984946655109525, + -0.017227081581950188, + -0.0185489971190691, + -0.042413778603076935, + -0.0003401469730306417, + 0.020447490736842155, + 0.050823405385017395, + 0.019702155143022537, + 0.03436978533864021, + 0.008290093392133713, + 0.0064865234307944775, + -0.012994141317903996, + -0.021319393068552017, + -0.0023572975769639015, + -0.004331380594521761, + -0.06862706691026688, + 0.02861804887652397, + -0.013001172803342342, + -0.009323718026280403, + 0.05740485340356827, + -0.03735112398862839, + -0.03271036222577095, + 0.021319393068552017, + -0.022880377247929573, + -0.027478951960802078, + 0.0388980470597744, + -0.00041683384915813804, + -0.022402238100767136, + -0.009302623569965363, + -0.014238710515201092, + 0.015117643401026726, + 0.0348479263484478, + -0.009119805879890919, + 0.010582350194454193, + -0.013528532348573208, + -0.026269542053341866, + 0.020180296152830124, + -0.037013616412878036, + -0.0013263095170259476, + 0.0005137361586093903, + 0.017058325931429863, + 0.030910305678844452, + 0.008522131480276585, + -0.01101830042898655, + 0.02444136142730713, + 0.030994683504104614, + -0.00874713808298111, + 0.014231679029762745, + 0.0015592266572639346, + -0.010483909398317337, + 0.039854325354099274, + -0.006855675484985113, + 0.026382043957710266, + -0.0005242833867669106, + 0.0037231589667499065, + 0.02286631427705288, + 0.08764014393091202, + 0.03285098820924759, + -0.029532140120863914, + -0.0022166683338582516, + -0.0053228167816996574, + 0.0038356625009328127, + 0.005748220253735781, + -0.010631570592522621, + -0.03442603722214699, + 0.007987740449607372, + 0.007882269099354744, + -0.02677580714225769, + -0.00907058548182249, + 0.014224647544324398, + 0.00918308924883604, + -0.03796989470720291, + 0.0061208875849843025, + 0.005832597613334656, + -0.006233390886336565, + 0.053860995918512344, + -0.02320382371544838, + 0.011306590400636196, + -0.013303525745868683, + -0.034116651862859726, + 0.019252141937613487, + 0.0008604751201346517, + -0.029644643887877464, + 0.018113045021891594, + 0.014991076663136482, + -0.03453854098916054, + -0.03543856739997864, + -0.038026146590709686, + -0.016720816493034363, + 0.02891337126493454, + 0.016650501638650894, + -0.011728478595614433, + 0.002348508220165968, + -0.02046155370771885, + -0.0077557023614645, + 0.032991617918014526, + 0.017227081581950188, + -0.030544670298695564, + -0.0306853000074625, + -0.018492745235562325, + 0.006753718946129084, + -0.045226361602544785, + -0.015370775945484638, + 0.006894348189234734, + -0.012944920919835567, + -0.003884882666170597, + -3.0323179089464247e-5, + -0.017395837232470512, + 0.021235015243291855, + 0.03611358627676964, + -0.029897775501012802, + 0.02452573925256729, + 0.013809790834784508, + 0.010701884515583515, + -0.06581448018550873, + -0.007783828303217888, + -0.012698819860816002, + -0.040051206946372986, + -0.08629009872674942, + 0.056195441633462906, + 0.031416572630405426, + 0.020672498270869255, + -0.033919770270586014, + 0.014372307807207108, + -0.01546921581029892, + -0.02650861069560051, + 0.033019743859767914, + -0.0051575773395597935, + 0.020377175882458687, + -0.004043090622872114, + -0.019322456791996956, + 0.00021434972586575896, + 0.02700081281363964, + -0.01760677993297577, + -0.0017183134332299232, + 0.030460292473435402, + 0.04086685553193092, + -0.027774274349212646, + 0.041654378175735474, + -0.0179864801466465, + -0.004865771625190973, + -0.003853240981698036, + -0.018984947353601456, + 0.014020734466612339, + -0.006131434813141823, + -0.04210439324378967, + 0.03442603722214699, + -0.01077923085540533, + 0.008986208587884903, + -0.03335725516080856, + 0.020981881767511368, + 0.03653547540307045, + -0.0003722280089277774, + -0.0014414496254175901, + -0.00557594932615757, + 0.005199766252189875, + 0.01061047613620758, + -0.03543856739997864, + 0.008304156363010406, + 0.00021742598619312048, + -0.04142937436699867, + 0.03442603722214699, + -0.002540115499868989, + -0.0009404580341652036, + 0.015652034431695938, + 0.05436726287007332, + 0.033919770270586014, + -0.036591727286577225, + 0.02515857107937336, + 0.008922925218939781, + -0.029447762295603752, + 0.007101776544004679, + 0.002225457690656185, + -0.012494907714426517, + -0.029054000973701477, + 0.013437123969197273, + 0.014442622661590576, + 0.023006943985819817, + -0.04730767384171486, + 0.01147534605115652, + -0.01030812319368124, + -0.022936629131436348, + -0.01757865399122238, + -0.023555397987365723, + 0.022542865946888924, + 0.042751286178827286, + -0.01260037999600172, + -0.014794196002185345, + 0.014892635866999626, + 0.0019617779180407524, + 0.006465428974479437, + 0.04289191588759422, + 0.03276661038398743, + 0.0011461282847449183, + -0.008191652595996857, + -0.0015987786464393139, + -0.00416965689510107, + 0.025144508108496666, + 0.03226034715771675, + -0.023639773949980736, + -0.060133062303066254, + -0.03397602215409279, + 0.00641972478479147, + -0.03451041504740715, + 0.0073408461175858974, + -0.0057306415401399136, + -0.015455152839422226, + -0.0004662738065235317, + -0.042301274836063385, + 0.013338683173060417, + -0.02455386519432068, + 0.012790229171514511, + -0.0048622558824718, + -0.03197908774018288, + -0.00199869298376143, + 0.002506716176867485, + 0.024005411192774773, + 0.00686270697042346, + 0.01915370114147663, + 0.005361489485949278, + 0.029982153326272964, + 0.02695862390100956, + -0.037604257464408875, + -0.045338865369558334, + -0.010385469533503056, + -0.013085550628602505, + 0.03543856739997864, + -0.0321478433907032, + -0.006454881746321917, + 0.040754351764917374, + 0.0005458172527141869, + 0.03048841841518879, + -0.037491753697395325, + -0.018492745235562325, + -0.005790408700704575, + -0.0007365456549450755, + -0.02196628600358963, + 0.023499146103858948, + -0.02774614840745926, + 0.040613722056150436, + -0.0028284054715186357, + 0.00414856243878603, + 0.01134174782782793, + 0.012951952405273914, + 0.025805464014410973, + -0.015792664140462875, + 0.052285950630903244, + 0.04469197243452072, + -0.017100514844059944, + -0.0029127830639481544, + 0.02522888593375683, + -0.007530695758759975, + -0.012044894509017467, + -0.0020443976391106844, + 0.013971514999866486, + -0.026241416111588478, + -0.004134499467909336, + -0.007017398718744516, + -0.004697016440331936, + -0.03186658397316933, + -0.005248986184597015, + -0.00031443819170817733, + -0.04134499654173851, + 0.03616983816027641, + -0.019856847822666168, + 0.026986749842762947, + -0.031894709914922714, + -0.011201119050383568, + -0.0006337104714475572, + -0.04255440831184387, + -0.00015128629456739873, + -0.02527107298374176, + 0.014653566293418407, + -0.002097133547067642, + -0.002997160656377673, + 0.014027765952050686, + -0.014393402263522148, + 0.000902663916349411, + 0.013401966542005539, + 0.008001803420484066, + 0.008346345275640488, + 0.021488146856427193, + 0.023892907425761223, + 0.016453620046377182, + -0.01068079099059105, + -0.004123952239751816, + 0.013577752746641636, + -0.024539802223443985, + -0.03203533962368965, + 0.010842514224350452, + -0.01956152729690075, + 0.04370756819844246, + 0.012888669967651367, + 0.03026341088116169, + -0.015398901887238026, + -0.0030850539915263653, + -0.003201073035597801, + -0.015609845519065857, + 0.0014766069361940026, + -0.05076715350151062, + 0.0034542055800557137, + 0.028378980234265327, + -0.010139367543160915, + 0.0097245117649436, + 0.007354909088462591, + 0.013823853805661201, + -0.019463086500763893, + -0.025805464014410973, + -0.0028670786414295435, + 0.04373569414019585, + 0.0030463808216154575, + -0.01859118416905403, + -0.018788065761327744, + 0.0039059771224856377, + 0.02556639537215233, + 0.013338683173060417, + 0.02054593153297901, + 0.007277563214302063, + -0.0076150731183588505, + 0.015820788219571114, + -0.008458849042654037, + -0.042413778603076935, + -0.0001510665606474504, + 0.026339856907725334, + -0.01580672711133957, + 0.020700624212622643, + 0.006606058217585087, + -0.019519338384270668, + -0.030629048123955727, + -0.014259804971516132, + -0.044551342725753784, + -0.035241685807704926, + -0.03991057723760605, + -0.0005941585404798388, + 0.012811323627829552, + -0.020756876096129417, + -0.03819490224123001, + -0.008304156363010406, + 0.001278847106732428, + -0.01681925728917122, + 0.05838925763964653, + -0.04187938570976257, + -0.014372307807207108, + 0.005410709884017706, + -0.01288163848221302, + -0.004633733537048101, + 0.030207160860300064, + -0.0011461282847449183, + -0.018689624965190887, + 0.0006710651214234531, + -0.02099594473838806, + 0.031332194805145264, + -0.014442622661590576, + 0.02016623318195343, + 0.0059310379438102245, + -0.011946453712880611, + -0.022739747539162636, + 0.015370775945484638, + 0.0001883113436633721, + -0.015272335149347782, + -0.009323718026280403, + -0.037013616412878036, + -0.0024012441281229258, + -0.004419273696839809, + 0.03690111264586449, + 0.00022874223941471428, + 0.015905166044831276, + 0.00023269743542186916, + 0.01263553649187088, + -0.02230379730463028, + 0.03667610511183739, + 0.011939422227442265, + 0.006528712343424559, + -0.015370775945484638, + 0.0018000542186200619, + 0.05726422369480133, + 0.039629317820072174, + -0.0059872898273169994, + 0.0185489971190691, + -0.0006240422371774912, + 0.014864509925246239, + -0.0016629407182335854, + -0.0157364122569561, + 0.058108001947402954, + 0.01724114455282688, + 0.004950148984789848, + -0.0048270984552800655, + -0.014569188468158245, + -0.019547464326024055, + -0.024736681953072548, + 0.0001690846838755533, + -0.03960119187831879, + 0.0027141442988067865, + -0.033216625452041626, + 0.019364645704627037, + 0.020489679649472237, + 0.014351213350892067, + 0.010856577195227146, + 0.0166364386677742, + -0.020138107240200043, + -0.01534265000373125, + 0.004324349109083414, + -0.00040760505362413824, + 0.01794429123401642, + -0.028716489672660828, + -0.011081583797931671, + 0.016355181112885475, + -0.009822952561080456, + 0.004886866081506014, + 0.025397639721632004, + -0.035354189574718475, + 0.002821373986080289, + -0.013380872085690498, + 0.06508321315050125, + -0.009668259881436825, + 0.016102047637104988, + 0.019688094034790993, + -0.05042964592576027, + -0.022739747539162636, + 0.029785271733999252, + 0.0440732017159462, + -0.009436221793293953, + 0.020517805591225624, + -0.021502209827303886, + 0.008501037023961544, + 0.045226361602544785, + 0.02331632748246193, + -0.0019688094034790993, + -0.0100057702511549, + -0.0080369608476758, + -0.0021762375254184008, + -0.008958082646131516, + -0.025411702692508698, + -0.00053614896023646, + 0.007242405787110329, + 0.00660957396030426, + 0.003056928049772978, + -0.005579465068876743, + -0.002547146985307336, + 0.03420102968811989, + 0.04036059230566025, + 0.01674894243478775, + 0.0026315245777368546, + 0.0016418463783338666, + -0.055520422756671906, + -0.024061663076281548, + 0.0007339088479056954, + 0.009176057763397694, + 0.006943568587303162, + 0.006110340356826782, + 0.06350816041231155, + -0.018492745235562325, + 0.011608943343162537, + -0.019800595939159393, + 0.00914090033620596, + -0.017958354204893112, + -0.0061701079830527306, + 0.0004328743671067059, + 0.016397368162870407, + -0.004668890498578548, + 0.004334896337240934, + 0.036929238587617874, + -0.039966829121112823, + 0.02726800926029682, + -0.030432166531682014, + -0.034341659396886826, + 0.005537276156246662, + 0.002833679085597396, + -0.010715947486460209, + 0.004858740139752626, + 0.050598397850990295, + -0.03358226269483566, + 0.01956152729690075, + -0.03358226269483566, + -0.006887316703796387, + 0.011362842284142971, + -0.013022267259657383, + 0.03138844668865204, + -0.014752007089555264, + -0.02012404426932335, + -0.026410169899463654, + -0.0017402868252247572, + 0.011482377536594868, + 0.03234472498297691, + 0.011243307031691074, + -0.01899901032447815, + 0.011876138858497143, + -0.006521680857986212, + -0.013676193542778492, + 0.012326152995228767, + 0.003768863622099161, + -0.022360049188137054, + -0.011890201829373837, + -0.027436764910817146, + -0.053382858633995056, + 0.00784711167216301, + -0.012080051004886627, + -0.001203258871100843, + -0.03113531321287155, + 0.06300190091133118, + -0.013514469377696514, + 0.008494005538523197, + 0.008796358481049538, + 0.0021656902972608805, + 0.015216083265841007, + -0.023035068064928055, + 0.010877671651542187, + 0.012980078347027302, + -0.010673759505152702, + -0.0034682685509324074, + -0.004841161426156759, + -0.010638602077960968, + -0.005860723555088043, + -0.0025084740482270718, + 0.023485083132982254, + -0.02511638216674328, + 0.026986749842762947, + 0.02756332978606224, + -0.04494510591030121, + -0.0005234044510871172, + -0.010322186164557934, + -0.030404040589928627, + 0.008065086789429188, + 0.027577392756938934, + -0.004071216564625502, + -0.017775535583496094, + 0.03886992111802101, + 0.004060669336467981, + -0.013064456172287464, + -0.020447490736842155, + 0.004173172637820244, + -0.0334978848695755, + 0.0007207248127087951, + -0.0005840507801622152, + -0.027774274349212646, + 0.022542865946888924, + -0.029869649559259415, + -0.011630037799477577, + 0.024286668747663498, + -0.031697828322649, + 0.011974579654633999, + -0.010392501018941402, + -0.014189490117132664, + 0.013057424686849117, + 0.015117643401026726, + -0.02016623318195343, + 0.01881619170308113, + 0.0019037682795897126, + 0.017325522378087044, + -0.025242948904633522, + 0.02151627279818058, + -0.007537727244198322, + 0.0003175144374836236, + 0.024652305990457535, + -0.04199188947677612, + -0.003853240981698036, + -0.017227081581950188, + -0.026635177433490753, + -0.016720816493034363, + 0.017170829698443413, + -0.016172362491488457, + 0.01679113134741783, + -0.018000543117523193, + -0.043201301246881485, + 0.0018791581969708204, + -0.01843649335205555, + 0.02279599942266941, + 0.005952132400125265, + 0.027085190638899803, + 0.015370775945484638, + 0.031669702380895615, + 0.019547464326024055, + -0.010997205972671509, + -0.02463824301958084, + 0.02095375582575798, + 0.011271432973444462, + 0.0312478169798851, + -0.011053457856178284, + -0.004830614197999239, + 0.026607051491737366, + -0.02430073171854019, + 0.03493230417370796, + -0.009858109056949615, + 0.005066168028861284, + 0.007622104603797197, + -0.04283566400408745, + -0.04916398227214813, + -0.007952583022415638, + 0.0015434058150276542, + 0.0035579197574406862, + 0.02110844850540161, + 0.037154246121644974, + -0.003355765249580145, + -0.0026385560631752014, + -0.002666682004928589, + 0.0004583634145092219, + -0.004689984954893589, + -0.0005392252351157367, + -0.006075182929635048, + -0.007826017215847969, + 0.027928967028856277, + 0.041176240891218185, + -0.018506808206439018, + -0.02212097868323326, + 0.019800595939159393, + -0.03757613152265549, + -0.01681925728917122, + -0.02504606731235981, + -0.03639484569430351, + -0.008908862248063087, + -0.0064267562702298164, + 0.01350040640681982, + -0.021839721128344536, + 0.04933273792266846, + 0.023063194006681442, + 0.021347519010305405, + 0.017452089115977287, + 0.010160461999475956, + -0.026494547724723816, + 0.02162877656519413, + -0.05723609775304794, + 0.04708267003297806, + -0.0334978848695755, + 0.03563544899225235, + 0.021206889301538467, + 0.0039130086079239845, + -0.023414768278598785, + -0.011482377536594868, + 0.020152170211076736, + -0.012340215966105461, + 0.006648247130215168, + 0.0063212839886546135, + -0.013451186940073967, + 0.0348479263484478, + 0.006971694529056549, + 0.019125577062368393, + 0.013584784232079983, + -0.016917698085308075, + 0.04058559611439705, + -0.01679113134741783, + -0.006630668416619301, + 0.00030696726753376424, + 0.007066619116812944, + -0.011988642625510693, + -0.020138107240200043, + -0.04097935929894447, + 0.00643027201294899, + 0.03113531321287155, + 0.011545659974217415, + -0.05906428024172783, + 0.012586317025125027, + 0.039854325354099274, + 0.0038426939863711596, + 0.007077166344970465, + -0.026607051491737366, + -0.044551342725753784, + 0.018970884382724762, + 0.019027136266231537, + -0.002010998083278537, + 0.03808239847421646, + 0.0021533851977437735, + -0.030882179737091064, + 0.0069752102717757225, + 0.03003840520977974, + 0.0020127559546381235, + 0.000486489268951118, + -0.0157364122569561, + 0.0037618321366608143, + 0.04066997393965721, + 0.009844047017395496, + -0.015722349286079407, + 0.02347102016210556, + 0.004563418682664633, + 0.005702515598386526, + -0.03226034715771675, + 0.016453620046377182, + -0.046548277139663696, + 0.016467683017253876, + -0.011306590400636196, + -0.013401966542005539, + -0.0008973903022706509, + -0.015230146236717701, + -0.011869107373058796, + 0.016172362491488457, + -0.018492745235562325, + -0.0054564145393669605, + 0.015230146236717701, + -0.03361038863658905, + -0.00257175718434155, + -0.0057657985016703606, + -0.0017051295144483447, + -0.016580186784267426, + 0.0038005050737410784, + -0.009991707280278206, + 0.004507167264819145, + -0.018197422847151756, + -0.007741639390587807, + 0.0005932796048000455, + -0.020925629884004593, + -0.044748224318027496, + -0.006226359400898218, + 0.002105922903865576, + 0.013106645084917545, + 0.001919589121825993, + 0.032541606575250626, + -0.01244568731635809, + -0.008247904479503632, + 0.031191565096378326, + 0.0003381693677511066, + 0.022050663828849792, + 0.008648698218166828, + 0.007277563214302063, + 0.02313350886106491, + -0.0016471199924126267, + -0.004865771625190973, + -0.0017534707440063357, + -0.002889930736273527, + -0.014920761808753014, + 0.032119717448949814, + -0.034032274037599564, + 0.04871396720409393, + -0.007692419458180666, + -0.04396069794893265, + -0.053720369935035706, + 0.033019743859767914, + 0.021192826330661774, + -0.010877671651542187, + -0.007122871000319719, + -0.007305688690394163, + 0.04972649738192558, + 0.007509601302444935, + -0.022514740005135536, + 0.003962228540331125, + 0.009246372617781162, + -0.023780403658747673, + -0.025524206459522247, + -0.007119355257600546, + 0.03827928006649017, + -0.03847615793347359, + -0.016805194318294525, + -0.03917930647730827, + 0.029335258528590202, + 0.005196250509470701, + 0.021839721128344536, + -0.011025331914424896, + -0.003698549000546336, + -0.005277112126350403, + -0.008754169568419456, + 0.011651132255792618, + 0.041654378175735474, + -0.009365906938910484, + 0.03653547540307045, + 0.020194359123706818, + -0.014934824779629707, + -0.010350312106311321, + -0.013795727863907814, + 0.00799477193504572, + 0.01960371620953083, + -0.0004838524619117379, + 0.0015521951718255877, + -0.0053825839422643185, + 0.01746615208685398, + -0.005625169258564711, + -0.0017648969078436494, + -0.016692690551280975, + -0.021038133651018143, + 0.0009615524322725832, + 0.04457946866750717, + -0.0063458941876888275, + 0.035241685807704926, + 0.01115189865231514, + 0.044101327657699585, + 0.015637971460819244, + 0.01625674031674862, + -0.010104211047291756, + 0.045760754495859146, + 0.02493356354534626, + -0.040501222014427185, + 0.03335725516080856, + -0.04055747017264366, + -0.05388912186026573, + 0.001875642454251647, + -0.030516544356942177, + 0.00556540209800005, + -0.012150365859270096, + 0.02590390481054783, + 0.025960156694054604, + -0.014948887750506401, + -0.016959885135293007, + 0.037041742354631424, + 0.002156900940462947, + 0.0005902033299207687, + 0.014667629264295101, + 0.009935455396771431, + 0.010673759505152702, + 0.03428540751338005, + -0.01372541394084692, + -0.010083116590976715, + -0.008662761189043522, + -5.4081829148344696e-5, + -0.04244190454483032, + 0.005213828757405281, + 0.026227353140711784, + 0.006141982041299343, + 0.015314524061977863, + 0.006982241757214069, + -0.0056568109430372715, + 0.02012404426932335, + 0.0028424684423953295, + -0.03608546033501625, + 0.010040927678346634, + 0.017325522378087044, + 0.02185378409922123, + -0.0009764942806214094, + -0.009675291366875172, + -0.02185378409922123, + -0.0011399757349863648, + 0.003930587321519852, + -0.020602183416485786, + 0.0003434429527260363, + 0.018830254673957825, + 0.022655369713902473, + 0.04427008330821991, + -0.014140269719064236, + -0.022936629131436348, + 0.0007343483157455921, + -0.019983414560556412, + 0.017747409641742706, + 0.015441089868545532, + 0.004524745512753725, + -0.011095646768808365, + -0.014337150380015373, + 0.023794466629624367, + 0.027239883318543434, + 0.049923378974199295, + -0.0357479527592659, + -0.004950148984789848, + -0.040726225823163986, + -0.0014599072746932507, + 0.011285495944321156, + -0.013359777629375458, + 0.009429190307855606, + -0.010062022134661674, + -0.013212116435170174, + -0.0012797260424122214, + 0.014147301204502583, + 0.007671325001865625, + 0.03150095045566559, + 0.010258902795612812, + 0.027647707611322403, + -0.0034999102354049683, + 0.00186333735473454, + 0.017030199989676476, + -0.04702641814947128, + 0.021080322563648224, + 0.012403498403728008, + 0.021713154390454292, + -0.014414496719837189, + 0.018506808206439018, + 0.005062652751803398, + 0.016580186784267426, + 0.008494005538523197, + -0.03563544899225235, + -0.012980078347027302, + 0.010322186164557934, + -0.030066531151533127, + 0.002330929506570101, + 0.0017077663214877248, + -0.002960245357826352, + -0.010413594543933868, + 0.01045578345656395, + -0.0003933224070351571, + 0.02151627279818058, + -0.021572524681687355, + -0.01904119923710823, + -0.021642839536070824, + -0.018914632499217987, + -0.014048860408365726, + 0.0162989292293787, + -0.01132065337151289, + 0.005192734766751528, + 0.03493230417370796, + -0.013830885291099548, + -0.05374849587678909, + 0.002838952699676156, + -0.024019474163651466, + -0.02106625959277153, + 0.005695484112948179, + 0.0015469215577468276, + 0.021389706060290337, + -0.0002909267204813659, + -0.013317588716745377, + -0.01530046109110117, + 0.0009404580341652036, + -0.02531326189637184, + -0.0209115669131279, + -0.019013073295354843, + 0.009773732163012028, + 0.013015235774219036, + -0.009077616967260838, + -0.019167764112353325, + -0.02691643498837948, + 0.0011223971378058195, + -0.026185164228081703, + -0.060920584946870804, + 0.00899324007332325, + 0.017395837232470512, + 0.01089173462241888, + 0.06401442736387253, + 0.013120708055794239, + -0.0012489634100347757, + 0.006940052844583988, + -0.021656902506947517, + 0.034679170697927475, + 0.027394575998187065, + 0.02399134822189808, + 0.001234900439158082, + -0.003603624179959297, + -0.022472552955150604, + -0.007826017215847969, + -0.0004102418606635183, + 0.018788065761327744, + 0.002464527264237404, + -0.0094432532787323, + -0.013880105689167976, + 0.006746687460690737, + 0.013092582114040852, + 0.0016796404961496592, + 0.008936988189816475, + 0.0008134522358886898, + 0.016397368162870407, + 0.00459154462441802, + -0.032907240092754364, + 0.0438481941819191, + -0.03549481928348541, + 0.007354909088462591, + -0.009415127336978912, + -0.03555107116699219, + -0.02511638216674328, + -0.027872715145349503, + -0.012705851346254349, + 0.022894440218806267, + -0.03161345422267914, + 0.02763364464044571, + -0.024511676281690598, + -0.038841795176267624, + 0.017030199989676476, + 0.00759397866204381, + -0.023681962862610817, + 0.029054000973701477, + 0.037491753697395325, + -0.008965114131569862, + 0.004166141152381897, + -0.016130173578858376, + 0.03113531321287155, + -0.003081538248807192, + 0.011194087564945221, + 0.007657262030988932, + 0.0015038539422675967, + -0.007147480733692646, + 0.016214551404118538, + -0.003962228540331125, + 0.003705580485984683, + -0.0391230545938015, + 0.015314524061977863, + -0.02662111446261406, + 0.006795907858759165, + 0.01255819108337164, + 0.025411702692508698, + 0.0014010188169777393, + -0.007727576419711113, + 0.01073704194277525, + -0.0029110251925885677, + 0.004025511909276247, + -0.014555126428604126, + -0.011939422227442265, + -0.000999346491880715, + 0.02106625959277153, + -0.01004795916378498, + 0.027085190638899803, + 0.0186614990234375, + -0.006338862702250481, + -0.0028125846292823553, + -0.002838952699676156, + 0.015820788219571114, + -0.028449295088648796, + -0.006296674255281687, + 0.00039310267311520875, + -0.009267467074096203, + 0.03521355986595154, + -0.029982153326272964, + 0.00046012128586880863, + -0.04491697996854782, + -0.007411160971969366, + -0.024061663076281548, + -0.026691429316997528, + -0.004647796042263508, + 0.01389416866004467, + -0.0214740838855505, + -0.02095375582575798, + -0.02729613520205021, + -0.020292798057198524, + 0.029279006645083427, + -0.006282611284404993, + -0.011327684856951237, + -0.021642839536070824, + 0.008852610364556313, + 0.023105382919311523, + 0.022964755073189735, + 0.012670693919062614, + -0.010090148076415062, + -0.004584513138979673, + -0.03369476646184921, + 0.04111998900771141, + 0.010209682397544384, + -0.031444698572158813, + -0.0400230810046196, + 0.0076642935164272785, + 0.025482017546892166, + -0.016833320260047913, + -0.03706986829638481, + 0.012101145461201668, + 0.028336791321635246, + -0.007797891274094582, + 0.00358077185228467, + 0.002896962221711874, + 0.0022992880549281836, + 0.013584784232079983, + -0.004345443565398455, + -0.029391510412096977, + 0.004697016440331936, + 0.014780133031308651, + -0.017142703756690025, + 0.022767873480916023, + -0.037829264998435974, + 0.02027873508632183, + -0.0660957396030426, + -0.015483278781175613, + 0.001975840888917446, + 0.0188865065574646, + -0.012776166200637817, + 0.0049079605378210545, + 0.0014818805502727628, + 0.0012806049780920148, + 0.012895701453089714, + -0.000873659155331552, + 0.002603398635983467, + -0.003610655665397644, + 0.017395837232470512, + 0.022500677034258842, + -0.006025962997227907, + 0.01473794411867857, + -0.019252141937613487, + 0.0009615524322725832, + -0.012347246520221233, + -0.0026789868716150522, + 0.003266114043071866, + -0.01147534605115652, + 0.03678860887885094, + -0.003413774771615863, + 0.01670675352215767, + 0.04142937436699867, + -0.03425728157162666, + 0.017058325931429863, + -0.02095375582575798, + 0.006454881746321917, + 0.024061663076281548, + -7.893914880696684e-5, + -0.014512937515974045, + 0.010378438048064709, + -0.0012902732705697417, + -0.011440188623964787, + 0.027732085436582565, + -0.000800707726739347, + -0.0037161274813115597, + 0.006082214415073395, + -0.006078698672354221, + 0.024272605776786804, + -0.007354909088462591, + -0.011615974828600883, + 0.012262869626283646, + -0.005038042552769184, + 0.007418192457407713, + -0.008922925218939781, + -0.0041380152106285095, + 0.012621474452316761, + -0.00556540209800005, + -0.0015108853112906218, + 0.032316599041223526, + -0.015455152839422226, + 0.00857838336378336, + -0.005400162655860186, + -0.0023590554483234882, + 0.016552060842514038, + -0.022050663828849792, + -0.02778833732008934, + 0.06345190852880478, + 0.0014643019530922174, + -0.013816822320222855, + 0.004268097225576639, + -0.010209682397544384, + -0.008240872994065285, + 0.006802939344197512, + 0.029532140120863914, + 0.004155593924224377, + 0.008979177102446556, + -0.016453620046377182, + 0.005171640310436487, + 0.008704950101673603, + 0.02437104657292366, + 0.0037407376803457737, + -0.0022307313047349453, + 0.014541063457727432, + 0.008648698218166828, + -0.023724151775240898, + -0.013971514999866486, + -0.0026825026143342257, + -0.01712864078581333, + 0.03161345422267914, + -0.01546921581029892, + -0.0014818805502727628, + -0.025552332401275635, + 0.0035438567865639925, + 0.007207248359918594, + -0.03183845803141594, + -0.0007031461573205888, + 0.022388175129890442, + -0.005994321312755346, + 0.006518165115267038, + 0.004879834596067667, + -0.031529076397418976, + 0.03324475139379501, + 0.01591922901570797, + -0.011946453712880611, + 0.004675921984016895, + 0.0011171235237270594, + -0.008043992333114147, + -0.0016875508008524776, + -0.010350312106311321, + -0.013085550628602505, + -0.02117876335978508, + 0.0073900665156543255, + 0.012143334373831749, + 0.0033522495068609715, + 0.015975480899214745, + 0.0012753313640132546, + -0.003828631015494466, + 0.0035491304006427526, + -0.001298183691687882, + -0.01415433268994093, + -0.005252501927316189, + 0.004595060367137194, + -0.027141442522406578, + -0.025467954576015472, + -0.041738756000995636, + -0.006514649372547865, + -0.004415757954120636, + 0.02850554697215557, + -0.011869107373058796, + -0.046998292207717896, + 0.006061119958758354, + 0.01899901032447815, + 0.013683225028216839, + -0.016509871929883957, + 0.004644280765205622, + -0.017789598554372787, + -0.0018422430148348212, + 0.018155233934521675, + -0.004370053298771381, + 0.014639503322541714, + 0.004092311020940542, + 0.014653566293418407, + 0.00799477193504572, + -0.020320923998951912, + 0.007277563214302063, + -0.015216083265841007, + -0.017255207523703575, + 0.009808889590203762, + 0.017845850437879562, + 0.012396466918289661, + 0.01690363511443138, + -0.013183990493416786, + -0.006841612514108419, + -0.0060470569878816605, + 0.007073650602251291, + -0.024356983602046967, + 0.0157364122569561, + 0.02508825622498989, + 0.012459750287234783, + -0.011376905255019665, + 0.015637971460819244, + -0.019884973764419556, + 0.006198233459144831, + -0.0008138917037285864, + 0.00045748447882942855, + -0.0047181108966469765, + -0.009091679938137531, + -0.010835482738912106, + 0.0027528172358870506, + -0.015103580430150032, + 0.009035428054630756, + 0.01173551008105278, + -0.00587830226868391, + 0.015216083265841007, + -0.015427026897668839, + -0.013233210891485214, + 0.0012428108602762222, + -0.019013073295354843, + -0.018788065761327744, + -0.003990354482084513, + 0.007720544934272766, + 0.001451117917895317, + -0.010863608680665493, + -0.0301227830350399, + 0.028491484001278877, + -0.012762103229761124, + -0.02399134822189808, + 0.0007154512568376958, + -0.02286631427705288, + 0.00601893151178956, + -0.00848697405308485, + -0.011510503478348255, + -0.01558171957731247, + 0.012902732007205486, + -0.01960371620953083, + 0.012508970685303211, + 0.01704426296055317, + 0.0007993893232196569, + -0.0006842491566203535, + 0.014470748603343964, + -0.006718561984598637, + -0.01077923085540533, + 0.017283333465456963, + 0.004957180470228195, + 0.00784711167216301, + -0.00229577231220901, + -0.000731711508706212, + -0.00731272017583251, + -0.0053228167816996574, + 0.03923555836081505, + -0.0010819662129506469, + -0.002603398635983467, + -0.012234743684530258, + 0.022247545421123505, + 0.026157038286328316, + -0.014428559690713882, + 0.030291536822915077, + -0.00585720781236887, + -0.009928423911333084, + -0.009323718026280403, + 0.009604976512491703, + -0.00502397958189249, + -0.0003074067353736609, + -0.01534265000373125, + 0.00784711167216301, + 0.014224647544324398, + -0.010441720485687256, + -0.023822592571377754, + -0.014414496719837189, + -0.017747409641742706, + -0.008114307187497616, + -0.0005396647029556334, + -0.005628685001283884, + -0.03487605229020119, + -0.00038057786878198385, + -0.00788930058479309, + -0.008522131480276585, + -0.0033979539293795824, + -0.012122239917516708, + 0.005533760413527489, + -0.004422789439558983, + -0.0180989820510149, + 0.0202365480363369, + -0.010153430514037609, + 0.03943243622779846, + -0.0037231589667499065, + -0.019913099706172943, + -0.01530046109110117, + 0.018084919080138206, + 0.02567889913916588, + 0.015680160373449326, + 0.001089876634068787, + -0.011665195226669312, + -0.015975480899214745, + -0.01949121244251728, + -0.018577123060822487, + 0.022585054859519005, + -0.030629048123955727, + -0.0046267020516097546, + 0.01964590512216091, + -0.003208104521036148, + 0.003273145528510213, + -0.016327055171132088, + -0.01674894243478775, + 0.009956549853086472, + -0.021206889301538467, + 0.020377175882458687, + 0.00093166867736727, + 0.004563418682664633, + -0.0014238710282370448, + 0.004489588551223278, + -0.020447490736842155, + 0.0029075094498693943, + -0.0018510323716327548, + 0.00843072310090065, + -0.0169739481061697, + -0.012923826463520527, + 0.018113045021891594, + -0.01580672711133957, + 0.0003966183867305517, + 0.014252773486077785, + 0.008641666732728481, + -0.009752637706696987, + 0.012234743684530258, + -0.013619941659271717, + -0.013338683173060417, + -0.010153430514037609, + -0.012776166200637817, + -0.011397999711334705, + 0.003635265864431858, + 0.003559677628800273, + -0.006324799731373787, + 0.019308393821120262, + 0.0055161816999316216, + 0.03954493999481201, + 0.006669341586530209, + 0.0029813398141413927, + -0.009077616967260838, + 0.004753268323838711, + -0.019856847822666168, + 0.007579915691167116, + -0.011615974828600883, + -0.011250338517129421, + 0.0012841207208111882, + -0.008564320392906666, + -0.009513568133115768, + 0.016580186784267426, + -0.01603173278272152, + -0.009401064366102219, + 0.01283944956958294, + -0.004633733537048101, + -0.0002970792702399194, + 0.005080230999737978, + -0.002775669563561678, + 0.016650501638650894, + -0.001713039935566485, + -0.01075813639909029, + 0.016847383230924606, + -0.013662130571901798, + 0.009738574735820293, + 0.005104841198772192, + 0.008367439731955528, + 0.0033276393078267574, + 0.007629136089235544, + -0.013113676570355892, + 0.001630420214496553, + -0.0018422430148348212, + -0.01634111814200878, + 0.010990174487233162, + -0.011763636022806168, + -0.0021094386465847492, + 0.02583358995616436, + 0.013964483514428139, + -0.005663842428475618, + 0.018014606088399887, + -0.01305039320141077, + -0.009619039483368397, + 0.016059858724474907, + -0.016172362491488457, + -0.015103580430150032, + 0.03431353345513344, + -0.01002686470746994, + -0.008965114131569862, + -0.002506716176867485, + 0.024961689487099648, + 0.0015803209971636534, + 0.0171989556401968, + 0.027844589203596115, + -0.0059064277447760105, + -0.0029426668770611286, + 0.008135401643812656, + 0.023710088804364204, + -0.013317588716745377, + 0.003579013980925083, + 0.007066619116812944, + -0.014948887750506401, + -0.007987740449607372, + 0.027366450056433678, + 3.938717418350279e-5, + 0.011566754430532455, + -0.011426125653088093, + 0.00989326648414135, + -0.008479942567646503, + 0.04131687059998512, + -0.0016550302971154451, + -0.016453620046377182, + 0.0009958307491615415, + -0.029785271733999252, + 0.0027334808837622404, + 0.0004979153745807707, + 0.04328567907214165, + 0.015680160373449326, + 0.009021365083754063, + -7.827994704712182e-5, + 0.009337780997157097, + -0.037829264998435974, + -0.012712882831692696, + 0.003990354482084513, + 0.005414225626736879, + -0.012867575511336327, + 0.0064267562702298164, + -0.006243938114494085, + 0.018352115526795387, + -0.0034858472645282745, + 0.0001243689766852185, + 0.009696385823190212, + -0.03428540751338005, + 0.007298657204955816, + -0.03526981174945831, + -0.0032379881013184786, + -0.005579465068876743, + 0.002213152591139078, + -0.032541606575250626, + 0.019856847822666168, + -0.010139367543160915, + 0.020785002037882805, + 0.02181159518659115, + 0.0011390967993065715, + 0.029279006645083427, + -0.0065849642269313335, + -0.019842784851789474, + 0.009787795133888721, + -0.011419094167649746, + 0.017930228263139725, + -0.018070856109261513, + 0.013240242376923561, + -0.03079780377447605, + 0.014611377380788326, + 0.012719914317131042, + 0.017634905874729156, + -0.013183990493416786, + -0.002054944634437561, + 0.008585414849221706, + 0.007319751661270857, + -0.005614622496068478, + -0.025327324867248535, + -0.010188587941229343, + -0.022275671362876892, + 0.02065843529999256, + -0.005509150214493275, + 0.00899324007332325, + 0.01231912150979042, + 0.008606509305536747, + 0.008416660130023956, + 0.003331155050545931, + -0.012670693919062614, + 0.00613846629858017, + -0.005590012297034264, + 0.006163076497614384, + -0.021530335769057274, + -0.005850176326930523, + 0.016847383230924606, + 0.0021779953967779875, + -0.008100244216620922, + -0.012958983890712261, + 0.03369476646184921, + -0.026902373880147934, + -0.005379068199545145, + -0.0038075365591794252, + 0.01648174598813057, + 0.028519609943032265, + -0.009239341132342815, + 0.02785865217447281, + -0.008240872994065285, + -0.009133868850767612, + -0.026930497959256172, + -0.025299198925495148, + -0.017213018611073494, + -0.006556838285177946, + -0.01534265000373125, + 0.0029532138723880053, + -0.028139909729361534, + -0.003042865078896284, + -0.007657262030988932, + 0.03448228910565376, + 0.005568917840719223, + 0.00716154370456934, + 0.0037020647432655096, + 0.033554136753082275, + -0.0024838638491928577, + -0.019420897588133812, + 0.022064726799726486, + 0.0017886280547827482, + 0.02444136142730713, + -0.014112143777310848, + 0.013753538951277733, + 0.04148562625050545, + -0.014512937515974045, + -0.003628234378993511, + 0.010167493484914303, + 0.00897214561700821, + 0.012853512540459633, + 0.009084648452699184, + -0.018745876848697662, + -0.019688094034790993, + 0.009295592084527016, + -0.015230146236717701, + -0.027057064697146416, + -0.012220680713653564, + -0.002438159426674247, + -0.01061047613620758, + -0.028660237789154053, + 0.014822321943938732, + -0.0006965541979297996, + 0.0080369608476758, + 0.020785002037882805, + -0.013556658290326595, + -0.0034172905143350363, + 0.020180296152830124, + -0.019308393821120262, + 0.014808258973062038, + -0.0040782480500638485, + 0.006641215644776821, + -0.010448751971125603, + 0.005090778227895498, + 0.00011233858822379261, + -0.014245742000639439, + 0.005769314244389534, + 0.0009000271093100309, + 0.013936357572674751, + 0.02077093906700611, + -0.020756876096129417, + -0.014091049320995808, + -0.009626070968806744, + 0.010582350194454193, + 0.0019160733791068196, + 0.014119175262749195, + -0.005899396259337664, + -0.02560858428478241, + -0.007678356487303972, + -0.0013263095170259476, + 0.016172362491488457, + 0.014400433748960495, + 0.018900569528341293, + 0.001160191255621612, + -0.005628685001283884, + -0.010132336057722569, + 0.015173894353210926, + -0.0009808889590203762, + -0.005660326685756445, + 0.018197422847151756, + 0.01861931011080742, + 0.0175364650785923, + -0.001914315507747233, + -0.011405031196773052, + -0.009302623569965363, + -0.002793248277157545, + -0.006577932741492987, + 0.002780943177640438, + -0.013922294601798058, + -0.005590012297034264, + 0.01372541394084692, + 0.008008834905922413, + -0.01134174782782793, + 0.011763636022806168, + -0.019997477531433105, + 0.005544307641685009, + 0.007629136089235544, + -0.0191115140914917, + -0.003853240981698036, + -0.0008152101072482765, + -0.0032924821134656668, + -0.03037591464817524, + -0.006908411160111427, + 0.004763815551996231, + -0.002780943177640438, + 0.00035794536233879626, + -0.011693321168422699, + 0.003482331521809101, + -0.014597314409911633, + -0.011180024594068527, + 0.07087713479995728, + -0.011088615283370018, + 0.018605247139930725, + 0.014780133031308651, + -0.0011883170809596777, + -0.01648174598813057, + -0.003113179700449109, + 0.020756876096129417, + 0.01746615208685398, + 0.003990354482084513, + -0.028407106176018715, + -0.023217886686325073, + 0.0157364122569561, + 0.02189597301185131, + -0.02140376903116703, + -0.0008385018445551395, + 0.008219778537750244, + -0.002084828447550535, + -0.002793248277157545, + -0.0007150117889977992, + -0.004735689610242844, + -0.0018615794833749533, + -0.0063951145857572556, + 0.009513568133115768, + -0.004264581482857466, + 0.013690256513655186, + -0.0205740574747324, + -0.006855675484985113, + 0.027886778116226196, + 0.02628360502421856, + 0.011524565517902374, + -0.006233390886336565, + -0.001011651591397822, + -0.023667899891734123, + 0.0035878033377230167, + 0.004623186308890581, + 0.005438835825771093, + -0.013514469377696514, + 0.0013649825705215335, + 0.004074732307344675, + -0.004348959308117628, + -0.003355765249580145, + 0.007762733846902847, + 0.022135041654109955, + -0.022331923246383667, + 0.007432254962623119, + -0.024342920631170273, + 0.003775895107537508, + -0.00199869298376143, + 0.0022360049188137054, + -0.004644280765205622, + 0.0036915175151079893, + 0.009408095851540565, + 0.02902587503194809, + 0.02745082788169384, + -0.0017279817257076502, + 0.0015249482821673155, + 0.014351213350892067, + 0.01049797236919403, + -0.00042979809222742915, + -0.02286631427705288, + -0.01501920260488987, + 0.002884657122194767, + -0.013240242376923561, + -0.013226179406046867, + 0.0006543654017150402, + -0.02902587503194809, + 0.009394032880663872, + -0.014034797437489033, + -0.029082126915454865, + -0.018380241468548775, + -0.011264401488006115, + -0.00646894471719861, + -0.027914904057979584, + 0.0035438567865639925, + 0.0216990914195776, + 0.012776166200637817, + 0.0325978584587574, + 0.03217596933245659, + -0.011496440507471561, + -0.002202605362981558, + 0.001001983298920095, + -0.012213649228215218, + 0.0008174074464477599, + 0.006356441415846348, + -0.001907284022308886, + 0.013183990493416786, + -0.046463899314403534, + 0.008817452937364578, + -0.02891337126493454, + -0.02534138783812523, + 0.007833048701286316, + 0.00033882856951095164, + 0.010406563058495522, + -0.02054593153297901, + 0.007987740449607372, + 0.005800955928862095, + 0.015750475227832794, + -0.0067009832710027695, + -0.012030831538140774, + 0.008458849042654037, + -0.0018352115293964744, + -0.003508699359372258, + -0.005009916611015797, + 0.0002403881080681458, + -0.008824484422802925, + 0.016537997871637344, + 0.004563418682664633, + -0.008782295510172844, + 0.007973677478730679, + -0.0027035970706492662, + 0.002385423518717289, + 0.0021516273263841867, + 0.011665195226669312, + -0.001729739597067237, + -0.01058938167989254, + 0.018605247139930725, + 0.0018123593181371689, + -0.013816822320222855, + -0.011390968225896358, + 0.016875509172677994, + 0.006454881746321917, + -0.006254485342651606, + -0.028997749090194702, + 0.00038057786878198385, + 0.01783178746700287, + -0.006662310101091862, + -0.012065988965332508, + 0.006222843658179045, + -0.005670873913913965, + 0.029110252857208252, + 0.008402597159147263, + 0.015750475227832794, + -0.007699450943619013, + 0.0207990650087595, + 0.0023819077759981155, + -0.021164700388908386, + 0.007741639390587807, + -0.0033504916355013847, + -0.01171441562473774, + 0.027155505493283272, + -0.013176959939301014, + 0.008233841508626938, + 0.012565222568809986, + 0.002916298806667328, + 0.004422789439558983, + -0.014133238233625889, + -0.017395837232470512, + 0.02861804887652397, + -0.02212097868323326, + 0.012213649228215218, + -0.016734879463911057, + 0.008233841508626938, + 0.0006846886244602501, + 0.004876318853348494, + 0.006268548313528299, + -0.03796989470720291, + 0.00955575704574585, + -0.021656902506947517, + 0.005365005228668451, + 0.00586775504052639, + -0.00043045729398727417, + -0.012058957479894161, + -0.0010441720951348543, + -0.018675561994314194, + 0.015075454488396645, + 0.012951952405273914, + 0.013711350969970226, + -0.009401064366102219, + 0.006602542474865913, + 0.0012893943348899484, + 0.011594880372285843, + 0.027957092970609665, + -0.027957092970609665, + 0.006275579798966646, + -0.009056522510945797, + 0.00314482138492167, + 0.0009887992637231946, + -0.010575318709015846, + -0.00053614896023646, + -0.005614622496068478, + -0.020967818796634674, + 0.015202020294964314, + -0.004988822154700756, + -0.010083116590976715, + -0.021769406273961067, + 0.015441089868545532, + -0.004292707424610853, + 0.005593528039753437, + -0.011088615283370018, + -0.006152529269456863, + 0.031022809445858, + 0.008543225936591625, + -0.021839721128344536, + -0.0009606734965927899, + 0.01738177426159382, + 0.05681421235203743, + 0.030066531151533127, + 0.04446696490049362, + 0.001836969400756061, + 0.008276030421257019, + -0.008022897876799107, + 0.019800595939159393, + -0.0008094970253296196, + -0.00473217386752367, + -0.001589110353961587, + -0.011053457856178284, + -0.007319751661270857, + 0.0015196746680885553, + 0.014723881147801876, + -0.0323728509247303, + -0.014512937515974045, + 0.014470748603343964, + 0.00500288512557745, + 0.0009650681167840958, + 0.00387785118073225, + 0.009506536647677422, + 0.007544758729636669, + 0.017972417175769806, + 0.020588120445609093, + -0.01462544035166502, + -0.0006512891268357635, + 0.01117299310863018, + 0.010673759505152702, + 0.006377535872161388, + 0.0064865234307944775, + -0.012326152995228767, + 0.014653566293418407, + 0.03473542258143425, + -0.012009737081825733, + -0.0035842875950038433, + -0.020109981298446655, + 0.003452447708696127, + 0.0024522223975509405, + 0.004085279535502195, + 0.01596141792833805, + 0.009225278161466122, + -0.021952223032712936, + 0.022542865946888924, + -0.0026086722500622272, + -0.02437104657292366, + 0.009042459540069103, + -0.00400793319568038, + -0.0042997389100492, + 0.0026262509636580944, + -0.015145768411457539, + -0.0034735421650111675, + -0.006025962997227907, + -0.004271612968295813, + -2.4184382709790953e-5, + -0.007488506846129894, + 0.008472911082208157, + -0.013394935056567192, + -0.008529162965714931, + 0.002297530183568597, + -0.010315154679119587, + 0.0008903588750399649, + 0.008831515908241272, + 0.011426125653088093, + -0.002680744742974639, + 0.009921392425894737, + 0.014013702981173992, + -0.017592716962099075, + 0.004763815551996231, + -0.003909492865204811, + 0.014168395660817623, + -0.03808239847421646, + 0.005758767016232014, + 0.0022307313047349453, + -0.006134950555860996, + 0.010955017991364002, + -0.010090148076415062, + 0.0017807177500799298, + 0.03676048293709755, + 0.007347877603024244, + -0.008796358481049538, + -0.005368520971387625, + -0.0169739481061697, + 0.005488055758178234, + 0.037941768765449524, + -0.011848012916743755, + -0.006574416998773813, + 0.010427657514810562, + -0.00846587959676981, + -0.0006741413963027298, + -0.028294602409005165, + 0.02155846171081066, + 0.006577932741492987, + 0.012255838140845299, + 0.023639773949980736, + -0.005280627869069576, + 0.003515730844810605, + -0.00627909554168582, + 0.004401694983243942, + 0.01087064016610384, + 0.009808889590203762, + -0.00040123279904946685, + 0.003916524350643158, + 0.03616983816027641, + -0.02560858428478241, + -0.013465248979628086, + 0.001343888114206493, + -0.009829984046518803, + -0.01956152729690075, + -0.0006486523780040443, + 0.011123772710561752, + 0.040838729590177536, + -0.0013535564066842198, + -0.0004513319581747055, + 0.008444786071777344, + 0.0038637882098555565, + 0.005488055758178234, + -0.017367711290717125, + -0.019195890054106712, + -0.0037548006512224674, + -0.0057060313411056995, + 0.003521004458889365, + 0.021431894972920418, + -0.0045774816535413265, + 0.004974759183824062, + -0.0021024071611464024, + -0.005111872684210539, + 0.032991617918014526, + -0.023780403658747673, + 0.009604976512491703, + -0.005048589780926704, + 0.024989815428853035, + 0.004689984954893589, + 0.01836617849767208, + -0.02106625959277153, + 0.02192409709095955, + 0.013408998027443886, + -0.023260075598955154, + -0.010069053620100021, + 0.0045774816535413265, + 0.027549266815185547, + -0.00930965505540371, + 0.004050122108310461, + 0.0013421302428469062, + -0.004264581482857466, + 0.004630217794328928, + -0.0196740310639143, + -0.008571351878345013, + -0.0017684126505628228, + -0.006873253732919693, + 0.005087262485176325, + -0.0025489048566669226, + 0.005962679628282785, + 0.00021226225362624973, + 0.01847868226468563, + -0.015089517459273338, + 0.004046606365591288, + 0.014512937515974045, + 0.011440188623964787, + -0.012804292142391205, + 0.005551339127123356, + 0.02430073171854019, + 0.029504014179110527, + 0.0032502932008355856, + -0.010294060222804546, + 0.00820571556687355, + 0.020785002037882805, + -0.022627243772149086, + -0.011812855489552021, + 0.007397098001092672, + -0.011046426370739937, + -0.0032502932008355856, + 0.004816551227122545, + -0.02361164800822735, + -0.006191201973706484, + 0.007776796817779541, + -0.02745082788169384, + 0.006054088473320007, + 0.01331055723130703, + -0.007811954244971275, + -0.0008987087057903409, + -0.013064456172287464, + -0.002028576796874404, + -0.024736681953072548, + 0.00046671327436342835, + 0.015891103073954582, + 0.0010881187627092004, + 0.007418192457407713, + 0.003406743286177516, + -0.018267737701535225, + 0.01859118416905403, + 0.01659424975514412, + -0.0003544296196196228, + 0.002098891418427229, + -0.011862075887620449, + -0.0029110251925885677, + 0.015525467693805695, + 0.0021727217826992273, + 0.022050663828849792, + -0.038926173001527786, + 0.037126120179891586, + -0.020306861028075218, + -0.00037881999742239714, + -0.020194359123706818, + 0.0088807363063097, + -0.02110844850540161, + 0.01017452497035265, + 0.006567385513335466, + 0.004145046696066856, + -0.010983143001794815, + -0.02830866537988186, + 0.005059137009084225, + -0.00904949102550745, + 0.020264672115445137, + -0.00792445708066225, + 0.011608943343162537, + 0.02448355033993721, + -0.0042188772931694984, + 0.012888669967651367, + 0.019252141937613487, + -0.021572524681687355, + -0.0014528757892549038, + -0.00019940786296501756, + 0.016988011077046394, + 0.001203258871100843, + 0.0025735150557011366, + -0.022135041654109955, + 0.005502118729054928, + -0.007650230545550585, + 0.01899901032447815, + -0.003962228540331125, + 0.027422701939940453, + 0.016327055171132088, + 9.091460378840566e-5, + -0.0028161003720015287, + 0.0014941856497898698, + 0.0015434058150276542, + -0.01596141792833805, + 0.002979581942781806, + -0.02958839200437069, + -0.015483278781175613, + 0.01061047613620758, + -0.011988642625510693, + -0.010659696534276009, + 0.02241630107164383, + -0.02077093906700611, + -0.014878572896122932, + -0.032541606575250626, + -0.015722349286079407, + -0.003125484799966216, + -0.013106645084917545, + -0.007291625719517469, + 0.018127107992768288, + -0.012262869626283646, + -0.018492745235562325, + -0.01735364831984043, + 0.012220680713653564, + -0.004682953469455242, + 0.00812837015837431, + -0.013978546485304832, + -0.005495087243616581, + -0.0011382178636267781, + -0.031332194805145264, + 0.00387785118073225, + -0.03186658397316933, + 0.027366450056433678, + 0.005941585171967745, + 0.008571351878345013, + -0.02102407068014145, + 0.005393131170421839, + 0.0034295956138521433, + 0.020222485065460205, + 0.0025629678275436163, + -0.024736681953072548, + 0.005881818011403084, + -0.02902587503194809, + 0.03420102968811989, + 0.0062861270271241665, + 0.007084197830408812, + 0.0162989292293787, + 0.015258272178471088, + -0.013753538951277733, + 0.002654376905411482, + 0.0004464978410396725, + -0.000314218457788229, + -0.013922294601798058, + -0.004180204123258591, + -0.00983701553195715, + -0.004886866081506014, + 0.03105093538761139, + -0.01047687791287899, + -0.0029356353916227818, + -0.00036255974555388093, + -0.0005273596616461873, + 0.015652034431695938, + 0.023527272045612335, + 0.038166776299476624, + 0.012122239917516708, + 0.0019248627359047532, + 0.008290093392133713, + -0.004088795278221369, + 0.024567928165197372, + 0.02740863896906376, + -0.02545389160513878, + 0.005924006458371878, + 0.0306853000074625, + 0.008114307187497616, + -0.006911926902830601, + -0.018900569528341293, + 0.013176959939301014, + -0.010279997251927853, + 0.013085550628602505, + 0.0174239631742239, + 0.014112143777310848, + 0.0065849642269313335, + 0.00812837015837431, + -0.010940955020487309, + -0.003796989331021905, + 0.004120436497032642, + -0.004521229770034552, + 0.027169568464159966, + -0.007797891274094582, + 0.002378392033278942, + 0.011088615283370018, + -0.0068662227131426334, + 0.006479491945356131, + -0.038954298943281174, + 0.014766070060431957, + 0.009035428054630756, + 0.01227693259716034, + 0.0083182193338871, + 0.011194087564945221, + -0.005080230999737978, + 0.0008288335520774126, + -0.011067520827054977, + -0.017958354204893112, + 0.024624180048704147, + 0.02192409709095955, + -0.015975480899214745, + 0.000580095627810806, + 0.025439828634262085, + 0.015314524061977863, + -0.007460380904376507, + 0.030854053795337677, + -0.0033575231209397316, + 0.011088615283370018, + 0.014780133031308651, + 0.009302623569965363, + 0.008662761189043522, + 0.005628685001283884, + -0.027647707611322403, + 0.007509601302444935, + 0.01293788943439722, + 0.0026614083908498287, + -0.0020637339912354946, + -0.0009817678947001696, + 0.01904119923710823, + 0.01877400279045105, + 0.005558370612561703, + 0.016017669811844826, + -0.0076150731183588505, + 0.01314180251210928, + -0.007235374301671982, + -0.014076986350119114, + 0.028632111847400665, + 0.008346345275640488, + -0.002320382511243224, + -0.011503471992909908, + -0.011707384139299393, + 0.005523213185369968, + 0.004292707424610853, + -0.002378392033278942, + -0.010814388282597065, + 0.028941497206687927, + 0.005635716486722231, + -0.02117876335978508, + 0.011165961623191833, + -0.007516632787883282, + 0.00812837015837431, + -0.0013843190390616655, + 0.005347426515072584, + -0.026424232870340347, + 0.005994321312755346, + 0.014020734466612339, + -0.001938925590366125, + -0.005034526810050011, + -0.025805464014410973, + 0.012058957479894161, + 0.006173623260110617, + 0.00914090033620596, + 0.029335258528590202, + 0.004201298579573631, + 0.024089789018034935, + 0.0220366008579731, + -0.01237537246197462, + 0.021502209827303886, + -0.0043876320123672485, + -0.012776166200637817, + -0.019195890054106712, + 0.006915442645549774, + 0.014597314409911633, + -0.008353376761078835, + -2.79198466159869e-5, + -0.008494005538523197, + -0.02763364464044571, + -0.00955575704574585, + 0.014653566293418407, + 0.014309024438261986, + 0.0022676463704556227, + 0.009176057763397694, + -0.0013649825705215335, + -0.005386099684983492, + 0.008001803420484066, + -0.008782295510172844, + 0.005189219024032354, + 0.016509871929883957, + -0.02545389160513878, + 0.02380852960050106, + -0.006416209042072296, + 0.008944019675254822, + 0.016777068376541138, + 0.023864781484007835, + -0.016889572143554688, + 0.03442603722214699, + 0.00801586639136076, + 0.014695755206048489, + 0.012368340976536274, + -0.01058938167989254, + -0.00027224942459724844, + -0.02538357675075531, + 0.00731272017583251, + 0.003993870224803686, + 0.0015688949497416615, + 0.015652034431695938, + -0.010505003854632378, + 0.004285675939172506, + -0.018225548788905144, + -0.005927522201091051, + -0.014414496719837189, + 0.015328587032854557, + -0.011630037799477577, + -0.007875237613916397, + 0.011946453712880611, + -0.001754349679686129, + 0.002946182619780302, + -0.012347246520221233, + -0.003916524350643158, + -8.65199399413541e-6, + 0.013823853805661201, + -0.00688028521835804, + 0.010722978971898556, + -0.0015170378610491753, + 0.003533309558406472, + 0.019913099706172943, + -0.00946434773504734, + -0.02020842209458351, + 0.015328587032854557, + -0.006342378444969654, + 0.018506808206439018, + -0.004813035484403372, + -0.014161364175379276, + 0.004285675939172506, + -0.010083116590976715, + 0.035579197108745575, + -0.0017112820642068982, + -0.013176959939301014, + -0.029785271733999252, + -0.0018791581969708204, + 0.01937870867550373, + -0.011187056079506874, + -0.005185703281313181, + -0.0030393493361771107, + 0.018295863643288612, + -0.018408367410302162, + -0.008613540790975094, + -0.0004469372797757387, + -0.007896332070231438, + -0.014428559690713882, + -0.004370053298771381, + 0.005892365239560604, + 0.02583358995616436, + 0.010336249135434628, + -0.003120211185887456, + 0.025974219664931297, + -0.0030780225060880184, + 0.014541063457727432, + -0.005948616657406092, + 0.006331831216812134, + 0.015103580430150032, + -1.0595259482215624e-5, + 0.0203490499407053, + 0.027689896523952484, + -0.02279599942266941, + 0.010730010457336903, + 0.01218552328646183, + -0.009977644309401512, + -0.008887767791748047, + -0.038954298943281174, + -0.0070595876313745975, + 0.0006697467179037631, + 0.008135401643812656, + 0.004535292740911245, + 0.007797891274094582, + -0.0029514560010284185, + -0.007361940573900938, + -0.02361164800822735, + 0.0014309025136753917, + 0.006043541245162487, + 0.006644731387495995, + -0.009225278161466122, + -0.029729019850492477, + -0.026635177433490753, + 0.003796989331021905, + 0.021488146856427193, + -0.026452358812093735, + 0.018689624965190887, + -0.010364375077188015, + 0.013191021978855133, + 0.009520599618554115, + 0.01764896884560585, + -0.028885245323181152, + -0.013036330230534077, + 0.005639232229441404, + -0.008669792674481869, + -0.015553593635559082, + 0.013964483514428139, + 0.006483007688075304, + -0.002086586318910122, + -0.0004333138349466026, + 0.010406563058495522, + -0.01915370114147663, + -0.009042459540069103, + 0.015328587032854557, + -0.00876823253929615, + 0.007903363555669785, + 0.04334193095564842, + -0.0008762959041632712, + -0.007818985730409622, + 0.011271432973444462, + -0.008304156363010406, + -0.008958082646131516, + 0.004834129940718412, + 0.0020936178043484688, + -0.0036704230587929487, + 0.03386351838707924, + -0.014569188468158245, + -0.011257370002567768, + 0.00899324007332325, + -0.003744253423064947, + 0.0175364650785923, + -0.009647165425121784, + -0.017255207523703575, + 0.0015451636863872409, + 0.00572712579742074, + 0.03661985322833061, + -0.003093843115493655, + -0.012094113975763321, + 0.023836655542254448, + -0.006936537101864815, + 0.017592716962099075, + -0.014653566293418407, + 0.013451186940073967, + -0.01587704010307789, + 0.017072388902306557, + 0.0011417336063459516, + 0.010835482738912106, + 0.0060119000263512135, + 0.00033619176247157156, + -0.02414603903889656, + -0.016495808959007263, + 0.0056814211420714855, + -0.0032959976233541965, + -0.0030868116300553083, + -0.005438835825771093, + 0.01596141792833805, + -0.0017174344975501299, + 0.009394032880663872, + -0.004514198284596205, + -0.017170829698443413, + 0.026635177433490753, + -0.026241416111588478, + -0.017480213195085526, + -0.0010178041411563754, + 0.030207160860300064, + -0.014555126428604126, + 0.009998738765716553, + 0.006613089703023434, + 0.0019283783622086048, + 0.010708916001021862, + -0.004398179240524769, + 0.0008987087057903409, + -0.0040536378510296345, + 0.01490669883787632, + 0.017733346670866013, + 0.010955017991364002, + 0.02102407068014145, + -0.007242405787110329, + -0.016847383230924606, + 0.017789598554372787, + 0.0074252234771847725, + -0.013127739541232586, + 0.0007901604985818267, + -0.017283333465456963, + -0.02320382371544838, + -0.002084828447550535, + -0.01693175919353962, + -0.00028565313550643623, + 0.015820788219571114, + -0.020827189087867737, + -0.012628505006432533, + -0.011876138858497143, + 0.003775895107537508, + -0.0002039123937720433, + 0.021572524681687355, + -0.010462814942002296, + -0.00688028521835804, + 0.001907284022308886, + 0.005386099684983492, + 0.008051023818552494, + 0.022697558626532555, + 0.001509127439931035, + -0.0028864149935543537, + -0.02046155370771885, + 0.022247545421123505, + 0.002545389113947749, + -0.019659968093037605, + 0.0038251152727752924, + 0.012987109832465649, + -0.019463086500763893, + -0.01749427616596222, + -0.014484811574220657, + 0.009485442191362381, + 0.0174239631742239, + -0.009253404103219509, + -0.037716761231422424, + -0.010652665048837662, + -0.01328946277499199, + -0.010807356797158718, + -0.004900929052382708, + 0.018338052555918694, + -0.0179864801466465, + 0.008261967450380325, + -0.009035428054630756, + 0.03965744376182556, + -0.005101325456053019, + -0.007678356487303972, + -0.019659968093037605, + 0.00257175718434155, + 0.03240097686648369, + 0.014991076663136482, + -0.014822321943938732, + 0.017592716962099075, + -0.008529162965714931, + -0.0032168938778340816, + -0.009253404103219509, + 0.0017561075510457158, + 0.01032921764999628, + 0.0074744438752532005, + -0.005115388426929712, + 0.005945100914686918, + -0.015244209207594395, + 0.008184622041881084, + -0.013205084949731827, + 0.020419364795088768, + -0.003983322996646166, + 0.011264401488006115, + 0.04505760595202446, + 0.0031166954431682825, + -0.017859913408756256, + 0.016158299520611763, + -0.008423691615462303, + -0.012804292142391205, + -0.00672910874709487, + 0.002782701049000025, + -0.017592716962099075, + -0.010104211047291756, + -0.014161364175379276, + 0.014962950721383095, + -0.007147480733692646, + -0.0003829949419014156, + 0.002698323456570506, + 0.002202605362981558, + -0.007699450943619013, + -0.001176890917122364, + 0.02043342776596546, + 0.010251871310174465, + 0.006704499013721943, + -0.0028178582433611155, + 0.009415127336978912, + -0.009928423911333084, + -0.004106373526155949, + 0.025144508108496666, + 0.018689624965190887, + 0.0019881457556039095, + 0.030066531151533127, + -0.008043992333114147, + -0.021094385534524918, + -0.0006315131904557347, + -0.007769765332341194, + -0.010701884515583515, + 0.023035068064928055, + 0.003744253423064947, + 0.010406563058495522, + -0.012023800052702427, + -0.0010213198838755488, + 0.00820571556687355, + -0.016734879463911057, + -0.01087064016610384, + 0.014013702981173992, + 0.003705580485984683, + 0.005537276156246662, + -0.036366719752550125, + -0.008817452937364578, + -0.02065843529999256, + 0.03451041504740715, + -0.021010007709264755, + -0.01417542714625597, + 0.03493230417370796, + 0.018408367410302162, + 0.019814658910036087, + 0.00846587959676981, + -0.006363472901284695, + -0.0024785902351140976, + 0.020264672115445137, + -0.0036387816071510315, + -0.004925538785755634, + -0.005568917840719223, + -0.011102678254246712, + 0.024792933836579323, + 0.018830254673957825, + 0.006961147300899029, + 0.003401469672098756, + -0.020981881767511368, + -0.017438026145100594, + 0.007530695758759975, + 0.000658760080114007, + -0.0013166412245482206, + 0.0038426939863711596, + -0.01899901032447815, + -0.015511404722929, + 0.009316686540842056, + -0.010420626029372215, + -0.006873253732919693, + -0.005396646913141012, + 0.00040167226688936353, + 0.002833679085597396, + -0.013057424686849117, + -5.029143358115107e-5, + -0.013120708055794239, + 0.00020687878713943064, + 0.015089517459273338, + -0.02271162159740925, + 0.00020215452241245657, + -0.008381502702832222, + -0.005259533412754536, + -0.002807311248034239, + 0.009879203513264656, + -0.009928423911333084, + 0.005913459230214357, + 0.004247002769261599, + 0.02842116914689541, + -0.009520599618554115, + 0.004377084784209728, + -0.008212747052311897, + -0.006366988644003868, + -0.008754169568419456, + -0.012712882831692696, + 0.01432308740913868, + -0.012023800052702427, + 0.005839629098773003, + -0.02133345603942871, + -0.01321914792060852, + -0.021263141185045242, + -0.010673759505152702, + -0.007136933971196413, + 0.002749301493167877, + 0.021530335769057274, + -0.0026719553861767054, + 0.022556928917765617, + 0.027957092970609665, + 0.00784711167216301, + -0.02369602583348751, + -0.002461011754348874, + -0.016847383230924606, + 0.028336791321635246, + -0.020756876096129417, + 0.008479942567646503, + 0.01257928553968668, + -0.0034805736504495144, + 0.001914315507747233, + 0.0010248355101794004, + -0.01255819108337164, + 0.0016778826247900724, + 0.0072494372725486755, + -0.004563418682664633, + -0.005639232229441404, + -0.0011408546706661582, + -0.016875509172677994, + 0.008929956704378128, + -0.031782206147909164, + 0.0016471199924126267, + 0.017480213195085526, + 0.0035702248569577932, + -0.017550528049468994, + -0.016200488433241844, + 0.010364375077188015, + 0.009337780997157097, + -0.0008925562142394483, + -0.005396646913141012, + 0.008831515908241272, + -0.004011448938399553, + 0.014794196002185345, + 0.0026209773495793343, + -0.03181033208966255, + 0.005864239297807217, + -0.002686018357053399, + -0.009232309646904469, + -0.00314482138492167, + 0.022289734333753586, + -0.009323718026280403, + -0.0016119626816362143, + 0.027478951960802078, + 0.011229244992136955, + -0.0041872356086969376, + 0.002986613428220153, + -0.006929505616426468, + 0.013683225028216839, + 0.010997205972671509, + -0.00600838428363204, + -0.00034212457831017673, + 0.01873181387782097, + -0.008929956704378128, + -0.02470855601131916, + -0.019069325178861618, + 0.012719914317131042, + -0.013205084949731827, + -0.0005994320963509381, + 0.012431624345481396, + -0.020531868562102318, + -0.009225278161466122, + 0.017508339136838913, + 0.012705851346254349, + -0.010793293826282024, + 0.012382403947412968, + 0.007488506846129894, + 0.0060470569878816605, + -0.006507617887109518, + 0.0030920852441340685, + -0.0009764942806214094, + -0.011559722945094109, + 0.005927522201091051, + 0.008072118274867535, + -0.027886778116226196, + 0.001875642454251647, + 0.017255207523703575, + -0.01933651976287365, + 0.02151627279818058, + -0.001480122678913176, + -0.01145425159484148, + 0.002213152591139078, + 0.016242677345871925, + -0.012593348510563374, + -0.005533760413527489, + 0.02515857107937336, + 0.023175697773694992, + 0.0015987786464393139, + 0.005484540015459061, + 0.004791941028088331, + -0.002972550457343459, + -0.01839430443942547, + -0.001795659540221095, + -0.004355990793555975, + 0.01347931195050478, + -0.018970884382724762, + 0.003796989331021905, + 0.00011470072058727965, + 0.007354909088462591, + 0.0015680160140618682, + 0.0071756066754460335, + -0.0036915175151079893, + -0.014836384914815426, + 0.005333364009857178, + -0.005720094311982393, + -0.02666330337524414, + -0.006268548313528299, + 0.0031729470938444138, + -0.0015486794291064143, + -0.02302100695669651, + 0.008662761189043522, + -0.0018475166289135814, + -0.0033715858589857817, + 0.007277563214302063, + -0.011869107373058796, + -0.0018615794833749533, + -0.009569820016622543, + 0.018506808206439018, + 0.0018404851434752345, + -0.0009931939421221614, + 0.014822321943938732, + -0.0003884882607962936, + -0.011292527429759502, + -0.00873307604342699, + -0.005048589780926704, + 0.005920490715652704, + -0.00026961261755786836, + -0.0037653478793799877, + 0.009169026277959347, + -0.0028653207700699568, + -0.027366450056433678, + 0.0036387816071510315, + 0.01162300631403923, + -0.0029303617775440216, + -0.001422113156877458, + 0.013254305347800255, + 0.002417064970359206, + -0.006606058217585087, + 0.005333364009857178, + -0.032429102808237076, + -0.0179864801466465, + 0.01328946277499199, + 0.01490669883787632, + -0.016158299520611763, + 0.005396646913141012, + 0.031191565096378326, + 0.02369602583348751, + -0.03138844668865204, + 0.02027873508632183, + -0.015356712974607944, + -0.02936338447034359, + 0.007347877603024244, + -0.0025559363421052694, + 0.004869287367910147, + 0.005449383053928614, + 0.01274804025888443, + 0.024567928165197372, + -0.005625169258564711, + 0.013859011232852936, + 0.0051575773395597935, + 0.0011918328236788511, + -0.00869088713079691, + 0.011102678254246712, + -0.0015003381995484233, + -0.0030762646347284317, + 0.010919860564172268, + 0.0024328858125954866, + 0.011763636022806168, + 0.003348733764141798, + -0.006591995246708393, + 0.0035825297236442566, + 0.004661859013140202, + -0.025819526985287666, + -0.014597314409911633, + 0.011285495944321156, + 0.014920761808753014, + 0.004914992023259401, + -0.017733346670866013, + -0.02925088070333004, + -0.009822952561080456, + -0.018872443586587906, + 0.014147301204502583, + -0.0004381479520816356, + 0.01160191185772419, + 0.022556928917765617, + 0.007854143157601357, + 0.010540161281824112, + -0.0012296269414946437, + -0.01173551008105278, + -0.014681692235171795, + 0.0018070857040584087, + 0.007460380904376507, + -0.0021727217826992273, + -0.008107275702059269, + -0.0043278648518025875, + -0.0012937890132889152, + -0.005168124567717314, + -0.012677725404500961, + -0.012572254054248333, + -0.002735238755121827, + 0.012958983890712261, + 0.013598847202956676, + 0.014512937515974045, + 0.014351213350892067, + -0.007073650602251291, + -0.004545839969068766, + -0.015075454488396645, + -0.015047328546643257, + 0.0024908953346312046, + -0.0029584874864667654, + -0.004830614197999239, + 0.00344014260917902, + -0.0005326332175172865, + -0.011812855489552021, + -0.0014212342211976647, + 0.027014875784516335, + 0.023625710979104042, + 0.01286054402589798, + -0.008381502702832222, + -0.00878932699561119, + -0.013521500863134861, + 0.0016954612219706178, + 0.00618768623098731, + 0.004598576109856367, + -0.019069325178861618, + -0.009112774394452572, + 0.00991436094045639, + 0.002569999312981963, + 0.002179753268137574, + 0.010898766107857227, + 0.0073408461175858974, + -0.0343979112803936, + -0.01506139151751995, + 0.005417741369456053, + 0.019983414560556412, + 0.01892869547009468, + -0.007119355257600546, + 5.9218091337243095e-5, + 0.01708645187318325, + -0.015370775945484638, + 0.002831921214237809, + -0.009000271558761597, + 0.005888849496841431, + 0.0007092987070791423, + 0.016650501638650894, + 0.01061047613620758, + 0.010223745368421078, + 0.0017095241928473115, + 0.015328587032854557, + -0.011158930137753487, + -0.013092582114040852, + 0.0014159606071189046, + -0.0346229188144207, + 0.020700624212622643, + -0.0072494372725486755, + 0.03116343915462494, + 0.003419048385694623, + 0.0006148134707473218, + -0.009865140542387962, + -0.019997477531433105, + -0.0002762046060524881, + 0.0069013796746730804, + -0.0018123593181371689, + 0.006022447254508734, + 0.009302623569965363, + -0.0011900749523192644, + 0.00011755725427065045, + -0.005161093082278967, + 0.011102678254246712, + -0.004704047925770283, + 0.0164114311337471, + 0.004774362780153751, + -0.016214551404118538, + 0.0005735036102123559, + -0.027577392756938934, + -0.0041626254096627235, + -0.015272335149347782, + 0.03864491358399391, + -0.01391526311635971, + 0.006381051614880562, + -0.00846587959676981, + 0.007221311330795288, + 0.0023274137638509274, + -0.010807356797158718, + -0.017409900203347206, + -0.012607411481440067, + -0.0063212839886546135, + -0.0018703688401728868, + -0.03960119187831879, + 0.018338052555918694, + 0.01652393490076065, + -0.02695862390100956, + -0.004566934425383806, + 0.030319662764668465, + -0.015595782548189163, + 0.003348733764141798, + 0.007126386743038893, + -0.011081583797931671, + 0.009689354337751865, + 0.015680160373449326, + -0.008641666732728481, + 0.005340395495295525, + -0.014878572896122932, + 0.007052556145936251, + -0.01501920260488987, + 0.010237808339297771, + 0.0003555282892193645, + -0.010343280620872974, + -0.012150365859270096, + -0.006567385513335466, + -0.015427026897668839, + -0.007038493175059557, + 0.026832059025764465, + 0.04922023415565491, + 0.03386351838707924, + -0.005723610054701567, + 0.008908862248063087, + 0.02241630107164383, + -0.030094657093286514, + 0.010933923535048962, + 0.0003684925613924861, + -0.03136032074689865, + -0.012389435432851315, + -0.029757145792245865, + -0.0017965384759008884, + 0.022360049188137054, + 0.0016392095712944865, + -0.01288163848221302, + -0.0005370278959162533, + -0.010512035340070724, + 0.005421257112175226, + 0.007558821700513363, + 0.004145046696066856, + -0.0021656902972608805, + -0.0035684669855982065, + -0.024694493040442467, + 0.0043524750508368015, + 0.010434689000248909, + 0.017859913408756256, + -0.021825658157467842, + -0.019027136266231537, + -0.03195096179842949, + 0.010976111516356468, + 0.0205740574747324, + -0.003990354482084513, + -0.0034155326429754496, + 0.00024478277191519737, + -0.008163527585566044, + 0.017564591020345688, + 0.010083116590976715, + 0.007263500243425369, + -0.006841612514108419, + -0.01227693259716034, + 0.020897503942251205, + -0.0111308041960001, + -0.0028741101268678904, + -0.023667899891734123, + -0.011693321168422699, + -0.012009737081825733, + 0.005206797271966934, + -0.02421635389328003, + 0.012614442966878414, + -0.004313801880925894, + -0.0035368253011256456, + 0.0017569864867255092, + -0.018914632499217987, + -0.015356712974607944, + -0.006859191227704287, + 0.023414768278598785, + 0.0321478433907032, + 7.99966073827818e-6, + -0.010898766107857227, + -0.016495808959007263, + -0.008719013072550297, + -0.0035614355001598597, + 0.0027598487213253975, + 0.018408367410302162, + -0.015286398120224476, + 0.01011827401816845, + 0.003220409620553255, + 0.0012111692922189832, + -0.01276913471519947, + -0.017255207523703575, + 0.001521432539448142, + -0.018717750906944275, + -0.01231912150979042, + -0.009372938424348831, + -0.028969623148441315, + -0.0037090962287038565, + -0.03161345422267914, + 0.016763005405664444, + -0.023147571831941605, + 0.02992590144276619, + 0.0005379068315960467, + 0.00229577231220901, + 0.01802866905927658, + 0.0003847528132610023, + -0.013296494260430336, + -0.00946434773504734, + -0.0032924821134656668, + -0.0038883984088897705, + -0.003751284908503294, + 0.005502118729054928, + -0.011116741225123405, + -0.006465428974479437, + -0.014527000486850739, + 0.006212296430021524, + 0.00955575704574585, + -0.008852610364556313, + 0.008754169568419456, + -0.0037723793648183346, + 9.942926408257335e-5, + -0.0029778240714222193, + -0.018759939819574356, + 0.011348779313266277, + 0.007495538331568241, + 0.02470855601131916, + -0.007087713573127985, + -0.037829264998435974, + 0.0021533851977437735, + 0.009394032880663872, + 0.010905797593295574, + 0.022922566160559654, + -0.009246372617781162, + -0.011348779313266277, + 0.007228342816233635, + -0.0020760390907526016, + -0.009815921075642109, + 0.024539802223443985, + -0.010441720485687256, + 0.009626070968806744, + 0.007643199060112238, + 0.003278419142588973, + -0.008873704820871353, + 0.009225278161466122, + 0.02880086749792099, + 0.009626070968806744, + -0.002826647600159049, + -0.016425494104623795, + 0.015792664140462875, + 0.0169739481061697, + -0.02241630107164383, + 0.005087262485176325, + 0.022655369713902473, + 0.0016541513614356518, + -0.00817055907100439, + 0.016763005405664444, + -0.0004221074341330677, + -0.01201676856726408, + 0.019027136266231537, + -0.008065086789429188, + 0.00045001355465501547, + -0.018464619293808937, + -0.008845578879117966, + 0.026114849373698235, + 0.016453620046377182, + 0.010469846427440643, + 0.011489409022033215, + 0.007917425595223904, + -0.011264401488006115, + 0.005864239297807217, + -0.0021393222268670797, + 0.0031237269286066294, + 0.008043992333114147, + -0.03645109757781029, + -0.005934553686529398, + -0.0055161816999316216, + -0.004141530953347683, + 0.01143315713852644, + 0.006352925673127174, + 0.036647979170084, + 0.0012753313640132546, + 0.011032363399863243, + 0.003909492865204811, + 0.002035608282312751, + 0.006219327915459871, + 0.015258272178471088, + 0.010947986505925655, + 0.013788696378469467, + 0.014020734466612339, + 0.0188865065574646, + -0.02331632748246193, + -0.001487154164351523, + -0.01839430443942547, + 0.0004453991714399308, + -0.013802759349346161, + -0.003923555836081505, + -0.00107757153455168, + -0.007875237613916397, + -0.006331831216812134, + -0.024160102009773254, + -0.03518543392419815, + 0.00036497681867331266, + 0.019659968093037605, + 0.015159831382334232, + 0.023625710979104042, + -0.016734879463911057, + 0.003891914151608944, + -0.005136482883244753, + -0.001805327832698822, + 0.002949698129668832, + 0.006384567357599735, + -0.011707384139299393, + 0.004173172637820244, + 0.0034348689951002598, + -0.008585414849221706, + -0.013795727863907814, + -0.012326152995228767, + 0.021010007709264755, + 0.01506139151751995, + 0.014238710515201092, + -0.004820066969841719, + -0.012227712199091911, + -0.005720094311982393, + -0.018127107992768288, + 0.0040184804238379, + -0.015103580430150032 + ], + "9f536e57-d021-4982-9bc4-40dc7be00ac0": [ + -0.008441592566668987, + -0.004834013059735298, + -0.00798257626593113, + -0.009130116552114487, + -0.0442950502038002, + -0.03425407409667969, + 0.03436882793903351, + 0.05115160346031189, + 0.0033762783277779818, + 0.04265980422496796, + 0.0010435443837195635, + 0.02888932265341282, + -0.017471298575401306, + -0.00615009805187583, + 0.001563523430377245, + 0.00012237440387252718, + -0.054450780153274536, + 0.022592196241021156, + -0.014566588215529919, + -0.00884323101490736, + 0.07717207819223404, + -0.018489740788936615, + -0.00041127658914774656, + 0.014121916145086288, + -0.031155714765191078, + -0.02573358826339245, + 0.011848351918160915, + 0.0009104117634706199, + -0.02220490202307701, + -0.0182745773345232, + 0.008893435820937157, + 0.02025408297777176, + 0.03072538785636425, + -0.017643429338932037, + 0.021817607805132866, + -0.02340981923043728, + 0.006365261971950531, + 0.04047947749495506, + -0.012128065340220928, + 0.014129088260233402, + -0.03557374328374863, + 0.017758183181285858, + 0.014774579554796219, + 0.001990264980122447, + -0.009703886695206165, + 0.005006143823266029, + 0.03852866217494011, + -0.011367819271981716, + 0.004715672694146633, + -0.006365261971950531, + -0.0037008170038461685, + 0.031471289694309235, + -0.013921096920967102, + -0.014989743009209633, + 0.008570690639317036, + 0.007401634007692337, + 0.002264598850160837, + 0.0951884537935257, + 0.017299167811870575, + -0.04073767736554146, + 0.0037474357523024082, + -0.007595281582325697, + 0.019852444529533386, + 0.0009637544280849397, + -0.024127032607793808, + -0.02769874967634678, + 0.013060441240668297, + 0.015090152621269226, + -0.010593229904770851, + 0.02815776690840721, + -0.00011368940613465384, + 0.011626016348600388, + -0.021702853962779045, + -0.0055619836784899235, + -0.01425818633288145, + 0.0030660838820040226, + 0.03419669717550278, + -0.034627024084329605, + 0.006806347519159317, + 0.006307884585112333, + -0.022233590483665466, + 0.013978473842144012, + 0.008420076221227646, + -0.021415967494249344, + 0.018776625394821167, + 0.018504085019230843, + -0.030696699395775795, + -0.06449175626039505, + -0.0636311024427414, + -0.009596304967999458, + 0.02371104806661606, + 0.02274998277425766, + -0.0036201304756104946, + -0.007731551770120859, + -0.018618838861584663, + 0.002327354857698083, + 0.04753684997558594, + 0.01488933339715004, + -0.04323357716202736, + -0.032188501209020615, + -0.030180305242538452, + 0.022549163550138474, + -0.04965979978442192, + 0.006784831173717976, + 0.013505113311111927, + -0.008527657948434353, + -0.012271507643163204, + -0.004464648198336363, + -0.031184403225779533, + 0.02650817669928074, + 0.013791997916996479, + -0.01935039646923542, + -0.009811468422412872, + -0.0003498652658890933, + 0.011475401930510998, + -0.0780901089310646, + -0.002809680299833417, + -0.029204897582530975, + -0.006659319158643484, + -0.0269815381616354, + 0.06397536396980286, + 0.03293440118432045, + 0.021831952035427094, + -0.029262274503707886, + 0.012637285515666008, + 0.0031539422925561666, + -0.0018522015307098627, + -0.00037205402622930706, + 0.008857575245201588, + -0.009524582885205746, + 0.003754607867449522, + -0.01893441192805767, + -0.01917826570570469, + 0.002022539498284459, + -0.01935039646923542, + 0.018489740788936615, + 0.02209014818072319, + 0.03304915502667427, + -0.036463089287281036, + 0.05155324190855026, + -0.021817607805132866, + -0.01834629848599434, + -0.004278173204511404, + -0.010815566405653954, + 0.02120080403983593, + 0.014301219023764133, + -0.029549159109592438, + 0.03548767790198326, + 0.004575816448777914, + 0.02257785201072693, + -0.04386472329497337, + -0.014358595944941044, + 0.02280735969543457, + 0.0015509722288697958, + -0.003139598062261939, + -0.0005092209321446717, + 0.01995285414159298, + 0.043922100216150284, + -0.004134730435907841, + 0.015219251625239849, + -0.023868834599852562, + -0.0487130805850029, + 0.025532769039273262, + 0.005655221175402403, + 0.006634216755628586, + -0.0018988203955814242, + 0.022778671234846115, + 0.015463103540241718, + -0.06759011745452881, + 0.02726842276751995, + 0.041655708104372025, + -0.03253276273608208, + 0.002617825986817479, + -0.020383182913064957, + -0.00015543341578450054, + -0.0010040976339951158, + 0.00018400985572952777, + 0.005995897110551596, + 0.021573754027485847, + -0.03898767754435539, + -0.0006266644923016429, + -0.047077834606170654, + -0.022649573162198067, + 0.02227662317454815, + -0.02381145767867565, + 0.024686457589268684, + 0.00022737881226930767, + -0.0036075792741030455, + -0.010292001068592072, + 0.01527662854641676, + 0.010105525143444538, + 0.008455936796963215, + 0.009546099230647087, + 0.06168028339743614, + -0.026106538251042366, + 0.01384937483817339, + -0.003623716766014695, + 0.013153678737580776, + 0.021817607805132866, + 0.025891374796628952, + -0.009266386739909649, + -0.07040158659219742, + -0.07447535544633865, + 0.033221285790205, + -0.07126224040985107, + -0.006544564850628376, + 0.0009682370000518858, + -0.018059413880109787, + 0.025504080578684807, + -0.008290977217257023, + 0.01638113521039486, + -0.014760235324501991, + 0.024399572983384132, + -0.0036559912841767073, + -0.01268749125301838, + -0.003761779982596636, + -0.01607990637421608, + 0.030409814789891243, + 0.008957985788583755, + 0.01995285414159298, + -0.009474378079175949, + 0.016868840903043747, + 0.023653671145439148, + -0.015161874704062939, + -0.04753684997558594, + -0.026307357475161552, + -0.025288917124271393, + 0.018231544643640518, + -0.0167397428303957, + -0.018532773479819298, + 0.03190161660313606, + -0.009302247315645218, + 0.016581954434514046, + -0.016280725598335266, + -0.003880120115354657, + 0.008283805102109909, + -0.010743844322860241, + 0.015161874704062939, + 0.011647532694041729, + -0.022850394248962402, + 0.03138522431254387, + 0.03144260123372078, + 0.019995886832475662, + 0.025891374796628952, + 0.019995886832475662, + 0.013325810432434082, + 0.0023058385122567415, + 0.056774549186229706, + 0.023079901933670044, + -0.025819653645157814, + 0.0020852957386523485, + 0.027239734306931496, + 0.009187493473291397, + 0.005128070246428251, + 0.005167516879737377, + 0.003204147331416607, + 0.029463093727827072, + -0.01220695860683918, + -0.03175817430019379, + -0.006451327353715897, + -0.002061986131593585, + 0.006074790842831135, + 0.006028172094374895, + -0.013648555614054203, + 0.05384832248091698, + -0.017112692818045616, + 0.012379089370369911, + -0.040938496589660645, + -0.009911878034472466, + 0.004715672694146633, + -0.06885240972042084, + -0.0022126007825136185, + -0.004565058276057243, + 0.0028939528856426477, + -0.018260233104228973, + -0.015147530473768711, + -0.0014487694716081023, + 0.025575801730155945, + -0.019579904153943062, + 0.01176228653639555, + -0.01662498712539673, + 0.029405716806650162, + 0.024672113358974457, + 0.03815570846199989, + 0.006842208094894886, + -0.030122928321361542, + 0.0034892393741756678, + 0.0029298134613782167, + -0.03798357769846916, + -0.016711054369807243, + 0.013677244074642658, + 8.600948058301583e-5, + 0.021874984726309776, + -0.019149577245116234, + 0.014545071870088577, + -0.006436983123421669, + -0.009144460782408714, + -0.011841179803013802, + -0.02769874967634678, + 0.02333809807896614, + -0.02607784979045391, + 0.0010238209506496787, + 0.030409814789891243, + -0.028028668835759163, + 0.032790958881378174, + -0.005325303412973881, + 0.026838095858693123, + -0.020584002137184143, + -0.05746307224035263, + 0.012128065340220928, + 0.04134013503789902, + -0.018360642716288567, + -0.0015778676606714725, + -0.04357783868908882, + -0.02590571902692318, + 0.0033744852989912033, + 0.006171614397317171, + 0.01110962312668562, + 0.02167416550219059, + -0.012816589325666428, + -0.007545076310634613, + -0.005067106802016497, + -0.04449586942791939, + 0.023596294224262238, + 0.031413912773132324, + -0.029333995655179024, + 0.009259214624762535, + 0.01662498712539673, + -0.016926217824220657, + -0.01643851213157177, + -0.005726942792534828, + -0.020870886743068695, + -0.0409671850502491, + -0.011898556724190712, + 0.014918021857738495, + -0.038614727556705475, + -0.028903666883707047, + -0.023366786539554596, + -0.004206452053040266, + 0.0016020736657083035, + -0.006386778317391872, + 0.03382374718785286, + -0.030754076316952705, + -0.004550714045763016, + 0.00830532144755125, + -0.005913417786359787, + 0.007989748381078243, + 0.015979496762156487, + -0.018489740788936615, + -0.01274486817419529, + 0.0007306603365577757, + -0.021745886653661728, + 0.05014750361442566, + -0.007380117662250996, + 0.008943641558289528, + 0.006530220620334148, + -0.02358194999396801, + -0.005576327908784151, + -0.001459527644328773, + 0.01833195425570011, + -0.01708400435745716, + -0.019967198371887207, + -0.04056554287672043, + -0.0017231032252311707, + 0.022491786628961563, + 0.04400816559791565, + 0.026637276634573936, + -0.0008992052753455937, + 0.005135242361575365, + 0.02524588257074356, + -0.036233581602573395, + 0.041168004274368286, + 0.018489740788936615, + 0.00036465778248384595, + -0.04765160381793976, + -0.013168022967875004, + 0.030208993703126907, + 0.012321712449193, + -0.03494259715080261, + 0.04162701964378357, + -0.017313512042164803, + 0.010313517414033413, + 0.00973257515579462, + -0.012178270146250725, + 0.054995860904455185, + -0.003388829529285431, + -0.015549168922007084, + 0.006992822978645563, + -0.010550197213888168, + -0.025518424808979034, + -0.06013110280036926, + 0.016653677448630333, + -0.0697704404592514, + -0.015061464160680771, + -0.02614957094192505, + 0.022534819319844246, + 0.002938778605312109, + 0.0004670846974477172, + 0.033909812569618225, + 0.00545081589370966, + 0.009789952076971531, + -0.02178891934454441, + -0.01017724722623825, + 0.014609620906412601, + 0.009703886695206165, + 0.0025963096413761377, + -0.007003581151366234, + -0.006935445591807365, + 0.012120893225073814, + 0.01429404690861702, + -0.009151632897555828, + 0.014874989166855812, + 0.02184629626572132, + -0.010241796262562275, + 0.05384832248091698, + -0.003342210780829191, + 0.020913919433951378, + -0.0019185437122359872, + -0.056057337671518326, + -0.03175817430019379, + 0.05158193036913872, + 0.06822126358747482, + -0.014179293066263199, + 0.018604494631290436, + -0.03382374718785286, + 0.009108600206673145, + 0.024213097989559174, + 0.0225635077804327, + -0.01077970489859581, + 0.000695696217007935, + -0.030696699395775795, + 0.014932366088032722, + -0.029549159109592438, + -0.01804506964981556, + 0.019393429160118103, + 0.010894459672272205, + 0.021272525191307068, + -0.008592206984758377, + -0.004722844809293747, + -0.01738523319363594, + 0.013211055658757687, + 0.02411268837749958, + 0.007659830618649721, + -0.00015285593690350652, + 0.0015088360523805022, + -0.03620489314198494, + -0.004636779427528381, + 0.026594243943691254, + 0.024127032607793808, + 0.027168013155460358, + 0.00010074595775222406, + 0.046590130776166916, + -0.031471289694309235, + 0.004425201565027237, + -0.01306761335581541, + -0.0017589639173820615, + 0.0012013311497867107, + 0.015821710228919983, + 0.022592196241021156, + 0.0008167258347384632, + -0.03221718966960907, + 0.0005760113708674908, + 0.04234423115849495, + -0.03471308946609497, + -0.008836058899760246, + -0.05872536823153496, + -0.023122934624552727, + 0.01544875930994749, + -0.008642411790788174, + -0.004848357290029526, + -0.008412904106080532, + 0.02966391295194626, + -0.02399793267250061, + 0.004084525629878044, + -0.03832784295082092, + 0.019665969535708427, + 0.0024044553283602, + 0.006508704274892807, + 0.010937492363154888, + 0.004052251111716032, + -0.019795067608356476, + -0.010593229904770851, + -0.03187292814254761, + -0.0019167506834492087, + 0.053504060953855515, + -0.025618834421038628, + -0.022434409707784653, + 0.018920067697763443, + 0.03138522431254387, + 0.006135753821581602, + 0.039561446756124496, + -0.002214393811300397, + 0.009538927115499973, + -0.005368336103856564, + -0.019795067608356476, + -0.025977440178394318, + 0.00956044439226389, + -0.0077530681155622005, + -0.014573760330677032, + -0.028731536120176315, + 0.04529914632439613, + -0.0007252812501974404, + 0.018116790801286697, + 0.034024566411972046, + 0.011733598075807095, + 0.000801933347247541, + -0.017586052417755127, + 0.03138522431254387, + 0.006831449922174215, + -0.004676226060837507, + 0.005364750046283007, + -0.01785859279334545, + -0.006114237476140261, + 0.00833401083946228, + -0.006462085526436567, + 0.029520470649003983, + -0.022377032786607742, + 0.014093227684497833, + 0.013117818161845207, + -0.008255116641521454, + 0.023122934624552727, + 0.010578885674476624, + -0.013196711428463459, + 0.014932366088032722, + 0.023366786539554596, + -0.00907991174608469, + 0.005246410146355629, + 0.035516366362571716, + 0.033135220408439636, + 0.019665969535708427, + -0.02977866679430008, + 0.016825808212161064, + 0.003612958360463381, + 0.0130102364346385, + 0.01983810029923916, + -0.005185447167605162, + 0.0064907739870250225, + 0.00017112244677264243, + -0.004952352959662676, + 0.03411063179373741, + -0.023237688466906548, + -0.0003404518647585064, + -0.01235757302492857, + 0.02132990211248398, + 0.02566186711192131, + 0.04234423115849495, + -0.015922119840979576, + 0.025618834421038628, + 0.011159827932715416, + 0.012271507643163204, + -0.018948756158351898, + -0.001370772602967918, + 0.004292517434805632, + 0.014372940175235271, + 0.026364734396338463, + -0.03815570846199989, + 0.026307357475161552, + -0.010349377989768982, + -0.05861061438918114, + 0.004134730435907841, + 0.002994362497702241, + -0.018504085019230843, + 0.007760240230709314, + -0.010012287646532059, + -0.03663522005081177, + -0.010378066450357437, + -0.030696699395775795, + 0.01572130061686039, + -0.016711054369807243, + 0.023969244211912155, + 0.03709423542022705, + 0.023668015375733376, + 0.02637907862663269, + -0.017055315896868706, + -0.029922109097242355, + 0.02184629626572132, + 0.021530721336603165, + 0.021688509732484818, + -0.01732785627245903, + -0.0063473316840827465, + 0.0269815381616354, + -0.0390450544655323, + 0.01906351000070572, + -0.01387089118361473, + -0.002440315904095769, + 0.01632375828921795, + -0.06386061012744904, + -0.04997537285089493, + -0.004539955873042345, + 0.03144260123372078, + -0.006189544685184956, + 0.01596515253186226, + 0.01696925051510334, + 0.007272535935044289, + -0.008498969487845898, + 0.02447129413485527, + -0.008269460871815681, + 0.025102440267801285, + -0.00988318957388401, + -0.019278675317764282, + 0.0022699779365211725, + 0.015161874704062939, + 0.021301213651895523, + -0.012436466291546822, + -0.006523048505187035, + 0.0225635077804327, + -0.006720282137393951, + 0.018418019637465477, + 0.005995897110551596, + -0.015864742919802666, + 0.005999483168125153, + -9.968134691007435e-5, + 0.006670077331364155, + -0.014459005557000637, + 0.021702853962779045, + 0.009660854004323483, + 0.029219241812825203, + 0.0315573550760746, + 0.004385754931718111, + -0.03984833136200905, + 0.02911883220076561, + -0.06764749437570572, + 0.04139751195907593, + -0.0055978442542254925, + 0.015678267925977707, + -0.002569414209574461, + -0.02067006751894951, + -0.006820691749453545, + -0.013540973886847496, + 0.008298149332404137, + 0.007796100806444883, + 0.00988318957388401, + 0.026938505470752716, + -0.014846300706267357, + 0.03259013965725899, + 0.02447129413485527, + -0.0017401371151208878, + 0.041053250432014465, + -0.00815470702946186, + 0.02286473847925663, + -0.014272530563175678, + 0.018790969625115395, + -0.0015949015505611897, + 0.019579904153943062, + -0.021243836730718613, + 0.0130102364346385, + -0.02554711326956749, + 0.009008190594613552, + 0.029219241812825203, + -0.005920589901506901, + -0.04443849250674248, + 0.007874994538724422, + 0.03907374292612076, + 0.007132679224014282, + -0.013648555614054203, + -0.036233581602573395, + -0.015104496851563454, + 0.014602448791265488, + 0.030323749408125877, + -0.01893441192805767, + 0.03310653194785118, + 0.008656756021082401, + -0.018905723467469215, + 0.016983594745397568, + 0.019379084929823875, + 0.0011887798318639398, + 0.013168022967875004, + 0.006691593676805496, + 0.012673147022724152, + 0.029319651424884796, + -0.00938114058226347, + 0.0014362182701006532, + 0.009094255976378918, + 0.026938505470752716, + -0.0008377939811907709, + -0.00610347930341959, + -0.0013680830597877502, + -0.02209014818072319, + 0.007523559965193272, + -0.018303265795111656, + -0.02429916337132454, + -0.002171361120417714, + -0.03583194315433502, + 0.0021247423719614744, + 0.031528666615486145, + -0.023266376927495003, + -0.001516008167527616, + 0.044151607900857925, + -0.02023973874747753, + -0.010098353028297424, + 0.003058911766856909, + 0.016840152442455292, + -0.019938509911298752, + 0.016510233283042908, + -0.008950813673436642, + 0.002139086602255702, + -0.010012287646532059, + -0.006114237476140261, + 0.014215153641998768, + -0.016840152442455292, + -0.029549159109592438, + -0.02137293480336666, + -0.004590160679072142, + -0.01643851213157177, + -0.004267415031790733, + 0.015563513152301311, + -0.010786877013742924, + 0.0004123972321394831, + 0.040938496589660645, + -0.007430322468280792, + 0.014437489211559296, + 0.011410852894186974, + -0.018948756158351898, + 0.005393438506871462, + 0.007731551770120859, + 0.00044646483729593456, + -0.012723351828753948, + 0.014989743009209633, + 0.006734626367688179, + 0.022850394248962402, + -0.023911867290735245, + 0.0442950502038002, + -0.0026823750231415033, + -0.048971276730298996, + -0.05315979942679405, + 0.014860644936561584, + 0.013741793110966682, + 0.013720276765525341, + -0.022721294313669205, + -0.0009081704774871469, + 0.0437212809920311, + 0.008298149332404137, + -0.021717198193073273, + 0.012960031628608704, + 0.001326843281276524, + -0.01745695434510708, + -0.035229481756687164, + 0.002372180577367544, + 0.024686457589268684, + -0.012199786491692066, + -0.0070501998998224735, + -0.029864732176065445, + 0.03382374718785286, + 0.0203544944524765, + 0.011862696148455143, + -0.013505113311111927, + -0.020526625216007233, + -0.017944660037755966, + 0.016481544822454453, + 0.031356535851955414, + 0.02012498490512371, + -0.04271718114614487, + 0.051008161157369614, + 0.016696710139513016, + -0.027942603453993797, + 0.0033547619823366404, + 0.007623970042914152, + 0.001383323804475367, + 0.007168539799749851, + 0.054881107062101364, + -0.015606545843183994, + 0.00994056649506092, + 0.01149691827595234, + -0.028372930362820625, + 0.009330935776233673, + 0.002119363285601139, + -0.020741788670420647, + 0.027598340064287186, + 0.06822126358747482, + -0.024399572983384132, + 0.010593229904770851, + -0.01738523319363594, + 0.021114738658070564, + 0.01709834858775139, + 0.016352446749806404, + -0.012759212404489517, + 0.02340981923043728, + -0.008018436841666698, + -0.051122914999723434, + 0.018088102340698242, + 0.0006141132907941937, + -0.04983193054795265, + -0.008814542554318905, + -0.02650817669928074, + 0.018905723467469215, + -0.007265363819897175, + 0.02857374958693981, + 0.03674997389316559, + -0.008111674338579178, + -0.013332982547581196, + 0.005773561540991068, + -0.002906504087150097, + -0.007975404150784016, + 0.021487688645720482, + 0.0005813904572278261, + -0.00956044439226389, + 0.02845899574458599, + -0.017772527411580086, + 0.0017912384355440736, + 0.009001018479466438, + 0.00788933876901865, + -0.03852866217494011, + 0.014702858403325081, + 0.0476229153573513, + -0.005246410146355629, + -0.006731040310114622, + 0.013799170032143593, + 0.0028204384725540876, + 0.002809680299833417, + 0.007939543575048447, + -0.03204505890607834, + -0.0029333995189517736, + -0.012888310477137566, + 0.008348355069756508, + -0.0037940547335892916, + -0.026637276634573936, + -0.012321712449193, + -0.031413912773132324, + 0.02252047508955002, + -0.032418008893728256, + 0.019995886832475662, + 0.03066801093518734, + 0.02662293240427971, + 0.0020207464694976807, + -0.0037976407911628485, + -0.015678267925977707, + 0.000977202202193439, + -0.01128175389021635, + 0.02250613085925579, + 0.005217721685767174, + -0.0052643404342234135, + -0.015377038158476353, + 0.0009682370000518858, + 0.010844254866242409, + 0.022592196241021156, + 0.0428893119096756, + -0.02244875393807888, + -0.0052643404342234135, + -0.05003274977207184, + 0.016481544822454453, + 0.0035914420150220394, + -0.023596294224262238, + -0.011812491342425346, + -0.008513313718140125, + -0.013505113311111927, + -0.003229249734431505, + -0.005579913966357708, + 0.008814542554318905, + 0.03215981274843216, + 0.011389335617423058, + 0.01793031580746174, + -0.005443643778562546, + -0.00872847717255354, + -0.014573760330677032, + -0.06150815263390541, + 0.03910243138670921, + -0.013189539313316345, + 0.009194665588438511, + 0.011539950966835022, + 0.00282940361648798, + -0.002162395976483822, + 0.013591178692877293, + 0.011733598075807095, + -0.019924165681004524, + 0.007308396510779858, + -0.007233088836073875, + -0.02101432904601097, + 0.029520470649003983, + 0.004410857334733009, + 0.012931343168020248, + -0.0008507934398949146, + -0.0045937467366456985, + 0.014322735369205475, + -0.010392410680651665, + -0.014666997827589512, + -0.01077970489859581, + -0.012293023988604546, + 0.0017822732916101813, + -0.03167210891842842, + 0.010342205874621868, + -0.025461047887802124, + 0.021961050108075142, + 0.013655727729201317, + 0.0007768308860249817, + -0.04991799592971802, + 0.025991784408688545, + -0.0011663669720292091, + -0.011145483702421188, + 0.03049588017165661, + -0.019622936844825745, + 0.012924171052873135, + 0.0239405557513237, + -0.02977866679430008, + -0.02768440544605255, + 0.005027660168707371, + -0.06781962513923645, + -0.03663522005081177, + -0.009295075200498104, + -0.007301224395632744, + 0.0046296073123812675, + -0.002078123390674591, + -0.03293440118432045, + -0.012371917255222797, + 0.005167516879737377, + -0.017557363957166672, + -0.04908603057265282, + 0.0021964635234326124, + 0.0289323553442955, + -0.0011080934200435877, + 0.04733603075146675, + 0.020870886743068695, + 0.015864742919802666, + -0.028301209211349487, + -0.01785859279334545, + 0.022606540471315384, + 0.017543019726872444, + 0.02216186933219433, + -0.008377043530344963, + -0.024485638365149498, + 0.006799175404012203, + -0.004780222196131945, + 0.0044395457953214645, + 0.018260233104228973, + 0.003855017712339759, + -0.013081957586109638, + -0.018920067697763443, + -0.005547639448195696, + 0.0221475251019001, + 0.0161946602165699, + 0.006892412900924683, + 0.009115772321820259, + 0.023797113448381424, + 0.01810244657099247, + -0.0105143366381526, + -3.434775862842798e-5, + -0.03829915449023247, + 0.017055315896868706, + -0.011174172163009644, + -0.014573760330677032, + -0.029190553352236748, + -0.015362693928182125, + 0.008606551215052605, + 0.021301213651895523, + -0.014760235324501991, + 0.004063009284436703, + -0.0028724365402013063, + -0.036778662353754044, + 0.022965148091316223, + 0.018360642716288567, + -0.013691588304936886, + 0.01632375828921795, + 0.030180305242538452, + 0.0033673131838440895, + 0.00932376366108656, + 0.014774579554796219, + 0.03267620503902435, + -0.0054544019512832165, + 0.03603276237845421, + 0.00610347930341959, + 0.0016433133278042078, + -0.018891379237174988, + 0.0045256116427481174, + -0.01325408834964037, + 0.007595281582325697, + -0.03350817412137985, + -0.008671100251376629, + -0.03210243582725525, + 0.011367819271981716, + 0.0077530681155622005, + 0.01797334849834442, + -0.015377038158476353, + 0.00874999351799488, + 0.003265110310167074, + -0.00928790308535099, + 0.010406754910945892, + 0.004088111687451601, + -0.016352446749806404, + 0.009194665588438511, + -0.005400611087679863, + -0.006225405260920525, + 0.022592196241021156, + 0.012558392249047756, + -0.003094772342592478, + 0.018676215782761574, + -0.014423144981265068, + 0.0036577843129634857, + 0.009151632897555828, + 0.0019239227985963225, + 0.019665969535708427, + -0.0017329648835584521, + 0.03078276477754116, + -0.03187292814254761, + -0.015749989077448845, + -0.028258176520466805, + -0.012278679758310318, + -0.02328072115778923, + -0.04572947695851326, + -0.006451327353715897, + 0.006845794152468443, + -0.009065567515790462, + -0.016065562143921852, + 0.025676211342215538, + -0.018188511952757835, + 0.023079901933670044, + -0.0011349889682605863, + 0.009761263616383076, + -0.01057171355932951, + -0.013842202723026276, + 0.013670071959495544, + 0.025877030566334724, + 0.00221080775372684, + -0.013784825801849365, + -0.001861166674643755, + -0.033909812569618225, + 0.03726636618375778, + 0.0026429283898323774, + 0.010607574135065079, + -0.04917209595441818, + 0.001741033629514277, + 0.045815542340278625, + -0.017241790890693665, + -0.02888932265341282, + 0.01181966345757246, + -0.004023562651127577, + -0.01429404690861702, + -0.006831449922174215, + 0.001639727270230651, + 0.0167397428303957, + 0.016352446749806404, + 0.01953687146306038, + -0.017901627346873283, + 0.01032786164432764, + 0.009252042509615421, + -0.01334015466272831, + 0.002883194712921977, + -0.017127037048339844, + 0.0221475251019001, + -0.03835653141140938, + -0.021817607805132866, + 0.013440564274787903, + 0.019077854230999947, + -0.0023919041268527508, + -0.011891384609043598, + -0.005174688994884491, + 0.012443638406693935, + -0.014595276676118374, + -0.015678267925977707, + 0.01881965808570385, + -0.015061464160680771, + 0.03663522005081177, + 0.01791597157716751, + -0.0186905600130558, + 0.024327851831912994, + -0.007372945547103882, + -0.004905734211206436, + 0.001752688316628337, + -0.004170591477304697, + -0.009897533804178238, + 0.005960036534816027, + 0.029161864891648293, + -0.007810445036739111, + 0.010062492452561855, + 0.03620489314198494, + -0.024872932583093643, + 0.03637702390551567, + -0.023180311545729637, + -0.02524588257074356, + 0.02071310020983219, + -0.007437494583427906, + 0.0016935182502493262, + 0.01483195647597313, + 0.0312991589307785, + -0.01727047935128212, + 0.03428276255726814, + 0.014358595944941044, + 0.02286473847925663, + -0.009610649198293686, + 0.00848462525755167, + 0.004199279937893152, + -0.00381915713660419, + -0.0049308366142213345, + 0.005665979348123074, + -0.006444155238568783, + -0.0004047768597956747, + -0.028301209211349487, + -0.026579899713397026, + 0.03006555140018463, + -0.005676737520843744, + 0.0041885217651724815, + 0.0315573550760746, + -0.024399572983384132, + 0.02186064049601555, + -0.013347326777875423, + -0.014602448791265488, + -0.004898562096059322, + -0.0019526112591847777, + -0.008276632986962795, + 0.08227863162755966, + 0.0036559912841767073, + 0.003593235043808818, + 0.01086577121168375, + -0.01226433552801609, + 0.0037940547335892916, + 0.0051208981312811375, + 0.016295069828629494, + 0.01649588905274868, + -0.004400099162012339, + -0.029047111049294472, + -0.0055261231027543545, + 0.034741777926683426, + 0.025704899802803993, + 0.007803272921591997, + -0.005400611087679863, + 0.023137278854846954, + 0.006307884585112333, + -0.018790969625115395, + -0.024815555661916733, + -0.00769569119438529, + -0.0023811457213014364, + 0.002022539498284459, + -0.020827854052186012, + -0.00675614271312952, + -0.032131124287843704, + 0.0016746914479881525, + 0.0021175702568143606, + -0.05347537249326706, + -0.000810001976788044, + 0.026708997786045074, + 0.015405726619064808, + 0.01672539860010147, + 0.014372940175235271, + -0.02203277125954628, + 0.02583399787545204, + -0.0008951709605753422, + -0.03256145119667053, + -0.0031324259471148252, + -0.014473349787294865, + -0.0027756127528846264, + -5.552794391405769e-5, + -0.02745489776134491, + -0.021243836730718613, + 0.001765239518135786, + -0.0029369855765253305, + 0.018719248473644257, + 0.005224893800914288, + -0.013038924895226955, + 0.002841954817995429, + -0.010550197213888168, + 0.00830532144755125, + -0.023180311545729637, + -0.0016988973366096616, + -0.0003868465428240597, + -0.008757165633141994, + -0.030467191711068153, + -0.026422111317515373, + -0.047737669199705124, + -0.021760230883955956, + 0.0027881639543920755, + 0.014157776720821857, + 0.00857786275446415, + -1.668359800532926e-5, + -0.024571703746914864, + 0.004582988563925028, + -0.015692612156271935, + -0.001524076797068119, + -0.008613723330199718, + 0.001857580617070198, + 0.00139139243401587, + 0.003193389158695936, + 0.00020687100186478347, + 0.01191290095448494, + -0.0077889286912977695, + 0.01595080830156803, + 0.025446703657507896, + -0.025389326736330986, + -0.0024618322495371103, + -0.012049172073602676, + -0.017758183181285858, + 0.0072797080501914024, + 0.015463103540241718, + 0.022893426939845085, + -0.00555481156334281, + -0.005877557210624218, + -0.01053585298359394, + -0.015506136231124401, + -0.0013734621461480856, + -0.010966180823743343, + -0.011712081730365753, + 0.0026823750231415033, + 0.00406659534201026, + -0.009703886695206165, + -0.008240772411227226, + -0.03365161642432213, + -0.009424173273146152, + -0.003385243471711874, + 0.0024618322495371103, + -0.01630941405892372, + -0.01857580617070198, + -0.0010767154162749648, + 0.012529703788459301, + -0.027598340064287186, + 0.017672117799520493, + 0.007516387850046158, + -0.010335033759474754, + 0.019723346456885338, + 0.004955939017236233, + -0.02815776690840721, + 0.00023219757713377476, + 0.003930325154215097, + 0.0010865770746022463, + 0.002171361120417714, + 0.0020243325270712376, + -0.0059672086499631405, + -0.0010910596465691924, + -0.010248968377709389, + 0.020297115668654442, + -0.0020799164194613695, + -0.002054814016446471, + 0.005927762016654015, + -0.010643434710800648, + -0.00973257515579462, + 0.01262294128537178, + -0.01904916577041149, + -0.010837082751095295, + -0.000920721678994596, + -0.003284833626821637, + -0.0023255618289113045, + 0.01566392369568348, + 0.014989743009209633, + 0.007071716245263815, + 0.015075808390974998, + 0.019379084929823875, + -0.011547123081982136, + 0.02233400009572506, + 0.0025801723822951317, + -0.012945687398314476, + 0.0015186977107077837, + -0.027583995833992958, + -0.0007606936269439757, + 0.006634216755628586, + 0.030295060947537422, + 0.00783196184784174, + 0.012185442261397839, + -0.0334794856607914, + -0.00026290325331501663, + 0.0264364555478096, + -0.010751016438007355, + 0.020942607894539833, + 0.002818645443767309, + -0.018805313855409622, + -0.005102967843413353, + 0.020526625216007233, + -0.019752034917473793, + 0.00863523967564106, + -0.028430307283997536, + 0.004400099162012339, + 0.005102967843413353, + 0.006956962402909994, + -0.021889328956604004, + -0.004080939572304487, + -0.012888310477137566, + 0.010794050060212612, + 0.016036873683333397, + -0.011561467312276363, + -0.040651608258485794, + 0.01458810456097126, + -0.0018396503292024136, + -0.016926217824220657, + 0.004582988563925028, + -0.016754087060689926, + 0.007731551770120859, + 0.017772527411580086, + -0.029405716806650162, + 0.0132827777415514, + 0.0027558894362300634, + 0.034799154847860336, + -0.0024421089328825474, + -0.010069664567708969, + -0.03287702426314354, + 0.01702662743628025, + 0.0033637271262705326, + 0.024758178740739822, + -0.0038406734820455313, + -0.019579904153943062, + -0.017543019726872444, + -0.019336052238941193, + 0.008384215645492077, + 0.016897529363632202, + -0.02161678858101368, + -0.014523555524647236, + 0.020454904064536095, + 0.003392415586858988, + 0.006971306633204222, + -0.022477442398667336, + -0.019694657996296883, + 0.015219251625239849, + -0.0048232548870146275, + 0.015993840992450714, + 0.0005598741117864847, + 0.00555481156334281, + -0.010005115531384945, + 0.022821705788373947, + 0.005260754376649857, + -0.007939543575048447, + 0.010636262595653534, + 0.003232835792005062, + -0.0009485136833973229, + -0.017543019726872444, + 0.017127037048339844, + -0.010822738520801067, + 0.015305317007005215, + 0.033077843487262726, + -0.00744466669857502, + 0.004769463557749987, + 0.010112697258591652, + -0.021043017506599426, + -0.0019239227985963225, + -0.0005809422000311315, + -0.008764337748289108, + 0.0028401617892086506, + 0.0200676079839468, + -0.006074790842831135, + -0.015993840992450714, + 0.017944660037755966, + -0.005049176514148712, + 0.0393032506108284, + -0.01170490961521864, + -0.0045578861609101295, + 0.0044431318528950214, + -0.0018934413092210889, + -0.02424178645014763, + -0.0021695680916309357, + 0.004245898686349392, + -0.01101638562977314, + 0.013942613266408443, + -0.003908808808773756, + -0.002146258717402816, + -0.0036039932165294886, + -0.018547117710113525, + -0.000731556850951165, + -0.0032740754541009665, + -0.006770486943423748, + -0.0002821783418767154, + -0.0060030692256987095, + 0.016295069828629494, + -0.0016549680149182677, + -0.002492313738912344, + -0.010284828953444958, + 0.0014451834140345454, + 0.0015940050361678004, + -0.0038263292517513037, + -0.0037761242128908634, + 0.030581945553421974, + 0.003288419684395194, + 0.0017464127158746123, + -0.014487694017589092, + -0.003718747291713953, + -0.0166106428951025, + -0.013634211383759975, + 0.021114738658070564, + -0.007516387850046158, + -0.01851842924952507, + 0.034512270241975784, + 0.02220490202307701, + -7.194538920884952e-5, + -0.012163925915956497, + -0.016653677448630333, + 0.0030427745077759027, + 0.014652653597295284, + -0.007738723885267973, + -0.012479498982429504, + 0.01649588905274868, + -0.0013438770547509193, + -0.00041419026092626154, + -0.015247940085828304, + 0.018446708098053932, + 0.0009113082778640091, + 0.011561467312276363, + 0.03672128543257713, + 0.00830532144755125, + -0.004780222196131945, + 0.0029853973537683487, + 0.016825808212161064, + -0.00769569119438529, + 0.020038919523358345, + 0.010205935686826706, + -0.0032274567056447268, + -0.010184419341385365, + 0.015549168922007084, + -0.004812496714293957, + 0.005052762571722269, + -0.0015330419410020113, + 0.0011627809144556522, + 0.00017885489796753973, + 0.04466800019145012, + 0.006512290332466364, + -0.006544564850628376, + -0.014717202633619308, + -0.00580583605915308, + 0.0061572701670229435, + 0.018245888873934746, + 0.01952252723276615, + -0.01500408723950386, + 0.024686457589268684, + -0.0022126007825136185, + -0.006508704274892807, + -0.02447129413485527, + 0.0003395553503651172, + 0.0055619836784899235, + -0.006989236921072006, + -0.010385238565504551, + -0.01306761335581541, + 0.005870385095477104, + 0.019436461851000786, + 0.0032418009359389544, + -0.002641135361045599, + 0.010614746250212193, + -0.01774383895099163, + 0.013168022967875004, + -0.05554094538092613, + -0.009818640537559986, + -0.01917826570570469, + 0.011353475041687489, + -0.025575801730155945, + 0.018747936934232712, + -0.0027200288604944944, + 0.008585034869611263, + -0.003847845597192645, + 0.01197027787566185, + 0.024557359516620636, + 0.017399577423930168, + 0.011188516393303871, + 0.019422117620706558, + -0.008283805102109909, + 0.01351228542625904, + -0.0031288398895412683, + 0.014387284405529499, + -0.009546099230647087, + -0.0006280092638917267, + 0.010248968377709389, + 0.016825808212161064, + -0.012192614376544952, + -0.011626016348600388, + 0.00958196073770523, + 0.009517410770058632, + -0.0006284575210884213, + -0.02262088470160961, + -0.01047847606241703, + -0.016639331355690956, + 0.005737700965255499, + -0.007466183044016361, + 0.010672123171389103, + -0.01151843462139368, + 0.0034515855368226767, + 0.00034202076494693756, + -0.00111705856397748, + -0.011891384609043598, + -0.01749998703598976, + -0.005239238031208515, + 0.02019670605659485, + -0.021473344415426254, + 0.0003624164965003729, + 0.005249996203929186, + -0.01170490961521864, + -0.009689542464911938, + -0.00923052616417408, + -0.009338107891380787, + 0.007853478193283081, + 0.0004836702428292483, + 0.001029200037010014, + -0.002191084437072277, + 0.040651608258485794, + -0.02619260363280773, + 0.029491782188415527, + -0.006035344209522009, + 0.0004206900193821639, + -0.02655121125280857, + -0.037782758474349976, + -0.023926211521029472, + -0.0003866224142257124, + -0.012350400909781456, + -0.0036757146008312702, + -0.03795488923788071, + 0.011934417299926281, + -0.00788933876901865, + 0.03138522431254387, + 0.006246921606361866, + 0.006831449922174215, + 0.007103990763425827, + 0.017069660127162933, + -0.025116784498095512, + -0.008764337748289108, + 0.01864752732217312, + 0.007688519079238176, + 0.03247538581490517, + -0.021487688645720482, + 0.027010226622223854, + 0.009488722309470177, + -0.003937497269362211, + -0.01685449667274952, + -0.0013878063764423132, + -0.0038729480002075434, + 0.0067525566555559635, + 0.014874989166855812, + -0.013985645957291126, + -0.00898667424917221, + 0.0064190528355538845, + -0.015706956386566162, + -0.027081947773694992, + -0.03887292370200157, + 0.005701839923858643, + -0.008441592566668987, + -0.00020496590877883136, + -0.00012506394705269486, + -0.008807370439171791, + 0.009244870394468307, + 0.008771509863436222, + 0.01444466132670641, + -0.01791597157716751, + -0.0031324259471148252, + 0.0008207601495087147, + 0.017170069739222527, + 0.024485638365149498, + 0.0242274422198534, + -0.006842208094894886, + 0.003980529960244894, + -0.00322387064807117, + 0.006293540354818106, + 0.019995886832475662, + 0.005741287022829056, + 0.013132162392139435, + 0.02662293240427971, + -0.02779916115105152, + -0.013275605626404285, + 0.0005764596280641854, + 0.021100394427776337, + 0.004547127988189459, + 0.013153678737580776, + -0.006720282137393951, + -0.017786871641874313, + -0.005196205340325832, + -0.0041419025510549545, + 0.019551215693354607, + 0.006512290332466364, + 0.017758183181285858, + 0.024327851831912994, + -0.004152660723775625, + -0.011446713469922543, + 0.010994869284331799, + 0.006852966267615557, + 0.0008055194048210979, + -0.00116547045763582, + 0.01745695434510708, + 0.0012649836717173457, + 0.005572741851210594, + -0.009244870394468307, + -0.005221307743340731, + 0.014989743009209633, + -0.009280730970203876, + 0.001459527644328773, + -0.015807365998625755, + 0.014415972866117954, + 0.012192614376544952, + 0.015549168922007084, + -0.01982375606894493, + -0.00033731406438164413, + -0.018733592703938484, + -0.015061464160680771, + 0.015506136231124401, + -0.006487187929451466, + 0.010026631876826286, + 0.0013887028908357024, + 0.004539955873042345, + -0.01876228116452694, + -0.006691593676805496, + 0.012773556634783745, + 0.0051567587070167065, + -0.0021480517461895943, + -0.0023219757713377476, + -0.010220279917120934, + -0.011475401930510998, + -0.019637281075119972, + 0.06454913318157196, + -0.0043678246438503265, + 0.009653681889176369, + 0.006153684109449387, + 0.0130102364346385, + -0.03161473199725151, + -0.004206452053040266, + 0.010528680868446827, + 0.011504090391099453, + -0.0012676732148975134, + -0.022678261622786522, + -0.013419047929346561, + 0.03006555140018463, + 0.010141385719180107, + -0.026221292093396187, + 0.0066449749283492565, + 0.002994362497702241, + -0.0058237663470208645, + 0.00018737178470473737, + 0.013705932535231113, + -0.003300970885902643, + 0.002770233666524291, + 0.01316085085272789, + 0.013031752780079842, + -0.0132827777415514, + 0.017772527411580086, + -0.031241780146956444, + -0.011145483702421188, + 0.02054096944630146, + 0.02738317660987377, + 0.011396507732570171, + -0.021774575114250183, + -0.013799170032143593, + -0.014623965136706829, + -0.0012049172073602676, + 0.0014200808946043253, + 0.019249986857175827, + 0.004285345319658518, + -0.0011932624038308859, + -0.01410757191479206, + 0.017170069739222527, + 0.0018324782140552998, + 0.008649583905935287, + 0.0166106428951025, + -0.015793021768331528, + 0.004037906881421804, + -0.025202849879860878, + 0.004095283802598715, + -0.013332982547581196, + -0.0025747932959347963, + 0.01630941405892372, + -0.019795067608356476, + 0.024729490280151367, + 0.02263522893190384, + 0.019565559923648834, + -0.013225399889051914, + 0.020526625216007233, + 0.00976843573153019, + 0.011826835572719574, + -0.008448764681816101, + -0.031098337844014168, + -0.008807370439171791, + 0.0032991778571158648, + -0.007139851339161396, + -0.011030729860067368, + 0.01595080830156803, + -0.008255116641521454, + -0.0025012788828462362, + -0.0010749223874881864, + -0.020813509821891785, + -0.017040971666574478, + -0.020913919433951378, + -0.008463108912110329, + -0.016237692907452583, + -0.01846105232834816, + 0.003933911211788654, + -0.0037044030614197254, + 0.038614727556705475, + 0.025862686336040497, + -0.006670077331364155, + 0.012579908594489098, + 0.0072761219926178455, + -0.024370884522795677, + -0.008169051259756088, + 0.014100399799644947, + -0.01017724722623825, + 0.014803268015384674, + -0.04449586942791939, + 0.006813519634306431, + -0.023567605763673782, + -0.024973342195153236, + -0.003650612197816372, + 0.015262284316122532, + 0.013677244074642658, + -0.0027720266953110695, + -0.009897533804178238, + 0.004156246781349182, + 0.005085037089884281, + -0.003526892978698015, + -0.0016854496207088232, + 0.005888315383344889, + 0.007552248425781727, + -0.006648560985922813, + -0.01265163067728281, + -0.018174167722463608, + -0.007319154683500528, + 0.030954895541071892, + -0.005099381785839796, + -0.013096301816403866, + 0.012386261485517025, + -0.005662393290549517, + -0.013419047929346561, + -0.0004090353031642735, + -0.009832984767854214, + 0.0021050190553069115, + -0.0076096258126199245, + 0.024672113358974457, + 0.004586574621498585, + -0.023725392296910286, + -0.01494671031832695, + 0.009797124192118645, + 0.006759728770703077, + 0.007810445036739111, + -0.019249986857175827, + -0.01185552403330803, + -0.008556346409022808, + -0.0030858071986585855, + -0.016524577513337135, + -0.010442615486681461, + -0.01600818522274494, + 0.01458810456097126, + 0.013598350808024406, + 0.02548973634839058, + 0.012838105671107769, + 0.018317610025405884, + -0.005691081751137972, + -0.019866788759827614, + 0.006218233145773411, + 0.0035035836044698954, + -0.006867310497909784, + 0.021645477041602135, + 0.0008131397771649063, + 0.011920073069632053, + 0.008405731990933418, + 0.006451327353715897, + 0.0033224874641746283, + -0.0006235266919247806, + -0.012457982636988163, + -0.003008706960827112, + 0.0036524052266031504, + 0.025762276723980904, + -0.03084014169871807, + 0.009725403040647507, + -0.011661876924335957, + -0.004249484743922949, + 0.006723868194967508, + -0.043262265622615814, + 0.010700811631977558, + -0.03072538785636425, + -0.007602453697472811, + 0.011346302926540375, + -0.007738723885267973, + -0.011862696148455143, + -1.0695152923290152e-5, + 0.005945692304521799, + 0.011102451011538506, + 0.010550197213888168, + 0.007781756576150656, + 0.008642411790788174, + 0.012070688419044018, + 0.015549168922007084, + 0.009610649198293686, + 0.02495899796485901, + -0.03273358196020126, + 0.008011264726519585, + -0.007401634007692337, + 0.008104502223432064, + 0.005196205340325832, + -0.017399577423930168, + 0.0025263812858611345, + -0.011834007687866688, + -0.01636679098010063, + 0.012328884564340115, + -0.004733602982014418, + -0.03250407427549362, + -0.015075808390974998, + 0.003569925669580698, + -0.004679812118411064, + 0.010614746250212193, + -0.008606551215052605, + -0.003119874745607376, + 0.020139329135417938, + 0.011963105760514736, + 0.0019328879425302148, + -0.00040029428782872856, + -0.005813008174300194, + 0.03786882385611534, + 0.011633188463747501, + 0.02645079977810383, + 0.004235140513628721, + -0.0038729480002075434, + 0.004841185174882412, + 0.013627039268612862, + -0.0038693619426339865, + -0.012135237455368042, + 0.00031333224615082145, + -0.01899178884923458, + -0.011511262506246567, + -0.009639337658882141, + 0.004410857334733009, + -0.03631964698433876, + -0.03454095870256424, + 0.014760235324501991, + 0.009180321358144283, + -0.002054814016446471, + -0.0031826309859752655, + 0.01834629848599434, + 0.020268427208065987, + 0.008663928136229515, + 0.011116795241832733, + 0.013748965226113796, + 0.006634216755628586, + 0.01947949454188347, + -0.002585551468655467, + -0.003715161234140396, + -0.006637802813202143, + 0.0024349368177354336, + 0.016352446749806404, + 0.026895472779870033, + -0.011927245184779167, + 0.011905728839337826, + -0.02059834636747837, + 0.0024869346525520086, + 0.01429404690861702, + 0.005719770677387714, + 0.020297115668654442, + 0.007308396510779858, + -0.011002041399478912, + 0.0029656740371137857, + -0.01696925051510334, + -0.015104496851563454, + 0.011561467312276363, + -0.005088623613119125, + -0.022377032786607742, + -0.009180321358144283, + -0.00869261659681797, + -0.0009879603749141097, + -0.000661180354654789, + -0.01566392369568348, + -2.6503246772335842e-5, + -0.0031503562349826097, + 0.0042961034923791885, + 0.02577662095427513, + -0.0037295054644346237, + 0.003605786245316267, + -0.0029172622598707676, + -0.0002880056854337454, + 0.026881128549575806, + 0.003566339612007141, + -0.014121916145086288, + 0.0161946602165699, + 0.009725403040647507, + -0.02458604797720909, + -0.013038924895226955, + 0.011690565384924412, + 0.01947949454188347, + -0.025145472958683968, + 0.006010241340845823, + -0.018661871552467346, + 0.004755119327455759, + 0.0013411875115707517, + -0.00800409261137247, + 0.008290977217257023, + 0.01696925051510334, + -0.0026106538716703653, + -0.006376020144671202, + -0.006426224950700998, + -0.02454301528632641, + 0.003976943902671337, + 0.0210286732763052, + -0.00436423858627677, + -0.0009027913329191506, + 0.01057171355932951, + -0.0019185437122359872, + 0.005045590456575155, + -0.04019259288907051, + 0.021946705877780914, + 0.017786871641874313, + -0.017069660127162933, + 0.019795067608356476, + 0.007139851339161396, + -0.0035125487484037876, + -0.01191290095448494, + 0.002054814016446471, + -0.0006374227232299745, + 0.00615009805187583, + -0.004945180844515562, + -0.007107576820999384, + 0.032131124287843704, + -0.028487684205174446, + -0.006114237476140261, + 0.0006584908114746213, + -0.0034928254317492247, + -0.0077889286912977695, + -0.01912088878452778, + 0.02042621560394764, + 0.0264364555478096, + 0.009639337658882141, + -0.007961059920489788, + 0.00680276146158576, + 0.014243842102587223, + -0.0030983584001660347, + -0.02424178645014763, + 0.000649525667540729, + -0.021272525191307068, + -0.01080839429050684, + 0.007846306078135967, + 0.02756965160369873, + -0.009065567515790462, + 0.012443638406693935, + -0.004898562096059322, + -0.004679812118411064, + 0.0048949760384857655, + -0.007068130187690258, + 0.009409829042851925, + -0.015176218934357166, + 0.02309424616396427, + 0.021760230883955956, + 0.02530326135456562, + -0.013971301726996899, + 0.01851842924952507, + 0.021487688645720482, + -0.021243836730718613, + -0.004378582816570997, + 0.015706956386566162, + 0.007523559965193272, + -0.025102440267801285, + -0.015506136231124401, + 0.0017948244931176305, + -0.003969771787524223, + -0.012085032649338245, + -0.012823761440813541, + -0.004461062140762806, + 0.009216181933879852, + -0.0013277397956699133, + 0.003634474938735366, + 0.0052284798584878445, + -0.018116790801286697, + 0.018475396558642387, + 0.0047730496153235435, + -0.0053002010099589825, + 0.006286368239670992, + 0.020885230973362923, + 0.016883185133337975, + -0.009252042509615421, + -0.01325408834964037, + -0.0017975140362977982, + 0.011927245184779167, + -0.01405019499361515, + -0.007796100806444883, + -0.008549174293875694, + 0.023538917303085327, + 0.004995385650545359, + -0.021573754027485847, + 0.005870385095477104, + -0.016122939065098763, + 0.003811985021457076, + 0.012386261485517025, + -0.040106527507305145, + 0.0015142151387408376, + 0.0071219210512936115, + -0.011812491342425346, + -0.021358590573072433, + -0.012787900865077972, + -0.017112692818045616, + 0.001877303933724761, + -0.006440569180995226, + -0.005117312073707581, + -0.02197539433836937, + -0.007710035424679518, + 0.020928263664245605, + -0.012701835483312607, + 0.005013315938413143, + -0.019938509911298752, + -0.025504080578684807, + 0.023151623085141182, + 0.027540963143110275, + -0.0004168798332102597, + 2.2006659492035396e-5, + -0.01709834858775139, + -0.004170591477304697, + 0.009280730970203876, + -0.0006535599823109806, + 0.012558392249047756, + -0.024155721068382263, + 0.02966391295194626, + -0.0200676079839468, + 0.01435142382979393, + -0.019034821540117264, + 0.023653671145439148, + 0.0036559912841767073, + -0.003779710503295064, + 0.021129082888364792, + -0.006010241340845823, + 0.015577857382595539, + -0.006727454252541065, + -0.006211061030626297, + -0.0048591154627501965, + 0.021702853962779045, + -0.005242824088782072, + -0.0011547122849151492, + 0.019752034917473793, + -0.011561467312276363, + -0.008491797372698784, + 0.014451833441853523, + -0.01906351000070572, + -0.0018279956420883536, + 0.005009729880839586, + 0.01057171355932951, + -0.0036757146008312702, + 0.0057161846198141575, + -0.0003897602146025747, + 0.01086577121168375, + -0.0013133955653756857, + -0.008642411790788174, + -0.013949785381555557, + 0.014989743009209633, + 0.0010516130132600665, + 0.008011264726519585, + 0.012077860534191132, + 0.003440827364102006, + 0.007968232035636902, + -0.012909826822578907, + 0.001857580617070198, + -0.03591800853610039, + -0.0010471304412931204, + 0.012766384519636631, + -0.010987697169184685, + -0.009481550194323063, + 0.011582983657717705, + -0.024456949904561043, + -0.00046618818305432796, + -0.023668015375733376, + -0.0006508704391308129, + -0.0038980504032224417, + -0.006440569180995226, + 0.01970900222659111, + 0.023151623085141182, + -0.0038693619426339865, + -0.016596298664808273, + -0.00874999351799488, + -0.0008140362915582955, + 0.003196975216269493, + 0.001226433552801609, + -0.013074785470962524, + -0.00794671569019556, + -0.008821714669466019, + -0.01666802167892456, + 0.01245081052184105, + -0.04799586534500122, + 0.02089957520365715, + 0.012924171052873135, + 0.022879082709550858, + -0.009847328998148441, + 0.0062648518942296505, + -0.00013010685506742448, + 0.020211050286889076, + -0.0073514292016625404, + -0.01017724722623825, + 0.01166904903948307, + -0.02155940979719162, + 0.03362292796373367, + -0.005006143823266029, + 0.0028724365402013063, + 0.010227452032268047, + 0.02460039220750332, + -0.0047730496153235435, + 0.006734626367688179, + -0.005917003843933344, + -0.006261265836656094, + -0.009854501113295555, + 0.00798257626593113, + -0.0028849877417087555, + 0.0009520997409708798, + 0.018174167722463608, + 0.0037725381553173065, + 0.01107376255095005, + 0.011138311587274075, + -0.005468746181577444, + 0.018618838861584663, + 0.012630113400518894, + 0.02054096944630146, + 0.005465160124003887, + -0.01205634418874979, + 0.012285851873457432, + 0.0121137211099267, + 0.011769458651542664, + 0.0289323553442955, + -0.0044036852195858955, + 0.00027366142603568733, + 0.020756132900714874, + 0.0024349368177354336, + -0.01304609701037407, + -0.02025408297777176, + 0.010499992407858372, + -0.00788933876901865, + -0.011891384609043598, + 0.028186455368995667, + 0.010148557834327221, + 0.0008664824417792261, + 0.012938515283167362, + -0.013168022967875004, + -0.017313512042164803, + 0.0032418009359389544, + -0.0041921078227460384, + 0.02883194573223591, + -0.004730016924440861, + -0.013297121971845627, + 0.011138311587274075, + -0.0007987955468706787, + -0.010241796262562275, + -0.014961054548621178, + -0.005576327908784151, + -0.0011717460583895445, + 0.012529703788459301, + -0.0029477437492460012, + 0.006688007619231939, + -0.003553788410499692, + -0.0048913899809122086, + -0.013713104650378227, + -0.014179293066263199, + 0.023911867290735245, + 0.014243842102587223, + -0.018618838861584663, + -0.007179297972470522, + 0.0348852202296257, + 0.013533801771700382, + -0.0012757419608533382, + 0.015864742919802666, + -0.0017275857971981168, + 0.02418440952897072, + -0.015434415079653263, + 0.006089135073125362, + 0.007796100806444883, + -0.0019436461152508855, + -0.014537899754941463, + 0.009725403040647507, + 0.004306861665099859, + -0.014602448791265488, + 0.020627034828066826, + -0.011123967356979847, + -0.0018055826658383012, + 0.02376842498779297, + 0.021043017506599426, + 0.017184413969516754, + -0.010435443371534348, + 0.0037904686760157347, + -0.005149586591869593, + -0.012637285515666008, + 0.012257163412868977, + -0.0056695654056966305, + -0.0022215659264475107, + 0.00036084759631194174, + -0.01797334849834442, + -0.018489740788936615, + 0.0030732559971511364, + 0.006074790842831135, + -0.009474378079175949, + 0.017284823581576347, + 0.010564541444182396, + 0.004220796283334494, + 0.010643434710800648, + 0.00545081589370966, + 0.01086577121168375, + -0.020999984815716743, + 0.017313512042164803, + -0.04145488888025284, + 0.003586062928661704, + 0.010005115531384945, + -0.0015931085217744112, + 0.008821714669466019, + -0.017786871641874313, + 0.012429294176399708, + 0.0037653660401701927, + 0.013835030607879162, + 0.02023973874747753, + 0.0032902127131819725, + 0.009352452121675014, + 0.01149691827595234, + -0.028143422678112984, + 0.023739736527204514, + -0.008126018568873405, + 0.003055325709283352, + -0.00958196073770523, + -0.001841443357989192, + 0.002255633706226945, + -0.0069426181726157665, + 0.007860650308430195, + -0.0196516253054142, + -0.04019259288907051, + -0.019995886832475662, + -0.011360647156834602, + 0.005949278362095356, + -0.006515876390039921, + 0.021573754027485847, + -0.004461062140762806, + 0.012931343168020248, + -0.0077889286912977695, + 0.006741798482835293, + 0.005701839923858643, + 0.010134213604032993, + -0.024700801819562912, + -0.0073872897773981094, + -0.027899570763111115, + 0.016122939065098763, + 0.005357577931135893, + 0.012938515283167362, + -0.003116288688033819, + 0.03178686276078224, + -0.0157786775380373, + 0.007552248425781727, + -0.0024098344147205353, + -0.0008879988454282284, + 0.014559416100382805, + -0.006512290332466364, + -0.011080934666097164, + 0.020053263753652573, + 0.009904705919325352, + 0.02774178236722946, + -0.01840367540717125, + 0.016151627525687218, + -0.0022377034183591604, + -0.0017894454067572951, + -0.03674997389316559, + -0.008527657948434353, + 0.004392927046865225, + -0.01289548259228468, + 0.011626016348600388, + -0.0020888817962259054, + -0.02286473847925663, + 0.003510755719617009, + -0.008176223374903202, + 0.0015429035993292928, + 0.018389331176877022, + 0.009058395400643349, + -0.006856552325189114, + -0.005171102937310934, + 0.004794566426426172, + 0.003751021809875965, + -0.002264598850160837, + -0.017112692818045616, + 0.015032775700092316, + -0.013211055658757687, + 0.009108600206673145, + -0.0029800182674080133, + -0.008871919475495815, + 0.0033708992414176464, + -0.019737690687179565, + 0.027770472690463066, + -0.001290982705540955, + -0.005744873080402613, + -0.029377028346061707, + -0.0010569920996204019, + 0.00210681208409369, + 0.00575921731069684, + -0.01021310780197382, + 0.0005379094509407878, + 0.017471298575401306, + -0.018174167722463608, + 0.001427253126166761, + -0.008685444481670856, + 0.00893646851181984, + -0.016567610204219818, + -0.005203377455472946, + 0.006336573511362076, + 0.021301213651895523, + 0.013096301816403866, + -0.02887497842311859, + 0.0281003899872303, + -0.0012820175616070628, + 0.003295591799542308, + 0.011891384609043598, + 0.011489746160805225, + 0.031012272462248802, + -1.0457015378051437e-5, + 0.00878585409373045, + -0.0010829910170286894, + -0.03204505890607834, + 0.0014649067306891084, + 0.006964134518057108, + -0.018963100388646126, + -0.003991288132965565, + -0.013239744119346142, + 0.004005632363259792, + 0.004848357290029526, + 0.00815470702946186, + -0.025690555572509766, + 0.0010632677003741264, + -0.00819056760519743, + -0.009653681889176369, + -0.01953687146306038, + 0.01170490961521864, + 0.0036290958523750305, + -0.011862696148455143, + -0.01649588905274868, + -0.0057520451955497265, + 0.008993846364319324, + 0.003679300658404827, + 0.010743844322860241, + -0.015807365998625755, + 0.01721310243010521, + -0.020870886743068695, + 0.008534830063581467, + 0.018002036958932877, + 0.007566593121737242, + -0.04352046176791191, + -0.010743844322860241, + -0.0017419301439076662, + -0.010528680868446827, + 0.0047371890395879745, + 0.0035161348059773445, + -0.0032973848283290863, + -0.0005751148564741015, + 0.014286874793469906, + -0.005683909635990858, + -0.014423144981265068, + 0.005884729325771332, + 0.018088102340698242, + -0.016151627525687218, + 0.008929296396672726, + 0.03127047047019005, + 0.013777653686702251, + -0.006691593676805496, + 0.015420070849359035, + -0.01982375606894493, + 2.931186145360698e-6, + 0.006028172094374895, + 0.005712598562240601, + -0.00027523032622411847, + 0.03411063179373741, + -0.019149577245116234, + -0.013634211383759975, + 0.0015778676606714725, + -0.005655221175402403, + 0.028631126508116722, + 0.0052643404342234135, + -0.0132827777415514, + 0.006132167764008045, + 0.0024116274435073137, + 0.03448358178138733, + -0.008706960827112198, + -0.0007432115380652249, + 0.0298934206366539, + -0.013519457541406155, + 0.010557369329035282, + -0.006637802813202143, + -0.009646509774029255, + -0.027081947773694992, + 0.012759212404489517, + -0.007939543575048447, + -0.011116795241832733, + 0.010607574135065079, + -0.011439541354775429, + 0.0071577816270291805, + -0.0073872897773981094, + 0.01947949454188347, + 0.0023811457213014364, + -0.010141385719180107, + -0.00819056760519743, + 0.02025408297777176, + 0.00046529166866093874, + -0.0009763056295923889, + -0.004984627477824688, + -0.027670061215758324, + -0.002065572189167142, + -0.024012276902794838, + -0.03259013965725899, + -0.002528174314647913, + 0.006999995093792677, + 0.004751533269882202, + 0.004744361154735088, + -0.014279702678322792, + -0.020340148359537125, + 0.015233595855534077, + -0.0047873943112790585, + 0.012142409570515156, + -0.003980529960244894, + 0.027182357385754585, + 0.001632555155083537, + 0.02619260363280773, + 0.02084219828248024, + -0.012128065340220928, + -0.021401623263955116, + 0.008771509863436222, + 0.007667002733796835, + -0.011425197124481201, + -0.018661871552467346, + -9.805640729609877e-5, + -0.012888310477137566, + -0.004873459693044424, + 0.010815566405653954, + -0.012981547974050045, + -0.0005002557882107794, + -0.007602453697472811, + -0.024801211431622505, + 0.0010444408981129527, + 0.0012416742974892259, + 0.011862696148455143, + 0.011712081730365753, + -0.00292622740380466, + 0.009789952076971531, + 0.00794671569019556, + -0.002644721418619156, + 0.0077530681155622005, + 0.005056348629295826, + 0.0001073577586794272, + -0.017586052417755127, + -0.02095695212483406, + -0.0029836043249815702, + -0.0012488464126363397, + -0.002372180577367544, + 0.011618844233453274, + 0.008463108912110329, + -0.015706956386566162, + -0.03121309168636799, + -0.010858599096536636, + 0.0037402636371552944, + 0.00461526308208704, + 0.002845540875568986, + -0.034684401005506516, + -0.005723356734961271, + -0.01995285414159298, + -0.01721310243010521, + 0.006637802813202143, + 0.002013574354350567, + 0.009001018479466438, + 0.013203883543610573, + -0.009538927115499973, + 0.02966391295194626, + 0.0007571075693704188, + 0.008864747360348701, + -0.020211050286889076, + 0.011296098120510578, + 0.007222330663353205, + 0.004762291442602873, + -0.0014290461549535394, + 0.014172120951116085, + -0.016036873683333397, + 0.0018880621064454317, + -0.005744873080402613, + -0.00033596926368772984, + 0.014286874793469906, + 0.004418029449880123, + -0.003449792508035898, + 0.01128175389021635, + -0.002230531070381403, + -0.009668026119470596, + -0.016840152442455292, + 0.009395484812557697, + -0.015592201612889767, + 0.013275605626404285, + 0.019508183002471924, + 0.001210296293720603, + 0.01009118091315031, + 0.012465154752135277, + -0.010141385719180107, + -0.018948756158351898, + -0.005694667808711529, + -0.012637285515666008, + -0.016108594834804535, + -0.0016235900111496449, + -0.008491797372698784, + 0.010040976107120514, + -0.003311729058623314, + -0.005601430311799049, + 0.014301219023764133, + -0.004837599117308855, + -0.0011484366841614246, + -0.005784319713711739, + 0.00574845913797617, + 0.015463103540241718, + -0.005511778872460127, + 0.009151632897555828, + 7.301000005099922e-5, + 0.0027074776589870453, + -0.0009547892841510475, + 0.011626016348600388, + 0.017657773569226265, + -0.01846105232834816, + 0.023266376927495003, + 0.005665979348123074, + -0.016754087060689926, + 0.009703886695206165, + -0.008814542554318905, + -0.027713093906641006, + 0.019020477309823036, + 0.016280725598335266, + 0.012924171052873135, + -0.01685449667274952, + 0.009244870394468307, + 0.01256556436419487, + -0.015979496762156487, + 0.0011394715402275324, + 0.025274571031332016, + -0.019321708008646965, + 0.011195688508450985, + -0.025446703657507896, + -0.0037868826184421778, + -0.01387089118361473, + 0.0034623437095433474, + -0.031356535851955414, + -0.020325804129242897, + 0.013497941195964813, + -0.008757165633141994, + 0.005838110577315092, + 0.014932366088032722, + -0.005741287022829056, + -0.011647532694041729, + 0.0022843221668154, + -0.00872847717255354, + 0.005795077886432409, + -0.011181344278156757, + -0.005515364930033684, + 0.045471277087926865, + 0.032188501209020615, + 0.013225399889051914, + -0.008893435820937157, + -0.005024074111133814, + -0.008520485833287239, + 0.01110962312668562, + 0.011245893314480782, + -0.012479498982429504, + 0.00018400985572952777, + -0.007674174848943949, + -0.017829904332756996, + -0.009969254955649376, + -0.008864747360348701, + 0.0004314481921028346, + -0.0033995877020061016, + 0.03144260123372078, + 0.002155223861336708, + -0.01906351000070572, + -0.0016226934967562556, + -0.014609620906412601, + 0.007125507108867168, + -0.010499992407858372, + -0.010499992407858372, + -0.009008190594613552, + 0.01721310243010521, + -0.01539138238877058, + 0.0012811210472136736, + 0.005142414476722479, + -0.01732785627245903, + 0.01679711975157261, + 0.0014487694716081023, + 0.014537899754941463, + -0.012551220133900642, + 0.007702863309532404, + -0.020555313676595688, + -0.0002848678850568831, + 0.005386266391724348, + -0.010170074179768562, + 0.0217315424233675, + -0.017700806260108948, + 0.012307368218898773, + -0.014114744029939175, + -0.016510233283042908, + -0.015090152621269226, + -0.0025012788828462362, + 0.008298149332404137, + 0.008613723330199718, + 0.015161874704062939, + -0.008090157993137836, + 0.010966180823743343, + 0.008663928136229515, + 0.012006138451397419, + -0.017313512042164803, + 0.002363215433433652, + 0.005547639448195696, + 0.0035071696620434523, + -0.023180311545729637, + 0.008276632986962795, + 0.0005890108295716345, + -0.003311729058623314, + 0.006634216755628586, + -0.004679812118411064, + -0.00769569119438529, + 0.011998966336250305, + 0.0057161846198141575, + -0.005802250001579523, + -0.00531454524025321, + -0.014329907484352589, + -0.017959004268050194, + 0.00012293472536839545, + -0.015305317007005215, + -0.01596515253186226, + 0.011798147112131119, + -0.011080934666097164, + -0.005049176514148712, + -0.004640365485101938, + 0.006878068670630455, + 0.007143437396734953, + -0.01393544115126133, + 0.010729500092566013, + 0.014688514173030853, + -0.012293023988604546, + 0.028918011114001274, + 0.00516393082216382, + -0.026278669014573097, + 0.008778681978583336, + 0.0031664937268942595, + -0.008362699300050735, + -0.012443638406693935, + 0.02065572328865528, + -0.022836050018668175, + 0.0105143366381526, + 0.01935039646923542, + 0.01042109914124012, + -0.002323768800124526, + -0.0076454863883554935, + -0.0107223279774189, + 0.010751016438007355, + 0.00830532144755125, + -0.0010318895801901817, + 0.015434415079653263, + 0.016395479440689087, + -0.009797124192118645, + -0.005866799037903547, + -0.030122928321361542, + -0.0033278665505349636, + 0.0050348322838544846, + 0.005877557210624218, + 0.004306861665099859, + -0.01636679098010063, + -0.014100399799644947, + 0.02369670383632183, + 0.008879091590642929, + 0.015477447770535946, + -0.0046331933699548244, + 0.0042279683984816074, + -0.002162395976483822, + -0.008161879144608974, + 0.013203883543610573, + -0.002730787033215165, + 0.0023739736061543226, + -0.028975388035178185, + 0.004504095297306776, + -0.02286473847925663, + 0.016997938975691795, + 0.014387284405529499, + -0.010973352938890457, + 0.016094250604510307, + -0.0014039436355233192, + -0.014129088260233402, + 0.0008767924155108631, + 0.010184419341385365, + -0.0031664937268942595, + 0.007939543575048447, + -0.0037725381553173065, + 0.035114727914333344, + 0.014918021857738495, + -0.00407735351473093, + -0.007781756576150656, + -0.012658802792429924, + -0.0005701840273104608, + 0.0059672086499631405, + -0.0013958750059828162, + 0.012135237455368042, + -0.0026106538716703653, + -0.01768646202981472, + -0.0008593103266321123, + 0.00332069443538785, + 0.002696719253435731, + 0.001073129358701408, + -0.002343492116779089, + -0.013497941195964813, + 0.0063007124699652195, + 0.005196205340325832, + -0.009997943416237831, + -0.017256135120987892, + 0.0171557255089283, + 0.00650511821731925, + -0.028258176520466805, + 0.004310447722673416, + -0.007301224395632744, + -0.013748965226113796, + 0.013225399889051914, + 0.004127558320760727, + 0.0016818635631352663, + -0.005275098606944084, + 0.017170069739222527, + 0.008556346409022808, + 0.00949589442461729, + 0.016596298664808273, + 0.0028365757316350937, + -0.003991288132965565, + 0.0069318595342338085, + 0.004098869860172272, + 0.01172642596065998, + 0.005368336103856564, + 0.0026662377640604973, + 0.00023219757713377476, + -0.004676226060837507, + -0.004945180844515562, + 0.021286869421601295, + 0.0014900091337040067, + -0.009775607846677303, + -0.019422117620706558, + 0.0003149011463392526, + -0.0175717081874609, + -0.011353475041687489, + 0.0031826309859752655, + -0.038844235241413116, + -0.0012838105903938413, + 0.017299167811870575, + 0.012515359558165073, + -0.013024580664932728, + -0.0006714902701787651, + 0.03233194351196289, + 0.019680313766002655, + -0.023983588442206383, + -0.007602453697472811, + -0.003959013614803553, + -0.027010226622223854, + 0.005113726016134024, + -0.003361934097483754, + -0.0044036852195858955, + 0.0005782526568509638, + -0.005572741851210594, + 0.019336052238941193, + -0.0007432115380652249, + -0.001013062777929008, + 0.018891379237174988, + -0.001632555155083537, + -0.0010184418642893434, + 0.008613723330199718, + -0.0027756127528846264, + 0.000641457038000226, + 0.0017213101964443922, + -0.007132679224014282, + 0.009467205964028835, + -0.013246916234493256, + -0.0028311966452747583, + 0.023926211521029472, + -0.0005495641380548477, + -0.018260233104228973, + -0.002660858677700162, + 0.00788933876901865, + 0.016295069828629494, + 0.007853478193283081, + -0.003517927834764123, + -0.019493838772177696, + -0.018618838861584663, + -0.018374986946582794, + 0.01655326597392559, + 0.030581945553421974, + 0.00994056649506092, + 0.011647532694041729, + 0.014846300706267357, + 0.015075808390974998, + -0.0067525566555559635, + -0.0033027639146894217, + -0.022463098168373108, + 0.01053585298359394, + 0.004532783757895231, + 0.013031752780079842, + -0.018446708098053932, + -0.003517927834764123, + -0.0014702858170494437, + -0.01464548148214817, + -0.011891384609043598, + -0.02619260363280773, + -0.004202865995466709, + -0.0008956192177720368, + -0.006713110022246838, + 0.010012287646532059, + 0.01166904903948307, + -0.006386778317391872, + 0.0038693619426339865, + -0.0045220255851745605, + -0.010471303947269917, + 0.009151632897555828, + -0.02186064049601555, + -0.02857374958693981, + -1.7720194591674954e-5, + -0.006006655283272266, + -0.015247940085828304, + -0.021043017506599426, + 0.011009213514626026, + 0.013705932535231113, + 0.021057361736893654, + -0.009295075200498104, + -0.018303265795111656, + -0.005364750046283007, + -0.007903682999312878, + -0.0012972583062946796, + -0.005866799037903547, + -0.008520485833287239, + -0.004884217865765095, + 0.003919566981494427, + -0.004730016924440861, + -0.01464548148214817, + 0.019622936844825745, + 0.010205935686826706, + -0.02543235942721367, + -0.007824789732694626, + -0.007545076310634613, + 0.020999984815716743, + 0.02042621560394764, + 0.02031145989894867, + -0.01408605556935072, + 0.008448764681816101, + -0.011331958696246147, + 0.021717198193073273, + -0.014989743009209633, + 0.01155429519712925, + -0.0039016364607959986, + -0.01101638562977314, + 0.015534824691712856, + -0.0071219210512936115, + -0.005726942792534828, + 0.006035344209522009, + -0.0010480269556865096, + -0.010485648177564144, + 0.0016522784717381, + -0.028028668835759163, + 0.014222325757145882, + -0.013720276765525341, + 0.026780718937516212, + -0.002515623113140464, + 0.009295075200498104, + -0.007667002733796835, + -0.01544875930994749, + 0.011891384609043598, + 0.018231544643640518, + -0.0014209774089977145, + 0.01613728329539299, + 0.015606545843183994, + 0.007372945547103882, + -0.002773819724097848, + -0.012536875903606415, + 0.00014859747898299247, + 0.0023506642319262028, + 0.01375613734126091, + -0.010550197213888168, + -0.0038227431941777468, + 0.003557374468073249, + -0.024729490280151367, + -0.010586057789623737, + -0.032131124287843704, + 0.027727438136935234, + -0.011030729860067368, + 0.0026357562746852636, + -0.009840156883001328, + 0.008599379099905491, + 0.005353991873562336, + -0.005196205340325832, + -0.00516393082216382, + 0.012343228794634342, + 0.0010749223874881864, + 0.003433655248954892, + -0.029247930273413658, + 0.02036883868277073, + 0.02269260585308075, + -0.005440057720988989, + 0.007817617617547512, + 0.027081947773694992, + -0.013168022967875004, + 0.005493848584592342, + 0.01815982349216938, + 0.001668415847234428, + -0.0007862442871555686, + 0.005949278362095356, + -0.00800409261137247, + 0.0009413415100425482, + -0.028358586132526398, + -0.006806347519159317, + -0.010937492363154888, + 0.0022861151956021786, + 0.0035233069211244583, + -0.0034802742302417755, + -0.006139339879155159, + -0.018030725419521332, + -0.022606540471315384, + 0.01316085085272789, + 0.029161864891648293, + 0.05384832248091698, + 0.022434409707784653, + 0.027655716985464096, + 0.009065567515790462, + 0.03416800871491432, + -0.023854490369558334, + 0.006135753821581602, + 0.004109628032892942, + -0.031241780146956444, + -0.018418019637465477, + -0.001961576519533992, + 0.0029656740371137857, + 0.02114342711865902, + 0.009962082840502262, + -0.010844254866242409, + -0.006508704274892807, + -0.014243842102587223, + -0.0023739736061543226, + -0.012515359558165073, + -0.002287908224388957, + -0.013720276765525341, + 0.004170591477304697, + -0.01128175389021635, + 0.0016612437320873141, + 0.0026877541095018387, + -0.0006280092638917267, + 0.00015151116531342268, + -0.006967720575630665, + -0.012529703788459301, + 0.008104502223432064, + 0.02650817669928074, + -0.01632375828921795, + -0.020684411749243736, + -0.007068130187690258, + -0.00223411712795496, + 0.013426220044493675, + 0.008326838724315166, + 0.0042279683984816074, + 0.003232835792005062, + -0.025633178651332855, + -0.008405731990933418, + -0.02371104806661606, + -0.009244870394468307, + -0.014537899754941463, + -0.014631137251853943, + -0.008850403130054474, + 0.013928269036114216, + -0.020454904064536095, + 0.0028778156265616417, + 0.0027236149180680513, + 0.0017024833941832185, + -0.00021135358838364482, + -0.038844235241413116, + -0.0028204384725540876, + 0.001362703973427415, + 0.016180315986275673, + 0.03586063161492348, + -0.005608602426946163, + -0.005841696634888649, + -0.011769458651542664, + -0.016983594745397568, + 0.004948766902089119, + 0.00956044439226389, + 0.007781756576150656, + -0.015520480461418629, + 0.023252032697200775, + 0.004507681354880333, + 0.0037653660401701927, + -0.011274581775069237, + -0.013124990276992321, + 0.008520485833287239, + -0.018719248473644257, + -0.006713110022246838, + -0.012551220133900642, + -0.029204897582530975, + -0.005902659613639116, + -0.021831952035427094, + 0.0027003055438399315, + -0.007129093166440725, + 0.021358590573072433, + -0.006515876390039921, + 0.016065562143921852, + -0.005167516879737377, + -0.006881654728204012, + -0.012486671097576618, + 0.010284828953444958, + 1.3286643479659688e-5, + 0.0011609878856688738, + -0.0175717081874609, + -0.0014765614178031683, + -0.016653677448630333, + -0.013275605626404285, + -0.03281964734196663, + 0.004938008729368448, + 0.017700806260108948, + -0.011869868263602257, + -0.0020046092104166746, + -0.005515364930033684, + -0.007150609511882067, + 0.0020046092104166746, + -0.007415978237986565, + 0.003758193925023079, + -0.010586057789623737, + 0.020383182913064957, + -0.002549690892919898, + -0.027598340064287186, + -0.005960036534816027, + 0.009624993428587914, + 0.00635450379922986, + 0.014595276676118374, + 0.008771509863436222, + -0.00203329767100513, + 0.018073758110404015, + 0.01625203713774681, + -0.013318638317286968, + 0.02031145989894867, + -0.0021839123219251633, + -0.0029531228356063366, + -0.00890060793608427, + 0.023840146139264107, + -0.011920073069632053, + 0.009029706940054893, + 0.020741788670420647, + -0.0002460935793351382, + 0.002845540875568986, + -0.004504095297306776, + 0.004622435197234154, + 0.01423666998744011, + -0.005838110577315092, + -0.005622946657240391, + 0.017471298575401306, + -0.009847328998148441, + -0.00018602701311465353, + 0.010162902064621449, + -0.008871919475495815, + -0.009130116552114487, + 0.008197739720344543, + -0.001809168723411858, + 0.018790969625115395, + -0.003300970885902643, + -0.014430317096412182, + 0.022936459630727768, + 0.018719248473644257, + 0.0042243823409080505, + -0.009847328998148441, + 0.00949589442461729, + -0.011202860623598099, + 0.03310653194785118, + 0.012902654707431793, + 0.009445689618587494, + 0.011547123081982136, + -0.004909320268779993, + -0.008570690639317036, + 0.0025801723822951317, + -0.00347489514388144, + 0.020913919433951378, + 0.004080939572304487, + 0.029807355254888535, + -0.013117818161845207, + 0.0012927757343277335, + -0.00575921731069684, + 0.015979496762156487, + 0.009402656927704811, + 0.010829910635948181, + 0.0024062483571469784, + -0.0013376014539971948, + -0.005024074111133814, + 0.022004082798957825, + -0.008455936796963215, + -0.016825808212161064, + 0.0028347827028483152, + 0.005178275052458048, + -0.01042109914124012, + -0.002248461591079831, + 0.001041751354932785, + -0.010679295286536217, + -0.011676221154630184, + -0.015807365998625755, + -0.036778662353754044, + -0.00815470702946186, + 0.01583605445921421, + 0.019393429160118103, + 0.016653677448630333, + -0.0040343208238482475, + 0.006307884585112333, + -0.0014864230761304498, + -0.00923052616417408, + 0.007939543575048447, + 0.010069664567708969, + -0.006648560985922813, + -0.004686984233558178, + 0.011425197124481201, + -0.020469248294830322, + 0.006601941771805286, + -0.011633188463747501, + 0.003779710503295064, + 0.0186905600130558, + 0.015534824691712856, + -0.0002817300846800208, + -0.009682370349764824, + -0.011482574045658112, + -0.03502866253256798, + -0.00836987141519785, + -0.031413912773132324 + ], + "d503eb6e-392f-42be-9cfa-db7518dce2c5": [ + -0.03350765258073807, + -0.0027325376868247986, + -0.009302103891968727, + -0.01439423393458128, + -0.0523843988776207, + -0.020382866263389587, + 0.03482730686664581, + 0.049314774572849274, + -0.006038836669176817, + 0.027942171320319176, + -0.011217031627893448, + 0.028386835008859634, + -0.03276176378130913, + -0.016423914581537247, + -0.0001881533389678225, + -0.016739483922719955, + -0.06265472620725632, + 0.02977820672094822, + -0.015161640010774136, + -0.00020328180107753724, + 0.08267898857593536, + -0.019895169883966446, + -0.01745668426156044, + 0.014114526100456715, + -0.027942171320319176, + -0.03517156094312668, + 0.0063759214244782925, + -0.007254493422806263, + -0.044236987829208374, + -0.014136041514575481, + 0.0010937323095276952, + 0.03373716026544571, + 0.018862400203943253, + -0.012981346808373928, + 0.01491779088973999, + -0.02952001430094242, + 0.0007261665305122733, + 0.02481517195701599, + -0.00885743834078312, + 0.013096099719405174, + -0.03990509361028671, + 0.012099189683794975, + 0.022792663425207138, + 0.004955862183123827, + -0.019264033064246178, + -0.006461985409259796, + 0.06437600404024124, + -0.020095985382795334, + 0.005181781016290188, + -0.030552783980965614, + 0.0018790679750964046, + 0.027468817308545113, + -0.01721283607184887, + -0.006881548557430506, + -0.004952276591211557, + 0.004181284923106432, + 0.016796858981251717, + 0.07894954085350037, + 0.01913493685424328, + -0.054507315158843994, + -0.007839012891054153, + -0.006106970831751823, + 0.015577617101371288, + -0.01061458233743906, + -0.01850379817187786, + -0.03015115112066269, + 0.011955749243497849, + -0.0027881208807229996, + -0.026235230267047882, + 0.01807347871363163, + 0.005626445636153221, + 0.021932022646069527, + -0.038155119866132736, + -0.019163623452186584, + -0.019823448732495308, + 0.005361081101000309, + 0.03359371796250343, + -0.038528066128492355, + 0.017485372722148895, + 0.014279481954872608, + -0.018733303993940353, + 0.010779538191854954, + 0.016882924363017082, + -0.009703736752271652, + 0.02098531648516655, + 0.005787816364318132, + -0.032216690480709076, + -0.049429528415203094, + -0.05229833349585533, + -0.017069395631551743, + 0.019981233403086662, + 0.029247477650642395, + -0.007333385292440653, + -0.0019203070551156998, + -0.00946705974638462, + -0.004238660912960768, + 0.046704161912202835, + 0.02167383022606373, + -0.03132736310362816, + -0.02718193642795086, + -0.01887674443423748, + 0.031155234202742577, + -0.059154778718948364, + 0.0029046661220490932, + -0.0038657160475850105, + 0.0028903221245855093, + -0.011676040478050709, + 0.012859422713518143, + -0.02983558177947998, + 0.018489453941583633, + 0.012242630124092102, + -0.028515931218862534, + -0.0038872321601957083, + 0.004095220472663641, + 0.022563159465789795, + -0.06971198320388794, + -0.0008454012568108737, + -0.033823221921920776, + -0.017614468932151794, + -0.05304422229528427, + 0.04902789369225502, + 0.03439698368310928, + 0.012156565673649311, + -0.03149949014186859, + 0.01272315438836813, + -0.0002734330773819238, + -0.00024541738093830645, + -0.0012542061740532517, + 0.008305193856358528, + 0.0075521320104599, + 0.01300286315381527, + -0.009129974991083145, + -0.02402625046670437, + 0.017915694043040276, + -0.01900584064424038, + 0.008986534550786018, + 0.026909399777650833, + 0.037724800407886505, + -0.04667547345161438, + 0.04607302322983742, + -0.02111441269516945, + -0.01708373986184597, + -0.015749745070934296, + -0.0003823580627795309, + 0.02259184792637825, + 0.004048602655529976, + -0.04501156508922577, + 0.033335525542497635, + -0.0028903221245855093, + 0.029606077820062637, + -0.02636432647705078, + -0.006687904242426157, + 0.03230275586247444, + 0.00037339303526096046, + -0.0020942282862961292, + -0.004174112807959318, + 0.016739483922719955, + 0.040450163185596466, + 0.005117232911288738, + 0.02148735709488392, + 0.0026464734692126513, + -0.049056582152843475, + 0.04297471418976784, + -0.010198605246841908, + 0.012206769548356533, + 0.004869798198342323, + 0.03436829522252083, + 0.009129974991083145, + -0.050663113594055176, + 0.028429867699742317, + 0.032274067401885986, + -0.0151042640209198, + 0.009101287461817265, + -0.014257965609431267, + -0.00509213050827384, + -0.011403503827750683, + 0.014372718520462513, + 0.004927174188196659, + 0.014286654070019722, + -0.03310602158308029, + -0.008778546005487442, + -0.030351968482136726, + -0.030294591560959816, + 0.009646359831094742, + -0.025962693616747856, + 0.023136921226978302, + 0.012378898449242115, + 0.005296532995998859, + -0.0200529545545578, + 0.010277497582137585, + 0.0025155842304229736, + 0.0066843181848526, + 0.01932140812277794, + 0.044782061129808426, + -0.016624730080366135, + 0.013555108569562435, + 0.00034604972461238503, + 0.0026841266080737114, + 0.02698112092912197, + 0.03712235018610954, + -0.02488689310848713, + -0.04968772083520889, + -0.06420388072729111, + 0.038958385586738586, + -0.07200703024864197, + 0.003679243614897132, + 0.00894350279122591, + -0.014128869399428368, + 0.02983558177947998, + -0.024155346676707268, + 0.02160210907459259, + -0.012357382103800774, + 0.023538554087281227, + 0.0013070997083559632, + -0.013296916149556637, + -0.009725252166390419, + -0.015936218202114105, + 0.030925728380680084, + 0.005597757641226053, + 0.009804144501686096, + -0.010951667092740536, + 0.02488689310848713, + 0.01104490365833044, + -0.009416855871677399, + -0.04722054675221443, + -0.025159429758787155, + -0.017930038273334503, + 0.01788700558245182, + -0.026292607188224792, + 0.0021265025716274977, + 0.033765848726034164, + -0.0010542862582951784, + 0.004898486193269491, + -0.03353634104132652, + -0.020325491204857826, + 0.01745668426156044, + -0.004647465888410807, + 0.003941022325307131, + 0.007932248525321484, + -0.00399481225758791, + 0.04059360548853874, + 0.009782628156244755, + 0.02729669027030468, + 0.02531721256673336, + 0.029634766280651093, + 0.012278489768505096, + -0.007143327035009861, + 0.03979033976793289, + 0.008742686361074448, + -0.025302868336439133, + 0.01659604348242283, + 0.03763873502612114, + 0.01919231191277504, + -0.001730248681269586, + -0.008262161165475845, + 0.011783620342612267, + 0.015305080451071262, + -0.0184464231133461, + -0.023854121565818787, + -0.016696451231837273, + -0.009804144501686096, + -0.004084462765604258, + 0.00436417106539011, + -0.02438485063612461, + 0.04828200489282608, + -0.020956628024578094, + 0.010356389917433262, + -0.03913051262497902, + -0.0011358679039403796, + 0.007494755554944277, + -0.07682662457227707, + 0.005766300018876791, + -0.001409300952218473, + 0.009122802875936031, + 0.0019884412176907063, + -0.017872661352157593, + -0.010413765907287598, + 0.027712665498256683, + -0.01597924903035164, + -0.0024151760153472424, + -0.0015267427079379559, + 0.025360245257616043, + 0.024843860417604446, + 0.042372263967990875, + 0.00566589180380106, + -0.02303651161491871, + 0.004507611505687237, + 0.01135329995304346, + -0.043118152767419815, + -0.0019705111626535654, + 0.01439423393458128, + -0.009330791421234608, + 0.028186019510030746, + -0.022792663425207138, + 0.032532259821891785, + -0.00801114086061716, + -0.011690384708344936, + -0.03095441684126854, + -0.03149949014186859, + 0.03279045224189758, + -0.013268227688968182, + -0.0006584806251339614, + 0.034511737525463104, + -0.024671731516718864, + 0.035802699625492096, + -0.007939420640468597, + 0.034253545105457306, + -0.005163850728422403, + -0.04432305321097374, + 0.023782402276992798, + 0.04469599947333336, + -0.01968001015484333, + -0.015233360230922699, + -0.041138678789138794, + -0.010499830357730389, + 0.005343151278793812, + -0.0034461531322449446, + 0.026220887899398804, + 0.012063329108059406, + -0.025661470368504524, + 0.005325220990926027, + -0.015577617101371288, + -0.04524107277393341, + 0.01962263323366642, + 0.04727792367339134, + -0.027224969118833542, + 0.016079658642411232, + -0.0014505400322377682, + -0.016825547441840172, + -0.026235230267047882, + -0.007010644767433405, + -0.038097742944955826, + -0.04799512401223183, + -0.00334933097474277, + 0.0011618664721027017, + -0.03551581874489784, + -0.037409231066703796, + -0.023854121565818787, + -0.01969435252249241, + 0.010671958327293396, + 7.09357118466869e-5, + 0.040134597569704056, + -0.032962583005428314, + -0.012988518923521042, + 0.011260063387453556, + -0.009036739356815815, + -0.010220121592283249, + 0.017800942063331604, + -0.016108345240354538, + -0.004790905863046646, + 0.0007086847326718271, + -0.0051315766759216785, + 0.05588434264063835, + -0.012622746638953686, + 0.012357382103800774, + -0.003804754000157118, + -0.023524209856987, + -0.02402625046670437, + 0.0084199458360672, + 0.012637090869247913, + -0.023007825016975403, + -0.01906321570277214, + -0.0379829928278923, + -0.003083966439589858, + 0.0021767066791653633, + 0.04191325604915619, + 0.009976273402571678, + -0.014846071600914001, + 0.006067524664103985, + 0.021315228193998337, + -0.04592958465218544, + 0.03907313942909241, + 0.03095441684126854, + -0.0038693021051585674, + -0.03517156094312668, + -0.01566368155181408, + 0.036605965346097946, + 0.018977152183651924, + -0.021014004945755005, + 0.03703628480434418, + -0.03204456344246864, + -0.0008440565434284508, + 0.013655516318976879, + -0.00778163643553853, + 0.04759349301457405, + 0.003768893890082836, + -0.011589976027607918, + -0.012378898449242115, + -0.016567355021834373, + -0.009753940626978874, + -0.0483967587351799, + 0.00826933328062296, + -0.06213833764195442, + -0.003474841360002756, + -0.025460653007030487, + 0.026895057410001755, + -0.008240645751357079, + -0.008312365040183067, + 0.027827419340610504, + 0.013827645219862461, + 0.008613590151071548, + -0.025532374158501625, + -0.014286654070019722, + 0.00872834213078022, + 0.02111441269516945, + 0.01207050122320652, + 0.0030122462194412947, + 0.010255981236696243, + 0.016696451231837273, + 0.016553010791540146, + -0.005500935483723879, + 0.005483005661517382, + 0.01795872487127781, + -0.020999660715460777, + 0.059212155640125275, + -0.009402511641383171, + 0.01371289324015379, + 0.00290825217962265, + -0.0620235875248909, + -0.016940299421548843, + 0.052642591297626495, + 0.07051525264978409, + -0.010736506432294846, + 0.009768284857273102, + -0.03416747972369194, + 0.0069138226099312305, + 0.017255868762731552, + 0.013598140329122543, + -0.013060239143669605, + -0.0010300807189196348, + -0.023481177166104317, + 0.002237668726593256, + -0.02401190623641014, + -0.03175768256187439, + 0.04369191452860832, + 0.0001293203968089074, + 0.0236533060669899, + -0.0007911628927104175, + -0.004392859060317278, + -0.017356276512145996, + 0.011346127837896347, + 0.021214820444583893, + 0.025862285867333412, + 0.005396941211074591, + -0.01269446685910225, + -0.03666334226727486, + -0.01751406118273735, + 0.008226301521062851, + 0.024743452668190002, + 0.017040707170963287, + 0.002601648448035121, + 0.0350281223654747, + -0.03623301908373833, + 0.019163623452186584, + -0.024298787117004395, + -0.002856255043298006, + 0.010485486127436161, + 0.021014004945755005, + 0.023136921226978302, + 0.011812308803200722, + -0.029247477650642395, + 0.0012721362290903926, + 0.03244619444012642, + -0.02333773672580719, + -0.02147301286458969, + -0.0636301189661026, + -0.0252598375082016, + 0.017499716952443123, + -0.005604929756373167, + -0.004830352030694485, + 0.0032668528147041798, + 0.011518255807459354, + -0.032905206084251404, + 0.017915694043040276, + -0.03910182788968086, + -0.0034873923286795616, + -0.0035626983735710382, + -0.010134057141840458, + 0.009825660847127438, + -0.008907643146812916, + -0.023983217775821686, + -0.019206656143069267, + -0.026163510978221893, + 0.004683325998485088, + 0.05961379036307335, + -0.024657387286424637, + -0.019837792962789536, + -0.000596173747908324, + 0.02302216924726963, + -0.013339947909116745, + 0.05465075373649597, + -0.0045900894328951836, + 0.02055499516427517, + -0.004758631810545921, + -0.02723931334912777, + -0.04420829936861992, + 0.008190440945327282, + -0.021960709244012833, + -0.010126885026693344, + -0.029104037210345268, + 0.04802381247282028, + -0.004977378528565168, + 0.01590752974152565, + 0.03218800202012062, + 0.014286654070019722, + 0.009581811726093292, + -0.013512076810002327, + 0.023567240685224533, + 0.013856332749128342, + -0.0015312251634895802, + -0.007003472652286291, + -0.00283294590190053, + 0.003499943297356367, + 0.013720064423978329, + -0.00552245182916522, + 0.033392902463674545, + -0.015204671770334244, + 0.0037115179002285004, + 0.0007467860705219209, + -0.01111662294715643, + 0.023179952055215836, + 0.00801114086061716, + 0.008541869930922985, + 0.005339565221220255, + 0.01105207484215498, + -0.016882924363017082, + -0.010377906262874603, + 0.01639522612094879, + 0.039331331849098206, + 0.010750850662589073, + -0.031155234202742577, + 0.011338955722749233, + -0.0038406141102313995, + 0.013877849094569683, + 0.01968001015484333, + -0.001645080978050828, + -0.013791784644126892, + -0.013124787248671055, + -0.009789800271391869, + 0.03651989996433258, + -0.014157557860016823, + -0.0033977420534938574, + -0.006616184022277594, + 0.014716974459588528, + 0.026235230267047882, + 0.037237104028463364, + -0.014946479350328445, + 0.013641173020005226, + 0.019221000373363495, + 0.02234799973666668, + -0.014702631160616875, + 0.009796972386538982, + -0.0031861676834523678, + 0.014788694679737091, + 0.030007710680365562, + -0.04179850220680237, + 0.02035417966544628, + -0.016122689470648766, + -0.052642591297626495, + 0.007982452400028706, + -0.0009189144475385547, + -0.0016199789242818952, + -0.0017284556524828076, + -0.0026518525555729866, + -0.035315003246068954, + -0.0018611379200592637, + -0.023739369586110115, + 0.015018199570477009, + -0.01346187200397253, + 0.028573308140039444, + 0.03347896784543991, + 0.020526306703686714, + 0.03428223356604576, + -0.0126299187541008, + -0.011848168447613716, + 0.01795872487127781, + 0.013813300989568233, + 0.014745662920176983, + -0.01460939459502697, + -0.0037151037249714136, + 0.028515931218862534, + -0.033450279384851456, + 0.014157557860016823, + -0.023882810026407242, + 0.004278107080608606, + 0.015118607319891453, + -0.05711792781949043, + -0.04308946803212166, + -0.005375425331294537, + 0.03683546930551529, + 0.0022878728341311216, + 0.02315126545727253, + 0.028702404350042343, + 0.012235458008944988, + -0.01328257191926241, + 0.020583683624863625, + -0.007695571985095739, + 0.02147301286458969, + 0.0020440241787582636, + -0.018288638442754745, + 0.002321939915418625, + -0.0030678294133394957, + 0.009043910540640354, + -0.0057232677936553955, + -0.007215047255158424, + 0.021343916654586792, + -0.022993480786681175, + 0.004292450845241547, + -0.002492275321856141, + -0.0016298404661938548, + 0.0054471455514431, + -0.002167741535231471, + 0.021688174456357956, + -0.007222219370305538, + 0.02791348285973072, + 0.017930038273334503, + 0.020067298784852028, + 0.03938870504498482, + 0.0015186741948127747, + -0.03293389454483986, + 0.02359592914581299, + -0.06758906692266464, + 0.056917112320661545, + -0.00574119808152318, + 0.01104490365833044, + -0.016868580132722855, + -0.01653866656124592, + -0.007021402940154076, + -0.016682107001543045, + 0.005145920906215906, + 0.021343916654586792, + 0.016811203211545944, + 0.033421590924263, + -0.02147301286458969, + 0.027282346040010452, + 0.01701202057301998, + 0.0021802925039082766, + 0.05106474831700325, + -0.011532600037753582, + 0.025862285867333412, + -0.019665665924549103, + -0.005798574071377516, + -0.013476216234266758, + 0.028300771489739418, + -0.012529510073363781, + 0.019636977463960648, + -0.024097969755530357, + 0.011102279648184776, + 0.031183920800685883, + -0.012256973423063755, + -0.05284340679645538, + 0.009854348376393318, + 0.03299126774072647, + 0.013024379499256611, + -0.012192425318062305, + -0.029577389359474182, + -0.018604207783937454, + 0.01734193228185177, + 0.027870450168848038, + -0.022061118856072426, + 0.03052409552037716, + 0.011783620342612267, + -0.022807007655501366, + 0.020009921863675117, + 0.006031664554029703, + 6.460416625486687e-5, + 0.01678251475095749, + 0.0038513720501214266, + 0.025274181738495827, + 0.027138905599713326, + -0.0014370925491675735, + 0.010033649392426014, + 0.015678025782108307, + 0.027440128847956657, + 0.0022896658629179, + -0.00442871917039156, + 0.012995691038668156, + -0.026651207357645035, + 0.019952546805143356, + -0.01082974299788475, + -0.014903447590768337, + -0.00820478517562151, + -0.028802812099456787, + -0.015362456440925598, + 0.02128654159605503, + -0.023007825016975403, + -0.010650441981852055, + 0.04957296699285507, + -0.024686075747013092, + -0.006555221974849701, + -0.000993324094451964, + 0.013024379499256611, + -0.01794438250362873, + 0.019177967682480812, + -0.007351315580308437, + -0.0001255102688446641, + -0.0052427430637180805, + 0.004561401437968016, + 0.025919662788510323, + -0.013196507468819618, + -0.024958612397313118, + -0.01367703266441822, + -0.005884638521820307, + -0.021243508905172348, + 0.0002904666180256754, + 0.016007937490940094, + -0.010542862117290497, + -0.007085951045155525, + 0.015993593260645866, + 0.0009341549593955278, + 0.017671845853328705, + -0.008742686361074448, + -0.01185534056276083, + 0.017241524532437325, + -0.0032543018460273743, + -0.002544272458180785, + -0.02042589895427227, + 0.015147295780479908, + 0.015319423750042915, + 0.02322298474609852, + -0.02946263737976551, + 0.04983115941286087, + -0.008183268830180168, + -0.039331331849098206, + -0.05198276415467262, + 0.0248725488781929, + 0.00595994433388114, + -0.0002593131794128567, + -0.014322513714432716, + -0.004769389983266592, + 0.05120818689465523, + 0.0029423192609101534, + -0.010693474672734737, + 0.011869684793055058, + -0.01833167113363743, + -0.01652432233095169, + -0.03672071546316147, + 0.004561401437968016, + 0.03195849806070328, + -0.018733303993940353, + -0.014860414899885654, + -0.027282346040010452, + 0.023509865626692772, + 0.032216690480709076, + 0.018489453941583633, + -0.007179187145084143, + -0.011661696247756481, + -0.024241410195827484, + 0.01228566188365221, + 0.021243508905172348, + 0.01807347871363163, + -0.030724912881851196, + 0.043232906609773636, + 0.01975172944366932, + -0.029749518260359764, + -0.0029172170907258987, + -0.017427995800971985, + -0.0030230043921619654, + -0.006795484106987715, + 0.05281471833586693, + -0.01278770249336958, + 0.0042960369028151035, + 0.003962538205087185, + -0.019536569714546204, + -0.0005307291285134852, + -0.0024313130415976048, + -0.021616453304886818, + 0.02656514383852482, + 0.05872445926070213, + -0.025546718388795853, + 0.023796746507287025, + -0.010205777361989021, + 0.02761225774884224, + 0.015118607319891453, + 0.0046546380035579205, + -0.01318216323852539, + 0.02778438664972782, + -0.0021838785614818335, + -0.036118268966674805, + 0.02105703577399254, + -0.018001757562160492, + -0.050175417214632034, + -0.01590752974152565, + -0.03491336852312088, + 0.011970093473792076, + -0.015118607319891453, + 0.03439698368310928, + 0.02940526232123375, + 0.002130088396370411, + -0.01652432233095169, + 0.01732758805155754, + 0.011374816298484802, + -0.004966620355844498, + 0.023552898317575455, + 0.005830848123878241, + -0.004181284923106432, + 0.022376686334609985, + -0.021243508905172348, + 0.0063508194871246815, + 0.007932248525321484, + 0.007702744100242853, + -0.045212384313344955, + 0.023194296285510063, + 0.04963034391403198, + -0.0025568234268575907, + 0.0029638351406902075, + 0.03749529644846916, + -0.0018243812955915928, + -0.005820090416818857, + 0.00959615595638752, + -0.030380655080080032, + -0.007638195995241404, + 0.0029387332033365965, + -0.005328807048499584, + -0.00697837071493268, + 0.0006392058567143977, + -0.009194523096084595, + -0.02817167527973652, + 0.022319311276078224, + -0.01597924903035164, + 0.021200476214289665, + 0.02563278190791607, + 0.034999433904886246, + 0.012637090869247913, + -0.0073441434651613235, + -0.012249801307916641, + -0.008219129405915737, + -0.009883036836981773, + 0.03279045224189758, + -0.001213863492012024, + -0.003083966439589858, + -0.022247590124607086, + -0.005063442513346672, + 0.01556327287107706, + 0.0031736167147755623, + 0.02451394684612751, + -0.021645141765475273, + -0.01547720842063427, + -0.03861412778496742, + 0.01955091394484043, + 0.0027074357494711876, + -0.015276391990482807, + -0.01850379817187786, + -0.01172624435275793, + -0.0165816992521286, + -0.0002507964090909809, + 0.00763102388009429, + 0.015993593260645866, + 0.04102392494678497, + 0.0013850954128429294, + 0.008678138256072998, + -0.019608289003372192, + 0.003962538205087185, + -0.017055051401257515, + -0.055798277258872986, + 0.021573420614004135, + -0.014078665524721146, + 0.002332697855308652, + 0.00938099529594183, + -0.00025371002266183496, + -0.012902455404400826, + 0.020153362303972244, + -0.0027468816842883825, + -0.013555108569562435, + -0.006063938606530428, + -0.010277497582137585, + -0.024987300857901573, + 0.03557319566607475, + 0.005465075373649597, + 0.016180066391825676, + -0.009581811726093292, + -0.000772784638684243, + 0.0031198265496641397, + 0.00221435958519578, + -0.02419837936758995, + -0.022807007655501366, + -0.013669860549271107, + 0.0006235170876607299, + -0.029548702761530876, + 0.013096099719405174, + -0.01596490480005741, + 0.01956525631248951, + 0.019464848563075066, + -0.0037186897825449705, + -0.05717530474066734, + 0.02098531648516655, + 0.007311869412660599, + -0.003110861638560891, + 0.02401190623641014, + -0.03307733312249184, + -0.0015554308192804456, + 0.015950562432408333, + -0.018661582842469215, + -0.029491325840353966, + 0.007071606814861298, + -0.0564294159412384, + -0.023796746507287025, + -0.02507336437702179, + -8.584005263401195e-5, + -0.01596490480005741, + -0.00422431668266654, + -0.026966776698827744, + -0.012127877213060856, + 0.016007937490940094, + -0.024915579706430435, + -0.034138791263103485, + 0.01622309722006321, + 0.029132725670933723, + -0.005117232911288738, + 0.037667423486709595, + 0.02662252075970173, + 0.018546830862760544, + -0.005049098748713732, + -0.011181171052157879, + 0.02927616611123085, + 0.02940526232123375, + 0.009459887631237507, + -0.018417734652757645, + -0.020569339394569397, + 0.007674056105315685, + -0.001299031195230782, + -0.011776449158787727, + 0.0013608898734673858, + 0.017241524532437325, + -0.004970206413418055, + -0.009603328071534634, + 0.007910732179880142, + 0.008054172620177269, + 0.016940299421548843, + 0.024786483496427536, + 0.00857772957533598, + 0.03276176378130913, + 0.022893071174621582, + -0.007161256857216358, + 0.007623852230608463, + -0.025116397067904472, + 0.02401190623641014, + -0.01714111678302288, + -0.020540650933980942, + -0.029104037210345268, + -0.01833167113363743, + 0.013053067028522491, + 0.015247704461216927, + -0.0015330181922763586, + 0.016553010791540146, + -0.015520240180194378, + -0.04346241056919098, + 0.03617564216256142, + 0.012429102323949337, + -0.012063329108059406, + 0.01024880912154913, + 0.040134597569704056, + 0.005375425331294537, + 0.010858430527150631, + 0.014946479350328445, + 0.03015115112066269, + -0.0010031856363639235, + 0.037351854145526886, + 0.011891201138496399, + -0.003261473961174488, + 0.0028652199544012547, + -0.0013644758146256208, + -0.035860076546669006, + 0.007853356190025806, + -0.03563057258725166, + 0.00450402544811368, + -0.021157443523406982, + 0.0032148556783795357, + 0.01788700558245182, + 0.015835808590054512, + -0.01367703266441822, + -0.0142364501953125, + 0.01235020998865366, + -0.013913709670305252, + 0.001115248305723071, + -0.003517873352393508, + -0.015089919790625572, + 0.004611605778336525, + 0.009667876176536083, + -0.008871782571077347, + 0.010521345771849155, + 0.0068887206725776196, + -0.004625949542969465, + 0.016667762771248817, + -0.011217031627893448, + 0.011539772152900696, + -0.00010477865725988522, + 0.0003189305425621569, + 0.01807347871363163, + -0.002461794065311551, + 0.025675814598798752, + -0.03545844182372093, + -0.006720178294926882, + -0.03781086206436157, + -0.003894404275342822, + -0.02425575442612171, + -0.02761225774884224, + -0.009667876176536083, + 0.014523330144584179, + -0.012759014964103699, + -0.015548928640782833, + 0.021946366876363754, + -0.03106916882097721, + 0.027999546378850937, + 0.007745776325464249, + 0.008376913145184517, + -0.00968222040683031, + -0.009639188647270203, + 0.01602228172123432, + 0.007501927670091391, + 0.016725139692425728, + -0.0045685735531151295, + -0.020511962473392487, + -0.02897494100034237, + 0.030380655080080032, + 0.009165835566818714, + 0.006472743581980467, + -0.046331215649843216, + 0.007760120090097189, + 0.040937863290309906, + -0.015577617101371288, + -0.028931908309459686, + 0.00950292032212019, + -0.01727021299302578, + -0.011898373253643513, + -0.013877849094569683, + 0.00713256886228919, + 0.01715545915067196, + 0.03144211322069168, + 0.013963913545012474, + -0.024929923936724663, + 0.009230383671820164, + 0.008907643146812916, + -0.0030301762744784355, + -0.0020045782439410686, + -0.027268001809716225, + 0.021802926436066628, + -0.05181063711643219, + -0.015548928640782833, + 0.010040821507573128, + 0.01838904619216919, + -0.00523198489099741, + -0.0005939325201325119, + -0.010714990086853504, + 0.008326709270477295, + -0.01585015282034874, + -0.013296916149556637, + 0.02197505347430706, + -0.01154694426804781, + 0.03471255302429199, + 0.0059456005692481995, + -0.02048327587544918, + 0.027755698189139366, + -0.016983332112431526, + -0.011869684793055058, + 0.0037043457850813866, + -0.0007544063264504075, + -0.0082908496260643, + -0.0014146799221634865, + 0.02624957449734211, + -0.012579714879393578, + 0.011869684793055058, + 0.03241750970482826, + -0.009624844416975975, + 0.031241297721862793, + -0.013576624915003777, + -0.013562280684709549, + 0.028056923300027847, + 0.00038728880463168025, + 0.00032363718491978943, + 0.00851318147033453, + 0.028673715889453888, + -0.008620762266218662, + 0.03201587498188019, + 0.012830735184252262, + 0.029864270240068436, + -0.015462864190340042, + 0.0015025371685624123, + 0.009129974991083145, + 0.0051566786132752895, + -0.016667762771248817, + 0.01111662294715643, + -0.019479192793369293, + 0.0009753940394148231, + -0.019335752353072166, + -0.03267570212483406, + 0.01930706389248371, + 0.0018575518624857068, + 0.0007557510980404913, + 0.029806895181536674, + -0.02475779689848423, + 0.020210739225149155, + -0.009646359831094742, + -0.004665395710617304, + -0.007939420640468597, + 0.01278053130954504, + -0.0012057949788868427, + 0.07619548588991165, + 0.005318049341440201, + -0.0034138790797442198, + 0.00378323788754642, + -0.01585015282034874, + -0.005669477861374617, + 0.013031551614403725, + 0.01795872487127781, + 0.01534811221063137, + 0.0004269590135663748, + -0.017628813162446022, + -0.0006468261126428843, + 0.025847941637039185, + 0.028429867699742317, + -0.007351315580308437, + 0.009302103891968727, + 0.023438144475221634, + 0.013605312444269657, + -0.02111441269516945, + -0.02029680274426937, + -0.012264145538210869, + -0.0008942606509663165, + 0.007573647890239954, + -0.018102165311574936, + -0.01343318447470665, + -0.031183920800685883, + 0.008556214161217213, + -0.006655630189925432, + -0.057347431778907776, + -0.005848778411746025, + 0.01973738521337509, + 0.006343647371977568, + 0.019034527242183685, + 0.010786710307002068, + -0.016137033700942993, + 0.01640957035124302, + 0.012601230293512344, + -0.025087708607316017, + 0.0036344185937196016, + -0.0038334419950842857, + -0.005551139824092388, + -0.008104377426207066, + -0.02524549327790737, + -0.01278770249336958, + 0.0004939725622534752, + 0.0028688060119748116, + 0.025087708607316017, + 0.003919506445527077, + -0.010169917717576027, + 0.001398542895913124, + -0.016007937490940094, + 0.007193530909717083, + -0.01678251475095749, + 0.0005213158437982202, + -0.007089537102729082, + 0.0037115179002285004, + -0.017356276512145996, + -0.03706497326493263, + -0.05387617647647858, + -0.019393129274249077, + 0.007146913092583418, + 0.02210414968430996, + -6.796605157433078e-5, + -0.014286654070019722, + -0.026034414768218994, + 0.01011971291154623, + -0.0142364501953125, + -0.003772479947656393, + -0.012687294743955135, + -0.0016809410881251097, + -0.0035716635175049305, + 0.0036971736699342728, + -0.00011307129898341373, + 0.012386069633066654, + -0.0065337056294083595, + 0.017542749643325806, + 0.014042805880308151, + -0.032962583005428314, + -0.0011394538450986147, + -0.02711021713912487, + -0.011274407617747784, + 0.002241254784166813, + 0.02600572630763054, + 0.016366537660360336, + -0.011066419072449207, + -0.013225195929408073, + -0.010951667092740536, + -0.011310268193483353, + 0.0056981658563017845, + -0.025030331686139107, + -0.003510701470077038, + -0.0019507880788296461, + 0.010564378462731838, + -0.0168398916721344, + -0.007882044650614262, + -0.027770042419433594, + -0.020253770053386688, + -0.007910732179880142, + 0.0009915310656651855, + -0.01900584064424038, + -0.02160210907459259, + -0.0005872087203897536, + 0.0100264772772789, + -0.0323314443230629, + 0.00879289023578167, + -0.0009269829606637359, + -0.010291841812431812, + 0.0078031523153185844, + -0.007204289082437754, + -0.028616340830922127, + -0.004633121658116579, + 0.007516271900385618, + -0.004880556371062994, + 0.0009718080400489271, + 0.0056479619815945625, + -0.003998398315161467, + -0.006146416999399662, + -0.007365659344941378, + 0.029433948919177055, + -0.0024851032067090273, + -0.0034138790797442198, + -0.0010094611207023263, + -0.009101287461817265, + 0.0059707025066018105, + 0.018173886463046074, + -0.01534811221063137, + -0.01024163793772459, + 0.00035501475213095546, + -0.016811203211545944, + -0.0045793317258358, + 0.011891201138496399, + 0.01577843353152275, + 0.006013734731823206, + 0.014422922395169735, + 0.019278377294540405, + -0.004335483070462942, + 0.028186019510030746, + 0.012228285893797874, + -0.006182277109473944, + 0.00348918535746634, + -0.03390928730368614, + 0.006802656222134829, + 0.011884029023349285, + 0.016452603042125702, + -0.0026733686681836843, + 0.017471028491854668, + -0.03829856216907501, + 0.004909244365990162, + 0.017686190083622932, + -0.00609979871660471, + 0.00907259900122881, + -0.0007131672464311123, + -0.011676040478050709, + -0.008118720725178719, + 0.00472277170047164, + -0.022046774625778198, + 0.0012470341753214598, + -0.040450163185596466, + -0.0014666770584881306, + 0.013820473104715347, + 0.004066532477736473, + -0.013382979668676853, + -0.011690384708344936, + -0.015706712380051613, + 3.4249173950229306e-6, + 0.009065426886081696, + -0.016639074310660362, + -0.02989295870065689, + 0.010255981236696243, + 0.010392249561846256, + -0.024858204647898674, + 0.013942397199571133, + -0.021759893745183945, + 0.004826765973120928, + 0.026651207357645035, + -0.0350281223654747, + 0.027655290439724922, + -0.00546148931607604, + 0.03795430436730385, + -0.003926678095012903, + -0.023050855845212936, + -0.028458556160330772, + 0.008563386276364326, + 0.01120268739759922, + 0.020210739225149155, + -0.0031001034658402205, + -0.020440243184566498, + -0.01838904619216919, + -0.022993480786681175, + 0.007688400335609913, + 0.02283569611608982, + -0.020382866263389587, + -0.014652426354587078, + 0.022147182375192642, + 0.0015446727629750967, + 0.0063149593770504, + -0.023782402276992798, + -0.022520126774907112, + 0.00944554340094328, + -0.014932135120034218, + 0.02048327587544918, + 0.009646359831094742, + 0.009302103891968727, + -2.6124625946977176e-5, + 0.01874764822423458, + 0.002841911045834422, + -0.004622363485395908, + -0.002847289899364114, + -0.008678138256072998, + 0.0042207310907542706, + 0.007731432095170021, + 0.012170909903943539, + -0.02371068112552166, + 0.007243735250085592, + 0.0268663689494133, + -0.008147409185767174, + -0.0004435442970134318, + 0.0002875529753509909, + -0.013598140329122543, + -0.01030618604272604, + 0.0016074278391897678, + -0.010578721761703491, + 0.004823179915547371, + 0.02871674858033657, + 0.0025263424031436443, + -0.007939420640468597, + 0.02303651161491871, + -0.0018754819175228477, + 0.036118268966674805, + -0.005852364469319582, + -0.002895700978115201, + 0.003611109685152769, + 0.014336857944726944, + -0.025948351249098778, + 0.004392859060317278, + -0.009043910540640354, + -0.014279481954872608, + 0.007516271900385618, + -0.0022251177579164505, + -0.009237555786967278, + -0.002650059526786208, + -0.023179952055215836, + -0.0029297680594027042, + -0.008262161165475845, + -0.012737498618662357, + -0.0002985351311508566, + -0.011503912508487701, + 0.019421815872192383, + 0.005820090416818857, + -0.00032139592804014683, + -0.018102165311574936, + 0.00826933328062296, + 0.0007279595010913908, + 0.0024868962354958057, + -0.008161753416061401, + 0.02408362738788128, + 0.009768284857273102, + -0.0023434560280293226, + -0.02079884335398674, + -0.019235344603657722, + -0.023050855845212936, + -0.01678251475095749, + 0.01912059262394905, + -0.005877466406673193, + -0.024714764207601547, + 0.029577389359474182, + 0.027339721098542213, + -0.006734522059559822, + -0.0055367955937981606, + -0.019665665924549103, + -0.006723764352500439, + 0.021444324404001236, + -0.021802926436066628, + -0.01222111377865076, + 0.024313131347298622, + -0.011640180833637714, + 0.00443947734311223, + -0.013404496014118195, + 0.023065200075507164, + 0.0019991991575807333, + 0.01172624435275793, + 0.00900805089622736, + 0.010736506432294846, + -0.009847176261246204, + 0.003324229037389159, + 0.02619219943881035, + -0.008441462181508541, + 0.02333773672580719, + 0.01024880912154913, + -0.002458208240568638, + -0.012106361798942089, + 0.006494259461760521, + 0.0005768989794887602, + -0.002709228778257966, + -0.00567664997652173, + 0.0011143517913296819, + 0.004833938088268042, + 0.034999433904886246, + 0.0006580323679372668, + -0.013555108569562435, + -0.014602222479879856, + -0.020411554723978043, + -0.005551139824092388, + 0.00938099529594183, + 0.01445878203958273, + -0.0077744643203914165, + 0.02092793956398964, + -0.011776449158787727, + 0.002524549374356866, + -0.03198718652129173, + 0.005174608901143074, + 0.005246329121291637, + 0.004443063400685787, + -0.005414871498942375, + -0.01235020998865366, + -0.0023022168315947056, + 0.013598140329122543, + 0.010729334317147732, + 0.0008126789471134543, + 0.00479807797819376, + -0.014207761734724045, + 0.020511962473392487, + -0.04300340265035629, + -0.012988518923521042, + -0.027210624888539314, + 0.019522225484251976, + -0.02066974714398384, + 0.024054938927292824, + -0.008957847021520138, + 0.0043821013532578945, + 0.007387175690382719, + 0.006067524664103985, + 0.013641173020005226, + 0.017499716952443123, + 0.00835539773106575, + 0.022993480786681175, + -0.007795980200171471, + 0.01919231191277504, + -0.008254989050328732, + 0.014064321294426918, + -0.008986534550786018, + 0.003894404275342822, + 0.00922321155667305, + 0.025145085528492928, + -0.0066699739545583725, + -0.008950674906373024, + 0.01364834513515234, + 0.010363562032580376, + -0.004267348907887936, + -0.019593944773077965, + -0.003829855937510729, + -0.015993593260645866, + 0.010772367008030415, + -0.013483388349413872, + 0.016696451231837273, + -0.01328257191926241, + -0.008757030591368675, + 0.005192538723349571, + -0.011733416467905045, + -0.011561288498342037, + -0.019177967682480812, + -0.0070536769926548, + 0.014293826185166836, + -0.018919775262475014, + -0.0016657004598528147, + 0.0010910427663475275, + -0.003890818217769265, + 0.004174112807959318, + -0.0024097971618175507, + -0.0031754097435623407, + 0.006081868894398212, + 0.01708373986184597, + 0.001380612957291305, + -0.00434982730075717, + 0.022606192156672478, + -0.019723040983080864, + 0.041941944509744644, + -0.009424027986824512, + 0.0004971103044226766, + -0.033392902463674545, + -0.03256094828248024, + -0.020440243184566498, + 0.01219959743320942, + -0.014093009755015373, + 0.005687408149242401, + -0.0398477166891098, + 0.0063974373042583466, + -0.004608019720762968, + 0.021272197365760803, + 0.004884142428636551, + 0.005708924029022455, + -0.004970206413418055, + 0.02470041997730732, + -0.010126885026693344, + -0.007795980200171471, + 0.012307178229093552, + 0.012113532982766628, + 0.029692143201828003, + -0.023509865626692772, + 0.02036852203309536, + 0.01745668426156044, + -0.0045434716157615185, + -0.013160647824406624, + 0.0029494911432266235, + -0.005906154401600361, + -0.0019310651114210486, + 0.019536569714546204, + -0.01602228172123432, + -0.017671845853328705, + 0.009847176261246204, + -0.011130967177450657, + -0.03861412778496742, + -0.023251673206686974, + 0.0015706713311374187, + -0.0041597685776650906, + -0.0007503720698878169, + 0.007215047255158424, + -0.009180178865790367, + -0.0038836461026221514, + 0.001122420304454863, + 0.02253447100520134, + -0.024155346676707268, + -0.007215047255158424, + 0.004260176792740822, + 0.01988082565367222, + 0.01757143624126911, + 0.024671731516718864, + -0.012794874608516693, + 0.011425020173192024, + -0.010657614096999168, + -0.003440774278715253, + 0.017227180302143097, + 0.009847176261246204, + -0.0017974863294512033, + 0.020081643015146255, + -0.02797085791826248, + -0.006092626601457596, + -0.0025855114217847586, + 0.013347120024263859, + 0.0014747455716133118, + 0.014465954154729843, + -0.008305193856358528, + -0.016079658642411232, + -0.00434982730075717, + -0.007738604210317135, + 0.00900805089622736, + 0.009388167411088943, + 0.018044790253043175, + 0.025360245257616043, + -0.0033547100611031055, + -0.007516271900385618, + 0.014587878249585629, + 0.00567664997652173, + -0.010966011323034763, + -0.006261168979108334, + 0.016237441450357437, + 0.0023022168315947056, + 0.002286079805344343, + -0.013906537555158138, + -0.0037007597275078297, + 0.013239540159702301, + -0.00885743834078312, + 0.000529832614120096, + -0.02283569611608982, + 0.013705721125006676, + 0.012651434168219566, + 0.02074146829545498, + -0.017471028491854668, + 0.006307787261903286, + -0.017227180302143097, + -0.003110861638560891, + 0.01635219343006611, + -0.011489568278193474, + 0.02439919486641884, + -0.006332889199256897, + 0.011647352017462254, + -0.022333655506372452, + -0.011181171052157879, + 0.005300119053572416, + -0.005450731609016657, + 0.005719682201743126, + 0.002630336442962289, + -0.0024313130415976048, + -0.01135329995304346, + -0.018374701961874962, + 0.07757251709699631, + -0.006081868894398212, + 0.013906537555158138, + -0.0009350514737889171, + 0.009911724366247654, + -0.02531721256673336, + -0.0011304888175800443, + 0.01135329995304346, + 0.01678251475095749, + 0.0009771870682016015, + -0.015735400840640068, + -0.006877962499856949, + 0.025302868336439133, + 0.01491779088973999, + -0.027067184448242188, + 0.008068516850471497, + 0.010879946872591972, + -0.0016208754386752844, + 0.020325491204857826, + 0.01639522612094879, + -0.01426513772457838, + -0.002965628169476986, + -0.007276009302586317, + 0.012020297348499298, + -0.013060239143669605, + 0.02921878919005394, + -0.023251673206686974, + -0.012859422713518143, + 0.032905206084251404, + 0.020583683624863625, + 0.003252508817240596, + -0.02457132376730442, + -0.013347120024263859, + -0.01259405817836523, + 0.011374816298484802, + 0.00560134369879961, + 0.01564933732151985, + 0.002895700978115201, + -0.0005818297504447401, + -0.01488910336047411, + 0.01367703266441822, + 0.0008149202330969274, + 0.014587878249585629, + 0.016481291502714157, + -0.014401406049728394, + 0.0005616584094241261, + -0.020339835435152054, + 0.00471918610855937, + -0.014200589619576931, + -0.0011269028764218092, + 0.01564933732151985, + -0.020210739225149155, + 0.017499716952443123, + 0.02296479232609272, + 0.022132838144898415, + -0.0033027129247784615, + 0.015462864190340042, + 0.002734330715611577, + 0.01924968883395195, + 0.0005921394913457334, + -0.0200529545545578, + 0.00037697903462685645, + 0.0059707025066018105, + -0.0091586634516716, + -0.016911610960960388, + 0.00704291881993413, + -0.004360585007816553, + -0.008376913145184517, + -0.004331897012889385, + -0.023007825016975403, + -0.02363896183669567, + -0.017557092010974884, + -0.008735514245927334, + -0.015319423750042915, + -0.01640957035124302, + 0.00756647577509284, + 0.0003881853190250695, + 0.03479861840605736, + 0.03095441684126854, + -0.002139053540304303, + 0.006275513209402561, + 0.0046510519459843636, + -0.026134822517633438, + -0.0024205551017075777, + 0.013791784644126892, + -0.011252891272306442, + 0.01387067697942257, + -0.04449518024921417, + 0.0015805328730493784, + -0.022003741934895515, + -0.02315126545727253, + -0.019350096583366394, + 0.0203111469745636, + 0.00857772957533598, + -0.006063938606530428, + -0.000739614071790129, + 0.002528135199099779, + 0.002280700718984008, + -0.0004769389925058931, + -0.0020601614378392696, + 0.011934232898056507, + 0.001832449808716774, + -0.01037073414772749, + -0.009739596396684647, + -0.02147301286458969, + -0.005863122176378965, + 0.03508549928665161, + -0.0019633390475064516, + -0.01975172944366932, + 0.012572542764246464, + 7.435362203978002e-5, + -0.0050849588587880135, + 0.005289360880851746, + -0.0022645636927336454, + -0.0015670852735638618, + -0.001979476073756814, + 0.01359096821397543, + -0.0011170413345098495, + -0.03284782916307449, + -0.01615137793123722, + -0.001704250113107264, + 0.009775456972420216, + -0.005375425331294537, + -0.02524549327790737, + -0.005332393106073141, + -0.007595163770020008, + -0.00887895468622446, + -0.015520240180194378, + -0.015634993091225624, + -0.012099189683794975, + 0.010507002472877502, + 0.007559303659945726, + 0.03175768256187439, + 0.01639522612094879, + 0.028128642588853836, + -0.007659711875021458, + -0.013268227688968182, + 0.0033403660636395216, + 0.021817270666360855, + -0.014465954154729843, + 0.03230275586247444, + -0.0056228600442409515, + 0.01924968883395195, + 0.023983217775821686, + 0.007709916215389967, + -0.002852668985724449, + 0.001501640654169023, + -0.019393129274249077, + 0.006773968227207661, + 0.003252508817240596, + 0.031241297721862793, + -0.030093776062130928, + 0.0082908496260643, + -0.017112428322434425, + -0.004891314078122377, + 0.01620875485241413, + -0.031241297721862793, + 0.0181882306933403, + -0.028013890609145164, + 0.0018010722706094384, + 0.014523330144584179, + 0.0016683900030329823, + -0.01513295155018568, + -0.0035160803236067295, + 0.005604929756373167, + 0.012931142933666706, + 0.011475224047899246, + 0.009280587546527386, + 0.008405601605772972, + 0.005296532995998859, + 0.021143101155757904, + 0.009610500186681747, + 0.0302085280418396, + -0.02457132376730442, + 0.006257582921534777, + -0.005325220990926027, + 0.0072580790147185326, + 0.001611910411156714, + -0.025288525968790054, + 0.011511084623634815, + -0.005683822091668844, + -0.007326213177293539, + 0.014803038910031319, + -0.010722162202000618, + -0.03465517610311508, + -0.021014004945755005, + 4.580564200296067e-5, + -0.0032220277935266495, + 0.0021103655453771353, + -0.008936330676078796, + -0.006354405544698238, + 0.01758578047156334, + 0.006745280232280493, + -0.004622363485395908, + -0.008018312975764275, + -0.003125205636024475, + 0.03887232020497322, + 0.012106361798942089, + 0.019909514114260674, + 0.00330450595356524, + -0.01055003423243761, + 0.000903225620277226, + 0.025962693616747856, + 0.0021247095428407192, + -0.019952546805143356, + -0.0015868083573877811, + -0.014437266625463963, + -0.01104490365833044, + -0.004310381133109331, + 0.0038477859925478697, + -0.034884680062532425, + -0.029433948919177055, + 0.013727236539125443, + 0.0053790113888680935, + -0.004331897012889385, + 0.0002747778198681772, + 0.006193034816533327, + 0.016567355021834373, + -3.2077958167064935e-5, + 0.01133178360760212, + 0.006666387896984816, + 0.011848168447613716, + 0.02302216924726963, + 0.018044790253043175, + -0.010628926567733288, + 0.0006728246808052063, + -0.0009103976772166789, + 0.018546830862760544, + 0.029319196939468384, + -0.010363562032580376, + 0.013225195929408073, + -0.01795872487127781, + 0.0031036895234137774, + 0.010406593792140484, + -0.0019346510525792837, + 0.027124561369419098, + 0.012235458008944988, + -0.015735400840640068, + 0.007032160647213459, + -0.020813187584280968, + -0.004819594323635101, + 0.0035375964362174273, + -0.005457903258502483, + -0.018030446022748947, + -0.011934232898056507, + -0.011812308803200722, + 0.003743791952729225, + 0.011095107533037663, + -0.009345135651528835, + -2.7105174012831412e-5, + -0.0034730483312159777, + 0.0033977420534938574, + 0.023524209856987, + -0.0041884565725922585, + 0.013081755489110947, + 0.0008857438806444407, + -0.006677146069705486, + 0.01863289438188076, + 0.005985046736896038, + -0.01775790937244892, + 0.008398429490625858, + 0.0024671731516718864, + -0.02128654159605503, + -0.013784612528979778, + 0.01906321570277214, + 0.008764202706515789, + -0.0299503356218338, + 0.0022394617553800344, + -0.009768284857273102, + -0.004909244365990162, + 0.007415863685309887, + -0.005855950526893139, + 0.009036739356815815, + 0.02754053846001625, + -0.002234082669019699, + 0.0007275113021023571, + 0.00611055688932538, + -0.02896059677004814, + 0.0064835017547011375, + 0.017858317121863365, + -0.0011537979589775205, + -0.010255981236696243, + 0.008455805480480194, + -0.003412086283788085, + 0.0022430478129535913, + -0.03431091830134392, + 0.024671731516718864, + 0.014846071600914001, + -0.020339835435152054, + 0.02524549327790737, + 0.0020816773176193237, + -0.011654524132609367, + -0.015606304630637169, + -0.0005011445609852672, + 0.006476329639554024, + 0.006720178294926882, + -0.004464579280465841, + -0.01777225360274315, + 0.018374701961874962, + -0.0347699299454689, + -0.0033027129247784615, + -0.0055116936564445496, + -0.018274294212460518, + -0.006813414394855499, + -0.015491552650928497, + 0.015405488200485706, + 0.028300771489739418, + 0.002465380122885108, + -0.00632930314168334, + 0.017126772552728653, + 0.01732758805155754, + -0.002594476565718651, + -0.0073190415278077126, + -0.0009117423905991018, + -0.027024153620004654, + -0.006895892322063446, + 0.011346127837896347, + 0.02462869882583618, + -0.007889216765761375, + 0.014860414899885654, + -0.005762713961303234, + -0.004202800802886486, + 0.003293748013675213, + -0.014387061819434166, + 0.01620875485241413, + -0.01808782108128071, + 0.018848055973649025, + 0.013763097114861012, + 0.022434063255786896, + -0.015534584410488605, + 0.019034527242183685, + 0.025345901027321815, + -0.015118607319891453, + -0.010356389917433262, + 0.008534697815775871, + 0.0035340103786438704, + -0.02643604762852192, + -0.010349217802286148, + 0.0055403816513717175, + -0.006777554284781218, + -0.0036613137926906347, + -0.004905658308416605, + -0.009337963536381721, + 0.0019776830449700356, + 0.01126723550260067, + -0.004923588130623102, + 0.010169917717576027, + -0.019278377294540405, + 0.02952001430094242, + 0.008154581300914288, + -0.015735400840640068, + 5.3678049880545586e-5, + 0.02240537479519844, + 0.01111662294715643, + -0.010320529341697693, + -0.0019740972202271223, + -1.2088768016838003e-5, + 0.017600124701857567, + -0.015692368149757385, + 0.012529510073363781, + -0.004177698865532875, + 0.015319423750042915, + 0.00471918610855937, + -0.007652540225535631, + 0.004242246970534325, + -0.011984436772763729, + -0.005798574071377516, + 0.008061344735324383, + -0.03402404114603996, + 0.0007606818689964712, + -0.0018575518624857068, + -0.022606192156672478, + -0.01874764822423458, + -0.0057232677936553955, + -0.017542749643325806, + 0.014487470500171185, + -0.0006934442208148539, + -0.006634113844484091, + -0.01579277776181698, + -0.008929158560931683, + 0.0312986746430397, + -0.0034174651373177767, + -0.0052176411263644695, + -0.01241475809365511, + -0.01770053245127201, + 0.016180066391825676, + 0.02612047828733921, + 0.008620762266218662, + -0.004672567825764418, + -0.003101896494626999, + -0.007380003575235605, + -0.005174608901143074, + -0.006863618269562721, + 0.005260672885924578, + -0.024528291076421738, + 0.03511418402194977, + -0.021831613034009933, + 0.0059958044439554214, + -0.012923970818519592, + 0.009524435736238956, + -0.0009780835825949907, + -0.00838408526033163, + 0.023409457877278328, + -0.009890208952128887, + 0.005852364469319582, + -0.010320529341697693, + -0.005855950526893139, + -0.0025227563455700874, + 0.027942171320319176, + -0.006444055587053299, + -0.005095716565847397, + 0.017241524532437325, + -0.004880556371062994, + -0.006476329639554024, + 0.0013537178747355938, + -0.022505782544612885, + 0.004023500252515078, + 0.00089963962091133, + 0.012450617738068104, + 0.0021247095428407192, + 0.014207761734724045, + 0.0014657805440947413, + -0.0019167209975421429, + 0.012479306198656559, + -0.001880861003883183, + -0.013913709670305252, + 0.017657501623034477, + -0.006096212659031153, + -0.0019884412176907063, + 0.019593944773077965, + 0.0027397098019719124, + 0.004500439390540123, + -0.012773359194397926, + 0.0007687503821216524, + -0.027927827090024948, + -0.0035393894650042057, + 0.02104269154369831, + -0.009918896481394768, + 0.0008740893099457026, + 0.007788808550685644, + -0.017485372722148895, + -0.002709228778257966, + -0.021243508905172348, + -0.0005939325201325119, + 0.0004339069128036499, + -0.006720178294926882, + 0.016050970181822777, + 0.017600124701857567, + -0.00786052830517292, + -0.003966124262660742, + -0.006017320789396763, + -0.0010480106575414538, + 0.006361577194184065, + 0.007903560996055603, + -0.011080763302743435, + -0.007953764870762825, + -0.003941022325307131, + -0.02290741540491581, + 0.017098084092140198, + -0.03717972710728645, + 0.01387067697942257, + 0.00981131661683321, + 0.0073190415278077126, + -0.02216152660548687, + 0.005866708233952522, + -0.0017123186262324452, + 0.013246712274849415, + -0.003948194440454245, + -0.010908635333180428, + -0.000555831182282418, + -0.014128869399428368, + 0.02451394684612751, + 0.006519361864775419, + -0.007509099785238504, + 0.011948577128350735, + 0.023882810026407242, + -0.011374816298484802, + 0.00320230470970273, + 0.0025890974793583155, + -0.0037366198375821114, + -0.017557092010974884, + 0.00479807797819376, + -0.0141073539853096, + 0.009524435736238956, + 0.015620648860931396, + -0.0013850954128429294, + 0.012378898449242115, + 0.017169803380966187, + -0.012386069633066654, + 0.0016621145186945796, + 0.009933240711688995, + 0.026321295648813248, + 0.015692368149757385, + -0.01566368155181408, + 0.014437266625463963, + 0.011754932813346386, + 0.015749745070934296, + 0.02110006846487522, + -0.0014630911173298955, + 0.0004159768868703395, + 0.03826987370848656, + 0.0037330337800085545, + -0.005508107598870993, + -0.011303096078336239, + 0.012945487163960934, + 0.003919506445527077, + -0.0021551905665546656, + 0.02662252075970173, + 0.01653866656124592, + 0.00039378844667226076, + 0.0073943473398685455, + -0.0073943473398685455, + -0.007458895444869995, + 0.007283181417733431, + 0.001803761813789606, + 0.03973296284675598, + -0.010083853267133236, + -0.004661809653043747, + 0.0027988788206130266, + 0.0001881533389678225, + 0.0030014882795512676, + -0.01639522612094879, + -7.412950071739033e-5, + 0.0019991991575807333, + 0.005604929756373167, + -0.004062946420162916, + 0.010994698852300644, + 0.005468661431223154, + -0.015032543800771236, + -0.011446535587310791, + -0.010872774757444859, + 0.025474997237324715, + 0.01141784805804491, + -0.026694240048527718, + 0.008391257375478745, + 0.023796746507287025, + 0.02208980731666088, + 0.008556214161217213, + 0.025546718388795853, + -0.0007642678683623672, + 0.027440128847956657, + -0.004156182520091534, + 0.014666770584881306, + -0.0006302408291958272, + -0.000785783922765404, + -0.006928166374564171, + 0.00189161894377321, + 0.015233360230922699, + -0.009137147106230259, + 0.013641173020005226, + -0.017055051401257515, + -0.0007423035567626357, + 0.019794762134552002, + 0.02036852203309536, + 0.012551026418805122, + -0.0026948845479637384, + 0.007946592755615711, + -0.0013187542790547013, + -0.014903447590768337, + 0.022878728806972504, + -0.004848282318562269, + -0.001236276119016111, + -0.001880861003883183, + -0.0141073539853096, + -0.01564933732151985, + 0.008061344735324383, + 0.012213941663503647, + -0.018790679052472115, + 0.02122916467487812, + 0.009868692606687546, + 0.002219738671556115, + -0.0027074357494711876, + -0.003261473961174488, + 0.004525541327893734, + -0.009796972386538982, + 0.01404997706413269, + -0.04647465795278549, + 0.017657501623034477, + 0.019837792962789536, + -0.003223820822313428, + 0.006956854835152626, + -0.007078778930008411, + 0.014552018605172634, + 0.0028616338968276978, + 0.009832832962274551, + 0.01633785106241703, + 0.009768284857273102, + 0.017686190083622932, + 0.022376686334609985, + -0.0203111469745636, + 0.02705284021794796, + 0.00037697903462685645, + 0.010349217802286148, + -0.01590752974152565, + 0.007229391019791365, + 0.008003968745470047, + 0.0026984706055372953, + 0.0036756577901542187, + -0.01734193228185177, + -0.030409343540668488, + -0.016682107001543045, + -0.01117399986833334, + 0.003324229037389159, + -0.0023972459603101015, + 0.017729220911860466, + -0.0013492353027686477, + 0.0034730483312159777, + -0.005006066523492336, + 0.002226910786703229, + 0.010578721761703491, + 0.00019207553123123944, + -0.025546718388795853, + 0.00866379402577877, + -0.029663454741239548, + 0.012149393558502197, + 0.007580820005387068, + 0.008391257375478745, + -0.0017750737024471164, + 0.02655079960823059, + 0.0030570714734494686, + 0.009122802875936031, + 0.006540877744555473, + 0.0011869685258716345, + 0.0067560384050011635, + -0.0041131507605314255, + -0.02227627858519554, + 0.021630797535181046, + 0.0021838785614818335, + 0.0233951136469841, + -0.018231261521577835, + 0.020956628024578094, + 0.008427117951214314, + -0.0007185462745837867, + -0.042687833309173584, + -0.0004625949659384787, + 0.0035250454675406218, + -0.02117178775370121, + 0.005343151278793812, + -0.0033726401161402464, + -0.025030331686139107, + -0.0009278794750571251, + 0.003772479947656393, + 0.0037007597275078297, + 0.025776222348213196, + 0.0038549581076949835, + -0.016423914581537247, + -0.005006066523492336, + -0.011367644183337688, + -0.0037509638350456953, + -0.004747874103486538, + -0.01241475809365511, + 0.01876199059188366, + -0.02167383022606373, + 0.018274294212460518, + 0.0008202992030419409, + -0.01024880912154913, + 0.007032160647213459, + -0.015448520891368389, + 0.03284782916307449, + 0.006773968227207661, + -0.002635715529322624, + -0.023552898317575455, + -0.007523444015532732, + 0.007268837187439203, + 0.005188953131437302, + -0.01458070706576109, + 0.002544272458180785, + 0.01609400101006031, + -0.021559076383709908, + 0.00018736888887360692, + 0.0012685501715168357, + 0.0006342750857584178, + -0.016639074310660362, + 0.000736028072424233, + 0.011862512677907944, + 0.01932140812277794, + 0.013268227688968182, + -0.036864157766103745, + 0.025977037847042084, + 0.008871782571077347, + -0.003768893890082836, + 0.007430207449942827, + 0.017729220911860466, + 0.023854121565818787, + -1.1759583685488906e-5, + 0.004371343180537224, + 0.007032160647213459, + -0.02903231605887413, + -0.0005405906122177839, + 0.0028795639518648386, + -0.02048327587544918, + 0.0003639797505456954, + -0.014222105965018272, + 0.0014290240360423923, + -0.006479915697127581, + 0.011661696247756481, + -0.021071380004286766, + -0.0048124222084879875, + -0.0037007597275078297, + -0.008749858476221561, + -0.01476000715047121, + 0.001748178619891405, + -0.0011107658501714468, + -0.0012174495495855808, + -0.01445878203958273, + -0.014035633765161037, + 0.008247816935181618, + 0.010191433131694794, + 0.01715545915067196, + -0.008333881385624409, + 0.02012467384338379, + -0.016438258811831474, + 0.010356389917433262, + 0.014121697284281254, + 0.008685310371220112, + -0.03887232020497322, + -0.010815398767590523, + 0.0017912107286974788, + -0.01639522612094879, + -0.002517377259209752, + -0.008778546005487442, + 0.0075306156650185585, + 0.0012120705796405673, + 0.005364667158573866, + -0.005823676008731127, + -0.009273415431380272, + 0.0020942282862961292, + 0.019766073673963547, + -0.016423914581537247, + 0.0003274473128840327, + 0.035315003246068954, + 0.006802656222134829, + 0.009194523096084595, + 0.01269446685910225, + -0.014846071600914001, + -0.0031072755809873343, + 0.0003494115953799337, + 0.005361081101000309, + -0.004253005143254995, + 0.02908969298005104, + -0.024155346676707268, + -0.013662688434123993, + 0.0009610500419512391, + -0.0027504677418619394, + 0.0233951136469841, + -0.009976273402571678, + -0.014179074205458164, + 0.012013125233352184, + 0.01213504932820797, + 0.030552783980965614, + -0.005414871498942375, + -0.0006813414511270821, + 0.0269954651594162, + -0.015075575560331345, + 0.013691376894712448, + -0.01067913044244051, + -0.012292833998799324, + -0.027655290439724922, + 0.01689726673066616, + 7.25045902072452e-5, + -0.0058595361188054085, + 0.004303209017962217, + -0.0020619542337954044, + -0.0013519248459488153, + -0.01018426101654768, + 0.012472134083509445, + -0.008764202706515789, + -0.01408583763986826, + -0.0032399578485637903, + 0.005949186626821756, + 0.0003207235422451049, + -0.006842102389782667, + -0.010435282252728939, + -0.02896059677004814, + 0.00036823813570663333, + -0.028487244620919228, + -0.029104037210345268, + 0.00944554340094328, + 0.009337963536381721, + -0.004123908467590809, + 0.0005383493844419718, + -0.01572105661034584, + -0.021516045555472374, + 0.009933240711688995, + -0.01359096821397543, + 0.010700646787881851, + 0.008047000505030155, + 0.02729669027030468, + 0.002248426666483283, + 0.023352080956101418, + 0.015505896881222725, + -0.004016328603029251, + -0.0283438041806221, + 0.01280921883881092, + 0.01231434941291809, + -0.02074146829545498, + -0.009173007681965828, + -0.007767292205244303, + -0.008348225615918636, + -0.006024492438882589, + 0.015147295780479908, + -0.0017087325686588883, + -0.0044072032906115055, + -0.0077242604456841946, + -0.01949353702366352, + -0.0012542061740532517, + -0.0020745054353028536, + 0.011668868362903595, + 0.012923970818519592, + -0.003324229037389159, + 0.013139131478965282, + 0.005726853851228952, + 0.0005410388694144785, + 0.005572655703872442, + 0.01011971291154623, + -0.00391592038795352, + -0.01678251475095749, + -0.021214820444583893, + -0.004694083705544472, + 0.0023201468866318464, + -0.013748752884566784, + 0.0019525811076164246, + 0.024413539096713066, + -0.013174992054700851, + -0.031728994101285934, + -0.00359855848364532, + -0.00035949726589024067, + -0.0013106857659295201, + 0.005052684806287289, + -0.026206543669104576, + -0.015678025782108307, + -0.017600124701857567, + -0.011568460613489151, + 0.012378898449242115, + 0.004507611505687237, + 0.003177202772349119, + 0.012543854303658009, + -0.004482509568333626, + 0.02406928315758705, + 0.0032005116809159517, + 0.004464579280465841, + -0.025116397067904472, + 0.010169917717576027, + 0.011676040478050709, + 0.003761722007766366, + -0.007810324430465698, + 0.006275513209402561, + -0.011833825148642063, + 0.00034246372524648905, + -0.012637090869247913, + 0.006132072769105434, + 0.016007937490940094, + -0.0014003359246999025, + 0.00523198489099741, + 0.00179927924182266, + -0.006297029089182615, + -0.012464961968362331, + -0.015634993091225624, + 0.014387061819434166, + -0.00838408526033163, + 0.011740588583052158, + 0.01932140812277794, + -0.006031664554029703, + 0.00214263959787786, + 0.004970206413418055, + -0.018044790253043175, + -0.016180066391825676, + -0.010047992691397667, + -0.011425020173192024, + -0.02358158491551876, + -0.004708427935838699, + -0.003612902481108904, + 0.011224203743040562, + 0.0014648840297013521, + -0.01633785106241703, + 0.013268227688968182, + -0.0051602646708488464, + -0.0008821578812785447, + -0.010736506432294846, + -0.0058093322440981865, + 0.013038723729550838, + -0.008090033195912838, + 0.005138748791068792, + 0.003801167942583561, + -0.0071827732026577, + -0.0005056270747445524, + 0.018216919153928757, + 0.009639188647270203, + -0.009761112742125988, + 0.02470041997730732, + 0.006860032211989164, + -0.014666770584881306, + 0.00783184077590704, + 0.0020225082989782095, + -0.014243622310459614, + -0.002347041852772236, + 0.018403390422463417, + 0.016137033700942993, + -0.02011032961308956, + 0.007523444015532732, + 0.01665341854095459, + 0.0017311450792476535, + -0.002377523109316826, + 0.013963913545012474, + -0.005529623478651047, + 0.01148239616304636, + -0.023725025355815887, + 0.001170831499621272, + -0.017557092010974884, + 0.005554725881665945, + -0.029979022219777107, + -0.021386949345469475, + 0.025059020146727562, + -0.0008436082862317562, + -0.00037877203430980444, + 0.017557092010974884, + -0.006626941729336977, + -0.0067560384050011635, + 0.0029566632583737373, + -0.001479228143580258, + -0.0041884565725922585, + -0.004557815380394459, + 0.0015213637379929423, + 0.03304864466190338, + 0.030552783980965614, + 0.01293831504881382, + -0.00464387983083725, + -0.013634000904858112, + -0.014860414899885654, + 0.002497654175385833, + 0.011604320257902145, + -0.01788700558245182, + 0.006106970831751823, + -0.011661696247756481, + -0.013196507468819618, + 0.003098310437053442, + 0.0050239963456988335, + 0.008003968745470047, + -0.003559112548828125, + 0.027999546378850937, + -0.005393355153501034, + -0.004016328603029251, + -0.0026841266080737114, + -0.010363562032580376, + 0.0065121897496283054, + -0.007839012891054153, + -0.001048907171934843, + -0.00944554340094328, + 0.018274294212460518, + -0.017729220911860466, + 0.007509099785238504, + 0.0023936601355671883, + -0.012902455404400826, + 0.01874764822423458, + 0.002185671590268612, + 0.014666770584881306, + -0.009216039441525936, + 0.00400557043030858, + -0.018733303993940353, + -0.001992027275264263, + 0.00032363718491978943, + -0.005171022843569517, + 0.013024379499256611, + -0.005278603173792362, + 0.006379507482051849, + -0.010908635333180428, + -0.011503912508487701, + -0.022147182375192642, + 0.002196429530158639, + -0.008405601605772972, + 0.006132072769105434, + 0.017657501623034477, + -0.004952276591211557, + 0.016007937490940094, + 0.015319423750042915, + 0.019593944773077965, + -0.03322077542543411, + 0.005780644249171019, + 0.002510205376893282, + 0.00748758390545845, + -0.029118381440639496, + 0.008219129405915737, + -0.0006378610851243138, + -0.004342655185610056, + 0.0007324420148506761, + -0.002300423802807927, + -0.008993706665933132, + 0.010098197497427464, + -0.00502758240327239, + -0.003521459409967065, + -0.009115630760788918, + -0.014960823580622673, + -0.017499716952443123, + 0.0038262701127678156, + -0.018532486632466316, + -0.018173886463046074, + 0.008176096715033054, + -0.005425629206001759, + -0.006472743581980467, + -0.007523444015532732, + 0.010385077446699142, + 0.008592073805630207, + -0.016194410622119904, + 0.009883036836981773, + 0.019723040983080864, + -0.014465954154729843, + 0.026780303567647934, + 0.01200595311820507, + -0.031040480360388756, + -0.0013339947909116745, + 0.0032560948748141527, + -0.007659711875021458, + -0.014401406049728394, + 0.021200476214289665, + -0.027813075110316277, + 0.008441462181508541, + 0.026837680488824844, + 0.010471141897141933, + -0.0017123186262324452, + -0.006451227702200413, + -0.020167706534266472, + 0.0126299187541008, + 0.008276505395770073, + 0.002610613591969013, + 0.008613590151071548, + 0.021186131983995438, + -0.009588983841240406, + -0.01243627443909645, + -0.03402404114603996, + -0.006569565739482641, + -0.00035210110945627093, + 0.003238164819777012, + -0.0015392936766147614, + -0.010442454367876053, + -0.013655516318976879, + 0.01055003423243761, + 0.005264258943498135, + 0.016495633870363235, + -0.0002734330773819238, + -0.0017141116550192237, + -6.561273039551452e-5, + -0.012142221443355083, + 0.0149751678109169, + -0.006472743581980467, + -0.004830352030694485, + -0.02451394684612751, + 0.006279099266976118, + -0.016696451231837273, + 0.014874759130179882, + 0.0134977325797081, + -0.007867700420320034, + 0.011317439377307892, + -0.004403617233037949, + -0.011066419072449207, + -0.004647465888410807, + 0.01620875485241413, + -0.004765803925693035, + 0.007301111239939928, + -0.013626828789710999, + 0.03399535268545151, + 0.015118607319891453, + 0.006289857439696789, + -0.004665395710617304, + -0.00844863336533308, + 0.0009121906477957964, + -0.00011542462016222998, + 0.0004944207612425089, + 0.0032794037833809853, + -0.011288751848042011, + -0.01024880912154913, + -0.0009189144475385547, + 0.0031700306572020054, + -0.0034873923286795616, + -0.009653531946241856, + -0.007903560996055603, + -0.010062336921691895, + 0.007846184074878693, + -0.0004150803724769503, + -0.015003855340182781, + -0.011625836603343487, + 0.008161753416061401, + 0.003890818217769265, + -0.020755812525749207, + 0.010478314012289047, + 0.0018593448912724853, + -0.010714990086853504, + 0.01801610179245472, + 0.0010901462519541383, + -0.006867204327136278, + -0.013404496014118195, + 0.019636977463960648, + 0.00786052830517292, + 0.002196429530158639, + 0.025431964546442032, + -0.00036891052150167525, + -0.0038477859925478697, + 0.01432968582957983, + -0.0007342350436374545, + 0.015807121992111206, + 0.007035746704787016, + 0.0012739291414618492, + 0.00502758240327239, + -0.0020816773176193237, + -0.011224203743040562, + 0.019450504332780838, + 0.0009103976772166789, + -0.006038836669176817, + -0.01876199059188366, + 0.004582917783409357, + -0.018905431032180786, + -0.012866594828665257, + 0.004819594323635101, + -0.0384993776679039, + -0.0008140237187035382, + 0.013619656674563885, + 0.010915806517004967, + -0.02035417966544628, + -0.00783184077590704, + 0.030409343540668488, + 0.011647352017462254, + -0.020339835435152054, + -0.0026285434141755104, + -0.005117232911288738, + -0.030495408922433853, + 0.005490177311003208, + -0.002716400660574436, + -0.00798962451517582, + -0.00019700628763530403, + 0.0009942206088453531, + 0.00907259900122881, + -0.00465822359547019, + 0.0028168088756501675, + 0.016509978100657463, + -0.010686302557587624, + -0.0049486905336380005, + -0.012013125233352184, + 0.00660901190713048, + 0.002558616455644369, + 0.004991722293198109, + -0.004715600050985813, + 0.022046774625778198, + -0.014035633765161037, + 0.0034820132423192263, + 0.029921647161245346, + 0.0004522851959336549, + -0.021516045555472374, + 0.003263266757130623, + 0.0055152797140181065, + 0.01615137793123722, + 0.014308170415461063, + -0.004668981768190861, + -0.022175870835781097, + -0.008348225615918636, + -0.010564378462731838, + 0.024800827726721764, + 0.02977820672094822, + 0.008326709270477295, + 0.014903447590768337, + 0.011582803912460804, + 0.018417734652757645, + -0.005407699383795261, + 0.002384694991633296, + -0.012271317653357983, + 0.0007216840167529881, + 0.004256590735167265, + 0.013547936454415321, + -0.02574753388762474, + -0.0019382371101528406, + -0.0005325220990926027, + -0.012034641578793526, + -0.014415750280022621, + -0.032101940363645554, + -0.005898982286453247, + -0.0028311528731137514, + 0.0018414148362353444, + 0.00509213050827384, + 0.01092297863215208, + -0.002373937051743269, + 0.00258371839299798, + -0.0049737924709916115, + -0.009969101287424564, + 0.00966070406138897, + -0.016696451231837273, + -0.0181882306933403, + 0.0054471455514431, + -0.01701202057301998, + -0.01665341854095459, + -0.010270325466990471, + 0.008957847021520138, + 0.018245605751872063, + 0.01715545915067196, + -0.01110945176333189, + -0.010205777361989021, + 0.0030337623320519924, + -0.006985542830079794, + -0.0019328580237925053, + -0.005264258943498135, + -0.011310268193483353, + -0.007996796630322933, + -0.0029100452084094286, + -0.0036971736699342728, + -0.01046396978199482, + 0.014573534950613976, + 0.015950562432408333, + -0.016624730080366135, + -0.006150003056973219, + 0.00399481225758791, + 0.026091791689395905, + 0.011130967177450657, + 0.01930706389248371, + -0.011310268193483353, + 0.017800942063331604, + -0.015276391990482807, + 0.022018086165189743, + -0.013469044119119644, + 0.007595163770020008, + 0.001211174065247178, + -0.012902455404400826, + 0.009165835566818714, + -0.005059856455773115, + -0.007014230825006962, + 0.008176096715033054, + -0.003073208499699831, + -0.016624730080366135, + -0.010420938022434711, + -0.020511962473392487, + 0.013289744034409523, + -0.005852364469319582, + 0.03359371796250343, + -0.0036971736699342728, + 0.009359479881823063, + -0.008161753416061401, + -0.010879946872591972, + 0.008161753416061401, + 0.00959615595638752, + 0.004199214745312929, + 0.013454699888825417, + 0.014408578164875507, + 0.004052188713103533, + -0.003948194440454245, + -0.00509213050827384, + 0.0039015761576592922, + -0.003958952147513628, + 0.01814519800245762, + -0.004360585007816553, + -0.009768284857273102, + 0.0058093322440981865, + -0.02642170339822769, + -0.010657614096999168, + -0.02630695141851902, + 0.03402404114603996, + -0.010786710307002068, + 0.002133674453943968, + -0.004826765973120928, + 0.016323506832122803, + -0.0004469061968848109, + 0.0007302007870748639, + -0.004984550643712282, + 0.0037509638350456953, + 0.0030624503269791603, + 0.005838020239025354, + -0.02438485063612461, + 0.03250357136130333, + 0.024470916017889977, + -0.0026410946156829596, + 0.003779651829972863, + 0.02667989581823349, + -0.02574753388762474, + 0.011023387312889099, + 0.02649342454969883, + -0.0005544864106923342, + 0.002377523109316826, + 0.0072580790147185326, + -0.010585893876850605, + 0.001983062131330371, + -0.017356276512145996, + -0.0011089728213846684, + -0.007060848642140627, + 0.004181284923106432, + 0.0022394617553800344, + -0.004317553248256445, + -0.0015787398442626, + -0.014595050364732742, + -0.01534811221063137, + 0.007064434699714184, + 0.025833597406744957, + 0.05453600361943245, + 0.02698112092912197, + 0.0151042640209198, + 0.010062336921691895, + 0.025776222348213196, + -0.028774123638868332, + 0.004213558975607157, + -0.0035680774599313736, + -0.035946138203144073, + -0.03322077542543411, + 0.0012613781727850437, + 0.002700263634324074, + 0.020282458513975143, + 0.006436883471906185, + -0.00953160785138607, + -0.00428527919575572, + -0.0066448720172047615, + -0.009689392521977425, + -0.006867204327136278, + 0.004339069128036499, + -0.008914814330637455, + 0.000559417181648314, + -0.012866594828665257, + 0.01207050122320652, + 0.014035633765161037, + 0.010148401372134686, + -0.007451723795384169, + -0.010162745602428913, + -0.02036852203309536, + 0.006537291686981916, + 0.023968873545527458, + -0.015520240180194378, + -0.018704615533351898, + -0.0014971581986173987, + -0.008219129405915737, + 0.016882924363017082, + 0.009359479881823063, + 0.005468661431223154, + -0.0030265904497355223, + -0.026852024719119072, + -0.015305080451071262, + -0.01894846372306347, + 0.003657727735117078, + -0.017169803380966187, + -0.004339069128036499, + -0.005389769095927477, + 0.006928166374564171, + -0.015247704461216927, + 0.007021402940154076, + -0.002373937051743269, + 0.0015115021960809827, + -0.0028616338968276978, + -0.02277831919491291, + -0.010198605246841908, + -0.013963913545012474, + 0.014401406049728394, + 0.029376573860645294, + -0.005475833546370268, + -0.01863289438188076, + -0.008613590151071548, + -0.02055499516427517, + 0.00523198489099741, + 0.010621754452586174, + 0.009818488731980324, + -0.013332775793969631, + 0.0219176784157753, + 0.0035824214573949575, + -0.00037697903462685645, + -0.00756647577509284, + -0.018001757562160492, + 0.005884638521820307, + -0.014387061819434166, + -0.015276391990482807, + -0.0007934041786938906, + -0.022132838144898415, + -0.013949569314718246, + -0.025059020146727562, + -0.001888033002614975, + -0.006275513209402561, + 0.029491325840353966, + -0.0023864880204200745, + 0.020325491204857826, + -0.006637699902057648, + -0.002156983595341444, + -0.011317439377307892, + 0.004331897012889385, + -0.005192538723349571, + 0.005396941211074591, + -0.015893185511231422, + -0.005798574071377516, + -0.013268227688968182, + -0.017227180302143097, + -0.0312986746430397, + -0.005264258943498135, + 0.02042589895427227, + -0.008900471031665802, + -0.008219129405915737, + -0.009718080051243305, + -0.001715008052997291, + 0.01652432233095169, + 0.0030050743371248245, + 0.016811203211545944, + -0.01458070706576109, + 0.018604207783937454, + -0.008068516850471497, + -0.03789692744612694, + 0.010657614096999168, + 0.010456797666847706, + 0.00508854491636157, + 0.009560296311974525, + -0.002800671849399805, + -0.007365659344941378, + 0.0091586634516716, + 0.012751842848956585, + -0.013519247993826866, + 0.018805023282766342, + -0.0012945487396791577, + 0.01293831504881382, + -0.00863510649651289, + 0.011661696247756481, + -0.006271927151829004, + 0.003028383245691657, + 0.02210414968430996, + 0.001880861003883183, + 0.007810324430465698, + 0.006548049859702587, + 0.006885134615004063, + 0.017930038273334503, + -0.010836915113031864, + -0.007308283355087042, + 0.01678251475095749, + -0.008319537155330181, + -0.0025855114217847586, + 0.001773280673660338, + -0.015003855340182781, + -0.020024266093969345, + 0.019163623452186584, + -0.004859040025621653, + 0.01757143624126911, + -0.004539885558187962, + -0.016251785680651665, + 0.010815398767590523, + 0.032274067401885986, + 0.003569870488718152, + -0.010772367008030415, + 0.00690306443721056, + -0.021458668634295464, + 0.02531721256673336, + 0.003962538205087185, + 0.0035680774599313736, + 0.0037186897825449705, + -0.0034246372524648905, + -0.017743565142154694, + 0.013813300989568233, + -0.010478314012289047, + 0.019421815872192383, + -0.005777058191597462, + 0.02203243039548397, + -0.014250793494284153, + 0.003297333838418126, + -0.0010964218527078629, + 0.00733697135001421, + 0.01120268739759922, + 0.013017207384109497, + 0.0005943807773292065, + -0.0019292720826342702, + 0.0015168811660259962, + 0.015591960400342941, + -0.006271927151829004, + -0.016452603042125702, + -0.006476329639554024, + -0.0007750258664600551, + -0.007293939124792814, + -0.008219129405915737, + -0.0015670852735638618, + -0.011310268193483353, + -0.009954757057130337, + -0.02117178775370121, + -0.0417124405503273, + -0.00756647577509284, + 0.013684204779565334, + 0.016667762771248817, + 0.02186030149459839, + 0.0011941405246034265, + -0.0035160803236067295, + -0.0038334419950842857, + -0.005873880349099636, + 0.005615687929093838, + 0.01293831504881382, + -0.0028508759569376707, + 0.0018575518624857068, + 0.01633785106241703, + -0.021028347313404083, + 0.007064434699714184, + -0.007035746704787016, + 0.007537787780165672, + 0.011159655638039112, + 0.011561288498342037, + -0.003743791952729225, + -0.0024062111042439938, + -0.000292707874905318, + -0.028874533250927925, + -0.005052684806287289, + -0.03304864466190338 + ], + "36817ce8-f818-4583-a780-4cd4d2273a7f": [ + -0.01809593290090561, + 0.00026505079586058855, + -0.009041223675012589, + -0.01574966311454773, + -0.04603540524840355, + -0.011792021803557873, + 0.02498641051352024, + 0.04511847347021103, + -0.005552161019295454, + 0.024608850479125977, + -0.012250487692654133, + 0.024487491697072983, + -0.03756726533174515, + 0.007841121405363083, + -0.01001883577555418, + -0.004679052624851465, + -0.052534837275743484, + 0.020078124478459358, + -0.018122900277376175, + -0.004635228775441647, + 0.07842469960451126, + -0.0352749340236187, + -0.006843282841145992, + 0.00324297440238297, + -0.02177714742720127, + -0.01866227388381958, + 0.015385587699711323, + -0.015115901827812195, + -0.017246421426534653, + -0.021089447662234306, + 0.007321975659579039, + 0.014670919626951218, + 0.017516108229756355, + -0.02156139723956585, + 0.011191969737410545, + -0.005548790097236633, + -0.017044156789779663, + 0.03559855371713638, + -0.014495624229311943, + 0.016841892153024673, + -0.048408642411231995, + 0.007079258095473051, + 0.012715696357190609, + 0.0016661540139466524, + -0.022208644077181816, + 0.002803049050271511, + 0.05509685352444649, + -0.017974574118852615, + 0.0044026244431734085, + -0.003290169406682253, + 0.007524240296334028, + 0.024716723710298538, + -0.0017394748283550143, + -0.009270457550883293, + -0.0018203806830570102, + 0.0044026244431734085, + -0.0007327874773181975, + 0.07961131632328033, + 0.01574966311454773, + -0.036839112639427185, + 0.004277894739061594, + -0.01111106388270855, + 0.007510755676776171, + -0.0007201459957286716, + -0.019444363191723824, + -0.007375912740826607, + 0.012324651703238487, + -0.0033491633366793394, + -0.02339526265859604, + 0.0133831687271595, + 0.007962480187416077, + 0.027696754783391953, + -0.03956294059753418, + 0.010207615792751312, + -0.022289549931883812, + -0.0014074239879846573, + 0.01840607076883316, + -0.05668800324201584, + 0.008960317820310593, + 0.017570044845342636, + -0.0016787955537438393, + 0.00810406543314457, + 0.009937929920852184, + -0.01697673462331295, + 0.022060316056013107, + 0.015547399409115314, + -0.019511783495545387, + -0.046116311103105545, + -0.05857580527663231, + -0.040911369025707245, + 0.023489652201533318, + 0.015331650152802467, + -0.011947090737521648, + -0.008346782065927982, + -0.01460349839180708, + -0.014010189101099968, + 0.04781533405184746, + 0.018271228298544884, + -0.029800305142998695, + -0.01937694102525711, + -0.019444363191723824, + 0.020684918388724327, + -0.05857580527663231, + 0.0037385225296020508, + 0.013491043820977211, + -0.014414718374609947, + -0.017988057807087898, + 0.002194570144638419, + -0.04220586270093918, + 0.02197941206395626, + 0.010639113374054432, + -0.022343486547470093, + -0.008259134367108345, + 0.0057915071956813335, + 0.024393100291490555, + -0.07659082859754562, + -0.010490786284208298, + -0.030366646125912666, + -0.01901286467909813, + -0.034843433648347855, + 0.05782068520784378, + 0.040614716708660126, + 0.024393100291490555, + -0.015641789883375168, + 0.004004837479442358, + 0.007625372614711523, + -0.00313510000705719, + 0.0053330413065850735, + 0.007645599078387022, + 0.00900077074766159, + 0.01743520237505436, + -0.022087285295128822, + -0.01992979645729065, + 0.00958733819425106, + -0.006998352240771055, + 0.013807924464344978, + 0.029153060168027878, + 0.05455748364329338, + -0.03899659961462021, + 0.040506839752197266, + -0.019538752734661102, + -0.008474883623421192, + -0.02034781128168106, + -0.01677446998655796, + 0.006556741427630186, + 0.0007804039632901549, + -0.03689304739236832, + 0.03344106674194336, + -0.0018338649533689022, + 0.004257668275386095, + -0.027211319655179977, + 0.00321937701664865, + 0.0313914529979229, + 0.002056356053799391, + 0.003354219952598214, + 0.0029176657553762197, + 0.01600586622953415, + 0.03594914823770523, + -0.01067956630140543, + 0.009398558177053928, + -0.01086160447448492, + -0.05658013001084328, + 0.02982727438211441, + -0.005002675577998161, + -0.007510755676776171, + 0.024972926825284958, + 0.016841892153024673, + 0.01006603054702282, + -0.07330065965652466, + 0.02207380160689354, + 0.05134822055697441, + -0.04120802506804466, + 0.02319299802184105, + -0.01591147482395172, + -0.0020664692856371403, + -0.017704887315630913, + 0.006998352240771055, + -0.008441172540187836, + 0.011427945457398891, + -0.038565102964639664, + -0.017273390665650368, + -0.02947668358683586, + -0.026226965710520744, + 0.021992895752191544, + -0.03327925503253937, + 0.03772907331585884, + 0.013113482855260372, + -0.002314243232831359, + -0.012001028284430504, + 0.03983262553811073, + -0.005936463829129934, + 0.014347296208143234, + 0.009809829294681549, + 0.044228509068489075, + -0.012998866848647594, + 0.001541424193419516, + 0.007119711022824049, + 0.02003767155110836, + 0.03743242099881172, + 0.014886668883264065, + -0.01855439879000187, + -0.058144308626651764, + -0.07270735502243042, + 0.022154707461595535, + -0.039994437247514725, + 0.000685171049553901, + -0.007005094550549984, + -0.022815437987446785, + 0.01941739395260811, + -0.014522592537105083, + 0.03891569375991821, + -0.010504270903766155, + 0.010382912121713161, + 0.0053330413065850735, + -0.029287902638316154, + 0.000675479241181165, + -0.010416623204946518, + 0.02014554664492607, + 0.011839216575026512, + 0.006641018204391003, + -0.024608850479125977, + 0.018689241260290146, + 0.04220586270093918, + -0.02498641051352024, + -0.043365512043237686, + -0.015790116041898727, + -0.023368293419480324, + 0.02640226110816002, + -0.01941739395260811, + -0.013120225630700588, + 0.030582396313548088, + -0.00438576890155673, + 0.02034781128168106, + -0.019916312769055367, + -0.011805505491793156, + 0.011400977149605751, + -0.0023850358556956053, + 0.014819246716797352, + 0.017354296520352364, + -0.03794482350349426, + 0.0385381318628788, + 0.03689304739236832, + 0.023826761171221733, + 0.026132576167583466, + 0.021332165226340294, + 0.028182189911603928, + 0.011987543664872646, + 0.0450645349919796, + 0.028586719185113907, + -0.026860728859901428, + -0.0011857757344841957, + 0.02931487187743187, + 0.02568759396672249, + -0.009182808920741081, + -0.022505298256874084, + 0.006165696773678064, + 0.0332522876560688, + -0.003809315152466297, + -0.028128253296017647, + 0.008346782065927982, + 0.008576015941798687, + -0.010275037959218025, + 0.016936281695961952, + -0.025620171800255775, + 0.05798249691724777, + -0.01835213415324688, + 0.006432011723518372, + -0.0365963950753212, + -0.01860833540558815, + 0.01779927685856819, + -0.06148841232061386, + 0.00748378736898303, + -0.001079586916603148, + 0.012223519384860992, + -0.026429230347275734, + -0.01203473936766386, + -0.0039947242476046085, + 0.04150468111038208, + -0.009324394166469574, + -0.010585176758468151, + -0.010564950294792652, + 0.02452794462442398, + 0.03573339805006981, + 0.053101178258657455, + -0.0005916237132623792, + -0.022828921675682068, + -0.0035194025840610266, + 0.019242098554968834, + -0.026388777419924736, + -0.007645599078387022, + 0.01542604062706232, + -0.01840607076883316, + 0.05110550299286842, + -0.0011554360389709473, + 0.018109416589140892, + -0.0027457408141344786, + -0.017718372866511345, + -0.0287485308945179, + -0.028532780706882477, + 0.021426554769277573, + -0.017974574118852615, + -0.0030103703029453754, + 0.04358126223087311, + -0.009910961613059044, + 0.010484044440090656, + -0.01580360159277916, + 0.016491301357746124, + -0.02636180818080902, + -0.05008069425821304, + 0.03023180365562439, + 0.050754908472299576, + -0.003923931624740362, + -0.010639113374054432, + -0.022154707461595535, + -0.017677919939160347, + 0.024500975385308266, + 0.00017803491209633648, + 0.012223519384860992, + 0.0068466542288661, + -0.018419556319713593, + 0.007625372614711523, + -0.006887106690555811, + -0.04207101836800575, + 0.019565721973776817, + 0.03470859304070473, + -0.035922177135944366, + 0.028074314817786217, + 0.002708659041672945, + -0.014441686682403088, + -0.026847243309020996, + 0.0025974134914577007, + -0.03516705706715584, + -0.0270764771848917, + 0.001615587854757905, + 0.00032530876342207193, + -0.03786391764879227, + -0.03481646627187729, + -0.026766337454319, + -0.009479464031755924, + 0.00958733819425106, + -0.009081676602363586, + 0.0346546545624733, + -0.023894181475043297, + -0.008326555602252483, + 0.006641018204391003, + -0.0011318385368213058, + -0.016396909952163696, + 0.013733760453760624, + -0.027696754783391953, + -0.011886411346495152, + 0.0006346049485728145, + -0.014360780827701092, + 0.04306885972619057, + -0.007348944433033466, + 0.007922027260065079, + -0.00646235141903162, + -0.027966441586613655, + -0.0224918145686388, + 0.005339783150702715, + 0.022559236735105515, + -0.007827636785805225, + -0.01611373946070671, + -0.03376469016075134, + -0.004298121202737093, + 0.018581368029117584, + 0.044174570590257645, + 0.025835921987891197, + 0.0039003342390060425, + -0.0018456637626513839, + 0.02966546267271042, + -0.032254450023174286, + 0.045253314077854156, + 0.02473020926117897, + 0.008299587294459343, + -0.037297576665878296, + -0.01600586622953415, + 0.01080766785889864, + 0.015453008934855461, + -0.031067829579114914, + 0.03344106674194336, + -0.00790180079638958, + 0.01123916544020176, + 0.005693746265023947, + -0.019026348367333412, + 0.04401275888085365, + -0.0015801915433257818, + -0.01146839838474989, + -0.02330087311565876, + -0.010470559820532799, + -0.038565102964639664, + -0.052130308002233505, + 0.0018776889191940427, + -0.06170416250824928, + 0.0073826550506055355, + -0.03109479881823063, + 0.027089960873126984, + 0.00564655102789402, + 0.0003154062433168292, + 0.022707562893629074, + 0.018931958824396133, + 0.007220843341201544, + -0.002015903126448393, + -0.010726762004196644, + 0.003610421670600772, + 0.004982449114322662, + 0.003096332773566246, + -0.00022733688820153475, + -0.0016712106298655272, + 0.012129128910601139, + -0.0028553009033203125, + 0.006391558796167374, + 0.0025148221757262945, + 0.023233450949192047, + -0.014765310101211071, + 0.05560925975441933, + -0.011030158028006554, + 0.014994543045759201, + -0.00032741567702032626, + -0.04145074263215065, + -0.025862889364361763, + 0.052885428071022034, + 0.06364589929580688, + -0.019336488097906113, + 0.01576314866542816, + -0.04212495684623718, + 0.013727018609642982, + 0.014509107917547226, + 0.020981572568416595, + -0.018540915101766586, + -0.0005077682435512543, + -0.039023566991090775, + 0.00974240805953741, + -0.025660624727606773, + -0.033468034118413925, + 0.02920699678361416, + -0.0077265044674277306, + 0.018581368029117584, + -0.005127405747771263, + -0.005144260823726654, + 0.0018894877284765244, + 0.014563045464456081, + 0.01703067310154438, + 0.011374007910490036, + 0.008353524841368198, + -0.009998609311878681, + -0.03654245659708977, + -0.015372103080153465, + 0.022410908713936806, + 0.013801182620227337, + 0.02931487187743187, + 0.004813895560801029, + 0.03910447284579277, + -0.03279381990432739, + 0.00042517686961218715, + -0.015520431101322174, + -0.019053317606449127, + -0.016787955537438393, + 0.019700564444065094, + 0.02615954540669918, + 0.01855439879000187, + -0.02584940567612648, + 0.00439588213339448, + 0.031040862202644348, + -0.024972926825284958, + -0.02502686344087124, + -0.05663406476378441, + -0.0346546545624733, + 0.014711372554302216, + -0.016707049682736397, + -0.00708600040525198, + -0.008549046702682972, + 0.017421716824173927, + -0.027669785544276237, + 0.0037958307657390833, + -0.02447400614619255, + 0.009681728668510914, + -0.010706535540521145, + -0.00838723499327898, + 0.0009944671764969826, + -0.0038463969249278307, + -0.01890498958528042, + -0.009863766841590405, + -0.019714048132300377, + 0.012027996592223644, + 0.05239999666810036, + -0.025377454236149788, + -0.011684146709740162, + 0.0004135888011660427, + 0.04161255434155464, + -0.012439267709851265, + 0.035463713109493256, + -0.008211939595639706, + 0.01022110041230917, + -0.0051746005192399025, + -0.015830568969249725, + -0.05072794109582901, + -0.019403910264372826, + -0.023988572880625725, + -0.007557950913906097, + -0.038511164486408234, + 0.04414760321378708, + -0.0029901438392698765, + 0.023233450949192047, + 0.020226452499628067, + 0.012250487692654133, + -0.008447914384305477, + -0.01210890244692564, + 0.04099227488040924, + 0.01098970603197813, + -0.012864023447036743, + 0.003259829943999648, + -0.0030997036956250668, + -0.004871204029768705, + 0.008164744824171066, + -0.00871760118752718, + 0.019565721973776817, + -0.02080627717077732, + 0.014212453737854958, + -0.0059499479830265045, + -0.00524876406416297, + 0.02172320894896984, + 0.00115290773101151, + 0.0027861937414854765, + 0.00897380243986845, + 0.007753473240882158, + 0.0069005913101136684, + -0.015924960374832153, + 0.02885640412569046, + 0.024865051731467247, + 0.013282036408782005, + -0.032658979296684265, + 0.007254553958773613, + -0.005255506373941898, + 0.007409623358398676, + 0.018271228298544884, + -0.010524497367441654, + -0.006600565277040005, + -0.016491301357746124, + -0.008677148260176182, + 0.03624580055475235, + -0.010079515166580677, + 0.00602748291566968, + -0.007018578704446554, + 0.011893154121935368, + 0.02733267843723297, + 0.036839112639427185, + -0.036272771656513214, + 0.023462684825062752, + 0.004041919484734535, + 0.019403910264372826, + -0.015291198156774044, + -0.001194203388877213, + -0.0035800819750875235, + 0.019053317606449127, + 0.014778793789446354, + -0.039482034742832184, + 0.026887696236371994, + -0.018433040007948875, + -0.059007301926612854, + 0.016680080443620682, + 0.0041531650349497795, + -0.01004580408334732, + -0.0016804810147732496, + 0.0027305709663778543, + -0.03921234980225563, + -0.003280056407675147, + -0.027669785544276237, + 0.011272875592112541, + -0.013214615173637867, + 0.025862889364361763, + 0.02390766702592373, + 0.010261553339660168, + 0.027561912313103676, + -0.00606793537735939, + -0.024150384590029716, + 0.015884507447481155, + 0.01846000924706459, + 0.021332165226340294, + -0.006634276360273361, + -0.003583453129976988, + 0.03166113793849945, + -0.022599689662456512, + 0.008002933114767075, + -0.021224290132522583, + -0.00037039691233076155, + 0.020577043294906616, + -0.06639669835567474, + -0.04120802506804466, + -0.0052689905278384686, + 0.016653111204504967, + -0.003657616674900055, + 0.024757176637649536, + 0.025148222222924232, + 0.007888316176831722, + -0.006125243846327066, + 0.026631494984030724, + -0.002556960564106703, + 0.02473020926117897, + -0.008151260204613209, + -0.0017327327514067292, + -0.007038805168122053, + 0.013234841637313366, + 0.023166028782725334, + -0.0023580670822411776, + -0.00838723499327898, + 0.022006379440426826, + -0.02335480973124504, + 0.008434430696070194, + -0.011077353730797768, + -0.009101903066039085, + -0.007874831557273865, + 0.0038126863073557615, + 0.028532780706882477, + -0.00869737472385168, + 0.0365154892206192, + 0.0073826550506055355, + 0.02053659036755562, + 0.040210187435150146, + 0.014563045464456081, + -0.039239317178726196, + 0.025916827842593193, + -0.053505707532167435, + 0.057227373123168945, + -0.00606793537735939, + 0.029395777732133865, + -0.010153679177165031, + -0.017246421426534653, + -0.015938444063067436, + -0.01759701408445835, + 0.011232422664761543, + 0.02038826420903206, + 0.020482653751969337, + 0.025404423475265503, + -0.02370540238916874, + 0.03074420616030693, + 0.014576530084013939, + 0.0024591994006186724, + 0.057065561413764954, + -0.01460349839180708, + 0.016855375841259956, + -0.015560884028673172, + 0.006297168787568808, + -0.0048071532510221004, + 0.033980440348386765, + -0.01595192775130272, + -0.00797596387565136, + -0.03430406376719475, + 0.009189551696181297, + 0.02431219443678856, + -0.008077096194028854, + -0.04792320728302002, + 0.006614049896597862, + 0.03988656401634216, + 0.003917189314961433, + -0.014077610336244106, + -0.0346546545624733, + -0.005302701611071825, + 0.00960756465792656, + 0.03136448562145233, + -0.02656407281756401, + 0.0332522876560688, + 0.01596541330218315, + -0.02141307108104229, + 0.0011166686890646815, + 0.00920303538441658, + 0.0014251221437007189, + 0.0012388702016323805, + 0.0026429230347275734, + 0.006829798687249422, + 0.03354893997311592, + -0.005444286856800318, + 0.009668244048953056, + 0.010902057401835918, + 0.022977249696850777, + -0.004540838301181793, + 0.0010686308378353715, + -0.0003177238395437598, + -0.021804114803671837, + 0.015102417208254337, + -0.009135614149272442, + -0.03257807344198227, + -0.0017217766726389527, + -0.021224290132522583, + 0.0031603830866515636, + 0.026941634714603424, + -0.02273453213274479, + 0.007456818595528603, + 0.049271635711193085, + -0.01860833540558815, + -0.008077096194028854, + 0.01779927685856819, + 0.009142355993390083, + -0.005804991815239191, + 0.011515593156218529, + -0.015237260609865189, + 0.006502804346382618, + -0.0008575172978453338, + -0.006226376164704561, + 0.02212773822247982, + -0.024339163675904274, + -0.010544723831117153, + -0.01728687435388565, + -0.017098093405365944, + -0.011481883004307747, + -0.0009877250995486975, + 0.020887183025479317, + -0.011225680820643902, + 0.004038548097014427, + 0.024177351966500282, + -0.0046959081664681435, + 0.022855890914797783, + 0.00563306687399745, + -0.0018911733059212565, + 0.016639627516269684, + 0.004800411406904459, + -0.0025957280304282904, + -0.0061791809275746346, + 0.005612840410321951, + -0.0011486939620226622, + 0.02630787156522274, + -0.022963766008615494, + 0.04031806066632271, + 0.009897476993501186, + -0.05755099654197693, + -0.05393720418214798, + 0.021534429863095284, + 0.021642303094267845, + 0.006307282019406557, + -0.013605659827589989, + 0.002280532382428646, + 0.036326706409454346, + 0.013187646865844727, + -0.01040313858538866, + 0.01272243820130825, + -0.004719505552202463, + -0.015156354755163193, + -0.03624580055475235, + 0.002784508280456066, + 0.04298795387148857, + -0.03176901489496231, + -0.006937672849744558, + -0.03656942397356033, + 0.023718886077404022, + 0.02462233416736126, + 0.02727874182164669, + -0.0036070505157113075, + -0.011117806658148766, + -0.014549560844898224, + 0.016612660139799118, + 0.03379165753722191, + 0.02667194791138172, + -0.034277092665433884, + 0.05380236357450485, + 0.0208602137863636, + -0.0287485308945179, + -0.004679052624851465, + 0.00709948455914855, + 0.0005073468200862408, + 0.0008975488017313182, + 0.04536119103431702, + -0.013666339218616486, + 0.0077669573947787285, + 0.015385587699711323, + -0.014819246716797352, + 0.002740684198215604, + 0.0052892169915139675, + -0.011818990111351013, + 0.030609363690018654, + 0.04714111611247063, + -0.025835921987891197, + 0.0037789754569530487, + -0.00523865083232522, + 0.017772309482097626, + 0.021628819406032562, + 0.012027996592223644, + -0.01086160447448492, + 0.04031806066632271, + -0.008899638429284096, + -0.03762120008468628, + 0.00707251625135541, + -0.009688470512628555, + -0.0489480122923851, + -0.008029901422560215, + -0.03600308299064636, + 0.00748378736898303, + -0.007578177377581596, + 0.03430406376719475, + 0.04212495684623718, + -0.01712506264448166, + -0.024608850479125977, + 0.005771281197667122, + 0.0027272000443190336, + -0.0034300691913813353, + 0.016801439225673676, + 0.005535305477678776, + -0.012075192295014858, + 0.019053317606449127, + -0.01814986951649189, + -0.004028434865176678, + 0.011171743273735046, + 0.010369427502155304, + -0.043770041316747665, + 0.024204321205615997, + 0.04584662616252899, + -0.006098275072872639, + -0.01210890244692564, + 0.0313105471432209, + -0.003426698036491871, + 0.016342973336577415, + 0.002145689446479082, + -0.02742706798017025, + 0.002214796608313918, + -0.004318347666412592, + 0.013646112754940987, + -0.009843540377914906, + -0.011731342412531376, + -0.009870508685708046, + -0.030043022707104683, + 0.023894181475043297, + -0.02462233416736126, + 0.017138546332716942, + 0.026577558368444443, + 0.02115686796605587, + 0.011738084256649017, + -0.004665568470954895, + -0.009883993305265903, + -0.0033221947960555553, + -0.015088933520019054, + 0.007598403841257095, + 0.009580596350133419, + 0.0009498004801571369, + -0.009297425858676434, + -0.012351620011031628, + 0.013457332737743855, + 0.010113226249814034, + 0.03028574027121067, + -0.024649303406476974, + -0.007328717969357967, + -0.04420153796672821, + 0.02370540238916874, + -0.0012270713923498988, + -0.02344919927418232, + -0.01580360159277916, + -0.00042180580203421414, + -0.004079001024365425, + -0.010625629685819149, + -0.0006089005037210882, + 0.019093770533800125, + 0.03446587547659874, + -0.0016332860104739666, + 0.0024827970191836357, + -0.01017390564084053, + -0.010059288702905178, + -0.030043022707104683, + -0.05102459713816643, + 0.03894266113638878, + -0.012816828675568104, + 0.013619144447147846, + 0.0009236746118403971, + 0.006236489396542311, + -0.011340297758579254, + 0.00981657113879919, + 0.009897476993501186, + -0.023975087329745293, + 0.006523030810058117, + -0.010854862630367279, + -0.024298710748553276, + 0.04352732375264168, + -0.005575758405029774, + 0.01020087394863367, + 0.004328460898250341, + -0.0018153240671381354, + 0.0040351771749556065, + -0.013349458575248718, + -0.03551764786243439, + -0.02187153697013855, + -0.018392587080597878, + 0.016545237973332405, + -0.019039833918213844, + 0.004884688183665276, + -0.007618630304932594, + 0.026483166962862015, + 0.019700564444065094, + -0.0018574624555185437, + -0.06321440637111664, + 0.027750691398978233, + -0.004864461719989777, + -0.0006990767433308065, + 0.002851929748430848, + -0.013497785665094852, + 0.011252649128437042, + 0.00520156929269433, + -0.011461656540632248, + -0.023988572880625725, + -0.002437287475913763, + -0.05471929535269737, + -0.015776632353663445, + -0.00502290204167366, + 0.0053128148429095745, + 0.010349201038479805, + 0.0022839035373181105, + -0.03937416151165962, + -0.019309518858790398, + 0.023826761171221733, + -0.010167162865400314, + -0.04018321633338928, + 0.00626008678227663, + 0.028829436749219894, + 0.0029294644482433796, + 0.05598681792616844, + 0.022087285295128822, + 0.017165515571832657, + -0.013666339218616486, + -0.02304467186331749, + 0.033063508570194244, + 0.014886668883264065, + 0.02126474305987358, + -0.002219852991402149, + -0.02040174789726734, + 0.004436335060745478, + -0.010254811495542526, + -0.002036129590123892, + 0.021116415038704872, + 0.014441686682403088, + -0.018365617841482162, + -0.027723724022507668, + 0.001371184946037829, + 0.030609363690018654, + 0.0030895904637873173, + 0.026078639551997185, + 0.0018220662605017424, + 0.018433040007948875, + 0.02258620411157608, + -0.011502109467983246, + 0.0029294644482433796, + -0.033306222409009933, + 0.007915284484624863, + -0.01576314866542816, + -0.03244322910904884, + -0.03834935277700424, + -0.01866227388381958, + 0.005606098100543022, + 0.019862376153469086, + -0.022343486547470093, + 0.007868089713156223, + -0.01692279800772667, + -0.03257807344198227, + 0.022100768983364105, + 0.017961088567972183, + -0.024838082492351532, + 0.00730174919590354, + 0.03727060928940773, + 0.002410318935289979, + 0.017192484810948372, + 0.03069026954472065, + 0.014225938357412815, + -0.002863728441298008, + 0.026011217385530472, + 0.011259391903877258, + -0.005703859496861696, + 0.0024945957120507956, + 0.005336412228643894, + -0.021318679675459862, + -0.0009245174005627632, + -0.028829436749219894, + 0.00027073948876932263, + -0.0372166708111763, + 0.006978125777095556, + -0.003352534491568804, + 0.0075174979865550995, + -0.02075234055519104, + -0.005488110706210136, + 0.0091288723051548, + -0.022451361641287804, + -0.007780442014336586, + 0.0014849586877971888, + -0.02896427921950817, + -0.003403100650757551, + 0.0022586204577237368, + -0.010571692138910294, + 0.03233535587787628, + 0.013464074581861496, + 5.4885320423636585e-5, + 0.009944671764969826, + -0.02247833088040352, + 0.012297682464122772, + -0.010025577619671822, + 0.0039205607026815414, + 0.018743179738521576, + -0.019808439537882805, + 0.02614605985581875, + -0.03384559601545334, + -0.008164744824171066, + -0.03508615121245384, + -0.007915284484624863, + -0.03400740772485733, + -0.04217889532446861, + 0.0027120301965624094, + 0.011023416183888912, + -0.009081676602363586, + -0.017300358042120934, + 0.011583014391362667, + -0.021655788645148277, + 0.029180027544498444, + -0.0034519811160862446, + 0.003421641420572996, + -0.005575758405029774, + -0.018271228298544884, + 0.038160573691129684, + 0.01019413210451603, + 0.019457846879959106, + -0.007706278003752232, + -0.0077669573947787285, + -0.015358619391918182, + 0.04128893092274666, + -0.006138728000223637, + 0.015156354755163193, + -0.05436870455741882, + -0.01246623694896698, + 0.033872563391923904, + -0.018325164914131165, + -0.02713041380047798, + -0.005252135451883078, + 0.003853139001876116, + -0.011313328519463539, + -0.001975450199097395, + 0.008481625467538834, + 0.007375912740826607, + 0.01831168122589588, + 0.017866699025034904, + -0.034897372126579285, + 0.011400977149605751, + 0.012405557557940483, + -0.008569273166358471, + -0.00794899556785822, + -0.02722480520606041, + 0.01460349839180708, + -0.04862438887357712, + -0.02344919927418232, + 0.005306072533130646, + 0.022249097004532814, + -0.00028295963420532644, + -0.008265877142548561, + -0.006165696773678064, + -0.0017015503253787756, + -0.014927121810615063, + -0.011792021803557873, + 0.020630981773138046, + -0.012196550145745277, + 0.028478844091296196, + 0.02247833088040352, + -0.017516108229756355, + 0.01723293773829937, + -0.009769376367330551, + -0.006094904150813818, + -0.001126781920902431, + -0.008852443657815456, + -0.0008790079155005515, + 0.006903962232172489, + 0.02555275149643421, + -0.008232166059315205, + 0.02227606624364853, + 0.03710879758000374, + -0.033926501870155334, + 0.03608398884534836, + -0.012843796983361244, + -0.015817085281014442, + 0.028829436749219894, + 0.012762891128659248, + -0.01246623694896698, + 0.0008334983722306788, + 0.027494490146636963, + -0.006432011723518372, + 0.026537105441093445, + 0.012762891128659248, + 0.023975087329745293, + -0.013774213381111622, + 0.011744826100766659, + 0.009506432339549065, + -0.0036137928254902363, + -0.0077265044674277306, + 0.018567882478237152, + -0.013416879810392857, + 1.5999439710867591e-6, + -0.02498641051352024, + -0.0346546545624733, + 0.030474521219730377, + -0.002626067725941539, + -0.0009860395221039653, + 0.029692431911826134, + -0.0224918145686388, + 0.0208602137863636, + -0.007739989086985588, + -0.016639627516269684, + -0.005906124133616686, + -0.006115130614489317, + -0.020563559606671333, + 0.05938486382365227, + 0.008043386042118073, + -0.0012127443915233016, + 0.002816533436998725, + -0.013147193938493729, + -0.005707230418920517, + 0.011515593156218529, + 0.010059288702905178, + 0.015533914789557457, + 0.010039062239229679, + -0.029503650963306427, + 0.0033913017250597477, + 0.03171507641673088, + 0.034277092665433884, + -0.0003832491347566247, + 0.004648712929338217, + 0.020374778658151627, + -0.001018907525576651, + -0.0327129140496254, + -0.010308748111128807, + 0.0031216158531606197, + -0.004473417066037655, + 0.0024052623193711042, + -0.012594337575137615, + -0.00815800204873085, + -0.021858053281903267, + 0.005531934555619955, + -0.006182552315294743, + -0.05261574313044548, + 0.0023361551575362682, + 0.027966441586613655, + 0.004763329401612282, + 0.021332165226340294, + 0.014104579575359821, + -0.019997218623757362, + 0.009189551696181297, + 0.012783117592334747, + -0.018594851717352867, + -0.002353010466322303, + -0.00838723499327898, + -0.01083463616669178, + -0.02009160816669464, + -0.012196550145745277, + -0.0007989448495209217, + -0.0026918037328869104, + 0.009917703457176685, + 0.011057127267122269, + 0.006796088069677353, + -0.013875345699489117, + -0.0037688622251152992, + -0.005386978387832642, + 0.01840607076883316, + -0.02682027593255043, + 0.005424060393124819, + -0.0037115539889782667, + 0.0013619144447147846, + -0.012344878166913986, + -0.03573339805006981, + -0.039994437247514725, + -0.003406471572816372, + 0.006850025150924921, + 0.017988057807087898, + -0.011812248267233372, + -0.015790116041898727, + -0.032254450023174286, + 0.01083463616669178, + 0.0006594666047021747, + -0.0019400538876652718, + -0.013059546239674091, + 0.003529515815898776, + -0.0035800819750875235, + -0.0008351838914677501, + -0.013342715799808502, + 0.01866227388381958, + -0.0035126605071127415, + 0.015358619391918182, + 0.035059183835983276, + -0.015924960374832153, + -0.0041531650349497795, + -0.019201645627617836, + -0.004230699501931667, + 0.002740684198215604, + 0.010618886910378933, + 0.027521459385752678, + -0.00027242503711022437, + -0.015520431101322174, + -0.016235098242759705, + -0.004685794934630394, + -0.0068769934587180614, + -0.018284711986780167, + -0.012169581837952137, + 0.005569016560912132, + -0.0006464036996476352, + -0.025579718872904778, + -0.012634790502488613, + -0.02436613291501999, + -0.02682027593255043, + -0.010234585031867027, + -0.0010357629507780075, + -0.01192686427384615, + -0.01129310205578804, + -0.0005419003427959979, + 0.0008840645314194262, + -0.028182189911603928, + 0.012297682464122772, + 0.013929283246397972, + -0.004446448292583227, + 0.017826246097683907, + -0.013140452094376087, + -0.018837569281458855, + -0.0011057127267122269, + -0.005747683346271515, + 0.0024153755512088537, + -0.004662197083234787, + -0.0017125062877312303, + 0.00709948455914855, + -0.013052803464233875, + 0.001784984371624887, + 0.03624580055475235, + 0.0006868566269986331, + -0.011596499010920525, + 0.005687003955245018, + -0.021682756021618843, + -0.003475578734651208, + 0.014751825481653214, + -0.02869459241628647, + -0.01006603054702282, + 0.015142870135605335, + -0.004891430493444204, + -0.0032682574819773436, + 0.015223775990307331, + 0.009580596350133419, + 0.008629952557384968, + 0.013052803464233875, + 0.024999894201755524, + -0.00192825507838279, + 0.02106247842311859, + 0.004962223116308451, + -0.01109083741903305, + 0.012203292921185493, + -0.022869374603033066, + 0.006634276360273361, + 0.007139937486499548, + 0.013430364429950714, + 0.006024111527949572, + 0.01805547997355461, + -0.015560884028673172, + 0.003076106309890747, + 0.019390424713492393, + -0.01506196428090334, + 0.013875345699489117, + 0.0012531972024589777, + -0.012439267709851265, + 0.00026821118080988526, + 0.015183323062956333, + -0.012526916339993477, + -0.014050642028450966, + -0.021709725260734558, + 0.008555789478123188, + 0.00794899556785822, + -0.0006708439905196428, + -0.018567882478237152, + -0.02269407920539379, + -0.009877250529825687, + 0.009061450138688087, + 0.005026273429393768, + -0.007584919687360525, + -0.01641039550304413, + 0.008913123048841953, + 0.01785321533679962, + -0.02834400162100792, + 0.006698326673358679, + -0.01779927685856819, + 0.0028468731325119734, + 0.018999380990862846, + -0.021170353516936302, + 0.014482139609754086, + -0.00560946948826313, + 0.033414099365472794, + 0.014590013772249222, + -0.01692279800772667, + -0.03389953449368477, + 0.02146700769662857, + 0.012432525865733624, + 0.012237003073096275, + -0.004200359806418419, + -0.0179476048797369, + -0.01785321533679962, + -0.022195160388946533, + -0.0036913275253027678, + 0.01697673462331295, + -0.02599773369729519, + -0.011259391903877258, + 0.02309860847890377, + -0.0011638638097792864, + 0.00503301527351141, + -0.016504785045981407, + -0.02003767155110836, + 0.0019788211211562157, + -0.01129310205578804, + 0.015439525246620178, + 0.010436849668622017, + 0.012843796983361244, + -0.002492910251021385, + 0.015506946481764317, + -0.008137775585055351, + 0.0006868566269986331, + -0.011178486049175262, + 0.0030508232302963734, + -0.012843796983361244, + -0.01312696747481823, + 0.008805248886346817, + -0.0273866169154644, + 0.0046756817027926445, + 0.027507973834872246, + -3.339471368235536e-5, + 0.009459237568080425, + 0.01309999916702509, + -0.007659083232283592, + -0.008690631948411465, + -0.004729618784040213, + -0.018109416589140892, + 0.009782860986888409, + 0.01708460971713066, + -0.004972335882484913, + -0.010854862630367279, + 0.02038826420903206, + 0.002117035211995244, + 0.034438904374837875, + -0.0004466674872674048, + 0.005858928896486759, + 0.0009262029197998345, + -0.005804991815239191, + -0.011259391903877258, + 0.002897439291700721, + -0.01183247473090887, + -0.0046520838513970375, + 0.0025974134914577007, + -0.003114873543381691, + -0.009573853574693203, + -0.005960061214864254, + -0.02462233416736126, + 0.0062432317063212395, + -0.011171743273735046, + -0.006539886351674795, + -0.0002467205631546676, + -0.01574966311454773, + 0.010288521647453308, + -0.0024120043963193893, + -0.002673262730240822, + -0.006432011723518372, + 0.005124034360051155, + 0.01047730166465044, + -0.0015650216955691576, + -0.003934044856578112, + 0.03371075168251991, + -0.0042441836558282375, + -0.004621744155883789, + -0.02390766702592373, + -0.012681985273957253, + -0.01672053337097168, + -0.008892896585166454, + 0.013443848118185997, + -0.010537981055676937, + -0.019619658589363098, + 0.03290169686079025, + 0.023058155551552773, + 0.011117806658148766, + 0.00301374145783484, + -0.017475655302405357, + -0.003944158088415861, + 0.011643693782389164, + -0.003087905002757907, + -0.013464074581861496, + 0.01596541330218315, + -0.008218681439757347, + -0.010814409703016281, + -0.0029783451464027166, + 0.02777766063809395, + 0.0044026244431734085, + 0.009297425858676434, + 0.009236746467649937, + 0.007490529213100672, + 0.002246821764856577, + -0.01651826873421669, + 0.015884507447481155, + -0.014576530084013939, + 0.028991248458623886, + 0.0075174979865550995, + -0.0063173952512443066, + -0.004854348488152027, + 0.016477815806865692, + 0.00414305180311203, + 0.0015911475056782365, + -0.003381188493221998, + 0.0013939396012574434, + 0.0006607307586818933, + 0.03762120008468628, + 0.005531934555619955, + -0.007342202123254538, + -0.01022110041230917, + -0.009674985893070698, + -0.000868894683662802, + 0.012998866848647594, + 0.025431392714381218, + -0.007996190339326859, + 0.022060316056013107, + -0.012223519384860992, + -0.011347039602696896, + -0.04166649281978607, + 0.005869042128324509, + 0.009978382848203182, + -0.0021406328305602074, + -0.011630210094153881, + -0.00808383896946907, + 0.0030710496939718723, + 0.008825475350022316, + 0.013073029927909374, + 0.006344363559037447, + 0.011684146709740162, + -0.022397425025701523, + 0.008414204232394695, + -0.0515100322663784, + -0.0029614896047860384, + -0.016235098242759705, + 0.010666082613170147, + -0.01646433211863041, + 0.023368293419480324, + 0.005535305477678776, + 0.0028890115208923817, + 0.006833169609308243, + 0.007578177377581596, + 0.02656407281756401, + 0.017934121191501617, + 0.009250231087207794, + 0.02080627717077732, + -0.00029981500119902194, + 0.004847606178373098, + -0.00689721992239356, + 0.013477559201419353, + -0.010005351155996323, + 0.017462169751524925, + 0.018729694187641144, + 0.008623210713267326, + -0.015668757259845734, + -0.007962480187416077, + 0.00301542691886425, + 0.01565527357161045, + -0.005794878583401442, + -0.015992380678653717, + -0.012392072938382626, + -0.018689241260290146, + 0.01881060004234314, + -0.000983511214144528, + 0.0010079515632241964, + -0.0025215642526745796, + -0.0027322566602379084, + 0.0021625447552651167, + 0.00022228028683457524, + -0.011771795339882374, + -0.03217354416847229, + -0.011792021803557873, + 0.02504034712910652, + -0.02804734744131565, + -0.0049251411110162735, + 0.006755635142326355, + -0.009769376367330551, + -0.007335459813475609, + -0.006688213441520929, + 0.013403395190834999, + -0.008987287059426308, + 0.010079515166580677, + 0.011347039602696896, + 0.003937415778636932, + 0.0303396787494421, + -0.020523106679320335, + 0.03171507641673088, + 0.00021701297373510897, + -0.01251343172043562, + -0.024865051731467247, + -0.03327925503253937, + -0.012931444682180882, + 0.00627020001411438, + -0.01229094062000513, + -0.00940530002117157, + -0.037702105939388275, + 0.004277894739061594, + -0.002968231914564967, + 0.03869994357228279, + 0.010005351155996323, + 0.011097580194473267, + 0.0028418165165930986, + 0.029045185074210167, + -0.026793306693434715, + -0.006519659887999296, + 0.02238393947482109, + 0.009310910478234291, + 0.030258772894740105, + -0.01912073977291584, + 0.025431392714381218, + 0.02233000285923481, + -0.014684404246509075, + -0.019026348367333412, + 0.003332308027893305, + 0.01172459963709116, + 0.01519680768251419, + 0.012938187457621098, + -0.007895058020949364, + -0.002309186616912484, + 0.0050195311196148396, + -0.023125575855374336, + -0.0104503333568573, + -0.030932987108826637, + -0.004935254342854023, + -0.0020597269758582115, + -0.01067956630140543, + 0.0063342503271996975, + -0.013551723212003708, + 0.011313328519463539, + -0.0010087942937389016, + 0.00771302031353116, + -0.01846000924706459, + -0.0018979153828695416, + 0.007295006886124611, + 0.024959441274404526, + 0.014981058426201344, + 0.030016055330634117, + -0.01485969964414835, + 0.006944415159523487, + -0.009492947719991207, + 0.003055879846215248, + 0.021885020658373833, + 0.012412299402058125, + 0.01147514022886753, + 0.03085208125412464, + -0.029287902638316154, + -0.014104579575359821, + -0.0009203035733662546, + 0.021224290132522583, + -0.001643399242311716, + 0.017192484810948372, + -0.012331393547356129, + -0.022815437987446785, + -0.007780442014336586, + -0.004648712929338217, + 0.007045547477900982, + 0.006047708913683891, + 0.017610497772693634, + 0.018985895439982414, + -0.0034047861117869616, + -0.004230699501931667, + 0.014778793789446354, + 0.01460349839180708, + -0.0022636770736426115, + -0.007146679796278477, + 0.017866699025034904, + -0.002125462982803583, + 0.006641018204391003, + -0.013861862011253834, + -0.011515593156218529, + 0.01417200081050396, + -0.009708696976304054, + -0.003549742279574275, + -0.03303653746843338, + 0.01605980284512043, + 0.01020087394863367, + 0.01728687435388565, + -0.023894181475043297, + 0.014724857173860073, + -0.00869737472385168, + -0.011960575357079506, + 0.011144774965941906, + -0.007032063324004412, + 0.01083463616669178, + -0.0008806934347376227, + 0.014131547883152962, + -0.026685431599617004, + -0.005943205673247576, + 0.016558721661567688, + 0.003008684841915965, + 0.0013155621709302068, + 0.00019373148097656667, + -0.0077871838584542274, + -0.009007513523101807, + -0.026173029094934464, + 0.04751867800951004, + -0.008468140847980976, + 0.015938444063067436, + 0.007214101031422615, + -0.004476787988096476, + -0.045253314077854156, + -0.008434430696070194, + 0.011913380585610867, + 0.01565527357161045, + 0.003455352270975709, + -0.011023416183888912, + -0.003280056407675147, + 0.028775498270988464, + 0.008798507042229176, + -0.02064446546137333, + -0.00040495043504051864, + 0.006984868086874485, + -0.011306586675345898, + 0.006425269413739443, + 0.0076523409225046635, + 0.002767652738839388, + 0.0009582281345501542, + 0.011306586675345898, + 0.009594080038368702, + -0.009600822813808918, + 0.01651826873421669, + -0.0346546545624733, + -0.006823056377470493, + 0.02427174150943756, + 0.019619658589363098, + 0.004480158910155296, + -0.02931487187743187, + -0.006944415159523487, + -0.009115387685596943, + 0.012870765291154385, + 0.0020260163582861423, + 0.014037157408893108, + -0.001411637756973505, + -0.0037958307657390833, + -0.0007795611745677888, + 0.005420689005404711, + 0.0014546189922839403, + 0.015992380678653717, + 0.016235098242759705, + -0.017421716824173927, + 0.0074770450592041016, + -0.023058155551552773, + 0.0016526696272194386, + -0.016558721661567688, + -0.0033036537934094667, + 0.021183837205171585, + -0.01901286467909813, + 0.027723724022507668, + 0.01846000924706459, + 0.019444363191723824, + -0.004038548097014427, + 0.017610497772693634, + 0.009567111730575562, + 0.011765052564442158, + 0.0019400538876652718, + -0.03996746987104416, + -0.010895315557718277, + 0.008629952557384968, + -0.01047730166465044, + -0.021696241572499275, + 0.006573596969246864, + -0.00983679760247469, + 0.008225424215197563, + 0.001059360452927649, + -0.01860833540558815, + -0.025835921987891197, + -0.011670663021504879, + -0.013612402603030205, + -0.01994328200817108, + -0.01932300440967083, + 0.010935768485069275, + 0.004827379714697599, + 0.04023715481162071, + 0.029099121689796448, + -0.0018793744966387749, + 0.006196036469191313, + 0.006789345759898424, + -0.02942274510860443, + -0.0024120043963193893, + 0.010686309076845646, + -0.01763746701180935, + 0.015547399409115314, + -0.03023180365562439, + 0.014657435938715935, + -0.024231288582086563, + -0.011212196201086044, + -0.014549560844898224, + 0.02033432573080063, + 0.014549560844898224, + -0.010072773322463036, + -0.0012540400493890047, + 0.0007791398093104362, + 0.011994286440312862, + -0.002673262730240822, + -0.010841378010809422, + 0.005572387482970953, + 0.004459932446479797, + -0.012365104630589485, + -0.0008857500506564975, + -0.016450848430395126, + -0.002036129590123892, + 0.030555427074432373, + -0.005953318905085325, + -0.02009160816669464, + 0.007598403841257095, + -0.0054476577788591385, + -0.013443848118185997, + 0.014077610336244106, + -0.004500385373830795, + 0.009803087450563908, + 0.0007521712104789913, + 0.027494490146636963, + 0.0035261448938399553, + -0.024972926825284958, + -0.008690631948411465, + -0.008737827651202679, + 0.020280389115214348, + 0.007241069804877043, + -0.02100854180753231, + -0.004999304655939341, + -0.002063098130747676, + -0.015156354755163193, + -0.016235098242759705, + 0.0004786927020177245, + -0.01417200081050396, + 0.014185485430061817, + 0.0074972715228796005, + 0.031634170562028885, + 0.023368293419480324, + 0.027211319655179977, + 0.001575977774336934, + -0.0319308266043663, + 0.0091490987688303, + 0.006273571401834488, + -0.027966441586613655, + 0.012803344056010246, + -0.00666798697784543, + 0.0016863804776221514, + 0.01506196428090334, + 0.014778793789446354, + 0.0041497936472296715, + 0.0034368112683296204, + -0.02013206109404564, + 0.003910447470843792, + 0.0008334983722306788, + 0.024136899039149284, + -0.034034375101327896, + 0.003259829943999648, + -0.009877250529825687, + -0.008151260204613209, + 0.006711810827255249, + -0.03023180365562439, + 0.006944415159523487, + -0.01901286467909813, + -0.002659778343513608, + 0.01129310205578804, + -0.0036946984473615885, + -0.004854348488152027, + 0.003489062888547778, + -0.004362171515822411, + 0.006937672849744558, + 0.005053241737186909, + 0.01231116708368063, + 0.0028603575192391872, + 0.0014369208365678787, + 0.026469683274626732, + 0.01866227388381958, + 0.02401554025709629, + -0.029800305142998695, + 0.011131290346384048, + -0.01506196428090334, + -0.0009489576914347708, + 0.006978125777095556, + -0.013073029927909374, + -0.00020068432786501944, + -0.005987029988318682, + -0.012392072938382626, + 0.019147707149386406, + -0.009115387685596943, + -0.025970764458179474, + -0.013234841637313366, + -0.0026496651116758585, + -0.0014428202994167805, + 0.007092742715030909, + -0.005410575773566961, + -0.008454657159745693, + 0.02880246751010418, + 0.010295264422893524, + 0.009519916959106922, + 0.001663625705987215, + -0.006708439905196428, + 0.0372166708111763, + 0.011987543664872646, + 0.021750178188085556, + -0.0008027373114600778, + -0.009695212356746197, + 0.001329889171756804, + 0.02788553573191166, + -0.01748913899064064, + -0.01473834179341793, + -0.003836283693090081, + -0.02300421893596649, + -0.008980544283986092, + -0.013174162246286869, + 0.010794183239340782, + -0.028613686561584473, + -0.04002140462398529, + 0.021547913551330566, + 0.00810406543314457, + -0.00564655102789402, + -0.007868089713156223, + 0.006951157469302416, + 0.012324651703238487, + -0.00239009247161448, + 0.00707251625135541, + 0.002592356875538826, + -0.001669525052420795, + 0.02227606624364853, + -0.012816828675568104, + -0.004503756761550903, + -0.021035509184002876, + 0.0017209339421242476, + 0.008859186433255672, + 0.030528457835316658, + -0.0008288631215691566, + 0.008353524841368198, + -0.020172514021396637, + -0.0017967831809073687, + 0.012183066457509995, + -0.001506027881987393, + 0.025202158838510513, + 0.008879411965608597, + -0.013861862011253834, + 0.00974240805953741, + -0.01844652369618416, + -0.015668757259845734, + 0.0034098427277058363, + -0.013848377391695976, + -0.015358619391918182, + -0.003590195206925273, + -0.005036386661231518, + -0.011636951938271523, + 0.009317652322351933, + -0.011272875592112541, + -2.4993363695102744e-5, + -0.016760986298322678, + 0.008980544283986092, + 0.017610497772693634, + -0.007153421640396118, + 0.008535563014447689, + 0.0020951232872903347, + 0.003890221007168293, + 0.019700564444065094, + 0.015938444063067436, + -0.018527429550886154, + 0.01615419238805771, + 0.012614564038813114, + -0.02264014258980751, + -0.009573853574693203, + 0.005643180105835199, + 0.0012295997003093362, + -0.016396909952163696, + 0.003991353325545788, + -0.011279618367552757, + -0.004453190602362156, + 0.0016678394749760628, + -0.006020740605890751, + 0.00983679760247469, + 0.019916312769055367, + 0.00017034464690368623, + 0.0019501671195030212, + -0.0027946215122938156, + -0.01748913899064064, + 0.01560133695602417, + 0.03176901489496231, + -0.002334469696506858, + -0.008535563014447689, + 0.010753730311989784, + -0.0041531650349497795, + -0.0007395296706818044, + -0.03554461896419525, + 0.021858053281903267, + 0.014347296208143234, + -0.011030158028006554, + 0.02691466547548771, + -0.0007951523875817657, + -0.009095161221921444, + -0.007092742715030909, + -0.0027255143504589796, + 0.005987029988318682, + 0.004031806252896786, + 0.0006843283190391958, + -0.017192484810948372, + 0.02651013620197773, + -0.03354893997311592, + -0.003903705161064863, + 0.004884688183665276, + -0.003462094347923994, + -0.00543080223724246, + -0.0011242536129429936, + 0.012048223055899143, + 0.01994328200817108, + 0.002125462982803583, + -0.004375655669718981, + 0.016639627516269684, + 0.007261296268552542, + -0.002218167530372739, + -0.027211319655179977, + -0.004213843960314989, + -0.014697888866066933, + -0.010693050920963287, + 0.0054678842425346375, + 0.021534429863095284, + -0.010079515166580677, + 0.022046832367777824, + -0.0091288723051548, + 0.006644389592111111, + 0.013544980436563492, + -0.004520611837506294, + 0.012270714156329632, + -0.014091094955801964, + 0.028263095766305923, + 0.01463046669960022, + 0.019134223461151123, + -0.010699792765080929, + 0.02064446546137333, + 0.024595364928245544, + -0.022006379440426826, + -0.006523030810058117, + 0.007807410322129726, + 0.010207615792751312, + -0.022748015820980072, + -0.01078744139522314, + 0.01006603054702282, + -0.01396973617374897, + -0.004271152429282665, + -0.01703067310154438, + -0.003984611015766859, + 0.0033761318773031235, + -0.0015903047751635313, + 0.004979078192263842, + 0.005413947161287069, + -0.012304425239562988, + 0.019660111516714096, + 0.01442820206284523, + -0.020563559606671333, + 0.00439588213339448, + 0.025525782257318497, + 0.017826246097683907, + -0.0212108064442873, + -0.01229094062000513, + 0.001255725510418415, + 0.023381778970360756, + -0.012459494173526764, + 0.0038430257700383663, + 0.001995676662772894, + 0.016936281695961952, + -0.003657616674900055, + -0.017057640478014946, + 0.012297682464122772, + -0.008737827651202679, + -0.004041919484734535, + 0.004716134164482355, + -0.03611095994710922, + 0.00688373576849699, + 0.004190246574580669, + -0.030959956347942352, + -0.008009674958884716, + -0.00922326184809208, + -0.006007256451994181, + 0.006957899313420057, + 0.0045644361525774, + -0.0020917521324008703, + -0.017758823931217194, + -0.01037617027759552, + 0.02640226110816002, + 0.0011503794230520725, + 0.003910447470843792, + -0.007025321014225483, + -0.020064640790224075, + 0.012122387066483498, + 0.037243641912937164, + -0.003654245752841234, + 0.0027238288894295692, + -0.0036913275253027678, + -0.002769338432699442, + -0.0058555579744279385, + 0.0024356020148843527, + 0.023799791932106018, + -0.03166113793849945, + 0.0303396787494421, + -0.027521459385752678, + 0.016841892153024673, + -0.014792278409004211, + 0.010369427502155304, + -0.0020175885874778032, + -0.0037115539889782667, + 0.015884507447481155, + -0.0010568321449682117, + 0.003143527777865529, + -0.00877153780311346, + -0.009068192914128304, + -0.0003023433091584593, + 0.023543590679764748, + -0.009506432339549065, + -0.006081419996917248, + 0.01871621049940586, + -0.012533658184111118, + -0.009803087450563908, + 0.01952526904642582, + -0.021831084042787552, + 0.0015228833071887493, + 0.004513869993388653, + -0.0016341287409886718, + 0.0031401566229760647, + 0.015223775990307331, + -0.01417200081050396, + -0.0011722914641723037, + 0.015129386447370052, + -0.0006674728938378394, + -0.01886453665792942, + 0.021197320893406868, + 0.00414305180311203, + 0.005713972728699446, + 0.01642387919127941, + -0.0017664434853941202, + 0.012162839993834496, + -0.005538676865398884, + -0.002556960564106703, + -0.029287902638316154, + 0.0010897001484408975, + 0.01789366826415062, + -0.01785321533679962, + -0.005413947161287069, + 0.003654245752841234, + -0.021291712298989296, + -0.007342202123254538, + -0.010955994948744774, + 0.020024187862873077, + 0.011839216575026512, + -0.0022114254534244537, + 0.011232422664761543, + 0.029099121689796448, + -0.005471255164593458, + -0.0017074496718123555, + -0.020199483260512352, + 0.0005145103787072003, + 0.005818475969135761, + 0.010908800177276134, + -0.01611373946070671, + -0.011320071294903755, + -0.002722143428400159, + -0.023840244859457016, + 0.010693050920963287, + -0.0398595929145813, + 0.01759701408445835, + 0.018068963661789894, + -0.0002032126358244568, + -0.021440038457512856, + 0.005097066052258015, + 0.011535819619894028, + 0.030959956347942352, + -0.0008010517922230065, + -0.00922326184809208, + 0.008980544283986092, + -0.023732369765639305, + 0.03182294964790344, + -0.0012885935138911009, + 0.0067219240590929985, + 0.014913637191057205, + 0.020253419876098633, + -0.013039319775998592, + -0.005997143220156431, + -0.0075174979865550995, + -0.006516288500279188, + -0.014037157408893108, + 0.008002933114767075, + -0.0026446084957569838, + -0.000593730655964464, + 0.021089447662234306, + -0.0019113997695967555, + 0.01001883577555418, + 0.0022013122215867043, + -0.0030929616186767817, + 0.0056971171870827675, + 0.011522335931658745, + 0.029800305142998695, + 0.005649922415614128, + -0.01231116708368063, + 0.01516983937472105, + 0.005643180105835199, + 0.010854862630367279, + 0.028209159150719643, + 0.001655197935178876, + 0.0010804296471178532, + 0.03694698587059975, + 0.004004837479442358, + -0.012553884647786617, + -0.01049752812832594, + 0.003155326470732689, + 0.0004437177849467844, + -0.0013753987150266767, + 0.02055007591843605, + 0.016936281695961952, + -0.00025578035274520516, + 0.012385331094264984, + -0.011104322038590908, + -0.01723293773829937, + 0.0026092124171555042, + -0.002081638900563121, + 0.03708183020353317, + -0.01814986951649189, + 0.0015161411138251424, + 0.006924188695847988, + 0.0060645644553005695, + 0.001466417801566422, + -0.02452794462442398, + 0.004159906879067421, + 0.005346525460481644, + 0.02568759396672249, + 0.0056566642597317696, + 0.0012321280082687736, + -0.006819685455411673, + -0.008009674958884716, + -0.01312696747481823, + -0.013315747492015362, + 0.033063508570194244, + 0.005161116365343332, + -0.024406585842370987, + -0.0030255401507019997, + 0.02478414587676525, + 0.013288779184222221, + 0.003509289352223277, + 0.025296548381447792, + -0.007038805168122053, + 0.024959441274404526, + -0.0015506946947425604, + 0.015547399409115314, + 0.0091490987688303, + 0.010672824457287788, + -0.011104322038590908, + 0.011940348893404007, + 0.010585176758468151, + -0.006812943145632744, + 0.009398558177053928, + -0.016504785045981407, + -0.0015018141129985452, + 0.01205496583133936, + 0.018325164914131165, + 0.012978640384972095, + -0.01080766785889864, + 0.007692793849855661, + -0.005167858675122261, + -0.01697673462331295, + 0.011812248267233372, + -0.008292845450341702, + 0.0044228509068489075, + -0.0018203806830570102, + -0.01519680768251419, + -0.009796344675123692, + 0.01109083741903305, + -0.000858360028360039, + -0.012776375748217106, + 0.02406947873532772, + 0.01183247473090887, + 0.008016416803002357, + 0.006984868086874485, + -0.0056802621111273766, + 0.028775498270988464, + -0.009654759429395199, + 0.010666082613170147, + -0.039697784930467606, + 0.018878022208809853, + 0.012789859436452389, + 0.0063342503271996975, + 0.0033154524862766266, + -0.009472721256315708, + 0.012196550145745277, + -0.0013349457876756787, + 0.001860833610408008, + 0.013706792145967484, + 0.0016172734322026372, + 0.007126453332602978, + 0.012560626491904259, + -0.02966546267271042, + 0.02473020926117897, + 0.0014622039161622524, + 0.0011175114195793867, + -0.007119711022824049, + -0.007443334441632032, + 0.01088183093816042, + -0.0016113739693537354, + 0.003961013630032539, + -0.009182808920741081, + -0.03195779398083687, + -0.012634790502488613, + -0.00560946948826313, + -0.00017276761354878545, + -0.005754425656050444, + 0.018851052969694138, + -0.0009413727675564587, + 0.012122387066483498, + -0.00935810524970293, + 0.008090580813586712, + -0.0018642046488821507, + 0.008164744824171066, + -0.021318679675459862, + 0.006630904972553253, + -0.022262580692768097, + 0.03381862863898277, + 0.001187461311928928, + 0.013578691519796848, + -0.0014672605320811272, + 0.03880782052874565, + -0.006536514963954687, + 0.012762891128659248, + 0.0031047603115439415, + 0.001973764505237341, + 0.005943205673247576, + -0.00439588213339448, + -0.018028510734438896, + 0.016329489648342133, + 0.010848120786249638, + 0.03360287845134735, + -0.007369170896708965, + 0.006600565277040005, + 0.00395090039819479, + -0.00937833171337843, + -0.04487575590610504, + -0.00013684459554497153, + -0.005349896382540464, + -0.008656921796500683, + -0.009041223675012589, + -0.012621305882930756, + -0.022262580692768097, + 0.0008014731574803591, + -0.0030440809205174446, + -0.0011116120731458068, + 0.019902829080820084, + -0.0012245430843904614, + -0.019552236422896385, + -0.0017883554100990295, + -0.008623210713267326, + 0.002932835603132844, + 0.007065773941576481, + -0.00037840320146642625, + 0.02150746062397957, + -0.015844054520130157, + 0.014158516190946102, + 0.0005145103787072003, + -0.0012329708551988006, + 0.0018793744966387749, + -0.024042509496212006, + 0.03813360258936882, + 0.00011988386540906504, + -0.0011790335411205888, + -0.023799791932106018, + 0.004726247396320105, + 0.003290169406682253, + 0.0024524573236703873, + -0.010982963256537914, + 0.010322232730686665, + 0.01866227388381958, + -0.019848892465233803, + 0.0051577454432845116, + -0.010207615792751312, + 0.008205197751522064, + -0.016612660139799118, + 0.0014638894936069846, + 0.013902314938604832, + 0.028370970860123634, + 0.009041223675012589, + -0.03883478790521622, + 0.026038186624646187, + 0.0004323403991293162, + 0.005076839588582516, + 0.011441430076956749, + 0.014266390353441238, + 0.02075234055519104, + -1.0422680134070106e-5, + 0.0032699431758373976, + 0.008987287059426308, + -0.014158516190946102, + 0.00502290204167366, + 0.0009110331302508712, + -0.01994328200817108, + 0.005612840410321951, + -0.014846215955913067, + 0.001445348490960896, + 0.009567111730575562, + 0.0035800819750875235, + -0.012574111111462116, + -0.0016922798240557313, + -0.013544980436563492, + -0.016558721661567688, + -0.014050642028450966, + 0.014819246716797352, + 0.002388406777754426, + 0.00031477416632696986, + -0.003475578734651208, + -0.015978896990418434, + 0.0031671251635998487, + 0.015412556007504463, + 0.015682242810726166, + -0.005282475147396326, + 0.027089960873126984, + -0.016396909952163696, + 0.0020479282829910517, + 0.010733503848314285, + 0.00810406543314457, + -0.04536119103431702, + -0.007834378629922867, + -0.0038396548479795456, + -0.009344620630145073, + 0.0016450847033411264, + -0.003903705161064863, + -0.005036386661231518, + -0.003657616674900055, + 0.016949767246842384, + -0.0003335257642902434, + -0.015992380678653717, + -0.0039205607026815414, + 0.012068449519574642, + -0.022141221910715103, + 0.0012877507833763957, + 0.036272771656513214, + 0.01437426544725895, + -0.0020917521324008703, + 0.015547399409115314, + -0.01591147482395172, + -0.0024069477804005146, + 0.0033845596481114626, + -0.0017698145238682628, + -0.012068449519574642, + 0.030906017869710922, + -0.019646627828478813, + -0.0015506946947425604, + 0.003055879846215248, + 0.0043823979794979095, + 0.010544723831117153, + 0.006115130614489317, + -0.009594080038368702, + 0.017044156789779663, + 0.009243488311767578, + 0.024447038769721985, + -0.006775861606001854, + -0.008218681439757347, + 0.02396160364151001, + -0.02095460332930088, + 0.0076321144588291645, + -0.01738126389682293, + -0.007982706651091576, + -0.021709725260734558, + 0.012992124073207378, + -0.008009674958884716, + -0.009135614149272442, + -0.003475578734651208, + 0.00037081827758811414, + 0.003403100650757551, + -0.00836026668548584, + 0.020428717136383057, + -0.00332725141197443, + -0.011299844831228256, + -0.005943205673247576, + 0.00840746145695448, + -0.002172657987102866, + -0.010726762004196644, + -0.01060540322214365, + -0.017246421426534653, + 0.013113482855260372, + -0.02451445907354355, + -0.02141307108104229, + 0.008906381204724312, + 0.004486901219934225, + -0.009735665284097195, + 0.006971383932977915, + -0.019754501059651375, + -0.02355707436800003, + -0.0011638638097792864, + -0.009519916959106922, + 0.005053241737186909, + -0.013342715799808502, + 0.03292866423726082, + 0.0007441648631356657, + 0.02549881301820278, + 0.011893154121935368, + -0.00011156152322655544, + -0.02135913260281086, + 0.012917960993945599, + 0.01442820206284523, + -0.013821409083902836, + -0.011899895966053009, + -0.005933092441409826, + -0.015533914789557457, + -0.008474883623421192, + 0.016194645315408707, + -0.015628304332494736, + -0.003896963084116578, + -0.004736360628157854, + -0.031040862202644348, + 0.007888316176831722, + 7.769274816382676e-5, + 0.009863766841590405, + 0.013369685038924217, + 0.0016914370935410261, + 0.019821923226118088, + 0.0015152983833104372, + 0.0003033967805095017, + 0.007733246777206659, + 0.013362942263484001, + 0.00748378736898303, + -0.01570921018719673, + -0.008987287059426308, + -0.004281265661120415, + -0.008090580813586712, + -0.016734017059206963, + 0.000580246327444911, + 0.007470302749425173, + -0.02044220082461834, + -0.03147235885262489, + -0.007504013832658529, + -0.016140708699822426, + 0.00689721992239356, + 0.010005351155996323, + -0.01672053337097168, + -0.01672053337097168, + -0.009472721256315708, + -0.002241765148937702, + 0.004412737675011158, + 0.0012633104342967272, + -0.0002551482757553458, + 0.0038632522337138653, + -0.0006712653557769954, + 0.0365154892206192, + -0.007126453332602978, + -0.0012186437379568815, + -0.01672053337097168, + 0.022505298256874084, + 0.014320327900350094, + 0.004965594038367271, + 0.008023159578442574, + 0.018999380990862846, + -0.012129128910601139, + 0.0037149249110370874, + -0.017219452187418938, + 0.002238393994048238, + 0.012385331094264984, + 0.015871021896600723, + 0.007079258095473051, + 0.007200616877526045, + -0.005127405747771263, + -0.006651131436228752, + -0.01831168122589588, + 0.022721048444509506, + -0.012938187457621098, + 0.02115686796605587, + 0.021237773820757866, + -0.003067678539082408, + 0.005363381002098322, + 0.010416623204946518, + -0.013066288083791733, + -0.011549304239451885, + -0.012735922820866108, + -0.010800925083458424, + -0.013443848118185997, + -0.006347734946757555, + -0.005397091619670391, + 0.0076118879951536655, + -0.006034224759787321, + -0.013228099793195724, + 0.01292470283806324, + 0.0003019219439011067, + -0.007463560905307531, + -0.01967359520494938, + -0.001119196997024119, + 0.01978147029876709, + -0.007605146151036024, + 0.009904219768941402, + 0.006560112815350294, + 4.46930862381123e-5, + -0.009088419377803802, + 0.012001028284430504, + 0.021736694499850273, + -0.018082447350025177, + 0.017354296520352364, + 0.010133452713489532, + -0.012324651703238487, + 0.005016160197556019, + -0.0021473749075084925, + -0.02366494946181774, + 0.002437287475913763, + 0.023125575855374336, + 0.01686886139214039, + -0.01611373946070671, + 0.0008107436005957425, + 0.017462169751524925, + -0.011077353730797768, + 0.0038194283843040466, + 0.026334840804338455, + -0.015533914789557457, + 0.018702726811170578, + -0.028128253296017647, + -0.0017597012920305133, + -0.013834892772138119, + 0.005804991815239191, + -0.031175704672932625, + -0.01886453665792942, + 0.01906680129468441, + 0.0029817160684615374, + 0.012439267709851265, + 0.0166665967553854, + -0.0029362065251916647, + -0.010362685658037663, + 0.010659339837729931, + -0.0073826550506055355, + -0.00748378736898303, + -0.009735665284097195, + -0.0011739770416170359, + 0.030879050493240356, + 0.03247019648551941, + 0.014104579575359821, + -0.016477815806865692, + -0.011953833512961864, + -0.013848377391695976, + 0.004894801415503025, + 0.021426554769277573, + -0.008144518360495567, + 0.0016964937094599009, + -0.014455171301960945, + -0.018621820956468582, + 0.00012420305574778467, + -0.013369685038924217, + 0.004918398801237345, + -0.004008208401501179, + 0.021022025495767593, + 0.004739732015877962, + -0.007443334441632032, + 0.002465941710397601, + -0.018028510734438896, + 0.0017950976034626365, + -0.0018878021510317922, + -0.011805505491793156, + -0.004399253521114588, + -0.0014504051068797708, + -0.022046832367777824, + 0.006371332332491875, + 0.005306072533130646, + -0.015156354755163193, + 0.019821923226118088, + 0.002137261675670743, + 0.016127225011587143, + -0.019700564444065094, + 0.008663663640618324, + -0.023031186312437057, + 0.0016206444706767797, + 0.0013627571752294898, + 0.0015439525013789535, + 0.026294387876987457, + -0.018540915101766586, + 0.00503301527351141, + -0.018217291682958603, + -0.019700564444065094, + -0.00354300020262599, + 0.0019383683102205396, + -0.00480378232896328, + 0.010618886910378933, + 0.022963766008615494, + -0.0029952004551887512, + 0.01231116708368063, + 0.012230261228978634, + 0.0025283065624535084, + -0.025714563205838203, + -0.007065773941576481, + -0.015587852336466312, + 0.008576015941798687, + -0.02942274510860443, + 0.006192665547132492, + -0.00502290204167366, + -0.004210473038256168, + 0.008218681439757347, + -0.002172657987102866, + -0.006283684633672237, + 0.007193874567747116, + -0.0011697631562128663, + -0.0024591994006186724, + -0.010888573713600636, + -0.015183323062956333, + -0.011630210094153881, + -0.00892660766839981, + -0.007052289787679911, + -0.012837055139243603, + 0.01310674101114273, + -0.009007513523101807, + -0.017219452187418938, + -0.017205968499183655, + 0.01111106388270855, + 0.005134147591888905, + -0.002457513939589262, + -0.0017934120260179043, + 0.023341326043009758, + -0.012628047727048397, + 0.023570558056235313, + 0.01983540691435337, + -0.02936880849301815, + 0.008434430696070194, + 0.001357700559310615, + -0.0112459072843194, + -0.0032615154050290585, + 0.026739370077848434, + -0.02473020926117897, + -0.000296865327982232, + 0.03559855371713638, + 0.012176323682069778, + 0.001827122876420617, + 0.0008806934347376227, + -0.018743179738521576, + 0.014010189101099968, + 0.014495624229311943, + -0.012796602211892605, + -0.0032008360140025616, + 0.014239422045648098, + -0.019390424713492393, + -0.008346782065927982, + -0.021844567731022835, + 0.0027811371255666018, + 0.004200359806418419, + 0.006182552315294743, + -0.0003396358515601605, + -0.01877014711499214, + -0.014724857173860073, + 0.02313906140625477, + 0.014563045464456081, + 7.064772944431752e-6, + 0.010753730311989784, + -0.006951157469302416, + -0.005612840410321951, + -0.003379503032192588, + 0.013531496748328209, + -0.003403100650757551, + -0.014563045464456081, + -0.02614605985581875, + 0.008650179021060467, + -0.026631494984030724, + 0.01734081096947193, + 0.012904476374387741, + -0.004196988884359598, + 0.012661758810281754, + -0.0045374673791229725, + -0.011326813139021397, + -0.0019417393486946821, + 0.00997164100408554, + -4.471942156669684e-5, + -0.00709948455914855, + -0.0019451105035841465, + 0.02319299802184105, + 0.022464845329523087, + 0.011481883004307747, + -0.00022839035955257714, + -0.005922979209572077, + -0.0076523409225046635, + 0.002206368837505579, + -0.00811080727726221, + 0.009391816332936287, + -0.007018578704446554, + -0.01022110041230917, + -0.0029378922190517187, + 0.0026867471169680357, + -0.0053094434551894665, + -1.234524643223267e-5, + -0.01020087394863367, + 0.0006535672582685947, + 0.008090580813586712, + -0.00192825507838279, + -0.01272243820130825, + -0.014414718374609947, + 0.010895315557718277, + -6.060693067411194e-6, + -0.026429230347275734, + -0.001031549065373838, + 0.005124034360051155, + -0.009027739986777306, + 0.01437426544725895, + -0.005400462541729212, + 0.0005431644967757165, + -0.01146839838474989, + 0.018271228298544884, + 0.0032463455572724342, + 0.005707230418920517, + 0.018689241260290146, + -0.00010223839490208775, + 0.000760177499614656, + 0.001214429852552712, + 0.0035733398981392384, + 0.003116559237241745, + -0.0018625190714374185, + 0.005319556687027216, + 0.00607804860919714, + 0.00499593373388052, + -0.007996190339326859, + 0.008967060595750809, + 0.005798249505460262, + -0.011825731955468655, + -0.0209006667137146, + -0.0015970469685271382, + -0.018621820956468582, + -0.003583453129976988, + -0.0011891467729583383, + -0.04012928158044815, + 0.0006164854275994003, + 0.011893154121935368, + 0.010915542021393776, + -0.022559236735105515, + -0.002836759900674224, + 0.029045185074210167, + 0.017826246097683907, + -0.026240451261401176, + -0.006944415159523487, + 0.0006438753916881979, + -0.029611526057124138, + 0.00014906474098097533, + -0.009047966450452805, + -0.0030895904637873173, + -0.003278370713815093, + -0.0024827970191836357, + 0.01779927685856819, + -0.002688432577997446, + -0.0014613611856475472, + 0.015790116041898727, + -0.0017613868694752455, + 0.0022973879240453243, + 6.494587432825938e-5, + 0.0020799534395337105, + -0.015871021896600723, + 0.006024111527949572, + -0.0005726614035665989, + 0.011070610955357552, + -0.012358361855149269, + 0.008778280578553677, + 0.03017786704003811, + -0.008879411965608597, + -0.024150384590029716, + -0.0010576748754829168, + 0.00960756465792656, + 0.018999380990862846, + 0.011987543664872646, + -0.016477815806865692, + -0.015682242810726166, + -0.011933607049286366, + -0.004250925965607166, + 0.025930311530828476, + 0.03422315791249275, + 0.0021086076740175486, + 0.007133195176720619, + 0.01717899926006794, + 0.015736179426312447, + -0.008501851931214333, + -0.004473417066037655, + -0.02064446546137333, + 0.003809315152466297, + 0.0037789754569530487, + 0.021251259371638298, + -0.02203334867954254, + -0.0056768907234072685, + -0.0035261448938399553, + -0.020509622991085052, + -0.0067016975954174995, + -0.035301901400089264, + -0.008623210713267326, + 0.004011579789221287, + 0.000685171049553901, + 0.015008027665317059, + 0.009978382848203182, + -0.006206149701029062, + 0.009661502204835415, + -0.0045576938427984715, + -0.013160677626729012, + -0.000983511214144528, + -0.024285227060317993, + -0.02309860847890377, + -0.008259134367108345, + -0.013450590893626213, + -0.01473834179341793, + -0.013807924464344978, + 0.01850046217441559, + 0.018540915101766586, + 0.013052803464233875, + 0.0004167491861153394, + -0.016032833606004715, + -0.0005709758843295276, + -0.0052892169915139675, + 0.001987248891964555, + -0.003403100650757551, + -0.00897380243986845, + -0.0001094546023523435, + 0.00036913275835104287, + -0.002680004807189107, + -0.017408233135938644, + 0.01358543336391449, + 0.006732037290930748, + -0.020266905426979065, + -0.016963250935077667, + 0.0010880145709961653, + 0.024177351966500282, + 0.016383426263928413, + 0.014347296208143234, + -0.0056229536421597, + 0.010275037959218025, + -0.020361294969916344, + 0.013147193938493729, + -0.008016416803002357, + 0.005869042128324509, + 0.006694955751299858, + -0.004844235256314278, + 0.02161533571779728, + -0.0008094794466160238, + -0.005360009614378214, + 0.001926569500938058, + -0.0029614896047860384, + -0.015250745229423046, + -0.004058774560689926, + -0.029530620202422142, + 0.01111106388270855, + -0.007625372614711523, + 0.029072154313325882, + 0.0029749739915132523, + 0.0009321023244410753, + -0.01205496583133936, + -0.010227842256426811, + 0.001711663557216525, + 0.02630787156522274, + 0.0018743178807199001, + 0.008420946076512337, + 0.012088675983250141, + 0.0059701744467020035, + 0.01088183093816042, + -0.020212966948747635, + 0.0034047861117869616, + -0.004534096457064152, + 0.004658826161175966, + -0.018851052969694138, + -0.006641018204391003, + -0.0005558060365729034, + -0.024811115115880966, + -0.008602984249591827, + -0.03406134620308876, + 0.026887696236371994, + -0.007996190339326859, + -6.61046797176823e-5, + -0.01146839838474989, + 0.009310910478234291, + 0.010800925083458424, + 0.00044835300650447607, + -0.019498299807310104, + 0.004979078192263842, + -0.00230581546202302, + 0.00397786870598793, + -0.02201986499130726, + 0.03368378430604935, + 0.025862889364361763, + -0.006533144041895866, + 0.009465979412198067, + 0.03425012528896332, + -0.014455171301960945, + 0.010146936401724815, + 0.02630787156522274, + -0.0029985716100782156, + 0.0012784802820533514, + 0.006442124955356121, + -0.017462169751524925, + 0.005579129792749882, + -0.031688109040260315, + -0.005737570114433765, + -0.015439525246620178, + 0.001926569500938058, + 0.001656040782108903, + -0.0030491375364363194, + 0.002145689446479082, + -0.02104899473488331, + -0.010524497367441654, + 0.005575758405029774, + 0.018163353204727173, + 0.0489480122923851, + 0.024865051731467247, + 0.0034199559595435858, + 0.026591042056679726, + 0.0352749340236187, + -0.024285227060317993, + 0.0008617311250418425, + 0.003853139001876116, + -0.03516705706715584, + -0.021750178188085556, + -0.00585218658670783, + -0.004008208401501179, + 0.03379165753722191, + 0.013046061620116234, + -0.015682242810726166, + -0.005660035647451878, + -0.01192686427384615, + -0.00976263452321291, + -0.01399670448154211, + 0.0075377244502305984, + -0.007450076285749674, + -0.005703859496861696, + -0.012472978793084621, + 0.0031536410097032785, + 3.371075217728503e-5, + -0.0015372103080153465, + -0.001133524114266038, + -0.018230775371193886, + -0.019053317606449127, + 0.0020883812103420496, + 0.026591042056679726, + -0.009115387685596943, + -0.015520431101322174, + -0.01948481611907482, + -0.007335459813475609, + 0.011812248267233372, + 0.003130043391138315, + -0.0019636512733995914, + 0.005400462541729212, + -0.016383426263928413, + -0.004099227488040924, + -0.012870765291154385, + -0.007092742715030909, + -0.007692793849855661, + -0.0006590452394448221, + -0.017448686063289642, + -0.0013694993685930967, + -0.0192690659314394, + 0.0010720019927248359, + -0.0073624285869300365, + -0.0034991761203855276, + -0.0012295997003093362, + -0.016599174588918686, + -0.011818990111351013, + -0.008211939595639706, + 0.02361101098358631, + 0.03141842037439346, + -0.007059031631797552, + -0.02264014258980751, + -0.017988057807087898, + -0.014279874972999096, + 0.006115130614489317, + 0.006003885064274073, + 0.02233000285923481, + -0.018325164914131165, + 0.03344106674194336, + 0.003789088688790798, + -0.0002833810285665095, + 0.0021288341376930475, + -0.017623981460928917, + 0.002145689446479082, + -0.012668500654399395, + -0.014873184263706207, + -0.010773956775665283, + -0.02456839755177498, + -0.00544091546908021, + -0.027238288894295692, + -0.00022522997460328043, + -0.009027739986777306, + 0.025512298569083214, + 0.004459932446479797, + 0.009863766841590405, + -0.004432964138686657, + 0.0018473492236807942, + -0.018729694187641144, + 0.004405995365232229, + -0.01060540322214365, + 0.008710858412086964, + -0.019511783495545387, + 0.0002690539404284209, + -0.008454657159745693, + -0.018675757572054863, + -0.03190385550260544, + 0.003116559237241745, + 0.014118063263595104, + -0.0006143784848973155, + -0.011596499010920525, + -0.011077353730797768, + -0.0044026244431734085, + 0.006792716681957245, + -0.014441686682403088, + 0.01026829518377781, + -0.008616468869149685, + 0.02335480973124504, + -0.004466674756258726, + -0.029800305142998695, + 0.012641532346606255, + -0.0012784802820533514, + 0.003590195206925273, + 0.018891505897045135, + -0.0020479282829910517, + 0.0007382655167020857, + 0.01190663781017065, + 0.015547399409115314, + -0.017205968499183655, + 0.01330900564789772, + -0.013747245073318481, + 0.0026344952639192343, + -0.011805505491793156, + 0.012412299402058125, + -6.657873746007681e-5, + 0.004328460898250341, + 0.020469170063734055, + 0.014441686682403088, + 0.010187389329075813, + 9.349466563435271e-5, + 0.010214358568191528, + 0.02242439240217209, + -0.010133452713489532, + -0.000412324647186324, + 0.018527429550886154, + -0.0033727609552443027, + -0.0065870811231434345, + 0.015884507447481155, + -0.015520431101322174, + -0.0022788469213992357, + 0.01215609721839428, + -0.010328974574804306, + 0.01983540691435337, + -0.002206368837505579, + -0.012816828675568104, + 0.009749149903655052, + 0.018271228298544884, + -0.0010821152245625854, + -0.016787955537438393, + 0.012189808301627636, + -0.010052546858787537, + 0.020577043294906616, + 0.00869737472385168, + 0.009870508685708046, + 0.012668500654399395, + -0.005167858675122261, + -0.024433553218841553, + -0.002966546220704913, + -0.000607214926276356, + 0.018824083730578423, + -0.0036003084387630224, + 0.02196592651307583, + -0.005322928074747324, + -0.006991610396653414, + 0.0024794258642941713, + 0.00623311847448349, + 0.01657220721244812, + 0.011893154121935368, + 0.008238907903432846, + 0.008710858412086964, + -0.007625372614711523, + -0.0013745559845119715, + -0.014185485430061817, + -0.016734017059206963, + 0.0006666301633231342, + 0.007490529213100672, + 0.000936316151637584, + -0.010355943813920021, + -0.011913380585610867, + -0.014064126648008823, + -0.01149536669254303, + -0.018419556319713593, + -0.0372166708111763, + -0.005558903329074383, + 0.010969479568302631, + 0.014495624229311943, + 0.017880182713270187, + -0.0025401052553206682, + -0.0012793231289833784, + -0.007409623358398676, + -0.0010922284564003348, + 0.004820637870579958, + 0.015992380678653717, + -0.011839216575026512, + 0.009095161221921444, + 0.01932300440967083, + -0.018702726811170578, + 0.009391816332936287, + -0.009074934758245945, + -0.002037815051153302, + 0.013160677626729012, + 0.0071129691787064075, + -0.011529077775776386, + -0.011596499010920525, + -0.0009177752654068172, + -0.03379165753722191, + -0.012297682464122772, + -0.03549068048596382 + ], + "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d": [ + -0.00899586919695139, + -0.009558524005115032, + -0.007625637110322714, + -0.02833135984838009, + -0.044429928064346313, + -0.017078250646591187, + 0.017329789698123932, + 0.04977846518158913, + -0.008254487067461014, + 0.03969038277864456, + -0.01842862367630005, + 0.06550633907318115, + -0.048931170254945755, + -0.0034983933437615633, + -0.0009722356335259974, + -0.004636943340301514, + -0.05375014990568161, + 0.020970502868294716, + 0.013953857123851776, + -0.01080960500985384, + 0.0722317323088646, + -0.04096132144331932, + -0.008611938916146755, + 0.004812359344214201, + -0.03158814460039139, + -0.030264247208833694, + 0.008989249356091022, + -0.0001958951324922964, + -0.002910914830863476, + -0.01043891441076994, + 0.007850699126720428, + 0.013166138902306557, + 0.00419674813747406, + -0.024823037907481194, + 0.013113182969391346, + -0.011133959516882896, + 0.0018220109632238746, + 0.028410794213414192, + -0.017343029379844666, + 0.019183242693543434, + -0.022718043997883797, + 0.013728794641792774, + -0.007731548976153135, + -0.010141038335859776, + -0.01779315248131752, + 0.026901552453637123, + 0.028622617945075035, + -0.0007492420263588428, + 0.016032371670007706, + -0.016191240400075912, + 0.004722996614873409, + 0.031402796506881714, + -0.012530669569969177, + 0.01681347005069256, + 0.0024475515820086002, + 0.003968376200646162, + -0.004643562715500593, + 0.0722317323088646, + 0.009783586487174034, + -0.02017616480588913, + -0.007605778519064188, + -0.005106926430016756, + 0.00025526355602778494, + 0.002960560843348503, + -0.002417763927951455, + -0.01997758075594902, + 0.01604561135172844, + -0.0020205953624099493, + -0.01608532853424549, + 0.014099485240876675, + -0.013166138902306557, + 0.03203826770186424, + -0.05261160060763359, + 0.00030904682353138924, + -0.021341193467378616, + 0.01604561135172844, + 0.009730630554258823, + -0.05237330123782158, + 0.015701398253440857, + 0.00832730159163475, + 0.0001771744282450527, + 0.010531587526202202, + 0.01252404972910881, + -0.010736791417002678, + 0.016800232231616974, + 0.01546309795230627, + -0.035268571227788925, + -0.039134345948696136, + -0.060687363147735596, + -0.012987413443624973, + 0.021897228434681892, + 0.019964341074228287, + 0.009518807753920555, + 0.013980334624648094, + 0.0052492450922727585, + 0.001518342411145568, + 0.0470777191221714, + 0.02933751977980137, + -0.027007464319467545, + -0.016058851033449173, + -0.031243929639458656, + 0.02904626354575157, + -0.045647911727428436, + 0.006533423438668251, + 0.013450776226818562, + -0.028860919177532196, + 0.021738361567258835, + -0.0013462360948324203, + -0.020626289770007133, + 0.04135848954319954, + 0.03415650129318237, + -0.024902470409870148, + -0.0028794724494218826, + 0.002742118202149868, + 0.01991138607263565, + -0.08086352795362473, + 0.003418959677219391, + -0.03362694010138512, + -0.006126325577497482, + -0.06402357667684555, + 0.05496813356876373, + 0.04149087890982628, + 0.02343294769525528, + -0.02225468121469021, + 0.004494624678045511, + -0.02672944776713848, + -0.0023350203409790993, + 0.009068682789802551, + 0.004934819880872965, + 0.01215335913002491, + 0.010498490184545517, + -0.014920300804078579, + -0.01529099140316248, + 0.013861184008419514, + 0.00022671707847621292, + 0.027033943682909012, + 0.03166757524013519, + 0.046918850392103195, + -0.04019346088171005, + 0.043158989399671555, + -0.009062063880264759, + -0.004911651834845543, + -0.010419056750833988, + 0.004488005302846432, + 0.017303312197327614, + 0.013139661401510239, + -0.047421932220458984, + 0.020705722272396088, + 0.02000405825674534, + 0.00554712163284421, + -0.0249421875923872, + 0.014192158356308937, + 0.03436832129955292, + -0.008837001398205757, + -0.007427053060382605, + 0.014986495487391949, + 0.04035232961177826, + 0.017846109345555305, + -0.0005936843226663768, + 0.017343029379844666, + -0.003147561103105545, + -0.016508974134922028, + 0.028225447982549667, + -0.0008870098972693086, + -0.010617640800774097, + 0.014192158356308937, + 0.028516706079244614, + 0.011200154200196266, + -0.05989302694797516, + 0.01564844325184822, + 0.030290724709630013, + -0.03561278432607651, + 0.015926461666822433, + -0.014946778304874897, + -0.019448023289442062, + -0.005835068877786398, + 0.026610296219587326, + 0.0002134781243512407, + 0.04059063270688057, + -0.03897547721862793, + -0.008400116115808487, + -0.005765564274042845, + -0.029152175411581993, + 0.003293189685791731, + -0.012358563020825386, + 0.02010997012257576, + 0.010399198159575462, + 0.009598241187632084, + -0.04149087890982628, + 0.030661415308713913, + 0.013159519992768764, + 0.029099220409989357, + 0.005871475674211979, + 0.0686836913228035, + -0.021129369735717773, + -0.0055239531211555, + -0.0025005072820931673, + 0.011809146031737328, + 0.037016112357378006, + 0.02028207667171955, + -0.017170922830700874, + -0.040908366441726685, + -0.07080192118883133, + 0.020904308184981346, + -0.04615098983049393, + 0.0027040562126785517, + 0.01967308484017849, + -0.008638417348265648, + 0.020573332905769348, + 0.003303118981420994, + 0.03058198280632496, + -0.031005628407001495, + 0.006159422919154167, + 0.023591814562678337, + -0.03317681699991226, + -0.011206774041056633, + -0.01779315248131752, + 0.013715555891394615, + -0.005782112944871187, + 0.012927837669849396, + -0.023459425196051598, + 0.013040369376540184, + 0.03532152622938156, + -0.025643853470683098, + -0.03762510418891907, + -0.03529505059123039, + -0.05051984637975693, + 0.01685318723320961, + -0.032382480800151825, + -0.006573140155524015, + 0.019487738609313965, + -0.0029456671327352524, + 0.0170252937823534, + -0.027775324881076813, + -0.024015462026000023, + 0.001476143253967166, + -0.006268644239753485, + -0.023658009245991707, + 0.01584702730178833, + -0.02830488234758377, + 0.03243543580174446, + 0.025273162871599197, + 0.03786340728402138, + 0.02581596001982689, + 0.021579494699835777, + 0.042046915739774704, + -0.015794072300195694, + 0.046654071658849716, + 0.01877283677458763, + -0.03675133362412453, + -0.0085126468911767, + 0.03270021453499794, + 0.02854318358004093, + -0.019381828606128693, + -0.011167056858539581, + 0.022109052166342735, + 0.009055444039404392, + 0.003375933039933443, + -0.027378154918551445, + -0.025670330971479416, + -0.007294663228094578, + -0.009287125431001186, + 0.021910468116402626, + -0.031243929639458656, + 0.04488005116581917, + -0.01270939502865076, + 0.018335949629545212, + -0.0397433377802372, + 0.010339622385799885, + 0.01331176795065403, + -0.05147305130958557, + -0.008803904056549072, + -3.6510551581159234e-5, + 0.013675838708877563, + -0.021910468116402626, + -0.0011683376505970955, + -0.0002039626269834116, + 0.025776242837309837, + 0.009757108986377716, + 0.006923972629010677, + -0.02292986772954464, + 0.014456937089562416, + -0.003198862075805664, + 0.025167251005768776, + -0.014073007740080357, + -0.03958446905016899, + 0.016469258815050125, + 0.015926461666822433, + -0.047289542853832245, + -0.008757567964494228, + 0.002431002911180258, + -0.005050660576671362, + 0.031773488968610764, + -0.008691373281180859, + 0.013417678885161877, + -0.004600536078214645, + -0.01672079786658287, + -0.019951103255152702, + -0.015767592936754227, + 0.017263595014810562, + -0.006457299459725618, + 0.009022346697747707, + 0.03569221869111061, + -0.029125697910785675, + 0.01947450079023838, + 0.0017525064758956432, + 0.024267001077532768, + -0.005987316835671663, + -0.050440412014722824, + 0.007195371203124523, + 0.048428092151880264, + 0.012464474886655807, + 0.003316357731819153, + -0.02716633304953575, + -0.01729007251560688, + 0.0015588867245242, + 0.018216799944639206, + -0.015370424836874008, + 0.018335949629545212, + -0.030396636575460434, + -0.012848404236137867, + -0.00324023375287652, + -0.048295702785253525, + 0.0005568634951487184, + 0.04694532975554466, + -0.05361776053905487, + 0.01729007251560688, + 0.0036307829432189465, + -0.010061604902148247, + -0.020930785685777664, + -0.007546203210949898, + -0.022784238681197166, + -0.03346807509660721, + -0.01668108068406582, + -0.02071896195411682, + -0.017713719978928566, + -0.03431536629796028, + -0.041384968906641006, + -0.002381356665864587, + -0.008757567964494228, + -0.0053882538340985775, + 0.0405641533434391, + -0.013477254658937454, + 0.02101021818816662, + 0.012696156278252602, + 0.0026014542672783136, + -0.019633367657661438, + 0.03712202608585358, + -0.019659845158457756, + -0.017343029379844666, + 0.0005961666465736926, + -0.03529505059123039, + 0.0556565597653389, + -0.014615804888308048, + 0.00948571041226387, + 0.00980344507843256, + -0.022214964032173157, + -0.024161089211702347, + 0.0006933902041055262, + 0.018839031457901, + -0.007784504443407059, + -0.027378154918551445, + -0.03969038277864456, + -0.016866426914930344, + 0.009598241187632084, + 0.0325678251683712, + 0.017541613429784775, + 0.01803145371377468, + -0.010392578318715096, + 0.01510564610362053, + -0.026716208085417747, + 0.06026371568441391, + 0.03148223087191582, + -0.009704153053462505, + -0.04863991588354111, + -0.00035579685936681926, + 0.019249437376856804, + -0.01604561135172844, + -0.024425869807600975, + 0.0319058783352375, + -0.011266348883509636, + 0.0010524968383833766, + 0.0051598818972706795, + -0.00012690777657553554, + 0.04750136658549309, + 0.009306984022259712, + 0.007996328175067902, + -0.0067551760002970695, + -0.034130021929740906, + -0.03548039495944977, + -0.047554321587085724, + -0.007870557717978954, + -0.035665739327669144, + 0.017978498712182045, + -0.021579494699835777, + 0.023658009245991707, + -0.013516971841454506, + -0.014364263974130154, + 0.026914792135357857, + 0.02249298244714737, + 0.016204478219151497, + -0.0128417843952775, + -0.011153818108141422, + -0.002723914571106434, + 0.008082381449639797, + -0.007003406528383493, + 0.009254028089344501, + 0.0004217847890686244, + 0.01245785504579544, + -0.0010003683855757117, + 0.0008009566809050739, + -0.012279129587113857, + 0.001608532853424549, + -0.017938781529664993, + 0.052293866872787476, + -0.004891793243587017, + 0.02981412224471569, + -0.02555117942392826, + -0.06344106793403625, + -0.002215869724750519, + 0.05300876870751381, + 0.08250515908002853, + -0.020586572587490082, + 0.010981711558997631, + -0.029999468475580215, + -0.0012097093276679516, + 0.02716633304953575, + 0.03222361207008362, + 0.004643562715500593, + -0.011213393881917, + -0.027881236746907234, + 0.003978305496275425, + -0.03704259172081947, + -0.03336216136813164, + 0.01809764839708805, + 0.008803904056549072, + 0.024359675124287605, + -0.011815765872597694, + -0.003905491204932332, + 0.002596489619463682, + 0.032011788338422775, + 0.024584736675024033, + 0.01547633670270443, + -0.008426593616604805, + 0.0022704806178808212, + -0.021817795932292938, + -0.010419056750833988, + 0.003179003717377782, + 0.0038359868340194225, + 0.016760515049099922, + 0.006030343472957611, + 0.04427105933427811, + -0.05676863342523575, + 0.021460343152284622, + -0.01652221381664276, + 0.013099944218993187, + -0.019818713888525963, + 0.0103065250441432, + 0.026305800303816795, + 0.01190181914716959, + -0.02275776118040085, + 0.007354238536208868, + 0.033309206366539, + -0.02454501949250698, + -0.01343091856688261, + -0.0586220845580101, + -0.029522866010665894, + 0.027510544285178185, + -0.013291909359395504, + -0.020626289770007133, + -0.004193438682705164, + 0.044403448700904846, + -0.013702317140996456, + 0.0031045344658195972, + -0.0012941076420247555, + 0.01993786357343197, + 0.0016002585180103779, + -0.026001304388046265, + 0.01652221381664276, + -0.02981412224471569, + -0.014629043638706207, + -0.013536829501390457, + -0.010988331399857998, + 0.003988234791904688, + 0.04845456779003143, + -0.02756350114941597, + -0.008903196081519127, + 0.011193535290658474, + 0.04387389123439789, + 0.002222489332780242, + 0.050678715109825134, + -0.01681347005069256, + -0.014231874607503414, + -0.011696615256369114, + -0.018944941461086273, + -0.06280559301376343, + 0.0064010340720415115, + -0.022837193682789803, + -0.015873504802584648, + -0.04498596489429474, + 0.06137578934431076, + 0.005990626290440559, + 0.03574517369270325, + 0.007572681177407503, + -0.004504553973674774, + -0.0013363069156184793, + -0.003106189426034689, + 0.014006813056766987, + -0.008095620200037956, + -0.010333003476262093, + 0.00585161754861474, + 0.008916434831917286, + -0.01695909909904003, + 0.010498490184545517, + -0.031879398971796036, + 0.021433865651488304, + -0.002609728602692485, + 0.01849481835961342, + -0.009664435870945454, + -0.021778078749775887, + 0.013649361208081245, + 0.017369506880640984, + 0.01897142082452774, + 0.005507404450327158, + 0.007327760569751263, + -0.0060601308941841125, + -0.014258353039622307, + 0.007810982409864664, + 0.048560481518507004, + 0.012199695222079754, + -0.011100862175226212, + 0.010147658176720142, + 0.004928200505673885, + 0.0011162093142047524, + 0.027642935514450073, + -0.007241707295179367, + 0.010756650008261204, + -0.01215335913002491, + -0.0066889813169837, + 0.028093058615922928, + -0.0019461261108517647, + 0.004501244053244591, + -0.014245114289224148, + -0.01645601913332939, + 0.024055179208517075, + 0.03794284164905548, + -0.03021129220724106, + 0.01552929263561964, + -0.006265334784984589, + 0.024518541991710663, + -0.015145362354815006, + 0.003931968938559294, + 0.007625637110322714, + 0.003981615416705608, + 0.029972990974783897, + -0.01752837374806404, + 0.02833135984838009, + -0.02155301533639431, + -0.05973415821790695, + 0.005037421826273203, + 0.018944941461086273, + -0.01312642265111208, + 0.010604402050375938, + -0.006132944952696562, + -0.03730737045407295, + 0.007897036150097847, + -0.014417219907045364, + -0.002255586674436927, + -0.01652221381664276, + 0.01879931427538395, + 0.02631903998553753, + 0.010379339568316936, + 0.010319763794541359, + -0.013391201384365559, + -0.0022208343725651503, + 0.015185079537332058, + 0.006308361422270536, + 0.0260542593896389, + -0.007916893810033798, + 0.001424014917574823, + 0.02679564245045185, + -0.038525354117155075, + -0.007433672435581684, + -0.02498190477490425, + 0.0011418596841394901, + 0.023724203929305077, + -0.04877230525016785, + -0.029840601608157158, + -0.008605320006608963, + 0.02883443981409073, + -0.0008369500865228474, + 0.01050510909408331, + 0.018547773361206055, + 0.006023723632097244, + -0.006119706202298403, + 0.040802452713251114, + 0.004031261429190636, + 0.03786340728402138, + 0.0025302949361503124, + -0.00961809977889061, + -0.01535718608647585, + 0.018825791776180267, + 0.02101021818816662, + -0.017938781529664993, + 0.004094146192073822, + 0.02507457695901394, + -0.01725035533308983, + -0.02585567533969879, + -0.0024657549802213907, + 0.0020421084482222795, + -0.0025898702442646027, + -0.006119706202298403, + 0.02745758928358555, + -0.010127799585461617, + 0.02743111178278923, + 0.009631338529288769, + 0.028755007311701775, + 0.02430671826004982, + 0.01203420851379633, + -0.02981412224471569, + 0.0267559252679348, + -0.05247921124100685, + 0.0586220845580101, + -0.0002794660395011306, + 0.018825791776180267, + -0.016839949414134026, + -0.015238035470247269, + -0.022519459947943687, + -0.0195009782910347, + 0.014006813056766987, + 0.02537907287478447, + -0.0005365913384594023, + 0.02198990248143673, + -0.019487738609313965, + -0.0020917546935379505, + 0.012808687053620815, + 0.02225468121469021, + 0.04358263313770294, + -0.003634092630818486, + 0.008744328282773495, + 0.003769791917875409, + -0.014231874607503414, + -0.0015199973713606596, + 0.019514217972755432, + -0.023141689598560333, + -0.017978498712182045, + -0.041517358273267746, + 0.01836242899298668, + 0.019130287691950798, + -0.008770806714892387, + -0.05687454342842102, + -0.0008067487506195903, + 0.03775749355554581, + 0.0023714276030659676, + 0.0031078443862497807, + -0.043397288769483566, + -0.027775324881076813, + 0.00031876916182227433, + 0.0216854065656662, + -0.004627014044672251, + 0.016773754730820656, + 0.01331176795065403, + -0.007731548976153135, + 0.009909356944262981, + 0.016773754730820656, + 0.009849781170487404, + -0.003053233725950122, + -0.0071093179285526276, + 0.010498490184545517, + 0.0159132219851017, + -0.015185079537332058, + 0.011537747457623482, + 0.016005894169211388, + 0.022016379982233047, + -0.004560819361358881, + -0.013861184008419514, + -0.012888121418654919, + -0.0166546031832695, + 0.02198990248143673, + -0.011756191030144691, + -0.00808900035917759, + -0.005682820919901133, + -0.016058851033449173, + 0.011173676699399948, + 0.017012055963277817, + -0.01127958856523037, + 0.01259024441242218, + 0.05422675237059593, + -0.021698644384741783, + 0.008532505482435226, + 0.004484695382416248, + 0.016469258815050125, + -0.032647259533405304, + 0.04257647320628166, + 0.004031261429190636, + 0.030290724709630013, + -0.014602565206587315, + -0.009644577279686928, + 0.024770081043243408, + -0.02716633304953575, + -0.012146739289164543, + -0.023141689598560333, + -0.0009912666864693165, + -0.017740197479724884, + -0.006248786114156246, + 0.015582248568534851, + -0.020493900403380394, + -0.004848766606301069, + 0.016906144097447395, + -0.01522479671984911, + 0.022466503083705902, + -0.010399198159575462, + -0.022267919033765793, + 0.007863937877118587, + -0.000738071626983583, + 0.0074601504020392895, + -0.005335298366844654, + 0.007784504443407059, + 0.0033891720231622458, + 0.004633633885532618, + -0.025299640372395515, + 0.04752784222364426, + 0.008029425516724586, + -0.04522426426410675, + -0.04969903081655502, + 0.02780180238187313, + 0.015502814203500748, + 0.0058185202069580555, + -0.011120720766484737, + 0.00013456154556479305, + 0.046654071658849716, + 0.009306984022259712, + -0.027378154918551445, + 0.013649361208081245, + -0.023591814562678337, + -0.017382746562361717, + -0.023949267342686653, + 0.00025278126122429967, + 0.030502548441290855, + -0.022201724350452423, + -0.012159978970885277, + -0.02854318358004093, + 0.03119097463786602, + 0.02931104227900505, + 0.01529099140316248, + 0.000737657945137471, + -0.008956152014434338, + 0.0001105659466702491, + 0.017832869663834572, + 0.026848597452044487, + 0.052293866872787476, + -0.04413866996765137, + 0.03532152622938156, + 0.024214046075940132, + -0.004991085268557072, + -0.010915516875684261, + 0.00032373378053307533, + 0.0013694042572751641, + -0.010074843652546406, + 0.03720146045088768, + -0.01709148846566677, + 0.005990626290440559, + 0.028251927345991135, + -0.01617800071835518, + 0.009717391803860664, + -0.004957987926900387, + -0.029125697910785675, + 0.032250091433525085, + 0.04088188707828522, + -0.030740849673748016, + 0.007049742620438337, + -0.010531587526202202, + 0.013457396067678928, + 0.014933539554476738, + 0.004411881323903799, + -0.017766674980521202, + 0.04074949771165848, + 0.005775493569672108, + -0.016429541632533073, + 0.015516052953898907, + -0.022334113717079163, + -0.047289542853832245, + -0.007281424477696419, + -0.03910786658525467, + 0.013649361208081245, + -0.013583166524767876, + 0.03021129220724106, + 0.029628777876496315, + -0.013967095874249935, + -0.02491571009159088, + 0.016879664734005928, + 0.003231959417462349, + -0.019765757024288177, + 0.002189391991123557, + 0.003978305496275425, + -0.003228649729862809, + 0.02078515663743019, + -0.00674855662509799, + 0.006937211379408836, + 0.011325924657285213, + 0.0036009952891618013, + -0.029867079108953476, + 0.02817249298095703, + 0.04570086672902107, + -0.015118884854018688, + -0.0008489479077979922, + 0.033997632563114166, + 0.004193438682705164, + 0.005993936210870743, + 0.014178918674588203, + -0.03831353038549423, + -0.0022721353452652693, + -0.01541014201939106, + 0.015317468903958797, + -0.005083757918328047, + -0.010432295501232147, + 0.008916434831917286, + -0.040670063346624374, + 0.014033290557563305, + -0.03344159573316574, + -0.0038889425341039896, + 0.02319464646279812, + 0.02360505424439907, + 0.022082574665546417, + -0.002877817489206791, + -0.019659845158457756, + -0.019249437376856804, + 0.0002896021178457886, + 0.010968472808599472, + 0.006715459283441305, + -0.0011484791757538915, + -0.01043891441076994, + -0.002472374588251114, + 0.004133863374590874, + 0.025564419105648994, + 0.025471746921539307, + -0.01840214431285858, + -0.004914961289614439, + -0.03945207968354225, + 0.01134578324854374, + 0.007201990578323603, + -0.0206130500882864, + -0.03381228819489479, + -0.004838837310671806, + -0.0013933998998254538, + -0.0038624645676463842, + 0.006897494662553072, + 0.005801971536129713, + 0.03497731313109398, + -0.01718416064977646, + 0.0070166452787816525, + -0.0239095501601696, + -0.01608532853424549, + -0.017343029379844666, + -0.0543326660990715, + 0.021407388150691986, + -0.015092406421899796, + 0.026398472487926483, + 0.025220206007361412, + 0.009889498353004456, + -0.002149675041437149, + -0.0015348911983892322, + -0.010346242226660252, + -0.02417432889342308, + 0.0002877403749153018, + -0.011656898073852062, + -0.015820549800992012, + 0.04548904299736023, + 0.006500326097011566, + 0.008956152014434338, + -0.0005229386733844876, + -0.012159978970885277, + 0.012252651154994965, + -0.018071170896291733, + -0.033891718834638596, + -0.03987572714686394, + 0.0046667312271893024, + 0.01742246188223362, + -0.015569008886814117, + 0.015833787620067596, + -0.023644771426916122, + 0.023644771426916122, + 0.0307143721729517, + 0.009260647930204868, + -0.06460609287023544, + 0.003271676367148757, + 0.013384581543505192, + 0.008367018774151802, + 0.006950450595468283, + -0.027378154918551445, + 0.0021645689848810434, + 0.002017285441979766, + -0.016839949414134026, + -0.03680428862571716, + -0.000862186832819134, + -0.05271751061081886, + -0.017832869663834572, + 0.009095161221921444, + 0.001443873392418027, + -0.01993786357343197, + -0.004024642053991556, + -0.006271954160183668, + -0.010472011752426624, + 0.025339357554912567, + -0.001848488813266158, + -0.03857830911874771, + -0.0032749860547482967, + 0.025405552238225937, + 0.009538666345179081, + 0.06015780568122864, + 0.029019786044955254, + 0.03608938679099083, + -0.014920300804078579, + -0.03317681699991226, + 0.02165892720222473, + 0.022347353398799896, + 0.005997245665639639, + -0.019951103255152702, + -0.010829463601112366, + -0.0007624809513799846, + -0.013649361208081245, + -0.011001570150256157, + 0.016270672902464867, + 0.014549610204994678, + -0.016601648181676865, + -0.00509368721395731, + 0.007069601211696863, + 0.025683568790555, + 0.007777885068207979, + 0.008380257524549961, + -0.0010740100406110287, + 0.010141038335859776, + 0.025630613788962364, + -0.015423380769789219, + 0.007539583835750818, + -0.019924625754356384, + 0.010637499392032623, + -0.005868166219443083, + -0.027722368016839027, + -0.035268571227788925, + -0.020467421039938927, + -0.0007384853670373559, + 0.030370159074664116, + -0.029972990974783897, + 0.02716633304953575, + -0.014245114289224148, + -0.03172053396701813, + 0.03415650129318237, + 0.004729615990072489, + -0.005408112425357103, + 0.010088082402944565, + 0.04985789954662323, + -0.009525426663458347, + -0.009829922579228878, + 0.022810716181993484, + 0.02165892720222473, + -0.0075859203934669495, + 0.03622177615761757, + 0.017170922830700874, + -0.006543352734297514, + 0.008300824090838432, + 0.0045541999861598015, + -0.030661415308713913, + -0.006636025384068489, + -0.019090570509433746, + 0.00395182752981782, + -0.03770453855395317, + 0.026464667171239853, + 0.006884255912154913, + 0.010200613178312778, + -0.014417219907045364, + -0.011061145924031734, + -0.005689440295100212, + -0.008016185835003853, + 0.011934916488826275, + -0.00795661099255085, + -0.026266083121299744, + 0.007486628368496895, + 0.00305157876573503, + -0.004981156438589096, + 0.02336675301194191, + 0.018918463960289955, + 0.01203420851379633, + -0.010028507560491562, + -0.019659845158457756, + -0.009949073195457458, + -0.012424757704138756, + -0.009306984022259712, + 0.016879664734005928, + -0.02296958491206169, + 0.03378580883145332, + -0.028013626113533974, + 0.005815210286527872, + -0.029258087277412415, + 0.012629961594939232, + -0.02518048882484436, + -0.03558630496263504, + -0.0025005072820931673, + -0.006348078139126301, + -0.0023515690118074417, + -0.012107023037970066, + 0.00770507100969553, + -0.029522866010665894, + 0.036407120525836945, + 0.014125963672995567, + -0.005275723058730364, + -0.0008696337463334203, + -0.0008497753296978772, + 0.031508710235357285, + 0.032276567071676254, + -0.0062752640806138515, + 0.003710216609761119, + 0.0022886840160936117, + -0.01035948097705841, + 0.021142609417438507, + 0.011915057897567749, + 0.015502814203500748, + -0.04159679263830185, + -0.01897142082452774, + 0.03277964890003204, + -0.024214046075940132, + -0.017409224063158035, + 0.008777426555752754, + 0.008863478899002075, + -0.015370424836874008, + 0.0007910274434834719, + -0.00924740917980671, + 0.007076220586895943, + 0.018852269276976585, + 0.026067499071359634, + -0.011742951348423958, + 0.006351388059556484, + 0.0034123403020203114, + -0.004868625197559595, + 0.00617597158998251, + -0.021672166883945465, + 0.013847945258021355, + -0.04562143236398697, + -0.02417432889342308, + 0.017170922830700874, + 0.02115584723651409, + 0.002586560556665063, + -0.02319464646279812, + 0.0025518082547932863, + 0.005133404396474361, + -0.014615804888308048, + -0.002396250609308481, + 0.03082028403878212, + 0.0005378325004130602, + 0.022718043997883797, + 0.02631903998553753, + -0.00876418687403202, + 0.023618292063474655, + -0.016072088852524757, + 0.0005928569007664919, + 0.0006147839012555778, + -0.009525426663458347, + 0.0023201266303658485, + -0.0035149420145899057, + 0.024770081043243408, + 0.0012858333066105843, + 0.012583625502884388, + 0.02883443981409073, + -0.026676490902900696, + 0.029125697910785675, + -0.036513034254312515, + -0.016032371670007706, + 0.024359675124287605, + 0.014748194254934788, + -0.015767592936754227, + 0.00017489898891653866, + 0.02347266487777233, + 0.002482303651049733, + 0.026769163087010384, + 0.007632256485521793, + 0.011193535290658474, + -0.012173217721283436, + 0.010889039374887943, + 0.015502814203500748, + -0.0022655159700661898, + 0.0017392674926668406, + 0.014443698339164257, + -0.008572222664952278, + -0.002012321026995778, + -0.03031720407307148, + -0.03304442763328552, + 0.02367124892771244, + 0.005050660576671362, + 0.01165027916431427, + 0.013543449342250824, + -0.02192370593547821, + 0.017978498712182045, + -0.007268185261636972, + 9.422411676496267e-5, + 0.005527263041585684, + 0.007407194469124079, + -0.02115584723651409, + 0.043529678136110306, + 0.006258715409785509, + -0.002748737810179591, + 0.009167974814772606, + -0.008320681750774384, + -0.011749571189284325, + -0.000736830523237586, + 0.01886550895869732, + 0.021976662799715996, + 0.022201724350452423, + -0.027020704001188278, + 0.0027652864810079336, + 0.028649095445871353, + 0.02131471410393715, + -0.005206218454986811, + 0.001402501598931849, + 0.009651197120547295, + -0.004021332133561373, + -0.030343681573867798, + -0.017700480297207832, + 0.010465392842888832, + 0.0011311030248180032, + 0.02185751125216484, + -0.005656342953443527, + -0.010650738142430782, + -0.03119097463786602, + -0.000560173240955919, + -0.0023432946763932705, + -0.02944343164563179, + 0.003147561103105545, + 0.018812552094459534, + 0.018944941461086273, + 0.014615804888308048, + 0.022876910865306854, + -0.018282994627952576, + 0.004660111386328936, + 0.005633174441754818, + -0.025034861639142036, + 0.013358104042708874, + 0.002973799826577306, + -0.006732007954269648, + -0.012484333477914333, + -0.002068586414679885, + -0.023287318646907806, + 0.0020404537208378315, + 0.0041106948629021645, + 0.008717850781977177, + 0.004114004783332348, + -0.010101321153342724, + -0.013794989325106144, + 0.014602565206587315, + 0.0023730823304504156, + -0.013847945258021355, + 0.001548130065202713, + -0.010975092649459839, + 0.0010152622126042843, + -0.022837193682789803, + -0.025564419105648994, + -0.049540162086486816, + -0.012391660362482071, + 0.008267726749181747, + 0.015012972988188267, + -0.017197400331497192, + -0.016469258815050125, + -0.021817795932292938, + 0.005570289678871632, + 0.005408112425357103, + 0.008016185835003853, + -0.009128258563578129, + 0.00388232315890491, + -0.00446483725681901, + -0.002378046978265047, + -0.005533882416784763, + 0.02266508899629116, + -0.0008572222432121634, + 0.009479090571403503, + 0.03775749355554581, + -0.021963423117995262, + 0.004845457151532173, + -0.017237117514014244, + -0.0019246127922087908, + 0.0007339344592764974, + 0.008353780023753643, + 0.006708839442580938, + -0.003488464280962944, + -0.0031128088012337685, + -0.013384581543505192, + -0.01984519138932228, + 0.012881501577794552, + -0.014245114289224148, + -0.0057059889659285545, + -0.006007174961268902, + 0.008320681750774384, + 0.006698910612612963, + -0.01842862367630005, + -0.007923513650894165, + -0.012159978970885277, + -0.011564225889742374, + 0.013821467757225037, + -0.017819631844758987, + 0.0012014349922537804, + -0.0023945956490933895, + 0.015502814203500748, + -0.013238953426480293, + 0.023962505161762238, + 0.012418137863278389, + -0.021195564419031143, + 0.0094195157289505, + -0.010511728934943676, + -0.0162839125841856, + 0.009545285254716873, + 0.01306022796779871, + -0.005821829661726952, + -0.009518807753920555, + 0.003409030381590128, + 0.002439277246594429, + -0.02303577959537506, + -0.0046799699775874615, + 0.0206130500882864, + 0.0028430651873350143, + 0.005815210286527872, + 0.006017104256898165, + -0.014893822371959686, + -0.000592443160712719, + -0.0013743689050897956, + -0.03031720407307148, + -0.008976010605692863, + 0.02461121417582035, + -0.02192370593547821, + -0.0028827821370214224, + 0.02400222234427929, + 0.008479549549520016, + 0.00388232315890491, + 0.015833787620067596, + 0.020162925124168396, + -0.005245935171842575, + 0.023962505161762238, + -0.011054526083171368, + -0.013622882775962353, + 0.0011104171862825751, + -0.02363153174519539, + 0.002159604337066412, + -0.0025054719299077988, + 2.483596654201392e-5, + -0.00889657624065876, + 0.028410794213414192, + -0.026477906852960587, + 0.017568090930581093, + 0.022148769348859787, + -0.03172053396701813, + 0.020387988537549973, + 0.006387794855982065, + -0.008082381449639797, + 0.0018319401424378157, + 0.019858429208397865, + -0.013940618373453617, + 0.0010243640281260014, + -0.02585567533969879, + 0.0010673906654119492, + 0.009048824198544025, + 0.004905032459646463, + -0.010869180783629417, + -0.025286400690674782, + -0.015939699485898018, + -0.0017822941299527884, + 0.02161921001970768, + -0.010736791417002678, + -0.024862755089998245, + 0.013715555891394615, + 0.013900901190936565, + -0.011226632632315159, + 0.010432295501232147, + -0.026517624035477638, + 0.007248327136039734, + 0.007777885068207979, + -0.03219713643193245, + 0.03812818601727486, + -0.00527903251349926, + 0.023922787979245186, + 0.019090570509433746, + -0.030370159074664116, + -0.04159679263830185, + 0.005368395708501339, + 0.016270672902464867, + 0.026001304388046265, + -0.0037234555929899216, + -0.02830488234758377, + -0.017012055963277817, + -0.012623341754078865, + -0.005381634458899498, + 0.015436619520187378, + -0.026345517486333847, + 0.0020884450059384108, + 0.02769589051604271, + 0.007036503870040178, + 0.007413813844323158, + -0.019633367657661438, + -0.021698644384741783, + 0.010207233019173145, + -0.024783320724964142, + 0.008790665306150913, + -0.0010756650008261204, + -7.110765727702528e-5, + -0.002470719628036022, + 0.010822844691574574, + -0.0023631532676517963, + -0.009637958370149136, + -0.019659845158457756, + 0.005269103217869997, + -0.0030416494701057673, + 0.0069041140377521515, + 0.02198990248143673, + -0.02588215470314026, + 0.007427053060382605, + 0.038392964750528336, + -0.004319208674132824, + 0.007208609953522682, + 0.002958906115964055, + -0.007566061802208424, + -0.004047810100018978, + -0.00864503625780344, + -0.015873504802584648, + -0.012193076312541962, + 0.006007174961268902, + -0.0021629140246659517, + -0.004696518648415804, + 0.010101321153342724, + -0.002669303910806775, + 0.03698963671922684, + 0.010922136716544628, + 0.005322059150785208, + 0.019831951707601547, + 0.009479090571403503, + -0.028728527948260307, + 0.010094702243804932, + 0.0017293383134528995, + -0.004488005302846432, + 6.490189844043925e-5, + -0.012073925696313381, + -0.0056066969409585, + -0.0033842073753476143, + -0.014165679924190044, + 0.011537747457623482, + -0.006530113983899355, + -0.002877817489206791, + -0.00024140403547789901, + -0.0036738095805048943, + 0.010081462562084198, + -0.0013975370675325394, + 0.0017624356551095843, + -0.00465018255636096, + 0.017144445329904556, + 0.005540501791983843, + 0.0045541999861598015, + -0.0024789939634501934, + 0.017131205648183823, + 0.005470997653901577, + -0.0039485180750489235, + -0.02340647019445896, + 0.0038591548800468445, + -0.0006681534578092396, + -0.012649820186197758, + 0.006784963421523571, + 0.001704515190795064, + -0.01860073022544384, + 0.02732519991695881, + 0.032250091433525085, + 0.008082381449639797, + 0.005368395708501339, + -0.02165892720222473, + 0.0009490674710832536, + 0.011173676699399948, + -0.0077116903848946095, + -0.012007731013000011, + 0.019262677058577538, + -0.026544101536273956, + -0.012054067105054855, + -0.011160437949001789, + 0.015489575453102589, + 0.0003239406505599618, + 0.014430459588766098, + -0.015092406421899796, + -0.002596489619463682, + 0.006679052021354437, + -0.011425216682255268, + 0.008989249356091022, + -0.005259174387902021, + 0.02933751977980137, + 0.01903761550784111, + 0.0025484985671937466, + -0.005735776387155056, + 0.012027589604258537, + 0.007850699126720428, + -0.004296040162444115, + -0.00318065844476223, + 0.008280965499579906, + 0.00030904682353138924, + 0.04535665363073349, + -0.004408571403473616, + -0.01497325673699379, + 0.0001408707321388647, + -0.004014712758362293, + -0.0003208377747796476, + 0.0184683408588171, + 0.024558259174227715, + 0.013993573375046253, + 0.004891793243587017, + -0.004312588833272457, + 0.005100306589156389, + -0.024293478578329086, + -0.00616935221478343, + -0.0004972881870344281, + 0.005722537636756897, + -0.017078250646591187, + 0.0006847021286375821, + -0.001891515450552106, + 0.00381943816319108, + 0.011438455432653427, + -0.013265430927276611, + 0.015026211738586426, + 0.012749112211167812, + 0.01265643909573555, + -0.04413866996765137, + -0.01930239424109459, + -0.014787910506129265, + 0.009505568072199821, + -0.010955234058201313, + 0.018944941461086273, + 0.0025087816175073385, + 0.003428888972848654, + -0.0036374025512486696, + 0.008889957331120968, + 0.01943478360772133, + 0.016125045716762543, + 0.01584702730178833, + 0.021102892234921455, + -0.008658275939524174, + 0.01324557326734066, + -0.024889232590794563, + 0.014615804888308048, + -0.015065928921103477, + 0.015012972988188267, + 0.014112723991274834, + 0.023644771426916122, + -0.013384581543505192, + -0.015516052953898907, + 0.007076220586895943, + 0.01722387783229351, + 0.010220471769571304, + -0.03270021453499794, + 0.0012411518255248666, + -0.022784238681197166, + -0.003291534725576639, + 0.005768873728811741, + 0.002917534438893199, + 0.0006586379022337496, + 0.01331176795065403, + 0.0004728788626380265, + 0.006305051501840353, + -0.013358104042708874, + -0.010789747349917889, + -0.0005547949112951756, + 0.014284830540418625, + -0.0347125343978405, + -0.0027255695313215256, + -0.0058549270033836365, + -0.010855942033231258, + -0.011054526083171368, + -0.0044052619487047195, + 0.008042664267122746, + 0.003634092630818486, + -0.0005316267488524318, + 0.007254946511238813, + -0.014298069290816784, + 0.012133500538766384, + -0.0108427032828331, + 0.022241441532969475, + 0.004488005302846432, + -0.013980334624648094, + -0.04294716566801071, + -0.01178266853094101, + 0.002396250609308481, + -0.0033610393293201923, + -0.01061102095991373, + -0.016138283535838127, + -0.04334433376789093, + 0.015966176986694336, + -0.010869180783629417, + 0.022003140300512314, + -0.0026146932505071163, + 0.03280612826347351, + -0.007288043852895498, + 0.02854318358004093, + -0.01722387783229351, + -0.013199236243963242, + 0.021963423117995262, + 0.02065276727080345, + 0.03341512009501457, + -0.021460343152284622, + 0.02518048882484436, + 0.026107216253876686, + -0.004233155399560928, + -0.0206130500882864, + 0.0011327579850330949, + -0.006589688826352358, + 0.0037267652805894613, + 0.014496654272079468, + -0.003912110812962055, + 0.005176430568099022, + -0.003541419981047511, + -0.018243277445435524, + -0.015582248568534851, + -0.013662599958479404, + 0.023274080827832222, + -0.014774671755731106, + -0.010584543459117413, + 0.016230957582592964, + -0.002970490138977766, + 0.008611938916146755, + -0.0036374025512486696, + 0.009062063880264759, + -0.014245114289224148, + 0.002204285701736808, + 0.009863019920885563, + 0.01183562446385622, + 0.01722387783229351, + 0.01678699254989624, + -0.013291909359395504, + 0.0033991013187915087, + 0.0028794724494218826, + -0.013794989325106144, + 0.011941536329686642, + 0.005358466412872076, + 0.011855483055114746, + 0.018825791776180267, + -0.03582460805773735, + -0.005993936210870743, + 0.006394414696842432, + 0.013781750574707985, + 0.013053608126938343, + 0.004180199466645718, + -0.0003351110208313912, + -0.014999734237790108, + -0.0071424152702093124, + 0.005308820400387049, + 0.014284830540418625, + 0.004703138023614883, + 0.018944941461086273, + 0.0227974783629179, + -0.0033626940567046404, + -0.010802986100316048, + 0.03262078016996384, + 0.007453530561178923, + 0.005884714890271425, + -0.017885826528072357, + 0.016270672902464867, + 0.0030797114595770836, + 0.0053617763333022594, + -0.028384316712617874, + -0.01018737442791462, + 0.01766076311469078, + -0.0063116708770394325, + -0.004550890065729618, + -0.020904308184981346, + 0.012385040521621704, + 0.018891986459493637, + 0.025299640372395515, + -0.01903761550784111, + -0.0012717669596895576, + -0.0008547399193048477, + -0.005282342433929443, + 0.025061339139938354, + -0.007334379944950342, + 0.006586379371583462, + 0.010405817069113255, + 0.002977109747007489, + -0.014960017055273056, + -0.0069041140377521515, + 0.012292368337512016, + -0.002090099733322859, + -0.005189669784158468, + -0.007301282603293657, + -0.009207691997289658, + -0.007546203210949898, + -0.008300824090838432, + 0.05761592462658882, + 0.008002947084605694, + 0.0059343609027564526, + 0.009690914303064346, + -0.007923513650894165, + -0.03481844812631607, + 0.00527903251349926, + 0.009598241187632084, + 0.019818713888525963, + -9.675812907516956e-5, + -0.01943478360772133, + -0.005874785594642162, + 0.03937264904379845, + 0.005335298366844654, + -0.021645689383149147, + 0.0013263776199892163, + 0.02326084114611149, + 0.0005386599223129451, + 0.006844538729637861, + 0.011319304816424847, + 0.003167419694364071, + -0.009426134638488293, + -0.00011697856825776398, + 0.006530113983899355, + -0.014589326456189156, + 0.01621771790087223, + -0.01879931427538395, + -0.020467421039938927, + 0.020255599170923233, + 0.018110888078808784, + 0.010889039374887943, + -0.020454183220863342, + -0.00496791722252965, + -0.005467687733471394, + 0.006023723632097244, + -0.0005353501765057445, + 0.009134877473115921, + 0.0005001841927878559, + -0.0019477810710668564, + -0.00566627224907279, + -0.007380716502666473, + -0.006523494143038988, + 0.01840214431285858, + 0.011550987139344215, + -0.031985312700271606, + 0.0037929601967334747, + -0.027987146750092506, + 0.007453530561178923, + -0.010730171576142311, + 0.006725388113409281, + 0.014311308972537518, + -0.014165679924190044, + 0.015370424836874008, + 0.018547773361206055, + 0.01766076311469078, + -0.007076220586895943, + 0.028384316712617874, + 0.004683279898017645, + 0.004583987407386303, + -0.012113641947507858, + -0.0231681689620018, + -0.02081163413822651, + 0.007632256485521793, + -0.005758944898843765, + -0.01954069547355175, + 0.00901572685688734, + -0.003188933013007045, + -0.005040731281042099, + 0.004898412618786097, + -0.014880583621561527, + -0.020533617585897446, + -0.01698557659983635, + 0.001381815760396421, + -0.018587490543723106, + -0.00923417042940855, + 0.021433865651488304, + 0.009776966646313667, + 0.02504809945821762, + 0.021327953785657883, + -0.00920107215642929, + -0.01621771790087223, + -0.0016002585180103779, + -0.037889882922172546, + -0.004660111386328936, + 0.020864591002464294, + -0.028860919177532196, + 0.03574517369270325, + -0.040511198341846466, + 0.003334561362862587, + -0.026438189670443535, + -0.02819897048175335, + -0.02041446603834629, + 0.005557050462812185, + 0.02585567533969879, + -0.003749933559447527, + -0.00776464631780982, + 0.0013586475979536772, + 0.014271591790020466, + 0.0006900804582983255, + -0.012497572228312492, + -0.0013586475979536772, + 0.0035712076351046562, + -0.013887662440538406, + -0.014125963672995567, + -0.012874881736934185, + -0.006546662654727697, + 0.02487599290907383, + -0.001630873535759747, + -0.010399198159575462, + -0.0009656161419115961, + -0.004484695382416248, + -0.017065010964870453, + 0.021394148468971252, + -0.0006433303933590651, + -0.007969849742949009, + 0.0005320404306985438, + 0.008300824090838432, + -0.008055903017520905, + -0.028278404846787453, + -0.007367477752268314, + 0.003581136930733919, + 0.03360046446323395, + -0.0008845275733619928, + -0.021672166883945465, + 0.0008195739355869591, + 0.0022588963620364666, + -0.008380257524549961, + -0.01691938191652298, + 0.0017210639780387282, + -0.009227550588548183, + 0.016442779451608658, + 0.01621771790087223, + 0.037783972918987274, + 0.019130287691950798, + 0.027907714247703552, + 0.007056361995637417, + -0.013285289518535137, + 0.005689440295100212, + -0.009048824198544025, + -0.03722793608903885, + 0.01759456843137741, + 0.00011635798728093505, + 0.0032451984006911516, + 0.017038533464074135, + 0.011875341646373272, + 0.0013950547436252236, + 0.010273427702486515, + -0.0213544312864542, + 0.007294663228094578, + -0.0034983933437615633, + 0.022334113717079163, + -0.024717126041650772, + 0.0004244739538989961, + -0.004928200505673885, + 0.0030350300949066877, + 0.005543811712414026, + -0.02441263012588024, + 0.020520377904176712, + -0.021195564419031143, + 0.006768414750695229, + 0.009565143845975399, + -0.0014943468850106, + -0.014390742406249046, + 0.009009107947349548, + -0.008472929708659649, + 0.005742396228015423, + 0.018706640228629112, + 0.004160340875387192, + 0.00973725039511919, + -0.010134418494999409, + 0.023618292063474655, + 0.01601913385093212, + 0.017012055963277817, + -0.02078515663743019, + 0.005202908534556627, + -0.01324557326734066, + 0.008247868157923222, + 0.009207691997289658, + -0.015873504802584648, + 0.002771905856207013, + -0.007327760569751263, + -0.016628125682473183, + 0.0019279225962236524, + -0.005765564274042845, + -0.03222361207008362, + -0.012186456471681595, + 0.010518348775804043, + 0.005480926483869553, + 0.013291909359395504, + -0.009081922471523285, + 0.002973799826577306, + 0.012385040521621704, + 0.0031227380968630314, + 0.013133041560649872, + 0.007658734451979399, + 0.003124393057078123, + 0.02594834938645363, + 0.017832869663834572, + 0.02968173287808895, + -0.006089918781071901, + -0.011325924657285213, + 0.006003865506500006, + 0.014112723991274834, + -0.001984188100323081, + -0.005447829142212868, + 0.001214673975482583, + -0.02017616480588913, + -0.010716932825744152, + -0.01134578324854374, + 0.0018782764673233032, + -0.01943478360772133, + -0.026716208085417747, + 0.02198990248143673, + 0.006910733878612518, + 0.017912304028868675, + -0.01910381019115448, + 0.010855942033231258, + 0.016707560047507286, + -0.0023101973347365856, + -0.011418596841394901, + 0.002907605143263936, + -0.009009107947349548, + 0.023340275511145592, + -0.009776966646313667, + -0.002490578219294548, + -0.014562848955392838, + 0.0009407931356690824, + 0.002679233206436038, + 0.020427705720067024, + 0.008439832367002964, + 0.021883990615606308, + -0.011438455432653427, + -0.008651656098663807, + 0.008201532065868378, + 0.006937211379408836, + 0.01220631506294012, + 0.006897494662553072, + -0.016098568215966225, + 0.012729253619909286, + 0.001961020054295659, + -0.01984519138932228, + -0.00815519504249096, + -0.007327760569751263, + -0.005044041201472282, + -0.002907605143263936, + -0.013967095874249935, + -0.019448023289442062, + 0.004951368551701307, + -0.008664894849061966, + -2.3982674974831752e-5, + -0.01183562446385622, + 0.0015390283660963178, + 0.014006813056766987, + -0.003773101605474949, + 0.013993573375046253, + 0.0003146319941151887, + 0.0016540416982024908, + 0.028781484812498093, + -0.00016476291057188064, + -0.018335949629545212, + 0.0121004031971097, + 0.020560095086693764, + -0.02400222234427929, + -0.009022346697747707, + -0.00419674813747406, + -0.0023333656135946512, + -0.022585654631257057, + 0.0004027537943329662, + -0.01947450079023838, + -0.011167056858539581, + 0.009174594655632973, + -0.0002947735774796456, + -0.0004935647593811154, + 0.01689290441572666, + 0.003918730188161135, + 0.011676756665110588, + -0.005345227662473917, + -0.02017616480588913, + 0.001744232140481472, + 0.024558259174227715, + -0.009313603863120079, + 0.0008704611682333052, + 0.01746217906475067, + -0.011524508707225323, + 0.004395332653075457, + -0.03481844812631607, + 0.02319464646279812, + 0.013821467757225037, + -0.014377503655850887, + 0.013252192176878452, + -0.011286207474768162, + 0.00017076180665753782, + -0.006976928561925888, + -0.009287125431001186, + 0.009081922471523285, + 0.016800232231616974, + -0.00021389183530118316, + -0.012298987247049809, + 0.03370637446641922, + -0.03349455073475838, + -0.003928659483790398, + 0.0007645495352335274, + -0.004504553973674774, + -0.014761433005332947, + -0.005527263041585684, + 0.0019395066192373633, + 0.029469911009073257, + 0.010882419534027576, + 0.0001544199767522514, + 0.02028207667171955, + 0.004415190778672695, + -0.0017177541740238667, + -0.020560095086693764, + -0.0027867997996509075, + -0.014033290557563305, + -0.009214311838150024, + 0.0010185720166191459, + 0.01903761550784111, + 0.0017806392861530185, + 0.011014808900654316, + -0.00949894916266203, + -0.004458217415958643, + 0.013351484201848507, + -0.001879931427538395, + 0.011067764833569527, + -0.011087623424828053, + 0.023353513330221176, + 0.020189404487609863, + 0.011590703390538692, + -0.013609644025564194, + 0.014642282389104366, + 0.018415383994579315, + -0.024319957941770554, + -0.0008158505079336464, + 0.002470719628036022, + 0.0019874977879226208, + -0.022453265264630318, + -0.009148117154836655, + 0.008519266732037067, + -0.014006813056766987, + -0.007996328175067902, + -0.013609644025564194, + -0.00980344507843256, + -0.0006689808797091246, + 0.004173580091446638, + 0.0072218491695821285, + 0.015171840786933899, + -0.004898412618786097, + 0.014125963672995567, + -0.0006801512208767235, + -0.012550528161227703, + 0.017581330612301826, + 0.022466503083705902, + 0.02290339022874832, + -0.01755485311150551, + -0.0055007850751280785, + -0.004163650795817375, + 0.01722387783229351, + -0.022466503083705902, + 0.003293189685791731, + -0.0031492160633206367, + 0.01624419540166855, + 0.0007831668481230736, + -0.0046568019315600395, + 0.005583528429269791, + -0.014536370523273945, + -0.0033312516752630472, + 0.02192370593547821, + -0.03733384981751442, + 0.0033825526479631662, + -0.005742396228015423, + -0.01805793307721615, + 0.0031111540738493204, + 0.00446483725681901, + -0.006871016696095467, + 0.016972338780760765, + 0.0005030802567489445, + 0.006463918834924698, + -0.01755485311150551, + 0.002533604623749852, + 0.032408956438302994, + -0.0017508516320958734, + -0.004041190724819899, + -0.009770347736775875, + -0.02618665061891079, + 0.02222820185124874, + 0.032647259533405304, + -0.004309279378503561, + 0.008128717541694641, + 0.019381828606128693, + -0.003746623871847987, + 0.004941439256072044, + 0.004044500179588795, + 0.02067924477159977, + -0.029655255377292633, + 0.0249421875923872, + -0.009167974814772606, + -0.007559442427009344, + -0.012623341754078865, + 0.0035050129517912865, + 0.008055903017520905, + -0.004537651315331459, + 0.021394148468971252, + -0.01035948097705841, + -0.009942454285919666, + -0.001475315890274942, + -0.0042132968083024025, + 0.0024541709572076797, + 0.01265643909573555, + -0.0031922427006065845, + -0.004871934652328491, + 0.0041901287622749805, + -0.013291909359395504, + 0.0045442706905305386, + 0.01914352737367153, + -0.021023457869887352, + -0.0032964993733912706, + 0.008539125323295593, + -0.006645954679697752, + -0.002432657638564706, + 0.002720604883506894, + -0.014576087705790997, + -0.0025915252044796944, + 0.004170270171016455, + 0.004617085214704275, + -0.01252404972910881, + 0.026901552453637123, + 0.015727875754237175, + -0.0019312322838231921, + -0.003003587480634451, + 0.006397724151611328, + 0.0022886840160936117, + -0.014496654272079468, + -0.0014480105601251125, + -0.03132336214184761, + -0.012530669569969177, + 0.021407388150691986, + -0.004468146711587906, + -0.01840214431285858, + 0.003073092084378004, + -0.025286400690674782, + -0.0007566889398731291, + -0.019593650475144386, + 0.00585161754861474, + -0.0021430556662380695, + -0.02142062596976757, + 0.01559548731893301, + 0.023830115795135498, + -0.0014165680622681975, + -0.001547302701510489, + -0.003000277793034911, + 0.003001932753250003, + -0.009664435870945454, + 0.0042132968083024025, + -0.0162839125841856, + -0.022241441532969475, + -0.01227250974625349, + -0.012894740328192711, + 0.023750683292746544, + -0.030025945976376534, + 0.00832730159163475, + 0.01567492075264454, + -0.005100306589156389, + -0.01190181914716959, + -0.0008762532379478216, + 0.004392022732645273, + 0.022678326815366745, + -0.0028546492103487253, + -0.014986495487391949, + 0.00894953217357397, + -0.023022539913654327, + 0.029761167243123055, + -0.004120624158531427, + 0.008069141767919064, + 0.01658840849995613, + 0.027245765551924706, + -0.00022485535009764135, + -0.001870002131909132, + -0.003544729668647051, + -0.01184886321425438, + -0.01601913385093212, + 0.0007422088528983295, + 0.0070960791781544685, + 0.001256873132660985, + 0.02732519991695881, + -0.0005874785711057484, + 0.008909815922379494, + 0.013781750574707985, + -0.006728698033839464, + 0.01552929263561964, + 0.02356533706188202, + 0.024187568575143814, + 0.0073608579114079475, + -0.004027951508760452, + 0.017832869663834572, + 0.00028691295301541686, + 0.004686589352786541, + 0.031005628407001495, + -0.006487087346613407, + 0.00425632344558835, + 0.02312845177948475, + -0.003687048563733697, + -0.018852269276976585, + -0.012424757704138756, + 0.017753437161445618, + -0.003455366939306259, + -0.007976469583809376, + 0.019884908571839333, + 0.01584702730178833, + 0.01725035533308983, + 0.014761433005332947, + -0.013649361208081245, + -0.021036697551608086, + 0.013834706507623196, + -0.005368395708501339, + 0.03921378031373024, + -0.009697533212602139, + -0.0014926920412108302, + 0.014536370523273945, + 0.003293189685791731, + 0.0003564174403436482, + -0.00892967451363802, + 0.0009705807897262275, + -0.0009573418064974248, + 0.009128258563578129, + 0.009929214604198933, + 0.016403064131736755, + 0.002470719628036022, + -0.007526345085352659, + -0.013272050768136978, + -0.02118232473731041, + 0.041411444544792175, + 0.0038988718297332525, + -0.021738361567258835, + 0.001692931167781353, + 0.01930239424109459, + 0.02014968730509281, + -6.304017006186768e-5, + 0.03370637446641922, + -0.011041287332773209, + 0.03484492376446724, + 0.0004476421163417399, + 0.013967095874249935, + 0.011206774041056633, + 0.006596308667212725, + -0.002720604883506894, + 0.011206774041056633, + 0.00605020159855485, + -0.0041106948629021645, + 0.012735873460769653, + -0.023379990831017494, + -0.004954678472131491, + 0.02716633304953575, + 0.026901552453637123, + 0.018944941461086273, + -0.013305148109793663, + 0.008539125323295593, + 0.005838378332555294, + -0.022373830899596214, + 0.020057015120983124, + 0.004243084695190191, + 0.005295581184327602, + -0.005484236404299736, + -0.011802527122199535, + -0.026345517486333847, + 0.011312685906887054, + 9.872329246718436e-5, + -0.019183242693543434, + 0.013583166524767876, + 0.017568090930581093, + -0.0038492255844175816, + 0.0018567632650956511, + -0.006576450075954199, + 0.018216799944639206, + -0.02225468121469021, + 0.018071170896291733, + -0.025405552238225937, + 0.007195371203124523, + 0.01615152321755886, + 0.0004372991679701954, + 0.0014529750915244222, + -0.014324547722935677, + 0.001165027846582234, + 0.00807576160877943, + 9.200038039125502e-5, + 0.01829623430967331, + -0.004372164141386747, + 0.007513105869293213, + 0.017197400331497192, + -0.012437996454536915, + 0.02034827135503292, + 0.0001681760768406093, + -0.020639527589082718, + 0.0008158505079336464, + 0.016495736315846443, + 0.00245086126960814, + 0.0005382461822591722, + 0.0006503635668195784, + -0.026160171255469322, + -0.03195883333683014, + -0.015436619520187378, + -0.0037366945762187243, + 0.002980419434607029, + -0.00015255824837367982, + -0.0010367755312472582, + -0.005686130374670029, + -0.014708477072417736, + -0.003905491204932332, + 0.01220631506294012, + -0.000623471976723522, + 0.012888121418654919, + -0.012054067105054855, + -0.006546662654727697, + -0.01927591674029827, + 0.02273128367960453, + 0.00579866161569953, + 0.01203420851379633, + -0.00943275447934866, + 0.03230304643511772, + 0.008684753440320492, + 0.008810523897409439, + 0.013285289518535137, + -0.0015671610599383712, + 0.0027437731623649597, + -0.0021447103936225176, + -0.012768970802426338, + 0.0159132219851017, + 0.010511728934943676, + 0.02312845177948475, + -0.0170252937823534, + 0.006381175480782986, + -0.004431739449501038, + -0.0078043630346655846, + -0.04321194440126419, + -0.0016590063460171223, + -0.023154929280281067, + -0.009406276047229767, + 0.006387794855982065, + -0.005990626290440559, + -0.009167974814772606, + -0.005408112425357103, + 0.0022588963620364666, + -0.007526345085352659, + 0.012226173654198647, + -0.002697436837479472, + -0.012563766911625862, + 0.00013569927250500768, + -0.011795907281339169, + -0.002191046718508005, + -0.013596405275166035, + 0.004425120074301958, + 0.016998816281557083, + -0.025127533823251724, + 0.00894953217357397, + 0.0034355083480477333, + -0.008148576132953167, + 0.006559901405125856, + -0.031270407140254974, + 0.03031720407307148, + -0.0010872490238398314, + -0.009386418387293816, + -0.018574250862002373, + 0.0037664822302758694, + 0.011438455432653427, + 0.01645601913332939, + -0.0013892626157030463, + 0.009538666345179081, + 0.007698451168835163, + -0.020996980369091034, + 0.00023747372324578464, + -0.004421810619533062, + 0.018627207726240158, + -0.018547773361206055, + 0.0026875075418502092, + 0.009068682789802551, + 0.02397574484348297, + 0.002886091824620962, + -0.029231609776616096, + 0.03971685841679573, + -0.009028966538608074, + 0.00616935221478343, + 0.009472470730543137, + 0.012418137863278389, + 0.024597974494099617, + -9.302174476033542e-6, + 0.0011782668298110366, + 0.001411603414453566, + -0.021897228434681892, + -0.003230304690077901, + 0.002844720147550106, + -0.03497731313109398, + 0.00191137392539531, + -0.007387335877865553, + 0.010366100817918777, + 0.008486169390380383, + 0.0055802189745008945, + -0.009909356944262981, + -0.012107023037970066, + -0.000768273021094501, + -0.02111613005399704, + -0.011378880590200424, + 0.005100306589156389, + 0.007043123245239258, + -0.00923417042940855, + -0.020454183220863342, + -0.01947450079023838, + 0.008618558757007122, + 0.006255405489355326, + 0.006990167312324047, + -0.006804822012782097, + 0.024730365723371506, + -0.006119706202298403, + -0.007817601785063744, + 0.01102804858237505, + -0.00023685315682087094, + -0.04162326827645302, + -0.011643659323453903, + 0.0030912957154214382, + -0.011689995415508747, + 0.004875244572758675, + -0.004891793243587017, + -0.009975551627576351, + -0.010597782209515572, + 0.017872586846351624, + -0.002604764187708497, + -0.019196482375264168, + -0.009406276047229767, + 0.0033395260106772184, + -0.011425216682255268, + 0.00011149681085953489, + 0.04821626842021942, + 0.00023333655553869903, + 0.0001756229903548956, + 0.007321141194552183, + -0.02249298244714737, + -0.00844645220786333, + 0.005345227662473917, + 0.0071424152702093124, + -0.013053608126938343, + 0.023922787979245186, + -0.022890150547027588, + -0.026332277804613113, + 0.007043123245239258, + 0.0066658128052949905, + 0.010094702243804932, + 0.0061726621352136135, + -0.019593650475144386, + 0.0073608579114079475, + 0.0004790846141986549, + 0.028596138581633568, + -0.010094702243804932, + -0.015767592936754227, + 0.03378580883145332, + -0.011643659323453903, + 0.007069601211696863, + -0.011815765872597694, + -0.002285374328494072, + -0.015688160434365273, + 0.01043891441076994, + -0.010405817069113255, + -0.013291909359395504, + -0.0013958821073174477, + 0.006030343472957611, + 0.005461068358272314, + -0.010339622385799885, + 0.0106772156432271, + 0.007420433219522238, + -0.014867344871163368, + 0.004574058577418327, + 0.012762350961565971, + -0.007281424477696419, + -0.018349189311265945, + -0.00770507100969553, + -0.015052690170705318, + 0.017779914662241936, + -0.020771916955709457, + -0.025524701923131943, + -0.008002947084605694, + 0.007592539768666029, + -0.0033478003460913897, + 0.007387335877865553, + -0.020427705720067024, + -0.012365182861685753, + -0.0021761530078947544, + -0.0081419562920928, + 0.016495736315846443, + 0.005709298420697451, + 0.0173959843814373, + 0.0003088399535045028, + 0.023525619879364967, + 0.011623800732195377, + 0.005408112425357103, + -0.012477713637053967, + 0.02514077164232731, + 0.014456937089562416, + -0.011888580396771431, + -0.028966829180717468, + -0.017700480297207832, + -0.012934457510709763, + -0.00471637723967433, + 0.008506027981638908, + -0.003241888713091612, + 0.005169811192899942, + -0.0124710937961936, + -0.026583818718791008, + -0.0006354697397910058, + 0.007288043852895498, + 0.011961393989622593, + 0.006487087346613407, + 0.016125045716762543, + 0.012835165485739708, + 0.018587490543723106, + -0.002555117942392826, + 0.007493247743695974, + 0.015820549800992012, + 0.009532046504318714, + -0.03415650129318237, + -0.014403981156647205, + -0.004713067319244146, + -0.0028496847953647375, + -0.010975092649459839, + 0.010531587526202202, + 0.005358466412872076, + -0.0033196676522493362, + -0.046918850392103195, + -0.008724470622837543, + -0.0032733313273638487, + 0.013662599958479404, + 0.011994491331279278, + -0.034633103758096695, + -0.027378154918551445, + -0.008565602824091911, + -0.011862101964652538, + 0.005384944379329681, + 0.00789041630923748, + 0.003769791917875409, + 0.0005419696681201458, + 0.005911192856729031, + 0.042788296937942505, + -0.00022588964202441275, + -0.007400575093924999, + -0.020824873819947243, + 0.005907882936298847, + 0.013152900151908398, + 0.0030598531011492014, + -0.007387335877865553, + 0.014827627688646317, + -0.009386418387293816, + 0.012067305855453014, + -0.0198716688901186, + 0.004951368551701307, + -0.001474488410167396, + -0.0034355083480477333, + 0.0006358834798447788, + 0.007354238536208868, + -0.0023714276030659676, + -0.009353320114314556, + -0.005315439775586128, + 0.018481578677892685, + -0.014536370523273945, + 0.016363346949219704, + 0.016800232231616974, + -0.015383663587272167, + -0.0022506220266222954, + 0.01220631506294012, + -0.02537907287478447, + -0.01547633670270443, + -0.009849781170487404, + -0.005510714370757341, + -0.019130287691950798, + -0.008731089532375336, + -0.01277558971196413, + 0.019567172974348068, + -0.006089918781071901, + -0.007559442427009344, + 0.007208609953522682, + -0.014231874607503414, + 0.014734955504536629, + 0.0020934094209223986, + 0.003541419981047511, + 0.006732007954269648, + -0.010326383635401726, + 0.011226632632315159, + -0.001091386191546917, + -0.010213852860033512, + -0.00035972718615084887, + 0.010836083441972733, + 0.022532697767019272, + -0.028993308544158936, + 0.02128823660314083, + 0.0209837406873703, + -0.01903761550784111, + -0.014443698339164257, + -0.021831033751368523, + -0.023327035829424858, + 0.006136254873126745, + 0.0065499721094965935, + -8.346746471943334e-5, + -0.018282994627952576, + -0.008909815922379494, + 7.731341611361131e-5, + -0.011385499499738216, + -0.012014349922537804, + 0.011544367298483849, + 0.001672245329245925, + 0.012067305855453014, + -0.03161462023854256, + 0.0012006076285615563, + -0.01615152321755886, + -0.003448747331276536, + -0.03293851763010025, + -0.02817249298095703, + 0.013523590750992298, + -0.000498943030834198, + 0.015198318287730217, + 0.008128717541694641, + -0.012570385821163654, + -0.0021231970749795437, + 0.014787910506129265, + 0.0006714631454087794, + 0.000311942829284817, + -0.006245476193726063, + 0.009220930747687817, + 0.032991472631692886, + 0.02854318358004093, + 0.012762350961565971, + -0.012762350961565971, + -0.015966176986694336, + -0.00446483725681901, + 0.00023768057872075588, + 0.014695238322019577, + -0.010816224850714207, + -0.0003779307589866221, + -0.01302712969481945, + -0.012663058936595917, + -0.0032667117193341255, + 0.00016031545237638056, + 0.00617597158998251, + -0.008942913264036179, + 0.028357837349176407, + 0.007605778519064188, + -0.009876259602606297, + 0.00521283783018589, + -0.012510810978710651, + -0.0030052424408495426, + -0.008029425516724586, + -0.003478534985333681, + -0.003749933559447527, + -0.001473661046475172, + -0.018786074593663216, + 0.01010794099420309, + 0.002017285441979766, + -0.024730365723371506, + 0.012232792563736439, + 0.010617640800774097, + 0.010227091610431671, + -0.003313048044219613, + -0.004689899273216724, + -0.010385958477854729, + -0.0020603120792657137, + 0.006242166738957167, + 0.0014984840527176857, + 0.021195564419031143, + -0.008380257524549961, + 0.009022346697747707, + -0.010246950201690197, + -0.014443698339164257, + -0.007691831793636084, + -0.010088082402944565, + 0.0019676394294947386, + 0.01074341032654047, + 0.013781750574707985, + 0.0031856230925768614, + 0.01752837374806404, + 0.020229121670126915, + 0.014258353039622307, + -0.033309206366539, + -0.0003158731560688466, + -0.0006487087230198085, + 0.004411881323903799, + -0.019792234525084496, + 0.007089459337294102, + 0.006857777945697308, + -0.0027371535543352365, + 0.004623704589903355, + -0.005130094476044178, + -0.013152900151908398, + 0.008989249356091022, + 0.008684753440320492, + 0.004067668225616217, + -0.0007248327019624412, + -0.013086705468595028, + -0.01685318723320961, + -0.011683376505970955, + -0.022850433364510536, + -0.009664435870945454, + 0.009333462454378605, + -0.008122097700834274, + -0.008691373281180859, + -0.014801150187849998, + 0.019130287691950798, + 0.017382746562361717, + -0.014112723991274834, + -0.007069601211696863, + 0.019183242693543434, + -0.0022588963620364666, + 0.031032105907797813, + -0.0016896214801818132, + -0.02880796231329441, + -0.010445534251630306, + -0.0032964993733912706, + 0.0025931799318641424, + -0.01235194317996502, + 0.019050853326916695, + -0.02017616480588913, + 0.005222767125815153, + 0.026597056537866592, + 0.005173121113330126, + -0.010941995307803154, + 0.0025617375504225492, + -0.01196801383048296, + 0.01111410092562437, + 0.01042567566037178, + -0.009479090571403503, + 0.0035348006058484316, + 0.016972338780760765, + -0.015383663587272167, + -0.016760515049099922, + -0.03230304643511772, + 0.006156113464385271, + -0.006205759476870298, + 0.0034321986604481936, + 0.003994854167103767, + -0.023618292063474655, + -0.004987775813788176, + 0.008347160182893276, + 0.004504553973674774, + -0.008492788299918175, + 0.008360398933291435, + -0.001848488813266158, + 0.008294204249978065, + -0.0024127992801368237, + 0.004587297327816486, + 0.0005523125873878598, + -0.02360505424439907, + -0.018190322443842888, + -0.002574976533651352, + -0.025432029739022255, + 0.012742492370307446, + 0.005269103217869997, + -0.01355006918311119, + 0.02286367304623127, + 0.011246491223573685, + -0.00973725039511919, + -0.0004964607651345432, + 0.023009300231933594, + 0.0011757845059037209, + 0.018084410578012466, + 0.012729253619909286, + 0.00572584755718708, + 0.017634285613894463, + 0.007122557144612074, + 0.0011716473381966352, + -0.009624718688428402, + -0.004170270171016455, + 0.004229845479130745, + -0.0033362163230776787, + 0.012762350961565971, + -0.00795661099255085, + 0.0006896667182445526, + 0.0022506220266222954, + 0.01705177128314972, + 0.0008961116545833647, + -0.0066294060088694096, + -0.0071424152702093124, + -0.005550431087613106, + 0.00023892174067441374, + 0.01061102095991373, + -0.014787910506129265, + -0.003106189426034689, + 0.004123934078961611, + 0.00019165452977176756, + -0.013020510785281658, + 0.0035778272431343794, + 0.002543533919379115, + -0.01171647384762764, + 0.005315439775586128, + -0.008069141767919064, + 0.004342376720160246, + -0.005189669784158468, + 0.010988331399857998, + 0.0074733891524374485, + 0.004233155399560928, + 0.022069334983825684, + 0.005484236404299736, + 0.006619476713240147, + 0.003998164087533951, + 0.00035062539973296225, + 0.014337786473333836, + -0.012107023037970066, + 0.0035149420145899057, + 0.006844538729637861, + -0.005100306589156389, + -0.009240789338946342, + 0.005811900366097689, + 0.0044416687451303005, + -0.009796825237572193, + -0.0008530850755050778, + -0.010246950201690197, + -0.004597226623445749, + -0.01984519138932228, + -0.0015646788524463773, + -0.03068789467215538, + 0.010366100817918777, + 0.015833787620067596, + 0.019951103255152702, + -0.01993786357343197, + -0.012994032353162766, + 0.015767592936754227, + 0.013596405275166035, + -0.018759597092866898, + -0.00591781223192811, + -0.0019742590375244617, + -0.02719281055033207, + 0.0014165680622681975, + -0.014946778304874897, + -0.007612398359924555, + -0.009664435870945454, + 0.0039021815173327923, + 0.015264512971043587, + -0.004299350082874298, + 0.0070960791781544685, + 0.006404343526810408, + -0.003518251935020089, + 0.0061859008856117725, + 0.0010011958656832576, + -0.005467687733471394, + -0.007327760569751263, + -0.0011269658571109176, + -0.0028182421810925007, + 0.0065367333590984344, + -0.01940830610692501, + 0.0008563948213122785, + 0.009571763686835766, + -0.005712608341127634, + -0.026239605620503426, + -0.007678593043237925, + 0.016906144097447395, + 0.02404193952679634, + 0.009320222772657871, + -0.02087782882153988, + -0.014655521139502525, + 0.0007289698696695268, + -0.004785881843417883, + 0.015396902337670326, + 0.021645689383149147, + 0.0013015546137467027, + 0.0133779626339674, + 0.001787258661352098, + 0.02004377543926239, + -0.012808687053620815, + -0.007930133491754532, + -0.02363153174519539, + -0.0027785252314060926, + -0.004878554493188858, + 0.018004976212978363, + -0.017766674980521202, + -0.006215688772499561, + 0.00852588564157486, + -0.008989249356091022, + -0.00610977690666914, + -0.03383876383304596, + -0.00017955330258700997, + 0.014509893022477627, + -0.002472374588251114, + 0.01860073022544384, + 0.010405817069113255, + -0.010101321153342724, + -0.0011972978245466948, + -0.009009107947349548, + -0.014960017055273056, + 0.019461261108517647, + -0.007870557717978954, + -0.021447105333209038, + 0.006791583262383938, + -0.007923513650894165, + -0.006159422919154167, + -0.016879664734005928, + 0.017382746562361717, + 0.028251927345991135, + 0.017634285613894463, + -0.006602928042411804, + -0.009545285254716873, + 0.0008237111032940447, + 0.0024376222863793373, + 0.003364349016919732, + -0.005937670823186636, + -0.005782112944871187, + -0.0015001388965174556, + -0.004471456632018089, + 0.010445534251630306, + -0.012768970802426338, + 0.03283260390162468, + -0.002598144579678774, + -0.019527455791831017, + -0.002253931714221835, + -9.03455147636123e-5, + 0.02067924477159977, + 0.025034861639142036, + 0.011061145924031734, + 0.0031094991136342287, + 0.0166546031832695, + -0.008552364073693752, + 0.00834054034203291, + -0.01503945142030716, + 0.012768970802426338, + 0.005739086307585239, + 0.0031525257509201765, + 0.00960486102849245, + 0.010961852967739105, + 0.0015009663766250014, + 0.004299350082874298, + -0.00016621092800050974, + -0.02259889431297779, + -0.009611479938030243, + -0.01515860203653574, + 0.0023234363179653883, + -3.164937152178027e-5, + 0.03709554672241211, + 0.004418500699102879, + 0.0009705807897262275, + 0.001536546042189002, + -0.01270939502865076, + 0.00930036511272192, + 0.009942454285919666, + -0.00960486102849245, + 0.0009796825470402837, + 0.004742855206131935, + 0.0006098193116486073, + 0.015118884854018688, + -0.0033329064026474953, + -0.009611479938030243, + -0.005474307108670473, + 0.007731548976153135, + -0.01265643909573555, + -0.017501896247267723, + -0.004977846518158913, + -0.03095267340540886, + -0.005199599079787731, + -0.02904626354575157, + 0.015092406421899796, + -0.004977846518158913, + 0.007850699126720428, + -0.007010025903582573, + 0.00381943816319108, + -0.008717850781977177, + -0.0031823134049773216, + -0.008737709373235703, + 0.017382746562361717, + -0.010902278125286102, + -0.0009441028814762831, + -0.03203826770186424, + 0.0249421875923872, + 0.018269754946231842, + 0.0006218170747160912, + -0.004974536597728729, + 0.019117048010230064, + -0.018547773361206055, + 0.011736332438886166, + 0.019355349242687225, + -0.0024343125987797976, + -0.0010541516821831465, + -3.810724138020305e-6, + -0.028357837349176407, + 0.008664894849061966, + -0.024624453857541084, + -0.004762713331729174, + -0.01584702730178833, + -0.0018517986172810197, + -0.0006983547937124968, + 0.00037482785410247743, + 0.008671514689922333, + -0.01541014201939106, + -0.015767592936754227, + 0.005517333745956421, + 0.030476070940494537, + 0.04713067412376404, + 0.033123861998319626, + 0.006523494143038988, + 0.014642282389104366, + 0.034897882491350174, + -0.017819631844758987, + 0.008419974707067013, + -0.0008129545021802187, + -0.022453265264630318, + -0.013662599958479404, + -0.007983088493347168, + -0.012451235204935074, + 0.02970821224153042, + 0.012795448303222656, + -0.0103065250441432, + -0.0073476191610097885, + -0.0202423594892025, + -0.010941995307803154, + -0.0005841688252985477, + 0.0014496654039248824, + -0.005166501738131046, + 0.003409030381590128, + -0.020599812269210815, + 0.009075302630662918, + 0.013847945258021355, + 0.0050208731554448605, + 0.002474029315635562, + -0.008353780023753643, + -0.01312642265111208, + 0.0046568019315600395, + 0.024650931358337402, + -0.02719281055033207, + -0.0061859008856117725, + -0.009167974814772606, + -0.006884255912154913, + 0.005202908534556627, + 0.020295316353440285, + 0.0016978958155959845, + 0.0025733215734362602, + -0.01559548731893301, + -0.01796525903046131, + -0.01552929263561964, + -0.005891334265470505, + -0.018587490543723106, + 0.0003665535186883062, + -0.013265430927276611, + 0.01202096976339817, + -0.009518807753920555, + -0.0003932382969651371, + -0.013861184008419514, + -0.007261565886437893, + -0.009578382596373558, + -0.024280240759253502, + -0.01695909909904003, + -0.017674002796411514, + 0.006957069970667362, + 0.031402796506881714, + -0.005411422345787287, + -0.01574111543595791, + -0.01024033036082983, + -0.0198716688901186, + 0.022095812484622, + -0.0001494553725933656, + -0.0032468533609062433, + -0.019077332690358162, + 0.029099220409989357, + -0.002606418915092945, + 0.007182131987065077, + -0.0019345420878380537, + -0.018282994627952576, + 0.021698644384741783, + -0.014893822371959686, + -0.012907980009913445, + -0.009293745271861553, + -0.023049017414450645, + -0.005103616509586573, + -0.023883072659373283, + -0.006669122725725174, + -0.01196801383048296, + 0.027033943682909012, + 0.00924740917980671, + -0.0017624356551095843, + 0.007321141194552183, + 0.0005477616796270013, + -0.01705177128314972, + -0.0011302756611257792, + -0.007943372242152691, + 0.003169074421748519, + -0.018878746777772903, + -0.008611938916146755, + -0.017581330612301826, + -0.011815765872597694, + -0.011213393881917, + 0.003076401771977544, + 0.0085126468911767, + -0.017038533464074135, + -0.00869799219071865, + -0.005308820400387049, + -0.002546843606978655, + 0.012451235204935074, + -0.00783746037632227, + 0.005676201079040766, + -0.00010632534394972026, + 0.024055179208517075, + 0.002267170697450638, + -0.034765493124723434, + 0.00450786342844367, + 0.0033991013187915087, + 0.004335757344961166, + 0.019487738609313965, + -0.010094702243804932, + 0.004008092917501926, + 0.016032371670007706, + 0.013702317140996456, + -0.002940702484920621, + 0.021632449701428413, + -0.005451139062643051, + 0.005712608341127634, + 0.0036274732556194067, + 0.006073369644582272, + 0.003657260909676552, + -0.005557050462812185, + 0.01559548731893301, + 0.009982170537114143, + 0.003418959677219391, + -0.005176430568099022, + 0.02030855417251587, + 0.029628777876496315, + -0.003352764993906021, + -0.002296958351507783, + 0.0239095501601696, + 0.004742855206131935, + -0.00889657624065876, + 0.023340275511145592, + -0.01196801383048296, + -0.005997245665639639, + 0.008002947084605694, + -0.01759456843137741, + 0.019461261108517647, + 0.007480008527636528, + -0.012947696261107922, + 0.007758026476949453, + 0.02782827988266945, + 0.00280334847047925, + -0.012768970802426338, + 0.01190181914716959, + -0.0206130500882864, + 0.01086256094276905, + 0.01792554371058941, + 0.012894740328192711, + -0.0027073659002780914, + -0.011292827315628529, + -0.013358104042708874, + -2.9735931093455292e-5, + 0.00011315167648717761, + 0.015185079537332058, + 0.008942913264036179, + 0.01903761550784111, + -0.010955234058201313, + -0.001921303104609251, + -0.005232696421444416, + 0.013794989325106144, + 0.013953857123851776, + 0.015370424836874008, + -0.0010731826769188046, + 0.011405358090996742, + -0.003322977339848876, + 0.012967554852366447, + -0.00763887632638216, + -0.023896310478448868, + 0.004362235311418772, + 0.0004914961173199117, + 8.501890260959044e-5, + -0.012001111172139645, + 0.0008638417348265648, + -0.0031343221198767424, + -0.013874422758817673, + -0.025087816640734673, + -0.03407706692814827, + -0.007387335877865553, + 0.023353513330221176, + 0.017144445329904556, + 0.017753437161445618, + 0.0042364648543298244, + 0.0028182421810925007, + -0.007559442427009344, + -0.008717850781977177, + -0.0021993210539221764, + 0.024968666955828667, + -0.004729615990072489, + 0.00930036511272192, + 0.024518541991710663, + -0.02386983297765255, + -0.006824680604040623, + -0.012868262827396393, + 0.002796728862449527, + 0.003491773968562484, + 0.02179131656885147, + -0.014880583621561527, + -0.015264512971043587, + -0.00980344507843256, + -0.022373830899596214, + -0.003842606209218502, + -0.03603643178939819 + ], + "1a47a74d-b663-42ed-bb64-ec02a36930eb": [ + -0.010250061750411987, + -0.0019056402379646897, + -0.016242729499936104, + -0.0060242824256420135, + -0.04462535306811333, + -0.029506688937544823, + 0.017788317054510117, + 0.056990060955286026, + 0.002172605600208044, + 0.03911743685603142, + -0.00752420537173748, + 0.0415622778236866, + -0.046873483806848526, + -0.015132715925574303, + -0.01583525538444519, + 0.0036532089579850435, + -0.050610996782779694, + 0.03557663410902023, + 0.0006911239470355213, + -0.012835409492254257, + 0.08621573448181152, + -0.025684868916869164, + -0.013067247346043587, + 0.03271027281880379, + -0.030967971310019493, + -0.011999386362731457, + 0.02045796997845173, + -0.006902457680553198, + 0.01005335059016943, + -0.01641133986413479, + 0.0026872162707149982, + 0.009512394666671753, + 0.014753344468772411, + 0.014331820420920849, + 0.018617315217852592, + -0.025544362142682076, + -0.016818812116980553, + 0.016889065504074097, + -0.022663947194814682, + 0.02065468207001686, + -0.028368573635816574, + 0.014683090150356293, + 0.0014577709371224046, + 0.0009624800877645612, + -0.0037972298450767994, + 0.018898330628871918, + 0.03153000399470329, + -0.003920174203813076, + 0.009020616300404072, + -0.028340471908450127, + 0.006502009462565184, + 0.021371273323893547, + -0.016327034682035446, + 0.0038745091296732426, + -0.006343937944620848, + -0.004752684384584427, + 0.02076708897948265, + 0.07536851614713669, + 0.013741686008870602, + -0.04001668840646744, + -0.00848668534308672, + -0.011577862314879894, + -0.0013910295674577355, + -0.01404377818107605, + -0.005950515624135733, + -0.005363894626498222, + 0.010348416864871979, + 0.008788777515292168, + -0.017563505098223686, + 0.03065885417163372, + 0.014781446196138859, + 0.019614921882748604, + -0.046339552849531174, + 0.009484292939305305, + -0.01908099092543125, + -0.0008228502119891346, + 0.013924346305429935, + -0.04816615581512451, + 0.0049810102209448814, + 0.02503853291273117, + -0.015624494291841984, + 0.0022024635691195726, + 0.019151246175169945, + -0.006073459982872009, + 0.03290698304772377, + 0.017156030982732773, + -0.03122088685631752, + -0.044653456658124924, + -0.051060620695352554, + -0.021722542122006416, + 0.020191004499793053, + 0.01753540337085724, + 0.00825484748929739, + 0.014352896250784397, + -0.012027488090097904, + 0.0059575410559773445, + 0.03462118282914162, + 0.014851699583232403, + -0.011746471747756004, + -0.02439219504594803, + -0.021989507600665092, + 0.0241533312946558, + -0.04282684996724129, + -0.0058907996863126755, + 0.0123576819896698, + -0.011324947699904442, + 0.018251994624733925, + 0.008325101807713509, + -0.006242069881409407, + 0.01499220822006464, + 0.019010737538337708, + -0.0191090926527977, + -0.004636765457689762, + 0.013397441245615482, + 0.04299546033143997, + -0.0696357861161232, + -0.008367253467440605, + -0.029394282028079033, + -0.017029574140906334, + -0.06693802773952484, + 0.0663197934627533, + 0.028284268453717232, + 0.0010415158467367291, + -0.033300407230854034, + 0.005230411887168884, + 0.0003359020338393748, + 0.0035109445452690125, + -0.004650816321372986, + 0.01066455990076065, + 0.016341084614396095, + 0.0007868450484238565, + -0.013018069788813591, + -0.027342865243554115, + 0.022930912673473358, + -0.012533317320048809, + 0.01707172766327858, + 0.038246288895606995, + 0.04515928402543068, + -0.022551540285348892, + 0.0303216353058815, + -0.009083844721317291, + 0.0034898684825748205, + -0.014654988422989845, + -0.001316384645178914, + 0.00202155951410532, + 0.00831807591021061, + -0.04437243938446045, + 0.02751147374510765, + 0.02020505629479885, + 0.014036753214895725, + -0.03715032711625099, + -0.01398054976016283, + 0.047547921538352966, + 0.004046631511300802, + -0.00042503682198002934, + -0.011416277848184109, + 0.026415511965751648, + 0.02000834420323372, + -0.0007556697819381952, + 0.01697337068617344, + 0.006653055548667908, + -0.01627083122730255, + 0.029731500893831253, + -0.016341084614396095, + -0.01022196002304554, + 0.01419833768159151, + 0.026907289400696754, + 0.027005644515156746, + -0.04501877725124359, + 0.02123076468706131, + 0.044541049748659134, + -0.03301938995718956, + 0.014142134226858616, + -0.005009111482650042, + -0.02617664821445942, + -0.018364401534199715, + 0.023521045222878456, + -0.0049985735677182674, + 0.01896858587861061, + -0.02987200953066349, + -0.018842129036784172, + -0.01060835737735033, + -0.03827438876032829, + 0.003326527774333954, + -0.013383390381932259, + 0.019362008199095726, + 0.017928825691342354, + 0.009421064518392086, + -0.03661639615893364, + 0.005135568790137768, + 0.01409295666962862, + 0.004095809534192085, + 0.01672045700252056, + 0.050358083099126816, + -0.030012518167495728, + 0.0038183059077709913, + 0.0073836976662278175, + 0.02168039046227932, + 0.03540802747011185, + 0.021062154322862625, + -0.03299128636717796, + -0.04428813233971596, + -0.06705043464899063, + 0.01989593915641308, + -0.05749588832259178, + 0.009034667164087296, + 0.005873235873878002, + -0.0012417398393154144, + 0.027989201247692108, + -0.012652749195694923, + 0.034649282693862915, + -0.021722542122006416, + 0.013776813633739948, + 0.016692355275154114, + -0.01532942708581686, + -0.00915409903973341, + -0.03189532458782196, + 0.02616259641945362, + -0.01287053618580103, + 0.01197128463536501, + -0.024448398500680923, + 0.01944631338119507, + 0.0370941236615181, + -0.013559025712311268, + -0.047126397490501404, + -0.012371732853353024, + -0.023394588381052017, + 0.018013130873441696, + -0.02347889356315136, + 0.008015983738005161, + 0.017704013735055923, + 0.0032106086146086454, + 0.02794704958796501, + -0.02213001623749733, + -0.025530310347676277, + 0.012617621570825577, + -0.0030718569178134203, + -0.014514480717480183, + 0.019066940993070602, + -0.011142287403345108, + 0.04707019403576851, + 0.009435114450752735, + 0.022172167897224426, + 0.015568290837109089, + 0.01965707540512085, + 0.028776045888662338, + -0.01163406576961279, + 0.04929022118449211, + 0.012772181071341038, + -0.012737053446471691, + 0.017394894734025, + 0.035323720425367355, + 0.02786274440586567, + -0.015273223631083965, + -0.016917167231440544, + 0.028466928750276566, + 0.018364401534199715, + 0.005553580354899168, + -0.03212013840675354, + -0.01719818450510502, + -0.022439133375883102, + -0.010151705704629421, + 0.013158577494323254, + -0.027680084109306335, + 0.04350128769874573, + -0.024743465706706047, + 0.015259172767400742, + -0.038133881986141205, + 0.008205669932067394, + 0.03077126108109951, + -0.05696196109056473, + -0.006083997897803783, + 0.0028786584734916687, + 0.032850779592990875, + -0.009477267041802406, + -0.011528684757649899, + -0.004095809534192085, + 0.021062154322862625, + 0.019376058131456375, + 0.011725395917892456, + 0.00012393247743602842, + 0.019165296107530594, + 0.01742299646139145, + 0.02796109952032566, + -0.008219719864428043, + -0.028691742569208145, + 0.0005343696102499962, + 0.021385323256254196, + -0.049149710685014725, + -0.022031661123037338, + 0.005304178688675165, + -0.013334212824702263, + 0.036335378885269165, + -0.017043625935912132, + 0.024279789999127388, + -0.007425849791616201, + 0.006653055548667908, + -0.029843907803297043, + -0.013172628358006477, + 0.012441987171769142, + -0.01954466849565506, + 0.009997147135436535, + 0.047772735357284546, + -0.019952140748500824, + 0.016298932954669, + -0.016200577840209007, + 0.03186722472310066, + -0.019685177132487297, + -0.061935942620038986, + 0.018799975514411926, + 0.04209620878100395, + 0.013847067020833492, + -0.012287427671253681, + -0.03731893375515938, + -0.001882807700894773, + 0.001124064321629703, + 0.008051110431551933, + 0.020626580342650414, + 0.002409712877124548, + -0.03167051076889038, + 0.002632769290357828, + 0.0009730181773193181, + -0.06390305608510971, + 0.015202970243990421, + 0.04029770568013191, + -0.055978402495384216, + 0.004127423744648695, + 0.016650203615427017, + -0.01504841074347496, + -0.025881581008434296, + -0.004194165114313364, + -0.03332850709557533, + -0.039257947355508804, + -0.011043932288885117, + -0.013573076575994492, + -0.015638545155525208, + -0.04726690426468849, + -0.02090759575366974, + 0.004847527481615543, + -0.010481899604201317, + -0.012055589817464352, + 0.04232102259993553, + -0.039707571268081665, + -0.0009949725354090333, + 0.02347889356315136, + -0.008816879242658615, + -0.02964719571173191, + 0.030068719759583473, + -0.005564118269830942, + -0.012441987171769142, + 0.0007025402155704796, + -0.010833170264959335, + 0.04468155652284622, + -0.008837956003844738, + 0.012406859546899796, + 0.008781752549111843, + -0.011001779697835445, + -0.008304025046527386, + -0.007439900655299425, + 0.00831807591021061, + -0.0241533312946558, + 0.007594459690153599, + -0.02728666178882122, + -0.015483985655009747, + -0.002641551196575165, + 0.025797275826334953, + 0.015638545155525208, + 0.011423303745687008, + 0.000623943516984582, + 0.00955454632639885, + -0.03501460328698158, + 0.03782476484775543, + 0.034087251871824265, + -0.002358778612688184, + -0.04594612866640091, + 0.000895738776307553, + 0.028579335659742355, + 0.0018617315217852592, + -0.020472021773457527, + 0.02796109952032566, + -0.021596085280179977, + 0.013263958506286144, + 0.015413732267916203, + -0.009231378324329853, + 0.03810578212141991, + 0.00687435595318675, + 0.0036286201793700457, + -0.0179709792137146, + -0.025474106892943382, + -0.028129709884524345, + -0.03504270687699318, + -0.004861578345298767, + -0.038920726627111435, + 0.010137654840946198, + -0.027089949697256088, + 0.03054644726216793, + -0.000751718005631119, + -0.018926432356238365, + 0.028565283864736557, + 0.015919560566544533, + 0.002999846590682864, + -0.012800282798707485, + -0.020500123500823975, + -0.004861578345298767, + 0.022734200581908226, + 0.004461130127310753, + 0.009673978202044964, + 0.010362467728555202, + 0.007889526896178722, + 0.01443017553538084, + -0.01359415240585804, + 0.013657381758093834, + 0.005103954579681158, + -0.0218911524862051, + 0.055865995585918427, + -0.012589520774781704, + 0.013453644700348377, + 0.0051320563070476055, + -0.05547257512807846, + -0.005318229086697102, + 0.054629527032375336, + 0.07441306114196777, + -0.006066434551030397, + 0.011219566687941551, + -0.02652791701257229, + 0.0030665879603475332, + 0.009168149903416634, + 0.027146153151988983, + -0.007896551862359047, + 0.0032545174472033978, + -0.023394588381052017, + 0.010580255649983883, + -0.032401155680418015, + -0.02099190093576908, + 0.02784869261085987, + 0.00752420537173748, + 0.016242729499936104, + -0.0017985028680413961, + -0.008732574991881847, + -0.006336912512779236, + 0.03389053791761398, + 0.02012075111269951, + 0.030293533578515053, + 0.0033546295017004013, + -0.025094736367464066, + -0.033637624233961105, + -0.0314457006752491, + -0.01229445356875658, + 0.0030209228862076998, + 0.004872116260230541, + 0.008458583615720272, + 0.047126397490501404, + -0.04805374890565872, + 0.01652374491095543, + -0.021272916346788406, + -0.005623834207653999, + -0.004608663730323315, + 0.008395355194807053, + 0.005971591919660568, + 0.01965707540512085, + -0.010685636661946774, + 0.011240643449127674, + 0.024673212319612503, + -0.013825991190969944, + -0.008409406058490276, + -0.04057872295379639, + -0.005019649863243103, + 0.010762915946543217, + -0.004752684384584427, + -0.008156491443514824, + -0.006839228793978691, + 0.04527169093489647, + -0.029619093984365463, + 0.010074426420032978, + -0.01798502914607525, + 0.01829414628446102, + 0.01774616539478302, + -0.01570879854261875, + -0.012758130207657814, + -0.015006259083747864, + -0.023043317720294, + -0.010889372788369656, + -0.00970910582691431, + 0.013608203269541264, + 0.03996048495173454, + -0.011212541721761227, + -0.005904850549995899, + -0.010587280616164207, + 0.03731893375515938, + -0.006273684091866016, + 0.04990845546126366, + -0.007446926087141037, + -0.003684823401272297, + -0.017816418781876564, + -0.03192342817783356, + -0.05861995369195938, + 0.007770094554871321, + -0.038133881986141205, + -0.018729722127318382, + -0.038246288895606995, + 0.06373444944620132, + -0.0010713738156482577, + 0.016804762184619904, + 0.01742299646139145, + 0.0059926677495241165, + 7.486443792004138e-5, + -0.0027416630182415247, + -0.0025923734065145254, + 0.003670772537589073, + 0.004313596989959478, + -0.005486838985234499, + 0.005479813553392887, + -0.004134449176490307, + -0.013467695564031601, + -0.013882194645702839, + 0.027455270290374756, + -0.02012075111269951, + 0.008585041388869286, + 0.001138115068897605, + -0.008416431955993176, + 0.011128236539661884, + 0.0075101545080542564, + 0.013566051609814167, + 0.014310743659734726, + 0.0074750278145074844, + -0.0041168853640556335, + -0.0008224110933952034, + 0.0213291198015213, + 0.034986503422260284, + 0.010088477283716202, + -0.025305498391389847, + 0.0134747214615345, + 0.007257240358740091, + -0.0051671830005943775, + 0.02652791701257229, + -0.01943226158618927, + -0.010320315137505531, + -0.012884587049484253, + -0.004296033177524805, + 0.038583505898714066, + -0.009252454154193401, + 0.0028224552515894175, + -0.02281850576400757, + -0.009814486838877201, + 0.015512087382376194, + 0.04558080807328224, + -0.028677690774202347, + 0.0035741731990128756, + 0.007713891565799713, + 0.009933918714523315, + -0.004917781334370375, + 0.027216406539082527, + 0.004836989101022482, + -0.002328920643776655, + 0.03301938995718956, + -0.020247207954525948, + 0.04201190546154976, + -0.022326728329062462, + -0.04662056639790535, + -0.004573536571115255, + 0.006280709523707628, + 0.005153132136911154, + -0.00955454632639885, + 0.009463216178119183, + -0.030686955899000168, + 0.0038534330669790506, + -0.01909504272043705, + 0.006635492201894522, + -0.01426156610250473, + 0.022186219692230225, + 0.022045711055397987, + 0.019249601289629936, + 0.011247668415307999, + -0.024546753615140915, + -0.015371579676866531, + 0.01919339783489704, + 0.008008957840502262, + 0.008367253467440605, + -0.00656523834913969, + -0.0015851063653826714, + 0.014570684172213078, + -0.04451294615864754, + 0.006568750832229853, + -0.02751147374510765, + -0.007460976950824261, + 0.02661222219467163, + -0.06109289452433586, + -0.031052276492118835, + 0.00797383114695549, + 0.019586820155382156, + 0.008795803412795067, + 0.0031825071200728416, + 0.022537490352988243, + 0.012350657023489475, + 0.004137961659580469, + 0.03394674137234688, + 0.002457134425640106, + 0.03951086103916168, + 0.0010037543252110481, + -0.019347956404089928, + -0.00421172846108675, + 0.004447079263627529, + 0.016214627772569656, + -0.01843465492129326, + -0.00029857957269996405, + 0.022959014400839806, + -0.0174089465290308, + -0.00209005712531507, + 0.00047641005949117243, + -0.01471119187772274, + 0.0027680082712322474, + -0.0003561000630725175, + 0.02033151313662529, + -0.010123603977262974, + 0.02314167469739914, + 0.011268745176494122, + 0.04302356019616127, + 0.026036139577627182, + 0.002197194378823042, + -0.021539881825447083, + 0.02404092624783516, + -0.05682145059108734, + 0.05156645178794861, + -0.021975457668304443, + 0.008367253467440605, + -0.015750952064990997, + -0.02368965558707714, + -0.0037234630435705185, + -0.02425168827176094, + 0.009266505017876625, + 0.02191925421357155, + 0.019277703016996384, + 0.03878021985292435, + -0.020387716591358185, + -0.002843531547114253, + 0.017001472413539886, + 0.01583525538444519, + 0.0381619818508625, + -0.008816879242658615, + 0.004995060618966818, + 0.005037213210016489, + -0.011746471747756004, + -0.015765001997351646, + 0.04254583269357681, + -0.014085930772125721, + 0.00023820502974558622, + -0.046227145940065384, + 0.02494017779827118, + 0.02897275798022747, + -0.002998090349137783, + -0.05330875143408775, + 0.006354476325213909, + 0.03268216922879219, + 0.005339305382221937, + -0.0044084396213293076, + -0.03169861435890198, + -0.016579948365688324, + -0.014036753214895725, + 0.012097742408514023, + -0.01308129820972681, + 0.0157369002699852, + 0.014683090150356293, + -0.0037164376117289066, + 0.013692508451640606, + 0.012336606159806252, + -0.008837956003844738, + 0.013685483485460281, + -0.0179709792137146, + 0.01728248968720436, + 0.020809240639209747, + -0.0010037543252110481, + 0.023506995290517807, + 0.017605656757950783, + 0.018378451466560364, + -0.003540802514180541, + -0.010959627106785774, + -0.008072187192738056, + -0.011465456336736679, + 0.02606424130499363, + -0.019572770223021507, + -0.014964106492698193, + -0.012989968061447144, + -0.03349711745977402, + 0.00345298508182168, + 0.03889262676239014, + -0.014584734104573727, + -0.004654328804463148, + 0.04313596710562706, + -0.022073812782764435, + -0.007826297543942928, + 0.006624954286962748, + 0.02156798355281353, + -0.038133881986141205, + 0.03729083389043808, + -0.0025941296480596066, + 0.005465762689709663, + -0.01764781028032303, + 0.010966652072966099, + 0.03282267972826958, + -0.0009554546559229493, + -0.020247207954525948, + -0.03237305209040642, + -0.0008008958538994193, + -0.008922260254621506, + 0.0022902810014784336, + 0.014388022944331169, + -0.025895630940794945, + 0.0016483349027112126, + 0.020612528547644615, + 0.007397748064249754, + 0.016846913844347, + -0.007390723098069429, + -0.0029647196643054485, + 0.023450791835784912, + -0.008620168082416058, + -0.008788777515292168, + 0.007179960608482361, + 0.009828537702560425, + 0.014486378990113735, + 0.011444379575550556, + -0.025881581008434296, + 0.049262117594480515, + 0.015568290837109089, + -0.04215241223573685, + -0.049486931413412094, + 0.024982329457998276, + 0.005328767467290163, + -0.003096445929259062, + -0.022031661123037338, + -0.006624954286962748, + 0.049711745232343674, + -0.0006647786358371377, + -0.014978157356381416, + 0.005469275638461113, + -0.029956314712762833, + -0.012701926752924919, + -0.020626580342650414, + 0.0023921492975205183, + 0.03428396210074425, + -0.017900723963975906, + -0.007503129541873932, + -0.037009816616773605, + 0.03422775864601135, + 0.029366180300712585, + 0.01887022890150547, + 0.0004274517996236682, + -0.002840018831193447, + -0.004401414189487696, + -0.0025748098269104958, + 0.02211596630513668, + 0.033188000321388245, + -0.023324334993958473, + 0.031136581674218178, + 0.03774045780301094, + -0.019825683906674385, + 0.0006770731415599585, + 0.010896398685872555, + -0.00915409903973341, + -0.012245276011526585, + 0.03841489925980568, + -0.01887022890150547, + 0.000847000046633184, + 0.028382623568177223, + -0.013924346305429935, + 0.004120398312807083, + -0.007165910210460424, + -0.023450791835784912, + 0.019390109926462173, + 0.037347037345170975, + -0.027567677199840546, + 0.026752730831503868, + -0.007208062335848808, + 0.016102220863103867, + 0.01943226158618927, + 0.015006259083747864, + -0.0037866916973143816, + 0.03529562056064606, + 0.006062922067940235, + -0.03512701019644737, + 0.027764389291405678, + -0.03169861435890198, + -0.042068108916282654, + -0.002109376946464181, + -0.044203829020261765, + 0.020753037184476852, + -0.0035021628718823195, + 0.036222971975803375, + 0.030293533578515053, + 0.007236164063215256, + -0.01618652604520321, + 0.012006412260234356, + 0.030743159353733063, + -0.025881581008434296, + -0.002919054590165615, + 0.007011351175606251, + 0.0015763245755806565, + 0.010847221128642559, + -0.015020309016108513, + -0.02213001623749733, + 0.01370655931532383, + 0.009308657608926296, + -0.04875629022717476, + 0.027146153151988983, + 0.050386182963848114, + -0.01705767586827278, + -0.0050653149373829365, + 0.03181102126836777, + 0.007482053246349096, + -0.0077841454185545444, + 0.012336606159806252, + -0.03226064518094063, + 0.010404620319604874, + -0.0030332172755151987, + 0.004345211200416088, + -0.007482053246349096, + -0.015568290837109089, + -0.004647303372621536, + -0.033693827688694, + 0.01663615182042122, + -0.019024789333343506, + -0.0016817055875435472, + 0.024771567434072495, + 0.04625524580478668, + 0.015526138246059418, + 0.015343477949500084, + -0.010439747013151646, + -0.022860657423734665, + -0.025235243141651154, + 0.02716020494699478, + 0.012055589817464352, + -0.0013067247346043587, + -0.014697141014039516, + -0.0029647196643054485, + 0.020275309681892395, + 0.02886035107076168, + 0.023338384926319122, + -0.021511780098080635, + -0.019066940993070602, + -0.028354521840810776, + 0.017394894734025, + 0.0061788409948349, + -0.03214823827147484, + -0.03020922839641571, + -0.004471668507903814, + 0.0020057521760463715, + -0.0005949637270532548, + 0.009786385111510754, + 0.005813519936054945, + 0.026148546487092972, + -0.018013130873441696, + 0.0075101545080542564, + -0.01819579117000103, + 0.006480933167040348, + -0.02180684730410576, + -0.05333685129880905, + 0.012350657023489475, + -0.015779053792357445, + 0.018799975514411926, + 0.007397748064249754, + 0.011015830561518669, + -0.016875015571713448, + 0.014837648719549179, + 0.004534896928817034, + -0.0308836679905653, + 0.003993941005319357, + -0.01909504272043705, + -0.026415511965751648, + 0.054404713213443756, + -0.012364707887172699, + 0.00690597016364336, + -0.0028698768001049757, + 0.005648422986268997, + -0.0025871042162179947, + -0.004229291807860136, + -0.030124923214316368, + -0.02617664821445942, + -0.013629280030727386, + -0.012006412260234356, + -0.02257964201271534, + 0.008261872455477715, + -0.01899668760597706, + 0.0179709792137146, + 0.01663615182042122, + 0.004303058609366417, + -0.06868033111095428, + 0.01139520201832056, + -0.006048871204257011, + 0.012132869102060795, + 0.02066873200237751, + -0.03282267972826958, + 0.000510658894199878, + 0.016987422481179237, + -0.013650355860590935, + -0.035211313515901566, + -0.0031280601397156715, + -0.03729083389043808, + -0.0185189601033926, + -0.0020619553979486227, + -0.015301325358450413, + -0.015217021107673645, + -0.007594459690153599, + -0.0009949725354090333, + -0.015076512470841408, + 0.023380538448691368, + -0.014444226399064064, + -0.03271027281880379, + 0.015427783131599426, + 0.02852313220500946, + 0.00023886366398073733, + 0.04650815948843956, + 0.032063934952020645, + 0.0185189601033926, + -0.0031772381626069546, + -0.03054644726216793, + 0.024799669161438942, + 0.0196711253374815, + 0.013151552528142929, + -0.003171968972310424, + -0.01358010247349739, + -0.01443017553538084, + -0.007622560951858759, + -0.0019407672807574272, + 0.013959473930299282, + 0.016453491523861885, + -0.01978353224694729, + -0.018842129036784172, + 0.01764781028032303, + 0.006171815562993288, + 0.008402381092309952, + 0.0022147579584270716, + 0.007678764406591654, + 0.02797515131533146, + 0.012491164728999138, + -0.01660805009305477, + 0.016846913844347, + -0.03279457613825798, + 0.018280096352100372, + 0.007531230803579092, + -0.03178291767835617, + -0.03619487211108208, + -0.011374126188457012, + 0.006979736965149641, + 0.014767395332455635, + -0.026036139577627182, + 0.040831636637449265, + -0.012687875889241695, + -0.03400294482707977, + 0.024279789999127388, + 0.013833016157150269, + -0.012456038035452366, + 0.019909989088773727, + 0.037684258073568344, + -0.002025072230026126, + 0.005265538580715656, + 0.017661860212683678, + 0.031136581674218178, + -0.0035759296733886003, + 0.03178291767835617, + 0.0078684501349926, + -0.01639728806912899, + -0.0009185713133774698, + 0.005399021320044994, + -0.026148546487092972, + -0.0025098249316215515, + -0.04316407069563866, + -0.01184482779353857, + -0.031248988583683968, + 0.012793256901204586, + 0.016298932954669, + 0.01662210188806057, + -0.008465609513223171, + -0.018589213490486145, + 0.004229291807860136, + 0.0011012317845597863, + -0.0023570223711431026, + -0.010228984989225864, + -0.03495839983224869, + -0.0030402427073568106, + 0.006582801695913076, + -0.008093263022601604, + 0.013165603391826153, + 0.022326728329062462, + 0.00176952313631773, + 0.004334672819823027, + -0.0157369002699852, + 0.004011504352092743, + -0.011296845972537994, + -0.003231684910133481, + 0.004654328804463148, + -0.01487980131059885, + 0.02964719571173191, + -0.043416984379291534, + -0.0014121057465672493, + -0.040269605815410614, + 0.005623834207653999, + -0.01943226158618927, + -0.02031746320426464, + -0.015174868516623974, + 0.0030999586451798677, + -0.005922413896769285, + -0.022509388625621796, + 0.020710885524749756, + -0.032738372683525085, + 0.025698920711874962, + 0.004879141692072153, + -0.006811127066612244, + 0.002567784395068884, + 0.015371579676866531, + 0.015202970243990421, + 0.0393141508102417, + 0.012687875889241695, + -0.026303105056285858, + -0.007264265790581703, + -0.03327230364084244, + 0.015174868516623974, + 0.006238556932657957, + -0.01202046312391758, + -0.04878439009189606, + -0.0062666586600244045, + 0.022382929921150208, + -0.009856639429926872, + -0.03493029996752739, + 0.01370655931532383, + 0.0015113395638763905, + -0.010172782465815544, + -0.0017062944825738668, + 0.007833323441445827, + 0.01864541694521904, + 0.02908516488969326, + 0.014514480717480183, + -0.026232851669192314, + 0.010875321924686432, + -0.0010757646523416042, + -0.01618652604520321, + 0.015793103724718094, + -0.02055632695555687, + 0.010854246094822884, + -0.05434850975871086, + -0.01707172766327858, + -0.0010432722046971321, + 0.028916554525494576, + 0.010467848740518093, + -0.007257240358740091, + -0.008451558649539948, + 0.01409295666962862, + -0.015455883927643299, + -0.008353202603757381, + 0.028593385592103004, + 0.0011609477223828435, + 0.02290281094610691, + 0.014064854942262173, + -0.013804915361106396, + 0.011219566687941551, + -0.023225979879498482, + -0.007018376607447863, + -0.002400931203737855, + -0.0021708491258323193, + 0.0033757055643945932, + -0.005170695949345827, + 0.01953061670064926, + -0.0008044085116125643, + 0.029703399166464806, + 0.03445257246494293, + -0.02987200953066349, + 0.028593385592103004, + -0.016130322590470314, + -0.007601485121995211, + 0.01853301003575325, + 0.00614722678437829, + -0.013046171516180038, + -0.0058416216634213924, + 0.012055589817464352, + 0.0010933282319456339, + 0.0213431715965271, + -0.0026134494692087173, + 0.004485719371587038, + -0.01717008277773857, + 0.012596545740962029, + 0.00029396917670965195, + 0.0026872162707149982, + 0.007749018259346485, + 0.0005009989836253226, + -0.006494984030723572, + -0.00036071048816666007, + -0.005859185475856066, + -0.04479396343231201, + 0.006076972931623459, + 0.004977497272193432, + -0.005848647095263004, + 0.01776021532714367, + -0.026008037850260735, + 0.019713278859853745, + -0.009407013654708862, + -0.005602757912129164, + -0.005297153256833553, + 0.005989155266433954, + -0.019839735701680183, + 0.07059124112129211, + 0.01118443999439478, + -0.003772640833631158, + 0.011205515824258327, + -0.012062614783644676, + -0.003913148771971464, + 0.004861578345298767, + 0.029478587210178375, + 0.0092594800516963, + 0.017254387959837914, + -0.025319548323750496, + 0.009133022278547287, + 0.030967971310019493, + 0.019502516835927963, + -0.0046824305318295956, + 0.007924653589725494, + 0.011093109846115112, + 0.0013409736566245556, + -0.022411031648516655, + -0.019516566768288612, + -0.005265538580715656, + -0.013910296373069286, + 0.019024789333343506, + -0.010165756568312645, + -0.0035899803042411804, + -0.03450877591967583, + 0.0032791064586490393, + -0.0030542935710400343, + -0.04220861569046974, + -0.008549913763999939, + 0.022270524874329567, + 0.005845134612172842, + 0.01532942708581686, + 0.00752420537173748, + -0.02236887998878956, + 0.001730005256831646, + 0.007587434258311987, + -0.0258394293487072, + 0.001201343722641468, + 0.002318382728844881, + -0.02089354582130909, + -0.013868143782019615, + -0.014317769557237625, + -0.0027434194926172495, + 0.006136688403785229, + 0.005209335591644049, + 0.01398757565766573, + 0.027104001492261887, + -0.008008957840502262, + -0.013158577494323254, + -0.005139081738889217, + 0.01100880466401577, + -0.007741992827504873, + -0.004527871496975422, + -0.021750643849372864, + 0.004784298595041037, + -0.00803705956786871, + -0.03403104841709137, + -0.03897693008184433, + -0.026120444759726524, + 0.0048580653965473175, + 0.019741378724575043, + -0.020865444093942642, + -0.02033151313662529, + -0.01414915919303894, + 0.009449165314435959, + -0.009800435975193977, + -0.017001472413539886, + -0.006270171143114567, + -0.005658961366862059, + -0.006547674536705017, + 0.0028839274309575558, + -0.005163670517504215, + 0.02121671475470066, + -0.01022196002304554, + 0.018111485987901688, + 0.031080378219485283, + -0.013924346305429935, + 0.01409295666962862, + -0.03804957866668701, + -0.011936157941818237, + -0.006361501291394234, + 0.00465784128755331, + 0.026022089645266533, + -0.007713891565799713, + -0.014212388545274734, + -0.015062461607158184, + -0.006073459982872009, + 0.006122638005763292, + -0.0325416624546051, + -0.002325408160686493, + -0.01212584413588047, + 0.005413072183728218, + 0.008999539539217949, + -0.01705767586827278, + -0.022944962605834007, + -0.0213291198015213, + -0.011781599372625351, + 0.003247492015361786, + -0.016481593251228333, + -0.0185189601033926, + -0.004717557225376368, + 0.015455883927643299, + -0.028677690774202347, + 0.01145843043923378, + -0.0022235396318137646, + -0.018055282533168793, + 0.016425389796495438, + -0.01572285033762455, + -0.018125537782907486, + 0.0019196911016479135, + 0.002200707094743848, + -0.01742299646139145, + 0.0008562208386138082, + -0.0015218777116388083, + -0.0025344137102365494, + -0.01922149956226349, + -0.0075101545080542564, + 0.035323720425367355, + 0.008472634479403496, + -0.002251641359180212, + -0.0013699533883482218, + -0.014739293605089188, + -0.006277196574956179, + 0.002184899989515543, + -0.02842477709054947, + -0.013179654255509377, + 0.02482777088880539, + -0.015062461607158184, + 0.0003679554210975766, + 0.012512240558862686, + 0.020247207954525948, + 0.0013409736566245556, + 0.016594000160694122, + 0.0049985735677182674, + -0.01247008889913559, + 0.014556633308529854, + -0.010179807431995869, + -0.00696919858455658, + -0.003373949322849512, + -0.029590992256999016, + -0.00044830847764387727, + 0.0037866916973143816, + 0.008289974182844162, + 2.4534021576982923e-5, + 0.025684868916869164, + -0.02930997684597969, + 0.01504841074347496, + 0.02494017779827118, + -0.014064854942262173, + 0.01763375848531723, + -0.001570177380926907, + -0.011142287403345108, + -0.004995060618966818, + 0.012758130207657814, + -0.022973064333200455, + 0.006653055548667908, + -0.020949749276041985, + 0.009898791089653969, + 0.003920174203813076, + 0.002469428814947605, + -0.0202191062271595, + -0.009364861063659191, + -0.013011044822633266, + 0.003222903236746788, + 0.008549913763999939, + -0.00345298508182168, + -0.015652595087885857, + 0.0029559379909187555, + 0.0007170300814323127, + -0.014654988422989845, + 0.005795956589281559, + -0.029394282028079033, + 0.0028979782946407795, + 0.013769787736237049, + -0.028944656252861023, + 0.027019696310162544, + -0.004289007745683193, + 0.03490219637751579, + -0.009013590402901173, + -0.020345564931631088, + -0.01268085092306137, + 0.00721508776769042, + 0.016228677704930305, + 0.028776045888662338, + -0.0026643837336450815, + -0.01094557624310255, + -0.020289361476898193, + -0.012456038035452366, + 0.0011530440533533692, + 0.00955454632639885, + -0.03861160948872566, + 0.0047737606801092625, + 0.02324002981185913, + -0.007229138631373644, + -0.0023552661295980215, + -0.021062154322862625, + -0.01975543051958084, + 0.009175174869596958, + -0.025249294936656952, + 0.013109399937093258, + -0.01247008889913559, + 0.00209005712531507, + -0.014978157356381416, + 0.00965992733836174, + -0.009997147135436535, + -0.014128083363175392, + -0.009976070374250412, + 0.011999386362731457, + -0.003379218280315399, + 0.0035724169574677944, + 0.0065933396108448505, + -0.02256559208035469, + 0.01694526895880699, + 0.03237305209040642, + 0.004808887839317322, + -0.010362467728555202, + -0.00045094298548065126, + -0.0063509633764624596, + -0.016031967476010323, + -0.0028242114931344986, + -0.02089354582130909, + 0.0015613955911248922, + 0.008795803412795067, + 0.004622714594006538, + -0.008676371537148952, + 0.008585041388869286, + -0.001532415859401226, + 0.03833059221506119, + -0.0008364618988707662, + -0.009526445530354977, + 0.019966192543506622, + 0.021750643849372864, + -0.028452878817915916, + 0.014654988422989845, + -0.001096840831451118, + -0.009800435975193977, + 0.001870513311587274, + 0.003955301363021135, + -0.010966652072966099, + -0.016228677704930305, + -0.03265406936407089, + 0.016875015571713448, + 0.004201190546154976, + -0.008669345639646053, + -0.00030582453473471105, + -0.008964412845671177, + 0.00880985427647829, + -0.007369646802544594, + -0.007148346398025751, + -0.014697141014039516, + 0.015245121903717518, + 0.008325101807713509, + -0.0024624033831059933, + -0.02065468207001686, + 0.018715670332312584, + 0.009962020441889763, + -0.0038218186236917973, + -0.012730028480291367, + -0.006206942722201347, + -0.00029945775168016553, + -0.017338691279292107, + 0.006189379375427961, + -0.0065968525595963, + -0.012406859546899796, + 0.03304748982191086, + 0.0297596026211977, + 0.0057608294300735, + 0.0038464076351374388, + -0.016200577840209007, + -0.0031948015093803406, + 0.011247668415307999, + -0.021933304145932198, + -0.008374279364943504, + 0.02515093982219696, + -0.01584930717945099, + -0.0020496610086411238, + -0.01173242088407278, + 0.02775033749639988, + -0.0032703245524317026, + 0.018280096352100372, + 0.008261872455477715, + -0.007671738974750042, + 0.0001580715470481664, + -0.007552307099103928, + 0.016790710389614105, + -0.01325693354010582, + 0.015062461607158184, + 0.020935697481036186, + -0.01197128463536501, + -0.009716130793094635, + 0.01898263581097126, + -0.0037375139072537422, + -0.009884740225970745, + -0.004123910795897245, + 0.016298932954669, + -0.0016623857663944364, + 0.043304577469825745, + -0.004935344681143761, + -0.008451558649539948, + -0.009111946448683739, + -0.012800282798707485, + -0.0006068191141821444, + 0.01404377818107605, + 0.036447785794734955, + 0.010833170264959335, + 0.009821511805057526, + -0.01922149956226349, + -0.00590133760124445, + -0.039370354264974594, + -0.006530111189931631, + 0.010685636661946774, + 0.0019811633974313736, + -0.01695932075381279, + 9.654439054429531e-5, + -0.010657534934580326, + 0.02730071172118187, + 0.017465149983763695, + -0.005922413896769285, + 0.023549146950244904, + 0.0016738020349293947, + 0.025319548323750496, + -0.045215487480163574, + -0.02426573820412159, + -0.011360075324773788, + 0.018814027309417725, + -0.000510658894199878, + 0.026036139577627182, + -0.007896551862359047, + 0.0014331820420920849, + 0.0003045072662644088, + 0.009617775678634644, + 0.0035724169574677944, + 0.000883005210198462, + 0.012217174284160137, + 0.026471715420484543, + -0.007594459690153599, + 0.02259369194507599, + -0.00976530835032463, + 0.0134747214615345, + -0.011163364164531231, + 0.010488925501704216, + 0.007924653589725494, + 0.01853301003575325, + -0.0042749568819999695, + -0.013678457587957382, + 0.007994907908141613, + 0.017704013735055923, + 0.012301478534936905, + -0.00955454632639885, + -0.0020127776078879833, + -0.0185189601033926, + -0.006294760387390852, + -0.008311050944030285, + 0.01672045700252056, + -0.023099521175026894, + 0.008100288920104504, + 0.007404773496091366, + 0.008458583615720272, + -0.014753344468772411, + -0.012659774161875248, + -0.005852160044014454, + 0.01674855872988701, + -0.03897693008184433, + -0.01443017553538084, + -0.011275770142674446, + -0.0011468968586996198, + -0.009681004099547863, + -0.0036251074634492397, + 0.011612989939749241, + -0.00735559593886137, + -0.007615535985678434, + 0.005936464760452509, + -0.0019319854909554124, + 0.024532703682780266, + -0.012933764606714249, + 0.029590992256999016, + -0.0014647963689640164, + -0.0036321328952908516, + -0.04580562189221382, + -0.03268216922879219, + -0.0016817055875435472, + 0.013067247346043587, + -0.011612989939749241, + -0.003171968972310424, + -0.03231684863567352, + 0.006417704746127129, + -0.013552000746130943, + 0.029956314712762833, + -0.007468002382665873, + 0.010278163477778435, + -0.00949131790548563, + 0.028480980545282364, + -0.01761970855295658, + -0.007861425168812275, + 0.020626580342650414, + 0.01584930717945099, + 0.032063934952020645, + -0.01268085092306137, + 0.004418978001922369, + 0.03077126108109951, + -0.010446772910654545, + -0.015076512470841408, + 0.002472941530868411, + -0.0028417750727385283, + -0.004018529783934355, + 0.018111485987901688, + -0.008353202603757381, + -0.005160157568752766, + -0.008479660376906395, + -0.0061331759206950665, + -0.032625965774059296, + -0.014514480717480183, + 0.0089784637093544, + -0.001654482213780284, + -0.007299392484128475, + 0.003951788414269686, + 0.004949395544826984, + -0.007155371829867363, + 0.01015873160213232, + -0.0014419637154787779, + -0.017001472413539886, + 1.3296122233441565e-5, + 0.007348570507019758, + 0.020373666658997536, + 0.013692508451640606, + 0.019924040883779526, + -0.015399681404232979, + -0.0037340011913329363, + -0.01820984110236168, + -0.00555709283798933, + 0.02548815868794918, + 0.01776021532714367, + 0.008205669932067394, + 0.021315069869160652, + -0.02581132762134075, + -0.010074426420032978, + 0.01618652604520321, + -0.0003629059356171638, + 0.011015830561518669, + 0.009631826542317867, + 0.002501043025404215, + -0.021399375051259995, + -0.0016746801557019353, + -0.004194165114313364, + 0.00493885762989521, + 0.008676371537148952, + 0.012814333662390709, + 0.01863136515021324, + -0.0038534330669790506, + -0.012821358628571033, + 0.031951528042554855, + 0.00559221999719739, + 0.00983556266874075, + -0.005349843762814999, + -0.0020795189775526524, + 0.00696919858455658, + 0.011999386362731457, + -0.020176954567432404, + -0.006435268092900515, + 0.01806933432817459, + -0.007425849791616201, + -0.004921294283121824, + -0.03186722472310066, + 0.016664253547787666, + 0.015582341700792313, + 0.019137194380164146, + -0.020162904635071754, + 0.015202970243990421, + -0.01988188736140728, + -0.009807460941374302, + 0.0314457006752491, + -0.016256779432296753, + 0.0039974539540708065, + 0.005690575577318668, + 0.0017062944825738668, + -0.018041232600808144, + -0.012406859546899796, + 0.01021493412554264, + 0.0006441415171138942, + -0.020289361476898193, + -0.0029067599680274725, + 0.0003677358909044415, + -0.014921953901648521, + -0.010179807431995869, + 0.07373861968517303, + -0.004050144460052252, + 0.009266505017876625, + 0.00500208605080843, + -0.012006412260234356, + -0.019952140748500824, + 0.004777273163199425, + 0.00673736073076725, + 0.015034359879791737, + 0.007446926087141037, + -0.0162848811596632, + -0.005897825118154287, + 0.01978353224694729, + 0.007749018259346485, + -0.030967971310019493, + -0.0006985883810557425, + 0.024631058797240257, + 0.009456191211938858, + 0.013242882676422596, + 0.009456191211938858, + 0.0010318559361621737, + 0.0007956267800182104, + 0.0006577532622031868, + -0.001167094917036593, + -0.0134747214615345, + 0.014029727317392826, + -0.014725242741405964, + -0.013861117884516716, + 0.031080378219485283, + 0.0092594800516963, + -0.0024378146044909954, + -0.019699227064847946, + -0.015638545155525208, + -0.008859031833708286, + 0.012027488090097904, + 0.001422643894329667, + 0.00938593689352274, + 0.0027311251033097506, + -0.0066846697591245174, + -0.0013778569409623742, + 0.0005686184740625322, + -0.00859909225255251, + 0.015231071971356869, + 0.011317922733724117, + -0.022720150649547577, + 0.0054411739110946655, + -0.028663640841841698, + 0.006305298302322626, + -0.015245121903717518, + -0.002393905771896243, + 0.008739599958062172, + -0.01090342365205288, + 0.011296845972537994, + 0.02113240957260132, + 0.021652288734912872, + -0.00032690074294805527, + 0.016481593251228333, + 0.01731059141457081, + 0.00994094368070364, + 0.00735559593886137, + -0.027834642678499222, + -0.012160970829427242, + 0.015104614198207855, + -0.008135415613651276, + -0.006505522411316633, + 0.005114492494612932, + -0.003582955105230212, + -0.00904169213026762, + -0.005571143701672554, + -0.021638238802552223, + -0.02595183439552784, + -0.02236887998878956, + 0.0003321697877254337, + -0.02290281094610691, + -0.011851852759718895, + 0.01975543051958084, + 0.00469296844676137, + 0.032850779592990875, + 0.025235243141651154, + -0.005736240651458502, + -0.005384970456361771, + 0.0037199503276497126, + -0.02267799712717533, + -0.014612835831940174, + 0.012512240558862686, + -0.013917321339249611, + 0.031192785128951073, + -0.052859123796224594, + -0.0032211467623710632, + -0.027104001492261887, + -0.017240336164832115, + -0.009343784302473068, + 0.01931985467672348, + 0.010938551276922226, + 0.0036286201793700457, + -0.010812093503773212, + 0.005479813553392887, + 0.011303871870040894, + 0.004433028865605593, + -0.002464159857481718, + 0.009364861063659191, + 0.014458277262747288, + -0.009069793857634068, + -0.011528684757649899, + -0.02270609885454178, + -0.015891458839178085, + 0.031277090311050415, + -0.002776790177449584, + -0.01532942708581686, + 0.0067338477820158005, + -9.637973562348634e-5, + -0.012751104310154915, + 0.011423303745687008, + -0.00628773495554924, + -0.008999539539217949, + 0.003614569315686822, + 0.024350043386220932, + 0.005300665739923716, + -0.02450460195541382, + -0.012982943095266819, + 0.0064914715476334095, + 0.02942238375544548, + 0.000980043550953269, + -0.02177874557673931, + -0.0027469322085380554, + 0.002701267134398222, + -0.017591606825590134, + -0.015357528813183308, + -0.022523438557982445, + -0.004285495262593031, + 0.013727635145187378, + 0.005880261305719614, + 0.03220444172620773, + 0.00766471354290843, + 0.0224531851708889, + -0.0013945422833785415, + -0.014893852174282074, + 0.006270171143114567, + 0.005606270860880613, + -0.023099521175026894, + 0.019966192543506622, + -0.015526138246059418, + 0.02054227516055107, + 0.01975543051958084, + 0.006326374597847462, + -0.008613143116235733, + -0.0016843401826918125, + -0.0065090348944067955, + 0.014697141014039516, + -0.004678917583078146, + 0.026246901601552963, + -0.030237330123782158, + 0.01252629142254591, + -0.014514480717480183, + -0.0028277242090553045, + 0.005711651872843504, + -0.03189532458782196, + 0.025305498391389847, + -0.015905510634183884, + 0.015118665061891079, + 0.020500123500823975, + -0.0016773147508502007, + -0.013868143782019615, + 0.003835869487375021, + -0.006540649104863405, + -2.1734836991527118e-5, + 0.031136581674218178, + 0.01840655319392681, + 0.016242729499936104, + 0.0038639709819108248, + 0.016467541456222534, + 0.010924500413239002, + 0.024659160524606705, + -0.022172167897224426, + -0.0052339243702590466, + -0.003291400847956538, + 0.009575623087584972, + -0.0025976423639804125, + -0.011943183839321136, + 0.010980702936649323, + -0.0053744325414299965, + -0.009969045408070087, + 0.005764342378824949, + 0.004461130127310753, + -0.020949749276041985, + -0.022439133375883102, + 0.00938593689352274, + -0.014781446196138859, + 0.010383544489741325, + 0.0011627040803432465, + -0.004338185768574476, + 0.01615842431783676, + 0.0011987092439085245, + -0.004359262064099312, + -0.00018946631462313235, + 0.0008979341946542263, + 0.04063492640852928, + 0.01888428069651127, + 0.018828077241778374, + -0.009723156690597534, + -0.006273684091866016, + 0.0015947662759572268, + 0.009484292939305305, + -0.00590133760124445, + -0.021244816482067108, + -0.002464159857481718, + -0.0078684501349926, + -0.004759709816426039, + 0.005817032884806395, + 0.007348570507019758, + -0.028157811611890793, + -0.02775033749639988, + 0.018364401534199715, + -0.005690575577318668, + 0.0017089290777221322, + -0.0084234569221735, + 0.01933390647172928, + 0.01896858587861061, + -0.0017098071984946728, + -0.005349843762814999, + 0.0021585547365248203, + -0.012891612946987152, + 0.018814027309417725, + 0.003405563533306122, + -0.006537136621773243, + -0.002576566068455577, + 0.008964412845671177, + 0.003972864709794521, + 0.01753540337085724, + -0.0013664406724274158, + 0.013559025712311268, + -0.008121364749968052, + 0.009231378324329853, + 0.008325101807713509, + 0.0006586314411833882, + 0.02662627398967743, + 0.01931985467672348, + -0.01459878496825695, + 0.017591606825590134, + -0.013818965293467045, + -0.018336299806833267, + -0.0057327281683683395, + -0.005834596231579781, + -0.013011044822633266, + -0.0012882830342277884, + -0.005402534268796444, + -0.0179709792137146, + 0.003393269143998623, + -0.01615842431783676, + -2.39851615333464e-5, + -0.013355289585888386, + -0.0020742500200867653, + 0.016228677704930305, + -0.011514633893966675, + 0.01135304942727089, + -0.004914268851280212, + -0.005490351468324661, + 0.023071419447660446, + -0.0071272701025009155, + -0.016875015571713448, + 0.012308504432439804, + 0.013502822257578373, + -0.024968279525637627, + -0.0073345196433365345, + 0.003154405392706394, + 0.00014972887584008276, + -0.027370966970920563, + 0.011577862314879894, + -0.00559221999719739, + 0.002248128643259406, + 0.007741992827504873, + -0.0017765485681593418, + -4.069793430971913e-5, + 0.032176341861486435, + 0.005757316946983337, + 0.005328767467290163, + -0.003247492015361786, + -0.02998441644012928, + 0.0022235396318137646, + 0.022298626601696014, + -0.012378758750855923, + -0.004166063386946917, + 0.018603265285491943, + -0.00601023156195879, + 0.0017923556733876467, + -0.03189532458782196, + 0.025474106892943382, + 0.021315069869160652, + -0.017001472413539886, + 0.020795190706849098, + -0.01840655319392681, + -0.007011351175606251, + -0.004917781334370375, + -0.009020616300404072, + 0.004710532259196043, + 0.02179279737174511, + -0.004176601301878691, + -0.013032120652496815, + 0.019572770223021507, + -0.040044791996479034, + -0.008837956003844738, + -0.001954818144440651, + -0.010882347822189331, + -0.0011451405007392168, + 0.0008952996577136219, + 0.0076928152702748775, + 0.03377813100814819, + 0.0036286201793700457, + -0.0039342250674963, + 0.02110430784523487, + 0.003684823401272297, + -0.0017967465100809932, + -0.009505368769168854, + -0.006143713835626841, + -0.015905510634183884, + -0.0025414391420781612, + -0.0051320563070476055, + 0.024546753615140915, + -0.008451558649539948, + 0.021174561232328415, + -0.0006489715306088328, + -0.011149313300848007, + 0.008887133561074734, + -0.008198644034564495, + 0.01773211546242237, + -0.019137194380164146, + 0.022411031648516655, + 0.0174089465290308, + 0.006228019017726183, + -0.015188919380307198, + 0.009083844721317291, + 0.019797582179307938, + -0.03192342817783356, + 0.003842894919216633, + 0.006189379375427961, + 0.007889526896178722, + -0.025446005165576935, + -0.005620321724563837, + 0.00338448747061193, + -0.017352743074297905, + -0.0039307125844061375, + -0.015385630540549755, + 0.0062842220067977905, + -0.004113372880965471, + 0.003776153549551964, + -0.014893852174282074, + 0.008212694898247719, + -0.007148346398025751, + 0.010706712491810322, + 0.012947815470397472, + -0.021244816482067108, + -0.005430635530501604, + 0.025249294936656952, + 0.01832224801182747, + -0.01201343722641468, + -0.002042635576799512, + 0.0037937171291559935, + 0.0370660200715065, + -0.015596392564475536, + 0.016790710389614105, + 0.004109859932214022, + 0.023506995290517807, + -0.0019653562922030687, + -0.0025853479746729136, + 0.004267931915819645, + -0.012118818238377571, + -0.010524052195250988, + 0.01504841074347496, + -0.03110847994685173, + 0.004050144460052252, + -0.008830930106341839, + -0.021034054458141327, + -0.005297153256833553, + 0.001463918131776154, + -0.007685789838433266, + 0.021638238802552223, + -0.0041168853640556335, + -0.011015830561518669, + -0.021764695644378662, + 0.0029032474849373102, + 0.03658829256892204, + 0.001501679653301835, + 0.003618082031607628, + -0.021722542122006416, + -0.022326728329062462, + 0.017605656757950783, + 0.02897275798022747, + 0.0011038662632927299, + 0.0048405020497739315, + 0.001650969497859478, + -0.011858878657221794, + -0.0014050804311409593, + 0.0018898331327363849, + 0.005971591919660568, + -0.03009682148694992, + 0.03799337521195412, + -0.009301632642745972, + 0.0036918488331139088, + -0.0065265982411801815, + 0.005514940712600946, + -0.015765001997351646, + -0.013502822257578373, + 0.025221193209290504, + -0.0035724169574677944, + 0.0028505567461252213, + -0.0026784345973283052, + -0.006298272870481014, + 0.007313443347811699, + 0.023844214156270027, + -0.003993941005319357, + -0.0049248067662119865, + 0.010320315137505531, + -0.015750952064990997, + 0.006322861649096012, + 0.004264418967068195, + -0.014402073808014393, + -0.014584734104573727, + 0.00027091705123893917, + 0.003461766755208373, + -0.001656238571740687, + -0.0015113395638763905, + -0.01229445356875658, + 0.004152012523263693, + 0.011423303745687008, + 0.004369799979031086, + -0.016242729499936104, + 0.017366793006658554, + 0.011093109846115112, + 0.002179631032049656, + 0.0025203630793839693, + 0.003015653695911169, + 0.005911875981837511, + -0.014472328126430511, + 0.003402050817385316, + -0.03136139363050461, + -0.015245121903717518, + 0.021272916346788406, + 0.0006305298302322626, + -0.010200883261859417, + 0.011957233771681786, + -0.014289667829871178, + -0.0038639709819108248, + -0.016102220863103867, + 0.0017607413465157151, + -0.0037831789813935757, + -0.014528531581163406, + 0.009168149903416634, + 0.018223892897367477, + -0.0034231271129101515, + -0.004759709816426039, + -0.02158203534781933, + 0.000658192322589457, + -0.012329580262303352, + 0.0010353686520829797, + -0.02391446754336357, + -0.014893852174282074, + -0.008493711240589619, + -0.01252629142254591, + 0.010341391898691654, + -0.01888428069651127, + 0.021750643849372864, + 0.015483985655009747, + -0.0047913240268826485, + -0.023717757314443588, + -0.00010395399294793606, + -0.0055079152807593346, + 0.02177874557673931, + 0.0007987003773450851, + -0.012800282798707485, + 0.006990274880081415, + -0.004443566780537367, + 0.027356915175914764, + 0.004608663730323315, + 0.0024624033831059933, + 0.013263958506286144, + 0.026078293099999428, + 0.0018283608369529247, + -0.00021142068726476282, + -0.0023851238656789064, + 0.00403960607945919, + -0.030462143942713737, + -0.0008887133444659412, + -0.008184593170881271, + 0.0035601225681602955, + 0.010573229752480984, + 0.0002489626931492239, + 0.008507762104272842, + 0.021258866414427757, + -0.017394894734025, + 0.01697337068617344, + 0.022649895399808884, + 0.02853718213737011, + 0.015259172767400742, + -0.012814333662390709, + 0.020275309681892395, + -0.004011504352092743, + 0.015427783131599426, + 0.024532703682780266, + -0.012659774161875248, + 0.0086974473670125, + 0.0427144430577755, + -0.0018529497319832444, + -0.00931568257510662, + -0.003461766755208373, + 0.009470242075622082, + -0.0006015500403009355, + 0.0006182353827171028, + 0.011156338267028332, + 0.009828537702560425, + 0.008030034601688385, + 0.010172782465815544, + -0.021722542122006416, + -0.015779053792357445, + -0.0009897034615278244, + -0.0022147579584270716, + 0.034986503422260284, + -0.002197194378823042, + 0.007306417915970087, + 0.010854246094822884, + -0.0003143867361359298, + -0.0020707373041659594, + -0.026893239468336105, + -0.004854552913457155, + 0.004977497272193432, + -0.004475180990993977, + -0.0023763421922922134, + 0.012694901786744595, + 0.0018617315217852592, + -0.013214780949056149, + -0.010769940912723541, + -0.01785857230424881, + 0.033525217324495316, + 0.00915409903973341, + -0.026373358443379402, + 0.007847374305129051, + 0.02405497618019581, + 0.024321941658854485, + 0.008606117218732834, + 0.0179569274187088, + 0.00033743883250281215, + 0.03186722472310066, + 0.004296033177524805, + 0.024307891726493835, + 0.0023535096552222967, + 0.011261719278991222, + -0.010805068537592888, + 0.006242069881409407, + 0.012723002582788467, + 0.005999693181365728, + 0.0015104614431038499, + -0.02685108594596386, + 0.008212694898247719, + 0.02574107237160206, + 0.018125537782907486, + 0.010706712491810322, + -0.009997147135436535, + 0.008093263022601604, + 0.015512087382376194, + -0.015540189109742641, + 0.02381611242890358, + 0.003528508124873042, + 0.00036224728683009744, + -0.005831083748489618, + -0.004815913271158934, + -0.006192891858518124, + -0.00017805003153625876, + 0.0037902044132351875, + -0.01112121157348156, + 0.013755736872553825, + 0.011107160709798336, + -0.005876748822629452, + -0.0041730888187885284, + 0.004278469830751419, + 0.01717008277773857, + -0.007959780283272266, + 0.0028944655787199736, + -0.02168039046227932, + 0.013228831812739372, + 0.02200355939567089, + -0.0030244356021285057, + -0.0036251074634492397, + -0.018266044557094574, + 0.0026099367532879114, + 0.006804101634770632, + 0.00676897494122386, + 0.01761970855295658, + 0.00017332984134554863, + 0.000503633520565927, + 0.019179347902536392, + -0.02009264938533306, + 0.01898263581097126, + -0.0038709964137524366, + -0.011261719278991222, + -0.006477420683950186, + 0.005845134612172842, + 0.0051496196538209915, + 0.008121364749968052, + 0.004763222765177488, + -0.01933390647172928, + -0.03279457613825798, + -0.016706405207514763, + 0.006902457680553198, + -0.004640277940779924, + 0.00019089334819000214, + 0.011331973597407341, + -0.0008843224495649338, + -0.009786385111510754, + -0.014978157356381416, + 0.005244462750852108, + 0.0035583660937845707, + 0.014907903037965298, + -0.011212541721761227, + 0.004956420976668596, + -0.03625107556581497, + 0.012512240558862686, + 0.0031579181086272, + 0.002785571850836277, + -0.007678764406591654, + 0.014654988422989845, + 0.004018529783934355, + 0.00780522171407938, + 0.01606006920337677, + -0.0020127776078879833, + 0.008128389716148376, + -0.005715164355933666, + -0.01806933432817459, + 0.015315376222133636, + 0.0029067599680274725, + 0.016650203615427017, + -0.018364401534199715, + 0.026584120467305183, + 0.0067338477820158005, + 0.0003653209132608026, + -0.036222971975803375, + -0.00679707620292902, + -0.013109399937093258, + -0.009702079929411411, + 0.0022867682855576277, + -0.006747898645699024, + -0.010861271061003208, + -0.01516081765294075, + 0.008015983738005161, + -0.0001220663616550155, + 0.02998441644012928, + -0.0016658984823152423, + -0.013615229167044163, + -0.003015653695911169, + -0.018490858376026154, + 0.003582955105230212, + -0.0067514111287891865, + -0.0071097067557275295, + 0.012217174284160137, + -0.004555973224341869, + 0.01398757565766573, + 0.00036839451058767736, + -0.0025888606905937195, + -0.00033173069823533297, + -0.029843907803297043, + 0.04010099545121193, + 0.0026011550799012184, + -0.007587434258311987, + -0.02214406616985798, + 0.004450592212378979, + 0.006066434551030397, + 0.005595732480287552, + -0.004148500040173531, + 0.0034336652606725693, + 0.011156338267028332, + -0.028452878817915916, + 0.009076819755136967, + -0.004601638298481703, + 0.011725395917892456, + -0.013313136994838715, + -0.0026626272592693567, + 0.007994907908141613, + 0.034536875784397125, + 0.006052383687347174, + -0.031052276492118835, + 0.03110847994685173, + 0.004812400322407484, + 0.001791477552615106, + 0.010369493626058102, + 0.020064547657966614, + 0.018729722127318382, + -1.2740401871269569e-5, + 0.0036567216739058495, + 0.012441987171769142, + -0.017352743074297905, + 0.0022937937173992395, + 0.0012399834813550115, + -0.02673867903649807, + 0.0067514111287891865, + -0.010805068537592888, + 0.013629280030727386, + 0.008943337015807629, + 0.009484292939305305, + -0.02066873200237751, + -0.014163210056722164, + 0.0020127776078879833, + -0.026008037850260735, + -0.01532942708581686, + 5.790467912447639e-5, + -0.002032097429037094, + -0.006691695190966129, + -0.009062768891453743, + -0.018364401534199715, + 0.008690422400832176, + 0.010320315137505531, + 0.01414915919303894, + 0.00041932868771255016, + 0.019137194380164146, + -0.0038042552769184113, + 0.004636765457689762, + 0.006280709523707628, + 0.008437507785856724, + -0.04822235926985741, + -0.01753540337085724, + 0.004805374890565872, + -0.007190498989075422, + -0.007896551862359047, + -0.004253881052136421, + 0.012322555296123028, + 0.0022130017168819904, + 0.010292214341461658, + -0.0029102726839482784, + -0.023408640176057816, + -0.01359415240585804, + 0.014837648719549179, + -0.017999079078435898, + 0.006730335298925638, + 0.04872818663716316, + 0.006013744045048952, + -0.002690728986635804, + 0.0035601225681602955, + -0.019038839265704155, + 0.00026520891697146, + 0.008304025046527386, + 0.015877408906817436, + -0.014823597855865955, + 0.02391446754336357, + -0.017451098188757896, + -0.01888428069651127, + -0.001391907804645598, + 0.0026872162707149982, + 0.02225647307932377, + 0.007222113199532032, + -0.0066495430655777454, + 0.015568290837109089, + 0.007952755317091942, + 0.017479199916124344, + -0.011423303745687008, + 0.00601023156195879, + 0.028354521840810776, + -0.019277703016996384, + 0.0010476630413904786, + -0.008030034601688385, + -0.006073459982872009, + -0.02158203534781933, + 0.011029881425201893, + -0.0028119171038269997, + -0.008381304331123829, + 0.00257129711098969, + 0.003233441151678562, + -0.007155371829867363, + -0.010805068537592888, + 0.012673825025558472, + 0.002722343197092414, + -0.013137501664459705, + -0.0012847704347223043, + 0.024574855342507362, + -0.0213431715965271, + -0.019052891060709953, + -0.00023293598496820778, + -0.025319548323750496, + 0.0039307125844061375, + -0.025853479281067848, + -0.037796661257743835, + 0.0033721928484737873, + -0.005444686394184828, + -0.00656523834913969, + 0.004545435309410095, + -0.017226286232471466, + -0.017001472413539886, + -0.009463216178119183, + -0.0030630752444267273, + 0.0036602343898266554, + 0.0076085105538368225, + 0.014310743659734726, + 0.004113372880965471, + 0.019362008199095726, + 0.01638323813676834, + 0.012203123420476913, + -0.011662167496979237, + 0.023506995290517807, + 0.0041730888187885284, + -0.017774267122149467, + -0.011465456336736679, + -0.014402073808014393, + -0.017788317054510117, + 0.002026828471571207, + 0.012090716511011124, + 0.0007855277508497238, + -0.005202310159802437, + -0.010973677970468998, + -0.03287887945771217, + 0.007102681323885918, + 0.0033950256183743477, + 0.004872116260230541, + 0.026949442923069, + 0.026218799874186516, + 0.008570990525186062, + 0.01348877139389515, + -0.004092296585440636, + 0.008205669932067394, + 0.017704013735055923, + -0.0008825661498121917, + -0.017001472413539886, + -0.026036139577627182, + -0.005757316946983337, + -0.005321742035448551, + -0.01719818450510502, + 0.0041730888187885284, + 0.008690422400832176, + -0.010833170264959335, + -0.037571851164102554, + 0.002177874557673931, + 0.002023315755650401, + 0.012765155173838139, + 0.006484446115791798, + -0.027539575472474098, + -0.025628667324781418, + -0.010186833329498768, + -0.015891458839178085, + 0.004123910795897245, + -0.0002955059753730893, + -0.0064247301779687405, + 0.00704647833481431, + -0.003611056599766016, + 0.03167051076889038, + 0.001724736182950437, + -0.013601178303360939, + -0.023450791835784912, + 0.012104767374694347, + 0.03167051076889038, + 0.009477267041802406, + -0.0020162903238087893, + 0.013783838599920273, + -0.005328767467290163, + -0.0005018771626055241, + -0.01965707540512085, + 0.006582801695913076, + 0.006635492201894522, + -0.0014849943108856678, + -0.010762915946543217, + 0.010692661628127098, + -0.009884740225970745, + -0.0084304828196764, + -0.015526138246059418, + 0.020050497725605965, + -0.013847067020833492, + 0.005191772244870663, + 0.03178291767835617, + -0.023535097017884254, + 0.0051987976767122746, + 0.024996379390358925, + -0.01594766229391098, + -0.020247207954525948, + -0.005146107170730829, + -0.012498189695179462, + -0.019488465040922165, + -0.019586820155382156, + -0.0025027994997799397, + 0.022326728329062462, + -0.0047737606801092625, + -0.011381151154637337, + 0.012589520774781704, + -0.013959473930299282, + 0.002390393055975437, + -0.004735121037811041, + -0.0052901278249919415, + 0.007798196282237768, + -0.006895432248711586, + 0.016130322590470314, + -0.0017554722726345062, + 0.0038569457828998566, + 0.0043522366322577, + 0.01107203308492899, + 0.010510001331567764, + -0.015020309016108513, + 0.03537992388010025, + 0.0028101608622819185, + -0.017394894734025, + 0.00023732686531729996, + -0.0002456695365253836, + -0.01705767586827278, + 0.001345364493317902, + 0.005897825118154287, + 0.0010019979672506452, + -0.010348416864871979, + -0.01111418567597866, + -0.004541922360658646, + -0.010418671183288097, + -0.016355136409401894, + 0.007201036904007196, + -0.005483326036483049, + 0.009399987757205963, + -0.0381900854408741, + -0.004794836975634098, + -0.01499220822006464, + 0.002337702549993992, + -0.031136581674218178, + -0.022312676534056664, + 0.028607437387108803, + 0.005219873506575823, + 0.012589520774781704, + 0.024757517501711845, + -0.009638851508498192, + -0.005160157568752766, + 0.010439747013151646, + 0.003235197626054287, + -0.000562910339795053, + -0.019404159858822823, + 0.0005541286082006991, + 0.030630752444267273, + 0.02953479066491127, + 0.01107203308492899, + -0.015793103724718094, + -0.006709259003400803, + -0.009364861063659191, + 0.003380974754691124, + 0.018139587715268135, + -0.00621045520529151, + 0.0022692049387842417, + -0.01809743605554104, + -0.008044085465371609, + 0.008964412845671177, + -0.0045489477925002575, + 0.003832356771454215, + -0.0051320563070476055, + 0.0185189601033926, + -0.0027118052821606398, + -0.006259633228182793, + -0.0024624033831059933, + -0.014697141014039516, + 0.0021304532419890165, + -0.010755890049040318, + -0.008353202603757381, + -0.016481593251228333, + 0.010439747013151646, + -0.00987771525979042, + 0.0006103317718952894, + 0.010938551276922226, + -0.008493711240589619, + 0.009954994544386864, + 0.00300335930660367, + 0.019291752949357033, + -0.015062461607158184, + -0.000423500023316592, + -0.01157083734869957, + -0.007791170850396156, + 0.0038569457828998566, + -0.0006252607563510537, + 0.013418518006801605, + -0.018912382423877716, + 0.004060682374984026, + -0.01419833768159151, + -0.0089854896068573, + -0.016298932954669, + -0.019699227064847946, + -0.006579288747161627, + 0.00909087061882019, + 0.025221193209290504, + -0.012027488090097904, + 0.025136888027191162, + 0.020261259749531746, + 0.021427476778626442, + -0.025797275826334953, + 0.009203276596963406, + 0.005774880293756723, + 0.018673518672585487, + -0.02492612600326538, + 0.006934071891009808, + -0.0038885599933564663, + -0.009779359214007854, + -0.0005181233864277601, + -0.010341391898691654, + -0.01594766229391098, + 0.013355289585888386, + -0.00017267120711039752, + 0.0066671064123511314, + -0.012540342286229134, + -0.016088170930743217, + -0.016678303480148315, + -0.010755890049040318, + -0.02617664821445942, + -0.0016746801557019353, + 0.01582120545208454, + -0.017718063667416573, + -0.00938593689352274, + -0.028045404702425003, + 0.007945729419589043, + 0.008339151740074158, + -0.005704626441001892, + -0.010959627106785774, + 0.010081452317535877, + -0.014964106492698193, + 0.022663947194814682, + 0.012512240558862686, + -0.03897693008184433, + -0.008795803412795067, + 0.008746625855565071, + -0.00825484748929739, + -0.01242091041058302, + 0.016102220863103867, + -0.024743465706706047, + 0.011809701099991798, + 0.03242925554513931, + 0.0118026752024889, + -0.01105798315256834, + 0.006101561710238457, + -0.01920744962990284, + 0.009976070374250412, + 0.012006412260234356, + -0.005030187778174877, + 0.0029664759058505297, + 0.03155810758471489, + -0.01229445356875658, + -0.010791017673909664, + -0.023408640176057816, + 0.0007095655892044306, + 0.0003391951904632151, + 0.011374126188457012, + 0.007994907908141613, + -0.011212541721761227, + -0.004222266376018524, + 0.009610749781131744, + 0.0037340011913329363, + 0.0021532857790589333, + -0.00011569958587642759, + -0.0046824305318295956, + 0.0045313844457268715, + -0.010320315137505531, + 0.005444686394184828, + -0.007959780283272266, + -0.01909504272043705, + -0.020514173433184624, + -0.0005014380440115929, + -0.0157369002699852, + 0.014212388545274734, + 0.008662320673465729, + -0.016804762184619904, + 0.02065468207001686, + 0.007938704453408718, + -0.004699993878602982, + -0.01582120545208454, + 0.009245429188013077, + 0.0069410973228514194, + 0.012835409492254257, + -0.005205822642892599, + 0.015245121903717518, + 0.01583525538444519, + 0.012336606159806252, + 0.0019056402379646897, + -0.009751258417963982, + -0.006582801695913076, + 0.010833170264959335, + -0.0013436081353574991, + 0.005434148479253054, + -0.01156381145119667, + -0.011430328711867332, + 0.004619201645255089, + 0.011936157941818237, + 0.0037340011913329363, + -0.00791060272604227, + -0.01627083122730255, + -0.007348570507019758, + 0.01000417210161686, + 0.006343937944620848, + -0.013615229167044163, + 0.004959933925420046, + 0.0013225319562479854, + -0.00403960607945919, + -0.008964412845671177, + 0.002857582177966833, + 0.0038042552769184113, + -0.003927199635654688, + 0.006516060326248407, + 0.0011697293957695365, + 0.0014858725480735302, + -0.0063509633764624596, + 0.01105798315256834, + 0.00718347355723381, + -0.00424334267154336, + 0.01167621836066246, + 6.037454659235664e-5, + 0.0022130017168819904, + 0.008409406058490276, + 0.003772640833631158, + 0.00621045520529151, + 0.005550067406147718, + -0.002258666791021824, + 0.008451558649539948, + -0.0020865444093942642, + -0.005490351468324661, + 0.01308832410722971, + 0.0074188243597745895, + -0.002717074239626527, + -0.0014744562795385718, + -0.003621594747528434, + -0.004945883061736822, + -0.01561044342815876, + 0.0011477750958874822, + -0.034199655055999756, + -0.002114645903930068, + 0.02201760932803154, + 0.01888428069651127, + -0.014163210056722164, + 0.004194165114313364, + 0.030265431851148605, + 0.0022112452425062656, + -0.016650203615427017, + -0.0061156125739216805, + -0.0021866564638912678, + -0.029900111258029938, + -0.0012215417809784412, + -0.006523085758090019, + -0.014654988422989845, + -0.011282796040177345, + -0.0007626952137798071, + 0.007190498989075422, + -0.004963446408510208, + 0.0006432633963413537, + 0.008058136329054832, + -0.011549760587513447, + -0.00288041471503675, + -0.007057016249746084, + 0.005968078970909119, + -0.00278030289337039, + -0.004917781334370375, + -0.007931678555905819, + 0.010615382343530655, + -0.010334366001188755, + 0.0006068191141821444, + 0.023394588381052017, + 0.0053919958882033825, + -0.026654375717043877, + 0.0031895325519144535, + 0.006758436560630798, + 0.02257964201271534, + 0.00766471354290843, + -0.020162904635071754, + -0.01986783742904663, + -0.0003479769511613995, + -0.022298626601696014, + 0.020514173433184624, + 0.0269775427877903, + -0.0022779866121709347, + 0.02259369194507599, + 0.009006565436720848, + 0.020823290571570396, + -0.014036753214895725, + -0.011022855527698994, + -0.016102220863103867, + 0.004144987091422081, + -0.0007165910210460424, + 0.014795496128499508, + -0.027553627267479897, + -0.007460976950824261, + 0.007439900655299425, + -0.006052383687347174, + -0.008887133561074734, + -0.027005644515156746, + 0.002943643368780613, + 0.0033440913539379835, + 0.0012355925282463431, + 0.00955454632639885, + 0.007566357962787151, + -0.0052901278249919415, + -0.0005651057581417263, + -0.0014533799840137362, + -0.012041538953781128, + 0.010805068537592888, + -0.011275770142674446, + -0.016678303480148315, + 0.01077696681022644, + -0.01398054976016283, + -0.008325101807713509, + -0.007994907908141613, + 0.02314167469739914, + 0.028677690774202347, + 0.012378758750855923, + 0.00020505391876213253, + -0.0044892318546772, + 0.0029629631899297237, + -0.0006920020678080618, + 0.001803771941922605, + -0.006126150488853455, + -0.010264112614095211, + -0.0057502915151417255, + -0.008163517341017723, + 0.007706866133958101, + -0.002393905771896243, + 0.017254387959837914, + 0.00798085704445839, + -0.026808934286236763, + -0.006909482646733522, + -0.005673012230545282, + 0.0179569274187088, + 0.033750031143426895, + 0.0072502149268984795, + -0.010896398685872555, + 0.016706405207514763, + -0.009638851508498192, + 0.025909682735800743, + -0.01287053618580103, + 0.009076819755136967, + 0.015975764021277428, + -0.0030402427073568106, + 0.007777119986712933, + -0.0032018269412219524, + -0.0020004832185804844, + 0.00510746706277132, + -0.0021954381372779608, + -0.012273376807570457, + -0.007994907908141613, + -0.01218907255679369, + 0.009161124005913734, + -0.00047158010420389473, + 0.031277090311050415, + 0.0005936464876867831, + 0.010713738389313221, + -0.0015297812642529607, + -0.004903730470687151, + 0.016256779432296753, + 0.009688029065728188, + -0.006400141399353743, + 0.014725242741405964, + 0.0075593325309455395, + -0.0046824305318295956, + 0.01582120545208454, + -0.005964566487818956, + -0.008184593170881271, + -0.009266505017876625, + 0.031501904129981995, + -0.014472328126430511, + -0.003233441151678562, + -0.0077279419638216496, + -0.02987200953066349, + -0.012828383594751358, + -0.02908516488969326, + 0.026598172262310982, + -0.0038534330669790506, + 0.008563964627683163, + -0.014416124671697617, + 0.005181233864277601, + 0.0030244356021285057, + -0.002567784395068884, + -0.006934071891009808, + -0.0034196143969893456, + -0.0006371161434799433, + -0.0017765485681593418, + -0.02964719571173191, + 0.0291975699365139, + 0.02426573820412159, + -0.006934071891009808, + -0.008957387879490852, + 0.01728248968720436, + -0.023043317720294, + 0.01663615182042122, + 0.018799975514411926, + -0.006579288747161627, + 0.0038569457828998566, + 0.008008957840502262, + -0.02536170184612274, + 0.0020531737245619297, + -0.023422690108418465, + 0.00021592133271042258, + -0.010573229752480984, + 0.014893852174282074, + 0.0012382271233946085, + 0.0035091883037239313, + 0.002611693227663636, + -0.015779053792357445, + -0.022846607491374016, + -0.004844014532864094, + 0.028565283864736557, + 0.05212848260998726, + 0.03467738255858421, + 0.00910492055118084, + 0.012097742408514023, + 0.029450485482811928, + -0.020710885524749756, + 0.004176601301878691, + -0.0007310808869078755, + -0.016846913844347, + -0.015989815816283226, + 0.0024272764567285776, + -0.0037866916973143816, + 0.03315989673137665, + 0.015455883927643299, + -0.0013365827035158873, + -0.008788777515292168, + -0.012498189695179462, + -0.006653055548667908, + 0.005139081738889217, + 0.005641398020088673, + -0.006245582364499569, + 0.00628773495554924, + -0.012779206037521362, + 0.011823751963675022, + 0.013994600623846054, + 0.006853279657661915, + -0.006062922067940235, + -0.0056835501454770565, + -0.02302926778793335, + 0.005964566487818956, + 0.01694526895880699, + -0.01809743605554104, + -0.013945423066616058, + -0.0061999172903597355, + -0.009638851508498192, + 0.01784452050924301, + 0.013854092918336391, + 0.001463918131776154, + -0.0071940114721655846, + -0.01639728806912899, + -0.02236887998878956, + -0.010137654840946198, + 0.015090563334524632, + -0.022509388625621796, + -0.018055282533168793, + -0.005444686394184828, + 0.01348877139389515, + -0.012898637913167477, + 0.00915409903973341, + -0.00921030156314373, + -0.0016448221867904067, + 0.0007626952137798071, + -0.027370966970920563, + -0.01954466849565506, + -0.026766780763864517, + 0.020584428682923317, + 0.03346901386976242, + -0.010812093503773212, + -0.017900723963975906, + -0.01660805009305477, + -0.02090759575366974, + 0.013137501664459705, + 0.011240643449127674, + 0.0019741379655897617, + -0.015385630540549755, + 0.025993987917900085, + 0.003013897454366088, + -0.0036496962420642376, + -0.00825484748929739, + -0.01719818450510502, + 0.009364861063659191, + -0.009519419632852077, + -0.011718370951712132, + -0.0044646430760622025, + -0.01773211546242237, + -0.004945883061736822, + -0.021989507600665092, + 0.0026678964495658875, + 0.006761949509382248, + 0.027342865243554115, + 0.013228831812739372, + 0.015034359879791737, + 0.016200577840209007, + -0.002406200161203742, + -0.016846913844347, + 0.000339853810146451, + -0.0014946542214602232, + 0.005887286737561226, + -0.022382929921150208, + -0.013840042054653168, + -0.031248988583683968, + -0.006164790131151676, + -0.01618652604520321, + -0.00807921215891838, + 0.012238250114023685, + -0.0179569274187088, + -0.007777119986712933, + -0.009512394666671753, + 0.0023482406977564096, + 0.014205362647771835, + -0.0020496610086411238, + 0.0029875522013753653, + -0.003937738016247749, + 0.02627500332891941, + -0.006463369820266962, + -0.04170278459787369, + 0.005230411887168884, + 0.008325101807713509, + 0.004513820633292198, + 0.021708492189645767, + -0.011879954487085342, + -0.017099827527999878, + 0.007313443347811699, + 0.004931832198053598, + -0.0070078386925160885, + 0.03043404221534729, + -0.005595732480287552, + 0.00559221999719739, + 0.0034002945758402348, + 0.006761949509382248, + -0.006951635237783194, + 0.0015657864278182387, + 0.0168609656393528, + 0.012441987171769142, + 0.001479725237004459, + -0.004777273163199425, + 0.008325101807713509, + 0.021286968141794205, + -0.021511780098080635, + 0.004496257286518812, + 0.023549146950244904, + 0.006610903423279524, + -0.004036093596369028, + 0.0086974473670125, + -0.012884587049484253, + -0.004246855620294809, + 0.014514480717480183, + -0.005500889848917723, + 0.021371273323893547, + -0.0002588421630207449, + -0.018336299806833267, + 0.02942238375544548, + 0.02482777088880539, + -0.0032088523730635643, + -0.015863357111811638, + -0.003765615401789546, + -0.020612528547644615, + 0.01015873160213232, + 0.027244508266448975, + -0.0066671064123511314, + -0.0028294806834310293, + -0.017942877486348152, + -0.01135304942727089, + -0.0005769611452706158, + -0.0032299286685884, + 0.01268085092306137, + 0.003835869487375021, + 0.02090759575366974, + -0.010271137580275536, + 0.0034038072917610407, + 0.0034354215022176504, + 0.0028189425356686115, + 0.0076928152702748775, + 0.01212584413588047, + 0.006410679314285517, + 0.011275770142674446, + -0.00120836915448308, + 0.01135304942727089, + -0.008992514573037624, + -0.022888759151101112, + -0.002562515437602997, + 0.011865903623402119, + -0.0005787175032310188, + -0.0007530353032052517, + -0.007148346398025751, + -0.0063158362172544, + -0.008332126773893833, + -0.01798502914607525, + -0.046873483806848526, + -0.009175174869596958, + 0.011809701099991798, + 0.022860657423734665, + 0.01919339783489704, + 0.008311050944030285, + 0.007720916997641325, + -0.000753474363591522, + 0.0005681794136762619, + 0.006677644792944193, + 0.01787262223660946, + -0.004359262064099312, + 0.0025379264261573553, + 0.014177260920405388, + -0.010980702936649323, + -0.004095809534192085, + -0.014556633308529854, + 0.005054776556789875, + -0.007446926087141037, + 0.017156030982732773, + -0.01660805009305477, + -0.0005550067289732397, + -0.014352896250784397, + -0.030124923214316368, + -4.753123357659206e-5, + -0.03861160948872566 + ], + "1fd73fc0-2038-4b6e-8a5d-05c8c2708670": [ + -0.027725402265787125, + 0.0061425864696502686, + -0.015970725566148758, + -0.004058993421494961, + -0.04964326694607735, + -0.006523007992655039, + 0.013667254708707333, + 0.05017376318573952, + 0.0038705274928361177, + 0.05207237973809242, + -0.012676064856350422, + 0.025380050763487816, + -0.02951233647763729, + 0.003908918704837561, + -0.01979588158428669, + 0.013388046994805336, + -0.04495256394147873, + 0.02884223498404026, + -0.00975833646953106, + -0.006540458649396896, + 0.05807536467909813, + -0.030740853399038315, + -0.010665764100849628, + 0.016947954893112183, + -0.0299032274633646, + -0.014532801695168018, + 0.02656668610870838, + -0.010533140040934086, + -0.022923016920685768, + -0.008236650377511978, + 0.014937653206288815, + 0.02557549625635147, + 0.022713609039783478, + -0.00299800094217062, + 0.006365953478962183, + -0.013422947376966476, + 0.00829947181046009, + 0.04160206392407417, + -0.014658445492386818, + 0.018260234966874123, + -0.03657631203532219, + 0.0046278806403279305, + 0.0161801315844059, + 0.007699173875153065, + -0.009137097746133804, + 0.006962761282920837, + 0.035347793251276016, + -0.008362294174730778, + 0.00963269267231226, + 0.011391705833375454, + 0.013799878768622875, + 0.032332342118024826, + -0.01032373309135437, + 0.0031009591184556484, + 0.0026577156968414783, + 0.0037623343523591757, + -0.006114665884524584, + 0.08359501510858536, + 0.013011114671826363, + -0.039898891001939774, + -0.03068501129746437, + -0.027292629703879356, + -0.008062144741415977, + -0.0017293475102633238, + 0.010791407898068428, + -0.020340338349342346, + 0.0021516503766179085, + -0.011489428579807281, + -0.01738072745501995, + 0.014867851510643959, + -0.028158174827694893, + 0.010833288542926311, + -0.03774898499250412, + 0.013806859031319618, + -0.02859094738960266, + 0.005636521149426699, + 0.03029412031173706, + -0.06483221054077148, + -0.0012119392631575465, + 0.01855340413749218, + -0.010917051695287228, + 0.002001575892791152, + 0.01571943797171116, + 0.01816251128911972, + 0.015551912598311901, + 0.008878829888999462, + -0.03199729323387146, + -0.05076010152697563, + -0.06198428198695183, + -0.004352162126451731, + 0.021875984966754913, + 0.02175034023821354, + 0.00961175188422203, + -0.0037204530090093613, + -0.0018706967821344733, + 0.003671591402962804, + 0.048973165452480316, + 0.0153285451233387, + -0.039675526320934296, + -0.018539443612098694, + -0.023607077077031136, + 0.01613825000822544, + -0.04230008274316788, + -0.003278954653069377, + 0.027041340246796608, + -0.02281133271753788, + 0.00582847697660327, + -0.008313432335853577, + -0.039535921066999435, + 0.01965627633035183, + 0.02486351504921913, + -0.020242614671587944, + -0.018008947372436523, + 0.01752033270895481, + 0.034649770706892014, + -0.06941122561693192, + 0.0010138758225366473, + -0.028018571436405182, + -0.01342992763966322, + -0.04015018045902252, + 0.05707021430134773, + 0.0415741428732872, + 0.025477774441242218, + -0.024989159777760506, + 0.017534293234348297, + -0.010742546059191227, + 0.008857889100909233, + 0.005256099626421928, + -0.0027851045597344637, + 0.020368259400129318, + 0.021554894745349884, + -0.029651939868927002, + -0.015426268801093102, + 0.007643332239240408, + -0.010295812971889973, + 0.032555706799030304, + 0.030629171058535576, + 0.03342125564813614, + -0.04955950379371643, + 0.050955548882484436, + -0.0037867650389671326, + -0.009604771621525288, + -0.022574005648493767, + -0.012264232151210308, + 0.004973400849848986, + -0.005161866545677185, + -0.04015018045902252, + 0.04964326694607735, + 0.006118156015872955, + 0.013150718994438648, + -0.03805611655116081, + 0.010337693616747856, + 0.037581462413072586, + -0.001673505874350667, + 0.007824817672371864, + 0.006826647091656923, + 0.018720928579568863, + 0.023579156026244164, + -0.008250610902905464, + 0.005580679513514042, + -0.0199354849755764, + -0.022434400394558907, + 0.033756304532289505, + 0.006254269741475582, + 0.012368935160338879, + 0.027432233095169067, + 0.04160206392407417, + 0.013890622183680534, + -0.06276606768369675, + 0.020130930468440056, + 0.056986451148986816, + -0.04520385339856148, + 0.011573191732168198, + -0.013171659782528877, + -0.006509047467261553, + -0.007929520681500435, + 0.0056784022599458694, + -0.0018235803581774235, + 0.028395501896739006, + -0.07912768423557281, + -0.00696974154561758, + -0.03004283271729946, + -0.03171808272600174, + 0.01585904136300087, + -0.0001716695842333138, + 0.028549067676067352, + 0.0033836576621979475, + 0.006163527257740498, + -0.02458430640399456, + 0.03897750377655029, + 0.009674574248492718, + 0.004844266921281815, + 0.03540363535284996, + 0.05458525940775871, + -0.01100081391632557, + -0.006446225568652153, + -0.02522648684680462, + -0.008111006580293179, + 0.014072107151150703, + 0.02092667482793331, + -0.04193711280822754, + -0.035599082708358765, + -0.0627102255821228, + 0.011161359027028084, + -0.0369672030210495, + 0.008145906962454319, + 0.011768637225031853, + -0.01223631203174591, + 0.027111142873764038, + -0.021722419187426567, + 0.03169016167521477, + -0.018776770681142807, + 0.03660423308610916, + 0.015621714293956757, + -0.03381214663386345, + -0.0008075232617557049, + -0.023607077077031136, + 0.009060314856469631, + 0.0017686112551018596, + -0.006278700660914183, + -0.010861209593713284, + 0.017827460542321205, + 0.023355789482593536, + -0.005769145209342241, + -0.020284496247768402, + -0.03587828949093819, + -0.032192736864089966, + 0.0071058557368814945, + -0.025128763169050217, + -0.025352129712700844, + 0.020479941740632057, + -0.012759827077388763, + 0.004254439380019903, + -0.02117796242237091, + -0.02483559399843216, + -0.0005981168942525983, + -0.01347878947854042, + -0.00902541447430849, + 0.027362430468201637, + -0.014602603390812874, + 0.03649254888296127, + 0.04126701131463051, + 0.014630524441599846, + 0.016026565805077553, + 0.0330582857131958, + 0.03774898499250412, + -0.009828138165175915, + 0.04651613160967827, + 0.015370426699519157, + -0.009178978390991688, + -0.0035511828027665615, + 0.021122122183442116, + 0.03093629889190197, + -0.029596099629998207, + -0.004174166824668646, + 0.021722419187426567, + 0.030964219942688942, + -0.007259420584887266, + -0.03897750377655029, + -0.009765316732227802, + -0.0025879135355353355, + -0.003437754465267062, + 0.01624993421137333, + -0.02483559399843216, + 0.05411060154438019, + -0.023746680468320847, + 0.010030564852058887, + -0.0206893477588892, + 0.00314807565882802, + 0.02202954888343811, + -0.05215614289045334, + 0.007231499534100294, + 0.012431757524609566, + 0.016584983095526695, + -0.0011892536422237754, + -0.00475352443754673, + 0.010742546059191227, + 0.014532801695168018, + -0.008034223690629005, + 0.011601111851632595, + -0.027767283841967583, + 0.01830211654305458, + 0.013820819556713104, + 0.028465304523706436, + -0.02110816165804863, + -0.02766956016421318, + -0.006079764571040869, + 0.016012607142329216, + -0.039675526320934296, + -0.014449038542807102, + 0.022406481206417084, + -0.0003679880464915186, + 0.039145030081272125, + -0.0056993430480360985, + 0.022127272561192513, + -0.0004207759047858417, + -0.014867851510643959, + -0.024877475574612617, + -0.005695852916687727, + 0.006885979324579239, + -0.019321227446198463, + 0.01947479136288166, + 0.020200733095407486, + -0.005137436091899872, + -0.0014187280321493745, + -0.004324241541326046, + -0.0022144722752273083, + -0.014253593049943447, + -0.05411060154438019, + 0.00826457142829895, + 0.04919653385877609, + -0.005856398027390242, + -0.017338845878839493, + -0.014393197372555733, + -0.017604093998670578, + 0.005769145209342241, + 0.004383573308587074, + -0.010065465234220028, + -0.0036750815343111753, + -0.03303036466240883, + -0.017827460542321205, + -0.013548591174185276, + -0.06008566543459892, + 0.005106024909764528, + 0.01873488910496235, + -0.03169016167521477, + 0.003437754465267062, + 0.008466997183859348, + -0.018148550763726234, + -0.028646789491176605, + -0.009541950188577175, + -0.020214693620800972, + -0.015049337409436703, + -0.014113988727331161, + -0.0019282836001366377, + -0.02362103760242462, + -0.03554324060678482, + -0.02476579137146473, + -0.011594132520258427, + -0.0022057469468563795, + -0.008571700192987919, + 0.029009761288762093, + -0.001759013393893838, + -0.007587490603327751, + 0.01330428384244442, + -0.005060653667896986, + -0.015384387224912643, + 0.02235063910484314, + -0.0031777415424585342, + -0.019460830837488174, + 0.0007159080123528838, + -0.023230144754052162, + 0.033365413546562195, + -0.007273380644619465, + 0.009555909782648087, + 0.00785971898585558, + -0.04140661656856537, + -0.009137097746133804, + 0.011503389105200768, + 0.030740853399038315, + 0.012808688916265965, + -0.031271349638700485, + -0.04380781203508377, + -0.012738887220621109, + 0.005329391919076443, + 0.025952428579330444, + 0.03381214663386345, + 0.004404513631016016, + -0.00023776346642989665, + 0.01887449249625206, + -0.04796801507472992, + 0.03470561280846596, + 0.040066417306661606, + -0.0017415628535673022, + -0.05874546244740486, + -0.012438737787306309, + 0.04015018045902252, + 0.006948801223188639, + -0.023174304515123367, + 0.02817213535308838, + -0.013995325192809105, + 0.023746680468320847, + 0.006320581771433353, + -0.001795659540221095, + 0.03590621054172516, + 0.014435078017413616, + -0.005060653667896986, + -0.0108193289488554, + -0.027865005657076836, + -0.026762133464217186, + -0.041239093989133835, + -0.018720928579568863, + -0.045175932347774506, + 0.0013271127827465534, + -0.028618868440389633, + 0.022085390985012054, + 0.009451206773519516, + 0.005154886748641729, + 0.035096507519483566, + -0.007378084119409323, + -0.00011942706623813137, + -0.010917051695287228, + -0.005106024909764528, + 0.009018434211611748, + 0.0106936851516366, + -0.004369612783193588, + 0.005186297465115786, + 0.0012651634169742465, + 0.01604052633047104, + 0.01229215320199728, + -0.007824817672371864, + -0.017534293234348297, + 0.011922202073037624, + -0.03961968421936035, + 0.05405476316809654, + 0.0007739309803582728, + 0.017408648505806923, + 0.014274533838033676, + -0.06578151881694794, + -0.0024587796069681644, + 0.06539062410593033, + 0.0652230978012085, + -0.007992343045771122, + -0.0014998730039224029, + -0.03093629889190197, + -0.01062388252466917, + 0.039535921066999435, + 0.016012607142329216, + -0.010191109031438828, + -0.0077759562991559505, + -0.021722419187426567, + 0.008166847750544548, + -0.02571510151028633, + -0.03800027444958687, + 0.014079087413847446, + -0.001728474977426231, + 0.028674710541963577, + -0.00597855169326067, + -0.011496408842504025, + -0.00910219643265009, + 0.013039035722613335, + 0.015803199261426926, + 0.0012363700661808252, + -0.008627542294561863, + -0.017994986847043037, + -0.029205206781625748, + -0.01606844738125801, + 0.022085390985012054, + 0.019028058275580406, + 0.015523991547524929, + 0.012368935160338879, + 0.040959883481264114, + -0.06455300003290176, + -0.0049629309214651585, + -0.012403836473822594, + 0.003668101504445076, + -0.006432265508919954, + 0.014700326137244701, + 0.02568718045949936, + 0.002292999532073736, + -0.011566211469471455, + -0.012515519745647907, + 0.03227650001645088, + -0.026385201141238213, + -0.008229670114815235, + -0.06282190978527069, + -0.04408701881766319, + 0.008585660718381405, + -0.010274872183799744, + -0.029540257528424263, + -0.0018759319791570306, + 0.025031039491295815, + -0.004065973684191704, + 0.009416306391358376, + -0.016808349639177322, + 0.03093629889190197, + 0.011182299815118313, + -0.002352331532165408, + 0.018525483086705208, + -0.013639334589242935, + -0.016933994367718697, + -0.014798049814999104, + -0.027446193620562553, + 0.004631370771676302, + 0.04068067669868469, + -0.029596099629998207, + -0.020479941740632057, + 0.01449092011898756, + 0.043193552643060684, + -0.0044149840250611305, + 0.06259854137897491, + -0.009723435156047344, + -0.0035354774445295334, + -0.023607077077031136, + -0.015063297003507614, + -0.0393683947622776, + -0.010239970870316029, + -0.04671157896518707, + -0.012676064856350422, + -0.040736518800258636, + 0.0613141804933548, + -0.015705477446317673, + 0.03210897371172905, + 0.03068501129746437, + 0.017073597759008408, + -0.016878152266144753, + -0.0029718251898884773, + 0.0074339257553219795, + 0.012906411662697792, + -0.0098420986905694, + 0.0023645467590540648, + -0.0006487234495580196, + -0.013695175759494305, + 0.02646896429359913, + -0.006400854326784611, + 0.016682706773281097, + -0.0106448233127594, + 0.012103687971830368, + -0.014937653206288815, + -0.007594470400363207, + 0.00162115425337106, + 0.01319958083331585, + -0.0007028200780041516, + -0.0028043000493198633, + 0.019893603399395943, + -0.008439076133072376, + -0.006198428105562925, + 0.0022057469468563795, + 0.024039849638938904, + 0.0058145164512097836, + -0.02348143234848976, + 0.0007765485788695514, + -0.005608600098639727, + 0.011971063911914825, + 0.02575698308646679, + -0.01638953760266304, + 0.0047500343061983585, + -0.003584338817745447, + -0.00021311460295692086, + 0.03079669550061226, + -0.014407157897949219, + 0.02177826128900051, + -0.013094877824187279, + -0.022057469934225082, + 0.028283819556236267, + 0.035738684237003326, + -0.02898184023797512, + 0.019363107159733772, + 0.00927670206874609, + 0.015900922939181328, + -0.017994986847043037, + 0.01664082519710064, + -0.0022074920125305653, + 0.010135267861187458, + 0.015873001888394356, + -0.04807969927787781, + 0.025142723694443703, + 0.0004076879995409399, + -0.033616699278354645, + 0.0071198162622749805, + 0.007552589289844036, + -0.007873679511249065, + 0.002484955359250307, + 0.016947954893112183, + -0.06137002259492874, + -0.007154717110097408, + -0.024277176707983017, + 0.013388046994805336, + -0.010651803575456142, + 0.010295812971889973, + 0.03367254137992859, + 0.017925184220075607, + 0.030517486855387688, + -0.0170317180454731, + -0.011377745307981968, + 0.030992140993475914, + -0.0027624189388006926, + 0.010993833653628826, + 0.0011822733795270324, + -0.008878829888999462, + 0.0020207713823765516, + -0.031410954892635345, + 0.008690363727509975, + -0.03894958272576332, + 0.012124627828598022, + -0.006163527257740498, + -0.06946706771850586, + -0.0454830601811409, + 0.00931160245090723, + 0.027111142873764038, + -0.0102190300822258, + 0.02884223498404026, + 0.007622391451150179, + -0.011245121248066425, + 0.0014850400621071458, + 0.02799065038561821, + -0.0019352637464180589, + 0.03674383461475372, + -0.0018410308985039592, + -0.0074339257553219795, + -0.020563704892992973, + 0.015007455833256245, + 0.017073597759008408, + -0.02679005265235901, + -0.0007652057101950049, + 0.024989159777760506, + -0.012334034778177738, + -3.88546941394452e-5, + 0.005273550283163786, + -0.012152548879384995, + 0.02440282143652439, + 0.0007233244832605124, + 0.024025889113545418, + -0.0027100672014057636, + 0.032583627849817276, + 0.006816177163273096, + 0.022434400394558907, + 0.029735703021287918, + 0.004439414944499731, + -0.036380864679813385, + 0.02603618986904621, + -0.04442206770181656, + 0.047409601509571075, + -0.009604771621525288, + 0.027976689860224724, + -0.012354975566267967, + -0.030740853399038315, + -0.008913730271160603, + -0.011782597750425339, + -0.006557909306138754, + 0.017045676708221436, + 0.006481126882135868, + 0.015258743427693844, + -0.025407971814274788, + 0.01574735902249813, + 0.021526973694562912, + 0.002851416589692235, + 0.04601355642080307, + -0.005468996241688728, + 0.00753862876445055, + -0.01305299624800682, + -0.0012276447378098965, + 0.007063974626362324, + 0.0357666052877903, + -0.01666874624788761, + -0.005081594455987215, + -0.045818112790584564, + 0.016166171059012413, + 0.027543917298316956, + -0.009751356206834316, + -0.055925458669662476, + -0.007901599630713463, + 0.043724048882722855, + 0.00017777727043721825, + 0.003310365602374077, + -0.03523610904812813, + -0.028409462422132492, + 0.02115004137158394, + 0.01153131015598774, + -0.02600827068090439, + 0.007039543706923723, + 0.023886285722255707, + -0.0040869140066206455, + 0.022364599630236626, + 0.013576512224972248, + 0.008962592110037804, + 0.01419077068567276, + -0.0106448233127594, + 0.0074060047045350075, + 0.014044186100363731, + 0.0027920848224312067, + 0.023816483095288277, + 0.02525440603494644, + 0.024542424827814102, + -0.01413492951542139, + -0.01855340413749218, + 0.007943481206893921, + -0.020591625943779945, + 0.005769145209342241, + -0.014937653206288815, + -0.02493331767618656, + -0.009011453948915005, + -0.007594470400363207, + 0.010114327073097229, + 0.014518841169774532, + -0.02237856015563011, + 0.002277294173836708, + 0.0247937124222517, + -0.023397671058773994, + 0.0005291873239912093, + 0.0023802523501217365, + 0.022769451141357422, + -0.008439076133072376, + 0.020172812044620514, + 0.004303300753235817, + 0.025701140984892845, + -0.01657102257013321, + 0.007517688442021608, + 0.021164001896977425, + -0.036380864679813385, + -0.023718759417533875, + -0.016431419178843498, + -0.011028734967112541, + -0.02253212407231331, + -0.00908125564455986, + 0.008117986842989922, + -0.02004716917872429, + 0.014288494363427162, + 0.000650032248813659, + -0.010937992483377457, + 0.003066058037802577, + -0.003188211703673005, + -0.014058146625757217, + -0.004900109022855759, + 0.0022755491081625223, + -0.0034813806414604187, + -0.006543948780745268, + 0.009800218045711517, + 0.0009493088000454009, + 0.014630524441599846, + -0.023467471823096275, + 0.05089970678091049, + -0.0047360737808048725, + -0.030601250007748604, + -0.04093196243047714, + 0.026301437988877296, + 0.01745053008198738, + -0.0106448233127594, + 0.003814685856923461, + -0.005053673405200243, + 0.06438547372817993, + 0.001429198426194489, + -0.011133437976241112, + 0.023607077077031136, + -0.021834103390574455, + -0.00665214192122221, + -0.033616699278354645, + 0.004704663064330816, + 0.030322041362524033, + -0.02430509775876999, + 0.006994172465056181, + -0.016752509400248528, + 0.019097859039902687, + 0.006439245771616697, + 0.034956902265548706, + 0.01781350187957287, + -0.007378084119409323, + -0.002292999532073736, + 0.019851723685860634, + 0.02394212782382965, + 0.05846625566482544, + -0.04297018423676491, + 0.054222285747528076, + 0.02511480264365673, + -0.00895561184734106, + -0.009730415418744087, + 0.012731906957924366, + 0.009534969925880432, + -0.008083085529506207, + 0.037274330854415894, + -0.027502035722136497, + 0.006303131580352783, + 0.0007669507758691907, + -0.030964219942688942, + -0.0037728045135736465, + 0.014574682340025902, + -0.016654785722494125, + 0.021596776321530342, + 0.04341691732406616, + -0.0165291428565979, + -0.011803538538515568, + -0.025100842118263245, + 0.019363107159733772, + 0.025673219934105873, + 0.0016124289250001311, + -0.027515996247529984, + 0.04112740978598595, + 0.015300625003874302, + -0.01972607895731926, + 0.005441075190901756, + -0.010093386285007, + -0.030489565804600716, + 0.0030451174825429916, + -0.03012659400701523, + -0.005524837877601385, + -0.02334182895720005, + 0.04442206770181656, + 0.03543155640363693, + -0.01163601316511631, + -0.007385064382106066, + 0.015523991547524929, + 0.017687857151031494, + -0.025589456781744957, + 0.00686503853648901, + 0.00481634633615613, + -0.022252915427088737, + 0.013080917298793793, + -0.02536609023809433, + -0.008613581769168377, + 0.005507387220859528, + 0.008990513160824776, + -0.0483868308365345, + 0.023970047011971474, + 0.045427218079566956, + -0.025770941749215126, + -0.010016604326665401, + 0.0340634360909462, + -0.007692193612456322, + 0.022699648514389992, + 0.0019055978627875447, + -0.023900246247649193, + -0.006680062972009182, + 0.006016942672431469, + 0.012599282898008823, + -0.0037030023522675037, + -0.013185620307922363, + 0.010756506584584713, + -0.03707888722419739, + 0.02937273122370243, + -0.02746015414595604, + -0.0027851045597344637, + 0.010812348686158657, + 0.03621333837509155, + 0.011566211469471455, + 0.003376677632331848, + -0.018972216174006462, + -0.024388860911130905, + -0.005601620301604271, + 0.014051166363060474, + 0.00608325470238924, + -8.250828977907076e-5, + -0.014853890985250473, + -0.011077596805989742, + 0.019488751888275146, + 0.009779277257621288, + 0.04523177444934845, + -0.015300625003874302, + -0.0044359248131513596, + -0.035347793251276016, + 0.008557739667594433, + 0.010267891921103, + -0.024179454892873764, + -0.025407971814274788, + 0.003249288769438863, + -0.0074199652299284935, + -0.021917864680290222, + -0.01650122180581093, + -0.002516366308555007, + 0.031773924827575684, + 0.00686503853648901, + 0.0015496070263907313, + -0.019893603399395943, + -0.013757998123764992, + -0.01613825000822544, + -0.040596913546323776, + 0.011677894741296768, + -2.6039462682092562e-5, + 0.014979534782469273, + 0.010442397557199001, + 0.0028008101508021355, + 0.0060064722783863544, + 0.0052840206772089005, + 0.011007794179022312, + -0.011712796054780483, + -0.0019073429284617305, + -0.019879642874002457, + -0.014044186100363731, + 0.031271349638700485, + -0.0034133235458284616, + -0.007845758460462093, + 0.011070616543293, + 0.011370765045285225, + 0.018260234966874123, + -0.03543155640363693, + -0.04068067669868469, + -0.03788859024643898, + -0.002202256815508008, + 0.012354975566267967, + -0.02419341541826725, + 0.013464828953146935, + -0.001314024906605482, + 0.01689211279153824, + 0.0047151329927146435, + -0.0016673981444910169, + -0.06097913160920143, + 0.008627542294561863, + 0.011363784782588482, + -0.003493596101179719, + -0.004062483552843332, + -0.015831120312213898, + 0.009486108087003231, + 0.009534969925880432, + -0.010491258464753628, + -0.03330957144498825, + -0.003486615838482976, + -0.04026186093688011, + -0.027837084606289864, + 0.000947563792578876, + -0.010784427635371685, + -0.02458430640399456, + -0.0027432232163846493, + -0.01926538534462452, + -0.02071726880967617, + 0.015831120312213898, + -0.022518163546919823, + -0.03208105266094208, + 0.001971909776329994, + 0.019963406026363373, + -0.005957610905170441, + 0.052519116550683975, + 0.02845134399831295, + 0.005898279137909412, + -0.002896788064390421, + -0.024109652265906334, + 0.027055300772190094, + 0.022252915427088737, + -0.004250949248671532, + -0.011768637225031853, + -0.011475468054413795, + -0.003629710292443633, + -0.018469640985131264, + -0.005849417764693499, + 0.023760640993714333, + 0.005531818140298128, + -0.006774295587092638, + -0.0029090032912790775, + 0.004285850096493959, + 0.011768637225031853, + 0.007018602918833494, + -0.00018977450963575393, + 0.01859528385102749, + 0.029400652274489403, + 0.020172812044620514, + -0.016431419178843498, + 0.011468488723039627, + -0.016403498128056526, + -0.00310444924980402, + -0.02117796242237091, + -0.026594607159495354, + -0.013890622183680534, + -0.01901409775018692, + 0.011293983086943626, + 0.020158851519227028, + -0.022978857159614563, + 0.03610165789723396, + -0.002591403666883707, + -0.014148890040814877, + 0.036241259425878525, + 0.01419077068567276, + 0.0019422440091148019, + 0.022127272561192513, + 0.023928167298436165, + 0.007280360907316208, + -0.002683891449123621, + 0.02451450377702713, + 0.013988344930112362, + -0.009925861842930317, + 0.03121550753712654, + 0.016473300755023956, + -0.020479941740632057, + 0.004739563912153244, + -0.002668186090886593, + -0.003821666119620204, + -0.0025634828489273787, + -0.04093196243047714, + 0.017296966165304184, + -0.022574005648493767, + 0.010107346810400486, + 0.008641502819955349, + 0.008111006580293179, + -0.0026245596818625927, + -0.01585904136300087, + -0.0015906158369034529, + -0.00783877819776535, + -0.005270060151815414, + -0.00015738196088932455, + -0.016612904146313667, + 0.004013621713966131, + -0.012424777261912823, + -0.0040729534812271595, + 0.028437383472919464, + 0.023299947381019592, + -0.01837191730737686, + -0.0005339861963875592, + -0.030349962413311005, + -0.0023366259410977364, + -0.01749241165816784, + -0.01328334305435419, + 0.013813839294016361, + -0.01664082519710064, + 0.03227650001645088, + -0.0304058026522398, + 0.008048184216022491, + -0.02444470301270485, + 0.0013210051693022251, + -0.03400759398937225, + -0.022936977446079254, + -0.016333695501089096, + 0.0046278806403279305, + -1.128831172536593e-5, + -0.015496070496737957, + 0.00034224853152409196, + -0.02685985527932644, + 0.04495256394147873, + -0.0028618869837373495, + 0.014462999068200588, + -0.005580679513514042, + -0.009660613723099232, + 0.02766956016421318, + 0.013388046994805336, + -0.0013436907902359962, + -0.007364123594015837, + 0.014148890040814877, + -0.01574735902249813, + 0.040987804532051086, + 0.0022598435170948505, + 0.009541950188577175, + -0.02253212407231331, + -0.01028883270919323, + 0.034286800771951675, + -0.006959271151572466, + -0.03800027444958687, + 0.006243799813091755, + 0.00878110621124506, + -0.011573191732168198, + -0.002987530780956149, + -0.006833627354353666, + 0.01097987312823534, + 0.02338371053338051, + 0.010212049819529057, + -0.03222065791487694, + 0.011538290418684483, + 0.012285172939300537, + -0.0077550155110657215, + -0.0002316557802259922, + 0.0005837202188558877, + -0.0002735370653681457, + -0.054724860936403275, + -0.02175034023821354, + 0.0024657598696649075, + 0.021834103390574455, + -0.0019404989434406161, + -0.015105178579688072, + -0.0006923498003743589, + 0.0064427354373037815, + -0.02177826128900051, + 0.0001580363605171442, + 0.013611413538455963, + -0.00897655263543129, + 0.023565195500850677, + 0.041099488735198975, + 0.0031218999065458775, + 0.001980635104700923, + -0.0010714625241234899, + 0.003055587876588106, + 0.01436527632176876, + -0.017967065796256065, + -0.005657461937516928, + 0.00010972020390909165, + 0.03590621054172516, + 0.0014771873829886317, + 0.024179454892873764, + 0.04509216919541359, + -0.006613750942051411, + 0.02462618798017502, + -0.01883261278271675, + -0.017548253759741783, + 0.019837763160467148, + -0.0024570345412939787, + -0.015970725566148758, + 0.012327054515480995, + 0.014630524441599846, + -0.007203578948974609, + 0.026022229343652725, + 0.00986303947865963, + 0.026259558275341988, + -0.01611032895743847, + 0.012871511280536652, + 0.004683722276240587, + -0.0049559506587684155, + 0.00910219643265009, + 0.008641502819955349, + -0.014993495307862759, + 0.008913730271160603, + -0.01763201504945755, + -0.019418949261307716, + 0.022113312035799026, + -0.006694023497402668, + 0.006160037126392126, + 0.03001491166651249, + -0.021736379712820053, + 0.011726755648851395, + -0.014532801695168018, + -0.01429547369480133, + 0.0035581630654633045, + 0.014853890985250473, + -0.02692965790629387, + 0.053803473711013794, + 0.011133437976241112, + 0.0009257505880668759, + 0.012578342109918594, + -0.01403022650629282, + -0.017687857151031494, + 0.01837191730737686, + 0.009716454893350601, + 0.013157699257135391, + 0.020298456773161888, + -0.0153285451233387, + -0.006819667294621468, + 0.030182436108589172, + 0.020801031962037086, + -0.005950630642473698, + 0.007936500944197178, + 0.018706968054175377, + -0.011496408842504025, + -0.020549744367599487, + -0.015300625003874302, + 0.010826309211552143, + 0.006899939384311438, + 0.01933518797159195, + -0.007029073312878609, + -0.015831120312213898, + -0.026050150394439697, + -0.0010060230270028114, + -0.0029857857152819633, + -0.03621333837509155, + -0.0017703562043607235, + 0.021666577085852623, + 0.014183790422976017, + 0.009995663538575172, + 0.022364599630236626, + -0.010267891921103, + 0.021945785731077194, + -0.007922540418803692, + -0.02096855640411377, + -0.015216861851513386, + -0.002615834353491664, + -0.021834103390574455, + -0.02092667482793331, + -0.0007774211117066443, + -0.016947954893112183, + 0.0013873170828446746, + 0.00940234586596489, + 0.0066695925779640675, + -0.004638351034373045, + -0.006781275849789381, + -0.014770128764212132, + 0.006917390041053295, + 0.008152887225151062, + -0.014979534782469273, + 0.000910045113414526, + 0.0004846884694416076, + 0.002408173168078065, + -0.017283005639910698, + -0.03266739100217819, + -0.04696286469697952, + -0.021987667307257652, + 0.010784427635371685, + 0.02685985527932644, + -0.0026995970401912928, + -0.016654785722494125, + -0.0074478862807154655, + 0.0032510338351130486, + -0.00017003359971567988, + 0.004798895679414272, + -0.01449092011898756, + 0.0024779753293842077, + -0.005420134402811527, + -0.011028734967112541, + -0.015733398497104645, + 0.02366291917860508, + 0.00039460009429603815, + 0.015216861851513386, + 0.03149471804499626, + -0.012285172939300537, + -0.0053224116563797, + -0.029177285730838776, + -0.0040938942693173885, + 0.015468149445950985, + 0.02331390790641308, + 0.019767960533499718, + -0.006680062972009182, + -0.018427759408950806, + -0.013737057335674763, + -0.0044010234996676445, + 0.02246232144534588, + -0.012766807340085506, + -0.011915221810340881, + 0.0018375407671555877, + -0.0035808486863970757, + -0.010205069556832314, + -0.021415289491415024, + -0.02249024249613285, + -0.0050781043246388435, + -0.014518841169774532, + 0.009479127824306488, + -0.011768637225031853, + -0.004132285714149475, + -0.0010348163777962327, + 0.02384440414607525, + -0.0074129849672317505, + 0.01659894362092018, + -0.0010897855972871184, + 0.000160544877871871, + 0.009416306391358376, + -0.004683722276240587, + -0.011098536662757397, + 0.010679724626243114, + 0.0074129849672317505, + 0.009995663538575172, + 0.0029159835539758205, + -0.00025346895563416183, + 0.007999323308467865, + -0.009835118427872658, + 0.0006853695376776159, + 0.012341015040874481, + 0.005783105734735727, + -0.012354975566267967, + -0.0009545439970679581, + -0.02426321618258953, + -0.008969572372734547, + 0.013381066732108593, + -0.013820819556713104, + -0.00447780592367053, + 0.011998984031379223, + -0.0054794661700725555, + 0.001919558271765709, + 0.02706926129758358, + -0.003109684446826577, + 0.009807197377085686, + 0.010505218990147114, + 0.029819466173648834, + -0.02377460151910782, + 0.021010437980294228, + -4.907961397293548e-7, + -0.004938500002026558, + -0.0024116632994264364, + -0.005088574718683958, + 0.027013421058654785, + -0.0015016180695965886, + 0.007385064382106066, + -0.0060343933291733265, + 0.006840607617050409, + -0.02759975753724575, + 0.02525440603494644, + 0.028786394745111465, + -0.011238140985369682, + 0.024179454892873764, + -0.011649973690509796, + -0.021903906017541885, + 0.00266120582818985, + 0.01975400000810623, + -0.0103935357183218, + 0.00867640320211649, + -0.02962401881814003, + 0.016291813924908638, + 0.012285172939300537, + 0.003608769504353404, + -0.012927352450788021, + -0.024346979334950447, + 0.0038914682809263468, + 0.012047845870256424, + 0.006962761282920837, + -0.01578923873603344, + -0.028786394745111465, + 0.004652311094105244, + 0.006044863723218441, + -0.012676064856350422, + -0.0022964896634221077, + -0.01710151880979538, + 0.01454676128923893, + 0.0301545150578022, + -0.019949445500969887, + 0.034147195518016815, + -0.008487937971949577, + 0.03827948123216629, + 0.016836270689964294, + -0.011056656017899513, + -0.03400759398937225, + 0.014839930459856987, + 0.011503389105200768, + 0.007685213349759579, + 0.005657461937516928, + -0.019460830837488174, + -0.017799541354179382, + -0.02223895490169525, + -0.006627711467444897, + 0.009569870308041573, + -0.02923312783241272, + -0.005008302163332701, + 0.03671591356396675, + 0.008913730271160603, + 0.014672406017780304, + -0.006924370303750038, + -0.012578342109918594, + -0.005786595866084099, + -0.025659259408712387, + 0.014798049814999104, + -0.001521686208434403, + 0.009248781017959118, + 0.007273380644619465, + 0.003936839755624533, + 0.0018706967821344733, + 0.008376254700124264, + -0.005542288534343243, + -0.007971402257680893, + -0.017003796994686127, + 0.007022093050181866, + 0.01353463064879179, + -0.020773110911250114, + -0.007322242483496666, + 0.03975928574800491, + -0.00040616109617985785, + 0.0016909562982618809, + 0.009646653197705746, + -0.02373271994292736, + 0.0004532775201369077, + -0.013751017861068249, + -0.013471809215843678, + -0.005287510342895985, + 0.010665764100849628, + -0.02419341541826725, + -0.02912144362926483, + 0.007615411188453436, + -0.0008302089408971369, + 0.030517486855387688, + -0.0027310079894959927, + 0.002722282661125064, + 0.011796558275818825, + 0.005573699250817299, + -0.015914883464574814, + 0.013262403197586536, + -0.009618732146918774, + -0.007985362783074379, + 0.0028496715240180492, + -0.002148160245269537, + -0.004868697840720415, + -0.009388385340571404, + -0.02099647745490074, + 0.003568633459508419, + 0.004596469458192587, + 0.0019090879941359162, + -0.00024168983509298414, + -0.021917864680290222, + 0.009548929519951344, + -0.005954120773822069, + 0.013820819556713104, + -0.003737903432920575, + 0.016305774450302124, + 0.0008882319671101868, + -0.009130117483437061, + -0.016361616551876068, + 0.020298456773161888, + -0.010986853390932083, + 0.0013279853155836463, + -0.011524329893290997, + -0.009144078008830547, + -0.01820439286530018, + -0.013415967114269733, + 0.012536460533738136, + -0.00956289004534483, + -0.021862024441361427, + 0.040987804532051086, + 0.007468826603144407, + 0.0001062301016645506, + -0.005538798402994871, + -0.01883261278271675, + -0.020089050754904747, + 0.021443210542201996, + -0.007552589289844036, + -0.01887449249625206, + 0.021736379712820053, + -0.00950704887509346, + -0.0052595897577703, + -0.027166984975337982, + 0.026119953021407127, + 1.2638000953302253e-5, + 0.014058146625757217, + 0.012536460533738136, + -0.0012895941035822034, + 0.0005313686560839415, + -0.0037937453016638756, + 0.010107346810400486, + 0.0077340747229754925, + 0.027543917298316956, + 0.013848740607500076, + 0.0017293475102633238, + -0.004024092108011246, + 0.0024203883949667215, + 0.011859379708766937, + 0.002615834353491664, + 0.000573249883018434, + -0.004174166824668646, + -0.0170317180454731, + 0.03721848875284195, + -0.009883980266749859, + -0.014504880644381046, + 0.0028426912613213062, + -0.0013969149440526962, + -0.008927690796554089, + 0.022755490615963936, + 0.02249024249613285, + -0.013597453013062477, + 0.01802290789783001, + -0.003982210997492075, + -0.004411493893712759, + -0.029177285730838776, + 0.006257759872823954, + -0.005873848218470812, + 0.004533647559583187, + -0.011922202073037624, + -0.0015836355742067099, + -0.00842511560767889, + 0.0074269454926252365, + -0.0019422440091148019, + -0.0027432232163846493, + 0.024179454892873764, + -0.01408606767654419, + 0.01461656391620636, + -0.04470127820968628, + -0.013792898505926132, + -0.019042018800973892, + 0.022197073325514793, + -0.014853890985250473, + 0.019139740616083145, + 0.002888062736019492, + -0.0015356466174125671, + -0.006641671527177095, + 0.002024261513724923, + 0.020773110911250114, + 0.01876281015574932, + 0.003448224626481533, + 0.01666874624788761, + 0.0044010234996676445, + 0.016347656026482582, + -0.010561061091721058, + 0.017143400385975838, + -0.006205408368259668, + 0.003202172229066491, + 0.012194430455565453, + 0.014867851510643959, + -0.008711304515600204, + 0.0001891201245598495, + 0.00020089923054911196, + 0.026413122192025185, + -0.008732245303690434, + -0.020619546994566917, + 0.0035511828027665615, + -0.0262455977499485, + -0.007685213349759579, + 0.007845758460462093, + -0.007231499534100294, + -0.005818006582558155, + 0.019698157906532288, + 0.008864869363605976, + 0.009262741543352604, + -0.0077619957737624645, + -0.009674574248492718, + 0.021582815796136856, + 0.0074548665434122086, + -0.019167661666870117, + 0.007043033838272095, + 0.010784427635371685, + -0.004938500002026558, + -0.007887639105319977, + -0.01206180639564991, + 0.005465506110340357, + 0.00608325470238924, + 0.015216861851513386, + -0.0029700801242142916, + -0.014016265980899334, + 0.022266875952482224, + -0.02476579137146473, + 0.014923693612217903, + 0.00862056203186512, + -0.013576512224972248, + -0.03174600377678871, + -0.03291868045926094, + -0.026510845869779587, + 0.0030154515989124775, + -0.003790255170315504, + -0.00587035808712244, + -0.03878205642104149, + 0.023467471823096275, + -0.009220859967172146, + 0.022322718054056168, + -0.01097987312823534, + 0.029540257528424263, + -0.008934671059250832, + 0.012047845870256424, + -0.01074952632188797, + 0.009814177639782429, + 0.0071058557368814945, + 0.004296320490539074, + 0.035068586468696594, + -0.015551912598311901, + 0.026706291362643242, + 0.008578680455684662, + -0.008843928575515747, + -0.01696191541850567, + -0.0009048099745996296, + 0.008920710533857346, + 0.009953781962394714, + 0.026594607159495354, + -0.010637843050062656, + 0.0030608228407800198, + 0.012040865607559681, + -0.01199200376868248, + -0.012871511280536652, + -0.012480619363486767, + 0.01130096334964037, + 0.010477297939360142, + -0.01809270866215229, + 0.007238479796797037, + -0.0020678876899182796, + 0.02057766541838646, + 0.002647245302796364, + 0.02732054889202118, + -0.0031463305931538343, + 0.011028734967112541, + 0.010428437031805515, + 0.014113988727331161, + 0.014407157897949219, + 0.030768774449825287, + -0.00760145066305995, + 0.015440229326486588, + -0.012473639100790024, + -0.0007198343519121408, + 0.018609244376420975, + -0.0014998730039224029, + 0.000932730850763619, + 0.01841379888355732, + -0.031913530081510544, + -0.005758674815297127, + 0.0019457341404631734, + 0.012403836473822594, + 0.025072921067476273, + 0.013597453013062477, + -0.0026437551714479923, + -0.021862024441361427, + -0.016403498128056526, + 0.010791407898068428, + 0.022113312035799026, + 0.007936500944197178, + 0.010630862787365913, + 0.02764163911342621, + -0.003828646382316947, + -0.008941651321947575, + -0.003310365602374077, + 0.014232652261853218, + 0.008355313912034035, + -0.01689211279153824, + 0.013485769741237164, + 0.009067295119166374, + 0.011007794179022312, + -0.0149516137316823, + -0.0004820709000341594, + 0.01324844267219305, + 0.005769145209342241, + -0.007985362783074379, + -0.026915697380900383, + 0.011670914478600025, + 0.026594607159495354, + 0.011789578013122082, + -0.019837763160467148, + 0.01262720301747322, + -0.0023802523501217365, + -0.014267553575336933, + 0.012913391925394535, + -0.011119477450847626, + 0.01474220771342516, + 0.0032510338351130486, + 0.0053852335549890995, + -0.00766427256166935, + -0.009178978390991688, + 0.019823802635073662, + -0.01231309399008751, + 0.0005859015509486198, + -0.011356804519891739, + -0.012424777261912823, + -0.01830211654305458, + -0.013297303579747677, + 0.06014150753617287, + 0.01044937688857317, + 0.005434094928205013, + 0.015370426699519157, + -0.0032196228858083487, + -0.020186772570014, + 0.0021760810632258654, + 0.0022266877349466085, + 0.017939144745469093, + 0.005594640038907528, + -0.02246232144534588, + -0.011147398501634598, + 0.017743699252605438, + 0.00011048367014154792, + -0.028549067676067352, + 0.01312279887497425, + 0.013688195496797562, + -0.004439414944499731, + 0.021513013169169426, + 0.013995325192809105, + 0.0017546507297083735, + 0.0015626949025318027, + 0.012871511280536652, + -0.003401108318939805, + -0.01429547369480133, + 0.015956765040755272, + -0.021582815796136856, + -0.011273042298853397, + 0.007196598686277866, + 0.02685985527932644, + -0.002125474624335766, + -0.02184806391596794, + -0.011126457713544369, + -0.015049337409436703, + -0.00017483250121586025, + -0.00016087207768578082, + 0.01049823872745037, + 0.0012625458184629679, + -0.01671062782406807, + 0.0009109176462516189, + -0.005612090229988098, + -0.005161866545677185, + 0.0199354849755764, + 0.022936977446079254, + -0.029679860919713974, + -0.0026315399445593357, + -0.005559738725423813, + 0.0077270944602787495, + -0.02437490038573742, + -0.0016769958892837167, + 0.014756168238818645, + -0.011859379708766937, + 0.024751830846071243, + 0.01784142106771469, + 0.017994986847043037, + 0.00023667281493544579, + 0.018860531970858574, + 0.017757659777998924, + 0.01294829323887825, + -0.0023209205828607082, + -0.03280699625611305, + 0.005598130170255899, + 0.005954120773822069, + -0.0015696751652285457, + -0.023230144754052162, + 0.013520670123398304, + -0.004139265511184931, + -0.01689211279153824, + 0.0023662918247282505, + -0.014435078017413616, + -0.023174304515123367, + -0.004858227446675301, + 0.0016761233564466238, + -0.025561535730957985, + -0.01174071617424488, + 0.02170845866203308, + -0.008613581769168377, + 0.029177285730838776, + 0.021136082708835602, + -0.0003771495830733329, + 0.005210728384554386, + 0.008480957709252834, + -0.024458663538098335, + -0.012787748128175735, + 0.01153131015598774, + -0.013094877824187279, + 0.022797372192144394, + -0.030070753768086433, + 0.015621714293956757, + -0.01186635997146368, + -0.01631973497569561, + -0.008892790414392948, + 0.02000528760254383, + 0.013018094934523106, + -0.00587035808712244, + -0.005884318612515926, + 0.001207576715387404, + 0.0008358804043382406, + 0.006837117485702038, + -0.007266400847584009, + 0.006268230266869068, + 0.004833796992897987, + -0.02362103760242462, + -0.0003376677632331848, + -0.01696191541850567, + -0.0057202838361263275, + 0.026189755648374557, + 0.004484786186367273, + 0.0002938233083114028, + 0.007238479796797037, + 0.006104195490479469, + -0.014162849634885788, + 0.010435417294502258, + -0.0077480352483689785, + -0.01749241165816784, + 0.004673251882195473, + 0.018427759408950806, + -0.004488276317715645, + -0.029959069564938545, + -0.012878491543233395, + -0.003905428573489189, + 0.026022229343652725, + 0.0033435216173529625, + -0.028758473694324493, + 0.0024221334606409073, + -0.015133099630475044, + -0.01717132143676281, + -0.01666874624788761, + -0.0036960223224014044, + -0.0015539696905761957, + 0.013346165418624878, + 0.0019055978627875447, + 0.030964219942688942, + 0.020270535722374916, + 0.020200733095407486, + 0.006627711467444897, + -0.01229215320199728, + 0.009339523501694202, + -0.013311264105141163, + -0.02515668421983719, + 0.01181051880121231, + 0.001910833059810102, + 0.002760673873126507, + 0.01650122180581093, + 0.014714286662638187, + 0.006114665884524584, + 0.0037658242508769035, + -0.02121984399855137, + 0.009646653197705746, + 0.008257591165602207, + 0.03121550753712654, + -0.02060558646917343, + 0.002982295583933592, + -0.0036332004237920046, + -0.005545778200030327, + 0.019767960533499718, + -0.03001491166651249, + 0.008480957709252834, + -0.012641163542866707, + 0.0012372425990179181, + 0.00692786043509841, + 0.00029229637584649026, + -0.009765316732227802, + 0.0035808486863970757, + -0.003509301459416747, + 0.017436569556593895, + 0.005503897089511156, + 0.007580510340631008, + -0.0035599081311374903, + 0.005563228856772184, + 0.02423529513180256, + 0.02202954888343811, + 0.021164001896977425, + -0.03029412031173706, + 0.012201410718262196, + -0.019167661666870117, + 0.01823231391608715, + -0.003832136280834675, + -0.005224688444286585, + 0.003668101504445076, + -0.017743699252605438, + 0.0008834330947138369, + 0.017073597759008408, + -0.002896788064390421, + -0.018106669187545776, + -0.009241800755262375, + -0.0029002779629081488, + -0.006170507520437241, + 0.011838439851999283, + -0.0199354849755764, + -0.0011421372182667255, + 0.017673896625638008, + 0.006435755640268326, + -0.01347878947854042, + 0.018357956781983376, + 0.006749865133315325, + 0.026231637224555016, + 0.005304960999637842, + 0.02469599060714245, + -0.004592979326844215, + -0.004188127350062132, + 0.007301301695406437, + 0.040568992495536804, + -0.010065465234220028, + -0.015258743427693844, + -0.004404513631016016, + -0.014602603390812874, + -0.010714625008404255, + -0.00878110621124506, + 0.005629540886729956, + -0.025491734966635704, + -0.02320222370326519, + 0.017743699252605438, + 0.0018602265045046806, + 0.002369781956076622, + -0.012794728390872478, + 0.016096368432044983, + 0.024919357150793076, + 0.004383573308587074, + -0.003933349624276161, + 0.004907088819891214, + 0.002179571194574237, + 0.02175034023821354, + -0.0047639948315918446, + -0.006697513163089752, + -0.01802290789783001, + -0.005594640038907528, + 0.006219368893653154, + 0.012054826132953167, + 0.015537952072918415, + 0.00502924295142293, + -0.01514706015586853, + -0.011252101510763168, + 0.008145906962454319, + 0.013157699257135391, + 0.016291813924908638, + 0.014002305455505848, + -0.012382895685732365, + 0.016808349639177322, + -0.00039678142638877034, + -0.014770128764212132, + -0.003538967575877905, + -0.01461656391620636, + -0.002163865603506565, + -0.0016778684221208096, + -0.006303131580352783, + 0.004271889571100473, + 0.008145906962454319, + -0.0054864464327692986, + -2.567136471043341e-5, + -0.018511522561311722, + 0.0037658242508769035, + 0.015258743427693844, + -0.010588981211185455, + 0.006173997651785612, + -0.00020809756824746728, + -0.018651125952601433, + 0.016305774450302124, + 0.00872526504099369, + -0.0108193289488554, + 0.014449038542807102, + 0.012906411662697792, + -0.03118758648633957, + 0.0029596099629998207, + -0.015188940800726414, + 0.0006391256465576589, + -0.01735280640423298, + 0.002636775141581893, + -0.01514706015586853, + 0.0017162596341222525, + 0.004411493893712759, + -0.00422302819788456, + -0.0006160037009976804, + 0.025003118440508842, + 0.00730828195810318, + 0.006756845396012068, + -0.0036750815343111753, + -0.02522648684680462, + 0.004418474156409502, + 0.021331528201699257, + -0.016975875943899155, + -0.00020209894864819944, + 0.010051505640149117, + 0.00031258261878974736, + -0.0004493511514738202, + -0.03182976692914963, + 0.016417458653450012, + 0.027236787602305412, + -0.009779277257621288, + 0.023788562044501305, + -0.008432095870375633, + -0.00686503853648901, + 0.0012904666364192963, + -0.0038251562509685755, + 0.013590472750365734, + 0.011461508460342884, + -0.0020818482153117657, + 0.00460344972088933, + 0.023676879703998566, + -0.03199729323387146, + -0.020842913538217545, + 0.0020678876899182796, + -0.0010993833420798182, + -0.010805368423461914, + -0.015300625003874302, + 0.02135944925248623, + 0.027795204892754555, + 0.01087517011910677, + -0.005811026319861412, + 0.023439552634954453, + -0.0022301776334643364, + 0.0037867650389671326, + -0.014518841169774532, + -0.006701003294438124, + -0.014274533838033676, + -0.013129779137670994, + -0.010540120303630829, + 0.029986990615725517, + -0.005280530545860529, + 0.009227840229868889, + -0.01502141635864973, + 0.005095554515719414, + 0.022364599630236626, + -0.0074409060180187225, + 0.011077596805989742, + 0.0016848486848175526, + 0.0263991616666317, + 0.007908579893410206, + -0.005186297465115786, + -0.015300625003874302, + 0.01844171993434429, + 0.009877000004053116, + -0.025352129712700844, + -0.0024483094457536936, + 0.011210220865905285, + 0.00635897321626544, + -0.00680221663787961, + -0.004599959589540958, + -0.0013864445500075817, + -0.02813025377690792, + -0.0049489703960716724, + -0.016347656026482582, + 0.010205069556832314, + 0.010568041354417801, + -0.010672744363546371, + -0.0031393503304570913, + 0.01128002256155014, + -0.01705963723361492, + 0.014993495307862759, + 0.00753862876445055, + -0.023299947381019592, + 0.013702156022191048, + 0.015188940800726414, + 0.02316034398972988, + -0.013422947376966476, + -0.019363107159733772, + -0.018455680459737778, + 0.024039849638938904, + -0.015621714293956757, + -0.005650481674820185, + -0.01019808929413557, + 0.0036366903223097324, + -4.133594120503403e-5, + -0.005437585059553385, + 0.005964591167867184, + -0.01752033270895481, + 0.0003311237960588187, + 0.03029412031173706, + -0.0306570902466774, + 0.006167017389088869, + -0.0002316557802259922, + -0.01777162030339241, + -0.010847249068319798, + 0.0018305606208741665, + -0.004861717578023672, + 0.015091218054294586, + -0.0049838712438941, + -0.005116495303809643, + -0.03328165039420128, + 0.002505896147340536, + 0.024416781961917877, + 0.0009117901790887117, + -0.00024845192092470825, + -0.013541610911488533, + -0.011168339289724827, + 0.023537274450063705, + 0.028437383472919464, + 0.011321904137730598, + 0.0028252408374100924, + 0.0028932979330420494, + 0.0020434570033103228, + -0.007231499534100294, + 0.006425285246223211, + 0.027194906026124954, + -0.025994310155510902, + 0.025338169187307358, + -0.01894429512321949, + 0.0025634828489273787, + -0.016612904146313667, + 0.004760504700243473, + 0.004498746711760759, + -0.005018772557377815, + 0.017576172947883606, + -0.0070116231217980385, + -0.0007490639691241086, + 0.0007931265863589942, + -0.01074952632188797, + -0.011649973690509796, + 0.024360939860343933, + 0.006606770679354668, + -0.0077270944602787495, + 0.007545609027147293, + -0.010135267861187458, + -0.0018567363731563091, + -5.835020783706568e-5, + -0.019963406026363373, + 0.004271889571100473, + 0.027153024449944496, + -0.0039996616542339325, + -0.015007455833256245, + 0.009458187036216259, + -0.004282359965145588, + -0.011287002824246883, + -0.00041881270590238273, + 0.012354975566267967, + -0.027906887233257294, + 0.011622052639722824, + -0.0036820617970079184, + -0.01123116072267294, + 0.011782597750425339, + -0.001245967810973525, + 0.01682231016457081, + 0.006543948780745268, + -0.0077270944602787495, + -0.03621333837509155, + -0.0044289445504546165, + 0.011998984031379223, + -0.018218353390693665, + -0.013150718994438648, + -0.0016639080131426454, + -0.017534293234348297, + -0.00579008599743247, + -0.010442397557199001, + 0.0061216456815600395, + -0.006973231676965952, + -0.010847249068319798, + 0.017618054524064064, + 0.02685985527932644, + 0.004467335529625416, + -0.00620889849960804, + -0.01461656391620636, + 0.008543779142200947, + -0.01264814380556345, + 0.020172812044620514, + -0.020745189860463142, + -0.014462999068200588, + -0.009297641925513744, + -0.017017757520079613, + 0.01514706015586853, + -0.04573434963822365, + 0.006917390041053295, + 0.01349973026663065, + 0.004781445022672415, + -0.01798102632164955, + -0.007329222746193409, + 0.00317948660813272, + 0.015440229326486588, + -0.012026905082166195, + -0.01264814380556345, + 0.009297641925513744, + -0.015593793243169785, + 0.026971539482474327, + 0.00017745007062330842, + -0.004348671995103359, + 0.012012944556772709, + 0.025868665426969528, + -0.005884318612515926, + 0.007116326130926609, + 0.004345181863754988, + -0.011880320496857166, + -0.011412646621465683, + 0.009744375944137573, + 0.01092403195798397, + 0.007029073312878609, + 0.012368935160338879, + -0.012005964294075966, + -0.0020434570033103228, + 0.009527989663183689, + 0.013332204893231392, + 0.0250450000166893, + 0.028814315795898438, + 0.010658783838152885, + 0.007608430925756693, + -0.020801031962037086, + 0.01514706015586853, + 0.002776379231363535, + 0.02135944925248623, + 0.028758473694324493, + -0.0007892001885920763, + 0.013674234971404076, + 0.019767960533499718, + 0.001964929746463895, + -0.013094877824187279, + -0.01876281015574932, + 0.011649973690509796, + -0.0015775279607623816, + 0.00317948660813272, + 0.02050786279141903, + 0.022266875952482224, + 0.00885090883821249, + 0.005249119363725185, + -0.01370913628488779, + -0.0028043000493198633, + 0.010505218990147114, + 0.0014771873829886317, + 0.02898184023797512, + -0.0027467133477330208, + 0.00851585902273655, + 0.026064110919833183, + 0.022909056395292282, + -0.0031986820977181196, + -0.012152548879384995, + -0.004683722276240587, + -0.00986303947865963, + 0.009095216169953346, + 0.004219538066536188, + 0.0017921694088727236, + -0.00895561184734106, + -0.02117796242237091, + -0.014267553575336933, + -0.011091556400060654, + 0.03760938346385956, + 0.011677894741296768, + -0.003048607613891363, + 0.012536460533738136, + 0.019949445500969887, + 0.023048659786581993, + 0.0034726555459201336, + 0.022155193611979485, + -0.009918881580233574, + 0.04129493236541748, + -0.006917390041053295, + 0.023076580837368965, + 0.009897940792143345, + 0.0018811671761795878, + -0.01087517011910677, + 0.013862701132893562, + 0.0262455977499485, + -0.017827460542321205, + 0.01958647556602955, + -0.023299947381019592, + -0.0010278362315148115, + 0.027097182348370552, + 0.021331528201699257, + 0.02039617858827114, + -0.008180808275938034, + 0.008892790414392948, + -0.006310111843049526, + -0.018748849630355835, + 0.014630524441599846, + -0.001368121593259275, + 0.0027798693627119064, + -0.0033138557337224483, + -0.010728585533797741, + -0.009262741543352604, + 0.01262720301747322, + -0.0031742514111101627, + -0.01385572087019682, + 0.013311264105141163, + 0.0074199652299284935, + 0.005573699250817299, + -0.009060314856469631, + -0.003919389098882675, + 0.023285986855626106, + -0.022699648514389992, + 0.003097468987107277, + -0.03381214663386345, + 0.003362717106938362, + 0.007517688442021608, + -0.008243630640208721, + 0.004456865135580301, + -0.013164679519832134, + 0.0020905735436826944, + 0.005779615603387356, + 0.004875678103417158, + 0.009751356206834316, + -0.004683722276240587, + 0.0036506508477032185, + 0.020061129704117775, + -0.01770181767642498, + 0.023230144754052162, + 0.002001575892791152, + -0.011321904137730598, + -0.010505218990147114, + 0.019712118431925774, + 0.009653633460402489, + 0.0010749526554718614, + 0.00149900047108531, + -0.020842913538217545, + -0.02348143234848976, + -0.028493225574493408, + -0.009374424815177917, + 0.004024092108011246, + -0.002345351269468665, + 0.007594470400363207, + 0.00348487077280879, + -0.0014414137694984674, + 0.004352162126451731, + 0.009032394737005234, + 4.6080305764917284e-5, + 0.014714286662638187, + -0.016808349639177322, + -0.01153131015598774, + -0.014218691736459732, + 0.019418949261307716, + 0.0037937453016638756, + 0.002265078714117408, + 0.00252334657125175, + 0.02799065038561821, + 0.020633505657315254, + -0.0077759562991559505, + 0.014770128764212132, + -0.0013550336007028818, + 0.0021219844929873943, + -0.0007700046407990158, + -0.010407496243715286, + 0.0058145164512097836, + 0.004680232144892216, + 0.025268366560339928, + -0.020912714302539825, + 0.010721605271100998, + 0.002352331532165408, + -0.019600436091423035, + -0.04710246995091438, + -0.0056051104329526424, + -0.006173997651785612, + -0.01997736655175686, + -0.00766427256166935, + -0.008418135344982147, + -0.010658783838152885, + -0.01514706015586853, + -0.00475352443754673, + -0.009234820492565632, + 0.026664409786462784, + 0.0019213033374398947, + -0.025352129712700844, + -0.01312279887497425, + -0.004519687034189701, + -0.007915560156106949, + 0.0022493733558803797, + 0.0015304114203900099, + 0.01347878947854042, + -0.020214693620800972, + 0.011978044174611568, + -0.0021533954422920942, + -0.0016673981444910169, + 0.004645331297069788, + -0.029847387224435806, + 0.03364462032914162, + -6.342177221085876e-5, + -0.016361616551876068, + -0.013932502828538418, + 0.004592979326844215, + 0.003769314382225275, + 0.013611413538455963, + -0.0015426268801093102, + -0.0031759964767843485, + 0.004331221338361502, + -0.023034699261188507, + -0.00608325470238924, + -0.008076105266809464, + 0.013548591174185276, + -0.010309773497283459, + 0.003523261984810233, + 0.009653633460402489, + 0.01100081391632557, + 0.004456865135580301, + -0.028646789491176605, + 0.03590621054172516, + -0.010882150381803513, + -0.0005008301814086735, + 0.0006413069786503911, + 0.011307943612337112, + 0.026315398514270782, + -9.68640779319685e-6, + 0.006282190792262554, + 0.0012389876646921039, + -0.012829629704356194, + -0.003982210997492075, + 0.014839930459856987, + -0.01990756392478943, + -0.003455204889178276, + -0.00481634633615613, + 0.00680221663787961, + 0.00842511560767889, + 0.0039019384421408176, + -0.011615072377026081, + -0.0037867650389671326, + -0.001468462054617703, + -0.02274153009057045, + -0.01788330264389515, + 0.005329391919076443, + 0.0020992986392229795, + 0.0016237718518823385, + -0.032444026321172714, + -0.011677894741296768, + 0.009451206773519516, + -0.001659545348957181, + 0.015496070496737957, + -0.007929520681500435, + 0.003540712408721447, + -0.028646789491176605, + 0.0028636320494115353, + 0.004017111845314503, + 0.004997831769287586, + -0.050145842134952545, + -0.028158174827694893, + 0.0007874551811255515, + -0.013032055459916592, + 0.010407496243715286, + -0.0013393281260505319, + 0.002615834353491664, + -0.008027243427932262, + 0.021443210542201996, + -0.008599621243774891, + -0.016096368432044983, + 0.005106024909764528, + 0.006795236375182867, + -0.004418474156409502, + 0.007824817672371864, + 0.04299810528755188, + 0.0014344335068017244, + -0.006505557335913181, + 0.011985023505985737, + -0.014756168238818645, + -0.005884318612515926, + 0.0019387538777664304, + 0.001131666824221611, + 0.0005156631814315915, + 0.014141909778118134, + -0.019209543243050575, + -0.010302793234586716, + 0.013890622183680534, + 0.001444031368009746, + 0.014037205837666988, + 0.0013995325425639749, + -0.017087558284401894, + 0.023006778210401535, + 0.010365614667534828, + 0.02518460527062416, + -0.006212388630956411, + -0.009534969925880432, + 0.023718759417533875, + -0.01176165696233511, + 0.009604771621525288, + -0.01353463064879179, + -0.005894789006561041, + -0.01954459398984909, + -0.002912493422627449, + -0.010707644745707512, + -0.010742546059191227, + 0.012341015040874481, + -0.005681892391294241, + 0.0047500343061983585, + -0.006913899909704924, + 0.010226010344922543, + 0.005891298875212669, + -0.022336678579449654, + 0.004645331297069788, + 0.007671252824366093, + -0.008997493423521519, + 0.005818006582558155, + -0.005556248594075441, + -0.03252778947353363, + 0.010023584589362144, + -0.0304058026522398, + -0.04313771054148674, + -0.0034220488741993904, + 0.009046354331076145, + -0.011266062036156654, + 0.0042998106218874454, + -0.03372838348150253, + -0.009388385340571404, + -0.003950799815356731, + -0.024458663538098335, + 0.016878152266144753, + 0.02007509022951126, + 0.016878152266144753, + 0.005936670117080212, + 0.029316890984773636, + 0.014183790422976017, + -0.0006679190555587411, + -0.019502712413668633, + 0.02596638910472393, + 0.00809006579220295, + -0.010526159778237343, + -0.01426057331264019, + -0.014993495307862759, + -0.014798049814999104, + 0.0017459255177527666, + -0.0012695260811597109, + 0.005716793704777956, + 0.006554419174790382, + -0.014044186100363731, + -0.022825293242931366, + 0.0003213078889530152, + -0.005395703949034214, + 0.00454062782227993, + 0.008927690796554089, + 0.01929330639541149, + 0.008257591165602207, + 0.01330428384244442, + -0.007210558746010065, + 0.010616902261972427, + 0.007810857146978378, + 0.010889130644500256, + -0.01954459398984909, + -0.01449092011898756, + 0.0007468826952390373, + -0.006941820960491896, + -0.007566549815237522, + 0.017967065796256065, + 0.002851416589692235, + -0.027055300772190094, + -0.0299032274633646, + 0.0028863176703453064, + -0.015663595870137215, + 0.006481126882135868, + -0.0030154515989124775, + -0.04015018045902252, + -0.01848360151052475, + -0.0019247934687882662, + -0.009911901317536831, + 0.01128002256155014, + 0.012480619363486767, + -0.009018434211611748, + -0.0009161528432741761, + -0.0012965743662789464, + 0.03663215413689613, + -0.010184129700064659, + -0.005151396617293358, + -0.015063297003507614, + 0.008857889100909233, + 0.009416306391358376, + 7.285596075234935e-5, + 0.003908918704837561, + 0.02632935903966427, + -0.014825969934463501, + 0.0035651433281600475, + 0.002399447839707136, + -0.0008101408602669835, + 0.0019160681404173374, + 0.008376254700124264, + 0.0007996705244295299, + 0.017324885353446007, + 0.0028601419180631638, + -0.011489428579807281, + -0.011056656017899513, + 0.01527270395308733, + -0.009786257520318031, + 0.009123137220740318, + 0.015258743427693844, + -0.017618054524064064, + -0.005318921525031328, + 0.008522838354110718, + -0.02331390790641308, + -0.011747696436941624, + -0.007880659773945808, + 0.001368121593259275, + -0.011189280077815056, + -0.003678571665659547, + 0.0022301776334643364, + 0.00548993656411767, + 0.0037553540896624327, + -0.006868528667837381, + 0.016543101519346237, + -0.006072784308344126, + 0.00910219643265009, + 1.901835094031412e-5, + -0.004798895679414272, + 0.006948801223188639, + 0.0031131745781749487, + -0.0012206645915284753, + -0.005587659776210785, + 0.00017886793648358434, + 0.007573530077934265, + 0.01876281015574932, + 0.016333695501089096, + -0.028535107150673866, + 0.029456494376063347, + 0.010840268805623055, + -0.012131608091294765, + -0.0053468425758183, + -0.0018183451611548662, + -0.02826985903084278, + 0.005608600098639727, + 0.018986176699399948, + 0.005657461937516928, + -0.016026565805077553, + 0.007845758460462093, + -0.0009466912597417831, + -0.013234482146799564, + 0.008822987787425518, + 0.018260234966874123, + -0.006009962409734726, + 0.007922540418803692, + -0.03490106016397476, + 0.0033976181875914335, + -0.015091218054294586, + 0.002401192905381322, + -0.03266739100217819, + -0.014204731211066246, + 0.014825969934463501, + -0.009849078953266144, + 0.013946463353931904, + -0.003908918704837561, + -0.024737870320677757, + -0.0020661428570747375, + 0.008418135344982147, + -0.014183790422976017, + -0.0028775923419743776, + -0.0040869140066206455, + 0.016696667298674583, + 0.031410954892635345, + 0.013590472750365734, + 0.005482956301420927, + -0.015873001888394356, + -0.0014318160247057676, + 0.015579832717776299, + -0.0013637589290738106, + 0.007789916358888149, + -0.005099044647067785, + 0.0034150686115026474, + -0.0196841973811388, + -0.011587152257561684, + -0.0029648449271917343, + 0.0004057248297613114, + 0.009751356206834316, + 0.002277294173836708, + 0.016766469925642014, + 0.009158038534224033, + -0.0008075232617557049, + 0.008934671059250832, + -0.02331390790641308, + 0.0022301776334643364, + -0.0074060047045350075, + -0.006114665884524584, + -0.00975833646953106, + -0.012606263160705566, + -0.030349962413311005, + -0.004090404137969017, + 0.010365614667534828, + -0.022853214293718338, + 0.018357956781983376, + 0.006816177163273096, + 0.00943724624812603, + -0.0206893477588892, + 0.0043207514099776745, + -0.022783411666750908, + -0.00018672067380975932, + 0.003800725331529975, + 0.007252440322190523, + 0.021345488727092743, + -0.016766469925642014, + 0.0011063636047765613, + -0.003165526082739234, + -0.015900922939181328, + -0.029651939868927002, + -0.013813839294016361, + 0.004561568610370159, + 0.020158851519227028, + 0.02419341541826725, + -0.017255084589123726, + 0.01097987312823534, + 0.015733398497104645, + 0.008606601506471634, + -0.04704662784934044, + -0.0009222605149261653, + -0.005797066260129213, + 0.006561399437487125, + -0.020284496247768402, + 0.008599621243774891, + 0.005769145209342241, + -0.01673854887485504, + 0.0016726333415135741, + -0.004966420587152243, + -0.02260192669928074, + 0.002647245302796364, + 0.013778937980532646, + 0.002659460762515664, + -0.013136758469045162, + -0.01997736655175686, + -0.01671062782406807, + 0.0002112604706780985, + -0.016515182331204414, + -0.013967404142022133, + 0.017506372183561325, + -0.0006657377234660089, + -0.011726755648851395, + -0.008816007524728775, + 0.007001152727752924, + 0.019279345870018005, + 0.001765993656590581, + 0.01252250000834465, + 0.015970725566148758, + -0.003278954653069377, + 0.027474114671349525, + 0.010435417294502258, + -0.03554324060678482, + -0.0056051104329526424, + 0.010274872183799744, + 0.0017494156491011381, + 0.0028112803120166063, + 0.01827419549226761, + -0.03330957144498825, + 0.0034726555459201336, + 0.017548253759741783, + 0.00938140507787466, + -0.00872526504099369, + -0.015914883464574814, + -0.010463337413966656, + 0.017255084589123726, + 0.004694192670285702, + -0.01698983646929264, + -0.008131947368383408, + 0.017227163538336754, + -0.018567364662885666, + -0.017324885353446007, + -0.029316890984773636, + 0.006694023497402668, + -0.00409738440066576, + 0.008704324252903461, + 0.006819667294621468, + -0.02316034398972988, + -0.00321089755743742, + 0.004903598688542843, + 0.026915697380900383, + 0.006467166356742382, + 0.002820005640387535, + -0.012159529142081738, + 0.0050432030111551285, + -0.006212388630956411, + -0.0013925522798672318, + -0.003640180453658104, + -0.015761319547891617, + -0.006299641449004412, + 0.0028496715240180492, + -0.012152548879384995, + 0.021554894745349884, + 0.00426490930840373, + -0.02267172932624817, + 0.019767960533499718, + -0.001123814145103097, + -0.020158851519227028, + 0.007531648501753807, + 0.015370426699519157, + 0.003758844221010804, + 0.0035023214295506477, + -0.010295812971889973, + 0.012620223686099052, + 0.0106448233127594, + 0.006533478386700153, + 0.0007381574250757694, + -0.024947278201580048, + 0.007692193612456322, + 0.0021516503766179085, + 0.010951953008770943, + 0.01735280640423298, + -0.012606263160705566, + -0.005804046057164669, + 0.006994172465056181, + 0.0103935357183218, + 0.005772635340690613, + -0.0025791882071644068, + -0.007999323308467865, + 0.004568548873066902, + 0.010714625008404255, + -0.006365953478962183, + -0.0035337323788553476, + -0.01449092011898756, + 0.015510031022131443, + -0.013764978386461735, + 5.906595561100403e-6, + -0.007238479796797037, + 0.009137097746133804, + -0.011028734967112541, + 0.007936500944197178, + -0.0014047676231712103, + -0.00262979487888515, + -0.01887449249625206, + 0.018916374072432518, + 0.004592979326844215, + 0.0027554386761039495, + 0.0037623343523591757, + 0.0026402652729302645, + 0.013395026326179504, + 0.012759827077388763, + 0.006383403670042753, + 0.008885810151696205, + -0.004282359965145588, + -0.019767960533499718, + 0.007489767391234636, + -0.0060483538545668125, + -0.010630862787365913, + 0.0074478862807154655, + -0.008201749064028263, + 0.004631370771676302, + -0.00469070253893733, + -0.014923693612217903, + -0.024416781961917877, + -0.01188730075955391, + 0.004233498591929674, + -0.02352331392467022, + -0.0016237718518823385, + -0.007102365605533123, + 0.014267553575336933, + -0.020270535722374916, + -0.013653294183313847, + 0.019000137224793434, + 0.030238278210163116, + -0.007517688442021608, + -0.0008908495656214654, + -0.009625712409615517, + -0.035208187997341156, + 0.01611032895743847, + -0.012557401321828365, + -0.003692532191053033, + -6.794799992348999e-5, + -0.010533140040934086, + 0.012690025381743908, + -0.0024483094457536936, + 0.006641671527177095, + 0.015510031022131443, + 0.004662781488150358, + -0.0074199652299284935, + 0.0007329222280532122, + -0.00162115425337106, + -0.015454188920557499, + 0.0027624189388006926, + -0.013897602446377277, + 0.00696974154561758, + -0.02000528760254383, + -0.010756506584584713, + 0.03169016167521477, + -0.002758928807452321, + -0.026301437988877296, + 0.005462015978991985, + 0.022895095869898796, + 0.025142723694443703, + 0.01474220771342516, + -0.017199242487549782, + -0.0034360093995928764, + 0.004303300753235817, + -0.018399838358163834, + 0.014323394745588303, + 0.019460830837488174, + 0.004805875942111015, + 0.005011792294681072, + 0.009165017865598202, + 0.004380083177238703, + -0.013143738731741905, + -0.007060484495013952, + -0.02348143234848976, + -0.0014806775143370032, + -0.0029316889122128487, + 0.021080240607261658, + -0.029428573325276375, + -0.0051095150411129, + -0.0024971708189696074, + -0.006659122183918953, + 0.008983532898128033, + -0.03948007896542549, + 0.00032174415537156165, + 0.0210383590310812, + 0.016166171059012413, + 0.019823802635073662, + 0.007622391451150179, + -0.005235158838331699, + 0.010889130644500256, + 0.0009257505880668759, + -0.00933254323899746, + 0.01752033270895481, + -0.020479941740632057, + -0.022769451141357422, + -0.001491147791966796, + -0.0012703986139968038, + -0.005989022087305784, + -0.02472391165792942, + 0.017296966165304184, + 0.017338845878839493, + 0.010833288542926311, + -0.0077410549856722355, + -0.0077480352483689785, + -0.006502067670226097, + -0.012264232151210308, + 0.005451545584946871, + 0.004205577541142702, + -0.00796442199498415, + 0.001200596452690661, + -0.009500068612396717, + 0.001367249060422182, + -0.017897263169288635, + 0.033756304532289505, + -0.012103687971830368, + -0.009765316732227802, + -0.0038809978868812323, + -0.0034447344951331615, + 0.02685985527932644, + 0.02096855640411377, + 0.01972607895731926, + -0.00042121217120438814, + 0.016431419178843498, + -0.009444226510822773, + 0.02025657519698143, + -0.013262403197586536, + 0.015161020681262016, + 0.00819476880133152, + 0.011007794179022312, + 0.008592640981078148, + -0.002094063675031066, + 0.005270060151815414, + -0.006072784308344126, + -0.005154886748641729, + -0.028618868440389633, + -0.00867640320211649, + -0.01876281015574932, + 0.011468488723039627, + -0.010295812971889973, + 0.02951233647763729, + 0.011642993427813053, + 0.005811026319861412, + -0.00627172039821744, + -0.0054061743430793285, + 0.008690363727509975, + 0.005437585059553385, + -0.002905513159930706, + -0.0015784003771841526, + 0.017715778201818466, + -0.005060653667896986, + -0.009604771621525288, + -0.014602603390812874, + 0.0025425422936677933, + -0.002476230263710022, + 0.017394687980413437, + -0.016375577077269554, + -0.03026619926095009, + -0.002062652725726366, + -0.03004283271729946, + -0.017799541354179382, + -0.03880997747182846, + 0.021764300763607025, + -0.00783877819776535, + -0.0036820617970079184, + -0.016166171059012413, + 0.00401013158261776, + -0.009416306391358376, + -0.0098420986905694, + 0.0033854027278721333, + 0.03378422558307648, + -0.01685023121535778, + 0.010463337413966656, + -0.03328165039420128, + 0.01763201504945755, + 0.027823124080896378, + -0.008138926699757576, + -0.00915105827152729, + 0.023788562044501305, + -0.014435078017413616, + 0.01062388252466917, + 0.032695312052965164, + -0.00819476880133152, + 0.0008528946782462299, + 0.005591149907559156, + -0.008753186091780663, + 0.009674574248492718, + -0.027613718062639236, + -0.008166847750544548, + -0.007022093050181866, + -0.015496070496737957, + 0.004167186561971903, + 0.014148890040814877, + 0.008864869363605976, + -0.020731229335069656, + -0.00760145066305995, + 0.019363107159733772, + 0.024751830846071243, + 0.05268663913011551, + 0.030070753768086433, + 0.016612904146313667, + 0.011321904137730598, + 0.037972353398799896, + -0.018972216174006462, + 0.020130930468440056, + -0.004718623124063015, + -0.02327202633023262, + -0.016696667298674583, + -0.0106448233127594, + 0.002308705123141408, + 0.032164815813302994, + 0.015230822376906872, + -0.011468488723039627, + -0.006118156015872955, + -0.01062388252466917, + -0.010958932340145111, + 0.005563228856772184, + -0.0066905333660542965, + -0.0033836576621979475, + 0.007022093050181866, + -0.012976214289665222, + 0.011587152257561684, + 0.016054486855864525, + 0.005301470868289471, + -0.007566549815237522, + -0.012529480271041393, + -0.02106628008186817, + -0.005884318612515926, + 0.02628747746348381, + -0.009046354331076145, + -0.00785971898585558, + -0.011950123123824596, + -0.0015548422234132886, + 0.009395365603268147, + 0.013094877824187279, + 0.009227840229868889, + 0.004334711469709873, + -0.02692965790629387, + -0.018357956781983376, + -0.024360939860343933, + 0.012676064856350422, + -0.024737870320677757, + -0.008257591165602207, + -0.007699173875153065, + -0.0003228347923140973, + -0.019111819565296173, + 0.019628355279564857, + -0.010770467109978199, + -0.004449885338544846, + -0.00591572979465127, + -0.026343319565057755, + -0.00895561184734106, + -0.0034901059698313475, + 0.002530326833948493, + 0.0272507481276989, + -0.011964083649218082, + -0.02458430640399456, + -0.013129779137670994, + -0.008564719930291176, + 0.01880469173192978, + 0.012368935160338879, + 0.0014353060396388173, + -0.022448360919952393, + 0.02813025377690792, + 0.005116495303809643, + -0.00403456250205636, + -0.0026105993892997503, + -0.024961238726973534, + 0.009472147561609745, + -0.007294321432709694, + -0.025240447372198105, + -0.009583830833435059, + -0.012278192676603794, + -0.0036820617970079184, + -0.028144214302301407, + 0.002507641213014722, + -0.009730415418744087, + 0.013841760344803333, + 0.005842437501996756, + 0.004146245773881674, + -0.008795066736638546, + -0.004062483552843332, + -0.015161020681262016, + 0.00686503853648901, + -0.011384725570678711, + -0.007280360907316208, + -0.013108838349580765, + -0.0013742292067036033, + -0.012885470874607563, + -0.017017757520079613, + -0.017548253759741783, + 0.008927690796554089, + 0.008173828013241291, + -0.024961238726973534, + -0.009981703013181686, + -0.013353145681321621, + -0.00155833235476166, + -0.0003911099920514971, + -0.00956289004534483, + 0.013520670123398304, + 0.0013271127827465534, + 0.023956088349223137, + 0.009269721806049347, + -0.02635728009045124, + 0.008578680455684662, + 0.013702156022191048, + 0.005866867955774069, + 0.028297780081629753, + -0.0216386578977108, + -0.003376677632331848, + 0.013450868427753448, + 0.01604052633047104, + -0.022197073325514793, + 0.018790731206536293, + 0.00252334657125175, + 0.0030904889572411776, + -0.02242044173181057, + 0.01664082519710064, + -0.004156716167926788, + 0.0006042246241122484, + 0.019698157906532288, + 0.0027187925297766924, + 0.003380167530849576, + -0.004516197368502617, + 0.0058005559258162975, + 0.02575698308646679, + -0.006742884870618582, + 0.0011037460062652826, + 0.017715778201818466, + -0.004516197368502617, + -0.0026716762222349644, + 0.025673219934105873, + -0.003470910480245948, + -0.00975833646953106, + 0.019349148496985435, + -0.017604093998670578, + 0.0033662072382867336, + 0.0047430540435016155, + -0.006805706769227982, + 0.013583492487668991, + 0.01933518797159195, + -0.0039647603407502174, + -0.01664082519710064, + -0.0067917462438344955, + -0.013946463353931904, + 0.011719776317477226, + 0.00637642340734601, + 0.0034115787129849195, + -0.0038775077555328608, + -0.013841760344803333, + -0.004851247183978558, + 0.0033417765516787767, + -0.0017939144745469093, + 0.021401330828666687, + 0.013066956773400307, + 0.021275686100125313, + -0.013318244367837906, + 0.0009309857850894332, + -0.004599959589540958, + 0.018036868423223495, + 0.01211764756590128, + 0.032304421067237854, + 0.001138647086918354, + 0.00579008599743247, + -0.0024517993442714214, + 0.010484278202056885, + -0.00956289004534483, + -0.007161697372794151, + 0.004209067672491074, + -0.0028601419180631638, + -0.0001549825246911496, + -0.025449853390455246, + -0.004585999064147472, + 0.005434094928205013, + -0.014574682340025902, + -0.020661426708102226, + -0.019698157906532288, + -0.010609921999275684, + 0.010030564852058887, + 0.02462618798017502, + 0.023216184228658676, + 0.0006670465227216482, + 0.0018846571911126375, + -0.0026821463834494352, + -0.009995663538575172, + 0.00809006579220295, + 0.00012640727800317109, + 0.005783105734735727, + 0.013185620307922363, + 0.008864869363605976, + -0.006913899909704924, + 0.014839930459856987, + -0.011412646621465683, + 0.002148160245269537, + 0.009911901317536831, + 0.01823231391608715, + -0.0006530860555358231, + 0.002195276552811265, + 0.0005047565791755915, + -0.03437056392431259, + -0.005353822372853756, + -0.040568992495536804 + ], + "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d": [ + -0.02611440233886242, + 0.010348380543291569, + -0.0155259994789958, + -0.004817585926502943, + -0.032039519399404526, + 0.0005940546398051083, + -0.00016180059174075723, + 0.05129614472389221, + 0.014250453561544418, + 0.06084216758608818, + 0.0023522162809967995, + 0.019599515944719315, + -0.01874915324151516, + 0.011294753290712833, + -0.014428755268454552, + 0.007104653399437666, + -0.045179013162851334, + 0.024838855490088463, + -0.03535867854952812, + 0.002851119264960289, + 0.07137570530176163, + -0.024687984958291054, + -0.014037862420082092, + 0.02140996977686882, + -0.01888630911707878, + -0.011267322115600109, + 0.03705940768122673, + -0.004543275106698275, + -0.0064017316326498985, + -0.00845563504844904, + 0.011123308911919594, + 0.0343162976205349, + 0.02946099452674389, + 0.0008576503023505211, + -0.0019373210379853845, + -0.018927454948425293, + -0.0017470178427174687, + 0.04298452287912369, + -0.009518589824438095, + 0.023851336911320686, + -0.04421892389655113, + 0.01569058559834957, + 0.019942404702305794, + 0.007310386747121811, + -0.01584145613014698, + -0.003932933323085308, + 0.03656565025448799, + -0.00686806021258235, + 0.013790982775390148, + 0.007708137389272451, + 0.007461257744580507, + 0.03895215317606926, + -0.011191886849701405, + -0.006761764641851187, + 0.003447745693847537, + 0.0004577563959173858, + -0.008695656433701515, + 0.08810867369174957, + 0.017075855284929276, + -0.033877402544021606, + -0.028939804062247276, + -0.01888630911707878, + 0.004076946526765823, + -0.004351257346570492, + 0.007975590415298939, + -0.011329041793942451, + -0.004656428005546331, + -0.010848998092114925, + -0.027746552601456642, + 0.01903717964887619, + -0.018666859716176987, + 0.009964345023036003, + -0.02374161221086979, + 0.025305183604359627, + -0.02179400436580181, + 0.011802228167653084, + 0.024674268439412117, + -0.06583462655544281, + 0.002808258170261979, + 0.01695241592824459, + -0.010567829012870789, + 0.0008897961233742535, + 0.01951722428202629, + 0.018543420359492302, + 0.012604587711393833, + 0.01748732291162014, + -0.034426022320985794, + -0.050747524946928024, + -0.05563025921583176, + -0.006905777845531702, + 0.029954755678772926, + 0.015004808083176613, + 0.011905094608664513, + -0.005023319274187088, + -0.010567829012870789, + 0.0073858220130205154, + 0.03884242847561836, + 0.011767939664423466, + -0.04298452287912369, + -0.023892482742667198, + -0.030750256031751633, + 0.012337134219706059, + -0.035632990300655365, + 0.0031220014207065105, + 0.031079430133104324, + -0.017213011160492897, + -0.0024276517797261477, + -0.022589506581425667, + -0.03368538245558739, + 0.028610631823539734, + 0.010423815809190273, + -0.025126881897449493, + -0.0027636827435344458, + -0.00101409328635782, + 0.028116870671510696, + -0.07636816799640656, + 0.016348931938409805, + -0.03865041211247444, + -0.01460705790668726, + -0.03225896507501602, + 0.06139078736305237, + 0.038924723863601685, + 0.019146904349327087, + -0.02470169961452484, + 0.009216847829520702, + -0.007982448674738407, + 0.008942537009716034, + -0.0048690191470086575, + -0.005935403052717447, + 0.018625712022185326, + 0.021862581372261047, + -0.025593210011720657, + -0.019256627187132835, + -0.0036174755077809095, + -0.020134422928094864, + 0.03401455655694008, + 0.03080511838197708, + 0.03985738009214401, + -0.042518194764852524, + 0.04589221999049187, + -0.01087642926722765, + 0.0003521038161125034, + -0.007005215622484684, + -0.02290496416389942, + 0.0037374866660684347, + 0.00599712273105979, + -0.04084489867091179, + 0.052695132791996, + 0.014908799901604652, + 0.014360177330672741, + -0.03895215317606926, + -0.009669460356235504, + 0.04131122678518295, + -0.006244002841413021, + 0.006123991683125496, + 0.0003358165849931538, + 0.01676039770245552, + 0.02189001254737377, + -0.017363881692290306, + -0.004656428005546331, + -0.009971202351152897, + -0.02563435770571232, + 0.0362364761531353, + 0.0021910585928708315, + 0.008777949959039688, + 0.020367586985230446, + 0.03223153576254845, + 0.01540255919098854, + -0.05025376379489899, + 0.015964897349476814, + 0.04995202273130417, + -0.04213416203856468, + 0.007742426358163357, + -0.010506109334528446, + -0.01012207381427288, + -0.022150607779622078, + 0.00826361682265997, + -0.008345910347998142, + 0.02106708101928234, + -0.06512141972780228, + -0.014771644026041031, + -0.03453574702143669, + -0.0414758138358593, + 0.005945689510554075, + -0.005647376645356417, + 0.020093277096748352, + 0.005283914506435394, + 0.013043485581874847, + -0.019078325480222702, + 0.02112194336950779, + 0.014757928438484669, + 0.02064189873635769, + 0.026539582759141922, + 0.05206421762704849, + -0.02402963861823082, + -0.005808534100651741, + -0.025798944756388664, + 0.0031717203091830015, + 0.013715547509491444, + 0.016993563622236252, + -0.045755065977573395, + -0.05028119683265686, + -0.058592818677425385, + 0.016499802470207214, + -0.041009485721588135, + 0.01676039770245552, + 0.005935403052717447, + -0.005671378690749407, + 0.017473606392741203, + -0.02712935209274292, + 0.03327391669154167, + -0.004148953128606081, + 0.02877521701157093, + 0.02073790691792965, + -0.03135374188423157, + -0.009209989570081234, + -0.019709240645170212, + 0.009690034203231335, + 0.008990541100502014, + 0.0031288592144846916, + -0.01332465372979641, + 0.014250453561544418, + 0.023426154628396034, + -0.00684405816718936, + -0.025017157196998596, + -0.032478414475917816, + -0.020847631618380547, + 0.028747785836458206, + -0.042655352503061295, + -0.01426416914910078, + 0.012892614118754864, + -0.009038545191287994, + 0.0019133187597617507, + -0.026073254644870758, + -0.02315184287726879, + -0.009978060610592365, + 0.0016604383708909154, + -0.005914829671382904, + 0.016348931938409805, + -0.025181744247674942, + 0.05110412836074829, + 0.04010425880551338, + 0.014319031499326229, + 0.012686881236732006, + 0.02611440233886242, + 0.03036622144281864, + -0.00961459893733263, + 0.05420384183526039, + 0.02058703638613224, + -0.014881368726491928, + -0.0006570604164153337, + 0.018474841490387917, + 0.014085866510868073, + -0.03782748058438301, + -0.0007012073183432221, + 0.01811823807656765, + 0.027938568964600563, + -0.0126937385648489, + -0.031024567782878876, + -0.010485535487532616, + -0.000824647257104516, + -0.004862161353230476, + 0.017720486968755722, + -0.021341390907764435, + 0.04882734641432762, + -0.014538479968905449, + 0.005115899257361889, + -0.023234136402606964, + -0.007687564007937908, + 0.012199979275465012, + -0.05351806432008743, + 0.01724044233560562, + 0.0032282969914376736, + 0.017185579985380173, + 0.0031340024434030056, + -0.0015670012217015028, + -0.00477301049977541, + 0.0010440960759297013, + -0.008009879849851131, + 0.007927586324512959, + -0.02776026725769043, + 0.031079430133104324, + 0.023906199261546135, + 0.04059801995754242, + -0.00285797705873847, + -0.03486492112278938, + -0.002537376247346401, + 0.01426416914910078, + -0.03549583628773689, + -0.018337685614824295, + 0.024578260257840157, + 0.00782471988350153, + 0.03264300152659416, + -0.0022236329969018698, + 0.02800714783370495, + -0.015567146241664886, + -0.009024829603731632, + -0.009731180965900421, + -0.022123176604509354, + 0.017610762268304825, + -0.018913740292191505, + 0.017761632800102234, + 0.035139232873916626, + -0.004508986137807369, + 0.005345634650439024, + 0.009827189147472382, + 0.0013124063843861222, + -0.019873827695846558, + -0.05678236484527588, + 0.008867100812494755, + 0.04668772220611572, + -0.004749007988721132, + -0.021423684433102608, + -0.025497201830148697, + -0.017309021204710007, + 0.014936231076717377, + 0.006460022646933794, + -0.0004530416626948863, + -0.011233032681047916, + -0.02722536027431488, + -0.028308888897299767, + -0.010087785311043262, + -0.06594435125589371, + 0.017267873510718346, + 0.009402007795870304, + -0.04199700430035591, + -0.008777949959039688, + 0.017418744042515755, + -0.00045947081525810063, + -0.01172679290175438, + -0.010300375521183014, + -0.014936231076717377, + -0.008064741268754005, + -0.008236185647547245, + -0.010691269300878048, + -0.027348801493644714, + -0.03736114874482155, + -0.026923619210720062, + -0.015155679546296597, + -0.0031631479505449533, + -0.00901111401617527, + 0.030942274257540703, + -0.016047190874814987, + -0.003113429294899106, + 0.03346593305468559, + -0.0030174204148352146, + -0.009477443061769009, + 0.018776584416627884, + -0.0018190244445577264, + -0.019503507763147354, + 0.0007239237311296165, + -0.02320670522749424, + 0.04210672900080681, + -0.002797971712425351, + 0.016842691227793694, + 0.0013681257842108607, + -0.03319162502884865, + 0.003055138047784567, + -0.00586339645087719, + 0.020984787493944168, + 0.01184337493032217, + -0.024742847308516502, + -0.04249076545238495, + -0.012179405428469181, + 0.003775204299017787, + 0.024921149015426636, + 0.01976410299539566, + -0.004714719485491514, + 0.004920452367514372, + 0.01603347435593605, + -0.04281993955373764, + 0.023659318685531616, + 0.040817469358444214, + -0.011109593324363232, + -0.06364013999700546, + -0.02508573606610298, + 0.04465782269835472, + 0.000644630694296211, + -0.020230431109666824, + 0.027005912736058235, + -0.014469902031123638, + 0.023961061611771584, + 0.017994796857237816, + -0.007852151058614254, + 0.033877402544021606, + 0.0008045025751926005, + -0.0026505293790251017, + -0.01356467604637146, + -0.019064610823988914, + -0.033109329640865326, + -0.03629133850336075, + -0.0002770969003904611, + -0.05231109634041786, + -0.01798108220100403, + -0.030585670843720436, + 0.024441104382276535, + 0.017075855284929276, + 0.021835150197148323, + 0.022548358887434006, + -0.02320670522749424, + -0.004375259391963482, + 0.0021001931745558977, + -0.0027516817208379507, + -0.008771092630922794, + 0.008483066223561764, + -0.0022167752031236887, + -0.008880816400051117, + 0.00043139682384207845, + 0.01704842410981655, + 0.019215481355786324, + 0.003782062092795968, + -0.01660952717065811, + 0.0016655817162245512, + -0.03162804991006851, + 0.04907422885298729, + -0.004124950617551804, + 0.006645182613283396, + 0.0033243056386709213, + -0.06572490185499191, + 0.0029299836605787277, + 0.07576467841863632, + 0.055246222764253616, + -0.0049924589693546295, + -0.004841587971895933, + -0.02693733386695385, + -0.010135789401829243, + 0.032286398112773895, + 0.016403794288635254, + 0.007282955572009087, + 0.0073858220130205154, + -0.021574554964900017, + 0.021204235032200813, + -0.02776026725769043, + -0.02412564679980278, + -3.6733288197865477e-6, + -0.01150734443217516, + 0.02131395973265171, + -0.01029351819306612, + -0.007776715327054262, + -0.010183793492615223, + 0.030695393681526184, + 0.018625712022185326, + 0.0019801820162683725, + 0.001481279032304883, + -0.0106364069506526, + -0.047592949122190475, + -0.02514059841632843, + 0.02034015581011772, + 0.016307786107063293, + 0.026621876284480095, + 0.020230431109666824, + 0.05299687385559082, + -0.06095189228653908, + 0.012247983366250992, + -0.008798523806035519, + 0.012385139241814613, + 0.005595943424850702, + 0.013461809605360031, + 0.02286381646990776, + -0.007557266391813755, + -0.01058154460042715, + -0.008195039816200733, + 0.02242491953074932, + -0.02213689312338829, + -0.0055445097386837006, + -0.06764508038759232, + -0.024921149015426636, + 0.028610631823539734, + -0.011829659342765808, + -0.00944315455853939, + 0.004694146104156971, + 0.03028392791748047, + -0.0028168305289000273, + 0.00014454900519922376, + -0.017281590029597282, + 0.03705940768122673, + 0.010828424245119095, + -0.009559736587107182, + 0.019585801288485527, + -0.015814024955034256, + -0.006367442663758993, + -0.01680154539644718, + -0.023481016978621483, + 0.00898368377238512, + 0.02479770965874195, + -0.018433695659041405, + -0.02814430184662342, + 0.010842139832675457, + 0.03036622144281864, + -0.007399537600576878, + 0.06336582452058792, + -0.004656428005546331, + 0.00140755798202008, + -0.03464547172188759, + -0.0077149951830506325, + -0.040762607008218765, + -0.009792900644242764, + -0.04257305711507797, + -0.022109461948275566, + -0.04054315760731697, + 0.060238681733608246, + -0.021437400951981544, + 0.014977377839386463, + 0.029049528762698174, + 0.010588401928544044, + -0.015306550078094006, + 0.0014804218662902713, + 0.0017333022551611066, + 0.01928405836224556, + -0.011980530805885792, + 0.008853385224938393, + -0.008414488285779953, + 0.0008880816749297082, + 0.019256627187132835, + -0.007536693010479212, + 0.018104521557688713, + -0.016266638413071632, + 0.016787828877568245, + 0.009635171853005886, + -0.008764234371483326, + 0.005808534100651741, + 0.01676039770245552, + -0.011185028590261936, + 0.011589637026190758, + 0.023906199261546135, + -0.007036075461655855, + 0.0024705128744244576, + 0.0137361204251647, + 0.036401063203811646, + 0.007907012477517128, + -0.020792769268155098, + 0.014579626731574535, + -0.0016630101017653942, + 0.01607462204992771, + 0.018227962777018547, + -0.016828976571559906, + 0.008832812309265137, + -0.007502404041588306, + -0.0006253432366065681, + 0.023275284096598625, + -0.00961459893733263, + 0.02169799618422985, + -0.016431225463747978, + -0.010643264278769493, + 0.008009879849851131, + 0.03549583628773689, + -0.02946099452674389, + 0.030750256031751633, + 0.021972306072711945, + 0.007358390837907791, + -0.015731733292341232, + 0.00947058480232954, + 0.004145523998886347, + 0.02345358580350876, + 0.0002751681604422629, + -0.03856811672449112, + 0.016019759699702263, + 0.005695380736142397, + -0.024687984958291054, + -0.0016527234110981226, + 0.014401324093341827, + -0.009957486763596535, + 0.0041180928237736225, + 0.007056648842990398, + -0.05969006195664406, + -0.006456593982875347, + -0.020367586985230446, + 0.01574544794857502, + -0.014936231076717377, + 0.006010838318616152, + 0.025757797062397003, + 0.013838986866176128, + 0.027335084974765778, + -0.014277884736657143, + -0.028418613597750664, + 0.0343162976205349, + 0.0023882195819169283, + 0.023659318685531616, + -0.0019013177370652556, + -0.007330960128456354, + 0.002324785338714719, + -0.01796736754477024, + 0.003231725888326764, + -0.01607462204992771, + 0.0001765876659192145, + -0.002324785338714719, + -0.06715131551027298, + -0.03736114874482155, + 0.003974079620093107, + 0.026676738634705544, + -0.005218765698373318, + 0.01754218526184559, + 0.008654510602355003, + -0.012577156536281109, + -0.001903032185509801, + 0.026333849877119064, + 0.0024087929632514715, + 0.030750256031751633, + -0.0043306839652359486, + 0.00344603112898767, + -0.0242628026753664, + 0.014552195556461811, + 0.022342626005411148, + -0.02339872345328331, + 0.00045347027480602264, + 0.02896723523736, + -0.019297774881124496, + 0.009888909757137299, + 0.004419834818691015, + -0.008949394337832928, + 0.014250453561544418, + -0.0006909206858836114, + 0.025689220055937767, + 0.009223705157637596, + 0.032917313277721405, + -0.003048280254006386, + 0.028363751247525215, + 0.031902361661195755, + -0.0007714995299465954, + -0.04421892389655113, + 0.0218077190220356, + -0.04937596991658211, + 0.052969444543123245, + -0.017459891736507416, + 0.02223290130496025, + -0.009786042384803295, + -0.03736114874482155, + -0.008201897144317627, + -0.01533398125320673, + -0.0020299009047448635, + 0.007536693010479212, + 0.005475932266563177, + 0.019215481355786324, + -0.027650542557239532, + 0.017185579985380173, + 0.024043353274464607, + 0.004073517397046089, + 0.036071889102458954, + -0.013557818718254566, + 0.008496781811118126, + -0.010547256097197533, + 0.009532305411994457, + 0.008606505580246449, + 0.02625155635178089, + -0.01787135750055313, + -0.0003225296677555889, + -0.040954623371362686, + 0.0036791954189538956, + 0.033164191991090775, + -0.007913870736956596, + -0.04770267382264137, + -0.0109038595110178, + 0.05755043402314186, + 0.001633007312193513, + -0.006257718428969383, + -0.04811413958668709, + -0.034426022320985794, + 0.020902493968605995, + 0.009731180965900421, + -0.018913740292191505, + 0.011644499376416206, + 0.021451115608215332, + -0.009456870146095753, + 0.02940613217651844, + 0.013770408928394318, + 0.004755865782499313, + 0.00329344579949975, + -0.015018523670732975, + 0.0027859704568982124, + 0.02146483026444912, + 0.005969692021608353, + 0.02242491953074932, + 0.033877402544021606, + 0.021149372681975365, + -0.011857090517878532, + -0.023179274052381516, + -0.00020112564379815012, + -0.01913318783044815, + 0.011123308911919594, + -0.011356472969055176, + -0.019366351887583733, + 0.0019116044277325273, + -0.02431766502559185, + 0.009840904735028744, + 0.01762447878718376, + -0.01787135750055313, + 0.0028065438382327557, + 0.023179274052381516, + -0.02514059841632843, + 0.00044875554158352315, + 0.002623098436743021, + 0.02049102820456028, + -0.020916208624839783, + 0.02858320064842701, + 0.005945689510554075, + 0.011699361726641655, + -0.014140728861093521, + 0.01339323166757822, + 0.02029900997877121, + -0.02334386110305786, + -0.019448645412921906, + -0.013386374339461327, + -0.02146483026444912, + -0.015553430654108524, + -0.02577151358127594, + 0.010938148945569992, + -0.01928405836224556, + 0.005993694067001343, + 0.009395149536430836, + -0.019078325480222702, + 0.006123991683125496, + -0.015347696840763092, + -0.01518311072140932, + 0.001897888840176165, + -0.0005087610916234553, + 0.0067411912605166435, + -0.012371423654258251, + 0.004721577279269695, + -0.0006810626364313066, + 0.007461257744580507, + -0.03135374188423157, + 0.042216453701257706, + 0.0007183518027886748, + -0.04317654296755791, + -0.04937596991658211, + 0.01947607658803463, + 0.016938701272010803, + -0.010334664955735207, + -0.006357156205922365, + -0.0038163510616868734, + 0.06298179179430008, + 0.003061995841562748, + -0.009580309502780437, + 0.02263065241277218, + -0.0061891404911875725, + -0.006645182613283396, + -0.029323840513825417, + 0.005458787549287081, + 0.04427378624677658, + -0.017555899918079376, + -0.0044404082000255585, + -0.02326156757771969, + 0.011102735064923763, + 0.005019890144467354, + 0.03738858178257942, + 0.01739131286740303, + -0.002455082954838872, + -0.00035703284083865583, + 0.017130717635154724, + 0.030777687206864357, + 0.0507749542593956, + -0.04191471263766289, + 0.04844331368803978, + 0.0343162976205349, + -0.019544655457139015, + -0.00422781752422452, + 0.0017050139140337706, + 0.009477443061769009, + -0.0031202868558466434, + 0.0237827580422163, + -0.02422165684401989, + 0.003912359941750765, + 0.005067894700914621, + -0.015141963958740234, + 0.0016870122635737062, + 0.005685094278305769, + -0.006713760085403919, + 0.022877532988786697, + 0.04356057569384575, + -0.00534220552071929, + 0.0006789196049794555, + -0.017130717635154724, + 0.03579757735133171, + 0.021739142015576363, + 0.0005490505136549473, + -0.03061310015618801, + 0.05148816481232643, + 0.00534220552071929, + -0.023947345092892647, + 0.013468666933476925, + -0.014332747086882591, + -0.030064478516578674, + -0.005383352283388376, + -0.03566042333841324, + 0.004124950617551804, + -0.017062140628695488, + 0.04325883463025093, + 0.030064478516578674, + -0.020710475742816925, + -0.0002573808014858514, + 0.03269786387681961, + 0.0009823760483413935, + -0.02915925346314907, + 0.01426416914910078, + 0.009758612141013145, + -0.016444940119981766, + 0.029680443927645683, + -0.02678646333515644, + -0.012158832512795925, + 0.012412570416927338, + 0.011706219054758549, + -0.04792212322354317, + 0.03590730205178261, + 0.044740114361047745, + -0.011877663433551788, + -0.022507213056087494, + 0.03445345535874367, + 0.003950077574700117, + 0.0217528585344553, + 0.013098347000777721, + -0.03694968298077583, + -0.009978060610592365, + 0.003956935368478298, + 0.021492261439561844, + -0.006364013999700546, + -0.01898231729865074, + 0.011034158058464527, + -0.030311359092593193, + 0.02703334391117096, + -0.022315194830298424, + 0.0008036453509703279, + -0.002412221860140562, + 0.051515594124794006, + 0.01588260382413864, + -0.0013861274346709251, + -0.02286381646990776, + -0.0206830445677042, + -0.001633007312193513, + 0.013749836012721062, + 0.008215612731873989, + -0.006981213577091694, + -0.02481142431497574, + -0.008935678750276566, + 0.01888630911707878, + 0.012728027999401093, + 0.03834867104887962, + -0.017706770449876785, + -0.01133590005338192, + -0.03250584751367569, + 0.008681940846145153, + 0.004443837329745293, + -0.033164191991090775, + -0.019654378294944763, + 0.0017984510632231832, + -0.007749284151941538, + -0.02902209758758545, + -0.011815943755209446, + -0.010883286595344543, + 0.03022906556725502, + 0.006473738234490156, + 0.011939384043216705, + -0.009827189147472382, + -0.009655744768679142, + -0.021327676251530647, + -0.04172269254922867, + 0.014181875623762608, + -0.0037306288722902536, + 0.01807709038257599, + 0.017843926325440407, + 0.006000551860779524, + 0.010362096130847931, + -0.0017324450891464949, + 0.008764234371483326, + -0.008757377043366432, + -0.007783573120832443, + -0.021012218669056892, + -0.020367586985230446, + 0.024866286665201187, + 0.004368401598185301, + -0.002194487489759922, + 0.014744212850928307, + 0.007797288708388805, + 0.015018523670732975, + -0.025510918349027634, + -0.03192979469895363, + -0.03502950817346573, + -0.015718016773462296, + 0.01855713501572609, + -0.027883706614375114, + 0.011301610618829727, + 0.009539162740111351, + 0.011438766494393349, + 0.008119603618979454, + 0.001348409685306251, + -0.05584970861673355, + 0.01951722428202629, + 0.0020796197932213545, + -0.004848445765674114, + 0.0038403531070798635, + -0.006075987126678228, + 0.006676042452454567, + 0.012837751768529415, + -0.004649570677429438, + -0.0310519989579916, + -0.005273628048598766, + -0.035002075135707855, + -0.02732137031853199, + -0.00408037519082427, + -0.001068955403752625, + -0.02087506279349327, + -0.00612742081284523, + -0.02053217403590679, + -0.02169799618422985, + 0.013016054406762123, + -0.012494863010942936, + -0.04257305711507797, + -0.003977508749812841, + 0.02799343131482601, + -0.0016364362090826035, + 0.05236595869064331, + 0.01681526005268097, + 0.01012207381427288, + -0.006566318217664957, + -0.021382538601756096, + 0.015443705953657627, + 0.02290496416389942, + -0.011541632935404778, + -0.006350298412144184, + -0.011493628844618797, + -0.016431225463747978, + -0.019503507763147354, + 0.0021173376590013504, + 0.030750256031751633, + 0.004580992739647627, + -0.0068406290374696255, + -0.0037854909896850586, + -0.001490708556957543, + 0.021231666207313538, + 0.004755865782499313, + 0.00558222783729434, + 0.019009748473763466, + 0.02896723523736, + 0.02422165684401989, + -0.010540397837758064, + 0.017651909962296486, + -0.02077905461192131, + 0.0027499671559780836, + -0.007639559917151928, + -0.016198061406612396, + -0.005030177067965269, + -0.01603347435593605, + -0.005993694067001343, + 0.022274048998951912, + -0.025648072361946106, + 0.0320669487118721, + 0.0012506864732131362, + -0.02814430184662342, + 0.024482252076268196, + 0.0222877636551857, + 0.010540397837758064, + 0.026004677638411522, + 0.016294069588184357, + 0.007317244540899992, + 0.006079416256397963, + 0.01981896534562111, + 0.020079560577869415, + -0.01651351898908615, + 0.02408450096845627, + 0.022411203011870384, + -0.028638062998652458, + 0.0016192917246371508, + 0.0021053364034742117, + 0.0005756243481300771, + -0.013557818718254566, + -0.03947334364056587, + 0.00794130191206932, + -0.026704169809818268, + 0.01836511678993702, + 0.0030534237157553434, + 0.009792900644242764, + -0.0012849753256887197, + -0.006316009443253279, + -0.006398302502930164, + -0.002796257147565484, + -0.01763819344341755, + -0.006833771243691444, + -0.026429859921336174, + -0.0033020179253071547, + -0.013290365226566792, + -0.006864631082862616, + 0.011767939664423466, + 0.02533261477947235, + -0.01068441104143858, + -0.003180292434990406, + -0.038869861513376236, + -0.010471819899976254, + -0.030009616166353226, + -0.008908247575163841, + 0.004395832773298025, + -0.014140728861093521, + 0.024633122608065605, + -0.02902209758758545, + 0.0028425471391528845, + -0.021437400951981544, + 0.001395556959323585, + -0.033740244805812836, + -0.029954755678772926, + -0.010046638548374176, + 0.010725557804107666, + -0.013653826899826527, + -0.016636958345770836, + 0.013674400746822357, + -0.03212181106209755, + 0.041393522173166275, + 0.003651764476671815, + 0.012508578598499298, + -0.005808534100651741, + -0.0043409704230725765, + 0.014949946664273739, + 0.02121795155107975, + -0.006350298412144184, + -0.009045403450727463, + 0.015553430654108524, + -0.023234136402606964, + 0.030201634392142296, + 0.0008872244507074356, + 0.011253606528043747, + -0.03099713660776615, + 0.0013664113357663155, + 0.03697711601853371, + -0.020710475742816925, + -0.029268978163599968, + 0.006120563019067049, + -0.005266770254820585, + -0.01027294434607029, + -0.0035866156686097383, + -0.010012349113821983, + 0.014620773494243622, + 0.010656979866325855, + 0.015553430654108524, + -0.029817599803209305, + 0.01356467604637146, + 0.01167193055152893, + -0.016390079632401466, + 0.004032370634377003, + -0.01046496257185936, + 0.009703749790787697, + -0.04858046770095825, + -0.01933892071247101, + 0.0030517091508954763, + 0.022164324298501015, + -0.006031411699950695, + -0.010471819899976254, + 0.005547938868403435, + 0.007666990626603365, + -0.022315194830298424, + 0.009388292208313942, + 0.01676039770245552, + -0.010416957549750805, + 0.03151832893490791, + 0.037223994731903076, + 0.004454123787581921, + 0.004845017101615667, + -0.006490882486104965, + 0.0044404082000255585, + 0.014058435335755348, + -0.017459891736507416, + -0.0009223705274052918, + 0.0036311910953372717, + 0.03143603354692459, + 0.005846251733601093, + 0.0222877636551857, + 0.037909772247076035, + -0.023755326867103577, + 0.017473606392741203, + -0.015580861829221249, + -0.02001098357141018, + 0.015978612005710602, + -0.0028682637494057417, + -0.012659450061619282, + 0.007474973332136869, + 0.006864631082862616, + -0.010012349113821983, + 0.03341107442975044, + 0.010437531396746635, + 0.018008513376116753, + -0.010938148945569992, + 0.014757928438484669, + 0.020943639799952507, + -0.006895491387695074, + 0.007433826569467783, + 6.877864507259801e-6, + -0.010128931142389774, + 0.016636958345770836, + -0.020518457517027855, + -0.013605822809040546, + 0.028939804062247276, + -0.010032922960817814, + -0.0037237710785120726, + 0.028939804062247276, + -0.018927454948425293, + 0.018776584416627884, + -0.017994796857237816, + -0.014785359613597393, + 0.004749007988721132, + 0.0059731206856667995, + -0.03151832893490791, + 0.05711153894662857, + 0.007728710770606995, + 0.0012789748143404722, + 0.01349609810858965, + -0.02121795155107975, + -0.019105756655335426, + 0.02819916419684887, + 0.012926903553307056, + 0.006754906848073006, + 0.0109038595110178, + -0.020271578803658485, + -0.014127013273537159, + 0.03239612281322479, + 0.026388712227344513, + -0.011884521692991257, + 0.011329041793942451, + 0.026855040341615677, + -0.008784808218479156, + -0.018858877941966057, + -0.006000551860779524, + 0.004344399552792311, + 0.0008306478266604245, + 0.01574544794857502, + 0.003751202020794153, + -0.0067309048026800156, + -0.03472776338458061, + -0.015868887305259705, + 0.007660132832825184, + -0.05187219753861427, + -0.006223429460078478, + 0.02431766502559185, + 0.012549725361168385, + 0.020806485787034035, + 0.02044988051056862, + -0.0030174204148352146, + 0.021423684433102608, + -0.004399261903017759, + -0.028802648186683655, + -0.008613363839685917, + -0.0036483355797827244, + -0.019846396520733833, + -0.005815391894429922, + 4.1414521547267213e-5, + -0.018735436722636223, + 0.0013526958646252751, + 0.008339053019881248, + 0.011665073223412037, + -0.00307571142911911, + -0.005472503136843443, + -0.013646969571709633, + 0.004234675318002701, + 0.010307233780622482, + -0.02320670522749424, + -0.005873682908713818, + -0.0035763289779424667, + -0.005794818513095379, + -0.01593746617436409, + -0.02252092771232128, + -0.04281993955373764, + -0.016540950164198875, + 0.007214377634227276, + 0.02563435770571232, + -0.009971202351152897, + -0.011370188556611538, + -0.00669661583378911, + 0.011692503467202187, + -0.002131053013727069, + 0.0013646968873217702, + -0.024331379681825638, + -0.002307640854269266, + 0.017802780494093895, + -0.00669661583378911, + -0.013400089927017689, + 0.013921280391514301, + -0.0033585946075618267, + 0.02959815040230751, + 0.03629133850336075, + -0.01206282339990139, + -0.0058565386570990086, + -0.0330270379781723, + -0.0021104798652231693, + 0.009429438970983028, + 0.019201766699552536, + 0.02479770965874195, + -0.0022682086564600468, + -0.01700727827847004, + -0.017706770449876785, + -0.011322184465825558, + 0.016924984753131866, + -0.007118368986994028, + -0.019462361931800842, + -0.0029728447552770376, + 0.006045127287507057, + -0.014058435335755348, + -0.025702934712171555, + -0.027691690251231194, + -0.007879582233726978, + -0.018337685614824295, + 0.0048587326891720295, + -0.01419559121131897, + 0.0034065989311784506, + 0.007248666603118181, + 0.014209306798875332, + -0.008668226189911366, + 0.011562205851078033, + 0.005681665148586035, + -0.0004386832006275654, + 0.013098347000777721, + -0.005266770254820585, + -0.008558501489460468, + 0.01349609810858965, + -0.004899878986179829, + 0.01073241513222456, + -0.002592238364741206, + 0.010691269300878048, + -0.0006420590216293931, + -0.01044438872486353, + -0.008688799105584621, + 0.01796736754477024, + -0.004673572722822428, + -0.0165683813393116, + 0.0017710200045257807, + -0.015704302117228508, + -0.010204367339611053, + 0.014552195556461811, + -0.02712935209274292, + 0.0057433852925896645, + 0.008771092630922794, + -0.0010466676903888583, + 0.006532029248774052, + 0.014428755268454552, + 0.0009180844062939286, + 0.0077149951830506325, + -0.0023213564418256283, + 0.02326156757771969, + -0.024482252076268196, + 0.028089439496397972, + 0.007104653399437666, + -0.012021676637232304, + -0.003967221826314926, + 0.0030739970970898867, + 0.02450968325138092, + 0.0043066819198429585, + 0.0217528585344553, + -0.005565083120018244, + 0.010183793492615223, + -0.018049659207463264, + 0.011582779698073864, + 0.026004677638411522, + -0.007461257744580507, + 0.03261557221412659, + -0.007756141945719719, + -0.021478546783328056, + -0.0016732967924326658, + 0.02605953998863697, + -0.01562200766056776, + 0.021958591416478157, + -0.021286528557538986, + 0.02150597795844078, + 0.014689350500702858, + 0.00010329521319363266, + -0.014840221963822842, + -0.016499802470207214, + 0.00577767426148057, + 0.005078181158751249, + 0.006220000796020031, + -0.01027294434607029, + -0.02984503097832203, + 0.008537927642464638, + 0.004454123787581921, + -0.011939384043216705, + -0.010259228758513927, + -0.014785359613597393, + 0.00872308760881424, + 0.023618172854185104, + -0.011562205851078033, + 0.031655482947826385, + -0.016458656638860703, + 0.03497464582324028, + 0.01763819344341755, + -0.011754224076867104, + -0.03099713660776615, + 0.025744082406163216, + 0.018296539783477783, + 0.01419559121131897, + -0.007769857533276081, + -0.02896723523736, + -0.016403794288635254, + -0.017761632800102234, + -0.011061588302254677, + 0.017459891736507416, + -0.026484722271561623, + -0.004457552917301655, + 0.03535867854952812, + 0.010691269300878048, + 0.019311489537358284, + -0.0016450084513053298, + -0.012926903553307056, + 0.004560419358313084, + -0.028446044772863388, + 0.01351667195558548, + -0.003291731234639883, + 0.014099582098424435, + -0.006024553906172514, + 0.006802911404520273, + 0.0017221583984792233, + -0.0037100554909557104, + 0.0027379661332815886, + -0.006706902291625738, + -0.014223022386431694, + -0.00016019330359995365, + 0.026621876284480095, + -0.021204235032200813, + 0.007557266391813755, + 0.04792212322354317, + 0.005774245131760836, + 0.008846527896821499, + 0.009936913847923279, + -0.027239076793193817, + -0.0006154851871542633, + -0.017185579985380173, + -0.017912505194544792, + -0.016006043180823326, + 0.016966132447123528, + -0.021053364500403404, + -0.02194487489759922, + 0.009683175943791866, + -0.0036311910953372717, + 0.03788233920931816, + -0.0066246092319488525, + -0.0039946530014276505, + 0.00809217244386673, + 0.0020436164923012257, + -0.006943495478481054, + 0.006744620390236378, + -0.00104752485640347, + -0.016170630231499672, + 0.002497944049537182, + 0.008023595437407494, + -0.016060905531048775, + -0.0019201765535399318, + -0.020326441153883934, + -0.00947058480232954, + 0.0009583738283254206, + 0.004560419358313084, + -0.0002303783257957548, + -0.018035944551229477, + 0.010458104312419891, + -0.004673572722822428, + 0.014524764381349087, + -0.00536620756611228, + 0.013146352022886276, + 0.004392404109239578, + -0.005983407609164715, + -0.019023463129997253, + 0.01743246056139469, + -0.005921687465161085, + 0.00713208457455039, + -0.012446858920156956, + -0.002909410512074828, + -0.0218077190220356, + -0.0035420400090515614, + 0.013859560713171959, + -0.0004168240411672741, + -0.016431225463747978, + 0.036455925554037094, + 0.010307233780622482, + -0.004128379747271538, + -0.010314091108739376, + -0.027924854308366776, + -0.023659318685531616, + 0.015539715066552162, + -0.0069572110660374165, + -0.023700464516878128, + 0.023467300459742546, + -0.01012207381427288, + -0.0012069680960848927, + -0.011678787879645824, + 0.021643133834004402, + 0.002995132701471448, + 2.98152426694287e-5, + 0.015567146241664886, + -0.003454603487625718, + -0.0028631205204874277, + 0.0033380212262272835, + 0.009731180965900421, + 0.005328489933162928, + 0.03168291226029396, + 0.014332747086882591, + -0.012926903553307056, + -0.01133590005338192, + 0.01121245976537466, + 0.008147034794092178, + 0.007632702123373747, + 0.0016261495184153318, + -0.00580167630687356, + -0.024674268439412117, + 0.037608031183481216, + -0.0021790575701743364, + -0.010718700475990772, + -0.0012541153701022267, + -0.0034357444383203983, + 0.002547662938013673, + 0.019009748473763466, + 0.026951050385832787, + -0.0031031426042318344, + 0.025250321254134178, + -0.013598964549601078, + 0.0016364362090826035, + -0.02335757575929165, + -0.0004414691647980362, + 0.009415723383426666, + 0.0046427128836512566, + -0.01150734443217516, + -0.0049924589693546295, + -0.015910034999251366, + 0.022150607779622078, + 0.0027602538466453552, + -0.004241533111780882, + 0.01744617521762848, + -0.018858877941966057, + 0.016348931938409805, + -0.054862190037965775, + -0.0028374039102345705, + -0.011267322115600109, + 0.014387608505785465, + -0.024153077974915504, + 0.019969835877418518, + 0.0011486770818009973, + -0.003329449100419879, + -0.0037717754021286964, + 0.0010303804883733392, + 0.021190520375967026, + 0.010848998092114925, + -0.009950629435479641, + 0.00954602099955082, + -0.006199427414685488, + 0.013304080814123154, + -0.023892482742667198, + 0.022507213056087494, + -0.015196826308965683, + 0.004351257346570492, + 0.011397619731724262, + 0.020216716453433037, + -0.006202856078743935, + 0.00013565532572101802, + 0.007879582233726978, + 0.02640242874622345, + -0.0044232639484107494, + -0.02053217403590679, + -0.009628313593566418, + -0.020477311685681343, + -0.002698533935472369, + 0.0031031426042318344, + 0.0019544654060155153, + -0.010375811718404293, + 0.03555069863796234, + 0.002062475308775902, + 0.00826361682265997, + -0.010067211464047432, + -0.009381433948874474, + 0.021862581372261047, + 0.016966132447123528, + -0.013009196147322655, + 0.00336030893959105, + -0.0020881921518594027, + -0.011068446561694145, + -0.005609658546745777, + -0.009703749790787697, + 0.004865590482950211, + 0.00453984597697854, + 0.0033688812982290983, + -0.0029968470335006714, + -0.012858325615525246, + 0.03571528568863869, + -0.02402963861823082, + 0.01489508431404829, + 0.0041112350299954414, + -0.01109587773680687, + -0.028720354661345482, + -0.03914416953921318, + -0.01890002377331257, + 0.0008615077822469175, + -0.008057883940637112, + -0.012110828422009945, + -0.04235360771417618, + 0.022109461948275566, + -0.00913455430418253, + 0.019558370113372803, + -0.006165138445794582, + 0.03061310015618801, + 0.003788919886574149, + 0.023042118176817894, + -0.008887674659490585, + -0.0017658766591921449, + 0.005969692021608353, + 0.007646417710930109, + 0.0300919096916914, + -0.013646969571709633, + 0.023096980527043343, + 0.014319031499326229, + -0.0008537928224541247, + -0.01894116960465908, + 0.001587574603036046, + 0.014511048793792725, + 0.016897553578019142, + 0.026717886328697205, + -0.017103286460042, + 0.010458104312419891, + 0.001947607728652656, + -0.015429990366101265, + -0.007310386747121811, + -0.005287343170493841, + 0.0013492669677361846, + 0.006638324819505215, + -0.02500344254076481, + -0.0029282693285495043, + 0.0034443167969584465, + 0.021725427359342575, + 0.003350022481754422, + 0.016883838921785355, + -0.004971885588020086, + 0.013592107221484184, + 0.002909410512074828, + 0.017075855284929276, + 0.02475656196475029, + 0.02509945072233677, + -0.010259228758513927, + 0.013489240780472755, + -0.017473606392741203, + -0.001357839209958911, + 0.023631887510418892, + 0.009806616231799126, + 0.002208203077316284, + 0.019873827695846558, + -0.03110686130821705, + -0.010663838125765324, + -0.00804416835308075, + 0.019009748473763466, + 0.0206830445677042, + 0.011034158058464527, + 0.001834454364143312, + -0.02295982651412487, + -0.00471129035577178, + 0.004231246188282967, + 0.012316561304032803, + 0.0007856437005102634, + 0.016966132447123528, + 0.021108226850628853, + -0.0009180844062939286, + -0.012748600915074348, + -0.0019733242224901915, + 0.010430673137307167, + 0.012241126038134098, + -9.975917782867327e-5, + 0.006182282697409391, + 0.0007955017499625683, + 0.01259773038327694, + -0.015772879123687744, + -0.0056439475156366825, + 0.010821566917002201, + 0.008729945868253708, + -0.0075092618353664875, + -0.024921149015426636, + 0.0033997411374002695, + 0.020312724635004997, + 0.00816075038164854, + -0.024015922099351883, + 0.01378412451595068, + -0.007056648842990398, + -0.02625155635178089, + 0.007193804252892733, + -0.015855172649025917, + 0.016993563622236252, + -0.0052084787748754025, + -0.005873682908713818, + -0.005623374134302139, + -0.009408865123987198, + 0.0202029999345541, + -0.013475525192916393, + -0.005506792105734348, + -0.015868887305259705, + -0.018488558009266853, + -0.019489793106913567, + -0.010300375521183014, + 0.06528600305318832, + 0.007042933255434036, + 0.006881775800138712, + 0.005222194362431765, + -0.0015644296072423458, + -0.023467300459742546, + -0.0037477731239050627, + 0.0018876021495088935, + 0.016198061406612396, + 0.01097243744879961, + -0.019640663638710976, + -0.02198602259159088, + 0.01511453278362751, + 0.0037546309176832438, + -0.029625581577420235, + -8.652581163914874e-5, + 0.01044438872486353, + -0.0035866156686097383, + 0.01995612122118473, + 0.010183793492615223, + -0.006562889087945223, + 0.0027602538466453552, + 0.011109593324363232, + -0.0004941882798448205, + -0.017720486968755722, + 0.016979847103357315, + -0.02010699175298214, + 0.002703677164390683, + 0.010787277482450008, + 0.025812659412622452, + 0.0014161302242428064, + -0.02243863418698311, + -0.014744212850928307, + -0.008757377043366432, + -0.0004296823753975332, + -0.002921411534771323, + 0.0067343334667384624, + -0.003627762198448181, + -0.015429990366101265, + -0.0007762142340652645, + -0.003888357663527131, + -0.0057502430863678455, + 0.008119603618979454, + 0.015292835421860218, + -0.020724192261695862, + -0.001109244883991778, + -0.010794135741889477, + 0.004364972934126854, + -0.021835150197148323, + 0.001007235492579639, + 0.014140728861093521, + -0.003812922164797783, + 0.030695393681526184, + 0.024866286665201187, + 0.01903717964887619, + -0.011404477059841156, + 0.01942121423780918, + 0.016746683046221733, + 0.015567146241664886, + -0.0013466952368617058, + -0.028308888897299767, + 0.0028751215431839228, + 0.002077905461192131, + 0.0024345095735043287, + -0.022068316116929054, + 0.008716230280697346, + 4.843302667723037e-5, + -0.013400089927017689, + 0.0026933904737234116, + -0.018721722066402435, + -0.022342626005411148, + -0.003113429294899106, + -0.0007586412248201668, + -0.019448645412921906, + -0.018049659207463264, + 0.026265272870659828, + -0.003960364032536745, + 0.030942274257540703, + 0.01986011303961277, + -0.009758612141013145, + 0.012906329706311226, + 0.00388149986974895, + -0.025908667594194412, + -0.0036723376251757145, + 0.005685094278305769, + -0.006710331421345472, + 0.026073254644870758, + -0.03017420321702957, + 0.008195039816200733, + -0.01802222803235054, + -0.022013453766703606, + -0.006233715917915106, + 0.012268557213246822, + 0.014689350500702858, + -0.0055205076932907104, + -0.00850363913923502, + -0.00689206225797534, + -2.36941432376625e-5, + 0.018474841490387917, + -0.006631467025727034, + 0.005136472173035145, + 0.011719934642314911, + -0.01680154539644718, + 0.00032317257137037814, + -0.014908799901604652, + -0.0033705956302583218, + 0.019270343706011772, + 0.011905094608664513, + 0.005979978479444981, + 0.0010115215554833412, + -0.0018173099961131811, + -0.02171171084046364, + 0.007118368986994028, + -0.013640111312270164, + -0.010739273391664028, + 0.0004078232159372419, + 0.0196680948138237, + -0.012625160627067089, + -0.024976011365652084, + -0.011911952868103981, + -0.007845292799174786, + 0.022603221237659454, + -0.006984642241150141, + -0.036017026752233505, + -6.71311718178913e-5, + -0.005925116129219532, + -0.009299141354858875, + -0.01441503968089819, + 0.0008366483962163329, + -0.0007895011804066598, + 0.012419427745044231, + 0.006161709316074848, + 0.02935126982629299, + 0.016897553578019142, + 0.015512283891439438, + 0.008517354726791382, + -0.004334113094955683, + 0.008510497398674488, + -0.011500486172735691, + -0.01390070654451847, + 0.014497333206236362, + 0.0005739098996855319, + 0.00759155536070466, + 0.01334522757679224, + 0.010087785311043262, + 0.006713760085403919, + 0.00342202908359468, + -0.018419979140162468, + 0.018543420359492302, + 0.0059662628918886185, + 0.03352079540491104, + -0.015128248371183872, + 0.009120838716626167, + -0.00453984597697854, + -0.011157597415149212, + 0.013845845125615597, + -0.04413663223385811, + 0.010938148945569992, + -0.011397619731724262, + 0.0036483355797827244, + -0.00037803477607667446, + -0.011870806105434895, + -0.013372658751904964, + -0.008558501489460468, + -0.008681940846145153, + 0.008414488285779953, + 0.002909410512074828, + 0.012261698953807354, + 0.011939384043216705, + 0.0037580598145723343, + 0.012577156536281109, + 0.027527103200554848, + 0.023042118176817894, + -0.03258813917636871, + 0.01334522757679224, + -0.013235502876341343, + 0.02470169961452484, + -0.003416885621845722, + -0.005979978479444981, + -0.0013621252728626132, + -0.011253606528043747, + -0.008222470059990883, + 0.011911952868103981, + -0.00013244074943941087, + -0.01874915324151516, + -0.007776715327054262, + -0.0027996860444545746, + -0.004927310161292553, + 0.014154444448649883, + -0.00891510583460331, + -0.007077222224324942, + 0.02097107097506523, + 0.00845563504844904, + -0.01511453278362751, + 0.0042072441428899765, + 0.0038403531070798635, + 0.027403663843870163, + -0.0029162683058530092, + 0.03245098516345024, + -0.006014267448335886, + -0.003272872418165207, + 0.008695656433701515, + 0.030750256031751633, + -0.009690034203231335, + -0.016993563622236252, + 0.0028854082338511944, + -0.022356342524290085, + -0.007365248631685972, + -0.011137024499475956, + 0.01000549178570509, + -0.031216586008667946, + -0.020079560577869415, + 0.01951722428202629, + 0.0013492669677361846, + 0.0019870398100465536, + -0.017075855284929276, + 0.016924984753131866, + 0.022123176604509354, + 0.0030174204148352146, + -0.005311345681548119, + 0.004488412756472826, + 0.006199427414685488, + 0.020792769268155098, + -0.01017007790505886, + -0.005013032350689173, + -0.013530387543141842, + 0.0006596320890821517, + 0.009916340932250023, + 0.014428755268454552, + 0.002914553740993142, + -0.00046504277270287275, + -0.027197929099202156, + -0.013379516080021858, + 0.0044301217421889305, + 0.01729530468583107, + 0.010554113425314426, + 0.014085866510868073, + -0.013146352022886276, + 0.01426416914910078, + -0.007660132832825184, + -0.013502956368029118, + -0.000824647257104516, + -0.014840221963822842, + -0.006316009443253279, + 0.001369840232655406, + -0.01327664963901043, + 0.0028854082338511944, + -0.002971130423247814, + -0.008181324228644371, + -2.390844929323066e-5, + -0.009093407541513443, + 0.007536693010479212, + 0.01116445567458868, + -0.010739273391664028, + 0.013077774085104465, + 0.004803870338946581, + -0.022013453766703606, + 0.015169395133852959, + 0.010965580120682716, + -0.006202856078743935, + 0.019023463129997253, + 0.02523660659790039, + -0.03214924409985542, + 0.011706219054758549, + -0.015306550078094006, + 0.011596495285630226, + -0.020518457517027855, + 0.003977508749812841, + -0.006775480229407549, + 0.005184476729482412, + 0.008023595437407494, + -0.005057607777416706, + 0.0019458932802081108, + 0.01733645237982273, + 0.00770127959549427, + 0.008037311024963856, + -0.0036723376251757145, + -0.024331379681825638, + 0.0001221540878759697, + 0.01947607658803463, + -0.017226727679371834, + -0.0025939529296010733, + 0.011932525783777237, + -0.002069333102554083, + 0.005026747938245535, + -0.04089976102113724, + 0.014757928438484669, + 0.02171171084046364, + -0.006058842875063419, + 0.02102593332529068, + -0.009477443061769009, + -0.003432315541431308, + -0.0022973541636019945, + -0.004004939924925566, + 0.009045403450727463, + 0.02242491953074932, + -0.0021293386816978455, + 0.0013526958646252751, + 0.031655482947826385, + -0.027403663843870163, + -0.023316429927945137, + 0.008311621844768524, + -0.00542792771011591, + -0.015059670433402061, + -0.014716781675815582, + 0.021588271483778954, + 0.027677973732352257, + 0.008147034794092178, + -0.009758612141013145, + 0.02959815040230751, + -0.004289537202566862, + -0.00046461416059173644, + -0.013660685159265995, + -0.0007329245563596487, + -0.013811555691063404, + -0.0066074649803340435, + -0.008565358817577362, + 0.018351402133703232, + -0.019777819514274597, + 0.009402007795870304, + -0.009059119038283825, + 0.004214101936668158, + 0.02219175547361374, + -0.005945689510554075, + 0.013681258074939251, + 0.006329725030809641, + 0.0279522854834795, + -0.0022202041000127792, + -0.0035934732295572758, + -0.016732966527342796, + 0.020792769268155098, + 0.013249218463897705, + -0.03220410272479057, + -0.0031408602371811867, + 0.015388843603432178, + 0.007214377634227276, + -0.010279802605509758, + -0.007022359874099493, + -0.0021361964754760265, + -0.01380469836294651, + -0.004560419358313084, + -0.008894531987607479, + 0.005561654455959797, + 0.009758612141013145, + -0.006350298412144184, + 0.0014795645838603377, + 0.017226727679371834, + -0.019750388339161873, + 0.0049753147177398205, + 0.007001786958426237, + -0.012878898531198502, + 0.00908655021339655, + 0.015169395133852959, + 0.025168029591441154, + -0.013064058497548103, + -0.02035387232899666, + -0.014511048793792725, + 0.025661788880825043, + -0.015306550078094006, + -0.011082162149250507, + -0.012577156536281109, + 0.010807851329445839, + -0.001803594408556819, + -0.000834076723549515, + 3.3967407944146544e-5, + -0.009017972275614738, + -0.0008422203245572746, + 0.025154313072562218, + -0.027732836082577705, + 0.016774114221334457, + -0.005273628048598766, + -0.014469902031123638, + -0.001639865105971694, + -0.002069333102554083, + -0.010526682250201702, + 0.005671378690749407, + -0.01922919787466526, + -0.007907012477517128, + -0.026621876284480095, + -0.005880540702491999, + 0.024111932143568993, + 0.006422305013984442, + 0.004814156796783209, + -0.01744617521762848, + -0.015210541896522045, + 0.024962294846773148, + 0.02489371784031391, + 0.008551643230021, + 0.0001101529851439409, + 0.004738721530884504, + -0.0025682360865175724, + 0.003782062092795968, + 0.004567277152091265, + 0.028418613597750664, + -0.030448514968156815, + 0.026909902691841125, + -0.014867653138935566, + 0.005136472173035145, + -0.013070916756987572, + 0.009875194169580936, + 0.004426692612469196, + -0.0037854909896850586, + 0.023412438109517097, + -0.004049515351653099, + 0.007234951015561819, + -0.011239890940487385, + -0.006655469071120024, + -0.0024019351694732904, + 0.020765338093042374, + 0.001286689774133265, + -0.011541632935404778, + 0.009621456265449524, + -0.014010431244969368, + 0.0012198265176266432, + -0.002753396052867174, + -0.020820200443267822, + 0.007625844329595566, + 0.02562064118683338, + 0.0005867682630196214, + -0.01073241513222456, + 0.010519824922084808, + -0.0082841906696558, + -0.0006853487575426698, + -0.00112296047154814, + 0.010423815809190273, + -0.02035387232899666, + 0.016348931938409805, + 0.007975590415298939, + -0.01599232852458954, + 0.00874366145581007, + 0.002287067472934723, + 0.016732966527342796, + 0.006765193771570921, + -0.010266087017953396, + -0.03598959371447563, + -0.008784808218479156, + 0.010396384634077549, + -0.016170630231499672, + -0.015128248371183872, + 0.0010466676903888583, + -0.012926903553307056, + -0.01671925187110901, + -0.0124262860044837, + 0.003061995841562748, + -0.0022956395987421274, + -0.011857090517878532, + 0.019434930756688118, + 0.017939936369657516, + -0.003830066416412592, + -0.005002745892852545, + -0.013146352022886276, + 0.007426968775689602, + -0.017528468742966652, + 0.010656979866325855, + -0.02140996977686882, + -0.01402414683252573, + -0.009285425767302513, + -0.015073386020958424, + 0.016102051362395287, + -0.04753808677196503, + 0.005818821024149656, + 0.012295988388359547, + 0.010403242893517017, + -0.014716781675815582, + -0.0040838043205440044, + -0.00405637314543128, + 0.005407354328781366, + -0.0026933904737234116, + -0.021547123789787292, + 0.019640663638710976, + -0.01846112683415413, + 0.024441104382276535, + -0.002040187595412135, + -0.0023727896623313427, + 0.011322184465825558, + 0.0310519989579916, + -0.00453984597697854, + 0.00792072806507349, + -0.00017230155935976654, + -0.004063230939209461, + -0.013022911734879017, + 0.004498699214309454, + 0.009854620322585106, + 0.011061588302254677, + 0.014812790788710117, + -0.0003656050539575517, + 0.00042539625428617, + 0.008688799105584621, + 0.009744896553456783, + 0.025209175422787666, + 0.027773981913924217, + 0.0037649176083505154, + 0.010931290686130524, + -0.023618172854185104, + 0.010986153036355972, + 0.000983233330771327, + 0.018968600779771805, + 0.025305183604359627, + 0.0026436715852469206, + 0.014373892918229103, + 0.023385006934404373, + 0.00040225128759630024, + -0.016499802470207214, + -0.02136882208287716, + 0.014812790788710117, + 0.002635099459439516, + 0.00503703486174345, + 0.01953093893826008, + 0.019846396520733833, + 0.006898920051753521, + 0.005465645343065262, + -0.009484300389885902, + -0.004917023703455925, + 0.010560971684753895, + 0.005040463525801897, + 0.03236868977546692, + -0.010917575098574162, + 0.012899472378194332, + 0.022370057180523872, + 0.01584145613014698, + -0.00018590995750855654, + -0.02257579006254673, + 0.00033281632931903005, + -0.02010699175298214, + 0.0044129774905741215, + 0.0015978611772879958, + 0.0047695813700556755, + -0.015567146241664886, + -0.022411203011870384, + -0.008709372021257877, + -0.01131532620638609, + 0.033301349729299545, + 0.018680574372410774, + -0.0009772327030077577, + 0.012364565394818783, + 0.018488558009266853, + 0.022781522944569588, + 0.0017281589098274708, + 0.019160619005560875, + -0.006240573711693287, + 0.02940613217651844, + -0.005157045554369688, + 0.010382669046521187, + 0.008935678750276566, + 0.0037031976971775293, + -0.017363881692290306, + 0.012508578598499298, + 0.02852833829820156, + -0.017555899918079376, + 0.02039501816034317, + -0.03332877904176712, + 0.005386780947446823, + 0.019462361931800842, + 0.014840221963822842, + 0.015155679546296597, + -0.010506109334528446, + 0.015347696840763092, + -0.003922646399587393, + -0.011836516670882702, + 0.013585248962044716, + 0.00024988013319671154, + 0.003013991517946124, + -0.005352492444217205, + -0.010355237871408463, + -0.011191886849701405, + 0.013400089927017689, + -0.007200662046670914, + -0.013290365226566792, + 0.013475525192916393, + 0.007255524396896362, + 0.008435061201453209, + -0.008147034794092178, + -0.0014349891571328044, + 0.023316429927945137, + -0.010643264278769493, + 0.002796257147565484, + -0.03571528568863869, + 0.0037717754021286964, + 0.020600751042366028, + -0.014154444448649883, + 0.000720494834240526, + -0.011665073223412037, + 0.0015550001990050077, + 0.012268557213246822, + 0.007090937811881304, + 0.015306550078094006, + 0.005599372088909149, + -0.002293925266712904, + 0.01986011303961277, + -0.024578260257840157, + 0.019393783062696457, + -0.006367442663758993, + -0.016348931938409805, + -0.0017050139140337706, + 0.014428755268454552, + 0.005534223280847073, + -0.00010517038754187524, + 0.0011118164984509349, + -0.01724044233560562, + -0.023919913917779922, + -0.020600751042366028, + -0.014085866510868073, + 0.0005571941146627069, + 0.0027019628323614597, + 0.006789195816963911, + 0.00174444611184299, + 0.0018738865619525313, + -3.3431646443204954e-5, + 0.0063125803135335445, + 0.005475932266563177, + 0.019736671820282936, + -0.02760939672589302, + -0.017075855284929276, + -0.016403794288635254, + 0.024825140833854675, + 0.008085315115749836, + 0.004371830727905035, + -0.0015550001990050077, + 0.03223153576254845, + 0.018913740292191505, + -0.0043306839652359486, + 0.012947476468980312, + 0.0032625857274979353, + -0.003353451145812869, + -0.006333153694868088, + -0.0029917038045823574, + 0.007036075461655855, + 0.006710331421345472, + 0.02514059841632843, + -0.02213689312338829, + 0.01380469836294651, + 0.006785766687244177, + -0.02058703638613224, + -0.0362364761531353, + 0.01017007790505886, + -0.014044719748198986, + -0.022754091769456863, + -0.01315320935100317, + -0.009450011886656284, + -0.006288578268140554, + -0.01773420162498951, + -0.0006484882324002683, + -0.008071599528193474, + 0.029570719227194786, + 0.004131808411329985, + -0.017418744042515755, + -0.014881368726491928, + -0.0038986443541944027, + 0.0019287487957626581, + 0.004783296957612038, + -0.004556990694254637, + 0.009936913847923279, + -0.018817730247974396, + 0.006168567109853029, + -0.0017221583984792233, + -0.0030157058499753475, + 0.006027983035892248, + -0.024989726021885872, + 0.03390483185648918, + -0.004587850533425808, + -0.02117680385708809, + -0.02179400436580181, + -0.004358115140348673, + -0.010951864533126354, + 0.01024551410228014, + -0.003528324421495199, + 0.002988274907693267, + 0.009600883349776268, + -0.01559457741677761, + -0.006244002841413021, + -0.01322178728878498, + 0.01647237129509449, + -0.013139493763446808, + 0.01225484162569046, + 0.011459339410066605, + 0.018762867897748947, + 6.171996210468933e-5, + -0.016678106039762497, + 0.035578127950429916, + -0.01029351819306612, + -0.005067894700914621, + -0.00141698750667274, + 0.008585932664573193, + 0.022027168422937393, + -1.0246478268527426e-5, + 0.007660132832825184, + -0.0016107195988297462, + -0.014010431244969368, + -0.004303252790123224, + 0.019599515944719315, + -0.01380469836294651, + -0.004364972934126854, + 0.0007642131531611085, + -0.0005721954512409866, + 0.004947883542627096, + 0.0024636550806462765, + -0.0126937385648489, + -0.004196957219392061, + -0.005712525453418493, + -0.026676738634705544, + -0.01681526005268097, + 0.008565358817577362, + 0.0003073139814659953, + 0.0009960916358977556, + -0.023618172854185104, + -0.013180640526115894, + 0.0054519297555089, + 0.007440684363245964, + 0.018872592598199844, + -0.007118368986994028, + 0.008729945868253708, + -0.025840090587735176, + 0.008099030703306198, + 0.0006201998912729323, + 0.006597178056836128, + -0.044685252010822296, + -0.03256070986390114, + -0.004594708327203989, + -0.012721169739961624, + 0.0038403531070798635, + 0.0016715823439881206, + 0.008181324228644371, + -0.0032574424985796213, + 0.013352084904909134, + -0.005054179113358259, + -0.014716781675815582, + 0.005270198918879032, + 0.006487453822046518, + -0.003974079620093107, + 0.010650122538208961, + 0.03692225366830826, + 0.004845017101615667, + -0.014456186443567276, + 0.019297774881124496, + -0.010965580120682716, + -0.007214377634227276, + 0.004279250744730234, + 0.00632286723703146, + 0.0026385283563286066, + 0.012467431835830212, + -0.016636958345770836, + -0.011754224076867104, + 0.009621456265449524, + 0.005414212122559547, + 0.016403794288635254, + 0.0018944599432870746, + -0.023865051567554474, + 0.012968049384653568, + 0.013640111312270164, + 0.016787828877568245, + -0.006837200373411179, + -0.0035111799370497465, + 0.0196680948138237, + -0.020902493968605995, + -0.0006947781657800078, + -0.015814024955034256, + -0.002012756420299411, + -0.02383762039244175, + -0.0034631756134331226, + -0.01441503968089819, + -0.012090254575014114, + 0.012741743586957455, + -0.010368953458964825, + -0.00012461860023904592, + -0.0006107704830355942, + 0.0011109593324363232, + 0.006000551860779524, + -0.019654378294944763, + -0.0020058988593518734, + 0.013489240780472755, + -0.005352492444217205, + 0.008318479172885418, + -0.00575367221608758, + -0.030887411907315254, + 0.007440684363245964, + -0.02209574542939663, + -0.03804692625999451, + -0.008195039816200733, + 0.012741743586957455, + -0.010279802605509758, + -0.00013169068552087992, + -0.019105756655335426, + 0.003168291412293911, + -0.00011251034447923303, + -0.020175570622086525, + 0.006329725030809641, + 0.012968049384653568, + 0.01681526005268097, + -0.0008837955538183451, + 0.030338790267705917, + 0.014003573916852474, + -0.008798523806035519, + -0.0137361204251647, + 0.030750256031751633, + 0.0003791062918026, + -0.013749836012721062, + -0.016060905531048775, + -0.010958721861243248, + -0.02567550353705883, + -0.0023385006934404373, + 0.002503087278455496, + 0.009731180965900421, + 0.0005100468988530338, + -0.006885204464197159, + -0.024687984958291054, + 0.0012472575763240457, + -0.0024019351694732904, + 0.0013046914245933294, + 0.01714443415403366, + 0.02209574542939663, + -0.006559460423886776, + 0.006645182613283396, + -0.00937457662075758, + 0.006538887042552233, + 0.006988071370869875, + 0.006106847431510687, + -0.016650674864649773, + -0.019448645412921906, + -0.008181324228644371, + -0.012151974253356457, + -0.005938831716775894, + 0.01680154539644718, + 0.011082162149250507, + -0.015855172649025917, + -0.025798944756388664, + 0.002218489767983556, + -0.012632018886506557, + 0.0016201490070670843, + -0.0041420953348279, + -0.029378701001405716, + -0.013406947255134583, + -0.00713208457455039, + -0.01599232852458954, + 0.00724180880934, + 0.012515436857938766, + 0.0009189416305162013, + 0.0006223429227247834, + -0.0050816102884709835, + 0.04441094025969505, + -0.006816626992076635, + 0.006837200373411179, + -0.010060354135930538, + 0.009820331819355488, + 0.007618986535817385, + 0.01288575679063797, + 0.002571664983406663, + 0.026868756860494614, + -0.014250453561544418, + 0.005592514295130968, + -0.00140755798202008, + -0.013598964549601078, + -0.004580992739647627, + 0.001478707417845726, + -4.1421221794735175e-6, + 0.014250453561544418, + -0.0021087653003633022, + -0.0026882472448050976, + -0.008366483263671398, + 0.022315194830298424, + -0.020271578803658485, + 0.01419559121131897, + 0.02544233947992325, + -0.02121795155107975, + -0.006158280652016401, + 0.016102051362395287, + -0.02418050915002823, + -0.015429990366101265, + -0.013283506967127323, + 0.0030157058499753475, + -0.01281717885285616, + -0.012371423654258251, + 0.007399537600576878, + 0.012213694863021374, + -0.0013544103130698204, + -0.00949115864932537, + 0.009463727474212646, + -0.0003756773949135095, + 0.00857221707701683, + -0.01208339724689722, + -0.0032094379421323538, + 0.009271710179746151, + 0.0004920452483929694, + -0.008345910347998142, + -0.008030452765524387, + -0.00195275095757097, + 0.007639559917151928, + 0.020806485787034035, + 0.01735016703605652, + -0.026265272870659828, + 0.03250584751367569, + 0.007516119629144669, + -0.011205601505935192, + -0.003600331023335457, + 0.005050749983638525, + -0.023673033341765404, + 0.010773561894893646, + 0.021519692614674568, + 0.0005156188271939754, + -0.006898920051753521, + 0.014538479968905449, + 0.0002616669225972146, + -0.01748732291162014, + 0.007982448674738407, + 0.01662324368953705, + -0.013016054406762123, + 0.003689482109621167, + -0.031655482947826385, + 0.0003285302082076669, + -0.008249901235103607, + 0.004186670761555433, + -0.03236868977546692, + -0.019064610823988914, + 0.020559605211019516, + -0.008805381134152412, + 0.01777534931898117, + 0.0011323898797854781, + -0.025250321254134178, + -0.0021224808879196644, + 0.009148269891738892, + -0.015292835421860218, + -0.009552878327667713, + -0.006027983035892248, + 0.00964202918112278, + 0.04177755489945412, + 0.016403794288635254, + 0.014401324093341827, + -0.010430673137307167, + -0.0003758917155209929, + 0.006706902291625738, + 0.004488412756472826, + 0.01177479699254036, + -0.005349063314497471, + 0.008565358817577362, + -0.016499802470207214, + -0.01593746617436409, + 0.001964752096682787, + -0.005571940913796425, + 0.004587850533425808, + 0.011287895031273365, + 0.022260332480072975, + 0.01584145613014698, + -0.0032831591088324785, + 0.011308468878269196, + -0.021766573190689087, + 0.007728710770606995, + -0.005400496535003185, + -0.010629548691213131, + -0.004563848488032818, + -0.01075298897922039, + -0.02029900997877121, + 0.0050918967463076115, + 0.00684405816718936, + -0.01825539395213127, + 0.01184337493032217, + 0.008009879849851131, + 0.01735016703605652, + -0.014127013273537159, + -0.0021550552919507027, + -0.01922919787466526, + -0.009402007795870304, + 0.006761764641851187, + 0.0032060090452432632, + 0.01482650637626648, + -0.021053364500403404, + 0.005678236484527588, + -0.01252229418605566, + -0.010526682250201702, + -0.027389947324991226, + -0.0014272740809246898, + 0.0060657006688416, + 0.01884516142308712, + 0.0269921962171793, + -0.0202029999345541, + 0.015718016773462296, + 0.01523797307163477, + 0.008140177465975285, + -0.040570586919784546, + -0.002033329801633954, + -0.002480799565091729, + -1.808202068787068e-5, + -0.01599232852458954, + 0.0060622720047831535, + 0.010190651752054691, + -0.015073386020958424, + -0.00213791080750525, + -0.008009879849851131, + -0.01995612122118473, + 0.006916064769029617, + 0.019544655457139015, + 0.0018858877010643482, + -0.01603347435593605, + -0.018241677433252335, + -0.007461257744580507, + -0.008085315115749836, + -0.014538479968905449, + -0.016993563622236252, + 0.014113297685980797, + -0.001810452202335, + -0.008105888031423092, + -0.014346462674438953, + 0.00023316430451814085, + 0.016156913712620735, + -0.0005623374017886817, + 0.0036860532127320766, + 0.011329041793942451, + -0.007474973332136869, + 0.026923619210720062, + 0.01332465372979641, + -0.04048829525709152, + 0.0047970125451684, + 0.006580033805221319, + 0.006490882486104965, + -0.005074752494692802, + 0.016115767881274223, + -0.031463466584682465, + 0.008469350636005402, + 0.013893849216401577, + 0.013928137719631195, + -0.008414488285779953, + -0.012913187965750694, + -0.006223429460078478, + 0.01676039770245552, + 0.0048690191470086575, + -0.014099582098424435, + -0.012707454152405262, + 0.013640111312270164, + -0.019215481355786324, + -0.0243725273758173, + -0.02563435770571232, + 0.007310386747121811, + -0.0031151436269283295, + 0.01825539395213127, + 0.0021859153639525175, + -0.027554534375667572, + -0.005959405098110437, + -0.00012365423026494682, + 0.026471005752682686, + 0.005911401007324457, + 0.003012276953086257, + -0.012638876214623451, + 0.0013338369317352772, + -0.011047872714698315, + -0.0013089774874970317, + 0.004526130389422178, + -0.014319031499326229, + 0.0040838043205440044, + 0.012481147423386574, + -0.013790982775390148, + 0.01700727827847004, + -0.0032745867501944304, + -0.01145248208194971, + 0.013242361135780811, + 0.003427172312512994, + -0.012481147423386574, + 0.005126185715198517, + 0.006950353272259235, + 0.00961459893733263, + 0.00460156612098217, + 0.001293547567911446, + 0.008016737177968025, + 0.009525447152554989, + 0.0012661163927987218, + -0.007756141945719719, + -0.012652591802179813, + 0.001779592246748507, + 0.008524212054908276, + 0.011377045884728432, + 0.013434378430247307, + -0.019695525988936424, + -0.0022424920462071896, + 0.007646417710930109, + 0.006103418301790953, + 0.006984642241150141, + 0.004066659603267908, + -0.008949394337832928, + 0.009854620322585106, + 0.009854620322585106, + -0.01097243744879961, + -0.0021156230941414833, + -0.012508578598499298, + 0.011658214963972569, + -0.0018464555032551289, + -0.014730497263371944, + -0.0010363809997215867, + 0.01097243744879961, + -0.010499251075088978, + 0.0024396530352532864, + -0.0057433852925896645, + -0.006682900246232748, + -0.016348931938409805, + 0.01390070654451847, + 0.0022099174093455076, + 0.004262106027454138, + 0.005575370043516159, + 0.0010740987490862608, + 0.01131532620638609, + 0.006706902291625738, + 0.008640795014798641, + 0.004135237541049719, + -0.013653826899826527, + -0.01073241513222456, + 0.0022682086564600468, + -0.006933209020644426, + -0.007831577211618423, + 0.010643264278769493, + -0.01293376088142395, + 0.001075813197530806, + -0.010979295708239079, + -0.019709240645170212, + -0.020765338093042374, + -0.014579626731574535, + 0.003049994818866253, + -0.016170630231499672, + -0.006405160296708345, + 0.0011761081404983997, + 0.016678106039762497, + -0.01681526005268097, + -0.015814024955034256, + 0.022548358887434006, + 0.027431095018982887, + -0.015772879123687744, + -0.007207519840449095, + -0.008585932664573193, + -0.023467300459742546, + 0.009724322706460953, + -0.005589085631072521, + -0.008853385224938393, + -0.002125909784808755, + -0.0063948738388717175, + 0.017459891736507416, + -0.0023350717965513468, + 0.0054519297555089, + 0.008428203873336315, + -0.001059525995515287, + -0.01271431241184473, + 0.010067211464047432, + -0.005211907904595137, + -0.013372658751904964, + 0.00471129035577178, + -0.00872308760881424, + 0.0034820344299077988, + -0.021286528557538986, + -0.009216847829520702, + 0.03118915483355522, + 0.0013989858562126756, + -0.011953099630773067, + -0.0016792973037809134, + 0.027485955506563187, + 0.029049528762698174, + 0.01053354050964117, + -0.019270343706011772, + -0.011836516670882702, + -0.008249901235103607, + -0.02054588869214058, + 0.021917443722486496, + 0.015964897349476814, + 0.0043306839652359486, + 0.0082841906696558, + 0.010355237871408463, + 0.009072834625840187, + -0.0055376519449055195, + -0.010012349113821983, + -0.022178038954734802, + 0.003936361987143755, + 0.0027311083395034075, + 0.019311489537358284, + -0.021190520375967026, + -0.0006373443175107241, + -0.008318479172885418, + -0.007228093221783638, + 0.002083048690110445, + -0.031134292483329773, + 0.0049856011755764484, + 0.02087506279349327, + 0.01632150076329708, + 0.016828976571559906, + 0.007516119629144669, + -0.012021676637232304, + 0.006226858589798212, + -0.0028425471391528845, + -0.009792900644242764, + 0.00695378240197897, + -0.020065845921635628, + -0.023316429927945137, + 0.007310386747121811, + -0.0018138810992240906, + -0.007749284151941538, + -0.023467300459742546, + 0.021053364500403404, + 0.013146352022886276, + 0.024742847308516502, + -0.002976273652166128, + 0.002809972735121846, + -0.008736803196370602, + -0.005918258335441351, + 0.0028751215431839228, + 0.015484852716326714, + -0.010416957549750805, + -0.0006296293577179313, + -0.00145041907671839, + -0.008462492376565933, + -0.017597047612071037, + 0.02383762039244175, + -0.010348380543291569, + -0.014442470856010914, + -0.007255524396896362, + 0.011130166240036488, + 0.020271578803658485, + 0.03288988023996353, + 0.013859560713171959, + 0.00534220552071929, + 0.015018523670732975, + -0.010410100221633911, + 0.010142646729946136, + -0.014799075201153755, + 0.017103286460042, + 0.004505557008087635, + 0.006357156205922365, + 0.009779185056686401, + 0.008956252597272396, + 0.006123991683125496, + -0.0007042076322250068, + -0.0029608437325805426, + -0.0212728139013052, + -0.011404477059841156, + -0.018474841490387917, + 0.011822802014648914, + -0.010965580120682716, + 0.03780004754662514, + 0.017171865329146385, + 0.012124544009566307, + -0.0047970125451684, + -0.01218626368790865, + 0.003005419159308076, + 0.0031974369194358587, + -0.008969968184828758, + -0.007447542157024145, + 0.024153077974915504, + -0.0052976300939917564, + -0.008064741268754005, + -0.01942121423780918, + -0.006161709316074848, + 0.008579074405133724, + 0.01162392646074295, + -0.021108226850628853, + -0.024482252076268196, + 0.0023264996707439423, + -0.03022906556725502, + -0.009484300389885902, + -0.037031978368759155, + 0.015032239258289337, + -0.008901390247046947, + -0.007783573120832443, + -0.019928690046072006, + 0.0057330988347530365, + -0.012213694863021374, + -0.0187080055475235, + 0.004244961775839329, + 0.02311069704592228, + -0.019064610823988914, + 0.014373892918229103, + -0.028994666412472725, + 0.0187080055475235, + 0.026141833513975143, + -0.01114388182759285, + 0.001357839209958911, + 0.02427651919424534, + -0.015265404246747494, + 0.008551643230021, + 0.025222891941666603, + -0.01733645237982273, + -0.0005919115501455963, + 0.011185028590261936, + -0.013585248962044716, + 0.005067894700914621, + -0.025936098769307137, + -0.0036037599202245474, + -0.008023595437407494, + -0.01545742154121399, + 0.0062851496040821075, + 0.0037923487834632397, + 0.01332465372979641, + -0.015731733292341232, + -0.016431225463747978, + 0.023124411702156067, + 0.014963662251830101, + 0.0486353300511837, + 0.022808954119682312, + 0.024633122608065605, + 0.008661367930471897, + 0.03711427003145218, + -0.021149372681975365, + 0.015059670433402061, + -0.005273628048598766, + -0.01951722428202629, + -0.007687564007937908, + -0.010478678159415722, + -0.0030414224602282047, + 0.02387876808643341, + 0.012007961049675941, + -0.009477443061769009, + -0.014044719748198986, + -0.01070498488843441, + -0.009738038294017315, + 0.0035488978028297424, + -0.008181324228644371, + -0.012625160627067089, + -0.005441643297672272, + -0.013400089927017689, + 0.016458656638860703, + 0.005698809865862131, + 0.007989306002855301, + -0.005150187760591507, + -0.019270343706011772, + -0.020861346274614334, + -0.0028905514627695084, + 0.03678509593009949, + -0.008771092630922794, + -0.010917575098574162, + -0.007790430914610624, + -0.00661089364439249, + 0.010677553713321686, + 0.01027294434607029, + 0.006422305013984442, + 0.002194487489759922, + -0.01612948253750801, + -0.015292835421860218, + -0.013598964549601078, + 0.008688799105584621, + -0.016294069588184357, + -0.0030105626210570335, + -0.014661920256912708, + 0.013962427154183388, + -0.01651351898908615, + 0.015169395133852959, + -0.00416609738022089, + -0.006916064769029617, + 0.0007179231615737081, + -0.025346331298351288, + -0.010115215554833412, + 0.0003248870198149234, + 0.009271710179746151, + 0.019585801288485527, + -0.022178038954734802, + -0.02199973724782467, + -0.012728027999401093, + -0.010718700475990772, + 0.023919913917779922, + 0.013880133628845215, + 0.0041180928237736225, + -0.02291867882013321, + 0.0299821849912405, + 0.0024516540579497814, + -0.004677001386880875, + -0.007317244540899992, + -0.02286381646990776, + 0.01773420162498951, + -0.00944315455853939, + -0.02349473163485527, + -0.01767933927476406, + -0.0001362982438877225, + 0.0007933586603030562, + -0.026951050385832787, + 0.009004256688058376, + -0.014497333206236362, + 0.010650122538208961, + -0.001639865105971694, + 0.0006180568598210812, + -0.0065011694096028805, + -0.006772051565349102, + -0.010046638548374176, + 0.0019458932802081108, + -0.011548490263521671, + 0.003950077574700117, + -0.011157597415149212, + 0.0033174478448927402, + -0.01894116960465908, + -0.022356342524290085, + -0.014908799901604652, + 0.011301610618829727, + 0.015910034999251366, + -0.027047058567404747, + -0.013029769994318485, + -0.0017427316633984447, + -0.00348889222368598, + -0.004450695123523474, + -0.009408865123987198, + 0.012563440948724747, + 0.003070568200200796, + 0.026429859921336174, + 0.0009309427696280181, + -0.025072019547224045, + 0.007090937811881304, + 0.01184337493032217, + 0.005959405098110437, + 0.02470169961452484, + -0.01767933927476406, + -0.013214929960668087, + 0.011404477059841156, + 0.009923198260366917, + -0.02877521701157093, + 0.023096980527043343, + 4.971885937266052e-5, + -0.0007552123279310763, + -0.02674531750380993, + 0.023865051567554474, + -0.008387057110667229, + 0.005239339079707861, + 0.0310519989579916, + -0.0029471281450241804, + 0.0032454412430524826, + -0.008195039816200733, + 0.006960640195757151, + 0.020957356318831444, + -0.006988071370869875, + 0.00045389888691715896, + 0.021259097382426262, + -0.008640795014798641, + -0.006316009443253279, + 0.022082030773162842, + -0.010773561894893646, + -0.004543275106698275, + 0.019969835877418518, + -0.01281032059341669, + 0.004989030305296183, + 0.003963793162256479, + -0.005746814422309399, + 0.01777534931898117, + 0.015718016773462296, + 0.0029179826378822327, + -0.013256075792014599, + -0.00735153304412961, + -0.00617542490363121, + 0.017953651025891304, + 0.004683859180659056, + -0.005901114083826542, + -0.00661089364439249, + -0.009257994592189789, + -0.004450695123523474, + -0.0007865009247325361, + -0.0014247024664655328, + 0.014579626731574535, + 0.007207519840449095, + 0.025798944756388664, + -0.014949946664273739, + 0.0015935751143842936, + -0.009196273982524872, + 0.019969835877418518, + 0.008921963162720203, + 0.030777687206864357, + 0.0012258270289748907, + 0.005811963230371475, + 0.0017624477623030543, + 0.016774114221334457, + -0.018584566190838814, + -0.0031717203091830015, + 0.004279250744730234, + -0.006919493433088064, + -0.002443081932142377, + -0.014771644026041031, + -0.017555899918079376, + 0.0024790852330625057, + -0.015635723248124123, + -0.014524764381349087, + -0.03017420321702957, + -0.008599648252129555, + 0.017720486968755722, + 0.019544655457139015, + 0.027019627392292023, + 0.002497944049537182, + 0.00724180880934, + -0.013002338819205761, + -0.013468666933476925, + 0.0018018799601122737, + 0.00126525922678411, + 0.008681940846145153, + 0.007989306002855301, + 0.0033945979084819555, + -0.004673572722822428, + 0.014319031499326229, + -0.014387608505785465, + -2.377450800850056e-5, + 0.018090806901454926, + 0.011411335319280624, + 0.005907971877604723, + 0.004035799764096737, + 0.010286659933626652, + -0.03467290475964546, + -0.002995132701471448, + -0.028308888897299767 + ], + "3ceb959b-c18c-4b87-9ad6-57cd094ea347": [ + -0.020157933235168457, + -0.018874071538448334, + -0.011402533389627934, + -0.012527566403150558, + -0.04423362389206886, + -0.020157933235168457, + 0.014850427396595478, + 0.04952789470553398, + -0.007431831210851669, + 0.04759548604488373, + -0.013050375506281853, + 0.03298330307006836, + -0.043889496475458145, + 0.007200207095593214, + -0.01921819895505905, + 0.0013665833976119757, + -0.035815734416246414, + 0.020131461322307587, + -0.011151055805385113, + 0.0022302111610770226, + 0.07258444279432297, + -0.02206386998295784, + -0.006948729045689106, + 0.010926049202680588, + -0.047886669635772705, + -0.025227196514606476, + 0.015221025794744492, + -0.004913744051009417, + -0.020793244242668152, + -0.024102164432406425, + -0.004556381143629551, + 0.025094838812947273, + 0.026974305510520935, + -0.010237794369459152, + 0.008027437143027782, + -0.0188608355820179, + 3.431710638324148e-6, + 0.0413217768073082, + -0.013507005758583546, + 0.015856338664889336, + -0.03300977125763893, + 0.019522620365023613, + 0.02091236598789692, + 0.00597259821370244, + -0.025293374434113503, + 0.03915112465620041, + 0.04187767580151558, + -0.00780243007466197, + -0.004212253261357546, + -0.005982525181025267, + 0.01646517962217331, + 0.03478335216641426, + -0.021944748237729073, + 0.009939991869032383, + 0.000603050459176302, + -0.01736520603299141, + 0.007994347251951694, + 0.08343769609928131, + 0.02718607522547245, + -0.030442051589488983, + 0.005380301736295223, + -0.010297355242073536, + 0.011640775948762894, + -0.014572477899491787, + -0.012276087887585163, + -0.025174252688884735, + 0.02524043247103691, + 0.004390934947878122, + -0.022182991728186607, + 0.005840241443365812, + -0.013315089046955109, + 0.01641223579645157, + -0.03473041206598282, + -0.0023923481348901987, + -0.028324343264102936, + -0.006597983650863171, + 0.023691857233643532, + -0.046139560639858246, + -0.0028737958054989576, + 0.014784248545765877, + 0.003603412536904216, + 0.007180353626608849, + 0.017974046990275383, + 0.003474364522844553, + 0.046483688056468964, + 0.02845670096576214, + -0.03480982407927513, + -0.050136737525463104, + -0.09482037276029587, + -0.02346685156226158, + 0.021600620821118355, + 0.016200466081500053, + -0.0051122792065143585, + -0.0013690651394426823, + -0.011587833054363728, + 0.006981818471103907, + 0.04621897637844086, + 0.0262860506772995, + -0.036345161497592926, + -0.03605397790670395, + -0.014559241943061352, + 0.04328065738081932, + -0.04778078570961952, + -0.01384451612830162, + -0.0004409134271554649, + -0.00915908720344305, + 0.0045365276746451855, + -0.0012284360127523541, + -0.029594969004392624, + 0.022580061107873917, + 0.018185816705226898, + -0.02378450706601143, + 0.0033519347198307514, + 0.024194814264774323, + 0.017524033784866333, + -0.06924904882907867, + -0.00024610082618892193, + -0.03909818455576897, + 0.01277904398739338, + -0.05791931226849556, + 0.037218715995550156, + 0.039839379489421844, + 0.025055132806301117, + -0.03113030642271042, + 0.023308023810386658, + -0.0158431027084589, + -0.006300181150436401, + -0.01082016434520483, + 0.010310590267181396, + 0.002081309910863638, + 0.017418147996068, + -0.009212029166519642, + -0.016279879957437515, + 0.03255975991487503, + 0.007325945887714624, + 0.008225971832871437, + 0.025690443813800812, + 0.04092470556497574, + -0.04600720480084419, + 0.05670163035392761, + -0.01058192178606987, + -0.0059031108394265175, + 0.005254562944173813, + -0.004754916299134493, + 0.002453563269227743, + 0.011594451032578945, + -0.04502776637673378, + 0.017007842659950256, + 0.0016668677562847733, + 0.026669884100556374, + -0.02555808797478676, + -0.0004607669252436608, + 0.04621897637844086, + -0.002319552004337311, + 0.0005170185468159616, + 0.023268315941095352, + 0.022593297064304352, + 0.03311565890908241, + 0.003540542908012867, + -0.003907832782715559, + -0.01377833727747202, + -0.03560396656394005, + 0.019654976204037666, + -0.010528978891670704, + -0.010813546366989613, + 0.010978992097079754, + 0.04844256862998009, + -0.009377475827932358, + -0.05924288183450699, + 0.024141870439052582, + 0.034068625420331955, + -0.021957984194159508, + 0.005122206173837185, + -0.001268143067136407, + -0.024181578308343887, + -0.009172322228550911, + 0.016928428784012794, + 0.0032162689603865147, + 0.033645085990428925, + -0.04846904054284096, + 0.0073524173349142075, + -0.019072607159614563, + -0.03401568531990051, + 0.005611926317214966, + -0.00900687649846077, + 0.03443922474980354, + 0.010257648304104805, + 0.017722567543387413, + -0.03462452441453934, + 0.022778596729040146, + 0.009145851247012615, + 0.019747626036405563, + 0.0047714607790112495, + 0.04423362389206886, + -0.032692115753889084, + -0.010568685829639435, + -0.01913878507912159, + -0.013645980507135391, + 0.020171169191598892, + 0.01281875092536211, + -0.02805962972342968, + -0.04105706140398979, + -0.08116115629673004, + 0.011786368675529957, + -0.036768704652786255, + 0.020819716155529022, + 0.02653752826154232, + -0.012441534548997879, + 0.01778874732553959, + -0.017007842659950256, + 0.04553072154521942, + 0.003699371125549078, + 0.007861990481615067, + 0.01564456708729267, + -0.02940966933965683, + -0.008225971832871437, + -0.01100546307861805, + 0.02436687797307968, + 0.009774546138942242, + -0.01290478277951479, + -0.02625957876443863, + 0.019006429240107536, + 0.029727324843406677, + -0.023691857233643532, + -0.03928348422050476, + -0.03404215723276138, + -0.025769859552383423, + 0.013950400985777378, + -0.023546265438199043, + -0.01586957462131977, + 0.026616942137479782, + -0.005456407088786364, + -0.0038482723757624626, + -0.022831538692116737, + -0.005294269882142544, + 0.0011109694605693221, + -0.012752573005855083, + -0.006770047824829817, + 0.023850684985518456, + -0.007888462394475937, + 0.05127500370144844, + 0.030892064794898033, + 0.009059819392859936, + 0.0028191986493766308, + 0.037245187908411026, + 0.028668470680713654, + -0.0075112455524504185, + 0.05294270068407059, + 0.02119031548500061, + -0.01124370563775301, + -0.00300780707038939, + 0.023652151226997375, + 0.015260732732713223, + -0.022818302735686302, + 0.014863662421703339, + 0.026272814720869064, + 0.02209034189581871, + -0.007597277406603098, + -0.034492168575525284, + -0.007928169332444668, + -0.005238018464297056, + -0.004261887166649103, + 0.021719742566347122, + -0.03973349556326866, + 0.05585454776883125, + -0.008120086044073105, + 0.007266385480761528, + -0.03155384957790375, + -0.01941673457622528, + 0.005618543829768896, + -0.06252532452344894, + 0.015459268353879452, + 0.023943334817886353, + 0.006296872161328793, + -0.025425730273127556, + -0.008762016892433167, + 0.0037787852343171835, + 0.011415769346058369, + -0.00021921585721429437, + 0.008973787538707256, + -0.013738630339503288, + 0.01447982806712389, + 0.023321259766817093, + 0.05222797393798828, + -0.011164291761815548, + -0.024843361228704453, + 0.009357621893286705, + 0.008153175935149193, + -0.031368549913167953, + -0.022249169647693634, + 0.0025611030869185925, + -0.0027083498425781727, + 0.013976872898638248, + 0.0019257906824350357, + 0.018821129575371742, + -0.006386213004589081, + 0.0010059112682938576, + -0.018397588282823563, + 0.0068626971915364265, + 0.013460680842399597, + 0.0006977682351134717, + -0.003705988870933652, + 0.030997950583696365, + -0.025968393310904503, + 0.009999551810324192, + 0.006869315169751644, + 0.026047807186841965, + 0.0019357174169272184, + -0.05834285542368889, + 0.010138526558876038, + 0.049183767288923264, + 0.011766514740884304, + -0.014175407588481903, + -0.020806480199098587, + -0.01939026266336441, + 0.02001233957707882, + 0.021282965317368507, + 0.0123555026948452, + -0.011984903365373611, + -0.04100412130355835, + 0.0026421714574098587, + -0.006124808453023434, + -0.053207412362098694, + 0.012745955027639866, + 0.018199052661657333, + -0.02383745089173317, + 0.010489271953701973, + 0.020899130031466484, + 0.00133845757227391, + -0.01181945763528347, + -0.011726807802915573, + -0.012110642157495022, + -0.0069288755767047405, + -0.022699182853102684, + 0.00019470918050501496, + -0.01406952179968357, + -0.026471350342035294, + -0.03338037058711052, + -0.010787074454128742, + 0.0049964673817157745, + -0.009662042371928692, + 0.042142387479543686, + -0.02316243015229702, + 0.017325498163700104, + 0.006614528596401215, + -0.004457113333046436, + 0.019324084743857384, + 0.016782835125923157, + -0.006114881951361895, + -0.02054176665842533, + 0.000617940560914576, + -0.013976872898638248, + 0.06024879217147827, + -0.001702438690699637, + 0.018079930916428566, + 0.012011375278234482, + -0.016306351870298386, + -0.01381804421544075, + -0.0035802500788122416, + 0.026524292305111885, + -0.01851670816540718, + -0.03240093216300011, + -0.02890671417117119, + -0.004500129260122776, + -0.005959362722933292, + 0.03462452441453934, + 0.016822542995214462, + 0.006234002765268087, + 0.010164998471736908, + 0.014215114526450634, + -0.03703341633081436, + 0.043915968388319016, + 0.020369702950119972, + 0.01846376620233059, + -0.05622514709830284, + -0.0031500905752182007, + 0.03870111331343651, + 0.002680224133655429, + -0.029568497091531754, + 0.035921622067689896, + -0.017457855865359306, + 0.01451953500509262, + 0.018424058333039284, + 0.0011035243514925241, + 0.043942440301179886, + 0.009251737035810947, + 0.004285049624741077, + -0.016928428784012794, + -0.028244929388165474, + -0.02895965613424778, + -0.04817785695195198, + -0.014638655818998814, + -0.04280417039990425, + -0.018927015364170074, + -0.04529247805476189, + 0.025478674098849297, + -0.01124370563775301, + 0.006710486952215433, + 0.008272296749055386, + -0.011799603700637817, + 0.007683309260755777, + -0.005625161807984114, + -0.019999103620648384, + 0.006730340421199799, + 0.01073413249105215, + -0.001154812634922564, + 0.012461387552320957, + 0.008755398914217949, + 0.006445773411542177, + 8.649720257380977e-5, + -0.0024254373274743557, + -0.023758037015795708, + 0.012845221906900406, + -0.015088669024407864, + 0.04153354838490486, + -0.0011192417005077004, + 0.027874331921339035, + -0.0033701336942613125, + -0.04783372953534126, + -0.0064193024300038815, + 0.048760224133729935, + 0.05940170958638191, + -0.013553330674767494, + 0.010145144537091255, + -0.014572477899491787, + 0.016187230125069618, + 0.026206636801362038, + 0.028694942593574524, + -0.013659216463565826, + 0.008477449417114258, + -0.0343862846493721, + -0.0006890823133289814, + -0.025597795844078064, + -0.034518640488386154, + 0.015128375962376595, + -0.003361861454322934, + 0.030997950583696365, + -0.013467298820614815, + -0.010436329990625381, + -0.0026752606499940157, + 0.017179906368255615, + 0.011799603700637817, + 0.033565670251846313, + -0.005883257370442152, + -0.018146110698580742, + -0.026828711852431297, + -0.02583603747189045, + 0.009807635098695755, + 0.026841947808861732, + 0.012772426009178162, + 0.012547419406473637, + 0.04915729537606239, + -0.047886669635772705, + 0.005297578871250153, + -0.01401657983660698, + 0.034942179918289185, + -0.01676959916949272, + 0.010237794369459152, + 0.030230281874537468, + 0.008398035541176796, + -0.037192247807979584, + -0.005221473518759012, + 0.027397846803069115, + -0.01537985447794199, + -0.004301594104617834, + -0.04754254221916199, + -0.022672710940241814, + 0.018331410363316536, + -0.009059819392859936, + -0.020197639241814613, + -0.008391417562961578, + 0.013831280171871185, + -0.011203998699784279, + -0.011058405973017216, + -0.01380480919033289, + 0.0247110053896904, + 0.016054874286055565, + 0.023599207401275635, + 0.03605397790670395, + -0.01874171569943428, + -0.010052494704723358, + -0.021507970988750458, + -0.041586488485336304, + -0.010866489261388779, + 0.06665486097335815, + -0.006025541108101606, + -0.03134207800030708, + 0.009298061951994896, + 0.024433055892586708, + -0.003805256448686123, + 0.0730079784989357, + -0.003251012647524476, + -0.00017785438103601336, + -0.021097665652632713, + -0.00911938026547432, + -0.0485219843685627, + 0.0067204139195382595, + -0.023903628811240196, + -0.028721414506435394, + -0.047436658293008804, + 0.03732460364699364, + -0.018146110698580742, + 0.026444878429174423, + 0.021799156442284584, + 0.007828901521861553, + -0.0014757777098566294, + -0.023294787853956223, + 0.027477260679006577, + 0.017709333449602127, + -0.018622593954205513, + -0.00824582576751709, + 0.008523774333298206, + -0.017656389623880386, + 9.916415729094297e-5, + -0.017576975747942924, + 0.02676253393292427, + -0.004351228009909391, + 0.02021087519824505, + -0.012891546823084354, + -0.021282965317368507, + 0.003871434833854437, + 0.01103193499147892, + -0.0019638431258499622, + 0.01384451612830162, + 0.02186533436179161, + 0.003917759750038385, + -0.012600362300872803, + 0.01315626036375761, + 0.02051529660820961, + -0.004649030975997448, + 0.010760603472590446, + -0.01256727334111929, + -0.0017371822614222765, + 0.008437742479145527, + 0.011859164573252201, + -0.007365652825683355, + 0.004122912883758545, + 0.001114278333261609, + -0.003765549510717392, + 0.03658340498805046, + 0.0007887635147199035, + 0.028774356469511986, + -0.01070766057819128, + -0.02636546455323696, + 0.019985869526863098, + 0.03290388733148575, + -0.04685428738594055, + 0.027874331921339035, + 0.008742162957787514, + 0.028827300295233727, + -0.018582887947559357, + 0.012772426009178162, + 0.002820853143930435, + 0.012468005530536175, + 0.023824214935302734, + -0.03864816948771477, + 0.008173028938472271, + -0.010449565015733242, + -0.03523336723446846, + 0.015538682229816914, + 0.012911400757730007, + -0.010548832826316357, + 0.007332563865929842, + 0.005522585473954678, + -0.04468363896012306, + -0.0021359070669859648, + -0.030494995415210724, + 0.01964174211025238, + -0.00866936706006527, + 0.022897716611623764, + 0.025094838812947273, + 0.0051950025372207165, + 0.026206636801362038, + -0.015115140937268734, + -0.026603706181049347, + 0.02406245656311512, + 0.013950400985777378, + 0.016809307038784027, + -0.02011822536587715, + 0.010926049202680588, + 0.032347988337278366, + -0.04232768714427948, + 0.0023840758949518204, + -0.03200386092066765, + 0.0033552434761077166, + 0.018357880413532257, + -0.05408096686005592, + -0.04103059321641922, + -0.006012305151671171, + 0.02546543814241886, + -0.02093883790075779, + 0.02378450706601143, + 0.03131560608744621, + -0.004900508560240269, + -0.02338743768632412, + 0.025743387639522552, + 0.0014956312952563167, + 0.023241844028234482, + -0.0025892287958413363, + -0.01666371524333954, + -0.017259320244193077, + 0.006111572962254286, + 0.014043050818145275, + -0.03780108690261841, + 0.003070676466450095, + 0.016584301367402077, + -0.002562757581472397, + -0.004589470103383064, + -0.013169496320188046, + 0.001158121507614851, + 0.011051787994801998, + 0.00505933677777648, + 0.013857751153409481, + -0.01711372658610344, + 0.04140118882060051, + 0.017484325915575027, + 0.03250681608915329, + 0.03306271508336067, + 0.011402533389627934, + -0.019999103620648384, + 0.02766256034374237, + -0.056860458105802536, + 0.06803137063980103, + -0.008126704022288322, + 0.01894025132060051, + -0.022275639697909355, + -0.029965568333864212, + -0.024644825607538223, + -0.015101904980838299, + 0.004625868517905474, + 0.021230021491646767, + 0.004258578177541494, + 0.010727514512836933, + -0.03345978632569313, + 0.021997692063450813, + 0.012501094490289688, + 0.0028407066129148006, + 0.027477260679006577, + -0.010840017348527908, + 0.0074715386144816875, + -0.01315626036375761, + -0.0026223179884254932, + 0.0007027316023595631, + 0.012719483114778996, + -0.023480087518692017, + -0.008934080600738525, + -0.04367772489786148, + 0.015578389167785645, + 0.026418406516313553, + 0.0009719948866404593, + -0.035895150154829025, + -0.008100233040750027, + 0.03465099632740021, + 0.009317914955317974, + -0.0039541576988995075, + -0.031924448907375336, + -0.016425471752882004, + 0.023850684985518456, + 0.017484325915575027, + -0.025955157354474068, + 0.007319327909499407, + 0.004381008446216583, + -0.001015010755509138, + 0.017709333449602127, + 0.00514205964282155, + 0.015631331130862236, + 0.0009554502903483808, + 0.0022814993280917406, + 0.0018265231046825647, + 0.023294787853956223, + 0.005333976820111275, + 0.01691519282758236, + 0.033671557903289795, + 0.013381266966462135, + -0.00502293836325407, + -0.022368289530277252, + 0.018953485414385796, + -0.017404912039637566, + 0.020952073857188225, + -0.009648807346820831, + -0.01688872091472149, + -0.005740974098443985, + -0.027980215847492218, + 0.005069263279438019, + 0.03248034417629242, + -0.020250583067536354, + -0.0001741318410495296, + 0.03698047623038292, + -0.021997692063450813, + -0.0016263335710391402, + 0.01260698027908802, + 0.019681448116898537, + -0.03311565890908241, + 0.0231359601020813, + 0.005360448267310858, + 0.006664162036031485, + -0.010151762515306473, + 0.003997173625975847, + 0.02690812759101391, + -0.040712933987379074, + -0.0009446963085792959, + -0.021732978522777557, + -0.01003264170140028, + -0.01646517962217331, + -0.010634864680469036, + 0.03470394015312195, + -0.025346316397190094, + -0.008695838041603565, + 0.010264265350997448, + -0.015856338664889336, + 0.013195967301726341, + 0.0022930805571377277, + -0.009304678998887539, + 0.009880430996418, + 0.0012921327725052834, + -0.002026712754741311, + -0.007484774105250835, + 0.011177527718245983, + -0.00019295132369734347, + 0.02535955235362053, + -0.03173914924263954, + 0.048283740878105164, + 0.012653305195271969, + -0.03380391374230385, + -0.04997790604829788, + 0.021799156442284584, + -0.0030988024082034826, + 0.002585920039564371, + 0.006842843722552061, + 0.0007234123186208308, + 0.04193061590194702, + -9.270142618333921e-5, + -0.023281551897525787, + 0.018199052661657333, + -0.02501542493700981, + -0.017471089959144592, + -0.03308918699622154, + 0.012077553197741508, + 0.033618614077568054, + -0.011448858305811882, + -0.0034478933084756136, + -0.018582887947559357, + 0.02893318422138691, + -0.000694872927851975, + 0.03195091709494591, + 0.0011481947731226683, + -0.00584685942158103, + -0.02054176665842533, + 0.02723901905119419, + 0.012408444657921791, + 0.04328065738081932, + -0.027080191299319267, + 0.06496068835258484, + 0.0343862846493721, + -0.01612105220556259, + -0.00913261529058218, + -0.012295941822230816, + 0.003801947459578514, + -0.018781421706080437, + 0.03703341633081436, + -0.008973787538707256, + 0.001331012579612434, + 0.01447982806712389, + -0.020753538236021996, + 0.014876898378133774, + 0.0142680574208498, + -0.02563750185072422, + 0.025227196514606476, + 0.03658340498805046, + -0.03134207800030708, + 0.01649165153503418, + -0.015631331130862236, + 0.011309884488582611, + 0.03470394015312195, + -0.014532770961523056, + -0.013619509525597095, + 0.0402364507317543, + 0.01160768698900938, + -0.024194814264774323, + -0.009801017120480537, + -0.019879983738064766, + -0.029065541923046112, + -0.011554744094610214, + -0.0384363979101181, + 0.019456442445516586, + -0.006809754762798548, + 0.03253328800201416, + 0.029303783550858498, + -0.00767669128254056, + 0.006081792525947094, + 0.013963636942207813, + 0.014876898378133774, + -0.01239520963281393, + 0.02099177986383438, + -0.006012305151671171, + -0.003606721293181181, + 0.017007842659950256, + -0.02948908321559429, + -0.004149383865296841, + 0.0028919950127601624, + -0.0011341319186612964, + -0.04783372953534126, + 0.03401568531990051, + 0.05169854685664177, + -0.011111348867416382, + -0.013553330674767494, + 0.014665127731859684, + 0.005529202986508608, + 0.017378440126776695, + 0.002125980332493782, + -0.03383038565516472, + 0.006210840307176113, + 0.0008462559781037271, + 0.025399260222911835, + 0.003947540186345577, + 0.007875226438045502, + 0.0008392244926653802, + -0.035074539482593536, + 0.016822542995214462, + -0.0370863601565361, + 0.012825368903577328, + 0.002271572593599558, + 0.03242740407586098, + 0.023771271109580994, + -0.006647617556154728, + -0.021322671324014664, + -0.014625420793890953, + -0.006809754762798548, + 0.02166679874062538, + 0.004850874654948711, + -0.012679776176810265, + -0.023652151226997375, + -0.012739337049424648, + 0.010085584595799446, + 0.009516450576484203, + 0.0435718409717083, + -0.03285094350576401, + -0.009827488102018833, + -0.03510100767016411, + 0.008053908124566078, + 0.005651633255183697, + -0.02453894168138504, + -0.019919689744710922, + 0.0024105473421514034, + -0.0036464284639805555, + 0.004711900372058153, + 0.0038151831831783056, + 0.004467040300369263, + 0.03923054039478302, + 0.012838604860007763, + -0.005860094912350178, + -0.017100492492318153, + -0.01786816120147705, + -0.012673158198595047, + -0.050507333129644394, + 0.03441275283694267, + -0.008305385708808899, + 0.020832952111959457, + 0.01473130565136671, + 0.0017454546177759767, + -0.007206825073808432, + -0.00011901766993105412, + -0.014625420793890953, + -0.01721961237490177, + -6.411029607988894e-5, + -0.0023807669058442116, + -0.018622593954205513, + 0.022871246561408043, + -0.014043050818145275, + 0.021044723689556122, + 0.004003791604191065, + 0.0006473071989603341, + 0.011528273113071918, + -0.018781421706080437, + -0.045742493122816086, + -0.016134288161993027, + -0.007180353626608849, + 0.0056781042367219925, + -0.030547937378287315, + -0.0027083498425781727, + 0.003560396609827876, + 0.03510100767016411, + 0.025293374434113503, + -0.0045199827291071415, + -0.06459008902311325, + 0.002685187617316842, + -0.005631779786199331, + 0.001643705298192799, + -0.01245476957410574, + -0.021269729360938072, + -0.004592779092490673, + -0.0020895821508020163, + -0.0017289100214838982, + -0.03835698589682579, + 0.009463507682085037, + -0.05484863743185997, + -0.020621180534362793, + -0.01518131885677576, + -0.007775959093123674, + -0.00982087105512619, + -0.012401827611029148, + -0.029515555128455162, + -0.013884223066270351, + 0.010634864680469036, + -0.01158121507614851, + -0.03390979766845703, + 0.007597277406603098, + 0.039071712642908096, + -0.009271590039134026, + 0.047039587050676346, + 0.023983042687177658, + 0.022897716611623764, + -0.026696356013417244, + -0.025280138477683067, + 0.04645721986889839, + 0.0247110053896904, + 0.008887755684554577, + -0.012388591654598713, + -0.006018923129886389, + 0.0061942958272993565, + 0.00849730335175991, + -0.0009835760574787855, + 0.017087256535887718, + 0.005234709475189447, + -0.012918018735945225, + -0.00815979391336441, + 0.002685187617316842, + 0.00410967692732811, + 0.008232589811086655, + 0.011488565243780613, + 0.003762240521609783, + 0.02096530795097351, + 0.03128913417458534, + -0.022606533020734787, + 0.012858457863330841, + -0.02848317287862301, + -0.013010668568313122, + 0.0004777251451741904, + -0.04291005805134773, + -0.014784248545765877, + -0.021997692063450813, + 0.013507005758583546, + 0.016147522255778313, + -0.022407997399568558, + 0.01011867355555296, + -0.018371116369962692, + -0.022130047902464867, + 0.03028322383761406, + 0.03555102273821831, + 0.007438449189066887, + 0.024869833141565323, + 0.04129530489444733, + 0.01686224900186062, + 0.005697958171367645, + 0.026378700509667397, + 0.019549092277884483, + -0.013248910196125507, + 0.02465806156396866, + 0.013593037612736225, + -0.013738630339503288, + 0.0038416546303778887, + 0.0017289100214838982, + -0.02144179306924343, + 0.00506595429033041, + -0.04150707647204399, + -0.0006402757717296481, + -0.03928348422050476, + 0.0206608884036541, + 0.02138885110616684, + 0.0019390264060348272, + 0.005532511975616217, + -0.008907608687877655, + 0.0007064541568979621, + -0.014744541607797146, + -0.0052446359768509865, + -0.004923671018332243, + -0.02850964292883873, + 0.0043115210719406605, + -0.01090619619935751, + -0.0074053602293133736, + 0.01756373979151249, + 0.010932667180895805, + -0.008424506522715092, + -0.0022087031975388527, + -0.017034312710165977, + -0.013189350254833698, + 0.0019390264060348272, + -0.011759896762669086, + 0.0126930121332407, + -0.012653305195271969, + 0.004265196155756712, + -0.04378361254930496, + 0.0014095993246883154, + -0.03131560608744621, + -0.009595864452421665, + -0.019152021035552025, + -0.030230281874537468, + -0.012593744322657585, + 0.007723016198724508, + -0.00539684621617198, + -0.009562774561345577, + -0.007756105624139309, + -0.03340684249997139, + 0.04365125671029091, + -0.00052942696493119, + 0.01169371884316206, + -0.008563481271266937, + -0.005052718799561262, + 0.012745955027639866, + 0.017854925245046616, + 0.009271590039134026, + -0.004106367938220501, + 0.0004442223289515823, + -0.018596123903989792, + 0.03118325024843216, + 0.005267798434942961, + 0.004592779092490673, + -0.04230121523141861, + -0.02903907001018524, + 0.03531277924776077, + -0.023797743022441864, + -0.030945006757974625, + -0.0005137096159160137, + 0.0003927272919099778, + -0.011091495864093304, + -0.004463731311261654, + -0.0006195949972607195, + 0.014850427396595478, + 0.024578647688031197, + 0.024618355557322502, + -0.02858905680477619, + 0.02436687797307968, + 0.02501542493700981, + 0.004324756562709808, + 0.00925835408270359, + -0.012679776176810265, + 0.015035726130008698, + -0.04463069513440132, + -0.009589246474206448, + 0.0016850668471306562, + 0.024472761899232864, + -0.008934080600738525, + -0.003977320156991482, + 0.004096441436558962, + 0.00845759641379118, + -0.01719314232468605, + 0.0018563034245744348, + 0.024049220606684685, + -0.011687100864946842, + 0.03126266226172447, + 0.01567103900015354, + -0.01676959916949272, + 0.02246093936264515, + 0.002051529474556446, + -0.0054299356415867805, + 0.01786816120147705, + -0.004463731311261654, + -0.00973483920097351, + -0.009628953412175179, + 0.039971739053726196, + -0.0013144679833203554, + 0.010859871283173561, + 0.020925601944327354, + -0.008768634870648384, + 0.037271659821271896, + -0.017272556200623512, + -0.019602034240961075, + 0.03176562115550041, + 0.00779581256210804, + -0.012110642157495022, + 0.009443653747439384, + 0.010462800972163677, + 0.011879018507897854, + 0.019549092277884483, + 0.015154847875237465, + 0.012653305195271969, + -0.012309177778661251, + 0.013149642385542393, + 0.0071538821794092655, + 0.0009546230430714786, + 0.0018662301590666175, + 0.007392124272882938, + -0.002554485108703375, + 0.013447445817291737, + -0.010072348639369011, + -0.010873107239603996, + 0.024975718930363655, + -0.0015601551858708262, + -0.0009107798687182367, + 0.030521465465426445, + -0.01657106541097164, + 0.03525983914732933, + -0.0049799224361777306, + -0.010899578221142292, + -0.003930995240807533, + 0.00419239979237318, + -0.0005124688032083213, + 0.04931612312793732, + 0.006869315169751644, + -0.0018281775992363691, + 0.005572218913584948, + -0.01581663079559803, + -0.011468712240457535, + 0.004248651675879955, + 0.024221284314990044, + 0.01277904398739338, + 0.008616424165666103, + -0.029277311637997627, + 0.009357621893286705, + 0.02191827818751335, + 0.023731565102934837, + 0.003386678174138069, + -0.002331133233383298, + 0.025041896849870682, + -0.010105437599122524, + -0.020528530701994896, + -0.00949659664183855, + -0.004738371353596449, + 0.008821576833724976, + 0.011918725445866585, + -0.013500387780368328, + -0.021693270653486252, + -0.03777461498975754, + -0.00933115091174841, + 0.012977578677237034, + -0.035445135086774826, + 0.005132132675498724, + 0.026603706181049347, + 0.013897458091378212, + 0.015035726130008698, + 0.02938319742679596, + -0.02428746223449707, + 0.022699182853102684, + 0.00016389487427659333, + -0.02935672737658024, + -0.0028506333474069834, + 0.0028506333474069834, + -0.00970836728811264, + -0.020157933235168457, + -0.008768634870648384, + -0.023493323475122452, + 0.006005687639117241, + 0.005681413225829601, + 0.010714278556406498, + 0.003217923454940319, + 0.0015088669024407864, + -0.004592779092490673, + -0.001448479131795466, + 0.004665575455874205, + -0.022527119144797325, + -0.005608617328107357, + -0.003861508099362254, + 0.01381804421544075, + -0.029197897762060165, + -0.026272814720869064, + -0.045213066041469574, + -0.02111090160906315, + 0.012686394155025482, + 0.026630178093910217, + -0.009092908352613449, + -0.015221025794744492, + -0.02603457309305668, + 0.007531099021434784, + 0.010641482658684254, + 0.002309625269845128, + 0.006740267388522625, + 0.004199017770588398, + 0.0027083498425781727, + -0.006425919942557812, + -0.007531099021434784, + 0.016200466081500053, + 0.005456407088786364, + 0.019072607159614563, + 0.02800668776035309, + -0.017629919573664665, + -0.0018281775992363691, + -0.046986646950244904, + -0.010489271953701973, + 0.0036464284639805555, + 0.021825628355145454, + 0.020621180534362793, + -0.015260732732713223, + -0.01328199915587902, + -0.0036100302822887897, + -0.02054176665842533, + 0.015498975291848183, + -0.030468523502349854, + 0.019800569862127304, + -0.005214856006205082, + 0.0102179404348135, + -0.00813332200050354, + -0.012104024179279804, + -0.01381804421544075, + -0.023691857233643532, + -0.010575303807854652, + 0.016425471752882004, + -0.016782835125923157, + -0.006597983650863171, + 0.006144661922007799, + 0.005764136556535959, + -0.013751866295933723, + 0.0189931932836771, + 0.0158431027084589, + -0.00792155135422945, + 0.014810720458626747, + -0.01160768698900938, + -0.013533477671444416, + 0.010356915183365345, + 0.0058634039014577866, + -0.0013665833976119757, + -0.011521655134856701, + 0.012640069238841534, + -0.0024105473421514034, + -0.011210616677999496, + -0.01801375299692154, + 0.02178592048585415, + 0.007398742251098156, + -0.02296389639377594, + 0.003107074648141861, + -0.0057045756839215755, + 0.001636260305531323, + 0.013831280171871185, + -0.008550246246159077, + 0.006915640085935593, + 0.00783551950007677, + -0.012891546823084354, + -0.001978733344003558, + 0.005585454870015383, + 0.01716667041182518, + 0.012871693819761276, + 0.003977320156991482, + 0.02546543814241886, + -0.010390005074441433, + 0.04111000522971153, + 0.0022186299320310354, + -0.01149518322199583, + -0.015287204645574093, + -0.005340594798326492, + 0.01091943122446537, + -0.0037026801146566868, + 0.02653752826154232, + -0.014956312254071236, + 0.014493064023554325, + -0.017921103164553642, + 0.018410824239253998, + 0.03777461498975754, + -0.02400951460003853, + 0.015975458547472954, + 0.013897458091378212, + -0.014890134334564209, + -0.0064292289316654205, + 0.012540801428258419, + -0.00026678157155402005, + 0.00034681602846831083, + -0.020277053117752075, + 0.009569392539560795, + 0.0057707540690898895, + -0.0033337355125695467, + -0.022818302735686302, + -0.008305385708808899, + 0.0032890650909394026, + 0.008742162957787514, + 0.0036828264128416777, + -0.004463731311261654, + -0.030971478670835495, + 0.011713571846485138, + 0.017246084287762642, + -0.006611219607293606, + 0.001201964681968093, + -0.03083912283182144, + 0.004162619821727276, + 0.0206608884036541, + -0.041745319962501526, + 0.03197738900780678, + -0.016332821920514107, + 0.017034312710165977, + 0.022871246561408043, + -0.026325756683945656, + -0.018159346655011177, + 0.00191917282063514, + 0.006680706981569529, + 0.017537269741296768, + -0.008060526102781296, + -0.012163585051894188, + -0.018159346655011177, + -0.01381804421544075, + -0.005145368631929159, + 0.016332821920514107, + -0.026696356013417244, + -0.016756365075707436, + 0.040792349725961685, + 0.00855686329305172, + 0.015684274956583977, + -0.017060784623026848, + -0.011336355470120907, + 0.008086997084319592, + -0.025518380105495453, + -0.0018050151411443949, + 0.003055786481127143, + 0.00013990521256346256, + -0.0033982594031840563, + 0.009317914955317974, + -0.0006237311754375696, + -0.012957725673913956, + 0.00028146489057689905, + 0.011918725445866585, + -0.004983231425285339, + -0.006581439170986414, + 0.023533029481768608, + -0.022355055436491966, + 0.006617837585508823, + 0.03338037058711052, + 0.0028506333474069834, + 0.004294976592063904, + 0.014532770961523056, + -0.002963136648759246, + -0.01686224900186062, + -0.020157933235168457, + -0.012792279943823814, + -0.00788184441626072, + 0.020780010148882866, + -0.01941673457622528, + -0.0027811462059617043, + 0.006981818471103907, + -0.00580384349450469, + 0.0231359601020813, + 0.0034909092355519533, + -0.004510056227445602, + -0.0004314002871979028, + 0.01149518322199583, + -0.02251388318836689, + 0.01073413249105215, + 0.01604163832962513, + -0.013765101321041584, + 0.01916525699198246, + 0.009662042371928692, + -0.0016577682690694928, + -0.0065218787640333176, + -0.02558455988764763, + 0.004076587967574596, + 0.010727514512836933, + -0.007597277406603098, + -0.00022397242719307542, + -0.025055132806301117, + 0.01447982806712389, + -0.013923930004239082, + 0.010442947037518024, + -0.011296648532152176, + 0.011184144765138626, + -0.002059801947325468, + -0.0020432572346180677, + -0.008464214392006397, + 0.029092013835906982, + -0.009966462850570679, + -0.008338474668562412, + -0.028218459337949753, + 0.005042792297899723, + -0.016107816249132156, + -0.02031676098704338, + 0.017576975747942924, + -0.006333270575851202, + -0.014916605316102505, + 0.025941923260688782, + 0.01604163832962513, + 0.005201620049774647, + 0.0049699959345161915, + -0.021878570318222046, + -0.01384451612830162, + 0.015366618521511555, + -0.007656837813556194, + -0.010423094034194946, + 0.02991262450814247, + -0.009529685601592064, + -0.0069950539618730545, + -0.014493064023554325, + 0.02318890206515789, + 0.003361861454322934, + 0.010628246702253819, + -0.001220991020090878, + 0.012706248089671135, + -0.00505933677777648, + 0.0056284707970917225, + 0.015247497707605362, + -0.00032055150950327516, + 0.012831986881792545, + 0.01490336935967207, + -0.004655648488551378, + -0.004606014583259821, + 0.01148194819688797, + 0.015896044671535492, + 0.011594451032578945, + -0.01166724693030119, + 0.010350297205150127, + -0.017007842659950256, + 0.03777461498975754, + -0.003437966573983431, + -0.014876898378133774, + 0.018199052661657333, + -0.009688514284789562, + -0.011792986653745174, + 0.010204705409705639, + 0.021057957783341408, + -0.005343903787434101, + 0.00888113770633936, + 0.011038552969694138, + -0.001517966389656067, + -0.033486258238554, + -0.002887031529098749, + -0.004202326759696007, + -0.013738630339503288, + -0.0016635588835924864, + -0.006756811868399382, + 0.0032923740800470114, + 0.023744801059365273, + 0.003974011167883873, + -0.0055622924119234085, + 0.011237087659537792, + -0.014704834669828415, + 0.018159346655011177, + -0.04460422322154045, + -0.006882550660520792, + -0.021772684529423714, + 0.008153175935149193, + -0.020052047446370125, + 0.013176114298403263, + -0.002713313326239586, + -0.007822283543646336, + -0.007306092418730259, + 0.00017868161376100034, + 0.03226857632398605, + 0.01586957462131977, + 0.008450978435575962, + 0.030997950583696365, + -0.00597259821370244, + 0.004572925623506308, + -0.008093615062534809, + 0.027768446132540703, + -0.021732978522777557, + 2.77380440820707e-5, + 0.017404912039637566, + 0.029065541923046112, + -0.007617130875587463, + 4.229211845085956e-5, + 0.00700828991830349, + 0.014413650147616863, + 0.0019969323184341192, + -0.02721254713833332, + -0.00535383028909564, + -0.007815665565431118, + 0.004582852590829134, + -0.01699460670351982, + -0.002691805362701416, + -0.0020200947765260935, + 0.009039965458214283, + 0.0004144420672673732, + 0.009979698807001114, + 6.85049599269405e-5, + -0.01891377940773964, + 0.013645980507135391, + 0.024830125272274017, + -0.016147522255778313, + -0.01381804421544075, + 0.013315089046955109, + -0.0024519087746739388, + -0.017378440126776695, + -0.0017305645160377026, + 0.009966462850570679, + -0.011845928616821766, + 0.010323826223611832, + -0.01170695386826992, + -0.01377833727747202, + 0.0379863865673542, + -0.015101904980838299, + 0.036292221397161484, + -0.0009835760574787855, + -0.013189350254833698, + -0.02625957876443863, + -0.03224210441112518, + -0.01654459349811077, + -0.00331719103269279, + -0.014797484502196312, + -0.007855372503399849, + -0.047489602118730545, + 0.01535338256508112, + -0.011356208473443985, + 0.02890671417117119, + 0.0015204481314867735, + 0.023850684985518456, + -0.004255269654095173, + 0.037615787237882614, + -0.012759190052747726, + -0.00244859978556633, + -0.005909728817641735, + 0.00800758320838213, + 0.020647652447223663, + -0.014890134334564209, + 0.026868419721722603, + 0.016160758212208748, + -0.006902404595166445, + -0.017854925245046616, + 0.0038251099176704884, + 0.0022235934156924486, + 0.010859871283173561, + 0.01222976390272379, + -0.01657106541097164, + -0.0017322188941761851, + 0.0111179668456316, + -0.018675537779927254, + -0.003639810485765338, + -0.021494735032320023, + 0.000511227932292968, + -0.004298285581171513, + -0.02468453347682953, + 0.007557570468634367, + -0.01083339937031269, + 0.010489271953701973, + 0.008887755684554577, + 0.020819716155529022, + -0.022302111610770226, + 0.004225489217787981, + 0.005307505372911692, + 0.016729893162846565, + 0.01688872091472149, + 0.029542025178670883, + -0.006399448961019516, + 0.006657544523477554, + -0.005436553619801998, + -0.0065880571492016315, + 0.014122464694082737, + 0.012302559800446033, + -0.0037854029797017574, + 0.031024422496557236, + -0.0357363224029541, + -0.007987729273736477, + 0.006217458285391331, + 0.007895080372691154, + 0.02563750185072422, + 8.055148646235466e-5, + 0.004615941550582647, + -0.019231434911489487, + -0.01535338256508112, + 0.005420008674263954, + 0.020634416490793228, + 0.004083205480128527, + 0.026100751012563705, + 0.024128634482622147, + -0.005936200264841318, + -0.00423541571944952, + 0.0034909092355519533, + 0.006267092190682888, + 0.011700336821377277, + -0.0030442052520811558, + 0.005608617328107357, + 0.0033817149233072996, + 0.018635829910635948, + -0.01896672137081623, + -0.00028436019783839583, + 0.012997432611882687, + 0.009503214620053768, + -0.0049799224361777306, + -0.022328583523631096, + 0.011852546595036983, + 0.022421233355998993, + 0.007650219835340977, + -0.01447982806712389, + 0.010978992097079754, + 0.0007304438040591776, + -0.006502025295048952, + 0.008623042143881321, + -0.0031831797678023577, + 0.02006528340280056, + -0.0002095993113471195, + 0.014771012589335442, + -0.010542214848101139, + -0.023202138021588326, + 0.005105661693960428, + -0.00630349013954401, + -0.004960068967193365, + -0.012421680614352226, + -0.006740267388522625, + -0.009675278328359127, + -0.01702107861638069, + 0.05924288183450699, + 0.006081792525947094, + 0.005790607538074255, + 0.002346023451536894, + 0.006247238256037235, + -0.023096252232789993, + 0.004225489217787981, + 0.0073788887821137905, + 0.016610771417617798, + 0.008603188209235668, + -0.011184144765138626, + -0.0026388627011328936, + 0.014704834669828415, + 0.00030855665681883693, + -0.02890671417117119, + -0.006217458285391331, + 0.008636278100311756, + 0.010926049202680588, + 0.006048703566193581, + 0.015657803043723106, + 0.0026719518937170506, + -0.010714278556406498, + -0.004682119935750961, + 0.0029168117325752974, + -0.010171616449952126, + 0.02498895302414894, + -0.009463507682085037, + -0.017722567543387413, + 0.021627092733979225, + 0.02583603747189045, + -0.0063630505464971066, + -0.010290737263858318, + 0.0018232142319902778, + -0.02358597330749035, + 0.005946126766502857, + -0.001559327938593924, + 0.00992013793438673, + -0.0020564929582178593, + -0.005416699685156345, + 0.007868608459830284, + 0.00402364507317543, + -0.010826782323420048, + 0.012745955027639866, + 0.011627539992332458, + -0.03531277924776077, + 0.009516450576484203, + -0.01894025132060051, + 0.005191693548113108, + 0.0017438001232221723, + -0.001684239599853754, + 0.004354536999017, + -0.01876818761229515, + 0.02034323289990425, + 0.013301853090524673, + 0.02566397376358509, + -0.004864110611379147, + 0.02158738486468792, + 0.02420804835855961, + 0.008781869895756245, + -0.00813332200050354, + -0.025372788310050964, + -0.008894373662769794, + 0.005188384559005499, + -0.01335479598492384, + -0.019257906824350357, + 0.005942817777395248, + 0.002544558374211192, + -0.01643870770931244, + 0.0005712020792998374, + -0.008417889475822449, + -0.02119031548500061, + -0.024181578308343887, + -0.002471762243658304, + -0.013533477671444416, + -0.00866936706006527, + 0.016253408044576645, + -0.0020680741872638464, + 0.02318890206515789, + 0.024380112066864967, + -0.0009728220757097006, + 0.003772167256101966, + 0.011587833054363728, + -0.028721414506435394, + -0.009992934763431549, + -0.00021280483633745462, + -0.019152021035552025, + 0.029277311637997627, + -0.04283064231276512, + 0.003055786481127143, + -0.016173994168639183, + -0.025677209720015526, + -0.01215696707367897, + 0.00325763039290905, + 0.018728479743003845, + -0.013288617134094238, + 0.0004442223289515823, + 0.004189091268926859, + 0.012547419406473637, + 0.00572773814201355, + -0.012104024179279804, + 0.00023451961169485003, + 0.008444360457360744, + -0.017126962542533875, + -0.003254321636632085, + -0.0015907626366242766, + 0.005400155205279589, + 0.02453894168138504, + -0.004490202758461237, + -0.007603894919157028, + 0.008212735876441002, + -0.00020732443954329938, + -0.011826075613498688, + 0.012951107695698738, + -0.017060784623026848, + -0.017960811033844948, + -0.01013190858066082, + 0.011270176619291306, + -0.006564894691109657, + -0.02723901905119419, + -0.014188643544912338, + -0.008934080600738525, + 0.018251994624733925, + -0.00394092220813036, + -0.017907867208123207, + -0.004553072154521942, + -0.017351970076560974, + -0.008490685373544693, + -0.017775511369109154, + -0.006740267388522625, + -0.014665127731859684, + 0.025028660893440247, + 0.01624017208814621, + 0.03782755881547928, + 0.008305385708808899, + 0.03531277924776077, + 0.014956312254071236, + -0.023268315941095352, + 0.0035868678241968155, + -0.0036497372202575207, + -0.025902215391397476, + 0.01719314232468605, + 0.01843729428946972, + 0.0004111331363674253, + 0.011468712240457535, + 0.00038011203287169337, + -0.0010762257734313607, + 0.008563481271266937, + -0.02535955235362053, + 0.006829608231782913, + -0.0029068849980831146, + 0.02555808797478676, + -0.032665643841028214, + 0.007550952490419149, + -0.007001671940088272, + -0.011786368675529957, + 0.005565601401031017, + -0.027080191299319267, + 0.02668312005698681, + -0.0330362431704998, + 0.003335390007123351, + 0.01657106541097164, + -0.0007593968184664845, + -0.006018923129886389, + 0.004073278978466988, + -0.0062042223289608955, + 0.024591883644461632, + 0.009542921558022499, + 0.0069288755767047405, + -0.0055622924119234085, + -0.00692225806415081, + 0.022924188524484634, + 0.014665127731859684, + 0.021349143236875534, + -0.010615010745823383, + 0.007603894919157028, + -0.004738371353596449, + -0.0001808530796552077, + 0.012170203030109406, + -0.01045618299394846, + 0.0003606721293181181, + -0.012765808030962944, + 0.001434416277334094, + 0.006366359535604715, + 0.006753502879291773, + -0.02681547775864601, + -0.004394243936985731, + 0.013765101321041584, + -0.001445170259103179, + 0.011984903365373611, + -0.01781521737575531, + 0.00046200776705518365, + 0.010125291533768177, + 0.013162878341972828, + -0.008444360457360744, + 0.0012234726455062628, + -0.0015659458003938198, + 0.030600879341363907, + 0.01490336935967207, + 0.04449833929538727, + -0.005453098099678755, + -0.0014071176992729306, + 0.019999103620648384, + 0.024671297520399094, + 0.0031236191280186176, + -0.026590470224618912, + -4.4308490032562986e-5, + -0.02116384357213974, + -0.014347471296787262, + 0.008192882873117924, + 0.0007424386567436159, + -0.023533029481768608, + -0.01631958782672882, + 0.018132874742150307, + 0.009145851247012615, + 0.015088669024407864, + -0.006171133369207382, + 0.01049588993191719, + 0.00154443783685565, + 0.00019388194778002799, + 0.01315626036375761, + 0.004569616634398699, + 0.0075112455524504185, + 0.014347471296787262, + -0.01629311591386795, + 0.0018132873810827732, + -0.006700560450553894, + -0.00833185762166977, + 0.004907126538455486, + 0.016173994168639183, + 0.009086290374398232, + 0.004993158392608166, + -0.0198932196944952, + -0.01451953500509262, + 0.012335648760199547, + -0.005277725402265787, + 0.013368031941354275, + -0.0018728480208665133, + -0.016901956871151924, + 0.013321707025170326, + -0.020396174862980843, + -0.010846635326743126, + -0.001614752341993153, + -0.0032427404075860977, + 0.002503196941688657, + -0.006611219607293606, + -0.013632744550704956, + -0.012362119741737843, + 0.010231176391243935, + -0.006200913805514574, + -2.4286946427309886e-5, + -0.01490336935967207, + 0.0071340287104249, + 0.010773839429020882, + -0.0005166049231775105, + 0.01451953500509262, + -0.011554744094610214, + -0.007319327909499407, + 0.015896044671535492, + 0.005456407088786364, + -0.017510797828435898, + 0.010826782323420048, + 0.004926980007439852, + -0.02453894168138504, + -0.011673864908516407, + -0.002710004337131977, + 0.014413650147616863, + -0.026947833597660065, + -0.0013624472776427865, + -0.01896672137081623, + -0.004655648488551378, + 0.006008996162563562, + -0.008695838041603565, + -0.0013334942050278187, + 0.01978733390569687, + 0.001613925094716251, + 0.0004206462763249874, + 0.0038449636194854975, + -0.027027247473597527, + 0.005476260557770729, + 0.020382938906550407, + -0.010317208245396614, + 0.009536303579807281, + 0.016107816249132156, + -0.003080603200942278, + 0.008252442814409733, + -0.024816889315843582, + 0.023003602400422096, + 0.0053769927471876144, + -0.013645980507135391, + 0.02946261130273342, + -0.01789463311433792, + -0.0067965188063681126, + -0.011799603700637817, + 0.0008958897087723017, + 0.0013781646266579628, + 0.0005013011978007853, + 0.005750900600105524, + -0.011984903365373611, + 0.019403498619794846, + -0.023877156898379326, + 0.004242033697664738, + -0.007100939285010099, + -0.013070228509604931, + -0.012123878113925457, + -0.019099079072475433, + 0.01556515321135521, + 0.02813904359936714, + 0.0030508229974657297, + 0.0026686429046094418, + 0.009417182765901089, + 0.0017586902249604464, + -0.002706695580855012, + -0.022924188524484634, + -0.012335648760199547, + -0.014188643544912338, + -0.0074185957200825214, + 0.008576717227697372, + 0.01964174211025238, + -0.011634157970547676, + -0.0008011719328351319, + -0.009893666952848434, + -0.011521655134856701, + 0.009053201414644718, + -0.006439155898988247, + 0.00966866035014391, + -0.005740974098443985, + 0.02808610163629055, + 0.011382680386304855, + 0.015221025794744492, + -0.013685687445104122, + 0.024724239483475685, + 0.01721961237490177, + -0.018503474071621895, + -0.0015791814075782895, + -0.0017404912505298853, + 0.018278466537594795, + -0.017775511369109154, + -0.00522809149697423, + -0.0020564929582178593, + -0.002786109456792474, + -0.007392124272882938, + -0.018649065867066383, + -7.801809988450259e-5, + 0.00613473542034626, + 0.00572773814201355, + 0.003428039839491248, + 0.0049302889965474606, + -0.007981112226843834, + 0.016306351870298386, + 0.011051787994801998, + -0.01158121507614851, + 0.017960811033844948, + 0.024816889315843582, + 0.019932925701141357, + -0.010270883329212666, + -0.009410564787685871, + -0.004500129260122776, + 0.025902215391397476, + -0.006942111533135176, + -0.014585713855922222, + -0.009066437371075153, + 0.01581663079559803, + -0.01314302533864975, + -0.010548832826316357, + 0.0009645497775636613, + -0.007028143387287855, + -0.0022599913645535707, + 0.0188608355820179, + -0.025650737807154655, + -0.0005066781886853278, + -0.004225489217787981, + -0.01539308950304985, + -0.010052494704723358, + -0.0032526671420782804, + -0.011038552969694138, + 0.009152469225227833, + -0.0008321930654346943, + -0.002078000921756029, + -0.02378450706601143, + 0.003100456902757287, + 0.019602034240961075, + -0.010039259679615498, + 0.0003871434892062098, + -0.0102179404348135, + -0.015723980963230133, + 0.015551918186247349, + 0.016134288161993027, + 0.0033039553090929985, + 0.00468542892485857, + -0.00108863424975425, + -0.005578836891800165, + -0.006869315169751644, + 0.006442464888095856, + 0.012375355698168278, + -0.01888730749487877, + 0.024671297520399094, + -0.01100546307861805, + 0.008649513125419617, + -0.008735544979572296, + -6.0284361097728834e-5, + -0.0019324085442349315, + -0.012276087887585163, + 0.029542025178670883, + -0.015935752540826797, + 0.0029499009251594543, + -0.006955347023904324, + 0.0019357174169272184, + -0.00414276635274291, + 0.013096700422465801, + 0.0019572253804653883, + -0.007643602322787046, + 0.0012755881762132049, + -0.01148194819688797, + -0.009298061951994896, + 0.02318890206515789, + -0.016584301367402077, + -0.006829608231782913, + 0.015207789838314056, + 0.0044041709043085575, + -0.012540801428258419, + 0.012554037384688854, + -0.005221473518759012, + 0.0071340287104249, + -0.0002856010396499187, + 0.003401568392291665, + -0.00634650606662035, + 0.02603457309305668, + 0.019721155986189842, + -0.012593744322657585, + 0.0006001551519148052, + -0.0069950539618730545, + 0.008914226666092873, + -0.01094590313732624, + 0.010237794369459152, + -0.027450788766145706, + -0.013963636942207813, + 0.019046135246753693, + -0.01166724693030119, + -0.0014071176992729306, + 0.016743129119277, + -0.00828553270548582, + -0.024247756227850914, + -0.027397846803069115, + -0.004791314247995615, + -0.012428298592567444, + 0.0037523137871176004, + 0.00815979391336441, + 0.017696097493171692, + 0.000127806983073242, + -0.0018844291334971786, + -0.00834509264677763, + 0.013507005758583546, + -0.0025726843159645796, + 0.005092425737529993, + -0.011382680386304855, + -0.018384352326393127, + -0.012077553197741508, + -0.026616942137479782, + 0.008609806187450886, + -0.043942440301179886, + 0.020528530701994896, + 0.01801375299692154, + -0.008867901749908924, + -0.018622593954205513, + -0.006144661922007799, + 0.01290478277951479, + 0.011296648532152176, + -0.0015121758915483952, + -0.013301853090524673, + 0.015048962086439133, + -0.027927273884415627, + 0.021455029025673866, + -0.00039872468914836645, + -0.0015088669024407864, + 0.0023890393786132336, + 0.022924188524484634, + -0.0083715645596385, + -0.0002508574107196182, + 0.0026752606499940157, + 0.006770047824829817, + -0.010528978891670704, + 0.011832693591713905, + -0.004122912883758545, + 0.005426626652479172, + 0.019178492948412895, + 0.002071383176371455, + 0.0026752606499940157, + 0.017696097493171692, + 0.002225247910246253, + 0.010138526558876038, + 0.026021337136626244, + 0.023069780319929123, + 0.023996278643608093, + -0.014109229668974876, + 0.005522585473954678, + 0.005899801850318909, + 0.013507005758583546, + 0.03113030642271042, + 0.00020484274136833847, + 0.02099177986383438, + 0.024128634482622147, + 0.005333976820111275, + -0.008411271497607231, + -0.0036762086674571037, + 0.02268594689667225, + -0.010019405744969845, + 0.004831021185964346, + 0.020277053117752075, + 0.01739167608320713, + 0.012560655362904072, + -0.0010158380027860403, + -0.011627539992332458, + -0.024830125272274017, + 0.010178233496844769, + -0.005363757256418467, + 0.03332743048667908, + -0.006670780014246702, + -0.008609806187450886, + 0.010052494704723358, + 0.0026901508681476116, + 0.004351228009909391, + -0.011303266510367393, + -0.007981112226843834, + -0.01821228861808777, + 0.005879948381334543, + -0.0019406807841733098, + 0.011839310638606548, + -0.0022930805571377277, + -0.009622335433959961, + -0.01281875092536211, + -0.014982784166932106, + 0.021494735032320023, + 0.021799156442284584, + -0.022897716611623764, + 0.0004067902045790106, + 0.015737216919660568, + 0.01537985447794199, + 0.002938319696113467, + 0.02358597330749035, + -0.0015494012041017413, + 0.03081265091896057, + -0.004476966802030802, + 0.004106367938220501, + -0.0016883757198229432, + 0.007564187981188297, + -0.0034181131049990654, + 0.0074185957200825214, + 0.022249169647693634, + -0.013937165960669518, + 0.011872400529682636, + -0.03520689532160759, + -0.0065615857020020485, + 0.019681448116898537, + 0.019496148452162743, + 0.020674124360084534, + -0.008391417562961578, + 0.005314123351126909, + -0.005075881257653236, + -0.0018083240138366818, + 0.014651891775429249, + -0.0020647651981562376, + 0.006730340421199799, + -0.00900687649846077, + -0.01514161191880703, + -0.010125291533768177, + 0.008636278100311756, + 0.008861283771693707, + -0.012262852862477303, + 0.008914226666092873, + 0.005122206173837185, + 0.009814253076910973, + 0.0015684274258092046, + -0.006277018692344427, + 0.02845670096576214, + -0.013447445817291737, + 0.0010977337369695306, + -0.03311565890908241, + 0.007537716533988714, + 0.006915640085935593, + -0.016054874286055565, + 0.004960068967193365, + -0.015194554813206196, + 0.009489978663623333, + 0.007233296055346727, + 0.005297578871250153, + 0.0222359336912632, + 0.0008809996070340276, + 0.009748074226081371, + 0.01581663079559803, + -0.011131202802062035, + 0.024750711396336555, + -0.0012706248089671135, + -0.021005015820264816, + 0.003901215037330985, + 0.011587833054363728, + 0.009238501079380512, + -0.0052711074240505695, + -0.004089823458343744, + -0.019694684073328972, + -0.028721414506435394, + -0.009238501079380512, + -0.004225489217787981, + -0.003739078063517809, + -0.008656131103634834, + 0.0029499009251594543, + -0.000268436037003994, + 0.0006845325697213411, + -0.005975907202810049, + 0.01356656663119793, + 0.00958262849599123, + 0.015366618521511555, + -0.006356432568281889, + -0.0026024645194411278, + -0.019006429240107536, + 0.023691857233643532, + 0.0009033348178490996, + 0.0183181744068861, + 0.0019853513222187757, + 0.02856258675456047, + 0.0002388625725870952, + 0.0038151831831783056, + 0.016809307038784027, + -0.002787763951346278, + 0.0029399741906672716, + -0.010164998471736908, + -0.0018414132064208388, + 0.016346057876944542, + 0.00572773814201355, + 0.027318432927131653, + -0.012752573005855083, + 0.022858010604977608, + -0.0027414390351623297, + -0.010654718615114689, + -0.037642259150743484, + 0.00767669128254056, + -0.00191917282063514, + -0.014704834669828415, + 0.004285049624741077, + -0.009986316785216331, + -0.014175407588481903, + -0.008960551582276821, + 0.0016329513164237142, + -0.00614135293290019, + 0.01846376620233059, + 0.008709073998034, + -0.0008967169560492039, + -0.006081792525947094, + -0.0036232660058885813, + 0.004053425509482622, + -0.005247944965958595, + 0.0021458338014781475, + 0.001422835048288107, + -0.0285361148416996, + 0.01691519282758236, + 0.010052494704723358, + -0.004956759978085756, + -0.004814476706087589, + -0.027450788766145706, + 0.022355055436491966, + -0.004089823458343744, + -0.024896305054426193, + -0.014215114526450634, + -0.003636501729488373, + 0.019932925701141357, + 0.0017619992140680552, + -0.010429712012410164, + -0.00970836728811264, + 0.018106402829289436, + -0.0215609148144722, + 0.006935493554919958, + 0.002923429710790515, + 0.020621180534362793, + -0.021349143236875534, + 0.00759065942838788, + 0.004225489217787981, + 0.015313675627112389, + 0.006313416641205549, + -0.01798728108406067, + 0.03298330307006836, + -0.017828453332185745, + 0.002081309910863638, + 0.005555674433708191, + 0.007782576605677605, + 0.019099079072475433, + -8.834554137138184e-6, + 0.016650479286909103, + -0.006650926545262337, + -0.02510807476937771, + -0.005317432340234518, + 0.00013370098895393312, + -0.02521396055817604, + -0.006349815055727959, + -0.010429712012410164, + -0.011098112910985947, + 0.011422387324273586, + 0.00970836728811264, + -0.00858333520591259, + -0.011296648532152176, + -0.011892253533005714, + -0.01606810837984085, + -0.017603447660803795, + 0.005843550432473421, + 0.011839310638606548, + 0.0034181131049990654, + -0.030177338048815727, + -0.017060784623026848, + 0.004956759978085756, + -0.0008958897087723017, + 0.01624017208814621, + 0.001930754049681127, + 0.017947575077414513, + -0.014572477899491787, + 0.00655827671289444, + 0.01829170249402523, + 0.004695355426520109, + -0.03171267732977867, + -0.019032901152968407, + 0.011065023951232433, + -0.01352024171501398, + 0.0034842914901673794, + 0.0029101939871907234, + 0.003155054058879614, + 0.005333976820111275, + 0.0183181744068861, + 0.0008578371489420533, + -0.017510797828435898, + 0.00013214994396548718, + -0.0034545110538601875, + -0.0038151831831783056, + 0.003019388299435377, + 0.040315866470336914, + 0.0033734426833689213, + -0.005913037806749344, + 0.0025313228834420443, + -0.017206376418471336, + -0.004768151789903641, + 0.003467746777459979, + -0.0003586040693335235, + 0.0052049290388822556, + 0.015207789838314056, + -0.017497561872005463, + -0.011620922014117241, + 0.011799603700637817, + 0.007723016198724508, + 0.010012787766754627, + -0.007147264201194048, + -0.028880242258310318, + 0.004857492633163929, + -0.003990556113421917, + 0.023453615605831146, + -0.0029978803358972073, + -0.015485739335417747, + 0.024830125272274017, + -0.006498716305941343, + 0.01447982806712389, + -0.006028849631547928, + 0.003380060428753495, + -0.015657803043723106, + 0.0016445325454697013, + -0.00422879820689559, + -0.014095993712544441, + 0.002403929363936186, + -0.008775251917541027, + 0.002802654169499874, + -0.019946161657571793, + 0.0012532529653981328, + -0.00834509264677763, + -0.01384451612830162, + -0.001081189140677452, + 0.015525446273386478, + -0.003930995240807533, + -0.0018281775992363691, + -0.0021458338014781475, + -0.023003602400422096, + 0.00618436885997653, + -0.01579016074538231, + -0.029171427711844444, + 0.0030723309610038996, + 0.018635829910635948, + -0.006257165223360062, + 0.003904524026438594, + -0.018146110698580742, + 0.005856785923242569, + 0.013645980507135391, + -0.020157933235168457, + 0.023824214935302734, + 0.00982087105512619, + 0.012507712468504906, + 0.007332563865929842, + 0.024843361228704453, + 0.01239520963281393, + -0.016147522255778313, + -0.01100546307861805, + 0.02391686476767063, + 0.014148936606943607, + -0.0053108143620193005, + -0.012090789154171944, + -0.02358597330749035, + -0.015975458547472954, + -0.0035835588350892067, + 0.007180353626608849, + 0.0017785438103601336, + -0.0022848083171993494, + -0.014175407588481903, + -0.024102164432406425, + -0.01716667041182518, + -0.002026712754741311, + 0.006492098327726126, + 0.009867195971310139, + 0.013473916798830032, + 0.0043115210719406605, + 0.004774769768118858, + -0.00804729014635086, + 0.00022748815536033362, + 0.005446480121463537, + -0.003471055766567588, + -0.023294787853956223, + -0.023096252232789993, + 0.0008776906761340797, + -6.230073631741107e-5, + -0.0071340287104249, + 0.007895080372691154, + 0.00924511905759573, + -0.027291961014270782, + -0.02608751505613327, + 0.007828901521861553, + -0.01451953500509262, + 0.0059692892245948315, + 0.008742162957787514, + -0.025544852018356323, + -0.01843729428946972, + -0.004199017770588398, + -0.02046235278248787, + 0.0026884963735938072, + 0.015657803043723106, + 0.00030690222047269344, + 0.009139233268797398, + 0.001445170259103179, + 0.03555102273821831, + -0.008682603016495705, + 0.0051023527048528194, + -0.02009175345301628, + -8.515295485267416e-5, + 0.020475588738918304, + 0.001349211554042995, + 0.003194760996848345, + 0.018371116369962692, + -0.009688514284789562, + 0.0015055580297484994, + -0.021402085199952126, + 0.002743093529716134, + 0.0009860577993094921, + 0.015975458547472954, + -0.011773132719099522, + -0.0025164326652884483, + 0.0020432572346180677, + -0.010959139093756676, + -0.006217458285391331, + 0.009377475827932358, + -0.003768858266994357, + 0.0038085654377937317, + 0.023043310269713402, + -0.007200207095593214, + -0.0032659026328474283, + 0.005899801850318909, + -0.005648324266076088, + -0.008206117898225784, + -0.006462318357080221, + -0.00013814735575579107, + -0.025306610390543938, + -0.006981818471103907, + -0.013685687445104122, + 0.018185816705226898, + -0.0023956571239978075, + -0.011971667408943176, + 0.018794657662510872, + -0.004331374540925026, + -0.0001531408925075084, + -0.004883964080363512, + 0.009701749309897423, + 0.004410788416862488, + 0.011151055805385113, + 0.00029904351686127484, + -0.014704834669828415, + -0.02648458443582058, + 0.0012962688924744725, + 0.019549092277884483, + 0.01301728654652834, + -0.019959397614002228, + 0.020872659981250763, + 0.017457855865359306, + -0.013387884944677353, + -0.009463507682085037, + -0.010740750469267368, + -0.02543896622955799, + -0.003921068739145994, + 0.005161913111805916, + 0.0032940285746008158, + -0.012143731117248535, + 0.00043181388173252344, + 0.003603412536904216, + -0.011376062408089638, + -0.00013225334987509996, + 0.01473130565136671, + -0.005674795713275671, + 0.00013504523667506874, + -0.028403757140040398, + 0.007775959093123674, + -0.006217458285391331, + 0.0023956571239978075, + -0.03155384957790375, + -0.009106144309043884, + 0.0037523137871176004, + 0.0021193623542785645, + -0.0005803016247227788, + 0.005592072382569313, + -0.017404912039637566, + -0.007319327909499407, + 0.005985833704471588, + -0.0012606980744749308, + 0.006151279900223017, + -3.034898873011116e-5, + 0.01518131885677576, + 0.03780108690261841, + 0.022831538692116737, + 0.01087972428649664, + -0.002956518903374672, + -0.017696097493171692, + -0.0014302801573649049, + 0.012249616906046867, + 0.012845221906900406, + -0.009880430996418, + 0.013368031941354275, + -0.01024441234767437, + -0.011978285387158394, + -0.001437725150026381, + -0.007385506294667721, + -0.0028820682782679796, + 0.0021160535980015993, + 0.019946161657571793, + 0.008636278100311756, + -0.004056734498590231, + 0.007610512897372246, + -0.00824582576751709, + 0.006234002765268087, + -0.014863662421703339, + -0.007782576605677605, + 0.0026669884100556374, + 0.007663455791771412, + -0.013923930004239082, + 0.003474364522844553, + 0.0102179404348135, + -0.01469159871339798, + 0.01335479598492384, + 0.008636278100311756, + 0.006895786616951227, + -0.014876898378133774, + 0.009609099477529526, + -0.011468712240457535, + 0.002137561561539769, + 0.00197046110406518, + 0.004913744051009417, + 0.005135441664606333, + -0.015287204645574093, + 0.021349143236875534, + -0.016226937994360924, + -0.013401120901107788, + -0.027450788766145706, + -0.013685687445104122, + 0.0056284707970917225, + 0.01539308950304985, + 0.025227196514606476, + -0.009867195971310139, + 0.023149194195866585, + 0.022884482517838478, + 0.004754916299134493, + -0.04002467915415764, + -0.006028849631547928, + -0.0025247049052268267, + 0.00701490743085742, + -0.025399260222911835, + 0.0029317019507288933, + 0.011263559572398663, + -0.004821094684302807, + -0.0033221542835235596, + -0.002643825951963663, + -0.020475588738918304, + 0.007206825073808432, + 0.0158431027084589, + -0.010502507910132408, + -0.005525893997400999, + -0.015723980963230133, + -0.01401657983660698, + 0.003095493419095874, + -0.0071340287104249, + -0.01058192178606987, + 0.010892960242927074, + -0.016279879957437515, + -0.010992228053510189, + -0.00389790628105402, + 0.004106367938220501, + 0.025941923260688782, + -0.0019092460861429572, + 0.008424506522715092, + 0.024843361228704453, + -0.006736958399415016, + 0.033618614077568054, + 0.00792155135422945, + -0.011137819848954678, + -0.004893890582025051, + 0.0052711074240505695, + -0.0099466098472476, + -0.014003343880176544, + 0.02493601106107235, + -0.017087256535887718, + 0.003537234151735902, + 0.03115677833557129, + 0.009231883101165295, + -0.0056549422442913055, + -0.0023344422224909067, + -0.006422610953450203, + 0.02665664814412594, + 0.01846376620233059, + -0.010654718615114689, + 0.004725135862827301, + 0.009503214620053768, + -0.021547678858041763, + -0.015101904980838299, + -0.01843729428946972, + 0.004324756562709808, + -0.0029614821542054415, + 0.00903334841132164, + -0.002172305015847087, + -0.022500647231936455, + 0.0002574752434156835, + 0.00725976750254631, + 0.01944320648908615, + 0.0011680482421070337, + 0.009423800744116306, + -0.0031600173097103834, + -0.006773356348276138, + 0.0016263335710391402, + 0.0165181215852499, + 0.0017603447195142508, + -0.012024610303342342, + -0.014148936606943607, + 0.016557829454541206, + -0.025571323931217194, + 0.011316501535475254, + 0.01451953500509262, + 0.0009198794141411781, + 0.012520948424935341, + 0.0016263335710391402, + -0.016584301367402077, + 0.01490336935967207, + 0.014598948881030083, + -0.0021789229940623045, + 0.015075433067977428, + -0.003914450760930777, + 0.019906455650925636, + 0.01606810837984085, + -0.0036464284639805555, + 0.007213442586362362, + -0.01846376620233059, + 0.003603412536904216, + -0.004096441436558962, + -0.0023625679314136505, + 0.013725394383072853, + -0.008173028938472271, + -0.010429712012410164, + 0.00949659664183855, + 0.009059819392859936, + 0.0005881602992303669, + -0.007643602322787046, + -0.0018083240138366818, + 0.008106851018965244, + 0.006372977513819933, + 0.018781421706080437, + -0.020104989409446716, + -0.004688737913966179, + 0.006197604816406965, + 0.0046788109466433525, + -0.01694166287779808, + 0.010575303807854652, + 0.004232107196003199, + -0.002195467473939061, + 0.0021458338014781475, + -0.010237794369459152, + -0.0005509349866770208, + -0.004079896956682205, + 0.01946967840194702, + 0.003805256448686123, + 0.002286462811753154, + 0.037615787237882614, + 0.002059801947325468, + 0.010866489261388779, + 0.0061380439437925816, + 0.0050361743196845055, + 0.005247944965958595, + -0.00943041779100895, + -0.0073524173349142075, + 0.007074468303471804, + -0.014413650147616863, + -0.00800758320838213, + 0.012984196655452251, + 0.003477673511952162, + 0.008722309954464436, + -0.014082757756114006, + -0.01535338256508112, + -0.025346316397190094, + -0.01490336935967207, + -0.007557570468634367, + -0.02493601106107235, + 0.0012664885725826025, + 0.009106144309043884, + 0.01581663079559803, + -0.017259320244193077, + -0.009748074226081371, + 0.01535338256508112, + 0.012381973676383495, + -0.009264972060918808, + -0.005456407088786364, + -0.0014592331135645509, + -0.033565670251846313, + 0.003967393655329943, + -0.010416476055979729, + -0.01194519642740488, + -0.013738630339503288, + -0.005555674433708191, + 0.013507005758583546, + -0.003155054058879614, + 0.006856079678982496, + 0.019628506153821945, + -0.0025793020613491535, + -0.0044538043439388275, + 0.01702107861638069, + 0.009999551810324192, + -0.009443653747439384, + 0.0015130030224099755, + 0.00018633347644936293, + 0.01226947084069252, + -0.019125549122691154, + 0.0035206894390285015, + 0.01784168928861618, + -0.013176114298403263, + -0.025068368762731552, + -0.00252966838888824, + 0.005463024601340294, + 0.025253666564822197, + -0.002125980332493782, + -0.003196415491402149, + -0.012448152527213097, + -0.00921864714473486, + -0.014188643544912338, + 0.01851670816540718, + 0.023744801059365273, + 0.012534184381365776, + 0.015432796441018581, + 0.016478415578603745, + 0.008000965230166912, + -0.012547419406473637, + -0.0014732960844412446, + -0.008603188209235668, + -0.002695114351809025, + -0.01015838049352169, + 0.01631958782672882, + -0.016173994168639183, + -0.0021309435833245516, + 0.0019853513222187757, + -0.0027778372168540955, + 0.002203739946708083, + -0.023797743022441864, + 0.004907126538455486, + -0.0027348212897777557, + 0.009953227825462818, + 0.019178492948412895, + 0.01090619619935751, + -0.007398742251098156, + 0.005092425737529993, + -0.017656389623880386, + -0.007531099021434784, + 0.0050626457668840885, + -0.00030752262682653964, + -0.018649065867066383, + -0.0014848773134872317, + -0.00464241299778223, + -0.004096441436558962, + -0.023758037015795708, + 0.024419819936156273, + 0.023268315941095352, + 0.023533029481768608, + -0.0061380439437925816, + -0.012851839885115623, + 0.008768634870648384, + -0.006101645994931459, + 0.015512211248278618, + -0.015247497707605362, + -0.0021739595104008913, + -0.006435846909880638, + -0.0011076604714617133, + -9.011632937472314e-5, + -0.03134207800030708, + 0.016147522255778313, + 0.005942817777395248, + -0.0183181744068861, + -0.004129530396312475, + 0.004036880563944578, + 0.025756623595952988, + 0.026550764217972755, + 0.023149194195866585, + 0.0050461008213460445, + 0.02378450706601143, + -0.011038552969694138, + 0.02361244335770607, + -0.01541956141591072, + 0.020078519359230995, + 0.008027437143027782, + -0.004126221407204866, + 0.003004498081281781, + 0.006432537920773029, + -0.0019373719114810228, + -0.004933597985655069, + 0.009542921558022499, + -0.024803655222058296, + -0.006753502879291773, + -0.009271590039134026, + 0.012468005530536175, + -0.01156798005104065, + 0.02988615445792675, + 0.0025462128687649965, + -0.007047996856272221, + 0.00013959500938653946, + -0.004976613912731409, + 0.015035726130008698, + 0.011197380721569061, + -0.007663455791771412, + 0.006104954984039068, + 0.024697769433259964, + 0.004665575455874205, + -0.004668884444981813, + -0.013937165960669518, + 0.001467505469918251, + -0.004248651675879955, + 0.008305385708808899, + -0.014321000315248966, + -0.022222697734832764, + 0.006836226209998131, + -0.02119031548500061, + -0.007815665565431118, + -0.03478335216641426, + 0.022553589195013046, + -0.01694166287779808, + -0.011832693591713905, + -0.01090619619935751, + 0.00655827671289444, + 0.00013742352894041687, + -0.0003335803630761802, + -0.006981818471103907, + 0.021719742566347122, + -0.015432796441018581, + 0.009939991869032383, + -0.041268832981586456, + 0.019006429240107536, + 0.0067965188063681126, + -0.004268505144864321, + 0.002180577488616109, + 0.01781521737575531, + -0.020528530701994896, + 0.013725394383072853, + 0.016756365075707436, + -0.01315626036375761, + 0.000890099152456969, + 0.00451667420566082, + -0.006809754762798548, + 0.0063630505464971066, + -0.025452202185988426, + -0.01069442555308342, + -0.02048882469534874, + -0.009748074226081371, + 0.00379532971419394, + 0.00379532971419394, + -0.002309625269845128, + -0.023678621277213097, + -0.013672452419996262, + 0.018556416034698486, + 0.03134207800030708, + 0.04545130580663681, + 0.03353919833898544, + 0.023691857233643532, + 0.008398035541176796, + 0.02183886244893074, + -0.03073323704302311, + 0.010125291533768177, + -0.005916346795856953, + -0.03925701230764389, + -0.015776924788951874, + -0.007584041450172663, + -0.0072465320117771626, + 0.0214682649821043, + 0.002956518903374672, + -0.020819716155529022, + -0.0043214475736021996, + -0.00943041779100895, + -0.015750452876091003, + -0.0028655235655605793, + -0.004304903093725443, + 0.0027960361912846565, + 0.0013037140015512705, + -0.017060784623026848, + 0.009152469225227833, + 0.015446032397449017, + 0.007749487645924091, + -0.01015838049352169, + -0.016279879957437515, + -0.015022491104900837, + 0.023903628811240196, + 0.021547678858041763, + -0.010191469453275204, + -0.011045170947909355, + -0.016782835125923157, + -0.007868608459830284, + 0.009298061951994896, + 0.0038912883028388023, + 0.003353588981553912, + 0.014241586439311504, + -0.025941923260688782, + -0.013923930004239082, + -0.018821129575371742, + 0.006310108117759228, + -0.012461387552320957, + -0.009152469225227833, + -0.005482878070324659, + -0.006687324494123459, + -0.03038910962641239, + 0.014387178234755993, + -0.01380480919033289, + -0.0009885394247248769, + -0.010191469453275204, + -0.041586488485336304, + -0.0037490047980099916, + -0.014651891775429249, + 0.006674089003354311, + 0.0325862318277359, + -0.014109229668974876, + -0.0038151831831783056, + -0.02031676098704338, + 0.0014054632047191262, + 0.020382938906550407, + 0.006081792525947094, + 0.004913744051009417, + -0.020171169191598892, + 0.02991262450814247, + -0.003662972943857312, + 0.015512211248278618, + 0.007517863065004349, + -0.019707920029759407, + 0.006267092190682888, + -0.011012081056833267, + -0.019271142780780792, + -0.009271590039134026, + -0.023983042687177658, + -0.007762723136693239, + -0.026855183765292168, + -0.00242709182202816, + -0.012858457863330841, + 0.027874331921339035, + 0.011898871511220932, + 0.0021077811252325773, + -0.009986316785216331, + -0.004328065551817417, + -0.017007842659950256, + 0.0065218787640333176, + -0.012196674011647701, + 0.004334683530032635, + -0.010019405744969845, + 0.00982087105512619, + -0.024499233812093735, + -0.008000965230166912, + -0.004529909696429968, + 0.00041857821634039283, + 0.0196682121604681, + -0.025796329602599144, + -0.007623748853802681, + -0.0042453426867723465, + -0.0017074020579457283, + 0.011554744094610214, + -0.00759065942838788, + 0.012309177778661251, + 0.009589246474206448, + 0.025491910055279732, + 0.008821576833724976, + -0.02803315967321396, + -0.006836226209998131, + 0.009853960014879704, + 0.0016958208288997412, + 0.013897458091378212, + -0.010959139093756676, + 0.0022401378955692053, + 0.01694166287779808, + 0.0064193024300038815, + -0.011422387324273586, + 0.02076677419245243, + 0.009840724058449268, + -0.0006857733824290335, + -0.011078259907662868, + 0.012990814633667469, + -0.0034876002464443445, + -0.006081792525947094, + 0.0188608355820179, + -0.006164515390992165, + 0.0052049290388822556, + -5.888841042178683e-5, + 0.01586957462131977, + 0.023056546226143837, + -0.009423800744116306, + -0.009437035769224167, + 0.022619768977165222, + -0.002379112644121051, + -0.003272520611062646, + 0.023758037015795708, + -0.016226937994360924, + -0.0031533995643258095, + 0.012772426009178162, + -0.023374201729893684, + 0.0033982594031840563, + -0.009304678998887539, + -0.015459268353879452, + 0.024419819936156273, + 0.023983042687177658, + 0.005360448267310858, + -0.011296648532152176, + -0.00934438593685627, + -0.04039527848362923, + 0.01936379261314869, + 0.01401657983660698, + 0.009847342036664486, + 0.012077553197741508, + -0.013083464466035366, + -0.015618096105754375, + 0.0009943300392478704, + -9.094356209971011e-5, + 0.017034312710165977, + 0.007948022335767746, + 0.025941923260688782, + -0.011223852634429932, + 0.001173011725768447, + -0.010204705409705639, + 0.011872400529682636, + 0.00883481279015541, + 0.017722567543387413, + 0.0003383369476068765, + 0.005621852818876505, + 0.003014424815773964, + 0.018582887947559357, + -0.00958262849599123, + -0.006382904015481472, + -0.006770047824829817, + 0.008550246246159077, + -0.0032592848874628544, + -0.02386392094194889, + -0.015750452876091003, + -0.005893184337764978, + -0.010886342264711857, + -0.01849023811519146, + -0.022831538692116737, + -0.006568203680217266, + 0.0206608884036541, + 0.018979957327246666, + 0.013579802587628365, + 0.0010241103591397405, + 0.019522620365023613, + -0.012613598257303238, + -0.01888730749487877, + 0.017087256535887718, + 0.018596123903989792, + -0.004195708781480789, + 0.009701749309897423, + 0.008232589811086655, + -0.009662042371928692, + 0.011965050362050533, + -0.006210840307176113, + 0.011687100864946842, + 0.0052611809223890305, + 0.028191987425088882, + -0.017007842659950256, + -0.011342973448336124, + 0.002974717877805233, + -0.0183181744068861, + -0.007173735648393631, + -0.03073323704302311 + ], + "85674089-ac2b-4e17-bcbd-8a26e52e0479": [ + -0.00660941144451499, + -0.020455872640013695, + -0.007582890801131725, + -0.03481468930840492, + -0.05902358144521713, + -0.03299582004547119, + -0.0022911985870450735, + 0.04762362688779831, + 0.01652352884411812, + 0.04022006317973137, + -0.005952953360974789, + 0.06194401904940605, + -0.03550637140870094, + -0.01620330475270748, + 0.00041629045153968036, + -0.007819855585694313, + -0.03396930173039436, + 0.01592150889337063, + 0.00813367497175932, + -0.0011808238923549652, + 0.07408688962459564, + -0.04926317185163498, + -0.022261932492256165, + 0.008940638042986393, + -0.03788883611559868, + -0.04283308610320091, + 0.011720176786184311, + -0.0018925204640254378, + -0.0076789576560258865, + -0.026565734297037125, + 0.00968996062874794, + 0.009760409593582153, + 0.037683892995119095, + -0.010138273239135742, + 0.012719274498522282, + 0.0093377148732543, + -0.007108959835022688, + 0.030101001262664795, + -0.03532704710960388, + 0.004662453196942806, + -0.008601200766861439, + 0.008325808681547642, + -0.0015130556421354413, + -0.009504230692982674, + -0.040091972798109055, + 0.051210127770900726, + 0.023389117792248726, + -0.0013825646601617336, + 0.015357915312051773, + -0.00908794067800045, + 0.0012864975724369287, + 0.025643492117524147, + -0.00768536189571023, + 0.018060600385069847, + 0.0008974261581897736, + 0.015293870121240616, + -0.01721521094441414, + 0.0644545704126358, + 0.020955421030521393, + -0.02833336777985096, + -0.0086140101775527, + 0.010938831605017185, + 0.014153875410556793, + 0.014102639630436897, + 0.014102639630436897, + -0.03763265535235405, + 0.010349621064960957, + 0.009196816943585873, + -0.03386683017015457, + -0.005443797912448645, + 0.001642746152356267, + 0.032329756766557693, + -0.04265375807881355, + -0.004118073265999556, + -0.00441267853602767, + -0.020788904279470444, + 0.012181298807263374, + -0.04073241725564003, + 0.007602103985846043, + 0.011079730466008186, + -0.01939273066818714, + 0.009645129553973675, + 0.026309555396437645, + -0.015806227922439575, + 0.03614681959152222, + 0.02445225976407528, + -0.04572790488600731, + -0.03230413794517517, + -0.06865590065717697, + -0.027001239359378815, + 0.013129159808158875, + -0.0023408331908285618, + 0.0027763370890170336, + 0.009613106958568096, + -0.007890305481851101, + -0.023401927202939987, + 0.024311361834406853, + 0.029588643461465836, + -0.026463262736797333, + -0.019277449697256088, + -0.01566532999277115, + 0.029486171901226044, + -0.03394368290901184, + 0.003413581755012274, + 0.018905989825725555, + -0.0449337512254715, + 0.037171535193920135, + 0.0032182454597204924, + -0.017689142376184464, + 0.0379144512116909, + 0.04485689848661423, + -0.011950737796723843, + -0.013872078619897366, + 0.004646441899240017, + 0.016177687793970108, + -0.08459021896123886, + 0.0015795020153746009, + -0.03007538430392742, + -0.006731096189469099, + -0.05840875208377838, + 0.019008461385965347, + 0.02807718887925148, + 0.04083488881587982, + -0.005770426243543625, + 0.012411859817802906, + -0.009055918082594872, + -0.041910842061042786, + 0.02022531069815159, + -0.002952459966763854, + 0.02326102927327156, + 0.023645296692848206, + -0.008165697567164898, + -0.027616066858172417, + 0.00727547612041235, + 0.0011071724584326148, + 0.016241731122136116, + 0.01756105199456215, + 0.046368349343538284, + -0.016254540532827377, + 0.03986141085624695, + -0.012905003502964973, + -0.026386409997940063, + -0.011656132526695728, + -0.0041981288231909275, + 0.020366208627820015, + 0.02679629623889923, + -0.03238099068403244, + 0.02014845795929432, + 0.005498236045241356, + 0.008370639756321907, + -0.02524641528725624, + 0.01585746370255947, + 0.039733320474624634, + 0.009049514308571815, + -0.02144216001033783, + 0.04234634339809418, + 0.029921676963567734, + 0.015575666911900043, + -0.021903282031416893, + -0.0009982965420931578, + -0.020635196939110756, + -0.023670915514230728, + 0.007506037130951881, + -0.0011600092984735966, + -0.0027523203752934933, + -0.004201331175863743, + 0.05323394015431404, + 0.028358986601233482, + -0.06276378780603409, + 0.010823551565408707, + 0.028717637062072754, + -0.02162148617208004, + 0.029665498062968254, + 0.0029748755041509867, + -0.02049429900944233, + 0.01635701209306717, + 0.0035000420175492764, + 0.0017804421950131655, + 0.040962979197502136, + -0.026463262736797333, + -0.007563677150756121, + -0.0005635932320728898, + -0.048878904432058334, + -0.0033719525672495365, + -0.013295676559209824, + 0.01936711184680462, + 0.004559981636703014, + 0.02067362330853939, + -0.036121200770139694, + 0.04383218288421631, + -0.0003758622333407402, + 0.007999180816113949, + 0.01686936989426613, + 0.07562395930290222, + -0.01300107128918171, + -0.003464817302301526, + -0.012770510278642178, + -0.01653633825480938, + 0.04042500630021095, + 0.011809839867055416, + 0.00449913926422596, + -0.029127521440386772, + -0.05220922455191612, + 0.020110031589865685, + -0.028999432921409607, + 0.0111501794308424, + 0.014538142830133438, + -0.03473783656954765, + -0.0102855758741498, + -0.006074638105928898, + 0.01826554350554943, + -0.03642861545085907, + 0.00873569492250681, + 0.007614912930876017, + -0.03048526868224144, + -0.009574680589139462, + -0.010586585849523544, + 0.008876592852175236, + 0.015396341681480408, + 0.01645948365330696, + -0.03765827417373657, + -0.008786930702626705, + 0.03140751272439957, + -0.035019632428884506, + -0.03619805723428726, + -0.03809377923607826, + -0.04262814298272133, + 0.0074548013508319855, + -0.022851143032312393, + -0.017535435035824776, + 0.0439346544444561, + -0.004860991612076759, + 0.011118156835436821, + -0.01686936989426613, + -0.02187766321003437, + 0.006004189141094685, + -0.018483296036720276, + -0.011431976221501827, + 0.0210194643586874, + -0.014653423801064491, + 0.04352476820349693, + 0.021928898990154266, + 0.021634293720126152, + 0.027180563658475876, + 0.032765261828899384, + 0.03929781913757324, + -0.015972744673490524, + 0.04006635397672653, + 0.03110009804368019, + -0.02979358658194542, + -0.018150262534618378, + 0.0356856994330883, + 0.015998361632227898, + -0.016779707744717598, + -0.0034359972923994064, + 0.009517040103673935, + 0.006340423598885536, + 0.0006976868025958538, + -0.03309829160571098, + -0.012411859817802906, + -0.006497333291918039, + -0.0003336327790748328, + 0.009914116933941841, + -0.03450727462768555, + 0.036223672330379486, + -0.01765071414411068, + 0.017163975164294243, + -0.05845998600125313, + 0.00047313011600635946, + 0.01636982150375843, + -0.05676920711994171, + -0.008729290217161179, + -0.03453289344906807, + -0.011643323116004467, + -0.020724859088659286, + 0.012949835509061813, + 0.02360687032341957, + 0.02894819714128971, + 0.015396341681480408, + 0.01747138984501362, + -0.017894085496664047, + 0.0037626251578330994, + 0.003884310135617852, + 0.020289355888962746, + -0.03783759847283363, + -0.02488776482641697, + 0.01585746370255947, + 0.0047713289968669415, + -0.025976523756980896, + -0.010753102600574493, + 0.0010447289096191525, + -0.013116351328790188, + 0.033892445266246796, + 0.002193530322983861, + 0.02490057237446308, + -0.014064212329685688, + -0.022953614592552185, + -0.014717468060553074, + 0.00035644869785755873, + 0.020968230441212654, + -0.012655229307711124, + 0.0021390924230217934, + 0.032329756766557693, + -0.004191724583506584, + 0.009536253288388252, + 0.0036953783128410578, + 0.023363500833511353, + -0.0018957227002829313, + -0.031074481084942818, + 0.006820758804678917, + 0.02841022238135338, + 0.025989333167672157, + 0.0014113846700638533, + -0.029844822362065315, + -0.011047707870602608, + 0.009043109603226185, + 0.013193204998970032, + -0.012206916697323322, + 0.0009222434600815177, + -0.03463536500930786, + -0.0010655433870851994, + 0.00497306976467371, + -0.03993826359510422, + -0.0018925204640254378, + 0.029434936121106148, + -0.033021438866853714, + 0.012091636657714844, + 0.005482224747538567, + -0.0072050271555781364, + -0.027795393019914627, + 0.01443567220121622, + -0.006439692806452513, + -0.019072506576776505, + -0.0366847962141037, + 0.00835142657160759, + -0.00934411957859993, + -0.011137370951473713, + -0.03683850169181824, + 0.006346828304231167, + 0.013718371279537678, + -0.005610314197838306, + 0.037248387932777405, + -0.002601815387606621, + 0.024772483855485916, + 0.011873884126543999, + -0.0007489225245080888, + -0.0024320969823747873, + 0.045779138803482056, + -0.012386241927742958, + -0.008082439191639423, + 0.0005443798145279288, + -0.03640299662947655, + 0.03291896730661392, + 0.0074291834607720375, + 0.023017659783363342, + 0.020353401079773903, + -0.026040568947792053, + -0.027692921459674835, + 0.011899502016603947, + 0.017010267823934555, + 0.005498236045241356, + -0.026668205857276917, + -0.038298722356557846, + -0.0281540434807539, + 0.009292883798480034, + 0.01695903204381466, + 0.024682821705937386, + 0.04708565026521683, + 0.0032822899520397186, + 0.013487810268998146, + -0.008556369692087173, + 0.06696511805057526, + 0.02058396115899086, + -0.00544700026512146, + -0.04239758104085922, + 0.008908615447580814, + 0.020263738930225372, + -0.016561955213546753, + -0.02136530727148056, + 0.027769774198532104, + 0.0053221131674945354, + 0.007851878181099892, + -0.0025089504197239876, + -0.001111975871026516, + 0.048545870929956436, + 0.02196732722222805, + 0.012110849842429161, + 0.004793744534254074, + -0.03353379666805267, + -0.038452427834272385, + -0.0458303764462471, + -0.016728471964597702, + -0.026719441637396812, + 0.017625097185373306, + -0.022607773542404175, + 0.024772483855485916, + -0.01698465086519718, + 0.0011720177717506886, + 0.017932511866092682, + 0.022876761853694916, + 0.009677152149379253, + -0.015332297421991825, + 0.004124477505683899, + 0.02636079117655754, + 0.01403859443962574, + -0.019098125398159027, + 0.006743905134499073, + 0.0031525995582342148, + -0.00196937401778996, + -0.010605799965560436, + -0.005097956862300634, + -0.004636835306882858, + -0.003072543768212199, + -0.02420889027416706, + 0.04193646088242531, + -0.004246162716299295, + 0.044242069125175476, + -0.014807131141424179, + -0.051722485572099686, + 0.0055462694726884365, + 0.03317514806985855, + 0.06865590065717697, + -0.028743254020810127, + 0.03238099068403244, + -0.02496461756527424, + 0.00618351437151432, + 0.058101337403059006, + 0.03092077374458313, + 0.0032950988970696926, + -0.02351720817387104, + -0.032329756766557693, + -0.012469500303268433, + -0.021634293720126152, + -0.024003947153687477, + 0.004255769308656454, + 0.015601284801959991, + 0.014999264851212502, + -0.0074548013508319855, + -0.019264640286564827, + -0.002313614124432206, + 0.015793418511748314, + 0.011585683561861515, + 0.005072338972240686, + 0.0046816663816571236, + 0.0120980404317379, + -0.02205698937177658, + -0.00538295553997159, + -0.007377947680652142, + -0.004137286450713873, + 0.01920059695839882, + -0.0009894904214888811, + 0.026463262736797333, + -0.030177855864167213, + 0.020199693739414215, + -0.0036665580701082945, + 0.028102807700634003, + -0.03350817784667015, + -0.0006868792115710676, + 0.03624929115176201, + 0.012027591466903687, + -0.030382798984646797, + 0.006603006739169359, + 0.024951808154582977, + -0.04022006317973137, + -0.007173004560172558, + -0.04265375807881355, + -0.04357600212097168, + 0.03504525125026703, + -0.003535266499966383, + -0.033713120967149734, + -0.019149361178278923, + 0.03022909164428711, + -0.012738487683236599, + 0.01784284971654415, + -0.012335006147623062, + -0.008031203411519527, + 0.009011087007820606, + -0.0032262508757412434, + 0.03022909164428711, + -0.009228838607668877, + -0.01730487309396267, + -0.022364404052495956, + -0.026078995317220688, + -0.00042149407090619206, + 0.04032253473997116, + -0.00013759599823970348, + -0.011041303165256977, + 0.025387313216924667, + 0.014192301779985428, + 0.018496105447411537, + 0.04967305809259415, + -0.021852046251296997, + -0.009318501688539982, + -0.0013201209949329495, + -0.0071666003204882145, + -0.05415618419647217, + 0.028282131999731064, + -0.00045751919969916344, + -0.017509816214442253, + -0.03460974618792534, + 0.04849463328719139, + -0.005488629452884197, + 0.04062994569540024, + 0.0077301934361457825, + 0.0010599395027384162, + -0.011617705225944519, + 0.004118073265999556, + 0.0200716033577919, + 0.00540537154302001, + -0.0051427879370749, + -0.006141885183751583, + 0.010983663611114025, + -0.028999432921409607, + 0.023030469194054604, + -0.03350817784667015, + 0.015703756362199783, + -0.011002876795828342, + 0.021672721952199936, + 0.005901717580854893, + -0.01671566255390644, + -0.0016539539210498333, + 0.005892110988497734, + 0.004630430601537228, + 0.008172101341187954, + 0.0012392646167427301, + -0.009523444809019566, + -0.01850891299545765, + 0.014307582750916481, + 0.04075803607702255, + 0.0007621317636221647, + 0.010215126909315586, + 0.0027379102539271116, + 0.004073241725564003, + -0.014922411181032658, + 0.01369275338947773, + -0.0016763695748522878, + 0.037171535193920135, + -0.0023728555534034967, + -0.004777733236551285, + 0.02997291274368763, + -0.0060682338662445545, + 0.020776094868779182, + -0.01175860408693552, + -0.024926191195845604, + 0.03281649574637413, + 0.04150095582008362, + -0.03737647831439972, + 0.022940805181860924, + 0.0006688666762784123, + 0.025361694395542145, + -0.017727568745613098, + 0.00617710966616869, + 0.0029556620866060257, + -0.006788736674934626, + 0.02309451252222061, + -0.029076285660266876, + 0.03712029755115509, + -0.029742350801825523, + -0.056461792439222336, + 0.0026882756501436234, + 0.03704344481229782, + -0.019059697166085243, + 0.011438380926847458, + -0.014819939620792866, + -0.0417058989405632, + -0.009754005819559097, + -0.008255359716713428, + 0.007326711900532246, + -0.01334691233932972, + 0.013410956598818302, + 0.02884572558104992, + 0.004252566955983639, + 0.028563929721713066, + -0.008389853872358799, + -0.0015803026035428047, + 0.015204207971692085, + 0.0047809355892241, + 0.011361527256667614, + -0.023555634543299675, + 0.012463095597922802, + 0.022005753591656685, + -0.0454973429441452, + -0.019687335938215256, + -0.030357180163264275, + -0.001597914844751358, + 0.007634126115590334, + -0.04736744984984398, + -0.03571131452918053, + 0.0105097321793437, + 0.012911408208310604, + -0.014576570130884647, + 0.03581378608942032, + 0.03202234208583832, + -0.013231631368398666, + -0.025605063885450363, + 0.029588643461465836, + -0.001578701427206397, + 0.014819939620792866, + -0.009420973248779774, + 0.006538962014019489, + -0.024746865034103394, + 0.02568191848695278, + 0.028794489800930023, + -0.01868823915719986, + 0.0017612287774682045, + 0.018585767596960068, + 0.009318501688539982, + -0.029383700340986252, + -0.01076591107994318, + -0.016177687793970108, + -0.008780525997281075, + 0.0002211543032899499, + 0.025963714346289635, + -0.005674358922988176, + 0.027283035218715668, + 0.014922411181032658, + 0.029588643461465836, + 0.025003043934702873, + 0.01369275338947773, + -0.016728471964597702, + 0.013487810268998146, + -0.06752871721982956, + 0.04098859801888466, + -0.0027122923638671637, + 0.032329756766557693, + -0.005069136619567871, + -0.011207819916307926, + -0.02584843523800373, + -0.023837432265281677, + 0.0172280203551054, + 0.016088023781776428, + 0.0016011170810088515, + 0.023722151294350624, + -0.012155680917203426, + 0.004377454053610563, + 0.014410054311156273, + 0.016741279512643814, + 0.03273964300751686, + -0.00862041488289833, + -0.0007529252907261252, + 0.0026162252761423588, + -0.011841862462460995, + 0.0031974308658391237, + 0.0037113893777132034, + -0.02299204096198082, + -0.009023896418511868, + -0.0379144512116909, + 0.013167587108910084, + 0.018739474937319756, + 0.003890714608132839, + -0.05187619477510452, + 0.012937026098370552, + 0.02669382467865944, + 0.005197226069867611, + -0.0039451527409255505, + -0.046906325966119766, + -0.01713835820555687, + 0.012066018767654896, + 0.033815592527389526, + 0.0006332418415695429, + 0.02601495012640953, + 0.00018282755627296865, + -0.012571971863508224, + -0.009324906393885612, + 0.017279256135225296, + 0.011175797320902348, + 0.0024000746197998524, + -0.004627228248864412, + 0.0035833001602441072, + 0.01808621920645237, + -0.015076118521392345, + -0.010336811654269695, + 0.012885790318250656, + 0.014960838481783867, + 0.000639246020000428, + -0.01954643800854683, + -0.006250760983675718, + -0.011515234597027302, + 0.0213524978607893, + -0.019277449697256088, + 0.006961657200008631, + 0.00981164537370205, + -0.00381065858528018, + 0.02524641528725624, + 0.028205279260873795, + -0.014704659581184387, + 0.008748503401875496, + 0.039835792034864426, + -0.006436490919440985, + -0.0038330743554979563, + 0.0025281638372689486, + 0.016933415085077286, + -0.036479853093624115, + 0.04390903562307358, + 0.012277365662157536, + 0.021211599931120872, + -0.023120131343603134, + -0.004566385876387358, + 0.03135627880692482, + -0.02575877122581005, + -0.0223003588616848, + -0.01946958340704441, + -0.001578701427206397, + -0.004537565633654594, + -0.0068655903451144695, + 0.022197887301445007, + -0.015255443751811981, + -0.01575499214231968, + 0.013731180690228939, + -0.02401675656437874, + 0.03153560310602188, + 0.004736104514449835, + -0.020276546478271484, + 0.011662537232041359, + 0.0032886944245547056, + 0.008242551237344742, + -0.01214287243783474, + 0.011713773012161255, + -0.005587898660451174, + 0.010644226334989071, + -0.020302165299654007, + 0.05243978649377823, + 0.007108959835022688, + -0.05661550164222717, + -0.03614681959152222, + 0.012040400877594948, + 0.01394893229007721, + 0.016741279512643814, + -0.005667954683303833, + -0.0044703190214931965, + 0.026232702657580376, + 0.007486823480576277, + -0.03140751272439957, + 0.007794238161295652, + -0.02178800106048584, + -0.02240283042192459, + -0.026488881558179855, + -0.0038202654104679823, + 0.011329504661262035, + -0.03197110444307327, + -0.005040316842496395, + -0.01662600040435791, + 0.037069063633680344, + 0.008549964986741543, + 0.025259222835302353, + 0.016331395134329796, + 0.0013177193468436599, + 0.008581987582147121, + 0.02109631896018982, + 0.014474098570644855, + 0.04193646088242531, + -0.04823845624923706, + 0.0344560407102108, + 0.018111836165189743, + -0.02625831961631775, + -0.013872078619897366, + -0.00849232543259859, + 0.008710077032446861, + -0.021237216889858246, + 0.03437918797135353, + -0.01524263434112072, + 0.005110765807330608, + 0.006570984609425068, + -0.019085315987467766, + 0.01029198057949543, + -0.0039579616859555244, + -0.03530142828822136, + 0.04088612645864487, + 0.038631752133369446, + -0.02748797833919525, + 0.010067824274301529, + -0.008441089652478695, + -0.0001297905546380207, + 0.024426642805337906, + 0.010445687919855118, + -0.018214307725429535, + 0.04539487138390541, + 0.014743085950613022, + -0.03532704710960388, + 0.012431073002517223, + -0.008633223362267017, + -0.05228608101606369, + -0.014602188020944595, + -0.020443063229322433, + 0.013974550180137157, + -0.0074035655707120895, + 0.0145509522408247, + 0.016587574034929276, + -0.030357180163264275, + -0.002063839929178357, + 0.0036409401800483465, + 0.0064076706767082214, + 0.0016075215535238385, + 0.012603993527591228, + 0.008505133911967278, + 0.007550868205726147, + 0.004025208298116922, + -0.003986781463027, + 0.0004078845668118447, + 0.0031349873170256615, + -0.00437104981392622, + -0.04255128651857376, + 0.007896709255874157, + 0.045446109026670456, + -0.007819855585694313, + 0.0017436165362596512, + 0.009517040103673935, + 0.01227096188813448, + 0.023478781804442406, + 0.010445687919855118, + -0.038273103535175323, + 0.01369275338947773, + -0.02326102927327156, + 0.024772483855485916, + 0.0102855758741498, + 0.0023568442557007074, + 0.0012160484911873937, + -0.02971673384308815, + 0.005069136619567871, + -0.039400290697813034, + -0.003088554833084345, + 0.02505427971482277, + -0.0006272376049309969, + 0.029409319162368774, + -0.013705562800168991, + -0.011636919341981411, + -0.0024385014548897743, + 9.276471973862499e-5, + 0.011636919341981411, + 0.017176784574985504, + -0.0034199862275272608, + 0.0013017081655561924, + -0.012283770367503166, + 0.004134084563702345, + 0.015473195351660252, + 0.03353379666805267, + -0.024670012295246124, + -0.006279581226408482, + -0.02661697007715702, + -0.007173004560172558, + -0.005671156570315361, + -0.020379018038511276, + -0.02556663751602173, + -0.006763118784874678, + 0.009280074387788773, + 0.009254456497728825, + 0.00727547612041235, + -0.00465284613892436, + 0.028051571920514107, + 0.016754088923335075, + -0.0035640867426991463, + -0.02609180472791195, + -0.01671566255390644, + -0.006756714079529047, + -0.04470318928360939, + 0.03281649574637413, + 4.57569258287549e-5, + 0.029767969623208046, + 0.025733154267072678, + 0.011175797320902348, + 0.008658841252326965, + 0.005251664202660322, + 0.00031582036172039807, + -0.04273061454296112, + -0.005463011562824249, + 0.011207819916307926, + -0.016766898334026337, + 0.03127942234277725, + 0.001246469677425921, + 0.006551770959049463, + 0.003618524642661214, + 0.0018332790350541472, + 0.01602398045361042, + -0.007960754446685314, + -0.039579614996910095, + -0.026668205857276917, + 0.0020414243917912245, + 0.013007475063204765, + -0.004447903484106064, + 0.004226949065923691, + -0.011732986196875572, + 0.021326879039406776, + 0.03084391914308071, + 0.0014466092688962817, + -0.07301093637943268, + 0.00835142657160759, + 0.004403071943670511, + 0.002251170575618744, + -0.011777817271649837, + -0.01706150360405445, + -0.009850072674453259, + -0.011905906721949577, + -0.015562858432531357, + -0.04403712600469589, + -0.0009230439900420606, + -0.0530802346765995, + 0.0071794092655181885, + -0.008530751802027225, + 0.003381559392437339, + -0.014397244900465012, + -0.00994613952934742, + -0.01042007002979517, + -0.02568191848695278, + 0.009517040103673935, + -0.01593431830406189, + -0.035429518669843674, + 0.0011351919965818524, + 0.018329588696360588, + -0.005088350269943476, + 0.06383974105119705, + 0.010580182075500488, + 0.01850891299545765, + -0.02764168567955494, + -0.019072506576776505, + 0.03140751272439957, + 0.018201498314738274, + 0.02317136712372303, + -0.007044915109872818, + -0.0077558113262057304, + 0.006782331969588995, + -0.0041693090461194515, + -0.0032774866558611393, + 0.016228923574090004, + 0.0023920689709484577, + -0.008402662351727486, + -0.0129626439884305, + 0.009715578518807888, + 0.02385023981332779, + 0.027001239359378815, + 0.00029700720915570855, + 0.0006680660881102085, + 0.0010399256134405732, + -0.0024433047510683537, + -0.03327761963009834, + 0.024183273315429688, + -0.02084014005959034, + 0.021634293720126152, + 0.006827163510024548, + -0.039144109934568405, + -0.0470600351691246, + -0.024311361834406853, + -0.002665859879925847, + 0.019315876066684723, + -0.026821913197636604, + 0.014397244900465012, + -0.008530751802027225, + -0.01515297219157219, + 0.03455851227045059, + 0.008684459142386913, + -0.011002876795828342, + 0.033789973706007004, + 0.04726497828960419, + -0.0038330743554979563, + -0.017881276085972786, + 0.0019837841391563416, + 0.029153140261769295, + 0.0032294532284140587, + 0.027154946699738503, + 0.0007885501836426556, + -0.012085231952369213, + 0.013923314400017262, + -0.004579194821417332, + -0.021647103130817413, + -0.0052132373675704, + -0.011130966246128082, + 0.009459399618208408, + -0.041398484259843826, + 0.01963610015809536, + 0.014115448109805584, + 0.018829137086868286, + -0.007531655021011829, + -0.008216933347284794, + -0.0058568865060806274, + -0.02368372492492199, + 0.02764168567955494, + -0.017548242583870888, + -0.01877790130674839, + 0.01636982150375843, + 0.013321294449269772, + -0.010721080005168915, + 0.034225478768348694, + 0.00019333488307893276, + 0.00960029847919941, + -0.024093609303236008, + -0.005565483123064041, + 0.01080433838069439, + -0.015140163712203503, + -0.01601117104291916, + 0.013551855459809303, + -0.02022531069815159, + 0.026745060458779335, + -0.015268252231180668, + 0.010618608444929123, + -0.01963610015809536, + 0.010407261550426483, + -0.01503769215196371, + -0.022261932492256165, + -0.005920931231230497, + -2.997090996359475e-5, + -0.00430700508877635, + -0.0037370072677731514, + -0.0041853198781609535, + -0.03376435860991478, + 0.05115889385342598, + 0.013295676559209824, + -0.011265459470450878, + -0.0029316453728824854, + -0.009978162124752998, + 0.029409319162368774, + 0.02214665152132511, + -0.01747138984501362, + 0.010586585849523544, + 0.003829872002825141, + -0.01356466393917799, + 0.047316212207078934, + 0.007051319815218449, + 0.022889569401741028, + -0.028384603559970856, + -0.028307750821113586, + 0.02568191848695278, + -0.030972009524703026, + -0.024144845083355904, + 0.016408247873187065, + 0.025784390047192574, + -0.02531045861542225, + 0.0006256364868022501, + 0.00899827852845192, + -0.0020238119177520275, + 0.009446591138839722, + 0.01946958340704441, + -0.02290237881243229, + 0.012853767722845078, + -0.006846376694738865, + -0.005402169190347195, + 0.005312506575137377, + -0.01093242783099413, + 0.016292966902256012, + -0.04572790488600731, + -0.027078092098236084, + 0.011989165097475052, + 0.03281649574637413, + -0.009536253288388252, + -0.02368372492492199, + -0.003656951477751136, + 0.011419166810810566, + -0.017099929973483086, + -0.003631333587691188, + 0.021659912541508675, + 0.004566385876387358, + 0.022723054513335228, + 0.032176047563552856, + -0.005389360245317221, + 0.029255611822009087, + -0.0006852780934423208, + 0.0038650967180728912, + -0.003490435192361474, + 0.0007777426508255303, + -0.009312096983194351, + -0.006577388849109411, + 0.021083509549498558, + 0.004848182667046785, + 0.015306679531931877, + 0.02677067741751671, + -0.043268587440252304, + 0.0210194643586874, + -0.03212481364607811, + 0.0022143449168652296, + 0.031074481084942818, + 0.01524263434112072, + -0.005930537823587656, + 0.021903282031416893, + 0.01955924555659294, + -0.012200511991977692, + 0.02654011733829975, + 0.015204207971692085, + 0.018457677215337753, + 0.009933330118656158, + 0.021634293720126152, + 0.007550868205726147, + -0.004073241725564003, + -0.006490928586572409, + 0.008210528641939163, + -0.00800558552145958, + 0.0016355410916730762, + -0.03015223704278469, + -0.00810165237635374, + 0.0230817049741745, + 0.008722885511815548, + -0.0023728555534034967, + 0.022197887301445007, + -0.022005753591656685, + 0.011745794676244259, + 0.011470402590930462, + 0.002159907016903162, + -0.004262173548340797, + 0.00826176442205906, + -0.023312265053391457, + 0.04150095582008362, + 0.009721983224153519, + 0.0018797115189954638, + 0.008511538617312908, + -0.013500619679689407, + -0.0032102398108690977, + -0.008274572901427746, + 0.026565734297037125, + 0.03263717144727707, + 0.004310207441449165, + -0.029178757220506668, + 0.018483296036720276, + 0.02472124807536602, + 0.007243453525006771, + 0.012341410852968693, + 0.013743989169597626, + 0.016856560483574867, + -0.003279087832197547, + -0.029511790722608566, + -0.01904688961803913, + 0.0007012892747297883, + -0.010849169455468655, + 0.029383700340986252, + -0.015460386872291565, + 0.004656048491597176, + -0.04039938747882843, + -0.0025009450037032366, + 0.007269071415066719, + -0.03722276911139488, + 0.0014089830219745636, + 0.012463095597922802, + 0.014256346970796585, + 0.008511538617312908, + 0.029486171901226044, + -0.015473195351660252, + 0.009773219004273415, + 0.005440596025437117, + -0.01592150889337063, + -0.000754126172978431, + 0.0035256599076092243, + 0.0028916175942867994, + -0.01775318570435047, + 0.0068399724550545216, + -0.030434032902121544, + -0.013718371279537678, + 0.006807949859648943, + 0.004812958184629679, + -0.011457594111561775, + -9.066325583262369e-5, + -0.0154988132417202, + 0.009011087007820606, + -0.006961657200008631, + -0.004867395851761103, + -0.005936942063271999, + -0.014538142830133438, + 0.012905003502964973, + -0.02920437604188919, + -0.015562858432531357, + -0.04770047962665558, + 0.00447672326117754, + 0.009280074387788773, + 0.01516578160226345, + -0.00012088433868484572, + -0.02377338707447052, + -0.014858366921544075, + 0.008255359716713428, + 0.0162801593542099, + -0.01451252494007349, + 0.01270006038248539, + -0.001693981932476163, + -0.012520736083388329, + 0.011861075647175312, + -0.008940638042986393, + 0.021250026300549507, + 0.006692669354379177, + 0.008530751802027225, + 0.03399491682648659, + -0.019341494888067245, + -0.005680763628333807, + 0.00012078427243977785, + -0.01868823915719986, + 0.011002876795828342, + 0.0009006283944472671, + -0.0018268745625391603, + -0.008799739181995392, + -0.006980870384722948, + 0.006763118784874678, + -0.01964890956878662, + 0.017701949924230576, + -0.022633390501141548, + 0.007288285065442324, + 0.02461877651512623, + 0.005017900839447975, + -0.011066921055316925, + -0.007076937705278397, + -0.006282783579081297, + -0.011175797320902348, + -0.010829956270754337, + 0.0058344705030322075, + -0.013398148119449615, + 0.008037608116865158, + 0.005655145738273859, + 0.015780610963702202, + -0.024593159556388855, + 0.04470318928360939, + 0.009030300192534924, + -0.025015853345394135, + 0.0006916825659573078, + -0.013033092953264713, + -0.003162206383422017, + 0.003445603884756565, + 0.01442286279052496, + -0.0113743357360363, + -0.005113968160003424, + 0.005661549977958202, + 0.005735201295465231, + -0.016139259561896324, + 0.004239758010953665, + 0.01826554350554943, + 0.00447672326117754, + -0.0045087458565831184, + -0.006833567749708891, + -0.019687335938215256, + -0.0007513241725973785, + 0.006366041488945484, + -0.01369275338947773, + -0.0052420576103031635, + 0.01245028618723154, + -0.0309976264834404, + 0.004255769308656454, + 0.015050500631332397, + -0.00015821038687136024, + -0.0018012567888945341, + 0.021301262080669403, + 0.016075216233730316, + -0.011508829891681671, + 0.031048862263560295, + -0.015908699482679367, + -0.009292883798480034, + 0.0024689226411283016, + -0.0186754297465086, + -0.017548242583870888, + -0.0029412521980702877, + 0.01356466393917799, + -0.00021254830062389374, + 0.022774290293455124, + -0.01575499214231968, + 0.01748419925570488, + 0.03530142828822136, + -0.027846628800034523, + 0.011015685275197029, + 0.004608015064150095, + -0.013500619679689407, + 0.0008169700158759952, + 0.012783318758010864, + -0.01124624628573656, + -0.011252650991082191, + -0.011380740441381931, + -0.0015066511696204543, + 0.013884887099266052, + -0.007493228185921907, + -0.008902210742235184, + -0.0044318921864032745, + -0.030972009524703026, + -0.0068783992901444435, + 0.013513428159058094, + 0.0031542007345706224, + -0.021339688450098038, + 0.007967159152030945, + 0.01686936989426613, + -0.004409476649016142, + -0.0034231883473694324, + -0.010560967959463596, + 0.01698465086519718, + 0.0019805817864835262, + -0.04142410308122635, + 0.02565629966557026, + -0.006686265114694834, + 0.016741279512643814, + 0.010618608444929123, + -0.0208529494702816, + -0.03110009804368019, + -0.011560065671801567, + 0.020712051540613174, + 0.008076034486293793, + 0.004877002909779549, + -0.03624929115176201, + -0.00788390077650547, + -0.009446591138839722, + -0.001437803148292005, + 0.012994666583836079, + -0.03765827417373657, + -0.00618351437151432, + 0.03197110444307327, + 0.008466707542538643, + 0.022108225151896477, + -0.00465284613892436, + -0.010528946295380592, + 0.015114545822143555, + -0.023376310244202614, + 0.01876509189605713, + -0.001092762453481555, + -0.00787749607115984, + -0.005197226069867611, + 0.013398148119449615, + -0.007723788730800152, + -0.0021903282031416893, + -0.02153182215988636, + -0.0005543868173845112, + 0.007096150889992714, + -0.018739474937319756, + 0.008402662351727486, + -0.026219893246889114, + 0.0009694764157757163, + 0.026207083836197853, + 0.00848592072725296, + -0.009523444809019566, + 0.014807131141424179, + 0.012636016122996807, + -0.002262378577142954, + -0.012591185048222542, + -0.014845557510852814, + -0.010067824274301529, + -0.006426883861422539, + -0.005110765807330608, + -0.008991873823106289, + 0.005017900839447975, + 0.01305230613797903, + 0.014256346970796585, + 0.019674526527523994, + 0.02178800106048584, + 0.0024513101670891047, + -0.000995894894003868, + -0.018534531816840172, + 0.025438548997044563, + 0.007614912930876017, + -0.00443509453907609, + 0.002736309077590704, + -0.012783318758010864, + 0.009677152149379253, + 0.007973562926054, + -0.00667345616966486, + -0.0032102398108690977, + -0.0026418431662023067, + 0.004880204796791077, + -0.00021174774155952036, + -0.006455704104155302, + 0.011944334022700787, + 0.0024144845083355904, + 0.002584202913567424, + -0.017202401533722878, + 0.010964449495077133, + 0.004387060645967722, + 0.007602103985846043, + 0.009414568543434143, + 0.0008213730761781335, + -0.015357915312051773, + 0.00017111939087044448, + -0.023491589352488518, + 0.01489679329097271, + 0.008293787017464638, + -0.018150262534618378, + 0.0071922182105481625, + 0.011143774725496769, + -0.0016011170810088515, + 0.01645948365330696, + 0.03110009804368019, + 0.009248052723705769, + 0.008460302837193012, + -0.020622387528419495, + 0.015742182731628418, + 0.0036345357075333595, + 0.002539371605962515, + 0.002601815387606621, + 0.0041565001010894775, + -0.02154463157057762, + -0.006157896481454372, + -0.014499716460704803, + 0.012456690892577171, + 0.00227358634583652, + 0.02540012076497078, + -0.012443882413208485, + 0.001246469677425921, + 0.010471305809915066, + -0.008319404907524586, + 0.010272767394781113, + -0.00810165237635374, + 0.006468513049185276, + -0.004230151418596506, + 0.01102208998054266, + -0.01903408020734787, + 0.012994666583836079, + 0.01124624628573656, + 0.0060682338662445545, + -0.0026178264524787664, + 0.008690863847732544, + -0.008915020152926445, + 0.03747894987463951, + -0.017958128824830055, + -0.02610461227595806, + -0.006129076238721609, + -0.012584780342876911, + -0.004822564776986837, + 0.005088350269943476, + 0.025451356545090675, + 0.015383533202111721, + -0.001726004178635776, + 0.0015058505814522505, + -0.003528862027451396, + -0.013513428159058094, + -0.026898767799139023, + 0.0033911659847944975, + 0.0005639935261569917, + 0.0027010845951735973, + 0.000978282536379993, + 0.0015570863615721464, + 0.0006716686184518039, + 0.014525334350764751, + -0.018624193966388702, + 0.02335069142282009, + 0.002577798441052437, + 0.01859857700765133, + -0.053951241075992584, + 0.007262667175382376, + -0.00909434538334608, + -0.001079953508451581, + -0.013897696509957314, + 0.015588476322591305, + 0.007198622450232506, + 0.0186754297465086, + -0.013167587108910084, + 0.002563388552516699, + 0.034225478768348694, + 0.015255443751811981, + 0.018124645575881004, + 0.019930705428123474, + -0.011732986196875572, + 0.0032390598207712173, + -0.011950737796723843, + 0.022594964131712914, + -0.008204123936593533, + 0.02281271666288376, + 0.028487075120210648, + 0.01886756345629692, + -0.020635196939110756, + -0.013526237569749355, + -0.001577900955453515, + 0.009151984937489033, + 0.0007749406504444778, + -0.025694727897644043, + -0.010144677944481373, + -0.01330848503857851, + 0.0007044915109872818, + 0.0036345357075333595, + 0.007288285065442324, + 0.012571971863508224, + 0.01679251529276371, + 0.010490518994629383, + -0.0006792739150114357, + -0.01467904169112444, + -0.017420154064893723, + 0.00510115921497345, + 0.018201498314738274, + -0.025272032245993614, + -0.00514919264242053, + 0.006116267293691635, + 0.003484030719846487, + -0.007832664996385574, + -0.009075131267309189, + 0.019930705428123474, + -0.00801199022680521, + 0.008248955011367798, + -0.0015971142565831542, + -0.014589378610253334, + 0.015511622652411461, + 0.0010527344420552254, + 0.025784390047192574, + -0.00019913894357159734, + -0.008242551237344742, + -0.04454948380589485, + -0.006439692806452513, + -0.007640530820935965, + -0.022121034562587738, + -0.011771412566304207, + -0.018547341227531433, + -0.04875081405043602, + 0.014115448109805584, + -0.02315855771303177, + 0.0375814214348793, + 0.0021583058405667543, + 0.027283035218715668, + 0.004290993791073561, + 0.033789973706007004, + -0.02189047262072563, + -0.015332297421991825, + 0.029844822362065315, + 0.00611306494101882, + 0.0328933484852314, + -0.022454066202044487, + 0.025003043934702873, + 0.0154988132417202, + -0.015998361632227898, + -0.011912311427295208, + 0.008306595496833324, + -0.0037690296303480864, + 0.0052164397202432156, + -0.0016411449760198593, + -0.00981164537370205, + 0.00026318361051380634, + 0.01464061439037323, + -0.029409319162368774, + -0.005194023717194796, + -0.022185077890753746, + 0.0028900164179503918, + -0.019917896017432213, + -0.009549062699079514, + 0.01946958340704441, + 0.0006940842722542584, + 0.018393633887171745, + 0.006410873029381037, + 0.008947042748332024, + -0.02479810081422329, + -0.0058056507259607315, + 0.021928898990154266, + 0.005174810532480478, + 0.007461205590516329, + 0.012533544562757015, + -0.0008105655433610082, + -0.0019213404739275575, + 0.006679860409349203, + -0.02154463157057762, + 0.008402662351727486, + -0.0009790831245481968, + 0.025028662756085396, + 0.016241731122136116, + -0.04644520580768585, + 0.002020609797909856, + 0.015780610963702202, + 0.0032550711184740067, + 0.017714759334921837, + 0.005997784435749054, + 0.00044631140190176666, + -0.02300485037267208, + -0.0037498162128031254, + 0.004979474004358053, + 0.011438380926847458, + 0.008037608116865158, + 0.0102023184299469, + 0.011489616706967354, + -0.015742182731628418, + -0.011002876795828342, + 0.017292065545916557, + 0.007858282886445522, + 0.004527959041297436, + -0.007121768780052662, + 0.01567813940346241, + -0.003078948240727186, + -0.002781140385195613, + -0.011732986196875572, + -0.008793335407972336, + 0.010861978866159916, + -0.006452501751482487, + 0.002817966043949127, + -0.003893916727975011, + 0.0025041471235454082, + 0.005994582548737526, + 0.013020284473896027, + -0.011297482065856457, + 0.005456606857478619, + 0.00027058878913521767, + 0.0022287550382316113, + 0.00727547612041235, + 0.0041725109331309795, + 0.010259957984089851, + 0.009497826918959618, + 0.014410054311156273, + -0.020353401079773903, + -0.009869285859167576, + 0.013449383899569511, + 0.002958864439278841, + -0.0007549267029389739, + -0.005200428422540426, + -0.006433288566768169, + -0.015204207971692085, + -0.010304789990186691, + 0.059382230043411255, + 0.00822333712130785, + 0.00490902503952384, + 0.015486004762351513, + 0.006350030191242695, + -0.02661697007715702, + 0.003989983815699816, + 0.005360540002584457, + 0.013577473349869251, + -0.007160195615142584, + -0.023619679734110832, + -0.002384063322097063, + 0.03453289344906807, + 0.003266278887167573, + -0.029947293922305107, + 0.0023856644984334707, + 0.012085231952369213, + 0.0017532232450321317, + -0.00995254423469305, + 0.00968996062874794, + 0.01261680293828249, + -0.015050500631332397, + -0.004342229571193457, + 0.007839069701731205, + -0.004636835306882858, + 0.011047707870602608, + -0.0020814521703869104, + -0.020391827449202538, + 0.013116351328790188, + 0.01443567220121622, + 0.0047329021617770195, + -0.0047457111068069935, + -0.008332213386893272, + -0.014845557510852814, + -0.0036473446525633335, + -0.0013009076938033104, + 0.009241648018360138, + -0.004803351126611233, + -0.0007333116373047233, + -0.006439692806452513, + -0.009491422213613987, + -0.02126283571124077, + 0.025810007005929947, + 0.013026689179241657, + -0.04073241725564003, + 0.007281880360096693, + -0.021839236840605736, + 0.002825971692800522, + -0.011054112575948238, + 0.001279292511753738, + 0.012475904077291489, + -0.020443063229322433, + 0.02126283571124077, + 0.010996472090482712, + 0.02196732722222805, + -0.00258260197006166, + 0.02092980220913887, + 0.010689057409763336, + 0.011143774725496769, + -0.009504230692982674, + -0.02145496942102909, + -0.024439452216029167, + 0.01008063368499279, + 0.001125585287809372, + -0.018905989825725555, + 0.0003892715903930366, + -0.017343301326036453, + 0.009376142174005508, + 0.0036281312350183725, + -0.015601284801959991, + -0.012040400877594948, + -0.014653423801064491, + 0.008818953298032284, + -0.018291162326931953, + -0.012033996172249317, + 0.02066081576049328, + 0.018457677215337753, + 0.03220166638493538, + 0.023453162983059883, + -0.008063226006925106, + -0.015409151092171669, + -0.0027475168462842703, + -0.025886861607432365, + -0.015012074261903763, + 0.01154085248708725, + -0.022530918940901756, + 0.0173945352435112, + -0.04045062139630318, + 0.01524263434112072, + -0.023068895563483238, + -0.016472293063998222, + -0.021941708400845528, + 0.0015290668234229088, + 0.023734960705041885, + -0.008934233337640762, + -0.002065441105514765, + 0.005267675034701824, + 0.005837672855705023, + 0.004953856114298105, + -0.008767717517912388, + -0.0154988132417202, + -0.004201331175863743, + -0.011662537232041359, + 0.0011768210679292679, + -0.005773628130555153, + -0.003088554833084345, + 0.01955924555659294, + -0.0031029649544507265, + -0.0016603583935648203, + -0.004809755831956863, + -0.0024641191121190786, + -0.01844486966729164, + 0.005334922112524509, + 0.013462192378938198, + -0.006378850433975458, + -0.006929634604603052, + -7.275075768120587e-5, + -0.003842680947855115, + -0.018303969874978065, + -0.0004415080475155264, + 0.005001890007406473, + 0.014666232280433178, + -0.0020174074452370405, + -0.024951808154582977, + -0.002006199676543474, + 0.013936122879385948, + 0.003101363778114319, + -0.015012074261903763, + -0.0004927437985315919, + -0.00921603012830019, + 0.01800936460494995, + 0.024439452216029167, + 0.028205279260873795, + 0.0007873493595980108, + 0.02187766321003437, + 0.008274572901427746, + -0.01124624628573656, + 0.010125464759767056, + -0.02413203753530979, + -0.042679376900196075, + 0.014755895361304283, + -0.006590197794139385, + 0.008127270266413689, + 0.017023077234625816, + 0.006500535644590855, + -0.004518352448940277, + 0.0014882383402436972, + -0.03537828475236893, + 0.006583793554455042, + -0.006692669354379177, + 0.009497826918959618, + -0.022249123081564903, + -0.006756714079529047, + 0.00405082618817687, + 0.003688973840326071, + 0.007826260291039944, + -0.01902127079665661, + 0.015690946951508522, + -0.028999432921409607, + 0.006000986788421869, + 0.004217342473566532, + 0.0022159460932016373, + -0.02082733064889908, + 0.014025785960257053, + 0.0006236351327970624, + 0.007173004560172558, + 0.009254456497728825, + 0.00575121259316802, + -0.004332622978836298, + -0.007659744005650282, + 0.023286646232008934, + 0.0164466742426157, + 0.026924384757876396, + -0.010535350069403648, + 0.00029440541402436793, + -0.013679944910109043, + -0.003298301249742508, + 0.01055456418544054, + -0.02187766321003437, + 0.017420154064893723, + -0.006010593380779028, + -0.014909602701663971, + 0.0033143123146146536, + 0.006769523024559021, + -0.021134745329618454, + -0.010087037459015846, + 0.004415880888700485, + 0.003688973840326071, + 0.005914526525884867, + -0.013270058669149876, + 0.006375648081302643, + 0.005107563454657793, + 0.007506037130951881, + -0.0014153874944895506, + 0.018278352916240692, + -0.0077173844911158085, + 0.028717637062072754, + 0.020532725378870964, + 0.0423719622194767, + -0.007646935060620308, + -0.004691272974014282, + 0.00788390077650547, + 0.01999475061893463, + -0.005286888685077429, + -0.008184910751879215, + -0.000421894364990294, + -0.019661717116832733, + -0.012988261878490448, + -0.013974550180137157, + 0.005613516550511122, + -0.005655145738273859, + -0.014243537560105324, + 0.01800936460494995, + 0.011002876795828342, + 0.020263738930225372, + -0.007922327145934105, + 0.003855489892885089, + 0.017163975164294243, + -0.007570081856101751, + -0.0026210288051515818, + 0.005421382375061512, + -0.01407702174037695, + 0.011688155122101307, + -0.016139259561896324, + -4.4155807700008154e-5, + -0.016331395134329796, + -0.0052420576103031635, + -0.0035704912152141333, + 0.01261680293828249, + -0.015332297421991825, + 0.014128257520496845, + -0.01636982150375843, + -0.012283770367503166, + 0.019956324249505997, + 0.012078827247023582, + 0.027692921459674835, + 0.00822974182665348, + -0.023209793493151665, + 0.0016051199054345489, + 0.008044011890888214, + -0.029434936121106148, + 0.003986781463027, + -0.012258152477443218, + -0.0004084850079379976, + -0.008242551237344742, + 0.00029320456087589264, + -0.005450202617794275, + 0.0032358577009290457, + -0.017381727695465088, + -2.500494520063512e-5, + -0.015985552221536636, + 0.006993679329752922, + 0.01394893229007721, + 0.006535760127007961, + 0.015588476322591305, + -0.011688155122101307, + 0.0008261764305643737, + 0.010016588494181633, + 0.002279990818351507, + -0.024605967104434967, + 0.01236062403768301, + 0.021723957732319832, + -0.020981037989258766, + 0.0023824621457606554, + -0.00862041488289833, + -0.007262667175382376, + -0.03143313154578209, + 0.00969636533409357, + -0.013667135499417782, + 0.0001844286744017154, + 0.014871175400912762, + -0.0017099931137636304, + -0.0017980545526370406, + 0.021045083180069923, + 0.0032518687658011913, + 0.014883984811604023, + -0.012584780342876911, + -0.01249511819332838, + 0.002460916992276907, + 0.027078092098236084, + -0.010324003174901009, + 0.0046944753266870975, + 0.009882094338536263, + -0.017087122425436974, + -0.0024272934533655643, + -0.016318585723638535, + 0.02059677056968212, + 0.010842764750123024, + 0.002651449991390109, + 0.009273670613765717, + -0.005030709784477949, + 0.004643239546567202, + -0.012456690892577171, + -0.010215126909315586, + 0.0063436259515583515, + 0.009958948008716106, + 0.008050416596233845, + -0.011784221976995468, + 0.043191734701395035, + -0.03176616504788399, + -0.009574680589139462, + -0.0037914454005658627, + -0.00010202117846347392, + -0.025886861607432365, + -0.015524431131780148, + 0.010586585849523544, + 0.027154946699738503, + 0.005059530027210712, + -0.00430700508877635, + 0.0002884012064896524, + 0.010714675299823284, + -0.008434684947133064, + -0.02247968316078186, + -0.013167587108910084, + -0.010138273239135742, + -0.016856560483574867, + 0.0006468513165600598, + 0.02677067741751671, + -0.0071153645403683186, + -0.0010839563328772783, + -0.0035961091052740812, + -0.006148289889097214, + 0.021250026300549507, + -0.009267265908420086, + 0.019136551767587662, + -0.017023077234625816, + 0.025259222835302353, + 0.013641517609357834, + 0.02154463157057762, + -0.025643492117524147, + 0.021032273769378662, + 0.004656048491597176, + -0.025169560685753822, + -0.0026306353975087404, + -0.00017232022946700454, + 0.008639628067612648, + -0.01809902861714363, + -0.008979064412415028, + 0.008793335407972336, + -0.00300369574688375, + -0.027513597160577774, + -0.022979233413934708, + -0.014666232280433178, + 0.0016275355592370033, + -0.0010823551565408707, + 0.0095618711784482, + 0.007076937705278397, + -0.00443509453907609, + 0.016075216233730316, + 0.005479022860527039, + -0.005373348947614431, + 0.017612287774682045, + 0.013244440779089928, + 0.03204796090722084, + -0.012149276211857796, + -0.0004763323231600225, + 0.004636835306882858, + 0.007992776110768318, + -0.01929025910794735, + -0.013628709129989147, + -0.008581987582147121, + 0.01843206025660038, + -0.013020284473896027, + -0.0086972676217556, + 0.02428574487566948, + -0.019482392817735672, + 0.002651449991390109, + 0.014614996500313282, + -0.03419985994696617, + -0.0030533303506672382, + -0.006385255139321089, + -0.013808033429086208, + -0.010183104313910007, + 0.008927828632295132, + -0.006478119641542435, + 0.012174894101917744, + 0.011726581491529942, + 0.02041744440793991, + -0.018829137086868286, + 0.008127270266413689, + 0.02214665152132511, + 0.004630430601537228, + -0.0071666003204882145, + -0.005222843959927559, + -0.038708608597517014, + 0.014397244900465012, + 0.0196232907474041, + -0.009267265908420086, + 0.010695462115108967, + 0.00969636533409357, + 0.012296579778194427, + -0.003118976019322872, + 0.015409151092171669, + 0.019687335938215256, + -0.03970770537853241, + 0.022159460932016373, + -0.01076591107994318, + -0.006000986788421869, + -0.014410054311156273, + 0.002294400706887245, + 0.017522625625133514, + 0.0018316779751330614, + 0.015076118521392345, + -0.00930569227784872, + -0.006590197794139385, + -0.007864687591791153, + 0.004034814890474081, + -0.0012608796823769808, + 0.017279256135225296, + 0.01261680293828249, + 0.008191315457224846, + -0.0013657528907060623, + -0.014448480680584908, + 0.009721983224153519, + 0.025822816416621208, + -0.009773219004273415, + 0.0012440680293366313, + 0.0034424017649143934, + -0.009299288503825665, + -0.0014746288070455194, + -0.002651449991390109, + -0.011086135171353817, + -0.002564989496022463, + 0.0003128182434011251, + 0.013398148119449615, + -0.016228923574090004, + 0.02109631896018982, + 0.02584843523800373, + 0.008056821301579475, + -0.0018572958651930094, + 0.00575121259316802, + -0.002166311489418149, + -0.031817398965358734, + 0.008383449167013168, + -0.0300497654825449, + -0.009017491713166237, + 0.026898767799139023, + -0.002761926967650652, + -0.007960754446685314, + 0.014538142830133438, + -0.02376057766377926, + -0.010234340094029903, + -0.011797030456364155, + -0.0016651618061587214, + -0.007198622450232506, + -0.007051319815218449, + 0.0025473772548139095, + 0.02677067741751671, + 0.006423681974411011, + -0.006654242519289255, + 0.006196323316544294, + 0.006929634604603052, + -0.00305653247050941, + 0.006807949859648943, + -0.010067824274301529, + -0.0045087458565831184, + -0.016408247873187065, + -0.026335174217820168, + 0.024746865034103394, + -0.03340570628643036, + 0.007461205590516329, + 0.00870367232710123, + 0.001149602117948234, + -0.011380740441381931, + 0.002625832101330161, + 0.0031798186246305704, + 0.017176784574985504, + -0.0006472516106441617, + -0.01321882288902998, + 0.008569179102778435, + -0.03220166638493538, + 0.039323434233665466, + 0.0024272934533655643, + 0.009510635398328304, + 0.022018563002347946, + 0.015114545822143555, + -0.009971757419407368, + 0.003618524642661214, + -0.008063226006925106, + -0.018457677215337753, + -0.016690043732523918, + 0.011688155122101307, + 0.01150242518633604, + -0.008498729206621647, + 0.02654011733829975, + -0.010445687919855118, + -0.003452008357271552, + 0.00909434538334608, + -0.005158799234777689, + 0.013270058669149876, + 0.04339667782187462, + 0.035275813192129135, + -0.0010575378546491265, + -0.0002549779019318521, + 0.004684868734329939, + 0.0024080800358206034, + 0.003362345974892378, + 0.03110009804368019, + -0.008466707542538643, + -0.0014177891425788403, + 0.019418347626924515, + -0.0016587573336437345, + -0.01748419925570488, + -0.014576570130884647, + 0.012072422541677952, + -0.013065115548670292, + -0.0019165371777489781, + 0.008300190791487694, + 0.019264640286564827, + 0.011316695250570774, + 0.0068655903451144695, + -0.015268252231180668, + -0.020212503150105476, + 0.01309713814407587, + -0.009997375309467316, + 0.021813619881868362, + -0.014217919670045376, + -0.01807340979576111, + 0.015690946951508522, + 0.0052708773873746395, + 0.0037209962029010057, + -0.014025785960257053, + -0.008793335407972336, + -0.005053125787526369, + 0.014960838481783867, + 0.012937026098370552, + 0.029153140261769295, + -0.004038017243146896, + 0.0014097836101427674, + -0.019764188677072525, + -0.009990970604121685, + 0.03927220031619072, + 0.006974466145038605, + -0.010458497330546379, + -0.0076789576560258865, + 0.0241960808634758, + 0.008921424858272076, + -0.01476870384067297, + 0.038119394332170486, + -0.017202401533722878, + 0.02902504988014698, + -0.0008185711340047419, + 0.019866660237312317, + 0.014922411181032658, + 0.0020798512268811464, + -0.010567372664809227, + 0.012200511991977692, + 0.0032374588772654533, + -0.0033655480947345495, + 0.0004919432103633881, + -0.002768331440165639, + 0.00030060973949730396, + 0.021121935918927193, + 0.02935808338224888, + 0.021647103130817413, + -0.011675345711410046, + 0.018841946497559547, + 0.0018316779751330614, + -0.01451252494007349, + 0.011668941006064415, + 0.008300190791487694, + 0.006148289889097214, + 0.008300190791487694, + -0.013718371279537678, + -0.027436742559075356, + 0.011925119906663895, + 0.00721783610060811, + -0.0009126367513090372, + 0.016894986853003502, + -0.002217547269538045, + -0.007371542975306511, + 0.00443509453907609, + -0.004339027218520641, + 0.014563760720193386, + -0.028999432921409607, + 0.007025701925158501, + -0.02541293017566204, + -0.0017820433713495731, + 0.008966255933046341, + -0.0031926275696605444, + 0.007281880360096693, + -0.01904688961803913, + -0.0031782174482941628, + 0.00510115921497345, + 0.003043723525479436, + 0.014845557510852814, + -0.002894819714128971, + 0.013590281829237938, + 0.014602188020944595, + -0.01308432873338461, + 0.009318501688539982, + -0.0064076706767082214, + -0.015140163712203503, + -0.002172715961933136, + 0.016510719433426857, + 0.010516136884689331, + -0.005728797055780888, + 0.004274982493370771, + -0.022889569401741028, + -0.03617243841290474, + -0.011771412566304207, + 0.0060938517563045025, + 0.00673750089481473, + -0.006087447050958872, + -0.0009062322787940502, + -0.0024513101670891047, + -0.009030300192534924, + 0.005325315520167351, + 0.003881107782945037, + 0.008902210742235184, + 0.01680532470345497, + -0.018150262534618378, + 0.004627228248864412, + -0.016421057283878326, + 0.02076328732073307, + 0.00540537154302001, + 0.011399953626096249, + -0.02869201824069023, + 0.0398101769387722, + 0.010388047434389591, + 0.016344202682375908, + 0.013577473349869251, + -0.005696774460375309, + 0.003011701162904501, + -0.0038010519929230213, + -0.006948848254978657, + 0.015524431131780148, + 0.023286646232008934, + 0.03340570628643036, + -0.009971757419407368, + 0.009158389642834663, + -0.01015748642385006, + -0.007345925085246563, + -0.026130231097340584, + -0.006125873886048794, + -0.008857379667460918, + -0.009843667969107628, + 0.020097222179174423, + -0.016241731122136116, + -0.010119060054421425, + -0.011233437806367874, + 0.005136383697390556, + -0.0055558765307068825, + -0.0024256925098598003, + -0.003126981668174267, + -0.011162988841533661, + 0.009004682302474976, + -0.00849232543259859, + 0.0005083546857349575, + -0.010221531614661217, + 0.009267265908420086, + 0.010528946295380592, + -0.02144216001033783, + 0.012533544562757015, + 0.00011257854930590838, + 0.00037686293944716454, + 0.0026418431662023067, + -0.022543728351593018, + 0.026821913197636604, + 0.0017628299538046122, + -0.02935808338224888, + -0.017330491915345192, + -0.006148289889097214, + 0.016766898334026337, + 0.012309388257563114, + 0.005936942063271999, + 0.02160867676138878, + 0.02023812010884285, + -0.024067992344498634, + -0.0035384688526391983, + -0.00708334194496274, + 0.015460386872291565, + -0.017112739384174347, + 0.014269155450165272, + 0.0074548013508319855, + 0.02144216001033783, + 0.01123984158039093, + -0.015793418511748314, + 0.038298722356557846, + -0.01955924555659294, + 0.01894441805779934, + -0.005658347625285387, + 0.012040400877594948, + 0.021762384101748466, + -9.369036888529081e-6, + 0.005927335470914841, + -0.002179120434448123, + -0.014819939620792866, + -0.011784221976995468, + 0.002070244401693344, + -0.031023245304822922, + -0.009638724848628044, + -0.014589378610253334, + 0.010631417855620384, + 0.00860760547220707, + 0.013334102928638458, + -0.005632729735225439, + -0.006705478299409151, + -0.001527465763501823, + -0.0223003588616848, + -0.012469500303268433, + 0.0002042425039689988, + 0.012040400877594948, + -0.003986781463027, + -0.010618608444929123, + -0.010464901104569435, + 0.0005908121820539236, + 0.0032550711184740067, + 0.003631333587691188, + -0.008076034486293793, + 0.025438548997044563, + -0.011342313140630722, + -0.01844486966729164, + 0.019533628597855568, + 0.010247149504721165, + -0.044498246163129807, + -0.016894986853003502, + 0.010394452139735222, + -0.00895344652235508, + -0.0039195348508656025, + 0.005722392350435257, + -0.012898599728941917, + -0.007659744005650282, + 0.015537240542471409, + -0.001264882506802678, + -0.013846460729837418, + -0.009664342738687992, + -0.00400279276072979, + -0.010618608444929123, + -0.012302983552217484, + 0.03624929115176201, + 0.002564989496022463, + -0.020212503150105476, + 0.0033975704573094845, + -0.012757700867950916, + -0.018470486626029015, + -0.0019981940276920795, + 0.010176700539886951, + -0.0021390924230217934, + 0.027334270998835564, + -0.016036788001656532, + -0.00934411957859993, + 0.005091552156955004, + -0.0016147266142070293, + -0.01029198057949543, + -0.008076034486293793, + -0.021826427429914474, + -0.002416085684671998, + -0.0032822899520397186, + 0.02841022238135338, + -0.013718371279537678, + -0.02153182215988636, + 0.020481489598751068, + -0.0014906399883329868, + 0.019520819187164307, + 0.00014450082380790263, + -0.00400279276072979, + -0.011982760392129421, + 0.014141065999865532, + -0.008626818656921387, + -0.0068527814000844955, + -0.004076444078236818, + 0.014064212329685688, + -0.0007553269970230758, + -0.015434768982231617, + 0.0102855758741498, + 0.013244440779089928, + -0.009606702253222466, + -0.0020718455780297518, + 0.018047792837023735, + 0.007595699746161699, + -0.012674443423748016, + -0.003362345974892378, + -0.0031029649544507265, + 0.02935808338224888, + -0.015742182731628418, + -0.03084391914308071, + -0.004316611681133509, + 0.020366208627820015, + 0.00624755909666419, + 0.011989165097475052, + -0.01620330475270748, + 0.0017884478438645601, + 0.01334691233932972, + -0.013167587108910084, + 0.01841925084590912, + -0.0021118733566254377, + 0.010324003174901009, + 0.006145087536424398, + 0.015229825861752033, + 0.014986456371843815, + 0.0019613683689385653, + -0.013679944910109043, + 0.023811813443899155, + 0.007845473475754261, + -0.0019533629529178143, + -0.019136551767587662, + -0.013897696509957314, + -0.008850974962115288, + -0.009971757419407368, + 0.0023424343671649694, + -0.020699242129921913, + 0.015114545822143555, + -0.00917760282754898, + -0.026386409997940063, + -0.002843583934009075, + 0.01416668388992548, + 0.005741606000810862, + 0.008850974962115288, + 0.018214307725429535, + -0.0020558342803269625, + 0.011809839867055416, + -0.0026290342211723328, + -0.0005107563338242471, + 0.006686265114694834, + 0.01356466393917799, + -0.024221699684858322, + -0.010234340094029903, + 0.001361750066280365, + -4.145392085774802e-5, + 0.001674768514931202, + 0.020263738930225372, + -0.004396667703986168, + -0.01784284971654415, + -0.04539487138390541, + -0.0024385014548897743, + 0.002279990818351507, + 0.017983747646212578, + 0.004383858758956194, + -0.04247443377971649, + -0.0129626439884305, + -0.0123221967369318, + -0.01175860408693552, + -0.007000084035098553, + 0.014935220591723919, + 0.00598497549071908, + 0.0008205724880099297, + 0.011713773012161255, + 0.04398588836193085, + -0.008838166482746601, + 0.004640037193894386, + -0.012277365662157536, + 0.003980377223342657, + 0.011444784700870514, + 0.0012888992205262184, + 0.0007164999260567129, + 0.022582154721021652, + -0.005863290745764971, + 0.011989165097475052, + -0.019264640286564827, + 0.01127826888114214, + -0.003375154919922352, + 0.005062732379883528, + -0.007640530820935965, + 0.010061419568955898, + 0.0030389202293008566, + -0.0055174496956169605, + -0.01343657448887825, + 0.017445771023631096, + -0.01283455453813076, + 0.012642420828342438, + 0.02505427971482277, + -0.005251664202660322, + -0.0077045755460858345, + 0.007384351920336485, + -0.01407702174037695, + -0.008876592852175236, + -0.008076034486293793, + 0.005699976813048124, + -0.013045902363955975, + -0.011656132526695728, + -0.009677152149379253, + 0.026309555396437645, + -0.01695903204381466, + -0.008729290217161179, + 0.004255769308656454, + -0.01090040523558855, + 0.010516136884689331, + 0.006936039309948683, + 0.019085315987467766, + -0.0012880987487733364, + -0.005642336793243885, + 0.007307498250156641, + -0.00010797533468576148, + -0.020212503150105476, + -0.0024817315861582756, + 0.02420889027416706, + 0.02499023638665676, + -0.037504568696022034, + 0.02186485566198826, + 0.020430253818631172, + -0.013039497658610344, + -0.009766814298927784, + -0.021160364151000977, + -0.022197887301445007, + 0.020955421030521393, + -0.00019523622177075595, + 0.015550049021840096, + -0.011355122551321983, + 0.007787833455950022, + 0.0001622131821932271, + -0.011931524612009525, + -0.011451189406216145, + 0.024823719635605812, + -0.0009166395175270736, + 0.009939734824001789, + -0.03238099068403244, + 0.003941950388252735, + -0.030203472822904587, + 0.0005567884654738009, + -0.030177855864167213, + -0.030024148523807526, + 0.007563677150756121, + 0.010138273239135742, + 0.008216933347284794, + -0.0028547917027026415, + -0.0063436259515583515, + 0.005421382375061512, + 0.0172280203551054, + 0.004323016386479139, + -0.0063308170065283775, + -0.004454307723790407, + 0.00895985122770071, + 0.03361064940690994, + 0.022518111392855644, + 0.0028611961752176285, + -0.003142992965877056, + -0.020776094868779182, + 0.004569588229060173, + 0.017035886645317078, + 0.00887018907815218, + -0.004028410650789738, + 0.0014946428127586842, + -0.004252566955983639, + -0.0006528554949909449, + -0.004492734558880329, + -0.009420973248779774, + 0.00036405399441719055, + -0.003042122581973672, + 0.024426642805337906, + -0.003688973840326071, + -0.017432963475584984, + 0.0055206515826284885, + -0.0032262508757412434, + -0.0020686432253569365, + -0.0036985804326832294, + -0.006398064084351063, + -0.004111668560653925, + 0.0007289085770025849, + -0.026309555396437645, + 0.008050416596233845, + 0.00034864325425587595, + -0.021211599931120872, + 0.0031990320421755314, + 0.02213384211063385, + 0.020814523100852966, + 0.002313614124432206, + -0.010048611089587212, + -0.01766352355480194, + 0.0039483546279370785, + -0.0006028205971233547, + -0.012130063027143478, + 0.02473405748605728, + -0.0050339121371507645, + 0.02273586206138134, + 0.0015706958947703242, + -0.0208529494702816, + -0.008152888156473637, + -0.014269155450165272, + 0.01800936460494995, + 0.013577473349869251, + 0.013244440779089928, + -0.0003590505220927298, + 0.0074291834607720375, + 0.02541293017566204, + 0.003215043107047677, + -0.025515401735901833, + -0.0016603583935648203, + -0.010240744799375534, + 0.006116267293691635, + -0.018880372866988182, + 0.011982760392129421, + 0.006577388849109411, + -0.00387470331043005, + 0.004624026361852884, + -0.0013585478300228715, + -0.014781513251364231, + 0.012162085622549057, + 0.0031814195681363344, + -0.01003580167889595, + 0.011214224621653557, + -0.006237952038645744, + -0.020801713690161705, + -0.005011496599763632, + -0.031817398965358734, + -0.010849169455468655, + 0.011092538945376873, + -0.0013529439456760883, + -0.016433866694569588, + 0.0033783570397645235, + 0.029050668701529503, + 0.003471221774816513, + -0.015434768982231617, + -0.007531655021011829, + 0.017881276085972786, + 4.600709871738218e-5, + 0.027974717319011688, + -0.006628624629229307, + -0.010061419568955898, + -0.003893916727975011, + 0.003573693335056305, + 0.006660647224634886, + -0.010586585849523544, + 0.022838333621621132, + -0.017381727695465088, + 0.006551770959049463, + 0.02249249257147312, + 0.005642336793243885, + -0.016907796263694763, + 0.004339027218520641, + 0.0024657202884554863, + 0.027411125600337982, + 0.009754005819559097, + -0.015626903623342514, + 0.0039323437958955765, + 0.014871175400912762, + -0.014563760720193386, + -0.01626734994351864, + -0.03427671641111374, + 0.0010439283214509487, + -0.018739474937319756, + -0.004479925613850355, + 0.010010183788836002, + -0.016946222633123398, + -0.008255359716713428, + 0.02032778225839138, + 0.0063051991164684296, + -0.01222612988203764, + 0.014755895361304283, + 0.0003118175663985312, + 0.01188669353723526, + 0.014871175400912762, + -0.001975778490304947, + 0.008159292861819267, + -0.01464061439037323, + -0.011162988841533661, + 0.011137370951473713, + -0.013193204998970032, + 0.006554973311722279, + 0.019341494888067245, + -0.009446591138839722, + 0.017112739384174347, + -0.004018804058432579, + -0.012264557182788849, + 0.012866577133536339, + 0.02506708912551403, + -0.006036211270838976, + 0.01859857700765133, + 0.017894085496664047, + -0.0010447289096191525, + 0.017945321276783943, + 0.00788390077650547, + 0.0017884478438645601, + -0.015870273113250732, + -0.0077301934361457825, + 0.0034744241274893284, + -0.002548978431150317, + 0.01090040523558855, + -0.006615815684199333, + 0.007928731851279736, + -0.00525486608967185, + 0.019917896017432213, + 0.005674358922988176, + -0.0003730602911673486, + 0.0031590040307492018, + 0.0017692344263195992, + -0.006414074916392565, + 0.02661697007715702, + -0.016741279512643814, + 3.997789099230431e-5, + 0.0086140101775527, + -0.0022271538618952036, + -0.0230817049741745, + 0.006756714079529047, + -0.0123221967369318, + -0.004928238224238157, + -0.0013929718406870961, + -0.014012976549565792, + 0.004367847461253405, + -0.005110765807330608, + 0.0058184596709907055, + 0.010311193764209747, + 0.006942443549633026, + 0.022697435691952705, + 0.007800642400979996, + -0.005168405827134848, + 0.00011067721789004281, + -0.002837179461494088, + 0.010484115220606327, + -0.017035886645317078, + 0.004092455375939608, + 0.0102023184299469, + -0.003637738060206175, + -0.004271780606359243, + 0.004044421948492527, + 0.020391827449202538, + 0.00387470331043005, + -0.00224956963211298, + -0.006916825659573078, + -0.017497006803750992, + -0.00960029847919941, + -0.015831846743822098, + -0.0370178259909153, + -0.0037658275105059147, + 0.007538059260696173, + 0.01068265363574028, + -0.01747138984501362, + -0.013641517609357834, + 0.01175219938158989, + 0.016600381582975388, + -0.010490518994629383, + 0.013141969218850136, + -0.012251747772097588, + -0.022236313670873642, + -0.0018765092827379704, + -0.012808936648070812, + -0.008505133911967278, + -0.015293870121240616, + 0.011118156835436821, + 0.012847363948822021, + -0.006961657200008631, + 0.0016395439160987735, + 0.01334691233932972, + -0.009914116933941841, + 0.011950737796723843, + 0.014794321730732918, + -0.003279087832197547, + -0.014115448109805584, + -0.0035576822701841593, + 0.00387470331043005, + -0.00047192926285788417, + -0.015908699482679367, + -0.004166106693446636, + 0.0008421876118518412, + -0.011521638371050358, + -0.010099846869707108, + -0.007345925085246563, + 0.0077494066208601, + 0.00484498031437397, + 0.011214224621653557, + -0.02154463157057762, + -0.014883984811604023, + -0.006506939884275198, + -0.011528043076395988, + 0.025195179507136345, + 0.032611552625894547, + 0.0093377148732543, + 0.014883984811604023, + 0.009677152149379253, + 0.006314805708825588, + -0.020891375839710236, + -0.01766352355480194, + -0.025707535445690155, + -0.004012399353086948, + -0.020033176988363266, + 0.01698465086519718, + -0.016331395134329796, + -0.005200428422540426, + -0.003343132557347417, + -0.004825767129659653, + -0.017330491915345192, + -0.028640782460570335, + 0.0036345357075333595, + 0.0006960856844671071, + -0.006375648081302643, + 0.019879469648003578, + 0.003088554833084345, + -0.000145301382872276, + -0.012770510278642178, + -0.004089253023266792, + -0.014474098570644855, + 0.008947042748332024, + 7.361385996773606e-6, + -0.025259222835302353, + 0.0074291834607720375, + 0.0008525948505848646, + -0.00387470331043005, + -0.015140163712203503, + 0.009107153862714767, + 0.0172280203551054, + 0.005197226069867611, + -0.00895344652235508, + -0.015959935262799263, + 0.0049826763570308685, + -0.00360571569763124, + -0.0013001071056351066, + -0.012456690892577171, + -0.011508829891681671, + -0.007057724054902792, + 0.005920931231230497, + 0.011592087335884571, + -0.023978330194950104, + 0.02963987924158573, + 0.005434191320091486, + -0.016946222633123398, + -0.007723788730800152, + -0.007627721875905991, + 0.02178800106048584, + 0.014973646961152554, + 0.015780610963702202, + 0.004748913459479809, + 0.014281964860856533, + -0.01670285314321518, + -0.004511948209255934, + -0.008581987582147121, + 0.013231631368398666, + -0.0018108633812516928, + 0.006026604678481817, + 0.010618608444929123, + 0.004860991612076759, + 0.0020942611154168844, + -0.001770835486240685, + -0.002344035543501377, + -0.01852172240614891, + 0.0013609494781121612, + -0.010701866820454597, + 0.0024385014548897743, + -0.00544700026512146, + 0.028743254020810127, + 0.019059697166085243, + -0.0016955829923972487, + -0.00011097743117716163, + -0.015076118521392345, + 0.007185813505202532, + 0.016510719433426857, + -0.012392646633088589, + -0.002236760687083006, + 0.006125873886048794, + -0.005908122286200523, + 0.006350030191242695, + -0.004812958184629679, + -0.0014658226864412427, + -0.007999180816113949, + 0.0027923481538891792, + -0.0017276053549721837, + -0.016472293063998222, + -0.0027331069577485323, + -0.03143313154578209, + -0.006654242519289255, + -0.020455872640013695, + 0.020801713690161705, + -0.0027955505065619946, + 0.0095618711784482, + -0.007775024510920048, + 0.0039355456829071045, + -0.0033847615122795105, + -0.019495202228426933, + -0.01592150889337063, + 0.014000168070197105, + -0.0095618711784482, + 0.0014738283352926373, + -0.04372971132397652, + 0.019174978137016296, + 0.011950737796723843, + -0.010855574160814285, + -0.011726581491529942, + 0.02376057766377926, + -0.017163975164294243, + 0.019584864377975464, + 0.00995254423469305, + -0.0005443798145279288, + -0.006987275090068579, + 0.0027218989562243223, + -0.020084412768483162, + -0.0034616151824593544, + -0.028896961361169815, + -0.013116351328790188, + -0.025425739586353302, + -0.0010191110195592046, + -0.003823467530310154, + -0.008722885511815548, + -0.0036537491250783205, + -0.01713835820555687, + -0.013423766009509563, + 0.007582890801131725, + 0.0496218204498291, + 0.04411397874355316, + 0.03279087692499161, + 0.0015050501096993685, + 0.010842764750123024, + 0.027692921459674835, + -0.030946390703320503, + 0.006820758804678917, + -0.0008397859055548906, + -0.031919870525598526, + -0.017689142376184464, + -0.013513428159058094, + -0.013167587108910084, + 0.022787097841501236, + 0.0028419827576726675, + -0.02825651504099369, + 0.0005103560979478061, + -0.011636919341981411, + -0.021314071491360664, + -0.0019293461227789521, + -0.001566693070344627, + -0.0017804421950131655, + 0.00443509453907609, + -0.01695903204381466, + 0.012033996172249317, + 0.021980134770274162, + -0.003355941502377391, + 0.006077840458601713, + -0.00969636533409357, + -0.009420973248779774, + 0.011124561540782452, + 0.03007538430392742, + -0.0268731489777565, + 0.00594334676861763, + -0.006212334148585796, + -0.012399050407111645, + 0.012815341353416443, + 0.014192301779985428, + -0.000754526408854872, + -0.0039739725179970264, + -0.020263738930225372, + -0.007230645045638084, + -0.008838166482746601, + -0.0077430023811757565, + -0.02479810081422329, + -0.002793949330225587, + -0.010644226334989071, + 0.003983579576015472, + -0.019866660237312317, + -0.00430700508877635, + -0.01619049534201622, + 7.900511991465464e-5, + -0.005853684153407812, + -0.020468680188059807, + -0.00960029847919941, + -0.022505301982164383, + 0.0037754341028630733, + 0.026027759537100792, + -0.02034059166908264, + -0.01054815948009491, + -0.021057892590761185, + -0.006974466145038605, + 0.008511538617312908, + -0.007775024510920048, + 0.0011215825797989964, + -0.012155680917203426, + 0.024490687996149063, + -0.0021519013680517673, + 0.008210528641939163, + 0.0033143123146146536, + -0.01136793103069067, + 0.010317598469555378, + -0.014256346970796585, + -0.002014205325394869, + -0.015076118521392345, + -0.023145748302340508, + 2.7794392735813744e-5, + -0.02636079117655754, + -0.004364645108580589, + -0.011265459470450878, + 0.029588643461465836, + 0.0058344705030322075, + -0.010586585849523544, + 0.006955252494663, + 0.012347814626991749, + -0.023273838683962822, + 0.002263979520648718, + -0.0052292486652731895, + -0.0023424343671649694, + -0.009677152149379253, + -0.005607112310826778, + -0.017112739384174347, + 0.005184417124837637, + -0.014115448109805584, + 0.01188669353723526, + 0.015255443751811981, + -0.016305776312947273, + -0.0008253758423961699, + -0.013103541918098927, + 0.0006408471381291747, + 0.01834239810705185, + -0.010644226334989071, + 0.012162085622549057, + -0.0030597348231822252, + 0.029691115021705627, + -0.0037658275105059147, + -0.04211578518152237, + -0.005088350269943476, + -0.0071409824304282665, + 0.005828066263347864, + 0.02094261161983013, + -0.003996388055384159, + 0.008863784372806549, + 0.007608508225530386, + 0.004425487481057644, + -0.00895985122770071, + 0.013270058669149876, + 1.499796417192556e-5, + 0.0001233860821230337, + 0.012386241927742958, + -0.005210035014897585, + 3.069641752517782e-5, + -0.0009270468144677579, + 0.005162001587450504, + 0.009856476448476315, + 0.006731096189469099, + -0.009011087007820606, + 0.018829137086868286, + 0.030767066404223442, + 0.0019021270563825965, + -0.005184417124837637, + 0.020135648548603058, + 0.015601284801959991, + -0.00860760547220707, + 0.013705562800168991, + -0.01429477334022522, + -0.017189593985676765, + 0.004812958184629679, + -0.011771412566304207, + 0.011918716132640839, + 0.0010247149039059877, + -0.013897696509957314, + 0.007301094010472298, + 0.02825651504099369, + 0.004998687654733658, + -0.020174074918031693, + 0.002882010769098997, + -0.012693656608462334, + 0.003413581755012274, + 0.019405540078878403, + 0.009292883798480034, + 0.007723788730800152, + -0.015396341681480408, + -0.0005371748120523989, + -0.006833567749708891, + 0.004188522230833769, + 0.017894085496664047, + 0.023965520784258842, + 0.025630682706832886, + 0.0029028253629803658, + 0.0038074564654380083, + -0.009920521639287472, + 0.0186754297465086, + 0.021134745329618454, + 0.020186884328722954, + -0.007012892980128527, + 0.011688155122101307, + 0.009248052723705769, + 0.01356466393917799, + -0.014153875410556793, + -0.011905906721949577, + -0.006215536501258612, + 0.012130063027143478, + 0.00046432396629825234, + -0.01963610015809536, + 0.0011744194198399782, + -0.008396257646381855, + -0.010727484710514545, + -0.024439452216029167, + -0.03209919482469559, + 0.001777239958755672, + 0.0272061824798584, + 0.019828233867883682, + 0.012501521967351437, + -0.0010703467996791005, + 0.005882504396140575, + -0.0027731347363442183, + -0.007973562926054, + -0.0023680522572249174, + 0.022364404052495956, + -0.002597011858597398, + -0.0011808238923549652, + 0.016139259561896324, + -0.018470486626029015, + -0.01189309824258089, + 0.002800353802740574, + 0.006510142236948013, + 0.0020686432253569365, + 0.01200837828218937, + -0.009536253288388252, + -0.00430700508877635, + -0.01283455453813076, + -0.016241731122136116, + 0.0019469583639875054, + -0.024490687996149063 + ], + "c93eb83d-f192-4d6a-8804-f9fe024fc9b3": [ + -0.017448414117097855, + -0.01628788560628891, + -0.013723926618695259, + -0.008150690235197544, + -0.031847067177295685, + -0.0109305614605546, + 0.01801518350839615, + 0.046852972358465195, + -0.0030143384356051683, + 0.0385943278670311, + -0.018824854865670204, + 0.04404611140489578, + -0.044100090861320496, + -0.008130447939038277, + -0.006629182957112789, + -0.0058633689768612385, + -0.03559854254126549, + 0.012995222583413124, + 0.005492269527167082, + -0.008164184167981148, + 0.06455778330564499, + -0.029687942937016487, + -0.012833287939429283, + 0.0006393028888851404, + -0.03764970973134041, + -0.031010406091809273, + 0.0017559743719175458, + -0.007253304589539766, + -0.01790722832083702, + -0.02993084490299225, + -0.010195109993219376, + 0.02227945253252983, + 0.015761598944664, + -0.02555862069129944, + 0.00895361416041851, + -0.007280293386429548, + 0.00788754690438509, + 0.038540348410606384, + -0.006352545227855444, + 0.016409335657954216, + -0.03835142403841019, + 0.023210573941469193, + -0.00946640595793724, + -0.0060354238376021385, + -0.024667982012033463, + 0.030362669378519058, + 0.032009001821279526, + -0.0020292385015636683, + 0.006710149813443422, + -0.023102616891264915, + 0.007509700022637844, + 0.03276469558477402, + -0.017677821218967438, + 0.003916784189641476, + 0.010620187036693096, + -0.005087433848530054, + 0.014682037755846977, + 0.08490751683712006, + 0.03254878148436546, + -0.04296655207872391, + 0.009493394754827023, + -0.012124826200306416, + 0.010937307961285114, + -0.009985944256186485, + -0.017259491607546806, + -0.028014622628688812, + 0.02064661495387554, + -0.006416643969714642, + -0.013116673566401005, + 0.014763004146516323, + -0.0017222380265593529, + 0.02914816327393055, + -0.053114429116249084, + 0.0008509981562383473, + -0.019917910918593407, + 0.0028203546535223722, + 0.007772843353450298, + -0.04223784804344177, + 0.023979760706424713, + 0.014344674535095692, + -0.00973629578948021, + 0.02178015559911728, + 0.018716899678111076, + -0.02211751788854599, + 0.03654316067695618, + 0.03238684684038162, + -0.03298060595989227, + -0.05073939263820648, + -0.07022547721862793, + -0.019648021087050438, + 0.022616814821958542, + 0.016841160133481026, + 0.005198763683438301, + -0.0006393028888851404, + -0.011929155327379704, + 0.009803768247365952, + 0.047959521412849426, + 0.03573348745703697, + -0.023804333060979843, + -0.028959238901734352, + -0.02331853099167347, + 0.04223784804344177, + -0.044801805168390274, + -0.008987350389361382, + -0.008076470345258713, + -0.01774529367685318, + 0.00518526928499341, + -0.0017104303697124124, + -0.012077595107257366, + 0.019607536494731903, + 0.02356143109500408, + -0.03481586277484894, + 0.005806017201393843, + 0.005944335833191872, + 0.01628788560628891, + -0.08026540279388428, + 0.006727017927914858, + -0.03454596921801567, + 0.011854935437440872, + -0.05872815102338791, + 0.02640877477824688, + 0.04029463604092598, + 0.033304475247859955, + -0.018716899678111076, + 0.008467811159789562, + -0.011672759428620338, + -0.006700029131025076, + -0.0025504641234874725, + 0.011159967631101608, + -0.0044059609062969685, + 0.004267641808837652, + -0.013022211380302906, + -0.012502672150731087, + 0.0218611229211092, + -0.006484116893261671, + 0.007455721963196993, + 0.03438403457403183, + 0.027488335967063904, + -0.03746078535914421, + 0.0380275584757328, + -0.006615688093006611, + -0.019661515951156616, + -0.009709306992590427, + 0.00031058481545187533, + 0.01593702845275402, + 0.0004917065380141139, + -0.046664047986269, + 0.017637336626648903, + 0.00879167951643467, + 0.026260334998369217, + -0.031145351007580757, + 0.0009344954742118716, + 0.03848636895418167, + -0.005822885315865278, + -0.006180489901453257, + 0.02426314726471901, + 0.01962103135883808, + 0.03808153420686722, + 0.014034300111234188, + 0.01758335903286934, + -0.013744167983531952, + -0.04369525611400604, + 0.00891987793147564, + -0.0037143665831536055, + -0.013271859847009182, + 0.014493114314973354, + 0.04636716842651367, + 0.008764690719544888, + -0.062020812183618546, + 0.024114707484841347, + 0.027150973677635193, + -0.02751532569527626, + 8.096711826510727e-5, + -0.0083193713799119, + -0.01020860392600298, + -0.009250493720173836, + 0.014142257161438465, + 0.010640428401529789, + 0.047878555953502655, + -0.02898622862994671, + 0.004304751753807068, + -0.011369132436811924, + -0.03689401596784592, + 0.00544503889977932, + 0.0002962468715850264, + 0.03705595061182976, + 0.013224629685282707, + 0.015478214249014854, + -0.023966267704963684, + 0.020956989377737045, + 0.003412426682189107, + 0.02005285583436489, + -0.008643239736557007, + 0.05238572508096695, + -0.027285918593406677, + -0.011922407895326614, + -0.00784706324338913, + 0.0031307286117225885, + 0.028419459238648415, + 0.030389659106731415, + -0.027825700119137764, + -0.041886989027261734, + -0.0768108069896698, + 0.01833905279636383, + -0.043074507266283035, + 0.0002000984241021797, + 0.015910038724541664, + -0.009284229949116707, + 0.01653078757226467, + 0.000410317734349519, + 0.03848636895418167, + -0.027043018490076065, + -0.0018166997469961643, + 0.020619627088308334, + -0.0185144804418087, + -0.013771157711744308, + -0.007772843353450298, + 0.018473997712135315, + 0.008960360661149025, + 0.006838347762823105, + -0.023777343332767487, + 0.022090528160333633, + 0.024384597316384315, + -0.02690807171165943, + -0.04998370260000229, + -0.034761883318424225, + -0.02460050955414772, + 0.01920270174741745, + -0.023075629025697708, + -0.0026179368142038584, + 0.04013270139694214, + -0.001747540314681828, + -0.00117824028711766, + -0.019823448732495308, + -0.018028678372502327, + -0.0022080407943576574, + -0.00694293063133955, + -0.014695531688630581, + 0.017623843625187874, + -0.006963171996176243, + 0.03549058735370636, + 0.03017374686896801, + 0.019823448732495308, + 0.030740516260266304, + 0.013406805694103241, + 0.023008156567811966, + 0.004351982846856117, + 0.03273770585656166, + 0.021658703684806824, + -0.024708464741706848, + -0.0048141698352992535, + 0.030551591888070107, + 0.02092999964952469, + -0.013130167499184608, + -0.004544279538094997, + 0.010775374248623848, + 0.010066911578178406, + -0.0029907228890806437, + -0.03872927278280258, + -0.015653643757104874, + -0.011031770147383213, + 0.0025470906402915716, + 0.03576047718524933, + -0.02898622862994671, + 0.04731178656220436, + -0.022684287279844284, + 0.0011099242838099599, + -0.042048923671245575, + -0.019823448732495308, + 0.010728143155574799, + -0.05597526952624321, + -0.014924938790500164, + 0.006227720994502306, + 0.010161373764276505, + -0.034168124198913574, + -0.009668823331594467, + 0.014007311314344406, + 0.017016589641571045, + 0.008076470345258713, + 0.010444758459925652, + -0.022603319957852364, + 0.013953333720564842, + 0.0022417770233005285, + 0.03557155281305313, + -0.007894294336438179, + -0.027798710390925407, + 0.015073378570377827, + -0.00619061104953289, + -0.03443801403045654, + -0.006436885800212622, + 0.0004305595066398382, + -0.009398932568728924, + 0.030902450904250145, + -0.006416643969714642, + 0.015518697910010815, + -0.000941242731641978, + -0.023075629025697708, + -0.0085217896848917, + -0.002081529702991247, + 0.021226879209280014, + -0.013177398592233658, + -0.0032133825588971376, + 0.05146809667348862, + -0.034923817962408066, + 0.020295757800340652, + 0.014371663331985474, + 0.024991851300001144, + -0.0005127917393110693, + -0.05505764111876488, + 0.00640989700332284, + 0.026854094117879868, + 0.010087153874337673, + 5.0340884627075866e-5, + -0.0317121222615242, + -0.02493787184357643, + 0.020606132224202156, + 0.025410180911421776, + 0.02109193429350853, + 0.008292382583022118, + -0.0395929217338562, + -0.013858871534466743, + 0.00732752401381731, + -0.043074507266283035, + 0.016908632591366768, + 0.03713691979646683, + -0.0486612394452095, + 0.021618220955133438, + 0.017259491607546806, + -0.008933371864259243, + -0.0197964608669281, + -0.0002684144419617951, + -0.013481025584042072, + -0.03335845097899437, + -0.032602760940790176, + -0.0035929158329963684, + -0.014142257161438465, + -0.0277717225253582, + -0.04563846439123154, + 0.0025470906402915716, + -0.015761598944664, + -0.012482430785894394, + 0.04482879489660263, + -0.026813611388206482, + 0.015181334689259529, + 0.015478214249014854, + 0.0018116392893716693, + -0.00319482758641243, + 0.03300759568810463, + -0.008022491820156574, + -0.014574081636965275, + 0.0006456284318119287, + -0.02434411272406578, + 0.057054828852415085, + 0.0020359857007861137, + 0.005026708822697401, + 0.0011951084015890956, + -0.00272251944988966, + -0.02272477187216282, + -0.007941524498164654, + 0.008305876515805721, + -0.03791959956288338, + -0.01842002011835575, + -0.038972172886133194, + -0.005806017201393843, + 0.005073939450085163, + 0.04442396014928818, + 0.01774529367685318, + 0.005208884831517935, + -0.0018976668361574411, + 0.012226034887135029, + -0.025612598285079002, + 0.054571837186813354, + 0.01936463639140129, + 0.016827665269374847, + -0.04072646051645279, + 0.0034782125148922205, + 0.03368232026696205, + -0.008420580066740513, + -0.04194096848368645, + 0.039215072989463806, + -0.004095586948096752, + 0.019769471138715744, + 0.025909477844834328, + -0.0029232504311949015, + 0.06207479164004326, + 0.014142257161438465, + -0.009587856009602547, + -0.005067192018032074, + -0.04002474620938301, + -0.030389659106731415, + -0.051657021045684814, + 0.00014801800716668367, + -0.0476626455783844, + -0.008454316295683384, + -0.03689401596784592, + 0.0320899672806263, + -0.0178262609988451, + -0.012320496141910553, + 0.017853248864412308, + 0.012570145539939404, + 0.02322406880557537, + -0.020673604682087898, + -0.021901605650782585, + 0.016746699810028076, + -0.000637194374576211, + 0.001583075849339366, + 0.020673604682087898, + 0.010019680485129356, + 0.007138601038604975, + -0.004385719075798988, + -0.007185831665992737, + -0.0067034028470516205, + 0.0186089426279068, + 0.006376160774379969, + 0.04302052780985832, + -0.002911442657932639, + 0.030389659106731415, + -0.01526230201125145, + -0.0571088083088398, + -0.024033740162849426, + 0.04418105632066727, + 0.06666292995214462, + -0.014034300111234188, + 0.01238122209906578, + -0.03044363670051098, + 0.013136914931237698, + 0.023804333060979843, + 0.01843351311981678, + -0.004436323419213295, + -0.003528816858306527, + -0.028770316392183304, + 0.009554119780659676, + -0.02281923219561577, + -0.033223506063222885, + 0.026003940030932426, + 0.006635929923504591, + 0.024141695350408554, + -0.016233908012509346, + -0.01033005490899086, + -0.0016825979109853506, + 0.01765083149075508, + 0.013649706728756428, + 0.02527523599565029, + 0.009803768247365952, + -0.006322182714939117, + -0.013055947609245777, + -0.015586170367896557, + 0.003994377795606852, + 0.010073659010231495, + 0.014331179670989513, + 0.013744167983531952, + 0.0382164791226387, + -0.05548946559429169, + 0.011544561944901943, + -0.010707901790738106, + 0.010161373764276505, + -0.01912173442542553, + 0.00565757742151618, + 0.02673264406621456, + 0.018055668100714684, + -0.031253308057785034, + 0.011848188005387783, + 0.027110490947961807, + -0.019486086443066597, + -0.015599665232002735, + -0.048823174089193344, + -0.018838349729776382, + 0.034411024302244186, + -0.01075513195246458, + -0.02056564763188362, + -0.010937307961285114, + 0.02914816327393055, + -0.024047235026955605, + -0.012974980287253857, + -0.014843971468508244, + 0.0024003377184271812, + 0.004129323177039623, + 0.008940119296312332, + 0.019769471138715744, + -0.026476247236132622, + -0.009479899890720844, + -0.013939838856458664, + -0.02562609314918518, + 0.003258926561102271, + 0.05090132728219032, + -0.00844756979495287, + -0.017704809084534645, + 0.019418613985180855, + 0.0370289608836174, + 0.014682037755846977, + 0.051225196570158005, + -0.01366994809359312, + -0.006224347278475761, + -0.010984539054334164, + -0.02107843942940235, + -0.058674171566963196, + 0.011800957843661308, + -0.006045544985681772, + -0.028149567544460297, + -0.0449097603559494, + 0.05492269620299339, + 0.0071116117760539055, + 0.03581445664167404, + 0.006635929923504591, + -0.0005971324862912297, + 0.006470622029155493, + -0.022158000618219376, + 0.02424965240061283, + 0.003518695943057537, + -0.014169245958328247, + -0.022414397448301315, + 0.00792803056538105, + -0.01740793138742447, + -0.013271859847009182, + -0.028689349070191383, + 0.023439981043338776, + 0.002152375876903534, + 0.019782966002821922, + -0.009945460595190525, + -0.02914816327393055, + 0.014007311314344406, + 0.008562272414565086, + -0.010640428401529789, + 0.012502672150731087, + -0.0007506326655857265, + -0.0005583357415162027, + -0.014965422451496124, + 0.02117290161550045, + 0.03700197488069534, + 0.0048479060642421246, + 0.0020579141564667225, + 0.008184426464140415, + 0.010336802341043949, + 0.009169526398181915, + 0.02522125653922558, + 0.007104864809662104, + 0.011470342054963112, + 0.0051346649415791035, + -0.0023581674322485924, + 0.03195502236485481, + -0.002489738864824176, + 0.01627439074218273, + -0.01281979400664568, + -0.010255835019052029, + 0.012232782319188118, + 0.04731178656220436, + -0.04383020102977753, + 0.02306213416159153, + -0.002437447663396597, + 0.025774532929062843, + -0.015991006046533585, + 0.012455441989004612, + -0.003484959714114666, + 0.001081248396076262, + 0.02476244419813156, + -0.03370930999517441, + 0.016733204945921898, + -0.02700253389775753, + -0.04863424971699715, + 0.01478999387472868, + 0.013265113346278667, + -0.005748665425926447, + 0.017084062099456787, + -0.006612314842641354, + -0.027933655306696892, + 0.014938433654606342, + -0.03155018761754036, + -0.004314872901886702, + -0.017812766134738922, + 0.024479059502482414, + 0.024195674806833267, + 0.005323587916791439, + 0.008764690719544888, + -0.011888671666383743, + -0.029013218358159065, + 0.021388813853263855, + 0.020943494513630867, + 0.015451225452125072, + -0.021915100514888763, + -0.005526005756109953, + 0.029337085783481598, + -0.03473489359021187, + -0.009351702407002449, + -0.028446447104215622, + -0.00544503889977932, + 0.014074783772230148, + -0.05157605558633804, + -0.03624628111720085, + 0.01359572820365429, + 0.023359013721346855, + -0.0026078158989548683, + 0.015626654028892517, + 0.02742086350917816, + 0.006197358015924692, + -0.018757382407784462, + 0.03532865270972252, + -0.0036435204092413187, + 0.02365589328110218, + 0.0014877708163112402, + -0.016085468232631683, + -0.008771438151597977, + 0.015046389773488045, + 0.004922125954180956, + -0.028905261307954788, + -0.002665167674422264, + 0.023251056671142578, + 0.0008358168415725231, + -0.02159123122692108, + -0.007806579582393169, + 0.005519258789718151, + -0.008177679032087326, + -0.001366320182569325, + 0.017299974337220192, + -0.015248807147145271, + 0.037514764815568924, + 0.018622437492012978, + 0.02949902042746544, + 0.027717743068933487, + 0.009236998856067657, + -0.014128762297332287, + 0.03146921843290329, + -0.06212876737117767, + 0.06434187293052673, + 0.0031594044994562864, + 0.016328368335962296, + -0.01756986416876316, + -0.01827158033847809, + -0.023858310654759407, + -0.01427720207720995, + 0.007732359692454338, + 0.02400675043463707, + 0.0031408495269715786, + 0.014857466332614422, + -0.03516671806573868, + 0.007914535701274872, + 0.012765815481543541, + 0.016341863200068474, + 0.0435333214700222, + -0.008096711710095406, + 0.006544841919094324, + -0.0083193713799119, + -0.009000844322144985, + 0.007901041768491268, + 0.016908632591366768, + -0.02356143109500408, + -0.001438853214494884, + -0.033574365079402924, + 0.009574362076818943, + 0.025612598285079002, + 0.005586731247603893, + -0.029795899987220764, + 0.0051684011705219746, + 0.034599948674440384, + 0.016868149861693382, + -0.006156874820590019, + -0.04585437849164009, + -0.023885300382971764, + 0.016949117183685303, + 0.03128029778599739, + -0.009783526882529259, + 0.016611753031611443, + 0.01186843030154705, + -0.006990161258727312, + 0.01945909671485424, + 0.0037447293289005756, + 0.015721116214990616, + -0.0005760472849942744, + 0.007833568379282951, + -0.0009285916457884014, + 0.01568063162267208, + 0.011881924234330654, + 0.004314872901886702, + 0.019324151799082756, + 0.035031773149967194, + -0.0014110207557678223, + -0.014115267433226109, + 0.002909755799919367, + -0.011881924234330654, + 0.02982288785278797, + -0.014088278636336327, + -0.003940399736166, + -0.0049592358991503716, + -0.023682883009314537, + 0.002520101610571146, + 0.0332774855196476, + -0.01918920688331127, + -0.00013273124932311475, + 0.048040490597486496, + -0.019782966002821922, + -0.006865337025374174, + 0.014088278636336327, + 0.01877087727189064, + -0.046259213238954544, + 0.02493787184357643, + -0.006524600088596344, + 0.0052932254038751125, + -0.009891483001410961, + -0.001804891973733902, + 0.0225493423640728, + -0.02298116683959961, + -0.011166715063154697, + -0.016584765166044235, + -0.007691876031458378, + -0.015086873434484005, + -0.012947991490364075, + 0.020970484241843224, + -0.01568063162267208, + -0.006909193936735392, + 0.02495136670768261, + -0.0138858612626791, + 0.02596345543861389, + -0.004658983089029789, + -0.0158560611307621, + 0.023129606619477272, + 0.005934215150773525, + 0.004105707630515099, + -0.020956989377737045, + 0.0016210292233154178, + 0.008413832634687424, + 0.01620691828429699, + -0.0317121222615242, + 0.04844532534480095, + 0.0015037955017760396, + -0.04156311973929405, + -0.04706888645887375, + 0.023089123889803886, + 0.0005245994543656707, + 0.01955355890095234, + 0.001511386246420443, + -0.003845938015729189, + 0.04018668085336685, + 0.005239247344434261, + -0.021550748497247696, + 0.015113862231373787, + -0.01272533182054758, + -0.018986789509654045, + -0.029013218358159065, + 0.0030969923827797174, + 0.031253308057785034, + -0.01947259157896042, + -0.005087433848530054, + -0.02957998774945736, + 0.026962051168084145, + 0.017758788540959358, + 0.012637617997825146, + -0.007597414776682854, + -0.0036941247526556253, + -0.0112746711820364, + 0.01431768573820591, + 0.02796064503490925, + 0.036219291388988495, + -0.027744732797145844, + 0.046340182423591614, + 0.025248246267437935, + -0.020970484241843224, + -0.0017213947139680386, + -0.011490583419799805, + -0.0012929437216371298, + -0.01705707237124443, + 0.03203599154949188, + -0.011841441504657269, + -0.00222996948286891, + 0.02725893072783947, + -0.03009277954697609, + 0.024303629994392395, + -0.002221535425633192, + -0.04156311973929405, + 0.02692156657576561, + 0.03945797681808472, + -0.03414113447070122, + 0.023129606619477272, + -0.018554965034127235, + 0.010782121680676937, + 0.029552998021245003, + -0.004942367784678936, + -0.01174697931855917, + 0.038972172886133194, + 0.0073342714458703995, + -0.03608434647321701, + 0.011288166046142578, + -0.015194829553365707, + -0.04369525611400604, + -0.017866743728518486, + -0.04571943357586861, + 0.02109193429350853, + -0.00929772388190031, + 0.02418217994272709, + 0.022846221923828125, + 0.0049389940686523914, + -0.006821479648351669, + 0.026368292048573494, + 0.007145348004996777, + -0.005893731489777565, + 0.022400902584195137, + -0.010424516163766384, + 0.0014742763014510274, + 0.00739499693736434, + -0.030416646972298622, + 0.009007591754198074, + 0.0062310947105288506, + 0.0010255834786221385, + -0.04266967251896858, + 0.03678606078028679, + 0.056784939020872116, + 2.7700663849827833e-5, + 0.002823728369548917, + 0.022158000618219376, + 0.009682318195700645, + 0.022697782143950462, + -0.0051481593400239944, + -0.033898234367370605, + -0.003980883397161961, + -0.004301378037780523, + 0.02083553932607174, + 0.007219567894935608, + -0.0059240940026938915, + 0.0032471187878400087, + -0.03689401596784592, + 0.011045264080166817, + -0.03198201209306717, + 0.008764690719544888, + 0.01080236304551363, + 0.02434411272406578, + 0.030659548938274384, + -0.01080236304551363, + -0.037757664918899536, + -0.011659265495836735, + 0.0001491776929469779, + 0.014304190874099731, + 0.003866179846227169, + -0.01774529367685318, + -0.025072818621993065, + -0.003856058930978179, + 0.004841159097850323, + 0.015923533588647842, + 0.035787466913461685, + -0.03735283017158508, + -0.009034580551087856, + -0.04180602356791496, + 0.019391624256968498, + -0.002698903903365135, + -0.02725893072783947, + -0.022994661703705788, + -0.006183863617479801, + -0.013116673566401005, + 0.01595052145421505, + -0.0025993818417191505, + 0.013170651160180569, + 0.05230475962162018, + -0.00784706324338913, + 0.0061602480709552765, + -0.009635087102651596, + 0.0007459939224645495, + -0.010120890103280544, + -0.04928198456764221, + 0.03837841376662254, + -0.014695531688630581, + 0.020849032327532768, + 0.012711837887763977, + 0.012516167014837265, + -0.014479619450867176, + -0.0037143665831536055, + -0.012576892040669918, + -0.028257524594664574, + -0.004895137157291174, + -0.0016370539087802172, + -0.015289290808141232, + 0.024560026824474335, + -0.004554400220513344, + 0.004976104013621807, + 0.01033005490899086, + -0.0049254996702075005, + 0.0023767224047333, + -0.01990441605448723, + -0.04493675008416176, + -0.015613159164786339, + -0.008251898922026157, + 0.011416363529860973, + -0.026773126795887947, + -0.0010778747964650393, + -0.02596345543861389, + 0.020956989377737045, + 0.0317121222615242, + -0.006011808756738901, + -0.06283048540353775, + 0.010653923265635967, + 0.004173180088400841, + 0.00848130602389574, + -0.009662075899541378, + -0.0264897421002388, + 0.01680067740380764, + 0.004861400928348303, + -0.018487492576241493, + -0.0385943278670311, + 0.004213663749396801, + -0.04893112927675247, + -0.029175151139497757, + -0.02184762805700302, + -0.007260051555931568, + -0.012118078768253326, + -0.005215631797909737, + -0.029256118461489677, + -0.018069161102175713, + 0.01628788560628891, + -0.004989598877727985, + -0.034411024302244186, + 0.006774249020963907, + 0.030659548938274384, + 0.0036705094389617443, + 0.04159010946750641, + 0.017961205914616585, + 0.030308691784739494, + -0.026516731828451157, + -0.028581392019987106, + 0.041967958211898804, + 0.020983979105949402, + 0.01954006403684616, + -0.010174867697060108, + -0.009452911093831062, + 0.0013342706952244043, + -0.003108799923211336, + 0.0021776780486106873, + 0.011807704344391823, + 0.001848749234341085, + -0.0066527980379760265, + -0.0028119205962866545, + 0.002113579073920846, + 0.01178071554750204, + 0.01366994809359312, + 0.015721116214990616, + 0.014857466332614422, + 0.01859544776380062, + 0.02941805310547352, + -0.016571270301938057, + 0.022414397448301315, + -0.03203599154949188, + -0.006197358015924692, + -0.005927467718720436, + -0.040321625769138336, + -0.022778749465942383, + -0.024829916656017303, + 0.009054822847247124, + 0.027407370507717133, + -0.020714087411761284, + 0.004186674952507019, + -0.007212820928543806, + -0.03678606078028679, + 0.03370930999517441, + 0.009972450323402882, + -0.004382345359772444, + 0.011659265495836735, + 0.05656902864575386, + 0.01080236304551363, + -0.0035355642903596163, + 0.02322406880557537, + 0.01569412648677826, + -0.009790274314582348, + 0.033466409891843796, + 0.013872366398572922, + -0.01032330747693777, + 0.001486083958297968, + -0.010222098790109158, + -0.014196234755218029, + 0.003910037223249674, + -0.01435816939920187, + -0.006264830939471722, + -0.034330058842897415, + 0.002601068699732423, + 0.004841159097850323, + 0.01619342342019081, + -0.011139726266264915, + -0.019944900646805763, + -0.0018757382640615106, + -0.015019400045275688, + 0.00047863373765721917, + -0.008764690719544888, + -0.02381782792508602, + 0.0010820918250828981, + 0.015181334689259529, + -0.01758335903286934, + 0.015100367367267609, + -0.00011575767712201923, + 0.006092775613069534, + -0.010606692172586918, + -0.020687099546194077, + -0.0037582237273454666, + -0.0006317122024483979, + -0.018190613016486168, + 0.022495364770293236, + -0.0148709611967206, + 0.02082204446196556, + -0.040429580956697464, + 0.0006570144323632121, + -0.04517965391278267, + -0.012576892040669918, + -0.017245996743440628, + -0.044019121676683426, + -0.004544279538094997, + -0.007658139802515507, + 0.001926342723891139, + -0.01867641508579254, + 0.014088278636336327, + -0.035787466913461685, + 0.04318246245384216, + 0.0226438045501709, + -0.005239247344434261, + 0.0019179086666554213, + -0.0033027837052941322, + 0.021793648600578308, + 0.02588248811662197, + -0.0007076188921928406, + 0.0032842287328094244, + -0.008616250939667225, + -0.019499581307172775, + 0.026611192151904106, + 0.006514479406177998, + -0.004443070851266384, + -0.04561147838830948, + -0.022333430126309395, + 0.03238684684038162, + -0.026786621659994125, + -0.02804161235690117, + 0.006868710741400719, + 0.012010122649371624, + -0.014155751094222069, + -0.0045645213685929775, + -0.002066348446533084, + 0.009014339186251163, + 0.03130728751420975, + 0.021402308717370033, + -0.010019680485129356, + 0.02338600344955921, + 0.016233908012509346, + 0.007948271930217743, + 0.006032050121575594, + -0.03195502236485481, + 0.022346924990415573, + -0.049767788499593735, + -0.013750915415585041, + 0.005903852172195911, + 0.012907507829368114, + -0.003721113782376051, + -0.012151814997196198, + 0.008501547388732433, + 0.016301380470395088, + -0.010498736053705215, + 0.0009420861606486142, + 0.03276469558477402, + -0.010114142671227455, + 0.03325049579143524, + 0.01371717918664217, + -0.017205512151122093, + 0.025828510522842407, + -0.007206073496490717, + -0.0083193713799119, + 0.010647175833582878, + -0.006038797553628683, + -0.005414675921201706, + 0.0031982010696083307, + 0.022657299414277077, + -0.004142817575484514, + 0.015329774469137192, + 0.020673604682087898, + -0.01877087727189064, + 0.039646897464990616, + -0.0283654797822237, + -0.030389659106731415, + 0.017677821218967438, + 0.011922407895326614, + -0.01936463639140129, + 0.013312343508005142, + 0.031415242701768875, + 0.009378691203892231, + 0.01739443652331829, + 0.0012111332034692168, + 0.014128762297332287, + -0.005127917509526014, + 0.011969638988375664, + 0.00883216317743063, + -0.0018335678614675999, + 0.006905820686370134, + 0.008987350389361382, + 0.00196007895283401, + 0.008265393786132336, + -0.02366938814520836, + -0.016692720353603363, + 0.022913694381713867, + 0.0011655892012640834, + 0.0006540624890476465, + 0.021024461835622787, + -0.017947711050510406, + 0.025936467573046684, + -0.004645488224923611, + -0.0021877989638596773, + 0.014843971468508244, + 0.0034917069133371115, + -0.008191173896193504, + 0.05503065139055252, + 0.004598257597535849, + -0.007273545954376459, + 0.011733485385775566, + -0.01316390372812748, + 0.0018942932365462184, + -0.0040854658000171185, + 0.02090301178395748, + 0.014101773500442505, + 0.021969078108668327, + -0.0330885611474514, + 0.013103178702294827, + 0.02178015559911728, + 0.025761038064956665, + 0.004014619626104832, + -0.007010403089225292, + 0.026800116524100304, + -0.013049200177192688, + -0.021496769040822983, + -0.03265673667192459, + 0.0025066069792956114, + 0.0008644926710985601, + 0.02315659634768963, + -0.013271859847009182, + -0.014169245958328247, + -0.04242676869034767, + 0.010181615129113197, + 0.006086028181016445, + -0.03265673667192459, + 0.0031206076964735985, + 0.025693565607070923, + 0.015424235723912716, + 0.015235313214361668, + 0.02192859537899494, + -0.026773126795887947, + 0.00658195186406374, + 0.011585045605897903, + -0.0205791424959898, + 0.006615688093006611, + -0.002089963760226965, + -0.006328929681330919, + -0.011483835987746716, + -0.010060164146125317, + -0.025504643097519875, + 0.006588699296116829, + -0.0019027272937819362, + 0.012846782803535461, + 0.009027834050357342, + -0.01595052145421505, + -0.01418273989111185, + 0.006892325822263956, + 0.008515042252838612, + -0.023075629025697708, + 0.00732752401381731, + -0.01534326933324337, + 0.007705370895564556, + -0.027380380779504776, + -0.02435760758817196, + -0.03576047718524933, + -0.011517572216689587, + 0.014263707213103771, + 0.016476808115839958, + 0.0005060444818809628, + -0.012867024168372154, + -0.025099806487560272, + 0.002852404024451971, + 0.0059240940026938915, + 0.008973855525255203, + 0.004554400220513344, + 0.007421985734254122, + 0.0010981165105476975, + -0.0022367166820913553, + 0.0011714929714798927, + 0.011423110961914062, + -0.004618499428033829, + 0.01842002011835575, + 0.04048356041312218, + -0.020349735394120216, + 0.01478999387472868, + -0.024897389113903046, + -0.008130447939038277, + -0.003441102569922805, + 0.008643239736557007, + 0.021672198548913002, + -0.012846782803535461, + -0.002489738864824176, + -0.01435816939920187, + -0.017178524285554886, + 0.015545686706900597, + -0.02572055533528328, + 0.013642959296703339, + -0.008494799956679344, + 0.014951927587389946, + -0.004385719075798988, + -0.007678381633013487, + -0.012077595107257366, + -0.018892327323555946, + -0.004038235172629356, + 0.018460502848029137, + -0.01655777543783188, + -0.005030082073062658, + -0.00292493705637753, + 0.0038830479606986046, + -0.02522125653922558, + 0.023885300382971764, + 0.014695531688630581, + -0.012921002693474293, + 0.010350296273827553, + -0.006123138125985861, + -0.013481025584042072, + 0.005789149086922407, + 0.011456847190856934, + -0.009250493720173836, + -0.017515886574983597, + 0.023520948365330696, + -0.005839753430336714, + -0.016328368335962296, + -0.019499581307172775, + 0.027987634763121605, + 0.009547372348606586, + 0.0016303067095577717, + 0.003970762249082327, + -0.003127354895696044, + 0.01221928745508194, + 0.00321506941691041, + -0.007597414776682854, + -0.005141411907970905, + 0.011713243089616299, + -0.011767221614718437, + -0.01269159559160471, + 0.012502672150731087, + 0.01277256291359663, + 0.010991286486387253, + 0.008420580066740513, + 0.030038800090551376, + -0.002697217045351863, + 0.026516731828451157, + -0.007172337267547846, + -0.013089683838188648, + -0.014290696009993553, + -0.021159406751394272, + 0.01033005490899086, + 0.004041608888655901, + 0.01088333036750555, + -0.003156030783429742, + 0.0075434367172420025, + -0.02578802779316902, + 0.015410741791129112, + 0.029606975615024567, + -0.021280856803059578, + 0.012232782319188118, + 0.010984539054334164, + -0.01075513195246458, + -0.017637336626648903, + 0.014020806178450584, + -0.015140851028263569, + 0.00656171003356576, + -0.0217666607350111, + -0.003562553320080042, + -0.0005760472849942744, + 0.0061197648756206036, + -0.03257577121257782, + -0.011470342054963112, + -0.01843351311981678, + 0.0056676981039345264, + 0.01084959413856268, + -0.010917066596448421, + -0.03851335868239403, + 0.008845658041536808, + 0.013049200177192688, + -0.006423391401767731, + -0.0032336243893951178, + -0.026867588981986046, + 0.0052594891749322414, + 0.01971549354493618, + -0.039565932005643845, + 0.03341243043541908, + -0.009648581966757774, + 0.030551591888070107, + 0.012232782319188118, + -0.02194208838045597, + -0.02596345543861389, + 0.0019769470673054457, + 0.004476807080209255, + 0.009695812128484249, + -0.005782401654869318, + -0.024384597316384315, + -0.025774532929062843, + -0.004554400220513344, + -0.0006388811743818223, + 0.016004500910639763, + -0.01783975586295128, + -0.012961486354470253, + 0.022589826956391335, + 0.01119370386004448, + 0.011052011512219906, + -0.02563958801329136, + -0.026894578710198402, + 0.008946866728365421, + -0.017178524285554886, + 0.00882541574537754, + 0.0027781843673437834, + -0.012475683353841305, + -0.00619061104953289, + 0.024222662672400475, + -0.008575767278671265, + -0.007712117861956358, + 0.00043034867849200964, + 0.0023311784025281668, + 0.006251336075365543, + -0.0008493113564327359, + 0.02237391285598278, + -0.021321341395378113, + 0.010815857909619808, + 0.02796064503490925, + -0.006011808756738901, + 0.006423391401767731, + 0.00827888771891594, + -0.0013351140078157187, + -0.010768626816570759, + -0.009405680000782013, + -0.016746699810028076, + -0.007860558107495308, + 0.007745854556560516, + -0.0051481593400239944, + -0.0010930560529232025, + 0.02118639647960663, + -0.00044869279372505844, + 0.027542315423488617, + 0.009014339186251163, + 0.007044139318168163, + 0.0005735171143896878, + 0.01336632203310728, + -0.018190613016486168, + 0.0085217896848917, + 0.014763004146516323, + -0.012401463463902473, + 0.006575204897671938, + -0.0016252462519332767, + -0.001013775821775198, + 0.0023396124597638845, + -0.022495364770293236, + 0.002929997630417347, + 0.0012533034896478057, + 0.006116391159594059, + -0.00022750916832592338, + -0.023615408688783646, + 0.008548778481781483, + -0.009635087102651596, + 0.0027157720178365707, + -0.004682598169893026, + 0.016409335657954216, + -0.009655328467488289, + 0.006399775855243206, + -0.0008320214692503214, + 0.020187800750136375, + 0.002138881478458643, + -0.0038358173333108425, + -0.032116957008838654, + 0.004122575744986534, + -0.011517572216689587, + -0.022940684109926224, + 0.006025303155183792, + -0.0034191738814115524, + -0.013055947609245777, + 0.022684287279844284, + 0.027542315423488617, + 0.008238404057919979, + 0.01221254002302885, + -0.01465504802763462, + -0.003980883397161961, + 0.023035144433379173, + -0.007678381633013487, + -0.013238123618066311, + 0.013447289355099201, + -0.019688503816723824, + -0.014587575569748878, + -0.010545967146754265, + 0.01920270174741745, + 0.0008982289582490921, + 0.011335396207869053, + 0.016490302979946136, + -0.0002795895852614194, + -0.0032032616436481476, + -0.005934215150773525, + 0.02013382315635681, + -0.0026381786447018385, + 0.023952772840857506, + 0.012867024168372154, + -0.008838910609483719, + -0.013629465363919735, + 0.012313749641180038, + 0.011166715063154697, + 0.006028676871210337, + -0.009702559560537338, + 0.007759348955005407, + -0.003107113065198064, + 0.04293956235051155, + 0.0018183864885941148, + -0.010276076383888721, + 0.012522914446890354, + -0.011585045605897903, + 0.0032639869023114443, + 0.017097556963562965, + 0.013494519516825676, + 0.011139726266264915, + 0.012293507345020771, + 0.0023092497140169144, + 0.0034309816546738148, + -0.039053138345479965, + -0.01465504802763462, + -0.0011158280540257692, + -0.0007607535226270556, + -0.016949117183685303, + -0.012786057777702808, + -0.002268766053020954, + 0.01337306946516037, + 0.0017306722002103925, + -0.003886421676725149, + 0.0013840317260473967, + 0.00784031581133604, + 0.0038931688759475946, + -0.036057356745004654, + -0.008960360661149025, + -0.024843411520123482, + 5.4663349146721885e-5, + -0.014897949993610382, + 0.010168120265007019, + -0.0022282826248556376, + -0.004429575987160206, + -0.01698959991335869, + 0.0020157438702881336, + 0.018554965034127235, + 0.021483276039361954, + 0.014304190874099731, + 0.035517577081918716, + -0.013339333236217499, + 0.01312342006713152, + -0.017421424388885498, + 0.015113862231373787, + -0.012131573632359505, + 0.012428452260792255, + 0.014466125518083572, + 0.028527414426207542, + -0.004078718367964029, + -0.001047512050718069, + 0.007901041768491268, + 0.014398652128875256, + 0.014088278636336327, + -0.02922913059592247, + 0.0026381786447018385, + -0.007685129065066576, + 0.007637897972017527, + -0.014938433654606342, + 0.01123418752104044, + -0.00020779452461283654, + 0.00823165662586689, + 0.0007202699780464172, + 0.009317966178059578, + -0.013508014380931854, + -0.0148709611967206, + 0.0027056511025875807, + 0.028257524594664574, + -0.014951927587389946, + -0.01595052145421505, + 3.854635906463955e-6, + -0.0017509139142930508, + -0.016490302979946136, + -0.0033904979936778545, + 0.004365477245301008, + 0.005380939692258835, + 0.0055293794721364975, + -0.0005111049395054579, + -0.013602475635707378, + 0.03557155281305313, + -0.011018275283277035, + 0.03254878148436546, + -0.006845095194876194, + -0.01808265596628189, + -0.040321625769138336, + -0.028527414426207542, + -0.009452911093831062, + -0.00439246604219079, + -0.01166601199656725, + -0.007853810675442219, + -0.04053753614425659, + 0.012981727719306946, + -0.0027309535071253777, + 0.03478887304663658, + 0.008049480617046356, + 0.027447853237390518, + 0.0025858874432742596, + 0.024479059502482414, + -0.02221198007464409, + -0.011348891071975231, + 0.01217880379408598, + 0.014897949993610382, + 0.020849032327532768, + -0.01758335903286934, + 0.019607536494731903, + 0.017340457066893578, + 0.001926342723891139, + -0.01750239171087742, + 0.0033095309045165777, + 0.00272251944988966, + 0.007408491335809231, + 0.015437730588018894, + -0.005367445293813944, + -0.0009091932442970574, + 0.006312061566859484, + -0.018703404814004898, + -0.02030925266444683, + -0.025005344301462173, + 0.01612595096230507, + -0.00874444842338562, + -0.010559462010860443, + 0.011132978834211826, + -0.0037481028120964766, + 0.002881079912185669, + 0.007125106640160084, + 0.0010888390243053436, + -0.029040206223726273, + -0.004534158855676651, + 0.0018015183741226792, + 0.022589826956391335, + 0.024074222892522812, + 0.0233320239931345, + -0.0034984543453902006, + 0.004324993584305048, + -0.004557773936539888, + -0.017961205914616585, + 0.010937307961285114, + 0.010026427917182446, + 0.012644365429878235, + 0.022009560838341713, + -0.0330885611474514, + -0.007017150055617094, + 0.0017340457998216152, + 0.008035986684262753, + 0.008724207058548927, + -0.0009083498734980822, + 0.00619061104953289, + -0.013096431270241737, + -0.00514478562399745, + 0.013447289355099201, + 0.021213384345173836, + 0.001424515270628035, + 0.02605791762471199, + 0.023197079077363014, + -0.0005638179136440158, + -0.003640146693214774, + 0.0190137792378664, + 0.006787743419408798, + 0.0020056229550391436, + -0.012988475151360035, + 0.011065506376326084, + 0.0021759914234280586, + 0.007725612726062536, + -0.020700592547655106, + -0.006700029131025076, + 0.013912850059568882, + -0.005610346794128418, + 0.003329772735014558, + -0.028932251036167145, + 0.022576332092285156, + 0.005455159582197666, + 0.019243184477090836, + -0.013683442957699299, + 0.004436323419213295, + -0.002958673518151045, + -0.006632556673139334, + 0.011645770631730556, + -0.00031395844416692853, + 0.006615688093006611, + 0.005063818767666817, + 0.017893733456730843, + -0.01265111193060875, + -0.011423110961914062, + 0.00844756979495287, + 0.003943773452192545, + -0.005131291225552559, + -0.011342143639922142, + -0.007732359692454338, + -0.0020427329000085592, + -0.016652237623929977, + 0.05009165778756142, + 0.00046809116611257195, + 0.0066055674105882645, + 0.007030644919723272, + -0.0018605568911880255, + -0.028419459238648415, + -0.00026482995599508286, + 0.01800168864428997, + 0.021037956699728966, + 0.002450942061841488, + -0.010127637535333633, + -0.0066527980379760265, + 0.021145911887288094, + -0.001308124978095293, + -0.026881083846092224, + -0.008164184167981148, + 0.017974700778722763, + 0.00938543863594532, + -0.0025673324707895517, + 0.01732696406543255, + 0.007982008159160614, + -0.006969919428229332, + -0.004152938257902861, + 0.017691316083073616, + -0.015370258130133152, + 0.026381786912679672, + -0.01367669552564621, + -0.019607536494731903, + 0.03686702623963356, + 0.023359013721346855, + 0.01024234015494585, + -0.01843351311981678, + -0.006447006948292255, + -0.011200451292097569, + 0.005819511599838734, + -0.005721676163375378, + 0.00522575294598937, + -0.006689907982945442, + 0.00031416930141858757, + -0.0006477369461208582, + 0.0002970903005916625, + -0.004783807322382927, + 0.008049480617046356, + 0.007772843353450298, + -0.02083553932607174, + 0.005782401654869318, + -0.030200734734535217, + 0.007820074446499348, + -0.0008472028421238065, + 0.005549621302634478, + 0.008022491820156574, + -0.0185144804418087, + 0.016301380470395088, + 0.01166601199656725, + 0.023547936230897903, + -0.001230531488545239, + 0.016787182539701462, + 0.011504078283905983, + 0.0025133544113487005, + -0.011072253808379173, + -0.02742086350917816, + -0.019648021087050438, + -0.00020811079593840986, + -0.01328535471111536, + -0.02030925266444683, + 0.01118695642799139, + -0.00942592229694128, + -0.007300535216927528, + -0.0058633689768612385, + -0.020295757800340652, + -0.025356203317642212, + -0.014601070433855057, + -0.006956425029784441, + -0.012124826200306416, + -0.015640148892998695, + 0.018109645694494247, + 0.011247682385146618, + 0.01765083149075508, + 0.01801518350839615, + -0.007914535701274872, + -0.007718865294009447, + 0.011537814512848854, + -0.03044363670051098, + -0.0037683446425944567, + 0.01080236304551363, + -0.024533037096261978, + 0.018366040661931038, + -0.044450949877500534, + -0.004314872901886702, + -0.028905261307954788, + -0.04123925417661667, + -0.02022828534245491, + 0.00520551111549139, + 0.02236041985452175, + -0.0033348333090543747, + -0.0037919599562883377, + 0.004490301478654146, + 0.015923533588647842, + 0.000263143127085641, + -0.014736015349626541, + -0.0009403993608430028, + 0.009797021746635437, + -0.005158280022442341, + -0.005971325095742941, + -0.008670228533446789, + -0.002776497509330511, + 0.03276469558477402, + -0.00285915145650506, + -0.02160472609102726, + 0.007759348955005407, + 0.002287321025505662, + -0.004233905579894781, + 0.019148724153637886, + -0.0047365762293338776, + -0.006106270011514425, + -0.01213832013309002, + 0.012698343023657799, + 0.0015265675028786063, + -0.023075629025697708, + -0.003451223485171795, + -0.007610909175127745, + 0.02427664026618004, + -0.004557773936539888, + -0.012462189421057701, + -0.005559741985052824, + -0.0044531915336847305, + 0.006261457223445177, + -0.019391624256968498, + -0.006689907982945442, + -0.015896543860435486, + 0.027380380779504776, + 0.016949117183685303, + 0.04396514594554901, + 0.002992409747093916, + 0.03430306911468506, + 0.013528255745768547, + -0.02290019951760769, + 0.005903852172195911, + -0.006204105447977781, + -0.022657299414277077, + 0.023089123889803886, + 0.004793928004801273, + 0.00683497404679656, + 0.008130447939038277, + -0.0013410178944468498, + 0.0022755134850740433, + -0.0009513636468909681, + -0.019499581307172775, + 0.002277200110256672, + -0.010424516163766384, + 0.016233908012509346, + -0.03881023824214935, + 0.001887545920908451, + -0.011301659978926182, + 0.0009538938757032156, + 0.0016876583686098456, + -0.03624628111720085, + 0.026543719694018364, + -0.03743379935622215, + 0.001486083958297968, + 0.010363791137933731, + -0.004739949945360422, + -0.007685129065066576, + 0.0017188644269481301, + -0.012084342539310455, + 0.014074783772230148, + 0.015289290808141232, + 0.011639023199677467, + -0.0011917348019778728, + -0.005532753188163042, + 0.01601799577474594, + 0.011301659978926182, + 0.020862527191638947, + -0.0077795907855033875, + 0.002157436450943351, + -0.013555245473980904, + -0.008710712194442749, + 0.005448412150144577, + -0.016301380470395088, + 0.0002126441104337573, + -0.010518978349864483, + -0.01140286959707737, + 0.0032707343343645334, + -0.004055103287100792, + -0.02194208838045597, + -0.005552995018661022, + 0.0028793930541723967, + 0.002911442657932639, + 0.01135563850402832, + -0.0119156613945961, + 0.0028034865390509367, + 0.0165442805737257, + 0.013818387873470783, + 0.0033196518197655678, + 0.0025217884685844183, + -0.005026708822697401, + 0.032440826296806335, + 0.022859716787934303, + 0.042129889130592346, + 0.001249929890036583, + -0.008339612744748592, + 0.0010770313674584031, + 0.0129007613286376, + 0.007482711225748062, + -0.018743887543678284, + 0.008116954006254673, + -0.01697610504925251, + -0.012880519032478333, + 0.003775091841816902, + 0.00690244697034359, + -0.026476247236132622, + -0.017165029421448708, + 0.017367446795105934, + 0.006075907498598099, + 0.014574081636965275, + -0.014061289839446545, + 0.015964016318321228, + 0.025072818621993065, + -0.0043283673003315926, + -0.0005275513976812363, + 0.004574642051011324, + 0.0017779029440134764, + 0.03087546117603779, + -0.012286759912967682, + -0.009527130983769894, + -0.008575767278671265, + 0.0033904979936778545, + 0.015923533588647842, + 0.027285918593406677, + 0.0032218166161328554, + 0.016949117183685303, + -0.016085468232631683, + -0.0033230255357921124, + 0.011652518063783646, + -0.0025066069792956114, + 0.005961203947663307, + -0.003609783947467804, + -0.01971549354493618, + 0.00793477799743414, + -0.013663201592862606, + -0.008542031049728394, + 0.0003223925014026463, + -0.010863088071346283, + -0.0062580835074186325, + -0.0024340739473700523, + -0.01638234779238701, + -0.01234748587012291, + 0.004588136915117502, + -0.011342143639922142, + -2.4814629796310328e-5, + -0.01366994809359312, + 0.005016587674617767, + 0.004895137157291174, + 0.00232611782848835, + 0.019148724153637886, + -0.014425641857087612, + 0.006517853122204542, + 0.023709870874881744, + -0.003088558092713356, + -0.02410121262073517, + 0.01234748587012291, + 0.017016589641571045, + -0.030119767412543297, + -0.010087153874337673, + 0.0025791400112211704, + 0.004378971643745899, + -0.032629746943712234, + -0.004615125712007284, + -0.018136635422706604, + -0.014155751094222069, + 0.004699466284364462, + -0.011159967631101608, + -0.00835310760885477, + 0.00925724022090435, + -0.009479899890720844, + -0.006379534024745226, + -0.006254709791392088, + -0.024964861571788788, + 0.001143660512752831, + 0.029202140867710114, + -0.004274389240890741, + 0.004169806372374296, + 0.02125386893749237, + -0.0071116117760539055, + 0.00835985504090786, + -0.031226318329572678, + 0.020876022055745125, + 0.01272533182054758, + -0.011679506860673428, + 0.019405119121074677, + -0.006075907498598099, + -0.00922350399196148, + -0.009655328467488289, + -0.003454596968367696, + 0.008589262142777443, + 0.010174867697060108, + 0.010910319164395332, + -0.017434919252991676, + 0.021901605650782585, + -0.03646219149231911, + 0.008245151489973068, + -0.003970762249082327, + -0.019486086443066597, + -0.008326118811964989, + -0.00542479706928134, + 0.004456565249711275, + 0.027825700119137764, + 0.008960360661149025, + -0.0017247683135792613, + 0.006983413826674223, + 0.008427327498793602, + -0.004436323419213295, + -0.02949902042746544, + -0.006075907498598099, + -0.008926624432206154, + -0.014466125518083572, + 0.0035423114895820618, + 0.01595052145421505, + -0.009371943771839142, + 0.00473320297896862, + -0.005684566218405962, + -0.015208323486149311, + 0.014263707213103771, + -0.00737475510686636, + 0.005364071577787399, + -0.018325557932257652, + 0.02151026390492916, + 0.025153784081339836, + 0.014924938790500164, + -0.02047118730843067, + 0.02246837504208088, + 0.019863933324813843, + -0.02724543586373329, + 0.0025470906402915716, + -0.005310093518346548, + 0.011551308445632458, + -0.02236041985452175, + -0.007725612726062536, + 0.0016387407667934895, + 0.0008990723872557282, + -0.007671634666621685, + -0.00973629578948021, + -0.011585045605897903, + 0.006899073254317045, + -0.0009741356479935348, + 0.015707621350884438, + 0.006723644677549601, + -0.012084342539310455, + 0.010424516163766384, + 0.00895361416041851, + -0.0037244874984025955, + 0.014196234755218029, + 0.024303629994392395, + 0.01721900701522827, + -0.00342760793864727, + 0.0034917069133371115, + -0.007617656607180834, + 0.01937813125550747, + -0.01474951021373272, + -0.0057520391419529915, + -0.0002833849284797907, + 0.025949960574507713, + -0.008461063727736473, + -0.002596008125692606, + 0.009007591754198074, + 0.000980039476417005, + 0.004935620818287134, + 0.013022211380302906, + -0.023278046399354935, + 0.0047028400003910065, + 0.0002949817571789026, + -0.017853248864412308, + -0.003103739582002163, + -0.0085217896848917, + -0.013265113346278667, + 0.006770875304937363, + 0.00035929158912040293, + 0.00495248893275857, + -0.013150409795343876, + 0.0009201575885526836, + 0.019580548629164696, + 0.00033272424479946494, + -0.0014658422442153096, + -0.01174697931855917, + -0.02187461592257023, + 0.021456286311149597, + 0.027285918593406677, + 0.014506609179079533, + 0.007712117861956358, + 0.0034782125148922205, + -0.006447006948292255, + -0.0034579706843942404, + 0.005026708822697401, + 0.013899355195462704, + -0.02238740772008896, + 0.027636775746941566, + -0.0036603885237127542, + 0.006447006948292255, + -0.010525725781917572, + 0.009243746288120747, + -0.0011504078283905983, + -0.011429858393967152, + 0.025018839165568352, + -0.009952208027243614, + 0.0006490020314231515, + -0.013042453676462173, + -0.005019961390644312, + 0.004061850253492594, + 0.017367446795105934, + -0.008690470829606056, + -0.004571268334984779, + 0.0017357326578348875, + -0.009594603441655636, + -0.0013233063509687781, + 0.01825808547437191, + -0.01277931034564972, + -0.0065077319741249084, + 0.0010896824533119798, + -0.0033871245104819536, + -0.009830757975578308, + 0.009115547873079777, + -0.01336632203310728, + 0.003586168633773923, + 0.006811358965933323, + 0.0015906664775684476, + -0.0065279738046228886, + 0.02759629301726818, + 0.018838349729776382, + -0.0037447293289005756, + -0.002847343683242798, + -0.0026769754476845264, + -0.00037615973269566894, + -0.017947711050510406, + 0.007658139802515507, + -0.0258015226572752, + -0.017084062099456787, + 0.02621985226869583, + -0.008643239736557007, + -0.0036671357229351997, + 0.011639023199677467, + -0.026557214558124542, + -0.009277482517063618, + -0.0356525219976902, + -0.0016100648790597916, + -0.006649424787610769, + -0.004365477245301008, + 0.005826259031891823, + 0.014493114314973354, + -0.0012516167480498552, + -0.005816137883812189, + -0.0005486365407705307, + 0.004618499428033829, + -0.007158842869102955, + 0.003046387806534767, + -0.01080236304551363, + -0.020106835290789604, + -0.016098961234092712, + -0.011719990521669388, + 0.011760474182665348, + -0.03729885444045067, + 0.016935622319579124, + 0.016652237623929977, + -0.0033972454257309437, + -0.016179928556084633, + -0.0015653643058612943, + 0.013690190389752388, + 0.02392578311264515, + 0.0017407929990440607, + -0.01333258580416441, + 0.010620187036693096, + -0.033466409891843796, + 0.021456286311149597, + 0.005033455789089203, + 0.006710149813443422, + 0.015653643757104874, + 0.022765254601836205, + 0.0019904416985809803, + -0.008737701922655106, + 0.0019938151817768812, + 0.001752600772306323, + -0.018285073339939117, + 0.01234748587012291, + -0.0017863370012491941, + -0.00011259489838266745, + 0.02503233402967453, + -0.0031847066711634398, + 0.008285635150969028, + 0.014924938790500164, + -0.010640428401529789, + 0.013528255745768547, + 0.023453475907444954, + 0.02982288785278797, + 0.024721959605813026, + -0.005903852172195911, + 0.01384537760168314, + -0.0002058968530036509, + 0.009054822847247124, + 0.031523197889328, + -0.003085184609517455, + 0.005387687124311924, + 0.021321341395378113, + -0.002461062977090478, + -0.015289290808141232, + 0.004149565007537603, + 0.01902727223932743, + -0.007988755591213703, + -0.006831600796431303, + 0.020039360970258713, + 0.016341863200068474, + 0.008697218261659145, + 0.00369749846868217, + -0.01281304657459259, + -0.019931405782699585, + 0.005721676163375378, + 3.0211119792511454e-6, + 0.025315718725323677, + -0.0018858591793105006, + -0.008859151974320412, + -0.00022076191089581698, + 0.0028220415115356445, + 0.000994377420283854, + -0.006322182714939117, + -0.014128762297332287, + 0.010748384520411491, + 0.008892888203263283, + 0.0031543439254164696, + 0.014574081636965275, + 0.0032268769573420286, + -0.006285072769969702, + -0.004041608888655901, + -0.021483276039361954, + 0.030740516260266304, + 0.012563398107886314, + -0.02047118730843067, + 0.00022392468235921115, + 0.02785268798470497, + 0.00993871409446001, + -0.004777059890329838, + 0.029526008293032646, + -0.010397527366876602, + 0.0245195422321558, + -0.009972450323402882, + 0.014843971468508244, + -0.0033972454257309437, + 0.012867024168372154, + -0.0044531915336847305, + 0.02178015559911728, + 0.008730954490602016, + -0.009061570279300213, + 0.021159406751394272, + -0.02375035546720028, + -0.0021456286776810884, + 0.012077595107257366, + 0.026597699150443077, + 0.009587856009602547, + -0.012468935921788216, + 0.004416081588715315, + 0.00827214028686285, + -0.009358449839055538, + 0.02613888494670391, + -0.0003614001034293324, + 0.007314029615372419, + -0.01234748587012291, + -0.014331179670989513, + -0.018730392679572105, + 0.00895361416041851, + 0.013912850059568882, + -0.016004500910639763, + 0.013649706728756428, + 0.008899635635316372, + 0.007482711225748062, + 0.01221928745508194, + -0.006416643969714642, + 0.022994661703705788, + -0.016854654997587204, + 0.00990497786551714, + -0.03576047718524933, + 0.01522181835025549, + 0.016773687675595284, + -0.013042453676462173, + 0.0021152659319341183, + -0.0061197648756206036, + 0.004844532813876867, + 0.0028152940794825554, + 0.0016151253366842866, + 0.025774532929062843, + -0.00015961486496962607, + 0.015019400045275688, + 0.016949117183685303, + -0.013508014380931854, + 0.02769075520336628, + 0.007131853606551886, + -0.016328368335962296, + -0.002047793474048376, + 0.008906383067369461, + 0.003368569537997246, + -0.0022468375973403454, + -0.002089963760226965, + -0.02315659634768963, + -0.03203599154949188, + -0.002982288831844926, + 0.0004427889361977577, + 0.00047483842354267836, + -0.009500142186880112, + 0.003210008842870593, + -0.00117824028711766, + 0.004537532106041908, + -0.0024492554366588593, + 0.009331460110843182, + -0.007165589835494757, + 0.017799271270632744, + -0.009925219230353832, + 0.0007126793498173356, + -0.01955355890095234, + 0.015613159164786339, + 0.014884455129504204, + 0.01707056723535061, + -0.010950802825391293, + 0.030416646972298622, + -0.004416081588715315, + 0.014911443926393986, + 0.0018976668361574411, + -0.0009850999340415, + 0.00835985504090786, + -0.018554965034127235, + -0.001269328291527927, + 0.029364075511693954, + 0.0020359857007861137, + 0.03068653866648674, + -0.016247401013970375, + 0.019755976274609566, + 0.0002033666241914034, + 0.00037784656160511076, + -0.04121226444840431, + 0.0027427610475569963, + -0.014223223552107811, + -0.01747540384531021, + 0.006929435767233372, + -0.00615012738853693, + -0.017934216186404228, + 0.0014877708163112402, + 0.003761597443372011, + -0.0027731237933039665, + 0.011686254292726517, + 0.0071116117760539055, + -0.012097837403416634, + 0.004044982139021158, + -0.002369974972680211, + 0.003984257113188505, + -0.012630870565772057, + 0.003906663507223129, + 0.009594603441655636, + -0.016436325386166573, + 0.019094744697213173, + 0.006780995987355709, + -0.012522914446890354, + 0.005411302205175161, + -0.03387124463915825, + 0.03619230166077614, + -0.00443294970318675, + -0.016679225489497185, + -0.01080236304551363, + -0.005600225646048784, + 0.017677821218967438, + 0.0024492554366588593, + -0.010734890587627888, + 0.014547091908752918, + 0.007516447454690933, + -0.018460502848029137, + 0.01987742818892002, + -0.008258646354079247, + 0.006848468910902739, + -0.02280573919415474, + 0.007718865294009447, + 0.013535003177821636, + 0.022171495482325554, + 0.0007050886633805931, + -0.020956989377737045, + 0.02931009605526924, + -0.008555525913834572, + 0.011099242605268955, + 0.005252741742879152, + 0.011382627300918102, + 0.018568459898233414, + -8.34841648611473e-6, + 0.0138858612626791, + -0.0006582795176655054, + -0.024411587044596672, + 0.004567895084619522, + 0.004783807322382927, + -0.02384481579065323, + -0.003788586473092437, + -0.02013382315635681, + 0.006470622029155493, + -0.004264268092811108, + 0.017084062099456787, + -0.01997188851237297, + -0.009790274314582348, + -0.00784031581133604, + -0.015059883706271648, + -0.014074783772230148, + 0.0037582237273454666, + 0.007469216827303171, + -0.004851279780268669, + -0.01928366906940937, + -0.016436325386166573, + 0.006048918701708317, + 0.013649706728756428, + 0.020687099546194077, + -0.0009876302210614085, + 0.019081251695752144, + -0.01170649565756321, + -0.002278886968269944, + 0.014439135789871216, + -0.0027292666491121054, + -0.022589826956391335, + -0.013858871534466743, + 0.012239529751241207, + -0.01705707237124443, + -0.006531347520649433, + -0.006136632990092039, + -0.0007953332387842238, + -0.007010403089225292, + 0.013413552194833755, + 0.00017890780873131007, + -0.018028678372502327, + -0.003933652304112911, + 0.003306157421320677, + -0.003798707388341427, + 0.0005237560253590345, + 0.0492280088365078, + 0.00619061104953289, + 0.000912566902115941, + 0.011159967631101608, + -0.01859544776380062, + -0.004463312216103077, + -0.0010247400496155024, + 0.007685129065066576, + 0.003210008842870593, + 0.01688164472579956, + -0.03225190192461014, + -0.016908632591366768, + 0.0058127641677856445, + -4.184091721981531e-7, + 0.006777622736990452, + 8.391904702875763e-5, + -0.021199891343712807, + -0.001916221808642149, + -0.007064381148666143, + 0.027663765475153923, + -0.009419174864888191, + -0.014385158196091652, + 0.028068600222468376, + -0.013899355195462704, + 0.018406525254249573, + -0.017111051827669144, + 0.008724207058548927, + -0.01431768573820591, + 0.00026145632728002965, + -0.008373349905014038, + -0.0205791424959898, + -0.009324713610112667, + -0.001669946825131774, + 0.004375597927719355, + -0.021888110786676407, + 0.010653923265635967, + -0.004756818059831858, + -0.016260895878076553, + -0.0065077319741249084, + 0.02418217994272709, + 0.0025470906402915716, + -0.005161653738468885, + -0.004311499185860157, + -0.02906719595193863, + 0.0085217896848917, + -0.02074107713997364, + -0.024546531960368156, + -0.0031222945544868708, + 0.016166435554623604, + 0.004186674952507019, + 0.008730954490602016, + -0.01265111193060875, + -0.0006350858602672815, + 0.008683723397552967, + -0.0016227159649133682, + 0.02118639647960663, + 0.009682318195700645, + 0.02356143109500408, + 0.00415968568995595, + 0.017259491607546806, + 0.017299974337220192, + 0.0004541749367490411, + -0.01955355890095234, + 0.018487492576241493, + 0.015977511182427406, + -0.005536126904189587, + -0.013555245473980904, + -0.015181334689259529, + -0.014911443926393986, + -0.00921675655990839, + 0.014344674535095692, + -0.004284509923309088, + -0.0006920158630236983, + -0.010984539054334164, + -0.018136635422706604, + -0.0046893456019461155, + 0.006787743419408798, + 0.01225302368402481, + 0.007786337751895189, + 0.005188643001019955, + 0.008622998371720314, + 0.015289290808141232, + -0.005664324853569269, + -0.0006713523762300611, + 0.010181615129113197, + -0.004871521610766649, + -0.02192859537899494, + -0.014155751094222069, + 0.0026702280156314373, + 0.0009977510198950768, + -0.006298567168414593, + 0.004105707630515099, + 0.006780995987355709, + -0.0025420300662517548, + -0.03894518315792084, + -0.003442789427936077, + -0.010532472282648087, + 0.013858871534466743, + 0.006868710741400719, + -0.03824346885085106, + -0.011625528335571289, + -0.012846782803535461, + -0.012273265980184078, + 0.004605005029588938, + -0.005822885315865278, + -0.002805173397064209, + -0.0012102897744625807, + 0.009547372348606586, + 0.038864217698574066, + -0.0034984543453902006, + -0.004318246152251959, + -0.019836943596601486, + -0.0038358173333108425, + 0.020714087411761284, + 0.004901884123682976, + 0.0004189626779407263, + 0.01483047753572464, + -0.013642959296703339, + 0.01843351311981678, + -0.017853248864412308, + 0.0038189489860087633, + 0.009743043221533298, + 0.004807422868907452, + -0.0036603885237127542, + 0.0040584770031273365, + -0.006976666860282421, + -0.004416081588715315, + -0.010269329883158207, + 0.015842566266655922, + -0.009594603441655636, + 0.0005039359675720334, + 0.028149567544460297, + -0.015505203045904636, + 0.004277762956917286, + 0.014398652128875256, + -0.007644645404070616, + -0.010545967146754265, + -0.007246557157486677, + -0.0015451224753633142, + -0.022940684109926224, + -0.006318808998912573, + -0.01886533945798874, + 0.014398652128875256, + -0.007516447454690933, + -0.018109645694494247, + 0.015829071402549744, + -0.003906663507223129, + -0.004625246860086918, + -0.007341018877923489, + 0.005097554996609688, + 0.008326118811964989, + -0.004534158855676651, + 0.002805173397064209, + -0.0020056229550391436, + -0.010950802825391293, + -0.006710149813443422, + 0.006335677113384008, + 0.028149567544460297, + -0.01698959991335869, + 0.019175712019205093, + 0.019675008952617645, + -0.01893281191587448, + -0.003505201544612646, + -0.014425641857087612, + -0.024573519825935364, + 0.00028844535700045526, + 0.001033174223266542, + 0.003002530662342906, + -0.015559181571006775, + -0.00741523876786232, + 0.010174867697060108, + -0.011348891071975231, + -0.010518978349864483, + 0.01827158033847809, + -0.00367725663818419, + 0.010707901790738106, + -0.028149567544460297, + 0.009992691688239574, + -0.001970199868083, + 0.0034680915996432304, + -0.029013218358159065, + -0.004362103529274464, + 0.004878269042819738, + 0.005951083265244961, + 0.0029806019738316536, + 0.013406805694103241, + -0.007610909175127745, + -0.008123700506985188, + 0.010728143155574799, + -0.004098960198462009, + 0.0002920298429671675, + 0.00017795898020267487, + 0.006851842626929283, + 0.0342760793864727, + 0.020376725122332573, + 0.0012389655457809567, + -0.0019718867260962725, + -0.020457692444324493, + -0.010734890587627888, + 0.006322182714939117, + 0.014884455129504204, + -0.013359574601054192, + 0.007813327014446259, + -0.006470622029155493, + -0.007482711225748062, + 0.0002353106829104945, + -0.01474951021373272, + 0.0032741078175604343, + -0.000574360485188663, + 0.02227945253252983, + 0.0059881932102143764, + -0.006187237333506346, + 0.010626934468746185, + -0.00636266591027379, + 0.008184426464140415, + -0.01238122209906578, + -0.01470902655273676, + 0.00490525783970952, + 0.0005604442558251321, + -0.017866743728518486, + 0.0015037955017760396, + 0.012961486354470253, + -0.020808549597859383, + 0.010397527366876602, + 0.002870958996936679, + 0.01182794664055109, + -0.008690470829606056, + 0.004854653496295214, + -0.014223223552107811, + -0.0008071409538388252, + 0.0030784374102950096, + 0.00017469078011345118, + 0.018811360001564026, + -0.017542876303195953, + 0.02538319118320942, + -0.010444758459925652, + -0.018123140558600426, + -0.020687099546194077, + -0.00831262394785881, + 0.007131853606551886, + 0.012576892040669918, + 0.02192859537899494, + 0.004594883881509304, + 0.028419459238648415, + 0.019418613985180855, + 0.0057992697693407536, + -0.028446447104215622, + -0.004311499185860157, + 0.0036468938924372196, + -0.0008522632415406406, + -0.02024178020656109, + 0.009587856009602547, + 0.004628620110452175, + 0.002533596009016037, + 0.0048985108733177185, + -0.0007831038674339652, + -0.011773968115448952, + 0.01045150589197874, + 0.003997751511633396, + -0.013744167983531952, + 0.0026685413904488087, + -0.019418613985180855, + -0.01740793138742447, + -0.0034579706843942404, + -0.008663482032716274, + -0.014371663331985474, + 0.013265113346278667, + -0.014843971468508244, + -0.005802643485367298, + -0.019769471138715744, + 0.010633681900799274, + 0.016733204945921898, + -0.006929435767233372, + -0.004318246152251959, + 0.030497614294290543, + -0.0009969075908884406, + 0.02090301178395748, + -0.0002669384703040123, + -0.018541470170021057, + -0.0008585888426750898, + -0.0015324713895097375, + -0.015289290808141232, + -0.012057353742420673, + 0.013440541923046112, + -0.020106835290789604, + 0.005563115701079369, + 0.03376328945159912, + 0.004965983331203461, + -0.007158842869102955, + 0.003586168633773923, + -0.004547653254121542, + 0.020983979105949402, + 0.017974700778722763, + -0.00972954835742712, + 0.004965983331203461, + 0.017812766134738922, + -0.025342708453536034, + -0.019256679341197014, + -0.02435760758817196, + -0.0029772284906357527, + 0.0009488334180787206, + 0.0025791400112211704, + -0.0005528536275960505, + -0.023979760706424713, + -0.006177116185426712, + 0.0028743327129632235, + 0.013339333236217499, + 0.0004478493647184223, + 0.011902166530489922, + 0.009149284102022648, + -0.007793085183948278, + -0.00026672761305235326, + 0.015248807147145271, + 0.008488052524626255, + -0.01088333036750555, + -0.021753165870904922, + 0.005013213958591223, + -0.027906667441129684, + 0.013433794490993023, + 0.02460050955414772, + -0.0008210571832023561, + 0.02066010981798172, + 0.006848468910902739, + -0.018244590610265732, + 0.002047793474048376, + 0.01653078757226467, + -0.0002762159565463662, + 0.013271859847009182, + -0.0011048638261854649, + 0.023601915687322617, + 0.013386563397943974, + -0.0037717183586210012, + -0.000612735515460372, + -0.00784706324338913, + -0.0020528538152575493, + -0.000511948368512094, + -0.012556650675833225, + 0.017947711050510406, + -0.0023767224047333, + -0.006393028888851404, + 0.005492269527167082, + 0.015154345892369747, + 0.0057655335403978825, + -0.001491987844929099, + -0.012617375701665878, + -0.0007012933492660522, + 0.0009150971309281886, + 0.01723250187933445, + -0.014250213280320168, + -0.006568457465618849, + 0.005337082780897617, + 0.008703965693712234, + -0.029876867309212685, + 0.004318246152251959, + 0.005215631797909737, + -0.006126511842012405, + 0.0004664043372031301, + -0.018393030390143394, + 0.009614845737814903, + -0.011463594622910023, + 0.014479619450867176, + 0.00929772388190031, + 0.00617036921903491, + 0.032197922468185425, + -0.00023425642575602978, + 0.00792803056538105, + 0.004544279538094997, + -0.005289851687848568, + 0.0002789570135064423, + -0.01522181835025549, + -0.0012414958328008652, + 0.0102895712479949, + -0.009203262627124786, + -0.004318246152251959, + 0.01568063162267208, + 0.010788868181407452, + 0.00010089261922985315, + -0.020093340426683426, + -0.008069722913205624, + -0.01612595096230507, + -0.01696261204779148, + -0.012232782319188118, + -0.030659548938274384, + -0.0013975262409076095, + 0.0132448710501194, + 0.011895419098436832, + -0.023170091211795807, + -0.005262862890958786, + 0.017097556963562965, + 0.014479619450867176, + -0.021456286311149597, + -0.008730954490602016, + 0.003088558092713356, + -0.03778465464711189, + 0.009931966662406921, + -0.016733204945921898, + -0.011038517579436302, + -0.014843971468508244, + 0.0063559189438819885, + 0.01595052145421505, + -0.0013055948074907064, + 0.01705707237124443, + 0.014479619450867176, + -0.005019961390644312, + -0.0006953894626349211, + 0.00739499693736434, + -0.00368737755343318, + -0.0038796744775027037, + -0.002364914631471038, + 0.0015619907062500715, + 0.022090528160333633, + -0.01646331325173378, + 0.0008906383300200105, + 0.021294351667165756, + -0.01478999387472868, + -0.019675008952617645, + -0.0004664043372031301, + 0.0051953899674117565, + 0.024991851300001144, + -0.0024340739473700523, + -0.010498736053705215, + -0.02246837504208088, + -0.00977677945047617, + -0.022158000618219376, + 0.020943494513630867, + 0.02090301178395748, + 0.008649987168610096, + 0.015734609216451645, + 0.008029239252209663, + 0.02315659634768963, + -0.011207198724150658, + -0.0024020245764404535, + -0.008987350389361382, + 0.005475401412695646, + -0.00396738899871707, + 0.013521509245038033, + -0.011733485385775566, + -0.00933820754289627, + -0.0012288447469472885, + -0.007907788269221783, + -0.011753726750612259, + -0.03284566104412079, + 0.0036536413244903088, + 0.0005431544268503785, + 0.003626652294769883, + 0.023021651431918144, + 0.016071973368525505, + -0.004254147410392761, + 0.0009648581617511809, + -0.012097837403416634, + -0.011105990037322044, + 0.004743323661386967, + -0.008251898922026157, + -0.022603319957852364, + 0.002810233738273382, + -0.006281699053943157, + -0.007179084699600935, + -0.016773687675595284, + 0.02522125653922558, + 0.02365589328110218, + 0.023372508585453033, + -0.012111331336200237, + -0.012192298658192158, + 0.011450099758803844, + -0.0023480465169996023, + 0.00333145959302783, + -0.012792804278433323, + -0.0007527411798946559, + -0.005735171027481556, + 0.003518695943057537, + 0.007462469395250082, + -0.016922127455472946, + 0.01261062826961279, + 0.0056272149085998535, + -0.022859716787934303, + -0.0007173180929385126, + 0.0002369974972680211, + 0.021037956699728966, + 0.022481869906187057, + 0.01867641508579254, + 0.013346079736948013, + 0.020255275070667267, + -0.010039922781288624, + 0.011375879868865013, + -0.011726737953722477, + 0.014776499010622501, + 0.00471296114847064, + -0.0007173180929385126, + 0.006018555723130703, + 0.005994940176606178, + 9.314381168223917e-5, + 0.0007265955209732056, + 0.013474278151988983, + -0.00788754690438509, + -0.011025022715330124, + -0.012286759912967682, + 0.016314873471856117, + -0.009479899890720844, + 0.027474842965602875, + -0.0019432108383625746, + -0.005546247586607933, + -0.003157717641443014, + -0.007496205624192953, + 0.010235593654215336, + 0.014466125518083572, + -0.005411302205175161, + 0.011767221614718437, + 0.012131573632359505, + 0.005900478921830654, + 0.008616250939667225, + -0.0170435793697834, + -0.006706776097416878, + -0.008501547388732433, + 0.014466125518083572, + -0.0017610348295420408, + -0.00827888771891594, + 0.007752601522952318, + -0.023075629025697708, + -0.0095068896189332, + -0.028095589950680733, + 0.02178015559911728, + -0.007793085183948278, + 0.0019735735841095448, + -0.009236998856067657, + 0.010971044190227985, + 0.001675007282756269, + -0.006011808756738901, + -0.009081811644136906, + 0.014034300111234188, + -0.007712117861956358, + -0.0044194553047418594, + -0.040240656584501266, + 0.02271127700805664, + 0.006737139075994492, + -0.004109081346541643, + 0.0009538938757032156, + 0.020430702716112137, + -0.019675008952617645, + 0.009931966662406921, + 0.013406805694103241, + -0.0013966828119009733, + 0.0001448552357032895, + 0.0036232785787433386, + -0.02169918827712536, + 0.0036131576634943485, + -0.02118639647960663, + -0.003248805645853281, + -0.021469781175255775, + 0.0035895423498004675, + 0.0013013777788728476, + -0.009668823331594467, + 0.0017256117425858974, + -0.02237391285598278, + -0.01619342342019081, + 0.007206073496490717, + 0.03276469558477402, + 0.04671802744269371, + 0.02545066364109516, + 0.017448414117097855, + 0.005883610807359219, + 0.02871633879840374, + -0.024667982012033463, + 0.0036907510366290808, + -0.005519258789718151, + -0.026638181880116463, + -0.017785776406526566, + -0.00800899788737297, + -0.0030818108934909105, + 0.018568459898233414, + -0.0006705089472234249, + -0.013379815965890884, + -0.004011245910078287, + -0.0186089426279068, + -0.007637897972017527, + 0.0005882767145521939, + -0.007475963793694973, + -0.005623841192573309, + 0.0019955020397901535, + -0.01681417226791382, + 0.007185831665992737, + 0.017866743728518486, + 0.009999439120292664, + -0.007253304589539766, + -0.01465504802763462, + -0.013993817381560802, + 0.013629465363919735, + 0.03160416707396507, + -0.02708350121974945, + -0.007179084699600935, + -0.003886421676725149, + -0.004102333914488554, + 0.007786337751895189, + 0.010424516163766384, + -0.0035490586888045073, + 0.002776497509330511, + -0.020889516919851303, + -0.008987350389361382, + -0.016949117183685303, + -0.002302502514794469, + -0.009918471798300743, + -0.01842002011835575, + -0.007718865294009447, + 0.0047028400003910065, + -0.02253584749996662, + 0.006227720994502306, + -0.010822604410350323, + -0.0061467536725103855, + -0.010694406926631927, + -0.03481586277484894, + -0.00848130602389574, + -0.01131515484303236, + 0.011935902759432793, + 0.04339837655425072, + -0.0083193713799119, + -0.007988755591213703, + -0.024020245298743248, + -0.013103178702294827, + 0.012799551710486412, + -0.004125949461013079, + 0.00092690484598279, + -0.012617375701665878, + 0.030902450904250145, + -0.0004773686232510954, + 0.011564803309738636, + -0.002417205832898617, + -0.012050606310367584, + 0.01910823956131935, + -0.024533037096261978, + -0.020983979105949402, + -0.007914535701274872, + -0.03395221009850502, + -0.0055158850736916065, + -0.02717796340584755, + 0.00033335681655444205, + 0.006082654930651188, + 0.03611133620142937, + 0.00891987793147564, + 0.009142536669969559, + 0.0011284792562946677, + 0.0005688783712685108, + -0.015086873434484005, + 0.007948271930217743, + -0.0015333148185163736, + 0.008575767278671265, + -0.011544561944901943, + 0.0006637616897933185, + -0.015613159164786339, + -0.00593758886680007, + -0.007233062759041786, + 8.95066186785698e-5, + 0.018986789509654045, + -0.015073378570377827, + -0.003980883397161961, + -0.012408210895955563, + -0.007158842869102955, + 0.02092999964952469, + -0.008103459142148495, + 0.0022316561080515385, + 0.0004959236248396337, + 0.028446447104215622, + 0.01092381402850151, + -0.02993084490299225, + -0.005671071819961071, + 0.007179084699600935, + 0.009911724366247654, + 0.013683442957699299, + 0.0021169527899473906, + 0.013818387873470783, + 0.006113017443567514, + 0.003913410939276218, + -0.006780995987355709, + 0.017974700778722763, + -0.0044531915336847305, + -0.006332303397357464, + -0.0017407929990440607, + 0.009567614644765854, + -0.006349171511828899, + -0.007624403573572636, + 0.0165442805737257, + 0.001051729079335928, + 0.002245150739327073, + -0.001114984741434455, + 0.02520776353776455, + 0.028905261307954788, + -0.0037278609815984964, + -0.004524037707597017, + 0.0148709611967206, + -0.0004883329384028912, + -0.004436323419213295, + 0.018109645694494247, + -0.01715153455734253, + 2.194177341152681e-6, + 0.009884735569357872, + -0.01707056723535061, + 0.006983413826674223, + -0.012934497557580471, + -0.02091650478541851, + 0.0190137792378664, + 0.031064383685588837, + -0.001384875038638711, + -0.009837504476308823, + -0.001201855717226863, + -0.031091373413801193, + 0.013737421482801437, + 0.019391624256968498, + 0.012104583904147148, + 8.091440395219252e-5, + -0.00796851422637701, + -0.022184990346431732, + 0.009412427432835102, + 0.0017188644269481301, + 0.023183584213256836, + -0.0025184147525578737, + 0.026165874674916267, + -0.01179421041160822, + -0.0007291257497854531, + 0.003306157421320677, + 0.012556650675833225, + 0.012091089971363544, + 0.009695812128484249, + 0.005694687366485596, + 0.003930279053747654, + -0.004486927762627602, + 0.01577509380877018, + -0.00891987793147564, + -0.01465504802763462, + 0.004146191291511059, + 0.011011527851223946, + 0.0037852127570658922, + -0.016665732488036156, + -0.015464719384908676, + -0.00933820754289627, + -0.009749790653586388, + -0.015883048996329308, + -0.02941805310547352, + -0.015923533588647842, + 0.02469497174024582, + 0.012840035371482372, + 0.011605286970734596, + -0.007030644919723272, + 0.0016783808823674917, + -0.010127637535333633, + -0.009317966178059578, + 0.012799551710486412, + 0.017812766134738922, + -0.008886141702532768, + 0.008535283617675304, + 0.02184762805700302, + -0.01435816939920187, + 0.005610346794128418, + -0.007961766794323921, + 0.016571270301938057, + 0.0030531350057572126, + 0.024465564638376236, + -0.01731346920132637, + -0.005660951137542725, + -0.0067168972454965115, + -0.019782966002821922, + -0.0010340175358578563, + -0.03284566104412079 + ], + "dd980b9d-c087-47af-a05e-e4f9293d6b00": [ + -0.020029203966259956, + -0.006630803924053907, + -0.007487552706152201, + -0.0036771802697330713, + -0.06082196533679962, + -0.03311802074313164, + 0.014492734335362911, + 0.06180110573768616, + 0.0014606127515435219, + 0.039626430720090866, + -0.0027646347880363464, + 0.02623523212969303, + -0.03519149869680405, + -0.0055688670836389065, + -0.015651864930987358, + -0.007732337806373835, + -0.05244166776537895, + 0.03663141280412674, + -0.018834074959158897, + 0.00868988037109375, + 0.09077217429876328, + -0.022923430427908897, + -0.010396178811788559, + 0.039597634226083755, + -0.04080716148018837, + -0.022160276770591736, + 0.01860368810594082, + -0.006382418796420097, + -0.006799993570894003, + -0.014348742552101612, + -0.014031961560249329, + 0.018934868276119232, + 0.02658081240952015, + 0.02109473943710327, + 0.011447316035628319, + -0.018877271562814713, + -0.0173797607421875, + 0.033837977796792984, + -0.007660342380404472, + 0.009093056432902813, + -0.028092721477150917, + 0.0268687941133976, + 0.0075235506519675255, + 0.01965482532978058, + -0.008985063061118126, + 0.012656843289732933, + 0.025932850316166878, + -0.00019270098709966987, + -0.0037581755314022303, + -0.015421479009091854, + 0.014039161615073681, + 0.020086800679564476, + -0.013650384731590748, + 0.012455255724489689, + 0.013470395468175411, + -0.004604124929755926, + 0.007253566756844521, + 0.08115354925394058, + 0.03406836465001106, + -0.05235527083277702, + -0.009402638301253319, + -0.006029639858752489, + 0.013959965668618679, + -0.0205907691270113, + -0.006602005567401648, + -0.014737519435584545, + 0.005316882394254208, + 0.00984181184321642, + -0.03648741915822029, + 0.0382729135453701, + 0.016674203798174858, + 0.012210470624268055, + -0.022592250257730484, + 0.011483313515782356, + -0.01919405348598957, + -0.01235446147620678, + 0.03496111184358597, + -0.05644462630152702, + -0.004931705538183451, + 0.018502894788980484, + -0.013952766545116901, + -0.0037149779964238405, + 0.020058002322912216, + -0.00592884561046958, + 0.04717158153653145, + 0.0236577857285738, + -0.031361326575279236, + -0.05532149598002434, + -0.0651417076587677, + -0.029748622328042984, + 0.022030683234333992, + 0.009546629153192043, + 0.0077611361630260944, + -0.004485331941395998, + -0.022217871621251106, + 0.007545148953795433, + 0.03585385903716087, + 0.013974364846944809, + -0.02377297915518284, + -0.028467098250985146, + -0.014859911985695362, + 0.016832593828439713, + -0.04334140941500664, + -0.012541650794446468, + 0.01802772283554077, + 0.00034805419272743165, + 0.008963464759290218, + 0.021109139546751976, + -0.02456493303179741, + 0.010972144082188606, + 0.022736242040991783, + -0.00984181184321642, + -0.012426457367837429, + 0.016731800511479378, + 0.03919445723295212, + -0.04711398482322693, + -0.005788454320281744, + -0.03438514471054077, + -0.02524169161915779, + -0.05232647433876991, + 0.06669681519269943, + 0.02550087682902813, + 0.016602208837866783, + -0.029835017397999763, + 0.019266048446297646, + 0.020763559266924858, + 0.006961984094232321, + -0.0019762818701565266, + 0.010684161446988583, + 0.014355942606925964, + 0.011245728470385075, + -0.011188131757080555, + -0.037754543125629425, + 0.009093056432902813, + -0.015680663287639618, + 0.018733279779553413, + 0.021785898134112358, + 0.03542188182473183, + -0.03176450356841087, + 0.03928085416555405, + -0.028294309973716736, + -0.004996501374989748, + -0.012124075554311275, + 0.00010928721894742921, + 0.013736778870224953, + 0.015651864930987358, + -0.04711398482322693, + 0.031793300062417984, + -0.01029538456350565, + 0.015767058357596397, + -0.04743076488375664, + -0.02311061881482601, + 0.03297403082251549, + 0.005788454320281744, + 0.01543587725609541, + -0.004013760015368462, + 0.01391676813364029, + 0.019006865099072456, + -0.003301002783700824, + -0.006382418796420097, + -0.00020732510893139988, + -0.02561607025563717, + 0.03029578924179077, + -0.028063923120498657, + -0.010187391191720963, + 0.019741220399737358, + 0.041613511741161346, + 0.027271971106529236, + -0.051980894058942795, + 0.026091240346431732, + 0.06151312589645386, + -0.02856789343059063, + 0.02146911807358265, + -0.005180090665817261, + -0.003229007124900818, + -0.022736242040991783, + 0.0012806234881281853, + 0.013261607848107815, + 0.022016284987330437, + -0.049561839550733566, + -0.0049497042782604694, + -0.02649441733956337, + -0.04086475819349289, + 0.014096757397055626, + -0.01393116731196642, + 0.029575832188129425, + 0.0053204819560050964, + 0.007969924248754978, + -0.03303162753582001, + 0.016933389008045197, + 0.007077177055180073, + -0.006155631970614195, + 0.03484591841697693, + 0.06064917519688606, + -0.02169950306415558, + -0.0044241356663405895, + -0.0007771035889163613, + -0.0019258849788457155, + 0.01930924691259861, + 0.015536671504378319, + -0.03844570368528366, + -0.02564486861228943, + -0.06617844849824905, + 0.020173193886876106, + -0.04135432839393616, + 0.029979009181261063, + 0.020749161019921303, + -0.012757637538015842, + 0.012433657422661781, + -0.0018079919973388314, + 0.03810012340545654, + -0.013578388839960098, + 0.035537075251340866, + 0.013679183088243008, + -0.017394160851836205, + -0.008380299434065819, + -0.026364823803305626, + 0.0047949133440852165, + 0.007681941147893667, + 0.008027520030736923, + -0.012347262352705002, + 0.002944624051451683, + 0.023945769295096397, + -0.020115597173571587, + -0.049561839550733566, + -0.03072776459157467, + -0.03876248374581337, + 0.007811533287167549, + -0.019611628726124763, + -0.023081820458173752, + 0.01820051297545433, + 0.009762616828083992, + 0.019122056663036346, + -0.013967165723443031, + -0.01084975153207779, + 0.0025756461545825005, + -0.014053559862077236, + -0.002636842429637909, + 0.02249145694077015, + -0.01615583524107933, + 0.041815102100372314, + 0.025716863572597504, + -0.006839591544121504, + 0.015911050140857697, + 0.025054503232240677, + 0.02348499745130539, + -0.0034395945258438587, + 0.0464516244828701, + 0.01928044855594635, + -0.0207347609102726, + 0.012023281306028366, + 0.014550331048667431, + 0.0067495969124138355, + -0.021857893094420433, + 0.008394698612391949, + 0.02152671292424202, + 0.03663141280412674, + -0.007278765086084604, + -0.04273664578795433, + -0.00465812161564827, + -0.027675146237015724, + -0.0038013728335499763, + 0.013988764025270939, + -0.020230790600180626, + 0.05650222301483154, + -0.019381241872906685, + 0.002271464327350259, + -0.031390123069286346, + -0.011879290454089642, + 0.022275468334555626, + -0.043744586408138275, + 0.008891468867659569, + 0.018387701362371445, + 0.004211748484522104, + -0.013124816119670868, + -0.01755255088210106, + 0.01234006229788065, + 0.02865428850054741, + -0.01709177903831005, + 0.0059720431454479694, + -0.010374580509960651, + 0.00816431175917387, + 0.03216767683625221, + 0.039885617792606354, + -0.0014723120257258415, + -0.021886691451072693, + 0.012296865694224834, + 0.005572467111051083, + -0.04288063943386078, + -0.018733279779553413, + 0.0034161959774792194, + -0.005464473273605108, + 0.037351369857788086, + 0.004262145143002272, + 0.02567366510629654, + -0.003754575736820698, + 0.0012977224541828036, + -0.018978066742420197, + -0.016832593828439713, + 0.016112636774778366, + -0.022073881700634956, + 0.006555208470672369, + 0.023672185838222504, + -0.01653021201491356, + 0.006868389435112476, + 0.00015164093929342926, + 0.03248446062207222, + -0.029777420684695244, + -0.058287717401981354, + 0.03182210028171539, + 0.043917376548051834, + 0.0040533579885959625, + -0.017912529408931732, + -0.039770424365997314, + -0.00407495629042387, + -0.008128314279019833, + 0.006745996885001659, + 0.01799892447888851, + -0.007055578287690878, + -0.03187969699501991, + -0.008538689464330673, + -0.013283206149935722, + -0.0587196908891201, + 0.02155551128089428, + 0.02888467349112034, + -0.0246801245957613, + -0.006321222521364689, + 0.005500471219420433, + -0.022246669977903366, + -0.023153817281126976, + -0.005036098882555962, + -0.03046857938170433, + -0.03337720409035683, + -0.004805712960660458, + -0.0008832972380332649, + -0.026220833882689476, + -0.01959722861647606, + -0.016400620341300964, + -0.006839591544121504, + 0.014874311164021492, + -0.009539430029690266, + 0.03424115478992462, + -0.019323645159602165, + -0.013592788018286228, + 0.01907886005938053, + -0.0012761238031089306, + -0.002842030255123973, + 0.031620509922504425, + -0.005266485270112753, + -0.021785898134112358, + 0.0007213068893179297, + -0.009337842464447021, + 0.03919445723295212, + 0.002694438910111785, + 0.012304064817726612, + 0.02453613467514515, + -0.02851029671728611, + -0.009503432549536228, + 0.015147894620895386, + 0.010871350765228271, + -0.02351379580795765, + -0.012728839181363583, + -0.03038218431174755, + -0.007296763826161623, + 0.009251447394490242, + 0.03401076793670654, + 0.022592250257730484, + -0.0015524072805419564, + 0.012318463996052742, + 0.02053317241370678, + -0.05048338323831558, + 0.035825058817863464, + 0.021987486630678177, + -0.0016685003647580743, + -0.03677540272474289, + -0.02041798084974289, + 0.03677540272474289, + 0.008445095270872116, + -0.021872293204069138, + 0.03810012340545654, + -0.018906069919466972, + 0.014903109520673752, + 0.0046725207939744, + -0.006044039037078619, + 0.04921625927090645, + 0.004154151771217585, + -0.0197124220430851, + -0.014831113629043102, + -0.029719823971390724, + -0.019496435299515724, + -0.03922325745224953, + -0.023240210488438606, + -0.05702059343457222, + -0.012743238359689713, + -0.01962602697312832, + 0.03262845054268837, + -0.0023182614240795374, + 0.010072197765111923, + 0.025198495015501976, + -0.0022120678331702948, + -0.006645203102380037, + -0.004262145143002272, + -0.015810254961252213, + 0.013837573118507862, + 0.007030379958450794, + 0.00695118447765708, + 0.010482573881745338, + 0.016357421875, + 0.005219688173383474, + -0.0014120156411081553, + -0.001219427096657455, + -0.012750438414514065, + 0.012268067337572575, + -0.04135432839393616, + 0.052153684198856354, + -0.0004261245485395193, + 0.003513389965519309, + 0.004589725751429796, + -0.06468093395233154, + -0.0031228133011609316, + 0.0569629967212677, + 0.05290243774652481, + -0.00541767617687583, + 0.010172992013394833, + -0.02336980402469635, + 0.010496973060071468, + 0.026710404083132744, + 0.0138735705986619, + -0.015162293799221516, + 0.007775535341352224, + -0.02825111150741577, + 0.0007798034348525107, + -0.02632162719964981, + -0.029691025614738464, + 0.026652807369828224, + -0.01083535235375166, + 0.037812139838933945, + -0.015839053317904472, + -0.0011222329922020435, + -0.020720362663269043, + 0.021008344367146492, + 0.030036605894565582, + 0.03631462901830673, + 0.002703438512980938, + -0.01902126334607601, + -0.041383128613233566, + -0.030036605894565582, + -0.0002873078337870538, + 0.023153817281126976, + 0.015565469861030579, + 0.013542390428483486, + 0.04308222606778145, + -0.03804252669215202, + -0.005360079929232597, + -0.020374782383441925, + 0.0013868171954527497, + 0.012260867282748222, + 0.018934868276119232, + 0.014593527652323246, + 0.004348540212959051, + -0.029014267027378082, + -0.023585790768265724, + 0.03424115478992462, + -0.02214587666094303, + 0.0032398065086454153, + -0.05874849110841751, + -0.0207347609102726, + 0.014665523543953896, + -0.007055578287690878, + -0.004910106770694256, + -0.012347262352705002, + 0.013700781390070915, + -0.029489437118172646, + 0.01843089796602726, + -0.03732256963849068, + 0.011260127648711205, + -0.001790893031284213, + 0.009589826688170433, + 0.009280245751142502, + -0.002113073831424117, + -0.014111156575381756, + -0.0070123812183737755, + -0.04904346913099289, + 0.009733818471431732, + 0.02766074799001217, + -0.006817992776632309, + -0.027977528050541878, + 0.0019312845543026924, + 0.03182210028171539, + -0.00515489187091589, + 0.048208318650722504, + -0.009532230906188488, + 0.012613646686077118, + -0.015378281474113464, + -0.028179116547107697, + -0.04449333995580673, + 0.006382418796420097, + -0.029287850484251976, + -0.019813215360045433, + -0.05042578652501106, + 0.04123913496732712, + -0.0018286907579749823, + 0.028611090034246445, + 0.013016821816563606, + 0.014312745071947575, + 0.004287343937903643, + -0.00877627544105053, + 0.017840534448623657, + 0.02629282884299755, + -0.000533218146301806, + -0.009409837424755096, + -0.009078657254576683, + -0.023888172581791878, + 0.016458217054605484, + -0.007869130000472069, + 0.029921412467956543, + -0.005698459688574076, + 0.007545148953795433, + 0.0026134438812732697, + -0.007602745667099953, + 0.0071347737684845924, + 0.00826510600745678, + 0.004456533584743738, + 0.0014957105740904808, + 0.02172830142080784, + -0.011692101135849953, + -0.023859374225139618, + 0.002249865559861064, + 0.021512314677238464, + 0.017250169068574905, + -0.02152671292424202, + -0.007962724193930626, + 0.005122493952512741, + 0.0028834277763962746, + 0.022016284987330437, + -0.004301743116229773, + -0.005590465851128101, + -0.00822190847247839, + -0.003061617026105523, + 0.03585385903716087, + -0.006562408059835434, + 0.013247208669781685, + -0.018301306292414665, + 0.0006241127266548574, + 0.01653021201491356, + 0.04938904941082001, + -0.031246133148670197, + 0.021037142723798752, + 0.016026241704821587, + 0.031505316495895386, + -0.014571929350495338, + 0.012736039236187935, + -0.010079397819936275, + 0.009453034959733486, + 0.027948729693889618, + -0.03069896623492241, + 0.02518409490585327, + -0.021008344367146492, + -0.039972010999917984, + 0.0032776042353361845, + 0.021339524537324905, + -0.013182411901652813, + -0.005975643172860146, + 0.00972661841660738, + -0.05244166776537895, + -0.018013324588537216, + -0.030180595815181732, + 0.009424236603081226, + -0.031044544652104378, + 0.03265724703669548, + 0.033722784370183945, + 0.01283683255314827, + 0.039626430720090866, + -0.01746615581214428, + -0.010921747423708439, + 0.02848149836063385, + 0.01082095317542553, + 0.0026044442784041166, + -0.02416175603866577, + 0.006281624548137188, + 0.012707240879535675, + -0.0408935584127903, + 0.002586445538327098, + -0.03876248374581337, + -0.006889988202601671, + 0.006188030354678631, + -0.07044059038162231, + -0.043427806347608566, + 0.014579128473997116, + 0.022217871621251106, + -0.0226354468613863, + 0.019885212182998657, + 0.02669600583612919, + 0.001197828445583582, + -0.002096874639391899, + 0.015032702125608921, + 0.0021742701064795256, + 0.03660261258482933, + 0.0016100037610158324, + -0.023787379264831543, + -0.005687660071998835, + 0.01086415071040392, + 0.021224331110715866, + -0.029115060344338417, + 0.0015614066505804658, + 0.026278430595993996, + -0.007138373330235481, + 0.02442094124853611, + -0.01236886065453291, + -0.02120993286371231, + 0.022894632071256638, + 0.0049353050999343395, + 0.013729579746723175, + 0.004650922026485205, + 0.02856789343059063, + 0.005730857606977224, + 0.035364288836717606, + 0.02521289326250553, + 0.011512111872434616, + -0.015939848497509956, + 0.012440856546163559, + -0.04648042097687721, + 0.06122514232993126, + -0.013736778870224953, + 0.024953709915280342, + -0.005752456374466419, + -0.027113579213619232, + 1.3435916116577573e-5, + -0.01188648957759142, + -0.005936045199632645, + 0.021137937903404236, + 0.014874311164021492, + 0.024809718132019043, + -0.0321388803422451, + 0.015824655070900917, + 0.025803258642554283, + 0.0022120678331702948, + 0.029187055304646492, + -0.01131772343069315, + -0.014363141730427742, + -0.025544073432683945, + 0.00868988037109375, + -0.007818732410669327, + 0.03642982244491577, + -0.018402099609375, + 0.005590465851128101, + -0.041930295526981354, + 0.01127452589571476, + 0.026969589293003082, + 0.006835991516709328, + -0.030036605894565582, + -0.006249226629734039, + 0.04290943592786789, + 0.002827631076797843, + -0.004989301785826683, + -0.019467636942863464, + -0.01825810968875885, + 0.021512314677238464, + 0.017336564138531685, + -0.013635985553264618, + 0.024636927992105484, + 0.016487015411257744, + 0.006418416276574135, + 0.011893689632415771, + 0.013650384731590748, + 0.012224869802594185, + 0.00645441422238946, + -0.013549590483307838, + 0.022390661761164665, + 0.03994321450591087, + 0.015119096264243126, + 0.007660342380404472, + 0.022217871621251106, + 0.004928105510771275, + -0.0029050263110548258, + -0.013772777281701565, + 0.0055616674944758415, + -0.015363882295787334, + 0.009690620936453342, + -0.0024244552478194237, + -0.022275468334555626, + -0.011432916857302189, + -0.02214587666094303, + 0.005910846870392561, + 0.02129632793366909, + -0.022001884877681732, + -0.006602005567401648, + 0.03496111184358597, + -0.024089761078357697, + -0.014161554165184498, + 0.011771297082304955, + 0.033607590943574905, + -0.031390123069286346, + 0.01131772343069315, + 0.002959023229777813, + 0.023888172581791878, + -0.0012914228718727827, + -0.0011060339165851474, + 0.026768000796437263, + -0.02249145694077015, + -0.023758580908179283, + -0.02547207847237587, + -0.00921544898301363, + -0.008128314279019833, + 0.009697820991277695, + 0.02473772130906582, + -0.022131478413939476, + 0.00012970475654583424, + 0.02678239904344082, + -0.0015002103755250573, + 0.011202530935406685, + -0.0029788219835609198, + -0.017336564138531685, + 0.0009584427461959422, + -0.009136253967881203, + -0.006753196474164724, + -0.010230588726699352, + 0.006825192365795374, + 0.017077378928661346, + 0.016659803688526154, + -0.028812678530812263, + 0.06594806164503098, + -0.004856109619140625, + -0.051750507205724716, + -0.04339900612831116, + 0.02658081240952015, + 0.0014192152302712202, + 0.005741656757891178, + 0.0010637363884598017, + -0.007332761771976948, + 0.05745256692171097, + -0.0032380064949393272, + -0.01624223031103611, + 0.013491993770003319, + -0.019352443516254425, + -0.0027430360205471516, + -0.026624009013175964, + 0.0009075957932509482, + 0.034039564430713654, + -0.007393958047032356, + -0.012059279717504978, + -0.028999866917729378, + 0.028063923120498657, + 0.011483313515782356, + 0.02120993286371231, + -0.0014435137854889035, + -0.005633663386106491, + -0.0022012684494256973, + 0.011432916857302189, + 0.013384000398218632, + 0.0330028273165226, + -0.04095115140080452, + 0.04541488736867905, + 0.02635042555630207, + -0.03732256963849068, + -0.003549387911334634, + 0.00016030292317736894, + -0.0024892513174563646, + -0.010727358981966972, + 0.04290943592786789, + -0.02927345037460327, + -0.013211210258305073, + -0.0014642125461250544, + -0.029172657057642937, + 0.00042927433969452977, + 0.02257785014808178, + -0.02252025529742241, + 0.02944624051451683, + 0.03714977949857712, + -0.02038918249309063, + 0.017336564138531685, + -0.0068539902567863464, + 0.027919931337237358, + 0.025832056999206543, + 0.0036789802834391594, + -0.016962187364697456, + 0.033693987876176834, + 0.007602745667099953, + -0.025601670145988464, + 0.011368121020495892, + -0.02649441733956337, + -0.029489437118172646, + -0.005165691487491131, + -0.04481012374162674, + 0.011612906120717525, + -0.00925864651799202, + 0.02830870822072029, + 0.01755255088210106, + -0.0021274727769196033, + -0.01802772283554077, + 0.007181570865213871, + 0.011029740795493126, + -0.017134975641965866, + 0.022001884877681732, + 0.011648903600871563, + -0.014507133513689041, + 0.010122595354914665, + -0.014831113629043102, + -0.018042121082544327, + 0.009186651557683945, + 0.007768335752189159, + -0.049705829471349716, + 0.023211413994431496, + 0.05016660317778587, + -0.01732216589152813, + -0.006969183683395386, + 0.026796799153089523, + -0.00435213977470994, + -0.004154151771217585, + 0.012512852437794209, + -0.02550087682902813, + 0.019611628726124763, + 0.014816714450716972, + 0.011087337508797646, + -0.0031246133148670197, + -0.014147154986858368, + -0.002485651522874832, + -0.026019245386123657, + 0.026192035526037216, + -0.009503432549536228, + 0.01441353838890791, + 0.008682681247591972, + 0.039914414286613464, + 0.011404118500649929, + 0.0025324486196041107, + -0.017696542665362358, + -0.022966627031564713, + -0.020777959376573563, + 0.027617549523711205, + -0.0014642125461250544, + -0.011620105244219303, + -0.016674203798174858, + 0.0014111156342551112, + 0.00257024634629488, + 0.013866371475160122, + 0.037869736552238464, + -0.01845969632267952, + -0.028783880174160004, + -0.03599784895777702, + 0.00979861430823803, + -0.0036789802834391594, + -0.04017360135912895, + -0.019035663455724716, + -0.0011942286510020494, + -0.012088078074157238, + -0.009129054844379425, + -0.007876329123973846, + 0.009654623456299305, + 0.02924465201795101, + 2.006598879233934e-5, + 0.007257166318595409, + -0.015651864930987358, + -0.014305545017123222, + -0.014039161615073681, + -0.055695872753858566, + 0.023024223744869232, + -0.004488931968808174, + 0.015795856714248657, + 0.008085116744041443, + 0.017984526231884956, + -0.01609823852777481, + 0.003945364151149988, + -0.003038218477740884, + -0.02456493303179741, + -0.005572467111051083, + -0.016703002154827118, + -0.02780473791062832, + 0.03841690346598625, + -0.012376060709357262, + 0.007854730822145939, + 0.0023632587399333715, + -0.003390997415408492, + 0.012764837592840195, + -0.003797773038968444, + -0.04224707558751106, + -0.018906069919466972, + -0.013096017763018608, + 0.0030490178614854813, + -0.031591713428497314, + 0.007451554760336876, + -0.0018502894090488553, + 0.025976048782467842, + 0.011591307818889618, + -0.007991522550582886, + -0.050022609531879425, + 0.013995964080095291, + -0.012433657422661781, + 0.008142713457345963, + 0.0165014136582613, + -0.035796262323856354, + -0.003916565794497728, + 0.023024223744869232, + -0.006371619179844856, + -0.04478132352232933, + -0.007429955992847681, + -0.04915866255760193, + -0.018560491502285004, + -0.017970126122236252, + -0.014471135102212429, + -0.015119096264243126, + -0.010057798586785793, + -0.01621343195438385, + -0.011231329292058945, + 0.019410040229558945, + -0.02331220731139183, + -0.041930295526981354, + 0.0060872361063957214, + 0.026120038703083992, + -0.007789934519678354, + 0.041843898594379425, + 0.01341999787837267, + 0.0029752221889793873, + 0.001102434122003615, + -0.027559952810406685, + 0.03291643410921097, + 0.014103957451879978, + 0.009150653146207333, + -0.008106715977191925, + -0.010036200284957886, + -0.012916028499603271, + -0.0016253029461950064, + 0.005028899293392897, + 0.01658780872821808, + 0.011764097027480602, + -0.004953303840011358, + -0.002329060807824135, + 0.011159333400428295, + 0.012275266461074352, + 0.01030978374183178, + -0.004895707592368126, + 0.006411217153072357, + 0.03248446062207222, + 0.027646347880363464, + -0.009474634192883968, + 0.009438635781407356, + -0.029518235474824905, + -0.0009674421744421124, + 0.011022541671991348, + -0.03041098266839981, + -0.0185460913926363, + -0.01084975153207779, + 0.021339524537324905, + 0.008452295325696468, + -0.01723577082157135, + 0.02885587513446808, + -0.012628045864403248, + -0.031447719782590866, + 0.01697658561170101, + 0.016890190541744232, + -0.020374782383441925, + 0.0350475050508976, + 0.03879128396511078, + 0.014737519435584545, + 0.02345619909465313, + 0.015392680652439594, + 0.03219647705554962, + -0.001007939805276692, + 0.024060962721705437, + 0.006310422904789448, + -0.01933804526925087, + 0.0002147496707038954, + 0.003412596182897687, + -0.013909569010138512, + -0.0007172571495175362, + -0.04843870550394058, + 0.004622123669832945, + -0.03337720409035683, + 0.004452934022992849, + 0.013743978925049305, + 0.013621586374938488, + -0.0015821054112166166, + -0.015723859891295433, + -0.004812912549823523, + -0.013333603739738464, + -0.010288185440003872, + 0.001987081253901124, + -0.0154790747910738, + 0.008581886999309063, + 0.004262145143002272, + -0.0037725744768977165, + 0.027977528050541878, + 0.003302802564576268, + -0.004618524108082056, + 0.019726822152733803, + -0.00026930891908705235, + 0.007257166318595409, + 0.0005224187625572085, + -0.019770018756389618, + 0.017019782215356827, + -0.007188770454376936, + 0.020144395530223846, + -0.035623472183942795, + -0.008056318387389183, + -0.04218947887420654, + 0.010223389603197575, + -0.014816714450716972, + -0.0175237525254488, + -0.020317185670137405, + 0.006904387380927801, + -0.009503432549536228, + -0.013607187196612358, + 0.011490513570606709, + -0.03026699088513851, + 0.024939309805631638, + -0.0007663042051717639, + 0.017912529408931732, + -0.011209730058908463, + -0.0034611932933330536, + 0.013268806971609592, + 0.02325461059808731, + -0.004715718328952789, + -0.002932024886831641, + -0.002863628789782524, + -0.03882008045911789, + 0.02871188521385193, + -0.004845310468226671, + -0.010892949067056179, + -0.0435141995549202, + -0.008128314279019833, + 0.031793300062417984, + -0.003984962124377489, + -0.03259965032339096, + 0.007573947310447693, + 0.003482791827991605, + -0.012750438414514065, + -0.009676221758127213, + 0.008783475495874882, + 0.012620845809578896, + 0.021454717963933945, + 0.013967165723443031, + -0.03075656294822693, + 0.020432379096746445, + 0.018963666632771492, + -0.0029824217781424522, + 0.013074418529868126, + -0.011504912748932838, + 0.01612703688442707, + -0.049705829471349716, + -0.016458217054605484, + 0.004866909235715866, + 0.01837330311536789, + -0.0021544713526964188, + -0.009949805215001106, + 0.006422016303986311, + 0.005756055936217308, + -0.01951083354651928, + -0.005867649335414171, + 0.013052820228040218, + -0.011065739206969738, + 0.033780381083488464, + 0.01831570640206337, + -0.007206769194453955, + 0.013736778870224953, + -0.0017359962221235037, + -0.008286705240607262, + 0.010907348245382309, + -0.013938367366790771, + -0.016055040061473846, + -0.004254945553839207, + 0.03268604725599289, + -0.0059720431454479694, + 0.026710404083132744, + 0.029115060344338417, + -0.023902572691440582, + 0.022937828674912453, + 0.002206668257713318, + -0.02053317241370678, + 0.02555847354233265, + -0.001052037114277482, + -0.0006875589024275541, + 0.00020867503189947456, + 0.015248688869178295, + -0.002024878980591893, + 0.015090297907590866, + 0.009114655666053295, + 0.024780919775366783, + -0.020720362663269043, + 0.007998721674084663, + 0.005781254731118679, + 0.0030058203265070915, + 0.005795653909444809, + 0.004888508003205061, + -0.010590567253530025, + 0.009849011898040771, + -0.006026039831340313, + -0.01598304510116577, + 0.016487015411257744, + -0.002183269476518035, + -0.0005489672184921801, + 0.03187969699501991, + -0.028179116547107697, + 0.022923430427908897, + -0.009870610199868679, + -0.011123334988951683, + -1.4778804143134039e-5, + 0.0034593932796269655, + -0.0007793534314259887, + 0.06583286821842194, + 0.009503432549536228, + -0.006551608443260193, + 0.018186112865805626, + -0.018978066742420197, + -0.011180931702256203, + 0.01834450475871563, + 0.02357139252126217, + 0.021397121250629425, + 0.007617144845426083, + -0.027991928160190582, + 0.01805652119219303, + 0.037668149918317795, + 0.02879827842116356, + -0.004121753852814436, + -0.0007973523461259902, + 0.01714937575161457, + 0.0022984626702964306, + -0.03835930675268173, + -0.022131478413939476, + -0.00971221923828125, + -0.005597665440291166, + 0.010813754051923752, + -0.008329901844263077, + -0.01025218702852726, + -0.025601670145988464, + 0.006713598966598511, + -0.0010583368130028248, + -0.04506930708885193, + 0.002644042018800974, + 0.017307765781879425, + 0.0043161422945559025, + 0.016602208837866783, + 0.012376060709357262, + -0.015219890512526035, + 0.02004360221326351, + 0.0022192674223333597, + -0.019122056663036346, + -0.010540170595049858, + -0.0039057666435837746, + -0.01758134923875332, + -0.020691564306616783, + -0.017624547705054283, + -0.011483313515782356, + -0.0014939107932150364, + 0.008286705240607262, + 0.014125555753707886, + 0.017869332805275917, + -0.004478132352232933, + -0.007494752295315266, + -0.02015879563987255, + 0.014370341785252094, + -0.028121519833803177, + 0.0015884051099419594, + -0.003193009179085493, + 0.014564729295670986, + -0.02012999728322029, + -0.025428880006074905, + -0.047891538590192795, + -0.022030683234333992, + 0.012916028499603271, + 0.024910511448979378, + 0.001974482089281082, + -0.015767058357596397, + -0.015824655070900917, + 0.013470395468175411, + -0.00410375464707613, + -0.009309044107794762, + -0.0077539365738630295, + 0.006274424958974123, + -0.005324081983417273, + -0.001673000049777329, + -0.013225609436631203, + 0.023614589124917984, + -0.009733818471431732, + 0.014391940087080002, + 0.0207347609102726, + -0.016141435131430626, + 0.0052052889950573444, + -0.04074956476688385, + -0.020691564306616783, + 0.007984322495758533, + 0.01339119952172041, + 0.02339860238134861, + -0.011087337508797646, + -0.01700538396835327, + -0.015680663287639618, + -0.013009622693061829, + 0.002089675050228834, + -0.025745661929249763, + 0.0007388558587990701, + 0.0018682883819565177, + -0.0030598172452300787, + -0.006832391954958439, + -0.011958485469222069, + -0.025601670145988464, + -0.0019006864167749882, + -0.021958688274025917, + 0.006983582861721516, + -0.0217570997774601, + -0.015162293799221516, + 0.004701319150626659, + 0.007224768400192261, + -0.03280124068260193, + 0.025011304765939713, + 0.006184430327266455, + -0.0011150334030389786, + 0.016774997115135193, + -0.008423496969044209, + -0.004056957550346851, + 0.0016550010768696666, + -0.0068539902567863464, + -0.008610685355961323, + -0.00043579895282164216, + 0.004499731119722128, + 0.0023056622594594955, + -0.012916028499603271, + -0.006544408854097128, + 0.01641501858830452, + 0.01732216589152813, + -0.02228986844420433, + -0.0007937525515444577, + -0.004838110879063606, + -0.001037638052366674, + 0.011555309407413006, + -0.012613646686077118, + -0.026739202439785004, + 0.0034395945258438587, + -0.012253668159246445, + -0.004240546841174364, + 0.008423496969044209, + 0.012196071445941925, + 0.009172252379357815, + 0.007296763826161623, + 0.014125555753707886, + -0.016602208837866783, + 0.020907551050186157, + 0.007131173741072416, + -0.015623066574335098, + -0.0026710403617471457, + -0.017509354278445244, + 0.014622326008975506, + 0.004143352620303631, + 0.029518235474824905, + -0.0003413046069908887, + 0.019669225439429283, + -0.021685104817152023, + 0.009373839944601059, + 0.03668900951743126, + -0.021080341190099716, + 0.006544408854097128, + 0.014269547536969185, + -0.02427694946527481, + -0.006961984094232321, + 0.0006043139146640897, + -0.010316983796656132, + 0.0018826875602826476, + -0.026019245386123657, + 0.0045789266005158424, + 0.015795856714248657, + -0.006141233257949352, + -0.011468914337456226, + -0.0006853090599179268, + -0.00044232356594875455, + -0.006555208470672369, + 0.005259285680949688, + -0.000405650760512799, + -0.035940252244472504, + -0.003009420121088624, + 0.011051340028643608, + -0.01910765841603279, + 0.000503969902638346, + -0.017754139378666878, + 0.008466694504022598, + 0.02120993286371231, + -0.033348407596349716, + 0.037754543125629425, + -0.008135514333844185, + 0.03905046731233597, + -0.0003044067998416722, + -0.0185460913926363, + -0.02007240056991577, + 0.004704918712377548, + 0.007465953938663006, + 0.010424977168440819, + 0.002446053782477975, + -0.011159333400428295, + -0.013635985553264618, + -0.014687122777104378, + -0.003549387911334634, + 0.008848271332681179, + -0.03481711819767952, + -0.01638622023165226, + 0.02558727189898491, + 0.0006479612784460187, + 0.0010061399079859257, + -0.01953963190317154, + -0.011418517678976059, + 0.002037478145211935, + -0.02777593955397606, + 0.013808774761855602, + -0.010432176291942596, + 0.019698023796081543, + -0.011188131757080555, + 0.006234827451407909, + -0.0028888273518532515, + 0.011231329292058945, + 0.00814991258084774, + 0.0026620409917086363, + -0.009597026742994785, + 0.010000202804803848, + 0.018042121082544327, + -0.019467636942863464, + 0.00416135136038065, + 0.037581752985715866, + -0.007293164264410734, + 0.0025144496466964483, + 0.011216930113732815, + -0.010230588726699352, + -0.008423496969044209, + -0.014161554165184498, + -0.015407079830765724, + 0.0010583368130028248, + 0.005543668754398823, + -0.014787916094064713, + -0.010108196176588535, + 0.008869869634509087, + 0.0012644244125112891, + 0.03317561745643616, + -0.004496131557971239, + -0.0007172571495175362, + 0.005194489844143391, + 0.017941327765583992, + -0.03640102595090866, + 0.016602208837866783, + 0.002431654604151845, + -0.006789194419980049, + 0.009165052324533463, + 0.0030418182723224163, + -0.011476114392280579, + -0.016141435131430626, + -0.033434800803661346, + -0.0010799354640766978, + 0.006332021672278643, + -0.005194489844143391, + -0.0002877578081097454, + -0.012296865694224834, + 0.009719419293105602, + -0.005608465056866407, + 0.0017008983995765448, + -0.013563989661633968, + 0.011483313515782356, + -0.00489210756495595, + -0.0053060827776789665, + -0.01239765901118517, + 0.015291886404156685, + -0.010957744903862476, + -0.0055688670836389065, + -0.023413000628352165, + -0.008617885410785675, + -0.011087337508797646, + -0.017624547705054283, + 0.010525771416723728, + -0.011152133345603943, + -0.011432916857302189, + 0.03187969699501991, + 0.03026699088513851, + 0.007876329123973846, + -0.007149172946810722, + -0.034759521484375, + -0.00616283155977726, + 0.018747679889202118, + -0.015997443348169327, + -0.011598506942391396, + 0.017163773998618126, + -0.00879067461937666, + -0.007581146899610758, + -0.022837035357952118, + 0.03789853677153587, + -0.003126413095742464, + 0.01339119952172041, + 0.014831113629043102, + 0.011072938330471516, + -0.0016181033570319414, + -0.0032776042353361845, + 0.011864891275763512, + -0.0017269968520849943, + 0.01916525512933731, + 0.017912529408931732, + -0.005950444377958775, + -0.0037797740660607815, + 0.013499193824827671, + -0.0005971143255010247, + 0.004769715014845133, + -0.012001683004200459, + 0.012052079662680626, + -0.007537949830293655, + 0.041555918753147125, + -0.004442134406417608, + -0.010684161446988583, + 0.003135412698611617, + -0.009949805215001106, + -0.0075235506519675255, + 0.010360181331634521, + 0.022131478413939476, + -0.0030400182586163282, + 0.02132512629032135, + -0.005363679490983486, + 0.00015692813030909747, + -0.03467312827706337, + -0.014859911985695362, + 0.003025619313120842, + -0.012462455779314041, + 0.004010160453617573, + -0.0036789802834391594, + -0.0031660108361393213, + 0.019323645159602165, + 0.007174371276050806, + -0.003668180899694562, + 0.004611324518918991, + -0.011864891275763512, + 0.019971607252955437, + -0.048150721937417984, + -0.01601184345781803, + -0.013938367366790771, + 0.026120038703083992, + -0.009121854789555073, + 0.02655201405286789, + -0.005442874971777201, + -0.0043161422945559025, + -0.014888710342347622, + 0.0045645274221897125, + 0.015752658247947693, + 0.021037142723798752, + -0.0032308069057762623, + 0.02243386022746563, + -0.002739436225965619, + 0.020173193886876106, + -0.0022336666006594896, + 0.017696542665362358, + -0.01188648957759142, + 0.005219688173383474, + 0.008639483712613583, + 0.02453613467514515, + -0.010072197765111923, + -0.0040353587828576565, + 0.010756157338619232, + 0.003390997415408492, + -0.000175489520188421, + -0.0054032769985497, + 0.004193749278783798, + -0.017854932695627213, + 0.002244465984404087, + -0.011620105244219303, + 0.01919405348598957, + -0.006400417536497116, + 0.007285964675247669, + 0.007890728302299976, + 0.0006371619529090822, + -0.010907348245382309, + -0.021656306460499763, + 0.0060872361063957214, + 0.021958688274025917, + -0.03026699088513851, + -0.0010196390794590116, + 0.003938164561986923, + 0.000511619437020272, + -0.004974902607500553, + -0.0034143959637731314, + -0.0013049220433458686, + 0.003169610630720854, + 0.0015299086226150393, + 0.0011384319514036179, + -0.00873307790607214, + 0.03049737773835659, + -0.016429418697953224, + 0.04103754833340645, + 0.004830911289900541, + 0.002455053385347128, + -0.03697698935866356, + -0.037783343344926834, + -0.031937289983034134, + 0.01188648957759142, + -0.01187209039926529, + -0.011425717733800411, + -0.03401076793670654, + 0.0048093125224113464, + -0.02331220731139183, + 0.033665187656879425, + -0.0030508176423609257, + 0.0019186853896826506, + -0.0018862872384488583, + 0.023758580908179283, + -0.014463935978710651, + -0.003992161247879267, + 0.01627102866768837, + 0.0064256158657372, + 0.033751584589481354, + -0.02146911807358265, + 0.025068901479244232, + 0.03415475785732269, + -0.015882251784205437, + -0.011641704477369785, + 0.0040281591936945915, + -0.003797773038968444, + 0.0008495492511428893, + 0.010943345725536346, + -0.002815031912177801, + 0.000591714633628726, + 0.013218410313129425, + 0.0017395960167050362, + -0.020345984026789665, + -0.020317185670137405, + -0.00825070682913065, + 0.0010502372169867158, + -0.015277487225830555, + 0.014744718559086323, + 0.001125832786783576, + 0.00566606130450964, + 0.01808531954884529, + 0.010064998641610146, + -0.009208249859511852, + -0.00284742983058095, + 0.015162293799221516, + 0.027271971106529236, + 0.004992901813238859, + 0.030209394171833992, + -0.00873307790607214, + 0.006666801869869232, + -0.008329901844263077, + 0.0032902033999562263, + 0.01962602697312832, + 0.006814392749220133, + -0.0026404422242194414, + 0.020000405609607697, + -0.02228986844420433, + -0.004301743116229773, + 0.007393958047032356, + 0.003594385227188468, + 0.017782937735319138, + 0.01624223031103611, + 0.0025234492495656013, + -0.020749161019921303, + -0.006173631176352501, + 0.0028528296388685703, + 0.012793635949492455, + 0.003243406303226948, + 0.021901091560721397, + 0.023081820458173752, + -0.0038229716010391712, + -0.01184329204261303, + 0.0053456807509064674, + 0.017826134338974953, + 0.009589826688170433, + 0.0004724717582575977, + 0.012462455779314041, + 0.007955525070428848, + 0.013117616064846516, + -0.017163773998618126, + 0.0006587606621906161, + 0.012030481360852718, + -0.0003255555348005146, + -0.005302483215928078, + -0.023470597341656685, + 0.008797874674201012, + 0.015551070682704449, + 0.007804333698004484, + -0.023297807201743126, + 0.0027124378830194473, + -0.0060728369280695915, + -0.014219149947166443, + 0.018589289858937263, + -0.01703418232500553, + 0.016990983858704567, + 0.0037797740660607815, + 0.0005687660304829478, + -0.019986005499958992, + -0.024262551218271255, + 0.004604124929755926, + -0.009085857309401035, + -0.013038421049714088, + -0.010698560625314713, + -0.0012707241112366319, + -0.022505855187773705, + -0.009568228386342525, + 0.0744723528623581, + 0.008106715977191925, + 0.01023778785020113, + 0.008632284589111805, + -0.0026278430595993996, + -0.02044677920639515, + 0.0020104798022657633, + 0.001738696126267314, + 0.019294846802949905, + 0.012764837592840195, + -0.026911992579698563, + -0.01860368810594082, + 0.012584848329424858, + 0.002213867614045739, + -0.028697485104203224, + -0.0063428208231925964, + 0.014111156575381756, + 0.006720798555761576, + 0.010525771416723728, + 0.012541650794446468, + -0.010590567253530025, + 0.000431074236985296, + 0.0017206971533596516, + 0.0008553988882340491, + -0.014960706233978271, + 0.020849954336881638, + -0.005892848130315542, + -0.015320684760808945, + 0.029604630544781685, + 0.02442094124853611, + -0.003887767670676112, + -0.022952228784561157, + -0.01390236895531416, + -0.020633967593312263, + 0.006108834873884916, + 0.0022660645190626383, + 0.004647322464734316, + -0.004078556317836046, + -0.019698023796081543, + 0.005655262153595686, + 0.00668840017169714, + -0.005172891076654196, + 0.01697658561170101, + 0.016947787255048752, + -0.02552967518568039, + 0.0010151393944397569, + -0.021195532754063606, + 0.006224028300493956, + -0.015651864930987358, + -0.0032128079328686, + 0.007393958047032356, + -0.012858431786298752, + 0.022059481590986252, + 0.022981027141213417, + 0.017696542665362358, + -0.0028042325284332037, + 0.012800835072994232, + 0.023269008845090866, + 0.013168013654649258, + -0.00038990171742625535, + -0.030986947938799858, + -0.009337842464447021, + 0.001066436292603612, + -0.005939645227044821, + -0.020662765949964523, + -0.0005426675779744983, + 0.006785594392567873, + -0.016688602045178413, + -0.0012320263776928186, + -0.018560491502285004, + -0.028193514794111252, + -0.0176677443087101, + -0.006022440269589424, + -0.01235446147620678, + -0.014377540908753872, + 0.02456493303179741, + -0.004218948073685169, + 0.023614589124917984, + 0.02146911807358265, + 0.0012167273089289665, + 0.0077611361630260944, + 0.008977863937616348, + -0.021022744476795197, + -0.013650384731590748, + 0.0015011102659627795, + -0.00012329262972343713, + 0.02109473943710327, + -0.0353354886174202, + 0.007833131588995457, + -0.02132512629032135, + -0.027300769463181496, + -0.018330104649066925, + 0.010885749943554401, + 0.007077177055180073, + -0.0018376902444288135, + -0.006882788613438606, + 0.013168013654649258, + -6.187130202306435e-5, + 0.006641603074967861, + -0.007717938628047705, + 0.0064688134007155895, + 0.01595424674451351, + -0.01653021201491356, + -0.010979344137012959, + -0.012887230142951012, + -0.0021076740231364965, + 0.019669225439429283, + -0.008365900255739689, + 0.0035763862542808056, + 0.00413255300372839, + 0.0036789802834391594, + -0.021339524537324905, + 0.009057058952748775, + -0.0032830038107931614, + -0.002476651920005679, + 0.0014066159492358565, + 0.019554032012820244, + 0.006180830765515566, + -0.021598709747195244, + -0.01735096238553524, + 0.0020140795968472958, + 0.008934666402637959, + -0.0025216492358595133, + -0.025544073432683945, + 0.006047638598829508, + -0.0028690285980701447, + -0.018243709579110146, + -0.015853453427553177, + -0.015882251784205437, + -0.015162293799221516, + 0.006245626602321863, + 0.007919526658952236, + 0.035537075251340866, + 0.008941865526139736, + 0.02888467349112034, + 0.0013895169831812382, + -0.015392680652439594, + 0.011504912748932838, + -0.0016478014877066016, + -0.022592250257730484, + 0.015205491334199905, + -0.00823630765080452, + 0.014787916094064713, + 0.007023180369287729, + -0.0011285325745120645, + -0.005259285680949688, + 0.000643011590000242, + -0.01507589966058731, + 0.0036213835701346397, + 0.0014057160587981343, + 0.03078536130487919, + -0.02351379580795765, + 0.01714937575161457, + -0.010504172183573246, + -0.007059178315103054, + 0.010856951586902142, + -0.03058377280831337, + 0.02044677920639515, + -0.013571188785135746, + 0.012059279717504978, + 0.015651864930987358, + 0.0037725744768977165, + -0.012829633429646492, + 0.005619264207780361, + -0.005892848130315542, + 0.017451757565140724, + 0.013909569010138512, + 0.013168013654649258, + 0.005486072041094303, + 8.318878099089488e-5, + 0.011404118500649929, + 0.017970126122236252, + 0.026091240346431732, + -0.027444759383797646, + 0.003588985651731491, + -0.003938164561986923, + 0.009762616828083992, + -0.004751716274768114, + -0.016227830201387405, + 0.0064688134007155895, + -0.008135514333844185, + -0.005104495212435722, + 0.023053022101521492, + 0.0028834277763962746, + -0.019957207143306732, + -0.014211950823664665, + 0.009985803626477718, + -0.006314022932201624, + 0.011648903600871563, + -0.003653781721368432, + -0.006537209264934063, + 0.009309044107794762, + 0.007710739504545927, + -0.012138474732637405, + 0.00465812161564827, + 0.003367598867043853, + 0.03928085416555405, + 0.016357421875, + 0.023787379264831543, + -0.007869130000472069, + 6.547108932863921e-5, + 0.012260867282748222, + 0.018834074959158897, + -0.007847530767321587, + -0.02719997428357601, + -0.0023704583290964365, + -0.01288003008812666, + -0.0051980894058942795, + 0.0045789266005158424, + 0.0004115004267077893, + -0.019827615469694138, + -0.021872293204069138, + 0.013772777281701565, + 5.872149267815985e-5, + 0.0030508176423609257, + 0.0014660124434158206, + 0.012980824336409569, + 0.01916525512933731, + 0.006314022932201624, + 0.01820051297545433, + 0.009496232494711876, + 0.004125353414565325, + 0.012944826856255531, + 0.007296763826161623, + -0.007444355171173811, + -0.005478872451931238, + -0.0013616186333820224, + 0.012736039236187935, + 0.019813215360045433, + -0.0033729984425008297, + 0.0028438300359994173, + -0.015104697085916996, + -0.01023778785020113, + 0.015119096264243126, + 0.0006245626718737185, + 0.026451218873262405, + 0.016458217054605484, + -0.01907886005938053, + 0.014975105412304401, + -0.017134975641965866, + -0.022851435467600822, + -0.00021193733846303076, + -0.015651864930987358, + -0.014975105412304401, + -0.005158491898328066, + -0.01732216589152813, + -0.006116034463047981, + 0.002906826324760914, + -0.012016082182526588, + -2.7673346266965382e-5, + -0.019611628726124763, + -0.0017350963316857815, + 0.0154790747910738, + -0.007041179109364748, + 0.009913807734847069, + -0.007437155582010746, + -0.026192035526037216, + 0.010446575470268726, + -0.0005377178895287216, + -0.021713903173804283, + 0.014557530172169209, + 0.012469654902815819, + -0.03441394492983818, + 0.001029538456350565, + -0.003812172217294574, + 0.007768335752189159, + -0.02362898737192154, + 0.0034143959637731314, + -0.007073577493429184, + 0.018963666632771492, + -0.0007132074097171426, + -0.012887230142951012, + 0.007710739504545927, + 0.030123000964522362, + -0.001725196954794228, + -0.0010358381550759077, + -0.004287343937903643, + -0.031562913209199905, + 0.012426457367837429, + 0.009618625044822693, + -0.012700040824711323, + -0.003608784405514598, + 0.020792357623577118, + 0.0032308069057762623, + 0.007303963415324688, + -0.027646347880363464, + 0.024579331278800964, + 0.0154790747910738, + -0.015363882295787334, + 0.024752121418714523, + -0.011807294562458992, + -0.011792895384132862, + -0.010201790370047092, + 0.0020302787888795137, + -0.004013760015368462, + 0.0061052353121340275, + -0.008200310170650482, + -9.966904326574877e-5, + 0.01843089796602726, + -0.03522029519081116, + -0.002914025913923979, + -0.006835991516709328, + -0.016818195581436157, + -0.0055868662893772125, + -0.009294644929468632, + 0.019525233656167984, + 0.03239806368947029, + 0.006954784505069256, + -0.0014282147167250514, + 0.015047101303935051, + 0.010273786261677742, + 0.00020968746684957296, + -0.010424977168440819, + -0.009942606091499329, + -0.014255148358643055, + -0.01624223031103611, + -0.004521329887211323, + 0.01916525512933731, + -0.019122056663036346, + 0.01190088875591755, + -0.015752658247947693, + -0.008697080425918102, + 0.019813215360045433, + -0.018891671672463417, + 0.01658780872821808, + -0.006317622493952513, + 0.025428880006074905, + 0.008373099379241467, + 0.007473153527826071, + -0.019496435299515724, + 0.007847530767321587, + 0.012448056600987911, + -0.025659266859292984, + -0.005529269576072693, + 0.0019564831163734198, + 0.019669225439429283, + -0.020288387313485146, + -0.008135514333844185, + 0.002959023229777813, + -0.01743735745549202, + -0.006825192365795374, + -0.00814991258084774, + 0.0023902570828795433, + 0.008387498557567596, + -0.0013193212216719985, + -0.013628785498440266, + 0.005910846870392561, + -0.012736039236187935, + 0.022016284987330437, + 0.011015341617166996, + -0.013160813599824905, + 0.006889988202601671, + 0.019208451732993126, + 0.01933804526925087, + -0.014859911985695362, + -0.004719317890703678, + -0.0035241893492639065, + 0.02882707677781582, + -0.011821693740785122, + -0.0012842232827097178, + -0.008373099379241467, + 0.015349483117461205, + -0.011008142493665218, + -0.007055578287690878, + 0.00031903095077723265, + -0.008135514333844185, + -0.006400417536497116, + 0.031994886696338654, + -0.03712098300457001, + 0.0005458173691295087, + -0.003448593895882368, + -0.024752121418714523, + -0.0070195808075368404, + -0.0055544679053127766, + -0.010201790370047092, + 0.0195684302598238, + 0.003346000099554658, + -0.009496232494711876, + -0.02947503887116909, + -0.006893588230013847, + 0.028726283460855484, + -0.008646683767437935, + 0.005241286940872669, + -0.006422016303986311, + -0.017854932695627213, + 0.02120993286371231, + 0.019885212182998657, + 0.008898667991161346, + -0.005723658017814159, + -0.006137633230537176, + -0.004748116247355938, + -0.00042117483098991215, + 0.014787916094064713, + 0.01598304510116577, + -0.031073343008756638, + 0.030209394171833992, + -0.015695061534643173, + 0.005111694801598787, + -0.008596286177635193, + 0.009136253967881203, + -0.015551070682704449, + -0.0028600292280316353, + 0.019885212182998657, + -0.010453775525093079, + 0.008711479604244232, + -0.009193850681185722, + -0.004816512111574411, + -0.008574687875807285, + 0.018891671672463417, + -0.0013904168736189604, + -0.00046212237793952227, + 0.015248688869178295, + -0.013729579746723175, + -0.005874848924577236, + 0.009697820991277695, + -0.013959965668618679, + -0.006832391954958439, + 0.009870610199868679, + 0.004967703018337488, + -0.0014624126488342881, + 0.002170670311897993, + 0.0020266789942979813, + -0.005882048513740301, + 0.012196071445941925, + 0.0034611932933330536, + -0.02004360221326351, + 0.018891671672463417, + 0.009222649037837982, + -0.011533711105585098, + 0.008365900255739689, + -0.0009413437801413238, + 0.018243709579110146, + -0.01621343195438385, + 0.008243507705628872, + -0.03308922424912453, + -0.00984181184321642, + 0.013794375583529472, + -0.014816714450716972, + -0.010842552408576012, + 0.0077395373955369, + -0.013052820228040218, + -0.009337842464447021, + -0.01546467561274767, + 0.016141435131430626, + -0.00924424733966589, + 0.007573947310447693, + 0.011670502834022045, + 0.019856413826346397, + 0.0021580711472779512, + 0.0034467941150069237, + -0.014363141730427742, + -0.0027718343771994114, + 0.0005854149931110442, + 0.003484591841697693, + -0.02208827994763851, + -0.010511372238397598, + -0.012260867282748222, + -0.02669600583612919, + 0.007350760977715254, + -0.04123913496732712, + 0.023499395698308945, + 0.011281725950539112, + 0.0033208015374839306, + -0.016515813767910004, + 0.001958282897248864, + 0.008358700200915337, + 0.022995425388216972, + -0.0025954449083656073, + -0.016487015411257744, + 0.011260127648711205, + -0.006983582861721516, + 0.03081415966153145, + 0.006727998144924641, + 0.0014939107932150364, + 0.002469452563673258, + 0.019928408786654472, + -0.01025218702852726, + 0.006490412168204784, + 0.005172891076654196, + 0.006332021672278643, + -0.025774460285902023, + 0.011461715213954449, + -0.008013120852410793, + 0.010259387083351612, + 0.020749161019921303, + -0.009143454022705555, + -0.0009836412500590086, + 0.018070919439196587, + 0.0016424019122496247, + 0.013168013654649258, + 0.023413000628352165, + 0.022333065047860146, + 0.019798817113041878, + -0.021886691451072693, + 0.010453775525093079, + 0.008913067169487476, + 0.01076335646212101, + 0.03421235457062721, + -0.0176677443087101, + 0.02149791643023491, + 0.04239106550812721, + 0.0011654304107651114, + -0.006076436955481768, + -0.005612064618617296, + 0.01732216589152813, + -0.0015173093415796757, + 0.009237048216164112, + 0.012505652382969856, + 0.012404859066009521, + -0.004636522848159075, + 0.003783373860642314, + -0.018848473206162453, + -0.006925986148416996, + 0.007696340326219797, + -0.0028096321038901806, + 0.0341835580766201, + -0.002741236239671707, + 0.006296023726463318, + 0.009186651557683945, + 0.00931624323129654, + 0.0064256158657372, + -0.028985468670725822, + -0.013679183088243008, + -0.0063536204397678375, + 0.00296442280523479, + 0.006566007621586323, + 0.005547268781810999, + 0.000350754038663581, + -0.018906069919466972, + -0.02167070470750332, + -0.0006367119494825602, + 0.03283003717660904, + 0.011922487989068031, + -0.015551070682704449, + 0.014175953343510628, + 0.022160276770591736, + 0.016026241704821587, + 0.009993002749979496, + 0.01837330311536789, + 0.009294644929468632, + 0.03288763388991356, + -0.003023819299414754, + 0.012196071445941925, + -0.0030652168206870556, + 0.007098775822669268, + -0.010432176291942596, + 0.013736778870224953, + 0.028697485104203224, + -0.008905868045985699, + 0.014154354110360146, + -0.026983987540006638, + 0.006519210524857044, + 0.020907551050186157, + 0.013988764025270939, + 0.014053559862077236, + -0.014060759916901588, + 0.0053060827776789665, + -0.0004931705188937485, + 0.00023916071222629398, + 0.016990983858704567, + 0.007991522550582886, + 0.004661721643060446, + -0.0030670168343931437, + 0.0010763356694951653, + -0.005777654703706503, + 0.004704918712377548, + 0.010043400339782238, + -0.012937626801431179, + 0.008502691984176636, + 0.004884907975792885, + 0.013664783909916878, + -0.0067387972958385944, + 0.006526410114020109, + 0.020317185670137405, + -0.009978603571653366, + -0.0068791890516877174, + -0.031130939722061157, + -0.0011069338070228696, + 0.017883731052279472, + -0.01444233674556017, + 0.006436415482312441, + -0.008243507705628872, + 0.004690519534051418, + 0.01632862351834774, + 0.012253668159246445, + 0.010345782153308392, + -0.009820213541388512, + -0.0006227627745829523, + 0.026278430595993996, + -0.01808531954884529, + 0.02056197077035904, + 0.009481833316385746, + 0.0016873992281034589, + 0.00035390385892242193, + 0.006627203896641731, + 0.011159333400428295, + 0.005270085297524929, + 0.0004290493670850992, + -0.018589289858937263, + -0.03406836465001106, + -0.020921949297189713, + -0.005874848924577236, + 0.0030076203402131796, + -0.012232068926095963, + 0.015320684760808945, + -0.0011222329922020435, + -0.003498991020023823, + -0.00922984816133976, + 0.006260025780647993, + 0.012440856546163559, + 0.026883194223046303, + -0.01808531954884529, + -0.006548008881509304, + -0.027387164533138275, + 0.017566950991749763, + -0.004006560426205397, + 0.012671242468059063, + -0.008020320907235146, + 0.026480017229914665, + 0.01808531954884529, + 0.005201688967645168, + 0.0173797607421875, + -0.0013112216256558895, + 0.011504912748932838, + -0.00103673804551363, + -0.01441353838890791, + 0.009697820991277695, + -0.0024820517282932997, + 0.031044544652104378, + -0.018387701362371445, + 0.017984526231884956, + 0.005442874971777201, + -0.00173779611941427, + -0.033895574510097504, + 0.004899307154119015, + -0.008229108527302742, + -0.014694321900606155, + -0.00822190847247839, + -0.009064258076250553, + -0.013592788018286228, + -0.009705020114779472, + -0.0010466374224051833, + 0.002080675680190325, + 0.021785898134112358, + -0.0017071979818865657, + -0.016861392185091972, + 0.0007321062730625272, + -0.014089558273553848, + -0.008315503597259521, + 0.003457593498751521, + -0.006270825397223234, + 0.010093796998262405, + -0.014543130993843079, + 0.01609823852777481, + 0.003302802564576268, + -0.0042909434996545315, + 0.0012158273020759225, + -0.03294523060321808, + 0.03605544567108154, + -0.0016334024257957935, + -0.01907886005938053, + -0.01933804526925087, + -0.010029001161456108, + -0.006846791133284569, + -0.00029765721410512924, + -0.012289665639400482, + -0.0017431958112865686, + 0.01190088875591755, + -0.025515275076031685, + 0.011353721842169762, + -0.007451554760336876, + 0.008049119263887405, + -0.014679922722280025, + 0.0055940658785402775, + 0.005367279518395662, + 0.01834450475871563, + 0.009417037479579449, + -0.028870275244116783, + 0.021929889917373657, + -0.009928206913173199, + 0.003974162507802248, + 0.007059178315103054, + 0.012260867282748222, + 0.017725341022014618, + -1.1277451449132059e-5, + 0.010676962323486805, + 0.004701319150626659, + -0.008596286177635193, + -0.009985803626477718, + 0.001651401282288134, + -0.024017764255404472, + 0.0009192950674332678, + -0.018099717795848846, + 0.0012401258572936058, + 0.009640224277973175, + 0.013398399576544762, + -0.009957005269825459, + -0.01131772343069315, + -0.0034539937041699886, + -0.018718881532549858, + -0.018272507935762405, + 0.0015362082049250603, + -0.0001776268909452483, + 0.0017197972629219294, + -0.017811736091971397, + -0.019150855019688606, + 0.0015758058289065957, + 0.011641704477369785, + 0.013578388839960098, + -0.004913706332445145, + 0.021944288164377213, + -0.012246468104422092, + 0.009899408556520939, + 0.011144934222102165, + 0.007210369221866131, + -0.047833941876888275, + -0.014679922722280025, + 0.0035907854326069355, + -0.00830830354243517, + -0.006648802664130926, + -0.008337101899087429, + 0.0070123812183737755, + 0.012181672267615795, + 0.005813652649521828, + -0.003594385227188468, + -0.0032686046324670315, + -0.010828153230249882, + 0.011159333400428295, + -0.009633024223148823, + 0.013657583855092525, + 0.03602664917707443, + 0.004348540212959051, + -0.010036200284957886, + 0.013700781390070915, + -0.011044139973819256, + 0.0013823173940181732, + 0.007177971303462982, + 0.013571188785135746, + 0.005954044405370951, + 0.017754139378666878, + -0.015061500482261181, + -0.004726517479866743, + 0.008545889519155025, + 0.003653781721368432, + 0.02146911807358265, + 0.002096874639391899, + -0.017696542665362358, + 0.013204011134803295, + 0.010424977168440819, + 0.02126752957701683, + -0.0006452614325098693, + -0.0005908146849833429, + 0.030209394171833992, + -0.025054503232240677, + 0.017854932695627213, + -0.011044139973819256, + -0.000672259833663702, + -0.023441798985004425, + 0.0008189510554075241, + -0.008560288697481155, + -0.0017521952977403998, + -0.007116774562746286, + 0.007667541969567537, + -0.0005642662872560322, + -0.011476114392280579, + -0.011152133345603943, + -0.0004598725354298949, + -0.020144395530223846, + -0.015824655070900917, + 0.00979861430823803, + -0.007231967989355326, + -0.010129794478416443, + 0.005720058456063271, + -0.03317561745643616, + 0.013247208669781685, + -0.02211707830429077, + -0.04279424250125885, + 0.012174472212791443, + 0.006364419590681791, + -0.0005759655614383519, + -0.0013346202904358506, + -0.018848473206162453, + -0.014946307055652142, + 0.006234827451407909, + -0.021512314677238464, + 0.0075307502411305904, + 0.012282466515898705, + 0.01655901037156582, + -0.002498250687494874, + 0.02354259416460991, + 0.017624547705054283, + 0.007696340326219797, + -0.02550087682902813, + 0.01391676813364029, + 0.005504071246832609, + -0.004251345992088318, + -0.0033873976208269596, + -0.012664043344557285, + -0.016746198758482933, + -8.054518548306078e-5, + 0.009460235014557838, + -0.005640862975269556, + -0.007145572919398546, + -0.00933064240962267, + -0.029633428901433945, + -0.0024730521254241467, + -0.004762515425682068, + 0.0031984089873731136, + 0.02465132623910904, + 0.02152671292424202, + 0.004229747224599123, + 0.014679922722280025, + -0.004110954236239195, + 0.004715718328952789, + 0.011684902012348175, + -0.010360181331634521, + -0.01825810968875885, + -0.03133252635598183, + -0.00032173076760955155, + -0.0003332050982862711, + -0.012721640057861805, + 0.014471135102212429, + 0.014348742552101612, + -0.02558727189898491, + -0.035508278757333755, + 0.01083535235375166, + -0.0033064023591578007, + 0.012253668159246445, + 0.0001041125287883915, + -0.026940790936350822, + -0.009697820991277695, + -0.015723859891295433, + -0.01700538396835327, + -0.003126413095742464, + 0.006781994830816984, + -0.014571929350495338, + 0.007955525070428848, + -0.0051908898167312145, + 0.03522029519081116, + -0.008495491929352283, + 0.0026602409780025482, + -0.014903109520673752, + 0.008949065580964088, + 0.022952228784561157, + 0.009280245751142502, + 0.0006952084368094802, + 0.021901091560721397, + -0.014060759916901588, + 0.009942606091499329, + -0.010828153230249882, + 0.006803593598306179, + 0.004474532790482044, + 0.002476651920005679, + -0.02033158577978611, + 0.008920267224311829, + -0.00047382168122567236, + -0.0010970344301313162, + -0.009705020114779472, + 0.019323645159602165, + -0.012217669747769833, + 0.006915186997503042, + 0.02623523212969303, + -0.017826134338974953, + 0.002053677337244153, + 0.01507589966058731, + -0.006666801869869232, + -0.014571929350495338, + -0.013182411901652813, + -0.002368658548220992, + -0.02106594108045101, + -0.015795856714248657, + 0.007595546077936888, + 0.020749161019921303, + -0.003615983994677663, + -0.004272944759577513, + 0.012124075554311275, + 0.0024568531662225723, + 0.0035385885275900364, + -0.0008922966662794352, + 0.0015326084103435278, + 0.007473153527826071, + 0.0054536741226911545, + 0.013355202041566372, + -0.004010160453617573, + -0.009834612719714642, + 0.0017449957085773349, + 0.021512314677238464, + 0.017336564138531685, + -0.02351379580795765, + 0.029374245554208755, + 0.0048021129332482815, + -0.004341340623795986, + -0.004715718328952789, + 0.0017161974683403969, + -0.015810254961252213, + -7.857655145926401e-5, + 0.01289442926645279, + 0.013132015243172646, + -0.005507670808583498, + -0.002098674653097987, + 0.0034809920471161604, + -0.010655363090336323, + -0.007048378698527813, + 0.02167070470750332, + -0.017509354278445244, + 0.009690620936453342, + -0.028841476887464523, + -0.005046898499131203, + -0.005925246048718691, + 0.005774055141955614, + -0.01959722861647606, + -0.020461177453398705, + 0.01919405348598957, + -0.011418517678976059, + 0.009222649037837982, + 0.01137532014399767, + -0.01231126394122839, + -0.004640122875571251, + 0.013823173940181732, + -0.003614183980971575, + -0.0013940166682004929, + -0.021785898134112358, + 0.006753196474164724, + 0.0332908108830452, + 0.01907886005938053, + 0.009762616828083992, + -0.01388796977698803, + -0.011929687112569809, + 0.006051238626241684, + 0.01033858209848404, + 0.008855470456182957, + -0.004798513371497393, + 0.008430696092545986, + -0.01843089796602726, + -0.00668840017169714, + 0.011058539152145386, + -0.0004648222238756716, + -0.005867649335414171, + 0.00829390436410904, + 0.021166734397411346, + -0.007163572125136852, + -0.006997982040047646, + 0.007818732410669327, + -0.013491993770003319, + 0.003614183980971575, + -0.012642445042729378, + -0.004589725751429796, + -0.0024820517282932997, + 0.009625825099647045, + -0.01595424674451351, + 0.007059178315103054, + 0.01288003008812666, + -0.014888710342347622, + 0.013758378103375435, + 0.0027520356234163046, + 0.01188648957759142, + -0.02311061881482601, + 0.015795856714248657, + -0.02027398906648159, + -0.0006236627232283354, + -0.006907987408339977, + -0.006404017563909292, + 0.025875253602862358, + -0.015781456604599953, + 0.008171511813998222, + -0.015032702125608921, + -0.014103957451879978, + -0.017926929518580437, + -0.007037579547613859, + -0.004305342677980661, + 0.01032418292015791, + 0.02725757099688053, + -0.01843089796602726, + 0.019381241872906685, + 0.02240506187081337, + 0.013110416941344738, + -0.03245566040277481, + -0.0003552537818904966, + -0.0028222312685102224, + 0.014960706233978271, + -0.018790876492857933, + 0.007401157636195421, + 0.0016082038637250662, + -0.011080138385295868, + 0.0010439376346766949, + -0.018675684928894043, + -0.021843494847416878, + 0.013772777281701565, + 0.009669022634625435, + -0.009294644929468632, + -0.008243507705628872, + -0.02115233615040779, + -0.016227830201387405, + 0.010036200284957886, + -0.025486476719379425, + -0.005457274150103331, + 0.017394160851836205, + -0.007152772508561611, + -0.013693582266569138, + -0.015594268217682838, + 0.000577315513510257, + 0.014816714450716972, + -0.0034359947312623262, + 0.005986442323774099, + 0.007926726713776588, + -0.010568968951702118, + 0.029979009181261063, + 0.012815234251320362, + -0.019467636942863464, + -0.009661822579801083, + 0.0008868970326147974, + 0.003045418066903949, + -0.014665523543953896, + 0.014989504590630531, + -0.023844975978136063, + 0.012750438414514065, + 0.019971607252955437, + 0.006234827451407909, + -0.007059178315103054, + -0.009028260596096516, + -0.013463195413351059, + 0.011584107764065266, + 0.008157112635672092, + -0.007181570865213871, + 0.001563206547871232, + 0.021008344367146492, + -0.0144567359238863, + -0.007501951884478331, + -0.01905006170272827, + -0.0030508176423609257, + -0.01032418292015791, + 0.006040439009666443, + 0.0076459432020783424, + -0.006202429533004761, + -0.010568968951702118, + 0.005968443583697081, + 0.021454717963933945, + 0.01444233674556017, + 0.0063608200289309025, + -0.008337101899087429, + -0.0030742164235562086, + -0.011058539152145386, + 1.9812878235825337e-5, + -0.007203169632703066, + -0.014507133513689041, + -0.02149791643023491, + 0.009690620936453342, + -0.012620845809578896, + 0.01288003008812666, + 0.013477594591677189, + -0.008725878782570362, + 0.017566950991749763, + 0.002469452563673258, + -0.01825810968875885, + 0.011029740795493126, + 0.007170771714299917, + -0.0029032265301793814, + 0.016487015411257744, + -0.015781456604599953, + 0.0124120581895113, + 0.013312004506587982, + 0.014759117737412453, + 0.0023128618486225605, + -0.005241286940872669, + -0.009042659774422646, + 0.0007627044105902314, + 0.0021022744476795197, + 0.010712959803640842, + -0.005478872451931238, + -0.017422959208488464, + -0.007087976671755314, + 0.005799253471195698, + 0.000818501110188663, + 0.0016685003647580743, + -0.0027862335555255413, + 0.007339961361140013, + 0.017898131161928177, + 0.009294644929468632, + -0.0070051816292107105, + -0.0046941195614635944, + 0.007703539915382862, + 0.0002535598468966782, + -0.012239268980920315, + -0.006983582861721516, + -0.003995761275291443, + -0.008711479604244232, + 0.008337101899087429, + -0.004240546841174364, + 0.008553088642656803, + -0.012584848329424858, + 0.01234006229788065, + 0.0029770222026854753, + 0.005478872451931238, + 0.014471135102212429, + -0.0033873976208269596, + 0.003754575736820698, + -0.002338060410693288, + -0.0014147154288366437, + 0.011411318555474281, + 0.011936887167394161, + -0.011749697849154472, + 0.006745996885001659, + -0.004341340623795986, + -0.010439376346766949, + 0.02152671292424202, + -0.002271464327350259, + 0.004391737747937441, + -0.011504912748932838, + -0.011512111872434616, + -0.022016284987330437, + -0.005540069192647934, + 0.011929687112569809, + -0.031361326575279236, + -0.0007168071460910141, + 0.008956264704465866, + 0.021569911390542984, + -0.02243386022746563, + -0.013585587963461876, + 0.035825058817863464, + 0.013477594591677189, + -0.0068539902567863464, + 0.001475911820307374, + 0.00042567457421682775, + -0.03640102595090866, + 0.004607724491506815, + -0.005385278258472681, + -0.015277487225830555, + -0.004701319150626659, + -0.01077775564044714, + 0.014708721078932285, + -0.01609823852777481, + 0.0059648435562849045, + 0.011720899492502213, + -0.0048021129332482815, + -0.0003541288315318525, + -0.0023488595616072416, + 0.015738260000944138, + -0.013664783909916878, + -0.013470395468175411, + 0.0013562189415097237, + 0.0036195837892591953, + -0.003333400934934616, + 0.012829633429646492, + 0.026048043742775917, + -0.004204548895359039, + -0.02158430963754654, + 0.0072751655243337154, + 0.01825810968875885, + 0.016602208837866783, + 0.008049119263887405, + -0.025601670145988464, + -0.01239765901118517, + -0.008394698612391949, + -0.02453613467514515, + 0.017797335982322693, + 0.03268604725599289, + 0.0018898870330303907, + 0.025457678362727165, + 0.005342080723494291, + 0.01700538396835327, + -0.010273786261677742, + -0.006008041091263294, + -0.016731800511479378, + 0.002131072571501136, + -0.008617885410785675, + 0.01609823852777481, + -0.029691025614738464, + -0.007861929945647717, + 0.0025216492358595133, + -0.008797874674201012, + -0.014499933458864689, + -0.02632162719964981, + -0.0007564048282802105, + 0.0017629946814849973, + 0.0031012147665023804, + 0.014118356630206108, + 0.008877069689333439, + -0.0005390677833929658, + 0.006152032408863306, + -0.001958282897248864, + -0.013599987141788006, + 0.0016451016999781132, + -0.012088078074157238, + -0.0072499667294323444, + 0.011929687112569809, + -0.0018466896144673228, + -0.012181672267615795, + -0.02842390164732933, + 0.013369601219892502, + 0.015219890512526035, + 0.017480555921792984, + -0.007847530767321587, + -0.0035025908146053553, + -0.001987081253901124, + -0.012808035127818584, + 0.008711479604244232, + 0.00030598172452300787, + -0.0075235506519675255, + 0.0017350963316857815, + 0.005500471219420433, + -0.006666801869869232, + -0.021051542833447456, + 0.020864352583885193, + 0.013815974816679955, + -0.013679183088243008, + -0.0006641602958552539, + -0.00029113260097801685, + 0.0207347609102726, + 0.031246133148670197, + 0.012138474732637405, + -0.006907987408339977, + 0.008387498557567596, + -0.014089558273553848, + 0.023240210488438606, + -0.008725878782570362, + 0.017019782215356827, + 0.02260664850473404, + 0.0005093695363029838, + 0.01030978374183178, + -0.010950545780360699, + -0.0020842754747718573, + 0.009805814363062382, + -0.005208888556808233, + -0.013859172351658344, + -0.009431436657905579, + -0.015234289690852165, + 0.010115395300090313, + -0.009561028331518173, + 0.02416175603866577, + -0.0005813652533106506, + 0.015061500482261181, + -0.005223287735134363, + -0.0016828994266688824, + 0.010216189548373222, + 0.008157112635672092, + -0.0023182614240795374, + 0.0185460913926363, + 0.014175953343510628, + -0.005756055936217308, + 0.003031018888577819, + -0.023153817281126976, + 0.0022336666006594896, + -0.00933064240962267, + 0.02172830142080784, + -0.00868988037109375, + -0.014010363258421421, + 0.002518049441277981, + -0.028956670314073563, + -0.0077467369846999645, + -0.026148837059736252, + 0.028956670314073563, + -0.0005534669035114348, + -0.006933185737580061, + -0.021800298243761063, + -0.002008680021390319, + 0.0018718881765380502, + 0.004650922026485205, + 0.005565267521888018, + 0.008898667991161346, + -0.004560927394777536, + 0.007303963415324688, + -0.025025704875588417, + 0.02129632793366909, + 0.015709461644291878, + -0.008257906883955002, + -0.013002423569560051, + 0.012016082182526588, + -0.022995425388216972, + 0.009942606091499329, + 0.010475373826920986, + -0.003556587500497699, + 0.013671983033418655, + 0.01907886005938053, + -0.013779976405203342, + 0.006447214633226395, + -0.03493231162428856, + -0.0022318665869534016, + -0.010914548300206661, + 0.01076335646212101, + 0.003549387911334634, + -0.002485651522874832, + 0.005262885708361864, + -0.02325461059808731, + -0.018877271562814713, + 0.007775535341352224, + 0.03234046697616577, + 0.058057330548763275, + 0.021541113033890724, + 0.008553088642656803, + 0.006727998144924641, + 0.025601670145988464, + -0.026768000796437263, + 0.006544408854097128, + -0.011173732578754425, + -0.03254205733537674, + -0.02144031971693039, + -0.0077539365738630295, + 0.00045334792230278254, + 0.02459373138844967, + 0.006699199788272381, + -0.019035663455724716, + -0.013599987141788006, + -0.003157011466100812, + -0.023758580908179283, + 0.008661082945764065, + 0.0022858635056763887, + -0.010417777113616467, + 0.0009161452762782574, + -0.01703418232500553, + 0.01238325983285904, + 0.009093056432902813, + 0.01714937575161457, + -0.015133495442569256, + -0.02447853796184063, + -0.023888172581791878, + 0.003068816615268588, + 0.029691025614738464, + -0.009121854789555073, + -0.006540809292346239, + -0.007368759717792273, + -0.010230588726699352, + 0.015623066574335098, + -0.005885648541152477, + 0.0034161959774792194, + 0.005763255525380373, + -0.02561607025563717, + -0.02851029671728611, + -0.0075163510628044605, + 0.010799354873597622, + -0.0064256158657372, + -0.018646886572241783, + -0.010165792889893055, + -0.0034899914171546698, + -0.018358903005719185, + 0.016933389008045197, + -0.014507133513689041, + 0.0009926407365128398, + -0.007926726713776588, + -0.027329567819833755, + -0.008941865526139736, + -0.01808531954884529, + 0.003063417039811611, + 0.03432754799723625, + -0.015248688869178295, + -0.013866371475160122, + -0.01860368810594082, + -0.012527251616120338, + 0.013527991250157356, + 0.016199031844735146, + 0.007811533287167549, + -0.015896650031208992, + 0.025126498192548752, + 0.0019330844515934587, + 0.000416450115153566, + -0.005007300991564989, + -0.02552967518568039, + 0.0029680225998163223, + -0.012973625212907791, + -0.014435137622058392, + -0.020058002322912216, + -0.010885749943554401, + -0.006198829505592585, + -0.023700984194874763, + 0.002309262054041028, + -0.002519849454984069, + 0.02433454617857933, + 0.010518571361899376, + 0.018646886572241783, + -0.012664043344557285, + -0.0005732657737098634, + -0.01857488974928856, + 0.0068791890516877174, + -0.008682681247591972, + -0.004838110879063606, + -0.012073678895831108, + 0.0062204282730817795, + -0.029748622328042984, + -0.004769715014845133, + -0.029489437118172646, + 0.0077611361630260944, + 0.019122056663036346, + -0.012304064817726612, + -0.007116774562746286, + -0.011324923485517502, + 0.0014192152302712202, + 0.011339322663843632, + -0.009093056432902813, + 0.008430696092545986, + -0.0014489134773612022, + 0.022981027141213417, + -0.013355202041566372, + -0.02941744215786457, + 0.01930924691259861, + 0.004096555057913065, + 0.005846050567924976, + 0.021310726180672646, + -0.003680780064314604, + -0.00921544898301363, + -0.002798832720145583, + 0.008646683767437935, + -0.003747376147657633, + 0.017840534448623657, + 0.004701319150626659, + -0.008013120852410793, + -0.0077611361630260944, + 0.006123234052211046, + -0.017941327765583992, + 0.005324081983417273, + 0.010720159858465195, + 0.0059648435562849045, + -0.0026530413888394833, + -0.002098674653097987, + 0.010662563145160675, + 0.02368658408522606, + -0.015767058357596397, + -0.000562916393391788, + 0.02319701388478279, + 0.005291683599352837, + 0.0056948596611619, + 0.006706399377435446, + -0.0048345113173127174, + -0.003934565000236034, + 0.01945323683321476, + -0.014989504590630531, + 0.021166734397411346, + -0.0019114858005195856, + -0.026422420516610146, + 0.013232809491455555, + 0.01749495416879654, + -0.0014714121352881193, + -0.01761014759540558, + -0.007217568811029196, + -0.02208827994763851, + 0.013340802863240242, + 0.010583367198705673, + -0.00407495629042387, + 0.008142713457345963, + -0.013974364846944809, + -0.01601184345781803, + -0.006504811346530914, + -0.004510530270636082, + 0.025544073432683945, + 0.007098775822669268, + 0.02269304357469082, + -0.010158592835068703, + -0.000825700641144067, + -0.010648163966834545, + 0.007602745667099953, + 0.008567487820982933, + 0.026897592470049858, + 0.0019636827055364847, + 0.0017881931271404028, + 0.009078657254576683, + 0.015968644991517067, + -0.014579128473997116, + -0.012779236771166325, + -0.008531490340828896, + -0.0004004760703537613, + -0.010482573881745338, + -0.014759117737412453, + -0.008013120852410793, + -0.004726517479866743, + -0.00984181184321642, + -0.014233549125492573, + -0.03919445723295212, + -0.013441597111523151, + 0.015666263177990913, + 0.02635042555630207, + 0.020835554227232933, + 0.005039698909968138, + 0.014334343373775482, + -0.008992263115942478, + -0.006763995625078678, + 0.012196071445941925, + 0.0019600829109549522, + 0.005000101402401924, + 0.0036501819267868996, + 0.016026241704821587, + -0.005896447692066431, + 0.0022822637110948563, + -0.0020428779534995556, + 0.008797874674201012, + -0.001511909649707377, + 0.020014803856611252, + -0.012743238359689713, + 0.0019564831163734198, + -0.0016703001456335187, + -0.020662765949964523, + 0.002658441197127104, + -0.033895574510097504 + ], + "71a0db5b-8b05-43cb-a292-f738bf7f2a17": [ + -0.006924312561750412, + -0.0025245249271392822, + -0.009317602962255478, + -0.00399572541937232, + -0.0435972660779953, + -0.02116318605840206, + 0.022945202887058258, + 0.04859796538949013, + -0.009462651796638966, + 0.05238302797079086, + 0.0033309224527329206, + 0.02895433083176613, + -0.022434081882238388, + 0.012715869583189487, + -0.002389837522059679, + 0.002595321973785758, + -0.05014514550566673, + 0.01551322266459465, + -0.028457025066018105, + -0.011403530836105347, + 0.0711149349808693, + -0.0310264453291893, + -0.0040440745651721954, + 0.011196319945156574, + -0.024064144119620323, + -0.02450619451701641, + 0.014601492322981358, + -0.014421909116208553, + -0.013116477988660336, + -0.010947666130959988, + 0.00754249282181263, + 0.021784819662570953, + 0.015333639457821846, + -0.0247410349547863, + 0.012052793055772781, + -0.004904001951217651, + -0.018441809341311455, + 0.050531938672065735, + -0.011417345143854618, + 0.01551322266459465, + -0.042050089687108994, + 0.008212476037442684, + 0.011147970333695412, + 4.3088086385978386e-5, + -0.020955974236130714, + 0.016314439475536346, + 0.04050290957093239, + -0.009441929869353771, + -0.0008115777745842934, + -0.01331678219139576, + 0.005611973814666271, + 0.026951288804411888, + -0.01877334713935852, + -0.006886323448270559, + 0.0068966844119131565, + 0.004289275035262108, + 0.005214818753302097, + 0.08736030012369156, + 0.014214698225259781, + -0.03923201560974121, + -0.007017557509243488, + -0.008792667649686337, + 0.013662134297192097, + -0.0013088849373161793, + -0.0076944478787481785, + -0.0159138310700655, + 0.02222687005996704, + 0.00836443156003952, + -0.012722776271402836, + 0.020154757425189018, + -0.0005210501840338111, + 0.029506895691156387, + -0.04906764626502991, + 0.01583094708621502, + -0.023221485316753387, + -0.007134977262467146, + 0.023553023114800453, + -0.059676866978406906, + 0.00795691553503275, + 0.0014487525913864374, + -0.021936774253845215, + 0.007811867631971836, + 0.018331296741962433, + -0.012287632562220097, + 0.02069350704550743, + 0.014836331829428673, + -0.03829265758395195, + -0.0565548837184906, + -0.07548018544912338, + -0.026923660188913345, + 0.020762575790286064, + 0.01413872092962265, + -0.010236239992082119, + -0.012639892287552357, + -0.0136483209207654, + -0.0049074552953243256, + 0.04611143097281456, + 0.01822078414261341, + -0.04906764626502991, + -0.040364768356084824, + -0.029479267075657845, + 0.02293138951063156, + -0.049620211124420166, + 0.001516096293926239, + 0.007390537764877081, + -0.013779554516077042, + -0.006385562941431999, + 0.00487982714548707, + -0.03439708426594734, + 0.02439568191766739, + 0.016797933727502823, + -0.02054155059158802, + -0.005276982206851244, + 0.005004154052585363, + 0.022710362449288368, + -0.07360146939754486, + -0.010353660210967064, + -0.029479267075657845, + -0.017543893307447433, + -0.04166329279541969, + 0.06083725020289421, + 0.04600091651082039, + 0.032103944569826126, + -0.004800396040081978, + 0.01598290167748928, + -0.012114956974983215, + -0.002011676784604788, + 0.0017172640655189753, + 0.005145748145878315, + -0.0008508616010658443, + 0.001440982217900455, + -0.014228512533009052, + -0.011362088844180107, + 0.020513923838734627, + -0.019629821181297302, + 0.014863960444927216, + 0.030225228518247604, + 0.04340386763215065, + -0.04116598516702652, + 0.046332456171512604, + -0.02034815400838852, + -0.003370637772604823, + -0.013855531811714172, + -0.009614606387913227, + 0.022171612828969955, + 0.010699012316763401, + -0.04964783787727356, + 0.03738092631101608, + 0.013157919980585575, + 0.00803289283066988, + -0.03644156828522682, + -0.00017537418170832098, + 0.03995034843683243, + 0.0004308269126340747, + 0.007549399975687265, + 0.0018407274037599564, + 0.016093414276838303, + 0.031634263694286346, + -0.006561692338436842, + 0.010187891311943531, + -0.013496365398168564, + -0.03677310794591904, + 0.022047286853194237, + -0.0022689641918987036, + -0.011327553540468216, + 0.019353538751602173, + 0.025859976187348366, + 0.01862139254808426, + -0.07404351979494095, + 0.022945202887058258, + 0.04677450656890869, + -0.0380992591381073, + 0.01117559801787138, + -0.010381287895143032, + -0.009124206379055977, + -0.011299924924969673, + 0.008060521446168423, + -0.0036434661597013474, + 0.013993673026561737, + -0.047078415751457214, + -0.0019754148088395596, + -0.03569560870528221, + -0.01500210165977478, + 0.01060231402516365, + -0.026578309014439583, + 0.04025425761938095, + 0.003280846169218421, + 0.005453112069517374, + -0.009435023181140423, + 0.02239263989031315, + 0.0051940977573394775, + 0.016466394066810608, + 0.005384041462093592, + 0.051830463111400604, + -0.016701234504580498, + -0.0012260004878044128, + -0.002797353081405163, + 0.012218561954796314, + 0.025072572752833366, + 0.02329055406153202, + -0.02152235060930252, + -0.05906904861330986, + -0.07039660215377808, + 0.025749463587999344, + -0.049316298216581345, + -0.005173376761376858, + 0.004973072092980146, + -0.0194364245980978, + 0.02486536093056202, + -0.009925423189997673, + 0.03608240187168121, + -0.011065085418522358, + 0.01920158416032791, + -0.0016689146868884563, + -0.021549979224801064, + -0.007715168874710798, + -0.01598290167748928, + 0.026481609791517258, + 0.01563754864037037, + 0.007245489861816168, + -0.01715710014104843, + 0.014477165415883064, + 0.0384860523045063, + -0.017585335299372673, + -0.044951047748327255, + -0.016507837921380997, + -0.013420388102531433, + 0.02544555254280567, + -0.014642935246229172, + -0.012025165371596813, + 0.040309514850378036, + -0.014311396516859531, + 0.014767262153327465, + -0.020596807822585106, + -0.007632284425199032, + 0.0037885140627622604, + -0.0060471175238490105, + 0.0036400125827640295, + 0.014408095739781857, + -0.028291255235671997, + 0.04119361564517021, + 0.03436945378780365, + 0.014850146137177944, + 0.03436945378780365, + 0.019450237974524498, + 0.025196898728609085, + 0.0030477335676550865, + 0.04834931343793869, + 0.026495423167943954, + -0.03177240490913391, + 0.0006453769747167826, + 0.030114715918898582, + 0.020983602851629257, + 0.0005793283926323056, + -0.0012182299979031086, + 0.01822078414261341, + 0.029120100662112236, + -0.004582824185490608, + -0.03528118506073952, + 0.0002812462334986776, + 0.00042413570918142796, + -0.0039024802390486, + 0.022005844861268997, + -0.033126186579465866, + 0.05840596929192543, + -0.008675248362123966, + 0.011721255257725716, + -0.04025425761938095, + -0.02262747846543789, + 0.0067101940512657166, + -0.0581296905875206, + -0.006423551589250565, + -0.008530200459063053, + 0.008944623172283173, + -0.017226168885827065, + -0.010263868607580662, + 0.004417055286467075, + 0.0412488728761673, + -0.008205569349229336, + 0.0018217330798506737, + -0.016715047881007195, + 0.02667500637471676, + 0.03155137971043587, + 0.04688502103090286, + -0.008923902176320553, + -0.02690984681248665, + 0.004655348137021065, + -0.001861448516137898, + -0.02800115942955017, + -0.016880817711353302, + 0.018124084919691086, + -0.01292308047413826, + 0.03649682551622391, + -0.0033412829507142305, + 0.01056777872145176, + -0.009559350088238716, + -0.013641413301229477, + -0.008965344168245792, + -0.009773468598723412, + 0.026150071993470192, + -0.02702035941183567, + 0.003313654800876975, + 0.05047668144106865, + -0.010616127401590347, + 0.016908446326851845, + -0.0012285906122997403, + 0.018358925357460976, + -0.035446953028440475, + -0.05517347529530525, + 0.016328254714608192, + 0.03472862020134926, + 0.001809645676985383, + -0.0022085276432335377, + -0.026481609791517258, + -0.02164667844772339, + 0.012550100684165955, + 0.003795421216636896, + 0.013945323415100574, + 0.013171734288334846, + -0.029755549505352974, + -0.008184848353266716, + -0.004489579237997532, + -0.04434322565793991, + 0.02411939948797226, + 0.033485352993011475, + -0.02823599986732006, + 0.014504794031381607, + 0.009566256776452065, + -0.00899297185242176, + -0.022572223097085953, + -0.008599271066486835, + -0.03262887895107269, + -0.02840176783502102, + -0.0048936414532363415, + 0.0036503730807453394, + -0.02887144684791565, + -0.03588900342583656, + -0.03724278509616852, + -0.007977636530995369, + 0.0014124906156212091, + -0.022572223097085953, + 0.04414983093738556, + -0.029506895691156387, + 0.003567488631233573, + 0.013399667106568813, + -0.008765039965510368, + -0.011534764431416988, + 0.017930688336491585, + -0.01975414715707302, + -0.010733547620475292, + 0.0007079720962792635, + -0.023553023114800453, + 0.0435972660779953, + -0.003715990111231804, + -0.0001238951226696372, + -0.001414217404089868, + -0.024920618161559105, + -0.01900818757712841, + 0.0016801386373117566, + 0.02380167692899704, + -0.013040500693023205, + -0.016480209305882454, + -0.027752505615353584, + -0.0024157389998435974, + 0.023553023114800453, + 0.035750862210989, + 0.019312096759676933, + 0.007583935279399157, + -0.0025556066539138556, + 0.022434081882238388, + -0.0314132384955883, + 0.04356963932514191, + 0.0239536315202713, + 0.008792667649686337, + -0.03862419351935387, + -0.004955804441124201, + 0.0194364245980978, + 0.011085806414484978, + -0.05542212724685669, + 0.039729323238134384, + -0.012253097258508205, + 0.011755790561437607, + 0.008440408855676651, + -0.010940758511424065, + 0.04964783787727356, + -0.0023622093722224236, + -0.016590721905231476, + -0.011196319945156574, + -0.015444152057170868, + -0.03539169579744339, + -0.051195014268159866, + -0.004634627141058445, + -0.07680633664131165, + 0.004206390120089054, + -0.04146989807486534, + 0.03138561174273491, + 0.0019356992561370134, + 0.010926945134997368, + 0.02348395250737667, + 0.009635327383875847, + -0.003657280234619975, + -0.006958847399801016, + -0.009462651796638966, + -0.0016999964136630297, + 0.014242325909435749, + 0.007349095772951841, + -0.0012260004878044128, + -0.0006825023447163403, + 0.008074335753917694, + 0.00850257184356451, + 0.005428937263786793, + 0.0053046103566884995, + 0.01794450171291828, + -0.009890887886285782, + 0.05177520588040352, + -0.013144106604158878, + 0.018234597519040108, + 0.001220820122398436, + -0.04536547139286995, + -0.026661192998290062, + 0.059566352516412735, + 0.05531161278486252, + -0.0076391915790736675, + 0.016466394066810608, + -0.03528118506073952, + 0.015582293272018433, + 0.02096978761255741, + 0.022765619680285454, + -0.009911608882248402, + -0.0073076533153653145, + -0.034231312572956085, + 0.0035053251776844263, + -0.022240683436393738, + -0.03072253428399563, + 0.02034815400838852, + -0.0014099004911258817, + 0.01834511011838913, + -0.00598150072619319, + -0.003470790106803179, + 0.0036745478864759207, + 0.02682696282863617, + 0.015250754542648792, + 0.0054496582597494125, + 0.0027559108566492796, + -0.006364841945469379, + -0.021978216245770454, + -0.013247711583971977, + 0.01509879995137453, + 0.01058159302920103, + 0.028760934248566628, + -0.0006872509839013219, + 0.03605477511882782, + -0.031440868973731995, + 0.005905523430556059, + -0.01712947152554989, + -0.005073224194347858, + -0.010457266122102737, + 0.014794889837503433, + 0.03384451940655708, + 0.0003218251222278923, + -0.022420266643166542, + 0.018124084919691086, + 0.03878996521234512, + -0.030584394931793213, + -0.02246171049773693, + -0.05113976076245308, + -0.029285870492458344, + 0.007141884416341782, + -0.012867824174463749, + -0.013496365398168564, + -0.012812567874789238, + 0.02961740829050541, + -0.019698891788721085, + -0.008329896256327629, + -0.026799334213137627, + 0.004582824185490608, + 0.0027800854295492172, + 0.0045517426915466785, + 0.008247011341154575, + -0.009172555059194565, + -0.002921679988503456, + -0.008986065164208412, + -0.017916874960064888, + 0.0008202115423046052, + 0.06111353263258934, + -0.02989368885755539, + -0.008564735762774944, + 0.01156929973512888, + 0.04663636535406113, + -0.0013727751793339849, + 0.035640351474285126, + -0.022959016263484955, + 0.014366652816534042, + -0.010864781215786934, + -0.017101842910051346, + -0.039453040808439255, + -0.0077497041784226894, + -0.017032772302627563, + -0.00527352886274457, + -0.037298042327165604, + 0.04765860736370087, + 0.008619992062449455, + 0.027462409809231758, + 0.025777090340852737, + 0.010781897231936455, + 0.0013632780173793435, + -0.012439588084816933, + 0.03075016289949417, + 0.00933141727000475, + -0.010063564404845238, + -0.006592774298042059, + -0.0015851667849346995, + -0.0008094193181023002, + 0.0008534517255611718, + -0.010395102202892303, + 0.015969088301062584, + -0.03168952092528343, + 0.018372738733887672, + -0.0004701107391156256, + -0.012612263672053814, + 0.032352596521377563, + 0.007597749121487141, + -0.0062785036861896515, + 0.01327534019947052, + 0.013206269592046738, + 0.006344120483845472, + -0.016038157045841217, + 0.0290648452937603, + 0.02222687005996704, + 0.005373680964112282, + -0.026564493775367737, + 0.001314065302722156, + -0.005649962462484837, + 0.00598150072619319, + 0.02411939948797226, + -0.01602434366941452, + -0.004106238018721342, + 0.0004183078999631107, + -0.0003300272219348699, + 0.03715990111231804, + -0.02407795749604702, + 0.008827202953398228, + -0.009421208873391151, + 0.010070471093058586, + 0.012377424165606499, + 0.04025425761938095, + -0.03718752786517143, + 0.03271176293492317, + 0.0128609174862504, + 0.009766560979187489, + -0.011514043435454369, + 0.0030563673935830593, + -0.0030978096183389425, + 0.016134856268763542, + 0.015817131847143173, + -0.04489579051733017, + 0.03028048388659954, + -0.024368053302168846, + -0.054924819618463516, + 0.0023173135705292225, + 0.001904617645777762, + -0.012280725874006748, + -0.0032497646752744913, + 0.004810756538063288, + -0.03680073469877243, + -0.0030943560414016247, + -0.03381689265370369, + 0.005881348624825478, + -0.014021300710737705, + 0.02942400984466076, + 0.026813147589564323, + 0.005394401960074902, + 0.025625135749578476, + -0.015692805871367455, + -0.03028048388659954, + 0.01657690666615963, + 0.00883411057293415, + 0.018883859738707542, + -0.006540971342474222, + 0.001535954070277512, + 0.03075016289949417, + -0.039342526346445084, + 0.01704658567905426, + -0.017958316951990128, + 0.007756611332297325, + 0.03243548050522804, + -0.06249494105577469, + -0.04669162258505821, + -0.0053046103566884995, + 0.02989368885755539, + -0.01145188044756651, + 0.01728142611682415, + 0.022530779242515564, + 0.011147970333695412, + -0.0038886661641299725, + 0.025031130760908127, + -0.009787282906472683, + 0.03500490263104439, + -0.013551621697843075, + -0.011120341718196869, + -0.006699833553284407, + 0.01920158416032791, + 0.028429396450519562, + -0.014490979723632336, + -0.01327534019947052, + 0.026371097192168236, + -0.017447195947170258, + 0.006009128876030445, + -0.007048639003187418, + -0.01105817873030901, + 0.0038334098644554615, + -0.004040621221065521, + 0.01621774025261402, + -0.009745839983224869, + 0.03608240187168121, + 0.013896973803639412, + 0.013213176280260086, + 0.028291255235671997, + 0.010595406405627728, + -0.04395643249154091, + 0.023829303681850433, + -0.05945584177970886, + 0.05260405316948891, + 0.0054358444176614285, + 0.027780134230852127, + -0.0026125896256417036, + -0.022213056683540344, + -0.012667519971728325, + -0.014021300710737705, + 0.00940739456564188, + 0.020099500194191933, + 0.017626779153943062, + 0.03276702016592026, + -0.0194364245980978, + 0.032103944569826126, + 0.013378946110606194, + -0.0012864370364695787, + 0.029451638460159302, + -0.0011128976475447416, + 0.014891588129103184, + -0.020707320421934128, + 0.007245489861816168, + -0.004648440983146429, + 0.029589779675006866, + -0.018055014312267303, + -0.009096577763557434, + -0.027407154440879822, + 0.015154056251049042, + 0.018414180725812912, + -0.002966575790196657, + -0.0435972660779953, + 0.008115777745842934, + 0.04865322262048721, + 0.008951529860496521, + -0.006955394055694342, + -0.046442970633506775, + -0.018718091771006584, + 0.01068519800901413, + 0.04100021719932556, + -0.02478247694671154, + 0.04166329279541969, + 0.021784819662570953, + -0.016825560480356216, + 0.0128609174862504, + 0.016079600900411606, + 0.0001474222372053191, + 0.010098099708557129, + 0.012757311575114727, + 0.015499408356845379, + 0.03793349117040634, + -0.002167085185647011, + 0.011714347638189793, + 0.01066447701305151, + 0.0219920314848423, + -0.007100441958755255, + -0.001299387775361538, + 0.0005365910474210978, + -0.02340106852352619, + 0.00624396838247776, + -0.008847923949360847, + -0.028346512466669083, + -0.001414217404089868, + -0.02211635746061802, + -0.005397855304181576, + 0.03309855982661247, + -0.026965102180838585, + 0.006651483941823244, + 0.042602650821208954, + -0.023553023114800453, + -0.005881348624825478, + 0.019698891788721085, + 0.012114956974983215, + -0.015803318470716476, + 0.016563093289732933, + -0.026730263605713844, + 0.0023829303681850433, + -0.007169512566179037, + -0.012135677970945835, + 0.01815171353518963, + -0.021978216245770454, + -0.009752747602760792, + -0.021591421216726303, + -0.01164527703076601, + -0.013040500693023205, + -0.004365252330899239, + 0.009745839983224869, + -0.016867002472281456, + 0.0034362548030912876, + 0.024810105562210083, + -0.004866012837737799, + 0.017143284901976585, + 0.01747482270002365, + -0.00931069627404213, + 0.0027403701096773148, + 0.0057363007217645645, + -0.004852198995649815, + -0.012812567874789238, + 0.0038437703624367714, + -0.004952351097017527, + 0.02293138951063156, + -0.02529359795153141, + 0.04536547139286995, + 0.014007486402988434, + -0.03942541033029556, + -0.05003463104367256, + 0.015568478964269161, + 0.028926704078912735, + 0.007784239482134581, + -0.02544555254280567, + 0.0021204627119004726, + 0.039287269115448, + 0.00926925428211689, + -0.026854589581489563, + 0.01822078414261341, + -0.012246190570294857, + -0.015333639457821846, + -0.03000420331954956, + 0.007376723922789097, + 0.027434781193733215, + -0.018800975754857063, + -0.01939498260617256, + -0.03561272472143173, + 0.039453040808439255, + 0.018759533762931824, + 0.02188151702284813, + -0.008578550070524216, + -0.027711063623428345, + -0.01471200492233038, + 0.012895452789962292, + 0.040309514850378036, + 0.03840316832065582, + -0.037132274359464645, + 0.05544975399971008, + 0.01830366812646389, + -0.03268413618206978, + -0.0011387990089133382, + 0.0024554543197155, + -0.0008525883313268423, + 0.0004701107391156256, + 0.040392398834228516, + -0.02096978761255741, + 0.002797353081405163, + 0.025583693757653236, + -0.02505875937640667, + 0.007577028125524521, + -0.003120257519185543, + -0.017764918506145477, + 0.01779254712164402, + 0.06183186545968056, + -0.022143986076116562, + 0.002142910612747073, + -0.006226700730621815, + 0.010864781215786934, + 0.025666577741503716, + 0.006209433078765869, + -0.013171734288334846, + 0.03724278509616852, + -0.005159562453627586, + -0.039066243916749954, + 0.012557007372379303, + -0.006603134796023369, + -0.05978737771511078, + -0.007376723922789097, + -0.031717151403427124, + 0.015996715053915977, + 0.0031478856690227985, + 0.04105547443032265, + 0.04351438209414482, + -0.008613084442913532, + -0.007034825161099434, + 0.01759915053844452, + 0.013123384676873684, + -0.009490279480814934, + 0.016949888318777084, + -0.0017267612274736166, + -0.01029149629175663, + 0.0076944478787481785, + -0.015209312550723553, + -0.00401644641533494, + 0.012916173785924911, + 0.0146291209384799, + -0.05133315548300743, + 0.016162484884262085, + 0.04423271492123604, + -0.002199893817305565, + -0.008267732337117195, + 0.011272297240793705, + -0.008378244936466217, + 0.01783398911356926, + 0.009082763455808163, + -0.0290648452937603, + 0.0146291209384799, + -0.006060931831598282, + 0.0221854280680418, + -0.008647619746625423, + -0.028484651818871498, + -0.005356413312256336, + -0.03671785071492195, + 0.01896674558520317, + -0.024796290323138237, + 0.013503272086381912, + 0.025459367781877518, + 0.022434081882238388, + 0.007867123931646347, + 0.0066791120916605, + -0.006019489374011755, + -0.0030477335676550865, + -0.018055014312267303, + 0.007722076028585434, + 0.0010032482678070664, + -0.004123505670577288, + -0.0027161953039467335, + -0.006682565901428461, + 0.006268143188208342, + 0.02784920483827591, + 0.04274079203605652, + -0.024188470095396042, + -0.01250865776091814, + -0.047078415751457214, + 0.021398024633526802, + 0.009207090362906456, + -0.028650421649217606, + -0.020638249814510345, + 0.0056050666607916355, + -0.021218441426753998, + -0.011652184650301933, + -0.0132546192035079, + 0.014269954524934292, + 0.029838433489203453, + 0.009020600467920303, + 0.020596807822585106, + -0.017350496724247932, + -0.007853309623897076, + -0.025583693757653236, + -0.049896489828825, + 0.04218823090195656, + -0.005694858264178038, + 0.012481030076742172, + 0.007404352072626352, + 0.00940739456564188, + -0.00508703850209713, + 0.007632284425199032, + 0.009110392071306705, + -0.030971188098192215, + 0.005912430118769407, + -0.005870988126844168, + -0.013572342693805695, + 0.036745477467775345, + 0.0059227910824120045, + 0.004883280489593744, + 0.009897795505821705, + 0.006858695298433304, + 0.004914362449198961, + -0.009020600467920303, + -0.03177240490913391, + -0.023276740685105324, + -0.019450237974524498, + 0.01196300145238638, + -0.020569179207086563, + -0.0033499167766422033, + -0.016190113499760628, + 0.021315140649676323, + 0.012778032571077347, + -0.0003127596282865852, + -0.05636148527264595, + 0.029479267075657845, + -0.003170333569869399, + 0.007535585667937994, + 0.008316081948578358, + -0.013966044411063194, + 0.018704276531934738, + 0.01873190514743328, + -0.01231526117771864, + -0.03138561174273491, + -0.008758132345974445, + -0.05467616766691208, + -0.022834690287709236, + -0.0017267612274736166, + -0.004268553573638201, + 0.0025659671518951654, + 0.0025020770262926817, + -0.02870567888021469, + -0.015568478964269161, + 0.019077258184552193, + -0.0068517886102199554, + -0.03798874467611313, + -0.006257782690227032, + 0.036386311054229736, + -0.001809645676985383, + 0.055118218064308167, + 0.02435423992574215, + 0.01413872092962265, + -0.025859976187348366, + -0.02467196434736252, + 0.02069350704550743, + 0.021038858219981194, + 0.02109411545097828, + -0.00970439799129963, + -0.022378824651241302, + -0.0015350907342508435, + -0.011320646852254868, + 0.0004070839495398104, + 0.027793947607278824, + 0.004966165404766798, + -0.020154757425189018, + -0.02867805026471615, + -0.005798464175313711, + 0.022986644878983498, + 0.012536286376416683, + 0.005522182211279869, + -0.004627719987183809, + 0.016839375719428062, + 0.026025744155049324, + -0.016466394066810608, + 0.0030011108610779047, + -0.03318144381046295, + 0.012398145161569118, + -0.013454923406243324, + -0.026108630001544952, + -0.04533784091472626, + -0.024685777723789215, + 0.014919216744601727, + 0.022682735696434975, + -0.01811027154326439, + 0.0033827251754701138, + -0.01834511011838913, + -0.03989509120583534, + 0.01559610664844513, + 0.01794450171291828, + -0.016466394066810608, + 0.009552442468702793, + 0.04077919200062752, + 0.002042758511379361, + 0.023580651730298996, + 0.029368754476308823, + 0.007528678979724646, + -0.0046069989912211895, + 0.033209070563316345, + 0.009179462678730488, + 0.0002590141666587442, + -0.010712826624512672, + 0.0037885140627622604, + -0.002148090861737728, + -0.0013650046894326806, + -0.03519830107688904, + 0.007349095772951841, + -0.04058579355478287, + 0.004669162444770336, + 0.004886734299361706, + 0.010857874527573586, + -0.019629821181297302, + 0.0028163474053144455, + 0.011355181224644184, + -0.015775689855217934, + -0.0017189907375723124, + 0.012177119962871075, + -0.010035935789346695, + 0.004282367881387472, + 0.0015963907353579998, + -0.008392059244215488, + 0.020058058202266693, + 0.020168570801615715, + -0.0012078694999217987, + 0.01547178067266941, + -0.014069650322198868, + 0.007445794064551592, + -0.0046518947929143906, + 0.00664803059771657, + 0.01653546467423439, + -0.023704977706074715, + 0.02789064683020115, + -0.03354061022400856, + -0.004503393080085516, + -0.03707701712846756, + -0.007625377271324396, + -0.02341488189995289, + -0.04834931343793869, + 0.004679522942751646, + 0.006098920479416847, + -0.006913951598107815, + -0.01783398911356926, + 0.017378125339746475, + -0.01723998412489891, + 0.0292582418769598, + -0.001562718884088099, + 0.01425614021718502, + -0.012563914060592651, + -0.01013263501226902, + 0.023028086870908737, + 0.02970029227435589, + 0.019740333780646324, + -0.01692225970327854, + -0.006368295289576054, + -0.02840176783502102, + 0.03475625067949295, + 0.0056810444220900536, + 0.0066791120916605, + -0.047465212643146515, + -0.0118801174685359, + 0.03486676141619682, + -0.021494723856449127, + -0.03334721177816391, + 0.0046311733312904835, + -0.003999178763478994, + -0.01508498564362526, + -0.0029078659135848284, + 0.012778032571077347, + 0.011686719954013824, + 0.01583094708621502, + 0.02416084334254265, + -0.030971188098192215, + 0.015388895757496357, + 0.008550921455025673, + -0.0018200062913820148, + -0.005712125916033983, + -0.028567537665367126, + 0.016867002472281456, + -0.04368015006184578, + -0.025915231555700302, + 0.007459608372300863, + 0.019629821181297302, + -0.0023311276454478502, + -0.00558779900893569, + -0.008474944159388542, + 0.010105006396770477, + -0.011935373768210411, + -0.01056777872145176, + 0.01817934215068817, + -0.008619992062449455, + 0.02301427349448204, + 0.012688240967690945, + -0.020555365830659866, + 0.0237602349370718, + -0.008979158475995064, + 0.006447726394981146, + -0.003712536534294486, + -0.01621774025261402, + -0.004061342217028141, + -0.006205979734659195, + 0.02518308535218239, + -0.007853309623897076, + 0.02160523645579815, + 0.03431420028209686, + -0.03439708426594734, + 0.0353364422917366, + -0.015029729343950748, + -0.023870747536420822, + 0.026813147589564323, + 0.003040826413780451, + -0.0012363609857857227, + 0.003109897021204233, + 0.020721133798360825, + -0.013448015786707401, + 0.023939816281199455, + 0.009752747602760792, + 0.026067186146974564, + -0.010574685409665108, + 0.009324510581791401, + 0.007204047869890928, + 0.0025193446781486273, + 0.0008387742564082146, + 0.005860627628862858, + -0.013302967883646488, + 0.010512522421777248, + -0.020431037992239, + -0.03715990111231804, + 0.027641993016004562, + -0.008267732337117195, + 0.003130618017166853, + 0.02887144684791565, + -0.020873088389635086, + 0.014435723423957825, + -0.0076944478787481785, + -0.018055014312267303, + -0.007003743201494217, + -0.012867824174463749, + -0.01869046315550804, + 0.06509198993444443, + 0.012563914060592651, + 0.0006967481458559632, + 0.017916874960064888, + -0.016369696706533432, + -0.0038472239393740892, + 0.011237761937081814, + 0.013517086394131184, + 0.007259304169565439, + 0.014242325909435749, + -0.025307411327958107, + 0.0021705387625843287, + 0.021909145638346672, + 0.028111672028899193, + -0.006209433078765869, + 0.0032877533230930567, + 0.02403651550412178, + -0.007411259226500988, + -0.029589779675006866, + -0.015375081449747086, + 0.006423551589250565, + -0.003564035054296255, + 0.013496365398168564, + -0.013088850304484367, + -0.014642935246229172, + -0.02780776284635067, + -0.0022102543152868748, + 0.007583935279399157, + -0.042050089687108994, + -0.00161797518376261, + 0.029451638460159302, + 0.011776511557400227, + 0.014435723423957825, + 0.01740575209259987, + -0.02246171049773693, + 0.010788803920149803, + 0.008122684434056282, + -0.022171612828969955, + -0.007625377271324396, + -0.010636849328875542, + -0.014753447845578194, + -0.020997416228055954, + -0.016507837921380997, + -0.009089671075344086, + -0.004158040974289179, + 0.0079500088468194, + 0.014035115018486977, + 0.004790035542100668, + -0.005000700242817402, + 0.0009186369716189802, + 0.005770836025476456, + 0.008544014766812325, + -0.02215779945254326, + 0.0013650046894326806, + -0.002876784186810255, + -0.008792667649686337, + -0.01715710014104843, + -0.03655208274722099, + -0.04268553853034973, + -0.010429637506604195, + 0.007722076028585434, + 0.017226168885827065, + -0.0026523051783442497, + -0.003712536534294486, + -0.02718612737953663, + 0.0011180778965353966, + -0.006900137756019831, + -0.0024260994978249073, + -0.015167870558798313, + -0.0020289444364607334, + -0.014518608339130878, + -0.0035346802324056625, + -0.006734368856996298, + 0.017295239493250847, + -0.0017517992528155446, + 0.01719854213297367, + 0.03680073469877243, + -0.019933730363845825, + -0.007687540724873543, + -0.01190083846449852, + -0.011520951054990292, + 0.004717511590570211, + 0.009497186169028282, + 0.021936774253845215, + 0.0006216340116225183, + -0.006755089852958918, + -0.012909267097711563, + -0.007245489861816168, + -0.0022810515947639942, + -0.017820175737142563, + -0.008267732337117195, + 0.001222546910867095, + 0.007998357526957989, + -0.022061100229620934, + -0.003353370353579521, + -0.022213056683540344, + -0.01936735399067402, + -0.010443451814353466, + 0.0036745478864759207, + -0.016245368868112564, + -0.0076391915790736675, + 0.0017975583905354142, + 0.005501461215317249, + -0.03323670104146004, + 0.01504354365170002, + 0.02085927501320839, + 0.0033896323293447495, + 0.019629821181297302, + -0.00557743851095438, + -0.023124786093831062, + 0.00850257184356451, + 0.005656869616359472, + 0.011596928350627422, + -0.01457386463880539, + 0.0013701850548386574, + -0.0003147022216580808, + -0.009656048379838467, + -0.003992272075265646, + 0.03174477815628052, + 0.0008668341324664652, + -0.014739633537828922, + 0.004738232586532831, + -0.008295360952615738, + -0.013378946110606194, + 0.011887024156749249, + -0.02179863303899765, + -0.015375081449747086, + 0.005522182211279869, + -0.005446204915642738, + -0.008219383656978607, + 0.013330596499145031, + 0.005995315033942461, + 0.011500229127705097, + 0.0063233994878828526, + 0.025031130760908127, + -0.008544014766812325, + 0.02450619451701641, + 0.0015204132068902254, + -0.021066486835479736, + 0.007570120971649885, + -0.03240785375237465, + 0.006019489374011755, + -0.002360482467338443, + 0.01280566118657589, + 0.006799985654652119, + 0.012688240967690945, + -0.022793248295783997, + -0.00017040975217241794, + 0.0257218349725008, + -0.01146569475531578, + 0.021301325410604477, + -0.0004437776224222034, + -0.008295360952615738, + 0.004023353569209576, + 0.006979568861424923, + -0.01956075057387352, + 0.002046212088316679, + -0.018524693325161934, + -0.0006242241943255067, + 0.004658801481127739, + -0.005259714554995298, + -0.016521651297807693, + -0.0154165243729949, + -0.006934673059731722, + 0.017847804352641106, + 0.008302267640829086, + -0.005881348624825478, + -0.018745720386505127, + 0.01099601574242115, + 0.005024875048547983, + -0.026523051783442497, + 0.004054435063153505, + -0.015527036972343922, + 0.00848185084760189, + 0.015071171335875988, + -0.031330354511737823, + 0.016286810860037804, + -0.005214818753302097, + 0.03307092934846878, + 0.008737411350011826, + -0.01195609476417303, + -0.034507595002651215, + 0.012543193064630032, + 0.009414302185177803, + 0.00975965429097414, + -0.005131934303790331, + -0.020375782623887062, + -0.026011930778622627, + -0.02442331053316593, + -0.0034017194993793964, + 0.013268432579934597, + -0.021922960877418518, + -0.008758132345974445, + 0.01838655397295952, + 0.0035882098600268364, + 0.011949187144637108, + -0.015582293272018433, + -0.022199241444468498, + 0.0070210108533501625, + 0.0005357276531867683, + 0.010809524916112423, + -7.08511724951677e-5, + -0.006019489374011755, + -0.006972661707550287, + 0.0136483209207654, + 0.006561692338436842, + -0.002937220735475421, + 0.002730009378865361, + 0.0056050666607916355, + -0.006907044909894466, + -0.01732286810874939, + 0.013924602419137955, + -0.016715047881007195, + 0.012999058701097965, + 0.037325669080019, + -0.0037539787590503693, + 0.006813799496740103, + 0.013365131802856922, + -0.006993382703512907, + -0.01413872092962265, + 0.0009065496269613504, + -0.009462651796638966, + 0.00015594811702612787, + 0.018593763932585716, + -0.007632284425199032, + -0.013116477988660336, + 0.014836331829428673, + 0.0017457555513828993, + 0.03503252938389778, + -0.009787282906472683, + 0.003507052082568407, + -0.005059410352259874, + -0.009490279480814934, + -0.017226168885827065, + 0.0019857753068208694, + -8.612221427028999e-5, + -0.003027012338861823, + 0.015540850348770618, + -0.009027507156133652, + -0.009531721472740173, + -0.0052182720974087715, + -0.025404110550880432, + 0.006199072580784559, + 0.0017871978925541043, + -0.008260825648903847, + -0.00024001979909371585, + -0.01708802953362465, + 0.01111343502998352, + -0.00331883504986763, + -0.0020185839384794235, + -0.009207090362906456, + 0.008177940733730793, + 0.007162605412304401, + -0.001080952468328178, + -0.002243062714114785, + 0.02003042958676815, + 0.0001164484565379098, + -0.0025107108522206545, + -0.02914772927761078, + -0.010616127401590347, + -0.013482551090419292, + -0.01904962956905365, + 0.01700514368712902, + -0.006744729354977608, + -0.010629941709339619, + 0.03881759196519852, + 0.030998816713690758, + 0.008115777745842934, + -0.005722486414015293, + -0.016107227653265, + 0.0017699302406981587, + 0.01715710014104843, + -0.0030598207376897335, + -0.013068128377199173, + 0.013095756992697716, + -0.00010792257671710104, + -0.007756611332297325, + -0.011500229127705097, + 0.021508537232875824, + 0.0007450974662788212, + 0.006458086892962456, + 0.015292197465896606, + 0.003570942208170891, + 0.0016464667860418558, + -0.0194364245980978, + 0.012025165371596813, + -0.0063233994878828526, + 0.026011930778622627, + 0.0019805950578302145, + -0.00754249282181263, + -0.01294380147010088, + 0.017612963914871216, + -0.000950582034420222, + 0.007259304169565439, + -0.0044515905901789665, + 0.008392059244215488, + -0.006230154540389776, + 0.04312758892774582, + 0.00924853328615427, + -0.001954693580046296, + -0.014684377238154411, + -0.001854541478678584, + 0.011286111548542976, + 0.022005844861268997, + 0.027393339201807976, + -0.01243268046528101, + 0.02804260142147541, + -0.0016197019722312689, + 0.002686840482056141, + -0.03271176293492317, + 0.00980109628289938, + 0.008329896256327629, + -0.009103485383093357, + -0.012273818254470825, + -0.009607699699699879, + 0.0026695728302001953, + 0.013061221688985825, + 0.000547814997844398, + 0.00506631750613451, + 0.01237051747739315, + -0.01672886312007904, + 0.010464172810316086, + -0.04166329279541969, + -0.0056914049200713634, + -0.019187770783901215, + 0.007079720962792635, + -0.01630062609910965, + 0.022406453266739845, + 0.0055498103611171246, + 0.010954572819173336, + -0.003128891345113516, + 0.007321467623114586, + 0.020665878430008888, + 0.026992730796337128, + 0.018911488354206085, + 0.018414180725812912, + 0.005377134308218956, + 0.003954282961785793, + -0.010844060219824314, + 0.009808003902435303, + -0.014615306630730629, + 0.010077378712594509, + 0.017184726893901825, + 0.013896973803639412, + -0.004883280489593744, + -0.010084285400807858, + 0.005881348624825478, + 0.012273818254470825, + -8.272265404229984e-5, + -0.01740575209259987, + -0.0018424541922286153, + -0.026053372770547867, + 0.00470369728282094, + -0.003905933815985918, + 0.0064304587431252, + -0.003619291353970766, + 7.576165080536157e-5, + 0.0017552527133375406, + -0.0013580976519733667, + -0.007625377271324396, + -0.025072572752833366, + -0.009545535780489445, + 0.017737291753292084, + -0.024616707116365433, + -0.008585456758737564, + -0.0017889245646074414, + -0.005166469607502222, + -0.010505614802241325, + -0.008067428134381771, + 0.011120341718196869, + -0.0068966844119131565, + 0.003871398512274027, + 0.008288453333079815, + 0.0027697249315679073, + 0.04246450960636139, + -0.01932591199874878, + 0.032545994967222214, + -0.005408216267824173, + -0.012266911566257477, + -0.026578309014439583, + -0.03475625067949295, + -0.013206269592046738, + 0.007197140716016293, + -0.006033303681761026, + -0.0040337140671908855, + -0.0443708561360836, + 0.003140978515148163, + -0.011686719954013824, + 0.029976574704051018, + 0.006485715042799711, + 0.008861738257110119, + 0.004313449375331402, + 0.026688821613788605, + -0.023746419697999954, + -0.01201825775206089, + 0.021632865071296692, + 0.013047407381236553, + 0.03655208274722099, + -0.01862139254808426, + 0.026965102180838585, + 0.019270654767751694, + -0.007839496247470379, + -0.023553023114800453, + 0.0027075614780187607, + 0.00799145083874464, + 0.006174898240715265, + 0.022489337250590324, + -0.013192455284297466, + 0.0013347864151000977, + -0.001856268267147243, + -0.014269954524934292, + -0.015347453765571117, + -0.040475282818078995, + -0.0002525388263165951, + -0.010001400485634804, + -0.016176298260688782, + 0.011251576244831085, + -0.012702055275440216, + -0.0019115246832370758, + 0.0050628636963665485, + 0.009808003902435303, + -0.022088728845119476, + 0.00882029626518488, + 0.003750525414943695, + 0.016867002472281456, + 0.025031130760908127, + 0.027324268594384193, + -0.008889366872608662, + -0.0016076146857813, + -0.013890067115426064, + 0.000844817899633199, + 0.018800975754857063, + 0.0037436182610690594, + 0.01457386463880539, + 0.016701234504580498, + -0.030777791514992714, + -0.01514024194329977, + 0.0050179678946733475, + 0.018248412758111954, + 0.008322988636791706, + 0.014069650322198868, + -0.0064304587431252, + -0.02258603647351265, + -0.013247711583971977, + -0.0036814548075199127, + 0.02179863303899765, + 0.003726350609213114, + 0.015388895757496357, + 0.021232254803180695, + 0.0011560666607692838, + -0.008171034045517445, + 0.014042021706700325, + 0.005663776770234108, + -0.003327468875795603, + -0.008702876046299934, + 0.02045866660773754, + 3.51557791873347e-5, + 0.005864080972969532, + -0.006799985654652119, + -0.014863960444927216, + 0.019975174218416214, + -0.004738232586532831, + -0.0013762286398559809, + -0.028457025066018105, + 0.02092834562063217, + 0.008903181180357933, + 0.016355881467461586, + -0.019864661619067192, + 0.011244668625295162, + -0.02011331357061863, + -0.01107889972627163, + 0.01245340146124363, + -0.0010515975300222635, + 0.00558779900893569, + -6.475354166468605e-5, + 0.011728161945939064, + -0.026523051783442497, + -0.005301157012581825, + 0.02077639102935791, + 0.0013839991297572851, + 0.0007243762956932187, + 0.00042413570918142796, + -0.012273818254470825, + 0.00041895543108694255, + -0.020320525392889977, + 0.043265730142593384, + -0.004199483431875706, + 0.016521651297807693, + 0.002730009378865361, + 0.0018476344412192702, + -0.039370156824588776, + -0.0027075614780187607, + 0.01904962956905365, + 0.009262346662580967, + -0.0009764834539964795, + -0.015278383158147335, + -0.008571642450988293, + 0.03649682551622391, + 0.011299924924969673, + -0.02167430706322193, + 0.0014815611066296697, + 0.0030062913428992033, + 0.0024623614735901356, + -0.006057478487491608, + 0.009082763455808163, + 0.004158040974289179, + 0.000261388486251235, + 0.015071171335875988, + 0.012004443444311619, + -0.016148671507835388, + 0.01471200492233038, + -0.031634263694286346, + -0.01374501921236515, + 0.023939816281199455, + 0.016286810860037804, + 0.009469558484852314, + -0.021149370819330215, + -0.006485715042799711, + -0.014394281432032585, + 0.0070520928129553795, + 0.0014021301176398993, + 0.01297833677381277, + -0.005812278017401695, + -0.004741686396300793, + -0.004979979246854782, + 0.00789475254714489, + -0.003462156280875206, + 0.010699012316763401, + 0.022834690287709236, + -0.020085686817765236, + 0.011217040941119194, + -0.026965102180838585, + 0.0030080180149525404, + -0.01239123847335577, + -0.0024330064188688993, + 0.02235119603574276, + -0.015651363879442215, + 0.0229728315025568, + 0.01987847499549389, + 0.019588379189372063, + -0.012425773777067661, + 0.014477165415883064, + 0.012757311575114727, + 0.008640713058412075, + -0.001075772219337523, + -0.027973530814051628, + -0.0076391915790736675, + 0.008979158475995064, + -0.004171854816377163, + -0.011168691329658031, + 0.01747482270002365, + -0.011313739232718945, + 0.00852329283952713, + 0.0038886661641299725, + -0.014104185625910759, + -0.020845461636781693, + -0.00883411057293415, + -0.006620402447879314, + -0.022724177688360214, + -0.01889767497777939, + 0.01335131749510765, + 8.431451533397194e-6, + 0.042519766837358475, + 0.025279784575104713, + -0.008488758467137814, + 0.0033999928273260593, + 0.006292317993938923, + -0.028222184628248215, + -0.0019771414808928967, + 0.011887024156749249, + -0.012888545170426369, + 0.021701933816075325, + -0.03669022023677826, + 0.017612963914871216, + -0.023304369300603867, + -0.028622793033719063, + -0.01333750318735838, + 0.017847804352641106, + 0.013385852798819542, + -0.007791146636009216, + -0.0013261525891721249, + 0.0006022079614922404, + 0.011306832544505596, + -0.0015212766593322158, + -0.009593885391950607, + -0.0035985703580081463, + -0.001297660986892879, + -0.009055135771632195, + -0.010892409831285477, + -0.02290376089513302, + -0.007048639003187418, + 0.029396383091807365, + -0.005933151580393314, + -0.015375081449747086, + 0.01366904191672802, + -0.00846112985163927, + -0.02007187157869339, + 0.007798053324222565, + -0.015319825150072575, + 0.0060781994834542274, + -0.007570120971649885, + 0.023635907098650932, + 0.004537928383797407, + -0.02329055406153202, + -0.007231676019728184, + 0.0028128940612077713, + 0.016756489872932434, + 0.009062042459845543, + -0.014394281432032585, + -0.0063786557875573635, + -0.005135387647897005, + -0.013289154507219791, + -0.021025044843554497, + 0.002583234803751111, + -0.012722776271402836, + 0.020569179207086563, + 0.008695969358086586, + 0.025114014744758606, + 0.029866062104701996, + 0.021425653249025345, + 0.0005758748739026487, + -0.03072253428399563, + 0.01071973331272602, + -0.005781196523457766, + -0.021301325410604477, + 0.013586157001554966, + -0.003981911111623049, + 0.0023535755462944508, + 0.010236239992082119, + 0.010077378712594509, + 0.009020600467920303, + 0.004976525902748108, + -0.011417345143854618, + 0.004313449375331402, + -0.0007295566028915346, + 0.02160523645579815, + -0.027310455217957497, + 0.006043664179742336, + -0.010512522421777248, + -0.009448837488889694, + 0.00597114022821188, + -0.04166329279541969, + 0.006941580213606358, + -0.017447195947170258, + 0.0009911609813570976, + 0.009959958493709564, + -0.003957736771553755, + -0.004209843929857016, + 0.002041031839326024, + 0.002847429132089019, + 0.01420088391751051, + 0.007984544150531292, + 0.01378646120429039, + 0.0004843565111514181, + 0.009649141691625118, + 0.017612963914871216, + 0.014187069609761238, + 0.025542251765727997, + -0.024368053302168846, + 0.012101142667233944, + -0.009586977772414684, + 0.0014720639446750283, + 0.001968507654964924, + -0.02077639102935791, + 0.002786992583423853, + -0.012135677970945835, + -0.01070591900497675, + 0.00770826218649745, + -0.008806481957435608, + -0.02094215899705887, + -0.012791846878826618, + 0.0060229431837797165, + 0.001537680858746171, + 0.01107889972627163, + -0.004351438023149967, + 0.0003671525919344276, + 0.019740333780646324, + 0.0080536138266325, + 0.0003531226539053023, + 0.0041649481281638145, + -0.010553964413702488, + 0.03757432475686073, + 0.010388195514678955, + 0.03028048388659954, + 0.004579370841383934, + -0.004565556533634663, + 0.005926244426518679, + 0.022088728845119476, + -0.015499408356845379, + -0.017447195947170258, + -0.006641123443841934, + -0.02341488189995289, + -0.01681174710392952, + -0.011044364422559738, + 0.006979568861424923, + -0.025832347571849823, + -0.03439708426594734, + 0.017764918506145477, + 0.014946844428777695, + 0.0011802412336692214, + -0.011797232553362846, + 0.013855531811714172, + 0.01811027154326439, + 0.0033430096227675676, + 0.01027077529579401, + 0.006057478487491608, + -0.003522592829540372, + 0.02556988038122654, + -0.0068207066506147385, + -0.0034310745541006327, + -0.017972130328416824, + 0.002046212088316679, + 0.012405052781105042, + 0.029589779675006866, + -0.000377729011233896, + 0.012757311575114727, + -0.013800275512039661, + 0.0013149286387488246, + 0.01559610664844513, + -0.0036918155383318663, + 0.024920618161559105, + 0.006257782690227032, + -0.013537807390093803, + 0.010712826624512672, + -0.01103745773434639, + -0.014097278006374836, + 0.0030235587619245052, + -0.006281957030296326, + -0.013012872077524662, + -0.002393291098996997, + -0.000927270739339292, + -0.004002632573246956, + 0.01649402268230915, + -0.012812567874789238, + -2.528086224629078e-5, + -0.018234597519040108, + 0.009227811358869076, + 0.02293138951063156, + -0.009586977772414684, + 0.009241625666618347, + -0.004396333824843168, + 0.0035882098600268364, + 0.019726520404219627, + -0.0004016878083348274, + -0.016148671507835388, + 0.0176682211458683, + 0.017585335299372673, + -0.022710362449288368, + -0.004845291841775179, + 0.003957736771553755, + 0.005342599004507065, + -0.017336681485176086, + 0.006437365896999836, + -0.01500210165977478, + -0.008122684434056282, + -0.0013796822167932987, + -0.000121736666187644, + 0.009690583683550358, + 0.020513923838734627, + -0.0031893278937786818, + -0.001861448516137898, + -0.012550100684165955, + -0.02686840482056141, + 0.00573284737765789, + 0.027780134230852127, + -0.0080536138266325, + 0.00032247265335172415, + 0.009006786160171032, + 0.0005573121597990394, + 0.006050571333616972, + -0.03403791785240173, + 0.023594465106725693, + 0.0080536138266325, + -0.01076117530465126, + 0.016563093289732933, + 0.00398536492139101, + -0.00966295599937439, + -0.000486946664750576, + 0.007197140716016293, + 0.004527567885816097, + 0.006775810848921537, + 0.0015584019711241126, + -0.013758833520114422, + 0.031357984989881516, + -0.03530881181359291, + -0.005256261210888624, + -0.0016654612263664603, + -0.007224768865853548, + -0.00401644641533494, + -0.007618470583111048, + 0.010388195514678955, + 0.025086386129260063, + 0.00449648592621088, + -0.006340667139738798, + 0.005926244426518679, + 0.01196300145238638, + -0.001904617645777762, + -0.03420368582010269, + 0.0036918155383318663, + -0.011251576244831085, + -0.012985244393348694, + 0.006133455783128738, + 0.030998816713690758, + -0.014069650322198868, + 0.017295239493250847, + -0.0014522061683237553, + -0.007715168874710798, + 0.011203226633369923, + -0.006699833553284407, + 0.0037298041861504316, + -0.01822078414261341, + 0.02840176783502102, + 0.019657449796795845, + 0.025086386129260063, + -0.010699012316763401, + 0.022130170837044716, + 0.016272997483611107, + -0.01736431010067463, + -0.005805371329188347, + 0.010540150105953217, + 0.012377424165606499, + -0.02510020136833191, + -0.008606177754700184, + 0.0022534234449267387, + -0.011907745152711868, + -0.0060229431837797165, + -0.01743338070809841, + -0.0003291638568043709, + 0.006713647395372391, + -0.006506436038762331, + -0.002543519251048565, + 0.0034397083800286055, + -0.012356703169643879, + 0.012950709089636803, + 0.004779675044119358, + -0.00973893329501152, + 0.011838674545288086, + 0.015402710065245628, + 0.017447195947170258, + -0.015720434486865997, + -0.009946144185960293, + -0.00487982714548707, + 0.019146328791975975, + -0.008986065164208412, + -0.0028180743101984262, + -0.0002818937646225095, + 0.023166228085756302, + -0.0049074552953243256, + -0.01896674558520317, + 0.00579501036554575, + -0.011887024156749249, + -0.0007278298144228756, + 0.013420388102531433, + -0.038154516369104385, + 0.005280435550957918, + 0.004973072092980146, + -0.01892530359327793, + -0.012384330853819847, + -0.010560871101915836, + -0.009552442468702793, + 0.001709493575617671, + 0.0021377303637564182, + 0.0038886661641299725, + -0.02207491546869278, + -0.006689473055303097, + 0.02077639102935791, + -0.0007273981464095414, + 0.0023121333215385675, + -0.010726640932261944, + -0.01991991698741913, + 0.010367474518716335, + 0.0329880453646183, + -0.004969618748873472, + 0.010906224139034748, + -0.006330306641757488, + -0.01333750318735838, + 0.0005797600606456399, + 0.0066342162899672985, + 0.022876132279634476, + -0.026564493775367737, + 0.023428695276379585, + -0.02077639102935791, + 0.02081783302128315, + -0.016977516934275627, + 0.013793368823826313, + -0.0031012631952762604, + -0.005169922951608896, + 0.021218441426753998, + -0.007556307129561901, + 0.011707440949976444, + -0.007266211323440075, + -0.011334460228681564, + -0.001734531600959599, + 0.02422991394996643, + -0.009607699699699879, + 0.001005838392302394, + 0.016245368868112564, + -0.012798753567039967, + -0.001729351351968944, + 0.017502451315522194, + -0.028733305633068085, + 0.0013701850548386574, + 0.0017500724643468857, + 0.0038783056661486626, + -0.004082063678652048, + 0.01099601574242115, + -0.010284589603543282, + 0.005080131348222494, + 0.0041338661685585976, + 0.00011321077909087762, + -0.01292308047413826, + 0.023732606321573257, + 0.005518728867173195, + -0.006547878496348858, + 0.016839375719428062, + 0.0017379851778969169, + 0.016480209305882454, + -0.009262346662580967, + -0.001857995055615902, + -0.03845842555165291, + -0.0069761150516569614, + 0.014684377238154411, + -0.020085686817765236, + -0.010139541700482368, + 0.007210954558104277, + -0.025086386129260063, + -0.0051181199960410595, + -0.014781075529754162, + 0.007908565923571587, + -0.0027990799862891436, + -0.002355302218347788, + 0.013116477988660336, + 0.025279784575104713, + -0.0015704892575740814, + -0.006299224682152271, + -0.016245368868112564, + 0.006054024677723646, + 0.006212886888533831, + 0.0066791120916605, + -0.01917395554482937, + -0.016742676496505737, + -0.006423551589250565, + -0.023180041462183, + 0.011907745152711868, + -0.03392740339040756, + 0.022765619680285454, + 0.010595406405627728, + 0.007818774320185184, + -0.01634206809103489, + 0.0034984182566404343, + 0.001854541478678584, + 0.02690984681248665, + -0.004558649379760027, + -0.011141063645482063, + 0.01076117530465126, + -0.027047988027334213, + 0.03202106058597565, + -0.007411259226500988, + 0.01297833677381277, + 0.012570821680128574, + 0.01471200492233038, + -0.007784239482134581, + 0.00012184458319097757, + -0.001542861107736826, + -0.003230770118534565, + -0.01708802953362465, + 0.00307881529442966, + -0.003664187155663967, + 0.0026056827045977116, + 0.0128609174862504, + -0.005846813321113586, + 0.013586157001554966, + 0.00877885427325964, + -0.005280435550957918, + 0.02184007503092289, + 0.00801217183470726, + 0.02443712390959263, + 0.0030978096183389425, + -0.013192455284297466, + 0.013268432579934597, + 0.003702176036313176, + 0.0077497041784226894, + 0.02576327696442604, + -0.0013330596266314387, + 0.006641123443841934, + 0.026661192998290062, + 0.005643055774271488, + -0.011728161945939064, + -0.010105006396770477, + 0.009766560979187489, + -0.005297703202813864, + -0.0016335160471498966, + 0.025556065142154694, + 0.012114956974983215, + 0.007604656275361776, + 0.005594706162810326, + -0.013662134297192097, + -0.013164827600121498, + 0.006623855791985989, + 0.000161560092237778, + 0.03354061022400856, + -0.011334460228681564, + -0.006271596532315016, + 0.01029149629175663, + 0.0059227910824120045, + -0.0036849083844572306, + -0.020845461636781693, + -0.0026177698746323586, + 0.012128770351409912, + 0.01838655397295952, + 0.013192455284297466, + -0.003895573318004608, + -0.0062232473865151405, + -0.014228512533009052, + -0.01621774025261402, + -0.014960658736526966, + 0.02595667354762554, + 0.01372429821640253, + -0.01453242264688015, + -0.005715579725801945, + 0.025749463587999344, + 0.012329074554145336, + -0.0004955804906785488, + 0.025072572752833366, + -0.0019719612319022417, + 0.02603955939412117, + -0.009400487877428532, + 0.01689463108778, + 0.003961190115660429, + 0.006302678491920233, + -0.008550921455025673, + 0.015029729343950748, + 0.004299635533243418, + -0.007204047869890928, + 0.020196199417114258, + -0.01857995055615902, + -0.002474448876455426, + 0.013593063689768314, + 0.019546937197446823, + 0.0075632138177752495, + -0.005860627628862858, + 0.001145706046372652, + -0.006130002439022064, + -0.01917395554482937, + 0.013123384676873684, + -0.0029544883873313665, + 0.004351438023149967, + -0.008074335753917694, + -0.012418866157531738, + -0.006934673059731722, + 0.008661434054374695, + 0.0017673401162028313, + -0.01857995055615902, + 0.020127128809690475, + 0.007963822223246098, + -0.0013580976519733667, + 0.013586157001554966, + 0.005342599004507065, + 0.01873190514743328, + -0.015527036972343922, + 0.011707440949976444, + -0.03942541033029556, + 0.004644987639039755, + 0.013261525891721249, + -0.004147680476307869, + 0.0009359045652672648, + -0.01386243849992752, + 0.008212476037442684, + -0.00016285516903735697, + 0.006043664179742336, + 0.020168570801615715, + 0.0068966844119131565, + 0.006689473055303097, + 0.005422030109912157, + -0.027269013226032257, + 0.01853850856423378, + -0.004769314546138048, + 0.0014228512300178409, + -0.008274639956653118, + -0.0015437245601788163, + 0.0018959838198497891, + -0.004941990599036217, + 0.006537517998367548, + -0.01203897874802351, + -0.03710464388132095, + -0.01514024194329977, + -0.005301157012581825, + 0.004140773322433233, + -0.005781196523457766, + 0.012674427591264248, + -0.004012993071228266, + 0.01164527703076601, + -0.008316081948578358, + 0.005408216267824173, + 0.010429637506604195, + 0.011583114042878151, + -0.023318182677030563, + 0.007735890336334705, + -0.01924302615225315, + 0.022516965866088867, + -0.003417260479182005, + 0.01471200492233038, + 0.0015670357970520854, + 0.03826502710580826, + -0.007183326408267021, + 0.009393581189215183, + -0.0013287427136674523, + -0.003512232331559062, + 0.008910087868571281, + -0.005698312073945999, + -0.01022933330386877, + 0.02054155059158802, + 0.005484193563461304, + 0.02870567888021469, + -0.0229728315025568, + 0.013883160427212715, + -0.001295934314839542, + -0.013855531811714172, + -0.041497524827718735, + -0.007722076028585434, + -0.0051630157977342606, + -0.00987707357853651, + 0.006064385175704956, + -0.002334581222385168, + -0.01889767497777939, + -0.0028560629580169916, + -0.012080421671271324, + -0.0029441278893500566, + 0.020085686817765236, + 0.003912840969860554, + -0.01331678219139576, + 0.0027593644335865974, + -0.0010161990066990256, + 0.0007943101227283478, + -0.002339761471375823, + -0.006699833553284407, + 0.018883859738707542, + -0.018483251333236694, + 0.016148671507835388, + -0.003895573318004608, + -0.0008051024051383138, + -0.00017235234554391354, + -0.021536165848374367, + 0.026536865159869194, + -0.0009764834539964795, + -0.014269954524934292, + -0.02222687005996704, + 8.520487608620897e-5, + -0.004558649379760027, + 0.0037988745607435703, + -0.008419687859714031, + 0.0006311312317848206, + 0.020361967384815216, + -0.019588379189372063, + 0.010926945134997368, + -0.00624396838247776, + 0.014601492322981358, + -0.01583094708621502, + -0.005646509118378162, + 0.009690583683550358, + 0.0237602349370718, + 0.004959258250892162, + -0.029202984645962715, + 0.031164586544036865, + -0.005770836025476456, + 0.0028405222110450268, + 0.007742797024548054, + 0.009524814784526825, + 0.022986644878983498, + -1.0326841220376082e-5, + 0.013834810815751553, + 0.004952351097017527, + -0.02215779945254326, + 0.007653005421161652, + 0.00048608327051624656, + -0.025127828121185303, + -0.0018908034544438124, + -0.014753447845578194, + 0.006561692338436842, + 0.0007399171590805054, + 0.010975293815135956, + -0.02266892045736313, + -0.00844731554389, + 0.002503803698346019, + -0.01583094708621502, + -0.013075035996735096, + 0.009041321463882923, + 0.005984954070299864, + -0.0011793778976425529, + -0.009096577763557434, + -0.011382809840142727, + 0.0047762212343513966, + 0.0146291209384799, + 0.019809404388070107, + -0.012867824174463749, + 0.02544555254280567, + -0.011686719954013824, + 0.002933767158538103, + 0.005432390607893467, + 0.010332939215004444, + -0.03884521871805191, + -0.014228512533009052, + 0.001811372465454042, + -0.006651483941823244, + 0.009359045885503292, + -0.006958847399801016, + -0.00936595257371664, + -2.7452804715721868e-5, + 0.021315140649676323, + -0.0037919676396995783, + -0.01247412245720625, + -0.0013986765407025814, + 0.008474944159388542, + -0.019546937197446823, + 0.0015031456714496017, + 0.03660733625292778, + 0.015803318470716476, + -0.009483372792601585, + 0.019698891788721085, + -0.011672905646264553, + -0.0033309224527329206, + -0.0004405399376992136, + -0.00016933052393142134, + -0.0035847562830895185, + 0.03215920180082321, + -0.015223126858472824, + -0.002448547398671508, + 0.0035916632041335106, + 0.0031478856690227985, + 0.016203926876187325, + 0.00423401826992631, + -0.014311396516859531, + 0.005511821713298559, + -0.00040319873369298875, + 0.028733305633068085, + -0.004344531334936619, + -0.005805371329188347, + 0.026757892221212387, + -0.02341488189995289, + 0.008792667649686337, + -0.017778733745217323, + -0.005943512078374624, + -0.022254498675465584, + 0.009676769375801086, + -0.014408095739781857, + -0.0115900207310915, + 0.00579501036554575, + -0.005011061206459999, + 0.008495665155351162, + -0.022641293704509735, + 0.017999758943915367, + 0.00018012277723755687, + -0.012177119962871075, + -0.004841838497668505, + 0.016134856268763542, + -0.00020052013860549778, + -0.009752747602760792, + -0.0069519407115876675, + -0.019533121958374977, + 0.011990630067884922, + -0.016701234504580498, + -0.025114014744758606, + 0.006344120483845472, + 0.005111213307827711, + 0.003861038014292717, + 0.004306542221456766, + -0.01653546467423439, + -0.011866303160786629, + 0.009925423189997673, + -0.007031371351331472, + 0.004430869128555059, + -0.011969908140599728, + 0.027780134230852127, + 0.004151133820414543, + 0.026011930778622627, + 0.022171612828969955, + -0.0009315876523032784, + -0.03063965030014515, + 0.01366904191672802, + 0.014394281432032585, + -0.009932330809533596, + -0.01645258069038391, + -0.0047762212343513966, + -0.006043664179742336, + -0.008509479463100433, + 0.00486946664750576, + -0.014242325909435749, + -0.0012354976497590542, + -0.006299224682152271, + -0.026136256754398346, + 0.0061230952851474285, + 0.004341077525168657, + 0.008654527366161346, + 0.014504794031381607, + 0.0036745478864759207, + 0.0156099209561944, + 0.01386243849992752, + 0.0021826261654496193, + 0.008378244936466217, + 0.008350617252290249, + 0.005611973814666271, + -0.01563754864037037, + -0.015167870558798313, + -0.0013978132046759129, + -0.004313449375331402, + -0.008730504661798477, + -0.00036348323919810355, + 0.006734368856996298, + -0.020334340631961823, + -0.030308112502098083, + -0.009586977772414684, + -0.004123505670577288, + 0.004952351097017527, + 0.009849445894360542, + -0.02780776284635067, + -0.004358345177024603, + -0.009117298759520054, + -0.00846803653985262, + 0.001992682460695505, + -1.6829176274768542e-6, + -0.0007515728357248008, + 0.007027918007224798, + -0.0025694207288324833, + 0.040392398834228516, + -0.007162605412304401, + 0.0031876012217253447, + -0.02222687005996704, + 0.015402710065245628, + 0.017889246344566345, + 0.007031371351331472, + 0.00899297185242176, + 0.02062443643808365, + -0.012377424165606499, + 0.004897094797343016, + -0.01798594370484352, + 0.002731736283749342, + 0.015527036972343922, + 0.011237761937081814, + -0.0026523051783442497, + 0.006033303681761026, + -0.006703286897391081, + -0.005539449863135815, + -0.021190812811255455, + 0.011417345143854618, + -0.016438767313957214, + 0.016604535281658173, + 0.022986644878983498, + 0.0022775980178266764, + 0.004296181723475456, + 0.010733547620475292, + -0.013979858718812466, + -0.014615306630730629, + -0.007273118011653423, + -0.009773468598723412, + -0.008164127357304096, + -0.01368976291269064, + -0.009372860193252563, + 0.008136498741805553, + -0.012771125882863998, + -0.012273818254470825, + 0.017378125339746475, + -0.0033550970256328583, + -0.004717511590570211, + -0.010816432535648346, + 0.007418165914714336, + 0.015803318470716476, + -0.002648851601406932, + 0.011161784641444683, + -0.0023328543175011873, + -0.0021394570358097553, + -0.009179462678730488, + 0.006330306641757488, + 0.03028048388659954, + -0.022199241444468498, + 0.02045866660773754, + 0.014187069609761238, + -0.01019479800015688, + 0.0035467674024403095, + -0.006174898240715265, + -0.02812548540532589, + 0.008488758467137814, + 0.016880817711353302, + 0.01327534019947052, + -0.01692225970327854, + 0.0054496582597494125, + 0.007577028125524521, + -0.018041200935840607, + 0.0035743957851082087, + 0.02446475252509117, + -0.02030671201646328, + 0.010450358502566814, + -0.026951288804411888, + -0.0011845581466332078, + -0.01371048390865326, + 0.005394401960074902, + -0.036745477467775345, + -0.009870166890323162, + 0.018124084919691086, + 0.0005901206168346107, + 0.0077497041784226894, + 0.016093414276838303, + -0.012874731793999672, + -0.0059676868841052055, + 0.01892530359327793, + -0.010471079498529434, + -0.0003263578691985458, + -0.014974473044276237, + -0.00509739900007844, + 0.036192916333675385, + 0.021398024633526802, + 0.013979858718812466, + -0.016839375719428062, + -0.01013263501226902, + -0.006724007893353701, + 0.004765860736370087, + 0.018566137179732323, + -0.006074745673686266, + 0.0019374260446056724, + -0.009414302185177803, + -0.027669621631503105, + -0.009283068589866161, + -0.014739633537828922, + -0.00023894058540463448, + -0.0041200523264706135, + 0.026799334213137627, + 0.006706740707159042, + -0.012170213274657726, + 7.808198279235512e-5, + -0.009773468598723412, + 0.0041649481281638145, + -0.0018597218440845609, + -0.009835631586611271, + -0.001952966907992959, + 0.0024071051739156246, + -0.02096978761255741, + 0.0009445383911952376, + 0.009814910590648651, + -0.01755770854651928, + 0.015306010842323303, + 0.0032566715963184834, + 0.013523994013667107, + -0.02034815400838852, + 0.010305310599505901, + -0.020099500194191933, + 0.004641534294933081, + 0.0014884681440889835, + -8.585240721004084e-5, + 0.0267026349902153, + -0.022516965866088867, + 0.004613905679434538, + -0.015775689855217934, + -0.022323569282889366, + -0.015858575701713562, + 0.0020755669102072716, + 0.006672205403447151, + 0.008702876046299934, + 0.0229728315025568, + -0.007452701218426228, + 0.016134856268763542, + 0.009918516501784325, + 0.007273118011653423, + -0.017820175737142563, + -0.007480329368263483, + -0.004299635533243418, + 0.0059918612241744995, + -0.026992730796337128, + 0.006040210835635662, + -0.0004973072209395468, + -0.012184026651084423, + 0.006012582685798407, + -0.004448136780411005, + -0.008357523940503597, + 0.012867824174463749, + 0.006423551589250565, + -0.010395102202892303, + -0.0057363007217645645, + -0.01245340146124363, + -0.01764059253036976, + -0.007998357526957989, + -0.013696669600903988, + -0.01146569475531578, + 0.018427995964884758, + -0.007431980222463608, + -0.013454923406243324, + -0.010464172810316086, + 0.010816432535648346, + 0.0031910547986626625, + -0.010056656785309315, + -0.0016775485128164291, + 0.023856932297348976, + -0.00933141727000475, + 0.029396383091807365, + 0.012460309080779552, + -0.02482391893863678, + 0.0017871978925541043, + -0.00210146838799119, + -0.006530610844492912, + -0.0022344288881868124, + 0.018800975754857063, + -0.017861617729067802, + -0.0027248291298747063, + 0.03243548050522804, + 0.010029029101133347, + -0.0009574890718795359, + -0.0003311064501758665, + -0.014463352039456367, + 0.012501751072704792, + 0.011555486358702183, + -0.014560050331056118, + 0.0026954743079841137, + 0.01838655397295952, + -0.013178640976548195, + -0.010056656785309315, + -0.022088728845119476, + -0.0020444851834326982, + 0.01029149629175663, + 0.00978037528693676, + -0.0008068291936069727, + -0.017723476514220238, + -0.009732025675475597, + 0.022475523874163628, + 0.018483251333236694, + 0.0039024802390486, + 0.005328785162419081, + -0.002042758511379361, + -0.0023086797446012497, + 0.0039750044234097, + 0.009448837488889694, + -0.00346560962498188, + -0.0023881106171756983, + -0.038071632385253906, + 0.0049937935546040535, + -0.02505875937640667, + 0.012363609857857227, + 0.013558529317378998, + -0.0115900207310915, + 0.019961358979344368, + -0.002640217775478959, + -0.013019779697060585, + 0.003767792833968997, + 0.013675948604941368, + -0.0013321962906047702, + 0.0015091892564669251, + 0.0016715048113837838, + 0.029368754476308823, + 0.019035816192626953, + -0.003503598505631089, + 0.0011552032083272934, + -0.016715047881007195, + -0.003260125173255801, + 0.004534475039690733, + -0.002742096781730652, + 0.009690583683550358, + -0.009711304679512978, + -0.017101842910051346, + -0.0015342272818088531, + 0.003367184428498149, + -0.006264689844101667, + 0.006161083932965994, + -0.009013693779706955, + -0.000710562220774591, + 0.009435023181140423, + 0.010878595523536205, + -0.016314439475536346, + -0.012936894781887531, + 0.016148671507835388, + 0.004289275035262108, + -0.02702035941183567, + 0.005532542709261179, + 0.004555196035653353, + -0.005422030109912157, + 0.006803438998758793, + 0.001661144313402474, + 0.0002024627465289086, + -0.009435023181140423, + 0.014877774752676487, + 0.006074745673686266, + 0.003028739243745804, + 0.017806362360715866, + -0.00031837160349823534, + 0.002897505182772875, + 0.0012579455506056547, + -0.002885418012738228, + 0.00801217183470726, + -0.005314970854669809, + -0.0032894799951463938, + 0.009545535780489445, + 0.0027490039356052876, + -0.005377134308218956, + 0.013344410806894302, + 0.0006993382703512907, + -0.008095056749880314, + -0.0247410349547863, + -0.003615838009864092, + -0.01708802953362465, + -0.006958847399801016, + -0.002360482467338443, + -0.0326012521982193, + 0.0009445383911952376, + 0.012301446869969368, + 0.012702055275440216, + -0.02003042958676815, + -0.006551331840455532, + 0.02942400984466076, + 0.02443712390959263, + -0.017447195947170258, + -0.006703286897391081, + 0.0023535755462944508, + -0.036386311054229736, + 0.01107889972627163, + -0.011438066139817238, + -0.006924312561750412, + 0.003802328137680888, + -0.0075632138177752495, + 0.018358925357460976, + -0.010408916510641575, + 0.0047071510925889015, + 0.007280025165528059, + 0.004700243938714266, + -0.003280846169218421, + 0.004309996031224728, + -0.004037167876958847, + -0.003999178763478994, + -0.0010067017283290625, + -0.0071073491126298904, + 0.00555671751499176, + -0.013068128377199173, + 0.0020893809851258993, + 0.024298982694745064, + -0.0102155189961195, + -0.02463052235543728, + -0.0049937935546040535, + 0.013268432579934597, + 0.013075035996735096, + 0.00577428936958313, + -0.014656748622655869, + -0.013109571300446987, + -0.008751225657761097, + -0.016093414276838303, + 0.022889945656061172, + 0.030529137700796127, + 0.004821117036044598, + 0.011790325865149498, + 0.010381287895143032, + 0.020555365830659866, + -0.015375081449747086, + -0.0038817592430859804, + -0.015361267141997814, + 0.010243147611618042, + 0.0006194755551405251, + 0.017585335299372673, + -0.015209312550723553, + -0.009234718978404999, + 0.010305310599505901, + -0.01467056293040514, + -0.007860217243432999, + -0.02812548540532589, + -0.009013693779706955, + -0.0025055306032299995, + 0.0017474823398515582, + 0.00969749130308628, + 0.00893771555274725, + -0.007673726882785559, + 0.008675248362123966, + 0.003854131093248725, + -0.010001400485634804, + 0.008371338248252869, + -0.023387253284454346, + -0.023262927308678627, + -0.004347984679043293, + -0.012736590579152107, + -0.012570821680128574, + -0.007887844927608967, + 0.018165526911616325, + 0.019892288371920586, + 0.01630062609910965, + 0.0010222425917163491, + -0.02034815400838852, + -0.0005650825914926827, + -0.0033447365276515484, + 0.0003628357080742717, + -0.0028508827090263367, + -0.0055601708590984344, + 0.002246516291052103, + 7.619334064656869e-5, + -0.003715990111231804, + -0.026495423167943954, + 0.016784118488430977, + 0.007017557509243488, + -0.02812548540532589, + -0.013530900701880455, + -0.005100852344185114, + 0.017916874960064888, + 0.0176682211458683, + 0.019063442945480347, + -0.007079720962792635, + 0.015844760462641716, + -0.01743338070809841, + 0.01192155946046114, + -0.013814089819788933, + 0.016908446326851845, + 0.009255439974367619, + 0.0033861787524074316, + 0.021342769265174866, + -0.007963822223246098, + -0.004037167876958847, + -0.00023850888828746974, + -0.008813389576971531, + -0.010975293815135956, + -0.002395017771050334, + -0.025473181158304214, + 0.007887844927608967, + -0.005874441470950842, + 0.02757292240858078, + 0.0012501750607043505, + 0.007425073068588972, + -0.006130002439022064, + -0.004586277529597282, + 0.005995315033942461, + 0.019118700176477432, + -0.0034604293759912252, + 0.016825560480356216, + 0.014283768832683563, + 0.009455744177103043, + 0.010533243417739868, + -0.019643634557724, + 0.0005832135793752968, + -0.00661694910377264, + 0.006064385175704956, + -0.01190083846449852, + -0.006620402447879314, + 0.0035433140583336353, + -0.028014972805976868, + -0.013910788111388683, + -0.027351897209882736, + 0.02840176783502102, + -0.009068950079381466, + -0.0025763276498764753, + -0.011051272042095661, + 0.0075079575181007385, + 0.006392470095306635, + 0.0014530695043504238, + -0.016673605889081955, + 0.0030235587619245052, + -0.0073076533153653145, + 0.004196029622107744, + -0.027628179639577866, + 0.028843818232417107, + 0.023221485316753387, + -0.0014539329567924142, + 0.005912430118769407, + 0.028374139219522476, + -0.008157219737768173, + 0.004534475039690733, + 0.02510020136833191, + -0.0008918721578083932, + 0.004941990599036217, + 0.004565556533634663, + -0.00704173231497407, + 0.0029976575169712305, + -0.02816692925989628, + -0.006202526390552521, + -0.013586157001554966, + -0.0033378293737769127, + 0.004482672084122896, + -0.008682155050337315, + -0.001542861107736826, + -0.015844760462641716, + -0.013641413301229477, + 0.004423961974680424, + 0.026371097192168236, + 0.049620211124420166, + 0.02293138951063156, + 0.010823339223861694, + 0.014891588129103184, + 0.03862419351935387, + -0.0214118380099535, + 0.00848185084760189, + -0.0009963412303477526, + -0.043072331696748734, + -0.02007187157869339, + -0.0045068468898534775, + -0.003408626653254032, + 0.020955974236130714, + 0.006043664179742336, + -0.017695847898721695, + -0.007259304169565439, + -0.011120341718196869, + -0.014477165415883064, + -0.007825681939721107, + 0.0015100527089089155, + -0.00852329283952713, + -0.0004800395981874317, + -0.018510879948735237, + 0.0032031419686973095, + 0.0048936414532363415, + 0.0003943490737583488, + 0.002933767158538103, + -0.014408095739781857, + -0.01743338070809841, + 0.00684488145634532, + 0.02934112586081028, + -0.0136483209207654, + -0.013565436005592346, + -0.016121042892336845, + -0.0027058348059654236, + 0.01366904191672802, + -0.00026268354849889874, + -0.0010939032072201371, + 0.0027023812290281057, + -0.023580651730298996, + -0.0024260994978249073, + -0.01413872092962265, + -0.012736590579152107, + -0.006603134796023369, + -0.011914651840925217, + -0.014242325909435749, + 0.007756611332297325, + -0.01815171353518963, + 0.0017241711029782891, + -0.013171734288334846, + -0.00011882275430252776, + 0.0033620039466768503, + -0.030059458687901497, + -0.004126959480345249, + -0.0017699302406981587, + 0.019063442945480347, + 0.0341760590672493, + -0.006623855791985989, + -0.011790325865149498, + -0.01657690666615963, + -0.016397323459386826, + 0.006703286897391081, + 0.008910087868571281, + 0.018994372338056564, + -0.018635205924510956, + 0.02422991394996643, + -0.001127575058490038, + 0.002384657273069024, + -0.002880237763747573, + -0.016107227653265, + 0.009068950079381466, + -0.017184726893901825, + -0.013164827600121498, + -0.014014394022524357, + -0.024879176169633865, + -0.004800396040081978, + -0.024920618161559105, + -0.0011690172832459211, + -0.009614606387913227, + 0.022834690287709236, + 0.006130002439022064, + 0.011306832544505596, + -0.005484193563461304, + -0.0023708431981503963, + -0.015540850348770618, + 0.007190233562141657, + -0.00537022715434432, + 0.004116598516702652, + -0.015858575701713562, + -0.004430869128555059, + -0.009890887886285782, + -0.019767962396144867, + -0.0212046280503273, + -6.410601054085419e-5, + 0.0221854280680418, + -0.012584635987877846, + -0.0041891224682331085, + -0.009476465173065662, + -0.002992477035149932, + 0.001542861107736826, + -0.022171612828969955, + 0.002393291098996997, + -0.015444152057170868, + 0.02516927197575569, + 0.004126959480345249, + -0.02867805026471615, + 0.0067205545492470264, + -0.003260125173255801, + 0.003218682948499918, + 0.021909145638346672, + -0.0022327022161334753, + -0.002042758511379361, + 0.011444972828030586, + 0.01323389820754528, + -0.023000458255410194, + 0.01638351008296013, + -0.001023969380185008, + -0.0005568804917857051, + -0.003971550613641739, + 0.02124607004225254, + -0.0017198541900143027, + 0.00014699054008815438, + 0.014477165415883064, + 0.01696370169520378, + 0.0008560418500564992, + -0.011907745152711868, + 0.010616127401590347, + 0.02384311892092228, + -0.00848185084760189, + -0.002493443200364709, + 0.01376574020832777, + 5.692915874533355e-5, + -0.0023535755462944508, + 0.009062042459845543, + -0.021577607840299606, + -0.00897225085645914, + 0.010015214793384075, + -0.01333750318735838, + 0.022945202887058258, + 0.0004916952457278967, + -0.01074045430868864, + 0.008771946653723717, + 0.016121042892336845, + -0.005332238506525755, + -0.013959137722849846, + 0.0009972045663744211, + -0.006793078500777483, + 0.02137039601802826, + 0.016701234504580498, + 0.005311517510563135, + 0.007535585667937994, + -0.008640713058412075, + -0.017695847898721695, + 0.001414217404089868, + 0.0002764976234175265, + 0.019892288371920586, + 0.005988407880067825, + 0.019864661619067192, + -0.009745839983224869, + -0.004717511590570211, + -0.011389716528356075, + 0.00558779900893569, + 0.018635205924510956, + 0.020527737215161324, + 0.0032463110983371735, + 0.0027800854295492172, + -0.0006885460461489856, + 0.0044515905901789665, + -0.01101673673838377, + -0.013931509107351303, + -0.00028469975222833455, + 0.004938536789268255, + 0.005339145660400391, + -0.011576207354664803, + -0.004952351097017527, + -0.016134856268763542, + -0.013510179705917835, + -0.017074214294552803, + -0.041027847677469254, + -0.0110927140340209, + 0.019629821181297302, + 0.016466394066810608, + 0.02518308535218239, + -0.010035935789346695, + 0.009455744177103043, + -0.0015834399964660406, + -0.0072523970156908035, + 0.004482672084122896, + 0.019146328791975975, + -0.011617649346590042, + 0.003926654811948538, + 0.01759915053844452, + -0.015665177255868912, + 0.004924722947180271, + -0.012211655266582966, + -0.005984954070299864, + 0.011051272042095661, + 0.009103485383093357, + -0.005812278017401695, + -0.018842417746782303, + -0.005646509118378162, + -0.03351297974586487, + -0.009635327383875847, + -0.03381689265370369 + ], + "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c": [ + -0.021319570019841194, + -0.005738826468586922, + -0.013099645264446735, + -0.0014699300518259406, + -0.035408902913331985, + -0.022639155387878418, + 0.028893446549773216, + 0.05231610685586929, + -0.003312711836770177, + 0.02771131694316864, + 0.003996560350060463, + 0.027051523327827454, + -0.03015805035829544, + -0.007230234332382679, + 0.011979371309280396, + 0.011855660006403923, + -0.06647416949272156, + 0.026116816326975822, + -0.013285212218761444, + -0.008680405095219612, + 0.08049477636814117, + -0.019807543605566025, + -0.010377997532486916, + 0.009890025481581688, + -0.03557385131716728, + -0.02919585071504116, + 0.007422673981636763, + -0.006474221125245094, + -0.001499998732469976, + -0.03945013880729675, + 0.003697591368108988, + 0.015505141578614712, + 0.0161236971616745, + 0.006453602574765682, + 0.007484529633074999, + -0.029965609312057495, + -0.006852227728813887, + 0.02919585071504116, + -0.019807543605566025, + 0.011154629290103912, + -0.038790345191955566, + 0.0371408611536026, + 0.02052231878042221, + 0.006013740319758654, + -0.00470102671533823, + 0.016522321850061417, + 0.03466663509607315, + -0.013085899874567986, + 0.0020034348126500845, + -0.02294156141579151, + -0.0001278993731830269, + 0.030350489541888237, + -0.015147753059864044, + -0.006869409698992968, + 0.01406184397637844, + 0.004639171063899994, + 0.008920954540371895, + 0.08186934888362885, + 0.015065278857946396, + -0.03722333535552025, + -0.0037422648165374994, + -0.003993123769760132, + 0.02287283167243004, + -0.013621981255710125, + -0.015491395257413387, + -0.02063228376209736, + 0.01700342260301113, + 0.008962191641330719, + -0.022694138810038567, + 0.023560117930173874, + 0.0056254249066114426, + 0.01690720207989216, + -0.02870100550353527, + 0.0015549814561381936, + -0.005054978653788567, + 0.007601368241012096, + 0.02773880772292614, + -0.05011679604649544, + -0.0009785215370357037, + 0.01252919901162386, + -0.021237095817923546, + 0.009621985256671906, + 0.00877662468701601, + -0.02276286669075489, + 0.03411680832505226, + 0.015216481871902943, + -0.04118209704756737, + -0.05162882059812546, + -0.06696901470422745, + -0.02294156141579151, + 0.020481081679463387, + 0.00745016522705555, + 0.009848788380622864, + 0.002623709151521325, + -0.022377988323569298, + 0.008680405095219612, + 0.03582127392292023, + 0.014817856252193451, + -0.0320274643599987, + -0.0259381216019392, + -0.014460468664765358, + 0.02640547603368759, + -0.02971818670630455, + -0.006845355033874512, + 0.011347069405019283, + 0.008694150485098362, + -0.004927830770611763, + 0.007271471433341503, + -0.023766303434967995, + 0.008639167994260788, + 0.01650857739150524, + -0.017800671979784966, + -0.011443288996815681, + 0.0086872773244977, + 0.031862515956163406, + -0.06806866824626923, + -0.012027480639517307, + -0.031944990158081055, + -0.015175244770944118, + -0.059271425008773804, + 0.06284530460834503, + 0.04156697541475296, + 0.01580754667520523, + -0.037415776401758194, + 0.006879718974232674, + -5.020399476052262e-5, + 0.0026529186870902777, + 0.00022379706206265837, + 0.02320272848010063, + 0.009731950238347054, + 0.006752571556717157, + -0.013106517493724823, + -0.024783484637737274, + 0.014350502751767635, + -0.021388297900557518, + 0.02325771190226078, + 0.0117182033136487, + 0.036920931190252304, + -0.04368381202220917, + 0.03854292258620262, + -0.007587622385472059, + -0.002867695176973939, + -0.010556692257523537, + -0.010261159390211105, + 0.016989676281809807, + 0.009243978187441826, + -0.03802058473229408, + 0.02698279544711113, + 0.008371126838028431, + 0.03021303191781044, + -0.02966320514678955, + -0.029965609312057495, + 0.017718197777867317, + -0.0007955319597385824, + 5.637881622533314e-5, + 0.007333327084779739, + 0.01586253009736538, + 0.016233662143349648, + 0.009786932729184628, + 0.026364238932728767, + 0.007821299135684967, + -0.026061832904815674, + 0.03664601594209671, + -0.012192429043352604, + -0.01397249661386013, + 0.0009235386969521642, + 0.033979352563619614, + 0.010034355334937572, + -0.05561507120728493, + 0.0346391461789608, + 0.04373879358172417, + -0.0345841608941555, + 0.00022959602938499302, + -0.0073814368806779385, + -0.0129690608009696, + -0.016948439180850983, + 0.0185429397970438, + 0.011443288996815681, + 0.011690711602568626, + -0.04252917319536209, + -0.017773181200027466, + -0.03527144715189934, + -0.015051533468067646, + 0.018927818164229393, + -0.01997249200940132, + 0.03799309581518173, + -0.007020612712949514, + -0.0008109958725981414, + -0.033951859921216965, + -0.0026477640494704247, + 0.012797240167856216, + 0.00036748251295648515, + 0.034886568784713745, + 0.05190373584628105, + -0.02867351472377777, + 0.0025687264278531075, + -0.0029226779006421566, + 0.011738821864128113, + 0.023505134508013725, + 0.026419220492243767, + -0.016027478501200676, + -0.05231610685586929, + -0.07307210564613342, + 0.02820616215467453, + -0.0645497739315033, + 0.008549820631742477, + -0.008364253677427769, + -0.015450158156454563, + 0.02398623339831829, + -0.011759440414607525, + 0.028563549742102623, + -0.013512016274034977, + 0.02136080712080002, + 0.0037319555412977934, + -0.0023264584597200155, + -0.009649476036429405, + -0.011127138510346413, + 0.027725061401724815, + 0.004134017042815685, + 0.010714767500758171, + -0.017360810190439224, + 0.023944996297359467, + 0.02721647173166275, + -0.029608221724629402, + -0.04852229356765747, + -0.032907187938690186, + -0.02334018610417843, + 0.01580754667520523, + -0.02331269532442093, + -0.014955313876271248, + 0.027986230328679085, + 0.01591751165688038, + 0.019573865458369255, + -0.026529187336564064, + -0.013621981255710125, + 0.008219923824071884, + 0.006945011205971241, + 0.00011522756540216506, + 0.022377988323569298, + -0.01398624200373888, + 0.03826800733804703, + 0.010776623152196407, + 0.026886574923992157, + 0.025773173198103905, + 0.015573869459331036, + 0.012769748456776142, + 0.0025360803119838238, + 0.04805494099855423, + 0.0148728396743536, + -0.029635712504386902, + 0.02805495820939541, + 0.017154624685645103, + 0.023134000599384308, + 0.006920956075191498, + -0.004367693793028593, + 0.014460468664765358, + 0.027628842741250992, + -0.004281783476471901, + -0.0371408611536026, + -0.001943297334946692, + -0.019161496311426163, + 0.011298959143459797, + 0.013470779173076153, + -0.02823365293443203, + 0.064274862408638, + -0.01763572357594967, + 0.027175234630703926, + -0.040907181799411774, + -0.015670089051127434, + 0.013092772103846073, + -0.06663911789655685, + 0.0027061833534389734, + -0.013484524562954903, + 0.010542945936322212, + -0.010845351964235306, + -0.014914076775312424, + -0.011182121001183987, + 0.028893446549773216, + -0.009642603807151318, + 0.0032611656934022903, + 0.013223356567323208, + 0.0370858795940876, + 0.03161509335041046, + 0.038817837834358215, + 0.002108245622366667, + -0.040384843945503235, + 0.005532641429454088, + 0.0037422648165374994, + -0.04360133782029152, + -0.008192433044314384, + 0.015683835372328758, + -0.01507902517914772, + 0.02523709088563919, + -0.012721638195216656, + 0.021209603175520897, + -0.0002465633733663708, + -0.010735386051237583, + -0.02258417382836342, + -0.029635712504386902, + 0.031395163387060165, + -0.018240533769130707, + 0.0035034334287047386, + 0.03502402454614639, + -0.026639152318239212, + 0.01509277056902647, + -0.009092776104807854, + 0.043876249343156815, + -0.009917517192661762, + -0.053223323076963425, + 0.02674911729991436, + 0.02599310502409935, + -0.0021305824629962444, + -0.016755999997258186, + -0.04288656264543533, + 0.0014020606176927686, + -0.001103950897231698, + 0.003512024413794279, + 0.03309962898492813, + 0.01997249200940132, + -0.017745688557624817, + 0.0030034338124096394, + -0.013161500915884972, + -0.036948420107364655, + 0.03029550611972809, + 0.03579378500580788, + -0.04346387833356857, + 0.012817858718335629, + 0.019683832302689552, + -0.009670094586908817, + -0.019780050963163376, + -0.002721647033467889, + -0.04074223339557648, + -0.042776595801115036, + 0.002475942950695753, + 0.004780064802616835, + -0.03848794102668762, + -0.04093467444181442, + -0.007525766734033823, + -0.008742260746657848, + 0.0023676955606788397, + -0.01345016062259674, + 0.04310649260878563, + -0.03496904298663139, + -0.0014432977186515927, + 0.024810975417494774, + -0.002080754144117236, + -0.010989680886268616, + 0.02674911729991436, + -0.008274907246232033, + -0.0135807441547513, + 0.0006765458383597434, + -0.018295517191290855, + 0.04995184764266014, + -0.004731954541057348, + 0.008941573090851307, + -0.001088486984372139, + -0.02409619837999344, + -0.018707888200879097, + 0.010233668610453606, + 0.005838483106344938, + -0.022254277020692825, + -0.015752563253045082, + -0.03411680832505226, + 0.0009974217973649502, + 0.014652908779680729, + 0.032467324286699295, + 0.014831602573394775, + -0.005154634825885296, + 0.0007014598813839257, + 0.028398601338267326, + -0.04313398525118828, + 0.05382813140749931, + 0.02208932861685753, + -0.0007744838949292898, + -0.041841886937618256, + 0.011621982790529728, + 0.021676957607269287, + 0.013690710067749023, + -0.016164934262633324, + 0.038927800953388214, + -0.03315461054444313, + 0.006402056198567152, + 0.016082460060715675, + -0.018639158457517624, + 0.04596559703350067, + -0.004512023646384478, + -0.013402050361037254, + -3.5948207369074225e-5, + -0.01877661608159542, + -0.022377988323569298, + -0.03015805035829544, + -0.010426107794046402, + -0.048742227256298065, + -0.0010850506369024515, + -0.020893452689051628, + 0.02794499322772026, + -0.007601368241012096, + -0.004821301903575659, + 0.01661854237318039, + 0.017457028850913048, + 0.00989689864218235, + -0.026391729712486267, + -0.014927822165191174, + 0.00017375414608977735, + 0.01285222265869379, + 0.0197663065046072, + -0.0007371127721853554, + 0.017704451456665993, + 0.010969062335789204, + -0.005360820330679417, + -0.004419240169227123, + 0.006955320481210947, + 0.016164934262633324, + -0.013965623453259468, + 0.038845326751470566, + -0.00673882570117712, + 0.00949140079319477, + 0.012893459759652615, + -0.05316833779215813, + -0.022639155387878418, + 0.04893466457724571, + 0.06707897782325745, + -0.016247408464550972, + 0.006158070173114538, + -0.02805495820939541, + 0.0015128853265196085, + 0.026996539905667305, + 0.016398610547184944, + -0.010666657239198685, + 0.011381433345377445, + -0.02177317626774311, + 0.010549819096922874, + -0.031917497515678406, + -0.014666654169559479, + 0.01912025921046734, + -0.00407559797167778, + 0.016206171363592148, + -0.00663573294878006, + 0.0030979355797171593, + -0.021429535001516342, + 0.02820616215467453, + 0.03205495700240135, + 0.03318210318684578, + 0.00458418857306242, + -0.006395183503627777, + -0.03769068792462349, + -0.024233656004071236, + 0.010178685188293457, + 0.01685221865773201, + 0.0248247217386961, + 0.0024329875595867634, + 0.034364230930805206, + -0.042419206351041794, + 0.013917514123022556, + -0.019161496311426163, + -0.011381433345377445, + -0.0023316130973398685, + 0.007147760130465031, + 0.02398623339831829, + 0.013415795750916004, + -0.024893449619412422, + -0.00419243611395359, + 0.03257729113101959, + -0.028893446549773216, + -0.00854294840246439, + -0.05003432184457779, + -0.013422668911516666, + 0.012130573391914368, + -0.013518888503313065, + -0.0070515405386686325, + -0.005113397724926472, + 0.04461851716041565, + -0.028618531301617622, + 0.01958761177957058, + -0.029058394953608513, + 0.003828175365924835, + 0.003072162391617894, + -0.004996559116989374, + -0.0022783486638218164, + -0.004426112864166498, + -0.013924386352300644, + -0.0074089281260967255, + -0.03021303191781044, + -0.0004398621676955372, + 0.04461851716041565, + -0.006656351499259472, + -0.022144310176372528, + 0.014116826467216015, + 0.033896878361701965, + -0.0047938101924955845, + 0.044261131435632706, + 0.002941578160971403, + -0.002139173448085785, + -0.0050446693785488605, + -0.029058394953608513, + -0.04362882673740387, + 0.00915463175624609, + -0.015738818794488907, + -0.012872841209173203, + -0.019683832302689552, + 0.047202710062265396, + 0.007202743086963892, + 0.021841906011104584, + 0.03532642871141434, + 0.007841917686164379, + 0.003307557199150324, + -0.010384870693087578, + 0.036948420107364655, + 0.0074089281260967255, + -0.015010296367108822, + -0.00886597204953432, + 0.0024329875595867634, + -0.005646043457090855, + -0.0017242253525182605, + -0.00817868672311306, + 0.02648795023560524, + -0.01836424507200718, + 0.0022835033014416695, + 0.006347073707729578, + -0.007168378680944443, + 0.021924380213022232, + 0.0067560081370174885, + 0.008103085681796074, + 0.004079034086316824, + 0.00288487714715302, + -0.00638143764808774, + 0.0018625413067638874, + 0.030130557715892792, + 0.036343611776828766, + 0.019436409696936607, + -0.027628842741250992, + 0.003560134442523122, + -0.0041580721735954285, + -0.006271472200751305, + 0.02549825981259346, + -0.00938830804079771, + -0.00483848387375474, + -0.020439844578504562, + -0.01558761578053236, + 0.04093467444181442, + -0.023601355031132698, + -0.000506872427649796, + -0.006769753526896238, + 0.010570437647402287, + 0.013134009204804897, + 0.041786905378103256, + -0.009738823398947716, + 0.012859095819294453, + 0.012756003066897392, + 0.028398601338267326, + -0.006917519960552454, + 0.019024038687348366, + 0.00035094472696073353, + 0.01755324937403202, + 0.029085885733366013, + -0.04065975919365883, + 0.026570424437522888, + -0.01789689250290394, + -0.055725038051605225, + 0.007099650334566832, + -0.001214775606058538, + -0.007264598738402128, + -0.0030085884500294924, + 0.00011748271936085075, + -0.034446705132722855, + 0.001103950897231698, + -0.03579378500580788, + 0.009216486476361752, + -0.01755324937403202, + 0.022859087213873863, + 0.02718898095190525, + 0.03268725797533989, + 0.0320824459195137, + -0.019175240769982338, + -0.03670100122690201, + 0.02448107860982418, + 0.01274912990629673, + 0.020824724808335304, + -0.018323007971048355, + -0.0025154617615044117, + 0.02284534089267254, + -0.04508587345480919, + 0.022487953305244446, + -0.02136080712080002, + -0.00030992241227068007, + 0.01961510255932808, + -0.059656307101249695, + -0.043353915214538574, + 0.004487968515604734, + 0.03623364493250847, + -0.0019793796818703413, + 0.0025498259346932173, + 0.022130565717816353, + 0.01436424907296896, + 0.0014012015890330076, + 0.032494816929101944, + -0.0002873708726838231, + 0.02823365293443203, + -0.0042130546644330025, + -0.017127133905887604, + 0.013175246305763721, + 0.0020154621452093124, + 0.02677660994231701, + -0.0018195860320702195, + -0.011257722042500973, + 0.02432987652719021, + -0.006762880831956863, + 0.01604122295975685, + -0.004676972050219774, + -0.004790374077856541, + 0.009670094586908817, + 0.0005661507020704448, + 0.021883143112063408, + -0.004917521495372057, + 0.01999998278915882, + 0.015188990160822868, + 0.03664601594209671, + 0.030817842110991478, + 0.016975929960608482, + -0.02828863635659218, + 0.017883146181702614, + -0.06174565106630325, + 0.04912710562348366, + -0.012103082612156868, + 0.01302404422312975, + -0.024233656004071236, + -0.023037780076265335, + -0.0033298940397799015, + -0.01700342260301113, + 0.01509277056902647, + 0.027079014107584953, + 0.02570444531738758, + 0.031972482800483704, + -0.015738818794488907, + 0.02375255711376667, + 0.01510651595890522, + 0.0073264543898403645, + 0.03073536790907383, + -0.015353938564658165, + 0.023642592132091522, + -0.00782817229628563, + -0.0045085870660841465, + -0.007993120700120926, + 0.03565632551908493, + -0.019450156018137932, + -0.006408929359167814, + -0.03895529359579086, + 0.009608238935470581, + 0.02672162652015686, + 0.00887971743941307, + -0.04841233044862747, + 0.004041233565658331, + 0.03821302577853203, + 0.008501711301505566, + -0.01984878070652485, + -0.026886574923992157, + -0.022268021479249, + -0.0099106440320611, + 0.013814421370625496, + -0.012439851649105549, + 0.013532634824514389, + 0.008185559883713722, + -0.011958752758800983, + 0.014776619151234627, + 0.009573874995112419, + -0.01601373217999935, + 0.0073745641857385635, + -0.003817866090685129, + 0.027546368539333344, + 0.01987627148628235, + 0.005240545142441988, + 0.007457038387656212, + 0.018762869760394096, + 0.017044659703969955, + 0.01123710349202156, + -0.006958757061511278, + 0.0007225079461932182, + -0.02870100550353527, + 0.016371119767427444, + -0.024082453921437263, + -0.025388294830918312, + -0.009017174132168293, + -0.032357361167669296, + -0.006501712836325169, + 0.02617179974913597, + -0.02966320514678955, + 0.0019604794215410948, + 0.053773149847984314, + -0.022652901709079742, + -0.007615113630890846, + 0.0033865950535982847, + 0.01752575859427452, + -0.02823365293443203, + 0.015147753059864044, + -0.004539514891803265, + 0.012989679351449013, + -0.012707892805337906, + -0.010041228495538235, + 0.028591040521860123, + -0.014295520260930061, + -0.021869396790862083, + -0.0320824459195137, + -0.0037147733382880688, + -0.009525764733552933, + 0.00729896267876029, + 0.005202744621783495, + -0.01615118980407715, + -0.012687274254858494, + 0.027628842741250992, + 0.0017457029316574335, + 0.020659776404500008, + 0.007883154787123203, + -0.011374561116099358, + 0.002398623386397958, + -0.002202747156843543, + -0.010721640661358833, + -0.008020611479878426, + 0.00918212253600359, + 0.0059931217692792416, + 0.023670082911849022, + -0.026707880198955536, + 0.05113397538661957, + 0.0035670071374624968, + -0.05751197785139084, + -0.06724392622709274, + 0.011182121001183987, + 0.017470775172114372, + -0.007237107027322054, + -0.026158053427934647, + -0.009924390353262424, + 0.03903776779770851, + 0.009745696559548378, + -0.02148451842367649, + 0.009484527632594109, + -0.005876283627003431, + -0.003697591368108988, + -0.019656339660286903, + -0.0014596207765862346, + 0.032962169498205185, + -0.026625405997037888, + -0.007560131140053272, + -0.029113376513123512, + 0.02148451842367649, + 0.02927832491695881, + 0.016398610547184944, + -0.003407213604077697, + -0.0010420953622087836, + -0.011113392189145088, + 0.008357381448149681, + 0.03015805035829544, + 0.019752560183405876, + -0.028343617916107178, + 0.05006181448698044, + 0.012666655704379082, + -0.028975920751690865, + -0.00412714434787631, + -0.0036048078909516335, + -0.0030876263044774532, + -0.005728517193347216, + 0.04599308595061302, + -0.006457039155066013, + -0.0001520617224741727, + 0.02325771190226078, + -0.01874912530183792, + 0.00782817229628563, + 0.001805840409360826, + -0.016398610547184944, + 0.022254277020692825, + 0.06009616702795029, + -0.019450156018137932, + 0.02156699262559414, + -0.00998624600470066, + 0.01407558936625719, + 0.012281776405870914, + 0.008501711301505566, + -0.004302402026951313, + 0.0259381216019392, + -0.004378003068268299, + -0.04797246679663658, + 0.023326439782977104, + -0.02075599506497383, + -0.05594496801495552, + -0.005673534702509642, + -0.02273537591099739, + 0.027835028246045113, + -0.0015627134125679731, + 0.03752573952078819, + 0.02718898095190525, + 0.008006866089999676, + -0.024989670142531395, + 0.0021357371006160975, + 0.0006159788463264704, + -0.010020609945058823, + 0.011580745689570904, + 0.002608245238661766, + -0.008756006136536598, + 0.019106512889266014, + -0.02406870760023594, + -0.0234638974070549, + 0.004512023646384478, + 0.009463909082114697, + -0.041814398020505905, + 0.027780044823884964, + 0.044810958206653595, + -0.00815119594335556, + 0.0014072152553126216, + 0.023587608709931374, + 0.012701019644737244, + -0.00989689864218235, + 0.014982804656028748, + -0.030432963743805885, + -0.001536081195808947, + -0.011182121001183987, + -0.0007418378372676671, + 0.001673538121394813, + -0.013381431810557842, + -0.01539517566561699, + -0.02549825981259346, + 0.025828156620264053, + -0.021402044221758842, + 0.0023316130973398685, + 0.029305817559361458, + 0.03802058473229408, + -0.002029207767918706, + 0.011924388818442822, + -0.008467346429824829, + -0.0246872641146183, + -0.024810975417494774, + 0.02294156141579151, + 0.00765635073184967, + 0.002781784627586603, + -0.0047869374975562096, + 0.0032079010270535946, + 0.020041219890117645, + 0.013903767801821232, + 0.03810305893421173, + -0.018914073705673218, + -0.013924386352300644, + -0.03560134395956993, + 0.014309265650808811, + 0.010618547908961773, + -0.03364945575594902, + -0.012439851649105549, + -0.00894844625145197, + -5.401627640821971e-5, + -0.006666660774499178, + 0.0012912360252812505, + 0.009415799751877785, + 0.028481075540184975, + -0.00769071513786912, + 0.008838480338454247, + -0.011415798217058182, + -0.01283847726881504, + -0.01436424907296896, + -0.0595463402569294, + 0.021347060799598694, + -0.019285207614302635, + 0.010948443785309792, + 0.014116826467216015, + 0.004731954541057348, + -0.0041786907240748405, + -0.011072155088186264, + -0.0053367651998996735, + -0.032137431204319, + 0.004914084915071726, + -0.0234913881868124, + -0.0160687156021595, + 0.037910621613264084, + 0.0016065278323367238, + -0.0008629717631265521, + -0.019312698394060135, + 0.0012482807505875826, + 0.004515460226684809, + 0.005213053897023201, + -0.024467332288622856, + -0.02125084027647972, + -0.007635732181370258, + -0.001014603883959353, + -0.035931240767240524, + 0.004243982490152121, + -0.019890017807483673, + 0.02010994777083397, + 0.004408930893987417, + 0.007463911082595587, + -0.05534015968441963, + 0.03659103438258171, + -0.004457040689885616, + 0.005975939799100161, + 0.019395172595977783, + -0.02797248400747776, + 0.011051536537706852, + 0.028481075540184975, + -0.03362196311354637, + -0.02136080712080002, + -0.0020103075075894594, + -0.05657727271318436, + -0.01973881386220455, + -0.012481088750064373, + -0.004817865323275328, + -0.007773189339786768, + -0.009319579228758812, + -0.015670089051127434, + -0.007532639428973198, + 0.01912025921046734, + -0.018941564485430717, + -0.032412342727184296, + 0.012893459759652615, + 0.02927832491695881, + 0.00032946706051006913, + 0.043216459453105927, + 0.019312698394060135, + 0.012453597970306873, + -0.008625422604382038, + -0.02185565046966076, + 0.01763572357594967, + 0.020769741386175156, + 0.01583503745496273, + -0.009972499683499336, + -0.03276973217725754, + 0.00845360103994608, + -0.006096214521676302, + -0.005793809425085783, + 0.019367681816220284, + 0.016316136345267296, + -0.010048101656138897, + -0.007388309575617313, + 0.0027594477869570255, + 0.019106512889266014, + 0.011429543606936932, + 0.0028006848879158497, + 0.010137448087334633, + 0.025512006133794785, + 0.018213042989373207, + -0.004522332921624184, + 0.0013066999381408095, + -0.045800648629665375, + 0.016701016575098038, + -0.01140892505645752, + -0.01386940386146307, + -0.026350492611527443, + -0.015230227261781693, + 0.007683841977268457, + 0.012377995997667313, + -0.022927815094590187, + 0.019697576761245728, + -0.010371125303208828, + -0.04767006263136864, + 0.02567695453763008, + 0.013566998764872551, + -0.010632293298840523, + 0.0025257710367441177, + 0.040329862385988235, + 0.004058415535837412, + 0.018405482172966003, + 0.018419228494167328, + 0.03304464370012283, + -0.004374566487967968, + 0.032467324286699295, + 0.002556698862463236, + -0.0005249136593192816, + -0.017993111163377762, + 0.004707899875938892, + -0.019958745688199997, + 0.001451888820156455, + -0.03601371496915817, + 0.0024209602270275354, + -0.03576629236340523, + 0.0043298932723701, + 0.0111340107396245, + 0.024412350729107857, + -0.022075582295656204, + -0.006505148950964212, + 0.0059003387577831745, + -0.008646040223538876, + 0.005371129605919123, + -0.008103085681796074, + -0.02054981142282486, + -0.00237628654576838, + 0.0031202721875160933, + -0.003484533168375492, + 0.020096203312277794, + 0.03021303191781044, + 0.011216484941542149, + 0.010048101656138897, + -0.009697586297988892, + 0.019051529467105865, + -0.00845360103994608, + -0.011230231262743473, + 0.020975926890969276, + -0.006134015507996082, + 0.029333308339118958, + -0.0259106308221817, + -0.014529197476804256, + -0.03700340539216995, + -0.00024162350746337324, + -0.019752560183405876, + -0.023161491379141808, + -0.002414087299257517, + -0.002012025797739625, + -0.016701016575098038, + -0.006597932428121567, + 0.018240533769130707, + -0.035408902913331985, + 0.01758074015378952, + 0.00905153900384903, + 0.005783500149846077, + -0.016343628987669945, + -0.01488658506423235, + 0.022254277020692825, + 0.036398593336343765, + 0.01457043457776308, + -0.011869405396282673, + -0.016233662143349648, + -0.035353921353816986, + 0.022515444085001945, + 0.0062783448956906796, + -0.006865973584353924, + -0.05289342626929283, + 0.005725081078708172, + 0.030845334753394127, + -0.015848783776164055, + -0.025635717436671257, + -0.0011786931427195668, + -0.008625422604382038, + -0.010879715904593468, + -0.008817861787974834, + 0.001632301020435989, + 0.00938830804079771, + 0.027326436713337898, + 0.014625417068600655, + -0.01815805956721306, + 0.01627489924430847, + 2.1021245629526675e-5, + -0.009993118233978748, + 0.013862530700862408, + -0.0197937972843647, + 0.023147746920585632, + -0.049209579825401306, + -0.015573869459331036, + 0.008639167994260788, + 0.015986241400241852, + -0.00611339695751667, + -0.0038213026709854603, + -0.01903778500854969, + 0.0039175222627818584, + -0.01241236086934805, + -0.010048101656138897, + 0.018006857484579086, + -0.006780062802135944, + 0.028398601338267326, + 0.02261166460812092, + -0.02046733722090721, + 0.021649466827511787, + -0.01784190908074379, + -0.00919586792588234, + -0.0038419209886342287, + -0.011044664308428764, + -0.004859102424234152, + 0.006065286695957184, + 0.020948436111211777, + -0.0033505125902593136, + 0.010804114863276482, + 0.03615117073059082, + -0.024288639426231384, + 0.03824051842093468, + -0.017044659703969955, + -0.013566998764872551, + 0.03210993856191635, + -0.005134016275405884, + 0.0033883133437484503, + -0.004618552513420582, + 0.024109944701194763, + -0.0010549819562584162, + 0.029113376513123512, + 0.00928521528840065, + 0.0030085884500294924, + -0.015134007669985294, + -0.00018030482169706374, + 0.003934704698622227, + 0.0009441572474315763, + -0.006371128372848034, + 0.0023058399092406034, + -0.013786929659545422, + -0.004268037620931864, + -0.02526458352804184, + -0.028563549742102623, + 0.019518883898854256, + 0.006408929359167814, + -0.010075592435896397, + 0.021841906011104584, + -0.021168366074562073, + 0.018845343962311745, + -0.00384535756893456, + -0.0025343620218336582, + -0.016687270253896713, + -0.006103087682276964, + -0.00419243611395359, + 0.0693332701921463, + 0.00728521728888154, + -0.009567001834511757, + 0.015711326152086258, + -0.014013733714818954, + -0.0026305818464607, + 0.017429538071155548, + 0.029333308339118958, + 0.012350505217909813, + 0.0031821278389543295, + -0.017470775172114372, + 0.0019037784077227116, + 0.03068038634955883, + 0.020934689790010452, + -0.005175253376364708, + -0.003058416536077857, + 0.022680392488837242, + 0.006594495847821236, + -0.027628842741250992, + -0.020151184871792793, + -0.014185555279254913, + -0.007800680585205555, + 0.018323007971048355, + -0.014268028549849987, + -0.006374564953148365, + -0.032137431204319, + 0.0019776616245508194, + 0.011965625919401646, + -0.0371958427131176, + -0.0022405479103326797, + 0.021113384515047073, + 0.0035532615147531033, + 0.010563564486801624, + 0.006841918453574181, + -0.030487947165966034, + 0.02393125183880329, + 0.0020944999996572733, + -0.030020592734217644, + -0.004147762898355722, + -0.018721632659435272, + -0.01347765140235424, + -0.012941570021212101, + -0.019807543605566025, + -0.011250849813222885, + -0.004525769501924515, + 0.008013739250600338, + 0.018213042989373207, + 0.014790365472435951, + -0.014982804656028748, + -0.004621989093720913, + -0.018707888200879097, + 0.009917517192661762, + -0.020329879596829414, + 0.0006567863747477531, + -0.010158066637814045, + -0.00468728132545948, + -0.01510651595890522, + -0.023450151085853577, + -0.04651542380452156, + -0.0246597733348608, + 0.006323018576949835, + 0.021457025781273842, + -0.0011941570555791259, + -0.016288645565509796, + -0.019958745688199997, + 0.01151201780885458, + -0.012075590901076794, + -0.010343633592128754, + -0.0070515405386686325, + -0.005683843977749348, + -0.014515451155602932, + -0.003993123769760132, + -0.001177833997644484, + 0.008405490778386593, + -0.0002676114672794938, + 0.013670091517269611, + 0.01807558536529541, + -0.01833675429224968, + 0.0015292082680389285, + -0.025360802188515663, + -0.013120263814926147, + 0.007560131140053272, + 0.014694145880639553, + 0.015037788078188896, + -0.0038247390184551477, + -0.013072153553366661, + -0.009518892504274845, + -0.006037795450538397, + 0.0024690700229257345, + -0.02547076903283596, + 0.00595875782892108, + -0.008900335989892483, + 0.011285213753581047, + -0.010989680886268616, + -0.010556692257523537, + -0.027587605640292168, + -0.013230228796601295, + -0.013807548210024834, + 0.0029810972046107054, + -0.028398601338267326, + -0.015725072473287582, + 0.011161502450704575, + 0.0026597916148602962, + -0.03868037834763527, + 0.020673520863056183, + 0.012804112397134304, + -0.012323013506829739, + 0.02419241890311241, + -0.005371129605919123, + -0.02646045759320259, + 0.00044544634874910116, + 0.0004304120084270835, + -0.0117456940934062, + 0.002481097588315606, + -0.0033556672278791666, + -0.001256871735677123, + -0.006422674749046564, + -0.010158066637814045, + 0.01901029236614704, + -0.001895187422633171, + -0.016109952703118324, + -0.0014269747771322727, + -0.005343637894839048, + -0.00020210463844705373, + 0.004271474201232195, + -0.03609618917107582, + -0.0260480884462595, + 0.01173194870352745, + -0.01395875122398138, + -0.005975939799100161, + 0.0017465620767325163, + 0.006852227728813887, + 0.009958754293620586, + 0.022405479103326797, + 0.003632299369201064, + -0.011326450854539871, + 0.02229551412165165, + -0.00928521528840065, + -0.01661854237318039, + -0.0010945007670670748, + -0.01929895207285881, + 0.0019158058566972613, + 0.002017180435359478, + 0.01958761177957058, + -0.003127145115286112, + 0.022103073075413704, + -0.03527144715189934, + 0.006154634058475494, + 0.01679723709821701, + -0.0160687156021595, + 0.00894844625145197, + 0.0025738810654729605, + -0.014762873761355877, + -0.003883158089593053, + -0.0014269747771322727, + -0.025113379582762718, + -0.0025755991227924824, + -0.022625410929322243, + -0.006378001533448696, + 0.005786936730146408, + -0.004010305739939213, + -0.009594493545591831, + -0.002450169762596488, + -0.02203434519469738, + -0.005171816796064377, + 0.0007835044525563717, + -0.01059792935848236, + -0.03516148030757904, + 0.006013740319758654, + 0.012652910314500332, + -0.030845334753394127, + 0.00815119594335556, + -0.021264586597681046, + 0.014831602573394775, + 0.005738826468586922, + -0.020852215588092804, + 0.02252919040620327, + -0.008158068172633648, + 0.033979352563619614, + -0.001642610295675695, + -0.030900316312909126, + -0.016920948401093483, + 0.008749132975935936, + 0.005542950704693794, + 0.03024052456021309, + -0.0017989674815908074, + -0.005999994929879904, + -0.0173195730894804, + -0.021415788680315018, + 0.0032302378676831722, + 0.016701016575098038, + -0.030955299735069275, + -0.0070790317840874195, + 0.02287283167243004, + -0.007587622385472059, + 0.004109961912035942, + -0.03178004175424576, + -0.017498265951871872, + 0.01062542013823986, + -0.017539503052830696, + 0.025663208216428757, + -0.00729896267876029, + 0.012920951470732689, + -0.008982810191810131, + 0.016398610547184944, + -0.006123706232756376, + 0.0010850506369024515, + 0.009422671981155872, + 0.012068717740476131, + -0.007175251375883818, + -0.0056219883263111115, + 0.005635734181851149, + -0.01604122295975685, + 0.007092777639627457, + 0.029470765963196754, + 0.0033780040685087442, + -0.00015131001418922096, + 0.0068212999030947685, + -0.01664603315293789, + -0.007525766734033823, + -0.0021305824629962444, + -0.012570436112582684, + 0.003914086148142815, + 0.017470775172114372, + 0.009642603807151318, + -0.019024038687348366, + 0.014914076775312424, + 0.0013762874295935035, + 0.03606869652867317, + -0.0148728396743536, + -0.016247408464550972, + 0.010529200546443462, + 0.011518890038132668, + -0.030405472964048386, + 0.010969062335789204, + -0.004632298368960619, + -0.0185429397970438, + 0.007223361637443304, + -0.0005996558465994895, + -0.008515456691384315, + -0.013835039921104908, + -0.015573869459331036, + -0.0019553247839212418, + 0.005154634825885296, + -0.007223361637443304, + -0.00024999977904371917, + -0.009470782242715359, + 0.015670089051127434, + 0.005584187805652618, + 0.0009587620734237134, + -0.008075594902038574, + 0.009223359636962414, + -0.003348794300109148, + 0.0036941547878086567, + -0.015298956073820591, + 0.02185565046966076, + 0.007814425975084305, + -0.014323011972010136, + -0.012426106259226799, + -0.01932644471526146, + -0.027175234630703926, + -0.02034362591803074, + 0.004986249841749668, + -0.00033462169812992215, + -0.020591048523783684, + 0.03367694839835167, + 0.02456355281174183, + 0.004051542840898037, + -0.0033762857783585787, + -0.025745682418346405, + 0.007910646498203278, + 0.012797240167856216, + -0.012116828002035618, + -0.011835041455924511, + 0.02432987652719021, + -0.009731950238347054, + -0.007037794683128595, + -0.01632988266646862, + 0.024920940399169922, + -0.002359104575589299, + 0.0050412327982485294, + 0.012302394956350327, + 0.006649478804320097, + -0.0006202743970789015, + -0.0005227658548392355, + 0.017360810190439224, + -0.010879715904593468, + 0.012103082612156868, + 0.009518892504274845, + 0.004711335990577936, + -0.008405490778386593, + 0.008996555581688881, + -0.017127133905887604, + -0.0037422648165374994, + -0.012446724809706211, + 0.018006857484579086, + -0.004986249841749668, + 0.04967693239450455, + -0.006360819097608328, + -0.00915463175624609, + -0.017704451456665993, + -0.01510651595890522, + -0.0028178670909255743, + 0.005687280558049679, + 0.024384858086705208, + -0.010756004601716995, + 0.02864602394402027, + -0.01090033445507288, + 0.009092776104807854, + -0.03595873340964317, + 0.002123709535226226, + 0.008123704232275486, + 0.005800682120025158, + -0.012158065102994442, + -0.005140888970345259, + -0.014556688256561756, + 0.024082453921437263, + 0.012068717740476131, + 0.0039278315380215645, + 0.02049482800066471, + -0.00855669379234314, + 0.01874912530183792, + -0.0593813918530941, + -0.01406184397637844, + -0.01643984764814377, + 0.020714757964015007, + -0.023848777636885643, + 0.023711320012807846, + -0.00803435780107975, + 0.011999989859759808, + 0.01164260134100914, + 0.015945004299283028, + 0.015821292996406555, + 0.022666648030281067, + 0.020920943468809128, + 0.025635717436671257, + -0.009498273953795433, + 0.01363572757691145, + -0.0010910643031820655, + 0.016742253676056862, + -0.0035841893404722214, + 0.004188999999314547, + 0.016027478501200676, + 0.023175237700343132, + -0.004065288696438074, + -0.010790368542075157, + 0.01888658106327057, + 0.005701025947928429, + -0.002075599506497383, + -0.017154624685645103, + -0.011463907547295094, + -0.026501694694161415, + 0.016096206381917, + -0.01643984764814377, + 0.007250852882862091, + -0.023642592132091522, + -0.002024053130298853, + 0.00719586992636323, + -0.003639172064140439, + -0.01848795637488365, + -0.022419225424528122, + -0.00998624600470066, + 0.024783484637737274, + -0.0297731701284647, + -0.02247420698404312, + 0.0011426106793805957, + -0.004979377146810293, + 0.0007302399026229978, + 0.00017429108265787363, + 0.0031288634054362774, + -0.003154636360704899, + 0.003432986792176962, + 0.0023264584597200155, + 0.01027490571141243, + 0.027958739548921585, + -0.027670079842209816, + 0.04126456752419472, + -0.00044802366755902767, + 0.0034261138644069433, + -0.03114773891866207, + -0.030570421367883682, + -0.02287283167243004, + 0.00854294840246439, + -0.02054981142282486, + 0.000913229479920119, + -0.03510649874806404, + 0.0016254282090812922, + -0.006068723276257515, + 0.033951859921216965, + -0.00034342752769589424, + 0.0023367677349597216, + 0.006182125303894281, + 0.039340171962976456, + -0.02010994777083397, + -0.002836767351254821, + 0.018735378980636597, + 0.01758074015378952, + 0.03865288943052292, + -0.021786922588944435, + 0.022886577993631363, + 0.016247408464550972, + -0.007876281626522541, + -0.013896895572543144, + 0.003618553513661027, + 0.00041065257391892374, + -0.0032302378676831722, + 0.010529200546443462, + -0.009615112096071243, + -0.003611680818721652, + 0.0010893461294472218, + -0.011484526097774506, + -0.022542936727404594, + -0.03631611913442612, + -0.0012603081995621324, + -0.003121990477666259, + -0.0047388277016580105, + 0.009752568788826466, + -0.005800682120025158, + 0.0005979376146569848, + 0.012597926892340183, + 0.017649469897150993, + -0.006697588600218296, + 0.00039905463927425444, + 0.0117182033136487, + 0.022982798516750336, + 0.019642595201730728, + 0.027340183034539223, + -0.011910642497241497, + 0.007546385284513235, + -0.0020773177966475487, + 0.004580751992762089, + 0.027326436713337898, + 0.01714087836444378, + 0.0032508564181625843, + 0.027175234630703926, + -0.020453590899705887, + -0.005281782243400812, + 0.005828173831105232, + 0.014625417068600655, + 0.007546385284513235, + 0.013676963746547699, + -0.004254291765391827, + -0.031477637588977814, + -0.010006864555180073, + -0.013209610246121883, + 0.017443284392356873, + 0.011938134208321571, + 0.021676957607269287, + 0.013566998764872551, + -0.0010274904780089855, + -0.013072153553366661, + 0.02724396251142025, + 0.00611339695751667, + 0.0011649474035948515, + 0.009938135743141174, + 0.017099641263484955, + 0.007773189339786768, + -0.0010326451156288385, + -0.0033402033150196075, + 0.0015498268185183406, + 0.017223352566361427, + -0.009683840908110142, + 0.000647336186375469, + -0.02072850428521633, + 0.01439173985272646, + 0.007092777639627457, + 0.02235049568116665, + -0.02174568548798561, + 0.0034158045891672373, + -0.016659779474139214, + -0.018405482172966003, + 0.021347060799598694, + -0.008137449622154236, + 0.015683835372328758, + 0.009278342127799988, + 0.0014931259211152792, + -0.02505839802324772, + -0.009800679050385952, + 0.0014536069938912988, + 0.000617697078268975, + -0.00601030420511961, + 0.0009183841175399721, + -0.011367687955498695, + -0.01752575859427452, + -0.013491397723555565, + 0.05998620390892029, + -0.007821299135684967, + 0.020742250606417656, + 0.014639162458479404, + 0.004264601040631533, + -0.020962180569767952, + -0.00297937891446054, + 0.013525761663913727, + 0.006611678283661604, + -0.003199310041964054, + -0.021608229726552963, + -0.021140875294804573, + 0.017718197777867317, + 0.005213053897023201, + -0.031917497515678406, + 0.005168380215764046, + 0.008054976351559162, + 6.50369929644512e-6, + 0.008027484640479088, + 0.014639162458479404, + -0.005666662007570267, + 0.004529205616563559, + -0.004123707767575979, + 0.0086597865447402, + -0.00458418857306242, + 0.024357367306947708, + -0.024673517793416977, + -0.005975939799100161, + 0.03178004175424576, + 0.019944999366998672, + 0.004639171063899994, + -0.01561510656028986, + -0.011958752758800983, + -0.010384870693087578, + 0.005360820330679417, + 0.0022096200846135616, + 0.006364255677908659, + 0.000976803246885538, + -0.0037319555412977934, + -0.013202738016843796, + 0.017828162759542465, + -0.0011915797367691994, + 0.008027484640479088, + 0.011209612712264061, + -0.017099641263484955, + -0.0010481090284883976, + -0.02674911729991436, + 0.0074089281260967255, + -0.014487960375845432, + -0.0073814368806779385, + 0.010859097354114056, + -0.020481081679463387, + 0.016054969280958176, + 0.022804103791713715, + 0.009092776104807854, + -0.005608242470771074, + 0.023381423205137253, + 0.00843985565006733, + 0.006312709301710129, + -0.0011426106793805957, + -0.026625405997037888, + -0.008666658774018288, + 0.004855665843933821, + -0.008206178434193134, + -0.013848785310983658, + 0.00855669379234314, + -0.004065288696438074, + -0.0010283496230840683, + -0.0036632271949201822, + -0.030515437945723534, + -0.019175240769982338, + -0.02427489310503006, + -0.01414431817829609, + -0.014790365472435951, + -0.01538143027573824, + 0.020439844578504562, + 0.002740547526627779, + 0.03301715478301048, + 0.028920937329530716, + -0.006158070173114538, + 0.005285218823701143, + 0.0047594462521374226, + -0.020618539303541183, + -0.007910646498203278, + 0.013848785310983658, + -0.018240533769130707, + 0.02086596190929413, + -0.04799995943903923, + 0.003962195944041014, + -0.024178672581911087, + -0.018584176898002625, + -0.013711328618228436, + 0.021415788680315018, + 0.010151194408535957, + 0.0019054966978728771, + -0.006886592134833336, + 0.01059792935848236, + 0.01700342260301113, + -0.0026168362237513065, + -0.010962190106511116, + -0.0006713912007398903, + 0.007608240935951471, + -0.0074295466765761375, + -0.008680405095219612, + -0.008831607177853584, + -0.003051543841138482, + 0.03274223953485489, + -0.006676970049738884, + -0.008391745388507843, + 0.002879722509533167, + 0.0016554968897253275, + -0.010769749991595745, + 0.00582130067050457, + -0.008432982489466667, + -0.004457040689885616, + -0.0018883144948631525, + 0.024893449619412422, + 0.009649476036429405, + -0.02086596190929413, + -0.015999985858798027, + 0.006625423673540354, + 0.012013735249638557, + -0.003735391888767481, + -0.01532644685357809, + -0.0007671814528293908, + -0.006704461760818958, + -0.017278335988521576, + -0.015120262280106544, + -0.013512016274034977, + -0.011711330153048038, + 0.007175251375883818, + 0.013608235865831375, + 0.019917508587241173, + 0.0092989606782794, + 0.012790367007255554, + -0.002338486025109887, + -0.02791750244796276, + 0.020742250606417656, + 0.012247412465512753, + -0.017195861786603928, + 0.02570444531738758, + -0.009127140045166016, + 0.01130583230406046, + 0.015202736482024193, + 0.0031237087678164244, + -0.00611339695751667, + 2.5303350412286818e-5, + -0.011896897107362747, + 0.008701023645699024, + 0.00020092337217647582, + 0.03169756755232811, + -0.026268018409609795, + 0.021635720506310463, + -0.015216481871902943, + 0.0017835035687312484, + 0.0034106499515473843, + -0.03532642871141434, + 0.024412350729107857, + -0.023615099489688873, + 0.002926114248111844, + 0.021580737084150314, + -0.00838487222790718, + -0.016233662143349648, + 0.008756006136536598, + 0.0035188973415642977, + 0.004958758596330881, + 0.020384863018989563, + 0.010996554046869278, + 0.011415798217058182, + 0.011340196244418621, + 0.005896902177482843, + 0.011505144648253918, + 0.02776629850268364, + -0.026762863621115685, + 0.0002789946156553924, + -0.0030807533767074347, + 0.00795875582844019, + 0.0035034334287047386, + -0.010969062335789204, + 0.007697587832808495, + -0.0062302350997924805, + -0.01538143027573824, + 0.012556689791381359, + -0.004969067871570587, + -0.02864602394402027, + -0.016810981556773186, + 0.015188990160822868, + -0.010687275789678097, + 0.0031340178102254868, + -0.0022491388954222202, + -0.014240537770092487, + 0.012831604108214378, + 0.013848785310983658, + -0.0008170095970854163, + -0.006869409698992968, + 0.003056698478758335, + 0.033869385719299316, + 0.01488658506423235, + 0.028591040521860123, + 0.004034360870718956, + -0.005673534702509642, + 0.005426112096756697, + 0.005845355801284313, + -0.0013711327919736505, + -0.018185552209615707, + -0.0009888308122754097, + -0.011443288996815681, + -0.005549823399633169, + -0.0028127124533057213, + 0.006587623152881861, + -0.031505126506090164, + -0.0298006609082222, + 0.016673525795340538, + 0.0038316117133945227, + -0.007154632825404406, + -0.003903776640072465, + 0.006137451622635126, + 0.010735386051237583, + -0.0016408920055255294, + 0.00611339695751667, + 0.0024226782843470573, + 0.010467344895005226, + 0.022336751222610474, + 0.011429543606936932, + -0.009683840908110142, + 0.004745700396597385, + -0.0009097930160351098, + 0.011725075542926788, + 0.028975920751690865, + -0.006580750457942486, + 0.012068717740476131, + -0.013587617315351963, + -0.008432982489466667, + 0.006962193176150322, + -0.008474219590425491, + 0.025195853784680367, + 0.009326452389359474, + -0.014254283159971237, + 0.012391742318868637, + -0.018089331686496735, + -0.014158063568174839, + 0.004996559116989374, + -0.00012865109601989388, + -0.029608221724629402, + -0.005735390353947878, + -0.01758074015378952, + -0.011704456992447376, + -0.002771475352346897, + -0.012432979419827461, + -2.6377232643426396e-5, + -0.007250852882862091, + 0.0014458750374615192, + 0.019134003669023514, + -0.006216489709913731, + -0.0004349223163444549, + 0.004378003068268299, + -0.006274908781051636, + 0.019312698394060135, + -0.0071065230295062065, + -0.016838474199175835, + 0.015560124069452286, + 0.0173195730894804, + -0.023037780076265335, + -0.0018917509587481618, + 0.011855660006403923, + 0.008501711301505566, + -0.031037773936986923, + 0.007216488476842642, + -0.008989683352410793, + 0.002929550828412175, + 0.0031202721875160933, + -0.011085901409387589, + 0.012597926892340183, + 0.02628176473081112, + -0.006171816028654575, + -0.002639173064380884, + -0.005134016275405884, + -0.021965617313981056, + 0.006989684887230396, + 0.017676960676908493, + -0.0016554968897253275, + -0.008364253677427769, + 0.010254287160933018, + -0.009594493545591831, + 0.009869406931102276, + -0.03565632551908493, + 0.024701010435819626, + 0.0073814368806779385, + -0.018377991393208504, + 0.023106509819626808, + -0.008336762897670269, + -0.00439518503844738, + -0.003999996464699507, + -0.00045446696458384395, + 0.0029982791747897863, + 0.02023365907371044, + -0.006017176900058985, + -0.007024048827588558, + 0.027780044823884964, + -0.03650856018066406, + -0.008707895874977112, + -0.0012740539386868477, + -0.012501707300543785, + -0.00667353393509984, + -0.0014664935879409313, + 0.016371119767427444, + 0.02971818670630455, + 0.011326450854539871, + -0.009072157554328442, + 0.017182115465402603, + 0.008494838140904903, + -0.00673882570117712, + -0.011560127139091492, + 1.499408062954899e-5, + -0.011154629290103912, + -0.010907206684350967, + -0.002951887436211109, + 0.029415782541036606, + -0.002644327702000737, + 0.020192421972751617, + -0.009876280091702938, + -0.00643298402428627, + 0.012487961910665035, + -0.01408933475613594, + 0.00565291615203023, + -0.02028864249587059, + 0.02867351472377777, + 0.016096206381917, + 0.013388304971158504, + -0.01958761177957058, + 0.008804116398096085, + 0.03180753439664841, + -0.02430238388478756, + -0.002518898108974099, + 0.013773184269666672, + 0.014034352265298367, + -0.0185429397970438, + -0.012439851649105549, + 0.008494838140904903, + -0.007271471433341503, + -0.0008805834222584963, + -0.007127141579985619, + 0.004872848279774189, + -0.000506872427649796, + 0.005714771803468466, + -0.010563564486801624, + 0.00601030420511961, + -0.011463907547295094, + 0.021347060799598694, + 0.007058413233608007, + -0.013195864856243134, + -0.010192431509494781, + 0.018721632659435272, + 0.011340196244418621, + -0.0064810942858457565, + -0.006298963446170092, + 0.0014347066171467304, + 0.01604122295975685, + -0.006656351499259472, + -0.0014819575008004904, + 0.0005876283394172788, + 0.027807535603642464, + -0.004721645265817642, + -0.012570436112582684, + 0.012247412465512753, + -0.005701025947928429, + 0.004457040689885616, + 0.008109958842396736, + -0.03521646559238434, + 0.005333328619599342, + -0.005302400793880224, + -0.014707891270518303, + -0.013353940099477768, + -0.00468728132545948, + -0.006158070173114538, + 0.005975939799100161, + -0.00641923863440752, + -0.007140887435525656, + -0.017704451456665993, + -0.011477652937173843, + 0.038322992622852325, + 0.004391748923808336, + 0.00565291615203023, + -0.010694148950278759, + -0.023890014737844467, + 0.01924397051334381, + 0.023917505517601967, + -0.0033195847645401955, + -0.008096212521195412, + -0.004295528866350651, + -0.006505148950964212, + 0.002034362405538559, + -0.00198625260964036, + 0.010824733413755894, + -0.03659103438258171, + 0.032137431204319, + -0.01773194409906864, + 0.015683835372328758, + -0.009264596737921238, + 0.01659105159342289, + -0.008639167994260788, + -0.007013739552348852, + 0.024962177500128746, + -0.0010386588983237743, + 0.015945004299283028, + -0.01251545362174511, + -0.008694150485098362, + 0.007188997231423855, + 0.02432987652719021, + -0.010371125303208828, + -0.002890031784772873, + 0.02078348770737648, + -0.012068717740476131, + -0.0018298953073099256, + 0.002914086915552616, + -0.01883159950375557, + -0.0022319569252431393, + -0.00359106226824224, + 0.006457039155066013, + 0.006085905246436596, + 0.010123702697455883, + 0.0021890015341341496, + -0.0016804109327495098, + 0.0017293799901381135, + -0.00505841476842761, + -0.009147758595645428, + 0.03276973217725754, + 0.008213051594793797, + 0.0032714749686419964, + 0.01151201780885458, + 0.005415802821516991, + 0.0029381418135017157, + -0.016467340290546417, + 0.0026872828602790833, + -0.04071474075317383, + -0.011821296066045761, + 0.017718197777867317, + -0.012377995997667313, + -0.002671818947419524, + 0.007312708534300327, + -0.02578691951930523, + -0.01164260134100914, + -0.03026801533997059, + 0.0065154582262039185, + -0.0021426097955554724, + -0.004051542840898037, + 0.012467343360185623, + 0.02305152639746666, + -0.002874567871913314, + -0.0117182033136487, + -0.006618550978600979, + 0.0008823016542010009, + 0.004281783476471901, + 0.0027955302502959967, + -0.02046733722090721, + -0.009635730646550655, + -0.00490377563983202, + -0.01711338758468628, + 0.008797243237495422, + -0.026872828602790833, + 0.017278335988521576, + 0.01347765140235424, + 0.0036872820928692818, + -0.017649469897150993, + 0.008295525796711445, + -0.0073539456352591515, + 0.01935393549501896, + 0.00010926751565421, + -0.015766309574246407, + 0.004656353499740362, + -0.011106519959867, + 0.04159446433186531, + 0.0010472499998286366, + 0.000887456291820854, + 0.011766312643885612, + 0.027463894337415695, + -0.010659785009920597, + 0.006625423673540354, + 0.005831609945744276, + 0.004006869625300169, + -0.017195861786603928, + -0.005292091518640518, + -0.009072157554328442, + 0.0007976797060109675, + 0.014268028549849987, + 0.00042031751945614815, + 0.01017181295901537, + 0.02063228376209736, + -0.02372506633400917, + 0.01802060380578041, + 0.007230234332382679, + 0.03125770390033722, + 0.017457028850913048, + -0.01173194870352745, + 0.025828156620264053, + 0.014790365472435951, + 0.00483848387375474, + 0.024755991995334625, + -0.01100342720746994, + 0.010762877762317657, + 0.030982790514826775, + 0.0005257727461867034, + -0.01017181295901537, + -0.009188995696604252, + 0.01740204729139805, + 0.006192434579133987, + -0.002872849814593792, + 0.02284534089267254, + 0.005611679051071405, + 0.0062508536502718925, + 0.016426103189587593, + -0.008611676283180714, + -0.019051529467105865, + 0.00036941550206393003, + -0.002134018810465932, + 0.03507900610566139, + 0.001695015700533986, + -0.00272508361376822, + 0.011333324015140533, + -0.007230234332382679, + -0.00290377764031291, + -0.02419241890311241, + -0.004917521495372057, + 0.005835046526044607, + 0.0035395158920437098, + -0.0037628833670169115, + 0.006656351499259472, + -0.007443292532116175, + -0.004285219591110945, + -0.015175244770944118, + -0.012962188571691513, + 0.035931240767240524, + 0.019642595201730728, + -0.017951874062418938, + -0.001648623961955309, + 0.023147746920585632, + 0.03123021312057972, + 0.0031116812024265528, + 0.022749122232198715, + 0.0017121977871283889, + 0.023326439782977104, + -0.003025770653039217, + 0.0044914050959050655, + 0.0022903759963810444, + 0.002195874461904168, + -0.010666657239198685, + 0.008845353499054909, + 0.012900332920253277, + 0.0028917500749230385, + 0.013759437948465347, + -0.02049482800066471, + 0.0074364198371768, + 0.022213039919734, + 0.03134017810225487, + 0.018762869760394096, + -0.014130571857094765, + 0.004515460226684809, + 0.004171817563474178, + -0.010563564486801624, + 0.02279035933315754, + -0.005948448553681374, + -0.0036357357166707516, + 0.008797243237495422, + -0.006343637127429247, + -0.01001373678445816, + 0.005762881599366665, + -0.001293813344091177, + -0.014611671678721905, + 0.010646038688719273, + 0.0068212999030947685, + -0.0006451884401030838, + 0.0031202721875160933, + 0.007841917686164379, + 0.004780064802616835, + -0.01703091338276863, + 0.009821297600865364, + -0.03521646559238434, + 0.012831604108214378, + 0.020948436111211777, + -0.003300684504210949, + 0.0006632296717725694, + -0.01091407984495163, + 0.012460470199584961, + 0.004405494313687086, + 0.012295521795749664, + 0.011876278556883335, + -0.0013445005752146244, + 0.002951887436211109, + 0.02578691951930523, + -0.020068710669875145, + 0.018721632659435272, + -0.006958757061511278, + -0.00010486460087122396, + -0.007175251375883818, + 0.0015481086447834969, + 0.009030920453369617, + -0.002360822632908821, + 0.006168379448354244, + -0.019202733412384987, + -0.03183502331376076, + -0.02109963819384575, + 0.0005506867892108858, + 0.0029965608846396208, + -0.001615977962501347, + 0.016261154785752296, + -0.0024432968348264694, + -0.0003752144402824342, + -0.003448450705036521, + 0.0018281771335750818, + 0.004264601040631533, + 0.015573869459331036, + -0.013518888503313065, + -0.013718200847506523, + -0.034886568784713745, + 0.018323007971048355, + -0.004656353499740362, + 0.011752567254006863, + 0.0015146035002544522, + 0.02445358783006668, + -0.007532639428973198, + 0.005182126071304083, + 0.003017179435119033, + 0.0011640883749350905, + 0.008405490778386593, + -0.003512024413794279, + -0.020975926890969276, + 0.022103073075413704, + -0.004044670145958662, + 0.028508566319942474, + -0.015546378679573536, + 0.01714087836444378, + -0.00565291615203023, + -0.006103087682276964, + -0.030515437945723534, + -0.0005506867892108858, + -0.005096215754747391, + -0.012371123768389225, + 0.006749134976416826, + -0.002671818947419524, + -0.01929895207285881, + -0.008398618549108505, + 0.0019639157690107822, + -0.0019209604943171144, + 0.02037111669778824, + 0.00264948233962059, + 0.002182128606364131, + -0.003797247540205717, + -0.0010919234482571483, + -0.0006301540997810662, + -0.0028608222492039204, + -0.017828162759542465, + 0.01040548924356699, + -0.015532632358372211, + 0.009745696559548378, + -0.0056048063561320305, + -0.008838480338454247, + 0.005869410932064056, + -0.019161496311426163, + 0.03125770390033722, + 0.0009201022912748158, + 0.0011348787229508162, + -0.0371408611536026, + -0.008962191641330719, + 0.010639166459441185, + 0.00439518503844738, + -0.01591751165688038, + -0.010646038688719273, + 0.027670079842209816, + -0.02677660994231701, + 0.009395181201398373, + -0.008783497847616673, + -0.0003337626112625003, + -0.017250845208764076, + -0.00575600890442729, + 0.0047491369768977165, + 0.03156011179089546, + 0.023876268416643143, + -0.02203434519469738, + 0.024673517793416977, + 0.006226798985153437, + -0.005013741552829742, + 0.01386940386146307, + 0.016989676281809807, + 0.019573865458369255, + -1.083278675650945e-5, + 0.011573873460292816, + 0.006374564953148365, + -0.012013735249638557, + -0.0018522320315241814, + -0.0007444151560775936, + -0.01347765140235424, + 0.005522332154214382, + -0.02625427208840847, + 0.004879720974713564, + 0.004965631291270256, + 0.007264598738402128, + -0.024357367306947708, + -0.012941570021212101, + 0.0029914064798504114, + -0.006646042224019766, + -0.014116826467216015, + -0.0010420953622087836, + -0.0022371115628629923, + -0.0032714749686419964, + -0.0160687156021595, + -0.010865969583392143, + 0.005855665076524019, + 0.012082464061677456, + 0.012536071240901947, + -0.013979369774460793, + 0.02284534089267254, + -0.013800675049424171, + 0.004261164925992489, + 0.007175251375883818, + 0.005075597204267979, + -0.03807557001709938, + -0.012309268116950989, + -0.005353947170078754, + -0.007663223426789045, + -0.00408934336155653, + -0.01011682953685522, + 0.005790372844785452, + 0.001848795684054494, + 0.007999992929399014, + -0.012639163993299007, + -0.013333321548998356, + -0.003147763665765524, + 0.010762877762317657, + -0.019491393119096756, + 0.0009845352033153176, + 0.053195830434560776, + 0.009890025481581688, + -0.009237105026841164, + 0.014295520260930061, + -0.014226791448891163, + -0.0047869374975562096, + 0.005178689491003752, + 0.0076426053419709206, + -0.01100342720746994, + 0.021786922588944435, + -0.017099641263484955, + -0.014914076775312424, + -0.001932988059706986, + 0.003001715522259474, + 0.027642587199807167, + 0.010226795449852943, + -0.01184878684580326, + 0.018144315108656883, + 0.007470783777534962, + 0.02281785011291504, + -0.005694153252989054, + -0.007264598738402128, + 0.02718898095190525, + -0.017044659703969955, + 0.0058728470467031, + -0.011443288996815681, + -0.0067834993824362755, + -0.029855644330382347, + 0.009113394655287266, + -0.01039174385368824, + -0.010261159390211105, + -0.0005923534627072513, + 0.011140883900225163, + 0.009773187339305878, + -0.005896902177482843, + 0.005577314645051956, + -0.0024587607476860285, + -0.016962185502052307, + -0.012391742318868637, + 0.0018041221192106605, + -0.014158063568174839, + -0.018240533769130707, + -0.0026426094118505716, + -0.027353927493095398, + -0.001600514049641788, + -0.02380754053592682, + -0.030542928725481033, + 0.013690710067749023, + 0.009587620384991169, + -0.00729896267876029, + 0.00013509437849279493, + -0.013415795750916004, + -0.013663218356668949, + 0.01375256571918726, + -0.0016408920055255294, + 0.006192434579133987, + 0.0004274051170796156, + 0.025649461895227432, + 0.0018298953073099256, + 0.022570427507162094, + 0.017883146181702614, + -0.0009570438414812088, + -0.01711338758468628, + 0.008756006136536598, + -0.00021832025959156454, + -0.012446724809706211, + -0.01755324937403202, + -0.010673530399799347, + -0.00779380789026618, + -0.0026219908613711596, + 0.013546380214393139, + -0.0013075589668005705, + 0.0007607381558045745, + -0.01457043457776308, + -0.02182815968990326, + 0.00576975429430604, + 0.0009140885667875409, + 0.010865969583392143, + 0.030872825533151627, + -0.002841921988874674, + 0.009573874995112419, + 0.0013436414301395416, + -0.0010695867240428925, + 0.008941573090851307, + 0.010515455156564713, + -0.010247414000332355, + -0.007560131140053272, + -0.024934686720371246, + -0.008068721741437912, + 0.003738828469067812, + -0.012364250607788563, + 0.019917508587241173, + 0.01388314925134182, + -0.010577310808002949, + -0.035903748124837875, + -0.005360820330679417, + 0.006219925824552774, + 0.01458417996764183, + 0.001869414234533906, + -0.029305817559361458, + -0.011072155088186264, + -0.01641235686838627, + -0.019079022109508514, + -0.002740547526627779, + 0.00039046359597705305, + -0.007099650334566832, + 0.013402050361037254, + -0.01191751565784216, + 0.03279722109436989, + 0.0023934687487781048, + -0.001335909473709762, + -0.01659105159342289, + 0.014254283159971237, + 0.026817847043275833, + -0.0012680401559919119, + 0.0041855634190142155, + 0.012680401094257832, + -0.011010299436748028, + -0.0019072148716077209, + -0.010446726344525814, + 0.003422677516937256, + 0.006659788079559803, + -0.005962194409221411, + -0.005690716672688723, + 0.004845356568694115, + -0.00755325797945261, + -0.017457028850913048, + -0.018529193475842476, + 0.008350508287549019, + -0.014639162458479404, + 0.01807558536529541, + 0.023381423205137253, + -0.015340193174779415, + 0.008412363938987255, + 0.0173195730894804, + -0.010556692257523537, + -0.030350489541888237, + 0.003649481339380145, + -0.0018367682350799441, + -0.021003417670726776, + -0.008975937031209469, + -0.003628862788900733, + 0.0036632271949201822, + 0.006896901410073042, + -0.013793802820146084, + 0.009567001834511757, + -0.01314088236540556, + -0.005237109027802944, + -0.006292090751230717, + -0.0012534353882074356, + 0.01531270146369934, + -0.013312702998518944, + 0.011182121001183987, + -0.0012233665911480784, + -0.0007890886627137661, + -0.007477656938135624, + 0.010329888202250004, + 0.016975929960608482, + -0.015216481871902943, + 0.02817866951227188, + 0.003077317029237747, + -0.022268021479249, + 0.00259793596342206, + -0.004340202547609806, + -0.01679723709821701, + -0.002594499383121729, + 0.01956012099981308, + 0.016962185502052307, + -0.011353942565619946, + -0.002450169762596488, + 0.009257723577320576, + -0.005103088449686766, + -0.001615977962501347, + 0.01997249200940132, + -0.015216481871902943, + 0.012900332920253277, + -0.030432963743805885, + 0.001463057124055922, + -0.013608235865831375, + 0.007573876529932022, + -0.028948428109288216, + -0.013161500915884972, + 0.010577310808002949, + -0.010329888202250004, + 0.006374564953148365, + 0.019628848880529404, + -0.011374561116099358, + -0.005738826468586922, + -0.00043685530545189977, + -0.005065287929028273, + 0.007731952238827944, + -0.02208932861685753, + -0.003280065953731537, + 0.03667350858449936, + 0.03265976533293724, + 0.01507902517914772, + -0.014309265650808811, + -0.01909276656806469, + -0.0028556676115840673, + 0.0006743980338796973, + 0.011457034386694431, + -0.01050858199596405, + 0.007470783777534962, + -0.0197937972843647, + -0.006274908781051636, + 0.0022474208381026983, + -0.008941573090851307, + 0.0011847069254145026, + -0.001890032785013318, + 0.025869393721222878, + -0.0021460463758558035, + -0.001785221858881414, + -0.0019793796818703413, + -0.016522321850061417, + 0.002951887436211109, + -0.006999994162470102, + -0.007731952238827944, + -0.004879720974713564, + 0.006608241703361273, + -0.014529197476804256, + 0.0018333317711949348, + 0.014501705765724182, + -0.003697591368108988, + 0.017470775172114372, + -0.0037182099185884, + 0.01580754667520523, + -0.017539503052830696, + 0.009367689490318298, + -0.0048041194677352905, + -0.00344501412473619, + 0.002424396574497223, + -0.012192429043352604, + 0.019312698394060135, + -0.010577310808002949, + 0.009243978187441826, + -0.024412350729107857, + -0.013381431810557842, + -0.01851544715464115, + -0.006707897875458002, + -0.00010266314347973093, + 0.0062233624048531055, + 0.026859084144234657, + -0.0018591049592942, + 0.01990376226603985, + 0.016783490777015686, + 0.021085891872644424, + -0.02680410072207451, + 0.004656353499740362, + -0.003670099889859557, + 0.02419241890311241, + -0.02750513143837452, + 0.01162885595113039, + -0.0016907202079892159, + -0.005381438881158829, + 0.012721638195216656, + -0.013353940099477768, + -0.009580748155713081, + 0.006900337524712086, + -0.0018041221192106605, + -0.0092989606782794, + -0.012446724809706211, + -0.007567003834992647, + -0.015037788078188896, + -0.002261166460812092, + -0.016549814492464066, + -0.011216484941542149, + 0.015738818794488907, + -0.008797243237495422, + -0.002091063419356942, + -0.014515451155602932, + 0.006996557582169771, + 0.0036872820928692818, + -0.011841914616525173, + 0.005584187805652618, + 0.024439841508865356, + -0.020646030083298683, + 0.025140872225165367, + 0.009567001834511757, + -0.030432963743805885, + -0.008213051594793797, + 0.0035635707899928093, + -0.013890022411942482, + -0.017883146181702614, + 0.012185556814074516, + -0.032494816929101944, + 0.00687628285959363, + 0.0369759127497673, + 0.010350506752729416, + 0.000667954736854881, + -0.005494840443134308, + -0.021786922588944435, + 0.005467349197715521, + 0.014721636660397053, + 0.0016546377446502447, + 0.004735391121357679, + 0.025800665840506554, + -0.0023470770101994276, + -0.019463900476694107, + -0.01810307800769806, + 0.002482815645635128, + 0.009876280091702938, + 0.0023264584597200155, + 0.00331786647439003, + -0.013250847347080708, + -0.004893466364592314, + 0.015367683954536915, + 0.00825428869575262, + 0.0028556676115840673, + 0.006013740319758654, + 0.008446727879345417, + -0.009037792682647705, + -0.006931265350431204, + 0.014432976953685284, + -0.00407559797167778, + -0.005536077544093132, + -0.03210993856191635, + -0.004030924290418625, + -0.015931257978081703, + 0.012247412465512753, + 0.011979371309280396, + -0.009773187339305878, + 0.01924397051334381, + -0.0035085880663245916, + 0.0031408907379955053, + 0.004353947937488556, + 0.0025601352099329233, + -0.0036735364701598883, + 0.012178683653473854, + 0.003460478037595749, + 0.02328520268201828, + 0.024233656004071236, + 0.006542949937283993, + 0.002919241553172469, + -0.007085904479026794, + 0.003307557199150324, + 0.003621990093961358, + 0.0007096214103512466, + 0.010226795449852943, + -0.01295531541109085, + -0.006639169529080391, + -0.007573876529932022, + 0.002750856801867485, + -0.005474221892654896, + -0.0049415766261518, + -0.005429548677057028, + -0.01760823279619217, + 0.01345016062259674, + -0.0011400333605706692, + -0.012446724809706211, + -0.005367693025618792, + 0.0022147747222334146, + 0.01039174385368824, + -0.020934689790010452, + 0.006580750457942486, + -0.00045231918920762837, + -0.00288487714715302, + 0.013120263814926147, + 0.007127141579985619, + 2.5746327082742937e-5, + -0.008982810191810131, + 0.021525755524635315, + 0.008591057732701302, + 0.002359104575589299, + 0.01758074015378952, + 0.0009493118850514293, + -0.0010644320864230394, + -0.0008814425673335791, + -0.00402405159547925, + 0.005876283627003431, + 0.010020609945058823, + -0.0031288634054362774, + 8.172243542503566e-5, + -0.001241407822817564, + -0.0026821282226592302, + 0.016219917684793472, + -0.00036232787533663213, + -0.023395169526338577, + -0.009642603807151318, + -0.0002287369134137407, + -0.009353944100439548, + -0.017195861786603928, + 0.010398616082966328, + -0.02919585071504116, + 0.005013741552829742, + 0.019395172595977783, + 0.012618545442819595, + -0.015821292996406555, + -0.005439857952296734, + 0.03351199999451637, + 0.002714774338528514, + -0.01729208044707775, + -0.014859093353152275, + -0.008336762897670269, + -0.02581441029906273, + -0.006652915384620428, + -0.007271471433341503, + -0.008618549443781376, + 0.0038041204679757357, + -0.003907212987542152, + 0.01615118980407715, + -0.004690717440098524, + 0.002328176749870181, + 0.0130377896130085, + -0.006271472200751305, + -0.004962195176631212, + 0.002250857185572386, + 0.013876277022063732, + -0.0015343629056587815, + -0.005697589833289385, + 3.108888995484449e-5, + 9.144107025349513e-5, + -0.006474221125245094, + 0.004852229729294777, + 0.020192421972751617, + 0.0009948444785550237, + -0.02567695453763008, + -0.008206178434193134, + 0.0044707865454256535, + 0.017745688557624817, + 0.016178680583834648, + -0.015999985858798027, + -0.024522315710783005, + 8.639382576802745e-5, + -0.019546374678611755, + 0.02162197418510914, + 0.03252230957150459, + 0.003458759980276227, + 0.02875598892569542, + 0.01406184397637844, + 0.019161496311426163, + -0.008515456691384315, + 0.0031460453756153584, + -0.018213042989373207, + 0.00780755328014493, + 0.0047835009172558784, + 0.0074089281260967255, + -0.02474224753677845, + -0.008749132975935936, + -0.002762884134426713, + -0.012652910314500332, + -0.019106512889266014, + -0.030542928725481033, + 0.0005326456157490611, + -0.0067834993824362755, + -0.007725079078227282, + 0.01638486608862877, + 0.010893461294472218, + -0.004745700396597385, + 0.005127143580466509, + -0.006371128372848034, + -0.0018436410464346409, + 0.008460474200546741, + -0.01531270146369934, + -0.017470775172114372, + 0.003326457692310214, + -0.01643984764814377, + -0.019491393119096756, + -0.01604122295975685, + 0.007567003834992647, + 0.013910640962421894, + 0.006958757061511278, + -8.129288471536711e-5, + -0.014804110862314701, + -0.005164944101125002, + -0.002201029099524021, + -0.002745702164247632, + -0.00687628285959363, + -0.006347073707729578, + 0.002905495697632432, + 0.006058414001017809, + -0.006467348430305719, + -0.009278342127799988, + 0.009264596737921238, + 0.022900324314832687, + -0.022666648030281067, + -0.008701023645699024, + -0.0029604786541312933, + 0.023395169526338577, + 0.0297731701284647, + 0.010701022110879421, + -0.019546374678611755, + 0.008652913384139538, + -0.013835039921104908, + 0.026625405997037888, + -0.007168378680944443, + 0.01601373217999935, + 0.008158068172633648, + -0.004054979421198368, + 0.01740204729139805, + -0.003914086148142815, + 0.0019020602339878678, + 0.013429542072117329, + -0.007058413233608007, + -0.010756004601716995, + -0.0065257675014436245, + -0.015037788078188896, + 0.005278346128761768, + -0.0044982777908444405, + 0.02966320514678955, + -0.0026855648029595613, + 0.007903773337602615, + -0.003121990477666259, + -0.012570436112582684, + 0.010213050059974194, + 0.01507902517914772, + -0.004896902944892645, + 0.01763572357594967, + 0.009381434880197048, + -0.0032560110557824373, + 0.00673882570117712, + -0.004810992628335953, + -0.006226798985153437, + -0.008357381448149681, + 0.019931254908442497, + -0.015051533468067646, + -0.004450167994946241, + 0.00668727932497859, + -0.020948436111211777, + -0.0038350482936948538, + -0.022721629589796066, + 0.03123021312057972, + -0.006017176900058985, + -0.003312711836770177, + -0.009670094586908817, + -0.0017869400326162577, + 0.009635730646550655, + 0.004852229729294777, + -0.0027182106859982014, + 0.00444673141464591, + 0.005274909548461437, + 0.003999996464699507, + -0.03370443731546402, + 0.022625410929322243, + 0.024082453921437263, + -0.010467344895005226, + -0.008068721741437912, + 0.021704448387026787, + -0.007546385284513235, + 0.013353940099477768, + 0.015134007669985294, + -0.00038788627716712654, + 0.006134015507996082, + 0.0005103088333271444, + -0.017828162759542465, + 0.003969068638980389, + -0.018927818164229393, + 0.008563566952943802, + -0.010817860253155231, + 0.01984878070652485, + 0.002524052746593952, + 0.00022036064183339477, + -0.0029982791747897863, + -0.020164931192994118, + -0.028426092118024826, + 0.009745696559548378, + 0.027890009805560112, + 0.051766280084848404, + 0.01398624200373888, + 0.013924386352300644, + 0.0021941561717540026, + 0.023037780076265335, + -0.02197936177253723, + 0.0033865950535982847, + 0.001853950321674347, + -0.027120251208543777, + -0.02768382430076599, + -0.0032405471429228783, + 0.00022852214169688523, + 0.028920937329530716, + 0.011470780707895756, + -0.014831602573394775, + -0.0025120254140347242, + -0.015711326152086258, + -0.008343635126948357, + 0.0044432953000068665, + 0.00998624600470066, + -0.005446730647236109, + 0.006391746923327446, + -0.019546374678611755, + 0.009237105026841164, + 0.01212370116263628, + 0.008068721741437912, + -0.013402050361037254, + -0.0018075585830956697, + -0.017044659703969955, + 0.004666662774980068, + 0.021649466827511787, + -0.020041219890117645, + -0.020481081679463387, + -0.0042233639396727085, + -0.002518898108974099, + 0.009635730646550655, + 0.005999994929879904, + 0.0016503422521054745, + -0.0025395166594535112, + -0.01457043457776308, + -0.016453593969345093, + -0.015573869459331036, + -0.005690716672688723, + -0.009518892504274845, + -0.017649469897150993, + -0.006192434579133987, + 0.011140883900225163, + -0.02162197418510914, + 0.00877662468701601, + -0.012089336290955544, + 0.001294672372750938, + -0.0036563542671501637, + -0.031477637588977814, + -0.00793126504868269, + -0.01295531541109085, + 0.019546374678611755, + 0.042281750589609146, + -0.004515460226684809, + -0.015463904477655888, + -0.018295517191290855, + -0.01807558536529541, + 0.015134007669985294, + 0.01690720207989216, + 0.01583503745496273, + -0.01880410686135292, + 0.020302388817071915, + -0.010061847046017647, + -0.008838480338454247, + -0.010082465596497059, + -0.017333317548036575, + 0.005402057431638241, + -0.012563562951982021, + -0.011353942565619946, + -0.007271471433341503, + -0.023560117930173874, + -0.009938135743141174, + -0.01627489924430847, + 0.004030924290418625, + -0.010158066637814045, + 0.033896878361701965, + -0.0021580737084150314, + 0.01252919901162386, + 0.004683844745159149, + -0.0037835019174963236, + -0.01700342260301113, + 0.002704465063288808, + -0.003790374845266342, + 0.008810988627374172, + -0.026886574923992157, + -0.008144322782754898, + -0.024522315710783005, + -0.006274908781051636, + -0.03276973217725754, + -0.003079035086557269, + 0.014199300669133663, + -0.005563569255173206, + -0.006044668145477772, + -0.019079022109508514, + 0.0006670956499874592, + 0.005030923523008823, + -0.006391746923327446, + 0.007910646498203278, + -0.004920958075672388, + 0.027862519025802612, + -0.0018883144948631525, + -0.032852206379175186, + 0.007037794683128595, + 0.012611673213541508, + 0.00638143764808774, + 0.012364250607788563, + 0.002429551212117076, + -0.0161236971616745, + 0.005268036853522062, + 0.018460465595126152, + -0.013230228796601295, + 0.03183502331376076, + -0.0025360803119838238, + 0.0032680383883416653, + -0.004975940566509962, + 0.022226784378290176, + -0.015876274555921555, + 0.008364253677427769, + 0.01912025921046734, + 0.008989683352410793, + 0.005608242470771074, + -0.004807556048035622, + 0.0029484510887414217, + 0.020412353798747063, + -0.010556692257523537, + -0.0019828162621706724, + 0.007209615781903267, + 0.0025171800516545773, + -0.003924395423382521, + 0.002365977270528674, + -0.02081097848713398, + -0.006649478804320097, + 0.01457043457776308, + -0.0031408907379955053, + 0.023999979719519615, + -0.008116831071674824, + -0.028082450851798058, + 0.034859076142311096, + 0.017938129603862762, + -0.0009673531167209148, + -0.0148728396743536, + -0.009216486476361752, + -0.021608229726552963, + 0.027986230328679085, + 0.015340193174779415, + 0.006680406630039215, + 0.019408918917179108, + -0.012721638195216656, + -0.006749134976416826, + -0.007395182736217976, + -0.006924392655491829, + 0.023175237700343132, + 0.005972503684461117, + 0.02208932861685753, + -0.011690711602568626, + 0.0010420953622087836, + 0.0039381408132612705, + 0.003072162391617894, + 0.005982812959700823, + 0.01909276656806469, + 0.006350509822368622, + -0.011429543606936932, + -0.0059072114527225494, + 0.010536073707044125, + -0.01650857739150524, + -0.017512012273073196, + -0.0026855648029595613, + 0.0045085870660841465, + 0.0006353087374009192, + -0.0009003428858704865, + -0.0032285195775330067, + -0.019518883898854256, + -0.010082465596497059, + -0.015945004299283028, + -0.0348040945827961, + -0.001721648033708334, + 0.012398614548146725, + 0.02086596190929413, + 0.020687267184257507, + 0.0032182103022933006, + 0.003587625687941909, + -0.002455324400216341, + -0.005151198245584965, + 0.007271471433341503, + 0.00989689864218235, + -0.006305836606770754, + -0.0033041208516806364, + 0.015532632358372211, + -0.018845343962311745, + -0.0005588483181782067, + -0.007759443484246731, + 0.0011005145497620106, + 0.00529896467924118, + 0.015257718972861767, + -0.006123706232756376, + -0.012391742318868637, + -0.0013221638510003686, + -0.034996531903743744, + 0.0005829032743349671, + -0.027353927493095398 + ], + "8bc678cb-61e4-40fd-ab1e-8fed5858f750": [ + -0.016734736040234566, + -0.01624925807118416, + -0.010623415932059288, + 0.0032145115546882153, + -0.03549706190824509, + -0.011837112717330456, + 0.025887437164783478, + 0.06128454580903053, + 0.0014385876711457968, + 0.038181472569704056, + 0.0014573285588994622, + 0.027329595759510994, + -0.03603965416550636, + -0.005565156694501638, + -0.00044353478006087244, + 0.0032734114211052656, + -0.058257441967725754, + 0.038210030645132065, + -0.01876232400536537, + -0.01921924576163292, + 0.08618674427270889, + -0.025202056393027306, + -0.020618565380573273, + 0.04095155745744705, + -0.020075971260666847, + -0.020475778728723526, + 0.02163236029446125, + -0.0035911144223064184, + 0.0016563390381634235, + -0.028757473453879356, + 0.0014983799774199724, + 0.01717737875878811, + 0.011166010051965714, + -0.003762459848076105, + 0.010973246768116951, + -0.032983992248773575, + -0.012051294557750225, + 0.02731531672179699, + -0.02543051727116108, + 0.01659194938838482, + -0.037438973784446716, + 0.03269841894507408, + 0.016606226563453674, + -0.005643690004944801, + 0.0012279754737392068, + 0.010430652648210526, + 0.03812435641884804, + -0.0013582694809883833, + 0.012379706837236881, + -0.019861789420247078, + -0.0008009506273083389, + 0.02935718186199665, + -0.006154156289994717, + 0.0007844407809898257, + 0.008938519284129143, + -0.0002947230532299727, + 0.015363972634077072, + 0.08812866359949112, + -0.004483538679778576, + -0.04183683916926384, + -0.008196022361516953, + -0.02166091650724411, + 0.0166919007897377, + -0.008245998062193394, + -0.024602346122264862, + 0.006893083453178406, + 0.0038374236319214106, + 0.011044640094041824, + -0.02969987317919731, + 0.027615170925855637, + 0.008552992716431618, + 0.026101619005203247, + -0.032955437898635864, + -0.004322902299463749, + -0.01158723421394825, + 0.01767713576555252, + 0.03315534070134163, + -0.04035184532403946, + -0.0086529441177845, + -0.0009798816172406077, + -0.022660432383418083, + -0.00012795130896847695, + 0.005522320047020912, + -0.006539683789014816, + 0.03541138768196106, + 0.0239455234259367, + -0.04335039108991623, + -0.05760062113404274, + -0.059285517781972885, + -0.021361062303185463, + 0.018719486892223358, + 0.002811135957017541, + 0.012244058772921562, + -0.00542236864566803, + -0.032241497188806534, + -0.005461635533720255, + 0.041208572685718536, + 0.015735222026705742, + -0.03318389877676964, + -0.028757473453879356, + -0.018733765929937363, + 0.011508701369166374, + -0.04529230669140816, + -0.00518319895491004, + 0.026244407519698143, + -0.003494732780382037, + 0.005026132334023714, + -0.006525404751300812, + -0.013122203759849072, + 0.02128966897726059, + 0.012479658238589764, + -0.01442871242761612, + 0.005665108095854521, + 0.0038873993325978518, + 0.03515436872839928, + -0.07236488163471222, + -0.006536114029586315, + -0.03929521515965462, + -0.01297941617667675, + -0.04937604069709778, + 0.06259819120168686, + 0.03047092817723751, + 0.010951828211545944, + -0.044606924057006836, + 0.008131768554449081, + -0.007439247332513332, + -0.00913128349930048, + 0.00014457269571721554, + 0.01643488183617592, + 0.008517295122146606, + 0.006154156289994717, + -0.01110889483243227, + -0.008552992716431618, + 0.03726762905716896, + -0.020190201699733734, + 0.026872674003243446, + 0.016149306669831276, + 0.040894441306591034, + -0.026644213125109673, + 0.03512581065297127, + -0.009759549982845783, + -0.003091356949880719, + -0.010452071204781532, + -0.0024363177362829447, + 0.014171694405376911, + 0.012294034473598003, + -0.037096284329891205, + 0.03458321839570999, + 0.020061694085597992, + 0.01526402123272419, + -0.03698205202817917, + 0.000852264987770468, + 0.032184381037950516, + -0.0022596176713705063, + 0.01330068800598383, + -0.01674901507794857, + 0.013150760903954506, + 0.019133571535348892, + -0.007353574503213167, + 0.016477718949317932, + 0.018890833482146263, + -0.024331049993634224, + 0.040123388171195984, + -0.00410872045904398, + -0.0038659810088574886, + 0.018733765929937363, + 0.01863381452858448, + 0.013657658360898495, + -0.05206045135855675, + 0.030585158616304398, + 0.043521735817193985, + -0.035982538014650345, + -0.0009798816172406077, + 0.002125754253938794, + -0.01820545084774494, + -0.018890833482146263, + 0.01543536689132452, + -0.008495877496898174, + 0.0021436025854200125, + -0.0432647205889225, + -0.004869065713137388, + -0.026458589360117912, + -0.027058297768235207, + 0.012793791480362415, + -0.028871703892946243, + 0.02861468493938446, + 0.01624925807118416, + 0.005997089669108391, + -0.03623955696821213, + -0.002504142001271248, + 0.028500454500317574, + 0.010916131548583508, + 0.02715824916958809, + 0.05134651064872742, + -0.020590009167790413, + 0.014578639529645443, + -0.00506896898150444, + 0.01316503994166851, + 0.02094697766005993, + 0.01659194938838482, + -0.02635863795876503, + -0.049547385424375534, + -0.06408318877220154, + 0.041579823940992355, + -0.05303140729665756, + 0.007939004339277744, + -0.009995149448513985, + -0.007853331975638866, + 0.021960772573947906, + -0.012151245959103107, + 0.040494635701179504, + 0.0019008632516488433, + 0.01702031120657921, + 0.00047878551413305104, + -0.007767659146338701, + -0.015392530709505081, + -0.0276580061763525, + 0.030271025374531746, + -0.013964652083814144, + 0.01643488183617592, + -0.01010224036872387, + 0.032983992248773575, + 0.032955437898635864, + -0.01381472498178482, + -0.05457351729273796, + -0.00781049532815814, + -0.017320167273283005, + 0.03084217570722103, + -0.027743680402636528, + -0.006803841330111027, + 0.017191657796502113, + 0.010087961331009865, + 0.012879463844001293, + -0.029214395210146904, + -0.02490220218896866, + 0.00719293812289834, + 0.005286720115691423, + -0.012322591617703438, + 0.02293172851204872, + -0.009909477084875107, + 0.04100866988301277, + 0.021332506090402603, + 0.024188261479139328, + 0.0028557570185512304, + 0.020989814773201942, + 0.027915025129914284, + -0.014435851946473122, + 0.05834311619400978, + 0.024188261479139328, + -0.02543051727116108, + 0.025173498317599297, + 0.023031679913401604, + 0.0285861287266016, + 0.0026076631620526314, + -0.00594711396843195, + 0.02348860166966915, + 0.017305888235569, + 0.005586574785411358, + -0.03495446592569351, + 0.00010307498450856656, + -0.02354571595788002, + 0.011144591495394707, + 0.01307222805917263, + -0.02561614103615284, + 0.052488815039396286, + -0.017134541645646095, + 0.014607197605073452, + -0.03049948439002037, + -0.01569238491356373, + 0.008602968417108059, + -0.0503755547106266, + 0.00415512640029192, + -0.0112802404910326, + 0.016634784638881683, + -0.008767174556851387, + -0.005975671578198671, + 0.0022756813559681177, + 0.013571985065937042, + 0.00210076617076993, + 0.004369308240711689, + 0.003505441825836897, + 0.02932862564921379, + 0.027429547160863876, + 0.039723578840494156, + 0.014542942866683006, + -0.026444310322403908, + 0.010216470807790756, + 0.006179144140332937, + -0.047605469822883606, + -0.00866722222417593, + 0.01680612936615944, + -0.016077911481261253, + 0.02221778966486454, + -0.0298141036182642, + 0.022688990458846092, + -0.0007795324199832976, + -0.002095411764457822, + -0.024959316477179527, + -0.03623955696821213, + 0.030585158616304398, + -0.010973246768116951, + 0.00771768344566226, + 0.0330696664750576, + -0.027015462517738342, + 0.029242951422929764, + 0.0025416237767785788, + 0.02091841958463192, + -0.02147529274225235, + -0.05108949542045593, + 0.020033136010169983, + 0.05731504410505295, + -0.0005559801938943565, + -0.027201086282730103, + -0.04175116866827011, + -0.00640403525903821, + 0.005054689943790436, + 0.0031341933645308018, + 0.02181798405945301, + 0.0020739936735481024, + -0.009959452785551548, + -0.008417343720793724, + -0.017848482355475426, + -0.05337410047650337, + 0.019604772329330444, + 0.043864428997039795, + -0.03535427153110504, + 0.010344980284571648, + 0.018191171810030937, + -0.01831968128681183, + -0.017191657796502113, + -0.011344495229423046, + -0.04529230669140816, + -0.039752136915922165, + 0.0038981083780527115, + -0.018990784883499146, + -0.03164178878068924, + -0.03435475751757622, + -0.019290639087557793, + -0.010452071204781532, + 0.002314948011189699, + -0.021004093810915947, + 0.03958079218864441, + -0.040494635701179504, + -0.0029521388933062553, + 0.03195592015981674, + -0.008088931441307068, + -0.005522320047020912, + 0.014407293871045113, + -0.010701949708163738, + -0.02487364411354065, + 0.0006938597070984542, + -0.019861789420247078, + 0.04335039108991623, + -0.021575244143605232, + 0.01509267557412386, + -0.0026433600578457117, + -0.017391560599207878, + -0.01937631145119667, + 0.005986380856484175, + 0.0008170142536982894, + -0.011351633816957474, + -0.020904142409563065, + -0.025901716202497482, + -0.005240314174443483, + 0.01430734246969223, + 0.03798156976699829, + 0.02144673466682434, + 0.00336800841614604, + 0.01594940386712551, + 0.015992239117622375, + -0.04626326262950897, + 0.043950099498033524, + 0.025573303923010826, + -0.004137278068810701, + -0.04849075525999069, + 0.00033644388895481825, + 0.027015462517738342, + 0.012815210036933422, + -0.033298127353191376, + 0.03486879542469978, + -0.02975698933005333, + 0.008781452663242817, + 0.014078882522881031, + -0.018862275406718254, + 0.04863354191184044, + -0.000647899869363755, + 0.0009709573932923377, + -0.010423513129353523, + -0.02076135389506817, + -0.028885982930660248, + -0.035582732409238815, + -0.010994664393365383, + -0.04746268317103386, + -0.004251508507877588, + -0.035582732409238815, + 0.02301740273833275, + 0.0041051506996154785, + 3.954554267693311e-5, + 0.017819924280047417, + 0.013236434198915958, + 0.00616486556828022, + -0.009809525683522224, + -0.011994179338216782, + -0.015906566753983498, + 0.02088986337184906, + -0.0011226694332435727, + -0.0040230476297438145, + -0.005197477992624044, + 0.013900397345423698, + 0.004537084139883518, + -0.011258821934461594, + 0.004733417183160782, + 0.0003917741705663502, + -0.01709170639514923, + 0.044292792677879333, + -0.01619214192032814, + 0.015449645929038525, + 0.00040449120569974184, + -0.053688231855630875, + -0.020347269251942635, + 0.04563499614596367, + 0.06819547712802887, + -0.01603507623076439, + 0.005101095885038376, + -0.032584186643362045, + -0.0043121930211782455, + 0.014721428044140339, + 0.028843145817518234, + 0.007100125774741173, + -0.002916441997513175, + -0.0165348332375288, + 0.004026617389172316, + -0.039752136915922165, + -0.02166091650724411, + 0.01373619120568037, + 0.01023074984550476, + 0.017348723486065865, + 0.005079677794128656, + 0.0013582694809883833, + -0.005093956831842661, + 0.024673741310834885, + 0.01297941617667675, + 0.028971655294299126, + 0.007332156412303448, + -0.02375989779829979, + -0.03803868219256401, + -0.022260626778006554, + 0.0063826171681284904, + 0.01597796007990837, + 0.02404547482728958, + 0.006243398878723383, + 0.045749228447675705, + -0.028700359165668488, + 0.02128966897726059, + -0.019419148564338684, + -0.007596313953399658, + -0.0029610630590468645, + 0.010887573473155499, + 0.008374507538974285, + 0.015192627906799316, + -0.009780967608094215, + 0.008067513816058636, + 0.024359608069062233, + -0.013693355023860931, + -0.011551537550985813, + -0.04592057317495346, + -0.02792930416762829, + 0.013928955420851707, + -0.013571985065937042, + -0.011265961453318596, + -0.0029646328184753656, + 0.0432647205889225, + -0.03047092817723751, + 0.023260140791535378, + -0.017805645242333412, + 0.020932698622345924, + 0.0017991269705817103, + -0.002250693505629897, + 0.003862411482259631, + -0.0157637782394886, + -0.023831292986869812, + -0.014193112961947918, + -0.01194420363754034, + 0.008160325698554516, + 0.03726762905716896, + -0.02033299021422863, + -0.01656339131295681, + 0.010302143171429634, + 0.034783121198415756, + -0.004833368584513664, + 0.04377875477075577, + -0.007981840521097183, + -0.002214996609836817, + -0.02722964435815811, + -0.026644213125109673, + -0.05957109108567238, + 0.006489708088338375, + -0.02190365642309189, + -0.019676165655255318, + -0.02670132927596569, + 0.04857642576098442, + -0.0026629935018718243, + 0.007981840521097183, + 0.028443340212106705, + 0.008088931441307068, + 0.0013314967509359121, + -0.008410204201936722, + 0.007988980039954185, + 0.0005854301853105426, + -0.008802871219813824, + 0.0055687264539301395, + 0.010302143171429634, + 0.004065884277224541, + -0.004869065713137388, + -0.003566126571968198, + 0.02187509834766388, + -0.022874614223837852, + -0.002040081424638629, + 0.022046444937586784, + -0.023431487381458282, + 0.014735706150531769, + 0.011501561850309372, + 0.000188970792805776, + 0.014578639529645443, + 0.014357318170368671, + -0.004048035480082035, + 0.01400034874677658, + 0.019519099965691566, + 0.044606924057006836, + 0.020718516781926155, + -0.0342976413667202, + 0.01831968128681183, + -0.004619187209755182, + -0.009723852388560772, + 0.02667277120053768, + -0.011130313389003277, + -0.008852846920490265, + -0.013329246081411839, + -0.0033233873546123505, + 0.03875262290239334, + -0.017948433756828308, + -0.0072072166949510574, + -0.022317741066217422, + -0.0008027354488149285, + -0.004522805102169514, + 0.038581278175115585, + -0.014514384791254997, + 0.015378251671791077, + 0.015920845791697502, + 0.010980386286973953, + -0.006072053220123053, + 0.035211484879255295, + -0.005847162567079067, + 0.012144106440246105, + 0.02601594664156437, + -0.02972843125462532, + 0.027772236615419388, + -0.023745620623230934, + -0.040894441306591034, + 0.008510155603289604, + 0.004362168721854687, + -0.001952623832039535, + 0.004579920321702957, + 0.013364942744374275, + -0.03843849152326584, + 0.00256839650683105, + -0.03229861333966255, + 0.015535318292677402, + -0.0035643416922539473, + 0.021489571779966354, + 0.03135621175169945, + 0.018748044967651367, + 0.019076457247138023, + -0.01696319691836834, + -0.03272697702050209, + 0.02882886677980423, + 0.008053234778344631, + 0.014635754749178886, + -0.023774176836013794, + 0.0006746725994162261, + 0.015135512687265873, + -0.04255077987909317, + 0.018962226808071136, + -0.015749499201774597, + 0.006364768370985985, + 0.020647123456001282, + -0.062255505472421646, + -0.04754835367202759, + -0.0047941021621227264, + 0.03424052521586418, + 0.0066432049497962, + 0.008945658802986145, + 0.027757959440350533, + -6.670870061498135e-5, + -0.011715743690729141, + 0.025530468672513962, + 0.009281210601329803, + 0.022174954414367676, + 0.0006791347404941916, + -0.016292093321681023, + 0.00039958287379704416, + 0.0029378600884228945, + 0.01764857769012451, + -0.0034518963657319546, + -0.007018023170530796, + 0.023874128237366676, + -0.026715606451034546, + 0.010651974007487297, + -0.010295004583895206, + -0.012679561041295528, + -0.006478998810052872, + -0.006807411089539528, + 0.018005548045039177, + 0.001628673984669149, + 0.026287242770195007, + 0.012793791480362415, + 0.017234493046998978, + 0.029071606695652008, + 0.022446250542998314, + -0.0239455234259367, + 0.019976019859313965, + -0.060484934598207474, + 0.051032379269599915, + -0.02397407963871956, + 0.02505926787853241, + -0.01192992553114891, + -0.024245377629995346, + -0.0006046172929927707, + -0.021946493536233902, + 0.008852846920490265, + 0.027486661449074745, + 0.033298127353191376, + 0.029557084664702415, + -0.02163236029446125, + 0.013436337001621723, + 0.018962226808071136, + -0.0011217771098017693, + 0.03318389877676964, + -0.012165524996817112, + 0.009466834366321564, + -0.0008370938012376428, + -0.010223610326647758, + -0.01509267557412386, + 0.03658224642276764, + -0.016791852191090584, + -0.0049583083018660545, + -0.036696478724479675, + 0.010730506852269173, + 0.034440431743860245, + -0.0001428994000889361, + -0.06476856768131256, + -0.0024880783166736364, + 0.047605469822883606, + 0.008988494984805584, + -0.006971616763621569, + -0.031013522297143936, + -0.029642758890986443, + -0.0019133571768179536, + 0.009523949585855007, + -0.030413812026381493, + 0.009381162002682686, + 0.01980467513203621, + -0.026472868397831917, + 0.02234629914164543, + 0.011158870533108711, + -0.01203701552003622, + 0.007057289592921734, + -0.006214841268956661, + 0.01640632376074791, + 0.03161323070526123, + -0.0031395480036735535, + 0.008288835175335407, + 0.0026076631620526314, + 0.009216955862939358, + 0.0054937624372541904, + -0.010830458253622055, + -0.0017125618178397417, + -0.026529982686042786, + 0.013293549418449402, + -0.016463439911603928, + -0.023374371230602264, + -0.022631874307990074, + -0.04289346933364868, + -0.004408575128763914, + 0.031470444053411484, + -0.020875584334135056, + -0.0003757105441763997, + 0.04412144795060158, + -0.015349694527685642, + -0.007853331975638866, + 0.008274556137621403, + 0.01330068800598383, + -0.011023222468793392, + 0.022688990458846092, + -0.0017536133527755737, + 0.00509038707241416, + -0.01754862628877163, + -0.007260762155056, + 0.028786031529307365, + -0.01826256699860096, + -0.024002637714147568, + -0.03375504910945892, + -0.0067967018112540245, + -0.016477718949317932, + 0.0037588903214782476, + 0.010223610326647758, + -0.022517643868923187, + -0.002347075380384922, + 0.025530468672513962, + -0.00540095055475831, + 0.00836022850126028, + -0.011301658116281033, + 0.0017884178087115288, + 0.011301658116281033, + -0.008353088982403278, + -0.009338325820863247, + -0.01333638560026884, + 0.008617246523499489, + 0.014585779048502445, + 0.013364942744374275, + -0.04135136306285858, + 0.04377875477075577, + 0.010237889364361763, + -0.0441785603761673, + -0.0751064121723175, + 0.017934154719114304, + 0.01662050560116768, + -0.011258821934461594, + -0.014086022041738033, + -0.004205102100968361, + 0.055316012352705, + 0.005843592807650566, + -0.020561451092362404, + 0.011166010051965714, + 0.010494907386600971, + -0.012750955298542976, + -0.025044988840818405, + 0.0022292754147201777, + 0.03495446592569351, + -0.012336870655417442, + -0.009266931563615799, + -0.04029473289847374, + 0.026073062792420387, + 0.02338865026831627, + 0.02190365642309189, + -0.00232922681607306, + -0.018162615597248077, + -0.006996604613959789, + 0.001815190538764, + 0.03763887658715248, + 0.03418341279029846, + -0.03266986086964607, + 0.0361538827419281, + 0.03581119328737259, + -0.01903362013399601, + -0.00800325907766819, + 0.0011663982877507806, + -0.004890483804047108, + -0.002530914731323719, + 0.028600407764315605, + -0.02648714743554592, + 0.009252652525901794, + 0.01696319691836834, + -0.006960907950997353, + 0.01232973113656044, + -0.012122688814997673, + -0.013986069709062576, + 0.01847674883902073, + 0.0550018809735775, + -0.010994664393365383, + 0.02351715974509716, + -0.003078863024711609, + 0.022389134392142296, + 0.017420118674635887, + 0.0026683479081839323, + -0.021489571779966354, + 0.0342976413667202, + -0.005722223315387964, + -0.03843849152326584, + 0.024673741310834885, + -0.032926879823207855, + -0.05206045135855675, + -0.012108409777283669, + -0.043464623391628265, + 0.02206072397530079, + -0.0019561934750527143, + 0.03384071961045265, + 0.017962710931897163, + -0.010730506852269173, + -0.004708429332822561, + 0.013143621385097504, + 0.013372082263231277, + -0.010237889364361763, + 0.00573293212801218, + 0.015178348869085312, + -0.007931864820420742, + 0.017220215871930122, + -0.016948917880654335, + -0.017105985432863235, + 0.012793791480362415, + 0.0024613055866211653, + -0.04092299938201904, + 0.026587098836898804, + 0.04749124124646187, + -0.0036910660564899445, + -0.004844077862799168, + 0.02468802034854889, + 0.004137278068810701, + -0.00546877458691597, + 0.009381162002682686, + -0.023659946396946907, + -0.013079367578029633, + -0.0016251042252406478, + 0.003876690287142992, + -0.0019222814589738846, + -0.014892772771418095, + -0.008367368020117283, + -0.014036046341061592, + 0.022474808618426323, + -0.019576214253902435, + 0.008702919818460941, + 0.015963681042194366, + 0.0444926954805851, + 0.013943233527243137, + 0.011180289089679718, + -0.011330216191709042, + -0.017263051122426987, + -0.011730021797120571, + 0.01632065139710903, + 0.00953108910471201, + 0.010309282690286636, + -0.025173498317599297, + -0.0082674166187644, + 0.01457150001078844, + 0.014164554886519909, + 0.03958079218864441, + -0.0038017265032976866, + -0.016491996124386787, + -0.03803868219256401, + 0.007253623101860285, + 0.006611077580600977, + -0.0333838015794754, + -0.024930758401751518, + -0.0015242602676153183, + -0.0009834513766691089, + 0.0015019497368484735, + 0.00702159246429801, + 0.007767659146338701, + 0.024987874552607536, + -0.014371597208082676, + 0.02147529274225235, + -0.017205936834216118, + -0.01242254301905632, + -0.018219729885458946, + -0.05831455811858177, + 0.004894053563475609, + -0.018034106120467186, + 0.024645183235406876, + 0.02051861397922039, + 0.01659194938838482, + -0.02540195919573307, + 0.010394955985248089, + -0.009445416741073132, + -0.028143486008048058, + -0.0017857406055554748, + -0.03018535114824772, + -0.026101619005203247, + 0.03155611455440521, + -0.003403705544769764, + 0.007617732044309378, + -0.003726762952283025, + 0.007996119558811188, + 0.0023649237118661404, + -0.0017652148380875587, + -0.018305402249097824, + -0.025687534362077713, + -0.012936579063534737, + 0.005950683727860451, + -0.029528528451919556, + 0.010116519406437874, + -0.011608652770519257, + 0.03007112257182598, + 0.012172664515674114, + 0.007474943995475769, + -0.05585860833525658, + 0.02744382433593273, + 0.0009664952522143722, + -0.000904918008018285, + 0.021118324249982834, + -0.02837194688618183, + 0.006079192738980055, + 0.031099194660782814, + -0.016120748594403267, + -0.032983992248773575, + 0.001970472279936075, + -0.040151942521333694, + -0.03232717141509056, + -0.004205102100968361, + 0.002693335758522153, + -0.004594199359416962, + 0.0015769132878631353, + -0.00962390098720789, + -8.528227772330865e-5, + 0.011658628471195698, + -0.01597796007990837, + -0.021546686068177223, + 0.0077747986651957035, + 0.030699389055371284, + -0.0014457269571721554, + 0.05571582168340683, + 0.01717737875878811, + 0.011572955176234245, + -0.00781049532815814, + -0.008560131303966045, + 0.030613714829087257, + 0.02385985106229782, + 0.016020797193050385, + -0.001847317791543901, + -0.02824343740940094, + -0.003187738824635744, + -0.018305402249097824, + -0.014435851946473122, + 0.013157900422811508, + 0.012151245959103107, + -0.017263051122426987, + -0.007967562414705753, + 0.003494732780382037, + 0.011901367455720901, + 0.004719138611108065, + 0.009959452785551548, + 0.010651974007487297, + 0.02407403104007244, + 0.019604772329330444, + -0.008817150257527828, + 0.017220215871930122, + -0.023445764556527138, + 0.01906217820942402, + -0.010080822743475437, + -0.017163099721074104, + -0.019390590488910675, + -0.007235774304717779, + -0.004083732608705759, + 0.018590979278087616, + -0.019861789420247078, + 0.038609836250543594, + -0.018719486892223358, + -0.0395522341132164, + 0.019690444692969322, + 0.01940486952662468, + -2.2896254449733533e-5, + 0.0237884558737278, + 0.02712969109416008, + 0.007150101941078901, + 0.012129828333854675, + 0.01619214192032814, + 0.03341235592961311, + -0.009909477084875107, + 0.031070636585354805, + 0.005179629195481539, + -0.00566153833642602, + -0.019918905571103096, + 0.022688990458846092, + -0.02434532903134823, + -0.004319332540035248, + -0.05131795257329941, + -0.004365738481283188, + -0.03246995806694031, + 0.005918556358665228, + 0.014464409090578556, + 0.01813405752182007, + -0.02051861397922039, + -0.017477232962846756, + 0.0037481810431927443, + -0.010580579750239849, + -0.00838878657668829, + -0.012986554764211178, + -0.02391696535050869, + -0.004687011241912842, + 0.003417984116822481, + -0.00042657871381379664, + 0.013800445944070816, + 0.020989814773201942, + 0.007300029043108225, + 0.01442871242761612, + -0.021018370985984802, + 0.008874265477061272, + -0.008431622758507729, + -0.006503986660391092, + 0.015349694527685642, + 0.0031109903939068317, + 0.021218275651335716, + -0.0380101278424263, + -0.011101755313575268, + -0.03918098658323288, + 0.009616761468350887, + -0.032241497188806534, + -0.029043048620224, + -0.012194082140922546, + 0.013422057963907719, + -0.017134541645646095, + -0.005147502291947603, + 0.024916479364037514, + -0.03915242850780487, + 0.019262081012129784, + 0.0025184208061546087, + 0.010302143171429634, + -0.01632065139710903, + -0.011458724737167358, + 0.02027587592601776, + 0.040437519550323486, + 0.014792821370065212, + -0.029128720983862877, + -0.011544398032128811, + -0.03435475751757622, + 0.019918905571103096, + 0.0008942089043557644, + -0.006550392601639032, + -0.03872406482696533, + -0.004322902299463749, + 0.03264130279421806, + -0.012822349555790424, + -0.03081361949443817, + -0.008938519284129143, + -0.006196992937475443, + -0.006989465560764074, + -0.0014939178945496678, + -0.001479639089666307, + 0.022703267633914948, + 0.02787218801677227, + 0.008902822621166706, + -0.024516673758625984, + 0.010223610326647758, + 0.003794587217271328, + -0.008495877496898174, + 0.005072538275271654, + -0.021432457491755486, + 0.022046444937586784, + -0.043864428997039795, + -0.010716228745877743, + 0.004376447759568691, + 0.026058783754706383, + 0.002741526812314987, + -0.001327926991507411, + -0.009938034228980541, + 0.004454981070011854, + -0.00940971914678812, + 0.000646561267785728, + 0.01996174268424511, + -0.011180289089679718, + 0.026872674003243446, + 0.025915995240211487, + -0.023417208343744278, + 0.02755805477499962, + -0.018776603043079376, + -0.004722708370536566, + -0.0034608205314725637, + -0.0028325540479272604, + 0.0004542438546195626, + 0.004073023330420256, + 0.03009967878460884, + 0.0002869143499992788, + 0.024302491918206215, + 0.04209385812282562, + -0.03464033454656601, + 0.028357667848467827, + -0.020190201699733734, + -0.009473973885178566, + 0.019233522936701775, + 0.0009736346546560526, + -0.003517935751006007, + -0.001509089139290154, + 0.021032650023698807, + -0.008588689379394054, + 0.02354571595788002, + -0.007624871097505093, + 0.015021282248198986, + -0.008924241177737713, + 0.011194567196071148, + 0.005079677794128656, + -0.0007906877435743809, + -0.004137278068810701, + 0.003409059951081872, + -0.016077911481261253, + 0.0012012028601020575, + -0.021917935460805893, + -0.03798156976699829, + 0.020661402493715286, + -0.006293374579399824, + -0.006075622979551554, + 0.028471898287534714, + -0.023374371230602264, + 0.010344980284571648, + -0.013357803225517273, + -0.0021846541203558445, + -0.016820408403873444, + -7.752934470772743e-5, + -0.011837112717330456, + 0.07647717744112015, + 0.006757434923201799, + -0.005108235403895378, + 0.02168947458267212, + -0.018905112519860268, + -0.004048035480082035, + 0.010851876810193062, + 0.02181798405945301, + -0.005383102223277092, + 0.009124143980443478, + -0.006943059153854847, + 0.002323872409760952, + 0.025202056393027306, + 0.02601594664156437, + -0.0030717237386852503, + 0.00022957609326113015, + 0.018676651641726494, + 4.975264164386317e-5, + -0.01690608263015747, + -0.017505791038274765, + -0.011308797635138035, + -0.010609137825667858, + 0.015592433512210846, + -0.015492482110857964, + -0.01757718436419964, + -0.03052804246544838, + -0.0012163739884272218, + 0.011008943431079388, + -0.04743412509560585, + -0.0061505865305662155, + 0.02715824916958809, + 0.00013509069685824215, + 0.016306372359395027, + 0.011715743690729141, + -0.021760867908596992, + 0.025844601914286613, + -0.0016322436276823282, + -0.02258903905749321, + 0.0043121930211782455, + -0.0017696769209578633, + -0.016149306669831276, + -0.0026255117263644934, + -0.003435832681134343, + -0.012758094817399979, + -0.007482083514332771, + 0.005847162567079067, + 0.02397407963871956, + 0.024730855599045753, + -0.01690608263015747, + -0.0013511300785467029, + -0.001929420861415565, + 0.013136482797563076, + -0.017405839636921883, + -0.007674847263842821, + -0.014178833924233913, + 0.0013564846012741327, + -0.011572955176234245, + -0.03249851614236832, + -0.05391669273376465, + -0.02190365642309189, + 0.004576350562274456, + 0.02465946227312088, + -0.010330701246857643, + -0.024559510871767998, + -0.022731825709342957, + 0.018219729885458946, + -0.014350179582834244, + -0.02036154828965664, + -0.005386671517044306, + -0.003243069164454937, + 0.0008259384776465595, + 0.007874749600887299, + -0.0013787952484562993, + 0.013650518842041492, + -0.006593229249119759, + 0.01659194938838482, + 0.02678700163960457, + -0.020647123456001282, + 0.007332156412303448, + -0.03952367603778839, + -0.01377902738749981, + 0.0043014842085540295, + 0.00021507420751731843, + 0.018462469801306725, + -0.0004421961202751845, + -0.008824288845062256, + -0.012693840079009533, + -0.006657483521848917, + 0.008245998062193394, + -0.027786515653133392, + -0.005097526125609875, + -0.01067339163273573, + 0.002402405720204115, + 0.0029753418639302254, + -0.014650033786892891, + -0.02938573993742466, + -0.013493452221155167, + -0.014807100407779217, + 0.0019865359645336866, + -0.019333474338054657, + -0.012815210036933422, + 0.011208846233785152, + -0.0018437481485307217, + -0.026858394965529442, + 0.010516325011849403, + 0.006350489798933268, + -0.017377281561493874, + 0.022046444937586784, + -0.007389271166175604, + -0.0213182270526886, + -0.007803356274962425, + -0.0004975264309905469, + -0.006682471372187138, + 0.00037258706288412213, + -0.008909962140023708, + -0.007632010616362095, + -0.01356484554708004, + -0.003625026671215892, + 0.02447383850812912, + -0.0075320592150092125, + -0.0179198756814003, + 0.007839052937924862, + -0.006214841268956661, + -0.0035036569461226463, + 0.0026397905312478542, + -0.027243921533226967, + -0.017077427357435226, + 0.00948825292289257, + -0.005843592807650566, + 0.00418011425063014, + -0.0007264331798069179, + 0.01158723421394825, + 0.001859811833128333, + 0.015963681042194366, + -0.003234144765883684, + -0.0074963620863854885, + 0.024830807000398636, + -0.011244543828070164, + -0.013272130861878395, + 0.00165544671472162, + -0.017134541645646095, + 0.001952623832039535, + 0.007389271166175604, + 0.016363488510251045, + 0.006468289531767368, + 0.021275389939546585, + -0.03438331559300423, + 0.011979901231825352, + 0.034440431743860245, + -0.02577320672571659, + 0.012750955298542976, + -0.006389756221324205, + -0.014992724172770977, + -0.0044264234602451324, + 0.014821379445493221, + -0.023460043594241142, + 0.0016590163577347994, + -0.016577670350670815, + 0.01211554929614067, + 0.012965137138962746, + 0.007632010616362095, + -0.019690444692969322, + -0.018348239362239838, + -0.010980386286973953, + 0.005111805163323879, + 0.007346434984356165, + -0.0004609370371326804, + -0.02811492793262005, + 0.006810980383306742, + 0.004879774991422892, + -0.00390524766407907, + 0.0009620331693440676, + -0.023345813155174255, + 0.008595828898251057, + 0.014792821370065212, + -0.02465946227312088, + 0.02020448073744774, + -0.01311506424099207, + 0.04100866988301277, + 0.004654883872717619, + -0.02277466282248497, + -0.022703267633914948, + 0.0017313027055934072, + 0.02030443213880062, + 0.021832263097167015, + -0.008053234778344631, + -0.012179804034531116, + -0.01656339131295681, + -0.024602346122264862, + 0.004408575128763914, + 0.019119294360280037, + -0.027086855843663216, + -0.0029467842541635036, + 0.015720942988991737, + -0.0014162770239636302, + 0.0052438839338719845, + -0.026258686557412148, + -0.025858880952000618, + 0.015720942988991737, + -0.019333474338054657, + 0.01860525645315647, + -0.008431622758507729, + 0.004454981070011854, + -0.005558017175644636, + 0.01015221606940031, + -0.014492967166006565, + 0.0038659810088574886, + 0.0006978756282478571, + 0.01504983939230442, + -0.0024505965411663055, + -0.0029271510429680347, + 0.014992724172770977, + -0.013693355023860931, + 0.0070822774432599545, + 0.039695024490356445, + 0.004711999092251062, + -0.0008540498674847186, + 4.2222814954584464e-5, + -0.012772373855113983, + -0.009709574282169342, + -0.0031163448002189398, + -0.02091841958463192, + -0.014357318170368671, + 0.021732311695814133, + 0.01075192540884018, + -0.014749985188245773, + 0.015321136452257633, + 0.0031252691987901926, + 0.03649657592177391, + -0.013036531396210194, + -0.014450130984187126, + 0.009081307798624039, + 0.0061041805893182755, + -0.02821487933397293, + 0.013486312702298164, + -0.014821379445493221, + -0.013293549418449402, + 0.0028628965374082327, + 0.013393500819802284, + -0.021675195544958115, + -0.008845707401633263, + -0.01677757315337658, + 0.00953108910471201, + 0.009759549982845783, + 0.0030306722037494183, + -0.00030342419631779194, + -0.007924726232886314, + 0.006746726110577583, + -0.0072464835830032825, + -0.0011048209853470325, + -0.014550082385540009, + -0.0003654476604424417, + 0.005397380795329809, + -0.005786477588117123, + -0.014143136329948902, + 0.017205936834216118, + 0.009045610204339027, + -0.006154156289994717, + 0.0039802114479243755, + -0.02357427403330803, + -0.006100610829889774, + -0.014892772771418095, + 0.00723934406414628, + -0.009331186302006245, + -0.02385985106229782, + 0.0358397513628006, + 0.037438973784446716, + 0.007374992594122887, + -0.005768629256635904, + -0.015863729640841484, + -8.75691112014465e-5, + 0.01024502795189619, + -0.004340750630944967, + -0.019918905571103096, + 0.03358370438218117, + -0.007953283376991749, + -0.013307827524840832, + -0.005443786736577749, + 0.0265728197991848, + 0.0002089387853629887, + 0.016606226563453674, + -6.748957093805075e-5, + -0.004305053967982531, + -0.003405490191653371, + -0.0007902415236458182, + 0.01876232400536537, + -0.012886603362858295, + 0.017348723486065865, + 0.015064118430018425, + -0.010016568005084991, + -0.007460665423423052, + 0.010580579750239849, + -0.017077427357435226, + -0.0029414298478513956, + -0.00721435621380806, + 0.011637209914624691, + -0.009681016206741333, + 0.041979629546403885, + -0.014257366769015789, + -0.005665108095854521, + -0.008517295122146606, + -0.015735222026705742, + -0.004376447759568691, + 0.005425938405096531, + 0.028329109773039818, + -0.014114579185843468, + 0.011765719391405582, + -0.00948825292289257, + 0.009288350120186806, + -0.03641090169548988, + 0.00953108910471201, + 0.007057289592921734, + 0.015335415489971638, + -0.0067967018112540245, + -0.004926180932670832, + -0.007960422895848751, + 0.023717062547802925, + -0.00036767873098142445, + -0.00800325907766819, + 0.01804838515818119, + -0.017420118674635887, + 0.013636239804327488, + -0.06111320108175278, + -0.0025291298516094685, + -0.011008943431079388, + 0.016649063676595688, + -0.021146880462765694, + 0.03381216526031494, + -0.012258336879312992, + 0.012786651961505413, + 0.01045920979231596, + 0.012136967852711678, + 0.004562071990221739, + 0.011166010051965714, + 0.0008794839377515018, + 0.01903362013399601, + -0.004515666048973799, + 0.01168004609644413, + -0.003987350966781378, + 0.022788941860198975, + -0.011594373732805252, + 0.003976641688495874, + 0.010209331288933754, + 0.02428821288049221, + -0.01192992553114891, + -0.01311506424099207, + 0.013429197482764721, + 0.014578639529645443, + 0.007574895396828651, + -0.0028504026122391224, + -0.017305888235569, + -0.020647123456001282, + 0.006771713960915804, + -0.016834687441587448, + 0.011330216191709042, + -0.021832263097167015, + 0.00967387668788433, + 0.00962390098720789, + -0.0016964981332421303, + -0.01857670024037361, + -0.006368338130414486, + -0.0038838295731693506, + 0.014849936589598656, + -0.028072092682123184, + -0.00883856788277626, + -0.0015688815619796515, + -0.010387816466391087, + -0.0028593267779797316, + -0.0075677563436329365, + 0.010637694969773293, + -0.012893742881715298, + -0.0067967018112540245, + 0.008445901796221733, + -0.006486138328909874, + 0.030670830979943275, + -0.03324101120233536, + 0.03849560394883156, + -0.007924726232886314, + 3.407944313948974e-5, + -0.03378360718488693, + -0.029842661693692207, + -0.005011853761970997, + 0.017263051122426987, + -0.016063634306192398, + -0.005543738603591919, + -0.02935718186199665, + 0.0035036569461226463, + -0.00900991354137659, + 0.030727945268154144, + -0.002463090466335416, + 0.01433590054512024, + -0.0018437481485307217, + 0.026301521807909012, + -0.014514384791254997, + -0.008702919818460941, + 0.022860335186123848, + 0.024559510871767998, + 0.027201086282730103, + -0.011501561850309372, + 0.021546686068177223, + 0.01879088208079338, + -0.013279270380735397, + -0.011237404309213161, + 0.0006420991267077625, + 0.0027397419326007366, + -0.0035679114516824484, + 0.01373619120568037, + -0.009338325820863247, + -0.0072107864543795586, + -0.010173634625971317, + -0.0006309438031166792, + -0.01919068768620491, + -0.018676651641726494, + -0.005386671517044306, + 0.004908332601189613, + -0.006054204888641834, + -0.0049654473550617695, + -0.008160325698554516, + -0.0038873993325978518, + 0.001850887550972402, + 0.02543051727116108, + 0.0005417013890109956, + 0.0025666116271167994, + 0.00573293212801218, + 0.02293172851204872, + 0.02110404521226883, + 0.028514733538031578, + -0.0071215443313121796, + 0.014542942866683006, + -0.0070822774432599545, + 0.0032502084504812956, + 0.021932214498519897, + 0.02737243101000786, + -0.0051189446821808815, + 0.013136482797563076, + -0.02463090419769287, + -0.011958482675254345, + -0.0008259384776465595, + 0.013843282125890255, + 0.019447704777121544, + 0.01757718436419964, + -0.015249742195010185, + -0.027586612850427628, + -0.010216470807790756, + -0.006543253548443317, + 0.010237889364361763, + 0.011872810311615467, + 0.019105015322566032, + 0.011580094695091248, + 0.002586245071142912, + -0.012086992152035236, + 0.021832263097167015, + 0.01381472498178482, + -5.605538717645686e-6, + 0.008831428363919258, + 0.006314792670309544, + 0.0010700164129957557, + 0.0013707634061574936, + -0.01225119736045599, + 0.0026005238760262728, + 0.020590009167790413, + -0.004429993219673634, + -0.0035357840824872255, + -0.015007003210484982, + 0.007746241055428982, + 0.015492482110857964, + 0.021061208099126816, + -0.026158735156059265, + 0.0017643223982304335, + -0.024645183235406876, + -0.01640632376074791, + 0.029242951422929764, + -0.011480143293738365, + 0.006125598680227995, + -0.005079677794128656, + -0.0031556114554405212, + -0.020561451092362404, + -0.0030717237386852503, + 0.0086529441177845, + -0.005340265575796366, + -0.004997574724256992, + -0.0018250072607770562, + -0.01469286996871233, + -0.015363972634077072, + -0.010809040628373623, + 0.07048008590936661, + -0.004237229470163584, + 0.021560965105891228, + 0.006375477649271488, + -0.007310737855732441, + -0.026058783754706383, + 0.001430555828846991, + 0.013086507096886635, + 0.01789131760597229, + 0.005643690004944801, + -0.025873158127069473, + -0.021575244143605232, + 0.016763294115662575, + 0.016891803592443466, + -0.03092784807085991, + 0.003912386950105429, + 0.015306857414543629, + 0.0025112812872976065, + 0.01376474928110838, + 0.011765719391405582, + -0.007760519627481699, + 0.007931864820420742, + 0.00012505092308856547, + 0.0036178871523588896, + -0.011023222468793392, + 0.011173149570822716, + -0.02932862564921379, + -0.005811465438455343, + 0.035896867513656616, + 0.022317741066217422, + 0.005807895679026842, + -0.01522118505090475, + -0.006314792670309544, + -0.008567270822823048, + 0.0022399844601750374, + 0.001006654347293079, + -0.0007059074705466628, + 0.00640403525903821, + -0.013493452221155167, + -0.01355056744068861, + 0.008260277099907398, + 0.0022114268504083157, + 0.021218275651335716, + 0.016177862882614136, + -0.010123658925294876, + -0.0011083907447755337, + -0.03129909560084343, + 0.0034715295769274235, + -0.017877038568258286, + 0.003912386950105429, + 0.014935608953237534, + -0.003371578175574541, + 0.012265476398169994, + 0.025816043838858604, + 0.015392530709505081, + -0.012943718582391739, + 0.017948433756828308, + 0.015335415489971638, + 0.008588689379394054, + 0.0005769521812908351, + -0.029071606695652008, + -0.011080337688326836, + 0.003371578175574541, + -0.00800325907766819, + -0.013357803225517273, + 0.012015597894787788, + -0.003890969092026353, + -0.006039926316589117, + -0.005122513975948095, + -0.028786031529307365, + -0.01897650584578514, + -0.020747074857354164, + -0.011730021797120571, + -0.018776603043079376, + -0.009366882964968681, + 0.012165524996817112, + 0.003976641688495874, + 0.042322319000959396, + 0.035554174333810806, + -0.008888543583452702, + 0.008038955740630627, + 0.00494402926415205, + -0.02001885697245598, + -0.005743641406297684, + 0.010309282690286636, + -0.014650033786892891, + 0.024559510871767998, + -0.041636936366558075, + 0.01018077414482832, + -0.021703753620386124, + -0.019833233207464218, + -0.007150101941078901, + 0.02190365642309189, + 0.01192992553114891, + -0.0022810359951108694, + -0.013343525119125843, + 0.008331671357154846, + 0.010095100849866867, + 0.006568241398781538, + -0.01560671254992485, + 0.011744300834834576, + 0.001018255832605064, + -0.004405005369335413, + -0.017048869282007217, + -0.01680612936615944, + -0.013029391877353191, + 0.03132765367627144, + -0.00014323406503535807, + -0.009452556259930134, + 0.0011110679479315877, + 0.00013988747377879918, + -0.009995149448513985, + 0.0054937624372541904, + -0.0073607140220701694, + 0.0010976815829053521, + 0.014564360491931438, + 0.02917155809700489, + 0.011044640094041824, + -0.030727945268154144, + -0.008581549860537052, + 0.017105985432863235, + 0.023317256942391396, + 0.0008268309175036848, + -0.022289182990789413, + -0.002779008587822318, + -0.005043980665504932, + -0.025416238233447075, + -0.010095100849866867, + -0.008588689379394054, + -0.0013511300785467029, + 0.014007488265633583, + 0.011858531273901463, + 0.024573789909482002, + 0.005586574785411358, + 0.01594940386712551, + 0.0023220875300467014, + -0.025544747710227966, + 0.017948433756828308, + 0.006971616763621569, + -0.015521039254963398, + 0.01823400892317295, + -0.011137452907860279, + 0.010594858787953854, + 0.011815695092082024, + 0.006618217099457979, + -0.002962847938761115, + -2.659144956851378e-5, + -0.0179198756814003, + 0.020104529336094856, + -0.005704374518245459, + 0.024730855599045753, + -0.024802250787615776, + 0.01887655444443226, + -0.019276360049843788, + 0.0018776602810248733, + 0.012336870655417442, + -0.034012068063020706, + 0.03084217570722103, + -0.021518129855394363, + 0.009788107126951218, + 0.025516189634799957, + -0.012586749158799648, + -0.02160380221903324, + 0.00308243278414011, + -0.008710059337317944, + -0.0016643708804622293, + 0.026872674003243446, + 0.017305888235569, + 0.01754862628877163, + 0.011658628471195698, + 0.011822834610939026, + 0.014100300148129463, + 0.024431001394987106, + -0.030613714829087257, + 0.0069680470041930676, + -0.002539838897064328, + 0.013593403622508049, + 0.0016697254031896591, + -0.010002288967370987, + 0.006828829180449247, + -0.004815520253032446, + -0.0067145987413823605, + 0.007382132112979889, + 0.004722708370536566, + -0.02564469911158085, + -0.018034106120467186, + 0.01560671254992485, + -0.0132864098995924, + 0.006289804819971323, + -0.004158696159720421, + -0.007689125835895538, + 0.011430167593061924, + 0.017234493046998978, + -0.0031359782442450523, + -0.0051617808640003204, + -0.0052010477520525455, + 0.03506869822740555, + 0.01509267557412386, + 0.024673741310834885, + 0.0010316421976312995, + -0.0035125811118632555, + -0.004697720520198345, + 0.012136967852711678, + 0.004437132738530636, + -0.021589523181319237, + 0.00441928394138813, + -0.013607682660222054, + -0.007153671234846115, + 0.00011027014988940209, + 0.0116657679900527, + -0.029557084664702415, + -0.023474322631955147, + 0.015935124829411507, + 0.0002857988001778722, + -0.0018865844467654824, + 0.001681327004916966, + 0.006539683789014816, + 0.014185973443090916, + 0.01345775555819273, + 0.005268871784210205, + 0.01140161044895649, + 0.0065896594896912575, + 0.021889377385377884, + -0.0005751673015765846, + -0.007660568226128817, + 0.0045906295999884605, + 0.002148957224562764, + 0.014328761026263237, + 0.018219729885458946, + -0.007939004339277744, + 0.012651003897190094, + -0.010794761590659618, + 0.0025969541165977716, + 0.010887573473155499, + 0.007103695534169674, + 0.029242951422929764, + 0.011480143293738365, + -0.008038955740630627, + 0.010980386286973953, + -0.01801982708275318, + -0.012572470121085644, + 0.003009253880009055, + 0.002980696503072977, + -0.02667277120053768, + 0.0018830148037523031, + -0.013607682660222054, + -0.010787622071802616, + 0.0008250460377894342, + -0.011694325134158134, + -2.6187068215222098e-5, + -0.007410689722746611, + -0.005643690004944801, + 0.015749499201774597, + -0.008224580436944962, + 0.006343350280076265, + -0.0015367543091997504, + -0.009816665202379227, + 0.0177628081291914, + -0.0011958482209593058, + -0.01563527062535286, + 0.020718516781926155, + 0.011794276535511017, + -0.02160380221903324, + -0.0010084392270073295, + 0.0014198466669768095, + 0.0037838781718164682, + -0.029956892132759094, + 0.01010224036872387, + -0.011273100972175598, + 0.01018077414482832, + 0.006503986660391092, + -0.0005002036923542619, + 0.003826714353635907, + 0.024730855599045753, + 0.007746241055428982, + 0.0024327479768544436, + -0.003312678076326847, + -0.024987874552607536, + 0.006939489860087633, + 0.024702299386262894, + -0.009209816344082355, + -0.008153186179697514, + 0.016449160873889923, + -0.0011744301300495863, + 0.016120748594403267, + -0.035554174333810806, + 0.026044504716992378, + 0.006075622979551554, + -0.016306372359395027, + 0.017477232962846756, + -0.006318362429738045, + 0.0011565815657377243, + -0.007332156412303448, + 0.00027553594554774463, + 0.0041337083093822, + 0.015392530709505081, + -0.01084473729133606, + -0.013464894145727158, + 0.0330696664750576, + -0.03426908329129219, + -0.017591463401913643, + 0.0008112135110422969, + -0.0060613444074988365, + -0.013693355023860931, + 0.0015563876368105412, + 0.010023707523941994, + 0.033326685428619385, + 0.0047941021621227264, + -0.005333126522600651, + 0.019704723730683327, + 0.008845707401633263, + -0.000529653683770448, + -0.01225119736045599, + 0.003930235747247934, + -0.009374022483825684, + -0.0026040934026241302, + -0.0019044330110773444, + 0.025073546916246414, + -0.009423998184502125, + 0.016177862882614136, + -0.010837597772479057, + -0.006718168500810862, + 0.009195537306368351, + -0.0020829178392887115, + 0.01324357371777296, + -0.018219729885458946, + 0.027672285214066505, + 0.0040944418869912624, + 0.008417343720793724, + -0.012179804034531116, + 0.011794276535511017, + 0.019105015322566032, + -0.032612744718790054, + -0.009652459062635899, + 0.009252652525901794, + 0.013886118307709694, + -0.01887655444443226, + -0.0030877874232828617, + -0.0018990784883499146, + -0.00874575600028038, + 0.00568652618676424, + -0.016977475956082344, + -0.0015305073466151953, + 0.0030253175646066666, + 0.0125153549015522, + -0.002693335758522153, + 0.012322591617703438, + -0.002613017801195383, + 0.01400034874677658, + 0.006550392601639032, + -0.0191621296107769, + -0.006718168500810862, + 0.014949887990951538, + 0.017819924280047417, + -0.009359743446111679, + -0.015678105875849724, + 0.00441928394138813, + 0.020847026258707047, + -0.008417343720793724, + 0.0074892230331897736, + -0.010352118872106075, + 0.026001667603850365, + 0.005836453288793564, + -0.009959452785551548, + 0.004890483804047108, + -0.009209816344082355, + 0.003389426739886403, + 0.008274556137621403, + -0.027115413919091225, + 0.006239829119294882, + -0.013043669983744621, + -0.017534349113702774, + -0.00028468327946029603, + -0.0021239693742245436, + -0.007903307676315308, + 0.006807411089539528, + -0.01900506392121315, + -0.002063284395262599, + -0.02033299021422863, + -0.012836627662181854, + 0.034468986093997955, + 0.000992375542409718, + 0.012651003897190094, + -0.016020797193050385, + -0.020504334941506386, + 0.026644213125109673, + 0.025302007794380188, + 0.0009156271116808057, + 0.001246716477908194, + -0.003862411482259631, + -0.015235464088618755, + -0.0035161508712917566, + -0.005197477992624044, + 0.007257192395627499, + -0.044978175312280655, + 0.03575407713651657, + -0.005679386667907238, + 0.011430167593061924, + -0.005665108095854521, + 0.016663342714309692, + -0.01980467513203621, + -0.0006443301681429148, + 0.018462469801306725, + 0.00230602384544909, + 0.013400640338659286, + -0.017748530954122543, + -0.006111320108175278, + 0.008038955740630627, + 0.02147529274225235, + -0.0039016781374812126, + -0.0016188572626560926, + 0.017291609197854996, + -0.006236259359866381, + 0.005008284002542496, + -0.002163236029446125, + -0.026187291368842125, + -0.0017232708632946014, + 0.00838878657668829, + 0.008367368020117283, + 0.005429508164525032, + -0.0019080026540905237, + -0.008381647057831287, + 0.011908506974577904, + 0.00857441034168005, + 0.002898593433201313, + -0.01807694137096405, + 0.013864700682461262, + 0.0016063633374869823, + -0.007724822964519262, + 0.00848159845918417, + 0.0067967018112540245, + 0.018391074612736702, + -0.0034304780419915915, + 0.000496187771204859, + -0.03515436872839928, + -0.020904142409563065, + 0.01712026260793209, + -0.012836627662181854, + -0.012108409777283669, + 0.005954253487288952, + -0.021061208099126816, + -0.01897650584578514, + -0.02802925556898117, + 0.006236259359866381, + 0.004729847423732281, + -0.003453681245446205, + 0.011915646493434906, + 0.02017592266201973, + -0.0021114754490554333, + -0.008902822621166706, + -0.004490677732974291, + 0.007603453006595373, + -0.0008268309175036848, + -0.0007652536733075976, + -0.019918905571103096, + -0.012529633939266205, + -0.010145076550543308, + -0.013600543141365051, + 0.009573925286531448, + -0.027429547160863876, + 0.017305888235569, + 0.010509185492992401, + 0.007574895396828651, + -0.005829314235597849, + 0.0010084392270073295, + -0.005226035602390766, + 0.01613502763211727, + 0.0015670966822654009, + -0.019119294360280037, + 0.007439247332513332, + -0.010352118872106075, + 0.04223664849996567, + 0.0016331360675394535, + -0.003018178278580308, + 0.008824288845062256, + 0.023402929306030273, + -0.012929440476000309, + 0.008760035037994385, + 0.00391595670953393, + 0.004647744819521904, + -0.019519099965691566, + -0.016263537108898163, + -0.007503501605242491, + -0.0004082840168848634, + 0.01702031120657921, + 0.0025380540173500776, + 0.016063634306192398, + 0.015278300270438194, + -0.012893742881715298, + 0.008617246523499489, + 0.013750470243394375, + 0.025102104991674423, + 0.011701464653015137, + -0.013707634061574936, + 0.02086130529642105, + 0.010287865065038204, + 0.011644349433481693, + 0.026644213125109673, + -0.012286894954741001, + 0.01503556128591299, + 0.027672285214066505, + -0.0002261179470224306, + -0.013272130861878395, + -0.012436822056770325, + 0.014592918567359447, + -0.0039338055066764355, + 0.005350974854081869, + 0.022474808618426323, + 0.007228635251522064, + 0.01672045700252056, + 0.014007488265633583, + -0.010494907386600971, + -0.00719293812289834, + 0.004287205170840025, + -0.00037838780554011464, + 0.029300067573785782, + -0.006950198672711849, + -0.0019169269362464547, + 0.011023222468793392, + -0.007085847202688456, + 0.0017500435933470726, + -0.02070423774421215, + -5.49398573639337e-5, + 0.003890969092026353, + 0.0056401202455163, + -0.0013056164607405663, + 0.0022721115965396166, + -0.004626326262950897, + -0.011144591495394707, + -0.00958106480538845, + -0.021703753620386124, + 0.03169890493154526, + 0.012743815779685974, + -0.0166919007897377, + 0.003698205342516303, + 0.020418662577867508, + 0.027186807245016098, + 0.00360717810690403, + 0.016734736040234566, + 0.003193093463778496, + 0.022260626778006554, + 0.005458065774291754, + 0.016891803592443466, + 0.002182869240641594, + 0.0013680860865861177, + -0.0054152291268110275, + 0.004219381138682365, + 0.02113260142505169, + -0.0019490541890263557, + 0.012522494420409203, + -0.012215500697493553, + 0.012244058772921562, + 0.0132864098995924, + 0.014285924844443798, + 0.009331186302006245, + -0.011844252236187458, + 0.0037374719977378845, + 0.003435832681134343, + -0.021803705021739006, + 0.02972843125462532, + -0.0022774662356823683, + -0.0007549907895736396, + -0.006860956083983183, + -0.0033555144909769297, + -0.006910932250320911, + 0.005889998748898506, + -0.00011768842523451895, + -0.017391560599207878, + 0.004983296152204275, + 0.006728877779096365, + -0.0030306722037494183, + -0.003937374800443649, + -0.0035589872859418392, + 0.01847674883902073, + -0.01616358570754528, + 0.007789077237248421, + -0.0237884558737278, + 0.014607197605073452, + 0.021832263097167015, + -0.002775438828393817, + -0.003417984116822481, + -0.01053774356842041, + 0.0045977686531841755, + 0.006860956083983183, + 0.018362518399953842, + 0.02150385081768036, + 0.005529459565877914, + 0.0019829662051051855, + 0.023645669221878052, + -0.017405839636921883, + 0.009124143980443478, + -0.0010459210025146604, + -0.005322417244315147, + -0.006068483926355839, + 0.009202676825225353, + 0.006985895801335573, + 0.0028771753422915936, + -0.0050475504249334335, + -0.018990784883499146, + -0.04526374861598015, + -0.01616358570754528, + -0.006739586591720581, + 0.004215811379253864, + -0.00033198174787685275, + 0.01259388867765665, + -0.004412144422531128, + -0.016263537108898163, + -0.01680612936615944, + -0.003096711589023471, + 0.0018830148037523031, + 0.012700979597866535, + -0.01659194938838482, + 0.0021989329252392054, + -0.028900261968374252, + 0.009616761468350887, + 0.009381162002682686, + 0.0017589678755030036, + -0.006478998810052872, + 0.028014976531267166, + -0.00339121138677001, + -0.0028860995080322027, + 0.004558502230793238, + -0.0036036083474755287, + 0.0014608982019126415, + -0.004783392883837223, + -0.009124143980443478, + 0.009138423018157482, + -0.0036285961978137493, + 0.023902686312794685, + -0.020033136010169983, + 0.011180289089679718, + -0.008260277099907398, + -0.00893137976527214, + -0.026044504716992378, + -0.007267901673913002, + -0.0028878843877464533, + -0.016334930434823036, + 0.0053259870037436485, + -0.0005211756797507405, + -0.02397407963871956, + -0.012086992152035236, + 0.00037437191349454224, + -0.0071465321816504, + 0.02911444380879402, + -0.0005479484098032117, + -0.004740556702017784, + -0.008460179902613163, + -0.011551537550985813, + -0.0012449315981939435, + -0.00048057036474347115, + -0.009366882964968681, + 0.015706663951277733, + -0.015278300270438194, + 0.011001803912222385, + -0.011565815657377243, + -0.00592569587752223, + 0.004308623261749744, + -0.023160189390182495, + 0.03426908329129219, + -0.00808179285377264, + 0.0020293723791837692, + -0.0330696664750576, + -0.002279251115396619, + 0.004747696220874786, + 0.007067998871207237, + -0.016363488510251045, + -0.005372392944991589, + 0.021803705021739006, + -0.026087339967489243, + 0.00127259676810354, + -0.008024677634239197, + 0.010566300712525845, + -0.015592433512210846, + 0.0004051605355925858, + 0.004529944621026516, + 0.02537340112030506, + 0.0037410417571663857, + -0.020190201699733734, + 0.03729618713259697, + 0.004437132738530636, + -0.008717198856174946, + 0.009595343843102455, + 0.014150275848805904, + 0.011779997497797012, + -1.1190160876139998e-5, + 0.006764574442058802, + 0.005668677855283022, + -0.021760867908596992, + -0.0014492967166006565, + 0.0035804053768515587, + -0.023645669221878052, + 0.005672247614711523, + -0.017305888235569, + -0.0003848578780889511, + 0.006411174777895212, + -0.0017170239007100463, + -0.012108409777283669, + -0.005133223254233599, + -0.004033756908029318, + -0.016791852191090584, + -0.01337922178208828, + 0.0017197012202814221, + -0.001205664942972362, + -0.001109283184632659, + -0.01773425191640854, + -0.010502046905457973, + 0.0008147832122631371, + 0.01770569384098053, + 0.017048869282007217, + -0.012843767181038857, + 0.020318711176514626, + -0.016863245517015457, + 0.0165348332375288, + 0.0041836840100586414, + 0.009331186302006245, + -0.04434990882873535, + -0.019790396094322205, + -0.003808866022154689, + -0.012658143416047096, + -0.005147502291947603, + 0.001999029889702797, + 0.00781049532815814, + 0.00418011425063014, + 0.005807895679026842, + 0.003773168893530965, + -0.025730371475219727, + 0.004122999031096697, + 0.009309767745435238, + -0.01019505225121975, + 0.0037553205620497465, + 0.05086103454232216, + 0.01320787612348795, + -0.01680612936615944, + 0.009074168279767036, + -0.02221778966486454, + -0.00336800841614604, + 0.009995149448513985, + 0.01662050560116768, + -0.01829112321138382, + 0.019918905571103096, + -0.015563876368105412, + -0.012872325256466866, + 0.005932835396379232, + 0.006675332318991423, + 0.024588068947196007, + 0.0009772044140845537, + -0.009802386164665222, + 0.008674361743032932, + 0.0067145987413823605, + 0.021975049749016762, + -0.012172664515674114, + -0.0036874962970614433, + 0.0324413999915123, + -0.019861789420247078, + 0.0022399844601750374, + -0.010344980284571648, + -0.005679386667907238, + -0.030956406146287918, + 0.009802386164665222, + -0.003955223597586155, + -0.010916131548583508, + -0.0040694535709917545, + 0.0014707149239256978, + -0.002452381420880556, + -0.0035536326467990875, + 0.010573440231382847, + 0.0022453388664871454, + -0.013179318979382515, + -0.0073250168934464455, + 0.011794276535511017, + -0.005754350684583187, + -0.008460179902613163, + -0.005308138206601143, + -0.02710113488137722, + 0.003119914559647441, + -0.023802734911441803, + -0.0193191971629858, + -0.0014823164092376828, + 0.0046334657818078995, + -0.010837597772479057, + -0.0011717528104782104, + -0.014207391068339348, + -0.01158723421394825, + -0.0034626054111868143, + -0.01132307667285204, + 0.008538713678717613, + 0.009416858665645123, + 0.02187509834766388, + 0.007889028638601303, + 0.01831968128681183, + 0.019419148564338684, + -0.0011262391926720738, + -0.017777087166905403, + 0.013928955420851707, + -0.0016322436276823282, + -0.01971900276839733, + -0.012529633939266205, + -0.0032591328490525484, + -0.013986069709062576, + -0.0012654573656618595, + 0.004408575128763914, + 0.0007067998521961272, + 0.0043014842085540295, + -0.014550082385540009, + -0.020347269251942635, + 0.004697720520198345, + -0.0005234067211858928, + 0.00027308176504448056, + 0.027301037684082985, + 0.004615617450326681, + 0.009238374419510365, + 0.012029876932501793, + -0.006107750348746777, + 0.00940971914678812, + 0.022103559225797653, + -0.006275526247918606, + -0.01677757315337658, + -0.017063148319721222, + -0.009138423018157482, + -0.0011726452503353357, + -0.014086022041738033, + 0.007217925973236561, + 0.013636239804327488, + -0.009402579627931118, + -0.03355514630675316, + -0.00040471431566402316, + 0.00032841204665601254, + 0.0045085265301167965, + 0.0055758655071258545, + -0.033326685428619385, + -0.01999029889702797, + -0.009159840643405914, + -0.022174954414367676, + 0.00022176739003043622, + 0.002812920603901148, + -0.00043594915769062936, + 0.01813405752182007, + -0.004761974792927504, + 0.034012068063020706, + 0.0012119119055569172, + -0.009423998184502125, + -0.024059753865003586, + 0.018276846036314964, + 0.0186909306794405, + 0.008431622758507729, + -0.0007059074705466628, + 0.018548142164945602, + -0.014221670106053352, + 0.002250693505629897, + -0.011651488952338696, + 0.0003600931086111814, + 0.005889998748898506, + -0.005104665644466877, + -0.003794587217271328, + -0.0030253175646066666, + -0.010216470807790756, + -0.007803356274962425, + -0.014378736726939678, + 0.01579233631491661, + -0.014171694405376911, + 0.003998059779405594, + 0.027672285214066505, + -0.003517935751006007, + 0.006354059558361769, + 0.0284290611743927, + -0.01659194938838482, + -0.023845572024583817, + -0.004269356839358807, + -0.004344320390373468, + -0.02120399661362171, + -0.020218759775161743, + -0.011580094695091248, + 0.0077747986651957035, + 0.0014671451644971967, + -0.015806615352630615, + 0.010516325011849403, + -0.011351633816957474, + 0.0021668055560439825, + -0.011858531273901463, + 0.0030395963694900274, + 0.020532893016934395, + -0.014585779048502445, + 0.01619214192032814, + -0.001091434620320797, + 0.006343350280076265, + -0.0034786690957844257, + 0.010908992029726505, + 0.01430734246969223, + -0.0031127752736210823, + 0.027215365320444107, + -0.0038481326773762703, + -0.014821379445493221, + 0.00821744091808796, + -0.0013877194141969085, + -0.019362032413482666, + 0.005729362368583679, + 0.011858531273901463, + 0.009995149448513985, + -0.017748530954122543, + -0.00537596270442009, + 0.007417828775942326, + -0.010073683224618435, + -0.01067339163273573, + 0.017448674887418747, + -0.008567270822823048, + 0.006436162628233433, + -0.034411873668432236, + -0.0028379084542393684, + -0.009074168279767036, + 0.006846677511930466, + -0.03906675800681114, + -0.02357427403330803, + 0.022046444937586784, + -0.00446568988263607, + 0.012344010174274445, + 0.01736300252377987, + -0.01831968128681183, + -0.0026272963732481003, + 0.0031770297791808844, + 0.002782578347250819, + -0.007135822903364897, + -0.013086507096886635, + -0.008602968417108059, + 0.03732474520802498, + 0.03572551906108856, + 0.02484508603811264, + -0.014535803347826004, + -0.008060374297201633, + -0.004908332601189613, + 0.005261732265353203, + 0.01333638560026884, + -0.005907847546041012, + 0.0032787660602480173, + -0.018305402249097824, + -0.005889998748898506, + 0.006214841268956661, + -0.016106469556689262, + 0.007781938184052706, + -0.0037553205620497465, + 0.02484508603811264, + 0.0066003683023154736, + 0.0024827236775308847, + -0.0007536521297879517, + -0.01866237260401249, + 0.007410689722746611, + -0.01543536689132452, + -0.0075320592150092125, + -0.0025826753117144108, + 0.000199233676539734, + -0.011608652770519257, + 0.005743641406297684, + 0.008888543583452702, + -0.0007420506444759667, + 0.015720942988991737, + 0.0002138471172656864, + 0.01953337900340557, + -0.011865670792758465, + 0.004197963047772646, + -0.0033697932958602905, + -0.01250107679516077, + 0.005440216977149248, + -0.007603453006595373, + 0.025230612605810165, + -0.012322591617703438, + -0.005147502291947603, + -0.016920359805226326, + -0.007007313892245293, + -0.018491026014089584, + -0.010473488830029964, + -0.007317877374589443, + 0.005093956831842661, + 0.026001667603850365, + 0.0035857600159943104, + 0.02218923158943653, + 0.007010883651673794, + 0.014735706150531769, + -0.027772236615419388, + 0.004626326262950897, + -0.0026165873277932405, + 0.025316286832094193, + -0.02404547482728958, + 0.006093471776694059, + 0.004908332601189613, + -0.005179629195481539, + -0.0012708118883892894, + -0.011365912854671478, + -0.008224580436944962, + 0.00895993784070015, + 0.0025059268809854984, + -0.0006920748855918646, + -0.00987378042191267, + -0.004280065651983023, + -0.009788107126951218, + -0.0006113104755058885, + -0.010958967730402946, + -0.020618565380573273, + 0.02633007988333702, + -0.009945173747837543, + -0.003417984116822481, + -0.008524434641003609, + 0.005625841207802296, + 0.00568652618676424, + -0.008053234778344631, + -0.0016777572454884648, + 0.015863729640841484, + -0.012094130739569664, + 0.027415268123149872, + 0.00039288969128392637, + -0.03603965416550636, + -0.014421572908759117, + 0.003180599305778742, + -0.0067502958700060844, + -0.012972276657819748, + 0.012679561041295528, + -0.02246052958071232, + 0.00834595039486885, + 0.020804191008210182, + 0.014421572908759117, + -0.010344980284571648, + 0.0023131631314754486, + -0.018176892772316933, + 0.0028379084542393684, + 0.015478203073143959, + -0.0046334657818078995, + 0.004776253830641508, + 0.02033299021422863, + -0.004976156633347273, + -0.020418662577867508, + -0.017377281561493874, + 0.0011307012755423784, + 0.005540168844163418, + 0.011658628471195698, + -2.2477932361653075e-5, + -0.018590979278087616, + -0.0034019206650555134, + 0.004729847423732281, + 0.015206906013190746, + 0.004626326262950897, + 0.0051653506234288216, + 0.0013886118540540338, + 0.003566126571968198, + -0.004076593089848757, + 0.003193093463778496, + 0.006011368706822395, + -0.012051294557750225, + -0.022474808618426323, + 0.006482568569481373, + -0.018405353650450706, + 0.0060613444074988365, + -0.006468289531767368, + -0.006828829180449247, + 0.015649547800421715, + 0.002227490535005927, + -0.0025969541165977716, + -0.0009044717880897224, + 0.010766204446554184, + 0.006486138328909874, + 0.015064118430018425, + 0.002177514834329486, + 0.023502880707383156, + 0.017391560599207878, + 0.011765719391405582, + -0.011008943431079388, + -0.008974216878414154, + -0.0028860995080322027, + 0.013600543141365051, + 0.008795731700956821, + -0.0033697932958602905, + -0.021146880462765694, + -0.011244543828070164, + -0.004587059840559959, + 0.0012592104030773044, + -0.0074892230331897736, + -0.00390524766407907, + -0.012722397223114967, + -0.012693840079009533, + 0.00700017437338829, + -0.0018615965964272618, + -0.013407778926193714, + -0.006111320108175278, + 0.0067967018112540245, + -0.003225220600143075, + -0.020875584334135056, + 0.0016545542748644948, + -0.0010619846871122718, + -0.007346434984356165, + 0.007874749600887299, + 0.0030128236394375563, + -0.005997089669108391, + -0.005168920382857323, + 0.02293172851204872, + 0.005536599084734917, + -0.003353729611262679, + 0.018176892772316933, + -0.005372392944991589, + 0.0035982539411634207, + -0.0041872537694871426, + 0.00439429609104991, + 0.011365912854671478, + -0.001988320844247937, + 0.0006920748855918646, + 0.0031359782442450523, + -0.0007710544159635901, + 0.0003199340426363051, + 0.013414918445050716, + -0.0012244058307260275, + -0.019304918125271797, + -0.0034715295769274235, + -0.006368338130414486, + -0.0027772237081080675, + -0.013993209227919579, + 0.003243069164454937, + -0.02545907348394394, + 0.006068483926355839, + 0.018405353650450706, + 0.012957997620105743, + -0.009880919009447098, + -0.00840306468307972, + 0.027943583205342293, + 0.0014814239693805575, + -0.02246052958071232, + -0.017948433756828308, + -0.00035585410660132766, + -0.02163236029446125, + -0.007803356274962425, + -0.002539838897064328, + -0.011365912854671478, + 0.004808380734175444, + 0.000264826841885224, + 0.01783420331776142, + -0.002991405548527837, + 0.001520690624602139, + 0.006711028981953859, + -0.0066789016127586365, + -0.013364942744374275, + -0.000232030259212479, + -0.0002806673583108932, + 0.005665108095854521, + 0.000307886308291927, + -0.008374507538974285, + 0.0010994664626196027, + -0.006536114029586315, + -0.005011853761970997, + 0.025473352521657944, + 0.00599351990967989, + -0.021575244143605232, + -0.007789077237248421, + 0.013743330724537373, + 0.018148336559534073, + 0.018119778484106064, + -0.010716228745877743, + -0.020618565380573273, + 0.007374992594122887, + -0.0063112229108810425, + 0.021361062303185463, + 0.020561451092362404, + -0.002113260328769684, + 0.013579124584794044, + 0.004501387011259794, + 0.0224034134298563, + -0.009024192579090595, + -0.0015456784749403596, + -0.022717546671628952, + 0.011423028074204922, + 0.0025523328222334385, + 0.006175574846565723, + -0.03084217570722103, + -0.009002774022519588, + 0.007860471494495869, + -0.005443786736577749, + -0.011294519528746605, + -0.03235572576522827, + 0.00385884172283113, + -0.004333611112087965, + 0.004587059840559959, + 0.00878859218209982, + 0.011337355710566044, + -0.010716228745877743, + 0.002163236029446125, + -0.005754350684583187, + -0.009109864942729473, + 0.015335415489971638, + -0.02051861397922039, + -0.02086130529642105, + 0.00489762332290411, + -0.012572470121085644, + -0.019333474338054657, + -0.012101270258426666, + 0.01961905136704445, + 0.01876232400536537, + 0.011351633816957474, + -0.004376447759568691, + -0.0058614411391317844, + 0.005111805163323879, + 0.008167465217411518, + -0.004147987347096205, + 0.0009673876920714974, + -0.002655853983014822, + 0.001821437501348555, + 0.006275526247918606, + -0.0022935299202799797, + -0.007574895396828651, + 0.009923756122589111, + 0.016791852191090584, + -0.030213909223675728, + -0.006914501544088125, + -0.003542923601344228, + 0.02885742485523224, + 0.030984964221715927, + 0.009473973885178566, + -0.014735706150531769, + 0.0165348332375288, + -0.023445764556527138, + 0.016549112275242805, + -0.008110349997878075, + 0.007160810753703117, + 0.01206557359546423, + -0.0018526724306866527, + 0.01447868812829256, + 0.0036214569117873907, + -0.00511537492275238, + 0.006189853418618441, + -0.00470485957339406, + -0.011744300834834576, + 0.003630381077528, + -0.023245861753821373, + 0.007681986317038536, + -0.005008284002542496, + 0.030014006420969963, + -0.0026986903976649046, + 0.009188398718833923, + -0.0021935782860964537, + -0.01005940418690443, + 0.020190201699733734, + 0.009238374419510365, + -0.005790047347545624, + 0.009502531960606575, + 0.024545231834053993, + -0.003234144765883684, + 0.008874265477061272, + -0.006785992532968521, + -0.0020829178392887115, + -0.010430652648210526, + 0.027358151972293854, + -0.008131768554449081, + -0.0125153549015522, + 0.00568652618676424, + -0.024730855599045753, + -0.013522009365260601, + -0.020504334941506386, + 0.01959049329161644, + -0.007185798604041338, + -0.0030110387597233057, + -0.007157240994274616, + 0.002687981352210045, + 0.007981840521097183, + -0.004276496358215809, + 0.0017669997178018093, + 0.0024434570223093033, + 0.003926665987819433, + 0.00456564174965024, + -0.03309822455048561, + 0.03235572576522827, + 0.02651570364832878, + -0.010566300712525845, + -0.002948569133877754, + 0.024188261479139328, + -0.013793306425213814, + 0.006639635190367699, + 0.019419148564338684, + -0.0027682995423674583, + 0.005511611234396696, + 0.01080190110951662, + -0.017105985432863235, + -0.00012170433183200657, + -0.017420118674635887, + 0.0033465903252363205, + -0.009631040506064892, + 0.00970243476331234, + 0.00437287800014019, + -0.00142163154669106, + 0.003055660054087639, + -0.019690444692969322, + -0.019890347495675087, + 0.01177285797894001, + 0.02036154828965664, + 0.05411659553647041, + 0.025687534362077713, + 0.023688504472374916, + 0.006314792670309544, + 0.03512581065297127, + -0.017534349113702774, + 0.005340265575796366, + -0.004726278129965067, + -0.02049005590379238, + -0.025887437164783478, + 0.004790532402694225, + -0.00439429609104991, + 0.02413114719092846, + 0.017591463401913643, + -0.006043496076017618, + -0.005283150356262922, + -0.014321621507406235, + -0.006079192738980055, + 0.005522320047020912, + 0.007767659146338701, + -0.008188883773982525, + 0.0038481326773762703, + -0.011487282812595367, + 0.007503501605242491, + 0.01356484554708004, + 0.007839052937924862, + -0.008974216878414154, + -0.002332796575501561, + -0.028229158371686935, + 0.004269356839358807, + 0.02070423774421215, + -0.018705207854509354, + -0.012579609639942646, + -0.003476884216070175, + -0.010944688692688942, + 0.01943342760205269, + 0.011001803912222385, + 0.008038955740630627, + -0.00286646606400609, + -0.00874575600028038, + -0.015235464088618755, + -0.013536288402974606, + 0.00047878551413305104, + -0.011051779612898827, + -0.00960962288081646, + -0.011044640094041824, + 0.020261596888303757, + -0.018719486892223358, + 0.009152701124548912, + -0.007632010616362095, + 0.006653913762420416, + -0.0022899601608514786, + -0.024416722357273102, + -0.0057829078286886215, + -0.012700979597866535, + 0.02057573013007641, + 0.036382343620061874, + -0.012643864378333092, + -0.016863245517015457, + -0.022474808618426323, + -0.020004577934741974, + 0.010066543705761433, + 0.01455722190439701, + 0.014364457689225674, + -0.024973595514893532, + 0.020347269251942635, + -0.006785992532968521, + -0.012572470121085644, + -0.0031591812148690224, + -0.016820408403873444, + 0.0132864098995924, + -0.003873120527714491, + -0.008046095259487629, + -0.007242913823574781, + -0.010908992029726505, + -0.01023074984550476, + -0.022660432383418083, + 0.011694325134158134, + -0.0063112229108810425, + 0.026244407519698143, + 0.001999029889702797, + 0.02049005590379238, + 0.009159840643405914, + -0.006229119841009378, + -0.019704723730683327, + 0.0014252013061195612, + -0.006264816969633102, + 0.009523949585855007, + -0.023717062547802925, + -0.010701949708163738, + -0.01943342760205269, + -0.011865670792758465, + -0.0186909306794405, + 0.0011226694332435727, + 0.014878494665026665, + -0.015521039254963398, + -0.004569211509078741, + -0.008602968417108059, + -0.0016384905902668834, + 0.006935920100659132, + -0.0061862836591899395, + 0.007646289654076099, + 0.005379532463848591, + 0.022174954414367676, + -0.019133571535348892, + -0.04066598042845726, + 0.005843592807650566, + 0.014764264225959778, + 0.0017553981160745025, + 0.020847026258707047, + -0.011287380009889603, + -0.019419148564338684, + 0.010116519406437874, + 0.008210301399230957, + -0.012215500697493553, + 0.03189880773425102, + -0.0038945386186242104, + 0.001068231649696827, + -0.0015242602676153183, + 0.01202273741364479, + -0.019076457247138023, + 0.0033555144909769297, + 0.02521633543074131, + 0.004476399160921574, + 0.003726762952283025, + -0.007460665423423052, + -0.00022399844601750374, + 0.02234629914164543, + -0.010316422209143639, + 0.006775283720344305, + 0.012658143416047096, + -0.0050011444836854935, + -0.005418798886239529, + 0.014314481988549232, + -0.013372082263231277, + -0.004294344689697027, + 0.01844819076359272, + -0.006568241398781538, + 0.009545368142426014, + -0.0023220875300467014, + -0.02375989779829979, + 0.021032650023698807, + 0.027001183480024338, + -0.004726278129965067, + -0.01672045700252056, + -0.0066360654309391975, + -0.009952313266694546, + 0.020875584334135056, + 0.014200251549482346, + -0.015135512687265873, + 0.004979726392775774, + -0.010473488830029964, + 0.0030021145939826965, + -0.00010089969873661175, + -0.0064647202380001545, + 0.013200736604630947, + 0.008317392319440842, + 0.020832747220993042, + -0.013543427921831608, + -0.0002886992006096989, + -0.0026844115927815437, + 0.0020829178392887115, + 0.009945173747837543, + 0.0020115238148719072, + 0.00437287800014019, + -0.001237792195752263, + -0.0062683867290616035, + 0.010701949708163738, + -0.007896168157458305, + -0.011637209914624691, + -0.0022292754147201777, + 0.007467804476618767, + 0.008581549860537052, + -0.008495877496898174, + -0.006846677511930466, + -0.013821864500641823, + -0.01503556128591299, + -0.01690608263015747, + -0.04829085245728493, + -0.013443476520478725, + 0.011794276535511017, + 0.028014976531267166, + 0.01924780197441578, + 0.012358288280665874, + 0.004051605239510536, + -0.004801241680979729, + -0.0031948781106621027, + 0.007603453006595373, + 0.00809607096016407, + -0.002764729782938957, + -0.004276496358215809, + 0.012793791480362415, + -0.015363972634077072, + 0.005015423521399498, + -0.019176408648490906, + 0.006700320169329643, + 0.003969502169638872, + 0.011965622194111347, + -0.0005278688622638583, + -0.016677621752023697, + -0.0035982539411634207, + -0.03475456312298775, + -0.006446871440857649, + -0.030956406146287918 + ], + "a04d77c2-9ee7-4fce-a10e-6deba2887435": [ + -0.021859584376215935, + -0.028615184128284454, + -0.009254622273147106, + 0.010016687214374542, + -0.03627702221274376, + -0.013662239536643028, + 7.096083572832868e-5, + 0.045641493052244186, + -0.0029281130991876125, + 0.03155359625816345, + -0.013950588181614876, + 0.0362495593726635, + -0.04407617077231407, + -0.020870959386229515, + -0.027489250525832176, + -0.010682635940611362, + -0.03155359625816345, + 0.01831701211631298, + -0.0003391960053704679, + -0.013380756601691246, + 0.06744614988565445, + -0.035563014447689056, + -0.01146529708057642, + 0.02805221639573574, + -0.043472010642290115, + -0.017191080376505852, + 0.009385066106915474, + -0.014321322552859783, + -0.021337809041142464, + -0.03004319593310356, + -0.0033572036772966385, + 0.016449611634016037, + 0.024537108838558197, + 0.0033726508263498545, + 0.014238937757909298, + -0.024660686030983925, + -0.014966675080358982, + 0.037540264427661896, + -0.01631230302155018, + 0.010929792188107967, + -0.035727787762880325, + 0.02540215477347374, + -0.00011767805699491873, + -0.00010099716018885374, + 0.0006273302133195102, + 0.008616136386990547, + 0.02935665100812912, + -0.002825131407007575, + -0.009234026074409485, + -0.03644179180264473, + 0.003329741768538952, + 0.013243447057902813, + -0.01945667713880539, + 0.012330343015491962, + -0.006336807738989592, + 0.0015352856134995818, + 0.011760510504245758, + 0.07453129440546036, + 0.03841904178261757, + -0.06513936072587967, + 0.0032610874623060226, + -0.009707742370665073, + 0.011101428419351578, + -0.004287471529096365, + -0.012591229751706123, + -0.02062380313873291, + 0.008437634445726871, + -0.008959408849477768, + -0.007524529937654734, + 0.0353158600628376, + 0.013607315719127655, + 0.03364069014787674, + -0.052232321351766586, + -0.005715484730899334, + -0.014389976859092712, + -0.0005071848863735795, + 0.015460986644029617, + -0.052534401416778564, + 0.004393886309117079, + 0.025127535685896873, + -0.0346018522977829, + 0.008314056321978569, + 0.0323774479329586, + -0.006834552623331547, + 0.03328368812799454, + 0.024358605965971947, + -0.03811696171760559, + -0.04899182915687561, + -0.06036101281642914, + -0.02426248975098133, + 0.014925481751561165, + 0.031581055372953415, + 0.014074166305363178, + 0.005114757921546698, + 0.003906439524143934, + 0.009282084181904793, + 0.03169090300798416, + 0.026802705600857735, + -0.025951389223337173, + -0.026788974180817604, + -0.044790178537368774, + 0.04146730154752731, + -0.03797965496778488, + -0.01252944115549326, + 0.0006208939012140036, + -0.02608869969844818, + 0.0030825857538729906, + 0.00833465252071619, + -0.006096517201513052, + 0.027516711503267288, + 0.0174794290214777, + -0.021076923236250877, + -0.02290313132107258, + 0.012392131611704826, + 0.034409619867801666, + -0.0741468295454979, + -0.025759156793355942, + -0.0439114011824131, + 2.4444745577056892e-5, + -0.05426449328660965, + 0.0362495593726635, + 0.0303727388381958, + 0.0028062514029443264, + -0.016394687816500664, + 0.014994136057794094, + 0.006745301652699709, + -0.013909395784139633, + 0.000832435442134738, + 0.01782270148396492, + 0.002279328415170312, + 0.007092006970196962, + -0.008197343908250332, + -0.0340251550078392, + 0.020417839288711548, + -0.016724228858947754, + 0.014623402617871761, + 0.023836832493543625, + 0.04855244234204292, + -0.011355449445545673, + 0.04322485625743866, + 0.005581608507782221, + -0.017026308923959732, + -0.017273465171456337, + 0.0015661801444366574, + 0.013566123321652412, + 0.01352493092417717, + -0.05481373146176338, + 0.02770894393324852, + 0.004507165867835283, + 0.02773640677332878, + -0.04514718055725098, + -0.013744625262916088, + 0.04338962584733963, + 0.013778951950371265, + -0.01023638155311346, + 0.009007466956973076, + 0.022889399901032448, + 0.05036491900682449, + 0.00039841048419475555, + 0.02426248975098133, + -0.01894863322377205, + -0.03350338339805603, + 0.02640450932085514, + -0.009845050983130932, + -0.030784664675593376, + -0.010579654015600681, + 0.04072583094239235, + 0.011932146735489368, + -0.05162816122174263, + 0.025292307138442993, + 0.04490002244710922, + -0.03781488165259361, + -0.0035837634932249784, + -0.001846805214881897, + -0.009048659354448318, + -0.02227151021361351, + 0.006467251107096672, + 0.001822776161134243, + 0.029933350160717964, + -0.031224053353071213, + -0.0158317219465971, + -0.02707732282578945, + -0.03682625666260719, + 0.005605637561529875, + -0.01188408862799406, + 0.03646925464272499, + 0.01996472105383873, + 0.005859659053385258, + -0.019072212278842926, + 0.02029426209628582, + 0.011362315155565739, + 0.004119268152862787, + -0.0010950388386845589, + 0.043938860297203064, + -0.020253069698810577, + -0.014293860644102097, + 0.0026226008776575327, + 0.012680481187999249, + 0.016284840181469917, + 0.0320204459130764, + -0.02985096350312233, + -0.0541546456515789, + -0.07381729036569595, + 0.028011023998260498, + -0.0537976436316967, + 0.000994631671346724, + 0.01121127512305975, + -0.009364469908177853, + 0.024701878428459167, + -0.0013473440194502473, + 0.017891354858875275, + -0.00873971451073885, + 0.020857227966189384, + 0.03432723507285118, + -0.010181457735598087, + -0.01186349242925644, + -0.03298160806298256, + 0.01763046905398369, + -0.01426639873534441, + -0.002157466718927026, + -0.029960811138153076, + 0.001846805214881897, + 0.022202856838703156, + -0.021818390116095543, + -0.048415131866931915, + -0.027420595288276672, + -0.015941567718982697, + 0.03663402423262596, + -0.030125582590699196, + 0.011073966510593891, + 0.05506088584661484, + 7.117537461454049e-5, + 0.01543352473527193, + -0.040808215737342834, + -0.008753444999456406, + 0.018742671236395836, + -0.015035329386591911, + -0.015337408520281315, + 0.019882334396243095, + -0.011019042693078518, + 0.038968276232481, + 0.01633976399898529, + 0.014815635047852993, + 0.02044530212879181, + 0.02146138809621334, + 1.5339983292506076e-5, + -0.0012641004286706448, + 0.03196552023291588, + 0.011513355188071728, + -0.019415484741330147, + 0.01831701211631298, + 0.03182821348309517, + 0.026816437020897865, + 0.009398797526955605, + -0.02621227689087391, + 0.03213029354810715, + 0.012199899181723595, + -0.012797193601727486, + -0.05228724330663681, + -0.01861909218132496, + -0.004634176846593618, + -0.00429433723911643, + 0.023369982838630676, + -0.01944294571876526, + 0.049376294016838074, + -0.034217387437820435, + 0.01467832550406456, + -0.03811696171760559, + -0.006961563136428595, + 0.028450412675738335, + -0.06327196210622787, + -0.007799148093909025, + 0.0010203770361840725, + 0.026184815913438797, + -0.007222450338304043, + -0.015076521784067154, + 0.007730493322014809, + 0.038528889417648315, + 0.00792272575199604, + 0.023466099053621292, + -0.002013292396441102, + 0.019044749438762665, + 0.020225606858730316, + 0.029603807255625725, + 0.002195226727053523, + -0.02724209427833557, + 0.010916060768067837, + 0.004901929292827845, + -0.036716412752866745, + -0.022683437913656235, + -0.004671936854720116, + -0.007517664693295956, + 0.03265206515789032, + -0.021145576611161232, + 0.018371935933828354, + -0.014444900676608086, + -0.01881132461130619, + -0.011252467520534992, + 0.0029006514232605696, + 0.027750136330723763, + -0.01172618381679058, + -0.00990684051066637, + 0.03476662561297417, + -0.02703613042831421, + 0.01782270148396492, + -0.018207166343927383, + 0.025978852063417435, + -0.021406464278697968, + -0.05937238782644272, + 0.006364269647747278, + 0.04750889539718628, + 0.005876822862774134, + -0.013840741477906704, + -0.040341366082429886, + -0.026788974180817604, + 0.02179092913866043, + -0.005705186631530523, + 0.029493961483240128, + 0.006494713015854359, + -0.037210721522569656, + -0.005701753776520491, + 0.004816111177206039, + -0.04734412208199501, + 0.021076923236250877, + 0.03410753980278969, + -0.04668503999710083, + 0.013799549080431461, + 0.021365271881222725, + -0.0025161863304674625, + -0.021173039451241493, + -0.006261287722736597, + -0.02640450932085514, + -0.03762264922261238, + -0.01599649153649807, + 0.0002900651306845248, + -0.007222450338304043, + -0.026157353073358536, + -0.03773249685764313, + -0.01714988611638546, + -0.003511676099151373, + -0.01170558761805296, + 0.03940766677260399, + -0.041192684322595596, + -0.008190478198230267, + 0.02987842634320259, + 0.007346028462052345, + -0.016545727849006653, + 0.022367626428604126, + -0.003872112138196826, + -0.014486093074083328, + 0.0006818246911279857, + -0.015351139940321445, + 0.04270308092236519, + 0.001034966204315424, + 0.0034824979957193136, + -0.006800225470215082, + -0.015131445601582527, + -0.006776196416467428, + 0.009446855634450912, + 0.011122024618089199, + -0.034052617847919464, + -0.0023222374729812145, + -0.027791330590844154, + -0.015062791295349598, + 0.0009980644099414349, + 0.04701458290219307, + 0.023493560031056404, + 0.002941844053566456, + -0.005718917585909367, + 0.030427660793066025, + -0.016559459269046783, + 0.0395449735224247, + 0.023672061040997505, + 0.014541016891598701, + -0.034903932362794876, + 0.0004514031461440027, + 0.02125542424619198, + 0.007977649569511414, + -0.033723074942827225, + 0.028422951698303223, + -0.02573169581592083, + 0.018083587288856506, + 0.024111449718475342, + -0.013023752719163895, + 0.047591280192136765, + 0.021516311913728714, + -0.012330343015491962, + -0.017561813816428185, + -0.035865094512701035, + -0.01635349541902542, + -0.041796840727329254, + -0.0021488850470632315, + -0.034876469522714615, + -0.00035571597982198, + -0.021708544343709946, + 0.036194637417793274, + 0.0003960504836868495, + -0.0049568526446819305, + 0.030125582590699196, + 0.012344073504209518, + 0.012309746816754341, + -0.02952142246067524, + -0.01543352473527193, + -0.006817388813942671, + 0.023150287568569183, + 0.014554748311638832, + -0.0010967551497742534, + 0.008458230644464493, + 0.0003711632452905178, + 0.012090052478015423, + -0.013071810826659203, + 0.005468328483402729, + 0.015872914344072342, + 0.0010109370341524482, + 0.05311109870672226, + -0.014554748311638832, + 0.03287176042795181, + 0.0029126659501343966, + -0.04737158492207527, + -0.016435880213975906, + 0.048250362277030945, + 0.07222450524568558, + 0.001079591573216021, + 0.013490603305399418, + -0.029603807255625725, + 0.013497469015419483, + 0.01616126298904419, + 0.019745025783777237, + -0.005468328483402729, + -0.006827687378972769, + -0.012302881106734276, + 0.022175393998622894, + -0.026651665568351746, + -0.026788974180817604, + 0.028670107945799828, + 0.011286795139312744, + 0.025978852063417435, + -0.027626559138298035, + -0.0034824979957193136, + -0.016408419236540794, + 0.021145576611161232, + 0.018921172246336937, + 0.02426248975098133, + 0.012845251709222794, + -0.016037683933973312, + -0.031224053353071213, + -0.014115359634160995, + -0.003535705152899027, + 0.018042394891381264, + 0.02195570059120655, + 0.009103583171963692, + 0.04325231537222862, + -0.04207146167755127, + 0.020678726956248283, + -0.02309536375105381, + -0.006151440553367138, + -0.0014443184481933713, + 0.015969030559062958, + 0.028779953718185425, + 0.007648108061403036, + -0.028752492740750313, + 0.015351139940321445, + 0.030482584610581398, + -0.02510007470846176, + -0.017191080376505852, + -0.05679097771644592, + -0.01933309994637966, + 0.011822300031781197, + -0.017891354858875275, + -0.005001478362828493, + -0.030098119750618935, + 0.015735603868961334, + -0.03034527599811554, + -0.007428413722664118, + -0.03940766677260399, + 0.0031014657579362392, + 0.017603006213903427, + 0.001301860436797142, + 0.011836030520498753, + -0.01188408862799406, + -0.02026679925620556, + -0.0014099911786615849, + -0.01650453545153141, + 0.013277774676680565, + 0.04020405933260918, + -0.015268754214048386, + -0.02143392525613308, + 0.009419393725693226, + 0.03644179180264473, + -0.003800024976953864, + 0.05593966320157051, + -0.011073966510593891, + 0.0043870205990970135, + -0.01569441147148609, + -0.021543772891163826, + -0.051216237246990204, + 0.01007847674190998, + -0.021653620526194572, + -0.017369581386446953, + -0.019044749438762665, + 0.044131092727184296, + 0.012193034403026104, + 0.0093301422894001, + 0.016435880213975906, + 0.0085062887519598, + -0.012323477305471897, + -0.010806214064359665, + 0.004445376805961132, + 0.012179302982985973, + 0.007119468878954649, + -0.004366424400359392, + 0.01502159796655178, + -0.014527286402881145, + -0.0038549485616385937, + -0.012934502214193344, + 0.034903932362794876, + -0.008444500155746937, + 0.012488247826695442, + -0.00506669981405139, + -0.022738361731171608, + 0.0032679527066648006, + 0.0030860183760523796, + -0.002105975989252329, + 0.007497068028897047, + -0.0001390253019053489, + 0.016435880213975906, + -0.00973520427942276, + 0.036716412752866745, + 0.030482584610581398, + 0.005461463239043951, + -0.021406464278697968, + 0.00891821552067995, + 0.0005548139452002943, + 0.012330343015491962, + 0.018756400793790817, + -0.00581160094588995, + -1.4361120520334225e-5, + -0.018193434923887253, + -0.0009886244079098105, + 0.03528839722275734, + -0.010030418634414673, + 0.008128689602017403, + -0.02391921728849411, + -0.006216662470251322, + 0.004740591160953045, + 0.06102009490132332, + -0.026651665568351746, + 0.004771485924720764, + 0.010984715074300766, + 0.019827410578727722, + -0.014238937757909298, + 0.018522975966334343, + -0.0032284765038639307, + 0.006467251107096672, + 0.02938411384820938, + -0.008259132504463196, + 0.032432373613119125, + -0.02129661664366722, + -0.04962345212697983, + 0.005763542838394642, + 0.010270709171891212, + -0.005578175652772188, + 0.019923526793718338, + 0.002157466718927026, + -0.023136556148529053, + 0.005375645123422146, + -0.01861909218132496, + 0.008856426924467087, + -0.02176346816122532, + 0.015790527686476707, + 0.02460576221346855, + -0.002983036683872342, + 0.019841141998767853, + 0.011630067601799965, + -0.015117714181542397, + 0.00667664734646678, + 0.023493560031056404, + 0.017685391008853912, + -0.010256977751851082, + -0.003254221985116601, + 0.01767166145145893, + -0.04786589741706848, + 0.007565722800791264, + -0.01196647435426712, + -0.005715484730899334, + 0.02191450633108616, + -0.06102009490132332, + -0.03086704947054386, + 0.014129090122878551, + 0.017767777666449547, + 0.0028234152123332024, + 0.02475680224597454, + 0.036359407007694244, + 0.008231671527028084, + -0.014554748311638832, + 0.04325231537222862, + 0.0014803620288148522, + 0.03328368812799454, + -0.020060837268829346, + -0.015323678031563759, + -0.010936656966805458, + 0.00759318470954895, + 0.016243647783994675, + -0.00989310909062624, + 0.00010255261440761387, + 0.022175393998622894, + -0.0032593710348010063, + 0.0006200356874614954, + -0.012261688709259033, + 0.004788649268448353, + -0.004871034529060125, + -0.005756677594035864, + 0.011925281956791878, + -0.00655650207772851, + 0.030757203698158264, + 0.009385066106915474, + 0.034903932362794876, + 0.037210721522569656, + 0.011087696999311447, + -0.008286594413220882, + 0.02559438720345497, + -0.07348774373531342, + 0.05547281354665756, + -0.008767176419496536, + 0.03127897530794144, + -0.005564444698393345, + -0.017616737633943558, + -0.006096517201513052, + -0.023315059021115303, + 0.013332698494195938, + 0.016435880213975906, + 0.016065146774053574, + 0.04078075662255287, + -0.03644179180264473, + -0.0004316649865359068, + 0.018701478838920593, + 0.004895063582807779, + 0.039160508662462234, + 0.0007097155903466046, + 0.0033160110469907522, + -0.007757955230772495, + -0.006982159800827503, + 0.0037039087619632483, + 0.02872502990067005, + -0.01966264098882675, + 0.014788173139095306, + -0.038034576922655106, + 0.020390378311276436, + 0.02856026031076908, + 0.004754322115331888, + -0.03811696171760559, + 0.010009821504354477, + 0.03133390098810196, + 0.010977850295603275, + -0.010112803429365158, + -0.03924289718270302, + -0.024523377418518066, + 0.00799138005822897, + 0.0382542721927166, + -0.00815615151077509, + 0.005667426623404026, + 0.012714807875454426, + 0.0019583688117563725, + 0.016628112643957138, + 0.007394086569547653, + -0.0001063071540556848, + 0.013545527122914791, + 0.022848207503557205, + 0.026843897998332977, + 0.023521021008491516, + 0.005423703230917454, + 0.016628112643957138, + 0.011046504601836205, + 0.022683437913656235, + 0.011684991419315338, + -0.020170683041214943, + 0.00939193181693554, + -0.009357604198157787, + 0.030427660793066025, + -0.011897820048034191, + -0.020664995536208153, + -0.012131244875490665, + -0.039160508662462234, + -0.009446855634450912, + 0.04275800287723541, + -0.016902729868888855, + -0.01088173408061266, + 0.045614030212163925, + -0.006333374883979559, + -0.01097098458558321, + 0.01894863322377205, + 0.018687747418880463, + -0.022230317816138268, + 0.029466498643159866, + -0.009680280461907387, + 0.012433324940502644, + -0.01569441147148609, + -0.002727298764511943, + 0.04404870793223381, + -0.007428413722664118, + -0.011122024618089199, + -0.018275819718837738, + -0.0051559507846832275, + -0.016751691699028015, + -0.00598323717713356, + 0.012989426031708717, + -0.015969030559062958, + 0.010991580784320831, + 0.019415484741330147, + 0.014101628214120865, + 0.01964890956878662, + -0.01296196412295103, + -0.0008706244989298284, + 0.015323678031563759, + 0.0005805593682453036, + -0.007709897123277187, + -0.013497469015419483, + -0.0006539338501170278, + 0.004050613846629858, + 0.005547281354665756, + -0.024152642115950584, + 0.043444547802209854, + 0.01172618381679058, + -0.049568526446819305, + -0.0422636941075325, + 0.022834477946162224, + 0.005145652685314417, + 0.011025908403098583, + -0.008973139338195324, + -0.004795514978468418, + 0.05030999705195427, + 7.50908293412067e-5, + -0.014527286402881145, + 0.009172237478196621, + -0.024001603946089745, + 0.0020596340764313936, + -0.01073069404810667, + 0.00733916275203228, + 0.018193434923887253, + -0.022504935041069984, + -0.0018845652230083942, + -0.022051816806197166, + 0.024523377418518066, + 0.018344474956393242, + 0.00924089178442955, + -0.013483738526701927, + -0.004232548177242279, + -0.003436156315729022, + 0.005348183214664459, + 0.02525111474096775, + 0.03083958849310875, + -0.03116912953555584, + 0.03726564720273018, + 0.0217771977186203, + -0.035068705677986145, + 0.0008543190779164433, + -0.01270794216543436, + -0.0030585567001253366, + -0.004531194921582937, + 0.038501426577568054, + -0.027612827718257904, + -0.0032731019891798496, + 0.02474307082593441, + -0.026775244623422623, + 0.016875268891453743, + -0.005035805515944958, + -0.022875670343637466, + 0.016957653686404228, + 0.041824303567409515, + -0.03509616479277611, + 0.028505336493253708, + -0.004864169284701347, + 0.00840330682694912, + 0.0176579300314188, + 0.009611626155674458, + -0.0030413931235671043, + 0.03182821348309517, + -0.0074078175239264965, + -0.026679126545786858, + 0.02856026031076908, + -0.030921973288059235, + -0.051710546016693115, + -0.01551591046154499, + -0.053550489246845245, + 0.0051731145940721035, + -0.012845251709222794, + 0.032102830708026886, + 0.02935665100812912, + -0.0032439236529171467, + -0.010854272171854973, + -0.0032473565079271793, + 0.01767166145145893, + -0.014211475849151611, + 0.015213830396533012, + 0.009041793644428253, + -0.011245602741837502, + 0.017781507223844528, + -0.024344874545931816, + -0.004390453454107046, + 0.007346028462052345, + 0.006563367322087288, + -0.04404870793223381, + 0.015406063757836819, + 0.06469997018575668, + -0.020555147901177406, + 0.014005511999130249, + 0.01510398369282484, + 0.002057917881757021, + 0.006858581677079201, + 0.00014471074973698705, + -0.03957243636250496, + -0.003334890818223357, + 0.004864169284701347, + -0.004627311136573553, + -0.006800225470215082, + -0.01764419861137867, + -0.002425219165161252, + -0.03548062965273857, + 0.0151863694190979, + -0.011156351305544376, + 0.020870959386229515, + 0.017946278676390648, + 0.017850162461400032, + 0.019717564806342125, + -0.007023352198302746, + -0.022559858858585358, + -0.011176947504281998, + -0.012742269784212112, + 0.026830166578292847, + 0.002449248218908906, + -0.0043801553547382355, + -0.02143392525613308, + -0.016257379204034805, + 0.01801493391394615, + 0.019552793353796005, + 0.034739162772893906, + -0.01945667713880539, + -0.015227561816573143, + -0.028079679235816002, + 0.021076923236250877, + -0.0024303682148456573, + -0.03248729556798935, + -0.029741117730736732, + -0.008616136386990547, + 0.004805813077837229, + 0.015323678031563759, + 0.008238536305725574, + 0.014032973907887936, + 0.029411574825644493, + -0.003012215020135045, + 0.004136431962251663, + -0.023795640096068382, + 0.01031876727938652, + -0.014417438767850399, + -0.05083176866173744, + 0.02294432371854782, + -0.012982560321688652, + 0.007675569970160723, + 0.012316612526774406, + 0.01581799052655697, + -0.009185967966914177, + 0.005286394152790308, + 0.0009723189286887646, + -0.015007867477834225, + -0.00626472057774663, + -0.021475117653608322, + -0.024866649881005287, + 0.02345236763358116, + -0.008314056321978569, + 0.015529640950262547, + -0.00020918159862048924, + -0.0018656852189451456, + 0.009419393725693226, + -0.00043745769653469324, + -0.03526093810796738, + 0.003415559884160757, + -0.031251516193151474, + 0.0013653658097609878, + -0.016065146774053574, + 0.006113680545240641, + -0.02919188141822815, + 0.014513554982841015, + 0.0132709089666605, + -0.006889475975185633, + -0.04767366498708725, + 0.004476271569728851, + -0.008458230644464493, + -0.002809684257954359, + 0.008822099305689335, + -0.0240702573210001, + 0.008732848800718784, + 0.0051971436478197575, + -0.027654020115733147, + -0.041192684322595596, + -0.0016665873117744923, + -0.044982410967350006, + -0.02640450932085514, + -0.01896236464381218, + -0.005581608507782221, + -0.0201294906437397, + -0.0070439488627016544, + -0.026033775880932808, + -0.02688509039580822, + 0.021900776773691177, + -0.016696767881512642, + -0.01749315857887268, + 0.019731294363737106, + 0.020225606858730316, + 0.006666349247097969, + 0.03534332290291786, + 0.024303682148456573, + 0.0320204459130764, + -0.031938061118125916, + -0.012900175526738167, + 0.0386112742125988, + 0.023823101073503494, + 0.029603807255625725, + -0.0088289650157094, + -0.02442726120352745, + 0.006964995991438627, + -0.008423903957009315, + 0.006769330706447363, + 0.030153043568134308, + 0.010964118875563145, + -0.003084302181378007, + -0.012604961171746254, + -0.004256577230989933, + 0.0013507767580449581, + 0.017781507223844528, + 0.011122024618089199, + 0.0008526027086190879, + 0.018097318708896637, + 0.01732838898897171, + -0.007812879048287868, + 0.008616136386990547, + -0.03817188739776611, + 0.008856426924467087, + -0.006656051147729158, + -0.03067481704056263, + -0.021406464278697968, + -0.011582009494304657, + 0.005543848499655724, + 0.010298171080648899, + -0.012158706784248352, + 0.02014322206377983, + -0.003511676099151373, + -0.04522956535220146, + 0.013895665295422077, + 0.010250112973153591, + 0.013421948999166489, + 0.021708544343709946, + 0.04275800287723541, + 0.013147330842912197, + 0.010119669139385223, + 0.02739313431084156, + 0.022367626428604126, + -0.0009122462943196297, + 0.029988272115588188, + 0.0019497870234772563, + -0.013360160402953625, + -0.009302680380642414, + -0.003367501776665449, + -0.009645952843129635, + 0.006656051147729158, + -0.027283286675810814, + 0.013470007106661797, + -0.02261478267610073, + 0.01651826500892639, + 0.015872914344072342, + 0.017355849966406822, + -0.010009821504354477, + -0.01543352473527193, + 0.0070267850533127785, + -0.013929991982877254, + 0.0041982210241258144, + 0.001321598538197577, + -0.03245983272790909, + 0.0024784263223409653, + 0.01351119950413704, + -0.010112803429365158, + 0.0056090704165399075, + 0.018907440826296806, + 0.01698511652648449, + -0.009851916693150997, + -0.005423703230917454, + 0.006916937883943319, + 0.013147330842912197, + -0.00348421442322433, + 0.027956100180745125, + -0.016367224976420403, + 0.02555319480597973, + -0.04671250283718109, + 0.0035099599044770002, + -0.020253069698810577, + 0.0011027624132111669, + -0.023685792461037636, + -0.032240141183137894, + -8.152718510245904e-5, + -0.003128927433863282, + 0.002332535572350025, + -0.017273465171456337, + 0.024811726063489914, + -0.023356251418590546, + 0.04023151844739914, + 0.025360962375998497, + 9.41853504627943e-5, + 0.0022244048304855824, + 0.01103963889181614, + 0.011547681875526905, + 0.038693659007549286, + 0.0027067025657743216, + -0.014238937757909298, + -0.019690101966261864, + -0.028807416558265686, + 0.024344874545931816, + 0.0030671386048197746, + -0.013161062262952328, + -0.04855244234204292, + 0.0034910799004137516, + 0.03232252597808838, + -0.023479828611016273, + -0.033887848258018494, + 0.02092588320374489, + -0.009796992875635624, + -0.012440189719200134, + -0.010085341520607471, + 0.00307228765450418, + 0.0193056371062994, + 0.03517854958772659, + 0.012385266833007336, + -0.025649311020970345, + 0.008217940106987953, + 0.006989025045186281, + 0.006292182486504316, + 0.02129661664366722, + -0.02162615768611431, + 0.035563014447689056, + -0.05423703044652939, + -0.018536707386374474, + -0.0035837634932249784, + 0.01543352473527193, + 0.0005230612587183714, + -0.006168604362756014, + 0.014458631165325642, + 0.017424505203962326, + -0.010765020735561848, + -0.0007303119637072086, + 0.02110438421368599, + -0.00932327751070261, + 0.03116912953555584, + 0.002857742365449667, + -0.01510398369282484, + 0.01584545150399208, + -0.016106339171528816, + -0.0070199198089540005, + -0.0001251871435670182, + 0.0037073413841426373, + -0.0003443450841587037, + -0.0003662286908365786, + 0.015557102859020233, + -0.013566123321652412, + 0.01602395437657833, + 0.0311965923756361, + -0.021159308031201363, + 0.03468423709273338, + -0.019868604838848114, + -0.02078857459127903, + 0.029493961483240128, + 0.024537108838558197, + -0.0038343521300703287, + 0.007325432263314724, + 0.01633976399898529, + -0.0037073413841426373, + 0.02769521437585354, + 6.350538751576096e-5, + 0.003546003485098481, + -0.013559257611632347, + 0.014719518832862377, + 0.0026020044460892677, + 0.008060035295784473, + 0.009886243380606174, + -0.004901929292827845, + 0.002526484429836273, + -0.003135792911052704, + -0.009838185273110867, + -0.035892557352781296, + 0.013339563272893429, + -0.013799549080431461, + -0.006947832647711039, + 0.021722273901104927, + -0.020088298246264458, + 0.018083587288856506, + -0.003638687077909708, + -0.015488448552787304, + -0.0029281130991876125, + -0.002183212200179696, + -0.004661638755351305, + 0.055500272661447525, + 0.017067501321434975, + -0.005688022822141647, + 0.005543848499655724, + -0.013064946047961712, + 0.0043801553547382355, + -0.013621047139167786, + 0.0226010512560606, + -0.0003246069245506078, + 0.01927817612886429, + -0.024688147008419037, + 0.011561413295567036, + 0.028148332610726357, + 0.038995739072561264, + -0.0007946754922159016, + -0.002485291799530387, + 0.020719919353723526, + -0.002251866739243269, + -0.03361322730779648, + -0.049403756856918335, + -0.00239260820671916, + -0.006199498660862446, + 0.02621227689087391, + -0.017067501321434975, + -0.005434001330286264, + -0.031581055372953415, + 0.00021025432215537876, + 0.0034258582163602114, + -0.040341366082429886, + 0.0024904408492147923, + 0.013833875767886639, + 0.008018841966986656, + 0.01713615655899048, + 0.01666930504143238, + -0.01393685769289732, + 0.009137909859418869, + 0.013003156520426273, + -0.0207748431712389, + 0.006058757193386555, + -0.006697243545204401, + -0.009357604198157787, + -0.019566524773836136, + -0.018234627321362495, + 0.0004531195154413581, + 0.01617499254643917, + -0.0017009144648909569, + 0.026335855945944786, + 0.018728939816355705, + -0.004232548177242279, + -0.01112888939678669, + -0.014376246370375156, + 0.018069855868816376, + -0.01831701211631298, + -0.002481859177350998, + -0.010037283413112164, + 0.0062269605696201324, + -0.021063191816210747, + -0.03133390098810196, + -0.03353084251284599, + -0.0014142821310088038, + 0.01698511652648449, + 0.011691856198012829, + -0.012735404074192047, + -0.012453921139240265, + -0.02606123685836792, + 0.0013353294925764203, + -0.014170282520353794, + -0.014293860644102097, + -0.005128488875925541, + -0.0176579300314188, + -0.003152956487610936, + 0.013648509047925472, + 0.0007204428547993302, + 0.016765421256422997, + -0.016779152676463127, + 0.016463343054056168, + 0.01469205692410469, + -0.02323267236351967, + 0.009199699386954308, + -0.036688949912786484, + -0.006165171507745981, + -0.01213811058551073, + 0.02096707560122013, + 0.024138912558555603, + -0.012433324940502644, + -0.005849360954016447, + -0.012817789800465107, + -0.003758832346647978, + 0.009199699386954308, + -0.015090253204107285, + -0.002763342345133424, + 0.00889761932194233, + 0.003621523268520832, + 0.012316612526774406, + -0.018536707386374474, + -0.01863282360136509, + -0.008691656403243542, + -0.014746980741620064, + 0.010023552924394608, + -0.006896341685205698, + -0.02290313132107258, + -0.012604961171746254, + 0.009041793644428253, + -0.03693610429763794, + 0.014705787412822247, + 0.005306990817189217, + -0.010051014833152294, + 0.010325632058084011, + -0.006762465462088585, + -0.017026308923959732, + 0.0034018289297819138, + 0.019992182031273842, + -0.005458030384033918, + -0.006099949590861797, + 0.010964118875563145, + -0.0060621895827353, + -0.005434001330286264, + 0.0014031257014721632, + 0.027818791568279266, + -0.008011977188289165, + -0.002291342942044139, + 0.004218817222863436, + -0.008492558263242245, + -0.0026054370682686567, + 0.005097594577819109, + -0.010202053934335709, + -0.006075920537114143, + 0.008046303875744343, + -0.013264044187963009, + -0.01095725316554308, + 0.006940966937690973, + 0.011808568611741066, + -0.0030293785966932774, + 0.01897609606385231, + 0.02228524163365364, + 0.000816559127997607, + 0.013827010057866573, + -0.007318566553294659, + -0.0009989225072786212, + 0.005073565524071455, + -0.02872502990067005, + -0.00028598878998309374, + 0.009680280461907387, + 0.019388021901249886, + 0.0029040840454399586, + 0.017932547256350517, + -0.024468453601002693, + 0.021406464278697968, + 0.03756772726774216, + -0.009275219403207302, + 0.005131921730935574, + 0.00807376578450203, + -0.02044530212879181, + -0.011266198940575123, + 0.011808568611741066, + -0.024619493633508682, + 0.009618490934371948, + -0.03597494214773178, + 0.007428413722664118, + 0.012241092510521412, + -0.002703269710764289, + -0.028093408793210983, + 0.0033932472579181194, + -0.014623402617871761, + -0.005883688107132912, + 0.009234026074409485, + -0.0032250438816845417, + -0.033393535763025284, + 0.0036077925469726324, + 0.01617499254643917, + -0.01598276011645794, + 0.005993535276502371, + -0.025855273008346558, + 0.006254422478377819, + 0.00973520427942276, + -0.050721924751996994, + 0.02987842634320259, + -0.012241092510521412, + 0.03679879754781723, + -0.00013527076225727797, + -0.019882334396243095, + -0.01979994960129261, + 0.0020630669314414263, + 0.009714608080685139, + 0.025704234838485718, + -0.009460586123168468, + -0.013161062262952328, + -0.02310909517109394, + -0.01780897006392479, + 0.0029246804770082235, + 0.0176579300314188, + -0.03435469791293144, + -0.010057879611849785, + 0.02902710996568203, + 0.0026740916073322296, + 0.0002329961134819314, + -0.0217771977186203, + -0.025141267105937004, + 0.014788173139095306, + -0.007291104644536972, + 0.01963517814874649, + 0.00453462777659297, + -0.012831520289182663, + -0.00692723598331213, + 0.025869004428386688, + 0.010833675973117352, + -0.015282485634088516, + -0.008423903957009315, + 0.008945677429437637, + 0.007256777491420507, + -0.006899774540215731, + 0.00016165983106475323, + -0.02540215477347374, + 0.008815234526991844, + 0.01993725821375847, + 0.008842695504426956, + 0.009604760445654392, + 0.0124470554292202, + -0.012028262950479984, + -0.012144976295530796, + -0.010572788305580616, + -0.004170759115368128, + 0.003686745185405016, + 0.02092588320374489, + -0.004795514978468418, + -0.00551981944590807, + 0.013119869865477085, + 0.0014434602344408631, + 0.041824303567409515, + -0.00247327727265656, + 0.00033812326728366315, + 0.0025487972889095545, + 0.01716361753642559, + -0.02823071926832199, + 0.0023342519998550415, + 0.0032473565079271793, + -0.008190478198230267, + -0.0054099722765386105, + 0.005331019870936871, + -0.0051868450827896595, + -0.004390453454107046, + -0.016367224976420403, + 0.0015910674119368196, + 0.0006406320608220994, + -0.0038789776153862476, + -0.00029070876189507544, + -0.02853279747068882, + 0.011918416246771812, + -0.008513154461979866, + -0.003923602867871523, + -0.011691856198012829, + 0.016751691699028015, + 0.0064020296558737755, + 0.009941167198121548, + -0.008169881999492645, + 0.02769521437585354, + 0.013339563272893429, + -0.0065668001770973206, + -0.017218541353940964, + -0.0026929716113954782, + -0.01878386363387108, + -0.021639889106154442, + 0.008197343908250332, + -0.012199899181723595, + -0.008883888833224773, + 0.023369982838630676, + 0.029301729053258896, + -0.004019719082862139, + -0.0003533559793140739, + -0.016531996428966522, + 0.004036882892251015, + 0.02225777879357338, + -0.005509521346539259, + -0.014225206337869167, + 0.018591631203889847, + -0.012000801973044872, + -0.0035837634932249784, + -0.018426859751343727, + 0.012213630601763725, + -0.0005179121508263052, + 0.015296216122806072, + -0.011609471403062344, + 0.0038892757147550583, + -0.007167526986449957, + -0.0021162740886211395, + 0.02061007171869278, + -0.014293860644102097, + 0.024784263223409653, + 0.012412728741765022, + -0.010105937719345093, + -0.014486093074083328, + 0.014417438767850399, + -0.0004951703594997525, + -0.01103963889181614, + -0.009247757494449615, + 0.014952943660318851, + -0.0019583688117563725, + 0.03451946750283241, + 0.012453921139240265, + -0.00714006507769227, + -0.01270107738673687, + -0.022202856838703156, + 0.0008942245040088892, + 0.00966654997318983, + 0.02788744680583477, + 0.004476271569728851, + 0.03138882294297218, + -0.014472362585365772, + 0.003913304768502712, + -0.02326013520359993, + -0.014650864526629448, + 0.007194988429546356, + 0.005152517929673195, + -0.017918817698955536, + -0.02229897305369377, + 0.004589551594108343, + 0.015708142891526222, + 0.0021403031423687935, + 0.0034344398882240057, + 0.014087897725403309, + 0.005729215685278177, + 0.02853279747068882, + -0.046080879867076874, + -0.01796001009643078, + -0.020692458376288414, + 0.01585918292403221, + -0.01467832550406456, + 0.029082033783197403, + -0.0010984715772792697, + 0.008904485031962395, + -0.021351540461182594, + 0.01088859885931015, + 0.0010315334657207131, + 0.012639287859201431, + 0.002938411431387067, + 0.03597494214773178, + -0.005911150015890598, + 0.020870959386229515, + -0.01172618381679058, + 0.012055724859237671, + -0.019703833386301994, + 0.013058080337941647, + 0.010854272171854973, + 0.01211751438677311, + -0.007785417139530182, + -0.008719117380678654, + 0.0017318089958280325, + 0.010380555875599384, + 0.015502179972827435, + -0.016765421256422997, + -0.005272663198411465, + -0.010449210181832314, + -0.003827486652880907, + -0.02129661664366722, + 0.015914106741547585, + -0.019346829503774643, + 0.006862014532089233, + -0.0011611187364906073, + -0.00027740697260014713, + -0.013799549080431461, + -0.008595540188252926, + -0.0011499624233692884, + 0.020088298246264458, + -0.0217771977186203, + -0.01469205692410469, + -0.005921448115259409, + 0.003352054627612233, + -0.005317288916558027, + 0.004548358730971813, + 0.009817589074373245, + -0.0037897268775850534, + 0.005306990817189217, + 0.0013001440092921257, + -0.01443117018789053, + 0.03018050640821457, + -0.006041593383997679, + 0.02853279747068882, + -0.012563767842948437, + -0.0065908292308449745, + -0.03427231311798096, + -0.038858432322740555, + -0.016133800148963928, + 0.016710497438907623, + -0.026349585503339767, + 0.0013070094864815474, + -0.04273054376244545, + 0.007757955230772495, + -0.00841703824698925, + 0.03959989920258522, + -0.000962020771112293, + 0.012900175526738167, + -0.007840340957045555, + 0.014650864526629448, + -0.017740314826369286, + -0.015914106741547585, + 0.018234627321362495, + 0.0161887239664793, + 0.033558305352926254, + -0.013037484139204025, + 0.004342395346611738, + 0.026816437020897865, + -0.002258731983602047, + -0.004857304040342569, + 0.0043320972472429276, + 0.0035871961154043674, + -0.0028234152123332024, + 0.02096707560122013, + -0.01684780791401863, + 0.0030207966919988394, + 0.01047667209059, + -0.012920771725475788, + -0.021186769008636475, + -0.01966264098882675, + 0.006268153432756662, + -9.069899533642456e-5, + -0.005070132669061422, + 0.007297970354557037, + -0.004270308185368776, + -0.01038742158561945, + 0.011266198940575123, + 0.0033846653532236814, + -0.029136957600712776, + 0.002696404466405511, + -0.00027247241814620793, + 0.01401924341917038, + 0.017767777666449547, + 0.03053750842809677, + -0.008471962064504623, + 0.0035219744313508272, + -0.022147933021187782, + -0.008307190611958504, + 0.014994136057794094, + 0.009021197445690632, + 0.010332497768104076, + 0.018083587288856506, + -0.01750688999891281, + -0.019717564806342125, + 0.008760310709476471, + 0.00898686982691288, + 0.021571235731244087, + 0.009261487983167171, + -0.002878338797017932, + -0.023150287568569183, + -0.0072087193839251995, + -0.0020956776570528746, + 0.012920771725475788, + 0.007641242817044258, + 0.007243046537041664, + 0.02805221639573574, + -0.008396442048251629, + -0.005760109983384609, + 0.01664184406399727, + 0.0013885366497561336, + -0.0031151967123150826, + -0.005825331900268793, + 0.01730092614889145, + 0.0017034891061484814, + -0.004043748136609793, + -0.016229916363954544, + -0.011719318106770515, + 0.02061007171869278, + -0.017932547256350517, + 0.0009010899229906499, + -0.0311965923756361, + 0.016628112643957138, + 0.007435279432684183, + 0.013236582279205322, + -0.01682034507393837, + 0.00667664734646678, + -0.02295805513858795, + -0.01929190568625927, + 0.015529640950262547, + -0.009055525064468384, + 0.0015824855072423816, + 0.004490002524107695, + 0.0059489100240170956, + -0.019031019881367683, + -0.0020476195495575666, + 0.015049059875309467, + 0.010442345403134823, + -0.005011776462197304, + 0.002569393487647176, + -0.006906639784574509, + -0.005509521346539259, + -0.0045929839834570885, + 0.06008639186620712, + -0.0170125775039196, + 0.009872512891888618, + 0.009941167198121548, + -0.001055562519468367, + -0.019703833386301994, + -0.002335968427360058, + 0.016737960278987885, + 0.019099673256278038, + 0.0012426458997651935, + -0.005554146599024534, + -0.003036244073882699, + 0.036551639437675476, + 0.010510999709367752, + -0.026514356955885887, + -0.0024801427498459816, + 0.01698511652648449, + 0.01179483812302351, + 0.003206163877621293, + 0.014376246370375156, + 0.00031130510615184903, + 0.004112402908504009, + -0.001091606100089848, + -0.00891135074198246, + -0.013744625262916088, + 0.02954888343811035, + -0.009961763396859169, + -0.007689300924539566, + 0.020884690806269646, + 0.0055919066071510315, + 0.00755199184641242, + -0.012103782966732979, + -0.0038583811838179827, + -0.013813279569149017, + 0.0017850162694230676, + -0.0011714169522747397, + 0.012536306865513325, + -0.0024543972685933113, + -0.0037485340144485235, + 0.003221611026674509, + 0.0038652466610074043, + -0.008018841966986656, + 0.0043801553547382355, + 0.014829365536570549, + -0.02442726120352745, + 0.005725782830268145, + -0.023685792461037636, + 0.005845928099006414, + -0.008877023123204708, + -0.0026243170723319054, + 0.01633976399898529, + -0.023534752428531647, + 0.02295805513858795, + 0.014513554982841015, + 0.026500625535845757, + -0.0016562890959903598, + 0.01598276011645794, + 0.011122024618089199, + -0.0043629915453493595, + 0.004084940999746323, + -0.012927636504173279, + -0.01569441147148609, + 0.010655174031853676, + -0.016271108761429787, + -0.013291505165398121, + -0.0027805061545222998, + -0.006999323144555092, + -0.008307190611958504, + -0.00824540201574564, + -0.026445701718330383, + -0.034080080687999725, + -0.011073966510593891, + 0.005052968859672546, + -0.004050613846629858, + -0.011602605693042278, + 0.020362915471196175, + -0.0009191117133013904, + 0.025278575718402863, + 0.028175795450806618, + -0.0036249561235308647, + -0.004671936854720116, + 0.01386820338666439, + -0.02639077790081501, + -0.011025908403098583, + 0.011122024618089199, + -0.019250713288784027, + 0.018564168363809586, + -0.05453911051154137, + 0.0083277877420187, + -0.02257359027862549, + -0.0323774479329586, + -0.014238937757909298, + 0.015886643901467323, + 0.01476071123033762, + 0.000699417432770133, + -0.007682435214519501, + 0.011650663800537586, + 0.013298370875418186, + -0.008959408849477768, + 0.0016991981538012624, + -0.012440189719200134, + 0.009783262386918068, + -0.011513355188071728, + 0.0016073727747425437, + -0.022848207503557205, + -0.012440189719200134, + 0.027351941913366318, + -0.01255003735423088, + -0.02537469193339348, + 0.007346028462052345, + 0.004304635338485241, + -0.006906639784574509, + 0.005131921730935574, + -0.004057479090988636, + 0.005663993768393993, + 0.0083277877420187, + 0.028999648988246918, + 0.011444699950516224, + -0.031224053353071213, + -0.0006882610614411533, + 0.0004990322049707174, + 0.02375444769859314, + 0.005777273792773485, + -0.02360340766608715, + -0.005876822862774134, + -0.0026775244623422623, + -0.010765020735561848, + -0.020651264116168022, + -0.014087897725403309, + -0.016106339171528816, + 0.01963517814874649, + 0.014444900676608086, + 0.030125582590699196, + 0.005406539421528578, + 0.022477474063634872, + -0.004112402908504009, + -0.024674417451024055, + 0.010922926478087902, + -0.004644474945962429, + -0.02129661664366722, + 0.01767166145145893, + -0.009508644230663776, + 0.010380555875599384, + 0.01734211854636669, + 0.00791586097329855, + 0.0011911550536751747, + -0.007737359032034874, + -0.013675970956683159, + 0.002461262745782733, + -0.0023016410414129496, + 0.013648509047925472, + -0.026788974180817604, + 0.02210673876106739, + -0.024166373535990715, + 0.003156389342620969, + -0.004153595305979252, + -0.022807015106081963, + 0.018399398773908615, + -0.021008267998695374, + -0.004864169284701347, + 0.02689882181584835, + -0.010195189155638218, + -0.00982445478439331, + 0.002291342942044139, + -0.011932146735489368, + 0.005887120962142944, + 0.017781507223844528, + 0.02128288522362709, + 0.011087696999311447, + -0.00371077423915267, + 0.025031419470906258, + 0.004888198338449001, + 0.023315059021115303, + -0.017781507223844528, + 0.0001753907126840204, + -0.008265998214483261, + -0.004218817222863436, + 0.000590428477153182, + -0.014719518832862377, + 0.0016537145711481571, + 0.002109408611431718, + -0.005327587015926838, + 0.004469405859708786, + -0.010922926478087902, + -0.028285641223192215, + -0.006511876359581947, + 0.004290904384106398, + 0.002842295216396451, + 0.010847406461834908, + 0.0003237487399019301, + -0.005245201755315065, + 0.017122425138950348, + 0.0017627035267651081, + -0.0026929716113954782, + 0.009728338569402695, + -0.007249912247061729, + 0.03677133470773697, + 0.020541418343782425, + 0.0333111509680748, + 0.0015189801342785358, + -0.010373690165579319, + -0.0007007046951912344, + 0.00849942397326231, + -0.005742946639657021, + -0.010277573950588703, + 0.003848083084449172, + -0.009639088064432144, + -0.0024286520201712847, + 0.00610338244587183, + 0.005200576037168503, + -0.028642645105719566, + -0.02442726120352745, + 0.012151841074228287, + 0.00025681062834337354, + 0.007023352198302746, + 0.004507165867835283, + 0.021379001438617706, + 0.02394668012857437, + -0.007730493322014809, + 0.0005814175237901509, + 0.00557131040841341, + -0.002651778981089592, + 0.03616717457771301, + 0.009934302419424057, + -0.023012978956103325, + -0.002988185966387391, + 0.0019412051187828183, + 0.021983161568641663, + 0.02538842335343361, + 0.004208519123494625, + 0.02047276310622692, + -0.014829365536570549, + -0.006748734507709742, + 0.010847406461834908, + 0.004771485924720764, + 0.023521021008491516, + -0.0007346028578467667, + -0.011609471403062344, + 0.004479704424738884, + -0.018728939816355705, + -0.004922525491565466, + -9.45608044276014e-5, + -0.006491280160844326, + -0.02026679925620556, + -0.008252267725765705, + -0.011684991419315338, + -0.010483537800610065, + -0.0034018289297819138, + -0.012762865982949734, + -2.2607702703680843e-5, + -0.023672061040997505, + 0.0016717363614588976, + 0.008623001165688038, + -0.0018365071155130863, + 0.020335454493761063, + -0.013662239536643028, + -0.0030911676585674286, + 0.01419774442911148, + -0.00039948319317772985, + -0.02308163233101368, + 0.012852117419242859, + 0.015708142891526222, + -0.02441352978348732, + -0.023974141106009483, + 0.01337389089167118, + 0.0010100789368152618, + -0.03657910227775574, + 0.00949491374194622, + -0.006422625854611397, + 0.0006311920587904751, + 0.009343873709440231, + 0.0012752567417919636, + 0.002114557661116123, + 0.013669105246663094, + 0.0039270357228815556, + -0.0049671512097120285, + 0.004634176846593618, + -0.028477875515818596, + 0.01632603257894516, + 0.014856827445328236, + -0.0062338258139789104, + 0.01055905781686306, + 0.014417438767850399, + 0.0010418315650895238, + 0.009707742370665073, + -0.03001573495566845, + 0.03163598105311394, + 0.012694211676716805, + -0.020170683041214943, + 0.017534352838993073, + -0.007545126602053642, + -0.007723628077656031, + -0.01668303646147251, + 0.008636732585728168, + 0.011170082725584507, + 0.01944294571876526, + -0.003800024976953864, + -0.021516311913728714, + 0.02505888231098652, + -0.04171445593237877, + -0.005262365099042654, + -0.008684790693223476, + -0.0158317219465971, + -0.006745301652699709, + -0.008767176419496536, + 0.004060911945998669, + 0.03482154756784439, + 0.0023136555682867765, + -0.0030619893223047256, + 0.016875268891453743, + 0.002535066334530711, + -0.003755399491637945, + -0.011842896230518818, + 0.0015206965617835522, + -0.017383312806487083, + -0.013724029064178467, + 0.0021317212376743555, + 0.01845432259142399, + -0.006940966937690973, + 0.003868679516017437, + 0.010140265338122845, + -0.012186168693006039, + 0.0026998370885849, + -0.01484309695661068, + 0.005681157577782869, + -0.022971786558628082, + 0.024303682148456573, + 0.0191271360963583, + 0.004565522540360689, + -0.0193056371062994, + 0.0059969681315124035, + 0.01779523864388466, + -0.03163598105311394, + 0.0001433162105968222, + 0.0019394888076931238, + 0.009268353693187237, + -0.020349185913801193, + -0.014170282520353794, + 0.011156351305544376, + -0.013325832784175873, + -0.011932146735489368, + -0.014046704396605492, + 0.0034413053654134274, + -0.010298171080648899, + 0.005125056486576796, + -0.009144775569438934, + 0.013531796634197235, + -0.009659684263169765, + 0.01861909218132496, + 0.017094964161515236, + -0.0176579300314188, + 0.0009311262401752174, + 0.019374292343854904, + 0.025278575718402863, + -0.007332297507673502, + -0.008355248719453812, + -0.003978526685386896, + 0.009433124214410782, + -0.01172618381679058, + 0.013703432865440845, + 0.009879378601908684, + 0.013332698494195938, + 0.004881333094090223, + -0.013902530074119568, + 0.003981959540396929, + 0.005176546983420849, + 0.004239413421601057, + 0.012364670634269714, + -0.029933350160717964, + 0.007737359032034874, + 0.0035631670616567135, + -0.020321723073720932, + -0.0029401276260614395, + -0.0021437357645481825, + -0.010119669139385223, + 0.008870157413184643, + 0.006371134892106056, + -0.01095725316554308, + -0.02096707560122013, + -0.005626233760267496, + 0.021145576611161232, + 0.000219265217310749, + 0.0017515472136437893, + -0.016765421256422997, + -0.023699523881077766, + 0.015158907510340214, + 0.03127897530794144, + 0.004627311136573553, + 0.0025247682351619005, + 0.001640841830521822, + -0.013476872816681862, + -0.003007065737619996, + 0.007222450338304043, + 0.007455875631421804, + -0.025841543450951576, + 0.03303653001785278, + -0.014705787412822247, + 0.005574743263423443, + -0.013126734644174576, + 0.0026809570845216513, + -0.010895464569330215, + -0.013133600354194641, + 0.028752492740750313, + 0.0009671698790043592, + 0.0008701953920535743, + -0.014170282520353794, + 0.0004921667277812958, + -0.0039682285860180855, + 0.026006313040852547, + -0.006934101693332195, + 2.3130656700232066e-5, + 0.017712853848934174, + -0.011355449445545673, + -0.002377161057665944, + 0.01006474532186985, + -0.012323477305471897, + -0.0011508205207064748, + -0.006505011115223169, + 0.005475194193422794, + -0.004260010085999966, + 0.004788649268448353, + -0.008904485031962395, + 0.011691856198012829, + 0.010607115924358368, + -0.006333374883979559, + -0.01767166145145893, + 0.01460967119783163, + 0.007723628077656031, + 0.00194807059597224, + 0.01255003735423088, + -0.005742946639657021, + 0.006930668838322163, + -0.027461787685751915, + 0.003164971014484763, + -0.02492157369852066, + -0.012302881106734276, + 0.022340165451169014, + -0.009961763396859169, + -0.008787772618234158, + 0.012955098412930965, + -0.028587721288204193, + -0.0003904722980223596, + -0.023369982838630676, + 0.0022020922042429447, + 0.0020356050226837397, + 0.004328664392232895, + 0.006762465462088585, + 0.012440189719200134, + -0.007387220859527588, + -0.00039068685146048665, + -0.014870558865368366, + -0.002111125038936734, + -0.008856426924467087, + -0.003693610429763794, + -0.01929190568625927, + -0.02143392525613308, + -0.008259132504463196, + -0.012337208725512028, + 0.00779228238388896, + -0.020019643008708954, + 0.018248358741402626, + 0.01476071123033762, + -0.00714006507769227, + -0.011080831289291382, + -0.011485893279314041, + 0.0034052617847919464, + 0.02823071926832199, + -0.0028766223695129156, + -0.004500300623476505, + 0.005221172701567411, + -0.02029426209628582, + 0.030455123633146286, + 0.002231270307675004, + 0.004016286693513393, + 0.012474517337977886, + 0.023136556148529053, + 0.005234903190284967, + 0.0013713730731979012, + 0.00045011588372290134, + -0.0026243170723319054, + -0.00966654997318983, + -0.0002114343224093318, + -0.013991781510412693, + -0.005945477169007063, + 0.013305236585438251, + -0.0047920821234583855, + 0.0005346466787159443, + 0.02784625254571438, + -0.019566524773836136, + -0.009419393725693226, + 0.015007867477834225, + 0.019058480858802795, + 0.02770894393324852, + -0.015419794246554375, + 0.01255003735423088, + 0.0020802305079996586, + 0.011362315155565739, + 0.023548483848571777, + -0.011005311273038387, + -0.001188580528832972, + 0.03773249685764313, + -0.0005363630480132997, + -0.008691656403243542, + -0.0080051114782691, + 0.004853871185332537, + -0.005207441747188568, + -0.004026584792882204, + 0.018069855868816376, + 0.015447256155312061, + 0.0061548734083771706, + 0.005392808932811022, + -0.016271108761429787, + -0.008410172536969185, + -0.0019206088036298752, + -0.00671784020960331, + 0.027351941913366318, + -0.010346229188144207, + 9.413171937922016e-5, + 0.0074146827682852745, + -0.0024955901317298412, + -0.0032731019891798496, + -0.016943924129009247, + 9.697444329503924e-5, + -0.00047028312110342085, + 0.004143297206610441, + 0.0029281130991876125, + 0.009343873709440231, + 0.00044968677684664726, + -0.011163217015564442, + -0.016724228858947754, + -0.011932146735489368, + 0.028340565040707588, + 0.028779953718185425, + -0.023685792461037636, + 0.006237258668988943, + 0.024633225053548813, + 0.013648509047925472, + 0.002744462573900819, + 0.018399398773908615, + -0.010449210181832314, + 0.01963517814874649, + 0.0010658606188371778, + 0.02720090188086033, + 0.008087496273219585, + 0.009398797526955605, + -0.004098671954125166, + 0.018852517008781433, + 0.0008950826595537364, + -0.00900060124695301, + 0.01476071123033762, + -0.015268754214048386, + 0.002979604061692953, + 0.015900375321507454, + 0.016724228858947754, + 0.011781107634305954, + -0.00791586097329855, + 0.010655174031853676, + -7.745082257315516e-5, + -0.011575143784284592, + 0.025306038558483124, + -0.0024749937001615763, + 0.0019171760650351644, + -0.005633099470287561, + -0.015914106741547585, + -0.006450087763369083, + 0.013730893842875957, + 0.011218140833079815, + -0.01713615655899048, + 0.006014131475239992, + -0.00759318470954895, + -0.0014039839152246714, + 0.0009439989808015525, + 0.005845928099006414, + 0.01896236464381218, + -0.012453921139240265, + 0.013772087171673775, + -0.03666148707270622, + 0.015763066709041595, + 0.01649080403149128, + -0.003305712714791298, + -0.0024629791732877493, + -0.0072018541395664215, + 0.0025882734917104244, + 0.0022244048304855824, + 0.0015404346631839871, + 0.0201294906437397, + -0.005231470800936222, + 0.005286394152790308, + 0.018413128331303596, + -0.024468453601002693, + 0.022985516116023064, + 0.01270794216543436, + 4.301631634007208e-5, + -0.006309345830231905, + -0.0015447256155312061, + -0.0007058538030833006, + 0.0037897268775850534, + -0.0039030066691339016, + -0.012769731692969799, + -0.03383292257785797, + -0.009460586123168468, + -0.010874868370592594, + -0.006872312631458044, + 0.0041570281609892845, + 0.01915459707379341, + -0.003099749330431223, + 0.007222450338304043, + -0.007902129553258419, + 0.017026308923959732, + 0.004850438330322504, + 0.01378581766039133, + -0.009474316611886024, + 0.0031804183963686228, + -0.02131034806370735, + 0.00841703824698925, + 0.001564463716931641, + 0.011760510504245758, + -0.013566123321652412, + 0.019923526793718338, + -0.002934978576377034, + 0.011829165741801262, + 0.010936656966805458, + 0.0020184414461255074, + 0.004345828201621771, + -0.0022295538801699877, + -0.014444900676608086, + 0.02704986184835434, + 0.007538260892033577, + 0.020829766988754272, + -0.015955299139022827, + 0.0316634438931942, + 0.006662916392087936, + -0.006130844354629517, + -0.03284429758787155, + 0.0019497870234772563, + -0.0032525055576115847, + -0.02014322206377983, + 0.010943522676825523, + -0.007764820475131273, + -0.01815224252641201, + -0.0008993735536932945, + 0.0032473565079271793, + -0.0015069656074047089, + 0.017685391008853912, + 0.0019720997661352158, + -0.005138786975294352, + 0.0019291905919089913, + -0.0067967926152050495, + 0.003642119700089097, + -0.01170558761805296, + -0.007661839015781879, + 0.004709696862846613, + -0.005801302846521139, + 0.01731465756893158, + 0.007174392230808735, + -0.003365785349160433, + 0.005221172701567411, + -0.0316634438931942, + 0.04122014343738556, + -8.361900108866394e-5, + -0.011156351305544376, + -0.021818390116095543, + 0.007874667644500732, + 0.013119869865477085, + 0.006123978644609451, + -0.008540616370737553, + 0.004641042090952396, + 0.011485893279314041, + -0.021379001438617706, + 0.011698721908032894, + -0.014115359634160995, + 0.009048659354448318, + -0.031608518213033676, + -0.00168889993801713, + -0.0008774899761192501, + 0.03418992832303047, + -0.0025282008573412895, + -0.035068705677986145, + 0.03067481704056263, + 0.0034052617847919464, + 0.006899774540215731, + 0.0029899021610617638, + 0.017932547256350517, + 0.019511600956320763, + -1.2383282410155516e-5, + 0.008671059273183346, + 0.0030551240779459476, + -0.027434326708316803, + 0.00848569255322218, + -0.002627749927341938, + -0.015062791295349598, + 0.00014739256585016847, + -0.014911751262843609, + 0.008382710628211498, + 1.95370248547988e-5, + 0.01146529708057642, + -0.02637704834342003, + -0.00333832367323339, + -0.007146930322051048, + -0.026953745633363724, + -0.02047276310622692, + 0.015776798129081726, + 0.0015575983561575413, + -0.005461463239043951, + 0.001766136265359819, + -0.007689300924539566, + -0.002526484429836273, + 0.01981368102133274, + 0.017026308923959732, + -0.00012808349856641144, + 0.014403708279132843, + 0.003451603464782238, + 0.004819544032216072, + 0.007682435214519501, + 0.01229601539671421, + -0.029136957600712776, + -0.014039839617908001, + 0.009556702338159084, + -0.013730893842875957, + -0.008211074396967888, + -0.0069787269458174706, + 0.00667664734646678, + 0.0028920695185661316, + 0.02295805513858795, + 0.0026226008776575327, + -0.021076923236250877, + -0.002105975989252329, + 0.004781784024089575, + -0.02180466055870056, + 0.006487847305834293, + 0.04421347752213478, + 0.008835830725729465, + -0.008616136386990547, + 0.004822976421564817, + -0.017369581386446953, + 0.008217940106987953, + 0.006446654908359051, + 0.013861337676644325, + -0.0013593585463240743, + 0.027434326708316803, + -0.032404910773038864, + -0.011650663800537586, + 0.0032319091260433197, + -0.007490202784538269, + 0.023699523881077766, + 0.0026946880389004946, + -0.006295614875853062, + 0.004359558690339327, + -0.00031709784525446594, + 0.030564971268177032, + -0.013209120370447636, + -0.0024526810739189386, + 0.031086744740605354, + -0.023301327601075172, + 0.014060435816645622, + -0.012357804924249649, + -0.007387220859527588, + -0.023699523881077766, + 0.0013911111745983362, + -0.004860736429691315, + -0.0009251189767383039, + -3.293269037385471e-5, + -0.014184013940393925, + -0.004565522540360689, + -0.010950388386845589, + 0.004682234954088926, + 0.008465096354484558, + -0.011279929429292679, + -0.013929991982877254, + 0.030482584610581398, + -0.00470626400783658, + -0.009316411800682545, + -0.010497268289327621, + -0.02014322206377983, + 0.004277173429727554, + -0.026116160675883293, + -0.027434326708316803, + 0.008066900074481964, + -0.008265998214483261, + -0.012996291741728783, + -0.0010126534616574645, + -0.03004319593310356, + -0.013497469015419483, + -0.0001407416712027043, + -0.013305236585438251, + 0.0016236782539635897, + 0.003824054030701518, + 0.02343863621354103, + 0.005588473752140999, + 0.01565321907401085, + 0.01978621818125248, + 0.007524529937654734, + -0.014815635047852993, + 0.014238937757909298, + 0.021681081503629684, + -0.012824655510485172, + -0.008211074396967888, + -0.0072087193839251995, + -0.016408419236540794, + 0.00915850605815649, + 0.01064830832183361, + -0.005035805515944958, + -0.00498774740844965, + -0.010160861536860466, + -0.017053769901394844, + 0.007181257475167513, + 0.003576898016035557, + 0.0014975256053730845, + 0.016779152676463127, + 0.0023754446301609278, + 0.013140466064214706, + 0.017259733751416206, + -0.006250989623367786, + 0.005543848499655724, + 0.01931936852633953, + -0.0033228762913495302, + -0.011376045644283295, + -0.01551591046154499, + -0.010126534849405289, + 0.0015284201363101602, + -0.011698721908032894, + 0.0015069656074047089, + 0.013600450940430164, + -0.011225005611777306, + -0.03364069014787674, + 0.003087734803557396, + -0.010806214064359665, + 0.008025707677006721, + 0.010977850295603275, + -0.025649311020970345, + -0.016779152676463127, + -0.018866248428821564, + -0.013236582279205322, + 0.006106815300881863, + -0.0013113004388287663, + -0.004641042090952396, + 0.003995690029114485, + 0.002842295216396451, + 0.03581017255783081, + 0.006872312631458044, + 0.005121623631566763, + -0.024839187040925026, + 0.010202053934335709, + 0.02537469193339348, + 0.010765020735561848, + -0.001584201934747398, + 0.02093961276113987, + -0.02426248975098133, + 0.001503532868809998, + -0.018934903666377068, + 0.0007569155422970653, + 0.014513554982841015, + 0.003499661572277546, + -0.012110648676753044, + 0.00714006507769227, + -0.004963718354701996, + -0.014980405569076538, + -0.007092006970196962, + 0.014952943660318851, + -0.014362514950335026, + 0.004390453454107046, + 0.02621227689087391, + -0.012680481187999249, + 0.013023752719163895, + 0.022985516116023064, + -0.01309927273541689, + -0.017616737633943558, + -0.000715293746907264, + -0.015625758096575737, + -0.021818390116095543, + -0.007963919080793858, + -0.006051891483366489, + 0.02010202966630459, + -0.004853871185332537, + -0.011774241924285889, + 0.017204809933900833, + -0.0168340764939785, + 0.0009345589787699282, + -0.009302680380642414, + 0.007188123185187578, + 0.019758757203817368, + -0.0113005256280303, + 0.014774441719055176, + -0.0025161863304674625, + -0.009542971849441528, + -0.011980204842984676, + 0.0033108617644757032, + 0.018770132213830948, + -0.012927636504173279, + 0.015296216122806072, + 0.0017970307962968946, + -0.022147933021187782, + 0.008931946940720081, + -0.008835830725729465, + -0.012694211676716805, + 0.012412728741765022, + 0.006175469607114792, + 0.014829365536570549, + -0.01311300415545702, + -0.008904485031962395, + 0.00044882859219796956, + -0.011369180865585804, + -0.003039676696062088, + 0.017863893881440163, + -0.009542971849441528, + 0.020733650773763657, + -0.020321723073720932, + 0.006673214491456747, + -0.005914582870900631, + 0.0006363411084748805, + -0.03116912953555584, + -0.021667351946234703, + 0.012598095461726189, + 0.0009397080866619945, + 0.004610147792845964, + 0.02670658938586712, + -0.013586719520390034, + 0.004469405859708786, + 0.01154081616550684, + -0.007428413722664118, + -0.00545116513967514, + -0.0158317219465971, + -0.007503933738917112, + 0.027008669450879097, + 0.023878024891018867, + 0.0068036578595638275, + -0.010160861536860466, + -0.012268554419279099, + -0.005952342413365841, + 0.010758155956864357, + 0.021708544343709946, + 0.0042531443759799, + 0.005660560913383961, + -0.012625557370483875, + -0.011602605693042278, + 0.00759318470954895, + -0.00021819249377585948, + -0.0028114006854593754, + 0.004043748136609793, + 0.02541588433086872, + -0.008698521181941032, + -0.008252267725765705, + 0.006096517201513052, + -0.00709887221455574, + 0.00816301628947258, + 0.001778150792233646, + 0.0003990541154053062, + -0.008451364934444427, + 0.0023994736839085817, + -0.011458431370556355, + 0.0027067025657743216, + 0.008204209618270397, + -0.011218140833079815, + 0.004843573085963726, + 0.0032404910307377577, + 0.014774441719055176, + -0.02144765667617321, + 0.007668704260140657, + -0.0166555754840374, + -0.001240929588675499, + 0.0009663116652518511, + -0.01311300415545702, + 0.018262090161442757, + -0.016751691699028015, + 0.026157353073358536, + -0.008451364934444427, + -0.022793283686041832, + -0.007222450338304043, + -0.010813078843057156, + -0.004218817222863436, + 0.005128488875925541, + 0.018426859751343727, + -0.005193710792809725, + 0.028477875515818596, + 0.02010202966630459, + 0.014952943660318851, + -0.0329541452229023, + -0.006522174924612045, + 0.013902530074119568, + 0.0070439488627016544, + -0.024138912558555603, + 0.015268754214048386, + -0.0005140503635630012, + -0.0012254823232069612, + 0.002917814999818802, + -0.013662239536643028, + -0.014595940709114075, + 0.014142820611596107, + -0.0004353122494649142, + -0.009556702338159084, + -0.007483337540179491, + -0.010579654015600681, + -0.017850162461400032, + -0.007634377107024193, + -0.005169681739062071, + -0.014719518832862377, + 0.01883878745138645, + -0.013318967074155807, + 0.003755399491637945, + -0.01227541919797659, + 0.010250112973153591, + 0.006075920537114143, + -0.005873390007764101, + -0.0064157601445913315, + 0.021667351946234703, + -0.014541016891598701, + 0.024660686030983925, + 0.008877023123204708, + -0.03001573495566845, + 0.0051628160290420055, + -0.00039326140540651977, + -0.015007867477834225, + -0.017520621418952942, + 0.017534352838993073, + -0.014252668246626854, + 0.011190678924322128, + 0.038693659007549286, + 0.008451364934444427, + -0.0057738409377634525, + -0.002349699381738901, + -0.020733650773763657, + 0.008925081230700016, + 0.01716361753642559, + 0.001822776161134243, + 0.008279729634523392, + 0.03613971173763275, + -0.005725782830268145, + -0.0030345276463776827, + -0.01963517814874649, + -0.0021883612498641014, + -0.00214201956987381, + 0.003686745185405016, + 0.008217940106987953, + -0.018426859751343727, + -0.010291305370628834, + 0.018577899783849716, + 0.0022724629379808903, + 0.010696366429328918, + 0.0012134677963331342, + 0.003872112138196826, + -0.00014288711827248335, + -0.0032645200844854116, + 0.005918015260249376, + -0.004541493486613035, + -0.01730092614889145, + -0.02128288522362709, + 0.0025522299110889435, + -0.01812477968633175, + 0.012536306865513325, + 0.013724029064178467, + 0.0076137809082865715, + 0.016957653686404228, + 0.000893366290256381, + -0.012110648676753044, + -0.015543372370302677, + 0.020404107868671417, + 0.004040315747261047, + 0.016202455386519432, + -0.0072018541395664215, + 0.01684780791401863, + 0.010311901569366455, + 0.0013104422250762582, + -0.001261525903828442, + -0.01484309695661068, + -0.011691856198012829, + 0.007194988429546356, + -0.0050049107521772385, + 0.0028989349957555532, + -0.005705186631530523, + -0.009192833676934242, + 0.008293460123240948, + 0.013119869865477085, + -6.73671966069378e-5, + -0.0030860183760523796, + -0.0217771977186203, + -0.014939213171601295, + 0.004685667809098959, + 0.01962144859135151, + -0.007558857090771198, + -0.011774241924285889, + 0.007455875631421804, + 0.005427136085927486, + -0.013600450940430164, + 0.0029641566798090935, + -0.0011662677861750126, + 0.0021025431342422962, + 0.0065839639864861965, + 0.0010898896725848317, + 0.010572788305580616, + -0.014939213171601295, + 0.014060435816645622, + 0.018742671236395836, + -0.007860937155783176, + 0.0201294906437397, + 0.003913304768502712, + 0.0010315334657207131, + 0.011678125709295273, + -0.0013516348553821445, + -0.0003703050606418401, + 0.003532272530719638, + -0.0030053495429456234, + -0.0020235904958099127, + -0.004675369709730148, + 0.004620445892214775, + 0.013504334725439548, + -0.0014812202425673604, + -0.004881333094090223, + -9.279081132262945e-5, + -0.0016871836269274354, + -0.01294136792421341, + -0.006381432991474867, + -0.012385266833007336, + -0.03759519010782242, + -0.004472838714718819, + 0.0191271360963583, + 0.017781507223844528, + -0.02442726120352745, + 0.0018056125845760107, + 0.021008267998695374, + 0.01664184406399727, + -0.028505336493253708, + -0.007689300924539566, + 0.0036798797082155943, + -0.03712833672761917, + 0.003266236511990428, + -0.015914106741547585, + -0.009254622273147106, + -0.005138786975294352, + 0.013916261494159698, + 0.012199899181723595, + -0.0027581932954490185, + 0.0009242608211934566, + 0.010277573950588703, + -0.011856626719236374, + -0.003782861400395632, + -0.004054046701639891, + 0.005602204706519842, + -0.008492558263242245, + -0.009673414751887321, + -0.003125494811683893, + 0.014362514950335026, + -0.008526884950697422, + -0.004610147792845964, + 0.029109496623277664, + -0.006625156383961439, + -0.012412728741765022, + 0.007929591462016106, + 0.009996091015636921, + 0.016779152676463127, + 0.004342395346611738, + -0.00817674770951271, + -0.02144765667617321, + -0.008623001165688038, + -0.02312282659113407, + 0.019360560923814774, + 0.022999247536063194, + 0.009014331735670567, + 0.008540616370737553, + 0.014966675080358982, + 0.030317815020680428, + -0.01352493092417717, + 0.002308506518602371, + -0.013586719520390034, + 0.010586519725620747, + -0.007455875631421804, + 0.008877023123204708, + -0.025168729946017265, + -0.012481383047997952, + -0.005736080929636955, + -0.005605637561529875, + -0.013161062262952328, + -0.037540264427661896, + 0.00043638498755171895, + -0.000937991717364639, + -0.0008277154411189258, + 0.011417238973081112, + 0.009124179370701313, + 0.0010581370443105698, + -0.0005728357355110347, + 0.0034653344191610813, + -0.009845050983130932, + 0.005094161722809076, + -0.01270107738673687, + -0.014101628214120865, + 0.004929391201585531, + -0.007153796032071114, + -0.0203079916536808, + -0.016422148793935776, + 0.017026308923959732, + 0.02343863621354103, + 0.01668303646147251, + -0.00755199184641242, + -0.0043801553547382355, + 0.013799549080431461, + -0.005674291867762804, + -0.0011619769502431154, + -0.007799148093909025, + -0.006130844354629517, + -0.013964319601655006, + 0.00020306705846451223, + 0.0020905286073684692, + -0.003988824784755707, + 0.019566524773836136, + 0.019539061933755875, + -0.007133199367672205, + -0.012783462181687355, + -0.006793359760195017, + 0.017877623438835144, + 0.017712853848934174, + 0.02472934126853943, + 0.009645952843129635, + 0.01981368102133274, + -0.004603282082825899, + 0.013058080337941647, + -0.013195388950407505, + 0.013085542246699333, + 0.016435880213975906, + -0.010538461618125439, + 0.004881333094090223, + 0.0032593710348010063, + 0.0019755323883146048, + 0.007600049953907728, + 9.043081081472337e-5, + -0.013195388950407505, + -0.014582209289073944, + -0.009982360526919365, + 0.022065546363592148, + -0.0030671386048197746, + 0.025209922343492508, + -0.0019394888076931238, + -0.0055678775534033775, + -0.006769330706447363, + -0.009007466956973076, + 0.01599649153649807, + 0.01731465756893158, + 0.0023462665267288685, + 0.024138912558555603, + 0.005945477169007063, + -0.00565026281401515, + 1.018419334286591e-5, + -0.013188524171710014, + -0.003686745185405016, + -0.010469806380569935, + 0.019168328493833542, + -0.0005033230991102755, + -0.0019909797701984644, + 0.0011748496908694506, + -0.020170683041214943, + -0.003134076716378331, + -0.027434326708316803, + 0.02409772016108036, + -0.0039922576397657394, + -0.004428213462233543, + -0.024523377418518066, + 0.014733249321579933, + 0.002785655204206705, + -0.010936656966805458, + -0.013209120370447636, + 0.005598772317171097, + -0.004218817222863436, + -0.0015009583439677954, + -0.03633194789290428, + 0.023685792461037636, + 0.009419393725693226, + -0.004424780607223511, + 0.004850438330322504, + 0.01566695049405098, + -0.016710497438907623, + 0.00924089178442955, + 0.03597494214773178, + -0.0029933350160717964, + -0.003051691222935915, + 0.009831320494413376, + -0.010256977751851082, + 0.0017446817364543676, + -0.0207748431712389, + -0.006532473023980856, + -0.013071810826659203, + 0.011341718956828117, + -0.001216900534927845, + -0.0020510524045675993, + 0.0006736720097251236, + -0.02608869969844818, + -0.018069855868816376, + -0.008863292634487152, + 0.024523377418518066, + 0.0501452274620533, + 0.020349185913801193, + 0.01568068191409111, + -0.0028388623613864183, + 0.031114205718040466, + -0.023672061040997505, + 0.002339401049539447, + -0.0007942463853396475, + -0.027475519105792046, + -0.014746980741620064, + 0.00668694544583559, + -0.008554346859455109, + 0.019388021901249886, + 0.007188123185187578, + -0.006285316776484251, + -0.008382710628211498, + -0.020417839288711548, + -0.010373690165579319, + -0.0076137809082865715, + -0.00424284627661109, + -0.005595339462161064, + 0.006048459094017744, + -0.018866248428821564, + 0.015296216122806072, + 0.0199509896337986, + 0.0025642444379627705, + -0.0025522299110889435, + -0.0032834000885486603, + -0.01369656715542078, + 0.015543372370302677, + 0.024811726063489914, + -0.02703613042831421, + -0.0059798043221235275, + -0.018564168363809586, + -0.005094161722809076, + 0.009179103188216686, + 0.005564444698393345, + -0.0011190678924322128, + -0.0070508141070604324, + -0.01732838898897171, + -0.0101539958268404, + -0.01129366084933281, + -0.0009748935117386281, + -0.008430768735706806, + -0.017273465171456337, + -0.011547681875526905, + 0.0008281445479951799, + -0.011939012445509434, + 0.009439989924430847, + -0.002541931811720133, + -0.006257854867726564, + -0.008760310709476471, + -0.0369635671377182, + -0.015886643901467323, + -0.011849761940538883, + 0.013929991982877254, + 0.024852918460965157, + -0.012934502214193344, + -0.013147330842912197, + -0.021241692826151848, + -0.01631230302155018, + 0.003576898016035557, + 0.009096717461943626, + 0.016724228858947754, + -0.016696767881512642, + 0.025512000545859337, + 0.0029933350160717964, + 0.006491280160844326, + -0.002526484429836273, + -0.010085341520607471, + 0.008760310709476471, + -0.019003557041287422, + -0.018179703503847122, + -0.003152956487610936, + -0.021214231848716736, + -0.003221611026674509, + -0.020898420363664627, + 0.004369857255369425, + 0.007428413722664118, + 0.028079679235816002, + 0.01054532639682293, + 0.02207927778363228, + 0.00982445478439331, + 0.0021248559933155775, + -0.010359959676861763, + 0.013421948999166489, + -0.0019600852392613888, + 0.014184013940393925, + -0.01270794216543436, + -0.005052968859672546, + -0.016380956396460533, + 0.0006762465345673263, + -0.012158706784248352, + -0.0029727385845035315, + 0.019250713288784027, + -0.013929991982877254, + -0.002227837685495615, + -0.010483537800610065, + -0.008314056321978569, + 0.007071410305798054, + 0.0005385085241869092, + 0.007538260892033577, + -0.011067100800573826, + 0.02971365489065647, + -0.006333374883979559, + -0.03287176042795181, + 0.008293460123240948, + 0.004187922924757004, + 0.006288749631494284, + 0.0022947757970541716, + 0.015804259106516838, + 0.005152517929673195, + -0.0002167979400837794, + 0.0199509896337986, + -0.004225682467222214, + 0.02691255323588848, + -0.0055919066071510315, + 0.0047440240159630775, + 0.005509521346539259, + 0.010895464569330215, + -0.0009929152438417077, + -0.004551791585981846, + 0.01647707261145115, + 0.01285898219794035, + 0.00016884709475561976, + -0.001265816856175661, + 0.008492558263242245, + 0.018879979848861694, + -0.016559459269046783, + -0.0023342519998550415, + 0.015364870429039001, + -0.007957053370773792, + -0.011238737031817436, + 0.0030413931235671043, + -0.013827010057866573, + -0.000836726394481957, + 0.014087897725403309, + -0.009220295585691929, + 0.011547681875526905, + -0.010229515843093395, + -0.020225606858730316, + 0.03380545973777771, + 0.022147933021187782, + -0.0008637590799480677, + -0.025800351053476334, + -0.0011010461021214724, + -0.01861909218132496, + 0.011602605693042278, + 0.025704234838485718, + 0.003140941960737109, + 0.0006011556833982468, + -0.016710497438907623, + -0.020870959386229515, + -5.983800292597152e-6, + -0.004781784024089575, + 0.03526093810796738, + -0.004170759115368128, + 0.023493560031056404, + -0.013092407956719398, + -0.003370934631675482, + 0.012611825950443745, + 0.005121623631566763, + 0.010373690165579319, + 0.011307391338050365, + -0.0047508892603218555, + 0.01088859885931015, + 0.0003464905312284827, + 0.012323477305471897, + -0.010916060768067837, + -0.015969030559062958, + -0.00663545448333025, + 0.01227541919797659, + -0.004836707375943661, + -0.002569393487647176, + -0.014403708279132843, + -0.0024183536879718304, + -0.0045861187390983105, + -0.017561813816428185, + -0.029796039685606956, + -0.01419774442911148, + 0.027983563020825386, + 0.00915850605815649, + 0.012234226800501347, + -3.671405283967033e-5, + 0.006793359760195017, + -0.00817674770951271, + -0.002741029718890786, + 0.007661839015781879, + 0.01352493092417717, + -0.0036592832766473293, + -0.011369180865585804, + 0.016257379204034805, + -0.008691656403243542, + 0.005437434185296297, + -0.008877023123204708, + 0.009728338569402695, + -0.0065839639864861965, + 0.013209120370447636, + -0.017067501321434975, + -0.007057679817080498, + -0.008121823891997337, + -0.02537469193339348, + -0.0016365509945899248, + -0.04135745391249657 + ], + "df073b45-a9b0-4904-9148-43b9d1d631d2": [ + -0.03298629820346832, + -0.014292251318693161, + -0.013708061538636684, + 0.0003226624976377934, + -0.0409475713968277, + -0.02691344916820526, + 0.0340459905564785, + 0.05398992821574211, + 0.005546398926526308, + 0.02048737183213234, + 0.0015878392150625587, + 0.033937301486730576, + -0.03768698126077652, + -0.01957712322473526, + -0.020025454461574554, + 0.0057094283401966095, + -0.04662643000483513, + 0.019427679479122162, + -0.003235116135329008, + -0.01681920699775219, + 0.07809112221002579, + -0.026302089914679527, + -0.018965762108564377, + 0.014563966542482376, + -0.03295912593603134, + -0.024780480191111565, + -0.0007939196075312793, + -0.0018103064503520727, + -0.007832207717001438, + -0.033393871039152145, + -0.010739566758275032, + 0.02105797454714775, + 0.016955066472291946, + -0.001159037696197629, + 0.017620770260691643, + -0.018802734091877937, + -0.014563966542482376, + 0.020433027297258377, + -0.027212336659431458, + 0.013708061538636684, + -0.026927035301923752, + 0.030106110498309135, + 0.011181104928255081, + -0.0014163185842335224, + 0.0025252585764974356, + 0.01116072665899992, + 0.0402139388024807, + -0.01288612186908722, + -0.007533320691436529, + -0.024603866040706635, + 0.016792036592960358, + 0.007988444529473782, + -0.02215842343866825, + 0.011568300426006317, + 0.0013874487485736609, + -0.00350173725746572, + 0.024563107639551163, + 0.06260331720113754, + 0.017838142812252045, + -0.06754855066537857, + -0.0010911087738350034, + 5.2538794989231974e-5, + 0.008844349533319473, + -0.012206831946969032, + -0.007241225801408291, + -0.025867344811558723, + 0.008368846960365772, + 0.00969346147030592, + -0.018531017005443573, + 0.031383175402879715, + 0.012111731804907322, + 0.02764708176255226, + -0.04483310505747795, + 0.0006983944913372397, + -0.009245130233466625, + -0.008810385130345821, + 0.02192746475338936, + -0.044941794127225876, + 0.0018833301728591323, + 0.026383602991700172, + -0.03132883086800575, + 0.014346593990921974, + 0.014129221439361572, + -0.022647511214017868, + 0.03241569548845291, + 0.022810541093349457, + -0.03681749105453491, + -0.04719703271985054, + -0.055864766240119934, + -0.02545977011322975, + 0.009211165830492973, + 0.012852157466113567, + 0.004863712936639786, + 0.012403826229274273, + 0.0004449346160981804, + 0.012288346886634827, + 0.037062034010887146, + 0.02710365131497383, + -0.026084717363119125, + -0.020894944667816162, + -0.03352972865104675, + 0.03896404430270195, + -0.03461659327149391, + -0.010827874764800072, + -0.001036765635944903, + -0.012967636808753014, + -0.0032062462996691465, + 0.01719960942864418, + -0.010298028588294983, + 0.020039040595293045, + 0.02107156068086624, + -0.02215842343866825, + -0.00745859881862998, + 0.007030646316707134, + 0.04812086746096611, + -0.07113519310951233, + -0.019169550389051437, + -0.04029545187950134, + -0.008919071406126022, + -0.04412664473056793, + 0.050783682614564896, + 0.028041070327162743, + 0.017607184126973152, + -0.01437376532703638, + 0.010787117294967175, + 0.0026050752494484186, + -0.02196822129189968, + -0.007961273193359375, + 0.014930782839655876, + 0.01698223687708378, + -0.0014519812539219856, + -0.011024868115782738, + -0.029752880334854126, + 0.02891056053340435, + -0.009496467188000679, + 0.014659067615866661, + 0.024807652458548546, + 0.04244200885295868, + -0.03276892378926277, + 0.031573373824357986, + -0.0038176069501787424, + -0.012899707071483135, + -0.005648292135447264, + -0.004092719405889511, + 0.022837713360786438, + 0.017987586557865143, + -0.04662643000483513, + 0.01975373923778534, + 0.006167948711663485, + 0.017810970544815063, + -0.03554042801260948, + -0.005199960898607969, + 0.04339301213622093, + 0.0015139664756134152, + -0.013280109502375126, + 0.008776419796049595, + 0.015161741524934769, + 0.031138630583882332, + -0.006409096531569958, + 0.020718328654766083, + -0.009129650890827179, + -0.04045848175883293, + 0.015868201851844788, + -0.014428108930587769, + -0.01243099756538868, + 0.00507089588791132, + 0.04029545187950134, + 0.017634354531764984, + -0.05466922000050545, + 0.027579152956604958, + 0.04488744959235191, + -0.01490361150354147, + 0.010956939309835434, + 0.000658910779748112, + -0.015053055249154568, + -0.011446028016507626, + 0.015433457680046558, + 0.010461058467626572, + 0.020256413146853447, + -0.028041070327162743, + -0.006724965758621693, + -0.020609643310308456, + -0.028774702921509743, + -0.007709935773164034, + -0.007295568939298391, + 0.02560921385884285, + 0.003016045317053795, + 0.010311614722013474, + -0.04081171378493309, + 0.006246067117899656, + 0.01480851136147976, + 0.0045546358451247215, + 0.007023853249847889, + 0.05355518311262131, + -0.03200812265276909, + 0.011473199352622032, + 0.004333866760134697, + 0.009367401711642742, + 0.035241540521383286, + 0.030241968110203743, + -0.03592082858085632, + -0.054424673318862915, + -0.06363584101200104, + 0.03437204658985138, + -0.06390755623579025, + 0.009306265972554684, + 0.01698223687708378, + -0.00511504989117384, + 0.014781339094042778, + 0.0002797823690343648, + 0.027144407853484154, + -0.022470897063612938, + 0.020161312073469162, + 0.014604724012315273, + -0.006297013722360134, + -0.007377083878964186, + -0.0333123579621315, + 0.020568886771798134, + -0.006310599390417337, + -0.007139332592487335, + -0.03252438083291054, + 0.0038108141161501408, + 0.02233503945171833, + -0.018367987126111984, + -0.052196603268384933, + -0.021506305783987045, + -0.01813703030347824, + 0.020718328654766083, + -0.016696935519576073, + 0.01337521057575941, + 0.040132422000169754, + -0.0017678509466350079, + 0.02472613751888275, + -0.022973570972681046, + -0.008124302141368389, + 0.017253953963518143, + -0.01233589742332697, + -0.005563381128013134, + 0.03298629820346832, + -0.012240796349942684, + 0.046218857169151306, + 0.013762405142188072, + 0.01771586947143078, + 0.02160140499472618, + 0.011249033734202385, + 0.017498496919870377, + 0.010331992991268635, + 0.030051767826080322, + 0.010134999640285969, + -0.020011868327856064, + 0.017851727083325386, + 0.030486512929201126, + 0.022946398705244064, + 0.008226195350289345, + -0.014224321581423283, + 0.02582658641040325, + 0.015311185270547867, + -0.019482022151350975, + -0.046381887048482895, + -0.014387351460754871, + -0.013076323084533215, + -0.005821511149406433, + 0.023299628868699074, + -0.032660238444805145, + 0.04594714194536209, + -0.03363841399550438, + 0.011099589988589287, + -0.03589365631341934, + 0.00453425757586956, + 0.02048737183213234, + -0.07167863100767136, + -0.0016421823529526591, + 0.0011148839257657528, + 0.01772945560514927, + -0.011649814434349537, + -0.009292679838836193, + -0.0015080226585268974, + 0.024264220148324966, + -0.00764200696721673, + 0.015664415434002876, + 0.009673082269728184, + 0.02673683501780033, + 0.024603866040706635, + 0.034861136227846146, + -0.011534336023032665, + -0.029019247740507126, + 0.0003498340956866741, + 0.00978856161236763, + -0.04589279741048813, + -0.004126683808863163, + -0.003882139455527067, + -0.008912278339266777, + 0.027361780405044556, + -0.011867186985909939, + 0.02836713008582592, + -0.011975874193012714, + -0.005165996495634317, + -0.013551825657486916, + -0.010895803570747375, + 0.029508335515856743, + -0.02302791364490986, + 0.0010376146528869867, + 0.04793066531419754, + -0.02544618397951126, + 0.011262619867920876, + -0.01116072665899992, + 0.0406486839056015, + -0.03298629820346832, + -0.06570088118314743, + 0.020066211000084877, + 0.04374624416232109, + 0.01107241865247488, + -0.022199179977178574, + -0.05235963314771652, + -0.009897247888147831, + 0.0072616045363247395, + -0.014862854033708572, + 0.02289205603301525, + -0.00024242143263109028, + -0.02801389805972576, + 0.010481436736881733, + -0.003749677911400795, + -0.038692329078912735, + 0.002920944709330797, + 0.027130821719765663, + -0.03717071935534477, + 0.02232145331799984, + 0.010107827372848988, + -0.006072848103940487, + -0.01885707676410675, + 0.0033862581476569176, + -0.030948428437113762, + -0.0424148365855217, + 0.004021393600851297, + 0.016398048028349876, + -0.023680031299591064, + -0.040893226861953735, + -0.02486199513077736, + -0.012818193063139915, + -0.0029005662072449923, + -0.004632754251360893, + 0.03206246346235275, + -0.03920859098434448, + -0.005220339633524418, + 0.03717071935534477, + -0.0011216767597943544, + -0.013599375262856483, + 0.022375795990228653, + -0.0060932268388569355, + -0.006741948425769806, + 0.0006296164356172085, + -0.002706968691200018, + 0.048202384263277054, + 0.0023146788589656353, + 0.019454851746559143, + 0.01684637926518917, + -0.015256841666996479, + -0.015134570188820362, + 0.012587234377861023, + 0.009978762827813625, + -0.02524239756166935, + 0.000778211047872901, + -0.03279609605669975, + -0.012668749317526817, + 0.004099512007087469, + 0.04361038655042648, + 0.011901152320206165, + 0.010739566758275032, + 0.010950146242976189, + 0.03040499798953533, + -0.017987586557865143, + 0.04572976753115654, + 0.022076908499002457, + 0.01016896404325962, + -0.03475245088338852, + 0.008124302141368389, + 0.020365098491311073, + 0.0005188073264434934, + -0.01354503259062767, + 0.0372794084250927, + -0.011676986701786518, + 0.016778450459241867, + 0.026043958961963654, + -0.0009730822057463229, + 0.05428881570696831, + 0.009258715435862541, + -0.013626547530293465, + -0.006701190955936909, + -0.02945399284362793, + -0.01316463015973568, + -0.04083888605237007, + -0.00787975825369358, + -0.04597431421279907, + 0.0024471404030919075, + -0.03621971607208252, + 0.03657294809818268, + -0.010216513648629189, + 0.0011496974620968103, + 0.03535022586584091, + 0.008008822798728943, + -0.003956861328333616, + -0.021873122081160545, + -0.007995237596333027, + -0.0030007613822817802, + 0.014509623870253563, + 0.014074877835810184, + 0.016927894204854965, + 0.015406285412609577, + 0.004653132986277342, + 0.00018574322166386992, + -0.008987000212073326, + 0.006300410255789757, + 0.01464548148214817, + -0.009625531733036041, + 0.03975202143192291, + -0.008069959469139576, + 0.002076927572488785, + 0.000819817534647882, + -0.04336583986878395, + -0.0025252585764974356, + 0.03839344158768654, + 0.08021050691604614, + -0.013266523368656635, + 0.028421472758054733, + -0.023666445165872574, + 0.004211594816297293, + 0.02544618397951126, + 0.019672224298119545, + -0.00048654110287316144, + 0.0020752293057739735, + -0.033774275332689285, + 0.002051454270258546, + -0.02651946246623993, + -0.03809455409646034, + 0.03385578840970993, + 0.003396447515115142, + 0.030785400420427322, + -0.012682334519922733, + -0.0004648887552320957, + -0.021818779408931732, + 0.021465547382831573, + 0.012899707071483135, + 0.037442438304424286, + 0.008905485272407532, + -0.012879328802227974, + -0.02431856468319893, + -0.015025883913040161, + 0.008103923872113228, + 0.019441265612840652, + 0.014822096563875675, + -8.581336442148313e-5, + 0.0355132557451725, + -0.04024111106991768, + 0.019617879763245583, + -0.020759087055921555, + -0.014142807573080063, + -0.006898184772580862, + 0.014333007857203484, + 0.015691587701439857, + 0.02598961628973484, + -0.022226352244615555, + 0.0028054655995219946, + 0.036138199269771576, + -0.024563107639551163, + -0.011744915507733822, + -0.05629951134324074, + -0.018191372975707054, + 0.015514971688389778, + -0.00639890693128109, + -0.004799180198460817, + -0.017484910786151886, + 0.025174468755722046, + -0.04176271706819534, + 0.011602264828979969, + -0.045811284333467484, + 0.0012048897333443165, + 0.016683349385857582, + 0.00471766572445631, + 0.010766738094389439, + -0.00235203979536891, + -0.01937333680689335, + -0.005471677053719759, + -0.01043388620018959, + -0.002387702465057373, + 0.041246458888053894, + -0.015501386485993862, + -0.01389826275408268, + 0.006901581306010485, + 0.046381887048482895, + 0.002549033844843507, + 0.05379972606897354, + -0.006718173157423735, + 0.0026526255533099174, + -0.0037700566463172436, + -0.024644622579216957, + -0.044697247445583344, + 0.011282998137176037, + -0.012566855177283287, + -0.011602264828979969, + -0.035594768822193146, + 0.049506619572639465, + 0.0009178899344988167, + 0.022090494632720947, + 0.019536366686224937, + -0.001947862678207457, + -0.003218133933842182, + -0.0035696662962436676, + 0.01738981157541275, + -0.0019020105246454477, + 0.00034728675382211804, + -0.010685224086046219, + 0.011751708574593067, + -0.019128791987895966, + 0.0017440757947042584, + -0.013049150817096233, + 0.043447356671094894, + -0.013585790060460567, + 0.016764864325523376, + -0.0024658208712935448, + -0.006806480698287487, + 0.008810385130345821, + 0.006103415973484516, + 0.012390240095555782, + 0.008470740169286728, + 0.010005934163928032, + 0.003143412061035633, + -0.01107241865247488, + 0.035567596554756165, + 0.03206246346235275, + 0.000503098766785115, + -0.022987157106399536, + -0.0022212767507880926, + 0.001275366055779159, + -0.00494183087721467, + 0.02175084874033928, + -0.01463189534842968, + -0.0007909476989880204, + -0.017810970544815063, + -0.004157251678407192, + 0.02782369777560234, + -0.010196135379374027, + 0.002251844620332122, + -0.010182549245655537, + 0.0059098186902701855, + 0.015596486628055573, + 0.05382689833641052, + -0.02378871850669384, + 0.015338356606662273, + 0.017675112932920456, + 0.02942682057619095, + -0.016044817864894867, + 0.02376154623925686, + 0.0007833056733943522, + 0.014020535163581371, + 0.039996564388275146, + -0.025174468755722046, + 0.029752880334854126, + -0.02634284645318985, + -0.04958813264966011, + 0.007309155073016882, + 0.006324185058474541, + -0.008953035809099674, + 0.0029192466754466295, + 0.002100702840834856, + -0.02961702272295952, + 0.0004525766125880182, + -0.01453679520636797, + -0.0009662893135100603, + -0.01903369091451168, + 0.02926379069685936, + 0.03657294809818268, + 0.007322740741074085, + 0.01662900671362877, + -0.010175756178796291, + -0.00686422036960721, + 0.01391184888780117, + 0.021913878619670868, + 0.006106812506914139, + -0.00060584134189412, + -0.00017385566025041044, + 0.011758500710129738, + -0.04407230392098427, + 0.013939020223915577, + -0.022593168541789055, + -0.012988015078008175, + 0.02065039984881878, + -0.06499441713094711, + -0.026478704065084457, + 0.01096373237669468, + 0.017321882769465446, + -0.0029124536085873842, + 0.020541714504361153, + 0.033393871039152145, + 0.01758001185953617, + -0.0075536989606916904, + 0.03752395138144493, + 0.00015071735833771527, + 0.02376154623925686, + -0.005383369047194719, + -0.019509194418787956, + 0.001969939563423395, + 0.007288776338100433, + 0.024182705208659172, + -0.010026313364505768, + 0.0005256002186797559, + 0.01813703030347824, + -0.004109701607376337, + 0.003821003483608365, + -0.010026313364505768, + 0.00312982639297843, + 0.010821081697940826, + -0.0038617607206106186, + 0.015637245029211044, + -0.019794495776295662, + 0.028774702921509743, + 0.024427250027656555, + 0.04263220727443695, + 0.035567596554756165, + 0.016004061326384544, + -0.014414522796869278, + 0.030812570825219154, + -0.06597259640693665, + 0.06385321170091629, + -0.007492563221603632, + 0.02380230464041233, + -0.018897833302617073, + -0.020229240879416466, + -0.0023027914576232433, + -0.02086777240037918, + 0.02214483730494976, + 0.02668249048292637, + 0.00879679899662733, + 0.03420902043581009, + -0.01683279313147068, + 0.010101034305989742, + 0.024984268471598625, + 0.0030975600238889456, + 0.0340459905564785, + -0.015786686912178993, + 0.006694397889077663, + -0.0008066562586463988, + -0.007526527624577284, + -0.013334453105926514, + 0.031165802851319313, + -0.016357291489839554, + 0.0058011324144899845, + -0.036681633442640305, + 0.02782369777560234, + 0.03236135095357895, + 0.008124302141368389, + -0.040512826293706894, + 0.016194261610507965, + 0.029155105352401733, + 0.016683349385857582, + -0.011228655464947224, + -0.0336112454533577, + -0.020623229444026947, + 0.0019410697277635336, + 0.033556900918483734, + -0.02028358355164528, + 0.026397189125418663, + 0.010753152891993523, + -0.003613820066675544, + 0.0035764591302722692, + 0.002982080914080143, + -0.007512941956520081, + 0.014237907715141773, + 0.005967558361589909, + 0.026614561676979065, + 0.02509295381605625, + -0.001920690992847085, + 0.008171852678060532, + 0.02471255138516426, + 0.020935703068971634, + 0.005186375230550766, + -0.01061050221323967, + -0.0012821588898077607, + -0.02086777240037918, + 0.016941480338573456, + -0.0017576615791767836, + -0.024739723652601242, + -0.0016209546010941267, + -0.034317705780267715, + -0.01024368591606617, + 0.03244286775588989, + -0.023544173687696457, + -0.01630294695496559, + 0.05640820041298866, + -0.022104080766439438, + 0.00127876247279346, + 0.010651259683072567, + 0.024372907355427742, + -0.029127933084964752, + 0.024019677191972733, + 0.00745859881862998, + 0.006195120047777891, + -0.009781768545508385, + 0.0002594036632217467, + 0.02763349749147892, + -0.008925863541662693, + -0.015501386485993862, + -0.025731485337018967, + 0.009394573979079723, + -0.008762834593653679, + 0.00885793473571539, + 0.01734905317425728, + -0.016207847744226456, + 0.0020837204065173864, + 0.02745688147842884, + 0.01143923494964838, + 0.022620340809226036, + -0.0034219208173453808, + -0.006178137846291065, + 0.01372844073921442, + -0.01608557440340519, + -0.017675112932920456, + -0.010821081697940826, + 0.020066211000084877, + 0.01608557440340519, + 0.022579582408070564, + -0.029562678188085556, + 0.04961530491709709, + 0.013599375262856483, + -0.05360952764749527, + -0.06026656553149223, + 0.016737693920731544, + 0.013735233806073666, + 0.012845364399254322, + -0.026451533660292625, + -0.0029718915466219187, + 0.04442553222179413, + 0.008606597781181335, + -0.02067757211625576, + 0.0061102090403437614, + -0.023123014718294144, + -0.005746789276599884, + -0.019346164539456367, + 0.001728791743516922, + 0.01919672079384327, + -0.02340831607580185, + -0.0024641226045787334, + -0.020419443026185036, + 0.030676713213324547, + 0.03151903301477432, + -0.0003092889965046197, + -0.006691001355648041, + -0.007159711327403784, + -0.00521354703232646, + 0.006157759111374617, + 0.020623229444026947, + 0.026247745379805565, + -0.02395174838602543, + 0.05178903043270111, + 0.028068242594599724, + -0.02449517883360386, + -0.004642943851649761, + -0.01308990828692913, + -0.0013407476944848895, + -0.006103415973484516, + 0.048936016857624054, + -0.012532890774309635, + 0.007424633949995041, + 0.022959984838962555, + -0.03162771835923195, + 0.01626219041645527, + 0.0011267714435234666, + -0.02507936768233776, + 0.025663556531071663, + 0.051707517355680466, + -0.020528128370642662, + 0.03660011664032936, + -0.008294125087559223, + 0.012322311289608479, + 0.019482022151350975, + 0.013952606357634068, + -0.0035289088264107704, + 0.03934444859623909, + 0.0016668066382408142, + -0.04083888605237007, + 0.022104080766439438, + -0.03151903301477432, + -0.05548436567187309, + -0.016370877623558044, + -0.032089635729789734, + 0.026628147810697556, + -0.0024607263039797544, + 0.03554042801260948, + 0.02763349749147892, + 0.01316463015973568, + -0.012057388201355934, + 0.012030216865241528, + 0.02084060199558735, + -0.00526789017021656, + 0.011378099210560322, + 0.004452742636203766, + 0.0006457495619542897, + 0.012132110074162483, + -0.028666015714406967, + -0.010386336594820023, + 0.006225688382983208, + -0.003374370513483882, + -0.05246832221746445, + 0.010372750461101532, + 0.048582784831523895, + -0.026981377974152565, + 0.011045247316360474, + 0.025745071470737457, + -0.003871950088068843, + -0.003593441331759095, + 0.0067521375603973866, + -0.035024166107177734, + 0.016316533088684082, + 0.00526789017021656, + 0.003583251964300871, + -0.0036647669039666653, + -0.00932664517313242, + -0.004727854859083891, + -0.03276892378926277, + 0.019468436017632484, + -0.015976889058947563, + 0.007098575122654438, + 0.021886708214879036, + 0.020269999280571938, + 0.006619676016271114, + 0.0025948858819901943, + -0.013171423226594925, + -0.020718328654766083, + -0.021669335663318634, + 0.01940050721168518, + 0.0030958617571741343, + -0.01364013273268938, + -0.008334881626069546, + -0.012132110074162483, + 0.02490275353193283, + 0.02778293937444687, + 0.020636815577745438, + -0.01537911407649517, + -0.019509194418787956, + -0.03092125803232193, + 0.009401367045938969, + 0.0026203591842204332, + -0.029318135231733322, + -0.021547062322497368, + -0.0016812414396554232, + -0.007716728840023279, + 0.0034372047521173954, + 0.00932664517313242, + 0.015188912861049175, + 0.030296310782432556, + -0.006731758825480938, + 0.004775404930114746, + -0.035241540521383286, + 0.005271286237984896, + -0.021329689770936966, + -0.05140862986445427, + 0.03179074823856354, + -0.017158852890133858, + 0.015664415434002876, + 0.006915166974067688, + 0.00718688266351819, + -0.005237321835011244, + 0.007764278911054134, + 0.0011794164311140776, + -0.02778293937444687, + 0.004700683522969484, + -0.011507163755595684, + -0.019998282194137573, + 0.035214368253946304, + -0.013891469687223434, + 0.006670622620731592, + -0.011656607501208782, + 0.004058754537254572, + 0.0011072418419644237, + -0.0009654401801526546, + -0.03396447375416756, + -0.01014179177582264, + -0.012410619296133518, + -0.006918563507497311, + -0.02251165360212326, + 0.0008151474175974727, + -0.02467179484665394, + 0.017525669187307358, + 0.006208706181496382, + 0.006707983557134867, + -0.06939621269702911, + 0.020229240879416466, + -0.009394573979079723, + 0.00663665821775794, + 0.009938005357980728, + -0.029698535799980164, + 0.001648126170039177, + 0.015256841666996479, + -0.014862854033708572, + -0.044017959386110306, + -0.0011649815132841468, + -0.05543002113699913, + -0.019726566970348358, + -0.010943354107439518, + -0.012770642526447773, + -0.0010486531537026167, + -0.009795354679226875, + -0.009217957966029644, + -0.019658638164401054, + 0.010046691633760929, + -0.02416912093758583, + -0.030323483049869537, + 0.006218895316123962, + 0.019631465896964073, + 0.003109447658061981, + 0.0394803062081337, + 0.015351942740380764, + 0.01813703030347824, + -0.016520321369171143, + -0.03260589390993118, + 0.026043958961963654, + 0.034290533512830734, + 0.02669607661664486, + -0.006123794708400965, + -0.02343548834323883, + 0.004768612328916788, + 0.00645325006917119, + 0.00020707715884782374, + 0.01755283959209919, + 0.015202498994767666, + -0.003398145781829953, + -0.01480851136147976, + 0.012560063041746616, + 0.002008998766541481, + 0.014591137878596783, + 0.00087543431436643, + 0.0006839596317149699, + 0.023517001420259476, + 0.018761975690722466, + -0.007764278911054134, + 0.01630294695496559, + -0.03380144387483597, + 0.019658638164401054, + 0.006792895030230284, + -0.028666015714406967, + -0.03187226131558418, + -0.008511497639119625, + -0.001606519683264196, + 0.006565332878381014, + -0.01480851136147976, + 0.020962873473763466, + -0.01717243902385235, + -0.0347796231508255, + 0.02964419312775135, + 0.012274760752916336, + -0.0017143568256869912, + 0.02050095610320568, + 0.03855647146701813, + 0.013721647672355175, + 0.010814288631081581, + 0.02194105088710785, + 0.014142807573080063, + 0.0024963889736682177, + 0.03293195366859436, + 0.003888932289555669, + -0.0015131173422560096, + 0.0019071052083745599, + -0.011418856680393219, + -0.026397189125418663, + 0.009313059039413929, + -0.04244200885295868, + 0.0074450126849114895, + -0.024631036445498466, + 0.005356197711080313, + 0.013884677551686764, + 0.019454851746559143, + -0.003960257861763239, + -0.010359164327383041, + 0.011106383055448532, + -0.01043388620018959, + 0.012234004214406013, + -0.000925531960092485, + -0.01198945939540863, + -1.2856084140366875e-5, + 0.00745859881862998, + 0.004687097389250994, + 0.02252523973584175, + 0.015963302925229073, + 0.006823462899774313, + 0.007920515723526478, + 0.0007803338230587542, + 0.001139508094638586, + 0.005794339347630739, + -0.00594717962667346, + 0.01771586947143078, + -0.008219403214752674, + 0.02143837697803974, + -0.03526870906352997, + 0.00453425757586956, + -0.03380144387483597, + 0.0017389811109751463, + -0.01444169506430626, + -0.02411477640271187, + -0.012485341168940067, + 0.006310599390417337, + -0.005739996209740639, + -0.008314503356814384, + 0.013008393347263336, + -0.03619254380464554, + 0.01683279313147068, + 0.010270857252180576, + -4.2057570681208745e-5, + -0.004697286989539862, + 0.0027715011965483427, + 0.016588250175118446, + 0.035241540521383286, + 0.012709506787359715, + -0.011065625585615635, + -0.014074877835810184, + -0.03790435194969177, + 0.03151903301477432, + 0.005729807075113058, + -0.020446613430976868, + -0.049669649451971054, + -0.013035565614700317, + 0.027185166254639626, + -0.02046019956469536, + -0.04594714194536209, + 0.00804958026856184, + -0.014047706499695778, + -0.00915002916008234, + -0.00420819828286767, + 0.016710521653294563, + 0.010909389704465866, + 0.02325887233018875, + 0.017457740381360054, + -0.03217114880681038, + 0.009129650890827179, + 0.007431427016854286, + -0.008124302141368389, + 0.00943533144891262, + -0.01903369091451168, + 0.018204959109425545, + -0.05282155051827431, + -0.00969346147030592, + 0.01207776740193367, + 0.038339100778102875, + -0.0038108141161501408, + -0.005906422156840563, + -0.005284872371703386, + 0.004316884558647871, + -0.016153505071997643, + -0.007057817652821541, + 0.01079391036182642, + -0.011024868115782738, + 0.038665156811475754, + 0.002781690564006567, + -0.018150614574551582, + 0.020596057176589966, + -0.01455038134008646, + -0.00851829070597887, + -0.006996681913733482, + -0.001912199892103672, + 0.0022195784840732813, + -0.008124302141368389, + 0.015297599136829376, + -0.01061050221323967, + 0.02302791364490986, + 0.031383175402879715, + -0.03162771835923195, + 0.03828475624322891, + -0.013239352032542229, + -0.003039820585399866, + 0.030133282765746117, + 0.014414522796869278, + 0.0052237361669540405, + 0.00645325006917119, + 0.02600320242345333, + 0.004870505537837744, + 0.02691344916820526, + 0.006755534093827009, + 0.009965176694095135, + -0.022633925080299377, + 0.014047706499695778, + 0.004778801463544369, + 0.0047380439937114716, + 0.0032758736051619053, + -0.0022416552528738976, + -0.017294710502028465, + -0.0037734531797468662, + -0.009625531733036041, + -0.03532305359840393, + 0.002640737919136882, + 0.003926293458789587, + -0.005006363615393639, + 0.03325801342725754, + -0.024617450311779976, + 0.023910989984869957, + -0.0019003123743459582, + -0.015623657964169979, + -0.009931212291121483, + 0.00680987723171711, + -0.00626984192058444, + 0.06711380183696747, + 0.011765293776988983, + -0.006317392457276583, + 0.005067499820142984, + -0.009129650890827179, + 0.00040481408359482884, + 0.00859980471432209, + 0.03407316282391548, + 0.018911419436335564, + 0.004826352000236511, + -0.01813703030347824, + 0.02158782072365284, + 0.02490275353193283, + 0.029915908351540565, + 0.0027035721577703953, + 0.002841128269210458, + 0.01722678169608116, + -0.004225180484354496, + -0.026410775259137154, + -0.034861136227846146, + -0.011479992419481277, + -0.005964161828160286, + 0.018245715647935867, + -0.010637673549354076, + -0.002335057593882084, + -0.027388952672481537, + 0.020731914788484573, + -0.005780753679573536, + -0.03187226131558418, + 2.8471782570704818e-5, + 0.014414522796869278, + 0.0009960081661120057, + 0.012824985198676586, + 0.010257271118462086, + -0.020596057176589966, + 0.002212785417214036, + 0.008919071406126022, + -0.023489831015467644, + 0.003243607236072421, + -0.00969346147030592, + -0.011656607501208782, + -0.013137458823621273, + -0.02029716968536377, + -0.007343119475990534, + 0.009129650890827179, + 0.008002030663192272, + 0.015080226585268974, + 0.02051454223692417, + -0.009768183343112469, + 0.004034979734569788, + -0.011649814434349537, + 0.020636815577745438, + -0.01885707676410675, + -0.005733203142881393, + -0.010101034305989742, + 0.00700347451493144, + -0.01849026046693325, + -0.03439921885728836, + -0.03665446117520332, + -0.031383175402879715, + 0.01759359799325466, + 0.01334803830832243, + -0.010379543527960777, + -0.02399250492453575, + -0.020596057176589966, + 0.007397462613880634, + -0.017471326515078545, + -0.008178645744919777, + 0.0016744486056268215, + -0.010175756178796291, + -0.009387780912220478, + 0.004996174015104771, + -0.00011972477659583092, + 0.018354402855038643, + -0.01527042780071497, + 0.011751708574593067, + 0.01831364445388317, + -0.030214795842766762, + 0.002960003912448883, + -0.02779652550816536, + -0.019060863181948662, + -0.0038447785191237926, + 0.005468280520290136, + 0.014102050103247166, + -0.008525082841515541, + -0.010101034305989742, + -0.006334374658763409, + -0.015188912861049175, + 0.0013849014649167657, + -0.02012055553495884, + 0.01882990449666977, + -0.0024963889736682177, + 0.00024857750395312905, + 0.0012804607395082712, + -0.005186375230550766, + -0.015229670330882072, + -0.013789576478302479, + -0.02084060199558735, + 0.014957954175770283, + -0.010970525443553925, + -0.016017645597457886, + -0.007207261398434639, + 0.005060706753283739, + -0.02836713008582592, + 0.011357720009982586, + 0.012417412362992764, + -0.006127191241830587, + 0.01756642572581768, + -0.010664844885468483, + -0.02010696940124035, + -0.0005956519744358957, + 0.014074877835810184, + -0.019482022151350975, + -0.002056548837572336, + -0.002153347712010145, + -0.004323677625507116, + -0.019427679479122162, + -0.021845949813723564, + 0.03241569548845291, + 0.006164552178233862, + -0.0014740582555532455, + 0.001514815608970821, + -0.008640562184154987, + -0.0030466134194284678, + -0.004687097389250994, + -0.013463517650961876, + -0.024413663893938065, + 0.006531368475407362, + -0.014822096563875675, + -0.007995237596333027, + -0.000591830990742892, + 0.02070474438369274, + 0.00022416553110815585, + 0.012329104356467724, + 0.007288776338100433, + -0.0005366387194953859, + 0.017647940665483475, + -0.006989888846874237, + -0.008110716938972473, + 0.002161838812753558, + -0.03757829591631889, + -0.0019716378301382065, + 8.719317702343687e-5, + 0.015093812718987465, + 0.00037318465183489025, + 0.019672224298119545, + -0.02600320242345333, + 0.0023639274295419455, + 0.023829475045204163, + -0.016411634162068367, + 0.010569744743406773, + 0.0003704250557348132, + -0.015297599136829376, + -0.004361038561910391, + -0.0012948955409228802, + -0.026478704065084457, + 0.0019342767773196101, + -0.02907359041273594, + 0.0030551045201718807, + 0.010481436736881733, + -0.006561936344951391, + -0.011133554391562939, + 0.0018255905015394092, + -0.009632324799895287, + -0.0015114190755411983, + 0.015881787985563278, + -0.00932664517313242, + -0.026261331513524055, + 0.00777107197791338, + 0.010590123012661934, + -0.020052626729011536, + 0.008287332020699978, + -0.020256413146853447, + 0.0034609800204634666, + 0.005913215223699808, + -0.03994222357869148, + 0.028964903205633163, + -0.00709178252145648, + 0.02874753065407276, + -0.0024828030727803707, + -0.016927894204854965, + -0.01087542437016964, + 0.0017916259821504354, + 0.009129650890827179, + 0.025908101350069046, + -1.1157860171806533e-5, + -0.013701269403100014, + -0.018245715647935867, + -0.012084560468792915, + 0.009822526015341282, + 0.014088463969528675, + -0.04102908447384834, + -0.010569744743406773, + 0.024372907355427742, + -0.0024997852742671967, + -0.0019088034750893712, + -0.03040499798953533, + -0.016180675476789474, + 0.013578996993601322, + -0.012037009932100773, + 0.02305508591234684, + 0.004979191813617945, + -0.003909311257302761, + -0.010393129661679268, + 0.02229428105056286, + 0.009014171548187733, + -0.004405192565172911, + 0.0007102820673026145, + 0.007424633949995041, + -0.0022586374543607235, + 0.0006928752991370857, + 0.0003869827196467668, + -0.024916337803006172, + 0.01737622544169426, + 0.01810985803604126, + 0.0030618973542004824, + 0.0034847550559788942, + 0.002008998766541481, + -0.0016302948351949453, + -0.010576537810266018, + 0.0005858871736563742, + -0.013015186414122581, + 0.005006363615393639, + 0.026261331513524055, + 0.00904134288430214, + -0.001495286007411778, + 0.01198945939540863, + 0.006229084450751543, + 0.03787718340754509, + -0.0037259028758853674, + 0.00804958026856184, + 0.002326566493138671, + 0.013966191560029984, + -0.035214368253946304, + 0.0022382589522749186, + 0.00694913137704134, + -0.02066398598253727, + 0.018598945811390877, + -0.004697286989539862, + 0.003117938758805394, + -0.010236892849206924, + -0.030486512929201126, + 0.005543002393096685, + 0.004082529805600643, + -0.0035221159923821688, + -0.0002670456888154149, + -0.02287846989929676, + 0.008273745886981487, + 0.0005247511435300112, + -0.007594456430524588, + -0.0036953347735106945, + 0.013185009360313416, + 0.009720632806420326, + 0.00916361529380083, + -0.005512434057891369, + 0.01169736497104168, + 0.004303298890590668, + -0.016873551532626152, + -0.02635643258690834, + -0.009666289202868938, + -0.011846808716654778, + -0.02651946246623993, + 0.008742455393075943, + -0.013409174978733063, + -0.007241225801408291, + 0.03219832107424736, + 0.03901838883757591, + -0.0018018153496086597, + 0.006826859433203936, + -0.01647956296801567, + 0.00960515346378088, + 0.010671637952327728, + -0.0075536989606916904, + -0.012254382483661175, + 0.021085144951939583, + -0.009557602927088737, + -0.005312043707817793, + -0.015134570188820362, + 0.016520321369171143, + -0.003926293458789587, + 0.02449517883360386, + 0.0025999804493039846, + 0.00988366175442934, + 0.0036443881690502167, + 0.0011148839257657528, + 0.018191372975707054, + -0.018408745527267456, + 0.005953972227871418, + 0.011303377337753773, + 0.0008240630850195885, + -0.01863970421254635, + 0.02359851635992527, + -0.01279781386256218, + 0.0017644544132053852, + -0.0011412063613533974, + 0.014618310146033764, + 0.005390162114053965, + 0.042740896344184875, + 0.002667909488081932, + -0.011004489846527576, + -0.021506305783987045, + -0.01903369091451168, + -0.013449931517243385, + 0.0054411087185144424, + 0.02509295381605625, + -0.0029583056457340717, + 0.023652860894799232, + -0.0077371071092784405, + 0.0016141616506502032, + -0.038665156811475754, + -0.004191216081380844, + -0.0007769373478367925, + -0.00466332258656621, + -0.007859379053115845, + -0.014971540309488773, + -0.004571618512272835, + 0.019115205854177475, + 0.004952020477503538, + -0.010114620439708233, + 0.010895803570747375, + -0.0006096623255871236, + 0.018218543380498886, + -0.05325629562139511, + -0.018884247168898582, + -0.021655749529600143, + 0.014074877835810184, + -0.01665617898106575, + 0.018911419436335564, + -0.003943275660276413, + 0.0031671873293817043, + -0.00498598488047719, + 0.009279094636440277, + 0.005967558361589909, + 0.012383447028696537, + 0.020351512357592583, + 0.03225266560912132, + -0.004751630127429962, + 0.02028358355164528, + -0.009537224657833576, + 0.003688541939482093, + 0.0057094283401966095, + 0.007913722656667233, + 0.011948701925575733, + 0.017281124368309975, + -0.0030194418504834175, + -0.011099589988589287, + 0.004214991349726915, + 0.0029634004458785057, + 0.0014961351407691836, + -0.017851727083325386, + 0.0031637907959520817, + -0.01831364445388317, + 0.0019444661447778344, + -0.01554214395582676, + 0.02214483730494976, + -0.023123014718294144, + 0.007601249497383833, + 0.0067691197618842125, + 0.0016752977389842272, + -0.006955924443900585, + -0.017810970544815063, + -0.00466332258656621, + 0.019808081910014153, + -0.03407316282391548, + -0.014251493848860264, + 0.0011250731768086553, + 0.0019291822100058198, + -0.005661877803504467, + -0.006011711899191141, + 0.009530431590974331, + -0.007750693242996931, + 0.004880695138126612, + 0.014822096563875675, + -0.007478977087885141, + 0.0340459905564785, + -0.0020820223726332188, + 0.04331149905920029, + -0.003583251964300871, + -0.0003116240550298244, + -0.037034861743450165, + -0.02728026546537876, + -0.015025883913040161, + 0.008735663257539272, + -0.016004061326384544, + -0.0010664844885468483, + -0.041436657309532166, + 0.003688541939482093, + -0.010345579124987125, + 0.043257154524326324, + -0.003871950088068843, + 0.003590045031160116, + 0.003498340956866741, + 0.03111145831644535, + -0.01758001185953617, + -0.0034949444234371185, + 0.013314073905348778, + 0.0020939097739756107, + 0.03899121657013893, + -0.019617879763245583, + 0.012933672405779362, + 0.016887137666344643, + -0.0055090379901230335, + -0.018435915932059288, + 0.0007251415518112481, + -0.00048781477380543947, + -0.002234862418845296, + 0.020188484340906143, + -0.0035696662962436676, + -0.003596837865188718, + 0.004466328304260969, + -0.00951005332171917, + -0.02359851635992527, + -0.032660238444805145, + -0.010331992991268635, + -0.010046691633760929, + -0.002440347569063306, + 0.005454694852232933, + -0.00365797383710742, + -0.01737622544169426, + 0.00978856161236763, + 0.0038345891516655684, + -0.015433457680046558, + -0.006775912828743458, + 0.0006873560487292707, + 0.01664259284734726, + 0.015039469115436077, + 0.01646597683429718, + -0.016425220295786858, + 0.012308725155889988, + -0.009863283485174179, + -0.004405192565172911, + 0.022919228300452232, + 0.009795354679226875, + 0.008069959469139576, + 0.02158782072365284, + -0.01683279313147068, + -0.013905055820941925, + 0.010922974906861782, + 0.010175756178796291, + 0.012213625013828278, + 0.01628936268389225, + 0.003226625034585595, + -0.01793324202299118, + -0.008708490990102291, + 0.0028139567002654076, + 0.01262799184769392, + 0.008103923872113228, + 0.013843920081853867, + 0.01885707676410675, + -0.010841459967195988, + -0.008348467759788036, + 0.02710365131497383, + 0.005033534951508045, + -0.00033094134414568543, + -0.003406636882573366, + 0.012573648244142532, + 0.0010537478374317288, + 0.003133222693577409, + -0.012057388201355934, + -0.007268397603183985, + 0.022729026153683662, + -0.015433457680046558, + 0.003457583487033844, + -0.028448643162846565, + 0.015148155391216278, + 0.004113097675144672, + 0.018992934376001358, + -0.016927894204854965, + 0.0035526840947568417, + -0.018164200708270073, + -0.014659067615866661, + 0.01794682815670967, + 0.0022144836839288473, + 0.010284443385899067, + 0.004969002678990364, + 0.013191801495850086, + -0.02029716968536377, + -0.00851829070597887, + 0.0042727310210466385, + 0.006042280234396458, + -0.013477103784680367, + -0.00543771218508482, + 0.006507593207061291, + -0.009659496136009693, + -0.02268826961517334, + 0.05792980641126633, + -0.014156392775475979, + 0.006035487167537212, + 0.011717744171619415, + 8.04002775112167e-5, + -0.020731914788484573, + 0.0026713060215115547, + 0.011201484128832817, + 0.00922475103288889, + 0.0012218719348311424, + -0.013463517650961876, + -0.003026234684512019, + 0.022824127227067947, + 0.006514386273920536, + -0.022769784554839134, + -0.0025558266788721085, + 0.011643022298812866, + 0.010685224086046219, + 0.002985477214679122, + 0.015392700210213661, + 0.006687605287879705, + -0.00923833716660738, + 0.00014509199536405504, + -0.00014912527694832534, + -0.013341245241463184, + 0.02395174838602543, + -0.012845364399254322, + -0.01334803830832243, + 0.02596244402229786, + 0.021696506068110466, + -0.0007527376874350011, + -0.026777591556310654, + -0.006657036952674389, + -0.025568457320332527, + -0.00017353723524138331, + -0.0023061877582222223, + 0.006816669832915068, + -0.0019495608285069466, + -0.009761390276253223, + -0.010359164327383041, + 0.010019520297646523, + -0.006487214472144842, + 0.008565840311348438, + 0.014604724012315273, + -0.031138630583882332, + 0.0014749072724953294, + -0.02120741829276085, + 0.006042280234396458, + -0.0036919384729117155, + -0.008076752535998821, + 0.012098145671188831, + -0.023557759821414948, + 0.02709006518125534, + 0.016180675476789474, + 0.017416981980204582, + -0.0019920163322240114, + 0.015827445313334465, + 0.011643022298812866, + 0.009747804142534733, + 0.004938434809446335, + -0.028285615146160126, + -0.015596486628055573, + 0.012913293205201626, + -0.014971540309488773, + -0.011955494992434978, + 0.007777864579111338, + -0.012498926371335983, + -0.001119978609494865, + -0.004812765866518021, + -0.023082256317138672, + -0.026030372828245163, + -0.01717243902385235, + -2.6256131604895927e-5, + -0.013572203926742077, + -0.01226117555052042, + 0.021873122081160545, + 0.0015054753748700023, + 0.03657294809818268, + 0.027008550241589546, + -0.004724458325654268, + -0.0022280695848166943, + 0.00904134288430214, + -0.019278235733509064, + -0.00787975825369358, + 0.014957954175770283, + -0.010033105500042439, + 0.020161312073469162, + -0.05602779611945152, + 0.007451805751770735, + -0.027674254029989243, + -0.02964419312775135, + -0.013320866972208023, + 0.01995752565562725, + 0.009863283485174179, + 0.0023910989984869957, + -0.002625453984364867, + 0.01863970421254635, + 0.006106812506914139, + -0.007241225801408291, + -0.006640054751187563, + -0.001309330458752811, + 0.01024368591606617, + -0.013551825657486916, + -0.008626976981759071, + -0.01790607161819935, + -0.006572125945240259, + 0.03290478140115738, + -0.011371306143701077, + -0.022756198421120644, + 0.006813273765146732, + 0.0032385126687586308, + -0.0073295338079333305, + 0.010637673549354076, + 0.0005442806868813932, + -0.002625453984364867, + -0.0005230529350228608, + 0.02635643258690834, + 0.0027664063964039087, + -0.020922116935253143, + -0.008239781484007835, + 0.0002672579721547663, + 0.016235018149018288, + 0.0029226429760456085, + -0.023571345955133438, + 0.0029837791807949543, + -0.0013407476944848895, + -0.012818193063139915, + -0.015610072761774063, + -0.018218543380498886, + -0.011663400568068027, + 0.00961873959749937, + 0.004727854859083891, + 0.02874753065407276, + 0.008525082841515541, + 0.032877612859010696, + -0.0026305485516786575, + -0.018612531945109367, + 0.008103923872113228, + 0.0009102479089051485, + -0.01993035338819027, + 0.022837713360786438, + -0.006904977839440107, + 0.023829475045204163, + 0.02343548834323883, + 0.004191216081380844, + -0.000989215332083404, + -0.006490611005574465, + -0.016968650743365288, + 0.00906851515173912, + 0.00042943833977915347, + 0.025133710354566574, + -0.02581300027668476, + 0.013232558965682983, + -0.018694046884775162, + -0.004598789848387241, + 0.004676908254623413, + -0.03494265303015709, + 0.022362209856510162, + -0.021642163395881653, + 0.01133054867386818, + 0.01976732350885868, + -0.0006465986953116953, + -0.010379543527960777, + 0.0068608238361775875, + 0.0012498926371335983, + 0.009564395993947983, + 0.020636815577745438, + 0.02086777240037918, + 0.005682256538420916, + 0.0016523717204108834, + 0.021913878619670868, + 0.005488659255206585, + 0.012716298922896385, + -0.01959070935845375, + 0.00038804413634352386, + -0.013646925799548626, + 0.004707476124167442, + 0.0020446614362299442, + -0.022579582408070564, + 0.007281983271241188, + -0.01198945939540863, + -0.012295139953494072, + 0.00849111843854189, + 0.004099512007087469, + -0.024549521505832672, + -0.01043388620018959, + 0.00447991443797946, + -0.012193246744573116, + 0.0037666603457182646, + -0.004530861042439938, + -0.003824399784207344, + 0.011418856680393219, + 0.007390669547021389, + -0.007234433200210333, + -0.009781768545508385, + -0.009720632806420326, + 0.04149100184440613, + 0.020922116935253143, + 0.028068242594599724, + -0.01069201622158289, + -0.012417412362992764, + 0.008144681341946125, + 0.016207847744226456, + -0.005597345530986786, + -0.020528128370642662, + -0.0006737702642567456, + -0.01087542437016964, + -0.005773960612714291, + 0.006629865616559982, + 0.011941908858716488, + -0.025160882622003555, + -0.028829045593738556, + 0.01251930557191372, + 0.011174311861395836, + -0.006113605573773384, + 0.009109271690249443, + 0.011507163755595684, + 0.016887137666344643, + -0.004130080342292786, + 0.006171345245093107, + 0.008362053893506527, + 0.000650419679004699, + 0.020623229444026947, + 0.011038454249501228, + -0.01032519992440939, + -0.002070134738460183, + -0.0025711108464747667, + 0.008579426445066929, + 0.028502987697720528, + -0.008531875908374786, + 0.02177802100777626, + -0.013293695636093616, + -0.0019342767773196101, + 0.007859379053115845, + -0.0009093988337554038, + 0.03092125803232193, + 0.009034549817442894, + -0.015827445313334465, + 0.008035995066165924, + -0.021900292485952377, + -0.014102050103247166, + 0.0010299726855009794, + -0.00777107197791338, + -0.019699394702911377, + -0.004119890742003918, + -0.008579426445066929, + -0.013103494420647621, + 0.0053154402412474155, + -0.015664415434002876, + -2.4982462491607293e-5, + -0.009842905215919018, + 0.006018504966050386, + 0.022049736231565475, + -0.006004919297993183, + 0.011194691061973572, + -0.005250907968729734, + 0.007485770154744387, + 0.011133554391562939, + -0.0025880930479615927, + -0.02415553480386734, + 0.018177786841988564, + 0.010603709146380424, + -0.02248448133468628, + -0.00868811272084713, + 0.015025883913040161, + -0.0006321637774817646, + -0.031763575971126556, + 0.012043802998960018, + -0.00795448012650013, + 0.00235203979536891, + 0.008117509074509144, + -0.00553620932623744, + 0.012872535735368729, + 0.024237049743533134, + -0.008029201999306679, + -0.004425570834428072, + -0.005750185344368219, + -0.036301229149103165, + 0.00970025360584259, + 0.015990475192666054, + -0.006334374658763409, + -0.0037734531797468662, + 0.015691587701439857, + -0.009095686487853527, + 0.00806316640228033, + -0.030812570825219154, + 0.018585359677672386, + 0.015841031447052956, + -0.014468866400420666, + 0.01680562272667885, + -0.007818622514605522, + -0.003946671728044748, + -0.012947257608175278, + -0.005237321835011244, + 0.006035487167537212, + 0.011276206001639366, + 0.002212785417214036, + -0.010495022870600224, + 0.019142378121614456, + -0.03877384588122368, + -0.00425235228613019, + -0.008545462042093277, + -0.018979348242282867, + 0.002476010238751769, + -0.0055158305913209915, + 0.0044561391696333885, + 0.04208877682685852, + 0.0014596233377233148, + -0.0043814172968268394, + 0.016710521653294563, + 0.00995838362723589, + -0.010481436736881733, + -0.0032843647059053183, + -0.0009535526041872799, + -0.013225766830146313, + -0.010576537810266018, + 0.0056992387399077415, + 0.01921030692756176, + -0.004826352000236511, + 0.019509194418787956, + -0.003104353090748191, + -0.012152489274740219, + 0.0069627175107598305, + -0.012227211147546768, + 0.012315518222749233, + -0.016194261610507965, + 0.022389382123947144, + 0.015841031447052956, + 0.01922389306128025, + -0.012709506787359715, + 0.008151473477482796, + 0.022008979693055153, + -0.02195463702082634, + -0.00022734970843885094, + 0.0046735117211937904, + 0.004225180484354496, + -0.03016045317053795, + -0.00859980471432209, + 0.01753925532102585, + -0.018884247168898582, + -0.0035594769287854433, + -0.014305836521089077, + 0.0030873706564307213, + 0.00018224063387606293, + 0.005284872371703386, + -0.016167089343070984, + 0.0035866484977304935, + -0.004422174766659737, + 0.01849026046693325, + 0.012200038880109787, + -0.013463517650961876, + -0.010121413506567478, + 0.013952606357634068, + 0.015949716791510582, + -0.01279781386256218, + 0.001976732397451997, + 0.0013772594975307584, + 0.02558204159140587, + -0.01960429549217224, + 0.006599297281354666, + 0.01080070249736309, + 0.013191801495850086, + -0.010943354107439518, + -0.005077688954770565, + 0.0037836425472050905, + -0.0057909428142011166, + -0.005366386845707893, + 0.018789147958159447, + -0.029943080618977547, + -0.001959750195965171, + -0.002825844334438443, + -0.015256841666996479, + -0.009367401711642742, + -0.004867109004408121, + -0.004724458325654268, + 0.019427679479122162, + -0.0010044993832707405, + -0.009075307287275791, + -0.019658638164401054, + 0.0014027327997609973, + 0.039425961673259735, + -0.0019291822100058198, + -0.0009195881430059671, + -0.0062766349874436855, + -0.030703885480761528, + 0.014862854033708572, + 0.024060433730483055, + -0.010257271118462086, + -0.0029396251775324345, + -0.002640737919136882, + -0.013993363827466965, + -0.006280031520873308, + 0.005074292421340942, + 0.010488229803740978, + -0.03149186074733734, + 0.03279609605669975, + -0.025133710354566574, + -0.0062766349874436855, + -0.019848838448524475, + 0.015610072761774063, + -0.006341167259961367, + -0.00384138198569417, + 0.027185166254639626, + -0.0021550459787249565, + 0.004017997533082962, + -0.007234433200210333, + -0.007383876945823431, + 0.0006873560487292707, + 0.022036151960492134, + -0.004907866474241018, + 0.0004648887552320957, + 0.013246145099401474, + -0.01756642572581768, + -0.0012770642060786486, + 0.014849267899990082, + -0.01235627569258213, + -0.014319422654807568, + -0.007791450712829828, + -0.0006601844797842205, + 0.00015889006317593157, + 0.0031977551989257336, + -0.003780246013775468, + 0.006463439669460058, + 0.00690837437286973, + -0.005573570262640715, + -0.013382002711296082, + 0.020745500922203064, + 0.004133476410061121, + -0.00017873804608825594, + 0.00923833716660738, + -0.004126683808863163, + 0.003956861328333616, + -0.0336112454533577, + 0.01774304173886776, + -0.028964903205633163, + -0.008681319653987885, + 0.024549521505832672, + -0.016017645597457886, + -0.002076927572488785, + 0.013388795778155327, + -0.022905642166733742, + -0.0011097892420366406, + -0.017090924084186554, + 0.006687605287879705, + -0.0053426120430231094, + 0.004972399212419987, + 0.010515401139855385, + 0.01661542057991028, + 0.004822955466806889, + -0.012050596065819263, + -0.01288612186908722, + -0.006351356860250235, + 0.003681749105453491, + 0.012193246744573116, + -0.019509194418787956, + -0.01612633280456066, + -0.007057817652821541, + -0.017647940665483475, + 0.012634784914553165, + -0.021302519366145134, + 0.02891056053340435, + 0.016153505071997643, + -0.0023741167970001698, + -0.015528557822108269, + -0.0015479308785870671, + 0.00905492901802063, + 0.020079797133803368, + 0.0018629514379426837, + -0.011446028016507626, + 0.0011148839257657528, + -0.019454851746559143, + 0.031410347670316696, + 0.007675971370190382, + -0.001650673453696072, + 0.012458168901503086, + 0.017634354531764984, + -0.008565840311348438, + -0.00470407959073782, + 0.001628596568480134, + 0.007893343456089497, + -0.022470897063612938, + 0.009910834021866322, + -0.015053055249154568, + 0.005960765294730663, + 0.011860394850373268, + -0.011690571904182434, + 0.0008185438346117735, + 0.031899433583021164, + -0.01830005832016468, + 0.006137380376458168, + 0.009360609576106071, + 0.02855733036994934, + 0.021737264469265938, + -0.0055328127928078175, + 0.016438806429505348, + 0.00292434124276042, + 0.020161312073469162, + 0.020541714504361153, + -0.007614835165441036, + 0.007037438917905092, + 0.03418184816837311, + -0.0017848331481218338, + -0.014129221439361572, + -0.009462502785027027, + 0.010861839167773724, + 0.0016167090507224202, + 0.0009917626157402992, + 0.013558618724346161, + 0.01850384660065174, + 0.0068438416346907616, + 0.014713410288095474, + -0.01371485460549593, + -0.014210736379027367, + -0.006035487167537212, + -0.0018357798689976335, + 0.036871831864118576, + -0.003401542082428932, + -0.011092797853052616, + 0.009652704000473022, + 0.0027613118290901184, + 0.003922896925359964, + -0.027212336659431458, + -0.004615772049874067, + 0.0007200468680821359, + 0.006718173157423735, + -0.004269334487617016, + 0.008830763399600983, + -0.0011930022155866027, + 0.00023711449466645718, + -0.016737693920731544, + -0.013042358681559563, + 0.03407316282391548, + 0.017892485484480858, + -0.02742970921099186, + -0.003681749105453491, + 0.03092125803232193, + 0.022280694916844368, + 0.00804958026856184, + 0.02105797454714775, + -0.002253542887046933, + 0.03342104330658913, + 0.003732695709913969, + 0.02304149977862835, + 0.002042963169515133, + 0.00694913137704134, + -0.006663830019533634, + 0.010420300997793674, + 0.008708490990102291, + 0.004045168869197369, + 0.017308296635746956, + -0.020269999280571938, + 0.007166503928601742, + 0.01995752565562725, + 0.02012055553495884, + 0.014047706499695778, + -0.003926293458789587, + 0.0054071443155407906, + 0.011935116723179817, + -0.007112160790711641, + 0.024006091058254242, + 0.0052237361669540405, + -0.0013967889826744795, + 0.000536214152816683, + -0.006310599390417337, + -0.0076216282323002815, + 0.007105368189513683, + 0.005295061506330967, + -0.013225766830146313, + 0.005994729697704315, + -0.0029752880800515413, + -0.005478469654917717, + 0.0008924165740609169, + 0.00995838362723589, + 0.013232558965682983, + -0.012661956250667572, + 0.002020886167883873, + -0.03752395138144493, + 0.014237907715141773, + 0.02252523973584175, + -0.007485770154744387, + 0.0006593353464268148, + -0.011018075980246067, + 0.011398477479815483, + 0.0008813781314529479, + 0.01016896404325962, + 0.010664844885468483, + -0.002126176143065095, + 0.0030415186192840338, + 0.016207847744226456, + -0.017675112932920456, + 0.02156064845621586, + 0.0018578567542135715, + -0.000756134104449302, + -0.009122857823967934, + -0.0028971696738153696, + 0.011194691061973572, + 0.0023163771256804466, + 0.006483818404376507, + -0.017620770260691643, + -0.03592082858085632, + -0.027905212715268135, + -0.002985477214679122, + -0.0033930509816855192, + 0.001281309756450355, + 0.02175084874033928, + -0.001812004717066884, + 0.01272309198975563, + -0.008314503356814384, + 0.005841889418661594, + 0.0077371071092784405, + 0.016044817864894867, + -0.016533905640244484, + -0.0016693539218977094, + -0.03602951392531395, + 0.004602186381816864, + -0.0016082178335636854, + 0.011846808716654778, + -0.008626976981759071, + 0.02195463702082634, + 0.0027120632585138083, + 0.009476087987422943, + 0.010365957394242287, + -0.007859379053115845, + 0.017158852890133858, + -0.005712824407964945, + -0.02399250492453575, + 0.016071990132331848, + -0.0010291235521435738, + 0.023449072614312172, + -0.02067757211625576, + 0.028964903205633163, + 0.010019520297646523, + -0.004106305073946714, + -0.03535022586584091, + -0.0019495608285069466, + -0.0004916357574984431, + -0.014333007857203484, + 0.012043802998960018, + 0.00313492096029222, + -0.012498926371335983, + -0.005549794994294643, + 0.008606597781181335, + 0.0001731126831145957, + 0.018761975690722466, + 0.0016769958892837167, + -0.004816162399947643, + -0.00292434124276042, + 0.00023308121308218688, + -0.00041118240915238857, + -0.01337521057575941, + -0.00830771028995514, + 0.016221433877944946, + -0.010270857252180576, + 0.021275347098708153, + 0.006229084450751543, + 0.002148252911865711, + 0.0024980870075523853, + -0.02253882586956024, + 0.041626859456300735, + 0.00644306093454361, + -0.007349912542849779, + -0.03165489062666893, + -0.004367831628769636, + 0.0073295338079333305, + 0.0005094670923426747, + -0.006833652500063181, + -0.001000253832899034, + 0.01777021400630474, + -0.02411477640271187, + 0.006738551892340183, + -0.00443576043471694, + 0.0029447199776768684, + -0.01978090964257717, + -0.00849111843854189, + -0.0008193929679691792, + 0.03749677911400795, + 0.012037009932100773, + -0.024182705208659172, + 0.03529588133096695, + 9.833776857703924e-5, + 0.001895217690616846, + 0.009245130233466625, + 0.023082256317138672, + 0.018164200708270073, + -1.0640433174557984e-5, + 0.012716298922896385, + 0.008294125087559223, + -0.016724107787013054, + -0.001233759569004178, + -0.0039806365966796875, + -0.029780050739645958, + 0.00031778012635186315, + -0.015827445313334465, + 0.007886551320552826, + 0.0035221159923821688, + 0.009048135951161385, + -0.025025025010108948, + -0.0075469063594937325, + -0.007125746924430132, + -0.02104438841342926, + -0.018598945811390877, + 0.009761390276253223, + -0.0004457837203517556, + -0.004014600999653339, + -0.007017060648649931, + -0.008144681341946125, + 0.013354831375181675, + 0.010576537810266018, + 0.018150614574551582, + -0.005641499068588018, + 0.023517001420259476, + -0.0025880930479615927, + 0.005987937096506357, + 0.006167948711663485, + 0.013612961396574974, + -0.03342104330658913, + -0.0075469063594937325, + 0.010467851534485817, + -0.004615772049874067, + -0.008633769117295742, + -0.011547921225428581, + 0.008205817081034184, + 0.0031451103277504444, + 0.01810985803604126, + -0.007594456430524588, + -0.01630294695496559, + -0.0060762446373701096, + 0.012967636808753014, + -0.022470897063612938, + 0.0014137713005766273, + 0.044941794127225876, + 0.005543002393096685, + -0.01014179177582264, + 0.011867186985909939, + -0.009659496136009693, + 0.0009747804142534733, + 0.005814718082547188, + 0.012166074477136135, + 0.0034304119180887938, + 0.02559562772512436, + -0.023571345955133438, + -0.013939020223915577, + 0.0027647081296890974, + -0.0019105017418041825, + 0.01627577655017376, + 0.0016735994722694159, + 0.00014954982907511294, + 0.004649736452847719, + -8.390286529902369e-5, + 0.02399250492453575, + -0.00970025360584259, + -0.00276810466311872, + 0.027171580120921135, + -0.018707633018493652, + 0.016153505071997643, + -0.0007251415518112481, + -0.0032588914036750793, + -0.019427679479122162, + 0.006150966510176659, + -0.00787975825369358, + -0.007010267581790686, + -0.00019964743114542216, + 0.007322740741074085, + -0.002360530896112323, + -0.003936482593417168, + 0.00787975825369358, + 0.0010630880715325475, + -0.021329689770936966, + -0.01043388620018959, + 0.02085418812930584, + -0.007112160790711641, + -0.01919672079384327, + -0.004282920155674219, + -0.021465547382831573, + 0.0077371071092784405, + -0.01474058162420988, + -0.02615264616906643, + 0.014591137878596783, + 0.003888932289555669, + -0.0009246828267350793, + 0.0078118289820849895, + -0.02176443487405777, + -0.01721319556236267, + -0.00027107895584777, + -0.0032554948702454567, + 0.001517362892627716, + 0.001553874695673585, + 0.025908101350069046, + 0.0014061292167752981, + 0.02139761857688427, + 0.016778450459241867, + 0.0062019131146371365, + -0.01681920699775219, + 0.010107827372848988, + 0.007777864579111338, + -0.014142807573080063, + -0.009088893420994282, + -0.0077371071092784405, + -0.006480421870946884, + 0.0019852234981954098, + 0.015976889058947563, + -0.0037666603457182646, + -0.0071461256593465805, + -0.006246067117899656, + -0.027932383120059967, + 0.002751122461631894, + 0.0043474528938531876, + 0.01681920699775219, + 0.028964903205633163, + 0.006592504680156708, + 0.009197579696774483, + 0.005009760148823261, + -0.0021975014824420214, + 0.010936561040580273, + 0.00594717962667346, + -0.0024777085054665804, + -0.006782705429941416, + -0.010128206573426723, + -0.004659926053136587, + -0.003583251964300871, + -0.02010696940124035, + 0.01059691607952118, + 0.018884247168898582, + -0.022389382123947144, + -0.0369805209338665, + 0.000683535065036267, + 0.005784150213003159, + 0.011371306143701077, + 0.004826352000236511, + -0.021547062322497368, + -0.012655163183808327, + -0.01923747919499874, + -0.017294710502028465, + 0.003854967886582017, + -0.0019138981588184834, + 0.0008249121601693332, + 0.010039898566901684, + -0.0016651083715260029, + 0.03323084115982056, + 0.005362990777939558, + -0.0026033769827336073, + -0.02615264616906643, + 0.016764864325523376, + 0.02704930678009987, + 0.006731758825480938, + 0.0011233750265091658, + 0.021125903353095055, + -0.016221433877944946, + -0.0007743900059722364, + -0.02361210249364376, + 0.002549033844843507, + 0.009781768545508385, + 0.0005871608736924827, + -0.013857505284249783, + 0.004051961936056614, + -0.006150966510176659, + -0.017634354531764984, + -0.012070974335074425, + 0.017865313217043877, + -0.007709935773164034, + 0.011378099210560322, + 0.027660667896270752, + -0.021818779408931732, + 0.005987937096506357, + 0.01995752565562725, + -0.012213625013828278, + -0.022729026153683662, + -0.0004903621156699955, + -0.013742026872932911, + -0.02395174838602543, + -0.013382002711296082, + -0.005036931484937668, + 0.021112317219376564, + -0.0058181146159768105, + -0.01053578034043312, + 0.017974000424146652, + -0.01418356504291296, + -0.004636150784790516, + -0.013789576478302479, + 0.0069695101119577885, + 0.011119969189167023, + -0.010841459967195988, + 0.01809627190232277, + 0.0002642860636115074, + -0.0022246730513870716, + -0.0040723406709730625, + 0.013429553247988224, + 0.015827445313334465, + -0.020976459607481956, + 0.019101619720458984, + 0.00709178252145648, + -0.017661526799201965, + 0.0016557681374251842, + -0.00662646908313036, + -0.017824556678533554, + 0.0006066904170438647, + 0.008640562184154987, + 0.022253524512052536, + -0.01426507905125618, + -0.008497911505401134, + -0.0009917626157402992, + -0.003610423766076565, + -0.00625965278595686, + 0.016139918938279152, + -0.008083544671535492, + 0.014699825085699558, + -0.02251165360212326, + -0.0019971111323684454, + -0.017335467040538788, + 0.00226712878793478, + -0.027728596702218056, + -0.020935703068971634, + 0.020174898207187653, + 0.01053578034043312, + 0.006928752642124891, + 0.020813429728150368, + -0.00898020714521408, + 0.003304743440821767, + 0.008035995066165924, + -0.005420729983597994, + 0.0011488483287394047, + -0.02101721614599228, + 0.00453425757586956, + 0.024617450311779976, + 0.0318450927734375, + 0.01698223687708378, + -0.0072616045363247395, + -0.02251165360212326, + -0.0007926459074951708, + -0.0015861409483477473, + 0.022022565826773643, + -0.005845285952091217, + 0.0033624828793108463, + -0.01809627190232277, + -0.00457501458004117, + 0.00859980471432209, + -0.0013475405285134912, + -0.0075469063594937325, + 0.008287332020699978, + 0.018367987126111984, + -0.016506735235452652, + -0.004952020477503538, + 0.0031807729974389076, + -0.019088035449385643, + 0.0031926606316119432, + -0.01418356504291296, + -0.005858872085809708, + -0.01224758941680193, + 0.012729885056614876, + -0.010658051818609238, + 0.0022076908499002457, + 0.01306953001767397, + -0.0071529182605445385, + 0.010712395422160625, + 0.005631309933960438, + 0.02086777240037918, + -0.02503861114382744, + 0.012471755035221577, + -0.01016896404325962, + 0.002559223212301731, + 0.007526527624577284, + -0.012295139953494072, + 0.013966191560029984, + -0.017240367829799652, + 0.016139918938279152, + -0.003505133790895343, + -0.02194105088710785, + -0.01571875810623169, + -0.008953035809099674, + -0.0020276792347431183, + 0.004452742636203766, + 0.017838142812252045, + -0.010943354107439518, + 0.026125473901629448, + 0.019672224298119545, + 0.026641733944416046, + -0.03075822815299034, + 0.014835682697594166, + 0.005648292135447264, + 0.017607184126973152, + -0.02540542744100094, + 0.012750263325870037, + -0.00223995721898973, + -0.008749248459935188, + 0.0010036502499133348, + -0.005179582163691521, + -0.01649314910173416, + 0.009156822226941586, + -0.008260160684585571, + -0.013952606357634068, + -0.010162170976400375, + -0.012234004214406013, + -0.02449517883360386, + 0.005706031806766987, + -0.020772673189640045, + -0.015148155391216278, + 0.017430568113923073, + -0.013212180696427822, + -0.009673082269728184, + -0.01427866518497467, + 0.010855046100914478, + 0.0076216282323002815, + -0.007533320691436529, + -0.005672067403793335, + 0.017974000424146652, + -0.011466406285762787, + 0.017851727083325386, + 0.008681319653987885, + -0.025133710354566574, + 0.001117431209422648, + 0.007927308790385723, + -0.010658051818609238, + -0.007512941956520081, + 0.01722678169608116, + -0.028666015714406967, + 0.016207847744226456, + 0.032279837876558304, + 0.00969346147030592, + -0.0031637907959520817, + 0.004045168869197369, + -0.00841639656573534, + 0.013612961396574974, + 0.017158852890133858, + 0.0069525279104709625, + 0.012852157466113567, + 0.031926605850458145, + -0.0029192466754466295, + -0.017444154247641563, + -0.02910076268017292, + 0.00022416553110815585, + -0.00047125708078965545, + -0.006412492599338293, + 0.008341674692928791, + -0.002798672765493393, + 0.003306441707536578, + 0.010461058467626572, + 0.008864727802574635, + 0.0067691197618842125, + 0.005780753679573536, + 0.003213039366528392, + 0.0007900985656306148, + -0.0016752977389842272, + 0.013110287487506866, + -0.004867109004408121, + -0.006055865902453661, + -0.027022136375308037, + 0.004605582915246487, + -0.006062658503651619, + 0.01244458369910717, + 0.019998282194137573, + -0.008266952820122242, + 0.021098731085658073, + -0.001181114581413567, + -0.014957954175770283, + -0.009306265972554684, + 0.013218973763287067, + -0.005383369047194719, + 0.019115205854177475, + -0.004952020477503538, + 0.018001170828938484, + 0.023109428584575653, + 0.0031841695308685303, + 0.004873902071267366, + -0.014468866400420666, + -0.005335818976163864, + -0.00014349989942274988, + -0.010393129661679268, + 0.004911263007670641, + -0.011119969189167023, + -0.0054241265170276165, + -0.0017211497761309147, + 0.010542572475969791, + -0.0006499951123259962, + -0.003960257861763239, + 0.0024607263039797544, + -0.009931212291121483, + 0.007703142706304789, + 0.010644466616213322, + -0.011289791204035282, + -0.0067861019633710384, + 0.005475073121488094, + -0.0032673825044184923, + -0.025486942380666733, + 0.006983095780014992, + -0.004890884272754192, + -0.008035995066165924, + 0.005111653357744217, + 0.0007497657788917422, + 0.0025031818076968193, + -0.016357291489839554, + 0.018381573259830475, + 0.006697794422507286, + 0.003596837865188718, + 0.01974015310406685, + 0.0056075346656143665, + -0.006792895030230284, + 0.013660511933267117, + -0.009136443957686424, + 0.0008941147825680673, + 0.00988366175442934, + -0.013701269403100014, + -0.0033845598809421062, + -0.007051025051623583, + -0.008694905787706375, + 0.018422331660985947, + 0.001978430664166808, + -0.009829319082200527, + -0.003265684237703681, + 0.001420564134605229, + -0.010950146242976189, + -0.018544603139162064, + -0.0005294212605804205, + -0.03233417868614197, + -0.005036931484937668, + 0.01885707676410675, + 0.01372844073921442, + -0.01665617898106575, + -0.004761819262057543, + 0.029372477903962135, + 0.007798243314027786, + -0.015569315291941166, + -0.004102908540517092, + -0.0015666113467887044, + -0.025323912501335144, + 0.006208706181496382, + -0.007023853249847889, + -0.009978762827813625, + -0.00987686961889267, + 0.0024165723007172346, + 0.01188077311962843, + -0.009965176694095135, + 0.0010461058700457215, + 0.01023009978234768, + -0.006004919297993183, + -0.005033534951508045, + 0.00951005332171917, + 0.01426507905125618, + 0.0040791332721710205, + -0.007139332592487335, + -0.007125746924430132, + 0.011459614150226116, + -0.012940464541316032, + 0.002642436185851693, + 0.01976732350885868, + -0.0005039479001425207, + -0.02143837697803974, + 0.006361545994877815, + -2.4000677512958646e-5, + 0.015392700210213661, + 0.005196564830839634, + -0.009544017724692822, + -0.022226352244615555, + -0.012831778265535831, + -0.021356862038373947, + 0.01993035338819027, + 0.030241968110203743, + 0.0038176069501787424, + 0.024060433730483055, + 0.015827445313334465, + 0.024943510070443153, + -0.012716298922896385, + -0.00466332258656621, + -0.017498496919870377, + 0.005193168297410011, + -0.007560492027550936, + 0.009530431590974331, + -0.025908101350069046, + -0.008891899138689041, + -0.0016430314863100648, + -0.012777435593307018, + -0.014428108930587769, + -0.03842061385512352, + 0.002798672765493393, + 0.0018714425386860967, + -0.006976303178817034, + 0.02067757211625576, + 0.01053578034043312, + -0.0022909038234502077, + -0.007159711327403784, + 0.0029277377761900425, + -0.003671559737995267, + 0.006147569976747036, + -0.008776419796049595, + -0.01736263930797577, + 0.013103494420647621, + -0.009822526015341282, + -0.00987686961889267, + -0.012818193063139915, + 0.013320866972208023, + 0.01790607161819935, + 0.012954050675034523, + -0.003654577536508441, + -0.00988366175442934, + -0.005926800891757011, + -0.011303377337753773, + -0.0022280695848166943, + -0.013191801495850086, + -0.009197579696774483, + -0.011249033734202385, + -0.0012269666185602546, + 0.0033115362748503685, + -0.01317821629345417, + 0.01796041429042816, + 0.021995393559336662, + -0.02270185574889183, + -0.006823462899774313, + -0.005447901785373688, + 0.012315518222749233, + 0.025935273617506027, + 0.01628936268389225, + -0.00740425568073988, + 0.01646597683429718, + -0.013925435021519661, + 0.025310326367616653, + -0.012417412362992764, + 0.012152489274740219, + 0.01575951650738716, + -0.012668749317526817, + 0.004228577017784119, + -0.0028547141700983047, + 0.0009331739274784923, + 0.011928323656320572, + -0.0009399668197147548, + -0.016520321369171143, + -0.009197579696774483, + -0.005413937382400036, + 0.011282998137176037, + -0.01272309198975563, + 0.021261760964989662, + -0.006123794708400965, + 0.005702635273337364, + -0.00545129831880331, + -0.004816162399947643, + 0.011568300426006317, + 0.01380316261202097, + -0.00013193076301831752, + 0.026587391272187233, + 0.00849111843854189, + 0.0003704250557348132, + 0.011479992419481277, + -0.004697286989539862, + -0.004198009148240089, + -0.011228655464947224, + 0.019658638164401054, + -0.007859379053115845, + -0.0008469891035929322, + -0.00088647281518206, + -0.02141120471060276, + -0.006653640419244766, + -0.01627577655017376, + 0.03274175524711609, + -0.0075469063594937325, + -0.005485262721776962, + -0.004571618512272835, + 0.006429475266486406, + 0.0029192466754466295, + -0.0005243265768513083, + -0.011099589988589287, + -0.0011768690310418606, + -0.0021805192809551954, + -0.0012057388667017221, + -0.0402139388024807, + 0.027850870043039322, + 0.02230786718428135, + -0.005291664972901344, + -0.0059845405630767345, + 0.022783368825912476, + -0.015881787985563278, + 0.01868046075105667, + 0.025908101350069046, + 0.004276127554476261, + 0.0017746437806636095, + 0.005923404358327389, + -0.01207776740193367, + -0.0011250731768086553, + -0.021492719650268555, + 0.0022943003568798304, + -0.02412836253643036, + 0.01152754295617342, + 0.00012004318705294281, + 0.0004903621156699955, + -0.012057388201355934, + -0.02558204159140587, + -0.02742970921099186, + -0.00896662101149559, + 0.0343448780477047, + 0.050566308200359344, + 0.026954207569360733, + 0.012580441311001778, + -0.00420819828286767, + 0.025568457320332527, + -0.027388952672481537, + -0.0003918651200365275, + -0.0006818368565291166, + -0.035051338374614716, + -0.019631465896964073, + 0.003549287561327219, + 0.0019529572455212474, + 0.02014772593975067, + 0.01071918848901987, + -0.018218543380498886, + -0.0025524303782731295, + -0.013395588845014572, + -0.012580441311001778, + 0.002226371318101883, + 0.003314932808279991, + -0.004687097389250994, + 0.004452742636203766, + -0.016710521653294563, + 0.017661526799201965, + 0.01850384660065174, + 0.009632324799895287, + -0.003221530467271805, + -0.011459614150226116, + -0.017444154247641563, + 0.010936561040580273, + 0.02105797454714775, + -0.02066398598253727, + -0.019318992272019386, + -0.001976732397451997, + -0.011052040383219719, + 0.021288933232426643, + 0.006256256252527237, + -0.0009628928382880986, + -0.001670203055255115, + -0.018585359677672386, + -0.00959156733006239, + -0.015487800352275372, + -0.000544705253560096, + -0.013388795778155327, + -0.012960843741893768, + -0.013212180696427822, + 0.0023282647598534822, + -0.01937333680689335, + 0.013796369545161724, + -0.012505719438195229, + 0.00237921136431396, + -0.010345579124987125, + -0.03518719598650932, + -0.008905485272407532, + -0.017444154247641563, + 0.01740339770913124, + 0.03295912593603134, + -0.018164200708270073, + -0.015610072761774063, + -0.018245715647935867, + -0.01755283959209919, + 0.012220418080687523, + 0.010270857252180576, + 0.006555143743753433, + -0.018395159393548965, + 0.02014772593975067, + 0.0007026400417089462, + 0.002576205413788557, + -0.00680987723171711, + -0.016968650743365288, + -0.0023690219968557358, + -0.012818193063139915, + -0.014088463969528675, + -0.00461916858330369, + -0.023299628868699074, + -0.009897247888147831, + -0.021655749529600143, + -0.0025218622758984566, + 0.0034762639552354813, + 0.03828475624322891, + 0.010393129661679268, + 0.021696506068110466, + 0.0073363264091312885, + -0.0034304119180887938, + -0.015868201851844788, + 0.00915002916008234, + -0.004051961936056614, + 0.013524653390049934, + -0.013055943883955479, + -0.009523638524115086, + -0.030785400420427322, + -0.001259232871234417, + -0.022239938378334045, + 0.0027562170289456844, + 0.02122100442647934, + -0.014971540309488773, + -0.0023741167970001698, + -0.020229240879416466, + -0.006225688382983208, + 0.01664259284734726, + -0.0007701444556005299, + 0.008212610147893429, + -0.014944368973374367, + 0.027212336659431458, + 0.007798243314027786, + -0.034290533512830734, + 0.0037394885439425707, + 0.00804958026856184, + 0.0023299630265682936, + 0.009917626157402992, + 0.006687605287879705, + 0.0006062658503651619, + 0.006466836202889681, + 0.008022408932447433, + -0.004809369798749685, + 0.02942682057619095, + 0.0003494095290079713, + 0.001895217690616846, + 0.009285887703299522, + 0.011819637380540371, + -0.010454265400767326, + 0.0035696662962436676, + 0.010447472333908081, + 0.008939449675381184, + -0.0007166503928601742, + 0.0019274839432910085, + 0.012757056392729282, + 0.014129221439361572, + -0.01662900671362877, + 0.004065547604113817, + 0.018041929230093956, + 0.008722077123820782, + -0.014292251318693161, + -0.00014530426415149122, + -0.017321882769465446, + -0.010678431019186974, + 0.006745344493538141, + -0.014455280266702175, + 0.01681920699775219, + -0.00978856161236763, + -0.021886708214879036, + 0.013966191560029984, + 0.016031231731176376, + -0.015120984055101871, + -0.013021979480981827, + -0.009007378481328487, + -0.01755283959209919, + 0.014360180124640465, + 0.022742612287402153, + 0.0011463010450825095, + 0.004449346102774143, + -0.01327331643551588, + -0.0075469063594937325, + 0.013565410859882832, + -0.0031009565573185682, + 0.02541901357471943, + 0.0003247853019274771, + 0.02415553480386734, + -0.009014171548187733, + 0.0011148839257657528, + 0.0008898692321963608, + 0.012505719438195229, + 0.01298122201114893, + 0.020242827013134956, + 0.007852586917579174, + 0.007105368189513683, + 0.0030381223186850548, + 0.01078032422810793, + -0.014074877835810184, + -0.013979777693748474, + 0.0009425141615793109, + 0.01808268576860428, + -0.009489674121141434, + -0.007764278911054134, + -0.010454265400767326, + -0.013646925799548626, + -0.006697794422507286, + -0.023123014718294144, + -0.03380144387483597, + -0.008620183914899826, + 0.016737693920731544, + 0.013422760181128979, + 0.02013413980603218, + -0.0020888152066618204, + 0.012240796349942684, + -0.0010698809055611491, + -0.0006924507324583828, + 0.015256841666996479, + 0.011221862398087978, + -0.0002540967252571136, + 0.0037666603457182646, + 0.01088901050388813, + -0.008334881626069546, + -0.0015156646259129047, + -0.01015537790954113, + 0.010175756178796291, + -0.003994222264736891, + 0.018897833302617073, + -0.018897833302617073, + -0.0022943003568798304, + -0.01059691607952118, + -0.031953778117895126, + -0.0009968572994694114, + -0.03635557368397713 + ], + "74df844b-7eff-4914-a518-ec5b4bfa7c38": [ + -0.021971290931105614, + 0.0006365969311445951, + -0.013573777861893177, + -0.006950386334210634, + -0.04232848063111305, + -0.00402134470641613, + 0.01622452586889267, + 0.050065044313669205, + 0.008905399590730667, + 0.059053935110569, + -0.009538518264889717, + 0.02519949898123741, + -0.027606740593910217, + 0.009246310219168663, + -0.01605754904448986, + 0.015417473390698433, + -0.04224499315023422, + 0.023070551455020905, + -0.027286702767014503, + -0.0029690463561564684, + 0.06528771668672562, + -0.026368333026766777, + -0.006028538569808006, + 0.01861785165965557, + -0.03333958983421326, + -0.010171636939048767, + 0.03420230373740196, + -0.010561248287558556, + -0.023474078625440598, + -0.006393799092620611, + 0.012481474317610264, + 0.027578910812735558, + 0.024795973673462868, + -0.010763010941445827, + 0.010693437419831753, + -0.00574328750371933, + 0.00031047145603224635, + 0.041521426290273666, + -0.0175742506980896, + 0.026215272024273872, + -0.04845094308257103, + 0.009656793437898159, + 0.0172959566116333, + 0.0021306865382939577, + -0.012773683294653893, + 0.006612955126911402, + 0.03868282958865166, + -0.006045931950211525, + 0.008160964585840702, + 0.017532506957650185, + 0.008641021326184273, + 0.033506568521261215, + -0.009879427962005138, + 0.00818183645606041, + -0.0009270660812035203, + -0.00023198392591439188, + -0.006143334321677685, + 0.07975898683071136, + 0.009844641201198101, + -0.03294998034834862, + -0.02314012497663498, + -0.023265358060598373, + -0.004212671425193548, + 0.0011644854675978422, + 0.0017184639582410455, + -0.011027390137314796, + 0.010088148526847363, + -0.014276469126343727, + -0.02060765214264393, + 0.014179066754877567, + -0.026897091418504715, + 0.012787598185241222, + -0.028803402557969093, + 0.02544996328651905, + -0.030946265906095505, + 0.007625248748809099, + 0.03192029148340225, + -0.06361795216798782, + -0.0021933026146143675, + 0.015473132953047752, + -0.0024385489523410797, + 0.002499425783753395, + 0.015278327278792858, + 0.022736599668860435, + 0.019731026142835617, + 0.012119692750275135, + -0.03450842574238777, + -0.05156783014535904, + -0.061168964952230453, + -0.016127122566103935, + 0.017226383090019226, + 0.015167009085416794, + 0.0027533688116818666, + -0.005809382069855928, + -0.0011575280223041773, + -0.0007387829245999455, + 0.049786750227212906, + 0.018103009089827538, + -0.03996298089623451, + -0.020176297053694725, + -0.020092809572815895, + 0.02030152827501297, + -0.041521426290273666, + -0.0007813966949470341, + 0.030667971819639206, + -0.01920226961374283, + 0.0009783764835447073, + -0.006310310680419207, + -0.03979600593447685, + 0.02446202002465725, + 0.024253299459815025, + -0.02038501761853695, + -0.010484716854989529, + 0.013462460599839687, + 0.031419362872838974, + -0.06339531391859055, + 0.002755108056589961, + -0.03551028296351433, + -0.015069606713950634, + -0.04282940924167633, + 0.06484244018793106, + 0.04513924568891525, + 0.026507480069994926, + -0.02944347821176052, + 0.01600189134478569, + -0.012210138142108917, + 0.011389171704649925, + 0.002236786065623164, + 0.007326082792133093, + 0.009420243091881275, + 0.02010672353208065, + -0.030278360471129417, + -0.014485189691185951, + 0.008668850176036358, + -0.008668850176036358, + 0.027398020029067993, + 0.02666054107248783, + 0.033395249396562576, + -0.04914667457342148, + 0.058052077889442444, + -0.00892627239227295, + -0.012029247358441353, + -0.0216512531042099, + -0.010909114964306355, + -0.0026768380776047707, + -0.0035030224826186895, + -0.041799720376729965, + 0.04931365326046944, + 0.008849740959703922, + 0.014346042647957802, + -0.023348845541477203, + 0.009023674763739109, + 0.030890606343746185, + -0.0013705966994166374, + 0.01500003319233656, + 0.012829341925680637, + 0.0185621939599514, + 0.027718057855963707, + -0.009461987763643265, + -0.000409396190661937, + -0.023376675322651863, + -0.02713363990187645, + 0.02983308956027031, + 0.008731466718018055, + 0.010943901725113392, + 0.024670740589499474, + 0.03868282958865166, + 0.010359484702348709, + -0.06428585946559906, + 0.016906345263123512, + 0.052347052842378616, + -0.046836838126182556, + 0.014234725385904312, + -0.013316355645656586, + -0.0014140801504254341, + -0.01641933061182499, + 0.0047692591324448586, + -0.011103920638561249, + 0.022541793063282967, + -0.0700187087059021, + -0.003186463378369808, + -0.028358133509755135, + -0.036150358617305756, + 0.01801951974630356, + -0.006974737159907818, + 0.028803402557969093, + 0.003979600500315428, + 0.0020089331082999706, + -0.02454550936818123, + 0.039601199328899384, + 0.005350197199732065, + 0.01591840200126171, + 0.02972177229821682, + 0.05696672946214676, + -0.017810799181461334, + -0.004588368348777294, + -0.02666054107248783, + -0.010540375486016273, + 0.013733796775341034, + 0.020593738183379173, + -0.04099266976118088, + -0.047059472650289536, + -0.06595561653375626, + 0.011479617096483707, + -0.03450842574238777, + 0.0070860544219613075, + 0.013956431299448013, + -0.00675558065995574, + 0.02429504506289959, + -0.02115032449364662, + 0.035927724093198776, + -0.010596034117043018, + 0.02913735620677471, + 0.015194838866591454, + -0.03264385834336281, + -0.002586392452940345, + -0.026702284812927246, + 0.015445303171873093, + 0.009670707397162914, + -0.0049745007418096066, + -0.007506974041461945, + 0.012815427035093307, + 0.030918436124920845, + -0.009559390135109425, + -0.01782471500337124, + -0.038905467838048935, + -0.027370190247893333, + 0.014373872429132462, + -0.030417507514357567, + -0.02803809568285942, + 0.018937889486551285, + -0.012912830337882042, + 0.0019567529670894146, + -0.021720826625823975, + -0.024670740589499474, + -0.001913269516080618, + -0.016294099390506744, + -0.00040591752622276545, + 0.024503765627741814, + -0.018993549048900604, + 0.0368460938334465, + 0.05031551048159599, + 0.014540848322212696, + 0.016836771741509438, + 0.03303346782922745, + 0.0357050895690918, + -0.008995845913887024, + 0.052875813096761703, + 0.019410988315939903, + -0.007221722975373268, + -0.012168394401669502, + 0.020955519750714302, + 0.021915633231401443, + -0.030389677733182907, + -0.0037813163362443447, + 0.019494477659463882, + 0.03406315669417381, + -0.007541760802268982, + -0.03175331652164459, + -0.002268094103783369, + 0.006964301224797964, + -0.005725894123315811, + 0.015445303171873093, + -0.028831232339143753, + 0.058052077889442444, + -0.018603937700390816, + 0.004390083719044924, + -0.023460162803530693, + -0.0005339761264622211, + 0.014318213798105717, + -0.0486457459628582, + 0.015139180235564709, + 0.006539903115481138, + 0.015069606713950634, + -0.00098968215752393, + -0.004157012794166803, + 0.011507446877658367, + 0.016767198219895363, + -0.011959673836827278, + 0.014596506953239441, + -0.03267168626189232, + 0.02115032449364662, + 0.017059406265616417, + 0.03706872835755348, + -0.0146243367344141, + -0.023891517892479897, + -0.007896585389971733, + 0.016572393476963043, + -0.04024127498269081, + -0.012432773597538471, + 0.0279824361205101, + 0.004790131002664566, + 0.033617883920669556, + -0.006018102169036865, + 0.017615994438529015, + -0.0020524163264781237, + -0.02179040014743805, + -0.01886831596493721, + -0.014262555167078972, + 0.015681853517889977, + -0.015208753757178783, + 0.01486088614910841, + 0.03420230373740196, + -0.0002906865265686065, + -0.00039091575308702886, + 0.002948174485936761, + -0.004435306880623102, + -0.023126211017370224, + -0.05866432189941406, + 0.010505588725209236, + 0.05087209865450859, + -0.006974737159907818, + -0.020064979791641235, + -0.016864601522684097, + -0.021039007231593132, + 0.009900299832224846, + 0.012634536251425743, + -0.0049292780458927155, + -0.007924414239823818, + -0.02938782051205635, + -0.016808941960334778, + -0.003816103097051382, + -0.05446208640933037, + 0.016628051176667213, + 0.013900772668421268, + -0.025408219546079636, + 0.0044179135002195835, + 0.009670707397162914, + -0.017866458743810654, + -0.023919347673654556, + -0.008021817542612553, + -0.022138267755508423, + -0.0018263027304783463, + -0.008341855369508266, + -0.005990272853523493, + -0.026284845545887947, + -0.03562159836292267, + -0.030361847952008247, + -0.014471274800598621, + -0.004056131467223167, + -0.0033551789820194244, + 0.028719915077090263, + 0.00204198039136827, + -0.007381741888821125, + 0.01641933061182499, + -0.0006531206308864057, + -0.01280847005546093, + 0.019397074356675148, + -0.0044596572406589985, + -0.020913776010274887, + 0.0007200850523076952, + -0.027509337291121483, + 0.033812690526247025, + -0.00395872863009572, + 0.012878043577075005, + -0.0013462459901347756, + -0.03748616948723793, + -0.005771116819232702, + 0.0127945551648736, + 0.026270929723978043, + 0.01864568144083023, + -0.03297780826687813, + -0.052792325615882874, + -0.013483332470059395, + 0.007653078064322472, + 0.0258674044162035, + 0.03484237939119339, + 0.0024820324033498764, + -0.0007713955128565431, + 0.014791312627494335, + -0.0452783927321434, + 0.030194871127605438, + 0.04241196811199188, + -0.0021933026146143675, + -0.05457340553402901, + -0.016753284260630608, + 0.04313553124666214, + 0.0020193690434098244, + -0.02583957463502884, + 0.028079839423298836, + -0.015640107914805412, + 0.02561694011092186, + 0.004257894586771727, + -0.006463372148573399, + 0.03837670758366585, + 0.01148657500743866, + -0.010797797702252865, + -0.015681853517889977, + -0.01779688522219658, + -0.02930433116853237, + -0.04366428777575493, + -0.01597406156361103, + -0.041855379939079285, + -0.0067347087897360325, + -0.028664255514740944, + 0.030361847952008247, + 0.012599749490618706, + 0.01342767383903265, + 0.028552938252687454, + -0.007430443074554205, + 0.0011323076905682683, + -0.0042474581860005856, + -0.0016480208141729236, + -0.005207571666687727, + 0.0013192862970754504, + -0.0020976392552256584, + -0.004261373076587915, + 0.0009809854673221707, + 0.013051976449787617, + 0.011883143335580826, + -0.00017578163533471525, + -0.01762990839779377, + 0.002582913963124156, + -0.033367421478033066, + 0.057940758764743805, + -0.002242004033178091, + 0.022430475801229477, + 0.004859704524278641, + -0.06306136399507523, + -0.0054963016882538795, + 0.06846026331186295, + 0.06434151530265808, + -0.0027185820508748293, + 0.0009383717551827431, + -0.027857204899191856, + -0.003816103097051382, + 0.03475888818502426, + 0.016488904133439064, + -0.0024820324033498764, + -0.0036839134991168976, + -0.025770001113414764, + 0.006981694605201483, + -0.03300563991069794, + -0.03564943000674248, + 0.01463825162500143, + -0.002201999304816127, + 0.024392446503043175, + -0.004762301687151194, + -0.007527845911681652, + -0.003937856759876013, + 0.016683710739016533, + 0.02049633488059044, + 0.0006392059731297195, + -0.006299874745309353, + -0.01936924457550049, + -0.03144719451665878, + -0.021470362320542336, + 0.021776486188173294, + 0.018242156133055687, + 0.015487046912312508, + 0.02046850509941578, + 0.041660573333501816, + -0.05340456962585449, + -0.004682292230427265, + -0.017421189695596695, + 0.004682292230427265, + -0.010797797702252865, + 0.018464790657162666, + 0.021011177450418472, + -0.0014079924440011382, + -0.007506974041461945, + -0.006800803355872631, + 0.03267168626189232, + -0.028552938252687454, + -0.009670707397162914, + -0.0635622963309288, + -0.03957337141036987, + 0.01074213907122612, + -0.013608564622700214, + -0.017365530133247375, + -0.0005718066822737455, + 0.02339058928191662, + 0.0008779297932051122, + -0.001939359586685896, + -0.016015805304050446, + 0.030500994995236397, + 0.00493623549118638, + -0.0016941132489591837, + 0.023460162803530693, + -0.020176297053694725, + -0.017337700352072716, + -0.013441587798297405, + -0.03281083330512047, + 0.004873619414865971, + 0.04616893455386162, + -0.02983308956027031, + -0.020705055445432663, + 0.022402646020054817, + 0.041604917496442795, + -0.013782498426735401, + 0.05732851102948189, + -0.014276469126343727, + 0.0006922556785866618, + -0.024308959022164345, + -0.01411645021289587, + -0.03180897608399391, + -0.01155614759773016, + -0.04533405229449272, + -0.0187013391405344, + -0.041688404977321625, + 0.04881272464990616, + -0.01486088614910841, + 0.024336788803339005, + 0.03843236714601517, + 0.009079333394765854, + -0.011716166511178017, + -0.0035552026238292456, + 0.01255800575017929, + 0.015292241238057613, + -0.01498611830174923, + 0.005409334786236286, + -0.005249315872788429, + -0.013671180233359337, + 0.02448984980583191, + -0.00804268941283226, + 0.018297813832759857, + -0.008891485631465912, + 0.006341618951410055, + -0.011994460597634315, + -0.011945758946239948, + 0.0066233910620212555, + 0.01605754904448986, + -0.007117362692952156, + -0.0035169373732060194, + 0.025797830894589424, + -0.0018071699887514114, + -0.0025324730668216944, + 0.005600661505013704, + 0.029026038944721222, + 0.0031638520304113626, + -0.0231957845389843, + 0.0019184876000508666, + -0.010282954201102257, + 0.014805227518081665, + 0.02044067531824112, + -0.015055691823363304, + 0.0062129078432917595, + 0.002767283469438553, + 0.0003402575966902077, + 0.027495423331856728, + -0.011716166511178017, + 0.023557566106319427, + -0.013051976449787617, + -0.015403559431433678, + 0.027439763769507408, + 0.02778763137757778, + -0.03473106026649475, + 0.021999120712280273, + 0.014304298907518387, + 0.012237967923283577, + -0.014666080474853516, + 0.011688337661325932, + -0.0001364291674690321, + 0.014666080474853516, + 0.012815427035093307, + -0.041410110890865326, + 0.024392446503043175, + 0.008515789173543453, + -0.02963828481733799, + 0.009288053959608078, + 0.005284102633595467, + -0.002407240914180875, + 0.007319125812500715, + 0.016182782128453255, + -0.06150291860103607, + -0.00940632913261652, + -0.02533864602446556, + 0.012112735770642757, + -0.014513019472360611, + 0.009893342852592468, + 0.026284845545887947, + 0.015389644540846348, + 0.026980578899383545, + -0.021526021882891655, + -0.015347900800406933, + 0.026006551459431648, + -0.001207968802191317, + 0.018214326351881027, + -0.000767481978982687, + -0.006626870017498732, + 0.008035732433199883, + -0.025909148156642914, + 0.008508831262588501, + -0.031029753386974335, + 0.013079806230962276, + -0.00317428819835186, + -0.06818196922540665, + -0.038905467838048935, + -0.0011018692748621106, + 0.01861785165965557, + -0.015041776932775974, + 0.01991191692650318, + 0.014304298907518387, + -0.014213853515684605, + -0.002370714908465743, + 0.02812158316373825, + 0.0018210847629234195, + 0.036261674016714096, + -0.007820053957402706, + -0.007757438346743584, + -0.02646573632955551, + 0.013177209533751011, + 0.012460602447390556, + -0.026006551459431648, + -0.0061607277020812035, + 0.02131730131804943, + -0.01276672538369894, + -0.0010096845217049122, + 0.006233780179172754, + -0.011187409050762653, + 0.01476348377764225, + -0.0012114475248381495, + 0.02407240867614746, + -0.0016323667950928211, + 0.03525981679558754, + 0.00512408372014761, + 0.01743510365486145, + 0.03189246356487274, + 0.0070443106815218925, + -0.04068654775619507, + 0.026298759505152702, + -0.044053900986909866, + 0.052374884486198425, + -0.009413286112248898, + 0.030834946781396866, + -0.009559390135109425, + -0.0295269675552845, + -0.011910972185432911, + -0.012731939554214478, + -0.006508595310151577, + 0.011493531987071037, + 0.00025807396741583943, + 0.01906312257051468, + -0.024935120716691017, + 0.014443445950746536, + 0.01867351122200489, + 0.0025202978868037462, + 0.041521426290273666, + -0.007333040237426758, + 0.00816792156547308, + -0.01575142703950405, + 0.004609240218997002, + 0.008689722046256065, + 0.03537113592028618, + -0.01389381568878889, + -0.006703400518745184, + -0.047059472650289536, + 0.011688337661325932, + 0.027648484334349632, + -0.008961059153079987, + -0.052681006491184235, + -0.010860413312911987, + 0.046809010207653046, + 0.0012018810957670212, + -0.00409787567332387, + -0.033367421478033066, + -0.02949913777410984, + 0.024308959022164345, + 0.012467560358345509, + -0.024169811978936195, + 0.01058907713741064, + 0.02429504506289959, + -0.013024147599935532, + 0.01906312257051468, + 0.011465702205896378, + 0.012648451142013073, + 0.01134742796421051, + -0.012885000556707382, + -0.00020415455219335854, + 0.022513965144753456, + 0.0070443106815218925, + 0.023724542930722237, + 0.030139213427901268, + 0.020593738183379173, + -0.013678138144314289, + -0.02162342518568039, + 0.003454321064054966, + -0.02544996328651905, + 0.007388698868453503, + -0.0067277513444423676, + -0.027398020029067993, + -0.006501637864857912, + -0.012084905989468098, + 0.008766253478825092, + 0.02109466679394245, + -0.020760713145136833, + 0.0008248800877481699, + 0.02016238309442997, + -0.028218986466526985, + -0.0020506770815700293, + 0.0034891078248620033, + 0.02435070276260376, + -0.011869228444993496, + 0.014471274800598621, + 0.004125704988837242, + 0.025129925459623337, + -0.01749076135456562, + 0.007395656313747168, + 0.022388732060790062, + -0.04235630854964256, + -0.020802458748221397, + -0.019327500835061073, + -0.014429531060159206, + -0.023487992584705353, + -0.00748610170558095, + 0.011291769333183765, + -0.020955519750714302, + 0.015041776932775974, + 0.006912121083587408, + -0.017031578347086906, + 0.002742932876572013, + -0.006070282310247421, + -0.017017662525177002, + -0.004087439272552729, + 0.006605997681617737, + -0.0009662011289037764, + -0.009990745224058628, + 0.005635448265820742, + -0.0011636157287284732, + 0.013024147599935532, + -0.025241242721676826, + 0.0404917411506176, + 0.003610861487686634, + -0.03509284183382988, + -0.04502793028950691, + 0.023668883368372917, + 0.01644716039299965, + -0.005788510199636221, + 0.0018315206980332732, + -0.0035308520309627056, + 0.06584430485963821, + 0.0042022354900836945, + -0.012210138142108917, + 0.022736599668860435, + -0.011159579269587994, + -0.006487722974270582, + -0.03818190097808838, + 0.0027951127849519253, + 0.03834887966513634, + -0.02522732876241207, + 0.001509743626229465, + -0.02421155571937561, + 0.021192068234086037, + 0.007061704061925411, + 0.03559377044439316, + 0.014318213798105717, + -0.009371542371809483, + -0.006045931950211525, + 0.024002835154533386, + 0.022569622844457626, + 0.05607619136571884, + -0.04552885890007019, + 0.057551149278879166, + 0.02958262525498867, + -0.011945758946239948, + -0.002972525078803301, + 0.011368299834430218, + 0.0075139314867556095, + -0.004727514926344156, + 0.0292486734688282, + -0.02387760393321514, + 0.00995595846325159, + 0.005725894123315811, + -0.029193013906478882, + -0.0064285858534276485, + 0.012912830337882042, + -0.012404943816363811, + 0.028525110334157944, + 0.04814481735229492, + -0.0187013391405344, + -0.007673950400203466, + -0.015445303171873093, + 0.023126211017370224, + 0.019564051181077957, + 0.00013816849968861789, + -0.03272734582424164, + 0.04124313220381737, + 0.010756053030490875, + -0.02156776562333107, + 0.0014332127757370472, + -0.013629436492919922, + -0.0299444068223238, + 0.0028298995457589626, + -0.03192029148340225, + -0.005882434081286192, + -0.021108580753207207, + 0.04536188021302223, + 0.038849808275699615, + -0.008842783980071545, + -0.008654935285449028, + 0.016266269609332085, + 0.008439257740974426, + -0.024503765627741814, + 0.015876658260822296, + 0.00301948725245893, + -0.018687425181269646, + 0.02030152827501297, + -0.027064066380262375, + -0.0008761904900893569, + 0.009809854440391064, + 0.01060299202799797, + -0.050120703876018524, + 0.024754229933023453, + 0.044777464121580124, + -0.023501906543970108, + -0.01641933061182499, + 0.02974960207939148, + -0.005892870016396046, + 0.021692998707294464, + 0.008334897458553314, + -0.022235671058297157, + -0.006369448266923428, + 0.00731216836720705, + 0.015320071019232273, + -0.004960586316883564, + -0.01591840200126171, + 0.013211995363235474, + -0.0430242121219635, + 0.02986091934144497, + -0.026423990726470947, + 0.0008296632440760732, + 0.005231922492384911, + 0.044387854635715485, + 0.013935559429228306, + -0.0004378778103273362, + -0.021136410534381866, + -0.02167908288538456, + -0.005635448265820742, + 0.008947144262492657, + 0.007701779715716839, + -0.0034143165685236454, + -0.012272754684090614, + -0.01737944409251213, + 0.012293626554310322, + 0.016989832744002342, + 0.047059472650289536, + -0.015292241238057613, + -0.005812860559672117, + -0.03478671982884407, + 0.010484716854989529, + 0.0018454354722052813, + -0.021526021882891655, + -0.016405416652560234, + 0.0035360699985176325, + -0.009448072873055935, + -0.022764429450035095, + -0.016878515481948853, + -0.005235400982201099, + 0.03281083330512047, + 0.009482859633862972, + 0.0021967813372612, + -0.021776486188173294, + -0.01476348377764225, + -0.01900746300816536, + -0.0379592664539814, + 0.01586274430155754, + -0.0012070991797372699, + 0.01486088614910841, + 0.008418385870754719, + 0.003878719173371792, + 0.005753723438829184, + 0.0015175705775618553, + 0.013782498426735401, + -0.01339984405785799, + -0.0033864870201796293, + -0.02275051362812519, + -0.010971731506288052, + 0.030779289081692696, + -0.004536188207566738, + -0.0009079333394765854, + 0.019953662529587746, + 0.007367826998233795, + 0.01864568144083023, + -0.03804275393486023, + -0.033896178007125854, + -0.034035325050354004, + -0.0080148596316576, + 0.014290384016931057, + -0.022082608193159103, + 0.009482859633862972, + -0.0021933026146143675, + 0.015542705543339252, + 0.010387314483523369, + 0.00032634290982969105, + -0.05833037197589874, + 0.008571447804570198, + 0.008230538107454777, + -0.010609949007630348, + 0.00750001659616828, + -0.011229152791202068, + 0.013365057297050953, + 0.00953156128525734, + -0.004184842109680176, + -0.03503718227148056, + -0.00698865158483386, + -0.04118747636675835, + -0.028998209163546562, + 0.006355533376336098, + -0.009288053959608078, + -0.020565908402204514, + -0.0008592319791205227, + -0.02511601150035858, + -0.023821944370865822, + 0.018228240311145782, + -0.01790820248425007, + -0.03567725792527199, + 0.00012414511002134532, + 0.028719915077090263, + -0.006512073799967766, + 0.06000013276934624, + 0.0255891103297472, + 0.004758823197335005, + -0.012516261078417301, + -0.025630854070186615, + 0.02204086445271969, + 0.02575608715415001, + -0.002885558409616351, + -0.018548278138041496, + -0.010902157984673977, + -0.00175412034150213, + -0.020371101796627045, + -0.009976831264793873, + 0.027036238461732864, + 0.009851599112153053, + -0.0093506695702672, + -0.010783882811665535, + -0.0031621127855032682, + 0.018158666789531708, + 0.005218007601797581, + 0.008981931023299694, + 0.011813569813966751, + 0.02581174485385418, + 0.02789894863963127, + -0.021247727796435356, + 0.006595561746507883, + -0.017003748565912247, + -0.008807997219264507, + -0.013462460599839687, + -0.02336275950074196, + -0.015904488041996956, + -0.011834441684186459, + 0.009197608567774296, + 0.024392446503043175, + -0.02032935805618763, + 0.02707798220217228, + -0.002057634526863694, + -0.019717112183570862, + 0.024921204894781113, + 0.01903529278934002, + 0.007778310216963291, + 0.019647538661956787, + 0.021776486188173294, + 0.009455029852688313, + -0.0028751222416758537, + 0.026980578899383545, + 0.016934175044298172, + -0.013615521602332592, + 0.02671620063483715, + 0.014290384016931057, + -0.015083521604537964, + 6.682175353489583e-6, + 0.004866661969572306, + -0.005301496013998985, + -0.0038334964774549007, + -0.04619676247239113, + 0.013149379752576351, + -0.024058494716882706, + 0.01586274430155754, + 0.005228444002568722, + 0.007534803356975317, + -0.008752338588237762, + -0.014081663452088833, + 0.0017810800345614552, + -0.014540848322212696, + -0.012843256816267967, + 0.0011270897230133414, + -0.017671654000878334, + 0.002426373539492488, + -0.014902629889547825, + -0.007646120619028807, + 0.023571480065584183, + 0.019605794921517372, + -0.01280847005546093, + -0.000536150299012661, + -0.03556594252586365, + -0.010241210460662842, + -0.017963862046599388, + -0.010352527722716331, + 0.015737511217594147, + -0.01999540627002716, + 0.02955479547381401, + -0.02980525977909565, + 0.003969164565205574, + -0.02440636232495308, + 8.218362199841067e-5, + -0.03971251845359802, + -0.03169765695929527, + -0.013733796775341034, + 0.012349285185337067, + -0.0037221789825707674, + -0.01911878027021885, + -0.0029446957632899284, + -0.02812158316373825, + 0.04079786315560341, + -0.006254652049392462, + 0.014499104581773281, + -0.0027916342951357365, + -0.01474956888705492, + 0.02275051362812519, + 0.015556620433926582, + -0.00042896371451206505, + -0.009434157982468605, + 0.01289195753633976, + -0.020760713145136833, + 0.03258819878101349, + 0.0011662247125059366, + 0.012711066752672195, + -0.023835860192775726, + -0.013365057297050953, + 0.03306129574775696, + -0.013671180233359337, + -0.029081696644425392, + 0.0023220134899020195, + 0.01168137975037098, + -0.011256982572376728, + -0.0015271370066329837, + -0.004090918228030205, + 0.007875713519752026, + 0.01934141479432583, + 0.015570535324513912, + -0.031113240867853165, + 0.010296869091689587, + 0.014046876691281796, + -0.005823296960443258, + -0.004303117282688618, + 0.0027081461157649755, + 5.810469156131148e-5, + -0.05460123345255852, + -0.018283899873495102, + 0.004219628870487213, + 0.01867351122200489, + -0.005892870016396046, + -0.017059406265616417, + 0.002165473299100995, + 0.0014314735308289528, + -0.016767198219895363, + 0.005144955590367317, + 0.01484697125852108, + -0.01461042184382677, + 0.026020465418696404, + 0.033506568521261215, + 0.002184605924412608, + 0.002087203087285161, + -0.0038334964774549007, + 0.0051275622099637985, + 0.01397730316966772, + -0.019466647878289223, + -0.002570738550275564, + 0.0017375965835526586, + 0.039239417761564255, + -0.0011897057993337512, + 0.02944347821176052, + 0.038821976631879807, + -0.008007902652025223, + 0.022736599668860435, + -0.023181868717074394, + -0.01974494196474552, + 0.02561694011092186, + 0.0022246106527745724, + -0.01655847765505314, + 0.01095085870474577, + 0.01749076135456562, + -0.009441115893423557, + 0.027175385504961014, + 0.0071382345631718636, + 0.026924921199679375, + -0.015542705543339252, + 0.014568678103387356, + 0.005089296959340572, + -0.0034073591232299805, + 0.004637069534510374, + 0.008098348043859005, + -0.013476374559104443, + 0.014332127757370472, + -0.01715680956840515, + -0.02069113962352276, + 0.030834946781396866, + -0.013051976449787617, + 0.004824917763471603, + 0.02696666494011879, + -0.021192068234086037, + 0.01726812683045864, + -0.014060791581869125, + -0.014679995365440845, + 0.0010140328668057919, + 0.007646120619028807, + -0.028052009642124176, + 0.049758922308683395, + 0.014693910256028175, + 0.004748387262225151, + 0.015556620433926582, + -0.015306156128644943, + -0.01917443983256817, + 0.015598365105688572, + 0.006105069071054459, + 0.009949001483619213, + 0.016154952347278595, + -0.021039007231593132, + -0.011945758946239948, + 0.03247687965631485, + 0.022346988320350647, + -0.002614222001284361, + 0.002254179446026683, + 0.019550135359168053, + -0.010415143333375454, + -0.019661452621221542, + -0.01193880196660757, + 0.009705494157969952, + 0.009225437417626381, + 0.014186023734509945, + -0.0026681413874030113, + -0.016461076214909554, + -0.028692085295915604, + -0.010456888005137444, + 0.0013732056831941009, + -0.039601199328899384, + -0.0013897294411435723, + 0.026674456894397736, + 0.012787598185241222, + 0.012370157055556774, + 0.023627139627933502, + -0.009190650656819344, + 0.0241837278008461, + -0.008272281847894192, + -0.018770912662148476, + -0.010269039310514927, + -0.0015497483545914292, + -0.021971290931105614, + -0.013803370296955109, + -0.003614339977502823, + -0.015361814759671688, + 0.001496698590926826, + 0.007506974041461945, + 0.005548481829464436, + -0.007388698868453503, + -0.004494444001466036, + -0.01633584313094616, + 0.01097868848592043, + 0.006905163638293743, + -0.01982842944562435, + -0.004003951326012611, + 0.002287226729094982, + -0.003245600964874029, + -0.020635481923818588, + -0.03258819878101349, + -0.04859009012579918, + -0.01572359725832939, + 0.008543618023395538, + 0.028330303728580475, + -0.0070512681268155575, + -0.008209665305912495, + -0.009204565547406673, + 0.00596244353801012, + 0.00024589861277490854, + 0.0024889896158128977, + -0.020593738183379173, + -0.005318889394402504, + 0.001272324239835143, + -0.006421628408133984, + -0.015528791584074497, + 0.0231957845389843, + 0.00397264352068305, + 0.01906312257051468, + 0.03192029148340225, + -0.008174878545105457, + -0.007221722975373268, + -0.027676314115524292, + 0.0003893938264809549, + 0.011820526793599129, + 0.019800599664449692, + 0.023724542930722237, + -0.003436927916482091, + -0.016683710739016533, + -0.011437873356044292, + -0.000812704733107239, + 0.016544563695788383, + -0.010582120157778263, + -0.018548278138041496, + 0.003743050852790475, + -0.005030159372836351, + -0.011096963658928871, + -0.02322361432015896, + -0.02462899684906006, + -0.0049292780458927155, + -0.014457359910011292, + 0.011069133877754211, + -0.016767198219895363, + 0.004811003338545561, + -0.0012497128918766975, + 0.012411901727318764, + -0.004529230762273073, + 0.01614103838801384, + 0.008432300761342049, + 0.0006374666118063033, + 0.009455029852688313, + -0.00038330614916048944, + -0.015027862973511219, + 0.012293626554310322, + 0.0018454354722052813, + 0.008780167438089848, + -0.0028055489528924227, + -0.0013984261313453317, + 0.0067347087897360325, + -0.007106926757842302, + -0.0036073827650398016, + 0.015473132953047752, + 0.0079452870413661, + -0.019438818097114563, + 0.0018941368907690048, + -0.015361814759671688, + -0.010018575005233288, + 0.009740280918776989, + -0.01831172965466976, + 0.0021967813372612, + 0.011702252551913261, + -0.0008461869438178837, + 0.006574689876288176, + 0.023321015760302544, + -0.0002572043158579618, + 0.015500961802899837, + 0.000918369391001761, + 0.030779289081692696, + -0.0272727869451046, + 0.02297315001487732, + 0.005931135732680559, + -0.009385456331074238, + -0.0031447194050997496, + -0.0009383717551827431, + 0.02705015242099762, + 0.00026024813996627927, + 0.012954574078321457, + -0.009726366959512234, + 0.010185550898313522, + -0.019188353791832924, + 0.015167009085416794, + 0.028970379382371902, + -0.009782025590538979, + 0.024308959022164345, + -0.011910972185432911, + -0.020899860188364983, + 0.008112262934446335, + 0.01917443983256817, + -0.010053361766040325, + 0.012418858706951141, + -0.030222700908780098, + 0.021080750972032547, + 0.007562632672488689, + 0.0019306628964841366, + -0.015612279064953327, + -0.026076124981045723, + 0.007875713519752026, + 0.015681853517889977, + 0.010025531984865665, + -0.010596034117043018, + -0.03425795957446098, + 0.0051797423511743546, + 0.005211050622165203, + -0.008216623216867447, + 0.003275169525295496, + -0.019522307440638542, + 0.015027862973511219, + 0.030584482476115227, + -0.015667937695980072, + 0.025825660675764084, + -0.012961531057953835, + 0.03448059409856796, + 0.0226391963660717, + -0.009670707397162914, + -0.03737485036253929, + 0.016767198219895363, + 0.01303110457956791, + 0.007924414239823818, + 0.002633354626595974, + -0.023654969409108162, + -0.02117815427482128, + -0.024225471541285515, + -0.006292917300015688, + 0.01330244168639183, + -0.028358133509755135, + -0.009580262005329132, + 0.04032476618885994, + 0.01143091544508934, + 0.017198553308844566, + 7.408484088955447e-5, + -0.009719409048557281, + 0.00010082712833536789, + -0.02327927201986313, + 0.015487046912312508, + 0.001413210411556065, + 0.011229152791202068, + 0.001972406869754195, + -1.4974595615058206e-5, + 0.00403525959700346, + 0.003656084183603525, + -0.0038334964774549007, + -0.008606234565377235, + -0.015737511217594147, + 0.003708264324814081, + 0.014540848322212696, + -0.02396109141409397, + -0.006543381605297327, + 0.04511141777038574, + -0.00031982039217837155, + -0.0023724541533738375, + 0.011500488966703415, + -0.022458305582404137, + -0.003993515390902758, + -0.016850685700774193, + -0.014568678103387356, + -0.009288053959608078, + 0.010609949007630348, + -0.028942549601197243, + -0.024935120716691017, + 0.008919314481317997, + -0.004584889393299818, + 0.03423013165593147, + -0.00028568593552336097, + -0.00046483753249049187, + 0.010582120157778263, + 0.0021463404409587383, + -0.018186496570706367, + 0.011500488966703415, + -0.004744908306747675, + -0.0025742172729223967, + -0.0020019756630063057, + 0.006063324864953756, + -0.011083048768341541, + -0.007075618486851454, + -0.017963862046599388, + 0.0009035849943757057, + 0.003583031939342618, + 0.006456415168941021, + -0.00024698569905012846, + -0.022054780274629593, + 0.011096963658928871, + -0.009225437417626381, + 0.011083048768341541, + -0.004063088912516832, + 0.008300110697746277, + 0.0028212028555572033, + -0.00750001659616828, + -0.01710115186870098, + 0.024879461154341698, + -0.014012089930474758, + 0.003923941869288683, + -0.007736566476523876, + -0.00397264352068305, + -0.017365530133247375, + -0.010637778788805008, + 0.01861785165965557, + -0.005026680883020163, + -0.02204086445271969, + 0.036484312266111374, + 0.002391587011516094, + 0.002680316800251603, + -0.009573305025696754, + -0.018200410529971123, + -0.024935120716691017, + 0.019870173186063766, + -0.0005157131236046553, + -0.016516733914613724, + 0.02677185833454132, + -0.010860413312911987, + -0.004584889393299818, + -0.019591880962252617, + 0.029193013906478882, + 0.001753250602632761, + 0.004390083719044924, + 0.015167009085416794, + 0.002339406870305538, + 0.0009279357036575675, + -0.0028664255514740944, + 0.011375256814062595, + 0.006327704060822725, + 0.024002835154533386, + 0.019577965140342712, + 0.004515315871685743, + 0.0009114120621234179, + 0.006042452994734049, + 0.010449930094182491, + -1.1142620678583626e-5, + 0.003589989384636283, + -0.004250937141478062, + -0.021052923053503036, + 0.036289505660533905, + -0.007221722975373268, + -0.014415616169571877, + 0.0039552501402795315, + -0.0014245160855352879, + -0.004045695532113314, + 0.024642910808324814, + 0.027175385504961014, + -0.013058934360742569, + 0.015361814759671688, + 0.0014975682133808732, + -0.006539903115481138, + -0.030918436124920845, + 0.0045640175230801105, + 0.0009070637170225382, + 0.0020280657336115837, + -0.012982403859496117, + -0.004073524847626686, + -0.00923935230821371, + 0.01157006248831749, + -0.002922084415331483, + -0.0020211082883179188, + 0.019452733919024467, + -0.016321929171681404, + 0.02002323605120182, + -0.04394258186221123, + -0.001855871407315135, + -0.01622452586889267, + 0.02035718783736229, + -0.01864568144083023, + 0.015083521604537964, + 0.008418385870754719, + -0.0019758855924010277, + -0.0052910600788891315, + 0.0008022686815820634, + 0.03175331652164459, + 0.016822857782244682, + 0.005767637863755226, + 0.016071464866399765, + 0.004960586316883564, + 0.007861798629164696, + -0.009482859633862972, + 0.022263500839471817, + -0.010046404786407948, + 0.003057752503082156, + 0.010310783050954342, + 0.01622452586889267, + -0.009566348046064377, + -0.00020828547712881118, + 0.0020385016687214375, + 0.030473165214061737, + -0.004685771185904741, + -0.01859002187848091, + -0.0025202978868037462, + -0.026006551459431648, + -0.003899591276422143, + 0.0024176768492907286, + -0.010039446875452995, + -0.003403880400583148, + 0.02005106396973133, + 0.004369211848825216, + 0.0037813163362443447, + -0.011820526793599129, + -0.020705055445432663, + 0.015417473390698433, + 0.01144483033567667, + -0.015375729650259018, + 0.007465229835361242, + 0.011820526793599129, + -0.0063242255710065365, + -0.011743996292352676, + -0.011152622289955616, + 0.002015890320762992, + 0.003012529807165265, + 0.01217535138130188, + 0.004800567403435707, + -0.01605754904448986, + 0.02831638976931572, + -0.02679968811571598, + 0.018603937700390816, + 0.010081191547214985, + -0.014081663452088833, + -0.03136370703577995, + -0.03528764843940735, + -0.026577053591609, + 0.002614222001284361, + -0.005037116818130016, + -0.005812860559672117, + -0.039100270718336105, + 0.02379411645233631, + -0.005409334786236286, + 0.021776486188173294, + -0.0033412643242627382, + 0.028775574639439583, + -0.00663034850731492, + 0.020009320229291916, + -0.010797797702252865, + 0.00457793241366744, + 0.012251882813870907, + 0.005767637863755226, + 0.031029753386974335, + -0.015709681436419487, + 0.024865547195076942, + 0.014248640276491642, + -0.008446215651929379, + -0.01760208047926426, + -0.0012836299138143659, + 0.010088148526847363, + 0.01473565399646759, + 0.02401675097644329, + -0.01793603226542473, + 0.0023063593544065952, + 0.005224965047091246, + -0.013692052103579044, + -0.011236109770834446, + -0.011959673836827278, + 0.00995595846325159, + 0.0035691172815859318, + -0.022625282406806946, + 0.006108548026531935, + -0.008891485631465912, + 0.020788542926311493, + 0.0007461751229129732, + 0.023696713149547577, + -0.0011123053263872862, + 0.01732378639280796, + 0.007186936214566231, + 0.0146243367344141, + 0.017198553308844566, + 0.027495423331856728, + -0.006797324866056442, + 0.017949946224689484, + -0.015222667716443539, + 0.002421155571937561, + 0.02120598405599594, + 0.003795230994001031, + -0.0008648848161101341, + 0.020760713145136833, + -0.03194812312722206, + -0.007270424161106348, + -0.00144451844971627, + 0.014359957538545132, + 0.02564476989209652, + 0.013093721121549606, + -0.005638927221298218, + -0.023557566106319427, + -0.020663311704993248, + 0.008404470980167389, + 0.02252787910401821, + 0.002974264556542039, + 0.00815400667488575, + 0.03222641721367836, + -0.003167330753058195, + -0.007910500280559063, + -0.004852747078984976, + 0.01577925495803356, + 0.008627106435596943, + -0.014206895604729652, + 0.013017190620303154, + 0.004257894586771727, + 0.014262555167078972, + -0.016641966998577118, + -0.003017747774720192, + 0.010936944745481014, + 0.0063172681257128716, + -0.013079806230962276, + -0.027091896161437035, + -0.0006157249445095658, + 0.02699449472129345, + 0.010164679028093815, + -0.019271843135356903, + 0.00923935230821371, + -0.0035343305207788944, + -0.020037150010466576, + 0.014457359910011292, + -0.011743996292352676, + 0.015222667716443539, + 0.0014088620664551854, + 0.006599040701985359, + -0.0058024246245622635, + -0.010408186353743076, + 0.016572393476963043, + -0.011041304096579552, + 0.0024368097074329853, + -0.0136363934725523, + -0.016349757090210915, + -0.022388732060790062, + -0.01575142703950405, + 0.05577006936073303, + 0.014186023734509945, + 0.00900975987315178, + 0.009121078066527843, + -0.0032403827644884586, + -0.027370190247893333, + -0.000452662177849561, + 0.005023202393203974, + 0.01749076135456562, + 0.007030395790934563, + -0.022305244579911232, + -0.014248640276491642, + 0.01842304691672325, + -0.0015775776701048017, + -0.027370190247893333, + 0.004532709252089262, + 0.013747711665928364, + -0.00571545772254467, + 0.021553851664066315, + 0.012648451142013073, + 0.0003383008297532797, + 0.003763922955840826, + 0.014707825146615505, + -0.002760326024144888, + -0.016795028001070023, + 0.012057077139616013, + -0.019132696092128754, + -0.010429058223962784, + 0.006230301223695278, + 0.02935999073088169, + 0.0023028808645904064, + -0.022291328758001328, + -0.013205038383603096, + -0.017699481919407845, + 0.0003943944175262004, + 0.0004000472545158118, + 0.011263939552009106, + -0.002869904274120927, + -0.0136363934725523, + 0.0021463404409587383, + -0.007465229835361242, + -0.0016932435100898147, + 0.01424168236553669, + 0.02474031411111355, + -0.02702232263982296, + 0.0023376673925668, + -0.009260224178433418, + 0.006710357964038849, + -0.021943463012576103, + -0.003482150612398982, + 0.015612279064953327, + -0.015876658260822296, + 0.027773715555667877, + 0.018116923049092293, + 0.012140564620494843, + -0.0053919414058327675, + 0.013128507882356644, + 0.01776905544102192, + 0.011096963658928871, + -0.0024037621915340424, + -0.03200378268957138, + 0.004052652511745691, + 0.0029394777957350016, + -0.00023654969118069857, + -0.024615082889795303, + 0.014262555167078972, + -0.00019143566896673292, + -0.017755141481757164, + 0.008474044501781464, + -0.010832584463059902, + -0.024962948635220528, + 0.000748349295463413, + -0.0008005293784663081, + -0.026841431856155396, + -0.015821000561118126, + 0.01771339774131775, + -0.002871643751859665, + 0.03556594252586365, + 0.018297813832759857, + -0.0038648045156151056, + 0.010776925832033157, + 0.007120841182768345, + -0.027578910812735558, + -0.01268323790282011, + 0.014332127757370472, + -0.013191123493015766, + 0.02153993584215641, + -0.02913735620677471, + 0.015167009085416794, + -0.0172959566116333, + -0.016906345263123512, + -0.0068390690721571445, + 0.017198553308844566, + 0.014290384016931057, + -0.007980072870850563, + -0.0074095712043344975, + 0.0025985678657889366, + 0.007200850639492273, + 0.0058024246245622635, + -0.004811003338545561, + 0.0075556752271950245, + 0.007625248748809099, + -0.02055199258029461, + -0.0009618527838028967, + -0.01710115186870098, + -0.004477050621062517, + 0.022207841277122498, + 0.005329325329512358, + -0.0037743588909506798, + 0.006828633137047291, + -2.496218803571537e-5, + -0.015487046912312508, + 0.011723124422132969, + -0.012516261078417301, + -0.010449930094182491, + 0.0017776013119146228, + 0.013824242167174816, + -0.00517278490588069, + -0.031001923605799675, + -0.01097868848592043, + -0.004821439273655415, + 0.02533864602446556, + 0.0019689283799380064, + -0.02958262525498867, + 0.0035499846562743187, + -0.01580708473920822, + -0.019327500835061073, + -0.013803370296955109, + -0.0005274536088109016, + -0.002483771648257971, + 0.020941603928804398, + 0.006971258670091629, + 0.03283866122364998, + 0.022931404411792755, + 0.014958289451897144, + 0.008147049695253372, + -0.016655880957841873, + 0.009677665308117867, + -0.008230538107454777, + -0.02241656184196472, + 0.013699010014533997, + 0.007186936214566231, + -0.002068070461973548, + 0.011437873356044292, + 0.01488871593028307, + 0.007472187280654907, + 0.005165827926248312, + -0.021414704620838165, + 0.009587219916284084, + 0.006372926756739616, + 0.02732844650745392, + -0.021609509363770485, + 0.001335810055024922, + -0.0038821978960186243, + -0.005012765992432833, + 0.00998378824442625, + -0.03275517374277115, + 0.01218926627188921, + -0.014666080474853516, + 0.0007100838702172041, + 0.0067347087897360325, + -0.003409098368138075, + -0.007896585389971733, + 0.0019550134893506765, + -0.005165827926248312, + 0.017810799181461334, + 0.0018523928010836244, + 0.006605997681617737, + -0.0015819260152056813, + 0.005235400982201099, + 0.026451820507645607, + 0.021359045058488846, + 0.017476847395300865, + -0.030055725947022438, + 0.01403296273201704, + -0.01974494196474552, + 0.016808941960334778, + 0.001097520929761231, + -0.009684622287750244, + 0.0031708094757050276, + -0.016711540520191193, + -0.001541921286843717, + 0.0149722034111619, + -0.0036317333579063416, + -0.02120598405599594, + -0.007277381606400013, + -0.002767283469438553, + -0.008981931023299694, + 0.012815427035093307, + -0.01749076135456562, + -0.0038508898578584194, + 0.022138267755508423, + 0.0026159612461924553, + -0.010060318745672703, + 0.010749096050858498, + 0.0039552501402795315, + 0.02322361432015896, + 0.003327349666506052, + 0.029053866863250732, + 7.212808850454167e-5, + -0.0018976154970005155, + 0.008007902652025223, + 0.038905467838048935, + -0.008300110697746277, + -0.01768556796014309, + -0.0032647335901856422, + -0.019424904137849808, + -0.010046404786407948, + -0.00815400667488575, + 0.005558917764574289, + -0.026479650288820267, + -0.022054780274629593, + 0.022124353796243668, + 0.001592362066730857, + 0.00565284164622426, + -0.015570535324513912, + 0.013726838864386082, + 0.026354419067502022, + 0.0074026137590408325, + -0.0030873212963342667, + 0.004790131002664566, + 0.0009470684453845024, + 0.019536221399903297, + -0.008863655850291252, + -0.0019671889021992683, + -0.018005605787038803, + -0.0035621600691229105, + 0.0076669929549098015, + 0.015125265344977379, + 0.013705966994166374, + 0.005711979232728481, + -0.019619708880782127, + -0.012801512144505978, + 0.010213380679488182, + 0.010129892267286777, + 0.014387787319719791, + 0.012801512144505978, + -0.013107636012136936, + 0.018353473395109177, + -0.002108075190335512, + -0.016043635085225105, + -0.003409098368138075, + -0.010171636939048767, + 0.0009001063299365342, + 0.0018419567495584488, + -0.006922557018697262, + -0.0008548836340196431, + 0.009218480437994003, + -0.008494916372001171, + -2.4690416466910392e-5, + -0.01977277174592018, + 0.005899827461689711, + 0.011528318747878075, + -0.009023674763739109, + 0.009566348046064377, + -0.0010679522529244423, + -0.018436960875988007, + 0.015904488041996956, + 0.012182309292256832, + -0.01221709605306387, + 0.014429531060159206, + 0.020677225664258003, + -0.025658683851361275, + 0.0005557178519666195, + -0.0160297192633152, + 0.002029804978519678, + -0.015292241238057613, + 0.0034856293350458145, + -0.014401701278984547, + -0.00021926504268776625, + 0.0041604917496442795, + -0.006585125811398029, + 0.00018752214964479208, + 0.023529736325144768, + 0.006814718246459961, + 0.008585361763834953, + -0.002756847534328699, + -0.01754642091691494, + 0.005416292231529951, + 0.026159612461924553, + -0.015459218062460423, + 0.0008261845796369016, + 0.011389171704649925, + -0.00013708141341339797, + 0.0007922674994915724, + -0.03425795957446098, + 0.020649395883083344, + 0.023126211017370224, + -0.004598804283887148, + 0.01746293343603611, + -0.007346955128014088, + -0.006912121083587408, + 0.0019410989480093122, + -0.0004452700086403638, + 0.01255800575017929, + 0.005788510199636221, + -0.0011027390137314796, + 0.0020767671521753073, + 0.02983308956027031, + -0.03197595104575157, + -0.021011177450418472, + -0.0002541604626458138, + 0.002478553680703044, + -0.008418385870754719, + -0.019104866310954094, + 0.019522307440638542, + 0.023724542930722237, + 0.009865513071417809, + -0.0058615622110664845, + 0.016878515481948853, + -0.00028372916858643293, + 0.0023689756635576487, + -0.015556620433926582, + -0.006772974040359259, + -0.012843256816267967, + -0.008425342850387096, + -0.011159579269587994, + 0.02454550936818123, + -0.0096289636567235, + 0.0047762165777385235, + -0.012530175969004631, + 0.005931135732680559, + 0.022917490452528, + -0.0040422165766358376, + 0.009301968850195408, + 0.0006465981132350862, + 0.02972177229821682, + 0.003456060541793704, + -0.003327349666506052, + -0.014276469126343727, + 0.022903576493263245, + 0.013079806230962276, + -0.021303387358784676, + -0.0063764057122170925, + 0.013455502688884735, + 0.014227768406271935, + -0.008425342850387096, + -0.0031621127855032682, + -0.0007331300876103342, + -0.020231954753398895, + -0.001080127665773034, + -0.018798742443323135, + 0.003603904042392969, + 0.012759768404066563, + -0.008147049695253372, + 0.0011853574542328715, + 0.011229152791202068, + -0.017838628962635994, + 0.01608537882566452, + 0.006223343778401613, + -0.01839521713554859, + 0.015765340998768806, + 0.01977277174592018, + 0.027119725942611694, + -0.011236109770834446, + -0.02250004932284355, + -0.011646593920886517, + 0.027718057855963707, + -0.012001417577266693, + -0.005360633600503206, + -0.010936944745481014, + 0.00537106953561306, + 0.0014097318053245544, + -0.00874538067728281, + 0.0034525818191468716, + -0.0163080133497715, + 0.0004574453632812947, + 0.02575608715415001, + -0.025714343413710594, + 0.006432064343243837, + 0.0013436370063573122, + -0.018033435568213463, + -0.005579789634793997, + -0.003906548488885164, + -0.0037917522713541985, + 0.011528318747878075, + -0.006125941406935453, + -0.007166063878685236, + -0.030974093824625015, + -0.0005500650149770081, + 0.020885946229100227, + -0.0002187214995501563, + 0.0048701404593884945, + -0.0071382345631718636, + -0.009976831264793873, + 0.024281129240989685, + 0.028274644166231155, + 0.00995595846325159, + 0.003642169525846839, + 0.0012818905524909496, + -0.0006766016595065594, + -0.0016836771974340081, + 0.006192035973072052, + 0.02713363990187645, + -0.027718057855963707, + 0.022235671058297157, + -0.020287614315748215, + 0.00337779032997787, + -0.015111350454390049, + 0.0038891551084816456, + 0.004737951327115297, + -0.004386605229228735, + 0.022346988320350647, + -0.003795230994001031, + 0.0007822663174010813, + -0.0025603026151657104, + -0.006960822269320488, + -0.006766016595065594, + 0.01988408900797367, + 0.004532709252089262, + -0.005464993417263031, + 0.01023425254970789, + -0.0163080133497715, + -0.002756847534328699, + 0.007009523920714855, + -0.02302880771458149, + 0.005718936678022146, + 0.02955479547381401, + -0.00111056596506387, + -0.015083521604537964, + 0.012578877620398998, + -0.006115505006164312, + -0.005993751809000969, + -0.004115269053727388, + 0.01122219581156969, + -0.027537167072296143, + 0.013295483775436878, + -0.0022037385497242212, + -0.013010232709348202, + 0.01134742796421051, + -0.0007813966949470341, + 0.01622452586889267, + 0.004237022250890732, + -0.010783882811665535, + -0.033951837569475174, + -0.004762301687151194, + 0.006167685147374868, + -0.01710115186870098, + -0.013184166513383389, + -0.0025742172729223967, + -0.01988408900797367, + -0.0033690936397761106, + -0.01355290599167347, + 0.002612482523545623, + -0.0043935626745224, + -0.0055450028739869595, + 0.018116923049092293, + 0.02718929946422577, + 0.0022854874841868877, + -0.0032716908026486635, + -0.016238439828157425, + 0.014227768406271935, + -0.011423958465456963, + 0.018242156133055687, + -0.019522307440638542, + -0.01653064787387848, + -0.009051504544913769, + -0.020204126834869385, + 0.017337700352072716, + -0.044360022991895676, + 0.010164679028093815, + 0.011069133877754211, + 0.0036699988413602114, + -0.014359957538545132, + -0.0056563206017017365, + 0.0029499137308448553, + 0.018882231786847115, + -0.008327940478920937, + -0.012370157055556774, + 0.018186496570706367, + -0.019397074356675148, + 0.02679968811571598, + -0.002788155572488904, + -0.0008722769562155008, + 0.012231010012328625, + 0.02817724272608757, + -0.008084433153271675, + 0.0020906818099319935, + -0.002356800250709057, + -0.010436015203595161, + -0.009809854440391064, + 0.010881285183131695, + 0.0068808128125965595, + 0.011138707399368286, + 0.009468944743275642, + -0.010039446875452995, + -0.0008400992373935878, + 0.007771352771669626, + 0.015681853517889977, + 0.02151210606098175, + 0.02947130799293518, + 0.00875929556787014, + 0.004522273316979408, + -0.019870173186063766, + 0.00925326719880104, + 0.002878600964322686, + 0.02184605970978737, + 0.031252387911081314, + 0.0022767907939851284, + 0.012530175969004631, + 0.019355330616235733, + 0.0034195345360785723, + -0.015333985909819603, + -0.020064979791641235, + 0.012898915447294712, + -0.003269951557740569, + 0.002381150843575597, + 0.019647538661956787, + 0.022166097536683083, + 0.008494916372001171, + 0.003739572362974286, + -0.013594649732112885, + -0.008974973112344742, + 0.01209186390042305, + -0.0007687864708714187, + 0.02977743186056614, + -0.006651220843195915, + 0.0082931537181139, + 0.02536647580564022, + 0.02120598405599594, + -0.004598804283887148, + -0.015932317823171616, + -0.002118511125445366, + -0.0123005835339427, + 0.013420715928077698, + 0.002817724132910371, + 0.001264497172087431, + -0.012397986836731434, + -0.02272268384695053, + -0.014485189691185951, + -0.010456888005137444, + 0.033478736877441406, + 0.013295483775436878, + -0.003579553449526429, + 0.010846499353647232, + 0.01974494196474552, + 0.017142895609140396, + 4.054826786159538e-5, + 0.024114154279232025, + -0.008105305023491383, + 0.033562228083610535, + -0.007166063878685236, + 0.01636367291212082, + 0.00750001659616828, + -0.0008618409628979862, + -0.013079806230962276, + 0.012474517337977886, + 0.024865547195076942, + -0.01875699870288372, + 0.01666979491710663, + -0.02511601150035858, + -0.0025307338219136, + 0.02379411645233631, + 0.018061263486742973, + 0.02181822992861271, + -0.00900975987315178, + 0.010999560356140137, + -0.01293370220810175, + -0.014819142408668995, + 0.010449930094182491, + 0.00034134468296542764, + 0.003551723901182413, + -0.0035725960042327642, + -0.012481474317610264, + -0.009914214722812176, + 0.012001417577266693, + -0.006456415168941021, + -0.01424168236553669, + 0.009190650656819344, + 0.008404470980167389, + 0.009329797700047493, + -0.002415937604382634, + -0.007159106899052858, + 0.025770001113414764, + -0.021776486188173294, + 0.005388462916016579, + -0.036178186535835266, + 0.003558681346476078, + 0.00852274615317583, + -0.009114120155572891, + 0.0039552501402795315, + -0.013671180233359337, + 0.006035495549440384, + 0.007604376878589392, + 0.0020263262558728456, + 0.01707332208752632, + -0.001656717504374683, + 0.0022402647882699966, + 0.020343273878097534, + -0.01895180530846119, + 0.020064979791641235, + 0.0021272078156471252, + -0.019522307440638542, + -0.0033569184597581625, + 0.015667937695980072, + 0.010623863898217678, + 0.0028316390234977007, + 0.0026820560451596975, + -0.016767198219895363, + -0.02677185833454132, + -0.026090038940310478, + -0.00937849935144186, + 0.0039900364354252815, + -0.0022698333486914635, + 0.010735181160271168, + 0.001644542091526091, + 0.0017358572222292423, + 0.002452463610097766, + 0.010707352310419083, + 0.0027916342951357365, + 0.011083048768341541, + -0.02311229519546032, + -0.012829341925680637, + -0.015487046912312508, + 0.024782057851552963, + 0.006713836919516325, + 0.0038334964774549007, + 0.0043065957725048065, + 0.030779289081692696, + 0.015445303171873093, + -0.0039900364354252815, + 0.011625721119344234, + -0.004863183479756117, + 0.0006444239406846464, + -0.0026768380776047707, + -0.006153770722448826, + 0.007639163639396429, + 0.006960822269320488, + 0.0258674044162035, + -0.019758855924010277, + 0.006668614223599434, + 0.006599040701985359, + -0.022180011495947838, + -0.04792218282818794, + -0.0043587759137153625, + -0.003969164565205574, + -0.01488871593028307, + -0.011639636009931564, + -0.011945758946239948, + -0.007987030781805515, + -0.014081663452088833, + -0.005882434081286192, + -0.009343712590634823, + 0.02933216094970703, + 0.0016854165587574244, + -0.02376628667116165, + -0.011236109770834446, + -0.0005718066822737455, + -0.005374548025429249, + 0.006616434082388878, + -0.0029516529757529497, + 0.011340470053255558, + -0.022249585017561913, + 0.009510688483715057, + 0.0009296750649809837, + -0.0019828430376946926, + 0.002581174485385418, + -0.02958262525498867, + 0.034118812531232834, + -0.006578168366104364, + -0.02038501761853695, + -0.01712897978723049, + 0.003763922955840826, + -0.00144451844971627, + 0.015389644540846348, + -0.007263466715812683, + -0.0004039607592858374, + 0.004859704524278641, + -0.018464790657162666, + -0.009030631743371487, + -0.008348812349140644, + 0.015612279064953327, + -0.011590934358537197, + 0.008543618023395538, + 0.008501874282956123, + 0.011980545707046986, + -0.0021237290930002928, + -0.019494477659463882, + 0.03534330800175667, + -0.013483332470059395, + -0.003513458650559187, + 0.0012410162016749382, + 0.011201323010027409, + 0.025171669200062752, + -1.0218598617939278e-5, + 0.01086737122386694, + -0.0005800685612484813, + -0.015584450215101242, + -0.0021098144352436066, + 0.015167009085416794, + -0.018743084743618965, + -0.0046127187088131905, + -0.006313789635896683, + 0.004410956054925919, + 0.006299874745309353, + -0.00013403757475316525, + -0.012850213795900345, + -0.006216386798769236, + -0.0016132340533658862, + -0.02204086445271969, + -0.014652165584266186, + 0.004727514926344156, + -0.00015980149328242987, + 0.0014880019007250667, + -0.028998209163546562, + -0.01892397552728653, + 0.003475193167105317, + 0.0010888243559747934, + 0.01650281995534897, + -0.0057954671792685986, + 0.005785031244158745, + -0.031391534954309464, + 0.0032786482479423285, + 0.00814009178429842, + 0.007493059150874615, + -0.0478108674287796, + -0.030556654557585716, + 9.213045268552378e-5, + -0.015347900800406933, + 0.01847870461642742, + 0.004400520119816065, + 0.002979482524096966, + -0.008237495087087154, + 0.019536221399903297, + -0.006449457723647356, + -0.016920259222388268, + 0.0024455063976347446, + 0.0060598463751375675, + -0.002946435008198023, + 0.0033969231881201267, + 0.038710661232471466, + 0.0002948174369521439, + -0.007827011868357658, + 0.013205038383603096, + -0.016641966998577118, + -0.003795230994001031, + 0.0007135625928640366, + -0.0001609972823644057, + -0.002595089143142104, + 0.018798742443323135, + -0.012718024663627148, + -0.005037116818130016, + 0.011500488966703415, + 0.005350197199732065, + 0.014471274800598621, + 0.0014662601752206683, + -0.015111350454390049, + 0.023613223806023598, + 0.009538518264889717, + 0.024698570370674133, + -0.003666520118713379, + -0.007820053957402706, + 0.01889614574611187, + -0.013337228447198868, + 0.005144955590367317, + -0.012961531057953835, + -0.005193657241761684, + -0.022096524015069008, + -0.001747162896208465, + -0.007173021323978901, + -0.011785740032792091, + 0.012989360839128494, + -0.00816792156547308, + 0.006365969777107239, + -0.007113884203135967, + 0.007597419433295727, + 0.00215851585380733, + -0.023641053587198257, + 0.004386605229228735, + 0.006995609030127525, + -0.006369448266923428, + 0.004421391990035772, + -0.009733323939144611, + -0.02787111885845661, + 0.010449930094182491, + -0.027398020029067993, + -0.04026910662651062, + -0.005242358427494764, + 0.011535275727510452, + -0.010818669572472572, + 0.0015462696319445968, + -0.02713363990187645, + -0.005228444002568722, + -9.33262417674996e-5, + -0.021025093272328377, + 0.014346042647957802, + 0.015222667716443539, + 0.01655847765505314, + 0.008557532913982868, + 0.027314532548189163, + 0.016516733914613724, + -0.003109932644292712, + -0.022193927317857742, + 0.028692085295915604, + 0.009357627481222153, + -0.006926035508513451, + -0.010380356572568417, + -0.015542705543339252, + -0.019758855924010277, + 0.0015584450447931886, + -0.0007961810333654284, + 0.0031290652696043253, + 0.002422895049676299, + -0.014186023734509945, + -0.024253299459815025, + 0.0023324494250118732, + -0.004863183479756117, + -0.003148198127746582, + 0.009434157982468605, + 0.020120637491345406, + 0.009830726310610771, + 0.013810327276587486, + -0.0071382345631718636, + 0.010763010941445827, + 0.008870613761246204, + 0.007778310216963291, + -0.019953662529587746, + -0.015445303171873093, + -0.001002727192826569, + -0.013845114037394524, + -0.0026229186914861202, + 0.01498611830174923, + 0.005367590580135584, + -0.025018608197569847, + -0.030890606343746185, + -0.0032073354814201593, + -0.018659595400094986, + 0.002960349665954709, + -0.0005257143056951463, + -0.03734702244400978, + -0.017226383090019226, + -0.0017158548580482602, + -0.009204565547406673, + 0.004692728165537119, + 0.012391028925776482, + -0.009524603374302387, + 0.005447600036859512, + 0.0025376910343766212, + 0.03578857704997063, + -0.010366442613303661, + 0.0044179135002195835, + -0.012801512144505978, + 0.013573777861893177, + 0.008508831262588501, + 0.0019410989480093122, + 0.0032316860742866993, + 0.026187442243099213, + -0.01487480103969574, + 0.0017367269610986114, + -0.0022576579358428717, + -0.0026003073435276747, + 0.001131438068114221, + 0.01158397737890482, + 0.0021480799186974764, + 0.01282238494604826, + 0.0033603969495743513, + -0.010387314483523369, + -0.011096963658928871, + 0.015250497497618198, + -0.012940659187734127, + 0.008891485631465912, + 0.01906312257051468, + -0.014916544780135155, + -0.004334425088018179, + 0.01130568329244852, + -0.023334931582212448, + -0.011632679030299187, + -0.008327940478920937, + 0.002582913963124156, + -0.011862271465361118, + -0.004077003337442875, + -0.0034525818191468716, + 0.00426833052188158, + -0.00511016882956028, + -0.005785031244158745, + 0.017782971262931824, + -0.005099732894450426, + 0.01192488707602024, + -0.003930899314582348, + -0.006028538569808006, + 0.005524131003767252, + 0.002528994344174862, + 0.0018680468201637268, + -0.004873619414865971, + 0.001131438068114221, + 0.004995372612029314, + 0.022931404411792755, + 0.015236582607030869, + -0.026535309851169586, + 0.02741193398833275, + 0.013803370296955109, + -0.01158397737890482, + -0.005851126275956631, + -0.001033165492117405, + -0.026493564248085022, + 0.012474517337977886, + 0.0172959566116333, + 0.005830253940075636, + -0.014693910256028175, + 0.011897058226168156, + 0.0055902255699038506, + -0.013956431299448013, + 0.008592319674789906, + 0.021943463012576103, + -0.010303826071321964, + 0.006091154646128416, + -0.03461974114179611, + 0.001213186769746244, + -0.011451788246631622, + 0.0004778825386893004, + -0.03269951418042183, + -0.016725454479455948, + 0.017003748565912247, + -0.007416528649628162, + 0.013852071017026901, + -0.0024141983594745398, + -0.02195737697184086, + -0.0034264917485415936, + 0.009580262005329132, + -0.01644716039299965, + -0.0009261964005418122, + -0.00608767569065094, + 0.010999560356140137, + 0.033812690526247025, + 0.015640107914805412, + 0.012731939554214478, + -0.013740753754973412, + -0.0004578801745083183, + 0.003913505934178829, + -0.0010140328668057919, + 0.012411901727318764, + -0.007353912573307753, + 0.003809145651757717, + -0.019299671053886414, + -0.014318213798105717, + -0.006564253941178322, + -0.0016228004824370146, + 0.006762538105249405, + 0.002395065501332283, + 0.016488904133439064, + 0.016948089003562927, + -0.004341382533311844, + 0.007750480901449919, + -0.022764429450035095, + 0.003816103097051382, + -0.008188793435692787, + -0.006181600037962198, + -0.0025376910343766212, + -0.01085345633327961, + -0.02795460633933544, + 0.0002872078330256045, + 0.009545475244522095, + -0.021275557577610016, + 0.018576107919216156, + 0.005816339515149593, + 0.01290587242692709, + -0.020983349531888962, + 0.003389965742826462, + -0.023348845541477203, + -9.18586811167188e-5, + 0.0035238945856690407, + 0.010491674765944481, + 0.018603937700390816, + -0.01982842944562435, + -0.001272324239835143, + -0.0021793879568576813, + -0.016377586871385574, + -0.03164200112223625, + -0.011945758946239948, + 0.003141240682452917, + 0.02261136658489704, + 0.02581174485385418, + -0.011862271465361118, + 0.009468944743275642, + 0.01920226961374283, + 0.0033029988408088684, + -0.04374777898192406, + -0.0008440127712674439, + -0.007847883738577366, + 0.0029586104210466146, + -0.021985206753015518, + 0.004038738086819649, + 0.004602282773703337, + -0.015417473390698433, + 0.004077003337442875, + -0.008501874282956123, + -0.01920226961374283, + 0.0003583031939342618, + 0.01636367291212082, + 0.00282642082311213, + -0.012098820880055428, + -0.014777397736907005, + -0.018005605787038803, + -0.0026664019096642733, + -0.008508831262588501, + -0.01831172965466976, + 0.016683710739016533, + -0.002689013257622719, + -0.014290384016931057, + -0.008362727239727974, + 0.0032908236607909203, + 0.02156776562333107, + 0.0026177004911005497, + 0.010456888005137444, + 0.015821000561118126, + -0.006359012331813574, + 0.030528824776411057, + 0.008467087522149086, + -0.03244905173778534, + 0.0010914333397522569, + 0.007562632672488689, + 0.002786416094750166, + 0.005120605230331421, + 0.014443445950746536, + -0.03166982904076576, + 0.004087439272552729, + 0.017810799181461334, + 0.010164679028093815, + -0.010074233636260033, + -0.014833057299256325, + -0.007743523456156254, + 0.01906312257051468, + 0.001675850129686296, + -0.012864128686487675, + -0.009538518264889717, + 0.017894288524985313, + -0.021526021882891655, + -0.013156336732208729, + -0.02435070276260376, + 0.005673713982105255, + -0.0019567529670894146, + 0.008578404784202576, + 0.004351818468421698, + -0.028497280552983284, + -0.0069329929538071156, + 0.005423249676823616, + 0.026757944375276566, + 0.004167448729276657, + 0.0013462459901347756, + -0.013177209533751011, + 0.004908406175673008, + -0.003083842573687434, + -0.0017375965835526586, + -0.0016880255425348878, + -0.013281568884849548, + -0.005809382069855928, + 0.0072982534766197205, + -0.016655880957841873, + 0.020830286666750908, + 0.0041604917496442795, + -0.017198553308844566, + 0.015097435563802719, + -0.00010403402848169208, + -0.021748656406998634, + 0.010992603376507759, + 0.014081663452088833, + 0.0019776250701397657, + 0.002454203087836504, + -0.005868519656360149, + 0.017421189695596695, + 0.012224053032696247, + 0.004685771185904741, + -0.0039900364354252815, + -0.01831172965466976, + 0.004470093175768852, + 0.003012529807165265, + 0.01060299202799797, + 0.016655880957841873, + -0.0149722034111619, + -0.005858083255589008, + 0.008710594847798347, + 0.004143098369240761, + 0.0018228241242468357, + -0.0016915041487663984, + -0.01282238494604826, + 0.005600661505013704, + 0.00707909744232893, + -0.0025081224739551544, + -0.0050753820687532425, + -0.01597406156361103, + 0.02010672353208065, + -0.009329797700047493, + -0.00403525959700346, + -0.005819818004965782, + 0.010776925832033157, + -0.01168137975037098, + 0.00953156128525734, + 0.0019150088774040341, + -0.005398898851126432, + -0.014026004821062088, + 0.018659595400094986, + 0.004584889393299818, + 0.002318534767255187, + 0.00964287854731083, + 0.0037813163362443447, + 0.013935559429228306, + 0.009698537178337574, + 0.010999560356140137, + 0.005231922492384911, + -0.0030612312257289886, + -0.014346042647957802, + 0.008209665305912495, + -0.008877570740878582, + -0.009809854440391064, + 0.009524603374302387, + -0.008091391064226627, + 0.00027611959376372397, + -0.004174406174570322, + -0.015681853517889977, + -0.0255891103297472, + -0.015292241238057613, + 0.0030594919808208942, + -0.021331215277314186, + -4.079965947312303e-6, + -0.0038961125537753105, + 0.011528318747878075, + -0.015556620433926582, + -0.015208753757178783, + 0.01985625922679901, + 0.030640142038464546, + -0.015097435563802719, + 0.0004000472545158118, + -0.002628136659041047, + -0.02958262525498867, + 0.010936944745481014, + -0.011980545707046986, + -0.0034978045150637627, + -0.002175909234210849, + -0.011138707399368286, + 0.018548278138041496, + 0.0009775067446753383, + 0.0037221789825707674, + 0.013142422772943974, + 0.008460129611194134, + -0.004174406174570322, + 0.004647505469620228, + -0.0019028334645554423, + -0.016043635085225105, + 0.005631969776004553, + -0.012592792510986328, + 0.004734472371637821, + -0.020148467272520065, + -0.006299874745309353, + 0.031141070649027824, + -0.005945050157606602, + -0.023627139627933502, + 0.0006470329826697707, + 0.02677185833454132, + 0.028914719820022583, + 0.011423958465456963, + -0.017309870570898056, + -0.009162821806967258, + -0.003089060541242361, + -0.020510248839855194, + 0.01131959818303585, + 0.020176297053694725, + 0.00499885156750679, + 0.005322367884218693, + 0.005642405711114407, + 0.006525988224893808, + -0.01013685017824173, + -0.0066825286485254765, + -0.023835860192775726, + 0.003770880401134491, + -0.0020124115981161594, + 0.023515822365880013, + -0.021247727796435356, + -0.0044074770994484425, + 0.00031568948179483414, + -0.006237258668988943, + 0.011973588727414608, + -0.039100270718336105, + 0.001836738782003522, + 0.019299671053886414, + 0.020092809572815895, + 0.015125265344977379, + 0.007339997682720423, + -0.007632206194102764, + 0.01070039439946413, + -0.00032742999610491097, + -0.011256982572376728, + 0.015069606713950634, + -0.025603024289011955, + -0.025185585021972656, + 0.0009618527838028967, + -0.002048937836661935, + -0.00815400667488575, + -0.026076124981045723, + 0.020009320229291916, + 0.01583491452038288, + 0.01886831596493721, + -0.004560539033263922, + -0.00638336269184947, + -0.006741666235029697, + -0.008251409977674484, + 0.006198993418365717, + 0.0045118373818695545, + -0.0055902255699038506, + -0.0018645680975168943, + -0.002955131698399782, + -0.0019376202253624797, + -0.02404458075761795, + 0.030278360471129417, + -0.017198553308844566, + -0.012613664381206036, + -0.004003951326012611, + 0.0010514286113902926, + 0.02325144223868847, + 0.025018608197569847, + 0.016614137217402458, + 0.002294184174388647, + 0.013469417579472065, + -0.016906345263123512, + 0.014930459670722485, + -0.013671180233359337, + 0.016043635085225105, + 0.005645884666591883, + 0.011897058226168156, + 0.010178593918681145, + 0.0026298759039491415, + 0.002556823892518878, + -0.002252439968287945, + -0.0032542976550757885, + -0.022680940106511116, + -0.006668614223599434, + -0.022388732060790062, + 0.012008375488221645, + -0.008738423697650433, + 0.029026038944721222, + 0.012384071946144104, + 0.0051275622099637985, + -0.006449457723647356, + -0.005044074263423681, + 0.010317740961909294, + 0.008112262934446335, + -0.004685771185904741, + -0.0023167955223470926, + 0.021832143887877464, + -0.0060668038204312325, + -0.006042452994734049, + -0.015765340998768806, + 0.0028403354808688164, + 0.0026750985998660326, + 0.01060299202799797, + -0.01461042184382677, + -0.03230990469455719, + 0.0037569657433778048, + -0.02327927201986313, + -0.018075179308652878, + -0.03782011941075325, + 0.015222667716443539, + -0.010331655852496624, + -0.005583268590271473, + -0.020204126834869385, + 0.00017132458742707968, + -0.007465229835361242, + -0.01082562655210495, + -0.0009348930907435715, + 0.033283933997154236, + -0.016683710739016533, + 0.011653550900518894, + -0.027857204899191856, + 0.02117815427482128, + 0.030500994995236397, + -0.007778310216963291, + -0.002942956518381834, + 0.027912862598896027, + -0.011479617096483707, + 0.008160964585840702, + 0.03200378268957138, + -0.010790839791297913, + -0.0003119933826383203, + 0.01231449842453003, + -0.010074233636260033, + 0.00874538067728281, + -0.027036238461732864, + -0.009928129613399506, + -0.010609949007630348, + -0.021052923053503036, + 0.005687628407031298, + 0.008133134804666042, + 0.009545475244522095, + -0.01732378639280796, + -0.008974973112344742, + 0.022625282406806946, + 0.023446248844265938, + 0.05204093083739281, + 0.030946265906095505, + 0.02252787910401821, + 0.013587692752480507, + 0.03826539218425751, + -0.016878515481948853, + 0.02005106396973133, + -0.0035691172815859318, + -0.02831638976931572, + -0.009788982570171356, + -0.009343712590634823, + 0.002775980159640312, + 0.02693883515894413, + 0.012098820880055428, + -0.01633584313094616, + -0.009336755611002445, + -0.013378972187638283, + -0.010637778788805008, + 0.0013305919710546732, + -0.0066825286485254765, + -0.004685771185904741, + 0.0037882737815380096, + -0.011034347116947174, + 0.01303110457956791, + 0.012356242164969444, + 0.0031951600685715675, + -0.008300110697746277, + -0.014165151864290237, + -0.015403559431433678, + -0.0008557532564736903, + 0.0292486734688282, + -0.01158397737890482, + -0.006056367885321379, + -0.018214326351881027, + 0.0003985253570135683, + 0.007750480901449919, + 0.010811712592840195, + 0.007451314944773912, + 0.008314025588333607, + -0.019661452621221542, + -0.01616886630654335, + -0.02190171740949154, + 0.008418385870754719, + -0.016795028001070023, + -0.006143334321677685, + -0.013045019470155239, + 0.0026420513167977333, + -0.015765340998768806, + 0.015514876693487167, + -0.01133351307362318, + -0.005572832189500332, + -0.0021985205821692944, + -0.027704142034053802, + -0.004661420360207558, + -0.004348339978605509, + 0.0018923975294455886, + 0.02801026590168476, + -0.01070039439946413, + -0.021039007231593132, + -0.013719881884753704, + -0.011945758946239948, + 0.015236582607030869, + 0.008348812349140644, + 0.0033360463567078114, + -0.02148427814245224, + 0.03147502243518829, + 0.0015184403164312243, + 0.0009001063299365342, + -0.0007335649570450187, + -0.023348845541477203, + 0.011667465791106224, + -0.005851126275956631, + -0.021080750972032547, + -0.01158397737890482, + -0.011465702205896378, + -0.0005265839281491935, + -0.028608597815036774, + 0.007284339051693678, + -0.01762990839779377, + 0.008933229371905327, + -0.0010009878315031528, + 0.0057085007429122925, + -0.012592792510986328, + -0.002523776376619935, + -0.014026004821062088, + 0.01389381568878889, + -0.012467560358345509, + 0.002494207816198468, + -0.013956431299448013, + -0.0012227531988173723, + -0.014304298907518387, + -0.020287614315748215, + -0.01342767383903265, + 0.00805660430341959, + 0.008007902652025223, + -0.022026950493454933, + -0.012592792510986328, + -0.008481002412736416, + -0.001394077786244452, + -0.0009809854673221707, + -0.008411428891122341, + 0.008091391064226627, + -0.001676719868555665, + 0.026674456894397736, + 0.004143098369240761, + -0.02514384128153324, + 0.00695386528968811, + 0.015487046912312508, + 0.0026229186914861202, + 0.02787111885845661, + -0.019257927313447, + -0.0043065957725048065, + 0.015180923976004124, + 0.012168394401669502, + -0.02069113962352276, + 0.015097435563802719, + 0.00597635842859745, + -0.004372690338641405, + -0.022472219541668892, + 0.015320071019232273, + -0.0028316390234977007, + 0.000211220612982288, + 0.021219898015260696, + 0.00030612314003519714, + 0.0022333073429763317, + -0.01022033765912056, + 0.0008705376530997455, + 0.026479650288820267, + -0.00481448182836175, + -0.003816103097051382, + 0.01977277174592018, + -0.011458745226264, + -0.006331183016300201, + 0.02787111885845661, + -0.0005470211617648602, + -0.011910972185432911, + 0.022221755236387253, + -0.02151210606098175, + 0.004925799556076527, + 0.004480529576539993, + -0.006146813277155161, + 0.01616886630654335, + 0.019953662529587746, + -0.0013732056831941009, + -0.013629436492919922, + -0.0028559896163642406, + -0.010081191547214985, + 0.01476348377764225, + 0.0021289472933858633, + 0.009448072873055935, + -0.006672092713415623, + -0.010860413312911987, + -0.0007253030780702829, + 0.002099378500133753, + -0.0007813966949470341, + 0.0185621939599514, + 0.014248640276491642, + 0.02167908288538456, + -0.012871085666120052, + -0.0012514522532001138, + -0.00805660430341959, + 0.019132696092128754, + 0.010596034117043018, + 0.02958262525498867, + 0.0015636630123481154, + 0.0082931537181139, + -0.0030003543943166733, + 0.007026917301118374, + -0.009795940481126308, + -0.006400756072252989, + 0.004066567402333021, + -0.00683211162686348, + 0.002704667393118143, + -0.02421155571937561, + -0.011187409050762653, + 0.005155391525477171, + -0.016461076214909554, + -0.019981490448117256, + -0.024684656411409378, + -0.00731216836720705, + 0.01597406156361103, + 0.021219898015260696, + 0.027119725942611694, + -0.0009914215188473463, + 0.005858083255589008, + -0.003795230994001031, + -0.012871085666120052, + 0.005096254404634237, + 0.0022402647882699966, + 0.003461278509348631, + 0.013184166513383389, + 0.008508831262588501, + -0.007019959855824709, + 0.018339557573199272, + -0.014039919711649418, + -0.00025894364807754755, + 0.01591840200126171, + 0.019758855924010277, + 0.004824917763471603, + -0.0005761550273746252, + 0.007058225106447935, + -0.030946265906095505, + -0.008348812349140644, + -0.038821976631879807 + ], + "10b3958c-31b3-45bc-b6c5-8f633558f400": [ + -0.030122730880975723, + 0.015926800668239594, + -0.01659681461751461, + 0.004916928708553314, + -0.038107071071863174, + 0.00013576952915173024, + 0.013456122949719429, + 0.049943991005420685, + 0.00684670964255929, + 0.045393478125333786, + -0.00613830890506506, + 0.0165549386292696, + -0.022822365164756775, + 0.006630350835621357, + -0.006002212408930063, + 0.01207421813160181, + -0.04782227799296379, + 0.03355655446648598, + -0.01645722985267639, + -0.005258915014564991, + 0.06627558916807175, + -0.03358447179198265, + -0.009477912448346615, + 0.00785871036350727, + -0.02144046127796173, + -0.016540979966521263, + 0.0270797498524189, + -0.007733082864433527, + -0.012297555804252625, + -0.014600730501115322, + 0.011480975896120071, + 0.029061874374747276, + 0.023227166384458542, + -0.0016846326179802418, + 0.01365154329687357, + -0.014112178236246109, + 0.010797003284096718, + 0.04408136382699013, + -0.015186993405222893, + 0.024176353588700294, + -0.04162464663386345, + 0.013142053969204426, + 0.018634775653481483, + 0.010650437325239182, + -0.01982126012444496, + 0.005304280668497086, + 0.04173631593585014, + -0.007094475440680981, + 0.006557068321853876, + 0.0063127921894192696, + 0.009791981428861618, + 0.03196527063846588, + -0.01887207292020321, + -0.004491190426051617, + -0.0011995700187981129, + 0.008249551989138126, + -0.002908630296587944, + 0.08196509629487991, + 0.00974312610924244, + -0.037102047353982925, + -0.03506408631801605, + -0.015954717993736267, + 0.007551620714366436, + -0.001201314851641655, + 0.013560812920331955, + -0.017741423100233078, + 0.001652353210374713, + -0.019444376230239868, + -0.02192901261150837, + 0.012367349117994308, + -0.020561067387461662, + 0.014503019861876965, + -0.033472802489995956, + 0.014433227479457855, + -0.016401395201683044, + 0.0038979484234005213, + 0.027540383860468864, + -0.06180882826447487, + 0.007230572402477264, + 0.02209651656448841, + -0.008752062916755676, + 0.006009191740304232, + 0.013714357279241085, + 0.00786568969488144, + 0.013337474316358566, + 0.003393692895770073, + -0.0400891974568367, + -0.05153527483344078, + -0.06130632013082504, + -0.0040375348180532455, + 0.02402280829846859, + 0.012283597141504288, + 0.009805940091609955, + -0.01069929264485836, + -0.0018477741396054626, + 0.0067455098032951355, + 0.04447220638394356, + 0.016568897292017937, + -0.03634828329086304, + -0.019109370186924934, + -0.027889350429177284, + 0.023129455745220184, + -0.03464533016085625, + 0.002256064210087061, + 0.03135108947753906, + -0.020979825407266617, + -0.001385394367389381, + -0.003657161956652999, + -0.03738122060894966, + 0.02790330909192562, + 0.019639797508716583, + -0.030038978904485703, + -0.019276872277259827, + 0.00899633951485157, + 0.030932331457734108, + -0.07057484984397888, + 0.007984338328242302, + -0.032998207956552505, + -0.010922631248831749, + -0.04335551708936691, + 0.052651964128017426, + 0.04179215058684349, + 0.024469485506415367, + -0.026493486016988754, + 0.00803319364786148, + -0.01817414164543152, + 0.012346411123871803, + 0.0034547618124634027, + 0.0021653331350535154, + 0.016052428632974625, + 0.02765205316245556, + -0.028615199029445648, + -0.01996084675192833, + 0.002542216097936034, + -0.018578941002488136, + 0.034003231674432755, + 0.02271069772541523, + 0.032300278544425964, + -0.05276363343000412, + 0.04341135174036026, + -0.007726103533059359, + -0.01349799893796444, + -0.009066132828593254, + -0.01799267902970314, + 0.0014089496107771993, + 0.005066983867436647, + -0.03774414584040642, + 0.05840292200446129, + 0.014516978524625301, + 0.018802279606461525, + -0.03992169350385666, + 0.006919992621988058, + 0.04458387568593025, + -0.005925439763814211, + 0.007087496109306812, + 0.010078133083879948, + 0.016108263283967972, + 0.018788320943713188, + -0.001420291024260223, + 0.007146820425987244, + -0.007293385919183493, + -0.026884328573942184, + 0.04497471824288368, + 0.005667205434292555, + 0.014921779744327068, + 0.016010552644729614, + 0.04000544548034668, + 0.0016139670042321086, + -0.05281946808099747, + 0.021691717207431793, + 0.044304702430963516, + -0.0400891974568367, + 0.01257672905921936, + -0.015647627413272858, + -0.005566005129367113, + -0.009812919422984123, + 0.0014839771902188659, + 0.004299259278923273, + 0.018718527629971504, + -0.07185904681682587, + -0.009080091491341591, + -0.022738613188266754, + -0.03243986517190933, + 0.008696228265762329, + 0.0002822261303663254, + 0.025013871490955353, + -0.0006085091736167669, + 0.00903821550309658, + -0.02759621851146221, + 0.02769392915070057, + 0.014014468528330326, + 0.008647373877465725, + 0.038414157927036285, + 0.05131193622946739, + -0.011655459180474281, + -0.004529576748609543, + -0.025097623467445374, + -0.016624731943011284, + 0.016038469970226288, + 0.021552130579948425, + -0.03283070772886276, + -0.03969835489988327, + -0.0601896271109581, + 0.012025362811982632, + -0.0446397103369236, + 0.014712399803102016, + 0.007136351428925991, + -0.014377392828464508, + 0.023729676380753517, + -0.028922289609909058, + 0.033305298537015915, + -0.013860923238098621, + 0.028294149786233902, + 0.006986296270042658, + -0.029341047629714012, + -0.005056514870375395, + -0.027456631883978844, + 0.013288618996739388, + 0.005314749665558338, + -0.010734189301729202, + -0.015256786718964577, + 0.015298662707209587, + 0.02712162584066391, + -0.006375605706125498, + -0.029899392277002335, + -0.03263528645038605, + -0.03274695575237274, + 0.01702953316271305, + -0.041038382798433304, + -0.01253485307097435, + 0.009833857417106628, + -0.007419013883918524, + -0.0014813599409535527, + -0.02720537595450878, + -0.03297029435634613, + -0.006930461619049311, + -0.01663869060575962, + -0.01651306264102459, + 0.020910033956170082, + -0.015508041717112064, + 0.04285300523042679, + 0.03726955130696297, + 0.024525318294763565, + 0.011460037901997566, + 0.02498595416545868, + 0.037799980491399765, + 0.00018876871035899967, + 0.042043402791023254, + 0.012311514467000961, + -0.013979571871459484, + -0.00033915118547156453, + 0.01725287176668644, + 0.027707887813448906, + -0.03283070772886276, + -0.00899633951485157, + 0.0240646842867136, + 0.02511158213019371, + -0.008968422189354897, + -0.03768831118941307, + -0.003379734233021736, + -0.003971231169998646, + -0.004327176604419947, + 0.02092399261891842, + -0.022864241153001785, + 0.05656038224697113, + -0.015549917705357075, + 0.012290576472878456, + -0.02773580513894558, + 0.0013138563372194767, + 0.016150139272212982, + -0.05773290991783142, + 0.015689503401517868, + 0.004602859262377024, + 0.015494083054363728, + 0.0018913948442786932, + -0.0025160436052829027, + 0.005080942530184984, + 0.011480975896120071, + -0.01848123036324978, + 0.013609667308628559, + -0.02410656027495861, + 0.02537679672241211, + 0.015647627413272858, + 0.035008251667022705, + -0.00932436715811491, + -0.03185360133647919, + -0.0026695886626839638, + 0.019151246175169945, + -0.04187590256333351, + -0.017657671123743057, + 0.021649841219186783, + 0.0009212698205374181, + 0.036794956773519516, + -0.004875052720308304, + 0.032998207956552505, + -0.0021967398934066296, + -0.014405310153961182, + -0.023171331733465195, + -0.01887207292020321, + 0.019193120300769806, + -0.013421226292848587, + 0.020212100818753242, + 0.022864241153001785, + -0.0020117880776524544, + 0.006508213002234697, + -0.0044179074466228485, + 0.008640394546091557, + -0.012283597141504288, + -0.04952523112297058, + 0.0050320872105658054, + 0.0450584702193737, + -0.0035071067977696657, + -0.022864241153001785, + -0.013916757889091969, + -0.005534598138183355, + 0.006717592477798462, + 0.013400288298726082, + 0.005887053906917572, + -0.005087921861559153, + -0.02611660398542881, + -0.01524282805621624, + -0.014433227479457855, + -0.05639287829399109, + 0.005419439636170864, + 0.01694578118622303, + -0.03313779458403587, + 7.513670425396413e-5, + 0.007767979521304369, + -0.00958260241895914, + -0.024441568180918694, + -0.007412034552544355, + -0.02254319377243519, + -0.01916520483791828, + -0.013016426004469395, + -0.003479189472272992, + -0.021901095286011696, + -0.033612389117479324, + -0.022250061854720116, + -0.02624223195016384, + 0.0004911693977192044, + -0.008096007630228996, + 0.028754785656929016, + -0.008389138616621494, + -0.012067238800227642, + 0.02720537595450878, + -0.0031511615961790085, + -0.015829090029001236, + 0.02642369270324707, + -0.008717166259884834, + -0.014907821081578732, + 0.0007642352138645947, + -0.02564200945198536, + 0.04048003628849983, + -0.0029313131235539913, + 0.010140947066247463, + 0.0003289002925157547, + -0.030038978904485703, + -0.00589403323829174, + 0.010797003284096718, + 0.017532043159008026, + 0.010727209970355034, + -0.03813498839735985, + -0.04860396310687065, + -0.008284448646008968, + 0.0026626093313097954, + 0.03235611319541931, + 0.02008647285401821, + 1.6439562386949547e-5, + 0.003859562100842595, + 0.01776934042572975, + -0.046538084745407104, + 0.02738683857023716, + 0.042741335928440094, + -0.01065741665661335, + -0.053629070520401, + -0.008354241959750652, + 0.050334833562374115, + 0.003208740847185254, + -0.008835814893245697, + 0.02638181671500206, + -0.022459441795945168, + 0.01686202920973301, + 0.016959739848971367, + -0.008647373877465725, + 0.040898796170949936, + 0.012834963388741016, + -0.00487156305462122, + -0.008724145591259003, + -0.020519191399216652, + -0.02414843626320362, + -0.029676055535674095, + -0.018397478386759758, + -0.05111651495099068, + -0.006441909354180098, + -0.024204270914196968, + 0.019905012100934982, + 0.014628647826611996, + 0.006281385198235512, + 0.019542086869478226, + -0.0101549057289958, + -0.00015779798559378833, + -0.006951399613171816, + -0.002104263985529542, + 0.0030360028613358736, + 0.010294492356479168, + -0.00891258753836155, + -0.00023925970890559256, + -0.0007302110316231847, + 0.017839133739471436, + 0.01747620850801468, + 0.003789769019931555, + -0.007059578783810139, + 0.0033186650834977627, + -0.03241194784641266, + 0.05418741703033447, + 0.001001531956717372, + 0.017922885715961456, + 0.02174755185842514, + -0.07068651914596558, + 0.0028144095558673143, + 0.07409242540597916, + 0.06342802941799164, + -0.007439951878041029, + -0.0031529064290225506, + -0.025474505499005318, + -0.006208102218806744, + 0.03855374455451965, + 0.013107157312333584, + -0.005070473533123732, + 0.002285726135596633, + -0.02289215847849846, + 0.008424035273492336, + -0.025614092126488686, + -0.03821874037384987, + 0.009778022766113281, + -0.002957485383376479, + 0.022682780399918556, + 0.003261085832491517, + -0.007122392766177654, + -0.011997445486485958, + 0.01712724380195141, + 0.014447186142206192, + 0.00794944167137146, + -0.002406119368970394, + -0.01282100472599268, + -0.03556659817695618, + -0.01834164373576641, + 0.015954717993736267, + 0.017853092402219772, + 0.016485147178173065, + 0.014684482477605343, + 0.03721371665596962, + -0.06560558080673218, + 0.00012998977035749704, + -0.005946377757936716, + 0.003775810357183218, + -0.0044528041034936905, + 0.008444973267614841, + 0.028671033680438995, + 0.006508213002234697, + -0.009066132828593254, + -0.012039321474730968, + 0.02065877802670002, + -0.030932331457734108, + -0.007028171792626381, + -0.06035713106393814, + -0.03383572772145271, + 0.01943041756749153, + -0.006256957538425922, + -0.02035168744623661, + -0.001519746263511479, + 0.02599097602069378, + -0.006030129734426737, + 0.007914545014500618, + -0.029759807512164116, + 0.03461741283535957, + 0.0077958968468010426, + -0.005681164097040892, + 0.013958633877336979, + -0.014363434165716171, + -0.012144011445343494, + -0.01663869060575962, + -0.026451610028743744, + 0.0027847473975270987, + 0.037409137934446335, + -0.014963654801249504, + -0.02699599787592888, + 0.020505232736468315, + 0.03726955130696297, + -0.009031236171722412, + 0.061697158962488174, + -0.0014752531424164772, + -0.0048506250604987144, + -0.030373986810445786, + -0.012681419029831886, + -0.04003336280584335, + -0.01120180357247591, + -0.043606773018836975, + -0.007691206876188517, + -0.0320490226149559, + 0.061250485479831696, + -0.024036766961216927, + 0.02541867084801197, + 0.033779893070459366, + 0.005604391451925039, + -0.013686439953744411, + 0.0010425354121252894, + 0.009198739193379879, + 0.01465656515210867, + -0.010929609648883343, + -0.0003158140752930194, + 0.0006242126692086458, + 0.0012231252621859312, + 0.023966973647475243, + -0.0019524638773873448, + 0.019542086869478226, + 0.0014194186078384519, + 0.01612222194671631, + -0.002304919296875596, + -0.010078133083879948, + 0.003542003221809864, + 0.022682780399918556, + 0.0064768060110509396, + -0.004376031458377838, + 0.01624784991145134, + -0.006686185486614704, + -0.0014220357406884432, + 0.005656736437231302, + 0.04036836698651314, + 0.0066931648179888725, + -0.02777768112719059, + 0.00220546405762434, + -0.004763383883982897, + 0.010406161658465862, + 0.024748656898736954, + -0.02589326538145542, + 0.0048506250604987144, + -0.004731976892799139, + -0.001454315148293972, + 0.027009956538677216, + -0.009219677187502384, + 0.022696739062666893, + -0.01602451130747795, + -0.011760149151086807, + 0.026716824620962143, + 0.03874916583299637, + -0.02152421325445175, + 0.02153817191720009, + 0.015563876368105412, + 0.015968676656484604, + -0.017657671123743057, + 0.015270745381712914, + -0.0014621668960899115, + 0.015870966017246246, + 0.013100177980959415, + -0.05519243702292442, + 0.015494083054363728, + 0.0006032746750861406, + -0.030150648206472397, + 0.0032732996623963118, + 0.0028946716338396072, + -0.007265468593686819, + 0.003322154749184847, + 0.010706271976232529, + -0.05840292200446129, + -0.00812392495572567, + -0.020379604771733284, + 0.013553833588957787, + -0.005388032644987106, + 0.006473316345363855, + 0.02716350182890892, + 0.020281894132494926, + 0.026982039213180542, + -0.019556045532226562, + -0.013379350304603577, + 0.03436615690588951, + -0.011774107813835144, + 0.021105453372001648, + -0.0016654394567012787, + -0.001285066711716354, + -0.0051577151753008366, + -0.0275543425232172, + 0.008724145591259003, + -0.02248735912144184, + 0.010880755260586739, + -0.007474848069250584, + -0.06755978614091873, + -0.03743705525994301, + 0.0017282533226534724, + 0.029201461002230644, + 0.00113588385283947, + 0.025516381487250328, + 0.010971485637128353, + -0.00734922057017684, + -0.008891649544239044, + 0.023869263008236885, + -0.00447723176330328, + 0.022612987086176872, + -0.0014804875245317817, + -0.00903821550309658, + -0.015312621369957924, + 0.0032488720025867224, + 0.016917863860726357, + -0.021328791975975037, + 0.004637755919247866, + 0.026186397299170494, + -0.017043491825461388, + -0.005279853008687496, + 0.011048258282244205, + -0.007370158564299345, + 0.012604646384716034, + 0.00480525940656662, + 0.03109983541071415, + 0.004857604391872883, + 0.03567826747894287, + 0.0055206394754350185, + 0.02424614690244198, + 0.027917267754673958, + 0.0034687204752117395, + -0.041038382798433304, + 0.029061874374747276, + -0.049162305891513824, + 0.05823541805148125, + -0.014461144804954529, + 0.028224356472492218, + -0.018104348331689835, + -0.03344488516449928, + -0.002359009115025401, + -0.016401395201683044, + -0.001604370423592627, + 0.01240224577486515, + 0.010434078983962536, + 0.019974805414676666, + -0.020100431516766548, + 0.020951909944415092, + 0.026702865958213806, + 0.008151842281222343, + 0.04466762766242027, + -0.013791129924356937, + 0.018983742222189903, + -0.007600476033985615, + -0.0015092772664502263, + 0.007370158564299345, + 0.03657161816954613, + -0.016568897292017937, + -0.005150735843926668, + -0.04193173348903656, + 0.007656310684978962, + 0.028838537633419037, + -0.002067622495815158, + -0.05795624852180481, + -0.011676397174596786, + 0.04355093836784363, + 0.005269384011626244, + 0.0012048045173287392, + -0.038637496531009674, + -0.03386364504694939, + 0.02078440599143505, + 0.008612477220594883, + -0.022906117141246796, + 0.0009169077384285629, + 0.0203098114579916, + -0.010266575030982494, + 0.018160182982683182, + 0.02201276458799839, + 0.0048157284036278725, + 0.010427099652588367, + -0.018927907571196556, + 0.007928503677248955, + 0.021412543952465057, + 0.011480975896120071, + 0.02197088859975338, + 0.028028937056660652, + 0.0213148333132267, + -0.004920418374240398, + -0.0213148333132267, + 0.006689675152301788, + -0.029676055535674095, + 0.009750105440616608, + -0.014670523814857006, + -0.0210496187210083, + -0.010182823054492474, + -0.013065281324088573, + 0.002673078328371048, + 0.009017277508974075, + -0.020212100818753242, + 0.001020725117996335, + 0.028363943099975586, + -0.027023915201425552, + 0.0055031911469995975, + -0.003210485680028796, + 0.009338325820863247, + -0.00969427078962326, + 0.02252923510968685, + 0.010671375319361687, + 0.01916520483791828, + -0.012472039088606834, + 0.007572558708488941, + 0.023464463651180267, + -0.04045211896300316, + -0.028098728507757187, + -0.01760183647274971, + -0.009484891779720783, + -0.015019489452242851, + -0.009408119134604931, + 0.0065291509963572025, + -0.017504125833511353, + 0.007087496109306812, + 0.0008671801188029349, + -0.014461144804954529, + 0.006274405866861343, + -0.009659374132752419, + -0.017699547111988068, + -0.0016279256669804454, + -0.0006307557341642678, + 0.0002763373195193708, + -0.013553833588957787, + 0.010210740379989147, + -0.0071084341034293175, + 0.015173034742474556, + -0.02786143310368061, + 0.04757102206349373, + -0.0013609668239951134, + -0.02931313030421734, + -0.046621836721897125, + 0.014572813175618649, + 0.013805088587105274, + -0.012723294086754322, + 0.002102519152686, + -0.005388032644987106, + 0.07018400728702545, + -0.0017003359971567988, + -0.013798109255731106, + 0.02289215847849846, + -0.016108263283967972, + -0.005244956351816654, + -0.027149543166160583, + -0.0012754701310768723, + 0.03235611319541931, + -0.0227944478392601, + 0.003964251838624477, + -0.017043491825461388, + 0.007830793038010597, + 0.012520894408226013, + 0.04101046547293663, + 0.018718527629971504, + -0.009380201809108257, + -0.002201974391937256, + 0.012597667053341866, + 0.02794518508017063, + 0.05549952760338783, + -0.04237841069698334, + 0.056448712944984436, + 0.03271903842687607, + -0.010692313313484192, + -0.0029365476220846176, + 0.0008658714941702783, + 0.0043830107897520065, + -0.008759042248129845, + 0.03738122060894966, + -0.02065877802670002, + 0.005984764080494642, + -0.004630776587873697, + -0.018104348331689835, + -0.0032541065011173487, + 0.012793087400496006, + -0.011578686535358429, + 0.026968080550432205, + 0.05019524693489075, + -0.014642606489360332, + -0.004442335106432438, + -0.01973750814795494, + 0.02248735912144184, + 0.020993784070014954, + -0.004965784028172493, + -0.03665537014603615, + 0.046314746141433716, + 0.01079002395272255, + -0.02821039780974388, + 0.010545747354626656, + -0.020323770120739937, + -0.029759807512164116, + 0.006441909354180098, + -0.027442673221230507, + 0.0006111264228820801, + -0.022152351215481758, + 0.03598535805940628, + 0.03514783829450607, + -0.013504978269338608, + -0.009212697856128216, + 0.017280789092183113, + 0.00739109655842185, + -0.01948625221848488, + 0.006975827272981405, + 0.0055729844607412815, + -0.015368456020951271, + 0.02297591045498848, + -0.030234400182962418, + -0.0018233464797958732, + 0.00381070701405406, + 0.004658693913370371, + -0.05167486146092415, + 0.02878270298242569, + 0.04179215058684349, + -0.02353425696492195, + -0.018899990245699883, + 0.03777206316590309, + -0.004431866109371185, + 0.012081197462975979, + 0.009073112159967422, + -0.026186397299170494, + -0.013846964575350285, + 0.003988679498434067, + 0.008137883618474007, + 0.0021112433169037104, + -0.021859219297766685, + 0.012834963388741016, + -0.04053587093949318, + 0.02353425696492195, + -0.029899392277002335, + -0.006721082143485546, + 0.004697080235928297, + 0.04790602996945381, + 0.015605752356350422, + -0.0034669756423681974, + -0.011767128482460976, + -0.025251168757677078, + 0.004937866702675819, + 0.013211846351623535, + 0.008151842281222343, + -0.006878116633743048, + -0.013728315941989422, + -0.007202655076980591, + 0.019751466810703278, + 0.005960336420685053, + 0.044918883591890335, + -0.01843935437500477, + -0.006197633221745491, + -0.03394739702343941, + 0.0043411352671682835, + 0.010168864391744137, + -0.024176353588700294, + -0.023310918360948563, + -0.0019193121697753668, + -0.012472039088606834, + -0.021761510521173477, + -0.01365154329687357, + -0.0030307683628052473, + 0.027498507872223854, + 0.005063494201749563, + 0.007495786063373089, + -0.019751466810703278, + -0.009729167446494102, + -0.015591793693602085, + -0.04639849811792374, + 0.01037126500159502, + -0.004260872956365347, + 0.026437651365995407, + 0.01864873431622982, + 0.0005408970755524933, + 0.008800918236374855, + 0.00401659682393074, + 0.0011777597246691585, + -0.02035168744623661, + 0.0031197546049952507, + -0.027791639789938927, + -0.007670269347727299, + 0.02987147495150566, + 0.0067629581317305565, + -0.009659374132752419, + 0.003995658829808235, + 0.013567792251706123, + 0.01803455501794815, + -0.023464463651180267, + -0.037325385957956314, + -0.03947501629590988, + -0.008472890593111515, + 0.018397478386759758, + -0.02978772483766079, + 0.005880074575543404, + -0.005112349521368742, + 0.009764064103364944, + 0.0030848579481244087, + -0.0013086219551041722, + -0.061138816177845, + 0.01864873431622982, + 0.0036327342968434095, + -0.0013522426597774029, + 0.008019234985113144, + -0.0129047567024827, + 0.00936624314635992, + 0.00511932885274291, + -0.005150735843926668, + -0.03096024878323078, + -0.0011829942231997848, + -0.04031253233551979, + -0.02804289571940899, + -0.0018163671484217048, + 0.0002887692244257778, + -0.023422587662935257, + -0.0031127752736210823, + -0.0203098114579916, + -0.032384030520915985, + 0.013435184955596924, + -0.025055747479200363, + -0.036180779337882996, + 0.008835814893245697, + 0.02026793546974659, + -0.006818792317062616, + 0.05896126851439476, + 0.030988166108727455, + 0.013156011700630188, + 0.0013321770820766687, + -0.02197088859975338, + 0.02053315006196499, + 0.026535362005233765, + -0.009373222477734089, + -0.012388287112116814, + -0.018229976296424866, + -0.008619456551969051, + -0.018899990245699883, + -0.013511957600712776, + 0.026535362005233765, + 0.010510850697755814, + -0.00037753742071799934, + -0.002973188878968358, + 0.0036292446311563253, + 0.013316536322236061, + 0.001317346002906561, + 0.001086156233213842, + 0.01733662374317646, + 0.02761017717421055, + 0.01707140915095806, + -0.009066132828593254, + 0.016038469970226288, + -0.021719634532928467, + 0.00273589207790792, + -0.017797257751226425, + -0.019416458904743195, + -0.012918715365231037, + -0.016652649268507957, + 0.009317387826740742, + 0.021370667964220047, + -0.023171331733465195, + 0.024162394925951958, + -0.009589580819010735, + -0.01764371246099472, + 0.037632476538419724, + 0.020630860701203346, + 0.005670695099979639, + 0.013665501959621906, + 0.02266882173717022, + 0.013470081612467766, + -0.004714528564363718, + 0.009924588724970818, + 0.022724656388163567, + -0.011341390199959278, + 0.026088686659932137, + 0.021984847262501717, + -0.012653501704335213, + 5.5807271564844996e-5, + 0.007502765394747257, + -0.008745083585381508, + -0.008696228265762329, + -0.04938564449548721, + 0.016275767236948013, + -0.024692822247743607, + 0.012081197462975979, + 0.011208782903850079, + 0.009163842536509037, + -0.009338325820863247, + -0.011467017233371735, + 0.0004026193346362561, + -0.0094150984659791, + -0.008898628875613213, + 0.0016802705358713865, + -0.020295852795243263, + -0.004121286794543266, + -0.01690390519797802, + -0.002542216097936034, + 0.013728315941989422, + 0.026409734040498734, + -0.012807046063244343, + 0.006061536725610495, + -0.036794956773519516, + -0.002388671273365617, + -0.028322067111730576, + -0.012744232080876827, + 0.01166243851184845, + -0.014586771838366985, + 0.026018893346190453, + -0.029452716931700706, + 0.004916928708553314, + -0.01743433251976967, + -0.0014839771902188659, + -0.03715788200497627, + -0.021859219297766685, + -0.008061110973358154, + 0.0035646860487759113, + -0.010936588980257511, + -0.019807301461696625, + 0.008437993936240673, + -0.034310322254896164, + 0.03953085094690323, + -0.0013347943313419819, + 0.018146224319934845, + -0.0021531193051487207, + -0.019988764077425003, + 0.030904414132237434, + 0.01319090835750103, + -0.00014187642955221236, + -0.017713505774736404, + 0.018746444955468178, + -0.028056854382157326, + 0.03001106157898903, + 0.0011925908038392663, + 0.013874881900846958, + -0.025977017357945442, + -0.002491616178303957, + 0.03403114899992943, + -0.01181598287075758, + -0.03224444389343262, + 0.008807897567749023, + -0.0038037276826798916, + -0.007977358996868134, + -0.004459783434867859, + -0.009247594512999058, + 0.009101029485464096, + 0.01969563215970993, + 0.020212100818753242, + -0.030625242739915848, + 0.0035629412159323692, + 0.01098544429987669, + -0.017755381762981415, + 0.01091565191745758, + -0.0058416882529854774, + -0.006229040212929249, + -0.050725676119327545, + -0.015787214040756226, + 0.007097965106368065, + 0.029229378327727318, + -0.006441909354180098, + -0.00803319364786148, + -0.006619881838560104, + 0.0034373134840279818, + -0.02555825747549534, + 0.0030534511897712946, + 0.01571742072701454, + -0.008214656263589859, + 0.027289127930998802, + 0.04137339070439339, + 0.002671333495527506, + 0.008675291202962399, + -0.008186738938093185, + 0.0004628159513231367, + 0.0101549057289958, + -0.018899990245699883, + -0.001987360417842865, + -0.0024794023483991623, + 0.03336113318800926, + -0.0016785257030278444, + 0.02357613295316696, + 0.04184798523783684, + -0.011411182582378387, + 0.026758700609207153, + -0.02363196574151516, + -0.018355602398514748, + 0.02449740283191204, + -0.0017465740675106645, + -0.010441058315336704, + 0.009589580819010735, + 0.009638436138629913, + -0.004648224916309118, + 0.03372405841946602, + 0.012199846096336842, + 0.019723549485206604, + -0.008835814893245697, + 0.009484891779720783, + 0.009463953785598278, + -0.0021164778154343367, + 0.0012903012102469802, + 0.005133287515491247, + -0.017197037115693092, + 0.008605497889220715, + -0.01694578118622303, + -0.0188301969319582, + 0.02878270298242569, + -0.011697335168719292, + -0.002753340406343341, + 0.03001106157898903, + -0.01864873431622982, + 0.0137771712616086, + -0.011341390199959278, + -0.010126988403499126, + 0.006298833526670933, + 0.008884670212864876, + -0.03213277459144592, + 0.055918287485837936, + 0.010224699042737484, + -0.0017317429883405566, + 0.00866831187158823, + -0.018509147688746452, + -0.022557152435183525, + 0.0285593643784523, + 0.007593496702611446, + 0.008703207597136497, + 0.01181598287075758, + -0.012213804759085178, + -0.00903821550309658, + 0.033305298537015915, + 0.02000272274017334, + -0.010552726686000824, + 0.0067455098032951355, + 0.021328791975975037, + -0.009268532507121563, + -0.02410656027495861, + -0.01000136137008667, + 0.008193718269467354, + 0.0050320872105658054, + 0.023394670337438583, + -0.001236211508512497, + -0.015410331077873707, + -0.03040190413594246, + -0.0021304364781826735, + 0.0054857428185641766, + -0.045002635568380356, + -0.005258915014564991, + 0.02201276458799839, + 0.0026050300803035498, + 0.02424614690244198, + 0.021677758544683456, + -0.006466337013989687, + 0.02353425696492195, + -0.007063068449497223, + -0.019025618210434914, + -0.01616409793496132, + -0.0009169077384285629, + -0.02123108133673668, + -0.01493573747575283, + 0.003494892967864871, + -0.02201276458799839, + -0.002224657218903303, + 0.01011302974075079, + 0.006127840373665094, + -0.0059359087608754635, + -0.00518563250079751, + -0.016080345958471298, + 0.007712144870311022, + 0.006571026984602213, + -0.017266830429434776, + -0.0027603197377175093, + 0.0018844155129045248, + -0.005039066541939974, + -0.021021701395511627, + -0.03305404260754585, + -0.04952523112297058, + -0.026884328573942184, + 0.005750956945121288, + 0.025488464161753654, + -0.0030168097000569105, + -0.021956929937005043, + -0.006571026984602213, + 0.004944846034049988, + 0.0035524722188711166, + 0.004424886777997017, + -0.011774107813835144, + -0.006864157970994711, + 0.0031843131873756647, + -0.011480975896120071, + -0.009764064103364944, + 0.01563366875052452, + -0.0020972846541553736, + 0.016694525256752968, + 0.03280279040336609, + -0.01602451130747795, + -0.008437993936240673, + -0.02900603972375393, + -0.001319963252171874, + 0.014272702857851982, + 0.02494407817721367, + 0.013204867020249367, + -0.005792832933366299, + -0.018132265657186508, + -0.0111599275842309, + -0.009338325820863247, + 0.015591793693602085, + -0.014558854512870312, + -0.014851986430585384, + -0.004135244991630316, + -0.0032122305128723383, + -0.011034299619495869, + -0.024874284863471985, + -0.022654863074421883, + -0.004787811543792486, + -0.020212100818753242, + 0.005649757105857134, + -0.021594006568193436, + -0.0020152777433395386, + 0.007279427256435156, + 0.01707140915095806, + -0.0022927054669708014, + 0.010168864391744137, + 8.369727584067732e-5, + -0.003625754965469241, + 0.012458080425858498, + -0.004923908039927483, + -0.008270489983260632, + 0.012171928770840168, + 0.0031337132677435875, + 0.011774107813835144, + 0.00012791779590770602, + 0.002324112458154559, + 0.0030778786167502403, + -0.011222741566598415, + 0.0012161459308117628, + 0.0175599604845047, + -0.0044353557750582695, + -0.020630860701203346, + -0.007377137895673513, + -0.014119157567620277, + -0.0003036002744920552, + 0.009966464713215828, + -0.021873177960515022, + -0.004044514149427414, + 0.018969783559441566, + -0.0038456034380942583, + 0.0024096090346574783, + 0.021245039999485016, + -0.00511932885274291, + 0.015563876368105412, + 0.005286832340061665, + 0.020156266167759895, + -0.027624135836958885, + 0.02449740283191204, + 0.005265894345939159, + -0.007509744726121426, + -0.006605923175811768, + -0.0022996847983449697, + 0.025446588173508644, + -0.0017596601974219084, + 0.007914545014500618, + -0.00247765751555562, + 0.0139097785577178, + -0.024664904922246933, + 0.014286661520600319, + 0.02638181671500206, + -0.016359519213438034, + 0.019234996289014816, + -0.010762106627225876, + -0.022557152435183525, + 0.009268532507121563, + 0.022682780399918556, + -0.02170567587018013, + 0.015466165728867054, + -0.037576641887426376, + 0.017699547111988068, + 0.011383265256881714, + 0.004951825365424156, + -0.010427099652588367, + -0.01877436228096485, + 0.005688142962753773, + 0.0076493313536047935, + 0.010434078983962536, + -0.017364541068673134, + -0.04006128013134003, + -0.0004085081454832107, + 0.006919992621988058, + -0.012227763421833515, + 0.004948335699737072, + -0.009847816079854965, + 0.015954717993736267, + 0.023911138996481895, + -0.018704568967223167, + 0.029731890186667442, + -0.006211591884493828, + 0.03743705525994301, + 0.020728571340441704, + -0.017490167170763016, + -0.020463356748223305, + 0.019276872277259827, + 0.01991897076368332, + 0.01000136137008667, + 0.008424035273492336, + -0.022040681913495064, + -0.01776934042572975, + -0.019053535535931587, + -0.012346411123871803, + 0.010448037646710873, + -0.027009956538677216, + -0.0059708054177463055, + 0.04162464663386345, + 0.009156863205134869, + 0.012381307780742645, + -0.009296449832618237, + -0.01659681461751461, + -0.0034373134840279818, + -0.024427609518170357, + 0.0178251750767231, + -0.00157209113240242, + 0.011250658892095089, + 0.0038665414322167635, + 0.008598518557846546, + 0.001270235632546246, + 0.00039280467899516225, + -0.007209634408354759, + -0.014851986430585384, + -0.020379604771733284, + 0.009603539481759071, + 0.019681673496961594, + -0.029285212978720665, + -0.005203080829232931, + 0.03785581514239311, + -0.0018599879695102572, + -0.00013773245154879987, + 0.003409396158531308, + -0.025753678753972054, + -0.0031023062765598297, + -0.015103241428732872, + -0.015577835030853748, + -0.007851731032133102, + 0.018104348331689835, + -0.02148233726620674, + -0.028070813044905663, + 0.011578686535358429, + 0.0009596560848876834, + 0.034086983650922775, + 0.0009299939847551286, + -0.0022176778875291348, + 0.00785871036350727, + 0.006993275601416826, + -0.01179504580795765, + 0.007251509930938482, + -0.004658693913370371, + -0.015884924679994583, + -0.0003317356458865106, + 0.00046805042074993253, + -0.007516724057495594, + -0.00487156305462122, + -0.014530937187373638, + 0.00022148425341583788, + 0.003046471858397126, + 0.005147246178239584, + -0.00024471228243783116, + -0.021984847262501717, + 0.014670523814857006, + 9.064932783076074e-6, + 0.011111072264611721, + -0.006525661330670118, + 0.015745338052511215, + 0.000610254006460309, + -0.00656055798754096, + -0.01948625221848488, + 0.011104092933237553, + -0.008458931930363178, + 0.0016680567059665918, + -0.016401395201683044, + -0.012555791065096855, + -0.01977938413619995, + -0.012304535135626793, + 0.008214656263589859, + -0.00015725272533018142, + -0.019723549485206604, + 0.039279595017433167, + 0.00820767693221569, + 0.00016968464478850365, + -0.0063127921894192696, + -0.021873177960515022, + -0.015996593981981277, + 0.0235900916159153, + -0.01057366468012333, + -0.016931822523474693, + 0.026088686659932137, + -0.008026214316487312, + -0.0013792874524369836, + -0.017015574499964714, + 0.023506339639425278, + 0.0017334878211840987, + -0.00029705718043260276, + 0.011655459180474281, + 0.0011611838126555085, + -0.005140266846865416, + 0.0018617328023537993, + 0.005883564241230488, + 0.001150714815594256, + 0.03009481355547905, + 0.012800066731870174, + 0.0048331767320632935, + -0.00418061064556241, + 0.003456506645306945, + 0.003709506941959262, + -0.00021712218585889786, + 0.006696654483675957, + 0.00043293574708513916, + -0.0195700041949749, + 0.03866541385650635, + -0.01353987492620945, + -0.01712724380195141, + 0.0012231252621859312, + -0.006497744005173445, + -0.005796322599053383, + 0.025320962071418762, + 0.01651306264102459, + -0.006497744005173445, + 0.0188301969319582, + -0.00123882875777781, + -0.0068746269680559635, + -0.02629806660115719, + 0.00766329001635313, + -0.004711038898676634, + 0.008968422189354897, + -0.011250658892095089, + -0.004602859262377024, + -0.008989360183477402, + 0.012102135457098484, + 0.005325218662619591, + -0.01048293337225914, + 0.022375689819455147, + -0.014112178236246109, + 0.019639797508716583, + -0.046230994164943695, + -0.005632308777421713, + -0.018718527629971504, + 0.025265127420425415, + -0.023771552368998528, + 0.017671629786491394, + -0.0015171290142461658, + 0.0027795128989964724, + -0.0030011062044650316, + 0.0038351346738636494, + 0.024971995502710342, + 0.017713505774736404, + 0.0034826791379600763, + 0.008382159285247326, + 0.0024619540199637413, + 0.016750359907746315, + -0.014188950881361961, + 0.02100774273276329, + -0.000844061141833663, + 0.002854540478438139, + 0.012834963388741016, + 0.014258744195103645, + -0.010552726686000824, + 0.002840582048520446, + 0.004086390137672424, + 0.027191419154405594, + -0.011355348862707615, + -0.028196439146995544, + -0.005733508616685867, + -0.023604050278663635, + -0.010294492356479168, + 0.0012728528818115592, + -0.004923908039927483, + -0.011543789878487587, + 0.02437177486717701, + 0.003220954677090049, + 0.006326750852167606, + -0.011725252494215965, + -0.013002467341721058, + 0.014670523814857006, + 0.014768234454095364, + -0.018537065014243126, + 0.005028597544878721, + 0.007405055221170187, + -0.007886627689003944, + -0.0018512638052925467, + -0.008340283297002316, + 0.004714528564363718, + 0.009017277508974075, + 0.018020596355199814, + -0.0046691629104316235, + -0.016038469970226288, + 0.020588984712958336, + -0.020561067387461662, + 0.023394670337438583, + 0.007087496109306812, + -0.011599624529480934, + -0.03612494468688965, + -0.03777206316590309, + -0.026270149275660515, + -0.0021967398934066296, + -0.005405480973422527, + -0.006473316345363855, + -0.038414157927036285, + 0.018355602398514748, + -0.007244531065225601, + 0.021342750638723373, + -0.02123108133673668, + 0.02925729565322399, + -0.004299259278923273, + 0.017099326476454735, + -0.005367094650864601, + 0.0016977188643068075, + 0.01000136137008667, + 0.002439271192997694, + 0.03422657027840614, + -0.018467271700501442, + 0.029452716931700706, + 0.006871137302368879, + -0.0032157201785594225, + -0.01528470404446125, + -0.000610254006460309, + 0.009205718524754047, + 0.0059498674236238, + 0.02900603972375393, + -0.019458334892988205, + 0.0030482166912406683, + 0.005063494201749563, + -0.006120861042290926, + -0.01061554066836834, + -0.011983486823737621, + 0.011062216944992542, + 0.003561196383088827, + -0.02629806660115719, + 0.006340709514915943, + 0.0021758018992841244, + 0.01585700735449791, + 0.0006625988753512502, + 0.021845262497663498, + 0.00027066664188168943, + 0.0130373639985919, + 0.007122392766177654, + 0.013435184955596924, + 0.015745338052511215, + 0.02472073957324028, + -0.0026695886626839638, + 0.017322665080428123, + -0.0048157284036278725, + -0.0065291509963572025, + 0.017462249845266342, + 0.004777342546731234, + 0.0001008184117381461, + 0.016010552644729614, + -0.026563279330730438, + -0.004124775994569063, + -0.004376031458377838, + 0.013686439953744411, + 0.01848123036324978, + 0.007425993215292692, + -0.010224699042737484, + -0.021635882556438446, + -0.015354497358202934, + 0.009094050154089928, + 0.01698765717446804, + 0.00785871036350727, + 0.010936588980257511, + 0.024483444169163704, + -0.00436905212700367, + -0.006832750979810953, + -0.003023789031431079, + 0.008828835561871529, + 0.0067978547886013985, + -0.009596560150384903, + 0.010015320032835007, + 0.013156011700630188, + 0.004536556079983711, + -0.02201276458799839, + -0.00046543320058844984, + 0.011020340956747532, + 0.0033343685790896416, + -0.009666353464126587, + -0.02908979170024395, + 0.0029487614519894123, + 0.02340862900018692, + 0.013993530534207821, + -0.022501317784190178, + 0.008354241959750652, + -0.002339815953746438, + -0.01520095206797123, + 0.014147074893116951, + -0.011934631504118443, + 0.014670523814857006, + 0.0021932502277195454, + -0.0006625988753512502, + -0.008054131641983986, + -0.012604646384716034, + 0.01469844114035368, + -0.006026640068739653, + 0.004285300616174936, + -0.013944675214588642, + -0.012709335424005985, + -0.01899770088493824, + -0.01515907607972622, + 0.06365136802196503, + 0.009645415470004082, + 0.010769085958600044, + 0.006305812858045101, + 0.003070899285376072, + -0.023729676380753517, + -0.0005234487471170723, + 0.00418061064556241, + 0.01532658003270626, + 0.0025055748410522938, + -0.02086815796792507, + -0.00958260241895914, + 0.018355602398514748, + -0.004623797256499529, + -0.0356503501534462, + 0.0067629581317305565, + 0.010908672586083412, + -0.0033832238987088203, + 0.01852310635149479, + 0.01360268797725439, + 0.0017483189003542066, + 0.0015162565978243947, + 0.014949696138501167, + 0.000969252607319504, + -0.01261860504746437, + 0.0193047896027565, + -0.01987709477543831, + -0.009945526719093323, + 0.014586771838366985, + 0.026800576597452164, + -0.0013243253342807293, + -0.02441365085542202, + -0.013805088587105274, + -0.015033448114991188, + 0.0002101428690366447, + -0.0005627074278891087, + 0.003967741504311562, + 0.0016820153687149286, + -0.012395266443490982, + -0.0035367687232792377, + -0.003070899285376072, + -0.00447723176330328, + 0.012283597141504288, + 0.015801172703504562, + -0.025614092126488686, + -0.009017277508974075, + -0.00794944167137146, + 0.007495786063373089, + -0.022682780399918556, + -0.004058472812175751, + 0.01571742072701454, + -0.0070560891181230545, + 0.01943041756749153, + 0.024301981553435326, + 0.014516978524625301, + -0.004379521124064922, + 0.015954717993736267, + 0.01969563215970993, + 0.017894968390464783, + -0.004163162317126989, + -0.032607369124889374, + 0.006148777902126312, + 0.0027149543166160583, + 0.001336539164185524, + -0.0213148333132267, + 0.009212697856128216, + -0.0044353557750582695, + -0.014893862418830395, + 0.0044179074466228485, + -0.020337728783488274, + -0.01628972589969635, + -0.0017483189003542066, + 0.005611370783299208, + -0.025781596079468727, + -0.016443271189928055, + 0.026521403342485428, + -0.0056078811176121235, + 0.03241194784641266, + 0.0233248770236969, + -0.003936334513127804, + 0.006490764673799276, + 0.007174737751483917, + -0.02389718033373356, + -0.004990211687982082, + 0.008437993936240673, + -0.0127721494063735, + 0.021998805925250053, + -0.027763722464442253, + 0.008242573589086533, + -0.01400050986558199, + -0.01729474775493145, + -0.005576474126428366, + 0.018132265657186508, + 0.016875987872481346, + -0.0022508297115564346, + -0.0036048172041773796, + 0.0033378582447767258, + 0.002755085239186883, + 0.010978464968502522, + -0.010880755260586739, + 0.0059882537461817265, + 0.008061110973358154, + -0.02148233726620674, + -0.002906885463744402, + -0.013937695883214474, + -0.0025055748410522938, + 0.02804289571940899, + 0.006277895532548428, + -0.004906459711492062, + 0.0017317429883405566, + 0.004494680091738701, + -0.01838351972401142, + 0.009764064103364944, + -0.009701250120997429, + -0.014838027767837048, + 0.004414417780935764, + 0.018062472343444824, + -0.0047982800751924515, + -0.02917354367673397, + -0.012137032113969326, + -0.0032122305128723383, + 0.02677265927195549, + -0.004920418374240398, + -0.029676055535674095, + 0.005559025797992945, + -0.008193718269467354, + -0.014042385853827, + -0.012814025394618511, + -0.006277895532548428, + -0.00024209504772443324, + 0.017001615837216377, + 0.004602859262377024, + 0.02970397286117077, + 0.023213207721710205, + 0.01273027341812849, + 0.002025746740400791, + -0.012018383480608463, + 0.009903650730848312, + -0.008444973267614841, + -0.02402280829846859, + 0.020840240642428398, + -0.0002538726548664272, + 0.005517149809747934, + 0.015368456020951271, + 0.012423183768987656, + 0.004840156063437462, + 0.005534598138183355, + -0.024427609518170357, + 0.010671375319361687, + 0.009114988148212433, + 0.03358447179198265, + -0.019402500241994858, + 0.0009256319026462734, + -0.002737636910751462, + -0.008375179953873158, + 0.01179504580795765, + -0.03542701154947281, + 0.016820153221488, + -0.01987709477543831, + -0.0011289045214653015, + -0.004480721428990364, + -0.006208102218806744, + -0.01340726763010025, + -0.0021932502277195454, + -0.002924333792179823, + 0.015103241428732872, + 0.0024148435331881046, + 0.012744232080876827, + -0.0009326112340204418, + 0.010057195089757442, + 0.017532043159008026, + 0.023548215627670288, + 0.02511158213019371, + -0.027917267754673958, + 0.00877998024225235, + -0.013316536322236061, + 0.02061690203845501, + -0.0030482166912406683, + -0.008396117947995663, + 0.00578585360199213, + -0.016080345958471298, + -0.006316281855106354, + 0.013337474316358566, + -0.00487156305462122, + -0.018313726410269737, + -0.008326324634253979, + -0.0032471271697431803, + -0.010489912703633308, + 0.010448037646710873, + -0.01539637241512537, + -0.006501233670860529, + 0.018048513680696487, + 0.008703207597136497, + -0.012876839376986027, + 0.011592645198106766, + 0.007244531065225601, + 0.029285212978720665, + 0.0027655542362481356, + 0.030038978904485703, + 0.0007402437622658908, + -0.006159246899187565, + 0.004592390265315771, + 0.03227236121892929, + -0.009589580819010735, + -0.015103241428732872, + -0.009701250120997429, + -0.014684482477605343, + -0.01336539164185524, + -0.012339431792497635, + 0.007886627689003944, + -0.028838537633419037, + -0.021203164011240005, + 0.01628972589969635, + 0.010126988403499126, + 0.0006224678363651037, + -0.005817260593175888, + 0.01144607923924923, + 0.02152421325445175, + 0.0008994594682008028, + -0.007928503677248955, + 0.004114307463169098, + 0.008298407308757305, + 0.021510254591703415, + -0.0063476888462901115, + -0.009303429163992405, + -0.006466337013989687, + -0.005914970766752958, + 0.004899480380117893, + 0.018397478386759758, + 0.012157970108091831, + 0.0014787426916882396, + -0.020449398085474968, + -0.011299514211714268, + 0.003964251838624477, + 0.008975401520729065, + 0.0158151313662529, + 0.01166243851184845, + -0.010399182327091694, + 0.01922103762626648, + 0.0011454803170636296, + -0.013470081612467766, + 0.0024671885184943676, + -0.017141202464699745, + -0.007425993215292692, + -0.0013243253342807293, + -0.014007489196956158, + 0.002776023233309388, + 0.0041841003112494946, + -0.005768405273556709, + -2.3936876459629275e-5, + -0.017350582405924797, + 0.00457494193688035, + 0.014572813175618649, + -0.010608561336994171, + 0.003814196679741144, + 0.002470678184181452, + -0.01737849973142147, + 0.017546001821756363, + 0.012800066731870174, + -0.01098544429987669, + 0.019625838845968246, + 0.01838351972401142, + -0.029285212978720665, + 0.008479869924485683, + -0.008396117947995663, + 0.0003099252935498953, + -0.02049127407371998, + -0.001221380429342389, + -0.012241722084581852, + 0.0001750281808199361, + 0.01139722391963005, + -0.005541577469557524, + 0.008521745912730694, + 0.0260747279971838, + 0.0033169202506542206, + 0.010147926397621632, + -0.0004785194178111851, + -0.01965375617146492, + -0.005454336293041706, + 0.026088686659932137, + -0.01721099577844143, + -0.0071607790887355804, + 0.006295343860983849, + -0.006836240645498037, + -0.0017823430243879557, + -0.030736912041902542, + 0.014363434165716171, + 0.02088211663067341, + -0.006532640662044287, + 0.02113337069749832, + -0.008766021579504013, + -7.284661842277274e-5, + -0.003161630593240261, + -0.007544641382992268, + 0.011306493543088436, + 0.010552726686000824, + 0.0016942291986197233, + 0.0040898798033595085, + 0.0375487245619297, + -0.026619113981723785, + -0.018467271700501442, + 0.0009308664011768997, + -0.006637330166995525, + -0.011850879527628422, + -0.010294492356479168, + 0.02254319377243519, + 0.030038978904485703, + 0.01227661781013012, + -0.007677248679101467, + 0.02502783015370369, + 0.0002859338710550219, + 0.004627286922186613, + -0.0054857428185641766, + -0.004309728275984526, + -0.01299548801034689, + -0.0082774693146348, + -0.010036257095634937, + 0.0275543425232172, + -0.005272873677313328, + 0.007656310684978962, + -0.015884924679994583, + 0.00924061518162489, + 0.023380711674690247, + -0.008828835561871529, + 0.018090389668941498, + 0.004613328259438276, + 0.027526425197720528, + 0.008800918236374855, + -0.0019018638413399458, + -0.021426502615213394, + 0.02114732936024666, + 0.008040172979235649, + -0.02349238097667694, + 0.0015598773024976254, + 0.015047406777739525, + 0.013805088587105274, + -0.012688398361206055, + -0.002971444046124816, + 0.0024253125302493572, + -0.016652649268507957, + -0.0021531193051487207, + -0.01864873431622982, + 0.006117371376603842, + 0.012171928770840168, + -0.0013269425835460424, + 0.002158353803679347, + 0.010720230638980865, + -0.016261808574199677, + 0.016806194558739662, + 0.010727209970355034, + -0.01973750814795494, + 0.00771912420168519, + 0.010922631248831749, + 0.019500210881233215, + -0.010503871366381645, + -0.023701759055256844, + -0.01299548801034689, + 0.027875391766428947, + -0.021286915987730026, + -0.008919566869735718, + -0.010168864391744137, + 0.009052174165844917, + -0.003779300022870302, + -0.0038421140052378178, + 0.006263936869800091, + -0.02213839255273342, + 0.0013478805776685476, + 0.0248044915497303, + -0.022389648482203484, + 0.003678099950775504, + -0.0016959740314632654, + -0.0193047896027565, + -0.004697080235928297, + 0.0024113538675010204, + -0.004065452143549919, + 0.008793938905000687, + -0.014516978524625301, + -0.005887053906917572, + -0.027875391766428947, + -0.001287683960981667, + 0.027149543166160583, + 0.002201974391937256, + 0.002507319673895836, + -0.007188696414232254, + -0.014363434165716171, + 0.026535362005233765, + 0.023087579756975174, + 0.008089028298854828, + 0.0008776491158641875, + 0.004163162317126989, + -0.0009273767354898155, + -0.000617669546045363, + 0.004965784028172493, + 0.027805598452687263, + -0.021203164011240005, + 0.028978124260902405, + -0.02065877802670002, + 0.0009753595222719014, + -0.016052428632974625, + 0.005237977486103773, + 0.004958804696798325, + -0.003796748351305723, + 0.022375689819455147, + -0.006829261314123869, + -0.00024187694361899048, + -0.004267852287739515, + -0.008800918236374855, + -0.00995948538184166, + 0.02252923510968685, + -0.003259340999647975, + -0.009052174165844917, + 0.013574771583080292, + -0.007398075889796019, + -0.00040109260589815676, + 0.002875478472560644, + -0.022989869117736816, + 0.004449314437806606, + 0.030736912041902542, + 0.0010468974942341447, + -0.010587623342871666, + 0.012199846096336842, + -0.007691206876188517, + -0.014796151779592037, + -0.0030831131152808666, + 0.013162991032004356, + -0.025697844102978706, + 0.015745338052511215, + 0.00220546405762434, + -0.013958633877336979, + 0.008542683906853199, + 0.00679087545722723, + 0.018467271700501442, + 0.005021618213504553, + -0.0055206394754350185, + -0.03165818005800247, + -0.002737636910751462, + 0.015368456020951271, + -0.016485147178173065, + -0.0130373639985919, + -0.0003081804607063532, + -0.02283632382750511, + -0.01224870141595602, + -0.011111072264611721, + 0.002025746740400791, + -0.005656736437231302, + -0.011257638223469257, + 0.020100431516766548, + 0.025586174800992012, + 0.002388671273365617, + -0.0069548892788589, + -0.00974312610924244, + 0.005688142962753773, + -0.01360268797725439, + 0.020630860701203346, + -0.01982126012444496, + -0.011913693509995937, + -0.006623371504247189, + -0.017741423100233078, + 0.02523721009492874, + -0.043215930461883545, + 0.0023624987807124853, + 0.011313472874462605, + 0.0069269719533622265, + -0.011781087145209312, + 0.0029836578760296106, + -0.001971656922250986, + 0.010064174421131611, + -0.009275511838495731, + -0.018355602398514748, + 0.008305386640131474, + -0.014963654801249504, + 0.03146275877952576, + -0.0016445014625787735, + -0.006396543700248003, + 0.011418161913752556, + 0.029033957049250603, + -0.0076842280104756355, + 0.005171673838049173, + 0.0005269384128041565, + -0.007802876178175211, + -0.009512809105217457, + 0.00845195259898901, + 0.009094050154089928, + 0.007712144870311022, + 0.014921779744327068, + -0.005091411527246237, + -0.001804153434932232, + 0.011627541854977608, + 0.00924061518162489, + 0.02699599787592888, + 0.0295643862336874, + 0.006864157970994711, + 0.010538768023252487, + -0.01969563215970993, + 0.014879903756082058, + -0.0004085081454832107, + 0.024134477600455284, + 0.02494407817721367, + 0.0009771042969077826, + 0.01712724380195141, + 0.02271069772541523, + 0.005419439636170864, + -0.015173034742474556, + -0.01729474775493145, + 0.01961188018321991, + 0.0011960804695263505, + 0.0024794023483991623, + 0.01934666559100151, + 0.018802279606461525, + 0.007844751700758934, + 0.0019210570026189089, + -0.007572558708488941, + -0.008542683906853199, + 0.008905608206987381, + 0.0004444952355697751, + 0.036794956773519516, + 0.0016654394567012787, + 0.006965358275920153, + 0.023869263008236885, + 0.020854199305176735, + 0.004177120979875326, + -0.01637347787618637, + -0.0004231210914440453, + -0.010224699042737484, + 0.00965239480137825, + 0.0020484295673668385, + 0.0010503871599212289, + -0.013379350304603577, + -0.01934666559100151, + -0.011320452205836773, + -0.011222741566598415, + 0.03592952340841293, + 0.019234996289014816, + 0.0022264020517468452, + 0.010734189301729202, + 0.018467271700501442, + 0.02660515531897545, + 0.0007799386512488127, + 0.028419777750968933, + -0.0129047567024827, + 0.036097027361392975, + 0.0004693590453825891, + 0.018788320943713188, + 0.005304280668497086, + 0.0007624903810210526, + -0.01543824840337038, + 0.011878796853125095, + 0.02800101973116398, + -0.015829090029001236, + 0.016610773280262947, + -0.03070899471640587, + 0.0032506168354302645, + 0.022208185866475105, + 0.019932929426431656, + 0.02065877802670002, + -0.005901012569665909, + 0.01327466033399105, + -0.0035472377203404903, + -0.015047406777739525, + 0.013979571871459484, + 0.0037444033659994602, + 0.0015467910561710596, + -0.0022159330546855927, + -0.009254573844373226, + -0.015103241428732872, + 0.014726358465850353, + -0.0050774528644979, + -0.014293640851974487, + 0.014614689163863659, + 0.009491871111094952, + 0.00454353541135788, + -0.00803319364786148, + -0.003967741504311562, + 0.02100774273276329, + -0.01926291361451149, + 0.007439951878041029, + -0.03375197574496269, + 0.0091498838737607, + 0.006818792317062616, + -0.013463102281093597, + 0.006211591884493828, + -0.017839133739471436, + 0.011048258282244205, + 0.007802876178175211, + 0.004351603798568249, + 0.01563366875052452, + -0.00454353541135788, + -0.0016785257030278444, + 0.02363196574151516, + -0.013916757889091969, + 0.0182997677475214, + -0.005600901786237955, + -0.01469844114035368, + -0.010099071078002453, + 0.024176353588700294, + 0.013421226292848587, + 0.0011995700187981129, + -0.0003947676159441471, + -0.020993784070014954, + -0.02135670930147171, + -0.025530340149998665, + -0.011264617554843426, + 0.0005374074098654091, + -0.001788449939340353, + 0.008347262628376484, + 0.002622478175908327, + -0.002657374832779169, + 0.006145288236439228, + 0.0018931396771222353, + -0.0005330453277565539, + 0.014049364253878593, + -0.021105453372001648, + -0.01743433251976967, + -0.016931822523474693, + 0.018858114257454872, + 0.004906459711492062, + 0.00018375233048573136, + -0.0028981612995266914, + 0.03232819586992264, + 0.021733593195676804, + -0.0039014380890876055, + 0.008263510651886463, + -0.0010181078687310219, + -0.0011001147795468569, + -0.004983232356607914, + -0.007886627689003944, + 0.005122818518429995, + 0.0025457057636231184, + 0.02049127407371998, + -0.01620597392320633, + 0.007558600045740604, + 0.002655629999935627, + -0.01624784991145134, + -0.046454332768917084, + -0.0021740570664405823, + -0.006906033959239721, + -0.02018418349325657, + -0.005946377757936716, + -0.010336368344724178, + -0.014949696138501167, + -0.017364541068673134, + -0.0022944502998143435, + -0.011425141245126724, + 0.023478422313928604, + 0.007153799757361412, + -0.020798364654183388, + -0.017001615837216377, + -0.007314323913305998, + -0.00836122129112482, + -0.001702953246422112, + -0.007998296990990639, + 0.016010552644729614, + -0.028615199029445648, + 0.011055237613618374, + -0.004079410806298256, + -0.008598518557846546, + 0.008661332540214062, + -0.029117709025740623, + 0.029955226927995682, + -0.0013435184955596924, + -0.01772746443748474, + -0.02759621851146221, + -0.0010940078645944595, + -0.0014639117289334536, + 0.0147821931168437, + -0.004899480380117893, + 0.0024113538675010204, + 0.010036257095634937, + -0.02192901261150837, + -0.011885776184499264, + -0.010406161658465862, + 0.014991572126746178, + -0.01211609411984682, + 0.007823813706636429, + 0.011425141245126724, + 0.0077958968468010426, + 0.0043830107897520065, + -0.018788320943713188, + 0.04070337489247322, + -0.00991063006222248, + -0.010755127295851707, + -0.0043830107897520065, + 0.015926800668239594, + 0.02293403446674347, + -1.1804860150732566e-5, + 0.005670695099979639, + 0.0018669671844691038, + -0.009931568056344986, + -0.004215507302433252, + 0.015996593981981277, + -0.020114390179514885, + -0.0013426460791379213, + -0.004623797256499529, + 0.0058591365814208984, + 0.009422077797353268, + -0.0022647883743047714, + -0.019793342798948288, + -9.111280087381601e-5, + -0.001420291024260223, + -0.026884328573942184, + -0.015354497358202934, + 0.003939824178814888, + 0.00016793981194496155, + 0.0008170162909664214, + -0.029285212978720665, + -0.010133967734873295, + 0.006490764673799276, + 0.0008383904350921512, + 0.012827984057366848, + -0.0076842280104756355, + 0.004013107158243656, + -0.03126733750104904, + -0.001771001610904932, + 0.0024794023483991623, + 0.003657161956652999, + -0.043606773018836975, + -0.032160691916942596, + -0.0013330494984984398, + -0.020198142156004906, + 0.006794365122914314, + -0.003730444936081767, + 0.002160098636522889, + -0.0058067915961146355, + 0.016485147178173065, + -0.01162056252360344, + -0.014223847538232803, + 0.005635798443108797, + -0.0001890958665171638, + -0.005454336293041706, + 0.0011332666035741568, + 0.04589598625898361, + 0.00328027899377048, + -0.004700569901615381, + 0.013051322661340237, + -0.011125030927360058, + -0.010999402962625027, + 0.0011219251900911331, + -0.0005744849913753569, + -0.0012423184234648943, + 0.015228869393467903, + -0.016792235895991325, + -0.014475103467702866, + 0.01532658003270626, + 0.006553578656166792, + 0.0195700041949749, + 0.004285300616174936, + -0.022431524470448494, + 0.02065877802670002, + 0.009687291458249092, + 0.02437177486717701, + -0.0025997955817729235, + -0.007286406587809324, + 0.022431524470448494, + -0.013016426004469395, + 0.00790756568312645, + -0.012060259468853474, + -0.002376457443460822, + -0.02685641124844551, + 0.0031145201064646244, + -0.014447186142206192, + -0.009973444044589996, + 0.008598518557846546, + -0.00237471261061728, + 0.0025038300082087517, + -0.005566005129367113, + 0.002043195068836212, + 0.003775810357183218, + -0.025083664804697037, + 0.001420291024260223, + 0.0046691629104316235, + -0.010043236427009106, + 0.004096859134733677, + -0.012046300806105137, + -0.029983144253492355, + 0.00551366014406085, + -0.029676055535674095, + -0.03696246072649956, + -0.008710186928510666, + 0.012485997751355171, + -0.00978500209748745, + 0.003967741504311562, + -0.025963058695197105, + -0.0018599879695102572, + -0.0007882266072556376, + -0.02053315006196499, + 0.016708483919501305, + 0.01598263531923294, + 0.016708483919501305, + 0.004808749072253704, + 0.025446588173508644, + 0.013658522628247738, + -0.00562183978036046, + -0.020854199305176735, + 0.02821039780974388, + 0.0073073445819318295, + -0.019946888089179993, + -0.014796151779592037, + -0.014838027767837048, + -0.014321558177471161, + -0.0017273809062317014, + -0.004044514149427414, + 0.008389138616621494, + 0.00877998024225235, + -0.013707377947866917, + -0.02135670930147171, + 0.0007620541728101671, + -0.003590858541429043, + 0.006211591884493828, + 0.012737252749502659, + 0.013923737220466137, + 0.004644735250622034, + 0.009945526719093323, + -0.005876584909856319, + 0.00812392495572567, + 0.006459357682615519, + 0.007607455365359783, + -0.015186993405222893, + -0.015186993405222893, + 0.002057153731584549, + -0.005381053313612938, + -0.01493573747575283, + 0.020016681402921677, + 0.012960591353476048, + -0.022612987086176872, + -0.030290234833955765, + -0.0011446079006418586, + -0.007398075889796019, + 0.005639288108795881, + -0.00200829841196537, + -0.03855374455451965, + -0.01702953316271305, + 0.0029156096279621124, + -0.012506935745477676, + 0.0101549057289958, + 0.01019678171724081, + -0.009764064103364944, + 0.009477912448346615, + -0.0042364452965557575, + 0.039195843040943146, + -0.007286406587809324, + 0.005866115912795067, + -0.010936588980257511, + 0.009736146777868271, + 0.008054131641983986, + 0.002791726728901267, + 0.0036222655326128006, + 0.02629806660115719, + -0.010140947066247463, + 0.005914970766752958, + 0.002554429927840829, + -0.003458251478150487, + -0.003726955270394683, + 0.0012990253744646907, + 0.005803301930427551, + 0.004564473405480385, + -0.001188228721730411, + -0.012430163100361824, + -0.009205718524754047, + 0.01916520483791828, + -0.013162991032004356, + 0.012437142431735992, + 0.012255680747330189, + -0.020240018144249916, + -0.007607455365359783, + 0.009443015791475773, + -0.022333813831210136, + -0.01515907607972622, + -0.013477060943841934, + 0.004644735250622034, + -0.01336539164185524, + -0.00590799143537879, + -0.0009003318846225739, + 0.010168864391744137, + -0.002852795645594597, + -0.009010298177599907, + 0.016931822523474693, + -0.003461741143837571, + 0.008465911261737347, + -0.005663715768605471, + -0.0033640307374298573, + 0.008200697600841522, + 0.00014144022134132683, + -0.004086390137672424, + -0.000551366014406085, + -0.0002643416228238493, + 0.008193718269467354, + 0.01934666559100151, + 0.016429312527179718, + -0.029927309602499008, + 0.02851748839020729, + 0.009470933116972446, + -0.006236019544303417, + -0.007101454772055149, + 0.0010913906153291464, + -0.027358921244740486, + 0.004875052720308304, + 0.012890798039734364, + 0.004079410806298256, + -0.009380201809108257, + 0.013477060943841934, + -0.002071112161502242, + -0.014642606489360332, + 0.004131755325943232, + 0.015033448114991188, + -0.007767979521304369, + 0.002772533567622304, + -0.03389156237244606, + 0.0027987060602754354, + -0.015759296715259552, + 0.006951399613171816, + -0.03581785410642624, + -0.019667714834213257, + 0.01725287176668644, + -0.003491403302177787, + 0.013351432979106903, + 0.003890969092026353, + -0.02777768112719059, + 0.004320197273045778, + 0.008305386640131474, + -0.01353987492620945, + -0.0029592302162200212, + -0.005189122166484594, + 0.011885776184499264, + 0.035092003643512726, + 0.01912332884967327, + 0.008849773555994034, + -0.011941610835492611, + -0.008054131641983986, + 0.015759296715259552, + -0.003712996607646346, + 0.010608561336994171, + -0.002594561083242297, + 0.012185887433588505, + -0.018788320943713188, + -0.009798960760235786, + -0.004086390137672424, + -0.0037653413601219654, + 0.009617498144507408, + 0.006605923175811768, + 0.019667714834213257, + 0.017155161127448082, + 0.0029295682907104492, + 0.009624477475881577, + -0.02197088859975338, + 0.004864583723247051, + -0.007188696414232254, + -0.01282100472599268, + -0.007761000189930201, + -0.010399182327091694, + -0.026018893346190453, + 0.004585410933941603, + 0.010957526974380016, + -0.020212100818753242, + 0.016150139272212982, + 0.007691206876188517, + 0.011774107813835144, + -0.01751808449625969, + 0.005733508616685867, + -0.015424289740622044, + -0.008326324634253979, + 0.004585410933941603, + 0.007251509930938482, + 0.0178251750767231, + -0.016848070546984673, + 0.006550088990479708, + -0.005653246771544218, + -0.012883818708360195, + -0.03157442808151245, + -0.009631456807255745, + 0.007122392766177654, + 0.021915053948760033, + 0.024916160851716995, + -0.016080345958471298, + 0.011355348862707615, + 0.01690390519797802, + 0.01594075933098793, + -0.046147242188453674, + 0.0012894287938252091, + -0.0018809258472174406, + 0.006975827272981405, + -0.014851986430585384, + 0.002826623385772109, + 0.005712570622563362, + -0.01628972589969635, + 0.00012595485895872116, + -0.006571026984602213, + -0.016303684562444687, + 0.005025107879191637, + 0.010455016978085041, + 0.0007781938184052706, + -0.012883818708360195, + -0.018802279606461525, + -0.014949696138501167, + -0.008298407308757305, + -0.016820153221488, + -0.017699547111988068, + 0.011767128482460976, + 0.0024165883660316467, + -0.013756233267486095, + -0.010992423631250858, + 0.0004998935619369149, + 0.0139097785577178, + 0.0018442844739183784, + 0.008116945624351501, + 0.014949696138501167, + -0.002728912979364395, + 0.02730308659374714, + 0.008340283297002316, + -0.03838624060153961, + 0.0014281426556408405, + 0.0072724479250609875, + 0.000968380190897733, + -0.000903821550309658, + 0.01848123036324978, + -0.038721248507499695, + 0.003475699806585908, + 0.012185887433588505, + 0.010517830029129982, + -0.008054131641983986, + -0.019988764077425003, + -0.0071607790887355804, + 0.018927907571196556, + 0.008137883618474007, + -0.010399182327091694, + -0.01224870141595602, + 0.019025618210434914, + -0.017448291182518005, + -0.023562174290418625, + -0.026716824620962143, + 0.006229040212929249, + 1.4572050531569403e-5, + 0.009443015791475773, + 0.0068048336543142796, + -0.029815642163157463, + -0.0007166885770857334, + 0.005039066541939974, + 0.03174193203449249, + 0.006947909947484732, + 0.0041841003112494946, + -0.010008340701460838, + 0.003758362028747797, + -0.013567792251706123, + 0.0028440714813768864, + 0.002969699213281274, + -0.009840836748480797, + -0.004048003815114498, + 0.007530682720243931, + -0.0198352187871933, + 0.02000272274017334, + 0.0020135329104959965, + -0.012485997751355171, + 0.017573919147253036, + -0.0039049277547746897, + -0.019193120300769806, + 0.009436036460101604, + 0.012283597141504288, + 0.004526087082922459, + 0.0019105880055576563, + -0.0026626093313097954, + 0.010636478662490845, + 0.01647118851542473, + 0.007279427256435156, + -0.00011286864173598588, + -0.021119412034749985, + 0.007024682126939297, + 0.0023520297836512327, + 0.007495786063373089, + 0.015954717993736267, + -0.01358175091445446, + -0.0011332666035741568, + 0.003657161956652999, + 0.01094356831163168, + 0.003426844486966729, + -0.0016296704998239875, + -0.0032157201785594225, + 0.0022264020517468452, + 0.004885521717369556, + -0.002423567697405815, + -0.007998296990990639, + -0.012485997751355171, + 0.011173886246979237, + -0.009198739193379879, + -0.003344837576150894, + -0.001936760381795466, + 0.00982687808573246, + -0.012150990776717663, + 0.008047152310609818, + -0.0054613156244158745, + -0.005492722149938345, + -0.01807643100619316, + 0.014851986430585384, + 0.0069618686102330685, + -0.0033343685790896416, + 0.005897522903978825, + 0.0027009956538677216, + 0.010608561336994171, + 0.013742274604737759, + 0.0066582681611180305, + 0.003953782841563225, + -0.008842794224619865, + -0.01589888334274292, + 0.005803301930427551, + -0.005593922454863787, + -0.01266746036708355, + 0.01817414164543152, + -0.009617498144507408, + 0.0009212698205374181, + -0.007761000189930201, + -0.012765170074999332, + -0.027959143742918968, + -0.02123108133673668, + 0.007872669026255608, + -0.017462249845266342, + 0.003625754965469241, + -0.000953549169935286, + 0.007063068449497223, + -0.02144046127796173, + -0.015745338052511215, + 0.018397478386759758, + 0.028587281703948975, + -0.009066132828593254, + -0.004205038305372, + -0.008849773555994034, + -0.028405819088220596, + 0.015312621369957924, + -0.011718273162841797, + -0.004623797256499529, + 0.0001789540401659906, + -0.008256531320512295, + 0.016387436538934708, + -0.00691301329061389, + 0.011041278950870037, + 0.014181971549987793, + 0.002060643397271633, + -0.012569749727845192, + 0.003950293175876141, + -0.0005094901425763965, + -0.011062216944992542, + 0.008026214316487312, + -0.007558600045740604, + 0.00408290047198534, + -0.023436546325683594, + -0.00803319364786148, + 0.027833515778183937, + -0.00023947781301103532, + -0.020281894132494926, + 0.002889437135308981, + 0.025013871490955353, + 0.026214314624667168, + 0.016345560550689697, + -0.020337728783488274, + -0.01231849379837513, + 0.0070211929269135, + -0.01987709477543831, + 0.011641500517725945, + 0.015759296715259552, + 0.0043655624613165855, + 0.012109114788472652, + 0.006899054627865553, + 0.006508213002234697, + -0.008633415214717388, + -0.010294492356479168, + -0.024469485506415367, + -0.0006678333738818765, + -0.0019297810504212976, + 0.01825789362192154, + -0.026256190612912178, + -0.005070473533123732, + -0.0022264020517468452, + -0.01000136137008667, + 0.0009265043190680444, + -0.04179215058684349, + 0.003831645008176565, + 0.022571111097931862, + 0.020463356748223305, + 0.021817345172166824, + 0.00786568969488144, + -0.006881606299430132, + 0.009429057128727436, + 0.00024144073540810496, + -0.007195675745606422, + 0.018662692978978157, + -0.020840240642428398, + -0.023310918360948563, + 0.009966464713215828, + -0.005576474126428366, + -0.004498169757425785, + -0.026395775377750397, + 0.010887734591960907, + 0.018327685073018074, + 0.015870966017246246, + -0.0048331767320632935, + -0.004941356368362904, + -0.011041278950870037, + -0.014098219573497772, + 0.0034687204752117395, + 0.008542683906853199, + -0.0071258824318647385, + -0.0025614092592149973, + -0.004529576748609543, + -0.003494892967864871, + -0.018941866233944893, + 0.027540383860468864, + -0.007823813706636429, + -0.01563366875052452, + -0.004857604391872883, + 0.005203080829232931, + 0.023520298302173615, + 0.021594006568193436, + 0.013721336610615253, + -0.0016244360012933612, + 0.01548012439161539, + -0.014600730501115322, + 0.019011659547686577, + -0.013358412310481071, + 0.014544895850121975, + 0.0046691629104316235, + 0.011690355837345123, + 0.0023520297836512327, + 0.005820750258862972, + 0.009980423375964165, + -0.0017430844018235803, + -0.008905608206987381, + -0.02488824352622032, + -0.010301471687853336, + -0.020840240642428398, + 0.014489062130451202, + -0.011390244588255882, + 0.03645995259284973, + 0.014126136898994446, + 0.006263936869800091, + -0.0026189887430518866, + -0.006009191740304232, + 0.0037234656047075987, + 0.0004237754037603736, + -0.0006089453818276525, + -0.0047982800751924515, + 0.02174755185842514, + -0.0008283576462417841, + -0.008710186928510666, + -0.01469844114035368, + -0.009010298177599907, + 0.004808749072253704, + 0.01148795522749424, + -0.015047406777739525, + -0.030150648206472397, + -0.0009125456563197076, + -0.023618008941411972, + -0.014851986430585384, + -0.03422657027840614, + 0.021342750638723373, + -0.011215762235224247, + -0.004009617492556572, + -0.013881861232221127, + 0.005370584316551685, + -0.007712144870311022, + -0.0035315342247486115, + 0.009003318846225739, + 0.02939688228070736, + -0.012737252749502659, + 0.010273554362356663, + -0.029229378327727318, + 0.01786705106496811, + 0.02629806660115719, + -0.016317643225193024, + -0.0068746269680559635, + 0.021733593195676804, + -0.011578686535358429, + 0.013532895594835281, + 0.030373986810445786, + -0.011648479849100113, + 0.004756404552608728, + 0.0069548892788589, + -0.013016426004469395, + 0.005028597544878721, + -0.027400797232985497, + -0.0038421140052378178, + -0.011439099907875061, + -0.01465656515210867, + 0.00674899946898222, + 0.008514766581356525, + 0.00638607470318675, + -0.018941866233944893, + -0.011829941533505917, + 0.02463698759675026, + 0.027135584503412247, + 0.05131193622946739, + 0.02830810844898224, + 0.02236173115670681, + 0.010427099652588367, + 0.03620869666337967, + -0.02345050498843193, + 0.016038469970226288, + -0.0016479911282658577, + -0.024581152945756912, + -0.017964761704206467, + -0.008647373877465725, + -0.0022961951326578856, + 0.026674948632717133, + 0.01178806647658348, + -0.01811830699443817, + -0.01046199630945921, + -0.014391351491212845, + -0.012346411123871803, + 0.007258489262312651, + -0.004421397112309933, + -0.0067978547886013985, + 0.011906714178621769, + -0.013923737220466137, + 0.013065281324088573, + 0.008305386640131474, + 0.008249551989138126, + -0.009952506050467491, + -0.017881009727716446, + -0.01585700735449791, + -0.003911906853318214, + 0.030373986810445786, + -0.013267681002616882, + -0.015870966017246246, + -0.010203761048614979, + 0.005258915014564991, + 0.011013361625373363, + 0.016080345958471298, + 0.00528334267437458, + 0.003086602780967951, + -0.024176353588700294, + -0.012869860045611858, + -0.024204270914196968, + 0.012185887433588505, + -0.0258095134049654, + -0.0044004591181874275, + -0.02070065401494503, + 0.006253467872738838, + -0.02057502605021, + 0.015787214040756226, + -0.008793938905000687, + -0.0057369982823729515, + -0.007356199901551008, + -0.028294149786233902, + -0.008005276322364807, + -0.002653885167092085, + 0.0033657755702733994, + 0.024734698235988617, + -0.011264617554843426, + -0.02502783015370369, + -0.010231678374111652, + -0.010106050409376621, + 0.019932929426431656, + 0.013812067918479443, + 0.0034024168271571398, + -0.02144046127796173, + 0.02726121060550213, + 0.0031651202589273453, + -0.004909949377179146, + -0.007474848069250584, + -0.024036766961216927, + 0.01181598287075758, + -0.005073963198810816, + -0.019946888089179993, + -0.011264617554843426, + -0.00974312610924244, + -0.005489232484251261, + -0.026437651365995407, + 0.008598518557846546, + -0.018467271700501442, + 0.01803455501794815, + -0.0016663118731230497, + -0.001306004705838859, + -0.004376031458377838, + -0.006190653890371323, + -0.016150139272212982, + 0.005018128547817469, + -0.010845858603715897, + -0.005566005129367113, + -0.015103241428732872, + 0.004885521717369556, + -0.016443271189928055, + -0.02213839255273342, + -0.015787214040756226, + 0.005984764080494642, + 0.00613830890506506, + -0.025139499455690384, + -0.007998296990990639, + -0.011411182582378387, + -0.002022257074713707, + -0.0002322803920833394, + -0.006218571215867996, + 0.013065281324088573, + 0.0015319600934162736, + 0.027023915201425552, + 0.007677248679101467, + -0.025041788816452026, + 0.007181717082858086, + 0.012883818708360195, + 0.007300365250557661, + 0.024218229576945305, + -0.026144521310925484, + -0.006089454051107168, + 0.01602451130747795, + 0.013344453647732735, + -0.02310153841972351, + 0.019374582916498184, + 0.003856072435155511, + 0.0008894266793504357, + -0.02437177486717701, + 0.013546854257583618, + -0.008012255653738976, + 0.00528334267437458, + 0.021649841219186783, + -0.0008148352499119937, + 0.004355093464255333, + -0.004491190426051617, + 0.007642352022230625, + 0.01926291361451149, + -0.005967315752059221, + -0.0036013275384902954, + 0.01834164373576641, + -0.0044528041034936905, + -0.00936624314635992, + 0.02152421325445175, + -0.011236700229346752, + -0.009045194834470749, + 0.020672736689448357, + -0.017308706417679787, + 0.007453910540789366, + 0.0009151629055850208, + -0.011934631504118443, + 0.01000136137008667, + 0.02014230750501156, + -0.003203506348654628, + -0.012199846096336842, + -0.007509744726121426, + -0.014461144804954529, + 0.019207078963518143, + -0.001101859612390399, + 0.0016855050344020128, + 0.003210485680028796, + -0.013714357279241085, + -0.003985189832746983, + 0.002823133720085025, + -0.00479130120947957, + 0.020910033956170082, + 0.010064174421131611, + 0.017894968390464783, + -0.013337474316358566, + 0.0030988166108727455, + -0.009024256840348244, + 0.018369561061263084, + 0.009345305152237415, + 0.029508551582694054, + 0.004212017636746168, + 0.0036187758669257164, + 0.000635117816273123, + 0.014091240242123604, + -0.011194824241101742, + -0.011557748541235924, + 0.005880074575543404, + -0.007851731032133102, + -0.003915396519005299, + -0.024525318294763565, + -0.0014421013183891773, + 0.0018355603097006679, + -0.016108263283967972, + -0.019248954951763153, + -0.022068599238991737, + -0.006696654483675957, + 0.015354497358202934, + 0.029424799606204033, + 0.02560013346374035, + 0.0038211760111153126, + 0.0067455098032951355, + -0.006584985181689262, + -0.006864157970994711, + 0.0033710100688040257, + 0.002570133423432708, + 0.003950293175876141, + 0.008919566869735718, + 0.013463102281093597, + -0.009945526719093323, + 0.013609667308628559, + -0.011285555548965931, + -0.0010573664912953973, + 0.01323278434574604, + 0.0129047567024827, + 0.0005518022226169705, + 0.00039564003236591816, + 0.005454336293041706, + -0.03573410212993622, + 0.0033500720746815205, + -0.037185799330472946 + ], + "98088bbe-3045-4978-8093-b2ce06830843": [ + -0.018966926261782646, + 0.0005778985214419663, + -0.014532011933624744, + 0.0029025671537965536, + -0.042982399463653564, + -0.007684394251555204, + 0.014364656992256641, + 0.047082602977752686, + 0.014769098721444607, + 0.04507433995604515, + 0.0037968717515468597, + 0.007154435850679874, + -0.01376496721059084, + 0.007001026999205351, + -0.016596060246229172, + 0.01234942115843296, + -0.045325372368097305, + 0.023499462753534317, + -0.03411257266998291, + -0.0025556536857038736, + 0.06604953110218048, + -0.02285793423652649, + -0.008848907425999641, + 0.012175092473626137, + -0.03796174377202988, + -0.022230353206396103, + 0.02337394654750824, + -0.008737337775528431, + -0.026762889698147774, + -0.02243954688310623, + 0.00615727761760354, + 0.02681867592036724, + 0.03461464121937752, + -0.009560167789459229, + 0.007900561206042767, + -0.01322803646326065, + 0.0015794149367138743, + 0.05812804773449898, + -0.013681289739906788, + 0.02082177996635437, + -0.04632950574159622, + 0.023708656430244446, + 0.023792333900928497, + 0.006913862656801939, + -0.023624978959560394, + 0.009762388654053211, + 0.04607847332954407, + -0.013179223984479904, + 0.002241862704977393, + 0.0015881314175203443, + 0.008305002935230732, + 0.03249480575323105, + -0.01891114003956318, + -0.004365182016044855, + 0.006115438882261515, + 0.008458412252366543, + 0.0009004059829749167, + 0.09528090804815292, + 0.02681867592036724, + -0.037654925137758255, + -0.015884799882769585, + -0.013562746345996857, + 0.013269875198602676, + -0.008528143167495728, + 0.013388418592512608, + -0.02973344549536705, + 0.010236561298370361, + -0.013067654334008694, + -0.023025289177894592, + 0.017335211858153343, + -0.015187487006187439, + 0.011331343092024326, + -0.025591403245925903, + 0.018883248791098595, + -0.022885827347636223, + -0.0004837611922994256, + 0.031518567353487015, + -0.06192143261432648, + 1.3374254194786772e-5, + 0.02183985710144043, + -0.00754493148997426, + 0.006118925288319588, + 0.017516514286398888, + 0.01186827477067709, + 0.016275295987725258, + 0.0230113435536623, + -0.02732074074447155, + -0.05492040887475014, + -0.0763697698712349, + -0.018130149692296982, + 0.012516776099801064, + 0.004316370468586683, + -0.007872669026255608, + -0.010417862795293331, + -0.007056812290102243, + -0.0019298149272799492, + 0.04814251884818077, + 0.015564036555588245, + -0.042117733508348465, + -0.03829645365476608, + -0.025619296357035637, + 0.033136334270238876, + -0.03865905851125717, + -0.0037271403707563877, + 0.013479068875312805, + -0.014218221418559551, + 0.0015706985723227262, + 0.00020102239795960486, + -0.03455885499715805, + 0.01446228101849556, + 0.027934376150369644, + -0.028729313984513283, + -0.0205986388027668, + 0.006317659746855497, + 0.015396680682897568, + -0.06967555731534958, + 0.003915415145456791, + -0.03997000679373741, + -0.00012802239507436752, + -0.03595348075032234, + 0.051015451550483704, + 0.04727785289287567, + 0.026944192126393318, + -0.01958056166768074, + 0.009525301866233349, + -0.0003026776248589158, + 0.0053727999329566956, + 0.0014077015221118927, + 0.004633647855371237, + 0.009783308021724224, + 0.022816095501184464, + -0.02906402386724949, + -0.023485517129302025, + 0.0031483701895922422, + -0.00997158233076334, + 0.030737577006220818, + 0.022523224353790283, + 0.022760311141610146, + -0.045464836061000824, + 0.048756156116724014, + -0.011714865453541279, + -0.023722603917121887, + -0.007510066032409668, + -0.022062998265028, + 0.0016046925447881222, + 0.004755677655339241, + -0.03506091982126236, + 0.044739630073308945, + 0.007168382406234741, + 0.030570222064852715, + -0.038017529994249344, + -0.015550090000033379, + 0.04172723740339279, + 0.0018287044949829578, + 0.006080573424696922, + 0.015410627238452435, + 0.011917087249457836, + 0.02864563651382923, + 0.0033418748062103987, + 0.0032512240577489138, + -0.02308107540011406, + -0.03642765432596207, + 0.031825385987758636, + 0.006809265818446875, + 0.0079284543171525, + 0.01833934336900711, + 0.04616215080022812, + -0.002888621063902974, + -0.06381812691688538, + 0.020054735243320465, + 0.05784912407398224, + -0.04457227513194084, + 0.01907849684357643, + -0.01446228101849556, + 0.0065268538892269135, + -0.02073810249567032, + 0.0016046925447881222, + -0.0034743642900139093, + 0.019929219037294388, + -0.06839250028133392, + -0.004515104461461306, + -0.038686949759721756, + -0.036846041679382324, + 0.022885827347636223, + -0.0031884657219052315, + 0.040360502898693085, + -0.0018844895530492067, + 0.0024684895761311054, + -0.013248955830931664, + 0.032690055668354034, + 0.0033627941738814116, + 0.02080783247947693, + 0.023722603917121887, + 0.05623135715723038, + -0.023778388276696205, + -0.008137647993862629, + -0.021351737901568413, + -0.015131701715290546, + 0.019761862233281136, + 0.022118782624602318, + -0.026679212227463722, + -0.05003921315073967, + -0.06314870715141296, + 0.008974423632025719, + -0.038463808596134186, + 0.007321791257709265, + 0.00840262696146965, + -0.009567140601575375, + 0.0176699236035347, + -0.019998949021100998, + 0.034475177526474, + -0.0148248840123415, + 0.02243954688310623, + 0.013716155663132668, + -0.029175594449043274, + -0.0065268538892269135, + -0.017851224169135094, + 0.017655976116657257, + 0.02073810249567032, + -0.0038666031323373318, + -0.01737705059349537, + 0.008284083567559719, + 0.03009604848921299, + -0.00873036403208971, + -0.028812991455197334, + -0.03603715822100639, + -0.013820752501487732, + 0.02469884231686592, + -0.03570244833827019, + -0.020347606390714645, + 0.029259271919727325, + -0.019747916609048843, + 0.0026079523377120495, + -0.019050603732466698, + -0.019831594079732895, + -0.003186722518876195, + -0.015159593895077705, + 0.0019890866242349148, + 0.018952978774905205, + -0.02775307558476925, + 0.042842939496040344, + 0.03927269205451012, + 0.006331606302410364, + 0.017112072557210922, + 0.025507725775241852, + 0.022300083190202713, + 0.004427940584719181, + 0.046273719519376755, + 0.0196502935141325, + -0.017544405534863472, + -0.005522722378373146, + 0.02161671780049801, + 0.015257217921316624, + -0.0196502935141325, + -0.0001325985067524016, + 0.015591928735375404, + 0.029259271919727325, + -0.013792860321700573, + -0.027195224538445473, + 0.0002610567316878587, + 0.009595032781362534, + 0.004651080816984177, + 0.018450913950800896, + -0.027334686368703842, + 0.06565903127193451, + -0.02345762401819229, + 0.0029147702734917402, + -0.02864563651382923, + -0.023053182289004326, + 0.009023236110806465, + -0.07240902632474899, + 0.004365182016044855, + 0.00412809569388628, + 0.007977265864610672, + -0.0030768956057727337, + -0.012670185416936874, + 0.0059690033085644245, + 0.02828303351998329, + -0.01849275268614292, + 0.010459701530635357, + -0.02154698595404625, + 0.029119810089468956, + 0.029649768024683, + 0.05207536742091179, + -0.014629635959863663, + -0.022035105153918266, + -0.0023917851503938437, + 0.0027805373538285494, + -0.025758758187294006, + -0.017725707963109016, + 0.012551642023026943, + 0.001647402998059988, + 0.03573033958673477, + 0.005240310449153185, + 0.028673529624938965, + -0.009302161633968353, + -0.012739916332066059, + -0.01613583229482174, + -0.011645134538412094, + 0.021128596737980843, + -0.01716785691678524, + 0.013018841855227947, + 0.03218798711895943, + 0.0014138029655441642, + -0.004794029984623194, + 0.003537122393026948, + 0.015619820915162563, + -0.007321791257709265, + -0.06019209697842598, + 0.01775360107421875, + 0.034001003950834274, + -0.0025085851084440947, + -0.009692656807601452, + -0.022076943889260292, + -0.01885535567998886, + 0.025186961516737938, + 0.017265481874346733, + 0.0023394867312163115, + -0.0013562747044488788, + -0.02468489669263363, + -0.014518066309392452, + -0.009832119569182396, + -0.05193590372800827, + 0.023652872070670128, + 0.01223087776452303, + -0.030626006424427032, + 0.011735785752534866, + 0.008165540173649788, + 0.0011340059572830796, + -0.016107941046357155, + -0.010954794473946095, + -0.015536143444478512, + -0.01340933796018362, + -0.018939033150672913, + 0.003226818051189184, + -0.030626006424427032, + -0.03054232895374298, + -0.021017028018832207, + -0.020054735243320465, + 0.0038038447964936495, + -0.007691367529332638, + 0.04100203141570091, + -0.018450913950800896, + -0.007879641838371754, + 0.017697814851999283, + -0.004919546190649271, + -0.009406758472323418, + 0.028840884566307068, + -0.0029165134765207767, + -0.01856248453259468, + 0.000763122399803251, + -0.025145122781395912, + 0.03793385252356529, + 0.0018461373401805758, + 0.01322106271982193, + -0.0007260776474140584, + -0.026330554857850075, + -0.003312238957732916, + 0.0024650029372423887, + 0.03559087961912155, + 0.005128740333020687, + -0.031239641830325127, + -0.050736527889966965, + 0.0015715701738372445, + 0.011310423724353313, + 0.036622900515794754, + 0.021058866754174232, + -0.006917349528521299, + -0.0072241672314703465, + 0.023387892171740532, + -0.04030471667647362, + 0.03263426944613457, + 0.03628819063305855, + 0.004347749520093203, + -0.058630116283893585, + -0.022076943889260292, + 0.05003921315073967, + -0.00022858806187286973, + -0.022090889513492584, + 0.034530963748693466, + -0.01529905665665865, + 0.01899481751024723, + 0.020556800067424774, + -0.007830830290913582, + 0.035618770867586136, + 0.01508986297994852, + -0.015745338052511215, + -0.006342065986245871, + -0.01927374303340912, + -0.028296979144215584, + -0.04404231905937195, + 0.001695343293249607, + -0.06493382900953293, + -0.020138412714004517, + -0.028213301673531532, + 0.025326425209641457, + 0.002693373244255781, + 0.012509803287684917, + 0.02468489669263363, + -0.011533563956618309, + 0.0010930388234555721, + -0.004776597023010254, + 0.0018217313336208463, + 0.008479331620037556, + 0.0046964059583842754, + 0.0034046329092234373, + 0.002926973160356283, + 0.00789358839392662, + 0.013716155663132668, + 0.010062232613563538, + 0.007600716780871153, + -0.010899009183049202, + 0.018464859575033188, + -0.02409915253520012, + 0.05729127302765846, + 0.001179331331513822, + 0.01608004793524742, + 0.008235272020101547, + -0.052493754774332047, + -0.011519618332386017, + 0.07006605714559555, + 0.05280057340860367, + -0.011150041595101357, + 0.003385456744581461, + -0.034475177526474, + 0.005010196939110756, + 0.03771071135997772, + 0.01592663861811161, + -0.01183340884745121, + 0.0009387582540512085, + -0.023611033335328102, + 0.015591928735375404, + -0.024378078058362007, + -0.031016502529382706, + 0.009727522730827332, + -0.008298030123114586, + 0.0196502935141325, + -0.002557397121563554, + -0.005086901597678661, + -0.01464358251541853, + 0.011917087249457836, + 0.019664239138364792, + 0.003981659654527903, + -0.002140752272680402, + -0.012488883920013905, + -0.030123941600322723, + -0.016191618517041206, + 0.03112807311117649, + 0.026414234191179276, + 0.021644609048962593, + 0.01790700852870941, + 0.041392527520656586, + -0.05338631570339203, + -0.004197827074676752, + -0.021798018366098404, + 0.006237468682229519, + -0.005268203094601631, + 0.009811200201511383, + 0.033415261656045914, + -0.005710997153073549, + -0.02652580291032791, + -0.014741206541657448, + 0.02294161170721054, + -0.03352683037519455, + -0.0032233314123004675, + -0.06019209697842598, + -0.02951030433177948, + 0.019538722932338715, + -0.006415283773094416, + -0.015354841947555542, + 0.0012970030074939132, + 0.018158042803406715, + -0.006265361327677965, + -0.007802937645465136, + -0.03082125447690487, + 0.025549564510583878, + -0.001548035885207355, + 0.009337026625871658, + 0.023290269076824188, + -0.012154173105955124, + -0.007126543205231428, + -0.008723391219973564, + -0.03776649758219719, + -7.016716699581593e-5, + 0.044377028942108154, + -0.017070233821868896, + -0.02220246009528637, + 0.026414234191179276, + 0.033861540257930756, + -0.010627057403326035, + 0.057737551629543304, + -0.005648239050060511, + -0.0012490627123042941, + -0.024364132434129715, + -0.012691104784607887, + -0.030988609418272972, + -0.01325592864304781, + -0.03143488988280296, + -0.02987290732562542, + -0.038910090923309326, + 0.0489514023065567, + -0.009741469286382198, + 0.021644609048962593, + 0.03322001174092293, + 0.009350973181426525, + -0.005142686888575554, + -0.007116083521395922, + 0.02790648490190506, + 0.018423020839691162, + -0.026846567168831825, + -0.009915797039866447, + -0.013235009275376797, + -0.010466675274074078, + 0.016121886670589447, + -0.00946254376322031, + 0.013339606113731861, + -0.016847092658281326, + 0.012935164384543896, + -0.0043721552938222885, + -0.015536143444478512, + 0.00909296702593565, + 0.009741469286382198, + -0.005100847687572241, + -0.0004323343455325812, + 0.025159068405628204, + -0.0001883835793705657, + -0.006589611992239952, + 0.022035105153918266, + 0.026999976485967636, + 0.010424835607409477, + -0.016470544040203094, + 0.006303713656961918, + -0.005233337637037039, + 0.014532011933624744, + 0.025173015892505646, + -0.011770650744438171, + 0.014657529070973396, + 0.005710997153073549, + -0.0012281433446332812, + 0.025145122781395912, + -0.01666579209268093, + 0.025689028203487396, + -0.01066889613866806, + -0.0038735761772841215, + 0.024447809904813766, + 0.03726442903280258, + -0.031379103660583496, + 0.026344502344727516, + 0.016456596553325653, + 0.015536143444478512, + -0.016121886670589447, + 0.005557588301599026, + 0.0038038447964936495, + 0.019245851784944534, + 0.012544669210910797, + -0.04507433995604515, + 0.023290269076824188, + 0.003498770296573639, + -0.03665079548954964, + 0.006139845121651888, + 0.0013370985398069024, + -0.0067604538053274155, + 0.006540799979120493, + 0.009204537607729435, + -0.052410077303647995, + -0.011770650744438171, + -0.023025289177894592, + 0.01832539774477482, + -0.01782333105802536, + 0.009929743595421314, + 0.025103284046053886, + 0.0078866146504879, + 0.0336105078458786, + -0.009866985492408276, + -0.02571691945195198, + 0.03478199616074562, + 0.0031152479350566864, + 0.019245851784944534, + -0.004828895442187786, + -0.0016883701318874955, + 0.010654949583113194, + -0.028450388461351395, + 0.008667605929076672, + -0.01920401304960251, + 0.0008751283749006689, + -0.002817146247252822, + -0.07079125940799713, + -0.046580538153648376, + 0.013207117095589638, + 0.020347606390714645, + -0.009441624395549297, + 0.022997397929430008, + 0.021379631012678146, + -0.0034935404546558857, + -0.00500322412699461, + 0.019706077873706818, + 0.002548680640757084, + 0.02799016237258911, + -0.004668513312935829, + -0.011805516667664051, + -0.018158042803406715, + 0.010062232613563538, + 0.017488621175289154, + -0.02687446027994156, + 0.0001250805944437161, + 0.024782519787549973, + -0.004013038706034422, + 0.012000764720141888, + 0.001777277677319944, + -0.007189301773905754, + 0.014294926077127457, + 0.0001456731406506151, + 0.020793886855244637, + 0.004009552299976349, + 0.039105337113142014, + 0.0035841912031173706, + 0.02762755937874317, + 0.030291296541690826, + 0.0008943044813349843, + -0.04077889025211334, + 0.027334686368703842, + -0.05589664727449417, + 0.058183833956718445, + -0.008807068690657616, + 0.031072286888957024, + -0.0028363224118947983, + -0.02628871612250805, + -0.005982949398458004, + -0.014253086410462856, + -0.006139845121651888, + 0.007970293052494526, + 0.0038944955449551344, + 0.025033552199602127, + -0.022913720458745956, + 0.02776702120900154, + 0.027585720643401146, + 0.003446471644565463, + 0.04047207161784172, + -0.013339606113731861, + 0.00975541491061449, + -0.01732126623392105, + 0.009915797039866447, + 0.013095546513795853, + 0.03478199616074562, + -0.016763415187597275, + 0.004026985261589289, + -0.03980265185236931, + 0.001014591078273952, + 0.027041815221309662, + 0.009539248421788216, + -0.03478199616074562, + -0.005710997153073549, + 0.04047207161784172, + 0.00723114050924778, + -0.007837803103029728, + -0.04674789309501648, + -0.02600979246199131, + 0.03294108808040619, + 0.022746365517377853, + -0.017990687862038612, + 0.01913428120315075, + 0.01914822682738304, + -0.011603295803070068, + 0.013144358061254025, + 0.016010316088795662, + 0.007419415283948183, + 0.006784860044717789, + 0.0023133372887969017, + 0.004612728487700224, + 0.016972608864307404, + 0.019775809720158577, + 0.016833147034049034, + 0.033192120492458344, + 0.022104837000370026, + -0.007482173386961222, + -0.01973397098481655, + 0.010090125724673271, + -0.02842249535024166, + 0.009866985492408276, + -0.004964871797710657, + -0.027697289362549782, + -0.007286925334483385, + -0.021072812378406525, + 0.007468226831406355, + 0.022244298830628395, + -0.028980346396565437, + -0.005452990997582674, + 0.027502043172717094, + -0.02190958894789219, + 0.0031030448153615, + 0.0034656478092074394, + 0.019482938572764397, + -0.019190065562725067, + 0.017725707963109016, + 0.001980370143428445, + 0.008897719904780388, + -0.008528143167495728, + 0.007795964367687702, + 0.023499462753534317, + -0.03665079548954964, + -0.01753045991063118, + -0.011582376435399055, + -0.013311713933944702, + -0.011603295803070068, + -0.020208144560456276, + 0.014713313430547714, + -0.015731390565633774, + 0.0057632955722510815, + 0.014978292398154736, + -0.012956083752214909, + 0.012900298461318016, + 0.003601623931899667, + -0.015326949767768383, + 0.0031152479350566864, + 0.007670447696000338, + 0.0007334866095334291, + -0.02271847240626812, + 0.008995343931019306, + -0.006474555470049381, + 0.027306795120239258, + -0.024071259424090385, + 0.044237565249204636, + 0.004225719720125198, + -0.042480334639549255, + -0.033415261656045914, + 0.019831594079732895, + 0.017767546698451042, + 0.005421611946076155, + -0.000676394032780081, + -0.0021982805337756872, + 0.05419520288705826, + -0.0012499343138188124, + -0.016107941046357155, + 0.018952978774905205, + -0.007098651025444269, + -0.0033959164284169674, + -0.036622900515794754, + -0.00293917628005147, + 0.03333158418536186, + -0.024308346211910248, + 0.005233337637037039, + -0.018227772787213326, + 0.011059391312301159, + 0.0013928835978731513, + 0.037292324006557465, + 0.02068231627345085, + 0.0016718090046197176, + -0.011645134538412094, + 0.029789229854941368, + 0.0243920236825943, + 0.04301029443740845, + -0.03718075156211853, + 0.06013631075620651, + 0.02045917697250843, + -0.02213272824883461, + 0.004745217971503735, + 0.005355367437005043, + 0.008228298276662827, + -0.002332513453438878, + 0.030570222064852715, + -0.024140991270542145, + 0.00206230441108346, + 0.0023360000923275948, + -0.030709683895111084, + -0.00964384526014328, + 0.009692656807601452, + -0.015145648270845413, + 0.024489648640155792, + 0.04688735678792, + -0.021003080531954765, + -0.0020483583211898804, + -0.022076943889260292, + 0.025382209569215775, + 0.034949351102113724, + -0.0003140089684166014, + -0.028980346396565437, + 0.04061153531074524, + 0.0036260299384593964, + -0.03687393665313721, + 0.0025783164892345667, + -0.00942767783999443, + -0.03600926697254181, + 0.005466937553137541, + -0.02752993442118168, + 0.008242244832217693, + -0.0243920236825943, + 0.039328478276729584, + 0.033498939126729965, + -0.00942767783999443, + -0.0011636418057605624, + 0.02023603580892086, + -0.0007822985062375665, + -0.014204274863004684, + 0.019315581768751144, + -0.0020100059919059277, + -0.013325659558176994, + 0.012447045184671879, + -0.03179749473929405, + -0.003061206080019474, + 0.009392811916768551, + 0.007189301773905754, + -0.05288425087928772, + 0.0216306634247303, + 0.05034603178501129, + -0.018353290855884552, + -0.024503594264388084, + 0.02476857416331768, + 0.004469779320061207, + 0.02066837064921856, + 0.001886232872493565, + -0.0353398472070694, + -0.002093683695420623, + 0.00011255074787186459, + 0.02154698595404625, + 0.0012447044719010592, + -0.011463833041489124, + 0.007530985400080681, + -0.036790259182453156, + 0.033498939126729965, + -0.030207619071006775, + 0.010034340433776379, + 0.010885062627494335, + 0.03096071630716324, + 0.015368788503110409, + -0.006892943289130926, + -0.016749469563364983, + -0.019482938572764397, + -0.008723391219973564, + 0.009567140601575375, + 0.0036399762611836195, + -0.006934782024472952, + -0.00754493148997426, + -0.004926519468426704, + 0.017070233821868896, + 0.008235272020101547, + 0.05140594765543938, + -0.013862591236829758, + -0.008053970523178577, + -0.04208983853459358, + 0.006317659746855497, + 0.00465456722304225, + -0.0272370632737875, + -0.006314173340797424, + 0.0013885253574699163, + -0.012216931208968163, + -0.02411309815943241, + -0.014071784913539886, + -0.0052960957400500774, + 0.03397311270236969, + 0.017195750027894974, + 0.003061206080019474, + -0.006892943289130926, + -0.009148752316832542, + -0.014490173198282719, + -0.044460706412792206, + 0.0258563831448555, + -0.002311594085767865, + 0.02440597116947174, + 0.018674053251743317, + 0.004319856874644756, + 0.012467964552342892, + -0.0036574089899659157, + 0.010236561298370361, + -0.020626531913876534, + -0.004389588255435228, + -0.01578717678785324, + -0.011421994306147099, + 0.02125411480665207, + -0.0027805373538285494, + -0.00257482985034585, + 0.018381182104349136, + 0.01015288382768631, + 0.020124465227127075, + -0.019538722932338715, + -0.034586746245622635, + -0.021588824689388275, + -0.015243272297084332, + 0.01856248453259468, + -0.023429730907082558, + -0.0005748477997258306, + 0.0004079283680766821, + 0.012656238861382008, + 0.006624477915465832, + -0.003573731519281864, + -0.05885325372219086, + 0.02097518928349018, + -0.0034238090738654137, + 0.00206404784694314, + 0.005846973042935133, + -0.009267295710742474, + 0.014225194230675697, + 0.00909296702593565, + -0.018102256581187248, + -0.04052785784006119, + -0.0054634506814181805, + -0.053944166749715805, + -0.027697289362549782, + -0.007998185232281685, + -0.00858392845839262, + -0.021017028018832207, + -0.005024143494665623, + -0.03427992761135101, + -0.03140699863433838, + 0.006383904721587896, + -0.013283820822834969, + -0.04245244339108467, + 0.009720549918711185, + 0.029621874913573265, + -0.005714483559131622, + 0.04864458739757538, + 0.021421469748020172, + 0.012628346681594849, + -0.01920401304960251, + -0.023848120123147964, + 0.027864646166563034, + 0.02469884231686592, + 0.0022314030211418867, + -0.012725970707833767, + -0.015954531729221344, + -0.0024388537276536226, + -0.009183618240058422, + 0.004926519468426704, + 0.031211750581860542, + 0.005801647901535034, + 0.0007134388433769345, + -0.006014328449964523, + -0.0030629492830485106, + 0.01307462714612484, + 0.002349946415051818, + 0.01036905124783516, + 0.008053970523178577, + 0.024127045646309853, + 0.025842435657978058, + -0.01545246597379446, + 0.007109110709279776, + -0.03366629406809807, + -0.005201958119869232, + -0.007775045000016689, + -0.021351737901568413, + -0.01563376747071743, + -0.021965373307466507, + 0.010396943427622318, + 0.02294161170721054, + -0.024280454963445663, + 0.01036905124783516, + -0.005543641746044159, + -0.023471571505069733, + 0.020626531913876534, + 0.01927374303340912, + 0.007102137431502342, + 0.01937136799097061, + 0.021644609048962593, + 0.015285111032426357, + 0.0064362031407654285, + 0.009065074846148491, + 0.021100705489516258, + -0.009072047658264637, + 0.02928716503083706, + 0.018576430156826973, + -0.007782018277794123, + -0.0004963999963365495, + 0.0019838567823171616, + 0.0010180776007473469, + -0.0035528119187802076, + -0.04150409623980522, + 0.014796990901231766, + -0.032104309648275375, + 0.011749731376767159, + 0.002947892528027296, + 0.013151331804692745, + -0.009113886393606663, + -0.004100203048437834, + 0.0036922746803611517, + -0.011972871609032154, + -0.013423283584415913, + 0.002688143402338028, + -0.027515988796949387, + -0.004190853796899319, + -0.013785886578261852, + -0.007628608960658312, + 0.01744678243994713, + 0.021895641461014748, + -0.01651238277554512, + 0.005930650979280472, + -0.023987581953406334, + 0.0015454209642484784, + -0.017697814851999283, + -0.006146817933768034, + 0.017000501975417137, + -0.013172251172363758, + 0.022411653771996498, + -0.03938426449894905, + 0.0010782208992168307, + -0.022816095501184464, + -0.011296478100121021, + -0.043791282922029495, + -0.032773733139038086, + -0.007956346496939659, + 0.0031013016123324633, + -0.003355820896103978, + -0.02228613756597042, + -0.001052943291142583, + -0.021463308483362198, + 0.043512359261512756, + -0.0049962508492171764, + 0.013625504449009895, + -0.009741469286382198, + -0.017070233821868896, + 0.01928769052028656, + 0.021574877202510834, + 0.0044593196362257, + -0.011638161726295948, + 0.0017938388045877218, + -0.023178698495030403, + 0.03570244833827019, + -0.0076634748838841915, + 0.007011486683040857, + -0.030877038836479187, + -0.006906889844685793, + 0.03628819063305855, + -0.01913428120315075, + -0.03383364900946617, + 0.009811200201511383, + -0.0029810150153934956, + -0.008318949490785599, + -0.0030681791249662638, + -9.22305989661254e-5, + 0.005975976120680571, + 0.019692132249474525, + 0.01464358251541853, + -0.03405679017305374, + 0.018381182104349136, + 0.016456596553325653, + -0.006237468682229519, + 0.007775045000016689, + -0.0030542328022420406, + 0.004881194327026606, + -0.053804706782102585, + -0.017349159345030785, + 0.002635844750329852, + 0.020501015707850456, + -0.008353815414011478, + -0.006770913489162922, + 0.0013161791721358895, + 0.00822132546454668, + -0.018130149692296982, + 0.004149015061557293, + 0.01527116447687149, + -0.012126280926167965, + 0.032829515635967255, + 0.03271794691681862, + -0.001599462702870369, + 0.006303713656961918, + 0.002665480598807335, + 0.005930650979280472, + 0.018074365332722664, + -0.025326425209641457, + -0.011680000461637974, + 0.0004841970221605152, + 0.03469831869006157, + -0.002140752272680402, + 0.01870194636285305, + 0.036120835691690445, + -0.01614977978169918, + 0.03762703388929367, + -0.013834699057042599, + -0.03216009587049484, + 0.027376525104045868, + 0.0019402746111154556, + -0.01048759464174509, + 0.01849275268614292, + 0.012830567546188831, + -0.010899009183049202, + 0.02468489669263363, + 0.0021651582792401314, + 0.022090889513492584, + -0.013332633301615715, + 0.01373707503080368, + 0.01168697327375412, + -0.0015419343253597617, + 0.007823856547474861, + 0.0043686688877642155, + -0.008646686561405659, + 0.019845541566610336, + -0.016484489664435387, + -0.010403916239738464, + 0.029398735612630844, + -0.007001026999205351, + -0.004563916474580765, + 0.03603715822100639, + -0.01899481751024723, + 0.023262375965714455, + -0.014518066309392452, + -0.01570349931716919, + 0.006049194373190403, + -0.00430939719080925, + -0.0162055641412735, + 0.06432019174098969, + 0.018883248791098595, + -0.0011592835653573275, + 0.0076634748838841915, + -0.018074365332722664, + -0.014964346773922443, + 0.021212274208664894, + 0.0086187943816185, + 0.010787438601255417, + 0.008611820638179779, + -0.02497776784002781, + -0.010229588486254215, + 0.03218798711895943, + 0.020277874544262886, + -0.0012848000042140484, + 0.0017572299111634493, + 0.0353398472070694, + -0.014657529070973396, + -0.022606901824474335, + -0.012921217828989029, + 0.003835223848000169, + 0.007537958212196827, + 0.01424611359834671, + -0.0008415701449848711, + -0.017767546698451042, + -0.03475410118699074, + -0.005055522546172142, + 0.007328764535486698, + -0.04967660829424858, + 0.0007570208981633186, + 0.02234192192554474, + 0.010822304524481297, + 0.02089151181280613, + 0.024587271735072136, + -0.009378866292536259, + 0.02446175552904606, + -0.00073261494981125, + -0.02192353457212448, + -0.013848644681274891, + -0.005104334559291601, + -0.012816620990633965, + -0.01135226245969534, + -0.006153791211545467, + -0.016623953357338905, + 0.0022139702923595905, + 0.008005158044397831, + 0.011421994306147099, + -0.006774400360882282, + -0.008116728626191616, + -0.015368788503110409, + -0.005756322294473648, + 0.011944979429244995, + -0.024657003581523895, + 0.002761361189186573, + 0.0013562747044488788, + -0.0016726806061342359, + -0.0178372785449028, + -0.033136334270238876, + -0.04208983853459358, + -0.01739099808037281, + 0.010627057403326035, + 0.02366681769490242, + -0.001816501491703093, + -0.005955056753009558, + -0.011373182758688927, + 0.008597875013947487, + 0.005428585223853588, + -0.0022383760660886765, + -0.016024263575673103, + -0.001326638855971396, + 0.0015706985723227262, + -0.00412460882216692, + -0.00688597047701478, + 0.012516776099801064, + 0.0017450269078835845, + 0.02089151181280613, + 0.03322001174092293, + -0.011254639364778996, + -0.007956346496939659, + -0.018353290855884552, + -0.0001558059739181772, + 0.012070495635271072, + 0.026693157851696014, + 0.01428097952157259, + -0.01253072265535593, + -0.01635897345840931, + -0.00789358839392662, + -0.0077610984444618225, + 0.014476227574050426, + -0.01322803646326065, + -0.002979271812364459, + 0.0020256955176591873, + -0.00021987163927406073, + -0.023415785282850266, + -0.01914822682738304, + -0.01833934336900711, + -0.012537695467472076, + -0.016484489664435387, + 0.01110820285975933, + -0.015285111032426357, + -0.0036085969768464565, + 0.002618412021547556, + 0.005986435804516077, + -0.014587797224521637, + 0.01190314069390297, + 0.0041385553777217865, + -0.0013963701203465462, + 0.012935164384543896, + -0.0037654927000403404, + -0.012914245016872883, + 0.016107941046357155, + 0.0009596776217222214, + 0.00806791614741087, + 0.002892107469961047, + 0.011798543855547905, + -0.0012429612688720226, + -0.007182328496128321, + -0.011610268615186214, + 0.018018579110503197, + 0.002203510608524084, + -0.029175594449043274, + 0.003558041760697961, + -0.010919928550720215, + -0.007823856547474861, + 0.012990949675440788, + -0.01511775515973568, + -0.0019559641368687153, + 0.002979271812364459, + -0.0017607164336368442, + -0.004246639087796211, + 0.011401074938476086, + -0.00465456722304225, + 0.014922508038580418, + -0.00022531941067427397, + 0.027502043172717094, + -0.02309502102434635, + 0.0254240483045578, + 0.006638424005359411, + -0.007405468728393316, + -0.005282149184495211, + -0.005174065940082073, + 0.023848120123147964, + -0.004665026906877756, + 0.022369815036654472, + -0.006795319728553295, + 0.008869826793670654, + -0.017126018181443214, + 0.016623953357338905, + 0.02973344549536705, + -0.014448334462940693, + 0.019817648455500603, + 0.001568955252878368, + -0.022397708147764206, + -0.00034647760912775993, + 0.01702839508652687, + -0.01695866324007511, + 0.014894614927470684, + -0.032913193106651306, + 0.018576430156826973, + 0.009894877672195435, + 0.010585217736661434, + -0.018757732585072517, + -0.01208444219082594, + 0.004379128571599722, + 0.01545246597379446, + 0.0013318686978891492, + -0.011038471944630146, + -0.02995658479630947, + 0.0051496597006917, + 0.0157732293009758, + -0.01832539774477482, + -0.005930650979280472, + -0.013639451004564762, + 0.02132384479045868, + 0.03190906345844269, + -0.024085206910967827, + 0.027739128097891808, + -0.006021301727741957, + 0.03419625014066696, + 0.012788728810846806, + -0.009650818072259426, + -0.02790648490190506, + 0.012614400126039982, + 0.014685421250760555, + 0.00772623298689723, + -0.0037271403707563877, + -0.019971057772636414, + -0.019887380301952362, + -0.020696263760328293, + -0.017042340710759163, + 0.014838830567896366, + -0.025465887039899826, + -0.014615689404308796, + 0.037654925137758255, + 0.009699629619717598, + 0.017056286334991455, + -0.00275613134726882, + -0.013095546513795853, + 0.004609242081642151, + -0.02718127891421318, + 0.020710209384560585, + -6.090597162256017e-5, + 0.008270137943327427, + -0.00633857911452651, + 0.012175092473626137, + -0.0026759402826428413, + -0.0017790208803489804, + -0.0016482747159898281, + -0.010933875106275082, + -0.015898747369647026, + -0.005770268850028515, + 0.0192179586738348, + -0.019915271550416946, + -0.00600735517218709, + 0.03804542124271393, + 0.0028851344250142574, + 0.007656501606106758, + 0.013241982087492943, + -0.017558353021740913, + -0.010857170447707176, + -0.012467964552342892, + -0.017544405534863472, + -0.002203510608524084, + 0.010529433377087116, + -0.024378078058362007, + -0.017879117280244827, + 0.010905981995165348, + -0.003849170170724392, + 0.028757207095623016, + 0.0025870329700410366, + 0.008451439440250397, + 5.8400000852998346e-5, + 0.0013484298251569271, + -0.011812489479780197, + 0.008151594549417496, + 0.007614662870764732, + -0.019566616043448448, + 0.009985528886318207, + 0.008793122135102749, + -0.0058330269530415535, + -0.00027979700826108456, + -0.02089151181280613, + -0.007607689592987299, + 0.006655856966972351, + -0.0019995463080704212, + -0.0002532119397073984, + -0.03132332116365433, + 0.015410627238452435, + -0.004347749520093203, + 0.015954531729221344, + -0.0014530268963426352, + 0.010041313245892525, + -0.0002407910506008193, + -0.008353815414011478, + -0.013353552669286728, + 0.016024263575673103, + -0.011944979429244995, + 0.007468226831406355, + -0.021658556535840034, + -0.0037341134157031775, + -0.023624978959560394, + -0.013311713933944702, + 0.018074365332722664, + -0.004218746442347765, + -0.01253072265535593, + 0.03896587714552879, + 0.0024266508407890797, + -0.0008476716466248035, + -0.006795319728553295, + -0.02213272824883461, + -0.016121886670589447, + 0.02323448471724987, + -0.00500322412699461, + -0.01666579209268093, + 0.020877564325928688, + -0.004260585177689791, + -0.002865958260372281, + -0.010738627053797245, + 0.021588824689388275, + 0.004400047939270735, + 0.004933492746204138, + 0.025675080716609955, + 0.007328764535486698, + -0.003320955205708742, + 0.0012978746090084314, + 0.01406481210142374, + 0.00394679419696331, + 0.02599584497511387, + 0.013604585081338882, + -0.010613110847771168, + -0.004218746442347765, + 0.016261350363492966, + 0.006446662824600935, + 0.0053727999329566956, + 0.008486304432153702, + 0.004103689454495907, + -0.02382022701203823, + 0.03796174377202988, + -0.004204799886792898, + -0.016331080347299576, + -0.0010511999716982245, + -0.0035841912031173706, + -0.005358853843063116, + 0.02082177996635437, + 0.015243272297084332, + -0.012175092473626137, + 0.028617743402719498, + 0.0012150687398388982, + -0.013709181919693947, + -0.02797621488571167, + 0.00789358839392662, + -0.0059724897146224976, + -0.003863116493448615, + -0.008883773349225521, + -0.013423283584415913, + -0.012440071441233158, + 0.021365683525800705, + 0.001842650817707181, + 0.0021564417984336615, + 0.013862591236829758, + -0.01679130829870701, + 0.016763415187597275, + -0.04856090992689133, + 0.0045987823978066444, + -0.017112072557210922, + 0.019901325926184654, + -0.023053182289004326, + 0.01606610231101513, + 0.004410507623106241, + -0.01048759464174509, + -0.007719259709119797, + 0.004570889752358198, + 0.03179749473929405, + 0.024071259424090385, + 0.0024388537276536226, + 0.0162055641412735, + -0.0014765611849725246, + 0.008228298276662827, + -0.01446228101849556, + 0.021003080531954765, + -0.00982514675706625, + 0.0034848239738494158, + 0.01490856148302555, + 0.013011869043111801, + -0.012216931208968163, + 0.0030890984926372766, + 0.011749731376767159, + 0.02375049516558647, + -0.010013421066105366, + -0.029259271919727325, + -0.0042989375069737434, + -0.017865169793367386, + -0.0053030685521662235, + -0.003371510421857238, + -0.006837158463895321, + -0.009873958304524422, + 0.02075204811990261, + -0.0021703881211578846, + 0.012405206449329853, + -0.009448597207665443, + -0.025981899350881577, + 0.015522196888923645, + 0.022397708147764206, + -0.014992238953709602, + -0.0030280835926532745, + 0.01183340884745121, + -0.009065074846148491, + -0.004448859952390194, + -0.0048358687199652195, + 0.0012865433236584067, + 0.003256453899666667, + 0.015508251264691353, + -0.00041468359995633364, + -0.011205826885998249, + 0.04125306382775307, + -0.021965373307466507, + 0.02038944512605667, + 0.006457122508436441, + -0.010271427221596241, + -0.02673499844968319, + -0.04301029443740845, + -0.032104309648275375, + -0.002886877628043294, + -0.0015567522495985031, + -0.0027317253407090902, + -0.0451580174267292, + 0.017265481874346733, + -0.007809910457581282, + 0.030988609418272972, + 0.00377943878993392, + 0.023499462753534317, + 0.0005317014874890447, + 0.01493645366281271, + -0.009378866292536259, + 0.0012412179494276643, + 0.002770077669993043, + 0.002630614908412099, + 0.03804542124271393, + -0.018743785098195076, + 0.02592611312866211, + 0.010766519233584404, + -0.000979725387878716, + -0.01673552207648754, + 0.0006389134214259684, + 0.014713313430547714, + 0.016107941046357155, + 0.02614925429224968, + -0.022606901824474335, + -0.0044384002685546875, + 0.0045360238291323185, + -0.014657529070973396, + -0.007440334651619196, + -0.021533038467168808, + 0.0008420060039497912, + 0.002492895582690835, + -0.01292819157242775, + 0.0038526568096131086, + 0.00020810448040720075, + 0.023053182289004326, + 0.0068266987800598145, + 0.010459701530635357, + -0.005728430114686489, + 0.017432836815714836, + 0.006233982276171446, + 0.013695236295461655, + 0.0210309736430645, + 0.029538197442889214, + -0.0008136776159517467, + 0.015173540450632572, + -0.017711762338876724, + -3.944179115933366e-5, + 0.017223641276359558, + 0.008214352652430534, + -0.0006301970570348203, + 0.027697289362549782, + -0.026205038651823997, + -0.00772623298689723, + -0.0005412895698100328, + 0.02242560125887394, + 0.01854853704571724, + 0.003385456744581461, + -0.007851749658584595, + -0.03054232895374298, + -0.015354841947555542, + 0.007942399941384792, + 0.018743785098195076, + 0.004246639087796211, + 0.01183340884745121, + 0.02292766608297825, + -0.006335092708468437, + -0.007098651025444269, + -0.010020393878221512, + 0.011749731376767159, + 0.005916704423725605, + -0.0040444182232022285, + 0.019008764997124672, + 0.006153791211545467, + 0.006955701857805252, + -0.012426125817000866, + -0.005470423959195614, + 0.010020393878221512, + -0.0020832240115851164, + -0.006209576036781073, + -0.02732074074447155, + 0.007482173386961222, + 0.015619820915162563, + 0.008388680405914783, + -0.013032788410782814, + 0.01274689007550478, + -0.012328501790761948, + -0.0168052539229393, + -0.0019158687209710479, + -0.003498770296573639, + 0.013827725313603878, + -2.117817166435998e-5, + 0.007851749658584595, + -0.008611820638179779, + -0.014964346773922443, + 0.0176699236035347, + -0.0002697731542866677, + -0.0001658298569964245, + -0.014504119753837585, + -0.014671474695205688, + -0.017920956015586853, + -0.016107941046357155, + 0.05631503462791443, + 0.00865366030484438, + 0.008165540173649788, + 0.00829105731099844, + -0.0012996179284527898, + -0.012837540358304977, + -0.006910376250743866, + 0.011366209015250206, + 0.014204274863004684, + 0.004923033062368631, + -0.01628924161195755, + -0.016568167135119438, + 0.023067127913236618, + -0.0062723346054553986, + -0.03556298464536667, + 0.0025242746341973543, + 0.005097361281514168, + -0.005100847687572241, + 0.012398232705891132, + 0.015856908634305, + 0.00344124180264771, + 0.0048358687199652195, + 0.011094257235527039, + 0.0021006567403674126, + -0.010090125724673271, + 0.01789306290447712, + -0.02147725410759449, + -0.0051357136107981205, + 0.00997158233076334, + 0.03335947543382645, + -0.0004064030072186142, + -0.01884141005575657, + -0.013318686746060848, + -0.014769098721444607, + -0.0014896359061822295, + -0.0023917851503938437, + 0.007572824135422707, + -0.0037898984737694263, + -0.012725970707833767, + -0.000394417904317379, + -0.0022000239696353674, + -0.006784860044717789, + 0.007279952522367239, + 0.014113624580204487, + -0.02125411480665207, + 0.0011758448090404272, + -0.006753480527549982, + 0.0033000358380377293, + -0.02243954688310623, + 0.0014120597625151277, + 0.011889194138348103, + -0.011896166950464249, + 0.024643057957291603, + 0.016930770128965378, + 0.019343474879860878, + -0.0014547702157869935, + 0.016331080347299576, + 0.023053182289004326, + 0.010794412344694138, + -0.00120548065751791, + -0.03416835889220238, + -0.0011078567476943135, + -0.0004308089555706829, + -0.004239665810018778, + -0.01906454935669899, + 0.014420442283153534, + -0.004246639087796211, + -0.01084322389215231, + 0.007279952522367239, + -0.016275295987725258, + -0.018144095316529274, + -0.002658507553860545, + -0.0013118209317326546, + -0.021658556535840034, + -0.02140752226114273, + 0.018674053251743317, + -0.008611820638179779, + 0.03185327723622322, + 0.013646423816680908, + -0.006118925288319588, + 0.014002053998410702, + 0.010131964460015297, + -0.022021159529685974, + -0.006819725502282381, + 0.008563009090721607, + -0.014685421250760555, + 0.017000501975417137, + -0.03285741060972214, + 0.012258769944310188, + -0.019998949021100998, + -0.014364656992256641, + -0.006317659746855497, + 0.015145648270845413, + 0.01511775515973568, + -0.007754125632345676, + 0.0003100865869782865, + 0.003289576154202223, + 0.00377246574498713, + 0.0011383641976863146, + -0.0024876657407730818, + 0.0014321075286716223, + 0.004497671965509653, + -0.016749469563364983, + -4.2111194488825276e-5, + -0.012914245016872883, + -0.0006659343489445746, + 0.021351737901568413, + 0.0013588896254077554, + -0.006770913489162922, + 0.008298030123114586, + -0.00020516269432846457, + -0.010745599865913391, + 0.012921217828989029, + -0.01884141005575657, + -0.012621372938156128, + -0.0027997135184705257, + 0.01871589384973049, + -0.002735211979597807, + -0.023499462753534317, + -0.010320238769054413, + -0.004685946274548769, + 0.012732943519949913, + 0.0036120836157351732, + -0.03045865148305893, + 0.0022680119145661592, + -0.016386866569519043, + -0.005962030030786991, + -0.016163725405931473, + -0.00018173731223214418, + -0.007098651025444269, + 0.021505147218704224, + 0.01157540362328291, + 0.02914770133793354, + 0.01790700852870941, + 0.019482938572764397, + 0.009434650652110577, + -0.021449360996484756, + 0.01048759464174509, + -0.008925612084567547, + -0.01782333105802536, + 0.019343474879860878, + 0.006178196985274553, + -0.0009657791233621538, + 0.006732561159878969, + 0.011854328215122223, + 0.006457122508436441, + 0.002292417921125889, + -0.018353290855884552, + 0.003877062816172838, + 0.007914507761597633, + 0.030347080901265144, + -0.02469884231686592, + 0.006861564237624407, + -0.004121122416108847, + -0.011924060061573982, + 0.011401074938476086, + -0.04552062228322029, + 0.011805516667664051, + -0.017572298645973206, + -0.005916704423725605, + 0.002510328311473131, + -0.008479331620037556, + -0.007747152354568243, + -0.002782280556857586, + -0.008535116910934448, + 0.02789253741502762, + -0.010194722563028336, + 0.014420442283153534, + -0.0029374328441917896, + 0.008604847826063633, + 0.011219773441553116, + 0.017934901639819145, + 0.02716733142733574, + -0.020291822031140327, + 0.015034077689051628, + -0.016386866569519043, + 0.015382735058665276, + 0.0024772060569375753, + -0.00927426852285862, + 0.0017528716707602143, + -0.013897457160055637, + -0.004114149138331413, + 0.014448334462940693, + -0.0014974806690588593, + -0.016972608864307404, + -0.008793122135102749, + -0.003408119548112154, + -0.00792148057371378, + 0.009853038936853409, + -0.013799833133816719, + -0.003282603109255433, + 0.018897194415330887, + 0.00822132546454668, + -0.010327212512493134, + 0.010982686653733253, + 0.003130937460809946, + 0.034475177526474, + 0.0034917970187962055, + 0.03938426449894905, + 0.004033958073705435, + -0.00533096119761467, + 0.011589349247515202, + 0.03193695470690727, + -0.015313003212213516, + -0.007830830290913582, + -0.0059027583338320255, + -0.017195750027894974, + -0.015131701715290546, + -0.003992119338363409, + 0.009016263298690319, + -0.029984477907419205, + -0.022244298830628395, + 0.01789306290447712, + 0.008674579672515392, + 0.0037097076419740915, + -0.005665671546012163, + 0.012656238861382008, + 0.023973636329174042, + 0.003172776196151972, + 0.0004955283948220313, + 0.0044418866746127605, + 0.006104979198426008, + 0.01963634602725506, + -0.008088836446404457, + -0.0038805492222309113, + -0.014022973366081715, + -0.007551904767751694, + 0.011854328215122223, + 0.025075390934944153, + 0.008556036278605461, + 0.0025207882281392813, + -0.025479832664132118, + -0.012635319493710995, + 0.005962030030786991, + 0.005965516436845064, + 0.012293635867536068, + 0.005208931397646666, + -0.012370340526103973, + 0.014601743780076504, + -0.008158567361533642, + -0.010494567453861237, + 0.0033453612122684717, + -0.013060680590569973, + -0.005142686888575554, + -0.002471976215019822, + -0.011972871609032154, + 0.0032529672607779503, + 0.001816501491703093, + -0.008604847826063633, + -2.3411754227709025e-5, + -0.018353290855884552, + 0.007147463038563728, + 0.009853038936853409, + -0.0054355585016310215, + 0.014434387907385826, + -0.0027526449412107468, + -0.011561457067728043, + 0.01665184460580349, + 0.008444465696811676, + -0.018827462568879128, + 0.01746072806417942, + 0.02609346993267536, + -0.03218798711895943, + -0.0003083432966377586, + -0.00604222109541297, + 0.004365182016044855, + -0.018074365332722664, + -0.0015445492463186383, + -0.0053030685521662235, + 0.0011845611734315753, + 0.0023377432953566313, + -0.008095809258520603, + 0.009364919736981392, + 0.01826961152255535, + 0.0002996268740389496, + 0.0008768716361373663, + -0.006443176418542862, + -0.018171988427639008, + 0.0019629374146461487, + 0.02045917697250843, + -0.004389588255435228, + 0.002125062746927142, + 0.00807488989084959, + 0.0021180897019803524, + 0.00633857911452651, + -0.03924480080604553, + 0.01737705059349537, + 0.01666579209268093, + -0.00686853751540184, + 0.022104837000370026, + -0.0086187943816185, + -0.005306555423885584, + -0.004651080816984177, + 0.0010851940605789423, + 0.002907796995714307, + 0.010055259801447392, + -0.0032320478931069374, + 0.0030158807057887316, + 0.03347104415297508, + -0.028213301673531532, + -0.011247665621340275, + 0.0024528000503778458, + -0.002714292611926794, + -0.003204155247658491, + -0.019887380301952362, + 0.016986556351184845, + 0.026037683710455894, + 0.012865433469414711, + -0.01069678831845522, + 0.01464358251541853, + -0.0020326687954366207, + -0.005038089584559202, + -0.01819988153874874, + -0.009483463130891323, + -0.015647713094949722, + -0.010222614742815495, + -0.0036922746803611517, + 0.020180251449346542, + -0.010396943427622318, + 0.004504644777625799, + -0.00810975581407547, + 0.0008376477635465562, + 0.01833934336900711, + -0.009866985492408276, + 0.010794412344694138, + 0.0016099223867058754, + 0.03695761412382126, + 0.009065074846148491, + 0.004215259570628405, + -0.019482938572764397, + 0.030430758371949196, + 0.010271427221596241, + -0.02168644778430462, + -0.00038591941120103, + 0.016345027834177017, + 0.010752573609352112, + -0.0068511045537889, + -0.00916269887238741, + -0.001374579151161015, + -0.010229588486254215, + -0.007004513405263424, + -0.018283559009432793, + 0.0032093850895762444, + 0.012942137196660042, + -0.006788346450775862, + -0.00015537015860900283, + 0.00518452562391758, + -0.020849671214818954, + 0.01942715235054493, + 0.014204274863004684, + -0.010599164292216301, + 0.016121886670589447, + 0.019343474879860878, + 0.02416888438165188, + -0.011268584989011288, + -0.021072812378406525, + -0.008409599773585796, + 0.019817648455500603, + -0.006457122508436441, + -0.012091415002942085, + -0.011052418500185013, + 0.013855618424713612, + -0.002241862704977393, + -0.012119308114051819, + 0.0022122268564999104, + -0.008325922302901745, + 0.0025992358569055796, + 0.02652580291032791, + -0.03076547011733055, + 0.007245086599141359, + 0.004494185093790293, + -0.015173540450632572, + -0.011568429879844189, + -0.000351271650288254, + -0.011073337867856026, + 0.007266005966812372, + -0.006802292540669441, + -0.012412179261446, + -0.02789253741502762, + -0.004780083894729614, + 0.018283559009432793, + 0.0034185792319476604, + 0.0021215761080384254, + -0.007788991089910269, + -0.013102519325911999, + 0.020277874544262886, + 0.027697289362549782, + 0.01307462714612484, + 0.0036051105707883835, + -0.008681552484631538, + -0.005268203094601631, + 0.0021215761080384254, + 0.008953504264354706, + 0.024712787941098213, + -0.0210309736430645, + 0.018813516944646835, + -0.021798018366098404, + 0.009748442098498344, + -0.012460991740226746, + 0.008284083567559719, + 0.011798543855547905, + -0.004773110616952181, + 0.024001529440283775, + -0.00836776103824377, + 0.004393074661493301, + -0.008165540173649788, + -0.0036783283576369286, + -0.0060666268691420555, + 0.02380628138780594, + 0.0033575643319636583, + -0.0078866146504879, + 0.008235272020101547, + -0.014322818256914616, + -0.001720620901323855, + 0.008046996779739857, + -0.012823594734072685, + 0.0059271641075611115, + 0.01972002349793911, + 0.006091033108532429, + -0.014434387907385826, + 0.018297504633665085, + -0.007942399941384792, + -0.004685946274548769, + -0.006878997199237347, + 0.004121122416108847, + -0.022774256765842438, + 0.018883248791098595, + 0.006345552392303944, + -0.013925349339842796, + 0.011993790976703167, + 0.0017162627773359418, + 0.010473648086190224, + -0.00464062113314867, + -0.0027125494088977575, + -0.02864563651382923, + -0.0021512119565159082, + 0.011631187982857227, + -0.023067127913236618, + -0.011463833041489124, + 0.006056167185306549, + -0.02132384479045868, + -0.014545958489179611, + -0.016930770128965378, + 0.004281504545360804, + -0.006739534437656403, + -0.002825862728059292, + 0.017655976116657257, + 0.02234192192554474, + 0.0005086029996164143, + -0.009399785660207272, + -0.013960215263068676, + 0.007907534949481487, + -0.008081862702965736, + 0.018130149692296982, + -0.016986556351184845, + -0.015940586104989052, + -0.007670447696000338, + -0.02564718946814537, + 0.014978292398154736, + -0.047752026468515396, + 0.01428097952157259, + 0.014434387907385826, + 0.006645397283136845, + -0.014978292398154736, + 0.002804943360388279, + 0.003953767474740744, + 0.019120335578918457, + -0.005470423959195614, + -0.011408047750592232, + 0.015494304709136486, + -0.02578665129840374, + 0.025242745876312256, + -0.00047504479880444705, + 0.000784477626439184, + 0.008821015246212482, + 0.025103284046053886, + -0.003064692486077547, + 0.004825409036129713, + -0.005442531313747168, + -0.00847235880792141, + -0.008500250987708569, + 0.01584296114742756, + 0.007168382406234741, + 0.007816883735358715, + 0.01223087776452303, + -0.0024911523796617985, + 0.002796226879581809, + 0.012795701622962952, + 0.00891166552901268, + 0.016777360811829567, + 0.027362579479813576, + 0.014162436127662659, + 0.014880669303238392, + -0.015508251264691353, + 0.0049021136946976185, + 0.00883496180176735, + 0.023332107812166214, + 0.0287850983440876, + 0.007154435850679874, + 0.013730102218687534, + 0.020473122596740723, + 0.00723114050924778, + -0.0178372785449028, + -0.019538722932338715, + 0.01238428708165884, + -0.0007417671731673181, + 0.0024615165311843157, + 0.028227249160408974, + 0.019385313615202904, + 0.004860274959355593, + 0.000780555245000869, + -0.01117793470621109, + -0.010606137104332447, + 0.009748442098498344, + -0.002224429976195097, + 0.027209170162677765, + -0.007461254019290209, + 0.006652370095252991, + 0.013639451004564762, + 0.017265481874346733, + -0.0014347224496304989, + -0.023555248975753784, + -0.010571272112429142, + -0.009051128290593624, + 0.010097098536789417, + -0.0017084178980439901, + 0.001877516508102417, + -0.016568167135119438, + -0.0210309736430645, + -0.013032788410782814, + -0.008897719904780388, + 0.030626006424427032, + 0.01826961152255535, + 0.00034800299908965826, + 0.009525301866233349, + 0.025675080716609955, + 0.01790700852870941, + -0.0026829135604202747, + 0.032020632177591324, + -0.004825409036129713, + 0.03157435357570648, + -0.009943690150976181, + 0.008869826793670654, + 0.004689433146268129, + -0.0030106508638709784, + -0.01570349931716919, + 0.009776334278285503, + 0.02835276536643505, + -0.019747916609048843, + 0.026567641645669937, + -0.029091916978359222, + -0.0023429731372743845, + 0.017948847264051437, + 0.02045917697250843, + 0.020222090184688568, + -0.005010196939110756, + 0.010829278267920017, + -0.008514197543263435, + -0.004006065893918276, + 0.010313265956938267, + -0.001950734411366284, + 0.0041385553777217865, + -0.0019559641368687153, + -0.014183355495333672, + -0.0075240121223032475, + 0.0049021136946976185, + -0.002201767172664404, + -0.005522722378373146, + 0.017153911292552948, + 0.008381707593798637, + 0.012705051340162754, + 0.0030071642249822617, + 0.0019001791952177882, + 0.021756179630756378, + -0.01773965358734131, + 0.003985146526247263, + -0.04418177902698517, + -0.00046763583668507636, + 0.009295187890529633, + -0.01132437027990818, + 0.0089186392724514, + -0.006910376250743866, + 0.009330053813755512, + 0.008060943335294724, + 0.003155343234539032, + 0.01797674037516117, + -0.00011255074787186459, + 0.006160764489322901, + 0.017711762338876724, + -0.023834174498915672, + 0.020933350548148155, + 0.0019542209338396788, + -0.010557325556874275, + -0.0045987823978066444, + 0.013123438693583012, + 0.011812489479780197, + -0.0028276059310883284, + 0.0013344836188480258, + -0.012502830475568771, + -0.024294400587677956, + -0.018897194415330887, + -0.012621372938156128, + -0.005906244739890099, + -0.0030681791249662638, + 0.02082177996635437, + 0.002315080724656582, + 0.011080310679972172, + -0.0012002508156001568, + 0.0058992719277739525, + 0.005665671546012163, + 0.01694471761584282, + -0.02250927872955799, + -0.013004896230995655, + -0.019566616043448448, + 0.018799571320414543, + 0.0038910091388970613, + 0.009134805761277676, + -0.004183880519121885, + 0.041531987488269806, + 0.009539248421788216, + -0.001114829909056425, + 0.00755887757986784, + -0.004239665810018778, + 0.008465385064482689, + -0.004710352513939142, + -0.012182066217064857, + 0.01184038259088993, + 0.0042780181393027306, + 0.030737577006220818, + -0.020361552014946938, + 0.012356393970549107, + 0.006973134353756905, + -0.021226221695542336, + -0.043289218097925186, + 0.004089743364602327, + -0.0003299164236523211, + -0.0157732293009758, + -0.0032634269446134567, + -0.002968811895698309, + -0.007795964367687702, + -0.012949110940098763, + -0.004225719720125198, + -0.008409599773585796, + 0.015605875290930271, + 0.008848907425999641, + -0.020124465227127075, + -0.013681289739906788, + -0.0010163343977183104, + -0.001595976180396974, + 0.00635601207613945, + -0.009190591052174568, + 0.006282794289290905, + -0.024601219221949577, + 0.009866985492408276, + 0.005320501513779163, + 0.000375023897504434, + 0.0013336120173335075, + -0.029928693547844887, + 0.02732074074447155, + -0.0033314148895442486, + -0.021658556535840034, + -0.02030576765537262, + 0.0014530268963426352, + -0.00032076420029625297, + 0.0050694686360657215, + -0.008758257143199444, + -0.00032316119177266955, + 0.012272716499865055, + -0.012279690243303776, + -0.003653922351077199, + -0.014336764812469482, + 0.015075916424393654, + -0.008848907425999641, + 0.008493278175592422, + 0.006474555470049381, + 0.01219601184129715, + 0.0014059582026675344, + -0.013032788410782814, + 0.03352683037519455, + -0.01790700852870941, + -0.0048358687199652195, + 0.0002161671727662906, + 0.014741206541657448, + 0.02709760144352913, + -1.182164214696968e-5, + 0.012063522823154926, + -0.0017284656642004848, + -0.009344000369310379, + 0.001968167256563902, + 0.011910113506019115, + -0.016902878880500793, + -0.0031065314542502165, + -0.0070602986961603165, + 0.0052995821461081505, + 0.011456860229372978, + 0.006035247817635536, + -0.023332107812166214, + -0.0040025790221989155, + -0.009420705027878284, + -0.017572298645973206, + -0.019594507291913033, + 0.009657790884375572, + -0.00031444476917386055, + 0.004563916474580765, + -0.025521671399474144, + -0.013827725313603878, + 0.0028677014634013176, + 0.0029949613381177187, + 0.015940586104989052, + -0.007335737347602844, + 0.007984238676726818, + -0.030374974012374878, + 0.007837803103029728, + 0.009051128290593624, + 0.012670185416936874, + -0.037376001477241516, + -0.027502043172717094, + 0.0007561492966488004, + -0.016777360811829567, + 0.005773755256086588, + -0.004058364313095808, + -0.0015009671915322542, + -0.004909086506813765, + 0.019998949021100998, + -0.010278400033712387, + -0.00979028083384037, + 0.00429196422919631, + 0.005710997153073549, + -0.008228298276662827, + 0.006471068598330021, + 0.03871484100818634, + 0.00836776103824377, + -0.011700919829308987, + 0.020487068220973015, + -0.010473648086190224, + -0.005418125540018082, + -0.0008703343337401748, + -0.006579152308404446, + 0.006798806134611368, + 0.020347606390714645, + -0.018674053251743317, + -0.006481528282165527, + 0.013269875198602676, + 0.0017005731351673603, + 0.015201433561742306, + 0.006725588347762823, + -0.021784072741866112, + 0.01231455523520708, + 0.006753480527549982, + 0.019664239138364792, + -0.0022052538115531206, + -0.006328119430691004, + 0.019329529255628586, + -0.011282531544566154, + 0.012725970707833767, + -0.013486041687428951, + 0.0004894268931820989, + -0.021240167319774628, + 0.0010477134492248297, + -0.008862853981554508, + -0.005177552346140146, + 0.010724680498242378, + -0.009260322898626328, + 0.009406758472323418, + -0.01686103828251362, + 0.002140752272680402, + 0.00018195522716268897, + -0.023834174498915672, + -0.008311976678669453, + 0.00824921764433384, + -0.0002580059808678925, + 0.00635601207613945, + -0.011449886485934258, + -0.032550591975450516, + 0.009239403530955315, + -0.02475462667644024, + -0.03235534578561783, + -0.0009387582540512085, + 0.01570349931716919, + -0.003542352234944701, + 0.0032181015703827143, + -0.02199326641857624, + 0.0022139702923595905, + 0.003510973183438182, + -0.01907849684357643, + 0.012460991740226746, + 0.006077086552977562, + 0.02008262649178505, + 0.003047259757295251, + 0.023499462753534317, + 0.01746072806417942, + -0.0039990926161408424, + -0.02154698595404625, + 0.02051496133208275, + 0.01030629314482212, + -0.011003606021404266, + -0.010933875106275082, + -0.00810975581407547, + -0.019036656245589256, + -0.004337289836257696, + 0.0005003223777748644, + -0.0053727999329566956, + 0.0020047761499881744, + -0.011784597299993038, + -0.01847880706191063, + -0.0004894268931820989, + 0.0008764358353801072, + 0.0017711761174723506, + 0.014092705212533474, + 0.01292819157242775, + 0.006286280695348978, + 0.007335737347602844, + -0.008270137943327427, + 0.0046964059583842754, + 0.002790997037664056, + 0.00292174331843853, + -0.013032788410782814, + -0.015647713094949722, + -0.0012830568011850119, + -0.006101492792367935, + -0.004553456790745258, + 0.01102452538907528, + 0.01069678831845522, + -0.023834174498915672, + -0.02504749968647957, + -0.002632358344271779, + -0.011819463223218918, + 0.0038387104868888855, + 0.0017624597530812025, + -0.031881172209978104, + -0.008695499040186405, + -0.0055994270369410515, + -0.01147080585360527, + 0.004689433146268129, + 0.010585217736661434, + -0.010885062627494335, + 0.0026253850664943457, + -0.00039136718260124326, + 0.035535093396902084, + -0.005805134307593107, + 0.005892298649996519, + -0.00774017907679081, + 0.008967450819909573, + 0.012447045184671879, + 0.00222965981811285, + 0.013346578925848007, + 0.02490803599357605, + -0.01406481210142374, + -0.0009954149136319757, + -0.0019577075727283955, + -0.012732943519949913, + 0.007670447696000338, + 0.006164250895380974, + -0.004964871797710657, + 0.012098388746380806, + 0.00327737326733768, + -0.009873958304524422, + -0.01563376747071743, + 0.015508251264691353, + -0.007203247863799334, + 0.005923677701503038, + 0.019887380301952362, + -0.017642030492424965, + -0.00326865678653121, + 0.009811200201511383, + -0.013137385249137878, + -0.018032526597380638, + -0.010111045092344284, + 0.005386746488511562, + -0.014518066309392452, + -0.0018443940207362175, + -0.0038910091388970613, + 0.013297767378389835, + -0.0056029134429991245, + -0.010431809350848198, + 0.016554221510887146, + -0.00394679419696331, + -0.0017058029770851135, + -0.005306555423885584, + 0.0013449433026835322, + 0.011596322990953922, + 0.0008773074951022863, + -0.0014277492882683873, + -0.0057667819783091545, + -0.001335355220362544, + 0.009595032781362534, + 0.02045917697250843, + 0.016107941046357155, + -0.028296979144215584, + 0.021128596737980843, + 0.013381444849073887, + -0.01267715822905302, + -0.0015323462430387735, + 0.0029897314961999655, + -0.02557745762169361, + 0.007600716780871153, + 0.02264874055981636, + 0.007140489760786295, + -0.003573731519281864, + 0.019008764997124672, + 0.003254710463806987, + -0.009385839104652405, + 0.008012131787836552, + 0.023415785282850266, + -0.014657529070973396, + 0.009657790884375572, + -0.03068179078400135, + 0.003191952360793948, + -0.018785623833537102, + 0.003706221003085375, + -0.029566090553998947, + -0.013541826978325844, + 0.012189039029181004, + -0.005188012029975653, + 0.0071335164830088615, + -0.00020091343321837485, + -0.014964346773922443, + -0.0008141134749166667, + -0.00015940149023663253, + -0.016400812193751335, + -0.002609695540741086, + -0.010675868950784206, + 0.011073337867856026, + 0.03732021525502205, + 0.01825566589832306, + 0.005585480481386185, + -0.008604847826063633, + -0.004393074661493301, + 0.0025382209569215775, + 0.004522077739238739, + 0.00619214354082942, + -0.0033000358380377293, + 0.010857170447707176, + -0.008904692716896534, + -0.014992238953709602, + -0.006387391127645969, + -0.005554101429879665, + 0.00789358839392662, + 0.005934137385338545, + 0.015034077689051628, + 0.01642870530486107, + -0.007300871890038252, + 0.009783308021724224, + -0.016247402876615524, + 0.008681552484631538, + -0.0031065314542502165, + -0.015340895392000675, + -0.003137910505756736, + -0.005491343326866627, + -0.020765993744134903, + 0.004612728487700224, + 0.012593480758368969, + -0.01790700852870941, + 0.01529905665665865, + 0.00548088364303112, + 0.011951952241361141, + -0.021867750212550163, + 0.005735402926802635, + -0.028548013418912888, + 0.0009160955669358373, + 0.0031536000315099955, + 0.0007509193965233862, + 0.019971057772636414, + -0.024224668741226196, + 0.020710209384560585, + -0.010180776007473469, + -0.01885535567998886, + -0.033275797963142395, + -0.00755887757986784, + 0.014155463315546513, + 0.020277874544262886, + 0.02665131911635399, + -0.015591928735375404, + 0.01255861483514309, + 0.016707630828022957, + -0.0012769552413374186, + -0.04236876592040062, + -0.0055994270369410515, + 0.002865958260372281, + 0.0006323761190287769, + -0.019957110285758972, + 0.003247737418860197, + 0.002804943360388279, + -0.011896166950464249, + 0.007454280741512775, + -0.009588059969246387, + -0.017725707963109016, + 0.004651080816984177, + 0.018436968326568604, + -0.00377246574498713, + -0.01081533171236515, + -0.016470544040203094, + -0.020919403061270714, + 0.0023011344019323587, + -0.010083152912557125, + -0.011979845352470875, + 0.014071784913539886, + -0.001326638855971396, + -0.013465122319757938, + -0.00912783294916153, + 0.0018130149692296982, + 0.0168052539229393, + 0.003294805996119976, + 0.006098005920648575, + 0.021379631012678146, + -0.005104334559291601, + 0.027780966833233833, + 0.008737337775528431, + -0.028464334085583687, + 0.01249585673213005, + 0.006150304805487394, + 0.002008262788876891, + -0.001322280615568161, + 0.021128596737980843, + -0.03179749473929405, + 0.00909296702593565, + 0.02170039527118206, + 0.014239140786230564, + -0.005801647901535034, + -0.01135226245969534, + -0.0030856120865792036, + 0.028143569827079773, + 0.006049194373190403, + -0.013088573701679707, + -0.004678973462432623, + 0.016777360811829567, + -0.022244298830628395, + -0.015326949767768383, + -0.025410102680325508, + 0.003601623931899667, + -0.0019333015661686659, + 0.010912955738604069, + 0.005344907753169537, + -0.025103284046053886, + -0.01402994617819786, + 0.004926519468426704, + 0.02688840590417385, + 0.012509803287684917, + 0.006983594037592411, + -0.011017552576959133, + -0.00957411341369152, + -0.006837158463895321, + 0.007440334651619196, + 0.010138937272131443, + -0.00847235880792141, + -0.004176907707005739, + 0.008521170355379581, + -0.013060680590569973, + 0.02177012525498867, + 0.010111045092344284, + -0.014518066309392452, + 0.011944979429244995, + -0.0031884657219052315, + -0.017558353021740913, + 0.009664764627814293, + 0.011875247582793236, + -0.0027160358149558306, + -0.0003673970350064337, + -0.005010196939110756, + 0.02183985710144043, + 0.01249585673213005, + -0.00023425373365171254, + -0.0010215642396360636, + -0.01511775515973568, + 0.004720812197774649, + -0.0006550388061441481, + 0.0005020656972192228, + 0.019552668556571007, + -0.009302161633968353, + -0.009148752316832542, + 0.007018459960818291, + 0.00737757608294487, + 0.005282149184495211, + 0.005630806088447571, + -0.00829105731099844, + 0.0043686688877642155, + 0.00412809569388628, + 0.002770077669993043, + -0.008298030123114586, + -0.015856908634305, + 0.01304673496633768, + -0.006903402972966433, + -0.020779941231012344, + 0.0036574089899659157, + 0.004257098771631718, + -0.011512644588947296, + 0.009176645427942276, + -0.0020675344858318567, + -0.005076441913843155, + -0.022230353206396103, + 0.01978975534439087, + 0.007795964367687702, + 0.007279952522367239, + 0.0141345439478755, + 0.005958543624728918, + 0.011958925984799862, + 0.006676776334643364, + 0.005609886720776558, + -0.0008794865570962429, + -0.007496119476854801, + -0.011666053906083107, + 0.007147463038563728, + -0.004567402880638838, + -0.009734495542943478, + 0.014120597392320633, + -0.009211510419845581, + 0.0008576955297030509, + -0.01045272871851921, + -0.011094257235527039, + -0.03207641839981079, + -0.015619820915162563, + 0.003151856828480959, + -0.02614925429224968, + -0.003273886628448963, + 0.0009291701717302203, + 0.009539248421788216, + -0.023862065747380257, + -0.013499988242983818, + 0.026344502344727516, + 0.03483777865767479, + -0.009797253645956516, + 0.003191952360793948, + -0.005515749566257, + -0.03427992761135101, + 0.012391259893774986, + -0.009058102034032345, + -0.005306555423885584, + -0.0024249074049293995, + -0.005432071629911661, + 0.016833147034049034, + -0.0015279881190508604, + 0.007175355218350887, + 0.021100705489516258, + 0.007074244786053896, + -0.011951952241361141, + 0.012370340526103973, + 0.0035144598223268986, + -0.017363104969263077, + 0.0041385553777217865, + -0.00993671640753746, + 0.0043756416998803616, + -0.02161671780049801, + -0.004288477823138237, + 0.030374974012374878, + -0.011087283492088318, + -0.013757994398474693, + 0.00047242984874174, + 0.02345762401819229, + 0.023401839658617973, + 0.009469516575336456, + -0.015619820915162563, + -0.011254639364778996, + -0.01373707503080368, + -0.022816095501184464, + 0.017544405534863472, + 0.020849671214818954, + 0.008639713749289513, + 0.009532274678349495, + 0.010494567453861237, + 0.0009727522847242653, + -0.012042603455483913, + -0.012098388746380806, + -0.013527880422770977, + 0.005233337637037039, + -0.002206997014582157, + 0.019050603732466698, + -0.01695866324007511, + -0.004661540500819683, + -0.007137003354728222, + -0.003160573309287429, + -0.0002887313603423536, + -0.030347080901265144, + 0.0037097076419740915, + 0.010013421066105366, + 0.018450913950800896, + 0.021128596737980843, + 0.010355104692280293, + -0.007907534949481487, + 0.013569720089435577, + -0.007754125632345676, + -0.0074333613738417625, + 0.013981134630739689, + -0.021574877202510834, + -0.025382209569215775, + 0.001703188056126237, + -0.0035876776091754436, + -0.012900298461318016, + -0.03500513359904289, + 0.012405206449329853, + 0.01102452538907528, + 0.024489648640155792, + -0.004009552299976349, + -0.005526209250092506, + -0.01373707503080368, + -0.016317134723067284, + 0.007321791257709265, + 0.006774400360882282, + -0.009406758472323418, + -0.0026602507568895817, + 0.0006750865723006427, + -0.009413731284439564, + -0.02600979246199131, + 0.027571773156523705, + -0.006446662824600935, + -0.014002053998410702, + -0.005651725456118584, + -0.0031448835507035255, + 0.014420442283153534, + 0.021533038467168808, + 0.014713313430547714, + 0.009176645427942276, + 0.016930770128965378, + -0.013130412437021732, + 0.013067654334008694, + -0.01613583229482174, + 0.011958925984799862, + 0.0023133372887969017, + 0.001561110490001738, + 0.007112597115337849, + -0.0005011940374970436, + 0.008751283399760723, + -0.0012551641557365656, + 0.002892107469961047, + -0.01804647222161293, + -0.006111952476203442, + -0.016470544040203094, + 0.020263928920030594, + -0.014796990901231766, + 0.03330368921160698, + 0.013444202952086926, + 0.0037097076419740915, + -0.004943952430039644, + -0.008088836446404457, + 0.009560167789459229, + 0.010899009183049202, + -0.0027543881442397833, + 0.00633857911452651, + 0.02117043547332287, + -0.0018304478144273162, + -0.010180776007473469, + -0.01563376747071743, + -0.00688248360529542, + 0.0030925851315259933, + 0.005787701811641455, + -0.010431809350848198, + -0.021895641461014748, + 0.001982113579288125, + -0.025451941415667534, + -0.009866985492408276, + -0.03818488493561745, + 0.02520090714097023, + -0.013388418592512608, + -0.004860274959355593, + -0.017195750027894974, + 0.009511355310678482, + -0.0021738747600466013, + -0.00825619138777256, + -0.0013902686769142747, + 0.021867750212550163, + -0.013799833133816719, + 0.008590901270508766, + -0.037292324006557465, + 0.01658211462199688, + 0.022816095501184464, + -0.01253072265535593, + 0.0010564299300312996, + 0.02249533124268055, + -0.009350973181426525, + 0.011965898796916008, + 0.029119810089468956, + -0.011812489479780197, + 0.00534839415922761, + 0.010599164292216301, + -0.008479331620037556, + -0.002093683695420623, + -0.02799016237258911, + -0.007279952522367239, + -0.017781492322683334, + -0.00894653145223856, + 0.006770913489162922, + -0.0007840418256819248, + -0.0038944955449551344, + -0.02614925429224968, + -0.017293373122811317, + 0.01928769052028656, + 0.024071259424090385, + 0.048756156116724014, + 0.022969504818320274, + 0.018813516944646835, + 0.006408310495316982, + 0.03726442903280258, + -0.027362579479813576, + 0.013032788410782814, + 0.0025329911150038242, + -0.032104309648275375, + -0.015145648270845413, + -0.008493278175592422, + 0.0010808358201757073, + 0.022662686184048653, + 0.00810975581407547, + -0.023541301488876343, + -0.007851749658584595, + -0.010201695375144482, + -0.009706603363156319, + 0.004319856874644756, + -0.01132437027990818, + -0.006059654057025909, + 0.002111116424202919, + -0.016819199547171593, + 0.009030208922922611, + 0.00894653145223856, + 0.005076441913843155, + -0.009085994213819504, + -0.01493645366281271, + -0.008786149322986603, + 0.00325994030572474, + 0.03997000679373741, + -0.0064606089144945145, + -0.011896166950464249, + -0.01500618550926447, + 0.002545194001868367, + 0.007503092754632235, + 0.008465385064482689, + 0.003845683764666319, + 0.00602478813380003, + -0.026107415556907654, + -0.008521170355379581, + -0.019566616043448448, + 0.004992764443159103, + -0.0143925491720438, + -0.0061328718438744545, + -0.01811620406806469, + -0.0011950209736824036, + -0.02556351013481617, + 0.013235009275376797, + -0.007238113787025213, + -0.0024005016312003136, + -0.0011113432701677084, + -0.025884274393320084, + -0.0016665791627019644, + 0.002264525508508086, + 0.006920835934579372, + 0.03143488988280296, + -0.02045917697250843, + -0.018074365332722664, + -0.010717707686126232, + -0.0038735761772841215, + 0.015522196888923645, + 0.010717707686126232, + 0.010571272112429142, + -0.018799571320414543, + 0.029342949390411377, + 0.006802292540669441, + 0.0024998686276376247, + -0.0004061850777361542, + -0.025967951864004135, + 0.008465385064482689, + -0.014657529070973396, + -0.017781492322683334, + -0.011449886485934258, + -0.01219601184129715, + -0.0006079701706767082, + -0.028868775814771652, + 0.007970293052494526, + -0.01716785691678524, + 0.01490856148302555, + -0.007816883735358715, + 0.0024597730953246355, + -0.009148752316832542, + -0.001886232872493565, + -0.013465122319757938, + 0.009434650652110577, + -0.007137003354728222, + -0.002947892528027296, + -0.011784597299993038, + 0.00946254376322031, + -0.01066192239522934, + -0.014587797224521637, + -0.01987343281507492, + 0.006314173340797424, + 0.019036656245589256, + -0.01773965358734131, + -0.008465385064482689, + -0.006160764489322901, + -0.0029810150153934956, + 0.0010695045348256826, + -0.01694471761584282, + 0.0060631404630839825, + -0.00308735528960824, + 0.02702786959707737, + 0.008786149322986603, + -0.02475462667644024, + -0.0017572299111634493, + 0.007070758379995823, + 0.010159856639802456, + 0.019775809720158577, + -0.01078046578913927, + 0.00033885074662975967, + 0.015494304709136486, + 0.011938006617128849, + -0.02674894407391548, + 0.017558353021740913, + 0.0033976598642766476, + -0.002763104625046253, + -0.018241720274090767, + 0.019524777308106422, + -0.004807976074516773, + 0.005048549268394709, + 0.0178372785449028, + -0.0030315702315419912, + 0.0040025790221989155, + -0.006331606302410364, + 0.0052054449915885925, + 0.021086758002638817, + -0.003629516577348113, + -0.0043721552938222885, + 0.0196502935141325, + -0.004469779320061207, + -0.0009004059829749167, + 0.023332107812166214, + -0.008535116910934448, + -0.007021946366876364, + 0.016679737716913223, + -0.013207117095589638, + 0.008528143167495728, + -0.0031536000315099955, + -0.016163725405931473, + 0.014894614927470684, + 0.01304673496633768, + 0.0033802269026637077, + -0.0096089793369174, + -0.004727785009890795, + -0.015103809535503387, + 0.018897194415330887, + 0.008953504264354706, + 0.007335737347602844, + 0.006003868766129017, + -0.01000644825398922, + -0.01117793470621109, + 0.004047904629260302, + -0.003165803151205182, + 0.019176119938492775, + 0.009225456975400448, + 0.03316422924399376, + -0.010173803195357323, + 0.0034011462703347206, + -0.005397206172347069, + 0.01500618550926447, + 0.007349683903157711, + 0.029203487560153008, + 0.002597492653876543, + -0.0019263284048065543, + 2.5713432478369214e-5, + 0.017363104969263077, + -0.014699367806315422, + -0.007475200109183788, + 4.957462806487456e-5, + 0.00013870000839233398, + -0.00427453126758337, + -0.02111465111374855, + -0.012879379093647003, + -0.007391522638499737, + -0.014057839289307594, + -0.01856248453259468, + -0.026121361181139946, + -0.009595032781362534, + 0.01885535567998886, + 0.022258244454860687, + 0.023903904482722282, + -0.0013336120173335075, + 0.008123701438307762, + -0.004961385391652584, + -0.011519618332386017, + 0.00741244200617075, + 0.002112859860062599, + 0.0032843463122844696, + 0.005609886720776558, + 0.003653922351077199, + -0.010710734874010086, + 0.01847880706191063, + -0.008855881169438362, + 0.007398495450615883, + 0.013751021586358547, + 0.02235586941242218, + -0.002280215034261346, + -0.00498579116538167, + 0.010892036370933056, + -0.03193695470690727, + -0.0022209433373063803, + -0.03497724235057831 + ], + "40193ed8-343f-4536-b10c-0458b2fc74de": [ + -0.029802974313497543, + 0.004641047213226557, + -0.01414944976568222, + -0.008355974219739437, + -0.04044291377067566, + -0.01977580599486828, + 0.025931373238563538, + 0.053004730492830276, + 0.003596550552174449, + 0.04033150151371956, + -0.01084187626838684, + 0.04782402515411377, + -0.03877171874046326, + -0.007945138961076736, + -0.004463482648134232, + 0.009595443494617939, + -0.05715486407279968, + 0.03233762085437775, + -0.01070957351475954, + -0.02108490839600563, + 0.0721399113535881, + -0.03570786118507385, + -0.008098331280052662, + 0.023800600320100784, + -0.031557727605104446, + -0.018508482724428177, + 0.009337801486253738, + -0.007297550793737173, + -0.0015589114045724273, + -0.02703157626092434, + 0.01366898138076067, + 0.02024931088089943, + 0.0013700316194444895, + 0.01029177475720644, + 0.018675602972507477, + -0.023884158581495285, + -0.007966028526425362, + 0.017310792580246925, + -0.02100134827196598, + 0.022602910175919533, + -0.03295039013028145, + 0.012603593990206718, + 0.001584153389558196, + 0.000493524712510407, + 0.0009461399749852717, + 0.012777676805853844, + 0.03250473737716675, + -0.006172975990921259, + 0.002677393378689885, + -0.009031414985656738, + 0.004129244014620781, + 0.029245909303426743, + -0.02090386115014553, + 0.004188431892544031, + -0.0030499305576086044, + 0.002935035852715373, + 0.016879066824913025, + 0.0672377347946167, + -0.00020345926168374717, + -0.04294970631599426, + -0.014302642084658146, + -0.015806717798113823, + 0.0028253637719899416, + -0.005319970194250345, + -0.00513892387971282, + -0.013689870946109295, + 0.024218399077653885, + -0.005689025856554508, + -0.014233008958399296, + 0.02673911675810814, + -0.009379580616950989, + 0.02140522003173828, + -0.045317232608795166, + 0.005765622016042471, + -0.018717382103204727, + 0.015932057052850723, + 0.013035319745540619, + -0.057544808834791183, + 0.0021272916346788406, + 0.025332527235150337, + -0.02038857713341713, + 0.016795508563518524, + 0.004679345525801182, + -0.003885527839884162, + 0.021990139037370682, + 0.010479784570634365, + -0.043478917330503464, + -0.045428644865751266, + -0.04943951219320297, + -0.016252368688583374, + 0.016809433698654175, + 0.015486405231058598, + 0.009316910989582539, + 0.01967831887304783, + -0.0006458471762016416, + -0.001221190788783133, + 0.03214264661073685, + 0.02101527526974678, + -0.02687838301062584, + -0.025235041975975037, + -0.02004041150212288, + 0.011398941278457642, + -0.04367389157414436, + 0.0020942159462720156, + 0.018647748976945877, + -0.019413713365793228, + 0.005177222192287445, + -0.00014546792954206467, + -0.023814525455236435, + 0.024023424834012985, + 0.02104312740266323, + -0.018216023221611977, + -0.004717643838375807, + 0.00979737937450409, + 0.04723910614848137, + -0.0694659948348999, + -0.007986918091773987, + -0.030861398205161095, + -0.025332527235150337, + -0.058603230863809586, + 0.06010730564594269, + 0.038381773978471756, + 0.022338304668664932, + -0.02838245779275894, + 0.004849946592003107, + -0.0075691197998821735, + 0.0013665498699992895, + 0.007436817046254873, + 0.005062327720224857, + 0.01930229924619198, + 0.006465435028076172, + -0.015973836183547974, + -0.012986576184630394, + 0.011990822851657867, + -0.011935116723179817, + 0.030972810462117195, + 0.030889250338077545, + 0.05047008395195007, + -0.037936121225357056, + 0.023717040196061134, + -0.008718065917491913, + -0.004456519614905119, + -0.012234538793563843, + 0.00713739451020956, + 0.022491496056318283, + 0.02013789676129818, + -0.038493186235427856, + 0.03974658250808716, + 0.02024931088089943, + -4.849837932852097e-5, + -0.03264400362968445, + -0.00035208245390094817, + 0.038381773978471756, + 0.004014349076896906, + 0.0058979252353310585, + -0.003533880691975355, + 0.023020708933472633, + 0.02669733762741089, + -0.002668689237907529, + 0.024260178208351135, + -0.0030568938236683607, + -0.024343738332390785, + 0.02825711853802204, + -0.0013970143627375364, + -0.011844593100249767, + 0.017282940447330475, + 0.023090342059731483, + 0.02788110077381134, + -0.05386817827820778, + 0.01969224587082863, + 0.04005296900868416, + -0.03604210168123245, + 0.01056334376335144, + -0.007952101528644562, + -0.014943267218768597, + -0.014915414154529572, + 0.01980365812778473, + -0.006663889158517122, + 0.018243877217173576, + -0.03637634217739105, + -0.01944156549870968, + -0.01978973113000393, + -0.030332185328006744, + 0.0010958511848002672, + -0.012930870056152344, + 0.022505423054099083, + 0.012882126495242119, + 0.016433415934443474, + -0.038409627974033356, + 0.015514258295297623, + 0.010124655440449715, + 0.008892148733139038, + 0.014776147902011871, + 0.05553937330842018, + -0.018285656347870827, + 0.00527819013223052, + -0.0051598139107227325, + 0.025388235226273537, + 0.04066574200987816, + 0.023717040196061134, + -0.032031234353780746, + -0.04885459691286087, + -0.057489100843667984, + 0.024956509470939636, + -0.06105431541800499, + 0.010897582396864891, + 0.018021050840616226, + -0.007840689271688461, + 0.024455150589346886, + -0.018787015229463577, + 0.030248625203967094, + -0.023243535310029984, + 0.013467044569551945, + 0.018299583345651627, + -0.01050763763487339, + -0.009087122045457363, + -0.028521724045276642, + 0.018424922600388527, + -0.008592726662755013, + 0.022129405289888382, + -0.024120911955833435, + 0.010605123825371265, + 0.029218055307865143, + -0.02026323787868023, + -0.04005296900868416, + -0.018522409722208977, + -0.04144563153386116, + 0.014664734713733196, + -0.02192050591111183, + 0.008349010720849037, + 0.02129380777478218, + 0.004842983093112707, + 0.029942240566015244, + -0.02736581489443779, + -0.02101527526974678, + 0.008188854902982712, + -0.002186479978263378, + -0.011586951091885567, + 0.02692016400396824, + -0.015416772104799747, + 0.03935663774609566, + 0.016461268067359924, + 0.024093057960271835, + 0.028828110545873642, + 0.014678660780191422, + 0.03657131269574165, + -0.0062217190861701965, + 0.052726197987794876, + 0.010396224446594715, + -0.018466703593730927, + 0.005796956829726696, + 0.029190203174948692, + 0.028688844293355942, + -0.010319627821445465, + -0.017463985830545425, + 0.028688844293355942, + 0.024998288601636887, + 0.005626355763524771, + -0.04172416403889656, + -0.012582704424858093, + -0.015542111359536648, + -0.011844593100249767, + 0.018048904836177826, + -0.023953791707754135, + 0.04609712213277817, + -0.02640487812459469, + 0.024246251210570335, + -0.03946805000305176, + 0.011057739146053791, + 0.026154199615120888, + -0.045456498861312866, + -0.004895207937806845, + -0.002997705712914467, + 0.02004041150212288, + -0.013000503182411194, + -0.007757129147648811, + 0.001578930881805718, + 0.024483004584908485, + 0.004804685246199369, + 0.011475537903606892, + -0.0009522328618913889, + 0.022004064172506332, + 0.009978425689041615, + 0.02043035626411438, + -0.016628388315439224, + -0.03261615335941315, + -0.00042650284012779593, + 0.01379432063549757, + -0.05317184701561928, + -0.012958723120391369, + 0.01092543639242649, + -0.015374992042779922, + 0.03233762085437775, + -0.010730463080108166, + 0.02038857713341713, + -0.013884843327105045, + -0.006489806342869997, + -0.029691562056541443, + -0.011482501402497292, + 0.015792790800333023, + -0.024469077587127686, + 0.009825232438743114, + 0.045038700103759766, + -0.014184266328811646, + 0.002994223963469267, + -0.013606310822069645, + 0.02829889953136444, + -0.02632131800055504, + -0.050887882709503174, + 0.010751353576779366, + 0.04687701538205147, + 0.0014979824190959334, + -0.018397070467472076, + -0.03375813364982605, + -0.012185795232653618, + 0.002371007576584816, + -0.00707472488284111, + 0.003721890039741993, + 0.012318097986280918, + -0.02687838301062584, + 0.013118878938257694, + -0.011802813038229942, + -0.06278122216463089, + 0.0037775966338813305, + 0.03988584876060486, + -0.04643136262893677, + 0.013000503182411194, + 0.005636801011860371, + -0.014971120283007622, + -0.01992899738252163, + -0.006058081053197384, + -0.031919822096824646, + -0.038019683212041855, + 0.006051118019968271, + -0.006162530742585659, + -0.02019360475242138, + -0.04854821041226387, + -0.01972009800374508, + -0.01072350051254034, + -0.004693272057920694, + -0.018229950219392776, + 0.04275473579764366, + -0.024496929720044136, + -0.0030725612305104733, + 0.02789502590894699, + -0.004696753807365894, + -0.03988584876060486, + 0.025792106986045837, + -0.015500332228839397, + -0.011719253845512867, + 0.0006750060128979385, + -0.015569965355098248, + 0.025430014356970787, + -0.013954476453363895, + 0.01000627875328064, + 0.014609027653932571, + -0.026112418621778488, + -0.009114975109696388, + -0.005723842419683933, + 0.0051249973475933075, + -0.010807059705257416, + -0.007269697263836861, + -0.038409627974033356, + -0.007875505834817886, + 0.015402845107018948, + 0.03409237414598465, + 0.019176959991455078, + 0.016628388315439224, + 0.0005104977753944695, + 0.02737974189221859, + -0.03690555319190025, + 0.043924570083618164, + 0.03292253613471985, + -0.003328463062644005, + -0.051472801715135574, + 0.0017077522352337837, + 0.02806214615702629, + 0.0003159602638334036, + -0.024510856717824936, + 0.03267185762524605, + -0.018132463097572327, + 0.016684094443917274, + 0.0020141378045082092, + -0.010389260947704315, + 0.04704413563013077, + 0.0012951759854331613, + -0.005441828165203333, + -0.014344422146677971, + -0.02059747651219368, + -0.030360039323568344, + -0.04099997878074646, + -0.009504920803010464, + -0.050386521965265274, + 0.009595443494617939, + -0.019566906616091728, + 0.024552637711167336, + 0.002468493999913335, + -0.0003383734147064388, + 0.03406452015042305, + 0.018118537962436676, + 0.004728088621050119, + -0.024914728477597237, + -0.007443780079483986, + -0.005382639821618795, + 0.016224516555666924, + 0.005929260049015284, + -0.0002028064482146874, + -0.01049371063709259, + 0.01378735713660717, + 0.001350012025795877, + -0.0030934512615203857, + 0.008181891404092312, + 0.0016033025458455086, + -0.012366841547191143, + 0.0640067607164383, + -0.008940892294049263, + 0.008613616228103638, + 0.004021312575787306, + -0.05955024063587189, + -0.01987329125404358, + 0.044481635093688965, + 0.07431246340274811, + -0.011015959084033966, + 0.010048058815300465, + -0.028911670669913292, + -0.008864295668900013, + 0.029245909303426743, + 0.02708728238940239, + -0.0031178228091448545, + 0.0047977217473089695, + -0.01967831887304783, + 0.007234880700707436, + -0.029970094561576843, + -0.038047533482313156, + 0.018062829971313477, + 0.012415585108101368, + 0.02119632065296173, + -0.0023309686221182346, + -0.011684437282383442, + -0.0003829821362160146, + 0.02689231000840664, + 0.023535992950201035, + 0.016976553946733475, + 0.003490359988063574, + -0.01027784775942564, + -0.028660990297794342, + -0.006305278744548559, + 0.008550946600735188, + 0.009518846869468689, + 0.007826762273907661, + 0.00692849513143301, + 0.044871579855680466, + -0.045122258365154266, + 0.022366156801581383, + -0.019344080239534378, + -0.008167964406311512, + -0.0036801102105528116, + 0.01316065900027752, + 0.01091847289353609, + 0.018188171088695526, + -0.008857332170009613, + 0.007548229768872261, + 0.024176618084311485, + -0.021753385663032532, + -0.022449716925621033, + -0.05528869479894638, + -0.018703455105423927, + 0.011879409663379192, + -0.004975286312401295, + -0.013028356246650219, + -0.014831854030489922, + 0.04283829405903816, + -0.029385175555944443, + 0.018257804214954376, + -0.019427640363574028, + 0.01984543912112713, + 0.005271227099001408, + -0.03645990043878555, + -0.0027626939117908478, + -0.008864295668900013, + -0.012394694611430168, + -0.007353257387876511, + -0.013077099807560444, + 0.017269013449549675, + 0.04024794325232506, + -0.022561129182577133, + -0.00965114962309599, + -0.0005400918889790773, + 0.04384101182222366, + -0.014469761401414871, + 0.04239264130592346, + -0.008585763163864613, + -0.013139769434928894, + -0.017101893201470375, + -0.03637634217739105, + -0.051194269210100174, + -0.0031770109198987484, + -0.03398096188902855, + -0.009922719560563564, + -0.04058218002319336, + 0.0649537742137909, + 0.0008991376380436122, + 0.02710120938718319, + 0.02682267688214779, + 0.002182998228818178, + -0.0011828925926238298, + 0.0033911329228430986, + 0.017547545954585075, + -0.003697518492117524, + -0.0029924833215773106, + 0.000148187973536551, + 0.008014772087335587, + -0.011015959084033966, + -0.004167541861534119, + -0.011858520098030567, + 0.022366156801581383, + -0.017700739204883575, + 0.0055288695730268955, + 0.008822515606880188, + -0.009783453308045864, + 0.01329296175390482, + 0.011921189725399017, + 0.013557568192481995, + -0.00017168915655929595, + 0.008300267159938812, + -0.013829137198626995, + -0.016614461317658424, + 0.016335928812623024, + 0.037880416959524155, + 0.007193101104348898, + -0.03275541961193085, + 0.001450980082154274, + 0.003979532513767481, + 0.007624826394021511, + 0.02051391638815403, + -0.026070639491081238, + -0.006242609117180109, + -0.02685053087770939, + -0.003760188352316618, + 0.030527157709002495, + -0.011294491589069366, + -0.0020994385704398155, + -0.015263578854501247, + -0.002012397162616253, + 0.015347138978540897, + 0.04233693704009056, + -0.016586609184741974, + 0.014316569082438946, + 0.0031857150606811047, + 0.008230634033679962, + -0.008773772977292538, + 0.017422206699848175, + 0.004599267616868019, + -0.002350117778405547, + 0.03863245248794556, + -0.025875667110085487, + 0.038660306483507156, + -0.026042785495519638, + -0.051695626229047775, + 0.003781078150495887, + 0.012185795232653618, + -0.011468574404716492, + 0.0029315543361008167, + 0.005835255142301321, + -0.044342368841171265, + -0.007492523640394211, + -0.013815210200846195, + 0.008202780969440937, + -0.014845781028270721, + 0.014581174589693546, + 0.02098742127418518, + 0.02030501700937748, + 0.019246593117713928, + -0.01980365812778473, + -0.011440721340477467, + 0.019344080239534378, + 0.015918130055069923, + 0.013404374942183495, + 0.0001006960155791603, + -0.003490359988063574, + 0.011252711527049541, + -0.04016438126564026, + 0.009525810368359089, + -0.02824319154024124, + -0.011879409663379192, + 0.025151481851935387, + -0.05609643831849098, + -0.03952375799417496, + 0.011482501402497292, + 0.022714322432875633, + 0.000957455369643867, + 0.01344615500420332, + 0.021864797919988632, + 0.013216366060078144, + 0.006813600659370422, + 0.030638571828603745, + 0.013118878938257694, + 0.04097212478518486, + 0.000826022878754884, + -0.010403187945485115, + -0.004303326830267906, + 0.010034131817519665, + 0.024789389222860336, + -0.0030830062460154295, + -0.00010249124170513824, + 0.023382801562547684, + -0.02134951390326023, + -0.012694117613136768, + -0.0014962416607886553, + -0.010591196827590466, + 0.0014370534336194396, + -0.0032100866083055735, + 0.022825736552476883, + -0.00980434287339449, + 0.02069496177136898, + 0.014748293906450272, + 0.03490011766552925, + 0.022797882556915283, + 0.010410151444375515, + -0.04091642051935196, + 0.02781146764755249, + -0.05542796105146408, + 0.051417093724012375, + -0.02054177038371563, + 0.004442593082785606, + -0.012283281423151493, + -0.02849387191236019, + -0.004310289863497019, + -0.016962626948952675, + 0.016377709805965424, + 0.01995685137808323, + 0.013829137198626995, + 0.02144700102508068, + -0.008906075730919838, + 0.007092133164405823, + 0.023772746324539185, + 0.013139769434928894, + 0.04654277488589287, + -0.01091847289353609, + 0.012199722230434418, + 0.005365231540054083, + -0.005225965287536383, + -0.005553240887820721, + 0.02721262164413929, + -0.015932057052850723, + -0.012025639414787292, + -0.038381773978471756, + 0.018717382103204727, + 0.02809000015258789, + -0.003161343513056636, + -0.06166708841919899, + 0.012526997365057468, + 0.03593068942427635, + 0.003892491338774562, + -0.0019897662568837404, + -0.03916166350245476, + -0.018647748976945877, + -0.00521900225430727, + 0.01946941949427128, + -0.013139769434928894, + 0.023382801562547684, + 0.012241502292454243, + -0.0016276740934699774, + 0.011496427468955517, + 0.025931373238563538, + -0.016085250303149223, + 0.01037533488124609, + -0.015193945728242397, + 0.02083422802388668, + 0.028452090919017792, + -0.012345951981842518, + 0.025694619864225388, + 0.022407937794923782, + 0.014734367839992046, + -0.008481313474476337, + -0.008550946600735188, + -0.005483607761561871, + -0.017993196845054626, + 0.02048606239259243, + -0.015945984050631523, + -0.023661334067583084, + -0.00500313937664032, + -0.022700395435094833, + 0.005828292109072208, + 0.02004041150212288, + -0.016711948439478874, + 0.0013587161665782332, + 0.04737837240099907, + -0.025095775723457336, + -4.449991320143454e-5, + 0.009289057925343513, + 0.014226045459508896, + -0.023786673322319984, + 0.02639095112681389, + 0.006037191487848759, + 0.023062488064169884, + -0.019246593117713928, + -0.00522248400375247, + 0.03180840611457825, + -0.008014772087335587, + -0.03272756561636925, + -0.03520650416612625, + -0.0026843566447496414, + -0.025388235226273537, + 0.0003324981371406466, + 0.008564873598515987, + -0.02058354951441288, + 0.003136971965432167, + 0.02662770450115204, + 0.004407776519656181, + 0.01414944976568222, + -0.002959407400339842, + -0.009240314364433289, + 0.011907262727618217, + 0.0018052385421469808, + -0.0047942399978637695, + -0.0016468232497572899, + 0.013258145190775394, + 0.0008656266727484763, + 0.012095272541046143, + -0.02668341062963009, + 0.04659848287701607, + 0.01035444438457489, + -0.04952307417988777, + -0.05280975624918938, + 0.026042785495519638, + 0.017032260075211525, + 0.001085406169295311, + -0.02822926640510559, + -0.0033545754849910736, + 0.051055002957582474, + 0.014226045459508896, + -0.013898770324885845, + 0.017018333077430725, + -0.014776147902011871, + -0.010612087324261665, + -0.019358007237315178, + -0.0020646220073103905, + 0.02817355841398239, + -0.02841031178832054, + -0.0011968192411586642, + -0.029858680441975594, + 0.04779617115855217, + 0.03604210168123245, + 0.012450401671230793, + -0.009832195937633514, + -0.011531244032084942, + 0.002221296541392803, + 0.011503390967845917, + 0.03665487468242645, + 0.04083285853266716, + -0.03217050060629845, + 0.04164060577750206, + 0.03542932868003845, + -0.016586609184741974, + 0.002383193466812372, + 0.013097989372909069, + 0.0020263236947357655, + -0.007743202615529299, + 0.04022008925676346, + -0.012937833555042744, + -0.0009330837638117373, + 0.014441908337175846, + -0.017561472952365875, + 0.0027644347865134478, + -0.003556511364877224, + -0.031139930710196495, + 0.023508140817284584, + 0.05294902250170708, + -0.024385517463088036, + 0.006594256032258272, + -0.005302561912685633, + 0.013474008068442345, + 0.02104312740266323, + 0.01372468750923872, + -0.016001690179109573, + 0.029719414189457893, + 0.002404083264991641, + -0.038214653730392456, + 0.022672543302178383, + -0.03222620487213135, + -0.04754549264907837, + -0.0006245220429264009, + -0.030944956466555595, + 0.017867857590317726, + -0.013097989372909069, + 0.03523435816168785, + 0.03473299741744995, + 0.003596550552174449, + -0.023215681314468384, + 0.014511541463434696, + 0.023730967193841934, + -0.024942582473158836, + -0.0041013904847204685, + 0.002383193466812372, + -0.010061985813081264, + 0.024524783715605736, + -0.024956509470939636, + -0.012352914549410343, + 0.010472821071743965, + 0.007367183919996023, + -0.04225337505340576, + 0.011371088214218616, + 0.044119544327259064, + -0.021990139037370682, + 6.223459786269814e-5, + 0.031752701848745346, + 0.002609501127153635, + -0.007126949727535248, + 0.02022145688533783, + -0.02765827439725399, + 0.009706856682896614, + -0.010995069518685341, + 0.0034712108317762613, + -0.011029886081814766, + -0.02696194313466549, + -0.000561852240934968, + -0.03437090665102005, + 0.018954133614897728, + -0.031613435596227646, + 0.0007459447951987386, + 0.02863313816487789, + 0.04203055053949356, + 0.00713739451020956, + 0.016767654567956924, + -0.015193945728242397, + -0.029440881684422493, + -0.015500332228839397, + 0.010521563701331615, + 0.006528104655444622, + -0.003955161198973656, + -0.01428871601819992, + -0.008070478215813637, + 0.02111276052892208, + 0.023939866572618484, + 0.024051278829574585, + -0.01435834914445877, + -0.006757894065231085, + -0.04033150151371956, + 0.012220611795783043, + 0.007381110452115536, + -0.031084222719073296, + -0.024886876344680786, + -0.005431382916867733, + -0.011858520098030567, + -0.01357149425894022, + 0.0024545674677938223, + 0.014455835334956646, + 0.024608343839645386, + -0.0061103058978915215, + 0.016015617176890373, + -0.028744550421833992, + -0.012345951981842518, + -0.023243535310029984, + -0.05448095127940178, + 0.014539394527673721, + -0.016475195065140724, + 0.014762220904231071, + 0.0015615226002410054, + 0.007638752926141024, + -0.006211273837834597, + 0.012875162996351719, + 0.009149791672825813, + -0.02849387191236019, + 0.00686582550406456, + -0.009254241362214088, + -0.029580147936940193, + 0.052364103496074677, + 0.00016690188203938305, + -0.0036766286939382553, + -0.008154038339853287, + 0.004303326830267906, + -0.003533880691975355, + -0.005100626032799482, + -0.030025800690054893, + -0.02147485315799713, + -0.01072350051254034, + 0.0058178468607366085, + -0.022714322432875633, + -0.0008651914540678263, + -0.016558755189180374, + 0.02017967775464058, + 0.012415585108101368, + 0.004641047213226557, + -0.06294833868741989, + 0.017617179080843925, + 0.0016720652347430587, + -0.0029211093205958605, + 0.026349171996116638, + -0.02799251303076744, + 0.0018905390752479434, + 0.01336955837905407, + -0.017269013449549675, + -0.03214264661073685, + -0.007896395400166512, + -0.03977443650364876, + -0.02034679614007473, + 0.004947432782500982, + -0.009908792562782764, + -0.009574553929269314, + -0.0038437480106949806, + -0.001944504794664681, + -0.02126595377922058, + 0.03509509190917015, + -0.012311135418713093, + -0.04158489778637886, + 0.005055364221334457, + 0.02162804640829563, + 0.009358691051602364, + 0.05322755500674248, + 0.03425949439406395, + 0.026279538869857788, + -0.0006079841405153275, + -0.03292253613471985, + 0.006782265845686197, + 0.02740759402513504, + 0.005581094417721033, + -0.018007123842835426, + -0.024371590465307236, + -0.010758317075669765, + -0.01974795199930668, + -0.0071304310113191605, + 0.016795508563518524, + 0.014609027653932571, + -0.011510354466736317, + -0.014163375832140446, + 0.006089416332542896, + 0.015639597550034523, + 0.002513755578547716, + 0.0021220692433416843, + 0.004202358424663544, + 0.023341020569205284, + 0.014163375832140446, + -0.016739800572395325, + 0.009692929685115814, + -0.03523435816168785, + 0.018940208479762077, + -0.00171297462657094, + -0.022992854937911034, + -0.036961257457733154, + -0.011823703534901142, + 0.0045052627101540565, + 0.01951119862496853, + -0.029134497046470642, + 0.038075387477874756, + -0.019051620736718178, + -0.03554074466228485, + 0.029162349179387093, + 0.011036848649382591, + -0.008376863785088062, + 0.012659301050007343, + 0.03515079617500305, + 0.0028862927574664354, + 0.011579987592995167, + 0.02161411941051483, + 0.022101551294326782, + -0.004021312575787306, + 0.038493186235427856, + 0.016670167446136475, + -0.007617862895131111, + -0.01064690388739109, + 0.009602406993508339, + -0.021934431046247482, + -0.004230211954563856, + -0.050665054470300674, + 0.002804473740980029, + -0.032031234353780746, + 0.017450058832764626, + 0.012903016991913319, + 0.010995069518685341, + -0.008133147843182087, + -0.005776067264378071, + 0.011022922582924366, + -0.006378393620252609, + 0.00699812825769186, + -0.008063514716923237, + -0.022296523675322533, + -0.0029890015721321106, + 0.008355974219739437, + -0.004912616219371557, + 0.024956509470939636, + 0.024677976965904236, + -0.0006105953943915665, + -0.0002735275775194168, + -0.01939978636801243, + -0.0025624986737966537, + -0.015737084671854973, + 0.0026826157700270414, + 0.02109883539378643, + -0.02024931088089943, + 0.038214653730392456, + -0.03615351393818855, + -0.0032187907490879297, + -0.03648775443434715, + 0.0033093139063566923, + -0.02062532864511013, + -0.025248968973755836, + -0.016252368688583374, + 0.009456177242100239, + -0.011134335771203041, + -0.02004041150212288, + 0.017213307321071625, + -0.022073697298765182, + 0.023187827318906784, + -0.005671617574989796, + -0.0014588137855753303, + -0.008780736476182938, + 0.00700161000713706, + 0.031585581600666046, + 0.029802974313497543, + 0.010034131817519665, + -0.015305358916521072, + 0.005055364221334457, + -0.02820141240954399, + 0.03314536437392235, + 0.012095272541046143, + 0.0032240133732557297, + -0.04267117381095886, + -0.00994360912591219, + 0.02885596454143524, + -0.010479784570634365, + -0.03375813364982605, + 0.013898770324885845, + -0.0026286502834409475, + -0.003979532513767481, + 0.0029907424468547106, + 0.0035895872861146927, + 0.011315381154417992, + 0.015667451545596123, + 0.007715349551290274, + -0.031557727605104446, + 0.00171384506393224, + -0.001088887918740511, + -0.01967831887304783, + 0.01077920664101839, + -0.014678660780191422, + 0.007290587294846773, + -0.05464807152748108, + -0.016530901193618774, + 0.00062626285944134, + 0.02863313816487789, + 0.009121938608586788, + -0.013682907447218895, + -0.005051882471889257, + 0.005337378475815058, + -0.025597134605050087, + -0.010758317075669765, + 0.01339044887572527, + -0.0019636538345366716, + 0.024162691086530685, + 0.026195978745818138, + -0.00685189850628376, + 0.011684437282383442, + -0.023048561066389084, + -0.000412576220696792, + -0.0037079635076224804, + -0.012485218234360218, + -0.0020715852733701468, + -0.0034781740978360176, + 0.023076415061950684, + -0.005849181674420834, + 0.02625168487429619, + 0.037351205945014954, + -0.02609849162399769, + 0.022338304668664932, + -0.015583891421556473, + -0.013000503182411194, + 0.022839661687612534, + 0.008453460410237312, + -0.012130089104175568, + -0.0020315460860729218, + 0.017533618956804276, + -0.006340095307677984, + 0.029134497046470642, + -0.0005583705496974289, + 0.015235725790262222, + -0.016085250303149223, + 0.004477409645915031, + 0.003335426328703761, + 0.003396355314180255, + 0.0007115633925423026, + -0.001219449914060533, + -0.023939866572618484, + -0.00672307750210166, + -0.018968060612678528, + -0.044230956584215164, + 0.013118878938257694, + 0.014469761401414871, + 0.0034816558472812176, + 0.023299241438508034, + -0.024636195972561836, + 0.017840005457401276, + -0.010034131817519665, + -0.008759845979511738, + -0.0015240948414430022, + 0.004355551674962044, + -0.031223488971590996, + 0.059661656618118286, + 0.017074041068553925, + -0.0027557306457310915, + 0.014086779206991196, + -0.014170339331030846, + -0.0014283492928370833, + 0.015347138978540897, + 0.01959475874900818, + 0.011203968897461891, + 0.017060114070773125, + -0.018619894981384277, + 0.003526917425915599, + 0.031780555844306946, + 0.013014429248869419, + -0.007979955524206161, + 0.0038750830572098494, + 0.007325403857976198, + 0.005017065908759832, + -0.029078789055347443, + -0.025485720485448837, + -0.0008495240472257137, + -0.008676286786794662, + 0.018787015229463577, + -0.013968403451144695, + -0.014804000966250896, + -0.02682267688214779, + 0.008745919913053513, + -0.008098331280052662, + -0.03643204644322395, + -0.006538549903780222, + 0.025945300236344337, + 0.007234880700707436, + 0.012206685729324818, + 0.011719253845512867, + -0.02157234027981758, + 0.007617862895131111, + -0.00021227220713626593, + -0.01963653974235058, + -0.0008373382152058184, + -0.004745496902614832, + -0.025652840733528137, + -0.00981130637228489, + -0.008885186165571213, + -0.009135864675045013, + 0.0034694699570536613, + 0.004522670991718769, + 0.01435834914445877, + 0.010340518318116665, + -0.005539314355701208, + -0.004456519614905119, + 0.0003792828938458115, + 0.0051981122232973576, + -0.011635693721473217, + -0.00520855700597167, + -0.010612087324261665, + -0.0005675099091604352, + -0.009637223556637764, + -0.031752701848745346, + -0.04130636528134346, + -0.02644665725529194, + 0.0022561131045222282, + 0.022045845165848732, + -0.012450401671230793, + -0.014609027653932571, + -0.014609027653932571, + 0.008829479105770588, + -0.010800096206367016, + -0.0069145685993134975, + -0.014184266328811646, + -0.003728853538632393, + -0.019051620736718178, + -0.007562156300991774, + -0.010974179022014141, + 0.02008219063282013, + -0.009024452418088913, + 0.011162188835442066, + 0.03517865017056465, + -0.022756103426218033, + 0.011217894963920116, + -0.024900803342461586, + -0.014024109579622746, + 0.0004682827275246382, + -0.0003137842286378145, + 0.02083422802388668, + -0.0009034897084347904, + -0.010897582396864891, + -0.012889089994132519, + -0.001743439119309187, + 0.01350882463157177, + -0.024636195972561836, + -0.007388073951005936, + -0.007854615338146687, + -0.0031143410596996546, + 0.0020593993831425905, + -0.015806717798113823, + -0.02708728238940239, + -0.01959475874900818, + -0.012596630491316319, + 0.008892148733139038, + -0.012861236929893494, + -0.013014429248869419, + -0.007422890514135361, + 0.015764938667416573, + -0.023466359823942184, + 0.006869306787848473, + 0.009330837987363338, + -0.018787015229463577, + 0.02063925564289093, + -0.005716878920793533, + -0.023243535310029984, + -0.00342943100258708, + 0.00507277250289917, + -0.0031508984975516796, + -0.0024249732960015535, + -0.013195475563406944, + -0.0004595785867422819, + -0.013188512064516544, + -0.011489463970065117, + 0.026349171996116638, + -0.0013117138296365738, + -0.006615146063268185, + 0.0028479944448918104, + -0.025262894108891487, + -0.003063857089728117, + 0.0033145362976938486, + -0.02800644002854824, + -0.022282596677541733, + 0.01939978636801243, + -0.018578115850687027, + 0.003920344635844231, + 0.019065547734498978, + 0.012137052603065968, + -0.0030934512615203857, + 0.015054680407047272, + 0.011886373162269592, + -0.0005379158537834883, + 0.018675602972507477, + -0.001813942682929337, + -0.004752460401505232, + 0.011489463970065117, + -0.029050936922430992, + 0.0030603755731135607, + -0.003206605091691017, + 0.0065489946864545345, + 0.008328121155500412, + 0.019037693738937378, + -0.031585581600666046, + 0.008947855792939663, + 0.017937490716576576, + -0.013689870946109295, + 0.022533277049660683, + -0.011224858462810516, + -0.011893336661159992, + 0.0031421943567693233, + 0.013146732933819294, + -0.02095956914126873, + -0.0006950255483388901, + -0.028521724045276642, + 0.009309947490692139, + 0.008829479105770588, + 0.0048325383104383945, + -0.011774959973990917, + -0.016308076679706573, + -0.009073195047676563, + 0.0029768156819045544, + 0.017060114070773125, + -0.0017242900794371963, + -0.023800600320100784, + 0.0019305781461298466, + 0.000628003675956279, + -0.017366498708724976, + 0.007297550793737173, + -0.024274105206131935, + 0.0036104770842939615, + 0.011795850470662117, + -0.021809091791510582, + 0.022881442680954933, + 0.0019636538345366716, + 0.03484441339969635, + 0.006461953278630972, + -0.023341020569205284, + -0.014260862022638321, + 0.01442798227071762, + 0.02029109001159668, + 0.02107098139822483, + -0.003930789418518543, + -0.015709230676293373, + -0.014859707094728947, + -0.015416772104799747, + 0.00243193656206131, + 0.009351727552711964, + -0.04113924503326416, + 0.003694036975502968, + 0.025624986737966537, + 0.0007838077726773918, + -0.0010488488478586078, + -0.026363098993897438, + -0.019079474732279778, + 0.0018661675276234746, + -0.029608001932501793, + 0.015500332228839397, + -0.002868884475901723, + 0.00535478675737977, + -0.004519189242273569, + 0.01419819239526987, + 0.0069180503487586975, + -0.002139477524906397, + -0.009741673246026039, + 0.004686308559030294, + -0.014664734713733196, + 0.010041095316410065, + 0.002005433663725853, + -0.03386954963207245, + 0.014233008958399296, + 0.03846533223986626, + 0.007903358899056911, + 0.0038367847446352243, + 0.002512014703825116, + -0.014539394527673721, + -0.004714162088930607, + 0.0003866814076900482, + -0.01963653974235058, + -0.003330203937366605, + 0.012513071298599243, + 0.0009261204395443201, + -0.010270885191857815, + 0.014455835334956646, + -0.0034102818462997675, + 0.036404192447662354, + 0.004536597523838282, + -0.0026582442224025726, + 0.010382297448813915, + 0.0040700556710362434, + -0.030165066942572594, + 0.007819798775017262, + -0.0019636538345366716, + -0.0004397766606416553, + -0.0017643291503190994, + 0.0008982672006823123, + -0.008913039229810238, + -0.010243031196296215, + -0.03347960114479065, + 0.008098331280052662, + 0.008913039229810238, + -0.0014535912778228521, + -0.0002841901732608676, + 0.0010131618473678827, + 0.006409728433936834, + -0.003008150728419423, + -0.0031213045585900545, + -0.001521483645774424, + 0.017756445333361626, + 0.007583046332001686, + -0.002179516479372978, + -0.016767654567956924, + 0.015514258295297623, + 0.0037114452570676804, + -0.0017947936430573463, + -0.014887560158967972, + -0.012380768544971943, + -0.0009156754822470248, + -0.01991507224738598, + 0.013404374942183495, + -0.008843406103551388, + -0.016280222684144974, + 0.03512294590473175, + 0.03314536437392235, + 0.004895207937806845, + 0.00521552050486207, + -0.023689186200499535, + 0.0031752700451761484, + 0.014734367839992046, + -0.01065386738628149, + -0.015820644795894623, + 0.029608001932501793, + -0.011364124715328217, + -0.005943186581134796, + -0.002800992224365473, + 0.030137212947010994, + -0.002170812338590622, + 0.02685053087770939, + -0.004571414086967707, + -0.000428678875323385, + -0.003951679449528456, + -0.0014614250976592302, + 0.012394694611430168, + -0.015932057052850723, + 0.022547204047441483, + 0.016767654567956924, + -0.00522248400375247, + -0.011740143410861492, + 0.016168810427188873, + -0.0034155044704675674, + -0.009992352686822414, + 5.592409797827713e-5, + 0.012060455977916718, + -0.0029454808682203293, + 0.04584644362330437, + -0.004010867327451706, + -0.014762220904231071, + -0.009525810368359089, + -0.008453460410237312, + 0.0012255428591743112, + 0.01930229924619198, + 0.02863313816487789, + 0.011656584218144417, + 0.022575056180357933, + -0.01343222800642252, + 0.00025242005358450115, + -0.031307049095630646, + 0.004317253362387419, + 0.010201252065598965, + 0.0026530218310654163, + -0.016349855810403824, + -7.496440230170265e-5, + -0.0015763196861371398, + 0.018856648355722427, + 0.0045122262090444565, + -0.00973470974713564, + 0.017853930592536926, + -0.008362937718629837, + 0.01391965989023447, + -0.05077647045254707, + -0.023772746324539185, + -0.01384306326508522, + 0.018787015229463577, + -0.012533960863947868, + 0.02098742127418518, + -0.0036139588337391615, + 0.01020821463316679, + 0.0016973072197288275, + 0.013091025874018669, + 0.014163375832140446, + 0.008578799664974213, + 0.009268168359994888, + 0.016349855810403824, + -0.011197005398571491, + 0.02137736789882183, + -0.009783453308045864, + 0.008829479105770588, + -0.009456177242100239, + 0.007562156300991774, + 0.008383827283978462, + 0.005017065908759832, + -0.001686862320639193, + -0.018926281481981277, + 0.004348588176071644, + 0.009713820181787014, + 0.0028897742740809917, + -0.016851214691996574, + -0.004463482648134232, + -0.02782539278268814, + 0.0011724475771188736, + 0.0047211251221597195, + 0.011524280533194542, + -0.018076756969094276, + 0.007924248464405537, + 0.003941234666854143, + 0.010535490699112415, + -0.016322001814842224, + -0.008906075730919838, + -0.0015275764744728804, + 0.011754070408642292, + -0.03534577041864395, + -0.005849181674420834, + -0.008474349975585938, + -0.005831773392856121, + -0.005048401188105345, + -0.008906075730919838, + 0.013877879828214645, + 0.006381875369697809, + -0.006420173216611147, + 0.012715007178485394, + -0.008474349975585938, + 0.01931622624397278, + -0.004460001364350319, + 0.030722131952643394, + -0.0028915151488035917, + -0.006134677678346634, + -0.04203055053949356, + -0.03214264661073685, + -0.008669323287904263, + 0.006684779189527035, + -0.007395036984235048, + -0.0015362806152552366, + -0.03693340718746185, + 0.016266295686364174, + -0.007367183919996023, + 0.029691562056541443, + -0.0047594234347343445, + 0.022602910175919533, + -0.011461610905826092, + 0.03364672139286995, + -0.015110386535525322, + 0.000132085318909958, + 0.016823360696434975, + 0.02004041150212288, + 0.038409627974033356, + -0.022171184420585632, + 0.009637223556637764, + 0.016294149681925774, + -0.005400048103183508, + -0.022366156801581383, + 0.0014657771680504084, + -0.007945138961076736, + -0.0013421783223748207, + 0.01965046487748623, + -0.004909134935587645, + 0.0007220084080472589, + -0.005257300566881895, + 0.00048003331176005304, + -0.02658592350780964, + -0.025318602100014687, + 0.007367183919996023, + -0.0006153826834633946, + -0.007050353102385998, + 0.009247277863323689, + -0.0004491336003411561, + -0.0009304725099354982, + 0.00671611400321126, + -0.0014109410112723708, + -0.007085169665515423, + 0.011002032086253166, + 0.00678922887891531, + 0.01998470537364483, + 0.014873634092509747, + 0.029329469427466393, + -0.02012397162616253, + 0.005964076612144709, + -0.012039566412568092, + -0.004769868683069944, + 0.02144700102508068, + 0.012499144300818443, + 0.007102577947080135, + 0.018355289474129677, + -0.02136344090104103, + -0.009184608235955238, + 0.015542111359536648, + 0.014720440842211246, + 0.007562156300991774, + 0.014400128275156021, + -0.000525730021763593, + -0.024566562846302986, + -0.003535621566697955, + 0.0028601803351193666, + 0.010939362458884716, + 0.004630602430552244, + 0.016656242311000824, + 0.01969224587082863, + -0.0031909376848489046, + -0.01084187626838684, + 0.02654414437711239, + 0.007227917667478323, + 0.010549417696893215, + -0.010048058815300465, + 0.009017488919198513, + 0.0019288373878225684, + 0.007645716425031424, + -0.01980365812778473, + -0.010660829953849316, + 0.016043469309806824, + -0.008773772977292538, + -0.0074994866736233234, + -0.02665555663406849, + 0.008648432791233063, + 0.017338646575808525, + 0.015653524547815323, + -0.021906578913331032, + 0.008314194157719612, + -0.015221799723803997, + -0.016391634941101074, + 0.022519350051879883, + -0.012986576184630394, + 0.0034764334559440613, + 0.0005379158537834883, + -0.0017408279236406088, + -0.013077099807560444, + -0.006444544997066259, + 0.006907605100423098, + -0.00036774988984689116, + -0.012157942168414593, + 0.002383193466812372, + -0.0034746925812214613, + -0.011656584218144417, + -0.012694117613136768, + 0.0679062157869339, + 0.0016624906565994024, + 0.012248464860022068, + 0.009149791672825813, + -0.011350197717547417, + -0.026265611872076988, + 0.004954396281391382, + 0.008711103349924088, + 0.02049998939037323, + -0.0017007888527587056, + -0.022909294813871384, + -0.005549759604036808, + 0.023953791707754135, + 0.0072418441995978355, + -0.017923563718795776, + 0.007764092646539211, + 0.024483004584908485, + 0.0026913199108093977, + 0.019358007237315178, + 0.003194419201463461, + 0.005375676788389683, + -0.007381110452115536, + 0.004463482648134232, + -0.0002789676655083895, + -0.015806717798113823, + 0.015973836183547974, + -0.02847994491457939, + -0.01329992525279522, + 0.023675259202718735, + 0.02109883539378643, + 0.00014927599113434553, + -0.03551289066672325, + -0.012506107799708843, + -0.015569965355098248, + 0.007854615338146687, + 0.0038472297601401806, + 0.0055323513224720955, + -0.00036709709092974663, + -0.00699812825769186, + -0.007687496021389961, + -0.0008508296450600028, + -0.002630390925332904, + 0.017686812207102776, + 0.023856306448578835, + -0.022491496056318283, + 0.0028549577109515667, + -0.02169767953455448, + 0.005974521394819021, + -0.016739800572395325, + -0.0019009840907528996, + 0.015291432850062847, + -0.019037693738937378, + 0.02112668752670288, + 0.02072281576693058, + 0.007227917667478323, + -0.0025816478300839663, + 0.018898427486419678, + 0.011663546785712242, + 0.013745577074587345, + 0.0005540184793062508, + -0.03342389687895775, + -0.007882469333708286, + 0.018355289474129677, + -0.008843406103551388, + -0.02001255750656128, + 0.017798224464058876, + -0.00981826987117529, + -0.0015623930376023054, + 0.0012725451961159706, + -0.025137554854154587, + -0.022825736552476883, + -0.013181549496948719, + -0.004950914531946182, + -0.02839638479053974, + -0.014817927032709122, + 0.029301615431904793, + -0.004000422544777393, + 0.038214653730392456, + 0.02692016400396824, + -0.007227917667478323, + -0.004909134935587645, + 0.006319205276668072, + -0.025638913735747337, + -0.010876692831516266, + 0.022742176428437233, + -0.018592042848467827, + 0.024928655475378036, + -0.04852035641670227, + 0.0071652475744485855, + -0.025053994730114937, + -0.017101893201470375, + -0.005713397171348333, + 0.017645031213760376, + 0.009595443494617939, + 0.0025886110961437225, + -0.0071722110733389854, + 0.00015123443154152483, + 0.005626355763524771, + 0.004902171436697245, + -0.008202780969440937, + 0.011071665212512016, + 0.0034468392841517925, + -0.012993539683520794, + -0.016503049060702324, + -0.023884158581495285, + -0.012387731112539768, + 0.02795073390007019, + -0.0035861055366694927, + -0.014400128275156021, + 0.0017695515416562557, + -0.0013952736044302583, + -0.014302642084658146, + 0.010117691941559315, + 0.005671617574989796, + -0.005386121571063995, + 0.005943186581134796, + 0.023995572701096535, + 0.004571414086967707, + -0.030165066942572594, + -0.009247277863323689, + 0.013056209310889244, + 0.02832675166428089, + 0.007025981321930885, + -0.017269013449549675, + 0.0004415174771565944, + -0.0020907344296574593, + -0.017255086451768875, + -0.015778863802552223, + -0.013745577074587345, + -0.0017086226725950837, + 0.008564873598515987, + 0.009149791672825813, + 0.025792106986045837, + 0.01338348537683487, + 0.017477912828326225, + -0.007889431901276112, + -0.018146390095353127, + 0.01338348537683487, + -0.002078548539429903, + -0.029218055307865143, + 0.015361065976321697, + -0.014239972457289696, + 0.015751011669635773, + 0.02116846852004528, + 0.007050353102385998, + -0.0013465303927659988, + -0.004090945702046156, + -0.017519691959023476, + 0.012436474673449993, + -0.002865402726456523, + 0.025527501478791237, + -0.02178123965859413, + 0.009080158546566963, + -0.010103764943778515, + -0.003398096188902855, + 0.003488619113340974, + -0.029162349179387093, + 0.008766809478402138, + -0.008543983101844788, + 0.012053492479026318, + 0.011942079290747643, + -0.005313006695359945, + -0.014720440842211246, + 0.007583046332001686, + -0.0003923391050193459, + 0.006423654966056347, + 0.030694277957081795, + 0.007986918091773987, + 0.008794662542641163, + 0.008084405213594437, + 0.018870575353503227, + 0.014595101587474346, + 0.017812151461839676, + -0.032198354601860046, + 0.006632554344832897, + -0.006615146063268185, + 0.011684437282383442, + -0.0035791422706097364, + -0.014045000076293945, + 0.005299080163240433, + -0.013557568192481995, + -0.012889089994132519, + 0.012526997365057468, + -0.006831008940935135, + -0.02006826363503933, + -0.02030501700937748, + 0.009379580616950989, + -0.013884843327105045, + 0.008780736476182938, + 0.001158521044999361, + -0.007381110452115536, + 0.013550604693591595, + 0.004306808114051819, + 0.0013003984931856394, + -0.00018202532373834401, + 0.001380476518534124, + 0.04275473579764366, + 0.012116162106394768, + 0.016405561938881874, + -0.011440721340477467, + -0.01406588964164257, + 0.004989212844520807, + 0.017742518335580826, + -0.01064690388739109, + -0.019246593117713928, + -0.00507277250289917, + -0.014539394527673721, + -0.008098331280052662, + 0.0008599690045230091, + 0.006597737781703472, + -0.021878724917769432, + -0.030248625203967094, + 0.017965344712138176, + 0.00264431769028306, + -0.0002578601415734738, + -0.007255770731717348, + 0.012666263617575169, + 0.014553321525454521, + -0.0006227811682038009, + -0.004414739552885294, + 0.006897160317748785, + -0.008362937718629837, + 0.02125202678143978, + 0.003394614439457655, + -0.0040700556710362434, + -0.008892148733139038, + 1.1505784641485661e-5, + 0.0045470427721738815, + 0.025402160361409187, + 0.005271227099001408, + 0.017909638583660126, + -0.007008573040366173, + 0.001256877789273858, + 0.003606995567679405, + 0.005615910980850458, + 0.025248968973755836, + 0.017282940447330475, + -0.01072350051254034, + 0.016154883429408073, + -0.009247277863323689, + -0.022171184420585632, + -0.011781923472881317, + -0.01072350051254034, + -0.012673227116465569, + 0.0033423895947635174, + -0.005438346415758133, + -0.006047636270523071, + 0.0041431705467402935, + -0.012749823741614819, + -2.5908415409503505e-5, + -0.01056334376335144, + 0.0005766492686234415, + 0.018605969846248627, + -0.014511541463434696, + 0.01008287537842989, + -0.008599690161645412, + -0.00995057262480259, + 0.02834067866206169, + -0.001316936337389052, + -0.016196662560105324, + 0.016711948439478874, + 0.014678660780191422, + -0.02168375253677368, + -0.005755177233368158, + 0.0013143251417204738, + 0.0019044657237827778, + -0.022421862930059433, + 0.001518002012744546, + -0.006350540090352297, + 0.0005405270494520664, + 0.0054174563847482204, + -0.0003466423659119755, + 0.003241421654820442, + 0.03317321836948395, + 0.007269697263836861, + 0.009421360678970814, + -0.009574553929269314, + -0.02705943025648594, + 0.011774959973990917, + 0.02710120938718319, + -0.018062829971313477, + -0.005922296550124884, + 0.009205497801303864, + -0.006893678568303585, + -0.001953209051862359, + -0.037991829216480255, + 0.02036072313785553, + 0.023577773943543434, + -0.012631447054445744, + 0.021976212039589882, + -0.005431382916867733, + -0.00671611400321126, + 0.0012699340004473925, + -0.014260862022638321, + 0.0026878383941948414, + 0.01923266611993313, + -0.0065106963738799095, + -0.00494046974927187, + 0.024775462225079536, + -0.037880416959524155, + -0.007590009830892086, + 0.003408541204407811, + -0.002172553213313222, + 0.0007124338299036026, + -0.004303326830267906, + 0.002508532954379916, + 0.03230976685881615, + 0.009198535233736038, + -0.004700235556811094, + 0.02066710963845253, + 0.0034346533939242363, + -0.008300267159938812, + -0.012109199538826942, + -0.009602406993508339, + -0.02005433849990368, + -0.003396355314180255, + -0.009839159436523914, + 0.024831170216202736, + -0.007896395400166512, + 0.02169767953455448, + -0.0006236516055651009, + -0.005887479986995459, + 0.01385002676397562, + -0.007485560141503811, + 0.01324421912431717, + -0.011607840657234192, + 0.022463643923401833, + 0.013467044569551945, + 0.013091025874018669, + -0.015249652788043022, + 0.006040672771632671, + 0.024691903963685036, + -0.02800644002854824, + -0.000890433497261256, + 0.0033214997965842485, + 0.006448026746511459, + -0.02183694578707218, + -0.0041814688593149185, + 0.0054870895110070705, + -0.017937490716576576, + 0.0016668427269905806, + -0.014985047280788422, + 0.007847652770578861, + -0.0020907344296574593, + -0.001020995550788939, + -0.004696753807365894, + 0.011238785460591316, + -0.003606995567679405, + 0.011698363348841667, + 0.010124655440449715, + -0.02168375253677368, + -0.003488619113340974, + 0.013836100697517395, + 0.02051391638815403, + -0.009470104239881039, + -0.0028862927574664354, + -0.005727323703467846, + 0.031223488971590996, + -0.016489122062921524, + 0.010465857572853565, + 0.00999931525439024, + 0.019051620736718178, + -0.002515496453270316, + -0.008411680348217487, + 0.006058081053197384, + -0.012680190615355968, + -0.005984966643154621, + 0.024371590465307236, + -0.030666423961520195, + 0.002903701039031148, + -0.0023918976075947285, + -0.02094564214348793, + -0.004345106426626444, + -0.005107589066028595, + -0.003467729315161705, + 0.015416772104799747, + -0.008543983101844788, + -0.007945138961076736, + -0.02715691551566124, + 0.0007346294005401433, + 0.03996941074728966, + -0.00271220994181931, + 0.004978768061846495, + -0.015597818419337273, + -0.02066710963845253, + 0.023354947566986084, + 0.03359101712703705, + -0.0041396887972950935, + 0.0019358006538823247, + 0.005776067264378071, + -0.009198535233736038, + 0.003330203937366605, + 0.005107589066028595, + 0.022157257422804832, + -0.030360039323568344, + 0.037406910210847855, + -0.013341705314815044, + -0.0045087444595992565, + -0.01022214163094759, + 0.005410493351519108, + -0.008251524530351162, + -0.0015406326856464148, + 0.024455150589346886, + -0.0027505080215632915, + 3.1035699066706e-5, + -0.007276660762727261, + -0.01386395376175642, + 0.0004432583227753639, + 0.02108490839600563, + -0.0018174243159592152, + 0.003864638041704893, + 0.023159975185990334, + -0.012944796122610569, + -0.0010767020285129547, + 0.009261204861104488, + -0.016029544174671173, + -0.002679134253412485, + 0.0020924750715494156, + -0.004035239107906818, + 0.0036418121308088303, + -0.003735816804692149, + -0.01398232951760292, + -0.0008068737224675715, + 0.01323029212653637, + 0.007603936363011599, + -0.022045845165848732, + 0.018912354484200478, + 0.0031857150606811047, + 0.0002404518600087613, + 0.003944715950638056, + 0.004171023610979319, + 0.008871259167790413, + -0.006611664313822985, + -0.0055253878235816956, + -0.03478870540857315, + -0.005772585514932871, + 0.02090386115014553, + -0.014971120283007622, + -0.011962969787418842, + 0.011593913659453392, + -0.023396726697683334, + 0.004271991550922394, + -0.014539394527673721, + 0.0055671678856015205, + -0.002442381577566266, + -0.015180019661784172, + 0.014483688399195671, + 0.022686470299959183, + 0.0010732203954830766, + -0.008968745358288288, + -0.017491839826107025, + 0.0023936384823173285, + -0.011726217344403267, + 0.014483688399195671, + -0.017338646575808525, + -0.01352971512824297, + -0.006535068154335022, + -0.010410151444375515, + 0.014678660780191422, + -0.024608343839645386, + 0.014511541463434696, + 0.015235725790262222, + -0.0022004065103828907, + -0.017213307321071625, + -0.0012055233819410205, + 0.002080289414152503, + 0.02041642926633358, + -0.01069564651697874, + -0.017756445333361626, + 0.0034590251743793488, + -0.016698021441698074, + 0.03244903311133385, + -0.004748978652060032, + 0.00164508237503469, + 0.016252368688583374, + 0.02750508114695549, + 0.0006401894497685134, + 0.004209321923553944, + -0.0005400918889790773, + -0.005340860225260258, + -0.018313510343432426, + 0.0014553321525454521, + 0.0018922799499705434, + 0.007408963516354561, + 0.012659301050007343, + -0.0069180503487586975, + 0.011252711527049541, + 0.01980365812778473, + -0.003854193026199937, + 0.01930229924619198, + 0.025248968973755836, + 0.022296523675322533, + 0.008049588650465012, + -0.011210931465029716, + 0.024817243218421936, + 0.0020524361170828342, + 0.015402845107018948, + 0.025276821106672287, + -0.006538549903780222, + 0.007297550793737173, + 0.031585581600666046, + -0.0021568858064711094, + -0.0013308629859238863, + -0.011761033907532692, + 0.008711103349924088, + 0.0018905390752479434, + 0.0021951841190457344, + 0.022282596677541733, + 0.012568777427077293, + 0.00678922887891531, + 0.017324719578027725, + -0.017352573573589325, + -0.016168810427188873, + -0.0033162771724164486, + 0.0014979824190959334, + 0.04242049530148506, + -0.004191913641989231, + 0.008752882480621338, + 0.026001006364822388, + 0.005699470639228821, + -0.0007211379706859589, + -0.023494213819503784, + -0.0012351174373179674, + -1.7544281945447437e-5, + 0.006451508495956659, + 0.0026530218310654163, + 0.002844512928277254, + -0.004595785867422819, + -0.011962969787418842, + -0.017853930592536926, + -0.008926965296268463, + 0.04010867699980736, + 0.00534782325848937, + -0.01969224587082863, + -0.0036035138182342052, + 0.024162691086530685, + 0.01930229924619198, + 0.009456177242100239, + 0.018355289474129677, + -0.005535832606256008, + 0.03230976685881615, + 0.005588057450950146, + 0.029524441808462143, + 0.016280222684144974, + 0.011336271651089191, + -0.004877799656242132, + 0.003065597964450717, + 0.014804000966250896, + 0.0013308629859238863, + 0.009922719560563564, + -0.015751011669635773, + 0.00529211713001132, + 0.029970094561576843, + 0.017575398087501526, + 0.013829137198626995, + -0.007262734230607748, + 0.0023257462307810783, + 0.009616333059966564, + -0.019163032993674278, + 0.02104312740266323, + 0.001984543865546584, + -0.0012594889849424362, + -0.001192467170767486, + -0.009135864675045013, + -0.00692153163254261, + 0.0021307733841240406, + -0.007764092646539211, + -0.015500332228839397, + 0.012352914549410343, + 0.012513071298599243, + -0.0005305173108354211, + -0.0007502968655899167, + 0.004352069925516844, + 0.01385699026286602, + -0.02019360475242138, + 0.01384306326508522, + -0.025485720485448837, + 0.012582704424858093, + 0.01999863050878048, + 0.004501780960708857, + -0.003006409853696823, + -0.014901487156748772, + 0.00014383590314537287, + 0.0008551817154511809, + 0.011969933286309242, + 0.011524280533194542, + 0.00013774301623925567, + -0.0038124131970107555, + 0.02048606239259243, + -0.023939866572618484, + 0.02105705440044403, + -0.004282436799257994, + -0.007025981321930885, + -0.007680532988160849, + 0.010591196827590466, + 0.006448026746511459, + 0.006214755587279797, + 0.0072488076984882355, + -0.017282940447330475, + -0.03297824412584305, + -0.02850779891014099, + 0.005789993796497583, + 0.0045435610227286816, + 0.004198877140879631, + 0.01331385225057602, + -0.003371983766555786, + -0.0045470427721738815, + -0.015709230676293373, + 0.001683380571193993, + 0.0024510857183486223, + 0.019023766741156578, + -0.012366841547191143, + -0.0012951759854331613, + -0.029385175555944443, + 0.012916943058371544, + 0.0036696651950478554, + 0.002767916303128004, + -0.004641047213226557, + 0.030861398205161095, + 0.0052015939727425575, + 0.0051702591590583324, + 0.012680190615355968, + -0.0006062433240003884, + 0.008070478215813637, + -0.004122280515730381, + -0.016015617176890373, + 0.01405196264386177, + 0.0006663018721155822, + 0.015235725790262222, + -0.016140956431627274, + 0.02027716301381588, + 0.01023606862872839, + -0.009184608235955238, + -0.03877171874046326, + -0.00507277250289917, + -0.0075760832987725735, + -0.007450743578374386, + -0.004080500453710556, + -0.006893678568303585, + -0.02038857713341713, + -0.009978425689041615, + 0.004637565463781357, + -0.0008695435244590044, + 0.03297824412584305, + -0.0008064385619945824, + -0.014086779206991196, + -0.0041779871098697186, + -0.009302984923124313, + -0.0010401447070762515, + -0.010061985813081264, + -0.00992968212813139, + 0.02722654864192009, + -0.010911509394645691, + 0.009135864675045013, + -0.0029507032595574856, + -0.009477066807448864, + 0.005650727543979883, + -0.025443941354751587, + 0.03907810524106026, + 0.002219555666670203, + -0.003989977762103081, + -0.03286683186888695, + -0.0017878302605822682, + 0.003732335055246949, + 0.019218740984797478, + 0.0025520536582916975, + -0.0016468232497572899, + 0.012875162996351719, + -0.023271387442946434, + 0.0019671355839818716, + -0.005922296550124884, + 0.011531244032084942, + -0.011879409663379192, + -0.009358691051602364, + 0.005950150080025196, + 0.02747722715139389, + 0.012777676805853844, + -0.03604210168123245, + 0.036961257457733154, + 0.0019601723179221153, + 0.0027835839428007603, + 0.00988093949854374, + 0.016182735562324524, + 0.022101551294326782, + -1.2042993148497771e-5, + 0.0015745788114145398, + 0.0038124131970107555, + -0.015751011669635773, + -0.0011950783664360642, + 0.013091025874018669, + -0.026001006364822388, + 0.004606230650097132, + -0.011865483596920967, + 0.016071323305368423, + 0.007022500038146973, + 0.0027505080215632915, + -0.018021050840616226, + -0.007078206166625023, + 0.00164421193767339, + -0.022101551294326782, + -0.012478254735469818, + 0.0054522729478776455, + 0.0010645162547007203, + -0.008954819291830063, + -0.010967215523123741, + -0.017101893201470375, + 0.010256958194077015, + 0.0041466522961854935, + 0.011315381154417992, + -0.005504497792571783, + 0.01965046487748623, + -0.017338646575808525, + -0.00522248400375247, + 0.005803920328617096, + 0.006159048993140459, + -0.05297687649726868, + -0.011747106909751892, + 0.0005083217401988804, + -0.015152166597545147, + 0.00271220994181931, + -0.005748213734477758, + 0.0062217190861701965, + 0.004021312575787306, + 0.014302642084658146, + -0.004783795215189457, + -0.024859022349119186, + -0.006085934583097696, + 0.012332024984061718, + -0.017826078459620476, + 0.008000845089554787, + 0.03949590399861336, + 0.0021917023696005344, + -0.006806637160480022, + 0.005581094417721033, + -0.016948699951171875, + -0.00132302928250283, + 0.00979737937450409, + 0.0038402664940804243, + -0.010612087324261665, + 0.02797858603298664, + -0.017881784588098526, + -0.01939978636801243, + 0.0031909376848489046, + 0.0031456761062145233, + 0.025095775723457336, + 0.002148181665688753, + -0.012102236039936543, + 0.018661675974726677, + 0.008843406103551388, + 0.030582865700125694, + -0.010180361568927765, + 0.0005479255924001336, + 0.02817355841398239, + -0.014887560158967972, + 0.008829479105770588, + -0.015751011669635773, + -0.005257300566881895, + -0.018202096223831177, + 0.014483688399195671, + -0.006608183030039072, + -0.005828292109072208, + 0.003770633367821574, + 0.003944715950638056, + 0.003659220412373543, + 0.0015580409672111273, + 0.010263921692967415, + 0.008968745358288288, + -0.017728591337800026, + 0.0025172370951622725, + 0.015347138978540897, + -0.013139769434928894, + -0.022867515683174133, + -0.004352069925516844, + -0.023438507691025734, + 0.00542790163308382, + -0.025847813114523888, + -0.031613435596227646, + -0.0019027249654754996, + 0.001850500120781362, + -0.0030151139944791794, + 0.007631789427250624, + -0.029050936922430992, + -0.025012215599417686, + -0.0032953873742371798, + -0.006771820597350597, + 0.0031456761062145233, + -0.0004321605374570936, + 0.018327437341213226, + 0.0011315381852909923, + 0.028744550421833992, + 0.012443438172340393, + 0.00665692612528801, + -0.014497615396976471, + 0.022185111418366432, + 0.007092133164405823, + -0.018759161233901978, + -0.018104610964655876, + -0.011197005398571491, + -0.009087122045457363, + 0.007290587294846773, + 0.003563474863767624, + 0.0007990400190465152, + -0.004950914531946182, + -0.009602406993508339, + -0.03286683186888695, + 0.0032953873742371798, + -0.0005044048884883523, + 0.00500313937664032, + 0.023480286821722984, + 0.014497615396976471, + 0.008954819291830063, + 0.01049371063709259, + 0.0028166596312075853, + 0.019204813987016678, + 0.010542454198002815, + 0.006176457274705172, + -0.02019360475242138, + -0.012784640304744244, + -0.0017312533454969525, + -0.012345951981842518, + -0.010479784570634365, + 0.005299080163240433, + 0.011057739146053791, + -0.02043035626411438, + -0.04055432602763176, + -3.389174526091665e-5, + 0.0021638490725308657, + 0.007617862895131111, + 0.0036244038492441177, + -0.02785324677824974, + -0.02066710963845253, + -0.007778019178658724, + -0.016670167446136475, + 0.0014396647457033396, + -0.004522670991718769, + -0.0018365734722465277, + 0.008056551218032837, + -0.0037497433368116617, + 0.02807607315480709, + 0.006117269396781921, + -0.007025981321930885, + -0.022463643923401833, + 0.016391634941101074, + 0.02139129303395748, + 0.00671959575265646, + -0.0003222707600798458, + 0.017380425706505775, + -0.005964076612144709, + 0.0034694699570536613, + -0.015709230676293373, + -0.0015954688424244523, + -0.0006227811682038009, + 0.003666183678433299, + -0.0022143330425024033, + 0.013487935066223145, + -0.011398941278457642, + -0.018438849598169327, + -0.013808246701955795, + 0.019065547734498978, + -0.016349855810403824, + 0.017979271709918976, + 0.022240817546844482, + -0.01985936425626278, + -0.0010479784104973078, + 0.015709230676293373, + -0.023118194192647934, + -0.024510856717824936, + 0.004132725298404694, + -0.009114975109696388, + -0.017087966203689575, + -0.012819456867873669, + -0.0013482712674885988, + 0.012311135418713093, + -0.003102155402302742, + -0.008328121155500412, + 0.0065455129370093346, + -0.014915414154529572, + 0.003951679449528456, + -0.005800438579171896, + -0.013467044569551945, + 0.0072070276364684105, + -0.009080158546566963, + 0.017812151461839676, + -0.004174505360424519, + -0.001415293081663549, + -0.0024597898591309786, + 0.011357161216437817, + 0.017324719578027725, + -0.022240817546844482, + 0.031390611082315445, + 0.007085169665515423, + -0.02118239365518093, + -0.002837549429386854, + -0.0008107906323857605, + -0.023661334067583084, + 0.011169152334332466, + 0.012338988482952118, + 0.0038785645738244057, + -0.015723157674074173, + -0.0035443257074803114, + -0.0022961520589888096, + -0.017756445333361626, + -0.012088309042155743, + 0.013272072188556194, + 0.004017830826342106, + 0.015681378543376923, + -0.03576356917619705, + -0.006409728433936834, + -0.017798224464058876, + 0.008209744468331337, + -0.028688844293355942, + -0.022101551294326782, + 0.025012215599417686, + 0.001482315012253821, + 0.013104952871799469, + 0.017255086451768875, + -0.013620237819850445, + 0.0022891887929290533, + 0.016809433698654175, + -0.0015458551933988929, + -0.0028184005059301853, + -0.015764938667416573, + -0.0010671275667846203, + 0.029942240566015244, + 0.030276479199528694, + 0.015096459537744522, + -0.016363782808184624, + -0.013968403451144695, + -0.003756706602871418, + -0.0038472297601401806, + 0.015820644795894623, + -0.011754070408642292, + 0.001220320351421833, + -0.018438849598169327, + -0.013766467571258545, + -0.002964630024507642, + -0.0016955664614215493, + 0.01091847289353609, + 0.0003853757807519287, + 0.022867515683174133, + -0.0006837101536802948, + -0.01084883976727724, + 0.0003527352528180927, + -0.02164197340607643, + 0.0003692731261253357, + -0.00987397599965334, + -0.010333554819226265, + -0.011914226226508617, + -0.004714162088930607, + -0.017923563718795776, + 0.007680532988160849, + 0.014971120283007622, + -0.012088309042155743, + 0.018355289474129677, + 0.004641047213226557, + 0.02147485315799713, + -0.015249652788043022, + 0.003951679449528456, + -0.017881784588098526, + -0.008063514716923237, + 0.006134677678346634, + -0.0017260308377444744, + 0.01994292438030243, + -0.015319285914301872, + -0.0008556169341318309, + -0.009894865565001965, + -0.018076756969094276, + -0.008585763163864613, + -0.016238443553447723, + -0.0023623034358024597, + 0.003330203937366605, + 0.019204813987016678, + -0.005842218641191721, + 0.017129747197031975, + 0.015611744485795498, + 0.026182051748037338, + -0.03194767236709595, + 0.012506107799708843, + -0.003899454604834318, + 0.014845781028270721, + -0.02023538388311863, + 0.01057727076113224, + -0.005581094417721033, + -0.008822515606880188, + 0.004571414086967707, + -0.008822515606880188, + -0.016503049060702324, + 0.01386395376175642, + 0.0020715852733701468, + 0.0012603594223037362, + -0.0038785645738244057, + -0.017617179080843925, + -0.016851214691996574, + -0.006005856208503246, + -0.023744892328977585, + -0.007791945710778236, + 0.017993196845054626, + -0.015556038357317448, + -0.012074382975697517, + -0.02757471427321434, + 0.009247277863323689, + 0.0071304310113191605, + -0.0014048481825739145, + -0.006684779189527035, + 0.012715007178485394, + -0.012875162996351719, + 0.02016575075685978, + 0.015207872726023197, + -0.037824708968400955, + -0.007652679458260536, + 0.009525810368359089, + -0.007269697263836861, + -0.009484030306339264, + 0.02037465013563633, + -0.025638913735747337, + 0.00494046974927187, + 0.02690623700618744, + 0.006113787647336721, + -0.004202358424663544, + -0.00542441988363862, + -0.010953289456665516, + 0.009261204861104488, + 0.0033093139063566923, + -0.0029298134613782167, + 0.00685189850628376, + 0.025053994730114937, + -0.012269355356693268, + -0.012868200428783894, + -0.031669143587350845, + 0.001914910739287734, + 0.005274708848446608, + 0.007019018288701773, + 0.00986004900187254, + -0.008738956414163113, + -0.0008595337858423591, + 0.014156412333250046, + 0.0034764334559440613, + -4.466311656869948e-5, + 0.002384934341534972, + -0.001318677212111652, + 0.0024180100299417973, + -0.014650807715952396, + 0.008056551218032837, + -0.00979041587561369, + -0.016962626948952675, + -0.02158626727759838, + -0.003197900950908661, + -0.017366498708724976, + 0.00699464650824666, + 0.0069528669118881226, + -0.01421908289194107, + 0.012617520987987518, + 0.006900642067193985, + -0.009692929685115814, + -0.012596630491316319, + 0.01070261001586914, + 0.006044154521077871, + 0.011273602023720741, + 0.0013238996034488082, + 0.008871259167790413, + 0.017658958211541176, + 0.009992352686822414, + -0.001977580599486828, + -0.015862423926591873, + -0.0075760832987725735, + 0.01421908289194107, + -0.004407776519656181, + 0.010932398959994316, + -0.015166092664003372, + -0.007311477325856686, + 0.0034398760180920362, + 0.008244561031460762, + -0.009135864675045013, + -0.00016374663391616195, + -0.006496769841760397, + -0.004153615329414606, + 0.006343577057123184, + -0.0013430487597361207, + -0.012123125605285168, + -0.001221190788783133, + 0.010988106019794941, + -0.00665692612528801, + -0.004985731095075607, + -0.00042323878733441234, + 0.006569884717464447, + -0.006033709738403559, + 0.003666183678433299, + 0.002673911629244685, + 0.0041779871098697186, + -0.011914226226508617, + 0.011691400781273842, + 0.0029106643050909042, + 0.0013012689305469394, + 0.0068762702867388725, + -0.0017303829081356525, + -0.004703716840595007, + 0.008495240472257137, + -0.0058143651112914085, + 0.009839159436523914, + 0.002933294977992773, + -0.006451508495956659, + 0.004400813020765781, + -0.0022595946211367846, + -0.009003561921417713, + 0.010124655440449715, + -0.0010645162547007203, + -0.013627201318740845, + -0.0020889935549348593, + -0.0032361990306526423, + -0.006740485783666372, + -0.01965046487748623, + 0.007367183919996023, + -0.03183626011013985, + -0.00031813629902899265, + 0.018466703593730927, + 0.016363782808184624, + -0.015082533471286297, + 0.0012742860708385706, + 0.03244903311133385, + 0.011203968897461891, + -0.012554851360619068, + -0.004425184801220894, + -0.002170812338590622, + -0.029719414189457893, + 0.007053834851831198, + -0.011740143410861492, + -0.00514588737860322, + -0.003166565904393792, + -0.0047559416852891445, + 0.014441908337175846, + -0.013905733823776245, + -0.0016738061094656587, + 0.007415927015244961, + -0.010883656330406666, + -0.00988790299743414, + -0.002607760252431035, + 0.0015232244040817022, + -0.008620579726994038, + -0.0012325061252340674, + -0.009769526310265064, + 0.0023588219191879034, + -0.012903016991913319, + 0.0030203363858163357, + 0.022978927940130234, + 0.0044739278964698315, + -0.030109360814094543, + 0.002172553213313222, + 0.011767996475100517, + 0.02111276052892208, + 0.015040753409266472, + -0.01391269639134407, + -0.01406588964164257, + -0.0062217190861701965, + -0.018257804214954376, + 0.017993196845054626, + 0.02731010876595974, + -0.0003364149888511747, + 0.022352229803800583, + 0.004258065018802881, + 0.01976187899708748, + -0.01407285314053297, + -0.0035826237872242928, + -0.02066710963845253, + 0.0018174243159592152, + -0.004045683890581131, + 0.016795508563518524, + -0.030471451580524445, + -0.004728088621050119, + 0.004818611778318882, + -0.013111916370689869, + -0.01034748088568449, + -0.031502023339271545, + 0.00486735487356782, + 0.011593913659453392, + 0.0017399574862793088, + 0.011969933286309242, + 0.007297550793737173, + -0.010591196827590466, + 0.0020385095849633217, + -0.001684251008555293, + -0.014706514775753021, + 0.0058944434858858585, + -0.02036072313785553, + -0.015082533471286297, + 0.008648432791233063, + -0.015876350924372673, + -0.004909134935587645, + -0.011816740036010742, + 0.019288374111056328, + 0.024914728477597237, + 0.013557568192481995, + -0.006775302346795797, + -0.018424922600388527, + -0.0069528669118881226, + -0.009609370492398739, + -0.0012699340004473925, + 0.0007620474207215011, + -0.008161000907421112, + -0.0006188643164932728, + -0.012770713306963444, + 0.0065907747484743595, + -0.0062252008356153965, + 0.01985936425626278, + 0.0010262180585414171, + -0.017979271709918976, + -0.011378051713109016, + 0.0013465303927659988, + 0.018675602972507477, + 0.031474169343709946, + 0.013202439062297344, + -0.014581174589693546, + 0.008885186165571213, + -0.012533960863947868, + 0.023187827318906784, + -0.012916943058371544, + 0.01030570175498724, + 0.011238785460591316, + 0.002595574362203479, + 0.012345951981842518, + -0.006162530742585659, + -0.004153615329414606, + 0.004331179894506931, + -0.003965605981647968, + -0.01963653974235058, + -0.01055638026446104, + -0.01421211939305067, + 0.005657690577208996, + -0.006406246684491634, + 0.029775120317935944, + 0.003885527839884162, + 0.0011324086226522923, + -0.009992352686822414, + -0.00514936912804842, + 0.013418301939964294, + 0.005473162978887558, + -0.007868542335927486, + 0.010744390077888966, + 0.005720360670238733, + -0.0054174563847482204, + 0.016001690179109573, + -0.001613747444935143, + -0.00529211713001132, + -0.0031195636838674545, + 0.022867515683174133, + -0.018968060612678528, + -0.012039566412568092, + -0.00527819013223052, + -0.03289468586444855, + -0.016099177300930023, + -0.024761537089943886, + 0.03236547112464905, + -0.010180361568927765, + 0.004237174987792969, + -0.0048395018093287945, + 0.00036840271786786616, + -0.004637565463781357, + -0.002637354424223304, + -0.009247277863323689, + 0.01014554500579834, + -0.007986918091773987, + 0.0008120962302200496, + -0.02009611763060093, + 0.03609780967235565, + 0.02820141240954399, + -0.007673569489270449, + -0.014525468461215496, + 0.022157257422804832, + -0.017157599329948425, + 0.01020821463316679, + 0.024747610092163086, + -0.004460001364350319, + -0.001522354083135724, + 0.009017488919198513, + -0.017867857590317726, + 0.00994360912591219, + -0.02093171514570713, + 0.0016955664614215493, + -0.00493698799982667, + -0.0005061457050032914, + 0.0008482183911837637, + 0.0058631086722016335, + 0.011036848649382591, + -0.012666263617575169, + -0.023925939574837685, + -0.0007881598430685699, + 0.021962285041809082, + 0.05364535376429558, + 0.03659916669130325, + 0.016865141689777374, + 0.014177302829921246, + 0.03632063418626785, + -0.022212963551282883, + 0.009741673246026039, + -0.002348376903682947, + -0.025248968973755836, + -0.011691400781273842, + -0.0031056369189172983, + -0.014441908337175846, + 0.03451017290353775, + 0.018745234236121178, + -0.006402764935046434, + -0.007513413205742836, + -0.017157599329948425, + -0.005511461291462183, + 0.0010697387624531984, + 0.006197347305715084, + -0.01366201788187027, + 0.004237174987792969, + -0.016001690179109573, + 0.012394694611430168, + 0.01035444438457489, + 0.005929260049015284, + 0.002677393378689885, + 0.0009644186939112842, + -0.02062532864511013, + 0.011197005398571491, + 0.022714322432875633, + -0.02143307402729988, + -0.012861236929893494, + -0.008181891404092312, + -0.010117691941559315, + 0.009901829063892365, + 0.02063925564289093, + 0.004742015153169632, + 0.004038720857352018, + -0.018062829971313477, + -0.021934431046247482, + -0.017603252083063126, + 0.00045696733286604285, + -0.026209905743598938, + -0.007109541445970535, + -0.018731309100985527, + 0.011719253845512867, + -0.011475537903606892, + 0.006500251591205597, + -0.017338646575808525, + 0.0014762220671400428, + -0.004783795215189457, + -0.02683660387992859, + -0.016322001814842224, + -0.013355632312595844, + 0.015249652788043022, + 0.029106643050909042, + 4.7709567297715694e-5, + -0.017255086451768875, + -0.016879066824913025, + -0.01999863050878048, + 0.02029109001159668, + 0.014971120283007622, + -0.0016720652347430587, + -0.02134951390326023, + 0.024775462225079536, + 0.0001208787361974828, + -0.008042625151574612, + -0.007938175462186337, + -0.015723157674074173, + 0.004240656737238169, + -0.012499144300818443, + -0.014609027653932571, + -0.005431382916867733, + -0.022268671542406082, + -0.007492523640394211, + -0.02104312740266323, + 0.004519189242273569, + -0.0037114452570676804, + 0.024079132825136185, + 0.005393085069954395, + 0.012137052603065968, + 0.008690212853252888, + -0.003062116215005517, + -0.015319285914301872, + 0.0001550424931338057, + -0.01041711401194334, + 0.0026913199108093977, + -0.015305358916521072, + -0.017422206699848175, + -0.02006826363503933, + -0.012568777427077293, + -0.017798224464058876, + 0.0008721547783352435, + 0.010410151444375515, + -0.017185453325510025, + -0.006273943930864334, + -0.015945984050631523, + -0.0031300086993724108, + 0.00499965762719512, + -0.0005566297331824899, + 0.005723842419683933, + -0.00264605856500566, + 0.01945549249649048, + -0.0017669403459876776, + -0.036543458700180054, + 0.014372275210916996, + 0.008585763163864613, + -0.0012316358042880893, + 0.02678089775145054, + -0.019413713365793228, + -0.013397411443293095, + 0.010110728442668915, + 0.014998973347246647, + -0.014831854030489922, + 0.028605284169316292, + -0.006528104655444622, + 0.0017077522352337837, + -0.0022909296676516533, + 0.009114975109696388, + -0.012735896743834019, + 0.00685538025572896, + 0.017199380323290825, + 0.018257804214954376, + 0.0003029040526598692, + -0.0065455129370093346, + 0.002550313016399741, + 0.025081848725676537, + -0.017157599329948425, + 0.001256877789273858, + 0.02059747651219368, + 0.002104660961776972, + -0.00250679231248796, + 0.015068606473505497, + -0.011496427468955517, + -0.006058081053197384, + 0.00979737937450409, + -0.008300267159938812, + 0.022352229803800583, + -0.0029507032595574856, + -0.01037533488124609, + 0.016182735562324524, + 0.021739458665251732, + -0.0030603755731135607, + -0.016767654567956924, + 0.0013369558146223426, + -0.014581174589693546, + 0.016238443553447723, + 0.012332024984061718, + 0.0017521432600915432, + -0.006040672771632671, + -0.015820644795894623, + -0.008439533412456512, + -3.6094977986067533e-5, + 0.0006179939373396337, + 0.017756445333361626, + 0.0025311638601124287, + 0.014156412333250046, + -0.011531244032084942, + 0.0018731309100985527, + -0.0047211251221597195, + 0.01077920664101839, + 0.011231821961700916, + 0.02079244889318943, + 0.01092543639242649, + 0.011259675025939941, + -0.005682062357664108, + 0.007687496021389961, + -0.016099177300930023, + -0.025806033983826637, + 0.009045341983437538, + -0.0019897662568837404, + -0.0012986576184630394, + -0.004125762265175581, + -0.0004787276848219335, + -0.004219766706228256, + -0.012318097986280918, + -0.022686470299959183, + -0.03334033489227295, + -0.0022926703095436096, + 0.018522409722208977, + 0.018494555726647377, + 0.019246593117713928, + 0.0024632716085761786, + 0.01329992525279522, + -0.0009330837638117373, + -0.0017930527683347464, + 0.0009130642283707857, + 0.014748293906450272, + -0.010410151444375515, + 0.008516130037605762, + 0.015374992042779922, + -0.012554851360619068, + 0.0020733261480927467, + -0.017658958211541176, + 0.0014709995593875647, + 0.002665207488462329, + 0.016196662560105324, + -0.0048395018093287945, + -0.004160578828305006, + -0.013494898565113544, + -0.043785303831100464, + -0.004602748900651932, + -0.03490011766552925 + ], + "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8": [ + -0.024068579077720642, + -0.0018912582891061902, + -0.012826401740312576, + -0.0008066461887210608, + -0.007841182872653008, + 0.03334137797355652, + 0.0003497283614706248, + 0.04145143926143646, + -0.011583730578422546, + 0.03310883045196533, + 0.026292305439710617, + 0.00016033001884352416, + -0.028632307425141335, + -0.0204059686511755, + 0.03587032109498978, + 0.0195193849503994, + -0.010878822766244411, + 0.020653050392866135, + -0.0022110100835561752, + -0.001014666398987174, + 0.02659752406179905, + 0.0043093799613416195, + -0.03223678097128868, + -0.043689701706171036, + 0.013327830471098423, + 0.007565033156424761, + -0.02572547271847725, + 0.01437428966164589, + -0.03735280781984329, + -0.023647088557481766, + 0.029824107885360718, + 0.012194165028631687, + 0.01630733348429203, + 0.01008671149611473, + -0.0024490070063620806, + -0.015202737413346767, + 0.01063174195587635, + 0.025841746479272842, + -0.061450451612472534, + 0.03682957589626312, + -0.01841478794813156, + -0.01914149709045887, + -0.028981126844882965, + 0.01383652538061142, + -0.07505442947149277, + 0.0239377710968256, + -0.005275902338325977, + 0.004883479792624712, + -0.002792376559227705, + -0.022615162655711174, + -0.01046459935605526, + -0.0150719303637743, + -0.020522242411971092, + 0.03261466696858406, + -0.01241217739880085, + -0.020347831770777702, + -0.010493667796254158, + -0.019955409690737724, + 0.0027415070217102766, + -0.02444646693766117, + -0.0013553109019994736, + 0.029010195285081863, + -0.004952516872435808, + 0.0035027340054512024, + 0.01356764417141676, + -0.05534610152244568, + 0.036800507456064224, + 0.0010028574615716934, + -0.010035841725766659, + -0.021699508652091026, + -0.0301147922873497, + 0.030608953908085823, + -0.05799132212996483, + -0.006841958500444889, + 0.0020002645906060934, + -0.03528895601630211, + 0.0992974191904068, + -0.03557963669300079, + -0.006438635289669037, + 0.020798390731215477, + -0.02499876543879509, + 0.034823860973119736, + 0.022411683574318886, + -0.01716485060751438, + 5.399215660872869e-5, + -0.014105407521128654, + -0.021176280453801155, + -0.01931590586900711, + 0.048863865435123444, + -0.0017967862077057362, + 0.024533672258257866, + -0.006762020755559206, + -0.00765950558707118, + 0.024882491677999496, + -0.02550746127963066, + 0.018124105408787727, + 0.0015715067274868488, + 0.025972554460167885, + -0.028443362563848495, + -0.05246833711862564, + -0.027571313083171844, + 0.014018203131854534, + -0.03741094097495079, + 0.0015315377386286855, + 0.007383356336504221, + 0.009955903515219688, + 0.04133516922593117, + 0.010922425426542759, + -0.03566684201359749, + 0.0066457474604249, + 0.014752178452908993, + -0.02162683941423893, + 0.0012154196156188846, + 0.02130708657205105, + -0.024039510637521744, + -0.015289942733943462, + 0.029678765684366226, + -0.03398087993264198, + -0.0011690919054672122, + -0.04374783858656883, + -0.03656795993447304, + 0.05110212787985802, + 0.026873672381043434, + -0.018690938130021095, + -0.014243482612073421, + -0.005886337254196405, + -0.014912053942680359, + 0.010253854095935822, + -0.001982096815481782, + -0.04842783883213997, + 0.0008797712507657707, + -0.00931640062481165, + -0.0016223762650042772, + 0.019592056050896645, + -0.004890746902674437, + 0.007005468010902405, + 0.0283852256834507, + 0.025318516418337822, + -0.04124796390533447, + 0.015740500763058662, + -0.04764299467206001, + -0.06348523497581482, + 0.01790609210729599, + 0.03246932476758957, + 0.007993791252374649, + -0.014461494982242584, + -0.0035735880956053734, + -0.0006649380666203797, + -0.012666525319218636, + 0.04270137846469879, + -0.008749567903578281, + -0.011743606068193913, + 0.013698451220989227, + -0.0159294456243515, + 0.00010815462883329019, + -0.017818886786699295, + -0.032149575650691986, + -0.009854163974523544, + -0.011060500517487526, + 0.033050693571567535, + 0.011271245777606964, + -0.03793417289853096, + 0.004959783982485533, + 0.005581119563430548, + 0.009708822704851627, + 0.009330934844911098, + 0.0726708322763443, + 0.009156524203717709, + -0.019795533269643784, + 0.0283561572432518, + -0.021583236753940582, + 0.008139132522046566, + 0.04555007442831993, + 0.01089335698634386, + 0.002405404346063733, + -0.012659258209168911, + -0.0029540692921727896, + 0.020638516172766685, + 0.05935753136873245, + -0.020667584612965584, + -0.006147952284663916, + 0.007688573561608791, + -0.012354040518403053, + 0.010471866466104984, + 0.06453169882297516, + 0.028457896783947945, + -0.007572300266474485, + 0.031103115528821945, + -0.04720697179436684, + -0.018879881128668785, + 0.03139379993081093, + 0.03348671644926071, + 0.011278512887656689, + 0.01481031533330679, + 0.008139132522046566, + 0.01898162066936493, + -0.01063174195587635, + -0.03258559852838516, + 0.008037393912672997, + 0.030725225806236267, + 0.006227890029549599, + -0.015100997872650623, + -0.044067591428756714, + 0.00041217985562980175, + -0.019374042749404907, + -0.03630634769797325, + -0.03031826950609684, + -0.013465904630720615, + 0.039445724338293076, + -0.058747097849845886, + 0.017804352566599846, + -0.05889244005084038, + 0.030027586966753006, + 0.026728330180048943, + 0.00992683507502079, + 0.013058948330581188, + -0.016423607245087624, + 0.057351816445589066, + -0.0037352805957198143, + 0.0177316814661026, + -0.0014207146596163511, + 0.004770840052515268, + 0.0030830600298941135, + -0.02515864185988903, + -0.05511355772614479, + -0.02585628069937229, + 0.023966839537024498, + 0.016714289784431458, + -0.05743902176618576, + 0.017077645286917686, + 0.03337044641375542, + 0.03918411210179329, + -0.007020002231001854, + -0.0292427409440279, + -0.06429915130138397, + 0.01489751972258091, + 0.014999259263277054, + -0.023850565776228905, + -0.007132641971111298, + 0.005995343439280987, + 0.015304476954042912, + 0.023167461156845093, + 0.025274913758039474, + -0.00241630501113832, + -0.01790609210729599, + -0.002819628221914172, + 0.02555106393992901, + -0.007630437146872282, + -0.029664231464266777, + -0.0150719303637743, + -0.03345764800906181, + 0.011743606068193913, + 0.03877715393900871, + 0.007078138645738363, + 0.007292517460882664, + 0.00983963068574667, + -0.0031902494374662638, + -0.025027833878993988, + 0.037498146295547485, + -0.036626096814870834, + 0.015260874293744564, + 0.05723554641008377, + 0.02108907513320446, + -0.030027586966753006, + 0.02178671397268772, + -0.03744000941514969, + 0.021902987733483315, + -0.02376336045563221, + 0.027600381523370743, + 0.0019766464829444885, + -0.008691431023180485, + 0.0030667090322822332, + -0.019810067489743233, + -0.01934497430920601, + -0.021655907854437828, + 0.015391681343317032, + 0.028312554582953453, + -0.013364165090024471, + -0.023676156997680664, + 0.02940261736512184, + -0.015682365745306015, + 0.019824601709842682, + 0.003181165549904108, + -0.007783045992255211, + -0.0460733063519001, + -0.006653014570474625, + -0.05970635265111923, + 0.04624771699309349, + -0.053950823843479156, + -0.019533919170498848, + 0.0067438529804348946, + 0.025071436539292336, + 0.07720548659563065, + 0.0017577257240191102, + 0.045259393751621246, + -0.03284721449017525, + -0.008713232353329659, + 0.012419444508850574, + -0.05374734476208687, + 0.025115039199590683, + -0.04366063326597214, + 0.0068601262755692005, + 0.007212579715996981, + -0.005595653783529997, + 0.009083854034543037, + 0.0024671745486557484, + 0.027803858742117882, + 0.009476276114583015, + -0.02604522556066513, + 0.020987335592508316, + -0.0032211344223469496, + -0.03523081913590431, + 0.0030449077021330595, + -0.01824037730693817, + -0.0026724697090685368, + -0.02520224265754223, + 0.008117331191897392, + 0.006235157139599323, + 0.014308886602520943, + -0.02941715158522129, + 0.0035844885278493166, + -0.0031502803321927786, + -0.019592056050896645, + -0.021496031433343887, + 0.006863759830594063, + -0.0443292073905468, + 0.004200373776257038, + 0.010849754326045513, + 0.0027978268917649984, + -0.05270088464021683, + -0.044271070510149, + -0.04450361430644989, + -0.03066708892583847, + -0.037149328738451004, + -0.00325383641757071, + -0.036248210817575455, + -0.019185099750757217, + -0.018850812688469887, + -0.0026960878167301416, + -0.018472924828529358, + -0.00474177161231637, + 0.011518326587975025, + 0.013153419829905033, + -0.027731187641620636, + 0.03249839320778847, + 0.005450312048196793, + 0.019897272810339928, + -0.0018603731878101826, + -0.013102550059556961, + -0.011474723927676678, + 0.0009783310815691948, + -0.01462137047201395, + 0.04552100598812103, + -0.017324725165963173, + 0.021205347031354904, + -0.019199632108211517, + -0.008538822643458843, + -0.018908949568867683, + -0.0069509646855294704, + -0.00540307629853487, + 0.010326525196433067, + -0.042643241584300995, + -0.022557025775313377, + 0.0024944262113422155, + 0.028268951922655106, + -0.021772179752588272, + -0.05342759191989899, + -0.029678765684366226, + -0.01648174412548542, + -0.014287085272371769, + -0.0239377710968256, + 0.05342759191989899, + -0.008451617322862148, + 0.012920873239636421, + 0.014744911342859268, + 0.04107355326414108, + 0.030376406386494637, + -0.02550746127963066, + -0.029882244765758514, + 0.020623981952667236, + -0.024228453636169434, + -0.04680001363158226, + 0.008742300793528557, + 0.00877863634377718, + 0.039620134979486465, + 0.0023872368037700653, + -0.0025271279737353325, + 0.022571559995412827, + 0.0013062581419944763, + -0.006053479854017496, + -0.05871802940964699, + -0.002031149575486779, + -0.03400994837284088, + 0.010617207735776901, + -0.053979892283678055, + 0.023865099996328354, + 0.0009465375333093107, + -0.008153666742146015, + 0.02908286638557911, + 0.006823790725320578, + 0.00948354322463274, + -0.013582178391516209, + -0.024737149477005005, + 0.0020438670180737972, + -0.008931244723498821, + -0.010304723866283894, + -0.040695663541555405, + -0.010428263805806637, + 0.004305746406316757, + 0.013676649890840054, + -6.988889799686149e-5, + -0.02515864185988903, + -0.011743606068193913, + 0.0060425796546041965, + 0.036626096814870834, + -0.020783856511116028, + -0.0212925523519516, + -0.01739739626646042, + -0.03796324133872986, + -0.0015424382872879505, + 0.014577768743038177, + 0.03796324133872986, + -0.041945602744817734, + 0.017411930486559868, + 0.03709119185805321, + 0.01792062632739544, + 0.10139033943414688, + 0.01224503479897976, + -0.014323420822620392, + 0.013778389431536198, + -0.00946900900453329, + 0.011961618438363075, + 0.012019755318760872, + -0.003742547705769539, + 0.010951493866741657, + -0.03805044665932655, + -0.019751930609345436, + -0.001390737947076559, + -0.011903481557965279, + -0.014832115732133389, + -0.0057700639590620995, + -0.016423607245087624, + -0.029315412044525146, + 0.027527710422873497, + -0.03087056800723076, + -0.022949447855353355, + -0.01143112126737833, + -0.005214131902903318, + -0.001360761234536767, + -0.028981126844882965, + -0.005163262598216534, + 0.03066708892583847, + -0.018894415348768234, + -0.0014406992122530937, + 0.01717938482761383, + -0.009490810334682465, + -0.0424978993833065, + -0.024897025898098946, + 0.04188746586441994, + -0.01470130868256092, + -0.008909443393349648, + 0.011045966297388077, + -0.00306125869974494, + -0.027513176202774048, + 0.00984689686447382, + -0.05709020420908928, + 0.0006108891684561968, + 0.03171354904770851, + -0.009687021374702454, + -0.029155537486076355, + -0.020885596051812172, + -0.01302987989038229, + 0.02053677663207054, + 0.028414294123649597, + -0.01170727051794529, + -0.02730969712138176, + -0.012884537689387798, + -0.031858891248703, + 0.008749567903578281, + -0.018690938130021095, + -0.013502240180969238, + -0.05368920788168907, + 0.03174261748790741, + 0.01966472715139389, + 0.02871951088309288, + -0.008291741833090782, + -0.02854510210454464, + -0.018327582627534866, + -0.011976152658462524, + -0.0004864403745159507, + 0.02002808079123497, + -0.014744911342859268, + 0.009672487154603004, + 0.02762944996356964, + 0.0037825165782123804, + -0.008466151542961597, + -0.024068579077720642, + -0.015217271633446217, + 0.021394291892647743, + -0.06115977093577385, + 0.04735231399536133, + 0.006166120059788227, + 0.017470067366957664, + -0.001315342029556632, + 0.01514460053294897, + 0.02110360935330391, + -0.009614350274205208, + 0.018763607367873192, + 0.013088015839457512, + -0.02905379794538021, + -0.044212933629751205, + -0.0032011501025408506, + -0.004331181291490793, + 0.03787603601813316, + -0.00044737980351783335, + 0.024722615256905556, + 0.0058754365891218185, + -0.008633294142782688, + -0.010718947276473045, + 0.0037389141507446766, + 0.004247609991580248, + 0.003382827155292034, + 0.01132938265800476, + 0.016598017886281013, + 0.019432179629802704, + -0.008742300793528557, + -0.0007344295736402273, + -0.023690689355134964, + -0.007819381542503834, + -0.033225104212760925, + 0.000160670664627105, + 0.03238212317228317, + -0.03142286464571953, + 0.023705223575234413, + 0.0035844885278493166, + 0.0025652803014963865, + 0.02265876531600952, + -0.038021378219127655, + -0.025056902319192886, + 0.03993988782167435, + -0.012811867520213127, + 0.024417398497462273, + -0.007372455671429634, + -0.01844385638833046, + 0.026292305439710617, + 0.039968956261873245, + -0.006456803064793348, + 0.03293441981077194, + 0.02643764764070511, + -0.0017568173352628946, + -0.01258658803999424, + 0.01632186770439148, + -0.022833174094557762, + -0.00554115092381835, + 0.022019261494278908, + -0.006242424249649048, + -0.029911313205957413, + -0.015624227933585644, + -0.015493420884013176, + 0.020435037091374397, + 0.004095001146197319, + 0.009934102185070515, + 0.04002709314227104, + -0.0030467244796454906, + -0.017775284126400948, + -0.013444103300571442, + 0.04804995283484459, + -0.01391646359115839, + -0.02161230519413948, + 0.0011654584668576717, + -0.02233901247382164, + 0.006020778324455023, + -0.01950485073029995, + -0.022440752014517784, + 0.004716336727142334, + 0.009396337904036045, + 0.0150719303637743, + 0.013080749660730362, + 0.010217518545687199, + 0.013335096649825573, + -0.00037198379868641496, + -0.03130659461021423, + -0.0029613361693918705, + -0.019766464829444885, + -0.01206335797905922, + 0.012288637459278107, + -0.015304476954042912, + -0.02036236599087715, + 0.019751930609345436, + -0.0030212898273020983, + 0.014170811511576176, + 0.013356897979974747, + 0.00722711393609643, + 0.01038466114550829, + 0.0019348608329892159, + 0.052177656441926956, + 0.023836031556129456, + 0.024199385195970535, + -0.0073651885613799095, + 0.03119031898677349, + -0.02340000681579113, + 0.030986841768026352, + 0.039067838340997696, + 0.00514146126806736, + 0.004937982652336359, + 0.008814971894025803, + -0.003949659410864115, + -0.03685864433646202, + -0.03354485332965851, + 0.0054866475984454155, + -0.019272303208708763, + 0.014316153712570667, + 0.04383504390716553, + -0.004636398982256651, + 0.03331230953335762, + 0.008124598301947117, + 0.009054785594344139, + -0.005206864792853594, + -0.027062617242336273, + -0.010035841725766659, + 0.01391646359115839, + -0.03241118788719177, + 0.05072423815727234, + -0.003450047690421343, + -0.002979503944516182, + -0.0146359046921134, + 0.0239377710968256, + -0.003086693352088332, + 0.0012599305482581258, + 0.028966592624783516, + -0.0031066779047250748, + 0.016089322045445442, + 0.025783609598875046, + 0.004680001176893711, + 0.014664973132312298, + 0.025391187518835068, + 0.02145242877304554, + 0.027542244642972946, + -0.03177168592810631, + 0.024519138038158417, + 0.012906339019536972, + -0.02623416855931282, + -0.005217765457928181, + 0.0479046106338501, + -0.005166896153241396, + 0.0070272693410515785, + 0.010261121205985546, + 0.05124747008085251, + 0.033225104212760925, + 0.009047518484294415, + -0.041742123663425446, + -0.013247892260551453, + -0.00914198998361826, + 0.012848202139139175, + 0.002205559751018882, + -0.01648174412548542, + 0.0026216001715511084, + 0.01531901117414236, + 0.008124598301947117, + 0.016089322045445442, + -0.0010519102215766907, + -0.013109817169606686, + -0.01258658803999424, + -0.03941665589809418, + 0.007332486566156149, + -0.0024199385661631823, + -0.01542074978351593, + 0.008110064081847668, + 0.006573076359927654, + 0.0055665853433310986, + -0.008008325472474098, + -0.03284721449017525, + 0.029344480484724045, + 0.02466448023915291, + 0.0016877800226211548, + -0.003170264884829521, + -0.003555420320481062, + -2.0722540284623392e-5, + 0.03991081938147545, + 0.004818075802177191, + 0.01858919858932495, + 0.0070272693410515785, + -0.02803640626370907, + -0.007630437146872282, + -0.022949447855353355, + -0.002185575198382139, + -0.032905351370573044, + 0.031161250546574593, + -0.002476258436217904, + 0.0030140227172523737, + 0.0064967721700668335, + 0.014839382842183113, + -0.008974847383797169, + -0.02324013039469719, + -0.008219070732593536, + -0.033748332411050797, + -0.01735379360616207, + -0.05781691148877144, + 0.025812678039073944, + 0.007485095411539078, + -0.02873404510319233, + 0.01443969365209341, + 0.005468479823321104, + -0.006634846795350313, + 0.0018095036502927542, + 0.013138885609805584, + -0.009519878774881363, + 3.131090852548368e-5, + 0.012194165028631687, + -0.01319702249020338, + 0.018007831647992134, + 0.014526898972690105, + -0.01204882375895977, + 0.0005018829251639545, + -0.02957702800631523, + 0.03575404733419418, + 0.002054767683148384, + -0.008357144892215729, + -0.03151006996631622, + -0.004011429846286774, + -0.013320563361048698, + 0.02783292718231678, + 0.007168977055698633, + -0.029693299904465675, + -0.021859385073184967, + -0.009643418714404106, + 0.0012717394856736064, + 0.028428828343749046, + -0.0027687586843967438, + -0.0008933970239013433, + 0.02537665329873562, + -0.002022065920755267, + -0.009309133514761925, + 0.005810032598674297, + -0.0186037328094244, + -0.018763607367873192, + -0.05302063748240471, + 0.0292718093842268, + 0.03084149956703186, + -0.023152926936745644, + 0.0027433237992227077, + 0.03764348849654198, + -0.0018194959266111255, + 0.011372984386980534, + 0.019562987610697746, + -0.009832363575696945, + -0.011060500517487526, + 0.027367834001779556, + -0.004120436031371355, + -0.0070272693410515785, + 0.028283486142754555, + -0.006914629600942135, + 0.05441591516137123, + -0.02321106195449829, + -0.053107842803001404, + 0.03267280384898186, + 0.00912745576351881, + -0.029286343604326248, + 0.004189473111182451, + 0.017092179507017136, + 0.0008484319550916553, + -0.0018367551965638995, + -0.021336155012249947, + -0.04223628714680672, + 0.014446960762143135, + 0.029315412044525146, + -0.021844850853085518, + 0.04630585387349129, + 0.02712075412273407, + 0.008531555533409119, + -0.004461988806724548, + 0.02235354669392109, + 0.00046463910257443786, + 0.01613292470574379, + 0.017077645286917686, + 0.03159727528691292, + 0.04950336739420891, + -0.013712985441088676, + -0.016917768865823746, + -0.018850812688469887, + -0.01665615476667881, + -0.017964228987693787, + 0.014396090991795063, + 0.02110360935330391, + 0.036771439015865326, + -0.007125374861061573, + 0.0354924313724041, + 0.03610286861658096, + 0.008894909173250198, + -0.013146152719855309, + 0.03476572409272194, + 0.004690901841968298, + 0.02001354657113552, + 0.004000529181212187, + 0.007405157666653395, + -0.020507708191871643, + 0.01965019293129444, + -0.007732176221907139, + 0.0051232934929430485, + 0.007565033156424761, + 0.01293540745973587, + -0.02338547259569168, + -0.0011400235816836357, + -0.007107207085937262, + -0.023792428895831108, + -0.01858919858932495, + -0.0049307155422866344, + -0.006195188034325838, + -0.024039510637521744, + 0.03258559852838516, + -0.021670442074537277, + -0.021917521953582764, + 0.006140685174614191, + -0.005374007858335972, + 0.007129008416086435, + 0.004004162736237049, + -5.646182762575336e-5, + -0.016045719385147095, + -0.016554415225982666, + -0.0011945267906412482, + -0.004102268256247044, + 0.022033795714378357, + -0.002948618959635496, + 0.026989946141839027, + -0.030231064185500145, + -0.014301619492471218, + 0.00850248709321022, + -0.0177607499063015, + 0.008001058362424374, + 0.007187144830822945, + -0.005257734563201666, + 0.003775249468162656, + -0.02802187204360962, + 0.028123611584305763, + 0.019039757549762726, + 0.033748332411050797, + -0.044445477426052094, + -0.026641126722097397, + 0.0024072211235761642, + 0.029707834124565125, + -0.04188746586441994, + -0.004331181291490793, + -0.01162733230739832, + -0.019562987610697746, + -0.0026325008366256952, + 0.011358450166881084, + 0.007819381542503834, + -0.004196740221232176, + 0.02075478807091713, + 0.014461494982242584, + 0.024141250178217888, + -0.016539881005883217, + -0.01319702249020338, + -0.02056584507226944, + -0.007238014601171017, + 0.006852859165519476, + -0.0266120582818985, + 0.018385719507932663, + 0.011852611787617207, + 0.017993297427892685, + -0.00039219539030455053, + 0.04499777778983116, + -0.03761442005634308, + -0.042817652225494385, + 0.007877517491579056, + 0.02146696299314499, + 0.0115110594779253, + -0.020086217671632767, + 0.013727519661188126, + -0.0036898613907396793, + -0.0023926871363073587, + 0.001794969430193305, + -0.010588140226900578, + 0.014265283942222595, + 0.013625780120491982, + -0.030754294246435165, + -0.00842254888266325, + -0.00894577894359827, + -0.009214661084115505, + -0.0010482766665518284, + 0.02520224265754223, + 0.0011936184018850327, + -0.0025180443190038204, + -0.009519878774881363, + -0.048515044152736664, + 0.007746710442006588, + 0.002721522469073534, + -0.006362331099808216, + -0.002968603279441595, + 0.0013480439083650708, + 0.013596711680293083, + 0.00239450391381979, + -0.029853176325559616, + -0.0009665220277383924, + -0.0055665853433310986, + 0.010929692536592484, + -0.010689878836274147, + -0.04002709314227104, + -0.014199879951775074, + -0.0079792570322752, + -0.026277771219611168, + 0.0026125162839889526, + 0.0025216778740286827, + 0.035899389535188675, + 0.022804105654358864, + -0.05694486200809479, + -0.007176244165748358, + 0.03249839320778847, + 0.011976152658462524, + 0.0025489293038845062, + 0.018138639628887177, + 0.014803048223257065, + -0.009614350274205208, + -0.01665615476667881, + 0.004356616176664829, + 0.02248435467481613, + 0.013349630869925022, + 0.009490810334682465, + -0.015188203193247318, + 0.023879634216427803, + 0.02142336033284664, + 0.028632307425141335, + 0.0067801885306835175, + 0.03630634769797325, + 0.0007362463511526585, + -0.026975411921739578, + 0.02871951088309288, + 0.0006758387316949666, + 0.02017342299222946, + -0.008313543163239956, + -0.01651081256568432, + 0.0007326127961277962, + 0.004102268256247044, + -0.006438635289669037, + -0.00687466049566865, + -0.0057700639590620995, + 0.039271317422389984, + 0.005028821527957916, + -0.04241069406270981, + 0.006791089195758104, + 0.011031432077288628, + -0.004520125687122345, + -0.0001460229541407898, + 0.008211803622543812, + 0.013981867581605911, + -0.01861826702952385, + -0.0204059686511755, + -0.014119941741228104, + -0.006162486504763365, + 0.01284093502908945, + 0.010718947276473045, + 0.0337192639708519, + -0.008357144892215729, + -0.031858891248703, + -0.03267280384898186, + 0.015042861923575401, + -0.007299784570932388, + -0.0057700639590620995, + 0.014127208851277828, + 0.006028045434504747, + 0.014352488331496716, + -0.01454870030283928, + -0.02409764751791954, + -0.001459775259718299, + -0.03531802445650101, + -0.007430592086166143, + -0.02183031663298607, + 0.008909443393349648, + 0.025928951799869537, + 0.01716485060751438, + -0.0028087275568395853, + -0.028646841645240784, + 0.02555106393992901, + -0.010784351266920567, + 0.003909690771251917, + -0.031132183969020844, + 0.0007839365862309933, + 0.003582671983167529, + -0.012964475899934769, + 0.013385966420173645, + 0.03953292965888977, + -0.010915158316493034, + 0.002323649823665619, + -0.027396902441978455, + -0.003815218573436141, + -0.02217913791537285, + -0.02374882623553276, + -0.012143295258283615, + 0.022571559995412827, + -0.029475288465619087, + 0.003931491635739803, + -0.020478639751672745, + 0.012913606129586697, + -0.00744149275124073, + 0.0028414293192327023, + -0.00021789893798995763, + -0.021932056173682213, + -0.018531061708927155, + -0.00283779576420784, + -0.029010195285081863, + -0.022600628435611725, + 0.0030358238145709038, + -0.02289131097495556, + 0.02075478807091713, + 0.026553921401500702, + -0.013167954050004482, + 0.020304229110479355, + 0.0069763995707035065, + 0.009439940564334393, + -0.014861184172332287, + -0.0031611809972673655, + 0.0008593325619585812, + -0.012557519599795341, + -0.019039757549762726, + 0.010014040395617485, + 0.03432970121502876, + 0.00033542129676789045, + -0.05028821527957916, + -0.009105654433369637, + 0.03119031898677349, + -0.00146159203723073, + -0.011293047107756138, + -0.014832115732133389, + 0.0009519878658466041, + -0.006816523615270853, + -0.01170727051794529, + -0.0017386495601385832, + 0.009200126864016056, + 0.024940628558397293, + -0.018385719507932663, + -0.022644231095910072, + 0.01648174412548542, + 0.007761244662106037, + -0.001128214644268155, + 0.014490563422441483, + -0.020594913512468338, + 0.002488975878804922, + -0.05348572880029678, + -0.0075068967416882515, + -0.0097596924751997, + 0.03703305497765541, + -0.04366063326597214, + -0.005417610518634319, + -0.004934349097311497, + 0.021568702533841133, + 0.030201995745301247, + 0.0011000547092407942, + -0.0037043956108391285, + -0.004749038722366095, + 0.013589444570243359, + 0.027077151462435722, + -0.0020147988107055426, + 0.0039896285161376, + 0.00739789055660367, + 0.010922425426542759, + -0.010442798025906086, + -0.0012136028381064534, + -0.0043602497316896915, + 0.02248435467481613, + -0.0038806223310530186, + 0.0066384803503751755, + 0.007862983271479607, + 0.0058500017039477825, + -0.0044256532564759254, + 0.036974918097257614, + 0.021568702533841133, + -0.009897766634821892, + 0.012928140349686146, + 0.002381786471232772, + -0.0015360796824097633, + 0.006256958469748497, + 0.021190812811255455, + 0.0024235721211880445, + 0.0093018664047122, + 0.002908649854362011, + 0.00842254888266325, + -0.009548947215080261, + 0.0009901400189846754, + 0.008044661022722721, + 0.0017913359915837646, + 0.021583236753940582, + 0.019577521830797195, + 0.014679507352411747, + -0.0025089604314416647, + 8.510435145581141e-5, + 0.0077539775520563126, + -0.005617455113679171, + 0.012957208789885044, + -0.04037591442465782, + -0.004167672246694565, + -0.022949447855353355, + -0.022905845195055008, + -0.008429815992712975, + 0.01787702366709709, + 0.003182982327416539, + -0.018327582627534866, + 0.005046989303082228, + 0.04726510867476463, + 0.004044131841510534, + -0.03119031898677349, + -0.01754273846745491, + 0.002169224200770259, + -0.010973295196890831, + 0.005784598179161549, + 0.02959156222641468, + 0.02197565883398056, + -0.01170727051794529, + -0.018487459048628807, + 0.026016157120466232, + 0.001842205529101193, + 0.01301534567028284, + 0.004174939356744289, + 0.015013793483376503, + 0.00888037495315075, + 0.011162239126861095, + -0.015246340073645115, + 0.015377147123217583, + -0.022731434553861618, + -0.02340000681579113, + 0.01933044008910656, + 0.027774790301918983, + -0.008756835013628006, + -0.02536211907863617, + 0.013400500640273094, + 0.022106466814875603, + -0.01321155671030283, + -0.001960295718163252, + 0.020507708191871643, + -0.01339323353022337, + 0.03267280384898186, + -0.006485871504992247, + -0.016888700425624847, + 0.013633047230541706, + -0.004927081987261772, + 0.004734504502266645, + -0.02287677675485611, + -0.01841478794813156, + 0.013327830471098423, + -0.023007584735751152, + 0.0016469026450067759, + -0.013218823820352554, + 0.016932303085923195, + -0.0018948918441310525, + -0.009963170625269413, + -0.0024090379010885954, + -0.00914198998361826, + -0.010130313225090504, + -0.0005990801728330553, + -0.014228948391973972, + -0.014228948391973972, + 0.010261121205985546, + -0.017804352566599846, + -0.009185592643916607, + -5.024506390327588e-5, + -0.016525346785783768, + -0.009323667734861374, + -0.002370885806158185, + -0.010973295196890831, + 0.002745140576735139, + 0.00540307629853487, + 0.00023527181474491954, + -0.0059844427742064, + -0.012390376068651676, + -0.0003865179605782032, + 0.030783362686634064, + -0.005806399043649435, + -0.015377147123217583, + 0.004523759242147207, + -0.03104497864842415, + -0.008669629693031311, + -0.0007657688693143427, + -0.014759445562958717, + 0.0063550639897584915, + 0.029111934825778008, + -0.006068014074116945, + 0.019039757549762726, + -0.01579863764345646, + 0.002487159101292491, + 0.013887395150959492, + -0.008131865411996841, + 0.020347831770777702, + -0.0014297985471785069, + -5.972633880446665e-5, + 0.018124105408787727, + 0.00011122043360956013, + -0.007768511772155762, + 0.0037716159131377935, + 0.021932056173682213, + -0.008364412002265453, + 0.027149822562932968, + -0.03281814604997635, + 0.008662362582981586, + -0.022905845195055008, + 0.022818639874458313, + -0.00038288443465717137, + -0.0005291344714350998, + -0.013000811450183392, + -0.007012735120952129, + 0.0036244576331228018, + 0.032353054732084274, + 0.015362612903118134, + -0.01002130750566721, + 0.02143789455294609, + 0.009570748545229435, + -0.007129008416086435, + -0.022106466814875603, + -0.023356404155492783, + -0.005501181818544865, + -0.000707178027369082, + -0.032905351370573044, + -0.03212050721049309, + 0.008676896803081036, + -0.005897237919270992, + -0.01116950623691082, + 0.004153138026595116, + 0.013894662261009216, + -0.008044661022722721, + -0.008277207612991333, + -0.016627086326479912, + -0.022382615134119987, + -0.010588140226900578, + 0.0017041309038177133, + 0.009156524203717709, + -0.05386361852288246, + -0.014563234522938728, + -0.017847955226898193, + -0.007492362521588802, + 0.005977175664156675, + 0.02853056788444519, + -0.005690125748515129, + -0.013807457871735096, + 0.01716485060751438, + 0.012644723989069462, + 0.027019014582037926, + 0.016249196603894234, + -0.016714289784431458, + -0.017237519845366478, + 0.02005714923143387, + 0.01178720872849226, + 0.003041274147108197, + 0.014061805792152882, + 0.017673546448349953, + -0.006511306390166283, + -0.003555420320481062, + 0.012731929309666157, + -0.00016112485900521278, + 0.006678448989987373, + 0.01542074978351593, + -0.03665516525506973, + 0.018705470487475395, + -0.0002563917660154402, + -0.0005663782940246165, + 0.0012526634382084012, + -0.006289660464972258, + -0.0292718093842268, + 0.007096306420862675, + -0.007695840671658516, + 0.025652803480625153, + 0.0033283240627497435, + -0.013843792490661144, + -0.011024164967238903, + -0.00765950558707118, + 0.025812678039073944, + -0.020464105531573296, + -0.07557766139507294, + -0.0007035444723442197, + 0.011045966297388077, + -0.02408311329782009, + 0.021496031433343887, + 0.021161746233701706, + 0.0022782303858548403, + -0.0031593642197549343, + -0.0033646593801677227, + 0.05546237528324127, + -0.022397149354219437, + 0.01824037730693817, + 0.016263730823993683, + -0.009672487154603004, + 0.012644723989069462, + -0.014025470241904259, + -0.011242177337408066, + 0.0038551874458789825, + 0.013138885609805584, + -0.03598659485578537, + 0.0033773768227547407, + -0.01685963198542595, + -0.012077892199158669, + 0.02039143443107605, + -0.012077892199158669, + -0.0031902494374662638, + 0.001021025120280683, + 0.02944622002542019, + -0.004908914677798748, + -0.02306572161614895, + 0.007129008416086435, + 0.03334137797355652, + 0.0013816541759297252, + 0.020522242411971092, + 0.016539881005883217, + -0.004974318202584982, + 0.032905351370573044, + 0.00931640062481165, + 0.002098370110616088, + 0.01629279926419258, + -0.03456224501132965, + -0.005810032598674297, + -0.015130066312849522, + 0.008727766573429108, + -0.019243234768509865, + -0.005766430404037237, + 0.025754541158676147, + -0.003451864467933774, + 0.013422301970422268, + 0.014941122382879257, + 0.011038699187338352, + -0.02252795733511448, + 0.010755282826721668, + -0.0033028891775757074, + -0.013109817169606686, + -0.02604522556066513, + 0.0033065227326005697, + 0.005105125717818737, + 0.01055907178670168, + -0.0039896285161376, + 0.024693546816706657, + 0.010297456756234169, + 0.0013117084745317698, + 0.0034464141353964806, + 0.015013793483376503, + -0.015842240303754807, + -0.011423854157328606, + 0.0013916463358327746, + -0.0006667548441328108, + -0.012630189768970013, + -0.006078914739191532, + 0.013792923651635647, + 0.00727435015141964, + -0.002790559781715274, + -0.035201750695705414, + -0.007448759861290455, + 0.0017422831151634455, + 0.000556840212084353, + -0.00016748355119489133, + 0.003982361406087875, + 0.005341305863112211, + -0.0029849542770534754, + -0.007892051711678505, + 0.003778883023187518, + -0.010399195365607738, + -0.0014652255922555923, + -0.01054453756660223, + 0.001128214644268155, + -0.003858821000903845, + -0.012833668850362301, + -0.0019312272779643536, + -0.010377394035458565, + -0.015173668973147869, + -0.0050324550829827785, + -0.025652803480625153, + 0.009817829355597496, + 0.013088015839457512, + -0.02518770843744278, + 0.030405474826693535, + -0.003399177920073271, + -0.012666525319218636, + -0.012521184049546719, + -0.03171354904770851, + -0.00638413242995739, + 0.012513916939496994, + 0.0023781529162079096, + 0.0026833703741431236, + 0.0257400069385767, + -0.01170727051794529, + 0.02324013039469719, + 0.0002545749885030091, + -0.017644478008151054, + -0.00024208470131270587, + 0.010733481496572495, + -0.010617207735776901, + 0.012710127979516983, + 0.006118883844465017, + -0.02053677663207054, + -0.00019598414655774832, + -0.021743111312389374, + -0.011867146007716656, + 0.004185839556157589, + 0.012121493928134441, + -0.014781246893107891, + 0.009534412994980812, + 0.0301147922873497, + -0.003282904624938965, + 0.0026470350567251444, + 0.010471866466104984, + 0.01735379360616207, + 0.021321620792150497, + -0.008022859692573547, + -0.018385719507932663, + -0.015624227933585644, + -0.013792923651635647, + 0.004898014012724161, + -0.007746710442006588, + 0.007637704256922007, + 0.018879881128668785, + 0.006060746964067221, + -0.00868416391313076, + -0.016786960884928703, + -0.016161993145942688, + 0.002229177625849843, + -0.013095282949507236, + 0.009548947215080261, + 0.019243234768509865, + 0.010399195365607738, + -0.021060006693005562, + 0.012448512949049473, + 0.014505097642540932, + -0.017135782167315483, + 0.02076932229101658, + 0.007059970870614052, + 0.008655095472931862, + -0.02960609644651413, + 0.008873107843101025, + 0.0008838589419610798, + -0.010936959646642208, + -0.011852611787617207, + 0.013880128040909767, + 0.005243200343102217, + 0.011016897857189178, + -0.0036825942806899548, + 0.0046981689520180225, + -0.02464994601905346, + 0.0021674074232578278, + 0.007783045992255211, + 0.014853917062282562, + -0.02514410763978958, + 0.05427057668566704, + -0.012012488208711147, + -0.015624227933585644, + 0.023806963115930557, + 0.008713232353329659, + 0.01752820424735546, + 0.008364412002265453, + -0.026815535500645638, + -0.00492344843223691, + 0.01470130868256092, + -0.0017268406227231026, + -0.024359261617064476, + -0.002125621773302555, + 0.0006181562202982605, + 0.00974515825510025, + -0.004763572942465544, + 0.011576463468372822, + 0.014345221221446991, + 0.005570218898355961, + -0.0027760255616158247, + 0.0004180843534413725, + 0.018036900088191032, + -0.0443873405456543, + 0.01809503696858883, + 0.010995096527040005, + 0.001831304864026606, + 0.00031157617922872305, + -0.023138392716646194, + 0.02691727504134178, + -4.022444045403972e-5, + 0.008277207612991333, + -0.0015288125723600388, + 0.04700349271297455, + -0.004948883317410946, + -0.005366740748286247, + -0.003486383007839322, + 0.024010442197322845, + 0.0002616149722598493, + 0.0071181077510118484, + 0.01841478794813156, + -0.013545842841267586, + 0.0030430909246206284, + -0.024679012596607208, + 0.021917521953582764, + -0.014679507352411747, + -0.021016404032707214, + -0.03793417289853096, + 0.008008325472474098, + -0.0274986419826746, + 0.004240342881530523, + -0.0034209792502224445, + -0.017964228987693787, + 0.017266588285565376, + -0.006511306390166283, + 0.0050978586077690125, + 0.01284093502908945, + 0.0025307615287601948, + 0.021190812811255455, + 0.014403358101844788, + 0.006751120090484619, + -0.00527953589335084, + -0.014912053942680359, + 0.014214414171874523, + -0.018894415348768234, + -0.0025216778740286827, + -0.009788760915398598, + 0.00039651020779274404, + 0.01542074978351593, + 0.002147423103451729, + 0.0013507690746337175, + -0.027440505102276802, + 0.006900095380842686, + -0.009737891145050526, + -0.007783045992255211, + -0.011881680227816105, + -0.008953046053647995, + 0.027585847303271294, + -0.008473418653011322, + -0.030725225806236267, + 0.011838078498840332, + -0.0035172682255506516, + 0.003206600435078144, + 0.007161710411310196, + -0.011045966297388077, + 0.019228700548410416, + -0.0077539775520563126, + -0.009476276114583015, + -0.012179630808532238, + 0.00957801565527916, + 0.019461248070001602, + -0.001025567064061761, + 0.013698451220989227, + 0.006373231764882803, + -0.0015978498850017786, + 0.0301147922873497, + 0.026524852961301804, + -0.004320280626416206, + 0.014461494982242584, + -0.006184287369251251, + 0.010290189646184444, + -0.00043352690408937633, + -0.02338547259569168, + -0.005392175633460283, + 0.010900624096393585, + -0.005206864792853594, + 0.00638413242995739, + -0.015231805853545666, + 0.00027478658012114465, + -0.023995907977223396, + 0.0061079831793904305, + -0.004487423691898584, + 0.014185345731675625, + -0.01364031434059143, + -0.005057889502495527, + 0.020493173971772194, + -0.018516527488827705, + -0.0020693019032478333, + -0.006311461329460144, + 0.005831833928823471, + -0.009599816054105759, + -0.02553652971982956, + -0.030347337946295738, + -0.009708822704851627, + 0.0021328888833522797, + -0.0019857303705066442, + -0.015900377184152603, + -0.007212579715996981, + -0.006863759830594063, + 0.011089568957686424, + -0.01842932216823101, + -0.0070018344558775425, + 0.00842254888266325, + -0.018749073147773743, + 0.013545842841267586, + -0.0066457474604249, + 0.006118883844465017, + 0.011649133637547493, + -0.007855716161429882, + 0.018850812688469887, + -0.008538822643458843, + -0.007812113966792822, + 0.010261121205985546, + -0.021379757672548294, + -0.0039024234283715487, + -0.002429022453725338, + 0.00281599466688931, + -0.018720004707574844, + -0.00788478460162878, + 0.05121840164065361, + 0.007528698071837425, + 0.0009528962546028197, + 0.03406808525323868, + 0.027207957580685616, + -0.006634846795350313, + -0.006409567315131426, + -0.00807372946292162, + 0.008756835013628006, + -0.00325383641757071, + 0.0023745193611830473, + -0.01597304828464985, + 0.013335096649825573, + -0.002581631299108267, + -0.01736832782626152, + 0.005079690832644701, + 0.015595159493386745, + 0.014337954111397266, + -0.003026739927008748, + 0.00566469132900238, + 0.004149504471570253, + -0.015478886663913727, + -0.010050375945866108, + 0.03988175094127655, + -0.012513916939496994, + 0.017513670027256012, + 0.005152361933141947, + -0.011983419768512249, + 0.027905598282814026, + -0.004331181291490793, + 0.007572300266474485, + -0.01700497418642044, + -0.003873355221003294, + -0.007292517460882664, + 0.00020677121938206255, + 0.012804600410163403, + -0.0060716476291418076, + -0.008168200962245464, + 0.01700497418642044, + 0.017499135807156563, + -0.014853917062282562, + -0.019548453390598297, + -0.0039896285161376, + -0.013502240180969238, + -0.013095282949507236, + 0.010420996695756912, + -0.012666525319218636, + 0.00014352488506119698, + -0.022048329934477806, + 0.0026234169490635395, + -0.0003579038311727345, + -0.024373795837163925, + 0.005076057277619839, + 0.003006755607202649, + 0.022775037214159966, + 0.007528698071837425, + 0.006729318760335445, + -0.0032810878474265337, + 0.02496969699859619, + 0.013138885609805584, + -0.004687268286943436, + -0.022731434553861618, + 0.0026579354889690876, + -0.0010364677291363478, + -0.036044731736183167, + 0.003717112820595503, + -0.02036236599087715, + -0.0007539598736912012, + 0.026146965101361275, + 0.006209722254425287, + 0.002181941643357277, + -0.016917768865823746, + 0.00323748541995883, + -0.016728824004530907, + -0.005704659968614578, + 0.014541433192789555, + 0.023966839537024498, + 0.01790609210729599, + 0.00984689686447382, + -0.0017986029852181673, + 0.010777084156870842, + 0.002405404346063733, + -0.010980562306940556, + -0.005668324884027243, + 0.006325995549559593, + -0.011496525257825851, + 0.02411218173801899, + -0.01898162066936493, + -0.0034100785851478577, + -0.010130313225090504, + -0.000366533495252952, + -0.019955409690737724, + 0.010878822766244411, + 0.0064967721700668335, + 0.00491254823282361, + 0.0006404116866178811, + 0.0064168344251811504, + 0.014243482612073421, + 0.005272268783301115, + -0.01648174412548542, + 0.0009238279308192432, + 0.004538293462246656, + 0.008328077383339405, + 0.012077892199158669, + -0.0074196914210915565, + -0.0017768017714843154, + -0.005853635258972645, + 0.005802765488624573, + -0.014308886602520943, + -0.016903234645724297, + -0.01774621568620205, + -0.007114474195986986, + -0.0030103891622275114, + 0.017978763207793236, + -0.01135118305683136, + -0.020871061831712723, + 0.006972766015678644, + -0.009977704845368862, + -0.002616149839013815, + -0.0054612127132713795, + -0.000939270481467247, + 0.0053703743033111095, + 0.019824601709842682, + -0.0292718093842268, + 0.012368574738502502, + 0.010682611726224422, + -0.0029958549421280622, + 0.005748262628912926, + -0.003613556968048215, + 0.0006994567229412496, + -0.007470561191439629, + 0.01427255105227232, + 0.03970734030008316, + 0.002414488233625889, + 0.022833174094557762, + -0.013138885609805584, + -0.009810562245547771, + 0.0006917354767210782, + 0.0097596924751997, + -0.0005582027952186763, + 0.025303982198238373, + -0.007357921451330185, + 0.02196112461388111, + 0.02145242877304554, + 0.022237272933125496, + 0.0023418173659592867, + 0.01614745892584324, + -0.0005259551107883453, + 0.0168160293251276, + -0.03653889149427414, + 0.027789324522018433, + -0.006438635289669037, + -0.0019439447205513716, + -0.0020329663529992104, + -0.006881927605718374, + -0.012121493928134441, + -0.016583483666181564, + 0.009367269463837147, + -0.01911242865025997, + -0.0026851871516555548, + -0.018763607367873192, + 0.02005714923143387, + 0.007833915762603283, + -5.3282477892935276e-5, + 0.007187144830822945, + 0.010624474845826626, + 0.004774473607540131, + 0.015827706083655357, + 0.006540374830365181, + -0.00735065434128046, + -0.009519878774881363, + 0.012463047169148922, + 0.030347337946295738, + -0.02603069134056568, + 0.0015469802310690284, + -0.027207957580685616, + 0.016932303085923195, + 0.00690736249089241, + -0.018153173848986626, + 0.00019439446623437107, + -0.02248435467481613, + -0.004516492132097483, + 0.012303171679377556, + 3.9088958146749064e-5, + -0.008037393912672997, + 0.0007503263186663389, + 0.011656400747597218, + 0.000283643341390416, + 0.004861678462475538, + -0.01685963198542595, + 0.0006808348116464913, + 0.003050358034670353, + 0.002370885806158185, + 0.013502240180969238, + -0.021902987733483315, + -0.0006181562202982605, + 0.009447207674384117, + 0.005842734593898058, + 0.0221646036952734, + -0.022266341373324394, + -0.019083360210061073, + 0.021365223452448845, + 0.012739196419715881, + 0.0012481214944273233, + -0.009091121144592762, + 0.0065222070552408695, + -0.0033047059550881386, + -0.013436836190521717, + -0.006169753149151802, + 0.026161499321460724, + -0.022106466814875603, + -0.01771714724600315, + 0.011489258147776127, + 0.028675908222794533, + 0.012637456879019737, + -0.007957455702126026, + -0.0011491074692457914, + 0.0033755600452423096, + 0.0045927963219583035, + -0.007238014601171017, + 0.0034772991202771664, + -0.003557237097993493, + 0.004233075771480799, + -0.0077031077817082405, + 0.00208020256832242, + 0.01161279808729887, + -0.022091932594776154, + -0.008662362582981586, + 0.022978516295552254, + -0.0026470350567251444, + 0.010348325595259666, + -0.02515864185988903, + 0.006249691359698772, + 0.007652238477021456, + -0.025391187518835068, + 0.007256182376295328, + 0.003073976142331958, + 0.005195964127779007, + 0.010537270456552505, + -0.006729318760335445, + -0.02268783189356327, + 0.012106959708034992, + -0.013596711680293083, + -0.00031475553987547755, + 0.008546089753508568, + 0.0002695633447729051, + 0.006100716069340706, + -0.01188894733786583, + -0.0097596924751997, + -2.639995000208728e-5, + -0.028443362563848495, + -0.003778883023187518, + -0.008662362582981586, + -0.0009483543108217418, + 0.01089335698634386, + -0.0021292553283274174, + -0.0009955903515219688, + 0.0070272693410515785, + -0.010166648775339127, + -0.017048576846718788, + 0.01488298550248146, + 0.016975905746221542, + -0.006671181879937649, + 0.013037147000432014, + 0.015653297305107117, + -0.01614745892584324, + -0.011656400747597218, + 0.028065474703907967, + 0.012899071909487247, + -0.010493667796254158, + 0.03017292730510235, + -0.001330784521996975, + -0.0009547130321152508, + 0.02536211907863617, + 0.0012753730406984687, + 0.002603432396426797, + 0.008226337842643261, + -0.001272647874429822, + -0.0009056602139025927, + 0.013538575731217861, + 0.003379193600267172, + -0.007674039341509342, + 0.0058245668187737465, + -0.0030903269071131945, + -0.007096306420862675, + -0.010123046115040779, + 0.012528451159596443, + -0.012448512949049473, + 0.02284770831465721, + 0.008466151542961597, + -0.009360002353787422, + -0.019185099750757217, + 0.0021038204431533813, + -0.03156820684671402, + 0.009287332184612751, + 0.03488199785351753, + -0.012383108958601952, + 0.00022391699894797057, + 0.006376865319907665, + -0.020827459171414375, + 0.022019261494278908, + 0.004225808661431074, + -0.014679507352411747, + -0.0020493173506110907, + -0.006220622919499874, + -0.005610188003629446, + 0.021001869812607765, + 0.007688573561608791, + -0.018894415348768234, + 0.01699043996632099, + 0.01664162054657936, + -0.01037012692540884, + 0.008022859692573547, + 0.0032302183099091053, + -0.0019748297054320574, + -0.003717112820595503, + -0.0006990025285631418, + 0.009810562245547771, + 0.016452675685286522, + 0.0020747522357851267, + 0.01915603131055832, + 0.011423854157328606, + 0.02091466449201107, + 0.0018558312440291047, + -0.00041286114719696343, + 0.018545595929026604, + 0.01683056354522705, + -0.01808050274848938, + 0.002603432396426797, + -0.03249839320778847, + 0.03357392176985741, + 0.001823129365220666, + 0.015871308743953705, + 0.003985994961112738, + -0.01579863764345646, + 0.012295904569327831, + -0.022804105654358864, + 0.009250996634364128, + -0.011089568957686424, + 0.005036088638007641, + -0.021016404032707214, + 0.02762944996356964, + 0.00018179061589762568, + -0.023806963115930557, + -0.0038079514633864164, + 0.008851306512951851, + -0.003975094296038151, + -0.010689878836274147, + -0.0004855319857597351, + 0.014708575792610645, + 0.0006177020259201527, + 0.022571559995412827, + -0.017092179507017136, + 0.006547641474753618, + -0.010224785655736923, + 0.024402864277362823, + 0.013967333361506462, + 0.012368574738502502, + -0.013720252551138401, + -0.001236312440596521, + 0.005784598179161549, + -0.004778107162564993, + -0.005522983148694038, + 0.012746463529765606, + -0.0016514445887878537, + -0.01514460053294897, + -0.004356616176664829, + 0.015914911404252052, + -0.02996945008635521, + -0.014141743071377277, + 0.013502240180969238, + -0.004719970282167196, + -0.002005714923143387, + 0.01646720990538597, + -0.01739739626646042, + -0.0008625119226053357, + -0.03177168592810631, + 0.009505344554781914, + -0.003473665565252304, + 0.0040513984858989716, + 0.03560870513319969, + 0.00699820090085268, + 0.010210251435637474, + -0.008197269402444363, + -0.013494973070919514, + -0.002803277224302292, + 0.006231523584574461, + 0.016161993145942688, + 0.0017086728475987911, + 0.014301619492471218, + -0.024141250178217888, + 0.0042040073312819, + 0.0025798145215958357, + -0.010936959646642208, + -0.018705470487475395, + 0.037527214735746384, + -0.010827953927218914, + -0.021714042872190475, + -0.009505344554781914, + 0.00860422570258379, + 0.0055665853433310986, + -0.020464105531573296, + 0.022629696875810623, + -0.011823544278740883, + -0.006318728439509869, + -0.004858044907450676, + -0.008349878713488579, + 0.0011590997455641627, + 0.01213602814823389, + 0.006529474165290594, + 0.015289942733943462, + 0.014170811511576176, + 0.002828712109476328, + 0.014127208851277828, + 0.030899636447429657, + -0.004898014012724161, + 0.0009883232414722443, + 0.005548417568206787, + 0.019621124491095543, + 0.009200126864016056, + 0.010173915885388851, + -0.0027978268917649984, + 0.014970190823078156, + 0.004738138057291508, + 0.009032984264194965, + -0.0132914949208498, + 0.01752820424735546, + 0.0050978586077690125, + -0.006347796879708767, + 0.003531802212819457, + -0.013633047230541706, + -0.02466448023915291, + -0.00727435015141964, + 0.0038806223310530186, + -0.009243729524314404, + 0.007928387261927128, + 0.016278265044093132, + 0.007514163851737976, + 0.007565033156424761, + 0.01739739626646042, + -0.015842240303754807, + 0.00174955022521317, + -0.00851702131330967, + -0.004705436062067747, + 0.0026561187114566565, + -0.017106713727116585, + 0.010341059416532516, + 0.0013852877309545875, + 0.0004033230943605304, + -0.0005259551107883453, + 0.010995096527040005, + 0.0003953747218474746, + 0.01347317174077034, + 0.008742300793528557, + -0.018342116847634315, + -0.012564786709845066, + -0.007921120151877403, + -0.0007634978974238038, + -0.003471848787739873, + -0.030550817027688026, + -0.0004878029285464436, + 0.0026815535966306925, + 0.003964193630963564, + -0.0023672522511333227, + 0.01771714724600315, + -0.007070871535688639, + -0.004531026352196932, + 0.008575158193707466, + -0.010609940625727177, + -0.01180174294859171, + -0.02446100115776062, + 0.012143295258283615, + -0.002241895068436861, + -0.010348325595259666, + -0.0008343519293703139, + 0.016031185165047646, + 0.015464352443814278, + -0.0101884501054883, + 0.007514163851737976, + -0.009948636405169964, + -0.01805143430829048, + 0.0007539598736912012, + 0.012041556648910046, + 0.020987335592508316, + 0.011452922597527504, + 0.014555967412889004, + -0.012019755318760872, + -0.015638763085007668, + -0.016932303085923195, + 0.0132914949208498, + 0.022615162655711174, + 0.013175221160054207, + 0.01479578111320734, + -0.0029758703894913197, + -0.008662362582981586, + -0.002770575461909175, + 0.015130066312849522, + -0.01665615476667881, + 0.0010264754528179765, + 0.003804317908361554, + 0.01408360619097948, + 0.008894909173250198, + -0.018225843086838722, + 0.003742547705769539, + 0.01668522320687771, + 0.005501181818544865, + -0.002007531700655818, + 0.008829506114125252, + 0.013771122321486473, + 0.0020584012381732464, + -0.00023754277208354324, + -0.0006867393385618925, + -0.020493173971772194, + -0.008938511833548546, + -0.011060500517487526, + 0.00920739397406578, + -0.0009083853801712394, + -0.009294599294662476, + 0.014243482612073421, + 0.013146152719855309, + -0.015333544462919235, + -0.025405721738934517, + 0.018574664369225502, + 0.008095530793070793, + 0.016365470364689827, + -0.02696087770164013, + -0.004120436031371355, + 0.0038079514633864164, + 0.008139132522046566, + -0.007790312636643648, + 0.02376336045563221, + 0.018400253728032112, + 0.003542702877894044, + 0.008982114493846893, + 0.005915405694395304, + 0.01152559369802475, + 0.020812924951314926, + -0.021176280453801155, + 0.0051487283781170845, + -0.00039196829311549664, + 0.02004261501133442, + -0.0008970305207185447, + 0.0038551874458789825, + -0.013269693590700626, + -0.008211803622543812, + -0.011736338958144188, + -0.0014416076010093093, + 0.0056537906639277935, + 0.004967051092535257, + -0.023341869935393333, + -0.03101591020822525, + 0.002194659085944295, + 0.006900095380842686, + 0.015682365745306015, + 0.015871308743953705, + 0.007797579746693373, + 0.01880721002817154, + -0.006147952284663916, + -0.017135782167315483, + 0.008567891083657742, + -0.01161279808729887, + 0.006544007919728756, + 0.0029286344069987535, + 0.009534412994980812, + -0.0050070201978087425, + -0.005090591497719288, + 0.003241118974983692, + 0.0010228418977931142, + 0.0061079831793904305, + 0.01311708427965641, + -0.015580625273287296, + 0.0046691009774804115, + 0.020129820331931114, + 0.007804846856743097, + -0.00028296204982325435, + 0.005951740778982639, + -0.0059117721393704414, + -0.017411930486559868, + -0.0076231700368225574, + -0.011409319937229156, + -0.0047599393874406815, + -0.014912053942680359, + -0.015362612903118134, + 0.0006345071597024798, + -0.018763607367873192, + 0.015013793483376503, + 0.01302987989038229, + -0.019214166328310966, + 0.0018494726391509175, + 0.0007730359211564064, + 0.019097894430160522, + -0.01771714724600315, + -0.020958267152309418, + -0.01630733348429203, + 0.004098634701222181, + 0.020478639751672745, + 0.0019203266128897667, + 0.013545842841267586, + -0.01826944574713707, + 0.006732952315360308, + -0.019751930609345436, + -9.1633373813238e-5, + -0.004000529181212187, + -0.008611492812633514, + -0.00037289218744263053, + -0.011765407398343086, + -0.0016841464675962925, + -0.0028686809819191694, + 0.005944473668932915, + -0.001332601299509406, + -0.0019566621631383896, + -0.028850318863987923, + 0.005054255947470665, + 0.0018567396327853203, + 0.027353299781680107, + 0.0036807775031775236, + 0.011649133637547493, + 0.007804846856743097, + 0.029853176325559616, + -0.021699508652091026, + 0.026321373879909515, + -0.013051681220531464, + -0.006867393385618925, + -0.013320563361048698, + 0.008800437673926353, + -0.015478886663913727, + 0.0186037328094244, + -0.0077031077817082405, + -0.0005005203420296311, + 0.0002570730575826019, + 0.008124598301947117, + -0.00771764200180769, + -0.004600063432008028, + -0.016757892444729805, + -0.011569196358323097, + 0.011649133637547493, + 0.01614745892584324, + 0.004214907996356487, + -0.003019473049789667, + -0.001913059619255364, + -0.007187144830822945, + 0.005381274968385696, + -0.0017922442639246583, + 0.01224503479897976, + 0.028792181983590126, + 0.010319258086383343, + 0.0002738781913649291, + 0.007804846856743097, + -0.019824601709842682, + -0.026117896661162376, + -0.014497830532491207, + 0.01809503696858883, + -0.01579863764345646, + -0.006896461825817823, + -0.005871803034096956, + 0.002192842308431864, + 0.00021494668908417225, + 0.0013226091396063566, + 0.005017920862883329, + 0.029504356905817986, + -0.015478886663913727, + -0.011205841787159443, + -0.009490810334682465, + 0.020856527611613274, + -0.003935125190764666, + -0.004919815342873335, + 0.022397149354219437, + -0.016002116724848747, + -0.03354485332965851, + -0.01664162054657936, + 0.004222175106406212, + 0.01739739626646042, + -0.02249888889491558, + -0.01914149709045887, + 0.007045436650514603, + 0.020260626450181007, + -0.0019566621631383896, + -0.006053479854017496, + 0.008567891083657742, + -0.01028292253613472, + 0.006580343469977379, + -0.02200472727417946, + -0.0005195964477024972, + -0.01000677328556776, + -1.3001265870116185e-5, + -0.0049815853126347065, + -0.003341041272506118, + -0.008771369233727455, + 0.00549391470849514, + -0.011750873178243637, + -0.0012944490881636739, + 0.00131988397333771, + -0.002194659085944295, + -0.001865823520347476, + -0.0028668642044067383, + 0.008800437673926353, + 0.022251807153224945, + -0.017862489446997643, + -0.014803048223257065, + 0.009592549875378609, + -0.015551557764410973, + -0.011423854157328606, + 0.018661869689822197, + 0.005243200343102217, + -0.010210251435637474, + -0.010290189646184444, + 0.01481031533330679, + -0.0060171447694301605, + 0.001661436865106225, + -0.015042861923575401, + -0.01806596852838993, + -0.019577521830797195, + -0.036219142377376556, + 0.00581366615369916, + 0.008611492812633514, + -0.006413200870156288, + -0.0022037429735064507, + 0.021321620792150497, + -0.01771714724600315, + 0.007913853041827679, + -0.001678696135058999, + -0.007038170006126165, + -0.02039143443107605, + 0.005635622888803482, + 0.003460948122665286, + -0.020594913512468338, + 0.008836773224174976, + -0.01126397866755724, + 0.009309133514761925, + -0.02056584507226944, + 0.025638269260525703, + 0.00016135195619426668, + 0.026655660942196846, + 0.011416587047278881, + 0.0079792570322752, + -0.027614915743470192, + -0.002979503944516182, + -0.003272003959864378, + 0.004236709326505661, + 0.01365484856069088, + 0.007252548821270466, + -0.012622922658920288, + -0.018487459048628807, + 0.011634599417448044, + 0.016932303085923195, + -0.02800733782351017, + -0.029533425346016884, + -0.0028723145369440317, + 0.00015590163820888847, + 0.03886435925960541, + -0.011423854157328606, + -0.00765950558707118, + 0.005544784478843212, + -0.004541927017271519, + 0.011365717276930809, + 0.004676367621868849, + 0.011307581327855587, + 0.006616679020226002, + -0.0012226867256686091, + 0.010232052765786648, + -0.006725685205310583, + 0.006514939945191145, + 0.033050693571567535, + 0.010595406405627728, + -0.013967333361506462, + 0.004109535366296768, + -0.012484848499298096, + -0.0029159169644117355, + -0.011045966297388077, + 0.019548453390598297, + 0.008466151542961597, + 0.00603167898952961, + -0.014396090991795063, + -0.0028014604467898607, + 0.012201432138681412, + -0.029460754245519638, + -0.0010282922303304076, + -0.013233358040452003, + 0.009679754264652729, + 0.023894168436527252, + -0.0012871820945292711, + -0.007357921451330185, + -0.02624870277941227, + 0.003924224991351366, + -0.003718929598107934, + 0.003895156318321824, + -0.0009510794770903885, + -0.0026343176141381264, + 0.009614350274205208, + 0.04348622262477875, + 0.0041931066662073135, + -0.008139132522046566, + -0.007514163851737976, + -0.01144565548747778, + 0.015638763085007668, + -0.010137580335140228, + 0.006616679020226002, + -0.010966028086841106, + 0.01579863764345646, + -0.007321585901081562, + -0.007139909081161022, + -0.007906585931777954, + 0.01250664982944727, + -0.010246586985886097, + 0.005998976994305849, + -0.019083360210061073, + 0.02039143443107605, + 0.002078385790809989, + 0.039794545620679855, + -9.259852959075943e-5, + -0.030899636447429657, + -0.020464105531573296, + -0.01258658803999424, + -0.014737644232809544, + 0.0008170926594175398, + -0.007819381542503834, + 0.013204289600253105, + 0.004716336727142334, + -0.01089335698634386, + -0.006700250320136547, + -0.0028087275568395853, + 0.016249196603894234, + 0.0274986419826746, + -0.009556214325129986, + -0.003299255622550845, + 0.009265530854463577, + -0.009345469065010548, + -0.0006590335979126394, + 0.00014148102491162717, + -0.008938511833548546, + -0.01037012692540884, + 0.01611839048564434, + 0.008190002292394638, + -0.006634846795350313, + 0.0007975623593665659, + -0.009679754264652729, + -0.023792428895831108, + 0.013647581450641155, + 0.009287332184612751, + 0.001923960167914629, + -0.0003283813130110502, + -0.01648174412548542, + -0.017106713727116585, + 0.026728330180048943, + 0.00566469132900238, + -0.0070817722007632256, + 0.01132938265800476, + 0.0035953891929239035, + 0.014846649952232838, + -0.02962063066661358, + -0.0009746974683366716, + 0.008349878713488579, + 0.020420502871274948, + 0.022586094215512276, + -0.035347092896699905, + 0.008415281772613525, + -0.002979503944516182, + 0.003662609728053212, + 0.010326525196433067, + -0.004076833371073008, + 0.014592302031815052, + 0.010224785655736923, + -0.013102550059556961, + -0.020115286111831665, + 0.005759163293987513, + -0.011256711557507515, + -0.015507955104112625, + -0.013066215440630913, + 0.008720499463379383, + 0.00483261002227664, + -0.006376865319907665, + 0.014396090991795063, + 0.018196774646639824, + -0.015914911404252052, + -0.021757645532488823, + -0.005195964127779007, + 0.0006776554509997368, + -0.018124105408787727, + 0.005671957973390818, + 0.00042535143438726664, + 0.00042398888035677373, + 0.002498059766367078, + 1.969351160369115e-6, + 0.005025187972933054, + -0.012172363698482513, + 0.0029268176294863224, + 0.0119688855484128, + 0.011721804738044739, + -0.026699261739850044, + 0.01722298562526703, + 0.006009877659380436, + -0.0003102135960943997, + -0.016975905746221542, + 0.007343387231230736, + 0.008829506114125252, + 0.0011454739142209291, + 0.013531308621168137, + 0.004843510687351227, + -0.006100716069340706, + 0.01970832794904709, + 0.010181182995438576, + 0.02161230519413948, + -0.0020747522357851267, + 0.005272268783301115, + 0.006376865319907665, + 0.0039968956261873245, + -0.031103115528821945, + 0.006166120059788227, + -0.017659012228250504, + 0.016699757426977158, + -0.0195193849503994, + 0.007514163851737976, + 0.018647335469722748, + 0.012681059539318085, + -0.007216213271021843, + 0.0039968956261873245, + -0.021902987733483315, + 0.010566338896751404, + 0.016380004584789276, + 8.692112169228494e-5, + -0.010878822766244411, + 0.004687268286943436, + 0.008393480442464352, + 0.004749038722366095, + 0.031655412167310715, + 0.0017404663376510143, + 0.0005463937995955348, + -0.018356651067733765, + -0.010130313225090504, + -0.01213602814823389, + 0.018676403909921646, + -0.014846649952232838, + -0.004887113347649574, + -0.011496525257825851, + -0.009163791313767433, + -0.03738187626004219, + -0.0024653577711433172, + -0.01383652538061142, + -0.009817829355597496, + -0.01667068898677826, + -0.010617207735776901, + 0.001227228669449687, + 0.012971743009984493, + 0.014955656602978706, + 0.0028214449994266033, + 0.002792376559227705, + -0.02324013039469719, + -0.0013662115670740604, + 0.0014452411560341716, + 8.34579041111283e-5, + -0.0006036220584064722, + 0.004541927017271519, + 0.0042803119868040085, + 0.019417645409703255, + -0.006151585839688778, + -0.008894909173250198, + -0.01716485060751438, + -0.00589360436424613, + -0.026103362441062927, + -0.007150809746235609, + 0.0026597522664815187, + -0.012848202139139175, + 0.01646720990538597, + -0.010043108835816383, + 0.03229491785168648, + 0.002427205676212907, + -0.01144565548747778, + -0.019795533269643784, + 0.0011854429030790925, + 0.0008043752168305218, + 0.008051928132772446, + 0.012528451159596443, + -0.0230221189558506, + 0.01215056236833334, + 0.013400500640273094, + 0.014912053942680359, + -0.014679507352411747, + -0.0025888981763273478, + -0.0017595425015315413, + 0.0031030443497002125, + -0.0016405439237132668, + -0.002830528886988759, + 0.00021914797252975404, + -0.015711432322859764, + 0.02908286638557911, + 0.006511306390166283, + 0.008284474723041058, + 0.0008334435406140983, + 0.007790312636643648, + -0.027905598282814026, + -0.00814639963209629, + -0.001794969430193305, + 0.0012235951144248247, + -0.005472113378345966, + -0.0037243799306452274, + -0.013415034860372543, + 0.021932056173682213, + 0.012913606129586697, + -0.006489505060017109, + 0.00239450391381979, + 0.002196475863456726, + 0.007336120121181011, + -0.008051928132772446, + 0.01576956920325756, + 0.002323649823665619, + 0.0038660881109535694, + -0.007543231826275587, + 0.003484566230326891, + -0.021902987733483315, + 0.021408826112747192, + 0.01911242865025997, + -0.010420996695756912, + -0.005871803034096956, + 0.017339259386062622, + -0.006442268844693899, + -0.005613821558654308, + 0.020522242411971092, + -0.009425406344234943, + -0.012281370349228382, + -0.011118636466562748, + -0.0042548771016299725, + 0.00816093385219574, + 0.004883479792624712, + -0.00314664700999856, + -0.011242177337408066, + 0.02483888901770115, + 0.007848449982702732, + -0.025812678039073944, + -0.014214414171874523, + -0.010355592705309391, + -0.0011509242467582226, + -0.0023072988260537386, + -0.007121741306036711, + 0.005057889502495527, + -0.009687021374702454, + 0.015377147123217583, + -0.01844385638833046, + 0.0073906234465539455, + -0.000158513241331093, + 0.006863759830594063, + -0.0036335415206849575, + -0.007059970870614052, + 0.028138145804405212, + 0.0033047059550881386, + -0.013255159370601177, + 0.018850812688469887, + -0.010660810396075249, + -0.004541927017271519, + -0.00438931817188859, + 0.022266341373324394, + -0.009512611664831638, + -0.02392323687672615, + -0.0006980941398069263, + -0.003272003959864378, + -0.004807175137102604, + 0.025841746479272842, + -0.03278907760977745, + 0.015682365745306015, + 0.03238212317228317, + 0.03238212317228317, + 0.007085405755788088, + 0.005294070113450289, + 0.004229442216455936, + -0.03807951509952545, + -0.0038806223310530186, + 0.0007466927636414766, + -0.002112904330715537, + 0.019911807030439377, + -0.013080749660730362, + 0.022978516295552254, + 0.018545595929026604, + 0.01683056354522705, + 0.012833668850362301, + -0.005955374334007502, + 0.023196527734398842, + -0.003195699770003557, + -0.02111814357340336, + 0.013000811450183392, + -0.031132183969020844, + 0.002888665534555912, + 0.01808050274848938, + 0.012128761038184166, + -0.005421243607997894, + -0.008909443393349648, + 0.009272797964513302, + -0.006078914739191532, + -0.002710621803998947, + 0.009548947215080261, + -0.006097082514315844, + -0.010951493866741657, + 0.00046032428508624434, + 0.01080615259706974, + -0.004349349066615105, + 0.01667068898677826, + 0.007357921451330185, + -0.00825540628284216, + 0.0019530284916982055, + -0.008190002292394638, + 0.0301438607275486, + -0.015682365745306015, + -0.008538822643458843, + -0.010769817046821117, + -0.004712703172117472, + -0.022775037214159966, + -0.014228948391973972, + 0.014773979783058167, + -0.005715560633689165, + 0.006500405725091696, + 0.005166896153241396, + -0.010864288546144962, + -0.02889392152428627, + -0.006068014074116945, + -0.029504356905817986, + 0.0012526634382084012, + 0.0016369103686884046, + 0.021060006693005562, + -0.012295904569327831, + -0.006801989395171404, + -0.008524288423359394, + 0.015406215563416481, + -0.03206237033009529, + 0.009774226695299149, + -0.0022836807183921337, + 0.008328077383339405, + 0.007383356336504221, + 0.010173915885388851, + 0.0008556990069337189, + 0.003450047690421343, + 0.005199597682803869, + 0.01258658803999424, + -0.015813171863555908, + -0.017993297427892685, + -0.010973295196890831, + -0.01789155788719654, + -0.0013489522971212864, + 0.005039722193032503, + 0.006932796910405159, + -0.0024453734513372183, + 0.00994136929512024, + -0.009178325533866882, + 0.017411930486559868, + 0.011322115547955036, + 0.0075068967416882515, + -0.004047765396535397, + 0.001577865332365036, + -0.0010564521653577685, + -0.000877046084497124, + 0.011191307567059994, + -0.007986524142324924, + -0.0012435795506462455, + -0.010849754326045513, + -0.019214166328310966, + 0.0177316814661026, + -0.017513670027256012, + 0.002183758420869708, + 0.02395230531692505, + 0.009178325533866882, + 0.014308886602520943, + -0.007292517460882664, + 0.004850777797400951, + -0.013000811450183392, + -0.0010882456554099917, + -0.004276678431779146, + 0.013778389431536198, + 0.006954598240554333, + 0.007812113966792822, + -0.007263449486345053, + -0.013945532031357288, + -0.0037062123883515596, + -0.010014040395617485, + -0.009352735243737698, + -0.020449571311473846, + 0.015653297305107117, + 0.0056029208935797215, + -0.004196740221232176, + -0.0035172682255506516, + 0.010210251435637474, + -0.006166120059788227, + -0.012724662199616432, + -0.0036953117232769728, + -0.026728330180048943, + -0.016598017886281013, + 0.005021554417908192, + 0.0035626874305307865, + 0.007245281711220741, + 0.007288884371519089, + -0.005544784478843212, + -0.0010437348391860723, + -0.01311708427965641, + 0.005246833898127079, + -0.0028686809819191694, + -0.01195435132831335, + -0.019592056050896645, + 0.0008466151775792241, + -0.010137580335140228, + -0.03119031898677349, + -0.0064967721700668335, + 0.001266289153136313, + -0.019984478130936623, + 0.017775284126400948, + 0.012274103239178658, + -0.004349349066615105, + -0.004883479792624712, + 0.022237272933125496, + -0.009229195304214954, + -0.005210498347878456, + -0.004836243577301502, + 0.0146359046921134, + -0.002345450920984149, + 0.024940628558397293, + 0.0019185098353773355, + 0.0018576480215415359, + -0.015522489324212074, + 0.01597304828464985, + 0.009890499524772167, + 0.014170811511576176, + -0.014941122382879257, + -0.009112921543419361, + -0.004472889471799135, + 0.007038170006126165, + -0.007328853011131287, + -0.004029597621411085, + -0.016932303085923195, + -0.009585282765328884, + -0.0017422831151634455, + 0.0027287895791232586, + 0.0032611035276204348, + 0.009803295135498047, + -0.0031738984398543835, + 0.021350689232349396, + -0.024141250178217888, + -0.004011429846286774, + -0.009643418714404106, + -0.012513916939496994, + 0.016263730823993683, + 0.016438141465187073, + -0.018836278468370438, + 0.019257768988609314, + 0.0002693362475838512, + 0.015566091984510422, + -0.0247952863574028, + 0.005363107193261385, + 0.01008671149611473, + -0.002254612511023879, + -0.0016396355349570513, + -0.010341059416532516, + 0.004770840052515268, + -0.010391928255558014, + -0.0052286661230027676, + -0.0011809009592980146, + 0.03046361170709133, + 0.001126397866755724, + 0.0069763995707035065, + 0.006642113905400038, + -0.005424877163022757, + 0.003906056983396411, + -0.03319603577256203, + -0.01969379372894764, + 0.013487705960869789, + 0.01633640192449093, + 0.0051487283781170845, + -0.006791089195758104, + 0.03523081913590431, + 0.03578311577439308, + 0.014301619492471218, + -0.01373478677123785, + 0.0150719303637743, + -0.02768758498132229, + -0.0015787737211212516, + 0.02411218173801899, + 0.00014352488506119698, + -0.009163791313767433, + 0.013364165090024471, + 0.008415281772613525, + 0.007666772231459618, + -0.019010689109563828, + -0.0037043956108391285, + -0.0071980454958975315, + 0.0019984478130936623, + 0.0024653577711433172, + -0.00668934965506196, + -0.013255159370601177, + -0.0002838704385794699, + -0.030521748587489128, + 0.03357392176985741, + 0.01699043996632099, + 0.04895107075572014, + 0.027527710422873497, + 0.00983963068574667, + 0.003262920305132866, + 0.007252548821270466, + -0.030899636447429657, + 0.002830528886988759, + 0.018385719507932663, + 0.006892828270792961, + -0.008495219983160496, + -0.01793516054749489, + 0.0029504357371479273, + 0.00021869377815164626, + 0.023487212136387825, + -0.0247952863574028, + -0.010697145946323872, + -0.003720746375620365, + -0.01880721002817154, + -0.003884255886077881, + 0.013683917000889778, + -0.005900871474295855, + -0.012208699248731136, + -0.00348274945281446, + 0.023109324276447296, + 0.002935901517048478, + 0.013923730701208115, + 0.016699757426977158, + -0.006841958500444889, + -0.008902176283299923, + -0.00018042804731521755, + 0.029300877824425697, + 0.008923977613449097, + 0.003084876574575901, + 0.023966839537024498, + 0.0013444103533402085, + -0.009149257093667984, + 0.002078385790809989, + 0.013785656541585922, + 0.02236808091402054, + -0.004581895656883717, + 0.008088263683021069, + -0.01988273859024048, + 0.01970832794904709, + -0.020449571311473846, + -0.0001646448508836329, + 0.014846649952232838, + 0.02076932229101658, + -0.03581218421459198, + 0.012848202139139175, + -0.015231805853545666, + 0.005766430404037237, + -0.03313789889216423, + 0.0009401788702234626, + -0.020464105531573296, + -0.019635658711194992, + 0.0017913359915837646, + 0.026452181860804558, + -0.008931244723498821, + -0.014497830532491207, + 0.00691826269030571, + 0.013603978790342808, + 0.025565598160028458, + -0.00019439446623437107, + 0.009410872124135494, + 0.0008702331688255072, + 0.030085723847150803, + -0.00024322018725797534, + -0.01063174195587635, + -0.01914149709045887, + 0.001249029883183539, + 0.004581895656883717, + -0.029184604063630104, + -0.019286837428808212, + -0.0014561417046934366, + -0.02797826938331127, + -0.008117331191897392, + -0.0011872596805915236, + -0.012913606129586697, + -0.015493420884013176, + 0.02643764764070511, + 0.012208699248731136, + -0.028399759903550148, + -0.0013843793421983719, + -0.0023745193611830473, + 0.017281122505664825, + -0.013509507291018963, + -0.009120188653469086, + -0.010784351266920567, + -0.0037643490359187126, + -0.006529474165290594, + -0.00566469132900238, + 0.017615409567952156, + -0.012165096588432789, + 0.006180653814226389, + -0.008931244723498821, + -0.004858044907450676, + 0.0013998218346387148, + -0.0071980454958975315, + 0.009185592643916607, + 0.011867146007716656, + 0.0006222439697012305, + 0.013218823820352554, + 0.015464352443814278, + 0.018734538927674294, + 0.020275160670280457, + -0.01912696287035942, + 0.009512611664831638, + -0.009200126864016056, + -0.0023218330461531878, + 0.0061334180645644665, + 0.0017768017714843154, + 0.008647828362882137, + 0.0012335872743278742, + -0.0023745193611830473, + -0.0186037328094244, + 0.023109324276447296, + -0.005086957942694426, + 0.020478639751672745, + 0.02765851840376854, + 0.0038224856834858656, + -0.015289942733943462, + 0.016002116724848747, + 0.02803640626370907, + -0.00603167898952961, + -0.00014977004320826381, + -0.02055131085216999, + -0.00026661111041903496, + 0.011402052827179432, + 0.018865346908569336, + -0.018007831647992134, + 0.02480982057750225, + 0.021655907854437828, + 0.008269940502941608, + -0.000117976545880083, + 0.00010946043767035007, + -0.02552199549973011, + -0.01931590586900711, + -0.025841746479272842, + -0.02431565895676613, + -0.029751436784863472, + -0.010232052765786648, + 0.02108907513320446, + 0.00011570558854145929, + -0.005831833928823471, + 0.013066215440630913, + 0.006653014570474625, + -0.006097082514315844, + 0.014228948391973972, + -0.01373478677123785, + 0.01115497201681137, + -0.01882174424827099, + -0.009861431084573269, + -0.01232497300952673, + -0.001566964783705771, + -0.004487423691898584, + 0.022789571434259415, + -0.0031012275721877813, + -0.0013407767983153462, + -0.005076057277619839, + 0.017484601587057114, + 0.009003915823996067, + 0.0008502486743964255, + -0.00020279703312553465, + 0.02976597100496292, + 0.004076833371073008, + -0.012644723989069462, + 0.010152114555239677, + 0.01301534567028284, + -0.0036916781682521105, + -0.010355592705309391, + 0.018182242289185524, + -0.011838078498840332, + -0.004429286811500788, + -0.021525099873542786, + 0.014156277291476727, + -0.0052904365584254265, + -0.004403852391988039, + -0.013807457871735096, + -0.007099939975887537, + 0.02730969712138176, + 0.008611492812633514, + -0.0018104120390489697, + 0.009432673454284668, + 0.004102268256247044, + -0.007572300266474485, + -0.015624227933585644, + -0.00896031316369772, + 0.0034554980229586363, + -0.007942921482026577, + 0.00358993886038661, + -0.004461988806724548, + 0.029853176325559616, + 0.006980033125728369, + -0.005962641444057226, + -0.002663385821506381, + -0.013901929371058941, + 0.01914149709045887, + -0.0003606289974413812, + -0.004047765396535397, + -0.0044765230268239975, + -0.00581366615369916, + -0.01090789120644331, + 0.009607083164155483, + 0.011096835136413574 + ], + "b463a27e-a692-441a-a66a-34610730ddb4": [ + -0.03225068747997284, + 0.013806860893964767, + -0.02602347917854786, + 0.0016877735033631325, + -0.026365308091044426, + 0.011191136203706264, + -0.007486766204237938, + 0.05377095937728882, + -0.030110547319054604, + 0.028862135484814644, + 0.007501628249883652, + 0.012677343562245369, + -0.01883023977279663, + -0.030467238277196884, + 0.014512808993458748, + 0.019588204100728035, + -0.0286540649831295, + 0.009259067475795746, + -0.016259102150797844, + -0.014490515924990177, + 0.033439651131629944, + -0.009556309320032597, + -0.043694477528333664, + -0.014193274080753326, + -0.008805775083601475, + -0.013665670529007912, + 0.012692205607891083, + 0.005198007915169001, + -0.026632824912667274, + -0.0252060666680336, + 0.015233619138598442, + -0.007527636829763651, + 0.013948050327599049, + 0.02027186006307602, + 0.030734755098819733, + 0.008605136536061764, + 0.01103508472442627, + 0.02398737706243992, + -0.06432303041219711, + 0.004254266619682312, + -0.009504292160272598, + -0.01945444568991661, + -0.013264395296573639, + 0.020910928025841713, + -0.052581995725631714, + 0.025102032348513603, + 0.016883308067917824, + 0.04003841057419777, + 0.0005833361647091806, + -0.0029519780073314905, + -0.013063756749033928, + -0.0038232668302953243, + 0.0066656372509896755, + 0.017165686935186386, + -0.02379417046904564, + -0.006554171442985535, + -0.00964548159390688, + -0.0028349393978714943, + -0.029293134808540344, + 0.002532124752178788, + -0.014052084647119045, + 0.010708119720220566, + 0.005658732261508703, + 0.006791964638978243, + 0.006134318187832832, + -0.024983134120702744, + 0.025428997352719307, + -0.004298852756619453, + -0.026201823726296425, + -0.025027722120285034, + -0.04140571877360344, + 0.026796307414770126, + -0.04075178876519203, + -0.012989446520805359, + -0.003143327310681343, + -0.025102032348513603, + 0.04315944388508797, + -0.056148890405893326, + 0.012900274246931076, + 0.03635261580348015, + -0.016021307557821274, + 0.018072273582220078, + 0.00611574063077569, + -0.030065961182117462, + 0.03236958384513855, + 0.0037619606591761112, + -0.0581701323390007, + -0.011146550066769123, + 0.003106171963736415, + -0.02661796286702156, + 0.033915236592292786, + 0.008538257330656052, + 0.04360530525445938, + 0.010433170944452286, + -0.030794203281402588, + 0.0030188574455678463, + 0.030705031007528305, + 0.03201289102435112, + -0.014661429449915886, + -0.033915236592292786, + -0.03926558047533035, + 0.013346136547625065, + -0.05151192471385002, + 0.01698734238743782, + 0.0050976891070604324, + 0.0017583683365955949, + 0.008701740764081478, + 0.003275227965787053, + -0.01667523942887783, + 0.03412330523133278, + 0.026870617642998695, + -0.010700688697397709, + -0.01399263646453619, + 0.013606222346425056, + -0.005268602631986141, + -0.027806928381323814, + 0.028862135484814644, + -0.0338260643184185, + 0.00039663142524659634, + -0.06206399202346802, + 0.010529774241149426, + 0.03596620261669159, + -0.0060451459139585495, + -0.007219249382615089, + -0.007471904158592224, + -0.03257765248417854, + -0.002578568644821644, + 0.03519337624311447, + -0.005770197603851557, + -0.004558939021080732, + 0.006539309397339821, + -0.02034617029130459, + -0.016333412379026413, + 0.012075429782271385, + -0.0023444911930710077, + -0.012565878219902515, + 0.010529774241149426, + 0.0020249567460268736, + -0.01115398108959198, + 0.030586134642362595, + -0.03138868510723114, + -0.05374123528599739, + 0.012974584475159645, + 0.00798092968761921, + 0.0032993790227919817, + 0.005725611466914415, + 0.005985697731375694, + 0.022278238087892532, + -0.0017611549701541662, + 0.032666824758052826, + -0.02175806649029255, + 0.016957618296146393, + 0.04054372012615204, + 0.014810049906373024, + -0.01557544618844986, + 0.018622171133756638, + -0.0040201894007623196, + -0.0021847239695489407, + 0.0006985171348787844, + 0.011391774751245975, + -0.0020138102117925882, + -0.010656102560460567, + 0.019855720922350883, + 0.004882188979536295, + 0.009987309575080872, + -0.002220021327957511, + 0.06007247418165207, + 0.029753858223557472, + -0.05240364745259285, + 0.031329236924648285, + -0.017893929034471512, + 0.0035724693443626165, + 0.037482134997844696, + 0.02805958315730095, + -0.0282230656594038, + -0.019974619150161743, + -0.0006214202148839831, + 0.03415302932262421, + 0.04128682240843773, + -0.023660410195589066, + -0.008174137212336063, + -0.004313714802265167, + -0.006899714935570955, + -0.020613687112927437, + 0.03228041157126427, + 0.036649856716394424, + -0.0030300039798021317, + 0.041940752416849136, + -0.03495558351278305, + 0.001114655053243041, + 0.048628684133291245, + 0.017002204433083534, + 0.04853951185941696, + 0.0036170557141304016, + 0.007609378546476364, + -0.014408773742616177, + 0.010715550743043423, + -0.03929530456662178, + 0.004231973551213741, + 0.0400681346654892, + 0.0009781097760424018, + -0.0038901460357010365, + -0.050114892423152924, + 0.006829119753092527, + -0.037125442177057266, + -0.030110547319054604, + -0.02266465313732624, + 0.00536149088293314, + 0.027836652472615242, + -0.08637833595275879, + 0.005194292403757572, + -0.04116792604327202, + 0.019305825233459473, + 0.008055240847170353, + -0.0036244867369532585, + 0.007839740253984928, + -0.024626445025205612, + 0.06259902566671371, + 0.000979967531748116, + -0.004336008336395025, + -0.0067473785020411015, + 0.02343747951090336, + -0.003559465054422617, + -0.034063857048749924, + -0.06087502837181091, + -0.012365239672362804, + -0.006327525246888399, + -0.004659258294850588, + -0.053176477551460266, + -0.009132740087807178, + 0.039622269570827484, + 0.03222096338868141, + -0.018206031993031502, + -0.030734755098819733, + -0.043040547519922256, + -0.00477443914860487, + -0.0023444911930710077, + -0.02019754983484745, + 0.009979878552258015, + -0.013100911863148212, + 0.04200020059943199, + 0.023036204278469086, + 0.017269721254706383, + 0.026365308091044426, + -0.007862033322453499, + 0.026796307414770126, + 0.009615757502615452, + -0.023452341556549072, + -0.005550981964915991, + -0.021386515349149704, + -0.004532930441200733, + -0.008136982098221779, + 0.021535135805606842, + -0.023972515016794205, + -0.016734687611460686, + 0.011362050659954548, + 0.006572749465703964, + -0.0009836830431595445, + 0.00915503315627575, + -0.02204044535756111, + -0.010366291739046574, + 0.044913168996572495, + 0.006238352507352829, + -0.05531661584973335, + 0.030942823737859726, + -0.02951606549322605, + 0.017388619482517242, + -0.03706599399447441, + 0.018131721764802933, + -0.010128499008715153, + -0.03100227192044258, + 0.012097722850739956, + -0.021817514672875404, + 0.007832309231162071, + -0.003819551318883896, + 0.011339757591485977, + 0.0343610979616642, + 0.003912439104169607, + 0.0056773098185658455, + 0.02939716912806034, + 0.0245075486600399, + -0.003024430712684989, + -0.020167825743556023, + -0.010173085145652294, + -0.01729944534599781, + -0.019825996831059456, + -0.031834546476602554, + 0.025577617809176445, + -0.04425923526287079, + -0.003319814335554838, + -0.004577516578137875, + -0.010455464012920856, + 0.03543116897344589, + 0.022456584498286247, + 0.07490482181310654, + -0.015605170279741287, + 0.004410318564623594, + -4.6792290959274396e-5, + -0.03757130727171898, + 0.016392860561609268, + -0.045269858092069626, + 0.012944860383868217, + 0.025815410539507866, + -0.014713446609675884, + -0.0019227799493819475, + -0.02966468594968319, + 0.02798527292907238, + -0.010789860971271992, + 0.006134318187832832, + -0.0038232668302953243, + 0.005915102548897266, + -0.030675306916236877, + -0.020806893706321716, + -0.020167825743556023, + -0.00806267186999321, + -0.009965016506612301, + 0.025414135307073593, + 0.0062011973932385445, + -0.0031284652650356293, + -0.019157204777002335, + 0.0015967433573678136, + -0.016021307557821274, + -0.007497912738472223, + -0.03459889069199562, + 0.006245783530175686, + -0.047142475843429565, + 0.0014880645321682096, + 0.01691303215920925, + -0.03709571808576584, + -0.055049095302820206, + -0.04018703103065491, + -0.052463095635175705, + -0.028862135484814644, + -0.03251820430159569, + 0.009095584973692894, + 0.00024011527420952916, + -0.00964548159390688, + -0.030942823737859726, + -0.008917240425944328, + -0.018414100632071495, + -0.03412330523133278, + 0.021624308079481125, + -0.010700688697397709, + -0.029248548671603203, + 0.016273964196443558, + -0.02681116946041584, + 0.01842896267771721, + 0.02551816962659359, + 0.007553645875304937, + -0.00847137812525034, + 0.000829489144962281, + -0.004209680482745171, + 0.045418478548526764, + 0.008515964262187481, + 0.020687997341156006, + -0.010693257674574852, + -0.015248481184244156, + -0.02731647901237011, + -0.012127446942031384, + 0.006052576936781406, + -0.005543550942093134, + -0.030422652140259743, + -0.04512123763561249, + -0.03204261511564255, + -0.006732516456395388, + 0.024195445701479912, + -0.017566964030265808, + -0.025934306904673576, + 0.015590308234095573, + -0.025622203946113586, + -0.02074744552373886, + 0.04657771810889244, + 0.012855688109993935, + -0.01753723993897438, + 0.0006144535727798939, + 0.028624340891838074, + 0.04375392571091652, + -0.009638050571084023, + -0.004993654787540436, + 0.0026027194689959288, + 0.0034442839678376913, + -0.01526334322988987, + 0.02024213597178459, + -0.018503272905945778, + 0.05992385372519493, + 0.007356723304837942, + -0.028163617476820946, + -0.014007498510181904, + 0.005001085810363293, + -0.01741834357380867, + -0.014505377970635891, + -0.003416417632251978, + -0.010403446853160858, + -0.010633809491991997, + -0.01938013546168804, + 0.01588754914700985, + -0.0063795424066483974, + -0.021104134619235992, + -0.003975602798163891, + 0.013747411780059338, + -0.012751653790473938, + -0.015055273659527302, + -0.0058259302750229836, + -0.016526618972420692, + -0.033053237944841385, + 0.006769671570509672, + -0.012454411946237087, + 0.00743474904447794, + -0.005840792320668697, + 0.04238661751151085, + -0.004057344514876604, + 0.010477757081389427, + -0.023660410195589066, + -0.03385578840970993, + 0.060131922364234924, + -0.027034100145101547, + -0.0026621678844094276, + 0.01086417119950056, + -0.07757999002933502, + 0.02137165330350399, + 0.026915203779935837, + 0.03635261580348015, + -0.01660092920064926, + 0.012870550155639648, + 0.004179956391453743, + 0.0019487885292619467, + 0.1008242666721344, + 0.019082894548773766, + -0.02508717030286789, + -0.008835499174892902, + -0.006104594096541405, + 0.005900240503251553, + 0.02273896336555481, + -0.007490481715649366, + -0.01460198126733303, + -0.051482200622558594, + 0.01117627415806055, + -0.0008773264125920832, + -0.01746292971074581, + -0.01811685971915722, + -0.0031284652650356293, + 0.010589223355054855, + 0.009704929776489735, + 0.01960306614637375, + 0.012573309242725372, + -0.027524547651410103, + -0.013450170867145061, + -0.012610464356839657, + -0.001919064437970519, + -0.02398737706243992, + -0.008619998581707478, + 0.024552134796977043, + -0.04289192706346512, + 0.00151685974560678, + 0.020301584154367447, + -0.0036727883853018284, + -0.03159675374627113, + -0.013390722684562206, + 0.02583027258515358, + 0.011258016340434551, + 0.011911947280168533, + -0.014408773742616177, + 0.010529774241149426, + -0.027375927194952965, + -0.004900766536593437, + -0.057397302240133286, + -0.014750601723790169, + 0.02716785855591297, + 0.004402887541800737, + -0.02739078924059868, + -0.01581323891878128, + -0.02015296369791031, + -0.010693257674574852, + 0.03846303001046181, + -0.018651895225048065, + -0.0002635694690980017, + 0.010522343218326569, + -0.02410627342760563, + 0.015842963010072708, + -0.04485371708869934, + -0.019588204100728035, + -0.04271358251571655, + 0.01619965396821499, + 0.0020732583943754435, + 0.00660618906840682, + 0.007605663035064936, + -0.02352665178477764, + -0.0074830506928265095, + -0.022278238087892532, + -0.011198567226529121, + 0.049758199602365494, + 0.006282939109951258, + -0.005201723426580429, + 0.02939716912806034, + -0.0034591462463140488, + -0.02825278975069523, + -0.0067473785020411015, + -0.02575596235692501, + 0.025934306904673576, + -0.03510420396924019, + 0.05605971813201904, + -0.02117844671010971, + 0.012595602311193943, + 0.020479928702116013, + 0.008032947778701782, + 0.010559498332440853, + 0.006550455931574106, + -0.0042579821310937405, + 0.01655634306371212, + -0.034182753413915634, + -0.03397468477487564, + 0.031091444194316864, + -0.010425739921629429, + -0.0013478037435561419, + -0.004194818437099457, + 0.056891992688179016, + 0.021386515349149704, + 0.002883241046220064, + -0.01006161980330944, + -0.006112025119364262, + -0.010299412533640862, + 0.027257030829787254, + 0.019053170457482338, + 0.020420480519533157, + 0.010596654377877712, + -0.01926123909652233, + -0.01507013663649559, + 0.0076539646834135056, + 0.014743170700967312, + -0.04217854514718056, + -0.002938973717391491, + 0.018057411536574364, + -0.04137599468231201, + -0.01262532640248537, + -0.004254266619682312, + -0.034658342599868774, + 0.009036136791110039, + -0.018220894038677216, + 0.004581232089549303, + 0.035133928060531616, + -0.01948416978120804, + 0.03492585942149162, + -0.014936377294361591, + -0.004339723847806454, + 0.019082894548773766, + 0.041584063321352005, + -0.032310135662555695, + 0.021817514672875404, + 0.002387219574302435, + 0.020851479843258858, + -0.036768753081560135, + 0.0478261336684227, + 0.006948016583919525, + -0.008047809824347496, + 0.0013097196351736784, + -0.022724101319909096, + -0.0067993956618011, + -0.037630755454301834, + -0.012959722429513931, + 0.000278431543847546, + 0.007416171487420797, + 0.007449611090123653, + 0.01389603316783905, + -0.009808964096009731, + -0.022174203768372536, + -0.0011072240304201841, + 0.021431101486086845, + -0.03670930489897728, + -0.00886522326618433, + 0.005584421567618847, + -0.001465771347284317, + 0.014728308655321598, + -0.00010211865446763113, + -0.015397101640701294, + 0.025607341900467873, + 0.025488445535302162, + -0.014973532408475876, + 0.016377998515963554, + -0.0023426334373652935, + 0.02599375508725643, + -0.023006480187177658, + -0.026157237589359283, + 0.004874757956713438, + -0.02669227309525013, + 0.020331308245658875, + 0.0007491410942748189, + -0.02379417046904564, + -0.015724066644906998, + 0.015174170956015587, + 0.010195378214120865, + 0.011020222678780556, + 0.043189167976379395, + 0.014334463514387608, + -0.01842896267771721, + 0.02547358348965645, + 0.023318583145737648, + 0.011191136203706264, + 0.0017314308788627386, + 0.01557544618844986, + 0.01319008506834507, + -0.01847354881465435, + 0.03456916660070419, + 0.048509787768125534, + -0.04321889206767082, + -0.0004881260101683438, + 0.03299378976225853, + 0.013472463935613632, + -0.04931233823299408, + -0.0037749651819467545, + -0.0020806894171983004, + 0.0029445469845086336, + 0.010225102305412292, + 0.030229445546865463, + -0.015857825055718422, + 0.05189833790063858, + 0.01086417119950056, + -0.007390162907540798, + 0.0131677919998765, + -0.023184824734926224, + 0.003719232277944684, + 0.019186928868293762, + -0.04827199503779411, + 0.04645882174372673, + -0.006892283912748098, + -0.028520306572318077, + -0.0030021376442164183, + 0.020108377560973167, + 0.008828068152070045, + -0.009221912361681461, + 0.008634860627353191, + 0.022798411548137665, + -0.002286900533363223, + 0.02321454882621765, + -0.01047032605856657, + 0.02082175575196743, + 0.019944895058870316, + 0.02759885974228382, + 0.02113385871052742, + -0.03311268612742424, + 0.02794068679213524, + -0.005766482092440128, + -0.013442739844322205, + -0.0006595042068511248, + 0.052552271634340286, + 0.0018020255956798792, + 0.014237860217690468, + -0.039116960018873215, + 0.04440785571932793, + 0.045269858092069626, + 0.011934240348637104, + -0.06176675111055374, + 0.020762307569384575, + 0.023704996332526207, + 0.02086634188890457, + -0.01201598159968853, + -0.007713412865996361, + -0.019900308921933174, + 0.022129617631435394, + -0.007772861048579216, + 0.010871602222323418, + 0.0005104191368445754, + -0.007018611300736666, + -0.0326371006667614, + -0.015397101640701294, + 0.018532996997237206, + -0.00017834480968303978, + 0.00023512254119850695, + -0.01761155016720295, + -0.006323809735476971, + 0.010009602643549442, + -0.006126887165009975, + -0.017448067665100098, + 0.045894064009189606, + 0.04648854583501816, + -0.001481562270782888, + -0.026826031506061554, + 0.0047261375002563, + -0.02771775610744953, + 0.024448100477457047, + -0.001716568716801703, + 0.016853583976626396, + 0.006981456186622381, + -0.010500050149857998, + -0.014505377970635891, + 0.006104594096541405, + 0.001700777793303132, + -0.0031210340093821287, + 0.01201598159968853, + -0.02834196202456951, + 0.013836584985256195, + -0.004399172030389309, + -0.007609378546476364, + -0.015857825055718422, + 0.00010699527047108859, + 0.006892283912748098, + 0.006383257918059826, + -0.018072273582220078, + -0.02160944603383541, + 0.038254961371421814, + -0.02082175575196743, + -0.03456916660070419, + 0.016407722607254982, + 0.00034670415334403515, + 0.004897051025182009, + 0.002036103280261159, + 0.008753757923841476, + -0.0063386717811226845, + -0.0012688490096479654, + 0.00032789434771984816, + -0.033291030675172806, + 0.02058396302163601, + 0.009890705347061157, + -0.002143853111192584, + 0.020643411204218864, + -0.013791998848319054, + 0.01047032605856657, + 0.0034294219221919775, + 0.0013645235449075699, + -0.03510420396924019, + -0.007780292071402073, + -0.03287489339709282, + 0.049609579145908356, + 0.00355203403159976, + -0.023318583145737648, + -0.05118495970964432, + -0.0030430082697421312, + -0.005621577147394419, + -0.03593647852540016, + 0.003938447684049606, + 0.003518594428896904, + 0.03052668645977974, + -0.020598825067281723, + -0.02101496234536171, + -0.011228292249143124, + -0.013509619049727917, + -0.036263443529605865, + -0.018384376540780067, + 0.012283498421311378, + 0.004072206560522318, + -0.030556410551071167, + 0.026157237589359283, + -0.004737284034490585, + 0.010871602222323418, + 0.016853583976626396, + 0.032310135662555695, + -0.008657154627144337, + -0.002857232466340065, + 0.00942998193204403, + 0.007728274911642075, + -0.0071152145974338055, + 0.01573892869055271, + -0.004815309774130583, + 0.036025650799274445, + 0.004848749376833439, + -0.028431134298443794, + 0.016036171466112137, + -0.02050965279340744, + -0.007356723304837942, + -0.007159800734370947, + 0.007568507920950651, + 0.0070334733463823795, + -0.007862033322453499, + -0.008315326645970345, + -0.026246409863233566, + 0.01863703317940235, + 0.015107291750609875, + -0.024760203436017036, + 0.045269858092069626, + 0.037363238632678986, + -0.013494757004082203, + 0.006777102593332529, + 0.024566996842622757, + 0.014966101385653019, + 0.0019042023923248053, + 0.004038766957819462, + 0.010396015830338001, + 0.040573444217443466, + 0.017745308578014374, + -0.01988544687628746, + -0.0024875386152416468, + -0.017834480851888657, + -0.01651175692677498, + 0.00409078411757946, + 0.010871602222323418, + 0.03126978874206543, + -0.00037248057196848094, + 0.016972480341792107, + 0.03977089375257492, + 0.004729853011667728, + -0.008627429604530334, + 0.031953442841768265, + 0.022530894726514816, + 0.016333412379026413, + -8.133498340612277e-5, + 0.0015540148597210646, + -0.014594550244510174, + 0.012335515581071377, + -0.013271826319396496, + 0.00463696476072073, + -0.01784934289753437, + -0.006791964638978243, + -0.0282230656594038, + 0.004009042866528034, + -0.010195378214120865, + -0.033915236592292786, + -0.0014824912650510669, + 0.017745308578014374, + -0.020985238254070282, + 0.009147602133452892, + 0.038879167288541794, + -0.022486308589577675, + -0.02621668577194214, + -0.012766515836119652, + -0.010975636541843414, + 0.021431101486086845, + -0.011287740431725979, + 0.012996877543628216, + -0.014245291240513325, + -0.029293134808540344, + -0.009682636708021164, + -0.01581323891878128, + 0.03287489339709282, + 0.007542499341070652, + 0.03409358114004135, + -0.04485371708869934, + 0.0013756700791418552, + 0.008367343805730343, + -0.0034554307349026203, + 0.027643445879220963, + 0.023155100643634796, + -0.021520273759961128, + 0.029843030497431755, + -0.03914668411016464, + 0.03180482238531113, + 0.016957618296146393, + 0.0543951652944088, + -0.03153730556368828, + -0.023184824734926224, + -0.003568753832951188, + 0.02312537655234337, + -0.017893929034471512, + -0.014349325560033321, + -0.033915236592292786, + -0.01328668836504221, + 0.019365273416042328, + -0.011733601801097393, + 0.005320620257407427, + -7.2858965722844e-5, + 0.012825964018702507, + -0.0018661182839423418, + 0.015107291750609875, + -0.023303721100091934, + 0.0042579821310937405, + -0.0130340326577425, + 0.0035724693443626165, + -0.0034052710980176926, + 0.003652353072538972, + 0.016303688287734985, + 0.016140205785632133, + 0.028951307758688927, + -0.01340558473020792, + 0.01694275625050068, + -0.009407688863575459, + -0.02559247985482216, + -0.011689015664160252, + 0.03718489408493042, + 0.012075429782271385, + -0.025845134630799294, + -0.013687963597476482, + -0.02379417046904564, + -0.009541447274386883, + 0.00256370659917593, + 0.0025079739280045033, + 0.019127480685710907, + -0.008790913037955761, + -0.0587051659822464, + -0.008686878718435764, + -0.00552868889644742, + -0.018131721764802933, + 0.003871568478643894, + -0.0072861285880208015, + -0.011689015664160252, + -0.004781870171427727, + -0.0011629568180069327, + -0.06025082245469093, + 0.00861256755888462, + -0.004596094135195017, + -0.019350411370396614, + -0.01338329166173935, + -0.008798344060778618, + 0.01213487796485424, + -0.003726663300767541, + -0.008828068152070045, + -0.01389603316783905, + -0.003089452162384987, + 0.008352481760084629, + -0.029768720269203186, + -0.04173268377780914, + 0.023273997008800507, + -0.019068032503128052, + -0.02481965161859989, + -0.0011360192438587546, + -0.016690101474523544, + 0.05062020197510719, + -0.0030132841784507036, + -0.04916371777653694, + 0.016526618972420692, + 0.01842896267771721, + -0.02156485989689827, + 0.037868548184633255, + 0.03427192568778992, + 0.0050902580842375755, + 0.011042515747249126, + -0.022293100133538246, + 0.024522410705685616, + 0.015181601978838444, + 0.0010069051058962941, + 0.00021956382261123508, + -0.025488445535302162, + 0.009496861137449741, + -0.011458653956651688, + -0.006305232178419828, + 0.011480947025120258, + 0.01457968819886446, + -0.00011343937512720004, + 0.003743383102118969, + 0.018146583810448647, + 0.0051311287097632885, + 0.03314241021871567, + -0.009214481338858604, + 0.011830205097794533, + 0.009965016506612301, + 0.007263835519552231, + -0.00024986849166452885, + 0.03881971910595894, + 0.004046197980642319, + 0.0289215836673975, + -0.0040053268894553185, + -0.02594916895031929, + -0.0016803424805402756, + -0.007862033322453499, + 0.004703844431787729, + 0.009400257840752602, + -3.824369741778355e-6, + 0.02578568644821644, + -0.02481965161859989, + 0.001835465314798057, + 0.0230510663241148, + 0.003423848655074835, + -0.010054188780486584, + 0.03153730556368828, + 0.04075178876519203, + 0.010514912195503712, + -0.054930198937654495, + -0.02951606549322605, + 0.03801716864109039, + -0.01399263646453619, + 0.01056692935526371, + -0.012692205607891083, + 0.017893929034471512, + -0.013487325981259346, + -0.01498839445412159, + -0.009140171110630035, + -0.010433170944452286, + -0.03504475578665733, + 0.004703844431787729, + -0.030615858733654022, + 0.0025581333320587873, + 0.013985205441713333, + 0.020524514839053154, + 0.009756946936249733, + -0.0234820656478405, + 0.019558480009436607, + -0.024552134796977043, + -0.0038901460357010365, + -0.008649722672998905, + -0.016883308067917824, + -0.0033978400751948357, + -0.003542745253071189, + 0.0012437693076208234, + 0.04779640957713127, + -0.0038641374558210373, + -0.013100911863148212, + -0.04562654718756676, + -0.01753723993897438, + -0.014824911952018738, + -0.04090040922164917, + -0.010953343473374844, + 0.02959037572145462, + -0.005027094390243292, + 0.018651895225048065, + -0.03236958384513855, + 0.022293100133538246, + -0.016972480341792107, + -0.012573309242725372, + 0.0032715124543756247, + -0.02403196319937706, + -0.028936445713043213, + 0.023645548149943352, + 0.001902344636619091, + -0.004179956391453743, + 0.005428370088338852, + -0.05415737256407738, + 0.03245875611901283, + -0.0020936937071383, + 0.006208628416061401, + 0.015709204599261284, + 0.0005833361647091806, + 0.0059708356857299805, + -0.006305232178419828, + -0.003267796942964196, + -0.006687930319458246, + -0.008998981676995754, + -0.03376661613583565, + 0.040603168308734894, + 0.02156485989689827, + 0.013732549734413624, + -0.026439618319272995, + 0.01023253332823515, + 0.010789860971271992, + -0.007527636829763651, + -0.02376444637775421, + -0.0034034133423119783, + 0.027569135650992393, + 0.016615791246294975, + -0.012781377881765366, + -0.014787756837904453, + -0.00915503315627575, + 0.026588238775730133, + -0.011963964439928532, + -0.032666824758052826, + 0.0032306418288499117, + 0.00375267188064754, + -0.01183763612061739, + 0.019558480009436607, + -0.009652912616729736, + 0.00016174108895938843, + -0.023927928879857063, + -0.01729944534599781, + -0.0040201894007623196, + 0.030823927372694016, + -0.022203927859663963, + -0.010581792332231998, + -0.004369447939097881, + 0.0049193440936505795, + 0.013026601634919643, + 0.0063015166670084, + -0.02422516979277134, + -0.005004801321774721, + 0.010433170944452286, + 0.020851479843258858, + -0.0020899781957268715, + -0.004718706477433443, + -0.01516673993319273, + 0.015545722097158432, + 0.011049946770071983, + 0.005227732006460428, + 0.0009669632418081164, + 0.006505869794636965, + 0.01596185937523842, + 0.016734687611460686, + 0.010968205519020557, + 0.03599592670798302, + -0.01596185937523842, + 0.030496962368488312, + -0.005067965015769005, + 0.011012791655957699, + 0.03974116966128349, + 0.00724154245108366, + -0.00024568854132667184, + 0.01808713562786579, + 0.012290929444134235, + -0.006375826895236969, + 0.02242685854434967, + -0.0033811202738434076, + 0.0076613957062363625, + 0.011354619637131691, + 0.0036746461410075426, + 0.009823826141655445, + 0.007605663035064936, + 0.025651928037405014, + -0.004410318564623594, + -0.014683722518384457, + -0.00015767724835313857, + -0.011570119298994541, + -0.011904516257345676, + -0.003200917737558484, + 0.018458686769008636, + -0.022099893540143967, + 0.01628882624208927, + -0.02031644620001316, + 0.015917273238301277, + -0.005536119919270277, + 0.030586134642362595, + 0.006178904324769974, + -0.0019246377050876617, + -0.020925790071487427, + 0.04063289240002632, + -0.0008239158778451383, + -0.025845134630799294, + -0.004960214719176292, + -0.0060117063112556934, + 0.0001984318223549053, + 0.0002749482518993318, + 0.03974116966128349, + 0.010693257674574852, + 0.01103508472442627, + 0.00750534376129508, + 0.010210240259766579, + -0.010685826651751995, + 0.013680532574653625, + -0.010700688697397709, + 0.001139734755270183, + 0.013494757004082203, + 0.028282513841986656, + -0.02481965161859989, + -0.0027104695327579975, + -0.02645448036491871, + -0.020925790071487427, + 0.024671031162142754, + 0.009489430114626884, + -0.005543550942093134, + -0.008664585649967194, + 0.005937396083027124, + 0.016080757603049278, + -0.019157204777002335, + -0.002468960825353861, + 0.020658273249864578, + -0.011770756915211678, + 0.012788808904588223, + -0.0018401097040623426, + -0.010827016085386276, + 0.010633809491991997, + -0.008196430280804634, + 0.0038678529672324657, + -0.01929096318781376, + -0.0023760730400681496, + 0.011480947025120258, + -0.00046025964547879994, + 0.01780475676059723, + -0.009444843977689743, + 0.016095619648694992, + 0.01401492953300476, + 0.009481999091804028, + -0.019513893872499466, + 0.005599283613264561, + 0.0030968831852078438, + -0.005053102970123291, + -0.01694275625050068, + -0.00927392952144146, + -0.0012196183670312166, + -0.013650808483362198, + -0.0003585473750717938, + -0.009838688187301159, + -0.03682820126414299, + -0.020643411204218864, + -0.010693257674574852, + -0.022486308589577675, + 0.005673594307154417, + -0.019201790913939476, + -0.019231515005230904, + -0.002898103091865778, + 0.00806267186999321, + 0.00032162442221306264, + 0.011577550321817398, + -0.006431559566408396, + -0.01847354881465435, + -0.018562721088528633, + -0.026840893551707268, + -0.008389636874198914, + 0.00986098125576973, + -0.009400257840752602, + 0.02043534256517887, + 0.015530860051512718, + 0.0046815513633191586, + 0.004566370043903589, + -0.023853618651628494, + -0.01660092920064926, + 0.029144514352083206, + -0.021862100809812546, + 0.008909809403121471, + 0.0014369761338457465, + -0.01440134271979332, + 0.017908791080117226, + -0.0020806894171983004, + 0.001533579546958208, + -0.036025650799274445, + 0.012157171033322811, + -0.0060042752884328365, + 0.007501628249883652, + -0.029649823904037476, + -0.009236774407327175, + -0.026513928547501564, + 0.012075429782271385, + -0.009704929776489735, + 0.0026918919757008553, + -0.0019394997507333755, + -0.012469273991882801, + 0.007141223177313805, + 0.033409927040338516, + 0.0031619048677384853, + 0.0022497454192489386, + 0.015352515503764153, + 0.0007732919184491038, + 0.012476705014705658, + -0.007133792154490948, + -0.00954887829720974, + -0.0006845839670859277, + -0.001599529990926385, + -0.006089732050895691, + -0.02242685854434967, + 0.011748463846743107, + -0.006881136912852526, + 0.0004978792276233435, + 0.006725085433572531, + 0.017314309254288673, + 0.005796206183731556, + 0.0010914331069216132, + -0.009935292415320873, + 0.0063386717811226845, + 0.009132740087807178, + 0.003291947999969125, + 0.003838128875941038, + -0.010797291994094849, + 0.005599283613264561, + -0.007936343550682068, + 0.019424721598625183, + 0.0011518101673573256, + 0.020792031660676003, + -0.005190576892346144, + -0.004228258039802313, + 0.041078753769397736, + 0.0032362150959670544, + 0.01811685971915722, + -0.017210273072123528, + -0.00788432639092207, + -0.005584421567618847, + 0.012692205607891083, + -0.008694309741258621, + 0.0013255106750875711, + -0.015174170956015587, + 0.008917240425944328, + 0.009236774407327175, + -0.027405651286244392, + 0.040603168308734894, + -0.0013858877355232835, + 0.02398737706243992, + 0.01799796335399151, + -0.026290997862815857, + 0.0023500644601881504, + 0.0003044401528313756, + -0.0006074869888834655, + -0.0025172627065330744, + 0.006123171653598547, + 0.0007505344110541046, + 0.014356756582856178, + -0.004113077186048031, + 0.010009602643549442, + 0.000666470848955214, + 0.007720843888819218, + -0.01498839445412159, + -0.018532996997237206, + 0.026796307414770126, + -0.02074744552373886, + -0.08310867846012115, + -0.018934274092316628, + -0.009838688187301159, + -0.006123171653598547, + 0.009920429438352585, + 0.005874231923371553, + -0.013687963597476482, + 0.015664618462324142, + 0.005981982219964266, + 0.036768753081560135, + -0.0014592692023143172, + 0.03222096338868141, + 0.01117627415806055, + -0.01225377433001995, + 0.01624424010515213, + -0.016690101474523544, + -0.013561636209487915, + -0.00031814113026484847, + 0.02297675609588623, + -0.02489396184682846, + 0.006182619836181402, + -0.022174203768372536, + -0.006505869794636965, + 0.026840893551707268, + -0.014646567404270172, + -0.0015215041348710656, + 0.01902344636619091, + 0.03792799636721611, + -0.009221912361681461, + -0.017165686935186386, + -0.014564826153218746, + 0.026900341734290123, + -0.00933337863534689, + 0.013903464190661907, + 0.015872687101364136, + -0.017002204433083534, + 0.017358895391225815, + -0.0014769178815186024, + -0.03260737657546997, + 0.01213487796485424, + -0.023140238597989082, + -0.00044400425394997, + -0.008828068152070045, + 0.008352481760084629, + 0.003461004002019763, + -0.010492619127035141, + 0.022411996498703957, + 0.007323283702135086, + 0.026350446045398712, + -0.0014889934100210667, + -0.007096637040376663, + -0.004202249459922314, + 0.005145990755409002, + 0.0023927928414195776, + -0.018265480175614357, + -0.008939533494412899, + -0.011228292249143124, + -0.006123171653598547, + -0.0013561636442318559, + -0.000477443914860487, + 0.03088337555527687, + -0.0012270493898540735, + 0.02376444637775421, + -0.006390688940882683, + 0.0017221419839188457, + 0.01842896267771721, + 0.0025024006608873606, + 0.007705981843173504, + -0.0032306418288499117, + -0.010083912871778011, + -0.01713596284389496, + -0.016273964196443558, + 0.017195411026477814, + 0.0034387107007205486, + -0.022768687456846237, + -0.01725485920906067, + 0.00847137812525034, + -0.011696446686983109, + -0.00020098623645026237, + 0.004120508208870888, + -0.007382731884717941, + -0.006082301028072834, + -0.0022423143964260817, + -0.025146618485450745, + 0.0053837839514017105, + -0.01667523942887783, + 0.007170947268605232, + -0.009259067475795746, + -0.011518102139234543, + -0.004633249249309301, + -0.012811101973056793, + -0.010121067985892296, + -0.03771992772817612, + 0.011109394952654839, + -0.019469307735562325, + 0.010210240259766579, + 0.007371585350483656, + -0.009920429438352585, + 0.021847238764166832, + -0.002069542882964015, + 0.0014797045150771737, + 0.007936343550682068, + -0.04155433923006058, + -0.028713513165712357, + 0.01201598159968853, + -0.01988544687628746, + 0.0008322757785208523, + -0.0020026634447276592, + -0.026157237589359283, + 0.0016097476473078132, + 0.002899960847571492, + 0.01225377433001995, + -0.0025005429051816463, + 0.015634894371032715, + 0.009912998415529728, + -0.006639628671109676, + -0.013048894703388214, + 0.0006325667491182685, + 0.01746292971074581, + -0.00827817153185606, + 0.005454378668218851, + 0.012551016174256802, + 0.010076481848955154, + -0.022055307403206825, + 0.02204044535756111, + 0.02259034290909767, + 0.003122891765087843, + -0.008337619714438915, + 0.03180482238531113, + 0.019276101142168045, + 0.01564975641667843, + -0.027346203103661537, + -0.03667958080768585, + -0.014490515924990177, + -0.022649791091680527, + -0.0006999104516580701, + 0.009147602133452892, + 0.03605537489056587, + 0.011651860550045967, + 0.0034554307349026203, + 0.005684740841388702, + 0.016734687611460686, + -0.051095787435770035, + 0.010113636963069439, + -0.010492619127035141, + 0.0063015166670084, + 0.019082894548773766, + 0.0023259136360138655, + -0.004339723847806454, + 0.0008359912899322808, + 0.003275227965787053, + -0.02465616911649704, + 0.022634929046034813, + 0.0100170336663723, + 0.020970376208424568, + -0.06265847384929657, + -0.006089732050895691, + -0.0024578142911195755, + -0.0028014995623379946, + -0.021698618307709694, + 0.0035891891457140446, + 0.003797258250415325, + 0.031210340559482574, + -0.002454098779708147, + 0.004889620002359152, + -0.01086417119950056, + 0.008114689029753208, + 0.00299842213280499, + 0.016392860561609268, + -0.012744222767651081, + 0.05873489007353783, + -0.02340775541961193, + -6.589236727450043e-5, + 0.012372670695185661, + 0.01211258489638567, + 0.020925790071487427, + 0.02429948002099991, + -0.03560951352119446, + -0.011911947280168533, + -0.0030374350026249886, + 0.008107258006930351, + -0.006587611511349678, + -0.00827817153185606, + -0.006041430402547121, + 0.011042515747249126, + 0.0011861787643283606, + -9.968035010388121e-5, + 0.026751721277832985, + 0.007126361131668091, + 0.02426975592970848, + 0.02810416929423809, + 0.007416171487420797, + -0.009184757247567177, + -0.0011536679230630398, + 0.009534016251564026, + -0.01667523942887783, + -0.017314309254288673, + -0.006836550775915384, + 0.021341929212212563, + -0.0032770857214927673, + -0.010106205940246582, + -0.014349325560033321, + 0.02954578958451748, + -0.009563740342855453, + 0.012647619470953941, + -0.016422584652900696, + 0.029753858223557472, + -0.01479518786072731, + -0.005198007915169001, + 0.016021307557821274, + 0.010975636541843414, + 0.0017444351688027382, + -0.025696514174342155, + 0.0001940196380019188, + -0.004328577313572168, + -0.024403514340519905, + -0.022159341722726822, + 0.0059299650602042675, + -0.01220918819308281, + -0.010997929610311985, + -0.0042171115055680275, + -0.0012474848190322518, + -0.0008397068013437092, + -0.001599529990926385, + 0.01679413579404354, + 0.030556410551071167, + 0.015828100964426994, + 0.02630585990846157, + 0.02395765297114849, + -0.008047809824347496, + 0.0022720384877175093, + -0.006152895744889975, + 0.0028850988019257784, + -0.015137015841901302, + -0.016927894204854965, + -0.011146550066769123, + 0.011755894869565964, + 0.007720843888819218, + -0.01220918819308281, + 0.00986098125576973, + -0.020108377560973167, + 0.012729360722005367, + -0.006661921739578247, + -0.01883023977279663, + -0.01761155016720295, + -0.017477791756391525, + 0.009377964772284031, + 0.00815927516669035, + -0.030496962368488312, + 0.00994272343814373, + 0.00769111979752779, + 0.0025822841562330723, + 0.018176307901740074, + -0.019900308921933174, + 0.003871568478643894, + -0.013784567825496197, + 0.012082860805094242, + -0.019543617963790894, + 0.012120015919208527, + -0.013242102228105068, + -0.008894947357475758, + 0.008902378380298615, + 0.003258508164435625, + -0.014921515248715878, + 0.018458686769008636, + 0.018220894038677216, + 0.0016822002362459898, + -0.0052463095635175705, + -0.027732618153095245, + 0.005034525413066149, + 0.004228258039802313, + -0.007743136957287788, + 0.009853550232946873, + 0.018057411536574364, + -0.00500851683318615, + 0.0041873874142766, + 0.00430628377944231, + 0.004989939276129007, + -0.002422516932711005, + 0.01342787779867649, + -0.0032715124543756247, + -0.0027531979139894247, + 0.0011155839310958982, + -0.005428370088338852, + 0.017626412212848663, + 0.00720067135989666, + -0.0028126463294029236, + 0.0027606289368122816, + 0.00642041303217411, + 0.010500050149857998, + -0.014007498510181904, + -0.01573892869055271, + -0.004466051235795021, + 0.008382205851376057, + 0.00430628377944231, + -0.0022924738004803658, + -0.0234820656478405, + -0.005231447517871857, + 0.020598825067281723, + -0.003106171963736415, + -0.00540979253128171, + 0.015047842636704445, + -0.016853583976626396, + 0.007282413076609373, + 0.006569033954292536, + -0.01213487796485424, + 0.0023240558803081512, + 0.004618387203663588, + 0.0008736109011806548, + -0.014683722518384457, + -0.005874231923371553, + 0.007780292071402073, + -0.014379049651324749, + 0.001668267068453133, + 0.012536154128611088, + 0.008664585649967194, + -0.02556275576353073, + 0.00010304753959644586, + 0.06569033861160278, + -0.006141749210655689, + -0.003975602798163891, + 0.01902344636619091, + 0.0177750326693058, + -0.015122153796255589, + 0.0131677919998765, + -0.0012530580861493945, + -0.005242594052106142, + 0.002504258416593075, + 0.004986223764717579, + 0.004388025496155024, + 0.001984085887670517, + -0.011562688276171684, + -0.02915937639772892, + -0.006513300817459822, + 0.01072298176586628, + 0.0026937497314065695, + -0.005138559732586145, + -0.007951205596327782, + -0.0042505511082708836, + -0.013071187771856785, + 0.00018914302927441895, + 0.02309565246105194, + -0.001592098968103528, + 0.014341894537210464, + 0.005569559521973133, + -0.020108377560973167, + 0.0183100663125515, + -0.0019562195520848036, + 0.0012103295885026455, + -0.007022326812148094, + 0.007096637040376663, + -0.016883308067917824, + 0.0076613957062363625, + 0.008738895878195763, + -0.000324411055771634, + 0.005524973385035992, + 0.02105954848229885, + 0.003494443604722619, + 0.0013608080334961414, + -0.022099893540143967, + -0.0018298920476809144, + 0.0026844609528779984, + -0.031329236924648285, + 0.0017741592600941658, + -0.015917273238301277, + 0.006922008004039526, + -0.01909775659441948, + -0.014059515669941902, + 0.023809032514691353, + -0.024745341390371323, + 0.004767008125782013, + 0.0069591631181538105, + 0.01713596284389496, + 0.0042171115055680275, + -0.008902378380298615, + 0.0036746461410075426, + 0.022768687456846237, + 0.012023412622511387, + -0.015872687101364136, + -0.0035873313900083303, + 0.005818499252200127, + -0.004079637583345175, + -0.010849309153854847, + 0.005799921695142984, + -0.019127480685710907, + 0.007966067641973495, + 0.01330898143351078, + -0.0020472498144954443, + 0.0050493874587118626, + -0.021594583988189697, + 0.010418308898806572, + -0.012781377881765366, + 0.0008801130461506546, + 0.0027104695327579975, + 0.017284583300352097, + 0.010611516423523426, + 0.01086417119950056, + -0.004566370043903589, + -0.018681619316339493, + 0.005770197603851557, + -0.014810049906373024, + -0.014252722263336182, + -0.0014304739888757467, + 0.005368921905755997, + 0.032429032027721405, + -0.041792131960392, + -0.004231973551213741, + -0.021118996664881706, + -0.013583929277956486, + -0.02321454882621765, + 0.006691645830869675, + 0.014750601723790169, + 0.002638016827404499, + 0.014862067066133022, + 0.012372670695185661, + 0.009325947612524033, + -0.002394650597125292, + -0.02438865229487419, + 0.006342387292534113, + -0.0067399474792182446, + -0.008367343805730343, + 0.0020472498144954443, + -0.01469858456403017, + -0.0001140779786510393, + 0.014007498510181904, + 0.0038492754101753235, + -0.02285785973072052, + -0.013271826319396496, + -0.002000805689021945, + -0.007312137167900801, + -0.016422584652900696, + 0.01401492953300476, + -0.015560584142804146, + -0.009214481338858604, + 0.009162464179098606, + -0.00986098125576973, + -0.015441687777638435, + 0.013962912373244762, + -0.00507911155000329, + 0.02180265262722969, + 0.009831257164478302, + -0.018607309088110924, + -0.0008058027015067637, + 0.008560550399124622, + -0.002899960847571492, + -0.0008039449458010495, + -0.0006000559660606086, + -0.0163185503333807, + 0.010076481848955154, + 0.005941111594438553, + 0.03248848021030426, + -0.0016125342808663845, + 0.026915203779935837, + -0.007847171276807785, + -0.01526334322988987, + 0.03370716795325279, + 0.0023054780904203653, + -0.017522377893328667, + 0.027806928381323814, + -0.006732516456395388, + 0.013754842802882195, + 0.01663065329194069, + 0.008330188691616058, + -0.010403446853160858, + 0.00942998193204403, + -0.022961894050240517, + 0.0171805489808321, + -0.022159341722726822, + 0.025042584165930748, + 0.004410318564623594, + 0.004882188979536295, + -0.008434223011136055, + -0.012409825809299946, + -0.00454036146402359, + -0.01753723993897438, + 0.03284516930580139, + -0.02599375508725643, + -0.004347154870629311, + -0.007092921528965235, + 0.02970927208662033, + -0.01538223959505558, + -0.005034525413066149, + 0.005450663156807423, + 0.0006627553375437856, + 0.007713412865996361, + 0.011793049983680248, + -0.010388584807515144, + -0.007234111428260803, + -0.013301550410687923, + 0.008248447440564632, + 0.03852247819304466, + -0.03103199601173401, + -0.0015484415926039219, + -0.034420546144247055, + 0.006331240758299828, + 0.0016459739999845624, + -0.022530894726514816, + 0.00482274079695344, + -0.025458721444010735, + -0.0032770857214927673, + 0.013554205186665058, + -0.006996318232268095, + 0.002160572912544012, + 0.008560550399124622, + 0.004852464888244867, + 0.00026960717514157295, + -0.0015391528140753508, + -0.006461283657699823, + 0.007416171487420797, + 0.010410877875983715, + 0.002849801443517208, + -0.007438464555889368, + -0.013821722939610481, + 0.0014797045150771737, + 0.027093548327684402, + 0.02039075642824173, + 0.027063824236392975, + 0.0005443232366815209, + -0.010633809491991997, + -0.003377404762431979, + 0.01401492953300476, + 0.008419360965490341, + -0.017715584486722946, + 8.487633749609813e-5, + -0.024002239108085632, + -0.009920429438352585, + -0.0022070170380175114, + 0.018755929544568062, + -0.016719825565814972, + -0.01660092920064926, + 0.010708119720220566, + 0.009400257840752602, + 0.019751686602830887, + -0.003780538449063897, + 0.00886522326618433, + 0.0035706115886569023, + -0.0017964523285627365, + -0.03088337555527687, + -0.020227273926138878, + -0.013494757004082203, + 0.001123014953918755, + -0.008010653778910637, + -0.0009613899746909738, + 0.01103508472442627, + -0.026959789916872978, + -0.012952291406691074, + 0.011577550321817398, + -6.566014781128615e-5, + 0.01780475676059723, + -0.006227205973118544, + 0.008107258006930351, + 0.010685826651751995, + -0.0044363271445035934, + 0.02630585990846157, + 0.005584421567618847, + -0.01269963663071394, + 0.024626445025205612, + 0.004440042655915022, + -0.03014027327299118, + 0.0010607800213620067, + -0.003893861547112465, + -0.00581106822937727, + 0.0024262324441224337, + -0.005491533782333136, + -0.006491007748991251, + 0.0013050752459093928, + -0.0020974092185497284, + -3.190119605278596e-5, + -0.004016473889350891, + 0.0022831850219517946, + -0.004826456308364868, + -0.006353533826768398, + 0.01667523942887783, + -0.017433205619454384, + -0.011882223188877106, + -0.009125309064984322, + -0.0020156679674983025, + -0.03201289102435112, + 0.022872721776366234, + 0.00798092968761921, + -0.01706165261566639, + 0.01123572327196598, + 0.007349292282015085, + -0.01330898143351078, + -0.019558480009436607, + 0.018339790403842926, + 0.010760136879980564, + -0.0130340326577425, + 0.021237894892692566, + -0.007390162907540798, + -0.01557544618844986, + 0.024433238431811333, + 0.012855688109993935, + -0.002153141889721155, + -0.004454904701560736, + 0.0011629568180069327, + 0.020658273249864578, + 0.01952875591814518, + -0.01773044653236866, + -0.005896524991840124, + 0.0063721113838255405, + -0.016392860561609268, + -0.003048581536859274, + -0.007512774784117937, + 0.011317464523017406, + -0.0027866375166922808, + -0.0004881260101683438, + 0.0006362822605296969, + -0.011636998504400253, + -0.026112651452422142, + -0.00876861996948719, + -0.028312237933278084, + 0.02688547968864441, + 0.03739296272397041, + 0.012461842969059944, + -0.00283308164216578, + 0.008047809824347496, + -0.021579721942543983, + 0.009541447274386883, + -0.0037210900336503983, + -0.02525065280497074, + -0.011258016340434551, + 0.008151844143867493, + 0.012194326147437096, + 0.025741100311279297, + -0.005926249083131552, + -0.007163516245782375, + 0.015515998005867004, + 0.027702894061803818, + -0.006305232178419828, + -0.0011248727096244693, + -0.0030950254295021296, + -0.0012762800324708223, + -0.014260153286159039, + 0.0015958144795149565, + 0.013977774418890476, + 0.005376352928578854, + 0.011822774074971676, + 0.0026528791058808565, + -0.00036876503145322204, + 0.02175806649029255, + -0.01761155016720295, + 0.0050159478560090065, + 0.01988544687628746, + 0.006438990589231253, + -0.002745766891166568, + -0.01133232656866312, + -0.025458721444010735, + 0.013115773908793926, + -0.015084998682141304, + -0.020732583478093147, + 0.004202249459922314, + -0.004365732427686453, + 0.029753858223557472, + -0.0067993956618011, + 0.005053102970123291, + -0.013702825643122196, + 0.0037043702322989702, + -0.001643187366425991, + -0.002355637727305293, + -0.001576308044604957, + -0.007122645620256662, + -0.021743204444646835, + -0.001958077307790518, + 0.012833395041525364, + -0.02230796217918396, + -0.005142275243997574, + 0.01491408422589302, + -0.02012323960661888, + 0.007973498664796352, + -0.010121067985892296, + 0.017581826075911522, + -0.008144413121044636, + 0.0065281628631055355, + 0.0012038274435326457, + 0.02453727275133133, + -0.020182687789201736, + -0.009318516589701176, + 0.0072526889853179455, + -0.0014462649123743176, + -0.000591231626458466, + -0.0014611269580200315, + 0.010500050149857998, + -0.02371986024081707, + -0.006245783530175686, + -0.011532964184880257, + -0.02012323960661888, + -0.010269688442349434, + 0.008753757923841476, + -0.02019754983484745, + 0.0015103576006367803, + 0.005688456352800131, + -0.007501628249883652, + 0.0060117063112556934, + -0.026484204456210136, + 0.01859244704246521, + -0.02599375508725643, + -0.0017880924278870225, + 0.022649791091680527, + 0.012736791744828224, + 0.00715236971154809, + 0.0007273124065250158, + -0.015040411613881588, + 0.006334956269711256, + 0.009340809658169746, + 0.02316996268928051, + 0.005372637417167425, + 0.0018373230705037713, + 0.010448032990098, + -0.008478809148073196, + -0.0022423143964260817, + 0.011101963929831982, + -0.024834513664245605, + 0.0392061322927475, + -0.011347188614308834, + -0.014995825476944447, + -0.03014027327299118, + 0.012335515581071377, + -0.016586067155003548, + 0.0004512030864134431, + -0.0014341895002871752, + -0.004339723847806454, + 0.0010199093958362937, + -0.010893895290791988, + -0.015367377549409866, + -0.012729360722005367, + 0.02077716961503029, + 0.0024726763367652893, + -0.004897051025182009, + -0.005788775160908699, + 0.014104101806879044, + 0.008226154372096062, + 0.026157237589359283, + -0.0030875944066792727, + 0.0058259302750229836, + 0.015367377549409866, + 0.014289877377450466, + 0.0016887023812159896, + 0.0002099267003359273, + -0.0010106206173077226, + -0.0008619999280199409, + 0.016838721930980682, + 0.012558447197079659, + -0.018027687445282936, + 0.01081958506256342, + 0.0038084047846496105, + 0.0024095126427710056, + 0.005086542572826147, + -0.027063824236392975, + -0.00933337863534689, + -0.012484136037528515, + 0.01655634306371212, + -0.009348240680992603, + 0.002814504085108638, + 0.015753790736198425, + 0.019365273416042328, + 0.010812154039740562, + 0.003678361652418971, + -0.012595602311193943, + -0.006795680150389671, + -0.004414034076035023, + -0.007743136957287788, + -0.0019246377050876617, + -0.02254575677216053, + 0.005655016750097275, + 0.00594854261726141, + -0.0011787477415055037, + -0.011986257508397102, + -2.4615299480501562e-5, + 0.007631671614944935, + 0.004856180399656296, + 0.00698517169803381, + -0.014706015586853027, + 0.0022330256178975105, + -0.00790661945939064, + 0.0014304739888757467, + 0.007728274911642075, + -0.03100227192044258, + -0.009965016506612301, + -0.0048376028425991535, + 0.004391741007566452, + -0.005012232344597578, + -0.0009033350506797433, + 0.00896182656288147, + 0.014832342974841595, + 0.009950154460966587, + -0.011302602477371693, + -0.02403196319937706, + -0.00611574063077569, + 0.023630686104297638, + 0.0018651894060894847, + -0.0025284092407673597, + 0.003470292780548334, + 0.016645515337586403, + 0.006483576726168394, + 0.007605663035064936, + -0.0038641374558210373, + -0.015092429704964161, + -0.005558412987738848, + 0.012201757170259953, + -0.0060860165394842625, + -0.001692417892627418, + 0.008263309486210346, + -0.01859244704246521, + -0.012536154128611088, + 0.0008058027015067637, + -0.0048041632398962975, + 0.015181601978838444, + 0.033796340227127075, + 0.01624424010515213, + 0.01691303215920925, + -0.015107291750609875, + 0.0006822617724537849, + -0.01064867153763771, + 0.03112116828560829, + -0.0041428012773394585, + -0.004740999545902014, + -0.00886522326618433, + 0.0197665486484766, + 0.014765463769435883, + -0.006230921484529972, + -0.01428244635462761, + 0.014215567149221897, + -0.010923619382083416, + -0.014074377715587616, + 0.02156485989689827, + 0.006791964638978243, + 0.0046481117606163025, + -0.008991550654172897, + 0.012669912539422512, + -0.019469307735562325, + 0.003797258250415325, + 0.0071152145974338055, + 0.012558447197079659, + -0.003852990921586752, + -0.0022255945950746536, + 0.00639811996370554, + -0.00656531797721982, + 0.00611574063077569, + -0.030675306916236877, + 0.021862100809812546, + 0.013754842802882195, + 0.0017072799382731318, + -0.010083912871778011, + 0.010366291739046574, + -0.001668267068453133, + -0.002638016827404499, + -0.015441687777638435, + 0.015634894371032715, + 0.02470075525343418, + 0.004298852756619453, + 0.0006534665008075535, + 0.004789301194250584, + 0.02230796217918396, + 0.02376444637775421, + -0.010708119720220566, + 0.018963998183608055, + -0.015055273659527302, + 0.026558514684438705, + 0.007936343550682068, + 0.0010867887176573277, + 0.011362050659954548, + -0.00395330972969532, + -0.016467170789837837, + 0.016377998515963554, + 0.0013013597344979644, + 0.009169895201921463, + -0.013048894703388214, + -0.02513175643980503, + 0.017046790570020676, + 0.02281327359378338, + 0.027138134464621544, + 0.017433205619454384, + -0.0021902972366660833, + 0.025072308257222176, + -0.0019636505749076605, + -0.013204947113990784, + 0.010916188359260559, + 0.0020491075702011585, + 0.01103508472442627, + -0.010210240259766579, + 0.007590800989419222, + -0.009192188270390034, + 0.003934732172638178, + 0.0171805489808321, + -0.01054463628679514, + 0.01037372276186943, + 0.0006632197764702141, + -0.00933337863534689, + -0.0030597280710935593, + 0.014245291240513325, + 0.0005563986487686634, + -0.0019413575064390898, + -0.015352515503764153, + -0.01706165261566639, + 0.011347188614308834, + 0.011101963929831982, + -0.01749265380203724, + -0.004915628582239151, + -0.0034368529450148344, + -0.0031470428220927715, + 0.008367343805730343, + 0.008515964262187481, + 0.01643744669854641, + 0.006554171442985535, + 0.002706754021346569, + 0.02688547968864441, + -0.019543617963790894, + 0.011436360888183117, + 0.0008685020729899406, + -0.011949102394282818, + -0.02880268543958664, + 0.027182720601558685, + 0.01655634306371212, + -0.005238878540694714, + 0.023749584332108498, + -0.02673685923218727, + -0.01952875591814518, + -0.01909775659441948, + 0.006219774950295687, + -0.0018707626732066274, + 0.005231447517871857, + -0.009266498498618603, + -0.007048335392028093, + 0.0014109675539657474, + 0.0049825082533061504, + 0.013680532574653625, + 0.0024336634669452906, + 0.0004379665479063988, + -0.02242685854434967, + 0.0028535169549286366, + -0.011027653701603413, + 0.01430473942309618, + 0.013375860638916492, + 0.01060408540070057, + -0.036887649446725845, + 0.020910928025841713, + 0.009927860461175442, + 0.008642291650176048, + 0.0023221978917717934, + -0.021936411038041115, + -0.012157171033322811, + -0.013360998593270779, + -0.014691153541207314, + 0.001541010569781065, + -0.012105153873562813, + 0.01027711946517229, + 0.006405550986528397, + 0.010210240259766579, + 0.005357775371521711, + -0.013509619049727917, + -0.01616992987692356, + -0.02528037689626217, + -0.01123572327196598, + -0.00738644739612937, + 0.0130340326577425, + 0.012491567060351372, + 0.005647585727274418, + -0.012172033078968525, + 0.008248447440564632, + -0.0028107885736972094, + 0.016779273748397827, + 0.005740473512560129, + 0.004488344304263592, + 0.00046861954615451396, + 0.011384343728423119, + -0.0053837839514017105, + -0.024135997518897057, + -0.006569033954292536, + 0.038998063653707504, + -0.020048929378390312, + 0.01605103351175785, + -0.0045515079982578754, + -0.008032947778701782, + 0.009103015996515751, + -0.0010914331069216132, + 0.02108927257359028, + 0.016021307557821274, + -0.03412330523133278, + -0.01588754914700985, + -0.012632757425308228, + 0.019751686602830887, + -0.0031879134476184845, + -0.01823575608432293, + 0.018681619316339493, + 0.0069182924926280975, + -0.021356791257858276, + -0.013353567570447922, + 0.003301236778497696, + 0.004202249459922314, + -0.023496927693486214, + 0.006550455931574106, + 0.011384343728423119, + 0.01660092920064926, + 0.015233619138598442, + -0.014453360810875893, + 0.03299378976225853, + 0.0007649320177733898, + 0.0022664652206003666, + -0.015471411868929863, + 0.004194818437099457, + 0.014148687943816185, + -7.895473572716583e-6, + 0.0026157237589359283, + 0.019038308411836624, + -0.012216619215905666, + 0.0007231324561871588, + -0.010782429948449135, + -0.005160852801054716, + 0.007943774573504925, + -0.0088875163346529, + 0.00859027449041605, + 0.006806826684623957, + 0.003050439292564988, + 0.0013301550643518567, + -0.009006412699818611, + -0.01387374009937048, + -5.053683344158344e-5, + -0.0026863187085837126, + -0.007003749255090952, + 0.00896182656288147, + -0.0027327626012265682, + -0.011495809070765972, + -0.004016473889350891, + -0.011049946770071983, + -0.0006831906503066421, + 0.006479861214756966, + 0.010774998925626278, + -0.007847171276807785, + -0.01593213528394699, + -0.01244698092341423, + 0.010574361309409142, + 0.013450170867145061, + -0.021668894216418266, + -0.022768687456846237, + 0.021386515349149704, + -0.007234111428260803, + 0.001524290768429637, + 0.0037731074262410402, + 0.00042612332617864013, + -0.024953410029411316, + -0.003661641851067543, + -0.002595288446173072, + -0.016898170113563538, + -0.01060408540070057, + 0.015248481184244156, + -0.006806826684623957, + -0.021624308079481125, + 0.025533031672239304, + -0.0015540148597210646, + 0.00964548159390688, + 0.0015958144795149565, + -0.0026398745831102133, + -0.01713596284389496, + -0.01691303215920925, + 0.011540395207703114, + -0.0007788651855662465, + 0.004800447728484869, + -0.00458866311237216, + -0.024522410705685616, + -0.004053629003465176, + 0.01362108439207077, + 0.009422550909221172, + -0.023422617465257645, + -0.019231515005230904, + 0.007683688774704933, + 0.004819025285542011, + 0.0492231659591198, + -0.020048929378390312, + -0.006509585306048393, + 0.01550113596022129, + -0.00328265898860991, + -0.0002988668857142329, + -0.002556275576353073, + 0.021654032170772552, + -0.0003959347668569535, + 0.006899714935570955, + 0.0017295731231570244, + 0.016496894881129265, + -0.00029422249644994736, + 0.02810416929423809, + 0.0024318057112395763, + -0.00818156823515892, + -0.004083353094756603, + -0.0021494263783097267, + -0.0018549717497080564, + 0.0011573834344744682, + 0.019944895058870316, + 0.011079670861363411, + 0.007111499086022377, + -0.004009042866528034, + 0.0015512282261624932, + -0.011503240093588829, + -0.022575480863451958, + -0.01725485920906067, + -0.004462335724383593, + 0.0075239213183522224, + 0.0177750326693058, + 0.0076539646834135056, + -0.012216619215905666, + -0.0223525483161211, + -0.000644642161205411, + 0.007698550820350647, + 0.019276101142168045, + 0.012714498676359653, + -0.0033049522899091244, + 0.019944895058870316, + 0.039473649114370346, + 0.0015651615103706717, + -0.017433205619454384, + -0.015129584819078445, + -0.00599684426560998, + 0.017358895391225815, + -0.011845067143440247, + 0.003461004002019763, + -0.02441837638616562, + 0.012773946858942509, + 0.012127446942031384, + 0.007256404496729374, + -0.0014871356543153524, + 0.00994272343814373, + -0.01588754914700985, + 0.004815309774130583, + -0.010997929610311985, + 0.01369539462029934, + -0.004915628582239151, + 0.028772961348295212, + 0.00527231814339757, + -0.017864204943180084, + -0.009756946936249733, + -0.007683688774704933, + -0.008136982098221779, + -0.00022188601724337786, + 0.008954395540058613, + 0.015783514827489853, + -0.008545688353478909, + 9.683565440354869e-5, + -0.003942163195461035, + -0.017745308578014374, + 0.009266498498618603, + 0.03433137387037277, + -0.019127480685710907, + -0.007936343550682068, + 0.009325947612524033, + 0.0053429133258759975, + 0.007624240592122078, + -0.0019339264836162329, + -0.01469858456403017, + -0.020955514162778854, + 9.271375893149525e-5, + 0.006457568146288395, + 0.013152929954230785, + 0.011592412367463112, + -0.016853583976626396, + -0.011324895545840263, + 0.018191169947385788, + 0.01773044653236866, + 0.006461283657699823, + -0.0074830506928265095, + -0.01964765228331089, + -0.007460757624357939, + 0.009162464179098606, + 0.018934274092316628, + -0.010886464267969131, + 0.010589223355054855, + -0.0040201894007623196, + 0.02834196202456951, + -0.016065895557403564, + 0.003423848655074835, + 0.009132740087807178, + 0.028817547485232353, + 0.008218723349273205, + -0.013100911863148212, + -0.0018800514517351985, + -0.002604577224701643, + -0.013680532574653625, + 0.016898170113563538, + -0.013368429616093636, + 0.014839773997664452, + 0.028475720435380936, + -0.016645515337586403, + -0.01691303215920925, + 0.010291981510818005, + 0.0011945386650040746, + -0.02583027258515358, + -0.0027922107838094234, + 0.00919961929321289, + -0.0013951765140518546, + -0.018815377727150917, + 0.00271604279987514, + 0.019707100465893745, + -0.0036040511913597584, + -0.017314309254288673, + -0.00808496493846178, + 0.003265939187258482, + -0.010522343218326569, + 0.013041463680565357, + 0.005194292403757572, + 0.016273964196443558, + -0.0055807060562074184, + -0.006227205973118544, + 0.0068551283329725266, + 0.005989413242787123, + 0.011867361143231392, + 0.013331274501979351, + 0.009065860882401466, + -0.004046197980642319, + 0.017239997163414955, + -0.01878565363585949, + -0.010492619127035141, + -0.00954887829720974, + -0.004083353094756603, + 0.008850361220538616, + 0.009868412278592587, + -0.0004927703994326293, + 0.012543585151433945, + -0.01074527483433485, + 0.00022711096971761435, + 0.007772861048579216, + 0.0020156679674983025, + -0.0006957305013202131, + -0.003319814335554838, + 0.014535102061927319, + -0.015486273914575577, + -0.0395330972969532, + 0.0029965643770992756, + -0.012944860383868217, + 0.03025916963815689, + -0.027896100655198097, + -0.00014792401634622365, + 0.03272627294063568, + 0.0011917520314455032, + -0.0026621678844094276, + 0.006383257918059826, + -0.016883308067917824, + 0.01938013546168804, + 0.023155100643634796, + -0.006996318232268095, + -0.01430473942309618, + 0.0004904482048004866, + 0.011978826485574245, + 0.02285785973072052, + 0.02536954917013645, + -0.003401555586606264, + -0.0014341895002871752, + -0.02410627342760563, + 0.0009595322189852595, + 0.006450137123465538, + 0.0012521292082965374, + -0.016036171466112137, + -0.004651827272027731, + -0.006736231967806816, + -0.003016999689862132, + -0.0012883554445579648, + -0.001658978289924562, + 0.0007180236279964447, + -0.011049946770071983, + -0.009169895201921463, + -0.000203192321350798, + 0.0025507023092359304, + -0.010715550743043423, + -0.0008411001181229949, + -0.0001339908194495365, + 0.02015296369791031, + -0.019974619150161743, + -0.0017723015043884516, + -0.011421498842537403, + -0.012662481516599655, + -0.009348240680992603, + 0.008642291650176048, + 0.00715236971154809, + 0.011272878386080265, + -0.0014527670573443174, + 0.004807878751307726, + -0.029724134132266045, + 0.010945912450551987, + -0.010418308898806572, + -0.003583615878596902, + -0.005521257873624563, + -0.005305758211761713, + 0.015724066644906998, + -0.009296223521232605, + 0.009437412954866886, + 0.02312537655234337, + -0.012090291827917099, + -0.02587485872209072, + 0.002461529802531004, + -0.009140171110630035, + 0.007542499341070652, + 0.011421498842537403, + -0.024864237755537033, + 0.004581232089549303, + 0.009437412954866886, + 0.010827016085386276, + -0.03537172079086304, + -0.004009042866528034, + -0.0177750326693058, + 0.01301173958927393, + -0.0029891333542764187, + 0.01047032605856657, + 0.00197665486484766, + -0.02160944603383541, + 0.011503240093588829, + 0.006647059693932533, + 0.006498438771814108, + 0.008954395540058613, + 0.008790913037955761, + -0.012528723105788231, + -0.0027030385099351406, + 0.0005489676259458065, + -0.023259134963154793, + -0.008107258006930351, + -0.029991650953888893, + -0.009831257164478302, + 0.025146618485450745, + 0.008032947778701782, + -0.004146516788750887, + -0.004830171819776297, + 0.010908757336437702, + 0.00503080990165472, + -0.0032770857214927673, + -0.016526618972420692, + 0.010983067564666271, + 0.008411929942667484, + 0.019989481195807457, + 0.0033142410684376955, + -0.02642475627362728, + 0.011042515747249126, + 0.010537205263972282, + -0.01940985955297947, + -0.007780292071402073, + 0.004239404574036598, + -0.018057411536574364, + -0.00489333551377058, + 0.01593213528394699, + -0.005602999124675989, + -0.016808997839689255, + 0.0016868446255102754, + 0.009831257164478302, + 0.006007990799844265, + 0.006699076853692532, + 0.0016561916563659906, + -0.021817514672875404, + 0.03566896170377731, + 0.005168283823877573, + -0.04336751252412796, + -0.02120817080140114, + 0.004960214719176292, + -0.012565878219902515, + 0.004150232300162315, + -0.0024819651152938604, + 0.0063386717811226845, + 0.0047632926143705845, + -0.0012632757425308228, + -0.0027699177153408527, + -0.010916188359260559, + 0.010529774241149426, + -0.00861256755888462, + -0.011191136203706264, + -0.016838721930980682, + 0.0073381457477808, + 0.007471904158592224, + -0.014780325815081596, + 0.009392826817929745, + -0.005064249504357576, + 0.005324335768818855, + 0.0070000337436795235, + 0.01854785904288292, + -0.016615791246294975, + 0.01244698092341423, + -0.0126030333340168, + -0.0038009737618267536, + -0.0052463095635175705, + 0.03617427125573158, + -0.005298327188938856, + 0.010262257419526577, + 0.022872721776366234, + 0.02254575677216053, + 0.012907705269753933, + 0.004744715057313442, + 0.015664618462324142, + -0.01538223959505558, + -0.000506703625433147, + -0.0011583123123273253, + -0.016496894881129265, + 0.016853583976626396, + -0.022129617631435394, + 0.021713480353355408, + 0.011042515747249126, + 0.02355637587606907, + 0.018250618129968643, + 0.0039050080813467503, + 0.008776050992310047, + -0.012387532740831375, + -0.026395032182335854, + 0.009221912361681461, + -0.015181601978838444, + 0.000796049484051764, + 0.014839773997664452, + 0.004666689317673445, + 0.009296223521232605, + -0.01191937830299139, + 0.018815377727150917, + 0.0003276621282566339, + 0.007631671614944935, + 0.002212590305134654, + 0.006658206228166819, + -0.010121067985892296, + -0.0015874545788392425, + 0.029605237767100334, + -0.00477443914860487, + -0.004269128665328026, + -0.011778187938034534, + -0.008196430280804634, + -0.0023352024145424366, + 0.0098832743242383, + 0.004685266874730587, + -0.017834480851888657, + -0.024760203436017036, + -0.0024243746884167194, + -0.0030950254295021296, + -0.02163917012512684, + 0.0074087404645979404, + 0.03670930489897728, + -0.0021215600427240133, + -0.008122120052576065, + -0.007966067641973495, + -0.009303654544055462, + -0.021029824391007423, + -0.014631705358624458, + -0.02278354950249195, + 0.00013294583186507225, + 0.008731464855372906, + 0.006732516456395388, + -0.026082927361130714, + 0.00027123274048790336, + -0.014007498510181904, + 0.024745341390371323, + -0.017284583300352097, + 0.0040684910491108894, + -0.025919444859027863, + 0.006650775205343962, + 0.01379942987114191, + -0.014022360555827618, + -0.013197516091167927, + 0.014408773742616177, + 0.004480913281440735, + 0.023942790925502777, + -0.024314342066645622, + -0.005513826850801706, + 0.003938447684049606, + -0.015709204599261284, + 0.009021274745464325, + 0.007549930363893509, + 0.004254266619682312, + -0.021520273759961128, + 0.011250585317611694, + -0.026439618319272995, + 0.006888567935675383, + 0.004666689317673445, + -0.008835499174892902, + -0.010306843556463718, + 0.0039644562639296055, + -0.012142308987677097, + 0.01171873975545168, + 0.0004839460598304868, + -0.012788808904588223, + 0.00757222343236208, + -0.021832376718521118, + -0.015917273238301277, + 0.028000134974718094, + -0.021832376718521118, + 0.0069926027208566666, + 0.008909809403121471, + 0.006650775205343962, + 0.029649823904037476, + 0.015545722097158432, + 0.004376878961920738, + -0.005413508042693138, + -0.027227306738495827, + -0.013294119387865067, + 0.003225068561732769, + 0.003938447684049606, + -0.00670279236510396, + -0.021624308079481125, + -0.02074744552373886, + -0.007728274911642075, + -0.02199585922062397, + -0.018027687445282936, + -0.029813306406140327, + 0.0163185503333807, + 0.007360438816249371, + 0.0024559565354138613, + 0.01142892986536026, + 0.009400257840752602, + -0.003440568456426263, + -0.015902411192655563, + -0.0009539589518681169, + -0.024745341390371323, + 0.0019134911708533764, + -0.005547266453504562, + -0.004767008125782013, + 0.004332292824983597, + -0.005023378878831863, + 0.0016701248241588473, + 0.006286654621362686, + -0.004343439359217882, + 0.034034132957458496, + 0.005242594052106142, + -0.02273896336555481, + -0.009875843301415443, + 0.007267551030963659, + 0.0012688490096479654, + -0.019350411370396614, + 0.008233585394918919, + -0.013071187771856785, + -0.02516148053109646, + 0.011726170778274536, + 0.028520306572318077, + -0.00044980974053032696, + -0.005153421778231859, + 0.00808496493846178, + -0.023155100643634796, + 0.007267551030963659, + -0.005562128499150276, + 0.024953410029411316, + 0.01691303215920925, + 0.010916188359260559, + -0.00034554305602796376, + 0.023942790925502777, + 0.001332941697910428, + 0.008092395961284637, + -0.0038232668302953243, + 0.015872687101364136, + 0.008047809824347496, + 0.0036634996067732573, + -0.007839740253984928, + 0.007668826729059219, + -0.009192188270390034, + -0.019662514328956604, + -0.024879099801182747, + -0.004399172030389309, + 0.0007927984115667641, + -0.005302042700350285, + 0.0039050080813467503, + 0.003167478134855628, + 0.020806893706321716, + 0.01060408540070057, + -0.01808713562786579, + 0.0024485255125910044, + -0.01691303215920925, + 0.002403939375653863, + 0.0037080857437103987, + -0.0003731772303581238, + -0.00800322275608778, + 0.017284583300352097, + -0.010225102305412292, + 0.004477197770029306, + -0.025116894394159317, + 0.016779273748397827, + -0.016927894204854965, + 0.0054655252024531364, + -0.004659258294850588, + -0.015307929366827011, + 0.009823826141655445, + -0.019231515005230904, + -0.0151890330016613, + -0.005446947645395994, + 0.027227306738495827, + 0.005101404618471861, + 0.00020644340838771313, + 0.010529774241149426, + -0.008530826307833195, + -0.016155067831277847, + -0.03549061715602875, + 0.0005313188885338604, + 0.011555257253348827, + 0.00818156823515892, + -0.014535102061927319, + -0.02039075642824173, + 0.034539442509412766, + 0.02484937570989132, + -0.015724066644906998, + -0.02829737588763237, + 0.03364771977066994, + -0.03635261580348015, + 0.007601947523653507, + 0.029501203447580338, + -0.004558939021080732, + -0.012105153873562813, + 0.018503272905945778, + -0.0006204912788234651, + 0.011584981344640255, + -0.028758099302649498, + 0.010291981510818005, + -0.0077357059344649315, + 0.0019469307735562325, + 0.0057181804440915585, + 0.00705576641485095, + 0.002807073062285781, + 0.002000805689021945, + -0.012157171033322811, + 0.020450204610824585, + 0.02880268543958664, + 0.05745675042271614, + 0.027494823560118675, + 0.0016617649234831333, + 0.0115255331620574, + 0.017284583300352097, + -0.02544385939836502, + 0.013903464190661907, + -0.008976688608527184, + -0.014653998427093029, + -0.02070285938680172, + -0.011183705180883408, + 0.013732549734413624, + 0.015307929366827011, + 0.019989481195807457, + -0.017046790570020676, + -0.00010002867929870263, + -0.019127480685710907, + -0.00639811996370554, + -0.0026250125374644995, + -0.010827016085386276, + 0.0075796544551849365, + -0.003583615878596902, + 0.000971607631072402, + 0.026632824912667274, + 0.01176332589238882, + 0.008709171786904335, + -0.002938973717391491, + -0.009504292160272598, + -0.022129617631435394, + -0.0067399474792182446, + 0.023541513830423355, + 0.002205159282311797, + 0.0031544738449156284, + 0.026409894227981567, + -0.014349325560033321, + 0.01340558473020792, + 0.016764411702752113, + 0.010202809236943722, + 0.022129617631435394, + 0.011963964439928532, + 0.007130076643079519, + -0.026558514684438705, + 0.028356824070215225, + -0.020182687789201736, + -0.027405651286244392, + 0.006353533826768398, + 0.025503307580947876, + -0.032161515206098557, + 0.01183763612061739, + -0.002143853111192584, + -0.01600644551217556, + -0.015902411192655563, + -0.0023166246246546507, + -0.0197665486484766, + -0.018101997673511505, + 0.010834447108209133, + 0.031061720103025436, + -0.00023918639635667205, + -0.014527671039104462, + -0.0030281462240964174, + 0.002078831661492586, + 0.005339197814464569, + -0.004592378623783588, + 0.017552101984620094, + -0.005093973595649004, + 0.027762342244386673, + 0.00042612332617864013, + -0.022025583311915398, + -0.016155067831277847, + -0.025651928037405014, + -0.0030132841784507036, + -0.020851479843258858, + -0.006561602465808392, + -0.0065281628631055355, + -0.014943808317184448, + -0.015590308234095573, + -0.010477757081389427, + -0.002656594617292285, + -0.0173440333455801, + 0.030853651463985443, + 0.0088875163346529, + -0.011785618960857391, + -0.010529774241149426, + -0.0024949696380645037, + -0.010269688442349434, + -0.017760170623660088, + -0.001249342574737966, + -0.006312663201242685, + -0.007698550820350647, + -0.003215779783204198, + -0.018369514495134354, + 0.011243154294788837, + -0.002571137621998787, + 0.010366291739046574, + -0.00022978149354457855, + -0.02704896219074726, + 0.011265447363257408, + -0.012662481516599655, + 0.011287740431725979, + 0.01176332589238882, + 0.004971361719071865, + 0.008092395961284637, + 0.009103015996515751, + 0.020256998017430305, + 0.007018611300736666, + -0.01945444568991661, + 0.02997678890824318, + -0.00830046460032463, + -0.0018066701013594866, + 0.0171805489808321, + -0.012402394786477089, + 0.016719825565814972, + -0.010492619127035141, + 0.011986257508397102, + -0.010953343473374844, + 0.008211292326450348, + 0.0011425213888287544, + 0.027301616966724396, + 0.004986223764717579, + -0.006717654410749674, + -0.01694275625050068, + 0.02309565246105194, + -0.0008550332859158516, + -0.0027940685395151377, + -0.0036244867369532585, + -0.026796307414770126, + 0.006323809735476971, + 0.017433205619454384, + 0.0038492754101753235, + -0.016779273748397827, + 0.006167757790535688, + 0.00045398971997201443, + 0.015946997329592705, + 0.006970309652388096, + -0.0001528006250737235, + -0.025919444859027863, + -0.00954887829720974, + -0.010054188780486584, + -0.0016208941815420985, + -0.019855720922350883, + -0.01725485920906067, + -0.011302602477371693, + 0.01213487796485424, + -0.0094522750005126, + 0.0036820771638303995, + 0.0019302109722048044, + 0.000561043038032949, + 0.008330188691616058, + -0.02230796217918396, + -0.007026042323559523, + 0.00010264115553582087, + -0.018532996997237206, + -0.0016738403355702758, + 0.0002275754086440429, + -0.005602999124675989, + 0.02539927326142788, + -0.008337619714438915, + 0.0061194561421871185, + -0.008694309741258621, + 0.0012261205120012164, + 0.009392826817929745, + 0.014706015586853027, + 0.0009808964096009731, + 0.02137165330350399, + 0.002346348948776722, + 0.015352515503764153, + 0.011911947280168533, + -0.006290370132774115, + -0.00898411963135004, + -0.01569434255361557, + 0.014973532408475876, + -0.006026568356901407, + 0.0016775558469817042, + -0.022085031494498253, + 0.009013843722641468, + -0.0016181075479835272, + -0.011339757591485977, + -0.01145122293382883, + -0.023704996332526207, + 0.029263410717248917, + 0.01330898143351078, + 0.01600644551217556, + 0.015872687101364136, + 0.004384309984743595, + 0.010827016085386276, + -0.011391774751245975, + 0.001507570967078209, + -0.003931016661226749, + -0.0017444351688027382, + -0.009712360799312592, + -0.010299412533640862, + 0.015709204599261284, + 0.017121100798249245, + -0.012996877543628216, + 0.011733601801097393, + 0.0062978011555969715, + 0.018057411536574364, + 0.014921515248715878, + -0.006966594140976667, + 0.016021307557821274, + -0.009816395118832588, + -0.02297675609588623, + 0.01885996386408806, + 0.009214481338858604 + ], + "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99": [ + -0.011083086021244526, + -0.04667982831597328, + -0.01372737716883421, + 0.0018887791084125638, + -0.04676077514886856, + -0.025458045303821564, + 0.03356630355119705, + 0.006050839088857174, + 0.02900625206530094, + 0.047705166041851044, + -0.007851924747228622, + 0.022597894072532654, + 0.014084896072745323, + 0.031218821182847023, + 0.015744322910904884, + 0.0008305569062940776, + -0.003102994291111827, + 0.00830388255417347, + 0.0014385076938197017, + 0.004958045203238726, + 0.0355360321700573, + -0.048136886209249496, + -0.0005215223063714802, + 0.04033892601728439, + 0.01031408365815878, + -0.026415925472974777, + 0.016756169497966766, + -0.012823461554944515, + -0.04390062391757965, + -0.020344849675893784, + -0.006867061369121075, + 0.022638367488980293, + 0.017916418612003326, + 0.012668311595916748, + 0.017929911613464355, + -0.017336294054985046, + -0.018091805279254913, + 0.03812635689973831, + 0.004573544021695852, + 0.028871338814496994, + -0.0046544913202524185, + -0.006792859174311161, + 0.00584509689360857, + -0.015285619534552097, + -0.019589338451623917, + 0.022516945376992226, + -0.008486014790832996, + -0.009282000362873077, + 0.05585389956831932, + -0.016769660636782646, + 0.013066303916275501, + 0.040177032351493835, + 0.0007605708669871092, + 0.04495294392108917, + 0.03353932127356529, + -0.015299111604690552, + 0.008627673611044884, + 0.07614478468894958, + 0.013774596154689789, + -0.07371634989976883, + 0.006529779173433781, + -0.030436327680945396, + 0.014961829409003258, + 0.018118789419531822, + 0.024918394163250923, + 0.024270812049508095, + -0.02220664545893669, + -0.016864100471138954, + -0.0028416006825864315, + 0.031002961099147797, + -0.003204178996384144, + -0.018550509586930275, + -0.030355378985404968, + 0.014692003838717937, + 0.0642724558711052, + 0.015150707215070724, + 0.009814905934035778, + 0.0017142357537522912, + 0.014638038352131844, + -0.040770646184682846, + -0.0108672259375453, + -0.007298782467842102, + 0.032702863216400146, + 0.007750740274786949, + 0.0065904902294278145, + 0.002236179541796446, + -0.03890885040163994, + -0.037397827953100204, + -0.034510694444179535, + -0.02564692310988903, + 0.022962158545851707, + 0.022570911794900894, + 0.0021063259337097406, + 0.020102007314562798, + -0.012924646027386189, + -0.011305692605674267, + 0.013046067208051682, + 0.002819677349179983, + -0.0182671919465065, + 0.0054572224617004395, + -0.016256991773843765, + 0.018145771697163582, + -0.0116497203707695, + 0.0032497120555490255, + 0.0286015123128891, + -0.0026307995431125164, + -0.01430075615644455, + 0.024176374077796936, + -0.0054740868508815765, + 0.01403093058615923, + -0.0024570992682129145, + -0.043145112693309784, + 0.015771305188536644, + 0.0009098181617446244, + -0.002887133741751313, + -0.021882856264710426, + -0.010644619353115559, + -0.0065635074861347675, + -0.02169397845864296, + -0.03030141443014145, + 0.03696610778570175, + -0.003521224018186331, + -0.0056258635595440865, + -0.041283316910266876, + 0.0341329388320446, + 0.04951299726963043, + -0.0028230503667145967, + 0.011562027037143707, + 0.026564329862594604, + 0.025565974414348602, + 0.001986590912565589, + -0.0284666009247303, + 0.001735315890982747, + -0.025808818638324738, + -0.01198700163513422, + 0.017821980640292168, + 0.00599350081756711, + 0.06632313132286072, + -0.022665349766612053, + 0.0019090160494670272, + -0.03364725038409233, + 0.010158933699131012, + -0.005376275163143873, + -0.0038888612762093544, + 0.012162388302385807, + -0.01403093058615923, + -0.04438630864024162, + 0.028790390118956566, + -0.05302073061466217, + -0.0016383472830057144, + -0.020978940650820732, + 0.003936080727726221, + -0.035077325999736786, + 0.026523856446146965, + 0.04732741042971611, + 0.0478670597076416, + 0.013659920543432236, + 0.031191838905215263, + 0.012398486025631428, + 0.022031258791685104, + 0.006023856345564127, + -0.06718657165765762, + 0.02916814759373665, + -0.016243500635027885, + 0.03421388566493988, + -0.008209443651139736, + 0.03523922339081764, + 0.03370121493935585, + -0.03882790356874466, + 0.00025865313364192843, + 0.031164856627583504, + -0.03424086794257164, + 0.027657123282551765, + -0.009976801462471485, + 0.029950641095638275, + -0.03486146777868271, + 8.142198203131557e-5, + -0.004317209590226412, + 0.020776569843292236, + 0.005888943560421467, + -0.013221453875303268, + -0.005615745205432177, + -0.001269023516215384, + 0.0011189329670742154, + -0.049297135323286057, + 0.02849358320236206, + 0.009005429223179817, + 0.0027741442900151014, + -0.005055856890976429, + 0.030436327680945396, + 0.007474169135093689, + -0.022085225209593773, + 0.0525350421667099, + 0.011089831590652466, + -0.009976801462471485, + -0.01834814064204693, + -0.015582428313791752, + -0.009929581545293331, + -0.020075025036931038, + 0.04052780568599701, + 0.006040720269083977, + -0.06583744287490845, + -0.0075348797254264355, + 0.0320013165473938, + -0.049998681992292404, + 0.01652681827545166, + -0.032190192490816116, + -0.016162553802132607, + 0.005386393517255783, + -0.030031587928533554, + 0.07155774533748627, + -0.05817439779639244, + 0.026375452056527138, + -0.007109904196113348, + 0.0076765380799770355, + 0.00625995360314846, + 0.039583414793014526, + 0.01649983413517475, + -0.002548165386542678, + 0.0033154820557683706, + 0.024985849857330322, + -5.2753010095329955e-5, + 0.025579465553164482, + -0.026618294417858124, + -0.045330699533224106, + -0.008668147027492523, + -0.02387956529855728, + 0.04444027692079544, + -0.004839996807277203, + -0.028763407841324806, + 0.043630797415971756, + -0.01590621843934059, + 0.02854754775762558, + -0.03696610778570175, + -0.005605626851320267, + 0.022665349766612053, + 0.03229812532663345, + -0.014152352698147297, + -0.02560644969344139, + -0.036210592836141586, + 0.032756827771663666, + 0.004404902923852205, + -0.044845014810562134, + -0.04837973043322563, + -0.04344192147254944, + -0.005888943560421467, + -0.0030675798188894987, + 0.03693912550806999, + 0.029384007677435875, + 0.03418690338730812, + -0.010914444923400879, + 0.006897416897118092, + -0.014408687129616737, + 0.0012310792226344347, + -0.037532739341259, + -0.00029322452610358596, + 0.027792036533355713, + 0.010833497159183025, + 0.017376767471432686, + 0.011339420452713966, + -0.010239881463348866, + -0.03437577933073044, + -0.04033892601728439, + -0.011589009314775467, + 0.02445968985557556, + -0.06680881977081299, + 0.012432213872671127, + -0.031056925654411316, + 0.006499424111098051, + 0.015218163840472698, + 0.03262191265821457, + -0.04171503707766533, + -0.02564692310988903, + 0.01998058520257473, + -0.04012306407094002, + -0.025269167497754097, + 0.017565645277500153, + 0.030517274513840675, + 0.014624547213315964, + 0.010111713781952858, + -0.01934649422764778, + 0.029977623373270035, + 0.013673411682248116, + 0.01776801608502865, + 0.024931885302066803, + 0.02564692310988903, + 0.0018145771464332938, + -0.009416913613677025, + -0.009045902639627457, + -0.02226061187684536, + 0.00597663689404726, + -0.002045615343376994, + -0.02518821880221367, + 0.026456398889422417, + 0.005204261280596256, + 0.027872983366250992, + -0.008364593610167503, + -0.017916418612003326, + 0.019063178449869156, + 0.02165350317955017, + 0.014692003838717937, + -0.012337774969637394, + -0.014678512699902058, + -0.015326093882322311, + 0.055071402341127396, + 0.002121503697708249, + 0.023771634325385094, + 0.03332345932722092, + -0.030625205487012863, + 0.031704507768154144, + 0.04101349040865898, + -0.018968738615512848, + -0.04657189920544624, + -0.06432642042636871, + 0.005524679087102413, + 0.026483381167054176, + -0.06276143342256546, + -0.022597894072532654, + -0.005194142460823059, + 0.011103322729468346, + -0.025444554165005684, + 0.02962685003876686, + -0.061358340084552765, + 0.0042160251177847385, + 0.05242711305618286, + -0.016850607469677925, + 0.02460809424519539, + -0.0006695047486573458, + 0.0012892604572698474, + -0.008168970234692097, + -0.025970714166760445, + -0.021896347403526306, + -0.015838762745261192, + -0.006404985208064318, + -0.028439616784453392, + -0.03194735199213028, + -0.03127278760075569, + -0.02462158538401127, + 0.0019596084021031857, + 0.008769331499934196, + -0.02679368108510971, + 0.03205528110265732, + 0.017929911613464355, + 0.0033610151149332523, + -0.019629811868071556, + -0.012371503747999668, + -0.0003151478595100343, + -0.0007854454452171922, + 0.01457058172672987, + -0.002288458403199911, + 0.0006172260618768632, + -0.0055921352468431, + 0.05304771289229393, + -0.0031940604094415903, + 0.02789996564388275, + -0.006657946389168501, + -0.03256794810295105, + -0.024095425382256508, + 0.02509378083050251, + 0.03545508161187172, + -0.04978282377123833, + -0.03421388566493988, + -0.027738070115447044, + -0.04168805480003357, + 0.019171107560396194, + 0.03232510760426521, + 0.025323132053017616, + -0.01891477406024933, + -0.024662058800458908, + 0.01479993388056755, + -0.014395195059478283, + 0.01598716713488102, + -0.02744126319885254, + -0.031002961099147797, + 0.006310545839369297, + -0.029195129871368408, + 0.05439683794975281, + 0.014894372783601284, + 0.0024554128758609295, + 0.009430404752492905, + -0.012789732776582241, + 0.016796642914414406, + -0.049351099878549576, + 0.004175551235675812, + 0.01760612055659294, + -0.006634336896240711, + 0.02448667213320732, + -0.04727344214916229, + -0.009646264836192131, + -0.02462158538401127, + -0.016445869579911232, + 0.006536525208503008, + -0.022004276514053345, + -0.01775452494621277, + -0.0019376850686967373, + -0.025916747748851776, + 0.014449160546064377, + -0.03990720584988594, + 0.03826126828789711, + 0.020978940650820732, + -0.04095952585339546, + -0.015285619534552097, + -0.005396511871367693, + 0.012729022651910782, + -0.02103290520608425, + -0.020655149593949318, + 0.011224744841456413, + 0.017902927473187447, + 0.002398075070232153, + 0.028763407841324806, + 0.006020483560860157, + 0.00909986812621355, + -0.007737248670309782, + 0.04125633463263512, + 0.018496545031666756, + -0.0187663696706295, + -0.0014351349091157317, + 0.04387364163994789, + -0.017552154138684273, + -0.0021518589928746223, + 0.029437972232699394, + 0.00881655141711235, + 0.022017767652869225, + 0.05080815777182579, + -0.008088022470474243, + 0.0027741442900151014, + 0.0008996996912173927, + 0.018968738615512848, + 0.007271799724549055, + -0.02004804089665413, + 0.04276735708117485, + 0.02737380564212799, + -0.016864100471138954, + 0.024796972051262856, + -0.0028348551131784916, + 0.0067321485839784145, + 0.00883004255592823, + 0.0015202985377982259, + 0.015461006201803684, + -0.019009213894605637, + 0.01822671853005886, + 0.01430075615644455, + 0.03156959265470505, + 0.009639519266784191, + -0.03348535671830177, + -0.015177689492702484, + -0.013599209487438202, + 0.007136886939406395, + 0.03726291283965111, + 0.02347482740879059, + 0.007339256349951029, + 0.06502796709537506, + -0.015285619534552097, + 0.024297794327139854, + 0.005659591872245073, + 0.012931391596794128, + 0.015663376078009605, + 0.0020051414612680674, + 0.023555774241685867, + -0.009949819184839725, + 0.010239881463348866, + 0.0011737413005903363, + 0.04751628637313843, + -0.010111713781952858, + -0.00859394483268261, + 0.0016248560277745128, + -0.024810463190078735, + 0.0033593287225812674, + 0.003175509860739112, + 0.03928660601377487, + -0.015015793964266777, + -0.006030601914972067, + -0.0211678184568882, + 0.02004804089665413, + 0.0004119056393392384, + 0.031083907932043076, + -0.012978611513972282, + -0.0017909674206748605, + 0.004452122375369072, + -0.0034605131950229406, + 0.0016948420088738203, + -0.020358340814709663, + -0.01945442520081997, + -0.003619035705924034, + 0.03888186812400818, + -0.01655380055308342, + -0.0274007897824049, + -0.005001891870051622, + -0.01707996055483818, + 0.003824777901172638, + 0.0012816715752705932, + 0.01998058520257473, + 0.00036447535967454314, + -0.008115004748106003, + -0.015609410591423512, + 0.007494405843317509, + 0.03259493038058281, + -0.01112356036901474, + -0.01772754080593586, + -0.019629811868071556, + 0.03324251249432564, + -0.00858045369386673, + 0.032810792326927185, + 0.008418558165431023, + -0.04676077514886856, + 0.052723921835422516, + -0.007372984196990728, + 0.014462651684880257, + -0.0031215448398143053, + -0.0016990579897537827, + -0.010266863740980625, + 0.014894372783601284, + -0.030112536624073982, + -0.002716806484386325, + 0.024850936606526375, + 0.0028348551131784916, + -0.030139518901705742, + 0.008168970234692097, + 0.04608621075749397, + -0.003791049588471651, + -0.013417077250778675, + -0.006610726937651634, + -0.025849292054772377, + 0.009706975892186165, + -0.0041688052006065845, + 0.0010919504566118121, + -0.017309311777353287, + 0.004978282377123833, + -0.00285677844658494, + -0.00831062812358141, + -0.016445869579911232, + 0.004684846848249435, + -0.02110036090016365, + 0.003949572332203388, + -0.0009089749655686319, + -8.437319775111973e-5, + 0.0027016287203878164, + -0.004705083556473255, + -0.012931391596794128, + 0.006698420271277428, + -0.0019258802058175206, + 0.03442974388599396, + 0.009653010405600071, + 0.023569265380501747, + 0.026105625554919243, + 0.010529943741858006, + 0.010516452603042126, + -0.0008343513472937047, + -0.020371831953525543, + 0.010158933699131012, + -0.006722030229866505, + 0.0017260406166315079, + -0.026011187583208084, + -0.003979927394539118, + -0.014692003838717937, + -0.004266617354005575, + -0.008688383735716343, + -0.002716806484386325, + -0.026550838723778725, + -0.023083578795194626, + 0.03710101917386055, + 0.021491607651114464, + 0.00019256693485658616, + 0.022800263017416, + -0.00856696255505085, + 0.007494405843317509, + -0.047165513038635254, + 0.0007529820431955159, + 0.017268838360905647, + 0.020263902842998505, + 0.025377096608281136, + 0.014880881644785404, + 0.03208226338028908, + 0.02742777206003666, + -0.01590621843934059, + 0.037910494953393936, + 0.01879335194826126, + 0.019535373896360397, + -0.02346133626997471, + 0.006539897993206978, + -0.023245474323630333, + -0.006152023561298847, + 0.026051660999655724, + -0.014745968393981457, + -0.0015776364598423243, + 0.020304376259446144, + -0.00966650154441595, + -0.008209443651139736, + -0.02118130959570408, + 0.0332694947719574, + 0.028358669951558113, + 0.025404078885912895, + 0.010098222643136978, + 0.018429087474942207, + 0.00802056584507227, + 0.03367423266172409, + 0.0011045985156670213, + -0.01828068308532238, + 0.009551825933158398, + 0.026119116693735123, + 0.020749587565660477, + -0.0067085386253893375, + -0.012337774969637394, + -0.01716090738773346, + -0.03380914777517319, + 0.022651858627796173, + -0.013376603834331036, + 0.010111713781952858, + -0.025269167497754097, + -0.003271635388955474, + 0.0065702530555427074, + -0.02862849459052086, + 0.006789486389607191, + 0.010914444923400879, + 0.0038146593142300844, + 0.0005337487673386931, + -0.00278594926930964, + 0.026510365307331085, + 0.006452204659581184, + 0.01707996055483818, + 0.019697267562150955, + -0.009706975892186165, + 0.017025994136929512, + -0.01652681827545166, + -0.007750740274786949, + 0.01875287853181362, + -0.028088843449950218, + -0.006779368035495281, + -0.006873806938529015, + 0.009545080363750458, + -0.006351019721478224, + -0.031650543212890625, + -0.0043374462984502316, + 0.02789996564388275, + -0.006607354152947664, + -0.008229680359363556, + 0.004475731868296862, + 0.0114338593557477, + 0.0005729577969759703, + 0.01664823852479458, + 0.010388284921646118, + 0.026132607832551003, + 0.007959854789078236, + 0.0176331028342247, + -0.01316074375063181, + 0.023515300825238228, + -0.018105296418070793, + -0.0014806679682806134, + 0.024769989773631096, + 0.033944059163331985, + -0.012816715985536575, + 0.037451792508363724, + 0.0033272868022322655, + 0.006850197445601225, + 0.01345755159854889, + -0.020358340814709663, + 0.0005008637672290206, + -0.007541625294834375, + 0.021478116512298584, + -0.0002291409473400563, + 0.02911418117582798, + -0.01400394830852747, + -0.0006454734248109162, + 0.013309147208929062, + 0.028331687673926353, + -0.009862125851213932, + 0.019710758700966835, + 0.00855347141623497, + -0.00045996831613592803, + 0.03898979723453522, + -0.017525171861052513, + -0.032244157046079636, + -0.006519660819321871, + -0.030058570206165314, + 0.013828561641275883, + -0.020385323092341423, + 0.013113523833453655, + -0.028223756700754166, + -0.004141822922974825, + -0.010077985934913158, + -0.04055478796362877, + -0.018010858446359634, + -0.010266863740980625, + 0.006239716894924641, + 0.0019090160494670272, + -0.019791707396507263, + -0.008371339179575443, + 0.011784632690250874, + -0.05345245078206062, + -0.021518591791391373, + -0.03469957038760185, + 0.025309640914201736, + -0.008978446945548058, + 0.010165679268538952, + 0.012074694968760014, + -0.004205906298011541, + -0.01875287853181362, + -0.009450641460716724, + 0.0170664694160223, + -0.012317538261413574, + -0.003480750136077404, + 0.007743994705379009, + 0.022732805460691452, + -0.02444619871675968, + 0.047192495316267014, + -0.005484205204993486, + -0.011494570411741734, + -0.007116650231182575, + 0.013349621556699276, + 0.009868871420621872, + 0.0160006582736969, + -0.04835274815559387, + -0.03178545460104942, + -0.000976431358139962, + 0.016729187220335007, + -0.023299440741539, + -0.030112536624073982, + 0.00557189853861928, + -0.03925962373614311, + 0.020425796508789062, + -0.02053372748196125, + 0.01772754080593586, + -0.004583662375807762, + -0.037289898842573166, + 0.010017274878919125, + 0.027184927836060524, + -0.004151941277086735, + 0.002360973972827196, + 0.00829039141535759, + 0.00825666356831789, + 0.040284961462020874, + -0.03156959265470505, + 0.023704178631305695, + 0.019036196172237396, + -0.0003467680362518877, + -0.013632938265800476, + 0.00044099619844928384, + 0.012277064844965935, + 0.010138696990907192, + -0.01605462282896042, + 0.012756004929542542, + 0.007460677530616522, + 0.011319183744490147, + -0.028358669951558113, + 0.0028028134256601334, + 0.016283974051475525, + 0.006678183563053608, + -0.01057041808962822, + -0.040743663907051086, + 0.04160710796713829, + 0.021505100652575493, + -0.04851464182138443, + 0.02976176328957081, + -0.007393221370875835, + 0.01766008511185646, + -0.0001468230620957911, + 0.02737380564212799, + 0.00967324711382389, + -0.0028247367590665817, + -0.0009106613579206169, + -0.003959690686315298, + 0.03022046573460102, + -0.04238960146903992, + -0.007953109219670296, + 0.012081440538167953, + -0.012344520539045334, + 0.04322605952620506, + -0.004762421827763319, + 0.030652187764644623, + 0.019656794145703316, + 0.03181243687868118, + 0.04039289057254791, + 0.01608160510659218, + 0.009052648209035397, + 0.009841888211667538, + -0.042470548301935196, + -0.009679993614554405, + -0.009760940447449684, + 0.01602764055132866, + 0.025363605469465256, + -0.02165350317955017, + -0.020155971869826317, + 0.011872326023876667, + -0.018091805279254913, + 0.011872326023876667, + -0.004307091236114502, + 0.032702863216400146, + 0.013369858264923096, + -0.00883678812533617, + 0.006934517528861761, + -0.009558571502566338, + -0.031191838905215263, + -0.02795393206179142, + -0.011103322729468346, + 0.04060875251889229, + -0.012985357083380222, + -0.009194307029247284, + 0.036885157227516174, + -0.007292036898434162, + -0.002850032877177, + 0.008168970234692097, + -0.016796642914414406, + 0.01879335194826126, + 0.0321362279355526, + 0.0011880758684128523, + -0.026996050029993057, + 0.016283974051475525, + -0.009052648209035397, + 0.004226143471896648, + -0.0020354967564344406, + 0.029410989955067635, + 0.03151562809944153, + 0.015838762745261192, + 0.02331293188035488, + 0.007332510314881802, + -0.0008039959357120097, + 0.0043441918678581715, + 0.00908637698739767, + 0.040230996906757355, + -0.03955643251538277, + 0.023812107741832733, + -0.009423659183084965, + 0.0021434270311146975, + 0.030382361263036728, + 0.03710101917386055, + -0.0025700887199491262, + -0.006742266938090324, + -0.0029461581725627184, + 0.022449489682912827, + 0.010509707033634186, + 0.0007243130821734667, + -0.013315892778337002, + -0.028115827590227127, + 0.015245146118104458, + -0.024891411885619164, + 0.03229812532663345, + 0.006347646936774254, + 0.025282658636569977, + -0.04012306407094002, + 0.031731490045785904, + 0.0008389889262616634, + -0.04757025092840195, + 0.031191838905215263, + -0.018631456419825554, + 0.00883004255592823, + 0.012304047122597694, + -0.009302237071096897, + -0.006796231959015131, + 0.01589272730052471, + 0.015609410591423512, + 0.0187663696706295, + 0.0013373231049627066, + -0.0006421005818992853, + 0.004178924020379782, + -0.05293978005647659, + 0.0034234123304486275, + -0.01949489861726761, + 0.0181997362524271, + 0.009268509224057198, + 0.003023733152076602, + 0.00832411926239729, + -0.0016113647725433111, + 0.016230009496212006, + 0.003979927394539118, + -0.03022046573460102, + 0.014718986116349697, + 0.0015422218712046742, + 0.013073050417006016, + 0.012283810414373875, + 0.04203882813453674, + 0.0029006251133978367, + -0.0017555527156218886, + -0.01875287853181362, + -0.013808324933052063, + -0.003780931234359741, + -0.043603815138339996, + -0.0070761763490736485, + 0.021572556346654892, + -0.008195952512323856, + 0.017295820638537407, + -0.018415596336126328, + 0.008654655888676643, + 0.010341065935790539, + -0.014368212781846523, + -0.024756498634815216, + 0.019548865035176277, + 0.00029448934947140515, + 0.01658078283071518, + 0.018941756337881088, + 0.009963310323655605, + 0.004307091236114502, + 2.00392933038529e-5, + -0.021855873987078667, + -0.023744652047753334, + -0.008418558165431023, + 0.022948667407035828, + -0.006846824660897255, + -0.024931885302066803, + -0.007157123647630215, + 0.01401743944734335, + 0.0010169051820412278, + 0.0037101018242537975, + -0.022422507405281067, + -0.04789404198527336, + 0.011265218257904053, + -0.019211582839488983, + 0.01482691615819931, + -0.007015465293079615, + -0.006668065208941698, + -0.006512915249913931, + 0.009362948127090931, + 0.015582428313791752, + -0.01374086830765009, + -0.004563425201922655, + 0.031164856627583504, + -0.0284666009247303, + 0.03140769898891449, + 0.0019444306381046772, + -0.020884500816464424, + -0.026038169860839844, + -0.009740703739225864, + -0.0035279695875942707, + 0.0376676544547081, + -0.0160006582736969, + -0.022732805460691452, + -0.027522210031747818, + -0.015663376078009605, + -0.004418394062668085, + -0.030544256791472435, + 0.013949982821941376, + 0.011467588134109974, + -0.009228034876286983, + -0.0008533234358765185, + -0.03726291283965111, + -0.028412634506821632, + -0.02169397845864296, + -0.021882856264710426, + -0.007474169135093689, + 0.0014064658898860216, + 0.004394784569740295, + -0.02508028969168663, + -0.0067591313272714615, + 0.02174794301390648, + -0.005001891870051622, + -0.029815727844834328, + 0.01589272730052471, + 0.01605462282896042, + 0.01598716713488102, + 0.02002105861902237, + -0.024783480912446976, + 0.02514774538576603, + 0.021316220983862877, + -0.010543434880673885, + 0.04039289057254791, + 0.01088071707636118, + 0.005902434699237347, + 0.0010034139268100262, + -0.009187561459839344, + -0.014907863922417164, + 0.00859394483268261, + -0.014638038352131844, + 0.00854672584682703, + 0.003237907076254487, + 0.010138696990907192, + 0.021532082930207253, + 0.04171503707766533, + 0.013302401639521122, + -0.013909509405493736, + -0.00542349461466074, + -0.013315892778337002, + -0.022085225209593773, + -0.004226143471896648, + -0.003925962373614311, + -0.012270319275557995, + 0.0062734452076256275, + -0.017835471779108047, + -0.0389358326792717, + -0.006310545839369297, + 0.009295491501688957, + -0.004411648493260145, + 0.012121914885938168, + -0.0352662056684494, + -0.01655380055308342, + -0.03205528110265732, + 0.008985192514955997, + 0.019238565117120743, + -0.02445968985557556, + -0.00017201380978804082, + -0.0005514560616575181, + -0.00013354259135667235, + 0.01059065479785204, + 0.008998683653771877, + 0.017484698444604874, + 0.008728858083486557, + 0.007926126942038536, + -0.0051637873984873295, + -0.01999407634139061, + -0.00829039141535759, + -0.009160579182207584, + -0.010428759269416332, + -0.03240605443716049, + 0.0006142748170532286, + 0.004910825751721859, + 0.026348469778895378, + 0.026119116693735123, + 0.0014258596347644925, + -0.010995392687618732, + -0.002123190090060234, + -0.010624382644891739, + 0.04058177024126053, + -0.030598223209381104, + -0.001056535867974162, + -0.010024020448327065, + 0.003106367075815797, + 0.03297268599271774, + -0.0029529037419706583, + 0.01451661717146635, + 0.018564000725746155, + 0.02159953862428665, + -0.0007289507193490863, + -0.04398157075047493, + -0.04268641024827957, + -0.010044258087873459, + 0.002054047305136919, + -0.0160681139677763, + 0.010968410409986973, + -0.001740375068038702, + 0.00020458261133171618, + 0.0447370819747448, + -0.017552154138684273, + 0.01591970957815647, + -0.026523856446146965, + 0.007238071411848068, + -0.009187561459839344, + 0.004408275708556175, + -0.007858670316636562, + 0.02566041424870491, + -0.08472523838281631, + -0.028979267925024033, + 0.011562027037143707, + -0.005258226301521063, + 0.01601414941251278, + 0.014665020629763603, + 0.012324283830821514, + 0.007184106390923262, + 0.010739058256149292, + 0.0028399142902344465, + 0.010448995977640152, + -0.01345080602914095, + 0.01589272730052471, + 0.019805198535323143, + 0.013815070502460003, + 0.02172096073627472, + 0.008688383735716343, + 0.0014275460271164775, + 0.0021484862081706524, + -0.03154261037707329, + 0.004452122375369072, + -0.014624547213315964, + 0.01882033422589302, + -0.010516452603042126, + -0.03785653039813042, + 0.03143468126654625, + 0.02957288548350334, + 0.01481342501938343, + -0.012067949399352074, + -0.004590407945215702, + 0.023555774241685867, + -0.002890506759285927, + 0.002468904247507453, + -0.011622737161815166, + -0.015771305188536644, + 0.006381375249475241, + 0.04384665936231613, + -0.01597367599606514, + 0.03594077005982399, + 0.03955643251538277, + 0.005467341281473637, + 0.03747877478599548, + 0.013032576069235802, + -0.00584846967831254, + -0.003344150958582759, + -0.010705330409109592, + 0.0036291542928665876, + -0.03380914777517319, + 0.01508325058966875, + 0.00802056584507227, + -0.006330783013254404, + 0.009214543737471104, + 0.008391575887799263, + -0.023016123101115227, + -0.013936491683125496, + 0.0061081768944859505, + 0.001497532008215785, + 0.008668147027492523, + -0.0015127097722142935, + 0.010253372602164745, + 0.0234343521296978, + 0.006482559721916914, + -0.04187693074345589, + -0.001203253515996039, + -0.023744652047753334, + 0.005086212418973446, + -0.010104968212544918, + 0.002128249267116189, + 0.00568994740024209, + 0.008890753611922264, + -0.010327574796974659, + 0.00909312255680561, + 0.013949982821941376, + 0.020884500816464424, + 0.025269167497754097, + 0.012270319275557995, + 0.014975320547819138, + 0.012344520539045334, + -0.007602335885167122, + 0.005248107947409153, + -0.012870680540800095, + -0.011298947036266327, + 0.027292858809232712, + -0.019724251702427864, + -0.014678512699902058, + 0.005605626851320267, + -0.029276076704263687, + 0.014867390505969524, + -0.023528791964054108, + 0.006853570230305195, + -0.001024494064040482, + -0.0019225073046982288, + 0.00596989132463932, + 0.0119330370798707, + -0.02217966318130493, + 0.044251397252082825, + -0.006155396346002817, + -0.02164001204073429, + -0.0029478445649147034, + -0.00883004255592823, + 0.009295491501688957, + -0.03594077005982399, + -0.0020068278536200523, + -0.015042777173221111, + -0.0013272046344354749, + -0.0067119114100933075, + 0.0040305196307599545, + 0.012283810414373875, + -0.02456762082874775, + -0.0008735603769309819, + -0.0027016287203878164, + 0.021410660818219185, + -0.0037404573522508144, + -0.04168805480003357, + -0.012695293873548508, + 0.0009460760047659278, + 0.004893961828202009, + -0.003022046759724617, + -0.023839091882109642, + 0.00910661369562149, + 0.001339852693490684, + 0.010435504838824272, + -0.007231325842440128, + -0.020142480731010437, + -0.009808160364627838, + 0.019805198535323143, + -0.009491114877164364, + -0.01648634299635887, + -0.013390094973146915, + 0.005072721280157566, + -0.012992102652788162, + 0.02852056547999382, + -0.020763078704476357, + 0.011467588134109974, + 0.017444225028157234, + -0.00293098040856421, + -0.012216353788971901, + -0.011879071593284607, + 0.02900625206530094, + -0.016095096245408058, + -0.004404902923852205, + 0.007602335885167122, + -0.0012344521237537265, + -0.005055856890976429, + -0.002020319225266576, + 0.010381539352238178, + -0.009862125851213932, + 0.0077035208232700825, + 0.017794998362660408, + -0.003942826297134161, + -0.030112536624073982, + 0.02389305643737316, + 0.009639519266784191, + 0.048784468322992325, + 0.018510036170482635, + -0.009302237071096897, + -0.019751233980059624, + -0.013828561641275883, + -0.004246380180120468, + -0.006496051326394081, + -0.021302729845046997, + 0.0010489469859749079, + 0.020344849675893784, + -0.012675057165324688, + 0.018685422837734222, + -0.011521552689373493, + -0.014718986116349697, + -0.006071075797080994, + -0.0051671601831912994, + -0.011615991592407227, + -0.004398157354444265, + -0.002438548719510436, + -0.017808489501476288, + -0.00011056525545427576, + -0.023218492045998573, + 0.004725320730358362, + -0.020695623010396957, + 0.014152352698147297, + 0.003477377351373434, + -0.04182296618819237, + 0.0028938795439898968, + -0.01830766722559929, + -0.014341230504214764, + 0.002890506759285927, + 0.01892826519906521, + -0.0111842704936862, + 0.009585553780198097, + 0.0018617965979501605, + -0.016688713803887367, + 0.006661319173872471, + 0.004357683472335339, + -0.010051003657281399, + -0.004944554064422846, + 0.022017767652869225, + -0.016391905024647713, + 0.010759295895695686, + 0.016445869579911232, + 0.005507814697921276, + 0.01712043397128582, + 0.031704507768154144, + -0.011346166022121906, + -0.01655380055308342, + 0.0076967752538621426, + 0.03488845005631447, + -0.009545080363750458, + 3.135668521281332e-5, + -0.015811780467629433, + -0.0006648671114817262, + 0.020277393981814384, + -0.01427377387881279, + -0.023231983184814453, + -0.018442578613758087, + -0.007872161455452442, + -0.012007239274680614, + 0.0040237740613520145, + -0.017457716166973114, + -0.004246380180120468, + -0.0301665011793375, + 0.01397696603089571, + 0.0028736426029354334, + -0.020169463008642197, + -0.03804541006684303, + -0.0016155807534232736, + 0.008722112514078617, + 0.015258637256920338, + -0.013201217167079449, + 0.01144060492515564, + -0.020223427563905716, + 0.002057420089840889, + 0.014381703920662403, + -0.026024678722023964, + 0.014152352698147297, + 0.009288745932281017, + 0.018483053892850876, + -0.008701875805854797, + -0.03529318794608116, + 0.013666666112840176, + -0.003983300179243088, + 0.026645276695489883, + -0.03834221512079239, + -0.030679170042276382, + -0.015852253884077072, + 0.01944093406200409, + 0.017363276332616806, + 0.02741428092122078, + 0.022611385211348534, + 0.002642604522407055, + -0.023785125464200974, + -0.009025665931403637, + 0.008094768039882183, + 0.02169397845864296, + 0.006995228584855795, + -0.003666255157440901, + 0.0032142973504960537, + -0.030598223209381104, + -0.012040967121720314, + 0.024297794327139854, + 0.0036358998622745275, + 0.007899144664406776, + -0.015474497340619564, + -0.0005974107189103961, + -0.023690687492489815, + 0.01538005843758583, + -0.03030141443014145, + 0.01942744292318821, + -0.004576916806399822, + -0.002890506759285927, + 0.013383349403738976, + 0.03019348345696926, + -0.007717011962085962, + -0.03432181477546692, + -0.0043610562570393085, + -0.03634550794959068, + -0.01992662064731121, + 0.010361302644014359, + -0.020736096426844597, + 0.009929581545293331, + -0.02628101222217083, + 0.0004515362670645118, + -0.015771305188536644, + -0.03664231672883034, + -0.0018685422837734222, + -0.0009013861417770386, + 0.0057945046573877335, + -0.0016273856163024902, + -0.001914075342938304, + 0.011352911591529846, + -0.02103290520608425, + 0.0431990772485733, + -0.0239335298538208, + -0.0040271468460559845, + 0.008425303734838963, + -0.0055955080315470695, + -0.008128495886921883, + 0.006378002464771271, + -0.02789996564388275, + 0.007042448036372662, + 0.006974991410970688, + 0.003649391233921051, + -0.010260118171572685, + 0.015029285103082657, + 0.02398749440908432, + 0.007035702466964722, + -0.007420203648507595, + -0.01197351049631834, + -0.0002824736584443599, + -0.0007222050917334855, + 0.013322638347744942, + 0.015204671770334244, + 0.005116567946970463, + 0.016756169497966766, + 0.015703849494457245, + -0.00035878372727893293, + -0.023758143186569214, + -0.0006897416897118092, + -0.0019275665981695056, + 0.002091148402541876, + -0.001650152145884931, + 0.01714741624891758, + -0.012668311595916748, + -0.00803405698388815, + 0.004877097439020872, + 0.026969067752361298, + -0.0211678184568882, + -0.006266699638217688, + -0.03488845005631447, + -0.03235208988189697, + -0.016958538442850113, + -0.018671931698918343, + -0.0036999834701418877, + 0.005888943560421467, + -0.01648634299635887, + 0.006769249681383371, + -0.029410989955067635, + 0.013599209487438202, + 0.012533399276435375, + -0.0072178347036242485, + 1.8840361235561431e-6, + -0.0176331028342247, + 0.004381292965263128, + 1.7615078832022846e-5, + 0.012985357083380222, + -0.0060778213664889336, + 0.009261763654649258, + 0.018550509586930275, + 0.009039157070219517, + -0.003922589588910341, + 0.0274682454764843, + -0.01594669185578823, + -0.022098716348409653, + 0.026105625554919243, + -0.0020017686765640974, + -0.017875945195555687, + -0.02908719889819622, + 0.0029394126031547785, + 0.0002346217806916684, + 0.014867390505969524, + 0.004796150140464306, + -0.011292201466858387, + -0.028952285647392273, + -0.0211678184568882, + -0.03237907215952873, + 0.00856696255505085, + 0.0011391699081286788, + 0.020722605288028717, + 0.015434023924171925, + 0.011521552689373493, + 0.008364593610167503, + 0.008722112514078617, + -0.018941756337881088, + -0.010732312686741352, + -0.004870351869612932, + -0.031677525490522385, + 0.002403134247288108, + 0.0015346331056207418, + 0.029330041259527206, + -0.01824020966887474, + 0.01591970957815647, + 0.005531424656510353, + -0.016176044940948486, + -0.003239593468606472, + 0.014381703920662403, + -0.03494241461157799, + 0.0025936984457075596, + -0.019589338451623917, + 0.006179006304591894, + -0.012020730413496494, + 0.015595919452607632, + -0.00800707470625639, + 0.016135569661855698, + -0.006374629680067301, + 0.002369405934587121, + 0.018537018448114395, + 0.03324251249432564, + -0.015555445104837418, + 0.00278257648460567, + -0.006698420271277428, + -0.0038214048836380243, + -0.01225682720541954, + 0.003104680683463812, + -0.03615662828087807, + 0.006941263563930988, + 0.0053324284963309765, + 0.015393550507724285, + -0.019724251702427864, + 0.0059361630119383335, + -0.004701710771769285, + 0.03084106557071209, + 0.0020017686765640974, + -0.0032598304096609354, + -0.020344849675893784, + 0.0015405354788526893, + -0.007244816981256008, + -0.02742777206003666, + -0.038504112511873245, + -0.012438959442079067, + 0.008128495886921883, + 0.027576176449656487, + 0.013073050417006016, + -0.04376571252942085, + -0.020655149593949318, + -0.004229516256600618, + -0.006550016347318888, + -0.01426028273999691, + 0.013221453875303268, + 0.001146758790127933, + 0.019090160727500916, + 0.014584073796868324, + -0.006860315799713135, + -0.018658440560102463, + -0.009605791419744492, + -0.0027016287203878164, + -0.014179334975779057, + -0.003474004566669464, + 0.0057641491293907166, + -0.011251727119088173, + 0.0013137133792042732, + 0.013180980458855629, + 0.0049917735159397125, + -0.01164297480136156, + -0.013788088224828243, + -0.006438713055104017, + 0.004742184653878212, + -0.003932707943022251, + 0.0038753701373934746, + -0.02111385203897953, + 0.014867390505969524, + -0.025336623191833496, + 0.017889436334371567, + 0.004033892415463924, + 0.013896018266677856, + -0.015879236161708832, + 0.01403093058615923, + 0.004762421827763319, + -0.03594077005982399, + 0.00030186737421900034, + 0.017889436334371567, + -0.0011029121233150363, + -0.012992102652788162, + 0.03205528110265732, + 0.03264889866113663, + 0.023798616603016853, + -0.015879236161708832, + 0.004111467394977808, + -0.028142809867858887, + 0.04641000181436539, + 0.041957881301641464, + -0.01815926283597946, + -0.022719314321875572, + -0.007474169135093689, + -0.016823625192046165, + -0.00139634741935879, + -0.004786031320691109, + -0.017444225028157234, + -0.003334032604470849, + -0.03032839670777321, + -0.002239552326500416, + 0.010226390324532986, + 0.011049358174204826, + 0.01721487194299698, + 0.022705823183059692, + 0.017282329499721527, + 0.02103290520608425, + -0.00802731141448021, + 0.011622737161815166, + -0.005548288580030203, + 0.01344406045973301, + -0.01873938739299774, + -0.004600526299327612, + 0.00825666356831789, + -0.022962158545851707, + 0.0027370434254407883, + -0.008384830318391323, + 0.015636393800377846, + 0.0075078969821333885, + -0.022948667407035828, + -0.027603158727288246, + -0.021518591791391373, + 0.004033892415463924, + 0.01374761387705803, + -0.0006572782876901329, + -0.022597894072532654, + -0.037370845675468445, + 0.004259871784597635, + -0.0015262010274454951, + 0.0012715531047433615, + 0.004721947945654392, + -0.0026577820535749197, + -0.015069759450852871, + 0.005244735162705183, + -0.01454359944909811, + -0.002222688402980566, + -0.008209443651139736, + -0.013949982821941376, + -0.00826340913772583, + 0.004138450138270855, + 0.020722605288028717, + 0.0011585636530071497, + 0.00040663560503162444, + 0.0017319429898634553, + -0.002050674520432949, + 0.0008162223966792226, + -0.0027589667588472366, + -0.010280354879796505, + -0.014489633962512016, + -0.006202615797519684, + 0.02405495196580887, + -0.02114083617925644, + -0.013788088224828243, + -0.005113195162266493, + -0.007757485844194889, + 0.010185915976762772, + 0.005410003010183573, + -0.0045094601809978485, + 0.01709345169365406, + -0.0022041378542780876, + 0.0014410372823476791, + 0.015730831772089005, + 0.0004294021346140653, + -0.0006109020323492587, + -0.00543698575347662, + -0.0048467423766851425, + -0.0005889786989428103, + -0.015204671770334244, + -0.006560134701430798, + 0.050484366714954376, + -0.02178841643035412, + -0.006438713055104017, + 0.022530436515808105, + 0.008236425928771496, + -0.016891082748770714, + 0.006175633054226637, + 0.027036525309085846, + 0.0033222276251763105, + -0.011474333703517914, + 0.007797959726303816, + -0.030706152319908142, + 0.02456762082874775, + -0.0171339251101017, + -0.02274629846215248, + 0.015015793964266777, + 0.004165432415902615, + 0.026024678722023964, + -0.020790062844753265, + 0.0020675386767834425, + 0.010206152684986591, + 0.022962158545851707, + -0.007379729766398668, + 0.005173905752599239, + 0.011035867035388947, + 0.0011948214378207922, + 0.01030733808875084, + 0.013794833794236183, + -0.01424679160118103, + -0.003733711550012231, + 0.007062684744596481, + 0.006337528582662344, + -0.02911418117582798, + 0.0024554128758609295, + 0.0008579610730521381, + 0.009450641460716724, + -0.013855543918907642, + -0.0012597482418641448, + -0.01949489861726761, + 0.016149062663316727, + -0.02050674520432949, + -0.0026341723278164864, + 0.009639519266784191, + 0.014489633962512016, + -0.01424679160118103, + 0.003487495705485344, + -0.009012174792587757, + 0.006303800269961357, + -0.010914444923400879, + -0.00033348758006468415, + 0.0016847235383465886, + 0.005241362378001213, + 0.010610891506075859, + 0.004981655161827803, + 0.006782740820199251, + -0.015514971688389778, + 0.005416748579591513, + 0.001058222260326147, + -0.019036196172237396, + -0.002089462010189891, + -0.0013272046344354749, + 0.0016434064600616693, + -0.024189865216612816, + -0.020398814231157303, + 0.00856696255505085, + -0.01757913827896118, + -0.010158933699131012, + -0.015757814049720764, + 0.009187561459839344, + 0.003973181825131178, + -0.007440440822392702, + 0.020830536261200905, + -0.00024874546215869486, + 0.011872326023876667, + -0.012155642732977867, + 0.024162881076335907, + 0.004077739082276821, + 0.0020658522844314575, + -0.003224415937438607, + -0.012358012609183788, + -0.0070694307796657085, + -0.007858670316636562, + -0.007379729766398668, + -0.02281375415623188, + 0.01140687707811594, + 0.008209443651139736, + 0.013498025014996529, + -0.02854754775762558, + -0.0032480256631970406, + -0.03380914777517319, + -0.01594669185578823, + 0.01931951195001602, + 0.001183859771117568, + 0.022516945376992226, + -0.01112356036901474, + 0.009943072684109211, + 0.0009123478084802628, + 0.017552154138684273, + -0.016459360718727112, + 0.007784468587487936, + -0.006300427485257387, + 0.007372984196990728, + -0.011777887120842934, + -0.010793023742735386, + -0.004958045203238726, + -0.021410660818219185, + 0.01714741624891758, + 0.009470878168940544, + -0.014921355061233044, + 0.001917448127642274, + 0.009032411500811577, + -0.005207634065300226, + -0.020344849675893784, + -0.010907699353992939, + -0.00940342154353857, + 0.018051331862807274, + 0.02568739652633667, + 0.0017673576949164271, + -0.02398749440908432, + -0.026078643277287483, + 0.00854672584682703, + -0.012351266108453274, + 0.012769496068358421, + -0.000572536198887974, + -0.004873724654316902, + 0.003646018449217081, + 0.000772797386161983, + -0.014057913795113564, + -0.01194652821868658, + -0.006388120818883181, + 0.007244816981256008, + 0.01660776510834694, + 0.0023930156603455544, + 0.02062816731631756, + -0.00582486018538475, + -0.007690029218792915, + -0.008222934789955616, + -0.008398321457207203, + -0.0035077326465398073, + -0.01165646594017744, + 0.006303800269961357, + 0.021248765289783478, + -0.013525008223950863, + 0.012580618262290955, + 0.0008124280138872564, + 0.0037505757063627243, + -0.005244735162705183, + -0.015771305188536644, + 0.0019039568724110723, + 0.017552154138684273, + 0.00798683799803257, + -0.011400131508708, + 0.009653010405600071, + -0.002296890364959836, + -0.016445869579911232, + -0.005602254066616297, + -0.01824020966887474, + -0.020722605288028717, + -0.002114758128300309, + -0.010320829227566719, + 0.0067625041119754314, + -0.027738070115447044, + -0.019009213894605637, + 0.011231490410864353, + -0.01455709058791399, + 0.024311285465955734, + 0.005076094064861536, + 0.016418887302279472, + 0.00859394483268261, + -0.001981531735509634, + -0.0017268838128075004, + 0.008141987025737762, + -0.002645977307111025, + -0.025876274332404137, + -0.008958209306001663, + -0.012081440538167953, + 0.0031856284476816654, + -0.006968245841562748, + -0.025296149775385857, + 0.0019730995409190655, + 0.01479993388056755, + -0.006681556347757578, + 0.0008006231510080397, + 0.0009013861417770386, + -0.015744322910904884, + -0.031245803460478783, + -0.018091805279254913, + -0.004256498534232378, + -0.004705083556473255, + 0.018604474142193794, + -0.026483381167054176, + 0.013882527127861977, + -0.00914034154266119, + 0.003094562329351902, + -0.003102994291111827, + 0.006556761916726828, + 0.0015396922826766968, + 0.018105296418070793, + -0.00045111466897651553, + -0.003585307626053691, + 0.007561862468719482, + -0.004893961828202009, + -0.0016771346563473344, + -0.006701793055981398, + -0.023218492045998573, + 0.003371133469045162, + -0.0321362279355526, + 0.004597153514623642, + -6.956441211514175e-5, + 0.00569332018494606, + -0.039637379348278046, + 0.00038998230593279004, + 0.016189536079764366, + -0.010469232685863972, + -0.0008410969749093056, + 0.03086804784834385, + 0.012978611513972282, + -0.015541953966021538, + 0.02738729864358902, + -0.006954754702746868, + 0.024257320910692215, + 0.011831852607429028, + 0.03076011687517166, + -0.007170615252107382, + 0.002602130640298128, + 0.02452714554965496, + -0.011056103743612766, + 0.02335340529680252, + 0.019306020811200142, + -0.012438959442079067, + 0.02390654757618904, + -0.017848962917923927, + 0.013572227209806442, + -0.012803224846720695, + 0.03936755284667015, + 0.017875945195555687, + 0.02691510319709778, + -0.01829417608678341, + 0.006496051326394081, + 0.007109904196113348, + 0.006988483015447855, + 0.017875945195555687, + -0.018415596336126328, + -0.005059229675680399, + -0.007622573059052229, + 0.019090160727500916, + -0.010125205852091312, + -0.002153545618057251, + -0.036885157227516174, + -2.2858759621158242e-5, + 0.0165672916918993, + 0.003234534291550517, + -0.006054211873561144, + -0.0029798864852637053, + 0.013491279445588589, + -0.003447022056207061, + 0.005049111321568489, + 0.007615827489644289, + 0.020290885120630264, + -0.015852253884077072, + -0.0042227706871926785, + 0.02052023634314537, + 0.005372901912778616, + 0.0073864758014678955, + -0.0030439700931310654, + 0.002479022601619363, + -0.021896347403526306, + 0.012931391596794128, + -0.022651858627796173, + 0.000652219052426517, + -0.009045902639627457, + 0.00571692967787385, + 0.002887133741751313, + 0.01172392163425684, + 0.0009494487894698977, + 0.021451134234666824, + 0.013019084930419922, + -0.014449160546064377, + 0.01596018299460411, + 0.012425468303263187, + -0.009713721461594105, + 0.006044093519449234, + 0.004232889041304588, + -0.0054504768922924995, + 0.00027214441797696054, + -0.03240605443716049, + -0.0031940604094415903, + 0.0019326257752254605, + -0.00856696255505085, + -0.013153997249901295, + -0.010826751589775085, + 0.004465613514184952, + -0.0012251768494024873, + 0.016310956329107285, + 0.012007239274680614, + -0.013531753793358803, + 0.017956893891096115, + 0.011366402730345726, + 0.0033154820557683706, + -0.01666172966361046, + -0.0015430650673806667, + 0.012884171679615974, + -0.0029512173496186733, + -0.026065152138471603, + -0.0020793434232473373, + 0.008202698081731796, + 0.002996750408783555, + -0.012742513790726662, + -0.003990045748651028, + 0.0329996682703495, + 0.01830766722559929, + -0.004101349040865898, + -0.02281375415623188, + 0.006816469132900238, + 0.00570343853905797, + -0.001426702830940485, + -0.021397169679403305, + 0.02387956529855728, + 0.007824942469596863, + -0.011278709396719933, + 0.005032247398048639, + 0.002438548719510436, + 0.006671437993645668, + 0.0031923740170896053, + 0.002865210408344865, + -0.018955247476696968, + 0.026604803279042244, + 0.0011585636530071497, + 0.01655380055308342, + 0.022597894072532654, + -0.009025665931403637, + -0.006381375249475241, + -0.030544256791472435, + -0.011265218257904053, + 0.0065938630141317844, + 0.00853998027741909, + -0.0111842704936862, + -0.008620928041636944, + -0.024716025218367577, + -0.02400098741054535, + -0.010745803825557232, + -0.008384830318391323, + 0.006054211873561144, + -0.008135241456329823, + 0.005204261280596256, + 0.0160006582736969, + 0.022125698626041412, + 0.007595590315759182, + -0.008776077069342136, + 0.010125205852091312, + -0.011076340451836586, + 0.013201217167079449, + 0.009255018085241318, + -0.003037224290892482, + -0.013410331681370735, + 0.009855379350483418, + -0.003585307626053691, + -0.026955576613545418, + -0.010671602562069893, + 0.006465695798397064, + -0.021397169679403305, + 0.00853998027741909, + -0.010057749226689339, + -0.008910990320146084, + 0.010273609310388565, + -0.0037370845675468445, + -0.008074531331658363, + 0.020196445286273956, + -0.012553635984659195, + 0.020223427563905716, + -0.0029529037419706583, + -0.0342678502202034, + 0.010732312686741352, + -0.0018314411863684654, + -0.004893961828202009, + -0.008681638166308403, + 0.00611154967918992, + 0.026618294417858124, + 0.003959690686315298, + 0.010125205852091312, + 0.010084731504321098, + -0.0011273650452494621, + -0.0009595672599971294, + -0.0068771797232329845, + -0.00023989181499928236, + 0.025282658636569977, + 0.004310464020818472, + 0.01594669185578823, + -0.005221125204116106, + 0.00041443525697104633, + 0.00832411926239729, + 0.003730338765308261, + 0.00910661369562149, + -0.007717011962085962, + -0.009700230322778225, + 0.005264971870929003, + 0.007595590315759182, + 0.010030766017735004, + 0.0071975975297391415, + -0.01370039489120245, + 0.01112356036901474, + -0.010806514881551266, + -0.0036696281749755144, + 0.0005948811303824186, + -0.005804623011499643, + -0.01598716713488102, + -0.00883678812533617, + 0.020844027400016785, + 0.012917900457978249, + -0.0009427031618542969, + 0.029330041259527206, + 0.019656794145703316, + -0.0011391699081286788, + 0.014624547213315964, + -0.011062849313020706, + -0.009295491501688957, + 0.015825271606445312, + -0.001304438104853034, + 0.0006467382190749049, + 0.020155971869826317, + 0.0023441098164767027, + -5.7179837313015014e-5, + 0.0031181720551103354, + -0.010334320366382599, + 0.0037539484910666943, + 0.008452286943793297, + 0.024904903024435043, + 0.00021607127564493567, + 0.006074448581784964, + 0.024176374077796936, + -0.0051671601831912994, + 0.006499424111098051, + 0.0171339251101017, + 0.004627509042620659, + -0.009464132599532604, + 0.002185587305575609, + 0.016216518357396126, + -0.042551495134830475, + -0.017808489501476288, + 0.02172096073627472, + -0.017025994136929512, + -0.005413375794887543, + 0.012061203829944134, + 0.006462323013693094, + 0.0035718162544071674, + 0.031002961099147797, + 0.0029427853878587484, + 0.02563343197107315, + 0.005244735162705183, + -0.02857453003525734, + -0.008890753611922264, + 0.0238660741597414, + 0.02460809424519539, + -0.0026628412306308746, + -0.02000756748020649, + 0.0073662386275827885, + -0.006489305756986141, + 0.007082921918481588, + 0.0027050015050917864, + -0.0054774596355855465, + 0.009585553780198097, + 0.011838598176836967, + 0.006179006304591894, + 0.00569332018494606, + -0.015285619534552097, + -0.020263902842998505, + 0.01772754080593586, + -0.005460595246404409, + 0.004958045203238726, + 0.015703849494457245, + -0.007656301371753216, + 0.0004140136588830501, + 0.009578808210790157, + -0.01426028273999691, + -0.018968738615512848, + -0.0005485048168338835, + -0.014651529490947723, + -0.004701710771769285, + -0.007130141369998455, + 0.001481511164456606, + -0.005544915795326233, + -0.012600854970514774, + -0.02003454975783825, + 0.006853570230305195, + -0.0017538663232699037, + 0.0016400336753576994, + -0.02274629846215248, + -0.00612166803330183, + 0.0065702530555427074, + 0.0007812294061295688, + 0.009909344837069511, + 0.0012858875561505556, + -0.009052648209035397, + 0.007143632508814335, + 0.00555503461509943, + 0.007615827489644289, + 0.003780931234359741, + 0.02800789661705494, + -0.00858045369386673, + 0.0011138737900182605, + 0.009821651503443718, + -0.017444225028157234, + -0.006340901367366314, + 0.02679368108510971, + 0.00035014087916351855, + 0.0025684023275971413, + 0.0016071486752480268, + 0.0009536648285575211, + 0.0024469809141010046, + 0.004627509042620659, + 0.020830536261200905, + -0.009835142642259598, + 0.012688548304140568, + 0.006199243012815714, + -0.020938465371727943, + 0.024338267743587494, + 0.0026645276229828596, + 0.004610644653439522, + 0.027238894253969193, + 0.004253125749528408, + 0.012594109401106834, + -0.009464132599532604, + 0.025390587747097015, + -0.006873806938529015, + 0.00042097008554264903, + 0.0037404573522508144, + 0.029222112149000168, + 0.01830766722559929, + -0.007305528037250042, + 0.0020304375793784857, + -0.02058769203722477, + 0.014044421724975109, + 0.021882856264710426, + -0.018145771697163582, + -0.006030601914972067, + 0.007096413057297468, + 0.015514971688389778, + -0.005548288580030203, + -8.11584759503603e-5, + 0.002050674520432949, + -0.034618623554706573, + -0.011258472688496113, + 0.00967324711382389, + 0.006941263563930988, + -0.018456069752573967, + 0.011204508133232594, + -0.008742349222302437, + 0.013923000544309616, + 0.001145072397775948, + 0.018604474142193794, + -0.027171436697244644, + 0.0017302565975114703, + 0.01891477406024933, + 0.023231983184814453, + 0.016931556165218353, + 0.000494539737701416, + -0.00914034154266119, + -0.006722030229866505, + 0.010523198172450066, + 0.014125369489192963, + -0.017025994136929512, + -0.02169397845864296, + -0.007764231413602829, + -0.010793023742735386, + -0.011049358174204826, + 0.0007032329449430108, + 0.00021923329040873796, + 0.008094768039882183, + 0.0036797465290874243, + -0.012391740456223488, + 0.00802056584507227, + 0.0023508553858846426, + -0.012836952693760395, + -0.02003454975783825, + 0.02630799449980259, + 0.005504441913217306, + 0.00544710410758853, + 0.007717011962085962, + 4.94065425300505e-5, + 0.00582486018538475, + 0.002531301463022828, + -0.02800789661705494, + 0.011089831590652466, + 0.011035867035388947, + -0.019306020811200142, + 0.014071404933929443, + -0.017970385029911995, + -0.003443649038672447, + -0.015312602743506432, + -0.017417242750525475, + 0.01703948713839054, + -0.007851924747228622, + -0.001047260593622923, + -0.006840078625828028, + 0.012634583748877048, + -0.0031350362114608288, + -0.011217999272048473, + -0.022638367488980293, + 0.00907963141798973, + -0.032271139323711395, + -0.011845343746244907, + 0.007872161455452442, + -0.0010902640642598271, + 0.006469068583101034, + 0.020776569843292236, + -0.01372063159942627, + -0.0013035949086770415, + 0.004947926849126816, + 0.003104680683463812, + -0.003942826297134161, + -0.01484040729701519, + -0.006452204659581184, + 0.02347482740879059, + -0.01453010831028223, + -0.00831737369298935, + 0.002236179541796446, + 0.024823954328894615, + -0.0006513758562505245, + 0.0301665011793375, + 0.01225682720541954, + -0.002848346484825015, + -0.020344849675893784, + -0.008121750317513943, + -0.009504606947302818, + 0.01597367599606514, + -0.0023947020526975393, + 0.012998848222196102, + 0.013261928223073483, + -0.004853487946093082, + -0.03208226338028908, + -0.015595919452607632, + 0.0004806268261745572, + 0.009727212600409985, + -0.02675320766866207, + -0.004323955159634352, + -0.013565481640398502, + -0.016796642914414406, + 0.023636721074581146, + -0.008479269221425056, + -0.003659509588032961, + 0.0075348797254264355, + -0.0051671601831912994, + -0.007636064197868109, + -0.010469232685863972, + -0.0034385898616164923, + -0.018132280558347702, + 0.001203253515996039, + -0.014597564935684204, + -0.005494323559105396, + 0.023151036351919174, + -0.01825370080769062, + 0.011244981549680233, + -0.01059740036725998, + 0.01142036821693182, + -0.0007690029451623559, + -0.0022142562083899975, + 0.0009368007304146886, + -0.00583835132420063, + 0.013032576069235802, + -0.005410003010183573, + -0.003649391233921051, + -0.019144125282764435, + 0.009814905934035778, + 0.011582263745367527, + 0.02342086099088192, + -0.014219808392226696, + 0.0295998677611351, + -0.0022412389516830444, + 0.009875616990029812, + 0.01401743944734335, + -0.030409343540668488, + 0.016405396163463593, + -0.015069759450852871, + -0.0046814740635454655, + 0.01114379707723856, + -0.01511023286730051, + -0.02516123652458191, + -0.006469068583101034, + -0.005038992967456579, + -0.026348469778895378, + 0.01369364932179451, + 0.018955247476696968, + -0.037937477231025696, + -0.003922589588910341, + -1.1995908607786987e-5, + 0.01193978264927864, + -0.018483053892850876, + -0.006856943015009165, + -0.0028348551131784916, + 0.010631128214299679, + -0.01818624511361122, + -0.01714741624891758, + -0.00011857569916173816, + 0.013869035057723522, + 0.012560381554067135, + -0.01169019378721714, + -0.016445869579911232, + -0.006519660819321871, + -0.023218492045998573, + 0.019292529672384262, + -0.015002302825450897, + -0.01992662064731121, + 0.01664823852479458, + -0.0006024699541740119, + 0.005217752419412136, + -0.026065152138471603, + 0.02284073643386364, + 0.004927689675241709, + -0.014111878350377083, + -0.016324449330568314, + 0.022071734070777893, + 0.020924974232912064, + -0.012836952693760395, + 0.007642809767276049, + -0.0034605131950229406, + -0.009976801462471485, + 0.006641082465648651, + -0.00515366904437542, + -0.004630881827324629, + 0.006769249681383371, + -0.002618994563817978, + 0.024095425382256508, + 0.012047712691128254, + -0.011076340451836586, + 0.014961829409003258, + -0.006523033604025841, + 0.016432378441095352, + 0.008614182472229004, + -0.025404078885912895, + 0.00047345960047096014, + 0.017430733889341354, + -0.0024452945217490196, + -0.02046627178788185, + 0.005015383008867502, + -0.019724251702427864, + -0.013551990501582623, + 0.010799769312143326, + -0.005797877442091703, + 0.012094932608306408, + 0.0031350362114608288, + 6.15012613707222e-5, + 0.0009081317693926394, + 0.0160006582736969, + 0.03030141443014145, + 0.021424151957035065, + -0.0117171760648489, + -0.0020978939719498158, + -0.010044258087873459, + 0.006071075797080994, + 0.005885570775717497, + -0.002195705659687519, + -0.01484040729701519, + 0.021518591791391373, + -0.014597564935684204, + -0.014678512699902058, + -0.022071734070777893, + 0.00572704803198576, + -0.01710694283246994, + -0.01400394830852747, + 0.03424086794257164, + 0.015514971688389778, + 0.0069007896818220615, + -0.018388614058494568, + -0.006597235798835754, + -0.020263902842998505, + -0.009302237071096897, + 0.011501315981149673, + 0.006337528582662344, + -0.006232971325516701, + -0.0036392726469784975, + -0.007433695252984762, + -0.003956317901611328, + -0.001981531735509634, + 0.007406712509691715, + 0.010954919271171093, + -0.012169133871793747, + -0.006853570230305195, + 0.010658110491931438, + -0.014584073796868324, + 0.011029121465981007, + 0.006502796895802021, + 0.022058242931962013, + -0.02455412968993187, + 0.02164001204073429, + -0.014071404933929443, + -0.02177492529153824, + 0.017471207305788994, + 0.000698173709679395, + 0.03138071671128273, + -0.006165514700114727, + 0.020938465371727943, + -0.01651332713663578, + -0.020358340814709663, + -0.0318664014339447, + -0.010732312686741352, + -0.01761961169540882, + 0.007453931961208582, + 0.010192661546170712, + -0.017403751611709595, + 0.012850443832576275, + 0.005892316345125437, + 0.021923329681158066, + 0.007001974154263735, + 2.5263211682613473e-6, + -0.01771404966711998, + 0.02169397845864296, + -0.007905890233814716, + 0.0048197596333920956, + 0.002092834794893861, + 0.036750245839357376, + 0.0062700724229216576, + 0.015231654979288578, + -0.0171339251101017, + -0.003581934841349721, + 0.013923000544309616, + -0.004037265665829182, + 0.00515366904437542, + -0.004354310687631369, + -0.009470878168940544, + 0.014853899367153645, + -0.025390587747097015, + 0.006229598540812731, + -0.017970385029911995, + -0.012796478345990181, + -0.04047383740544319, + -0.0160681139677763, + -0.000609637179877609, + -0.004067620728164911, + 0.005383020732551813, + -0.0012268632417544723, + -0.009221289306879044, + -0.008378084748983383, + -0.021289238706231117, + -0.004334073513746262, + 0.01664823852479458, + -0.013180980458855629, + 0.013531753793358803, + -0.009538334794342518, + 0.0012209608685225248, + 0.00798683799803257, + -0.0013373231049627066, + -0.016122078523039818, + 0.001398033811710775, + 0.004165432415902615, + -0.0070761763490736485, + 0.00026877157506532967, + -0.004182296805083752, + 0.010671602562069893, + 0.002915802877396345, + 0.003091189544647932, + -0.01659427396953106, + -0.008512997068464756, + -0.006863688584417105, + -0.01343731489032507, + -0.02568739652633667, + -0.0056191179901361465, + -0.0003229475114494562, + -0.000478518835734576, + -0.013147251680493355, + -0.01888779178261757, + -0.01423330046236515, + 0.002258102875202894, + 0.019036196172237396, + 0.00940342154353857, + 0.014044421724975109, + -0.012958373874425888, + -0.0007428635726682842, + -0.0034284715075045824, + -0.0021805281285196543, + -0.016783151775598526, + 0.0039090984500944614, + -0.0019376850686967373, + 0.008647910319268703, + 0.010563671588897705, + 0.0025127509143203497, + -0.011238235980272293, + 3.130398545181379e-5, + -0.003474004566669464, + -0.037343863397836685, + 0.00831737369298935, + -0.0011324243387207389, + -0.02108686976134777, + 0.028277723118662834, + 0.014152352698147297, + -0.004870351869612932, + -0.011292201466858387, + 0.013828561641275883, + 0.015811780467629433, + -0.029950641095638275, + 0.024149389937520027, + -0.003895607078447938, + 0.007588844746351242, + 0.02111385203897953, + 0.009443895891308784, + 0.017228364944458008, + 0.016230009496212006, + -0.015622901730239391, + -0.009578808210790157, + 0.003730338765308261, + -0.0029714542906731367, + 0.006651200819760561, + 0.024837445467710495, + -0.0053088185377418995, + 0.010543434880673885, + -0.012384994886815548, + 0.011096577160060406, + -0.041957881301641464, + -0.004249752964824438, + -0.007629318628460169, + -0.017228364944458008, + -0.01428726501762867, + -0.01423330046236515, + 0.010104968212544918, + -0.002431803150102496, + 0.008728858083486557, + 0.0038045409601181746, + -0.03316156566143036, + -0.013477788306772709, + -0.01655380055308342, + 0.005076094064861536, + 0.01397696603089571, + -0.004243007395416498, + -0.00832411926239729, + 0.026537347584962845, + -0.020304376259446144, + -0.021464625373482704, + -0.006472441367805004, + 0.0409325435757637, + 0.01605462282896042, + -0.006300427485257387, + 0.0032884993124753237, + 0.0075281341560184956, + -0.0043441918678581715, + 0.00022113051090855151, + -0.00826340913772583, + -0.02328594960272312, + -0.0016400336753576994, + -0.04757025092840195, + 0.016432378441095352, + 0.007926126942038536, + 0.01451661717146635, + -0.009214543737471104, + -0.011191016063094139, + -0.0037741854321211576, + -0.0012546890648081899, + 0.012364758178591728, + 0.019022705033421516, + -0.006826587487012148, + 0.012432213872671127, + 0.024783480912446976, + -0.006961500272154808, + 0.020803553983569145, + -0.010833497159183025, + -0.011191016063094139, + 0.006813096348196268, + 0.004077739082276821, + -0.002116444520652294, + -0.01223659049719572, + 0.006543270777910948, + 0.0036257815081626177, + -0.00040768960025161505, + 0.003241279860958457, + -0.0006754071800969541, + 0.0032817537430673838, + 0.007899144664406776, + -0.004590407945215702, + 0.0193330030888319, + -0.011858834885060787, + -0.012944882735610008, + -0.005224497988820076, + -0.005231243558228016, + -0.004408275708556175, + -0.0051401774398982525, + 0.017376767471432686, + 0.040177032351493835, + 0.02792694978415966, + -0.03472655266523361, + -0.012917900457978249, + -0.016918065026402473, + 0.022705823183059692, + 0.002506005112081766, + 0.011298947036266327, + 0.02620006538927555, + 0.0025279284454882145, + -0.014098387211561203, + -0.015339585021138191, + -0.001145072397775948, + 0.004684846848249435, + 0.015285619534552097, + 0.0009292119066230953, + -0.017282329499721527, + 0.006212734151631594, + 0.013147251680493355, + -0.0021063259337097406, + 0.0017285702051594853, + -0.015137216076254845, + 0.03129976987838745, + 0.002618994563817978, + -0.014853899367153645, + 0.001774103264324367, + 0.006499424111098051, + 0.0009174070437438786, + 0.0013153997715562582, + 0.002743788994848728, + 0.0037438301369547844, + -0.00035562171251513064, + -0.0005754873855039477, + 0.001153504359535873, + -0.03648041933774948, + -0.0008887380245141685, + -0.005531424656510353, + 0.0006813096115365624, + -0.028331687673926353, + -0.000903915730305016, + 0.00010292371007381007, + 0.015245146118104458, + 0.013909509405493736, + 0.016337940469384193, + -0.022098716348409653, + 0.014152352698147297, + -0.01223659049719572, + 0.011103322729468346, + -0.010826751589775085, + 0.0011476019863039255, + -0.013032576069235802, + 0.012749259360134602, + -0.009774432517588139, + -0.01457058172672987, + -0.0024554128758609295, + -0.021302729845046997, + 0.026645276695489883, + -0.010199407115578651, + 0.010293846018612385, + -0.0019730995409190655, + -0.013282164931297302, + 0.0024486673064529896, + 0.0009916090639308095, + 0.007831688039004803, + -0.012142151594161987, + -0.010287100449204445, + 0.010057749226689339, + 0.012702039442956448, + -0.027184927836060524, + 0.02227410301566124, + 0.009619282558560371, + -0.010820006020367146, + 0.00885702483355999, + -0.008088022470474243, + 0.012169133871793747, + 0.013774596154689789, + -0.002431803150102496, + -0.013572227209806442, + 0.011757650412619114, + -0.0026291131507605314, + 0.015393550507724285, + 0.0046511185355484486, + -0.0006496894638985395, + -0.010739058256149292, + 0.014408687129616737, + 0.020425796508789062, + 0.0069041624665260315, + -0.005507814697921276, + 0.007690029218792915, + -0.01772754080593586, + -0.004121585749089718, + 0.01598716713488102, + 0.0030085553880780935, + 0.008249917067587376, + 0.00907963141798973, + -0.007420203648507595, + -0.007352747488766909, + 0.0012842011637985706, + -0.009902599267661572, + 0.00292423483915627, + -0.016270482912659645, + -0.003646018449217081, + 0.012782987207174301, + 0.004313836805522442, + 0.006165514700114727, + 0.0009486055932939053, + -0.012121914885938168, + 0.006209361366927624, + -0.01431424729526043, + 0.009302237071096897, + -0.007224580273032188, + -0.01946791633963585, + -0.0025818936992436647, + 0.003418352920562029, + -0.00938993040472269, + -0.006792859174311161, + -0.013133760541677475, + -0.032864756882190704, + 0.017983876168727875, + 0.0008495289948768914, + 0.008958209306001663, + 0.004701710771769285, + 0.026348469778895378, + 0.012074694968760014, + 0.009572062641382217, + -0.006030601914972067, + 0.014705494977533817, + 0.019670285284519196, + -0.011292201466858387, + 0.005521306302398443, + 0.00572367524728179, + -0.0037438301369547844, + 0.012863934971392155, + 0.003996791783720255, + -0.0051604146137833595, + 0.004907452967017889, + -0.007312273606657982, + 0.0018027722835540771, + 0.006674810778349638, + 0.0014612742234021425, + -0.0023289320524781942, + -0.012162388302385807, + -0.0070694307796657085, + -0.005797877442091703, + 0.021235274150967598, + 0.03669628128409386, + -0.0038888612762093544, + 0.01057041808962822, + 0.02957288548350334, + -0.012850443832576275, + -0.003861878765746951, + -0.0016636434011161327, + 0.007015465293079615, + -0.009025665931403637, + 0.015420532785356045, + 0.005504441913217306, + 0.02390654757618904, + 0.017889436334371567, + -0.020371831953525543, + -0.004000164568424225, + -0.007737248670309782, + 0.007669792510569096, + -0.005204261280596256, + 0.012823461554944515, + -0.018469562754034996, + -0.0022058242466300726, + 7.889236439950764e-5, + 0.042443566024303436, + 0.007932872511446476, + 0.008904244750738144, + 0.012142151594161987, + -0.0030524020548909903, + 0.0014410372823476791, + -0.0008786196121945977, + 0.00017854865291155875, + 0.009767686948180199, + -0.026024678722023964, + 0.007764231413602829, + -0.022125698626041412, + -0.005757403559982777, + -0.011251727119088173, + 0.0026948831509798765, + -0.0011400131043046713, + 0.027090489864349365, + -0.02737380564212799, + 0.009895853698253632, + -0.006968245841562748, + -0.01117752492427826, + 0.0059631457552313805, + 0.016702204942703247, + 0.02285422757267952, + 0.027508718892931938, + -0.013632938265800476, + -0.004323955159634352, + 0.011521552689373493, + 0.009963310323655605, + -0.013221453875303268, + -0.007555116433650255, + -0.007737248670309782, + 0.011919545941054821, + -0.0067085386253893375, + 0.020992431789636612, + 0.003064206801354885, + 0.01766008511185646, + 0.011757650412619114, + -0.012196117080748081, + -0.0171339251101017, + -0.01226357277482748, + 0.013187726028263569, + -0.005106449127197266, + 0.006823214702308178, + 0.003470631781965494, + 0.008877262473106384, + -0.004408275708556175, + 0.0024638448376208544, + 0.00883004255592823, + 0.01833464950323105, + 0.015852253884077072, + -0.004418394062668085, + 0.00800707470625639, + -0.0065702530555427074, + 0.004705083556473255, + 0.012958373874425888, + 0.0021063259337097406, + 0.0238660741597414, + -0.006189124658703804, + 0.014206317253410816, + 0.018955247476696968, + 0.04781309515237808, + 0.002912430092692375, + -0.019211582839488983, + -0.019737742841243744, + 0.007818196900188923, + -0.0005008637672290206, + 0.01892826519906521, + -0.000279944040812552, + 0.030679170042276382, + -0.021950311958789825, + -0.031596578657627106, + -0.01822671853005886, + -0.0028382278978824615, + -0.0018179499311372638, + -0.017241856083273888, + -0.004553306847810745, + 0.02108686976134777, + 0.006408357992768288, + 0.005231243558228016, + 0.03030141443014145, + -0.002480708993971348, + -0.012897663749754429, + 0.003592053195461631, + -0.00022850855020806193, + 0.01775452494621277, + -0.020911483094096184, + 0.019306020811200142, + 0.017484698444604874, + 0.004428512416779995, + 0.0021063259337097406, + -0.01945442520081997, + -0.015299111604690552, + 0.00831062812358141, + -0.003487495705485344, + -0.00022155210899654776, + 0.0024250575806945562, + -0.01222309935837984, + 0.007784468587487936, + -0.011197762563824654, + 0.042605459690093994, + -0.026645276695489883, + 0.010550180450081825, + -0.02691510319709778, + -0.010246627032756805, + -0.018429087474942207, + 0.0014477829681709409, + -0.0007289507193490863, + -0.01431424729526043, + 0.02046627178788185, + 0.00030502938898280263, + 0.006873806938529015, + -0.030355378985404968, + 0.02736031450331211, + -0.02516123652458191, + -0.0025245556607842445, + -0.010799769312143326, + 0.009814905934035778, + -0.007663046941161156, + -0.00802731141448021, + -0.00596989132463932, + -0.019683776423335075, + 0.0010008843382820487, + -0.01344406045973301, + -0.006948009133338928, + 0.0012555322609841824, + -0.014219808392226696, + 0.00827015470713377, + -0.020857518538832664, + -0.006064330227673054, + 0.00558201689273119, + 0.00048315644380636513, + 0.027630141004920006, + 0.00885027926415205, + -0.016715696081519127, + 0.0036797465290874243, + 0.005534797441214323, + -0.0008520586416125298, + -0.0037067290395498276, + 0.009167324751615524, + -0.008135241456329823, + 0.0007032329449430108, + -0.03135373443365097, + -0.013241690583527088, + 0.022044751793146133, + 0.038585059344768524, + 0.005760776344686747, + 0.0228677187114954, + -0.012337774969637394, + -0.030004605650901794, + -0.01825370080769062, + -0.0013499711640179157, + -0.01116403378546238, + -0.01140687707811594, + 0.0028972523286938667, + -0.026092134416103363, + -0.02673971652984619, + 0.027562685310840607, + 0.009902599267661572, + 0.0005944595322944224, + 0.012573872692883015, + -0.009895853698253632, + -0.0012799851829186082, + -0.005396511871367693, + 0.02447318099439144, + 0.001027866848744452, + 0.020169463008642197, + -0.016445869579911232, + -0.019306020811200142, + 0.004553306847810745, + 0.003986672963947058, + 0.009457387030124664, + 0.008141987025737762, + 0.005187396891415119, + -0.00022302771685644984, + 0.004226143471896648, + 0.0005636825226247311, + -0.012654820457100868, + -0.015703849494457245, + 0.005528051871806383, + 0.015299111604690552, + 0.019589338451623917, + 0.00827690027654171, + -0.01222309935837984, + -0.004644372966140509, + -0.004715202376246452, + -0.00529195461422205, + 0.0108672259375453, + -0.012567127123475075, + -0.010678348131477833, + -0.004614017438143492, + -0.0060845669358968735, + 0.022449489682912827, + -0.007838433608412743, + 0.0003634213353507221, + 0.007501151412725449, + -0.003339091781526804, + -0.020277393981814384, + -0.0028787017799913883, + 0.00037438300205394626, + 0.011568772606551647, + 0.009592300280928612, + -0.023218492045998573, + -0.014341230504214764, + -0.009167324751615524, + -0.006452204659581184, + -0.0004637627280317247, + 0.004229516256600618, + 0.01031408365815878, + -0.00967324711382389, + 0.00016442497144453228, + 0.017862454056739807, + -0.013417077250778675, + 0.01511023286730051, + -0.02447318099439144, + -0.0033137956634163857, + -0.0023778381291776896, + -0.0041924151591956615, + -0.016702204942703247, + -0.004482477903366089, + -0.00802731141448021, + -0.024729516357183456, + 0.012020730413496494, + -0.02274629846215248, + -0.017012502998113632, + -0.002964708721265197, + -0.007460677530616522, + 0.00284666009247303, + 0.013619447126984596, + 0.00031662348192185163, + 0.011002138257026672, + 0.02110036090016365, + 0.00544710410758853, + -0.017012502998113632, + 0.00036995619302615523, + 0.004266617354005575, + -0.023016123101115227, + 0.010233135893940926, + 0.008964955806732178, + 0.013471042737364769, + 0.005733794067054987, + -0.0016999011859297752, + 0.008728858083486557, + 0.00529532739892602, + 0.002296890364959836, + -0.012088187038898468, + 0.0165672916918993, + -0.018712405115365982, + -0.004833250772207975, + -0.0001876131136668846, + -0.026577821001410484, + -0.020075025036931038, + -0.0007795430137775838, + -0.007595590315759182, + 0.012809970416128635, + -0.023124054074287415, + -0.0008309785043820739, + -0.03197433426976204, + 0.024689041078090668, + 0.002047301735728979, + 0.011332674883306026, + -0.0014081522822380066, + 0.02462158538401127, + 8.468940359307453e-5, + -0.01509674172848463, + -0.007501151412725449, + 0.017929911613464355, + 0.05086212605237961, + 0.0033660742919892073, + 0.016850607469677925, + -0.0014739222824573517, + -0.0035785618238151073, + -0.00020658521680161357, + -0.01828068308532238, + 0.0023390506394207478, + 0.00598675524815917, + -0.008452286943793297, + 0.016256991773843765, + 0.020830536261200905, + 0.0057641491293907166, + -0.006681556347757578, + 0.017484698444604874, + -0.0013887586537748575, + -0.012573872692883015, + -0.012917900457978249, + -0.010678348131477833, + -0.01423330046236515, + 0.0023272456601262093, + -0.018550509586930275, + 0.00852648913860321, + 0.024365251883864403, + 0.015838762745261192, + -0.016850607469677925, + -0.009072885848581791, + 0.019130634143948555, + 0.013498025014996529, + 0.0006598078762181103, + 0.003406548174098134, + -0.014449160546064377, + 0.0011003825347870588, + 0.02795393206179142, + -0.020236918702721596, + 0.010961664840579033, + -0.012506416067481041, + 0.01775452494621277, + -0.015407041646540165, + 0.02454063855111599, + -0.006641082465648651, + -0.0029006251133978367, + 0.004374547395855188, + -0.02277328073978424, + -0.012756004929542542, + 0.018469562754034996, + -0.03084106557071209, + -0.010077985934913158, + -0.0012631210265681148, + -0.018550509586930275, + -0.006290309131145477, + 0.024823954328894615, + -0.001981531735509634, + 0.021828889846801758, + 0.012034221552312374, + 0.0020810298155993223, + -0.023515300825238228, + 0.01401743944734335, + 0.011029121465981007, + 0.002163663972169161, + 0.02118130959570408, + 0.001775789656676352, + -0.017889436334371567, + 0.023016123101115227, + -0.0043678018264472485, + 0.004796150140464306, + -0.010388284921646118, + -0.0015818525571376085, + 0.00027867924654856324, + -0.0036696281749755144, + -0.006361138541251421, + 0.0036966106854379177, + -0.03888186812400818, + 0.01873938739299774, + 0.012378249317407608, + -0.030355378985404968, + -0.005261599086225033, + -0.01822671853005886, + 0.023596247658133507, + 0.005241362378001213, + -0.012162388302385807, + 0.01664823852479458 + ], + "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72": [ + -0.0009002945735119283, + -0.021353183314204216, + -0.013763315975666046, + -0.003667990444228053, + -0.011698818765580654, + -0.009053055197000504, + 0.006380566395819187, + 0.04682200029492378, + 0.006066549103707075, + 0.08626792579889297, + -0.010155456140637398, + -0.017197463661432266, + 0.028862876817584038, + 0.010743403807282448, + 0.013335717841982841, + 0.0044730775989592075, + -0.024640344083309174, + 0.0026774993166327477, + -0.03623894602060318, + 0.0007094622123986483, + 0.028702527284622192, + -0.0019158401992172003, + -0.017023751512169838, + 0.003701396519318223, + 0.009741220623254776, + -0.025241654366254807, + -0.01988331414759159, + -0.015393533743917942, + -0.04361501336097717, + -0.027580080553889275, + -0.015006023459136486, + 0.00472028274089098, + 0.019175104796886444, + 0.014057289808988571, + -0.0020361021161079407, + -0.016342267394065857, + -0.016248730942606926, + 0.0030483072623610497, + -0.04885309189558029, + -0.009019648656249046, + 0.004326090682297945, + 0.003275468712672591, + 0.025041216984391212, + -0.001443978981114924, + -0.002949759131297469, + 0.012660914100706577, + -0.011511744000017643, + 0.01690348982810974, + 0.02132645808160305, + -0.0020895518828183413, + 0.0004113126778975129, + 0.013923665508627892, + 0.0010589736048132181, + 0.03730794042348862, + 0.018319908529520035, + -0.008090958930552006, + -0.008845937438309193, + 0.05147212743759155, + -0.0020060366950929165, + -0.0331655815243721, + 0.02457353100180626, + -0.02931719832122326, + 0.00024699640925973654, + 0.019869951531291008, + -0.020578160881996155, + 0.014364625327289104, + 0.005197990220040083, + 0.01902811788022518, + 0.005795959383249283, + 0.01857379451394081, + -0.024453269317746162, + -0.04070200026035309, + -0.03487597405910492, + 0.025428729131817818, + 0.021433357149362564, + 0.012994975782930851, + 0.04214514419436455, + 0.03217676281929016, + 0.027259383350610733, + -0.02918357402086258, + -8.027905278140679e-5, + -0.005916221532970667, + 0.00630373228341341, + 0.01938890479505062, + 0.013516110368072987, + 0.004559933673590422, + -0.04644785076379776, + -0.035944972187280655, + -0.02859562635421753, + -0.005655653774738312, + 0.01550043374300003, + -0.0005507831810973585, + -0.000416114809922874, + 0.021219559013843536, + 0.008572006598114967, + 0.005077728070318699, + 0.024226108565926552, + 0.015406896360218525, + -0.0052881864830851555, + -0.022569164633750916, + -0.010115369223058224, + 0.013749953359365463, + -0.014297813177108765, + 0.0025973247829824686, + 0.0230903010815382, + 0.001017215894535184, + 0.0017504800343886018, + -0.0006071559619158506, + 0.023731697350740433, + 0.028809426352381706, + -0.023517899215221405, + -0.04519177973270416, + 0.004145697690546513, + -0.03289833292365074, + 0.007676723413169384, + -0.02624383755028248, + -0.04241239279508591, + 0.017611699178814888, + -0.003178591141477227, + -0.02109929732978344, + 0.05291527137160301, + 0.007329299580305815, + 0.02620374970138073, + -0.011632006615400314, + 0.0005591346998699009, + 0.01671641506254673, + 0.010603098198771477, + 0.05307562276721001, + 0.04567283019423485, + -0.00643735658377409, + 0.01925528049468994, + 0.007182312663644552, + 0.0266580730676651, + -0.022756239399313927, + -0.030599992722272873, + -0.0011925980215892196, + 0.002228187397122383, + 0.03289833292365074, + -0.00844506360590458, + 0.0028044425416737795, + -0.04436330869793892, + 0.018921218812465668, + 0.006230238825082779, + 0.00885261781513691, + -0.0023484493140131235, + -0.0177987739443779, + -0.04973500967025757, + 0.07947980612516403, + -0.03696051612496376, + 0.033593181520700455, + -0.009340347722172737, + -0.021580344066023827, + -0.045699555426836014, + -0.006861614063382149, + 0.03971317782998085, + 0.014631874859333038, + -0.008298076689243317, + 0.045298680663108826, + 0.03971317782998085, + 0.025548990815877914, + 0.01563405804336071, + -0.014498250558972359, + 0.012146459892392159, + -0.005879474803805351, + 0.06333797425031662, + -0.009848120622336864, + 0.061467234045267105, + 0.04527195543050766, + -0.02155362069606781, + 0.010496198199689388, + 0.02566925249993801, + 0.018774231895804405, + 0.03311213105916977, + 0.0038918114732950926, + 0.00446305563673377, + -0.0033355997875332832, + -0.010536286048591137, + -0.02339763753116131, + 0.032283660024404526, + 0.006738011725246906, + -0.022716151550412178, + -0.008545282296836376, + 0.019308729097247124, + 0.013830128125846386, + 0.005455217324197292, + 0.008304757997393608, + 0.004690217319875956, + -0.04350811243057251, + 0.002876265672966838, + 0.035357024520635605, + 0.01550043374300003, + -0.030599992722272873, + 0.04278654232621193, + 0.034448377788066864, + -0.005004234611988068, + 0.007322618737816811, + -0.0019308729097247124, + -0.016636241227388382, + -0.00693510752171278, + 0.056229159235954285, + 0.011304626241326332, + -0.028274929150938988, + -0.028274929150938988, + 0.005852750036865473, + -0.06130688637495041, + 0.020738510414958, + -0.019215192645788193, + 0.014351263642311096, + 0.017371175810694695, + -0.008050872012972832, + 0.05906199663877487, + 0.005301549099385738, + 0.03880453482270241, + -0.008839256130158901, + 0.024453269317746162, + 0.007015282288193703, + 0.006661177612841129, + 0.028408553451299667, + -0.012012835592031479, + -0.014231001026928425, + 0.04564610496163368, + 0.011718861758708954, + 0.01543362159281969, + -0.01694357767701149, + -0.03086724318563938, + -0.0070620509795844555, + -0.030706893652677536, + 0.0035644315648823977, + -0.005829365458339453, + -0.06788121163845062, + -0.00042091694194823503, + 0.0016669647302478552, + 0.0076700421050190926, + -0.0047804140485823154, + 0.004643448628485203, + 0.023998945951461792, + 0.03530357405543327, + -0.010963884182274342, + -0.019535891711711884, + 0.012767814099788666, + -0.010175500065088272, + 0.029156848788261414, + -0.04537885636091232, + -0.0266580730676651, + -0.03674671798944473, + 0.004185785073786974, + -0.01102401502430439, + 0.06157413497567177, + 0.010723359882831573, + 0.02937064878642559, + -0.013776678591966629, + -0.0015876252437010407, + 0.03153536468744278, + 0.0006075735436752439, + -0.018894493579864502, + 0.01874750666320324, + 0.03944592922925949, + -0.033325932919979095, + -0.020257463678717613, + -0.037788987159729004, + -0.011892573907971382, + 0.009220085106790066, + -0.059756841510534286, + 0.005759212654083967, + 0.032684534788131714, + -0.039926979690790176, + 0.04417623579502106, + 0.008197858929634094, + 0.02385196089744568, + 0.014431438408792019, + 0.021847594529390335, + -0.05189972743391991, + -0.022221742197871208, + 0.026096850633621216, + 0.011932660825550556, + -0.02660462260246277, + -0.014685324393212795, + 0.01459178701043129, + 0.014471525326371193, + 0.015086197294294834, + 0.003358983900398016, + 0.04952121153473854, + 0.033138856291770935, + -0.010796853341162205, + -0.013469342142343521, + 0.019455716013908386, + -0.032818157225847244, + 0.006510850042104721, + -0.03690706565976143, + 0.03492942452430725, + 0.028408553451299667, + -0.017825499176979065, + -0.033673353493213654, + -0.033673353493213654, + -0.0015567245427519083, + -0.0072157192043960094, + -0.014097376726567745, + 0.0036579687148332596, + 0.01215314120054245, + 0.011625325307250023, + -0.010790172033011913, + 0.006330457050353289, + -0.010810215957462788, + 0.01115763932466507, + -0.015740957111120224, + -0.019535891711711884, + 0.020898859947919846, + -0.00924012903124094, + -0.004489780869334936, + 0.009848120622336864, + 0.033272482454776764, + -0.014925848692655563, + -0.032150037586688995, + -0.06055859103798866, + 0.014418075792491436, + -0.009874844923615456, + -0.05107125639915466, + 0.0013913643779233098, + -0.01472541131079197, + 0.025067942216992378, + -0.028836151584982872, + 0.010563011281192303, + -0.014818948693573475, + 0.002296669874340296, + 0.032737985253334045, + -0.007269168738275766, + 0.032684534788131714, + 0.011284582316875458, + -0.00527482433244586, + -0.010215586982667446, + -0.012012835592031479, + -0.03541047126054764, + -0.0068014832213521, + 0.0028011021204292774, + -0.023958859965205193, + -0.01206628605723381, + -0.026003314182162285, + -0.01280790101736784, + -0.039419203996658325, + -0.005425151903182268, + -0.00029167707543820143, + 0.014712049625813961, + 0.019455716013908386, + 0.019575977697968483, + -0.05107125639915466, + -0.014110739342868328, + 0.052113525569438934, + -0.009600915014743805, + 0.0075497799552977085, + -0.028622351586818695, + 0.0007211543270386755, + 0.0016970301512628794, + 0.01838672161102295, + -0.03204313665628433, + 0.016689691692590714, + -0.024252833798527718, + -0.03482252359390259, + -0.010910434648394585, + 0.02377178519964218, + -0.015126285143196583, + -0.039339032024145126, + -0.039339032024145126, + -0.0006810670020058751, + -0.013663097284734249, + -0.006109976675361395, + 0.022435540333390236, + 0.020751873031258583, + -0.014939210377633572, + -0.04829186573624611, + -0.03495614975690842, + -0.025468815118074417, + 0.018413444980978966, + -0.024640344083309174, + -0.03217676281929016, + -0.02557571418583393, + -0.029343923553824425, + 0.021259646862745285, + -0.014631874859333038, + 0.027900779619812965, + 0.024426545947790146, + -0.02669816091656685, + 0.03506305068731308, + -0.04075545072555542, + -0.02186095528304577, + 0.03696051612496376, + -0.026217112317681313, + 0.011251176707446575, + -0.0237584225833416, + 0.0037080778274685144, + -0.020163925364613533, + -0.004289343953132629, + -0.025041216984391212, + 0.0024486675392836332, + -0.017972486093640327, + -0.000691923953127116, + -0.03415440395474434, + 0.006196832749992609, + -0.03599841892719269, + 0.015099559910595417, + 0.0044096061028540134, + 0.030065495520830154, + -0.022943314164876938, + -0.03530357405543327, + -0.002861232962459326, + -0.04797117039561272, + -0.011237814091145992, + -0.02282305248081684, + 0.02326401323080063, + 0.004950785078108311, + 0.026283925399184227, + -0.011652049608528614, + 0.0050175972282886505, + -0.025829602032899857, + 0.020578160881996155, + 0.007402793038636446, + -0.015607332810759544, + -0.023704973980784416, + 0.03952610492706299, + -0.03717431426048279, + -0.005324933212250471, + 0.032283660024404526, + 0.03789588809013367, + -0.01149838138371706, + 0.014311175793409348, + 0.03663981705904007, + 0.01308183092623949, + 0.028141304850578308, + 0.023571347817778587, + 0.005314911715686321, + -0.011211088858544827, + 0.012574058026075363, + 0.029130125418305397, + -0.01572759449481964, + 0.047730643302202225, + 0.02096567302942276, + 0.006053186487406492, + 0.002261593472212553, + 0.0006844075978733599, + -0.008592050522565842, + -0.02335754968225956, + -0.02105920948088169, + 0.05280837416648865, + 0.007609911262989044, + 0.00646074116230011, + -0.04519177973270416, + -0.006814845837652683, + -0.03303195908665657, + -0.012253359891474247, + 0.003671331098303199, + 0.0007508022245019674, + 0.028114579617977142, + 0.042091693729162216, + -0.0015567245427519083, + 0.008932792581617832, + 0.009701133705675602, + 0.018640607595443726, + 0.020952310413122177, + 0.01612846739590168, + 0.020524712279438972, + -0.037521738559007645, + 0.009273535571992397, + -0.016836676746606827, + 0.0688433051109314, + -0.049360863864421844, + 0.0012878053821623325, + -0.011030696332454681, + 0.008551963604986668, + -0.003958623390644789, + -0.020671699196100235, + -0.0030516479164361954, + -0.007055369671434164, + -0.03062671795487404, + -0.017972486093640327, + 0.017584973946213722, + 0.02612357586622238, + -0.00422253180295229, + -0.03468890115618706, + -0.017611699178814888, + -0.01806602254509926, + -0.012640871107578278, + -0.011638687923550606, + -0.010649866424500942, + -0.0024319645017385483, + -0.005111134145408869, + 0.0390450581908226, + 0.006066549103707075, + -0.0367734432220459, + 0.029076674953103065, + -0.02394549734890461, + 0.014925848692655563, + 0.0009236788609996438, + 0.02741973288357258, + -0.01785222254693508, + 0.03086724318563938, + -0.01960270293056965, + -0.0195626150816679, + 0.022021304816007614, + -0.029718073084950447, + 0.000858536921441555, + 0.003671331098303199, + -0.02199457958340645, + -0.035036325454711914, + 0.038831256330013275, + 0.0012518938165158033, + -0.024613618850708008, + 0.026805059984326363, + -0.0010965554974973202, + 0.04567283019423485, + 0.00537504255771637, + -0.014832311309874058, + -0.028114579617977142, + 0.06317763030529022, + -0.030733617022633553, + 0.016288816928863525, + 0.0023183838929980993, + 0.017184101045131683, + -0.016916852444410324, + -0.03166898712515831, + 0.013763315975666046, + -0.00742283696308732, + -0.014043927192687988, + -0.015072835609316826, + -0.01984322816133499, + -0.01326222438365221, + 0.0020026960410177708, + 0.008952836506068707, + -0.012747770175337791, + -0.0007416155422106385, + 0.054465316236019135, + 0.001969289965927601, + -0.004763710778206587, + 0.007783622946590185, + -0.02371833473443985, + 0.006313754245638847, + -0.00791056640446186, + -0.0020528051536530256, + 0.01285467017441988, + -0.0177987739443779, + -0.035677719861269, + -0.011905936524271965, + 0.00742283696308732, + 0.047196146100759506, + 0.0052681430242955685, + -0.00958087109029293, + 0.0006956821889616549, + 0.025321828201413155, + -0.0003718517255038023, + -0.008491831831634045, + -0.007603229954838753, + -0.019094930961728096, + -0.016422441229224205, + 0.0010689954506233335, + -0.022662702947854996, + -0.00971449539065361, + -0.010930477641522884, + -0.014965935610234737, + -0.0024302941747009754, + -0.026671435683965683, + 0.0007470440468750894, + 0.007877159863710403, + 0.003714759135618806, + 0.017144013196229935, + 0.008057553321123123, + 0.028248203918337822, + -0.012961569242179394, + 0.007249125279486179, + -0.03872435912489891, + 0.015928031876683235, + 0.007249125279486179, + 0.01346266083419323, + 0.01580777019262314, + -0.004860588349401951, + 0.025281742215156555, + 0.010255674831569195, + 0.004142357036471367, + 0.014418075792491436, + 0.014070652425289154, + -0.005361679941415787, + -0.03554409742355347, + 0.0283818282186985, + 0.02105920948088169, + -0.014404713176190853, + 0.024867504835128784, + -0.01133803278207779, + 0.015139647759497166, + 0.006684561725705862, + 0.008338164538145065, + -0.03487597405910492, + -0.051258329302072525, + 0.042813267558813095, + -0.016008205711841583, + 0.020444536581635475, + 0.007503011729568243, + -0.01568750850856304, + -0.034261301159858704, + 0.015540520660579205, + -0.001655272557400167, + -0.0004129830049350858, + -0.017331087961792946, + 0.013950389809906483, + 0.04690217226743698, + 0.0039285579696297646, + -0.013763315975666046, + -0.015740957111120224, + -0.04126322269439697, + -0.0016193609917536378, + -0.01061646081507206, + 0.004015414044260979, + -0.0032387219835072756, + -0.018400084227323532, + 0.053556669503450394, + -0.0012694320175796747, + 0.016502616927027702, + -0.03113449178636074, + -0.008471788838505745, + 0.03335265815258026, + -0.0069417888298630714, + 0.03428802639245987, + 0.013589603826403618, + 0.009053055197000504, + 0.03728121519088745, + -0.007028644904494286, + 0.025014491751790047, + -0.01233353465795517, + -0.0027827287558466196, + -0.003118460066616535, + -0.025562353432178497, + -0.02846200205385685, + -0.008545282296836376, + -0.012146459892392159, + -0.018734144046902657, + -0.010870346799492836, + -0.02566925249993801, + 9.917438319462235e-7, + 0.00996170099824667, + -0.044523660093545914, + 0.006400609854608774, + 0.02697877213358879, + 0.011986111290752888, + 0.000834317528642714, + -0.01586121879518032, + -0.0021463423036038876, + 0.015059472993016243, + 0.009159954264760017, + -0.013856853358447552, + 0.04433658346533775, + 0.00232673529535532, + 0.04243911802768707, + 0.017237551510334015, + 0.014057289808988571, + 0.026684798300266266, + 0.011698818765580654, + 0.02155362069606781, + 0.0004814655112568289, + -0.004342793952673674, + -0.02760680578649044, + -0.0016602835385128856, + -0.012761132791638374, + 0.00786379724740982, + -0.022221742197871208, + -0.01149838138371706, + -0.0036746717523783445, + 0.026818422600626945, + 0.007335980888456106, + 0.03696051612496376, + 0.008692269213497639, + 0.00515122152864933, + -0.012600783258676529, + -0.01023563090711832, + 0.03375352919101715, + -0.022288553416728973, + -0.0380295105278492, + -0.02199457958340645, + 0.01910829357802868, + -0.016823315992951393, + -0.03003877028822899, + 0.022061392664909363, + 0.0010573032777756453, + -0.0019559275824576616, + -0.0047804140485823154, + -0.033058684319257736, + -0.019950127229094505, + -0.03658636659383774, + -0.00024323821708094329, + -0.022061392664909363, + -0.010476155206561089, + -0.010208905674517155, + 0.015326721593737602, + -0.04513832926750183, + -0.00885261781513691, + -0.029878420755267143, + 0.05470583960413933, + -0.024333007633686066, + -0.012166503816843033, + 0.0015041099395602942, + 0.02318383753299713, + -0.005014256574213505, + -0.028755975887179375, + -0.008257989771664143, + -0.02208811789751053, + -0.005662335082888603, + 0.02083204872906208, + 0.004536549095064402, + -0.014311175793409348, + 0.023143749684095383, + 0.000419037853134796, + 0.010623142123222351, + -0.011598600074648857, + 0.04297361522912979, + -0.013990477658808231, + 0.0027977614663541317, + -0.027713706716895103, + -0.022970039397478104, + -0.00202775071375072, + 0.011424888856709003, + -0.03244401142001152, + -0.03893815726041794, + 0.02168724499642849, + -0.014271088875830173, + 0.019175104796886444, + -0.03297850862145424, + 0.023972222581505775, + -0.012453796342015266, + -0.027686981484293938, + -0.05377046763896942, + 0.027352919802069664, + 0.006190151441842318, + -0.029424099251627922, + 0.018186284229159355, + 0.004947444424033165, + 0.007663360796868801, + -0.013977115042507648, + 0.03094741702079773, + -0.0014456493081524968, + 0.0022215060889720917, + -0.018974669277668, + -0.020097114145755768, + -0.00048772915033623576, + 0.01978977769613266, + -0.014631874859333038, + -0.01445816271007061, + -0.010402661748230457, + 0.012433752417564392, + 0.0033673355355858803, + -0.003925217315554619, + 0.00958087109029293, + -0.012707683257758617, + -0.023023488000035286, + -0.039339032024145126, + 0.022208379581570625, + 0.022569164633750916, + -0.03035946935415268, + 0.04575300216674805, + 0.014818948693573475, + 0.0025321829598397017, + 0.019629428163170815, + 0.015099559910595417, + -0.00010486385872354731, + -0.002951429458335042, + 0.03728121519088745, + -0.01757161132991314, + 0.017250914126634598, + -0.015540520660579205, + 0.005438514053821564, + -0.019175104796886444, + 0.026217112317681313, + 0.010375936515629292, + -0.0029898465145379305, + 0.02443990670144558, + 0.027099033817648888, + 0.030306018888950348, + 0.021941130980849266, + -0.0022048030514270067, + -0.015420258976519108, + -0.015006023459136486, + -0.028943050652742386, + 0.021433357149362564, + 0.016876764595508575, + 0.03923213109374046, + -0.013496067374944687, + -0.007923928089439869, + -0.0555877611041069, + 0.02457353100180626, + 0.02647099830210209, + -0.0031986346002668142, + -0.022849777713418007, + 0.03388715535402298, + 0.007249125279486179, + 0.017050476744771004, + -0.0034408289939165115, + -0.027005497366189957, + -0.012981613166630268, + 0.005508666858077049, + 0.031882788985967636, + -0.011458294466137886, + 0.007102138362824917, + 0.01465859916061163, + 0.00283617852255702, + -0.02819475345313549, + -0.016235368326306343, + 0.008906068280339241, + -0.01465859916061163, + 0.006915064062923193, + 0.020685061812400818, + 0.020591523498296738, + -0.0015909657813608646, + -0.004997553303837776, + -0.01439135055989027, + -0.014244363643229008, + 0.01749143749475479, + 0.010462792590260506, + -0.010429386049509048, + -0.0011508403113111854, + -0.009026329964399338, + 0.0011074123904109001, + 0.0007771095260977745, + 0.010830259881913662, + 0.005986374337226152, + 0.03578462079167366, + 0.015153009444475174, + 0.0048973350785672665, + -0.0005223879707045853, + 0.017331087961792946, + 0.004219191148877144, + 0.028702527284622192, + -0.026724884286522865, + 0.004743667319417, + -0.025001129135489464, + 0.01747807487845421, + -0.015754319727420807, + -0.0009328655432909727, + -0.07392103224992752, + -0.015593970194458961, + -0.008398295380175114, + 0.0015441973228007555, + 0.018627244979143143, + -0.01608838140964508, + 0.02020401321351528, + -0.009941657073795795, + 0.02684514783322811, + 0.005508666858077049, + -0.015219822525978088, + 0.023531261831521988, + -0.013228817842900753, + -0.0073560248129069805, + 0.01747807487845421, + 0.009293578565120697, + -0.007315937429666519, + 0.0367734432220459, + 0.014150826260447502, + 0.027713706716895103, + 0.03244401142001152, + 0.024466631934046745, + 0.032818157225847244, + -0.02779388055205345, + 0.010402661748230457, + 0.04153047129511833, + -0.0025956544559448957, + -0.005826024804264307, + -0.00020419483189471066, + 0.00468687666580081, + 0.00748964911326766, + 0.005632269661873579, + -7.646866288268939e-5, + 0.00783707294613123, + -0.002134650247171521, + 0.016729777678847313, + 0.00791056640446186, + 0.0013955400791019201, + 0.0036880341358482838, + -0.007142225746065378, + -0.005087750032544136, + -0.0024002287536859512, + -0.003734802594408393, + 0.0044096061028540134, + -0.046421125531196594, + 0.0011065772268921137, + -0.0011951035121455789, + -0.04356156289577484, + 0.024333007633686066, + 0.002610687166452408, + 0.0066144089214503765, + 0.017518162727355957, + -0.008792486973106861, + 0.017317725345492363, + 0.01802593469619751, + 0.03682688996195793, + -0.025014491751790047, + 0.0074094743467867374, + 0.010335849598050117, + -0.006651155650615692, + 0.0006501663592644036, + -0.02620374970138073, + 0.0068883392959833145, + -0.009166635572910309, + 0.016475891694426537, + -0.009467290714383125, + -0.0029247046913951635, + -0.00623692013323307, + 0.031882788985967636, + 0.0014080674154683948, + -0.01884104311466217, + 0.0045866584405303, + -0.010255674831569195, + 0.0020227397326380014, + -0.02963789738714695, + 0.028114579617977142, + 0.002418602118268609, + -0.003925217315554619, + -0.004329431336373091, + 8.998769772006199e-5, + -0.009066416881978512, + -0.014872398227453232, + -0.006347160320729017, + 0.051979903131723404, + -0.004807138815522194, + 0.02159370668232441, + -0.028996501117944717, + -0.01576768234372139, + 0.005034300033003092, + 0.0035510691814124584, + 0.0012276744237169623, + 0.012179866433143616, + -0.03260435909032822, + -0.02995859645307064, + -0.033726803958415985, + -0.0225825272500515, + 0.01572759449481964, + -0.022074755281209946, + 0.009687771089375019, + -0.0012260040966793895, + -0.012340215966105461, + 0.011565194465219975, + -0.03121466562151909, + -0.009808032773435116, + -0.024653706699609756, + -0.01844017021358013, + 0.009073098190128803, + -0.015781044960021973, + 0.010763447731733322, + 0.0035310254897922277, + 0.0023985584266483784, + 0.030840517953038216, + 0.019094930961728096, + -0.01825309731066227, + -0.009073098190128803, + -0.0005098606925457716, + 0.008939473889768124, + -0.00017360736092086881, + -0.0007153082406148314, + -0.003915195818990469, + -0.014859036542475224, + -0.021406633779406548, + 0.01133803278207779, + 0.012908119708299637, + 0.013476023450493813, + -0.008338164538145065, + 0.0061467234045267105, + -0.007790304254740477, + 0.008425019681453705, + -0.018146196380257607, + -0.03688034042716026, + 0.00022340333089232445, + 0.016115106642246246, + -0.0023517899680882692, + -0.001671975594945252, + 0.011003971099853516, + 0.04420296102762222, + -0.010195543989539146, + 0.005498644895851612, + -0.009741220623254776, + -0.027125759050250053, + -0.020364362746477127, + -0.017651787027716637, + -0.017090564593672752, + -0.015834493562579155, + -0.03872435912489891, + -0.0032236892729997635, + 0.014030564576387405, + -0.0036078596021980047, + 0.028114579617977142, + -0.02087213471531868, + 0.018453532829880714, + -0.04006060212850571, + 0.021179471164941788, + 0.01582113280892372, + -0.012139779515564442, + 0.005919562187045813, + 0.012072966434061527, + -0.004914038348942995, + 0.033913880586624146, + -0.004242575727403164, + 0.011191045865416527, + 0.017745323479175568, + 0.009367072023451328, + -0.00023739214520901442, + -0.0009036351693794131, + -0.01267427671700716, + 0.006601046770811081, + -0.01568750850856304, + 0.0008021641406230628, + 0.012173185124993324, + -0.006250282283872366, + 0.021807506680488586, + 0.010208905674517155, + 0.03877780959010124, + 0.01973632723093033, + 0.0017838861094787717, + -0.018400084227323532, + 0.023103663697838783, + -0.01789231039583683, + -0.00683488929644227, + -0.017130650579929352, + -0.0018774231430143118, + 0.018600519746541977, + 0.026537811383605003, + 0.015593970194458961, + 0.011177683249115944, + 0.001967619638890028, + 0.022021304816007614, + -0.007830391637980938, + 0.0018674012972041965, + -0.03840366005897522, + 0.023437723517417908, + -0.013582922518253326, + 0.007396112196147442, + 0.029210299253463745, + -0.019963489845395088, + 0.037575189024209976, + -0.025896413251757622, + 0.008886024355888367, + -0.01312191877514124, + -6.456774281105027e-5, + 0.01531335897743702, + -0.0059295836836099625, + 0.0013412551488727331, + 0.014217639341950417, + -0.054331690073013306, + -0.026324011385440826, + 0.007362705655395985, + 0.003911855164915323, + 0.0013855182332918048, + -0.020484624430537224, + -0.01246715895831585, + 0.003011560533195734, + 0.01925528049468994, + -0.00521803367882967, + 0.020351000130176544, + -0.024920955300331116, + 0.008224583230912685, + 0.03525012359023094, + 0.00738943088799715, + 0.007249125279486179, + 0.011999472975730896, + -0.02806112915277481, + 0.02660462260246277, + -0.015754319727420807, + -0.014177551493048668, + -0.0033756871707737446, + 0.002450337866321206, + -0.007556461263448, + -0.033726803958415985, + 0.03479580208659172, + 0.029023224487900734, + 0.02679169736802578, + -0.013255543075501919, + 0.0031468551605939865, + 0.02859562635421753, + -0.008391614072024822, + 0.020725147798657417, + -0.01452497486025095, + -0.023157112300395966, + 0.01167877484112978, + 0.0013830128591507673, + -0.007008600980043411, + 0.042171869426965714, + 0.010716678574681282, + 0.007803666405379772, + 0.007035326212644577, + 0.0034475100692361593, + -0.030252570286393166, + 0.0026624666061252356, + -0.012868031859397888, + 0.023157112300395966, + -0.04847894236445427, + 0.006083251908421516, + 0.009801351465284824, + 0.0008877672953531146, + 0.012727726250886917, + 0.013288948684930801, + -0.02187431789934635, + 0.008739037439227104, + 0.0024486675392836332, + 0.0063772257417440414, + -0.008104321546852589, + 0.012146459892392159, + 0.016743140295147896, + 0.03851056098937988, + -0.0002639082376845181, + -0.028702527284622192, + -0.002983165206387639, + -0.023972222581505775, + 0.0019809820223599672, + -0.021019121631979942, + 0.014792224392294884, + 0.015286634676158428, + 0.004509824328124523, + -0.013636372983455658, + -0.005792618729174137, + 0.04251929372549057, + 0.034314751625061035, + 0.02553562819957733, + -0.010422705672681332, + 0.010015150532126427, + 0.046474575996398926, + -0.015700869262218475, + 0.00481047946959734, + -0.021754056215286255, + -0.0033974009566009045, + 0.008511875756084919, + -0.030787067487835884, + -0.013088512234389782, + -0.011130915023386478, + -0.01806602254509926, + 0.0015968119259923697, + -0.006881657987833023, + 0.008284714072942734, + 0.0272059328854084, + 0.03292505815625191, + 0.03158881515264511, + 0.028435278683900833, + -0.001952586928382516, + 0.042546018958091736, + -0.005565457511693239, + -0.010429386049509048, + 0.012306809425354004, + -0.004209169186651707, + 0.0022231764160096645, + -0.017558248713612556, + -0.01538017112761736, + 0.004576636478304863, + 0.016422441229224205, + -0.0017855564365163445, + 0.006981876213103533, + 0.008351526223123074, + -0.009861482307314873, + -0.011331351473927498, + -0.005020937882363796, + -0.00903969258069992, + -0.01978977769613266, + -0.017331087961792946, + -0.02741973288357258, + -0.009387115947902203, + -0.010943840257823467, + 0.007102138362824917, + 0.004175763111561537, + 0.018359996378421783, + 0.0032737983856350183, + 0.012647551484405994, + -0.008491831831634045, + -0.004112291615456343, + -0.013255543075501919, + 0.014311175793409348, + -0.050349682569503784, + -0.008057553321123123, + -0.011692137457430363, + -0.008986243046820164, + 0.0023801850620657206, + -0.0058961776085197926, + -0.003340610535815358, + -0.0030082198791205883, + 0.00587279349565506, + -0.020631611347198486, + -0.03321903198957443, + -0.03452855348587036, + 0.0039886892773211, + -0.0320698618888855, + -0.007730172947049141, + 0.0015776033978909254, + -0.004339453298598528, + -0.022021304816007614, + -0.019950127229094505, + 0.01213309820741415, + -0.015420258976519108, + -0.012413709424436092, + 0.009473972022533417, + 0.016409078612923622, + -0.0183466337621212, + 0.018146196380257607, + 0.008805849589407444, + 0.04532540589570999, + 0.010489517822861671, + -0.0178388599306345, + -0.006928426679223776, + 0.005281505640596151, + -0.012714364565908909, + -0.016743140295147896, + -0.013235499151051044, + -0.008739037439227104, + -0.01054964866489172, + 0.0039853486232459545, + 0.023384274914860725, + 0.021847594529390335, + -0.01181239914149046, + 0.00738943088799715, + -0.023330824449658394, + -0.02439982071518898, + -0.02204803004860878, + 0.006694583687931299, + -0.03578462079167366, + 0.02105920948088169, + -0.01974968984723091, + 0.004382881335914135, + -0.01030244305729866, + 0.004152378998696804, + 0.016275454312562943, + -0.02339763753116131, + 0.0012468829518184066, + 0.007001920137554407, + -0.018947944045066833, + -0.026364099234342575, + -0.0017120629781857133, + 0.013582922518253326, + 0.009494015015661716, + -0.011464975774288177, + -0.027553357183933258, + 0.006674540229141712, + -0.00131285993847996, + -0.018400084227323532, + -0.0006965172942727804, + 0.023838598281145096, + -0.007048688363283873, + -0.009393797256052494, + 0.019495803862810135, + 0.024466631934046745, + 0.0016711404314264655, + -0.0033756871707737446, + 0.0014840662479400635, + -0.013636372983455658, + 0.02208811789751053, + -0.0020043663680553436, + -0.021713968366384506, + -0.001459011691622436, + -0.017638424411416054, + 0.021847594529390335, + 0.017277637496590614, + -0.003215337637811899, + -0.015593970194458961, + -0.008792486973106861, + -0.010061919689178467, + 0.007576504722237587, + -0.0021780780516564846, + -0.00863213837146759, + 0.0115451505407691, + -0.030065495520830154, + 0.015393533743917942, + -0.004907357040792704, + 0.006233579479157925, + -0.013295629993081093, + 0.028568902984261513, + 0.020938947796821594, + 0.0079773785546422, + -0.016649603843688965, + 0.005211352836340666, + -0.05612225830554962, + 0.011531787924468517, + -0.0051144747994840145, + -0.014124101959168911, + 0.02354462444782257, + -0.018373358994722366, + 0.010669910348951817, + -0.005568798165768385, + -0.001718744169920683, + 0.03527684882283211, + -0.03279143571853638, + -0.0022549121640622616, + -0.008164452388882637, + -0.022929951548576355, + -0.0003931481041945517, + -0.014484887942671776, + -0.01794576086103916, + 0.038964882493019104, + 0.015754319727420807, + 0.006297050975263119, + 0.0029247046913951635, + -0.047917719930410385, + 0.045245230197906494, + 0.017010388895869255, + 0.0242661964148283, + -0.00899292342364788, + -0.01685003936290741, + -0.009948338381946087, + -0.007710129488259554, + 0.03220348805189133, + -0.020270826295018196, + 0.01292148232460022, + -0.010689954273402691, + -0.01870741881430149, + 0.00957418978214264, + 0.020351000130176544, + -0.027085671201348305, + 0.0027910801582038403, + 0.008097640238702297, + 0.018319908529520035, + 0.015086197294294834, + 0.024186020717024803, + -0.0059396056458354, + -0.018814319744706154, + -0.02295667678117752, + -0.03853728622198105, + -0.014003840275108814, + -0.008184496313333511, + -0.019268643110990524, + -0.005445195361971855, + -0.010335849598050117, + -0.0036813528276979923, + 0.021299732849001884, + -0.031428463757038116, + -0.0039085145108401775, + -0.006013099104166031, + -0.014351263642311096, + -0.010449429973959923, + -0.019041480496525764, + 0.013549516908824444, + -0.017598336562514305, + 0.013375804759562016, + -0.009079779498279095, + -0.0012059604050591588, + 0.03185606375336647, + 0.03108104132115841, + -0.010228949598968029, + -0.004296025261282921, + -0.014404713176190853, + 0.0018206328386440873, + 0.009393797256052494, + -0.004112291615456343, + -0.008959517814218998, + -0.002684180624783039, + 0.013549516908824444, + -0.015299996361136436, + 0.004873950965702534, + -0.0051378593780100346, + -0.00022674394131172448, + 0.008498513139784336, + 0.013275586999952793, + 0.010983928106725216, + 0.002622379455715418, + 0.011872529983520508, + 0.0017220848239958286, + -0.029290474951267242, + -0.014364625327289104, + 0.014351263642311096, + 0.02705894596874714, + -0.011845805682241917, + -0.01961606554687023, + 0.022529078647494316, + -0.011384801007807255, + -0.010008469223976135, + -0.0036412656772881746, + 0.022809689864516258, + 0.00013414639397524297, + -0.024733880534768105, + -0.014418075792491436, + -0.017691874876618385, + -0.016342267394065857, + 0.0023150432389229536, + 0.005134518723934889, + -0.008291395381093025, + -0.0038784488569945097, + -0.01726427674293518, + -0.01287471316754818, + 0.017651787027716637, + 0.0034090932458639145, + 0.0015266591217368841, + -0.018907856196165085, + -0.023517899215221405, + 0.014498250558972359, + 0.007462924346327782, + 0.015928031876683235, + -0.014992660842835903, + 0.013522791676223278, + -0.008551963604986668, + 0.02186095528304577, + -0.0013788370415568352, + 0.0016293828375637531, + 0.007262487430125475, + -0.006798142567276955, + 0.006260304246097803, + -0.009333666414022446, + -0.0022649341262876987, + -0.023664886131882668, + -0.0013395848218351603, + -0.0017571612261235714, + 0.02806112915277481, + 0.026551173999905586, + -0.002792750485241413, + -0.01735781319439411, + -0.028168028220534325, + 0.013910302892327309, + 0.008171133697032928, + 0.019308729097247124, + 0.0224622655659914, + -0.015193097293376923, + 0.010262356139719486, + -0.013830128125846386, + 0.0019108293345198035, + -0.010135413147509098, + -2.7716629119822755e-5, + -0.020457899197936058, + 0.0002872925251722336, + 0.013816765509545803, + -0.008872661739587784, + 0.01010200660675764, + -0.026484360918402672, + 0.012634189799427986, + 0.019442353397607803, + -0.002011047676205635, + 0.030225845053792, + 0.02639082446694374, + -0.06627771258354187, + -0.011117552407085896, + -0.024252833798527718, + -0.003091735066846013, + -0.017905673012137413, + -0.005061025265604258, + -0.0037047371733933687, + 0.016796590760350227, + 0.015153009444475174, + -0.007289212197065353, + 0.02466706931591034, + 0.011845805682241917, + 0.02457353100180626, + -0.007115500513464212, + -0.0025538967456668615, + 0.0036312437150627375, + -0.024840781465172768, + 0.012487202882766724, + -0.036800168454647064, + -0.006099955178797245, + 0.0083114393055439, + 0.021072572097182274, + -0.04134339839220047, + 0.0010322487214580178, + 0.013369123451411724, + 0.01865397021174431, + -0.005612225737422705, + -0.0019392244284972548, + -0.01848025806248188, + 0.01246715895831585, + -0.019094930961728096, + -0.018359996378421783, + -0.03081379272043705, + 0.0063638631254434586, + 0.008171133697032928, + 0.01267427671700716, + 0.004499802365899086, + -0.027072308585047722, + -0.015473708510398865, + -0.0030032088980078697, + -0.005431832745671272, + -0.009607596322894096, + -0.009934975765645504, + 0.02132645808160305, + 0.006975194904953241, + -0.006651155650615692, + 0.008578687906265259, + -0.009119867347180843, + 0.0045064836740493774, + 0.01531335897743702, + -0.014484887942671776, + -0.003026593243703246, + 0.01174558699131012, + -0.02005702629685402, + -0.0011099178809672594, + 0.035089775919914246, + 0.02864907681941986, + -0.023304099217057228, + -0.00989488884806633, + -0.0016911841230466962, + -0.007362705655395985, + -0.009727858006954193, + 0.004650129936635494, + 0.0007036161259748042, + -0.012554015032947063, + -0.020725147798657417, + 0.015527158044278622, + 0.01770523563027382, + 0.00937375333160162, + -0.02240881696343422, + 0.011277901940047741, + -0.022782964631915092, + -0.018466895446181297, + -6.639463390456513e-5, + 0.01690348982810974, + 0.014859036542475224, + -0.026764972135424614, + 0.051792826503515244, + 0.029263749718666077, + -0.0166228786110878, + 0.0017371175345033407, + 0.0014456493081524968, + -0.03663981705904007, + 0.006083251908421516, + 0.010663229040801525, + -0.028221478685736656, + -0.004436330869793892, + 0.0010030183475464582, + -0.014137464575469494, + -0.0031501958146691322, + -0.024186020717024803, + -0.0028194754850119352, + 0.01870741881430149, + -0.02719257026910782, + -0.005425151903182268, + 0.007857115939259529, + 0.017598336562514305, + 0.011585237458348274, + 0.02105920948088169, + 0.023117026314139366, + 0.0115451505407691, + -0.0022816371638327837, + -0.02982497215270996, + 0.0044730775989592075, + 0.008478470146656036, + -0.02199457958340645, + 0.0029230343643575907, + 0.02891632542014122, + -0.0019759712740778923, + 0.021299732849001884, + 0.016529342159628868, + -0.012253359891474247, + 0.01648925431072712, + -0.0278740543872118, + -0.01419091410934925, + 0.016956940293312073, + 0.02335754968225956, + 0.013182049617171288, + 0.005515348166227341, + -0.0230903010815382, + -0.025602439418435097, + 0.0013303981395438313, + -0.037521738559007645, + -0.021767418831586838, + -0.0034742350690066814, + 0.011979429982602596, + 0.0004706085310317576, + -0.003841702127829194, + -0.013028381392359734, + -0.018226372078061104, + -0.012667595408856869, + 0.008418338373303413, + 0.00046058668522164226, + -0.012694320641458035, + -0.0016987004783004522, + -0.00769008556380868, + 0.004636767785996199, + 0.0020511348266154528, + 0.0029698028229177, + -0.006407291162759066, + -0.0015943064354360104, + -0.0051712654531002045, + -0.01563405804336071, + 0.007148906588554382, + 0.007763579022139311, + -0.021085934713482857, + -0.013776678591966629, + -0.02326401323080063, + -0.008678906597197056, + -0.011110871098935604, + 0.013623010367155075, + 0.005321592558175325, + 0.027232658118009567, + -0.0012376962695270777, + 0.006059867795556784, + -0.0022215060889720917, + -0.004934081807732582, + 0.007649998180568218, + 0.018466895446181297, + 0.0083114393055439, + -0.009681089781224728, + -0.024961043149232864, + -0.021660519763827324, + 0.07429517805576324, + 0.004726964049041271, + 0.004730304703116417, + 0.022261830046772957, + 0.03035946935415268, + -0.010576372966170311, + 0.005211352836340666, + 0.024065759032964706, + 0.004760370124131441, + 0.0007328464416787028, + 0.008431700989603996, + -0.011037377640604973, + 0.000835987797472626, + -0.011905936524271965, + -0.01538017112761736, + -0.001258575008250773, + 0.006250282283872366, + -0.012974931858479977, + 0.006928426679223776, + -0.005007575266063213, + -0.007756897713989019, + 0.0016360640292987227, + -0.02457353100180626, + 0.03728121519088745, + 0.012827944941818714, + -0.008745718747377396, + 0.00790388509631157, + 0.00790388509631157, + -0.011625325307250023, + -0.001021391712129116, + 0.014377987943589687, + 0.0015258239582180977, + -0.01445816271007061, + -0.015914669260382652, + -0.001023062039166689, + 0.024145932868123055, + -0.004185785073786974, + 0.01419091410934925, + 0.004309387877583504, + 0.011331351473927498, + -0.0028478705789893866, + -0.0035210035275667906, + 0.004613383207470179, + -0.010983928106725216, + -0.008792486973106861, + 0.012954887934029102, + -0.010770129039883614, + 8.930913463700563e-5, + -0.017130650579929352, + -0.011070783250033855, + -0.005508666858077049, + -0.008745718747377396, + 0.005902858916670084, + 0.008024146780371666, + 0.01622200571000576, + -0.008979561738669872, + 0.02679169736802578, + -0.019054843112826347, + -0.00869895052164793, + 0.0028963093645870686, + -0.006089933216571808, + 0.005391745362430811, + -0.011404844932258129, + -0.02349117398262024, + -0.0013061787467449903, + -0.005475260782986879, + -0.003252084366977215, + -0.018106110394001007, + 0.026551173999905586, + 0.007075413130223751, + -0.008257989771664143, + 0.004008732736110687, + -0.015112922526896, + 0.015994843095541, + 0.002745982026681304, + 0.006781439762562513, + 0.005535391625016928, + -0.016342267394065857, + 0.012640871107578278, + -0.002340097678825259, + -0.009026329964399338, + -0.005154562182724476, + -0.020163925364613533, + -0.027125759050250053, + -0.003634584369137883, + 0.013469342142343521, + 0.014872398227453232, + -0.03982007876038551, + 0.01626209169626236, + -0.008825893513858318, + 0.00448644021525979, + 0.006063208449631929, + 0.0035377065651118755, + 0.01910829357802868, + -0.017598336562514305, + 0.01825309731066227, + -0.0023618116974830627, + 0.006290369667112827, + -0.02210148051381111, + 0.005983033683151007, + -0.018921218812465668, + -0.00976126454770565, + -0.005381723865866661, + 0.012106372974812984, + -0.016556065529584885, + -0.02100575901567936, + 0.0018874449888244271, + -0.0026173684746026993, + -0.011237814091145992, + 0.008124365471303463, + 0.005942946299910545, + -0.0021814187057316303, + -0.02005702629685402, + -0.0007583186379633844, + -0.007209037896245718, + 0.02240881696343422, + 0.01095720287412405, + 0.0067146276123821735, + -0.03479580208659172, + -0.017598336562514305, + 0.019589340314269066, + -0.015794407576322556, + 0.02529510296881199, + -0.004980850499123335, + -0.021660519763827324, + -0.016155192628502846, + -0.01195270475000143, + -0.017224188894033432, + -0.01201951690018177, + -0.005809321999549866, + -0.004676854703575373, + 0.029023224487900734, + 0.0014598468551412225, + 0.005154562182724476, + -0.007636636029928923, + -0.009026329964399338, + 0.010282399132847786, + 0.002391877118498087, + 0.01129794493317604, + -0.017785411328077316, + 0.0049741691909730434, + 0.023157112300395966, + -0.01129126362502575, + 0.02516147866845131, + 0.007736854255199432, + 0.0009737880318425596, + 0.026911959052085876, + -0.024787330999970436, + 0.019763052463531494, + 0.026818422600626945, + 0.010075281374156475, + 0.005368361249566078, + 0.027045583352446556, + -0.00014197595010045916, + -0.0028027722146362066, + -0.02453344501554966, + -0.023972222581505775, + 0.003992029931396246, + -0.01226672250777483, + -0.017090564593672752, + -0.00023760093608871102, + 0.0019642789848148823, + -0.02990514598786831, + 0.017691874876618385, + -0.008124365471303463, + 0.01095720287412405, + 0.004840544890612364, + 0.006480784621089697, + 0.026778334751725197, + -0.0018005891470238566, + 0.004242575727403164, + 0.02295667678117752, + 0.007663360796868801, + -0.024092484265565872, + 0.0040621827356517315, + -0.006778099108487368, + 0.0012443774612620473, + 0.00955414678901434, + -0.0079773785546422, + -0.007937290705740452, + -0.0015016044490039349, + -0.008024146780371666, + -0.00040484024793840945, + -0.013208774849772453, + -0.006256963592022657, + -0.009066416881978512, + 0.008411657996475697, + -0.01749143749475479, + 0.006243601441383362, + 0.0026808399707078934, + -0.009914932772517204, + 0.0047236233949661255, + -0.00958087109029293, + 0.00769008556380868, + -0.006103295832872391, + -0.00384504278190434, + 0.006794801913201809, + 0.012226634658873081, + 0.0063638631254434586, + 0.0072357626631855965, + 0.006173448637127876, + 0.008792486973106861, + -0.01219991035759449, + 0.013950389809906483, + -0.025241654366254807, + -0.005087750032544136, + -0.011505062691867352, + 0.0018440170679241419, + -0.005134518723934889, + -0.013288948684930801, + -0.03976662829518318, + 0.003178591141477227, + 0.005508666858077049, + -0.006216876208782196, + 0.004075544886291027, + 0.016275454312562943, + 0.006798142567276955, + -0.040140777826309204, + 0.04332103952765465, + 0.018814319744706154, + 0.0011909276945516467, + 0.0007082094671204686, + 0.01857379451394081, + 0.005107793491333723, + 0.0022532418370246887, + 0.038430385291576385, + -0.0030533182434737682, + 0.0035343661438673735, + 0.017317725345492363, + -0.00786379724740982, + 0.027085671201348305, + -0.005211352836340666, + -0.012447115033864975, + -0.0026340715121477842, + 0.03284488245844841, + -0.0002457436639815569, + 0.029931871220469475, + -0.016609515994787216, + 0.01352947298437357, + -0.002517150016501546, + -1.5058846656756941e-5, + 0.00883257482200861, + 0.006260304246097803, + 0.01010200660675764, + 0.002368493005633354, + 0.0051378593780100346, + -0.013496067374944687, + -0.004219191148877144, + -0.01929536648094654, + -2.133554153260775e-5, + 0.019362179562449455, + -0.005368361249566078, + 0.0038918114732950926, + 0.003437488339841366, + 0.006283688824623823, + 0.013896940276026726, + 0.0017287660157307982, + -0.008485151454806328, + 0.019950127229094505, + -0.0005415964988060296, + -0.018279820680618286, + -0.002291658893227577, + 0.016382355242967606, + 0.004483099561184645, + 0.0015199778135865927, + 0.012627508491277695, + -0.021339820697903633, + 0.009387115947902203, + -0.013141962699592113, + -0.015487071126699448, + -0.01576768234372139, + 0.007583186030387878, + -0.011919299140572548, + 0.014631874859333038, + 0.0019292026991024613, + 0.01942899078130722, + 0.013075149618089199, + -0.01425772625952959, + 0.016556065529584885, + 0.034769076853990555, + 0.0091733168810606, + 0.005057684611529112, + -0.015286634676158428, + -0.03586479648947716, + 0.008391614072024822, + -0.02417265810072422, + 0.010623142123222351, + -0.012974931858479977, + -0.00448644021525979, + -0.025108030065894127, + -0.001694524777121842, + -0.02434637024998665, + 0.007362705655395985, + 0.017130650579929352, + 0.006704605650156736, + -0.00405550142750144, + -0.006684561725705862, + -0.006617749575525522, + 0.008191177621483803, + -0.0033806979190558195, + 0.0016803271137177944, + 0.0032888310961425304, + -0.025949863716959953, + -0.027125759050250053, + 0.002086211461573839, + 0.016328904777765274, + 0.015553883276879787, + -0.008879343047738075, + -0.00962095893919468, + 0.012968250550329685, + 0.011077464558184147, + -0.0016076688189059496, + -0.003460872685536742, + 0.0035410472191870213, + 0.001492417766712606, + -0.01064318511635065, + -0.007776941638439894, + 0.020083751529455185, + 0.02151353284716606, + 0.0004990037414245307, + -0.005532051436603069, + 0.01370986644178629, + -0.014952572993934155, + 0.016930215060710907, + -0.005291527137160301, + 0.006113317329436541, + 0.03378025442361832, + 0.01285467017441988, + 0.011391482315957546, + 4.183592682238668e-5, + 0.00016734370728954673, + -0.0037047371733933687, + 0.0008827563724480569, + -0.00958087109029293, + 0.016048293560743332, + -0.0016652944032102823, + 0.0013420903123915195, + 0.001671975594945252, + -0.010041875764727592, + 0.0002601500600576401, + -0.0021480126306414604, + -0.0017838861094787717, + -0.010322486981749535, + 0.011317988857626915, + 0.0012435422977432609, + 0.026377461850643158, + 0.018921218812465668, + 0.01707720197737217, + 0.010055238381028175, + 0.014685324393212795, + 0.00010773468966362998, + 0.007262487430125475, + 0.017197463661432266, + -0.007142225746065378, + 0.004152378998696804, + -0.019282003864645958, + 0.002712575951591134, + 0.0014356274623423815, + 0.0012736078351736069, + -0.013355761766433716, + -0.015994843095541, + -0.0026641369331628084, + 0.00858536921441555, + -0.02570934034883976, + 0.0018056000117212534, + 0.012827944941818714, + -0.021927768364548683, + 0.005328273866325617, + -0.028755975887179375, + 0.014471525326371193, + 0.003230370581150055, + -0.008090958930552006, + 0.006540915463119745, + 0.002587303053587675, + -0.004693557973951101, + -0.0024453268852084875, + 0.002949759131297469, + 0.016876764595508575, + 0.005338295828551054, + 0.0219144057482481, + 0.022074755281209946, + -0.00889938697218895, + -0.00964768324047327, + 0.007796985097229481, + 0.018720781430602074, + 0.02199457958340645, + -0.0009721177048049867, + 0.011358075775206089, + -0.009166635572910309, + 0.015193097293376923, + -0.002137990901246667, + 0.01115763932466507, + 0.0001555471826577559, + 0.006407291162759066, + -0.02155362069606781, + 0.0072023565880954266, + 0.0010689954506233335, + 0.005004234611988068, + -0.014297813177108765, + -0.012500564567744732, + 0.013489386066794395, + -0.006320435553789139, + -0.002944748383015394, + 0.009941657073795795, + -0.009721176698803902, + -0.026724884286522865, + 0.01735781319439411, + 0.013295629993081093, + 0.006644474342465401, + 0.011845805682241917, + 0.00408890750259161, + -0.0005148716154508293, + -0.012934844009578228, + 0.001513296621851623, + -0.0008038344094529748, + 0.00011974001245107502, + 0.022168291732668877, + 0.0024403161369264126, + 0.0072157192043960094, + 0.021379908546805382, + -0.007335980888456106, + 0.018306545913219452, + -0.009387115947902203, + -0.0047035799361765385, + -0.0029748138040304184, + 0.008565325289964676, + 0.008137727156281471, + -0.006564300041645765, + -0.003320567077025771, + 0.01654270477592945, + -0.006454059854149818, + 0.0034742350690066814, + 0.017718598246574402, + 0.023598073050379753, + -0.013963752426207066, + 0.009400478564202785, + 0.00520801218226552, + -0.016115106642246246, + -0.000682737329043448, + 0.010903753340244293, + -0.013028381392359734, + -0.0023818553891032934, + -0.0027910801582038403, + -0.004596680402755737, + 0.006484125275164843, + 0.026217112317681313, + 0.008685587905347347, + 0.037976060062646866, + -0.00298149511218071, + -0.014231001026928425, + -0.003651287406682968, + 0.03597169369459152, + 0.021152745932340622, + -0.025415366515517235, + -0.006647814996540546, + -0.001984322676435113, + -0.00475368881598115, + -0.0017354472074657679, + 0.01228676550090313, + -0.01920183002948761, + 0.010188862681388855, + 0.02079196088016033, + 0.012981613166630268, + -0.017317725345492363, + -0.009266854263842106, + -0.023865321651101112, + -0.0040053920820355415, + 0.009079779498279095, + 0.003195294179022312, + 0.011471657082438469, + -0.015340084210038185, + 0.01626209169626236, + 0.005512007512152195, + -0.012280085124075413, + -0.007569823879748583, + 0.0020528051536530256, + -0.01233353465795517, + 0.0028963093645870686, + 0.00784375425428152, + -0.02398558519780636, + 0.006794801913201809, + -0.004406265448778868, + -0.014565062709152699, + 0.005030959844589233, + 0.0018089406657963991, + 0.029744796454906464, + -0.02872925065457821, + -0.007322618737816811, + 0.004713601432740688, + -0.002530512632802129, + -0.0029397374019026756, + 0.009293578565120697, + -0.003527684835717082, + 0.0038817895110696554, + -0.0063638631254434586, + 0.0212863702327013, + -0.0016394046833738685, + 0.0040053920820355415, + -0.0011383130913600326, + 0.028221478685736656, + 0.005301549099385738, + -0.001200949540361762, + -0.023290736600756645, + -0.016275454312562943, + 0.02349117398262024, + -0.008050872012972832, + -0.02032427489757538, + -0.014631874859333038, + 0.0072157192043960094, + 0.001560065196827054, + 0.015086197294294834, + -0.006357182282954454, + 0.006367203779518604, + 0.0003952359838876873, + -0.01626209169626236, + -0.0007963180541992188, + 0.016382355242967606, + 0.005425151903182268, + 0.012213272973895073, + 0.0014523304998874664, + 0.0010222268756479025, + 0.002759344410151243, + 0.013656415976583958, + -0.036212220788002014, + -0.0018406764138489962, + 0.0035377065651118755, + 0.021633794531226158, + 0.015059472993016243, + -0.013696503825485706, + 0.0034274666104465723, + -0.02530846558511257, + 0.02079196088016033, + 0.018694058060646057, + -0.02290322631597519, + -0.014311175793409348, + 0.007810347713530064, + 0.014351263642311096, + -0.025909775868058205, + 0.007643317338079214, + 0.003086724318563938, + -0.019910039380192757, + -0.017050476744771004, + -0.008097640238702297, + -0.00018519510922487825, + -0.01703711412847042, + -0.0037715493235737085, + -0.01129126362502575, + -0.00784375425428152, + 0.005104452837258577, + 0.007335980888456106, + -0.016048293560743332, + 0.003327248152345419, + 0.036025144159793854, + 0.014404713176190853, + 0.020163925364613533, + -0.022916588932275772, + -0.008772443979978561, + -0.018587157130241394, + -0.001326222438365221, + 0.003103427356109023, + -0.006707946304231882, + -0.010856984183192253, + -0.014217639341950417, + 0.0019325432367622852, + -0.004640107974410057, + 0.007342662196606398, + -0.002029421040788293, + 0.016248730942606926, + -0.0020979035180062056, + 0.015847856178879738, + 0.01603493094444275, + -0.002106254920363426, + -0.017117289826273918, + -0.014231001026928425, + 0.002993187168613076, + 0.020898859947919846, + -0.0014882420655339956, + 0.01089039072394371, + -0.004523186944425106, + -0.0213665459305048, + -0.00016128885908983648, + -0.02164715714752674, + 0.017558248713612556, + 0.002610687166452408, + 0.000835987797472626, + 0.018039297312498093, + -0.0005169595242477953, + 0.01459178701043129, + 0.002126298611983657, + -0.029397374019026756, + 0.030199119821190834, + -0.014364625327289104, + 0.0037080778274685144, + -0.020765235647559166, + 0.012407028116285801, + -0.004052160773426294, + -0.006293710321187973, + -0.004583317786455154, + -0.0029080016538500786, + -0.04535213112831116, + -0.020591523498296738, + 0.0026491042226552963, + 0.005602204240858555, + -0.002401899080723524, + -0.0007232421776279807, + -0.022836415097117424, + -0.0026123574934899807, + -0.000976293464191258, + 0.018319908529520035, + 0.003358983900398016, + -0.03185606375336647, + 0.006601046770811081, + 0.010930477641522884, + -0.01226672250777483, + 0.0032069862354546785, + -0.00524141825735569, + 0.01425772625952959, + 0.015740957111120224, + 0.01753152534365654, + 0.026684798300266266, + -0.011725543066859245, + -0.013696503825485706, + 0.013763315975666046, + -0.005014256574213505, + 0.004309387877583504, + -0.00028791886870749295, + 0.007790304254740477, + -0.0021881000138819218, + 0.009634321555495262, + 0.0006271996535360813, + -0.014712049625813961, + -0.007596548646688461, + 0.01439135055989027, + -0.032737985253334045, + 0.008959517814218998, + -0.015059472993016243, + -0.03054654411971569, + 0.02760680578649044, + -0.0004530703299678862, + -0.008151089772582054, + 0.016876764595508575, + 0.004165741614997387, + 5.814750329591334e-5, + 0.024586893618106842, + -9.593816503183916e-5, + 0.020898859947919846, + 0.0032103268895298243, + 0.0024737222120165825, + -0.008197858929634094, + 0.011211088858544827, + -0.017638424411416054, + 0.005959649570286274, + -0.023691611364483833, + 0.029397374019026756, + -0.0083114393055439, + -0.006798142567276955, + -0.006283688824623823, + -0.01419091410934925, + 0.010081962682306767, + -2.2966698452364653e-5, + 0.009534102864563465, + -0.027526631951332092, + -0.009166635572910309, + 0.0028345081955194473, + 0.00865218136459589, + -0.02407912164926529, + 0.014712049625813961, + 0.007509692572057247, + 0.008425019681453705, + 0.007162269204854965, + -0.017638424411416054, + 0.0147788617759943, + -0.005281505640596151, + 0.01735781319439411, + 0.006697924342006445, + -0.017544887959957123, + 0.003018241608515382, + -0.011284582316875458, + 0.0023384273517876863, + -0.025989951565861702, + -0.0025037876330316067, + 0.007289212197065353, + -0.0332457572221756, + -0.021273009479045868, + -1.2259780305612367e-5, + 0.018640607595443726, + -0.011184364557266235, + 0.002249901182949543, + -0.022555803880095482, + -0.013409211300313473, + -0.012554015032947063, + -0.030787067487835884, + -0.026043400168418884, + -0.0005453546764329076, + -0.005892836954444647, + -0.003604518948122859, + -0.01730436272919178, + -0.006023121066391468, + -0.013455979526042938, + 0.02186095528304577, + -0.001730436342768371, + -0.018306545913219452, + -0.010669910348951817, + -0.014217639341950417, + 0.0032905014231801033, + -0.03402077779173851, + 0.003868427127599716, + -0.00024678761838003993, + -0.00845174491405487, + -0.017825499176979065, + 0.00472028274089098, + 0.002502117305994034, + -0.019001392647624016, + 0.023838598281145096, + 0.011164320632815361, + -0.004556593019515276, + 0.0029113420750945807, + -0.012026198208332062, + -0.002199792070314288, + 0.014578424394130707, + 0.019803140312433243, + 0.027446456253528595, + 0.0003083801129832864, + 0.0017554908990859985, + 0.020618248730897903, + -0.009473972022533417, + 0.0064206537790596485, + 0.026818422600626945, + -0.02200794219970703, + 0.005622247699648142, + 0.019135016947984695, + -0.0018974668346345425, + -0.01517973467707634, + 0.0016093391459435225, + -0.005759212654083967, + -0.002420272445306182, + -0.001109082717448473, + -0.004850566852837801, + -0.009460609406232834, + -0.015914669260382652, + -0.014925848692655563, + -0.01120440848171711, + -0.007823710329830647, + 0.011872529983520508, + 0.022849777713418007, + -0.007756897713989019, + -0.0009980074828490615, + 0.020097114145755768, + -0.009360390715301037, + 0.01285467017441988, + 0.0028328378684818745, + -0.011638687923550606, + 0.03062671795487404, + 0.00742283696308732, + -0.015233184210956097, + 0.0007842083577997983, + 0.00408890750259161, + -0.03108104132115841, + -0.00865218136459589, + -0.008792486973106861, + -0.012634189799427986, + -0.003278809366747737, + -0.023237287998199463, + 0.017745323479175568, + -0.029851697385311127, + -0.013536154292523861, + -0.0051144747994840145, + 0.021927768364548683, + 0.01874750666320324, + -0.013222136534750462, + -0.0009403818985447288, + -0.008959517814218998, + -0.014498250558972359, + -0.0013621340040117502, + -0.0011216100538149476, + -0.02963789738714695, + 0.004042138811200857, + 0.016248730942606926, + -0.013335717841982841, + 0.013549516908824444, + -0.015019385144114494, + 0.021526895463466644, + -0.010382617823779583, + 0.030466368421912193, + -0.006848251912742853, + -0.007576504722237587, + 0.01567414589226246, + 0.017598336562514305, + 0.02327737584710121, + -0.00640395050868392, + 0.02574942633509636, + -0.0067146276123821735, + -0.01572759449481964, + -0.0033305888064205647, + -0.00468687666580081, + -0.010295761749148369, + -5.919144314248115e-5, + 0.013222136534750462, + -0.010763447731733322, + 0.012654232792556286, + 0.011832443065941334, + 0.006677880883216858, + 0.01359628513455391, + 0.004837204236537218, + -0.0010205565486103296, + 0.005762553308159113, + -0.0005015091737732291, + -0.0009921613382175565, + 0.0008794157765805721, + 0.015286634676158428, + 0.003514322452247143, + 0.0139370271936059, + -0.0016561077209189534, + 0.017718598246574402, + 0.00037080777110531926, + -0.000733264023438096, + -0.0009228436974808574, + -0.007790304254740477, + 0.004990872461348772, + 0.03027929551899433, + -0.016689691692590714, + 0.02037772536277771, + 0.003925217315554619, + -0.005314911715686321, + -0.0278740543872118, + -0.00924012903124094, + 0.0027743771206587553, + -0.014899123460054398, + -0.0063438196666538715, + -0.001247718115337193, + -0.008144408464431763, + -0.035437196493148804, + -0.0035377065651118755, + 0.014070652425289154, + 0.0021663859952241182, + -0.015968119725584984, + -0.0006685397238470614, + 0.0139370271936059, + -0.0048004575073719025, + -0.010182181373238564, + 0.006681221071630716, + -0.011658730916678905, + 0.02800768055021763, + -0.0008986242464743555, + -0.01002851314842701, + -0.0047804140485823154, + -0.004833863582462072, + 0.0041791037656366825, + -0.01465859916061163, + -0.00446305563673377, + -0.014765499159693718, + 0.0006777264061383903, + -0.00690170144662261, + -0.01635563001036644, + -0.025428729131817818, + 0.01749143749475479, + -0.008665543980896473, + 0.0068115051835775375, + -0.008779124356806278, + -0.007596548646688461, + -0.008932792581617832, + -0.00955414678901434, + 0.013923665508627892, + 0.02792750485241413, + 0.02945082262158394, + -0.027847331017255783, + 0.018172921612858772, + -0.0062469420954585075, + 0.0225424412637949, + -0.033406104892492294, + -0.00969445239752531, + -0.015540520660579205, + -0.02119283378124237, + -0.00032925893901847303, + 0.010248993523418903, + -0.021299732849001884, + 0.004128994885832071, + 0.0017137333052232862, + -0.024907592684030533, + -0.012767814099788666, + 0.008458426222205162, + -0.018961306661367416, + 0.015647420659661293, + 0.014124101959168911, + -0.026310648769140244, + -0.007335980888456106, + 0.024814056232571602, + 0.017598336562514305, + -0.010576372966170311, + -0.005471920128911734, + 0.00262571987695992, + 0.007569823879748583, + -0.0072023565880954266, + 0.01240034680813551, + 0.003828339744359255, + 0.012640871107578278, + -0.0015575597062706947, + -0.007155587896704674, + -0.012507245875895023, + 0.00024302942620124668, + -0.011251176707446575, + 0.007249125279486179, + -0.007295893505215645, + -0.0029080016538500786, + -0.013923665508627892, + -0.002246560761705041, + -0.03108104132115841, + -0.0026891916058957577, + -0.012701001949608326, + 0.006083251908421516, + -0.010008469223976135, + -0.007850434631109238, + 0.009520740248262882, + -0.013295629993081093, + 0.0020845411345362663, + -0.0072023565880954266, + -0.01572759449481964, + -0.013562879525125027, + -0.02227519266307354, + 0.005040981341153383, + 0.017130650579929352, + 0.00863213837146759, + 0.0029397374019026756, + 0.007229081355035305, + -0.009834758006036282, + -0.004914038348942995, + -0.01472541131079197, + 0.03041291981935501, + 0.007556461263448, + -0.0064974878914654255, + 0.0010915445163846016, + -0.012179866433143616, + -0.010035194456577301, + 0.00944056548178196, + -0.007055369671434164, + -0.0016268773470073938, + 0.026444273069500923, + -0.030893966555595398, + -0.006160086020827293, + -0.005558776203542948, + 0.03017239458858967, + -0.013556198216974735, + -0.004095588810741901, + -0.002984835533425212, + -0.009874844923615456, + -0.017291000112891197, + 0.0260300375521183, + -0.026217112317681313, + 0.03613204509019852, + -0.000523640715982765, + 0.01888113096356392, + 0.0031117787584662437, + -0.01969624124467373, + -0.0002931385824922472, + -0.007609911262989044, + 0.013696503825485706, + -0.0001256904797628522, + -0.02033763751387596, + 0.020524712279438972, + 0.007275850046426058, + -0.012614145874977112, + -0.0036279030609875917, + 0.00844506360590458, + 0.0015099559677764773, + -0.016636241227388382, + -0.004663492552936077, + -0.0005065200966782868, + -0.010081962682306767, + -0.006156745366752148, + 0.0003267534775659442, + -0.009153272956609726, + -0.0068115051835775375, + -0.014818948693573475, + 0.02403903380036354, + 0.03239056095480919, + 0.01974968984723091, + -0.002243220107629895, + -0.0243062824010849, + -0.02832837775349617, + 0.036987241357564926, + -0.021433357149362564, + -0.013202093541622162, + 0.019375542178750038, + -0.01030244305729866, + 0.01075008511543274, + -0.0006401445134542882, + 0.007957334630191326, + -0.00016911841521505266, + 0.01048283651471138, + -0.008017465472221375, + -0.0034475100692361593, + 0.011685456149280071, + 0.016342267394065857, + 0.0015199778135865927, + -0.013749953359365463, + -0.01445816271007061, + 0.04120977222919464, + 0.0018690716242417693, + 0.010015150532126427, + 0.009868163615465164, + 0.002999868243932724, + -0.011464975774288177, + -0.02105920948088169, + 0.01874750666320324, + 0.014712049625813961, + -0.004386221989989281, + 0.00865218136459589, + -0.010035194456577301, + 0.010522923432290554, + -0.001122445217333734, + -0.024453269317746162, + -0.008371570147573948, + -0.025375278666615486, + -0.0036412656772881746, + -0.0024637002497911453, + 0.02327737584710121, + 0.010723359882831573, + 0.021633794531226158, + 0.022849777713418007, + -0.004997553303837776, + 0.0015876252437010407, + 0.0020661677699536085, + -0.011946023441851139, + 0.0001653602230362594, + 0.004372859373688698, + 0.009567508473992348, + -0.0037982743233442307, + -0.022889863699674606, + -0.013182049617171288, + -0.025268379598855972, + -0.0001456297468394041, + 0.016422441229224205, + 0.012300128117203712, + -0.013676459901034832, + -0.02661798521876335, + 0.003494278760626912, + -0.019642790779471397, + -0.004145697690546513, + -0.018988030031323433, + -0.0026774993166327477, + 0.0195225290954113, + 0.014284451492130756, + -0.031054316088557243, + 0.008231264539062977, + -0.0021797483786940575, + -0.01690348982810974, + 0.005852750036865473, + -0.008030828088521957, + -0.006948470138013363, + -0.006781439762562513, + -0.015193097293376923, + -0.007950653322041035, + 0.007108819670975208, + 0.010836941190063953, + 0.04161064699292183, + 0.0036913747899234295, + 0.002268274547532201, + -0.006928426679223776, + 0.006063208449631929, + 0.03714758902788162, + 0.017772048711776733, + -0.002729278989136219, + -0.006243601441383362, + -0.018587157130241394, + -0.005662335082888603, + 0.01870741881430149, + 0.01689012721180916, + 0.009059736505150795, + 0.012179866433143616, + -0.006641134154051542, + 0.0051846276037395, + 0.00637054443359375, + -0.012106372974812984, + -0.021379908546805382, + -0.006083251908421516, + -0.02377178519964218, + 0.008645500056445599, + 0.010716678574681282, + 0.019535891711711884, + 0.002076189499348402, + 0.008030828088521957, + 0.01794576086103916, + -0.014377987943589687, + -6.107053923187777e-5, + -0.01538017112761736, + -0.004008732736110687, + 0.015460345894098282, + 0.008645500056445599, + -0.015219822525978088, + -0.003734802594408393, + 0.01122445147484541, + 0.005625588353723288, + 0.010342530906200409, + 0.01054964866489172, + 0.00515122152864933, + 0.003464213339611888, + 0.016729777678847313, + 0.012934844009578228, + 0.01134471409022808, + 0.0013220466207712889, + -0.007783622946590185, + 0.022876501083374023, + -0.008865980431437492, + 0.03041291981935501, + -5.9556823543971404e-5, + 0.005157902836799622, + -0.013282268308103085, + 0.006387247703969479, + -0.017919035628437996, + 0.004536549095064402, + -0.018319908529520035, + 0.0019408947555348277, + -0.002109595574438572, + 0.011424888856709003, + 0.008732356131076813, + -0.010937158949673176, + 0.004245915915817022, + -0.01246715895831585, + 0.0051378593780100346, + -0.011217770166695118, + -0.005709103774279356, + 0.005197990220040083, + 0.019856588914990425, + -0.02480069361627102, + -0.0043127285316586494, + -0.006500828545540571, + 0.0061467234045267105, + -0.013582922518253326, + 0.019936764612793922, + 0.0013195412466302514, + 0.028034403920173645, + 0.01946907863020897, + -0.007289212197065353, + 0.0019275323720648885, + -0.01667632907629013, + 0.005147880874574184, + -0.002730949316173792, + 0.03017239458858967, + -0.013308992609381676, + -0.007536417804658413, + -0.0012335204519331455, + 0.021313095465302467, + 0.010289080440998077, + 0.016863401979207993, + 0.013883577659726143, + -0.0021914406679570675, + -0.0018206328386440873, + 0.009126548655331135, + -0.014284451492130756, + -0.009266854263842106, + -0.0036078596021980047, + 0.0009504037443548441, + -0.010843622498214245, + -0.015620695427060127, + -0.019415628165006638, + -0.0003534783609211445, + -0.005107793491333723, + 0.003915195818990469, + -0.012560696341097355, + 0.023437723517417908, + 0.011551831848919392, + -0.0005695741274394095, + 0.011404844932258129, + 0.03244401142001152, + 0.00521803367882967, + 0.011351395398378372, + -0.0025639187078922987, + -0.012547333724796772, + -0.003651287406682968, + -0.006510850042104721, + -0.005358339287340641, + -0.019950127229094505, + -0.0008506029844284058, + -0.022782964631915092, + -0.014043927192687988, + 0.00955414678901434, + -0.003105097683146596, + 0.008090958930552006, + 0.019990213215351105, + -0.0024085803888738155, + -0.02204803004860878, + 0.008478470146656036, + 0.0026791696436703205, + -0.007222400046885014, + 0.0033806979190558195, + 0.01848025806248188, + -0.009447246789932251, + -0.006921745371073484, + -0.0059396056458354, + 0.008986243046820164, + 0.008491831831634045, + 0.0030800430104136467, + -0.017130650579929352, + 0.004306047223508358, + 0.001825643703341484, + -0.009186679497361183, + -0.025108030065894127, + -0.023651523515582085, + -0.005542072933167219, + 0.009754583239555359, + -0.0019108293345198035, + 0.002779388101771474, + 0.02859562635421753, + -0.021339820697903633, + -0.024373095482587814, + 0.0037715493235737085, + 0.0034274666104465723, + 0.0059396056458354, + 0.0028495409060269594, + -0.0007165609858930111, + 0.005395086016505957, + -0.004666833207011223, + -0.02544208988547325, + -0.024600256234407425, + 0.004870610311627388, + 0.008465107530355453, + -0.02472051791846752, + 0.0023718336597085, + 0.037949338555336, + 0.020685061812400818, + -0.00590619957074523, + 0.010603098198771477, + -0.006841570604592562, + -0.00817781500518322, + 0.014618512243032455, + 0.006607728078961372, + -0.012113054282963276, + 9.311952453572303e-5, + 0.01842680759727955, + 0.005391745362430811, + 0.029931871220469475, + 0.013896940276026726, + -0.015099559910595417, + 0.007148906588554382, + 0.0070820944383740425, + -0.007649998180568218, + -0.016141830012202263, + -0.003293842077255249, + -0.0063003916293382645, + -0.0139370271936059, + 0.004593339748680592, + 0.02969134785234928, + -0.008906068280339241, + 0.0004739491268992424, + -0.009220085106790066, + -0.005214693024754524, + 0.008986243046820164, + -7.401540642604232e-5, + 0.009340347722172737, + -0.016916852444410324, + 0.006216876208782196, + 9.014429087983444e-5, + 0.007823710329830647, + -0.02305021323263645, + 0.011712181381881237, + -0.023103663697838783, + -0.004322750028222799, + -0.00199434463866055, + 0.006814845837652683, + -0.002124628284946084, + -0.02155362069606781, + 0.002717586699873209, + -0.032871607691049576, + -0.012407028116285801, + -0.010021831840276718, + -0.008024146780371666, + -0.0007441210327669978, + -0.02331746183335781, + 0.002111265901476145, + -0.014404713176190853, + -0.007416155654937029, + 0.002122957957908511, + 0.00837825145572424, + 0.009641001932322979, + 0.00530823040753603, + -0.01254065241664648, + 0.023998945951461792, + -0.012761132791638374, + -0.0025705997832119465, + -0.0005495304358191788, + 0.007482967805117369, + 0.008999604731798172, + -0.033406104892492294, + -0.01703711412847042, + 0.02041781134903431, + -0.004743667319417, + 0.043267589062452316, + -0.006373885087668896, + 0.019348816946148872, + -0.01364305429160595, + -0.0070620509795844555, + -0.02240881696343422, + 0.012634189799427986, + -0.011538469232618809, + -0.010970565490424633, + -0.001688678632490337, + -0.013502748683094978, + -0.0039085145108401775, + -0.0014899123925715685, + 0.021807506680488586, + -0.009594233706593513, + 0.023076938465237617, + -0.015086197294294834, + -0.0010865336516872048, + -0.011171001940965652, + -0.00824462715536356, + 0.001984322676435113, + 0.0016895137960091233, + -0.02186095528304577, + -0.003855064744129777, + 0.024386458098888397, + -0.0023384273517876863, + -0.013235499151051044, + 0.01504611037671566, + 3.7451376556418836e-5, + -0.016235368326306343, + -0.01938890479505062, + 0.0034441696479916573, + 0.0020193990785628557, + -0.047142695635557175, + -0.0014690335374325514, + 0.0015517136780545115, + 0.007008600980043411, + 0.007449561730027199, + 0.004359496757388115, + 0.013048425316810608, + -0.008799168281257153, + -0.011311307549476624, + -0.006353841628879309, + -0.007122181821614504, + -0.0178388599306345, + -0.014805586077272892, + 0.011237814091145992, + 0.0015166372759267688, + -0.028889600187540054, + -0.008191177621483803, + -0.00528484582901001, + -0.0033155560959130526, + -0.0010890390258282423, + 0.012193229049444199, + 0.013569560833275318, + -0.006654496304690838, + 0.01675650291144848, + 0.002159704687073827, + -0.01308183092623949, + -0.024880867451429367, + -0.02146008238196373, + 0.0029297154396772385, + 0.0012944865738973022, + 0.01332903653383255, + -0.012634189799427986, + -0.007556461263448, + 0.0038918114732950926, + -0.018039297312498093, + 0.018466895446181297, + -0.019549254328012466, + -0.013275586999952793, + 7.458957406925038e-5, + -0.0213665459305048, + -0.010576372966170311, + -0.020351000130176544, + 0.004950785078108311, + -0.0003622474614530802, + 0.004125654231756926, + -0.04161064699292183, + -0.015420258976519108, + -0.011899255216121674, + 0.005224714986979961, + -0.01136475708335638, + 0.008084277622401714, + -0.0029647918418049812, + 0.01127122063189745, + 0.0023952177725732327, + -0.0031017570290714502, + -0.01667632907629013, + -0.0014690335374325514, + -0.00903301127254963, + -0.012253359891474247, + -0.004726964049041271, + -0.0045499117113649845, + 0.0054418547078967094, + 0.01221995335072279, + -0.025829602032899857, + -0.003637925023213029, + 0.006320435553789139, + -0.001021391712129116, + 0.0016327234916388988, + 0.007436199113726616, + -0.007870478555560112, + -0.01938890479505062, + 0.010689954273402691, + -0.006130020599812269, + -0.019282003864645958, + 0.010830259881913662, + -0.019776415079832077, + 0.013409211300313473, + -0.025001129135489464, + 0.003911855164915323, + -0.019322091713547707, + 0.036025144159793854, + 0.010629823431372643, + 0.008344845846295357, + 0.017638424411416054, + 0.016435803845524788, + 0.003387379227206111, + -0.004893994424492121, + -0.004215850494801998, + 0.013723228126764297, + 0.03583807125687599, + 0.002610687166452408, + 0.0024603598285466433, + 0.0026290605310350657, + -0.017317725345492363, + 0.019936764612793922, + 0.01010200660675764, + 0.010469473898410797, + -0.018106110394001007, + -0.011471657082438469, + 0.029397374019026756, + 0.008231264539062977, + -0.003561090910807252, + -0.006601046770811081, + 0.007783622946590185, + -0.007823710329830647, + -0.00371141848154366, + -0.03231038525700569, + -0.002136320574209094, + -0.0005127837066538632, + 0.0003612035361584276, + 0.011044058948755264, + 0.02417265810072422, + 0.019188467413187027, + 0.0016076688189059496, + 0.004917379003018141, + -0.0002904243301600218, + 0.010135413147509098, + 0.018186284229159355, + 0.018359996378421783, + 0.0159547571092844, + -0.005859430879354477, + -0.015620695427060127, + 0.029931871220469475, + 0.01630217954516411, + 0.020671699196100235, + -0.013302311301231384, + 0.014418075792491436, + -0.004139016382396221, + 0.020404450595378876, + -0.025268379598855972, + -0.014244363643229008, + -0.0017421283992007375, + -0.02268942818045616, + -0.007008600980043411, + 0.009387115947902203, + 0.008425019681453705, + 0.00930694118142128, + 0.011692137457430363, + -0.012126416899263859, + -0.025468815118074417, + 0.01852034591138363, + 0.0017738642636686563, + 0.0016953599406406283, + 0.0002964792074635625, + 0.0008493502391502261, + -0.01838672161102295, + 0.0075497799552977085, + 0.024239471182227135, + 0.016048293560743332, + 0.0225424412637949, + -0.01667632907629013, + -0.00396530469879508, + 0.021620431914925575, + -0.019869951531291008, + 0.006200173404067755, + -0.023878684267401695, + 0.019121656194329262, + -0.0016419101739302278, + 0.025134755298495293, + -0.007108819670975208, + -0.003841702127829194, + -0.012714364565908909, + -0.007810347713530064, + 0.0031986346002668142, + -0.01689012721180916, + 0.010870346799492836, + -0.01974968984723091, + 0.016636241227388382, + 0.01208632905036211, + -0.00804419070482254, + 0.012761132791638374 + ], + "77735169-8e6a-4805-90b5-fd8136f8f40c": [ + -0.005093172192573547, + -0.04780508950352669, + -0.014066541567444801, + 0.01521671935915947, + -0.03577449172735214, + -0.02029336616396904, + -0.007317509967833757, + 0.034108716994524, + 0.009551763534545898, + 0.04682677611708641, + -0.014410272240638733, + -0.006021907553076744, + 0.019817430526018143, + 0.0173716489225626, + 0.008989894762635231, + 0.030248351395130157, + -0.022897791117429733, + 0.03236361965537071, + 0.012942804023623466, + 0.003260489320382476, + 0.03320972993969917, + -0.036223988980054855, + 0.006045043468475342, + 0.027657147496938705, + 0.02412729151546955, + -0.019645564258098602, + -0.014925869181752205, + -0.004101639613509178, + -0.035377878695726395, + -0.0069473376497626305, + -0.031967006623744965, + 0.01796656847000122, + 0.0034868894144892693, + -0.020557774230837822, + -0.004775881767272949, + -0.02112625353038311, + -0.005678176414221525, + 0.009802951477468014, + -0.014026880264282227, + 0.015943842008709908, + -0.022078124806284904, + -0.013709589838981628, + -0.007806666195392609, + -0.001599672483280301, + -0.011468726210296154, + 0.03540432080626488, + -0.029904620721936226, + 0.0012402419233694673, + 0.03019547089934349, + -0.008275991305708885, + 0.002863876521587372, + 0.03352702036499977, + -0.007039880845695734, + 0.05388648808002472, + 0.024722211062908173, + -0.00914192944765091, + 0.008884130977094173, + 0.08254838734865189, + 0.02685070037841797, + -0.0375724732875824, + 0.015110955573618412, + -0.02519814670085907, + 0.029481567442417145, + 0.001183228800073266, + 0.018746575340628624, + 0.011045671999454498, + 0.021496424451470375, + 0.01729232631623745, + 0.01346501149237156, + 0.012651954777538776, + -0.016485881060361862, + -0.016261132434010506, + -0.05605463683605194, + 0.028000878170132637, + 0.05354275554418564, + -0.0013699674746021628, + 0.022593721747398376, + 0.023400167003273964, + 0.04912713170051575, + -0.03759891167283058, + 0.014568917453289032, + -0.0005878961528651416, + 0.002283829962834716, + 0.024259496480226517, + 0.014198745600879192, + -0.006795302964746952, + -0.018032671883702278, + -0.038973838090896606, + -0.03714941814541817, + -0.01912996731698513, + 0.014542477205395699, + 0.005522835999727249, + 0.00756869837641716, + 0.03133242577314377, + -0.012764329090714455, + 0.006286316085606813, + 0.017583176493644714, + 0.002143362769857049, + -0.039793506264686584, + -0.024021528661251068, + -0.025422893464565277, + 0.01936793513596058, + -0.010093800723552704, + 0.011779406107962132, + -0.00801819283515215, + 0.005288173444569111, + 0.026255780830979347, + 0.007714122999459505, + -0.011700083501636982, + 0.009664136916399002, + -0.02677137777209282, + -0.05100443214178085, + 0.0052683427929878235, + -0.0006907676579430699, + -0.009128709323704243, + -0.011032451875507832, + -0.0120239844545722, + 0.014635019935667515, + -0.016247913241386414, + -0.03183480352163315, + 0.05325190722942352, + 0.0008097515674307942, + 0.027974437922239304, + 0.007833106443285942, + 0.010748212225735188, + 0.016737068071961403, + -0.0009485661284998059, + 0.0396084189414978, + 0.043125055730342865, + 0.011680252850055695, + -0.005747583694756031, + -0.025647640228271484, + -0.007357171270996332, + -0.015917401760816574, + 0.01330636627972126, + 0.01946047879755497, + -0.017398091033101082, + 0.07805343717336655, + -0.01712046191096306, + -0.005724447779357433, + -0.030750729143619537, + 0.025013061240315437, + 0.0037645185366272926, + -0.019010983407497406, + 0.016485881060361862, + -0.02768358774483204, + -0.03368566557765007, + 0.07424595206975937, + -0.01955302059650421, + 0.021906258538365364, + -0.02386288344860077, + 0.006259875372052193, + -0.058910250663757324, + -0.003128285054117441, + 0.039053160697221756, + 0.020227262750267982, + 0.007535647135227919, + 0.03167615830898285, + -0.01376247126609087, + 0.023558812215924263, + 0.011600930243730545, + -0.04701186344027519, + 0.013372468762099743, + 0.0001679408160271123, + 0.013114670291543007, + 0.0032357010059058666, + 0.05462682992219925, + 0.05214139074087143, + -0.03873587027192116, + 0.00848090834915638, + 0.01255941204726696, + 0.008110735565423965, + 0.021417101845145226, + 0.014635019935667515, + -0.001549269538372755, + -0.01879945583641529, + 0.012486699968576431, + 0.008004972711205482, + 0.040242999792099, + 0.0039925710298120975, + -0.02154930680990219, + 0.0029977334197610617, + 0.03051276132464409, + 0.0017120460979640484, + -0.018733354285359383, + 0.015163837000727654, + 0.010259056463837624, + -0.005661650560796261, + -0.011541438288986683, + 0.01542824599891901, + -0.004309861455112696, + -0.017503853887319565, + 0.029084954410791397, + 0.045531172305345535, + -0.0013617046643048525, + -0.030882932245731354, + -0.0017401395598426461, + -0.01969844661653042, + 0.012671785429120064, + 0.018416063860058784, + -0.005711227189749479, + -0.04182945191860199, + -0.04119487106800079, + 0.01264534518122673, + -0.03836569935083389, + 0.027009345591068268, + -0.024074409157037735, + -0.03836569935083389, + 0.04301929101347923, + -0.031305987387895584, + 0.05986212193965912, + -0.06060246750712395, + 0.026004591956734657, + 0.008751926943659782, + -0.006335892714560032, + 0.005274952854961157, + 0.028503254055976868, + 0.027181211858987808, + -0.015150616876780987, + -0.003326591569930315, + -0.0037744338624179363, + -0.006742421071976423, + -0.012235511094331741, + -0.009915324859321117, + -0.039952151477336884, + -0.008513959124684334, + -0.006504453253000975, + 0.015547229908406734, + 0.0014121076092123985, + -0.04264912009239197, + 0.028741221874952316, + -0.0021037014666944742, + 0.02644086629152298, + -0.025079162791371346, + -0.017609616741538048, + -0.0039694351144135, + 0.04439421743154526, + -0.005945890210568905, + 0.028053760528564453, + -0.02513204514980316, + 0.025158485397696495, + 0.018402842804789543, + -0.032548706978559494, + -0.025726962834596634, + -0.04859831556677818, + 0.02172117307782173, + -0.017001478001475334, + 0.05631904676556587, + 0.022884570062160492, + 0.039211805909872055, + 0.0016847789520397782, + 0.008824639022350311, + 0.0041214702650904655, + 0.02169473096728325, + -0.011131605133414268, + 0.03133242577314377, + 0.03283955529332161, + -0.013028737157583237, + -0.017411310225725174, + -0.05097799375653267, + 0.01451603602617979, + 0.0011179528664797544, + -0.038630105555057526, + -0.04050740972161293, + 0.05132172256708145, + -0.013167551718652248, + 0.05050205811858177, + -0.024365259334445, + 0.010219395160675049, + 0.046456605195999146, + 0.021152693778276443, + -0.020742859691381454, + -0.03315684571862221, + 0.014000439085066319, + -0.010721771977841854, + 0.000332576542859897, + -0.011746355332434177, + 0.005079951602965593, + 0.010576346889138222, + 0.00997481681406498, + 0.010906857438385487, + 0.030248351395130157, + 0.018667252734303474, + -0.009531932882964611, + 0.02285812981426716, + 0.029375802725553513, + -0.033897191286087036, + 0.019315052777528763, + -0.023320844396948814, + -0.017094019800424576, + -0.008441247045993805, + 0.013531113974750042, + -0.015150616876780987, + 0.0260178130120039, + 0.004633761942386627, + 0.001171660958789289, + 0.007443103939294815, + -0.025832727551460266, + 0.020319806411862373, + -0.006309452001005411, + 0.007277848664671183, + -0.015335703268647194, + -0.023519150912761688, + 0.010867196135222912, + 0.01173313520848751, + -0.005595548544079065, + 0.010781263932585716, + -0.027339857071638107, + -0.020174382254481316, + 0.011045671999454498, + 0.03865654766559601, + -0.008196668699383736, + -0.01201737392693758, + -0.04074537754058838, + 0.00479901721701026, + -0.007515816483646631, + -0.04465862363576889, + 0.03209921345114708, + -0.026493748649954796, + -0.007350561209022999, + -0.019063865765929222, + -0.02362491562962532, + -0.035562966018915176, + 0.009862443432211876, + 0.060761112719774246, + -0.011554659344255924, + 0.026996124535799026, + -0.009254303760826588, + -0.016076046973466873, + 0.0027845539152622223, + -0.019103527069091797, + -0.033632781356573105, + -0.009399727918207645, + -0.010847365483641624, + -0.021972360089421272, + 0.014621799811720848, + -0.04635084047913551, + -0.03640907257795334, + -0.028397491201758385, + -0.0012732930481433868, + -0.03701721504330635, + 0.0029018851928412914, + 0.03701721504330635, + 0.005486479960381985, + -0.04198809713125229, + -0.018336741253733635, + 0.045769140124320984, + 0.006345808040350676, + 0.004974188283085823, + -0.003671975340694189, + 0.0006337545346468687, + -0.009631086140871048, + 0.03551008552312851, + -0.04124775156378746, + 0.030063265934586525, + -0.005050205625593662, + -0.02834460884332657, + -0.011614151298999786, + 0.015124175697565079, + 0.0016145454719662666, + -0.02111303247511387, + -0.012235511094331741, + -0.013088229112327099, + 0.004577575251460075, + -0.018944881856441498, + 0.024907296523451805, + 0.0060549587942659855, + 0.0035364660434424877, + -0.027736470103263855, + 0.01451603602617979, + -0.03751958906650543, + 0.015771977603435516, + -0.03360634297132492, + -0.01686927303671837, + -0.009657526388764381, + -0.06054958701133728, + 0.028397491201758385, + 0.000849412870593369, + 0.013855013996362686, + 0.03125310316681862, + -0.0036587549839168787, + 0.01376247126609087, + -0.0172130037099123, + -0.0008849427686072886, + 0.047620002180337906, + 0.0005899618263356388, + 0.03162327781319618, + -0.019923193380236626, + -0.03640907257795334, + -0.006580470595508814, + -0.003301803255453706, + 0.013987218961119652, + -0.014687901362776756, + 0.01879945583641529, + 0.029481567442417145, + -0.024100851267576218, + -0.00012156601587776095, + -0.018733354285359383, + 0.03154395520687103, + 0.032654471695423126, + -0.0002305313100805506, + -0.02519814670085907, + -0.05364852026104927, + 0.001954971579834819, + -0.016155369579792023, + -0.01955302059650421, + -0.013669928535819054, + 0.014727562665939331, + 0.04034876450896263, + 0.009789731353521347, + 0.006636657752096653, + -0.007343950681388378, + -0.01779470406472683, + 0.041961655020713806, + 0.013564164750277996, + -0.010054139420390129, + -0.029560890048742294, + 0.06520317494869232, + -0.031041577458381653, + 0.005919449031352997, + 0.022990334779024124, + 0.029402244836091995, + -0.0048651196993887424, + -0.0023912459146231413, + 0.02320186048746109, + 0.02378356084227562, + -0.01722622476518154, + 0.015679433941841125, + 0.01264534518122673, + 0.016089268028736115, + 0.029798857867717743, + 0.032231416553258896, + -0.023995086550712585, + 0.024008307605981827, + -0.022302871569991112, + -0.0009766594739630818, + 0.014859767630696297, + 0.005354275461286306, + -0.028794104233384132, + -0.00635902862995863, + -0.01655198261141777, + -0.002523450180888176, + 0.004554439336061478, + 0.031887684017419815, + -0.043125055730342865, + -0.017331987619400024, + -0.012228901498019695, + 0.01430450938642025, + 0.0037512979470193386, + -0.010457362979650497, + 0.0006180552882142365, + 0.05163901299238205, + -0.022329311817884445, + 0.0067159803584218025, + 0.006335892714560032, + -0.004134690389037132, + 0.04783152788877487, + 0.02361169457435608, + 0.0485718734562397, + -0.023981867358088493, + -0.010259056463837624, + 0.009617865085601807, + 0.047434914857149124, + -0.03244294226169586, + 0.013081618584692478, + -0.022487957030534744, + -0.0023532372433692217, + 0.0001558565127197653, + -0.003391041187569499, + 0.024814754724502563, + 0.00552944652736187, + 0.006580470595508814, + -0.023638134822249413, + 0.02529069036245346, + 0.028238845989108086, + 0.0012551149120554328, + -0.01938115619122982, + -0.016261132434010506, + 0.015692654997110367, + -0.006927506998181343, + 0.016604864969849586, + 0.003384430892765522, + -0.008190058171749115, + 0.005919449031352997, + 0.025488996878266335, + 0.016327235847711563, + -0.020980827510356903, + 0.005218766164034605, + -0.019672004505991936, + 0.046694573014974594, + 0.015930622816085815, + 0.006349113304167986, + -0.007912429049611092, + 0.0043528275564312935, + -0.032548706978559494, + -0.02112625353038311, + 0.04077181592583656, + -0.011554659344255924, + -0.017279107123613358, + 0.003111759666353464, + 0.007443103939294815, + -0.014793665148317814, + 0.031808361411094666, + -0.018111994490027428, + -0.017252665013074875, + 0.03701721504330635, + 0.0069737788289785385, + 0.019592681899666786, + -0.010622618719935417, + -0.011838898062705994, + -0.010741602629423141, + 0.005344360135495663, + -0.005046900361776352, + 0.0026424340903759003, + 0.002113616792485118, + -0.002331753959879279, + -0.018561488017439842, + -0.0007783530163578689, + 0.040613170713186264, + -0.020491672679781914, + -0.0033778208307921886, + -0.030644964426755905, + -0.04167080670595169, + 0.012539581395685673, + -0.006302841939032078, + 0.008870910853147507, + -0.014912649057805538, + -0.02079574204981327, + 0.03548364341259003, + 0.0022160750813782215, + -0.005460039246827364, + 0.0007961179944686592, + -0.010153292678296566, + -0.008626332506537437, + -0.004273504950106144, + 0.004680033307522535, + -0.006613521836698055, + -0.007694292347878218, + -0.01578519679605961, + 0.01301551703363657, + -0.0143838319927454, + 0.03244294226169586, + 0.012698226608335972, + 0.012605683878064156, + 0.010774653404951096, + -0.00011567879118956625, + -0.00600868696346879, + 0.0016971731092780828, + -0.02304321527481079, + -0.0005659998278133571, + -0.02178727462887764, + -0.00010080580250360072, + -0.02269948460161686, + -0.025912050157785416, + 0.0022871349938213825, + -0.04135351628065109, + -0.03209921345114708, + -0.016763510182499886, + -0.012136357836425304, + -0.0005631078383885324, + 0.0282917283475399, + 0.005764109082520008, + 0.01570587418973446, + 0.004851899109780788, + -0.005598853807896376, + 0.0005808728164993227, + -0.05319902300834656, + 0.001630244660191238, + 0.024219835177063942, + 0.013352638110518456, + 0.012334664352238178, + -0.0021169218234717846, + 0.016234692186117172, + 0.009340235963463783, + -0.02370423823595047, + 0.027260534465312958, + -0.0025333655066788197, + -0.014582138508558273, + -0.03847146034240723, + 0.0099814273416996, + 0.023069657385349274, + -0.010298717767000198, + 0.015031632967293262, + -0.019936414435505867, + 0.038973838090896606, + 0.02579306624829769, + -0.015996724367141724, + -0.02587238885462284, + -0.017318768426775932, + 0.04058673232793808, + -0.0005693049170076847, + 0.008302432484924793, + -0.0054137674160301685, + 0.002528407843783498, + -0.025065941736102104, + 0.006339197978377342, + 0.01622147113084793, + -0.016657745465636253, + -0.004432150162756443, + 0.01854826882481575, + 0.02993106096982956, + -0.0036752806045114994, + -0.011581099592149258, + -0.03381786867976189, + -0.03416160121560097, + 0.037466708570718765, + -0.024590006098151207, + 0.010371429845690727, + 0.002682095393538475, + -0.02903207205235958, + 0.03162327781319618, + -0.043283700942993164, + 0.030724287033081055, + -0.008004972711205482, + 0.024100851267576218, + 0.012982465326786041, + 0.010252445936203003, + 0.039476215839385986, + 0.010159903205931187, + -0.040798258036375046, + 0.004554439336061478, + -0.02927003987133503, + 0.036038901656866074, + -0.012288393452763557, + -0.0349019430577755, + 0.015031632967293262, + -0.031068019568920135, + -0.02985173836350441, + -0.005565802566707134, + -0.0037579082418233156, + -0.009677357040345669, + 0.003916553221642971, + -0.008090904913842678, + -0.006286316085606813, + 0.011316691525280476, + -0.012823820114135742, + 0.011369572952389717, + -0.0202801451086998, + -0.0035397710744291544, + 0.007410053163766861, + -0.001298081362619996, + -0.007509206421673298, + 0.014661461114883423, + 0.0032059550285339355, + -0.00960464496165514, + 0.011396014131605625, + 0.008097515441477299, + 0.0074629345908761024, + 0.024999840185046196, + 0.02977241575717926, + 0.006524283904582262, + 0.007304289378225803, + 0.00563190458342433, + 0.012235511094331741, + 0.003952909726649523, + -0.02411407046020031, + 0.00860650185495615, + -0.018601149320602417, + -0.009915324859321117, + -0.026731716468930244, + 0.0026490443851798773, + -0.010285497643053532, + 0.03334193304181099, + 0.013088229112327099, + 0.04331013932824135, + -0.011858728714287281, + -0.0018409453332424164, + 0.003549686400219798, + 0.016908934339880943, + 0.02934936247766018, + -0.015229939483106136, + -0.021985581144690514, + -0.01550756860524416, + -0.012281782925128937, + 0.01663130521774292, + -0.015547229908406734, + 0.01887877844274044, + -0.012460258789360523, + 0.01770216040313244, + -0.012632124125957489, + -0.03233718127012253, + -0.021390661597251892, + -0.03736094385385513, + 0.05206206813454628, + 0.028212405741214752, + -0.012896533124148846, + 0.003830620553344488, + 0.030248351395130157, + -0.0565834566950798, + -0.005608769133687019, + -0.026308663189411163, + 0.02993106096982956, + -0.009003114886581898, + 0.005245206877589226, + 0.007079542148858309, + 0.003308413550257683, + -0.013504672795534134, + -0.01247347891330719, + 0.007244797423481941, + -0.005585633218288422, + -0.010450752452015877, + 0.011362962424755096, + 0.02104693092405796, + -0.023069657385349274, + 0.030988696962594986, + 0.011118385009467602, + -0.01722622476518154, + -0.01006074994802475, + 0.022911012172698975, + -0.003227438312023878, + 0.025634421035647392, + -0.02112625353038311, + -0.014040100388228893, + 0.0011964492732658982, + 0.002934936201199889, + -0.006636657752096653, + -0.042781323194503784, + 0.027075447142124176, + 0.006160722114145756, + 0.032231416553258896, + -0.02378356084227562, + 0.035536523908376694, + -0.011118385009467602, + -0.04151216149330139, + -0.008487517945468426, + 0.04915357381105423, + -0.0006738289957866073, + -0.012063645757734776, + -0.0047527458518743515, + -0.0025763320736587048, + 0.008447856642305851, + -0.0004829589743167162, + 0.013868235051631927, + 0.004422234836965799, + 0.005919449031352997, + -0.05912178009748459, + -0.0230299960821867, + 0.011396014131605625, + 0.02611035667359829, + 0.01581163890659809, + 0.004399099387228489, + -0.005003934260457754, + -0.0050237649120390415, + -0.005727753043174744, + 0.015071294270455837, + 0.025713743641972542, + -0.005483174696564674, + -0.005489785224199295, + -0.03365922346711159, + -0.005727753043174744, + 0.007410053163766861, + -0.04814881831407547, + 0.02637476474046707, + -0.002592857461422682, + -0.010794484056532383, + -0.00042305386159569025, + 0.006401994731277227, + 0.018336741253733635, + -0.024325598031282425, + 0.04280776530504227, + -0.03178192302584648, + 0.00861311238259077, + -0.03548364341259003, + -0.005235291551798582, + -0.016750289127230644, + 0.0057707191444933414, + 0.030142588540911674, + 0.018640810623764992, + 0.028238845989108086, + 0.036541279405355453, + 0.04315149411559105, + 0.05256444215774536, + 0.0001418098108842969, + 0.017279107123613358, + -0.013960777781903744, + -0.030539201572537422, + 0.010906857438385487, + -0.011250589042901993, + 0.0160363856703043, + -0.0035364660434424877, + -0.024986619129776955, + -0.0628763809800148, + 0.02429915778338909, + -0.006577165797352791, + 0.0005808728164993227, + -0.003642229363322258, + 0.01779470406472683, + 0.005483174696564674, + 0.03503414988517761, + -0.01804589107632637, + 0.0007415837026201189, + -0.027789350599050522, + 0.00893701333552599, + 0.018085552379488945, + 0.011918220669031143, + -0.01090024784207344, + 0.023743899539113045, + 0.01663130521774292, + -0.04505523666739464, + -0.006441656034439802, + 0.0002103908045683056, + -0.02053133398294449, + 0.029878180474042892, + 0.009961596690118313, + -0.012420597486197948, + -0.01612892933189869, + 0.00415452104061842, + 0.019896753132343292, + -0.010503634810447693, + 0.016009945422410965, + 0.029217157512903214, + -0.003490194445475936, + 0.012678395956754684, + 0.020914725959300995, + -0.007839716970920563, + -0.0172130037099123, + -0.009842612780630589, + 0.013398909009993076, + 0.039793506264686584, + -0.025317130610346794, + -0.0023201860021799803, + -0.0003565385704860091, + -0.0018459029961377382, + 0.011382793076336384, + 0.028582576662302017, + 0.004061978310346603, + -0.0026787903625518084, + -0.006147501524537802, + 0.009538542479276657, + -0.0037347725592553616, + -0.016353676095604897, + -0.057323798537254333, + -0.013960777781903744, + 0.0314381904900074, + -0.008652773685753345, + 0.03632974997162819, + -0.017583176493644714, + 0.002335058990865946, + -0.03543076291680336, + 0.024246275424957275, + 0.010391260497272015, + -0.009538542479276657, + 0.02078252099454403, + -0.03733450546860695, + 0.007436493877321482, + 0.022831689566373825, + 0.0016161979874596, + 0.01210330706089735, + 0.022580500692129135, + 0.03244294226169586, + 0.0375724732875824, + 0.02903207205235958, + 0.0016657746164128184, + 0.0345846526324749, + -0.04518744349479675, + 0.033474136143922806, + -0.006504453253000975, + -0.012764329090714455, + 0.008513959124684334, + -0.004779186565428972, + 0.04249047487974167, + 0.033712103962898254, + -0.007958700880408287, + -0.016988256946206093, + 0.0062136040069162846, + 0.018984543159604073, + 0.0157190952450037, + 0.02304321527481079, + 0.007925650104880333, + 0.022487957030534744, + -0.004855204373598099, + 0.031729038804769516, + 0.0013955819886177778, + 0.00332824420183897, + -0.007707512937486172, + -0.059915006160736084, + 0.017437752336263657, + -0.0037215519696474075, + -0.03286599740386009, + 0.017755042761564255, + -0.0043825735338032246, + 0.010761433281004429, + -0.004544524010270834, + -0.010873806662857533, + -0.00767446169629693, + 0.009551763534545898, + 0.00030427653109654784, + 0.024642888456583023, + -0.02343982830643654, + -0.017027918249368668, + 0.015824858099222183, + -0.002622603438794613, + 0.008441247045993805, + -0.021747613325715065, + -0.010827534832060337, + 0.021906258538365364, + -0.010305328294634819, + -0.011025841347873211, + 0.008732096292078495, + 0.015084514394402504, + 0.005440208595246077, + -0.023400167003273964, + -0.006236739456653595, + -0.03868298977613449, + 0.029560890048742294, + -0.01946047879755497, + 0.0028423932380974293, + 0.022012021392583847, + 0.00534105533733964, + 0.002958072116598487, + 0.007258018013089895, + 0.008064464665949345, + 0.010853976011276245, + -0.011739744804799557, + 0.04100978374481201, + -0.03149107098579407, + 0.012321444228291512, + -0.011686863377690315, + -0.012764329090714455, + -0.00860650185495615, + 0.008454467169940472, + 0.012228901498019695, + 0.022078124806284904, + -0.007892598398029804, + -0.025594759732484818, + -0.032733794301748276, + -0.03201989084482193, + -0.0051526641473174095, + -0.05415089428424835, + 0.012169409543275833, + 0.013775691390037537, + 0.000504029041621834, + 0.006676319055259228, + -0.02020082250237465, + -0.015031632967293262, + -0.0069605582393705845, + -0.0372551828622818, + 0.011158046312630177, + -0.012295003049075603, + -0.008183448575437069, + 0.006603606510907412, + -0.009763290174305439, + 0.04011079668998718, + 0.022104565054178238, + -0.006101230159401894, + -0.01097295992076397, + 0.0008551967912353575, + 0.03577449172735214, + -0.012526361271739006, + -0.01688249409198761, + 0.008064464665949345, + 0.011977712623775005, + -0.034796182066202164, + 0.00969057809561491, + 0.0046403720043599606, + -0.009644306264817715, + -0.018032671883702278, + -0.016432998701930046, + -0.03376498818397522, + 0.010820925235748291, + -0.004290030803531408, + 0.002606078051030636, + -0.012777549214661121, + 0.00885108020156622, + 0.001680647605098784, + 0.03590669855475426, + 0.00299277575686574, + 0.016102487221360207, + -0.0027134940028190613, + -0.008170227520167828, + -0.010748212225735188, + 0.0008320610504597425, + -0.013200602494180202, + 0.01920928992331028, + -0.004362742882221937, + -0.00860650185495615, + -0.040295880287885666, + -0.008923792280256748, + -0.019857091829180717, + -0.0010287149343639612, + 0.034716859459877014, + -0.018773015588521957, + -0.01256602257490158, + -0.015573671087622643, + 0.02162862941622734, + 0.01788724586367607, + -0.0004606494912877679, + -0.0009940112940967083, + -0.013121279887855053, + 0.0036818906664848328, + 0.009664136916399002, + -0.010695330798625946, + -0.0026672224048525095, + 0.007304289378225803, + 0.0012551149120554328, + 0.01796656847000122, + -0.03548364341259003, + -0.015150616876780987, + -0.0009593077120371163, + -0.01919606886804104, + 0.005833516363054514, + 0.007456324528902769, + -0.005698007065802813, + 0.04399760439991951, + 0.025806285440921783, + 0.01451603602617979, + 0.005734363105148077, + -0.009802951477468014, + 0.0032009973656386137, + 0.027313414961099625, + -0.01787402667105198, + -0.013947557657957077, + -0.022911012172698975, + 0.009214642457664013, + 0.03503414988517761, + 0.04108910635113716, + 0.004243758972734213, + 0.004187572281807661, + 0.0032456163316965103, + 0.020570995286107063, + 0.0004238801484461874, + -0.034399569034576416, + 0.0019830649252980947, + 0.0065606399439275265, + -0.02310931868851185, + 0.014185525476932526, + 0.01704113930463791, + -0.005674871150404215, + 0.008170227520167828, + -0.044103365391492844, + -0.019513359293341637, + -0.009188201278448105, + 0.002880401909351349, + -0.019936414435505867, + 0.010173123329877853, + -0.00600868696346879, + 0.004604015965014696, + -0.06879913806915283, + 0.00387689215131104, + 0.01812521368265152, + -0.008837860077619553, + 0.018270639702677727, + -0.003391041187569499, + 0.006854794919490814, + -0.004656897857785225, + 0.0015021717408671975, + -0.005935974884778261, + 0.020980827510356903, + -0.019420817494392395, + 0.010946518741548061, + 0.020570995286107063, + -0.0006312757031992078, + 0.0225540604442358, + 0.010906857438385487, + -0.020835403352975845, + -0.010126852430403233, + -0.02263338305056095, + -0.013451791368424892, + -0.014502815902233124, + 0.018693692982196808, + -0.037889763712882996, + -0.013041957281529903, + 0.02686392143368721, + 0.020095059648156166, + 0.007681071758270264, + -0.011607540771365166, + -0.008428025990724564, + 0.018508607521653175, + 0.002424296922981739, + 0.016274353489279747, + -0.00040714803617447615, + -0.03400295600295067, + 0.016525542363524437, + 0.014714342541992664, + -0.004253674298524857, + 0.06641945987939835, + 0.05206206813454628, + 0.007271238602697849, + 0.008950233459472656, + 0.004071893636137247, + -0.029375802725553513, + 0.02346627041697502, + -0.015679433941841125, + 0.024418141692876816, + -0.052352916449308395, + 0.011495167389512062, + 0.01035820972174406, + 0.00856023095548153, + -0.003952909726649523, + 0.015071294270455837, + -0.022659823298454285, + 0.002845698269084096, + 0.0013988871360197663, + 0.025145264342427254, + -0.003655449952930212, + 0.01655198261141777, + 0.0014096287777647376, + 0.047937292605638504, + 0.008216499350965023, + -0.03283955529332161, + -0.014833326451480389, + -0.04434133321046829, + 0.0023631525691598654, + 0.006699454504996538, + 0.007654631044715643, + 0.013736030086874962, + 0.008454467169940472, + -0.026824260130524635, + 0.014635019935667515, + 0.006699454504996538, + 0.02112625353038311, + 0.020570995286107063, + 0.012374325655400753, + -0.0031134120654314756, + 0.02128489874303341, + 0.0057971603237092495, + -0.012361105531454086, + 0.006296231411397457, + 0.003017564071342349, + 0.02395542524755001, + -0.004841983783990145, + -0.003824010491371155, + -0.010318548418581486, + -0.021734392270445824, + 0.012004153802990913, + -0.025925269350409508, + -0.0006432567024603486, + 0.02037268877029419, + 0.02013472095131874, + 0.014780445024371147, + 0.01550756860524416, + -0.01729232631623745, + 0.04957662522792816, + -0.02369101718068123, + 0.003942994400858879, + -0.0008200799929909408, + -0.011997543275356293, + 0.0019880225881934166, + -0.023228302597999573, + 0.0018492081435397267, + -0.009730239398777485, + 0.007013440132141113, + 0.004855204373598099, + 0.01027227658778429, + 0.009128709323704243, + -0.013617046177387238, + 0.008599892258644104, + 0.006894456222653389, + -0.009961596690118313, + -0.019738107919692993, + -0.015824858099222183, + -0.03402939438819885, + -0.004273504950106144, + -0.014330949634313583, + -0.019605902954936028, + -0.002518492517992854, + 0.0019648869056254625, + -0.018852338194847107, + 0.008355313912034035, + -0.0004631283227354288, + -0.0027101889718323946, + -0.012255341745913029, + 0.014330949634313583, + -0.00342078716494143, + 0.014330949634313583, + 0.015388584695756435, + 0.008540400303900242, + -0.0042635896243155, + 0.0019301832653582096, + -0.014701122418045998, + 0.001022104755975306, + 0.00951871182769537, + -0.014264848083257675, + -0.013207213021814823, + 0.018680471926927567, + 0.031887684017419815, + -0.022752366960048676, + -0.02552865818142891, + 0.004762661177664995, + -0.0016145454719662666, + 0.0018541658064350486, + 0.0031877770088613033, + 0.01430450938642025, + -0.01639333739876747, + -0.021007269620895386, + 0.011713304556906223, + 0.002161540789529681, + -0.023162199184298515, + -0.0076215798035264015, + 0.012123137712478638, + 0.02794799581170082, + 0.006210298743098974, + -0.02202524244785309, + -0.013035347685217857, + -0.001098122214898467, + -0.007899208925664425, + -0.000649040681309998, + -0.014449933543801308, + 0.00023796780442353338, + 0.0217740535736084, + 0.009994647465646267, + 0.02419339306652546, + 0.006352418567985296, + -0.005020459648221731, + 0.008117346093058586, + -0.0021334474440664053, + -0.01614214852452278, + 0.00785293709486723, + -0.002635824028402567, + -0.008784977719187737, + -0.024656109511852264, + -0.015494348481297493, + 0.0003096473519690335, + -0.008494128473103046, + -0.004402404185384512, + 0.008520569652318954, + -0.04206741973757744, + -0.0016608169535174966, + 0.014410272240638733, + 0.0037975695449858904, + 0.008044634014368057, + -0.008051243610680103, + 0.00332493893802166, + -0.016155369579792023, + 0.015745535492897034, + -0.04019011929631233, + 0.007244797423481941, + 0.03233718127012253, + 0.006365638691931963, + -0.003916553221642971, + 0.026242559775710106, + -0.01006736047565937, + 0.006646573077887297, + 0.0201214998960495, + 0.02094116620719433, + -0.03043343871831894, + 0.008593281731009483, + 0.02652018889784813, + -0.02611035667359829, + 0.01255280151963234, + 0.029560890048742294, + -0.008910572156310081, + -0.018574709072709084, + -0.028873426839709282, + 0.03276023268699646, + 0.02054455317556858, + -0.009855832904577255, + 5.804596730740741e-5, + -0.0023218386340886354, + -0.005165884271264076, + -0.003326591569930315, + 0.007998362183570862, + -0.019989294931292534, + -0.0013897981261834502, + -0.0214567631483078, + -0.0003139853070024401, + -0.01135635282844305, + 0.018997762352228165, + -0.0034042615443468094, + 0.028503254055976868, + 0.011627371422946453, + 0.02412729151546955, + 0.008289211429655552, + 0.002958072116598487, + -0.03524567559361458, + 0.00461723655462265, + 0.0092344731092453, + -0.005565802566707134, + -0.018654031679034233, + -0.01256602257490158, + 0.0017798008630052209, + -0.019169628620147705, + 0.0015385280130431056, + 0.019235730171203613, + -0.02934936247766018, + 0.014978751540184021, + -0.012493309564888477, + -0.013154331594705582, + 0.00989549420773983, + 0.0025085771922022104, + 0.008064464665949345, + 0.01944725774228573, + 0.020174382254481316, + 0.011924831196665764, + -0.0010254099033772945, + -0.013372468762099743, + 0.008712265640497208, + 0.024973399937152863, + -0.0002272262063343078, + 0.001457552774809301, + 0.009485661052167416, + -0.034135159105062485, + -0.008434636518359184, + 0.03498126566410065, + -0.016829611733555794, + 0.010635838843882084, + -0.007971921004354954, + -0.046297959983348846, + -0.009505491703748703, + 0.019077084958553314, + -0.016261132434010506, + 0.035562966018915176, + 0.010926688089966774, + 0.0016327234916388988, + 0.007806666195392609, + 0.04119487106800079, + -0.01542824599891901, + -0.017424531280994415, + -0.015084514394402504, + -0.029058512300252914, + 0.001728571718558669, + 0.0006585428491234779, + -0.017080800607800484, + -0.01467468123883009, + -0.023730678483843803, + 0.023889323696494102, + 0.006021907553076744, + -0.04198809713125229, + -0.0014278067974373698, + -0.0007952917367219925, + 0.012460258789360523, + 0.008031412959098816, + -0.01979098841547966, + 0.009591424837708473, + -0.020174382254481316, + 0.01879945583641529, + -0.004475116729736328, + 0.011845508590340614, + 0.035880256444215775, + 0.00609131483361125, + -0.001464163069613278, + 0.005777329672127962, + -0.023400167003273964, + 0.001821114681661129, + 0.0052518174052238464, + 0.007952090352773666, + 0.012308224104344845, + -0.0016335498075932264, + -0.01089363731443882, + -0.011369572952389717, + -0.01027227658778429, + 0.00019458825408946723, + -0.0001703163725323975, + -0.001411281293258071, + 0.008289211429655552, + -0.0022474736906588078, + -0.005562497302889824, + 0.026639172807335854, + 0.002554848790168762, + -0.010616008192300797, + -0.01322704367339611, + 0.0003257597563788295, + 0.0042074029333889484, + 0.0005734363221563399, + -0.026744937524199486, + -0.005212156102061272, + -0.004818847868591547, + -0.006249960046261549, + 0.012209070846438408, + 0.015401804819703102, + 0.017926907166838646, + -0.016195030882954597, + -0.013987218961119652, + -0.007879378274083138, + -0.003167946357280016, + -0.012275172397494316, + 0.0010692025534808636, + -0.00609462009742856, + -0.013921116478741169, + -0.006378859281539917, + -0.003956214524805546, + -0.0010741602163761854, + 0.009921935386955738, + 0.001183228800073266, + -0.0077339536510407925, + -0.0007229924667626619, + 0.010021088644862175, + -0.0005300567718222737, + 0.007714122999459505, + 0.0026986210141330957, + 0.002394550945609808, + -0.006302841939032078, + 0.02346627041697502, + 0.008348703384399414, + 0.020491672679781914, + -0.019341494888067245, + -0.024471022188663483, + -0.01678995043039322, + 0.00445198081433773, + 0.009108878672122955, + -0.03011614829301834, + -0.017279107123613358, + -0.007780225016176701, + 0.010239225812256336, + 0.00711259339004755, + -0.024431360885500908, + -0.02202524244785309, + -0.023889323696494102, + 0.0042074029333889484, + 0.019738107919692993, + 0.037387385964393616, + -0.0016583381220698357, + 0.02002895623445511, + -0.0009882274316623807, + -0.018640810623764992, + 0.02103370986878872, + -0.013425350189208984, + 0.009875663556158543, + -0.024312376976013184, + -0.012889922596514225, + 0.01886555925011635, + 0.012057035230100155, + 0.01405332051217556, + -0.01729232631623745, + 0.009419558569788933, + 0.019235730171203613, + -0.012129748240113258, + 0.009181590750813484, + -0.011382793076336384, + -0.04180300980806351, + -0.014555697329342365, + -0.016750289127230644, + -0.02296389266848564, + -0.026890361681580544, + 0.002877096878364682, + -0.003549686400219798, + 0.015269600786268711, + -0.0005874829948879778, + -0.012592462822794914, + 0.007046490907669067, + 0.004369353409856558, + 0.017993010580539703, + 0.005840126425027847, + 0.003443922847509384, + -0.0022111174184828997, + -0.02993106096982956, + 0.010543296113610268, + -0.022567279636859894, + -0.012599073350429535, + 0.0059425849467515945, + 0.032310739159584045, + -0.03201989084482193, + 0.005030374974012375, + 0.020319806411862373, + 0.011442285031080246, + 0.0101400725543499, + -0.025541877374053, + -0.017926907166838646, + 0.005612073931843042, + 0.00785293709486723, + -0.01730554737150669, + -0.0454254113137722, + -0.009988037869334221, + -0.009135319851338863, + 0.009267523884773254, + 0.017411310225725174, + -0.03151751309633255, + -0.01804589107632637, + 0.0015327440341934562, + 0.019275391474366188, + -0.014198745600879192, + -0.02702256664633751, + 0.0201214998960495, + -0.007099372800439596, + -0.0005610421649180353, + -0.006150806788355112, + -0.026982905343174934, + -0.017569955438375473, + -0.002067345194518566, + -0.0172130037099123, + 0.0035364660434424877, + 0.020425569266080856, + -0.00877836812287569, + -0.0009262566454708576, + 0.02993106096982956, + -0.006144196726381779, + -0.0129295838996768, + -0.01272466778755188, + -0.006940727587789297, + -0.005645125173032284, + -0.007350561209022999, + -0.002976250136271119, + -0.019341494888067245, + -0.005896313581615686, + -0.016737068071961403, + 0.02552865818142891, + -0.0012212375877425075, + 0.017821144312620163, + -0.0112770302221179, + 0.024233054369688034, + -0.018812676891684532, + -0.013279925100505352, + -0.020676758140325546, + 0.030142588540911674, + 0.02203846350312233, + -0.030142588540911674, + 0.028159523382782936, + 0.030169028788805008, + 0.012215680442750454, + -0.006289621349424124, + 0.005278258118778467, + -0.015282820910215378, + 0.0397670641541481, + 0.0312795452773571, + -0.007687682285904884, + -0.015335703268647194, + -0.01534892339259386, + -0.002753155305981636, + 0.0020689978264272213, + 0.006953948177397251, + 0.00267052766866982, + -0.0011782711371779442, + -0.04783152788877487, + -0.005294783506542444, + 0.009498881176114082, + 0.02834460884332657, + -0.0012220637872815132, + 0.02562119998037815, + 0.005883092992007732, + -0.003263794584199786, + 0.007456324528902769, + 0.012037204578518867, + -0.009174981154501438, + 0.0028605712577700615, + -0.01314111053943634, + 0.005896313581615686, + 0.024973399937152863, + -0.027339857071638107, + 0.009512102231383324, + 0.020848624408245087, + 0.020359467715024948, + -0.0030968866776674986, + -0.03360634297132492, + -0.011468726210296154, + -0.00840158574283123, + -0.010880417190492153, + 0.004253674298524857, + 0.020570995286107063, + 0.005767414346337318, + -0.026467308402061462, + 0.0058996183797717094, + -0.021932698786258698, + -0.03418803960084915, + -0.024233054369688034, + 0.015560450032353401, + -0.0016153716715052724, + -0.013564164750277996, + -0.005407157354056835, + -0.016578422859311104, + -0.008566840551793575, + 0.015692654997110367, + -0.000704401230905205, + -0.0025779844727367163, + 0.005995466839522123, + -0.014859767630696297, + -0.007952090352773666, + -0.004316471517086029, + 0.007039880845695734, + -0.011495167389512062, + 0.011158046312630177, + -0.008183448575437069, + -0.01430450938642025, + 0.0029679874423891306, + 0.010992790572345257, + -0.014291288331151009, + -0.016089268028736115, + -0.016578422859311104, + -0.010206175036728382, + -0.002622603438794613, + 0.013802132569253445, + 0.020570995286107063, + 0.006226824130862951, + 0.00936006661504507, + -0.012711446732282639, + -0.0001157820806838572, + -0.008157007396221161, + -0.018561488017439842, + -0.0009758332744240761, + -0.0038504512049257755, + -0.019103527069091797, + -0.013947557657957077, + -0.0010601135436445475, + 0.08894708007574081, + -0.013293146155774593, + -0.0010146682616323233, + 0.022831689566373825, + 0.0286090187728405, + -0.014000439085066319, + -0.0013493105070665479, + 0.026083914563059807, + -0.01073499210178852, + -0.001139436149969697, + -0.007271238602697849, + -0.022752366960048676, + 0.01604960672557354, + -0.0029679874423891306, + -0.01697503589093685, + 0.013498062267899513, + 0.010093800723552704, + 0.028794104233384132, + 0.01397399790585041, + 0.0025217977818101645, + 0.01134974230080843, + 0.016591643914580345, + -0.011858728714287281, + 0.02238219417631626, + 0.0142251867800951, + 0.00775378430262208, + 0.011488556861877441, + 0.021099811419844627, + 0.028318168595433235, + -0.006520978640764952, + 0.005859957076609135, + 0.014449933543801308, + -0.010001257993280888, + -0.03722874075174332, + 0.003296845592558384, + 0.024841194972395897, + -0.009650916792452335, + -0.007198526058346033, + 0.006967168301343918, + 0.03535144031047821, + -0.00471969461068511, + -0.004445370752364397, + 0.006368943955749273, + 0.005453428719192743, + 0.004458591341972351, + 0.013775691390037537, + -0.02187981829047203, + 0.00020667255739681423, + -0.0009708756115287542, + -0.0260178130120039, + -0.011739744804799557, + 0.009201421402394772, + 0.00185086065903306, + 0.007515816483646631, + 0.007707512937486172, + -0.007879378274083138, + 0.009181590750813484, + -0.01755673624575138, + 0.00285891885869205, + -0.0032770149409770966, + 0.00434291223064065, + -0.001183228800073266, + -0.016419777646660805, + -0.02677137777209282, + 0.017014697194099426, + -0.008275991305708885, + -0.01922251097857952, + -0.002149973064661026, + -0.0004048757837153971, + 0.026427647098898888, + 0.0006593691068701446, + 0.009802951477468014, + -0.006765556987375021, + 0.004270200151950121, + -0.008996505290269852, + 0.02086184360086918, + 0.0052815633825957775, + -0.012235511094331741, + -0.0022474736906588078, + -4.534195613814518e-5, + -0.015930622816085815, + -0.007172085344791412, + -0.015679433941841125, + -0.015177058055996895, + -0.015613332390785217, + 0.013028737157583237, + 0.029904620721936226, + -0.017834365367889404, + 0.004256979562342167, + -0.01886555925011635, + -0.022183887660503387, + 0.005935974884778261, + -0.01073499210178852, + 0.026837479323148727, + 0.003225785680115223, + -0.0077471742406487465, + -0.024510683491826057, + 0.01994963362812996, + -0.008751926943659782, + 0.0032753623090684414, + -0.010093800723552704, + 0.01836318150162697, + -0.0012121484614908695, + -0.003496804740279913, + 0.00856023095548153, + -0.007601749151945114, + -0.0022507787216454744, + 0.013418739661574364, + -0.006940727587789297, + -0.007707512937486172, + -0.009809562005102634, + -0.008170227520167828, + -0.020174382254481316, + 0.005625294521450996, + -0.008646163158118725, + 0.02736629731953144, + 0.016895713284611702, + -0.010463973507285118, + -0.020491672679781914, + -0.015415025874972343, + -0.005489785224199295, + 0.0023763729259371758, + 0.025013061240315437, + 0.0018062416929751635, + 0.014608578756451607, + -0.002923368476331234, + -0.005625294521450996, + -0.018270639702677727, + -0.009571594186127186, + -0.008970064111053944, + -0.0005511268391273916, + 0.006907676346600056, + 0.004970883019268513, + 0.010503634810447693, + -0.027710027992725372, + -0.014251627027988434, + 0.0005928538157604635, + -0.019658785313367844, + 0.014185525476932526, + -0.019896753132343292, + 0.005334444809705019, + 0.023651355877518654, + 0.0019880225881934166, + 0.00984922330826521, + -0.0029498091898858547, + 0.010212784633040428, + -0.007998362183570862, + -0.01589096151292324, + 0.019751327112317085, + 0.01746419258415699, + 0.003685195930302143, + 0.008910572156310081, + 0.016829611733555794, + -0.010860586538910866, + -0.0142251867800951, + -0.004970883019268513, + -0.026506969705224037, + -0.013881455175578594, + -0.002734977286309004, + -0.029455125331878662, + 0.0029316311702132225, + -0.015110955573618412, + -0.018521826714277267, + 0.0006899414001964033, + -0.01805911213159561, + 0.007958700880408287, + 0.00839497521519661, + -0.0006511063547804952, + 0.007244797423481941, + 0.005602158606052399, + -0.004141300916671753, + 0.01529604196548462, + -0.00018074811669066548, + -0.020491672679781914, + 0.0017004782566800714, + -0.00832226313650608, + -0.0005469954339787364, + 0.010761433281004429, + -0.007224966771900654, + 0.005496395286172628, + 0.01755673624575138, + -0.011310080997645855, + -0.009333626367151737, + 0.000268126925220713, + 0.031200222671031952, + -0.01886555925011635, + 0.0064647919498384, + 0.004081808961927891, + 0.0038603665307164192, + 0.013438570313155651, + -0.017027918249368668, + 0.020557774230837822, + -0.009254303760826588, + -0.0005606290069408715, + -0.011865339241921902, + 0.012618904002010822, + 0.011501776985824108, + 0.019777769222855568, + 0.015666212886571884, + 0.015758756548166275, + 0.011594320647418499, + 0.010616008192300797, + -0.0016823001205921173, + -0.007185305468738079, + -0.014092981815338135, + -0.017358429729938507, + -0.012671785429120064, + -0.019738107919692993, + -0.011673643253743649, + -0.0008667646907269955, + -0.043125055730342865, + -0.0023813305888324976, + 0.009591424837708473, + -0.010463973507285118, + -0.00029436120530590415, + 0.004888255149126053, + 0.007555477786809206, + -0.0257005225867033, + 0.044209130108356476, + 0.03651483729481697, + 0.004927916452288628, + 0.010126852430403233, + 0.023928984999656677, + -0.004197487607598305, + 0.00885108020156622, + 0.018693692982196808, + 0.006074789445847273, + 8.619103027740493e-5, + 0.024814754724502563, + 0.001215453608892858, + 0.007608359679579735, + -0.01006074994802475, + -0.016102487221360207, + -0.012704837135970592, + 0.016089268028736115, + 0.02868834137916565, + 0.014833326451480389, + -0.008157007396221161, + 0.006368943955749273, + -0.005724447779357433, + -0.014648240059614182, + 0.01570587418973446, + -0.02094116620719433, + 0.0029911231249570847, + -0.001645943964831531, + 0.017979789525270462, + -0.025396453216671944, + -0.004544524010270834, + -0.009756679646670818, + -2.7241323550697416e-5, + 0.020002515986561775, + -0.012671785429120064, + 0.01060278806835413, + 0.005486479960381985, + 0.005142748821526766, + -0.016816390678286552, + -0.002723409328609705, + 0.012671785429120064, + 0.022104565054178238, + -0.0026374764274805784, + 0.009406338445842266, + 0.01081431470811367, + 0.004960967693477869, + -0.0018806066364049911, + -0.007773614954203367, + 0.005840126425027847, + -0.02227643132209778, + 0.008388364687561989, + -0.0050270697101950645, + 0.01612892933189869, + -0.008421416394412518, + 0.006795302964746952, + -0.0008316478924825788, + 0.032548706978559494, + 0.003708331612870097, + 0.017094019800424576, + 0.010027699172496796, + -0.011336522176861763, + 0.003566212020814419, + 0.014687901362776756, + 0.00507334154099226, + 0.006795302964746952, + -0.0056715658865869045, + -0.021760834380984306, + 0.015573671087622643, + -0.02062387578189373, + -0.020901504904031754, + -0.005007239058613777, + -0.013207213021814823, + -0.020319806411862373, + -0.00748276524245739, + -0.016829611733555794, + 0.009016335941851139, + 0.018230978399515152, + 0.009750070050358772, + -0.023254742845892906, + 0.009174981154501438, + -0.006762251723557711, + 0.017517074942588806, + -0.031200222671031952, + -0.0020888284780085087, + 0.021099811419844627, + -0.0060714841820299625, + -0.032390061765909195, + 0.02154930680990219, + -0.007099372800439596, + 0.025092383846640587, + -0.014410272240638733, + 0.0002385875122854486, + -0.002622603438794613, + 0.008837860077619553, + -0.002341669285669923, + -0.03675280511379242, + 0.004055367782711983, + -0.0029299785383045673, + -0.021271677687764168, + -0.004025621805340052, + 0.02296389266848564, + 0.004713084548711777, + 0.004567659925669432, + 0.008818029426038265, + 0.02346627041697502, + 0.010364820249378681, + 0.0022292956709861755, + -0.005327834747731686, + 0.002619298407807946, + 0.010497024282813072, + 0.010715161450207233, + 0.03101513721048832, + 0.006940727587789297, + 0.012691616080701351, + 0.0036653652787208557, + -0.012242121621966362, + 0.0184689462184906, + -0.008996505290269852, + 0.006451571360230446, + -0.012129748240113258, + -0.014423493295907974, + -0.021998802199959755, + 0.011786016635596752, + -0.00563851511105895, + 0.0023796779569238424, + -0.0012832083739340305, + -0.0059293643571436405, + 0.004164436366409063, + 0.02037268877029419, + 0.025541877374053, + 0.009042776189744473, + -0.004319776780903339, + 0.02187981829047203, + -0.0007378654554486275, + -0.02362491562962532, + 0.007337340619415045, + -0.011984323151409626, + -0.03151751309633255, + 0.00807107426226139, + -0.024404920637607574, + -0.00027225830126553774, + -0.016327235847711563, + -0.0030026910826563835, + -0.02262016199529171, + 0.00702666025608778, + -0.008130566217005253, + -0.019328273832798004, + 0.04140639677643776, + 0.01113821566104889, + -0.0009518712176941335, + -0.0014972140779718757, + -0.009789731353521347, + -0.003959519788622856, + -0.001355920685455203, + 0.005965720862150192, + 0.017517074942588806, + -0.010424312204122543, + -0.0017467497382313013, + 0.007740563713014126, + -0.012513140216469765, + 0.014013659209012985, + -0.0026341713964939117, + 0.02094116620719433, + 0.01680317148566246, + -0.0010378040606155992, + -0.012909753248095512, + -0.002366457600146532, + 0.003290235297754407, + 0.026903582736849785, + -0.007581918500363827, + 0.012235511094331741, + 0.010298717767000198, + 0.010133462026715279, + 0.006203688681125641, + -0.005879787728190422, + 0.014026880264282227, + -0.0052518174052238464, + 0.005698007065802813, + 0.0013550944859161973, + -0.022818468511104584, + -0.00327370990999043, + -0.0030324370600283146, + -0.013088229112327099, + 0.005013849586248398, + 0.008599892258644104, + -0.02062387578189373, + 0.008157007396221161, + 0.0018789541209116578, + -0.01630079373717308, + 0.011343131773173809, + 0.01043753232806921, + 0.016895713284611702, + -0.010622618719935417, + 0.02794799581170082, + 0.009452610276639462, + -0.021351000294089317, + 0.00802480336278677, + 0.015150616876780987, + -0.0036885009612888098, + 0.003572822082787752, + -0.005579023156315088, + 0.02202524244785309, + 0.004590795375406742, + 0.010100411251187325, + 0.0019186154240742326, + 0.007608359679579735, + -0.013947557657957077, + 0.01663130521774292, + 0.02336050570011139, + 0.028503254055976868, + 0.004071893636137247, + -0.002554848790168762, + 0.004650287330150604, + -0.012288393452763557, + 0.007423273287713528, + 0.017900466918945312, + 0.004028927069157362, + -0.027842232957482338, + -0.004848593845963478, + 0.013656707480549812, + -0.01780792325735092, + -0.026877140626311302, + 0.039634861052036285, + -0.014119422994554043, + -0.0074761551804840565, + -0.0008320610504597425, + -0.014410272240638733, + -0.0005804596585221589, + 0.006646573077887297, + 0.008553620427846909, + 0.026295442134141922, + 0.011442285031080246, + -0.019063865765929222, + -0.003430702490732074, + 0.02296389266848564, + 0.024748651310801506, + -0.0183103010058403, + -0.010867196135222912, + -0.005816990975290537, + -0.00764802098274231, + 0.009075827896595001, + 0.02428593672811985, + -0.02810664102435112, + -0.005760803818702698, + -0.006537504494190216, + 0.014449933543801308, + 0.011118385009467602, + -0.005816990975290537, + -0.003619093680754304, + 0.016499100252985954, + -0.006544114556163549, + -0.009102268144488335, + 0.014040100388228893, + -0.011574489995837212, + 0.0038868074771016836, + 0.011918220669031143, + -0.016763510182499886, + -0.008408195339143276, + 0.009419558569788933, + -0.012387546710669994, + 0.010378040373325348, + 0.008031412959098816, + -0.007919039577245712, + -0.011382793076336384, + -0.004174351692199707, + -0.0023185336031019688, + 0.0008035544888116419, + -0.007291069254279137, + 0.009135319851338863, + -0.02427271567285061, + -0.011415844783186913, + -0.00253667077049613, + 0.03585381433367729, + 0.01006074994802475, + -0.0020309891551733017, + 0.011759575456380844, + -0.0014715995639562607, + 0.0034009565133601427, + -0.0026556546799838543, + -0.014463154599070549, + 0.023981867358088493, + 0.007575308438390493, + 0.015758756548166275, + 0.0007857895107008517, + -0.009016335941851139, + 0.004557744599878788, + 0.02603103406727314, + 0.011792627163231373, + -0.02361169457435608, + -0.010411091148853302, + -0.013207213021814823, + 0.008328872732818127, + 0.022514399141073227, + 0.009584814310073853, + -0.004716389812529087, + 0.0036752806045114994, + -0.003012606408447027, + -0.00033691449789330363, + 0.022897791117429733, + 0.01944725774228573, + 0.012572632171213627, + 0.02063709683716297, + -0.0021598883904516697, + 0.011329911649227142, + -0.0035397710744291544, + 0.02037268877029419, + -0.014872987754642963, + -0.0031894296407699585, + 0.025422893464565277, + 0.023241521790623665, + 0.02868834137916565, + -0.01639333739876747, + 0.008824639022350311, + -0.02510560303926468, + 0.01922251097857952, + 0.02818596363067627, + -0.02053133398294449, + -0.0025383231695741415, + 0.004399099387228489, + 0.02562119998037815, + -0.004888255149126053, + 0.012076865881681442, + -0.004247064236551523, + -0.015547229908406734, + -0.004461896140128374, + 0.010549905709922314, + 0.012057035230100155, + -0.017239445820450783, + -0.014397052116692066, + -0.007033270783722401, + 0.009584814310073853, + -0.01405332051217556, + -0.016895713284611702, + -0.030063265934586525, + 0.008494128473103046, + 0.012856871820986271, + 0.00756869837641716, + 0.010576346889138222, + -0.008784977719187737, + -0.0143838319927454, + 0.003460448468104005, + 0.011548048816621304, + -0.005423682741820812, + -0.0022920926567167044, + -0.028053760528564453, + 0.0007961179944686592, + -0.009089048020541668, + 0.004134690389037132, + 0.010404481552541256, + -0.013346027582883835, + 0.01671062782406807, + -0.005612073931843042, + 0.01911674626171589, + -0.014000439085066319, + 0.017014697194099426, + -0.03548364341259003, + -0.0029068428557366133, + 0.0008543705334886909, + 0.008328872732818127, + 0.0015715790214017034, + 0.007793445605784655, + 0.006934117525815964, + -0.0004300772270653397, + 0.0016071089776232839, + -0.028397491201758385, + 0.014714342541992664, + 0.00046725969878025353, + -0.0006684581749141216, + 0.0020871758460998535, + -0.011633981950581074, + 0.010292107239365578, + -0.00767446169629693, + -0.021139472723007202, + 0.046773895621299744, + 0.0011815762845799327, + -0.00030510281794704497, + -0.037704676389694214, + 0.01795334927737713, + -0.006600301247090101, + -0.016168590635061264, + -0.007912429049611092, + -0.003913248423486948, + -0.01912996731698513, + -0.001973149599507451, + 0.014978751540184021, + -0.0019698445685207844, + 0.005215460900217295, + -0.008566840551793575, + -0.005162579473108053, + 0.014542477205395699, + -0.0006903544999659061, + -0.0006180552882142365, + -0.007760394364595413, + -0.006401994731277227, + 0.011303470470011234, + 0.02760426513850689, + -0.0051526641473174095, + 0.00684157432988286, + -6.827114702900872e-5, + 0.012969245202839375, + 0.005274952854961157, + 0.025991372764110565, + 0.009082437492907047, + -0.012757718563079834, + -0.007059711497277021, + 0.0023631525691598654, + -0.00807107426226139, + 0.0032803199719637632, + -0.0039496044628322124, + -0.00014253279368858784, + 0.011819067411124706, + -0.011085333302617073, + 0.008738706819713116, + -0.004703169222921133, + -0.010834145359694958, + 0.026176458224654198, + -0.024814754724502563, + 0.005711227189749479, + -0.011865339241921902, + -0.0032836252357810736, + 0.01887877844274044, + 0.0011311733396723866, + -0.0010526770493015647, + 0.001507955719716847, + -0.016406558454036713, + -0.010820925235748291, + -0.0026077304501086473, + -0.0003261728852521628, + 0.010318548418581486, + 0.012546191923320293, + -0.030406996607780457, + -0.009869053959846497, + -0.016181809827685356, + -0.017358429729938507, + 0.0033811258617788553, + -0.023175420239567757, + 0.007429883815348148, + 0.017490632832050323, + 0.003397651482373476, + -0.003496804740279913, + 0.004564354661852121, + 0.0049973237328231335, + -0.004316471517086029, + -0.004233843646943569, + -0.023928984999656677, + 0.01729232631623745, + -0.0031249800231307745, + 0.027472060173749924, + 0.0007514990284107625, + 0.028133083134889603, + 0.012228901498019695, + -0.0028093422297388315, + -0.005866567604243755, + -0.0010758127318695188, + 0.010219395160675049, + -0.007244797423481941, + 0.014291288331151009, + -0.0003623225202318281, + -0.013630267232656479, + 0.012043815106153488, + -0.023928984999656677, + -0.002617645775899291, + -0.028423931449651718, + 0.005863262340426445, + 0.010820925235748291, + -0.037546031177043915, + -0.008646163158118725, + -7.2622010520717595e-6, + 0.009479050524532795, + -0.00016773425159044564, + -0.02752494253218174, + -0.010417701676487923, + 0.004964272957295179, + -0.022937452420592308, + -0.008388364687561989, + -0.001355920685455203, + -0.010331768542528152, + 0.023228302597999573, + 0.010754822753369808, + -0.011964492499828339, + -0.015031632967293262, + -0.005314614158123732, + 0.00608800956979394, + 0.008256160654127598, + -0.020002515986561775, + 0.007879378274083138, + 0.001121258013881743, + 0.004749440588057041, + -0.030750729143619537, + 0.009802951477468014, + -0.00036521448055282235, + 0.0019417512230575085, + -0.010265666991472244, + -0.008275991305708885, + -0.009089048020541668, + -0.0021400577388703823, + 0.0037810439243912697, + -0.010920078493654728, + -0.010774653404951096, + 0.006894456222653389, + -0.012301613576710224, + -0.007046490907669067, + 0.008289211429655552, + -0.007548867724835873, + 0.01656520366668701, + 0.007786835543811321, + -0.0020822181832045317, + 0.015904180705547333, + -0.011680252850055695, + 0.018812676891684532, + 0.0030489624477922916, + -0.0216154083609581, + 0.028133083134889603, + 0.013253484852612019, + 0.0019483614014461637, + -0.010906857438385487, + 0.005436903331428766, + -0.018151655793190002, + -0.00914192944765091, + 0.011019231751561165, + -0.006117755547165871, + 0.006368943955749273, + -0.00619707815349102, + 0.004779186565428972, + -0.001991327852010727, + 0.02211778610944748, + 0.011838898062705994, + 0.018574709072709084, + -0.013524503447115421, + -0.0035100250970572233, + 0.00387689215131104, + -0.009763290174305439, + 0.012308224104344845, + 0.007826496846973896, + -0.02062387578189373, + 0.03194056823849678, + -0.007581918500363827, + 0.0011543091386556625, + -0.015110955573618412, + 0.013855013996362686, + 0.00574097316712141, + 0.008084295317530632, + -0.0041214702650904655, + 0.01628757454454899, + -0.02071641944348812, + 0.009961596690118313, + 0.009822782129049301, + -0.008289211429655552, + -0.017755042761564255, + 0.009928545914590359, + 0.013498062267899513, + 0.006216908805072308, + -0.003685195930302143, + -0.010093800723552704, + 0.005205545574426651, + -0.0031563786324113607, + -0.0021945920307189226, + 0.018521826714277267, + -0.010880417190492153, + 0.010027699172496796, + -0.0053840214386582375, + 0.0009353456553071737, + 0.017847584560513496, + -0.006240044720470905, + 0.033474136143922806, + -0.011706694029271603, + 0.02260694094002247, + -0.03868298977613449, + -0.015454687178134918, + 0.023148979991674423, + 0.012863481417298317, + 0.02595171146094799, + -0.004703169222921133, + 0.008044634014368057, + -0.017252665013074875, + -0.012803989462554455, + -0.008870910853147507, + -0.00268374802544713, + 0.0014344170922413468, + 0.0015641425270587206, + -0.006292926613241434, + -0.013696368783712387, + 0.0067589464597404, + 0.0029597245156764984, + 0.012506530620157719, + 0.006742421071976423, + -0.012797379866242409, + -0.000736626039724797, + 0.005496395286172628, + 0.003427397459745407, + 0.008355313912034035, + 0.01845572516322136, + 0.02661273255944252, + 0.0009931850945577025, + 0.005291478708386421, + -0.002341669285669923, + 0.00193844607565552, + 0.011653812602162361, + -0.011548048816621304, + -0.0037314672954380512, + -0.0035596017260104418, + 0.002042556880041957, + 0.0027035786770284176, + -0.013960777781903744, + 0.024920517578721046, + -0.00600868696346879, + -0.0007676114328205585, + -0.03011614829301834, + -0.018984543159604073, + 0.005846736952662468, + -0.01614214852452278, + 0.004683338571339846, + 0.01164059154689312, + 0.010073970071971416, + -0.009763290174305439, + -0.020015737041831017, + 0.014872987754642963, + 0.016314014792442322, + -0.012956025078892708, + 0.0015269600553438067, + -0.01413264311850071, + -0.0036752806045114994, + -0.007449714466929436, + -0.006914286874234676, + -0.013088229112327099, + 0.005185714922845364, + 0.0030489624477922916, + -0.017424531280994415, + -0.0114356754347682, + -0.0072051361203193665, + 0.002619298407807946, + -0.007013440132141113, + -0.013630267232656479, + -0.004726305138319731, + 0.005579023156315088, + -0.007998362183570862, + -0.010245836339890957, + -0.024656109511852264, + 0.012413986958563328, + -0.004653592593967915, + 0.00831565260887146, + 0.001926878234371543, + -0.012387546710669994, + -0.02453712560236454, + 0.005674871150404215, + 0.01563977263867855, + 0.02103370986878872, + 0.004038842394948006, + -0.011455506086349487, + -0.005919449031352997, + 0.008044634014368057, + -0.006616827100515366, + -0.021403882652521133, + -0.006563945207744837, + -0.01938115619122982, + 0.0015765366842970252, + 0.007244797423481941, + -0.012361105531454086, + -0.014079761691391468, + -0.010014478117227554, + -0.004243758972734213, + -0.025660861283540726, + 0.009637695737183094, + 0.0009890536312013865, + 0.0011584404855966568, + 0.018640810623764992, + -0.0025151874870061874, + -0.028926309198141098, + -0.009869053959846497, + 0.0056418199092149734, + 0.01938115619122982, + -0.032310739159584045, + 0.024854416027665138, + 0.009194811806082726, + 0.00045527867041528225, + 0.012030594982206821, + 0.0024689158890396357, + 0.0013220433611422777, + 0.01558689121156931, + -0.0008700697799213231, + -0.007495985832065344, + -0.009617865085601807, + -0.02343982830643654, + -0.02310931868851185, + 0.0033646002411842346, + -0.0073637813329696655, + -0.0006085530621930957, + -0.012751108035445213, + -0.002237558364868164, + -0.03365922346711159, + -0.002465610858052969, + -0.004927916452288628, + 0.003906637895852327, + -0.01688249409198761, + 0.0030671407002955675, + 0.010001257993280888, + -0.017265886068344116, + 0.008632943034172058, + -0.004256979562342167, + -0.021311338990926743, + -0.02004217728972435, + 0.006993609480559826, + -0.015031632967293262, + -0.0008225588244386017, + -0.0005713705904781818, + -0.004399099387228489, + 0.028000878170132637, + -0.014568917453289032, + -0.004789101891219616, + -0.023558812215924263, + 0.011772796511650085, + 0.017318768426775932, + -0.017146902158856392, + 0.008665993809700012, + -0.006775472313165665, + -0.0017550125485286117, + -0.0011295208241790533, + -0.0049973237328231335, + -0.006993609480559826, + 0.023651355877518654, + -0.025158485397696495, + 0.007317509967833757, + 0.0008667646907269955, + 0.028503254055976868, + 0.0002956006210297346, + 0.005030374974012375, + -0.009961596690118313, + -0.00764802098274231, + 0.008989894762635231, + 0.017318768426775932, + -0.004577575251460075, + 0.023677796125411987, + -0.0023515846114605665, + -0.0027052313089370728, + 0.017821144312620163, + -0.013213823549449444, + -0.0051526641473174095, + 0.010992790572345257, + 0.007304289378225803, + 0.0011567879701033235, + -0.027009345591068268, + 0.008275991305708885, + 0.00022784591419622302, + -0.00860650185495615, + -0.005621989257633686, + 0.02086184360086918, + -0.017688939347863197, + 0.019235730171203613, + -0.020742859691381454, + 0.012764329090714455, + -0.007211746647953987, + -0.017001478001475334, + 0.009512102231383324, + 0.022593721747398376, + 0.00291014788672328, + -0.0120239844545722, + 0.017728600651025772, + 0.038550782948732376, + 0.026903582736849785, + -0.01255280151963234, + -0.007925650104880333, + -0.015666212886571884, + 0.012169409543275833, + -0.0017533600330352783, + -0.010040919296443462, + 0.014568917453289032, + 0.0019053949508816004, + -0.014767223969101906, + -0.004666813183575869, + -0.001627765828743577, + -8.014887862373143e-5, + 0.022725924849510193, + -0.022990334779024124, + -0.006630047224462032, + 0.005549277178943157, + 0.02837105095386505, + 0.006104535423219204, + 0.0008989894995465875, + -0.0012278477661311626, + 0.029217157512903214, + -0.008090904913842678, + -0.01180584728717804, + 0.004035537131130695, + -0.007667851634323597, + 0.012380936183035374, + -0.0019814125262200832, + 0.02618967927992344, + 0.004960967693477869, + -0.006355723366141319, + -0.009869053959846497, + -0.016353676095604897, + -0.020266924053430557, + 0.01730554737150669, + 0.001839292817749083, + -0.009928545914590359, + -0.02669205516576767, + 0.00045734437298960984, + -0.012975855730473995, + 0.006236739456653595, + 0.012909753248095512, + 0.01430450938642025, + 0.00526173273101449, + -0.004210708197206259, + 0.015600111335515976, + 0.013788912445306778, + -0.025462554767727852, + -0.0021516254637390375, + -0.0076348003931343555, + 0.009703798219561577, + -0.006319367326796055, + -0.01746419258415699, + 0.003939689137041569, + -0.030830051749944687, + 0.011171266436576843, + -0.010245836339890957, + 0.010107021778821945, + -0.008765147067606449, + -0.02444458194077015, + 0.015177058055996895, + 0.004818847868591547, + 0.014555697329342365, + -0.007429883815348148, + 0.006980388890951872, + 0.005582327954471111, + -0.014793665148317814, + -0.013815352693200111, + 0.010239225812256336, + 0.011832288466393948, + -0.011448895558714867, + 0.012737887911498547, + -0.016009945422410965, + -0.005704617127776146, + 0.007165474817156792, + -0.014608578756451607, + -0.017094019800424576, + 0.018442504107952118, + -0.013537723571062088, + 0.015943842008709908, + 0.014185525476932526, + 0.010186344385147095, + -0.009241082705557346, + 0.00786615815013647, + 0.03461109474301338, + 0.014397052116692066, + -0.0007139033987186849, + 0.006828353740274906, + -0.006405299995094538, + -0.01746419258415699, + -0.0015360491815954447, + 0.028899867087602615, + 0.026335103437304497, + 0.0014930827310308814, + 0.00810412596911192, + 0.0020640401635318995, + 0.015771977603435516, + -0.0025779844727367163, + 0.008434636518359184, + 0.01722622476518154, + -0.009412948973476887, + 0.015031632967293262, + 0.012453648261725903, + -0.011131605133414268, + 0.009498881176114082, + 0.007033270783722401, + 0.0011443938128650188, + -0.02868834137916565, + 0.007899208925664425, + 0.008408195339143276, + -0.017199784517288208, + 0.015322482213377953, + 0.002493704203516245, + -0.00767446169629693, + -0.007165474817156792, + 0.009412948973476887, + -0.0108870267868042, + 0.013022126629948616, + 0.014621799811720848, + 0.0006730026798322797, + 0.010278887115418911, + 0.007330730557441711, + -0.012209070846438408, + 0.013788912445306778, + -0.013319586403667927, + -0.011442285031080246, + 0.032813116908073425, + -0.0008874216000549495, + -0.011911611072719097, + 0.006593691185116768, + -0.0046403720043599606, + -0.0018012840300798416, + 0.0028737918473780155, + -0.007608359679579735, + -0.012010764330625534, + 0.00015513352991547436, + -0.00848090834915638, + 0.010820925235748291, + -0.00351333012804389, + 0.012202460318803787, + -0.003384430892765522, + -0.024074409157037735, + -0.009320405311882496, + 0.01671062782406807, + 0.007059711497277021, + -0.012288393452763557, + 0.0027630706317722797, + 0.017160123214125633, + -0.015534009784460068, + 0.002888664836063981, + 0.005602158606052399, + -0.0046238466165959835, + -0.011574489995837212, + 0.012678395956754684, + 0.002974597504362464, + 0.01234788540750742, + 0.009631086140871048, + -0.008130566217005253, + 0.0048816450871527195, + -0.006481317337602377, + 0.00033319625072181225, + 0.001507955719716847, + 0.02037268877029419, + -0.016419777646660805, + 0.009373287670314312, + 0.006927506998181343, + 0.023016775026917458, + 0.01638011634349823, + 0.01173313520848751, + 0.008890741504728794, + -0.03035411611199379, + -0.012295003049075603, + 0.009459219872951508, + 0.016023164615035057, + -0.0015087820356711745, + -0.004742830526083708, + -0.012334664352238178, + -0.010986180044710636, + -0.009928545914590359, + -0.006729200482368469, + -0.004772576503455639, + -0.02369101718068123, + 0.01189178042113781, + -0.01663130521774292, + 0.041459280997514725, + 0.0050105443224310875, + -0.005265037529170513, + -0.0016889104153960943, + 0.00230696564540267, + 0.011072113178670406, + 0.037387385964393616, + -0.011581099592149258, + 0.000206052849534899, + 0.007925650104880333, + -0.0008093384094536304, + -0.01919606886804104, + -0.017279107123613358, + -0.00628301128745079, + -0.003589347703382373, + -0.00785293709486723, + 0.007357171270996332, + 0.00285891885869205, + -0.0006316888611763716, + 0.0011262156767770648, + -0.004660202655941248, + -0.008718876168131828, + -0.0005899618263356388, + 0.014463154599070549, + -0.014555697329342365, + 0.011243978515267372, + 0.0046370672062039375, + 0.011224147863686085, + -0.004329692106693983, + 0.00823633000254631, + -0.0008188405772671103, + 0.020161161199212074, + 0.0019748022314161062, + 0.00848090834915638, + -0.007132424041628838, + -0.006986998952925205, + -0.017398091033101082, + -0.0005854173214174807, + -0.020729640498757362, + -0.003519940422847867, + -0.010219395160675049, + 0.006306146737188101, + 0.019976075738668442, + 0.01581163890659809, + -0.003197692334651947, + -0.04127419367432594, + -0.007595139089971781, + 0.019685225561261177, + -0.0032307433430105448, + 0.02054455317556858, + 0.015481127426028252, + 0.0027680282946676016, + -0.019024204462766647, + -0.01729232631623745, + -0.03299820050597191, + -0.00043503488996066153, + 0.01829707995057106, + -0.0101400725543499, + 0.0065606399439275265, + 0.007965311408042908, + 0.02046523056924343, + -0.012314833700656891, + 0.013537723571062088, + -0.008249550126492977, + -0.011369572952389717, + 0.005063426215201616, + -0.010827534832060337, + 0.002759765600785613, + -0.014608578756451607, + 0.014687901362776756, + 0.009055997245013714, + -0.0031547260005027056, + 0.012671785429120064, + -0.006993609480559826, + -0.015362143516540527, + 0.012341274879872799, + 0.006868015043437481, + -0.018667252734303474, + 0.001250157249160111, + -0.00036872614873573184, + 0.006504453253000975, + -0.010093800723552704, + 0.05047561600804329, + -0.019672004505991936, + 0.0018029366619884968, + -0.006940727587789297, + -0.025502216070890427, + -0.008910572156310081, + -0.01496553048491478, + 0.005588938482105732, + -0.019156407564878464, + 0.01097295992076397, + 0.0028357829432934523, + 0.007601749151945114, + -0.014000439085066319, + 0.03810128942131996, + -0.013022126629948616, + 0.002647391753271222, + -0.016816390678286552, + 0.012982465326786041, + 0.007562087848782539, + -0.004875035025179386, + 0.003900027833878994, + -0.012136357836425304, + -0.01505807414650917, + -0.02927003987133503, + -0.01035159919410944, + -0.014092981815338135, + 0.0019434037385508418, + 0.006015297491103411, + -0.009003114886581898, + -0.009512102231383324, + 0.0028721392154693604, + -0.014013659209012985, + 0.0129295838996768, + 0.01306178793311119, + -0.016856051981449127, + -0.009472440928220749, + 0.007879378274083138, + -0.003612483385950327, + -0.0021978970617055893, + 0.010054139420390129, + -0.016353676095604897, + -0.014846546575427055, + -0.01397399790585041, + -0.007681071758270264, + 0.011944661848247051, + 0.042622677981853485, + 0.010563126765191555, + 0.01043753232806921, + -0.017107240855693817, + -0.015547229908406734, + -0.030327674001455307, + 0.0038901125080883503, + -0.005109697580337524, + -0.02611035667359829, + 0.00684157432988286, + -0.019500140100717545, + -0.03257514908909798, + 0.02794799581170082, + 0.014026880264282227, + 0.00802480336278677, + 0.006382164545357227, + -0.012625514529645443, + 0.01704113930463791, + -0.003077056026086211, + 0.02394220605492592, + 0.0017665803898125887, + 0.0013724463060498238, + -0.012169409543275833, + -0.02378356084227562, + 0.018164874985814095, + 0.024801533669233322, + -0.007819886319339275, + -0.002606078051030636, + 0.010635838843882084, + 0.005992161575704813, + -0.017860805615782738, + 0.004504862707108259, + -0.002915105549618602, + -0.01563977263867855, + 0.010953129269182682, + 0.02121879532933235, + 0.006768861785531044, + 0.008513959124684334, + -0.005321224685758352, + -8.211128442781046e-5, + -0.03286599740386009, + -0.020068617537617683, + 0.005456733983010054, + 0.0007886815001256764, + -0.019579462707042694, + -0.00461393129080534, + -0.004432150162756443, + 0.0027911639772355556, + -0.010576346889138222, + 0.005691396538168192, + 0.0017963263671845198, + -0.006177247501909733, + -0.018825897946953773, + 0.005456733983010054, + -0.007416663225740194, + 0.01052346546202898, + 0.011614151298999786, + 0.018931660801172256, + -0.006352418567985296, + -0.022170666605234146, + -0.002270609373226762, + 0.006894456222653389, + -0.0004701516591012478, + 0.007429883815348148, + -0.016684187576174736, + -0.00830904208123684, + -0.004326386842876673, + -0.01928861252963543, + -0.0030026910826563835, + -0.015071294270455837, + 0.013484842143952847, + 0.0028093422297388315, + 0.008203279227018356, + -0.01480688527226448, + -0.02387610264122486, + -0.0006201209616847336, + -0.02337372675538063, + 0.008553620427846909, + -0.02369101718068123, + -0.023056436330080032, + 0.01570587418973446, + -0.024894077330827713, + -0.0035166353918612003, + 0.0023829832207411528, + 0.0009287354769185185, + -0.0010609397431835532, + 0.009631086140871048, + 0.0004057020414620638, + -0.00213179481215775, + -0.00619707815349102, + -0.005407157354056835, + -0.013088229112327099, + 0.008758537471294403, + 0.0021400577388703823, + 0.008520569652318954, + -0.02078252099454403, + -0.03765179589390755, + -0.001873996458016336, + 0.0014360696077346802, + 0.008705655112862587, + -0.010536685585975647, + 0.0007139033987186849, + 0.00014026054122950882, + 0.007053101435303688, + 0.012334664352238178, + -0.02486763522028923, + -0.02310931868851185, + -0.0013517893385142088, + -0.02046523056924343, + 0.013802132569253445, + -0.03276023268699646, + -0.008824639022350311, + -0.028397491201758385, + 0.023849662393331528, + 0.0034769740886986256, + 0.01928861252963543, + 0.03125310316681862, + 0.017094019800424576, + -0.0007411705446429551, + -0.008408195339143276, + -0.0032489215955138206, + 0.01955302059650421, + 0.03881519287824631, + 0.01746419258415699, + 0.020147940143942833, + 0.02728697471320629, + 0.0245239045470953, + 0.023479489609599113, + -0.0024788312148302794, + -0.0021053540986031294, + 0.006121060810983181, + -0.0003257597563788295, + 0.021602189168334007, + 0.0029299785383045673, + -0.010133462026715279, + 0.009617865085601807, + 0.018178096041083336, + -0.015401804819703102, + 0.009161760099232197, + -0.03194056823849678, + -0.014872987754642963, + 0.023664576932787895, + 0.007053101435303688, + -0.010087191127240658, + 0.013855013996362686, + -0.007139034103602171, + 0.014991971664130688, + -0.0042239283211529255, + -0.0022854823619127274, + 0.007423273287713528, + -0.009650916792452335, + -0.00877175759524107, + -0.0015707528218626976, + -0.011918220669031143, + -0.011442285031080246, + 0.03236361965537071, + -0.0022920926567167044, + 0.010536685585975647, + -0.009836002252995968, + 0.012618904002010822, + -0.015851300209760666, + 0.006868015043437481, + -0.011409234255552292, + -0.0077207330614328384, + 0.005489785224199295, + -0.022474737837910652, + 0.015652993693947792, + 0.006788692437112331, + 0.003356337547302246, + -0.006101230159401894, + -0.03841857984662056, + -0.016908934339880943, + -0.019407596439123154, + 0.021893037483096123, + -0.0142251867800951, + 0.018429284915328026, + -0.0004965925472788513, + 0.0025465860962867737, + -0.011012621223926544, + -0.005192325450479984, + 0.010318548418581486, + 0.013379078358411789, + 0.007985142059624195, + -0.015494348481297493, + -0.02228965051472187, + -0.0017136987298727036, + -0.010966349393129349, + 0.010530075058341026, + -0.004247064236551523, + 0.008665993809700012, + 0.022104565054178238, + 0.010424312204122543, + 0.015547229908406734, + 0.0033877361565828323, + -0.025330351665616035, + -0.003162988694384694, + -0.0027052313089370728, + -0.024484243243932724, + -0.01763605885207653, + -0.017001478001475334, + 0.011871949769556522, + 0.023651355877518654, + -0.0014790360582992435, + 0.021337779238820076 + ], + "5135e964-9062-4dc9-87f5-78f4213b7f6b": [ + -0.03748634457588196, + -0.007811686489731073, + -0.008189474232494831, + 0.026396431028842926, + 0.018475065007805824, + -0.01661049760878086, + 0.005057488102465868, + 0.03890000283718109, + 0.00996873527765274, + 0.04918559268116951, + -0.004247071221470833, + -0.017024844884872437, + 0.010175909847021103, + 0.01617177575826645, + -0.04223916307091713, + -0.011004606261849403, + -0.019474375993013382, + -0.02529962733387947, + -0.003698668908327818, + -0.03465902432799339, + 0.0032538536470383406, + -0.020888034254312515, + -0.0538165457546711, + 0.03573145717382431, + 0.033050380647182465, + -0.007342497818171978, + 0.014733741991221905, + -0.010096696205437183, + 0.00850632879883051, + -0.00971281435340643, + 0.02319132350385189, + 0.012588880024850368, + 0.001079286215826869, + 0.024288129061460495, + -0.02272822894155979, + 0.017049219459295273, + -0.01797540858387947, + -0.009749374352395535, + 0.03083239682018757, + -0.020071525126695633, + -0.02795633114874363, + -0.04019179567694664, + 0.03892437741160393, + -0.014928729273378849, + -0.04284850135445595, + 0.039021871984004974, + 0.01919408142566681, + 0.0070865764282643795, + -0.009962641634047031, + 0.037193864583969116, + 0.02417844906449318, + -0.038412533700466156, + 0.012601066380739212, + -0.0073059373535215855, + -0.0004928004345856607, + -0.021363316103816032, + -0.016659243032336235, + 0.02824881300330162, + 0.023447245359420776, + -0.03755946457386017, + -0.011650502681732178, + -0.0008172717643901706, + 0.000896485464181751, + -0.03329411521553993, + -0.014002539217472076, + -0.003525008214637637, + 0.040459904819726944, + 0.0006710311863571405, + 0.008780530653893948, + 0.0188894122838974, + 0.001298647141084075, + -0.007695912383496761, + -0.03887563198804855, + 0.0010465343948453665, + 0.04072801023721695, + 0.015672119334340096, + -0.0016528236446902156, + -0.030929889529943466, + -0.003262993646785617, + -0.04365282505750656, + 0.002358129946514964, + 0.04011867567896843, + 0.02802945114672184, + -0.02915062941610813, + 0.04872249811887741, + -0.02471466362476349, + -0.03648703545331955, + -0.019888723269104958, + -0.04267788678407669, + -0.011772369965910912, + 0.012223278172314167, + 0.02214326709508896, + -0.016439883038401604, + 0.043214101344347, + 0.007976206950843334, + -0.027298249304294586, + 0.004408545326441526, + -0.007580138742923737, + -0.022947590798139572, + -0.030637409538030624, + -0.000540785607881844, + -0.014684995636343956, + -0.023325378075242043, + 0.01065119169652462, + 0.009097385220229626, + 0.018548185005784035, + 0.004024663474410772, + 0.011114287190139294, + -0.017134524881839752, + -0.01325914915651083, + -0.006605201400816441, + -0.02961372397840023, + 0.02756635658442974, + -0.026542671024799347, + 0.0009444706374779344, + -0.011961263604462147, + 0.018865039572119713, + 0.02394690178334713, + -0.018706612288951874, + -0.0030939029529690742, + 0.0536215603351593, + -0.009085197933018208, + 0.044749628752470016, + -0.011345834471285343, + -0.011869863606989384, + 0.011473795399069786, + 0.03775445371866226, + 0.025665227323770523, + 0.0777512639760971, + 0.01027949620038271, + -0.020498059689998627, + -0.0009330455795861781, + 0.031076131388545036, + 0.02176547795534134, + -0.012229371815919876, + 0.0015873200027272105, + 0.037193864583969116, + 0.023435058072209358, + -0.016720177605748177, + 0.00955438707023859, + -0.02832193300127983, + 0.0448714941740036, + 0.013417576439678669, + 0.022167639806866646, + -0.0005708715762011707, + 0.00989561527967453, + -0.05576642230153084, + 0.03451278433203697, + -0.024751223623752594, + 0.04489586874842644, + -0.0211439561098814, + -0.021655797958374023, + -0.02554336190223694, + 0.024726850911974907, + 0.009743280708789825, + 0.022179827094078064, + 0.01843850500881672, + 0.049965545535087585, + 0.012022197246551514, + 0.008756157010793686, + 0.004158717580139637, + -0.027907583862543106, + 0.014989662915468216, + 0.011595661751925945, + 0.022630736231803894, + 0.010773058980703354, + 0.03846128284931183, + 0.04375031590461731, + -0.019584055989980698, + 0.010852272622287273, + 0.02810257114470005, + -0.0025455006398260593, + 0.009194878861308098, + -0.01767074130475521, + 0.00981640163809061, + -0.027712596580386162, + 0.017731674015522003, + 0.013149469159543514, + 0.048527512699365616, + -0.00786043331027031, + -0.038656268268823624, + 9.520873572910205e-5, + -0.006720975041389465, + 0.0008172717643901706, + 0.02795633114874363, + 0.00668441504240036, + 0.030101193115115166, + 0.018791919574141502, + -0.01647644303739071, + 0.030564289540052414, + 0.009359399788081646, + -0.056400131434202194, + -0.029369991272687912, + -0.010194189846515656, + 0.02486090548336506, + -0.020424939692020416, + -0.02327663078904152, + -0.019925283268094063, + 0.026469551026821136, + 0.03331848606467247, + 0.014453447423875332, + -0.006861122325062752, + -6.236172339413315e-6, + 0.01137630082666874, + -0.03383032977581024, + -0.026420805603265762, + -0.011918609961867332, + -0.05225664749741554, + -0.007744659204035997, + 0.0018036342225968838, + 0.049819301813840866, + -0.015550252050161362, + 0.006800188682973385, + 0.012552320025861263, + 0.005151934921741486, + 0.002706974744796753, + -0.040752384811639786, + -0.01054151076823473, + -0.015062783844769001, + -0.0323435515165329, + -0.01934032142162323, + -0.039094991981983185, + -0.001829531043767929, + -0.002312429714947939, + -0.02159486524760723, + -0.010444017127156258, + -0.012436545453965664, + 0.00612077908590436, + 0.005508396774530411, + -0.03368408977985382, + 0.003960683476179838, + -0.014575314708054066, + 0.013649124652147293, + -0.020595554262399673, + 0.01791447587311268, + 0.0711216852068901, + 0.04065489023923874, + -0.04336034134030342, + 0.024678103625774384, + -0.013246962800621986, + 0.0008302201749756932, + 0.008037140592932701, + 0.010797432623803616, + -0.010584164410829544, + -0.011705342680215836, + -0.0009299989324063063, + -0.02393471449613571, + -0.0038845164235681295, + 0.02282572351396084, + 0.032294802367687225, + -0.01435595378279686, + -0.01743919402360916, + 0.014368140138685703, + -0.01595241390168667, + -0.025860216468572617, + 0.005947118625044823, + 0.015026222914457321, + 0.014782489277422428, + -0.02544586732983589, + 0.004250118043273687, + 0.015026222914457321, + 0.024958398193120956, + 0.009987015277147293, + 0.024495303630828857, + 0.029101882129907608, + 0.009249718859791756, + 0.02651829831302166, + 0.003945449832826853, + -0.024275941774249077, + -0.00659301457926631, + 0.04713822528719902, + -0.0119795436039567, + 0.01511153019964695, + 0.017475754022598267, + 0.009913895279169083, + -0.0014829712454229593, + 0.0013809074880555272, + -0.004880780354142189, + 0.011961263604462147, + -0.01617177575826645, + 0.010517138056457043, + -0.005974538624286652, + 0.05211040750145912, + -0.008695223368704319, + 0.06088484451174736, + -0.016817670315504074, + -0.030856769531965256, + -0.021960465237498283, + -0.05922744795680046, + 0.00033589641680009663, + 0.014563128352165222, + 0.019376881420612335, + -0.015343078412115574, + 0.0013024554355069995, + 0.02749323658645153, + 0.0021281056106090546, + 0.017049219459295273, + -0.02615269646048546, + -0.015099343843758106, + 0.0008759203483350575, + -0.0002572539960965514, + -0.04496898874640465, + -0.01114475354552269, + -0.0017579341074451804, + -0.003086286364123225, + -0.019230641424655914, + 0.06444336473941803, + 0.010194189846515656, + -0.01442907378077507, + 0.04433527961373329, + 0.005761270876973867, + -0.060543615370988846, + -0.028078198432922363, + -0.026274563744664192, + -0.00850632879883051, + 0.016378948464989662, + -0.012808240950107574, + 0.009511733427643776, + -0.0051945885643363, + 0.0008172717643901706, + 0.012564506381750107, + 0.025421494618058205, + -0.010645098052918911, + 0.015099343843758106, + 0.04223916307091713, + -0.013393202796578407, + 0.004262304864823818, + -0.03209981694817543, + 0.009005984291434288, + -0.043628450483083725, + 0.03185608237981796, + 0.00666613457724452, + 0.00021993217524141073, + -0.001962061505764723, + -0.05220789834856987, + -0.004487758968025446, + -0.02900438942015171, + -0.03324536606669426, + -0.01579398661851883, + -0.007787312846630812, + -0.02047368697822094, + 0.00948126707226038, + 0.015903666615486145, + -0.02690827287733555, + -0.0022164592519402504, + -0.0003520819009281695, + 0.06410213559865952, + 0.027688223868608475, + 0.018535997718572617, + 0.0071536037139594555, + 0.0005087954923510551, + -0.04089862480759621, + 0.011504261754453182, + -0.000738438917323947, + 0.00651380093768239, + -0.017548874020576477, + 0.013246962800621986, + 0.020717421546578407, + 0.006653948221355677, + 0.021107396110892296, + -0.037120744585990906, + -0.019669363275170326, + 0.015184651128947735, + -0.009956548921763897, + 0.015282144770026207, + 0.03443966433405876, + 0.01268637366592884, + 0.024361249059438705, + -0.008244315162301064, + -0.005520583130419254, + -0.013746618293225765, + -0.03195357322692871, + -0.057862538844347, + -0.010663378052413464, + 0.03782757371664047, + -0.058496247977018356, + 0.004938667640089989, + 0.015757426619529724, + -0.009426426142454147, + 0.0155258784070611, + 0.008908490650355816, + -0.02720075473189354, + 0.0033787675201892853, + 0.012259838171303272, + 0.004618766251951456, + -0.00274810497649014, + 0.02364223264157772, + -0.04752819985151291, + -0.051037974655628204, + 2.5325523893116042e-5, + -0.020071525126695633, + 0.013685684651136398, + -0.010608538053929806, + -0.00921315886080265, + 0.00651380093768239, + -0.005937978159636259, + -0.010035762563347816, + 0.03919248655438423, + -0.029881833121180534, + 0.007957926951348782, + 0.014477821066975594, + -0.018925972282886505, + 0.025275252759456635, + -0.020973341539502144, + -0.027005767449736595, + -0.02191171981394291, + 0.0029400456696748734, + 0.01919408142566681, + 0.005462696310132742, + 0.0010754779214039445, + 0.0069768959656357765, + 0.018475065007805824, + 0.036292046308517456, + 0.017110152170062065, + 0.014977476559579372, + -0.026762032881379128, + 0.024434369057416916, + 0.017244206741452217, + -0.03346472606062889, + -0.009621414355933666, + 0.07931116223335266, + 0.025567734614014626, + -0.04153233394026756, + 0.013649124652147293, + 0.010242936201393604, + -0.009091291576623917, + 0.03014994040131569, + 0.02493402548134327, + -0.0021738058421760798, + 0.0001072050363291055, + -0.007287657354027033, + 0.022411374375224113, + 0.0019422582117840648, + 0.00989561527967453, + -0.004746726714074612, + -0.005487069953233004, + 0.0009147655218839645, + -0.0014022341929376125, + -0.010437924414873123, + 0.03136861324310303, + -0.01654956303536892, + -0.0022575894836336374, + 0.030881144106388092, + 0.006294440012425184, + -0.011181313544511795, + -0.017183272168040276, + -0.008366181515157223, + -0.03790069371461868, + 0.03738885000348091, + -0.025324000045657158, + 0.013758804649114609, + 0.032684776932001114, + 0.010797432623803616, + 0.02146081067621708, + -0.022094519808888435, + 0.01083399262279272, + 0.03953371196985245, + 0.007129230070859194, + -0.0004265351453796029, + -0.025957709178328514, + 0.006114685907959938, + 0.03436654433608055, + 0.004402451682835817, + -0.02742011472582817, + -0.021546117961406708, + -0.03007682040333748, + -0.011784556321799755, + 0.013953791931271553, + 0.02303289622068405, + 0.011626129038631916, + -0.0031121831852942705, + 0.0030725763645023108, + -0.0495755672454834, + 0.03746197000145912, + 0.0013565340777859092, + -0.007616698741912842, + -0.01227202545851469, + 0.0297599658370018, + 0.00940205343067646, + 0.010395270772278309, + 0.0037778825499117374, + -0.042580392211675644, + -0.016951724886894226, + 0.05474273860454559, + 0.022460121661424637, + -0.01027949620038271, + -0.022167639806866646, + -0.02629893831908703, + 0.011833303608000278, + 0.004216604400426149, + 0.02712763473391533, + 0.01545275840908289, + 0.00040597005863673985, + -0.00035779442987404764, + -0.01684204488992691, + 0.011888143606483936, + -0.0050544412806630135, + -0.007299844175577164, + -0.02016901783645153, + -0.006532080937176943, + 0.02932124398648739, + -0.016634870320558548, + -0.0038753764238208532, + 0.01631801575422287, + -0.0051641217432916164, + 0.06405338644981384, + -0.02198483981192112, + 0.005746037699282169, + -0.0074643646366894245, + 0.013515070080757141, + -0.004311051685363054, + 0.007238910533487797, + -0.03178296238183975, + -0.04292162135243416, + 0.02189953252673149, + -0.0018919879803434014, + -0.005081861279904842, + -0.019779043272137642, + -0.002385549945756793, + -0.01880410686135292, + -0.0035371948033571243, + -0.026469551026821136, + 0.019352508708834648, + 0.018036343157291412, + 0.015696492046117783, + 0.008756157010793686, + -0.04289724677801132, + -0.022021399810910225, + -0.0029628959018737078, + -0.0015629465924575925, + -0.015659932047128677, + 0.007025642786175013, + -0.011492075398564339, + 0.001554568181745708, + 0.011857676319777966, + 0.010974139906466007, + 0.01670799031853676, + -0.03129549324512482, + -0.004822893533855677, + -0.019389068707823753, + -0.009389866143465042, + 0.03066178224980831, + 0.013222589157521725, + -0.007366870995610952, + 0.012869174592196941, + -0.016963912174105644, + -0.0105719780549407, + 0.0020641253795474768, + -0.0006363751599565148, + -0.004335424862802029, + -0.03656015545129776, + 0.007080483250319958, + -0.007744659204035997, + 0.011205687187612057, + -0.015842733904719353, + -0.017317326739430428, + -0.016939537599682808, + -0.013624751009047031, + 0.00039454500074498355, + -0.03156359866261482, + 0.0003343730641063303, + 0.02763947658240795, + -0.015160277485847473, + -0.012625440023839474, + 0.0045395526103675365, + 0.0026079576928168535, + 0.0038967030122876167, + 2.298100844200235e-5, + 0.015257771126925945, + 0.02681078016757965, + 0.007976206950843334, + 0.01904783956706524, + 0.02317913807928562, + 0.006023285444825888, + -0.0036225018557161093, + -0.010261216200888157, + 0.017719488590955734, + -0.05537644773721695, + -0.03482963889837265, + 0.02440999634563923, + -0.006026332266628742, + 0.015659932047128677, + -0.00026544195134192705, + -0.022606361657381058, + -0.01812165044248104, + 6.402787403203547e-5, + -0.018548185005784035, + -0.02055899240076542, + -0.015489318408071995, + 0.0095604807138443, + -0.008859744295477867, + 0.009115665219724178, + -0.012710747309029102, + 0.016330203041434288, + -0.02539712004363537, + 0.0234959926456213, + -0.00778121966868639, + 0.002865402027964592, + -0.019900910556316376, + 0.043238475918769836, + 0.010224656201899052, + 0.0009147655218839645, + 0.03241667151451111, + 0.0005655398708768189, + -0.019523121416568756, + 0.03158797323703766, + -0.02387377992272377, + -0.003330020699650049, + 0.015087156556546688, + -0.002624714281409979, + 0.030344927683472633, + -0.02213107980787754, + -0.0012270502047613263, + -0.03580457717180252, + 0.004021617118269205, + 0.05016053095459938, + 0.0033178338780999184, + 0.02907750941812992, + 0.030174313113093376, + -0.016488630324602127, + 0.01273512002080679, + -0.0105719780549407, + -0.02983308583498001, + -0.029053136706352234, + 0.012491386383771896, + 0.009743280708789825, + -0.03346472606062889, + -0.018645677715539932, + 0.0020504153799265623, + 0.0243246890604496, + 0.00591055816039443, + 0.00914003886282444, + -0.016439883038401604, + -0.015209023840725422, + -0.02214326709508896, + -0.011041166260838509, + 0.0016924304654821754, + -0.0015705632977187634, + -0.010041855275630951, + -0.02272822894155979, + -0.020790541544556618, + -0.04041115567088127, + -0.021058648824691772, + -0.02265510894358158, + -0.022082332521677017, + 0.018389757722616196, + -0.00396677665412426, + 0.02447092905640602, + 0.01352725736796856, + 0.002987269312143326, + 0.014209712855517864, + 0.024068767204880714, + -0.010943672619760036, + 0.022338254377245903, + 0.008993797935545444, + -0.03687701001763344, + -0.004557832609862089, + 0.04894185811281204, + -0.018572557717561722, + 8.550934580853209e-6, + -0.010888832621276379, + -0.01812165044248104, + -0.0004109209112357348, + 0.012399985454976559, + -0.019157521426677704, + 0.02130238339304924, + -0.03302600607275963, + 0.026542671024799347, + 0.006410213652998209, + 0.021509557962417603, + 0.013393202796578407, + 0.007903086952865124, + 0.00498436763882637, + 0.021655797958374023, + -0.006989082787185907, + -0.0037992093712091446, + -0.01401472557336092, + 0.013015414588153362, + 0.017853541299700737, + -0.007756846025586128, + 0.000349606474628672, + 0.006903775967657566, + -0.04435965418815613, + 0.011869863606989384, + 0.0013291139621287584, + 0.0017457474023103714, + -0.015087156556546688, + 0.037510719150304794, + -0.03892437741160393, + -0.005724710877984762, + 0.00921925250440836, + 0.030564289540052414, + -0.040606144815683365, + -0.0165373757481575, + -0.009597040712833405, + 0.04570019245147705, + -0.019974030554294586, + -0.023922527208924294, + 0.03190482780337334, + -0.021789852529764175, + -0.018267890438437462, + 0.020132457837462425, + -0.019462188705801964, + 0.023971274495124817, + 0.007671539206057787, + 0.006373653654009104, + -0.01352725736796856, + 0.01812165044248104, + -0.0184263177216053, + -0.00929237250238657, + 0.03080802410840988, + 0.015209023840725422, + -0.004140437580645084, + -0.016427695751190186, + -0.03036930225789547, + -0.016135213896632195, + -0.00683674868196249, + 0.05513271316885948, + 0.03083239682018757, + -0.01858474500477314, + -0.01585491932928562, + 0.01940125599503517, + -0.022862283512949944, + -0.015586812049150467, + -0.03585332632064819, + 0.03322099521756172, + -0.015416198410093784, + 0.012698560021817684, + -0.01344195008277893, + 0.006434587296098471, + 0.009127851575613022, + -0.0036925754975527525, + 0.005139748100191355, + 0.025640854611992836, + 0.023703167214989662, + -0.01970592327415943, + 0.014112219214439392, + 0.001978818327188492, + 0.002927859080955386, + 0.008183381520211697, + -0.014063472859561443, + 0.003567661624401808, + 0.02228950709104538, + -0.011187407188117504, + -0.015489318408071995, + -0.02839505299925804, + -0.02817569300532341, + -0.002943092491477728, + -0.011815022677183151, + -0.0057673645205795765, + 0.03439091891050339, + -0.017816981300711632, + 0.05303659662604332, + -0.0006896920967847109, + 0.03112487867474556, + 0.005334735848009586, + 0.0002077454555546865, + 0.022874468937516212, + -0.004332378040999174, + 0.0528903566300869, + 0.008329621516168118, + -0.015964601188898087, + -0.01250357273966074, + -0.02417844906449318, + 0.004469478968530893, + -0.0184263177216053, + 0.02046149969100952, + -0.00038331036921590567, + 0.019596243277192116, + 0.020351819694042206, + 0.008762250654399395, + -0.02146081067621708, + 0.028663160279393196, + 0.0073546841740608215, + -0.05318283662199974, + -0.04070363938808441, + 0.017256392166018486, + 0.02795633114874363, + 0.0036072684451937675, + -0.03541460260748863, + -0.0481862835586071, + -0.028833774849772453, + 0.012180624529719353, + 0.013149469159543514, + 0.015586812049150467, + 0.0030740995425730944, + 0.007208443712443113, + 0.038631897419691086, + 0.019974030554294586, + -0.01027949620038271, + -0.003284320468083024, + -0.031392984092235565, + 0.036682020872831345, + -0.0017701208125799894, + -0.00776293920353055, + -0.011473795399069786, + 0.00200319173745811, + -0.026079576462507248, + 0.01038308348506689, + -0.003744369139894843, + 0.016330203041434288, + 0.0036651554983109236, + 0.010334337130188942, + 0.020108085125684738, + 0.04894185811281204, + 0.014599688351154327, + -0.0007353922701440752, + -0.01782916858792305, + -0.02612832374870777, + 0.005069674924015999, + 0.02832193300127983, + -0.0003037158749066293, + -0.009456893429160118, + -0.01065119169652462, + -0.00478024035692215, + -0.029808713123202324, + 0.010937578976154327, + -0.012978854589164257, + 0.023020710796117783, + -0.006775815039873123, + 0.00642240047454834, + -0.028468172997236252, + 0.020083710551261902, + 0.02265510894358158, + -0.01015762984752655, + -0.011181313544511795, + 0.0045334589667618275, + -0.01349069643765688, + 0.04448151960968971, + -0.005359109025448561, + -0.022923216223716736, + 0.013320082798600197, + 0.030710529536008835, + -0.014063472859561443, + -0.010498857125639915, + 0.009980921633541584, + -0.012869174592196941, + -0.00812244787812233, + -0.01166878268122673, + 0.013868485577404499, + -0.030320554971694946, + -0.022667296230793, + 0.004865547176450491, + 0.003150266595184803, + -0.012107504531741142, + 0.021960465237498283, + -0.010785245336592197, + -0.0014464111300185323, + 0.03436654433608055, + 0.027225127443671227, + -0.004378078505396843, + -0.001873707864433527, + -0.019925283268094063, + 0.025933336466550827, + -0.034269049763679504, + 0.01813383586704731, + 0.007500925101339817, + -0.006385840475559235, + 0.013649124652147293, + 0.012448732741177082, + -0.003573755035176873, + -0.0251533854752779, + -0.005712524056434631, + -0.014258460141718388, + 0.004262304864823818, + 0.022984150797128677, + 0.002093068789690733, + -0.010169816203415394, + 0.0047253998927772045, + 0.04628515616059303, + -0.0512329638004303, + -0.019510935992002487, + 0.042629141360521317, + 0.022947590798139572, + -0.0032416670583188534, + -0.03309912607073784, + 0.001951398211531341, + 0.002019948558881879, + -0.014660621993243694, + 0.02576272189617157, + -0.0013176888460293412, + 0.017268579453229904, + -0.029564978554844856, + 0.020839286968111992, + -0.022874468937516212, + 0.03112487867474556, + 0.01601334661245346, + 0.010523230768740177, + -0.014002539217472076, + 0.002004715148359537, + -0.0031411265954375267, + 0.0006059083971194923, + 0.0017868775175884366, + -0.02494621090590954, + -0.020424939692020416, + 0.002280439715832472, + -0.0007186355069279671, + -0.007957926951348782, + -0.017548874020576477, + -0.00200319173745811, + -0.008500236086547375, + -0.017634181305766106, + -0.013856298290193081, + 0.021399876102805138, + -0.0004741394950542599, + -0.0012636103201657534, + 0.0060293786227703094, + -0.010760871693491936, + 0.03465902432799339, + 0.020339632406830788, + -0.010809618979692459, + -0.012107504531741142, + 0.008902397938072681, + -0.0025713974609971046, + 0.05917870253324509, + 0.006239599548280239, + -0.038729388266801834, + 0.018938159570097923, + -0.014416887424886227, + -0.004618766251951456, + -0.010925392620265484, + 0.011284900829195976, + 0.01752450130879879, + -0.00997482892125845, + 0.006958615966141224, + 0.008183381520211697, + 0.01609865389764309, + -0.01072431169450283, + -0.006367560010403395, + 0.01707359217107296, + 0.0033026007004082203, + 0.0027663849759846926, + 0.007884806953370571, + -0.006410213652998209, + 0.017195459455251694, + -0.024799970909953117, + -0.018901599571108818, + 0.009036451578140259, + -0.0041282507590949535, + -0.03716949000954628, + 0.009462986141443253, + -0.03648703545331955, + 0.022265134379267693, + 0.017024844884872437, + -0.003780929371714592, + -0.005075768101960421, + -0.0022956731263548136, + 0.012265931814908981, + -0.03641391173005104, + -0.005931884981691837, + -0.01768292859196663, + -0.009249718859791756, + -0.03958246111869812, + 0.017110152170062065, + -0.008652569726109505, + 0.04504210874438286, + -0.00860991608351469, + 0.01700047217309475, + 0.016001161187887192, + 0.007988393306732178, + 0.003552428213879466, + -0.017938848584890366, + -0.007769032847136259, + 0.0012201950885355473, + -0.003256900468841195, + 0.01630582846701145, + -0.04318973049521446, + -0.0008713503484614193, + -0.010706031695008278, + -0.011443328112363815, + -0.0026292845141142607, + -0.004320191685110331, + 0.01782916858792305, + 0.01624489575624466, + 0.005188495386391878, + 0.010267309844493866, + -0.025250880047678947, + 0.008311341516673565, + 0.005295129027217627, + 0.0002795328327920288, + 0.060787349939346313, + 0.01020028255879879, + 0.009188785217702389, + -0.023020710796117783, + -0.015538065694272518, + 0.028297558426856995, + -0.032294802367687225, + -0.006629574578255415, + 0.033659715205430984, + -0.013137281872332096, + 0.0054383231326937675, + -0.03397656977176666, + 0.016452068462967873, + 0.012588880024850368, + 0.016732363030314445, + -0.0048350803554058075, + -0.0040795039385557175, + -0.005828297697007656, + 0.0013039788464084268, + -0.017061404883861542, + 0.013283522799611092, + 0.03190482780337334, + 0.00246628699824214, + -0.010370897129178047, + 0.027517609298229218, + 0.0297599658370018, + -0.018621305003762245, + 0.006206086371093988, + 0.004661419428884983, + -0.01072431169450283, + -0.002090022200718522, + 0.004240978043526411, + -0.01579398661851883, + 0.026688912883400917, + -0.0038753764238208532, + 0.0003975916770286858, + 0.01360037736594677, + -0.0077934060245752335, + 0.0033269741106778383, + 0.03397656977176666, + -0.004338471684604883, + -0.04231228679418564, + -0.03439091891050339, + 0.027298249304294586, + -0.007135323248803616, + 0.0002031754411291331, + 0.016135213896632195, + 0.011132567189633846, + 0.01736607402563095, + -0.027371369302272797, + -0.011729716323316097, + -0.03868064284324646, + 0.002793805208057165, + -0.016805484890937805, + 0.014234086498618126, + -0.004387218505144119, + -0.0027008813340216875, + -0.03507337346673012, + -0.018328823149204254, + 0.01919408142566681, + 0.017207646742463112, + -0.015148090198636055, + -0.03370846062898636, + 0.015379638411104679, + 0.024422183632850647, + 0.019535308703780174, + 0.005581516772508621, + 0.0021479090210050344, + -0.03699887543916702, + 0.004039897117763758, + 0.006154292728751898, + 0.014782489277422428, + -0.0007807116489857435, + 0.015696492046117783, + -0.020827101543545723, + 0.01617177575826645, + -0.008670849725604057, + -0.025518987327814102, + -0.007056109607219696, + -0.011108193546533585, + -0.003881469601765275, + -0.01609865389764309, + 0.022106707096099854, + 0.014892169274389744, + -0.0003808349429164082, + 0.003369627520442009, + -0.025567734614014626, + -0.004603532608598471, + -0.00997482892125845, + 0.0018188676331192255, + -0.003147220006212592, + 0.013466323725879192, + -0.0061878059059381485, + -0.008073700591921806, + -0.004743679892271757, + 0.025494614616036415, + 0.015269957482814789, + -0.0011760182678699493, + 0.027907583862543106, + -0.008945050649344921, + 0.013770991005003452, + -0.0015119146555662155, + -0.006519894115626812, + 0.006879402324557304, + -0.05537644773721695, + 0.010060136206448078, + 0.0020580319687724113, + -0.012156250886619091, + -0.00036636320874094963, + 0.017816981300711632, + -0.011601755395531654, + -0.0015233397716656327, + -0.02756635658442974, + 0.03083239682018757, + 0.0020169017370790243, + -0.007068296428769827, + 0.007080483250319958, + -0.031076131388545036, + 0.008530702441930771, + 0.016976097598671913, + -0.027030140161514282, + -0.019096586853265762, + -0.019888723269104958, + 0.010072322562336922, + 0.011437234468758106, + 0.020229952409863472, + 0.00011044213169952855, + 0.029711218550801277, + 0.02214326709508896, + 0.011321460828185081, + 0.016110841184854507, + 0.01556243933737278, + 0.005633310414850712, + 0.023776287212967873, + 0.009408146142959595, + -0.008018860593438148, + -0.014733741991221905, + -0.0028288420289754868, + -0.009432519786059856, + 0.013758804649114609, + 0.029443111270666122, + -0.02159486524760723, + -0.02319132350385189, + -0.01819477044045925, + -0.0004341518215369433, + -0.019303761422634125, + 0.006065939087420702, + 0.03051554225385189, + 0.01442907378077507, + 0.010712125338613987, + -0.003585941856727004, + -0.0038753764238208532, + -0.0030390627216547728, + 0.02275260165333748, + -0.052987851202487946, + 0.006727068219333887, + -0.016963912174105644, + 0.0038022559601813555, + -0.027298249304294586, + -0.011546915397047997, + -0.003957636654376984, + -0.011857676319777966, + -0.03309912607073784, + -0.002865402027964592, + -0.004487758968025446, + -0.00770200602710247, + -0.014502194710075855, + -0.030613034963607788, + -0.009261906147003174, + 0.0003254234616179019, + 0.004213557578623295, + -0.02311820350587368, + -0.0028760654386132956, + 0.05172043293714523, + 0.01654956303536892, + 0.006678321398794651, + -0.011077726259827614, + 0.0011691632680594921, + 0.01344195008277893, + -0.0023185231257230043, + -0.04382343962788582, + 0.006964709144085646, + 0.02304508350789547, + -0.02455623634159565, + 0.005971491802483797, + 0.004000290296971798, + -0.005776504520326853, + 0.0003652207087725401, + -0.018560372292995453, + -0.003199013415724039, + 0.0004215842636767775, + 0.008146820589900017, + 0.0035311016254127026, + 0.020120272412896156, + 0.0014943962451070547, + 0.029223749414086342, + -0.034780893474817276, + -0.011449421755969524, + -0.019852163270115852, + -0.01624489575624466, + -0.0015560915926471353, + 0.006026332266628742, + 0.02486090548336506, + -0.020059337839484215, + 0.0002561114961281419, + -0.003911936655640602, + -0.01027949620038271, + -0.020900221541523933, + -0.024592796340584755, + 0.018925972282886505, + -0.004966087639331818, + -0.022082332521677017, + -0.004935620818287134, + -0.010322149842977524, + -0.000643230217974633, + -0.010773058980703354, + -0.006739255040884018, + -0.009871241636574268, + -0.006922055967152119, + 0.014490007422864437, + -0.0030085959006100893, + 0.010041855275630951, + 0.010632911697030067, + 0.008670849725604057, + 0.016671430319547653, + -0.012156250886619091, + 0.007909179665148258, + -0.003930216655135155, + -0.010815712623298168, + -0.043238475918769836, + 0.00577955087646842, + -0.009743280708789825, + 0.012662000022828579, + -0.03112487867474556, + -0.013344456441700459, + 0.0008652569958940148, + -0.007543578278273344, + -0.017280766740441322, + 0.008938957937061787, + -0.028468172997236252, + 0.029857458546757698, + 0.039558086544275284, + 0.030101193115115166, + 0.02690827287733555, + -0.025884589180350304, + -0.0119795436039567, + 0.0076410723850131035, + 0.009834681637585163, + -0.008585542440414429, + -0.018389757722616196, + 0.017877915874123573, + 0.010322149842977524, + 0.015428384765982628, + 0.014794675633311272, + 0.017877915874123573, + -0.024519676342606544, + -0.010218563489615917, + -0.0055754235945641994, + -0.029881833121180534, + 0.0418248176574707, + 0.01155910175293684, + -0.010255123488605022, + -0.005721664056181908, + -0.02788321115076542, + -0.011632222682237625, + 0.008073700591921806, + -0.01678111031651497, + -2.4242524887085892e-5, + -0.00612077908590436, + -0.0069768959656357765, + 0.0234959926456213, + -0.0172320194542408, + -0.010401363484561443, + -0.004061223939061165, + -0.017938848584890366, + 0.019669363275170326, + -0.023020710796117783, + 0.00621217954903841, + -0.0035768018569797277, + 0.003186826827004552, + 0.007001269608736038, + -0.007251097355037928, + 0.012095317244529724, + -0.012070944532752037, + -0.006855028681457043, + -0.01595241390168667, + 0.018523812294006348, + 0.003893656423315406, + 0.00334220752120018, + -0.0013512023724615574, + -0.028687534853816032, + -0.012783867307007313, + -0.0017091871704906225, + 0.023301005363464355, + -0.004941713996231556, + 0.0077994996681809425, + 0.003735229140147567, + -0.001995575148612261, + 0.024885278195142746, + -0.013356642797589302, + -0.01746356673538685, + 0.012016103602945805, + -0.008445395156741142, + -0.02547024004161358, + -0.009572667069733143, + -0.02471466362476349, + 0.05566892772912979, + 0.007293750531971455, + -0.01797540858387947, + -0.000235736821196042, + 0.004326284863054752, + -0.011035073548555374, + 0.014855609275400639, + 0.01858474500477314, + -0.008810997009277344, + 0.005237242206931114, + -0.028126945719122887, + -0.010907112620770931, + 0.009846867993474007, + 0.02568960189819336, + -0.020229952409863472, + 0.028492547571659088, + -0.012326865456998348, + -0.009609227068722248, + 0.014745929278433323, + 0.019839977845549583, + -0.005752130877226591, + -0.0049782744608819485, + -0.018755359575152397, + -0.009877335280179977, + -0.012101410888135433, + -0.0033635341096669436, + 0.017244206741452217, + -0.003122846595942974, + 0.03163671866059303, + 0.0016817670548334718, + 0.0042044175788760185, + -0.015550252050161362, + -0.008817090652883053, + -0.002540930639952421, + -0.022252947092056274, + 0.027298249304294586, + 0.032684776932001114, + 0.021058648824691772, + -0.008981611579656601, + 0.01477030199021101, + -0.00846367608755827, + -0.0020580319687724113, + 0.028273185715079308, + 0.00470102671533823, + -0.0013588190777227283, + 0.003857096191495657, + -0.0017091871704906225, + 0.00659301457926631, + 0.029126256704330444, + 0.0023017663042992353, + -0.03868064284324646, + 0.014502194710075855, + -0.02788321115076542, + -0.007037829607725143, + -0.010395270772278309, + -0.004402451682835817, + -0.00024087810015771538, + -0.004210511222481728, + 0.005825251340866089, + 0.019157521426677704, + 0.01458750106394291, + -0.007982300594449043, + 0.023057270795106888, + -0.029711218550801277, + 0.008835370652377605, + 0.023386312648653984, + -0.009328932501375675, + -0.002155525842681527, + -0.01083399262279272, + -0.011833303608000278, + -0.00541699631139636, + 0.014575314708054066, + 0.01904783956706524, + 0.028614414855837822, + 0.013429763726890087, + -0.04245852679014206, + -0.02537274733185768, + -0.01302760187536478, + -0.028346305713057518, + 0.00921925250440836, + 0.003418374340981245, + -0.006324906833469868, + -8.902016998035833e-5, + 0.0036529686767607927, + -0.0164033230394125, + 0.004658373072743416, + -0.006946429144591093, + -0.037730079144239426, + -0.0008485002326779068, + -0.0165373757481575, + 0.008853650651872158, + 0.004167857579886913, + -0.034122809767723083, + -0.006282253190875053, + 0.006538174115121365, + 0.00573994405567646, + -0.0016314968233928084, + 0.02146081067621708, + -0.027468862012028694, + -0.019279388710856438, + -0.025665227323770523, + 0.0012811287306249142, + -0.012479199096560478, + 0.004953900817781687, + -0.008049326948821545, + 0.01106553990393877, + 0.00151039136108011, + 0.01360037736594677, + -0.023837219923734665, + 0.012040477246046066, + 0.004804613534361124, + -0.027761343866586685, + -0.031100504100322723, + -0.0009109571692533791, + 0.014977476559579372, + 0.022996336221694946, + 0.009792027994990349, + 0.013344456441700459, + -0.024215009063482285, + 0.014819049276411533, + -0.021363316103816032, + 0.0076227919198572636, + -0.010663378052413464, + -0.00409778393805027, + 0.040069930255413055, + -0.007957926951348782, + 0.018986906856298447, + -0.015062783844769001, + 0.00046880781883373857, + 0.01835319772362709, + -0.035243988037109375, + -0.0008942004642449319, + -0.04065489023923874, + -0.058447498828172684, + -0.003649922087788582, + -0.024288129061460495, + -0.021850785240530968, + 0.013356642797589302, + 0.016720177605748177, + -0.020875848829746246, + 0.013515070080757141, + -0.019766855984926224, + 0.012832613661885262, + -0.0024815204087644815, + 0.02153393067419529, + 0.012034383602440357, + 0.023544739931821823, + -0.013149469159543514, + -0.0018569511594250798, + -0.020290885120630264, + -0.002775524975731969, + -0.03404968976974487, + -0.017122339457273483, + 0.01129708718508482, + 0.0030085959006100893, + -0.026493925601243973, + 0.017658554017543793, + 0.03736447915434837, + 0.0015004896558821201, + -0.000496989581733942, + -0.02900438942015171, + 3.908318467438221e-5, + -0.02024213783442974, + -0.02907750941812992, + 0.011321460828185081, + -0.027298249304294586, + 0.006181712727993727, + 0.011839396320283413, + 0.021558303385972977, + 0.008817090652883053, + -0.026615792885422707, + -0.017061404883861542, + 0.011492075398564339, + 0.007110950071364641, + -0.015233397483825684, + -0.026201443746685982, + -0.009456893429160118, + -0.016366763040423393, + -0.004755866713821888, + 0.02561648190021515, + -0.010151536203920841, + 0.007379057817161083, + 0.019693735986948013, + 0.0029080556705594063, + 0.007342497818171978, + 0.056985095143318176, + 0.01700047217309475, + 0.009530013427138329, + 0.006477240473031998, + -0.009852961637079716, + 0.002268252894282341, + -0.02568960189819336, + -0.0008340285276062787, + -0.0010518661001697183, + 0.016525190323591232, + -0.016805484890937805, + -0.01428283378481865, + -0.00936549250036478, + -0.02698139287531376, + 0.008031046949326992, + 0.00022869138047099113, + 0.024458743631839752, + 0.003975916653871536, + -0.014002539217472076, + -0.039021871984004974, + -0.023398498073220253, + 0.01934032142162323, + 0.029808713123202324, + 0.012247651815414429, + -0.0019239780958741903, + 0.003406187752261758, + 0.03809567913413048, + -0.006084219086915255, + -0.0038418627809733152, + 0.013454136438667774, + -0.02015683241188526, + 0.003988103475421667, + 0.02159486524760723, + -0.002813608618453145, + -0.007616698741912842, + -0.004180044401437044, + 0.027761343866586685, + 0.0028806354384869337, + 0.01578179933130741, + 0.018925972282886505, + -0.010425737127661705, + -0.008603823371231556, + -0.004286678042262793, + 0.01745137944817543, + -0.0027633383870124817, + 0.007062203250825405, + -0.026688912883400917, + -0.0076898192055523396, + -0.0008782053482718766, + 0.007513111457228661, + -0.012454825453460217, + 0.022837908938527107, + 0.017085779458284378, + -0.006434587296098471, + -0.0028318886179476976, + 0.0018401944544166327, + -0.007147510070353746, + 0.03080802410840988, + -0.002933952258899808, + -0.009682347066700459, + 0.02461717091500759, + -0.0017625041073188186, + 0.004713213071227074, + -0.01896253414452076, + 0.001534764771349728, + 0.024215009063482285, + 0.009438613429665565, + -0.0013275905512273312, + -0.018535997718572617, + 0.014904356561601162, + -0.001408327603712678, + -0.022679481655359268, + -0.006672228220850229, + 0.0012141017941758037, + 0.0021936092525720596, + -0.015769613906741142, + -0.004231838043779135, + -0.013734431006014347, + -0.01721983216702938, + -0.0027861883863806725, + 0.03083239682018757, + -0.010419643484055996, + -0.008920677937567234, + 0.028687534853816032, + 0.002032135147601366, + -0.001018352573737502, + -0.013758804649114609, + -0.017573246732354164, + 0.00417699757963419, + -0.0069768959656357765, + -0.002178375842049718, + -0.00090867216931656, + -0.005971491802483797, + -0.019157521426677704, + -0.003613361855968833, + 0.011644409038126469, + -0.005526676774024963, + -0.02047368697822094, + 0.0062213195487856865, + 0.02265510894358158, + 0.024227196350693703, + -0.006404120475053787, + 0.008926770649850368, + -0.0164033230394125, + -0.01012106891721487, + 0.008804903365671635, + -0.008323528803884983, + -0.01318602915853262, + 0.005112328100949526, + -0.01970592327415943, + -0.00835399515926838, + 0.04192230850458145, + 0.021570490673184395, + -0.010035762563347816, + 0.002618621103465557, + -0.012180624529719353, + -0.007062203250825405, + 0.014819049276411533, + 0.009237532503902912, + 0.01007841620594263, + -0.013173841871321201, + -0.0017716441070660949, + 0.01004794891923666, + -0.014721555635333061, + -0.022240759804844856, + -0.021777665242552757, + 0.028663160279393196, + -0.013795364648103714, + -0.005806971341371536, + -0.02107083611190319, + -0.0030146893113851547, + -0.011053353548049927, + 0.006855028681457043, + -0.03734010457992554, + 0.016074281185865402, + 0.00568815041333437, + 0.0014555511297658086, + -0.024007834494113922, + -0.002585107460618019, + -0.005179355386644602, + 0.0007433898281306028, + -0.016963912174105644, + -0.02259417437016964, + -0.015001850202679634, + 0.00166653364431113, + -0.02320351079106331, + 1.4293211279436946e-5, + -0.023057270795106888, + 0.014246273785829544, + -0.007342497818171978, + 0.02092459425330162, + -0.012601066380739212, + -0.003064959542825818, + 0.01684204488992691, + 0.0207783542573452, + -0.03631642088294029, + 0.019157521426677704, + 0.007598418742418289, + -0.0013260672567412257, + 0.00793355330824852, + -0.0012026767944917083, + -0.02486090548336506, + -0.00038121576653793454, + -0.001796017517335713, + -0.022874468937516212, + 0.016366763040423393, + -0.012217184528708458, + 0.011303180828690529, + -0.016488630324602127, + 0.027249502018094063, + -0.006245693191885948, + 0.009725000709295273, + 0.0014395560137927532, + 0.007080483250319958, + -0.007659352384507656, + 0.017573246732354164, + 0.010029668919742107, + 0.019974030554294586, + -0.011455515399575233, + 0.019218454137444496, + 0.014745929278433323, + -0.009456893429160118, + 0.011443328112363815, + -0.009066917933523655, + 0.01746356673538685, + -0.024154074490070343, + 0.002240832895040512, + -0.007653258740901947, + 0.011498168110847473, + -0.013722244650125504, + 0.02069304697215557, + -0.018865039572119713, + -0.0030466795433312654, + -0.006989082787185907, + -0.013734431006014347, + 0.008920677937567234, + 0.0006291393074207008, + -0.0016375902341678739, + -0.02477559819817543, + -0.011790649965405464, + -0.02099771425127983, + -0.0019133146852254868, + 0.01730513945221901, + -0.02673766016960144, + 0.008920677937567234, + -0.013661311008036137, + -0.006897682324051857, + -0.0028989154379814863, + 0.014563128352165222, + 0.009005984291434288, + -0.0007799499435350299, + 0.010626818053424358, + -0.006812375504523516, + -0.0029628959018737078, + 0.00986514799296856, + -0.04511522874236107, + 0.007104856427758932, + -0.0058435313403606415, + 0.018865039572119713, + 0.010797432623803616, + 0.0008317435276694596, + 0.014441261067986488, + -0.002585107460618019, + 0.005380435846745968, + 0.009657974354922771, + -0.009097385220229626, + 0.009341119788587093, + 0.026932647451758385, + 0.0031411265954375267, + -0.0119795436039567, + 0.015014036558568478, + 0.009767654351890087, + 0.012278118170797825, + 0.010346523486077785, + -0.011382394470274448, + -0.011437234468758106, + 0.007653258740901947, + -0.0394362211227417, + -0.007257190532982349, + 0.004685793071985245, + -0.020973341539502144, + 0.0026033876929432154, + 0.039558086544275284, + 0.0020427985582500696, + -0.004033803474158049, + 0.009274092502892017, + -0.005538863129913807, + 0.0001787067885743454, + -0.002292626304551959, + 0.010060136206448078, + -0.007001269608736038, + 0.0025683508720248938, + 0.019913097843527794, + -0.002885205438360572, + 0.006050705444067717, + 0.0006569402758032084, + 0.0030299227219074965, + -0.011120379902422428, + -0.05479148402810097, + 0.0035707084462046623, + 0.01336883008480072, + 0.012662000022828579, + -0.02018120512366295, + -0.0030482029542326927, + -0.009846867993474007, + -0.024117514491081238, + -0.023666607216000557, + -0.007318124175071716, + 0.00380530278198421, + 0.015148090198636055, + -0.017244206741452217, + 0.001885894569568336, + -0.010779151692986488, + 0.014490007422864437, + -0.0014799245400354266, + 0.01919408142566681, + -0.012095317244529724, + 0.016659243032336235, + 0.02002277784049511, + 0.008323528803884983, + -0.017646368592977524, + -0.021960465237498283, + 0.008542889729142189, + 0.00259729428216815, + -0.037047624588012695, + 0.02214326709508896, + 0.011942983604967594, + -0.014831235632300377, + 0.016147401183843613, + 0.010413550771772861, + 0.010011388920247555, + 0.011169127188622952, + -0.01522121112793684, + -0.0005049871397204697, + 0.0007795690908096731, + -0.002044321969151497, + 0.01964498870074749, + -0.003945449832826853, + -0.02698139287531376, + -0.01926720142364502, + 0.008140727877616882, + -0.0006786478334106505, + 0.0069768959656357765, + 0.013697871007025242, + 0.02727387472987175, + 0.0039271698333323, + -0.012625440023839474, + 0.044164665043354034, + 0.01624489575624466, + -0.0095604807138443, + -0.005097094923257828, + 0.021107396110892296, + -0.007159696891903877, + -0.011717529036104679, + 0.015001850202679634, + -0.04180044308304787, + 7.383437332464382e-5, + -0.0040947371162474155, + -0.021802037954330444, + 0.0058587645180523396, + 0.022679481655359268, + -0.014867795631289482, + 0.006245693191885948, + -0.00091857387451455, + -0.003284320468083024, + 0.005883138161152601, + 0.006964709144085646, + 0.004731493070721626, + 0.0036285952664911747, + 0.02954060398042202, + 0.02629893831908703, + 0.02259417437016964, + -0.0018432411598041654, + -0.008238221518695354, + 0.007744659204035997, + 0.003930216655135155, + 0.023008523508906364, + -0.008567262440919876, + 0.010017482563853264, + -0.004329331684857607, + -0.01701265759766102, + 0.009225345216691494, + -0.005749084055423737, + 0.005045301280915737, + 0.028590040281414986, + 0.00726937735453248, + -0.00830524880439043, + 0.0041556707583367825, + 0.0031197997741401196, + 0.013173841871321201, + 0.007884806953370571, + 0.0034671213943511248, + -0.005672917235642672, + -0.031076131388545036, + -0.012144064530730247, + 0.008128540590405464, + 0.0017183272866532207, + 0.006611294578760862, + -0.025884589180350304, + -0.03648703545331955, + -1.7518406821181998e-5, + 0.005785644520074129, + -0.009609227068722248, + 0.0003589369298424572, + -0.008408835157752037, + 0.03029618039727211, + 0.012302491813898087, + 0.012527946382761002, + 0.0031929202377796173, + -0.012137970887124538, + 0.026615792885422707, + -0.014733741991221905, + 0.002004715148359537, + -0.001398425898514688, + -0.015416198410093784, + -0.00770200602710247, + 0.005310362204909325, + 0.005270755384117365, + 0.006727068219333887, + 0.01668361760675907, + 0.0004246309690643102, + -0.00659301457926631, + 0.008975517936050892, + 0.018267890438437462, + 0.0052463822066783905, + 0.004198324400931597, + -0.0018584744539111853, + 0.01782916858792305, + -0.01257669273763895, + 0.0009528489899821579, + 0.01232077181339264, + 0.02448311634361744, + 0.012552320025861263, + -0.0008500235853716731, + -0.01767074130475521, + 0.003106089774519205, + -0.01609865389764309, + 0.004344564862549305, + 0.009846867993474007, + -0.013405390083789825, + 0.016452068462967873, + 0.011936889961361885, + -0.026347683742642403, + -0.002399260178208351, + 0.00228500971570611, + 0.010517138056457043, + 0.005109281744807959, + -0.01662268303334713, + 0.0026765079237520695, + -0.009438613429665565, + 0.0016497769393026829, + 0.00674534821882844, + 0.0003429418720770627, + -0.028126945719122887, + -0.013576003722846508, + 0.0025866308715194464, + 0.011632222682237625, + 0.003004025900736451, + -0.016452068462967873, + -0.0013100721407681704, + 0.030174313113093376, + 0.02275260165333748, + -0.016513003036379814, + 0.004783286713063717, + 0.01971811056137085, + -0.012588880024850368, + -0.0191209614276886, + 0.004804613534361124, + 0.01594022661447525, + 0.0038875630125403404, + 0.012369519099593163, + 0.01578179933130741, + -0.009517827071249485, + 0.011382394470274448, + 0.002093068789690733, + 0.0053712958469986916, + 0.013661311008036137, + 0.02091240882873535, + -0.01774386130273342, + 0.03967995569109917, + -0.009121758863329887, + 0.00032447135890834033, + -0.0038753764238208532, + -0.0035554750356823206, + 0.009840775281190872, + -0.014684995636343956, + 0.002533314051106572, + -0.003281273879110813, + 0.01383192464709282, + -0.025104640051722527, + -0.0012879837304353714, + -0.003744369139894843, + 0.026493925601243973, + -0.016634870320558548, + -0.019023466855287552, + -0.0035463350359350443, + 0.016366763040423393, + 0.02539712004363537, + 0.0009071488166227937, + -0.0024982772301882505, + 0.013807551935315132, + 0.01158956903964281, + 0.005407856311649084, + 0.00940205343067646, + -0.03051554225385189, + -0.0016040767077356577, + -0.015428384765982628, + -0.010395270772278309, + 0.006544267758727074, + -0.043238475918769836, + -0.009731094352900982, + -0.014368140138685703, + 0.013198215514421463, + 0.005889231339097023, + -0.0025424540508538485, + -0.018694425001740456, + -0.008183381520211697, + -0.01904783956706524, + 0.0022530194837599993, + -0.023751912638545036, + 0.01980341598391533, + 0.02968684583902359, + -0.014136592857539654, + 0.011583475396037102, + 0.0028958688490092754, + 0.01813383586704731, + 0.017329512163996696, + 0.0016406369395554066, + 0.013222589157521725, + -0.0006995938019827008, + -0.015440572053194046, + 0.02227731980383396, + 0.007714192382991314, + -0.0005487831658683717, + -0.002842552028596401, + 0.021204888820648193, + 0.019608428701758385, + 0.003262993646785617, + -0.0037260891404002905, + 0.0015781800029799342, + 0.004454245325177908, + 0.0015751332975924015, + 0.011754089966416359, + -0.008920677937567234, + -0.0062700663693249226, + -0.006385840475559235, + -0.003019259311258793, + -0.02932124398648739, + 0.009018171578645706, + -0.019998405128717422, + 0.002650611102581024, + 0.028468172997236252, + 0.0033848609309643507, + -0.006958615966141224, + 0.0015659932978451252, + 0.014709368348121643, + -0.021314570680260658, + 0.0022118892520666122, + -0.004670559894293547, + 0.009237532503902912, + 0.002711544744670391, + 0.0053225490264594555, + 0.009426426142454147, + -0.0067575350403785706, + -0.01736607402563095, + -0.014806861989200115, + -0.0002494468935765326, + 0.003089332953095436, + -0.00659301457926631, + -0.019998405128717422, + -0.008323528803884983, + 0.013978165574371815, + 0.006294440012425184, + 0.006891589146107435, + 0.02493402548134327, + 0.0017366072861477733, + 0.01964498870074749, + 0.009005984291434288, + 0.007586231920868158, + -0.0005758224288001657, + -0.01896253414452076, + -4.717592673841864e-5, + 0.014758115634322166, + -0.014075659215450287, + 0.014916542917490005, + 0.015830546617507935, + -0.008634289726614952, + 0.024434369057416916, + -0.016378948464989662, + -0.013807551935315132, + 0.028882522135972977, + -0.00978593435138464, + -0.02659141831099987, + 0.0020306119695305824, + 0.0020336585585027933, + 0.0027420115657150745, + 0.054060280323028564, + 0.011815022677183151, + 0.024361249059438705, + 0.01012106891721487, + -0.01020028255879879, + -0.013722244650125504, + 0.023471618071198463, + 0.0020580319687724113, + -0.01250357273966074, + -0.01819477044045925, + -0.04148358851671219, + -0.010846178978681564, + 0.02371535263955593, + 0.013856298290193081, + -0.007476551458239555, + 5.883899939362891e-5, + 0.011400674469769001, + 0.006114685907959938, + -5.68396135349758e-5, + 0.004033803474158049, + 0.010011388920247555, + 0.01858474500477314, + 0.004947807639837265, + 0.006126872263848782, + 0.0020626019686460495, + -0.02122926339507103, + 0.026079576462507248, + 0.007074389606714249, + -0.002041275380179286, + -0.004259258043020964, + 0.010328243486583233, + 0.024361249059438705, + 0.0032081534154713154, + 0.023837219923734665, + -0.010370897129178047, + -0.007951833307743073, + 0.0071536037139594555, + -0.01904783956706524, + 0.02568960189819336, + 0.015745239332318306, + -0.01918189413845539, + -0.041581083089113235, + 0.002967465901747346, + 0.02756635658442974, + -0.001902651390992105, + 0.031539227813482285, + -0.0037047623191028833, + 0.024373436346650124, + 0.0023520365357398987, + 1.1181075933563989e-5, + 0.01692735217511654, + -0.011114287190139294, + -0.001715280581265688, + 0.008817090652883053, + 0.0368526354432106, + 0.0007136846543289721, + -0.003817489370703697, + -0.005109281744807959, + 0.024653730913996696, + -0.0006215226021595299, + -0.012869174592196941, + 0.0015088680665940046, + 0.017816981300711632, + 0.0020961156114935875, + -0.02508026547729969, + 0.003997243475168943, + -0.000297241669613868, + -0.011315368115901947, + -0.007866526953876019, + -0.007903086952865124, + 0.006324906833469868, + 0.0026277611032128334, + 0.024361249059438705, + 0.003528054803609848, + 0.0017823075177147985, + -0.008378368802368641, + -0.004752819892019033, + -0.01851162500679493, + -0.020108085125684738, + -0.008707409724593163, + 0.008993797935545444, + 0.03972870111465454, + -0.04104486480355263, + -0.030613034963607788, + -0.014331580139696598, + -0.0076410723850131035, + 0.008317435160279274, + 0.00545660313218832, + -0.010285589843988419, + 0.004317144863307476, + -0.0005061296396888793, + 0.002699358155950904, + -0.010114976204931736, + 0.008756157010793686, + -0.013697871007025242, + -0.018535997718572617, + -0.02544586732983589, + 0.0028273186180740595, + 0.005913604982197285, + 0.002385549945756793, + 0.012759493663907051, + -0.010175909847021103, + 0.006812375504523516, + -0.03029618039727211, + 0.025860216468572617, + -0.003223386825993657, + 0.014636248350143433, + 0.02048587240278721, + 0.012869174592196941, + 0.0037169489078223705, + -0.0058435313403606415, + 0.007769032847136259, + -0.005170214921236038, + -0.004704073071479797, + 6.545600626850501e-5, + -0.0032782270573079586, + 0.0020306119695305824, + 0.010919298976659775, + -0.002464763820171356, + 0.0026856479234993458, + 0.00020507961744442582, + -0.0006736969808116555, + 0.0024419135879725218, + 0.0011836349731311202, + 0.022850096225738525, + 0.0021067787893116474, + -0.0015035363612696528, + -0.023288818076252937, + 0.00914003886282444, + 0.003479307983070612, + 0.015684306621551514, + -0.0021159190218895674, + 0.004076457116752863, + 0.027395742014050484, + -0.012893547303974628, + 0.002373363357037306, + 0.015233397483825684, + 0.004344564862549305, + -0.02069304697215557, + -0.007251097355037928, + 0.00020717420557048172, + 0.015379638411104679, + 0.004789380356669426, + 0.017207646742463112, + -0.033050380647182465, + 0.0073485909961164, + -0.001418229308910668, + 0.005828297697007656, + 0.006635667756199837, + 0.011522541753947735, + -0.01030996348708868, + 0.008207754231989384, + -0.0077507528476417065, + -0.016793297603726387, + -0.038485657423734665, + -0.017780421301722527, + 0.015196837484836578, + -0.00700736278668046, + -0.0042714448645710945, + 0.021107396110892296, + -0.013868485577404499, + -0.003101519774645567, + 0.005319502204656601, + 0.009932175278663635, + -0.0027328715659677982, + -0.003771789139136672, + -0.012363425455987453, + 0.0019407348008826375, + 0.017512314021587372, + 0.014307207427918911, + -0.0013801457826048136, + 0.015416198410093784, + 0.004240978043526411, + 0.016793297603726387, + 0.034415293484926224, + -0.002007761737331748, + -0.014806861989200115, + 0.03699887543916702, + -0.006385840475559235, + -0.01774386130273342, + 0.0011485981522127986, + -0.0003564615035429597, + 0.007769032847136259, + -0.013064161874353886, + -0.007708099205046892, + -0.012198904529213905, + -0.006641761399805546, + 0.027615103870630264, + -0.02054680697619915, + 0.008250407874584198, + -0.023240070790052414, + -0.015477132052183151, + 0.007025642786175013, + -0.02484871819615364, + -0.01798759587109089, + 0.03461027890443802, + 0.0007087338017299771, + -0.0047589135356247425, + 0.022460121661424637, + -0.0016970004653558135, + -0.00617257272824645, + 0.01987653784453869, + 0.004085597116500139, + 0.013758804649114609, + -0.014160966500639915, + -0.03595081716775894, + 0.027517609298229218, + -0.022387001663446426, + -0.005167168565094471, + 0.0017579341074451804, + -0.03504900261759758, + 0.01993747055530548, + -0.027590729296207428, + 0.012442639097571373, + 0.017487941309809685, + -0.017707301303744316, + 0.0036316420882940292, + -0.008049326948821545, + 0.005718617234379053, + 0.008622103370726109, + -0.014892169274389744, + -0.004109970759600401, + 0.0040185702964663506, + -0.005030068103224039, + 0.0037413225509226322, + -0.006139059085398912, + 0.002448006998747587, + -0.010517138056457043, + -0.007915273308753967, + 0.003817489370703697, + 0.011473795399069786, + 0.02047368697822094, + -0.012064850889146328, + -0.004981320817023516, + -0.03363534063100815, + -0.01242435909807682, + 0.013405390083789825, + 0.0010434876894578338, + -0.003125893184915185, + -1.267466268473072e-5, + 0.022764788940548897, + -0.016756737604737282, + -0.004509085789322853, + -0.022935403510928154, + 0.024080954492092133, + -0.024288129061460495, + -0.030052445828914642, + -0.02199702523648739, + 0.012613252736628056, + 0.011492075398564339, + -0.0015675165923312306, + -0.024531863629817963, + 0.002419063588604331, + 0.017646368592977524, + 0.0025653040502220392, + -0.013722244650125504, + 0.0121623445302248, + 0.012375611811876297, + -0.006982989609241486, + -0.004289724864065647, + -0.012363425455987453, + 0.0012940771412104368, + 0.007586231920868158, + -0.028468172997236252, + -0.0054322294890880585, + -0.008975517936050892, + 0.022484494373202324, + 0.014648434706032276, + -0.01630582846701145, + -0.009335026144981384, + -0.005855718161910772, + 0.021253636106848717, + -0.018938159570097923, + -0.007866526953876019, + 0.006355373654514551, + 0.03278227150440216, + 0.015062783844769001, + 0.01775604858994484, + 0.014514381065964699, + 0.005718617234379053, + -0.005298175849020481, + 0.02394690178334713, + 0.013295709155499935, + -0.002146385610103607, + 0.011778462678194046, + -0.006641761399805546, + 0.010553698055446148, + -0.022496681660413742, + 0.0045822057873010635, + -0.0025500706396996975, + -0.031076131388545036, + 0.0063310000114142895, + -0.035682711750268936, + -0.008372275158762932, + -0.024836530908942223, + -0.01698828488588333, + -0.035390228033065796, + 0.017926663160324097, + -0.010748685337603092, + 0.03716949000954628, + -0.002572920871898532, + 0.015477132052183151, + 0.00105719780549407, + 0.021960465237498283, + 0.0008119401172734797, + -0.01132755447179079, + -0.008396648801863194, + 0.022789163514971733, + 0.001288745435886085, + 0.006909869145601988, + -0.020449312403798103, + 0.022155452519655228, + -0.003415327752009034, + -0.022801348939538002, + 0.004426825325936079, + 0.001310833846218884, + 0.00020888797007501125, + -0.007330310996621847, + -0.006337093189358711, + -0.006416306830942631, + 0.0019849117379635572, + -0.006014145445078611, + 0.0009200972272083163, + 0.0006078125443309546, + -0.0020793587900698185, + 0.02047368697822094, + 0.004256211221218109, + -0.019693735986948013, + -0.01158956903964281, + 0.00024830439360812306, + -0.032904136925935745, + 0.011266620829701424, + 0.020290885120630264, + 0.009115665219724178, + 0.013990351930260658, + -0.005554096773266792, + 0.017085779458284378, + -0.015196837484836578, + 0.032684776932001114, + -2.3683172912569717e-5, + -0.012022197246551514, + -0.00028086575912311673, + -0.002068695379421115, + 0.015538065694272518, + -0.01692735217511654, + 0.006861122325062752, + -0.024300316348671913, + -0.007842153310775757, + 0.0013489173725247383, + 0.0049935076385736465, + -0.0004478618793655187, + -0.00027648615650832653, + 0.003281273879110813, + -0.017658554017543793, + -0.012095317244529724, + 0.019596243277192116, + 0.0035768018569797277, + 0.0006588444230146706, + -0.004225744400173426, + 0.006233506370335817, + -0.004109970759600401, + -0.011156939901411533, + -0.005761270876973867, + 0.007720286026597023, + 0.0157086793333292, + -0.005526676774024963, + 0.0073120309971272945, + -0.009438613429665565, + -0.028980014845728874, + -0.011290994472801685, + 0.015672119334340096, + 0.005453556310385466, + 0.006068985443562269, + 0.002045845380052924, + 0.021814225241541862, + -0.011102099902927876, + 0.015879293903708458, + -0.0038235827814787626, + 0.009018171578645706, + -0.025129012763500214, + 0.001597983413375914, + 0.007909179665148258, + 0.0180607158690691, + -0.018548185005784035, + 0.007068296428769827, + 0.015184651128947735, + -0.0021936092525720596, + 0.0004044467059429735, + 0.012649813666939735, + -0.019291574135422707, + -0.004810707177966833, + 0.015903666615486145, + 0.01835319772362709, + -0.009304558858275414, + -0.014819049276411533, + -0.012040477246046066, + -0.022411374375224113, + -0.0031685465946793556, + -0.0335378497838974, + -0.0002781999355647713, + 0.02622581645846367, + -0.006617387756705284, + -0.005846578162163496, + 0.002845598617568612, + 0.0006995938019827008, + 0.0030314461328089237, + 0.029857458546757698, + -0.005852671340107918, + -0.010419643484055996, + -0.004923433996737003, + 0.019084399566054344, + -0.01107163354754448, + 0.014782489277422428, + 0.013417576439678669, + -0.001597983413375914, + 0.0028989154379814863, + 0.017719488590955734, + -0.004055130295455456, + -0.0006786478334106505, + 0.0038022559601813555, + -0.02554336190223694, + 0.005797830875962973, + 0.00651380093768239, + 0.000170518847880885, + 0.01401472557336092, + -0.0059196981601417065, + -0.009987015277147293, + -0.010456204414367676, + -0.001410612603649497, + 0.01678111031651497, + -0.013953791931271553, + -0.002195132663473487, + 0.004298864863812923, + -0.0008073700591921806, + 0.0029842224903404713, + 0.0015591381816193461, + 0.01623270846903324, + 0.01586710661649704, + -0.002665844513103366, + -0.0216070506721735, + -0.0018097276333719492, + -0.0005914366338402033, + -0.009377679787576199, + 0.002996409311890602, + 0.0032690870575606823, + 0.0040947371162474155, + 0.025957709178328514, + 0.008445395156741142, + -0.004862500354647636, + -0.006059845443814993, + -0.004612672608345747, + 0.011504261754453182, + -0.030954264104366302, + -0.006410213652998209, + -0.007403430994600058, + 0.0019422582117840648, + -0.004323238041251898, + 0.014075659215450287, + -0.013844111934304237, + 0.01088273897767067, + 0.013015414588153362, + -0.06917180866003036, + -0.01586710661649704, + -0.006446773651987314, + 0.0031685465946793556, + -0.008585542440414429, + 0.012369519099593163, + 0.0027572449762374163, + -0.010285589843988419, + 0.016196148470044136, + -0.041727323085069656, + 0.005151934921741486, + -0.02983308583498001, + 0.024812158197164536, + -0.0030055493116378784, + -0.0035432882141321898, + 0.014039099216461182, + 0.006126872263848782, + 0.01284480094909668, + 0.0037169489078223705, + 0.008293061517179012, + -0.036072686314582825, + -0.025787094607949257, + -0.0038357696030288935, + -0.021777665242552757, + 0.0059257918037474155, + -0.021131768822669983, + -0.004905153997242451, + -0.0031776868272572756, + -0.011656595394015312, + -0.01007841620594263, + -0.0042044175788760185, + -0.010706031695008278, + 0.0064406804740428925, + 0.03495150804519653, + 0.0008172717643901706, + -0.007592325564473867, + -0.005200681742280722, + 0.003281273879110813, + -0.01307634823024273, + 0.011687062680721283, + -0.003128939773887396, + 0.0029644190799444914, + 0.004152624402195215, + 0.0032508070580661297, + -0.021351130679249763, + 0.0238615944981575, + -0.0023870733566582203, + -0.009255812503397465, + 0.004579159431159496, + 0.009999202564358711, + -0.032733526080846786, + -0.007184070069342852, + 0.012588880024850368, + 0.008908490650355816, + -0.026835152879357338, + -0.014514381065964699, + 0.004198324400931597, + 0.0037992093712091446, + 0.020205577835440636, + -0.016829857602715492, + 0.015806173905730247, + 0.016829857602715492, + 0.00936549250036478, + 0.034122809767723083, + -0.0057338508777320385, + -0.010395270772278309, + -0.014173152856528759, + 0.01477030199021101, + 0.041727323085069656, + 0.0192550141364336, + -0.019669363275170326, + -0.032904136925935745, + -0.004371985327452421, + 0.02810257114470005, + 0.006142105907201767, + 0.007470458280295134, + -0.012869174592196941, + 0.00288977543823421, + 0.0054383231326937675, + 0.01791447587311268, + -0.01774386130273342, + 0.010949766263365746, + -0.021728917956352234, + -0.008165101520717144, + 0.010364803485572338, + -0.005209821742027998, + 0.010827898979187012, + -0.011839396320283413, + -0.00244648358784616, + -0.0076837255619466305, + 0.005094048101454973, + -0.018414130434393883, + -0.018414130434393883, + -0.015318704769015312, + -0.012552320025861263, + 0.010943672619760036, + -9.449466597288847e-5, + 0.002699358155950904, + 0.008299155160784721, + -0.01661049760878086, + 0.01367349736392498, + -0.011120379902422428, + 0.009274092502892017, + -0.01684204488992691, + -0.011266620829701424, + 0.011467701755464077, + -0.02372753992676735, + -0.01896253414452076, + 0.02038837969303131, + 0.02176547795534134, + -0.007555765099823475, + -0.009755467996001244, + -0.0024723804090172052, + 0.008817090652883053, + 0.007171883713454008, + 0.030198687687516212, + 0.014636248350143433, + -0.007092670071870089, + -0.009578760713338852, + 0.00895114429295063, + -0.0037535091396421194, + 0.012942294590175152, + -0.013551630079746246, + -0.017999783158302307, + 0.004987414460629225, + 0.006102499086409807, + 0.00978593435138464, + 0.009950455278158188, + -0.00422879122197628, + -0.011942983604967594, + 0.001654346939176321, + 0.014209712855517864, + -0.0003737894876394421, + -0.01873098500072956, + 0.022533241659402847, + 0.00033361141686327755, + -0.013770991005003452, + 0.01201001089066267, + 0.015659932047128677, + 0.016452068462967873, + 0.018840666860342026, + 0.010419643484055996, + -0.002760291565209627, + 0.004545645788311958, + -0.0389731228351593, + -0.008335715159773827, + -0.022935403510928154, + 0.015659932047128677, + 0.004073410294950008, + -0.000738058122806251, + -0.012649813666939735, + 0.019096586853265762, + 0.0038479561917483807, + 0.0007662398857064545, + 0.025933336466550827, + -0.005846578162163496, + -0.0028836822602897882, + -0.001561423297971487, + 0.012991041876375675, + 0.009389866143465042, + 0.002032135147601366, + -0.0025226506404578686, + 0.013125095516443253, + 0.011875956319272518, + -0.00914003886282444, + 0.012442639097571373, + 0.0029628959018737078, + 0.0002403068501735106, + 0.006903775967657566, + -0.011120379902422428, + -0.018767544999718666, + 0.0087988106533885, + 0.029296869412064552, + 0.0013298755511641502, + -0.00792745966464281, + 0.008865837007761002, + -0.03127111867070198, + -0.021960465237498283, + -0.012588880024850368, + -0.017646368592977524, + 0.0032051068264991045, + -0.013868485577404499, + 0.0032660404685884714, + 0.014380327425897121, + 0.006361466832458973, + 0.005581516772508621, + 0.004371985327452421, + 0.0094447061419487, + -0.004311051685363054, + 0.00457001943141222, + 0.011723622679710388, + -0.01114475354552269, + -0.00583743816241622, + 0.008731783367693424, + -0.007726379204541445, + -0.006751441862434149, + -0.014831235632300377, + -0.018596932291984558, + 0.014343767426908016, + -0.005694244056940079, + -0.007391244638711214, + 0.01919408142566681, + 0.010699938051402569, + -0.038705017417669296, + -0.0212414488196373, + -0.0011950600892305374, + 0.006416306830942631, + 0.0029659424908459187, + -0.0021905626635998487, + -0.015659932047128677, + -0.030783649533987045, + -0.023386312648653984, + 0.025348372757434845, + 0.011949077248573303, + -0.018523812294006348, + -0.0006832178914919496, + 0.003457981161773205, + -0.011083819903433323, + -0.001934641506522894, + -0.023069458082318306, + -0.005831344518810511, + -0.015842733904719353, + -0.0023550833575427532, + -0.012991041876375675, + 0.028078198432922363, + 0.018633492290973663, + 0.014404701068997383, + -0.008232127875089645, + 0.0020016683265566826, + 0.009377679787576199, + 0.006465054117143154, + 0.019376881420612335, + 0.01065119169652462, + 0.019839977845549583, + -0.009725000709295273, + 0.01819477044045925, + -0.00792745966464281, + -0.01378317829221487, + 0.005752130877226591, + -0.003869283013045788, + -0.004828987177461386, + 0.02885814756155014, + -0.01986435055732727, + 0.023325378075242043, + -0.010949766263365746, + -0.003988103475421667, + -0.04199542850255966, + -0.009664067067205906, + 0.015879293903708458, + 0.010639004409313202, + -0.03014994040131569, + -0.0012552319094538689, + -0.023922527208924294, + 0.03231917694211006, + 0.01235123910009861, + 0.00010463439684826881, + -0.01775604858994484, + 0.018938159570097923, + 0.011150847189128399, + 0.004469478968530893, + -0.020364005118608475, + -0.014599688351154327, + -0.009310652501881123, + -0.014660621993243694, + -0.021253636106848717, + -0.018389757722616196, + 0.03246541693806648, + -0.0016284502344205976, + -0.017512314021587372, + 0.00947517342865467, + 0.005398716311901808, + -0.0063310000114142895, + -0.010358710773289204, + -0.0035219616256654263, + -0.00018908454512711614, + 0.013649124652147293, + -0.014867795631289482, + -0.0015134380664676428, + 0.025567734614014626, + 0.004959994461387396, + -0.006958615966141224, + 0.004765006713569164, + 0.012217184528708458, + 0.0032690870575606823, + 0.024653730913996696, + 0.029516231268644333, + 0.005231148563325405, + 0.008640383370220661, + 0.01631801575422287, + 0.0031319865956902504, + -0.022667296230793, + -0.002370316768065095, + -0.0030101193115115166, + 0.014892169274389744, + -0.0071962568908929825, + -0.002448006998747587, + -0.0026399476919323206, + -0.03202669322490692, + -0.007714192382991314, + -0.007714192382991314, + 0.001564469886943698, + -0.012637626379728317, + -0.004509085789322853, + 0.0016025534132495522, + -0.011997823603451252, + 0.019157521426677704, + -0.012649813666939735, + -0.03482963889837265, + 0.00035722317988984287, + 0.010456204414367676, + -0.021923905238509178, + -0.004067317117005587, + 0.02048587240278721, + 0.007537485100328922, + -0.007025642786175013, + 0.008335715159773827, + 0.010791338980197906, + -0.006142105907201767, + 0.0014220376033335924, + 0.02447092905640602, + -0.0015720865922048688, + 0.014270646497607231, + 0.03090551681816578, + 0.006065939087420702, + 0.03541460260748863, + -0.013064161874353886, + -0.000319139682687819, + 0.02115614339709282, + -0.0003930216480512172, + -0.01273512002080679, + 0.01477030199021101, + 0.008360088802874088, + 0.00812244787812233, + -0.006989082787185907, + -0.022472308948636055, + 0.01896253414452076, + 0.006257879547774792, + -0.00978593435138464, + -0.0016360669396817684, + -0.010029668919742107, + 0.00929237250238657, + 0.010565884411334991, + -0.008573356084525585, + -0.011942983604967594, + 0.010224656201899052, + 0.01057807169854641, + 0.018097275868058205, + 0.0023626999463886023, + 0.010535418055951595, + -0.006050705444067717, + -0.0011440281523391604, + -0.012564506381750107, + 0.0172320194542408, + 0.006897682324051857, + -0.02320351079106331, + 0.01774386130273342, + -0.008597729727625847, + 0.010584164410829544, + -0.015611185692250729, + -0.002272822894155979, + -0.02107083611190319, + -0.0148799829185009, + 0.0010153059847652912, + 0.007720286026597023, + -0.016452068462967873, + 0.004597439430654049, + 0.025884589180350304, + -0.015184651128947735, + -0.00039035582449287176, + -0.019389068707823753, + 0.019974030554294586, + -0.020510246977210045, + -0.007324217353016138, + -0.004624859429895878, + -0.0051031881012022495, + -0.002070218790322542, + 0.006775815039873123, + -0.01963280327618122, + -0.016269268468022346, + 0.0011714482679963112, + 0.022716041654348373, + 0.03322099521756172, + 0.014209712855517864, + -0.02099771425127983, + -0.008829277008771896, + 0.0005076529923826456, + 0.010072322562336922, + -0.0012956004356965423, + -0.007884806953370571, + -0.00948126707226038, + -0.010955859906971455, + -0.023849407210946083, + -0.015501505695283413, + 0.024519676342606544, + -0.007494831457734108, + 0.011199593544006348, + 0.014343767426908016, + 0.00834790151566267, + -0.019011279568076134, + -0.0012285734992474318, + -0.003540241625159979, + -0.010663378052413464, + -0.021131768822669983, + 0.003893656423315406, + 0.011626129038631916, + -0.018487250432372093, + 0.0027541983872652054, + 0.0017046171706169844, + 0.002105255611240864, + -0.0385100282728672, + 0.01394160557538271, + -0.002422110177576542, + 0.0006832178914919496, + -0.009054731577634811, + 0.005615030415356159, + 0.009688440710306168, + -0.014490007422864437, + -0.0025394074618816376, + -0.0024038301780819893, + 0.02727387472987175, + -0.022192014381289482, + -0.020083710551261902, + -0.004527365788817406, + -0.011260527186095715, + -0.031831707805395126, + -0.002170759253203869, + 0.029516231268644333, + -0.00986514799296856, + -0.02025432512164116, + -0.004195277579128742, + -0.0028958688490092754, + -0.01117522083222866, + -0.019815603271126747, + -0.001266657025553286, + 0.0010663378052413464, + 0.02576272189617157, + -0.009590947069227695, + -0.008104167878627777, + -0.012881360948085785, + -0.0017944942228496075, + 0.0007635740330442786, + 6.0219525039428845e-5, + -0.006861122325062752, + 0.013746618293225765, + -0.025055892765522003, + -0.009164411574602127, + 0.02259417437016964, + -0.0051976353861391544, + 0.013551630079746246, + 0.005374342668801546, + -0.013356642797589302, + 0.0027709549758583307, + -0.005633310414850712, + 0.00257749087177217, + 0.007872619666159153, + 0.0027907583862543106, + -0.013539443723857403, + -0.009146131575107574, + -0.027371369302272797, + 0.008494142442941666, + -0.001792970928363502, + 0.005630263593047857, + 0.003869283013045788, + 0.0010617678053677082, + 0.007945740595459938, + -0.0067575350403785706, + 0.022118892520666122, + -0.0018112509278580546, + -0.019096586853265762, + -0.0003488447982817888, + -0.01088273897767067, + -0.0015096296556293964, + 0.0008774437010288239, + 0.013015414588153362, + 0.003963729832321405, + -0.001249900320544839, + -0.0048685939982533455, + -0.01609865389764309, + 0.00023383265943266451, + -0.005316455848515034, + 0.013478510081768036, + -0.006337093189358711, + -0.008585542440414429, + -0.002309383125975728, + -0.0032934604678303003, + -0.007275470532476902, + -0.03746197000145912, + -0.008018860593438148, + -0.004396358504891396, + -0.0010381561005488038, + 0.0004966087872162461, + 0.01668361760675907, + -0.0034945413935929537, + 0.02537274733185768, + 0.009018171578645706, + 0.016513003036379814, + 0.03144173324108124, + 0.0038449096027761698, + -0.0105719780549407, + -0.005828297697007656, + 0.008561169728636742, + 0.019145334139466286, + 0.023081643506884575, + -0.01012106891721487, + 0.011760182678699493, + 0.015879293903708458, + 0.008542889729142189, + -0.0011942983837798238, + 0.0068672155030071735, + 0.03341598063707352, + 0.0009909324580803514, + 0.0027740017976611853, + 0.003930216655135155, + 0.01336883008480072, + 0.004317144863307476, + 0.005937978159636259, + 0.020534619688987732, + 0.0037047623191028833, + 0.009450799785554409, + -0.0018539044540375471, + -0.003540241625159979, + 0.01835319772362709, + 0.013356642797589302, + 0.008146820589900017, + -0.011467701755464077, + 0.008469768799841404, + -0.002684124745428562, + 0.0013908091932535172, + -0.009737187996506691, + 0.0164033230394125, + -0.012192811816930771, + 0.00666613457724452, + -0.019291574135422707, + 0.0030497261323034763, + -0.010114976204931736, + 0.01137630082666874, + -0.010102788917720318, + 0.01592804118990898, + -0.02946748398244381, + -0.00617257272824645, + 0.012588880024850368, + 0.00666613457724452, + 0.009487359784543514, + -0.0026567045133560896, + -0.0021494324319064617, + -0.027225127443671227, + 0.0017442239914089441, + -0.0014029958983883262, + 0.0063797468319535255, + 0.02235044166445732, + -0.004548692610114813, + -0.01277168095111847, + -0.006873309146612883, + 0.010249029844999313, + -0.008024954237043858, + 0.025421494618058205, + -0.003972870297729969, + 0.0157086793333292, + -0.042945995926856995, + -0.003491494804620743, + -0.01190032996237278, + 0.023093830794095993, + -0.009316746145486832, + -0.005730804055929184, + 0.008634289726614952, + -0.009657974354922771, + -0.007068296428769827, + 0.016805484890937805, + -0.0009376156376674771, + 0.00541699631139636, + -0.0038449096027761698, + -0.005228102207183838, + -0.0022667294833809137, + -0.007068296428769827, + -0.009347212500870228, + 0.012381705455482006, + -0.014221900142729282, + -0.0044572921469807625, + 0.0012148634996265173, + -0.021436436101794243, + -0.004573065787553787, + -0.012022197246551514, + -0.012198904529213905, + -0.020303072407841682 + ], + "a6368a15-a882-4d45-8337-5aa16131c81f": [ + -0.015949254855513573, + -0.02284066565334797, + -0.009298013523221016, + 0.02791854739189148, + -0.00695022800937295, + 0.026938261464238167, + 0.004509315825998783, + 0.047681115567684174, + 0.007626625709235668, + 0.040858324617147446, + -0.012890761718153954, + 0.02635009028017521, + 0.022448550909757614, + 0.0012694704346358776, + -0.02944779396057129, + -0.00555332051590085, + -0.009440154768526554, + -0.03154560551047325, + 0.017233429476618767, + -0.028094999492168427, + 0.030918221920728683, + -0.04481867700815201, + -0.011498755775392056, + 0.01690993458032608, + 0.01963512971997261, + -0.0020745303481817245, + 0.008410854265093803, + 0.0018490646034479141, + -0.0032324932981282473, + -0.03370223566889763, + 0.002864886075258255, + 0.018684253096580505, + -0.013988682068884373, + 0.0011322303907945752, + -0.007111975457519293, + -0.012684901244938374, + 0.015615956857800484, + -0.0033648319076746702, + 0.0032913105096668005, + -0.013263270258903503, + -0.02758524939417839, + -0.029839908704161644, + 0.030780982226133347, + 0.006538507994264364, + 0.02403661422431469, + 0.053837310522794724, + 0.015606153756380081, + 0.034466858953237534, + 0.01881168968975544, + 0.014488628134131432, + 0.008087360300123692, + -0.00026314554270356894, + 0.024585574865341187, + 0.02044876664876938, + 0.009278407320380211, + -0.03236904740333557, + -0.014459219761192799, + 0.018390165641903877, + 0.027232347056269646, + -0.03325130417943001, + 0.027153924107551575, + 0.024350306019186974, + -0.01203791331499815, + -0.030290840193629265, + 0.0006586296949535608, + -0.0018306842539459467, + 0.027114711701869965, + -0.028938043862581253, + -0.03080058842897415, + -0.02646772377192974, + -0.009175477549433708, + -0.015017982572317123, + -0.02478163130581379, + -0.0006077773869037628, + 0.03966237232089043, + -0.02519335225224495, + 0.017007963731884956, + -0.02568349428474903, + 0.005764082074165344, + -0.020389949902892113, + -0.02456596866250038, + -0.020801670849323273, + -0.008327529765665531, + -0.039289865642786026, + 0.04787717014551163, + -0.011341909877955914, + -0.01899794302880764, + -0.0038647777400910854, + -0.02131141908466816, + 0.0056366450153291225, + -0.023879768326878548, + 0.020919304341077805, + 0.02168392762541771, + 0.034839365631341934, + -0.0014324430376291275, + -0.0007247989997267723, + -0.0010446173837408423, + 0.020997727289795876, + -0.04136807098984718, + -0.0194096639752388, + -0.017292246222496033, + 0.006337549537420273, + -0.021076150238513947, + -0.0065679168328642845, + -0.009415647946298122, + 0.02374252863228321, + 0.026957867667078972, + 0.019870398566126823, + -0.03517266362905502, + 0.0067296638153493404, + -0.03601571172475815, + -0.0567389577627182, + 0.039329078048467636, + -0.025957975536584854, + -0.004006919451057911, + -0.03346696496009827, + 0.014116119593381882, + 0.028683170676231384, + 0.00023879155924078077, + -0.02474242076277733, + 0.038505636155605316, + 0.008783362805843353, + 0.04909272491931915, + -0.00257570156827569, + -0.007440371438860893, + -0.014821925200521946, + -0.026212848722934723, + 0.04187782108783722, + 0.055562615394592285, + 0.029330158606171608, + 0.008538291789591312, + 0.019497890025377274, + -0.00220319302752614, + -0.039172232151031494, + -0.0008173134992830455, + 0.003940749913454056, + 0.021076150238513947, + 0.01829213835299015, + -0.018233321607112885, + -0.027781307697296143, + -0.023134751245379448, + 0.043014951050281525, + 0.01724323257803917, + -0.00027264206437394023, + -0.015439505688846111, + 0.01050866674631834, + -0.046857673674821854, + 0.029918329790234566, + 0.0065189022570848465, + 0.0018564166966825724, + -0.01507679931819439, + -0.04023094102740288, + -0.02866356447339058, + 0.02489926666021347, + -0.010930189862847328, + 0.013194650411605835, + 0.004337765742093325, + 0.04979853332042694, + 0.007695245556533337, + 0.004619597923010588, + -0.009866579435765743, + -0.0025095322635024786, + -0.007092369720339775, + -0.029800696298480034, + 0.023722922429442406, + 0.01765495166182518, + 0.041564129292964935, + 0.08414775878190994, + -0.0574839748442173, + 0.01131250150501728, + 0.05219043046236038, + 0.011969292536377907, + 0.008856884203851223, + 0.00026375820743851364, + -0.014655276201665401, + 0.011900672689080238, + -0.019095972180366516, + -0.040034882724285126, + 0.058699529618024826, + -0.01005773525685072, + -0.004698020871728659, + 0.003024182515218854, + -0.0025034055579453707, + 0.03280037268996239, + 0.0037128333933651447, + 0.005313150584697723, + -0.016262946650385857, + 0.030035965144634247, + -0.031447578221559525, + 0.03154560551047325, + 0.0347217321395874, + -0.03593728691339493, + -0.006268929224461317, + 0.0306045301258564, + -0.004472555126994848, + -0.02605600282549858, + -0.010773343965411186, + -0.024840448051691055, + 0.019654735922813416, + 0.0339767150580883, + -0.02317396178841591, + -0.019468480721116066, + -0.019939018413424492, + -0.010067537426948547, + -0.023428836837410927, + 0.007067862432450056, + -0.00220319302752614, + -0.028585141524672508, + -0.008744151331484318, + -0.0005602947785519063, + 0.03725086897611618, + -0.02440912276506424, + 0.0278009120374918, + 0.013557355850934982, + 0.011645798571407795, + 0.013135833665728569, + 0.0090529415756464, + 0.007724654395133257, + -0.019399860873818398, + -0.007200201041996479, + 0.008739250712096691, + -0.028526324778795242, + -9.190182026941329e-5, + -0.041799396276474, + -0.04826928675174713, + -0.02474242076277733, + -0.023095538839697838, + -0.009724438190460205, + 0.00013149618462193757, + -0.04125043749809265, + -0.006038561929017305, + -0.007768766954541206, + -0.007107073906809092, + 0.00919998437166214, + 0.015615956857800484, + 0.06575758755207062, + 0.020840881392359734, + -0.0006849748897366226, + 0.027349980548024178, + -0.015106208622455597, + 0.026899049058556557, + 0.01676289178431034, + 0.029016466811299324, + -0.04415208473801613, + -0.004396582953631878, + -0.0031540703494101763, + -0.03299642726778984, + 0.00455342885106802, + 0.015459110960364342, + -0.0153022650629282, + -0.02097812108695507, + -0.0033623811323195696, + 0.03274155408143997, + -0.005112191662192345, + -0.02448754571378231, + 0.016057085245847702, + -0.0008577503031119704, + -0.0036417627707123756, + 0.006293436512351036, + -0.02672259882092476, + -0.01608649455010891, + 0.02593836933374405, + 0.001345442607998848, + -0.020331133157014847, + 0.0683063343167305, + -0.0283694788813591, + 0.025428621098399162, + -0.0074501740746200085, + -0.01235160417854786, + 0.006920819636434317, + 0.04336785525083542, + -0.035290297120809555, + 0.006283633876591921, + -0.024801237508654594, + -0.005322953220456839, + -0.019282227382063866, + -0.013684793375432491, + -0.010832160711288452, + -0.01829213835299015, + -0.03515305742621422, + -0.006925721187144518, + 0.013871047645807266, + 0.04203466698527336, + 0.024840448051691055, + 0.027487222105264664, + -0.014527839608490467, + -0.04050542041659355, + -0.02138984203338623, + -0.051602259278297424, + -0.03709402307868004, + 0.004683316685259342, + 0.0006328971940092742, + 0.018223518505692482, + -0.00022500628256238997, + 0.03154560551047325, + 0.0043279631063342094, + 0.017713768407702446, + -0.04097595810890198, + -0.008552995510399342, + -0.004577936138957739, + 0.008641221560537815, + -0.0339767150580883, + 0.009744043461978436, + 0.0013135833432897925, + -0.04952405020594597, + -0.0010317510459572077, + 0.07356066256761551, + -0.01218495611101389, + -0.0047886972315609455, + 0.0306045301258564, + 0.025212958455085754, + -0.040623053908348083, + -0.010959598235785961, + -0.030918221920728683, + 0.017037371173501015, + -0.007092369720339775, + -0.023115145042538643, + 0.004511766601353884, + -0.006641438230872154, + 0.017939234152436256, + -0.0006341225234791636, + 0.004033877048641443, + 0.020782064646482468, + 0.02415424771606922, + 0.0214682649821043, + -0.03391789644956589, + 0.023977797478437424, + -0.03629019111394882, + 0.00800893735140562, + -0.04285810515284538, + 0.022389734163880348, + 0.0309770405292511, + -0.011292895302176476, + 0.005063177552074194, + -0.02064482495188713, + 0.008616714738309383, + -0.03378065675497055, + -0.004251990932971239, + -0.01982138492166996, + -0.0074256667867302895, + -0.006244422402232885, + -0.016860920935869217, + 0.04340706765651703, + 0.01762554422020912, + -0.030094781890511513, + 0.019870398566126823, + 0.026663780212402344, + 0.01675308868288994, + -0.012096730060875416, + 0.008234403096139431, + 0.00026054165209643543, + 0.006229717750102282, + 0.014361190609633923, + -0.0012045265175402164, + 0.038427215069532394, + -0.018752872943878174, + 0.022899482399225235, + -0.013880850747227669, + -0.02258579060435295, + -0.010322412475943565, + -0.00977835338562727, + -0.029428187757730484, + 0.009400943294167519, + -0.007013946771621704, + -0.011704615317285061, + 0.03444725275039673, + 0.022311311215162277, + 0.016655059531331062, + 0.011724221520125866, + -0.007866796106100082, + -0.03034965693950653, + -4.265776078682393e-5, + -0.02862435393035412, + 0.01125368382781744, + 0.024958083406090736, + -0.02742840349674225, + 0.007656034082174301, + -0.004707823973149061, + -0.02668338641524315, + 0.02817342057824135, + -0.011302698403596878, + -0.007861894555389881, + 0.04450498893857002, + -0.02754603885114193, + 0.025330591946840286, + 0.01265549287199974, + -0.0049210358411073685, + -0.01582181639969349, + -0.019272424280643463, + -0.021154573187232018, + -0.012047715485095978, + -0.009567592293024063, + -0.045328427106142044, + -0.025173746049404144, + -0.0017155006062239408, + 0.005960139445960522, + -0.008401051163673401, + 0.006714959628880024, + -0.02766367234289646, + -0.004308357369154692, + 0.0436815470457077, + -0.0010519694769755006, + 0.00020095864601898938, + -0.051131721585989, + 0.02209564857184887, + -0.0021590800024569035, + -0.013567158952355385, + 0.0012124913046136498, + 0.025840340182185173, + 0.005303347483277321, + -0.003068295307457447, + -0.04058384150266647, + 0.03597649931907654, + 0.023683711886405945, + 0.0014630769146606326, + 0.0038549748715013266, + 0.001192272873595357, + -0.018017657101154327, + -0.07309012860059738, + -0.006553212180733681, + 0.04426971822977066, + 0.021879984065890312, + -0.03679993748664856, + -0.015321871265769005, + 0.03015359863638878, + 0.011792841367423534, + 0.029761485755443573, + 0.01420434471219778, + -0.032349441200494766, + 0.01850780099630356, + -0.01491015125066042, + -0.0019042056519538164, + -0.005332756321877241, + 0.026742203161120415, + 0.020507585257291794, + -0.026702992618083954, + 0.049288783222436905, + 0.008851983584463596, + -0.02019389346241951, + -0.0007358272559940815, + 0.028506718575954437, + -0.001097307656891644, + 0.044779468327760696, + 0.013674990274012089, + -0.009660718962550163, + -0.0065189022570848465, + -0.002749702427536249, + 0.0011665404308587313, + 0.007283525541424751, + -0.01052827201783657, + 0.013557355850934982, + 0.010969401337206364, + 0.03399632126092911, + -0.002156629227101803, + -0.009131364524364471, + 0.019772369414567947, + 0.01948808692395687, + 0.005960139445960522, + -0.021213389933109283, + -0.0005541679565794766, + -0.03485897183418274, + -0.002708040177822113, + 0.0466616153717041, + -0.03942710533738136, + -0.0032324932981282473, + -0.017047174274921417, + -0.006862002424895763, + -0.003744692774489522, + -0.006210112012922764, + 0.0035192270297557116, + -0.04089753329753876, + 0.03193771839141846, + -0.05030827969312668, + -0.002032868331298232, + 0.01005773525685072, + -0.027310770004987717, + -0.017703967168927193, + 0.008263811469078064, + -0.0018576420843601227, + 0.02217407152056694, + -0.004185821395367384, + -0.033682629466056824, + -0.03319248557090759, + 0.030584925785660744, + -0.0012394491350278258, + 0.01248884480446577, + -0.04940641671419144, + -0.03325130417943001, + -0.03595689311623573, + 0.02287987619638443, + -0.007793274242430925, + 0.0335846021771431, + 0.02486005425453186, + -0.006185605190694332, + 0.004671063274145126, + 0.00313936616294086, + 0.0309770405292511, + -0.005754278972744942, + 0.00730803282931447, + -0.03015359863638878, + 0.006224816665053368, + -0.02493847720324993, + -0.00404858123511076, + -0.025781523436307907, + -0.003024182515218854, + 0.04270125925540924, + -0.0240758266299963, + -0.007440371438860893, + -0.019948821514844894, + 0.04485788941383362, + -0.009572493843734264, + 0.04493631422519684, + -0.015096405521035194, + -0.004818106070160866, + 0.0030731968581676483, + -0.019978230819106102, + -0.0063865636475384235, + -0.03105546161532402, + 0.017272640019655228, + -0.02097812108695507, + 0.004514217376708984, + -0.012302590534090996, + -0.01746869832277298, + 0.010704724118113518, + -0.004631851799786091, + 0.006945326924324036, + -0.02676180936396122, + -0.041564129292964935, + 0.016096297651529312, + -0.012616281397640705, + -0.009994016028940678, + 0.007582512684166431, + -0.007464878261089325, + 0.009621507488191128, + -0.005592531990259886, + -0.0063620563596487045, + 0.005411179270595312, + -0.004467653576284647, + 0.010538075119256973, + -0.015459110960364342, + 0.02082127518951893, + 0.028957650065422058, + 0.006087576504796743, + -0.004587738774716854, + 0.0072933281771838665, + -0.003808411303907633, + -0.015223842114210129, + 0.019948821514844894, + 0.02638930082321167, + 0.0029040975496172905, + -0.02440912276506424, + 0.018429378047585487, + -0.024879660457372665, + -0.0023600386921316385, + -0.01375341322273016, + -0.025879552587866783, + 0.02403661422431469, + -0.01550812553614378, + -0.006739466916769743, + 0.028232239186763763, + 0.003252099035307765, + -0.007312933914363384, + 0.01814509555697441, + 0.002734998008236289, + -0.015037587843835354, + -0.004340216517448425, + -0.023899374529719353, + -0.02213485911488533, + 0.015331674367189407, + -0.004362273029983044, + 0.0024715461768209934, + -0.01933124102652073, + 0.040113307535648346, + 0.02440912276506424, + -0.014861136674880981, + 0.019586116075515747, + -0.006425775121897459, + 0.004435794427990913, + -0.01724323257803917, + 0.029055679216980934, + -0.00025257683591917157, + -0.0037152841687202454, + -0.014831728301942348, + -0.03897617384791374, + -0.006587522570043802, + -0.0005621328018605709, + -0.013910259120166302, + -0.013929865323007107, + -0.0049455431289970875, + 0.00852848868817091, + -0.01769416406750679, + 0.017870614305138588, + 0.013175045140087605, + 0.012047715485095978, + -0.018262729048728943, + 0.014174936339259148, + -0.016625652089715004, + 0.024017008021473885, + -0.007582512684166431, + 0.026604963466525078, + 0.024879660457372665, + -0.00683259405195713, + 0.024232670664787292, + -0.031153490766882896, + -0.003234944073483348, + 0.014949362725019455, + -0.02011547051370144, + 0.010773343965411186, + -0.012253575958311558, + -0.015890436246991158, + 0.015390491113066673, + -0.034878578037023544, + 0.0029923231340944767, + -0.018556814640760422, + 0.010694921016693115, + 0.03299642726778984, + 0.002106389729306102, + -0.015400294214487076, + 0.012978987768292427, + -0.010145960375666618, + 0.013351496309041977, + 0.0008350812131538987, + 0.01431217696517706, + -0.004207877907902002, + -0.0306045301258564, + -0.013184847310185432, + -0.010420440696179867, + -0.007778570055961609, + 0.007116877008229494, + -0.01255746465176344, + 0.0083030229434371, + -0.00867553148418665, + -0.004239737056195736, + -0.044622622430324554, + 0.016262946650385857, + -0.026899049058556557, + -0.007798175793141127, + 0.006866903975605965, + -0.031741663813591, + -0.0021419250406324863, + -0.018801886588335037, + -0.0021860378328710794, + 0.00015776479267515242, + 0.007940317504107952, + -0.031231913715600967, + 0.031780872493982315, + -0.008704939857125282, + 0.024467939510941505, + -0.015096405521035194, + 0.029957542195916176, + -0.018497997894883156, + 0.03023202158510685, + 0.0023196018300950527, + 0.025957975536584854, + -0.01205751858651638, + -0.0362117663025856, + 0.014723896980285645, + 0.04960247501730919, + -0.03287879377603531, + -0.03176127001643181, + 0.018115686252713203, + 0.004335314966738224, + 0.052504122257232666, + -0.006533606443554163, + 0.010459652170538902, + 0.005842505022883415, + -0.003823115723207593, + -0.016968751326203346, + 0.006847298238426447, + 0.01183205284178257, + -0.013145635835826397, + -0.012175153009593487, + -0.00480585265904665, + 0.0339571088552475, + 0.011126247234642506, + -0.013802427798509598, + -0.0003391177160665393, + -0.005631743464618921, + 0.015547337010502815, + -0.01930183172225952, + -0.014596459455788136, + 0.009283308871090412, + -0.015008179470896721, + 0.009626409038901329, + -0.01679230108857155, + -0.0074795824475586414, + -0.0074207657016813755, + 0.035780441015958786, + -0.0025095322635024786, + 0.011361515149474144, + -0.0009043138707056642, + 0.04658319428563118, + -0.03519226983189583, + -0.002565898699685931, + -0.020958516746759415, + 0.03554517403244972, + -0.0020059102680534124, + -0.03056531958281994, + 0.010332215577363968, + -0.011488952673971653, + -0.017370669171214104, + -0.022330917418003082, + -0.0283694788813591, + 0.021958407014608383, + 0.013841639272868633, + 0.03599610552191734, + -0.011430135928094387, + -0.007847189903259277, + 0.018860703334212303, + -0.008273614570498466, + 0.03552556782960892, + 0.01870385743677616, + -0.00949897151440382, + -0.00715608848258853, + -0.014861136674880981, + 0.021507475525140762, + -0.013567158952355385, + 0.05124935507774353, + 0.04450498893857002, + 0.014998376369476318, + -0.03329051658511162, + 0.017145203426480293, + -0.017037371173501015, + -0.03399632126092911, + -0.0038525243289768696, + 0.04948484152555466, + 0.006808086764067411, + 0.005264136008918285, + -0.0016860920004546642, + -0.00963131058961153, + -0.016880525276064873, + 0.007538399659097195, + -0.004952895455062389, + 0.0028991959989070892, + -0.02164471708238125, + -0.016262946650385857, + -0.025330591946840286, + -0.02027231641113758, + 0.010194974951446056, + 0.000893898366484791, + -0.007151186931878328, + -0.0005731609999202192, + 0.0057150679640471935, + -0.0029163509607315063, + -0.018527407199144363, + -0.017743177711963654, + -0.013949470594525337, + -0.016821708530187607, + -0.004818106070160866, + 0.03787825256586075, + 0.01814509555697441, + -0.02105654403567314, + 0.04799480736255646, + 0.005082783289253712, + -0.0065728179179131985, + -0.001115075428970158, + -0.00543078500777483, + 0.03180047869682312, + -0.02362489327788353, + 0.05893479660153389, + -0.012596676126122475, + -0.00013509567361325026, + -0.006509099621325731, + -0.036819543689489365, + 0.001722852815873921, + -0.00211374182254076, + -0.0011885968269780278, + 0.034211982041597366, + 0.012371210381388664, + 0.011920278891921043, + 0.020880093798041344, + -0.005499404855072498, + 0.00042458641109988093, + 0.026859838515520096, + -0.05454311519861221, + -0.031741663813591, + -0.00976364966481924, + 0.018017657101154327, + 0.04262283816933632, + -0.014370993711054325, + -0.019733158871531487, + -0.052386488765478134, + 0.013086819089949131, + 0.012988789938390255, + 0.013047607615590096, + 0.00382556626573205, + 0.026624569669365883, + 0.027644066140055656, + -0.014723896980285645, + -0.004060835111886263, + -0.0008577503031119704, + -0.01697855442762375, + 0.006450282409787178, + 0.0075285970233380795, + 0.017566725611686707, + 0.0033280712086707354, + -0.031408365815877914, + 0.0036368612200021744, + -0.030996644869446754, + -0.012439830228686333, + 0.006582621019333601, + 0.0076070199720561504, + 0.029330158606171608, + -0.00172652886249125, + 0.03721166029572487, + -0.01207712385803461, + -0.043093375861644745, + -0.004707823973149061, + -0.027742095291614532, + -0.001998558174818754, + 0.015478717163205147, + 0.02138984203338623, + -0.00013241519627626985, + -0.0011708291713148355, + -0.027271557599306107, + -0.0059258290566504, + 0.031898509711027145, + -0.007915809750556946, + 0.005303347483277321, + -0.01412592176347971, + -0.0248208437114954, + -0.018086278811097145, + -0.0015782605623826385, + 0.0057199690490961075, + -0.00019421917386353016, + -0.0031320140697062016, + 0.0035192270297557116, + -0.01302800141274929, + 0.026781415566802025, + -0.006298338063061237, + -0.0067002554424107075, + -0.018262729048728943, + 0.025663889944553375, + 0.011390924453735352, + 0.022821059450507164, + 0.0032226904295384884, + -0.05050433799624443, + -0.04399523884057999, + -0.010087143629789352, + -0.0012075898703187704, + -0.01140072662383318, + 0.004229934420436621, + -0.008704939857125282, + -0.023722922429442406, + 0.0013674990041181445, + 0.06199328973889351, + -0.018380364403128624, + 0.023507259786128998, + 0.029996752738952637, + -0.00021091467351652682, + 0.018184306100010872, + 0.0057199690490961075, + -0.003087901044636965, + 0.024252276867628098, + -0.05505286529660225, + 0.033643417060375214, + 0.015959057956933975, + -0.021154573187232018, + -0.003401592606678605, + -0.02460518106818199, + 0.0010023425566032529, + -0.00015990916290320456, + 0.0158610288053751, + -0.013488736003637314, + 0.014508233405649662, + 0.012498646974563599, + 0.024213066324591637, + 0.016860920935869217, + 0.012969184666872025, + 0.03701560199260712, + -0.00977835338562727, + 0.004389230627566576, + 0.008822574280202389, + 0.003970158752053976, + -0.012243772856891155, + -0.019664539024233818, + 0.009876382537186146, + 0.0041417088359594345, + -0.016439396888017654, + 0.02123299613595009, + -0.0005924603901803493, + -0.0027472516521811485, + 0.00738155422732234, + 0.006293436512351036, + -0.04599502310156822, + 0.02329159714281559, + 0.035035423934459686, + 0.033349331468343735, + -0.010949795134365559, + -0.018007855862379074, + -0.00613168952986598, + 0.00810206402093172, + -0.01336129941046238, + -0.044622622430324554, + -0.007357046939432621, + -0.005577827803790569, + 0.0033501277212053537, + -0.0013748512137681246, + -0.022036829963326454, + 0.0201546810567379, + 0.011508557945489883, + -0.023232780396938324, + -0.016527622938156128, + -0.0047592888586223125, + 0.005357263144105673, + 0.0029506611172109842, + 0.013567158952355385, + -0.00738155422732234, + 0.0104498490691185, + 0.007773668505251408, + -0.007028650958091021, + -0.0021897139959037304, + -0.008802969008684158, + -0.004484808538109064, + 0.0255658607929945, + -0.02138984203338623, + -0.0075285970233380795, + 0.00927350576967001, + 0.0049161347560584545, + 0.016635455191135406, + 0.013792624697089195, + 0.005190614610910416, + 0.002050023293122649, + 0.013351496309041977, + 0.027938153594732285, + -0.001420189393684268, + -0.007244314067065716, + -0.008621616289019585, + -0.00492838816717267, + 0.019693946465849876, + -0.013674990274012089, + 0.005871913395822048, + -0.005837603472173214, + -0.019791975617408752, + 0.02287987619638443, + -0.013106424361467361, + 0.0031761268619447947, + -0.012939776293933392, + -0.006592423655092716, + -0.03978000953793526, + -0.010577286593616009, + -0.04027014970779419, + 0.029761485755443573, + -0.013802427798509598, + -0.023526865988969803, + -0.01022438332438469, + -0.020899698138237, + 0.01228298433125019, + -0.026193244382739067, + -0.009302915073931217, + -0.0039064399898052216, + 0.014233754016458988, + -0.01013615820556879, + 0.03389829024672508, + -0.014870939776301384, + 0.011194867081940174, + 0.026781415566802025, + 0.009788156487047672, + -0.007259018253535032, + 0.007175694219768047, + -0.009160772897303104, + -0.046230290085077286, + -0.037682197988033295, + 0.010194974951446056, + 0.006646339315921068, + -0.006768875289708376, + 0.007249215617775917, + 0.04525000602006912, + -0.01963512971997261, + -0.021546687930822372, + 0.01352794747799635, + -0.021938802674412727, + 0.006455183960497379, + -0.020625218749046326, + -0.010812555439770222, + 0.005724870599806309, + -0.017674557864665985, + 0.002644321648404002, + 0.018429378047585487, + -0.00705315824598074, + 0.030016358941793442, + -0.011361515149474144, + -0.008072655647993088, + -0.03319248557090759, + 0.0035829455591738224, + 0.030447684228420258, + 0.011802644468843937, + -0.009729338809847832, + 0.02952621690928936, + -0.0005942984134890139, + 0.012116335332393646, + -0.02291908860206604, + 0.02105654403567314, + -0.0003424874448683113, + 0.012047715485095978, + 0.007803076878190041, + -0.00038323059561662376, + 0.0034408040810376406, + 0.00627873232588172, + -0.011518361046910286, + 0.04058384150266647, + -0.005489601753652096, + 0.011488952673971653, + -0.0009772226912900805, + 0.02176235057413578, + 0.0024764477275311947, + -0.00795011967420578, + 0.023879768326878548, + 0.009307816624641418, + -0.01612570509314537, + -0.028232239186763763, + -0.019213607534766197, + -0.01513561699539423, + 0.005303347483277321, + 0.010155763477087021, + 0.02180156297981739, + 0.008842180483043194, + -0.02123299613595009, + -0.002208094345405698, + 0.0158708319067955, + 0.007567808497697115, + -0.04332864284515381, + -0.012890761718153954, + 0.012175153009593487, + -0.026232454925775528, + 0.007562906946986914, + 0.009699930436909199, + 0.010479258373379707, + -0.007048256695270538, + -0.015704182907938957, + -0.01657663658261299, + -0.013253467157483101, + -0.0042250328697264194, + -0.0043990337289869785, + 0.012665295973420143, + -0.016027677804231644, + 0.010998809710144997, + -0.023075934499502182, + -0.0018600928597152233, + 0.0037520448677241802, + 0.019870398566126823, + 0.005705264862626791, + -0.030251627787947655, + -0.001379752648063004, + 0.014302373863756657, + 0.04270125925540924, + -0.023722922429442406, + -0.0029261538293212652, + -0.017488302662968636, + 0.006734565366059542, + 0.016998160630464554, + 0.021331025287508965, + -0.008984321728348732, + 0.025095323100686073, + -0.020370343700051308, + 0.036329399794340134, + -0.032349441200494766, + -0.03613334521651268, + 0.006857100874185562, + -0.007401159964501858, + -0.009793058037757874, + -0.01013615820556879, + 0.028153816238045692, + -0.0038206649478524923, + -0.0074746813625097275, + -0.026781415566802025, + 0.006592423655092716, + -0.0013907809043303132, + -0.0038108620792627335, + -0.00888139195740223, + 0.00360255129635334, + 0.017968643456697464, + 0.016145311295986176, + 0.01235160417854786, + -0.012165349908173084, + 0.022330917418003082, + 0.021507475525140762, + 0.00795011967420578, + 0.008861785754561424, + -0.03664309158921242, + 0.0028624352999031544, + -0.008445164188742638, + -0.007773668505251408, + -0.010067537426948547, + -0.03893696144223213, + -0.009891086257994175, + -0.003999567124992609, + 0.0036270583514124155, + 0.03429040685296059, + 0.03515305742621422, + -0.0018698956118896604, + 0.013371101580560207, + 0.010332215577363968, + 0.011812446638941765, + 0.005724870599806309, + 0.002982520265504718, + -0.03832918405532837, + -0.0019250367768108845, + -0.0016640356043353677, + 0.0065189022570848465, + -0.004516668152064085, + -0.01300839614123106, + 0.0032202396541833878, + 0.005166107788681984, + 0.027683278545737267, + 0.01649821363389492, + 0.01302800141274929, + -0.0016603595577180386, + 0.052268851548433304, + 0.005298446398228407, + 0.021409448236227036, + 0.02287987619638443, + -0.01687072403728962, + 0.012292787432670593, + -0.001532922382466495, + -0.01701776683330536, + -0.010841963812708855, + 0.013596567325294018, + 0.0002006522990996018, + 0.028134210035204887, + 0.01558654848486185, + -0.007322737015783787, + -0.0012406745227053761, + 0.00945976097136736, + -0.011126247234642506, + 0.007219806779175997, + 0.012900564819574356, + 0.013890653848648071, + 0.014086710289120674, + 0.0026075609494000673, + 0.01612570509314537, + -0.019772369414567947, + -0.0017583881272003055, + 0.004264244344085455, + -0.02287987619638443, + 0.028585141524672508, + -0.008572601713240147, + 0.0011542867869138718, + -0.006714959628880024, + 0.007337441202253103, + -0.008366741240024567, + -0.015086602419614792, + -0.0089598149061203, + -0.01366518810391426, + 0.00407799007371068, + -0.006107182241976261, + -0.017105991020798683, + -0.03572162240743637, + 0.0171648096293211, + -0.039133019745349884, + -0.0025193351320922375, + -0.015655169263482094, + -0.0018319095252081752, + 0.021291812881827354, + -0.005239629186689854, + 0.026977472007274628, + -0.014018090441823006, + 0.01203791331499815, + -0.0049994587898254395, + -0.002473996952176094, + -0.012929973192512989, + -0.016772694885730743, + 0.006499296519905329, + -0.007758964318782091, + 0.030114388093352318, + -0.0007787147187627852, + 0.037231266498565674, + 0.006352253723889589, + 0.005371967796236277, + 0.01280253566801548, + 0.0007211229531094432, + 0.026624569669365883, + -0.023507259786128998, + -0.0328395813703537, + 0.007803076878190041, + 0.026585357263684273, + -0.02952621690928936, + -0.03825076296925545, + -0.012322195805609226, + 0.00011939577962039039, + 0.003943200688809156, + -0.0009827368194237351, + 0.025075716897845268, + -0.020742852240800858, + 0.013302481733262539, + 0.013429919257760048, + -0.015312068164348602, + -0.018527407199144363, + -0.015733592212200165, + 0.008234403096139431, + 0.016802102327346802, + -0.009601902216672897, + -0.009097054600715637, + -0.04866139963269234, + 0.008106965571641922, + -0.007018848322331905, + -0.006759072188287973, + -0.01265549287199974, + 0.0051808119751513, + 0.007523695472627878, + -0.02362489327788353, + 0.0063326479867100716, + 0.014753305353224277, + 0.009224492125213146, + 0.012135941535234451, + -0.02668338641524315, + -0.0013405411737039685, + 0.0014924855204299092, + 0.019046958535909653, + -0.0537588894367218, + -0.0031540703494101763, + -0.0031761268619447947, + 0.010871372185647488, + -0.024762025102972984, + 0.0012535408604890108, + 0.02093891054391861, + -0.02750682644546032, + -0.03815273195505142, + -0.005783687811344862, + 0.010753737762570381, + 0.0009355604997836053, + 0.03393750265240669, + -0.004607344511896372, + -0.002442137571051717, + -0.025507044047117233, + -0.03742732107639313, + -0.0073178354650735855, + 0.017341259866952896, + -0.004205427132546902, + -0.000828954391181469, + 0.004271596670150757, + 0.01073413249105215, + 0.009312717244029045, + -0.010518469847738743, + 0.026604963466525078, + -0.029741879552602768, + -0.010890978388488293, + 0.00815598014742136, + -0.014753305353224277, + 0.0067002554424107075, + 0.027487222105264664, + 0.005479799117892981, + 0.015625759959220886, + -0.027016684412956238, + 0.0032668032217770815, + 0.011969292536377907, + -0.012449633330106735, + 0.025409014895558357, + 0.014576854184269905, + 0.019027352333068848, + 0.0011193641694262624, + -0.009136266075074673, + 0.008935307152569294, + 0.02131141908466816, + -0.01343972235918045, + 0.02184077352285385, + -0.010322412475943565, + 0.0008479474345222116, + 0.01590023934841156, + -0.008700039237737656, + -0.0015856126556172967, + 0.015812013298273087, + -0.0004582837282214314, + 0.006509099621325731, + -0.0021725590340793133, + 0.014645474031567574, + 0.04058384150266647, + 0.00991069246083498, + -0.01596885919570923, + -0.008631418459117413, + -0.037642985582351685, + 0.01608649455010891, + -0.010606694966554642, + 0.02770288474857807, + -0.015596351586282253, + -0.0010832160478457808, + -0.013135833665728569, + -0.008611813187599182, + 0.03101625107228756, + 0.0029678160790354013, + 0.000508217082824558, + 0.025173746049404144, + 0.00824910681694746, + -0.0380743108689785, + 0.0035216775722801685, + -0.0111066410318017, + 0.03127112612128258, + -0.0032766060903668404, + -0.005308249033987522, + -0.029428187757730484, + 0.007832485251128674, + -0.016400186344981194, + 0.00042489272891543806, + 0.023644499480724335, + -0.03064374253153801, + 0.013498539105057716, + -0.050935663282871246, + -0.009366633370518684, + 0.005911124870181084, + 0.002882041037082672, + 0.0014263162156566978, + 0.023977797478437424, + 0.009915593080222607, + -0.01125368382781744, + 0.015910042449831963, + 0.025252168998122215, + 0.012920170091092587, + -0.016360973939299583, + -0.01742948591709137, + -0.04321100935339928, + 0.004028975497931242, + -0.006808086764067411, + -0.039544738829135895, + -0.03278076648712158, + 0.031486786901950836, + 0.021252602338790894, + -0.026624569669365883, + -0.023918980732560158, + 0.018841098994016647, + 0.01538068801164627, + -0.0017485852586105466, + 0.01672367937862873, + 0.013077015988528728, + 0.011283092200756073, + -0.0171746127307415, + -0.0056905606761574745, + -0.004122103098779917, + 0.014655276201665401, + 0.01933124102652073, + -0.006724762264639139, + -0.010047932155430317, + -0.00019084944506175816, + 0.019194001331925392, + 0.01536108274012804, + 0.02799697034060955, + -0.0071609895676374435, + 0.01600807160139084, + -0.011881067417562008, + -0.01338090468198061, + 0.0064404793083667755, + 0.0008013838669285178, + 0.013224058784544468, + -4.50701845693402e-5, + 0.006244422402232885, + -0.0006751720211468637, + 0.00010285345342708752, + -0.0019078816985711455, + 0.007842288352549076, + 0.022526973858475685, + -0.03448646515607834, + 0.004859768319875002, + 0.002776660257950425, + -0.012459435500204563, + -0.02770288474857807, + 0.007332539651542902, + -0.03466291353106499, + -0.017743177711963654, + -0.00647478923201561, + 0.008440262638032436, + 0.005548418965190649, + 0.005190614610910416, + -0.05615078657865524, + -0.002107615116983652, + 0.012753522023558617, + -0.01869405433535576, + 0.013537750579416752, + 0.000863264431245625, + 0.00847457256168127, + -0.014841531403362751, + 0.0104498490691185, + 0.021174179390072823, + 0.017194217070937157, + -0.010577286593616009, + -0.024232670664787292, + 0.004989656154066324, + -0.011390924453735352, + 0.003877031384035945, + 0.003832918591797352, + 0.0015586548252031207, + -0.007749161217361689, + 0.013724004849791527, + 0.01218495611101389, + 0.015949254855513573, + -0.01323386188596487, + 0.018899915739893913, + -0.020389949902892113, + -0.02362489327788353, + 0.020782064646482468, + -0.011038021184504032, + -0.0005063790013082325, + 0.00617580208927393, + 0.020017441362142563, + -0.0035045226104557514, + 0.020840881392359734, + 0.006146393716335297, + -0.006871805526316166, + -0.0035363819915801287, + -0.01934104412794113, + -0.019086169078946114, + 0.01515522226691246, + -0.008190290071070194, + 0.009204885922372341, + 0.03203574940562248, + 0.005092585925012827, + -0.014576854184269905, + 0.0028354774694889784, + -0.03440804034471512, + -0.004864669404923916, + -0.001454499433748424, + -0.008430460467934608, + 0.03052610717713833, + 0.00021137417934369296, + 0.01265549287199974, + -0.008646123111248016, + -0.010773343965411186, + 0.0007088693673722446, + -0.0278009120374918, + 0.007587414234876633, + -0.012537858448922634, + -0.07269801199436188, + -0.03817233815789223, + -0.021566294133663177, + -0.008861785754561424, + -0.008920603431761265, + 0.011508557945489883, + 0.0024862505961209536, + 0.02329159714281559, + 0.006783579476177692, + 0.004602442961186171, + 0.007695245556533337, + 0.030094781890511513, + 0.029545821249485016, + -0.00022485310910269618, + -0.0009974411223083735, + -0.0028109701815992594, + -0.008994124829769135, + 0.0005370129365473986, + -0.023193567991256714, + 0.00016848667291924357, + 0.008268713019788265, + 0.03101625107228756, + -0.02825184352695942, + 0.005107290577143431, + 0.017900023609399796, + -0.03523148223757744, + -0.006415972486138344, + -0.005582729354500771, + -0.01802746020257473, + -0.018164699897170067, + -0.010979203507304192, + -0.01896853558719158, + -0.0018355856882408261, + -0.003394240513443947, + 0.00927350576967001, + -0.002144375815987587, + 0.0007676865207031369, + -0.03127112612128258, + -0.030094781890511513, + 0.013596567325294018, + 0.012684901244938374, + -0.004974951967597008, + -0.02205643616616726, + 0.001774317817762494, + -0.013047607615590096, + -0.02052718959748745, + -0.00570036331191659, + 0.0012547661317512393, + -0.0016542327357456088, + 0.02362489327788353, + -0.006107182241976261, + 0.008170684799551964, + 0.029016466811299324, + -0.002123544691130519, + 0.006347352173179388, + 0.011714418418705463, + -0.0347021259367466, + -0.06987479329109192, + -0.019350847229361534, + 0.005450390744954348, + -0.003401592606678605, + 0.008930405601859093, + -0.022389734163880348, + -0.019978230819106102, + -0.005445489194244146, + -0.013243664987385273, + 0.004046130925416946, + 0.010890978388488293, + 0.0036466640885919333, + -0.004952895455062389, + 0.0023171512875705957, + -0.02787933498620987, + 0.009533282369375229, + 0.018880309537053108, + 0.01226337905973196, + 0.018164699897170067, + -0.012988789938390255, + 0.028526324778795242, + 0.02489926666021347, + -0.01784120686352253, + -0.017233429476618767, + 0.001104659866541624, + -0.0013001044280827045, + 0.02395819127559662, + -0.0005311925197020173, + -0.010704724118113518, + 0.00015646284737158567, + -0.0035290298983454704, + 0.0071854968555271626, + -0.001246801344677806, + 0.003933398053050041, + 0.008670629933476448, + -0.00910685770213604, + -0.0009416873217560351, + -0.017929432913661003, + 0.009597000665962696, + 0.027604855597019196, + -0.008832377381622791, + -0.009082349948585033, + -0.013929865323007107, + -0.011508557945489883, + -0.019546903669834137, + -0.0012014631647616625, + 0.027781307697296143, + 0.004440695978701115, + -0.014665079303085804, + 0.0028183225076645613, + 0.008695137687027454, + 0.0046808659099042416, + 0.0222132820636034, + -0.0046343025751411915, + -0.0010476807365193963, + 0.032898399978876114, + -0.037309687584638596, + 0.0179196298122406, + 0.008170684799551964, + 0.017703967168927193, + 0.0033280712086707354, + 0.00697963684797287, + 0.0029163509607315063, + -0.019311634823679924, + 0.0207232479006052, + 0.0006635311292484403, + -0.03474133834242821, + -0.013263270258903503, + 0.0046343025751411915, + 6.406322791008279e-5, + -0.017978446558117867, + -0.0005118931294418871, + 0.002928604604676366, + 0.010969401337206364, + -0.00824910681694746, + 0.021742744371294975, + -0.007430568337440491, + -0.003977510612457991, + 0.028938043862581253, + -0.016409989446401596, + 0.001678739907220006, + 0.022154465317726135, + -0.0036613685078918934, + 0.03429040685296059, + -0.02027231641113758, + 0.0013895555166527629, + 0.00745507562533021, + 0.032231803983449936, + -0.0028844918124377728, + -0.01635117083787918, + 0.016782497987151146, + 0.040858324617147446, + 0.014341585338115692, + 0.0045068650506436825, + -0.000672721303999424, + -0.005710166413336992, + 0.004842613358050585, + 0.00369077711366117, + -0.004492160864174366, + -0.012920170091092587, + -0.005416080355644226, + 0.002610011724755168, + 0.0013711751671507955, + -0.014841531403362751, + -0.0032913105096668005, + -0.00933232344686985, + 0.034545280039310455, + 0.018458787351846695, + 0.01052827201783657, + 0.03393750265240669, + 0.027153924107551575, + 0.0056905606761574745, + 0.001661584828980267, + 0.015194433741271496, + -0.015468914061784744, + -0.0010948569979518652, + 0.0038917355705052614, + 0.020056653767824173, + -0.005793490447103977, + -0.0004435794544406235, + -0.012322195805609226, + 0.022350521758198738, + -0.0011934982612729073, + -0.002823223825544119, + -0.018086278811097145, + 0.021213389933109283, + 0.0008314051083289087, + 0.014812122099101543, + -0.04191703349351883, + 0.009508774615824223, + 0.008116768673062325, + 0.0023220526054501534, + -0.012116335332393646, + 0.003886834252625704, + -0.007312933914363384, + 0.0006880383007228374, + -0.00933232344686985, + -0.018282335251569748, + -0.008361839689314365, + -0.027722489088773727, + -0.008533390238881111, + 0.003112408332526684, + -0.006014055106788874, + -0.005072980187833309, + 0.013537750579416752, + 0.011665403842926025, + -0.012626084499061108, + -0.018801886588335037, + 0.016213931143283844, + 0.024507151916623116, + -0.009445056319236755, + 0.0017596135148778558, + 0.0010519694769755006, + -0.0015218941261991858, + 0.0031075067818164825, + -0.014194542542099953, + -0.02027231641113758, + 0.00422748364508152, + -0.01952729932963848, + 0.0032913105096668005, + 0.006705156527459621, + -0.007636428344994783, + 0.02164471708238125, + 0.004810753744095564, + 0.013263270258903503, + -0.015772802755236626, + 0.015390491113066673, + -0.013694596476852894, + 0.01220456138253212, + 0.0026149130426347256, + -0.012439830228686333, + 0.008685334585607052, + 0.014420008286833763, + -0.01108703576028347, + -0.0071609895676374435, + -0.005357263144105673, + -0.011096837930381298, + 0.014596459455788136, + -0.020389949902892113, + -0.00802364107221365, + -0.02511492930352688, + 0.007445272523909807, + -0.0051808119751513, + 0.0025242366828024387, + 0.004869570955634117, + 0.030055571347475052, + -0.026957867667078972, + 0.0050778817385435104, + -0.034055136144161224, + 0.004389230627566576, + 0.008141275495290756, + 0.00502886762842536, + 0.024624785408377647, + -0.01877247728407383, + 0.0021958407014608383, + -0.011528164148330688, + -0.023722922429442406, + -0.00014957021630834788, + -0.008464770391583443, + 0.03601571172475815, + -0.0003268641303293407, + -0.021742744371294975, + -0.007744260132312775, + 0.0010115327313542366, + 0.01433178223669529, + -0.017458895221352577, + -0.011449741199612617, + -0.0038427214603871107, + 0.004744584672152996, + 0.003198183374479413, + -0.004808302968740463, + 0.016184523701667786, + 1.9026548443434876e-6, + -0.003585396334528923, + -0.0124104218557477, + -0.003734889905899763, + -0.008195191621780396, + -0.007724654395133257, + 0.00430100504308939, + -0.004511766601353884, + 0.0009324971470050514, + 0.0037152841687202454, + 0.028585141524672508, + 0.0045068650506436825, + -0.009915593080222607, + -0.0032864089589565992, + -0.015145420096814632, + -0.007298229727894068, + 0.010636103339493275, + -0.015174828469753265, + -0.0005556996911764145, + 0.003114858875051141, + -0.019497890025377274, + -0.005528813228011131, + 0.013253467157483101, + -0.009234294295310974, + -0.0009631310822442174, + 0.028859620913863182, + -0.0028991959989070892, + -0.02131141908466816, + 0.008312826044857502, + -0.01847839169204235, + 0.01243002712726593, + -0.033388543874025345, + 0.0030364361591637135, + -0.001379752648063004, + 0.003129563294351101, + 0.0324866808950901, + -0.005548418965190649, + 0.02138984203338623, + 0.022232888266444206, + -0.026330484077334404, + -0.016527622938156128, + -0.03729008138179779, + 0.008969617076218128, + 0.007758964318782091, + 0.006886509712785482, + -0.03513345122337341, + 0.014694487676024437, + -0.01697855442762375, + -0.009562690742313862, + -0.0008779687341302633, + -0.014086710289120674, + 0.008464770391583443, + 0.027389192953705788, + 0.0118516581133008, + -0.0017387823900207877, + 0.008616714738309383, + 0.009165674448013306, + -0.016900131478905678, + 0.01873326674103737, + -0.017409879714250565, + 0.0001553906622575596, + 0.01732165552675724, + -0.003979961387813091, + -0.003558438504114747, + -0.019360650330781937, + 0.012773127295076847, + 0.00462695024907589, + -0.014047499746084213, + -0.00643067667260766, + -0.014576854184269905, + 0.011263486929237843, + 0.009739141911268234, + 0.008116768673062325, + 0.024624785408377647, + 0.007582512684166431, + -0.003575593465939164, + -0.0038745806086808443, + -0.002933506155386567, + -0.01895873248577118, + 0.023644499480724335, + 0.020370343700051308, + -0.043093375861644745, + -0.01899794302880764, + -0.007881499826908112, + -0.0019054310396313667, + 0.011900672689080238, + 0.0030903518199920654, + 0.0003749594325199723, + -0.017115794122219086, + -0.022311311215162277, + -0.0017289795214310288, + 0.007709949743002653, + 0.0021382488775998354, + 0.0036172554828226566, + 0.009949903935194016, + 0.009435253217816353, + -0.026702992618083954, + 0.0029139004182070494, + -0.027389192953705788, + -0.014116119593381882, + -0.009783254936337471, + -0.017262836918234825, + 0.005156304687261581, + -0.022076042369008064, + 0.002123544691130519, + 0.018645040690898895, + 0.003296211827546358, + 0.007430568337440491, + 0.012694704346358776, + -0.00925390049815178, + 0.002012037206441164, + 0.004271596670150757, + 0.03525108844041824, + 0.015204236842691898, + 0.04027014970779419, + -0.014008288271725178, + 0.010204778052866459, + -0.012714310549199581, + 0.015684576705098152, + 0.022487761452794075, + -0.0004065123794134706, + 0.0009539408492855728, + 0.015606153756380081, + 0.0034310012124478817, + 0.01397887896746397, + -0.008136373944580555, + -0.0023441091179847717, + -0.013292678631842136, + 0.02795775793492794, + 0.0017559374682605267, + -0.007200201041996479, + 0.006224816665053368, + 0.013135833665728569, + -0.0179196298122406, + 0.003323169657960534, + -0.005969942081719637, + -0.026291271671652794, + -5.4758165788371116e-5, + 0.003489818423986435, + 0.0036981292068958282, + -0.009214689023792744, + -0.0158610288053751, + -0.014821925200521946, + -1.4895753338350914e-5, + -0.007484483998268843, + -0.004364723805338144, + 0.0022754890378564596, + 0.003102605463936925, + 0.004744584672152996, + -0.009195082820951939, + -0.003781453473493457, + 0.004205427132546902, + -0.013743611052632332, + -0.003031534608453512, + -0.035407934337854385, + 0.005582729354500771, + 0.0008718419121578336, + 0.002803618088364601, + -0.004188272170722485, + 0.012792733497917652, + -0.008190290071070194, + 0.007312933914363384, + 0.017890220507979393, + 0.002705589635297656, + -0.007910908199846745, + -0.016057085245847702, + 0.007837386801838875, + 0.02217407152056694, + -0.00062860845355317, + 0.024663997814059258, + 0.008523587137460709, + -0.010096946731209755, + -0.001525570172816515, + -0.004898979794234037, + 0.01183205284178257, + 0.022723030298948288, + -0.012900564819574356, + -0.004898979794234037, + -0.009812663309276104, + -0.014635670930147171, + 0.02638930082321167, + 0.02019389346241951, + -0.011881067417562008, + 0.0007707499316893518, + 0.0041711172088980675, + 8.968085603555664e-5, + -0.0057444763369858265, + 0.011175260879099369, + -0.0023967993911355734, + -0.005175910424441099, + -0.006670846603810787, + -0.0012596675660461187, + 0.006067970767617226, + -0.0421915128827095, + 0.024095430970191956, + -0.007719752844423056, + -0.023683711886405945, + -0.006479690782725811, + 0.004193173721432686, + 0.03366302326321602, + 0.026232454925775528, + -0.0029310553800314665, + 0.012096730060875416, + 0.020586008206009865, + 0.01131250150501728, + -0.013135833665728569, + -0.02127220667898655, + 0.010959598235785961, + -0.009979312308132648, + -0.0019311635987833142, + 0.012479041703045368, + 0.0395643450319767, + 0.020135074853897095, + -0.0008136374526657164, + -0.004335314966738224, + -0.022742636501789093, + 0.010538075119256973, + 0.01705697737634182, + -0.013635778799653053, + -0.0006647564587183297, + 0.016900131478905678, + -0.007170792669057846, + 0.03862326964735985, + -0.01461606565862894, + 0.004754387307912111, + 0.0025708002503961325, + -0.01294957846403122, + 0.0180960800498724, + -0.003680974245071411, + 0.0010378778679296374, + 0.007734457030892372, + 0.007401159964501858, + -0.012753522023558617, + -0.0006279957597143948, + -0.003156521124765277, + 0.002644321648404002, + -0.008067754097282887, + -0.0064649865962564945, + 0.0073717511259019375, + 0.022781848907470703, + 0.033643417060375214, + -0.004901430103927851, + -0.009489169344305992, + -0.00858240481466055, + 0.007459977176040411, + -0.011812446638941765, + -0.010851766914129257, + -0.005072980187833309, + -0.02833026647567749, + -0.016370777040719986, + -0.004808302968740463, + 0.012812338769435883, + 0.004266695119440556, + -0.005764082074165344, + -0.006925721187144518, + 0.010096946731209755, + 0.0011512234341353178, + -0.001349118654616177, + -0.0019666990265250206, + -0.0006812988431192935, + 0.0022926439996808767, + -0.0028991959989070892, + -0.0339767150580883, + 0.005607236176729202, + 0.00290164677426219, + 0.012537858448922634, + 0.02205643616616726, + -0.017939234152436256, + -0.005710166413336992, + 0.02027231641113758, + -0.005190614610910416, + 0.011792841367423534, + -0.0214682649821043, + -0.008503981865942478, + 0.036329399794340134, + -0.02870277687907219, + 0.00817558541893959, + 0.01263588760048151, + -0.0006310591707006097, + 0.0166060458868742, + 0.01690993458032608, + 0.015449308790266514, + 0.005112191662192345, + 0.015312068164348602, + 0.007224708329886198, + 0.0035804947838187218, + 0.003551086178049445, + -0.016733482480049133, + -0.00873434916138649, + -0.004465202800929546, + -0.0074256667867302895, + 0.0028085196390748024, + -0.0263108778744936, + -0.01590023934841156, + 0.01381223089993, + -0.006219915114343166, + -0.004658809397369623, + 0.018860703334212303, + 0.014096513390541077, + -0.016341369599103928, + 0.012508450075984001, + -0.005906223319470882, + -0.004095145035535097, + 0.01974296197295189, + 0.007572710048407316, + 0.004445597529411316, + -7.826971705071628e-5, + -0.01338090468198061, + -0.006337549537420273, + 0.0028428295627236366, + -0.008405952714383602, + -0.017311852425336838, + -0.011714418418705463, + 0.0201546810567379, + 0.006342450622469187, + 0.004065736662596464, + -0.0010023425566032529, + 0.016155114397406578, + -0.009087251499295235, + 0.036780331283807755, + 0.021036939695477486, + 0.011704615317285061, + -6.808392936363816e-5, + -0.023271990939974785, + -0.006538507994264364, + 0.004803401883691549, + -0.02395819127559662, + 0.007072763983160257, + -0.00809716247022152, + 0.0014397951308637857, + -0.004874472506344318, + -0.029663456603884697, + -0.005376868881285191, + 0.01050866674631834, + -0.03076137602329254, + -0.025330591946840286, + 0.0023281793110072613, + 0.006469888146966696, + -0.0018576420843601227, + 0.038348790258169174, + 0.0013135833432897925, + 0.03340815007686615, + -0.00866082776337862, + -0.007401159964501858, + -0.015684576705098152, + 0.026330484077334404, + 0.0010868922108784318, + -0.00947936624288559, + -0.0104498490691185, + -0.02004685066640377, + -0.02552664838731289, + -0.002072079572826624, + 0.006935523822903633, + 0.0029065480921417475, + 0.01162619236856699, + 0.009597000665962696, + -0.011155655607581139, + -0.027153924107551575, + 0.00392849650233984, + -0.008077557198703289, + -0.0037054813001304865, + 0.00934702716767788, + -0.017860811203718185, + -0.004251990932971239, + -0.017674557864665985, + 0.007391356863081455, + 0.010175369679927826, + -0.019095972180366516, + 0.015959057956933975, + 0.006788481026887894, + -0.008121670223772526, + -0.006538507994264364, + 0.007508991286158562, + 0.016027677804231644, + -0.01028320100158453, + 0.004565682262182236, + -0.0070825666189193726, + 0.019840989261865616, + -0.00683259405195713, + -0.01203791331499815, + -0.024801237508654594, + 0.00036515656393021345, + -0.00101949751842767, + -0.0166158489882946, + 0.018086278811097145, + -0.0004987205611541867, + 0.010851766914129257, + 0.009601902216672897, + -0.021036939695477486, + 0.015243448317050934, + -0.0034040433820337057, + 0.023193567991256714, + 0.0007235736702568829, + 0.011665403842926025, + 0.009175477549433708, + -0.0031614224426448345, + -0.019831186160445213, + 0.01102821808308363, + 0.01967434212565422, + 0.0008791940636001527, + -0.021978013217449188, + 0.027153924107551575, + 0.002722744597122073, + 0.0014826826518401504, + 0.014939559623599052, + -0.006661043968051672, + -0.005121994763612747, + 0.019233211874961853, + -0.006710058078169823, + 0.023487653583288193, + 0.002558546606451273, + 0.0031246617436408997, + -0.00011288606765447184, + 0.007582512684166431, + -0.005563123617321253, + 0.005548418965190649, + -0.002477673115208745, + -0.027114711701869965, + -0.010753737762570381, + 0.012439830228686333, + 0.02470320835709572, + -0.015782605856657028, + -0.00011480068496894091, + 0.0024458137340843678, + -0.01947828382253647, + 0.018409771844744682, + -0.016655059531331062, + -0.013773019425570965, + -0.003198183374479413, + 0.01619432494044304, + 0.008626516908407211, + -0.019056761637330055, + 0.018194109201431274, + -0.010312609374523163, + -0.018556814640760422, + -0.0033966912887990475, + -0.0005342559306882322, + 0.0007633977802470326, + 0.020507585257291794, + 0.0354471430182457, + 0.0018306842539459467, + -0.014527839608490467, + 0.013802427798509598, + 0.02489926666021347, + -0.012116335332393646, + 0.003950553014874458, + -0.0025560958310961723, + -0.011537967249751091, + 0.014821925200521946, + -0.02589915692806244, + -0.0018061770824715495, + -0.00992539618164301, + 0.007803076878190041, + 0.023762134835124016, + 0.0031320140697062016, + -0.0131554389372468, + 0.002864886075258255, + 0.009842071682214737, + -0.005175910424441099, + 0.01657663658261299, + 0.01397887896746397, + 0.016929540783166885, + 0.008798067457973957, + 0.01140072662383318, + -0.003972609061747789, + -0.003543734084814787, + 0.008866687305271626, + -0.008655926212668419, + -0.023350413888692856, + 0.0023759682662785053, + 0.016635455191135406, + -0.006288534961640835, + 0.01896853558719158, + 0.006587522570043802, + 0.010312609374523163, + 0.013635778799653053, + 0.0073423427529633045, + -0.0047666411846876144, + 0.0030119288712739944, + 0.010116552002727985, + 0.01724323257803917, + 0.003680974245071411, + 0.0006776227382943034, + -0.007567808497697115, + 0.004972501192241907, + -0.005538616329431534, + -0.014263162389397621, + -0.007842288352549076, + 0.015400294214487076, + -0.005621940363198519, + -0.012331998907029629, + 0.010518469847738743, + 0.0035314804408699274, + -0.010381229221820831, + -0.029349764809012413, + 0.0166060458868742, + 0.0026859838981181383, + -0.006009153556078672, + 0.00562684191390872, + -0.02019389346241951, + 0.009283308871090412, + -0.014812122099101543, + 0.009293111972510815, + -0.0019042056519538164, + -0.0024507150519639254, + 0.005474897567182779, + 0.02023310400545597, + 0.010165566578507423, + 0.016508016735315323, + -0.007842288352549076, + -0.0005023966077715158, + -0.007739358581602573, + 0.013704399578273296, + 0.015390491113066673, + -0.006705156527459621, + -0.0021762349642813206, + 0.007999134249985218, + 0.012008504010736942, + -0.005881716497242451, + 0.0016591341700404882, + -0.0039358483627438545, + 0.005474897567182779, + 0.003989764489233494, + 3.536305302986875e-5, + -0.007107073906809092, + -0.0207232479006052, + 0.02444833517074585, + -0.028938043862581253, + -0.00360255129635334, + -0.00016419791791122407, + -0.03225141018629074, + 0.024252276867628098, + -0.021193785592913628, + -0.008293219842016697, + 0.005131797399371862, + -0.0031589719001203775, + -0.0005572313675656915, + -0.0006476014968939126, + 0.012763324193656445, + 0.013645581901073456, + 0.023977797478437424, + -0.005514109041541815, + -0.007312933914363384, + -0.014547444880008698, + -0.01773337461054325, + 0.04650476947426796, + -0.020801670849323273, + -0.0017755430890247226, + 0.008572601713240147, + -0.012773127295076847, + 0.010822358541190624, + -0.02742840349674225, + 0.014606262557208538, + 0.006710058078169823, + -0.022036829963326454, + 0.0019238113891333342, + -0.02027231641113758, + 0.02242894470691681, + -0.00919998437166214, + -0.010743935592472553, + 0.0012670197756960988, + 0.01065570954233408, + -0.03595689311623573, + 0.008479474112391472, + 0.001345442607998848, + -0.02362489327788353, + -0.00028780585853382945, + 0.015468914061784744, + -0.012145744636654854, + -0.016958948224782944, + 0.028094999492168427, + -0.03052610717713833, + -0.025291379541158676, + -0.0414464958012104, + 0.004700471647083759, + 0.006871805526316166, + -0.0029237032867968082, + 0.01814509555697441, + -8.108420843200292e-6, + 0.027369586750864983, + -0.003867228515446186, + 0.0011542867869138718, + -0.029330158606171608, + 0.010400835424661636, + -0.030663348734378815, + -0.013077015988528728, + -0.011812446638941765, + -0.011920278891921043, + 0.02989872545003891, + 0.011175260879099369, + -0.01881168968975544, + 0.005646447651088238, + 0.028977256268262863, + 0.0188509002327919, + -0.014351388439536095, + -0.0050778817385435104, + 0.022899482399225235, + -0.013135833665728569, + 0.004308357369154692, + -0.032271016389131546, + 0.00993029773235321, + -0.005175910424441099, + -0.004651457536965609, + -0.002374742878600955, + -0.007896204479038715, + 0.019017549231648445, + -0.005974843632429838, + 0.024507151916623116, + -0.0041172015480697155, + -0.012145744636654854, + 0.02795775793492794, + 0.003972609061747789, + -0.015312068164348602, + 0.017292246222496033, + 0.007337441202253103, + 0.02866356447339058, + -0.007337441202253103, + 0.011998701840639114, + -0.000560601067263633, + 0.023644499480724335, + 0.018448984250426292, + 0.007219806779175997, + 0.0002188795042457059, + 0.0004451111308299005, + 0.004391681402921677, + -0.005842505022883415, + -0.004455400165170431, + 7.306194311240688e-5, + 0.0024017009418457747, + -0.017831403762102127, + -0.009714635089039803, + -0.0064894938841462135, + -0.0026418708730489016, + -0.013714201748371124, + 0.00180127564817667, + -0.04172097519040108, + -0.008268713019788265, + 0.013420116156339645, + 0.019007746130228043, + -0.004967599641531706, + 0.02433069981634617, + 0.01528265979140997, + -0.003629509126767516, + 0.010273397900164127, + -0.006009153556078672, + -0.014665079303085804, + 0.004894078243523836, + -0.013214255683124065, + 0.004247089382261038, + 0.029388975352048874, + 0.0033354233019053936, + 0.01022438332438469, + -0.014714093878865242, + 0.0011738925240933895, + 0.024056220427155495, + -0.016360973939299583, + 0.016096297651529312, + 0.015743393450975418, + -0.0214682649821043, + 0.010724329389631748, + -0.027153924107551575, + -0.008950011804699898, + 0.0028869423549622297, + 0.006190506275743246, + -0.022115252912044525, + -0.006146393716335297, + 0.00305114034563303, + -0.025663889944553375, + 0.011204669252038002, + -0.006165999453514814, + 0.025428621098399162, + 0.005680757574737072, + -0.022723030298948288, + 0.009719536639750004, + -0.009616605937480927, + -0.007538399659097195, + -0.021879984065890312, + 0.029173312708735466, + -0.002429884159937501, + -0.008209895342588425, + 0.006156196352094412, + -0.0023012214805930853, + -0.014890545047819614, + -0.024095430970191956, + 0.016968751326203346, + -0.008283417671918869, + 0.008479474112391472, + -0.015812013298273087, + 0.024546362459659576, + 0.00925390049815178, + 0.02299751155078411, + -0.002908998867496848, + 0.006190506275743246, + 0.006690452340990305, + 0.020899698138237, + -0.0015231195138767362, + -0.013037804514169693, + -0.0029849710408598185, + -0.016596242785453796, + 0.007611921057105064, + 0.0012670197756960988, + 0.006690452340990305, + 0.016439396888017654, + 0.00873434916138649, + 0.012253575958311558, + 0.012665295973420143, + -0.010773343965411186, + -0.0007977077621035278, + 0.0025511945132166147, + -0.00808245874941349, + -0.012528056278824806, + 0.012253575958311558, + -0.0010115327313542366, + 0.0179196298122406, + -0.018880309537053108, + 0.03281997889280319, + 0.00617580208927393, + 0.019027352333068848, + -0.025820735841989517, + 0.003808411303907633, + 0.018341151997447014, + 0.01052827201783657, + -0.0032864089589565992, + 0.010469455271959305, + 0.0017694163834676147, + -0.01934104412794113, + -0.004607344511896372, + 0.01086157001554966, + 0.010871372185647488, + -0.0010783146135509014, + -0.002119868528097868, + 0.00440638605505228, + 0.01420434471219778, + -0.03638821840286255, + -0.014753305353224277, + -0.010087143629789352, + 0.030545713379979134, + -0.0002273038262501359, + -0.004394132178276777, + -0.007376652676612139, + -0.018870506435632706, + 0.03015359863638878, + -0.02982030250132084, + -0.0055092074908316135, + 0.022683819755911827, + 0.027683278545737267, + -0.010616498067975044, + -0.014008288271725178, + -0.016213931143283844, + 0.023154357448220253, + -0.018125489354133606, + 0.018262729048728943, + 0.0030633939895778894, + -0.0005109740886837244, + 0.011655601672828197, + -0.005043571814894676, + 0.010322412475943565, + 0.033388543874025345, + 0.02004685066640377, + -0.01123407855629921, + 0.002313475124537945, + -0.00775406276807189, + -0.011047824285924435, + 0.007562906946986914, + 0.007518793921917677, + -0.0036344106774777174, + -0.015988465398550034, + 0.00066598184639588, + 0.011341909877955914, + -0.008440262638032436, + -0.014292570762336254, + -0.020095864310860634, + -0.022036829963326454, + 0.012763324193656445, + 0.002717843046411872, + 0.006817889399826527, + 0.01492975652217865, + -0.01612570509314537, + -0.006371859461069107, + -0.0009122787159867585, + 0.006881608162075281, + 0.014174936339259148, + -0.009587197564542294, + 0.028055787086486816, + 0.014919954352080822, + 0.023017115890979767, + 0.006920819636434317, + -0.01375341322273016, + 0.008425558917224407, + -0.023056328296661377, + 0.008802969008684158, + 0.004798500332981348, + -0.019576312974095345, + -0.0028183225076645613, + -0.013537750579416752, + 0.004573034588247538, + 0.0010623850394040346, + 6.548004603246227e-5, + 0.005881716497242451, + 0.015116010792553425, + -0.07603098452091217, + 0.005249431822448969, + -0.019546903669834137, + 0.0030437882523983717, + -0.0263108778744936, + 0.0153022650629282, + 0.012341802008450031, + 0.0011665404308587313, + 0.009435253217816353, + -0.016439396888017654, + 0.010714526288211346, + -0.019095972180366516, + 0.005259234923869371, + -0.009729338809847832, + 0.0019189099548384547, + 0.0075040897354483604, + 0.017125597223639488, + 0.01683151163160801, + -0.021291812881827354, + 0.01431217696517706, + -0.02395819127559662, + 0.0037471435498446226, + 0.002935956697911024, + -0.003612354164943099, + 0.004798500332981348, + -0.00992539618164301, + -0.0045068650506436825, + -0.019978230819106102, + 0.005857209209352732, + -0.02411503717303276, + -0.017458895221352577, + -0.012371210381388664, + 0.0038182141724973917, + 0.018841098994016647, + -0.01263588760048151, + -0.004700471647083759, + 0.007940317504107952, + 0.005112191662192345, + -0.010047932155430317, + 0.0058523076586425304, + 0.010371426120400429, + 0.0026688287034630775, + 0.0023526865988969803, + -0.008499080315232277, + -0.01664525829255581, + 0.008425558917224407, + -0.01777258701622486, + 0.0006708832806907594, + 0.0006941650644876063, + -0.006072872318327427, + -0.008464770391583443, + -0.019615523517131805, + 0.011420332826673985, + 0.0025781523436307907, + -0.036525458097457886, + -0.013175045140087605, + 0.02064482495188713, + 0.01491015125066042, + 0.012116335332393646, + -0.004908782429993153, + 0.007729555480182171, + 0.002769308164715767, + 0.019135184586048126, + 0.019350847229361534, + 0.003779002698138356, + 0.0016321763396263123, + -0.012449633330106735, + -0.0016885427758097649, + 0.06187565624713898, + -0.012537858448922634, + 0.00647478923201561, + -0.006254225037992001, + -0.01564536616206169, + 0.016586439684033394, + -0.002568349475041032, + 0.0017755430890247226, + 0.020213497802615166, + 0.004416188690811396, + -0.014174936339259148, + -0.0011941109551116824, + -0.00697963684797287, + 0.016939343884587288, + -0.0032398453913629055, + 0.0022693623322993517, + -0.015851225703954697, + -0.019497890025377274, + 0.013518144376575947, + 0.013792624697089195, + -0.014596459455788136, + -0.011263486929237843, + 0.029271341860294342, + 0.006930622272193432, + -0.012851550243794918, + -0.019203804433345795, + 0.020174287259578705, + -0.00033513529342599213, + -0.020370343700051308, + 0.02172314003109932, + -0.0008669404778629541, + -0.008185388520359993, + 0.0194096639752388, + -0.04340706765651703, + 0.021193785592913628, + -0.00735214538872242, + -0.008484375663101673, + -0.018615633249282837, + -0.022566184401512146, + -0.017007963731884956, + 0.02717353031039238, + 0.015429702587425709, + -0.012331998907029629, + 0.00045185061753727496, + 0.004494611639529467, + 0.023860162124037743, + 0.006783579476177692, + 0.017635345458984375, + -0.005597433540970087, + 0.009788156487047672, + 0.005989547818899155, + 0.009959706105291843, + 0.01168501004576683, + -0.011224275454878807, + -0.015008179470896721, + -0.01147914957255125, + 0.004173567984253168, + -0.008445164188742638, + 0.007925612851977348, + 0.0021872632205486298, + 0.003779002698138356, + -0.009832269512116909, + -0.002837928244844079, + 0.028996862471103668, + 0.006185605190694332, + -0.017792191356420517, + 0.033721841871738434, + 0.01131250150501728, + -0.016527622938156128, + 0.009396041743457317, + -0.0026418708730489016, + -0.02299751155078411, + 0.011635995469987392, + -0.008396150544285774, + -0.015498322434723377, + -0.011018414981663227, + -0.02486005425453186, + -0.005489601753652096, + -0.023801345378160477, + 0.014096513390541077, + 0.007925612851977348, + 0.03131033852696419, + -0.003877031384035945, + 0.016037480905652046, + -0.015125813893973827, + -0.003004576778039336, + 0.016694271937012672, + -0.009969509206712246, + 0.025624677538871765, + 0.01067531481385231, + -0.0013135833432897925, + -0.004614696837961674, + -0.004913683980703354, + -0.0021382488775998354, + 0.020331133157014847, + 0.02821263298392296, + -0.0051268963143229485, + -0.007592315785586834, + -0.0019666990265250206, + -9.243791282642633e-5, + 0.03468251973390579, + -0.009229393675923347, + -0.0004074313910678029, + 0.011488952673971653, + -0.003553536953404546, + 0.008317727595567703, + 0.0011818574275821447, + 0.014939559623599052, + -0.020762458443641663, + 0.014243556186556816, + -0.018125489354133606, + -0.004046130925416946, + 0.015566942282021046, + -0.014351388439536095, + 0.014606262557208538, + -0.008494178764522076, + -0.003296211827546358, + 0.02127220667898655, + 0.019939018413424492, + 0.01624334044754505, + -0.00046869926154613495, + 0.01336129941046238, + 0.008459868840873241, + -0.011439938098192215, + -0.02833026647567749, + 0.01690993458032608, + -0.03548635542392731, + -0.0076511325314641, + -0.013939667493104935, + 0.012224167585372925, + -0.0017179513815790415, + 0.010783147066831589, + -0.006288534961640835, + 0.002393123460933566, + -0.00810206402093172, + -3.013135255969246e-6, + -0.017331456765532494, + -0.011939884163439274, + 0.021331025287508965, + 0.007719752844423056, + 0.020762458443641663, + 0.0035559877287596464, + -0.03460409864783287, + -0.01218495611101389, + 0.020664431154727936, + -0.013684793375432491, + 0.02131141908466816, + -0.00991069246083498, + 0.004653908312320709, + -0.0002299077168572694, + -0.011322303675115108, + -0.0029114496428519487, + -0.01664525829255581, + -0.01850780099630356, + 0.016292354092001915, + -0.010871372185647488, + 0.005724870599806309, + 0.013998485170304775, + 0.012704507447779179, + 0.0018870506901293993, + -0.012498646974563599, + 0.0010170467430725694, + 0.029134102165699005, + 0.021448658779263496, + -0.00172652886249125, + 0.003470212686806917, + -0.0004144771955907345, + -0.013351496309041977, + 0.011283092200756073, + 0.0016468806425109506, + 0.0031344646122306585, + -0.005190614610910416, + -0.010626301169395447, + 0.005087684839963913, + -0.0011659277370199561, + 0.006249323487281799, + 0.006798283662647009, + 0.005016613751649857, + -0.03979961574077606, + -0.004815655294805765, + 0.012469238601624966, + 0.026291271671652794, + -0.03336893767118454, + 0.0255658607929945, + 0.0035388327669352293, + 0.026134425774216652, + 0.013880850747227669, + -0.018007855862379074, + -0.011773236095905304, + 0.008856884203851223, + -0.0044235410168766975, + 0.02601679228246212, + -0.018801886588335037, + -0.011547769419848919, + -0.001220456208102405, + -0.011047824285924435, + -0.026820626109838486, + -0.035035423934459686, + -0.012675099074840546, + -0.019017549231648445, + -0.007548202760517597, + 0.01788041740655899, + 0.006631635129451752, + -0.01131250150501728, + 0.016331566497683525, + 0.013184847310185432, + -0.016841314733028412, + 0.02515413984656334, + 0.01286135334521532, + -0.020703641697764397, + -0.0019274874357506633, + 0.0019801778253167868, + -0.01590023934841156, + -0.014272965490818024, + 0.012822141870856285, + 0.003717734944075346, + -0.00459999218583107, + 0.012753522023558617, + -0.0350942425429821, + 0.013625976629555225, + 0.016547229140996933, + -0.010371426120400429, + -0.01358676515519619, + 0.0021799111273139715, + 0.002617363817989826, + -0.0015488519566133618, + -0.029996752738952637, + -0.01528265979140997, + 0.01564536616206169, + -0.03587846830487251, + -0.005244530271738768, + 0.0010084692621603608, + -0.00738155422732234, + -0.011077232658863068, + 0.003850073553621769, + 0.00912646297365427, + -0.003926045726984739, + 0.017341259866952896, + -0.01627274788916111, + -0.022409338504076004, + 0.004281399305909872, + 0.020174287259578705, + 0.00683259405195713, + 0.011988898739218712, + 0.019723355770111084, + 0.002487475983798504, + 0.00017645148909650743, + -0.0007615597569383681, + 0.0005707102827727795, + -0.017527515068650246, + 0.009886184707283974, + -0.011734024621546268, + -0.012361407279968262, + -0.010194974951446056, + 0.004293653182685375, + -0.014449416659772396, + 0.01762554422020912, + 0.011057626456022263, + -0.011528164148330688, + 0.02478163130581379, + 0.010920386761426926, + 0.0022816157434135675, + -0.0038966371212154627, + 0.009528380818665028, + 0.02668338641524315, + 0.011341909877955914, + -0.006538507994264364, + 0.023056328296661377, + 0.01162619236856699, + 0.022683819755911827, + 0.0021897139959037304, + 0.013331890106201172, + -0.0018368109595030546, + -0.006945326924324036, + -0.0024482645094394684, + -0.02027231641113758, + -0.019919412210583687, + 0.006313042249530554, + 0.004487259313464165, + 0.02258579060435295, + 0.011812446638941765, + -0.004607344511896372, + -0.00912646297365427, + 0.0037691998295485973, + 0.02048797905445099, + -0.0008081233245320618, + -0.012929973192512989, + 0.005965040531009436, + -0.0028452803380787373, + -0.002882041037082672, + -0.034133560955524445, + -0.02329159714281559, + -0.025585466995835304, + -0.006396366748958826, + 0.0032226904295384884, + -0.013557355850934982, + -0.022605396807193756, + 0.01162619236856699, + 0.0076511325314641, + -0.01596885919570923, + -0.010498863644897938, + -0.026997078210115433, + 0.00562684191390872, + -0.005269037559628487, + 0.002953111659735441, + -0.00023542183043900877, + -0.02870277687907219, + -0.009361731819808483, + -0.014812122099101543, + -0.0171648096293211, + 0.001954445382580161, + 0.011939884163439274, + 0.017635345458984375, + 0.03679993748664856, + 0.024134643375873566, + -0.019840989261865616, + 0.0009931522654369473, + -0.027781307697296143, + 0.0011659277370199561, + 0.021174179390072823, + -0.003570691915228963, + -0.012400618754327297, + 0.00868043303489685, + -0.015086602419614792, + -0.003894186345860362, + 0.029016466811299324, + -0.007709949743002653, + 0.019988032057881355, + -0.0011971743078902364, + -0.0014667530776932836, + -0.018723463639616966, + -0.011792841367423534, + 0.015331674367189407, + -0.004166215658187866, + -0.026938261464238167, + 0.00023113307543098927, + 0.024722814559936523, + -0.017115794122219086, + 0.00035014591412618756, + -0.016841314733028412, + -0.002473996952176094, + -0.013449524529278278, + -0.01235160417854786, + -0.0007094820612110198, + -0.0016383030451834202, + -0.009023533202707767, + -0.003992214798927307, + 0.027114711701869965, + -0.002103938953951001, + -0.0065728179179131985, + -0.0012854001251980662, + 0.004894078243523836, + -0.025663889944553375, + -0.01343972235918045, + -0.016596242785453796, + 0.00477644382044673, + -0.017488302662968636, + -0.011616390198469162, + -0.02713431790471077, + -0.009175477549433708, + -0.02486005425453186, + 0.0026296174619346857, + 0.01205751858651638, + -0.014018090441823006, + -0.022526973858475685, + 0.016860920935869217, + 0.012959381565451622, + 0.025840340182185173, + 0.0036001005209982395, + 0.00787659827619791, + -0.01899794302880764, + -0.0009521028259769082, + 0.014292570762336254, + -9.243791282642633e-5, + -0.02523256279528141, + -0.017811797559261322, + -0.016694271937012672, + -0.0066218324936926365, + -0.0006598550826311111, + -0.0089598149061203, + 0.02395819127559662, + -0.0072933281771838665, + -0.006200309377163649, + 0.011283092200756073, + -0.0032471974845975637, + -0.005808195099234581, + -0.01720402017235756, + -0.0278009120374918, + -0.02205643616616726, + -0.043956026434898376, + -0.010322412475943565, + -0.005220023449510336, + -0.0011034344788640738, + 0.0019617974758148193, + -0.006744368001818657, + -0.0005446714349091053, + -0.00810206402093172, + 0.015243448317050934, + 0.0032864089589565992, + 0.0014569502091035247, + -0.01476310845464468, + -0.016674665734171867, + -0.013988682068884373, + -0.014919954352080822, + 0.003575593465939164, + 0.011361515149474144, + 0.009724438190460205, + -0.031898509711027145, + -0.017439289018511772, + 0.006665945053100586, + -0.013067212887108326, + 0.013567158952355385, + -0.019831186160445213, + -0.010400835424661636, + -0.014802319929003716, + -0.0012320970417931676, + 0.005538616329431534, + -0.019429270178079605, + -0.01564536616206169, + -0.011792841367423534, + -0.007656034082174301, + 0.010067537426948547, + -0.0004901430220343173, + 0.012890761718153954, + 0.006347352173179388, + 0.02978109009563923, + -0.005278840661048889, + -0.008695137687027454, + 0.032271016389131546, + -0.0025708002503961325, + 0.003085450502112508, + -0.004622048698365688, + 0.014645474031567574, + 0.015596351586282253, + 0.014459219761192799, + 5.100551061332226e-5, + 0.03262392058968544, + 0.015017982572317123, + 0.01627274788916111, + -0.01777258701622486, + -0.007964824326336384, + 0.029957542195916176, + 0.005749377887696028, + 0.004082891624420881, + 0.020311526954174042, + 0.006337549537420273, + -0.012047715485095978, + 0.015812013298273087, + 0.005817997734993696, + -0.008141275495290756, + 0.004705373197793961, + -0.003004576778039336, + -0.007107073906809092, + 0.0037324391305446625, + 0.0103616239503026, + -0.019017549231648445, + -0.000822214933577925, + -0.023899374529719353, + -0.01620412804186344, + -0.004720077384263277, + 0.013625976629555225, + 0.021821167320013046, + -0.015184631571173668, + 0.008856884203851223, + -0.008278516121208668, + -0.008053050376474857, + 0.003859876422211528, + 0.019831186160445213, + -0.00109424430411309, + 0.009606803767383099, + -0.00515140313655138, + 0.008562798611819744, + -0.0007560456288047135, + -0.006558113731443882, + -0.0015194433508440852, + 0.0017816699109971523, + 0.023389626294374466, + -0.017380472272634506, + 0.002568349475041032, + 0.01873326674103737, + -0.019605720415711403, + 0.010704724118113518, + -0.0031712253112345934, + -0.0007738132844679058, + -0.009788156487047672, + 0.009592099115252495, + 0.002933506155386567, + -0.005112191662192345, + 0.0046563586220145226, + 0.0012523154728114605, + -0.010665512643754482, + 0.004754387307912111, + 0.001053807558491826, + 0.014655276201665401, + 0.007121778093278408, + 0.0007664611912332475, + 0.018645040690898895, + 0.0020855586044490337, + -0.0074256667867302895, + 0.018674449995160103, + 0.004102497361600399, + 0.014576854184269905, + -0.016057085245847702, + -0.012684901244938374, + 0.0031001546885818243, + -0.011871264316141605, + 0.009170575998723507, + -0.006455183960497379, + -0.004854866769164801, + 0.0025511945132166147, + -0.016115901991724968, + -0.0018490646034479141, + -0.008910800330340862, + 0.002595307305455208, + -0.0029139004182070494, + 0.005759180523455143 + ], + "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865": [ + -0.009439186193048954, + -0.007352535147219896, + -0.009663076139986515, + 0.019487353041768074, + 0.024323368445038795, + -0.0026620477437973022, + -0.023983055725693703, + 0.029410140588879585, + 0.0050599053502082825, + 0.05212150514125824, + -0.02770858071744442, + 0.005892775021493435, + -0.010021300055086613, + 0.011687038466334343, + -0.005373350810259581, + 0.010298922657966614, + -0.036216385662555695, + -0.030717656016349792, + 0.00014678762818221003, + -0.04510032758116722, + 0.01687232218682766, + -0.025612972676753998, + -0.042879339307546616, + 0.054736535996198654, + 0.03598354011774063, + 0.015233449637889862, + 0.03311775252223015, + -0.008274960331618786, + 0.03381628915667534, + -0.010863124392926693, + 0.013460244052112103, + 0.01946944184601307, + -0.0014149824855849147, + 0.008449594490230083, + -0.001908659003674984, + 0.0030180320609360933, + -0.013227399438619614, + -0.009179474785923958, + 0.030986323952674866, + 0.008306304924190044, + -0.031022146344184875, + -0.014758803881704807, + 0.030395256355404854, + -0.022048650309443474, + 0.002612791955471039, + 0.028048891574144363, + 0.0029351930133998394, + 0.027475735172629356, + 0.029660897329449654, + 0.026848843321204185, + -0.005449473392218351, + -0.04162555932998657, + 0.04492121562361717, + -0.003745673457160592, + -0.022281495854258537, + -0.04080164432525635, + -0.012287062592804432, + 0.03055645525455475, + 0.00466585997492075, + -0.02280091866850853, + -0.01020936667919159, + 0.01134672574698925, + -0.01306619867682457, + -0.03847319260239601, + -0.0006117784068919718, + -0.00975263211876154, + 0.01585138589143753, + 0.0028702649287879467, + -0.01246617455035448, + 0.014033401384949684, + -0.00872721802443266, + -0.023212876170873642, + 0.0027023477014154196, + -0.033547621220350266, + 0.042700231075286865, + -0.014758803881704807, + -0.012564686127007008, + -0.03145201504230499, + -0.022460607811808586, + -0.03426406905055046, + 0.013764734379947186, + 0.007048045285046101, + 0.013925934210419655, + -0.03317148610949516, + 0.05097518861293793, + -0.012188551016151905, + -0.017588768154382706, + 0.004674815572798252, + -0.04198378324508667, + -0.007670458406209946, + 0.016317075118422508, + -0.007737625390291214, + 0.0016299164853990078, + 0.028389204293489456, + -0.026293598115444183, + 0.003967324271798134, + -0.00463003758341074, + 0.012197506614029408, + -0.030735567212104797, + -0.03875977173447609, + -0.01844850555062294, + -0.00155827181879431, + -0.011301948688924313, + 0.00810480397194624, + 0.0062957764603197575, + 0.003154604695737362, + 0.005382306408137083, + 0.004401669837534428, + -0.017409658059477806, + 0.006900278385728598, + -0.027690669521689415, + -0.04237782955169678, + 0.016514098271727562, + -0.027690669521689415, + 0.0017620113212615252, + -0.029732542112469673, + 0.015412561595439911, + 0.031756505370140076, + 0.0023889022413641214, + -0.030950501561164856, + 0.06100544333457947, + -0.012752752751111984, + 0.04499286040663719, + 0.00047520571388304234, + 0.005861430428922176, + -0.014893137849867344, + 0.009358586743474007, + 0.054521601647138596, + 0.0881946012377739, + 0.03736270219087601, + -0.020364999771118164, + 0.0106123685836792, + 0.04864673689007759, + 0.02503981627523899, + -0.01650514267385006, + -0.011445237323641777, + 0.03707612305879593, + 0.01266319677233696, + -0.010701923631131649, + -0.018126104027032852, + -0.01683649979531765, + 0.07203872501850128, + 0.010567590594291687, + 0.00938545260578394, + 0.005825608037412167, + -0.008234660141170025, + -0.027690669521689415, + 0.02683093212544918, + -0.004674815572798252, + 0.002803098177537322, + -0.03231175243854523, + -0.019164951518177986, + -0.029660897329449654, + 0.037685099989175797, + -0.005718140862882137, + 0.006439065560698509, + -0.008610795252025127, + 0.030144499614834785, + 0.0005275399307720363, + 0.009636209346354008, + 0.00013356415729504079, + 0.004186735954135656, + 0.008763039484620094, + -0.014857315458357334, + 0.025129372254014015, + 0.02416216768324375, + 0.0012952014803886414, + 0.06576981395483017, + -0.052730485796928406, + 0.011597482487559319, + 0.04323756322264671, + -0.020687401294708252, + 0.006989833898842335, + -0.004652426578104496, + -0.011355681344866753, + -0.007110734470188618, + 0.01466029230505228, + -0.007527169305831194, + 0.07730460911989212, + -0.01880672760307789, + -0.028084713965654373, + -0.014606558717787266, + -0.011015369556844234, + 0.008467505685985088, + 0.025057727470993996, + -0.0041173300705850124, + 0.003172515891492367, + 0.027242889627814293, + -0.02448456920683384, + 0.03320730850100517, + 0.04363160952925682, + -0.03571487218141556, + -0.020615756511688232, + 0.000581553322263062, + -0.015761829912662506, + -0.022138206288218498, + -0.005288273096084595, + -0.024054700508713722, + 0.00651518814265728, + 0.01416773535311222, + -0.0032038604840636253, + 0.010755657218396664, + -0.015502117574214935, + 0.016370808705687523, + -0.0053240954875946045, + -0.018502239137887955, + -0.025075638666749, + -0.04047924280166626, + -0.002212029416114092, + -0.011301948688924313, + 0.053017064929008484, + -0.0005689595127478242, + 0.011275081895291805, + -0.014230424538254738, + 0.020633667707443237, + 0.020221710205078125, + -0.015430472791194916, + 0.006748033221811056, + -0.028747428208589554, + -0.0217799823731184, + 0.01614692062139511, + -0.0351417139172554, + -0.012349751777946949, + -0.017597723752260208, + -0.026347331702709198, + -0.015940941870212555, + -0.01646932028234005, + -0.021385936066508293, + -0.003183710388839245, + -0.02609657496213913, + -0.015869297087192535, + -0.028263825923204422, + -0.000936418364290148, + -0.008709306828677654, + 0.016191696748137474, + 0.06960280984640121, + 0.015475250780582428, + -0.030216144397854805, + 0.022460607811808586, + -0.02294420823454857, + 0.01513493899255991, + 0.025165194645524025, + 0.039655331522226334, + -0.04151809215545654, + -0.013549800030887127, + -0.006040541920810938, + -0.039655331522226334, + -0.017597723752260208, + 0.0014933438505977392, + -0.01085416879504919, + -0.025666706264019012, + -0.015143894590437412, + 0.03757763281464577, + -0.008360038511455059, + -0.026186130940914154, + 0.006958489306271076, + -0.00015028590860310942, + 0.034246157854795456, + 0.005427084397524595, + -0.006439065560698509, + -0.0022881519980728626, + 0.021618781611323357, + 0.015323005616664886, + 0.02075904607772827, + 0.03546411544084549, + 0.016532009467482567, + 0.014588647522032261, + -0.004298680927604437, + -0.010988502763211727, + -0.03157739341259003, + 0.016854410991072655, + -0.008830206468701363, + 0.012904997915029526, + 0.006219653878360987, + -0.0036471618805080652, + 0.011328814551234245, + 0.0019411230459809303, + -0.04083746671676636, + 0.009412319399416447, + -0.016890233382582664, + 0.0018202225910499692, + -0.007912259548902512, + 0.03240130469202995, + 0.010549679398536682, + 0.06010988727211952, + -0.01859179511666298, + -0.028299648314714432, + -0.010119810700416565, + -0.06046811118721962, + -0.008628706447780132, + 0.015967808663845062, + 0.052730485796928406, + 0.0035105892457067966, + -0.002357557648792863, + 0.01513493899255991, + -0.012967687100172043, + 0.020687401294708252, + -0.011615393683314323, + -0.03387002274394035, + -0.009313808754086494, + 0.04187631607055664, + -0.03682536631822586, + -0.0040255356580019, + -0.01001234445720911, + -0.011248215101659298, + -0.014391625300049782, + 0.05251555144786835, + -0.011893017217516899, + -0.001064035459421575, + 0.0226934514939785, + 0.02093815803527832, + -0.03462229296565056, + -0.03668207675218582, + -0.013845334760844707, + 0.0048315380699932575, + -0.015036427415907383, + -0.02770858071744442, + -0.002350840950384736, + 0.006456976756453514, + 0.02111726999282837, + 0.009922788478434086, + 0.03861648216843605, + -0.0032553551718592644, + 0.010200411081314087, + 0.020006777718663216, + -0.014955827035009861, + 0.008794384077191353, + -0.035267092287540436, + 0.011660171672701836, + -0.04370325431227684, + 0.03360135480761528, + 0.02265762910246849, + -0.04671233147382736, + 0.0006324881687760353, + -0.05359021946787834, + -0.0009750393219292164, + -0.018090281635522842, + 0.00953769776970148, + -0.020400822162628174, + -0.021690426394343376, + -0.01313784345984459, + -0.022532252594828606, + 0.005189761519432068, + -0.009833232499659061, + 0.017794746905565262, + 0.003340433118864894, + 0.039583686739206314, + 0.018645528703927994, + 0.010746701620519161, + -0.004043446853756905, + 0.00015854183584451675, + -0.03121916949748993, + 0.028353381901979446, + -0.0006918189465068281, + 0.014319980517029762, + -0.03707612305879593, + 0.041410624980926514, + 0.006125620100647211, + -0.03016241081058979, + 0.010988502763211727, + 0.0007007745443843305, + -0.02953551895916462, + 0.004782282281666994, + -0.04080164432525635, + -0.02100980281829834, + 0.03822243586182594, + 0.005077816545963287, + 0.04030013084411621, + 0.009904877282679081, + -0.035929806530475616, + -0.012681107968091965, + -0.03224010765552521, + -0.043201740831136703, + 0.0022377767600119114, + 0.026114486157894135, + -0.016514098271727562, + 0.002966537605971098, + -0.002409052336588502, + -0.03517753630876541, + 0.01852015033364296, + 0.00893319584429264, + -0.02455621398985386, + 0.0195769090205431, + 0.006250998470932245, + -0.004844971466809511, + 0.019039573147892952, + 0.02760111354291439, + -0.02041873335838318, + -0.027207067236304283, + 0.009045140817761421, + -0.011113881133496761, + -0.002668764442205429, + -0.05097518861293793, + -0.025201017037034035, + -0.007764492183923721, + 0.002112398622557521, + -0.028890717774629593, + 0.021690426394343376, + -0.016451409086585045, + -0.0182962603867054, + 0.02539803832769394, + -0.0012593790888786316, + 0.0322221964597702, + -0.0713580995798111, + 0.0030269876588135958, + -0.03177441656589508, + -0.0036270120181143284, + -0.0069853560999035835, + 0.01731114648282528, + 0.002959820907562971, + 0.005539029370993376, + 0.001099298009648919, + 0.03335059806704521, + 0.015439428389072418, + -0.01548420637845993, + -0.02244269661605358, + 0.014722981490194798, + -0.020257532596588135, + -0.05566791445016861, + 0.010764612816274166, + 0.0603964664041996, + 0.020579934120178223, + -0.04893331602215767, + 0.014705070294439793, + 0.011767638847231865, + -0.014060268178582191, + 0.011624349281191826, + 0.042771872133016586, + 0.0032441606745123863, + 0.013039331883192062, + -0.004625559784471989, + 0.011875106021761894, + -0.02679510973393917, + 0.012716930359601974, + -0.0035464116372168064, + -0.005131550133228302, + 0.028872806578874588, + 0.02360692247748375, + 0.0013478155015036464, + 0.014642381109297276, + -0.00847646128386259, + -0.015287183225154877, + 0.03265206143260002, + 0.00469272630289197, + -0.010388478636741638, + -0.03736270219087601, + 0.016961878165602684, + -0.018323127180337906, + 0.01636185310781002, + -0.024645769968628883, + 0.017552945762872696, + 0.028711605817079544, + 0.014266246929764748, + 0.021762071177363396, + -0.01595885306596756, + 0.0037613457534462214, + 0.04907660558819771, + -0.007110734470188618, + -0.01269901916384697, + -0.026257775723934174, + -7.983064278960228e-5, + -0.004007624462246895, + 0.01138254813849926, + -0.023409899324178696, + -0.015726007521152496, + -0.010316833853721619, + -0.023051675409078598, + 0.025702528655529022, + 0.011149703525006771, + 0.027690669521689415, + 0.01502747181802988, + 0.02090233564376831, + -0.053267817944288254, + 0.03458647057414055, + 0.004262858536094427, + 0.00325759407132864, + 0.009797410108149052, + 0.018914194777607918, + -0.005028560757637024, + -0.0007002148195169866, + 0.011239259503781796, + -0.029195206239819527, + -0.02244269661605358, + 0.046318285167217255, + 0.003447900293394923, + 0.0018202225910499692, + -0.03546411544084549, + -0.03471184894442558, + -0.025057727470993996, + -0.005118116736412048, + 0.008682440035045147, + 0.027511557564139366, + 0.01453491486608982, + -0.019451530650258064, + -0.006842066999524832, + 0.004213602747768164, + 0.012367662973701954, + -0.007634636014699936, + 0.0013332627713680267, + -0.015681229531764984, + 0.017069345340132713, + -0.0322221964597702, + -0.00957352016121149, + -0.000762344163376838, + 0.00016931652498897165, + 0.0387955941259861, + -0.01745443604886532, + -0.00821674894541502, + -0.018717173486948013, + 0.03757763281464577, + 0.0043524145148694515, + 0.04527943953871727, + -0.016854410991072655, + -0.022156117483973503, + 0.0025165192782878876, + -0.01654992066323757, + 0.014481181278824806, + -0.025344304740428925, + 0.008566017262637615, + -0.026042841374874115, + 0.005547984968870878, + -0.002803098177537322, + 0.010907902382314205, + -0.0006319284439086914, + 0.01209899503737688, + -0.007786881178617477, + -0.020884424448013306, + -0.029195206239819527, + -0.009215297177433968, + 0.022962119430303574, + -0.023732300847768784, + 0.006179353687912226, + -0.01834103837609291, + -0.01848432794213295, + 0.019057484343647957, + -0.007715236395597458, + 0.008315260522067547, + -0.02862204983830452, + 0.004764371085911989, + -0.017472345381975174, + 0.02672346495091915, + 0.03501633554697037, + -0.008579450659453869, + -0.033028196543455124, + 0.016711121425032616, + -0.007159990258514881, + -0.02244269661605358, + 0.01013772189617157, + 0.005189761519432068, + -0.03686118870973587, + -0.03580442816019058, + 0.019648553803563118, + -0.007589858490973711, + -0.010621324181556702, + -0.022711362689733505, + -0.02493234910070896, + 0.024681592360138893, + -0.029517607763409615, + -0.01552002876996994, + -0.010585501790046692, + 0.004813626874238253, + 0.021475492045283318, + 0.004737504292279482, + 0.01911121793091297, + -0.018842549994587898, + -0.00797942653298378, + -0.009286941960453987, + -0.008458550088107586, + 0.03893888369202614, + 0.013531888835132122, + 0.005453951191157103, + 0.0069092339836061, + 0.023230787366628647, + 0.001530285575427115, + 0.004439731128513813, + 0.01431102491915226, + -0.020633667707443237, + -0.028425026684999466, + -0.01988139934837818, + 0.02360692247748375, + -0.00964516494423151, + -0.012161684222519398, + 0.004544959403574467, + -0.03326104208827019, + -0.006071886513382196, + -0.018161926418542862, + -0.020006777718663216, + -0.009421274997293949, + -0.016567831858992577, + 0.011436281725764275, + -0.002932954113930464, + 0.01731114648282528, + -0.017266368493437767, + 0.006228609476238489, + -0.015287183225154877, + 0.021350115537643433, + -0.02770858071744442, + 0.013585622422397137, + -0.010155633091926575, + 0.042950984090566635, + 0.014454314485192299, + 0.014400580897927284, + 0.018860461190342903, + -0.021278470754623413, + -0.006089797709137201, + 0.011776594445109367, + -0.04047924280166626, + -0.011955706402659416, + -0.011194481514394283, + -0.017955947667360306, + 0.03268788382411003, + -0.020150065422058105, + -0.0029284763149917126, + -0.04707055538892746, + 0.0091481301933527, + 0.03736270219087601, + -0.00231501879170537, + 0.01374682318419218, + 0.034281980246305466, + -0.0075182137079536915, + -0.002198596019297838, + 0.01046907901763916, + -0.0322042852640152, + -0.0406225323677063, + 0.00101310049649328, + 0.008915284648537636, + -0.010263100266456604, + 0.003112065838649869, + 0.00733014615252614, + 0.009931744076311588, + 0.00854810606688261, + 0.0064435433596372604, + -0.007876437157392502, + -0.01706038974225521, + 0.006461454555392265, + 0.001181017723865807, + -0.00911230780184269, + 0.0026307031512260437, + -0.0011015369091182947, + -0.01220646221190691, + -0.004733026493340731, + -0.04223453998565674, + -0.00045225705252960324, + 0.01697978936135769, + -0.02020379900932312, + 0.02118891477584839, + -0.0217799823731184, + 0.015018516220152378, + -0.0024515914265066385, + 0.012340796180069447, + -0.00810928177088499, + 0.00042203193879686296, + -0.008234660141170025, + 0.023517366498708725, + 0.007755536586046219, + -0.033798377960920334, + -0.00790778174996376, + 0.046103350818157196, + -0.018932105973362923, + -0.015940941870212555, + -0.0026150308549404144, + -0.0021034430246800184, + 0.034174513071775436, + 0.003600145224481821, + -0.01988139934837818, + 0.012931864708662033, + -0.013594578020274639, + -0.021547136828303337, + 0.012788575142621994, + 0.0170156117528677, + -0.0005793144227936864, + 0.005207672715187073, + -0.015528984367847443, + 0.02034708857536316, + 0.006810722406953573, + -0.0077062807977199554, + -0.03564322739839554, + 0.014400580897927284, + 0.0099765220656991, + -0.02290838584303856, + 0.0010808272054418921, + 0.022245673462748528, + -0.047607891261577606, + -0.017982814460992813, + -0.0078092701733112335, + -0.011633304879069328, + -0.0038441848009824753, + 0.029159383848309517, + -0.014570736326277256, + 0.004983783233910799, + 0.004647948779165745, + 0.041016578674316406, + -0.04839598014950752, + -0.030287789180874825, + -0.02195909433066845, + 0.03911799564957619, + -0.03637758642435074, + -0.01085416879504919, + -0.0005860311212018132, + -0.028944451361894608, + -0.021977005526423454, + -0.007889870554208755, + -0.007285368163138628, + 0.01672903262078762, + 0.009510830976068974, + 0.009663076139986515, + -0.016827544197440147, + 0.021475492045283318, + -0.009949655272066593, + -0.0347834937274456, + 0.028783250600099564, + -0.014373714104294777, + 0.005082294344902039, + -0.006645043846219778, + -0.02998329885303974, + -0.00034534974838607013, + -0.005024082958698273, + 0.0468556210398674, + 0.041195690631866455, + -0.02332034334540367, + -0.014964782632887363, + 0.008812295272946358, + -0.022639719769358635, + -0.01129299309104681, + -0.031649038195610046, + 0.04406147822737694, + 0.002489652717486024, + -0.0018101476598531008, + -0.005230061709880829, + 0.009358586743474007, + 0.013594578020274639, + 0.00021003645088057965, + -0.009833232499659061, + 0.012690063565969467, + 0.0025120414793491364, + -0.0046613821759819984, + -0.003049376653507352, + -0.006165920291095972, + 0.00975263211876154, + 0.001494463300332427, + -0.00971680972725153, + -0.029123561456799507, + 0.011167614720761776, + 0.009627253748476505, + -0.011794505640864372, + -0.012233329005539417, + -0.03378046676516533, + 0.006089797709137201, + -0.018735084682703018, + 0.027350356802344322, + 0.0387955941259861, + -0.021762071177363396, + 0.044598814100027084, + 0.024036789312958717, + 0.028102625161409378, + -0.005221106112003326, + 0.009546653367578983, + -0.0015045382315292954, + -0.005489773582667112, + 0.06286820769309998, + -0.009913832880556583, + -0.002897131722420454, + -0.017875347286462784, + -0.031828150153160095, + 0.01416773535311222, + -0.004061357583850622, + 0.002030678791925311, + 0.018215660005807877, + 0.02265762910246849, + 0.015161805786192417, + -0.00758538069203496, + 0.012009439058601856, + 0.02009633183479309, + 0.010558634996414185, + -0.0706416517496109, + -0.03725523501634598, + 0.022317318245768547, + 0.013603533618152142, + 0.018573883920907974, + 0.0010382881155237556, + -0.033547621220350266, + -0.042807694524526596, + 0.028156358748674393, + 0.012081083841621876, + -0.0011155300308018923, + 0.02324869856238365, + 0.023230787366628647, + 0.02939222939312458, + -0.010881035588681698, + -0.0029128040187060833, + -0.00022766775509808213, + -0.03408495709300041, + 0.010164588689804077, + -0.01697978936135769, + 0.03132663667201996, + -0.008816773071885109, + -0.014615514315664768, + 0.009582475759088993, + -0.021171003580093384, + 0.004907660651952028, + 0.015752874314785004, + 0.005301706492900848, + 0.021941183134913445, + 0.015009560622274876, + 0.034246157854795456, + 0.006210698280483484, + -0.017194723710417747, + -0.010836257599294186, + -0.02514728344976902, + 0.004437492229044437, + 0.03743434697389603, + -0.002070978982374072, + 0.008239137940108776, + -0.023839768022298813, + -0.018950017169117928, + -0.03969115391373634, + 0.042521119117736816, + 0.01774996891617775, + 0.015394650399684906, + -0.01306619867682457, + -0.03764927759766579, + -0.03718359023332596, + 0.01815297082066536, + 0.01789325848221779, + -0.022263584658503532, + 0.0033202830236405134, + 0.014776715077459812, + -0.009421274997293949, + 0.03150574862957001, + 0.009094396606087685, + -0.023033764213323593, + -0.008498850278556347, + 0.01925450749695301, + -0.008870506659150124, + 0.02444874681532383, + 0.0016769332578405738, + -0.03399540111422539, + -0.04406147822737694, + -0.025792084634304047, + 0.003391927806660533, + -0.041267335414886475, + 0.0009179474436677992, + -0.01341546606272459, + 0.01299455389380455, + 0.014328936114907265, + 0.0225143413990736, + -0.008615273050963879, + 0.0005658810259774327, + 0.035517849028110504, + 0.024466658011078835, + -0.0054449955932796, + 0.013639356009662151, + -0.014114001765847206, + 0.006259954068809748, + -0.02167251519858837, + 0.008404816500842571, + -0.002431441331282258, + -0.0020732178818434477, + 0.0038844849914312363, + -0.008713784627616405, + -0.020579934120178223, + -0.01310202106833458, + 0.0011261648032814264, + 0.00612114230170846, + 0.0173917468637228, + 0.017078300938010216, + 0.021511314436793327, + 0.0226934514939785, + 0.014499092474579811, + 0.05692169815301895, + -0.020848602056503296, + -0.025236837565898895, + 0.042950984090566635, + 0.0013813989935442805, + 0.0009151488193310797, + -0.028783250600099564, + 0.03143410384654999, + 0.00466585997492075, + -0.038114968687295914, + 0.044527169317007065, + -0.0020340371411293745, + 0.009286941960453987, + -0.01552002876996994, + 0.012842308729887009, + -0.041052401065826416, + 0.023087497800588608, + 0.015188672579824924, + 0.010057121515274048, + -0.015878252685070038, + -0.010513857007026672, + -0.015914075076580048, + 0.000535376078914851, + 0.015278227627277374, + -0.014078179374337196, + -0.014284158125519753, + -0.0051225945353507996, + 0.009663076139986515, + 0.0006229729042388499, + -0.02536221593618393, + 0.010227277874946594, + -0.007271935231983662, + 0.006242042873054743, + -0.01811714842915535, + 0.013899068348109722, + 0.008910806849598885, + 0.002453830325976014, + 0.0015616301679983735, + 0.015457339584827423, + -0.008834684267640114, + 0.019612731412053108, + 0.005736052058637142, + -0.017284279689192772, + -0.00583904143422842, + -0.011695994064211845, + 0.036359675228595734, + -0.014525959268212318, + -0.019558997824788094, + 0.030825123190879822, + -0.006434587761759758, + -0.007845092564821243, + -0.02328452095389366, + 0.014293113723397255, + 0.010836257599294186, + 0.009949655272066593, + 0.027941424399614334, + 0.008395860902965069, + 0.005386784207075834, + -0.003891201689839363, + 0.011534793302416801, + 0.02265762910246849, + -0.011051191948354244, + -0.001954556442797184, + 6.958069570828229e-5, + -0.02203073911368847, + -0.0071465568616986275, + -0.016057364642620087, + -0.012896042317152023, + 0.008592884056270123, + -0.0035620839335024357, + -0.017508167773485184, + 0.012878131121397018, + -0.04581677168607712, + 0.024251723662018776, + -0.014293113723397255, + 0.014409536495804787, + -0.0028769816271960735, + 0.014069223776459694, + -0.0028836983256042004, + -0.03668207675218582, + -0.012725885957479477, + -0.011140747927129269, + 0.015931986272335052, + -0.024430835619568825, + 0.02203073911368847, + -0.008686917833983898, + 0.031899794936180115, + 0.022675540298223495, + 0.017687279731035233, + -0.00038201166898943484, + -0.0059241196140646935, + 0.003309088759124279, + -0.00466585997492075, + -0.015152850188314915, + -0.007173423655331135, + -0.012851264327764511, + 0.008960062637925148, + -0.014588647522032261, + 0.010236233472824097, + -0.010603412985801697, + -0.005780830048024654, + 0.003172515891492367, + -0.007589858490973711, + 0.010218322277069092, + -0.005503206979483366, + -0.008301827125251293, + 0.006618177518248558, + 0.010916857980191708, + -0.00017883183318190277, + 0.015967808663845062, + -0.0020911290775984526, + 0.051476702094078064, + 0.009215297177433968, + 0.02529057115316391, + -0.03489096090197563, + -0.01705143414437771, + 0.02785186842083931, + -0.03510589152574539, + -0.01606632024049759, + 0.009322764351963997, + -0.01790221408009529, + 0.002297107595950365, + -0.042915161699056625, + 0.02203073911368847, + -0.01334382127970457, + 0.02745782397687435, + 0.014570736326277256, + -0.02002468891441822, + 0.004518092609941959, + -0.022138206288218498, + -0.005364395212382078, + 0.02679510973393917, + 0.01043325662612915, + -0.000587710237596184, + -0.02072322368621826, + 0.018717173486948013, + 0.01826043799519539, + -0.014714025892317295, + 0.017911169677972794, + 0.017615634948015213, + -0.022048650309443474, + -0.02683093212544918, + -0.003031465457752347, + -0.01502747181802988, + 0.008924240246415138, + 0.0019635120406746864, + 0.010460123419761658, + 0.023857679218053818, + -0.030843034386634827, + 0.0066942996345460415, + 0.006895800586789846, + 0.010460123419761658, + -0.051476702094078064, + -0.021385936066508293, + 0.004321069922298193, + -0.03159530460834503, + -0.0054718623869121075, + 0.0016355137340724468, + 0.01771414652466774, + 0.01167808286845684, + -0.026920488104224205, + -0.015143894590437412, + -0.03401331230998039, + 0.007912259548902512, + -0.018985839560627937, + 0.00429196422919631, + -0.011937795206904411, + 0.008937673643231392, + -0.030287789180874825, + -0.007348057348281145, + 0.010298922657966614, + 0.005673362873494625, + 0.008270482532680035, + -0.04040759801864624, + 0.0076256804168224335, + 0.014579691924154758, + 0.03598354011774063, + 0.009627253748476505, + -0.0018929868238046765, + -0.022388963028788567, + 0.0017004417022690177, + 0.012054217047989368, + 0.015331961214542389, + -0.010513857007026672, + 0.028944451361894608, + -0.029481785371899605, + 0.025308482348918915, + -0.006976400502026081, + -0.012349751777946949, + -0.00018372942577116191, + -0.01220646221190691, + 0.009412319399416447, + -0.00587486382573843, + 0.027224978432059288, + 0.007074912078678608, + -0.0007466719252988696, + -0.004233752842992544, + -0.0062554762698709965, + -0.01213481742888689, + 0.002426963532343507, + -0.015546895563602448, + -0.009475008584558964, + 0.006412198767066002, + 0.00633159838616848, + 0.00711969006806612, + -0.007827181369066238, + 0.008982451632618904, + 0.021600870415568352, + -0.0005521677667275071, + 0.01852015033364296, + -0.012833353132009506, + 0.02906982973217964, + 0.003508350346237421, + 0.012672152370214462, + -0.0036247731186449528, + -0.04914825037121773, + 0.00031512463465332985, + 0.006631610915064812, + -0.008154059760272503, + 0.023660656064748764, + 0.012645285576581955, + -0.005601718556135893, + 0.0019220924004912376, + -0.021403847262263298, + 0.03234757483005524, + -0.0016142441891133785, + 0.005830085836350918, + -0.023302432149648666, + -0.019720198586583138, + -0.010424301028251648, + 0.00866005104035139, + -0.025630883872509003, + -0.004544959403574467, + -0.017006656154990196, + 0.016048409044742584, + 0.0030157931614667177, + 0.014830448664724827, + 0.009672031737864017, + 0.02115309238433838, + 0.029338495805859566, + 0.01629020832479, + 0.029034007340669632, + 0.024878615513443947, + 0.007486869115382433, + 0.030878856778144836, + -0.0028075759764760733, + -0.0019959760829806328, + 0.0016567832790315151, + -0.004737504292279482, + -0.010603412985801697, + 0.0075988140888512135, + 0.018242526799440384, + -0.021582959219813347, + -0.006600266322493553, + 0.0041285245679318905, + -0.015349872410297394, + -0.007361490745097399, + -0.0009755990467965603, + 0.027099600061774254, + 0.016370808705687523, + -0.001181017723865807, + -0.010621324181556702, + 0.006219653878360987, + -0.003002359764650464, + 0.01749921217560768, + -0.04570930451154709, + 0.025577150285243988, + 0.005597240757197142, + -0.0026418976485729218, + -0.02276509627699852, + 0.014158779755234718, + -0.00968098733574152, + -0.021941183134913445, + -0.019558997824788094, + -0.020114243030548096, + 0.018144015222787857, + -0.0068555003963410854, + -0.0301982332020998, + -0.011409414932131767, + 0.009564564563333988, + -0.019594820216298103, + -0.011087014339864254, + -0.026562264189124107, + -0.01502747181802988, + 0.03218637406826019, + 0.013084109872579575, + 0.007930170744657516, + -0.010245189070701599, + -0.015896163880825043, + 0.0010970591101795435, + -0.017911169677972794, + -0.015869297087192535, + -0.009277986362576485, + 0.022138206288218498, + -0.01050490140914917, + -0.00023452438472304493, + -0.0027784702833741903, + 0.031022146344184875, + 0.00953769776970148, + 0.0027493645902723074, + -0.014794626273214817, + 0.0019108979031443596, + 0.01745443604886532, + -0.0001945041149156168, + -0.002413530135527253, + -0.01006607711315155, + 0.02346363291144371, + -0.022048650309443474, + -0.0285504050552845, + -0.00828839372843504, + -0.01182137243449688, + -0.0029419097118079662, + 0.007034611888229847, + 0.011848239228129387, + -0.028174269944429398, + 0.0010976188350468874, + -0.004242708440870047, + -0.018502239137887955, + -0.02971463091671467, + -0.03840154781937599, + -0.0011020966339856386, + 0.005825608037412167, + -0.010558634996414185, + 0.0027650368865579367, + -0.02781604789197445, + 0.0001532244641566649, + -0.003519544843584299, + -0.014463270083069801, + -0.017069345340132713, + 0.005588285159319639, + 0.006474887952208519, + 0.006125620100647211, + 0.008588406257331371, + -0.009107830002903938, + 0.019684376195073128, + 0.016755899414420128, + -0.018609706312417984, + 0.02206656150519848, + 0.0003543053171597421, + 0.007101778872311115, + -0.046389929950237274, + -0.0029911655001342297, + -0.0010506020626053214, + 0.017732057720422745, + -0.04055088758468628, + 0.022012827917933464, + 0.009904877282679081, + -0.015860341489315033, + -0.008812295272946358, + -0.009519786573946476, + -0.0044598812237381935, + 0.03865230455994606, + 0.017920125275850296, + 0.0049121384508907795, + 0.013263221830129623, + -0.003600145224481821, + -0.010567590594291687, + 0.003333716420456767, + 0.02511146105825901, + -0.015305094420909882, + -0.021565048024058342, + 0.009031707420945168, + -0.0029351930133998394, + -0.0020026927813887596, + -0.0017082778504118323, + 0.015600629150867462, + -0.03390584513545036, + -0.01618274115025997, + 0.004043446853756905, + -0.02847876027226448, + 0.014024445787072182, + 0.00109370076097548, + 0.0073167127557098866, + 0.007285368163138628, + -0.016093187034130096, + -0.0012672152370214462, + 0.006859978195279837, + -0.01639767549932003, + 0.009085441008210182, + -0.01224228460341692, + -0.014525959268212318, + 0.007159990258514881, + -0.005865908227860928, + -0.00548081798478961, + 0.016129009425640106, + -0.01431102491915226, + 0.03413869068026543, + -0.009448141790926456, + 0.011391503736376762, + 0.00790778174996376, + 0.002908326219767332, + -0.00719133485108614, + -0.0050599053502082825, + 0.021690426394343376, + -0.0017194723477587104, + -0.0007421941263601184, + 0.014490136876702309, + 0.023141231387853622, + 0.022012827917933464, + -0.001989259384572506, + 0.00797942653298378, + -0.027368267998099327, + 0.003868812695145607, + 0.008136148564517498, + 0.026669731363654137, + -0.02002468891441822, + 0.00869139563292265, + -0.004741982091218233, + -0.0022321795113384724, + 0.01698874495923519, + -0.025666706264019012, + 0.009036185219883919, + 0.0032374439761042595, + -0.004965872038155794, + -0.0351238027215004, + -0.006501754745841026, + -0.03258041664958, + 0.03309984132647514, + -0.0008496611262671649, + -0.0026262253522872925, + -0.0029642987065017223, + 0.01749921217560768, + -0.006062930915504694, + 0.008709306828677654, + 0.011525837704539299, + -0.028926540166139603, + 0.013227399438619614, + -0.04223453998565674, + -0.02833547070622444, + 0.005315139889717102, + 0.01697978936135769, + -0.0009839949198067188, + 0.018824638798832893, + -0.0032956553623080254, + -0.03612682968378067, + 0.0012649763375520706, + 0.030950501561164856, + 0.00797942653298378, + -0.002070978982374072, + -0.01420355774462223, + -0.010800435207784176, + -0.010083988308906555, + 4.97454748256132e-5, + -0.018108192831277847, + -0.030287789180874825, + 0.02932058461010456, + 0.012851264327764511, + -0.005440517794340849, + -0.007298801559954882, + 0.012161684222519398, + -0.0064659323543310165, + -0.002834442537277937, + 0.04227036237716675, + 0.014955827035009861, + 0.014776715077459812, + -0.011669127270579338, + 0.008185404352843761, + -0.010272055864334106, + -0.0026598088443279266, + 0.035446204245090485, + 0.005436039995402098, + -0.0018011920619755983, + 0.026920488104224205, + 0.016370808705687523, + 0.008642139844596386, + 0.021421758458018303, + -0.003141171531751752, + -0.02503981627523899, + -0.0008211152162402868, + -0.01732010208070278, + 0.011633304879069328, + -0.002903848420828581, + 0.01567227393388748, + -0.00010466839739819989, + 0.0007645830628462136, + -0.002465024823322892, + 0.025720439851284027, + 0.008767517283558846, + -0.025487594306468964, + 0.014785670675337315, + -0.029141472652554512, + 0.008463027887046337, + 0.007916737347841263, + -0.01918286271393299, + -0.014033401384949684, + -0.0028702649287879467, + 0.0004710078064817935, + -0.021762071177363396, + 0.0014787910040467978, + -0.004218080546706915, + -0.0019400035962462425, + 0.015045383013784885, + -0.05043785646557808, + -0.01669321022927761, + 0.002997881965711713, + -0.0391538180410862, + 0.0073346239514648914, + 0.009761587716639042, + 0.008883940055966377, + -0.01998886652290821, + 0.0019187340512871742, + -0.014042356982827187, + 0.011633304879069328, + -0.016746943816542625, + -0.0243412796407938, + 0.017176812514662743, + -0.0003495476848911494, + 0.0009078724542632699, + 0.0047912378795444965, + -0.027404090389609337, + -0.04678397625684738, + 0.03575069457292557, + -0.01129299309104681, + 0.000819995766505599, + 0.004204647149890661, + 0.004480031318962574, + -0.014946871437132359, + -0.030037032440304756, + 0.01310202106833458, + -0.014687159098684788, + 0.0007209245814010501, + -0.011901972815394402, + 0.02602493017911911, + 0.0002745446399785578, + 0.012376618571579456, + -0.016532009467482567, + 0.020078420639038086, + -0.0071465568616986275, + -0.027439912781119347, + -0.028604138642549515, + 0.02287256345152855, + -0.009130218997597694, + 0.032043084502220154, + 0.0057629188522696495, + -0.0005580448778346181, + -0.013128887861967087, + 0.027547379955649376, + -0.022174028679728508, + -0.004298680927604437, + 0.0018571644322946668, + -0.0005672803381457925, + 0.030843034386634827, + -0.007451046723872423, + 0.008445116691291332, + -0.0226934514939785, + -0.0179290808737278, + 0.016746943816542625, + -0.021457580849528313, + 0.008485416881740093, + -0.01668425463140011, + -0.07107152044773102, + -0.012367662973701954, + -0.012403485365211964, + -0.004278530832380056, + 0.0017732058186084032, + 0.014678203500807285, + -0.00711969006806612, + 0.014669247902929783, + 0.00045757440966553986, + 0.011319859884679317, + 0.0027784702833741903, + -0.008006293326616287, + -0.00612114230170846, + 0.009528742171823978, + 0.0060136751271784306, + 0.00874960608780384, + -0.03345806524157524, + 0.00013433377898763865, + -0.024914437904953957, + 0.013299043290317059, + 0.008127192966639996, + 0.013773689977824688, + -0.023051675409078598, + 0.012475130148231983, + 0.03311775252223015, + 0.009806365706026554, + -0.024806970730423927, + 0.0036695508752018213, + 0.007164468057453632, + -0.018206704407930374, + -0.021797893568873405, + 0.006080842111259699, + -0.007567469496279955, + 0.0012369902106001973, + 0.03283117339015007, + 0.0212247371673584, + -0.006537577137351036, + -0.023983055725693703, + -0.0014149824855849147, + 0.019970955327153206, + -0.0001334941916866228, + 0.0015896162949502468, + -0.013630400411784649, + -0.024878615513443947, + -0.023589011281728745, + -0.01385429035872221, + 0.014463270083069801, + -0.005024082958698273, + -0.008100326173007488, + 0.011731816455721855, + -0.0016444693319499493, + -0.006577877327799797, + 0.04223453998565674, + 0.009304853156208992, + -0.008301827125251293, + 0.0027874258812516928, + -0.01145419292151928, + -0.06086215376853943, + -0.01178555004298687, + 0.017329057678580284, + -0.0031859492883086205, + 0.004437492229044437, + -0.028013069182634354, + 0.0037882125470787287, + -0.004388236440718174, + -0.019093306735157967, + -0.00726745743304491, + -0.005310662090778351, + 0.02118891477584839, + 0.00011362398799974471, + -0.011391503736376762, + -0.01925450749695301, + -0.013997578993439674, + 0.03360135480761528, + 0.03232966363430023, + -0.0018426115857437253, + 0.006430109962821007, + 0.01880672760307789, + 0.03412077948451042, + -0.010218322277069092, + 0.005333051085472107, + 0.005449473392218351, + -0.02580999583005905, + 0.005570373963564634, + 0.02711751125752926, + -0.00840033870190382, + 0.00994069967418909, + -0.022209851071238518, + 0.021690426394343376, + 0.001594094093888998, + 0.0008519000257365406, + 0.02041873335838318, + -0.00865557324141264, + -0.02199491672217846, + -0.010370567440986633, + 0.019791843369603157, + 0.008561539463698864, + -0.006273387465626001, + -0.018215660005807877, + -0.014508048072457314, + 0.00843616109341383, + -0.00189634517300874, + -0.011812416836619377, + 0.0234278105199337, + 0.02335616573691368, + 0.0049524386413395405, + 0.025971196591854095, + 0.01462446991354227, + 0.0067749000154435635, + 0.03254459425806999, + -0.02210238389670849, + -0.0032553551718592644, + 0.023374076932668686, + -0.011991527862846851, + 0.004741982091218233, + -0.009618298150599003, + 0.0054449955932796, + 0.03034152276813984, + -0.011946750804781914, + -0.001401549088768661, + 0.005373350810259581, + 0.011740772053599358, + 0.008154059760272503, + -0.016460364684462547, + -0.0033762555103749037, + 0.018430594354867935, + -0.01260946411639452, + -0.017033522948622704, + -0.0032822219654917717, + -0.010424301028251648, + -0.016926055774092674, + -0.009179474785923958, + 0.03059227764606476, + -0.01698874495923519, + -0.017293235287070274, + 0.03433571383357048, + -0.0003806123568210751, + 0.005915164016187191, + 0.011660171672701836, + -0.012896042317152023, + 0.016594698652625084, + -0.01129299309104681, + 0.0002623706532176584, + 0.007168945856392384, + 0.012009439058601856, + -0.027314534410834312, + -0.02118891477584839, + 0.016155876219272614, + 0.01397966779768467, + 0.013352776877582073, + 0.010128766298294067, + 0.0030851990450173616, + 0.003264310769736767, + -0.0064256321638822556, + 0.017660412937402725, + -0.0032598329707980156, + -0.020544111728668213, + -0.0027023477014154196, + 0.007701802998781204, + -0.012510952539741993, + 0.004858404863625765, + -0.013505022041499615, + -0.0015560329193249345, + 0.024609947577118874, + 0.013836379162967205, + -0.009492919780313969, + 0.009054096415638924, + 0.008006293326616287, + -0.0017821614164859056, + -0.006318164989352226, + -0.00697192270308733, + 0.00918843038380146, + -0.0062957764603197575, + 0.0013981907395645976, + 0.017723102122545242, + -0.00668982183560729, + -0.017149945721030235, + -0.0285504050552845, + 0.014606558717787266, + -0.0048718382604420185, + -0.007777925580739975, + -0.030646011233329773, + -0.007486869115382433, + -0.00441062543541193, + 0.007854048162698746, + -0.03229384124279022, + 0.0015616301679983735, + 0.0061345756985247135, + -0.011095969937741756, + -0.022138206288218498, + -0.0016467082314193249, + -0.00836451631039381, + -0.0007433135760948062, + -0.005494251381605864, + -0.031057968735694885, + -0.008073460310697556, + -0.004365847911685705, + -0.004121807869523764, + -0.003817318007349968, + -0.006936100777238607, + 0.016272297129034996, + -0.002065381733700633, + 0.019308241084218025, + -0.011991527862846851, + -0.01731114648282528, + -0.001716113998554647, + 0.009842188097536564, + -0.02493234910070896, + 0.006604744121432304, + -0.0018717172788456082, + 0.00019982148660346866, + -0.006398765370249748, + 0.004916616249829531, + -0.008042115718126297, + 0.006698777433484793, + 0.002402335638180375, + -0.014776715077459812, + 0.010791479609906673, + -0.02546968311071396, + 0.008848117664456367, + -0.006022630725055933, + 0.01991722173988819, + -0.009913832880556583, + 0.006756988819688559, + 0.0044195810332894325, + 0.00929589755833149, + 0.012761708348989487, + 0.014794626273214817, + -0.003391927806660533, + 0.017597723752260208, + -0.019684376195073128, + 0.007621202617883682, + 0.005494251381605864, + -0.002532191574573517, + 0.007491346914321184, + -0.01592303067445755, + 0.0038441848009824753, + -0.018430594354867935, + -0.004818104673177004, + 0.01122134830802679, + 0.0005781949730589986, + -0.004314353223890066, + 0.0217799823731184, + -0.017409658059477806, + -0.0022657630033791065, + -0.018914194777607918, + -0.002077695680782199, + 0.006058453116565943, + -0.0015291661256924272, + 0.011078058741986752, + -0.010639235377311707, + -0.005485295783728361, + -0.02500399388372898, + 0.0043479367159307, + 0.012976642698049545, + -0.021547136828303337, + 0.007200290448963642, + -0.004495703615248203, + -0.016164831817150116, + 0.0007013342692516744, + 0.017105167731642723, + 0.014651336707174778, + -0.0016970833530649543, + -0.005968897603452206, + -0.005704707466065884, + -0.001541480072773993, + 0.016514098271727562, + -0.025093549862504005, + -0.001757533522322774, + -0.0037882125470787287, + 0.004827060271054506, + -0.003588950727134943, + 0.011893017217516899, + 0.00017407418636139482, + -0.0039919521659612656, + 0.011355681344866753, + -0.006125620100647211, + 0.006904756184667349, + 0.0064032431691884995, + 0.019415708258748055, + -0.0011910927714779973, + -0.014525959268212318, + 0.01925450749695301, + -0.0027650368865579367, + 0.004359131213277578, + 0.015985719859600067, + -0.0013075154274702072, + -0.015206582844257355, + 0.009627253748476505, + -0.023911412805318832, + -0.008207793347537518, + 0.014517003670334816, + -0.02247851900756359, + -0.024789059534668922, + 0.02584581822156906, + 0.012636329978704453, + -0.012287062592804432, + -0.0010785883059725165, + -0.012304973788559437, + 0.013800556771457195, + -0.015340916812419891, + -0.01646932028234005, + -0.0077286697924137115, + 0.0023956189397722483, + 0.04037177562713623, + 0.00647936575114727, + 0.009475008584558964, + 0.018860461190342903, + -0.018054459244012833, + -0.005301706492900848, + -0.04560183733701706, + 0.014606558717787266, + 0.00900484062731266, + 0.005950986407697201, + -0.012251240201294422, + 0.00523453950881958, + 1.7622562609176384e-6, + -0.01705143414437771, + 0.00569127406924963, + -0.015654362738132477, + -0.009103352203965187, + 0.013737867586314678, + 0.0031434104312211275, + 0.0024292024318128824, + -0.002471741521731019, + 0.005870386026799679, + -0.009349631145596504, + 0.016200652346014977, + -0.0212247371673584, + 0.013460244052112103, + 0.01178555004298687, + 0.010379523038864136, + 0.0016489471308887005, + -0.04542272537946701, + 0.009725765325129032, + 0.01607527583837509, + -0.03241921588778496, + 0.02079486846923828, + -5.593742389464751e-5, + 0.013406510464847088, + 0.00818092655390501, + 0.00840033870190382, + 0.00964516494423151, + -0.00033835318754427135, + -0.011516882106661797, + 0.020490378141403198, + -0.004146435763686895, + -0.010415345430374146, + 0.016263341531157494, + 0.007786881178617477, + -0.046067528426647186, + -0.03129081428050995, + 0.005928597413003445, + -0.011445237323641777, + 0.011015369556844234, + 0.012018394656479359, + 0.0008155179675668478, + -0.004934527445584536, + -0.009806365706026554, + 0.02554132789373398, + 0.0005955463857389987, + 0.0025277137756347656, + -0.0022187461145222187, + 0.019272418692708015, + -0.004247186239808798, + -0.013845334760844707, + 0.017660412937402725, + -0.04896913841366768, + -0.014114001765847206, + -0.007195812650024891, + -0.02697422169148922, + -4.575744242174551e-5, + 0.0029105651192367077, + 0.0018191032577306032, + 0.0036852231714874506, + 0.0014138630358502269, + 0.0023396466858685017, + 0.015081205405294895, + -0.015788696706295013, + 0.008060026913881302, + -0.0004377042059786618, + 0.0217799823731184, + 0.0029239985160529613, + 0.02781604789197445, + -0.00498826103284955, + 0.0026038363575935364, + -0.012833353132009506, + 0.008704829029738903, + 0.026526443660259247, + 0.002123593119904399, + -0.005274839699268341, + 0.004126285668462515, + -0.003275505267083645, + 0.008440638892352581, + -0.005337528884410858, + 0.008368994109332561, + 0.007428657729178667, + 0.015609584748744965, + -0.002373229945078492, + 0.0012952014803886414, + 0.01603049784898758, + 0.010746701620519161, + 0.012582597322762012, + -0.00726745743304491, + 0.0006078603328205645, + -0.035374559462070465, + -0.0076659806072711945, + 0.00915260799229145, + -0.002599358558654785, + -0.003450139192864299, + -0.022084472700953484, + -0.01618274115025997, + -7.114617346815066e-6, + 0.009179474785923958, + -0.006407720968127251, + 0.0046210819855332375, + -0.0005392941529862583, + 0.018681351095438004, + 0.005780830048024654, + 0.005870386026799679, + -0.00519871711730957, + -0.02203073911368847, + 0.009510830976068974, + -0.016666343435645103, + -0.002718019997701049, + 0.004106135573238134, + 0.004719593096524477, + -0.01013772189617157, + 0.016567831858992577, + -0.004166585858911276, + 0.00964516494423151, + 0.0044889869168400764, + 0.01911121793091297, + -0.0009151488193310797, + 0.00024347996804863214, + 0.012125861831009388, + 0.018179837614297867, + 0.011543748900294304, + 0.014355802908539772, + -8.93459509825334e-5, + -0.011624349281191826, + 0.007545080501586199, + 0.019970955327153206, + 0.007142079062759876, + 0.020633667707443237, + -0.006833111401647329, + -0.023266609758138657, + -0.0033538665156811476, + -0.025021905079483986, + 0.005239017307758331, + 0.0112571706995368, + 0.0008015248458832502, + 0.0040882243774831295, + -0.0015963329933583736, + -0.011310904286801815, + 0.0037143288645893335, + 0.006483843550086021, + 0.00829287152737379, + -0.006497276946902275, + -0.019093306735157967, + 0.009304853156208992, + 0.004607648588716984, + -0.028425026684999466, + 0.023768123239278793, + -0.01174972765147686, + -0.015645407140254974, + -0.0017933559138327837, + 0.019308241084218025, + 0.022711362689733505, + 0.016003631055355072, + -0.0019467202946543694, + -0.0033538665156811476, + 0.037935856729745865, + 0.01735592447221279, + -0.003868812695145607, + 0.002773992484435439, + 0.03447900339961052, + -0.013245310634374619, + -0.016899188980460167, + 0.008422727696597576, + 0.03216846287250519, + 0.016487231478095055, + 0.001105454983189702, + 0.00291952071711421, + -0.01401549018919468, + 0.03594771772623062, + 0.0028545926325023174, + -0.005709185265004635, + 0.0035240226425230503, + 0.010406389832496643, + -0.010827302001416683, + 0.028281737118959427, + -0.005462906789034605, + -0.013388599269092083, + -0.0016769332578405738, + -0.015502117574214935, + -0.011024325154721737, + 0.0020698595326393843, + -0.007715236395597458, + -0.013612489216029644, + 0.013227399438619614, + -0.02788769081234932, + -0.0026598088443279266, + 0.006165920291095972, + 0.013164710253477097, + -0.02031126618385315, + -0.015546895563602448, + 0.0005955463857389987, + 0.01687232218682766, + 0.04510032758116722, + 0.0017261890461668372, + -0.017033522948622704, + -0.005346484016627073, + 0.010845213197171688, + 0.004365847911685705, + -0.0058838194236159325, + -0.01313784345984459, + -0.011472104117274284, + -0.02027544379234314, + 0.0064256321638822556, + -0.0006067408830858767, + -0.02170833759009838, + -0.006886844988912344, + -0.023893501609563828, + 0.012690063565969467, + 0.020293354988098145, + 0.011498970910906792, + -0.007791358977556229, + -0.012672152370214462, + -0.014391625300049782, + -0.01122134830802679, + -0.033726733177900314, + 0.019935132935643196, + 0.01785743609070778, + 0.009985477663576603, + 0.01844850555062294, + -0.020687401294708252, + 0.005830085836350918, + 0.010701923631131649, + -0.01043325662612915, + -0.005006172228604555, + -0.005041994154453278, + -0.004468836821615696, + 0.0450286827981472, + 0.006524143740534782, + -0.0018929868238046765, + 0.003013554261997342, + 0.01562749594449997, + 0.021977005526423454, + 0.0035128281451761723, + -0.010737746022641659, + -0.0018817923264577985, + 0.012260195799171925, + 0.01683649979531765, + 0.010522812604904175, + -0.0013802795438095927, + -0.013881157152354717, + -0.02244269661605358, + 0.0003380733251105994, + -0.024466658011078835, + 0.0030807212460786104, + -0.030825123190879822, + -0.013263221830129623, + 0.010881035588681698, + 0.004377041943371296, + -0.0099765220656991, + 0.004103896673768759, + 0.012761708348989487, + -0.016926055774092674, + -0.004450925625860691, + -0.0034635725896805525, + 0.0018985840724781156, + 0.015197628177702427, + 0.0024292024318128824, + -0.005503206979483366, + -0.0014440880622714758, + -0.01826939359307289, + -0.01734696887433529, + -0.008377949707210064, + -0.0039337407797575, + 0.007710758596658707, + -0.022012827917933464, + 0.006895800586789846, + -0.0034277501981705427, + 0.0022153877653181553, + 0.010334745049476624, + 0.029087740927934647, + -0.0049121384508907795, + 0.01774996891617775, + -0.00031344546005129814, + 0.005597240757197142, + -0.0024068134371191263, + -0.024395013228058815, + -0.004997216630727053, + 0.029732542112469673, + -0.010424301028251648, + 0.011391503736376762, + 0.009197385981678963, + -0.003396405605599284, + 0.01529613882303238, + -0.012779619544744492, + -0.013800556771457195, + 0.009412319399416447, + -0.01764250174164772, + -0.03322521969676018, + -0.002623986452817917, + 0.003268788568675518, + -0.007343579549342394, + 0.028747428208589554, + 0.012027350254356861, + 0.023875590413808823, + -0.00012642766523640603, + 0.0005300586926750839, + -0.011472104117274284, + 0.033440154045820236, + -0.008283915929496288, + -0.02167251519858837, + -0.04570930451154709, + -0.03507006913423538, + -0.018036548048257828, + 0.028389204293489456, + 0.017445480450987816, + -0.004224797245115042, + 0.002200834918767214, + 0.009994433261454105, + -0.004267336335033178, + 0.0034568558912724257, + 0.0044083865359425545, + -0.008113759569823742, + -0.0012649763375520706, + 0.0034926780499517918, + 0.003154604695737362, + -0.0021023235749453306, + -0.03363717719912529, + 0.024806970730423927, + 0.004316592123359442, + -0.006345031782984734, + 0.017955947667360306, + 0.02704586647450924, + 0.025863729417324066, + -0.01862761750817299, + 0.013693089596927166, + 0.01480358187109232, + 0.0005675602005794644, + -0.0134512884542346, + -0.007961515337228775, + 0.030843034386634827, + -0.006009197328239679, + 0.0010595576604828238, + -0.026848843321204185, + 0.002706825500354171, + -0.0011899733217433095, + -0.01043325662612915, + 0.03455064818263054, + -0.004350175615400076, + 0.008010771125555038, + -0.00034646919812075794, + -0.0032732663676142693, + 0.015466295182704926, + 0.011588526889681816, + 0.014319980517029762, + -0.008566017262637615, + 0.04553019255399704, + 0.006224131677299738, + -0.01837686076760292, + -0.020597845315933228, + 0.006492799147963524, + 0.006022630725055933, + -0.009842188097536564, + -0.018842549994587898, + 0.013970712199807167, + -0.009528742171823978, + 0.0005138266715221107, + 0.01213481742888689, + 0.009528742171823978, + 0.002438158029690385, + -0.013800556771457195, + -0.007164468057453632, + 0.015761829912662506, + 0.021332204341888428, + 0.02097398042678833, + 0.02097398042678833, + 0.007240590639412403, + -0.01017354428768158, + -0.0069092339836061, + 0.004759893286973238, + -0.018090281635522842, + -0.014472225680947304, + 0.006416676566004753, + 0.021726248785853386, + -0.03875977173447609, + -0.024824881926178932, + 0.005816652439534664, + -0.015833474695682526, + 0.016532009467482567, + -0.014705070294439793, + -0.016755899414420128, + 0.006801766809076071, + 0.017212634906172752, + 0.009304853156208992, + -0.018752995878458023, + 0.010191455483436584, + -0.011579571291804314, + -0.017436524853110313, + -0.0007052523433230817, + -0.011266126297414303, + 0.001698202802799642, + 0.005753963254392147, + 0.027619024738669395, + -0.003076243447139859, + -0.005807696841657162, + -0.016630521044135094, + 0.008673484437167645, + -0.004421819932758808, + 0.014561780728399754, + -0.0004925571847707033, + -0.004334503319114447, + -0.0007410746766254306, + -0.018072370439767838, + -0.0006448021158576012, + -0.034496914595365524, + -0.004321069922298193, + 0.010236233472824097, + -0.0009213057928718626, + -0.00020485901040956378, + 0.00900484062731266, + 0.022854652255773544, + 0.008834684267640114, + 0.020812779664993286, + -0.0032016215845942497, + 0.005458428990095854, + -0.0004438611795194447, + 0.03983444347977638, + -0.007446568924933672, + -0.02199491672217846, + -0.011337770149111748, + 0.003846423700451851, + -0.011758683249354362, + 0.009689942933619022, + 0.023051675409078598, + 0.0035396949388086796, + 0.03041316568851471, + 0.007410746533423662, + 0.006027108523994684, + 0.011069103144109249, + -0.01669321022927761, + -0.014678203500807285, + -0.0026620477437973022, + -0.008982451632618904, + 0.0182962603867054, + -0.003555367235094309, + 0.00527036190032959, + -0.011373592540621758, + -0.020812779664993286, + -0.0025680139660835266, + -0.011400459334254265, + -0.013648311607539654, + -0.0031389326322823763, + -0.013182621449232101, + -0.002482936019077897, + -0.0038329903036355972, + -0.015394650399684906, + -0.026042841374874115, + -0.032634150236845016, + -0.001257140189409256, + -0.0028433981351554394, + -0.013639356009662151, + -0.013325910083949566, + -0.022317318245768547, + -0.002070978982374072, + -0.021350115537643433, + 0.013737867586314678, + -0.001716113998554647, + -0.01603049784898758, + -0.0030113153625279665, + 0.022926297038793564, + 0.0011239259038120508, + 0.019684376195073128, + -0.007777925580739975, + 0.009233208373188972, + -0.00726745743304491, + 0.01676485501229763, + 0.04037177562713623, + -0.008422727696597576, + -0.008042115718126297, + 0.014687159098684788, + 0.0020620233844965696, + -0.010334745049476624, + -0.007415224332362413, + 0.007325668353587389, + -0.004795715678483248, + -0.009277986362576485, + -0.019487353041768074, + -0.011239259503781796, + -0.014561780728399754, + 0.027260800823569298, + -0.025308482348918915, + -0.004276291932910681, + -0.0072495462372899055, + -0.02806680276989937, + 0.03052063286304474, + -0.008521239273250103, + -0.005642018746584654, + 0.017964903265237808, + -0.00011145505413878709, + -0.011875106021761894, + 0.019720198586583138, + 0.012072128243744373, + 0.011973616667091846, + 0.03451482579112053, + -0.006300254259258509, + 0.0019019423052668571, + 0.002791903680190444, + -0.0029419097118079662, + 0.025756262242794037, + -0.01753503456711769, + 3.718666630447842e-5, + 0.003235205076634884, + -0.027941424399614334, + 0.011158659122884274, + -0.010710879229009151, + 0.01834103837609291, + -0.006349509581923485, + -0.01544838398694992, + 0.007692847400903702, + -0.01731114648282528, + -0.0010847452795132995, + 0.007271935231983662, + 0.0134512884542346, + 0.0072092460468411446, + 0.002834442537277937, + -0.02115309238433838, + -0.004016580060124397, + -0.008995885029435158, + -0.002711303299292922, + -0.021063536405563354, + -0.0093317199498415, + -0.009698898531496525, + 0.008158537559211254, + 0.02910565212368965, + -0.03152365982532501, + -0.013299043290317059, + -0.044527169317007065, + -0.009528742171823978, + 0.010675057768821716, + 0.014570736326277256, + 0.016200652346014977, + -1.4334183106257115e-5, + 0.03532082587480545, + -0.006197264883667231, + -0.003031465457752347, + -0.035410381853580475, + 0.031756505370140076, + -0.02199491672217846, + -0.015394650399684906, + -0.016720077022910118, + 0.0073346239514648914, + 0.014642381109297276, + -0.006868933793157339, + -0.026544352993369102, + 0.003302372060716152, + 0.02591746300458908, + 0.00783165916800499, + -0.01526031643152237, + 0.013693089596927166, + 0.02760111354291439, + -0.008422727696597576, + -0.003490439150482416, + -0.02837129309773445, + -0.006568921729922295, + 0.0019187340512871742, + -0.01833208277821541, + -0.0047912378795444965, + -0.00226912135258317, + 0.023338254541158676, + -0.009304853156208992, + -0.007670458406209946, + -0.014391625300049782, + -0.02489652670919895, + 0.023893501609563828, + -0.006452498957514763, + -0.014705070294439793, + 0.008319738321006298, + 0.028210092335939407, + 0.022084472700953484, + -0.0008015248458832502, + 0.009358586743474007, + -0.0037255233619362116, + 0.0034076001029461622, + 0.018663439899683, + 0.009233208373188972, + 0.0013243071734905243, + 0.006116664502769709, + -0.01269901916384697, + 0.007885392755270004, + -0.026329420506954193, + 0.0005574851529672742, + 0.0010086228139698505, + -0.030735567212104797, + 0.0005927477614022791, + -0.010075032711029053, + -0.011140747927129269, + -0.041410624980926514, + -0.009121263399720192, + -0.04402565583586693, + 0.0024627859238535166, + 0.017624590545892715, + 0.010245189070701599, + 0.0023597965482622385, + 0.01569914072751999, + 0.0035352171398699284, + 0.009179474785923958, + 0.013433377258479595, + -0.0038262736052274704, + -0.012385574169456959, + 0.026311509311199188, + -0.00523453950881958, + 0.003828512504696846, + 0.0024292024318128824, + 0.017194723710417747, + -0.0014004296390339732, + -0.02188744954764843, + 0.005239017307758331, + 0.003421033499762416, + -0.0026553310453891754, + 0.012027350254356861, + -0.01988139934837818, + -0.0002746845711953938, + 0.004567348398268223, + -0.003485961351543665, + -0.007043567486107349, + 0.021063536405563354, + -0.006036064121872187, + 0.005355439614504576, + 0.015546895563602448, + -0.0011955705704167485, + -0.016863366588950157, + -0.0014328935649245977, + -0.023069586604833603, + 0.015323005616664886, + 0.0009918310679495335, + -0.01998886652290821, + 0.004688248969614506, + -0.01260946411639452, + 0.009842188097536564, + -0.01877090521156788, + 0.01914704032242298, + 0.016720077022910118, + -0.012116906233131886, + 0.012528863735496998, + -0.012304973788559437, + 0.02353527769446373, + -0.01877090521156788, + -0.0023418855853378773, + -0.011597482487559319, + -0.011015369556844234, + 0.009958610869944096, + 0.004565109498798847, + 0.011767638847231865, + 0.005046471953392029, + 0.017794746905565262, + -0.009886966086924076, + 0.0018067893106490374, + 0.010603412985801697, + 0.017839524894952774, + -0.002543386071920395, + 0.0045404816046357155, + -0.004974827636033297, + 0.012716930359601974, + -0.007124167867004871, + -0.0006509590893983841, + 0.010827302001416683, + 0.031201258301734924, + 0.00026321024051867425, + 0.011445237323641777, + -0.033475976437330246, + -0.02942805178463459, + -0.006282343063503504, + 0.013863245956599712, + 0.00013097542978357524, + -0.016451409086585045, + -0.009501875378191471, + 0.008377949707210064, + -0.020185887813568115, + 0.018967928364872932, + -0.008861551061272621, + 0.026418976485729218, + -0.015797652304172516, + 0.003432227997109294, + 0.020042600110173225, + 0.026848843321204185, + -0.010728790424764156, + 0.007948081940412521, + -0.007898826152086258, + -0.004688248969614506, + 0.005355439614504576, + 0.019702287390828133, + -0.015430472791194916, + -0.006936100777238607, + -0.0009610462002456188, + 0.012304973788559437, + 0.01782161369919777, + -0.02529057115316391, + -0.011445237323641777, + -0.006779377814382315, + 0.014830448664724827, + -0.027027955278754234, + 0.003994191065430641, + 0.024753237143158913, + -0.009967566467821598, + 0.006076364312320948, + -0.005686796270310879, + -0.0028053370770066977, + 0.005825608037412167, + 0.009501875378191471, + -0.014266246929764748, + 0.0038016457110643387, + -0.006846544798463583, + 0.014328936114907265, + -0.004970349837094545, + -0.003038182156160474, + 0.013755778782069683, + -0.02027544379234314, + 0.0026441365480422974, + 0.021403847262263298, + -0.007580902893096209, + 0.02500399388372898, + 0.028425026684999466, + -0.03086094558238983, + 0.020687401294708252, + -0.0034277501981705427, + 0.0012649763375520706, + 0.013182621449232101, + -0.012896042317152023, + 0.006600266322493553, + 0.0029754932038486004, + -0.010934769175946712, + 0.013684133999049664, + -0.011409414932131767, + -0.006810722406953573, + -0.006139053497463465, + -0.004030013456940651, + 0.010146677494049072, + -0.00252547487616539, + 0.005180805921554565, + 0.010343700647354126, + 0.011113881133496761, + 0.004441970027983189, + -0.004822582472115755, + 0.0087809506803751, + -0.0025098025798797607, + 0.002145982114598155, + 0.025487594306468964, + -0.011149703525006771, + 0.022639719769358635, + 0.008404816500842571, + -0.01672903262078762, + 0.0029687765054404736, + -0.005758441053330898, + 0.0013858767924830317, + -0.014678203500807285, + -0.013827423565089703, + 0.00037557483301497996, + -0.009179474785923958, + -0.0024739804212003946, + 0.000999667216092348, + -0.016737988218665123, + 0.014391625300049782, + -0.006555488333106041, + -0.07479704916477203, + -0.01313784345984459, + -0.006568921729922295, + 0.008995885029435158, + -0.015143894590437412, + 0.025595061480998993, + 0.0011412773746997118, + -0.015331961214542389, + 0.03678954392671585, + -0.05176328122615814, + 0.003886723890900612, + -0.01585138589143753, + 0.024878615513443947, + -0.0044083865359425545, + -0.005973375402390957, + 0.005489773582667112, + 0.010863124392926693, + 0.026562264189124107, + 0.0018370143370702863, + 0.010746701620519161, + -0.027314534410834312, + -0.010316833853721619, + 0.0015403606230393052, + -0.009013796225190163, + -0.00971680972725153, + -0.01513493899255991, + -0.019756020978093147, + -0.03725523501634598, + -0.005077816545963287, + -0.012806486338376999, + -0.01057654619216919, + -0.006022630725055933, + 0.016737988218665123, + 0.017741013318300247, + 0.0076256804168224335, + 0.004305397626012564, + -0.0033359553199261427, + 0.006868933793157339, + -0.0008451833273284137, + -0.0013634877977892756, + 0.003548650536686182, + -0.0046210819855332375, + 0.01138254813849926, + -0.011472104117274284, + -0.021511314436793327, + 0.0031031102407723665, + -0.006430109962821007, + 8.136988617479801e-5, + -0.00608531991019845, + 0.009967566467821598, + -0.015000605024397373, + -0.016737988218665123, + 0.019272418692708015, + 0.0014440880622714758, + -0.022926297038793564, + 0.002628464251756668, + 0.021475492045283318, + -0.001541480072773993, + 0.008879462257027626, + -0.003515067044645548, + 0.02104562520980835, + 0.019594820216298103, + 0.010755657218396664, + 0.022353140637278557, + -0.005494251381605864, + -0.010182499885559082, + -0.028568316251039505, + -0.005297228693962097, + 0.042771872133016586, + 0.0051002055406570435, + -0.003687462070956826, + -0.020150065422058105, + -0.00014566819299943745, + 0.023624833673238754, + -0.00231501879170537, + 0.0042091249488294125, + 0.0008866029093042016, + 0.0025501027703285217, + -0.005386784207075834, + 0.00938545260578394, + -0.017884302884340286, + 0.0023172576911747456, + 0.004325547721236944, + 0.006143531296402216, + -0.0014765521045774221, + -0.005185283720493317, + 0.013505022041499615, + -0.003123260335996747, + -0.014902093447744846, + 0.003873290494084358, + 0.01862761750817299, + -0.004719593096524477, + -0.016827544197440147, + -0.02503981627523899, + -0.015940941870212555, + 0.02016797661781311, + -0.0077062807977199554, + -0.008163015358150005, + -0.008077938109636307, + -0.010039210319519043, + 0.010379523038864136, + -0.016845455393195152, + 0.012045261450111866, + -0.01988139934837818, + -0.007786881178617477, + 0.010263100266456604, + -0.007639113813638687, + -0.01939779706299305, + 0.006609221920371056, + 0.02240687422454357, + -0.004813626874238253, + -0.0078092701733112335, + -0.01567227393388748, + 0.027869779616594315, + 0.008664528839290142, + 0.014140868559479713, + 0.004468836821615696, + -0.0011239259038120508, + -0.01607527583837509, + 0.015645407140254974, + -0.005637540947645903, + -0.01654992066323757, + -0.020042600110173225, + -0.023069586604833603, + -0.010119810700416565, + 0.00291952071711421, + -0.0009694420732557774, + 0.00030225099180825055, + 0.005033038556575775, + -0.02192327193915844, + 0.010621324181556702, + 0.01988139934837818, + -0.0015537940198555589, + -0.02840711548924446, + 0.03406704589724541, + 0.005453951191157103, + -0.033690910786390305, + 0.016093187034130096, + 0.007965993136167526, + 0.0036986565683037043, + -0.002650853246450424, + 0.007554036099463701, + -0.018735084682703018, + -0.01774996891617775, + -0.04409730061888695, + 0.0023217354901134968, + -0.0166484322398901, + 0.0025680139660835266, + 0.008651095442473888, + -0.000512147496920079, + 0.0021717294584959745, + 0.02192327193915844, + -3.284880585852079e-5, + 0.0019422424957156181, + 0.009277986362576485, + 0.00551664037629962, + 0.004531526006758213, + 0.00037613455788232386, + 0.008906329050660133, + 0.020812779664993286, + -0.002169490559026599, + 0.006864455994218588, + 0.007974948734045029, + 0.012797530740499496, + -0.011122836731374264, + 0.0018011920619755983, + 0.003850901499390602, + 0.01929032988846302, + 0.011937795206904411, + 0.0030560933519154787, + -0.0011043355334550142, + 0.008960062637925148, + 0.002930715214461088, + -0.006430109962821007, + -0.011024325154721737, + 0.009851143695414066, + -0.008798861876130104, + -0.019093306735157967, + -0.014830448664724827, + -0.01625438593327999, + -0.0020687400829046965, + -0.011955706402659416, + 0.005404695402830839, + 0.017839524894952774, + -0.0070256562903523445, + 0.03507006913423538, + 0.005413651000708342, + -0.002610553056001663, + -0.010791479609906673, + 0.006456976756453514, + 0.018242526799440384, + -0.007052523083984852, + -0.024717414751648903, + 0.01227810699492693, + -0.0029866877011954784, + -0.02437710203230381, + -0.013397554866969585, + -0.0015694663161411881, + 0.010782524012029171, + -0.012358707375824451, + -0.015717051923274994, + 0.000662713311612606, + 0.00039488531183451414, + -0.01050490140914917, + -0.0025612972676753998, + -0.004321069922298193, + 0.01731114648282528, + -0.0019097784534096718, + 0.00926007516682148, + 0.0028299649711698294, + -0.023087497800588608, + -0.029410140588879585, + 0.017400702461600304, + 0.012564686127007008, + -0.007567469496279955, + -0.004930049646645784, + 0.005856952629983425, + -0.006103231105953455, + -0.012484085746109486, + -0.016021542251110077, + -0.019021661952137947, + 0.0017732058186084032, + 0.0023172576911747456, + -0.004809149075299501, + 0.007124167867004871, + 0.003962846472859383, + 0.020884424448013306, + -0.006380854174494743, + -0.004706159699708223, + 0.007889870554208755, + -0.005055427551269531, + 0.024502480402588844, + 0.007092823274433613, + -0.008789906278252602, + -0.0034053612034767866, + -0.00015798211097717285, + -0.005494251381605864, + -0.016496187075972557, + 0.02104562520980835, + -0.016057364642620087, + -0.011364636942744255, + 0.030843034386634827, + -0.010352656245231628, + 0.019379885867238045, + -0.009013796225190163, + 0.004583020694553852, + -0.017920125275850296, + -0.0007584260893054307, + -0.004124046768993139, + 0.02247851900756359, + -0.039297107607126236, + 0.00041447568219155073, + -0.013460244052112103, + 0.03243712708353996, + 0.008610795252025127, + -0.006698777433484793, + -0.0259891077876091, + 0.02503981627523899, + 0.004204647149890661, + 0.003839707002043724, + -0.02100980281829834, + -0.011328814551234245, + 0.004173302557319403, + -0.01010189950466156, + -0.005700229667127132, + -0.016782766208052635, + 0.021475492045283318, + 0.006698777433484793, + -0.010486990213394165, + 0.01573496311903, + 0.0008709306130185723, + -0.009833232499659061, + -0.013039331883192062, + 0.029947476461529732, + -0.004800193477421999, + 0.01480358187109232, + 0.006842066999524832, + -0.011624349281191826, + 0.015314050018787384, + -0.0041173300705850124, + -0.014902093447744846, + 0.01295873150229454, + 0.018842549994587898, + 0.0021314292680472136, + 0.029123561456799507, + 0.017543990164995193, + 0.0063226427882909775, + 0.029840009286999702, + 0.027511557564139366, + 0.0036695508752018213, + -0.013997578993439674, + 0.0009414558880962431, + -0.008306304924190044, + -0.006300254259258509, + -0.02324869856238365, + -0.008942151442170143, + 0.011651216074824333, + -0.03104005753993988, + -0.011991527862846851, + -0.016129009425640106, + -0.00922425277531147, + -0.002303824294358492, + 0.024359190836548805, + 0.007934648543596268, + -0.006842066999524832, + 0.013200532644987106, + 0.0019635120406746864, + -0.021511314436793327, + 0.011301948688924313, + 0.010263100266456604, + -0.012788575142621994, + 0.02444874681532383, + 0.025380127131938934, + 0.013755778782069683, + 0.004688248969614506, + -0.00469272630289197, + 0.0028411592356860638, + -0.013093065470457077, + 0.004585259594023228, + 0.005118116736412048, + 0.01213481742888689, + 0.01099745836108923, + 0.02529057115316391, + -0.021063536405563354, + 0.025523416697978973, + 0.009170519188046455, + -0.018735084682703018, + 0.021063536405563354, + -0.00840033870190382, + -0.01595885306596756, + -0.017696235328912735, + 0.007567469496279955, + -2.5484936486463994e-5, + 0.017884302884340286, + -0.015349872410297394, + 0.014140868559479713, + 0.015761829912662506, + -0.0003878887800965458, + 0.010898946784436703, + -0.008521239273250103, + 0.010451167821884155, + -0.010648190975189209, + -0.008991407230496407, + -0.030699744820594788, + -0.0086958734318614, + 0.01567227393388748, + 0.030681833624839783, + 0.010952680371701717, + -0.0022500907070934772, + -0.0032217716798186302, + -0.017517123371362686, + 0.005256928503513336, + 0.013075154274702072, + 0.012654241174459457, + -0.017991770058870316, + 0.011731816455721855, + -0.008467505685985088, + 0.01306619867682457, + -0.017669368535280228, + -0.001791117014363408, + -0.016773810610175133, + -0.01943361945450306, + 0.009842188097536564, + 0.003432227997109294, + -0.009860099293291569, + -0.005771874450147152, + 0.007652547210454941, + -0.03671789914369583, + -0.005789785645902157, + -0.014920004643499851, + 0.023983055725693703, + 0.00630473205819726, + 0.0018538060830906034, + -0.0020396343898028135, + -0.00039768393617123365, + 0.008297349326312542, + -0.0021090402733534575, + -0.017723102122545242, + -0.01273484155535698, + 0.000697975920047611, + 0.012815441936254501, + 0.042771872133016586, + 0.02496817149221897, + -0.027242889627814293, + -0.015833474695682526, + -0.0065062325447797775, + 0.003309088759124279, + 0.008942151442170143, + 0.011239259503781796, + -0.023481544107198715, + 0.0008720500627532601, + -0.019827665761113167, + -0.018430594354867935, + 0.022263584658503532, + -0.0027493645902723074, + 0.01003025472164154, + 0.016191696748137474, + 0.014284158125519753, + -0.01585138589143753, + -0.0012313929619267583, + 0.015717051923274994, + -0.014561780728399754, + -0.02298003062605858, + 0.010048165917396545, + 0.024806970730423927, + -0.023786034435033798, + 0.007003267295658588, + -0.004737504292279482, + -0.007428657729178667, + -0.031684860587120056, + 0.01570809632539749, + 0.009483964182436466, + 0.0020676206331700087, + -0.00010613767517497763, + -0.012636329978704453, + 0.015161805786192417, + -0.005771874450147152, + -0.01697978936135769, + -0.005024082958698273, + 0.01914704032242298, + -0.023624833673238754, + -0.010755657218396664, + -0.008897373452782631, + -0.012152728624641895, + -0.026418976485729218, + -0.004063596483319998, + 0.013039331883192062, + 0.005310662090778351, + 0.0017317862948402762, + 0.002449352527037263, + 0.016782766208052635, + -0.0023956189397722483, + -0.0071868570521473885, + 0.0096093425527215, + -0.003519544843584299, + 0.017266368493437767, + -0.006197264883667231, + -0.023212876170873642, + -0.02862204983830452, + 0.016200652346014977, + -0.005830085836350918, + 0.0028008592780679464, + -0.01092581357806921, + -0.0015985718928277493, + -0.023911412805318832, + -0.014946871437132359, + 0.014508048072457314, + -0.016702165827155113, + 0.008897373452782631, + -9.494319238001481e-5, + -0.017767880111932755, + -0.00463003758341074, + -0.006792811211198568, + -0.0024157690349966288, + 0.011633304879069328, + -0.005812174640595913, + -0.028102625161409378, + -0.00715551245957613, + -0.011624349281191826, + 0.002668764442205429, + 0.009179474785923958, + 0.0018067893106490374, + -0.00843616109341383, + -0.01054072380065918, + 0.008351082913577557, + -0.004813626874238253, + 0.00668982183560729, + 0.0046837711706757545, + -0.014490136876702309, + -0.011391503736376762, + -0.008722740225493908, + -0.020651578903198242, + -0.0074376133270561695, + 0.006600266322493553, + -0.01698874495923519, + -0.02023962140083313, + -0.013146799057722092, + 0.00162879703566432, + -0.004097179975360632, + 0.010164588689804077, + 0.0059644198045134544, + -0.0019982149824500084, + -0.0031814714893698692, + -0.0018761950777843595, + 0.010567590594291687, + -0.012322884984314442, + -0.0234278105199337, + -0.008431683294475079, + 0.005731574259698391, + 0.010522812604904175, + -0.008333171717822552, + 0.02006050944328308, + 0.0009638448245823383, + 0.02075904607772827, + -0.004424058832228184, + 0.008279438130557537, + 0.030502721667289734, + 0.01932615227997303, + -0.003944935277104378, + 0.004724070895463228, + 0.014337891712784767, + 0.01606632024049759, + 0.028048891574144363, + -0.006219653878360987, + 0.027332445606589317, + -0.0056554521434009075, + 0.002319496590644121, + -0.0015683468664065003, + -0.0028545926325023174, + 0.02701004408299923, + 0.004844971466809511, + -0.011543748900294304, + 0.003797168144956231, + 0.025756262242794037, + 0.01499164942651987, + -0.011884061619639397, + 0.009546653367578983, + -0.0023889022413641214, + -0.005377828609198332, + 0.0070659564808011055, + -0.0032374439761042595, + -0.014937915839254856, + 0.01092581357806921, + -0.011633304879069328, + -0.011006413958966732, + -0.01877090521156788, + 0.0010153393959626555, + 0.0016914861043915153, + -0.007303279358893633, + -0.0011261648032814264, + -0.01592303067445755, + 0.004298680927604437, + -0.012797530740499496, + 0.005982331000268459, + 0.0023709910456091166, + 0.019200773909687996, + -0.0041688247583806515, + 0.005118116736412048, + -0.01943361945450306, + -0.0033672999124974012, + -0.008355560712516308, + -0.0027135421987622976, + 0.009707854129374027, + 0.006125620100647211, + 0.011445237323641777, + -0.00794360414147377, + 0.016890233382582664, + 0.01695292256772518, + 0.003642684081569314, + 0.023732300847768784, + 0.01020936667919159, + -0.0010405270149931312, + 0.008028682321310043, + 0.003712089965119958, + -0.007043567486107349, + 0.0064032431691884995, + -0.008198837749660015, + 0.008525717072188854, + -0.04212707281112671, + -0.0032217716798186302, + -0.011498970910906792, + 0.04030013084411621, + -0.0038441848009824753, + -0.0027090643998235464, + 0.007616724818944931, + -0.007383879739791155, + -0.002762797987088561, + 0.0179290808737278, + -0.0035061114467680454, + 0.02840711548924446, + -0.005892775021493435, + 0.0077689699828624725, + 0.006201742682605982, + -0.008351082913577557, + -0.01434684731066227, + 0.0013175904750823975, + 0.005041994154453278, + -0.0005398538778536022, + 0.011803461238741875, + -0.027977246791124344, + -0.007674936205148697, + -0.009564564563333988, + -0.019344063475728035, + -0.012224373407661915 + ], + "6c9d3854-7c5d-4087-8fbf-29be8953f7cd": [ + 0.0015857894904911518, + -0.04615659639239311, + -0.009717177599668503, + 0.03938606008887291, + 0.0017530845943838358, + 0.01890575885772705, + -0.0219423770904541, + 0.04750620201230049, + -0.004740498494356871, + 0.05339949205517769, + -0.013203665614128113, + -0.003927921876311302, + 0.008806192316114902, + 0.006191326770931482, + 0.009750918485224247, + 0.0041894083842635155, + -0.0006716409116052091, + 0.012596341781318188, + -0.006691806484013796, + -0.0013257086975499988, + 0.02681221254169941, + -0.023280739784240723, + 0.006804273929446936, + 0.05182494968175888, + 0.04444709047675133, + 0.012393901124596596, + 0.00849128421396017, + 0.008007674477994442, + -0.030883532017469406, + 0.00277934898622334, + -0.034954849630594254, + 0.04280506819486618, + 0.00918295793235302, + -0.009092984721064568, + -0.02143627405166626, + -0.02025536820292473, + 0.010065826587378979, + 0.027599485591053963, + 0.024675333872437477, + -0.005848301574587822, + -0.02185240387916565, + -0.015914129093289375, + 0.04714630916714668, + -0.0281843151897192, + 0.0050947703421115875, + 0.028746651485562325, + -0.023370712995529175, + 0.02355066128075123, + 0.05016043409705162, + 0.01615031063556671, + -0.006236313842236996, + 0.01321491226553917, + 0.029601402580738068, + 0.05695345997810364, + 0.0019217856461182237, + -0.03630445525050163, + 0.018410902470350266, + 0.038913700729608536, + 0.01765737123787403, + -0.03713671490550041, + 0.025889981538057327, + 0.005016043316572905, + 0.025665046647191048, + -0.03153584152460098, + 0.0015703252283856273, + -0.01185405720025301, + 0.010273891501128674, + -0.008654361590743065, + -0.023843076080083847, + -0.013912209309637547, + -0.026024941354990005, + 0.005814561620354652, + 0.030883532017469406, + -0.020649002864956856, + 0.05384936183691025, + -0.017038801684975624, + 0.042917534708976746, + -0.016555191949009895, + 0.0008111706702038646, + -0.016656413674354553, + 0.020738977938890457, + -0.029039066284894943, + -0.0084125567227602, + -0.011359200812876225, + 0.03272799402475357, + -0.020963910967111588, + -0.04395223408937454, + -0.004802355542778969, + -0.01989547163248062, + 0.003840759629383683, + -0.0069392346777021885, + 0.027621978893876076, + -0.013912209309637547, + 0.008485660888254642, + -0.05380437523126602, + 0.0034752406645566225, + -0.0017741722986102104, + 0.016566438600420952, + -0.036866795271635056, + 0.007394727319478989, + -0.017319969832897186, + -0.00107968645170331, + -0.0018290000734850764, + -0.013304886408150196, + -0.0077208830043673515, + 0.01281003002077341, + -0.013417353853583336, + 0.0017376203322783113, + -0.01196652464568615, + 0.0036467534955590963, + -0.03688928857445717, + -0.03803645446896553, + 0.004554927349090576, + -0.00823823269456625, + -0.01284376997500658, + -0.03601204231381416, + 0.01781482622027397, + 0.01329363975673914, + 0.0010044738883152604, + -0.001165442750789225, + 0.050115447491407394, + 0.015306804329156876, + 0.036866795271635056, + -0.02642982453107834, + 0.0008027356234379113, + 0.002832771046087146, + -0.023213258013129234, + -0.00994773581624031, + 0.03605702891945839, + 0.001529555767774582, + 0.015947869047522545, + 0.01897324062883854, + 0.002728738822042942, + -0.006286924239248037, + -0.014587013982236385, + 0.009559723548591137, + 0.01215771958231926, + 0.08547517657279968, + -0.006629949435591698, + -0.03221064433455467, + -0.03461744636297226, + 0.04642651602625847, + 0.01654394529759884, + 0.01913069374859333, + 0.0046055372804403305, + -0.016993815079331398, + -0.05070027709007263, + 0.02348317950963974, + -0.011241110041737556, + -0.005336575210094452, + -0.02719460241496563, + -0.00830008927732706, + -0.026114916428923607, + 0.03376269340515137, + 0.01390096265822649, + 0.011314214207231998, + 0.013653534464538097, + -0.0027948133647441864, + -0.01215771958231926, + -0.006393768358975649, + 0.020052926614880562, + -0.017061294987797737, + 0.013001224026083946, + 0.005151004064828157, + 0.030658597126603127, + 0.0011450580786913633, + 0.01730872318148613, + 0.016139062121510506, + -0.0444021038711071, + 0.012382653541862965, + 0.021841157227754593, + -0.033605240285396576, + 0.024900268763303757, + 0.008794945664703846, + -0.004757368471473455, + -0.016262777149677277, + 0.0025178624782711267, + -0.02277463674545288, + 0.03736165165901184, + 0.016881346702575684, + 0.016015348955988884, + -0.002776537323370576, + 0.013777248561382294, + 0.033987630158662796, + 0.014283351600170135, + 0.013181172311306, + -0.006376897916197777, + 0.015554232522845268, + 0.0026317357551306486, + 0.016195297241210938, + 0.056323643773794174, + 0.013203665614128113, + 0.024585360661149025, + 0.031400881707668304, + 0.004923257511109114, + 0.009655321016907692, + 0.011218616738915443, + -0.009047997184097767, + 0.00830008927732706, + 0.019760511815547943, + -0.03502232953906059, + -0.04021831974387169, + -0.046021636575460434, + -0.011038669385015965, + 0.0006182189099490643, + -0.001702474313788116, + -0.011432304978370667, + -0.00914921797811985, + 0.027059640735387802, + -0.0009208263363689184, + 0.050115447491407394, + -0.03522476926445961, + 0.027397044003009796, + -0.015970362350344658, + 0.0009292613831348717, + 0.028656678274273872, + 0.01397969014942646, + 0.0026893753092736006, + -0.010127684101462364, + 0.0067199235782027245, + 0.03767655789852142, + -0.038531310856342316, + 0.00721477996557951, + -0.059202805161476135, + -0.016037842258810997, + -0.007630908861756325, + 0.014362079091370106, + 0.010296384803950787, + -0.023438192903995514, + -0.028881613165140152, + -0.0009559723548591137, + -0.013271145522594452, + -0.03212067112326622, + 0.010212033987045288, + 0.005820184946060181, + 0.04818100854754448, + 0.031850751489400864, + -0.004962621256709099, + -0.0005250818794593215, + 0.010588799603283405, + 0.03931858018040657, + 0.026474811136722565, + 0.009211074560880661, + -0.07067447900772095, + -0.04606662318110466, + 0.0006828876212239265, + 0.0019400615710765123, + 0.011989017948508263, + -0.0040516359731554985, + -0.007737752981483936, + -0.023235751315951347, + 0.009076113812625408, + 0.014362079091370106, + 0.0022577818017452955, + -0.01999669335782528, + 0.023393206298351288, + -0.010127684101462364, + 0.007816480472683907, + 0.012720055878162384, + -0.05978763848543167, + 0.004065694287419319, + 0.03938606008887291, + -0.020401574671268463, + -0.048900797963142395, + 0.04354735463857651, + -0.06073236092925072, + 0.010886838659644127, + -0.004287817049771547, + -0.00113592017441988, + -0.038666270673274994, + 0.036776818335056305, + 0.01900698058307171, + 0.007597168907523155, + -0.004464953206479549, + -0.007698389235883951, + -0.02015414647758007, + -0.0016841983888298273, + -0.02492276206612587, + -0.03889120742678642, + -0.025552580133080482, + -0.026699746027588844, + 0.021188845857977867, + 0.0776924341917038, + -0.005333763547241688, + 0.043524861335754395, + 0.007552181836217642, + -0.025395125150680542, + -0.004785485100001097, + -0.04001588001847267, + -0.0450994037091732, + 0.01935562863945961, + -0.003388078650459647, + -0.009666567668318748, + -0.005814561620354652, + 0.024810295552015305, + 0.008794945664703846, + -0.018208462744951248, + -0.01492441538721323, + -0.012123978696763515, + -0.0009025504114106297, + 0.04584168642759323, + -0.0450994037091732, + -0.006225067190825939, + -0.023685621097683907, + -0.010926201939582825, + 0.02031160145998001, + 0.05726836994290352, + -0.03445999324321747, + -0.01819721609354019, + 0.04046574980020523, + 0.008142635226249695, + -0.017871059477329254, + -0.02953392267227173, + -0.05294962227344513, + 0.03083854354918003, + 0.011629123240709305, + -0.02681221254169941, + 0.0024068010970950127, + -0.05744831636548042, + 0.010335748083889484, + -0.022212298586964607, + 0.02930898778140545, + 0.011319837532937527, + 0.006658066529780626, + 0.05402930825948715, + 0.0074284677393734455, + 0.02294333651661873, + -0.0029775728471577168, + 0.004695511423051357, + -0.03758658468723297, + 0.007467831484973431, + -0.004138797987252474, + -0.028881613165140152, + -0.008614998310804367, + -0.02597995474934578, + -0.003120968583971262, + -0.0032025075051933527, + -0.027532003819942474, + -0.036416925489902496, + 0.003632694948464632, + -0.010144554078578949, + 0.011319837532937527, + 0.010003970004618168, + 0.005938275251537561, + -0.030343687161803246, + 0.018219709396362305, + 0.03846383094787598, + -0.012123978696763515, + 0.0030225596856325865, + 0.03151334822177887, + 0.00045303249498829246, + -0.002838394371792674, + 0.07661274820566177, + -0.03272799402475357, + 0.04190532863140106, + -0.02108762599527836, + 0.015509245917201042, + 0.0006361433770507574, + -0.02095266431570053, + 0.011887798085808754, + 0.001985048409551382, + -0.032548047602176666, + -0.02521517686545849, + -0.0053506335243582726, + -0.004521186929196119, + 0.019974200055003166, + 0.02939896285533905, + 0.0046195960603654385, + 0.022336013615131378, + -0.006652443204075098, + -0.014699481427669525, + 0.00846316758543253, + -0.04294002801179886, + 0.008547517471015453, + 0.03724918141961098, + -0.04514439031481743, + 0.015363038517534733, + 0.01196652464568615, + -0.05470411479473114, + 0.004740498494356871, + -0.01814098097383976, + -0.0010431346017867327, + 0.009402269497513771, + 0.0037507857196033, + 0.018804538995027542, + 0.0024335121270269156, + 0.014508286491036415, + -0.03945354372262955, + 0.002326668007299304, + 0.0089748939499259, + -0.016465218737721443, + -0.006815520580857992, + -0.011651616543531418, + -0.029129041358828545, + -0.015295557677745819, + 0.00022950366837903857, + -0.022977076470851898, + -0.016780126839876175, + 0.014901922084391117, + -0.0050947703421115875, + -0.02620488964021206, + -0.023168271407485008, + 0.003385266987606883, + -0.02802686020731926, + 0.009503490291535854, + -0.00715854624286294, + -0.006483742035925388, + -0.032683007419109344, + 0.024427905678749084, + 0.011089279316365719, + -0.005249413195997477, + -0.028094341978430748, + 0.02415798418223858, + 0.039363566786050797, + -0.012146472930908203, + -0.0079345703125, + -0.026789719238877296, + -0.00357927312143147, + -0.06014753133058548, + 0.0245403740555048, + 0.059427741914987564, + -0.005280341487377882, + -0.00801329780369997, + 0.01673514023423195, + 0.005041348282247782, + 0.0007598574738949537, + 0.000708544219378382, + 0.025192683562636375, + 0.009970229119062424, + 0.0020609640050679445, + -0.011629123240709305, + -0.001536585041321814, + -0.031040985137224197, + 0.025102710351347923, + -0.010228903964161873, + -0.014654493890702724, + 0.03128841519355774, + 0.04055572301149368, + -0.00512569909915328, + -0.03470741957426071, + -0.002609242219477892, + -0.03187324479222298, + 0.03490986302495003, + -0.00812576524913311, + -0.0018233767477795482, + -0.020975159481167793, + 0.0031069102697074413, + 0.025125203654170036, + -0.00267109926789999, + -0.0031968841794878244, + 0.006489365361630917, + 0.060417454689741135, + 0.02265092171728611, + -8.685465581947938e-5, + -0.02204359881579876, + -0.00022827355132903904, + 0.0073328702710568905, + 0.025800008326768875, + -0.011252357624471188, + -0.0034415004774928093, + -0.009992723353207111, + -0.009891502559185028, + 0.021323807537555695, + -0.038441337645053864, + -0.019400615245103836, + -0.0400608666241169, + -0.006264430936425924, + -0.004833283834159374, + -0.0031715789809823036, + 0.022482220083475113, + -0.03529224917292595, + -0.00318282563239336, + -0.02667725272476673, + 0.010465085506439209, + 0.02067149616777897, + 0.009970229119062424, + 0.007923323661088943, + -0.026024941354990005, + 0.024562867358326912, + -0.010976811870932579, + 0.021076379343867302, + -0.02514769695699215, + -0.005238166078925133, + 0.04849591478705406, + 0.02521517686545849, + 0.010346994735300541, + 8.171454828698188e-5, + -7.578365330118686e-5, + -0.040420763194561005, + -0.0007197909872047603, + 0.005938275251537561, + 0.03999338671565056, + 0.043367404490709305, + -0.023955542594194412, + 0.00551089970394969, + 0.005825808271765709, + 0.03553967922925949, + -0.0015450200298801064, + 0.003837947966530919, + -0.01839965581893921, + -0.02325824648141861, + -0.00600013229995966, + -0.012832523323595524, + -0.011145513504743576, + -0.0551539845764637, + 0.026699746027588844, + -0.011392941698431969, + -0.007962687872350216, + -0.028229301795363426, + -0.010178294032812119, + 0.023168271407485008, + -0.013855976052582264, + -0.005494029261171818, + -0.00844629667699337, + 0.008659984916448593, + -0.01514935027807951, + -0.011100525967776775, + -0.026339851319789886, + 0.01679137349128723, + -0.038216400891542435, + 0.0038126427680253983, + -0.02155998907983303, + -0.02277463674545288, + -0.013574807904660702, + -0.010768747888505459, + -0.018028514459729195, + -0.014744468033313751, + 0.001139434752985835, + 0.004687076434493065, + 0.016712646931409836, + -0.0012160531478002667, + -0.006759286858141422, + -0.013552314601838589, + -0.018500877544283867, + -0.01302371732890606, + -0.005544639658182859, + -0.024495385587215424, + -0.019625550135970116, + 0.009689060971140862, + -0.0034752406645566225, + -0.010628163814544678, + 0.04008335992693901, + -0.0019977011252194643, + -0.00630941754207015, + -0.024450398981571198, + -0.0020370646379888058, + -0.03151334822177887, + 0.023145778104662895, + 0.001365072326734662, + 0.006050742696970701, + -0.00918295793235302, + 0.013597301207482815, + -0.016948828473687172, + -0.00835070013999939, + 0.016296517103910446, + -0.005114451982080936, + 0.012821276672184467, + 0.005336575210094452, + 0.01054381299763918, + 0.0007689954363740981, + 0.03985842317342758, + 0.03419006988406181, + 0.00815950520336628, + 0.02060401625931263, + -0.031558334827423096, + 0.00024971264065243304, + -0.04012834653258324, + 0.005651483777910471, + 0.04206278547644615, + 0.0004909902345389128, + 0.004178161732852459, + 0.01545301266014576, + 0.03657437860965729, + 0.0029129041358828545, + -0.02591247484087944, + 0.02924150787293911, + -0.028049353510141373, + -0.005249413195997477, + -0.013372366316616535, + 0.02789190039038658, + -0.012573848478496075, + 0.010178294032812119, + 0.003551156260073185, + -0.03916112706065178, + -0.0014578578993678093, + 0.010313254781067371, + 0.0019780192524194717, + -0.03135589510202408, + -0.026092423126101494, + 0.025507591664791107, + 0.024202970787882805, + 0.017454931512475014, + -0.014676987193524837, + 0.015093117021024227, + 0.0069167413748800755, + 0.0040516359731554985, + -0.017769839614629745, + -0.017398696392774582, + 0.023505672812461853, + 0.0001388268719892949, + 0.0015787602169439197, + -0.02070523612201214, + 0.001478945487178862, + -0.028094341978430748, + -0.020738977938890457, + 0.002131256042048335, + -0.04437961056828499, + 0.02319076471030712, + -0.015351791866123676, + -0.00037676558713428676, + 0.03826138749718666, + -0.05128510668873787, + 0.017331216484308243, + -0.016037842258810997, + -0.007687142584472895, + 0.027464523911476135, + -0.009666567668318748, + 0.030703583732247353, + 0.016296517103910446, + -0.00591015862300992, + 0.0017938540549948812, + 0.0024672523140907288, + -0.0006698835641145706, + -0.002578313695266843, + -0.028769144788384438, + 0.008659984916448593, + -0.008654361590743065, + 0.0007598574738949537, + -0.009835268370807171, + -0.01696007512509823, + -0.008249479345977306, + -0.0038744998164474964, + -0.0027357679791748524, + -0.007552181836217642, + 0.003407760290428996, + 0.005598061718046665, + 0.02251596190035343, + 0.011336707510054111, + -0.026857201009988785, + 0.006691806484013796, + -0.012720055878162384, + -0.027599485591053963, + 0.03524726256728172, + 0.018579604104161263, + -0.015441766008734703, + 0.03801396116614342, + -0.02079521119594574, + -0.007585921790450811, + -0.008255102671682835, + 0.00602262606844306, + -0.013439847156405449, + 0.0018641460919752717, + -0.0037620323710143566, + 0.026857201009988785, + 0.010054579935967922, + -0.020480303093791008, + 0.010937448590993881, + 0.020851444453001022, + -0.023393206298351288, + -0.053669415414333344, + 0.0010417287703603506, + 0.0021228210534900427, + 0.026249876245856285, + -0.00010684397420845926, + 0.0012842364376410842, + 0.009790281765162945, + -0.007209156174212694, + 0.0031715789809823036, + 0.010920578613877296, + 0.035494692623615265, + -0.021739937365055084, + -0.02847672998905182, + -0.01666766032576561, + -0.008907413110136986, + 0.0007893801084719598, + 0.0010318878339603543, + -0.014305845834314823, + -0.011910291388630867, + 0.008406933397054672, + -0.011674109846353531, + -0.00795144122093916, + 0.017005061730742455, + -0.022403493523597717, + 0.0064668720588088036, + 0.0024264827370643616, + -0.014800701290369034, + -0.0032193774823099375, + 0.01189904473721981, + -0.023843076080083847, + -0.021649962291121483, + -0.0036748703569173813, + 0.05182494968175888, + 0.011831563897430897, + -0.012393901124596596, + -0.01207899209111929, + 0.025777513161301613, + -0.03077106364071369, + 0.0008610780350863934, + -0.002049717353656888, + -0.0168251134455204, + -0.03151334822177887, + -0.02606992982327938, + -0.016206543892621994, + 0.00187539285980165, + 0.02076147124171257, + 0.009396646171808243, + -0.009503490291535854, + -0.013529820367693901, + 0.007456584367901087, + -0.006843637675046921, + 0.01705004833638668, + -0.015396778471767902, + -0.005249413195997477, + -0.02910654805600643, + 0.004380602855235338, + 0.021582482382655144, + -0.027554497122764587, + 0.01935562863945961, + 0.01670140027999878, + -0.006331911310553551, + -0.006714300252497196, + -0.001982236746698618, + -0.010420098900794983, + -0.025485098361968994, + 0.031175946816802025, + 0.017781086266040802, + 0.01537428516894579, + -0.01087559200823307, + 0.00985213927924633, + 0.0007732129306532443, + 0.013406106270849705, + 0.011297344230115414, + 0.027711952105164528, + 0.022864609956741333, + -0.0008336641476489604, + -0.027824418619275093, + -0.04773113876581192, + -0.005769574549049139, + 0.03160332143306732, + 0.0012694750912487507, + -0.01534054521471262, + -0.032075684517621994, + -0.0024953691754490137, + 0.010296384803950787, + -0.030096258968114853, + 0.017668619751930237, + -0.020772717893123627, + -0.012202706187963486, + -0.0031715789809823036, + 0.03099599853157997, + 0.00488670589402318, + -0.029646391049027443, + 0.05038536712527275, + -0.010358242318034172, + 0.0240230243653059, + -0.03131090849637985, + 0.00203987630084157, + 0.006320664193481207, + -0.0004822037008125335, + 0.03227812424302101, + -0.016521451994776726, + 0.035269755870103836, + -0.022279780358076096, + -0.03855380415916443, + 0.02008666656911373, + 0.025642553344368935, + 0.023055804893374443, + 0.02991631254553795, + 0.013237405568361282, + 0.03023122064769268, + 0.04581919312477112, + 0.037923987954854965, + 0.013653534464538097, + 0.0010839039459824562, + -0.022088585421442986, + -0.049215707927942276, + 0.01511561032384634, + -0.0070348321460187435, + 0.02962389774620533, + 0.006601832807064056, + -0.025417618453502655, + -0.05429923161864281, + 0.03164830803871155, + 0.023393206298351288, + -0.013496080413460732, + -0.018095994368195534, + 0.008165128529071808, + 0.031243426725268364, + -0.01983923837542534, + 0.015812907367944717, + -0.013855976052582264, + -0.034055110067129135, + -0.001507062348537147, + 0.006011379417032003, + 0.029736364260315895, + -0.012607588432729244, + -0.013057458214461803, + -0.0013559343060478568, + -0.026632266119122505, + -0.003691740334033966, + -0.008620621636509895, + 0.0002727333048824221, + 0.025170190259814262, + 0.023393206298351288, + 0.031625814735889435, + -0.021008899435400963, + -0.010667527094483376, + 0.030883532017469406, + 0.013608547858893871, + -0.009818398393690586, + 0.02553008496761322, + -0.0017980715492740273, + 0.022291027009487152, + 0.007006715051829815, + -0.0192544087767601, + 0.01621779054403305, + 0.02325824648141861, + 0.03817141428589821, + 0.020165393128991127, + -0.030478648841381073, + -0.0007689954363740981, + -0.019018227234482765, + 0.00693361135199666, + 0.01923191547393799, + -0.01006020326167345, + 0.0030197480227798223, + -0.011910291388630867, + 0.009880255907773972, + 0.01303496491163969, + 0.009936489164829254, + 0.008435050025582314, + -0.014868182130157948, + -0.023280739784240723, + 0.019535576924681664, + 0.009312295354902744, + 0.02606992982327938, + -0.0057583278976380825, + -0.015363038517534733, + -0.02287585660815239, + -0.025282656773924828, + -0.01009394321590662, + 0.002520674141123891, + 0.0322556309401989, + -0.01329363975673914, + 0.006101353093981743, + 0.043434884399175644, + -0.02469782717525959, + -0.012405147776007652, + 0.043142471462488174, + -0.014823195524513721, + 0.020334094762802124, + 0.038913700729608536, + 0.006011379417032003, + 0.009008633904159069, + 0.0018388410098850727, + 0.017769839614629745, + -0.011179253458976746, + 0.0029410209972411394, + -0.005733022466301918, + -0.028139328584074974, + -0.025395125150680542, + -0.005274718161672354, + -0.002069398993626237, + -0.01508187036961317, + -0.0038744998164474964, + 0.027104629203677177, + 0.013394859619438648, + 0.023978035897016525, + -0.02613740973174572, + 0.02332572638988495, + 0.01276504248380661, + 0.03317786380648613, + 0.003781714243814349, + 0.009177334606647491, + -0.0017643313622102141, + -0.04091561585664749, + -0.005024478305131197, + -0.01602659560739994, + -0.019209422171115875, + 0.004498693626374006, + 0.009413516148924828, + 0.0004607646260410547, + 0.005226919427514076, + 0.02277463674545288, + -0.021503755822777748, + 0.03502232953906059, + 0.03621448203921318, + 0.038216400891542435, + -0.011173630133271217, + -0.022223545238375664, + 0.01964804343879223, + 0.015722934156656265, + 0.0073103769682347775, + -0.04431213065981865, + 0.014542026445269585, + 0.009711554273962975, + -0.0033655851148068905, + 0.004048824310302734, + -0.006972975097596645, + 0.020941417664289474, + -0.005449042655527592, + 0.0012961861211806536, + 0.013259898871183395, + -0.03724918141961098, + -0.011887798085808754, + 0.0052100494503974915, + -0.006793027278035879, + 0.019693030044436455, + -0.008401310071349144, + -0.00852502416819334, + -0.019558070227503777, + -0.008772452361881733, + -0.0376315712928772, + -0.010380735620856285, + -0.006972975097596645, + -0.03236810117959976, + -0.010453838855028152, + 0.031400881707668304, + 0.017331216484308243, + 0.011370447464287281, + -0.014283351600170135, + 0.015351791866123676, + 0.0026317357551306486, + 0.018950747326016426, + 0.007316000293940306, + -0.03493235632777214, + -0.01826469600200653, + -0.0239330492913723, + -0.02703714743256569, + 0.02034534141421318, + -0.008283219300210476, + 0.0011148324701935053, + -0.002277463674545288, + -0.03068109042942524, + -0.028274288401007652, + -0.05038536712527275, + -0.023730607703328133, + -0.011876550503075123, + -0.01522807776927948, + 0.02415798418223858, + 0.025012735277414322, + -0.04098309949040413, + 0.012933744117617607, + -0.002621894935145974, + 6.458085408667102e-5, + -0.023910555988550186, + -0.003553967922925949, + 0.01954682357609272, + -0.006337534636259079, + -0.009250438772141933, + 0.005682412069290876, + 0.0372941680252552, + -0.03592206910252571, + 0.03392015025019646, + 0.0008638897561468184, + -0.01657768525183201, + 0.009497866965830326, + 0.006596209481358528, + -0.013361119665205479, + 0.01599285565316677, + -0.014542026445269585, + -0.015925375744700432, + -0.006967351771891117, + -0.005648672115057707, + -0.04714630916714668, + 0.01717376336455345, + -0.0031884489580988884, + 0.030793556943535805, + -0.005212861113250256, + 0.01292249746620655, + 0.006798650603741407, + -0.036169495433568954, + -0.025867488235235214, + -0.018444644287228584, + -0.019715525209903717, + 0.003463994013145566, + 0.00464771268889308, + 0.002247940981760621, + -0.00948662031441927, + 0.009278555400669575, + 0.005530581343919039, + -0.005353445187211037, + 0.00271608610637486, + -0.02015414647758007, + 0.02690218761563301, + 0.013372366316616535, + -0.0035427212715148926, + -0.04323244467377663, + -0.010217657312750816, + 0.015205584466457367, + 0.0069167413748800755, + -0.0365968719124794, + 0.03288545086979866, + -0.0034836758859455585, + 0.009880255907773972, + 0.025710033252835274, + -0.0007886771927587688, + -0.01760113798081875, + 0.01692633517086506, + -0.009014257229864597, + 0.008277595974504948, + -0.005381562281399965, + -0.005300023127347231, + -0.005775197874754667, + 0.0075071947649121284, + -0.02152624912559986, + 0.02825179509818554, + -0.017803579568862915, + 0.013001224026083946, + -0.009784658439457417, + -0.016870100051164627, + -0.007771492935717106, + 0.0030478648841381073, + -0.014328339137136936, + 0.019951706752181053, + 0.023663127794861794, + 0.01906321384012699, + -0.001303215278312564, + 0.010470708832144737, + 0.008311335928738117, + -0.0037254805210977793, + -0.04471701383590698, + -0.003832324640825391, + -0.02795938029885292, + -0.02235850691795349, + 0.0023660315200686455, + -0.0024517879355698824, + 0.016746386885643005, + 0.01800602115690708, + -0.03506731614470482, + -0.006978598423302174, + -0.01618405058979988, + 0.001529555767774582, + -0.01207899209111929, + -0.001110614975914359, + -0.01105553936213255, + 0.0046055372804403305, + -0.04894578456878662, + 0.017061294987797737, + 0.01083060447126627, + 0.008480037562549114, + -0.0020637756679207087, + 0.014620753936469555, + -0.004268135409802198, + -0.010003970004618168, + 0.03628196194767952, + -0.013113691471517086, + 0.017454931512475014, + 0.01781482622027397, + 0.023438192903995514, + 0.015160596929490566, + -0.010526943020522594, + 0.0034527473617345095, + 0.00908736139535904, + 0.004855777136981487, + 0.00698984507471323, + -0.029264001175761223, + 0.002787784207612276, + 0.012675069272518158, + -0.009509113617241383, + -0.021953623741865158, + -0.016161557286977768, + -0.001278612995520234, + 0.02726208232343197, + -0.004881082568317652, + 0.005375938955694437, + 0.034280043095350266, + 0.008181998506188393, + -0.005949522368609905, + -0.016993815079331398, + -0.00772650633007288, + 0.007355364039540291, + 0.010167047381401062, + 0.03522476926445961, + -0.016296517103910446, + 0.040038373321294785, + 0.011089279316365719, + 0.0064668720588088036, + 0.03176077455282211, + -0.026114916428923607, + 0.007006715051829815, + 0.0239330492913723, + 0.002810277510434389, + -0.026879694312810898, + -0.036169495433568954, + 0.008137011900544167, + 0.0021959247533231974, + -0.016532698646187782, + 0.019681783393025398, + 0.017668619751930237, + -0.014564520679414272, + -0.009031127206981182, + -0.006494988687336445, + 0.03380768373608589, + 0.0126188350841403, + 0.01011081412434578, + -0.0031069102697074413, + 0.02357315458357334, + 0.00693361135199666, + -0.04503192380070686, + -0.0017137210816144943, + -0.025552580133080482, + 0.004116304684430361, + 0.009109854698181152, + 0.02424795739352703, + -0.0011668485822156072, + 0.02172868885099888, + -0.015914129093289375, + 0.03423505648970604, + 0.021582482382655144, + 0.031558334827423096, + 0.0191644337028265, + -0.011364824138581753, + 0.02155998907983303, + -0.005226919427514076, + -0.004532433580607176, + 0.0035061691887676716, + 0.015216831117868423, + -0.016555191949009895, + 0.008277595974504948, + -0.000551441393326968, + -0.011606629006564617, + -0.019591810181736946, + -0.014508286491036415, + 0.003717045532539487, + 0.00013373068941291422, + 0.0032784228678792715, + 0.006399391684681177, + 0.013057458214461803, + 0.006652443204075098, + 0.004577420651912689, + -0.012371406890451908, + 0.047551192343235016, + -0.004495881963521242, + 0.0026275182608515024, + 0.017668619751930237, + -0.016555191949009895, + 0.009379776194691658, + -0.010661903768777847, + -0.0017348086694255471, + 0.003944791853427887, + 0.0026570409536361694, + -0.009930865839123726, + -0.009205451235175133, + 0.004105058033019304, + -0.025777513161301613, + -0.013203665614128113, + -0.03612450882792473, + 0.020975159481167793, + -0.03315537050366402, + -0.015734180808067322, + -0.017769839614629745, + -0.012483874335885048, + 0.012506367638707161, + -0.005156627390533686, + 0.005960769020020962, + -0.006202573888003826, + 0.012967484071850777, + -0.0076477788388729095, + 0.01219145953655243, + -0.013608547858893871, + -0.03266051411628723, + 0.021425027400255203, + 0.02492276206612587, + -0.00651185866445303, + -0.018579604104161263, + 0.01477820798754692, + 0.00522973109036684, + 0.011353577487170696, + 0.008367570117115974, + 0.01666766032576561, + 0.010515696369111538, + -0.012528861872851849, + -0.012866263277828693, + -0.013428600504994392, + 0.029376469552516937, + -0.04350236803293228, + -0.03378518670797348, + -0.008210116066038609, + 0.01810724101960659, + 0.01086434442549944, + -0.0018135358113795519, + 0.0140921575948596, + 0.00040453096153214574, + -0.0025178624782711267, + 0.0011738778557628393, + -0.001958337612450123, + -0.019749265164136887, + -0.009396646171808243, + 0.0032278127036988735, + 0.027689458802342415, + -0.009256062097847462, + -0.01663391850888729, + -0.012416394427418709, + -0.004085375927388668, + -0.014047170989215374, + 0.011910291388630867, + -0.015891635790467262, + 0.030186234042048454, + -0.01508187036961317, + -0.00809202529489994, + -0.003264364553615451, + -0.0003036617999896407, + 0.0060338727198541164, + 0.02993880584836006, + -0.013001224026083946, + 0.008035791106522083, + 0.006629949435591698, + -0.014575767330825329, + -0.023303233087062836, + -0.0412755124270916, + -0.025350138545036316, + 0.001985048409551382, + -0.051779963076114655, + 0.02332572638988495, + 0.017972281202673912, + -0.0563686303794384, + -0.01083060447126627, + -0.014080910943448544, + 0.03209817782044411, + 0.025057723745703697, + 0.010408852249383926, + 0.012663822621107101, + 0.0066636898554861546, + -0.023663127794861794, + -0.027554497122764587, + -0.0010086913825944066, + 0.012821276672184467, + -0.005468724295496941, + -0.02067149616777897, + 0.022707154974341393, + -0.0028004366904497147, + 0.0007999239605851471, + 0.020367834717035294, + 0.027059640735387802, + -0.016397738829255104, + -0.020851444453001022, + 0.018928252160549164, + 0.015273064374923706, + 0.012461381033062935, + 0.03302041068673134, + 0.017994774505496025, + -0.003722668858245015, + -0.02172868885099888, + -0.008738712407648563, + 0.02469782717525959, + -0.006202573888003826, + -0.01477820798754692, + -0.02674473263323307, + 0.020873937755823135, + -0.0017530845943838358, + -0.014688234776258469, + -0.01303496491163969, + 0.014137144200503826, + -0.02642982453107834, + 0.010487579740583897, + -0.004962621256709099, + 0.013788496144115925, + 0.011662863194942474, + 0.0011309996480122209, + -0.011106149293482304, + 0.00039996198029257357, + -0.018028514459729195, + -0.011584135703742504, + -0.013597301207482815, + 0.007777116261422634, + 0.016274023801088333, + 0.013855976052582264, + -0.021132612600922585, + 0.015025636181235313, + 0.002218418288975954, + -0.010723760351538658, + 0.003747974056750536, + 0.006123846396803856, + -0.01295623742043972, + -0.007709635887295008, + -0.00903675053268671, + -0.004836095497012138, + 0.032548047602176666, + 0.005353445187211037, + -0.006146340165287256, + -0.009452879428863525, + -0.00041612915811128914, + -0.004006648901849985, + 0.00744533771649003, + -0.02606992982327938, + 0.024045517668128014, + 0.01086434442549944, + 0.024495385587215424, + -0.014800701290369034, + 0.015925375744700432, + -0.019569316878914833, + 0.013158679008483887, + 0.030186234042048454, + -0.028769144788384438, + 0.014789454638957977, + 0.002101733349263668, + -0.008226986043155193, + -0.017095034942030907, + 0.007411597762256861, + 0.006489365361630917, + 0.041185539215803146, + -0.011662863194942474, + 0.00038484917604364455, + -0.0012997006997466087, + 0.028206808492541313, + -0.005111640319228172, + 0.005260659847408533, + 0.0014662928879261017, + -0.026182396337389946, + 0.00455773901194334, + -0.001050163758918643, + -0.024832788854837418, + -0.019153187051415443, + 0.012551355175673962, + -0.011094902642071247, + -0.016937581822276115, + -0.02521517686545849, + -0.0062306905165314674, + 0.00591015862300992, + 0.02175118401646614, + 0.024495385587215424, + -0.01522807776927948, + 0.020626509562134743, + -0.025102710351347923, + -0.014834442175924778, + -0.01496940292418003, + 0.0031378387939184904, + 0.021604975685477257, + -0.03151334822177887, + 0.013327379710972309, + 0.0009454285609535873, + 0.015947869047522545, + -0.002187489764764905, + 0.028544209897518158, + -0.00783897377550602, + -0.02735205739736557, + 0.002160778734833002, + 1.3811296639687498e-6, + 0.024585360661149025, + 0.020547783002257347, + 0.02834177017211914, + -0.00012055092520313337, + -0.015205584466457367, + -0.027329564094543457, + 0.016172803938388824, + 0.004951374605298042, + -0.006292547564953566, + -0.006405015010386705, + -0.020109159871935844, + -0.02719460241496563, + -0.008080778643488884, + -0.003964473493397236, + -0.013777248561382294, + 0.018028514459729195, + 0.01111739594489336, + -0.01989547163248062, + -0.0018894512904807925, + -0.004622407723218203, + -0.004164103418588638, + 0.005972015671432018, + -0.03576461225748062, + -0.00835070013999939, + -0.014362079091370106, + -0.012146472930908203, + -0.01852337084710598, + -0.004493070300668478, + -0.017252489924430847, + -0.02277463674545288, + 0.024270450696349144, + -0.009734048508107662, + 0.012202706187963486, + -0.00962720438838005, + -0.024652840569615364, + 0.0012631488498300314, + -0.01746617816388607, + 0.002411018591374159, + -0.004881082568317652, + -0.026407331228256226, + -0.018669577315449715, + 0.03567463904619217, + -0.02728457562625408, + 0.025867488235235214, + -0.008800568990409374, + 0.023595647886395454, + -0.040870629251003265, + -0.03326783701777458, + -0.0031603320967406034, + 0.002578313695266843, + -0.00459147896617651, + -0.015565479174256325, + 0.015250571072101593, + 0.0010185323189944029, + 0.00878369901329279, + -0.028971586376428604, + -0.005814561620354652, + -0.02284211665391922, + -0.013451093807816505, + -0.016004102304577827, + 0.019535576924681664, + -0.022932089865207672, + -0.004962621256709099, + 0.02006417326629162, + -0.01819721609354019, + -0.009042373858392239, + 0.010841851122677326, + -0.005825808271765709, + 0.008755582384765148, + -0.022257287055253983, + -0.007524064742028713, + 0.02204359881579876, + -0.0008210115483961999, + 0.021008899435400963, + -0.011488538235425949, + -0.008198869414627552, + 0.008063907735049725, + -0.014800701290369034, + 0.00607885979115963, + -0.021931130439043045, + -0.043817274272441864, + -0.003885746467858553, + 0.0055615101009607315, + 0.00827197264879942, + -0.024742813780903816, + 0.009104231372475624, + -0.012573848478496075, + 0.005904535297304392, + 0.016015348955988884, + 0.009610334411263466, + -0.008485660888254642, + -0.0015464258613064885, + -0.0033599617891013622, + 0.001137326005846262, + 0.004959809593856335, + 0.016678906977176666, + -0.011257980950176716, + -0.00042140105506405234, + -0.017454931512475014, + -0.011443551629781723, + 0.012135225348174572, + 0.028071846812963486, + -0.014215871691703796, + 0.01711752824485302, + 0.0067199235782027245, + 0.01412589754909277, + 0.001135217142291367, + 0.01883827894926071, + -0.03637193888425827, + 0.014991896227002144, + 0.0031125335954129696, + -0.007732129655778408, + -0.023213258013129234, + -0.004105058033019304, + 0.010296384803950787, + 0.016375243663787842, + -0.01204525213688612, + -0.008114518597722054, + -0.01852337084710598, + 0.01660017855465412, + -0.007456584367901087, + 0.015554232522845268, + 0.0056992825120687485, + -0.024135490879416466, + -0.008333830162882805, + -0.01548675261437893, + 0.003548344597220421, + -0.0061350935138762, + -0.01375475525856018, + -0.002157967071980238, + 0.007181039545685053, + -0.006337534636259079, + 0.03961099684238434, + 0.0006603941437788308, + 0.0021664020605385303, + 0.0050947703421115875, + -0.010116437450051308, + -0.07481327652931213, + 0.007327246945351362, + 0.01526181772351265, + -0.014901922084391117, + 0.014766961336135864, + -0.006995468400418758, + -0.014373325742781162, + -0.015531739220023155, + -0.0006937828729860485, + -0.014283351600170135, + 0.002752638189122081, + 0.01657768525183201, + 0.0014634812250733376, + -5.247194621915696e-6, + 0.015981609001755714, + -0.022414740175008774, + 0.020199133083224297, + 0.02795938029885292, + 0.0049345046281814575, + -0.0011506814043968916, + 0.03423505648970604, + 0.022482220083475113, + 0.00233510322868824, + -0.011752836406230927, + 0.008772452361881733, + 0.006539975758641958, + 0.038283880800008774, + 0.024607853963971138, + 0.009177334606647491, + -0.00994773581624031, + -0.00413598632439971, + 0.0258449949324131, + 0.0017137210816144943, + -0.007630908861756325, + -0.001928814803250134, + -0.009289802052080631, + -0.008035791106522083, + -0.027666965499520302, + 0.017736099660396576, + 0.008946776390075684, + -0.04620158299803734, + 0.012135225348174572, + 0.013653534464538097, + -0.017781086266040802, + -0.009700307622551918, + 0.0063262879848480225, + 0.01574542745947838, + 0.00994773581624031, + 0.02591247484087944, + 0.05384936183691025, + 0.02162746898829937, + -0.00698984507471323, + 0.018613344058394432, + 0.014519533142447472, + -0.0019147564889863133, + 0.019603056833148003, + -0.025710033252835274, + -0.00510320533066988, + -0.018275942653417587, + 0.012135225348174572, + 0.012540108524262905, + 0.01670140027999878, + -0.023663127794861794, + -0.008333830162882805, + 0.014721974730491638, + -0.010824981145560741, + -0.03353776037693024, + -0.027239589020609856, + 0.008913036435842514, + -0.012450134381651878, + -0.008457544259727001, + 0.002558632055297494, + 0.007968311198055744, + 0.026339851319789886, + -0.006393768358975649, + 0.0013573401374742389, + -0.0028510470874607563, + -0.0074509610421955585, + 0.005609308369457722, + -0.005308458581566811, + 0.005904535297304392, + 0.017229996621608734, + 0.010375112295150757, + 0.018253449350595474, + 0.005648672115057707, + -0.015734180808067322, + 0.0003590168198570609, + 0.02271840162575245, + -0.02492276206612587, + -0.017859812825918198, + 0.006854884326457977, + 0.013259898871183395, + -0.004037577658891678, + 0.001529555767774582, + 0.009818398393690586, + -0.01276504248380661, + 0.007417221087962389, + 0.005297211464494467, + -0.0005503870197571814, + -0.004566174000501633, + -0.004968244582414627, + 0.001789636560715735, + -0.007962687872350216, + -0.01065065711736679, + 0.00846316758543253, + -0.015351791866123676, + 0.0281843151897192, + -0.003061923198401928, + 0.009531606920063496, + 0.03149085491895676, + 0.016712646931409836, + -0.0150031428784132, + -0.00510320533066988, + 0.012461381033062935, + -0.010988058522343636, + -0.0004010163538623601, + 0.030658597126603127, + 0.001136623090133071, + 0.016161557286977768, + -0.014328339137136936, + -0.008423803374171257, + 0.0019569317810237408, + 0.006658066529780626, + -0.004689888097345829, + -0.0018261884106323123, + -0.0009447256452403963, + 0.01086434442549944, + 0.012517615221440792, + -0.014845688827335835, + 0.011145513504743576, + 0.022538455203175545, + -0.0010909332195296884, + -0.026092423126101494, + -0.006832391023635864, + 0.012303926981985569, + 0.013934703543782234, + 0.0016448348760604858, + -0.017106281593441963, + -0.009503490291535854, + -0.021515002474188805, + 0.022403493523597717, + -0.004473388195037842, + -0.017736099660396576, + -0.020424067974090576, + 0.003354338463395834, + 0.03767655789852142, + -0.011842810548841953, + 0.007732129655778408, + 0.0054293605498969555, + 0.0009608928230591118, + 0.00013364282494876534, + -0.002731550484895706, + 0.0018332175677642226, + 0.001590006984770298, + 0.006337534636259079, + 0.00969468429684639, + -0.025575073435902596, + 0.01405841764062643, + 0.0031125335954129696, + 0.00830008927732706, + 0.016746386885643005, + -0.009284178726375103, + -0.01292249746620655, + -0.0044087194837629795, + -0.00755780516192317, + -0.01090933196246624, + 0.01845589093863964, + 0.005151004064828157, + -0.003551156260073185, + 0.00844629667699337, + 0.014766961336135864, + 0.01017267070710659, + -0.004442459903657436, + -0.01609407551586628, + 0.0006723438273184001, + 0.004060070961713791, + -0.012360160239040852, + 0.005367503501474857, + -0.017027555033564568, + 0.011921538040041924, + -0.017005061730742455, + -0.005001985002309084, + 0.011477291584014893, + -0.012641328386962414, + -0.0188157856464386, + -0.0034246305003762245, + -0.015846647322177887, + 0.005474347621202469, + -0.0004688482149504125, + 0.00870497152209282, + 0.011527902446687222, + -0.002728738822042942, + 0.016690153628587723, + 0.01871456578373909, + 0.002299956977367401, + -0.0019527141703292727, + -0.03515728935599327, + -0.019906718283891678, + -0.0006389550399035215, + 0.020480303093791008, + -0.018129734322428703, + -0.010420098900794983, + -0.018444644287228584, + 0.018422149121761322, + -0.015059377066791058, + 0.007360987365245819, + -0.0074284677393734455, + -0.019794251769781113, + 0.008322582580149174, + 0.010577552951872349, + -0.004948562942445278, + -0.003747974056750536, + -0.011437928304076195, + 0.009188581258058548, + 0.006084483116865158, + -0.00767027260735631, + -0.011719096451997757, + -0.002412424422800541, + -0.020300354808568954, + 6.567916716448963e-5, + 0.0043074991554021835, + 0.012944990769028664, + 0.01737620308995247, + 0.0221110787242651, + -0.018275942653417587, + 0.009655321016907692, + -0.02379808947443962, + -0.01417088508605957, + 0.012393901124596596, + -0.01779233291745186, + 0.011072409339249134, + 0.005735834129154682, + -0.020649002864956856, + -0.006191326770931482, + 0.0015829778276383877, + -0.016678906977176666, + -0.004552115686237812, + 0.006416261661797762, + 0.005983262322843075, + 0.0029944428242743015, + -0.007850220426917076, + -0.014418312348425388, + 0.031108465045690536, + -0.01651020534336567, + 0.009734048508107662, + -0.014958156272768974, + -0.0013538255589082837, + 0.048675864934921265, + 0.005294399801641703, + 0.004214713349938393, + 0.009700307622551918, + -0.020424067974090576, + -0.007563428487628698, + -0.015273064374923706, + 0.029826337471604347, + 0.010077073238790035, + -0.00738910399377346, + -0.00687737762928009, + 0.0140921575948596, + -0.031175946816802025, + -0.020772717893123627, + -0.012776290066540241, + -0.033132877200841904, + -0.02355066128075123, + 0.017668619751930237, + -0.00010157206270378083, + -0.010217657312750816, + -0.017454931512475014, + -0.002128444379195571, + 0.0032840461935847998, + -0.016037842258810997, + 0.005519334692507982, + 0.009615957736968994, + 0.0016518640331923962, + -0.007130429148674011, + -0.003722668858245015, + -0.020997652783989906, + 0.024652840569615364, + -0.00759154511615634, + -0.011662863194942474, + -0.007540935184806585, + -0.001980830915272236, + 0.006438754964619875, + 0.004765803460031748, + -0.007355364039540291, + 0.0008863832335919142, + 0.01062254048883915, + 0.0027976250275969505, + 0.004937316291034222, + 0.008991763927042484, + -0.00046779384138062596, + -0.011218616738915443, + -0.0007985181291587651, + -0.019951706752181053, + -0.003573649562895298, + 8.07480319053866e-5, + -0.0032840461935847998, + 0.016206543892621994, + 0.007259766571223736, + 0.005972015671432018, + -0.022797130048274994, + -0.021312560886144638, + -0.0012287056306377053, + 0.02604743465781212, + 0.0067424168810248375, + 0.014373325742781162, + 0.0037564090453088284, + 0.003416195511817932, + -0.0016293706139549613, + 0.0019189739832654595, + -0.029488936066627502, + -0.019693030044436455, + -0.027599485591053963, + -0.02748701721429825, + -0.0068605076521635056, + -0.008260725997388363, + -0.019265655428171158, + 0.009824021719396114, + 0.017826072871685028, + -0.0024025836028158665, + 0.015655454248189926, + -0.003582084784284234, + -0.0043496740981936455, + 0.004338427446782589, + 0.041253019124269485, + 0.022695908322930336, + 0.014373325742781162, + 0.01145479828119278, + 0.04332241788506508, + 7.020422344794497e-5, + -0.0001913701999001205, + 0.025867488235235214, + -0.001785418950021267, + -0.0103188781067729, + 0.020907677710056305, + -0.001134514226578176, + 0.008980517275631428, + -0.014193378388881683, + 0.01200026459991932, + 0.009908372536301613, + 0.015464259311556816, + 0.013698522001504898, + 0.011944031342864037, + -0.019141940400004387, + 0.009154841303825378, + -0.012225199490785599, + -0.014632000587880611, + 0.004785485100001097, + -0.015509245917201042, + 0.005330951884388924, + -3.483851469354704e-5, + 0.010144554078578949, + -0.031175946816802025, + -0.005496841389685869, + -0.01003208663314581, + -1.6255044101853855e-5, + 0.025012735277414322, + 0.005657107103615999, + 0.006652443204075098, + 0.006691806484013796, + 0.009497866965830326, + -0.022381000220775604, + -0.019940458238124847, + 0.009272932074964046, + 0.0126188350841403, + -0.0035370977129787207, + -0.01028513815253973, + 0.002907280810177326, + -0.004802355542778969, + 0.01883827894926071, + -0.007805233355611563, + 0.005347821861505508, + -0.00505540706217289, + 0.012573848478496075, + -0.00396728515625, + 0.01017267070710659, + 0.004903575871139765, + -0.005932651925832033, + 0.006281300913542509, + 0.03270550072193146, + 0.0007619662210345268, + 0.012427641078829765, + 0.002129850210621953, + 0.010470708832144737, + 0.002492557279765606, + 0.011218616738915443, + 0.02147001400589943, + -0.003118156921118498, + -0.009458502754569054, + -0.011764083988964558, + 6.462478631874546e-5, + -0.002015976933762431, + -0.003045053221285343, + -0.007985181175172329, + 0.007709635887295008, + -0.0065455990843474865, + -0.008108895272016525, + 0.00215937290340662, + 0.005322516895830631, + 0.007411597762256861, + 0.016588931903243065, + 0.006455625407397747, + -0.02121133916079998, + -0.007282260339707136, + 0.02741953730583191, + -0.03864377737045288, + 0.007681519258767366, + -0.004675829783082008, + -0.012866263277828693, + -0.03326783701777458, + 0.010802487842738628, + 0.011094902642071247, + 0.023888062685728073, + -0.0239330492913723, + 0.022594688460230827, + 0.023595647886395454, + 0.005471535958349705, + -0.021931130439043045, + 0.0008793540182523429, + 0.021346300840377808, + 0.003854817943647504, + -0.00809202529489994, + -0.001760113867931068, + 0.007242896594107151, + 0.025665046647191048, + -0.003033806337043643, + 0.008806192316114902, + -0.02166120894253254, + 0.01958056353032589, + -0.010729383677244186, + -0.014305845834314823, + -0.008153881877660751, + -0.007552181836217642, + -0.012675069272518158, + 0.033380307257175446, + 0.006388145033270121, + 0.022628428414463997, + 0.013203665614128113, + -0.018152227625250816, + 0.002806060016155243, + 0.008170751854777336, + -0.005530581343919039, + -0.011089279316365719, + 0.014474546536803246, + -0.003658000146970153, + -0.0018346233991906047, + -0.007771492935717106, + 0.024810295552015305, + -0.015509245917201042, + -0.015104363672435284, + 0.006691806484013796, + 0.016363997012376785, + 0.018275942653417587, + -0.005792067851871252, + -0.02117759920656681, + -0.012652575969696045, + 0.014823195524513721, + -0.009064867161214352, + -0.010245774872601032, + -0.042377691715955734, + -0.03209817782044411, + 0.014632000587880611, + -0.02284211665391922, + -0.004622407723218203, + -0.002075022319331765, + -0.0017235620180144906, + -0.01182031724601984, + -0.006809897255152464, + -0.01094307191669941, + 0.0018711753655225039, + 0.008277595974504948, + -0.009835268370807171, + -0.0014930039178580046, + -0.014440806582570076, + -0.00386325316503644, + 0.023730607703328133, + 0.017319969832897186, + 0.004147232975810766, + 0.028544209897518158, + 0.010836227796971798, + -0.0008132794173434377, + -0.0003099880996160209, + -0.009284178726375103, + 0.03038867563009262, + -0.005108828656375408, + -1.982456524274312e-5, + 0.03401012346148491, + -0.029264001175761223, + 0.004228772129863501, + -0.009756541810929775, + -0.017454931512475014, + -0.00238711922429502, + 0.011640369892120361, + 0.03205319121479988, + 0.005420925561338663, + 0.001788230729289353, + 0.01760113798081875, + 0.009081737138330936, + 0.006455625407397747, + -0.026024941354990005, + -0.011876550503075123, + -0.006562469061464071, + 0.0048979525454342365, + -0.0018936687847599387, + 0.001107803313061595, + -0.0009630015701986849, + 0.0005517928511835635, + 0.02379808947443962, + -0.0032137541566044092, + 0.004554927349090576, + 0.020975159481167793, + 0.009942112490534782, + 0.001161225256510079, + 0.0026317357551306486, + 0.005207237787544727, + 0.03772154450416565, + 0.015689194202423096, + 0.013721015304327011, + 0.0018782045226544142, + 0.0016223413404077291, + -0.006978598423302174, + -0.011409811675548553, + -0.010746254585683346, + 0.0021115741692483425, + -0.005077900364995003, + 0.013608547858893871, + 0.0008463167469017208, + -0.0027118686120957136, + 0.006972975097596645, + 0.004628031048923731, + -0.0028229302261024714, + 0.015846647322177887, + 0.01848963089287281, + -0.013248652219772339, + -0.00812576524913311, + -0.01090933196246624, + -0.027104629203677177, + 0.021762430667877197, + 0.003638318507000804, + 0.0122701870277524, + -0.022639675065875053, + -0.00959908775985241, + 0.018512124195694923, + -0.02879163809120655, + -0.02242598682641983, + 0.009565346874296665, + -0.011347954161465168, + -0.035652145743370056, + 0.0032840461935847998, + -0.012540108524262905, + 0.007439714390784502, + 0.026339851319789886, + -0.004313122481107712, + 0.02355066128075123, + 0.006849261000752449, + -0.011049916036427021, + -0.026249876245856285, + 0.024562867358326912, + 0.020210381597280502, + -0.016948828473687172, + -0.01720750331878662, + -0.0012364378198981285, + -0.017747346311807632, + 0.0009686249541118741, + 0.00404601264744997, + -0.0007254143129102886, + -0.007816480472683907, + 0.0012315174099057913, + -0.010633787140250206, + 0.0036664351355284452, + -0.007771492935717106, + -0.00642188498750329, + 0.004566174000501633, + 0.000909579626750201, + -0.018950747326016426, + 0.005733022466301918, + -0.028499223291873932, + 0.01287750992923975, + 0.01996295340359211, + -0.010504449717700481, + -0.009289802052080631, + 0.011044292710721493, + -0.003722668858245015, + -0.008575634099543095, + 0.007316000293940306, + 0.016105322167277336, + 0.007439714390784502, + -0.022054845467209816, + -0.03113095834851265, + 0.030501142144203186, + -0.0035033575259149075, + 0.016532698646187782, + -0.03448248654603958, + -0.023730607703328133, + -0.006950481329113245, + -0.0011120208073407412, + 0.014328339137136936, + 0.013619794510304928, + 0.015621713362634182, + -0.006866130977869034, + -0.019569316878914833, + 0.004748933482915163, + 0.012832523323595524, + 0.021931130439043045, + -0.011809070594608784, + 0.009987100027501583, + 0.017859812825918198, + 0.0032221891451627016, + 0.006410638336092234, + 0.0287016648799181, + -0.0010445404332131147, + -0.013990936800837517, + -0.013259898871183395, + 0.007524064742028713, + 0.02521517686545849, + 0.0016687341267243028, + 0.011629123240709305, + 0.005294399801641703, + 0.01310244482010603, + -0.013529820367693901, + -0.00636565126478672, + 0.009368529543280602, + 0.006005756091326475, + -0.014823195524513721, + 0.004450894892215729, + -0.008991763927042484, + 0.006416261661797762, + -0.006095729768276215, + 0.010071449913084507, + -0.0002976869873236865, + -0.028499223291873932, + 0.023078298196196556, + 0.005212861113250256, + 0.002336509060114622, + -0.01193278469145298, + -6.062692409614101e-5, + -0.022459726780653, + 0.004085375927388668, + 0.009053620509803295, + -0.01477820798754692, + -0.0031659556552767754, + 0.017454931512475014, + 0.004293440841138363, + -0.022470973432064056, + 0.0038210777565836906, + 0.01571168750524521, + -0.016105322167277336, + -0.00922794546931982, + 0.01390096265822649, + -0.0011773924343287945, + -0.01679137349128723, + 0.04188283532857895, + -0.00767027260735631, + 0.044424597173929214, + 0.0032503060065209866, + 0.0035342860501259565, + -0.006410638336092234, + -0.0022591876331716776, + -0.03506731614470482, + -0.012281433679163456, + 0.005752704571932554, + 0.00037957727909088135, + -0.00551089970394969, + -0.010723760351538658, + 0.0017446496058255434, + 0.0018866396276280284, + -0.009289802052080631, + -0.01138731837272644, + 0.01287750992923975, + -0.0018796103540807962, + -0.010071449913084507, + 0.008851179853081703, + 0.014148390851914883, + 0.015160596929490566, + 0.0017685488564893603, + 0.003030994674190879, + -0.017893552780151367, + 0.00022106860706117004, + -0.009869009256362915, + 0.006866130977869034, + -0.00026447398704476655, + -7.305984036065638e-5, + -0.007130429148674011, + 0.005769574549049139, + 0.020649002864956856, + 0.015914129093289375, + 0.001305324025452137, + 0.0032840461935847998, + -0.01571168750524521, + 0.011347954161465168, + -0.012933744117617607, + -0.012742549180984497, + 0.006320664193481207, + -0.008963647298514843, + 0.001138028921559453, + -0.0035230393987149, + 0.011696603149175644, + 0.009857762604951859, + -0.01489067543298006, + -0.0212450809776783, + 0.006815520580857992, + 0.006956104654818773, + -0.010853097774088383, + -0.029376469552516937, + -0.0026008072309195995, + -0.02242598682641983, + -0.010161424055695534, + 0.012281433679163456, + 0.00954847689718008, + 0.00607885979115963, + -0.009604711085557938, + -0.018849525600671768, + 0.0012160531478002667, + -0.0063487812876701355, + 0.0018275942420586944, + 0.0014676987193524837, + -0.00461397273465991, + 0.008963647298514843, + 0.007321623619645834, + 0.01492441538721323, + 0.03160332143306732, + 0.004133174661546946, + -0.010954318568110466, + 0.01999669335782528, + 0.02568753995001316, + 0.029331481084227562, + -0.011494161561131477, + -0.006483742035925388, + -0.005898911971598864, + -0.002786378376185894, + 0.01390096265822649, + -0.015070623718202114, + -0.014980649575591087, + -0.008744335733354092, + -0.01708378829061985, + 0.0002743148652371019, + -0.012258939445018768, + -0.027846913784742355, + 0.009211074560880661, + -0.010026463307440281, + 0.006927988026291132, + 0.007141675800085068, + 0.0035174160730093718, + 0.02207733877003193, + 0.03430253639817238, + 0.011640369892120361, + -0.009621581062674522, + 0.008226986043155193, + -0.011190500110387802, + -0.0015871953219175339, + 0.017477424815297127, + -0.00823823269456625, + 0.02251596190035343, + 0.005544639658182859, + 0.0023027686402201653, + 0.006798650603741407, + -0.016813866794109344, + 0.03252555429935455, + -0.013833482749760151, + 0.001847275998443365, + 0.020367834717035294, + -0.007912077009677887, + 0.005730210803449154, + 0.004799543879926205, + -8.334005542565137e-5, + -0.02127882093191147, + -0.009008633904159069, + 0.005932651925832033, + -0.007366610690951347, + 0.017398696392774582, + 0.00761403888463974, + 0.010313254781067371, + 0.014721974730491638, + -0.012697562575340271, + -0.021931130439043045, + 0.002273246180266142, + -0.005440607666969299, + -0.002952267648652196, + -0.016678906977176666, + -0.004332804121077061, + 0.00318282563239336, + -0.018219709396362305, + -0.012596341781318188, + -0.019468097016215324, + -0.01868082582950592, + -0.018163474276661873, + 0.019310642033815384, + 0.009509113617241383, + -0.015756674110889435, + 0.0016125005204230547, + -7.435584848280996e-6, + 0.02955641597509384, + 0.004847342148423195, + -0.003638318507000804, + -0.016105322167277336, + 0.011252357624471188, + -0.019501836970448494, + -0.006978598423302174, + 0.0014452053001150489, + -0.018737059086561203, + 0.019670536741614342, + 0.002277463674545288, + 0.002635953249409795, + -0.02200985886156559, + 0.019951706752181053, + 0.015565479174256325, + 0.015351791866123676, + 0.004299064166843891, + 0.009492243640124798, + 0.003998213913291693, + -0.01200026459991932, + -0.030141247436404228, + 0.015666700899600983, + -0.003947603516280651, + 0.00602262606844306, + -0.01571168750524521, + 0.005032913293689489, + 0.013327379710972309, + -0.012641328386962414, + 0.024607853963971138, + 0.014497039839625359, + -0.0010536783374845982, + 0.01303496491163969, + 0.004628031048923731, + 0.005617743358016014, + 0.00518193282186985, + 0.01519433781504631, + 0.031040985137224197, + 0.005235354416072369, + -0.0007570457528345287, + 0.01303496491163969, + -0.00651185866445303, + 0.03817141428589821, + -0.0023168271873146296, + -0.002593778073787689, + -0.004242830444127321, + 0.008468790911138058, + 0.0056852237321436405, + 0.00693361135199666, + -0.0021790547762066126, + -0.017544904723763466, + -0.009047997184097767, + 0.002160778734833002, + -0.033447787165641785, + -0.004715193063020706, + -0.015812907367944717, + 0.007479078136384487, + -0.009475373663008213, + 0.0012258939677849412, + 0.016993815079331398, + 0.01200026459991932, + -0.016465218737721443, + 0.019569316878914833, + -0.020356588065624237, + 0.003098475281149149, + 0.007540935184806585, + -0.007248519919812679, + -0.013001224026083946, + 0.014080910943448544, + -0.039341073483228683, + -0.012787536717951298, + 0.008069531060755253, + 0.0027132744435220957, + -0.002067993162199855, + -0.007957064546644688, + 0.015284311026334763, + 0.010954318568110466, + -0.020997652783989906, + 0.009047997184097767, + 0.01306870486587286, + -0.007810856681317091, + 0.003663623472675681, + 0.0006554737337864935, + 0.00046990258852019906, + -0.018343422561883926, + 0.0075015714392066, + -0.0089748939499259, + 0.01640898548066616, + 0.013349873013794422, + -0.012697562575340271, + 0.011398565024137497, + -0.010420098900794983, + 0.010380735620856285, + 0.0258449949324131, + -0.014440806582570076, + 0.03403261676430702, + -0.009700307622551918, + 0.02034534141421318, + -0.01574542745947838, + 0.018984487280249596, + -0.019366875290870667, + -0.01964804343879223, + 0.004515563603490591, + -0.0004470576823223382, + 0.0033908903133124113, + -0.009666567668318748, + 0.010476332157850266, + -0.005108828656375408, + -0.01415963750332594, + -0.024562867358326912, + -0.000681130331940949, + -2.3855376639403403e-5, + 0.021762430667877197, + -0.009306672029197216, + 0.009452879428863525, + -0.0001730942603899166, + 0.013124938122928143, + 0.012562601827085018, + 0.0039897789247334, + -0.0011795011814683676, + -0.010375112295150757, + 0.020052926614880562, + 0.008839933201670647, + 0.014744468033313751, + 0.018017267808318138, + 0.02674473263323307, + -0.008035791106522083, + 0.006017002742737532, + -0.023055804893374443, + 0.0009243409149348736, + 0.010127684101462364, + -0.02091892436146736, + -0.0011738778557628393, + 0.004164103418588638, + -0.007040455471724272, + -0.008946776390075684, + -0.01670140027999878, + 0.018320929259061813, + 0.0005654998240061104, + 0.018635837361216545, + -0.018354669213294983, + 0.0028566704131662846, + -0.0016321822768077254, + -0.018253449350595474, + 0.010600046254694462, + 0.026654759421944618, + 0.0041528563015162945, + -0.004906387533992529, + -0.018512124195694923, + 0.02508021704852581, + -0.006382521241903305, + 0.009576593525707722, + 0.012900004163384438, + 0.012416394427418709, + -0.00419222004711628, + -0.01696007512509823, + -0.012427641078829765, + 0.004155667964369059, + 0.013147431425750256, + 0.012101485393941402, + -0.0029916311614215374, + 0.0007029208936728537, + -0.006264430936425924, + 0.007164169568568468, + -0.02294333651661873, + -0.012180212885141373, + 0.011404188349843025, + 0.004493070300668478, + -0.0041669150814414024, + -0.01612781547009945, + -0.007580298464745283, + 0.020289108157157898, + 0.004574608989059925, + -0.002613459713757038, + -0.01492441538721323, + -0.03203069791197777, + -0.011651616543531418, + -0.010695643723011017, + 0.019974200055003166, + 0.034055110067129135, + 0.024045517668128014, + -0.008688101544976234, + 0.01193278469145298, + 0.0037704675924032927, + -0.01518309023231268, + 3.90560417145025e-5, + -0.01727498322725296, + -0.0012371407356113195, + 0.009942112490534782, + 0.0018388410098850727, + -0.0150031428784132, + -0.00579769117757678, + 0.0002382901730015874, + -0.0093235420063138, + -0.030568622052669525, + 0.029578909277915955, + 0.01511561032384634, + -0.012337666936218739, + -0.011207370087504387, + -0.000850534241180867, + 0.0034499356988817453, + 0.000569365918636322, + 0.017871059477329254, + -0.0002514699299354106, + -0.024337932467460632, + 0.03113095834851265, + -0.0050947703421115875, + 0.031783271580934525, + 0.021931130439043045, + -0.005151004064828157, + 0.003632694948464632, + -0.02089643105864525, + 0.0010536783374845982, + -0.002818712731823325, + -0.018084747716784477, + 0.011123020201921463, + -0.0037086105439811945, + -0.007962687872350216, + 0.012213952839374542, + 0.005004796665161848, + -0.009666567668318748, + 0.010150177404284477, + -0.050790250301361084, + 0.01868082582950592, + -0.017162516713142395, + 0.012168966233730316, + -0.019344381988048553, + -0.0012729896698147058, + 0.006674936506897211, + -0.004251265432685614, + 0.018534617498517036, + -0.03045615553855896, + -0.014721974730491638, + -0.016420232132077217, + -0.006185703445225954, + -0.014643247239291668, + -0.002301362808793783, + 0.01306870486587286, + 0.01423836499452591, + 0.027059640735387802, + -0.016105322167277336, + 0.009447256103157997, + -0.01329363975673914, + 0.014260858297348022, + 0.02204359881579876, + -0.009846515022218227, + -0.010757501237094402, + 0.00029874136089347303, + -0.004754556808620691, + -0.043907247483730316, + 0.014148390851914883, + -0.0034246305003762245, + 0.0015154973370954394, + -0.023213258013129234, + 0.01753365807235241, + -0.011629123240709305, + 0.011989017948508263, + 0.009531606920063496, + 0.002409612759947777, + -0.010712513700127602, + -0.008232609368860722, + 0.018770799040794373, + 0.01276504248380661, + -0.00044494890607893467, + 0.0008153882226906717, + -0.006832391023635864, + -0.028994079679250717, + -0.01612781547009945, + -0.02508021704852581, + 0.0032503060065209866, + 0.006095729768276215, + -0.010802487842738628, + -0.011168006807565689, + -0.019974200055003166, + 0.014137144200503826, + -0.006944858003407717, + -0.029353974387049675, + -0.005179121159017086, + 0.025395125150680542, + 0.009059243835508823, + 0.01193278469145298, + 0.009666567668318748, + 0.015318051911890507, + -0.004883894231170416, + 0.006123846396803856, + -0.004948562942445278, + 0.005842678248882294, + 0.0007282260339707136, + 0.003118156921118498, + 0.017859812825918198, + 0.04082564264535904, + 0.027442030608654022, + -0.023955542594194412, + -0.023168271407485008, + -0.01215771958231926, + 0.005749892443418503, + 0.004726439714431763, + -0.010436968877911568, + 0.011488538235425949, + -0.0036748703569173813, + -0.024495385587215424, + -0.007383480668067932, + -0.021098872646689415, + -0.0073103769682347775, + 0.018703319132328033, + -0.005704905837774277, + -0.017488671466708183, + -0.013203665614128113, + 0.012821276672184467, + 0.006995468400418758, + 0.009306672029197216, + -0.011696603149175644, + 0.008440673351287842, + 0.005136945750564337, + -0.013271145522594452, + 0.00551089970394969, + -0.007619662210345268, + -0.008907413110136986, + -0.004180973395705223, + 0.023438192903995514, + 0.008406933397054672, + 0.020052926614880562, + -0.016262777149677277, + -0.03358274698257446, + -0.0005155924591235816, + 0.005738645792007446, + -0.01116238348186016, + -0.023753101006150246, + -0.0016125005204230547, + -0.0163864903151989, + -0.013496080413460732, + -0.004164103418588638, + -0.006090106442570686, + 0.014553274028003216, + -0.00863749161362648, + 0.023730607703328133, + 0.0008716218871995807, + 0.014733221381902695, + -0.0174324382096529, + 0.015408025123178959, + 0.0009250438306480646, + 0.005752704571932554, + -0.00477423844859004, + -0.031153453513979912, + 0.006208197213709354, + -0.013226158916950226, + 0.00029382092179730535, + -0.01522807776927948, + 0.006809897255152464, + 0.00011440036905696616, + 0.0008027356234379113, + -0.01518309023231268, + -0.012123978696763515, + 0.02251596190035343, + -0.008103271946310997, + -0.017398696392774582, + 0.030096258968114853, + -0.0032615528907626867, + -0.03796897456049919, + -0.012596341781318188, + 0.014688234776258469, + -0.0011696603614836931, + -0.0019091330468654633, + -0.0005212158430367708, + -0.01923191547393799, + 0.0016799808945506811, + -0.000995335984043777, + -0.02332572638988495, + -0.007580298464745283, + -0.0036495651584118605, + -0.010465085506439209, + 0.019884224981069565, + 0.00402351887896657, + 0.002747014630585909, + 0.01839965581893921, + 0.003911051899194717, + 0.007743376307189465, + -0.014755714684724808, + -0.003090040059760213, + -0.016622671857476234, + 0.004403096158057451, + 0.007130429148674011, + -0.01045946218073368, + 0.003286857856437564, + 0.004346862435340881, + 0.007917700335383415, + -0.004082564264535904, + 0.010420098900794983, + 0.00477423844859004, + 0.019794251769781113, + 0.010678773745894432, + 0.0003637615591287613, + 0.005612120032310486, + -0.00903675053268671, + -0.012540108524262905, + -0.00563742546364665, + 0.00038660646532662213, + 0.0003676276246551424, + -0.03290794417262077, + -0.0034274421632289886, + -0.01715126819908619, + -0.01909695379436016, + 0.0033065397292375565, + 0.003610201645642519, + 0.001675763283856213, + -0.00569365918636322, + 0.006691806484013796, + 0.015284311026334763, + 0.025867488235235214, + -0.001674357452429831, + -0.006084483116865158, + 0.013541067950427532, + 0.016240283846855164, + -0.01423836499452591, + -0.007017961703240871, + -0.0017741722986102104, + -0.009391022846102715, + 0.007878337055444717, + -0.002863699570298195, + 0.0005830728332512081, + -0.00279059587046504, + 0.006674936506897211, + -0.0023196388501673937, + -8.72061209520325e-5, + -0.004706758074462414, + -0.00039609591476619244, + 0.008288842625916004, + -0.0023491615429520607, + 0.014249611645936966, + -0.005277529824525118, + 0.011156760156154633, + -0.018950747326016426, + -0.03106347844004631, + -0.004805167205631733, + 0.023145778104662895, + 0.0024644406512379646, + -0.009953359141945839, + -0.01394595019519329, + 0.011027422733604908, + 0.0031434621196240187, + 0.003610201645642519, + 0.0022830870002508163, + -0.011606629006564617, + 0.006011379417032003, + 0.004456518217921257, + 0.007462207693606615, + 0.017072541639208794, + 0.013383612968027592, + 0.0029353974387049675, + 0.009587840177118778, + -0.009076113812625408, + -0.015542985871434212, + -0.010577552951872349, + 0.0036664351355284452, + -0.017297476530075073, + -0.002276057843118906, + 0.0016363997710868716, + 0.01651020534336567, + 0.023123284801840782, + -0.001222379389218986, + -0.0012926714261993766, + -0.01574542745947838, + -0.0007879742770455778, + 0.00402351887896657, + -0.00607885979115963, + -0.005300023127347231, + 0.0010902303038164973, + 0.0018697695340961218, + -0.038913700729608536, + 0.019771758466959, + 0.006258807610720396, + 0.018635837361216545, + -0.0438847541809082, + 0.00715854624286294, + -0.020435314625501633, + 0.011010552756488323, + -0.007973934523761272, + -0.02216731198132038, + -0.005831431597471237, + 0.01503688283264637, + 0.0023688434157520533, + 0.0003287912404630333, + 0.005297211464494467, + -0.01803976111114025, + -0.004802355542778969, + -0.02057027630507946, + -0.023213258013129234, + -0.015205584466457367, + -0.01518309023231268, + -0.011207370087504387, + -0.0035961430985480547, + 0.009812775067985058, + 0.014294598251581192, + 0.010757501237094402, + 0.00943600945174694, + 0.0019260031403973699, + -0.012135225348174572, + 0.012393901124596596, + 0.018894512206315994, + -0.019625550135970116, + -0.006674936506897211, + 0.020649002864956856, + 0.005988885648548603, + -0.002673910930752754, + 0.012675069272518158, + 0.002018788829445839, + 0.017803579568862915, + -0.0029157157987356186, + -0.014654493890702724, + 0.019186927005648613, + 0.010965565219521523, + -0.0234156996011734, + 0.006039496045559645, + 0.00630941754207015, + 0.003953226841986179, + 0.011651616543531418, + -0.006674936506897211, + -0.001989266136661172, + 0.010813734494149685, + -0.015306804329156876, + -0.017511164769530296, + -0.011049916036427021, + -0.0008329612319357693, + -0.006433131638914347, + 0.011831563897430897, + 0.012720055878162384, + 0.0073328702710568905, + -0.0077040125615894794, + 0.006146340165287256, + -0.021132612600922585, + 0.0035314743872731924, + 0.007355364039540291, + -0.013586054556071758, + 0.016532698646187782, + 0.006494988687336445, + 0.01148291490972042, + -0.00527190649881959, + -0.0020904866978526115, + -0.0025951839052140713, + -0.007743376307189465, + -0.002474281471222639, + -0.009767788462340832, + 0.02908405289053917, + -0.03454996645450592, + 0.007765869610011578, + 0.011977771297097206, + -0.005738645792007446, + 0.009537230245769024, + -0.011437928304076195, + 0.008614998310804367, + 0.023460686206817627, + 0.002786378376185894, + -0.00895802304148674, + 0.009216698817908764, + 0.016622671857476234, + 0.02604743465781212, + -0.01431709248572588, + 0.033605240285396576, + 0.0060338727198541164, + 0.00715854624286294, + -0.008283219300210476, + 0.004048824310302734, + -0.010903708636760712, + -0.023775596171617508, + 0.004285005386918783, + -0.008941153064370155, + -0.026834707707166672, + -0.00113592017441988, + 0.01189904473721981, + 0.001934438245370984, + 0.01791604608297348, + -0.012855016626417637, + -0.019625550135970116, + 0.015689194202423096, + 0.010695643723011017, + 0.012585095129907131, + -0.010167047381401062, + -0.023145778104662895, + -0.01009394321590662, + 0.009964605793356895, + -0.02658727951347828, + -0.012753795832395554, + 0.0005883447593078017, + 0.0029607026372104883, + -0.0041669150814414024, + -0.013563561253249645, + -0.004889517556875944, + -0.005702094174921513, + 0.004158479627221823, + 0.013057458214461803, + -0.0055615101009607315, + -0.004234395455569029, + 0.003773279255256057, + -0.01113426685333252, + 0.006759286858141422, + -0.0017994773807004094, + -0.003149085445329547, + -0.00819324515759945, + -0.004546492360532284, + -0.02894909307360649, + -0.007844597101211548, + -0.006045119371265173, + 0.026024941354990005, + 0.002129850210621953, + 0.042467668652534485, + -0.028994079679250717, + -0.029803844168782234, + -0.006787403952330351, + 0.007883960381150246, + 0.010324501432478428, + 0.01431709248572588, + 0.006556845735758543, + -0.0028538587503135204, + -0.028004366904497147, + 0.028049353510141373, + 0.02478780224919319, + -0.016341503709554672, + 0.01306870486587286, + -0.009188581258058548, + 0.01618405058979988, + -0.018602097406983376, + 0.016757633537054062, + 0.015531739220023155, + -0.012438887730240822, + -0.024292945861816406, + 0.00653435243293643, + 0.020367834717035294, + -0.004183785058557987, + 0.007889583706855774, + -0.009166087955236435, + 0.009104231372475624, + -0.0407581627368927, + 0.0070460787974298, + 0.020244121551513672, + -0.010425722226500511, + -0.00042667295201681554, + -0.017477424815297127, + 0.019749265164136887, + -0.01514935027807951, + 0.0008350699790753424, + -0.007456584367901087, + 0.004459329880774021, + -0.0065680923871695995, + -0.031693294644355774, + -0.009008633904159069, + -0.005201614461839199, + -0.0024855281226336956, + 0.0073103769682347775, + -0.018320929259061813, + -0.00980715174227953, + 0.002520674141123891, + 0.0140921575948596, + -0.006528729107230902, + -0.01765737123787403, + -0.0022549701388925314, + 0.0018571169348433614, + -0.004397472832351923, + 0.029353974387049675, + 0.011353577487170696, + -0.004026330541819334, + -0.021188845857977867, + -0.0018388410098850727, + 0.006517482455819845, + 0.002986007835716009, + 0.00687737762928009, + -0.0012287056306377053, + -0.020435314625501633, + 0.0003036617999896407, + -0.009734048508107662, + -0.04552678018808365, + 0.005325328558683395, + -0.009278555400669575, + -0.005479970946907997, + 0.005260659847408533, + 0.00926168542355299, + -0.0017221560701727867, + -0.0032334360294044018, + -0.007552181836217642, + -0.0201204065233469, + -0.013586054556071758, + -0.01051007304340601, + -0.012416394427418709, + -0.005165062379091978, + -0.017713606357574463, + -0.005491217598319054, + -0.005061030387878418, + 0.008316959254443645, + 0.003891369793564081, + 0.02831927500665188, + 0.03180576488375664, + -0.005870794877409935, + 0.00047939203795976937, + -0.018433397635817528, + -0.032075684517621994, + 0.021031392738223076, + -0.002131256042048335, + 0.016274023801088333, + -0.029488936066627502, + -0.016881346702575684, + -0.005921405274420977, + -0.00812576524913311, + 0.010178294032812119, + -0.01087559200823307, + -0.024427905678749084, + -0.02386556938290596, + -0.008609374985098839, + 0.018467137590050697, + -0.013473587110638618, + -0.02521517686545849, + -0.013586054556071758, + -0.0027048394549638033, + 0.016915088519454002, + -0.013158679008483887, + -0.0003381049318704754, + -0.010819357819855213, + 0.004754556808620691, + -0.006618702784180641, + 0.0036664351355284452, + 0.003607389982789755, + 0.020592769607901573, + -0.009458502754569054, + -0.00830008927732706, + -0.010043333284556866, + 0.029488936066627502, + 0.037316661328077316, + -0.00012555923603940755, + 0.013822236098349094, + 0.03349277377128601, + 0.023168271407485008, + 0.009351659566164017, + 0.011145513504743576, + 0.0015436141984537244, + 0.021829910576343536, + -0.021683702245354652, + 0.008699348196387291, + -0.005091958679258823, + 0.006399391684681177, + 0.006410638336092234, + 0.020693989470601082, + -0.015126856975257397, + -0.03038867563009262, + -0.013687275350093842, + -0.011527902446687222, + 0.006888624280691147, + -0.0003975017461925745, + -0.03326783701777458, + 0.00682114390656352, + -0.014227118343114853, + 0.016757633537054062, + -0.012944990769028664, + -0.008395686745643616, + -0.0032278127036988735, + 0.0009067679056897759, + -0.0007240084814839065, + 0.0004962621023878455, + 0.0004041795036755502, + -0.0008167940541170537, + 0.039363566786050797, + -0.010993682779371738, + 0.006112599745392799, + -0.014407065697014332, + 0.014452053233981133, + -0.0019105388782918453, + 0.015104363672435284, + -0.006095729768276215, + 0.028049353510141373, + 0.02748701721429825, + -0.027756938710808754, + -0.0009278555517084897, + 0.009700307622551918, + -0.020750224590301514, + 0.018422149121761322, + -0.010914955288171768, + -0.015059377066791058, + -0.02261718176305294, + 0.015599220059812069, + -0.014901922084391117, + -0.004552115686237812, + -0.00551089970394969, + 0.008283219300210476, + 0.0071135591715574265, + -0.012450134381651878, + -0.02230227366089821, + 0.008311335928738117, + -0.009790281765162945, + 0.0035933314356952906, + -0.0058370549231767654, + 0.0006189218256622553, + -0.008339453488588333, + 0.011145513504743576, + -0.005201614461839199, + 0.022729648277163506, + 0.0004259700363036245, + -0.0071360524743795395, + 0.022144818678498268, + 0.009593463502824306, + -0.030636103823781013, + -0.005446230992674828, + -0.006455625407397747, + -0.004923257511109114, + 0.0038998050149530172, + -0.02645231783390045, + 0.02057027630507946, + -0.008851179853081703, + 0.014024676755070686, + 0.000206131546292454 + ], + "22aacff5-a1e6-48b8-87da-3bc0a6b6275b": [ + -0.016329854726791382, + 0.0035127466544508934, + -0.010248810984194279, + -0.02387327142059803, + -0.03789988532662392, + -0.029978686943650246, + 0.000894943019375205, + 0.047064103186130524, + 0.0022986705880612135, + 0.025030985474586487, + -0.024714136496186256, + 0.020619487389922142, + -0.04084900766611099, + -0.013258866034448147, + -0.01602519303560257, + -0.00457296846434474, + -0.048599593341350555, + 0.007890732027590275, + -0.015196513384580612, + -0.023324880748987198, + 0.052889227867126465, + -0.030393026769161224, + -0.001850818283855915, + 0.021643148735165596, + -0.028223836794495583, + -0.03146543353796005, + 0.013441663235425949, + -0.0023382767103612423, + 0.005864732898771763, + -0.007750587537884712, + -0.011906169354915619, + -0.0010396571597084403, + 0.004853256978094578, + -0.01225348375737667, + 0.022045303136110306, + 0.023251762613654137, + -0.009840564802289009, + 0.009444504976272583, + -0.034926388412714005, + -0.002228598576039076, + -0.006653806194663048, + 0.01691480353474617, + 0.011473550461232662, + 0.0016329854261130095, + -0.03804612159729004, + 0.042043279856443405, + 0.052645500749349594, + -0.011717279441654682, + 0.0067573911510407925, + -0.0025149802677333355, + 0.02314208447933197, + 0.00576724112033844, + -0.019461773335933685, + 0.012564238160848618, + 0.007305781822651625, + 0.012308322824537754, + 0.023263948038220406, + 0.026639597490429878, + -0.004697879776358604, + -0.046259794384241104, + -0.014599377289414406, + 0.006074949167668819, + 0.014014426618814468, + 0.004566875286400318, + -0.0069401878863573074, + -0.03599879890680313, + 0.015452428720891476, + 0.006531941704452038, + -0.017621617764234543, + 0.005697169341146946, + 0.039142902940511703, + 0.029808076098561287, + -0.035803813487291336, + -0.010053828358650208, + -0.01611049845814705, + -0.016939176246523857, + 0.02008328214287758, + -0.05162183567881584, + 0.01096171885728836, + 0.00910328421741724, + -0.02225247211754322, + 0.014709055423736572, + 0.04742969572544098, + -0.020582927390933037, + 0.020351385697722435, + 0.039045412093400955, + -0.02783386968076229, + -0.0229958463460207, + -0.015878954902291298, + -0.04701535403728485, + 0.031831029802560806, + 0.004889816511422396, + 0.009895403869450092, + 0.03738805279135704, + -0.013222306966781616, + -0.008250231854617596, + 0.010267090983688831, + 0.01892556995153427, + -0.008158833719789982, + -0.03772927448153496, + -0.005340715404599905, + 0.023129897192120552, + -0.02678583562374115, + -0.004850210156291723, + 0.01991267316043377, + -0.01464812271296978, + 0.03090485744178295, + 0.0029795889277011156, + -0.004545548930764198, + 0.00931045413017273, + 0.020180774852633476, + 0.014367833733558655, + -0.0003926324425265193, + -0.024056067690253258, + 0.03212350234389305, + -0.08082059025764465, + -0.01108967699110508, + -0.0015217839973047376, + -0.018742771819233894, + -0.034926388412714005, + 0.013271053321659565, + 0.02590841054916382, + 0.0035371193662285805, + -0.028370074927806854, + 0.01419722381979227, + -0.0016268921317532659, + -0.031221706420183182, + 0.02008328214287758, + 4.3200041545787826e-5, + 0.01731695793569088, + 0.02127755619585514, + 0.0032385513186454773, + -0.0207900982350111, + 0.011924449354410172, + -0.03246472403407097, + 0.014453139156103134, + 0.003683357033878565, + 0.04928203672170639, + 0.0007936430629342794, + 0.027614513412117958, + -0.01626892201602459, + -0.025542816147208214, + -0.011887890286743641, + -0.01708541437983513, + 0.03619378060102463, + -0.002339799888432026, + -0.02103382721543312, + 0.020765725523233414, + -0.008682851679623127, + 0.009481064043939114, + -0.0433594174683094, + 0.017609432339668274, + 0.05015946179628372, + -0.015671785920858383, + -0.013526968657970428, + 0.009950242936611176, + 0.005340715404599905, + 0.03448767587542534, + -0.04562610015273094, + 0.0006618769839406013, + -0.007183916866779327, + -0.024957865476608276, + 0.020582927390933037, + -0.012600798159837723, + 0.031684789806604385, + 0.008554893545806408, + 0.04872145876288414, + 0.027809496968984604, + -0.02103382721543312, + 0.01754849962890148, + 0.029320618137717247, + 0.01501371618360281, + 0.024385102093219757, + 0.021947810426354408, + -0.01659795641899109, + 0.00898141972720623, + -0.0018310153391212225, + 0.018194381147623062, + 0.03965473547577858, + 0.010468167252838612, + -0.010218345560133457, + 0.014258155599236488, + -0.03256221488118172, + -0.003122780006378889, + 0.00020031491294503212, + -0.010486447252333164, + 0.010650964453816414, + 0.01820656843483448, + -0.04928203672170639, + 0.02685895375907421, + -0.006458822637796402, + 0.004545548930764198, + 0.008024782873690128, + 0.0256646815687418, + 0.00913984328508377, + 0.008676758036017418, + -0.013685392215847969, + 0.00967604760080576, + 0.03870419040322304, + 0.03624252602458, + -0.006236420013010502, + -0.0582512691617012, + -0.03833859786391258, + 0.023848898708820343, + -0.03051489032804966, + -0.009846658445894718, + -0.023251762613654137, + -0.014245969243347645, + -0.011851330287754536, + -0.027785124257206917, + 0.020863216370344162, + 0.0014776079915463924, + 0.009133750572800636, + 0.005901292432099581, + -0.021825946867465973, + 0.004499849863350391, + -0.03543822094798088, + -0.008682851679623127, + 0.016926990821957588, + 0.011705093085765839, + -0.012881086207926273, + -0.019388655200600624, + -0.005493045784533024, + -0.032805945724248886, + -0.05220678821206093, + 0.024056067690253258, + -0.005791614297777414, + 0.004271353594958782, + -0.05635018274188042, + -0.013661019504070282, + 0.05084190517663956, + 0.026322750374674797, + 0.022678999230265617, + -0.051183123141527176, + -0.012698289006948471, + 0.028589431196451187, + -0.017414448782801628, + -0.006629433017224073, + 0.028443193063139915, + -0.008341630920767784, + 0.05284048244357109, + 0.01691480353474617, + 0.02256932109594345, + 0.02160659059882164, + 4.3009629735024646e-5, + 0.014989343471825123, + -0.006763484328985214, + 0.02968621253967285, + 0.0018767145229503512, + -0.003180665662512183, + -0.0035523525439202785, + 0.02169189602136612, + 0.020570741966366768, + -0.01059612538665533, + 0.004000205080956221, + 0.03794863075017929, + -0.007628722582012415, + -0.011022651568055153, + -0.0008180160075426102, + -0.026493359357118607, + -0.0025759125128388405, + -0.006020110100507736, + 0.028467565774917603, + -0.021143505349755287, + 0.04189704358577728, + -0.01763380505144596, + 0.023081151768565178, + -0.0393378883600235, + 0.02841882035136223, + -0.0055874912068247795, + -0.051426853984594345, + 0.0030709875281900167, + -0.024311983957886696, + 0.003506653243675828, + -0.007878544740378857, + -0.01274703536182642, + 0.01060221903026104, + 0.02968621253967285, + 0.0012795780785381794, + 0.016220176592469215, + -0.0022849608212709427, + 0.017268210649490356, + 0.001703057554550469, + 0.03348838537931442, + -0.011229821480810642, + -0.022800862789154053, + -0.01149792317301035, + 0.020424503833055496, + -0.03473140671849251, + -0.0009497820865362883, + -0.0008119227713905275, + -0.016805125400424004, + 0.01836499199271202, + -0.011948822066187859, + 0.03997158259153366, + -0.007512951269745827, + -0.007531231269240379, + -0.018157823011279106, + -0.007683561649173498, + 0.02128974162042141, + -0.009273895062506199, + -0.01407535932958126, + 0.03390272706747055, + -0.035974424332380295, + -0.01383163034915924, + -0.0052797831594944, + 0.054985299706459045, + 0.008932673372328281, + -0.030466144904494286, + 0.012125525623559952, + 0.03173353523015976, + 0.02542095258831978, + 0.0013039510231465101, + -0.0021402467973530293, + -0.003802174935117364, + -0.003838734235614538, + 0.03090485744178295, + 0.005514372140169144, + -0.02873566746711731, + -0.034438930451869965, + -0.0027632794808596373, + -0.0041525354608893394, + -0.025835290551185608, + -0.012527679093182087, + 0.023836711421608925, + -0.029515601694583893, + 0.0037107765674591064, + 0.008073528297245502, + -0.01290545891970396, + -0.03473140671849251, + 0.0035127466544508934, + -0.05015946179628372, + -0.018974315375089645, + -0.022301217541098595, + 0.02588403783738613, + -0.023166457191109657, + -0.025347832590341568, + -0.048916444182395935, + 0.0034274414647370577, + 0.018876824527978897, + 0.004633900709450245, + 0.03519449010491371, + -0.026834581047296524, + 0.013210120610892773, + 0.02605464681982994, + 0.002568296156823635, + -0.007573883514851332, + 0.013344171456992626, + -0.0019117506453767419, + 0.011967102065682411, + 0.00047374857240356505, + -0.006361331325024366, + 0.05883622169494629, + 0.017036668956279755, + -0.011522295884788036, + 0.011692906729876995, + -0.017828788608312607, + -0.02588403783738613, + -0.0007365190540440381, + 0.02088758908212185, + -0.0030907904729247093, + -0.015720531344413757, + -0.023775780573487282, + -0.017268210649490356, + 0.005727635230869055, + 0.013429476879537106, + 0.011339499615132809, + 0.02153347246348858, + 0.000968823442235589, + 0.03124607913196087, + -0.019400840625166893, + 0.02961309254169464, + 0.0017198139103129506, + 0.025030985474586487, + -0.016853870823979378, + 0.03480452299118042, + 0.03787551075220108, + 0.012399720959365368, + -0.03809486702084541, + 0.028199464082717896, + -0.016646701842546463, + 0.010906879790127277, + 0.014757800847291946, + 0.007866358384490013, + 0.03529198095202446, + 0.03453642129898071, + 0.022447455674409866, + -0.028613803908228874, + -0.017524126917123795, + -0.032659709453582764, + -0.05859249085187912, + -0.011242007836699486, + -0.022678999230265617, + -0.02146035246551037, + -0.025786545127630234, + 0.004335332661867142, + -0.014989343471825123, + -0.014185037463903427, + 0.004225654527544975, + -0.00438712490722537, + 0.013746324926614761, + 0.00311516341753304, + 0.009164216928184032, + 0.0229958463460207, + 0.026761462911963463, + -0.018998688086867332, + 0.009785725735127926, + 4.7930625441949815e-6, + 0.02671271562576294, + 0.0027053935918956995, + 0.003205038607120514, + 0.01951051875948906, + 0.0291256345808506, + -0.007439832668751478, + 0.034755777567625046, + -0.025786545127630234, + 0.04041029512882233, + -0.027053937315940857, + -0.08403781801462173, + 0.020509809255599976, + 0.017426636070013046, + 0.059762392193078995, + -0.0338052362203598, + 0.01862090826034546, + -0.010388955473899841, + -0.009219055995345116, + 0.042043279856443405, + 0.017170719802379608, + -0.006714738439768553, + 0.017024481669068336, + -0.035560086369514465, + -0.045699216425418854, + -0.02169189602136612, + -0.021570030599832535, + 0.011107956990599632, + 0.015050276182591915, + 0.018645280972123146, + -0.016244549304246902, + -0.02314208447933197, + 0.006714738439768553, + 0.03356150537729263, + -0.0033726023975759745, + 0.0340002179145813, + 0.029734957963228226, + 0.004807557910680771, + -0.026737088337540627, + -0.010608311742544174, + -0.022873982787132263, + -0.0058921524323523045, + 0.021228810772299767, + 0.010541286319494247, + 0.04516301304101944, + -0.027053937315940857, + 0.019364282488822937, + -0.012576424516737461, + 0.0010388955706730485, + -0.009834472090005875, + 0.01626892201602459, + 0.011912262998521328, + 0.007982130162417889, + -0.010711897164583206, + 0.0072753154672682285, + 0.01509902160614729, + -0.015635225921869278, + -0.019778622314333916, + -0.06044483184814453, + -0.050208207219839096, + 0.04530925303697586, + -0.010346302762627602, + -0.02070479281246662, + -0.02873566746711731, + 0.011138422414660454, + -0.05625269189476967, + 0.006873162463307381, + -0.0216797087341547, + -0.014477511867880821, + -0.013271053321659565, + -0.004975121468305588, + 0.014380021020770073, + 0.018645280972123146, + -0.043895620852708817, + -0.037022460252046585, + -0.02915000729262829, + 0.010919066146016121, + 0.03950849547982216, + 0.0017091507324948907, + -0.03407333791255951, + -0.005124405492097139, + 0.012302229180932045, + -0.013941308483481407, + 0.02542095258831978, + -0.01926678977906704, + 0.0066355266608297825, + -0.013563527725636959, + -0.01137605868279934, + -0.033293403685092926, + 0.004140349105000496, + -0.02080228365957737, + 0.001235402189195156, + -0.03906978294253349, + 0.050061970949172974, + -0.004929422400891781, + -0.0008858031942509115, + 0.027468277141451836, + 0.015537734143435955, + -0.024019509553909302, + -0.01416066475212574, + 0.004667413420975208, + -0.0027053935918956995, + -0.007604349870234728, + -0.015732716768980026, + -0.011540575884282589, + -0.0036894502118229866, + 0.01076064258813858, + -0.031099840998649597, + 0.0250066127628088, + 0.007671375293284655, + 0.006763484328985214, + 0.02727329358458519, + -0.0012323556002229452, + -0.012795780785381794, + 0.019461773335933685, + 0.00030142441391944885, + 0.027541395276784897, + 0.0008035445935092866, + -0.012612984515726566, + -0.018840264528989792, + 0.00011434325278969482, + 0.03365899622440338, + 0.008067435584962368, + -0.005870826076716185, + 0.0009360723197460175, + 0.008323350921273232, + -0.008841275237500668, + 0.03278157114982605, + 0.0029262732714414597, + 0.012856713496148586, + -0.03785113990306854, + 0.0034518141765147448, + 0.03663249313831329, + -0.010072107426822186, + 0.029393736273050308, + 0.0038082681130617857, + -0.024738509207963943, + 0.02702956460416317, + 0.017585059627890587, + -0.020656047388911247, + 0.010675337165594101, + 0.000128053012304008, + 0.021021639928221703, + -0.0399959571659565, + -0.003860060591250658, + 0.003920992836356163, + -0.007945571094751358, + 0.009456691332161427, + -0.04450494423508644, + 0.04774654284119606, + -0.04296945035457611, + -0.02087540365755558, + 0.020192960277199745, + 0.00951153039932251, + -0.010541286319494247, + 0.006501475349068642, + 0.003543212777003646, + -0.04572359099984169, + -0.012771408073604107, + -0.016402972862124443, + 0.01619580201804638, + 0.0020290452521294355, + 0.003326903097331524, + 0.0191083662211895, + 0.023349253460764885, + 0.04345690831542015, + -0.03319591283798218, + 0.02273993007838726, + 0.0182187557220459, + 0.0023352301213890314, + 0.0022514481097459793, + -0.03473140671849251, + 0.023592982441186905, + -0.002368742832913995, + 0.0010602218098938465, + -0.011339499615132809, + -0.026200884953141212, + 0.010620498098433018, + 0.007019399665296078, + -0.03916727751493454, + -0.016171429306268692, + -0.004865443333983421, + 0.03902103751897812, + 0.021886879578232765, + 0.019047433510422707, + 0.018889009952545166, + -0.029808076098561287, + -0.024726323783397675, + 0.03509699925780296, + -0.00014737997844349593, + 0.00736671406775713, + -0.010291463695466518, + 0.013453849591314793, + -0.014635936357080936, + 0.022349964827299118, + 0.0204610638320446, + 0.007811519782990217, + -0.024823814630508423, + 0.012917645275592804, + -0.020010164007544518, + -0.0012308323057368398, + -0.013283239677548409, + -0.03178228437900543, + 0.003817408112809062, + 0.026517732068896294, + 0.019888300448656082, + -0.016646701842546463, + 0.03738805279135704, + -0.0008850415470078588, + 0.031684789806604385, + 0.012844527140259743, + 0.00362242478877306, + -0.014233782887458801, + 0.023909831419587135, + -0.044626809656620026, + 0.05464407801628113, + -0.0357794426381588, + 0.0386798195540905, + -0.032805945724248886, + -0.01136996503919363, + -0.022630251944065094, + -0.027224548161029816, + 0.01820656843483448, + 0.025542816147208214, + 0.028370074927806854, + 0.027005191892385483, + -0.012034127488732338, + 0.010206158272922039, + 0.014258155599236488, + -0.006397890392690897, + 0.023373626172542572, + -0.021484725177288055, + 0.007787146605551243, + 0.0077688670717179775, + -0.02451915293931961, + -0.017438821494579315, + 0.010541286319494247, + -0.006629433017224073, + -0.005547884851694107, + -0.024153560400009155, + 0.022398710250854492, + 0.013526968657970428, + -0.0035736788995563984, + -0.05761757493019104, + 0.0062882122583687305, + 0.007001120131462812, + 0.015281818807125092, + -0.002812025137245655, + -0.01601300574839115, + -0.0017883627442643046, + 0.036535002291202545, + 0.043749384582042694, + -0.018828077241778374, + 0.024714136496186256, + -0.004512036219239235, + -0.018486857414245605, + -0.0033908819314092398, + 0.00849396176636219, + -0.0062882122583687305, + -0.0015964260092005134, + 0.0211191326379776, + 0.0015187372919172049, + 0.013173561543226242, + 0.003250737674534321, + -7.116701453924179e-5, + 0.03663249313831329, + -0.003802174935117364, + 0.001140195527113974, + -0.00930436048656702, + -0.016683261841535568, + -0.049403902143239975, + 0.013039509765803814, + -0.026883326470851898, + 0.011504016816616058, + 0.0023321835324168205, + -0.019437400624155998, + 0.008372096344828606, + 0.026322750374674797, + -0.01739007607102394, + -0.002553062979131937, + 0.060591068118810654, + -0.024458222091197968, + 0.00991977658122778, + 0.0056484234519302845, + 0.020363571122288704, + -0.022557133808732033, + 0.021825946867465973, + -0.01534275058656931, + 0.0020762677304446697, + -0.031294822692871094, + 0.008932673372328281, + 0.045114267617464066, + -0.009663861244916916, + -0.026590852066874504, + 0.004399311263114214, + -0.006050576455891132, + -0.005142685491591692, + 6.531179678859189e-5, + 0.01843811199069023, + -0.009986802004277706, + -0.01116888877004385, + 0.022800862789154053, + 0.0034761871211230755, + 0.02354423701763153, + 0.01497715711593628, + -0.015757089480757713, + 0.002999392105266452, + -0.016805125400424004, + 0.0036315645556896925, + -0.008664571680128574, + 0.025518443435430527, + 6.212237622094108e-6, + 0.013124815188348293, + 0.0040459041483700275, + 0.057910047471523285, + -0.006787857040762901, + -0.03770489990711212, + -0.06658680737018585, + 0.030782993882894516, + 0.008536613546311855, + -0.00523713044822216, + -0.021484725177288055, + -0.006513661704957485, + 0.026493359357118607, + 0.028223836794495583, + -0.01347822230309248, + 0.006397890392690897, + -0.04596732184290886, + -0.002481467556208372, + -0.013721952214837074, + -0.0025545863900333643, + 0.03180665522813797, + -0.0037534290459007025, + -0.013965681195259094, + -0.006647713016718626, + 0.03170916438102722, + 0.01982736773788929, + 0.01868184097111225, + -0.00026181843713857234, + -0.01136996503919363, + 0.006355238147079945, + -0.0048441169783473015, + 0.012162085622549057, + 0.025591561570763588, + -0.02380015328526497, + 0.04974512383341789, + 0.036778729408979416, + -0.0039331791922450066, + -0.01609831117093563, + -0.028053225949406624, + -0.03763178363442421, + -0.030246788635849953, + 0.0077688670717179775, + -0.016134871169924736, + -0.002690160647034645, + -0.009602929465472698, + -0.02055855467915535, + -0.013697578571736813, + -0.008500054478645325, + -0.0333421491086483, + 0.04311569035053253, + 0.03943537920713425, + -0.001898040878586471, + 0.011327313259243965, + -0.023653915151953697, + -0.015001529827713966, + 0.04547986015677452, + -0.00020869309082627296, + -0.01602519303560257, + 0.04394436627626419, + 0.01730477064847946, + -0.04942827299237251, + 0.018109077587723732, + -0.028028853237628937, + -0.030953602865338326, + 0.018425924703478813, + -0.02232559211552143, + 0.005365088116377592, + 0.0128323407843709, + 0.03804612159729004, + 0.04418809711933136, + -0.029515601694583893, + -0.01473342813551426, + -0.006665992550551891, + -0.0002507744648028165, + 0.006117601878941059, + 0.018157823011279106, + 0.026030274108052254, + 0.016561396420001984, + 0.002423581900075078, + -0.0077444943599402905, + 0.009249521419405937, + 0.0038113147020339966, + 0.002067127963528037, + -0.022118421271443367, + 0.03407333791255951, + 0.009791819378733635, + -0.0043566590175032616, + -0.004947701934725046, + 0.0493551567196846, + 0.018182195723056793, + 0.00740327313542366, + 0.008579266257584095, + -0.03495076298713684, + -0.007196103688329458, + -0.012155991978943348, + -0.004024577792733908, + 0.012357068248093128, + -0.0002682924969121814, + -0.0017350469715893269, + -0.025445325300097466, + 0.0028744807932525873, + -0.01060221903026104, + 0.03595004975795746, + 0.0108886007219553, + 0.02588403783738613, + 0.031294822692871094, + -0.02573779970407486, + 0.006175487767904997, + -0.005489999428391457, + 0.002150909975171089, + 0.0315629281103611, + 0.006885348819196224, + -0.01748756691813469, + 0.005054333712905645, + -0.010650964453816414, + 0.0015354937640950084, + 0.018974315375089645, + 0.026493359357118607, + -0.009219055995345116, + -0.015720531344413757, + -0.0417751781642437, + -0.0005255410214886069, + -0.022374337539076805, + 0.011107956990599632, + 0.003509699832648039, + -0.009761353023350239, + 0.019876113161444664, + 0.0148918516933918, + 0.011753838509321213, + -0.016061751171946526, + 0.039118532091379166, + 0.010583939030766487, + -0.01642734557390213, + -0.00975525937974453, + -0.007116891443729401, + -0.014794359914958477, + -0.03246472403407097, + -0.0004181478579994291, + 8.240140596171841e-5, + 0.017048854380846024, + 0.024543527513742447, + 0.009572463110089302, + -0.013697578571736813, + 0.008061341941356659, + -0.012552051804959774, + -0.0398009717464447, + 0.003186758840456605, + 0.004798417910933495, + -0.008000410161912441, + 0.006026203744113445, + -0.01419722381979227, + 0.024653205648064613, + -0.02331269532442093, + -0.0006908198702149093, + 0.016159243881702423, + 0.005514372140169144, + -0.04906268045306206, + -0.01576927676796913, + -0.040580905973911285, + -0.006184627301990986, + -0.011059210635721684, + 0.02249620109796524, + 0.0023017171770334244, + 0.0018035958055406809, + 0.03753429278731346, + -0.024214493110775948, + -0.057422589510679245, + 0.008244139142334461, + 0.008439122699201107, + 0.005157918203622103, + 0.005273689981549978, + -0.023763593286275864, + 0.005072613246738911, + 0.012326602824032307, + 0.014514071866869926, + -0.02573779970407486, + 0.0039057598914951086, + -0.02807759866118431, + -0.022118421271443367, + 0.00022106996038928628, + 0.01307606976479292, + -0.012673916295170784, + -0.006611153483390808, + -0.015233072452247143, + -0.008079621940851212, + 0.015720531344413757, + -0.020607300102710724, + -0.029759330675005913, + 0.02185031957924366, + 0.027955735102295876, + 0.009517624042928219, + 0.05591147020459175, + 0.00975525937974453, + 0.002260587876662612, + 0.001283386372961104, + -0.031855400651693344, + 0.019144926220178604, + 0.02281305007636547, + 0.00593175832182169, + -0.005980504211038351, + -0.02136286161839962, + 0.010906879790127277, + 0.002214888809248805, + -0.022106235846877098, + 0.009164216928184032, + 0.005118312314152718, + -0.010212251916527748, + -0.01108358334749937, + 0.007671375293284655, + 0.020253892987966537, + 0.017036668956279755, + 0.006483195815235376, + -0.0008682851330377162, + 0.0068792556412518024, + -0.0021372002083808184, + -0.02549407072365284, + 0.03107546828687191, + -0.02605464681982994, + 0.048770204186439514, + 0.014709055423736572, + -0.04184829816222191, + -0.03721744194626808, + -0.0016466951929032803, + 0.0018919475842267275, + 0.014185037463903427, + -0.008207579143345356, + 0.01628110744059086, + -0.002342846477404237, + -0.020924149081110954, + 0.0409221276640892, + 0.002545446390286088, + -0.01619580201804638, + -0.002056464785709977, + 0.05128061771392822, + 0.008158833719789982, + -0.030124925076961517, + -0.015623039565980434, + 0.016963548958301544, + 0.012472840026021004, + 0.01125419419258833, + 0.02741953171789646, + -0.009700420312583447, + 0.018572162836790085, + -0.0031623858958482742, + -0.04530925303697586, + -0.0011912262998521328, + -0.03729056194424629, + 0.021094759926199913, + -0.05859249085187912, + 0.0005681936163455248, + 0.020607300102710724, + 0.0015431102365255356, + 0.0047831847332417965, + -0.00623032683506608, + 0.024580085650086403, + -0.014306901954114437, + 0.02097289450466633, + 0.0044114976190030575, + -0.038728564977645874, + 0.002967402571812272, + 0.019461773335933685, + -0.008993606083095074, + 0.02064386010169983, + 0.013392917811870575, + 0.02411700040102005, + 0.0028851439710706472, + -0.02890627831220627, + 0.030539264902472496, + -0.026347123086452484, + -0.013392917811870575, + 0.021911252290010452, + -0.006163301412016153, + 0.018840264528989792, + -0.03804612159729004, + 0.015683971345424652, + -0.018084703013300896, + 0.008950953371822834, + -0.023824525997042656, + -0.03780239447951317, + 0.0031958986073732376, + 0.006885348819196224, + -0.008664571680128574, + -0.01570834405720234, + -0.011826957575976849, + -0.043578773736953735, + 0.02590841054916382, + 0.01635422743856907, + -0.007860265672206879, + -0.007257035933434963, + -0.01501371618360281, + 0.041872669011354446, + 0.003464000765234232, + 0.01440439373254776, + 0.004189094994217157, + 0.018974315375089645, + -0.012893272563815117, + 0.027395157143473625, + 0.005416880827397108, + 0.019888300448656082, + -0.018145635724067688, + -0.017828788608312607, + 0.017585059627890587, + -0.024787256494164467, + -0.037924256175756454, + 0.01981518045067787, + 0.01836499199271202, + -0.011357778683304787, + -0.0007567029097117484, + 0.0204610638320446, + 0.00963339488953352, + 0.0023199969436973333, + 0.026200884953141212, + -0.02216716669499874, + 0.004810604266822338, + -0.017182905226945877, + -0.008353817276656628, + 0.008957047015428543, + 0.004700926132500172, + 0.02064386010169983, + -0.030368654057383537, + -0.004527269396930933, + -0.0026734042912721634, + 0.02598152868449688, + 0.010565659031271935, + -0.011625881306827068, + -0.007982130162417889, + -0.0029841589275747538, + 0.010407235473394394, + -0.004466336686164141, + 0.0020259986631572247, + 0.007531231269240379, + 0.022642439231276512, + 0.011686813086271286, + -0.015818022191524506, + 0.034024592489004135, + -0.005541791673749685, + -0.006867069285362959, + 0.008250231854617596, + 0.024641018360853195, + 0.002368742832913995, + -0.018389364704489708, + 0.016573583707213402, + 0.00857317354530096, + 0.01846248470246792, + 0.02161877602338791, + -0.023337068036198616, + 0.022362150251865387, + -0.010809388011693954, + 0.01675637997686863, + 0.023190829902887344, + 0.016049565747380257, + -0.008999699726700783, + -0.008335537277162075, + 0.010291463695466518, + 0.005852546542882919, + 0.017195092514157295, + 0.022873982787132263, + 0.024311983957886696, + 0.0069645605981349945, + 0.010212251916527748, + 0.028784414753317833, + 0.0191083662211895, + -0.006489288993179798, + -0.017853161320090294, + -0.0220087431371212, + 0.007183916866779327, + -0.003783895168453455, + -0.034755777567625046, + 0.00523713044822216, + 6.140832556411624e-5, + -0.015245258808135986, + 0.03595004975795746, + -0.025030985474586487, + -0.004515082575380802, + -0.018998688086867332, + -0.0005590537912212312, + 0.01797502487897873, + 0.012552051804959774, + -0.009152029640972614, + 0.04650352522730827, + -0.024056067690253258, + -0.008189300075173378, + 0.00715954415500164, + -0.011528389528393745, + 0.00826241821050644, + 0.006598967127501965, + 0.0015781463589519262, + 0.017292583361268044, + 0.021545657888054848, + -0.01876714639365673, + 0.020412316545844078, + 0.03814361244440079, + 0.012820154428482056, + 0.008810808882117271, + -0.0016299387207254767, + 0.009883217513561249, + 0.010608311742544174, + -0.02581091783940792, + -0.02605464681982994, + 8.335347229149193e-5, + -0.013673205859959126, + 0.016451718285679817, + 0.009682141244411469, + -0.014380021020770073, + -0.027736378833651543, + -0.000712907814886421, + 0.002571342745795846, + -0.04011781886219978, + -0.006175487767904997, + 0.022142793983221054, + 0.003878340357914567, + 0.009816192090511322, + 0.010979998856782913, + -0.02968621253967285, + 0.02459227293729782, + 0.010206158272922039, + -0.013307612389326096, + -0.0008279174799099565, + -0.0067208316177129745, + -0.008676758036017418, + 0.0009711083839647472, + 0.020339198410511017, + 0.00020469441369641572, + -0.0031928520184010267, + -0.0010168076260015368, + -0.005438206717371941, + 0.013673205859959126, + -0.0001899373746709898, + -0.00732406135648489, + 0.007141264621168375, + -0.006120648700743914, + -0.009121564216911793, + 0.005255409982055426, + -0.011802584864199162, + -0.0006660661310888827, + 9.758687156136148e-6, + -0.015891142189502716, + -0.048745833337306976, + -0.0002414441987639293, + 0.009060631506145, + -0.010029454715549946, + -0.008542707189917564, + -0.031221706420183182, + -0.01860872097313404, + 0.0015750997699797153, + 0.016537023708224297, + 0.0029079935047775507, + 0.009255615063011646, + -0.006531941704452038, + -0.018815891817212105, + 0.01803595758974552, + 0.009548090398311615, + 0.015354936942458153, + -0.0031349663622677326, + 0.018913382664322853, + 0.019937045872211456, + -0.056203946471214294, + -0.02866254933178425, + -0.02217935398221016, + -0.035243235528469086, + -0.0145628172904253, + -0.014538444578647614, + 0.00024620452313683927, + 0.0034822802990674973, + -0.016073938459157944, + 0.0009155076695606112, + -0.022800862789154053, + -0.004097696393728256, + -0.026566479355096817, + -0.005815987009555101, + 0.004195188172161579, + 0.00975525937974453, + -0.006306492257863283, + -0.0006877732230350375, + -0.01558647956699133, + -0.010973905213177204, + -0.022215913981199265, + -0.0019239371176809072, + -0.011784304864704609, + -0.00785417202860117, + 0.01137605868279934, + 0.03229411318898201, + -0.024665391072630882, + 0.01370976585894823, + 0.01724383793771267, + -0.01763380505144596, + -0.002281914232298732, + -0.021509097889065742, + 0.0008629535441286862, + -0.00045508804032579064, + 0.0027556628920137882, + -0.03058801032602787, + -0.01619580201804638, + -0.018425924703478813, + 0.0025941922795027494, + -0.017828788608312607, + -0.015635225921869278, + 0.03166041895747185, + -0.018828077241778374, + -0.020010164007544518, + -0.026883326470851898, + -0.014087545685470104, + 0.005416880827397108, + 0.03212350234389305, + 0.009694327600300312, + -0.012125525623559952, + 0.007866358384490013, + -0.026444613933563232, + -0.01665888912975788, + -0.0022346917539834976, + 0.00942622497677803, + -0.014136291109025478, + 0.0026520779356360435, + 0.026590852066874504, + 0.004243934061378241, + 0.018486857414245605, + -0.012229111045598984, + -0.014550630934536457, + -8.854223415255547e-5, + -0.009316546842455864, + -0.023848898708820343, + 0.015050276182591915, + 0.0017015342600643635, + -0.006336958147585392, + 0.02273993007838726, + -0.014221596531569958, + 0.01885244995355606, + 0.044139351695775986, + -0.03682747483253479, + 0.020777910947799683, + -0.01827968657016754, + 0.002722150180488825, + 0.006379610858857632, + 0.01299076434224844, + -0.00523713044822216, + 0.013015137054026127, + -0.02216716669499874, + 0.004926375579088926, + 0.016000820323824883, + -0.005365088116377592, + -0.01803595758974552, + -0.015891142189502716, + -0.031684789806604385, + -0.00416472228243947, + 0.0027343365363776684, + -0.00370163656771183, + 0.016768567264080048, + -0.004262213595211506, + 0.015610853210091591, + -0.007927291095256805, + -0.0025439232122153044, + -0.012807967141270638, + -0.004725299309939146, + -0.0026414147578179836, + -0.033853981643915176, + 0.008055249229073524, + 0.006205953657627106, + 0.04760030657052994, + 0.009273895062506199, + -0.006068855989724398, + -0.013258866034448147, + 0.008609732612967491, + 0.007025493308901787, + 0.023653915151953697, + 0.0005659086746163666, + -0.028955023735761642, + -0.015281818807125092, + -0.0304417721927166, + 0.0068792556412518024, + 0.003524933010339737, + -0.016305480152368546, + 0.004006298258900642, + 0.01974206231534481, + 0.009529810398817062, + 0.012478932738304138, + -0.015525547787547112, + -0.021630963310599327, + -0.00724484957754612, + -0.009980709291994572, + 0.025786545127630234, + 0.0051030791364610195, + -0.004216514527797699, + -0.007062052376568317, + 0.012820154428482056, + -0.005590537562966347, + -0.002012288896366954, + -0.020656047388911247, + 0.0027449997141957283, + -0.0128323407843709, + 0.0033482294529676437, + 0.011546669527888298, + -0.010090387426316738, + 0.00732406135648489, + 0.015732716768980026, + 0.019303349778056145, + -0.005508278962224722, + 0.024580085650086403, + -0.0014014426851645112, + -0.013977867551147938, + -0.019681129604578018, + -0.0036864036228507757, + -0.024567900225520134, + 0.0025393532123416662, + 0.024884747341275215, + -0.004368845373392105, + 0.011705093085765839, + 0.013648833148181438, + 0.016939176246523857, + 0.008542707189917564, + -0.002003149129450321, + 0.013563527725636959, + 0.002431198488920927, + -0.02063167281448841, + 0.021594403311610222, + -0.016537023708224297, + -0.009804005734622478, + -0.012095059268176556, + 0.005992690566927195, + -0.023105524480342865, + 0.01682949811220169, + -0.023678287863731384, + 0.003948412369936705, + -0.011814771220088005, + -0.008640198968350887, + -0.00027895564562641084, + -0.020034536719322205, + 0.0001683254522504285, + 0.014709055423736572, + 0.0029430296272039413, + -0.0128323407843709, + 0.0113334059715271, + -0.001235402189195156, + 0.016476090997457504, + -0.004591247998178005, + 0.0021219670306891203, + 0.008707224391400814, + -0.005182291381061077, + -0.023203017190098763, + 0.009206868708133698, + -0.009639488533139229, + -0.01935209520161152, + 0.000894943019375205, + -0.0053986008279025555, + -0.002013812307268381, + -0.005072613246738911, + 0.03253784403204918, + -0.007104705087840557, + -0.023617355152964592, + -0.05152434483170509, + -0.004216514527797699, + 0.001742663560435176, + -0.012326602824032307, + 0.0010815481655299664, + 0.04011781886219978, + -0.018754959106445312, + -0.01295420527458191, + 0.005346808582544327, + 0.0068792556412518024, + 0.004499849863350391, + 0.019937045872211456, + -0.02008328214287758, + 0.015537734143435955, + 0.006123695056885481, + -0.018267501145601273, + 0.009005792438983917, + -0.0015872861258685589, + -0.00649538217112422, + -0.003939272370189428, + 0.011833051219582558, + -0.024080440402030945, + 0.025591561570763588, + 0.02525034174323082, + -0.0035950052551925182, + 0.0033360428642481565, + 0.00732406135648489, + -0.012552051804959774, + 0.03714432567358017, + -0.009212962351739407, + -0.029271872714161873, + 0.0026231352239847183, + -0.027882616966962814, + -0.0008842798415571451, + -0.013648833148181438, + 0.025299087166786194, + 0.013392917811870575, + 0.010730176232755184, + -0.0074459258466959, + 0.006355238147079945, + -0.026103394106030464, + -0.015379310585558414, + 0.008433029055595398, + 0.01650046370923519, + -0.006970654241740704, + 0.019693316891789436, + 0.0005758101469837129, + 0.012637357227504253, + 0.013977867551147938, + -0.008323350921273232, + -0.0034761871211230755, + 0.012436280958354473, + 0.03414645418524742, + -0.02768763341009617, + -0.014428766444325447, + -0.028443193063139915, + 0.005197524558752775, + -0.016159243881702423, + 0.021801574155688286, + 0.011954915709793568, + 0.011040930636227131, + -0.013539155013859272, + -0.006343051325529814, + 0.0068426961079239845, + 0.011887890286743641, + -0.010675337165594101, + 0.0333421491086483, + -0.003927086014300585, + 0.057178862392902374, + -0.0207900982350111, + 0.01323449332267046, + 0.00881690252572298, + 0.010937346145510674, + 0.0250066127628088, + 0.006132835056632757, + 0.0037899885792285204, + 0.008207579143345356, + -0.0053376685827970505, + 0.010852040722966194, + -0.0067208316177129745, + -0.007531231269240379, + -0.010919066146016121, + -0.03148980811238289, + -0.0008164927130565047, + -0.003464000765234232, + -0.012942018918693066, + -0.005654516629874706, + 0.008768156170845032, + 0.00310450023971498, + 0.010480353608727455, + -0.001188179710879922, + -0.009889311157166958, + -0.006867069285362959, + 0.002636844990774989, + -0.031099840998649597, + -0.007799333427101374, + -0.0002785748220048845, + -0.005898245610296726, + -0.002359603065997362, + -0.021752826869487762, + -0.00016899190086405724, + -0.001256728544831276, + 0.013880375772714615, + -0.0062516531907022, + 0.00637351768091321, + 0.018657468259334564, + -0.012600798159837723, + 0.016378600150346756, + -0.01965675689280033, + 0.017195092514157295, + -0.04945264756679535, + -0.010035548359155655, + -0.014477511867880821, + 0.00552351213991642, + -0.005529605317860842, + -0.02720017544925213, + -0.03789988532662392, + 0.0005777142941951752, + -0.016805125400424004, + 0.008786436170339584, + 0.018559975549578667, + 0.015038088895380497, + -0.012058500200510025, + 0.03631564602255821, + -0.0019315535901114345, + -0.006343051325529814, + 0.01311262883245945, + 0.019449587911367416, + 0.027541395276784897, + -0.001555296708829701, + -0.004505943041294813, + 0.025030985474586487, + -0.0304417721927166, + -0.014989343471825123, + 0.002746522892266512, + -0.0012666300171986222, + -0.009420132264494896, + 0.02517722174525261, + -0.032830316573381424, + -0.001584239536896348, + 0.010376769118010998, + -0.011516203172504902, + -0.01108358334749937, + -0.014660309068858624, + -0.002938459627330303, + -0.0029232266824692488, + -0.022045303136110306, + 0.013770697638392448, + 0.007391086779534817, + 0.0036193779669702053, + -0.002128060208633542, + -0.0246775783598423, + -0.018474670127034187, + -0.016317667439579964, + 0.010480353608727455, + 0.00756779033690691, + 0.026883326470851898, + 0.010955626145005226, + 0.00326901744119823, + 0.009883217513561249, + -0.003060324350371957, + -0.0004341425665188581, + 0.015038088895380497, + 0.0029430296272039413, + 0.00265055475756526, + 0.029637467116117477, + -0.02370266057550907, + 0.004780138377100229, + 0.011826957575976849, + 0.00227582105435431, + 0.0012658683117479086, + 0.00039225161890499294, + -0.010267090983688831, + -0.0068792556412518024, + 0.010011175647377968, + 0.0073362477123737335, + 0.016939176246523857, + 0.0029369364492595196, + -0.003665077267214656, + 0.007762773893773556, + -0.00853052083402872, + -0.0012323556002229452, + 0.02225247211754322, + -0.0028501078486442566, + 0.0012818630784749985, + 0.00026181843713857234, + 0.014916224405169487, + 0.004377984907478094, + 0.009407945908606052, + -0.014026612974703312, + -0.003857014002278447, + 0.00748857855796814, + -0.010827668011188507, + -0.0062029073014855385, + -0.012576424516737461, + 0.00026867332053370774, + 0.007835892960429192, + 0.01981518045067787, + -0.014709055423736572, + -0.0007791716489009559, + -0.023020219057798386, + -0.019888300448656082, + 0.021009454503655434, + -0.00535899493843317, + 0.020107656717300415, + 0.0022011790424585342, + 0.021484725177288055, + -0.02525034174323082, + -0.012113339267671108, + 0.014367833733558655, + -0.01314918790012598, + 0.0029232266824692488, + -0.01603737846016884, + 5.807608977193013e-5, + -0.011528389528393745, + -0.004003251437097788, + 0.03292781114578247, + -0.006483195815235376, + 0.012119432911276817, + -0.013612274080514908, + 0.0012879562564194202, + -0.017524126917123795, + -0.003366508986800909, + -0.0031501995399594307, + 0.02047324925661087, + 0.005368134938180447, + -0.007293595001101494, + 0.02590841054916382, + 0.007147357799112797, + -0.0005167819908820093, + -0.03889917582273483, + -0.01650046370923519, + 0.005593584384769201, + 0.00032827272661961615, + 0.01186351664364338, + 0.0004158628871664405, + 0.008883927948772907, + 0.003032904816791415, + 0.0057093556970357895, + -0.0010411805706098676, + -0.014465325511991978, + 0.0038478742353618145, + 0.010468167252838612, + -0.010066014714539051, + 0.040824633091688156, + 0.013941308483481407, + 0.00720219686627388, + -0.009895403869450092, + -0.005684982519596815, + -0.023337068036198616, + 0.016951363533735275, + 0.006068855989724398, + 0.0191083662211895, + 0.0016375553095713258, + 0.010462074540555477, + 0.008420842699706554, + -0.015732716768980026, + -0.013100442476570606, + 0.01659795641899109, + 0.004990354645997286, + -0.023678287863731384, + 0.011296846903860569, + -0.023885458707809448, + 0.002959785982966423, + -0.00010939250205410644, + 0.005590537562966347, + 0.007915104739367962, + -0.00618767412379384, + 0.010364582762122154, + 0.020607300102710724, + 0.023532051593065262, + 0.00793338380753994, + -0.0006222710362635553, + 0.02153347246348858, + 0.015294005163013935, + 0.016561396420001984, + -0.014380021020770073, + -0.007616536226123571, + 0.007823705673217773, + -0.0033939285203814507, + -0.019364282488822937, + 0.00801868923008442, + -0.009395759552717209, + 0.013295426033437252, + -0.0052767363376915455, + -0.013124815188348293, + -0.02146035246551037, + -0.0034944668877869844, + 0.011729465797543526, + -0.004576014820486307, + -0.01473342813551426, + 0.014745614491403103, + 0.006397890392690897, + 0.025347832590341568, + 0.017694737762212753, + -0.0017167673213407397, + -0.007653095759451389, + 0.0033147165086120367, + 0.002473850967362523, + -0.008719410747289658, + 0.009846658445894718, + -0.007671375293284655, + 0.013636646792292595, + -0.035974424332380295, + 0.009615115821361542, + -0.018754959106445312, + -0.012070686556398869, + 0.0040916032157838345, + 0.012180364690721035, + 0.012844527140259743, + -0.01836499199271202, + -0.008536613546311855, + 0.008311164565384388, + 0.0010571752209216356, + 0.014745614491403103, + -0.01611049845814705, + 0.008073528297245502, + 0.004557735286653042, + -0.01323449332267046, + -0.010529099963605404, + -0.00012691054143942893, + -0.0034365812316536903, + 0.011528389528393745, + 0.001449426868930459, + -0.0044785235077142715, + 8.887545845936984e-5, + 0.013344171456992626, + -0.025372205302119255, + 0.02097289450466633, + 0.011156702414155006, + -0.0066964589059352875, + 0.00554483849555254, + 0.02306896448135376, + 0.009956336580216885, + -0.016317667439579964, + -0.017414448782801628, + -0.010084293782711029, + 0.01706104166805744, + -0.01601300574839115, + -0.01730477064847946, + -0.016244549304246902, + 0.005188384559005499, + 0.00732406135648489, + -0.010059921070933342, + -0.008481774479150772, + -0.009639488533139229, + 0.010791108943521976, + 0.0006298875669017434, + 0.03753429278731346, + 0.0029399830382317305, + 0.016878245398402214, + 0.007866358384490013, + -0.005416880827397108, + -3.451243173913099e-5, + -0.009566369466483593, + -0.020119842141866684, + 0.012259576469659805, + -0.004743578843772411, + 0.02330050803720951, + 0.03514574468135834, + 0.004384078085422516, + -0.0073362477123737335, + -0.012350975535809994, + -0.03114858642220497, + 0.006483195815235376, + -0.013344171456992626, + 0.008128367364406586, + -0.033390894532203674, + -0.004161675460636616, + -0.007183916866779327, + -0.016537023708224297, + 0.010608311742544174, + -0.028443193063139915, + 0.008012596517801285, + -0.03151417896151543, + 0.0054747662506997585, + 0.012527679093182087, + 0.011400431394577026, + -0.0045242225751280785, + 0.0066598993726074696, + 0.016610141843557358, + 0.0020458016078919172, + 0.01771911047399044, + 0.0055265589617192745, + 0.004259167239069939, + -0.004250027239322662, + 0.003799128346145153, + 0.023982949554920197, + 0.03972785174846649, + -0.017780043184757233, + -0.0006386465975083411, + -0.013185747899115086, + 0.006221186835318804, + -0.0005038338713347912, + -0.037339307367801666, + 0.015391496941447258, + -0.008177113719284534, + -0.0013168990844860673, + 0.018511230126023293, + 0.0013389871455729008, + -0.008439122699201107, + -0.008030875585973263, + 0.0030039618723094463, + -0.013965681195259094, + -0.0046460870653390884, + -0.01625673472881317, + 0.000467274512629956, + 0.02348330430686474, + 0.01027318462729454, + 0.004137302748858929, + 0.00033360428642481565, + -0.008408656343817711, + 0.030539264902472496, + 0.016147056594491005, + 0.017463194206357002, + -0.016000820323824883, + -0.015245258808135986, + 0.014331274665892124, + 0.015038088895380497, + -0.0021128272637724876, + -0.029759330675005913, + -0.00040938882739283144, + -0.007750587537884712, + -0.02087540365755558, + -0.005636237096041441, + -0.007665282115340233, + -0.0007845032378099859, + -0.012820154428482056, + 0.011510109528899193, + 0.006422263570129871, + -0.0042134677059948444, + -0.006958467420190573, + -0.009724793955683708, + 0.0172316525131464, + 0.0055204653181135654, + 0.008061341941356659, + -0.004935515578836203, + -0.009858844801783562, + -0.0024174887221306562, + -0.0017274304991587996, + -0.016463905572891235, + -0.006988933775573969, + -0.0044114976190030575, + -0.0044785235077142715, + 0.02581091783940792, + -0.017170719802379608, + 0.009377479553222656, + -0.029003771021962166, + 0.0016832544934004545, + 0.010973905213177204, + 0.0003720677923411131, + 0.023568609729409218, + 0.012265670113265514, + -0.031270451843738556, + 0.02120443806052208, + -0.004198234993964434, + -0.015623039565980434, + 0.0028851439710706472, + -0.0034396278206259012, + -0.004256120417267084, + -0.004493756219744682, + -0.0009322640253230929, + -0.0013983960961923003, + 0.00039644070784561336, + -0.020363571122288704, + -1.7089603716158308e-5, + -0.037509918212890625, + 0.002294100821018219, + 0.01440439373254776, + -0.002877527382224798, + 0.00967604760080576, + -0.002776989247649908, + 0.0005902815610170364, + 0.02282523550093174, + 0.0046003879979252815, + -0.02759014070034027, + 0.010590031743049622, + 0.001494364463724196, + -0.007939477451145649, + 0.0033726023975759745, + 0.006751297973096371, + 0.008500054478645325, + -0.03448767587542534, + 0.005901292432099581, + 0.0062120468355715275, + -0.007470299024134874, + 0.022715557366609573, + -0.006873162463307381, + 0.013807256706058979, + 0.03431706503033638, + 0.005745915230363607, + 0.018023772165179253, + -0.010669244453310966, + -0.011217635124921799, + 0.006440543103963137, + 0.005621003918349743, + -0.012552051804959774, + 0.0024037789553403854, + 0.005130498670041561, + -0.0026155186351388693, + -0.003817408112809062, + -0.019693316891789436, + 0.015683971345424652, + -0.0030907904729247093, + -0.001301666023209691, + 0.00322636472992599, + 0.015208699740469456, + 0.006199860479682684, + 0.0038326410576701164, + -0.03424394875764847, + 0.010193971917033195, + -0.0023885457776486874, + -0.010078201070427895, + -0.013819443993270397, + 0.026200884953141212, + -0.024470407515764236, + -0.005045193713158369, + -0.0013923028018325567, + -0.02832132950425148, + -0.010017268359661102, + -0.011034837923943996, + -0.01586676761507988, + 0.038631074130535126, + 0.003780848579481244, + -0.005858639720827341, + 0.020924149081110954, + 0.004633900709450245, + -0.01141261775046587, + -0.0055021857842803, + 0.007409366779029369, + -0.005127452313899994, + 0.010334116406738758, + -0.0008233475964516401, + 0.007756680715829134, + 0.009730886667966843, + 0.009895403869450092, + -0.013173561543226242, + 0.0030907904729247093, + 0.015976445749402046, + -0.033293403685092926, + 0.013551341369748116, + -0.006318678613752127, + 0.009115470573306084, + -0.025201596319675446, + 0.021509097889065742, + -0.027248920872807503, + 0.020436691120266914, + 0.022715557366609573, + -0.017463194206357002, + 0.007043772842735052, + -0.002757186070084572, + -0.0023245669435709715, + -0.02419011853635311, + 0.010535192675888538, + 0.0059530846774578094, + 0.00540164764970541, + -0.018754959106445312, + -0.013015137054026127, + -0.01706104166805744, + -0.01611049845814705, + 0.004198234993964434, + 0.0038844335358589888, + 0.0054138340055942535, + 0.004320099484175444, + 0.007116891443729401, + 0.0045242225751280785, + -0.00016746859182603657, + 0.030856112018227577, + 0.014635936357080936, + 0.0001670877682045102, + -0.013319798745214939, + -0.02281305007636547, + 0.0033512760419398546, + 0.01941302791237831, + -0.02193562500178814, + -0.007714028004556894, + 0.001771606388501823, + 0.02564030885696411, + -0.00736671406775713, + -0.0020579881966114044, + 0.0015431102365255356, + -0.013587900437414646, + -0.015915514901280403, + 0.0057946606539189816, + -0.04547986015677452, + 0.0015583432978019118, + 0.004274400416761637, + -0.03002743236720562, + -0.009938056580722332, + 0.0007852648850530386, + -0.006184627301990986, + 0.011162796057760715, + -0.0035706323105841875, + 0.003799128346145153, + -0.0014486651634797454, + -0.011790398508310318, + 0.026834581047296524, + -0.002557632979005575, + -0.006562407594174147, + -0.012223017401993275, + -0.008883927948772907, + -0.005224944092333317, + 0.010620498098433018, + -0.0048349774442613125, + 0.015683971345424652, + 0.01136996503919363, + -0.0039088064804673195, + 0.004250027239322662, + -0.009609022177755833, + 0.00262922840192914, + -0.0326840803027153, + 0.030977977439761162, + -0.017280397936701775, + 0.0004501373041421175, + -0.021643148735165596, + 0.011759932152926922, + -0.005928711965680122, + 0.001275008195079863, + 0.027614513412117958, + 0.001024424098432064, + 0.015233072452247143, + -0.004731392487883568, + 0.002431198488920927, + -0.00797603651881218, + 0.012795780785381794, + 0.011199355125427246, + 0.013173561543226242, + 0.015988633036613464, + -0.008372096344828606, + -0.018998688086867332, + 0.019863925874233246, + -0.01852341555058956, + -0.009462784975767136, + 0.004344472195953131, + 0.021594403311610222, + -0.00593175832182169, + 0.004475476685911417, + -0.014026612974703312, + 0.006367424502968788, + 0.024823814630508423, + -0.0056575629860162735, + -0.009249521419405937, + 0.019315537065267563, + 0.031270451843738556, + 9.039876749739051e-5, + 0.0002833351609297097, + -0.012290042825043201, + 0.01059612538665533, + -0.020997267216444016, + 0.010175692848861217, + -0.008110088296234608, + -0.010218345560133457, + 0.012491120025515556, + 0.004332285840064287, + -0.001380878034979105, + 0.015245258808135986, + -0.009383573196828365, + -0.01238144189119339, + -0.016646701842546463, + -0.003363462397828698, + -0.005057380069047213, + 0.007902918383479118, + 0.006276025902479887, + 0.011948822066187859, + -0.004582108464092016, + 0.002355033066123724, + -0.016390785574913025, + 0.011040930636227131, + -0.011546669527888298, + -0.004192141816020012, + -0.0015933794202283025, + -0.002690160647034645, + -0.00525845680385828, + -0.022398710250854492, + 0.026590852066874504, + -0.032001640647649765, + 0.0026079020462930202, + 0.009407945908606052, + 0.008597546257078648, + -0.008049155585467815, + 0.00014566625759471208, + -0.011315125972032547, + 0.022118421271443367, + 0.011564948596060276, + -0.0071900105103850365, + 0.009639488533139229, + -0.024957865476608276, + 0.03487764298915863, + -0.009194682352244854, + 0.00374428927898407, + 0.023008033633232117, + 0.013100442476570606, + -0.0029399830382317305, + -0.006891441997140646, + 0.010334116406738758, + -0.006440543103963137, + -0.026834581047296524, + 0.021984370425343513, + -0.002489084145054221, + 0.011223727837204933, + 0.018803704530000687, + -0.010858134366571903, + -0.0028897139709442854, + 0.019230231642723083, + 0.004183001816272736, + 0.013868189416825771, + 0.02071697823703289, + 0.02783386968076229, + 0.004609527997672558, + 0.014453139156103134, + 0.010212251916527748, + 0.00649538217112422, + 0.02241089567542076, + 0.014904038049280643, + -0.005295015871524811, + 0.008536613546311855, + 0.013417290523648262, + -0.00450898939743638, + -0.0015872861258685589, + 0.0023230435326695442, + 0.02054636925458908, + -0.01076673623174429, + -0.012795780785381794, + 0.01416066475212574, + 0.02866254933178425, + 0.01071798987686634, + -0.0021844226866960526, + -0.009724793955683708, + -0.022349964827299118, + 0.008969233371317387, + -0.00926170777529478, + 0.014258155599236488, + -0.0016878244932740927, + 0.008542707189917564, + 0.0011653300607576966, + 0.015683971345424652, + 0.0005967556498944759, + -0.012588610872626305, + -0.010157412849366665, + -0.014245969243347645, + 0.015757089480757713, + 0.0014661832246929407, + 0.00661724666133523, + -0.004210421349853277, + 0.0014776079915463924, + -0.017840974032878876, + -0.019218044355511665, + 0.036291271448135376, + 0.005285876337438822, + -0.0020762677304446697, + 0.012637357227504253, + 0.020046724006533623, + 0.01271047629415989, + -0.0016710680210962892, + 0.019242417067289352, + 0.00040824635652825236, + 0.013222306966781616, + 0.0022697278764098883, + 0.007695748470723629, + -0.0038356876466423273, + -0.007969943806529045, + -0.0125033063814044, + -0.00544430036097765, + 0.013088256120681763, + -0.013782883994281292, + -0.005934805143624544, + -0.0006241751252673566, + 0.009730886667966843, + 0.021667523309588432, + 0.008932673372328281, + 0.030466144904494286, + -0.005852546542882919, + 0.014294715598225594, + -0.0034518141765147448, + 0.003244644496589899, + 0.03697371482849121, + 0.01650046370923519, + -0.008926580660045147, + 0.009645581245422363, + -0.0066355266608297825, + -0.017694737762212753, + 0.004073323681950569, + 0.003445720998570323, + 0.004003251437097788, + 0.025128476321697235, + 0.009968522936105728, + -0.014904038049280643, + -0.0038692003581672907, + -0.004505943041294813, + 0.02968621253967285, + -0.004246980883181095, + 0.012466746382415295, + -0.010486447252333164, + 0.003467047354206443, + 0.009499344043433666, + 0.016293294727802277, + 0.00618767412379384, + -0.018596535548567772, + 0.0054595330730080605, + -0.007537324447184801, + -0.0064466362819075584, + 0.018596535548567772, + 0.005264549981802702, + 0.008390376344323158, + 0.003485327120870352, + -0.012552051804959774, + 0.0216797087341547, + 0.0019208904122933745, + -0.005331575404852629, + 0.015086835250258446, + 0.01525744516402483, + 0.028272582218050957, + 0.012277856469154358, + -0.011662440374493599, + -0.024311983957886696, + -0.009206868708133698, + -0.007013306487351656, + -0.008676758036017418, + 0.017365703359246254, + -2.7062505978392437e-5, + 0.0020077188964933157, + 0.0028851439710706472, + -0.012588610872626305, + 0.01096171885728836, + -9.354058420285583e-5, + 0.017743483185768127, + 0.0054138340055942535, + -0.019047433510422707, + 0.021009454503655434, + -0.0036864036228507757, + 0.02654210664331913, + 0.0018233987502753735, + -0.0013161374954506755, + -0.01990048587322235, + 0.026737088337540627, + 0.03258658945560455, + 0.028443193063139915, + 0.0014303855132311583, + -0.01975424773991108, + -0.004953795112669468, + -0.008298978209495544, + -0.001515690702944994, + 0.0054595330730080605, + -0.002001625718548894, + 0.027712006121873856, + -0.008524427190423012, + 0.00931045413017273, + -0.0067817638628184795, + -0.006970654241740704, + -0.036047544330358505, + -0.010711897164583206, + -0.004246980883181095, + -0.016476090997457504, + 0.014696868136525154, + -0.0006649236311204731, + -0.010657058097422123, + -0.010626591742038727, + 0.017938466742634773, + 0.008963139727711678, + 0.021228810772299767, + 0.0027861290145665407, + -0.004335332661867142, + -0.004563828464597464, + -0.0028028853703290224, + 0.0001785125641617924, + -0.0178897213190794, + 0.002074744552373886, + 0.01407535932958126, + -0.013307612389326096, + -0.005029960535466671, + 0.005834267009049654, + -0.004819744266569614, + -0.0013976343907415867, + -0.022471828386187553, + 0.028199464082717896, + 0.014380021020770073, + -0.0033147165086120367, + -0.03992283716797829, + -0.006568500772118568, + 0.029271872714161873, + 0.005435160361230373, + -0.014294715598225594, + -0.001994009129703045, + 0.010431608185172081, + -0.034438930451869965, + 0.00653803488239646, + -0.01658576913177967, + 0.006507568527013063, + -0.022130608558654785, + 0.012223017401993275, + 0.004237840883433819, + 0.01754849962890148, + 0.003741242690011859, + -0.02040013112127781, + 0.02661522477865219, + 0.003032904816791415, + 0.018559975549578667, + 0.007421553134918213, + 0.01731695793569088, + 0.017853161320090294, + -1.3983484677737579e-5, + -0.009414038620889187, + -0.00826241821050644, + -0.018243128433823586, + -0.01650046370923519, + -0.00336955557577312, + -0.03239160403609276, + -0.008762063458561897, + -0.0152208860963583, + 0.0008393423049710691, + -0.002743476303294301, + 0.004822790622711182, + 0.0056484234519302845, + -0.014575003646314144, + -0.0070925187319517136, + -0.01933990977704525, + 0.00556616485118866, + 0.006848789285868406, + 0.005730682052671909, + -0.00495988829061389, + -0.018255313858389854, + -0.01113232970237732, + -0.012204737402498722, + 0.004667413420975208, + 0.00885955523699522, + -0.007257035933434963, + 0.01431908831000328, + 0.001908704056404531, + -0.020595114678144455, + 0.030856112018227577, + 0.0018828078173100948, + -0.03275720030069351, + -0.015915514901280403, + 0.010224438272416592, + 0.006017063744366169, + -0.023446746170520782, + 0.015074648894369602, + 0.011053117923438549, + -0.01485529262572527, + 0.008414749056100845, + 0.009115470573306084, + -0.02224028669297695, + -0.015878954902291298, + -0.00728140864521265, + 0.0003476948768366128, + -0.011040930636227131, + 0.039118532091379166, + -0.0048593501560389996, + -0.00106631510425359, + -0.0003606429963838309, + -0.0032537842635065317, + -0.020107656717300415, + -0.015818022191524506, + -0.0015857628313824534, + -0.01836499199271202, + 0.0045303157530725, + -0.028711294755339622, + -0.013990053907036781, + 0.004100743215531111, + 0.0125033063814044, + 0.01416066475212574, + -0.022191539406776428, + -0.0177922286093235, + 0.020509809255599976, + 0.016134871169924736, + 0.038655444979667664, + -0.013856003060936928, + -0.004371891729533672, + 0.01643953286111355, + -0.0004261452122591436, + 0.027297666296362877, + -0.005748961586505175, + -0.009072817862033844, + -0.02226465940475464, + -0.0066964589059352875, + -0.009036258794367313, + -0.00991977658122778, + 0.005755054764449596, + 0.014745614491403103, + -0.017341330647468567, + -0.009383573196828365, + 0.019924858585000038, + 0.0005845691775903106, + -0.002764802658930421, + -0.013941308483481407, + 0.01546461507678032, + -0.00011758028267649934, + -0.0037899885792285204, + -0.018754959106445312, + -0.019486146047711372, + 0.012466746382415295, + -0.028711294755339622, + -0.025518443435430527, + 0.003917946480214596, + 0.009560276754200459, + -0.015805836766958237, + 0.012612984515726566, + -0.0053529017604887486, + -0.012271763756871223, + -0.0038082681130617857, + -0.022118421271443367, + 0.01213161926716566, + 0.01347822230309248, + 0.018401551991701126, + 0.015452428720891476, + 0.0040306709706783295, + 0.008372096344828606, + -0.0019635430071502924, + -0.014709055423736572, + 0.02453134022653103, + 0.02581091783940792, + -0.009115470573306084, + -0.011266380548477173, + -0.008244139142334461, + -0.0005289684631861746, + -0.0038722471799701452, + 0.011546669527888298, + -0.008006502874195576, + 0.012929831631481647, + -0.011436991393566132, + -0.02564030885696411, + -0.004944655578583479, + 0.014026612974703312, + 0.005179244559258223, + 0.017292583361268044, + 0.022349964827299118, + -0.01862090826034546, + 0.012820154428482056, + 0.005889106076210737, + 0.01843811199069023, + 0.015074648894369602, + 0.0054503935389220715, + 6.531179678859189e-5, + -0.01335635781288147, + 0.001526353880763054, + -0.004210421349853277, + -0.023580797016620636, + 0.0059439451433718204, + 0.0023809291888028383, + -0.024945680052042007, + -0.02995431423187256, + -0.0022377383429557085, + 0.007969943806529045, + 0.010059921070933342, + -0.014989343471825123, + -0.024872561916708946, + 0.009743073023855686, + 0.006199860479682684, + -0.010797201655805111, + 0.0017807461554184556, + 0.011522295884788036, + 0.01812126301229, + 0.0011203924659639597, + 0.010388955473899841, + 0.02588403783738613, + 0.00455164210870862, + -0.009931962937116623, + -0.013514782302081585, + 0.008213672786951065, + 0.017134159803390503, + -0.012180364690721035, + -0.008536613546311855, + 0.01862090826034546, + -0.00044632903882302344, + 0.01174165215343237, + -0.0184502974152565, + -0.0032537842635065317, + 0.018913382664322853, + 0.008585359901189804, + -0.0009947196813300252, + 0.006193767301738262, + -0.00608713598921895, + -0.003096883650869131, + -0.00556616485118866, + 0.00661724666133523, + -0.025835290551185608, + 0.01820656843483448, + 0.030709873884916306, + -0.01916929893195629, + 0.003881386946886778, + -0.002674927469342947, + -0.022118421271443367, + -0.020253892987966537, + -0.03553571179509163, + -0.007104705087840557, + -0.009450598619878292, + -0.02306896448135376, + -0.01113232970237732, + 0.017365703359246254, + 0.0013275622623041272, + -0.00673911115154624, + -0.0017518033273518085, + 3.946317883674055e-5, + -0.006276025902479887, + 0.020205147564411163, + 0.018316246569156647, + 0.01221692468971014, + 0.003118210006505251, + -5.712402344215661e-5, + 0.020851029083132744, + -0.021972183138132095, + 0.016134871169924736, + 0.025030985474586487, + 0.010809388011693954, + -0.01981518045067787, + 0.016817312687635422, + -0.012856713496148586, + 0.012241297401487827, + 0.005684982519596815, + 0.010035548359155655, + -0.008829088881611824, + 0.006580687593668699, + -0.007659188937395811, + -0.0012323556002229452, + -0.022215913981199265, + 0.008122274652123451, + -0.0019224138231948018, + -0.004658273421227932, + -0.002280391054227948, + 0.022618066519498825, + -0.004627807531505823, + 0.005307202693074942, + -0.04808776453137398, + 0.0020336152520030737, + -0.04650352522730827, + 0.009060631506145, + -0.01492841076105833, + -0.016561396420001984, + 0.02588403783738613, + 0.020339198410511017, + 0.008238045498728752, + -0.0014913177583366632, + -0.010200065560638905, + -0.005014727357774973, + 0.004731392487883568, + -0.005218850914388895, + -0.009840564802289009, + 0.00943231862038374, + 0.017451008781790733, + 0.013819443993270397, + -0.0032812037970870733, + -0.0017106740269809961, + -0.015891142189502716, + -0.01894994266331196, + -0.001064030104316771, + 0.0037747554015368223, + 0.017682550475001335, + 0.002949122805148363, + 0.00653803488239646, + -0.0021828992757946253, + -0.008640198968350887, + -0.005477813072502613, + 0.009944150224328041, + 0.006848789285868406, + -0.00756779033690691, + 0.015818022191524506, + 0.013417290523648262, + -0.003948412369936705, + 0.01136996503919363, + -9.181496352539398e-6, + -0.008554893545806408, + -0.004003251437097788, + -0.0012445420725271106, + -0.0010967812268063426, + -0.007890732027590275, + -0.005858639720827341, + 0.009791819378733635, + -0.015245258808135986, + -0.025372205302119255, + 0.012265670113265514, + 0.011436991393566132, + 0.01706104166805744, + -0.0075190444476902485, + -0.006934094708412886, + -0.00029399830964393914, + 0.020521994680166245, + -0.002283437643200159, + -0.005843406543135643, + 0.0075190444476902485, + -0.010157412849366665, + 0.02403169497847557, + -0.0035462593659758568, + -0.010632684454321861, + -0.005310249049216509, + -0.014221596531569958, + -0.007543417625129223, + 0.01241800095885992, + 0.008061341941356659, + -0.017036668956279755, + -0.007848079316318035, + 0.022800862789154053, + 0.02451915293931961, + -0.028345702216029167, + 0.0007989746518433094, + -0.015623039565980434, + 0.0017091507324948907, + -0.022837422788143158, + 0.022374337539076805, + -0.004234794061630964, + -0.0005415357300080359, + 0.0035706323105841875, + 0.011650254018604755, + -0.003683357033878565, + 0.015878954902291298, + -0.012771408073604107, + -0.015732716768980026, + -0.00230781058780849, + -0.009998989291489124, + -0.012088966555893421, + -0.01739007607102394, + -0.03836296871304512, + 0.0006062762695364654, + 0.0014242923352867365, + 0.00673911115154624, + -0.02720017544925213, + -0.01609831117093563, + 0.02202093042433262, + 0.004597341176122427, + -0.009718700312077999, + -0.003183712251484394, + -0.0012468269560486078, + -0.016732007265090942, + 0.011095769703388214, + -0.010510819964110851, + -0.023824525997042656, + -0.0037595222238451242, + 0.0032812037970870733, + 0.001829492044635117, + 0.007939477451145649, + 0.009852751158177853, + -0.010163506492972374, + 0.000781456648837775, + 0.03075862117111683, + 0.006733017973601818, + -0.022593693807721138, + 0.02282523550093174, + -0.01626892201602459, + 0.018109077587723732, + 0.005246270447969437, + -0.0035493059549480677, + -0.009566369466483593, + 0.03797300532460213, + -0.008439122699201107, + -0.01213161926716566, + -0.023568609729409218, + -0.013661019504070282, + -0.006934094708412886, + -0.012088966555893421, + 0.003585865255445242, + -0.012162085622549057, + 0.015074648894369602, + 0.00793338380753994, + 0.012466746382415295, + 0.004371891729533672, + 0.01311262883245945, + -0.009718700312077999, + 0.007001120131462812, + -0.027370784431695938, + 0.020826656371355057, + -0.016159243881702423, + -0.023081151768565178, + -7.468966214219108e-5, + 0.01902306079864502, + -0.0054138340055942535, + -0.0036163313779979944, + 0.022398710250854492, + -0.016293294727802277, + 0.0214481670409441, + -0.0027983153704553843, + -0.014453139156103134, + -0.0014501885743811727, + 0.02348330430686474, + -0.01238144189119339, + 0.02888190560042858, + 0.015233072452247143, + 0.02192343771457672, + 0.03173353523015976, + -0.0078054266050457954, + -0.0050330073572695255, + -0.015354936942458153, + -0.012101152911782265, + 0.012155991978943348, + -0.004810604266822338, + 0.017914094030857086, + -0.009011886082589626, + 0.019571451470255852, + -0.005139638669788837, + 0.03275720030069351, + 0.006690365727990866, + 0.006477102637290955, + 0.012028033845126629, + -0.0031989451963454485, + -0.012491120025515556, + 0.0023245669435709715, + -0.018547790125012398, + -0.006733017973601818, + -0.0016649748431518674, + -0.0033969751093536615, + -0.020205147564411163, + -5.9028156101703644e-5, + 0.001404489274136722, + -0.024628831073641777, + 0.004825837444514036, + -0.006032296922057867, + -0.010303650051355362, + 0.006995026953518391, + 0.000821062596514821, + 0.004201281350106001, + 0.006132835056632757, + 0.017597245052456856, + -0.0128323407843709, + -0.008969233371317387, + 0.0033604158088564873, + -0.011022651568055153, + 0.00345790758728981, + 0.001111252699047327, + -0.01271047629415989, + 0.00832944456487894, + -0.006854882929474115, + -0.003509699832648039, + 0.008390376344323158, + 0.009279987774789333, + 0.0023931157775223255, + -0.010401141829788685, + -0.003683357033878565, + -0.027248920872807503, + -0.004874583333730698, + 0.0018706213450059295, + -0.031294822692871094, + -0.0019924859516322613, + 0.0074581122025847435, + 0.015976445749402046, + -0.02354423701763153, + -0.010218345560133457, + 0.015476801432669163, + 0.008506148122251034, + -0.009956336580216885, + 0.006702552083879709, + 0.003025288227945566, + -0.02873566746711731, + -0.0030694641172885895, + 0.00568802934139967, + -0.0297837033867836, + -0.00036254714359529316, + 0.009779633022844791, + 0.010072107426822186, + -0.013173561543226242, + -0.012064593844115734, + 0.018547790125012398, + -0.004591247998178005, + -0.009858844801783562, + -0.015549920499324799, + -0.01586676761507988, + -0.01149792317301035, + 0.014416580088436604, + 0.002635321579873562, + -0.001373261446133256, + -0.0058312201872467995, + -0.010285370983183384, + 0.011790398508310318, + -0.013368544168770313, + -0.01299076434224844, + 0.009718700312077999, + 0.017682550475001335, + -0.0006146545056253672, + 0.018730586394667625, + -0.02532345987856388, + -0.016768567264080048, + -0.02888190560042858, + -0.008603639900684357, + 0.02265462651848793, + 0.020936334505677223, + 0.014782173559069633, + -3.1632425816496834e-5, + 0.01534275058656931, + 0.010657058097422123, + -0.01452625822275877, + -0.013466035947203636, + -0.004606481175869703, + -0.00213263020850718, + 0.005173151381313801, + 0.007305781822651625, + -0.026274003088474274, + -0.012978577986359596, + -0.017999399453401566, + -0.016683261841535568, + -0.023495491594076157, + -0.02598152868449688, + 0.03034428134560585, + -0.0039057598914951086, + -0.007701841648668051, + 0.02323957532644272, + 0.017511939629912376, + -0.005599677562713623, + -0.009042351506650448, + -0.0012003661831840873, + -0.013295426033437252, + 0.004579061642289162, + 0.0073362477123737335, + 0.001792932627722621, + 0.009212962351739407, + -0.0023139037657529116, + 0.016549210995435715, + 0.008914394304156303, + 0.02783386968076229, + 0.022154981270432472, + 0.022203726693987846, + -0.004027624614536762, + 0.00493856193497777, + 0.011443084105849266, + -0.004871536511927843, + -0.022837422788143158, + -0.010072107426822186, + -0.02152128517627716, + -0.008762063458561897, + 0.013758511282503605, + 0.00047565269051119685, + -0.014904038049280643, + 0.021740641444921494, + 0.00890220794826746, + -0.02428761124610901, + -0.002822688315063715, + -0.01141261775046587, + 0.010979998856782913, + 0.02136286161839962, + 0.019205858930945396, + -0.013295426033437252, + 0.03543822094798088, + -0.0172316525131464, + 0.016610141843557358, + -0.00288362056016922, + -0.00181121239438653, + -0.004250027239322662, + 0.011516203172504902, + 0.019218044355511665, + 0.007951663807034492, + -0.005977457854896784, + -0.010376769118010998, + -0.004119022749364376, + -0.02654210664331913, + 0.002064081374555826, + -0.010011175647377968, + -0.007622629404067993, + 0.002073221141472459, + 0.0464547798037529, + 0.017597245052456856, + 0.008725504390895367, + -0.010388955473899841, + -0.011589321307837963, + 0.0019863927736878395, + 0.02008328214287758, + -0.006605060305446386, + 0.0035493059549480677, + -0.0012506352504715323, + -0.002690160647034645, + 0.01448969915509224, + -0.006010970566421747, + -0.02322738990187645, + 0.006236420013010502, + 0.010687523521482944, + -0.011851330287754536, + -0.011199355125427246, + 0.004283539950847626, + -0.030393026769161224, + -0.022873982787132263, + -0.023251762613654137, + 0.029320618137717247, + 0.003960598725825548, + 0.021387234330177307, + -0.01161978766322136, + 0.02492130734026432, + 0.017024481669068336, + -0.01295420527458191, + -0.004137302748858929, + -0.011491830460727215, + -2.5134570023510605e-5, + -0.001930030295625329, + -0.03270845487713814, + 0.026103394106030464, + 0.031197333708405495, + -0.01763380505144596, + 0.006379610858857632, + 0.023446746170520782, + -0.015635225921869278, + 0.005489999428391457, + 0.0033512760419398546, + 0.00012129334209021181, + 0.00756779033690691, + 0.02362954244017601, + -0.018828077241778374, + 0.004225654527544975, + -0.026493359357118607, + 0.001343557029031217, + -0.013563527725636959, + 0.005419927183538675, + -0.002128060208633542, + -0.0014319088077172637, + 0.014709055423736572, + -0.007360620889812708, + -0.02169189602136612, + 0.012942018918693066, + 0.027980107814073563, + 0.03526761010289192, + 0.026810208335518837, + -0.006020110100507736, + 0.012881086207926273, + 0.02710268273949623, + -0.036851849406957626, + -0.002347416477277875, + -0.02192343771457672, + -0.016707634553313255, + -0.014245969243347645, + -0.0019254604121670127, + -0.008091808296740055, + -0.007701841648668051, + 0.007872452028095722, + -0.005416880827397108, + -0.01611049845814705, + -0.028955023735761642, + 0.0017472334438934922, + 0.0023230435326695442, + 0.01651265099644661, + 0.006885348819196224, + -0.005060426890850067, + -0.02476288378238678, + 0.018401551991701126, + 0.020595114678144455, + -0.018986502662301064, + -0.011461364105343819, + -0.014050986617803574, + -0.019461773335933685, + 0.01546461507678032, + 0.011857423931360245, + -0.00691581517457962, + -0.004359705373644829, + -0.010986091569066048, + -0.007835892960429192, + 0.0211191326379776, + 0.003948412369936705, + -0.0021036872640252113, + -0.00322636472992599, + -0.002030568663030863, + -0.0005301109049469233, + -0.004502896219491959, + -0.015086835250258446, + -0.01747538149356842, + -0.015537734143435955, + -0.013490409590303898, + 0.018255313858389854, + -0.016549210995435715, + -0.006403983570635319, + -0.017012296244502068, + -0.011138422414660454, + -0.013563527725636959, + -0.008676758036017418, + -0.018986502662301064, + -0.002568296156823635, + 0.020497621968388557, + 0.035486966371536255, + -0.017426636070013046, + -0.018474670127034187, + -0.03634001687169075, + 0.006391797214746475, + 0.0018630047561600804, + 0.005977457854896784, + 0.016561396420001984, + -0.015001529827713966, + 0.03261096030473709, + -0.0025439232122153044, + -0.012649543583393097, + 0.007317968178540468, + -0.006422263570129871, + -0.00566670298576355, + -0.02410481497645378, + 0.0016147056594491005, + -0.012357068248093128, + -0.016378600150346756, + -0.005986597388982773, + -0.03051489032804966, + 0.009322640486061573, + -0.024580085650086403, + 0.035413846373558044, + -0.004877629689872265, + 0.007183916866779327, + 0.013758511282503605, + 0.014050986617803574, + -0.023861084133386612, + 0.010693617165088654, + -1.0770257858894183e-6, + -0.0010411805706098676, + -0.01942521519958973, + -0.003010055050253868, + -0.002402255544438958, + -0.008603639900684357, + -0.0055021857842803, + -0.001517975702881813, + -0.01072408352047205, + -0.017121974378824234, + 0.0018706213450059295, + -0.017828788608312607, + -0.0032598774414509535, + 0.0049812146462500095, + 0.012387534603476524, + -0.002679497469216585, + 0.004222607705742121, + 0.015159954316914082, + 0.004521175753325224, + -0.047795288264751434, + 0.0022986705880612135, + 0.0015903328312560916, + -0.003122780006378889, + 0.015379310585558414, + -0.014209410175681114, + -0.011887890286743641, + 0.011278566904366016, + -0.017853161320090294, + -0.016549210995435715, + 0.011107956990599632, + -0.006665992550551891, + 0.021301928907632828, + 0.006982840597629547, + 0.0039941114373505116, + 0.002764802658930421, + 0.007409366779029369, + 0.006726924795657396, + 0.009980709291994572, + 0.02199655771255493, + -0.0034274414647370577, + 0.015988633036613464, + 0.014757800847291946, + -0.007135171443223953, + 0.008841275237500668, + 0.02751702256500721, + 0.01229613646864891, + -0.009773539379239082, + -0.009450598619878292, + -0.016390785574913025, + -0.021021639928221703, + 0.0012681533116847277, + -0.01035239640623331, + 0.0038539674133062363, + 0.0036376577336341143, + -0.016415158286690712, + 0.005642330273985863, + 0.02323957532644272, + -0.002888190560042858, + -0.0032812037970870733, + -0.0018736679339781404, + -0.020095469430088997, + 0.0030374745838344097, + -0.0021036872640252113, + 0.006726924795657396, + -0.0009391189087182283, + -0.012259576469659805, + -0.016463905572891235, + 0.008445215411484241, + -0.006891441997140646, + 0.007409366779029369, + 0.0007532754680141807, + 0.014270342886447906, + -0.014514071866869926, + 0.00018622430798131973, + -0.012649543583393097, + -0.00024372916959691793, + 0.021021639928221703, + 0.0015720530645921826, + -0.006489288993179798, + 0.018962128087878227, + 0.0005183052853681147, + 0.005231037270277739, + 0.0018919475842267275, + -0.006556314416229725, + -0.027370784431695938, + 0.007671375293284655, + -0.014623750001192093, + -0.022069675847887993, + -0.0034091616980731487, + -0.015196513384580612, + -0.01965675689280033, + -0.03083173930644989, + -0.026834581047296524, + 0.006077995989471674, + 0.023020219057798386, + 0.013405104167759418, + 0.008420842699706554, + 0.009456691332161427, + 0.009889311157166958, + -0.007543417625129223, + -0.000504214724060148, + 0.010102573782205582, + 0.01323449332267046, + 0.0008408655994571745, + -0.016719819977879524, + 0.007945571094751358, + -0.018547790125012398, + -0.002402255544438958, + -0.004688739776611328, + -0.001655834959819913, + 0.005822080187499523, + 0.009505437687039375, + -0.01796283945441246, + 0.010504727251827717, + -0.00580989383161068, + -0.015501175075769424, + 0.008567079901695251, + -0.027395157143473625 + ], + "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed": [ + -0.014642416499555111, + -0.005721271503716707, + -0.01350636687129736, + -0.020297417417168617, + -0.03552048280835152, + -0.023541470989584923, + 0.00883594062179327, + 0.04483608901500702, + 0.011934831738471985, + 0.04501280561089516, + -0.012565970420837402, + 0.026179630309343338, + -0.025725210085511208, + -0.015437650494277477, + -0.021711168810725212, + -0.019312841817736626, + -0.03567195683717728, + 0.007182357367128134, + -0.010962878353893757, + 0.009807894006371498, + 0.04597213864326477, + -0.010577883571386337, + -0.028880903497338295, + 0.03249101713299751, + -0.024538669735193253, + -0.02104216255247593, + 0.03226380795240402, + -0.011694998480379581, + -0.027214696630835533, + 0.007693579886108637, + 0.00246775196865201, + 0.015235686674714088, + 0.03097628429532051, + -0.007958658039569855, + 0.029108112677931786, + 0.02456391602754593, + -0.007977591827511787, + 0.03471262380480766, + -0.025662096217274666, + 0.026659294962882996, + -0.04367479309439659, + 0.01880793087184429, + 0.020991669967770576, + -0.0105905057862401, + -0.01319079753011465, + 0.02479112520813942, + 0.050465844571590424, + 0.004244407173246145, + 0.021004293113946915, + -0.0014516188530251384, + 0.028174027800559998, + -0.013531612232327461, + -0.01720483973622322, + 0.0014389960560947657, + 0.00032779763569124043, + 0.031153002753853798, + 0.010350673459470272, + 0.0371614433825016, + 0.01166975311934948, + -0.046628519892692566, + -0.01284998282790184, + 0.012856293469667435, + 0.038524702191352844, + 0.02110527642071247, + -0.01643485017120838, + -0.022973446175456047, + 0.036378830671310425, + 0.003979329019784927, + -0.04733539745211601, + 0.001330913626588881, + 0.03774208948016167, + 0.03948403149843216, + -0.024917352944612503, + 0.004089778289198875, + -0.014238486997783184, + 0.0050680432468652725, + 0.028956640511751175, + -0.029789743945002556, + 0.00023056282952893525, + 0.0315316841006279, + -0.02563685178756714, + 0.015159949660301208, + 0.0352175347507, + -0.0133548928424716, + 0.011890651658177376, + 0.056953947991132736, + -0.031102512031793594, + -0.028098290786147118, + -0.0038846582174301147, + -0.0504910908639431, + 0.028805166482925415, + 0.009549126960337162, + 0.0022910332772880793, + -0.00619462551549077, + -0.006011595483869314, + -0.006620644126087427, + 0.02211509831249714, + 0.010173955000936985, + -0.006043152417987585, + -0.037691596895456314, + -0.013253911398351192, + 0.016384359449148178, + -0.046855732798576355, + -0.0068162973038852215, + 0.02004496194422245, + -0.018618589267134666, + 0.024223100394010544, + -0.004657803103327751, + 0.009063150733709335, + 0.008129065856337547, + 0.042033832520246506, + -0.0003851917863357812, + 0.01201056782156229, + 0.004045598674565554, + 0.0205877423286438, + -0.08179556578397751, + -0.00825529359281063, + 0.0036732268054038286, + -0.041958097368478775, + -0.03582342714071274, + 0.01518519502133131, + 0.028426483273506165, + 0.0017040743259713054, + -0.015664860606193542, + 0.00811013113707304, + -0.024273591116070747, + -0.013594726100564003, + 0.019224481657147408, + 0.007933412678539753, + 0.00476194079965353, + 0.03756536915898323, + 0.0033797472715377808, + -0.018113678321242332, + 0.006156757473945618, + -0.025043580681085587, + 0.003059444483369589, + -0.0018303020624443889, + 0.03443492203950882, + -0.009504947811365128, + 0.04925405979156494, + 0.0035154421348124743, + -0.005781229585409164, + -0.003957238979637623, + -0.007579974830150604, + 0.028325501829385757, + 0.0035627775359898806, + -0.03059760108590126, + 0.01753303036093712, + 0.0038247001357376575, + 0.01996922679245472, + -0.04932979494333267, + 0.0023636140394955873, + 0.04698196053504944, + 0.003831011475995183, + -0.002183739561587572, + 0.020865442231297493, + -0.0033923701848834753, + 0.02556111477315426, + -0.034005749970674515, + -0.011890651658177376, + 0.003316633403301239, + -0.047991782426834106, + 0.02777010016143322, + -0.0102938711643219, + 0.008709712885320187, + -0.003812077222391963, + 0.03978697955608368, + 0.007119243498891592, + -0.02073921449482441, + 0.013657839968800545, + 0.049077339470386505, + -0.007428501732647419, + 0.026331104338169098, + 0.010237068869173527, + -0.01643485017120838, + -0.021786905825138092, + 0.005730738863348961, + 0.016775663942098618, + 0.01495798584073782, + -0.014213241636753082, + -0.007081375457346439, + -0.0007084531243890524, + -0.03074907325208187, + 0.020941179245710373, + -0.006879411172121763, + 0.006447080988436937, + 0.010079284198582172, + 0.00458837766200304, + -0.03365231305360794, + 0.041655149310827255, + 0.00012672079901676625, + -0.015955183655023575, + 0.0019612633623182774, + 0.03794405236840248, + 0.017318444326519966, + 0.002930060960352421, + 0.015349291265010834, + 0.008539305999875069, + 0.03771684318780899, + 0.022014115005731583, + -0.024147363379597664, + -0.05685296654701233, + -0.04362430050969124, + 0.015803711488842964, + -0.04332135617733002, + -0.012843671254813671, + -0.012862605042755604, + -0.005598199553787708, + 0.009208312258124352, + -0.051753368228673935, + 0.050364863127470016, + -0.02143346704542637, + -0.00879807211458683, + -0.007958658039569855, + -0.04175613075494766, + -0.017848599702119827, + -0.02837599255144596, + -0.006513350643217564, + 0.030117934569716454, + -0.010439032688736916, + -0.025598982349038124, + -0.0055540199391543865, + 0.009403965435922146, + -0.02241804450750351, + -0.0408472903072834, + 0.03138021379709244, + 0.008968479931354523, + 0.02577570080757141, + -0.06796100735664368, + -0.00493550393730402, + 0.05685296654701233, + 0.016232885420322418, + -2.238569868495688e-5, + -0.05639854818582535, + -0.018340887501835823, + 0.024425065144896507, + -0.009770025499165058, + -0.014036523178219795, + 0.023844417184591293, + -0.017192216590046883, + 0.044028230011463165, + 0.043195128440856934, + 0.01676304265856743, + 0.0067594945430755615, + 0.007630466017872095, + 0.0004421914927661419, + -0.010268625803291798, + 0.03574769198894501, + 0.0012543880147859454, + -0.016561077907681465, + -0.013619971461594105, + 0.04963274300098419, + 0.023162787780165672, + 0.011379429139196873, + -0.012244089506566525, + 0.01712910272181034, + -0.008413078263401985, + -0.01774761825799942, + -0.0031083577778190374, + -0.007895544171333313, + 0.007901855744421482, + -0.009997235611081123, + 0.012345071882009506, + -0.0322890505194664, + 0.05453037843108177, + -0.009744780138134956, + 0.012281958013772964, + -0.027113715186715126, + -0.008659222163259983, + -0.008002838119864464, + -0.0330464169383049, + 0.00888012070208788, + -0.024828992784023285, + -0.013165552169084549, + -0.01018026564270258, + 0.00564237916842103, + 0.015614369884133339, + 0.04771408066153526, + 0.017457295209169388, + 0.02057511918246746, + -0.014819134958088398, + 0.0348893441259861, + 0.008286850526928902, + 0.035469990223646164, + -0.00673424918204546, + -0.03259199857711792, + -0.001734053366817534, + 0.004225472919642925, + -0.03269298002123833, + -0.010199200361967087, + -0.016005676239728928, + 0.002532443730160594, + 0.020486759021878242, + -0.02179952897131443, + 0.04513903334736824, + -0.015425028279423714, + -0.021143143996596336, + -0.006809985730797052, + -0.00990256480872631, + 0.02792157232761383, + -0.016119280830025673, + 0.023377373814582825, + 0.03516704589128494, + -0.02678552269935608, + 0.00335765746422112, + 0.015803711488842964, + 0.03029465489089489, + -7.879370969021693e-5, + -0.053823500871658325, + -0.01712910272181034, + 0.031228739768266678, + -0.004263341426849365, + 0.017570899799466133, + -0.0025056202430278063, + -0.0035312206018716097, + 0.004014041740447283, + 0.041049256920814514, + -0.004985995125025511, + -0.02362982928752899, + -0.01659894548356533, + -0.018694326281547546, + 0.00015413587971124798, + -0.03650505840778351, + 0.022241326048970222, + 0.020411023870110512, + -0.022695744410157204, + 0.0037458078004419804, + 0.004001419059932232, + 0.0056392233818769455, + -0.03991320729255676, + 0.013758822344243526, + -0.038297493010759354, + -0.02248115837574005, + -0.022847218438982964, + 0.03842372074723244, + -0.0005889312014915049, + -0.034914590418338776, + -0.050693053752183914, + -0.016232885420322418, + 0.013758822344243526, + -0.01380931306630373, + 0.052056312561035156, + -0.01622026227414608, + -0.0006043152534402907, + 0.02317541092634201, + 0.006380811333656311, + 0.006589087191969156, + -0.0041623590514063835, + -0.010571571998298168, + 0.005342588294297457, + 0.0005703915376216173, + -0.017810732126235962, + 0.026432085782289505, + 0.013935540802776814, + 0.014604547992348671, + -0.012578592635691166, + 0.004373790696263313, + 0.0016141370870172977, + 0.008293161168694496, + 0.020007094368338585, + 0.00016971712466329336, + -0.0070687527768313885, + -0.0322890505194664, + -0.017962206155061722, + -0.000646917091216892, + 0.018921535462141037, + 0.003780520288273692, + 0.0304461270570755, + -0.003188828006386757, + 0.01629599928855896, + -0.02492997609078884, + 0.019073009490966797, + 0.008741269819438457, + 0.013253911398351192, + -0.04279119893908501, + -0.009296671487390995, + 0.010470589622855186, + 0.02999170683324337, + -0.017419425770640373, + 0.02333950623869896, + -0.009189378470182419, + 0.01415012776851654, + 0.02984023466706276, + -0.005632912274450064, + 0.0218878872692585, + 0.04445740580558777, + 0.02125674858689308, + -0.017015498131513596, + -0.017469916492700577, + -0.016169771552085876, + -0.024980466812849045, + 0.002022799337282777, + -0.019085632637143135, + -0.03203659504652023, + -0.011448854580521584, + 0.04733539745211601, + -0.0013553701573982835, + -0.005819098092615604, + 0.007561040576547384, + -0.019691525027155876, + 0.029512042179703712, + -0.021382976323366165, + 0.014756021089851856, + 0.0014997432008385658, + 0.019123500213027, + -0.011846471577882767, + 0.013935540802776814, + -0.0120547479018569, + -0.0016914515290409327, + -0.005819098092615604, + 0.02256951667368412, + 0.0133548928424716, + 0.03733815997838974, + -0.017621390521526337, + 0.030420880764722824, + -0.02355409413576126, + 0.03536900877952576, + -0.015450273640453815, + -0.07038457691669464, + -0.008981103077530861, + 0.05215729773044586, + 0.05973095819354057, + -0.026507822796702385, + 0.00921462383121252, + -0.03440967947244644, + 0.007384322118014097, + 0.06634528934955597, + 0.006626955699175596, + -0.01070411130785942, + 0.019704148173332214, + -0.0012812113855034113, + -0.01197269931435585, + -0.030799563974142075, + -0.025081448256969452, + 0.017381558194756508, + 0.004550509620457888, + 0.002770698629319668, + -0.020688723772764206, + -0.01705336570739746, + -0.002125359373167157, + 0.03226380795240402, + 0.003042088123038411, + 0.013102438300848007, + 0.030319899320602417, + 0.008640287443995476, + -0.027669116854667664, + -0.007359076291322708, + -0.02837599255144596, + -0.015740597620606422, + 0.023289015516638756, + 0.006109422072768211, + 0.05730738863348961, + -0.04216006025671959, + 0.02150920405983925, + -0.03052186407148838, + -0.003307166276499629, + -0.02769436314702034, + 0.01346849836409092, + 0.012641706503927708, + 0.011007057502865791, + -0.03655554726719856, + 0.0169018916785717, + 0.018643835559487343, + -0.03605064004659653, + -0.010123463347554207, + -0.08517847210168839, + -0.03299592807888985, + 0.011865406297147274, + -0.002606602618470788, + -0.016409603878855705, + -0.011657129973173141, + 0.024828992784023285, + -0.03168315812945366, + -0.009883631020784378, + -0.003285076469182968, + -0.009498636238276958, + -0.003345034783706069, + -0.0008520371629856527, + 0.03138021379709244, + -0.028350746259093285, + -0.04248825088143349, + -0.049834705889225006, + -0.01981775276362896, + 0.014377337880432606, + 0.038979120552539825, + 0.012641706503927708, + -0.0030547110363841057, + 0.01018026564270258, + 0.03314740210771561, + -0.018770063295960426, + 0.0411754846572876, + -0.03251626342535019, + 0.003188828006386757, + -0.02569996565580368, + 0.0015573345590382814, + -0.05422743037343025, + 0.005812786519527435, + -0.013367515988647938, + -0.006371344439685345, + -0.057963769882917404, + 0.044735103845596313, + -0.00018766512221191078, + 0.014768644236028194, + 0.023743435740470886, + 0.0044337487779557705, + -0.017861222848296165, + -0.02860320173203945, + -0.013859803788363934, + 0.006664823740720749, + -0.000995621201582253, + 0.002404638100415468, + -0.006784740369766951, + 0.004279119893908501, + -0.009788960218429565, + -0.04359905794262886, + 0.02265787683427334, + -0.005355211440473795, + 0.002806989010423422, + 0.01835351064801216, + -0.03299592807888985, + 0.005478283390402794, + 0.00776300486177206, + -0.003872035536915064, + 0.029789743945002556, + -0.0001971322053577751, + -0.011720243841409683, + -0.022014115005731583, + 0.020865442231297493, + 0.05180385708808899, + 0.025258168578147888, + -0.00711293239146471, + 0.013859803788363934, + 0.01606879010796547, + -0.015601746737957, + 0.022670499980449677, + 0.011335249990224838, + 0.014793889597058296, + -0.01569010689854622, + -0.01418799627572298, + 0.05142517387866974, + -0.013481120578944683, + 0.01697762869298458, + 0.002871680771932006, + -0.031178247183561325, + 0.027568135410547256, + 0.017343688756227493, + -0.019767262041568756, + 0.013367515988647938, + -0.0016030920669436455, + 0.0013293357333168387, + -0.01972939260303974, + 0.011960077099502087, + 0.0029805521480739117, + -0.016472717747092247, + 0.01897202618420124, + -0.03708570450544357, + 0.0333746112883091, + -0.022014115005731583, + -0.02792157232761383, + 0.009018970653414726, + 0.004821898881345987, + 0.005888523533940315, + 0.015475519001483917, + 0.0077314479276537895, + -0.0379188098013401, + 0.005828564986586571, + -0.013582102954387665, + 0.006245116703212261, + 0.008633976802229881, + -0.0030910014174878597, + -0.002275254810228944, + 0.03231429681181908, + 0.04483608901500702, + -0.01736893504858017, + 0.010262314230203629, + 0.01024969108402729, + -0.013922917656600475, + 0.00956806167960167, + -0.04296791926026344, + 0.01974201574921608, + 0.017734995111823082, + -0.003256675321608782, + -0.013948163948953152, + -0.02119363471865654, + -0.01209261640906334, + 0.010716733522713184, + -0.02885565720498562, + -0.036606039851903915, + -0.0015668016858398914, + 0.0239453986287117, + 0.019148746505379677, + 0.005547708366066217, + 0.014718152582645416, + -0.030193671584129333, + -0.013418006710708141, + 0.02265787683427334, + 0.016788287088274956, + -0.006690069567412138, + -0.00673424918204546, + 0.0022594763431698084, + 0.0037489633541554213, + 0.014036523178219795, + 0.01998184807598591, + 0.005913768894970417, + -0.006835231091827154, + 0.012755312025547028, + -0.01880793087184429, + -0.00124807667452842, + -0.017709750682115555, + -0.02241804450750351, + -0.014478320255875587, + 0.015639614313840866, + 0.009631175547838211, + -0.01582895591855049, + 0.031784139573574066, + 0.004926037043333054, + 0.015071590431034565, + 0.029259586706757545, + 0.015437650494277477, + -0.025674719363451004, + 0.04069582000374794, + -0.05028912425041199, + 0.05468184873461723, + -0.007220225874334574, + 0.01166975311934948, + -0.002455129288136959, + -0.013594726100564003, + -0.016232885420322418, + -0.028704185038805008, + 0.018000073730945587, + 0.010899764485657215, + 0.021761659532785416, + 0.03887813910841942, + -0.023137541487812996, + 0.020221682265400887, + 0.008141688071191311, + 0.006854165345430374, + 0.008981103077530861, + -0.01935070939362049, + 0.006298763677477837, + -0.0031399147119373083, + -0.022354930639266968, + 0.0037773647345602512, + 0.0015147327212616801, + -0.0032109178137034178, + 0.011537213809788227, + -0.022922955453395844, + 0.01821466162800789, + 0.01277424581348896, + -0.002983707934617996, + -0.05483332276344299, + -0.01683877781033516, + 0.018795307725667953, + 0.018315643072128296, + -0.011606639251112938, + -0.024462932720780373, + 0.004294898360967636, + 0.02875467576086521, + 0.01170131005346775, + -0.009265114553272724, + 0.017179593443870544, + 0.009000036865472794, + -0.01608141139149666, + 0.02036053128540516, + -0.011751800775527954, + -0.0004974161274731159, + -0.004174982197582722, + -0.0006532284896820784, + -0.013089815154671669, + -0.0012315092608332634, + 0.01212417334318161, + -0.0005983983282931149, + 0.014894871972501278, + 0.018858421593904495, + 4.856809027842246e-5, + -0.0066774464212358, + -0.025826193392276764, + -0.032793961465358734, + 0.009618552401661873, + -0.028779922053217888, + -0.014793889597058296, + 0.0057149603962898254, + -0.02900713123381138, + -0.005916924681514502, + 0.03536900877952576, + -0.01720483973622322, + -0.0036606041248887777, + 0.052662208676338196, + -0.010609440505504608, + 0.008514059707522392, + 0.014074391685426235, + 0.018631212413311005, + -0.012079993262887001, + 0.018075810745358467, + -0.02388228476047516, + 0.008924299851059914, + -0.046249836683273315, + 0.008059640415012836, + 0.041958097368478775, + -0.00391937093809247, + -0.028981884941458702, + 0.008974791504442692, + -0.02226657047867775, + -0.018479738384485245, + 0.010767225176095963, + 0.027795344591140747, + -0.015702728182077408, + -0.018176792189478874, + 0.016889270395040512, + -0.018845798447728157, + 0.02991597168147564, + 0.007725136820226908, + -0.01270482037216425, + -0.011007057502865791, + -0.003862568410113454, + -0.013518989086151123, + -0.018012696877121925, + 0.017040742561221123, + 0.017242707312107086, + 0.0036038015969097614, + -0.011499345302581787, + 0.02349098026752472, + 0.004026664420962334, + -0.01422586478292942, + -0.049607496708631516, + 0.034763116389513016, + 0.016775663942098618, + -0.0025703120045363903, + 0.0008066740701906383, + -0.003862568410113454, + 0.03526802733540535, + 0.01653583161532879, + -0.009321917779743671, + 0.016258131712675095, + -0.013834558427333832, + -0.0016614723717793822, + -0.029108112677931786, + -0.023617208003997803, + 0.03700996935367584, + -0.0072833397425711155, + -0.02027217298746109, + -0.018795307725667953, + 0.020398400723934174, + 0.00918306689709425, + 0.04443215951323509, + -0.0009167288662865758, + -0.010805093683302402, + 0.014932739548385143, + -0.005879056174308062, + 0.00963748712092638, + 0.05362153798341751, + -0.030244162306189537, + 0.049456022679805756, + 0.03885289281606674, + -0.008545616641640663, + -0.008034395053982735, + -0.009593307040631771, + -0.016270752996206284, + -0.008924299851059914, + 0.0013656262308359146, + -0.007327519357204437, + -0.013960786163806915, + -0.003316633403301239, + -0.009927810169756413, + -0.021143143996596336, + 0.0006402112194336951, + -0.03289494663476944, + 0.031708404421806335, + 0.03360182046890259, + -0.030168427154421806, + 0.037312913686037064, + -0.022986069321632385, + 0.012180975638329983, + 0.053672026842832565, + 0.004026664420962334, + -0.02623012103140354, + 0.05584314465522766, + 0.012868916615843773, + -0.03448541462421417, + 0.0031541152857244015, + -0.0017608767375349998, + -0.015197818167507648, + 0.013228665105998516, + -0.031253986060619354, + -0.006011595483869314, + 0.004364323802292347, + 0.027214696630835533, + 0.03602539375424385, + -0.024526046589016914, + -0.004298054147511721, + 0.016624191775918007, + 0.0033008549362421036, + -0.013493743725121021, + 0.009233557619154453, + 0.009517570026218891, + 0.02432408183813095, + 0.010659931227564812, + -0.014642416499555111, + 0.008551928214728832, + 0.018012696877121925, + 0.0065827760845422745, + -0.03663128614425659, + 0.021319862455129623, + 0.005607666447758675, + 0.011726555414497852, + -0.000922251318115741, + 0.04879963770508766, + 0.011966388672590256, + 0.029133358970284462, + 0.00023253513791132718, + -0.033778540790081024, + -0.006608021445572376, + -0.011480411514639854, + 0.00744112441316247, + 0.010685176588594913, + -0.0007258094265125692, + 0.00405506556853652, + -0.019540050998330116, + 0.015589123591780663, + -0.026583557948470116, + 0.05044059827923775, + 0.017457295209169388, + 0.012584904208779335, + 0.02607864886522293, + -0.021521827206015587, + -0.006860476918518543, + 0.01495798584073782, + 0.00953019317239523, + 0.03506606072187424, + 0.03971124067902565, + -0.012925718910992146, + -0.010369607247412205, + -0.001349058817140758, + -0.0051911151967942715, + 0.018643835559487343, + 0.03647981211543083, + -0.0005676302826032043, + -0.02370556630194187, + -0.03991320729255676, + -0.003477573860436678, + -0.008173245005309582, + -0.0019975537434220314, + 0.01339276134967804, + 0.00018973604892380536, + 0.017192216590046883, + 0.007655711378902197, + 0.009435522370040417, + 0.007150800433009863, + 0.050541579723358154, + -0.011158530600368977, + -0.019173990935087204, + -0.004193915985524654, + -0.004493706859648228, + -0.011575082316994667, + -0.01606879010796547, + 0.01442782860249281, + -0.011114351451396942, + 0.03486409783363342, + 0.03175889700651169, + 0.017103856429457664, + -0.010237068869173527, + 0.010426410473883152, + 0.008760204538702965, + -0.045643944293260574, + -0.017381558194756508, + -0.00709399813786149, + -0.02219083346426487, + 0.0189089123159647, + -0.01644747331738472, + 0.02456391602754593, + 5.799818609375507e-6, + 0.012881539762020111, + -0.007201291620731354, + -0.008476192131638527, + -0.04539148882031441, + -0.019073009490966797, + -0.041049256920814514, + -0.0009364519501104951, + -0.006620644126087427, + 0.02288508601486683, + 0.0037268735468387604, + 0.0218878872692585, + 0.02915860526263714, + -0.027896327897906303, + -0.05056682601571083, + -0.005803319625556469, + 0.020486759021878242, + 0.008577173575758934, + -0.009075773879885674, + -0.02057511918246746, + 0.004821898881345987, + 0.02332688309252262, + 0.02013332210481167, + -0.04513903334736824, + -0.008734958246350288, + -0.0390043668448925, + -0.02716420590877533, + -0.009056839160621166, + -0.0003210917639080435, + -0.011859094724059105, + -0.006399745587259531, + -0.02296082302927971, + -0.021534450352191925, + 0.005323654506355524, + -0.022354930639266968, + -0.04248825088143349, + 0.004821898881345987, + 0.029360568150877953, + -0.0072644054889678955, + 0.04806751757860184, + 0.01935070939362049, + -0.013859803788363934, + -0.018025320023298264, + -0.030345145612955093, + 0.024841615930199623, + 0.016472717747092247, + 0.002092224545776844, + 0.015084213577210903, + -0.013266533613204956, + -0.00856455136090517, + 0.005244762171059847, + -0.0085329944267869, + -0.006614332552999258, + 0.016018297523260117, + 0.0024188386742025614, + -0.004913414362818003, + -0.0014374181628227234, + 0.03059760108590126, + 0.034838851541280746, + 0.019035140052437782, + 0.0008820162038318813, + 0.01675041951239109, + -0.005093288607895374, + -0.01450356561690569, + 0.03759061545133591, + -0.007706202566623688, + 0.013607348315417767, + 0.017331067472696304, + -0.04354856535792351, + -0.017709750682115555, + -0.004250718746334314, + -0.010129774920642376, + 0.012401874177157879, + -0.017419425770640373, + 0.02196362428367138, + 0.005547708366066217, + -0.02554849162697792, + 0.011076482944190502, + -0.004998617805540562, + -0.010887141339480877, + 0.01197269931435585, + 0.04531575366854668, + 0.009788960218429565, + -0.01965365745127201, + -0.005276319105178118, + 0.016195017844438553, + 0.012067370116710663, + 0.01714172586798668, + 0.000584986584726721, + -0.0008409922011196613, + 0.012288268655538559, + -0.0034302384592592716, + -0.016195017844438553, + -0.008671844378113747, + -0.028779922053217888, + 0.032945435494184494, + -0.04589639976620674, + -0.0060021281242370605, + 0.013317025266587734, + 0.009195690043270588, + 0.0011447276920080185, + 0.00705612963065505, + 0.009959367103874683, + -0.00845725741237402, + 0.023667698726058006, + 0.0032787651289254427, + -0.01380931306630373, + -0.00709399813786149, + 0.004903947003185749, + -0.004386413376778364, + 0.0007786672795191407, + 0.005039642099291086, + 0.023238524794578552, + -0.009448145516216755, + -0.032415278255939484, + 0.03302117437124252, + -0.023920154199004173, + -0.017406802624464035, + 0.037666354328393936, + -0.026533067226409912, + 0.008482502773404121, + -0.058266717940568924, + 0.0024077938869595528, + -0.02769436314702034, + 0.0035028194542974234, + -0.038297493010759354, + -0.034384433180093765, + 0.0034649509470909834, + 0.0404181182384491, + -0.017028119415044785, + -0.02693699672818184, + 0.008356275036931038, + -0.03097628429532051, + 0.021357731893658638, + 0.018000073730945587, + -0.013064569793641567, + 0.0012922562891617417, + -0.0029884413816034794, + 0.028981884941458702, + 0.007340142037719488, + 0.010009858757257462, + 0.003872035536915064, + 0.0042380960658192635, + -0.007775628007948399, + 0.04397774115204811, + 0.0013048790860921144, + 0.019868243485689163, + -0.033248383551836014, + -0.00709399813786149, + 0.011922208592295647, + -0.023692943155765533, + -0.040190909057855606, + 0.008804383687675, + 0.020827574655413628, + -0.011310003697872162, + 0.0034965078812092543, + 0.010931321419775486, + 0.0005262118065729737, + 0.0065259733237326145, + 0.02362982928752899, + -0.020991669967770576, + -0.0009719535009935498, + 0.0040582213550806046, + -0.012622772715985775, + 0.007176046259701252, + -0.020713970065116882, + 0.02494259923696518, + -0.03779258206486702, + -0.011720243841409683, + -0.009719534777104855, + 0.017861222848296165, + -0.0055161514319479465, + -0.00568024767562747, + -0.00990887638181448, + -0.006974081974476576, + 0.008551928214728832, + -0.003808921668678522, + 0.003037354676052928, + 0.009580683894455433, + 0.032011352479457855, + 0.02332688309252262, + -0.028653694316744804, + 0.03395525738596916, + -0.003518597921356559, + 0.004736695438623428, + -0.0023415242321789265, + 0.031784139573574066, + 0.005702337250113487, + 0.0008686045184731483, + 0.030092690140008926, + 0.01231982558965683, + 0.03191036731004715, + 0.029890725389122963, + -0.043876755982637405, + 0.050617318600416183, + -0.01682615652680397, + 0.001986508723348379, + 0.004695671144872904, + 0.014440451748669147, + -0.016182394698262215, + -0.0013632593909278512, + 0.01235769409686327, + -0.00337659171782434, + 0.014011277817189693, + 0.012180975638329983, + 0.026533067226409912, + 0.005396235268563032, + 0.019312841817736626, + 0.031102512031793594, + 0.005045953206717968, + 0.005945325829088688, + -0.0038247001357376575, + -0.019641034305095673, + 0.007270717062056065, + -0.008974791504442692, + -0.02678552269935608, + 0.017469916492700577, + -0.01063468586653471, + -0.013493743725121021, + 0.046628519892692566, + -0.01821466162800789, + 0.005850655026733875, + -0.015715351328253746, + 0.007819807156920433, + 0.011221644468605518, + 0.004500018432736397, + -0.0063965898007154465, + 0.05142517387866974, + -0.01063468586653471, + 0.005595043767243624, + 0.00956806167960167, + -0.010868207551538944, + 0.004411659203469753, + 0.0032282741740345955, + -0.0013798268046230078, + 0.018568098545074463, + 0.029284832999110222, + -0.016712550073862076, + 0.005254229065030813, + 0.042261041700839996, + 0.024753257632255554, + 0.0022184522822499275, + 0.002707584761083126, + 0.03519228845834732, + 0.0015683794626966119, + -0.013001455925405025, + -0.004642024636268616, + 0.009018970653414726, + -0.00711293239146471, + 0.011126973666250706, + -0.0078071849420666695, + -0.016649436205625534, + -0.02211509831249714, + 0.004430592991411686, + -0.0034207713324576616, + -0.038979120552539825, + -0.01339276134967804, + 0.017318444326519966, + 0.013455875217914581, + 0.01036329660564661, + 0.02051200531423092, + -0.010754602029919624, + 0.029209095984697342, + 0.01266695186495781, + -0.016737796366214752, + -0.010281248018145561, + 0.009025282226502895, + -0.003931993618607521, + -0.021786905825138092, + 0.004045598674565554, + -0.005039642099291086, + 0.009662732481956482, + -0.004572599194943905, + 0.004323299508541822, + 0.005598199553787708, + -0.005456193350255489, + -0.025573737919330597, + 0.0049386597238481045, + 0.018605966120958328, + -0.013910295441746712, + 0.0070119500160217285, + -0.015437650494277477, + -0.004367479123175144, + -0.0031730495393276215, + -0.02333950623869896, + -0.03764110803604126, + -0.0024977310094982386, + 0.013001455925405025, + 0.0120547479018569, + -0.002551377983763814, + -0.010861895978450775, + -0.03534376248717308, + 0.0005360733484849334, + 0.010123463347554207, + 0.013922917656600475, + 0.007567352149635553, + -0.00894954614341259, + -0.0033797472715377808, + 0.010615752078592777, + -0.0006895189289934933, + 0.010760913603007793, + -0.004099245183169842, + 0.013481120578944683, + 0.014528810977935791, + -0.026659294962882996, + -0.010394853539764881, + -0.023049183189868927, + -0.026103893294930458, + 0.01644747331738472, + -0.008129065856337547, + 0.024500802159309387, + -0.005838032346218824, + -0.014061768539249897, + -0.008230047300457954, + -0.007927101105451584, + -0.01121533289551735, + -0.025674719363451004, + -0.005083821713924408, + -0.008002838119864464, + -0.01166344154626131, + -0.0020527783781290054, + -0.020474137738347054, + -0.008469880558550358, + -0.00821742508560419, + -0.030244162306189537, + 0.002794366329908371, + 0.011587705463171005, + -0.009580683894455433, + -0.0020212214440107346, + 0.027568135410547256, + -0.008135376498103142, + 0.027441907674074173, + -0.00205593416467309, + -0.00529525289312005, + 0.00811013113707304, + -0.012793179601430893, + -0.0055350856855511665, + -0.007826118730008602, + -0.004099245183169842, + -0.012786868959665298, + -0.013544234447181225, + -0.017772864550352097, + 0.003114669118076563, + -0.02532128244638443, + -0.01927497424185276, + 0.02615438401699066, + -0.010514769703149796, + -0.023465733975172043, + -0.01018026564270258, + -0.026255367323756218, + -0.004566288087517023, + 0.030016953125596046, + 0.017570899799466133, + -0.0011297381715849042, + 0.0037237179931253195, + -0.028805166482925415, + -0.013569480739533901, + 0.01028755959123373, + 0.001509210211224854, + -0.001623604097403586, + -0.008697090670466423, + 0.024147363379597664, + -0.0027091626543551683, + 0.016384359449148178, + -0.015336668118834496, + 0.00030708839767612517, + -0.0012322982074692845, + -0.013670462183654308, + -0.000550668453797698, + -0.0006938580190762877, + 0.015929939225316048, + -0.0015439228154718876, + 0.026255367323756218, + -0.013443253003060818, + 0.0034397055860608816, + 0.04932979494333267, + -0.025535868480801582, + 0.02034791000187397, + -0.02556111477315426, + -0.014869625680148602, + -0.013910295441746712, + 0.02852746658027172, + -0.0007522383239120245, + 0.018012696877121925, + -0.012035813182592392, + -0.005626600701361895, + 0.019022518768906593, + 0.00562344491481781, + -0.027517644688487053, + -0.01652320846915245, + -0.01418799627572298, + -0.0007747226627543569, + -0.005159558262676001, + -0.007598909083753824, + 0.009852074086666107, + 0.010401164181530476, + 0.012635394930839539, + -0.03481360524892807, + -0.005793852731585503, + -0.001504476647824049, + -0.004389569163322449, + 0.019842999055981636, + -0.022165589034557343, + 0.01070411130785942, + -0.002248431323096156, + 0.04284169152379036, + 0.012212532572448254, + -0.012572281062602997, + -0.023692943155765533, + 0.019943980500102043, + 0.005235294811427593, + 0.0028701028786599636, + -0.012061059474945068, + -0.020537251606583595, + -0.023604584857821465, + -0.01813892461359501, + 0.006024218164384365, + 0.017381558194756508, + -0.01880793087184429, + -0.0019975537434220314, + 0.030547108501195908, + 0.005364678334444761, + 0.021067406982183456, + -0.02111789770424366, + -0.02463965117931366, + -0.010110841132700443, + -0.0183661337941885, + 0.019312841817736626, + -0.0044148145243525505, + -0.01575322076678276, + -0.0051532466895878315, + 0.012130483984947205, + -0.026962241157889366, + 0.002568734111264348, + -0.01480651181191206, + -0.006122044753283262, + -0.003119402565062046, + 0.0028054111171513796, + 0.014339469373226166, + -0.011612950824201107, + 0.018631212413311005, + 0.004985995125025511, + 0.013014078140258789, + -0.0018066343618556857, + 0.03259199857711792, + -0.0095617501065135, + -0.020297417417168617, + -0.024349328130483627, + -0.0170659888535738, + -0.006721626501530409, + -0.0075168609619140625, + 0.004017197526991367, + -0.00458837766200304, + 0.017381558194756508, + 0.003266142448410392, + 0.01101968064904213, + 0.02288508601486683, + -0.005329965613782406, + -0.0003713856276590377, + 0.000702141725923866, + -0.013948163948953152, + 0.015109458938241005, + -0.0015210440615192056, + -0.005901146214455366, + -0.004032975994050503, + 0.013064569793641567, + -0.03188512474298477, + 0.0002128120540874079, + -0.02883041277527809, + 0.0020938024390488863, + -0.008154311217367649, + -0.00709399813786149, + -0.0002433828340144828, + -0.03887813910841942, + 0.0085329944267869, + 0.003537531942129135, + -0.011606639251112938, + -0.018770063295960426, + 0.022771481424570084, + -0.005648690741509199, + 0.003059444483369589, + 0.01683877781033516, + 0.006320853251963854, + 0.016952384263277054, + -0.005866433493793011, + -0.017154347151517868, + 0.018012696877121925, + 0.003780520288273692, + 0.0015628570690751076, + -0.00246775196865201, + -0.005323654506355524, + 0.0015068434877321124, + 0.009687977842986584, + 0.04056959226727486, + 0.0005163502646610141, + -0.012117861770093441, + -0.03963550552725792, + -0.012376628816127777, + 0.006314542144536972, + 0.010003547184169292, + -0.007699890993535519, + 0.039585012942552567, + -0.03284445405006409, + -0.00017533819482196122, + -0.0035406877286732197, + 0.011164842173457146, + -0.00021577051666099578, + 0.013443253003060818, + -0.020777083933353424, + 0.011385740712285042, + 0.0019754639361053705, + -0.00036901887506246567, + 0.011953765526413918, + 0.016270752996206284, + -0.015425028279423714, + -0.00804070569574833, + 0.0035501548554748297, + -0.010893452912569046, + 0.02655831351876259, + 0.020751837641000748, + -0.004023508634418249, + 0.021067406982183456, + 0.011259512975811958, + -0.008349964395165443, + 0.03435918688774109, + -0.006128355860710144, + -0.01981775276362896, + 0.005105911288410425, + -0.016573701053857803, + 0.010735668241977692, + -0.010956566780805588, + 0.02028479613363743, + 0.016308622434735298, + 0.027138961479067802, + -0.002104847226291895, + -0.012528101913630962, + -0.031481195241212845, + -0.0065449075773358345, + 0.013342270627617836, + 0.028098290786147118, + -0.012755312025547028, + 0.011436231434345245, + -0.02012069895863533, + 0.011587705463171005, + -0.00027375639183446765, + -0.003509130794554949, + -0.009277737699449062, + -0.0005321287317201495, + 0.015172572806477547, + -0.02883041277527809, + 0.0010981812374666333, + -0.022645253688097, + -0.000922251318115741, + -0.00949232466518879, + 0.02701273374259472, + 0.022544272243976593, + -0.007990214973688126, + -0.022556893527507782, + 0.0008354697492904961, + 0.014869625680148602, + 0.003998263273388147, + -0.027441907674074173, + 0.01380931306630373, + -0.007157112006098032, + 0.03743914142251015, + 0.002830656711012125, + 0.02265787683427334, + 0.00784505344927311, + 0.01319079753011465, + 0.022077228873968124, + 0.009195690043270588, + -0.0065638418309390545, + 0.01163188461214304, + -0.008097508922219276, + 0.019678901880979538, + 0.0020448891445994377, + -0.021900510415434837, + -0.02241804450750351, + -0.022152965888381004, + 0.011158530600368977, + -0.009069462306797504, + -0.001647271797992289, + 0.004793497733771801, + 0.0148443803191185, + 0.031228739768266678, + -0.012578592635691166, + -0.01247129961848259, + -0.004948126617819071, + -0.0036732268054038286, + -0.0023557248059660196, + -0.020297417417168617, + -0.008861185982823372, + 0.0020070208702236414, + 0.0026492043398320675, + -0.010432721115648746, + -0.004099245183169842, + 0.003417615545913577, + 0.006570152938365936, + 0.014074391685426235, + -0.001161295105703175, + -0.005885367747396231, + 0.03812077268958092, + -0.013039324432611465, + 0.024677520617842674, + -0.004619934596121311, + -0.0010847694939002395, + -0.027669116854667664, + -0.008160622790455818, + -0.005134312901645899, + 0.007207603193819523, + 0.013317025266587734, + -0.014516188763082027, + -0.04753736034035683, + -0.0007841897313483059, + -0.005648690741509199, + 0.0021537605207413435, + 0.018921535462141037, + 0.009422899223864079, + -0.004045598674565554, + 0.01898464933037758, + -0.011493034660816193, + -0.017406802624464035, + 0.021206257864832878, + 0.009202000685036182, + 0.039887961000204086, + 0.004660958889871836, + 0.004632557276636362, + 0.003834167029708624, + -0.02686125971376896, + -0.009208312258124352, + 0.0015888914931565523, + 0.020701346918940544, + 0.0027028510812669992, + 0.02028479613363743, + -0.03266773372888565, + -0.010028792545199394, + 0.02065085619688034, + -0.004358012229204178, + -0.0012670108117163181, + 0.0014184840256348252, + -0.00634925439953804, + -0.0024014825467020273, + -0.031253986060619354, + 0.005156402476131916, + 0.010723045095801353, + 0.00411186832934618, + -0.006633266806602478, + -0.020411023870110512, + -0.01380931306630373, + -0.029032377526164055, + 0.013367515988647938, + 0.015159949660301208, + 0.025838814675807953, + 0.013569480739533901, + 0.00804070569574833, + 0.029789743945002556, + -0.014352092519402504, + 0.0030073756352066994, + 0.023692943155765533, + 0.016396980732679367, + 0.004673581570386887, + 0.0254096407443285, + -0.03915584087371826, + -0.013834558427333832, + 0.0009743202244862914, + 0.023049183189868927, + 0.005822253879159689, + 0.0017372090369462967, + -0.01965365745127201, + -0.011985322460532188, + 0.0031493818387389183, + 0.005860121920704842, + 0.00619462551549077, + 0.0053015644662082195, + 0.013405384495854378, + 0.006936213467270136, + -0.0037268735468387604, + -0.0005439625820145011, + 0.00619462551549077, + 0.006595398765057325, + 0.01108910609036684, + 0.0013419585302472115, + 0.0013474809238687158, + 0.012067370116710663, + 0.02034791000187397, + -0.00825529359281063, + -0.0022784103639423847, + 0.014049145393073559, + -0.01129106990993023, + -0.001995975850149989, + -0.018328266218304634, + 0.011568770743906498, + 0.012458676472306252, + 0.0169018916785717, + -0.019603164866566658, + -0.006570152938365936, + -0.00952388159930706, + -0.028476973995566368, + 0.018770063295960426, + -0.007207603193819523, + 0.019704148173332214, + -0.0064060571603477, + 0.030774319544434547, + -0.006358721759170294, + -0.02133248560130596, + 0.020019717514514923, + -0.01728057488799095, + 0.0014571412466466427, + -0.020221682265400887, + -0.0013979719951748848, + -0.01599305309355259, + -0.015639614313840866, + 0.036833249032497406, + -0.013493743725121021, + 0.006835231091827154, + -0.017621390521526337, + -0.005254229065030813, + -0.013317025266587734, + -0.0005778862978331745, + 0.005992661230266094, + 0.0062545835971832275, + 0.00705612963065505, + -0.01426373329013586, + -0.0006788684986531734, + -0.003789987415075302, + -0.0015999363968148828, + -0.04688097536563873, + -0.016207639127969742, + 0.012950964272022247, + -0.0002287877578055486, + 0.01897202618420124, + 0.01173917856067419, + -0.001367204007692635, + 0.0028827255591750145, + -0.00705612963065505, + 0.0035943344701081514, + -0.004701982717961073, + 0.010893452912569046, + -0.011114351451396942, + 0.007826118730008602, + 0.03559621796011925, + 0.009687977842986584, + 0.009738468565046787, + -0.004739851225167513, + 0.009504947811365128, + -0.024980466812849045, + 0.0010753024835139513, + 0.0037363406736403704, + 0.010110841132700443, + 0.012042124755680561, + -0.009063150733709335, + 0.012370317243039608, + -0.0027691207360476255, + 0.0014981653075665236, + 0.00203699991106987, + 0.014793889597058296, + -0.017394181340932846, + 0.010811404325067997, + -0.030269408598542213, + 0.008886432275176048, + 0.0014602970331907272, + 0.0061693801544606686, + -0.00044021918438374996, + -0.015349291265010834, + 0.029890725389122963, + 0.0034333940129727125, + 0.015122081153094769, + 0.003226696280762553, + -0.011095416732132435, + 0.019312841817736626, + 0.0018145235953852534, + 0.00638712290674448, + -0.01637173630297184, + 0.004998617805540562, + 0.014023900032043457, + -0.0022310749627649784, + -0.017772864550352097, + 0.016258131712675095, + -0.010401164181530476, + 0.00891798920929432, + -0.008482502773404121, + -0.012370317243039608, + -0.028174027800559998, + -0.0067594945430755615, + 0.010514769703149796, + -0.006639578379690647, + -0.0067405602894723415, + 0.022708367556333542, + 0.011303693056106567, + 0.0338037833571434, + 0.020777083933353424, + -0.0004784819611813873, + -0.0012441320577636361, + -0.0036448256578296423, + 0.0007198925013653934, + -0.00444006035104394, + 0.0211810115724802, + -0.01629599928855896, + 0.006159912794828415, + -0.02845172956585884, + 0.00848881434649229, + -0.008324718102812767, + -0.005519307218492031, + -0.00675318343564868, + -0.00029032377642579377, + 0.02563685178756714, + -0.018404001370072365, + 0.003720562206581235, + 0.010129774920642376, + -0.010565260425209999, + 0.00913888681679964, + -0.009700600989162922, + 0.009233557619154453, + 0.007018261589109898, + -0.004550509620457888, + -0.008444635197520256, + -0.006683757994323969, + -0.006633266806602478, + 0.022607386112213135, + -0.003619580063968897, + 0.002852746518328786, + 0.0004059010243508965, + 0.01266695186495781, + -0.019073009490966797, + 0.016586322337388992, + 0.02640683948993683, + -0.0010997590143233538, + 0.006106266286224127, + 0.01311506051570177, + 0.0036038015969097614, + -0.010659931227564812, + 0.0012102082837373018, + 0.007523172535002232, + 0.012786868959665298, + -0.0036258914042264223, + -0.018782684579491615, + -0.007378010544925928, + 0.014061768539249897, + -0.005061731673777103, + -0.006822608411312103, + 0.005850655026733875, + 0.004509485326707363, + 0.008141688071191311, + 0.00318409432657063, + 0.04635082185268402, + 0.02019643597304821, + 0.015866825357079506, + -0.0035533104091882706, + -0.004301209934055805, + 0.01613190397620201, + -0.012376628816127777, + -0.006513350643217564, + 0.01613190397620201, + -0.0024756412021815777, + 0.015399781987071037, + 0.023667698726058006, + 0.01315292902290821, + -0.014730775728821754, + -0.0007597331423312426, + -0.026987487450242043, + 0.010003547184169292, + -0.003973017446696758, + -0.006999327335506678, + -0.04170564189553261, + 0.009460767731070518, + -0.020928556099534035, + -0.004001419059932232, + 0.019022518768906593, + -0.01744467206299305, + 0.01526093203574419, + -0.03948403149843216, + 0.02249377965927124, + 0.01842924766242504, + 0.00231312308460474, + -2.50852940553159e-6, + 0.01972939260303974, + -0.01162557303905487, + -0.00514693558216095, + 0.006081020459532738, + 0.017318444326519966, + 0.0005932702915742993, + 0.006219871342182159, + -0.005121689755469561, + 0.009006348438560963, + 0.018416624516248703, + -0.0039099035784602165, + -0.0027785878628492355, + -0.014314224012196064, + 0.0038594126235693693, + -0.0011218489380553365, + -0.03741389885544777, + 0.010868207551538944, + 0.009000036865472794, + -0.002683917060494423, + 0.02388228476047516, + 0.002685494953766465, + -0.009113641455769539, + -0.006377656012773514, + 0.00040373147930949926, + -0.011612950824201107, + -0.0009916765848174691, + -0.018378756940364838, + -0.004197071772068739, + 0.029890725389122963, + 0.013821936212480068, + 0.0011983744334429502, + 0.0110512375831604, + -0.013897672295570374, + 0.025359150022268295, + 0.011518280021846294, + 0.03398050367832184, + -0.009681666269898415, + -0.012162040919065475, + 0.0060778651386499405, + 0.03327362984418869, + 0.004149736370891333, + -0.013241288252174854, + -0.0213451087474823, + -0.013279156759381294, + -0.014213241636753082, + -0.008230047300457954, + 0.0056392233818769455, + -0.011732866987586021, + -0.030698582530021667, + 0.008362586610019207, + 0.009687977842986584, + -0.004045598674565554, + -0.01380931306630373, + -0.0032203849405050278, + 0.0183661337941885, + -0.007453747093677521, + 0.0027091626543551683, + -0.004638868849724531, + -0.0036132687237113714, + 0.005847499240189791, + -0.00845094583928585, + -0.015134704299271107, + -0.006191469728946686, + -0.004146580584347248, + 0.00669638067483902, + 0.027744853869080544, + -0.0009506525238975883, + 0.0029789742548018694, + -0.02080232836306095, + -0.004559976514428854, + -0.0013372249668464065, + 0.0009971989784389734, + 0.02495522052049637, + 0.002265787683427334, + -0.043876755982637405, + 0.01750778593122959, + -0.003647981211543083, + -0.020562496036291122, + -0.007485304027795792, + -0.005648690741509199, + 0.01307719200849533, + 0.0016709394985809922, + -0.010344361886382103, + -0.010786158964037895, + -0.00849512591958046, + -0.011417297646403313, + -1.8934159015771e-5, + -0.0319608598947525, + -0.003546999068930745, + 0.006093643605709076, + -0.008671844378113747, + 0.016876647248864174, + -0.00476194079965353, + 0.0005368622951209545, + 0.009687977842986584, + 0.004171826411038637, + -0.015803711488842964, + 0.0017466761637479067, + 0.012061059474945068, + -0.03052186407148838, + -0.0063965898007154465, + -0.00222003017552197, + -0.0026602493599057198, + -0.032566752284765244, + 0.009107330814003944, + 0.012635394930839539, + 0.005995817016810179, + 0.03955977037549019, + -0.008722336031496525, + 0.011183775961399078, + 0.02655831351876259, + 0.002948995213955641, + 0.015866825357079506, + 0.0021774282213300467, + -0.00291743827983737, + 0.008116442710161209, + 0.018303019925951958, + -0.006986704654991627, + -0.005323654506355524, + 0.005610822234302759, + -0.01659894548356533, + 0.0036921610590070486, + -0.03342510014772415, + 0.022291816771030426, + 0.010956566780805588, + -0.000963275320827961, + 0.003657448338344693, + 0.010476901195943356, + 0.010880829766392708, + 0.008002838119864464, + -0.019022518768906593, + 0.01128475833684206, + -0.004313832614570856, + 0.015084213577210903, + -0.017621390521526337, + 0.02592717483639717, + -0.02395802177488804, + -0.012490233406424522, + 0.008469880558550358, + -0.01705336570739746, + -0.0064060571603477, + 0.00046546474914066494, + -0.00013322941958904266, + 0.02976449765264988, + 0.006450236774981022, + -0.002676027826964855, + 0.017457295209169388, + 0.011303693056106567, + -0.007529483642429113, + -0.015311422757804394, + -0.005557175725698471, + -0.009113641455769539, + 0.015324045903980732, + 0.0032882322557270527, + -0.001967574702575803, + 0.008854875341057777, + 0.0037174064200371504, + -0.009612240828573704, + 0.0025671564508229494, + 0.01959054358303547, + -0.016270752996206284, + 0.01124688982963562, + -0.011726555414497852, + 0.015955183655023575, + -0.017634013667702675, + 0.0061630685813724995, + -0.021635431796312332, + 0.03541950136423111, + 0.022051984444260597, + -0.012111550197005272, + 0.004272808320820332, + -0.006765806116163731, + -0.008009148761630058, + -0.010072972625494003, + -0.0065827760845422745, + -0.010243379510939121, + -0.005311031360179186, + -0.01644747331738472, + -0.024803748354315758, + -0.013632594607770443, + -0.019628411158919334, + 0.008716024458408356, + 0.007327519357204437, + -0.006134667433798313, + -0.005446726456284523, + 0.0015628570690751076, + 0.011297381483018398, + -0.00953019317239523, + 0.008413078263401985, + 0.03395525738596916, + 0.014743397943675518, + 0.003922526724636555, + -0.018328266218304634, + 0.001600725343450904, + 0.018631212413311005, + -0.020764460787177086, + 0.0063113863579928875, + -0.014516188763082027, + 0.027871081605553627, + -0.006860476918518543, + 0.008097508922219276, + 0.005942170042544603, + -0.005036486312747002, + 0.002983707934617996, + -0.0012149418471381068, + -0.04566919058561325, + -0.0008149577770382166, + 0.006873099599033594, + -0.012925718910992146, + 0.007813496515154839, + -0.00021537605789490044, + -0.008659222163259983, + 0.009858385659754276, + 0.002005442976951599, + 0.007592597510665655, + -0.007863987237215042, + -0.021016916260123253, + 0.014137505553662777, + 0.0037174064200371504, + -0.0028606357518583536, + -0.011922208592295647, + -0.020158568397164345, + 0.013619971461594105, + 0.020789707079529762, + 0.011385740712285042, + 0.015664860606193542, + 0.012597527354955673, + -0.015715351328253746, + 0.011392052285373211, + -0.0020890687592327595, + -6.577647582162172e-5, + -0.01001617033034563, + 0.02226657047867775, + -0.014705530367791653, + 0.007062441203743219, + -0.009353474713861942, + 0.0016046699602156878, + -0.003449172480031848, + 0.007643088698387146, + 0.01791171357035637, + 0.0034838852006942034, + 0.0010145553387701511, + -0.01735631190240383, + 0.004263341426849365, + -0.0030263096559792757, + 0.010540015064179897, + 0.006683757994323969, + 0.010407475754618645, + 0.010842961259186268, + -0.00514693558216095, + -0.017192216590046883, + 0.0322890505194664, + -0.007775628007948399, + -0.00529525289312005, + 0.011884340085089207, + 0.019085632637143135, + -0.011638196185231209, + 0.00598950544372201, + -0.0057970080524683, + 0.0012764778221026063, + 0.01853022910654545, + 0.00669638067483902, + 0.0013837714213877916, + 0.027416661381721497, + 0.02087806537747383, + -0.008349964395165443, + -0.011000745929777622, + -0.003802610095590353, + 0.011606639251112938, + -0.015929939225316048, + -0.0002848012954927981, + -0.016965005546808243, + -0.005292097572237253, + 0.024425065144896507, + -0.004793497733771801, + -0.00776300486177206, + 0.018643835559487343, + -0.011392052285373211, + -0.012843671254813671, + -0.015803711488842964, + -0.017634013667702675, + 0.010350673459470272, + -0.0044021918438375, + 0.0049575939774513245, + 0.011840160936117172, + 0.00047453734441660345, + -0.015248308889567852, + -0.0018034785753116012, + 0.003761586267501116, + -0.021231504157185555, + 0.00707506388425827, + -0.010811404325067997, + -0.005389923695474863, + -0.011789669282734394, + -0.026204876601696014, + 0.021370353177189827, + -0.025977665558457375, + 0.0008859608205966651, + 0.005311031360179186, + 0.005355211440473795, + -0.009189378470182419, + -0.0015841579297557473, + 0.006011595483869314, + 0.03127922862768173, + 0.007927101105451584, + -0.011379429139196873, + 0.031077265739440918, + -0.03286970034241676, + 0.027214696630835533, + 0.0050680432468652725, + 0.0014902760740369558, + 0.02686125971376896, + 0.013720953837037086, + 0.006409212946891785, + -0.01454143412411213, + 0.002376236952841282, + -0.005850655026733875, + -0.0043296110816299915, + 0.013708330690860748, + 0.002679183380678296, + 0.022973446175456047, + 0.02623012103140354, + -0.004566288087517023, + -0.004212850239127874, + 0.004424281883984804, + 0.011499345302581787, + 0.004121335223317146, + 0.024361951276659966, + 0.01569010689854622, + 0.0015928361099213362, + 0.0224306657910347, + -0.003188828006386757, + 0.002013332210481167, + 0.006282985210418701, + 0.0012741110986098647, + -0.00548775028437376, + 0.007390633225440979, + 0.017709750682115555, + -0.005664469208568335, + -0.006690069567412138, + -0.005645534954965115, + 0.009555438533425331, + -0.0042191618122160435, + 0.007813496515154839, + 0.0014973763609305024, + 0.042185306549072266, + 0.013784067705273628, + -0.006664823740720749, + 0.0017324754735454917, + -0.002434617141261697, + 0.008753892965614796, + -0.019565297290682793, + 0.03143070265650749, + -0.02196362428367138, + -0.0030357767827808857, + -0.0013956052716821432, + 0.015639614313840866, + 0.006721626501530409, + -0.01170131005346775, + -0.010502146556973457, + -0.00845725741237402, + 0.009037905372679234, + -0.006671135313808918, + -0.009612240828573704, + -0.0004283853340893984, + -0.02424834668636322, + -0.015387159772217274, + 0.008716024458408356, + 0.03249101713299751, + -0.0065638418309390545, + -0.017103856429457664, + 0.006923590786755085, + 0.02226657047867775, + 0.013670462183654308, + -0.003427082672715187, + 0.004755629692226648, + 0.010697799734771252, + 0.016043543815612793, + -0.017166970297694206, + 0.01018026564270258, + 0.0014855425106361508, + -0.013619971461594105, + -0.01526093203574419, + 0.0054625049233436584, + 0.017634013667702675, + -0.015046345070004463, + -0.002426727907732129, + -0.00021360097161959857, + -0.009044216945767403, + -0.005667624995112419, + 0.015387159772217274, + 0.012452364899218082, + -0.014011277817189693, + -0.0006252216990105808, + 0.006071553565561771, + -0.010041415691375732, + 0.021610187366604805, + -0.006418679840862751, + -0.002404638100415468, + 0.01569010689854622, + -0.014718152582645416, + -0.018467115238308907, + 0.009580683894455433, + -0.0011967966565862298, + 0.005175336729735136, + 0.01821466162800789, + 0.010439032688736916, + -0.002922171726822853, + 0.00018746790010482073, + -0.011297381483018398, + 0.017103856429457664, + -0.00035955177736468613, + 0.003244052641093731, + -0.013127683661878109, + 0.005471971817314625, + 0.0055350856855511665, + 0.008962168358266354, + -0.007226537447422743, + 0.005481439176946878, + 0.009385031647980213, + 0.0019139278447255492, + -0.004301209934055805, + 0.007756693754345179, + -0.010476901195943356, + -0.0017861223313957453, + 0.012212532572448254, + -0.012856293469667435, + 0.019161367788910866, + 0.0010208666790276766, + -0.010041415691375732, + 0.0035848673433065414, + 0.01752040907740593, + 0.021610187366604805, + 0.00497337244451046, + -0.015197818167507648, + -0.02908286824822426, + -0.007857675664126873, + 0.0009995658183470368, + -0.006873099599033594, + 0.010899764485657215, + 0.00027355915517546237, + 0.0024693298619240522, + 0.0010611017933115363, + 0.0005731527344323695, + -0.005112222861498594, + 0.008432012051343918, + 0.01735631190240383, + 0.012692198157310486, + -0.028653694316744804, + 0.022241326048970222, + -0.021824773401021957, + 0.030774319544434547, + 0.010868207551538944, + -0.000940396566875279, + -0.018303019925951958, + 0.02860320173203945, + 0.028123537078499794, + 0.017267953604459763, + 0.01274268887937069, + -0.016800910234451294, + -0.006645889487117529, + -0.01197269931435585, + -0.0198808666318655, + 0.007529483642429113, + 0.00707506388425827, + 0.02326376922428608, + 0.0018381912959739566, + 0.006702692247927189, + -0.005522463005036116, + -0.023465733975172043, + -0.029562532901763916, + -0.006447080988436937, + -0.0045252637937664986, + -0.012307203374803066, + 0.005213205236941576, + -0.009656420908868313, + 0.011960077099502087, + -0.011827537789940834, + 0.01492011733353138, + 0.002347835572436452, + 0.0006674291216768324, + 0.009801582433283329, + -0.009082084521651268, + 0.0023194344248622656, + -0.0015431339852511883, + 0.007327519357204437, + 0.0008528260514140129, + -0.00024673575535416603, + 0.018605966120958328, + -0.0032913880422711372, + 0.013178174383938313, + 0.012799491174519062, + -0.017419425770640373, + -0.0010902920039370656, + -0.02362982928752899, + 0.023124918341636658, + -0.004802965093404055, + -0.01273637730628252, + -0.027063224464654922, + -0.006352410186082125, + 0.009018970653414726, + -0.010230757296085358, + -0.01750778593122959, + 0.0028133003506809473, + 0.004881857428699732, + -0.02256951667368412, + 0.0059106131084263325, + -0.006589087191969156, + -0.0012141529005020857, + -0.008028083480894566, + 0.0069930157624185085, + 0.01139836385846138, + 0.011682376265525818, + -0.008324718102812767, + -0.02393277734518051, + 0.01957792043685913, + -0.0020669789519160986, + 0.010584195144474506, + -0.0022862995974719524, + 0.01951480656862259, + 0.01720483973622322, + -1.1692089174175635e-5, + -0.01177704706788063, + 0.0006690069567412138, + -0.026760278269648552, + -0.01599305309355259, + -0.015349291265010834, + -0.017406802624464035, + -0.013897672295570374, + -0.02004496194422245, + -0.0072454712353646755, + -0.007579974830150604, + -0.0007388266385532916, + 0.012894161976873875, + -0.011612950824201107, + -0.016030920669436455, + -0.01791171357035637, + -0.0037836760748177767, + 0.015084213577210903, + -0.0005199004663154483, + 0.0026728720404207706, + -0.019186614081263542, + -0.003701627952978015, + 0.0035722446627914906, + 0.010716733522713184, + 0.017570899799466133, + -0.023377373814582825, + 0.020335286855697632, + -0.00621355976909399, + -0.008703401312232018, + 0.024425065144896507, + 0.013784067705273628, + -0.019540050998330116, + -0.020537251606583595, + 0.01529880054295063, + -0.0022042517084628344, + -0.005175336729735136, + -0.0012827892787754536, + 0.008469880558550358, + -0.008621353656053543, + 0.02845172956585884, + -0.0036322027444839478, + -0.01965365745127201, + -0.001349058817140758, + -0.00811013113707304, + 0.0016551610315218568, + -0.015450273640453815, + 0.04213481396436691, + -0.004193915985524654, + -0.004875545855611563, + -0.011366806924343109, + -0.011524591594934464, + -0.016182394698262215, + -0.010647309012711048, + -0.0006512561812996864, + -0.01622026227414608, + 0.01928759552538395, + -0.02495522052049637, + -0.008905366063117981, + 0.002620803192257881, + 0.011783357709646225, + 0.015955183655023575, + -0.023238524794578552, + -0.018492361530661583, + 0.022670499980449677, + 0.010647309012711048, + 0.03925682231783867, + -0.012193597853183746, + 0.0019786194898188114, + 0.002849590964615345, + -0.008697090670466423, + 0.00849512591958046, + -0.011758112348616123, + -0.006709003355354071, + -0.019527429714798927, + -0.02019643597304821, + 0.00017809943528845906, + -0.009239869192242622, + 0.0077882506884634495, + 0.006150445900857449, + -0.012496544979512691, + 0.0029663515742868185, + 0.028123537078499794, + -0.00744112441316247, + -0.005897990427911282, + -0.002647626446560025, + 0.03135496750473976, + -0.0006054986151866615, + 0.006011595483869314, + -0.0035817117895931005, + -0.023730812594294548, + -0.0005739416810683906, + -0.029108112677931786, + -0.02539701759815216, + -0.020095454528927803, + 0.01350636687129736, + -0.0008228470105677843, + -1.7935677533387206e-5, + -0.01895940490067005, + 0.005901146214455366, + -0.00045796995982527733, + -0.03138021379709244, + 0.016270752996206284, + 0.020928556099534035, + 0.01646009460091591, + 0.011732866987586021, + 0.008204801939427853, + 0.02403375878930092, + 0.013317025266587734, + -0.014213241636753082, + 0.022203456610441208, + 0.0058254096657037735, + -0.013670462183654308, + -0.015336668118834496, + -0.010047727264463902, + -0.014983231201767921, + -0.011789669282734394, + 0.010842961259186268, + -0.004399036057293415, + 0.016485340893268585, + -0.015349291265010834, + -0.01644747331738472, + -0.0011297381715849042, + 0.01024969108402729, + 0.00747899292036891, + 0.007125555071979761, + 0.01637173630297184, + -0.009353474713861942, + 0.025952421128749847, + 0.004926037043333054, + -0.006216715555638075, + 0.02234230749309063, + 0.0043485453352332115, + -0.004553665407001972, + -0.006412368267774582, + -0.005774918477982283, + -0.011385740712285042, + -0.0075736637227237225, + 0.006892033852636814, + 0.014213241636753082, + -0.022531649097800255, + -0.022620007395744324, + -0.007567352149635553, + -0.007990214973688126, + 0.004995462018996477, + -0.014213241636753082, + -0.027896327897906303, + -0.007605220191180706, + 0.005869589280337095, + -0.013758822344243526, + -0.004373790696263313, + -1.8589003957458772e-5, + -0.006961458828300238, + 0.00814799964427948, + 0.02370556630194187, + 0.02678552269935608, + 0.010956566780805588, + -0.007914477959275246, + -0.010009858757257462, + -0.0016535831382498145, + 0.020019717514514923, + 0.0032140733674168587, + -0.002556111430749297, + 0.03006744384765625, + -0.0022610542364418507, + -0.0012393984943628311, + -0.012856293469667435, + -0.01059681735932827, + 0.02371818944811821, + 0.0024472400546073914, + 0.003458639606833458, + 0.014490942470729351, + -0.01208630483597517, + -0.005115378648042679, + -0.018378756940364838, + 0.007157112006098032, + -0.03448541462421417, + 0.007138177752494812, + 0.019110877066850662, + -0.009088396094739437, + -0.003068911610171199, + 0.017166970297694206, + -0.02248115837574005, + -0.01488224882632494, + -0.022531649097800255, + -0.022935576736927032, + 0.004468461498618126, + -0.015374536626040936, + -0.013329647481441498, + 0.016813533380627632, + 0.0054057021625339985, + 0.002325745765119791, + -0.0061883144080638885, + 0.0045820665545761585, + -0.003812077222391963, + 0.0161445252597332, + 0.006727937608957291, + 0.020448891445994377, + -0.002685494953766465, + 0.006131511647254229, + 0.015727974474430084, + -0.034611642360687256, + -0.0005064887227490544, + 0.022544272243976593, + 0.012641706503927708, + -0.0064218356274068356, + 0.018479738384485245, + 0.0008725491352379322, + -0.005689714569598436, + 0.010805093683302402, + 7.603248377563432e-5, + -0.003670071018859744, + 0.0015123658813536167, + 0.010464278049767017, + 0.015942562371492386, + -0.019413823261857033, + 0.00476194079965353, + 0.005307876039296389, + -0.009088396094739437, + -0.0017656103009358048, + 0.005206893663853407, + -0.008968479931354523, + 0.007617843337357044, + -0.042740706354379654, + 0.0013151351595297456, + -0.027593379840254784, + 0.008286850526928902, + -0.012603837996721268, + -0.013178174383938313, + 0.020713970065116882, + 0.005831720773130655, + 0.00994674488902092, + -0.015172572806477547, + -0.015033721923828125, + -0.004411659203469753, + 0.011997945606708527, + -0.005206893663853407, + -0.0072833397425711155, + 0.012061059474945068, + 0.02294819988310337, + 0.0017829666612669826, + 0.013935540802776814, + 0.006125200539827347, + -0.02164805494248867, + -0.013758822344243526, + -0.008640287443995476, + -0.0015407671453431249, + 0.010830339044332504, + 0.0036132687237113714, + 0.001385349314659834, + -0.0026129139587283134, + -0.0026350037660449743, + -0.0034428611397743225, + -0.00884225219488144, + -0.006500727962702513, + -0.008236358873546124, + 0.009650109335780144, + 0.012894161976873875, + -0.012244089506566525, + 0.014528810977935791, + 0.0020843353122472763, + -0.0028653694316744804, + 0.005967415869235992, + -0.011960077099502087, + -0.008021771907806396, + -0.016018297523260117, + -0.005093288607895374, + 0.0025624227710068226, + -0.012439742684364319, + -0.01957792043685913, + 0.00597057119011879, + 0.01783597841858864, + 0.019527429714798927, + -0.004345389548689127, + -0.0021963624749332666, + -0.02034791000187397, + 0.0029111269395798445, + -0.017343688756227493, + 0.01454143412411213, + 0.0011589282657951117, + 0.004534731153398752, + 0.027593379840254784, + -0.023124918341636658, + -0.0013277578400447965, + -0.009549126960337162, + -0.019704148173332214, + 0.009460767731070518, + 0.012364005669951439, + 0.013241288252174854, + -0.0028653694316744804, + 0.006011595483869314, + 0.009347163140773773, + 0.023453110828995705, + -0.03345034644007683, + -0.012023190967738628, + -0.015197818167507648, + 0.0015163104981184006, + -0.013758822344243526, + 0.014087013900279999, + -0.014415206387639046, + -0.003733184887096286, + 0.018315643072128296, + -0.0032109178137034178, + -0.005020707845687866, + 0.005077510140836239, + 0.0012102082837373018, + -0.0001165634166682139, + -0.02371818944811821, + -0.00474300654605031, + -0.008059640415012836, + -0.015892069786787033, + -0.013935540802776814, + 0.0014626637566834688, + 0.013405384495854378, + 0.007295962423086166, + -0.017962206155061722, + -0.010148708708584309, + 0.010388541966676712, + -0.006068397779017687, + 0.004531575366854668, + 0.0003262197715230286, + 0.018833177164196968, + -0.008476192131638527, + 0.018656456843018532, + -0.019413823261857033, + -0.023920154199004173, + 0.003834167029708624, + 0.010697799734771252, + -0.003106779884546995, + -0.004642024636268616, + 0.013910295441746712, + -0.009643797762691975, + 0.000276320381090045, + 0.025346526876091957, + 0.005503528751432896, + -0.015967806801199913, + 0.017040742561221123, + -0.007277028169482946, + 0.024740634486079216, + 0.00034653456532396376, + -0.030244162306189537, + -0.012187287211418152, + 0.027265189215540886, + -0.019489560276269913, + -0.008160622790455818, + -0.014011277817189693, + -0.010394853539764881, + -0.00568024767562747, + 0.0015376114752143621, + 0.00548775028437376, + -0.013216042891144753, + 0.005052264779806137, + 0.010691488161683083, + 0.00945445615798235, + -0.01812630146741867, + 0.014036523178219795, + -0.00994043331593275, + 0.006854165345430374, + -0.020612986758351326, + 0.020713970065116882, + -0.01712910272181034, + -0.011764423921704292, + 0.008968479931354523, + 0.017634013667702675, + -0.009694289416074753, + 0.00917675532400608, + 0.011852783150970936, + -0.0035438432823866606, + 0.022228702902793884, + -0.00023549360048491508, + -0.02731567993760109, + -0.009467079304158688, + 0.006295607890933752, + -0.0019754639361053705, + 0.011070171371102333, + 0.016472717747092247, + 0.02433670498430729, + 0.030244162306189537, + -0.015879448503255844, + -0.01070411130785942, + -0.01380931306630373, + -0.006923590786755085, + 0.015538632869720459, + -0.01235769409686327, + 0.018845798447728157, + 0.00168829585891217, + 0.01829039677977562, + 0.011101728305220604, + 0.015816334635019302, + 0.020411023870110512, + 0.004212850239127874, + 0.0044716172851622105, + -0.005232139024883509, + -0.022165589034557343, + 0.004642024636268616, + -0.015021099708974361, + -0.028098290786147118, + 0.01750778593122959, + -0.012042124755680561, + -0.023200655356049538, + -0.0024425063747912645, + -0.0009964101482182741, + -0.00411186832934618, + 0.0035438432823866606, + 0.008053328841924667, + -0.005083821713924408, + 0.007182357367128134, + 0.012199909426271915, + 0.011133285239338875, + 0.007352765183895826, + 0.027265189215540886, + 0.0013198686065152287, + 0.0067405602894723415, + 0.015727974474430084, + -0.0049197254702448845, + -0.014490942470729351, + 0.0009624863741919398, + -0.0012812113855034113, + 0.0012528101215139031, + -0.004118179436773062, + -0.02049938216805458, + -0.01067255437374115, + 0.012950964272022247, + 0.01569010689854622, + -0.0012299313675612211, + 0.003925682045519352, + -0.01606879010796547, + 0.004234940279275179, + -0.012887850403785706, + -0.029663516208529472, + -0.0007344875484704971, + 0.010356985032558441, + 0.018656456843018532, + -0.029360568150877953, + -0.007964969612658024, + 0.020461514592170715, + 0.010420098900794983, + -0.02043626829981804, + 0.0113226268440485, + -0.0036038015969097614, + -0.028325501829385757, + 0.0045252637937664986, + 0.009662732481956482, + -0.01522306352853775, + -0.006099954713135958, + 0.014352092519402504, + 0.01644747331738472, + -0.009246180765330791, + -0.0008252137340605259, + 0.017267953604459763, + -0.002679183380678296, + -0.005519307218492031, + 0.005096444394439459, + -0.02640683948993683, + -0.030269408598542213, + 0.017936959862709045, + 0.008394143544137478, + -0.005923235788941383, + -0.01676304265856743, + 0.0003402231668587774, + 0.029739251360297203, + -0.007737759500741959, + -0.02296082302927971, + 0.013708330690860748, + 0.01957792043685913, + 0.015134704299271107, + 0.005951637402176857, + -0.020676100626587868, + -0.01098181214183569, + -0.029512042179703712, + -0.01269850879907608, + 0.024059005081653595, + 0.014970608055591583, + 0.011259512975811958, + -0.010041415691375732, + 0.011455166153609753, + 0.008198490366339684, + -0.015551256015896797, + -0.00747899292036891, + -0.006904656533151865, + 0.0005341010401025414, + 0.0007033250876702368, + 0.011139596812427044, + -0.016409603878855705, + -0.015134704299271107, + -0.0031083577778190374, + -0.0025308658368885517, + -0.013544234447181225, + -0.03650505840778351, + 0.013619971461594105, + -0.0015865247696638107, + 0.01101336907595396, + 0.028704185038805008, + 0.014238486997783184, + -0.004313832614570856, + 0.0005727583193220198, + -0.0113226268440485, + -0.01442782860249281, + 0.000926984881516546, + -0.002160071860998869, + -0.013910295441746712, + 0.01622026227414608, + -0.007043506950139999, + 0.0022720990236848593, + 0.0038562570698559284, + 0.03428345173597336, + 0.018997272476553917, + 0.02471538819372654, + -0.0015439228154718876, + 0.001601514290086925, + 0.0007557885255664587, + -0.014831758104264736, + -0.01025600265711546, + -0.007062441203743219, + -0.002948995213955641, + -0.0085329944267869, + 0.008684467524290085, + -0.006626955699175596, + -0.012244089506566525, + 0.021092653274536133, + -0.0048155877739191055, + -0.017040742561221123, + -0.004711449611932039, + 0.0030910014174878597, + 0.007813496515154839, + 0.025447510182857513, + 0.013026701286435127, + -0.00675318343564868, + 0.035697199404239655, + -0.008646599017083645, + 0.004367479123175144, + -0.011190087534487247, + 0.007144489325582981, + 0.0029884413816034794, + 0.014655038714408875, + 0.01906038634479046, + 0.024904729798436165, + -0.01350636687129736, + -0.000534495513420552, + -0.00232259021140635, + -0.01758352294564247, + -0.008444635197520256, + -0.016889270395040512, + 0.012414496392011642, + -0.006166224367916584, + 0.03948403149843216, + 0.020398400723934174, + 0.01311506051570177, + 0.00036467978497967124, + 0.006683757994323969, + 0.0012977787991985679, + 0.02004496194422245, + -0.005841188132762909, + -0.003808921668678522, + 0.0018523918697610497, + -0.00020788128313142806, + 0.011997945606708527, + -0.0102938711643219, + -0.021080030128359795, + 0.014604547992348671, + 0.004676737356930971, + -0.011638196185231209, + -0.018643835559487343, + -0.007314896676689386, + -0.025371773168444633, + -0.01622026227414608, + -0.02600291185081005, + 0.021092653274536133, + -0.007144489325582981, + 0.01735631190240383, + -0.022216079756617546, + 0.01350636687129736, + 0.01552600972354412, + -0.024892106652259827, + -0.004985995125025511, + 0.001375882187858224, + 0.0006603287765756249, + -0.005077510140836239, + -0.03191036731004715, + 0.022455912083387375, + 0.03451066091656685, + -0.023516224697232246, + -0.0017924336716532707, + 0.006873099599033594, + -0.008463568985462189, + 0.0035059750080108643, + 0.005326809827238321, + -0.0065070390701293945, + -0.0001089700308511965, + 0.02133248560130596, + -0.016346490010619164, + -0.0009877319680526853, + -0.0183661337941885, + -0.007333830930292606, + -0.023591961711645126, + 0.002706006867811084, + -0.00029683238244615495, + -0.0042380960658192635, + 0.00015255804464686662, + -0.0017466761637479067, + -0.022998690605163574, + 0.013720953837037086, + 0.018643835559487343, + 0.037312913686037064, + 0.028047800064086914, + -0.003834167029708624, + 0.01798745058476925, + 0.025371773168444633, + -0.03440967947244644, + 0.004443216137588024, + -0.01682615652680397, + -0.024046381935477257, + 0.006898344960063696, + 0.014074391685426235, + 0.006081020459532738, + -0.00438325759023428, + 0.0013821936445310712, + -0.0017482539406046271, + -0.007062441203743219, + -0.017949583008885384, + 0.0012599105248227715, + -0.012591215781867504, + 0.015134704299271107, + -0.010912386700510979, + -0.0047966535203158855, + -0.028098290786147118, + 0.02027217298746109, + 0.01752040907740593, + -0.006333475932478905, + -0.01629599928855896, + -0.011537213809788227, + -0.018845798447728157, + 0.01913612335920334, + 0.030547108501195908, + -0.009467079304158688, + 0.005418325308710337, + -0.00948601309210062, + -0.007169734686613083, + 0.0027470309287309647, + -0.0017608767375349998, + -0.00030235483427532017, + -0.005399391055107117, + 0.00548775028437376, + 0.014718152582645416, + -0.026810768991708755, + -0.0019549517892301083, + -0.01575322076678276, + -0.00554455304518342, + -0.017810732126235962, + 0.0070308842696249485, + -0.030572354793548584, + 0.004184449091553688, + 0.003116247011348605, + -0.007674645632505417, + 0.0009616974857635796, + -0.009347163140773773, + -0.00048282105126418173, + -0.014970608055591583, + 0.018416624516248703, + 0.03254150599241257, + -0.01720483973622322, + -0.03420771285891533, + -0.02830025553703308, + -0.0020906466525048018, + 0.004392724949866533, + 0.00481874356046319, + 0.021319862455129623, + -0.010230757296085358, + 0.02923434041440487, + -0.00047966535203158855, + -0.015513387508690357, + 0.0010571571765467525, + -0.007157112006098032, + 0.006453392561525106, + -0.017798108980059624, + -0.013758822344243526, + -0.007157112006098032, + -0.014907494187355042, + 0.0040771556086838245, + -0.02524554543197155, + 0.011922208592295647, + -0.014894871972501278, + 0.020979048684239388, + -0.0059106131084263325, + 0.02211509831249714, + 0.0011502500856295228, + 0.007396944798529148, + -0.017166970297694206, + 0.018997272476553917, + 0.002147449180483818, + 0.004701982717961073, + -0.00959961861371994, + 0.0028385459445416927, + -0.002564000664278865, + -0.016624191775918007, + -0.011493034660816193, + -0.008381521329283714, + 0.000495443819090724, + -0.01957792043685913, + -0.001078458153642714, + 0.002265787683427334, + -0.005358366761356592, + 0.01204843632876873, + 0.0014689750969409943, + -0.01201687939465046, + 0.0034333940129727125, + 0.014768644236028194, + -0.009246180765330791, + -0.051147475838661194, + -0.0012551769614219666, + -0.009044216945767403, + 0.005052264779806137, + 0.023162787780165672, + -0.010546326637268066, + -0.0007841897313483059, + 0.012906785123050213, + -0.021774282678961754, + -0.01735631190240383, + 0.0141122592613101, + -0.00012188864639028907, + 0.027669116854667664, + 0.007213914301246405, + 0.009416588582098484, + 0.004869234282523394, + -0.0057875411584973335, + 0.015336668118834496, + 0.001293834182433784, + 0.02049938216805458, + 0.0017861223313957453, + 0.02538439631462097, + 0.018694326281547546, + -0.006456548348069191, + 0.0020401556976139545, + 0.028123537078499794, + 0.005112222861498594, + -0.020638233050704002, + -0.008943234570324421, + -0.002238964196294546, + -0.014642416499555111, + 0.02158494107425213, + -0.008734958246350288, + 0.0014524077996611595, + -0.004765096586197615, + 0.0017877001082524657, + 0.020448891445994377, + 0.032945435494184494, + -0.0011660285526886582, + -4.597943643602775e-6, + -0.007213914301246405, + -0.00994674488902092, + 0.009624863974750042, + 0.010659931227564812, + 0.012919407337903976, + 0.008747581392526627, + -0.02615438401699066, + -0.011795980855822563, + 0.0024425063747912645, + -0.0032976993825286627, + 0.0014831757871434093, + -0.0019470626721158624, + 0.024690143764019012, + -0.013317025266587734, + -0.0013695708476006985, + -0.0045820665545761585, + 0.013342270627617836, + 0.016699928790330887, + 0.006898344960063696, + -0.01346849836409092, + 0.017545653507113457, + 0.0018460805295035243, + 0.00845725741237402, + -0.0037363406736403704, + -0.0005905090947635472, + -0.018568098545074463, + 0.005755984224379063, + 0.004443216137588024, + -0.028174027800559998, + -0.013821936212480068, + -0.006974081974476576, + -0.018189415335655212, + -0.033324118703603745, + -0.01989348977804184, + 0.0049197254702448845, + 0.015879448503255844, + 0.03168315812945366, + 0.014124882407486439, + 0.009593307040631771, + 0.013165552169084549, + 0.004692515823990107, + -0.006358721759170294, + 0.012439742684364319, + 0.009359785355627537, + 0.004828210454434156, + -0.015210440382361412, + 0.008785449899733067, + 0.0038878140039741993, + -0.00849512591958046, + 0.0044905515387654305, + 0.016396980732679367, + 0.012364005669951439, + 0.004354856442660093, + -0.01927497424185276, + 0.007567352149635553, + -0.007169734686613083, + -0.015399781987071037, + 0.00048242657794617116, + -0.02731567993760109 + ], + "52d0dadc-b060-48fd-9e7a-177efef38efa": [ + -0.035172414034605026, + -0.025646062567830086, + -0.007373536005616188, + 0.026983505114912987, + 0.008535000495612621, + -0.017914701253175735, + 0.007144763134419918, + 0.035172414034605026, + 0.0038862114306539297, + 0.04490993916988373, + -0.007619907148182392, + -0.01664764992892742, + 0.02222033031284809, + -0.004880494903773069, + -0.02752317488193512, + -0.01152078341692686, + -0.024097442626953125, + -0.009614340029656887, + 0.006669618654996157, + -0.039771340787410736, + 0.022020887583494186, + -0.017586207017302513, + -0.05556255578994751, + 0.021258309483528137, + 0.033623792231082916, + -0.005123932845890522, + -0.00817130971699953, + -0.004364288877695799, + -0.013749855570495129, + -0.007608175277709961, + 0.0013579742517322302, + 0.007045041304081678, + 0.006047824863344431, + 0.02989303134381771, + -0.014395113103091717, + -0.012412412092089653, + -0.023710288107395172, + -0.013233649544417858, + 0.022454969584941864, + 0.006258999928832054, + -0.014078350737690926, + -0.02700696885585785, + 0.029400289058685303, + -0.014289526268839836, + -0.05157369002699852, + 0.02189183607697487, + -0.0046927835792303085, + 0.007766556926071644, + 0.013433093205094337, + 0.030948907136917114, + 0.023663360625505447, + -0.03643946349620819, + 0.021997421979904175, + 0.014054886996746063, + 0.00726794870570302, + -0.015063835307955742, + 0.010945918038487434, + 0.02864944376051426, + 0.012693979777395725, + -0.035360123962163925, + -0.005698799155652523, + 0.0012399214319884777, + -0.0064877732656896114, + -0.021047133952379227, + -0.008306226693093777, + -0.023862803354859352, + 0.03927859663963318, + -0.010359319858253002, + 0.01750408299267292, + 0.007279680576175451, + 0.011057371273636818, + -0.02578684501349926, + -0.02286558784544468, + -0.02094154618680477, + 0.027781277894973755, + 0.006564030889421701, + 0.01448896899819374, + -0.010347587987780571, + -0.0067282784730196, + -0.038410432636737823, + -0.008810700848698616, + 0.00608888640999794, + 0.004986082669347525, + -0.031253937631845474, + 0.038645073771476746, + -0.00532044330611825, + -0.055515628308057785, + -0.008376618847250938, + -0.031887464225292206, + -0.004566664807498455, + 0.007889742031693459, + 0.013045938685536385, + -0.041085321456193924, + 0.03456234931945801, + -0.0008307693060487509, + -0.023815875872969627, + -0.004469876177608967, + 0.02374548465013504, + -0.025247175246477127, + -0.05682960897684097, + 0.011057371273636818, + 0.001151198404841125, + 0.0052881804294884205, + 0.016061050817370415, + 0.0027540773153305054, + 0.01912309229373932, + -0.0012457873672246933, + -0.003475592704489827, + 0.008986680768430233, + 0.003724896814674139, + -0.014911320060491562, + -0.03930206224322319, + 0.006710680667310953, + -0.03672103211283684, + 0.0046077268198132515, + -0.042610473930835724, + 0.02368682436645031, + 0.023604700341820717, + -0.022290721535682678, + 0.001174662378616631, + 0.055327918380498886, + -0.009074670262634754, + 0.04019369184970856, + -0.009931103326380253, + -0.014254329726099968, + 0.014782268553972244, + 0.03029191680252552, + 0.02956453710794449, + 0.05068206042051315, + 0.02292424812912941, + -0.053169235587120056, + -0.0033641392365098, + 0.03322490677237511, + 0.007438061758875847, + -0.010822732001543045, + -0.007619907148182392, + 0.029728783294558525, + 0.03160589560866356, + -0.022572288289666176, + 1.4538921277562622e-5, + -0.020589588209986687, + 0.04171884432435036, + 0.040991462767124176, + 0.010981113649904728, + -0.0045607988722622395, + 0.008664052002131939, + -0.05514020472764969, + 0.044769156724214554, + -0.020190700888633728, + 0.03824618458747864, + -0.026561154052615166, + -0.012119113467633724, + -0.01238894835114479, + 0.031160082668066025, + 0.018524762243032455, + 0.005229520611464977, + 0.002745278412476182, + 0.05584412440657616, + -0.007860412821173668, + -0.009033608250319958, + 0.010206804610788822, + -0.03385843336582184, + 0.020261092111468315, + -0.00506820622831583, + 0.011362401768565178, + 0.02456672117114067, + 0.03805847465991974, + 0.05579719692468643, + -0.006622690707445145, + 0.004194175358861685, + 0.019557176157832146, + -0.021833175793290138, + -0.004261633846908808, + -0.038621608167886734, + 0.02389799989759922, + -0.011544247157871723, + 0.00940903089940548, + 0.011110165156424046, + 0.03604057803750038, + -0.00023097294615581632, + -0.0355009064078331, + -0.0058542476035654545, + -0.014301258139312267, + -0.006569896824657917, + 0.03765958920121193, + 0.027053896337747574, + 0.0199443306773901, + 0.024214763194322586, + -0.0033436082303524017, + 0.01631915383040905, + 0.01668284460902214, + -0.05697039142251015, + -0.020495731383562088, + -0.02368682436645031, + 0.030338846147060394, + 0.015380597673356533, + 0.005443628877401352, + -0.011380000039935112, + 0.0016718041151762009, + 0.027241608127951622, + 0.016389546915888786, + -0.00875204149633646, + -0.02067171223461628, + 0.01753927767276764, + -0.02947068028151989, + -0.02237284556031227, + 0.015450989827513695, + -0.03418692946434021, + -0.016459938138723373, + -0.007303144317120314, + 0.03615789860486984, + -0.011761289089918137, + 0.014406845904886723, + 0.009755123406648636, + 0.013644267804920673, + 0.014958247542381287, + -0.028884083032608032, + -0.02588070183992386, + -0.010893124155700207, + -0.023334866389632225, + -0.01647167094051838, + -0.04533229023218155, + -0.019170021638274193, + -0.02124657668173313, + -0.029118722304701805, + 0.008928020484745502, + -0.039700947701931, + 0.013362701050937176, + 0.0019020438194274902, + -0.03573554754257202, + 0.012811299413442612, + -0.004185376223176718, + 0.003340675262734294, + 0.01000149454921484, + 0.025739917531609535, + 0.04950886592268944, + 0.04746750369668007, + -0.02588070183992386, + 0.04950886592268944, + -0.02447286620736122, + 0.0012589858379215002, + 0.009655402041971684, + -0.015321938320994377, + -0.029658392071723938, + -0.02527063898742199, + -0.00767270103096962, + -0.03273216634988785, + 0.007989464327692986, + 0.008159576915204525, + 0.017633134499192238, + -0.025247175246477127, + -0.0015236882027238607, + 0.007250350434333086, + -0.011192289181053638, + -0.027499711140990257, + 0.027663959190249443, + 0.010089484974741936, + 0.028297483921051025, + -0.025012535974383354, + -0.011937268078327179, + 0.010283062234520912, + 0.01979181542992592, + 0.013749855570495129, + 0.020026452839374542, + 0.03151204064488411, + 0.0018727139104157686, + 0.022666145116090775, + 0.035031627863645554, + 0.007156495004892349, + -0.004889294039458036, + 0.044276412576436996, + -0.031676288694143295, + 0.011256814934313297, + 0.011022175662219524, + -0.015521381981670856, + 0.00262209284119308, + -0.014700144529342651, + -0.0009935502894222736, + -0.000321712315781042, + 0.005508154630661011, + 0.01656552590429783, + -0.009966298937797546, + 0.05720503255724907, + -0.030315382406115532, + 0.05997377261519432, + 0.004898092709481716, + -0.014653217047452927, + -0.026443835347890854, + -0.05537484586238861, + -0.0010698080295696855, + 0.009373835287988186, + -0.0027907397598028183, + 0.011262680403888226, + 0.0029989820905029774, + 0.03937245532870293, + 0.005352706182748079, + -0.012693979777395725, + -0.004986082669347525, + -0.04193001985549927, + -0.010576360858976841, + -0.00688079372048378, + -0.04063950479030609, + -0.013433093205094337, + -0.0027438118122518063, + -0.006165144499391317, + -0.022994639351963997, + 0.060536906123161316, + 0.025364495813846588, + -0.008276896551251411, + 0.042211588472127914, + 0.002123484620824456, + -0.03467966988682747, + -0.02040187641978264, + -0.025317566469311714, + -0.011855144053697586, + 0.019252143800258636, + -0.018806330859661102, + 0.0015794149367138743, + -0.004082721658051014, + 0.00304444320499897, + 0.029001401737332344, + 0.0469512976706028, + -0.013139793649315834, + 0.019310804083943367, + 0.047350186854600906, + -0.01866554655134678, + 0.01664764992892742, + -0.025341030210256577, + 0.012987278401851654, + -0.04514457657933235, + 0.03308412432670593, + 0.00435255654156208, + -0.004590129014104605, + 0.008576061576604843, + -0.042845115065574646, + -0.016811896115541458, + -0.03460927680134773, + -0.023980123922228813, + -0.017926432192325592, + -0.011074969545006752, + -0.03174668177962303, + -0.007854546420276165, + 0.024027051404118538, + -0.01775045320391655, + -0.02836787700653076, + -0.02097674272954464, + 0.046505484730005264, + 0.031770143657922745, + 0.02286558784544468, + -0.006863195914775133, + 0.0004502139345277101, + -0.02794552594423294, + 0.02761703170835972, + -0.02475443296134472, + -0.013890638947486877, + -0.014371649362146854, + 0.025035999715328217, + 0.02672540210187435, + 0.008212370797991753, + 0.007408732082694769, + -0.02332313358783722, + -0.012271628715097904, + 0.00831209309399128, + -0.030643876641988754, + 0.014230865985155106, + 0.0269131138920784, + -0.012342020869255066, + 0.02191529981791973, + -0.007790020667016506, + 0.01339789666235447, + -7.831999391783029e-5, + -0.037800371646881104, + -0.06133468076586723, + -0.003628108184784651, + 0.039700947701931, + -0.07682086527347565, + 0.020495731383562088, + 0.0190878976136446, + -0.000352692004526034, + 0.027992453426122665, + 0.003279082477092743, + -0.013315773569047451, + 0.0019489716505631804, + 0.027593567967414856, + 0.013996226713061333, + -0.014817464165389538, + 0.005660670343786478, + -0.03803500905632973, + -0.04648201912641525, + -0.013362701050937176, + -0.014782268553972244, + -0.008945618756115437, + -0.024402474984526634, + -0.005942237097769976, + 0.005915840156376362, + -0.010957649908959866, + -0.008018793538212776, + 0.04225851595401764, + -0.016612453386187553, + 0.00998389720916748, + 0.0071330307982862, + -0.01150905154645443, + 0.0046458556316792965, + -0.003883278463035822, + -0.031652823090553284, + -0.02416783571243286, + 0.007848680019378662, + 0.021973958238959312, + 0.0073383403941988945, + -0.020108576864004135, + 0.021000206470489502, + 0.0182314645498991, + 0.025505278259515762, + 0.02380414493381977, + -0.007080237381160259, + -0.007807618472725153, + 0.025622598826885223, + 0.0023273273836821318, + -0.05171447619795799, + 0.01725771091878414, + 0.0731135681271553, + 0.008212370797991753, + -0.021786248311400414, + 0.004639989696443081, + 0.0112157529219985, + -0.01380851585417986, + 0.02368682436645031, + 0.013785051181912422, + -0.0064877732656896114, + 0.017914701253175735, + -0.014430309645831585, + 0.017480619251728058, + -0.012353752739727497, + 0.015885071828961372, + 0.003985933028161526, + -0.013538680039346218, + -0.016882289201021194, + 0.007080237381160259, + -0.0029637860134243965, + 0.02611534111201763, + -0.0053644380532205105, + 0.00427629891782999, + 0.04228197783231735, + 0.010347587987780571, + 0.006957051809877157, + -0.007907340303063393, + 0.009127464145421982, + -0.023944927379488945, + 0.032403670251369476, + -0.008886958472430706, + 0.005956902168691158, + 0.03449195995926857, + -0.014923051930963993, + 0.013702928088605404, + 0.007350072264671326, + 0.00655229901894927, + 0.06119389832019806, + -0.003939005080610514, + 0.0029696521814912558, + -0.03029191680252552, + 0.019721422344446182, + 0.029963422566652298, + 0.0027056830003857613, + -0.013714659959077835, + -0.04908651486039162, + -0.0339757539331913, + 0.013386164791882038, + 0.05007199943065643, + 0.014758803881704807, + 0.03019806183874607, + 0.01179648470133543, + 0.025716453790664673, + -0.03958363085985184, + 0.011010443791747093, + -0.0008527667378075421, + -0.020624782890081406, + -0.020049918442964554, + 0.011849278584122658, + 0.015016906894743443, + 0.0014217667048797011, + -0.017820846289396286, + -0.03580593690276146, + -0.005323376506567001, + 0.07456833124160767, + 0.011110165156424046, + 0.012412412092089653, + -0.029329897835850716, + -0.01744542270898819, + -0.012658783234655857, + -0.007713763043284416, + 0.021410824730992317, + 0.009262381121516228, + -0.019733155146241188, + -0.015544845722615719, + 0.005895309150218964, + 0.008757906965911388, + -0.00532044330611825, + -0.007221020758152008, + -0.007637505419552326, + -0.012764371000230312, + 0.027663959190249443, + -0.024214763194322586, + -0.015005175024271011, + 0.02843826822936535, + -0.0296818558126688, + 0.04340824857354164, + -0.0074145980179309845, + 0.0015251546865329146, + -0.01975661888718605, + 0.023557772859930992, + -0.013702928088605404, + 0.02998688630759716, + -0.04073335975408554, + -0.033013731241226196, + 0.03395228832960129, + -0.003771824762225151, + -0.025763381272554398, + -0.005188458599150181, + 0.0001910109567688778, + -0.018653813749551773, + 0.00010357119754189625, + -0.03439810499548912, + 0.030855052173137665, + 0.009244783781468868, + 0.00977272167801857, + 0.004510938189923763, + -0.040381401777267456, + -0.011538381688296795, + 0.02012030966579914, + 0.010453175753355026, + -0.0038275516126304865, + -0.007438061758875847, + -0.010576360858976841, + 0.003924340009689331, + 0.0003200625069439411, + 0.003522520652040839, + 0.009555680677294731, + -0.03099583461880684, + 0.0031969586852937937, + -0.017985092476010323, + -0.01710519567131996, + 0.03592325747013092, + 0.03829311206936836, + 0.0070098452270030975, + 0.024730969220399857, + -0.02423822693526745, + -0.015415794216096401, + -0.001037545152939856, + 0.006528835278004408, + -0.019956061616539955, + -0.024402474984526634, + 0.008212370797991753, + -0.020601319149136543, + 0.0012017925037071109, + -0.023815875872969627, + -0.03418692946434021, + -0.006827999837696552, + -0.02365162968635559, + 0.008359020575881004, + -0.03099583461880684, + -7.699098205193877e-5, + 0.011033907532691956, + -0.029353361576795578, + 0.005384969059377909, + -0.010259597562253475, + 0.019674494862556458, + -0.009878309443593025, + 0.005074072163552046, + 0.013702928088605404, + 0.008699247613549232, + 0.00014903253759257495, + 0.019580639898777008, + 0.014864391647279263, + -0.001940172747708857, + 0.010447309352457523, + 0.0017656597774475813, + 0.016553793102502823, + -0.039536699652671814, + -0.027405856177210808, + 0.016119711101055145, + -0.006464309524744749, + 0.006622690707445145, + 0.007309010252356529, + -0.007080237381160259, + -0.005839582532644272, + -0.014512432739138603, + 0.004015262704342604, + -0.015486185438930988, + -0.030643876641988754, + 0.04685744270682335, + -0.01924041286110878, + 0.02122311294078827, + -0.01692921668291092, + -0.013573876582086086, + -0.015849877148866653, + 0.020261092111468315, + -0.000402186211431399, + -0.009444226510822773, + -0.013925835490226746, + 0.03254445269703865, + 0.029517607763409615, + -0.0038656804244965315, + 0.02557566948235035, + -0.00477197440341115, + 0.004114984534680843, + 0.008300361223518848, + -0.025739917531609535, + -0.004285098053514957, + 0.0008850296726450324, + -0.014195670373737812, + 0.06011455878615379, + -0.02158680371940136, + 0.005813185591250658, + -0.045285362750291824, + -0.0007647770689800382, + 0.04059257730841637, + 0.011514917947351933, + 0.011338938027620316, + 0.05180833116173744, + -0.028790226206183434, + 0.011028041131794453, + 0.01723424717783928, + -4.667578104999848e-5, + -0.019017504528164864, + 0.009461824782192707, + 0.01217777281999588, + -0.03622828796505928, + -0.01929907314479351, + -0.0070098452270030975, + 0.008716844953596592, + 0.005238319747149944, + 0.015181154944002628, + -0.020049918442964554, + -0.0073383403941988945, + -0.008898690342903137, + -0.010300659574568272, + 0.009391432628035545, + 0.01069954689592123, + -0.017457155510783195, + -0.038950104266405106, + -0.008359020575881004, + -0.03205171227455139, + -0.012119113467633724, + -0.007039175368845463, + -0.024519793689250946, + 0.019768349826335907, + -0.01601412333548069, + 0.02250189706683159, + 0.033318761736154556, + -0.0012927151983603835, + 0.017070000991225243, + 0.02651422657072544, + -0.011104298755526543, + 0.025153320282697678, + -0.00036570715019479394, + -0.03050309233367443, + -0.019721422344446182, + 0.04706861823797226, + -0.01637781411409378, + -0.02227899059653282, + -0.003290814347565174, + -0.024214763194322586, + 0.004763175267726183, + -0.002105886582285166, + 0.0013213118072599173, + 0.026983505114912987, + -0.03317797929048538, + 0.024425938725471497, + 0.010400381870567799, + 0.02475443296134472, + -0.011708495207130909, + 0.015016906894743443, + -0.002410917542874813, + 0.04298589751124382, + -0.025505278259515762, + -0.006429113447666168, + 0.01360907219350338, + 0.018677279353141785, + -0.00183018553070724, + -0.002513572108000517, + -0.010552897118031979, + 0.02009684592485428, + -0.05279381573200226, + 0.009209587238729, + 0.01150905154645443, + -0.0045226700603961945, + -0.0076902988366782665, + 0.02170412428677082, + -0.046833980828523636, + -0.01631915383040905, + -0.00045974613749422133, + 0.02288905158638954, + -0.04359595850110054, + -0.013644267804920673, + -0.00831209309399128, + 0.040475256741046906, + -0.020225897431373596, + -0.011121897026896477, + -0.002451979322358966, + -0.013620804063975811, + -0.0322628878057003, + 0.004302695859223604, + -0.023370062932372093, + 0.021821442991495132, + -0.002199742244556546, + 0.0046165259554982185, + -0.016213567927479744, + 0.007778288796544075, + 0.005053541157394648, + -0.000816104409750551, + 0.024379011243581772, + -0.013773319311439991, + -0.007696164771914482, + -0.01847783476114273, + -0.01662418618798256, + -0.02046053670346737, + -0.014137010090053082, + 0.03611097112298012, + 0.016272226348519325, + 0.0004524136602412909, + -0.024425938725471497, + 0.023557772859930992, + -0.028109773993492126, + -0.0031734949443489313, + -0.05753352493047714, + 0.017879504710435867, + -0.01750408299267292, + 0.005945170298218727, + -0.019932597875595093, + 0.007678566966205835, + 0.008447010070085526, + -0.0045783971436321735, + 0.013538680039346218, + 0.00522072147578001, + 0.022032618522644043, + -0.02897793799638748, + 0.015885071828961372, + -0.005713463760912418, + 0.014934783801436424, + 0.01366773247718811, + -0.010300659574568272, + 0.009655402041971684, + 0.011391731910407543, + -0.0040035308338701725, + -0.008271031081676483, + -0.016483401879668236, + -0.013644267804920673, + 0.0058542476035654545, + -0.019158288836479187, + 0.0013660399708896875, + 0.015263278037309647, + -0.016905752941966057, + 0.04096800088882446, + -9.151844278676435e-5, + 0.041390351951122284, + 0.009954567067325115, + -0.011773020960390568, + 0.011297876015305519, + 0.0037278300151228905, + 0.04838259890675545, + 0.0007735760300420225, + -0.007584711536765099, + -0.014782268553972244, + -0.043666351586580276, + 0.015028639696538448, + -0.012647051364183426, + 0.03247406333684921, + -0.013386164791882038, + 0.01601412333548069, + 0.01775045320391655, + 0.009004278108477592, + -0.04800717532634735, + 0.018747670575976372, + -0.00029604864539578557, + -0.0450507216155529, + -0.04624738171696663, + 0.0020574922673404217, + 0.02444940246641636, + 0.02252536080777645, + -0.029353361576795578, + -0.04054564982652664, + -0.03655678406357765, + 0.02986956760287285, + 0.007502587512135506, + 0.017633134499192238, + -0.004613592755049467, + 0.028884083032608032, + 0.04115571081638336, + 0.022595752030611038, + 0.005660670343786478, + -0.018747670575976372, + -0.032896414399147034, + 0.039654020220041275, + 0.013045938685536385, + 0.002462244825437665, + -0.013327505439519882, + -0.009215453639626503, + -0.022091278806328773, + -0.010916587896645069, + -0.014078350737690926, + -0.0008754974114708602, + 0.000754511624109, + 0.004748510196805, + 0.017879504710435867, + 0.025763381272554398, + -0.010975247249007225, + -0.0035401186905801296, + -0.011731958948075771, + -0.025200247764587402, + 0.015016906894743443, + 0.0507759191095829, + 0.010236133821308613, + 0.003475592704489827, + -0.009297577664256096, + 0.0024153171107172966, + -0.024097442626953125, + 0.02773435041308403, + 0.007309010252356529, + -0.006957051809877157, + 0.004334958735853434, + 0.01595546491444111, + -0.025833772495388985, + 0.014794000424444675, + 0.03629868105053902, + -0.015779484063386917, + -0.034632742404937744, + 0.00035837467294186354, + -0.015931999310851097, + 0.03735455870628357, + -0.0015515515115112066, + -0.02256055735051632, + -0.0026514227502048016, + -0.003751293756067753, + 0.009385567158460617, + 0.0040563247166574, + -0.00869338121265173, + -0.026889650151133537, + -0.01807894930243492, + -0.025528742000460625, + 0.02073037065565586, + -0.02374548465013504, + -0.008159576915204525, + 0.0005950302584096789, + -0.0005338041228242218, + -0.019228680059313774, + 0.029822640120983124, + -0.011145360767841339, + -0.006141680292785168, + 0.049884289503097534, + 0.00918025802820921, + 0.002718881471082568, + 0.0059774331748485565, + -0.013937567360699177, + 0.024120908230543137, + -0.04019369184970856, + 0.023710288107395172, + 0.012670515105128288, + 0.003997664898633957, + 0.016823628917336464, + 0.013878907077014446, + -0.01130960788577795, + -0.022290721535682678, + -0.011931401677429676, + -0.010107082314789295, + 0.01725771091878414, + 0.019862206652760506, + 0.002013497520238161, + -0.0023405258543789387, + -0.0038040876388549805, + 0.0343511737883091, + -0.035759009420871735, + -0.02803938090801239, + 0.058894433081150055, + 0.009227185510098934, + -0.005602010525763035, + -0.04193001985549927, + 0.010253732092678547, + -0.0024461133871227503, + -0.02073037065565586, + 0.028086310252547264, + -0.008382484316825867, + -0.021140988916158676, + -0.0023918531369417906, + 0.02061305195093155, + -0.016694577410817146, + 0.04286857694387436, + 0.029001401737332344, + 0.00608888640999794, + -0.012693979777395725, + 0.007743092719465494, + -0.008570196107029915, + -0.012154309079051018, + -0.0005000747623853385, + 0.003988866228610277, + -0.02897793799638748, + -0.023616433143615723, + -0.008810700848698616, + 0.008734443224966526, + -0.022384578362107277, + -0.005282314494252205, + -0.01380851585417986, + -0.014066618867218494, + 0.003939005080610514, + 0.01012468058615923, + -0.0012025258038192987, + 0.008558464236557484, + -0.013526948168873787, + 0.0007248150650411844, + 0.01975661888718605, + 0.005030077416449785, + -0.020507464185357094, + -0.016788432374596596, + 0.001547152060084045, + 0.01397276297211647, + 0.04167191684246063, + 0.014019690454006195, + -0.05035356804728508, + 0.01847783476114273, + 0.0004601127584464848, + -0.0313008651137352, + -0.010294794104993343, + 0.004795438144356012, + -0.0029271238017827272, + -0.007942535914480686, + -0.004663453437387943, + 0.0066578867845237255, + 0.01592026837170124, + -0.019322536885738373, + -0.006171010434627533, + 0.03458581492304802, + -0.008288629353046417, + -0.004962618462741375, + 0.0012333221966400743, + -0.009931103326380253, + 0.009784453548491001, + -0.05476478487253189, + -0.023217545822262764, + 0.0024329149164259434, + -0.013890638947486877, + -0.01790296845138073, + 0.015849877148866653, + -0.04012329876422882, + 0.009866577573120594, + 0.005018345545977354, + -0.009790319949388504, + 0.004414149560034275, + 7.13999688741751e-5, + 0.004502139054238796, + -0.035453978925943375, + 0.007109567057341337, + 0.010535298846662045, + 0.0010008827084675431, + -0.038105402141809464, + 0.016272226348519325, + 0.00013748389028478414, + 0.02173931896686554, + -0.009209587238729, + 0.01310459803789854, + -0.002167479367926717, + 0.021422557532787323, + 0.006041958928108215, + -0.03887971118092537, + 0.0013337770942598581, + -0.0018140540923923254, + -0.013045938685536385, + -0.0003130966506432742, + -0.041296493262052536, + 0.024895217269659042, + 0.006945319473743439, + -0.008804835379123688, + 0.0033846700098365545, + -0.01912309229373932, + -0.00020695908460766077, + -0.0020369612611830235, + -0.007502587512135506, + 0.005786788649857044, + -0.034233856946229935, + -0.005077005364000797, + -0.012494536116719246, + 0.004106185398995876, + 0.06020841374993324, + 0.02426169067621231, + -0.006300061941146851, + -0.029024865478277206, + -0.00905707199126482, + 0.03510202094912529, + -0.031558968126773834, + -0.021575072780251503, + 0.046810515224933624, + 0.008024659939110279, + 0.012517999857664108, + -0.044065237045288086, + 0.02219686657190323, + 0.02423822693526745, + 0.02712428942322731, + -0.007889742031693459, + 0.02475443296134472, + -0.0001156697835540399, + -0.0025795644614845514, + -0.00834142230451107, + -0.007385267876088619, + 0.04300935938954353, + -0.0055638812482357025, + 0.0048834276385605335, + 0.02179797925055027, + 0.024519793689250946, + -0.004402417689561844, + 0.01309286616742611, + 0.01595546491444111, + -0.0001867031241999939, + 0.004405350424349308, + -0.0006382918800227344, + -0.010447309352457523, + 0.0020736237056553364, + -0.015286742709577084, + -0.004792505409568548, + 0.031066227704286575, + -0.02158680371940136, + -0.008218237198889256, + 0.02454325743019581, + 0.005827850662171841, + -0.035148948431015015, + -0.015462721697986126, + 0.0047602420672774315, + -0.0075377835892140865, + 0.0033465411979705095, + 0.014852659776806831, + 0.005035943351686001, + 0.01637781411409378, + -0.008863494731485844, + -0.01504037156701088, + -0.024801360443234444, + -0.005472959019243717, + -0.011602907441556454, + 0.004179510287940502, + -0.004062190651893616, + 0.018595155328512192, + -0.0240505151450634, + -0.025247175246477127, + 0.018864989280700684, + -0.0013755721738561988, + -0.011127762496471405, + -0.03460927680134773, + 0.007995329797267914, + 0.029189113527536392, + 0.005440696142613888, + -0.00188004644587636, + 0.008130247704684734, + -0.014007958583533764, + -0.010922453366219997, + 0.0014782268553972244, + 0.009379700757563114, + -0.013984494842588902, + 0.00024325483536813408, + -0.015521381981670856, + 0.02173931896686554, + 0.0030268453992903233, + -0.01836051605641842, + -0.009444226510822773, + -0.01217777281999588, + -0.005742793902754784, + -0.01845437102019787, + 0.00767270103096962, + 0.050916701555252075, + 0.0004238170222379267, + -0.0036457062233239412, + -0.005273515358567238, + 0.0015486185438930988, + -0.00626486586406827, + 0.0005799987120553851, + -0.014418577775359154, + -0.0020501597318798304, + -0.0027540773153305054, + -0.01223643310368061, + -0.012999010272324085, + 0.03008074313402176, + 0.012212969362735748, + 8.372768934350461e-5, + 0.029236041009426117, + 0.00257223192602396, + 0.03573554754257202, + 0.0034345309250056744, + 0.0036457062233239412, + 0.00870511308312416, + -0.06396263837814331, + 0.02956453710794449, + 0.010189206339418888, + -0.018806330859661102, + 0.009608474560081959, + 0.016190102323889732, + -0.013937567360699177, + -0.003818752709776163, + -0.02383933961391449, + 0.041390351951122284, + 0.014559361152350903, + 0.006587495096027851, + 0.01130960788577795, + -0.023452185094356537, + -0.006540567148476839, + 0.010517701506614685, + -0.029236041009426117, + -0.02505946345627308, + -0.020202433690428734, + 0.007256216369569302, + 0.004695716314017773, + 0.02569299004971981, + 0.002004698384553194, + 0.02258402109146118, + 0.024308618158102036, + 0.010083618573844433, + 0.03399921581149101, + 0.01771525852382183, + -0.0025311701465398073, + 0.010066020302474499, + 0.012611855752766132, + -0.00608888640999794, + 0.001595546375028789, + -0.004006464034318924, + -0.026936577633023262, + 0.010998710989952087, + 0.023616433143615723, + -0.026349980384111404, + -0.013491752557456493, + -0.016917483881115913, + -0.0015764819690957665, + -0.02527063898742199, + 0.004393618553876877, + 0.038222722709178925, + 0.01695268042385578, + 0.022724803537130356, + -0.0038656804244965315, + -0.01152078341692686, + 0.014500700868666172, + 0.016178371384739876, + -0.05288767069578171, + -0.008441144600510597, + -0.013679464347660542, + 0.010617422871291637, + -0.013057670556008816, + 0.004950886592268944, + -0.011902072466909885, + -0.004895159974694252, + -0.015427526086568832, + 0.0037424948532134295, + -0.007250350434333086, + -0.001309579936787486, + -0.031676288694143295, + -0.049978144466876984, + -0.0066578867845237255, + 0.0030591082759201527, + 0.007531917653977871, + -0.020906351506710052, + -0.029705319553613663, + 0.03247406333684921, + 0.01135653629899025, + 0.015990659594535828, + -0.022185133770108223, + 0.007854546420276165, + 0.003610510379076004, + 0.004566664807498455, + -0.03589979559183121, + 0.016143174842000008, + 0.005426031071692705, + -0.024613650515675545, + 0.004167778417468071, + -0.003361206268891692, + -0.030010350048542023, + -0.00415604654699564, + -0.011286144144833088, + -0.012212969362735748, + 0.0007706430624239147, + 0.005948103033006191, + 0.006757608149200678, + 0.010024959221482277, + -0.015521381981670856, + 0.020683443173766136, + -0.015990659594535828, + -0.0019827010110020638, + -0.023874536156654358, + -0.0027819406241178513, + -0.017116928473114967, + 0.002064824802801013, + 0.027147753164172173, + -0.020753834396600723, + -0.00022932313731871545, + -0.00665202084928751, + -0.007279680576175451, + -0.02240804210305214, + -0.03751880303025246, + 0.017093464732170105, + -0.004129649605602026, + -0.008634721860289574, + -0.00898081436753273, + -0.009309309534728527, + -0.015626968815922737, + 0.004710381384938955, + 0.005552149377763271, + -0.016518598422408104, + 0.0011321339989081025, + 0.0031588298734277487, + -0.012154309079051018, + -0.004566664807498455, + 0.003422799054533243, + 0.014406845904886723, + 0.025716453790664673, + -0.01820800080895424, + 0.005047675222158432, + -0.0014642950845882297, + -0.02006164938211441, + -0.03650985658168793, + 0.007948402315378189, + -0.01150905154645443, + -0.006159278564155102, + -0.03521934151649475, + -0.007549515459686518, + 0.01208391785621643, + -0.009837247431278229, + -0.015110762789845467, + -0.013069402426481247, + -0.026866186410188675, + 0.018348783254623413, + 0.019709691405296326, + 0.026279587298631668, + 0.032802555710077286, + -0.022020887583494186, + -0.007872144691646099, + -0.0020354948937892914, + 0.015896804630756378, + -0.017152123153209686, + -0.015286742709577084, + -0.0009209587587974966, + 0.007813484407961369, + 0.008470474742352962, + 0.018524762243032455, + 0.013174990192055702, + -0.021563339978456497, + -0.004933288786560297, + -0.017058268189430237, + -0.046505484730005264, + 0.030667340382933617, + 0.022513629868626595, + -0.008658185601234436, + 0.0017509948229417205, + -0.019803546369075775, + -0.003713164944201708, + 0.010664350353181362, + -0.00832382496446371, + -0.010652618482708931, + 0.006587495096027851, + -0.005989165045320988, + 0.023698557168245316, + -0.018466103821992874, + -0.006722412537783384, + 0.00962020643055439, + -0.018395710736513138, + 0.013327505439519882, + -0.024285154417157173, + 0.0038891443982720375, + -0.004836500156670809, + -0.007995329797267914, + 0.02137562818825245, + -0.009215453639626503, + 0.0037923557683825493, + 0.003194025717675686, + 0.0029623196460306644, + -0.009643670171499252, + 0.017797380685806274, + -0.006047824863344431, + 0.004713314585387707, + -0.008458741940557957, + -0.022842124104499817, + -0.013327505439519882, + -0.009274113923311234, + 0.029212577268481255, + -0.010898989625275135, + 9.474931175645906e-6, + 0.003006314393132925, + -0.014242597855627537, + 0.017269443720579147, + -0.013362701050937176, + -0.004217639099806547, + 0.029916495084762573, + -0.00759644340723753, + 0.0018947114003822207, + -0.004208840429782867, + -0.009414897300302982, + 0.04960272088646889, + -0.003713164944201708, + -0.0009803518187254667, + -0.005156195722520351, + -0.004549067001789808, + 0.005508154630661011, + 0.01570909284055233, + 0.018442640081048012, + -0.009843113832175732, + 0.007385267876088619, + -0.015779484063386917, + -0.016190102323889732, + 0.002375721698626876, + 0.02164546400308609, + -0.0310192983597517, + 0.02088288590312004, + -0.02496560849249363, + -0.006910123862326145, + 0.01056462898850441, + 0.004619458690285683, + -0.009086402133107185, + -0.002570765558630228, + -0.007725494913756847, + -0.01069954689592123, + -0.005044742487370968, + -0.0007123498944565654, + 0.010130546055734158, + 0.0022422706242650747, + 0.034726597368717194, + 0.006434979382902384, + 0.004801304079592228, + -0.03491431102156639, + -0.006968783680349588, + -0.005974499974399805, + -0.01796162873506546, + 0.028790226206183434, + 0.023557772859930992, + 0.015286742709577084, + -0.03829311206936836, + -0.001878579962067306, + -0.0015808814205229282, + -0.0019709691405296326, + 0.02794552594423294, + 0.00911573227494955, + -0.004877561703324318, + 0.00670481426641345, + 0.011972463689744473, + -0.006915989797562361, + 0.02904832921922207, + 0.0029901829548180103, + -0.025927629321813583, + 0.013268845155835152, + -0.01535713393241167, + 0.029001401737332344, + -0.006241402123123407, + 0.00040291945333592594, + -0.00019779348804149777, + 0.00423230417072773, + 0.012506267987191677, + 0.014348185621201992, + 0.007203422952443361, + 0.01453589741140604, + 0.01683536171913147, + -0.030456164851784706, + -0.0044552115723490715, + 0.013233649544417858, + -0.008458741940557957, + -0.013362701050937176, + -0.005082871299237013, + 0.010107082314789295, + -0.004449345171451569, + -0.0005624007899314165, + 0.006041958928108215, + 0.014007958583533764, + 0.017468886449933052, + -0.04120263829827309, + -0.008030525408685207, + -0.016823628917336464, + -0.012717443518340588, + 0.0031881597824394703, + -0.0038862114306539297, + 0.004587195813655853, + -0.005863046273589134, + -0.0020457603968679905, + -0.01130960788577795, + -0.008130247704684734, + -0.00042235050932504237, + -0.030151134356856346, + 0.00767270103096962, + -0.006247268058359623, + 0.01535713393241167, + 0.007432195823639631, + -0.036791421473026276, + -0.015791216865181923, + 0.02423822693526745, + 0.0011482654372230172, + 0.00847634021192789, + 0.03017459809780121, + -0.019686227664351463, + -0.018700743094086647, + -0.019568907096982002, + 0.009819649159908295, + -0.021363897249102592, + 0.015638701617717743, + 0.010781669989228249, + 0.002660221653059125, + 0.005071139428764582, + 0.01677670143544674, + -0.015967195853590965, + 0.024214763194322586, + -0.0030884381849318743, + -0.036486390978097916, + -0.033201444894075394, + 0.004510938189923763, + 0.004901025909930468, + 0.03216903284192085, + -0.010165742598474026, + 0.0014899587258696556, + -0.017551010474562645, + 0.003091371152549982, + -0.026162268593907356, + 0.012095649726688862, + -0.017034804448485374, + -0.0043320260010659695, + 0.04045179486274719, + -0.020378412678837776, + 0.026044948026537895, + -0.017973361536860466, + -0.014101814478635788, + 0.011620504781603813, + -0.03017459809780121, + 0.004798371344804764, + -0.0370260626077652, + -0.06560511142015457, + -0.0068866596557199955, + -0.01744542270898819, + -0.019873937591910362, + 0.008535000495612621, + 0.015615236945450306, + -0.01447723712772131, + 0.016354350373148918, + 0.005719330161809921, + 0.006223804317414761, + 0.009309309534728527, + 0.014148741960525513, + 0.00705677317455411, + 0.008141979575157166, + 0.0010734741808846593, + -0.0015398196410387754, + -0.028813691809773445, + 0.0024431804195046425, + -0.03641600161790848, + 0.004311494994908571, + 0.010787536390125751, + 0.00977272167801857, + -0.026678474619984627, + 0.019686227664351463, + 0.02040187641978264, + 0.0005909973988309503, + -0.002534103114157915, + -0.031676288694143295, + -0.014312990009784698, + -0.008511535823345184, + -0.016237031668424606, + 0.006305927876383066, + -0.035360123962163925, + 0.016882289201021194, + 0.013843711465597153, + 0.02231418527662754, + 0.005015412345528603, + -0.008570196107029915, + -0.016577258706092834, + 0.014981711283326149, + 0.001188594033010304, + -0.011239216662943363, + -0.026960041373968124, + -0.006945319473743439, + -0.006546433083713055, + -0.010992845520377159, + 0.02273653633892536, + -0.01610798016190529, + 0.003871546359732747, + 0.024425938725471497, + -0.011180556379258633, + -0.006616824772208929, + 0.0622263103723526, + 0.006159278564155102, + -0.004182443488389254, + 0.013022474013268948, + -0.0006085953791625798, + -0.0021938763093203306, + -0.005983299110084772, + -0.007250350434333086, + 0.0029036598280072212, + 0.01417220663279295, + -0.02298290655016899, + -0.02897793799638748, + -0.023698557168245316, + -0.019475052133202553, + 0.005317510571330786, + 0.004273366183042526, + 0.02876676246523857, + -0.004314427729696035, + -0.011098433285951614, + -0.03538358956575394, + -0.034937772899866104, + 0.021610267460346222, + 0.028015917167067528, + 0.01979181542992592, + -0.014934783801436424, + 0.016905752941966057, + 0.03622828796505928, + -0.03162936121225357, + 0.004343757871538401, + 0.01505210343748331, + -0.02886061929166317, + -0.006528835278004408, + 0.018278392031788826, + 0.01504037156701088, + -0.012201237492263317, + -4.752359745907597e-5, + 0.030268453061580658, + 0.005660670343786478, + -0.0046165259554982185, + 0.01069954689592123, + -0.02091808244585991, + -0.01738676242530346, + -0.008241700939834118, + 0.010635021142661572, + -0.0005902641569264233, + 0.003997664898633957, + -0.031770143657922745, + 0.0015163556672632694, + -0.007162360940128565, + 0.01643647439777851, + 0.010834463872015476, + 0.003622242249548435, + 0.009455958381295204, + -0.0019577706698328257, + 0.014711876399815083, + 0.008986680768430233, + -0.008652319200336933, + 0.03491431102156639, + 0.006822133902460337, + -0.008300361223518848, + 0.03960709273815155, + 0.01929907314479351, + -0.01217777281999588, + -0.015626968815922737, + 0.008969082497060299, + 0.035242803394794464, + 0.004024061840027571, + -0.0017363298684358597, + -0.016635917127132416, + 0.015580041334033012, + -0.005232453811913729, + -0.032802555710077286, + 0.011116030625998974, + 0.00601262878626585, + 0.0007823749911040068, + -0.020343216136097908, + -0.01412527821958065, + -0.013433093205094337, + -0.011550113558769226, + 0.005651871208101511, + 0.018219731748104095, + -0.02173931896686554, + -0.0025033066049218178, + 0.027663959190249443, + -0.00013070135901216418, + 0.01662418618798256, + -0.0076140412129461765, + -0.006440845318138599, + 0.0054876236245036125, + -0.008728577755391598, + -0.0019152422901242971, + -0.01382024772465229, + 0.004431747365742922, + -0.029236041009426117, + -0.017316371202468872, + -0.009585010819137096, + -0.011450392194092274, + -0.012670515105128288, + 0.012295092456042767, + 0.02061305195093155, + 0.007590577472001314, + -0.007696164771914482, + 0.020695175975561142, + -0.007678566966205835, + -0.01674150489270687, + 0.0059598349034786224, + -0.0004531469021458179, + -0.008095051161944866, + 0.004326159600168467, + -0.018219731748104095, + -0.0035811804700642824, + 0.02916564978659153, + 0.02073037065565586, + -0.012611855752766132, + 0.010464907623827457, + -0.007350072264671326, + 0.00030833054916001856, + 0.006036092992872, + 0.007062639109790325, + 0.008470474742352962, + -0.01576775312423706, + -0.008928020484745502, + -0.0010837396839633584, + -0.02288905158638954, + -0.02886061929166317, + -0.029822640120983124, + 0.026866186410188675, + -0.009778588078916073, + -0.00963780377060175, + -0.01071714423596859, + -0.004094453528523445, + -0.006106484681367874, + 0.004508004989475012, + -0.030057279393076897, + 0.02620919607579708, + 0.016237031668424606, + -0.005552149377763271, + -0.01857169158756733, + -0.007707897108048201, + -0.007608175277709961, + 0.00012960148160345852, + -0.004340824671089649, + -0.010904856026172638, + -0.019228680059313774, + 0.0039566028863191605, + -0.011227484792470932, + 0.001213524490594864, + -0.025223711505532265, + 0.010300659574568272, + 0.0019958994816988707, + 0.00500074727460742, + -0.013914103619754314, + -0.008634721860289574, + 0.008259299211204052, + 0.004801304079592228, + -0.03887971118092537, + 0.030338846147060394, + 0.025669526308774948, + 0.0007625773432664573, + 0.003214556723833084, + -0.0031617628410458565, + -0.02947068028151989, + -0.00462825782597065, + 0.0007970399456098676, + -0.011538381688296795, + 0.00578385591506958, + -0.021668927744030952, + 0.017586207017302513, + -0.009802051819860935, + 0.024989072233438492, + -0.006393917370587587, + 0.004062190651893616, + 0.005508154630661011, + 0.0040504587814211845, + -0.003452128963544965, + 0.026068411767482758, + 0.006376319564878941, + 0.026655010879039764, + 0.002934456104412675, + 0.019463319331407547, + 0.025341030210256577, + 0.0023331933189183474, + 0.009473556652665138, + -0.014371649362146854, + 0.022079546004533768, + -0.02700696885585785, + 0.003924340009689331, + -0.014817464165389538, + -0.0031617628410458565, + 0.0007163827540352941, + 0.020167237147688866, + -0.007854546420276165, + 0.004997814539819956, + -0.009062938392162323, + -0.01000149454921484, + 0.02416783571243286, + 0.005543350707739592, + 0.003944871015846729, + -0.014207402244210243, + 0.010242000222206116, + -0.02033148519694805, + -0.0017348633846268058, + 0.00289632729254663, + -0.005622541066259146, + 0.0033113453537225723, + -0.02444940246641636, + -0.016940949484705925, + -0.019099628552794456, + 0.01814934052526951, + 0.010517701506614685, + 0.0021850774064660072, + 0.008300361223518848, + -0.013562144711613655, + -0.005097535904496908, + 0.02401532046496868, + -0.024308618158102036, + 0.004323226865381002, + -0.015228082425892353, + 0.01918175257742405, + 0.006300061941146851, + 0.002091221744194627, + 0.010705412365496159, + -0.005208989605307579, + -0.003240953665226698, + -0.0020956210792064667, + -0.020073382183909416, + 0.007702031172811985, + 0.021328700706362724, + 0.010494236834347248, + -0.02454325743019581, + 0.01243587676435709, + 0.02401532046496868, + -0.005170860793441534, + 0.008669917471706867, + 0.009837247431278229, + -0.013233649544417858, + -0.004226438235491514, + -0.022724803537130356, + -0.010746474377810955, + -0.007983597926795483, + -0.030643876641988754, + -0.011039773002266884, + 0.019768349826335907, + 0.0023067963775247335, + -0.013174990192055702, + -0.0023610566277056932, + -9.197672625305131e-5, + 0.008687515743076801, + -0.008687515743076801, + -0.0005279381293803453, + 0.0021718789357692003, + -0.00037120652268640697, + 0.03266177326440811, + -0.0004179510287940502, + 0.01838397979736328, + -0.0033641392365098, + -0.0003347274614498019, + -0.0073676700703799725, + -0.03425731882452965, + -0.0030385772697627544, + 0.014958247542381287, + 0.01710519567131996, + -0.011192289181053638, + 0.010734742507338524, + -0.008781371638178825, + -0.018395710736513138, + -0.017586207017302513, + -0.008364886976778507, + 0.017668329179286957, + -0.0021704123355448246, + -0.020929815247654915, + 0.002315595280379057, + -0.01702307164669037, + 0.00997216533869505, + 0.00030869717011228204, + 0.010969381779432297, + -0.01179648470133543, + 0.03937245532870293, + 0.010417979210615158, + 0.01222470123320818, + -0.01376158744096756, + -0.017058268189430237, + 0.021211382001638412, + -0.008159576915204525, + -0.05232453718781471, + 0.013890638947486877, + 0.023815875872969627, + -0.006165144499391317, + 0.024918681010603905, + 0.012330288998782635, + 0.002410917542874813, + 0.023006372153759003, + -0.013749855570495129, + 0.016483401879668236, + 0.013433093205094337, + -0.00023152287758421153, + 0.012424143962562084, + -0.006558164954185486, + -0.0285321231931448, + -0.009098134003579617, + 0.005132731981575489, + 0.002300930442288518, + 0.0013528415001928806, + 0.02061305195093155, + 0.016635917127132416, + -0.0006250934093259275, + -0.012130845338106155, + 0.04028754681348801, + 0.026866186410188675, + 0.0035166547168046236, + 0.008206505328416824, + 0.007971866056323051, + -0.003141232067719102, + -0.001297847949899733, + 0.006030227057635784, + -0.03040923736989498, + -0.003748360788449645, + -0.010535298846662045, + -0.012717443518340588, + 0.0034198660869151354, + 0.028297483921051025, + 0.003513721749186516, + 0.008804835379123688, + 0.008722711354494095, + -0.00035342524643056095, + -0.0060830204747617245, + 0.0012289227452129126, + -0.008734443224966526, + -0.0033641392365098, + 0.02191529981791973, + 0.017070000991225243, + 0.039043959230184555, + 0.012271628715097904, + 0.0075671132653951645, + -0.022020887583494186, + 0.02063651569187641, + 0.012764371000230312, + -0.00024912081426009536, + 0.003695567138493061, + -0.005819051526486874, + -0.02234938181936741, + 0.014219134114682674, + -0.006223804317414761, + 0.011344804428517818, + 0.04080375283956528, + 0.014887855388224125, + -0.0049684843979775906, + 0.016706310212612152, + 0.0025692989584058523, + 0.0055345515720546246, + -0.006294196005910635, + 0.014571093022823334, + 0.000643791223410517, + -0.03437463939189911, + -0.008875226601958275, + 0.003117768093943596, + 0.002971118548884988, + 0.004505072254687548, + -0.025622598826885223, + -0.04120263829827309, + -1.888112092274241e-5, + 0.014453773386776447, + 0.006276598200201988, + 0.011767154559493065, + 0.0032966805156320333, + 0.03078465908765793, + 0.008329690434038639, + 0.005091669969260693, + -0.005522819701582193, + -0.014500700868666172, + 0.015732556581497192, + -0.03216903284192085, + 0.0011687964433804154, + -0.0006965850479900837, + -0.015016906894743443, + -0.0002139249409083277, + 0.015779484063386917, + 0.0074615259654819965, + 0.0007963067037053406, + 0.00948528852313757, + 0.005349773447960615, + -0.0024930413346737623, + 0.013233649544417858, + 0.030127670615911484, + 0.00990763958543539, + 0.003821685677394271, + -0.003264417639002204, + 0.021657196804881096, + -0.004211773164570332, + 0.009890041314065456, + 0.017773916944861412, + 0.022607484832406044, + 0.012999010272324085, + 0.001547152060084045, + -0.0343511737883091, + 0.016354350373148918, + -0.008939752355217934, + -0.005757458973675966, + 0.012717443518340588, + -0.003299613483250141, + 0.012412412092089653, + 0.0024079845752567053, + -0.021985691040754318, + 0.0034667938016355038, + 0.00948528852313757, + 0.009737526066601276, + 0.000530871155206114, + -0.022853855043649673, + -0.0005554349045269191, + 0.0017143324948847294, + -0.016295690089464188, + 0.009473556652665138, + -0.010494236834347248, + -0.030878515914082527, + -0.020507464185357094, + 0.01417220663279295, + -0.0007057506591081619, + 0.01695268042385578, + -0.019416391849517822, + -0.005874778609722853, + 0.02947068028151989, + 0.013562144711613655, + -0.022724803537130356, + 0.018794598057866096, + 0.02267787605524063, + -0.003522520652040839, + -0.01238894835114479, + 0.0034345309250056744, + 0.01252973172813654, + -0.005305778235197067, + 0.010453175753355026, + 0.016459938138723373, + -0.006065422669053078, + 0.005200190935283899, + -0.012072185985744, + -0.0045783971436321735, + -0.0020501597318798304, + 0.014747072011232376, + -0.0011358002666383982, + 0.034726597368717194, + -0.0031705619767308235, + -0.0012186572421342134, + 0.005634273402392864, + -0.02085942216217518, + 0.004135515540838242, + -0.01325711328536272, + 0.00034370971843600273, + -0.003053242340683937, + 0.010013226419687271, + -0.022630948573350906, + -0.002485708799213171, + -0.009010144509375095, + 0.020718639716506004, + -0.022490164265036583, + -0.0170817319303751, + -0.006605092901736498, + 0.029963422566652298, + 0.028884083032608032, + -0.0037630258593708277, + 0.0032732165418565273, + 0.019991258159279823, + 0.011855144053697586, + 0.008605391718447208, + 0.005745726637542248, + -0.028015917167067528, + -0.009186123497784138, + -0.00977272167801857, + -0.011022175662219524, + -0.0009546881774440408, + -0.038856249302625656, + -0.011327206157147884, + -0.0098313819617033, + 0.01411354634910822, + 0.011186422780156136, + -0.007754824589937925, + 0.0013242448912933469, + -0.01899404078722, + -0.011174690909683704, + -0.0013396430294960737, + -0.026044948026537895, + 0.02006164938211441, + 0.019005773589015007, + -0.012623587623238564, + 0.015392329543828964, + -0.0027364795096218586, + 0.02389799989759922, + 0.01217777281999588, + -0.0078252162784338, + 0.013796783983707428, + 0.006229670252650976, + -0.020190700888633728, + 0.04080375283956528, + -0.0036574380937963724, + 0.006464309524744749, + -0.00560787646099925, + 0.01601412333548069, + 0.0023434588219970465, + 0.015486185438930988, + 0.006335257552564144, + -0.00774895865470171, + 0.0038070206064730883, + 0.014137010090053082, + 0.0032878813799470663, + -0.0027790076564997435, + -0.005417231936007738, + -0.003053242340683937, + -0.01108083501458168, + -0.022149939090013504, + -0.00882829912006855, + -0.010676082223653793, + -0.007156495004892349, + 0.028297483921051025, + -0.0020090979523956776, + 0.004572530742734671, + -0.012130845338106155, + 0.015462721697986126, + -0.01167329866439104, + 0.009760989807546139, + 0.009602608159184456, + 0.006669618654996157, + -0.0005664336495101452, + 0.007262082304805517, + 0.014230865985155106, + 0.002598628867417574, + -0.02240804210305214, + -0.01981527917087078, + 0.004024061840027571, + -0.0005876978393644094, + -0.0030268453992903233, + -0.014043155126273632, + 0.0038510155864059925, + 0.005502288695424795, + -0.0018844458973035216, + 0.004857031162828207, + 0.0020486933644860983, + -0.0017891237512230873, + 0.006258999928832054, + 0.009901773184537888, + 0.01887672208249569, + 0.004393618553876877, + -0.027100825682282448, + -0.016307422891259193, + 0.009667133912444115, + 0.0024549122899770737, + 0.0026924845296889544, + 0.006968783680349588, + -0.0106408866122365, + 0.030573485419154167, + -0.013902370817959309, + -0.0024197164457291365, + 0.03735455870628357, + -0.02557566948235035, + -0.038011547178030014, + 0.012482804246246815, + -0.0026895515620708466, + -0.002079489640891552, + 0.03963055834174156, + 0.005405500065535307, + 0.0269131138920784, + 0.004285098053514957, + -0.01981527917087078, + -0.020413609221577644, + 0.020038185641169548, + -0.011497319675981998, + -0.00834142230451107, + -0.012295092456042767, + -0.03845736011862755, + -0.016295690089464188, + 0.013362701050937176, + 0.006546433083713055, + -0.002673420123755932, + 0.0074145980179309845, + 0.012916886247694492, + 0.010670216754078865, + 0.0004982416285201907, + -0.00029604864539578557, + 0.0044082836247980595, + 0.014195670373737812, + -0.002038427861407399, + 0.004581329878419638, + 0.0022334717214107513, + -0.029494144022464752, + 0.021668927744030952, + 0.012189505621790886, + -0.011907937936484814, + -0.02569299004971981, + 0.018430907279253006, + 0.027710886672139168, + -0.0010177474468946457, + 0.011884474195539951, + 0.004273366183042526, + 0.011866875924170017, + 0.004836500156670809, + -0.01853649504482746, + 0.010652618482708931, + 0.021985691040754318, + -0.011121897026896477, + -0.030432701110839844, + -0.0057310620322823524, + 0.019099628552794456, + -0.005596144590526819, + 0.023358330130577087, + -0.0011196688283234835, + 0.006440845318138599, + 0.013890638947486877, + -0.014923051930963993, + 0.026467299088835716, + 0.0012531199026852846, + 0.008141979575157166, + -0.0064877732656896114, + 0.04465183615684509, + 0.010118814185261726, + -0.004378953482955694, + 0.018618619069457054, + 0.0134565569460392, + 0.00752018578350544, + 0.0006830199854448438, + -0.0013807049253955483, + 0.006393917370587587, + 0.01951024681329727, + -0.03686181455850601, + 0.015450989827513695, + -0.001595546375028789, + -0.01881806179881096, + -0.010511835105717182, + -0.012705711647868156, + -0.002821536036208272, + 0.007678566966205835, + 0.028579052537679672, + 0.011802350170910358, + 0.0059686340391635895, + -0.004422948695719242, + -0.009649536572396755, + -0.017586207017302513, + -0.03090197965502739, + -0.02189183607697487, + 0.005206056870520115, + 0.034750062972307205, + -0.03212210163474083, + -0.02484828792512417, + -0.016330886632204056, + -0.007297278381884098, + 0.0007809085072949529, + -0.00639978377148509, + -0.002749677747488022, + 0.0007559781079180539, + 0.0067341444082558155, + 0.006962917745113373, + -0.017644865438342094, + 0.0162252988666296, + 0.0015310206217691302, + -0.017375031486153603, + -0.0254818145185709, + 0.022173402830958366, + 0.007514319848269224, + -0.004581329878419638, + 0.013221917673945427, + -0.007144763134419918, + 0.013081134296953678, + -0.018219731748104095, + 0.013327505439519882, + -0.005971567239612341, + 0.014735340140759945, + 0.014876123517751694, + 0.013444825075566769, + 0.006258999928832054, + -0.014137010090053082, + -0.00047954381443560123, + -0.018595155328512192, + -0.00618860824033618, + 0.0008879626402631402, + 0.0006463575991801918, + -0.005918773356825113, + 0.014923051930963993, + -0.004326159600168467, + 0.01418393850326538, + 0.0013433092972263694, + 0.0040885875932872295, + -0.0003310612228233367, + -0.009538082405924797, + 0.01717558689415455, + 0.009326906874775887, + 0.008423546329140663, + -0.018348783254623413, + -0.004226438235491514, + -0.0011416662018746138, + 0.005839582532644272, + 0.006352855823934078, + 0.010934185236692429, + 0.018102413043379784, + -0.014559361152350903, + 0.005628407467156649, + 0.010253732092678547, + -0.001127001247368753, + -0.028297483921051025, + 0.00413258234038949, + -0.007238618563860655, + 0.011638103052973747, + -0.004540267866104841, + 0.01802028901875019, + -0.025974556803703308, + 0.013773319311439991, + -0.004290963988751173, + -0.0009268247522413731, + -0.0033436082303524017, + -0.006669618654996157, + -0.010676082223653793, + 0.002881662454456091, + -0.02173931896686554, + -0.022114742547273636, + -0.032192494720220566, + -0.024684041738510132, + 0.015216350555419922, + 0.002462244825437665, + -0.004534401930868626, + 0.007872144691646099, + -0.01411354634910822, + -0.017128659412264824, + -0.001893244800157845, + 0.019310804083943367, + 0.0035665153991431, + 0.004619458690285683, + -0.006305927876383066, + -0.0019680361729115248, + 0.013538680039346218, + 0.005294046364724636, + -0.0032057578209787607, + 0.0022246725857257843, + 0.00437602074816823, + 0.00862885545939207, + 0.045989278703927994, + 0.0007083170348778367, + -0.012905154377222061, + 0.0343511737883091, + -0.018008556216955185, + -0.01397276297211647, + 0.009854845702648163, + 0.008699247613549232, + -0.0005019078380428255, + 0.0008666984504088759, + -0.02416783571243286, + -0.018407443538308144, + 0.0007167493458837271, + 0.02191529981791973, + -0.02444940246641636, + 0.0103534534573555, + -0.03707299008965492, + -0.031136618927121162, + 0.008411814458668232, + -0.003422799054533243, + -0.00015663998783566058, + 0.012048721313476562, + 0.005455360747873783, + -0.009262381121516228, + 0.022267257794737816, + 0.0016248762840405107, + -0.011825814843177795, + 0.017339834943413734, + 0.0018037887057289481, + 0.009326906874775887, + 0.0054201651364564896, + -0.02764049544930458, + 0.02815670147538185, + -0.029939958825707436, + -0.0030737731140106916, + -0.004945020657032728, + -0.02517678402364254, + 0.005678268149495125, + -0.03599365055561066, + 0.017058268189430237, + 0.003921407274901867, + -0.010558762587606907, + 0.0021425490267574787, + -0.016295690089464188, + 0.01366773247718811, + 0.003217489691451192, + -0.0038920773658901453, + -0.003733695950359106, + 0.010828598402440548, + 0.003613443346694112, + 0.002645556814968586, + -0.0052793812938034534, + -0.0057691908441483974, + -0.008300361223518848, + -0.002136683091521263, + 0.015427526086568832, + -0.0005481024272739887, + 0.020167237147688866, + -0.01123335026204586, + -0.003528386587277055, + -0.03641600161790848, + -0.0018096546409651637, + 0.0148409279063344, + -0.005918773356825113, + -0.0002773508313111961, + -1.1204937436559703e-5, + 0.011421062052249908, + -0.002746744779869914, + 0.006816267967224121, + -0.027288535609841347, + 0.027570102363824844, + -0.02155160903930664, + -0.01945158839225769, + -0.012693979777395725, + 8.597326086601242e-5, + 0.01704653538763523, + -0.006921855732798576, + -0.010811000131070614, + 0.004381886683404446, + 0.010740607976913452, + 0.005819051526486874, + -0.012564928270876408, + 0.010945918038487434, + 0.005584412254393101, + -0.015263278037309647, + 0.005355639383196831, + -0.013867175206542015, + 0.004874628968536854, + 0.014711876399815083, + -0.003276149509474635, + -0.002803938230499625, + -0.0026514227502048016, + 0.021504679694771767, + 0.008851762861013412, + -0.010095350444316864, + 0.00032079574884846807, + 0.0018727139104157686, + 0.01918175257742405, + -0.023487381637096405, + -0.01649513468146324, + 0.013057670556008816, + 0.017703525722026825, + 0.02216167002916336, + -0.008212370797991753, + 0.019709691405296326, + -0.0025517011526972055, + 0.004249901976436377, + 0.020648246631026268, + 0.012412412092089653, + -0.0073676700703799725, + 0.0009011611109599471, + 0.0004348157381173223, + 0.0033494741655886173, + -0.03615789860486984, + 0.014078350737690926, + 0.0018521830206736922, + -0.0227130725979805, + 0.01427779346704483, + -0.02313542366027832, + 0.012166040949523449, + -0.022935979068279266, + -0.012212969362735748, + -0.0269131138920784, + 0.011931401677429676, + 0.003598778275772929, + 0.04340824857354164, + -0.005983299110084772, + 0.01012468058615923, + 0.008229969069361687, + 0.003563582431524992, + -0.001335976761765778, + -0.009807917289435863, + -0.010294794104993343, + 0.017820846289396286, + -0.010324123315513134, + 0.000383855018299073, + 0.0008388350834138691, + 0.026889650151133537, + -0.01790296845138073, + -0.015849877148866653, + 0.006405649706721306, + -0.0012934484984725714, + 0.0017641932936385274, + -0.008793103508651257, + -0.01108083501458168, + -0.003475592704489827, + -0.01380851585417986, + -0.005282314494252205, + -0.004877561703324318, + -0.011045639403164387, + -0.01741022616624832, + 0.0043320260010659695, + 0.005226587876677513, + -0.006364587694406509, + -0.008593659847974777, + -0.0018551159882918, + -0.0283444132655859, + 0.014359917491674423, + 0.002410917542874813, + -0.0036457062233239412, + 0.0232879389077425, + -0.007074370980262756, + 0.020566124469041824, + -0.005980365909636021, + 0.02843826822936535, + 0.00796013418585062, + -0.01027719583362341, + 0.004839432891458273, + 0.00021099194418638945, + 0.01592026837170124, + -0.013128061778843403, + 0.01658898964524269, + -0.008916288614273071, + -0.01784431003034115, + -0.0026147603057324886, + 0.011033907532691956, + 0.002126417588442564, + 0.0058542476035654545, + 0.0038451494183391333, + -0.0013785051414743066, + -0.0008952951175160706, + 0.012834763154387474, + 0.015744289383292198, + -0.0015647499822080135, + -0.013867175206542015, + -0.0037688917946070433, + 0.001781791215762496, + -0.02426169067621231, + 0.011438660323619843, + 0.013386164791882038, + 0.008130247704684734, + -0.015967195853590965, + 0.013186722062528133, + -0.014864391647279263, + -0.010154010728001595, + -0.007508453447371721, + 0.016940949484705925, + -1.2614146726264153e-5, + 0.005431897006928921, + -0.002177744871005416, + 0.012928619049489498, + -0.00826516468077898, + 0.005238319747149944, + 0.0034579948987811804, + 0.00998389720916748, + -0.018747670575976372, + 0.007062639109790325, + -0.0045783971436321735, + 0.004109118599444628, + -0.019416391849517822, + 0.010154010728001595, + 0.015181154944002628, + -0.01279956754297018, + 0.0016908685211092234, + 0.015521381981670856, + -0.022701339796185493, + -0.01289342250674963, + 0.01838397979736328, + 0.02836787700653076, + -0.0004901759093627334, + -0.015885071828961372, + -0.0016600721282884479, + -0.0008183041354641318, + 0.0005429697339423001, + -0.030338846147060394, + -0.0003002648300025612, + 0.02292424812912941, + 0.002720348071306944, + -0.00491569098085165, + -0.003399335080757737, + -0.0008608324569649994, + -0.011321340687572956, + 0.0070098452270030975, + -0.012905154377222061, + -0.023792412132024765, + -0.00818890705704689, + 0.019040968269109726, + -0.005516953766345978, + 0.006833866238594055, + 0.020472267642617226, + 0.0032878813799470663, + 0.017187319695949554, + 0.01799682527780533, + 0.0037630258593708277, + 0.007350072264671326, + 0.016764968633651733, + -0.022185133770108223, + 0.013785051181912422, + 0.005733994767069817, + 0.012424143962562084, + 0.01433645375072956, + -0.004481608048081398, + 0.0017627268098294735, + 0.007402866147458553, + 0.007086103316396475, + 0.006065422669053078, + -0.004443479236215353, + 0.002237871056422591, + 0.001249453634954989, + 0.004038726910948753, + 0.005962768103927374, + 0.014254329726099968, + 0.00013409262464847416, + 0.010887257754802704, + -0.006182742305099964, + -0.025153320282697678, + -0.0076902988366782665, + 0.020953278988599777, + 0.007068505045026541, + -0.007156495004892349, + -0.0019387061474844813, + 0.009379700757563114, + 0.02195049449801445, + 0.009995629079639912, + -0.00670481426641345, + 0.006370453629642725, + 0.01033585611730814, + 0.01077580451965332, + -0.02454325743019581, + 0.0014796933392062783, + -0.0014166340697556734, + -0.005443628877401352, + -0.027147753164172173, + 0.007449793629348278, + 0.0008798969211056828, + 0.006370453629642725, + 0.00415604654699564, + -0.06419727951288223, + -0.008822432719171047, + -0.004062190651893616, + 0.018735937774181366, + -0.002396252704784274, + 0.006481907330453396, + -7.662435382371768e-5, + -0.008288629353046417, + 0.023733751848340034, + -0.03364725783467293, + -0.015216350555419922, + -0.019557176157832146, + 0.009931103326380253, + -0.0018829794134944677, + -0.0022041418123990297, + 0.006693082395941019, + 0.015099030919373035, + 0.01744542270898819, + -0.0067341444082558155, + 0.011925536207854748, + -0.03437463939189911, + -0.009819649159908295, + -0.008734443224966526, + -0.007402866147458553, + 0.009931103326380253, + -0.018243195489048958, + -0.0056870668195188046, + -0.007848680019378662, + -0.01626049540936947, + -0.0023654561955481768, + -0.009608474560081959, + -0.017281174659729004, + 0.002396252704784274, + 0.017891237512230873, + 0.0028259356040507555, + -0.010529433377087116, + -0.003191092750057578, + 0.009098134003579617, + -0.01396103110164404, + -0.005698799155652523, + 0.012963814660906792, + 0.002274533500894904, + -0.0033582733012735844, + -0.014230865985155106, + -0.022325918078422546, + 0.022760000079870224, + -0.006440845318138599, + -0.005079938098788261, + 0.0007394800195470452, + -0.0002386720443610102, + -0.02928296849131584, + -0.004417082294821739, + 0.022290721535682678, + -0.001101337606087327, + -0.01698787696659565, + -0.01120402105152607, + -0.0055638812482357025, + -0.0008527667378075421, + 0.004637056961655617, + 0.001953371101990342, + 0.01725771091878414, + 0.017527546733617783, + 0.012717443518340588, + 0.026561154052615166, + -0.006135814357548952, + -0.0026616882532835007, + -0.006716546602547169, + 0.02630305103957653, + 0.04587195813655853, + 0.0283444132655859, + -0.016084516420960426, + -0.033717650920152664, + -0.010576360858976841, + 0.017515813931822777, + -0.006258999928832054, + 0.011726092547178268, + 0.00084103480912745, + -0.004469876177608967, + -0.013890638947486877, + 0.015099030919373035, + -0.02538795955479145, + 0.01555657759308815, + -0.010007360950112343, + -0.027382392436265945, + 0.01610798016190529, + 0.006740010343492031, + 0.023205814883112907, + -0.0067634740844368935, + -0.0015442190924659371, + -0.0008021726971492171, + 0.0028875283896923065, + -0.00726794870570302, + -0.007608175277709961, + 0.007754824589937925, + -0.016272226348519325, + 0.03247406333684921, + -0.018958846107125282, + 0.0009429561905562878, + 0.008652319200336933, + -0.003229221561923623, + -0.0025150387082248926, + -0.00344039686024189, + 0.014207402244210243, + -0.020049918442964554, + -0.01979181542992592, + 0.012342020869255066, + -0.018090680241584778, + -0.016061050817370415, + 0.003880345495417714, + 0.0016630052123218775, + -0.0039126081392169, + -0.013151525519788265, + -0.006698948331177235, + 0.011749557219445705, + 0.003340675262734294, + 0.011626371182501316, + -0.004337891936302185, + -0.0031265669967979193, + -0.011579443700611591, + 0.006147546228021383, + -0.0033113453537225723, + 0.003713164944201708, + -0.0058835772797465324, + -0.030972370877861977, + 0.00358411343768239, + 0.017316371202468872, + 0.009016009978950024, + 0.004625324625521898, + -0.013339237309992313, + -0.008218237198889256, + 0.0011856610653921962, + 0.019052701070904732, + -0.00832382496446371, + -0.006446711253374815, + 0.02139909379184246, + -0.007432195823639631, + -0.014887855388224125, + 0.008253432810306549, + 0.003114835126325488, + 0.012201237492263317, + 0.008986680768430233, + 0.010816865600645542, + -0.0042029740288853645, + -0.0015134226996451616, + -0.034726597368717194, + -0.010805133730173111, + -0.00546415988355875, + 0.013221917673945427, + 0.009755123406648636, + 0.006587495096027851, + -0.01641301065683365, + 0.02292424812912941, + 0.017973361536860466, + 0.008816567249596119, + 0.020343216136097908, + 0.013573876582086086, + -0.016389546915888786, + -0.016119711101055145, + 0.0018961778841912746, + 0.008969082497060299, + -0.01158530917018652, + 0.003217489691451192, + 0.018548227846622467, + 0.012482804246246815, + -0.0024431804195046425, + 0.013702928088605404, + -0.005672402214258909, + 0.015931999310851097, + -0.004238170105963945, + -0.015321938320994377, + -0.004241103306412697, + 0.006294196005910635, + 0.027053896337747574, + 0.004361355677247047, + -0.0007061172509565949, + 0.009743391536176205, + -0.01933426782488823, + -0.014148741960525513, + -0.009508752264082432, + -0.013280577026307583, + 0.009203721769154072, + -0.007531917653977871, + -0.011033907532691956, + 0.014653217047452927, + 0.0029007268603891134, + 0.0008476340444758534, + 0.012095649726688862, + 0.0002894494100473821, + -0.001583814388141036, + -0.0021718789357692003, + 0.017668329179286957, + -0.011667433194816113, + -0.01238894835114479, + 0.014148741960525513, + -0.02359296940267086, + -0.0013763054739683867, + -0.006663752719759941, + -0.014195670373737812, + 0.006288330070674419, + -0.0010705412132665515, + -0.004109118599444628, + -0.0020604252349585295, + 0.011990061961114407, + -0.023522578179836273, + -0.02423822693526745, + 0.0055345515720546246, + -0.0009832847863435745, + -0.005229520611464977, + -0.00803639180958271, + -0.011778886429965496, + -0.0240505151450634, + -0.01799682527780533, + 0.02958800084888935, + 0.01258839201182127, + -0.010007360950112343, + 0.01152078341692686, + 0.011919669806957245, + -0.015826411545276642, + 0.005021278280764818, + -0.016635917127132416, + -0.006305927876383066, + -0.00997216533869505, + 0.0025517011526972055, + -0.0006624890374951065, + 0.022490164265036583, + 0.023698557168245316, + 0.0037160979118198156, + -0.004393618553876877, + 0.0013000477338209748, + 0.01807894930243492, + -0.002707149600610137, + 0.008071587421000004, + 0.0063293916173279285, + 0.012506267987191677, + -0.0066578867845237255, + -0.00039778673090040684, + 0.0005847648135386407, + -0.024637114256620407, + 0.004824768286198378, + -0.003475592704489827, + -0.01237721648067236, + 0.023733751848340034, + -0.02097674272954464, + 0.015286742709577084, + -0.005839582532644272, + 0.0008102384163066745, + -0.03364725783467293, + -0.01838397979736328, + -0.0017539277905598283, + 0.0009554214193485677, + -0.02630305103957653, + 0.005830783396959305, + -0.016143174842000008, + 0.03704952448606491, + 0.0016175438649952412, + -0.015122494660317898, + -0.008065721951425076, + 0.03742494806647301, + 0.014547629281878471, + 0.0003933872503694147, + -0.0036838350351899862, + -0.010981113649904728, + -0.007590577472001314, + -0.012365484610199928, + -0.01847783476114273, + -0.010822732001543045, + 0.031042763963341713, + -0.005602010525763035, + -0.016483401879668236, + 0.018559958785772324, + 0.010042556561529636, + -0.007702031172811985, + -0.010769938118755817, + -0.005889443214982748, + -0.011984195560216904, + 0.002953520743176341, + -0.0027306133415549994, + 0.0027379458770155907, + 0.019627567380666733, + 0.0077372267842292786, + 0.0018419175175949931, + 0.0060830204747617245, + -0.00027258472982794046, + -0.006106484681367874, + 0.025364495813846588, + 0.022701339796185493, + -0.0040504587814211845, + 0.006352855823934078, + 0.0022847990039736032, + -0.006118216551840305, + -0.015298474580049515, + -0.007655103225260973, + 0.005508154630661011, + 0.0204253401607275, + -0.015427526086568832, + -0.006540567148476839, + 0.0039566028863191605, + -0.014723608270287514, + -0.022325918078422546, + -0.0061768763698637486, + 0.004100319463759661, + -0.018771134316921234, + -0.006118216551840305, + 0.008863494731485844, + -0.0027247474063187838, + 0.014031422324478626, + -0.01252973172813654, + -0.02088288590312004, + 0.009016009978950024, + 0.001507556764408946, + -0.022572288289666176, + 0.007643371354788542, + 0.006951185408979654, + 0.007221020758152008, + 0.008376618847250938, + 0.006751742213964462, + 0.013949299231171608, + 0.0029285901691764593, + 0.011022175662219524, + 0.013937567360699177, + 0.01164396945387125, + 0.0084000825881958, + 0.019134825095534325, + 0.005097535904496908, + 0.03437463939189911, + 0.012189505621790886, + -0.004859963897615671, + 0.033201444894075394, + 0.008699247613549232, + -0.009631938301026821, + 0.011608772911131382, + 0.0006569896941073239, + 0.001954837702214718, + -0.016823628917336464, + -0.017421958968043327, + 0.027100825682282448, + 0.0040416596457362175, + -0.00984897930175066, + -0.00016745537868700922, + -0.018712474033236504, + 0.011227484792470932, + -0.004158979281783104, + -0.001706999959424138, + -0.025458350777626038, + 0.019533710554242134, + 0.0038656804244965315, + 0.015967195853590965, + -0.0015808814205229282, + 0.0018023222219198942, + -0.013280577026307583, + 0.00525298435240984, + -0.0034814588725566864, + 0.01710519567131996, + 0.004393618553876877, + -0.025505278259515762, + 0.00911573227494955, + 0.000120527547551319, + 0.004147247411310673, + -0.0034550619311630726, + 0.0030884381849318743, + -0.012623587623238564, + -0.018595155328512192, + 0.005951036233454943, + -0.00017469619342591614, + -0.004575463943183422, + 0.007743092719465494, + 0.0192756075412035, + -0.0025297035463154316, + 0.004208840429782867, + -0.002451979322358966, + 0.009033608250319958, + -0.024144371971488, + -0.007526051718741655, + -0.0045783971436321735, + 0.009414897300302982, + -0.001632208819501102, + 0.0021704123355448246, + -0.021363897249102592, + -0.004590129014104605, + 0.012459340505301952, + 0.02063651569187641, + -0.0075377835892140865, + 0.018137607723474503, + -0.014676680788397789, + -0.02846173197031021, + -0.017457155510783195, + 0.013350969180464745, + -0.006241402123123407, + -0.014524164609611034, + -0.0012831829953938723, + -0.024402474984526634, + -0.028203628957271576, + -0.007965999655425549, + 0.026631547138094902, + -0.007619907148182392, + 0.009989762678742409, + 0.012283360585570335, + 0.0021176186855882406, + -0.007373536005616188, + -0.0036163763143122196, + 0.005593211390078068, + -0.018102413043379784, + -0.017527546733617783, + 0.009825515560805798, + 0.019346000626683235, + -0.013280577026307583, + -0.0031265669967979193, + -0.006616824772208929, + 0.0056489380076527596, + -0.035172414034605026, + 0.022818660363554955, + 0.007965999655425549, + -0.0014936249935999513, + 0.0013821714092046022, + -0.004977283533662558, + 0.021504679694771767, + -0.020812494680285454, + -0.00564013933762908, + -0.018806330859661102, + 0.00470451544970274, + -0.028696371242403984, + -0.012729175388813019, + -0.0019211082253605127, + -0.012166040949523449, + -0.02416783571243286, + -0.0027526109479367733, + 0.016729773953557014, + -0.010054288432002068, + -0.022419773042201996, + -0.022642681375145912, + 0.007191690616309643, + -0.008417680859565735, + -0.026537690311670303, + 0.0017597938422113657, + 0.0010551430750638247, + 0.023252742365002632, + -0.0022246725857257843, + -0.006710680667310953, + -0.01464148424565792, + -0.0019240411929786205, + 0.003724896814674139, + -0.0059686340391635895, + 0.011286144144833088, + 0.026983505114912987, + -0.013503484427928925, + -0.005813185591250658, + 0.009285845793783665, + -0.008141979575157166, + 0.024637114256620407, + -0.004986082669347525, + -0.00854086596518755, + -0.004226438235491514, + -0.0033846700098365545, + 0.002412384143099189, + -0.00014115012891124934, + 0.013726391829550266, + -0.0076902988366782665, + -0.01217777281999588, + -0.020049918442964554, + 0.005493489559739828, + 5.357289046514779e-5, + 0.007936670444905758, + 0.00383635051548481, + 0.0034198660869151354, + 0.019076164811849594, + -0.0016850025858730078, + 0.024824824184179306, + 0.00214988156221807, + -0.009866577573120594, + -0.005261783488094807, + -0.019322536885738373, + -0.005467092618346214, + -0.017316371202468872, + 0.0037776906974613667, + -0.002746744779869914, + -0.010435577481985092, + -0.011626371182501316, + -0.008106783963739872, + -0.0002881662512663752, + -0.004255767911672592, + 0.015239814296364784, + 0.005833716597408056, + -0.007801752537488937, + -0.007549515459686518, + 0.005619608331471682, + 0.01325711328536272, + -0.026561154052615166, + -0.006599226966500282, + -0.0074145980179309845, + 0.006898391991853714, + -0.006000896915793419, + 0.019557176157832146, + -0.00427629891782999, + 0.01912309229373932, + 0.0012934484984725714, + 0.00919198989868164, + 0.018735937774181366, + 0.0066109588369727135, + -0.005291113629937172, + -0.010617422871291637, + 0.008499803952872753, + 0.019052701070904732, + 0.03477352485060692, + -0.013186722062528133, + 0.018032019957900047, + 0.018559958785772324, + 0.010118814185261726, + 0.0039742011576890945, + 0.0027042164001613855, + 0.021868370473384857, + 0.0013213118072599173, + -0.003522520652040839, + 0.005874778609722853, + 0.011591175571084023, + 0.006822133902460337, + 0.0039360723458230495, + 0.025012535974383354, + 0.005965700838714838, + -0.014078350737690926, + -0.0036193092819303274, + -0.009978030808269978, + 0.013902370817959309, + -0.00021117525466252118, + 0.0011152693768963218, + -0.0038686133921146393, + 0.023182351142168045, + -0.004252835176885128, + -0.0029241908341646194, + -0.010101216845214367, + 0.013749855570495129, + -0.012611855752766132, + -0.0013264445587992668, + -0.02189183607697487, + -0.0012831829953938723, + -0.005508154630661011, + 0.012517999857664108, + -0.014794000424444675, + 0.024144371971488, + -0.016248762607574463, + -0.012201237492263317, + -0.0007853080169297755, + 0.014876123517751694, + 0.005555082578212023, + 0.022513629868626595, + 0.01468841265887022, + -0.009866577573120594, + -0.0002978817792609334, + -0.007326608523726463, + -0.006059556733816862, + 0.02907179482281208, + -0.003871546359732747, + -0.015779484063386917, + 0.006546433083713055, + -0.002497440669685602, + -0.0049303555861115456, + 0.004669319838285446, + -0.0026206262409687042, + 0.012154309079051018, + -0.03927859663963318, + -0.007179958745837212, + -0.0015295541379600763, + 0.02416783571243286, + -0.003340675262734294, + -0.003214556723833084, + 0.024144371971488, + -0.004399484489113092, + -0.010752339847385883, + 0.01631915383040905, + -0.002595695899799466, + 0.02101193740963936, + -0.0030737731140106916, + 0.01534540206193924, + 0.006041958928108215, + -0.01360907219350338, + -0.009221320040524006, + 0.013350969180464745, + -0.003971267957240343, + -0.001619010348804295, + 0.0013499085325747728, + -0.03047962859272957, + -0.002512105740606785, + -0.0024417138192802668, + -0.004018195904791355, + -0.01756274327635765 + ], + "6d4117d6-bc83-44a5-ad19-d828afa2baed": [ + -0.019720938056707382, + -0.054329924285411835, + -0.012024962343275547, + -0.00156897131819278, + 0.02459963783621788, + 0.017212875187397003, + -0.017785491421818733, + 0.058086294680833817, + -0.0023692038375884295, + 0.058865055441856384, + -0.004598116502165794, + 0.0032352874986827374, + 0.010341467335820198, + -0.007438298314809799, + 0.012654841877520084, + 0.009121793322265148, + -0.016308140009641647, + 0.001451584743335843, + 0.0006127004744485021, + -0.012597579509019852, + 0.02682139351963997, + -0.018186325207352638, + -0.010725121013820171, + 0.04164072871208191, + -0.021610574796795845, + -0.020018698647618294, + 0.018312299624085426, + 0.009579886682331562, + 0.006161361932754517, + -0.029524145647883415, + 0.02366054616868496, + 0.022629834711551666, + -0.02344295009970665, + 0.022618381306529045, + 0.014773525297641754, + -0.012792269699275494, + -0.017281588166952133, + -0.023614736273884773, + -0.009161876514554024, + -0.005425548646599054, + -0.0351128913462162, + 0.010856823064386845, + 0.013960408978164196, + -0.03428832069039345, + -0.003965374547988176, + 0.022687096148729324, + 0.008549176156520844, + -0.011062965728342533, + 0.029959335923194885, + -0.00715771596878767, + 0.04661104455590248, + -0.005328203551471233, + 0.036418456584215164, + 0.013067126274108887, + 0.0294096227735281, + -0.04457252845168114, + -0.014727716334164143, + 0.008795401081442833, + 0.015380499884486198, + -0.022893238812685013, + 0.012334175407886505, + -0.011704296804964542, + -0.0028172768652439117, + -0.002055695978924632, + 0.03586874529719353, + -0.0258822999894619, + 0.0431753434240818, + 0.010455991141498089, + 0.0029146219603717327, + 0.007713154423981905, + 0.0025853668339550495, + -0.048878610134124756, + -0.026546536013484, + 0.002028496703132987, + 0.02194269374012947, + 0.011383631266653538, + 0.0072436085902154446, + -0.003707696683704853, + -0.004795669578015804, + 0.002127273241057992, + -0.03105876035988331, + -0.03291403874754906, + -0.02063712663948536, + -0.036441363394260406, + 0.027737580239772797, + -0.012357080355286598, + -0.06935540586709976, + -0.028722481802105904, + -0.041388776153326035, + -0.014876596629619598, + -0.0010414476273581386, + -0.017957277595996857, + 0.03632684051990509, + 0.02776048518717289, + -0.04961156100034714, + -0.019732391461730003, + -0.0020213390234857798, + 0.026409108191728592, + -0.004515087231993675, + -0.028951529413461685, + -0.021702194586396217, + 0.022927595302462578, + 0.0054055070504546165, + 0.00481857405975461, + 0.05043612793087959, + 0.03238723427057266, + 0.012311271391808987, + -0.006585098337382078, + -0.02883700467646122, + 0.0018681638175621629, + -0.032043661922216415, + -0.007232156116515398, + 0.028424721211194992, + -0.03273080289363861, + 0.01704108901321888, + -0.08763334900140762, + 0.010249849408864975, + 0.028814101591706276, + -0.008314402773976326, + -0.021060863509774208, + 0.056208111345767975, + 0.0024951796513050795, + 0.018186325207352638, + 0.0021616301964968443, + 0.009339387528598309, + 0.0052308589220047, + -0.008783948607742786, + 0.039167020469903946, + 0.06005609780550003, + 0.005517167504876852, + 0.010599145665764809, + -0.009654327295720577, + -0.0046754200011491776, + 0.008761044591665268, + -0.01962932012975216, + -0.01741901785135269, + 0.0030262821819633245, + 0.020018698647618294, + 0.0019039524486288428, + 0.0076272618025541306, + 0.004761312622576952, + 0.022423692047595978, + 0.032043661922216415, + -0.032410137355327606, + 0.011349273845553398, + -0.023271165788173676, + -0.04406862333416939, + 0.05927734076976776, + 0.017751134932041168, + 0.03834245353937149, + -0.051672980189323425, + -0.0468859001994133, + -0.005542935337871313, + 0.0378156453371048, + -0.027233676984906197, + -0.019377367570996284, + 0.01053615752607584, + 0.042030107229948044, + 0.00494454987347126, + -0.004855794366449118, + 0.021977050229907036, + -0.023328427225351334, + 0.010965620167553425, + 0.002948978915810585, + 0.011200393550097942, + 0.0009806071175262332, + 0.014097836799919605, + 0.04640490189194679, + -0.03415089473128319, + 0.018220681697130203, + 0.025149350985884666, + 0.011710022576153278, + 0.0016219384269788861, + -0.011526785790920258, + 0.0015102780889719725, + -0.03307437151670456, + 0.0025667569134384394, + -0.014659001491963863, + 0.03383022919297218, + 0.012368532828986645, + -0.0547880195081234, + 0.002877401653677225, + -0.021530408412218094, + 0.04173234477639198, + 0.035570982843637466, + 0.0044750040397048, + -0.002463685814291239, + 0.01878184638917446, + -0.04180106148123741, + 0.00891565065830946, + 0.04033515974879265, + -0.04553452506661415, + 0.004440647084265947, + 0.0243705902248621, + -0.0294096227735281, + 0.021255552768707275, + 0.003581720869988203, + -0.008606437593698502, + -0.021748004481196404, + 0.007902118377387524, + -0.016720423474907875, + -0.02149605192244053, + -0.0305777620524168, + -0.005076251924037933, + -0.057994674891233444, + -0.008726687170565128, + 0.006814145483076572, + -0.008543449454009533, + 0.0011337822070345283, + -0.004162927623838186, + 0.018804751336574554, + -0.014979667961597443, + 0.006774062290787697, + -0.010410182178020477, + 0.004724092315882444, + -0.007667344994843006, + -0.02970738336443901, + 0.003985416144132614, + -0.017247231677174568, + -0.04061001539230347, + -0.008657973259687424, + -0.026706868782639503, + -0.01834665797650814, + -0.030096763744950294, + -0.021186837926506996, + -0.00801664125174284, + -0.0115096066147089, + 0.009579886682331562, + -0.012964054942131042, + -0.04665685445070267, + 0.002280448330566287, + 0.022824523970484734, + 0.0140291228890419, + 0.01603328250348568, + 0.016502829268574715, + 0.05666620284318924, + 0.013376339338719845, + -0.0158844031393528, + 0.01355957705527544, + -0.00067640416091308, + 0.024691255763173103, + -0.00938519649207592, + 0.01495676301419735, + 0.0013399244053289294, + -0.034425750374794006, + -0.01747627928853035, + -0.0140291228890419, + 0.015804236754775047, + 0.007718880660831928, + 0.012368532828986645, + 0.040014494210481644, + 0.007214977405965328, + 0.060605812817811966, + 0.013582481071352959, + -0.022332074120640755, + 0.03896087780594826, + 0.01998434215784073, + -0.012700650840997696, + -0.025996822863817215, + -0.020545506849884987, + -0.014212360605597496, + 0.03953349590301514, + -0.009259221144020557, + 0.009471089579164982, + 0.05446735396981239, + -0.024485114961862564, + 0.04601552337408066, + -0.006178540177643299, + 0.0009670074214227498, + 0.0051277875900268555, + 0.0253783967345953, + 0.0018352383049204946, + 0.007615809794515371, + 0.0037764108274132013, + -0.0278979130089283, + -0.016789138317108154, + -0.024920303374528885, + -0.01581568829715252, + -0.006922942586243153, + -0.0048758359625935555, + -0.0018552799010649323, + -0.0018695953767746687, + 0.0457177609205246, + 0.013330529443919659, + 0.031608473509550095, + -0.026867201551795006, + -0.012666293419897556, + -0.039235733449459076, + -0.053093072026968, + -0.028424721211194992, + 0.01647992432117462, + -0.019537700340151787, + 0.0052251326851546764, + 0.003464334411546588, + 0.0035960364621132612, + -0.0035960364621132612, + -0.029959335923194885, + -0.017590802162885666, + -0.010307110846042633, + 0.004014046862721443, + -0.03236432746052742, + 0.026844296604394913, + 0.010828192345798016, + 0.017854206264019012, + -0.03257047012448311, + -0.010988525114953518, + 0.03460898622870445, + -0.03625812381505966, + -0.03222689777612686, + 0.03099004551768303, + 0.026867201551795006, + -0.021095219999551773, + -0.010753752663731575, + -0.0218510739505291, + 0.053047262132167816, + 0.015575189143419266, + 0.010656407102942467, + 0.03222689777612686, + -0.02345440350472927, + 0.014693358913064003, + 0.007300870027393103, + -0.004340438637882471, + -0.011669939383864403, + 0.028310198336839676, + 0.048512134701013565, + -0.05868181586265564, + 0.0038079048972576857, + -0.017098352313041687, + 0.035135794430971146, + -0.022091573104262352, + 0.016663162037730217, + 0.005248037166893482, + -0.042259152978658676, + 0.012666293419897556, + -0.011664213612675667, + -0.033761512488126755, + -0.057994674891233444, + -0.007896391674876213, + -0.022423692047595978, + 0.0046525150537490845, + 0.0024021293502300978, + 0.001243295264430344, + 0.005560113582760096, + -0.0002446149301249534, + -0.031104570254683495, + 0.015334689989686012, + 0.035639699548482895, + 0.016995280981063843, + -0.005416959524154663, + -0.003472923766821623, + 0.0004806406213901937, + -0.008680877275764942, + 0.027875008061528206, + -0.01784275472164154, + 0.009677231311798096, + 0.008428926579654217, + 0.018678775057196617, + 0.03834245353937149, + -0.00010700785060180351, + 0.0019984343089163303, + -0.012196747586131096, + 0.0016004652716219425, + 0.004214463289827108, + -0.0035702686291188, + -0.0036762028466910124, + 0.021381529048085213, + 0.023053571581840515, + 0.03078390471637249, + 0.021816717460751534, + 0.0026898696087300777, + -0.027966627851128578, + 0.018163420259952545, + -0.0013671236811205745, + 0.008938555605709553, + -0.0210837684571743, + -0.04251110553741455, + -0.004841479007154703, + -0.00463819969445467, + -0.04574066773056984, + 0.031173283234238625, + -0.012402890250086784, + 0.021198291331529617, + 0.023248260840773582, + 0.007587178610265255, + 0.020018698647618294, + 0.02581358700990677, + -0.02180526591837406, + -0.012391437776386738, + -0.007575726602226496, + -0.03692236170172691, + -0.009064530953764915, + -0.024576732888817787, + -0.027852103114128113, + -0.037426263093948364, + -0.036006174981594086, + 0.005869327113032341, + 0.032684992998838425, + 0.030806809663772583, + -0.006338872946798801, + -0.014292526990175247, + 0.03591455519199371, + -0.010530431754887104, + -0.013067126274108887, + -0.010387277230620384, + 0.030760999768972397, + -0.019835462793707848, + -0.006447670515626669, + 0.014681906439363956, + 0.02631749026477337, + -0.0015947390347719193, + 0.020694388076663017, + 0.015804236754775047, + -0.014178003184497356, + -0.001118035172112286, + -0.00728369178250432, + -0.01089690625667572, + 0.0034757868852466345, + -0.022538214921951294, + -0.07961670309305191, + -0.006699622143059969, + 0.04846632480621338, + 0.04072453826665878, + -0.019434629008173943, + -0.00614990945905447, + -0.0122654614970088, + 0.02064857818186283, + 0.010770930908620358, + -0.005608785897493362, + -0.0150369293987751, + 0.0021845349110662937, + -0.022916143760085106, + 0.020053057000041008, + -0.002459391253069043, + 0.015472118742763996, + 0.01848408579826355, + -0.001082246657460928, + -0.0018996577709913254, + 0.0285621490329504, + -0.023328427225351334, + -0.0142810745164752, + -0.0019383094040676951, + 0.038937974721193314, + 0.0260426327586174, + 0.020614221692085266, + -0.012345627881586552, + -0.02229771576821804, + -0.008469009771943092, + -0.002270427532494068, + 0.016731876879930496, + 0.0008252846309915185, + 0.01863296516239643, + 0.05061936751008034, + 0.018186325207352638, + 0.005305299069732428, + 0.008835484273731709, + 0.013101482763886452, + -0.010118147358298302, + -0.005388328339904547, + -0.007186346687376499, + -0.01697237603366375, + -0.02021338976919651, + -0.0255387295037508, + 0.02998223900794983, + 0.008434652350842953, + -0.02769177034497261, + 0.026409108191728592, + -0.011251929216086864, + 0.02530968375504017, + 0.0002038159582298249, + 0.02395830675959587, + 0.004251683130860329, + 0.014510121196508408, + -0.06463703513145447, + 0.005989576689898968, + 0.023477308452129364, + -0.02114102989435196, + 0.004838615655899048, + 0.016731876879930496, + 0.019171226769685745, + -0.008085356093943119, + -0.007821951992809772, + -0.0185642521828413, + -0.017888562753796577, + 0.061659425497055054, + -0.009831838309764862, + 0.029455432668328285, + -0.029295099899172783, + -0.0034213881008327007, + -0.035410650074481964, + 0.017682421952486038, + 0.009768850170075893, + 0.009431006386876106, + 0.0011631287634372711, + 0.02748562954366207, + -0.016892209649086, + 0.003029145300388336, + 0.023568926379084587, + -0.007862035185098648, + 0.028035340830683708, + -0.04164072871208191, + 0.029592860490083694, + -0.02423316240310669, + 0.0012039277935400605, + 0.003292549168691039, + -0.03703688457608223, + 0.0284018162637949, + 0.02229771576821804, + 0.018037443980574608, + -0.004947413224726915, + 0.025584539398550987, + -0.0033784417901188135, + 0.0712335854768753, + -0.0255387295037508, + -0.008560627698898315, + 0.024141544476151466, + 0.008961460553109646, + -0.012906793504953384, + -0.030463239178061485, + 0.01445285975933075, + -0.02114102989435196, + 0.0018638691399246454, + -0.008285772055387497, + -0.015334689989686012, + 0.005210817325860262, + -0.017602255567908287, + -0.004125707317143679, + -0.017636612057685852, + -0.007758963853120804, + 0.009219137951731682, + 0.0051277875900268555, + -0.03699107468128204, + -0.004641063045710325, + 0.006602277047932148, + -0.0012196748284623027, + 0.02150750532746315, + -0.023637641221284866, + -0.0255387295037508, + -0.010095242410898209, + 0.0007887802785262465, + -0.01942317746579647, + 0.009499720297753811, + 0.03344084694981575, + -0.020820364356040955, + -0.010730847716331482, + 0.0071920729242265224, + 0.014830786734819412, + -0.013685552403330803, + -0.007621535565704107, + 0.007730333134531975, + -0.02043098397552967, + -0.017728229984641075, + 0.01956060528755188, + -0.024210257455706596, + -0.036212313920259476, + -0.003510143840685487, + -0.029226385056972504, + 0.04051839932799339, + -0.040747445076704025, + 0.002470843493938446, + -0.01582714170217514, + 0.00042874718201346695, + 0.00270561664365232, + 0.0010750888613983989, + 0.019228488206863403, + -0.012196747586131096, + 0.02597391977906227, + -0.019869819283485413, + -0.026775583624839783, + 0.013181649148464203, + -0.003338358597829938, + 0.014109289273619652, + 0.02243514358997345, + 0.03593745827674866, + -0.01704108901321888, + -0.028356006368994713, + 0.021885432302951813, + -0.0022775852121412754, + -0.0490618459880352, + -0.042831771075725555, + 0.04654233157634735, + -0.012631936930119991, + -0.0065908245742321014, + -0.016651710495352745, + -0.019446082413196564, + -0.017945824190974236, + 0.00048421946121379733, + -0.025630349293351173, + -0.048786990344524384, + -0.012540318071842194, + 0.0263862032443285, + -0.020098865032196045, + 0.029363812878727913, + -0.0019712350331246853, + 0.0099578145891428, + -0.010244122706353664, + 0.023706354200839996, + 0.022538214921951294, + 0.013490863144397736, + 0.015437761321663857, + 0.035135794430971146, + 0.02833310142159462, + -0.0017106940504163504, + 0.01028993260115385, + -0.00400832062587142, + -0.014006217941641808, + 0.013112935237586498, + -0.040014494210481644, + 0.015506475232541561, + 0.01218529511243105, + -0.019022345542907715, + 0.011377904564142227, + -0.006882859393954277, + 0.004575212020426989, + -0.016800589859485626, + 0.043037913739681244, + 0.03667040914297104, + 0.02812696062028408, + 0.028310198336839676, + 0.03229561448097229, + -0.019079606980085373, + 0.013719909824430943, + 0.001848122221417725, + 0.012586127035319805, + -0.020511150360107422, + 0.00319234118796885, + 0.012792269699275494, + -0.030028048902750015, + -0.0015403404831886292, + -0.003690518205985427, + 0.013410696759819984, + 0.03291403874754906, + 0.03126490116119385, + 0.007507012225687504, + -0.017144160345196724, + 0.00024032031069509685, + -0.013170196674764156, + 0.009963540360331535, + 0.03616650775074959, + -0.05057355761528015, + 0.033349230885505676, + -0.027462724596261978, + -0.0036876550875604153, + 0.0024393496569246054, + 0.03128780797123909, + -0.01542630884796381, + 0.013376339338719845, + -0.00589795783162117, + 0.04159491881728172, + 0.017796944826841354, + 0.026065537706017494, + 0.009980718605220318, + 0.0024364865384995937, + 0.015632450580596924, + 0.022068670019507408, + -0.01985836587846279, + -0.007352405693382025, + 0.007650166749954224, + 0.03387603908777237, + -0.016342496499419212, + -0.03202075883746147, + 0.006441944278776646, + -0.0028616548515856266, + 0.05199364572763443, + -8.463999256491661e-5, + 0.002246091142296791, + 0.02466835081577301, + -0.03710559755563736, + -0.019743843004107475, + -0.0104617178440094, + 0.010639228858053684, + -0.004741271026432514, + 0.0030434606596827507, + -0.012838078662753105, + 0.04651942476630211, + 0.00539405457675457, + -0.002082895254716277, + -0.005474220961332321, + -0.01733885146677494, + 0.011647035367786884, + 0.004606706090271473, + -0.025080636143684387, + -0.028035340830683708, + -0.03598326817154884, + 0.011395083740353584, + 0.0042001474648714066, + -0.013651195913553238, + -0.009499720297753811, + 0.00877822283655405, + -0.035341937094926834, + 0.003988279029726982, + -0.003616078058257699, + 0.04562614485621452, + -0.08250269293785095, + 0.0135252196341753, + 0.01208222471177578, + 0.027508532628417015, + -0.013548124581575394, + -0.028081150725483894, + -0.007707428187131882, + 0.005674636922776699, + -0.030165476724505424, + -0.014086384326219559, + -0.03005095385015011, + -0.013273268006742, + 0.017350303009152412, + 0.05341373756527901, + -0.017029637470841408, + -0.04097649082541466, + 0.0056288274936378, + 0.00981466006487608, + 0.03034871444106102, + 0.014395598322153091, + -0.021175386384129524, + -0.034357037395238876, + 0.022767262533307076, + -0.009940635412931442, + -0.03250175714492798, + 0.03783854842185974, + 0.012150938622653484, + 0.02258402481675148, + -0.019938532263040543, + 0.011555416509509087, + -0.034265417605638504, + -0.029386717826128006, + -0.047779183834791183, + 0.07343243807554245, + 0.017499184235930443, + -0.030600666999816895, + -0.022629834711551666, + -0.004243094008415937, + 0.01869022659957409, + -0.00602393364533782, + 0.020545506849884987, + -0.0024465073365718126, + -0.015930213034152985, + -0.010003623552620411, + -0.01369700487703085, + -0.0014480059035122395, + 0.007352405693382025, + -0.002553872996941209, + -0.0021873980294913054, + -0.017934372648596764, + 0.01495676301419735, + 0.0130213163793087, + 0.002581072272732854, + -0.00963714811950922, + 0.004131433553993702, + -0.004197284579277039, + -0.024943208321928978, + -0.01596456952393055, + 0.0006431207875721157, + -0.005777708254754543, + 0.043037913739681244, + 0.019755296409130096, + 0.012586127035319805, + -0.013868790119886398, + -0.02372925914824009, + 0.00042337889317423105, + -0.02560744434595108, + 0.03531903401017189, + 0.0006356051890179515, + -0.0072207036428153515, + -0.0010443107457831502, + -0.04709204286336899, + 0.013674099929630756, + 0.006270159035921097, + 0.02208012156188488, + 0.029501240700483322, + 0.02647782303392887, + 0.016949471086263657, + 0.023683449253439903, + -0.002397834789007902, + 0.003742053871974349, + 0.013971861451864243, + -0.03282242268323898, + -0.06624036282300949, + 0.01841537095606327, + 0.029661573469638824, + 0.019457533955574036, + -0.031745899468660355, + -0.023637641221284866, + -0.039075400680303574, + 0.050161272287368774, + 0.018930727615952492, + -0.021404433995485306, + -0.008961460553109646, + 0.001866732258349657, + 0.035502269864082336, + 0.001543203485198319, + -0.011887534521520138, + -0.018025990575551987, + -0.018025990575551987, + 0.0180603489279747, + 0.013651195913553238, + -0.030325809493660927, + 0.019102511927485466, + 0.0022890374530106783, + -0.00182092294562608, + -0.016594449058175087, + -0.025928109884262085, + -0.0034786497708410025, + -0.008148343302309513, + 0.020740197971463203, + 0.028791196644306183, + 0.0008725255611352623, + 0.02459963783621788, + -0.01204786729067564, + -0.0014458586229011416, + -0.003661887487396598, + 0.03811340406537056, + -0.0010156799107789993, + 0.01568971388041973, + -0.014109289273619652, + 0.0017106940504163504, + 0.021461695432662964, + 0.011125953868031502, + 0.012792269699275494, + -0.00928212609142065, + -0.012139486148953438, + -0.006338872946798801, + 0.0029547051526606083, + 0.007163441739976406, + 0.013353434391319752, + -0.028310198336839676, + -0.008835484273731709, + -0.013822981156408787, + 0.0005311025306582451, + -0.0032095196656882763, + 0.007919296622276306, + 0.010782383382320404, + -0.015334689989686012, + -0.026523631066083908, + -0.014235265552997589, + 0.033692799508571625, + 0.00753564340993762, + 0.022595476359128952, + -0.012975507415831089, + -0.02079745940864086, + -0.04509933665394783, + 0.0011216140119358897, + -0.015941664576530457, + -0.007925023324787617, + 0.03804469108581543, + 0.0005307446117512882, + 0.01977819949388504, + 0.03754078596830368, + -0.009660053066909313, + 0.007277965545654297, + 0.004598116502165794, + 0.008297224529087543, + 0.016239425167441368, + 0.016663162037730217, + -0.005600196775048971, + -0.0029461157973855734, + -0.04869537055492401, + 0.013891695067286491, + 0.012872436083853245, + -0.0010486053070053458, + 0.02863086387515068, + -0.022022860124707222, + -0.006287337746471167, + -0.016812043264508247, + -0.013147292658686638, + -0.03609779104590416, + 0.016124902293086052, + -0.004635336808860302, + 0.00981466006487608, + 0.018381014466285706, + -0.001732167205773294, + -0.010267027653753757, + 0.0057290359400212765, + 0.0014816471375524998, + 0.0230192132294178, + -0.007638714276254177, + -0.004540855064988136, + -0.024782875552773476, + 0.004463551566004753, + -0.010816739872097969, + -0.04223624989390373, + 0.029295099899172783, + 0.018186325207352638, + -0.03034871444106102, + -0.007455476559698582, + 0.009522625245153904, + -0.06596551090478897, + 0.020167579874396324, + 0.007816225290298462, + 0.021232647821307182, + 0.00020166864851489663, + -0.010112420655786991, + -0.031012950465083122, + -0.0057576666586101055, + -0.0017464826814830303, + 0.014338335953652859, + -0.019033797085285187, + -0.017567897215485573, + -0.013067126274108887, + -0.0050304424948990345, + -0.003982553258538246, + 0.015369047410786152, + -0.0015560874016955495, + -0.014910953119397163, + -0.039098307490348816, + 0.012998411431908607, + 0.011612677946686745, + -0.0037134229205548763, + 0.005041894968599081, + 0.0016176437493413687, + -0.014601740054786205, + 0.020682934671640396, + 0.007638714276254177, + -0.00751846469938755, + 0.01833520457148552, + -0.0060124811716377735, + -0.00591513654217124, + 0.002777193672955036, + -0.02345440350472927, + -0.008308676071465015, + 0.002811550861224532, + -0.018289394676685333, + 0.026454918086528778, + -0.00433184951543808, + 0.015002571977674961, + -0.0008811147999949753, + 0.018186325207352638, + -0.01596456952393055, + -0.015666808933019638, + 0.007867760956287384, + 0.002545283641666174, + 0.008972912095487118, + -0.026729773730039597, + 0.025836490094661713, + 0.02114102989435196, + 0.00030796072678640485, + 0.017854206264019012, + -0.020453888922929764, + 0.0037477798759937286, + 0.011097322218120098, + -0.03602907806634903, + -0.010547609999775887, + 0.01053615752607584, + -0.025859395042061806, + 0.005402643699198961, + -0.019732391461730003, + -0.002462254138663411, + -0.005585881415754557, + -0.006287337746471167, + 0.029020242393016815, + -0.0022317757830023766, + -0.01956060528755188, + 0.0205798652023077, + 0.010936989448964596, + 0.014636097475886345, + 0.023420045152306557, + -0.0022532488219439983, + 0.013433600775897503, + 0.007862035185098648, + 0.03667040914297104, + 0.007060370873659849, + -0.021186837926506996, + 0.004357617348432541, + -0.034105084836483, + -0.021896883845329285, + -0.002462254138663411, + -0.009849016554653645, + -0.034059274941682816, + 0.012425794266164303, + 0.027073344215750694, + -0.01998434215784073, + -0.011750106699764729, + 0.008955733850598335, + -0.02567615732550621, + 0.00044628357863985, + -0.03864021226763725, + -0.03776983544230461, + 0.004578074906021357, + -0.013319077901542187, + -0.02372925914824009, + 0.0025109266862273216, + 0.020740197971463203, + -0.007438298314809799, + -0.01243724673986435, + 0.009396648965775967, + -0.025057731196284294, + -0.022057216614484787, + 0.022549668326973915, + -0.015151453204452991, + -0.0066137295216321945, + 0.009688683785498142, + -0.007432572077959776, + 0.022274810820817947, + -0.028241483494639397, + -0.024851588532328606, + 0.01268919836729765, + -0.02187397889792919, + 0.0003317601222079247, + -0.0031894780695438385, + -0.029363812878727913, + 0.020316461101174355, + -0.03144814074039459, + 0.0125174131244421, + -0.009614244103431702, + -0.038021788001060486, + 0.0031236272770911455, + -0.0007279397104866803, + 0.02934090793132782, + 0.0019998657517135143, + -0.00460097985342145, + 0.019446082413196564, + 0.0163883063942194, + -0.02382087893784046, + -0.007524190936237574, + 0.003859440330415964, + -0.023637641221284866, + 0.019365916028618813, + -0.0031264901626855135, + 0.021461695432662964, + -0.008738139644265175, + 0.03724302724003792, + -0.009190507233142853, + 0.0039023866411298513, + -0.02466835081577301, + 0.007214977405965328, + -0.0028559286147356033, + -0.015357594937086105, + 0.006459122523665428, + 0.010215491987764835, + -0.024347685277462006, + -0.003238150617107749, + -0.0009254926699213684, + -0.0007379605085588992, + -0.008331581018865108, + -0.004154338035732508, + -0.03623522073030472, + 0.028928624466061592, + 0.014888049103319645, + 0.004698324482887983, + -0.03504417836666107, + 0.007358131930232048, + 0.0017751135164871812, + 0.010633502155542374, + 0.02258402481675148, + -0.047137852758169174, + -0.010782383382320404, + 0.01647992432117462, + 0.01964077167212963, + -0.04452671855688095, + 0.005359697621315718, + -0.02048824541270733, + 0.00740966759622097, + 0.010490348562598228, + 0.010627776384353638, + 0.002712774323299527, + 0.0025581675581634045, + -0.020763101056218147, + 0.014865144155919552, + -0.005834969691932201, + -0.004051267169415951, + -0.0004563043767120689, + -0.018163420259952545, + -0.01193334348499775, + 0.009242042899131775, + 0.0228588804602623, + -0.01366264745593071, + -0.013319077901542187, + -0.019320106133818626, + -0.015792783349752426, + -0.0071405372582376, + -0.015861498191952705, + -0.004629610572010279, + 0.01039300300180912, + -0.013284720480442047, + 0.0010901200585067272, + -0.007134811021387577, + -0.007043192163109779, + -0.009116066619753838, + 0.037655312567949295, + 0.0038021786604076624, + -0.01520871464163065, + -0.029730288311839104, + 0.012391437776386738, + -0.0024493704549968243, + -0.010232670232653618, + -0.022641286253929138, + -0.04464124143123627, + -0.02947833761572838, + -0.0027657414320856333, + 0.027875008061528206, + 0.0044234683737158775, + 0.036418456584215164, + -0.011114501394331455, + 0.012425794266164303, + -0.01949189230799675, + 0.004383385181427002, + -0.010089516639709473, + 0.00025266737793572247, + -0.003936743829399347, + 0.041091013699769974, + -0.010347194038331509, + 0.027645962312817574, + -0.017075447365641594, + -0.009482542052865028, + 0.014155099168419838, + 0.0189078226685524, + 0.014395598322153091, + 0.026546536013484, + -0.004956002347171307, + 0.007638714276254177, + 0.019148321822285652, + 0.020110318437218666, + 0.020224841311573982, + 0.042694341391325, + -0.010450265370309353, + -0.0030663653742522, + 0.016090545803308487, + -0.006298789754509926, + 0.0039453329518437386, + 0.004887288436293602, + -0.002707048086449504, + 0.008377390913665295, + 0.01193334348499775, + -0.019663676619529724, + -0.020247746258974075, + -0.0015847182366997004, + 0.009488267824053764, + -0.03726593032479286, + -0.0022203235421329737, + 0.03669331595301628, + 0.011807368136942387, + -0.004369069822132587, + 0.013078578747808933, + -0.011710022576153278, + -0.007237882353365421, + -0.006711074151098728, + -0.019045250490307808, + -0.014590287581086159, + -0.021679289638996124, + -0.008394569158554077, + -0.014544478617608547, + 0.001316303969360888, + -0.008715234696865082, + -0.013170196674764156, + -0.013433600775897503, + -0.016938019543886185, + 0.00294038956053555, + -0.0037220122758299112, + -0.01079383585602045, + -0.021530408412218094, + -0.008967186324298382, + -0.022618381306529045, + 0.0002177735004806891, + -0.022824523970484734, + -0.008795401081442833, + 0.012242557480931282, + -0.025767777115106583, + 0.023213904350996017, + -0.01985836587846279, + -0.0054083699360489845, + 0.007169167976826429, + 0.011612677946686745, + -0.011492428369820118, + -0.002678417135030031, + -0.003326906356960535, + -0.050802603363990784, + 0.000983470119535923, + 0.006396134849637747, + -0.0029103271663188934, + -0.0317688062787056, + -0.0051277875900268555, + -0.0023377100005745888, + 0.003759232349693775, + -0.0017980182310566306, + -0.004663967527449131, + -0.0025295368395745754, + -0.032684992998838425, + 0.013204554095864296, + -0.03488384187221527, + -0.025721967220306396, + -0.02913476713001728, + -0.04026644676923752, + -0.00034052832052111626, + -0.013765718787908554, + 0.01920558325946331, + -0.008285772055387497, + 0.008829758502542973, + 0.017441920936107635, + -0.02344295009970665, + -0.026363298296928406, + -0.004741271026432514, + -0.005666047800332308, + 0.0294096227735281, + 0.012322723865509033, + -0.026202965527772903, + -0.024782875552773476, + -0.024714160710573196, + 0.002360614715144038, + -0.018014539033174515, + -0.018713131546974182, + -0.0003560963668860495, + 0.032982755452394485, + -0.016777684912085533, + 0.01143516693264246, + 0.007650166749954224, + -0.0018295121844857931, + 0.019217034801840782, + -0.019228488206863403, + -0.013216006569564342, + -0.0137771712616086, + -0.011263381689786911, + -0.045488715171813965, + -0.0014988257316872478, + -0.009350840002298355, + 0.011240476742386818, + -0.020018698647618294, + 0.0074726552702486515, + 0.031608473509550095, + 0.0021244101226329803, + -0.01626233011484146, + 0.01168711856007576, + 0.003928154241293669, + -0.029684478417038918, + 0.01992708072066307, + 0.005199364852160215, + -0.011022882536053658, + -0.008119712583720684, + -0.024210257455706596, + -0.002486590528860688, + -0.003218109020963311, + -0.00888701993972063, + 0.016892209649086, + -0.0037821370642632246, + 0.004807122051715851, + -0.020591316744685173, + -0.00838311668485403, + 0.03545645996928215, + 0.008572080172598362, + -0.0007175609935075045, + -0.0032868231646716595, + -0.022068670019507408, + -0.007896391674876213, + 0.026867201551795006, + -0.006659538950771093, + -0.005697541870176792, + -0.008789675310254097, + -0.0021143893245607615, + 0.030692284926772118, + 0.006436218041926622, + 0.019686581566929817, + 0.014349788427352905, + -0.004354754462838173, + 0.0005983850569464266, + -0.012677745893597603, + 0.014395598322153091, + -0.004795669578015804, + -0.037082694470882416, + 0.0003355179214850068, + -0.010971346870064735, + -0.0005622385651804507, + -0.005568702705204487, + -0.007255060598254204, + -0.006373230367898941, + 0.023282617330551147, + 0.015357594937086105, + 0.006768336053937674, + -0.018873464316129684, + 0.006333146709948778, + 0.032547567039728165, + -0.005419822409749031, + -0.002300489926710725, + -0.03699107468128204, + -0.02480578050017357, + 0.008875567466020584, + -0.013147292658686638, + 0.027210772037506104, + -0.008801127783954144, + 0.03190623223781586, + -0.0210837684571743, + -0.01183027308434248, + 0.010730847716331482, + 0.00938519649207592, + 0.004243094008415937, + 0.0329369455575943, + 0.013135840184986591, + -0.012128033675253391, + -0.003850851207971573, + -0.03366989642381668, + 0.03403637185692787, + -0.0018882054137066007, + -0.012448699213564396, + 0.00953407771885395, + 0.031173283234238625, + 0.024004114791750908, + 0.0027456998359411955, + 0.014762072823941708, + -0.02071729302406311, + 0.018381014466285706, + -0.03417379781603813, + -0.018541347235441208, + 0.004729818552732468, + -0.013124387711286545, + -0.03978544846177101, + -0.0022260495461523533, + 0.004497908521443605, + -0.006545015145093203, + -0.0015031202929094434, + 0.01618216373026371, + 0.006424765568226576, + -0.020305007696151733, + 0.0007565705454908311, + -0.03350956365466118, + 0.008795401081442833, + 0.002353457035496831, + -0.005938041023910046, + -0.004366206470876932, + 0.022641286253929138, + -0.004363343585282564, + -0.03492965176701546, + -0.010381550528109074, + 0.00838311668485403, + -0.013284720480442047, + -0.013227459043264389, + -0.006058290600776672, + -0.00891565065830946, + 0.011160310357809067, + -0.0001898584159789607, + 0.014807882718741894, + -0.010908358730375767, + -0.009556981734931469, + 0.015346142463386059, + -0.009081710129976273, + -0.005007538013160229, + 0.005920862313359976, + 0.012059319764375687, + 0.022606929764151573, + 0.017945824190974236, + 0.007970832288265228, + 0.02661525085568428, + -0.003670476609840989, + -0.008320128545165062, + 0.027943722903728485, + 0.008869841694831848, + 0.015151453204452991, + -0.00020113181381020695, + 0.008726687170565128, + -0.012597579509019852, + 0.004314671270549297, + -0.01698382757604122, + -0.0035301854368299246, + 0.010805287398397923, + -0.018610060214996338, + 0.004712640307843685, + -0.0010958462953567505, + -0.006745431572198868, + -0.016949471086263657, + -0.015105643309652805, + -0.017384659498929977, + -0.003633256535977125, + -0.015781331807374954, + 0.026798488572239876, + -0.017006732523441315, + 0.0004885140806436539, + -0.027600152418017387, + -0.0027213634457439184, + 0.018369561061263084, + -0.016491377726197243, + -0.004371932707726955, + -0.01646847277879715, + 0.005966671742498875, + -0.00728369178250432, + -0.0010843939380720258, + 0.019320106133818626, + 0.021095219999551773, + -0.0026984589640051126, + 0.012059319764375687, + -0.011475250124931335, + -0.011274834163486958, + 0.007678797468543053, + -0.0015489297220483422, + -0.00917332898825407, + 0.013548124581575394, + 0.02510354109108448, + 0.01920558325946331, + -0.005179323256015778, + -0.01999579556286335, + -0.024118639528751373, + -0.0055314828641712666, + -0.01934301108121872, + 0.0048729730769991875, + -0.009871921502053738, + 0.031310711055994034, + -0.010347194038331509, + 0.0045208134688436985, + 0.0030005143489688635, + 0.01710980385541916, + 0.002516652923077345, + -0.010988525114953518, + 0.02624877542257309, + -0.03586874529719353, + 0.008297224529087543, + -0.0046496521681547165, + 0.010501801036298275, + 0.0065163844265043736, + 0.014853691682219505, + 0.009081710129976273, + -0.01863296516239643, + -0.006098373793065548, + -0.024256067350506783, + -0.008176974952220917, + -0.018518442288041115, + -0.01567826047539711, + 0.02883700467646122, + -0.027852103114128113, + -0.006098373793065548, + -0.027737580239772797, + 0.014235265552997589, + -0.0011931912740692496, + 0.013410696759819984, + 0.01366264745593071, + -0.0011395083274692297, + -0.06005609780550003, + -0.036281030625104904, + -0.012700650840997696, + -0.03710559755563736, + -7.37692098482512e-5, + 0.007455476559698582, + -0.008056724444031715, + 0.023213904350996017, + -0.009001543745398521, + -0.014349788427352905, + 0.012609031982719898, + 0.018896369263529778, + -0.005356834270060062, + -0.02711915411055088, + 0.023546021431684494, + 0.011251929216086864, + -0.010135325603187084, + 0.005511441268026829, + 0.005044758319854736, + -0.00751846469938755, + 0.015277428552508354, + 0.022194644436240196, + -0.03243304044008255, + -0.00445782532915473, + 0.003112174803391099, + 0.018793297931551933, + -0.013216006569564342, + -0.01154396403580904, + -0.008629342541098595, + -0.013422148302197456, + -0.012345627881586552, + -0.008955733850598335, + 0.013903147540986538, + -0.010604871436953545, + -0.001235421746969223, + 0.020969243720173836, + -0.008955733850598335, + -0.017201421782374382, + -0.01646847277879715, + -0.016445567831397057, + -0.011864629574120045, + -0.0022303443402051926, + -0.021816717460751534, + -0.004761312622576952, + -0.009568434208631516, + 1.5478561181225814e-5, + 0.0041715167462825775, + -0.021037958562374115, + 0.017029637470841408, + 0.019675130024552345, + 0.007684523705393076, + 0.006172813940793276, + 0.027279486879706383, + 0.009574160911142826, + 0.0020070234313607216, + -1.946003976627253e-5, + 0.0056059230118989944, + -0.0063846823759377, + -0.024118639528751373, + -0.001443711225874722, + -0.008039546199142933, + 0.003074954729527235, + -0.004409153014421463, + -0.015495022758841515, + -0.010782383382320404, + -0.028607958927750587, + -0.0006789093604311347, + 0.021415885537862778, + 0.020305007696151733, + 0.0034757868852466345, + 0.006338872946798801, + -0.03692236170172691, + 0.005471358075737953, + 0.029501240700483322, + 0.028172768652439117, + 0.03767821565270424, + -0.005809202324599028, + -0.004864383488893509, + 0.03353246673941612, + -0.03105876035988331, + 0.01976674795150757, + -0.0070947278290987015, + -0.009431006386876106, + -0.006035386119037867, + 0.011269107460975647, + -0.014052027836441994, + 0.0034958284813910723, + 0.0012139485916122794, + 0.009877648204565048, + -0.008606437593698502, + 0.011080143973231316, + 0.01280372217297554, + 0.001776545075699687, + -0.025195159018039703, + 0.00452940259128809, + 0.02093488723039627, + 0.016422662883996964, + 0.002469412051141262, + -0.016743328422307968, + -0.02732529491186142, + -0.019675130024552345, + 0.0225153099745512, + -0.008228509686887264, + 0.00787921342998743, + 0.003375578671693802, + -0.019010894000530243, + 0.0061327307485044, + -0.0065908245742321014, + 0.04106811061501503, + 0.010604871436953545, + 0.008062451146543026, + -0.0013463663635775447, + 0.020247746258974075, + 0.010255575180053711, + 0.009144697338342667, + -0.00017724293866194785, + 0.006980204489082098, + 0.029249290004372597, + 0.010415907949209213, + -0.010501801036298275, + -0.00981466006487608, + 0.03754078596830368, + -0.002117252442985773, + -0.019457533955574036, + 0.009997897781431675, + 0.0009884805185720325, + 0.030325809493660927, + -0.007272239308804274, + -0.013754266314208508, + -0.004976043943315744, + 0.009001543745398521, + 0.010994251817464828, + 0.017796944826841354, + 0.003092133207246661, + -0.006252980325371027, + -0.0041715167462825775, + -0.006756883580237627, + -0.003401346504688263, + 0.025928109884262085, + -0.0155408326536417, + -0.008577806875109673, + -0.0022861743345856667, + 0.014647549949586391, + 0.007925023324787617, + -0.009660053066909313, + -0.0052251326851546764, + -0.01777403987944126, + -0.004005457740277052, + 0.014235265552997589, + 0.01243724673986435, + -0.0010078063933178782, + -0.0047498601488769054, + -0.004744133912026882, + -0.013628290966153145, + 0.00627588527277112, + -0.0006148478132672608, + -0.011240476742386818, + -0.010221217758953571, + 0.004532265476882458, + 0.0007089717546477914, + -0.012700650840997696, + -0.01691511459648609, + -0.004738407675176859, + 0.0245309229940176, + 0.005614512134343386, + 0.01812906190752983, + 0.010484621860086918, + -0.0025653252378106117, + -0.003968237433582544, + 0.0006921511376276612, + 0.008102534338831902, + 0.013433600775897503, + 0.0009075983543880284, + -0.0145330261439085, + 0.008680877275764942, + -0.021530408412218094, + -0.015082738362252712, + -0.024027019739151, + 0.01977819949388504, + 0.004864383488893509, + 0.0045523070730268955, + -0.006321694701910019, + 0.012666293419897556, + 0.004363343585282564, + 0.013971861451864243, + -0.01611344888806343, + 0.01631959155201912, + 0.00849191378802061, + -0.010278480127453804, + -0.00849191378802061, + -0.012471604160964489, + 0.016079092398285866, + 0.007873487658798695, + -0.02049969881772995, + -0.01842682436108589, + -0.006917216349393129, + -0.010845370590686798, + 0.024553827941417694, + -0.01712125539779663, + -0.008211331441998482, + -0.0028888541273772717, + -0.0022203235421329737, + 0.0263862032443285, + 0.006052564363926649, + -0.008509092964231968, + 0.0044206054881215096, + -0.01280372217297554, + -0.004947413224726915, + 0.015449213795363903, + 0.02459963783621788, + -0.008457557298243046, + -0.01090263295918703, + -0.01976674795150757, + -0.022480953484773636, + -0.024485114961862564, + 0.006733979098498821, + 0.024324782192707062, + 0.00939092319458723, + -0.0038451249711215496, + 0.015334689989686012, + 0.0032152459025382996, + 0.03946478292346001, + -0.010639228858053684, + 0.00016623795090708882, + 0.015197262167930603, + 0.017178518697619438, + -0.012070772238075733, + -0.01885056123137474, + -0.00813116505742073, + -0.0005371865699999034, + 0.011841724626719952, + -0.005875053349882364, + -0.011584047228097916, + -0.019182678312063217, + -0.009763124398887157, + -0.02624877542257309, + -0.00011577605619095266, + -0.022847428917884827, + 0.0092019597068429, + -0.015483571216464043, + 0.021129576489329338, + -0.005288120359182358, + 0.009740219451487064, + -0.02819567359983921, + -0.0010478895856067538, + 0.0038308093789964914, + -0.008308676071465015, + 0.008388842456042767, + 0.02172509953379631, + -0.0184039194136858, + -0.017178518697619438, + 0.014521573670208454, + -0.013513767160475254, + -0.0022375020198524, + 0.0005393339088186622, + 0.005497125908732414, + 0.0253783967345953, + -0.01712125539779663, + -0.01639975793659687, + -0.01456738356500864, + 0.009098888374865055, + 0.013742814771831036, + -0.0009362292475998402, + -0.009934909641742706, + 0.005010400898754597, + -0.008783948607742786, + -0.00777041632682085, + -0.004477866925299168, + -0.004051267169415951, + -0.0213471706956625, + 0.0021802401170134544, + -0.007896391674876213, + -0.010576240718364716, + 0.01445285975933075, + -0.029661573469638824, + -0.0022589750587940216, + 0.015632450580596924, + -0.011698571033775806, + 0.015472118742763996, + 0.023843782022595406, + 0.02748562954366207, + -0.01985836587846279, + -0.012311271391808987, + 0.008652246557176113, + -0.007701702415943146, + -0.004500771872699261, + 0.004832889884710312, + -0.006825597956776619, + -0.003965374547988176, + -0.007151989731937647, + -0.008280045352876186, + -0.0034156618639826775, + 0.012643389403820038, + -0.005219406448304653, + 0.002532399957999587, + -0.018587157130241394, + 0.009831838309764862, + -0.020259199663996696, + -0.0075986310839653015, + -0.005571566056460142, + -0.013181649148464203, + -0.005522893276065588, + -0.016640257090330124, + -0.0031694364733994007, + 0.002482295734807849, + 0.012735008262097836, + 0.015792783349752426, + -0.00640186108648777, + -0.009969266131520271, + -0.009900552220642567, + -0.03948768600821495, + 2.863086228899192e-5, + -0.004197284579277039, + 0.014189455658197403, + -0.012849531136453152, + 0.018804751336574554, + -0.019148321822285652, + -0.020889077335596085, + -0.013731362298130989, + -0.007673071231693029, + 0.016663162037730217, + -0.017808396369218826, + 0.003175162710249424, + 0.0029432526789605618, + -0.0014036280335858464, + -0.020385174080729485, + -0.008348759263753891, + 0.02913476713001728, + -0.013067126274108887, + 0.022057216614484787, + -0.00030366607825271785, + -0.0021845349110662937, + 0.007816225290298462, + -0.007111906539648771, + 0.01913686841726303, + 0.015162904746830463, + -0.007077549584209919, + 0.019400272518396378, + 0.020476793870329857, + -0.005039032083004713, + 0.014555931091308594, + -0.004119981080293655, + 0.01748773083090782, + 0.013090030290186405, + -0.019594963639974594, + -0.02222900278866291, + -0.0015589505201205611, + -0.006922942586243153, + 0.008509092964231968, + 0.0195720586925745, + -0.02137007564306259, + -0.007982284761965275, + -0.004054130055010319, + 0.005270942114293575, + 0.02120974287390709, + 0.008835484273731709, + 0.0020370858255773783, + -0.01344505324959755, + 0.0027557206340134144, + 0.014647549949586391, + 0.018953630700707436, + 0.018541347235441208, + 0.009974992834031582, + 0.013937504030764103, + 0.00899581704288721, + -0.0014480059035122395, + 0.014544478617608547, + -0.03575422242283821, + -0.012860983610153198, + -0.0057318988256156445, + -0.027989530935883522, + -0.0013499452034011483, + -0.0010715100215747952, + -0.00433184951543808, + -0.023889591917395592, + 0.009711588732898235, + 0.004956002347171307, + 0.0005908694583922625, + 0.0032352874986827374, + 0.0018595745787024498, + -0.014487217180430889, + 0.011750106699764729, + -0.02229771576821804, + 0.03692236170172691, + 0.016502829268574715, + 0.004180105868726969, + -0.00048636680003255606, + 0.006373230367898941, + 0.013674099929630756, + 0.008205605670809746, + -0.022961951792240143, + -0.0020170442294329405, + -0.02359183132648468, + 0.02043098397552967, + -0.019365916028618813, + 0.004592390265315771, + 0.009161876514554024, + 0.024210257455706596, + 0.032249804586172104, + 0.009946362115442753, + -0.0006738989613950253, + 0.023099379613995552, + -0.025561634451150894, + -0.019904175773262978, + 0.008594985119998455, + -0.005708994343876839, + 0.006441944278776646, + -0.0017393248854205012, + 0.017293041571974754, + -0.0021959871519356966, + -0.013353434391319752, + -0.018667323514819145, + -1.139642517955508e-5, + 0.0016920840134844184, + 0.005402643699198961, + 0.016147807240486145, + 0.008927103132009506, + 0.011549689806997776, + 0.004414879251271486, + -0.01928574964404106, + 0.012231105007231236, + -0.0039711007848382, + 0.0012948308140039444, + -0.028012435883283615, + 0.0003822220314759761, + -0.02611134760081768, + 0.009717314504086971, + -0.001453016302548349, + -0.0016634531784802675, + -0.03252466022968292, + -0.01140080951154232, + -0.01003225427120924, + -0.009877648204565048, + -0.008148343302309513, + -0.03825083374977112, + -0.0031780258286744356, + 0.010221217758953571, + 0.017063993960618973, + 0.021232647821307182, + 0.016434116289019585, + -0.020511150360107422, + 0.017235780134797096, + -0.0008553470252081752, + 0.007146263495087624, + 0.004618158098310232, + -0.014865144155919552, + -0.021095219999551773, + 0.014407050795853138, + -0.024691255763173103, + 0.002399266231805086, + 0.008113986812531948, + 0.012357080355286598, + 0.010375824756920338, + 0.010685037821531296, + -0.009345113299787045, + -0.0011373610468581319, + 6.625360401812941e-5, + -0.009591339156031609, + 0.0042688618414103985, + 0.008033820427954197, + 0.0026011138688772917, + 0.011160310357809067, + -0.011784463189542294, + -0.0037563692312687635, + -0.004162927623838186, + -0.029753193259239197, + -0.0007916433387435973, + 0.010015076026320457, + 0.022183192893862724, + 0.03458608314394951, + 0.0031808889470994473, + -0.0006384682492353022, + 0.009075983427464962, + -0.0020514014177024364, + -0.03048614226281643, + -0.001713557168841362, + 0.0235231164842844, + -0.023912496864795685, + 0.010954168625175953, + 0.014693358913064003, + 0.01690366119146347, + 0.002787214471027255, + -0.01143516693264246, + 0.008474735543131828, + -0.021232647821307182, + 0.007592904847115278, + 0.00651065818965435, + 0.0032238352578133345, + -0.011818820610642433, + 0.010599145665764809, + 0.00953407771885395, + 0.037861455231904984, + -0.022767262533307076, + 0.0007787594804540277, + 0.01639975793659687, + -0.015277428552508354, + 0.01183027308434248, + 0.0015374773647636175, + 0.015918759629130363, + -0.007621535565704107, + 0.006831323727965355, + -0.001767955836839974, + -0.0045208134688436985, + -0.007352405693382025, + -8.065850852290168e-5, + -0.00559160765260458, + -0.009648600593209267, + 0.014807882718741894, + 0.014155099168419838, + 0.013341981917619705, + -0.003905249759554863, + -0.0006681727827526629, + 0.007277965545654297, + 0.02020193636417389, + -0.017315946519374847, + -0.007260786835104227, + 0.006648086477071047, + -0.012631936930119991, + -0.02611134760081768, + 0.02624877542257309, + 0.03421960771083832, + -0.003928154241293669, + -0.01481933519244194, + -0.009556981734931469, + 0.017934372648596764, + 0.0028272976633161306, + -0.011125953868031502, + 0.0142810745164752, + -0.0008911355980671942, + -0.007621535565704107, + 0.003661887487396598, + -0.033257611095905304, + 0.020694388076663017, + 0.008337307721376419, + -0.006155635695904493, + -0.0027113426476716995, + -0.011692844331264496, + 0.01467045396566391, + 0.018816202878952026, + -0.0052823941223323345, + 0.022698547691106796, + -0.021977050229907036, + -0.012254009023308754, + 0.03763240575790405, + -0.014155099168419838, + 0.020053057000041008, + 0.0115096066147089, + 0.0041428860276937485, + 0.0055343457497656345, + -0.005276667885482311, + 0.006029659882187843, + 0.0036046255845576525, + 0.035639699548482895, + 0.004663967527449131, + 0.006957299541682005, + 0.009098888374865055, + 0.012586127035319805, + -0.012448699213564396, + 0.03156266361474991, + -0.013399244286119938, + -0.00849191378802061, + -0.0304174292832613, + 0.0070947278290987015, + 0.009602791629731655, + -0.002208871068432927, + 0.023431498557329178, + 0.01575842685997486, + 0.01003225427120924, + -0.02279016748070717, + 0.027577247470617294, + 0.012952602468430996, + -0.005814928095787764, + 0.002586798509582877, + 0.020018698647618294, + 0.009854743257164955, + -0.012860983610153198, + -0.013353434391319752, + 0.019949985668063164, + -0.002191692590713501, + 0.017659517005085945, + -0.0047269556671381, + -0.003120764158666134, + -0.008434652350842953, + 0.007816225290298462, + -0.004251683130860329, + -0.0006774778012186289, + 0.0250348262488842, + -0.006774062290787697, + 0.014750620350241661, + 0.01912541687488556, + 0.028607958927750587, + -0.0003408862103242427, + -0.0007823383202776313, + -0.009843290783464909, + 0.01733885146677494, + -0.0068656811490654945, + 0.021816717460751534, + -0.019652225077152252, + 0.0010493211448192596, + 0.016502829268574715, + -0.01631959155201912, + -0.00024425704032182693, + 0.0035387747921049595, + -0.014246717095375061, + -0.0004477151087485254, + 0.008783948607742786, + -0.0263862032443285, + 0.001055047265253961, + 0.023259712383151054, + 0.0016305276658385992, + 0.026592345908284187, + 0.01115458458662033, + -0.007781868800520897, + -0.011377904564142227, + 0.0235231164842844, + -0.01057051494717598, + -0.0006280895322561264, + -0.03149395063519478, + 0.0006710358429700136, + -0.028035340830683708, + 0.005021853372454643, + 0.010730847716331482, + -0.015643903985619545, + 0.014040575362741947, + 0.0008245688513852656, + -0.012483056634664536, + -0.02430187724530697, + -0.0013234616490080953, + -0.01690366119146347, + 0.030257096514105797, + 0.012460151687264442, + -0.004724092315882444, + -0.004629610572010279, + -0.02029355615377426, + 0.028493434190750122, + 0.009871921502053738, + -0.012952602468430996, + -0.012357080355286598, + 0.03028000146150589, + -0.006848502438515425, + -0.019079606980085373, + -0.005809202324599028, + 0.014624645002186298, + 0.02876829169690609, + 0.028859909623861313, + -0.013536672107875347, + 0.021175386384129524, + 0.006745431572198868, + 0.006069743074476719, + -0.024416400119662285, + 0.017865657806396484, + -0.01848408579826355, + 0.0305777620524168, + 0.01140653621405363, + -0.001263336860574782, + 0.014865144155919552, + -0.011498155072331429, + -0.017201421782374382, + 0.011526785790920258, + 0.004434920847415924, + 0.01783130131661892, + -0.007426845841109753, + 0.019331559538841248, + 0.020694388076663017, + -0.005746214184910059, + -0.006728252861648798, + -0.0007200661930255592, + 0.02480578050017357, + -0.020442435517907143, + -0.0037764108274132013, + 0.015128548257052898, + 0.0012261166702955961, + 0.0013671236811205745, + 0.00651065818965435, + -0.02014467492699623, + 0.015277428552508354, + -0.00676260981708765, + -0.01581568829715252, + 0.019594963639974594, + 0.014120741747319698, + 0.004921645391732454, + 0.006539289373904467, + 0.006470574997365475, + -0.004509360995143652, + 0.009305030107498169, + -0.002470843493938446, + -0.03662459924817085, + 0.010312836617231369, + 0.019102511927485466, + 0.0200759619474411, + -0.0007816225406713784, + -0.023889591917395592, + -0.00703174015507102, + -0.010587693192064762, + 0.020556960254907608, + -0.0023935402277857065, + -0.012139486148953438, + -0.030234191566705704, + 0.0017565034795552492, + 0.009305030107498169, + 0.008211331441998482, + 0.01891927421092987, + -0.00039260071935132146, + 0.022240454331040382, + -0.0158844031393528, + 0.0017164202872663736, + 0.0030778178479522467, + -0.004214463289827108, + 0.00395392207428813, + 0.0006248686113394797, + 0.01191043946892023, + 0.012368532828986645, + 0.014727716334164143, + -0.001453732023946941, + 0.0008009484154172242, + 0.007604357320815325, + -0.013387791812419891, + -0.015117095783352852, + -0.0038079048972576857, + 0.0019440356409177184, + -0.015517927706241608, + -0.004558033309876919, + 0.02927219495177269, + -0.01204786729067564, + -0.023099379613995552, + 0.003939606714993715, + -0.018106156960129738, + 0.003905249759554863, + 0.014578835107386112, + 0.0018910685321316123, + 0.00035967520670965314, + 0.01054188422858715, + 0.017957277595996857, + 0.006338872946798801, + 0.025515824556350708, + -0.0092019597068429, + -0.0054055070504546165, + -0.02281307242810726, + 0.0017021048115566373, + 0.00029543472919613123, + 0.013845885172486305, + 0.011750106699764729, + -0.015277428552508354, + 0.005837833043187857, + 0.0029718836303800344, + 0.013250363059341908, + -0.01093126367777586, + 0.02338568866252899, + 0.021816717460751534, + 0.011921891011297703, + 0.0014322589850053191, + -0.001280515338294208, + -0.022400787100195885, + -0.008577806875109673, + -0.00515928165987134, + -0.007558547891676426, + -0.013983313925564289, + -0.010015076026320457, + 0.012574675492942333, + 0.003699107561260462, + -0.0008725255611352623, + -0.01031856331974268, + -0.038296643644571304, + -0.023614736273884773, + 0.024943208321928978, + -0.01431543193757534, + 0.015598094090819359, + 0.011629856191575527, + -0.0004860089102294296, + 0.00033587581128813326, + -0.0020685798954218626, + 0.015666808933019638, + -0.0004176527145318687, + 0.011967700906097889, + -0.0075986310839653015, + -0.0037735477089881897, + -0.013845885172486305, + -0.003407072741538286, + -0.0029461157973855734, + 0.004830026533454657, + 0.004509360995143652, + -0.005588744301348925, + 0.020763101056218147, + -0.02466835081577301, + -0.0026411970611661673, + 0.0060811955481767654, + 0.0009068825747817755, + -0.006482027471065521, + 0.013490863144397736, + 0.0030348715372383595, + -0.008331581018865108, + 0.012379985302686691, + -0.006859954912215471, + -0.013009863905608654, + -0.012746460735797882, + 0.011103048920631409, + -0.015323237515985966, + -0.011515333317220211, + -0.014235265552997589, + -0.03330342099070549, + 0.013456505723297596, + -0.014303979463875294, + -0.0073924888856709, + -0.015265976078808308, + 0.01660590060055256, + 0.0063617778941988945, + 0.032341424375772476, + 0.007839130237698555, + 0.008371664211153984, + 0.017499184235930443, + -0.010518979281187057, + -0.007902118377387524, + -0.006189992651343346, + -0.025195159018039703, + 0.022458048537373543, + -0.0031264901626855135, + -0.013639743439853191, + -0.014132194221019745, + -0.007638714276254177, + -0.012860983610153198, + -0.005167870782315731, + -0.0008481893455609679, + -0.014143646694719791, + -0.0228588804602623, + -0.014750620350241661, + -0.02287033386528492, + 0.008010915480554104, + 0.00261542946100235, + -0.027096249163150787, + 0.014109289273619652, + 0.005399780813604593, + -0.016640257090330124, + -0.006046838127076626, + -0.014326883479952812, + -0.013009863905608654, + -0.0054770843125879765, + 0.005013264250010252, + -0.01355957705527544, + 0.004108529072254896, + 0.02711915411055088, + -0.02221754938364029, + 0.018232133239507675, + -0.02372925914824009, + -0.003427114337682724, + 0.013891695067286491, + 0.0026097032241523266, + 0.01710980385541916, + -1.0837228728632908e-5, + 0.02473706565797329, + 0.009860469028353691, + 0.01118321530520916, + -0.02171364612877369, + 0.0019640771206468344, + -0.006315968465059996, + -0.013364886865019798, + -0.0155408326536417, + 0.022022860124707222, + 0.027737580239772797, + -0.007237882353365421, + -0.022114478051662445, + -0.0031035856809467077, + 0.0075012859888374805, + -0.003716286038979888, + -0.025218063965439796, + -0.0019426040817052126, + -0.008469009771943092, + -0.007129084784537554, + 0.0094539113342762, + -0.01811761036515236, + -0.014945310540497303, + -0.0099578145891428, + -0.015140000730752945, + -0.015586641617119312, + 0.006281611509621143, + 0.004412015900015831, + 0.0008066745940595865, + 0.007089001592248678, + 0.00651065818965435, + -0.0330972783267498, + 0.0016849263338372111, + 0.007426845841109753, + -0.0038107677828520536, + -0.010524705052375793, + 0.01732739806175232, + 0.007959379814565182, + 0.012952602468430996, + 0.01970948651432991, + 0.001325608929619193, + 0.008715234696865082, + 0.018358109518885612, + -0.002018475905060768, + -0.014441407285630703, + 0.0005447021685540676, + 0.025630349293351173, + -0.0155408326536417, + -0.01381152868270874, + 0.00941955391317606, + -0.009213412180542946, + 0.005182186141610146, + 0.007678797468543053, + -0.004432057496160269, + -0.008085356093943119, + -0.002651217859238386, + -0.0033068647608160973, + -0.026706868782639503, + -0.02085472084581852, + 0.0016834947746247053, + 0.036716219037771225, + 0.002002728870138526, + 0.026569440960884094, + -0.003490102244541049, + 0.010238396935164928, + 0.0017536403611302376, + -0.018724584951996803, + -0.016239425167441368, + -0.0060811955481767654, + -0.012826627120375633, + 0.0049016037955880165, + 0.015117095783352852, + 0.0029003063682466745, + -0.007432572077959776, + -0.016159258782863617, + -0.0033698526676744223, + 0.010015076026320457, + 0.016079092398285866, + 0.01619361713528633, + 0.023133737966418266, + -0.02107231505215168, + -0.004984633065760136, + -0.009619969874620438, + 0.007684523705393076, + -0.005010400898754597, + 0.0014580267015844584, + -0.017350303009152412, + -0.005691815633326769, + -0.002353457035496831, + -0.027645962312817574, + -0.02099214866757393, + -0.03316599130630493, + -0.0010922674555331469, + -0.011990605853497982, + -0.020602768287062645, + 0.009877648204565048, + -0.006676717195659876, + -0.005457042716443539, + 0.00458380114287138, + -0.00122683250810951, + 0.0033354954794049263, + -0.007610083557665348, + 0.0018710269359871745, + 0.02063712663948536, + -0.01369700487703085, + -0.005193638615310192, + 0.007867760956287384, + -0.0036561612505465746, + -0.016731876879930496, + 0.00604111235588789, + -0.00802236795425415, + -0.015437761321663857, + 0.02216028794646263, + -0.0026397656183689833, + -0.014052027836441994, + 0.003985416144132614, + 0.0060124811716377735, + -0.0033870311453938484, + -0.004572348669171333, + -0.005207953974604607, + -0.013593933545053005, + 0.00014896996435709298, + 0.007048918399959803, + 0.007106180302798748, + 0.013422148302197456, + -0.0027185005601495504, + -0.0047469972632825375, + 0.0034213881008327007, + -0.008852662518620491, + 0.007976558059453964, + -0.010496074333786964, + -0.010444538667798042, + -0.018827656283974648, + -0.022904690355062485, + -0.006419039331376553, + 0.0050562103278934956, + 0.0030405977740883827, + 0.03236432746052742, + 0.01784275472164154, + 0.014487217180430889, + -0.0421675369143486, + -0.002966157393530011, + 0.0016706108581274748, + 0.012334175407886505, + -0.01978965289890766, + -0.005640279967337847, + 0.009745946153998375, + -0.03105876035988331, + -0.026202965527772903, + 0.0018438275437802076, + -0.011675666086375713, + 0.011120227165520191, + 0.008749592117965221, + 0.0003523385676089674, + 0.03314308822154999, + -0.025653254240751266, + 0.006052564363926649, + -0.02330552227795124, + 0.01574697531759739, + 0.0017393248854205012, + -0.004357617348432541, + 0.006774062290787697, + -0.008354485966265202, + 0.002868812531232834, + -0.011498155072331429, + 0.002409287029877305, + 0.011589772999286652, + 0.003312590764835477, + -0.0036733397282660007, + -0.01229981891810894, + -0.0013177355285733938, + 0.0253783967345953, + 0.001236137468367815, + -0.013124387711286545, + -0.00440342677757144, + -0.011549689806997776, + 0.0009240611107088625, + 0.004245956894010305, + 4.2655512515921146e-5, + 0.023213904350996017, + -0.002770035993307829, + -0.007793320808559656, + 0.02100360207259655, + 0.0032610553316771984, + -0.010312836617231369, + -0.009665779769420624, + -0.025699062272906303, + 0.005938041023910046, + -0.006539289373904467, + -0.0011266244109719992, + -0.009207685478031635, + -0.0017822711961343884, + 0.010112420655786991, + -0.004861520603299141, + 0.0028802647721022367, + 0.004626747686415911, + 0.004240230657160282, + 0.005909410305321217, + 0.013112935237586498, + 0.0035702686291188, + 0.007129084784537554, + -0.02114102989435196, + 0.022606929764151573, + 0.024782875552773476, + 0.01165848784148693, + 0.022469501942396164, + 0.022343525663018227, + 0.010513252578675747, + 0.009413828141987324, + -0.01406348031014204, + -0.017602255567908287, + 0.00045129397767595947, + -0.0007551390444859862, + 0.0005819223006255925, + 0.011698571033775806, + -0.023282617330551147, + -0.0052308589220047, + -0.010152503848075867, + -0.016628805547952652, + 0.027210772037506104, + -0.010272753424942493, + 0.006774062290787697, + -0.04186977446079254, + -0.013788623735308647, + -0.00830295030027628, + 0.014659001491963863, + 0.002047106623649597, + 0.0035330485552549362, + -0.0017250095261260867, + -0.008446104824543, + 0.015437761321663857, + -0.015369047410786152, + -0.002797235269099474, + -0.03186042606830597, + 0.008348759263753891, + -0.02014467492699623, + 0.012322723865509033, + 0.013937504030764103, + 0.004303218796849251, + 0.011423714458942413, + 0.015185809694230556, + 0.008812579326331615, + -0.028424721211194992, + -0.005227995570749044, + 0.003936743829399347, + 0.01542630884796381, + 0.009230590425431728, + -0.004160064272582531, + -0.013433600775897503, + -0.0028015300631523132, + -0.019732391461730003, + -0.006504931952804327, + -0.00526807876303792, + -4.2364728869870305e-5, + 0.005932314787060022, + 0.022744357585906982, + 0.00989482644945383, + -0.01898798905313015, + -0.008205605670809746, + -0.012196747586131096, + -0.00899581704288721, + -0.01812906190752983, + 0.0030692284926772118, + -0.0018123335903510451, + 0.014510121196508408, + -0.022068670019507408, + -0.007129084784537554, + 0.029088957235217094, + -0.01481933519244194, + -0.0024565281346440315, + -0.008446104824543, + 0.010009349323809147, + 0.00213013612665236, + -0.01927429623901844, + 0.004950276110321283, + -0.0023219629656523466, + 0.005611649248749018, + -0.0170525424182415, + 0.027462724596261978, + -0.009041626937687397, + 0.02149605192244053, + -0.0007086138357408345, + -0.0006381103885360062, + 0.002777193672955036, + -0.002480864292010665, + 0.022332074120640755, + -0.0071405372582376, + -0.004592390265315771, + -0.029592860490083694, + -0.008818306028842926, + 0.012024962343275547, + 0.02281307242810726, + -0.007873487658798695, + -0.018529893830418587, + -0.008909924887120724, + 0.010576240718364716, + -0.013971861451864243, + -0.017877111211419106, + -0.012975507415831089, + 0.011355000548064709, + -0.00042158947326242924, + 0.007862035185098648, + -0.012849531136453152, + 0.03158556669950485, + -0.010444538667798042, + -0.009597064927220345, + -0.009808933362364769, + -0.0052509005181491375, + -0.007507012225687504, + -0.01391459908336401, + -0.020511150360107422, + -0.0140291228890419, + 0.03683074191212654, + -0.005909410305321217, + -0.018312299624085426, + -0.006573646329343319, + -0.00027825619326904416, + -0.0019368778448551893, + -0.00827431958168745, + 0.00891565065830946, + -0.013032768853008747, + -0.002055695978924632, + -0.004615295212715864, + -0.038731832057237625, + -0.004346164874732494, + -0.0008854094194248319, + -0.030234191566705704, + -0.008440378122031689, + -0.022549668326973915, + -0.008463283069431782, + -0.01143516693264246, + 0.013422148302197456, + 0.0024851588532328606, + -0.011160310357809067, + 0.010879728011786938, + -0.0004230210033711046, + -0.007415393367409706, + 0.020660031586885452, + 0.001832375186495483, + 0.008257141336798668, + -0.017453374341130257, + 0.04106811061501503, + -0.0012733576586470008, + -0.00027915090322494507, + -0.00701456144452095, + -0.010581967420876026, + 0.014624645002186298, + -0.004014046862721443, + 0.008990091271698475, + 0.001235421746969223, + -0.0010364372283220291, + -0.0007068244158290327, + -0.023282617330551147, + 0.0220114067196846, + 0.0003369494806975126, + -0.018163420259952545, + 0.03875473514199257, + -0.016159258782863617, + -0.013296172954142094, + 0.041526202112436295, + -0.014624645002186298, + -0.014991119503974915, + 0.0015947390347719193, + -0.011383631266653538, + -0.01618216373026371, + -0.02379797399044037, + -0.014830786734819412, + -0.0038365356158465147, + -0.009230590425431728, + -0.011704296804964542, + 0.009963540360331535, + 0.0017063994891941547, + -0.012860983610153198, + 0.016812043264508247, + -0.00010432370618218556, + 0.018186325207352638, + 0.019938532263040543, + 0.01039872970432043, + -0.016090545803308487, + 0.0035588163882493973, + -0.0017149887280538678, + 0.0130213163793087, + 0.01204786729067564, + -0.004105665720999241, + 0.0094539113342762, + 0.021816717460751534, + -0.019652225077152252, + 0.011412261985242367, + 0.0076959761790931225, + 0.011898986995220184, + -0.006470574997365475, + -0.008142617531120777, + -0.014578835107386112, + 0.003999731503427029, + 0.001929720165207982, + -0.003982553258538246, + 0.011114501394331455, + 0.0035244591999799013, + -0.037357550114393234, + -0.0003761379630304873, + -0.01140080951154232, + -0.02530968375504017, + 0.012986959889531136, + 0.004028362222015858, + 0.0024121501483023167, + -0.013800076209008694, + -0.004099939484149218, + 0.008846936747431755, + 0.0004584516864269972, + 0.017086898908019066, + -0.016296686604619026, + 0.0018781846156343818, + 0.004563759546726942, + -0.017716778442263603, + 0.0004673988441936672, + 0.013078578747808933, + -0.01740756444633007, + -0.004941686987876892, + 0.00021866821043659002, + 0.0034757868852466345, + -0.010518979281187057, + 0.009322209283709526, + -0.007667344994843006, + 0.006178540177643299, + 0.0023763617500662804, + -0.01344505324959755, + -0.017819849774241447, + 0.006676717195659876, + 0.007833404466509819, + 0.018209228292107582, + 0.024141544476151466, + 0.02157621830701828, + -0.04061001539230347, + -0.03389894217252731, + 0.004626747686415911, + -0.011944795958697796, + -0.0007880644989199936, + -0.001803744351491332, + 0.0071233585476875305, + -0.0284018162637949, + -0.006247254554182291, + 0.003292549168691039, + -0.007959379814565182, + -0.010862549766898155, + -0.014017670415341854, + 0.018713131546974182, + -0.007884940132498741, + 0.0026655334513634443, + 0.025561634451150894, + -0.027783390134572983, + -0.011366453021764755, + 0.005777708254754543, + 0.008824031800031662, + 0.009597064927220345, + 0.00600675493478775, + -0.012540318071842194, + 0.010879728011786938, + -0.012505960650742054, + 0.002028496703132987, + 0.003094996325671673, + 0.012460151687264442, + -0.023500213399529457, + -0.009711588732898235, + 0.008612163364887238, + 0.015804236754775047, + 0.010072337463498116, + -0.02382087893784046, + -0.013983313925564289, + -0.04828308895230293, + 0.0014093542704358697, + -0.01003225427120924, + 0.009144697338342667, + -0.034357037395238876, + 0.00011443398398114368, + -0.0004573780461214483, + 0.020969243720173836, + -0.011647035367786884, + -0.03321180120110512, + 0.0030148299410939217, + 0.009665779769420624, + 0.0042946296744048595, + 0.013238911516964436, + -0.016056187450885773, + -0.010478896088898182, + -0.012712103314697742, + -0.009997897781431675, + -0.03492965176701546, + -0.0158844031393528, + -0.0072207036428153515, + -0.025515824556350708, + -0.030257096514105797, + 0.02826438844203949, + 0.004108529072254896, + -0.0018996577709913254, + 0.00023978347599040717, + -0.0012926834169775248, + -0.036349743604660034, + 0.012334175407886505, + 0.000883977918419987, + 0.010244122706353664, + 0.016273783519864082, + 0.0010979935759678483, + 0.000558659725356847, + -0.0038479880895465612, + 0.019675130024552345, + 0.00963714811950922, + 0.0033956202678382397, + -0.0003319390816614032, + -0.004157201386988163, + -0.0075986310839653015, + -0.004884425085037947, + -0.03389894217252731, + -0.0026841433718800545, + -0.019113963469862938, + 0.0011294875293970108, + 0.0027270896825939417, + -0.01168711856007576, + -0.010639228858053684, + 0.009728766977787018, + -0.006808419246226549, + -0.02048824541270733, + -0.007781868800520897, + -0.0016205068677663803, + -0.00099277519620955, + 0.0011566869216039777, + -0.003092133207246661, + -0.01877039298415184, + -0.0023520253598690033, + -0.002154472516849637, + -0.009499720297753811, + 0.00841747410595417, + 0.0010299952700734138, + 0.001091551617719233, + 0.0255387295037508, + 0.021988503634929657, + 0.0018381014233455062, + -0.002014181111007929, + 0.010776656679809093, + -0.017728229984641075, + -0.023477308452129364, + -0.012975507415831089, + -0.0058865053579211235, + -0.011137405410408974, + 0.0029461157973855734, + 0.016273783519864082, + -0.007449750788509846, + 0.006230075843632221, + 0.012128033675253391, + 0.016502829268574715, + 0.008010915480554104, + 0.006018207408487797, + 0.006298789754509926, + -0.0006663833628408611, + -0.001912541687488556, + -0.004323260392993689, + 0.0002506989985704422, + 0.0023949716705828905, + 0.020969243720173836, + 0.009402375668287277, + 0.0029518420342355967, + -0.007054644636809826, + -0.012002057395875454, + 0.013731362298130989, + -0.005611649248749018, + -0.014178003184497356, + -0.029249290004372597, + 0.013147292658686638, + 0.010599145665764809, + 0.0009390923078171909, + 0.00338989426381886, + 0.015620999038219452, + 0.0015890129143372178, + 0.003409935859963298, + -0.0033927573822438717, + 0.003988279029726982, + 0.008898472413420677, + 0.0037764108274132013, + 0.01885056123137474, + 0.004858657252043486, + 0.007077549584209919, + -0.02382087893784046, + 0.0038565772119909525, + -0.0026941641699522734, + -0.00838311668485403, + 0.015495022758841515, + -0.016422662883996964, + -0.0009612812427803874, + -0.012677745893597603, + -0.002266132738441229, + 0.00010253427899442613, + 0.009843290783464909, + 0.006705348379909992, + 0.02581358700990677, + -0.009808933362364769, + 0.00546563183888793, + 0.002785783028230071, + -0.03252466022968292, + 0.0032725075725466013, + -0.008199878968298435, + -0.029157670214772224, + 0.01727013662457466, + 0.031608473509550095, + 0.028974434360861778, + 0.010719395242631435, + 0.027027534320950508, + -0.011017155833542347, + -0.0009283557301387191, + -0.019949985668063164, + 0.012448699213564396, + -0.00044163106940686703, + -0.007930749095976353, + -0.011807368136942387, + 0.0029718836303800344, + -0.012643389403820038, + -0.022389335557818413, + 0.014132194221019745, + -0.008400294929742813, + 0.00827431958168745, + 0.0029203479643911123, + -0.0026984589640051126, + -0.002678417135030031, + 0.0007075401954352856, + -0.0045523070730268955, + -0.005525756627321243, + -0.005311025306582451, + -0.0076444405131042, + 0.0270504392683506, + -0.004924508277326822, + -0.026958821341395378, + -0.02647782303392887, + 0.012528865598142147, + -0.005740487948060036, + 0.007661618757992983, + -0.00338989426381886, + -0.013433600775897503, + -0.009843290783464909, + -0.004303218796849251, + 0.04159491881728172, + -0.007003108970820904, + 0.0045494441874325275, + -0.004535128828138113, + 0.0010707943001762033, + -0.02732529491186142, + -0.016857853159308434, + 0.004111391957849264, + 0.011750106699764729, + -0.005849285516887903, + -0.019377367570996284, + -0.005061936564743519, + -0.01168139185756445, + -0.03137942776083946, + -0.007478381507098675, + -0.008136891759932041, + -0.012815174646675587, + -0.01682349480688572, + 0.011898986995220184, + 0.017533540725708008, + 0.01934301108121872, + 0.015449213795363903, + 0.003435703692957759, + -0.014338335953652859, + -0.019732391461730003, + 0.0033183170016855, + -0.014475764706730843, + -0.01305567380040884, + 0.023614736273884773, + -0.00791357085108757, + 0.010690764524042606, + -0.0028831278905272484, + -0.022240454331040382, + 0.005233721807599068, + 0.005276667885482311, + 0.003636119654402137, + 0.009820385836064816, + 0.011669939383864403, + -0.01366264745593071, + -0.02530968375504017, + -0.009745946153998375, + -0.007850582711398602, + -0.013593933545053005, + -0.024851588532328606, + 0.008898472413420677, + 0.0045465813018381596, + 0.02193124033510685, + -0.01710980385541916, + 0.0066137295216321945, + 0.004927371628582478, + 0.0019383094040676951, + -0.009121793322265148, + 0.005875053349882364, + -0.021060863509774208, + -0.018747489899396896, + -0.015185809694230556, + -0.015162904746830463, + -0.009608517400920391, + 0.0009040195145644248, + -0.0010249848710373044, + -0.029066052287817, + -0.018300848081707954, + 0.002423602622002363, + -0.006814145483076572, + 0.019892724230885506, + 0.008010915480554104, + -0.0024307603016495705, + -0.009997897781431675, + -0.006688169669359922, + 0.01639975793659687, + -0.0020857583731412888, + -0.01053615752607584, + 0.0008324423688463867, + -0.007484107743948698, + 0.00546563183888793, + -0.013994765467941761, + -0.0007114769541658461, + -0.01811761036515236, + 0.022263359278440475, + 0.001550361281260848, + -0.0012604737421497703, + 0.05437573418021202, + 0.013960408978164196, + 8.736886957194656e-5, + 0.015632450580596924, + 0.01003225427120924, + 0.021404433995485306, + 0.026844296604394913, + 0.0021430200431495905, + 0.0013320508878678083, + -0.011887534521520138, + 0.010908358730375767, + 0.012609031982719898, + -0.009843290783464909, + 0.0023047844879329205, + 0.007037466391921043, + 0.004578074906021357, + 0.025653254240751266, + -0.006648086477071047, + -0.01754499226808548, + 0.012494509108364582, + 0.006705348379909992, + 0.0185642521828413, + -0.012345627881586552, + -0.0023734986316412687, + -0.025332586839795113, + -0.007707428187131882, + 0.015552285127341747, + 0.009018721990287304, + -0.00988909974694252, + -0.004509360995143652, + 0.00591513654217124, + 0.009098888374865055, + -0.002586798509582877, + -0.0008825463592074811, + -0.011188941076397896, + 0.009476815350353718, + -0.007043192163109779, + -0.005892231594771147, + -0.003544500796124339, + 0.0020857583731412888, + -0.003922428470104933, + 0.008852662518620491, + -0.02812696062028408, + -0.02143879048526287, + 0.007701702415943146, + 0.018747489899396896, + 0.0010808150982484221, + -0.012723555788397789, + 0.00012033910024911165, + -0.00485293148085475, + 0.005849285516887903, + 0.005749077536165714, + 0.01520871464163065, + 0.014097836799919605, + -0.0022732906509190798, + -0.022835977375507355, + -0.0018423961009830236, + 0.007495559751987457, + -0.005190775264054537, + -0.025057731196284294, + -0.005863600876182318, + -0.010455991141498089, + -0.012334175407886505, + 0.0060811955481767654, + 0.0130213163793087, + 0.010776656679809093, + 0.019228488206863403, + 0.00557442894205451, + -0.016010379418730736, + -0.0058578746393322945, + -0.018071800470352173, + 0.010232670232653618, + 0.006230075843632221, + -0.007678797468543053, + 0.012460151687264442, + 0.014910953119397163, + -0.0056603215634822845, + -0.011057239025831223, + -0.015666808933019638, + -0.0038766188081353903, + -0.00866369903087616, + -0.00798801053315401, + 0.00211152620613575, + -0.033349230885505676, + -0.010112420655786991, + 0.007312322501093149, + -0.00020596326794475317, + -0.006482027471065521 + ], + "9f93ecb7-2d49-48f8-a8a1-baa72fb39565": [ + -0.018474150449037552, + -0.03541487455368042, + -0.017354505136609077, + -0.0022423334885388613, + 0.0009036269038915634, + 0.009857747703790665, + -0.02367076650261879, + 0.048947978764772415, + -0.008427766151726246, + 0.0734097957611084, + -0.0032828734256327152, + -0.00040769699262455106, + 0.026433369144797325, + 0.0033224262297153473, + 0.002268194919452071, + -0.0071985903196036816, + -0.01145202573388815, + -0.0015433157095685601, + -0.012139634229242802, + 0.007131654769182205, + 0.027699055150151253, + -0.014348500408232212, + -0.005832501221448183, + 0.0276503749191761, + -0.01170759741216898, + -0.018620191141963005, + 0.01662430167198181, + 0.011512876488268375, + -0.008525126613676548, + -0.001772264949977398, + 0.021906107664108276, + 0.014360670000314713, + -0.024948621168732643, + 0.012182229198515415, + 0.009170140139758587, + 0.0014269395032897592, + -0.02027531899511814, + -0.01971549540758133, + 0.003933971747756004, + -0.004582027439028025, + -0.03626677766442299, + -0.004262563306838274, + 0.03251839801669121, + -0.03643715754151344, + -0.02757735550403595, + 0.004451199434697628, + 0.01192665845155716, + -0.005147935356944799, + 0.025630144402384758, + -0.030498169362545013, + 0.03818964585661888, + 0.009237075224518776, + 0.034197866916656494, + 0.020311828702688217, + 0.03965005278587341, + -0.03636413812637329, + -0.01976417750120163, + 0.0011500705732032657, + 0.043471451848745346, + -0.02623864822089672, + 0.022319888696074486, + 0.006054604426026344, + 0.00990642886608839, + -0.009486561641097069, + 0.030936291441321373, + -0.011494620703160763, + 0.03490373119711876, + 0.006304090842604637, + -0.0013189301826059818, + 0.006687447894364595, + 0.019910218194127083, + -0.06498811393976212, + -0.022636311128735542, + 0.012285674922168255, + 0.0275286752730608, + 0.014762282371520996, + 0.0030409935861825943, + 0.0017753074644133449, + 0.006057647056877613, + 0.006894338876008987, + -0.013983398675918579, + -0.044396378099918365, + -0.006051562260836363, + -0.026043927296996117, + 0.01567503623664379, + 0.0060333069413900375, + -0.06206730380654335, + -0.032348018139600754, + -0.020238809287548065, + -0.023755956441164017, + 0.008226959966123104, + -0.032932180911302567, + 0.03339464217424393, + 0.02979230508208275, + -0.048534195870161057, + -0.006681362632662058, + 0.008166110143065453, + 0.026895832270383835, + -0.0007077649934217334, + -0.05291542038321495, + -0.018279429525136948, + 0.03215329721570015, + -0.020323999226093292, + -0.005373081192374229, + 0.04887495934963226, + 0.023171793669462204, + 0.02251460961997509, + -0.01399556826800108, + -0.016393069177865982, + 0.005424804054200649, + -0.02750433422625065, + -0.0137643376365304, + 0.024997301399707794, + -0.03164215385913849, + 0.0015204967930912971, + -0.0916648879647255, + 0.00423518056049943, + 0.020762121304869652, + -0.02940286323428154, + 0.0036327627021819353, + 0.047146812081336975, + 0.0034167442936450243, + 0.00011495001672301441, + 0.019910218194127083, + 0.0008009420125745237, + 0.003142917761579156, + -0.005689502693712711, + 0.05004328489303589, + 0.038408707827329636, + 0.009407456032931805, + 0.016648640856146812, + -0.029767965897917747, + 0.025094661861658096, + 0.010502761229872704, + -0.010095064528286457, + -0.013666977174580097, + 0.0018163813510909677, + 0.034319568425416946, + -0.003066855017095804, + 0.01286375243216753, + -0.014798792079091072, + 0.020749950781464577, + 0.018571510910987854, + -0.021273264661431313, + 0.006444046273827553, + -0.02221035771071911, + -0.03487939015030861, + 0.08596929907798767, + 0.013630466535687447, + 0.0435931533575058, + -0.04792569577693939, + -0.031033651903271675, + -0.00108617777004838, + 0.019033972173929214, + 0.005287890788167715, + -0.02205214835703373, + -0.004956256598234177, + 0.03212895616889, + 0.008208705112338066, + -0.0013151270104572177, + 0.028137177228927612, + -0.01696506328880787, + 0.01540729496628046, + 0.0022925350349396467, + 0.014725771732628345, + 0.0035141047555953264, + 0.028185857459902763, + 0.04001515731215477, + -0.03711868077516556, + 0.02025097981095314, + 0.0368509404361248, + 0.0161374993622303, + 0.026822810992598534, + -0.0010838959133252501, + 0.003760548308491707, + -0.04098876193165779, + -0.006517066620290279, + -0.01540729496628046, + 0.023792466148734093, + -0.00045029219472780824, + -0.04320371150970459, + -0.005409591365605593, + -0.04101309925317764, + 0.046197544783353806, + 0.040161196142435074, + 0.031447432935237885, + 0.018109047785401344, + 0.006346685811877251, + -0.022636311128735542, + 0.005157062783837318, + 0.044858839362859726, + -0.0482664555311203, + 0.0015341881662607193, + 0.016819022595882416, + -0.01701374351978302, + 0.013265364803373814, + 0.019642475992441177, + -0.019313884899020195, + -0.027406973764300346, + 0.016819022595882416, + -0.017780456691980362, + -0.02359774522483349, + -0.02935418300330639, + 0.011865807697176933, + -0.05004328489303589, + -0.01237695012241602, + -0.019009632989764214, + -0.0012177665485069156, + -0.0026317753363400698, + 0.004947129171341658, + 0.023427365347743034, + -0.018036028370261192, + 0.018522830680012703, + -0.012766391970217228, + -0.003976566717028618, + -0.016697321087121964, + -0.0207134410738945, + 0.00877461303025484, + -0.0021890895441174507, + -0.03894418850541115, + -0.008172194473445415, + -0.034660328179597855, + -0.005595184862613678, + -0.030108727514743805, + -0.019167844206094742, + -0.00780709320679307, + -0.019496435299515724, + 0.0031946406234055758, + -0.03081458993256092, + -0.035147130489349365, + 0.0019441669574007392, + 0.018644530326128006, + 0.0035840824712067842, + -0.0005423282855190337, + 0.02064042165875435, + 0.04731719195842743, + 0.01585758663713932, + -0.013058473356068134, + 0.014640581794083118, + 0.017488375306129456, + 0.03614507615566254, + -0.017050253227353096, + -0.0052057430148124695, + -0.012419546023011208, + -0.007971389219164848, + -0.011622406542301178, + -0.02847793884575367, + 0.03587733581662178, + 0.001283941324800253, + 0.0036631878465414047, + 0.040185537189245224, + -0.00030520226573571563, + 0.057686083018779755, + 0.009310095570981503, + -0.016721662133932114, + 0.04454241693019867, + 0.028161518275737762, + -0.009955109097063541, + -0.01978851668536663, + -0.01089828833937645, + -0.01421462930738926, + 0.025605805218219757, + -0.02799113653600216, + 0.02087165229022503, + 0.0550573505461216, + -0.004110437352210283, + 0.030181746929883957, + -0.014336329884827137, + 0.005366996396332979, + 0.0020034960471093655, + 0.020701270550489426, + 0.004216925706714392, + -0.003857908770442009, + -0.011044329032301903, + -0.014604071155190468, + 0.008531211875379086, + -0.0030151321552693844, + -0.011287730187177658, + -0.0024370544124394655, + 0.005020149517804384, + 0.002751954598352313, + -0.00043736150837503374, + 0.038773808628320694, + 0.009699537418782711, + 0.028648320585489273, + -0.009243160486221313, + -0.014823132194578648, + -0.05087084695696831, + -0.058172885328531265, + -0.009882088750600815, + 0.0032585333101451397, + -0.006523151881992817, + 0.0047919610515236855, + -0.0037909734528511763, + 0.013301875442266464, + -0.0025526699610054493, + -0.020129278302192688, + -0.024035867303609848, + -0.008439936675131321, + 0.02459569089114666, + -0.02459569089114666, + 0.017232803627848625, + 0.014896152541041374, + -0.0008983025327324867, + -0.010411486029624939, + -0.00585379870608449, + 0.014165949076414108, + -0.02533806301653385, + -0.020652590319514275, + 0.03726472333073616, + 0.015577675774693489, + -0.023293493315577507, + -0.0026926256250590086, + -0.009596091695129871, + 0.04539432004094124, + 0.020591741427779198, + 0.021139392629265785, + 0.01821857877075672, + -0.0435444712638855, + 0.011993593536317348, + 0.0024918196722865105, + -0.006620512343943119, + -0.01737884432077408, + 0.03624243661761284, + 0.043471451848745346, + -0.07219279557466507, + -0.005181402899324894, + -0.015017853118479252, + 0.01337489578872919, + -0.013971228152513504, + 0.016490431502461433, + -0.0011987508041784167, + -0.030571188777685165, + 0.012151804752647877, + -0.01337489578872919, + -0.029135122895240784, + -0.07112182676792145, + -0.029086442664265633, + -0.01994672790169716, + -0.0037818460259586573, + 0.0016247029416263103, + -0.004353838972747326, + 0.00034494511783123016, + 0.001419333158992231, + -0.04045327752828598, + -0.0035840824712067842, + 0.036510176956653595, + 0.03339464217424393, + -0.0027473908849060535, + -0.007898368872702122, + 0.000573894358240068, + -0.018364619463682175, + 0.027820756658911705, + -0.02903776243329048, + 0.0020232724491506815, + 0.0032767883967608213, + 0.013788677752017975, + 0.02901342138648033, + 0.015103043988347054, + 0.006322345696389675, + -0.0020384849049150944, + -0.03205593675374985, + -0.01513955369591713, + -0.01973983645439148, + -0.015455975197255611, + 0.010880033485591412, + 0.02154100500047207, + 0.01111734937876463, + 0.009857747703790665, + -0.00010373074474046007, + -0.015894098207354546, + 0.0125960111618042, + -0.005783820990473032, + 0.0005853038164786994, + -0.009456136263906956, + -0.06308958679437637, + -0.010514931753277779, + 0.0008671167306602001, + -0.05199049413204193, + 0.03621809557080269, + -0.0034137016627937555, + 0.02855096012353897, + 0.028210198506712914, + 0.02120024338364601, + 0.028623979538679123, + 0.022575460374355316, + -0.021626194939017296, + -0.02713923342525959, + -0.012383035384118557, + -0.039723075926303864, + -0.010545356199145317, + -0.0020521762780845165, + -0.029086442664265633, + -0.014141608960926533, + -0.04415297508239746, + 0.01914350315928459, + 0.02623864822089672, + 0.02945154346525669, + -0.008701592683792114, + -0.04909402132034302, + 0.028404919430613518, + -0.017354505136609077, + -0.019180012866854668, + -0.010758332908153534, + 0.032907839864492416, + -0.029573244974017143, + 0.0032281081657856703, + 0.02323264442384243, + 0.027893776074051857, + -0.0023564277216792107, + 0.019593795761466026, + 0.020153619349002838, + -0.009888173080980778, + 0.011798872612416744, + -0.012839412316679955, + -0.008537297137081623, + 0.022624140605330467, + -0.02112722396850586, + -0.0920056477189064, + 0.015163893811404705, + 0.057686083018779755, + 0.024668710306286812, + 0.005573887377977371, + 0.0009713228791952133, + 0.002427926752716303, + 0.0037757609970867634, + 0.016490431502461433, + 0.002295577432960272, + -0.001345552154816687, + 0.018973123282194138, + -0.021443644538521767, + 0.014786622487008572, + -0.018547169864177704, + 0.015370785258710384, + 0.0058355433866381645, + 0.0006529997335746884, + -0.01634438894689083, + 0.01636872999370098, + -0.022453758865594864, + -0.010429740883409977, + -0.007070804480463266, + 0.008835462853312492, + 0.011257304809987545, + 0.01948426477611065, + -0.020214468240737915, + -0.011804957874119282, + -0.032469719648361206, + 0.0037727183662354946, + 0.01670949161052704, + 0.0008070270414464176, + 0.01355744618922472, + 0.07044030725955963, + 0.00438730651512742, + 0.008932823315262794, + 0.010636632330715656, + 0.012340440414845943, + -0.0028143262024968863, + -0.007320290897041559, + -0.009760387241840363, + -0.0229770727455616, + -0.008330405689775944, + -0.03173951432108879, + 0.02623864822089672, + -0.011987508274614811, + -0.02436445839703083, + -0.00033676836756058037, + -0.008293895982205868, + 0.046173207461833954, + -0.008446021005511284, + 0.02156534604728222, + 0.00037232774775475264, + -0.011068669147789478, + -0.05345090106129646, + 0.002170834457501769, + 0.010222850367426872, + -0.024899940937757492, + -0.0064075361005961895, + 0.012218739837408066, + 0.02524070255458355, + -0.019800687208771706, + -0.016977233812212944, + -0.023573406040668488, + -0.01539512537419796, + 0.06518283486366272, + 0.006742212921380997, + 0.019435584545135498, + -0.020031917840242386, + 0.006243240553885698, + -0.030108727514743805, + 0.03573129326105118, + 0.0069612739607691765, + -0.006103284657001495, + 0.0057686083018779755, + 0.016405239701271057, + -0.01057578157633543, + 0.002694146940484643, + 0.008987588807940483, + -0.02979230508208275, + 0.01604013890028, + -0.04868023842573166, + 0.006529236678034067, + -0.03081458993256092, + 0.0075150118209421635, + 0.016417410224676132, + -0.03412484750151634, + 0.023135283961892128, + 0.021042032167315483, + 0.01263252180069685, + 0.005348741076886654, + 0.02362208627164364, + -0.015845417976379395, + 0.05569019168615341, + -0.022161677479743958, + -0.018486320972442627, + -0.0007842081831768155, + 0.021747896447777748, + -0.0034015316050499678, + -0.032372359186410904, + 0.008932823315262794, + -0.01888793148100376, + 0.019983237609267235, + -0.01837678998708725, + -0.013314045034348965, + -0.002380767837166786, + -0.023780295625329018, + -0.02202780731022358, + -0.013533106073737144, + -0.0057777357287704945, + 0.04101309925317764, + 0.011543301865458488, + -0.0368022583425045, + 0.003082067472860217, + 0.014774451963603497, + -0.0011242092587053776, + 0.03366238623857498, + -0.014652751386165619, + -0.006687447894364595, + -0.011573726311326027, + 0.0022621098905801773, + -0.04149990156292915, + 0.005138807464390993, + 0.016660811379551888, + -0.023536894470453262, + 0.011531131342053413, + 0.020543061196804047, + 0.008093089796602726, + -0.017975177615880966, + -0.006876083556562662, + 0.010332380421459675, + -0.03310256078839302, + -0.03176385536789894, + 0.010825267992913723, + -0.027431314811110497, + -0.020786462351679802, + -0.005488696973770857, + -0.031471773982048035, + 0.02205214835703373, + -0.013435745611786842, + 0.0033528513740748167, + -0.03806794434785843, + 0.012815072201192379, + 0.01540729496628046, + 0.010484506376087666, + 0.024790411815047264, + -0.02292839251458645, + 0.018157728016376495, + -0.025824865326285362, + -0.012267420068383217, + -0.0023746828082948923, + 0.008914568461477757, + 0.025824865326285362, + 0.0343439094722271, + 0.046733029186725616, + -0.015942778438329697, + -0.03758114203810692, + 0.01490832306444645, + 0.019386904314160347, + -0.04463977739214897, + -0.03719170019030571, + 0.048509858548641205, + -0.011987508274614811, + 0.016429580748081207, + -0.02674979157745838, + -0.023110942915081978, + -0.013618296943604946, + -0.008093089796602726, + -0.01105041429400444, + -0.054959990084171295, + -0.01307064387947321, + 0.02979230508208275, + -0.014068588614463806, + 0.030181746929883957, + 0.0034410844091326, + 0.008805038407444954, + -0.01750054582953453, + 0.025849206373095512, + 0.013399235904216766, + -0.00036167894722893834, + 0.030473828315734863, + 0.03531751409173012, + 0.03127705305814743, + 0.0005552589427679777, + 0.018522830680012703, + -0.01020459458231926, + -0.020080598071217537, + 0.014798792079091072, + -0.026895832270383835, + 0.024011528119444847, + 0.01128164492547512, + -0.024279268458485603, + 0.017537055537104607, + -0.009267500601708889, + 0.005674290005117655, + -0.008756358176469803, + 0.0505300872027874, + 0.035536572337150574, + 0.0026956682559102774, + 0.04079404100775719, + 0.034246549010276794, + -0.018900102004408836, + -0.0008549466729164124, + -0.009304010309278965, + 0.012346525676548481, + -0.025021642446517944, + 0.006142837461084127, + 0.018279429525136948, + -0.03478202968835831, + -0.014336329884827137, + -0.008117429912090302, + 0.0026211265940219164, + 0.02163836546242237, + 0.008932823315262794, + 0.01752488501369953, + -0.018875762820243835, + 0.008306065574288368, + -0.01768309623003006, + 0.013971228152513504, + -0.0014839866198599339, + -0.03663187846541405, + 0.02979230508208275, + -0.04953214153647423, + -0.018547169864177704, + 0.018802741542458534, + 0.02891606092453003, + -0.00872593279927969, + 0.017025914043188095, + -0.0035201897844672203, + 0.016672981902956963, + 0.016514770686626434, + 0.015869757160544395, + 0.02459569089114666, + -0.018960952758789062, + 0.02267282083630562, + 0.027285274118185043, + -0.016198348253965378, + -0.013569616712629795, + 0.005129680037498474, + 0.042960308492183685, + -0.014080759137868881, + -0.014385010115802288, + 0.0036723155062645674, + -0.013484425842761993, + 0.047146812081336975, + -0.005981584079563618, + 0.008153939619660378, + 0.029256822541356087, + -0.04361749440431595, + -0.00569254532456398, + -0.0065657468512654305, + 0.016380900517106056, + 0.004457284230738878, + 0.007691477425396442, + -0.016746001318097115, + 0.048096075654029846, + 0.005951159168034792, + -0.000343614025041461, + 0.0013242545537650585, + -0.008360831066966057, + 0.009364861063659191, + -0.00024168977688532323, + -0.019423414021730423, + -0.03264009952545166, + -0.03799492493271828, + 0.005032319575548172, + 0.0052148704417049885, + -0.012279589660465717, + -0.0024994260165840387, + -0.006918678991496563, + -0.033735405653715134, + 0.012498650699853897, + 0.0034015316050499678, + 0.055836234241724014, + -0.07117050886154175, + 0.014932663179934025, + 0.010849608108401299, + 0.012973283417522907, + -0.02135845459997654, + -0.007575862109661102, + -0.0020095810759812593, + 0.011877978220582008, + -0.023135283961892128, + -0.01231001503765583, + -0.04001515731215477, + -0.018291600048542023, + 0.021906107664108276, + 0.043422773480415344, + -0.014141608960926533, + -0.04033157601952553, + -0.0030288235284388065, + -0.005923776421695948, + 0.024267097935080528, + 0.007855772972106934, + -0.020104939118027687, + -0.02665243111550808, + 0.016125328838825226, + -0.005926819052547216, + -0.02464437112212181, + 0.036510176956653595, + 0.019496435299515724, + 0.017999518662691116, + -0.00748458644375205, + 0.011914487928152084, + -0.03543921187520027, + -0.031082332134246826, + -0.032299336045980453, + 0.06776288896799088, + 0.013618296943604946, + -0.038822490721940994, + -0.02672545053064823, + -0.01816989853978157, + 0.012875922955572605, + -0.009590006433427334, + 0.03132573142647743, + 0.001442912733182311, + -0.015054363757371902, + -0.016174009069800377, + -0.012401290237903595, + 0.003647975390776992, + 0.021516665816307068, + 0.015748057514429092, + 0.003037951188161969, + -0.021966956555843353, + 0.00835474580526352, + 0.0161374993622303, + 0.0184254702180624, + -0.003590167500078678, + 0.00027819996466860175, + -0.001568416366353631, + -0.0029740582685917616, + -0.020117107778787613, + -0.0011759320041164756, + -0.010277614928781986, + 0.039820436388254166, + 0.02891606092453003, + 0.01670949161052704, + -0.00024130946258082986, + -0.024656539782881737, + 0.002665243111550808, + -0.03446560725569725, + 0.04305766895413399, + -0.0011911445762962103, + -0.0018894016975536942, + 0.010143744759261608, + -0.035633932799100876, + 0.0012497130082920194, + 0.005458271596580744, + 0.008512957021594048, + 0.03117969259619713, + 0.03410050645470619, + 0.01932605355978012, + 0.027333954349160194, + -0.01632004976272583, + 0.018595850095152855, + 0.018267259001731873, + -0.04546734318137169, + -0.0687364935874939, + 0.015954947099089622, + 0.03266444057226181, + 0.03259141743183136, + -0.023707276210188866, + -0.028818700462579727, + -0.03122837282717228, + 0.056761156767606735, + -0.0037240381352603436, + -0.027918117120862007, + -0.0056103975512087345, + 0.018388960510492325, + 0.024060208350419998, + -0.005123595241457224, + -0.014336329884827137, + -0.028818700462579727, + -0.015249084681272507, + 0.012705542147159576, + 0.021723555400967598, + -0.01659996062517166, + 0.011573726311326027, + -0.0038761638570576906, + -0.0018422427820041776, + -0.029524564743041992, + -0.021042032167315483, + -0.0021814831998199224, + -0.0023975016083568335, + 0.018754061311483383, + 0.017330164089798927, + 0.001875710440799594, + 0.01999540813267231, + -0.004283860791474581, + 0.0092249047011137, + 0.02362208627164364, + 0.03164215385913849, + -0.005552589427679777, + 0.0008039845270104706, + -0.008847633376717567, + 0.010320210829377174, + 0.022733671590685844, + 0.00909711979329586, + 0.021942617371678352, + -0.006504896562546492, + 0.011683257296681404, + -0.00980298314243555, + 0.0015866714529693127, + -0.011713682673871517, + 0.026019586250185966, + -0.008817207999527454, + -0.016514770686626434, + -0.0125960111618042, + 0.0011356186587363482, + -0.012212654575705528, + -0.003191597992554307, + 0.02842925861477852, + -0.022112997248768806, + -0.032348018139600754, + -0.023354344069957733, + 0.02935418300330639, + 0.005427846685051918, + 0.01670949161052704, + -0.013265364803373814, + -0.026506390422582626, + -0.03943099081516266, + -0.0007332460954785347, + -0.02038484998047352, + -0.0184498094022274, + 0.05569019168615341, + 0.006088072434067726, + 0.023269154131412506, + 0.013886038213968277, + -0.010709652677178383, + 0.005084042437374592, + 0.003800101112574339, + 0.016429580748081207, + 0.012997623533010483, + 0.01332621555775404, + 0.01561418641358614, + -0.008226959966123104, + -0.034222207963466644, + 0.007551521994173527, + 0.00417737290263176, + 0.009693452157080173, + 0.04371485486626625, + -0.008038324303925037, + -0.0030622913036495447, + -0.024473989382386208, + -0.014275480061769485, + -0.023549064993858337, + -0.008987588807940483, + -0.02166270650923252, + 0.011391175910830498, + 0.026482049375772476, + 0.00553129194304347, + -0.005862926132977009, + 0.016697321087121964, + 0.012474310584366322, + 0.02130977436900139, + -0.003237235825508833, + -0.008269555866718292, + -0.032786138355731964, + -0.00699778413400054, + -0.026506390422582626, + -0.0505300872027874, + 0.040185537189245224, + 0.023585574701428413, + -0.030108727514743805, + -0.003252448281273246, + -0.00872593279927969, + -0.061823900789022446, + 0.01860802061855793, + 0.015723716467618942, + 0.022806691005825996, + -0.005041447002440691, + -0.012936772778630257, + -0.03200725466012955, + -0.022368568927049637, + 0.004572900012135506, + 0.0006689729634672403, + -0.012571671046316624, + -0.010697482153773308, + 0.005269635934382677, + -0.010989563539624214, + 0.0009196001337841153, + 0.029305502772331238, + -0.00390658900141716, + -0.024668710306286812, + -0.03027910739183426, + 0.014372840523719788, + 0.0391632504761219, + -0.006687447894364595, + 0.005923776421695948, + 0.006650937721133232, + -0.012170059606432915, + 0.026043927296996117, + 0.023561235517263412, + -0.010861777700483799, + 0.004947129171341658, + -0.007673222571611404, + 0.002764124656096101, + -0.008975419215857983, + -0.037897564470767975, + -0.012273505330085754, + -0.004019162151962519, + -0.017950838431715965, + 0.016563450917601585, + -0.014506710693240166, + 0.015309934504330158, + -0.0069916993379592896, + 0.010265445336699486, + -0.007642797194421291, + -0.009510901756584644, + 0.0007978994981385767, + -0.004311243537813425, + 0.016064478084445, + -0.01858368143439293, + 0.01814555935561657, + 0.017232803627848625, + -0.007995729334652424, + 0.016648640856146812, + -0.01747620478272438, + 0.0017190208891406655, + 0.015419465489685535, + -0.04320371150970459, + -0.003806186141446233, + 0.017232803627848625, + -0.03643715754151344, + 0.01860802061855793, + -0.02577618509531021, + 0.009066694416105747, + 0.009267500601708889, + -0.011470280587673187, + 0.02670111134648323, + -0.018011687323451042, + -0.030108727514743805, + 0.024230588227510452, + 0.0046033249236643314, + 0.009699537418782711, + 0.02665243111550808, + -0.004256478510797024, + 0.03295652195811272, + -0.005707758013159037, + 0.03341898322105408, + -0.0004472496802918613, + -0.03315124288201332, + 0.00877461303025484, + -0.03478202968835831, + -0.007253355346620083, + 0.0020917290821671486, + -0.008111344650387764, + -0.031057991087436676, + 0.00021050400391686708, + 0.024194078519940376, + -0.018668871372938156, + 0.0027382634580135345, + -0.010034213773906231, + -0.02799113653600216, + -0.002567882649600506, + -0.028599640354514122, + -0.03295652195811272, + 0.005497824400663376, + -0.008646827191114426, + -0.03259141743183136, + 0.009687366895377636, + 0.025630144402384758, + 0.0009971841936931014, + -0.0044755395501852036, + 0.006255410611629486, + -0.02482692152261734, + -0.022758010774850845, + 0.009218820370733738, + -0.018182069063186646, + -0.007277695462107658, + 0.010928713716566563, + -0.0015539644518867135, + -0.005914648994803429, + -0.015054363757371902, + -0.01696506328880787, + 0.012669031508266926, + -0.022940561175346375, + -0.015054363757371902, + -0.010101149789988995, + -0.03546355292201042, + 0.019825026392936707, + -0.020652590319514275, + 0.006584002170711756, + 0.002370119094848633, + -0.04721983149647713, + 0.015273424796760082, + 0.009784727357327938, + 0.02937852405011654, + 0.0038274836260825396, + 0.003252448281273246, + 0.02623864822089672, + 0.004499879665672779, + -0.025557124987244606, + -0.013058473356068134, + -0.002263630973175168, + -0.011585896834731102, + 0.01821857877075672, + -0.008707677945494652, + 0.04549168050289154, + -0.011153859086334705, + 0.03276180103421211, + -0.0059754992835223675, + 0.002584616420790553, + -0.03397880494594574, + -7.35432913643308e-5, + -0.0008610317017883062, + -0.015894098207354546, + 0.004694600589573383, + -0.004956256598234177, + -0.02387765608727932, + -0.0019137418130412698, + 0.006261495407670736, + -0.000262036599451676, + -0.010746162384748459, + -0.005446101538836956, + -0.019411245360970497, + 0.02158968523144722, + 0.021054202690720558, + -0.0005533574149012566, + -0.031909894198179245, + -1.5414616427733563e-5, + -0.006809148471802473, + 0.0050475322641432285, + 0.01955728605389595, + -0.0321776382625103, + -0.013752167113125324, + 0.012328269891440868, + 0.027285274118185043, + -0.02186959609389305, + -0.0031703005079180002, + -0.015748057514429092, + 0.01207878440618515, + 0.0030698974151164293, + 0.013423576019704342, + -0.0013181695248931646, + 0.006012009456753731, + -0.017305824905633926, + 0.026068266481161118, + 0.00483151338994503, + -0.0005818809731863439, + -0.013679146766662598, + -0.010880033485591412, + 0.0009903386235237122, + 0.004171288106590509, + 0.025946566835045815, + -0.007082974538207054, + -0.013253195211291313, + -0.003001441014930606, + -0.003243320854380727, + -0.0229040514677763, + -0.012583841569721699, + -0.010374975390732288, + 0.003538444871082902, + -0.014275480061769485, + -0.009346605278551579, + -0.011616322211921215, + -0.012243079952895641, + 0.004795003216713667, + 0.030863270163536072, + 0.006480556447058916, + -0.009979449212551117, + -0.02029966004192829, + 0.01020459458231926, + 0.006857828702777624, + -0.005150977522134781, + -0.003970481920987368, + -0.04174330458045006, + -0.016819022595882416, + -0.0011622406309470534, + 0.012030104175209999, + 0.0014923535054549575, + 0.034660328179597855, + -0.0125960111618042, + 0.004798045847564936, + -0.019983237609267235, + 0.004466411657631397, + -0.016794681549072266, + 0.010350635275244713, + 0.01540729496628046, + 0.03716736286878586, + -0.001316648325882852, + 0.029573244974017143, + -0.012498650699853897, + -0.015224744565784931, + 0.020908161997795105, + 0.020372679457068443, + 0.019289543852210045, + 0.02228337898850441, + -0.0036114652175456285, + 0.0032828734256327152, + 0.007545436732470989, + 0.017999518662691116, + 0.022660650312900543, + 0.05276937782764435, + 0.003139875363558531, + 0.0055799721740186214, + 0.005467399023473263, + 0.005467399023473263, + 0.005388293880969286, + 0.005646907724440098, + -0.001164522604085505, + 0.014750111848115921, + 0.023293493315577507, + -0.006863913498818874, + -0.01608881913125515, + 0.009121459908783436, + 0.01561418641358614, + -0.03480637073516846, + -0.0069612739607691765, + 0.028380578383803368, + 0.006383195985108614, + 0.007764497771859169, + 0.016904212534427643, + -0.004938001744449139, + -0.0036145076155662537, + -0.014068588614463806, + -0.01042365562170744, + -0.009620431810617447, + -0.03171517327427864, + -0.009955109097063541, + 0.0008846112177707255, + -0.006523151881992817, + 0.00014185725012794137, + -0.0030060047283768654, + -0.019520774483680725, + -0.02480258047580719, + -0.005549547262489796, + 0.00813568476587534, + -0.025605805218219757, + -0.027674715965986252, + -0.008896313607692719, + -0.028210198506712914, + -0.0004518134519457817, + -0.019289543852210045, + 0.0064075361005961895, + 0.004953214433044195, + -0.009237075224518776, + 0.008695507422089577, + -0.0077219028025865555, + -0.013679146766662598, + 0.012717711739242077, + 0.019399074837565422, + -0.01647826097905636, + -0.004232138395309448, + 0.0026758918538689613, + -0.04493185877799988, + 0.0025694037321954966, + -0.0014657315332442522, + -0.005729055497795343, + -0.02092033252120018, + -0.0014771409332752228, + 0.002099335193634033, + -0.011768447235226631, + -0.01812121830880642, + 0.007867943495512009, + -0.0025541912764310837, + -0.031982917338609695, + 0.01067922729998827, + -0.041548583656549454, + -0.015528995543718338, + -0.007734072860330343, + -0.02716357260942459, + 0.00461245235055685, + -0.024011528119444847, + 0.006644852459430695, + -0.006620512343943119, + 0.0047919610515236855, + 0.003693612990900874, + -0.017086762934923172, + -0.02066476084291935, + -0.005872053559869528, + -0.006036349572241306, + 0.016490431502461433, + 0.000594811630435288, + -0.04395825415849686, + -0.011628491804003716, + -0.02166270650923252, + -0.009523071348667145, + -0.0172206349670887, + -0.013971228152513504, + 0.007241185288876295, + 0.02942720428109169, + -0.02577618509531021, + 0.0034806369803845882, + 0.0037240381352603436, + 0.007667137309908867, + 0.0092249047011137, + -0.014774451963603497, + -0.02096901275217533, + 0.002105420222505927, + -0.012559501454234123, + -0.043447110801935196, + -0.003702740650624037, + -0.006657022517174482, + 0.002111505251377821, + -0.03188555687665939, + 0.0068821688182652, + 0.0218209158629179, + -0.00613066740334034, + -0.028599640354514122, + 0.005771650932729244, + 0.01588192768394947, + -0.024559179320931435, + 0.02716357260942459, + 0.015334274619817734, + -0.0013927111867815256, + -0.01816989853978157, + -0.019411245360970497, + 0.0022134296596050262, + 0.004956256598234177, + -0.009206649847328663, + 0.011360750533640385, + -0.0044937944039702415, + 0.01100173406302929, + -0.03166649490594864, + 8.756737952353433e-5, + 0.027869436889886856, + 7.948570419102907e-5, + -0.0086589977145195, + 0.0007925751269795001, + -0.02901342138648033, + -0.009760387241840363, + 0.019459925591945648, + 0.0016642556292936206, + -0.01307064387947321, + -0.012717711739242077, + -0.0031946406234055758, + 0.029743624851107597, + -0.012729882262647152, + 0.00666310777887702, + 0.001167565118521452, + -0.013861698098480701, + -0.0019137418130412698, + -6.84565820847638e-5, + 0.022611970081925392, + -0.0002357948978897184, + -0.01930171437561512, + 0.01421462930738926, + -0.00031204792321659625, + 0.00906060915440321, + -0.02043353021144867, + -0.016259199008345604, + 0.0048771514557302, + 0.03480637073516846, + 0.016721662133932114, + 0.006474471651017666, + -0.019033972173929214, + -0.011433770880103111, + 0.03633979707956314, + -0.00916405487805605, + 0.0018939655274152756, + -0.03597469627857208, + -0.01650260016322136, + -0.0017281484324485064, + -0.005202700383961201, + 0.028818700462579727, + -0.017585735768079758, + 0.03492807224392891, + -0.0011401824885979295, + -0.01632004976272583, + 0.011780617758631706, + 0.010447995737195015, + 0.0032585333101451397, + 0.0161374993622303, + 0.012583841569721699, + -0.014883982948958874, + -0.015602015890181065, + -0.04719549044966698, + 0.027431314811110497, + 0.009717792272567749, + -0.0025404999032616615, + -0.00023769646941218525, + 0.024279268458485603, + 0.012048359028995037, + 0.0005647668149322271, + 0.01752488501369953, + -0.007667137309908867, + 0.016149668022990227, + -0.028137177228927612, + -0.015066533349454403, + 0.002154100453481078, + -0.008379085920751095, + -0.0483638159930706, + -0.00046816698159091175, + -0.0008283247007057071, + 0.00024473227676935494, + -0.001574501395225525, + 0.0014284607023000717, + 0.015602015890181065, + -0.007454161532223225, + 7.172491223172983e-6, + -0.032883498817682266, + 0.019386904314160347, + 0.007618457078933716, + -0.011920573189854622, + -0.005150977522134781, + 0.010764417238533497, + -0.0020810801070183516, + -0.03592601418495178, + -0.0252893827855587, + -0.003075982443988323, + -0.014068588614463806, + -0.014786622487008572, + -0.01002204418182373, + -0.012888092547655106, + 0.012839412316679955, + -7.87726094131358e-5, + 0.002866049064323306, + -0.019082652404904366, + -0.006091114599257708, + 0.026384688913822174, + -0.021248923614621162, + 0.002208865713328123, + 0.01816989853978157, + -0.0005913888453505933, + 0.028770020231604576, + 0.010934798046946526, + 0.014713602140545845, + 0.011312070302665234, + 0.004627665039151907, + -0.006279750727117062, + 0.010119404643774033, + -0.004110437352210283, + 0.012236994691193104, + -0.00021658903278876096, + 0.0009447008487768471, + -0.009888173080980778, + 0.007880113087594509, + -0.007606287021189928, + -0.00906060915440321, + 0.014981343410909176, + -0.0077705830335617065, + 0.01046016626060009, + 0.006194560322910547, + 0.005157062783837318, + -0.022271208465099335, + -0.01382518745958805, + -0.013606126420199871, + 0.004578984808176756, + -0.0183281097561121, + 0.028575299307703972, + -0.011099094524979591, + 0.016879873350262642, + -0.01814555935561657, + -0.008598146960139275, + 0.009139714762568474, + -0.016283540055155754, + -0.014129439368844032, + -0.024279268458485603, + -0.024729561060667038, + 0.003191597992554307, + 0.0009644771926105022, + 0.021090712398290634, + 0.027358293533325195, + -0.01932605355978012, + 0.007904453203082085, + -0.01809687912464142, + -0.021297603845596313, + 0.010131574235856533, + -0.010447995737195015, + -5.628652434097603e-5, + 0.014336329884827137, + 0.027699055150151253, + 0.022015636786818504, + 0.0018270302098244429, + 0.007496756501495838, + -0.020372679457068443, + -0.0038183561991900206, + -0.01701374351978302, + -0.00132653652690351, + 0.0006073620170354843, + 0.03857908770442009, + -0.007910538464784622, + 0.022733671590685844, + -0.014531050808727741, + 0.005756438244134188, + -0.006118497345596552, + -0.006760468240827322, + 0.011561556719243526, + -0.042960308492183685, + 0.0077705830335617065, + -0.006900423672050238, + 0.007715817540884018, + 0.007831432856619358, + 0.004758493043482304, + 0.004855853505432606, + -0.026262987405061722, + -0.014190289191901684, + -0.025143342092633247, + -0.004828471224755049, + -0.009011928923428059, + -0.0065657468512654305, + 0.019155673682689667, + -0.01170759741216898, + 0.008464276790618896, + -0.01719629392027855, + 0.018267259001731873, + -0.008805038407444954, + 0.011701512150466442, + 0.01105041429400444, + 0.008421680890023708, + -0.05364562198519707, + -0.0056286524049937725, + -0.021297603845596313, + -0.025459764525294304, + -0.009273584932088852, + 0.010715737007558346, + -0.011671086773276329, + 0.02110288292169571, + -0.009230989962816238, + -0.012608181685209274, + 0.02359774522483349, + 0.02452266961336136, + -0.0037240381352603436, + -0.013362725265324116, + 0.008938908576965332, + 0.020798631012439728, + -0.02251460961997509, + 0.002160185482352972, + 0.004356881137937307, + -0.003961354494094849, + 0.005345698446035385, + 0.03354068472981453, + -0.02801547758281231, + -0.0062219430692493916, + -0.0037727183662354946, + 0.03397880494594574, + -0.019155673682689667, + -0.012431715615093708, + -0.007904453203082085, + -0.013021963648498058, + -0.007429821416735649, + -0.009717792272567749, + 0.00219365325756371, + 0.004314286168664694, + 0.003240278223529458, + 0.01585758663713932, + -0.018011687323451042, + -0.007922708988189697, + -0.029183803126215935, + -0.010527101345360279, + -0.006060689687728882, + 0.010770502500236034, + -0.01659996062517166, + -0.0020232724491506815, + -0.01078267302364111, + 0.0021206329111009836, + 0.0017190208891406655, + -0.015309934504330158, + 0.015419465489685535, + 0.015017853118479252, + -0.003422829322516918, + 0.009078864008188248, + 0.026482049375772476, + 0.004898448940366507, + 0.003927886486053467, + 0.019386904314160347, + 0.009334435686469078, + -0.0067361281253397465, + -0.017561396583914757, + -0.009425710886716843, + -0.0069612739607691765, + -0.004688515327870846, + -0.004880193620920181, + -0.022684991359710693, + -0.008525126613676548, + -0.04422599449753761, + -0.003010568441823125, + 0.030887611210346222, + 0.01992238685488701, + 0.0052057430148124695, + 0.0021206329111009836, + -0.027918117120862007, + 0.012383035384118557, + 0.027820756658911705, + 0.034635990858078, + 0.033784084022045135, + 0.002432490698993206, + 0.00423518056049943, + 0.026482049375772476, + -0.023561235517263412, + 0.02803981676697731, + -0.005622567608952522, + -0.013447916135191917, + -0.00850687175989151, + 0.007898368872702122, + -0.02521636337041855, + -0.006711788009852171, + 0.002823453862220049, + 0.014652751386165619, + -0.01197533868253231, + 0.005850756075233221, + 0.010660972446203232, + -0.006127624772489071, + -0.027747735381126404, + 0.005436974111944437, + 0.011421600356698036, + 0.01819423958659172, + -0.015723716467618942, + -0.023269154131412506, + -0.025119002908468246, + -0.011470280587673187, + 0.014652751386165619, + 0.00449683703482151, + 0.005157062783837318, + 0.011780617758631706, + -0.004621580243110657, + 0.010740077123045921, + 0.008488616906106472, + 0.03772718459367752, + 0.02799113653600216, + 0.0016855532303452492, + -0.019033972173929214, + 0.0390172116458416, + 0.01008897926658392, + 0.009790812619030476, + -0.013021963648498058, + 0.005573887377977371, + 0.023536894470453262, + 0.009297925047576427, + -0.008141770027577877, + 0.003602337557822466, + 0.04417731612920761, + -0.010015958920121193, + -0.024023696780204773, + 0.009936853311955929, + 0.011792787350714207, + 0.02706621214747429, + 0.0017753074644133449, + -0.015370785258710384, + -0.008324320428073406, + 0.007837518118321896, + 0.0024172780103981495, + 0.012522990815341473, + 0.007636712398380041, + -0.01067922729998827, + 0.0012527555227279663, + -0.007557606790214777, + -0.006796978414058685, + 0.01421462930738926, + -0.011178199201822281, + -0.007143824826925993, + 0.001665776944719255, + 0.005123595241457224, + 0.000272495235549286, + 0.000899063132237643, + -0.014835302717983723, + -0.01580890640616417, + -0.00034076167503371835, + 0.01020459458231926, + 0.0006412100046873093, + 0.0030835887882858515, + 0.0003114774590358138, + -0.004813258536159992, + -0.008190450258553028, + 0.004250393249094486, + -0.015967117622494698, + 0.0011531130876392126, + -0.007947049103677273, + 0.007137740030884743, + -0.002516159787774086, + -0.017354505136609077, + -0.02580052614212036, + -0.010581866838037968, + 0.027893776074051857, + 0.01159198209643364, + 0.005230083130300045, + 0.00813568476587534, + -0.0005784581298939884, + -0.004938001744449139, + -0.0012565586948767304, + 0.0051966155879199505, + 0.011019988916814327, + -0.0015486400807276368, + -0.015796737745404243, + 0.008671167306602001, + -0.022161677479743958, + -0.018973123282194138, + -0.01978851668536663, + 0.004274733364582062, + 0.01067922729998827, + 0.00014337850734591484, + 0.007782753091305494, + 0.008336490951478481, + -0.0007142303511500359, + 0.016539111733436584, + -0.019033972173929214, + 0.01994672790169716, + 0.011038243770599365, + -0.012827242724597454, + -0.008798953145742416, + -0.0018300727242603898, + 0.0276260357350111, + 0.008890228345990181, + -0.018437640741467476, + -0.014531050808727741, + -0.007880113087594509, + -0.004563772119581699, + 0.02709055319428444, + -0.011360750533640385, + -0.011275559663772583, + -0.001956337131559849, + -0.009285755455493927, + 0.027747735381126404, + -0.00298166461288929, + 0.005132722668349743, + 0.014871812425553799, + -0.008951079100370407, + -0.018851421773433685, + 0.02410888858139515, + 0.022648479789495468, + -0.0020947714801877737, + -0.013411405496299267, + -0.002707838313654065, + -0.018924443051218987, + -0.01773177646100521, + 0.014007738791406155, + 0.028648320585489273, + 0.010070724412798882, + 0.0008237609290517867, + 0.022015636786818504, + 0.00477370573207736, + 0.036583200097084045, + -0.009857747703790665, + -0.0037209957372397184, + 0.009772557765245438, + 0.0044542415998876095, + -0.010155914351344109, + -0.015163893811404705, + 0.005878138821572065, + 0.0073750559240579605, + 0.011123434640467167, + -0.005616482347249985, + -0.00036072818329557776, + -0.028356239199638367, + -0.0028630064334720373, + -0.01694072224199772, + -0.001855934038758278, + -0.023378685116767883, + -0.004405561368912458, + -0.009486561641097069, + 0.011579811573028564, + -0.0030075260438024998, + 0.015370785258710384, + -0.015249084681272507, + 0.0003179428167641163, + -0.0038822488859295845, + -0.014153779484331608, + -0.0040800124406814575, + 0.01765875704586506, + -0.01683119311928749, + -0.010965223424136639, + 0.011141689494252205, + -0.004201713018119335, + 0.007350715808570385, + 0.004216925706714392, + 0.009711707010865211, + 0.03497675061225891, + -0.026506390422582626, + -0.009821237996220589, + -0.0229040514677763, + 0.003918759059160948, + 0.028283217921853065, + 0.002894952893257141, + 0.009054523892700672, + 0.007466331589967012, + -0.0033498089760541916, + -0.0018255088943988085, + -0.007070804480463266, + 0.003745335852727294, + -0.023524725809693336, + 0.0059754992835223675, + -0.011884063482284546, + -0.005838586017489433, + 0.011628491804003716, + -0.026530729606747627, + -0.013800847344100475, + 0.01133641041815281, + -0.014591901563107967, + 0.015638526529073715, + 0.019106993451714516, + 0.03037646785378456, + -0.018668871372938156, + -0.014007738791406155, + 0.005707758013159037, + -0.0056195249781012535, + -0.0075150118209421635, + -0.0007895326125435531, + -0.01425113994628191, + 0.0017570523777976632, + -0.005875096190720797, + -0.0046063675545156, + 0.0011264911154285073, + 0.008865888230502605, + -0.0019061355851590633, + 0.0027854223735630512, + -0.021492324769496918, + 0.015760226175189018, + -0.010326295159757137, + 7.725135219516233e-5, + -0.008269555866718292, + -0.024425309151411057, + 0.007070804480463266, + -0.006681362632662058, + -0.006748298183083534, + -0.00887805875390768, + 0.010904373601078987, + 0.010648801922798157, + -0.0029740582685917616, + -0.007861858233809471, + -0.005333528388291597, + -0.03945533186197281, + 0.013034133240580559, + 0.0057868631556630135, + 0.017999518662691116, + -0.006066774483770132, + 0.015054363757371902, + -0.01675817184150219, + -0.012608181685209274, + -0.011257304809987545, + -0.009322265163064003, + 0.015748057514429092, + -0.02135845459997654, + 0.0027854223735630512, + 0.008269555866718292, + -0.01138509064912796, + -0.03575563430786133, + -0.011884063482284546, + 0.009711707010865211, + -0.01160415168851614, + 0.006967359222471714, + 0.009815152734518051, + 0.00016401056200265884, + 0.00688825361430645, + -0.01139726024121046, + 0.01307064387947321, + 0.013204514980316162, + -0.011482451111078262, + 0.01578456722199917, + 0.016356559470295906, + -0.00024264055537059903, + 0.013886038213968277, + -0.012778562493622303, + 0.02577618509531021, + 0.00829998031258583, + -0.016490431502461433, + -0.013460085727274418, + 0.0011881020618602633, + 0.008683337830007076, + 0.016539111733436584, + 0.021017692983150482, + -0.023987187072634697, + -0.0038335686549544334, + -0.0072168451733887196, + 0.009468305855989456, + 0.02295273169875145, + 0.008987588807940483, + -0.0029801432974636555, + -0.006638767663389444, + 0.0069916993379592896, + 0.01311932411044836, + 0.019545115530490875, + 0.018547169864177704, + 0.0007940963841974735, + 0.012060528621077538, + 0.011445940472185612, + 0.0019167843274772167, + 0.021723555400967598, + -0.03081458993256092, + -0.00509621249511838, + -0.005899436306208372, + -0.02845359966158867, + -0.008330405689775944, + -0.005032319575548172, + -0.005616482347249985, + -0.019545115530490875, + 0.020628251135349274, + 0.0015448369085788727, + -0.012729882262647152, + -7.99135523266159e-5, + -0.0016901170602068305, + 0.011847552843391895, + 0.008585977368056774, + -0.009492645971477032, + 0.024449650198221207, + 0.008233045227825642, + 0.01019242499023676, + -0.011445940472185612, + 0.006675277836620808, + 0.016770342364907265, + 0.0011842988897114992, + 0.003733165794983506, + -0.010971308685839176, + -0.013873867690563202, + 0.02122458443045616, + -0.028331898152828217, + -0.0017829136922955513, + 0.011026074178516865, + 0.02940286323428154, + 0.027479995042085648, + 0.011853638105094433, + 0.0005351023282855749, + 0.02272150106728077, + -0.02420624904334545, + -0.008914568461477757, + 0.010082894004881382, + -0.003647975390776992, + 0.003185512963682413, + -0.004159118048846722, + 0.02143147401511669, + -0.01207878440618515, + -0.012997623533010483, + -0.015967117622494698, + -1.5129380699363537e-5, + 0.0014558433322235942, + 0.007557606790214777, + 0.014105099253356457, + 0.013447916135191917, + 0.020749950781464577, + -0.004618537612259388, + -0.012267420068383217, + 0.0018863591831177473, + -0.01056361198425293, + 0.009711707010865211, + -0.023634254932403564, + 0.004499879665672779, + -0.027406973764300346, + -0.0015372306806966662, + -0.0007682350114919245, + 0.005862926132977009, + -0.03079025074839592, + -0.002840187633410096, + -0.000205369753530249, + -0.014458030462265015, + 0.0021267179399728775, + -0.04327673092484474, + 0.006069817114621401, + 0.006310175638645887, + 0.018437640741467476, + 0.010040299035608768, + 0.014677091501653194, + -0.025484103709459305, + 0.01562635600566864, + -0.001058034598827362, + 0.0009424189920537174, + 0.010399315506219864, + -0.014056419022381306, + -0.018827082589268684, + 0.008628572337329388, + -0.037532463669776917, + 0.011293815448880196, + 0.013021963648498058, + 0.007332460954785347, + 0.0022879710886627436, + 0.019033972173929214, + -0.012279589660465717, + -0.01193882804363966, + -0.007734072860330343, + -0.004925831686705351, + 0.006383195985108614, + 0.002079559024423361, + 0.0034167442936450243, + 0.005494781769812107, + -0.010502761229872704, + -0.001904614269733429, + -0.0038944189436733723, + -0.018741890788078308, + -0.0036266776733100414, + 0.007861858233809471, + 0.028770020231604576, + 0.023561235517263412, + -0.007618457078933716, + -0.0013189301826059818, + 0.01855934038758278, + -0.004521177150309086, + -0.02315962314605713, + 0.0013014357537031174, + 0.0241575688123703, + -0.01590626686811447, + 0.002852357691153884, + 0.00043584025115706027, + 0.01112951897084713, + -0.01069139689207077, + -0.003836611285805702, + -0.0021267179399728775, + -0.024899940937757492, + 0.014786622487008572, + 0.0071194847114384174, + 6.826642493251711e-5, + -0.005729055497795343, + 0.018936611711978912, + -0.0032098530791699886, + 0.036948300898075104, + -0.017488375306129456, + -0.00015954187256284058, + 0.025362404063344002, + -0.007661052513867617, + 0.018364619463682175, + 0.014202459715306759, + 0.01354527659714222, + -0.007320290897041559, + 0.0026317753363400698, + -0.01359395682811737, + -0.0044451141729950905, + -0.005135765299201012, + -0.006310175638645887, + 0.0011782138608396053, + -0.006170220207422972, + 0.00806874968111515, + 0.014725771732628345, + 0.0183524489402771, + 0.0020065384451299906, + -0.001154634403064847, + 0.002117590280249715, + 0.018109047785401344, + -0.0009477433632127941, + 0.007137740030884743, + 0.006571832112967968, + -0.0023107901215553284, + -0.012066613882780075, + 0.017001572996377945, + 0.0368022583425045, + -0.010028129443526268, + -0.008719847537577152, + -0.011981423944234848, + 0.022916221991181374, + 0.002131281653419137, + 0.0027260934002697468, + 0.01593060791492462, + -0.0025830951053649187, + -0.0002958845579996705, + 0.005476526916027069, + -0.026262987405061722, + 0.018023857846856117, + 0.013886038213968277, + -0.004210840445011854, + 0.003092716448009014, + -0.01636872999370098, + 0.013484425842761993, + 0.019289543852210045, + -0.006693532690405846, + 0.009370945394039154, + -0.01629570871591568, + -0.011963168159127235, + 0.027455653995275497, + -0.016198348253965378, + 0.009480476379394531, + 0.007320290897041559, + 0.004104352556169033, + 0.008665082044899464, + 0.00806874968111515, + 0.009036269038915634, + 0.01768309623003006, + 0.03154479339718819, + 0.0035719124134629965, + 0.01698940247297287, + 0.009450051002204418, + -0.0023457789793610573, + -0.01634438894689083, + 0.02094467170536518, + -0.01585758663713932, + -0.0007465570815838873, + -0.028818700462579727, + -0.005278763361275196, + 0.021005522459745407, + 0.012729882262647152, + 0.020628251135349274, + 0.01768309623003006, + 0.015224744565784931, + -0.0195086058229208, + 0.037532463669776917, + 0.015224744565784931, + -0.003912674263119698, + 0.008178279735147953, + 0.025557124987244606, + -0.001986762275919318, + -0.01899746246635914, + -0.012011848390102386, + 0.024169737473130226, + 0.007886198349297047, + 0.020031917840242386, + 0.018133388832211494, + -0.0010648801689967513, + -0.0071681649424135685, + -0.001536470022983849, + -0.004451199434697628, + 0.0025435425341129303, + 0.013107153587043285, + 0.0014969173353165388, + 0.005023192148655653, + 0.015455975197255611, + 0.027966797351837158, + -0.00806874968111515, + -0.00046094099525362253, + -0.00504448963329196, + 0.0207134410738945, + -0.004487709607928991, + 0.029086442664265633, + -0.008141770027577877, + -0.00823913048952818, + 0.018595850095152855, + -0.008859802968800068, + -0.0033224262297153473, + 0.010447995737195015, + -0.012973283417522907, + 0.00045143315219320357, + 0.013752167113125324, + -0.014299820177257061, + -0.0009652378503233194, + 0.02801547758281231, + -0.0008153939852491021, + 0.012790732085704803, + 0.010289785452187061, + -0.01354527659714222, + -0.013739997521042824, + 0.02177223563194275, + -0.015602015890181065, + 0.0028888678643852472, + -0.022867541760206223, + 0.012267420068383217, + -0.026287328451871872, + 0.005844671279191971, + -0.00596332922577858, + -0.006334515754133463, + -0.003380234120413661, + 0.003292001085355878, + -0.01788998767733574, + -0.015419465489685535, + -0.00477370573207736, + -0.007886198349297047, + 0.02156534604728222, + 0.014543221332132816, + -0.0027443484868854284, + 0.002082601422443986, + -0.032348018139600754, + 0.022733671590685844, + 0.01565069705247879, + -0.012559501454234123, + -0.0055708447471261024, + 0.01992238685488701, + -0.0032494058832526207, + -0.014835302717983723, + 0.0023488213773816824, + 0.013180174864828587, + 0.019630305469036102, + 0.026530729606747627, + -0.01821857877075672, + 0.015711545944213867, + 0.020810801535844803, + 0.005303103476762772, + -0.02521636337041855, + 0.008044409565627575, + -0.009504816494882107, + 0.03040080890059471, + 0.008805038407444954, + -0.008269555866718292, + 0.0062310704961419106, + -0.014117268845438957, + -0.01535861473530531, + 0.01328970491886139, + -0.00010078330524265766, + 0.015382954850792885, + -0.005391336511820555, + 0.030571188777685165, + 0.014202459715306759, + -0.014531050808727741, + -0.003647975390776992, + -0.01354527659714222, + 0.011652831919491291, + -0.015419465489685535, + -0.002335130237042904, + 0.009084949269890785, + 0.005260508041828871, + -0.002806719858199358, + 0.005032319575548172, + -0.01578456722199917, + 0.014445860870182514, + -0.015370785258710384, + -0.010338465683162212, + 0.017439695075154305, + -0.004977554548531771, + 0.018109047785401344, + 0.00688825361430645, + 0.018291600048542023, + -0.0029573244974017143, + 0.007332460954785347, + -0.013472256250679493, + -0.03259141743183136, + 0.0048497687093913555, + 0.022684991359710693, + 0.012431715615093708, + 0.0018452852964401245, + -0.02087165229022503, + -0.01264469139277935, + -0.0057686083018779755, + 0.02935418300330639, + -0.0004472496802918613, + -0.004931916482746601, + -0.02267282083630562, + 0.004804131109267473, + 0.005738182924687862, + -0.001445955247618258, + 0.030254768207669258, + -0.007454161532223225, + 0.015200404450297356, + -0.02045786939561367, + -0.01207878440618515, + 0.004572900012135506, + -0.008038324303925037, + -0.010314125567674637, + -0.002373161492869258, + 0.015030023641884327, + 0.0010025086812675, + 0.011026074178516865, + 0.0028249749448150396, + -0.006675277836620808, + -0.0027124020271003246, + -0.018547169864177704, + -0.023780295625329018, + -0.007600202225148678, + 0.01492049265652895, + -0.025508444756269455, + 0.006097199860960245, + 0.020798631012439728, + -0.013679146766662598, + -0.027893776074051857, + 0.002764124656096101, + -0.0034623818937689066, + 0.004679387900978327, + 0.024096718057990074, + 0.001749446033500135, + -0.007064719684422016, + 0.0028508363757282495, + 0.01891227252781391, + 0.005792948417365551, + 0.019155673682689667, + -0.012303929775953293, + -0.005899436306208372, + -0.01627136953175068, + 0.0068030632100999355, + 0.004874108824878931, + 0.01160415168851614, + 0.008798953145742416, + -0.0061823902651667595, + 0.0028188899159431458, + -0.0010192424524575472, + 0.009565666317939758, + -0.017537055537104607, + 0.012285674922168255, + 0.013034133240580559, + 0.0063892812468111515, + 0.0033528513740748167, + 0.004384263884276152, + -0.023196132853627205, + 0.0028143262024968863, + -0.00796530395746231, + -0.005732098128646612, + -0.013508765958249569, + -0.002108462853357196, + 0.005558674689382315, + 1.7946083517017541e-6, + -0.009626517072319984, + -0.016855532303452492, + -0.0368996188044548, + -0.023037923499941826, + 0.017999518662691116, + -0.006094157230108976, + 0.014835302717983723, + -0.00241271429695189, + 0.012547330930829048, + 0.001956337131559849, + -0.0005252141272649169, + 0.021017692983150482, + 0.021966956555843353, + 0.01286375243216753, + -0.008421680890023708, + 0.004770663101226091, + -0.010752247646450996, + -3.406190444366075e-5, + -0.008640741929411888, + 0.005190530326217413, + 0.0062980055809021, + 0.0012489523505792022, + 0.01332621555775404, + -0.024899940937757492, + -0.009705622680485249, + 0.013021963648498058, + -0.0009530677925795317, + -0.012547330930829048, + 0.006517066620290279, + -0.0017524885479360819, + 0.0037362081930041313, + 0.010015958920121193, + -0.016149668022990227, + -0.017354505136609077, + -0.0115007059648633, + 0.011835383251309395, + -0.02084731124341488, + -0.007429821416735649, + -0.011366835795342922, + -0.04320371150970459, + 0.009170140139758587, + -0.011774532496929169, + -0.007472416386008263, + -0.021711386740207672, + 0.01468926202505827, + 0.009139714762568474, + 0.03388144448399544, + 0.008768527768552303, + -0.009882088750600815, + 0.007502841763198376, + -8.79476938280277e-5, + -0.00119342643301934, + 0.003037951188161969, + -0.01983719691634178, + 0.01220656931400299, + -0.001513651106506586, + -0.007277695462107658, + -0.018827082589268684, + -0.007685392629355192, + -0.01539512537419796, + -0.015662865713238716, + 0.003386319149285555, + -0.010405400767922401, + -0.00997336395084858, + -0.017561396583914757, + -0.027333954349160194, + -0.002461394527927041, + 0.0018711466109380126, + -0.02801547758281231, + 0.008093089796602726, + 0.008786782622337341, + -0.016928553581237793, + -0.010551441460847855, + -0.009827323257923126, + -0.009876003488898277, + -0.004289946053177118, + 0.005376123823225498, + -0.018230749294161797, + 0.006644852459430695, + 0.010587952099740505, + -0.01860802061855793, + 0.021248923614621162, + -0.030060047283768654, + 0.0025237661320716143, + 0.0053548263385891914, + 0.0008169152424670756, + 0.006069817114621401, + -1.1546106179594062e-5, + 0.018620191141963005, + 0.0020247935317456722, + 0.003285916056483984, + -0.028283217921853065, + -0.004116522613912821, + -0.0007834475836716592, + -0.012036188505589962, + -0.012973283417522907, + 0.0019639432430267334, + 0.02048221044242382, + -0.008001813665032387, + -0.014372840523719788, + 0.0007146106800064445, + 0.009529156610369682, + -0.004028289578855038, + -0.025167683139443398, + -0.002240812173113227, + -0.011774532496929169, + -0.0035566999576985836, + 0.002406629268079996, + -0.02094467170536518, + -0.00295580318197608, + -0.006742212921380997, + -0.005029276944696903, + 0.0019259118707850575, + 0.006869998760521412, + -0.0073750559240579605, + 0.0034684669226408005, + 0.01308281347155571, + 0.018048198893666267, + -0.026482049375772476, + -0.00206282502040267, + 0.0010587951401248574, + -0.003191597992554307, + -0.01863236166536808, + 0.017561396583914757, + 0.020749950781464577, + 0.008561637252569199, + 0.014823132194578648, + 0.008190450258553028, + 0.013350555673241615, + 0.01308281347155571, + 0.006650937721133232, + -0.020835142582654953, + -0.017257144674658775, + 0.031155351549386978, + -0.018802741542458534, + -0.01796300709247589, + 0.012669031508266926, + -0.01286375243216753, + 0.009170140139758587, + 0.004061757121235132, + -0.004904533736407757, + -0.0016718619735911489, + -0.004116522613912821, + 0.004006992094218731, + -0.016076648607850075, + -0.019800687208771706, + -0.005150977522134781, + 0.03264009952545166, + -0.003395446576178074, + 0.014993513002991676, + 0.009529156610369682, + 0.009127544239163399, + -0.0032889586873352528, + -0.010788757354021072, + -0.014092928729951382, + 0.0032281081657856703, + -0.010003789328038692, + 0.008999759331345558, + 0.005172275472432375, + 0.007612372282892466, + -0.018279429525136948, + -0.017670925706624985, + -0.008172194473445415, + 0.003946141805499792, + 0.018084708601236343, + 0.009565666317939758, + 0.02115156315267086, + -0.033759746700525284, + 0.0013394671259447932, + -0.001626224140636623, + 0.007983558811247349, + -0.004113479983061552, + 0.003098801476880908, + -0.004828471224755049, + 0.0031946406234055758, + -0.003702740650624037, + -0.041134800761938095, + -0.006127624772489071, + -0.03117969259619713, + 0.0002875176433008164, + -0.008196534588932991, + -0.01561418641358614, + 0.010381060652434826, + -0.002380767837166786, + -0.008768527768552303, + -0.0018681040965020657, + 0.01024110522121191, + -0.0010489070555195212, + 0.003438041778281331, + 0.009358775801956654, + 0.0196059662848711, + -0.001620139111764729, + -0.00499276677146554, + 0.006681362632662058, + -0.0034015316050499678, + -0.021273264661431313, + 0.007521096616983414, + -0.011555471457540989, + -0.012888092547655106, + 0.020883822813630104, + 0.00688825361430645, + -0.008847633376717567, + 0.00488323625177145, + 0.0022332058288156986, + -0.007277695462107658, + -0.01047233585268259, + -0.00997336395084858, + -0.007058634422719479, + 0.000297405815217644, + -0.005948116537183523, + 0.00802006945014, + 0.026530729606747627, + -0.0067543829791247845, + -0.0033072137739509344, + -0.006097199860960245, + -0.016977233812212944, + 0.016490431502461433, + -0.0012268940918147564, + -0.02230771817266941, + -0.017354505136609077, + -0.026822810992598534, + -0.011080838739871979, + 0.023816807195544243, + 0.016356559470295906, + 0.022989241406321526, + 0.021443644538521767, + 0.025119002908468246, + -0.027966797351837158, + -0.0013607647269964218, + -0.011409430764615536, + -0.0036631878465414047, + -0.018413299694657326, + -0.01451888121664524, + 0.007016039453446865, + -0.036047715693712234, + -0.025654485449194908, + -0.0067543829791247845, + 0.005455228965729475, + 0.01128164492547512, + 0.004417731426656246, + -0.0008648348739370704, + 0.017743946984410286, + -0.016429580748081207, + 0.0027884647715836763, + -0.024048037827014923, + 0.0086589977145195, + -0.012547330930829048, + 0.0002761082141660154, + 0.005464356858283281, + -0.007393311243504286, + -0.0033498089760541916, + -0.004718940705060959, + 0.009291840717196465, + 0.004207798279821873, + 0.008871973492205143, + -0.011902318336069584, + -0.013727826997637749, + -0.012547330930829048, + 0.026287328451871872, + 0.01611315831542015, + -0.009072779677808285, + -0.00023332286218646914, + -0.021516665816307068, + -0.009437881410121918, + 0.01067922729998827, + -0.00916405487805605, + 0.027966797351837158, + -0.003030344843864441, + -0.006657022517174482, + 0.022222528234124184, + 0.0036875279620289803, + -0.0009272064198739827, + -0.002435533097013831, + -0.030206087976694107, + 0.012364780530333519, + -0.007417651358991861, + 0.006383195985108614, + -0.010916543193161488, + -0.018340280279517174, + 0.007496756501495838, + -0.004174330271780491, + 0.007253355346620083, + 0.0003179428167641163, + 0.009078864008188248, + 0.005799033213406801, + 0.008512957021594048, + 0.0022453758865594864, + -0.004381221253424883, + -0.02073778212070465, + 0.017342334613204002, + 0.017561396583914757, + 0.007551521994173527, + 0.01561418641358614, + 0.014202459715306759, + 0.006833488587290049, + 0.014372840523719788, + 0.004965384490787983, + -0.011725852265954018, + 0.0006602257490158081, + -0.001354679698124528, + -0.011695426888763905, + 0.015845417976379395, + -0.015236914157867432, + -0.0017205422045663, + -0.014664921909570694, + -0.015638526529073715, + 0.01747620478272438, + -0.01855934038758278, + 0.005239210557192564, + -0.037021320313215256, + -0.009352690540254116, + -0.00015925664047244936, + 0.022478099912405014, + -0.009170140139758587, + 0.003079025074839592, + 0.004731110762804747, + -0.012729882262647152, + 0.01879057101905346, + -0.019861537963151932, + 0.008007898926734924, + -0.03312690183520317, + -0.0024705221876502037, + -0.01742752455174923, + 0.004846726078540087, + 0.02325698360800743, + 0.022015636786818504, + 0.0073568010702729225, + 0.004399476572871208, + 0.008421680890023708, + -0.030960630625486374, + 0.00037365886964835227, + 0.0060150520876049995, + 0.004107395187020302, + 0.005935946479439735, + 0.009218820370733738, + -0.017975177615880966, + 0.0034045742359012365, + -0.006967359222471714, + 0.0025922227650880814, + 0.00449683703482151, + 0.00022115280444268137, + 0.018084708601236343, + 0.020798631012439728, + 0.019642475992441177, + -0.017573565244674683, + 0.0021404093131422997, + -0.010417571291327477, + -0.004901491571217775, + -0.013934718444943428, + 0.013520936481654644, + 0.0002901798579841852, + 0.022405078634619713, + -0.007679307367652655, + -0.017573565244674683, + 0.008780698291957378, + -0.015078703872859478, + -0.0015037630219012499, + -0.0017281484324485064, + 0.02197912707924843, + 0.009742132388055325, + -0.023062262684106827, + 0.008592061698436737, + -0.003794016083702445, + 0.0024020655546337366, + -0.0024659582413733006, + 0.027041872963309288, + -0.01569937728345394, + 0.02531372383236885, + 0.012188314460217953, + 0.010064639151096344, + -0.009693452157080173, + 0.003754463279619813, + 0.020543061196804047, + -0.010131574235856533, + 0.011068669147789478, + -0.031496115028858185, + -0.006316260900348425, + 0.009942938573658466, + 0.004889321513473988, + -0.0020445699337869883, + -0.020238809287548065, + -0.00932835042476654, + 0.02112722396850586, + -0.020287489518523216, + -0.008330405689775944, + 0.0014155299868434668, + 0.003903546603396535, + 0.0005795990582555532, + 0.01719629392027855, + -0.016307879239320755, + 0.024400969967246056, + -0.00031033653067424893, + -0.01451888121664524, + -0.005872053559869528, + -0.004429901484400034, + -0.008537297137081623, + 0.0006815233500674367, + -0.01604013890028, + -0.018255088478326797, + 0.03319992125034332, + 0.00877461303025484, + -0.00488323625177145, + -0.007399396039545536, + -0.010210679844021797, + 0.006876083556562662, + -0.016332220286130905, + 0.009340520948171616, + -0.011105178855359554, + 0.0030972801614552736, + -0.008713762275874615, + -0.03719170019030571, + -0.010861777700483799, + 0.0029877496417611837, + -0.03806794434785843, + -0.006124582607299089, + -0.021906107664108276, + -0.010332380421459675, + -0.012510821223258972, + 0.012571671046316624, + -0.00748458644375205, + -0.008172194473445415, + 0.006924763787537813, + 0.0012565586948767304, + -0.00954741146415472, + 0.028185857459902763, + -0.007636712398380041, + -0.0003053924301639199, + -0.006626597605645657, + 0.046246226876974106, + -0.006069817114621401, + -0.010502761229872704, + -0.011950998567044735, + -0.01311932411044836, + 0.022380739450454712, + -0.0071681649424135685, + 0.015200404450297356, + -0.007058634422719479, + -0.013046303763985634, + -0.0011827776907011867, + -0.009352690540254116, + 0.01752488501369953, + 0.008348660543560982, + -0.02371944673359394, + 0.032786138355731964, + -0.016149668022990227, + -0.01307064387947321, + 0.025094661861658096, + -0.01698940247297287, + -0.004107395187020302, + 0.006833488587290049, + -0.00575035298243165, + -0.01470143161714077, + -0.021918276324868202, + -0.01583324745297432, + -0.009912513196468353, + 0.00018140995234716684, + -0.008938908576965332, + 0.004083055071532726, + -0.005129680037498474, + -0.016697321087121964, + 0.027942456305027008, + 0.007715817540884018, + 0.012571671046316624, + 0.016490431502461433, + 0.0033132988028228283, + -0.023524725809693336, + -0.0033558940049260855, + 0.004402519203722477, + 0.02027531899511814, + -0.005887266248464584, + -0.008561637252569199, + 0.014178119599819183, + 0.024680880829691887, + -0.021370625123381615, + 0.002183004515245557, + 0.007904453203082085, + 0.008865888230502605, + -0.01750054582953453, + 0.0065657468512654305, + -0.0019289543852210045, + -0.0028934315778315067, + 0.02431577816605568, + -0.0057686083018779755, + 0.00101848179474473, + 0.00498668197542429, + -0.033857107162475586, + -0.008342576213181019, + -0.014153779484331608, + -0.018644530326128006, + 0.018230749294161797, + -0.011196454986929893, + -0.0002551909419707954, + -0.011184284463524818, + 0.004338626284152269, + 0.013581786304712296, + 0.0011181242298334837, + 0.01470143161714077, + -0.018364619463682175, + 0.007612372282892466, + 0.011616322211921215, + -0.026311669498682022, + 0.002729135798290372, + 0.010594036430120468, + -0.016770342364907265, + -0.004143905360251665, + 0.004311243537813425, + 0.01079484261572361, + -0.00455464469268918, + 0.006869998760521412, + 0.0048497687093913555, + 0.004384263884276152, + 0.0048406412824988365, + -0.014835302717983723, + -0.0149570032954216, + 0.008531211875379086, + 0.024279268458485603, + -0.004761535674333572, + 0.008421680890023708, + 0.015760226175189018, + -0.024352289736270905, + -0.03894418850541115, + 0.0016186179127544165, + -0.0008777655311860144, + -0.006766553036868572, + 0.006164134945720434, + 0.015553335659205914, + -0.0413295216858387, + 0.0014117269311100245, + 0.011549386195838451, + -0.013849527575075626, + -0.0029162506107240915, + -0.003851823741570115, + 0.010624461807310581, + -0.016405239701271057, + 0.012340440414845943, + 0.022660650312900543, + -0.02186959609389305, + -0.01307064387947321, + 0.0048010884784162045, + 0.002043048618361354, + 0.0040982672944664955, + -0.005074915010482073, + -0.004575942177325487, + 0.006742212921380997, + -0.009936853311955929, + 0.0010116362245753407, + 0.015419465489685535, + 0.011105178855359554, + -0.01562635600566864, + -0.008050493896007538, + 0.020981183275580406, + 0.014810962602496147, + -0.0024111929815262556, + -0.023975016549229622, + -0.024656539782881737, + -0.06007141247391701, + -0.007460246328264475, + -0.014092928729951382, + 0.0030060047283768654, + -0.029062101617455482, + -0.008744187653064728, + -0.00236099143512547, + 0.02186959609389305, + -0.011701512150466442, + -0.03726472333073616, + 0.0014885504497215152, + 0.006121539976447821, + 0.008373000659048557, + 0.01035672053694725, + -0.01012548990547657, + -0.011366835795342922, + -0.009243160486221313, + -0.0029938346706330776, + -0.024887772276997566, + -0.014178119599819183, + 0.007521096616983414, + -0.005138807464390993, + -0.02050654962658882, + 0.026944512501358986, + 0.007247270550578833, + -0.015565506182610989, + 0.0018285514088347554, + -0.0016992446035146713, + -0.044858839362859726, + 0.01604013890028, + 0.0011439855443313718, + 5.7855322666000575e-5, + 0.022989241406321526, + 0.006851743441075087, + -0.0029025592375546694, + -0.017317995429039, + 0.00997336395084858, + -0.008026153780519962, + 0.014409350231289864, + -0.012383035384118557, + -0.0036814429331570864, + -0.004685472697019577, + -0.004962341859936714, + -0.020007578656077385, + -0.011738022789359093, + -0.008531211875379086, + -0.0025115960743278265, + 0.010247190482914448, + -0.020068427547812462, + -0.0044268593192100525, + 0.007113399915397167, + -0.0044268593192100525, + -0.020372679457068443, + -0.005357868503779173, + 0.003001441014930606, + -0.0021966956555843353, + -0.0017266272334381938, + -0.0024248843546956778, + -0.018474150449037552, + 0.0016901170602068305, + -0.01694072224199772, + -0.022429419681429863, + 0.00851904135197401, + 0.0019411244429647923, + 0.003733165794983506, + 0.028258878737688065, + 0.02665243111550808, + 0.000517227512318641, + -0.002266673604026437, + 0.02443747967481613, + -0.013618296943604946, + -0.02580052614212036, + -0.004731110762804747, + -0.002099335193634033, + -0.016672981902956963, + 0.00796530395746231, + 0.020372679457068443, + -0.00873810239136219, + 0.009851663373410702, + 0.00666919257491827, + 0.01611315831542015, + 0.004186500329524279, + -0.005811203271150589, + 0.0058172885328531265, + 0.002832581289112568, + 0.006705702748149633, + -0.009358775801956654, + -0.0002622267638798803, + 0.001918305642902851, + 0.024899940937757492, + 0.009139714762568474, + 0.008379085920751095, + -0.00030177945154719055, + -0.014117268845438957, + 0.0206160806119442, + -0.001209399662911892, + -0.014117268845438957, + -0.030449489131569862, + 0.013946888037025928, + 0.004341668915003538, + 0.012754222378134727, + -0.0009104725904762745, + 0.01745186559855938, + -0.007314205635339022, + -0.0023473002947866917, + 0.00710731465369463, + -0.005379166454076767, + 0.013520936481654644, + -0.003815313568338752, + 0.016259199008345604, + 0.02045786939561367, + 0.007801007945090532, + -0.035560913383960724, + 0.00019852409604936838, + -0.004292988684028387, + -0.014202459715306759, + 0.009437881410121918, + -0.01569937728345394, + -0.006002882029861212, + -0.007630627136677504, + -0.005348741076886654, + -0.009011928923428059, + 0.0020780377089977264, + 0.004563772119581699, + 0.01860802061855793, + -0.02130977436900139, + 0.016855532303452492, + 0.003094237530604005, + -0.034173525869846344, + -0.002295577432960272, + -0.013009793125092983, + -0.03760548308491707, + 0.015455975197255611, + 0.03125271201133728, + 0.03035212866961956, + 0.007679307367652655, + 0.013533106073737144, + 0.003851823741570115, + 0.001203314634039998, + -0.02305009216070175, + 0.009857747703790665, + -0.004460326861590147, + -0.01061229221522808, + -0.01078267302364111, + 0.0006495769484899938, + -0.024534840136766434, + -0.03736208379268646, + 0.0052544232457876205, + -0.009285755455493927, + 0.006790893152356148, + 0.008512957021594048, + -0.009346605278551579, + -0.00899367406964302, + -0.00046322288108058274, + -0.015796737745404243, + 0.0007553042960353196, + -0.0092127351090312, + 0.0020658676512539387, + 0.02084731124341488, + 0.0010070723947137594, + -0.019593795761466026, + -0.032786138355731964, + 0.019240863621234894, + -0.01955728605389595, + 0.006796978414058685, + -0.002564840018749237, + -0.007715817540884018, + -0.008141770027577877, + -0.010934798046946526, + 0.03264009952545166, + -0.006821318529546261, + 0.006650937721133232, + -0.008129599504172802, + 0.004095225129276514, + -0.027212252840399742, + -0.012717711739242077, + 0.009729962795972824, + 0.011226879432797432, + -0.008592061698436737, + -0.010040299035608768, + 0.0004168245359323919, + 0.0004696882388088852, + -0.035706955939531326, + -0.011567641980946064, + -0.02138279378414154, + 0.00591160636395216, + -0.005172275472432375, + 0.003337638918310404, + 0.0052635506726801395, + 0.018766231834888458, + 0.01742752455174923, + -0.01517606433480978, + -0.018571510910987854, + -0.019898047670722008, + -0.0014269395032897592, + -0.01404424849897623, + -0.008798953145742416, + 0.016417410224676132, + -0.004944086540490389, + 0.011068669147789478, + -0.0007119484944269061, + -0.027358293533325195, + -0.0020034960471093655, + 0.004174330271780491, + 0.010709652677178383, + 0.004000906832516193, + 0.004003949463367462, + -0.01193882804363966, + -0.022271208465099335, + -0.0012930688681080937, + 0.007539351936429739, + -0.0003390502533875406, + -0.02757735550403595, + 0.004259520675987005, + -0.003079025074839592, + 0.020287489518523216, + -0.014360670000314713, + 0.008652912452816963, + -0.00541567662730813, + 0.004752408247441053, + -0.012024018913507462, + 0.010283700190484524, + -0.012948943302035332, + -0.025435423478484154, + -0.006255410611629486, + -0.012474310584366322, + -0.01311932411044836, + 0.008482531644403934, + -0.00219365325756371, + -0.01976417750120163, + -0.005023192148655653, + 0.009936853311955929, + -0.002639381680637598, + 0.014360670000314713, + 0.004694600589573383, + 0.001986762275919318, + -0.006328430958092213, + -0.013387065380811691, + 0.021321944892406464, + 0.0017570523777976632, + -0.001646000542677939, + 0.002975579584017396, + -0.010922628454864025, + 0.006827403325587511, + -0.019423414021730423, + 0.007636712398380041, + -0.019727665930986404, + 0.02038484998047352, + -0.001574501395225525, + -0.002797592431306839, + 0.045759424567222595, + 0.014141608960926533, + 0.005074915010482073, + 0.005379166454076767, + 0.006553576793521643, + 0.012778562493622303, + 0.029086442664265633, + 0.0010458645410835743, + -0.004000906832516193, + -0.010466251522302628, + 0.010155914351344109, + 0.016587791964411736, + -0.0024233630392700434, + 0.008178279735147953, + 0.009066694416105747, + -0.003760548308491707, + 0.002963409526273608, + -0.007734072860330343, + -0.010235019959509373, + 0.00847036112099886, + 0.022112997248768806, + 0.014591901563107967, + -0.01539512537419796, + 0.0010002267081290483, + -0.010995648801326752, + 0.009261415340006351, + 0.023561235517263412, + 0.0025891801342368126, + -0.009504816494882107, + -0.001196468947455287, + 0.0023488213773816824, + 0.006139794830232859, + -0.004043502267450094, + 0.004201713018119335, + -0.011239049956202507, + 0.011768447235226631, + -0.00710731465369463, + -0.001203314634039998, + -0.003815313568338752, + -0.001445955247618258, + -0.0044846669770777225, + 0.010758332908153534, + -0.020080598071217537, + -0.02580052614212036, + 0.0028021561447530985, + 0.014786622487008572, + 0.007837518118321896, + -0.007490671705454588, + 0.0034958496689796448, + 0.0009850141359493136, + 0.020749950781464577, + 0.006796978414058685, + 0.01927737332880497, + 0.023403024300932884, + -0.008677252568304539, + -0.023147452622652054, + 0.006164134945720434, + -0.006517066620290279, + -0.003237235825508833, + -0.022405078634619713, + -0.007642797194421291, + -0.0071012298576533794, + -0.027309613302350044, + 0.008026153780519962, + 0.015723716467618942, + 0.010441911406815052, + 0.01837678998708725, + 0.007959218695759773, + -0.010861777700483799, + -0.0032585333101451397, + -0.026798471808433533, + 0.02115156315267086, + 0.001419333158992231, + 0.011616322211921215, + 0.0001911079598357901, + 0.004874108824878931, + -0.0058081611059606075, + 0.0011782138608396053, + -0.0010435825679451227, + 0.0020323998760432005, + -0.004463369492441416, + 0.0038883339148014784, + 0.0062493253499269485, + -0.016843361780047417, + -0.004466411657631397, + 0.008433851413428783, + -0.005266593303531408, + -0.0020521762780845165 + ], + "4d609ec0-9a7a-46ce-a769-d2daf0141978": [ + -0.02782200276851654, + -0.025039803236722946, + -0.009769031777977943, + 0.0338626354932785, + -0.0011569003108888865, + -0.005398345645517111, + -0.0193250123411417, + 0.04323689639568329, + 0.0011365350801497698, + 0.05253596231341362, + -0.004596270155161619, + 0.030554072931408882, + 0.04263534024357796, + 0.002338865539059043, + 0.004376952536404133, + -0.02247065305709839, + -0.02298448421061039, + 0.01015127170830965, + -0.020465465262532234, + -0.02992745116353035, + 0.04809948056936264, + -0.01601644977927208, + -0.02094169706106186, + 0.022508250549435616, + -0.0016730799106881022, + -0.01846027560532093, + -0.02054065838456154, + -0.0052510895766317844, + -0.03501562029123306, + 0.0006704851984977722, + -0.0065105995163321495, + 0.02480168640613556, + -0.0009086014470085502, + -0.010389387607574463, + -0.020127087831497192, + 0.0012595095904543996, + -0.02384922094643116, + 0.007306409068405628, + -0.0005526019958779216, + 0.004705928731709719, + -0.033110689371824265, + -0.0032490333542227745, + 0.012726686894893646, + -0.02145552635192871, + -0.0008733539725653827, + 0.005648994352668524, + -0.018447741866111755, + 0.03802340477705002, + 0.05153336748480797, + -0.011185197159647942, + 0.029250700026750565, + -0.0057241893373429775, + 0.0043926178477704525, + 0.0017279093153774738, + 0.03644431754946709, + -0.02433798648416996, + 0.007036961615085602, + 0.03749704360961914, + 0.044339749962091446, + -0.04421442747116089, + 0.004138836171478033, + 0.00568032544106245, + 0.009205072186887264, + -0.015527685172855854, + 0.027972392737865448, + -0.010702698491513729, + 0.014988791197538376, + -0.026568759232759476, + -0.019563129171729088, + 0.015465022996068, + 0.005539335776120424, + -0.012826945632696152, + -0.015164244920015335, + -0.017432615160942078, + 0.04654546082019806, + -0.013196652755141258, + 0.04128183797001839, + 0.012971068732440472, + 0.05000441148877144, + 0.0018892644438892603, + -0.0246011670678854, + -0.03032848984003067, + -0.010734029114246368, + -0.04288598895072937, + 0.03824898973107338, + -0.004508542828261852, + -0.06241152063012123, + -0.014938660897314548, + -0.0017623734893277287, + 0.007657316979020834, + 0.0060813636519014835, + -8.562197763239965e-5, + 0.0055863321758806705, + 0.01612924225628376, + -0.002946688560768962, + 0.011316787451505661, + -0.020615853369235992, + 0.004972243215888739, + -0.00617848988622427, + -0.0434374138712883, + -0.043537676334381104, + 0.0006618691841140389, + -0.04017898440361023, + -0.00044842614443041384, + 0.0001789788220776245, + 0.03353679180145264, + 0.018886378034949303, + -0.005987370386719704, + -0.009888090193271637, + 0.006968033034354448, + -0.04002859443426132, + -0.057849712669849396, + 0.03441406413912773, + -0.01584099605679512, + -0.018999170511960983, + -0.05323777720332146, + 0.013246782124042511, + 0.031982772052288055, + -0.034639645367860794, + -0.022796496748924255, + 0.039502229541540146, + 0.002432858804240823, + 0.04233456030488014, + 0.04118157923221588, + 0.027471095323562622, + 0.009712636470794678, + 0.006350810639560223, + 0.03070446290075779, + 0.060556720942258835, + 0.012908406555652618, + -0.013234250247478485, + 0.02762148343026638, + 0.01258882973343134, + -0.012933471240103245, + -0.02837342955172062, + -0.005326284561306238, + 0.0493025928735733, + 0.07013150304555893, + -0.024851815775036812, + -0.013384639285504818, + -0.05835101008415222, + 0.021292604506015778, + 0.014788271859288216, + 0.0029905519913882017, + -0.008146082051098347, + -0.014988791197538376, + -0.03423861041665077, + 0.04634493961930275, + -0.02764654904603958, + 0.06461723148822784, + -0.01090321782976389, + -0.0415826141834259, + -0.020665982738137245, + 0.03722132742404938, + 0.0048876493237912655, + 0.008616047911345959, + -0.01938767544925213, + 0.044364817440509796, + -0.01215646043419838, + 0.003913252614438534, + 0.021305138245224953, + -0.037020809948444366, + 0.015966320410370827, + -0.007569590117782354, + 0.05639595165848732, + -0.007193617057055235, + 0.04423949122428894, + 0.06411593407392502, + -0.04288598895072937, + 0.008221276104450226, + 0.020615853369235992, + -0.004511676263064146, + 0.018974104896187782, + -0.02304714545607567, + -0.02209467999637127, + -0.016893720254302025, + -0.008471924811601639, + -0.025265386328101158, + 0.025653891265392303, + -0.001836001523770392, + -0.035065751522779465, + 0.0011373183224350214, + -0.007494395598769188, + 0.0005271455156616867, + 0.02566642500460148, + 0.023310326039791107, + -0.013108925893902779, + 0.00606256490573287, + 0.010853087529540062, + 0.02977706305682659, + 0.016831059008836746, + -0.0502801239490509, + 0.00802075769752264, + 0.03809859976172447, + 0.010013414546847343, + -0.03629392758011818, + 0.007745044305920601, + -0.018121900036931038, + 0.0062599508091807365, + 0.025616293773055077, + -0.028473690152168274, + -0.0010942381341010332, + -0.04113144800066948, + -0.005789984483271837, + -0.04366299882531166, + 0.012996133416891098, + -0.01889890991151333, + 0.0022715036757290363, + 0.005448475480079651, + -0.02287169173359871, + 0.06396554410457611, + -0.024613700807094574, + 0.023711364716291428, + -0.008954423479735851, + 0.018096834421157837, + 0.012432174757122993, + 0.009399325586855412, + -0.03531640022993088, + -0.02300954796373844, + -0.035065751522779465, + -0.02131767012178898, + -0.05093181133270264, + 0.010019680485129356, + -0.02819797582924366, + -0.0338125079870224, + 0.017382485792040825, + -0.032935235649347305, + 0.044515203684568405, + -0.027571354061365128, + -0.034288737922906876, + 0.0013370540691539645, + -0.013710482977330685, + -0.021894162520766258, + 0.012801880948245525, + -0.006350810639560223, + 0.049728699028491974, + 0.02977706305682659, + 0.0007539042271673679, + 0.01268908940255642, + 0.004918980412185192, + 0.025453373789787292, + 0.019939102232456207, + -0.014600285328924656, + -0.02465129643678665, + -0.013986196368932724, + 0.010452049784362316, + -0.03529133275151253, + 0.01972605101764202, + 0.0074755968526005745, + 0.000600381928961724, + -0.01779605634510517, + -0.013447301462292671, + 0.041632745414972305, + -0.025541100651025772, + 0.004145102575421333, + 0.017470212653279305, + 0.018297353759407997, + -0.009812895208597183, + 0.0027383367996662855, + -0.04358780384063721, + 0.006711118388921022, + 0.005432810168713331, + -0.02493954263627529, + -0.016918785870075226, + 0.06912890821695328, + -0.01950046606361866, + 0.04230949655175209, + 0.012770550325512886, + 0.004543007351458073, + 0.015903659164905548, + 0.029100311920046806, + -0.022307733073830605, + 0.03599315136671066, + -0.01757047139108181, + 0.00413257023319602, + 0.003556078067049384, + -0.041607681661844254, + -0.0017843052046373487, + -0.011297988705337048, + -0.009092280641198158, + -0.03413834795355797, + 0.009499585255980492, + 0.025967203080654144, + 0.013835807330906391, + 0.016254566609859467, + -0.013159055262804031, + -0.03591795638203621, + -0.01381074171513319, + -0.05038038268685341, + -0.031230825930833817, + 0.017695795744657516, + 0.0012430608039721847, + 0.019538063555955887, + -0.002602046588435769, + 0.033887699246406555, + -0.0018078035209327936, + -0.015038920566439629, + -0.011041074059903622, + -0.012482304126024246, + -0.0028918590396642685, + 0.0024845548905432224, + -0.005768052767962217, + 0.005739854648709297, + -0.00406050868332386, + -0.03569237142801285, + -0.02952641434967518, + 0.05058090388774872, + -0.0034808835480362177, + 0.0043424884788692, + 0.017958978191018105, + 0.05143310874700546, + -0.041607681661844254, + -0.018585599958896637, + -0.03609341010451317, + 0.032935235649347305, + -0.01584099605679512, + -0.029025116935372353, + 0.024964608252048492, + -0.03551691770553589, + 0.0164174884557724, + 0.008772703818976879, + 0.009167475625872612, + 0.0007609536987729371, + 0.0232100673019886, + 0.0022856025025248528, + -0.045317281037569046, + 0.0041419691406190395, + -0.0472974069416523, + -0.0024547905195504427, + -0.026994861662387848, + -0.002553483471274376, + -0.020553192123770714, + -0.035090815275907516, + -0.004812454804778099, + -0.02114221639931202, + -0.02021481655538082, + -0.049528177827596664, + -0.0017263427143916488, + -0.04496637359261513, + -0.020954228937625885, + 0.0007206149166449904, + -0.016542812809348106, + 0.021480591967701912, + -0.0024657563772052526, + -0.0015649877022951841, + 0.001658980967476964, + 0.05815049260854721, + 0.02287169173359871, + 0.01958819478750229, + 0.0008952857460826635, + 0.0005330200656317174, + -0.006407206878066063, + 0.011479709297418594, + -0.002910657785832882, + 0.034489259123802185, + -0.002263670787215233, + 0.033887699246406555, + 0.01958819478750229, + 0.0044427476823329926, + -0.00862858071923256, + -0.01765820011496544, + -0.030428748577833176, + -0.033511728048324585, + -0.005078768823295832, + 0.007751310244202614, + 0.02116728015244007, + 0.0024641898926347494, + 0.01391100138425827, + -0.015214374288916588, + 0.010671366937458515, + -0.005247956607490778, + -0.015251971781253815, + -0.030854852870106697, + -0.00046683315304107964, + 0.02661888860166073, + -0.05103207007050514, + 0.027872132137417793, + 0.005461007822304964, + -0.004978509154170752, + 0.021643513813614845, + -0.019751114770770073, + 0.007143487222492695, + 0.025816813111305237, + -0.002575415186583996, + 0.028649143874645233, + 0.006830176338553429, + -0.031180694699287415, + -0.04351260885596275, + -0.04476585239171982, + -0.006635923869907856, + -0.0036563375033438206, + -0.007719979155808687, + -0.04752298817038536, + -0.035667307674884796, + -0.006780046503990889, + 0.016267098486423492, + 0.009123612195253372, + 0.015076518058776855, + 0.003065746510401368, + -0.033687181770801544, + 0.03514094278216362, + -0.007112156134098768, + -0.014437363483011723, + -0.022946886718273163, + 0.0011349684791639447, + -0.011711559258401394, + -0.002420326229184866, + 0.012870809063315392, + 0.02549096941947937, + 0.009957018308341503, + 0.023485781624913216, + -0.021067021414637566, + 0.019162090495228767, + 0.007394135929644108, + -0.002304401248693466, + 0.016079112887382507, + 0.02762148343026638, + -0.019074363633990288, + -0.06276243180036545, + 0.007199882995337248, + 0.07293876260519028, + 0.008791502565145493, + -0.025541100651025772, + -0.01411152072250843, + 0.019964167848229408, + -0.0020976162049919367, + 0.03205796703696251, + 0.013472366146743298, + -0.010163803584873676, + 0.005686591845005751, + -0.0289499219506979, + 0.03534146398305893, + -0.028097717091441154, + 0.004790522623807192, + -0.0028103983495384455, + -0.0063320123590528965, + 0.02393694780766964, + 0.02404974028468132, + -0.020340140908956528, + -0.0001333529216935858, + 0.007011896930634975, + 0.0006783179705962539, + 0.01193714328110218, + 0.013046263717114925, + 0.007763842586427927, + -0.018472807481884956, + 0.011191463097929955, + 0.02356097474694252, + 0.027170317247509956, + -0.008948157541453838, + 0.019512999802827835, + 0.03519107401371002, + 0.02249571867287159, + -0.0003879180003423244, + -0.006491800770163536, + -0.008866696618497372, + 0.03501562029123306, + -0.0010409753303974867, + 0.0024171932600438595, + -0.023398054763674736, + -0.003427620744332671, + -0.018786117434501648, + 0.05253596231341362, + -0.03165692836046219, + 0.009374260902404785, + -0.036795224994421005, + 0.0014694278361275792, + 0.028473690152168274, + 0.010025947354733944, + 0.015214374288916588, + -0.017733393236994743, + 0.020315075293183327, + -0.0454426035284996, + 0.0049941749311983585, + 0.004633867181837559, + -0.012670290656387806, + -0.029200570657849312, + 0.0010401919716969132, + 0.014926129020750523, + -0.01748274452984333, + 0.0025268520694226027, + -0.032559264451265335, + -0.025653891265392303, + 0.06065697968006134, + 0.009505851194262505, + 0.020528126507997513, + -0.023134872317314148, + -0.028624078258872032, + -0.03200783580541611, + 0.03110550157725811, + 0.024149999022483826, + 0.01411152072250843, + 0.039928335696458817, + -0.017445147037506104, + 0.0019127627601847053, + -0.0058526466600596905, + 0.007538259029388428, + 0.01883624866604805, + 0.006811377592384815, + -0.025967203080654144, + 0.013096393086016178, + -0.05085661634802818, + 0.018309885635972023, + -0.01728222705423832, + -0.031381215900182724, + 0.01759553700685501, + 0.017382485792040825, + -0.017532875761389732, + -0.03341146931052208, + 0.038750287145376205, + -0.026719149202108383, + 0.03489029407501221, + -0.027972392737865448, + 0.002970186760649085, + 0.014813336543738842, + -0.0013911001151427627, + -0.007763842586427927, + -0.009769031777977943, + 0.012720420025289059, + 0.010245264507830143, + 0.006805111654102802, + -0.024488376453518867, + -0.0250899326056242, + 0.004073041025549173, + -0.013748079538345337, + -0.007112156134098768, + -0.052836742252111435, + -0.03128095343708992, + 0.02542830817401409, + 0.020089492201805115, + -0.006234885659068823, + 0.012570030987262726, + -0.018560534343123436, + 0.011561170220375061, + 0.015151712112128735, + 0.013058795593678951, + -0.0077262455597519875, + -0.0016965782269835472, + 0.010915749706327915, + 0.002100749174132943, + -0.01846027560532093, + 0.027771873399615288, + 0.01892397552728653, + 0.023911884054541588, + 0.0018203359795734286, + -0.01427444163709879, + -0.005332550499588251, + 0.007469330448657274, + 0.017207032069563866, + -0.045492734760046005, + -0.02531551569700241, + -0.0008576884283684194, + -0.024212662130594254, + -0.0027634017169475555, + -0.01972605101764202, + -0.019375143572688103, + 0.01869839057326317, + -0.007594654802232981, + -0.00849699042737484, + -0.015201842412352562, + 0.0015830030897632241, + 0.012175259180366993, + 0.0042202970944345, + 0.024413181468844414, + -0.030478879809379578, + 0.022821562364697456, + -0.015490088611841202, + -0.016856122761964798, + 0.013196652755141258, + -0.01245723944157362, + 0.014926129020750523, + -0.007926763966679573, + 0.04774857312440872, + 0.008478191681206226, + -0.010289127938449383, + 0.009687571786344051, + -0.016467617824673653, + -0.020528126507997513, + -0.040680281817913055, + 0.02465129643678665, + -0.008954423479735851, + -0.013785677030682564, + -0.006886572577059269, + -0.042810793966054916, + -0.02295941859483719, + -0.01218152604997158, + -0.0015877026598900557, + -0.03935184329748154, + -0.05035531893372536, + 0.022708769887685776, + -0.01823469065129757, + 0.017119305208325386, + -0.014149118214845657, + 0.0002093308139592409, + -0.004524208605289459, + 0.014462428167462349, + -0.009217604994773865, + -0.001217212644405663, + -0.011016009375452995, + 0.02701992727816105, + 0.014512558467686176, + 0.01418671477586031, + -0.008985755033791065, + -0.0406050868332386, + -0.02465129643678665, + -0.004135703202337027, + -0.03496548905968666, + 0.007250012829899788, + -0.007262545172125101, + -0.04709688574075699, + 0.04604416340589523, + -0.04506663233041763, + 0.0003646154946181923, + -0.026919668540358543, + -0.0016918785404413939, + 0.027872132137417793, + -0.009248936548829079, + 0.02445077896118164, + 0.03220835328102112, + -0.02917550504207611, + 0.02686953730881214, + 0.010163803584873676, + 0.009261468425393105, + -0.005273021291941404, + -0.030854852870106697, + 0.008083419874310493, + -0.025528566911816597, + -0.011724092066287994, + 0.014550155960023403, + -0.0006646106485277414, + -0.0015830030897632241, + -0.01861066371202469, + 0.012758017517626286, + -0.033737313002347946, + 0.0032145692966878414, + -0.013497430831193924, + 0.019049299880862236, + 0.0023419985082000494, + -0.028523819521069527, + 0.01065883506089449, + -0.012801880948245525, + -0.0021853430662304163, + 0.016780929639935493, + 0.0050662364810705185, + -0.020402802154421806, + 0.029651738703250885, + 0.018284820020198822, + 0.014525090344250202, + 0.025841878727078438, + 0.03421354293823242, + -0.006144025828689337, + -0.00041082885582000017, + 0.01226925291121006, + 0.023460716009140015, + 0.019914036616683006, + -0.03072952851653099, + -0.005003574304282665, + 0.05749880522489548, + -0.02287169173359871, + -0.03752210736274719, + 0.023410586640238762, + -0.0020067559089511633, + 0.047197144478559494, + 0.008139816112816334, + 0.00110363750718534, + -0.002743036486208439, + -0.03471484035253525, + 0.038148727267980576, + 0.014236845076084137, + 0.042209237813949585, + -0.00042766929254867136, + -0.0074254670180380344, + -0.010025947354733944, + 0.01673079840838909, + -0.007318941410630941, + -0.013885936699807644, + 0.004840652458369732, + -0.018284820020198822, + 0.008146082051098347, + -0.00010642777488101274, + -0.03441406413912773, + 0.004922113381326199, + -0.019049299880862236, + 0.003935184329748154, + -0.006554462946951389, + -0.008941891603171825, + -0.0030720129143446684, + 0.024212662130594254, + -0.022107213735580444, + -0.015377296134829521, + -0.027496159076690674, + 0.047598183155059814, + -0.05614530295133591, + 0.0033242281060665846, + -0.02517765946686268, + 0.021731240674853325, + -0.023347923532128334, + -0.027696678414940834, + -0.010000881738960743, + -0.029501348733901978, + -0.017382485792040825, + 0.0019315613899379969, + -0.0059090424329042435, + 0.010915749706327915, + 0.011260392144322395, + 0.02275889925658703, + -0.017269693315029144, + -0.022971950471401215, + -0.0025707155000418425, + -0.024751557037234306, + 0.022746367380023003, + -0.008359133265912533, + -0.009418124333024025, + -0.009668773040175438, + 0.0033210949040949345, + 0.00010241348354611546, + -0.020327607169747353, + 0.027345770969986916, + 0.012676556594669819, + 0.009399325586855412, + -0.011805552989244461, + 0.009900623001158237, + -0.034639645367860794, + -0.02629304677248001, + -0.0012900574365630746, + 0.052034664899110794, + 0.020402802154421806, + 0.001383267343044281, + -0.01748274452984333, + 0.0006822343566454947, + 0.0016871788538992405, + 0.015176777727901936, + -0.001967592164874077, + 0.0039633819833397865, + 0.007419200614094734, + -0.025766683742403984, + -0.017984041944146156, + -0.003809859976172447, + 0.033737313002347946, + -4.472022919799201e-5, + -0.002661575563251972, + 0.010113674215972424, + 0.009230137802660465, + -0.008321535773575306, + -0.01071523129940033, + -0.007268811576068401, + -0.026017332449555397, + 0.02304714545607567, + -0.0011161698494106531, + 0.01716943457722664, + -0.006429138593375683, + -0.008146082051098347, + 0.03356185927987099, + -0.004361286759376526, + 0.004602536093443632, + 0.0074755968526005745, + -0.009098546579480171, + 0.004439614713191986, + -0.005981103982776403, + 0.052987128496170044, + -0.019287414848804474, + 0.0021070153452455997, + -0.021818967536091805, + -0.04135703295469284, + -0.014437363483011723, + 0.003355559194460511, + 0.025967203080654144, + 0.01970098540186882, + 0.044364817440509796, + 0.005085035227239132, + 0.022633574903011322, + -0.0022480052430182695, + -0.0016198171069845557, + 0.011830617673695087, + -0.0714850053191185, + -0.052836742252111435, + -0.007676115725189447, + 0.0018579333554953337, + 0.036018215119838715, + -0.01866079308092594, + -0.007306409068405628, + -0.04313663765788078, + 0.03940197080373764, + 0.004774857312440872, + -0.015226907096803188, + -0.001145151094533503, + 0.03148147463798523, + 0.029827192425727844, + -0.0026803743094205856, + 0.0065105995163321495, + 0.002529985038563609, + -0.009180007502436638, + 0.012933471240103245, + 0.024438245221972466, + 0.022884223610162735, + 0.006930436007678509, + -0.001366818556562066, + -0.003975914791226387, + -0.018009107559919357, + -0.005241690203547478, + 0.010840555652976036, + -0.021392865106463432, + 0.05118246003985405, + 0.0022245070431381464, + 0.030829787254333496, + -0.0040855733677744865, + -0.003115876344963908, + -0.007857835851609707, + 0.006125227082520723, + 0.01841014437377453, + 0.011385716497898102, + 0.00403231056407094, + 0.013848339207470417, + 0.004743526224046946, + 0.003449552459642291, + -0.02255837991833687, + 0.03213316202163696, + -0.021931760013103485, + 0.033160820603370667, + -0.006144025828689337, + -0.02085397019982338, + -0.03539159148931503, + 0.0227213017642498, + 0.025077400729060173, + 0.006175356917083263, + -0.01244470663368702, + -0.01188074704259634, + -0.00023576640523970127, + 0.02433798648416996, + -0.004828120116144419, + -0.010978411883115768, + -0.034840166568756104, + -0.006642189808189869, + 0.012093798257410526, + -0.0020474863704293966, + 0.009581045247614384, + -0.043562740087509155, + -0.018573066219687462, + -0.02644343487918377, + -0.011254125274717808, + -0.010332991369068623, + 0.0009924120968207717, + 0.03326107934117317, + -0.007519460283219814, + -0.0001605718134669587, + 0.04273559898138046, + -0.022796496748924255, + 0.003421354340389371, + 0.028849663212895393, + 0.015803398564457893, + 0.026418371126055717, + 0.005019239615648985, + 0.016179371625185013, + 0.022846626117825508, + -0.012996133416891098, + 0.03606834262609482, + 0.00961864273995161, + -0.0014333970611914992, + 0.015289569273591042, + 0.012450972571969032, + -0.021041955798864365, + -0.02629304677248001, + -0.0014161650324240327, + -0.008590983226895332, + 0.007857835851609707, + 0.004705928731709719, + 0.019199687987565994, + 0.017645666375756264, + 0.02396201342344284, + 0.021016892045736313, + 0.006748715415596962, + -0.005993636325001717, + 0.03338640183210373, + 0.006798845250159502, + -0.0062662167474627495, + -0.03995339944958687, + 0.005464141257107258, + 0.01581593230366707, + -0.022533316165208817, + 0.036594707518815994, + -0.003521614009514451, + -0.0038192591164261103, + -0.0123005835339427, + -0.002384295454248786, + -0.05769932642579079, + 0.03403808921575546, + 0.031807318329811096, + 0.0014647281495854259, + -0.024952076375484467, + -0.010690165683627129, + 0.007024429272860289, + -0.00039790477603673935, + 0.015515153296291828, + -0.022533316165208817, + -0.01220032386481762, + -0.01198100671172142, + -0.012137661688029766, + -0.0017576738027855754, + -0.0241374671459198, + 0.006003035698086023, + -0.004201498348265886, + -0.03336133807897568, + -0.018735988065600395, + -0.021756304427981377, + 0.01648014970123768, + -0.024839283898472786, + 0.0017623734893277287, + 0.015828464180231094, + 0.003449552459642291, + 0.010546042583882809, + -0.0012305283453315496, + -0.021417928859591484, + -0.006993098184466362, + 0.0018093701219186187, + 0.015239439904689789, + -0.005570666864514351, + -0.036018215119838715, + -0.013697950169444084, + -0.0039884471334517, + -0.003997846506536007, + 0.004308023955672979, + -0.0036312725860625505, + -0.0006603025831282139, + 0.0009532482363283634, + 0.016367359086871147, + -0.01950046606361866, + 0.007356538437306881, + 0.00015362021804321557, + -0.014850934036076069, + 0.021305138245224953, + 0.004818720743060112, + -0.007325207348912954, + -0.01745768077671528, + -0.009944486431777477, + 0.0016621140530332923, + -0.007588388863950968, + -0.03030342422425747, + -0.017921380698680878, + -0.027746807783842087, + -0.007187350653111935, + 0.009280267171561718, + -0.02165604569017887, + 0.011868215166032314, + -0.005614530295133591, + -0.001406765659339726, + -0.0022762033622711897, + -0.015891125425696373, + -0.0010049445554614067, + -0.029225636273622513, + -0.030077841132879257, + 0.019111961126327515, + 0.013334509916603565, + -0.021242475137114525, + 0.022019486874341965, + 0.0020615854300558567, + 0.032183289527893066, + 0.006303814239799976, + 0.0033712247386574745, + -0.03403808921575546, + 0.00015489304496441036, + -0.005877711344510317, + -0.0560450442135334, + -0.015602880157530308, + 0.0065669952891767025, + 0.0069742994382977486, + 0.004110638052225113, + -0.0030124837066978216, + 0.0236988328397274, + -0.004521075636148453, + -0.018999170511960983, + -0.028323300182819366, + -0.023861754685640335, + 0.020202282816171646, + -0.007544524967670441, + -0.031807318329811096, + -0.015414893627166748, + -0.028473690152168274, + 0.011724092066287994, + 0.0022292067296802998, + 0.001091105048544705, + 0.02571655437350273, + 0.003697067964822054, + 0.00198325770907104, + -0.026017332449555397, + 0.01883624866604805, + 0.018598131835460663, + 0.008879229426383972, + -0.02822304144501686, + 0.02975199744105339, + 0.018422678112983704, + 0.005667793098837137, + -0.04504156857728958, + 0.02606746181845665, + 0.011191463097929955, + 0.015966320410370827, + 0.006629657465964556, + 0.002830763580277562, + -0.020402802154421806, + 0.027872132137417793, + -0.016956383362412453, + 0.034464191645383835, + 0.009925687685608864, + -0.01437470130622387, + -0.011974740773439407, + 0.03418847918510437, + 0.012275518849492073, + -0.0010965879773721099, + 0.03684535622596741, + 0.012613894417881966, + 0.006535664200782776, + -0.02681940793991089, + 0.0063320123590528965, + -0.035266268998384476, + -0.011229060590267181, + 0.0023200667928904295, + 0.013860872015357018, + 0.017094239592552185, + -0.0014819602947682142, + 0.011887013912200928, + 0.015364764258265495, + -0.0031456409487873316, + -0.026418371126055717, + -0.008785235695540905, + -0.008960690349340439, + -0.010408186353743076, + 0.0064604696817696095, + 0.020064426586031914, + -0.009280267171561718, + 0.012281784787774086, + -0.004665198270231485, + -0.012814413756132126, + -0.0027634017169475555, + 0.011178931221365929, + 0.003700201166793704, + 0.007657316979020834, + 0.018999170511960983, + 0.005100700538605452, + -0.017921380698680878, + 0.0016621140530332923, + 0.015101582743227482, + 0.017319822683930397, + 0.00406050868332386, + -0.02819797582924366, + 0.013748079538345337, + -0.002150879008695483, + 0.023748962208628654, + -0.01203740295022726, + -0.018297353759407997, + 0.013259314931929111, + 0.007619719952344894, + 0.024964608252048492, + 0.003709600307047367, + 0.0025785481557250023, + 0.026142656803131104, + 0.0006422872538678348, + 0.006848975084722042, + -0.016229500994086266, + -0.023598572239279747, + -0.012701621279120445, + 0.0011780487839132547, + 0.00579625042155385, + -0.029902387410402298, + 0.011473443359136581, + 0.013384639285504818, + -0.008371666073799133, + 0.0026537429075688124, + -0.009217604994773865, + -0.008070887066423893, + -0.016542812809348106, + 0.020026829093694687, + -0.021580850705504417, + 0.016367359086871147, + 0.018623197451233864, + 0.01372301485389471, + -0.015715671703219414, + 0.02194429188966751, + 0.008910560049116611, + 0.011348119005560875, + 0.01154863741248846, + -0.02646850049495697, + -0.0030970775987952948, + -0.020127087831497192, + -0.008139816112816334, + -0.016003917902708054, + -0.045467671006917953, + 0.0018782984698191285, + 0.011774221435189247, + -0.0046933963894844055, + 0.01750781014561653, + 0.022445589303970337, + -0.011786754243075848, + -0.0037910612300038338, + -0.0073690712451934814, + 0.0328349769115448, + -0.0018532336689531803, + 0.008841631934046745, + 0.010777893476188183, + 0.018272288143634796, + 0.007043228019028902, + -0.013873403891921043, + -0.013409703969955444, + -0.0406050868332386, + 0.003468350972980261, + 0.025766683742403984, + 0.012933471240103245, + 0.017156902700662613, + 0.004953444469720125, + 0.025653891265392303, + 0.012275518849492073, + 0.0075821224600076675, + 0.03940197080373764, + 0.01419924758374691, + -0.004759191535413265, + 0.035441722720861435, + 0.017269693315029144, + -0.006585794035345316, + 0.0053012194111943245, + -0.008992020972073078, + -0.007870368659496307, + 0.007156019564718008, + 0.00587457837536931, + 0.007951829582452774, + -0.02214481122791767, + -0.03917638957500458, + -0.006942968349903822, + -0.04829999804496765, + -0.00209604948759079, + 0.010640036314725876, + 0.0127893490716815, + 0.012858277186751366, + 0.028273170813918114, + -0.01189327985048294, + 0.008891762234270573, + 0.007644784636795521, + -0.039527297019958496, + -0.003086111741140485, + -0.010997210629284382, + 0.0043863519094884396, + -0.005404612049460411, + 0.008804034441709518, + -0.009198806248605251, + -0.016455085948109627, + 0.013083861209452152, + -0.0030109172221273184, + -0.0120687335729599, + -0.007694914471358061, + -0.027922263368964195, + -0.03579263016581535, + 0.014938660897314548, + -0.04416429623961449, + 0.0023466981947422028, + -0.01693131774663925, + -0.016956383362412453, + 0.017156902700662613, + -0.00618475629016757, + 0.0319075770676136, + -0.006447937339544296, + 0.008139816112816334, + -0.005341949872672558, + 0.013221717439591885, + -0.0033367604482918978, + -0.0018579333554953337, + -0.000622313644271344, + -0.024676362052559853, + 0.02784706838428974, + -0.01914955861866474, + 0.022132277488708496, + 0.004749792627990246, + -0.005081901792436838, + 0.023811623454093933, + -0.007018162868916988, + 0.020026829093694687, + 0.016379890963435173, + -0.025541100651025772, + 0.011442111805081367, + 0.016404956579208374, + -0.03980300948023796, + -0.0193250123411417, + 0.006968033034354448, + -0.0052448236383497715, + -0.005313751753419638, + -0.0028918590396642685, + 0.02522778883576393, + -0.019713519141077995, + 0.013459834270179272, + -0.004759191535413265, + -0.009888090193271637, + -0.02566642500460148, + 0.004508542828261852, + 0.014449896290898323, + 0.0116050336509943, + -0.005974837578833103, + -0.031356148421764374, + -0.022420523688197136, + -0.02203201875090599, + -0.001897097215987742, + -0.007500661537051201, + -0.027922263368964195, + -0.009825428016483784, + 0.004740393254905939, + -0.018974104896187782, + 0.01418671477586031, + -0.0022934353910386562, + 0.01861066371202469, + 0.014174182899296284, + -0.034088220447301865, + 0.0010456749005243182, + -0.014136585406959057, + -0.012338181026279926, + -0.02957654371857643, + -0.020753709599375725, + -0.014850934036076069, + 0.006144025828689337, + -0.0415324866771698, + 0.01730729080736637, + 0.00961864273995161, + -0.03012797050178051, + -0.031356148421764374, + -0.0016511481953784823, + -0.00412630382925272, + -0.00596230523660779, + 0.002948255045339465, + 0.015001323074102402, + -0.001765506574884057, + -0.021643513813614845, + -0.021505655720829964, + 0.013033730909228325, + 0.02116728015244007, + -0.014048858545720577, + 0.002970186760649085, + -0.007713713217526674, + 0.01080295816063881, + 0.0029780196491628885, + 0.021204877644777298, + 0.028724338859319687, + -0.021129682660102844, + -0.0002716013405006379, + 0.01650521531701088, + -0.01427444163709879, + 0.012388310395181179, + 0.01779605634510517, + -0.005595731548964977, + -0.015565282665193081, + -0.022044550627470016, + -0.014362169429659843, + 0.01193714328110218, + -0.014324571937322617, + -0.003317961934953928, + -0.002777500543743372, + 0.0016652471385896206, + 0.0079643614590168, + -0.004411416593939066, + 0.010057277977466583, + 0.030955111607909203, + -0.011943409219384193, + -0.010408186353743076, + -0.009380526840686798, + 0.0027728010900318623, + 0.007450531702488661, + -0.000295687117613852, + -0.0030767126008868217, + 0.018197093158960342, + 0.01874852180480957, + 0.01612924225628376, + -0.022245069965720177, + 0.024814218282699585, + 0.031180694699287415, + 0.0120687335729599, + -0.020377736538648605, + 0.0039821807295084, + -0.020703580230474472, + 0.013672885484993458, + 0.020402802154421806, + 0.027696678414940834, + -0.030102906748652458, + 0.027320705354213715, + -0.025302983820438385, + -0.01990150474011898, + 0.030077841132879257, + 0.004452147055417299, + 0.010859353467822075, + 0.0056521277874708176, + 0.00201615528203547, + -0.023811623454093933, + -0.005667793098837137, + -0.03225848451256752, + 0.026318110525608063, + 0.007394135929644108, + 0.00985049270093441, + -0.020578255876898766, + -0.013083861209452152, + -0.00793303083628416, + 0.008083419874310493, + 0.03353679180145264, + -0.024864349514245987, + -0.003521614009514451, + -0.042610276490449905, + -0.024037208408117294, + 0.004596270155161619, + 0.0014999756822362542, + -0.006541930604726076, + 0.0013856171863153577, + 0.004912714008241892, + -0.010784159414470196, + -0.011247859336435795, + -0.005197826772928238, + 0.0023216332774609327, + -0.009562247432768345, + -0.005345082841813564, + -0.01447496097534895, + -0.005063103046268225, + 0.012532433494925499, + -0.020402802154421806, + -0.022082148119807243, + 0.029701868072152138, + 0.00620668800547719, + -0.017758458852767944, + -0.03072952851653099, + -0.0050662364810705185, + 0.005232291296124458, + 0.018573066219687462, + 0.012143928557634354, + -0.008766437880694866, + -0.010539776645600796, + -0.03260939195752144, + 0.0025863810442388058, + 0.00622861972078681, + 0.013973663561046124, + 0.01586606167256832, + -0.010351790115237236, + -0.0033210949040949345, + 0.015577815473079681, + 0.013885936699807644, + 0.0006062564789317548, + 0.026719149202108383, + 0.011855682358145714, + -0.002515885978937149, + 0.0027242377400398254, + -0.01785871759057045, + 0.010232732631266117, + 0.013936066068708897, + 0.004195232409983873, + -0.00020443533139768988, + -0.00419836537912488, + 0.004574338439851999, + 0.008509522303938866, + 0.0028448624070733786, + -0.005805649794638157, + 0.003552944865077734, + -0.034464191645383835, + -0.011554904282093048, + 0.006454203277826309, + -0.008402996696531773, + -0.015653010457754135, + -0.011304255574941635, + -0.015038920566439629, + -0.013986196368932724, + -0.010915749706327915, + 0.004900181666016579, + 0.01033925823867321, + 0.011417047120630741, + -0.034689776599407196, + -0.011128800921142101, + -0.013898469507694244, + -0.030002646148204803, + -0.0037628633435815573, + -0.03326107934117317, + 0.007325207348912954, + -0.011630098335444927, + -0.014324571937322617, + 0.006046899128705263, + -0.00045743383816443384, + -0.004173300229012966, + -0.0003605032979976386, + 0.010583640076220036, + -0.00046839972492307425, + 0.001419298117980361, + -0.004066774621605873, + -0.01630469597876072, + -0.00020423950627446175, + -0.00195505958981812, + 0.004652665928006172, + 0.015339698642492294, + 0.018510404974222183, + 0.02972693368792534, + -0.025440840050578117, + -0.01615430787205696, + 0.02151818946003914, + -0.019512999802827835, + 0.008127283304929733, + 0.009875557385385036, + 0.009643707424402237, + -0.0006971166585572064, + -0.0011819651117548347, + 0.012638959102332592, + -0.02214481122791767, + -0.005432810168713331, + -0.016881188377738, + -0.009731435216963291, + 0.005147697404026985, + 0.014800804667174816, + 0.0007578206132166088, + 0.021292604506015778, + 0.018560534343123436, + -0.005135164596140385, + -0.006140892393887043, + -0.010088609531521797, + 0.008847897872328758, + -0.0063727423548698425, + -0.014562687836587429, + 0.018886378034949303, + -0.0066735208965837955, + 0.009831693954765797, + -0.03614353761076927, + -0.0005764919333159924, + 0.013936066068708897, + 0.0012234788155183196, + -0.009342929348349571, + -0.008246341720223427, + -0.05749880522489548, + -0.016054047271609306, + -0.015465022996068, + -0.013610223308205605, + -0.01071523129940033, + 0.014725609682500362, + -0.00961864273995161, + 0.011316787451505661, + 0.00815234798938036, + -0.005282420665025711, + 0.028172912076115608, + 0.011260392144322395, + 0.009092280641198158, + -0.011460910551249981, + 0.016580410301685333, + 0.0022511384449899197, + -0.017583005130290985, + -0.01022646576166153, + -0.014174182899296284, + -0.0019957900512963533, + 0.011955942027270794, + 0.020503060892224312, + -0.026744212955236435, + -0.009079747833311558, + 0.026493564248085022, + -0.009173741564154625, + 0.0004899398190900683, + -0.02275889925658703, + -0.00570225715637207, + -0.005771185737103224, + -0.005204093176871538, + -0.014537623152136803, + -0.009562247432768345, + 0.016354825347661972, + -0.0033367604482918978, + 0.023510845378041267, + -0.015828464180231094, + -0.025014737620949745, + -0.019976699724793434, + 0.004596270155161619, + 0.009405591525137424, + 0.02203201875090599, + -0.031581733375787735, + 0.02211974561214447, + -0.015076518058776855, + -0.008189945481717587, + -0.025302983820438385, + -0.013610223308205605, + -0.010207667015492916, + 0.009154942817986012, + -0.02837342955172062, + -0.0010668233735486865, + 0.04308650642633438, + 0.0034088219981640577, + 0.016856122761964798, + 0.031406279653310776, + -0.009900623001158237, + -0.03734665364027023, + -0.02085397019982338, + -0.005022373050451279, + -0.0015916191041469574, + 0.02879953198134899, + -0.017984041944146156, + -0.007187350653111935, + -0.013610223308205605, + -0.008409262634813786, + 0.004455280024558306, + 0.01768326386809349, + 0.0017138103721663356, + 0.011103736236691475, + -0.012093798257410526, + -0.030278360471129417, + -0.03210809454321861, + 0.02267117239534855, + 0.01681852526962757, + 0.0159287229180336, + -0.005379547365009785, + 0.02854888327419758, + 0.025766683742403984, + -0.024663830175995827, + 0.018134431913495064, + 0.011630098335444927, + -0.01846027560532093, + 0.017670731991529465, + 0.006037499755620956, + -0.007694914471358061, + 0.005711656529456377, + -0.006942968349903822, + 0.02255837991833687, + -0.01273295283317566, + 0.0004433348367456347, + -0.002421892946586013, + -0.018786117434501648, + -0.0347399078309536, + -0.012187791988253593, + 0.03682028874754906, + 0.031180694699287415, + -0.010063543915748596, + -0.015941256657242775, + -0.007857835851609707, + -0.006754981819540262, + 0.0026286779902875423, + -0.015602880157530308, + 0.01427444163709879, + -0.0018548001535236835, + 0.0022574046161025763, + 0.022483186796307564, + 0.004583737812936306, + 0.0028197974897921085, + 0.0193500779569149, + 0.03205796703696251, + -0.006247418466955423, + 0.02957654371857643, + -0.0207411777228117, + 0.006717384327203035, + -0.024388115853071213, + 0.022332796826958656, + 0.0197887122631073, + -0.008302737027406693, + 0.003556078067049384, + -0.020377736538648605, + 0.03012797050178051, + -0.018560534343123436, + -0.04657052457332611, + 0.002627111505717039, + 0.00405424227938056, + 0.0022323396988213062, + -0.0227213017642498, + -0.015690607950091362, + -0.025453373789787292, + 0.025039803236722946, + -0.020753709599375725, + 0.013372106477618217, + -0.004308023955672979, + -0.01777099072933197, + 0.016918785870075226, + -0.02018975093960762, + 0.017908846959471703, + 0.016267098486423492, + -0.02252078428864479, + -0.00980662927031517, + 0.0024547905195504427, + 0.0033210949040949345, + -0.014512558467686176, + 0.015552750788629055, + -0.017269693315029144, + -0.020954228937625885, + -0.015527685172855854, + 0.017958978191018105, + 0.00805208832025528, + 0.002100749174132943, + 0.01566554233431816, + 0.0030610470566898584, + 0.004834386520087719, + 0.004658932331949472, + -0.009712636470794678, + 0.0008146081818267703, + 0.0081962114199996, + 0.020239880308508873, + -0.002780633745715022, + -0.017720861360430717, + -0.023423118516802788, + -0.010401920415461063, + 0.039101194590330124, + 0.017407551407814026, + 0.0032584327273070812, + 0.024576103314757347, + 0.006686053238809109, + 0.0072813439182937145, + 0.00403857696801424, + 0.013359574601054192, + -0.011222794651985168, + 0.00838419795036316, + 0.024375583976507187, + 0.02398707903921604, + -0.02445077896118164, + -0.011003476567566395, + -0.015590347349643707, + 0.015878593549132347, + 0.006093895994126797, + -0.004558672662824392, + -0.02205708436667919, + 0.033687181770801544, + -0.010395653545856476, + 0.01437470130622387, + -0.04561805725097656, + 0.03529133275151253, + 0.005645861383527517, + -0.015226907096803188, + -0.011078671552240849, + -0.007682382129132748, + 0.01234444696456194, + -0.004517942201346159, + 0.005742987617850304, + -0.024864349514245987, + -0.008346600458025932, + -0.008590983226895332, + 0.005686591845005751, + -0.005398345645517111, + -0.007870368659496307, + 0.006961767096072435, + -0.01861066371202469, + 0.02174377255141735, + -0.010119940154254436, + -0.01748274452984333, + 0.01031419262290001, + 0.0011224361369386315, + -0.008835365995764732, + 0.012883341871201992, + 0.010978411883115768, + 0.0008874529739841819, + -0.005075635854154825, + -0.019688453525304794, + -0.01203740295022726, + -0.002674108138307929, + 0.00432055676355958, + -0.01189327985048294, + -0.013058795593678951, + -0.0011858815560117364, + -0.010433251038193703, + -0.005157096311450005, + 0.024212662130594254, + -0.007506927940994501, + 0.008778969757258892, + 0.020227348431944847, + 0.003866255749017, + -0.015114115551114082, + -0.0044082836247980595, + 0.01427444163709879, + 0.0037785288877785206, + -0.008421795442700386, + 0.0014835268957540393, + 0.009769031777977943, + -0.02915044128894806, + 0.003935184329748154, + -0.01725716143846512, + 0.0053012194111943245, + -0.005103833507746458, + -0.005235424265265465, + -0.008027023635804653, + -0.015715671703219414, + -0.002598913386464119, + 0.020177219063043594, + -0.021004358306527138, + -0.0046432665549218655, + -0.005655260756611824, + -0.0007499878411181271, + 0.0079768942669034, + 0.006942968349903822, + 0.008553385734558105, + 0.005934107583016157, + 0.0039884471334517, + -0.00839673075824976, + -0.011329320259392262, + -0.007074559107422829, + -0.008490723557770252, + 0.045317281037569046, + -0.01575326919555664, + -0.00202712113969028, + -0.011686494573950768, + -0.014562687836587429, + -0.007206149399280548, + -0.009769031777977943, + 0.02782200276851654, + -0.007431733421981335, + -0.006748715415596962, + 0.03534146398305893, + -0.017557939514517784, + 0.009743967093527317, + 0.005357615649700165, + -0.00862858071923256, + -0.0053168851882219315, + 0.006541930604726076, + 0.003111176658421755, + -0.010627503506839275, + 0.00028119649505242705, + 0.0037785288877785206, + 0.008083419874310493, + 0.011811818927526474, + 0.007594654802232981, + 0.004527341574430466, + -0.011868215166032314, + 0.009311598725616932, + -0.006848975084722042, + -0.017833653837442398, + 0.01586606167256832, + -0.006140892393887043, + 0.0045712050050497055, + 0.005185294430702925, + -0.013760612346231937, + -0.007813972420990467, + 0.01624203473329544, + -0.013447301462292671, + -0.015364764258265495, + 0.00986302550882101, + 0.003126842202618718, + 0.015627944841980934, + -0.0036344057880342007, + -0.016455085948109627, + 0.004900181666016579, + -0.026167722418904305, + -0.006786312907934189, + -0.0026302444748580456, + 0.002638077363371849, + 0.020114555954933167, + -0.006598326377570629, + 0.01681852526962757, + 0.015602880157530308, + -0.014086456038057804, + -0.0009516816935501993, + -0.029200570657849312, + 0.008966956287622452, + 0.00849699042737484, + 0.01728222705423832, + 0.001062123803421855, + 0.024814218282699585, + -0.04579351469874382, + 0.006723650731146336, + -0.0003395506355445832, + -0.0041419691406190395, + 0.001873598899692297, + 0.008522055111825466, + -0.012563765048980713, + -0.01958819478750229, + -0.002683507278561592, + -0.02378655970096588, + -0.03050394356250763, + 0.006955500692129135, + -0.005185294430702925, + 0.0207411777228117, + 0.02393694780766964, + 0.0033837570808827877, + -0.008089685812592506, + -0.019475402310490608, + 0.01992657035589218, + 0.0008827532874420285, + -0.023285262286663055, + 0.0127893490716815, + 0.004483478143811226, + 0.014312039129436016, + 0.018447741866111755, + -0.014512558467686176, + 0.008960690349340439, + 0.013422236777842045, + 0.0030469479970633984, + 0.006899104919284582, + 0.00196602544747293, + -0.002589514246210456, + 0.0012806580634787679, + 0.006792579311877489, + -0.038549765944480896, + -0.010708964429795742, + -0.0036438051611185074, + -0.0032145692966878414, + 0.02059078961610794, + 0.012632693164050579, + -0.005667793098837137, + 0.00627874955534935, + -0.0059591722674667835, + 0.003947716671973467, + 0.03150653839111328, + 0.006554462946951389, + 0.023636169731616974, + 0.01429950725287199, + 0.007168551906943321, + -0.012519901618361473, + -0.001251676818355918, + -0.02686953730881214, + -0.03348666429519653, + -0.011053606867790222, + -0.02502726949751377, + 0.004223430063575506, + -0.011135067790746689, + -0.0007730945362709463, + 0.010796691291034222, + -0.005733588244765997, + 0.0010950213763862848, + 0.0019895238801836967, + -0.020778775215148926, + 0.0037033341359347105, + 0.007951829582452774, + 0.024901945143938065, + 0.006742449477314949, + 0.04138209670782089, + -0.0011678661685436964, + -0.0014811770524829626, + -0.030403684824705124, + 0.00985049270093441, + 0.027947327122092247, + 0.014700544998049736, + 0.004311157390475273, + 0.02762148343026638, + 0.001348803169094026, + 0.024638764560222626, + -0.018735988065600395, + 0.00985049270093441, + -0.015063985250890255, + 0.016843590885400772, + 0.01467548031359911, + 0.009405591525137424, + 0.0015665541868656874, + 0.01169276051223278, + -0.024989673867821693, + -0.0016260832780972123, + 0.01003847923129797, + -0.019801246002316475, + -0.008189945481717587, + -0.0010088608833029866, + 0.01673079840838909, + -0.0009454154642298818, + -0.02376149408519268, + -0.025277918204665184, + -2.092818613164127e-5, + -0.0015775201609358191, + 0.000614872551523149, + -0.0030156169086694717, + 0.009624909609556198, + 0.0236988328397274, + -0.004329955670982599, + -0.0016041515627875924, + 0.008171146735548973, + 0.01670573465526104, + 0.019914036616683006, + -0.020615853369235992, + -0.0017952711787074804, + 0.004295491613447666, + 0.0011381016811355948, + -0.0055456021800637245, + 0.0074254670180380344, + 0.005006707273423672, + 0.009361728094518185, + 0.013961131684482098, + 0.012613894417881966, + 0.013986196368932724, + -0.029100311920046806, + 0.0127893490716815, + 0.009530915878713131, + 0.0038255255203694105, + 0.014587752521038055, + 0.020778775215148926, + 0.0006599109619855881, + 0.021555786952376366, + 0.008027023635804653, + 0.011385716497898102, + 0.018159495666623116, + -0.018585599958896637, + -0.03925158083438873, + 0.0032302348408848047, + -0.019137026742100716, + 0.001776472432538867, + 0.0125574991106987, + 0.002888726070523262, + 0.013748079538345337, + 0.0027164050843566656, + -0.01409898791462183, + -0.010953347198665142, + 0.013635287992656231, + 0.008791502565145493, + -0.011987272650003433, + -0.005533069372177124, + -0.007763842586427927, + 0.00027747591957449913, + -0.038148727267980576, + 0.0022495719604194164, + -0.02062838524580002, + -0.02722044661641121, + -0.01825975626707077, + 0.018673326820135117, + 0.001175698940642178, + 0.025353113189339638, + 0.007300142664462328, + 0.014688012190163136, + 0.017846185714006424, + -0.0012501102173700929, + -0.013547561131417751, + -0.005482940003275871, + 0.02045293152332306, + -0.015615412965416908, + -0.006441670935600996, + 0.004793656058609486, + 0.02917550504207611, + 0.004824987147003412, + 0.0021665445528924465, + 0.004724727477878332, + -0.00591844180598855, + 0.013748079538345337, + -0.0007331473752856255, + -0.004881382919847965, + 0.005047437734901905, + 0.006491800770163536, + -0.004925246350467205, + 0.03306056186556816, + -0.016317229717969894, + -0.009399325586855412, + -0.006742449477314949, + -0.014312039129436016, + 0.011191463097929955, + -0.004223430063575506, + -0.00024477409897372127, + -0.006050032563507557, + 0.011830617673695087, + -0.04042963311076164, + -0.020202282816171646, + -0.013748079538345337, + -0.0039289179258048534, + -0.01872345618903637, + -0.008189945481717587, + 0.0027994324918836355, + 0.02569148875772953, + 0.031381215900182724, + -0.013033730909228325, + 0.005504871718585491, + -0.015076518058776855, + -0.0011287023080512881, + -0.0019519266206771135, + 0.00622861972078681, + -0.002921623643487692, + 0.001603368204087019, + -0.0008764871163293719, + -0.001790571492165327, + -0.0034526854287832975, + -0.010652569122612476, + 0.009292799979448318, + -0.018197093158960342, + 0.006830176338553429, + 0.023335391655564308, + -0.003850590204820037, + -0.005620796699076891, + 0.002233906416222453, + 0.01696891523897648, + -0.010821756906807423, + -0.03829911723732948, + 0.015352231450378895, + 0.02744602970778942, + 0.011912078596651554, + 0.0038881876971572638, + -0.005141431000083685, + 1.3376904462347738e-5, + 0.016141774132847786, + 0.0025487837847322226, + 0.023548442870378494, + -0.002446957631036639, + -0.013497430831193924, + 0.022433055564761162, + -0.00601870147511363, + -0.006886572577059269, + 0.021468058228492737, + 0.001485876739025116, + 0.019137026742100716, + -0.005620796699076891, + 0.00584638025611639, + -0.008471924811601639, + 0.02252078428864479, + -0.014161650091409683, + 0.008973222225904465, + 0.0011858815560117364, + -0.0048719835467636585, + 0.002481421921402216, + -0.0009422823786735535, + 0.007563323713839054, + 0.008647379465401173, + -0.02859901450574398, + -0.03133108466863632, + 0.007463064510375261, + -0.008095952682197094, + -0.01448749378323555, + 0.0079768942669034, + 0.009900623001158237, + -0.0010926715331152081, + 0.015565282665193081, + -0.0025816813576966524, + 0.016254566609859467, + 0.006560728885233402, + 0.00943065620958805, + 0.0011059872340410948, + -0.009687571786344051, + -0.021330201998353004, + 0.0016981448279693723, + 0.0051382980309426785, + -0.014174182899296284, + -0.00201615528203547, + -0.007074559107422829, + 0.008791502565145493, + -0.0032740982715040445, + -0.011135067790746689, + 0.010207667015492916, + -0.015828464180231094, + 0.007757576648145914, + 0.019487934187054634, + 0.02451344020664692, + 0.016831059008836746, + -0.008503256365656853, + -0.016292164102196693, + -0.01283321250230074, + -0.004987908527255058, + -0.00046839972492307425, + 0.016191905364394188, + -0.00618475629016757, + -0.005313751753419638, + 0.01719449833035469, + -0.0016010183608159423, + -0.002291868906468153, + 0.0012430608039721847, + -0.014850934036076069, + -0.021894162520766258, + 0.007563323713839054, + -0.00046135022421367466, + -0.009831693954765797, + 0.03015303611755371, + -0.009875557385385036, + 0.017044110223650932, + -0.002620845101773739, + -0.012638959102332592, + -0.01362275518476963, + 0.008966956287622452, + -0.00584638025611639, + -0.004160767886787653, + -0.026744212955236435, + -0.02165604569017887, + -0.015126647427678108, + 0.0037377984263002872, + 0.0010848387610167265, + -0.002719538053497672, + -0.010965880006551743, + 0.0062599508091807365, + 0.013773145154118538, + -0.005783718079328537, + -0.0030814120545983315, + -0.015314633958041668, + 0.004962843842804432, + 0.014449896290898323, + -0.010452049784362316, + 0.011285456828773022, + -0.015427426435053349, + 0.012720420025289059, + 0.0123005835339427, + -0.00872884038835764, + -0.010145004838705063, + 0.0040291775949299335, + 0.02493954263627529, + -0.029877321794629097, + 0.00849699042737484, + 0.005758653394877911, + -0.004223430063575506, + 0.0028479956090450287, + -0.013397172093391418, + 0.01861066371202469, + 0.002468889346346259, + -0.005623929668217897, + -0.029451219365000725, + 0.005965438671410084, + 0.0007358888396993279, + 0.00985049270093441, + 0.007250012829899788, + -0.011949675157666206, + 0.0016730799106881022, + 0.012526167556643486, + -0.012670290656387806, + 0.00622235331684351, + 0.013133990578353405, + 0.00996328517794609, + -0.01584099605679512, + 0.017319822683930397, + -0.00212424760684371, + -0.0014059824170544744, + 0.006234885659068823, + -0.004683997016400099, + 0.01218152604997158, + 0.004339355044066906, + -0.013936066068708897, + 0.013184119947254658, + 0.020904099568724632, + -0.016091644763946533, + 0.0014412298332899809, + -0.009117345325648785, + 0.006679787300527096, + 0.004787389654666185, + 0.005930974148213863, + 0.02646850049495697, + -0.006009302102029324, + 0.010520977899432182, + 0.0037628633435815573, + 0.00041396194137632847, + -0.005454741884022951, + 0.006711118388921022, + -0.004624468274414539, + -0.02586694248020649, + -0.021643513813614845, + -0.006241152063012123, + 0.015790866687893867, + 0.0026866404805332422, + -0.027746807783842087, + -0.007068292703479528, + -0.010777893476188183, + 0.031030306592583656, + -0.00417643366381526, + 0.0008757038158364594, + -0.012983601540327072, + 0.005880844779312611, + -0.010502179153263569, + -0.014261909760534763, + 0.010665100999176502, + -0.003446419257670641, + -0.0021665445528924465, + -0.01632976159453392, + 0.00961864273995161, + 0.00025652325712144375, + 0.002431292086839676, + 0.010132472962141037, + -0.005235424265265465, + 0.007676115725189447, + 0.003675136249512434, + 0.010896950960159302, + -0.005385813303291798, + 0.005849513690918684, + 0.012845744378864765, + 0.009186274372041225, + 0.0008052088669501245, + -0.02854888327419758, + 0.005445342510938644, + -0.02200695313513279, + 0.006654722150415182, + 0.013234250247478485, + -0.0002939247351605445, + -0.0036688700783997774, + -0.004712195135653019, + 0.026919668540358543, + 0.011291722767055035, + 0.006899104919284582, + 0.00792049802839756, + 0.006917903665453196, + 0.008822833187878132, + 0.016179371625185013, + 0.004859451204538345, + 0.0015320900129154325, + -0.022771432995796204, + -0.02255837991833687, + -0.010865620337426662, + 0.004646399989724159, + 0.0018829981563612819, + -0.013936066068708897, + 0.02465129643678665, + -0.004590003751218319, + 0.0038631227798759937, + -0.022345328703522682, + 0.007331473752856255, + -0.015226907096803188, + 0.0028902925550937653, + -0.011053606867790222, + 0.004295491613447666, + 0.01038312166929245, + 0.01010740827769041, + -0.007287610322237015, + -0.0008310570265166461, + -0.0025581831578165293, + -0.003327361075207591, + -0.019826309755444527, + 0.003411955200135708, + 0.002613012446090579, + -0.004580604378134012, + -0.006592059973627329, + 0.001033142558299005, + -0.003374357707798481, + -0.011586234904825687, + 0.006773780565708876, + -0.002100749174132943, + 0.0019393941620364785, + 0.0006763598066754639, + -0.007293876260519028, + 0.0027759340591728687, + -0.012494836933910847, + 0.020089492201805115, + 0.00011112743959529325, + -0.004063641652464867, + -0.008860430680215359, + 0.022545848041772842, + 0.012664024718105793, + 0.007268811576068401, + -0.009399325586855412, + 0.0007253146031871438, + -0.000383218313800171, + 0.013384639285504818, + 0.02900005131959915, + -0.005467274226248264, + 0.006811377592384815, + 0.00957477930933237, + -0.01632976159453392, + -0.006968033034354448, + -0.004599403124302626, + -0.0019644589629024267, + 0.004110638052225113, + 0.010408186353743076, + -0.013321977108716965, + -0.01196847390383482, + -0.005620796699076891, + 0.03133108466863632, + -0.01693131774663925, + -0.008371666073799133, + -0.006504333112388849, + -0.027496159076690674, + 0.010439516976475716, + -0.016881188377738, + 0.0016542812809348106, + 0.0033962896559387445, + 0.010777893476188183, + -0.009386792778968811, + 0.008653645403683186, + 0.027295641601085663, + -0.012632693164050579, + 0.022846626117825508, + -0.012895874679088593, + -0.007538259029388428, + -0.0005694424617104232, + -0.008797768503427505, + 0.026694083586335182, + -0.01748274452984333, + 0.005056837107986212, + 0.007149753626435995, + -0.015176777727901936, + -0.009393058717250824, + -0.013259314931929111, + 0.0016307829646393657, + -0.004878249950706959, + 0.004389484878629446, + 9.771381883183494e-5, + -0.02151818946003914, + 0.009530915878713131, + -0.007143487222492695, + 0.011103736236691475, + 0.03423861041665077, + 0.01970098540186882, + -0.014236845076084137, + 3.999608816229738e-5, + -0.010358056984841824, + -0.023836689069867134, + 0.006435404531657696, + 0.007481862790882587, + -0.019751114770770073, + -0.03133108466863632, + 0.014399765990674496, + -0.021818967536091805, + -0.005711656529456377, + -0.03321094810962677, + 0.006836442742496729, + -0.005758653394877911, + -0.007419200614094734, + 0.013735547661781311, + -8.065306246862747e-6, + 0.015941256657242775, + 0.007826505228877068, + -0.004298624582588673, + -0.017758458852767944, + 3.0768103897571564e-5, + -0.017420083284378052, + -0.01874852180480957, + 0.00042727767140604556, + -0.003361825365573168, + 0.002995251677930355, + -0.0009626475512050092, + -0.010727763175964355, + 0.0035936753265559673, + 0.019061831757426262, + 0.011417047120630741, + -0.017783524468541145, + 0.003625006414949894, + -0.009599843993782997, + -0.004267293494194746, + 0.007437999360263348, + -0.009192540310323238, + -0.0021493122912943363, + -0.015226907096803188, + 0.008985755033791065, + -0.01883624866604805, + 0.010909483768045902, + -0.0033430266194045544, + 0.004856318235397339, + 0.009242669679224491, + 0.00618475629016757, + -0.026142656803131104, + 0.02480168640613556, + 0.0026694084517657757, + -0.017608068883419037, + 0.004420815967023373, + 0.002412493573501706, + 0.024275323376059532, + -0.004965976811945438, + 0.015126647427678108, + -0.009881824254989624, + 0.015001323074102402, + 0.033286143094301224, + 0.006754981819540262, + -0.013560093007981777, + -0.015653010457754135, + 0.022796496748924255, + -0.005893377121537924, + -0.01673079840838909, + 0.01013873890042305, + 0.008622314780950546, + -0.015966320410370827, + -0.01090321782976389, + -0.02488941326737404, + 0.017357420176267624, + -0.010621237568557262, + 0.009524649940431118, + -0.02203201875090599, + -0.007387869525700808, + 0.005993636325001717, + 0.021555786952376366, + 0.000804425566457212, + 0.02111715078353882, + 0.016668137162923813, + -0.0026427770499140024, + 0.018447741866111755, + -0.015803398564457893, + -9.144760406343266e-5, + -0.0018407012103125453, + -0.016141774132847786, + 0.01216899324208498, + 0.011667695827782154, + 0.008365399204194546, + -0.007062026299536228, + -0.015013855881989002, + 0.0032552997581660748, + 0.01055857539176941, + -0.0159537885338068, + 0.01901170238852501, + 0.014750674366950989, + -0.02917550504207611, + -0.0017639400903135538, + -0.006118960678577423, + 0.0010817056754603982, + 0.006729917135089636, + -0.009236403740942478, + -0.022545848041772842, + 0.01874852180480957, + 0.01586606167256832, + -0.023748962208628654, + -0.005307485815137625, + -0.009505851194262505, + -0.004981642588973045, + 0.004508542828261852, + -0.03732158616185188, + 0.03827405348420143, + -0.0050505707040429115, + -0.006692319642752409, + -0.013372106477618217, + 0.03787301480770111, + -0.004295491613447666, + -0.007870368659496307, + 0.02229519933462143, + 0.0005396779160946608, + -0.0024798554368317127, + -0.00815234798938036, + 0.006554462946951389, + 0.004658932331949472, + -0.011460910551249981, + -0.01668066903948784, + 0.004486611112952232, + -0.0003652029554359615, + 0.021004358306527138, + 0.008089685812592506, + 0.0082087442278862, + -0.006792579311877489, + 0.009487052448093891, + 0.0007852353155612946, + -0.005210359580814838, + -0.006109561305493116, + -0.014048858545720577, + 0.007807706482708454, + 0.007813972420990467, + 0.0027132718823850155, + 0.022345328703522682, + 0.01075909473001957, + 0.01759553700685501, + 0.016003917902708054, + -0.008941891603171825, + -0.013159055262804031, + -0.004962843842804432, + -0.0007503794622607529, + -0.02591707371175289, + -0.009054683148860931, + -0.012996133416891098, + -0.005717922933399677, + -0.009712636470794678, + 0.021706175059080124, + 0.02784706838428974, + 0.014788271859288216, + -0.025791749358177185, + -9.991678962251171e-5, + 0.015552750788629055, + 0.0038349246606230736, + -0.01264522597193718, + 8.229305240092799e-5, + 0.0015446224715560675, + -0.004878249950706959, + -0.0037503307685256004, + 0.008321535773575306, + 0.005849513690918684, + -0.014901063404977322, + 0.020315075293183327, + -0.010677633807063103, + -0.010520977899432182, + -0.009017085656523705, + 0.001127135707065463, + -0.009856759570538998, + 0.007212415803223848, + -0.0073690712451934814, + -0.003975914791226387, + 0.002982719335705042, + -0.011811818927526474, + 0.01892397552728653, + -0.021067021414637566, + 0.009631175547838211, + 0.007193617057055235, + 0.028448624536395073, + -0.006936701945960522, + -0.014838401228189468, + -0.026593824848532677, + 0.031381215900182724, + -0.01140451431274414, + 0.006754981819540262, + -0.0038693889509886503, + -0.01353502832353115, + 0.007951829582452774, + -0.016567876562476158, + -0.0002810006553772837, + 0.03090498223900795, + 0.006097028963267803, + -0.010846821591258049, + 0.007181084714829922, + -0.026418371126055717, + -0.009242669679224491, + 0.020991826429963112, + -0.005692858248949051, + 0.005915308836847544, + -0.0231850016862154, + 0.009367994032800198, + -0.003878788324072957, + -0.02358604036271572, + 0.0040354435332119465, + -0.006046899128705263, + -0.023899350315332413, + -0.0011905812425538898, + -0.005041171330958605, + 0.006711118388921022, + 0.014224312268197536, + -0.0028103983495384455, + -0.014324571937322617, + -0.014399765990674496, + 0.025967203080654144, + 0.03296029940247536, + -0.010301660746335983, + 0.026493564248085022, + 0.01863572932779789, + 0.02191922627389431, + 0.011216527782380581, + -0.005501738283783197, + -0.004922113381326199, + 0.004740393254905939, + 0.028072651475667953, + -0.005639594979584217, + -0.015690607950091362, + 0.019713519141077995, + -0.010495913214981556, + 0.0018532336689531803, + 0.0004159201344009489, + -0.0013104225508868694, + -0.004057375248521566, + 0.018209626898169518, + -0.035642240196466446, + 0.018109366297721863, + -0.02010202407836914, + 0.013522496446967125, + -0.018573066219687462, + 0.011185197159647942, + 0.010201401077210903, + -0.008879229426383972, + 0.006723650731146336, + -0.023861754685640335, + -0.014926129020750523, + -0.02232026495039463, + 0.004787389654666185, + -0.02211974561214447, + -0.0071748183108866215, + -0.012758017517626286, + 0.030554072931408882, + 0.020290009677410126, + -0.00596857164055109, + 2.69496285909554e-5, + -0.02491447888314724, + 0.035842761397361755, + 0.0057805851101875305, + -0.001091105048544705, + -0.002255838131532073, + 0.0014521958073601127, + -0.000598815327975899, + -0.015302102081477642, + -0.007187350653111935, + -0.008277672342956066, + -0.004477211739867926, + -0.022859159857034683, + -0.0037910612300038338, + 0.006742449477314949, + 0.006886572577059269, + 0.013422236777842045, + 0.0009227004484273493, + 0.0009508983930572867, + 0.0006207471014931798, + 0.00815234798938036, + 0.025841878727078438, + -0.012382044456899166, + 0.005132031626999378, + -0.009606110863387585, + -0.015552750788629055, + 0.014988791197538376, + -0.021217409521341324, + -0.008772703818976879, + -0.00951838307082653, + -0.0005447692237794399, + 0.0005886327708140016, + -0.008001958951354027, + 0.00641660625115037, + 7.45581928640604e-5, + -0.03742184862494469, + -0.004145102575421333, + 0.018071768805384636, + 0.004859451204538345, + 0.029225636273622513, + 0.0006121310871094465, + -0.004897048696875572, + -0.0076385182328522205, + 0.016191905364394188, + 0.026493564248085022, + -0.010101141408085823, + 0.009267734363675117, + -0.0203025434166193, + 0.002924756845459342, + 0.03887560963630676, + 0.027546290308237076, + 0.005185294430702925, + 0.0005341949872672558, + -0.01245723944157362, + 0.013672885484993458, + 0.01264522597193718, + -0.0038599895779043436, + 0.027471095323562622, + -0.00995075237005949, + -0.019851375371217728, + 0.0033210949040949345, + -0.005987370386719704, + 4.0338771214010194e-5, + 0.003913252614438534, + -0.005392079707235098, + 0.006880306173115969, + -0.0011263524647802114, + 0.01644255220890045, + 0.01661800779402256, + -0.011479709297418594, + -0.003468350972980261, + 0.020440399646759033, + -0.015001323074102402, + -0.005357615649700165, + 0.004217164125293493, + 0.003471484174951911, + 0.010978411883115768, + -0.02422519400715828, + 0.025102464482188225, + -0.00012689089635387063, + -0.013973663561046124, + -0.004445881117135286, + -0.019763648509979248, + -0.0060876295901834965, + -0.005426543764770031, + -0.010351790115237236, + -5.167793005966814e-6, + -0.009148676879703999, + -0.005182161461561918, + -0.012958536855876446, + 0.017156902700662613, + -0.006880306173115969, + -0.008647379465401173, + -0.0019409606466069818, + 0.008960690349340439, + 0.0074755968526005745, + 0.014261909760534763, + -0.016630539670586586, + -0.00592470820993185, + -0.01843520998954773, + 0.014086456038057804, + -0.0043362220749258995, + -0.00045743383816443384, + 0.0159537885338068, + -0.01794644445180893, + 0.011166398413479328, + -0.004997307900339365, + 0.01825975626707077, + -0.0014803936937823892, + -0.01797151006758213, + -0.003233367810025811, + -0.0039884471334517, + 0.03554198145866394, + -0.003628139616921544, + -0.019049299880862236, + 0.033311210572719574, + -0.011830617673695087, + -0.02482675202190876, + 0.027170317247509956, + 0.004235962405800819, + 0.0019143292447552085, + 0.009230137802660465, + -0.01696891523897648, + -0.016555344685912132, + -0.01429950725287199, + -0.016191905364394188, + 0.0019064964726567268, + 0.0007225731387734413, + 0.0027117053978145123, + -0.0002647476503625512, + 0.0004809321544598788, + -0.016279632225632668, + 0.013133990578353405, + 0.0008365399553440511, + 0.023485781624913216, + 0.0072249481454491615, + 0.012764283455908298, + 0.0035936753265559673, + -0.001415381790138781, + 0.00413257023319602, + -0.0019973565358668566, + 0.007594654802232981, + 0.0008702208870090544, + 0.009881824254989624, + 0.0328851044178009, + -0.0006399374105967581, + 0.007287610322237015, + 0.0086849769577384, + 0.04168287664651871, + 0.014512558467686176, + -0.0018641995266079903, + -0.006780046503990889, + 0.00990688893944025, + 0.012870809063315392, + -0.02056572400033474, + 0.006341411266475916, + -0.0008193078683689237, + -0.015978852286934853, + 0.002147745806723833, + -0.021969355642795563, + -0.015715671703219414, + 0.016379890963435173, + -0.005639594979584217, + -0.0044646793976426125, + -0.003950849641114473, + 0.011642631143331528, + -0.0033586921636015177, + 0.013647820800542831, + 0.004624468274414539, + 0.010953347198665142, + 0.014963725581765175, + 0.01391100138425827, + -0.02338552102446556, + -0.01943780481815338, + 0.014625350013375282, + -0.026393305510282516, + -0.012795615009963512, + -0.0009062516037374735, + -0.009054683148860931, + 0.019475402310490608, + 0.0063163465820252895, + -0.0035842759534716606, + 0.011874481104314327, + -0.036394186317920685, + -0.00624428503215313, + -0.01201233733445406, + -0.0053012194111943245, + 0.0028558282647281885, + -0.0016558477655053139, + 0.010000881738960743, + -0.010840555652976036, + -0.022483186796307564, + -0.03401302546262741, + 0.01825975626707077, + 0.006498066708445549, + 0.0006101728649809957, + -0.0062818825244903564, + 0.031005240976810455, + -0.017069173976778984, + 0.004859451204538345, + 0.006306947208940983, + -0.01630469597876072, + -0.00782023835927248, + 0.0081962114199996, + 0.019964167848229408, + 0.010207667015492916, + 0.010972145944833755, + 0.009900623001158237, + 0.0026412103325128555, + 0.0043424884788692, + 0.0009743967093527317, + 0.008171146735548973, + -0.006679787300527096, + -0.005085035227239132, + 0.01236951258033514, + 0.0009642141521908343, + -0.014437363483011723, + 0.005999902728945017, + -0.010947081260383129, + 0.0039226519875228405, + -0.004699662793427706, + -0.011235326528549194, + 0.029250700026750565, + 0.007325207348912954, + 0.002780633745715022, + -0.008916826918721199, + -0.009581045247614384, + -0.01874852180480957, + -0.01216899324208498, + 0.006629657465964556, + 0.005113232880830765, + -0.029200570657849312, + 0.01486346684396267, + -0.014988791197538376, + 0.030829787254333496, + 0.006181622855365276, + -0.017470212653279305, + -0.01033925823867321, + 0.02957654371857643, + -0.0055299364030361176, + 0.001754540717229247, + -0.008822833187878132, + -0.007055760361254215, + 0.002481421921402216, + -2.2372352759703062e-5, + -0.020139621570706367, + -0.03867509216070175, + -0.0019017967861145735, + -0.010464582592248917, + -0.00967503897845745, + 0.01837254874408245, + 0.004276692867279053, + -0.012450972571969032, + 0.00864111352711916, + 0.0123005835339427, + -0.034464191645383835, + 0.021881628781557083, + -0.015126647427678108, + -0.02591707371175289, + 0.009593578055500984, + -0.004217164125293493, + -0.02111715078353882, + -0.01661800779402256, + 0.006447937339544296, + -0.003017183393239975, + 0.012613894417881966, + 0.016091644763946533, + 0.000925050291698426, + 0.013986196368932724, + 0.0077826413325965405, + -0.03724639490246773, + 0.004978509154170752, + -0.008102218620479107, + 0.013697950169444084, + 0.0036908017937093973, + -0.01402379386126995, + 0.006093895994126797, + 0.027771873399615288, + -0.03338640183210373, + -0.02151818946003914, + -0.007970628328621387, + -0.00043197732884436846, + -0.005952905863523483, + 0.010320459492504597, + 0.0020584522280842066, + 0.001593968947418034, + 0.0005964655429124832, + 0.0025926472153514624, + -0.025102464482188225, + 0.003161306492984295, + 0.01057110819965601, + -0.011899545788764954, + 0.0280475877225399, + 0.008923092857003212, + 0.005476673599332571, + -0.006679787300527096, + -0.003997846506536007, + -0.0001961130037670955, + -0.02194429188966751, + 0.006598326377570629, + 0.006585794035345316, + 0.004962843842804432, + 0.0041419691406190395, + 0.024175064638257027, + -0.008045822381973267, + 0.013710482977330685, + -0.0049941749311983585, + -0.007400402333587408, + 0.0020506195724010468, + -0.0014075490180402994, + 0.010163803584873676, + 0.003831791691482067, + 0.013271847739815712, + 0.001330787781625986, + 0.01693131774663925, + 0.0028902925550937653, + 0.018485339358448982, + 0.01584099605679512, + 0.018485339358448982, + -0.004950311500579119, + 0.002280903048813343, + 0.009712636470794678, + 0.005414011422544718, + -0.0081962114199996, + -0.022621043026447296, + -0.018184561282396317, + -5.4878353694221005e-5, + 0.01777099072933197, + -0.0035247469786554575, + 0.007124688476324081, + -0.02422519400715828, + -0.008622314780950546, + 0.0072312140837311745, + 0.008816567249596119, + 0.016342293471097946, + -0.005648994352668524, + 0.012895874679088593, + -0.011385716497898102, + 0.005523669999092817, + -0.04406403750181198, + -0.00802075769752264, + -0.02520272508263588, + -0.015590347349643707, + 0.006479268427938223, + -0.021731240674853325, + -0.024200130254030228, + 0.010220199823379517, + 0.0009493318502791226, + -0.004906447604298592, + 1.857835377450101e-5, + 0.011009743437170982, + 0.003374357707798481, + -0.0009673472377471626, + 0.005103833507746458, + -0.0022840360179543495, + -0.006955500692129135, + -0.006131493020802736, + -0.003424487542361021, + -0.03877535089850426, + 0.005417144391685724, + 0.00807715393602848, + 0.03709600493311882, + 0.004298624582588673, + 0.02425025962293148, + -0.018209626898169518, + -0.01566554233431816, + -0.02094169706106186, + 0.017344888299703598, + -0.005398345645517111, + -0.030955111607909203, + -0.002835463033989072, + 0.001210163114592433, + -0.010583640076220036, + -0.009668773040175438, + 0.0048155877739191055, + -0.018873846158385277, + 0.023686299100518227, + 0.0081962114199996, + 0.006397807504981756, + -0.014825869351625443, + 0.014437363483011723, + 0.018121900036931038, + -0.02762148343026638, + -0.014424831606447697, + -0.007538259029388428, + 0.0227213017642498, + 0.00782023835927248, + -0.012206590734422207, + -0.02214481122791767, + 0.026543695479631424, + -0.013597690500319004, + 0.006942968349903822, + 0.005454741884022951, + 0.007544524967670441, + 0.006598326377570629, + 0.004668331705033779, + 0.038148727267980576, + -0.00854085385799408, + -0.0008694375865161419, + -0.009731435216963291, + 0.0019221620168536901, + -0.016580410301685333, + -0.022708769887685776, + -0.020816372707486153, + 0.000593332399148494, + -0.0074254670180380344, + -0.010646302253007889, + -0.012325648218393326, + -0.008722573518753052, + -0.031030306592583656, + 0.003603074699640274, + 0.0027007395401597023, + 0.009587312117218971, + -0.002649043221026659, + 0.01382327452301979, + 0.0068740397691726685, + 0.005135164596140385, + 0.0020255546551197767, + -0.0026866404805332422, + -0.02431292086839676, + 0.00048249869723804295, + 0.0045712050050497055, + -0.010740295983850956, + -0.008465658873319626, + 0.0007793607073836029, + -0.01841014437377453, + 0.005003574304282665, + 0.019663387909531593, + -0.023774027824401855, + -0.002233906416222453, + -0.0013284379383549094, + -0.010345524176955223, + 0.010677633807063103, + 0.01019513513892889, + -0.007713713217526674, + -0.012031136080622673, + -0.003317961934953928, + -0.024012142792344093, + -0.010464582592248917, + -0.029075246304273605, + -0.01140451431274414, + -0.005755520425736904, + -0.00025906891096383333, + -0.00887296348810196, + 0.0021712442394346, + -0.0038380578625947237, + 0.01199353951960802, + 0.01402379386126995, + 0.0007245313026942313, + -0.007105889730155468, + -0.0068176439963281155, + -0.031055370345711708, + -0.016091644763946533, + -0.011047339998185635, + -0.0035278801806271076, + 0.015026387758553028, + -0.030378619208931923, + -0.022157343104481697, + 0.013509963639080524, + -0.004593137186020613, + 0.015001323074102402, + -0.009010819718241692, + -0.0011615999974310398, + -0.01823469065129757, + -0.009775298647582531, + 0.01630469597876072, + -0.01418671477586031, + -0.01869839057326317, + -0.011016009375452995, + 0.004505409859120846, + -0.008446860127151012, + -0.0025597496423870325, + 0.009367994032800198, + -0.01221285667270422, + 0.029501348733901978, + -0.007513193879276514, + -0.00838419795036316, + 0.026719149202108383, + 0.026944732293486595, + 0.00805208832025528, + -0.00981916207820177, + 0.014399765990674496, + 0.02154325321316719, + 0.02819797582924366, + -0.003233367810025811, + 0.014913596212863922, + 0.0022589711006730795, + 0.014249376952648163, + 0.01211259700357914, + 0.0015783034032210708, + 0.009643707424402237, + -0.007632252294570208, + -0.011323054321110249, + 0.014738142490386963, + 0.009881824254989624, + -0.0042265634983778, + 0.010063543915748596, + 0.030052775517106056, + 0.010232732631266117, + 0.00048680673353374004, + -0.003468350972980261, + -0.003233367810025811, + 0.015991386026144028, + 0.013397172093391418, + -0.011191463097929955, + 0.00976276583969593, + -0.013760612346231937, + 0.005880844779312611, + -0.0003219268983229995, + -0.0005623929901048541, + 0.027521224692463875, + -0.017232095822691917, + -0.004496010486036539, + -0.020315075293183327, + 0.004918980412185192, + -0.0022824695333838463, + 0.017583005130290985, + -0.006754981819540262, + 0.0014882264658808708, + -0.01218152604997158, + -0.0042296964675188065, + -0.013898469507694244, + 0.027671614661812782, + 0.003147207433357835, + 0.008509522303938866, + 0.021994421258568764, + -0.007983160205185413, + 0.014399765990674496, + -0.006325745955109596, + -0.007212415803223848, + 0.01353502832353115, + 0.0016260832780972123, + -0.016354825347661972, + -0.01010740827769041, + -0.005063103046268225, + -0.007344006095081568, + -0.0016245166771113873, + -0.000907034904230386, + 0.0005424193805083632, + -0.019863907247781754, + 0.0033806241117417812, + 0.007481862790882587, + 0.012764283455908298, + 0.010577374137938023, + 0.010796691291034222, + 0.0034652180038392544, + 0.006275616120547056, + -0.0031237092334777117, + 0.023310326039791107, + -0.0006736183422617614, + 0.0025111865252256393, + -0.0069742994382977486, + 0.008666178211569786, + -0.0012187791289761662, + -0.011774221435189247, + 0.0008193078683689237, + 0.006986831780523062, + -0.0030344154220074415, + -0.017232095822691917, + -0.009336663410067558, + -0.00996328517794609, + -0.0003937925794161856, + -0.0043362220749258995, + -0.002888726070523262, + -0.006466735620051622 + ], + "39b7cc27-3b1a-459c-87ac-cb805e0845d9": [ + -0.015289380215108395, + -0.021338189020752907, + -0.0033322242088615894, + 0.015504554845392704, + 0.0014823167584836483, + -0.032228436321020126, + -0.03409328684210777, + 0.018923446536064148, + 0.008373893797397614, + 0.05159418657422066, + -0.05078130215406418, + -0.0183855090290308, + -0.015468692407011986, + -0.0069035314954817295, + 0.010926108807325363, + 0.0019111725268885493, + -0.023585572838783264, + -0.0161859430372715, + 0.022198889404535294, + -0.027088142931461334, + 0.03497789427638054, + -0.03182199224829674, + -0.023095451295375824, + 0.004709941800683737, + -0.025438468903303146, + 0.004703965038061142, + -0.04093106836080551, + 0.0064014564268291, + -0.026083992794156075, + -0.009742646478116512, + -0.03954438492655754, + -0.013878787867724895, + -0.03755999356508255, + 0.027088142931461334, + -0.021625088527798653, + 0.007614804431796074, + 0.014715580269694328, + 0.009892073459923267, + 0.023119360208511353, + 0.00959919672459364, + -0.023824656382203102, + -0.0041241878643631935, + 0.014739488251507282, + -0.03693837672472, + -0.024936392903327942, + 0.010860361158847809, + -0.01797906681895256, + 0.006162373349070549, + 0.04616699367761612, + -0.0020710595417767763, + 0.054845720529556274, + 0.015899041667580605, + -0.007465377449989319, + 0.035862501710653305, + -0.0032515334896743298, + -0.011093467473983765, + 0.030459217727184296, + 0.025247201323509216, + -0.01808665506541729, + -0.03323258459568024, + -0.013137630186975002, + 0.0110396733507514, + -0.009360113181173801, + 0.0022339350543916225, + 0.003090152284130454, + -0.028092293068766594, + -0.003917978145182133, + -0.026107901707291603, + -0.009127006866037846, + 0.00859504658728838, + -0.02854655124247074, + 0.03722527623176575, + -0.022139117121696472, + -0.009473677724599838, + 0.032228436321020126, + -0.041672226041555405, + 0.0067541045136749744, + -0.021660951897501945, + -0.002570145996287465, + -0.013914651237428188, + -0.010501735843718052, + -0.04535410925745964, + -0.003929932601749897, + -0.012121525593101978, + 0.00320072821341455, + 0.005110406316816807, + -0.03213280066847801, + -0.01527742575854063, + -0.018313784152269363, + -0.03098520264029503, + -0.007106752600520849, + -0.01586318016052246, + -0.01154174841940403, + 0.020836113020777702, + 0.002526812022551894, + 0.011768877506256104, + -0.02476903423666954, + 0.006275937892496586, + -0.04915553703904152, + -0.021660951897501945, + -0.046860337257385254, + -0.028235742822289467, + 0.0037117688916623592, + -0.014500404708087444, + -0.02637089230120182, + 0.008373893797397614, + 0.0028630229644477367, + 0.019975414499640465, + 0.00596214085817337, + 0.039281394332647324, + -0.023944197222590446, + -0.03421282768249512, + 0.015014434233307838, + -0.010316446423530579, + 0.0040046460926532745, + -0.04599963501095772, + 0.027279410511255264, + 0.04494766891002655, + -0.021959805861115456, + -0.0008517344249412417, + 0.04401524364948273, + -0.014488451182842255, + -0.02145772986114025, + -0.00046845394535921514, + 0.00855320692062378, + 0.011852556839585304, + -0.009079189971089363, + 0.015241563320159912, + 0.014751442708075047, + 0.01567191258072853, + -0.004240741021931171, + 0.02876172587275505, + 0.03273050859570503, + -0.0036400440149009228, + -0.027853209525346756, + -0.010746796615421772, + 0.0019545063842087984, + 0.0638352558016777, + -0.014882938005030155, + 0.013544071465730667, + -0.02873781882226467, + 0.042867645621299744, + 0.007029050495475531, + -0.012731187976896763, + -0.013101767748594284, + -0.006096625234931707, + -0.01915057562291622, + 0.03421282768249512, + -0.010938063263893127, + 0.019234254956245422, + -0.01708250492811203, + -0.013006133958697319, + -0.03641239553689957, + 0.02460167557001114, + -0.0009428849443793297, + 0.0013119698269292712, + 0.01102771982550621, + 0.017500901594758034, + -0.03452363610267639, + -0.022940047085285187, + 0.0036699294578284025, + -0.05011187121272087, + 0.03538433462381363, + 0.0045366063714027405, + 0.010848406702280045, + 0.00873251911252737, + 0.009617127478122711, + 0.021242555230855942, + -0.015743639320135117, + 0.026012267917394638, + 0.015791455283761024, + -0.03371075168251991, + -0.004880288615822792, + 0.010011615231633186, + 0.002024737186729908, + 0.028690000995993614, + -0.02370511367917061, + -0.016688017174601555, + 0.04394352063536644, + 0.01074081938713789, + -0.01727377250790596, + 0.0659870058298111, + -0.0024132474791258574, + 0.02056116797029972, + 0.013938559219241142, + 0.016580430790781975, + -0.01689123921096325, + 0.016664110124111176, + -0.04688424617052078, + -0.02555800974369049, + -0.013065905310213566, + 0.013579933904111385, + 0.003072221064940095, + -0.0019261152483522892, + -0.0035862501244992018, + 0.014942709356546402, + 0.013854879885911942, + -0.02325085550546646, + 0.008033200167119503, + -0.017142275348305702, + -0.0259405430406332, + -0.036675386130809784, + -0.007196408696472645, + 0.013842925429344177, + -0.04179177060723305, + 0.015110067091882229, + -0.011362436227500439, + -0.003810390830039978, + 0.03571905195713043, + -0.026729518547654152, + 0.037655625492334366, + -0.03299350291490555, + -0.035025712102651596, + -0.0020053116604685783, + 0.009330227971076965, + 0.0161022637039423, + -0.0074235377833247185, + -0.004333385732024908, + -0.022724872455000877, + 0.0006044326000846922, + 0.02056116797029972, + -0.0273511353880167, + -0.03538433462381363, + 0.004455915652215481, + -0.048653461039066315, + 0.017811710014939308, + -0.012193250469863415, + -0.03995082899928093, + -0.02036990039050579, + -0.005645355675369501, + 0.026825152337551117, + 0.00953344814479351, + 0.013711430132389069, + -0.005998003296554089, + 0.007465377449989319, + 0.04315454512834549, + 0.029526792466640472, + 0.01347234658896923, + 0.02536674402654171, + -0.03430845960974693, + 0.031439460813999176, + 0.0587666854262352, + -0.006359617225825787, + -0.08783922344446182, + -0.008385848253965378, + 0.009174823760986328, + 0.011960144154727459, + -0.00047405745135620236, + 0.005197074264287949, + 0.020788297057151794, + -0.026203535497188568, + -0.03421282768249512, + -0.007710437756031752, + 0.009467700496315956, + -0.05814506858587265, + -0.00497592194005847, + -7.139813533285633e-5, + 0.029502885416150093, + -0.024183280766010284, + -0.04391961172223091, + 0.0019963460508733988, + 0.027470676228404045, + -0.019102759659290314, + -0.013316942378878593, + 0.057045288383960724, + -0.0234899390488863, + 0.020035184919834137, + 0.0006410422502085567, + 0.002047151094302535, + -0.0259405430406332, + 0.00859504658728838, + -0.02387247234582901, + -0.037440452724695206, + 0.0036669408436864614, + -0.011009788140654564, + -0.02696860209107399, + -0.03014840930700302, + 0.03918576240539551, + 0.017345497384667397, + 0.00877435877919197, + -0.007363766897469759, + -0.009539425373077393, + 0.05159418657422066, + 0.0411701537668705, + 0.05408065393567085, + 0.017309634014964104, + -0.02816401794552803, + -0.02387247234582901, + -0.011314619332551956, + -0.01230083778500557, + -0.016150079667568207, + -0.01977219246327877, + -0.00728606479242444, + 0.015707775950431824, + 0.053650304675102234, + 0.02240210957825184, + 0.003995680250227451, + -0.027255501598119736, + 0.006969279609620571, + 0.007584919221699238, + -0.014141780324280262, + 0.04255683720111847, + 0.0183855090290308, + -0.036484118551015854, + -0.005770874209702015, + 0.0008704127976670861, + 0.08119270205497742, + 0.03241970017552376, + -0.0012357620289549232, + -0.005612481385469437, + 0.008320100605487823, + -0.0050476472824811935, + -0.028235742822289467, + -0.052407070994377136, + -0.01258773822337389, + 0.010071385651826859, + -0.001930598053149879, + -0.02737504243850708, + -0.0322045274078846, + 0.016066400334239006, + -0.015600188635289669, + 0.012360609136521816, + 0.002966127824038267, + 0.006275937892496586, + -0.00224738335236907, + -0.030602669343352318, + -0.004993853624910116, + 0.006849737837910652, + 0.03736872598528862, + -0.03234797716140747, + -0.015169838443398476, + 0.004085336811840534, + -0.02265314757823944, + -0.018433326855301857, + 0.019461384043097496, + -0.01917448453605175, + 0.002021748572587967, + -0.04599963501095772, + -0.011619450524449348, + -0.0005192591343075037, + -0.024912483990192413, + -0.007268133573234081, + 0.05408065393567085, + 0.020035184919834137, + -0.049012087285518646, + -0.018911492079496384, + 0.03201325982809067, + 0.02460167557001114, + 0.01459603849798441, + 0.007656644098460674, + 0.0005932255298830569, + -0.010770704597234726, + 0.038062069565057755, + 0.007722392212599516, + -0.010220812633633614, + 0.01427327562123537, + -2.256582592963241e-5, + 0.006425364874303341, + -0.004303500056266785, + 0.024326730519533157, + -0.004957990720868111, + -0.03335212543606758, + 0.007895727641880512, + 0.005842599086463451, + -0.01308981329202652, + 0.04487594589591026, + -0.0022025553043931723, + -0.018457233905792236, + -0.011015765368938446, + 0.045425835996866226, + 0.022557513788342476, + -0.01906689628958702, + -0.058240704238414764, + 0.008565160445868969, + 0.018421372398734093, + -0.06015336886048317, + 0.018827812746167183, + 0.010149087756872177, + -0.0200471393764019, + 0.022449925541877747, + -0.03870759531855583, + 0.002163704251870513, + 0.04128969460725784, + 0.020190589129924774, + 0.04616699367761612, + -0.001701974542811513, + 0.027088142931461334, + -0.06933417171239853, + -0.025032026693224907, + -0.003158888779580593, + -0.024912483990192413, + -0.018038839101791382, + -0.032252345234155655, + -0.04272419586777687, + 0.000776273722294718, + 0.018696317449212074, + -4.963781248079613e-5, + -0.0027300328947603703, + 0.002100944984704256, + -0.017441129311919212, + 0.0012671417789533734, + 0.001927609439007938, + 0.011314619332551956, + -0.007405606564134359, + -0.025844909250736237, + -0.010424033738672733, + 0.010370240546762943, + 0.01650870591402054, + 0.05255052074790001, + -0.015420875512063503, + 0.01567191258072853, + -0.020788297057151794, + -0.02321499213576317, + 0.03880322724580765, + 0.0042706262320280075, + 0.03435627743601799, + 0.011846579611301422, + -0.004533617757260799, + -0.0707208514213562, + 0.019485292956233025, + 0.07239443808794022, + 0.03373466059565544, + -0.011129329912364483, + 0.018206197768449783, + 0.028905177488923073, + -0.023585572838783264, + 0.003589238738641143, + -0.006993188057094812, + 0.00923459418118, + 0.03739263489842415, + 0.017070550471544266, + -0.003813379444181919, + 0.0091927545145154, + -0.012187273241579533, + -0.015313288196921349, + -0.01866045594215393, + 0.018636547029018402, + 0.03500180318951607, + 0.012850729748606682, + -0.020824160426855087, + 0.02210325561463833, + -0.026012267917394638, + 0.06211385503411293, + 0.010932086035609245, + 0.027470676228404045, + -0.01192428171634674, + 0.0293833427131176, + 0.019831962883472443, + 0.03794252872467041, + -0.008768381550908089, + -0.030602669343352318, + 0.022342339158058167, + -0.0064911129884421825, + -0.054224103689193726, + -0.013854879885911942, + 0.011589565314352512, + 0.02316717617213726, + 0.019102759659290314, + 0.026227442547678947, + 0.0015794443897902966, + 0.023585572838783264, + 0.02400396764278412, + 0.02164899744093418, + -0.0027404928114265203, + -0.04329799488186836, + -0.05757126957178116, + -0.04059635102748871, + 0.034451909363269806, + -0.004922128282487392, + 0.008057109080255032, + 0.009198731742799282, + -0.008786313235759735, + -0.017811710014939308, + 0.06522193551063538, + 0.032897867262363434, + 0.045067209750413895, + -0.05049440264701843, + -0.01870827190577984, + -0.011224962770938873, + 0.015875134617090225, + 0.021935896947979927, + 0.0029676221311092377, + -0.01879195123910904, + 0.02088393084704876, + -0.009282411076128483, + 0.020059091970324516, + 0.00810492504388094, + 0.025892727077007294, + -0.026633884757757187, + 0.007315950468182564, + 0.01347234658896923, + 0.029478976503014565, + 0.012850729748606682, + -0.009013442322611809, + 0.03512134402990341, + 0.036268942058086395, + 0.035671234130859375, + 0.018827812746167183, + 0.036866653710603714, + -0.04576055333018303, + 0.015205700881779194, + -0.022306475788354874, + 0.011930258944630623, + 0.007483308669179678, + -0.01748894713819027, + 0.015050296671688557, + 0.009874141775071621, + 0.011942213401198387, + -0.0036161355674266815, + -0.0018424360314384103, + -0.0037057918962091208, + 0.025821002200245857, + 0.011738992296159267, + -0.030435310676693916, + -0.00042250510887242854, + 0.011087490245699883, + -0.024888576939702034, + 0.002610491355881095, + 0.006939393933862448, + 0.028092293068766594, + 0.012276929803192616, + -0.03421282768249512, + -0.020429672673344612, + -0.0009122524061240256, + -0.022832458838820457, + 0.02613181062042713, + -0.02009495534002781, + -0.041648320853710175, + 0.0028570459689944983, + 0.017835617065429688, + -0.005331558641046286, + -0.021134966984391212, + -0.0009354135836474597, + 0.0009615633171051741, + -0.0034995824098587036, + 0.012205204926431179, + -0.023454075679183006, + -0.014619946479797363, + 0.015420875512063503, + 0.010477827861905098, + -0.007094798143953085, + 0.008081017062067986, + 0.00698721082881093, + 0.014046146534383297, + -0.01874413527548313, + -0.03650802746415138, + 0.012527967803180218, + -0.008086994290351868, + 0.008009292185306549, + 0.005376386921852827, + -0.005176154430955648, + 0.022115210071206093, + -0.030913475900888443, + 0.0010743808234110475, + -0.020130818709731102, + -0.03595813363790512, + 0.016436979174613953, + -0.0008098948164843023, + 0.00471890764310956, + -0.01661629229784012, + 0.001905195415019989, + 0.0005551216308958828, + 0.04050071910023689, + 0.025271110236644745, + -0.015468692407011986, + -0.01866045594215393, + -0.033447761088609695, + -0.018433326855301857, + 0.030100593343377113, + 0.006018923129886389, + 0.001503983628936112, + 0.032897867262363434, + 0.025438468903303146, + 0.010244721546769142, + -0.018373554572463036, + 0.007465377449989319, + -0.031630728393793106, + 0.010161042213439941, + -0.005035692825913429, + -0.0005850070738233626, + -0.003909012768417597, + 0.01738135889172554, + 0.0004759252769872546, + -0.0024416386149823666, + 0.01708250492811203, + -0.008864015340805054, + 0.03153509274125099, + 0.010758751071989536, + -0.009461723268032074, + 0.02680124342441559, + 0.02637089230120182, + 0.019808055832982063, + 0.02175658382475376, + -0.01748894713819027, + 0.007190431468188763, + 0.0007564746774733067, + -0.03433236852288246, + -0.022091301158070564, + -0.007339858915656805, + 0.0011169675271958113, + -0.005472020246088505, + -0.0009025396429933608, + 0.0008517344249412417, + -0.021230600774288177, + -0.018911492079496384, + 0.009168846532702446, + -0.026705609634518623, + 0.03232406824827194, + 0.0018080677837133408, + -0.006437319330871105, + 0.051833268254995346, + -0.007818025536835194, + 0.004118210636079311, + -0.029837600886821747, + 0.013508209027349949, + 0.013412576168775558, + 0.005896393209695816, + 0.0182181503623724, + 0.013448438607156277, + -0.003950852435082197, + -0.0030632554553449154, + 0.007937567308545113, + 0.030052777379751205, + -0.017094459384679794, + 0.026681700721383095, + 0.02598835900425911, + -0.005274776369333267, + -0.010991856455802917, + -0.024506043642759323, + -0.014787305146455765, + 0.0015899043064564466, + -0.011954166926443577, + 0.01724986359477043, + -0.0064851357601583, + 0.021637042984366417, + -0.010770704597234726, + 0.036890558898448944, + 0.03521697595715523, + -0.012707279995083809, + 0.01631743833422661, + -0.0037147575058043003, + -0.021134966984391212, + 0.020429672673344612, + -0.014882938005030155, + -0.0236572977155447, + -0.00283164344727993, + -0.0474819540977478, + -0.00684376060962677, + 0.023418214172124863, + 0.04401524364948273, + -0.03622112795710564, + 0.02246187999844551, + 0.020549213513731956, + 0.02126646414399147, + 0.01680755987763405, + -0.014906846918165684, + -0.010005638003349304, + 0.014763396233320236, + 0.01228888425976038, + -0.007100775372236967, + -0.025653643533587456, + -0.03000495955348015, + 0.025032026693224907, + 0.02218693494796753, + 0.025103751569986343, + 0.02460167557001114, + -0.019186438992619514, + 0.018373554572463036, + 0.008499412797391415, + 0.024673402309417725, + 0.022712917998433113, + 0.012994179502129555, + 0.0047786785289645195, + 0.015026388689875603, + 0.01518179289996624, + -0.009073212742805481, + 0.002538766246289015, + 9.908884385367855e-5, + -0.011721061542630196, + -0.009969775564968586, + -0.025701459497213364, + -0.006437319330871105, + -0.029550701379776, + 0.016245713457465172, + 0.014619946479797363, + -0.01909080520272255, + 0.0008113891235552728, + 0.009838279336690903, + -0.02794884331524372, + -0.006210189778357744, + -0.003917978145182133, + 0.03397374227643013, + 0.006921462714672089, + 0.021768538281321526, + 0.0020486454013735056, + 0.001063173753209412, + -0.03296959400177002, + -0.0012932914542034268, + 0.0015884099993854761, + 0.006413410883396864, + 0.0005752943106926978, + -0.008415733464062214, + -0.054032836109399796, + 0.00897757988423109, + 0.026896877214312553, + 0.00431844312697649, + -0.0064432960934937, + -0.03337603434920311, + 0.014141780324280262, + 6.794263026677072e-5, + 0.035456061363220215, + -0.039687834680080414, + 0.004832472186535597, + -0.027638034895062447, + -0.019975414499640465, + 0.012025892734527588, + -0.049872785806655884, + 0.016735835000872612, + 0.0244462713599205, + 0.005851564928889275, + -0.02957461029291153, + 0.016879284754395485, + 0.014823167584836483, + -0.053841568529605865, + -0.013807062990963459, + -0.009945867583155632, + 0.028522644191980362, + -0.002689687767997384, + -0.022163026034832, + -0.0002473018248565495, + 0.02417132630944252, + 0.023585572838783264, + 0.030052777379751205, + 0.010776681825518608, + -0.03208498656749725, + -0.015301334671676159, + -0.007112729363143444, + 0.022533604875206947, + 0.015205700881779194, + 0.02020254358649254, + -0.019329888746142387, + -0.004880288615822792, + -0.007716414984315634, + 0.010328400880098343, + 0.002260831883177161, + -0.00714859226718545, + -0.013400621712207794, + 0.018624592572450638, + -0.023776838555932045, + 0.0017199058784171939, + -0.002275774721056223, + -0.03954438492655754, + 0.023884426802396774, + -0.03438018634915352, + 0.0309612937271595, + 0.009300341829657555, + -0.007519171107560396, + -0.02289223112165928, + -0.0006892324890941381, + 0.028450917452573776, + -0.013233263045549393, + 0.012079685926437378, + -0.004482812713831663, + -0.03323258459568024, + 0.026418710127472878, + 0.013962467201054096, + 0.012187273241579533, + 0.020716572180390358, + 0.01607835479080677, + -0.015815364196896553, + 0.004109244793653488, + -0.005244890693575144, + 0.011195077560842037, + -0.029622426256537437, + -0.028522644191980362, + -0.026849059388041496, + -0.007578941993415356, + -0.029407251626253128, + 0.022605329751968384, + 0.007853887975215912, + -0.03198935091495514, + -0.041457053273916245, + 0.0518810860812664, + 0.014727533794939518, + -0.013627750799059868, + -0.009306319057941437, + 0.032061077654361725, + 0.023501893505454063, + -0.001238003489561379, + 0.015899041667580605, + -0.015516509301960468, + -0.022533604875206947, + 0.012683372013270855, + -0.0003365845186635852, + 0.03995082899928093, + -0.005095463711768389, + -0.01757262647151947, + 0.009927935898303986, + -0.023394305258989334, + -0.0016407094663009048, + -0.021242555230855942, + 0.015588234178721905, + 0.010065409354865551, + -0.007584919221699238, + 0.006580769084393978, + -0.04011818394064903, + -0.014321092516183853, + 0.011254848912358284, + -0.013006133958697319, + 0.008236421272158623, + 0.010459896177053452, + 0.01178680919110775, + -0.014990526251494884, + 0.014966617338359356, + -0.008421710692346096, + 0.006455250550061464, + 0.008278260938823223, + 0.019425522536039352, + -0.0076925065368413925, + 0.0038223450537770987, + -0.006515021435916424, + -0.01768021285533905, + -0.002384856343269348, + 0.003855218878015876, + 0.01729767955839634, + -0.0020486454013735056, + 0.01010127179324627, + -0.021840263158082962, + 0.0026598023250699043, + 0.014249367639422417, + 0.013854879885911942, + -0.010131157003343105, + -0.022473834455013275, + 0.03555169329047203, + 0.01329303439706564, + 0.017130320891737938, + 0.011015765368938446, + -0.0068796235136687756, + -0.031463369727134705, + -0.0009055281989276409, + -0.011780831962823868, + 0.0006918474100530148, + 0.017536763101816177, + 0.0014875467168167233, + 0.021876126527786255, + 0.026633884757757187, + -0.0033531440421938896, + -0.033854201436042786, + 0.02498420886695385, + -0.024159371852874756, + -0.0011319102486595511, + 0.02178049273788929, + 0.04136141762137413, + 0.013424529694020748, + -0.014380862936377525, + -0.009814371354877949, + 0.006413410883396864, + 0.0008875969215296209, + 0.027303317561745644, + 0.002658308017998934, + -0.011470023542642593, + -0.04033336043357849, + 0.022127164527773857, + -0.019329888746142387, + 0.0019201381364837289, + 0.03755999356508255, + 0.016233759000897408, + 0.006909508723765612, + 0.0034188919235020876, + 0.011422206647694111, + -0.031104743480682373, + -0.01329303439706564, + 0.04800793528556824, + -0.015958813950419426, + -0.007525148335844278, + -0.03574296087026596, + -0.00698721082881093, + -0.01787148043513298, + 0.005917313043028116, + 0.02634698525071144, + -0.03194153681397438, + -0.0022488776594400406, + 0.02756631001830101, + -0.007716414984315634, + -0.02715986780822277, + 0.043058909475803375, + 0.059197038412094116, + 0.0182181503623724, + 0.013113721273839474, + 0.019246209412813187, + 0.01648479700088501, + 0.02756631001830101, + 0.004312465898692608, + -0.03342385217547417, + -0.00813481118530035, + -0.005483974236994982, + 0.02433868497610092, + 0.004449938889592886, + -0.00708882138133049, + 0.03528870269656181, + -0.007943544536828995, + 0.0034876284189522266, + 0.04011818394064903, + 0.0042706262320280075, + -0.00903137307614088, + 0.02574927732348442, + -0.015253517776727676, + -0.007268133573234081, + 0.020274268463253975, + 0.010435988195240498, + -0.010830475948750973, + 0.021063242107629776, + 0.002897391328588128, + 0.013448438607156277, + 0.0235736183822155, + -0.04870127886533737, + 0.0018663443624973297, + 0.00744744623079896, + 0.00728606479242444, + -0.014584084041416645, + -0.009121029637753963, + 0.0004441720375325531, + 0.017285725101828575, + 0.005397306755185127, + -0.025414559990167618, + -0.018373554572463036, + -0.003762574167922139, + 0.006724219303578138, + -0.006724219303578138, + 0.022796597331762314, + -0.014404771849513054, + -0.018230104818940163, + -0.03559951111674309, + -0.004201889969408512, + -0.014859030023217201, + -0.029407251626253128, + 0.008780336007475853, + 0.015038342215120792, + -0.012539921328425407, + 0.0023400282952934504, + 0.02066875621676445, + 0.014321092516183853, + 0.00969482958316803, + -0.015205700881779194, + 0.007453423459082842, + -0.00999368354678154, + 0.0015159378526732326, + 0.02835528552532196, + -0.01557627972215414, + -0.0034368231426924467, + -0.02660997584462166, + 0.0034517657477408648, + 0.0014531784690916538, + -0.014165688306093216, + 0.018421372398734093, + -0.008224466815590858, + -0.0109978336840868, + -0.043035004287958145, + -0.0207524336874485, + 0.0017991021741181612, + -0.01669997163116932, + -0.01686733029782772, + 0.0031260147225111723, + 0.005851564928889275, + -0.02737504243850708, + 0.006550883874297142, + -3.310744068585336e-5, + 0.029670244082808495, + -0.02156531810760498, + 0.001001908676698804, + -0.010615300387144089, + -0.01928207278251648, + 0.002854057354852557, + -0.024529950693249702, + -0.019891735166311264, + -0.010722887702286243, + -0.022115210071206093, + -0.0018110563978552818, + 0.008278260938823223, + 0.003977749031037092, + 0.02935943566262722, + 0.021445775404572487, + -0.0005114141968078911, + -0.03619721904397011, + -0.03213280066847801, + 0.01689123921096325, + -0.010394148528575897, + -0.04351316764950752, + 0.027064234018325806, + 0.019019080325961113, + -0.015468692407011986, + -0.025653643533587456, + 0.026729518547654152, + 0.024912483990192413, + 4.380081736599095e-5, + -0.010860361158847809, + 0.01575559191405773, + -0.031056927517056465, + 0.008792290464043617, + -0.017811710014939308, + -0.014727533794939518, + -0.003424868918955326, + -0.011727037839591503, + 0.011254848912358284, + -0.00952149461954832, + 0.030865659937262535, + 0.007967452518641949, + -0.020597029477357864, + 0.025079842656850815, + -0.006909508723765612, + 0.0060906484723091125, + -0.004163038916885853, + -0.015301334671676159, + 0.004163038916885853, + 0.003777516772970557, + -0.00688560027629137, + 0.026060085743665695, + -0.006138464901596308, + -0.017154229804873466, + 0.028450917452573776, + -0.00793159008026123, + 0.001174496952444315, + -0.010926108807325363, + 0.010657140053808689, + 0.0051821316592395306, + 0.008601023815572262, + 0.007184454705566168, + 0.007704460993409157, + -0.008911831304430962, + -0.018540913239121437, + -0.041074518114328384, + -0.03275441750884056, + -0.004823506344109774, + -0.005409260746091604, + 0.020298175513744354, + 0.005788805428892374, + 0.013125675730407238, + -0.04179177060723305, + 0.010669094510376453, + 0.0170585960149765, + -0.01347234658896923, + 0.010860361158847809, + -0.01629352942109108, + 0.016018584370613098, + 0.010663117282092571, + 0.013281079940497875, + 0.011619450524449348, + -0.009832303039729595, + 0.03877931833267212, + -0.005767885595560074, + -0.005770874209702015, + 0.006210189778357744, + 0.017070550471544266, + 0.01158358808606863, + 0.008427687920629978, + 0.022163026034832, + -0.007513194344937801, + -0.025892727077007294, + -0.012432334013283253, + 0.0029108398593962193, + -0.01040012575685978, + -0.027853209525346756, + -0.008630909025669098, + 0.02058507688343525, + -0.0003350902406964451, + 0.010591392405331135, + 0.03930530324578285, + 0.010256676003336906, + -0.003469696966931224, + -0.0012140951585024595, + 0.024721218273043633, + 0.006108579691499472, + -0.010430010966956615, + 0.010651162825524807, + 0.01686733029782772, + 0.0259405430406332, + 0.024816852062940598, + 0.014237413182854652, + 0.01379510946571827, + 0.009473677724599838, + 0.019329888746142387, + 0.008116879500448704, + 0.005011784844100475, + 0.004847414791584015, + -0.05379375442862511, + -0.024840759113430977, + 0.002934748074039817, + 0.0007041751523502171, + 0.017261818051338196, + 0.04207867011427879, + -0.01740526780486107, + 0.00275991833768785, + 0.008379871025681496, + 0.02794884331524372, + 0.007829979993402958, + 0.017393313348293304, + 0.012121525593101978, + 0.01187048852443695, + -0.020573122426867485, + 0.0046382169239223, + 0.0024550871457904577, + -0.03739263489842415, + 0.012007961049675941, + -0.0006612148717977107, + -0.007208362687379122, + 0.015229608863592148, + 0.014787305146455765, + 0.011171169579029083, + -0.003188774222508073, + 0.009975752793252468, + 0.039759561419487, + 0.029598519206047058, + -0.03399765118956566, + 0.00469798780977726, + 0.0110396733507514, + 0.005337535869330168, + -0.007877795957028866, + 0.010597369633615017, + -0.015659959986805916, + 0.04052462801337242, + 0.03191762790083885, + -0.003831310663372278, + -0.009384021162986755, + -0.013603842817246914, + 0.01866045594215393, + 0.0025686516892164946, + -0.02045357972383499, + -0.0029108398593962193, + 0.007740323431789875, + 0.006120533682405949, + 0.005959152244031429, + 0.000648140034172684, + 0.038635868579149246, + 0.005672252271324396, + -0.021206693723797798, + 0.027709759771823883, + -0.004007634706795216, + 0.008666771464049816, + -0.01735745184123516, + 0.00964103639125824, + 0.0007777680293656886, + -0.010704956948757172, + -0.003935909830033779, + 0.011302664875984192, + -0.011236917227506638, + -0.015086159110069275, + -0.02197176031768322, + -0.02754240110516548, + -0.0028988856356590986, + -0.016986871138215065, + 0.009987707249820232, + 0.005029716063290834, + 0.012838775292038918, + 0.0028092293068766594, + -0.013053950853645802, + -0.015540417283773422, + -0.0011296687880530953, + -0.008684702217578888, + -0.006335708778351545, + 0.0004766724305227399, + -0.0400942787528038, + 0.001465879729948938, + -0.0029362423811107874, + -0.011374390684068203, + -0.007507217116653919, + -0.01379510946571827, + 0.03301741182804108, + -0.002981070429086685, + 0.0063835252076387405, + 0.009043327532708645, + -0.002869000192731619, + 0.021577272564172745, + -0.009664944373071194, + -0.006963302381336689, + -0.01773998513817787, + 0.0010639209067448974, + -0.02319108508527279, + -0.029048627242445946, + -0.016305483877658844, + -0.018732180818915367, + -0.013257171958684921, + -0.011493931524455547, + -0.009449769742786884, + -0.0050745438784360886, + 0.0012290378799661994, + 0.004724884871393442, + 0.00509845232591033, + -0.02346603013575077, + 0.006096625234931707, + -0.013125675730407238, + 0.003959817811846733, + -0.0005782828666269779, + -0.01258773822337389, + -0.00839182548224926, + -0.008744473569095135, + 0.01588708907365799, + 0.003359121037647128, + -0.011613473296165466, + 0.024398455396294594, + 0.023968106135725975, + 0.008158719167113304, + -0.03196544200181961, + 0.01409396342933178, + -0.001517432159744203, + 0.006431342102587223, + -0.0027509527280926704, + 0.01527742575854063, + 0.0015869156923145056, + 0.03557560220360756, + -0.029526792466640472, + -0.02756631001830101, + 0.006933417171239853, + -0.010149087756872177, + -0.01827792264521122, + -0.012115548364818096, + 0.0038342992775142193, + -0.03497789427638054, + -0.019808055832982063, + -0.025438468903303146, + 0.015516509301960468, + 0.011607496067881584, + 0.020919792354106903, + 0.019843917340040207, + 0.05417628586292267, + 0.016986871138215065, + -0.03473880887031555, + 0.0016511693829670548, + -0.0011177146807312965, + -0.0006234845495782793, + -0.004222809802740812, + 0.003356132423505187, + 0.01879195123910904, + 0.007196408696472645, + 0.0070350272580981255, + 0.00905528198927641, + -0.01144611556082964, + 0.012922454625368118, + -0.0078120483085513115, + -0.029646335169672966, + 0.02840310148894787, + -0.003042335622012615, + -0.001009379979223013, + -0.004865346010774374, + -0.018445279449224472, + 0.007429515011608601, + 0.02169681340456009, + -0.01768021285533905, + -0.026442619040608406, + 0.017034688964486122, + 0.004177981521934271, + -0.013938559219241142, + -0.018672408536076546, + -0.023525800555944443, + -0.004213843960314989, + -0.02897690236568451, + 0.0014875467168167233, + -0.005152245983481407, + 0.012091640383005142, + -0.004736838862299919, + 0.013735338114202023, + 0.00543914595618844, + 0.012492104433476925, + -0.0009712760802358389, + 0.013412576168775558, + -0.029646335169672966, + 0.023824656382203102, + 0.016150079667568207, + 0.007776185870170593, + -0.02835528552532196, + 0.018995171412825584, + -0.009079189971089363, + 0.0018005964811891317, + -0.002039679791778326, + -0.0051940856501460075, + -0.008953670971095562, + 0.011930258944630623, + 0.015707775950431824, + -0.004689021967351437, + 0.011792786419391632, + -0.008618954569101334, + 0.011398298665881157, + 0.017608487978577614, + 0.02699250914156437, + -0.02286832220852375, + 0.005349489860236645, + -0.009085167199373245, + 0.011458069086074829, + -0.007997337728738785, + 0.006520998198539019, + -0.024625584483146667, + -0.023932242766022682, + -0.0002811097074300051, + -0.0011759912595152855, + 0.0394248440861702, + -0.010250698775053024, + 0.017632396891713142, + -0.00995184388011694, + 0.028116201981902122, + 0.007005142048001289, + -0.0026822162326425314, + 0.025486284866929054, + 0.027255501598119736, + -0.029670244082808495, + 0.004028554540127516, + 0.014655808918178082, + -0.0054361578077077866, + 0.009647012688219547, + -0.011081513017416, + 0.0038342992775142193, + -0.011631404981017113, + 0.0055915615521371365, + 0.009425860829651356, + -0.005651332437992096, + 0.014524313621222973, + 0.00698721082881093, + -0.005229948088526726, + -0.024015922099351883, + -0.024207189679145813, + 0.003457742976024747, + -0.0046591367572546005, + -0.007829979993402958, + 0.0256058257073164, + -0.016532612964510918, + -0.00324256788007915, + -0.002166692866012454, + 0.004040508531033993, + -0.001503983628936112, + -0.007578941993415356, + 0.004437984433025122, + -0.020142771303653717, + -0.010382194072008133, + -0.01879195123910904, + 0.020429672673344612, + -0.009007465094327927, + 0.018182288855314255, + -0.026896877214312553, + -0.0020755422301590443, + 0.018445279449224472, + 0.022449925541877747, + 0.010065409354865551, + 0.015122021548449993, + -0.0015958813019096851, + -0.00012551875261124223, + -0.01770412176847458, + 0.01577950082719326, + -0.00014905352145433426, + 0.019545063376426697, + 0.007017096038907766, + 0.001032541156746447, + -0.019078850746154785, + -0.013532117009162903, + -0.012683372013270855, + -0.023932242766022682, + -0.03842069208621979, + -0.015683867037296295, + 0.01849309727549553, + -0.02099151723086834, + 0.008344008587300777, + 0.017644351348280907, + 0.020597029477357864, + 0.023860517889261246, + -0.0064014564268291, + -0.009999660775065422, + 0.003912001382559538, + 0.01237256359308958, + -0.005588573403656483, + -0.018146425485610962, + -3.226691114832647e-5, + -0.0531243197619915, + -0.010920131579041481, + 0.0027868151664733887, + 0.004838449414819479, + 0.007626758888363838, + -0.023908333852887154, + 0.005944209638983011, + -0.01069897972047329, + 0.005806736648082733, + 0.02414741739630699, + -0.05269397050142288, + 0.008116879500448704, + -0.00379544822499156, + -0.016879284754395485, + -0.00042175795533694327, + 0.02346603013575077, + 0.011392321437597275, + -0.00688560027629137, + 0.008858038112521172, + 0.006461227312684059, + -0.016735835000872612, + 0.02167290449142456, + -0.01949724741280079, + 0.016664110124111176, + 0.021254509687423706, + -0.005215005483478308, + -0.01037621684372425, + -0.030841751024127007, + -0.0003279924567323178, + -0.012073708698153496, + 0.006228120997548103, + 0.03837287798523903, + -0.011852556839585304, + 0.031009109690785408, + -0.002544743474572897, + -0.010346331633627415, + -0.004533617757260799, + 0.02978978492319584, + -0.012647508643567562, + -0.009629081934690475, + -0.025271110236644745, + -0.021015426144003868, + -0.003762574167922139, + 0.011398298665881157, + 0.02835528552532196, + -0.015217655338346958, + 0.0035115366335958242, + 0.022629238665103912, + -0.016532612964510918, + -0.0025103751104325056, + 0.0057021379470825195, + -0.04992060363292694, + -0.009127006866037846, + -0.012898546643555164, + 0.013412576168775558, + -0.03172636032104492, + 0.012910501100122929, + 0.0034487773664295673, + 0.012468196451663971, + -0.00618628179654479, + -0.020812205970287323, + 0.0003205211251042783, + 0.03636457771062851, + 0.017584580928087234, + 0.0008151247748173773, + 0.011452091857790947, + 0.034117192029953, + -0.03335212543606758, + 0.01827792264521122, + -0.016735835000872612, + 0.01427327562123537, + 0.020429672673344612, + 0.03017231822013855, + -0.0028062406927347183, + 9.264479740522802e-5, + 0.004249706398695707, + 0.004608331713825464, + -0.009061259217560291, + 0.009330227971076965, + -0.017417222261428833, + -0.0161859430372715, + -0.0008816198678687215, + -0.00023254590632859617, + -0.036890558898448944, + -0.004700976423919201, + -0.017441129311919212, + 0.024721218273043633, + -0.012061755172908306, + -0.008666771464049816, + -0.04396742582321167, + 0.001108749071136117, + -0.011846579611301422, + 0.007770208641886711, + -0.015253517776727676, + 0.007955498062074184, + -0.00818860437721014, + -0.029622426256537437, + -0.037846893072128296, + -0.002683710539713502, + -0.03354339301586151, + -0.009384021162986755, + -0.007106752600520849, + 0.007818025536835194, + 0.023334534838795662, + -0.014022238552570343, + 0.013579933904111385, + 0.001679560518823564, + -0.014261322095990181, + -0.008618954569101334, + -0.016472842544317245, + 0.0110396733507514, + 0.015492601320147514, + 0.022043485194444656, + -0.023812701925635338, + -0.04148096218705177, + 0.0028704944998025894, + -0.01729767955839634, + 0.02739895135164261, + 0.03251533582806587, + 0.04559319466352463, + 0.006628585979342461, + -0.011900373734533787, + 0.0064014564268291, + -0.012336701154708862, + 0.010262652300298214, + 0.032228436321020126, + 0.030889568850398064, + -0.005101440940052271, + -0.001448695664294064, + 0.037440452724695206, + 0.0025611803866922855, + -0.023537755012512207, + 0.007005142048001289, + -0.01082449872046709, + 0.0339498370885849, + 0.018935400992631912, + 0.005472020246088505, + -0.007166523486375809, + 0.00030333700124174356, + 0.02696860209107399, + -0.004049474373459816, + -0.008571137674152851, + 0.007794117089360952, + 0.007555033545941114, + -0.016711926087737083, + -0.020836113020777702, + 0.007106752600520849, + -0.007220317143946886, + -0.010860361158847809, + -0.009605173021554947, + 0.004408099222928286, + -0.007453423459082842, + 0.01489489246159792, + 0.009999660775065422, + -0.014070054516196251, + -0.014105917885899544, + 0.0037805053871124983, + 0.02455385960638523, + -0.006616631522774696, + 0.002585088601335883, + 0.019975414499640465, + 0.008266306482255459, + 0.011768877506256104, + 0.01787148043513298, + 0.0199634600430727, + 0.017500901594758034, + 0.017608487978577614, + -0.017668260261416435, + 0.0235736183822155, + 0.016341347247362137, + -0.018337693065404892, + -0.004234763793647289, + 0.0009862188016995788, + -0.002363936509937048, + -0.012767050415277481, + 0.005779840052127838, + -0.007190431468188763, + -0.0069035314954817295, + -0.00233853398822248, + -0.011667267419397831, + -0.0012895558029413223, + -0.0004385685024317354, + 0.007041004486382008, + -0.013699475675821304, + 0.00015923324099276215, + -0.0010549552971497178, + 0.009826325811445713, + -0.004061428364366293, + 0.01917448453605175, + 0.014500404708087444, + -0.009647012688219547, + 0.0032993501517921686, + 0.003257510717958212, + -0.02237820066511631, + 0.003374063642695546, + 0.013866834342479706, + -0.004632239695638418, + 0.0074235377833247185, + -0.009933913126587868, + -0.012151410803198814, + -0.0015585245564579964, + -0.008559184148907661, + 0.02050139755010605, + -0.018636547029018402, + 0.013197400607168674, + 0.006389502435922623, + -0.006526975426822901, + 0.001110990415327251, + 0.014607992954552174, + 0.020489443093538284, + 0.0010586909484118223, + -0.013711430132389069, + 0.0026403767988085747, + 0.00032631141948513687, + 0.03547997027635574, + 0.00867872592061758, + 0.007979406975209713, + 0.0030258987098932266, + 0.025223292410373688, + 0.005767885595560074, + 0.011224962770938873, + 0.025438468903303146, + -0.031248193234205246, + 0.007806071080267429, + 0.010435988195240498, + 0.017835617065429688, + -0.021015426144003868, + -0.015169838443398476, + -0.018815860152244568, + 0.007327904459089041, + 0.01179876271635294, + -0.008816198445856571, + -0.010370240546762943, + 0.008499412797391415, + -0.0007333134417422116, + 0.0016556521877646446, + 0.008397802710533142, + 0.012079685926437378, + 0.00516121182590723, + -0.011936236172914505, + -0.012193250469863415, + 0.001788642257452011, + 0.02335844375193119, + 0.005746965762227774, + 0.0014935238286852837, + -0.017333542928099632, + -0.019377704709768295, + -0.022414064034819603, + 0.010872315615415573, + -0.0042437296360731125, + 0.002526812022551894, + -0.008965625427663326, + 0.0037834940012544394, + 0.0008808727143332362, + -0.012862684205174446, + -0.012922454625368118, + 0.013998329639434814, + -0.013101767748594284, + -0.01665215566754341, + 0.0028884257189929485, + 0.013137630186975002, + -0.0009712760802358389, + 0.004007634706795216, + 0.02020254358649254, + -0.018325738608837128, + 0.01928207278251648, + -0.008415733464062214, + 0.004623274318873882, + 0.005881450138986111, + -0.009503562934696674, + 0.014105917885899544, + 0.008116879500448704, + -0.003036358393728733, + -0.01906689628958702, + 0.007321927696466446, + 0.021230600774288177, + -0.0070230732671916485, + 0.019246209412813187, + 0.012850729748606682, + 0.00600099191069603, + -0.0016661121044307947, + 0.01518179289996624, + -0.014201550744473934, + 0.026203535497188568, + -0.017441129311919212, + 0.018242059275507927, + -0.010657140053808689, + 0.011942213401198387, + -0.012695325538516045, + 0.0002577617415226996, + -0.023537755012512207, + 0.009814371354877949, + -0.004464881494641304, + 0.020979562774300575, + -0.02346603013575077, + 0.004545572213828564, + 0.012109571136534214, + -0.008206536062061787, + 0.0062221442349255085, + 0.010806567035615444, + -0.0005087992758490145, + -0.0029915303457528353, + 0.011165192350745201, + -0.0009630576241761446, + -0.01330498792231083, + -0.0011961638228967786, + 0.0063536399975419044, + 0.01919839344918728, + -0.005235925316810608, + -0.0075311255641281605, + -0.016413072124123573, + -0.0128029128536582, + 0.011894396506249905, + 0.020919792354106903, + 0.012091640383005142, + -0.010011615231633186, + -0.0006018176209181547, + 0.006861691828817129, + 0.015731684863567352, + 0.027877118438482285, + -0.008242398500442505, + 0.020788297057151794, + -0.0012208193074911833, + -0.004300511907786131, + 0.006604677531868219, + -0.038468509912490845, + -0.0032455564942210913, + 0.007907682098448277, + 0.0019679549150168896, + 0.009115052409470081, + 0.01889953948557377, + 0.003526479471474886, + -0.029263801872730255, + 0.012025892734527588, + 0.005755931604653597, + 0.00973666924983263, + 0.004724884871393442, + -0.0037326887249946594, + 0.009587242268025875, + -0.008320100605487823, + 0.005376386921852827, + -0.0071306610479950905, + 0.0004748045757878572, + -0.003523490857332945, + 0.00034424266777932644, + 0.00419591274112463, + -0.004542583599686623, + -0.010047477670013905, + -0.014667763374745846, + 0.0018857698887586594, + 0.03131991997361183, + -0.016329392790794373, + -0.008887923322618008, + -0.020919792354106903, + -0.0006055532721802592, + 0.032037168741226196, + 0.003359121037647128, + 0.018206197768449783, + 0.002970610512420535, + 0.013783155009150505, + 0.0003068858932238072, + -0.02773366868495941, + 0.0183018296957016, + 0.008063086308538914, + 0.019353797659277916, + -0.02001127600669861, + -0.008039177395403385, + -0.01998736709356308, + -0.027064234018325806, + 0.009174823760986328, + -0.024434318765997887, + -0.017237909138202667, + 0.021218646317720413, + -0.012468196451663971, + -0.003831310663372278, + -0.017644351348280907, + 0.00654490664601326, + 0.01133852731436491, + -0.005639378447085619, + -0.013209355063736439, + -0.00023460053489543498, + -0.007124683819711208, + 0.006975256837904453, + -0.004303500056266785, + -0.01616203412413597, + 0.010262652300298214, + 0.0018648500554263592, + -0.012145433574914932, + 0.003977749031037092, + -0.013460392132401466, + 0.010651162825524807, + 0.02534283511340618, + -0.017225954681634903, + 0.013711430132389069, + 0.017441129311919212, + -0.0023445109836757183, + 0.00010618662781780586, + -0.01447649672627449, + 0.008057109080255032, + 0.0050476472824811935, + 0.01317349262535572, + -0.004097290802747011, + 0.016042493283748627, + -0.005188108421862125, + -0.008768381550908089, + 0.013579933904111385, + -0.003807402215898037, + 0.0025073864962905645, + -0.027207685634493828, + 0.008086994290351868, + -0.0024924438912421465, + 0.016711926087737083, + 0.013627750799059868, + 0.012814867310225964, + -0.003039347007870674, + 0.017823662608861923, + -0.003526479471474886, + -0.010465873405337334, + -0.026251351460814476, + -0.0009473677491769195, + -0.011003810912370682, + -0.010794613510370255, + -0.01569582149386406, + -0.00898953340947628, + -0.00797342974692583, + -0.0020680709276348352, + 0.005424203351140022, + 0.008702633902430534, + 0.0026986533775925636, + 0.0015555360587313771, + -0.009862188249826431, + 0.002387844957411289, + 0.044636860489845276, + -0.01208566315472126, + 0.014213505201041698, + 0.0003716998908203095, + 0.02278464287519455, + -0.02045357972383499, + 0.01347234658896923, + 0.021039335057139397, + -0.024314776062965393, + -0.00805113185197115, + 0.0017438142094761133, + 0.003442800138145685, + 0.026872968301177025, + 0.0007747794734314084, + -0.0003866426122840494, + 0.0006660712533630431, + 0.004100279416888952, + 0.010226789861917496, + 0.02425500564277172, + -0.024888576939702034, + 0.0076506673358380795, + -0.0237409770488739, + -0.009593219496309757, + 0.008840106427669525, + -0.018325738608837128, + 0.008642862550914288, + -0.01132657378911972, + 0.015612142160534859, + -0.022772688418626785, + -0.02178049273788929, + 0.01037621684372425, + -1.8188078684033826e-5, + 0.0026299168821424246, + 0.01637720875442028, + -0.011218986473977566, + -0.0072800880298018456, + 0.014500404708087444, + -0.013424529694020748, + -0.02840310148894787, + 0.002283246023580432, + 0.017716076225042343, + 0.008463550359010696, + 0.006258006673306227, + 0.012958317063748837, + -0.005543745122849941, + 0.0027584240306168795, + 0.015504554845392704, + 0.012898546643555164, + 0.012719234451651573, + 0.01885172165930271, + -0.008738496340811253, + 0.008481482043862343, + -0.010561507195234299, + -0.017668260261416435, + 0.0029511849861592054, + 0.027064234018325806, + 0.007740323431789875, + 0.008302168920636177, + -0.007483308669179678, + -0.010232767090201378, + 0.011822671629488468, + 0.0007041751523502171, + 0.006766058504581451, + 0.010818521492183208, + -0.010932086035609245, + -0.009868165478110313, + 0.007393652573227882, + -0.02064484730362892, + 0.007584919221699238, + -0.008589069359004498, + -0.003442800138145685, + 0.001679560518823564, + 0.00953344814479351, + 0.010137134231626987, + -0.002694170456379652, + 0.005893404595553875, + -0.006694333627820015, + 0.0055646649561822414, + -0.014117871411144733, + 0.006760081741958857, + 0.011774854734539986, + -0.006293869111686945, + -0.006299846339970827, + 0.021003471687436104, + -0.008445619605481625, + -0.01132657378911972, + 0.001806573593057692, + -0.01237256359308958, + 0.02534283511340618, + -0.019485292956233025, + 0.00029586564050987363, + 0.027470676228404045, + -0.019019080325961113, + -0.02797275222837925, + 0.0010048971744254231, + 0.03337603434920311, + -0.015982721000909805, + 0.011906350962817669, + -0.01977219246327877, + 0.00374464294873178, + 0.03920966759324074, + -0.00270911306142807, + 0.002883942797780037, + -0.01409396342933178, + 0.01607835479080677, + -0.013520163483917713, + -0.011960144154727459, + 0.0015151906991377473, + -0.002438650233671069, + -0.0009466206538490951, + 0.041648320853710175, + 0.00423775240778923, + -0.001984391827136278, + 0.010465873405337334, + -0.01379510946571827, + 0.00664651719853282, + -0.0021218648180365562, + 0.015875134617090225, + -0.01507420465350151, + 0.017178138718008995, + -0.025701459497213364, + -0.014775350689888, + -0.010884269140660763, + 0.007244225591421127, + 0.005812713876366615, + -0.03273050859570503, + 0.0042706262320280075, + 0.03533652052283287, + 0.02126646414399147, + -0.0028675058856606483, + 0.0030572782270610332, + 0.015683867037296295, + 0.011978075839579105, + -0.0017766881501302123, + 0.0037326887249946594, + -0.012103594839572906, + 0.004049474373459816, + -0.01811056397855282, + -0.0183018296957016, + 0.015552371740341187, + -0.028092293068766594, + -0.01990368776023388, + 0.00964103639125824, + 0.045449744910001755, + -0.014285230077803135, + -0.0033860178664326668, + 0.005271787755191326, + -0.0037057918962091208, + 0.015313288196921349, + -0.008379871025681496, + -0.02517547644674778, + 0.015504554845392704, + -0.004766724072396755, + 0.004022577311843634, + 0.028642185032367706, + 0.017285725101828575, + 0.015229608863592148, + 0.011057605035603046, + -0.012910501100122929, + 0.02237820066511631, + -0.006981233600527048, + -0.014643855392932892, + 0.016389163210988045, + -0.014835122041404247, + -0.0050446586683392525, + 0.017476992681622505, + -0.008971602655947208, + -0.0059830606915056705, + 0.008098948746919632, + 0.03036358579993248, + -0.007841933518648148, + 0.007770208641886711, + 0.005149257369339466, + 0.013830971904098988, + 0.004423041827976704, + 0.0015077193966135383, + -0.0018857698887586594, + -0.0014591555809602141, + -0.006003980524837971, + 0.00479959836229682, + -0.02325085550546646, + -0.013878787867724895, + 0.0006698069628328085, + 0.005125349387526512, + 0.002958656521514058, + 0.020513352006673813, + 0.017847571521997452, + -0.009443792514503002, + 0.009186777286231518, + 0.011864511296153069, + 0.005421214736998081, + 0.020525304600596428, + 0.008367917500436306, + 0.023023726418614388, + -0.001083346433006227, + -0.030530942603945732, + 0.01519374642521143, + 0.012719234451651573, + -0.01564800553023815, + -0.006216167006641626, + 0.02579709328711033, + 0.0027718725614249706, + 0.009682875126600266, + -0.01377120055258274, + 0.012599692679941654, + 0.0049251168966293335, + -0.00614444212988019, + 0.034643176943063736, + 0.004763735458254814, + 0.0037147575058043003, + 0.005483974236994982, + -0.027422860264778137, + -0.02370511367917061, + 0.0034816511906683445, + -0.008260329253971577, + -0.00017968607426155359, + 0.003654986619949341, + -0.0004863851936534047, + 0.013842925429344177, + -0.014584084041416645, + 0.008218489587306976, + 0.009168846532702446, + -0.0032455564942210913, + -0.03294568508863449, + -0.002755435649305582, + -0.015743639320135117, + 0.0019395636627450585, + 0.0309612937271595, + -0.0005853806505911052, + 0.010806567035615444, + -0.0022369236685335636, + -0.029670244082808495, + -0.007584919221699238, + 0.0028480803593993187, + -0.0063715712167322636, + -0.005531791131943464, + 0.011846579611301422, + 9.703421528683975e-5, + 0.00016408962255809456, + 0.000330420647514984, + 0.023107405751943588, + -0.00023646837507840246, + -0.0028376204427331686, + 0.0027464700397104025, + -0.005576618947088718, + 0.0040136114694178104, + -0.0027106073684990406, + -0.0010407597292214632, + 0.022414064034819603, + 0.0022443949710577726, + -0.0025372719392180443, + 0.01082449872046709, + -0.014464542269706726, + 0.004751781467348337, + 0.0010825992794707417, + -0.015301334671676159, + -0.014428679831326008, + 0.014129825867712498, + 0.00045313764712773263, + -0.010459896177053452, + 0.005265810526907444, + 0.00905528198927641, + 0.007955498062074184, + 0.009288388304412365, + -0.0273511353880167, + 0.025534100830554962, + 0.0007777680293656886, + -0.028833450749516487, + -0.00019780411093961447, + -0.009706784039735794, + 0.005253856536000967, + 0.02194785140454769, + 0.017261818051338196, + 0.012599692679941654, + 0.004007634706795216, + 0.0050745438784360886, + -0.014261322095990181, + 0.0244462713599205, + -0.01308981329202652, + 0.0014464542036876082, + -0.004249706398695707, + 0.005609493236988783, + 0.003912001382559538, + -0.002934748074039817, + 0.014703625813126564, + 0.011278756894171238, + 0.0008659299928694963, + -0.005463054403662682, + 0.002145773032680154, + 0.014201550744473934, + 0.02639480121433735, + -6.294616468949243e-5, + -0.0017468027072027326, + 0.02637089230120182, + -0.018911492079496384, + 0.01716618426144123, + -0.004838449414819479, + 0.020656801760196686, + 0.02099151723086834, + 0.009826325811445713, + 0.00010067650146083906, + -0.013101767748594284, + 0.01958092674612999, + 0.00048339663771912456, + -0.001382947782985866, + -0.02218693494796753, + -0.016126172617077827, + -0.004966956563293934, + -0.003559353295713663, + -0.020381854847073555, + -0.006216167006641626, + -0.004118210636079311, + -0.014763396233320236, + 0.017225954681634903, + 0.016257667914032936, + -0.010854383930563927, + -0.02617962658405304, + 0.016544567421078682, + 0.009324250742793083, + -0.011183123104274273, + 0.0013478323817253113, + 0.011422206647694111, + -0.0065030669793486595, + -0.00728606479242444, + 0.02237820066511631, + 0.01427327562123537, + -0.020788297057151794, + 0.019820010289549828, + -0.001050472492352128, + 0.022940047085285187, + -0.020955655723810196, + 0.020250359550118446, + 0.00977850891649723, + 0.011535771191120148, + 0.020142771303653717, + 0.024936392903327942, + 0.017931250855326653, + -0.012229112908244133, + -0.00604283157736063, + 0.014249367639422417, + 0.0035802731290459633, + 0.01659238338470459, + 0.00566328689455986, + -0.013101767748594284, + 0.019294025376439095, + -0.010914154350757599, + -0.0032814189326018095, + 0.004674079362303019, + 0.004665113985538483, + 0.02596445195376873, + -0.004085336811840534, + 0.008122856728732586, + -0.0048055751249194145, + -0.014512359164655209, + -0.0024311786983162165, + 0.010776681825518608, + 0.0030483126174658537, + 0.014213505201041698, + -0.0055527109652757645, + 0.0219119880348444, + 0.002958656521514058, + 0.005185120273381472, + 0.007572965230792761, + -0.001450937008485198, + 0.0020755422301590443, + 0.017202047631144524, + -0.02088393084704876, + -0.004186946898698807, + 0.004076370969414711, + -0.0054331691935658455, + -0.01179876271635294, + -0.01735745184123516, + -0.0006634562741965055, + -0.0005364432581700385, + -0.011697152629494667, + -0.00867872592061758, + 0.006138464901596308, + 0.015133976005017757, + -0.011278756894171238, + -0.009862188249826431, + -0.012946363538503647, + -0.011278756894171238, + -0.013926604762673378, + 0.01199003029614687, + 0.01917448453605175, + 0.008923785760998726, + 0.003828322049230337, + -0.014309138059616089, + 0.007596873212605715, + -0.01128473412245512, + 0.007608827669173479, + 0.009413906373083591, + -0.011571633629500866, + 0.020979562774300575, + -0.008033200167119503, + -0.009049304760992527, + 0.01966460607945919, + 0.030435310676693916, + -0.015169838443398476, + -0.0012163365026935935, + 0.013065905310213566, + 0.004853392019867897, + -0.009700806811451912, + -0.0005129085038788617, + -0.01748894713819027, + -0.01397442165762186, + -0.008379871025681496, + 0.0027300328947603703, + -0.010190927423536777, + -0.008272283710539341, + -0.009862188249826431, + 0.0015734672779217362, + -0.02158922702074051, + -0.007064912933856249, + 0.003006473183631897, + -0.024111555889248848, + -0.0024924438912421465, + 0.003000495955348015, + -0.02060898393392563, + 0.001727377180941403, + -0.0063416860066354275, + 0.018397463485598564, + -0.01866045594215393, + 0.009204708971083164, + -0.0142971845343709, + 0.0200471393764019, + -0.00999368354678154, + -0.002514858031645417, + 0.021326234564185143, + -0.009252525866031647, + -0.0021293361205607653, + -0.00018743760301731527, + 0.007519171107560396, + -0.0011550714261829853, + -0.01569582149386406, + -0.019927596673369408, + 0.018624592572450638, + -0.0004105509433429688, + -0.009061259217560291, + -0.023920288309454918, + -0.01178680919110775, + -0.0019111725268885493, + -0.015982721000909805, + -0.020537259057164192, + 0.0033441781997680664, + 0.016903191804885864, + 0.004736838862299919, + 0.01023874431848526, + 0.017500901594758034, + 0.003912001382559538, + -0.02873781882226467, + 0.0020740479230880737, + -0.012623600661754608, + -0.016879284754395485, + 0.012324746698141098, + -0.007985384203493595, + -0.009288388304412365, + -0.010519667528569698, + -0.008983557112514973, + -0.038444600999355316, + 0.006676402408629656, + -0.03239579498767853, + 0.01379510946571827, + -0.0015839271945878863, + -0.02028622291982174, + 0.02376488409936428, + -8.084239198069554e-6, + 0.008206536062061787, + 0.0022697974927723408, + 0.021302325651049614, + -0.026681700721383095, + -0.0037834940012544394, + -0.0019231266342103481, + -0.02916816808283329, + -0.012898546643555164, + -0.012348654679954052, + 0.015899041667580605, + -0.006730196066200733, + -0.009987707249820232, + 0.0042556836269795895, + 0.005400294903665781, + 0.010693002492189407, + 0.019114714115858078, + -0.009862188249826431, + -0.010866338387131691, + 0.003341189818456769, + -0.010011615231633186, + 0.00021778998780064285, + 0.00843366514891386, + 0.011111398227512836, + 0.026490435004234314, + 0.006813875399529934, + 0.000834550301078707, + -0.012468196451663971, + -0.005806736648082733, + 0.0072621568106114864, + 0.004757758695632219, + -0.006210189778357744, + -0.005767885595560074, + 0.002876471495255828, + 0.010555529966950417, + -0.003747631562873721, + 0.026275260373950005, + 0.012420379556715488, + -0.004856380634009838, + 0.020059091970324516, + 0.0007011866546235979, + -0.013854879885911942, + -0.0005610987427644432, + -0.015014434233307838, + -0.015815364196896553, + -0.0020456567872315645, + 0.006479158531874418, + -0.01228888425976038, + -0.0020172656513750553, + 0.00372372311539948, + 0.0037805053871124983, + -0.00271957297809422, + -0.01144611556082964, + -0.005570642184466124, + 0.015361105091869831, + -0.0028331377543509007, + 0.003120037727057934, + -0.021792447194457054, + -0.003610158571973443, + 0.025534100830554962, + 0.022724872455000877, + -0.011493931524455547, + 0.016688017174601555, + 0.0007631988846696913, + -0.0003952346451114863, + 0.016843421384692192, + -0.0066106547601521015, + -0.01489489246159792, + 0.013340850360691547, + -0.038253337144851685, + 0.02878563478589058, + 0.005421214736998081, + -0.003980737645179033, + -0.023824656382203102, + -0.0014501899713650346, + 0.006045820191502571, + 0.018134471029043198, + 0.004608331713825464, + 0.004479824099689722, + 0.012719234451651573, + 0.014345000497996807, + -0.01607835479080677, + -0.005902369972318411, + -0.011129329912364483, + -0.004745804239064455, + 0.007979406975209713, + 0.006162373349070549, + -0.001479328260757029, + 0.010005638003349304, + 0.01691514626145363, + -0.010214836336672306, + -0.005292707588523626, + -0.002632905263453722, + 0.005794782657176256, + -0.015026388689875603, + 0.04188740253448486, + -0.0009585748193785548, + -0.005469031631946564, + -0.02598835900425911, + 0.021063242107629776, + -0.022497743368148804, + -0.013842925429344177, + 0.025223292410373688, + -0.004703965038061142, + 0.01258773822337389, + -0.011649335734546185, + 0.025079842656850815, + 0.0038492418825626373, + -0.002955667907372117, + -0.0237409770488739, + 0.016723880544304848, + 0.00027700047940015793, + 0.00748928589746356, + -0.008451595902442932, + 0.015982721000909805, + 0.02276073396205902, + 0.014261322095990181, + -0.0022787631023675203, + 0.008511367253959179, + -0.02058507688343525, + -0.009073212742805481, + 0.007441469002515078, + -0.00809297151863575, + 0.01840941794216633, + 0.019246209412813187, + 0.033280402421951294, + -0.004689021967351437, + 0.0020860021468251944, + -0.005469031631946564, + 0.018911492079496384, + 0.008702633902430534, + 0.008003314957022667, + -0.005421214736998081, + 0.0146916713565588, + -0.01849309727549553, + -0.012575783766806126, + 0.005755931604653597, + -0.007776185870170593, + -0.003562341909855604, + 0.014619946479797363, + -0.0257731843739748, + 0.007076866924762726, + 0.011577610857784748, + -0.011565657332539558, + 0.003983726259320974, + -0.004273614846169949, + 0.021039335057139397, + -0.012348654679954052, + -0.008320100605487823, + 0.024864668026566505, + 0.012073708698153496, + 0.008063086308538914, + 0.011470023542642593, + 0.00509845232591033, + -0.02359752543270588, + -0.01439281739294529, + 0.006975256837904453, + -0.006347662769258022, + 0.012707279995083809, + -0.002912333933636546, + -0.022617284208536148, + 0.012312792241573334, + 0.004751781467348337, + -0.0033770522568374872, + -0.0256058257073164, + 0.00026672735111787915, + -0.01846918836236, + 0.010663117282092571, + 0.0024132474791258574, + -0.015504554845392704, + 0.002673250623047352, + 0.012264975346624851, + -0.008666771464049816, + 0.009401952847838402, + -0.0009197237668558955, + -0.018540913239121437, + 0.0009533448610454798, + -0.006365593988448381, + 0.0076925065368413925, + 0.007961475290358067, + 0.009670921601355076, + -0.02878563478589058, + -0.020824160426855087, + 0.004969945177435875, + -0.0006033118697814643, + 0.011332551017403603, + -0.02387247234582901, + 0.016365254297852516, + 0.0032814189326018095, + 0.013221309520304203, + 0.005092475097626448, + -0.015743639320135117, + 0.006975256837904453, + 0.015373059548437595, + -0.009419883601367474, + 0.023800747469067574, + 0.007064912933856249, + 0.0014703625347465277, + 0.012360609136521816, + 0.02107519656419754, + 0.015361105091869831, + -0.0220793467015028, + 0.0457366444170475, + 0.01870827190577984, + -0.0030572782270610332, + 0.02105128951370716, + 0.0027584240306168795, + 0.014942709356546402, + 0.022318430244922638, + 0.020274268463253975, + 0.02031012997031212, + -0.004399133380502462, + -0.0016974917380139232, + 0.00427660346031189, + -0.017967114225029945, + 0.014703625813126564, + -0.0219956673681736, + -0.008517344482243061, + 0.0066345627419650555, + 0.005107418168336153, + -0.01467971783131361, + 0.0067541045136749744, + -0.042891550809144974, + -0.0017438142094761133, + -0.006819852627813816, + 0.023262809962034225, + -0.02273682691156864, + 0.0006361858686432242, + 0.003010955872014165, + 0.005185120273381472, + 0.01699882559478283, + -0.0076925065368413925, + -0.008170673623681068, + -0.02017863467335701, + -0.003424868918955326, + -0.01748894713819027, + -0.017608487978577614, + -0.009718738496303558, + 0.0010467367246747017, + -0.0029765877407044172, + -0.010908178053796291, + 0.006760081741958857, + -0.006778012961149216, + -0.015791455283761024, + 0.008738496340811253, + -0.001894735498353839, + 0.006712264847010374, + 0.00809297151863575, + 0.009037350304424763, + -0.026012267917394638, + 0.0033023387659341097, + 0.00869067944586277, + -0.0012895558029413223, + -0.028331376612186432, + -0.009061259217560291, + -0.003275441937148571, + 0.022115210071206093, + -0.009485632181167603, + -0.0005319604533724487, + -0.01518179289996624, + -0.018421372398734093, + 0.017178138718008995, + -0.0006298351800069213, + 0.021852217614650726, + 0.011230939999222755, + -0.02237820066511631, + 0.0074115837924182415, + -0.017728030681610107, + -0.004240741021931171, + 0.005289718974381685, + 0.013723383657634258, + 0.0035653305239975452, + -0.011105421930551529, + -0.014070054516196251, + 0.01646088808774948, + 0.0182181503623724, + -0.017823662608861923, + -0.006628585979342461, + 0.0035115366335958242, + 0.017560672014951706, + 0.014882938005030155, + 0.008505390025675297, + 0.0078120483085513115, + 0.007710437756031752, + -0.018349647521972656, + -0.012910501100122929, + 0.005358455702662468, + -0.028713909909129143, + 0.011278756894171238, + 0.0054570771753787994, + 0.035432152450084686, + 0.012719234451651573, + -0.009366090409457684, + -0.006281915120780468, + -0.005391329526901245, + -0.022091301158070564, + 0.0001892120490083471, + 0.0003825333551503718, + 0.004145107697695494, + 0.002788309473544359, + -0.014082008972764015, + 0.016006629914045334, + -0.016114218160510063, + -0.001296280068345368, + 0.0001762305764714256, + -0.019162530079483986, + 0.01770412176847458, + 0.000847251620143652, + 0.0033262469805777073, + 0.009802416898310184, + -0.0022593375761061907, + -0.006724219303578138, + 0.011960144154727459, + 0.005812713876366615, + -0.003523490857332945, + -0.006036854349076748, + 0.004847414791584015, + 0.0067720357328653336, + -0.01519374642521143, + 0.030698301270604134, + 0.0031110721174627542, + -0.01317349262535572, + -0.00658674631267786, + -0.030459217727184296, + 0.0006010704673826694, + -0.01002356968820095, + -0.013819017447531223, + -0.011141284368932247, + -0.012444288469851017, + -0.036053769290447235, + -0.01497857179492712, + -0.005253856536000967, + -7.158491644077003e-5, + -0.001025069854222238, + 0.003792459610849619, + 0.023394305258989334, + 0.005636389832943678, + 0.0023714080452919006, + -0.0033800408709794283, + 0.019568972289562225, + -0.004076370969414711, + 0.007005142048001289, + -0.001014609937556088, + -0.02148163877427578, + 0.009676898829638958, + -0.004551549442112446, + -0.010687025263905525, + -0.012181296944618225, + 0.010412080213427544, + -0.004993853624910116, + 0.005152245983481407, + -0.015420875512063503, + -0.012635555118322372, + 0.026275260373950005, + 0.0059561640955507755, + -0.022366246208548546, + 0.02026231400668621, + -0.020405763760209084, + -0.028929084539413452, + 0.011153237894177437, + 0.016066400334239006, + -0.0011707613011822104, + 0.013496254570782185, + -0.005534779280424118, + -0.008086994290351868, + -0.008332055062055588, + 0.005612481385469437, + -0.02974196895956993, + 0.00560052739456296, + 0.0024565814528614283, + 0.009091144427657127, + 0.03148727864027023, + 0.008565160445868969, + 0.007746300660073757, + 0.00431844312697649, + 0.0007673081126995385, + 0.02598835900425911, + -0.004533617757260799, + 0.0020860021468251944, + -0.0073458356782794, + -0.003660963848233223, + 0.020549213513731956, + -0.01825401373207569, + -0.0006896060076542199, + 0.022067392244935036, + 0.0011147260665893555, + 0.0035653305239975452, + -0.008409757167100906, + 0.026299167424440384, + 0.028450917452573776, + 0.019533108919858932, + -0.003810390830039978, + 0.002163704251870513, + 0.009999660775065422, + 0.001146852970123291, + -0.005770874209702015, + -0.014153733849525452, + 0.011918304488062859, + -0.008630909025669098, + -0.003320269985124469, + -0.01776389218866825, + -0.031678542494773865, + 0.016735835000872612, + 0.006640539970248938, + -0.011816694401204586, + 0.03672320395708084, + -0.025892727077007294, + 0.006975256837904453, + 0.017046643421053886, + -0.006078694015741348, + -0.012527967803180218, + 0.009802416898310184, + -0.0011072547640651464, + -0.009372067637741566, + -0.0027898037806153297, + 0.015026388689875603, + -0.024290867149829865, + -0.011756923981010914, + -0.0016317438567057252, + -0.011314619332551956, + 0.0013030042173340917, + 0.01667606271803379, + 0.005463054403662682, + -0.008110902272164822, + -0.005782828666269779, + -0.014787305146455765, + 0.004491778556257486, + -0.003690849058330059, + 0.02218693494796753, + -0.0015107078943401575, + -0.009001487866044044, + -0.010435988195240498, + -0.01716618426144123, + 0.004485801327973604, + 0.011511863209307194, + 0.005830645095556974, + 0.025079842656850815, + -0.003660963848233223, + 0.01120105478912592, + -0.011129329912364483, + 0.0032664763275533915, + 0.0006503814365714788, + -0.035456061363220215, + 0.0038731503300368786, + -0.0014995008241385221, + -0.008929762989282608, + 0.0058366223238408566, + -0.0018633558647707105, + -0.011523817665874958, + -0.006395479664206505, + 0.00873251911252737, + 0.005486962851136923, + 0.010621277615427971, + 0.017453083768486977, + -0.004273614846169949, + 0.00473982747644186, + -0.028116201981902122, + 0.003003484569489956, + 0.02976587601006031, + -0.014906846918165684, + -0.001042253919877112, + -0.013807062990963459, + 0.02161313407123089, + 0.029861509799957275, + 0.010842429473996162, + -0.0030527955386787653, + -0.022629238665103912, + 0.0031798086129128933, + -0.028450917452573776, + 0.023525800555944443, + 0.006933417171239853, + 0.006263983901590109, + -0.052407070994377136, + 0.035647325217723846, + -0.013006133958697319, + 0.002514858031645417, + 0.02539065107703209, + 0.0023176141548901796, + 0.005492940079420805, + 0.027614125981926918, + -0.013281079940497875, + 0.0076506673358380795, + -0.015875134617090225, + -0.016006629914045334, + -0.0197961013764143, + -0.01575559191405773, + -0.02414741739630699, + -0.0006634562741965055, + 0.02978978492319584, + 0.006033866200596094, + -0.01849309727549553, + 0.013316942378878593, + 0.013376712799072266, + -0.01228888425976038, + 0.016413072124123573, + 0.02419523522257805, + -0.012575783766806126, + 0.006783990189433098, + 0.022390155121684074, + -0.025438468903303146, + -0.008571137674152851, + 0.03136773407459259, + 0.026633884757757187, + -0.0129702715203166, + -0.015791455283761024, + 0.009216663427650928, + 0.025103751569986343, + 0.01539696753025055, + -0.0046710907481610775, + 0.006736173294484615, + -0.015217655338346958, + -0.0078000943176448345, + -0.0018753099720925093, + -0.012516013346612453, + 0.01729767955839634, + -0.0010706450557336211, + -0.0016377209685742855, + 0.0007650667103007436, + 0.023932242766022682, + -0.02713596075773239, + -0.020250359550118446, + 0.017536763101816177, + 0.016341347247362137, + -0.01678365096449852, + 0.007602850440889597, + 0.024135464802384377, + 0.0035862501244992018, + 0.016544567421078682, + -0.014249367639422417, + -0.017441129311919212, + -0.006311800330877304, + -0.00431844312697649, + -0.01222313567996025, + -0.02240210957825184, + 0.010065409354865551, + -0.003496594028547406, + 0.018827812746167183, + 0.01359188836067915, + 0.0012828315375372767, + -0.03077002614736557, + 0.0020008287392556667, + 0.0006473928806371987, + -0.010268629528582096, + -0.0015077193966135383, + 0.00469798780977726, + 0.009724714793264866, + 0.0019335865508764982, + 0.01317349262535572, + -0.016831466928124428, + 0.024721218273043633, + 0.009168846532702446, + 0.001814044895581901, + -0.004357294179499149, + -0.012019915506243706, + -0.005466043017804623, + 0.015253517776727676, + 0.00026822162908501923, + 0.03392592817544937, + 0.0034517657477408648, + -0.008385848253965378, + -0.03442800045013428, + -0.013412576168775558, + 0.007710437756031752, + -0.014859030023217201, + 0.007435492239892483, + -0.015922950580716133, + -0.008015269413590431, + 0.004028554540127516, + -0.010388171300292015, + -0.009300341829657555, + 0.027638034895062447, + 0.021876126527786255, + -0.007160546258091927, + -0.00023702872567810118, + 0.012492104433476925, + -0.0037386659532785416, + -0.014380862936377525, + 0.011559680104255676, + -0.006240075454115868, + -0.00993989035487175, + 0.013065905310213566, + -0.0008711599512025714, + -0.00405246252194047, + -0.005752942990511656, + 0.004838449414819479, + -0.006652493961155415, + -0.0129702715203166, + -0.002486466895788908, + 0.017524808645248413, + 0.0013560508377850056, + 0.005908347200602293, + -0.013065905310213566, + 0.0025477318558841944, + 0.01192428171634674, + -0.016173988580703735, + 0.0004475341411307454, + 0.0020083000417798758, + 0.007716414984315634, + -0.0015181791968643665, + -0.015349150635302067, + 0.00273899850435555, + 0.009880119003355503, + 0.0339498370885849, + -0.005238913930952549, + 0.013053950853645802, + -0.007124683819711208, + -0.023621434345841408, + -0.02384856343269348, + -0.004665113985538483, + -0.014404771849513054, + -0.014763396233320236, + -0.0034816511906683445, + -0.031248193234205246, + -0.029885418713092804, + 0.009933913126587868, + 0.010214836336672306, + -0.00275991833768785, + 0.008021246641874313, + -0.00889390055090189, + 0.028140109032392502, + -0.007238248363137245, + 0.017309634014964104, + 0.014835122041404247, + -0.03301741182804108, + -0.023537755012512207, + -0.008899877779185772, + 0.030244043096899986, + -0.012743142433464527, + -0.008206536062061787, + -0.009868165478110313, + 0.0038014252204447985, + -0.008212513290345669, + -0.006293869111686945, + 0.01919839344918728, + 0.013567980378866196, + -0.014022238552570343, + -0.00039560822187922895, + 0.03251533582806587, + -0.0014808224514126778, + -0.006347662769258022, + -0.004665113985538483, + 0.016640201210975647, + -0.021123014390468597, + -0.000981735996901989, + -0.03373466059565544, + -0.01697491854429245, + -9.353202040074393e-5, + 0.003708780510351062, + 0.013149583712220192, + 0.007632735650986433, + -0.03280223533511162, + -0.022497743368148804, + -0.016090309247374535, + -0.004177981521934271, + -0.008624931797385216, + -0.006515021435916424, + 0.01789538934826851, + 0.02433868497610092, + 0.023932242766022682, + -0.018050793558359146, + -0.03593422845005989, + -0.003105094889178872, + 0.02210325561463833, + -0.009563334286212921, + -0.0021353131160140038, + 0.018779996782541275, + 0.00023030450392980129, + 0.0064851357601583, + 0.009288388304412365, + -0.0427481010556221, + -0.010137134231626987, + -0.008200558833777905, + -0.021015426144003868, + -0.0010534609900787473, + 0.012611646205186844, + -0.014835122041404247, + 0.007041004486382008, + -0.009921958670020103, + -0.0030378527007997036, + -0.014751442708075047, + -0.007985384203493595, + -0.009658967144787312, + -0.013950513675808907, + 0.004240741021931171, + 0.0016317438567057252, + 0.00476074730977416, + -0.006724219303578138, + 0.007877795957028866, + 0.02161313407123089, + 0.010543575510382652, + -0.012731187976896763, + -0.01170312985777855, + -0.0273511353880167, + -0.030028868466615677, + 0.0035952157340943813, + -8.38192572700791e-5, + -0.006299846339970827, + -0.011727037839591503, + -0.01851700432598591, + 0.012253021821379662, + 0.0008278260938823223, + -0.009874141775071621, + -0.0007392905536107719, + -0.007644690107554197, + -0.03540824353694916, + -0.009527470916509628, + 0.006449273321777582, + 0.002021748572587967, + -0.010041500441730022, + -0.004354305565357208, + -0.006921462714672089, + 0.000788975041359663, + -0.01548064686357975, + 0.006057774182409048, + -0.013603842817246914, + 0.011266802437603474, + 0.007274110801517963, + 0.0010302998125553131, + 0.021278418600559235, + 0.012994179502129555, + 0.015313288196921349, + -0.009294365532696247, + -0.0003487254725769162, + 0.027924934402108192, + 0.0413375124335289, + 0.008660794235765934, + 0.009061259217560291, + -0.00809297151863575, + 0.015026388689875603, + -0.004993853624910116, + 0.002245889278128743, + 0.015492601320147514, + 0.008415733464062214, + -0.005238913930952549, + 0.02246187999844551, + -0.0037028032820671797, + 0.0006899795844219625, + 0.019114714115858078, + 0.007351812906563282, + 0.015420875512063503, + -0.0074235377833247185, + -0.024159371852874756, + -0.013986376114189625, + 0.043847884982824326, + -0.00520006287842989, + -0.017118368297815323, + -0.0032963615376502275, + -0.002958656521514058, + 0.002930265385657549, + -0.01646088808774948, + -0.021684858947992325, + -0.0016048469115048647, + 0.019652651622891426, + -0.006467204540967941, + -0.0008592057856731117, + -0.011942213401198387, + -0.002018759958446026, + 0.024840759113430977, + 0.01887563057243824, + 0.003224636660888791, + -0.009013442322611809, + -0.003472685581073165, + -0.010447942651808262, + 0.002003817353397608, + -0.0016900204354897141, + 0.016795605421066284, + 0.007566988002508879, + -0.007190431468188763, + 0.0019261152483522892, + 0.008702633902430534, + 0.01098588015884161, + 0.0182181503623724, + -0.023286718875169754, + -0.032276250422000885, + -0.025295017287135124, + -0.018146425485610962, + 0.0018573787529021502, + 0.0016063412185758352, + -0.003421880304813385, + 0.006766058504581451, + 0.0013963961973786354, + -5.5661592341493815e-5, + 0.004984887782484293, + 0.011099444702267647, + -0.003239579265937209, + 0.020740481093525887, + 0.017608487978577614, + -0.012217159382998943, + -0.0062460522167384624, + -0.00043296499643474817, + 0.00860700011253357, + 0.019210346043109894, + -0.006598700303584337, + 0.012743142433464527, + -0.0034816511906683445, + -0.002253360580652952, + -0.013065905310213566, + -0.0024311786983162165, + 0.01548064686357975, + 0.014345000497996807, + -0.014117871411144733, + -0.03194153681397438, + 0.024290867149829865, + 0.0038641844876110554, + 0.013866834342479706, + 0.013233263045549393 + ], + "348b7fb0-1e7b-4f03-958e-72413469a02c": [ + 0.01318343449383974, + -0.014622785151004791, + -0.010642279870808125, + -0.03752502053976059, + -0.07652760297060013, + -0.02018912322819233, + 0.020826004445552826, + 0.025271432474255562, + 0.03920638561248779, + 0.028634164482355118, + -0.0008940215338952839, + 0.04104060307145119, + -0.009336673654615879, + 0.01789635233581066, + -0.04259459301829338, + 0.0017912274925038218, + -0.015539892949163914, + 0.040480148047208786, + 0.02621401660144329, + 0.02263474650681019, + 0.047715116292238235, + -0.022443681955337524, + -0.030799558386206627, + 0.030621232464909554, + 0.00750882551074028, + -0.026825422421097755, + 0.021068019792437553, + -0.02401040866971016, + -0.010215569287538528, + -0.018800724297761917, + 0.021946914494037628, + -0.0020443876273930073, + 0.016877343878149986, + 0.0013342654565349221, + -0.003798994468525052, + -0.024761928245425224, + -0.039512090384960175, + 0.01555263064801693, + 0.00018330228340346366, + 0.024061359465122223, + -0.009502262808382511, + -0.013629251159727573, + 0.037219319492578506, + 0.017119357362389565, + -0.023539116606116295, + 0.003135046223178506, + 0.006473894231021404, + -0.010183725506067276, + 0.0185459703207016, + -0.016686279326677322, + 0.006008971016854048, + 0.023564592003822327, + -0.008381352759897709, + 0.0158073827624321, + -0.0064484188333153725, + -0.0181256290525198, + 0.012374595738947392, + 0.08804241567850113, + 0.016851868480443954, + -0.020150911062955856, + -0.018749773502349854, + 0.011750452220439911, + 0.03044290654361248, + 0.013336285948753357, + -0.013030583038926125, + -0.0014361663488671184, + -0.011559387668967247, + 0.012253588065505028, + -0.018393119797110558, + -0.0019313412485644221, + 0.00030371255706995726, + 0.017654336988925934, + -0.004751131404191256, + 0.06796792894601822, + -0.004588726907968521, + -0.023972196504473686, + 0.005887963809072971, + 0.004050562158226967, + 0.005614105146378279, + 0.014176968485116959, + -0.03958851471543312, + -0.013629251159727573, + 0.015769170597195625, + 0.004712918307632208, + 0.06312762945890427, + 0.006954739335924387, + -0.02621401660144329, + -0.01745053566992283, + -0.06480899453163147, + -0.04119345545768738, + 0.028837965801358223, + 0.07224776595830917, + -0.023857558146119118, + -0.018800724297761917, + -0.02564082480967045, + 0.013705676421523094, + 0.04068395122885704, + -0.0006392691866494715, + 0.0023548670578747988, + 0.007094853091984987, + 0.01439350750297308, + -0.009451312012970448, + -0.056453119963407516, + -0.007349605206400156, + 0.021220870316028595, + -0.026850897818803787, + 0.001977515174075961, + -0.010514902882277966, + -0.04025087133049965, + -0.007012058515101671, + -0.011616706848144531, + -0.01329807285219431, + -0.0165079515427351, + 0.013056057505309582, + 0.01720852218568325, + -0.011342848651111126, + 0.009903497993946075, + -0.007999223656952381, + 0.012177162803709507, + -0.025870101526379585, + 0.04977861046791077, + 0.006910157389938831, + 0.038824256509542465, + -0.010279257781803608, + 0.018660610541701317, + -0.005091862753033638, + 0.015043126419186592, + 0.027895381674170494, + -0.009336673654615879, + 0.008744374848902225, + 0.024634553119540215, + -0.01803646609187126, + -0.02618854120373726, + -0.0076362015679478645, + 0.029831500723958015, + 0.01351461187005043, + 0.03586913272738457, + 0.04738393798470497, + -0.0021510652732104063, + 0.030901459977030754, + -0.0497276596724987, + 0.012673929333686829, + -0.01748874969780445, + -0.007139434572309256, + 0.014482671394944191, + 0.018775248900055885, + -0.04450523480772972, + 0.019679618999361992, + -0.014444458298385143, + 0.005168288480490446, + -0.018112892284989357, + -0.006808256730437279, + 0.012661191634833813, + 0.0059930491261184216, + -0.005852935370057821, + 0.03250639885663986, + 0.0010922506917268038, + 0.02687637321650982, + 0.02375565655529499, + -0.0344170443713665, + -0.0091328714042902, + -0.03136001527309418, + 0.003646143013611436, + -0.04076037555932999, + -0.022596534341573715, + 0.023793868720531464, + 0.015794645994901657, + 0.010183725506067276, + -0.025003943592309952, + 0.0017211706144735217, + 0.039104484021663666, + -0.0034901071339845657, + -0.024125047028064728, + -0.008629735559225082, + 0.033652786165475845, + -0.03579270467162132, + 0.03464632108807564, + 0.009916235692799091, + 0.0064006526954472065, + -0.023717444390058517, + -0.008566047996282578, + 0.002330983988940716, + -0.013196172192692757, + -0.016355101019144058, + -0.04302767291665077, + 0.0006902196328155696, + 0.011718608438968658, + 0.025080369785428047, + -0.011922409757971764, + 0.0660318061709404, + 0.02659614570438862, + -0.027233026921749115, + 0.02758967876434326, + 0.05349799245595932, + -0.00092108896933496, + -0.04351169988512993, + -0.018202055245637894, + 0.04437785968184471, + -0.011018038727343082, + -0.00593254528939724, + -0.016813654452562332, + -0.015323353931307793, + -0.026978274807333946, + 0.04193223640322685, + -0.013132483698427677, + 0.06913978606462479, + -0.021335508674383163, + 0.03286305442452431, + -0.0076425704173743725, + 0.020953381434082985, + 0.04315504804253578, + -0.03072313405573368, + -0.003064989112317562, + -0.038849733769893646, + -0.040480148047208786, + 0.00790369138121605, + -0.01227906346321106, + -0.030621232464909554, + 0.005684162024408579, + 0.01760338805615902, + -0.0005294072325341403, + -0.015246927738189697, + 0.018354907631874084, + -0.04557519406080246, + -0.018061941489577293, + -0.0014775636373087764, + -0.02825203537940979, + 0.007171278819441795, + -0.035563427954912186, + 0.02932199463248253, + 0.04669610410928726, + -0.013132483698427677, + 0.009094659239053726, + -0.03589460626244545, + 0.006043999455869198, + 0.034340616315603256, + 0.021946914494037628, + 0.01126005407422781, + 1.7352516579194344e-6, + -0.060936763882637024, + 0.0725025162100792, + 0.010253782384097576, + -0.01653342694044113, + -0.02141193486750126, + 0.02375565655529499, + 0.02031650021672249, + -0.040072545409202576, + 0.03207332268357277, + 0.0324554480612278, + 0.01596023514866829, + 0.01962866820394993, + -0.001037319772876799, + -5.07016884512268e-5, + 0.021093495190143585, + -0.007005689665675163, + 0.007330498658120632, + 0.0229022353887558, + -0.00624780124053359, + 0.02142467349767685, + 0.0045441449619829655, + -0.010253782384097576, + -0.029245570302009583, + -0.031309064477682114, + -0.005056834314018488, + -0.0010436885058879852, + -0.0044486126862466335, + 0.023399002850055695, + -0.0710759088397026, + -0.012858624570071697, + 0.03558890148997307, + 0.024074096232652664, + 0.03416229039430618, + 0.004588726907968521, + 0.015234190970659256, + -0.04272196814417839, + -0.006528028752654791, + 0.028353936970233917, + 0.006617192178964615, + -0.0045664357021451, + -0.023182464763522148, + -0.011877828277647495, + -0.03141096606850624, + 0.007502456661313772, + 0.00792279839515686, + -0.03225164860486984, + 0.0031764432787895203, + 0.009903497993946075, + 0.0044486126862466335, + -0.04139725863933563, + -0.04695085808634758, + -0.012533815577626228, + -0.03141096606850624, + 0.0001677783002378419, + 0.008304926566779613, + -0.028175609186291695, + 0.022329043596982956, + 0.010642279870808125, + -0.04544781893491745, + 0.007432399783283472, + 0.004907167050987482, + 0.007699889596551657, + -0.028328461572527885, + -0.008814431726932526, + 0.01610034890472889, + -0.0066617741249501705, + -0.004786159843206406, + 0.01962866820394993, + -0.013489137403666973, + -0.004056931007653475, + 0.0022402284666895866, + 0.027615154162049294, + -0.005712821613997221, + 0.011075358837842941, + -0.03614936023950577, + 0.0054198564030230045, + 0.009667851962149143, + -0.027054699137806892, + -0.006604454480111599, + -0.017858140170574188, + -0.021462885662913322, + -0.001760975574143231, + 0.0035760861355811357, + -0.028990818187594414, + 0.01584559679031372, + 0.03059575706720352, + -0.010540378279983997, + 0.01746327430009842, + 0.011928779073059559, + 0.02909271791577339, + -0.02659614570438862, + 0.026290442794561386, + -0.01495396252721548, + -0.05894969403743744, + -0.030875984579324722, + 0.02636686898767948, + -0.07158540934324265, + -0.027054699137806892, + -0.003681171452626586, + 0.022023340687155724, + 0.006770043633878231, + -0.0324554480612278, + 0.0013470030389726162, + -0.038569506257772446, + 0.00036282307701185346, + 0.0188261978328228, + 0.003760781604796648, + -0.005375274457037449, + -0.030239103361964226, + 0.022443681955337524, + 0.02621401660144329, + 0.0004983592662028968, + -0.01598571054637432, + 0.021068019792437553, + 0.005521757062524557, + 0.02004900947213173, + 0.02853226289153099, + -0.03395848721265793, + -0.023781131953001022, + 0.0038913420867174864, + -0.020698629319667816, + -0.04111703112721443, + -0.026035690680146217, + -0.004789344035089016, + -0.028557738289237022, + 0.009858915582299232, + 0.028455836698412895, + 0.016571640968322754, + -0.008610629476606846, + 0.06103866174817085, + 0.03594555705785751, + -0.03360183537006378, + 0.013221646659076214, + -0.034467991441488266, + -0.020380187779664993, + -0.004935826640576124, + -0.01522145327180624, + 0.02198512852191925, + 0.003830838482826948, + -0.027487779036164284, + -0.00792279839515686, + -0.014215181581676006, + 0.018533233553171158, + -0.04746036231517792, + -0.010336576960980892, + 0.04407215490937233, + -0.012374595738947392, + 0.02374291978776455, + -0.0015412516659125686, + 0.006770043633878231, + -0.013884003274142742, + 0.01077602431178093, + -0.008139337413012981, + 0.024736452847719193, + -4.433287904248573e-5, + 0.009266616776585579, + 0.008451409637928009, + -0.03222617134451866, + 0.0059102545492351055, + -0.017437798902392387, + 0.006515291519463062, + -0.004951748996973038, + 0.018940838053822517, + 0.023016875609755516, + 0.039639465510845184, + 0.02375565655529499, + 0.005585445091128349, + -0.00768078351393342, + 0.01529787853360176, + -0.01951402984559536, + 0.004107881803065538, + 0.004337158985435963, + 0.009954447858035564, + 0.020392926409840584, + 0.035283200442790985, + 0.021641211584210396, + 0.01788361556828022, + 0.012272694148123264, + -0.002456767950206995, + -0.012017942033708096, + 0.004964486230164766, + -0.004461350385099649, + 0.027131125330924988, + -0.020813267678022385, + 0.031207162886857986, + -0.03197142109274864, + -0.012654823251068592, + -0.012196268886327744, + 0.05925539508461952, + -0.032149747014045715, + 0.010463953018188477, + 0.017972778528928757, + 0.03225164860486984, + 0.010616804473102093, + -0.039792317897081375, + 0.023500904440879822, + -0.02185775153338909, + 0.03169119358062744, + -0.005477175582200289, + -0.006840100511908531, + -0.0034582631196826696, + 0.016214987263083458, + 0.037474069744348526, + 0.03151286393404007, + 0.015629056841135025, + 0.031156212091445923, + -0.012915943749248981, + -0.044556185603141785, + -0.02226535603404045, + 0.0014202443417161703, + 0.032124269753694534, + -0.0442504845559597, + 0.02865963988006115, + 0.004037824925035238, + 0.0034327879548072815, + -0.027513254433870316, + 0.007305023726075888, + 0.026035690680146217, + 0.009050076827406883, + -0.011381060816347599, + -0.00606947485357523, + -0.0431295745074749, + 0.0022959555499255657, + 0.04786796495318413, + -0.004932642448693514, + 0.0387733094394207, + -0.011438380926847458, + -0.04104060307145119, + 0.008139337413012981, + -0.013145221397280693, + -0.00620958860963583, + -0.03655696287751198, + 0.04272196814417839, + -0.05721737816929817, + -0.01653342694044113, + 0.0029344286303967237, + 0.01188419759273529, + -0.018240267410874367, + 0.009400362148880959, + 0.009101027622818947, + -0.016214987263083458, + 0.028328461572527885, + -0.017960039898753166, + -0.05869494006037712, + -0.0004346712084952742, + 0.02277486026287079, + 0.014584572054445744, + -0.02237999439239502, + -0.0020173201337456703, + -0.0026478322688490152, + -0.014711948111653328, + 0.01844407059252262, + 0.01522145327180624, + 0.010024504736065865, + -0.005273373797535896, + -0.009024602361023426, + -0.008374983444809914, + 0.017960039898753166, + -0.04639040306210518, + -0.022864023223519325, + -0.009597795084118843, + 0.02646876871585846, + -0.0026940060779452324, + 0.02031650021672249, + -0.02048208937048912, + -0.0022529661655426025, + 0.029245570302009583, + -0.001540455617941916, + -0.011527543887495995, + 0.013463662005960941, + 0.021386459469795227, + 0.01467373501509428, + 0.014915750361979008, + -0.030748609453439713, + -0.02087695524096489, + -0.009253879077732563, + 0.024749191477894783, + -0.006642667576670647, + -0.004661967977881432, + 0.03444251790642738, + -0.023526379838585854, + -0.0008406827691942453, + 0.013081532903015614, + 0.009037340059876442, + 0.026239491999149323, + -0.012941419146955013, + -0.010947981849312782, + -0.05446605384349823, + -0.0012554514687508345, + 0.02360280603170395, + 0.004958117846399546, + -0.024596339091658592, + 0.004655599128454924, + 0.003722568741068244, + -0.004693812225013971, + -0.00526063609868288, + 0.00940673053264618, + -0.028353936970233917, + 0.012482864782214165, + 0.019055476412177086, + 0.014992175623774529, + 0.005986680276691914, + 0.03235355019569397, + 0.03291400521993637, + 0.00392955495044589, + 0.046212077140808105, + 0.04435238242149353, + -0.007273179478943348, + 0.05237708240747452, + -0.008865381591022015, + 0.0001062794981407933, + -0.0013000330654904246, + -0.008642473258078098, + -0.005524941720068455, + -0.005009068176150322, + 0.0017370926216244698, + -0.05008431151509285, + 0.013909478671848774, + -0.004642861429601908, + -0.025742724537849426, + 0.018112892284989357, + 0.005563154350966215, + 0.01720852218568325, + 0.016291413456201553, + 0.011482962407171726, + -0.024494439363479614, + -0.0032449080608785152, + -0.015730958431959152, + 0.032277122139930725, + -0.03602198138833046, + -0.008082018233835697, + -0.007916429080069065, + 0.013247122056782246, + 0.036098409444093704, + 0.004884876310825348, + -0.040072545409202576, + 0.0021351431496441364, + -0.023551855236291885, + -0.008203025907278061, + 0.02649424411356449, + -0.04353717714548111, + 0.00764893926680088, + -0.02718207612633705, + -0.003165297908708453, + -0.036353159695863724, + -0.02592105232179165, + 0.030774084851145744, + -0.024660026654601097, + -0.03818737715482712, + 0.004235257860273123, + 0.028302986174821854, + 0.01952676847577095, + 0.01495396252721548, + 0.0318949930369854, + 0.005149181932210922, + -0.02881249040365219, + -0.0020268734078854322, + -0.02646876871585846, + 0.01227906346321106, + 0.014227918349206448, + 0.0189663115888834, + 0.012107104994356632, + 0.01799825392663479, + -0.0026733074337244034, + -0.015871072188019753, + 0.011164521798491478, + -0.016558902338147163, + 0.007718996144831181, + 0.008642473258078098, + -0.02322067692875862, + -0.010973457247018814, + 0.006368808913975954, + -0.02621401660144329, + 0.035818181931972504, + -0.006101318635046482, + 0.005789247341454029, + 0.00775084039196372, + -0.005540863610804081, + 0.005104600451886654, + 0.007177647668868303, + 0.018456807360053062, + 0.017106620594859123, + -0.03604745864868164, + 0.03834022954106331, + -0.02240546979010105, + 0.025347858667373657, + -0.018635135143995285, + -0.020138172432780266, + -0.011514806188642979, + 0.003163705812767148, + 0.009234772995114326, + -0.017004719004034996, + -0.00859789177775383, + -0.0047988975420594215, + -0.019157376140356064, + 0.004575989209115505, + -0.0006906177150085568, + -0.010629542171955109, + 0.014444458298385143, + -0.009464049711823463, + -0.02743682824075222, + 0.01994710974395275, + -0.0038117319345474243, + 0.04384287819266319, + -0.0010643871501088142, + -0.013896740972995758, + 0.013985903933644295, + -0.0414482057094574, + 0.0019966214895248413, + 0.028455836698412895, + -0.01434255763888359, + 0.0028484496288001537, + -0.003942292649298906, + 0.0027895381208509207, + -0.007343236356973648, + -0.02934747003018856, + -0.006063106004148722, + 0.03969041630625725, + 0.010788762010633945, + -0.02141193486750126, + -0.008623367175459862, + 0.014317082241177559, + -0.01624046266078949, + 0.009088289923965931, + 0.01077602431178093, + 0.012087998911738396, + 0.024341586977243423, + 0.00498359277844429, + 0.011419273912906647, + 0.014788374304771423, + 0.01501765102148056, + -0.01760338805615902, + -0.03744859620928764, + 0.02008722350001335, + -0.01220900658518076, + 0.018049204722046852, + -0.020291024819016457, + -0.02579367533326149, + -0.010476690717041492, + 0.013973166234791279, + -0.01029199454933405, + -0.008158444426953793, + -0.006203219760209322, + -0.024074096232652664, + -0.005798800382763147, + 0.033347081393003464, + -0.01611308567225933, + 0.022430945187807083, + 0.03729574382305145, + -0.022303568199276924, + -0.02988245151937008, + -0.0011264830827713013, + -0.012482864782214165, + -0.009916235692799091, + 0.024596339091658592, + -0.005760587751865387, + 0.01733589731156826, + -0.009247510693967342, + 0.004512301180511713, + 0.0434098020195961, + -0.011393798515200615, + -0.015387042425572872, + -0.012807674705982208, + 0.003763966029509902, + -0.0338565856218338, + 0.05390559881925583, + 0.03574175387620926, + -0.016851868480443954, + -0.01017098780721426, + 0.018061941489577293, + 0.008094755932688713, + 0.013056057505309582, + -0.001235548872500658, + -0.02128455974161625, + 0.013616513460874557, + -0.0023676047567278147, + 0.00491353590041399, + 0.011183627881109715, + -0.020150911062955856, + 0.015922021120786667, + -0.005126891192048788, + 0.02088969200849533, + 0.009495893493294716, + -0.002972641494125128, + -0.054517004638910294, + -0.024112310260534286, + -0.006859207060188055, + -0.03502844646573067, + -0.017297685146331787, + -0.0022704803850501776, + 0.0044549815356731415, + 0.024774666875600815, + -0.003045882796868682, + -0.019857944920659065, + 0.009763384237885475, + -0.028048234060406685, + -0.00013066008978057653, + -0.03222617134451866, + 0.003135046223178506, + 0.025054894387722015, + -0.030060777440667152, + -0.005174657329916954, + -0.027538729831576347, + 0.03059575706720352, + -0.029551273211836815, + 0.019437603652477264, + -0.001283315010368824, + 0.023156989365816116, + -0.027462303638458252, + -0.02799728326499462, + 0.025551659986376762, + 0.0393337644636631, + -0.006770043633878231, + 0.03839118033647537, + 0.003741675056517124, + -0.00515555078163743, + -0.018762510269880295, + -0.011062621138989925, + -0.005849750712513924, + -0.04516759142279625, + 0.0077253649942576885, + 0.0005031359032727778, + 0.010597697459161282, + -0.014406245201826096, + 0.013833052478730679, + 0.017667075619101524, + -0.02169216237962246, + -0.033372558653354645, + 0.0026828607078641653, + 0.029169144108891487, + -0.04544781893491745, + 0.030086252838373184, + 0.04751131311058998, + 0.01050216518342495, + 0.015743695199489594, + -0.03370373696088791, + 0.02306782454252243, + 0.015998447313904762, + 0.015922021120786667, + -0.022201666608452797, + 0.005977127235382795, + -0.014890274964272976, + -0.044403333216905594, + -0.008470515720546246, + -0.04491284117102623, + 0.003569717286154628, + -0.028710590675473213, + 0.010215569287538528, + -0.0035315044224262238, + -0.04901435226202011, + 0.006473894231021404, + -0.020634939894080162, + -0.015998447313904762, + -0.048912450671195984, + 0.021360984072089195, + 0.002324615139514208, + -0.0028484496288001537, + -0.010049980133771896, + 0.0034455256536602974, + -0.030239103361964226, + 0.022329043596982956, + -0.0015826489543542266, + -0.023093299940228462, + 0.02799728326499462, + 0.039639465510845184, + -0.0036206678487360477, + -0.0014839324867352843, + -0.0033531778026372194, + -0.0021335508208721876, + 0.035155825316905975, + -0.0010206016013398767, + 0.01179503370076418, + 0.0046205706894397736, + -0.0013278966071084142, + 0.006719093304127455, + -0.010215569287538528, + -0.0010277664987370372, + 0.005601367447525263, + -0.006145900581032038, + 0.024481700733304024, + -0.015336091630160809, + -0.0063178581185638905, + -0.012826780788600445, + -0.0033882062416523695, + 0.001835809089243412, + -0.013272597454488277, + 0.008992757648229599, + -0.010463953018188477, + -0.020558515563607216, + -0.0004915924509987235, + 0.025016680359840393, + 0.0029200988356024027, + -0.012705773115158081, + 0.005012252368032932, + 0.022825811058282852, + 0.00032660047872923315, + 0.0005883186822757125, + -0.02741135284304619, + 0.015527156181633472, + 0.015399779193103313, + -0.001862876582890749, + 0.024532651528716087, + -0.03670981526374817, + -0.025220483541488647, + -0.024902042001485825, + 0.020838743075728416, + 0.00792279839515686, + -0.0011344440281391144, + 0.013680201023817062, + -0.013489137403666973, + 0.026290442794561386, + 0.0016638513188809156, + -0.012616610154509544, + -0.02291497401893139, + 0.007629832718521357, + -0.03956304118037224, + 0.041295357048511505, + -0.03041743114590645, + -0.0035028448328375816, + 0.010890662670135498, + 0.020698629319667816, + 0.04654325544834137, + 0.0025905128568410873, + 0.0020475720521062613, + 0.007527932059019804, + -0.012603872455656528, + -0.009833441115915775, + -0.039792317897081375, + 0.02662162110209465, + -0.0185459703207016, + 0.04096417874097824, + 0.01762886345386505, + 0.01649521477520466, + 0.007018427364528179, + -0.0012236073380336165, + -0.024226948618888855, + -0.015641793608665466, + -0.018049204722046852, + 0.021373722702264786, + -0.03057028166949749, + -0.005381643306463957, + 0.011916041374206543, + 0.009323935955762863, + 0.034467991441488266, + -0.0021239977795630693, + -0.011852352879941463, + 0.012330013327300549, + 0.021997865289449692, + -0.001556377625092864, + -0.004789344035089016, + 7.873937647673301e-6, + -0.00894817616790533, + 0.014011379331350327, + -0.01297326385974884, + -0.003642958588898182, + -0.010304732248187065, + -0.019717831164598465, + 0.011565756984055042, + -0.015285140834748745, + -0.0069738454185426235, + -0.005231976509094238, + -0.003077726811170578, + -0.016699016094207764, + -0.020520301535725594, + -0.012705773115158081, + -0.0013724783202633262, + -0.02209976688027382, + 0.018354907631874084, + -0.011686763726174831, + -0.01582012139260769, + 0.049753133207559586, + 0.016851868480443954, + 0.01385852787643671, + -0.02212524227797985, + 0.01133011095225811, + 0.02181953936815262, + -0.011011670343577862, + 0.047282036393880844, + 0.03579270467162132, + 0.015565368346869946, + -0.029831500723958015, + 0.009158346801996231, + 0.022036077454686165, + 0.04463260993361473, + 0.0010285626631230116, + -0.027334926649928093, + -0.017412323504686356, + 0.027869906276464462, + 0.008005592972040176, + 0.01979425735771656, + 0.033092331141233444, + -0.011909672059118748, + 0.009489525109529495, + -0.004649230279028416, + -0.012591134756803513, + 0.008922700770199299, + 0.01473742350935936, + 0.007961010560393333, + 0.025411546230316162, + 0.0005214462289586663, + -0.024099571630358696, + -0.010234675370156765, + 0.01663532853126526, + 0.018902624025940895, + -0.013336285948753357, + -0.008687054738402367, + 0.002531601581722498, + -0.00954684428870678, + 0.04167748615145683, + 0.011457487009465694, + 0.017399584874510765, + 0.03403491526842117, + 0.01776897720992565, + -0.026978274807333946, + 0.04560067132115364, + -0.018647871911525726, + -0.010674123652279377, + 0.018902624025940895, + 0.032557349652051926, + -0.0053306929767131805, + -0.0022959555499255657, + 0.01481384877115488, + -0.03016267903149128, + -0.026850897818803787, + 0.004295761696994305, + 0.001577076269313693, + -0.013068795204162598, + -0.020571252331137657, + -0.019361179322004318, + -0.0012100737076252699, + -0.01371841412037611, + -0.02267295867204666, + 0.0014425351982936263, + 0.005582260899245739, + -0.025411546230316162, + -0.0020300578325986862, + -0.009234772995114326, + -0.009311198256909847, + -0.006712724454700947, + 0.022456420585513115, + -0.01610034890472889, + -0.003077726811170578, + 0.008476884104311466, + -0.014686472713947296, + 0.008960913866758347, + -0.008107493631541729, + 0.014915750361979008, + -0.003697093576192856, + -0.020685890689492226, + 0.0022434128914028406, + -0.00038969150045886636, + 0.02674899622797966, + -0.02415052242577076, + -0.005286111496388912, + 0.0027752083260565996, + -0.0014051183825358748, + -0.003830838482826948, + -0.026952799409627914, + -0.021513836458325386, + 0.007037533447146416, + -0.010221937671303749, + -0.008508728817105293, + 0.02250736951828003, + 0.01536156702786684, + 0.014724685810506344, + -0.0005445331335067749, + 0.002907361136749387, + -0.021755849942564964, + -0.00392637075856328, + -0.001229180139489472, + -0.02131003327667713, + -0.005658686626702547, + -0.0014393507735803723, + 0.029143668711185455, + 0.01480111200362444, + 0.05021168664097786, + 0.01639331318438053, + -0.000933826609980315, + -0.014559096656739712, + -0.00315733696334064, + 0.001966369803994894, + -0.03602198138833046, + -0.02346269227564335, + 2.3733764464850537e-5, + 0.008515097200870514, + -0.008725267834961414, + -0.00010846877557924017, + 0.007107590790838003, + 0.01746327430009842, + 0.017679812386631966, + 0.013756627216935158, + 0.00199821381829679, + 0.003601561300456524, + 0.001339042093604803, + -0.011667657643556595, + 0.02142467349767685, + -0.016991982236504555, + 0.030646707862615585, + -0.050848569720983505, + -0.006827362813055515, + 0.004187491722404957, + 0.008005592972040176, + -0.010323839262127876, + -0.012228112667798996, + 0.005305217579007149, + 0.0041779386810958385, + -0.002447214676067233, + 0.01126642245799303, + 0.022851286455988884, + -0.01571821980178356, + 0.020507564768195152, + -0.0008741189958527684, + -0.012298169545829296, + 0.0040537468157708645, + 0.004181122872978449, + 0.015794645994901657, + 0.013285335153341293, + -0.022889498621225357, + 0.0066681429743766785, + -0.010368420742452145, + 0.021208133548498154, + -0.007833634503185749, + 0.01420244388282299, + 0.04295124486088753, + -0.02198512852191925, + 0.02390850894153118, + 0.003881789045408368, + 0.004939011298120022, + 0.009196559898555279, + 0.015094077214598656, + -0.038136426359415054, + -0.011737714521586895, + -0.006043999455869198, + -0.0054612536914646626, + 0.012470128014683723, + 0.017526961863040924, + 0.0013056057505309582, + -0.007948273792862892, + 0.008859013207256794, + 0.010750548914074898, + 0.007050271145999432, + 0.015769170597195625, + -0.022723909467458725, + -0.02115718275308609, + -0.008776218630373478, + 0.006289198528975248, + 0.027385877445340157, + 0.021475622430443764, + 0.012864993885159492, + -0.014775636605918407, + 0.027258502319455147, + -0.019756045192480087, + 0.004346712026745081, + 0.02413778565824032, + -0.013985903933644295, + -0.011597600765526295, + -0.006999320816248655, + -0.01569274440407753, + 0.07240061461925507, + 0.018673347309231758, + 0.009432205930352211, + 0.02388303354382515, + -0.007355974055826664, + -0.008343139663338661, + -0.000509902776684612, + 0.00818391889333725, + 0.02346269227564335, + 0.022762121632695198, + -0.048402946442365646, + 0.016214987263083458, + -0.002622357103973627, + 0.003021999727934599, + 0.0038149163592606783, + -0.0038499447982758284, + 0.01290957536548376, + 0.005935729946941137, + -0.016673540696501732, + 0.015183240175247192, + -0.006878313608467579, + -0.012533815577626228, + 0.010221937671303749, + -0.0005170676740817726, + 0.0011081726988777518, + -0.0166480652987957, + 0.003725753165781498, + 0.0017864508554339409, + -0.012820412404835224, + -0.01038115844130516, + 0.0013748665805906057, + -0.00729865487664938, + 0.02334805205464363, + -0.012304538860917091, + -0.012113474309444427, + -0.003869051346555352, + -0.0004394478164613247, + -0.014648260548710823, + 0.007795421872287989, + -0.021259084343910217, + 0.006757305935025215, + -0.0210043303668499, + -0.02004900947213173, + 0.001883575227111578, + -0.018354907631874084, + 0.0029025846160948277, + 0.01550168078392744, + 0.03128358721733093, + -0.014368032105267048, + 0.011068989522755146, + -0.0013358576688915491, + -0.009355779737234116, + -0.008445040322840214, + -0.02444348856806755, + -0.017947303131222725, + 0.01799825392663479, + 0.01168039534240961, + -0.0040951441042125225, + -0.009425836615264416, + 0.01207526121288538, + 0.01234912034124136, + 0.010120037011802197, + -0.010897031985223293, + -0.04817366972565651, + -0.026137590408325195, + 0.008865381591022015, + 0.00982070341706276, + -0.02390850894153118, + -0.014444458298385143, + 0.01459730975329876, + -0.000741568161174655, + 0.00161369692068547, + -0.006028077565133572, + 0.027869906276464462, + -0.004569620359688997, + -0.008629735559225082, + 0.01816384308040142, + 0.005684162024408579, + -0.0013613328337669373, + -0.0434098020195961, + -0.022723909467458725, + 0.005317955277860165, + -0.021386459469795227, + 0.023577330633997917, + -0.0010564262047410011, + -0.005626842379570007, + 0.006655405275523663, + 0.004939011298120022, + -0.007776315324008465, + -0.012266325764358044, + -0.02114444598555565, + 0.004655599128454924, + 0.006986583117395639, + 0.01140016783028841, + -0.015565368346869946, + -0.003630220890045166, + -0.02114444598555565, + 0.010113668628036976, + 0.0020109512843191624, + -0.003518766723573208, + -0.00968695804476738, + -0.014724685810506344, + 0.011820509098470211, + -0.05145997554063797, + 0.02690184861421585, + -0.005423040594905615, + -0.030952410772442818, + 0.010228306986391544, + -0.033652786165475845, + -0.014266131445765495, + -0.006782781332731247, + -0.007355974055826664, + -0.02101706899702549, + 0.005311586428433657, + 0.002280033426359296, + 0.005766956135630608, + 0.0021940546575933695, + 0.005005883518606424, + 0.03563985228538513, + -0.016291413456201553, + -0.016482476145029068, + 0.007515194360166788, + -0.004445428494364023, + 0.01206889282912016, + -0.004002796486020088, + -0.018202055245637894, + 0.022558320313692093, + -0.005547232460230589, + -0.017947303131222725, + -0.022622007876634598, + 0.00785274151712656, + -0.015565368346869946, + 0.0007236559176817536, + 0.008438671939074993, + -7.871449633967131e-5, + 0.025080369785428047, + -0.0038658669218420982, + -0.010158250108361244, + -0.010540378279983997, + 0.003674802603200078, + -0.02837941236793995, + -0.03176761791110039, + -0.0072413356974720955, + 0.015068601816892624, + 0.007878215983510017, + 0.025296907871961594, + -0.013157959096133709, + -0.003974136896431446, + 0.0011965399608016014, + -0.026290442794561386, + 0.0005417467909865081, + 0.0009887575870379806, + -0.026112115010619164, + -0.008483253419399261, + -0.0189663115888834, + 0.009865284897387028, + -0.021895963698625565, + 0.008884488604962826, + -0.02538607083261013, + -0.0006185705424286425, + -0.010145512409508228, + -0.01090976968407631, + 0.007916429080069065, + -0.019348440691828728, + -0.0321752205491066, + -0.02809918485581875, + -0.005878410302102566, + -0.007254073396325111, + 0.011514806188642979, + 0.02604842744767666, + -0.015654532238841057, + 0.00818391889333725, + -0.012884099967777729, + -0.0054198564030230045, + -0.0033245182130485773, + -0.024672765284776688, + 0.026850897818803787, + -0.025080369785428047, + -0.00038551195757463574, + -0.007789053022861481, + -0.03770334646105766, + -0.009776121005415916, + -0.0016479293117299676, + 0.0398942194879055, + 0.01951402984559536, + -0.01029199454933405, + -0.002475874498486519, + -0.0020841925870627165, + -0.006190482061356306, + 0.018074680119752884, + -0.005060018505901098, + -0.038161903619766235, + -0.009266616776585579, + 0.023106038570404053, + -0.011737714521586895, + 0.0012920721201226115, + -0.0020507564768195152, + 0.005983495619148016, + -0.002994932234287262, + -0.005142813082784414, + -0.011928779073059559, + 0.0020236889831721783, + 0.0512816496193409, + -0.03879878297448158, + 0.04623755067586899, + -0.012113474309444427, + 0.0020507564768195152, + 0.012864993885159492, + -0.02253284491598606, + -0.014724685810506344, + -0.02250736951828003, + -0.006340149324387312, + -0.007311392575502396, + 0.0011137453839182854, + 0.049753133207559586, + 0.028226559981703758, + -0.020112698897719383, + 0.001221219077706337, + 0.010648648254573345, + -0.02455812692642212, + -0.0069738454185426235, + 0.009699695743620396, + -0.010527640581130981, + 0.007273179478943348, + -0.011094464920461178, + 0.01624046266078949, + 0.0009545251959934831, + -0.005473990924656391, + 0.0033913906663656235, + 0.00747061287984252, + 0.02758967876434326, + 0.004652414936572313, + 0.008101124316453934, + 0.015756431967020035, + -0.0058210911229252815, + 0.0023994487710297108, + -0.0005170676740817726, + -0.010202831588685513, + -0.0006715112831443548, + -0.03113073669373989, + 0.021373722702264786, + -0.001319935661740601, + -0.021679425612092018, + -0.014775636605918407, + -0.022749384865164757, + -0.0002432088804198429, + 0.004372187424451113, + 0.04567709565162659, + 0.0027242579963058233, + 0.0014903012197464705, + -0.004069668706506491, + 0.010234675370156765, + 0.010877924971282482, + 0.00474157789722085, + -0.0034646319691091776, + 0.01872429810464382, + -0.007712627295404673, + 0.0035537953954190016, + 0.004063299857079983, + -0.003709831042215228, + -0.0025729986373335123, + 0.020291024819016457, + 0.00982070341706276, + -0.01719578355550766, + -0.006477078422904015, + -0.0158073827624321, + -0.004868954420089722, + 0.020571252331137657, + 0.01295415684580803, + -0.014278869144618511, + 0.01626593805849552, + 0.009680589661002159, + -0.01439350750297308, + 0.004735209513455629, + 0.004623755346983671, + 0.008005592972040176, + -0.0165079515427351, + 0.0006265315460041165, + 0.03018815442919731, + 0.0035856394097208977, + -0.009642376564443111, + 0.01487753726541996, + -0.0029089534655213356, + 0.03316875547170639, + 0.017170308157801628, + -0.019195590168237686, + -0.0210043303668499, + 0.011170890182256699, + 0.0016638513188809156, + -0.020673153921961784, + -0.012992369942367077, + 0.017960039898753166, + -0.010190093889832497, + 0.018061941489577293, + -0.004999514669179916, + -0.009285722859203815, + -0.025462497025728226, + -0.004744762554764748, + -0.024468963965773582, + -0.002993340138345957, + -0.005760587751865387, + -0.02850678749382496, + -0.011311003938317299, + 0.008355877362191677, + 0.01871155947446823, + 0.028583213686943054, + 0.04631397873163223, + -0.0040059806779026985, + 0.017705287784337997, + -0.03253187611699104, + -0.016457002609968185, + 0.025462497025728226, + -0.04557519406080246, + -0.02254558354616165, + -0.0004784567572642118, + -0.00020370236597955227, + 0.0013207317097112536, + 0.008909963071346283, + 0.018061941489577293, + -0.00790369138121605, + 0.00996081717312336, + -0.011502068489789963, + -0.031309064477682114, + -0.017157571390271187, + -0.0019615930505096912, + 0.0189663115888834, + 0.004458166193217039, + 0.007133065722882748, + -0.020787792280316353, + -0.02240546979010105, + -0.004015533719211817, + 0.0015141842886805534, + 0.013132483698427677, + 0.020240074023604393, + -0.019615931436419487, + 0.011871459893882275, + -0.025169532746076584, + -0.01829121820628643, + 0.008425934240221977, + 0.04323147237300873, + -0.01760338805615902, + 0.01445719599723816, + 0.0006189686246216297, + 0.010553115978837013, + -0.01351461187005043, + 0.012272694148123264, + 0.010215569287538528, + 0.00873163715004921, + 0.0056968992576003075, + -0.004779790993779898, + -0.017845401540398598, + 0.011107202619314194, + 0.016355101019144058, + -0.011565756984055042, + -0.02962769754230976, + -0.016329625621438026, + 0.0027736162301152945, + 0.01624046266078949, + 0.012896837666630745, + 0.015374304726719856, + -0.01694103144109249, + -0.006053552497178316, + 0.026315918192267418, + -0.01501765102148056, + 0.0008948176400735974, + 0.001140016713179648, + -0.012852256186306477, + 0.01815110445022583, + 0.011228210292756557, + 0.008897225372493267, + -0.011037145741283894, + -0.008311295881867409, + -0.002522048307582736, + -0.025742724537849426, + 0.01895357482135296, + -0.001281722798012197, + 0.024379799142479897, + 0.0006042407476343215, + 0.007094853091984987, + -0.02181953936815262, + -0.023641018196940422, + -0.00012120639439672232, + 0.00022390343656297773, + 0.012170793488621712, + -0.025003943592309952, + -0.014304344542324543, + 0.0006281237583607435, + -0.01501765102148056, + 0.01775623857975006, + 0.0016877342713996768, + 0.014418982900679111, + -0.019284753128886223, + 0.0365314856171608, + -0.010483059100806713, + -0.03864593058824539, + 0.026647096499800682, + 0.032964952290058136, + -0.0008956137462519109, + -0.015094077214598656, + 0.01133647933602333, + 0.013005107641220093, + 0.0019822916947305202, + -0.02373018115758896, + -0.00013931769353803247, + 0.008311295881867409, + 0.009260248392820358, + 0.04346075281500816, + -0.029729599133133888, + -0.006770043633878231, + -0.0007252480718307197, + -0.00378944119438529, + -0.009349411353468895, + -0.01611308567225933, + -0.004623755346983671, + 0.015145027078688145, + -0.03235355019569397, + -0.006534397602081299, + -0.001936117885634303, + 0.022864023223519325, + -0.01816384308040142, + -0.014508146792650223, + -0.03535962477326393, + -0.007910060696303844, + 0.009903497993946075, + 0.01787087693810463, + 0.021068019792437553, + 0.011018038727343082, + -0.0034359723795205355, + 0.014138755388557911, + -0.006136347074061632, + 9.742287511471659e-5, + 0.005448515992611647, + 0.0003845168394036591, + 0.014762898907065392, + 0.013934953138232231, + -0.03260830044746399, + -0.02032923698425293, + 0.01872429810464382, + 0.02254558354616165, + 0.01406233012676239, + -0.0027433643117547035, + -0.01077602431178093, + -0.032404497265815735, + 0.02728397585451603, + 0.003951845690608025, + 0.007432399783283472, + 0.0011917633237317204, + -0.018991786986589432, + -0.012546553276479244, + -0.01043210830539465, + 0.004849847871810198, + 0.010788762010633945, + -0.0020348343532532454, + 0.00825397577136755, + 0.02254558354616165, + -0.009323935955762863, + 0.015922021120786667, + -0.008470515720546246, + 0.006493000313639641, + -0.01680091768503189, + 0.001527718035504222, + -0.010877924971282482, + 0.0033977595157921314, + -0.005480359774082899, + -0.004782975185662508, + 0.015934759750962257, + 0.01885167323052883, + -0.015781907364726067, + 0.007820896804332733, + -0.005423040594905615, + 0.004349896218627691, + 0.009120133705437183, + 0.007897322997450829, + 0.01962866820394993, + -0.008884488604962826, + 0.00596757372841239, + -0.012266325764358044, + 0.002448807004839182, + -0.014024117030203342, + 0.0033722843509167433, + 0.002520455978810787, + 0.006891051307320595, + 0.003107978729531169, + -0.010922507382929325, + -0.01010093092918396, + 0.04667063057422638, + -0.014164230786263943, + 0.014278869144618511, + -0.0005349799175746739, + -0.0028994001913815737, + -0.0384930819272995, + 0.000927457760553807, + -0.0017721210606396198, + 0.02469824068248272, + 0.004340343177318573, + 0.0007968972204253078, + -0.031716667115688324, + 0.005438962485641241, + 0.010534009896218777, + -0.008980019949376583, + -0.004935826640576124, + 0.00041357451118528843, + -0.0030618049204349518, + 0.015488943085074425, + 0.004942195490002632, + 0.007814528420567513, + 0.012622978538274765, + -0.0026621620636433363, + -0.010801499709486961, + 0.0012076853308826685, + 0.024927517399191856, + -0.010056349448859692, + 0.0019297490362077951, + 0.009884390980005264, + -0.010941613465547562, + -0.008406827226281166, + -0.01481384877115488, + 0.003792625619098544, + -0.00620958860963583, + 0.011183627881109715, + 0.005184210371226072, + 0.01746327430009842, + -0.01329807285219431, + -0.030799558386206627, + 0.010788762010633945, + -0.014075066894292831, + -0.0016909186961129308, + 0.019068213179707527, + 0.008266713470220566, + -0.007107590790838003, + 0.0017402770463377237, + -0.02891439199447632, + -0.0017768976977095008, + 0.0013987496495246887, + 0.0006428516353480518, + -0.014176968485116959, + -0.019717831164598465, + 0.0071521722711622715, + 0.030493855476379395, + 0.022685697302222252, + -0.0034741852432489395, + 0.009788858704268932, + 0.012718510814011097, + -0.012202637270092964, + 0.0023086932487785816, + -0.01371841412037611, + -0.025271432474255562, + -0.0013334692921489477, + -0.008788956329226494, + -0.025360597297549248, + -0.033092331141233444, + -0.0023198386188596487, + -0.014750161208212376, + 0.009323935955762863, + -0.016877343878149986, + -0.03864593058824539, + -0.002507718512788415, + 0.010973457247018814, + -0.0027306268457323313, + -0.01406233012676239, + 0.008419564925134182, + -0.0008852644241414964, + 0.011463855393230915, + 0.01329807285219431, + -0.0010811053216457367, + -0.011132678017020226, + 0.002557076746597886, + -0.02237999439239502, + -0.01365472562611103, + -0.01097982656210661, + -0.010056349448859692, + 0.0066681429743766785, + -0.026417817920446396, + 0.0034232346806675196, + -0.01570548303425312, + -0.01024104468524456, + 0.008050174452364445, + 0.008922700770199299, + 0.028965342789888382, + -0.010056349448859692, + -0.000747936952393502, + 0.01379483938217163, + -0.007012058515101671, + 0.010897031985223293, + -0.003910448402166367, + 0.01993437111377716, + 0.009381255134940147, + -0.003201918676495552, + 0.0036270366981625557, + -0.004318052437156439, + 0.01487753726541996, + 0.00382446963340044, + -0.010228306986391544, + 0.028634164482355118, + 0.011361954733729362, + -0.004228889010846615, + -0.017259471118450165, + 0.0020268734078854322, + -0.02073684148490429, + -0.0045919110998511314, + -0.0035760861355811357, + 0.014852061867713928, + -0.003878604620695114, + -0.006053552497178316, + -0.013247122056782246, + -0.01625319942831993, + 0.006731831002980471, + -0.029169144108891487, + -0.013616513460874557, + -0.011553019285202026, + 0.0073241302743554115, + -0.020800529047846794, + 0.0034964759834110737, + -0.026978274807333946, + -0.003652511863037944, + 0.009725171141326427, + 0.012616610154509544, + -0.018647871911525726, + -0.00460146414116025, + -0.0022704803850501776, + 0.00797374825924635, + -0.00022071902640163898, + -0.011349217034876347, + -0.00324331596493721, + -0.03059575706720352, + 0.014508146792650223, + -0.005305217579007149, + 0.00035486207343637943, + 0.01439350750297308, + -0.0033977595157921314, + -0.027768006548285484, + -0.012915943749248981, + -0.012992369942367077, + 0.01077602431178093, + -0.003757597180083394, + 0.0015253296587616205, + -0.018227530643343925, + 0.003655696287751198, + 0.01570548303425312, + -0.01017735619097948, + -0.022825811058282852, + -0.0008016737992875278, + -0.021870490163564682, + -0.011731346137821674, + 0.016406051814556122, + 0.014775636605918407, + 0.0018087417120113969, + -0.020520301535725594, + -0.0028580029029399157, + -0.026570670306682587, + 0.018482282757759094, + -0.0010795131092891097, + 0.0010158249642699957, + 0.010508534498512745, + 0.0070630088448524475, + -0.01515776477754116, + 0.03253187611699104, + 9.553213021717966e-5, + 0.006706355605274439, + -0.02209976688027382, + 0.0013589445734396577, + -0.01708114519715309, + 0.002488611964508891, + 0.0014075067592784762, + 0.006636298727244139, + 0.009438574314117432, + -0.0008462554542347789, + -0.005037727765738964, + 0.013756627216935158, + -0.016979243606328964, + -0.020392926409840584, + -0.0004955729236826301, + -0.01213894970715046, + 0.0022322675213217735, + 0.018456807360053062, + -0.02237999439239502, + 0.00831766426563263, + 0.022354518994688988, + -0.009451312012970448, + 0.0012809266336262226, + -0.013272597454488277, + 0.012463758699595928, + 0.015234190970659256, + 0.02074957825243473, + -0.01910642720758915, + 0.003053843742236495, + -0.011744082905352116, + 0.024902042001485825, + -0.0022593350149691105, + -0.025729987770318985, + -0.017144832760095596, + -0.011024408042430878, + -0.0020873770117759705, + 0.0032385392114520073, + -0.018176579847931862, + -0.008693424053490162, + 0.0020268734078854322, + 0.01938665471971035, + 0.0023469061125069857, + 0.005811538081616163, + 0.037346694618463516, + 0.015119551680982113, + 0.027054699137806892, + 0.018227530643343925, + 0.02646876871585846, + 0.007929166778922081, + 0.018495021387934685, + 0.02429063618183136, + -0.01439350750297308, + -0.005534494761377573, + -0.0029471663292497396, + 0.02636686898767948, + 0.0022115688771009445, + 0.0026478322688490152, + -0.0025968817062675953, + 0.0017450535669922829, + -0.005486728623509407, + -0.005005883518606424, + 0.024940256029367447, + 0.0032894897740334272, + 0.024494439363479614, + 0.027920857071876526, + -0.005894332658499479, + 0.009559581987559795, + -0.012928681448101997, + -0.0188261978328228, + 0.007387818302959204, + -0.007260441780090332, + -0.017641600221395493, + -0.011374692432582378, + -0.02457086369395256, + -0.020545776933431625, + -0.007789053022861481, + -0.00324331596493721, + -2.2925223674974404e-5, + -0.012705773115158081, + -0.007184016052633524, + -0.01241917721927166, + -0.001580260694026947, + 0.0017291315598413348, + -0.02482561580836773, + -0.02878701500594616, + 0.015310616232454777, + 0.007585251238197088, + -0.027869906276464462, + -0.011018038727343082, + -0.002496573142707348, + -0.007107590790838003, + 0.0026844528038054705, + -0.008890856988728046, + 0.005257451441138983, + -0.02662162110209465, + 0.022736648097634315, + -0.0021287743002176285, + 0.021997865289449692, + -0.007483350113034248, + 0.0033022272400557995, + -0.012482864782214165, + 0.008884488604962826, + 0.0094831557944417, + 0.0057796938344836235, + 0.009113765321671963, + -0.026672571897506714, + -0.013081532903015614, + -0.0011010078014805913, + -0.014164230786263943, + -0.013463662005960941, + 0.0044900099746882915, + -0.032429974526166916, + -0.005270189139991999, + -0.015004913322627544, + -0.007177647668868303, + 0.02143741026520729, + -0.003026776248589158, + 0.0017944119172170758, + -0.013769364915788174, + -0.012151687406003475, + -0.01844407059252262, + 0.005177841521799564, + -0.014049592427909374, + -0.011508437804877758, + 0.028353936970233917, + -0.0033436245284974575, + 0.00908192154020071, + -0.01214531809091568, + 0.012240850366652012, + 0.010228306986391544, + 0.0038658669218420982, + -0.001840585726313293, + -0.005859304219484329, + 0.007572513539344072, + 0.01705566979944706, + 0.0015898138517513871, + 0.0019695539958775043, + 0.019577717408537865, + 0.008470515720546246, + -0.013960428535938263, + -0.04111703112721443, + -0.003601561300456524, + -0.017437798902392387, + 0.008145706728100777, + -0.005416671745479107, + 0.01473742350935936, + -0.001565930899232626, + -0.018749773502349854, + -0.011737714521586895, + -0.004388109315186739, + 0.014431720599532127, + -0.0065726106986403465, + 0.007687152363359928, + -0.03456989303231239, + 0.02444348856806755, + -0.017832664772868156, + 0.013743889518082142, + 0.019284753128886223, + -0.005512204021215439, + 0.00041636088280938566, + -0.03451894223690033, + -0.02552618458867073, + 0.022278092801570892, + 0.007566144689917564, + 0.0069802142679691315, + 0.004388109315186739, + -0.00031326577300205827, + -0.008362245745956898, + -0.022188929840922356, + -0.02222714200615883, + 0.003518766723573208, + -0.0032210249919444323, + -0.006852838210761547, + 0.004569620359688997, + 0.004655599128454924, + 0.013527349568903446, + 0.007515194360166788, + 0.005321139935404062, + -0.008368615061044693, + 0.009508631192147732, + 0.012457390315830708, + 0.01309427060186863, + -0.014087804593145847, + 0.020571252331137657, + 0.006018524058163166, + 0.020927906036376953, + -0.006636298727244139, + 0.022953186184167862, + -0.018100153654813766, + 0.003018815303221345, + -0.012298169545829296, + -0.007865479215979576, + 0.009565950371325016, + -0.02183227613568306, + 0.016036661341786385, + 0.000976816052570939, + -0.02266022190451622, + 0.011877828277647495, + -0.005177841521799564, + -0.01434255763888359, + 0.00648663192987442, + -0.009769752621650696, + 0.0010014951694756746, + 0.02211250364780426, + 0.020698629319667816, + -0.0017323159845545888, + 0.0023086932487785816, + -0.02482561580836773, + -0.0002877905499190092, + -0.008623367175459862, + 0.012915943749248981, + -0.021539311856031418, + -0.015743695199489594, + 0.02840488776564598, + -0.00019414915004745126, + 0.0039168172515928745, + -0.007043902296572924, + -0.02239273115992546, + 0.0029344286303967237, + -0.01731042191386223, + 0.018112892284989357, + -0.01638057641685009, + -0.002479058923199773, + 0.009744277223944664, + -0.009228403680026531, + 5.796611276309704e-6, + 0.001565930899232626, + 0.009648744948208332, + -0.010597697459161282, + -0.014380769804120064, + -0.002469505649060011, + -0.007362342905253172, + 0.008088387548923492, + -0.00824760738760233, + -0.0070630088448524475, + -0.007184016052633524, + 0.00259528961032629, + 0.003713015466928482, + 0.0019424866186454892, + 0.01624046266078949, + -0.0028452652040868998, + -0.025271432474255562, + -0.001848546788096428, + 0.007527932059019804, + -0.04409763216972351, + -0.000903574749827385, + -0.008814431726932526, + 0.020010797306895256, + -0.0003928758960682899, + -0.0005039320094510913, + 0.008107493631541729, + 0.032022371888160706, + 0.006301936227828264, + -0.012189899571239948, + 0.01705566979944706, + -0.00852783489972353, + 0.004961302038282156, + -0.008578785695135593, + 5.796611003461294e-5, + -0.011648551560938358, + -0.00792279839515686, + -0.0028930313419550657, + -0.02336079068481922, + -0.005913438741117716, + 0.00954684428870678, + 0.0034710008185356855, + -0.021360984072089195, + 0.02264748327434063, + 0.0003267994907218963, + -0.0060057868249714375, + -0.0007921205833554268, + 0.001621657982468605, + 0.01379483938217163, + 0.016724491491913795, + 7.597789954161271e-5, + 0.022074291482567787, + -0.0034487098455429077, + -0.005665055476129055, + -0.007082115393131971, + 0.009355779737234116, + -0.02361554279923439, + -0.016813654452562332, + -0.004598279949277639, + -0.011018038727343082, + -0.001802372862584889, + -0.025335121899843216, + 0.007865479215979576, + -0.02454538829624653, + 0.022762121632695198, + 0.003763966029509902, + 0.0027338112704455853, + -0.02185775153338909, + -0.0034710008185356855, + -0.013011476024985313, + 0.018928099423646927, + 0.0016415604623034596, + -0.01815110445022583, + 0.009636007249355316, + -0.0170684065669775, + 0.019488554447889328, + 0.019055476412177086, + 0.013501874171197414, + 0.022965924814343452, + 0.008814431726932526, + -0.017972778528928757, + 0.0005664259078912437, + -0.016291413456201553, + 0.010221937671303749, + -0.009368517436087132, + -9.816921374294907e-5, + 0.000625735439825803, + 0.010489428415894508, + 0.032404497265815735, + -8.398866339121014e-5, + -0.01732316054403782, + 0.0026876372285187244, + 0.0029758259188383818, + -0.014686472713947296, + 0.0066617741249501705, + 0.030111728236079216, + 0.0012761501129716635, + 0.00894817616790533, + -0.0014393507735803723, + 0.002286402275785804, + -0.013412711210548878, + 0.026443293318152428, + -0.003843576181679964, + 0.0004442244244273752, + 0.021386459469795227, + -0.004305314738303423, + -0.0027895381208509207, + 0.014189706183969975, + 0.009871653281152248, + -0.004821188282221556, + 0.006731831002980471, + -0.007203122600913048, + 0.012775829993188381, + -0.01596023514866829, + 0.007820896804332733, + -0.01445719599723816, + -0.01924654096364975, + 0.0012713734759017825, + 0.013603775762021542, + 0.020545776933431625, + -0.004923088941723108, + -0.004942195490002632, + 0.04763868823647499, + 0.007018427364528179, + 0.012228112667798996, + -0.007254073396325111, + 0.0016925109084695578, + -0.009655114263296127, + 0.01774350181221962, + 0.01626593805849552, + -0.0021733560133725405, + -0.013985903933644295, + -0.006375177763402462, + -0.018074680119752884, + -0.011941516771912575, + 0.005480359774082899, + 0.0010556300403550267, + -0.018787985667586327, + 0.005130075383931398, + -0.0038149163592606783, + 0.009636007249355316, + 0.020660415291786194, + -0.024112310260534286, + -0.008903594687581062, + 0.005610920488834381, + 0.00600260216742754, + -0.005747850053012371, + -0.00193771009799093, + -0.011966991238296032, + 0.028201084583997726, + 0.011062621138989925, + 0.0060057868249714375, + -0.014852061867713928, + -0.011444749310612679, + -0.021055281162261963, + 0.008279451169073582, + 0.009470419026911259, + 0.002506126184016466, + 0.007177647668868303, + -0.016418788582086563, + -0.01241917721927166, + 0.025080369785428047, + -0.010355683043599129, + 0.00989076029509306, + 0.013947690837085247, + -0.026290442794561386, + 0.0033149649389088154, + -0.023819344118237495, + -0.013349022716283798, + 0.007961010560393333, + -0.0027099282015115023, + 0.02143741026520729, + 0.006346517708152533, + -0.0181256290525198, + -0.0014369625132530928, + 0.00048283531214110553, + -0.00016369829245377332, + -0.01043210830539465, + -0.012622978538274765, + -0.0014680103631690145, + -0.007496087811887264, + 0.003728937590494752, + 0.00901823304593563, + 0.004964486230164766, + 0.003706646617501974, + 0.005308402236551046, + -0.00852146651595831, + 0.01235548872500658, + 0.004451797343790531, + -0.0033213337883353233, + -0.00804380513727665, + 0.0007917225593701005, + 0.010483059100806713, + 0.0066681429743766785, + 0.013336285948753357, + 0.009336673654615879, + -0.000500349560752511, + 0.006438865792006254, + 0.03752502053976059, + -0.0005043300334364176, + -0.006827362813055515, + 0.009495893493294716, + 0.006757305935025215, + -0.04358812794089317, + -0.00032978487433865666, + 0.005801984574645758, + -0.00387542019598186, + 0.00392955495044589, + 0.030391955748200417, + -0.015259665437042713, + -0.002413778565824032, + -0.005607736296951771, + -0.008776218630373478, + 0.009495893493294716, + 0.01029199454933405, + -0.010699599049985409, + 0.03749954700469971, + -0.015641793608665466, + 0.018240267410874367, + -0.016558902338147163, + 0.011209103278815746, + -0.016418788582086563, + 0.005308402236551046, + 0.0090628145262599, + 0.0159474965184927, + -0.0011089688632637262, + 0.011903303675353527, + 0.021450147032737732, + 0.01923380233347416, + 0.004525038413703442, + 0.0057796938344836235, + 0.0005114949308335781, + -0.006467525381594896, + -0.01495396252721548, + 0.005231976509094238, + -0.0027990913949906826, + 0.0021319587249308825, + -0.029933400452136993, + -0.001265800790861249, + -0.011724976822733879, + 0.0032767520751804113, + 0.004289392847567797, + -0.0365314856171608, + -0.0021478808484971523, + 0.01869882270693779, + -0.00199821381829679, + -0.003182812128216028, + 0.007929166778922081, + -0.010992564260959625, + -0.019883420318365097, + 0.013705676421523094, + -0.016062134876847267, + -0.008094755932688713, + 0.013896740972995758, + 0.0060057868249714375, + -0.0005688142264261842, + 0.00027783928089775145, + 0.008432302623987198, + 0.014711948111653328, + 0.006254170089960098, + -0.010113668628036976, + 0.001319935661740601, + 0.014622785151004791, + 0.006846469361335039, + -0.0021064835600554943, + -0.017705287784337997, + -0.014329819940030575, + 0.0011909672757610679, + 0.008763480931520462, + 0.022163454443216324, + -0.012113474309444427, + 0.019998058676719666, + -0.0075597758404910564, + 0.03846760466694832, + -0.01541251689195633, + 0.009648744948208332, + -0.013119745999574661, + 0.017093881964683533, + 0.001600959338247776, + 5.677195804310031e-5, + 0.00603444641456008, + 0.001179821789264679, + -0.0026271336246281862, + 0.015756431967020035, + 0.01126005407422781, + 0.01694103144109249, + 0.0028118290938436985, + 0.01803646609187126, + -9.478578249400016e-6, + 0.019743306562304497, + -0.022825811058282852, + -0.0024058176204562187, + -0.025857362896203995, + -0.0022004235070198774, + -0.019284753128886223, + -1.9000693782800226e-6, + -0.021335508674383163, + 0.008056542836129665, + 0.008260345086455345, + -0.010145512409508228, + -0.0006046387716196477, + -0.029678648337721825, + -0.025309646502137184, + 0.0033372556790709496, + -0.009024602361023426, + 0.003135046223178506, + 0.02334805205464363, + 0.006553504150360823, + -0.010667754337191582, + -0.02510584332048893, + 0.016457002609968185, + -0.002485427539795637, + -0.008922700770199299, + -0.00901823304593563, + 0.02469824068248272, + 0.011361954733729362, + 0.003021999727934599, + 0.025220483541488647, + -0.004308498930186033, + -0.016304150223731995, + -0.024112310260534286, + 0.0166480652987957, + -0.005642764735966921, + -0.020966118201613426, + 0.003195549827069044, + 0.011724976822733879, + 0.010540378279983997, + -0.004305314738303423, + 0.006967476569116116, + -0.024354325607419014, + 0.005168288480490446, + -0.002335760509595275, + -0.01351461187005043, + -0.0019759228453040123, + 0.007043902296572924, + -0.005130075383931398, + -0.013807577081024647, + -0.004693812225013971, + 0.004862585570663214, + 0.001621657982468605, + 0.02700374834239483, + 0.008241238072514534, + 0.00832403264939785, + 0.018533233553171158, + -0.008922700770199299, + 0.00839408952742815, + 0.014240656048059464, + 0.009355779737234116, + 0.02906724251806736, + 0.010941613465547562, + -0.025704512372612953, + 0.016864605247974396, + 0.009368517436087132, + 0.013349022716283798, + -0.005922992248088121, + -0.00021554436534643173, + 0.02700374834239483, + -0.0022306751925498247, + -0.008655210956931114, + 0.00491035170853138, + -0.016558902338147163, + -0.024328850209712982, + -0.010534009896218777, + 0.0003767548478208482, + 0.034136813133955, + -0.009495893493294716, + 0.0015205531381070614, + -0.004951748996973038, + 0.0001351381652057171, + 0.011973360553383827, + 0.016597116366028786, + 0.008916332386434078, + -0.017030194401741028, + 0.01950129307806492, + -0.0016367838252335787, + -0.012438283301889896, + 0.009043708443641663, + -0.006617192178964615, + 0.005588629748672247, + -0.002324615139514208, + -0.02649424411356449, + 0.016622591763734818, + 0.012221744284033775, + 0.007489718962460756, + -0.001854915521107614, + -0.013132483698427677, + -0.006680880207568407, + -0.004257548600435257, + -0.02593378908932209, + 0.0026717153377830982, + -0.01118999719619751, + 0.009597795084118843, + -0.008706161752343178, + -0.009196559898555279, + 0.013450924307107925, + -0.006375177763402462, + 0.011788665316998959, + -0.008304926566779613, + 0.009304829873144627, + 0.020966118201613426, + 0.002657385542988777, + 0.010196463204920292, + -0.013501874171197414, + -0.019080951809883118, + 0.01017098780721426, + 0.026035690680146217, + -0.03018815442919731, + -0.010642279870808125, + -0.024889305233955383, + 0.016202248632907867, + -0.01098619494587183, + 0.010897031985223293, + -0.001843770151026547, + 0.0019281568238511682, + -0.007846372202038765, + 0.013247122056782246, + -0.007018427364528179, + 0.0072349668480455875, + 0.011826877482235432, + -0.010553115978837013, + -0.008304926566779613, + -0.0051523661240935326, + -0.006992951966822147, + 0.004525038413703442, + -0.03319423273205757, + 0.03956304118037224, + -0.024239685386419296, + -0.008852643892168999, + -0.04167748615145683, + 0.01965414360165596, + -0.006534397602081299, + 0.02511858195066452, + 0.012782199308276176, + 0.020507564768195152, + -0.009769752621650696, + 0.015858333557844162, + -0.04233983904123306, + 0.016699016094207764, + 0.012228112667798996, + -0.01202431134879589, + -0.01043210830539465, + -0.005582260899245739, + 0.012521077878773212, + 0.002421739511191845, + 0.0013629250461235642, + 0.0034327879548072815, + 0.0028723326977342367, + 0.01297326385974884, + 0.008120231330394745, + 0.00790369138121605, + -0.003636589739471674, + 0.012724880129098892, + -0.002432884881272912, + -0.022736648097634315, + 0.0189663115888834, + -0.00526063609868288, + -0.0008223724435083568, + -0.0027592864353209734, + 0.00806291215121746, + -0.0021144445054233074, + -0.0008454593480564654, + -0.0017402770463377237, + 0.022622007876634598, + -0.018647871911525726, + 0.009591425769031048, + 0.01473742350935936, + -0.0016224540304392576, + 0.004063299857079983, + 0.009534106589853764, + 0.0008088386966846883, + 0.0010930468561127782, + -0.009190190583467484, + -0.01883893646299839, + -0.02797180786728859, + -0.022023340687155724, + -0.025972001254558563, + 0.02114444598555565, + -0.0029471663292497396, + 0.0160876102745533, + 0.016355101019144058, + 0.004888060502707958, + 0.009285722859203815, + -0.003074542386457324, + 0.009508631192147732, + 0.002963088219985366, + 0.0027752083260565996, + 0.011145415715873241, + 0.005604551639407873, + -0.0051651038229465485, + 0.015539892949163914, + 0.012266325764358044, + -0.0010118444915860891, + -0.019488554447889328, + 0.025296907871961594, + -0.012807674705982208, + 0.021259084343910217, + 0.015578106045722961, + -0.015488943085074425, + -0.00384039175696671, + -0.025309646502137184, + 0.012043417431414127, + -0.0052542672492563725, + -0.0013032174902036786, + -0.01962866820394993, + -0.01639331318438053, + -0.004397662356495857, + -0.008546940982341766, + 0.01571821980178356, + -0.011444749310612679, + -0.0003411293146200478, + -0.002520455978810787, + -0.0007674414664506912, + -0.008470515720546246, + -0.006286014337092638, + -0.016418788582086563, + 0.0092729851603508, + 0.00750882551074028, + 0.011164521798491478, + -0.004174754023551941, + -0.03416229039430618, + -0.011654919944703579, + -0.011476593092083931, + -0.008082018233835697, + 0.009177453815937042, + 0.008164812810719013, + 0.011349217034876347, + 0.014648260548710823, + 0.044148582965135574, + -0.014852061867713928, + 0.0052542672492563725, + -0.002615988254547119, + -0.004318052437156439, + -0.002530009252950549, + 0.008846275508403778, + 0.02173037640750408, + 0.0033977595157921314, + -0.008139337413012981, + -0.009731539525091648, + 0.006859207060188055, + -0.006018524058163166, + -0.005907069891691208, + -0.024214209988713264, + 0.013705676421523094, + 0.02184501476585865, + 0.01399864163249731, + -0.007445137482136488, + -0.008973651565611362, + -0.002459952374920249, + -0.012986000627279282, + 0.003107978729531169, + -0.009999029338359833, + -0.00831766426563263, + -0.005620473530143499, + 0.013145221397280693, + 0.00740692438557744, + -0.000371580186765641, + 0.0002075833617709577, + -0.0062764608301222324, + 0.014966700226068497, + -0.002464728895574808, + 0.0022959555499255657, + -0.015883808955550194, + -0.028583213686943054, + 0.0005568726919591427, + 0.0002971447247546166, + -0.008374983444809914, + 0.01494122575968504, + 0.014699210412800312, + 0.03153834119439125, + -0.013450924307107925, + 0.015871072188019753, + -0.008483253419399261, + -0.017985515296459198, + -0.0032035107724368572, + 0.016902819275856018, + 0.024125047028064728, + 0.0026987825985997915, + 0.008604261092841625, + 0.041015129536390305, + 0.0059038856998085976, + -0.008024699054658413, + -0.018380381166934967, + 0.0016749966889619827, + 0.015998447313904762, + -0.01803646609187126, + 0.017679812386631966, + 0.01529787853360176, + -0.009279354475438595, + -0.0035856394097208977, + -0.00975064653903246, + -0.011737714521586895, + 0.027793481945991516, + 0.0091328714042902, + -0.0020905614364892244, + -0.012584766373038292, + -0.004041009116917849, + 0.013361760415136814, + -0.007043902296572924, + -0.018405856564641, + -0.0033468089532107115, + 0.004002796486020088, + -0.019450342282652855, + -0.0054676225408911705, + -0.03969041630625725, + 0.0066617741249501705, + -0.0031971419230103493, + 0.00989712867885828, + -0.00961690116673708, + 0.021208133548498154, + 0.0029057690408080816, + 0.04993145912885666, + 0.004212967120110989, + -0.023921245709061623, + -0.020711366087198257, + 0.023309839889407158, + -0.024774666875600815, + 0.006795519031584263, + -0.003713015466928482, + -0.019972585141658783, + -0.002487019868567586, + 0.007107590790838003, + 0.014215181581676006, + -0.00797374825924635, + 0.03314328193664551, + -0.01126642245799303, + 0.014368032105267048, + 0.01371841412037611, + -0.020634939894080162, + -0.025271432474255562, + -0.02401040866971016, + -0.026774471625685692, + -0.017297685146331787, + -0.027538729831576347, + -0.007164909970015287, + 0.013591038063168526, + 0.0051651038229465485, + 0.003713015466928482, + 0.015514418482780457, + -0.004859400913119316, + 0.0071521722711622715, + 0.001275353948585689, + 0.0005222423351369798, + 0.007445137482136488, + 0.0035378732718527317, + 0.007349605206400156, + 0.0018310325685888529, + -0.00015722996613476425, + -0.01734863594174385, + -0.007005689665675163, + -0.006203219760209322, + 0.03293947875499725, + -0.007215860299766064, + -0.0029583116993308067, + -0.0034550786949694157, + -0.0028914392460137606, + 0.01962866820394993, + 0.00641975924372673, + 0.0014664182672277093, + 0.009610532782971859, + 0.0026112115010619164, + -0.006480263080447912, + 0.00039645834476687014, + 0.011215472593903542, + -0.01227906346321106, + 0.008368615061044693, + 0.010553115978837013, + -0.004165200982242823, + -0.004308498930186033, + -0.020112698897719383, + 0.008196656592190266, + -0.00018320276285521686, + 0.003119124099612236, + -0.005458069033920765, + -0.000732014945242554, + -0.015539892949163914, + 0.0027720239013433456, + 0.003163705812767148, + 0.02865963988006115, + 0.016457002609968185, + 0.010393896140158176, + 0.00894180778414011, + 0.005642764735966921, + 0.0006360847619362175, + -0.00729865487664938, + -0.010610435158014297, + -0.023258889093995094, + -0.0041429102420806885, + 0.003174851182848215, + -0.02294044941663742, + -0.012317276559770107, + -0.02223988063633442, + -0.0008279451285488904, + 0.002475874498486519, + -0.0034964759834110737, + -0.026315918192267418, + -0.01541251689195633, + 0.022456420585513115, + 0.006814625579863787, + 0.005642764735966921, + -0.0060057868249714375, + 0.0355379544198513, + -0.0011479777749627829, + -0.01966688223183155, + 0.006598086096346378, + 0.008241238072514534, + 0.022469157353043556, + -0.001987068448215723, + -0.008438671939074993, + -0.0008884488488547504, + 0.005292479880154133, + 0.015234190970659256, + -0.02141193486750126, + -0.012979632243514061, + -0.010126406326889992, + 0.0013573523610830307, + -0.00041238038102164865, + -0.0013271005591377616, + -0.014584572054445744, + -0.01649521477520466, + 0.003257645759731531, + -0.011139046400785446, + 0.004897614009678364, + 0.02332257851958275, + 0.000616182223893702, + 0.008909963071346283, + 0.012788567692041397, + -0.018049204722046852, + -0.04371550306677818, + -0.010336576960980892, + -0.00775084039196372, + -0.0010826975340023637, + -0.0013462069910019636, + 0.0011089688632637262, + -0.0170684065669775, + -0.014240656048059464, + 0.017781713977456093, + -0.026952799409627914, + -0.004388109315186739, + 0.006757305935025215, + 0.008273082785308361, + -0.006719093304127455, + 0.0014473118353635073, + -0.011591232381761074, + -0.009336673654615879, + 0.004802081733942032, + 0.0016622591065242887, + 0.004974039737135172, + 0.01720852218568325, + 0.0013477992033585906, + -0.011476593092083931, + 0.010642279870808125, + 0.008960913866758347, + -0.006012155674397945, + 0.022876761853694916, + -0.028302986174821854, + -0.0026812683790922165, + -0.027105649933218956, + 0.01090976968407631, + 0.02499120496213436, + 0.0019106426043435931, + 0.003725753165781498, + 0.027207551524043083, + -0.008336770348250866, + 0.015629056841135025, + -0.011170890182256699, + -0.016342362388968468, + -0.01036205142736435, + -0.0229022353887558, + -0.014546358957886696, + 0.024672765284776688, + -0.014520883560180664, + -0.010056349448859692, + 0.0032640143763273954, + 0.018991786986589432, + -0.008999126963317394, + -0.013769364915788174, + -0.003518766723573208, + -0.01611308567225933, + -0.00487532326951623, + 0.015654532238841057, + 0.005913438741117716, + -0.002487019868567586, + -0.009871653281152248, + 0.009508631192147732, + -0.008177550509572029, + -0.008495991118252277, + -0.013196172192692757, + -0.01610034890472889, + 0.011979728937149048, + -0.0017657522112131119, + -0.007483350113034248, + -0.016457002609968185, + 0.005929361097514629, + 0.027946332469582558, + 0.0338565856218338, + 0.00614271592348814, + -0.0014027301222085953, + 0.012731248512864113, + -0.006585348397493362, + 0.0076362015679478645, + 0.0007061416981741786, + -0.0071521722711622715, + 0.027233026921749115, + -0.00954684428870678, + -0.005846566520631313, + -0.0021048912312835455, + 0.01249560248106718, + -0.0186860840767622, + 0.0020889693405479193, + -0.007820896804332733, + 0.006992951966822147, + 0.00024022351135499775, + 0.023933982476592064, + 0.015234190970659256, + 0.00768078351393342, + -0.008967283181846142, + -0.0010078640189021826, + -0.001920195878483355, + -0.004977223929017782, + -0.0017546068411320448, + 0.006438865792006254, + -0.010043611750006676, + 0.021997865289449692, + -0.005091862753033638, + 0.0015094076516106725, + 0.00380536331795156, + 0.016609853133559227, + -0.014648260548710823, + 0.008260345086455345, + -0.004951748996973038, + 0.013692938722670078, + -0.03388206288218498, + 0.02141193486750126, + 0.0008677502046339214, + 0.02263474650681019, + -0.014546358957886696, + -0.001832624664530158, + -0.006168191321194172, + 0.01815110445022583, + -0.015527156181633472, + 0.007712627295404673, + -0.009648744948208332, + -0.014049592427909374, + 0.005706452764570713, + -0.026850897818803787, + 0.01761612482368946, + 0.0033977595157921314, + 0.014431720599532127, + -0.013170696794986725, + 0.023844819515943527, + 0.0032831209246069193, + -0.028226559981703758, + -0.00046173864393495023, + -0.00785274151712656, + 0.0029407974798232317, + -0.004391293507069349, + -0.015667269006371498, + -0.028277510777115822, + -0.000636880868114531, + 0.016418788582086563, + -0.009909866377711296, + -0.005665055476129055, + 0.006814625579863787, + 0.013272597454488277, + 0.015374304726719856, + -0.025997476652264595, + 0.0073241302743554115, + 0.01318343449383974, + 0.003525135572999716, + -0.009438574314117432, + 0.004286208190023899, + 0.004168385174125433, + 0.019552242010831833, + -0.008292188867926598, + 0.004512301180511713, + 0.028481312096118927, + 0.0016049398109316826, + -0.0167881790548563, + -0.010260150767862797, + -0.032302599400281906, + -0.02266022190451622, + -0.005961204878985882, + 0.0028277509845793247, + -0.0023580514825880527, + 0.0023086932487785816, + -0.01304332073777914, + 0.02950032241642475, + -0.022443681955337524, + -0.006008971016854048, + 0.025067631155252457, + 0.034213241189718246, + 0.027946332469582558, + -0.007617095485329628, + 0.0010405040811747313, + -0.010750548914074898, + -0.031207162886857986, + -0.010756918229162693, + 0.011228210292756557, + -0.02431611157953739, + 0.02348816581070423, + -0.016673540696501732, + -0.014444458298385143, + 0.0028150135185569525, + 0.012680298648774624, + 0.007744471542537212, + -0.018354907631874084, + -0.006719093304127455, + -0.0034327879548072815, + 0.0015109998639672995, + 0.01283315010368824, + 0.013399973511695862, + 0.014724685810506344, + 0.018367644399404526, + -0.004362633917480707, + -0.004155647940933704, + 0.008273082785308361, + -0.022290831431746483, + -0.017832664772868156, + 0.004311683587729931, + 0.010801499709486961, + 0.019208326935768127, + -0.029984351247549057, + -0.010871556587517262, + -0.028175609186291695, + -0.02552618458867073, + 0.023857558146119118, + -0.015259665437042713, + 0.004404031205922365, + 0.0016925109084695578, + -0.009355779737234116, + -0.013387235812842846, + -0.003222617320716381, + 0.020099960267543793, + -0.016457002609968185, + 0.0048052663914859295, + 0.003709831042215228, + -0.005489913281053305, + 0.008502359502017498, + -0.01789635233581066, + -0.01582012139260769, + 0.004894429352134466, + 0.015743695199489594, + -0.023029612377285957, + -0.0052542672492563725, + -0.011317373253405094, + -0.013960428535938263, + 0.025742724537849426, + -0.012680298648774624, + -0.0027417722158133984, + -0.026672571897506714, + 0.0016988797578960657, + 0.003254461335018277, + 0.00764893926680088, + -0.006091765593737364, + 0.002458360278978944, + 0.003725753165781498, + 0.0045791734009981155, + -0.010655016638338566, + 0.00975064653903246, + -0.008999126963317394, + 0.011648551560938358, + -0.02523322030901909, + -0.007451506331562996, + -0.002335760509595275, + 0.0031732588540762663, + -0.03260830044746399, + -0.021755849942564964, + -0.004964486230164766, + -0.0070693776942789555, + 0.012081630527973175, + 0.029169144108891487, + -0.0033277026377618313, + -0.02373018115758896, + 0.015348829329013824, + -0.008406827226281166, + -0.01584559679031372, + 0.008999126963317394, + 0.015654532238841057, + -0.006273276638239622, + 0.026698045432567596, + -0.00589751685038209, + -0.004582358058542013, + -0.008196656592190266, + -0.0035506109707057476, + 0.003639774164184928, + 0.0016288228798657656, + -0.0008669540984556079, + -0.0033308870624750853, + -0.010088193230330944, + 0.009534106589853764, + -0.009470419026911259, + 0.010151880793273449, + -0.017501486465334892, + 0.01242554560303688, + 0.012119842693209648, + -0.03660791367292404, + -0.013056057505309582, + -0.006528028752654791, + 0.007897322997450829, + 8.831746526993811e-5, + -0.0022386363707482815, + -0.004900798201560974, + 0.00314141483977437, + -0.01098619494587183, + 0.026545194908976555, + 0.02034197561442852, + -0.012979632243514061, + 0.015756431967020035, + -0.013247122056782246, + -0.012890469282865524, + 0.00832403264939785, + 0.016049398109316826, + 0.010260150767862797, + 0.02008722350001335, + -0.003556979587301612, + -0.0033595466520637274, + -0.0014743792125955224, + 0.010858818888664246, + -0.0065726106986403465, + 0.016431527212262154, + -0.006852838210761547, + 0.003693909151479602, + -0.014240656048059464, + -0.009521368891000748, + -0.01680091768503189, + 0.006598086096346378, + 0.011603969149291515, + 0.004200229421257973, + 0.006432496942579746, + 0.003601561300456524, + -0.009355779737234116, + 0.016278674826025963, + 0.015234190970659256, + 0.003945476841181517, + -0.03125811368227005, + -0.01371841412037611, + -0.019896158948540688, + 0.00915197841823101, + -0.00968695804476738, + -0.012979632243514061, + 0.006515291519463062, + 0.022685697302222252, + -0.014113279990851879, + -0.0005640376475639641, + 0.004677889868617058, + 0.019463079050183296, + -0.018049204722046852, + 0.020940642803907394, + -0.026417817920446396, + -0.0039709522388875484, + -0.020023534074425697, + 0.026112115010619164, + -0.003029960673302412, + -0.002939205151051283, + -0.00010787169594550505, + 0.008126599714159966, + 0.012177162803709507, + 0.006967476569116116, + -0.03477369621396065, + 0.019055476412177086, + -0.022354518994688988, + 0.006114056333899498, + 0.002550707897171378, + 0.0076425704173743725, + 0.011113571003079414, + 0.02359006740152836, + -0.002456767950206995, + -0.007311392575502396, + -0.04379192739725113, + -0.016062134876847267, + 0.00740692438557744, + 0.01425339374691248, + 0.0056555019691586494, + 0.0020969302859157324, + 0.011642182245850563, + -0.023526379838585854, + -0.00880806241184473, + 0.011139046400785446, + 0.005114153493195772, + 0.0005103008006699383, + -0.009858915582299232, + 0.0007853537099435925, + -0.001869245315901935, + 0.005388012155890465, + -0.02048208937048912, + 0.00460146414116025, + -0.003748043905943632, + -0.0028755171224474907, + -0.020838743075728416, + 0.01487753726541996, + -0.0070566399954259396, + -0.0011280752951279283, + -0.0017450535669922829, + -0.01200520433485508 + ], + "aaac39b2-41ce-49a5-ac24-516f873a8dc7": [ + 0.018225956708192825, + -0.007095601875334978, + -0.015974590554833412, + -0.02828122116625309, + -0.0680469498038292, + -0.02535950392484665, + 0.013293186202645302, + 0.03953805938363075, + 0.03258158639073372, + 0.0470004566013813, + -0.0013968279818072915, + 0.018150068819522858, + 0.00517624756321311, + 0.02683933451771736, + -0.041612353175878525, + 0.0007833936251699924, + -0.002368362620472908, + 0.04009457677602768, + 0.018542161211371422, + 0.024322357028722763, + 0.04813878610730171, + -0.027117593213915825, + -0.01183865126222372, + 0.031215587630867958, + -0.006501139607280493, + -0.024474134668707848, + 0.02308283932507038, + -0.02415793016552925, + -0.016429923474788666, + -0.018124772235751152, + 0.031645625829696655, + 0.008341442793607712, + 0.02279193326830864, + -0.0017011737218126655, + 0.0009233136079274118, + -0.031342070549726486, + -0.048644714057445526, + 0.011592012830078602, + 0.010396763682365417, + 0.008120100013911724, + -0.010371468029916286, + 0.007139869965612888, + 0.051275525242090225, + 0.019794326275587082, + -0.03693254292011261, + -0.0006893231766298413, + 0.007139869965612888, + -0.002137534087523818, + 0.02608044631779194, + -0.0015612536808475852, + -0.0009691630839370191, + 0.03220214322209358, + -0.008638673461973667, + 0.03655309975147247, + 0.001080624759197235, + -0.027370555326342583, + 0.0054260483011603355, + 0.08529900014400482, + 0.03847561404109001, + -0.023462284356355667, + -0.01047265250235796, + -0.0006486119818873703, + 0.006314579397439957, + 0.01998404785990715, + -0.016910551115870476, + -0.015089220367372036, + -0.0022418813314288855, + 0.01842832751572132, + -0.019971398636698723, + -0.004224475938826799, + -0.009056062437593937, + 0.012325604446232319, + 0.000832405115943402, + 0.06248176842927933, + -0.01849156804382801, + -0.016657589003443718, + 0.00927740428596735, + -0.015468664467334747, + 0.0022545293904840946, + 0.03394758328795433, + -0.035566546022892, + -0.002441089367493987, + 0.01783386431634426, + 0.022994302213191986, + 0.06602324545383453, + 0.01796034723520279, + -0.026282817125320435, + -0.017871810123324394, + -0.07821604609489441, + -0.025081245228648186, + 0.019022788852453232, + 0.07133545726537704, + -0.013242593966424465, + -0.015063924714922905, + -0.020894713699817657, + 0.009384913370013237, + 0.02739585191011429, + -0.0012205446837469935, + -0.013912944123148918, + 0.005631580483168364, + 0.0038197357207536697, + 0.004110642708837986, + -0.043281905353069305, + -0.015114516951143742, + 0.03311280906200409, + -0.026282817125320435, + 0.008954877033829689, + -0.01574692316353321, + -0.0397404283285141, + 0.0048410724848508835, + -0.0037691432517021894, + -0.009599931538105011, + -0.020629102364182472, + 0.0012237067567184567, + 0.02040143497288227, + -0.004350956995040178, + -0.007133546285331249, + -0.018238605931401253, + 0.0193263441324234, + -0.015203054063022137, + 0.05352689325809479, + 0.017100272700190544, + 0.047455787658691406, + -0.0003203534579370171, + 0.011566716246306896, + 0.0069627962075173855, + 0.015316886827349663, + 0.0170117374509573, + 0.015772219747304916, + 0.017998291179537773, + 0.02386702410876751, + -0.03369462117552757, + -0.018516864627599716, + -0.016316089779138565, + 0.03718550503253937, + 0.014545351266860962, + 0.02977370098233223, + 0.051756154745817184, + 0.00044307985808700323, + 0.03065907023847103, + -0.04598860442638397, + 0.013824407942593098, + -0.01587340421974659, + -0.0105928098782897, + -0.01166790071874857, + 0.01868128962814808, + -0.046747494488954544, + 0.02630811370909214, + -0.01396353729069233, + 0.009644200094044209, + -0.024372948333621025, + -0.016328737139701843, + 0.017935050651431084, + 0.005460830871015787, + -0.001411847653798759, + 0.014431517571210861, + -0.005938297603279352, + 0.004663998261094093, + 0.033315178006887436, + -0.04836645349860191, + -0.016088422387838364, + -0.03184799477458, + 0.0010055263992398977, + -0.033972881734371185, + 0.0072663514874875546, + 0.02661166898906231, + 0.026940518990159035, + 0.0016616482753306627, + -0.039108023047447205, + 0.003962027374655008, + 0.0540328174829483, + -0.01641727425158024, + -0.02160300873219967, + -0.004818938206881285, + 0.029571332037448883, + -0.03048199601471424, + 0.024246467277407646, + 0.01772003248333931, + 0.011863946914672852, + -0.03498473018407822, + -0.012844176962971687, + -0.016442570835351944, + -0.016834663227200508, + -0.005381779745221138, + -0.040474019944667816, + 0.008366738446056843, + 0.020957954227924347, + 0.03478236123919487, + 0.006494815461337566, + 0.07153782993555069, + 0.02415793016552925, + -0.03455469384789467, + 0.028711257502436638, + 0.04032224416732788, + -0.00894855335354805, + -0.04629215970635414, + -0.024486782029271126, + 0.021084435284137726, + -0.013647333718836308, + 0.0021470203064382076, + -0.031595032662153244, + -0.027168186381459236, + -0.04490086808800697, + 0.01825125329196453, + -0.01341966725885868, + 0.071133092045784, + -0.013229945674538612, + 0.03167092055082321, + -0.012850501574575901, + 0.012477381154894829, + 0.04211827740073204, + -0.024006152525544167, + -0.010156449861824512, + -0.02876185066998005, + -0.042750682681798935, + 0.02028760313987732, + 0.007633147295564413, + -0.02124886028468609, + 0.018036235123872757, + -0.00877147912979126, + -0.00048023374984040856, + -0.01390029676258564, + 0.039285097271203995, + -0.04669690132141113, + -0.02343698777258396, + -0.010162773542106152, + -0.04378782957792282, + -0.003667958080768585, + -0.035111211240291595, + -0.006235528737306595, + 0.02410733886063099, + -0.006621296983212233, + 0.006017348263412714, + -0.03700843080878258, + 0.004341471008956432, + 0.017315292730927467, + 0.024980058893561363, + 0.007601527031511068, + 0.01183865126222372, + -0.0450020506978035, + 0.07857019454240799, + 0.017024384811520576, + -0.022172173485159874, + -0.03597128391265869, + 0.01897219754755497, + 0.025220373645424843, + -0.0467727892100811, + 0.02625752054154873, + 0.027193482965230942, + 0.036173656582832336, + 0.022753987461328506, + -0.006602324545383453, + 0.004243447910994291, + 0.01142126228660345, + -0.008575432933866978, + 0.011952484026551247, + 0.028610073029994965, + -0.010820476338267326, + 0.011882919818162918, + -0.006153315771371126, + 0.00996672734618187, + -0.031468551605939865, + -0.03232862427830696, + -0.020085232332348824, + 0.011111383326351643, + -0.002909070113673806, + 0.021640952676534653, + -0.0579790323972702, + 0.0005454506608657539, + 0.027117593213915825, + 0.011079763062298298, + 0.024246467277407646, + 0.013305834494531155, + 0.012483705766499043, + -0.03667958080768585, + -0.005520909558981657, + 0.02964721992611885, + 0.003924082964658737, + -0.0028173711616545916, + -0.021640952676534653, + -0.01321729738265276, + -0.028053555637598038, + 0.019478121772408485, + 0.020793527364730835, + -0.028964221477508545, + 0.012540622614324093, + -0.007430776953697205, + 0.004192855674773455, + -0.03824795037508011, + -0.05453874170780182, + -0.016025181859731674, + -0.013837055303156376, + -0.009119302965700626, + 0.009296376258134842, + -0.022690746933221817, + 0.0008181760204024613, + 0.006842638831585646, + -0.03197447583079338, + 0.004945419263094664, + -0.017226755619049072, + -0.011168300174176693, + -0.03905742987990379, + -0.0038987863808870316, + 0.003690092358738184, + 0.007437101099640131, + -0.01563308946788311, + 0.03551595285534859, + -0.015708979219198227, + -0.012964334338903427, + 0.01315405685454607, + 0.024499431252479553, + -0.014279739931225777, + 0.014153258875012398, + -0.030178440734744072, + 0.005024470388889313, + 0.018390383571386337, + -0.014482110738754272, + -0.021995101124048233, + -0.03521239757537842, + -0.03280925378203392, + 0.007487693801522255, + -0.0022940547205507755, + -0.03513650968670845, + 0.005931973457336426, + 0.018719233572483063, + -0.016695532947778702, + 0.01046632882207632, + 0.010226014070212841, + 0.028230629861354828, + -0.029444849118590355, + 0.013938240706920624, + 0.003446615766733885, + -0.03306221589446068, + -0.02911599911749363, + 0.017214106395840645, + -0.06971649825572968, + -0.03240451216697693, + -0.010308227501809597, + 0.0004565184935927391, + 0.02613103948533535, + -0.015139813534915447, + -0.003946216776967049, + -0.03536417707800865, + 0.014633888378739357, + -0.008733534254133701, + -0.00517308572307229, + -0.00216283043846488, + -0.02160300873219967, + 0.021881267428398132, + 0.018048884347081184, + 0.0005569130298681557, + -0.015203054063022137, + 0.010175421833992004, + -0.0007660024566575885, + 0.011408614926040173, + 0.03404876962304115, + -0.0423712395131588, + -0.03048199601471424, + -0.0019462312338873744, + -0.014886850491166115, + -0.03963924199342728, + -0.02850888855755329, + 0.0005837903008796275, + -0.023158729076385498, + -0.005998376291245222, + 0.028382407501339912, + 0.027674110606312752, + -0.014684480614960194, + 0.04920123144984245, + 0.027294667437672615, + -0.040904056280851364, + 0.017454421147704124, + -0.016252849251031876, + -0.02810414880514145, + -0.01271137222647667, + -0.010308227501809597, + 0.03346695378422737, + 0.000542683876119554, + -0.03657839447259903, + -0.007380184717476368, + -0.02524567022919655, + 0.027370555326342583, + -0.051756154745817184, + -0.003987323492765427, + 0.04206768423318863, + -0.021286804229021072, + 0.01974373310804367, + -0.011446558870375156, + 0.0014964319998398423, + -0.012565918266773224, + -0.0010505854152143002, + -0.005792844109237194, + 0.02057850919663906, + -0.010542217642068863, + 0.004739887081086636, + 0.008158044889569283, + -0.014608591794967651, + 0.010276606306433678, + -0.002407887950539589, + -0.0035066944546997547, + -0.0004715381364803761, + 0.01592399738729, + 0.006396792363375425, + 0.041258204728364944, + 0.0303049236536026, + 0.008448951877653599, + -0.021514471620321274, + 0.001042680349200964, + -0.0037185505498200655, + 0.01985756680369377, + -0.003016579430550337, + 0.0009501908789388835, + 0.02399350516498089, + 0.015974590554833412, + 0.019579308107495308, + 0.017884457483887672, + 0.020793527364730835, + 0.01836508698761463, + -0.019478121772408485, + 0.023006951436400414, + 0.013407018966972828, + 0.03048199601471424, + -0.01682201400399208, + 0.004091670271009207, + -0.03154443949460983, + -0.005704307463020086, + -0.008803099393844604, + 0.04517912492156029, + -0.044420238584280014, + 0.023133432492613792, + 0.0035509627778083086, + 0.03220214322209358, + -0.001656905165873468, + -0.03592069447040558, + 0.02608044631779194, + -0.02863536961376667, + 0.029546035453677177, + -0.012673427350819111, + -0.017264699563384056, + -0.018630698323249817, + 0.00015335858915932477, + 0.03508591651916504, + 0.02792707458138466, + 0.017985641956329346, + 0.026105742901563644, + -0.01993345469236374, + -0.05484229698777199, + 0.0008245000499300659, + -0.0021074949763715267, + 0.029141293838620186, + -0.03566772863268852, + 0.0274464450776577, + -0.0045280312187969685, + 0.0015351669862866402, + -0.01449475809931755, + 0.016505811363458633, + 0.015848109498620033, + 0.0023335802834481, + -0.00597940431907773, + -0.008550136350095272, + -0.049783043563365936, + -0.013407018966972828, + 0.04290246218442917, + -0.0006379401311278343, + 0.03258158639073372, + 0.003389699151739478, + -0.029014812782406807, + 0.003046618541702628, + -0.009226812049746513, + 0.0057390895672142506, + -0.04254831373691559, + 0.02982429414987564, + -0.04027165099978447, + -0.025018004700541496, + -0.0009881352307274938, + 0.015392775647342205, + -0.013052871450781822, + 0.017555605620145798, + 0.013571444898843765, + -0.020856767892837524, + 0.00945447850972414, + -0.010131153278052807, + -0.06577028334140778, + -0.005375455599278212, + 0.012837853282690048, + 0.01627814583480358, + -0.04431905224919319, + -0.006558055989444256, + 0.0059635937213897705, + -0.024537375196814537, + 0.01292006578296423, + 0.02314607985317707, + 0.00957463588565588, + -0.01354614831507206, + 0.0033201344776898623, + -0.003905110526829958, + 0.014608591794967651, + -0.05332452058792114, + -0.019427530467510223, + -0.007873461581766605, + 0.02016112208366394, + -0.01071296725422144, + 0.01646786741912365, + 0.012237067334353924, + -0.004904313012957573, + 0.011414938606321812, + -0.0030134173575788736, + -0.02618163265287876, + 0.018934251740574837, + 0.028028259053826332, + 0.013849703595042229, + 0.021312100812792778, + -0.024562671780586243, + 0.003630013670772314, + -0.009075034409761429, + 0.023221969604492188, + -0.007487693801522255, + 0.0013802273897454143, + 0.021615656092762947, + -0.03526299074292183, + 0.008113776333630085, + 0.005631580483168364, + 0.010131153278052807, + 0.024259116500616074, + -0.0013549310388043523, + -0.01479831337928772, + -0.05651184916496277, + 4.789985541719943e-5, + 0.01235090009868145, + -0.0010031549027189612, + -0.01629079319536686, + 0.0038165736477822065, + -0.006652917247265577, + 0.004657674580812454, + -0.004720915108919144, + -0.006842638831585646, + -0.014052074402570724, + 0.023765839636325836, + 0.021995101124048233, + 0.022564265877008438, + -0.00790508184581995, + 0.03506062179803848, + 0.029697813093662262, + -0.01434298139065504, + 0.04945419356226921, + 0.030886737629771233, + -0.021729489788413048, + 0.05954740196466446, + 0.0032379215117543936, + -0.010029967874288559, + -0.0047904797829687595, + -0.014216499403119087, + -0.012243391014635563, + -0.00865132175385952, + -0.011756437830626965, + -0.05125022679567337, + 0.01831449382007122, + 0.009821274317800999, + -0.021451231092214584, + 0.010852096602320671, + 0.008657646365463734, + 0.022273359820246696, + 0.008050535805523396, + 0.011914540082216263, + -0.02696581557393074, + -0.0017486041178926826, + -0.02863536961376667, + 0.035642433911561966, + -0.03989220783114433, + -0.00529324309900403, + -0.006260824855417013, + 0.01071296725422144, + 0.04927711933851242, + 0.006646593101322651, + -0.04239653795957565, + 0.002442670287564397, + -0.013356426730751991, + 0.010573837906122208, + 0.03000136837363243, + -0.029141293838620186, + 0.005331187509000301, + -0.0313926637172699, + 0.0017312129493802786, + -0.03789380192756653, + -0.019844917580485344, + 0.022956358268857002, + -0.024625912308692932, + -0.03237921744585037, + -0.007095601875334978, + 0.036603692919015884, + 0.0009494003606960177, + 0.02934366464614868, + 0.027522332966327667, + -0.012053669430315495, + -0.015025979839265347, + 0.01682201400399208, + -0.029672516509890556, + 0.0016632293118163943, + 0.008012590929865837, + 0.01836508698761463, + -0.002093265764415264, + 0.004812614060938358, + 0.00330432434566319, + -0.033745214343070984, + 0.0170117374509573, + -0.016986440867185593, + 0.010276606306433678, + 0.011320077814161777, + -0.023424338549375534, + 0.0015636252937838435, + 0.01449475809931755, + -0.023487579077482224, + 0.024246467277407646, + 0.0028458295855671167, + -0.0026402974035590887, + 0.00832247082144022, + -0.008727210573852062, + 0.016923200339078903, + -0.0010007834061980247, + 0.004439494106918573, + 0.010605458170175552, + -0.02529626339673996, + 0.03544006496667862, + -0.03698313608765602, + 0.03000136837363243, + -0.020211713388562202, + -0.027067001909017563, + -0.015886053442955017, + -0.0023209319915622473, + 0.0012940618908032775, + -0.017644142732024193, + -0.008455275557935238, + -0.01987021416425705, + -0.005900353193283081, + -0.00029861446819268167, + 0.008841044269502163, + -0.011623633094131947, + 0.022994302213191986, + -0.007418129127472639, + -0.01801093854010105, + 0.0011683711782097816, + 0.013103463687002659, + 0.03837443143129349, + 0.01699908822774887, + -0.00557782594114542, + 0.018276549875736237, + -0.04338309168815613, + 0.00808847974985838, + 0.041561760008335114, + -0.01390029676258564, + 0.009745385497808456, + -0.01670818217098713, + 0.014077370055019855, + -0.010858421213924885, + -0.029546035453677177, + -0.007342240307480097, + 0.025523928925395012, + 0.012312956154346466, + -0.010681346990168095, + -0.0014339819317683578, + 0.0022165849804878235, + -0.01554455328732729, + 0.02797766588628292, + 0.01592399738729, + 0.02990018203854561, + 0.03237921744585037, + 0.0012885284377261996, + 0.016025181859731674, + 0.006975444499403238, + 0.017580902203917503, + -0.015886053442955017, + -0.03113969974219799, + 0.02863536961376667, + -0.003554124850779772, + 0.008366738446056843, + -0.013369075022637844, + -0.018478920683264732, + -0.009625228121876717, + 0.01396353729069233, + -0.018061531707644463, + -0.02290576510131359, + -0.004341471008956432, + -0.013369075022637844, + 0.0048505584709346294, + 0.032783955335617065, + -0.014254444278776646, + 0.0303049236536026, + 0.03465588018298149, + -0.026384001597762108, + -0.036072470247745514, + -0.0020410921424627304, + 0.007860813289880753, + -0.009795977734029293, + 0.017884457483887672, + 0.0023873348254710436, + -0.0049169608391821384, + -0.0013936660252511501, + 0.02166624926030636, + 0.038981541991233826, + -0.021982451900839806, + -0.0036394998896867037, + 0.004961229395121336, + -0.0018197499448433518, + -0.03167092055082321, + 0.03961394727230072, + 0.04343368485569954, + -0.01641727425158024, + -0.0037470089737325907, + -0.0054260483011603355, + 0.003437129780650139, + 0.0070703052915632725, + 0.005675849039107561, + -0.026358705013990402, + 0.0017659952864050865, + 0.01142126228660345, + -0.006969120353460312, + 0.015253646299242973, + -0.0034276435617357492, + -0.002626068191602826, + 0.002784169977530837, + 0.015430720522999763, + 0.01115565188229084, + -0.01831449382007122, + -0.04988422989845276, + -0.02333580143749714, + 0.005957270041108131, + -0.02165360003709793, + -0.019642548635601997, + 0.009644200094044209, + -0.004935933277010918, + 0.02995077520608902, + -0.018162716180086136, + -0.012116909958422184, + 0.01292006578296423, + -0.02762351930141449, + -0.0004466371319722384, + -0.03501002863049507, + 0.006156478077173233, + 0.020793527364730835, + -0.025878077372908592, + 0.002698794938623905, + -0.022981654852628708, + 0.01635403372347355, + -0.039588652551174164, + 0.020730286836624146, + 0.02368994988501072, + 0.02165360003709793, + -0.017024384811520576, + -0.013267889618873596, + 0.012123233638703823, + 0.0384250245988369, + -0.010927985422313213, + 0.05463992804288864, + 0.016746126115322113, + -0.003617365611717105, + -0.028863035142421722, + -0.007550934329628944, + 0.005536719691008329, + -0.03521239757537842, + 0.013735870830714703, + -0.011566716246306896, + 0.012129558250308037, + -0.026105742901563644, + -0.005976242013275623, + 0.014924795366823673, + 0.005524071399122477, + -0.04085346311330795, + 0.01927575282752514, + 0.02040143497288227, + -0.03592069447040558, + 0.015190405771136284, + 0.03933568671345711, + 0.007784924935549498, + 0.006842638831585646, + -0.028483591973781586, + 0.013558796606957912, + 0.02828122116625309, + 0.011756437830626965, + -0.016126368194818497, + 0.0037311988417059183, + -0.026814037933945656, + -0.03953805938363075, + -0.013432315550744534, + -0.03807087615132332, + 0.007980970665812492, + -0.02518242970108986, + 0.01718880981206894, + 0.005837112665176392, + -0.033846400678157806, + 0.016391977667808533, + -0.009207840077579021, + -0.013242593966424465, + -0.05054193362593651, + 0.00757623091340065, + -0.0009367522434331477, + 0.0006355685763992369, + -0.002540693385526538, + -0.022627506405115128, + -0.030734959989786148, + 0.013773814775049686, + 0.01016909722238779, + -0.021312100812792778, + 0.03925979882478714, + 0.04487556964159012, + -0.0026956330984830856, + -0.01993345469236374, + -0.00551774725317955, + -0.0070513333193957806, + 0.030102552846074104, + 0.0010324036702513695, + 0.020237009972333908, + 0.01605047844350338, + 0.010207042098045349, + 0.02576424367725849, + -0.0014497920637950301, + 0.008240257389843464, + 0.01598723791539669, + 0.0004909056005999446, + 0.015101868659257889, + -0.021944507956504822, + -0.004249772056937218, + -0.017555605620145798, + -0.0034276435617357492, + 0.01058648619800806, + -0.03250569850206375, + -0.0018213308649137616, + 0.003547800937667489, + -0.014317684806883335, + 0.03043140470981598, + 0.03172151371836662, + 0.010946957394480705, + -0.01598723791539669, + -0.009701116941869259, + 0.031240884214639664, + -0.015898700803518295, + 0.010567513294517994, + -0.04720282554626465, + 0.013065519742667675, + 0.006216556765139103, + -0.0027272533625364304, + 0.021489175036549568, + -0.04464790225028992, + -0.018820419907569885, + -0.011206244118511677, + 0.014127962291240692, + 0.021261509507894516, + 0.012338251806795597, + 0.005992052145302296, + -0.002150182379409671, + 0.04135939106345177, + -0.011528771370649338, + -0.008562784641981125, + -0.014052074402570724, + 0.005811816547065973, + -0.0320756621658802, + 0.030810847878456116, + -0.02242513746023178, + -0.020376140251755714, + 0.016619645059108734, + 0.005764385685324669, + 0.04915063828229904, + -0.0056821731850504875, + 0.004249772056937218, + 0.008524840697646141, + -0.0037217126227915287, + -0.017226755619049072, + -0.03205036371946335, + 0.04386372119188309, + -0.01968049257993698, + 0.024904171004891396, + 0.006975444499403238, + 0.032783955335617065, + 0.01345761213451624, + -0.022286007180809975, + -0.021337397396564484, + -0.025561872869729996, + -0.025030652061104774, + 0.03131677210330963, + -0.038930948823690414, + -0.009207840077579021, + 0.016910551115870476, + 0.011105059646070004, + 0.037084322422742844, + -0.0010632335906848311, + -0.03288514167070389, + 0.008284525945782661, + 0.014785666018724442, + 0.002703538164496422, + 0.008259229362010956, + -0.0022134229075163603, + -0.007089277729392052, + 0.008613377809524536, + -0.0005652133841067553, + -0.01605047844350338, + -0.018124772235751152, + -0.020553212612867355, + 0.008897960186004639, + -0.010814152657985687, + -0.0002960453275591135, + -0.004003133624792099, + -0.003449777839705348, + -0.027825888246297836, + -0.020300250500440598, + -0.02666226029396057, + -0.0075319623574614525, + -0.02929307147860527, + 0.01992080733180046, + -0.004537517204880714, + -0.011920863762497902, + 0.043458979576826096, + 0.022273359820246696, + 0.006431574933230877, + -0.016859959810972214, + 0.013520852662622929, + 0.023297857493162155, + -0.007671091705560684, + 0.04120761156082153, + 0.026636963710188866, + 0.017935050651431084, + -0.01980697363615036, + 0.006245014723390341, + 0.020502621307969093, + 0.05297037586569786, + 0.005530395545065403, + -0.028432998806238174, + -0.003620527684688568, + 0.025726299732923508, + 0.0037944393698126078, + 0.005223678424954414, + 0.027876481413841248, + -0.01530423853546381, + 0.017682088539004326, + 0.0023177701514214277, + -0.020034639164805412, + 0.010074236430227757, + 0.009524042718112469, + -0.014874202199280262, + 0.021021194756031036, + -0.008815747685730457, + -0.012369872070848942, + -0.004015781916677952, + 0.019579308107495308, + 0.027117593213915825, + -0.01016909722238779, + -0.0030750769656151533, + 0.0006865563918836415, + 0.00015839807747397572, + 0.03885506093502045, + 0.012553269974887371, + 0.028711257502436638, + 0.03817205876111984, + 0.01861804910004139, + -0.018946900963783264, + 0.03488354757428169, + -0.009631551802158356, + -0.011446558870375156, + 0.01640462689101696, + 0.030026663094758987, + 0.015354831703007221, + -0.009890838526189327, + 0.008607053197920322, + -0.035718321800231934, + -0.019376937299966812, + 0.0022877308074384928, + -0.0018908956553786993, + -0.005571501795202494, + -0.007557258475571871, + -0.020237009972333908, + -0.004088508430868387, + -0.018327143043279648, + -0.0004814194981008768, + -0.010415736585855484, + -0.002879031002521515, + -0.020565861836075783, + -0.009612579829990864, + 0.00387032818980515, + -0.017049681395292282, + -0.007595202885568142, + 0.014507406391203403, + -0.020477324724197388, + 0.00757623091340065, + 0.018048884347081184, + -0.013584093190729618, + 0.007291647605597973, + -0.011136679910123348, + 0.009998347610235214, + 0.0026592696085572243, + -0.015443368814885616, + 0.006924851797521114, + 0.012015724554657936, + 0.021906564012169838, + -0.029925478622317314, + -0.0032600557897239923, + 0.0026655937545001507, + -0.0026102580595761538, + -0.0030497806146740913, + -0.026687556877732277, + -0.0151524618268013, + 0.005470316857099533, + -0.007342240307480097, + -0.006055292673408985, + 0.00858808122575283, + 0.016809366643428802, + 0.031291477382183075, + -0.006254501175135374, + 0.02057850919663906, + -0.02184332348406315, + 0.00012440622958820313, + -0.018352437764406204, + -0.017707383260130882, + -0.006969120353460312, + -0.012964334338903427, + 0.02367730252444744, + 0.013596741482615471, + 0.052059710025787354, + 0.004031592048704624, + 0.009309024550020695, + -0.006466357037425041, + -0.01235090009868145, + 0.0036394998896867037, + -0.02511918917298317, + -0.027345260605216026, + -0.0004648188187275082, + 2.2776517653255723e-5, + -0.012730344198644161, + -0.0011604659957811236, + 6.378412945196033e-5, + 0.019237807020545006, + 0.029520738869905472, + 0.005764385685324669, + -0.004363605286926031, + -0.0031003730837255716, + 0.014621240086853504, + -0.011933512054383755, + 0.016455218195915222, + -0.02009788155555725, + 0.026384001597762108, + -0.06926117092370987, + -0.00017213316459674388, + -0.002996026072651148, + 0.01148450281471014, + -0.011750114150345325, + -0.010807828046381474, + -7.035522867226973e-5, + -0.0028679638635367155, + -0.0067983707413077354, + 0.010320874862372875, + 0.021274156868457794, + -0.01802358776330948, + 0.031063809990882874, + 0.013887648470699787, + 0.0012908999342471361, + -0.008569109253585339, + 0.016493164002895355, + 0.01985756680369377, + 0.01659434847533703, + -0.019427530467510223, + 0.006289283279329538, + -0.021691545844078064, + 0.03144325315952301, + -0.006175450049340725, + 0.011826002970337868, + 0.05828258767724037, + -0.0046924566850066185, + 0.019718436524271965, + 0.0019383261678740382, + 0.0046355403028428555, + 0.014697128906846046, + 0.008246582001447678, + -0.02780059352517128, + -0.004455304238945246, + -0.005337511654943228, + -0.0031983961816877127, + 0.0069058798253536224, + 0.022412488237023354, + 0.009644200094044209, + -0.003800763515755534, + 0.009416533634066582, + 0.0147097771987319, + -7.76180240791291e-5, + 0.010921661742031574, + -0.017074977979063988, + -0.0045280312187969685, + 0.00733591616153717, + 0.008056859485805035, + 0.03323929011821747, + 0.03184799477458, + 0.01718880981206894, + -0.013571444898843765, + 0.033972881734371185, + -0.02343698777258396, + 0.014140610583126545, + 0.023955561220645905, + -0.005701145157217979, + -0.008746182546019554, + -0.0008845786796882749, + -0.004705104976892471, + 0.06819872558116913, + 0.013305834494531155, + 0.008796775713562965, + 0.012565918266773224, + -0.006172288209199905, + -0.002763616619631648, + 0.0021359531674534082, + 0.006956472061574459, + 0.019781677052378654, + 0.02565040998160839, + -0.0454573854804039, + 0.024663856253027916, + 0.0016363520408049226, + 0.022096285596489906, + 0.00660864869132638, + -0.0009003888699226081, + 0.01627814583480358, + 0.0010387278161942959, + -0.021312100812792778, + 0.005195220001041889, + -0.005767547991126776, + -0.0053280252031981945, + 0.007829193025827408, + -0.007019713055342436, + 0.002694051945582032, + -0.02124886028468609, + -0.0002960453275591135, + -0.0025691515766084194, + -0.02035084366798401, + -0.005625256337225437, + 0.006124857813119888, + -0.0017154028173536062, + 0.013824407942593098, + -0.0029169751796871424, + -0.016139015555381775, + 0.0018466272158548236, + -0.00016976163897197694, + -0.02117297239601612, + -0.0012837853282690048, + -0.013672630302608013, + 0.00239365897141397, + -0.029090702533721924, + -0.020831473171710968, + 0.00517308572307229, + -0.017795920372009277, + 0.007386508863419294, + -0.0009106654324568808, + 0.02661166898906231, + -0.007063981145620346, + -0.0029422715306282043, + -0.009245784021914005, + 0.0008988078334368765, + -0.005214191973209381, + -0.024815633893013, + -0.022033045068383217, + 0.013508204370737076, + 0.007765952497720718, + -0.005388103891164064, + -0.007329592015594244, + 0.007291647605597973, + 0.020603805780410767, + 0.02184332348406315, + -0.004540679045021534, + -0.03690724819898605, + -0.030507292598485947, + 0.01658170111477375, + 0.005814978387206793, + -0.03473176807165146, + -0.014823609963059425, + 0.02124886028468609, + 0.01297698263078928, + 0.002611839212477207, + -0.00024169788230210543, + 0.033972881734371185, + 0.0053280252031981945, + -0.01568368263542652, + 0.015582498162984848, + 8.562191942473873e-5, + -0.0012814138317480683, + -0.04955537989735603, + -0.023108135908842087, + 0.0027999801095575094, + -0.008739858865737915, + 0.020793527364730835, + -0.010921661742031574, + -0.0012980144238099456, + 0.005767547991126776, + -0.005656876601278782, + 0.0007114573963917792, + -0.016670236364006996, + -0.013533500954508781, + 0.005214191973209381, + 0.010327199473977089, + 0.013267889618873596, + -0.00870823860168457, + -0.0019082868238911033, + -0.008796775713562965, + 0.00039960190770216286, + 0.0016379329608753324, + -0.012458409182727337, + -0.003800763515755534, + -0.007045009173452854, + 0.018112124875187874, + -0.04194120317697525, + 0.013192000798881054, + -0.007443425245583057, + -0.0309626255184412, + 0.018580105155706406, + -0.030026663094758987, + -0.02422117069363594, + -0.0027098620776087046, + -0.01622755266726017, + -0.004847396165132523, + -0.0031936531886458397, + 0.013862351886928082, + 0.008404683321714401, + 0.008739858865737915, + 0.00660864869132638, + 0.022108932957053185, + -0.026055149734020233, + -0.016303440555930138, + 0.008600729517638683, + -0.0021470203064382076, + 0.00984656997025013, + -0.003106697229668498, + -0.020009344443678856, + 0.01434298139065504, + 0.00545766856521368, + -0.02571365050971508, + -0.025485984981060028, + 0.010339847765862942, + -0.011876595206558704, + 0.004812614060938358, + 0.025738947093486786, + 0.004452142398804426, + 0.0011422843672335148, + 0.003484560176730156, + 0.005195220001041889, + -0.023778486996889114, + -0.00802523922175169, + -0.008214961737394333, + -0.013470259495079517, + 0.0005968337063677609, + 0.014886850491166115, + -0.007443425245583057, + 0.0331634022295475, + 0.00047390966210514307, + 0.009309024550020695, + 0.006665565073490143, + -0.025663059204816818, + -0.004888502880930901, + -0.0006071103271096945, + -0.030937328934669495, + -0.0014387249248102307, + -0.01754295825958252, + 0.010118504986166954, + -0.019731085747480392, + 0.01717616245150566, + -0.013293186202645302, + 0.0052110301330685616, + 0.0008901122491806746, + -0.007791249081492424, + 0.004695618990808725, + -0.008809423074126244, + -0.027244074270129204, + -0.03435232490301132, + -0.009998347610235214, + -0.004401549696922302, + 0.0009699536021798849, + 0.03531358391046524, + -0.007791249081492424, + 0.012072641402482986, + -0.01121889241039753, + -0.0030513617675751448, + -0.005777033977210522, + -0.02374054305255413, + 0.02343698777258396, + -0.018769826740026474, + 0.002545436378568411, + 0.006358847953379154, + -0.030810847878456116, + -0.009549339301884174, + 0.010491625405848026, + 0.03306221589446068, + 0.021438581869006157, + -0.0005691659171134233, + 0.0012782517587766051, + -0.0009746965952217579, + -0.02028760313987732, + 0.012116909958422184, + 0.007038685027509928, + -0.03404876962304115, + -0.008537488989531994, + 0.027218779549002647, + -0.006140667945146561, + 0.01247105747461319, + -0.0018798285163939, + 0.008227609097957611, + -0.0030782390385866165, + -0.0002754921151790768, + -0.012692400254309177, + 0.011705845594406128, + 0.05178144946694374, + -0.029394257813692093, + 0.031822700053453445, + -0.006659240927547216, + 0.006988092791289091, + 0.005094035062938929, + -0.030102552846074104, + -0.01981962099671364, + -0.02840770222246647, + -0.002015796024352312, + -0.020199066027998924, + -0.016493164002895355, + 0.03981631621718407, + 0.02959662675857544, + -0.017517661675810814, + 0.004651350434869528, + 0.006260824855417013, + -0.021261509507894516, + -0.015835460275411606, + 0.006754102185368538, + -0.019528714939951897, + 0.008259229362010956, + -0.009296376258134842, + 0.011313753202557564, + -0.003547800937667489, + -0.0035066944546997547, + 0.003857680130749941, + -0.0024489944335073233, + 0.030203737318515778, + 0.0008474247879348695, + 0.00853116437792778, + 0.020983250811696053, + -0.004676646552979946, + 0.006441060919314623, + -0.002115400042384863, + -0.010441032238304615, + 0.0003466378548182547, + -0.0254733357578516, + -9.481157758273184e-5, + 0.002118562115356326, + -0.019478121772408485, + -0.004306688904762268, + -0.026510482653975487, + -0.00022786398767493665, + 0.018048884347081184, + 0.048417046666145325, + 0.0003549381799530238, + 0.007778600789606571, + -0.00416123541072011, + 0.014962739311158657, + 0.0017343750223517418, + 0.007848165929317474, + -0.003519342513754964, + 0.02529626339673996, + -0.014444165863096714, + 0.011244188994169235, + 0.012034696526825428, + -0.0007944607641547918, + -0.008727210573852062, + 0.020780880004167557, + 0.02439824491739273, + -0.01148450281471014, + -0.0045280312187969685, + -0.013799111358821392, + -0.019655195996165276, + 0.014988035894930363, + 0.01688525453209877, + -0.022779284045100212, + -0.00495490524917841, + 0.014520054683089256, + -0.017555605620145798, + 0.016834663227200508, + 0.005008659791201353, + 0.016429923474788666, + -0.020300250500440598, + 0.0028727068565785885, + 0.03776732087135315, + 0.00039841613033786416, + -0.006282959133386612, + 0.0044869245029985905, + 0.00130829110275954, + 0.03746376559138298, + 0.005615770351141691, + -0.011990428902208805, + -0.01627814583480358, + 0.005675849039107561, + 0.014659184031188488, + -0.015127165243029594, + -0.0028458295855671167, + 0.013027574867010117, + 0.008720886893570423, + 0.008474248461425304, + -0.00324424565769732, + -0.005894029047340155, + -0.0360218770802021, + -0.008290850557386875, + -0.015367479994893074, + -0.015797516331076622, + 0.00156599679030478, + -0.020540565252304077, + -0.017555605620145798, + 0.011756437830626965, + 0.0042624203488230705, + 0.010004672221839428, + 0.035642433911561966, + -0.0022940547205507755, + 0.0023098650854080915, + -0.022475728765130043, + -0.016961144283413887, + 0.012148530222475529, + -0.04616567865014076, + -0.015607793815433979, + -0.0003126460069324821, + -0.005094035062938929, + 0.0008055278449319303, + 0.011750114150345325, + 0.013938240706920624, + -0.0092204874381423, + 0.00903708953410387, + -0.007753304671496153, + -0.02911599911749363, + -0.012439437210559845, + 0.005087710916996002, + 0.019731085747480392, + -0.001150189433246851, + 0.0010750911897048354, + -0.008841044269502163, + -0.03192388266324997, + -0.002733577275648713, + 0.005062414798885584, + 0.023411691188812256, + 0.020186416804790497, + -0.022121582180261612, + 0.003946216776967049, + -0.022716043516993523, + -0.016075775027275085, + -0.00841100700199604, + 0.04447082802653313, + -0.01646786741912365, + 0.011244188994169235, + 0.0018244929378852248, + 0.011117707006633282, + -0.0037944393698126078, + 0.02506859600543976, + 0.020629102364182472, + 0.003946216776967049, + -0.0027604547794908285, + -0.008126424625515938, + -0.01214220654219389, + 0.002553341444581747, + 0.014267092570662498, + -0.02136269398033619, + -0.03210095688700676, + -0.011927187442779541, + 0.011642605066299438, + 0.018061531707644463, + 0.015443368814885616, + 0.015607793815433979, + -0.03369462117552757, + 0.010902688838541508, + 0.021729489788413048, + -0.01390029676258564, + 0.007709036115556955, + 0.011674225330352783, + 0.004249772056937218, + 0.001862437347881496, + 0.006172288209199905, + 0.012610186822712421, + -0.01605047844350338, + -0.0014569066697731614, + -0.015493961051106453, + -0.02643459476530552, + 0.020388787612318993, + -0.005546205677092075, + 0.024271763861179352, + -1.0406299224996474e-5, + 0.005599960219115019, + -0.021615656092762947, + -0.022640155628323555, + -0.009916135109961033, + 0.0012110585812479258, + 0.015228349715471268, + -0.02468915283679962, + -0.010333523154258728, + 0.0036015554796904325, + -0.01836508698761463, + 0.02350022830069065, + 0.0016553242458030581, + 0.007873461581766605, + -0.02100854553282261, + 0.02959662675857544, + -0.01345761213451624, + -0.02159035950899124, + 0.012078965082764626, + 0.021210916340351105, + -0.001862437347881496, + -0.016796719282865524, + 0.010757235810160637, + 0.014456814154982567, + -0.0001931804436026141, + -0.01568368263542652, + -0.003064009826630354, + 0.007595202885568142, + 0.017808569595217705, + 0.04558386653661728, + -0.029368961229920387, + -0.012262362986803055, + -0.004256096202880144, + -0.011383318342268467, + -0.003693254431709647, + -0.008632349781692028, + -0.006096399389207363, + 0.013799111358821392, + -0.03968983516097069, + -0.005422886461019516, + -0.008006267249584198, + 0.03685665503144264, + -0.024739744141697884, + 0.009138274937868118, + -0.026055149734020233, + -0.0008379386854358017, + 0.00762049900367856, + 0.014532702974975109, + 0.015266294591128826, + 0.014583295211195946, + -0.0006940662278793752, + 0.00927740428596735, + -0.009321672841906548, + -0.006741453893482685, + 0.004885340575128794, + -0.003617365611717105, + 0.010314551182091236, + 0.012818881310522556, + -0.02595396526157856, + -0.025637762621045113, + 0.016391977667808533, + 0.018630698323249817, + 0.024006152525544167, + 0.004844234324991703, + -0.009271080605685711, + -0.030153146013617516, + 0.01142126228660345, + -0.011440235190093517, + 0.010270282626152039, + -0.007892433553934097, + -0.01449475809931755, + -0.011579364538192749, + -0.014090018346905708, + 0.006899555679410696, + 0.004246610216796398, + -0.0021264671813696623, + 0.014267092570662498, + 0.021527118980884552, + -0.01592399738729, + 0.015949293971061707, + 0.004894827026873827, + -0.0005462411791086197, + -0.01849156804382801, + 0.006602324545383453, + 0.00978332944214344, + -0.004338309168815613, + -0.009789654053747654, + -0.009764357469975948, + 0.027648815885186195, + 0.007127222139388323, + -0.015493961051106453, + 0.008992820978164673, + 0.004085346590727568, + 0.007215758785605431, + -0.005245812702924013, + 0.0017628333298489451, + 0.01741647720336914, + 0.0012173826107755303, + 0.008069507777690887, + -0.005286918953061104, + 0.0033738890197128057, + -0.01730264350771904, + -0.012730344198644161, + 0.0039588650688529015, + 0.00190512475091964, + -0.010896365158259869, + -0.013609389774501324, + -0.0052711088210344315, + 0.04920123144984245, + -0.00027885177405551076, + 0.007709036115556955, + -0.001244259881787002, + 0.006396792363375425, + -0.038753874599933624, + 0.0003954517305828631, + 0.0052110301330685616, + 0.027547629550099373, + 0.007512989919632673, + -0.0034181575756520033, + -0.02876185066998005, + 0.00020987993048038334, + -0.0023335802834481, + -0.018693938851356506, + -0.009713765233755112, + -0.006633944809436798, + -0.0028853549156337976, + 0.02314607985317707, + -0.004910637158900499, + 0.0023177701514214277, + 0.009264755994081497, + -0.006526435725390911, + -0.01378646306693554, + -0.00042885070433840156, + 0.028660666197538376, + -0.003930406644940376, + 0.004278230480849743, + -0.0035351526457816362, + 0.00580233009532094, + -0.004556489177048206, + -0.0041074808686971664, + 0.006811018567532301, + -0.0033738890197128057, + 0.013116111978888512, + 0.005780195817351341, + 0.01998404785990715, + -0.0067983707413077354, + -0.023791134357452393, + 0.0187824759632349, + -0.022753987461328506, + -0.0036142035387456417, + 0.020869417116045952, + 0.015557201579213142, + -0.012654455378651619, + 0.0008371481671929359, + -0.013799111358821392, + -0.0020711314864456654, + -0.002115400042384863, + -0.0005324072553776205, + -0.006817342713475227, + -0.01682201400399208, + 0.00975803378969431, + 0.024145282804965973, + 0.010750911198556423, + -0.00541656231507659, + 0.011206244118511677, + 0.019718436524271965, + 0.0024521565064787865, + 0.009732737205922604, + -0.019402233883738518, + -0.017037032172083855, + 0.0021217239554971457, + -0.0044458182528615, + -0.031114403158426285, + -0.026409298181533813, + 0.0006142248748801649, + -0.021628305315971375, + 0.015291591174900532, + -0.015177757479250431, + -0.03703372925519943, + 0.001060071517713368, + 0.00723473122343421, + -0.005018146242946386, + -0.015708979219198227, + 0.012382520362734795, + 0.0018118447624146938, + 0.010485300794243813, + 0.01315405685454607, + 0.0066971853375434875, + -0.003557286923751235, + 0.005606284365057945, + -0.024119986221194267, + -0.012148530222475529, + -0.007500342093408108, + -0.01658170111477375, + 0.01064972672611475, + -0.018453624099493027, + 0.005596797913312912, + -0.010485300794243813, + -0.01214220654219389, + 0.006886907387524843, + 0.013976185582578182, + 0.020249659195542336, + -0.017100272700190544, + 0.006956472061574459, + 0.012742992490530014, + -0.007892433553934097, + 0.021792730316519737, + -0.00814539659768343, + 0.01926310360431671, + 0.0019146108534187078, + -0.014368277043104172, + 0.01725205034017563, + 0.0029327855445444584, + 0.020376140251755714, + -0.0039809993468225, + -0.00011304267536615953, + 0.033972881734371185, + 0.004022105596959591, + 0.004218151792883873, + -0.00915724691003561, + -0.0014197527198120952, + -0.023664653301239014, + -0.010188070125877857, + -0.0034402916207909584, + 0.014267092570662498, + -0.004777831491082907, + -0.012742992490530014, + -0.01486155390739441, + -0.022298656404018402, + -0.0018940577283501625, + -0.022045692428946495, + -0.015000684186816216, + -0.006365172099322081, + -0.007943026721477509, + -0.021628305315971375, + 0.0014490016037598252, + -0.022121582180261612, + -0.00404423987492919, + 0.0069058798253536224, + 0.020742936059832573, + -0.011535095982253551, + -0.012123233638703823, + -0.001955717336386442, + 0.012439437210559845, + 0.0017438611248508096, + -0.012932714074850082, + 0.009871866554021835, + -0.023057542741298676, + 0.00013764723553322256, + 0.007133546285331249, + -0.006137505639344454, + 0.019010141491889954, + -0.0026229063514620066, + -0.013293186202645302, + -0.005805492401123047, + -0.01634138636291027, + 0.012363548390567303, + 0.003620527684688568, + 0.008360414765775204, + -0.016569051891565323, + 0.011294781230390072, + 0.0150386281311512, + -0.015354831703007221, + -0.021438581869006157, + -0.011111383326351643, + -0.014886850491166115, + -0.009505070745944977, + 0.010656050406396389, + 0.003176261903718114, + -0.0028347624465823174, + -0.01730264350771904, + -0.010181745514273643, + -0.030684366822242737, + 0.02972310781478882, + 0.006311417557299137, + -0.004319336730986834, + 0.010725615546107292, + 0.009138274937868118, + -0.012603863142430782, + 0.029976071789860725, + 0.007829193025827408, + 0.006200746167451143, + -0.02088206447660923, + 0.004480600357055664, + -0.016493164002895355, + 0.003845031838864088, + 0.004945419263094664, + 0.00586240878328681, + 0.007721684407442808, + -0.004698780830949545, + -0.003459263825789094, + 0.016214905306696892, + -0.01574692316353321, + -0.025334207341074944, + -0.003690092358738184, + -0.012015724554657936, + 0.0013027575332671404, + 0.015266294591128826, + -0.02184332348406315, + 0.0019667844753712416, + 0.019048085436224937, + -0.01658170111477375, + -0.0005414981278590858, + -0.0013912944123148918, + 0.0046355403028428555, + 0.007734332233667374, + 0.03136736527085304, + -0.01616431213915348, + 0.007462397683411837, + -0.0017391180153936148, + 0.02990018203854561, + -0.004398387856781483, + -0.021160323172807693, + -0.012053669430315495, + -0.011674225330352783, + -0.010017319582402706, + 0.008518516086041927, + -0.02202039584517479, + -0.013166705146431923, + 0.008929580450057983, + 0.02243778482079506, + -0.004347795154899359, + 0.009985699318349361, + 0.03908272460103035, + 0.017644142732024193, + 0.036477211862802505, + 0.025397447869181633, + 0.016973791643977165, + 0.0012980144238099456, + 0.013166705146431923, + 0.01653110794723034, + -0.017644142732024193, + -0.010295579209923744, + -0.01422914769500494, + 0.023120783269405365, + 0.0048505584709346294, + 0.005192057695239782, + -0.004622892010957003, + -0.010029967874288559, + -0.007013388909399509, + -0.01449475809931755, + 0.02159035950899124, + 0.005966756027191877, + 0.01885836385190487, + 0.02613103948533535, + 0.0012260782532393932, + 0.008923256769776344, + -0.012572242878377438, + -0.012116909958422184, + 0.011269484646618366, + -0.003971513360738754, + -0.009814949706196785, + -0.017214106395840645, + -0.024056745693087578, + -0.014633888378739357, + -0.011990428902208805, + -0.005675849039107561, + -2.1220204871497117e-5, + -0.013052871450781822, + 0.0031003730837255716, + -0.00608375109732151, + -0.003892462467774749, + -0.0017739004688337445, + -0.02362670935690403, + -0.039588652551174164, + 0.005343835335224867, + 0.002343066269531846, + -0.024423541501164436, + -0.01234457641839981, + 0.0010363563196733594, + -0.0025691515766084194, + 0.006975444499403238, + -0.015519257634878159, + 0.008954877033829689, + -0.0283318143337965, + 0.013141408562660217, + -0.00762049900367856, + 0.0249294675886631, + -0.00784184131771326, + -0.004923284985125065, + -0.006804694887250662, + 0.01089004147797823, + 0.006026834715157747, + 0.019490770995616913, + 0.009138274937868118, + -0.026156336069107056, + -0.016012534499168396, + -0.0053185392171144485, + -0.016455218195915222, + -0.009814949706196785, + 0.005097196903079748, + -0.03574362024664879, + -0.010637078434228897, + -0.014848906546831131, + 0.006792046595364809, + 0.0187824759632349, + -0.003033970482647419, + 0.01151612401008606, + -0.021552415564656258, + -0.010017319582402706, + -0.014937442727386951, + 0.008474248461425304, + -0.0030023502185940742, + -0.013697925955057144, + 0.02506859600543976, + -0.005267946515232325, + 0.0178971067070961, + -0.011585688218474388, + 0.007999942637979984, + 0.009176218882203102, + 0.008885311894118786, + -0.001797615666873753, + -0.001501965569332242, + 0.0023446474224328995, + 0.027117593213915825, + 0.004373091273009777, + -0.0053533217869699, + 0.024259116500616074, + 0.0032236925326287746, + -0.014203851111233234, + -0.03255629166960716, + -0.002776264911517501, + -0.01247105747461319, + 0.0019699465483427048, + -0.002806304255500436, + 0.025157133117318153, + -0.005138303153216839, + -0.026358705013990402, + -0.013761166483163834, + -0.006817342713475227, + 0.013622037135064602, + -0.00597940431907773, + 0.012831529602408409, + -0.024474134668707848, + 0.019604602828621864, + -0.002123305108398199, + 0.011933512054383755, + 0.01622755266726017, + -0.0054260483011603355, + 0.00682999100536108, + -0.0303049236536026, + -0.032657474279403687, + 0.021704193204641342, + 0.012224419042468071, + 0.013938240706920624, + -0.002093265764415264, + -0.010162773542106152, + -0.018478920683264732, + -0.023108135908842087, + -0.01765679195523262, + 0.0001508882560301572, + -0.002896422054618597, + -0.009606256149709225, + 0.008303497917950153, + 0.0006584933144040406, + 0.006766750477254391, + 0.010428383946418762, + 0.004600757732987404, + -0.009897163137793541, + 0.010852096602320671, + 0.01879512332379818, + 0.00870823860168457, + -0.011414938606321812, + 0.02296900562942028, + -0.0072853234596550465, + 0.019958751276135445, + 0.0178971067070961, + 0.018478920683264732, + -0.006823666859418154, + 0.00012075012637069449, + -0.020262306556105614, + -0.01390029676258564, + 0.0015628347173333168, + -0.009372265078127384, + 0.015228349715471268, + 0.006823666859418154, + -0.01491214707493782, + 0.006099561229348183, + -0.0026102580595761538, + -0.014722424559295177, + 0.009492422454059124, + -0.005524071399122477, + -0.002256110543385148, + 0.01491214707493782, + 0.013229945674538612, + -0.002518559107556939, + -0.016986440867185593, + -0.0170117374509573, + -0.00802523922175169, + -0.006520111579447985, + 0.010719290934503078, + -0.01968049257993698, + -0.006836315151304007, + 0.03101321868598461, + 0.013103463687002659, + 0.012452085502445698, + -0.008461600169539452, + -0.013508204370737076, + 0.0015122422482818365, + -0.018693938851356506, + 0.015974590554833412, + -0.007323267869651318, + -0.002553341444581747, + 0.006811018567532301, + -0.014962739311158657, + 0.0071588424034416676, + 0.0025043298956006765, + 0.007063981145620346, + -0.0051541137509047985, + -0.004075860138982534, + 0.010137476958334446, + -0.012692400254309177, + 0.014064721763134003, + -0.014241795986890793, + -0.0034529399126768112, + -0.006684537511318922, + -0.0006573075661435723, + 0.0070513333193957806, + -0.0021786405704915524, + 0.014064721763134003, + -0.004471114370971918, + -0.020426731556653976, + -0.0047430493868887424, + 0.0016379329608753324, + -0.028610073029994965, + 0.01091533713042736, + -0.0077406563796103, + 0.0013122436357662082, + 0.008638673461973667, + 0.004844234324991703, + 0.004341471008956432, + 0.026561075821518898, + 0.007323267869651318, + -0.01372322253882885, + 0.017783273011446, + -0.007063981145620346, + 0.0026276493445038795, + -0.0038798144087195396, + -0.0017897106008604169, + -0.004224475938826799, + 0.0015343764098361135, + 0.008056859485805035, + -0.030709663406014442, + -0.007759628817439079, + 0.008341442793607712, + -0.0009375427616760135, + -0.014001481235027313, + 0.019123975187540054, + -0.005871894769370556, + -0.017884457483887672, + -0.002811047248542309, + 0.00023932635667733848, + 0.01711292192339897, + 0.014570646919310093, + 0.007582554593682289, + 0.026889927685260773, + -0.004780993796885014, + 0.0028426675125956535, + -0.0158101636916399, + 0.018580105155706406, + -0.02327256090939045, + -0.019971398636698723, + -0.004939095117151737, + -0.013773814775049686, + 0.005615770351141691, + -0.030279627069830894, + 0.0018940577283501625, + -0.0309626255184412, + 0.017972994595766068, + 0.004075860138982534, + -0.0038481939118355513, + -0.020414084196090698, + -0.0007549353176727891, + -0.012382520362734795, + 0.005944621749222279, + 0.009144598618149757, + -0.01429238822311163, + 0.0034402916207909584, + -0.02147652767598629, + 0.019465474411845207, + 0.017087625339627266, + 0.011250512674450874, + 0.015177757479250431, + 0.013672630302608013, + -0.010048940777778625, + 0.00660864869132638, + -0.009062386117875576, + 0.0039809993468225, + -0.005653714761137962, + 0.0009968308731913567, + -0.004856882616877556, + 0.017644142732024193, + 0.03318869695067406, + -0.001519356737844646, + -0.012755640782415867, + 0.00267824181355536, + 0.007987295277416706, + -0.020439380779862404, + 0.0036489858757704496, + 0.021223563700914383, + -0.001167580601759255, + 0.0015375384828075767, + -0.0022292330395430326, + -0.004297202453017235, + -0.007418129127472639, + 0.01903543807566166, + -0.0029580816626548767, + 0.002240300178527832, + 0.029925478622317314, + -5.1333627197891474e-5, + 0.010017319582402706, + 0.0029802159406244755, + 0.01223074272274971, + -0.006716157775372267, + 0.005252136383205652, + -0.0008134329691529274, + 0.006245014723390341, + -0.01592399738729, + 0.005033956374973059, + -0.02184332348406315, + -0.01873188279569149, + 0.011041819117963314, + 0.015203054063022137, + 0.011136679910123348, + 0.001875085523352027, + 0.003917758818715811, + 0.04669690132141113, + 0.015165109187364578, + 0.003667958080768585, + -0.010700318962335587, + -0.003620527684688568, + -0.022994302213191986, + 0.010453680530190468, + 0.02250102534890175, + 0.00044979917583987117, + -0.01297698263078928, + -0.020009344443678856, + -0.023120783269405365, + -0.008373063057661057, + 0.006981768645346165, + 0.0105928098782897, + -0.011560391634702682, + 0.010776207782328129, + -0.00796832237392664, + -0.0012300307862460613, + 0.016986440867185593, + -0.011851298622786999, + -0.002822114387527108, + 0.005966756027191877, + 0.0034434536937624216, + -0.00939123798161745, + -0.011971455998718739, + -0.01247105747461319, + 0.02475239336490631, + 0.008878988213837147, + 0.02070499025285244, + -0.017391180619597435, + -0.0057991682551801205, + -0.031190291047096252, + 0.006197584327310324, + 0.006943824235349894, + 0.007405480835586786, + 0.014191203750669956, + -0.02362670935690403, + -0.0009422858129255474, + 0.024891521781682968, + -0.011269484646618366, + 0.0027177671436220407, + 0.01052956935018301, + -0.01933899335563183, + 0.007297971751540899, + -0.016455218195915222, + -0.013634685426950455, + 0.011111383326351643, + 0.00019683653954416513, + 0.02189391478896141, + 0.010972253978252411, + -0.02361406199634075, + -0.012572242878377438, + -0.001154141966253519, + 0.003064009826630354, + -0.004977039527148008, + -0.01178173441439867, + -0.0042719063349068165, + -0.008973849005997181, + 0.0009794397046789527, + 0.00545766856521368, + -0.0047019426710903645, + 0.003103535156697035, + 0.0010442613856866956, + 0.002278244588524103, + 0.008442627266049385, + -0.001309081562794745, + -0.008195988833904266, + -0.008480572141706944, + -0.0015438625123351812, + 0.008657646365463734, + 0.007297971751540899, + 0.012388844974339008, + 0.008309822529554367, + -0.006792046595364809, + 0.006912203971296549, + 0.036300137639045715, + -0.0037533328868448734, + -0.0124078169465065, + -0.0033011622726917267, + 0.00545766856521368, + -0.04252301901578903, + -0.0015976170543581247, + 0.0007434729486703873, + -0.0031572896987199783, + 0.005558853503316641, + 0.035591840744018555, + -0.012932714074850082, + 0.0034655879717320204, + -0.0020458351355046034, + -3.305312566226348e-5, + 0.006804694887250662, + 0.011143003590404987, + -0.002929623471572995, + 0.014380925334990025, + -0.011402290314435959, + 0.03179740160703659, + -0.007936702109873295, + 0.00954301469027996, + -0.012243391014635563, + -0.0008758830954320729, + 0.014127962291240692, + 0.0014964319998398423, + 0.009353293105959892, + 0.006874259561300278, + 0.01617695949971676, + 0.020477324724197388, + 0.000456913752714172, + 0.008626025170087814, + -0.0022134229075163603, + -0.0025422743055969477, + -0.01641727425158024, + -0.0016442571068182588, + -0.0022877308074384928, + -0.0021723166573792696, + -0.03369462117552757, + 0.004287716466933489, + -0.009144598618149757, + -0.012901093810796738, + 0.002570732729509473, + -0.03920920565724373, + -0.006371496245265007, + 0.003987323492765427, + -0.013356426730751991, + 6.912006210768595e-5, + 0.008695590309798717, + 0.0006280587986111641, + -0.012907418422400951, + 0.006494815461337566, + -0.003531990572810173, + -0.010441032238304615, + 0.01145920716226101, + 0.00858808122575283, + 0.005603122059255838, + -0.012540622614324093, + 0.015519257634878159, + 0.023601412773132324, + 0.0005252927076071501, + -0.01202204916626215, + -0.005043442361056805, + 0.024499431252479553, + 0.0064347367733716965, + -0.00909400638192892, + -0.015342183411121368, + -0.011326401494443417, + -0.0015074991388246417, + 0.008006267249584198, + 0.005350159481167793, + -0.021944507956504822, + 0.01897219754755497, + -0.010940633714199066, + 0.023196673020720482, + -0.006937500089406967, + 0.016025181859731674, + -0.013748519122600555, + 0.014697128906846046, + 0.004129614681005478, + -0.004439494106918573, + 0.007848165929317474, + 0.0036426617298275232, + -0.00017213316459674388, + 0.00586240878328681, + 0.0018861525459215045, + -0.00031976058380678296, + -0.008063184097409248, + 0.011446558870375156, + -1.1135049135191366e-5, + 0.015253646299242973, + -0.020629102364182472, + 0.0023715246934443712, + -0.028357110917568207, + 0.001201572478748858, + -0.016619645059108734, + -0.007582554593682289, + 0.0027715216856449842, + -0.014216499403119087, + 0.013204649090766907, + -0.00369957834482193, + 0.009865542873740196, + -0.02391761727631092, + -0.019832270219922066, + -0.01234457641839981, + -0.0041738832369446754, + 0.004471114370971918, + 0.02590337209403515, + 0.009890838526189327, + -0.020034639164805412, + -0.032783955335617065, + 0.021438581869006157, + -0.014520054683089256, + -0.008910608477890491, + -0.0070513333193957806, + 0.020793527364730835, + 0.0033833752386271954, + -0.002257691463455558, + 0.024815633893013, + -0.011851298622786999, + -0.017707383260130882, + -0.028711257502436638, + 0.020553212612867355, + -0.008999145589768887, + -0.007822869345545769, + 0.00850586872547865, + 0.011016522534191608, + 0.013432315550744534, + -0.001952555263414979, + -0.004705104976892471, + -0.01693584769964218, + 0.0044458182528615, + -0.0015770639292895794, + -0.0006185726961120963, + 0.0016885255463421345, + 0.011509799398481846, + -0.010896365158259869, + -0.025397447869181633, + -0.0058465986512601376, + 0.002305121859535575, + 0.003531990572810173, + 0.024651208892464638, + 0.0012901093577966094, + 0.010516921058297157, + 0.012369872070848942, + -0.010662375018000603, + 0.003316972404718399, + 0.019301047548651695, + 0.008739858865737915, + 0.027598222717642784, + 0.0078038969077169895, + -0.0373372845351696, + 0.02511918917298317, + 0.004622892010957003, + 0.002758873626589775, + 0.0020790365524590015, + 0.0022418813314288855, + 0.024777689948678017, + -0.011256837286055088, + -0.009163571521639824, + 0.006352523807436228, + -0.014444165863096714, + -0.02964721992611885, + -0.017821216955780983, + 0.0013075005263090134, + 0.032783955335617065, + -0.005255298689007759, + -0.0029976072255522013, + -0.007601527031511068, + -0.005539881531149149, + 0.0010134315816685557, + 0.008050535805523396, + 0.009770681150257587, + -0.017682088539004326, + 0.02934366464614868, + 0.005315377376973629, + 0.0019067057874053717, + -0.0030608477536588907, + -0.004869530443102121, + 0.0073169441893696785, + -0.010510597378015518, + -0.026459891349077225, + 0.020844120532274246, + 0.00957463588565588, + -0.00335491681471467, + 0.000841100758407265, + -0.015367479994893074, + 0.006602324545383453, + -0.007196786813437939, + -0.034327030181884766, + -0.003179423976689577, + -0.016859959810972214, + 0.005343835335224867, + -0.0013984090182930231, + -0.018529511988162994, + 0.012679751962423325, + -0.012388844974339008, + 0.008575432933866978, + 0.0020015668123960495, + 0.0033264586236327887, + 0.020489972084760666, + 0.009182543493807316, + 0.0016300278948619962, + -0.006792046595364809, + -0.022058341652154922, + -0.003272704081609845, + 0.03303691744804382, + -0.027674110606312752, + -0.014380925334990025, + -0.03217684477567673, + 0.01850421540439129, + -0.011927187442779541, + 0.0011826002737507224, + -0.013824407942593098, + -0.0029201372526586056, + -0.005944621749222279, + 0.01664494164288044, + -0.009739060886204243, + 0.0012948524672538042, + 0.014203851111233234, + -0.0051635997369885445, + -0.006678213365375996, + -0.012388844974339008, + -0.020793527364730835, + 0.005441858433187008, + -0.034934137016534805, + 0.0399680957198143, + -0.015456016175448895, + -0.01422914769500494, + -0.043231312185525894, + 0.015886053442955017, + -0.01002364419400692, + 0.013267889618873596, + 0.0102639589458704, + 0.0077406563796103, + -0.012458409182727337, + 0.013596741482615471, + -0.0421435721218586, + 0.013078168034553528, + 0.016682885587215424, + -0.010573837906122208, + -0.01204734481871128, + -0.006450546905398369, + 0.021451231092214584, + -0.0016086841933429241, + -0.004031592048704624, + 0.004376253578811884, + 0.0005553319933824241, + 0.015671035274863243, + 0.004901150707155466, + 0.005770709831267595, + -0.0008339861524291337, + 0.015531904995441437, + -0.012072641402482986, + -0.00838571134954691, + 0.025549225509166718, + -0.0064252507872879505, + 0.0017881295643746853, + -0.007721684407442808, + 0.004765183664858341, + 0.014899498783051968, + -0.0021122379694133997, + -0.0007845793734304607, + 0.01605047844350338, + -0.016202256083488464, + 0.0032916762866079807, + 0.014962739311158657, + -0.002989702159538865, + 0.01345761213451624, + 0.0014142191503196955, + 0.0039493790827691555, + 0.010093208402395248, + 0.010390440002083778, + -0.011408614926040173, + -0.025258317589759827, + -0.0300772562623024, + -0.02189391478896141, + 0.028610073029994965, + 0.007980970665812492, + 0.004202341660857201, + 0.010662375018000603, + -0.007443425245583057, + 0.004739887081086636, + 0.007993618957698345, + 0.008954877033829689, + -0.0012719277292490005, + 0.010637078434228897, + 0.0012023629387840629, + -0.005252136383205652, + -0.01837773434817791, + 0.023639356717467308, + 0.02272869274020195, + -0.018693938851356506, + -0.023588765412569046, + 0.01993345469236374, + -0.013331130146980286, + 0.022399840876460075, + 0.01028925459831953, + -0.013495556078851223, + -0.011984104290604591, + -0.01980697363615036, + 0.01950341835618019, + -0.0063272276893258095, + -0.008316146209836006, + -0.00850586872547865, + -0.013824407942593098, + -0.005941459909081459, + 0.0016663912683725357, + 0.007765952497720718, + -0.013647333718836308, + -0.010320874862372875, + 0.0021438582334667444, + -0.002535950392484665, + 0.0036078793928027153, + -0.0002859663509298116, + -0.010738263837993145, + 0.011585688218474388, + 0.008600729517638683, + 0.005726441275328398, + 0.0011905053397640586, + -0.041662946343421936, + -0.016025181859731674, + -0.0033359446097165346, + -0.012932714074850082, + 0.003933568950742483, + 0.004357281140983105, + 0.012692400254309177, + 0.020426731556653976, + 0.05494348332285881, + -0.01635403372347355, + 0.002205517841503024, + -0.0078038969077169895, + -0.006045806687325239, + 0.022589562460780144, + 0.00563790462911129, + 0.02320932038128376, + 0.010314551182091236, + 0.009384913370013237, + -0.01629079319536686, + 0.007791249081492424, + -0.006463195197284222, + 0.0031920720357447863, + -0.020021991804242134, + 0.015835460275411606, + 0.01416590716689825, + 0.01860540173947811, + -0.011984104290604591, + -0.009296376258134842, + -0.013925592415034771, + -0.009201515465974808, + -0.0007197577506303787, + -0.0020695505663752556, + -0.011149328202009201, + -0.0008075041114352643, + 0.009112978354096413, + -0.0004316174890846014, + -0.004139101132750511, + -0.006703509483486414, + -0.0028727068565785885, + 0.001832398003898561, + -0.011927187442779541, + -0.004654512275010347, + -0.007013388909399509, + -0.030229033902287483, + -0.002390496898442507, + -0.00602367240935564, + -0.00011827979324152693, + 0.01622755266726017, + 0.014874202199280262, + 0.028787147253751755, + -0.014014129526913166, + 0.013761166483163834, + -0.022033045068383217, + -0.018390383571386337, + -0.001892476691864431, + 0.02559981867671013, + 0.021855970844626427, + -0.004053726326674223, + 0.010662375018000603, + 0.04264950007200241, + 0.004926447290927172, + -0.02399350516498089, + -0.02701640874147415, + -0.014545351266860962, + 0.016796719282865524, + -0.01914927177131176, + 0.015101868659257889, + 0.015392775647342205, + -0.0150386281311512, + 0.006286121439188719, + -0.008777802810072899, + -0.026738150045275688, + 0.016455218195915222, + 0.02476504072546959, + 0.00042924596345983446, + -0.011016522534191608, + -0.004458466079086065, + 0.01486155390739441, + -0.0005027631996199489, + -0.008499544113874435, + -0.0016205417923629284, + 0.007784924935549498, + -0.019478121772408485, + 0.0006454499671235681, + -0.0327080674469471, + 0.0005565177998505533, + 0.010219690389931202, + 0.009751709178090096, + -0.009207840077579021, + 0.03136736527085304, + -0.005890867207199335, + 0.03925979882478714, + 0.010820476338267326, + -0.027851184830069542, + -0.015367479994893074, + 0.0150386281311512, + -0.015203054063022137, + 0.016569051891565323, + 0.0043604434467852116, + -0.013356426730751991, + -0.005482965148985386, + 0.0023794297594577074, + 0.015165109187364578, + -0.001742280088365078, + 0.02314607985317707, + -0.00957463588565588, + 0.025738947093486786, + 0.005075062625110149, + -0.016252849251031876, + -0.018807770684361458, + -0.014355628751218319, + -0.02499270811676979, + -0.01754295825958252, + -0.026763446629047394, + -0.007980970665812492, + 0.01759355142712593, + 0.008177016861736774, + -0.00011966317833866924, + 0.010327199473977089, + -0.013558796606957912, + 0.00038813953869976103, + 0.005024470388889313, + -0.0016742963343858719, + 0.004442655947059393, + 0.0019414881244301796, + -0.009315349161624908, + 0.0008648159564472735, + 0.0044679525308310986, + -0.019895510748028755, + -0.006551731843501329, + -0.004695618990808725, + 0.02506859600543976, + 0.002626068191602826, + 0.003582583274692297, + -0.0006826038588769734, + -0.005388103891164064, + 0.012553269974887371, + 0.007380184717476368, + -0.005084548611193895, + 0.010504272766411304, + -0.0027319963555783033, + -0.005628418643027544, + -0.009524042718112469, + 0.012306631542742252, + -0.006396792363375425, + 0.0023478094954043627, + 0.011478179134428501, + -0.004303526598960161, + -0.006134343799203634, + -0.016455218195915222, + 0.008878988213837147, + 0.009492422454059124, + -0.0002515792439226061, + -0.008429979905486107, + 0.014380925334990025, + -0.014570646919310093, + 0.009467125870287418, + 0.0022719206754118204, + 0.02850888855755329, + 0.00790508184581995, + 0.014090018346905708, + 0.013837055303156376, + 0.004151748958975077, + -0.006526435725390911, + -0.013179352506995201, + -0.01969313994050026, + -0.01945282518863678, + 0.008904284797608852, + 0.0008640254964120686, + -0.028888331726193428, + -0.010282930918037891, + -0.017226755619049072, + -4.588653155224165e-6, + -0.014014129526913166, + -0.003661633934825659, + -0.019427530467510223, + -0.017454421147704124, + 0.021160323172807693, + 0.003952540922909975, + 0.003351754741743207, + -0.0029122321866452694, + 0.030229033902287483, + 0.013255241326987743, + -0.007683739997446537, + 0.00695014838129282, + 0.0005248974775895476, + 0.01635403372347355, + -0.009309024550020695, + 0.0005150160868652165, + -0.0028426675125956535, + 0.0023114460054785013, + 0.014317684806883335, + -0.005372293759137392, + -0.014140610583126545, + -0.009694792330265045, + -0.007544610183686018, + 0.002939109457656741, + 0.0026355544105172157, + -0.018390383571386337, + -0.016139015555381775, + 0.00876515544950962, + -0.012894770130515099, + 0.004733562935143709, + 0.02792707458138466, + 0.00808847974985838, + 0.006792046595364809, + 0.004904313012957573, + -0.012629158794879913, + -0.04285186901688576, + -0.005976242013275623, + -0.004259258043020964, + -0.007930378429591656, + -0.0029881210066378117, + 0.0022877308074384928, + -0.009416533634066582, + -0.009612579829990864, + 0.028180036693811417, + -0.021982451900839806, + -0.008392035029828548, + 0.010181745514273643, + 0.0032173683866858482, + -0.0001172916527139023, + -0.009625228121876717, + -0.009631551802158356, + -0.000349799869582057, + 0.0033264586236327887, + -0.0011731141712516546, + 0.011250512674450874, + 0.027370555326342583, + -0.004331985022872686, + -0.00739915668964386, + 0.014684480614960194, + 0.004863206297159195, + -0.0020916846115142107, + 0.016151662915945053, + -0.023715246468782425, + -0.008392035029828548, + -0.030760254710912704, + -0.0003353731008246541, + 0.01759355142712593, + 0.013710574246942997, + 0.004512221086770296, + 0.0221848227083683, + 0.012844176962971687, + 0.00044228933984413743, + -0.0052300021052360535, + -0.021982451900839806, + -0.018655993044376373, + -0.026763446629047394, + -0.014747721143066883, + 0.025701003149151802, + -0.0028331815265119076, + -0.013065519742667675, + 0.0029280423186719418, + 0.0154813127592206, + -0.006390468217432499, + -0.01521570235490799, + -0.013116111978888512, + -0.0018118447624146938, + 0.005530395545065403, + 0.01659434847533703, + 0.006365172099322081, + 0.00044821816845797, + -0.00745607353746891, + 0.00927740428596735, + -0.0066402689553797245, + -0.015354831703007221, + -0.008461600169539452, + -0.01622755266726017, + 0.009865542873740196, + -0.002197612775489688, + -0.006096399389207363, + -0.024891521781682968, + 0.003690092358738184, + 0.0193263441324234, + 0.03738787770271301, + 0.0032505698036402464, + -0.0023098650854080915, + 0.008075831457972527, + -0.006251338869333267, + 0.014621240086853504, + -0.005777033977210522, + -0.0049485815688967705, + 0.022463081404566765, + -0.007601527031511068, + 0.006722481921315193, + -0.007645795587450266, + 0.018883660435676575, + -0.0342511385679245, + 0.003064009826630354, + -0.006564380135387182, + 0.011623633094131947, + 0.0007833936251699924, + 0.029520738869905472, + 0.014001481235027313, + 0.006836315151304007, + -0.008784127421677113, + 0.007418129127472639, + -0.006086913403123617, + -0.004717752803117037, + -0.003236340591683984, + 0.006671889219433069, + -0.011977780610322952, + 0.02184332348406315, + 0.0007442634669132531, + -0.0017786434618756175, + 0.0025027489755302668, + 0.014001481235027313, + -0.015139813534915447, + 0.00432249903678894, + -0.0036964165046811104, + 0.01956665888428688, + -0.03518710285425186, + 0.03468117490410805, + 0.010599134489893913, + 0.019402233883738518, + -0.003977837506681681, + -0.0016553242458030581, + 0.0024616424925625324, + 0.022779284045100212, + -0.01491214707493782, + 0.004170721396803856, + 0.0020094718784093857, + -0.01202204916626215, + -0.0005312215071171522, + -0.02775000035762787, + 0.010017319582402706, + 0.010099533013999462, + 0.016240200027823448, + -0.01831449382007122, + 0.017264699563384056, + 0.002118562115356326, + -0.034453511238098145, + -0.0037438469007611275, + -0.009290052577853203, + -0.0006047387723810971, + -0.0048410724848508835, + -0.016796719282865524, + -0.031291477382183075, + -0.0077469805255532265, + 0.010048940777778625, + -0.01569633185863495, + -0.007007064763456583, + 0.007329592015594244, + 0.015974590554833412, + 0.014621240086853504, + -0.024031449109315872, + 0.009176218882203102, + 0.00909400638192892, + 0.0035383147187530994, + -0.008436303585767746, + 0.010984902270138264, + -0.0005932764033786952, + 0.01813741959631443, + 0.0065833525732159615, + -0.0008268716046586633, + 0.02124886028468609, + 0.007310620043426752, + -0.013128760270774364, + -0.018833067268133163, + -0.029672516509890556, + -0.02661166898906231, + -0.00037252699257805943, + -0.007664767559617758, + 0.0006956472061574459, + -0.000845053291413933, + -0.006305093411356211, + 0.013875000178813934, + -0.016923200339078903, + -0.0026276493445038795, + 0.023525524884462357, + 0.035111211240291595, + 0.03781791403889656, + 0.0006446594488807023, + 0.012237067334353924, + -0.010725615546107292, + -0.030178440734744072, + -0.004256096202880144, + 0.015025979839265347, + -0.030330218374729156, + 0.015557201579213142, + -0.022336600348353386, + -0.008739858865737915, + 0.0047904797829687595, + 0.0063177417032420635, + -0.004028429742902517, + -0.00990348681807518, + -0.00853116437792778, + -0.006507463753223419, + 0.0025043298956006765, + 0.007961998693645, + 0.015278942883014679, + 0.024119986221194267, + 0.010497949086129665, + 0.004123291000723839, + 0.010226014070212841, + 0.0014371438883244991, + -0.028964221477508545, + -0.020237009972333908, + 0.0036458238027989864, + 0.019111325964331627, + 0.01850421540439129, + -0.027168186381459236, + -0.010750911198556423, + -0.022336600348353386, + -0.014760369434952736, + 0.015493961051106453, + -0.015253646299242973, + 0.009865542873740196, + -0.004139101132750511, + -0.010188070125877857, + -0.014431517571210861, + -0.0013446544762700796, + 0.023765839636325836, + -0.01622755266726017, + 0.00984024628996849, + 0.0029628246556967497, + -0.010738263837993145, + 0.006153315771371126, + -0.008170693181455135, + -0.01416590716689825, + 0.00046323781134560704, + 0.01345761213451624, + -0.02845829539000988, + -0.007487693801522255, + -0.00877147912979126, + -0.018453624099493027, + 0.03000136837363243, + -0.0119651323184371, + 0.00222290912643075, + -0.019427530467510223, + -0.002159668365493417, + 0.013558796606957912, + 0.013103463687002659, + -0.010314551182091236, + 0.0017264699563384056, + 0.0056821731850504875, + 0.005900353193283081, + -0.00410431856289506, + 0.01820066012442112, + -0.014924795366823673, + 0.01933899335563183, + -0.013520852662622929, + -0.009346969425678253, + -0.011528771370649338, + -0.0015541391912847757, + -0.01699908822774887, + -0.02924248017370701, + -0.010333523154258728, + -0.01315405685454607, + 0.008075831457972527, + 0.02775000035762787, + -0.004183369223028421, + -0.01712556928396225, + 0.007076629437506199, + -0.007854489609599113, + -0.007829193025827408, + 0.014608591794967651, + 0.00996040366590023, + -0.009473450481891632, + 0.033264584839344025, + -0.020616455003619194, + -6.042447057552636e-5, + 0.0031572896987199783, + 0.0018766664434224367, + -0.00054070760961622, + 0.005413400009274483, + -0.004290878772735596, + 0.0020031477324664593, + -0.007007064763456583, + -0.0010023644426837564, + -0.017454421147704124, + 0.01064972672611475, + -0.00455016503110528, + 0.00877147912979126, + 0.013622037135064602, + -0.016809366643428802, + -0.018833067268133163, + 0.0016142177628353238, + 0.01109873503446579, + 0.01166790071874857, + -0.011320077814161777, + -0.013912944123148918, + -0.0023541334085166454, + -0.010238662362098694, + 0.014090018346905708, + 0.017403827980160713, + -0.008442627266049385, + 0.018757179379463196, + -0.013875000178813934, + -0.008543812669813633, + -0.0008687685476616025, + 0.006463195197284222, + 0.024006152525544167, + 0.012433113530278206, + -0.00877147912979126, + 0.020199066027998924, + -0.0052616228349506855, + 0.016859959810972214, + -0.012989630922675133, + 0.009669496677815914, + -0.009745385497808456, + 0.0023841727524995804, + -0.012584890238940716, + -0.007411804981529713, + -0.014848906546831131, + 0.004224475938826799, + 0.018036235123872757, + 0.003630013670772314, + -0.003845031838864088, + -0.0009620484779588878, + -0.015557201579213142, + 0.006988092791289091, + 0.012812556698918343, + -0.004679808393120766, + -0.030861441045999527, + -0.02022436261177063, + -0.02553657628595829, + -0.0038798144087195396, + -0.0007430777186527848, + -0.0069058798253536224, + 0.009871866554021835, + 0.015139813534915447, + -0.015443368814885616, + -0.006365172099322081, + 0.005147789604961872, + 0.023550821468234062, + -0.01723940297961235, + 0.016796719282865524, + -0.0320756621658802, + -0.004989687819033861, + -0.026535779237747192, + 0.029217183589935303, + -0.0003741079999599606, + 0.00620390847325325, + -0.009435505606234074, + -6.729201413691044e-5, + 0.011920863762497902, + 0.009707440622150898, + -0.03652780503034592, + 0.02434765361249447, + -0.013267889618873596, + 0.01321729738265276, + -0.0016316089313477278, + 0.0010434708092361689, + 0.008006267249584198, + 0.010504272766411304, + -0.007076629437506199, + -0.009005469270050526, + -0.029217183589935303, + -0.00913195125758648, + 0.0006569123361259699, + 0.01569633185863495, + 0.017441773787140846, + -0.0004150168097112328, + -0.0027620356995612383, + -0.02011052891612053, + -0.016429923474788666, + 0.01728999614715576, + 0.007329592015594244, + 0.011067114770412445, + -0.013672630302608013, + 0.006245014723390341, + 0.004645026288926601, + 0.003664796007797122, + -0.015848109498620033, + 0.003459263825789094, + 0.007563582621514797, + -0.007392833009362221, + -0.012224419042468071, + 0.010029967874288559, + 0.0028458295855671167, + 0.006387306377291679, + -0.0019762704614549875, + -0.016379330307245255 + ], + "9850698b-a7f7-478c-b6b5-cfc4b75c04fa": [ + 0.0007424653158523142, + -0.03892330825328827, + -0.015360338613390923, + 0.013250904157757759, + -0.04563692584633827, + -0.014041125774383545, + -0.010527579113841057, + 0.012166799046099186, + -0.04341646656394005, + 0.025300148874521255, + -0.003856411436572671, + 0.03602365031838417, + 0.03158273547887802, + 0.013479480519890785, + 0.003696407889947295, + -0.027115698903799057, + -0.008653252385556698, + 0.03275827318429947, + -0.03247091919183731, + 0.00439193332567811, + 0.01677098125219345, + -0.06583002209663391, + 0.008137322030961514, + 0.004806636366993189, + -2.2615295165451244e-5, + -0.02579648606479168, + 0.01070390921086073, + -0.002711896551772952, + -0.0609188936650753, + 0.006475244648754597, + 0.011206777766346931, + 0.0010694112861528993, + 0.03189621493220329, + 0.010586355812847614, + 0.013910510577261448, + -0.013205189257860184, + -0.03236642852425575, + 0.045114465057849884, + 0.020402083173394203, + 0.019043685868382454, + -0.005427058320492506, + -0.023158062249422073, + 0.0011249227682128549, + -0.0023298473097383976, + -0.0427895151078701, + 0.03881881386041641, + -0.02074168249964714, + -0.009469596669077873, + 0.0509398989379406, + 0.00808507576584816, + 0.006138911005109549, + 0.005910334177315235, + -0.006586267612874508, + 0.017397934570908546, + 0.019357161596417427, + -0.011840260587632656, + 0.004084988031536341, + 0.025313211604952812, + 0.009299797005951405, + -0.04299850016832352, + 0.01873020827770233, + -0.009619804099202156, + 0.008561821654438972, + -0.00240658363327384, + -0.006442591082304716, + -0.02219150960445404, + 0.031138645485043526, + -0.04276339337229729, + -0.009234488941729069, + 0.0030694555025547743, + -0.017959579825401306, + 0.002275968436151743, + -0.06577777862548828, + -0.0025078104808926582, + 0.0009624701924622059, + 0.020584942772984505, + 0.0270112082362175, + -0.011245962232351303, + -0.003213132033124566, + -0.04030782729387283, + -0.020114729180932045, + -0.02349766157567501, + -0.002468625782057643, + 0.0008767539984546602, + 0.033332981169223785, + -0.002845776965841651, + 0.037486542016267776, + -0.02144700288772583, + -0.0021045361645519733, + -0.034978728741407394, + -0.022700907662510872, + -0.01534727681428194, + -0.021238019689917564, + 0.022452739998698235, + -0.002414747141301632, + -0.009051628410816193, + 0.00864672102034092, + 0.016274644061923027, + 0.007040155120193958, + -0.01256517507135868, + 0.01165740005671978, + 0.008431206457316875, + -0.011663930490612984, + 0.003178845625370741, + 0.014015003107488155, + -0.014223987236618996, + 0.00442785257473588, + 0.03210519626736641, + -0.020206158980727196, + -0.0013118656352162361, + 0.04072579741477966, + -0.03602365031838417, + 0.03550118952989578, + 0.021851910278201103, + -0.009397758170962334, + -0.03672897443175316, + -0.02803000621497631, + 0.0013339068973436952, + -0.0019739209674298763, + -0.029597386717796326, + 0.036650605499744415, + 0.0028604711405932903, + 0.022126201540231705, + -0.016013413667678833, + -0.005090724676847458, + 0.009456534869968891, + -0.01312682032585144, + 0.030668431892991066, + 0.024411967024207115, + 0.021198835223913193, + -0.023380106315016747, + -0.023001322522759438, + 0.0223874319344759, + 0.014641955494880676, + -0.027507545426487923, + 0.019971052184700966, + 0.018051009625196457, + 0.02467319741845131, + -0.057679638266563416, + 6.836885586380959e-5, + -0.03288888931274414, + -0.03150436654686928, + -0.033176239579916, + -0.0022612742614001036, + 0.017998764291405678, + 0.011468008160591125, + -0.019461654126644135, + 0.03523996099829674, + -0.05188032612204552, + 0.028578588739037514, + -0.04634224623441696, + 0.005907068960368633, + 0.0011143102310597897, + -0.0007359345909208059, + 0.078316830098629, + 0.030642308294773102, + -0.022870708256959915, + 0.024137675762176514, + -0.015086046420037746, + 0.00020704537746496499, + 0.03751266375184059, + -0.06619574129581451, + -0.002950269030407071, + -0.01317906565964222, + 0.016483629122376442, + 0.023863382637500763, + 0.04780513420701027, + 0.04294625297188759, + -0.006501367781311274, + 0.021695172414183617, + 0.026697730645537376, + -0.02041514404118061, + 0.03881881386041641, + -0.008862236514687538, + 0.04911128804087639, + -0.06269525736570358, + -0.000519603316206485, + -0.028839819133281708, + 0.04900679364800453, + -0.03808737173676491, + -0.013466419652104378, + -0.018168563023209572, + 0.02514341101050377, + 0.005711146164685488, + -0.01287212036550045, + 0.016222398728132248, + -0.040203336626291275, + -0.0048850057646632195, + 0.01266313623636961, + 0.03811349347233772, + 0.01831224001944065, + -0.0006400141282938421, + 0.02391562983393669, + -0.028369605541229248, + -0.022831523790955544, + -0.007934868335723877, + 0.029048804193735123, + 0.019474714994430542, + 0.016993027180433273, + 0.025496073067188263, + -0.0010212470078840852, + -0.04898067191243172, + -0.0001358193258056417, + 0.03725143149495125, + -0.03962862864136696, + -0.023654399439692497, + -0.009658988565206528, + -0.04237154498696327, + 0.02172129601240158, + -0.03163498267531395, + 0.019409406930208206, + -0.030955784022808075, + 0.0178550872951746, + -0.015543200075626373, + 0.0008677742443978786, + 0.011010854505002499, + -0.006955255288630724, + 0.006524225231260061, + -0.004437648691236973, + -0.006798517424613237, + 0.0002789857389871031, + 0.02789939008653164, + 0.0023037241771817207, + -0.013583973050117493, + -0.04817085713148117, + 0.025313211604952812, + -0.03111252188682556, + 0.024242166429758072, + -0.03247091919183731, + -0.012323536910116673, + 0.005090724676847458, + 0.00558379665017128, + 0.018482040613889694, + 0.009587150067090988, + -0.010135733522474766, + 0.05336933955550194, + 0.03286276385188103, + 0.007863030768930912, + -0.010919424705207348, + -0.03732980415225029, + 0.00990715716034174, + 0.03139987587928772, + -0.02803000621497631, + -0.010795339941978455, + 0.004084988031536341, + 0.02902268059551716, + 0.011422292329370975, + 0.03863595426082611, + -0.007059747353196144, + 0.0025502603966742754, + -0.03837472200393677, + 0.026279762387275696, + -0.014655017293989658, + 0.0047445944510400295, + -0.0018808577442541718, + 0.02055882103741169, + 0.05788862332701683, + 8.64304747665301e-5, + 0.0019984114915132523, + -0.0049829669296741486, + 0.005920130293816328, + -0.006191156804561615, + -0.02985861711204052, + -0.02074168249964714, + 0.06118012219667435, + -0.059873972088098526, + -0.002019636332988739, + -0.007980584166944027, + 0.0006187891704030335, + 0.017593856900930405, + -0.03346359357237816, + -0.02761203795671463, + -0.030250461772084236, + 0.026136085391044617, + -0.016418321058154106, + -0.02177354134619236, + 0.04075191915035248, + 0.04111764207482338, + 0.033332981169223785, + 0.012721912935376167, + -0.01555626094341278, + 0.007732415106147528, + 0.0076605770736932755, + 0.039419643580913544, + 0.014028063975274563, + -0.006916070822626352, + -0.03816574066877365, + 0.01765916496515274, + -0.007817314937710762, + 0.007196893449872732, + 0.021238019689917564, + -0.009985526092350483, + 0.040673550218343735, + 0.004362544976174831, + 0.03578854352235794, + 0.0029796576127409935, + -0.02467319741845131, + 0.028839819133281708, + -0.010109610855579376, + 0.009874503128230572, + -0.00467275595292449, + -0.001782896462827921, + 0.006987909320741892, + -0.026436500251293182, + 0.04372994229197502, + -0.010220633819699287, + 0.045349571853876114, + 0.032967258244752884, + -0.043756067752838135, + 0.03727755695581436, + 0.03678121790289879, + -0.017306504771113396, + -0.04453975707292557, + 0.006987909320741892, + 0.0020588207989931107, + 0.013061512261629105, + -0.01155943889170885, + -0.02808225154876709, + -0.01611790619790554, + -0.009384696371853352, + -0.035344451665878296, + 0.027690406888723373, + -0.054544877260923386, + -0.047073692083358765, + 0.021460065618157387, + -0.03905392065644264, + 0.04004659876227379, + -0.020924542099237442, + -0.02518259547650814, + -0.029492894187569618, + -0.03999435156583786, + -0.012721912935376167, + 0.00644912151619792, + -0.027742652222514153, + -0.05517182871699333, + -0.020310651510953903, + -0.04294625297188759, + -0.020493512973189354, + 0.0170452743768692, + -0.017110580578446388, + 4.262848960934207e-5, + 0.011879445053637028, + 0.060814402997493744, + -0.0009902259334921837, + -0.033437471836805344, + -0.016993027180433273, + -0.004225399345159531, + 0.03051169216632843, + 0.017633041366934776, + -0.03270602598786354, + 0.0006175646558403969, + -0.024647073820233345, + 0.04626387730240822, + 0.005848292261362076, + 0.043338097631931305, + -0.01584361493587494, + -0.009593680500984192, + -0.03456076234579086, + -0.014223987236618996, + 0.004493160173296928, + -0.022687846794724464, + -0.053290970623493195, + -0.020780866965651512, + -0.041326623409986496, + 0.008294059894979, + 0.03719918802380562, + -0.01635301299393177, + -0.0182208102196455, + -0.021799664944410324, + -0.034221161156892776, + -0.007268731482326984, + -0.008561821654438972, + 0.028395727276802063, + -0.04694307595491409, + -0.008803458884358406, + -0.04467037320137024, + 0.03009372390806675, + -0.029780248180031776, + 0.014250109903514385, + 0.01664036698639393, + 0.009018974378705025, + 0.02219150960445404, + -0.033620331436395645, + -0.019239608198404312, + -0.0043527488596737385, + 0.028735326603055, + -0.015386461280286312, + -0.010801870375871658, + 0.018586531281471252, + -0.028813695535063744, + -0.036937955766916275, + 0.021381696686148643, + -0.05135786533355713, + 0.014890124090015888, + -0.029780248180031776, + -0.02378501370549202, + 0.007268731482326984, + -0.030119847506284714, + 0.010272879153490067, + 0.0042123375460505486, + 0.006452387198805809, + -0.021799664944410324, + 0.012336598709225655, + 0.013518664985895157, + 0.019122054800391197, + -0.0028082251083105803, + 0.010847586207091808, + -0.024307474493980408, + -0.007111993618309498, + 0.005009090062230825, + -0.00774547690525651, + 0.012068837881088257, + 0.009371635504066944, + 0.020859235897660255, + 0.008823052048683167, + -0.0018041214207187295, + 0.018299179151654243, + 0.03874044492840767, + -0.012552113272249699, + -0.01095860917121172, + 0.03228805959224701, + 0.018064072355628014, + -0.002782102208584547, + 0.0460548922419548, + -0.009221428073942661, + 0.047909628599882126, + 0.024516459554433823, + 0.00918224360793829, + -0.023993998765945435, + -0.03395993262529373, + 0.01555626094341278, + 0.0029029210563749075, + -0.01771141029894352, + -0.00474132876843214, + -0.005188685841858387, + -0.0006877702544443309, + 0.02088535763323307, + -0.00044735681149177253, + -0.020767804235219955, + -0.011187185533344746, + 0.008581413887441158, + 0.013936633244156837, + 0.007889153435826302, + -0.05334321781992912, + -0.046890828758478165, + -0.0063446294516325, + -0.014223987236618996, + -0.010122671723365784, + 0.017319565638899803, + -0.0072817932814359665, + -0.012068837881088257, + 0.06107563152909279, + -0.005929926410317421, + -0.0006367487367242575, + 0.00231841835193336, + -0.022700907662510872, + -0.028238989412784576, + -0.017633041366934776, + 0.022348247468471527, + -0.04030782729387283, + -0.021603740751743317, + -0.0062564644031226635, + 0.04331197589635849, + -0.02532627247273922, + -0.0005775637691840529, + -0.03147824481129646, + -0.025626687332987785, + 0.012317006476223469, + -0.007810784503817558, + 0.000724097597412765, + -0.010952077805995941, + 0.011663930490612984, + -0.02635813131928444, + -0.017737533897161484, + -0.010063895024359226, + 0.00565236946567893, + -0.025221779942512512, + -0.009894095361232758, + -0.0029110845644026995, + -0.008287529461085796, + -0.032026827335357666, + -0.026332009583711624, + -0.02784714475274086, + -0.015295030549168587, + 0.024072367697954178, + -0.029963109642267227, + -0.026436500251293182, + -0.006811578758060932, + -0.003774777054786682, + -0.015072985552251339, + 0.04211031645536423, + 0.0169538427144289, + 0.012088430114090443, + -0.004757655784487724, + 0.00848345272243023, + 0.012016591615974903, + 0.012323536910116673, + -0.0020490246824920177, + -0.024085428565740585, + -0.003572323592379689, + 0.014210925437510014, + 0.01112187746912241, + 0.010037772357463837, + 0.008294059894979, + -0.01742405816912651, + 0.03602365031838417, + -0.029048804193735123, + -0.007732415106147528, + 0.015086046420037746, + 0.0028751653153449297, + -0.025587502866983414, + 0.05851557478308678, + -0.036702848970890045, + 0.022126201540231705, + 0.03495260700583458, + -0.0045323446393013, + -0.02724631503224373, + -0.0059854378923773766, + 0.026462623849511147, + 0.014028063975274563, + -0.013355396687984467, + -0.000744098040740937, + -0.030616184696555138, + -0.013316212221980095, + -0.0012188024120405316, + -0.020310651510953903, + -0.005913599859923124, + -0.0036866117734462023, + -0.00911040510982275, + -0.021473126485943794, + -0.015621569007635117, + 0.01747630350291729, + -0.02480381168425083, + -0.008463859558105469, + 0.020166974514722824, + -0.027455298230051994, + -0.0007759354775771499, + -0.018233871087431908, + -0.021185772493481636, + 0.02789939008653164, + -0.020872296765446663, + 0.03727755695581436, + 0.008809990249574184, + -0.001263701356947422, + 0.013662341982126236, + 0.007399346679449081, + -0.030720677226781845, + 0.008627128787338734, + -0.025300148874521255, + 0.02191721834242344, + -0.015229723416268826, + 0.02224375493824482, + -0.034743621945381165, + -0.01317906565964222, + -0.0005057254456914961, + 0.005296443123370409, + -0.010272879153490067, + -0.00467275595292449, + -0.015229723416268826, + -0.022596416994929314, + 0.00913652777671814, + 0.014877062290906906, + 0.028892064467072487, + 0.012434559874236584, + -0.02967575564980507, + 0.0067658633925020695, + -0.032915011048316956, + 0.01451134029775858, + 0.009724295698106289, + 0.0163138285279274, + 0.02061106637120247, + -0.015151354484260082, + 0.05120112746953964, + 0.018103256821632385, + 0.005067866761237383, + 0.016601182520389557, + 0.02690671570599079, + 0.024072367697954178, + -0.017136704176664352, + -0.007196893449872732, + 2.5638320948928595e-5, + -0.010756155475974083, + 0.011605153791606426, + -0.020676374435424805, + 0.00918224360793829, + 0.01869102381169796, + -0.03448239341378212, + -0.023889506235718727, + -0.003049863036721945, + 0.027638159692287445, + 0.03234030306339264, + 0.029127173125743866, + -0.0196706373244524, + 0.019030623137950897, + 0.0012571705738082528, + 0.03484811633825302, + 0.022256817668676376, + -0.005603388883173466, + -0.0041045802645385265, + 0.0013069675769656897, + -0.005185420624911785, + 0.02434665895998478, + 0.0034090548288077116, + -0.013962756842374802, + -0.02957126311957836, + 0.004326626192778349, + -0.016000352799892426, + 0.024516459554433823, + -0.053708940744400024, + 0.0010996160563081503, + 0.007353631313890219, + -0.012264760211110115, + 0.016483629122376442, + -0.03322848677635193, + 0.019683700054883957, + 0.005531550385057926, + 0.003846615320071578, + 0.03189621493220329, + 0.025861794129014015, + -0.011840260587632656, + 0.013054981827735901, + -0.02957126311957836, + 0.020584942772984505, + 0.003928249701857567, + 0.0016294236993417144, + 0.0035853851586580276, + -0.020166974514722824, + -0.030851291492581367, + -0.01882163994014263, + 0.02667160890996456, + -0.011187185533344746, + 0.00415682652965188, + 0.0012669666903093457, + -0.004013149533420801, + -0.04143111780285835, + -0.04472261667251587, + 0.009201835840940475, + 0.014589709229767323, + -0.013884387910366058, + 0.004656428936868906, + -0.01588279940187931, + 0.004871943965554237, + 0.008039360865950584, + 0.050443559885025024, + -0.01196434535086155, + 0.04096090421080589, + -0.008614066988229752, + 0.04106539487838745, + 0.021930279210209846, + 0.017228133976459503, + -0.027272438630461693, + 0.022857647389173508, + -0.020911481231451035, + 0.005975641775876284, + -0.002011472824960947, + -0.0031674166675657034, + -0.02018003724515438, + 0.012140675447881222, + -0.010730032809078693, + -0.020206158980727196, + 0.030485570430755615, + -0.014354602433741093, + -0.01691465824842453, + 0.006987909320741892, + 0.010475332848727703, + -0.00021020871645305306, + -0.004640102386474609, + -0.0029535344801843166, + -0.0193963460624218, + -0.002457197057083249, + -0.021042097359895706, + -0.04252828285098076, + 0.015569322742521763, + 0.0006089929956942797, + -0.00019888192764483392, + -0.012317006476223469, + 0.006968316622078419, + -0.04229317605495453, + -0.0004991946625523269, + -0.0005449099699035287, + -0.008045891299843788, + -0.006537287030369043, + -0.023706644773483276, + 0.0044670370407402515, + -0.0181293785572052, + -0.011265554465353489, + -0.05485835298895836, + 0.015216661617159843, + -0.03881881386041641, + -0.021564556285738945, + -0.020911481231451035, + 0.0089275436475873, + -0.034273408353328705, + 0.02028452791273594, + -0.005387873854488134, + -0.011526784859597683, + -0.0010685949819162488, + -0.05336933955550194, + 0.03312399610877037, + 0.003549465909600258, + -0.0013061512727290392, + -0.0018694289028644562, + -0.004297237377613783, + -0.0039902920834720135, + 0.04699532315135002, + 0.026567116379737854, + -0.0005702166236005723, + 0.015712998807430267, + 0.01158556155860424, + 0.00039980473229661584, + 0.009378165937960148, + -0.008222222328186035, + -0.0012081898748874664, + 0.016561998054385185, + 0.01457664743065834, + 0.0035951812751591206, + -0.025639748200774193, + 0.010285940952599049, + -0.02079392783343792, + 0.020859235897660255, + -0.03780001774430275, + -0.010638602077960968, + -0.013675403781235218, + -0.005038478411734104, + -0.028578588739037514, + 0.01780284196138382, + 0.030407201498746872, + -0.01189250685274601, + -0.02117271162569523, + 0.0076605770736932755, + 0.029310034587979317, + -0.02402012050151825, + 0.023380106315016747, + 0.007693230640143156, + -0.006253199186176062, + -0.032209690660238266, + -0.013237842358648777, + -0.002062086248770356, + 0.03550118952989578, + -0.024738503620028496, + -0.01280028186738491, + 0.012349659577012062, + 0.023327860981225967, + -0.04305074363946915, + 0.028056127950549126, + 0.020519636571407318, + 0.03550118952989578, + -0.022557232528924942, + -0.0030319036450237036, + 0.05250728130340576, + 0.038479216396808624, + -0.022544169798493385, + 0.03288888931274414, + 0.007575677242130041, + -0.0018743270775303245, + -0.005649104248732328, + -0.003572323592379689, + 0.019448591396212578, + -0.006259729620069265, + 0.02742917649447918, + 0.0001784733176464215, + 0.016457505524158478, + -0.01644444465637207, + -0.016483629122376442, + -0.00962633453309536, + 0.007954461500048637, + 0.04699532315135002, + -0.022073956206440926, + 0.025665871798992157, + 0.008718559518456459, + 0.01957920752465725, + 0.032079074531793594, + 0.01617015153169632, + 0.032261934131383896, + 0.0007114442414604127, + -0.047726765275001526, + 0.0038792691193521023, + -0.0013534992467612028, + -0.019278792664408684, + -0.013727649115025997, + -0.03236642852425575, + -0.025731179863214493, + 0.004431118257343769, + -0.012839466333389282, + 0.024307474493980408, + -0.018704086542129517, + 0.04284176230430603, + 0.008555290289223194, + -0.029701879248023033, + 0.0033829316962510347, + 0.010364309884607792, + 0.002476789290085435, + 0.0104688024148345, + -0.017071396112442017, + 0.030250461772084236, + -0.013975818641483784, + 0.00498949782922864, + 0.014080310240387917, + -0.0196706373244524, + -0.00784996896982193, + 0.025535257533192635, + -0.008065483532845974, + 0.007268731482326984, + 0.019827375188469887, + 0.00617809547111392, + -0.005433589220046997, + 0.021786602213978767, + -0.002649854402989149, + -0.0029535344801843166, + 0.0214861873537302, + 0.008261406794190407, + 0.007771600037813187, + -0.005521754268556833, + 0.013858264312148094, + -0.0045976522378623486, + 0.012499867007136345, + -0.0008167526684701443, + -0.013962756842374802, + 0.03678121790289879, + -0.005848292261362076, + 0.006034418940544128, + 0.0008628761861473322, + 0.035396698862314224, + 0.047726765275001526, + -0.008444267325103283, + -0.0012424763990566134, + 0.02126414142549038, + -0.004894801881164312, + 0.037773892283439636, + 0.0013943164376541972, + 0.02447727508842945, + -0.012715382501482964, + -0.00903856661170721, + -0.022779278457164764, + -0.0037192655727267265, + 0.04388668015599251, + -0.0022269878536462784, + -0.028474096208810806, + -0.04145723953843117, + 0.0480402410030365, + -0.021081281825900078, + -0.03322848677635193, + 0.005910334177315235, + -0.014093372039496899, + 0.00997899565845728, + -0.013074574060738087, + 0.00404253788292408, + 0.01280028186738491, + 0.01620933599770069, + 0.03740817308425903, + 0.02369358390569687, + 0.010057364590466022, + -0.006507898680865765, + 0.005469508469104767, + -0.026828346773982048, + 0.0012122716289013624, + -0.006027888040989637, + 0.020924542099237442, + 0.01747630350291729, + 0.0012849263148382306, + 0.01617015153169632, + -0.016849350184202194, + -0.014171740971505642, + 0.00805895309895277, + -0.016849350184202194, + 0.017868148162961006, + 0.01312682032585144, + 0.01606566086411476, + 0.027220191434025764, + 0.028656957671046257, + -0.017606917768716812, + -0.008659782819449902, + -0.02360215224325657, + 0.02373276837170124, + -0.008633659221231937, + -0.005100520793348551, + -0.010364309884607792, + -0.0034025239292532206, + -0.015464830212295055, + 0.012068837881088257, + 0.0039576380513608456, + 0.01854734681546688, + 0.01534727681428194, + -0.020480452105402946, + -0.01771141029894352, + 0.022766215726733208, + 0.023902567103505135, + 0.0038400846533477306, + -0.013107228092849255, + 0.012819874100387096, + -0.00848345272243023, + -0.0013265598099678755, + -0.03769552335143089, + -0.018808577209711075, + -0.01798570342361927, + -0.0011583928717300296, + -0.024699319154024124, + -0.0019118788186460733, + -0.011990468017756939, + 0.022413555532693863, + -0.0024833199568092823, + -0.000874304969329387, + -0.032026827335357666, + -0.03505709767341614, + -0.009841850027441978, + -0.05143623426556587, + 0.007209954783320427, + -0.010906362906098366, + 0.0030335362534970045, + 0.03921065852046013, + 0.014850939624011517, + 0.004584590904414654, + -0.03328073397278786, + 0.0006771577754989266, + 0.04945088550448418, + -0.00885570514947176, + 0.0089275436475873, + -0.026423439383506775, + -0.03973311930894852, + 0.02289683185517788, + 0.0028767981566488743, + -0.004832759499549866, + 0.03213132172822952, + -0.022687846794724464, + 0.0008310387493111193, + 0.017123643308877945, + -0.00864672102034092, + -0.0050058248452842236, + 0.0075364927761256695, + -0.0027249581180512905, + -0.0023918894585222006, + -0.0063936104997992516, + 0.02070249803364277, + -0.02789939008653164, + 0.006818109657615423, + -0.03790450841188431, + -0.03678121790289879, + -0.008248344995081425, + -0.008836112916469574, + -0.004711940418928862, + 0.004924190230667591, + -0.03283664211630821, + 0.02938840351998806, + 0.008248344995081425, + -0.02391562983393669, + -0.0025861794129014015, + -0.008953666314482689, + 0.012153737246990204, + -0.0042123375460505486, + -0.015765246003866196, + 0.008163445629179478, + 0.0043592797592282295, + 0.013897448778152466, + 0.006628717761486769, + 0.003529873676598072, + -4.729696229333058e-5, + 0.00012663543748203665, + -0.02449033595621586, + -0.025783425197005272, + 0.007418938912451267, + 0.003866207553073764, + -0.012088430114090443, + 0.019370222464203835, + 0.00463683670386672, + -0.003302929922938347, + -0.0011265554931014776, + 0.023576030507683754, + 0.0242029819637537, + -0.010494925081729889, + -0.012330067344009876, + 0.011161061935126781, + -0.024503396824002266, + 0.015477892011404037, + 0.005185420624911785, + 0.0008538963738828897, + -0.010834524407982826, + -0.007164239417761564, + -0.017267318442463875, + -0.0197620689868927, + -0.0057405345141887665, + 0.04662960022687912, + -0.01807713322341442, + -0.029754124581813812, + -0.02396787516772747, + -0.013779895380139351, + 0.04414791241288185, + -0.023562967777252197, + -0.014067248441278934, + 0.009156120009720325, + -0.006122583989053965, + -0.009306327439844608, + -0.02304050698876381, + 0.01724119670689106, + -0.0004910312127321959, + 0.022909892722964287, + -0.017776718363165855, + -0.013531726785004139, + -0.033568087965250015, + -0.0009183876099996269, + -0.01528196968138218, + -0.023667460307478905, + 0.005962580442428589, + -0.033385224640369415, + 0.011311269365251064, + 0.014628893695771694, + 0.010736563242971897, + 0.010259818285703659, + -0.007445062045007944, + 0.012042714282870293, + 0.04331197589635849, + -0.03435177728533745, + 0.002723325276747346, + -0.010573294013738632, + 0.009371635504066944, + 0.024790750816464424, + 0.002958432538434863, + 0.01555626094341278, + -0.009384696371853352, + -0.016248522326350212, + 0.009567557834088802, + -0.007503838744014502, + -0.03257541358470917, + -0.035213835537433624, + 0.008280999027192593, + -0.004545406438410282, + 0.014289294369518757, + 0.03312399610877037, + 0.0039576380513608456, + 0.023510722443461418, + -0.0004787860671058297, + 0.0017192215891554952, + -0.02130332589149475, + -0.0041045802645385265, + 0.016849350184202194, + 0.005090724676847458, + -0.01196434535086155, + 0.008189568296074867, + -0.05433589220046997, + -0.0196706373244524, + 0.01564769260585308, + 0.018769392743706703, + 0.014602771028876305, + -0.007386285346001387, + -0.01859959401190281, + 0.025639748200774193, + 0.0099724642932415, + 0.01492930855602026, + 0.005188685841858387, + -0.020937604829669, + 0.00911040510982275, + 0.01617015153169632, + 0.020493512973189354, + 0.019095931202173233, + -0.01952696032822132, + -0.008326713927090168, + 0.004356014542281628, + -0.0035755890421569347, + -0.012950489297509193, + -0.01534727681428194, + 0.04649898409843445, + -0.0032996644731611013, + -0.014432971365749836, + 0.025104226544499397, + -0.010965139605104923, + 0.03200070559978485, + -0.01733262650668621, + -0.011343923397362232, + 0.017267318442463875, + -0.011285146698355675, + -0.01207536831498146, + -0.00042449915781617165, + -0.003477627644315362, + 0.008744682185351849, + 0.023811137303709984, + -0.018913069739937782, + 0.03858370706439018, + 0.016588119789958, + 0.00803283043205738, + 0.017032211646437645, + 0.010005118325352669, + -0.026606300845742226, + -0.0004645000444725156, + -0.01630076766014099, + 0.01280028186738491, + -0.02079392783343792, + -0.0184951014816761, + 0.005420527420938015, + 0.008248344995081425, + -0.008039360865950584, + 0.02059800550341606, + -0.02018003724515438, + 0.00739281577989459, + -0.012251698412001133, + -0.006050745490938425, + 0.009874503128230572, + 0.006168299354612827, + -0.010481863282620907, + 0.02102903462946415, + 0.02070249803364277, + -0.03921065852046013, + -0.0017420791555196047, + 0.01617015153169632, + -0.011030446738004684, + -0.007046686019748449, + -0.014446032233536243, + -0.010762685909867287, + 0.0017306504305452108, + -0.004888270981609821, + -0.019357161596417427, + 0.013858264312148094, + 0.005224605090916157, + -0.002422910649329424, + -0.003240887774154544, + 0.029597386717796326, + 0.0016833024565130472, + 0.014890124090015888, + -0.008150383830070496, + -0.029701879248023033, + 0.0022596416529268026, + 0.017202012240886688, + -0.015530138276517391, + -0.004460506606847048, + -0.009358573704957962, + -0.02164292521774769, + 1.7041191313182935e-5, + -0.01593504473567009, + 0.005907068960368633, + 0.009241020306944847, + 0.0034384431783109903, + 0.009952872060239315, + 0.020075544714927673, + -0.02298826165497303, + 0.05804536119103432, + 0.021002911031246185, + -0.04945088550448418, + 0.00021959668083582073, + -0.006465448532253504, + 0.01095860917121172, + -0.0164052601903677, + -0.014589709229767323, + -0.0077585382387042046, + 0.013466419652104378, + 0.0004547038988675922, + 0.0012441090075299144, + 0.01186638418585062, + -0.016601182520389557, + -0.03973311930894852, + -0.02808225154876709, + 0.03111252188682556, + 0.006720148026943207, + 0.001295538735575974, + -0.01011614128947258, + -0.0067658633925020695, + 0.015190538950264454, + -0.007915276102721691, + -0.02402012050151825, + 0.0043756067752838135, + -0.009561027400195599, + 0.020532697439193726, + -0.018847761675715446, + -0.03738204762339592, + -0.020754743367433548, + 0.011010854505002499, + -0.00011408414866309613, + -0.02603159472346306, + -0.0017077927477657795, + 0.005929926410317421, + -0.003627835074439645, + 0.006040949374437332, + -0.021238019689917564, + 0.00603768415749073, + 0.014354602433741093, + -0.0022090282291173935, + -0.0001577585790073499, + -0.00739281577989459, + -0.001844938611611724, + -0.0182208102196455, + 0.012434559874236584, + 0.009280204772949219, + 0.005734004080295563, + 0.005606654100120068, + -0.002308622235432267, + -0.007451592944562435, + -0.010880240239202976, + 0.011036978103220463, + -0.0166795514523983, + -0.010214102454483509, + -0.009861442260444164, + 0.017202012240886688, + 0.013198657892644405, + 0.026384254917502403, + 0.015726061537861824, + -0.032261934131383896, + -0.03158273547887802, + 0.008764274418354034, + 0.0170452743768692, + -0.013028858229517937, + 0.004502956289798021, + 0.0077911922708153725, + 0.019422469660639763, + -0.0026825082022696733, + 0.02135557308793068, + -0.015399523079395294, + -0.007830376736819744, + -0.0151382926851511, + 0.001540442113764584, + -0.0013649280881509185, + -0.009332451038062572, + 0.003608242841437459, + -0.0005510325427167118, + 0.017410995438694954, + -0.0113765774294734, + -0.026201393455266953, + -0.029780248180031776, + -0.008143853396177292, + 0.017776718363165855, + -0.002416379749774933, + -0.002275968436151743, + 0.005988703574985266, + -0.024738503620028496, + -0.009521842934191227, + 0.0016359544824808836, + 0.0011788015253841877, + -0.0015151354018598795, + -0.020454328507184982, + -0.012486806139349937, + 0.017972640693187714, + 0.005593592766672373, + -0.02271397039294243, + -0.0021469860803335905, + -0.010161856189370155, + 0.004290706943720579, + 0.014824816957116127, + -0.009450004436075687, + 0.0006898111314512789, + -0.018586531281471252, + -0.005169093608856201, + 0.0033159914892166853, + -0.0182208102196455, + -0.0014343173243105412, + 0.0066352481953799725, + -0.019226545467972755, + 0.0033927278127521276, + -0.0062727914191782475, + 0.009012443944811821, + 0.02415073662996292, + -0.007634453941136599, + -0.00967205036431551, + -0.04211031645536423, + 0.007647515274584293, + -0.014602771028876305, + 0.01448521763086319, + -0.007170770317316055, + 0.009658988565206528, + -0.0027886328753083944, + 0.02387644536793232, + -0.025065042078495026, + 0.02037595957517624, + -0.01448521763086319, + 0.018860824406147003, + 0.004241726361215115, + -0.0029796576127409935, + -0.009430412203073502, + 0.010410025715827942, + -0.028892064467072487, + 0.010919424705207348, + 0.022034771740436554, + -0.013041920028626919, + 0.0129178361967206, + 0.0020588207989931107, + 0.004803371150046587, + 0.002326581859961152, + -0.0014898288063704967, + -0.011161061935126781, + -0.01413255650550127, + -3.1225179554894567e-5, + -0.029754124581813812, + -0.01371458824723959, + -0.024842996150255203, + -0.014498278498649597, + 0.0029208806809037924, + 0.040020473301410675, + 0.02168210968375206, + -0.0099724642932415, + -0.03401217982172966, + -0.03461300954222679, + 0.0034286470618098974, + 0.0163138285279274, + 0.000792262377217412, + -0.0009722663089632988, + -0.006573206279426813, + -0.021708233281970024, + -0.005178889725357294, + 0.006661371327936649, + 0.006014826241880655, + 0.030616184696555138, + -0.01789427176117897, + 0.008764274418354034, + 0.008509575389325619, + 0.020571881905198097, + -0.01207536831498146, + 0.0042351954616606236, + -0.015425645746290684, + -0.016601182520389557, + -0.002852307865396142, + 0.02980637177824974, + 0.0019200423266738653, + 0.016366075724363327, + 0.0024359719827771187, + -0.021316388621926308, + -0.0029290441889315844, + 0.0023053570184856653, + -0.017698349431157112, + 0.015177477151155472, + 0.0008392021991312504, + -0.004907863214612007, + 0.02307969145476818, + -0.03926290571689606, + -0.011017385870218277, + -0.009561027400195599, + 0.0025649545714259148, + -0.00015184008225332946, + 0.0024620951153337955, + -0.0017192215891554952, + -0.022034771740436554, + 0.03766940161585808, + -0.0008302223868668079, + 0.005149501375854015, + 0.024829935282468796, + 0.04412178695201874, + -0.007347100879997015, + 0.005466242786496878, + -0.02304050698876381, + 0.023771952837705612, + 0.004947047680616379, + 0.028343481943011284, + -0.02509116567671299, + 0.02938840351998806, + 0.00890142098069191, + 0.0014890123857185245, + -0.016222398728132248, + -0.013283558189868927, + -0.00019347365014255047, + -0.002029432449489832, + 0.0029976170044392347, + 0.003242520382627845, + -0.0022531109862029552, + 0.023249492049217224, + 0.010331655852496624, + -0.0005151134100742638, + -0.022465800866484642, + 0.010730032809078693, + 0.010364309884607792, + -0.01280028186738491, + 0.004584590904414654, + 0.003804165404289961, + -0.03325461223721504, + -0.006929132156074047, + 0.0007187913288362324, + 0.010899832472205162, + -0.02527402713894844, + -0.05316035449504852, + -0.024921365082263947, + -0.005580530967563391, + -0.00144819519482553, + 0.000788180623203516, + -0.014681139960885048, + -0.029963109642267227, + -0.0016800370067358017, + 0.001524115214124322, + -0.021381696686148643, + 0.02335398457944393, + -0.025404641404747963, + -0.017410995438694954, + 0.006416467949748039, + -0.023771952837705612, + 0.011735768988728523, + -0.0059952340088784695, + 0.0113765774294734, + -0.026044655591249466, + -0.004656428936868906, + 0.0055250199511647224, + 0.019370222464203835, + 0.02126414142549038, + 0.024869119748473167, + -0.00042245828080922365, + -0.0030710881110280752, + 0.02271397039294243, + 0.005394404754042625, + 0.01588279940187931, + -0.018521225079894066, + 0.016104845330119133, + 0.036937955766916275, + 0.012545582838356495, + 0.02112046629190445, + -0.005946253426373005, + -0.032209690660238266, + -0.011624746024608612, + -0.012754566967487335, + 0.0057470654137432575, + -0.019879622384905815, + 0.004297237377613783, + -0.009325919672846794, + 0.011605153791606426, + 0.00245882966555655, + -0.0009036933770403266, + -0.02061106637120247, + 0.006909539923071861, + 0.024189921095967293, + -0.016039537265896797, + -0.007497308310121298, + 0.00955449603497982, + 0.019030623137950897, + 0.0016449341783300042, + 0.023014385253190994, + 0.003379666246473789, + -0.013583973050117493, + 0.016784043982625008, + 0.008196098729968071, + -0.043938927352428436, + 0.01606566086411476, + -0.010227164253592491, + -0.0002663324121385813, + -0.03234030306339264, + 0.021251080557703972, + 0.02200864814221859, + 0.017789779230952263, + 0.005890741944313049, + 0.012493336573243141, + -0.00784996896982193, + 0.022256817668676376, + 0.0019510634010657668, + 0.0178550872951746, + -0.019801253452897072, + 0.013492542318999767, + -0.04662960022687912, + -0.0015412584180012345, + -0.00164085254073143, + -0.0015118700684979558, + 0.011624746024608612, + 0.005949519108980894, + -0.030119847506284714, + 0.01943553052842617, + 0.0030678226612508297, + 0.027977759018540382, + -0.017633041366934776, + -0.024594828486442566, + -0.014994616620242596, + 0.00018867762992158532, + 0.001004920108243823, + -0.007693230640143156, + -0.012421498075127602, + 0.0005922579439356923, + 0.01564769260585308, + 0.016601182520389557, + 0.00298455567099154, + -0.02494748868048191, + -0.005577265750616789, + -0.016797104850411415, + -0.005240931641310453, + -0.022113140672445297, + -0.0052703204564750195, + 0.02153843455016613, + 0.007954461500048637, + -0.005250727757811546, + 0.007595269475132227, + -0.0011249227682128549, + -0.006537287030369043, + 0.011082693003118038, + 0.005051539745181799, + -0.006543817929923534, + 0.04892842471599579, + -0.034456267952919006, + 0.009476127102971077, + 0.0008759376942180097, + 0.009789603762328625, + -0.03975924476981163, + -0.002540464047342539, + -0.02467319741845131, + 0.005296443123370409, + -0.012682728469371796, + -0.00474132876843214, + -0.030772922560572624, + 0.023745829239487648, + -0.024007059633731842, + 0.020428204908967018, + 0.05496284365653992, + 0.0018743270775303245, + 0.013636219315230846, + 0.0052376664243638515, + -0.004695613868534565, + -0.013453357852995396, + 0.004143764730542898, + -0.00565236946567893, + -0.003395993262529373, + -0.007170770317316055, + 0.035109344869852066, + -0.0030531284864991903, + -0.00903856661170721, + 0.009704703465104103, + 0.005090724676847458, + -0.0016033006832003593, + 0.004956843797117472, + 0.05302974209189415, + -0.048588827252388, + -0.0007796090212650597, + -0.011285146698355675, + -0.010932485572993755, + 0.0005751147400587797, + -0.0016604447737336159, + -0.015412584878504276, + 0.004068661015480757, + -0.030172092840075493, + -0.018051009625196457, + -0.013139881193637848, + 0.017489364370703697, + 0.015569322742521763, + 0.031661104410886765, + 0.015895860269665718, + -0.006014826241880655, + -2.867410148610361e-5, + -0.02855246514081955, + 0.0002644956111907959, + 0.01280028186738491, + -0.024503396824002266, + -0.005910334177315235, + -0.011970875784754753, + -0.0008375694742426276, + 0.008718559518456459, + -0.0005416445783339441, + -0.016797104850411415, + 0.007320977747440338, + -0.026880592107772827, + -0.014093372039496899, + 0.0025241372641175985, + 0.00787609163671732, + -0.004284176044166088, + 0.010076956823468208, + -0.02434665895998478, + -0.03377706930041313, + 0.008405082859098911, + -0.0029192480724304914, + 0.003650692757219076, + 0.016588119789958, + 0.01626158319413662, + -0.008444267325103283, + 0.010096549056470394, + -0.009025504812598228, + -0.00544338533654809, + -0.008489983156323433, + -0.013205189257860184, + -0.01312682032585144, + 0.0017306504305452108, + 0.027324683964252472, + 0.0021665783133357763, + 0.0017273849807679653, + 0.007647515274584293, + -0.012395375408232212, + -0.004333156626671553, + -0.010233694687485695, + -0.008000176399946213, + -0.0026057716459035873, + 1.434980640624417e-5, + 0.015477892011404037, + 0.001263701356947422, + 0.0013649280881509185, + -0.03667672723531723, + -0.014968493022024632, + -0.005142970476299524, + -0.008888359181582928, + 0.0018726943526417017, + 0.02416379749774933, + -0.013414173386991024, + 0.0037290616892278194, + -0.0013249272014945745, + 0.02298826165497303, + 0.010135733522474766, + -0.02672385424375534, + 0.007908745668828487, + 0.005959315225481987, + -0.022687846794724464, + -0.003379666246473789, + 0.03045944683253765, + -0.008248344995081425, + 0.005662165582180023, + -0.00040776407695375383, + 0.008045891299843788, + -0.024411967024207115, + -0.00016990170115604997, + 0.026645485311746597, + 0.023158062249422073, + -0.01273497473448515, + 0.012552113272249699, + -0.023380106315016747, + 0.015765246003866196, + 0.0031755801755934954, + -0.02813449688255787, + 0.0063870796002447605, + 0.004408260341733694, + 3.214356547687203e-5, + -0.02485605888068676, + 0.008934074081480503, + 0.022178448736667633, + 0.009508781135082245, + -0.0025127085391432047, + 0.018808577209711075, + 0.001748609938658774, + -0.009992056526243687, + 0.004509487189352512, + 0.013518664985895157, + -0.009267142973840237, + 0.0026269967202097178, + 0.023445414379239082, + -0.015595445409417152, + -0.020166974514722824, + 0.015007677488029003, + 0.0004338871221989393, + -0.0003230683505535126, + -0.014981554821133614, + 0.012290882878005505, + -0.014864001423120499, + 0.004894801881164312, + -0.021342510357499123, + -0.015765246003866196, + -0.010318594984710217, + 0.014824816957116127, + -0.02411155216395855, + 0.005156031809747219, + 0.00456826388835907, + 0.0013086003018543124, + -0.019043685868382454, + 0.00669402489438653, + 0.006720148026943207, + -0.009214896708726883, + 0.012748036533594131, + 0.008274467661976814, + 0.014276232570409775, + -0.008444267325103283, + 0.011435354128479958, + -0.0008710395777598023, + -0.015543200075626373, + 0.003493954660370946, + -0.019239608198404312, + -0.020493512973189354, + -0.011428823694586754, + -0.032314181327819824, + 0.0005934824584983289, + -0.012643544003367424, + -0.004117641597986221, + -0.0193963460624218, + 0.018560409545898438, + -0.008921013213694096, + -0.005743800196796656, + 0.011546377092599869, + -0.0026841408107429743, + -0.006050745490938425, + -0.01153984572738409, + 0.017881210893392563, + 0.00593319209292531, + 0.013727649115025997, + -0.0017779984045773745, + -0.008744682185351849, + -0.016901597380638123, + -0.002764142584055662, + -0.015164416283369064, + -0.014524402096867561, + 0.01957920752465725, + 0.0024522989988327026, + 0.02298826165497303, + -0.028761450201272964, + 0.0197620689868927, + -0.030172092840075493, + -0.0031217015348374844, + 0.0009208366391249001, + 0.00669402489438653, + 0.017959579825401306, + -0.010338187217712402, + 0.002582913963124156, + 0.01357091125100851, + -0.005090724676847458, + -0.015086046420037746, + -0.0011290045222267509, + -0.0028849614318460226, + 0.0063707525841891766, + 0.010240226052701473, + 0.0008330795681104064, + -0.007040155120193958, + -0.010037772357463837, + 0.03471750020980835, + -0.006158503238111734, + -0.02130332589149475, + -0.004542140755802393, + -0.012277822010219097, + 0.0011918629752472043, + -0.007144647184759378, + -0.004342952743172646, + -0.023615214973688126, + 0.016979966312646866, + 0.03388156369328499, + -0.015543200075626373, + -0.004307033494114876, + -0.007863030768930912, + 0.01011614128947258, + -0.0019624922424554825, + 0.019827375188469887, + -0.00415682652965188, + -0.0010098181664943695, + -0.013028858229517937, + -0.020689435303211212, + -0.0009624701924622059, + 0.005351954605430365, + 0.00718383165076375, + 0.0038074308540672064, + 0.014472155831754208, + 0.009854910895228386, + 0.009051628410816193, + 0.014197863638401031, + -0.00836589839309454, + 0.01990574412047863, + 0.018299179151654243, + 0.003363339463248849, + -0.019370222464203835, + 0.017959579825401306, + 0.011180654168128967, + 0.0018188155954703689, + 0.028735326603055, + 0.009632864966988564, + 0.018886946141719818, + -0.003987026866525412, + -0.014380725100636482, + -0.0006563409697264433, + 0.0013151310849934816, + 0.03764327988028526, + -0.02126414142549038, + 0.02677609957754612, + 0.004267849028110504, + -0.0005869517335668206, + 0.01168352272361517, + -0.03466525301337242, + 0.012441090308129787, + -0.015673814341425896, + -0.010573294013738632, + 0.03719918802380562, + -0.021760480478405952, + -0.023066630586981773, + 0.011010854505002499, + -0.01738487370312214, + 0.013427235186100006, + -0.007190362550318241, + 0.020428204908967018, + 0.01687547378242016, + 0.007059747353196144, + -0.01691465824842453, + -0.0007485879468731582, + 0.005603388883173466, + -0.01626158319413662, + 0.02327561564743519, + -0.0024180125910788774, + 0.00537481252104044, + 0.006994439754635096, + -0.03968087583780289, + -0.013440296053886414, + 0.0035102814435958862, + -0.009299797005951405, + -0.010357779450714588, + -0.005815638229250908, + -0.022870708256959915, + -0.021616803482174873, + -0.0007338937139138579, + -0.020245343446731567, + 0.0019722883589565754, + 0.005910334177315235, + -0.016588119789958, + 0.02149925008416176, + -0.0027592445258051157, + 0.012852528132498264, + -0.019461654126644135, + -0.015412584878504276, + 0.020663311704993248, + 0.0037878386210650206, + 0.004045803565531969, + 0.003343747230246663, + -0.00481316726654768, + -0.0035429352428764105, + 0.005923395976424217, + -0.0013543155509978533, + -0.030015354976058006, + -0.017541611567139626, + -0.036337126046419144, + -0.004486629273742437, + 0.0016661591362208128, + 0.005195216741412878, + -0.03902779892086983, + 0.006040949374437332, + 0.011807607486844063, + 0.009299797005951405, + -0.00787609163671732, + 0.020023299381136894, + 0.006481775548309088, + 0.004307033494114876, + 0.016431381925940514, + 0.0012620686320587993, + 0.010984731838107109, + -0.0012269658036530018, + -0.002733121393248439, + -0.009887564927339554, + -0.0019167769933119416, + 0.01153984572738409, + -0.029884740710258484, + -0.005587061867117882, + 0.01242802944034338, + -0.0026237312704324722, + 0.01728038117289543, + 0.0005971560021862388, + -0.01357091125100851, + 0.01374071091413498, + 0.01664036698639393, + 0.02803000621497631, + 0.020389020442962646, + 0.0052311355248093605, + 0.03194845840334892, + -0.014772570692002773, + -0.004418056458234787, + 0.014746447093784809, + -0.0032768070232123137, + 0.010383902117609978, + -8.224671182688326e-5, + 0.010135733522474766, + 0.00725567014887929, + -0.008274467661976814, + -0.015660753473639488, + -2.637813304318115e-5, + 0.003027005586773157, + -0.02159067988395691, + -0.027298560366034508, + -0.01374071091413498, + 0.04574141651391983, + 0.005221339408308268, + 0.02186497114598751, + 0.01032512541860342, + 0.013322742655873299, + -0.013806018978357315, + -0.007693230640143156, + -0.007503838744014502, + 0.0010441046906635165, + 0.005649104248732328, + 0.007125054951757193, + 0.002150251530110836, + -0.0015208498807623982, + 0.0163138285279274, + 0.008868766948580742, + -0.025117287412285805, + 0.01780284196138382, + 0.005946253426373005, + 0.009227958507835865, + 0.0029012884479016066, + 0.017554672434926033, + -0.015177477151155472, + 0.010168387554585934, + -0.011709645390510559, + 0.009077751077711582, + 0.012819874100387096, + 0.00470867520198226, + -0.0023592356592416763, + 0.006576471496373415, + -0.004836025182157755, + 0.007458123378455639, + -0.027821021154522896, + -0.00018837150128092617, + -0.0027461829595267773, + -0.018717147409915924, + -0.0012065571499988437, + -0.002222089795395732, + -0.0066417790949344635, + 0.004176418762654066, + 0.0071511780843138695, + 0.00551195815205574, + -0.0006836885586380959, + -0.007477715611457825, + 0.0022792338859289885, + 0.029754124581813812, + -0.021969463676214218, + -0.004669490735977888, + -0.002765775192528963, + -0.010527579113841057, + -0.005678492598235607, + -0.015072985552251339, + 0.012996205128729343, + 0.011598623357713223, + 0.008992851711809635, + -0.010083487257361412, + 0.022021709010004997, + 0.00317231472581625, + -0.008163445629179478, + -0.006220545154064894, + 0.00869243685156107, + 0.013453357852995396, + -0.035161592066287994, + 0.006227076053619385, + 0.048850055783987045, + 0.01308110449463129, + 0.0018188155954703689, + -0.004679286852478981, + 0.006246668286621571, + 0.020297590643167496, + -0.0009118568268604577, + -0.00913652777671814, + -0.008653252385556698, + 0.012317006476223469, + 0.023850321769714355, + 0.017815902829170227, + 0.0039021268021315336, + 0.017737533897161484, + 0.008685905486345291, + -0.008280999027192593, + -0.006935663055628538, + 0.007765069138258696, + -0.00014724813809152693, + 0.009058158844709396, + -0.009776541963219643, + -0.014681139960885048, + -0.013309680856764317, + 0.006367487367242575, + -0.012219044379889965, + 0.008405082859098911, + -0.00808507576584816, + -0.01457664743065834, + 0.02789939008653164, + 0.012421498075127602, + 0.006354425568133593, + -0.009521842934191227, + 0.01415867917239666, + -0.025900978595018387, + 0.0178550872951746, + 0.015177477151155472, + -0.009103873744606972, + 0.0015110537642613053, + -0.021251080557703972, + -2.2500495106214657e-5, + -0.007105462718755007, + -0.009848380461335182, + -0.0057405345141887665, + 0.006569940596818924, + 0.007588738575577736, + -0.007575677242130041, + -0.026292825117707253, + -0.006579736713320017, + -0.004081722814589739, + 0.003529873676598072, + 0.012767628766596317, + -0.003487423760816455, + -0.0008106300956569612, + 0.0031641514506191015, + -0.026201393455266953, + 0.007209954783320427, + -0.009867972694337368, + -0.005309504922479391, + 0.0063707525841891766, + -0.010821462608873844, + 0.005309504922479391, + -0.012434559874236584, + -0.0013420704053714871, + 0.012447621673345566, + 0.019775129854679108, + 0.006413202732801437, + 0.005626246333122253, + 8.296101441374049e-5, + 0.006573206279426813, + 0.00666790222749114, + 0.019278792664408684, + -0.0020947400480508804, + -0.014393786899745464, + -6.729739834554493e-5, + 0.011552907526493073, + 0.007934868335723877, + -0.009874503128230572, + -0.007438531145453453, + 0.004009884316474199, + -0.00913652777671814, + -5.729718031943776e-5, + 0.0012277821078896523, + 0.016836289316415787, + 0.01575218327343464, + 0.0009771643672138453, + 0.004457240924239159, + 0.009058158844709396, + -0.00903856661170721, + -0.032026827335357666, + 0.010266348719596863, + 0.01751548796892166, + 0.008235283195972443, + -0.007111993618309498, + 0.03168722987174988, + 0.008914481848478317, + -0.007007501553744078, + 0.008809990249574184, + 1.3622749065689277e-5, + -0.011879445053637028, + 0.03129538521170616, + 0.005975641775876284, + -0.008222222328186035, + -0.0028082251083105803, + 0.017972640693187714, + -0.004640102386474609, + -0.002001676708459854, + -0.0007914460147731006, + -0.00593319209292531, + -0.00628258753567934, + 0.013009265996515751, + 0.009221428073942661, + -0.008888359181582928, + 0.039132289588451385, + -0.02518259547650814, + 0.00843773689121008, + 0.014354602433741093, + 0.005462977569550276, + 0.017724473029375076, + 0.00621401472017169, + -0.0052539934404194355, + -0.020898420363664627, + -0.014837877824902534, + 0.011957814916968346, + -0.007654046174138784, + 0.008509575389325619, + -0.003947841934859753, + 0.02023228257894516, + 0.004571529105305672, + 0.016588119789958, + -0.0015053392853587866, + 0.010684316977858543, + -0.006850763224065304, + -0.021420881152153015, + -0.02014085277915001, + 0.029362279921770096, + 0.011951283551752567, + 0.010240226052701473, + -0.03591915965080261, + -0.004444179590791464, + -0.006266260519623756, + 0.0029910863377153873, + 0.005041743628680706, + -0.02719406969845295, + 0.0090646892786026, + 0.01284599769860506, + 0.012669666670262814, + -0.015830552205443382, + 0.0027069984935224056, + 0.01775059476494789, + 0.014498278498649597, + 0.022922953590750694, + 0.002571485238149762, + 0.002254743594676256, + -0.004293972160667181, + 0.005518489051610231, + 0.012088430114090443, + -0.01850816234946251, + -0.019657576456665993, + 0.016366075724363327, + -0.008581413887441158, + -0.017828963696956635, + -0.004111111164093018, + -0.016366075724363327, + 0.012695790268480778, + -0.0019984114915132523, + -0.01329008862376213, + 0.007229547016322613, + 0.02144700288772583, + -0.005449916236102581, + 0.01729344204068184, + -0.0005281749181449413, + -0.00767363840714097, + -0.003477627644315362, + 0.004525814205408096, + 0.016927719116210938, + -0.01597422920167446, + 0.024555644020438194, + 0.008587944321334362, + 0.016888534650206566, + 0.025522194802761078, + 0.03213132172822952, + -0.002940472913905978, + 0.012258229777216911, + 0.02298826165497303, + -0.01133086159825325, + -0.0214861873537302, + -0.013159473426640034, + -0.0021110668312758207, + -0.014354602433741093, + -0.01308110449463129, + 0.018586531281471252, + 0.017071396112442017, + 0.007993645966053009, + 0.024777688086032867, + -0.005469508469104767, + -0.013107228092849255, + 0.009939811192452908, + -0.024294413626194, + 0.005018886178731918, + -0.010181449353694916, + 0.008241814561188221, + 0.02140781842172146, + 0.003565792925655842, + 0.0018465713365003467, + -0.01934410072863102, + 0.00456826388835907, + -0.009632864966988564, + 0.010272879153490067, + 0.0008808357524685562, + -0.0026351602282375097, + 0.017698349431157112, + -0.0006473612156696618, + -0.013597034849226475, + 0.004695613868534565, + 0.018338363617658615, + 0.007614861708134413, + -0.015216661617159843, + 0.0019020827021449804, + 0.02046738937497139, + 0.017920395359396935, + -0.01032512541860342, + 0.01511217001825571, + -0.01630076766014099, + -0.0018775924108922482, + -0.004679286852478981, + -0.0035853851586580276, + -0.014419909566640854, + -0.01182066835463047, + -0.02317112311720848, + 0.004623775370419025, + -0.01644444465637207, + -0.0037780425045639277, + 0.004796840250492096, + -0.011879445053637028, + -0.010736563242971897, + 0.009900626726448536, + -0.017698349431157112, + 0.007732415106147528, + -0.01528196968138218, + 0.014602771028876305, + -0.027089577168226242, + -0.0054923659190535545, + 0.017358750104904175, + -0.012434559874236584, + -0.007738946005702019, + 0.00047960240044631064, + 0.0010987997520714998, + -0.014628893695771694, + 0.004013149533420801, + 0.010873708873987198, + 0.002284131944179535, + 0.011219839565455914, + -0.0019004500936716795, + 0.00484908651560545, + -0.0052605243399739265, + -0.023654399439692497, + -0.012571705505251884, + 0.02228293940424919, + -0.004832759499549866, + 4.392953997012228e-5, + 0.005087458994239569, + 0.00207351497374475, + 0.012499867007136345, + -0.0004173561464995146, + -0.03348971903324127, + 0.0003236806078348309, + -0.014890124090015888, + -0.004068661015480757, + 0.016836289316415787, + -0.00955449603497982, + 0.006439325399696827, + -0.0008767539984546602, + -0.02635813131928444, + 0.0081569142639637, + -0.015020739287137985, + -0.016483629122376442, + -0.008875297382473946, + 0.022413555532693863, + 0.0053682816214859486, + 0.0021110668312758207, + 0.0018580001778900623, + -0.008653252385556698, + -0.021969463676214218, + -0.014054187573492527, + -0.009508781135082245, + 0.00303680170327425, + -0.007046686019748449, + -0.002398420125246048, + -0.015621569007635117, + 0.004199276212602854, + -0.008679375052452087, + 0.004388668108731508, + -0.008320183493196964, + -0.015308092348277569, + -0.0042613185942173, + 0.01756773330271244, + -0.014393786899745464, + -0.001799223362468183, + 0.013936633244156837, + 0.007131585851311684, + -0.019422469660639763, + 0.02181272581219673, + 0.01729344204068184, + -0.026410378515720367, + -0.00746465427801013, + 0.001799223362468183, + 0.006031153257936239, + 0.0012808445608243346, + -0.0046303062699735165, + 0.00878386665135622, + 0.015438707545399666, + 0.0058874767273664474, + -0.015869736671447754, + 0.010070426389575005, + -0.007817314937710762, + -0.0033208895474672318, + -0.028212865814566612, + -0.0021486186888068914, + -0.0030433323699980974, + -0.03369870036840439, + 0.018299179151654243, + 0.011605153791606426, + 0.003601711941882968, + -0.0012702320236712694, + -0.010050834156572819, + -0.01673179678618908, + 0.00020735150610562414, + 0.0008392021991312504, + -0.012852528132498264, + 0.014041125774383545, + 0.00021653537987731397, + -0.01478563155978918, + 0.021512310951948166, + -0.033437471836805344, + -0.0025502603966742754, + -0.016431381925940514, + 0.0017420791555196047, + -0.013871326111257076, + -0.00589727284386754, + 0.00505807064473629, + -0.02677609957754612, + 0.027768775820732117, + -0.003742123255506158, + 0.005495631136000156, + -0.013583973050117493, + 0.009071220643818378, + 0.014106432907283306, + -0.0024718912318348885, + -0.02803000621497631, + 0.02925778739154339, + 0.001650648657232523, + -0.0013339068973436952, + 0.010827993974089622, + -0.01635301299393177, + 0.023380106315016747, + -0.018286116421222687, + 0.0010220633121207356, + 0.012408437207341194, + 0.0012783955316990614, + -0.004512752406299114, + -0.019683700054883957, + -0.00913652777671814, + -0.027063453570008278, + -0.0007126687560230494, + 0.006187891587615013, + -0.008542229421436787, + 0.001478399964980781, + -1.0733654562500305e-5, + 0.01168352272361517, + 0.0008775703608989716, + -0.014001941308379173, + -0.012532521039247513, + 0.01161168422549963, + -0.026880592107772827, + -0.0012130879331380129, + -0.013518664985895157, + 0.000677974137943238, + 0.03406442329287529, + 0.006040949374437332, + -0.0077911922708153725, + -0.01371458824723959, + -0.004137233830988407, + 0.0052605243399739265, + -0.023092754185199738, + -0.012460682541131973, + 0.004277645144611597, + -8.791009895503521e-5, + 0.00792180746793747, + -0.005505427252501249, + 0.018325302749872208, + 0.010952077805995941, + 0.004525814205408096, + -0.01649668999016285, + 0.007177301216870546, + 0.0025159737560898066, + -0.018521225079894066, + 0.014759508892893791, + 0.008418144658207893, + -0.027037329971790314, + 0.0016604447737336159, + -0.0009641028591431677, + 0.0004400096950121224, + 0.01009001862257719, + 0.011905568651854992, + 0.0031478244345635176, + 0.0003293950285296887, + 0.019592268392443657, + 0.004538875538855791, + -0.006044215057045221, + -0.001075125765055418, + 0.029701879248023033, + -0.02004942111670971, + 0.008470390923321247, + 0.01534727681428194, + 0.005766657646745443, + -0.01472032442688942, + 0.02803000621497631, + 0.010566763579845428, + -0.01039696391671896, + 0.003275174181908369, + 0.010827993974089622, + 0.016287706792354584, + 0.018847761675715446, + -0.01635301299393177, + -0.010442678816616535, + 0.012957020662724972, + 0.00498623214662075, + 0.008921013213694096, + 0.002863736590370536, + -0.005596857983618975, + 0.008078545331954956, + 0.0037257964722812176, + 0.03330685570836067, + -0.011481069028377533, + -0.019409406930208206, + 0.01116759330034256, + -0.009162651374936104, + 0.010161856189370155, + -0.003458035411313176, + -0.003660488873720169, + -0.011272084899246693, + 0.0076279230415821075, + 0.014641955494880676, + 0.007654046174138784, + 0.02271397039294243, + -0.01738487370312214, + 0.0065176947973668575, + -0.03811349347233772, + 0.0006571573321707547, + 0.02228293940424919, + -0.0076605770736932755, + -0.013871326111257076, + -0.0020571881905198097, + -0.00764098484069109, + -0.012891712598502636, + -0.010664724744856358, + 0.006844232324510813, + -0.0021878033876419067, + -0.0011143102310597897, + -0.0018106522038578987, + -0.0028425115160644054, + -0.009280204772949219, + 0.028212865814566612, + -0.004414791241288185, + 0.0030743535608053207, + -0.039550259709358215, + -0.0010024710791185498, + 0.0052539934404194355, + -0.011363515630364418, + 0.01588279940187931, + -0.002764142584055662, + 0.01728038117289543, + 0.018116317689418793, + 0.00833977572619915, + -0.008999382145702839, + -0.01714976504445076, + 0.0009461432928219438, + 0.0033568087965250015, + -0.023510722443461418, + 0.0009730826714076102, + 0.009874503128230572, + -0.018482040613889694, + 0.011396169662475586, + 0.002904553897678852, + -0.005880945827811956, + -0.0010098181664943695, + -0.012271290645003319, + -0.013701526448130608, + 0.01070390921086073, + -0.012512928806245327, + -0.015020739287137985, + -0.006436060182750225, + 0.021747417747974396, + 0.019879622384905815, + 0.011102285236120224, + -0.004431118257343769, + -0.005567469634115696, + 0.01873020827770233, + 0.006948724389076233, + 0.015438707545399666, + -0.014681139960885048, + 0.0042221336625516415, + 0.0035690581426024437, + -0.015046861954033375, + -0.01147453859448433, + 0.008992851711809635, + -0.012369251810014248, + -0.03685958683490753, + -0.011500661261379719, + -0.0040980493649840355, + -0.003242520382627845, + 0.004571529105305672, + -0.00784996896982193, + -0.016718735918402672, + 0.014380725100636482, + 0.013544788584113121, + -0.008940605446696281, + 0.009378165937960148, + -0.03649386391043663, + 0.006713617593050003, + -0.0143676633015275, + 0.001835142495110631, + -0.007320977747440338, + -0.010697378776967525, + -0.019422469660639763, + 0.005149501375854015, + 0.002169843763113022, + -0.01095860917121172, + 0.01116759330034256, + -0.004728267434984446, + 0.006631982978433371, + -0.00960021186619997, + 0.0014971758937463164, + -0.00787609163671732, + 0.0057535963132977486, + 0.004395199008285999, + -0.009489188902080059, + -0.01729344204068184, + 0.002450666157528758, + -0.017397934570908546, + -0.006478510331362486, + 0.003284970298409462, + 0.002212293678894639, + -0.003546200692653656, + 0.012336598709225655, + 0.029884740710258484, + -0.0016637101070955396, + 0.03098190762102604, + -0.016718735918402672, + -0.010971670038998127, + -0.0025241372641175985, + 5.017967851017602e-5, + -0.020754743367433548, + -0.01751548796892166, + 0.005221339408308268, + 0.00792180746793747, + 0.009495719335973263, + 0.007863030768930912, + -0.0023837259504944086, + 0.0035951812751591206, + -0.011363515630364418, + -0.014602771028876305, + -0.012578236870467663, + -0.016509750857949257, + -0.02485605888068676, + 0.023941751569509506, + 0.03286276385188103, + 0.008359367959201336, + 0.002089841989800334, + 0.015660753473639488, + 0.019174300134181976, + -0.0017322830390185118, + 0.018756331875920296, + 0.012493336573243141, + -0.012963551096618176, + 0.011507192626595497, + -0.0014669711235910654, + 0.009783072397112846, + 0.012121083214879036, + 0.0030743535608053207, + -0.01231047511100769, + -0.010932485572993755, + 0.017110580578446388, + 0.008568352088332176, + 0.014472155831754208, + -0.012578236870467663, + -0.006321772001683712, + -0.011259024031460285, + -0.011703114956617355, + -0.0391584150493145, + -0.02434665895998478, + -0.0036833465564996004, + 0.010233694687485695, + -0.0193963460624218, + -0.02055882103741169, + 0.0055086929351091385, + -0.008352837525308132, + 0.01995799131691456, + -0.001325743505731225, + -0.001921675051562488, + -0.016836289316415787, + -0.013440296053886414, + 0.006684228777885437, + 0.0036637543234974146, + -0.016196275129914284, + -0.008640190586447716, + 0.009867972694337368, + -0.01990574412047863, + -0.004143764730542898, + 0.005035213194787502, + 0.014067248441278934, + 0.007699761539697647, + -0.003598446724936366, + 0.013198657892644405, + -0.0014735019067302346, + 0.012388844043016434, + 0.0020343305077403784, + -0.004372341092675924, + -0.024464212357997894, + -0.01705833524465561, + -0.01775059476494789, + 0.009476127102971077, + -0.01573912240564823, + 0.02803000621497631, + -0.030668431892991066, + -0.012480274774134159, + -0.006419733166694641, + -0.005698084831237793, + 0.01147453859448433, + -0.005469508469104767, + 0.0031657840590924025, + 0.022831523790955544, + 0.007725884672254324, + -0.01245415210723877, + 0.009267142973840237, + -0.0021551495883613825, + 0.00024980143643915653, + -0.0019396345596760511, + 0.012610889971256256, + -0.006478510331362486, + -0.012689258903265, + -0.021002911031246185, + 0.004470302723348141, + -0.0021829053293913603, + 0.003389462362974882, + 0.009312857873737812, + -0.008006706833839417, + -0.006831170991063118, + 0.0025045450311154127, + 0.004205807112157345, + -0.00882958248257637, + -0.026854470372200012, + 0.02594016306102276, + -0.005041743628680706, + 0.005822169128805399, + -0.011703114956617355, + 0.019566144794225693, + 0.016901597380638123, + 0.020010236650705338, + -0.039367400109767914, + -0.011605153791606426, + -0.03638937324285507, + 0.01729344204068184, + -0.017019150778651237, + 0.004058864898979664, + 0.011030446738004684, + -0.003405789379030466, + 0.005538081284612417, + 0.008803458884358406, + 0.0068899476900696754, + 0.0022269878536462784, + 0.011383107863366604, + 0.0041470299474895, + -0.010318594984710217, + 0.0012947224313393235, + 0.005975641775876284, + 0.0004269481869414449, + -0.004372341092675924, + -0.007190362550318241, + 0.019775129854679108, + 0.0340905487537384, + -0.009658988565206528, + -0.007386285346001387, + 0.006220545154064894, + 0.015216661617159843, + -0.015007677488029003, + 0.007190362550318241, + 0.017450179904699326, + 0.009280204772949219, + 0.0006906274938955903, + -0.007249139249324799, + -0.019474714994430542, + 0.012989673763513565, + 0.006302179768681526, + -0.014419909566640854, + -0.008137322030961514, + 0.004800105933099985, + -0.012251698412001133, + 0.01901756227016449, + 0.021525371819734573, + 0.019775129854679108, + -0.025078102946281433, + 0.013427235186100006, + -0.01133086159825325, + 0.0024898508563637733, + -0.0033502778969705105, + -0.013688464649021626, + -0.016039537265896797, + 0.03359420970082283, + -0.011905568651854992, + -0.016339952126145363, + -0.004346218425780535, + -0.006700555793941021, + 0.030302708968520164, + 0.007432000711560249, + 0.004179683979600668, + -0.0077911922708153725, + -0.026854470372200012, + -0.012088430114090443, + -0.003947841934859753, + 0.009469596669077873, + -0.010096549056470394, + -0.008287529461085796, + 0.007425469812005758, + 0.011115347035229206, + 0.0052376664243638515, + 0.027768775820732117, + -0.019095931202173233, + 0.0071511780843138695, + 0.009815726429224014, + -0.02186497114598751, + 0.03406442329287529, + 0.016705675050616264, + -0.025313211604952812, + -0.01990574412047863, + -0.010560233145952225, + 0.009221428073942661, + 0.03139987587928772, + 0.01920042373239994, + -0.0055250199511647224, + -0.036937955766916275, + 0.012284352444112301, + 0.03022434003651142, + -6.653207674389705e-5, + 0.006253199186176062, + 0.012003529816865921, + -0.019448591396212578, + 0.008836112916469574, + 0.012232106178998947, + 0.0009600211633369327, + 0.01696690544486046, + 0.023628275841474533, + 0.01140270009636879, + 0.008999382145702839, + 0.003598446724936366, + 0.005626246333122253, + -0.02139475755393505, + -0.03448239341378212, + -0.011983937583863735, + 0.007634453941136599, + -0.0001853102003224194, + -0.01189250685274601, + 0.0096981730312109, + 0.00488174008205533, + -0.012055776081979275, + -0.0074124084785580635, + -0.007242608815431595, + 0.009384696371853352, + -0.025613626465201378, + 0.019605329260230064, + 0.0001335743727395311, + 0.001173087046481669, + -0.009632864966988564, + 0.004310299176722765, + -0.005077662877738476, + 0.013263965956866741, + -0.001044920994900167, + 0.026554055511951447, + 0.00913652777671814, + 0.010109610855579376, + -0.011572499759495258, + 0.025757301598787308, + 0.0019869825337082148, + 7.030767301330343e-5, + 0.028369605541229248, + -0.0009861441794782877, + -0.0214861873537302, + 0.005221339408308268, + 0.009097343310713768, + 0.014668078161776066, + -0.014615831896662712, + 0.01081493217498064, + -0.0006714433548040688, + -0.02677609957754612, + -0.008770805783569813, + -0.016392197459936142, + 0.0034286470618098974, + 0.0012269658036530018, + -0.010024710558354855, + 0.00035266083432361484, + -0.01301579736173153, + 0.013845203444361687, + 0.04069967195391655, + -0.009515311568975449, + 0.011278616264462471, + 0.011030446738004684, + 0.017554672434926033, + -0.022831523790955544, + -0.0012302312534302473, + 0.002906186506152153, + -0.008000176399946213, + 0.016091782599687576, + -0.00808507576584816, + 0.0018237136537209153, + -0.004911128431558609, + -0.005766657646745443, + -0.010821462608873844, + 0.005188685841858387, + 0.000491439423058182, + -0.016784043982625008, + 0.005534816067665815, + 0.0004371524846646935, + 0.014615831896662712, + -0.0045323446393013, + 0.014615831896662712, + 0.007647515274584293, + 0.008934074081480503, + 0.01733262650668621, + -0.0008069565519690514, + -0.014707262627780437, + 0.0007310365326702595, + 0.0022367839701473713, + 0.010651662945747375, + -0.017123643308877945, + -0.014419909566640854, + -0.02532627247273922, + -0.007366693112999201, + 0.005182154942303896, + 0.0024996469728648663, + -0.0043756067752838135, + 0.015425645746290684, + -0.0009322654223069549, + 0.02378501370549202, + -0.012493336573243141, + -0.017541611567139626, + 3.632095285865944e-6, + 0.019095931202173233, + 0.03602365031838417, + 0.022883769124746323, + 0.017998764291405678, + -0.006409937050193548, + 0.016901597380638123, + -0.015582384541630745, + 0.01738487370312214, + -0.038897182792425156, + 0.005120113026350737, + 0.01001818012446165, + 0.018325302749872208, + 0.01394969504326582, + -0.0030090459622442722, + 0.0019363692263141274, + 0.014028063975274563, + -0.021107403561472893, + -0.011428823694586754, + -0.010305533185601234, + 0.012186391279101372, + -0.010436148382723331, + -0.01037084124982357, + 0.0170452743768692, + -0.006876886356621981, + -0.013557849451899529, + 0.013610095717012882, + 0.01752854883670807, + 0.0076279230415821075, + -0.01738487370312214, + -0.020258406177163124, + 0.006357691250741482, + -0.017606917768716812, + -0.004166622646152973, + 0.0015379930846393108, + -0.005534816067665815, + -0.0035233430098742247, + 0.004486629273742437, + -0.008065483532845974, + 0.010997793637216091, + 0.02920554205775261, + -0.00308904773555696, + -0.02724631503224373, + -0.011030446738004684, + -0.014655017293989658, + 0.015242785215377808, + 0.014811755158007145, + 0.005306239239871502, + 0.014628893695771694, + -0.02130332589149475, + -0.018586531281471252, + -0.014328478835523129, + -0.0022514781448990107, + 0.005172358825802803, + -0.0017420791555196047, + -0.012584767304360867, + 0.031008031219244003, + 0.0065111638978123665, + 0.008979789912700653, + 0.025613626465201378, + -0.00666790222749114, + 0.00023694400442764163, + 0.02672385424375534, + -0.010083487257361412, + 0.007614861708134413, + -0.012499867007136345, + -0.00249474891461432, + 0.013048450462520123, + 0.009587150067090988, + 0.02808225154876709, + -0.008209160529077053, + 0.01593504473567009, + 0.027690406888723373, + -7.5460848165676e-5, + -0.009724295698106289, + 0.00857488252222538, + 0.004924190230667591, + 0.0012792118359357119, + -0.004996028263121843, + 0.008992851711809635, + -0.013766833581030369, + 0.013100696727633476, + -0.01573912240564823, + -0.0212118960916996, + -0.022021709010004997, + -0.012480274774134159, + -0.001532278722152114, + -0.02340622991323471, + 0.0169538427144289, + -0.00026918959338217974, + 0.004117641597986221, + -0.014733386225998402, + 0.02195640280842781, + -0.011415761895477772, + -0.010050834156572819, + -0.020545758306980133, + -0.006396875716745853, + 0.006661371327936649, + -0.024411967024207115, + -0.01910899206995964, + -0.012388844043016434, + 0.013211719691753387, + 0.011885976418852806, + -0.004372341092675924, + 0.007725884672254324, + 0.01095860917121172, + 0.016901597380638123, + -0.016744859516620636, + -0.020297590643167496, + 0.00993327982723713, + 0.006759332492947578, + -0.027559790760278702, + 0.00031796618713997304, + -0.024464212357997894, + -0.006031153257936239, + -0.01859959401190281, + -0.003415585495531559, + 0.004796840250492096, + 0.02980637177824974, + -0.005626246333122253, + -0.0223874319344759, + -0.03139987587928772, + 0.023562967777252197, + -0.0027184272184967995, + 0.03636325150728226, + 0.012375783175230026, + 0.008000176399946213, + -0.008274467661976814, + 0.005998499691486359, + -0.012264760211110115, + -0.0023494395427405834, + 0.011324331164360046, + -0.006468714214861393, + 0.006961786188185215, + -0.004401729442179203, + -0.00044531593448482454, + -0.004094784148037434, + 0.022700907662510872, + -0.016940781846642494, + 0.029701879248023033, + -0.008587944321334362, + -0.00045878562377765775, + -0.02447727508842945, + 0.01611790619790554, + -0.02336704544723034, + -0.009567557834088802, + -0.012062306515872478, + -0.0006371568888425827, + 0.00432336051017046, + -0.0060017649084329605, + 0.0032980318646878004, + -0.0031135380268096924, + -0.0028310827910900116, + -0.02476462721824646, + 0.01549095381051302, + 0.007954461500048637, + -0.009750419296324253, + -0.0023494395427405834, + 0.011637807823717594, + 0.009025504812598228, + 0.008418144658207893, + -0.001921675051562488, + -0.0010457372991368175, + 0.02027146704494953, + -0.009286735206842422, + -0.019827375188469887, + 0.0027886328753083944, + -0.015046861954033375, + -0.01747630350291729, + -0.003373135579749942, + 0.002019636332988739, + 0.03074680082499981, + -0.0032784396316856146, + 0.002184537937864661, + -0.006406671833246946, + 0.0016645265277475119, + -0.005570734851062298, + -0.0035070159938186407, + 0.007503838744014502, + 0.01606566086411476, + 0.0178550872951746, + -0.01845591701567173, + -0.01611790619790554, + -0.009606742300093174, + 0.0170452743768692, + 0.002195966662839055, + 0.006615655962377787, + 0.02766428329050541, + -0.0006530756363645196, + 0.009515311568975449, + 0.02186497114598751, + -0.014550524763762951, + 0.004904597997665405, + -0.00955449603497982, + -0.005031947512179613, + -0.0090646892786026, + -0.007699761539697647, + -0.007771600037813187, + -0.014210925437510014, + 0.01588279940187931, + -0.014681139960885048, + 0.004535610321909189, + -0.03448239341378212, + -0.013068042695522308, + -0.0024816873483359814, + -0.004633571486920118, + 0.02742917649447918, + 0.0021175977308303118, + -0.020911481231451035, + 0.0016057497123256326, + -0.0006987908855080605, + -0.0024816873483359814, + -0.023993998765945435, + 0.012630482204258442, + -0.008875297382473946, + 0.00393804581835866, + -0.004904597997665405, + -0.010573294013738632, + -0.0032637454569339752, + 0.014197863638401031, + -0.009005912579596043, + 0.012832935899496078, + 0.009495719335973263, + 0.013453357852995396, + -0.013303150422871113, + 0.00526705477386713, + -0.010063895024359226, + 0.002904553897678852, + 0.0004608264716807753, + -0.025247903540730476, + -0.008470390923321247, + 0.001049002748914063, + -0.004888270981609821, + 0.01859959401190281, + -0.015778306871652603, + 0.022230694070458412, + -0.012323536910116673, + 0.014289294369518757, + 0.009867972694337368, + 0.01350560411810875, + 0.017646104097366333, + 0.007451592944562435, + 0.03079904615879059, + 0.00603768415749073, + 0.005097255110740662, + 0.018482040613889694, + 0.009508781135082245, + 0.005760126747190952, + 0.02789939008653164, + -0.0029306767974048853, + -0.00037653889739885926, + -0.006791986525058746, + 0.005074397660791874, + 0.0003010270302183926, + 0.012996205128729343, + -0.013649280183017254, + -0.021107403561472893, + 0.015895860269665718, + -0.007941399700939655, + -0.0178550872951746, + 0.022439679130911827, + -0.0007820580503903329, + 0.00931938923895359, + -0.015373400412499905, + -0.020715558901429176, + -0.00028878188459202647, + 0.019892683252692223, + 0.012930897064507008, + 0.005201747175306082, + 0.019879622384905815, + 0.008326713927090168, + -0.002501279581338167, + 0.00988103449344635, + 0.014015003107488155, + -0.008698967285454273, + 0.010488394647836685, + 0.009051628410816193, + -0.006935663055628538, + -0.003601711941882968, + 0.009959403425455093, + -0.01259129773825407, + 0.019095931202173233, + -0.0015918718418106437, + -0.0007587922154925764, + 0.010978201404213905, + 0.025456886738538742, + 0.007510369643568993, + 0.0025045450311154127, + 0.015504015609622002, + 0.005273585673421621, + -0.014641955494880676, + 0.02447727508842945, + -0.021695172414183617, + -0.014877062290906906, + -0.0169538427144289, + 0.005649104248732328, + -0.016470566391944885, + -0.013753772713243961, + -0.001422072178684175, + -0.0016833024565130472, + 0.00746465427801013, + -0.008333245292305946, + -0.026619361713528633, + 0.011827199719846249, + 0.005727473180741072, + 0.007242608815431595, + -0.007425469812005758, + 0.0009118568268604577, + 0.00010561457020230591, + 0.019422469660639763, + -0.003347012447193265, + 0.016248522326350212, + -0.017881210893392563, + -0.003405789379030466, + -0.004702144302427769, + 0.003889065235853195, + 0.0007649148465134203, + -0.009998587891459465, + -0.017737533897161484, + 0.03505709767341614, + 0.01371458824723959, + -0.020402083173394203, + -0.003092312952503562, + 0.0011665563797578216, + -0.003302929922938347, + -0.012094960547983646, + -0.01986655965447426, + -0.005593592766672373 + ], + "239e054c-bffc-4992-8627-8d9f80c066cd": [ + -0.025287538766860962, + -0.016805194318294525, + -0.011947782710194588, + 0.03189941868185997, + -0.01007731631398201, + -0.01896565407514572, + 0.01960364356637001, + 0.05359102413058281, + 0.008214100264012814, + 0.03819230571389198, + -0.011607038788497448, + 0.03906228765845299, + 0.03259540721774101, + 0.016921192407608032, + 0.014876728877425194, + 0.001454504788853228, + -0.0010276688262820244, + 0.020299630239605904, + 0.011527289636433125, + -0.03187042102217674, + 0.016428200528025627, + -0.0339873805642128, + -0.0335523895919323, + 0.02579502947628498, + 0.0166166964918375, + 0.017559180036187172, + -0.031029434874653816, + 0.021488608792424202, + -0.031580425798892975, + -0.028665978461503983, + -0.013332507573068142, + 0.02314157783985138, + 0.0065611302852630615, + -0.0026371395215392113, + 0.011273544281721115, + 0.014746231026947498, + 0.034480370581150055, + -0.014042994007468224, + -0.002633514581248164, + -0.02720150537788868, + -0.03494436293840408, + -0.02450455352663994, + -0.011215546168386936, + -0.025273039937019348, + -0.0360463447868824, + 0.029956454411149025, + -0.04193323478102684, + 0.033030398190021515, + 0.03839530050754547, + -0.011578039266169071, + 0.026853511109948158, + -0.0031101934146136045, + -0.0204591266810894, + 0.013455755077302456, + 0.055997978895902634, + -0.016065707430243492, + 0.015993209555745125, + -0.05388101935386658, + 0.0016085644019767642, + -0.06658278405666351, + 0.0014218803262338042, + 0.016558699309825897, + -0.011483791284263134, + 0.001986463787034154, + 0.02702750824391842, + 0.010432559996843338, + -0.020720122382044792, + -0.03804730623960495, + 0.008482345379889011, + -0.009577075950801373, + -0.0072462428361177444, + -0.005183655768632889, + -0.018951155245304108, + -0.016848692670464516, + 0.043238211423158646, + -0.026592515408992767, + 0.02340257354080677, + 0.022532589733600616, + 0.02617202326655388, + -0.027998989447951317, + -0.04616715759038925, + -0.02720150537788868, + 0.011027049273252487, + -0.0019194025080651045, + 0.024954045191407204, + -0.009816321544349194, + 0.0033621261827647686, + -0.030710440129041672, + 0.01742868311703205, + 0.008351847529411316, + 0.010715304873883724, + 0.019618142396211624, + -0.017182186245918274, + -0.015862710773944855, + -0.05193805322051048, + -0.012187028303742409, + 0.008286599069833755, + -0.010664556175470352, + 0.01035281177610159, + 0.0077356090769171715, + 0.007887856103479862, + -0.040164269506931305, + 0.004041801206767559, + 0.020270630717277527, + 0.012933764606714249, + 0.021633606404066086, + -0.013368756510317326, + -0.009120333939790726, + -0.028114987537264824, + 0.03427737578749657, + -0.017095189541578293, + -0.006452382542192936, + 0.02237309329211712, + -0.0015333470655605197, + -0.020821621641516685, + -0.019313648343086243, + -0.009337830357253551, + 0.02570803090929985, + -0.052721038460731506, + 0.015340720303356647, + 0.016558699309825897, + -0.029448963701725006, + -0.010302062146365643, + 0.019502144306898117, + -0.001110136043280363, + 0.02608502469956875, + -0.009932318702340126, + -0.008373597636818886, + -0.006249386351555586, + -0.039729274809360504, + 0.007742858957499266, + -0.004650790244340897, + -0.01947314478456974, + -0.03155142441391945, + 0.006680753082036972, + 0.02408406138420105, + -0.015833711251616478, + 0.0632188469171524, + 0.00158500240650028, + -0.0076631102710962296, + -0.06988872587680817, + 0.029927454888820648, + 0.049386098980903625, + -0.0076993596740067005, + 0.0006479569710791111, + -0.006039139814674854, + 0.0009202801156789064, + 0.022358592599630356, + -0.02865147776901722, + 0.03993227332830429, + -0.04958909749984741, + -0.03450937196612358, + -0.011273544281721115, + 0.03523435816168785, + -0.000217382752452977, + -0.01896565407514572, + 0.00034051723196171224, + 0.004690664354711771, + 0.0224600899964571, + 0.03897529095411301, + 0.010048316791653633, + -0.039265286177396774, + 0.009569825604557991, + 0.015833711251616478, + 0.023591069504618645, + 0.001276882947422564, + 0.042687222361564636, + 0.017327183857560158, + -0.023721568286418915, + 0.014398237690329552, + 0.003153692465275526, + -0.007706609554588795, + -0.00010948433191515505, + -0.011947782710194588, + -0.019183151423931122, + -0.0038170553743839264, + -0.002573703182861209, + 0.0416722409427166, + -0.005723770707845688, + 0.04944409802556038, + -0.01541321910917759, + 0.016587696969509125, + -0.022445591166615486, + 0.006140638142824173, + 0.032392408698797226, + 6.768431194359437e-5, + -0.017370684072375298, + 0.01351375412195921, + -0.012332024984061718, + -0.011215546168386936, + 0.014289489947259426, + -0.02057512477040291, + 0.005785394459962845, + -0.006452382542192936, + -0.015398719348013401, + 0.026853511109948158, + 0.002167710568755865, + 0.02459155209362507, + 0.029274966567754745, + -0.0003380251000635326, + -0.01635570265352726, + -0.03201541677117348, + -0.03352338820695877, + -0.03825030475854874, + -0.049647096544504166, + -0.00462179072201252, + -0.002898134756833315, + 0.0032932525500655174, + 0.013028012588620186, + -0.04480418562889099, + 0.017153186723589897, + -0.08276449143886566, + -0.015108725056052208, + -0.008185100741684437, + 0.031029434874653816, + -0.0024631426203995943, + -0.009548076428472996, + -0.022663086652755737, + 0.01225952710956335, + -0.012912014499306679, + 0.011056048795580864, + 0.009069585241377354, + -0.048023127019405365, + -0.010490559041500092, + -0.06890274584293365, + 0.028723977506160736, + -0.012281276285648346, + 0.04318021237850189, + -0.002780324313789606, + 0.004951659590005875, + 0.010874802246689796, + 0.0001054629246937111, + -0.009105834178626537, + 0.012455273419618607, + 0.008344598114490509, + 0.026621514931321144, + 0.01664569601416588, + 0.0002956586831714958, + 0.03607534244656563, + -0.00413242494687438, + 0.032943401485681534, + 0.002910821931436658, + -0.022924082353711128, + 0.0012941014720126987, + -0.004353545606136322, + -0.0007485488895326853, + -0.006796751171350479, + 0.012223277240991592, + -0.0036267463583499193, + -0.05364902317523956, + -0.064088836312294, + -0.004567416850477457, + 0.0012705393601208925, + -0.018980154767632484, + -0.028448481112718582, + 0.03685832768678665, + 0.015543716959655285, + -0.012846766039729118, + 0.007217243313789368, + -0.004850161727517843, + 0.01806667074561119, + 0.009403078816831112, + 7.759623986203223e-5, + -0.013977745547890663, + 0.0007693922379985452, + -0.022982081398367882, + 0.0012859452981501818, + 6.750731699867174e-6, + 0.012854015454649925, + -0.009258081205189228, + -0.0011608850909397006, + -0.0016892192652449012, + -0.004255672451108694, + 0.01626870408654213, + 0.009490077383816242, + 0.03326239436864853, + -0.04184623807668686, + 0.010360061191022396, + 0.041266247630119324, + 0.015065225772559643, + -0.03752531483769417, + 0.027520498260855675, + -0.017370684072375298, + -0.005234404467046261, + 0.021880101412534714, + -0.030478443950414658, + -0.02566453255712986, + 0.015862710773944855, + -0.02904297038912773, + -0.013615252450108528, + -0.012535021640360355, + -0.016674695536494255, + 0.03445137292146683, + 0.03450937196612358, + 0.020053135231137276, + 0.039816275238990784, + -0.01822616718709469, + 0.007296992000192404, + -0.01708068884909153, + 0.039091289043426514, + -0.01605120673775673, + 0.003943928051739931, + -0.004502167925238609, + 0.025418037548661232, + -0.014224240556359291, + -0.030072452500462532, + 0.047762129455804825, + 0.011802785098552704, + -0.01075880415737629, + 0.026317020878195763, + 0.03062344156205654, + -0.0530400350689888, + -0.023562069982290268, + -0.008359097875654697, + 0.005038658156991005, + 0.025766029953956604, + -0.008380847051739693, + -0.004527542740106583, + -0.02634602040052414, + -0.04425319284200668, + 0.01822616718709469, + 0.02434505708515644, + -0.05443200841546059, + -0.03749631717801094, + 0.017834674566984177, + -0.04274522140622139, + 0.016587696969509125, + 0.00608626427128911, + 0.014934727922081947, + -0.002281895838677883, + -0.021923599764704704, + -0.04228122904896736, + -0.05161906033754349, + -0.037815310060977936, + -0.008830338716506958, + -0.008272099308669567, + -0.043412208557128906, + 0.002541078720241785, + 0.028636978939175606, + -0.04028026759624481, + -0.014035744592547417, + -0.06263885647058487, + 0.050198085606098175, + -0.017921673133969307, + 0.027998989447951317, + 0.044398192316293716, + 0.029535962268710136, + 0.011889783665537834, + 0.0018296854104846716, + 0.03671333193778992, + 0.0008640936575829983, + -0.01887865550816059, + 0.027013007551431656, + -0.0008708903915248811, + 0.037554316222667694, + -0.006068139337003231, + 0.016080206260085106, + -0.004001927096396685, + -0.014746231026947498, + -0.009055085480213165, + 0.03587234765291214, + -0.04581916704773903, + 0.006013765465468168, + 0.006691628135740757, + 0.010744304396212101, + -0.01806667074561119, + -0.005292403511703014, + -0.019284648820757866, + -0.01887865550816059, + 0.012585770338773727, + -0.0663507878780365, + -0.008438846096396446, + -0.0192121509462595, + -0.01677619479596615, + -0.023156078532338142, + -0.04674714803695679, + 0.020473627373576164, + -0.031145432963967323, + -0.02570803090929985, + 0.012839515693485737, + -0.015601716004312038, + -0.007351365871727467, + 0.05944891646504402, + -0.011483791284263134, + -0.01009906642138958, + 0.005118406843394041, + 0.0052996533922851086, + -0.03732232004404068, + -0.03813430666923523, + -0.011672287248075008, + 0.004070800729095936, + -0.012868515215814114, + -0.037380319088697433, + -0.029477963224053383, + -0.028303485363721848, + -0.0007879700278863311, + -0.009874320589005947, + -0.0006094420095905662, + 0.0005953953950665891, + -0.003882304299622774, + -0.0034636245109140873, + -0.0025755155365914106, + -0.019270148128271103, + -0.0018188105896115303, + 0.018907655030488968, + 0.00851859524846077, + -0.028970472514629364, + -0.006517631467431784, + -0.001017700182273984, + -0.033030398190021515, + 0.01289751473814249, + 0.0028238235972821712, + -0.02522953972220421, + 0.04202023521065712, + 0.003936678171157837, + 0.03865629434585571, + 0.005937641952186823, + 0.01167953759431839, + -0.046573150902986526, + 0.014724481850862503, + 0.02041562832891941, + 0.012433523312211037, + 0.016167204827070236, + 0.0009433890809305012, + 0.04779113084077835, + -0.03593034669756889, + -0.0428612194955349, + -0.0019320897990837693, + -0.03242141008377075, + -0.0028401357121765614, + -0.038627296686172485, + -0.004498543217778206, + -0.024910546839237213, + 0.03578534722328186, + -0.012759767472743988, + 0.002646201755851507, + 0.0022474590223282576, + 0.002776699373498559, + -0.0013838185695931315, + -0.014318489469587803, + -0.024794548749923706, + -0.02138710953295231, + 0.014180741272866726, + 0.01947314478456974, + 0.014289489947259426, + 0.004886411130428314, + -0.013136760331690311, + 0.012868515215814114, + 0.045848164707422256, + -0.008692591451108456, + -0.015978708863258362, + 0.041962236166000366, + 0.0068112509325146675, + -0.016544198617339134, + -0.023257575929164886, + -0.015529217198491096, + -0.026041526347398758, + 0.004426044411957264, + 0.005727395880967379, + 0.007931355386972427, + 0.047414135187864304, + 0.01831316575407982, + 0.03427737578749657, + 0.00020503532141447067, + 0.011483791284263134, + -0.002394268987700343, + 0.008591093122959137, + 0.01857416145503521, + 0.02087961882352829, + 0.02280808426439762, + 0.006539381109178066, + 0.01635570265352726, + -0.014746231026947498, + -0.01434748899191618, + 0.00926533155143261, + 0.020401127636432648, + -0.004397044889628887, + 0.0027132630348205566, + -0.017617179080843925, + -0.02617202326655388, + 0.023460572585463524, + -0.05188005417585373, + 0.021459609270095825, + 0.003951177932322025, + -0.030478443950414658, + 0.03091343678534031, + -0.009453827515244484, + -0.0030757563654333353, + -0.002921696752309799, + -0.01373124960809946, + -0.005535274278372526, + 0.0012333837803453207, + 0.004052676260471344, + -0.00620226189494133, + 0.004436918999999762, + -0.007402115035802126, + -0.015732213854789734, + 0.008997086435556412, + 0.028216486796736717, + -0.005379402078688145, + 0.024867046624422073, + -0.032682403922080994, + 0.008032853715121746, + -0.001921214978210628, + -0.0065103815868496895, + 0.024968545883893967, + 0.0017635304247960448, + 0.005883267614990473, + -0.044775184243917465, + -0.013245509006083012, + -0.050198085606098175, + 0.08444646000862122, + -0.014695482328534126, + -0.016964690759778023, + 0.0015342533588409424, + 0.007967605255544186, + 0.0028546354733407497, + 0.03535035625100136, + 0.03894628956913948, + 0.01481872983276844, + -0.013463004492223263, + -0.027274003252387047, + -0.01108504831790924, + -0.001150916563346982, + -0.02981145679950714, + 0.0020082134287804365, + -0.024910546839237213, + 0.007597861811518669, + -0.02963745966553688, + -0.04637015610933304, + 2.046105237241136e-6, + -0.00014601687144022435, + -0.011650538071990013, + 0.018211668357253075, + -0.02019813284277916, + -0.024374056607484818, + 0.008380847051739693, + 0.021619105711579323, + 0.026665015146136284, + 0.02011113427579403, + -0.027448000386357307, + 0.019763140007853508, + 0.017109688371419907, + 0.02127111330628395, + -0.02011113427579403, + -0.007996604777872562, + -0.017994172871112823, + -0.017051689326763153, + -0.019197650253772736, + -0.011280794627964497, + 0.032653406262397766, + -0.0009950443636626005, + -0.00396205298602581, + 0.014144492335617542, + -0.018472664058208466, + -0.0303624477237463, + -0.016515199095010757, + -0.006336384452879429, + 0.005125656723976135, + -0.00815610121935606, + 0.012295776046812534, + 0.019110651686787605, + 0.017573680728673935, + 0.006140638142824173, + -0.015282721258699894, + 0.04149824380874634, + -0.007104870397597551, + -0.023837566375732422, + 0.044688187539577484, + 0.01217252854257822, + 0.010193314403295517, + 0.028680477291345596, + 0.022692086175084114, + -0.002783949254080653, + 0.0059847659431397915, + 0.0404832623898983, + 0.00634000962600112, + 0.010715304873883724, + -0.0004293281235732138, + 0.004737788811326027, + -0.0021296488121151924, + 0.01057030726224184, + 0.0037518066819757223, + 0.010693554766476154, + -0.012034780345857143, + 0.0015025351895019412, + -0.004400670062750578, + -0.015210223384201527, + -0.04973409324884415, + 0.0034110627602785826, + 0.009497326798737049, + -0.0003715557395480573, + -0.034567371010780334, + 0.027766995131969452, + 0.026404019445180893, + 0.022967582568526268, + 0.019966136664152145, + -0.004853786434978247, + -0.009874320589005947, + 0.01690669171512127, + 0.02114061452448368, + 0.030507443472743034, + 0.026418518275022507, + -0.013680500909686089, + -0.0038569297175854445, + 0.01695019192993641, + 0.0038134304340928793, + 0.009345079772174358, + -0.0016484387451782823, + 0.015398719348013401, + 0.03062344156205654, + -0.0011654163245111704, + 0.03543735295534134, + -0.044514190405607224, + 0.009352329187095165, + 0.01751568168401718, + 0.006807626225054264, + 0.00046285876305773854, + -0.005629522260278463, + 0.029535962268710136, + 0.008402597159147263, + -0.005364902317523956, + 0.04465918615460396, + 0.012230527587234974, + 0.010026567615568638, + 0.02070562355220318, + 0.000602192129008472, + -0.010403560474514961, + 0.004186798818409443, + -0.008272099308669567, + -0.005944891832768917, + -0.03137742727994919, + -0.011984031647443771, + 0.010954550467431545, + -0.006111638620495796, + 0.011781034991145134, + -0.0020571500062942505, + 0.015572716481983662, + -0.006115263793617487, + -0.0065611302852630615, + -0.004382545128464699, + 0.01973414048552513, + -0.020038634538650513, + 0.02199609950184822, + -0.021590106189250946, + -0.01364425104111433, + -0.03540835529565811, + 0.008859338238835335, + 0.013013512827455997, + -0.0004807568620890379, + -0.0017816550098359585, + 0.03227641060948372, + 0.001033106236718595, + 0.027940990403294563, + 0.002258333843201399, + 0.000522896705660969, + -0.001385631039738655, + -0.016384702175855637, + -0.03155142441391945, + 0.01900915428996086, + 0.012861265800893307, + -0.009707572869956493, + 0.006767751649022102, + 0.0004997877986170352, + 0.011135797016322613, + -0.010548558086156845, + -0.013274508528411388, + -0.010954550467431545, + 0.035640351474285126, + 0.03996127098798752, + -0.006466882303357124, + -0.003980177454650402, + 0.016544198617339134, + -0.004364420659840107, + -0.024606050923466682, + -0.004563791677355766, + -0.01249152235686779, + -0.011701286770403385, + 0.020691122859716415, + -0.002220272086560726, + -0.005774519871920347, + 0.012375524267554283, + -0.042687222361564636, + 0.001783467479981482, + -0.0015804711729288101, + 0.0007041434291750193, + -0.019995136186480522, + 0.00022825755877420306, + -0.0226775873452425, + -0.025302039459347725, + 0.013057012110948563, + 0.006843875162303448, + -0.01734168455004692, + -0.009432078339159489, + -0.003943928051739931, + 0.02788299135863781, + 0.01434748899191618, + 0.0005120219429954886, + -0.008540344424545765, + -0.026592515408992767, + -0.03349439054727554, + 0.005314153153449297, + -0.0003332673804834485, + -0.009062334895133972, + 0.009446578100323677, + 0.04590616375207901, + 0.0001717312406981364, + -0.02810048870742321, + -0.02212659642100334, + 0.011092297732830048, + 0.030594442039728165, + 0.0032243786845356226, + -0.022880584001541138, + 0.007271617650985718, + 0.007822607643902302, + 0.030304448679089546, + -0.0007798139122314751, + -0.005963016301393509, + -0.006477756891399622, + 0.011056048795580864, + -0.020183632150292397, + 0.008721590973436832, + 0.004400670062750578, + 0.0014454424381256104, + 0.008685342036187649, + -0.033581387251615524, + 0.028259985148906708, + 0.0200241357088089, + 0.007692109793424606, + 0.002160460688173771, + 0.044862184673547745, + -0.0018759033409878612, + -0.0005079438560642302, + 0.006466882303357124, + -0.005198155529797077, + -0.0004225313605275005, + -0.047298137098550797, + -0.0003038147697225213, + 0.03343639150261879, + -0.025389038026332855, + -0.0065103815868496895, + 0.02711450681090355, + 0.024794548749923706, + -0.02375056780874729, + -0.007347741164267063, + -0.02579502947628498, + 0.03711932525038719, + 0.042165230959653854, + -0.03888829052448273, + -0.02941996417939663, + -0.033378392457962036, + 0.02037212811410427, + 0.0265200175344944, + -0.004629040602594614, + 0.0010004817740991712, + 0.023301076143980026, + -0.0008070009062066674, + 0.0038170553743839264, + -0.030797438696026802, + 0.06455282121896744, + -0.006035515107214451, + 0.0344223715364933, + -0.014427237212657928, + -0.02989845536649227, + 0.007474613841623068, + -0.02472204901278019, + 0.031319428235292435, + 0.02823098562657833, + -0.0026679513975977898, + -0.011092297732830048, + 0.02728850208222866, + -0.014847729355096817, + 0.00470878928899765, + -0.018168168142437935, + -0.032044418156147, + -0.009874320589005947, + 0.009258081205189228, + -0.0273320022970438, + 0.025418037548661232, + -0.020763622596859932, + -0.05605597794055939, + -0.004774038214236498, + 0.006238511297851801, + 0.00533952796831727, + 0.011208295822143555, + -0.01712418720126152, + 0.016341201961040497, + -0.0018550599925220013, + -0.004455043934285641, + 0.004926285240799189, + -0.015108725056052208, + -0.0025356414262205362, + 0.025896528735756874, + -0.003701057517901063, + 0.04318021237850189, + -0.0056838965974748135, + -0.017950672656297684, + 0.005763644818216562, + 0.0009787321323528886, + -0.004803037736564875, + 0.04312221333384514, + -0.011534539982676506, + 0.03305939957499504, + 0.024925045669078827, + 0.0028908848762512207, + -0.022996580228209496, + 0.012107279151678085, + -0.033407390117645264, + -0.046225156635046005, + 0.02928946726024151, + -0.010925550945103168, + 0.0021532108075916767, + 0.010969050228595734, + -0.01123004499822855, + -0.030043452978134155, + -0.0339873805642128, + 0.01142579223960638, + 0.004241172689944506, + -0.027636496350169182, + 0.02151760831475258, + -0.019458645954728127, + -0.015340720303356647, + 0.012585770338773727, + 0.035089362412691116, + 0.006586505100131035, + -0.003911303821951151, + 0.006738752126693726, + 0.037003327161073685, + 0.02399706281721592, + 0.02507004328072071, + -0.023895565420389175, + 0.01125179510563612, + -0.025911027565598488, + 0.031203432008624077, + -0.033842384815216064, + 0.032856401056051254, + -0.011295294389128685, + -0.025302039459347725, + -0.012716268189251423, + -0.0004753194807562977, + -0.011034298688173294, + 0.005325028207153082, + -0.010802303440868855, + -0.0022510839626193047, + -0.01106329821050167, + -0.021677104756236076, + 0.007249868009239435, + -0.01896565407514572, + 0.01725468598306179, + 0.01199853140860796, + 0.0062602609395980835, + -0.01993713714182377, + 0.03984527289867401, + 0.007347741164267063, + -0.01916865073144436, + 0.007354991044849157, + 0.014332989230751991, + 0.008163351565599442, + 0.045326173305511475, + -0.02058962546288967, + -0.015210223384201527, + 0.00858384370803833, + -0.01900915428996086, + -0.01758817955851555, + -0.02327207662165165, + 0.0012252277228981256, + 0.01716768741607666, + -0.03729332238435745, + -0.01415899209678173, + -0.0025157041382044554, + 0.005089407321065664, + 0.009055085480213165, + 0.02472204901278019, + 0.017327183857560158, + 0.001767155365087092, + -0.011686787009239197, + -0.00027889336342923343, + -0.037554316222667694, + -0.012310275807976723, + 0.027868492528796196, + 0.0021423359867185354, + -0.04352820664644241, + -0.04497817903757095, + -0.0025030169636011124, + 0.01383999828249216, + -0.0011762910289689898, + -0.010693554766476154, + 0.02173510380089283, + 0.003376625943928957, + 0.01409374363720417, + 0.01989363692700863, + 0.002678826218470931, + 0.02702750824391842, + -0.0071592447347939014, + 0.006999747361987829, + -0.0003498061269056052, + 0.014543235301971436, + 0.018559662625193596, + 0.014383737929165363, + -0.005180030595511198, + -0.02122761309146881, + 0.003376625943928957, + -0.004650790244340897, + -0.02741900086402893, + 0.04146924614906311, + -0.033842384815216064, + 0.014862229116261005, + 0.0069091240875422955, + 0.026027025654911995, + -0.01900915428996086, + -0.03874329477548599, + -0.005263403989374638, + 0.0028727601747959852, + 0.006053639575839043, + 0.030333448201417923, + 0.0034436872228980064, + -0.0034237501677125692, + 0.033929381519556046, + 0.020256131887435913, + 0.008054602891206741, + 0.025374537333846092, + -0.008678091689944267, + 0.04013526812195778, + 0.0019792139064520597, + 0.013680500909686089, + 0.008380847051739693, + 0.008373597636818886, + -0.028926972299814224, + -0.006764126941561699, + 0.020763622596859932, + -0.00754711264744401, + -0.006430632900446653, + -0.016297703608870506, + -0.005419276189059019, + -0.009287080727517605, + -0.015137724578380585, + -0.028709476813673973, + -0.018429163843393326, + -0.0372353233397007, + -0.004476793576031923, + 0.0004300077853258699, + -0.025142541155219078, + 0.0038968040607869625, + -0.0019320897990837693, + -0.012948264367878437, + 0.03630733862519264, + 0.009192832745611668, + 0.02757849730551243, + -0.006379883736371994, + -0.008344598114490509, + 0.004966159351170063, + -0.01797967217862606, + 0.022735586389899254, + -0.008953587152063847, + 0.0006982529303058982, + -0.02557753399014473, + -0.013615252450108528, + -0.009830821305513382, + -0.01964714191854, + -0.01323825865983963, + -0.008678091689944267, + 0.007416614796966314, + -0.013296257704496384, + -0.0016285015735775232, + 0.002760387258604169, + -0.002849198179319501, + 0.007510863244533539, + -0.016877692192792892, + -0.017776675522327423, + -0.00350168626755476, + 0.008192351087927818, + -0.04164324328303337, + 0.005198155529797077, + -0.00248126732185483, + -0.002501204377040267, + -0.0102295633405447, + -0.02459155209362507, + -0.026708513498306274, + -0.008438846096396446, + -0.00990331918001175, + 0.015471218153834343, + -0.01584821194410324, + 0.018646661192178726, + -0.022228095680475235, + -0.0037626815028488636, + -0.015021726489067078, + -0.008721590973436832, + 0.02638951875269413, + 0.0062965103425085545, + -0.008786840364336967, + -0.010149815119802952, + -0.011222795583307743, + 0.006184137426316738, + 0.010244063101708889, + 0.012955513782799244, + -0.01751568168401718, + 0.026723012328147888, + -0.025548534467816353, + 0.00958432536572218, + -0.018298666924238205, + 0.01475348137319088, + -0.0013484754599630833, + -0.017573680728673935, + 0.0127452677115798, + 0.03778631240129471, + 0.017153186723589897, + 0.0011400417424738407, + -0.003612246597185731, + -0.0035687475465238094, + -0.01142579223960638, + -0.024838047102093697, + -0.0009977631270885468, + -0.0019230274483561516, + -0.027810493484139442, + 0.015369719825685024, + 0.010722554288804531, + -0.007808107882738113, + -0.008170600980520248, + -0.014311239123344421, + 0.029666459187865257, + -0.02434505708515644, + -0.004476793576031923, + 0.0035796223673969507, + 0.01106329821050167, + 0.002537453779950738, + 0.016558699309825897, + 0.009635074064135551, + 0.00013015778677072376, + 0.00603188993409276, + 0.03566934913396835, + -0.008098102174699306, + -0.008417096920311451, + -0.01106329821050167, + -0.008214100264012814, + -0.011396792717278004, + -0.01592070981860161, + -0.011730286292731762, + -0.03714832291007042, + 0.01734168455004692, + -0.0021785853896290064, + 0.013796498998999596, + -0.004908160772174597, + -0.013064262457191944, + 0.030130451545119286, + -0.01423874031752348, + -0.010302062146365643, + -0.013557253405451775, + 0.018458163365721703, + 0.002570078242570162, + 0.016297703608870506, + 0.00542290136218071, + 0.009794571436941624, + 0.030855437740683556, + -0.02127111330628395, + 0.004745038691908121, + 0.018284166231751442, + -0.004339045844972134, + -0.009120333939790726, + -0.01165778748691082, + 0.004465918522328138, + -0.02322857640683651, + -0.039265286177396774, + 0.029608460143208504, + -0.03975827619433403, + -0.02353307045996189, + -0.03253740817308426, + 0.01199853140860796, + 0.006767751649022102, + 0.017225686460733414, + -0.008402597159147263, + -0.030072452500462532, + 0.00018317245121579617, + 0.007311491761356592, + -0.005013283807784319, + -0.0009633261943235993, + -0.010157064534723759, + 0.0012587583623826504, + 0.006253011059015989, + -0.0033929382916539907, + -0.00022010145767126232, + 0.01985013857483864, + -0.01589171029627323, + -0.02425805851817131, + -0.006108013913035393, + -0.02259058877825737, + -0.0010920113418251276, + 0.022532589733600616, + -0.005031408276408911, + 0.006764126941561699, + 0.03352338820695877, + -0.02147410809993744, + 0.006709752604365349, + 0.011302543804049492, + 0.01563071459531784, + -0.007452864199876785, + 0.03607534244656563, + 0.02015463262796402, + 0.014050244353711605, + -0.002722325501963496, + 0.02079262211918831, + -0.009598825126886368, + -0.023881064727902412, + -0.00720636872574687, + 0.03958427906036377, + 0.027404500171542168, + 0.023040080443024635, + -0.018458163365721703, + 0.019864637404680252, + 0.0059666414745152, + -0.004328171256929636, + 0.04709514230489731, + -0.015732213854789734, + 0.018008671700954437, + -0.0028872599359601736, + 0.027868492528796196, + -0.0003264706174377352, + 0.011462041176855564, + -0.021329112350940704, + -0.012114529497921467, + -0.010157064534723759, + -0.02625902183353901, + 0.031116433441638947, + 0.00657563004642725, + -0.0008921868866309524, + -0.019197650253772736, + 0.0198066383600235, + 0.004085300490260124, + -0.005288778804242611, + -0.007619610987603664, + 0.016689196228981018, + -0.008620092645287514, + -0.004469543695449829, + 0.04262922331690788, + -0.01500722672790289, + -0.001904902746900916, + -0.0055497740395367146, + -0.001516128657385707, + 0.007967605255544186, + -0.02520054019987583, + -0.009540826082229614, + 0.012520521879196167, + -0.005879642907530069, + 0.030797438696026802, + 0.02617202326655388, + -0.015369719825685024, + -0.02122761309146881, + -0.010432559996843338, + -0.020894119516015053, + 0.007260742597281933, + -0.017153186723589897, + -0.006742377299815416, + -0.0063218846917152405, + -0.0015741275856271386, + 8.205661288229749e-6, + 0.00511478167027235, + -0.0006733314949087799, + -0.0007743765017949045, + -0.004299171734601259, + -0.010773303918540478, + 0.01099804975092411, + 0.0016529698623344302, + 0.00195383932441473, + 0.005056783091276884, + -0.015645215287804604, + -0.00924358144402504, + -0.014441736973822117, + 0.008127101697027683, + 0.0006425195606425405, + 0.011433041654527187, + 0.02728850208222866, + -0.010055567137897015, + 0.002370706759393215, + 0.008032853715121746, + -0.009250831790268421, + 0.006934498902410269, + 0.011962282471358776, + -0.030130451545119286, + 0.025099042803049088, + -0.0024722048547118902, + 0.009939569048583508, + -0.013651501387357712, + -0.00016187595610972494, + 0.027042007073760033, + -0.0005247091758064926, + -0.0036339962389320135, + 0.023605570197105408, + 0.020169133320450783, + -0.010142565704882145, + 0.022257095202803612, + -0.01093280129134655, + 0.018980154767632484, + -0.01938614621758461, + -0.021024616435170174, + -0.02293858304619789, + -0.009381328709423542, + 0.014557735063135624, + -0.01695019192993641, + 0.000170711733517237, + 0.020082134753465652, + 0.022358592599630356, + 0.0303624477237463, + 0.004204923287034035, + 0.006369009148329496, + -0.0043317959643900394, + 9.787322051124647e-5, + 0.0037064950447529554, + -0.006481382064521313, + 0.005484525114297867, + -0.018864156678318977, + -0.021082615479826927, + -0.014115492813289165, + -0.021546607837080956, + -0.024185558781027794, + 0.007909606210887432, + 0.025302039459347725, + -0.005564273800700903, + -0.011694037355482578, + -0.01373124960809946, + 0.002638951875269413, + -0.009142083115875721, + 0.032392408698797226, + -0.003494436386972666, + -0.017646178603172302, + 0.0015804711729288101, + -0.0011409479193389416, + -0.001888590632006526, + 0.036191340535879135, + 0.0057455203495919704, + 0.03813430666923523, + 0.0026172022335231304, + 0.010693554766476154, + 0.029173469170928, + 0.008910087868571281, + 0.020343128591775894, + -0.003594122128561139, + -0.001868653460405767, + 0.015021726489067078, + 0.009388579055666924, + -0.015732213854789734, + 0.011991281993687153, + 0.00892458762973547, + 0.00015507920761592686, + 0.02515704184770584, + -0.011099548079073429, + -0.010838552378118038, + 0.0007798139122314751, + 0.024403056129813194, + -0.011309794150292873, + -0.015195723623037338, + 0.013376005925238132, + 0.0034237501677125692, + -0.0007209087489172816, + -0.004175923764705658, + 0.013905246742069721, + -0.0050712828524410725, + -0.02544703707098961, + -0.012904765084385872, + -0.004676164593547583, + 0.006651754025369883, + -0.018414665013551712, + -0.009279831312596798, + 0.001734530902467668, + -0.004534792620688677, + 0.023649068549275398, + -0.0018550599925220013, + 0.023083578795194626, + 0.0009905132465064526, + -0.00047396012814715505, + -0.02724500373005867, + -0.010693554766476154, + -0.04506517946720123, + 0.016065707430243492, + 0.04390519857406616, + -0.006416133139282465, + -0.0243015568703413, + 0.01041806023567915, + 0.014535984955728054, + -0.01206377986818552, + -0.0029235093388706446, + -0.008134352043271065, + 0.003150067524984479, + 0.016558699309825897, + 0.03453836962580681, + -0.00525252940133214, + 0.002127836225554347, + -0.013223758898675442, + 0.0038170553743839264, + 0.023605570197105408, + 0.011367793194949627, + 0.01622520387172699, + 0.01853066310286522, + -0.018893156200647354, + -0.006180512253195047, + 0.0020499001257121563, + -0.0012959139421582222, + 0.012991763651371002, + -0.014862229116261005, + 0.008395346812903881, + -0.01007731631398201, + -0.005531649105250835, + -0.013013512827455997, + 0.029666459187865257, + 0.006517631467431784, + 0.021619105711579323, + -0.033204395323991776, + -0.0034509371034801006, + 0.0026117649395018816, + -0.02259058877825737, + 0.019052652642130852, + -0.01760268025100231, + 0.014253240078687668, + 0.0034146877005696297, + 0.012484272941946983, + -0.016471700742840767, + -0.014376488514244556, + -0.008315598592162132, + 0.014760730788111687, + -0.025432536378502846, + -0.020473627373576164, + -0.034306373447179794, + 0.02443205565214157, + 0.021793102845549583, + 0.02524404041469097, + 0.023852065205574036, + 0.004426044411957264, + 0.025461535900831223, + 0.010447059758007526, + 0.009642324410378933, + 0.005502649582922459, + -0.02963745966553688, + -0.007510863244533539, + -0.0022873333655297756, + -0.0030050703790038824, + 0.008475095964968204, + 0.031754422932863235, + -0.01251327246427536, + -0.011324293911457062, + -0.0032280036248266697, + 0.005147406365722418, + -0.025679031386971474, + -0.014383737929165363, + 0.0008210475207306445, + -0.0002189686638303101, + -0.017965173348784447, + 0.03445137292146683, + 0.003275127848610282, + 0.004030926618725061, + -0.03427737578749657, + 0.008612843230366707, + 0.009439327754080296, + -0.026317020878195763, + 0.0005659428425133228, + -8.184421312762424e-5, + -0.016210705041885376, + 0.010918301530182362, + -0.010410810820758343, + -0.0372353233397007, + 0.0299854539334774, + 0.008779590018093586, + -0.018139170482754707, + 0.0028890722896903753, + -0.060666896402835846, + -0.02553403563797474, + -0.019328147172927856, + -0.01652969978749752, + 0.0012370087206363678, + -0.008910087868571281, + -0.0033929382916539907, + 0.04245522618293762, + 0.011012549512088299, + 0.007180994376540184, + -0.0016565948026254773, + -0.0016710945637896657, + 0.002521141665056348, + -0.00404542637988925, + 0.0012134466087445617, + 0.006887374445796013, + 0.013774748891592026, + -0.05251804366707802, + -0.001819716882891953, + -0.023460572585463524, + 0.0009868883062154055, + -0.002084336942061782, + -0.0015677839983254671, + -0.012607520446181297, + -0.01879165694117546, + 0.004596416372805834, + 0.04083125665783882, + -0.007626860868185759, + 0.04547117277979851, + 0.03062344156205654, + -0.0038025558460503817, + 0.02588202804327011, + 0.03703232482075691, + 0.01861766166985035, + -0.028042489662766457, + 0.014405488036572933, + -0.014608483761548996, + -0.014267739839851856, + 0.007742858957499266, + -0.014862229116261005, + 0.0009841695427894592, + 0.020227132365107536, + -0.0027096380945295095, + -0.0028365107718855143, + 0.02250359021127224, + -0.017008190974593163, + 0.012056530453264713, + -0.016239704564213753, + -0.00992506928741932, + 0.010468808934092522, + -0.007728359196335077, + 0.0018614035798236728, + 0.009598825126886368, + 0.006325509864836931, + 0.027694495394825935, + -0.006097138859331608, + 0.013281757943332195, + -0.02476554922759533, + -0.01613820530474186, + -0.0102295633405447, + -0.0025592034216970205, + -0.009453827515244484, + -0.009004335850477219, + 0.0038025558460503817, + -0.01191153284162283, + 0.01969064213335514, + -0.008634592406451702, + -0.03787330910563469, + 0.015108725056052208, + 0.009105834178626537, + -0.0023797692265361547, + 0.008366347290575504, + -0.019545644521713257, + 0.00016085644892882556, + -0.020212631672620773, + 0.014100993052124977, + 0.0026679513975977898, + 7.119596557458863e-5, + 0.0022837084252387285, + 0.044224195182323456, + -0.011288044042885303, + 0.0003914928820449859, + -0.009939569048583508, + 0.016370201483368874, + 0.012419023551046848, + -0.010309312492609024, + -0.038801293820142746, + 0.007180994376540184, + 0.021967099979519844, + -0.019835637882351875, + -0.04410819709300995, + 0.00413242494687438, + 0.012100029736757278, + 0.020401127636432648, + -0.010816803202033043, + 0.03651033341884613, + -0.02779599279165268, + 0.004672539886087179, + -0.01853066310286522, + -0.005227154586464167, + -0.02217009663581848, + 0.03595934435725212, + -0.03593034669756889, + 0.006611879449337721, + -0.010918301530182362, + -0.004183173645287752, + 0.013977745547890663, + -0.0032497532665729523, + -0.020343128591775894, + 0.009359579533338547, + 0.04898010939359665, + -0.011759285815060139, + -0.002570078242570162, + -0.02327207662165165, + 0.0188351571559906, + 0.031116433441638947, + -0.0038605546578764915, + -0.03578534722328186, + -0.007829857058823109, + -0.01793617382645607, + -0.03543735295534134, + -0.0007018778123892844, + 0.007068621460348368, + -0.007829857058823109, + 0.03804730623960495, + 0.03245040774345398, + 0.013506503775715828, + -0.029753457754850388, + 0.005669396836310625, + -0.031928420066833496, + 0.014586734585464, + 0.005531649105250835, + -0.011926032602787018, + 0.0026244521141052246, + -0.03749631717801094, + 0.025461535900831223, + -0.0014535984955728054, + -0.003615871537476778, + 0.0011980406707152724, + 0.009569825604557991, + 3.562630445230752e-5, + 0.005238029640167952, + 0.02818748727440834, + 0.00571289611980319, + 0.02058962546288967, + -0.018820656463503838, + -0.0028238235972821712, + 0.02140161022543907, + -0.01484047994017601, + 0.008823089301586151, + 0.023243077099323273, + -0.043499208986759186, + -0.010882051661610603, + 0.019371647387742996, + -0.040164269506931305, + 0.017994172871112823, + 0.018458163365721703, + -0.016602197661995888, + -0.022358592599630356, + 0.023924564942717552, + -0.005691146478056908, + -0.012962764129042625, + -0.003137380350381136, + -0.00858384370803833, + 0.011730286292731762, + -0.0033005024306476116, + -0.03920728713274002, + 0.028926972299814224, + -0.005520774517208338, + 0.0042339228093624115, + 0.01631220243871212, + -0.008293848484754562, + 0.0018958405125886202, + -0.0009062335011549294, + 0.004194048698991537, + 0.0008677185978740454, + 0.0023380822967737913, + -0.00833009835332632, + -0.023301076143980026, + -0.015326220542192459, + 0.007365865632891655, + -0.024446554481983185, + -0.0041722990572452545, + 0.003367563709616661, + -0.0074238646775484085, + -0.013274508528411388, + -0.013216509483754635, + -0.03216041252017021, + 0.0004893660661764443, + 0.0004537964123301208, + 0.020734623074531555, + -0.012332024984061718, + 0.016384702175855637, + 0.002452267799526453, + -0.014419987797737122, + 0.006376259028911591, + -0.0019357147393748164, + 0.0011336981551721692, + 0.011469291523098946, + 0.010403560474514961, + 0.008830338716506958, + -0.015775712206959724, + 0.008453345857560635, + -0.02156110666692257, + -0.023170577362179756, + 0.003929428290575743, + -0.0036611834075301886, + 0.007670360151678324, + -0.013999494723975658, + 0.021720604971051216, + 0.02028513140976429, + -0.007844356819987297, + 0.020314129069447517, + -0.011034298688173294, + 0.006336384452879429, + 0.0251135416328907, + 0.03010145202279091, + -0.003769931383430958, + 0.01509422529488802, + 0.008250350132584572, + 0.0028075112495571375, + 0.029622960835695267, + 0.00984532106667757, + 0.0245190542191267, + 0.020270630717277527, + 0.01133879367262125, + -0.015021726489067078, + -0.00815610121935606, + 0.012390024028718472, + 0.006354509387165308, + 0.016123706474900246, + 0.0016085644019767642, + 0.006894624326378107, + -0.01635570265352726, + -0.019110651686787605, + -0.014789730310440063, + 0.014013994485139847, + 0.022358592599630356, + 0.006963497959077358, + 0.004081675782799721, + 0.023895565420389175, + -0.009598825126886368, + 0.020734623074531555, + -0.02037212811410427, + 0.03407438099384308, + -0.01075880415737629, + 0.01183178462088108, + -0.0014073805650696158, + 0.015616215765476227, + 0.02536003850400448, + -0.01165778748691082, + -0.017399683594703674, + -0.0017454057233408093, + 0.016718195751309395, + 0.02263408713042736, + -0.015471218153834343, + -0.007779108360409737, + -0.002334457589313388, + 0.0017218436114490032, + -0.0031192556489259005, + 0.013861747458577156, + 0.0039330534636974335, + -0.0001457903126720339, + 0.014441736973822117, + 0.01853066310286522, + -0.023968063294887543, + -0.003052194369956851, + -0.017109688371419907, + 0.0012460710713639855, + -0.017747675999999046, + 0.007170119322836399, + -0.005952141713351011, + 0.000531052821315825, + 0.002803886542096734, + -0.013535503298044205, + -0.0015188473043963313, + -0.018168168142437935, + 0.005749145057052374, + -0.02507004328072071, + -0.014398237690329552, + -0.02404056303203106, + 0.0015822836430743337, + 0.012614769861102104, + -0.004788537975400686, + 0.012056530453264713, + 0.00991056952625513, + -0.010439809411764145, + -0.0208361204713583, + -0.013506503775715828, + -0.003173629753291607, + 0.006108013913035393, + -0.0254905354231596, + 0.007786358240991831, + -0.0015587216475978494, + 0.00022383967007044703, + -0.00355968507938087, + 0.01951664499938488, + 0.0012170715490356088, + -0.0022057723253965378, + 0.022996580228209496, + -0.0004404294886626303, + -0.011418541893362999, + 0.011099548079073429, + -0.02557753399014473, + 0.006532131228595972, + -0.005883267614990473, + 0.023721568286418915, + 0.028622478246688843, + -0.021749604493379593, + -0.008511344902217388, + -0.009577075950801373, + -0.0127452677115798, + 0.003095693653449416, + -0.006238511297851801, + 0.02531653828918934, + -0.0020535250660032034, + -0.0048102871514856815, + 0.00031604894320480525, + -0.006253011059015989, + 0.009475577622652054, + -0.019197650253772736, + 0.0076993596740067005, + 0.010925550945103168, + -0.01073705404996872, + -0.0032207537442445755, + 0.015862710773944855, + -0.010780553333461285, + 0.0010974487522616982, + -0.007880606688559055, + -0.0010684493463486433, + 0.0010666368762031198, + -0.0011210108641535044, + -0.037177324295043945, + -0.0012560395989567041, + -0.006876499857753515, + 0.002695138333365321, + 0.0062711359933018684, + 0.009707572869956493, + 0.019067153334617615, + 0.006412507966160774, + 0.0006746908184140921, + -0.017269184812903404, + -0.015369719825685024, + 0.013477504253387451, + 0.004871911369264126, + 0.008554844185709953, + 0.010207814164459705, + -0.007597861811518669, + -0.006006515584886074, + -0.009874320589005947, + 0.007253492716699839, + 0.011650538071990013, + 9.305885032517835e-5, + -0.0011690411483868957, + 0.012324775569140911, + 0.012904765084385872, + -0.00781535729765892, + -0.006688002962619066, + -0.0068112509325146675, + 9.43049235502258e-5, + -0.018603160977363586, + 0.017689676955342293, + 0.03535035625100136, + 0.01861766166985035, + 0.01938614621758461, + -0.014042994007468224, + 0.016500700265169144, + 0.0039330534636974335, + -0.03711932525038719, + -0.013673250563442707, + -0.006945373490452766, + 0.028245486319065094, + -0.010033817030489445, + 0.02377956733107567, + 0.004632665775716305, + -0.022054098546504974, + -0.017370684072375298, + -0.019589142873883247, + -0.010033817030489445, + 0.00407805060967803, + -0.016805194318294525, + -0.01840016432106495, + -0.0076123615726828575, + -0.010345561429858208, + 0.0009533576085232198, + 0.026592515408992767, + -0.006818500813096762, + -0.00023086297733243555, + 0.02766549587249756, + 0.012614769861102104, + 0.0032171288039535284, + -0.00184418517164886, + 0.002026338130235672, + -0.00917833298444748, + -0.0036702456418424845, + -0.0016502512153238058, + -0.009134833700954914, + -0.008047353476285934, + 0.030043452978134155, + -0.001868653460405767, + 0.008402597159147263, + 0.015456718392670155, + -0.012694519013166428, + -0.005749145057052374, + 0.012005781754851341, + 0.003327689366415143, + 0.015021726489067078, + 0.00781535729765892, + -0.022068597376346588, + -0.017051689326763153, + 0.024838047102093697, + 0.003740931861102581, + 0.0012551334220916033, + -0.0013965058606117964, + 0.012208777479827404, + -0.008939087390899658, + -0.016935691237449646, + 0.008279349654912949, + 0.031029434874653816, + 0.0008033759659156203, + 0.008134352043271065, + -0.0002682451158761978, + -0.006818500813096762, + 0.002809323836117983, + 0.00691999914124608, + -0.005995640996843576, + -0.02570803090929985, + -0.04718213900923729, + -0.007141119800508022, + 0.008663591928780079, + -0.0066336290910840034, + -0.012701768428087234, + -0.006434257607907057, + 0.009613324888050556, + -0.00960607547312975, + -0.008765090256929398, + 0.0023362699430435896, + 0.016602197661995888, + -0.009526326321065426, + 0.007641360629349947, + -0.02754949778318405, + -0.002865510294213891, + -0.0036756829358637333, + 0.03590134531259537, + -0.012078279629349709, + 0.003380250884220004, + 0.042513225227594376, + 0.015079725533723831, + -0.028448481112718582, + 0.0013910684501752257, + -0.0012632894795387983, + 0.0032044416293501854, + -0.00634000962600112, + -0.0023725193459540606, + -0.008873837999999523, + -0.01468823291361332, + 0.007764608599245548, + 0.012361024506390095, + 0.008641842752695084, + 0.015775712206959724, + -0.03018845058977604, + 0.010280312970280647, + -0.013861747458577156, + -0.0038678045384585857, + -0.021285612136125565, + -0.008699841797351837, + -0.00582889374345541, + 0.017138687893748283, + -0.008475095964968204, + -0.028506480157375336, + -2.6507330403546803e-5, + -0.0032896276097744703, + 0.014202491380274296, + -0.005183655768632889, + -0.03453836962580681, + 0.025186041370034218, + -0.005020533688366413, + 0.014615734107792377, + 0.01938614621758461, + 0.004919035360217094, + 0.005836143624037504, + 0.021938100457191467, + 0.016109205782413483, + -0.012034780345857143, + -0.0019755889661610126, + 0.007568862289190292, + 0.006760501768440008, + 0.00973657239228487, + 0.027172505855560303, + -0.016877692192792892, + -0.01622520387172699, + 0.00999031774699688, + -0.012810517102479935, + 0.01466648280620575, + 0.014746231026947498, + 0.005426526069641113, + -0.0010965425753965974, + 0.019502144306898117, + -0.014847729355096817, + 0.007510863244533539, + 0.010867551900446415, + 0.01266551949083805, + 0.01383274793624878, + 0.015906210988759995, + 0.003291439963504672, + -0.003777181264013052, + -0.0023326450027525425, + 0.006862000096589327, + 0.006735127419233322, + 0.014572234824299812, + 0.021938100457191467, + -0.016544198617339134, + -0.03964227810502052, + 0.003124693175777793, + 0.004665290005505085, + 0.007199118845164776, + -0.012933764606714249, + -0.01725468598306179, + 0.0012107279617339373, + -0.0006280197994783521, + -0.0023253951221704483, + -0.006843875162303448, + -0.013506503775715828, + 0.004697914235293865, + -0.018429163843393326, + -0.003976552747189999, + 0.006481382064521313, + 0.005513524636626244, + 0.012165278196334839, + -0.010055567137897015, + 0.0003876413684338331, + -0.004407919477671385, + -0.014949227683246136, + -0.01409374363720417, + -0.011128547601401806, + -0.005934016779065132, + 0.005419276189059019, + 0.019284648820757866, + 0.019183151423931122, + -0.02373606711626053, + 0.0009742010151967406, + 0.037554316222667694, + -0.005491774994879961, + 0.004291921854019165, + 0.013477504253387451, + -0.003412875346839428, + 0.007162869442254305, + 0.011150296777486801, + 0.012788766995072365, + -0.0016946566756814718, + -0.02682451158761978, + 0.017791176214814186, + 0.01947314478456974, + -0.01605120673775673, + -0.006466882303357124, + -0.0006343634449876845, + 0.024417554959654808, + -0.016036707907915115, + -0.0011373229790478945, + -0.008968086913228035, + -0.004813912324607372, + -0.016036707907915115, + 0.00548814982175827, + -0.016413701698184013, + 0.011034298688173294, + 0.012991763651371002, + 0.020488126203417778, + 0.008315598592162132, + 0.0020770870614796877, + 0.00022338655253406614, + -0.02143060974776745, + 0.015833711251616478, + 0.014021244831383228, + -0.022010598331689835, + -0.004237547982484102, + 0.01106329821050167, + -0.02203959785401821, + 0.0010122627718374133, + 0.0007616892689839005, + -0.01349200401455164, + -0.009591575711965561, + 0.002894509816542268, + 0.026288021355867386, + -0.007141119800508022, + 0.003940303344279528, + 0.01973414048552513, + -0.011723036877810955, + -0.004832036793231964, + 0.009475577622652054, + -0.0289559718221426, + -0.008779590018093586, + 0.00840984657406807, + 0.0013104135869070888, + -0.016080206260085106, + -0.01434748899191618, + 0.0018795282812789083, + 0.013368756510317326, + -0.020314129069447517, + 0.002780324313789606, + -0.023852065205574036, + -0.024055061861872673, + 0.01909615285694599, + 0.006735127419233322, + -0.009214581921696663, + 0.0054953997023403645, + -0.006601004861295223, + -0.0046072909608483315, + 0.008228600025177002, + 0.004389795009046793, + 0.01563071459531784, + -0.014390988275408745, + -0.014122743159532547, + -0.014108243398368359, + -0.000768032914493233, + -0.013608002103865147, + 0.004114300012588501, + 0.00832284800708294, + -0.005303278565406799, + 0.02212659642100334, + -0.0014499735552817583, + -0.028346983715891838, + 0.004440544173121452, + 0.011215546168386936, + 0.01600770838558674, + 0.017689676955342293, + 0.019792139530181885, + 0.00020242990285623819, + -0.024417554959654808, + -0.0013847247464582324, + 0.01938614621758461, + -0.0028963221702724695, + 0.01725468598306179, + -0.012042030692100525, + -0.019444145262241364, + -0.021198613569140434, + -0.03146442770957947, + 0.008054602891206741, + 0.0023797692265361547, + -0.012288526631891727, + 0.021633606404066086, + -0.02101011760532856, + 0.021575607359409332, + 0.00045153082464821637, + -0.00024513615062460303, + -0.004774038214236498, + -0.006992497481405735, + -0.0034146877005696297, + 0.026128524914383888, + -0.0005650366074405611, + 0.003537935670465231, + 0.00749636348336935, + -0.0218656025826931, + -0.016703695058822632, + -0.014876728877425194, + 0.016515199095010757, + -0.016297703608870506, + 0.019531143829226494, + 0.0068475003354251385, + -0.012390024028718472, + 0.03694532811641693, + 0.007619610987603664, + -0.00817785132676363, + -0.007873356342315674, + -0.006089888978749514, + 0.022822584956884384, + 0.0002458158414810896, + 0.012883014976978302, + 0.009816321544349194, + 0.008721590973436832, + -0.0014336614403873682, + -0.022213594987988472, + -0.021981598809361458, + 0.007257117889821529, + -0.004897285718470812, + -0.020531626418232918, + 0.002087961882352829, + 0.003594122128561139, + -0.013020763173699379, + 0.016109205782413483, + 0.01657319813966751, + -0.014738981612026691, + 0.0019991511944681406, + -0.006408883258700371, + 0.0007526269182562828, + 0.003157317405566573, + -0.022097596898674965, + -0.004813912324607372, + 0.02724500373005867, + -0.014456236734986305, + -0.014419987797737122, + -0.014180741272866726, + -0.005992015823721886, + -0.003209878923371434, + -0.004596416372805834, + -0.021590106189250946, + -0.0028346984181553125, + 0.00559327332302928, + -0.009627824649214745, + -0.004603666253387928, + 0.008917337283492088, + -0.007931355386972427, + 0.015398719348013401, + 0.014028494246304035, + -0.010425309650599957, + 0.005564273800700903, + 0.021967099979519844, + -0.013695000670850277, + 0.003911303821951151, + 0.0035198109690099955, + -0.0027911991346627474, + 0.0299854539334774, + 0.0052742790430784225, + -0.022967582568526268, + -0.025896528735756874, + 0.021938100457191467, + -0.0015206597745418549, + 0.004603666253387928, + 0.013615252450108528, + -0.014521485194563866, + 0.0032551907934248447, + -0.0005795363103970885, + -0.018820656463503838, + -0.017457682639360428, + 0.019574644044041634, + 0.033842384815216064, + -0.012977263890206814, + 0.012600270099937916, + -0.022822584956884384, + 0.0234895721077919, + 0.003951177932322025, + 0.014535984955728054, + 0.0011463853297755122, + 0.018429163843393326, + -0.02891247346997261, + -0.016065707430243492, + 0.0005373964668251574, + 0.022518089041113853, + 0.004306421615183353, + -0.0022927706595510244, + 0.001701906556263566, + -0.0017925298307090998, + 0.012571270577609539, + -0.012114529497921467, + 0.0007345022750087082, + -0.022257095202803612, + -0.010548558086156845, + 0.0021133364643901587, + 0.018632160499691963, + 0.0020643998868763447, + 0.009105834178626537, + -0.0006592848803848028, + -0.0007290648645721376, + 0.003987427335232496, + 0.0015061600133776665, + 0.011969531886279583, + -0.01133879367262125, + -0.0034998736809939146, + -0.013615252450108528, + 0.009337830357253551, + -0.011650538071990013, + 0.03677133098244667, + 0.0058868927881121635, + -0.0017327184323221445, + 0.0017290934920310974, + 0.004712413996458054, + -0.031957417726516724, + -0.013419505208730698, + 0.0015152223641052842, + 0.00881583895534277, + 0.005662146955728531, + -0.007713859435170889, + 0.0022764585446566343, + 0.013977745547890663, + 0.02232959307730198, + 0.006698878016322851, + 0.01870465837419033, + -0.011498290114104748, + 0.013426755554974079, + 0.010729804635047913, + 0.00933058001101017, + 0.03595934435725212, + 0.01509422529488802, + -0.016152705997228622, + 0.016254203394055367, + 0.003334939246997237, + -0.012433523312211037, + 0.0017608116613700986, + 0.008417096920311451, + -0.014028494246304035, + -0.0074238646775484085, + -0.013013512827455997, + 0.0020988367032259703, + -0.012368274852633476, + 0.00046331188059411943, + 0.0084968451410532, + 0.016558699309825897, + -0.0053612771444022655, + -0.03506036102771759, + -0.006104388739913702, + -0.002446830505505204, + -0.00591589231044054, + 0.011563539505004883, + -0.03416137769818306, + -0.01626870408654213, + -0.010410810820758343, + -0.021126115694642067, + 0.01223777700215578, + 0.022880584001541138, + -0.014470736496150494, + -0.003733681980520487, + -0.0008781402721069753, + 0.0024178309831768274, + -0.030884437263011932, + -0.012143529020249844, + -0.011766535229980946, + 0.005140156485140324, + -0.006528506055474281, + -0.0023199578281491995, + 0.014934727922081947, + -0.012100029736757278, + -0.021372610703110695, + 0.0018759033409878612, + 0.0028473855927586555, + -0.0070504965260624886, + 0.020531626418232918, + 0.015572716481983662, + -0.01613820530474186, + 0.035118360072374344, + -0.0045456672087311745, + 0.014535984955728054, + -0.02373606711626053, + -0.008388097397983074, + -0.01215077843517065, + -0.005415651481598616, + 0.015877211466431618, + -0.013107760809361935, + -0.00024740173830650747, + -0.00013548191054724157, + 0.0011654163245111704, + 0.013194759376347065, + -0.021329112350940704, + -0.008388097397983074, + -0.016152705997228622, + -0.011201046407222748, + 0.00249757943674922, + 0.01357900258153677, + -0.0006538474699482322, + -0.007333241403102875, + 0.004310046322643757, + 0.0005668490775860846, + 0.0014608483761548996, + -0.01457948423922062, + 0.0032932525500655174, + 0.007340491283684969, + 0.00536852702498436, + -0.005201780237257481, + 0.006934498902410269, + -0.010780553333461285, + 0.004407919477671385, + 0.019531143829226494, + -0.012854015454649925, + 0.0055860234424471855, + -0.002521141665056348, + 0.011005299165844917, + -0.0019647141452878714, + 0.0020408378913998604, + 0.0019846514333039522, + 0.02779599279165268, + -0.012926514260470867, + -0.00279663666151464, + 0.004422419238835573, + -0.029956454411149025, + 0.031957417726516724, + -0.017530180513858795, + 0.011135797016322613, + -0.005582398269325495, + -0.017008190974593163, + 0.020488126203417778, + -0.0018015921814367175, + -0.008257599547505379, + -0.0007607830339111388, + -0.021807603538036346, + -0.03062344156205654, + -0.01276701781898737, + 0.020430127158761024, + 0.01784917525947094, + -0.026708513498306274, + 0.012883014976978302, + -0.013376005925238132, + -0.014876728877425194, + -0.02395356446504593, + -0.029782457277178764, + -0.014949227683246136, + 0.0033856884110718966, + 0.013274508528411388, + 0.01644270122051239, + -0.028506480157375336, + 0.00826484989374876, + 0.0020027761347591877, + 0.004487668164074421, + -0.020401127636432648, + 0.0023779566399753094, + -0.0019846514333039522, + -0.0119332829490304, + 0.01057030726224184, + -1.3126225894666277e-5, + 0.004179548937827349, + 0.0070251221768558025, + -0.020140133798122406, + 0.0013104135869070888, + 0.0028872599359601736, + -0.03305939957499504, + -0.016457200050354004, + 0.010374560952186584, + -0.009040585719048977, + 0.01449973601847887, + -0.0005840674857608974, + -0.018762657418847084, + -0.0029289466328918934, + -0.027433499693870544, + -0.013136760331690311, + -0.002111524110659957, + -0.01960364356637001, + -0.0015904398169368505, + 0.013115011155605316, + -0.007866106927394867, + 0.020082134753465652, + 0.015790212899446487, + -0.0011182921007275581, + 0.0008817652123980224, + -0.010664556175470352, + -0.02156110666692257, + 0.020444627851247787, + 0.020807120949029922, + 0.002171335509046912, + -0.024287058040499687, + -0.013716749846935272, + 0.004194048698991537, + -0.0023290200624614954, + 0.006292885169386864, + -0.00012743908155243844, + 0.008975336328148842, + 0.018124669790267944, + -0.008728841319680214, + 0.012092779390513897, + -0.0017925298307090998, + 0.009881570003926754, + 0.012868515215814114, + -0.0029416338074952364, + -0.015572716481983662, + 0.005702021066099405, + 0.03352338820695877, + -0.005749145057052374, + -0.016297703608870506, + 0.008279349654912949, + 0.006851125042885542, + -0.005662146955728531, + 0.004694289527833462, + -0.010222313925623894, + 0.0008097196114249527, + -0.020691122859716415, + -0.022576088085770607, + -0.014013994485139847, + -0.004357170779258013, + 0.015253721736371517, + 0.019415145739912987, + -0.014390988275408745, + 0.027853991836309433, + 0.008547594770789146, + -0.015471218153834343, + 0.024330556392669678, + -0.026853511109948158, + -0.011056048795580864, + -0.0007240805425681174, + 0.008257599547505379, + -0.019705140963196754, + 0.03288540244102478, + 0.02160460688173771, + -0.0033023147843778133, + -0.0019230274483561516, + 0.001247883541509509, + 0.005306903272867203, + -0.014311239123344421, + -0.006390758790075779, + 0.0003885476035065949, + -0.021923599764704704, + -0.011382292956113815, + -0.004012801684439182, + 0.00226920866407454, + -0.012498772703111172, + 0.02079262211918831, + -0.0006058170692995191, + 0.001224321429617703, + 0.0035034986212849617, + -0.010787803679704666, + -0.03891729190945625, + -0.01125179510563612, + 0.015978708863258362, + 0.015123224817216396, + -0.013252758421003819, + 0.02981145679950714, + 0.006869249977171421, + -0.01500722672790289, + 0.005093032028526068, + 0.007079496048390865, + -0.006071764510124922, + 0.001106511102989316, + -0.001114667160436511, + -0.008707091212272644, + 0.014354738406836987, + 0.030246449634432793, + 0.018588662147521973, + -0.018907655030488968, + -0.011839034035801888, + -0.013615252450108528, + 0.002550140954554081, + -0.004842911846935749, + 0.013571753166615963, + -0.012948264367878437, + -0.0008215006673708558, + -0.006876499857753515, + 0.004911785479635, + 0.019038153812289238, + 0.004096175543963909, + -0.010396311059594154, + -0.02011113427579403, + 0.010316561907529831, + 0.0005346777616068721, + 0.021836603060364723, + 0.0026552642229944468, + 0.025940027087926865, + -0.00014103259309194982, + 0.002406956162303686, + -0.013383256271481514, + -0.01142579223960638, + 0.016413701698184013, + -0.019966136664152145, + 0.017066190019249916, + 0.014746231026947498, + -0.008460596203804016, + 0.00396205298602581, + -0.0008178757270798087, + 0.002087961882352829, + -0.011824534274637699, + -0.01116479653865099, + -0.009881570003926754, + -0.0024722048547118902, + 0.015282721258699894, + -0.0011191983940079808, + 0.005803519394248724, + -0.0016547823324799538, + 0.01681969314813614, + 0.010273062624037266, + -0.006622754503041506, + 0.0038315551355481148, + -0.005183655768632889, + -0.008170600980520248, + 0.010534058324992657, + -0.014506985433399677, + -0.0039040539413690567, + 0.00390767864882946, + 0.025302039459347725, + -0.0032207537442445755, + 0.021039117127656937, + -0.013049762696027756, + -0.010287562385201454, + -0.008728841319680214, + 0.00044065603287890553, + 0.030594442039728165, + -0.0131512600928545, + 0.01558721624314785, + -0.005952141713351011, + 0.02865147776901722, + 0.008721590973436832, + -0.005328652914613485, + -0.00926533155143261, + 0.011802785098552704, + 0.006042764987796545, + 0.01571771316230297, + 0.0038279301952570677, + -0.028752977028489113, + 0.02989845536649227, + 0.014651983045041561, + 0.0368003286421299, + 0.007583362050354481, + 0.011483791284263134, + -0.01763167791068554, + 0.004212173167616129, + 0.011418541893362999, + 0.014282239601016045, + 0.020401127636432648, + 0.001827872940339148, + -0.0021513982210308313, + -0.003093881066888571, + 0.03578534722328186, + 0.005466400645673275, + 0.013608002103865147, + -0.013926995918154716, + 0.007518113125115633, + -0.015746712684631348, + -0.007619610987603664, + 0.0011518227402120829, + 0.0031482551712542772, + 0.011686787009239197, + -0.012803266756236553, + -0.0038170553743839264, + -0.007380365394055843, + 0.0017082501435652375, + 0.025374537333846092, + -0.006963497959077358, + 0.03758331388235092, + -2.4340864911209792e-5, + 0.009794571436941624, + 0.012788766995072365, + -0.002399706281721592, + 0.0001674266386544332, + -0.0010476058814674616, + -0.0022637713700532913, + -0.017399683594703674, + 0.014615734107792377, + -0.0020444628316909075, + 0.021039117127656937, + 0.023286575451493263, + -0.007340491283684969, + -0.015514717437326908, + 0.0041360496543347836, + -0.0030231948476284742, + -0.009018835611641407, + 0.007989354431629181, + -0.010925550945103168, + 0.01708068884909153, + -0.02796998992562294, + 0.0032733152620494366, + -0.0035524351987987757, + -0.00858384370803833, + -0.007692109793424606, + -0.006390758790075779, + 0.001516128657385707, + -0.011955032125115395, + -0.016457200050354004, + -0.030159451067447662, + -0.018588662147521973, + 0.02391006425023079, + 0.00634000962600112, + 0.010983549989759922, + -0.014593984000384808, + 0.00634000962600112, + -0.007333241403102875, + 0.01558721624314785, + 0.02024163119494915, + -0.012368274852633476, + 0.0243015568703413, + -0.028897972777485847, + 0.0004522105155047029, + -0.0039221784099936485, + -0.027824992313981056, + -0.021706104278564453, + -0.0006502225296571851, + -0.016790693625807762, + -0.011360542848706245, + -0.001361162750981748, + 0.01806667074561119, + 0.013180259615182877, + -0.01909615285694599, + -0.008627342991530895, + -0.017443181946873665, + -0.006314634811133146, + 0.020444627851247787, + -0.006100764032453299, + -0.0007168307201936841, + 0.0004898192128166556, + -0.016718195751309395, + 0.009533576667308807, + -0.01349200401455164, + 0.0012805078877136111, + -0.0026153898797929287, + -0.006263886112719774, + 0.0015859085833653808, + -0.017138687893748283, + -0.006042764987796545, + -0.003233441151678562, + -0.014811480417847633, + -0.01409374363720417, + -0.0035687475465238094, + -0.009316080249845982, + -0.00416142400354147, + 0.004092550370842218, + 0.01605120673775673, + 0.017051689326763153, + -0.01605120673775673, + -0.002493954496458173, + -0.002318145241588354, + -0.00783710740506649, + -0.02399706281721592, + 0.019139651209115982, + 0.01789267361164093, + 0.018516162410378456, + -0.014376488514244556, + -0.014767981134355068, + -0.005263403989374638, + -0.01191153284162283, + -0.009287080727517605, + -0.011628787964582443, + 0.014253240078687668, + -0.01341225579380989, + -0.0033059397246688604, + -0.01725468598306179, + -0.0015659715281799436, + 0.02254708856344223, + 0.022576088085770607, + -0.0025664533022791147, + -0.010766053572297096, + -0.005633147433400154, + 0.007996604777872562, + 0.00508215744048357, + -0.011984031647443771, + 0.013629751279950142, + 0.01657319813966751, + 0.01703719049692154, + 0.000976919662207365, + 0.0053721521981060505, + 0.018588662147521973, + 0.015790212899446487, + -0.0014690045500174165, + -0.0005727395764552057, + 0.03073943965137005, + 0.008112601935863495, + -0.019676141440868378, + -0.01657319813966751, + -0.02241659164428711, + -0.004074425902217627, + 0.01518122386187315, + 0.0019955262541770935, + -0.012506022118031979, + -0.0027168879751116037, + 0.0006271135644055903, + -0.003177254693582654, + 0.015978708863258362, + 0.013796498998999596, + 0.010751553811132908, + 0.009403078816831112, + 0.00694899819791317, + -0.0007798139122314751, + -0.015993209555745125, + 0.003998302388936281, + -0.02228609472513199, + -0.0062711359933018684, + 0.011491040699183941, + -0.015210223384201527, + 0.024606050923466682, + 0.005839768797159195, + 0.015514717437326908, + -0.012440773658454418, + 0.015978708863258362, + -0.005560648627579212, + 0.014543235301971436, + -0.037989307194948196, + -0.004266547504812479, + 1.446433634555433e-5, + -0.005325028207153082, + -0.016761694103479385, + 0.01157078891992569, + -0.014028494246304035, + -0.010882051661610603, + 0.02173510380089283, + -0.008917337283492088, + 0.0054084016010165215, + 0.0025918278843164444, + 0.0026679513975977898, + 0.006394383497536182, + 0.03752531483769417, + 0.0033566888887435198, + -0.0015369720058515668, + -0.010766053572297096, + 0.011143047362565994, + 0.011208295822143555, + 0.024649551138281822, + -0.01391974650323391, + 0.02143060974776745, + 0.013890746980905533, + 0.020618624985218048, + 0.006466882303357124, + -0.007858856581151485, + -0.004817537032067776, + -0.004618166014552116, + -0.001219790312461555, + -0.01734168455004692, + -0.0021550231613218784, + 0.0070867459289729595, + 0.014057493768632412, + 0.0058252690359950066, + -0.01664569601416588, + 0.0038569297175854445, + 0.028462981805205345, + 0.0038605546578764915, + 0.01589171029627323, + 0.011947782710194588, + 0.012788766995072365, + -0.0003803915169555694, + -0.010664556175470352, + 7.490586085623363e-6, + -0.0002793464809656143, + 0.022648587822914124, + 0.001536065828986466, + 0.005016908515244722, + -0.010628306306898594, + -0.009642324410378933, + 0.011056048795580864, + 0.0013466629898175597, + -0.015326220542192459, + 0.004440544173121452, + 0.0034509371034801006, + -0.00982357095927, + 0.0059485165402293205, + 0.0074238646775484085, + 0.026186522096395493, + -0.009787322022020817, + 0.01289751473814249, + -0.0007707515615038574, + -0.01703719049692154, + -0.005332278087735176, + 0.011172046884894371, + 0.003039507195353508, + -0.010425309650599957, + 0.0032008166890591383, + 0.00039511779323220253, + 0.01073705404996872, + 0.013506503775715828, + -0.00832284800708294, + -0.021242113783955574, + -0.004705164115875959, + -0.004516667686402798, + -0.0022438340820372105, + 0.01457948423922062, + -0.006456007249653339, + 0.0027042008005082607, + -0.005459150765091181, + -0.01947314478456974, + 0.007090370636433363, + -0.0039004290010780096, + 0.003380250884220004, + -0.018907655030488968, + -0.013651501387357712, + -0.004375295247882605, + 0.02122761309146881, + -0.009714823216199875, + 0.008380847051739693, + -0.004212173167616129, + -0.010947301052510738, + 0.006550255697220564, + 0.01789267361164093, + 0.007064996287226677, + 0.005147406365722418, + 0.004672539886087179, + 2.7894999220734462e-5, + 0.006017390172928572, + 0.01666019670665264, + 0.04445619136095047, + 0.028419481590390205, + 0.044050198048353195, + 0.02293858304619789, + -0.015485717914998531, + 0.003124693175777793, + 0.016123706474900246, + -0.005053157918155193, + 0.013934246264398098, + -0.0030177575536072254, + -0.0018813407514244318, + 0.030507443472743034, + 0.007405740208923817, + -0.002803886542096734, + -0.016080206260085106, + 0.0003831102221738547, + -0.014042994007468224, + -0.005379402078688145, + 0.024562552571296692, + 0.015703214332461357, + -0.012310275807976723, + 0.00824309978634119, + -0.00014227865904103965, + -0.01938614621758461, + 0.0021985224448144436, + -0.009946818463504314, + -0.015601716004312038, + 0.01500722672790289, + 0.019661642611026764, + 0.00843159668147564, + -0.03329139202833176, + 6.09442031418439e-5, + -0.009497326798737049, + 0.00856209360063076, + -0.010773303918540478, + -0.01584821194410324, + -0.0002686982334125787, + 0.002990570617839694, + -0.009751072153449059, + 0.0054084016010165215, + 0.003537935670465231, + -0.0102295633405447, + -0.009410328231751919, + -0.011824534274637699, + -0.007072246167808771, + -0.02135811187326908, + -0.005687521304935217, + -0.012890265323221684, + -0.009062334895133972, + 0.019835637882351875, + -0.01964714191854, + 0.001293195178732276, + 0.007539862766861916, + 0.03914928808808327, + 0.024287058040499687, + 0.005789019633084536, + -0.00830834824591875, + 0.008888337761163712, + 0.005444651003926992, + -0.01639920100569725, + -0.003809805493801832, + 0.009018835611641407, + -0.00717374449595809, + -0.010439809411764145, + 0.017283685505390167, + 0.007597861811518669, + 0.02377956733107567, + 0.008641842752695084, + -0.0010929176351055503, + 0.015050726011395454, + 0.016341201961040497, + -0.02583852969110012, + 0.01571771316230297, + 0.011853533796966076, + -0.017269184812903404, + 0.00634000962600112, + -0.0003994224243797362, + -0.005187280476093292, + -0.0027295753825455904, + -0.0049987840466201305, + 0.006064514629542828, + -0.014934727922081947, + 0.02037212811410427, + 0.014615734107792377, + 0.01925564929842949, + -0.012527772225439548, + -0.014028494246304035, + 0.0009270768496207893, + 0.014644733630120754, + -0.00915658287703991, + -0.01848716288805008, + -0.01518122386187315, + -0.0006357227684929967, + 0.014354738406836987, + 0.031116433441638947, + 0.013303508050739765, + -0.005694771185517311, + -0.016080206260085106, + 0.009983068332076073, + 0.011476540938019753, + -0.0016810630913823843, + -0.0032606280874460936, + -0.0002453627239447087, + 0.010809552855789661, + -0.032363411039114, + 0.014456236734986305, + -0.0028727601747959852, + 0.00433542113751173, + -0.01751568168401718, + -0.0198066383600235, + -0.007670360151678324, + 0.0058868927881121635, + 0.016167204827070236, + 0.0013140385271981359, + 0.007195494137704372, + 0.004049051087349653, + -0.005901392549276352, + 0.009772822260856628, + 0.0364813357591629, + 8.201412856578827e-5, + 0.0020643998868763447, + 0.0023453321773558855, + 0.0067133777774870396, + 0.002986945677548647, + -0.006369009148329496, + -0.006941748782992363, + 0.00104126229416579, + -0.003291439963504672, + -0.018936654552817345, + 0.0019556519109755754, + -0.011476540938019753, + 0.0019284648587927222, + 0.01423874031752348, + -0.005393901839852333, + -0.03987427428364754, + 0.013448504731059074, + -0.027404500171542168, + -0.020647624507546425, + -0.003684745403006673, + -0.004969784524291754, + -0.01097629964351654, + -0.017863674089312553, + -0.011621538549661636, + -0.0023380822967737913, + -0.016631197184324265, + -0.0015913459938019514, + 0.0136660011485219, + -0.02203959785401821, + 0.01908165216445923, + 0.008859338238835335, + 0.0413532480597496, + -0.01475348137319088, + 0.029477963224053383, + -0.028926972299814224, + -0.03607534244656563, + -0.007873356342315674, + 0.007213618606328964, + 0.003691995283588767, + -0.01563071459531784, + -0.008504095487296581, + -0.02254708856344223, + 0.025258539244532585, + -0.000891733739990741, + -0.019328147172927856, + -0.012411774136126041, + 0.00728974211961031, + 0.00028546355315484107, + -0.004107050132006407, + -0.005553398746997118, + 0.029927454888820648, + 0.004915410652756691, + 0.009555325843393803, + -0.01589171029627323, + -0.005136531312018633, + -0.003006882732734084, + -0.0030540069565176964, + -0.007793608121573925, + -0.02377956733107567, + 0.001904902746900916, + -0.011041549034416676, + 0.028926972299814224, + -0.011483791284263134, + -0.00754711264744401, + 0.008482345379889011, + -0.003947553224861622, + 0.014521485194563866, + -0.021488608792424202, + 0.013948746025562286, + 0.0024993920233100653, + 0.006963497959077358, + 0.0028274485375732183, + 0.010751553811132908, + 0.005451900884509087, + -0.012948264367878437, + 0.009047835133969784, + 0.016196204349398613, + 0.02028513140976429, + 0.007170119322836399, + -0.007039621938019991, + -0.03332039341330528, + -0.0022420217283070087, + 0.05014008656144142, + -0.014151742681860924, + 0.01751568168401718, + -0.00964957382529974, + 0.012223277240991592, + -0.004103425424546003, + -0.012056530453264713, + -0.02241659164428711, + -0.016515199095010757, + 0.016689196228981018, + -0.0005845205741934478, + -0.004005552269518375, + 0.016979191452264786, + -0.02050262689590454, + -0.006735127419233322, + 0.018342165276408195, + -0.008061853237450123, + 0.009185582399368286, + -0.010222313925623894, + -0.02553403563797474, + -0.009707572869956493, + -0.010200563818216324, + 0.0013004450593143702, + -0.004157799296081066, + -0.02395356446504593, + -0.022909583523869514, + -0.008685342036187649, + -0.006292885169386864, + 0.031058434396982193, + -0.01951664499938488, + -0.008504095487296581, + -0.006314634811133146, + 0.003521623322740197, + 0.026288021355867386, + -0.01108504831790924, + -0.008888337761163712, + 0.003991052508354187, + -0.008417096920311451, + -0.010041067376732826, + -0.026331519708037376, + -0.0020988367032259703, + 0.0004601400578394532, + -0.007626860868185759, + 0.0025718905963003635, + 0.02493954636156559, + -0.006727877538651228, + -0.01199853140860796, + 0.007982105016708374, + -0.016848692670464516, + 0.011157547123730183, + 0.03645233437418938, + -0.01199853140860796, + -0.03503136336803436, + -0.01592070981860161, + -0.008380847051739693, + -0.011991281993687153, + -0.002416018396615982, + -0.008221350610256195, + -0.010113566182553768, + -0.005524399224668741, + -0.002167710568755865, + -0.03332039341330528, + 0.0004454137524589896, + 0.00960607547312975, + 0.03694532811641693, + 0.04602216184139252, + 0.02327207662165165, + 0.013013512827455997, + -0.022199096158146858, + 0.011295294389128685, + 0.01592070981860161, + 0.024925045669078827, + -0.007391240447759628, + 0.033030398190021515, + 0.01721118576824665, + 0.025635533034801483, + 0.012498772703111172, + 0.0014535984955728054, + 0.027955491095781326, + 0.00022701149282511324, + 0.005506274756044149, + 0.004299171734601259, + 0.020734623074531555, + 0.008235850371420383, + 0.008460596203804016, + -0.005705646239221096, + 0.01589171029627323, + 0.001547846826724708, + -0.02199609950184822, + -0.00225289654918015, + -0.010403560474514961, + 0.005843393504619598, + 0.0026172022335231304, + 0.008873837999999523, + 0.03497336432337761, + -0.035118360072374344, + 0.017051689326763153, + 0.004194048698991537, + 0.025737030431628227, + -0.0026733886916190386, + 0.01942964643239975, + -0.017559180036187172, + 0.006180512253195047, + -0.0006307385046966374, + 0.00367205822840333, + 0.008540344424545765, + 0.0017771238926798105, + -0.0024631426203995943, + -0.005582398269325495, + 0.0034672494512051344, + 0.0031718171667307615, + -0.00700337253510952, + 0.016152705997228622, + 0.007054121699184179, + 0.003269690554589033, + -0.027042007073760033, + 0.009801821783185005, + -0.00087542156688869, + 0.005734645761549473, + -0.012752518057823181, + 0.018893156200647354, + -0.0016094706952571869, + -0.013970495201647282, + -0.007648610509932041, + 0.016341201961040497, + -0.009664073586463928, + 0.024316057562828064, + -0.031203432008624077, + -0.0149927269667387, + 0.006035515107214451, + 0.00039307877887040377, + 0.008721590973436832, + 0.007793608121573925, + 0.002557390835136175, + 0.012005781754851341, + 0.010345561429858208, + -0.006706127896904945, + 0.0015650652348995209, + 0.014891228638589382, + 0.005151031073182821, + 0.00299963285215199, + -0.025273039937019348, + -0.025722531601786613, + -0.017327183857560158, + 0.03169642388820648, + 0.015746712684631348, + -0.006521256174892187, + -0.01449973601847887, + 0.01509422529488802, + 0.012462522834539413, + -0.016181705519557, + -0.008148851804435253, + -0.03224741294980049 + ], + "81857120-fce6-4805-a1f5-878400b46bb2": [ + -0.007338047493249178, + 0.0068404460325837135, + -0.0055019608698785305, + -0.01505402009934187, + -0.04353698343038559, + -0.002812393242493272, + 0.006371188908815384, + 0.05076795071363449, + -0.010159889236092567, + 0.031493764370679855, + -0.01591065153479576, + 0.02925140969455242, + -0.03008284606039524, + -0.0016597214853391051, + -0.005187023431062698, + -0.0033792811445891857, + -0.04394010081887245, + 0.03696108236908913, + -0.017737289890646935, + -0.019173404201865196, + 0.05749502032995224, + -0.02378409169614315, + -0.02183147892355919, + 0.03451716899871826, + -0.010191382840275764, + -0.03298027068376541, + 0.02025678940117359, + -0.0016864911885932088, + 0.00879305973649025, + -0.013088809326291084, + -0.01288095023483038, + 0.011967631056904793, + 0.022007843479514122, + -0.018127812072634697, + 0.007917532697319984, + 0.01603662595152855, + 0.0034139242488890886, + 0.013214784674346447, + -0.03993409499526024, + 0.004078442696481943, + -0.02111341990530491, + 0.019652109593153, + 0.01271088421344757, + -0.009284362196922302, + -0.022272391244769096, + 0.035424187779426575, + 0.03978292644023895, + -0.011759771965444088, + 0.0028029452078044415, + 0.006506612058728933, + 0.028923874720931053, + -4.743748650071211e-5, + -0.020911861211061478, + 0.03230000659823418, + -0.003993409685790539, + 0.012421141378581524, + 0.030536355450749397, + 0.032098446041345596, + 0.0033950279466807842, + -0.04008526727557182, + 0.03154415637254715, + 0.0027289348654448986, + -0.002377779223024845, + -0.0017242836765944958, + 0.003059619339182973, + -0.03177091106772423, + 0.004128832835704088, + 0.0026423269882798195, + -0.03943019360303879, + 0.007048304658383131, + 0.05295991525053978, + 0.024993453174829483, + -0.03187169134616852, + -0.01788845844566822, + -0.015179995447397232, + -0.0090450095012784, + 0.014134402386844158, + -0.05225445702672005, + 0.004635882563889027, + 0.007344346027821302, + -0.02617761865258217, + -3.830921559710987e-5, + 0.03224961459636688, + -0.021264590322971344, + 0.023204606026411057, + 0.04489751160144806, + -0.03146857023239136, + -0.032325200736522675, + -0.02576190046966076, + -0.022272391244769096, + 0.026958663016557693, + -0.0012951811077073216, + -0.008150586858391762, + 0.02566112019121647, + -0.017497936263680458, + -0.012729779817163944, + 0.03764135017991066, + 0.018253786489367485, + -0.01603662595152855, + -0.02149134688079357, + -0.01622558757662773, + 0.03081350028514862, + -0.03983331471681595, + 0.003832791233435273, + 0.004119384568184614, + -0.010210279375314713, + 0.029956869781017303, + 0.006002711597830057, + -0.009019814431667328, + 0.011255872435867786, + 0.021126018837094307, + -0.008037209510803223, + -6.45622203592211e-5, + -0.01769949682056904, + 0.006197973154485226, + -0.07825571298599243, + -0.006141284480690956, + 0.00951111689209938, + -0.013315564021468163, + -0.06585976481437683, + 0.019198600202798843, + 0.03406365588307381, + 0.004853189457207918, + -0.029226215556263924, + 0.003757206257432699, + -0.019186003133654594, + -0.03008284606039524, + 0.009775664657354355, + 0.02690827287733555, + 0.01458791270852089, + 0.025824887678027153, + -0.001897499430924654, + -0.018757687881588936, + 0.0258500836789608, + -0.027588538825511932, + 0.029125435277819633, + -0.0015565793728455901, + 0.05825087055563927, + -0.01560831069946289, + 0.029931675642728806, + -0.02874751016497612, + -0.029326995834708214, + -0.005045301280915737, + 0.0025258001405745745, + 0.027538148686289787, + 0.006220018956810236, + -0.038094859570264816, + 0.036154843866825104, + -0.003672173013910651, + -0.0002993876114487648, + -0.04394010081887245, + -0.008106495253741741, + 0.039858508855104446, + 0.0068719396367669106, + -0.006175927352160215, + 0.022814083844423294, + -0.0010432309936732054, + 0.032425981014966965, + -0.0403372161090374, + 0.01769949682056904, + 0.02160472422838211, + -0.025409171357750893, + 0.0330810509622097, + -0.01116139069199562, + 0.03754056990146637, + 0.005505110137164593, + 0.04570375382900238, + 0.022524341940879822, + -0.03008284606039524, + 0.028797900304198265, + 0.04363776370882988, + 0.011980229057371616, + 0.023141618818044662, + -0.0004009550029877573, + -0.004015455022454262, + 0.02100004255771637, + 0.011211780831217766, + 0.016603512689471245, + 0.049709759652614594, + -0.022587329149246216, + -0.0071301888674497604, + 0.010833855718374252, + -0.03287949040532112, + -0.002336837351322174, + -0.015117007307708263, + -0.012950236909091473, + 0.01008430402725935, + 0.029830895364284515, + -0.04776974394917488, + 0.010940934531390667, + -0.0029572646599262953, + 0.004468965344130993, + 0.02378409169614315, + 0.026530347764492035, + 0.01698143780231476, + 0.008030910044908524, + 0.02556033991277218, + 0.004840591922402382, + 0.023935262113809586, + 0.030460771173238754, + -0.007728570140898228, + -0.06465040147304535, + -0.04930663853883743, + 0.036557964980602264, + -0.043688151985406876, + -0.01943795196712017, + -0.01622558757662773, + -0.029452970251441002, + -0.01737196184694767, + -0.03484470397233963, + 0.019526135176420212, + -0.021642515435814857, + 0.010739373974502087, + 0.0015219362685456872, + -0.0015172121347859502, + -0.0010369322262704372, + -0.03081350028514862, + 0.01494064275175333, + 0.019475745037198067, + -0.0077348691411316395, + -0.009504818357527256, + -0.008383640088140965, + 0.01635156385600567, + -0.02874751016497612, + -0.07110032439231873, + 0.038195639848709106, + 0.0037225631531327963, + 0.004582343157380819, + -0.07049564272165298, + -0.018341969698667526, + 0.04930663853883743, + 0.027487758547067642, + 0.014713887125253677, + -0.057545408606529236, + -0.027563344687223434, + 0.039052270352840424, + -0.025698913261294365, + 0.0061066411435604095, + 0.028571143746376038, + -0.0033288910053670406, + 0.03794369101524353, + 0.02328019216656685, + 0.0222345981746912, + 0.017510533332824707, + 0.010613399557769299, + 0.02025678940117359, + 0.005287803243845701, + 0.008925333619117737, + 0.012112502008676529, + -0.02018120512366295, + 0.005363388452678919, + 0.018896259367465973, + 0.013403747230768204, + 0.008667084388434887, + 0.0015872857766225934, + 0.018354566767811775, + -0.00047713055391795933, + -0.00534764165058732, + -0.003385579911991954, + -0.039153050631284714, + -0.018568724393844604, + -0.004217015113681555, + 0.03628081828355789, + -0.018014434725046158, + 0.05230484530329704, + -0.007256163749843836, + 0.030158430337905884, + -0.015444543212652206, + 0.014663497917354107, + 0.013756477274000645, + -0.049079883843660355, + -0.0002358095662202686, + -0.021163810044527054, + -0.008956827223300934, + -0.017195595428347588, + -0.03391248732805252, + 0.016716891899704933, + 0.0403372161090374, + 0.001414070138707757, + 0.01075197197496891, + 0.022070830687880516, + 0.02563592605292797, + 0.01851833425462246, + 0.0279160737991333, + -0.0024517897982150316, + -0.03255195543169975, + 0.011948734521865845, + 0.018455347046256065, + -0.0413702093064785, + -0.02761373482644558, + -0.0155075304210186, + -0.004006007220596075, + 0.026731908321380615, + -0.015595712698996067, + 0.043713346123695374, + -0.00015126849757507443, + -0.015457140281796455, + -0.022297587245702744, + -0.007237267214804888, + 0.014978434890508652, + -0.02814282849431038, + 0.0014683968620374799, + 0.023393569514155388, + -0.05190172791481018, + 0.01143223699182272, + -0.0027966464404016733, + 0.061375051736831665, + 0.00849071890115738, + -0.03880032151937485, + 0.017623910680413246, + 0.04643440991640091, + -0.010317358188331127, + -0.014285571873188019, + -0.007993117906153202, + -0.006815250962972641, + -0.0066199894063174725, + 0.034794311970472336, + -0.007690777536481619, + -0.0062578110955655575, + -0.015079215168952942, + 0.0011660567251965404, + -0.004157177172601223, + -0.03071272000670433, + 0.0030785156413912773, + 0.03764135017991066, + -0.015368958003818989, + 0.004453218542039394, + -0.01768689975142479, + -0.02316681481897831, + -0.05265757814049721, + -0.00822617206722498, + -0.06172778084874153, + -0.045653361827135086, + -0.008912735618650913, + -0.009567806497216225, + -0.01580987125635147, + -0.02542176842689514, + -0.06339064985513687, + -0.005735015030950308, + 0.0032533060293644667, + 0.0011416489724069834, + 0.049180664122104645, + -0.014021025039255619, + 0.011066908948123455, + 0.044015686959028244, + -0.001306203892454505, + 0.005426375661045313, + 0.018682101741433144, + -0.01913561299443245, + 0.03643198683857918, + 0.0005708244862034917, + -0.013630501925945282, + 0.04086631163954735, + 0.017712093889713287, + 0.009555208496749401, + -0.0061948238871991634, + 0.016616111621260643, + -0.01686806045472622, + 0.023355776444077492, + 0.021365370601415634, + 0.00966858584433794, + -0.02089926227927208, + -0.029100239276885986, + 0.0010818109149113297, + 0.002905299887061119, + 0.008673382923007011, + 0.02276369370520115, + 0.015028825029730797, + -0.002265976509079337, + 0.03446677699685097, + -0.004538251552730799, + 0.02401084639132023, + 0.015784675255417824, + 0.02824360877275467, + -0.030485965311527252, + 0.008925333619117737, + 0.020130814984440804, + 0.012276270426809788, + -0.028621533885598183, + 0.03804446756839752, + -0.030561551451683044, + 0.0009188306285068393, + 0.027588538825511932, + 0.001551855355501175, + 0.055580198764801025, + 0.02731139399111271, + 0.018656907603144646, + -0.016792476177215576, + -0.013365954160690308, + -0.031896885484457016, + -0.04179852455854416, + -0.014512327499687672, + -0.024124225601553917, + -0.021541735157370567, + -0.037288617342710495, + 0.018770284950733185, + -0.008207275532186031, + -0.012685689143836498, + -0.002220310503616929, + 0.003829641966149211, + 0.005057898815721273, + -0.0011030691675841808, + 0.007407333701848984, + 0.016477538272738457, + 0.03948058560490608, + -0.015268177725374699, + -0.004516206216067076, + -0.0056310854852199554, + 0.009391441009938717, + -0.00354304863139987, + 0.0024407668970525265, + 0.009353648871183395, + 0.021957453340291977, + -0.019488342106342316, + 0.025207610800862312, + -0.03980812057852745, + 0.03217403218150139, + -0.007923831231892109, + -0.08546148240566254, + 0.0029714368283748627, + 0.028193218633532524, + 0.0630883127450943, + -0.0294781643897295, + 0.0217306986451149, + 0.003020252101123333, + 0.0001468396803829819, + 0.030662329867482185, + 0.01458791270852089, + -0.0023966755252331495, + 0.0007440402405336499, + -0.02824360877275467, + -0.03864914923906326, + 0.001968360273167491, + -0.014827265404164791, + 0.004900429863482714, + -0.0009267040877602994, + 0.015898052603006363, + -0.014877655543386936, + -0.02814282849431038, + -0.026757104322314262, + 0.040815919637680054, + -0.019614318385720253, + 0.03507145866751671, + 0.03456755727529526, + -0.013454136438667774, + -0.02595086395740509, + -0.004538251552730799, + -0.0031367791816592216, + -0.0009353648638352752, + 0.02811763435602188, + 0.006922329775989056, + 0.047920916229486465, + 0.00035056498018093407, + 0.011306261643767357, + -0.006377487443387508, + -0.0054704672656953335, + -0.016112210229039192, + 0.004846890456974506, + -0.0036942188162356615, + 0.020710300654172897, + -0.025283195078372955, + 0.020357569679617882, + -0.000288364797597751, + -0.012232178822159767, + -0.01675468310713768, + -0.054673176258802414, + -0.049911320209503174, + 0.039656952023506165, + -0.0003704454284161329, + -0.004516206216067076, + -0.0075962962582707405, + 0.002103783655911684, + -0.04000968113541603, + 0.018052225932478905, + -0.0033698328770697117, + -0.00013286432658787817, + -0.003558795666322112, + 0.014436742290854454, + 0.016679098829627037, + 0.02296525426208973, + -0.02480448968708515, + -0.03529821336269379, + -0.024791892617940903, + 0.014386352151632309, + 0.029604140669107437, + 0.002736808266490698, + -0.022196806967258453, + -0.005457869730889797, + 0.004028052557259798, + 0.0023888021241873503, + 0.03504626452922821, + -0.009435532614588737, + -0.003196617355570197, + -0.01622558757662773, + -0.016527928411960602, + -0.041193846613168716, + -6.598928302992135e-5, + 0.000866865913849324, + 0.003237559227272868, + -0.043914906680583954, + 0.05265757814049721, + -0.018153006210923195, + -0.003054895205423236, + 0.04625804349780083, + 0.01664130575954914, + -0.0015707515412941575, + -0.03814524784684181, + -0.014424145221710205, + 0.010644893161952496, + -0.0005601953598670661, + -0.0015431945212185383, + -0.034290414303541183, + 0.026102032512426376, + 0.016401953995227814, + -0.016049223020672798, + 0.009082802571356297, + -0.0005432674661278725, + 0.009876444935798645, + 0.011463730596005917, + 0.003826492466032505, + -0.002543121576309204, + -0.001333761028945446, + -0.010418137535452843, + 0.037792518734931946, + 0.011255872435867786, + -0.00571611849591136, + -0.01562090776860714, + 0.00397766288369894, + 0.024539941921830177, + 0.019211197271943092, + -0.008912735618650913, + 0.006802653428167105, + 0.021352773532271385, + -0.0020785885863006115, + 0.017094817012548447, + -0.012912443839013577, + -0.00434613972902298, + -0.037817712873220444, + -0.0013030546251684427, + 0.04676194489002228, + 0.004953969269990921, + 0.020093021914362907, + -0.003974513150751591, + -0.022259794175624847, + 0.004006007220596075, + 0.02180628292262554, + -0.015016227960586548, + 0.01769949682056904, + 0.01769949682056904, + 0.02089926227927208, + -0.022297587245702744, + 0.013454136438667774, + 0.007508113980293274, + -0.026731908321380615, + 0.001430604374036193, + -0.02925140969455242, + 0.03373612090945244, + -0.040186043828725815, + -0.03030960075557232, + 0.024388771504163742, + 0.02841997519135475, + -0.007048304658383131, + 0.010997623205184937, + 0.001973084406927228, + -0.025875277817249298, + -0.0165531225502491, + 0.0002177006535930559, + 0.01137554831802845, + 0.009215075522661209, + 0.017825471237301826, + 0.012005423195660114, + 0.023003047332167625, + 0.06318908929824829, + -0.025509949773550034, + 0.0036091855727136135, + 0.029226215556263924, + -0.013416344299912453, + 0.007974221371114254, + -0.018946649506688118, + 0.029730115085840225, + 0.006323948036879301, + -0.012206983752548695, + -0.002538397442549467, + -0.018543530255556107, + 0.015872858464717865, + 0.0033036961685866117, + -0.04542660713195801, + -0.008648187853395939, + -0.0023651819210499525, + 0.02771451324224472, + 0.025824887678027153, + 0.026807494461536407, + 0.02171810157597065, + -0.015242982655763626, + -0.03688549995422363, + 0.03597847744822502, + 0.009492221288383007, + 0.0073632425628602505, + -0.007079798728227615, + 0.002391951624304056, + 0.00018345119315199554, + 0.010065407492220402, + 0.008282860741019249, + -0.005114587489515543, + -0.020193802192807198, + -0.0013731281505897641, + -0.012232178822159767, + 0.012162892147898674, + -0.014877655543386936, + -0.006525508128106594, + 0.0013849383685737848, + 0.018845869228243828, + 0.006897134706377983, + -0.006506612058728933, + 0.009662287309765816, + 0.011822760105133057, + 0.010537814348936081, + 0.01560831069946289, + 0.002225034637376666, + -0.018896259367465973, + 0.031191425397992134, + -0.04063955694437027, + 0.040815919637680054, + -0.020710300654172897, + 0.02543436549603939, + -0.028772704303264618, + -0.005079944618046284, + -0.022297587245702744, + -0.024754099547863007, + 0.012320361100137234, + 0.013189589604735374, + 0.02472890540957451, + 0.028369585052132607, + -0.017964044585824013, + 0.026832688599824905, + -0.002177793998271227, + 0.027412174269557, + 0.01359270978718996, + -0.016578318551182747, + 0.005366537719964981, + 0.005845243111252785, + -0.01966470666229725, + -0.035197433084249496, + -0.013189589604735374, + -0.008919034153223038, + 0.008937930688261986, + -0.02256213314831257, + 0.02935218997299671, + 0.013265173882246017, + 0.010619698092341423, + -0.060468029230833054, + 0.029931675642728806, + 0.013428942300379276, + 0.01984107308089733, + 0.012855755165219307, + -0.007678180001676083, + -0.004957119002938271, + 0.02907504513859749, + 0.02389746904373169, + -0.015192592516541481, + 0.009353648871183395, + -0.006525508128106594, + -0.02988128550350666, + 0.013869854621589184, + 0.009800859726965427, + 0.008963125757873058, + 0.0029698621947318316, + -0.0016116935294121504, + 0.0014676095452159643, + 0.009353648871183395, + 0.002097484888508916, + -0.016464941203594208, + 0.018140409141778946, + -0.002662797924131155, + 0.005860989913344383, + -0.00679635489359498, + -0.006323948036879301, + -0.03131740167737007, + 0.0009542611078359187, + -0.023544739931821823, + 0.008648187853395939, + -0.0077663627453148365, + -0.013214784674346447, + 0.01106061041355133, + 0.014298169873654842, + -0.015658700838685036, + 0.008730071596801281, + 0.03348417207598686, + -0.0023084930144250393, + 0.018266383558511734, + 0.016590915620326996, + 0.020911861211061478, + -0.018442749977111816, + 0.005227965302765369, + 0.0011235401034355164, + 0.009410337544977665, + -0.022688109427690506, + -0.009901640005409718, + 0.04509907215833664, + -0.016162600368261337, + -0.025610730051994324, + -0.0006806590245105326, + -0.0033257417380809784, + 0.00675226328894496, + -0.008156885392963886, + 0.012975431978702545, + -0.01820339635014534, + -0.0049382224678993225, + 0.021743295714259148, + -0.006575898267328739, + 0.022486548870801926, + 0.009920536540448666, + 0.015117007307708263, + -0.0029997811652719975, + -0.01278016995638609, + -0.0036438286770135164, + -0.013441539369523525, + 0.012471531517803669, + -0.011199182830750942, + 0.01717040129005909, + -0.01798923872411251, + 0.04290710762143135, + -0.0018423852743580937, + -0.04930663853883743, + -0.04623284935951233, + 0.022196806967258453, + 0.025522548705339432, + 0.006878238637000322, + -0.0029572646599262953, + 0.00036650869878940284, + 0.03484470397233963, + 0.015268177725374699, + 0.00032517313957214355, + 0.00718687754124403, + -0.03814524784684181, + 0.0019510388374328613, + 0.005083093885332346, + 0.0027163373306393623, + 0.02430059015750885, + -0.013176991604268551, + -0.030838696286082268, + 0.0013589559821411967, + 0.03330780565738678, + 0.021755892783403397, + 0.004248509183526039, + -0.011728278361260891, + -0.03350936621427536, + 0.019727695733308792, + -0.004774454981088638, + 0.0237714946269989, + 0.037263423204422, + -0.025283195078372955, + 0.040689945220947266, + 0.021428357809782028, + 0.007293956354260445, + -0.0060845958068966866, + -0.01780027709901333, + -0.022398365661501884, + -0.025283195078372955, + 0.014650899916887283, + -0.032199226319789886, + -0.014613107778131962, + -0.0010542537784203887, + -0.018115215003490448, + -0.023620324209332466, + 0.0012392797507345676, + -0.012591207399964333, + 0.049911320209503174, + 0.028495559468865395, + -0.015696493908762932, + 0.00987014640122652, + -0.002344710985198617, + 0.0008424582192674279, + 0.03638159856200218, + -0.015205190517008305, + -0.01570909097790718, + 0.04530063271522522, + -0.002828140277415514, + -0.0485759861767292, + 0.0029619887936860323, + -0.021907063201069832, + -0.026404373347759247, + 0.0023667565546929836, + -0.01902223378419876, + 0.005079944618046284, + 0.01143223699182272, + 0.027437368407845497, + 0.021126018837094307, + -0.020458349958062172, + -0.0029320695903152227, + -0.0039808121509850025, + -0.0038107456639409065, + -0.01313919946551323, + 0.0008936356171034276, + 0.02180628292262554, + 0.0064373258501291275, + -0.006890836171805859, + -0.02120160311460495, + 0.014562717638909817, + 0.001851833425462246, + -0.0005676751607097685, + -0.011992826126515865, + 0.02831919491291046, + 0.026731908321380615, + -0.011249572969973087, + 0.005004359409213066, + 0.027664124965667725, + 0.002495880937203765, + 0.01090314146131277, + -0.004862637259066105, + -0.024073835462331772, + -0.013819464482367039, + -0.022902267053723335, + 0.011671589687466621, + -0.001618779613636434, + 0.016830269247293472, + 0.0046957205049693584, + -0.015557920560240746, + 0.0137060871347785, + 0.005668878089636564, + 0.03172052279114723, + 0.028268804773688316, + 0.020811080932617188, + 0.044192053377628326, + -0.020004840567708015, + 0.00987014640122652, + 0.005933425389230251, + 0.0029210466891527176, + 0.02576190046966076, + 0.01622558757662773, + 0.0103362537920475, + 0.006238915026187897, + -0.005215367767959833, + 0.012660494074225426, + -0.009687482379376888, + 0.009120594710111618, + -0.020407959818840027, + -0.03464314341545105, + -0.037893299013376236, + 0.019160807132720947, + -0.012635299004614353, + -0.0001295181136811152, + 0.0017400305951014161, + 0.00878676027059555, + 0.0175861194729805, + -0.009637092240154743, + 0.012301464565098286, + -0.008339549414813519, + 0.04706428572535515, + -0.0012227455154061317, + -0.00638378644362092, + -0.005265757907181978, + -0.011810162104666233, + 0.003432820551097393, + -0.04262996092438698, + 0.013630501925945282, + -0.003278501098975539, + 0.02295265719294548, + 0.03018362447619438, + 0.005744462832808495, + -0.00708609726279974, + 0.02315421588718891, + -0.019790682941675186, + -0.046913113445043564, + -0.008396238088607788, + 0.008799358271062374, + -0.0052594589069485664, + 0.0024124225601553917, + -0.02008042484521866, + 0.015192592516541481, + -0.028596339747309685, + 0.003750907490029931, + 0.010260668583214283, + 0.006213719956576824, + -0.023443959653377533, + -0.032526761293411255, + -0.04207567125558853, + 0.0027698767371475697, + -0.013743879273533821, + 0.01912301406264305, + 0.012162892147898674, + 0.010657490231096745, + 0.036230430006980896, + -0.017548326402902603, + -0.0600145198404789, + 0.009964627213776112, + 0.00387688260525465, + 0.012030618265271187, + -0.013441539369523525, + -0.03371092677116394, + 0.015696493908762932, + 0.011268469505012035, + -0.006878238637000322, + -0.04126943275332451, + -0.0032470072619616985, + -0.029503360390663147, + -0.015079215168952942, + -8.025989518500865e-5, + 0.014852460473775864, + -0.01147632859647274, + -0.0012022744631394744, + -0.025497352704405785, + 0.0005519282422028482, + 0.0030155282001942396, + -0.027135029435157776, + -0.03020882047712803, + 0.0341392420232296, + 0.01986626721918583, + 0.014751680195331573, + 0.06233246251940727, + 0.0026706713251769543, + 0.005183873698115349, + -0.010021316818892956, + -0.03217403218150139, + 0.03318183124065399, + 0.0009621345670893788, + -0.0111172990873456, + -0.020848874002695084, + -0.03172052279114723, + 0.004305197857320309, + 0.021453553810715675, + -0.01483986247330904, + 0.004292600322514772, + 0.00491302739828825, + -0.0030454471707344055, + -0.007571101188659668, + -0.00021494495740626007, + 0.002335262717679143, + 0.011772369965910912, + 0.017598716542124748, + -0.00888754054903984, + 0.004106787033379078, + -0.01645234413444996, + -0.022096026688814163, + 0.035222627222537994, + -0.0222345981746912, + 0.035928089171648026, + 0.009542611427605152, + -0.048651568591594696, + -0.02607683837413788, + -0.01829157955944538, + 0.00884974841028452, + 0.004122533835470676, + -0.012162892147898674, + 0.0026864183600991964, + -0.01892145536839962, + -0.034491971135139465, + 0.04572894796729088, + 0.0015227235853672028, + -0.0032123641576617956, + 0.008881242014467716, + 0.04716506227850914, + 0.013164394535124302, + -0.007073499727994204, + 0.001984107308089733, + 0.03010804019868374, + 0.018883662298321724, + 0.0009070204687304795, + 0.018064824864268303, + -0.01955132931470871, + 0.02242356166243553, + 0.007930130697786808, + -0.025875277817249298, + -0.0021195304580032825, + -0.05245601758360863, + 0.03172052279114723, + -0.04454478248953819, + 0.007690777536481619, + 0.0175861194729805, + 0.023708507418632507, + 0.007697076536715031, + -0.026454763486981392, + 0.023015644401311874, + -0.010342552326619625, + 0.020143412053585052, + 0.00976936612278223, + -0.018669504672288895, + 0.007974221371114254, + 0.012691987678408623, + -0.005782255437225103, + 0.026001254096627235, + 0.013202186673879623, + 0.032627541571855545, + 0.0006464095204137266, + -0.02461552806198597, + 0.026001254096627235, + -0.015394153073430061, + -0.01349192950874567, + 0.015671297907829285, + -0.008137988857924938, + -0.0010849602986127138, + -0.03237559273838997, + 0.011778668500483036, + -0.024124225601553917, + 0.012251075357198715, + -0.02844516932964325, + -0.030889086425304413, + -0.0050893924199044704, + 0.020004840567708015, + -0.02296525426208973, + -0.021894466131925583, + 0.01665390282869339, + -0.03877512365579605, + 0.023922665044665337, + 0.01718299835920334, + 0.004742961376905441, + -0.0073632425628602505, + -0.04262996092438698, + 0.04892871528863907, + 0.015167397446930408, + 0.02037016861140728, + 0.008440329693257809, + -0.0031556752510368824, + -0.029301799833774567, + 0.02141576074063778, + 0.008326951414346695, + 0.02761373482644558, + -0.03507145866751671, + -0.016414551064372063, + 0.01810261607170105, + -0.023204606026411057, + -0.03131740167737007, + 0.00010717722034314647, + 0.0026596486568450928, + -0.01540675014257431, + -0.007306553889065981, + 0.012736079283058643, + 0.01780027709901333, + -0.006368039641529322, + 0.027588538825511932, + -0.01380686741322279, + 0.008830851875245571, + 0.0026454762555658817, + -0.0023132171481847763, + -0.003237559227272868, + 0.0011920389952138066, + 0.014865057542920113, + -0.028470365330576897, + 0.0022911715786904097, + 0.01257231179624796, + 0.03146857023239136, + 0.005196471232920885, + -0.007432528771460056, + -0.010978726670145988, + -0.003943019546568394, + 0.00821987260133028, + -0.004116235300898552, + -0.005256309639662504, + 0.01184795517474413, + 0.024439161643385887, + 0.010103200562298298, + -0.015242982655763626, + 0.033232223242521286, + -0.010153589770197868, + 0.0031588247511535883, + 0.012962833978235722, + 0.013101406395435333, + -0.004169774707406759, + -0.007401035167276859, + 0.025585535913705826, + 0.0020833127200603485, + 0.020433155819773674, + 0.031594544649124146, + -0.029830895364284515, + 0.03287949040532112, + -0.008402536623179913, + 0.01592324860394001, + 0.017346765846014023, + 0.0003279288357589394, + 0.005190172698348761, + 0.0018077421700581908, + 0.019475745037198067, + -0.001127476803958416, + 0.01090314146131277, + 0.028621533885598183, + 0.03900187835097313, + 0.010613399557769299, + 0.015381555072963238, + 0.02047094702720642, + 0.006342844571918249, + -0.02120160311460495, + -0.0034769116900861263, + -0.015268177725374699, + 0.0012258948991075158, + 0.0053192973136901855, + -0.02935218997299671, + 0.0103362537920475, + 0.00573816429823637, + -0.019400160759687424, + 0.030133236199617386, + -0.02708463929593563, + -0.005457869730889797, + -0.021138615906238556, + 0.004950820002704859, + 0.006557002197951078, + -0.0012321935500949621, + 0.0005672814440913498, + 0.03786810487508774, + -0.030485965311527252, + -0.003110009478405118, + -0.007898636162281036, + -0.00946072768419981, + -0.004730363842099905, + 0.006878238637000322, + 0.0028722314164042473, + 0.023595130071043968, + 0.010128394700586796, + -0.02647995762526989, + 0.026857884600758553, + 0.04189930483698845, + 0.014449340291321278, + 0.016779879108071327, + 0.00273995753377676, + 0.008018312975764275, + -0.0036060363054275513, + -0.012213282287120819, + -0.018795479089021683, + -0.0025856380816549063, + -0.01882067508995533, + 0.035827308893203735, + 0.006733367219567299, + -0.015230385586619377, + -0.015961039811372757, + 0.01350452657788992, + 0.00849071890115738, + -0.038120053708553314, + -0.007961624301970005, + 0.005083093885332346, + 0.01002761535346508, + 0.02450215071439743, + 0.014033622108399868, + -0.0060751475393772125, + 0.03136778995394707, + 0.014487132430076599, + -0.018241189420223236, + 0.0005023255944252014, + -0.0039619156159460545, + -0.0071931760758161545, + -0.01194243598729372, + 0.028596339747309685, + -0.005435823928564787, + -0.011520419269800186, + -0.006254661828279495, + 0.016691695898771286, + 0.006475118454545736, + 0.01039294246584177, + -0.022096026688814163, + 0.008931632153689861, + 0.0006692425231449306, + -0.012874651700258255, + 0.0006137347663752735, + -0.017649106681346893, + 0.02222200110554695, + -0.014461937360465527, + -0.021428357809782028, + -0.03172052279114723, + -0.0024313186295330524, + 0.01675468310713768, + 0.007558503653854132, + 0.0011755047598853707, + -0.027034249156713486, + -0.025522548705339432, + 0.018052225932478905, + 0.008912735618650913, + 0.00017341255443170667, + 0.005051600281149149, + 0.005375985987484455, + -0.008818254806101322, + 0.011236975900828838, + -0.005438973195850849, + 0.008837150409817696, + 0.0025667420122772455, + 0.01530596986413002, + 0.018694698810577393, + -0.02894906885921955, + -0.020030034705996513, + -0.0012345556169748306, + -0.04336061701178551, + 0.006979018449783325, + 0.00821987260133028, + 0.016313770785927773, + -0.00017606983601581305, + -0.030234014615416527, + -0.01495323982089758, + -0.0038107456639409065, + 0.0008125391905196011, + -0.016565721482038498, + 0.0023226651828736067, + -0.00752071151509881, + 0.001574688358232379, + -0.003467463655397296, + -0.0106071000918746, + -0.02522020787000656, + -0.01623818650841713, + -0.01288095023483038, + 0.011703083291649818, + -0.0039619156159460545, + -0.005974367260932922, + 0.013328162021934986, + 0.020030034705996513, + -0.01095983013510704, + 0.023217204958200455, + 0.010065407492220402, + -0.011451133526861668, + -0.006487715989351273, + -0.00757740018889308, + -0.015028825029730797, + -0.011010220274329185, + 0.02152913808822632, + -0.03436599671840668, + -0.006390084978193045, + -0.004909878131002188, + -0.006125537678599358, + -0.02263771928846836, + -0.01184165570884943, + 0.026228008791804314, + -0.03340858593583107, + -0.00022813296527601779, + -0.01976548694074154, + -0.006172778084874153, + 0.0045036086812615395, + 0.02316681481897831, + 0.01250932365655899, + -0.01427297480404377, + -0.00337613164447248, + -0.025169817730784416, + -0.03224961459636688, + 0.010758270509541035, + 0.01562090776860714, + -0.003141503082588315, + 0.006160180550068617, + 0.01831677369773388, + 0.00752071151509881, + 0.01737196184694767, + -0.008667084388434887, + -0.013643098995089531, + -0.011766071431338787, + -0.015961039811372757, + -0.010430735535919666, + 0.010405540466308594, + 0.004780753515660763, + -0.003905226942151785, + 0.027739709243178368, + -0.018644308671355247, + 0.010474826209247112, + 0.04315905645489693, + -0.03560055419802666, + 0.003719413885846734, + -0.015192592516541481, + 0.009057607501745224, + -0.0043335421942174435, + 0.021151212975382805, + -0.021944856271147728, + 0.009737872518599033, + -0.004084741231054068, + -0.005457869730889797, + -0.00867968238890171, + -0.003269052831456065, + -0.01902223378419876, + -0.018178202211856842, + -0.04046319052577019, + -0.005977516993880272, + 0.006220018956810236, + -0.009170984849333763, + -0.022045636549592018, + -0.00571611849591136, + 0.01509181223809719, + -0.0077348691411316395, + 0.0003041116870008409, + -0.003823343198746443, + -0.008440329693257809, + 0.006210570689290762, + -0.02256213314831257, + 0.015205190517008305, + -0.005917678587138653, + 0.03393768146634102, + 0.0037414594553411007, + -0.012162892147898674, + -0.017296375706791878, + 0.0070420061238110065, + 0.010758270509541035, + -0.0023100676480680704, + 0.005961769726127386, + -0.027739709243178368, + -0.014688692055642605, + -0.017762484028935432, + 0.020307179540395737, + 0.0070105125196278095, + -0.01994185335934162, + -0.01039294246584177, + 0.018442749977111816, + 0.009706378914415836, + 0.01525558065623045, + -0.018014434725046158, + -0.0160240288823843, + 0.00028127868426963687, + -0.010739373974502087, + 0.023015644401311874, + 0.016162600368261337, + 0.003990259952843189, + 0.016175197437405586, + 0.02038276568055153, + -0.010991324670612812, + 0.0021525989286601543, + -0.013441539369523525, + 0.0035273018293082714, + -0.007678180001676083, + 0.006582197267562151, + 0.009643390774726868, + 0.0015361084369942546, + 0.003829641966149211, + -0.002939942991361022, + 0.01953873224556446, + -0.00888754054903984, + 0.03970734030008316, + -0.009844951331615448, + -0.004557148087769747, + -0.022877071052789688, + -0.016527928411960602, + -0.01676728017628193, + -0.008282860741019249, + 0.015948442742228508, + -0.0030501713044941425, + 0.016162600368261337, + 0.027538148686289787, + 0.044721148908138275, + 0.006289305165410042, + -0.0063963839784264565, + 0.00403435155749321, + -0.010329955257475376, + -0.030662329867482185, + 0.023847078904509544, + -0.014209987595677376, + -0.008667084388434887, + 0.0013148647267371416, + 0.0070105125196278095, + -0.01199912466108799, + 0.0007334110559895635, + -0.022700706496834755, + -0.007136487402021885, + -0.005801151506602764, + -0.01044963113963604, + -0.00020825253159273416, + -0.020722897723317146, + 0.0003176933678332716, + -0.006358591374009848, + -0.006613690871745348, + -0.01014099270105362, + 0.003864285070449114, + 0.005366537719964981, + 0.013164394535124302, + -0.0006007435731589794, + 0.004547699820250273, + -0.0020360720809549093, + -0.01070788037031889, + -0.021692905575037003, + -0.0030470218043774366, + 0.014398950152099133, + -0.01350452657788992, + -0.007382138632237911, + 0.0009361521806567907, + -0.015167397446930408, + -0.008396238088607788, + 0.030737916007637978, + -0.002333688084036112, + -0.010430735535919666, + -0.036028869450092316, + 0.0020281984470784664, + -6.461142766056582e-5, + 0.001817190321162343, + 0.016212990507483482, + 0.04268035292625427, + -0.019601719453930855, + -0.009693780913949013, + -0.0008834001491777599, + 0.012899846769869328, + 0.008465524762868881, + 0.024439161643385887, + -0.02128978632390499, + 0.027487758547067642, + -0.0043335421942174435, + -0.016527928411960602, + 0.021566931158304214, + 0.0016628708690404892, + -0.0024297439958900213, + -0.0032092146575450897, + 0.01572168804705143, + -0.013832062482833862, + 0.004840591922402382, + 0.01004021242260933, + -9.182401117868721e-5, + -0.006449923384934664, + 0.017523132264614105, + -0.013302966952323914, + 0.02907504513859749, + -0.016389355063438416, + -0.028394779190421104, + -0.006109790410846472, + -0.01705702394247055, + -0.007697076536715031, + -0.008452926762402058, + 0.017951447516679764, + -0.0005373623571358621, + 0.014487132430076599, + -0.03008284606039524, + -0.0077348691411316395, + -0.01039294246584177, + 0.01632636785507202, + -0.01943795196712017, + 0.026026448234915733, + 0.011010220274329185, + 0.019513538107275963, + 0.01282426156103611, + 0.010619698092341423, + 0.027689319103956223, + -0.02294006012380123, + -0.019186003133654594, + 0.0005846030544489622, + 0.018354566767811775, + -0.032929882407188416, + -1.3409454595603165e-6, + -0.023129021748900414, + -0.0018707297276705503, + -0.03539899364113808, + 0.030133236199617386, + -0.008837150409817696, + -0.0036091855727136135, + -0.007489217445254326, + 0.00781045388430357, + 0.007123889867216349, + 0.011022818274796009, + -0.0031178828794509172, + 0.027261003851890564, + -0.0010629146127030253, + 0.044015686959028244, + -0.01329036895185709, + 0.01562090776860714, + 0.00692862831056118, + 0.019400160759687424, + 0.026706714183092117, + 0.035726528614759445, + -0.012792767956852913, + 0.011287366040050983, + -0.015016227960586548, + 0.008440329693257809, + -0.018354566767811775, + -0.008471823297441006, + -0.01612480729818344, + -0.02336837351322174, + 0.014310766942799091, + -0.010317358188331127, + -0.010374046862125397, + -0.00786714255809784, + 0.006188524886965752, + 0.026102032512426376, + 0.011766071431338787, + 0.008396238088607788, + -0.013227381743490696, + -0.003744608722627163, + -0.004327243659645319, + -0.032098446041345596, + -0.006531807128340006, + 0.01257231179624796, + 0.005467317998409271, + -0.010222876444458961, + -0.01023547351360321, + 0.0007219946128316224, + -0.008931632153689861, + 0.0013006925582885742, + -0.01840495690703392, + 0.011048013344407082, + 0.021554334089159966, + -0.026505153626203537, + 0.03504626452922821, + -0.02256213314831257, + 0.007369541097432375, + -0.03285429626703262, + -0.00315252598375082, + -0.0008755266899242997, + 0.01313919946551323, + -0.0055208574049174786, + -0.02480448968708515, + -0.03363534063100815, + -0.0003198585473001003, + -0.008137988857924938, + 0.016301173716783524, + 0.01963951252400875, + 0.008049806579947472, + -0.008616694249212742, + 0.025976058095693588, + -0.017712093889713287, + -0.016704292967915535, + 0.006339695304632187, + 0.007287657354027033, + 0.02917582541704178, + -0.020722897723317146, + -0.009700080379843712, + 0.02771451324224472, + -0.03670913353562355, + -0.0024029742926359177, + 0.003555646166205406, + 0.008200976997613907, + -0.00010737405682448298, + 0.019589122384786606, + -0.03285429626703262, + -0.0016423999331891537, + 0.002122679725289345, + -0.0068404460325837135, + -0.019689902663230896, + -0.01725858449935913, + -0.013101406395435333, + -0.017661703750491142, + -0.02015601098537445, + 0.0028454617131501436, + 0.008087598718702793, + 0.012988029047846794, + 0.00022104686649981886, + -0.002061266917735338, + -0.0031635488849133253, + -0.018984442576766014, + 0.008257665671408176, + 0.0034202230162918568, + 0.014575314708054066, + 0.014461937360465527, + -0.0025698912795633078, + 0.01727118156850338, + 0.0029320695903152227, + -0.002905299887061119, + 0.0051082889549434185, + 0.002661223290488124, + 0.016590915620326996, + 0.02927660569548607, + -0.04000968113541603, + 0.003801297629252076, + 0.010134694166481495, + 0.007306553889065981, + -0.006431026849895716, + 0.00812539178878069, + -0.025976058095693588, + -0.026731908321380615, + 0.0013282495783641934, + 0.0049067288637161255, + 0.003018677467480302, + 0.0036910693161189556, + 0.0027635779697448015, + 0.005476765800267458, + -0.005845243111252785, + -0.0014195814728736877, + 0.021239396184682846, + -0.006037354934960604, + 0.0028092439752072096, + -0.027361784130334854, + 0.007823051884770393, + -0.010159889236092567, + 0.004015455022454262, + -0.019009636715054512, + 0.004840591922402382, + 0.015860261395573616, + -0.008371043018996716, + -0.007344346027821302, + -0.013769074343144894, + 0.001977808540686965, + 0.018631711602211, + 0.02441396750509739, + -0.0011369249550625682, + -0.004251658450812101, + -0.024968257173895836, + -0.00436818553134799, + 0.021025238558650017, + -0.01462570484727621, + 0.023544739931821823, + 0.008112793788313866, + 0.018127812072634697, + -0.031796105206012726, + -0.01902223378419876, + 0.0055114091373980045, + -0.010273266583681107, + -0.0023903767578303814, + -0.0053318943828344345, + -0.0006412917864508927, + -0.0032076400239020586, + -0.011740876361727715, + 0.04187411069869995, + -0.01966470666229725, + 0.02213381789624691, + 0.004799650050699711, + -0.007218371145427227, + -0.004875234793871641, + -0.0018675803439691663, + 0.001191251678392291, + 0.009372544474899769, + -0.0068215494975447655, + -0.018946649506688118, + 0.021340176463127136, + 0.017762484028935432, + 0.00024328933795914054, + -0.03381170704960823, + -0.0020455201156437397, + 0.010455930605530739, + 0.012175490148365498, + -0.0003048990329261869, + 0.009485922753810883, + 0.009309557266533375, + 0.006431026849895716, + -0.0021116570569574833, + 0.001699088723398745, + -0.01780027709901333, + 0.00898832082748413, + -0.007583698723465204, + -0.010525216348469257, + 0.038195639848709106, + 0.031922079622745514, + 0.012377049773931503, + -0.0021085075568407774, + 0.0017542027635499835, + -0.030889086425304413, + 0.002899001119658351, + 0.009763067588210106, + 0.005939724389463663, + -0.0020707151852548122, + 0.0019022234482690692, + 0.0017085367580875754, + 0.000573580211494118, + -0.013580111786723137, + 0.009070204570889473, + 0.016918450593948364, + -0.023406166583299637, + 0.007602595258504152, + -0.011873150244355202, + 0.0009841801365837455, + 0.01282426156103611, + -0.005209068767726421, + 0.004251658450812101, + -0.0032312604598701, + 0.01141963992267847, + 0.01427297480404377, + 0.01572168804705143, + 0.008371043018996716, + -0.0026895676273852587, + 0.005048450548201799, + 0.003801297629252076, + 0.003864285070449114, + -0.007149084936827421, + 0.0013660420663654804, + -0.0010920463828369975, + -0.004028052557259798, + -0.015368958003818989, + 0.008566304109990597, + -0.007344346027821302, + 0.004273704253137112, + -0.009284362196922302, + -0.011520419269800186, + -0.010468527674674988, + -0.01582246832549572, + 0.016994036734104156, + 0.00718687754124403, + -0.010915739461779594, + 0.02990647964179516, + 0.014890252612531185, + 0.04739182069897652, + 0.04008526727557182, + -0.0022407814394682646, + -0.007930130697786808, + 0.0010282715084031224, + -0.0023273893166333437, + -0.006037354934960604, + 0.012269970960915089, + -0.004963417537510395, + 0.015583115629851818, + -0.025610730051994324, + 0.011797565035521984, + -0.01903483271598816, + -0.003147801849991083, + 0.005656280554831028, + 0.006292454432696104, + 0.008383640088140965, + -0.003536749863997102, + -0.0016581467352807522, + 0.0012967558577656746, + -0.0023840779904276133, + 0.014902849681675434, + -0.020105620846152306, + 0.008245067670941353, + -0.001050317077897489, + -0.0023210905492305756, + -0.007117591332644224, + -0.007016811054199934, + -0.0017510533798485994, + 0.013252576813101768, + -0.002051818883046508, + 0.0009629218839108944, + -0.013756477274000645, + 0.008547408506274223, + -0.027437368407845497, + 0.013051016256213188, + 0.012137697078287601, + -0.0009763067355379462, + 0.005498811602592468, + 0.01415959745645523, + -0.0017510533798485994, + -0.03267792984843254, + -0.01359270978718996, + 0.004166625440120697, + 0.004361886531114578, + -0.011816460639238358, + -0.02152913808822632, + 0.001148735173046589, + -0.007281358819454908, + -0.001973084406927228, + -0.005555500276386738, + -0.00475870817899704, + -0.0051303342916071415, + 0.01725858449935913, + 0.004257956985384226, + 0.03703666850924492, + -0.000765298493206501, + 0.015217787586152554, + -0.0001761682506185025, + -0.007451424840837717, + 0.008641889318823814, + -0.006487715989351273, + -0.032224420458078384, + 0.028722314164042473, + -0.015394153073430061, + 0.013529721647500992, + 0.020823678001761436, + 0.020596923306584358, + -0.004018604755401611, + -0.01859392039477825, + -0.03973253443837166, + 0.010229174979031086, + -0.022461354732513428, + 0.012704585678875446, + -0.02831919491291046, + -0.002777750138193369, + -0.016691695898771286, + -0.019929254427552223, + 0.01002761535346508, + -0.025207610800862312, + 0.005335044115781784, + -0.030637135729193687, + 0.014713887125253677, + 0.016716891899704933, + 0.006531807128340006, + -0.010147291235625744, + 0.00992683507502079, + 0.004831143654882908, + 0.0005672814440913498, + 0.008415134623646736, + 0.00898832082748413, + -0.0051303342916071415, + 0.005174425896257162, + 0.013202186673879623, + 0.010518917813897133, + 0.02398565225303173, + -0.018845869228243828, + 0.011558212339878082, + -0.01831677369773388, + -0.00644047511741519, + 0.002505329204723239, + -0.023607727140188217, + 0.008874943479895592, + 0.003146227216348052, + -0.006342844571918249, + 0.014764277264475822, + 0.004040650092065334, + -0.015293372794985771, + -0.022385768592357635, + 0.0003375738160684705, + -0.007067201193422079, + -0.008465524762868881, + -0.01380686741322279, + 0.012736079283058643, + 0.020004840567708015, + 0.008402536623179913, + 0.007356943562626839, + -0.011369249783456326, + -0.0004338266153354198, + 0.035222627222537994, + 0.008314354345202446, + 0.01359270978718996, + -0.01880807615816593, + -0.025283195078372955, + 0.0067900558933615685, + 0.009618195705115795, + -0.01059450302273035, + -0.013013224117457867, + 0.0034832104574888945, + -0.015066618099808693, + -0.022284988313913345, + -0.005964919459074736, + 0.0046957205049693584, + -0.013895049691200256, + -0.017825471237301826, + 0.005174425896257162, + 0.012477830052375793, + -0.0022628270089626312, + -0.014197389595210552, + -0.019412757828831673, + 0.015142202377319336, + -0.009643390774726868, + 0.010670088231563568, + -0.0015054020332172513, + -0.015532725490629673, + -0.01737196184694767, + -0.013114004395902157, + -0.017712093889713287, + -0.004752409178763628, + -0.007879740558564663, + 0.0037729530595242977, + 0.012011722661554813, + -0.027941269800066948, + 0.02202044054865837, + -0.013680892065167427, + -0.007608893793076277, + 0.010197681374847889, + 0.004916176665574312, + 0.021453553810715675, + 0.011092104017734528, + -0.029704920947551727, + 0.009763067588210106, + 0.008238769136369228, + -0.007023110054433346, + 0.005083093885332346, + -0.005552351009100676, + -0.007356943562626839, + -0.006664081010967493, + -0.008704876527190208, + -0.003716264385730028, + 0.00048382297973148525, + -0.008301756344735622, + -2.1639662008965388e-5, + -0.03275351598858833, + 0.00900091789662838, + 0.020030034705996513, + -0.006802653428167105, + 0.00801201444119215, + -0.007048304658383131, + 0.008780461736023426, + 0.026026448234915733, + 0.011186585761606693, + -0.025383975356817245, + 0.007778960280120373, + 0.001732157077640295, + -0.01582246832549572, + 0.0023604577872902155, + -0.0045445505529642105, + 0.001032208208926022, + -0.030032455921173096, + 0.013995829969644547, + -0.00910169817507267, + -0.006708172149956226, + 0.03451716899871826, + -0.008994619362056255, + 0.01820339635014534, + 0.044192053377628326, + 0.006238915026187897, + 0.028797900304198265, + -0.01043703407049179, + -0.01623818650841713, + 0.009895341470837593, + 0.004257956985384226, + -0.0022014142014086246, + -0.0030911131761968136, + 0.01395803689956665, + -0.014928044751286507, + 0.012704585678875446, + -0.03285429626703262, + 0.02607683837413788, + -0.0032170882914215326, + -0.013995829969644547, + 0.007571101188659668, + 0.013000627048313618, + 0.004021754022687674, + 0.010159889236092567, + -0.017321571707725525, + 0.009901640005409718, + 0.0053318943828344345, + -0.011344054713845253, + -0.017938848584890366, + 0.024842282757163048, + -0.01143223699182272, + -0.012295166030526161, + 0.006714471150189638, + -0.02647995762526989, + -0.021176408976316452, + 0.0003450535878073424, + -0.007986819371581078, + 0.03008284606039524, + -0.0026092585176229477, + -0.013517124578356743, + 0.019790682941675186, + 0.007275059819221497, + -0.0018912006635218859, + -0.003750907490029931, + 0.006512910593301058, + -0.0044059776701033115, + -0.002376204589381814, + 0.005256309639662504, + 0.004790201783180237, + 0.01778767816722393, + 0.01675468310713768, + -0.007823051884770393, + -0.004689421970397234, + 0.01859392039477825, + -0.023443959653377533, + 0.013176991604268551, + -0.0007467959076166153, + 0.008585200645029545, + -0.02534618228673935, + 0.03030960075557232, + -0.03358495235443115, + 0.022171610966324806, + 0.015545322559773922, + -0.012490428052842617, + 0.0090450095012784, + -0.015318567864596844, + 0.009126893244683743, + -0.013340759091079235, + -0.0057035209611058235, + 0.0005153167294338346, + -0.0002348253910895437, + -0.024073835462331772, + -0.013051016256213188, + -0.02276369370520115, + -0.01902223378419876, + 0.010569307953119278, + 0.010796062648296356, + 0.0011589706409722567, + 0.002541546942666173, + 0.004582343157380819, + 0.003439119318500161, + -0.005612188950181007, + 0.006494014523923397, + 0.010304760187864304, + -0.000788131495937705, + -0.027538148686289787, + -0.02904984913766384, + 0.010273266583681107, + 0.010758270509541035, + -0.01257231179624796, + -0.004229612648487091, + 0.002042370615527034, + 0.02470370940864086, + -0.00859149917960167, + -0.004024903289973736, + 0.015230385586619377, + -0.01831677369773388, + -0.012150295078754425, + 0.0029934823978692293, + -0.0517001673579216, + -0.00023128234897740185, + 0.0023683311883360147, + -0.01360530685633421, + -0.005316147580742836, + 0.0023903767578303814, + -0.0013833636185154319, + 0.012011722661554813, + -0.007942727766931057, + 0.005495662335306406, + -0.010304760187864304, + -0.00011347597319399938, + 0.031896885484457016, + 0.006068848539143801, + -0.002991907764226198, + 0.0007097907364368439, + -0.016515331342816353, + -0.007760063745081425, + 0.02111341990530491, + -0.016565721482038498, + 0.0036784717813134193, + -0.004176073241978884, + -0.009422934614121914, + 0.0034422685857862234, + -0.008956827223300934, + -0.003102135844528675, + -0.025976058095693588, + 0.019916657358407974, + -0.02162991836667061, + 0.009889042936265469, + -0.021592125296592712, + 0.004144579637795687, + -0.002579339547082782, + -0.005583844613283873, + 0.0053098490461707115, + 0.0024769846349954605, + 0.010884245857596397, + -0.006708172149956226, + -0.004468965344130993, + 0.002299044979736209, + 0.012332959100604057, + 0.00718687754124403, + 0.011715681292116642, + 0.0026722459588199854, + -0.008459225296974182, + -0.002128978492692113, + 0.023947859182953835, + -0.016805073246359825, + -0.002829714911058545, + -0.0005066559533588588, + 0.00741993123665452, + 0.0013006925582885742, + 0.0066073923371732235, + -0.015293372794985771, + 0.006172778084874153, + 0.01975288987159729, + 0.0012983304914087057, + -0.012269970960915089, + 0.012559713795781136, + 0.0180900190025568, + -0.0004354013071861118, + -0.004890982061624527, + -0.0010857476154342294, + 0.011854253709316254, + -0.010008718818426132, + 0.0075333090499043465, + -0.009107996709644794, + -0.006531807128340006, + 0.021050432696938515, + -0.003076941007748246, + -0.010090602561831474, + 0.010978726670145988, + -0.011400743387639523, + -0.01635156385600567, + -0.011671589687466621, + -0.005555500276386738, + -0.0002411241439403966, + 0.00708609726279974, + 0.005158679094165564, + 0.0253335852175951, + 0.0009936282876878977, + 0.0034013267140835524, + -0.012899846769869328, + 0.011054311878979206, + -0.005747612100094557, + 0.007123889867216349, + -0.008402536623179913, + -0.0032470072619616985, + 0.001455012010410428, + -0.025472158566117287, + 0.016099613159894943, + -0.03008284606039524, + 0.003357235575094819, + 0.00752071151509881, + 0.009215075522661209, + 0.0024817087687551975, + -0.0011455857893452048, + -0.0073632425628602505, + 0.02884829044342041, + 0.013781672343611717, + -0.004850040189921856, + 0.012584908865392208, + -0.027261003851890564, + 0.037716932594776154, + 0.0061066411435604095, + -0.0068089524284005165, + 0.021768491715192795, + 0.016074419021606445, + -0.007464022375643253, + 0.006068848539143801, + 0.004620135296136141, + 0.0028501858469098806, + -0.012647896073758602, + 0.0129250418394804, + -0.009989822283387184, + 0.022297587245702744, + 0.025358781218528748, + -0.013970634900033474, + 0.003842239500954747, + 0.020143412053585052, + 0.010292163118720055, + 0.0003794998920056969, + 0.00821987260133028, + 0.02273849956691265, + 0.005111438222229481, + 0.006333396304398775, + 0.00403435155749321, + 0.010638594627380371, + 0.025711510330438614, + 0.005898782517760992, + 0.003590289270505309, + 0.01777508109807968, + 0.021844075992703438, + 0.006150732282549143, + -0.006487715989351273, + -0.0005353940068744123, + 0.011463730596005917, + -0.015444543212652206, + 0.001273135538212955, + 0.00786714255809784, + 0.03318183124065399, + 0.027790099382400513, + 0.013227381743490696, + 0.0090450095012784, + -0.021982649341225624, + 0.00524686137214303, + -0.010846452787518501, + 0.020118217915296555, + 0.012761274352669716, + -0.0047461106441915035, + -0.009177283383905888, + 0.011249572969973087, + -0.002059692284092307, + -0.016301173716783524, + -0.007986819371581078, + -0.001109367934986949, + 0.025094233453273773, + -0.002088036620989442, + -0.00237935408949852, + -0.004742961376905441, + 0.0028958518523722887, + -0.014751680195331573, + -0.01231406256556511, + 0.03640679270029068, + 0.02139056660234928, + -0.009662287309765816, + 0.00857890211045742, + 0.017460143193602562, + 0.02781529352068901, + 0.007879740558564663, + 0.020231595262885094, + -0.0042674052529037, + 0.012465232983231544, + 0.006934927310794592, + 0.0201686080545187, + -0.004286301787942648, + -0.0019636363722383976, + -0.005454720463603735, + 0.0006834147498011589, + 0.019072623923420906, + -0.009788262657821178, + -0.0005775169120170176, + -0.007816752418875694, + 0.00581689877435565, + 0.021743295714259148, + 0.004147728905081749, + 0.03008284606039524, + -0.011325158178806305, + 0.015557920560240746, + -0.005193321965634823, + -0.006506612058728933, + 0.024968257173895836, + 0.007432528771460056, + 0.003624932374805212, + 0.019904060289263725, + -0.003552496898919344, + -0.007293956354260445, + 0.006053101737052202, + -0.006229466758668423, + -0.013227381743490696, + 0.017510533332824707, + -0.0028423124458640814, + -0.012068411335349083, + -0.01841755397617817, + -0.02710983343422413, + 0.019286781549453735, + 6.943391053937376e-5, + 0.012490428052842617, + -0.011621199548244476, + 0.0037729530595242977, + 0.006368039641529322, + 0.02183147892355919, + 0.0004617773520294577, + -0.021944856271147728, + -0.0007542757084593177, + 0.004626434296369553, + -0.0008204125915654004, + 0.012458933517336845, + 0.004673674702644348, + -0.006487715989351273, + 0.004456367809325457, + -0.014084012247622013, + 0.01996704749763012, + -0.017094817012548447, + -0.0026706713251769543, + -0.0004637457022909075, + 0.010500021278858185, + 0.031997665762901306, + 0.00878676027059555, + -0.02451474778354168, + -0.02988128550350666, + -0.010342552326619625, + -0.01329036895185709, + -0.00675226328894496, + 0.009164686314761639, + -0.0022628270089626312, + 2.1516640117624775e-5, + 0.007482918910682201, + -0.011054311878979206, + 0.005284653976559639, + -0.007741167675703764, + 0.002294320845976472, + -0.002122679725289345, + -0.011369249783456326, + 0.02047094702720642, + -0.011312561109662056, + 0.03194727748632431, + 0.0003873733221553266, + 0.007886039093136787, + -0.008408835157752037, + 0.03240078687667847, + 0.03398807346820831, + 0.00900091789662838, + 0.005209068767726421, + -0.01153301727026701, + -0.01996704749763012, + -0.00638378644362092, + -0.009120594710111618, + -0.00032025223481468856, + 0.0006180651835165918, + 0.022524341940879822, + 0.01235185470432043, + 0.014398950152099133, + -0.017913654446601868, + 0.00015441786672454327, + -0.021781088784337044, + -0.012112502008676529, + 0.006909732241183519, + -0.018228592351078987, + 0.016931049525737762, + 0.00556179927662015, + -0.015557920560240746, + -0.011740876361727715, + 0.012339257635176182, + -0.005678325891494751, + 0.016490135341882706, + 0.016112210229039192, + -0.002061266917735338, + 0.0019652110058814287, + -0.004138280637562275, + -0.00924657005816698, + -0.01642714813351631, + -0.0055114091373980045, + 0.025572938844561577, + -0.019677305594086647, + 0.012162892147898674, + 0.005111438222229481, + 0.001309353276155889, + -0.003794998861849308, + -0.015444543212652206, + 0.025698913261294365, + 0.0060436539351940155, + -0.00806240364909172, + -0.02615242265164852, + 0.0010188233572989702, + 0.021680308505892754, + 0.0028108186088502407, + -0.0009605598752386868, + 0.005079944618046284, + -0.006494014523923397, + -0.021075628697872162, + -0.005807450506836176, + -0.008893839083611965, + 0.01996704749763012, + -0.036356404423713684, + 0.007816752418875694, + 0.007470321375876665, + 0.02150394394993782, + -0.004903579596430063, + -0.03917824476957321, + 0.013365954160690308, + 0.0018408106407150626, + 0.013529721647500992, + 9.546547516947612e-5, + 0.0020691403187811375, + 0.005423226393759251, + -1.0647599083313253e-5, + 0.004308347124606371, + 0.0036532769445329905, + -0.0253335852175951, + -0.01674208603799343, + -0.006632586941123009, + -0.02761373482644558, + -0.01483986247330904, + -0.025182414799928665, + 0.002143150893971324, + -0.006031056400388479, + 0.0016644455026835203, + 0.003911525942385197, + -0.014398950152099133, + -0.014537522569298744, + -0.015230385586619377, + 0.004796500783413649, + 0.012307764030992985, + -0.0009660712676122785, + -0.004818546120077372, + -0.015343762934207916, + -0.018127812072634697, + -0.0013148647267371416, + 0.01276757288724184, + 0.003669023746624589, + -0.006494014523923397, + 0.01427297480404377, + -0.006431026849895716, + -0.009347349405288696, + 0.02243615873157978, + 0.01024177297949791, + -0.0423780120909214, + -0.011041714809834957, + 0.015998832881450653, + 0.00136997876688838, + -0.007079798728227615, + 0.0062452140264213085, + 0.009240270592272282, + -0.003914675209671259, + 0.006594794802367687, + 0.011520419269800186, + -0.04008526727557182, + 0.004150878172367811, + -0.004119384568184614, + -0.01143223699182272, + -0.00044366842485032976, + 0.034491971135139465, + 0.003593438770622015, + -0.006997914984822273, + -0.004157177172601223, + -0.011759771965444088, + -0.02191966027021408, + -0.020206401124596596, + -0.005826346576213837, + -0.019790682941675186, + 0.010197681374847889, + -0.033257417380809784, + -0.015646103769540787, + 0.013554916717112064, + 0.00935994740575552, + 0.03041038103401661, + -0.02698385901749134, + -0.013680892065167427, + 0.004966566804796457, + 0.0043240939266979694, + 0.03867434337735176, + -0.0050988406874239445, + -0.010229174979031086, + 0.02058432623744011, + -0.006062550004571676, + 0.026026448234915733, + -0.008018312975764275, + -0.00444377027451992, + -0.014852460473775864, + -0.013693489134311676, + -0.004846890456974506, + -0.0116337975487113, + -0.009901640005409718, + 0.013302966952323914, + -0.023040838539600372, + -0.0014589487109333277, + 0.021340176463127136, + -0.005568097811192274, + 0.0012440037680789828, + -0.011054311878979206, + 0.02183147892355919, + -0.00910169817507267, + -0.013126601465046406, + 0.008906437084078789, + -0.02120160311460495, + 0.015570517629384995, + -0.03020882047712803, + -0.013114004395902157, + -0.01086534932255745, + 0.022776290774345398, + 0.009832353331148624, + 0.009775664657354355, + 2.5219617327820743e-6, + -0.011564510874450207, + -0.0008503316785208881, + -0.016049223020672798, + 0.02130238339304924, + -0.0013361229794099927, + 0.006720769684761763, + 0.011973929591476917, + 0.0038926294073462486, + 0.007772661279886961, + -0.004122533835470676, + -0.024968257173895836, + 0.02937738411128521, + 0.022171610966324806, + -0.006402682512998581, + -0.009781964123249054, + -0.014827265404164791, + -0.0036879200488328934, + -0.0059145293198525906, + 0.011696784757077694, + -0.027764903381466866, + 0.011501523666083813, + -0.01582246832549572, + -0.025875277817249298, + 0.0016298023983836174, + 0.003908376209437847, + 0.007930130697786808, + 0.014335962012410164, + 0.0305111613124609, + -0.014600509777665138, + 0.012616402469575405, + 0.004018604755401611, + 0.015646103769540787, + 0.001127476803958416, + 0.0016801924211904407, + -0.010714178904891014, + -0.007035707123577595, + -0.004742961376905441, + -0.0006216082256287336, + -0.027135029435157776, + 0.01674208603799343, + 0.011602303013205528, + -0.024036042392253876, + -0.04043799638748169, + -0.0007786833448335528, + 0.004780753515660763, + -0.0014384777750819921, + -0.008415134623646736, + -0.018467944115400314, + 0.0007558504003100097, + 0.003461164887994528, + -0.01996704749763012, + 0.008131690323352814, + 0.005845243111252785, + 0.0060656992718577385, + -0.0016298023983836174, + 0.012748676352202892, + 0.024439161643385887, + 0.005196471232920885, + 0.0005448421579785645, + -0.024842282757163048, + 0.00692862831056118, + 0.01593584567308426, + -0.0069601223804056644, + -0.008711175993084908, + 0.03237559273838997, + -0.007621491327881813, + 0.013781672343611717, + -0.009731573984026909, + 0.0008353721350431442, + 0.02399824932217598, + -0.002225034637376666, + -0.0002824597177095711, + -0.012597506865859032, + -0.007860844023525715, + -0.013189589604735374, + -0.011803863570094109, + 0.001984107308089733, + -0.023015644401311874, + 0.00924657005816698, + 0.019828476011753082, + -0.01395803689956665, + -0.0013219508109614253, + 0.010348851792514324, + -0.023721104487776756, + -0.01705702394247055, + -0.025157220661640167, + -0.0010101625230163336, + -0.015646103769540787, + -0.02111341990530491, + -0.006771159823983908, + 0.022612523287534714, + 0.00675226328894496, + -0.003587140003219247, + -0.004994911141693592, + -0.0071301888674497604, + 0.005728716030716896, + 0.009448129683732986, + 0.014398950152099133, + 0.014676094986498356, + 5.457279257825576e-5, + 0.009410337544977665, + 0.015368958003818989, + -0.016565721482038498, + 0.002790347672998905, + 0.009586702100932598, + 0.00636174064129591, + -0.01256601233035326, + 0.0212142001837492, + -0.014398950152099133, + 0.008641889318823814, + 0.0003576510935090482, + 0.008156885392963886, + 0.008459225296974182, + -0.003791849361732602, + -0.004421724937856197, + 0.017006633803248405, + -0.029830895364284515, + 0.0015447692712768912, + -0.006979018449783325, + 0.010222876444458961, + -0.011854253709316254, + 0.018228592351078987, + -0.009889042936265469, + -0.001212510047480464, + -0.04464556276798248, + -0.007325449958443642, + -0.040891505777835846, + 0.014474534429609776, + -0.030964670702815056, + -0.029503360390663147, + 0.013832062482833862, + 0.017245985567569733, + 0.0024124225601553917, + 0.0030485964380204678, + -0.016994036734104156, + -0.004872085526585579, + 0.01570909097790718, + 0.0031777210533618927, + -0.00507049635052681, + 0.00638378644362092, + 0.008963125757873058, + 0.007275059819221497, + 0.01286835316568613, + 0.0129250418394804, + -0.011879448778927326, + -0.0320480577647686, + 0.008245067670941353, + -0.0007369540981017053, + 0.012899846769869328, + 0.0019573376048356295, + 0.012402244843542576, + -0.0014794196467846632, + -0.010506320744752884, + -0.0027698767371475697, + -0.0019337172852829099, + -0.006947524845600128, + -0.00010018954344559461, + 0.014638302847743034, + -0.0047461106441915035, + -0.0017148355254903436, + 0.007589997723698616, + -0.0009117445442825556, + -0.0024439161643385887, + -0.01633896492421627, + -0.018858466297388077, + -0.003300546668469906, + -0.00653810566291213, + -0.00013089596177451313, + 0.017548326402902603, + -0.009964627213776112, + -0.015545322559773922, + 0.007287657354027033, + 0.01086534932255745, + 0.024653319269418716, + -0.01417219452559948, + -0.002702165162190795, + -0.004972865805029869, + -4.463257209863514e-5, + -0.006153882015496492, + -0.005045301280915737, + 0.016666501760482788, + 0.00021435444068629295, + 0.02831919491291046, + -0.0011558212572708726, + -0.020218998193740845, + -0.012024319730699062, + -0.010720478370785713, + -0.005045301280915737, + 0.013794269412755966, + 0.00037615367909893394, + -0.011199182830750942, + 0.0032973974011838436, + 0.029730115085840225, + 0.023922665044665337, + -0.031922079622745514, + 0.009057607501745224, + -0.012074709869921207, + -0.010071706026792526, + -0.013529721647500992, + 0.016099613159894943, + -0.005401181057095528, + -0.0012440037680789828, + 0.01307621132582426, + 0.006254661828279495, + -0.00378870009444654, + 0.021856673061847687, + -0.02658073790371418, + -0.015872858464717865, + -0.001047167694196105, + -0.013794269412755966, + -0.011054311878979206, + -0.00884974841028452, + -0.014726485125720501, + -0.00465792790055275, + -0.0038548370357602835, + 0.01215659361332655, + -0.024225004017353058, + -0.006377487443387508, + 0.014550119638442993, + -0.002702165162190795, + 0.00314307794906199, + 0.0037351606879383326, + -0.00041217467514798045, + -0.009731573984026909, + 0.016175197437405586, + -0.01830417662858963, + -0.024476954713463783, + -0.0021888166666030884, + 0.004305197857320309, + -0.005105139687657356, + -0.0058956327848136425, + 0.00910169817507267, + -0.022625122219324112, + 0.00951111689209938, + 0.02988128550350666, + 0.003439119318500161, + -0.005728716030716896, + 0.019526135176420212, + -0.014247779734432697, + 0.013051016256213188, + 0.0054610189981758595, + -0.001433753757737577, + -0.01184165570884943, + 0.03900187835097313, + -0.004349288996309042, + -0.016792476177215576, + -0.02615242265164852, + -0.010663788765668869, + -0.010033913888037205, + -0.0028108186088502407, + 0.00867968238890171, + -0.018581321462988853, + -0.002699015662074089, + -0.001092833699658513, + 0.010090602561831474, + 0.010191382840275764, + 0.023129021748900414, + 0.001253451919183135, + 0.008597797714173794, + -0.01615000329911709, + 0.019513538107275963, + 0.0024643871001899242, + -0.017031827941536903, + -0.0015132754342630506, + 0.014764277264475822, + -0.0035336005967110395, + 0.008144288323819637, + 0.01675468310713768, + -0.007079798728227615, + 0.016414551064372063, + -0.005495662335306406, + -0.0175861194729805, + 0.008881242014467716, + 0.025824887678027153, + -0.009523714892566204, + 0.016414551064372063, + 0.00987014640122652, + 0.029654530808329582, + 0.03161974251270294, + -0.006147583015263081, + 0.016729488968849182, + -0.021176408976316452, + -0.004283152054995298, + 0.012282568961381912, + -0.006018458865582943, + 0.019072623923420906, + 0.0027163373306393623, + 0.0072120726108551025, + 0.0020754390861839056, + 0.01747274212539196, + -0.0020801632199436426, + -0.0038548370357602835, + 0.0067900558933615685, + -0.01903483271598816, + -0.009718975983560085, + 0.007155383471399546, + -0.015268177725374699, + -0.022184208035469055, + -0.005564948543906212, + -0.007060902193188667, + -0.023595130071043968, + -0.005429525393992662, + -0.002950965892523527, + -0.0058326455764472485, + 0.0009361521806567907, + 0.0021116570569574833, + -0.0008526936871930957, + 0.00888754054903984, + 0.003385579911991954, + 0.005183873698115349, + -0.0068215494975447655, + 0.02915062941610813, + -0.015847662463784218, + 0.0066703795455396175, + 0.004377633333206177, + 0.0007247502799145877, + 0.00558069534599781, + 0.000904658401850611, + -0.01530596986413002, + 0.003873733337968588, + -0.007999416440725327, + -0.008156885392963886, + 0.007489217445254326, + 0.013088809326291084, + -0.00685304356738925, + -0.008446628227829933, + 0.01147632859647274, + -0.023532142862677574, + -0.007224670145660639, + -0.004396529868245125, + -0.03907746449112892, + -0.006966420914977789, + -0.0016786177875474095, + 0.010563009418547153, + -0.0186065174639225, + -0.003958766348659992, + 0.010688983835279942, + 0.005999562330543995, + -0.02108822576701641, + 0.0015487059717997909, + -0.00442487420514226, + -0.018871065229177475, + 0.0022439309395849705, + 0.0024470656644552946, + -0.020533936098217964, + -0.006320798769593239, + 0.013252576813101768, + 0.008730071596801281, + -0.0025163518730551004, + -0.005602741148322821, + 0.010985025204718113, + -0.02625320293009281, + 0.007136487402021885, + -0.00915838684886694, + -0.01070788037031889, + -0.010619698092341423, + 0.016200393438339233, + 0.003794998861849308, + -0.010065407492220402, + -0.005990114528685808, + 0.0038516875356435776, + 0.01591065153479576, + -0.016616111621260643, + -0.020937055349349976, + 0.00971267744898796, + 0.010361448861658573, + 0.010134694166481495, + 0.01580987125635147, + -0.02545955963432789, + -0.009271765127778053, + -0.020760690793395042, + -0.002788773039355874, + 0.013718684203922749, + 0.020118217915296555, + 0.0018234890885651112, + 0.003094262443482876, + 0.014965837821364403, + 0.019677305594086647, + -0.006941225845366716, + -0.008654487319290638, + -0.011463730596005917, + -0.0004409127286635339, + -0.005187023431062698, + -0.0016423999331891537, + -0.028671924024820328, + -0.018908856436610222, + -0.008648187853395939, + -0.02015601098537445, + -0.020911861211061478, + -0.046484798192977905, + 0.020559130236506462, + 0.008610395714640617, + -0.0006397170946002007, + 0.01509181223809719, + 0.009196179918944836, + 0.010733075439929962, + -0.007004213519394398, + 0.001271560788154602, + -0.004790201783180237, + 0.007344346027821302, + 0.008742669597268105, + -0.004453218542039394, + -0.00491302739828825, + -0.014915447682142258, + 0.0034422685857862234, + 0.006878238637000322, + 0.036154843866825104, + 0.014361157082021236, + 0.01861911453306675, + -0.010115797631442547, + -0.004472114611417055, + 0.01405881717801094, + -0.005782255437225103, + -0.019060026854276657, + -0.004122533835470676, + -0.008106495253741741, + -0.006739665754139423, + 0.024489551782608032, + -0.00033186556538566947, + -0.01923639141023159, + 0.02244875580072403, + 0.022385768592357635, + -0.01708221808075905, + 0.006390084978193045, + -0.003713115118443966, + 0.013353357091546059, + 0.02419980987906456, + 0.01839235983788967, + -0.005205919500440359, + 0.024262797087430954, + -0.012030618265271187, + 0.008043508045375347, + -0.0018723043613135815, + 0.005410628858953714, + 0.015205190517008305, + 0.009107996709644794, + 0.02048354595899582, + 0.009385142475366592, + -0.0023494348861277103, + -0.001492804498411715, + -0.017535729333758354, + -0.014600509777665138, + -0.0007530946750193834, + -0.01787586137652397, + -0.005495662335306406, + -0.0049476707354187965, + 0.03560055419802666, + 0.0222471971064806, + 0.003423372283577919, + 0.00460123922675848, + -0.0004168987215962261, + 0.001817190321162343, + 0.00821987260133028, + -0.005879885982722044, + -0.004629583563655615, + 0.0018423852743580937, + -0.0030108040664345026, + 0.019085222855210304, + -0.007287657354027033, + -0.007684479001909494, + -0.003467463655397296, + 0.018442749977111816, + -0.003174571553245187, + -0.013164394535124302, + -0.0047776042483747005, + -0.028520755469799042, + -0.025182414799928665, + -0.03020882047712803, + 0.02627839893102646, + 0.004538251552730799, + 0.019790682941675186, + -0.008616694249212742, + 0.02388487197458744, + 0.027664124965667725, + -0.017535729333758354, + -0.025585535913705826, + 0.0007664795266464353, + 0.0051082889549434185, + -0.0016471239505335689, + -0.03247637301683426, + 0.008075001649558544, + 0.03847278282046318, + -0.014222584664821625, + 0.014310766942799091, + 0.02150394394993782, + -0.011111000552773476, + 0.009618195705115795, + 0.010814959183335304, + 0.010323656722903252, + 0.003870583837851882, + 0.012962833978235722, + -0.024880075827240944, + 0.01055041141808033, + -0.01591065153479576, + -0.005612188950181007, + -0.016817670315504074, + 0.011394444853067398, + 0.00017449514416512102, + 0.001412495388649404, + -0.002777750138193369, + 0.006878238637000322, + -0.019715096801519394, + 0.013277771882712841, + 0.0310150608420372, + 0.04426763579249382, + 0.030485965311527252, + -0.00460123922675848, + 0.01198652759194374, + 0.026656324043869972, + -0.0294781643897295, + -0.0005094116786494851, + -0.016779879108071327, + -0.016691695898771286, + -0.02937738411128521, + 0.0012148719979450107, + -0.01674208603799343, + 0.0018282131059095263, + 0.007816752418875694, + -0.020307179540395737, + 0.0025242252741008997, + -0.016994036734104156, + -0.012988029047846794, + -0.007558503653854132, + 0.005221666302531958, + 0.007772661279886961, + -0.014121804386377335, + -0.029956869781017303, + 0.0066703795455396175, + 0.015494933351874352, + -0.009567806497216225, + -0.010128394700586796, + -0.008314354345202446, + -0.033232223242521286, + 0.0008944229339249432, + 0.008629292249679565, + -0.0013935992028564215, + -0.00702940858900547, + -0.008723773062229156, + -0.004771305713802576, + 0.0165531225502491, + -0.006733367219567299, + 0.007438827771693468, + -0.015469738282263279, + 0.013441539369523525, + -1.1311921298329253e-5, + -0.013365954160690308, + -0.017346765846014023, + -0.016049223020672798, + -0.033156637102365494, + -0.007149084936827421, + 0.017598716542124748, + -0.023746300488710403, + 0.005810599774122238, + -0.01473908219486475, + 0.0020030036102980375, + -0.005272056441754103, + -0.002018750412389636, + -0.014802070334553719, + -0.011992826126515865, + 0.03217403218150139, + 0.03020882047712803, + -0.003391878679394722, + -0.019463147968053818, + -0.022184208035469055, + 0.0016738936537876725, + 0.0025446962099522352, + 0.014902849681675434, + 0.030889086425304413, + -0.012988029047846794, + 0.030133236199617386, + 0.0036784717813134193, + -0.007930130697786808, + 0.004280002787709236, + 0.0004413063870742917, + -0.01117398776113987, + -0.008175781928002834, + -0.005398031324148178, + -0.022511744871735573, + -0.021226799115538597, + -0.007054603658616543, + -0.024061236530542374, + 0.007923831231892109, + -0.010884245857596397, + 0.033156637102365494, + -0.001410920755006373, + 0.006727068219333887, + 9.128270903602242e-5, + 0.016490135341882706, + -0.018367163836956024, + 0.009019814431667328, + -0.00267382082529366, + 0.011520419269800186, + -0.014776875264942646, + -0.007256163749843836, + -0.016515331342816353, + -0.01090944092720747, + -0.0027116131968796253, + 0.0036154843401163816, + -0.010222876444458961, + -0.01715780422091484, + -0.005120886489748955, + -0.016905853524804115, + -0.006676678545773029, + 0.00041729240911081433, + 0.006179077085107565, + -0.0025446962099522352, + 0.008912735618650913, + 0.02698385901749134, + -0.013819464482367039, + -0.032929882407188416, + -0.013567514717578888, + 0.0005861777462996542, + -0.009655988775193691, + 0.018228592351078987, + -0.008169482462108135, + -0.0028360136784613132, + 0.0026076838839799166, + -0.006345993839204311, + -0.01583506539463997, + 0.00031552815926261246, + -0.0017526281299069524, + 0.0217306986451149, + 0.0009668586426414549, + 0.0019982794765383005, + -0.013063614256680012, + 0.022599926218390465, + 0.028193218633532524, + 0.006953823380172253, + 0.01612480729818344, + -0.005193321965634823, + 0.015948442742228508, + 0.02005523070693016, + -0.0029289203230291605, + 6.239702634047717e-5, + 0.034895092248916626, + 0.008925333619117737, + -0.010109499096870422, + -0.011640096083283424, + -0.01505402009934187, + -0.012446336448192596, + 0.015318567864596844, + -0.007703375071287155, + 0.008629292249679565, + -0.004018604755401611, + -0.026001254096627235, + 0.010134694166481495, + 0.021793685853481293, + -0.0038485382683575153, + -0.006333396304398775, + 0.014449340291321278, + -0.01851833425462246, + 0.023431362584233284, + 0.0032092146575450897, + 0.00036532769445329905, + 0.004135131370276213, + -0.012862053699791431, + -0.0013904498191550374, + 0.009322154335677624, + -0.0068089524284005165, + 0.006260960828512907, + -0.0014857184141874313, + 0.006953823380172253, + -0.016666501760482788, + -0.006191674619913101, + -0.015872858464717865, + 0.003549347398802638, + 0.019488342106342316, + 0.007778960280120373, + -0.009404038079082966, + 0.0033320405054837465, + 0.0022234597709029913, + 0.0009282787796109915, + -0.003640679409727454, + -0.011287366040050983, + -0.015494933351874352, + 0.00397766288369894, + -0.01086534932255745, + -0.011299963109195232, + -0.014474534429609776, + -0.0014148574555292726, + -0.015104410238564014, + -0.03371092677116394, + -0.015885455533862114, + -0.0015628781402483582, + 0.01635156385600567, + 0.026832688599824905, + 0.001592797227203846, + 0.005788553971797228, + 0.003558795666322112, + -0.007432528771460056, + 0.0037068163510411978, + 0.01725858449935913, + 0.011866850778460503, + -0.002341561485081911, + -0.017964044585824013, + 0.015898052603006363, + -0.007841947488486767, + -0.0014581613941118121, + 0.004009156487882137, + -0.006182226352393627, + 0.005983815528452396, + 0.005590143613517284, + -0.017308974638581276, + 0.001374702900648117, + -0.010720478370785713, + -0.0186065174639225, + -0.0013006925582885742, + -0.01257231179624796 + ], + "6eee3782-64f2-49e8-9fda-c9b53e8827f1": [ + -0.003855886636301875, + 0.0005599200376309454, + -0.0008674817509017885, + -0.028115686029195786, + -0.03910069540143013, + -0.030208775773644447, + 0.01668533869087696, + 0.04646361991763115, + -0.016269689425826073, + 0.02333572320640087, + -0.013760950416326523, + 0.04530574008822441, + -0.011860840953886509, + 0.013144899159669876, + -0.029481390491127968, + -0.011111188679933548, + -0.0366067998111248, + 0.020559780299663544, + 0.01695254072546959, + -0.021747348830103874, + 0.07446055114269257, + -0.02700234018266201, + -0.02389981783926487, + 0.009352102875709534, + -0.02670544758439064, + -0.04144614189863205, + 0.00545910419896245, + 0.00021269539138302207, + -0.011682705953717232, + -0.013887129724025726, + 0.015438391827046871, + -0.0038929982110857964, + 0.02980797179043293, + -0.03734903037548065, + -0.0033363255206495523, + -0.0027481080032885075, + 0.025458501651883125, + 0.027536746114492416, + -0.020723070949316025, + -0.003577550407499075, + -0.0075967274606227875, + 0.018511224538087845, + 0.03138149902224541, + 0.029986105859279633, + -0.00803835503757, + 0.04073360189795494, + 0.03010486252605915, + -0.0072441683150827885, + 0.012937075458467007, + -0.0024159597232937813, + 0.001561467070132494, + 0.005128811579197645, + -0.009715795516967773, + 0.00523643521592021, + 0.011994442902505398, + 0.01202413160353899, + 0.024077951908111572, + 0.09494610875844955, + 0.02672029286623001, + -0.04263371229171753, + 0.03601301833987236, + 0.01216515526175499, + 0.004193601664155722, + 0.005247568711638451, + -0.01741272397339344, + -0.023113053292036057, + -0.00036299703060649335, + 0.0014863163232803345, + -0.029392322525382042, + -0.020455868914723396, + 0.019253455102443695, + 0.022385668009519577, + -0.02569601498544216, + -0.028961827978491783, + -0.026779672130942345, + -0.016284534707665443, + 0.01526025589555502, + -0.020841827616095543, + 0.012009287253022194, + -0.00914427824318409, + -0.03372694551944733, + 0.008431736379861832, + 0.009248190559446812, + -0.001247874810360372, + 0.04296029359102249, + 0.02122778818011284, + -0.04085236042737961, + -0.0451572947204113, + -0.046107348054647446, + 0.006353491917252541, + 0.020544936880469322, + 0.005726307164877653, + -0.009122011251747608, + 0.004546160809695721, + 0.01873389445245266, + -0.008817696943879128, + 0.03345974534749985, + 0.016789250075817108, + -0.012068665586411953, + -0.007644972763955593, + 0.0025013163685798645, + 0.030208775773644447, + -0.059111226350069046, + -0.003870731219649315, + -0.00760043878108263, + -0.00042005599243566394, + 0.018051043152809143, + -0.021866105496883392, + -0.04806683957576752, + -0.0020763895008713007, + 0.0218364167958498, + -0.026646070182323456, + 0.009686105884611607, + -0.0038373309653252363, + -0.014814917929470539, + -0.04910596087574959, + 0.019951151683926582, + -0.015468080528080463, + 0.030193930491805077, + -0.056706398725509644, + 0.021628592163324356, + 0.0271359421312809, + 0.011586216278374195, + -0.002761096926406026, + 0.016789250075817108, + -0.007132833823561668, + -0.02124263346195221, + -0.033251918852329254, + 0.013092943467199802, + -0.006598427891731262, + 0.015868885442614555, + -0.004104533698409796, + -0.010740073397755623, + 0.026215575635433197, + -0.017605703324079514, + 0.03684431314468384, + 0.014592248946428299, + 0.05272804573178291, + -0.0070437658578157425, + 0.04604797065258026, + -0.0238849725574255, + -0.020901206880807877, + -0.003609095001593232, + -0.004449671134352684, + 0.004030311014503241, + 0.01549777016043663, + -0.03188621625304222, + 0.04174303635954857, + -0.017472103238105774, + 0.00715510081499815, + -0.035359855741262436, + -0.029125118628144264, + 0.02139107882976532, + -0.0039597987197339535, + 0.01083656307309866, + 0.0011458181543275714, + -0.01621031016111374, + 0.042722780257463455, + -0.01166043896228075, + 0.017160365357995033, + 0.002159890253096819, + -0.05727049335837364, + 0.020322266966104507, + 0.006579872220754623, + 0.014592248946428299, + 0.0005845064297318459, + 0.05029352754354477, + 0.026438245549798012, + -0.0407039113342762, + 0.03648804500699043, + 0.02906574122607708, + 0.000448585458798334, + -0.004523893818259239, + -0.0165368914604187, + -0.0017015631310641766, + 0.02021835558116436, + 0.01770961657166481, + 0.0066912067122757435, + 0.05825023725628853, + -0.016165778040885925, + -0.006832230370491743, + -0.03242062032222748, + -0.0025235831271857023, + -0.03530047461390495, + -0.023647459223866463, + 0.0070363436825573444, + -0.003102522809058428, + 0.02053009159862995, + -0.005559305194765329, + -6.923617183929309e-5, + -0.004071133676916361, + -0.010502559132874012, + 0.02109418623149395, + 0.012350712902843952, + -0.01401330903172493, + -0.03657711297273636, + 0.015304789878427982, + 0.006141955964267254, + 0.010465447790920734, + 0.027774259448051453, + -0.017902595922350883, + -0.07327298074960709, + -0.06525689363479614, + 0.029986105859279633, + -0.059378430247306824, + 0.014035576023161411, + -0.015349323861300945, + -0.039011627435684204, + -0.009263034909963608, + -0.010947898030281067, + 0.02198486402630806, + -0.011979597620666027, + 0.012922230176627636, + -0.000949127075728029, + -0.029570456594228745, + 0.007470548618584871, + -0.002582961693406105, + 0.0036462065763771534, + 0.00928530190140009, + 0.005737440660595894, + -0.00674687372520566, + -0.013723839074373245, + 0.02772972546517849, + -0.025280365720391273, + -0.07784511893987656, + 0.008698939345777035, + -0.0025811060331761837, + 0.011630749329924583, + -0.05139202997088432, + -0.030357221141457558, + 0.06769140809774399, + -0.00321200187318027, + 0.0047205849550664425, + -0.055400073528289795, + 0.004750274121761322, + 0.02790786139667034, + -4.018481558887288e-5, + 0.03731934353709221, + 0.00428266916424036, + -0.016358757391572, + 0.03114398568868637, + 0.017620548605918884, + 0.009025521576404572, + 0.01814010925590992, + 0.017472103238105774, + 0.0006958409794606268, + -0.03161901235580444, + 0.02596321702003479, + 0.01577981747686863, + -0.012788629159331322, + 0.017145521938800812, + 0.019802706316113472, + 0.03277689218521118, + 0.02477564848959446, + -0.008595027960836887, + -0.005945265293121338, + 0.03927883133292198, + -0.012001864612102509, + -0.010799451731145382, + -0.015527458861470222, + -0.012536270543932915, + -0.008557915687561035, + 0.018644826486706734, + -0.030936161056160927, + 0.05445002019405365, + -0.007136544678360224, + 0.036814626306295395, + -0.0032806582748889923, + 0.005789396818727255, + 0.02302398532629013, + -0.04171334579586983, + -0.012944497168064117, + -0.004468226805329323, + -0.02418186515569687, + -0.00862471666187048, + -0.011920219287276268, + -0.00564095051959157, + 0.03684431314468384, + 0.005986087955534458, + 0.006724607199430466, + 0.014918830245733261, + -0.004405137151479721, + 0.010450603440403938, + 0.06210983544588089, + 0.002319469815120101, + -0.003918976057320833, + 0.012706983834505081, + -0.011022120714187622, + -0.05076855793595314, + -0.032539378851652145, + -0.025488190352916718, + -0.0004135614726692438, + 0.018184643238782883, + -0.003295502858236432, + 0.03500358387827873, + 0.0005923925782553852, + -0.012573381885886192, + -0.016299378126859665, + -0.0007468693074770272, + 0.010420913808047771, + -0.015304789878427982, + 0.012491736561059952, + -0.008780584670603275, + -0.028085997328162193, + 0.019802706316113472, + -0.001178290694952011, + 0.05635012686252594, + 0.014644204638898373, + -0.029481390491127968, + -0.0006392459035851061, + 0.04171334579586983, + -0.025161609053611755, + -0.012231956236064434, + -0.0416242778301239, + -0.020129287615418434, + -0.005588994361460209, + 0.016848629340529442, + -0.019713638350367546, + 0.0036981627345085144, + -0.010339268483221531, + 0.006308957934379578, + -0.013619926758110523, + -0.04681989178061485, + 0.013716417364776134, + 0.030639268457889557, + -0.030579891055822372, + 0.012410091236233711, + -0.016047019511461258, + -0.03467700257897377, + -0.02391466125845909, + -0.01857060380280018, + -0.043019670993089676, + -0.05103575810790062, + -0.027210164815187454, + 0.004761407617479563, + -0.03233155608177185, + -0.04011012986302376, + -0.06454434990882874, + 0.010294735431671143, + -0.002725841011852026, + -0.02038164623081684, + 0.01255111489444971, + -0.008520804345607758, + 0.02525067701935768, + 0.007143967319279909, + -0.023573236539959908, + 0.03657711297273636, + -0.015364168211817741, + -0.016314223408699036, + 0.036072395741939545, + 0.0007867641979828477, + -0.02817506343126297, + 0.021925484761595726, + 0.011370969004929066, + 0.034766070544719696, + 0.001529922359623015, + 0.0037983637303113937, + -0.02358807995915413, + 0.028516490012407303, + 0.016047019511461258, + -0.008995831944048405, + -0.03806157410144806, + -0.022816160693764687, + 0.01321170013397932, + 0.005199323873966932, + -0.014169177040457726, + 0.010940475389361382, + 0.021183254197239876, + 0.0032732358667999506, + 0.016848629340529442, + -0.02449360117316246, + -0.0055259051732718945, + -0.003744552144780755, + -0.005563016515225172, + -0.024567823857069016, + 0.008966142311692238, + 0.025785082951188087, + 0.023261498659849167, + -0.04696833714842796, + 0.036666180938482285, + -0.05367809906601906, + 0.005039744079113007, + 0.01695254072546959, + -0.016611116006970406, + 0.04848248511552811, + 0.018214333802461624, + 0.02243020199239254, + -0.0017674360424280167, + -0.004026599694043398, + 0.012135466560721397, + -0.06792892515659332, + 0.01576497219502926, + -0.011964753270149231, + -0.0248053390532732, + -0.01555714849382639, + 0.0033084917813539505, + 0.006887897849082947, + 0.02051524631679058, + -0.00015262111264746636, + 0.005659506656229496, + 0.033400364220142365, + 0.008810274302959442, + 0.0037779523991048336, + 0.016047019511461258, + 0.05139202997088432, + -0.020990274846553802, + 0.009203656576573849, + -2.297724859090522e-5, + -0.003933820873498917, + -0.003048711223527789, + -0.010955319739878178, + 0.0024326599668711424, + 0.022905228659510612, + -0.023632613942027092, + 0.019669104367494583, + -0.007062321994453669, + 0.03821001946926117, + -0.002547705778852105, + -0.04524636268615723, + -0.019698793068528175, + 0.029407165944576263, + 0.056736089289188385, + -0.02391466125845909, + -0.0037389853969216347, + -0.009545082226395607, + 0.015304789878427982, + 0.02302398532629013, + 0.03544891998171806, + -0.03111429698765278, + 0.010324424132704735, + 0.005507349036633968, + -0.02329118922352791, + 0.0031656124629080296, + 0.005592705681920052, + 0.012424936518073082, + -0.006769140716642141, + 0.036191150546073914, + -0.04735429584980011, + -0.03372694551944733, + -0.05489535629749298, + 0.013887129724025726, + 0.028368044644594193, + 0.017041608691215515, + 0.009277879260480404, + -0.021880950778722763, + -0.02596321702003479, + -0.01425082329660654, + 0.021777039393782616, + -0.0007431581616401672, + 0.033578500151634216, + -0.004408848471939564, + 0.028961827978491783, + 0.0036703289952129126, + 0.022311445325613022, + 0.005321791861206293, + 0.007875064387917519, + 0.003848464461043477, + -0.006112266797572374, + 0.010717806406319141, + -0.015141499228775501, + -0.02820475399494171, + 0.025933528319001198, + 0.03265813738107681, + -0.03571612387895584, + 0.026007751002907753, + -0.06047692894935608, + -0.013916819356381893, + 0.04233681783080101, + -0.00826102402061224, + -0.0038261974696069956, + 0.0020541225094348192, + 0.02465689182281494, + -0.03871473670005798, + -0.0059897988103330135, + -0.0026850183494389057, + -0.0010678839171305299, + -0.0031285008881241083, + 0.03435042127966881, + 0.024092797189950943, + 0.008966142311692238, + -0.012810896150767803, + -0.04189148172736168, + -0.03337067738175392, + 0.015304789878427982, + 0.013137477450072765, + -0.014428958296775818, + -0.01756116934120655, + -0.011385813355445862, + -0.014792650938034058, + 0.0061902012676000595, + 0.04189148172736168, + 0.020901206880807877, + 0.024968629702925682, + -0.023365411907434464, + -0.009092321619391441, + -0.018407313153147697, + 0.02346932329237461, + 0.0013953930465504527, + -0.01031700149178505, + -0.024745959788560867, + 0.02038164623081684, + -0.0038744425401091576, + -0.015245411545038223, + 0.03506296128034592, + 0.02314274199306965, + 0.00755961611866951, + -0.05617199465632439, + -0.008053199388086796, + 0.005904442630708218, + 0.017190055921673775, + 0.01091078668832779, + -0.01695254072546959, + 0.011163144372403622, + 0.014881718903779984, + -0.01963941566646099, + 0.011326435022056103, + -0.037527166306972504, + 0.004820785950869322, + 0.0256514810025692, + -0.002514305291697383, + 0.003963510040193796, + 0.004995210096240044, + -0.016165778040885925, + 0.05047166347503662, + -0.0037705302238464355, + -0.0034402376040816307, + -0.018036197870969772, + 0.0018759872764348984, + 0.027655502781271935, + 0.01576497219502926, + -0.007010365836322308, + 0.022192686796188354, + 0.013835174031555653, + -0.004431114997714758, + -0.0009384574950672686, + -0.014302778989076614, + -0.018333090469241142, + -0.011304168030619621, + 0.012113199569284916, + 0.05364840850234032, + -0.015393857844173908, + 0.020307421684265137, + 0.006939854007214308, + -0.016848629340529442, + 0.0005306947277858853, + 0.03877411410212517, + -0.015171188861131668, + 0.03470669314265251, + 0.012009287253022194, + -0.004327203147113323, + -0.023929506540298462, + -0.008743473328649998, + 0.010606471449136734, + -0.019387057051062584, + 0.004275246988981962, + -0.039308518171310425, + 0.014072687365114689, + -0.03452855721116066, + -0.04575107991695404, + 0.011920219287276268, + 0.008372358046472073, + -0.010138866491615772, + 0.016893163323402405, + 0.005199323873966932, + -0.019862083718180656, + 0.007615283597260714, + -0.04762149974703789, + 0.021806728094816208, + -0.0025755392853170633, + 0.012335868552327156, + 0.027328921481966972, + 0.012810896150767803, + 0.054657842963933945, + -0.005373747553676367, + -0.011586216278374195, + 0.02418186515569687, + -0.02078245021402836, + 0.013308190740644932, + 0.002263802569359541, + -0.004969232250005007, + 0.022207532078027725, + -0.02801177278161049, + 0.00797897670418024, + -0.029422011226415634, + 0.009582193568348885, + 0.002384415129199624, + -0.03126274421811104, + -0.03132212162017822, + 0.003653628984466195, + 0.021153565496206284, + 0.0008020726963877678, + 0.05014508217573166, + 0.025621792301535606, + -0.01343436911702156, + -0.02404826320707798, + 0.03280658274888992, + 0.00112633453682065, + 0.020886361598968506, + 0.007002943195402622, + -0.0014111654600128531, + 0.021198099479079247, + 0.019119853153824806, + 0.013805484399199486, + -0.011259634047746658, + -0.016358757391572, + -0.007381481118500233, + -0.002907687332481146, + -0.0024326599668711424, + -0.011838573962450027, + 0.0028835649136453867, + 0.001686718431301415, + 0.009478281252086163, + -0.00014577868569176644, + -0.0050842780619859695, + 0.008090310730040073, + 0.008557915687561035, + 0.0030858227983117104, + 0.013597659766674042, + -0.010153710842132568, + -0.008535648696124554, + 0.012231956236064434, + -0.061872322112321854, + 0.026319488883018494, + -0.010279890149831772, + 0.010235356166958809, + -0.017353346571326256, + 0.0006823880248703063, + -0.04563232138752937, + -0.006553893908858299, + -0.004509049467742443, + 0.007659817114472389, + -0.0020448446739465, + 0.006290402263402939, + -0.030906472355127335, + 0.0702446773648262, + -0.008505959995090961, + 0.002406681887805462, + 0.017457257956266403, + 0.002670173766091466, + -0.0013991042505949736, + -0.009018098935484886, + -0.0071402559988200665, + -0.01047287043184042, + -0.0006202262593433261, + -0.01726427860558033, + 0.01667049340903759, + -0.01422855630517006, + 0.009233345277607441, + 0.019713638350367546, + -0.004041444510221481, + -0.03351912274956703, + 0.007889908738434315, + 0.01577981747686863, + 0.009819707833230495, + 0.007247879635542631, + -0.013671883381903172, + 0.006123400293290615, + 0.026141352951526642, + -0.005852486472576857, + -0.028219597414135933, + 0.0049729435704648495, + -0.03613177314400673, + -0.009923620149493217, + 0.035508301109075546, + 0.014993052929639816, + 0.021777039393782616, + -0.0109182083979249, + 0.014243400655686855, + 0.030164241790771484, + -0.006071444135159254, + 0.00043350891792215407, + -0.024731116369366646, + 0.014970785938203335, + 0.004249268677085638, + 0.034766070544719696, + -0.0065427604131400585, + 0.014206289313733578, + -0.03191590681672096, + -0.0035181718412786722, + -0.01099985372275114, + -0.030179087072610855, + -0.02094574086368084, + -0.017486946657299995, + 0.006613272242248058, + 0.0034996161703020334, + -0.013085520826280117, + 0.013634772039949894, + 0.03987261652946472, + -0.0006963048363104463, + 0.012053821235895157, + 0.018407313153147697, + 0.012046398594975471, + -0.004249268677085638, + 0.0035274496767669916, + -0.022816160693764687, + 0.016744716092944145, + -0.0286204032599926, + -0.012937075458467007, + 0.04512760415673256, + -0.02712109684944153, + -0.03390508145093918, + -0.0043680258095264435, + 0.009916197508573532, + -0.007310968823730946, + 0.01083656307309866, + 0.033251918852329254, + -0.014488336630165577, + 0.002996755065396428, + 0.02789301611483097, + -0.03245031088590622, + 0.02449360117316246, + 0.019372211769223213, + 0.006943564862012863, + 0.011051810346543789, + -0.001828670036047697, + 0.015586837194859982, + -0.014273089356720448, + 0.008877075277268887, + -0.02213330939412117, + 0.018822962418198586, + -0.028278976678848267, + 0.033400364220142365, + -0.006906453520059586, + -0.04073360189795494, + -0.05240146443247795, + 0.030609579756855965, + 0.030030639842152596, + 0.01312263309955597, + -0.0038299085572361946, + -0.0037779523991048336, + 0.013753528706729412, + 0.001776713877916336, + -0.005744862835854292, + 0.008943876251578331, + -0.03345974534749985, + -0.0021543235052376986, + -0.013894552364945412, + 0.00973063986748457, + 0.011979597620666027, + -0.036191150546073914, + -0.03161901235580444, + -0.011816306971013546, + 0.01454029232263565, + -0.004895009100437164, + 0.009938464500010014, + -0.007574460934847593, + -0.02066369354724884, + 0.003163756802678108, + -0.009804862551391125, + 0.03334098681807518, + 0.027982084080576897, + -0.02167312614619732, + 0.028813382610678673, + -0.00037134712329134345, + -0.0020541225094348192, + -0.020856672897934914, + 0.001400959794409573, + -0.010346691124141216, + -0.014785228297114372, + 0.04043671116232872, + -0.030639268457889557, + 0.001414876664057374, + -0.0005933204083703458, + -0.004286380484700203, + -0.009470859542489052, + -0.010762340389192104, + -0.02421155385673046, + 0.025636635720729828, + 0.03446917608380318, + -0.021584058180451393, + 0.02214815467596054, + -0.013330456800758839, + 0.011845996603369713, + 0.029169652611017227, + -0.0230388306081295, + -0.016848629340529442, + 0.027640659362077713, + -5.972634971840307e-5, + -0.024820182472467422, + -0.011586216278374195, + -0.004431114997714758, + -0.03687400370836258, + 0.006947276182472706, + -0.004379159305244684, + 0.024137331172823906, + -0.012996453791856766, + 0.03316285088658333, + -0.001571672735735774, + -0.013226544484496117, + 0.00944859255105257, + -0.013827751390635967, + -0.014109798707067966, + -0.028976673260331154, + -0.0033957038540393114, + 0.022474735975265503, + -0.008290712721645832, + -0.002347303554415703, + -0.038447532802820206, + 0.013798062689602375, + 0.01772445999085903, + 0.008194223046302795, + -0.022548958659172058, + 0.0366067998111248, + 0.04117894172668457, + -0.011177988722920418, + 0.002733263187110424, + -0.006680073216557503, + 0.011504570953547955, + 0.015512614510953426, + -0.006910164840519428, + -0.02050040289759636, + -0.006238446105271578, + -0.01667049340903759, + 0.007021499332040548, + -0.002248957986012101, + 0.0165368914604187, + -0.0005872897454537451, + 0.014161755330860615, + 0.023825595155358315, + -0.008854808285832405, + 0.009418902918696404, + 0.03262844681739807, + -0.008550493977963924, + 0.01425082329660654, + -0.02140592411160469, + -0.002248957986012101, + 0.004813363775610924, + -0.014124643988907337, + 0.03654742240905762, + 0.015030164271593094, + 0.031084606423974037, + -0.01591341942548752, + 0.007689506281167269, + 0.0342019759118557, + -0.016121244058012962, + 0.026349177584052086, + -0.03981323540210724, + -0.024968629702925682, + -0.023083364591002464, + 0.021955173462629318, + -0.0046463618054986, + -0.025562413036823273, + -0.02447875775396824, + -0.005121389403939247, + 0.012781206518411636, + 0.007889908738434315, + 0.030431443825364113, + -0.0032287021167576313, + 0.05563758686184883, + 0.020099598914384842, + 0.013746106065809727, + -0.03277689218521118, + -0.028843071311712265, + 0.0022229799069464207, + -0.04239619895815849, + 0.01238782424479723, + -0.008958720602095127, + 0.0068470751866698265, + 0.03737872093915939, + -0.00030593806877732277, + 0.002534716622903943, + 0.012491736561059952, + -0.007637550588697195, + -0.039902303367853165, + 0.01861513778567314, + -0.007169945165514946, + -0.019995685666799545, + -0.005102833732962608, + -0.0018796983640640974, + 0.014562559314072132, + -0.02698749490082264, + 0.0020986562594771385, + 0.005759707652032375, + -0.004590694792568684, + -0.029021207243204117, + -0.029318099841475487, + -0.04898720234632492, + 0.006668939720839262, + -0.024879561737179756, + 0.011534259654581547, + -0.0005381170194596052, + 0.038595978170633316, + 0.020990274846553802, + 0.007934442721307278, + -0.04696833714842796, + -0.008134844712913036, + 0.016002487391233444, + -0.0062013347633183, + -0.027417989447712898, + -0.015794662758708, + 0.012892541475594044, + 0.019594881683588028, + -0.03375663608312607, + -0.02640855684876442, + -0.02257864736020565, + -0.022459890693426132, + 0.012395246885716915, + 0.007058610673993826, + 0.006550183054059744, + 0.012202266603708267, + -0.002104223007336259, + -0.0366067998111248, + -0.014718428254127502, + 0.003278802614659071, + -0.018125265836715698, + -0.04334625229239464, + 0.03435042127966881, + 0.030758025124669075, + 0.0003168395778629929, + 0.05151078850030899, + 0.019862083718180656, + 0.017472103238105774, + -0.029911883175373077, + -0.010309579782187939, + 0.04002106189727783, + -0.014621937647461891, + -0.0028557314071804285, + -0.00509541155770421, + -0.00017929502064362168, + -0.0043160696513950825, + 0.021584058180451393, + -0.010725229047238827, + 0.0005037888768129051, + 0.013040987774729729, + -0.011994442902505398, + -0.021346544846892357, + 0.0027406855951994658, + 0.0015466224867850542, + 0.0037705302238464355, + 0.03185652568936348, + -0.00900325458496809, + 0.011593637987971306, + -0.009478281252086163, + -0.01461451593786478, + 0.03381601348519325, + -0.012061242945492268, + 0.020856672897934914, + 0.007084588520228863, + -0.03405353054404259, + -0.026779672130942345, + -0.01990661770105362, + 0.008194223046302795, + 0.029303254559636116, + -0.01069553941488266, + -0.00531808054074645, + 4.686054126068484e-6, + -0.04174303635954857, + 0.037675611674785614, + 0.006680073216557503, + 0.008750895969569683, + 0.023840438574552536, + 0.03435042127966881, + -0.004690895788371563, + -0.017368189990520477, + 0.023810749873518944, + 0.03942727670073509, + 4.381623512017541e-6, + 0.01591341942548752, + 0.0038187752943485975, + -0.01343436911702156, + 0.01726427860558033, + -0.0036870292387902737, + -0.0038187752943485975, + 0.009055210277438164, + -0.04082266986370087, + 0.00820164568722248, + -0.0481262169778347, + 0.016254844143986702, + 0.002993043977767229, + 0.03170808032155037, + 0.004913564771413803, + -0.0074519929476082325, + 0.017605703324079514, + 0.017590859904885292, + 0.00790475308895111, + 0.0006550183170475066, + -0.036963071674108505, + -0.005492504686117172, + 0.000488480378407985, + 0.01963941566646099, + 0.03170808032155037, + 0.017516637220978737, + 0.018926873803138733, + -0.007117989007383585, + -0.0041156671941280365, + -0.010420913808047771, + -0.001585589605383575, + 0.011920219287276268, + 0.013033565133810043, + 0.005718884989619255, + -0.01640329137444496, + -0.03126274421811104, + -0.005191901233047247, + -0.016165778040885925, + 0.029273565858602524, + -0.0025718281976878643, + -0.03684431314468384, + -0.023246655240654945, + -0.005280969198793173, + -0.03541923314332962, + -0.016492359340190887, + 0.011764351278543472, + 0.005893309134989977, + 0.043435320258140564, + 0.0072515904903411865, + 0.0014482770347967744, + -0.008825118653476238, + -0.003803930478170514, + 0.027700036764144897, + 0.006642961874604225, + 0.010480293072760105, + -0.013582815416157246, + -0.0206340029835701, + -0.02716563083231449, + 0.008617294020950794, + 0.03011970780789852, + 0.020841827616095543, + -0.059081535786390305, + -0.030149396508932114, + 0.03630990907549858, + -0.018674515187740326, + -0.018258865922689438, + -0.009723217226564884, + -0.021198099479079247, + -0.003455082420259714, + 0.002430804306641221, + -0.0009407769539393485, + 0.01695254072546959, + 0.012046398594975471, + 0.01304840948432684, + -0.0005320864147506654, + 0.01091078668832779, + 0.02107934281229973, + -0.001603217562660575, + -0.002618217607960105, + -0.0030542779713869095, + 0.010710383765399456, + -0.06288175284862518, + -0.01497820857912302, + 0.002690585097298026, + 0.019535502418875694, + -0.010710383765399456, + -0.003956087864935398, + 0.009418902918696404, + -0.006219890434294939, + 0.005522193852812052, + 0.003219424281269312, + -0.00967126153409481, + -0.013775795698165894, + 0.012217111885547638, + 0.023098208010196686, + -0.010287312790751457, + 0.016447825357317924, + 0.005158500745892525, + -0.0008980987477116287, + 0.024434223771095276, + 0.003007888561114669, + -0.014866873621940613, + -0.016165778040885925, + 0.023202121257781982, + -0.005807952489703894, + -0.025176454335451126, + 0.046522997319698334, + -0.027225010097026825, + 0.020322266966104507, + 0.0028779981657862663, + 0.012491736561059952, + 0.0037222851533442736, + 3.835823372355662e-5, + -0.002061544917523861, + 0.002948509994894266, + 0.025191297754645348, + -0.015839194878935814, + 0.02804146334528923, + 0.03728965297341347, + 0.043286874890327454, + 0.00037714579957537353, + 0.03141118958592415, + 0.0014454936608672142, + -0.019535502418875694, + -0.019862083718180656, + -0.0010168555891141295, + -0.015675904229283333, + 0.002605228452011943, + -0.016017330810427666, + -0.009522815234959126, + 0.0091516999527812, + 0.024849873036146164, + -0.0013638483360409737, + 0.03055020235478878, + -0.03114398568868637, + 0.0001121463646995835, + -0.005214168224483728, + 0.016997074708342552, + -0.023677147924900055, + 0.007852797396481037, + -0.006962120532989502, + 0.06015034765005112, + -0.002757385838776827, + 0.014146910980343819, + 0.0009259323705919087, + -0.03440979868173599, + 0.0054294150322675705, + 0.01334530208259821, + 0.024270933121442795, + 0.01769477128982544, + 0.019520658999681473, + -0.026957806199789047, + -0.0059897988103330135, + 0.02330603264272213, + 0.028397733345627785, + 0.008669250644743443, + 0.01393166370689869, + 0.0007686723256483674, + 0.0010864397045224905, + 0.0035422942601144314, + -0.01246946956962347, + -0.004924698267132044, + -0.01511923223733902, + 0.008736051619052887, + -0.004895009100437164, + 0.0038929982110857964, + -0.0154235465452075, + 0.015186033211648464, + 0.010829140432178974, + -0.02079729549586773, + -0.0030969560611993074, + 0.001766508212313056, + 0.014562559314072132, + 0.020916052162647247, + 0.009582193568348885, + -0.01475553959608078, + 0.024820182472467422, + 0.010272468440234661, + -0.029436856508255005, + -0.004828208591789007, + 0.014993052929639816, + -0.006824808195233345, + -0.020901206880807877, + 0.01595795340836048, + -0.014651627279818058, + -0.0038410420529544353, + -0.009032943286001682, + 0.03040175512433052, + 0.024003729224205017, + -0.0004907998372800648, + -0.02612650766968727, + -0.01459967065602541, + -0.007329524960368872, + -0.00771177327260375, + -0.016700182110071182, + -0.021732505410909653, + 0.032539378851652145, + -0.006861919537186623, + -0.01033184677362442, + -0.011415502987802029, + -0.007949287071824074, + 0.0030988117214292288, + 0.015571992844343185, + 0.002033711178228259, + -0.03948665410280228, + -0.033994149416685104, + 0.0109182083979249, + -0.008364936336874962, + 0.0010214945068582892, + 0.0036703289952129126, + 0.030312687158584595, + -0.0034124040976166725, + 0.017190055921673775, + -0.0060343327932059765, + 0.009025521576404572, + 0.006208756938576698, + -0.0023064808920025826, + 0.01549777016043663, + -0.014302778989076614, + -0.0022304023150354624, + -0.029718903824687004, + -0.022326288744807243, + 0.007181078661233187, + 0.01511923223733902, + 0.021465301513671875, + 0.009960731491446495, + -0.01009433250874281, + -0.004468226805329323, + -0.0006160511984489858, + 0.005588994361460209, + -0.010279890149831772, + -0.010799451731145382, + -0.0025217276997864246, + 0.00023148309264797717, + -0.008223912678658962, + -0.019253455102443695, + -0.023691993206739426, + -0.019387057051062584, + 0.01577981747686863, + 0.011838573962450027, + 0.0038187752943485975, + -0.01610639877617359, + 0.010502559132874012, + 0.016893163323402405, + 0.00036299703060649335, + 0.03595363721251488, + -0.0055852835066616535, + -0.009166545234620571, + -0.01683378405869007, + -0.01128190103918314, + -0.030164241790771484, + -0.013241389766335487, + 0.029911883175373077, + -0.023395100608468056, + -0.003529305336996913, + 0.015408702194690704, + -0.009040365926921368, + -0.014339890331029892, + -0.016254844143986702, + 0.02272709272801876, + -0.04622610658407211, + -0.007719195913523436, + -0.013946508057415485, + -0.016358757391572, + 0.007136544678360224, + 0.015972796827554703, + 0.000738983100745827, + -0.009181389585137367, + -0.001557755982503295, + -0.01916438713669777, + -0.02389981783926487, + 0.010866252705454826, + 0.015156343579292297, + -0.007314680144190788, + 0.02244504541158676, + 0.012001864612102509, + 0.0031377787236124277, + 0.02125747688114643, + 0.005381170194596052, + -0.02167312614619732, + 0.0062718465924263, + -0.03378632664680481, + -0.006164222955703735, + 6.506113277282566e-5, + 0.010569360107183456, + 0.0061382451094686985, + 0.01696738600730896, + -0.03203466162085533, + 0.022459890693426132, + 0.031797148287296295, + -0.029570456594228745, + -0.0007760946173220873, + 0.008387203328311443, + 0.004245557822287083, + -0.008283291012048721, + 0.012862851843237877, + -0.00410082284361124, + 0.0034439489245414734, + 0.016299378126859665, + -0.013464058749377728, + -0.007637550588697195, + 0.01454029232263565, + 0.0025050274562090635, + -0.007734040264040232, + -0.03206435218453407, + 0.0002597806160338223, + -0.007255301810801029, + -0.008216490037739277, + -0.036220841109752655, + 0.002777797169983387, + 0.0027666636742651463, + -0.00884738564491272, + 0.0007510443683713675, + -0.00117179611697793, + -0.024582669138908386, + 0.013812907040119171, + -0.024434223771095276, + 0.031500257551670074, + -0.02672029286623001, + 0.029718903824687004, + 0.006887897849082947, + -0.015096965245902538, + -0.02330603264272213, + -0.0023417368065565825, + 0.010198244825005531, + 0.03702244907617569, + -0.00892903096973896, + -0.019832395017147064, + -0.014948518946766853, + 0.012758939526975155, + 0.02406310848891735, + 0.010658428072929382, + -0.029481390491127968, + -0.01621031016111374, + 0.011697550304234028, + 0.016477514058351517, + 0.01505985390394926, + -0.01099243201315403, + -0.010955319739878178, + -0.003911553882062435, + -0.024731116369366646, + 0.006598427891731262, + 0.021212942898273468, + 0.006817386019974947, + 0.008602449670433998, + 0.023424789309501648, + -0.011348702013492584, + 0.003295502858236432, + -0.0016152787720784545, + 0.0033363255206495523, + -0.019283143803477287, + -0.005967532284557819, + 0.006208756938576698, + -0.005592705681920052, + 0.004360603168606758, + -0.0011847851565107703, + 0.011972175911068916, + 0.010480293072760105, + 0.033578500151634216, + 0.0028074863366782665, + 0.012217111885547638, + -0.032242488116025925, + -0.017190055921673775, + -0.010962742380797863, + 0.005796818993985653, + 0.011430347338318825, + -0.010702962055802345, + 0.01606186479330063, + 0.022623181343078613, + 0.02642340026795864, + -0.0038781536277383566, + -2.958773802674841e-5, + 0.0029744880739599466, + -0.004902431275695562, + -0.02140592411160469, + 0.011608482338488102, + -0.005588994361460209, + -0.006257001776248217, + 0.013553126715123653, + 0.01342694740742445, + -0.01262533850967884, + 0.007362924981862307, + -0.02300914190709591, + -0.02535458840429783, + -0.009545082226395607, + -0.005243857391178608, + -0.00036044561420567334, + 0.008424314670264721, + 0.0033771481830626726, + -0.01364961639046669, + 0.00234359223395586, + -0.007288702297955751, + 0.005648373160511255, + -0.0031210787128657103, + -0.010368958115577698, + -0.009567349217832088, + 0.020990274846553802, + -0.01445864699780941, + -0.01756116934120655, + -0.015794662758708, + -0.02198486402630806, + 0.0013165310956537724, + 0.0022341134026646614, + -0.002657184610143304, + 0.00028854203992523253, + -0.004360603168606758, + -0.012410091236233711, + -0.00013650080654770136, + 0.0021190675906836987, + 0.01379064004868269, + -0.019669104367494583, + 0.002805630676448345, + -0.0026683181058615446, + 0.009463436901569366, + 0.012217111885547638, + 0.030431443825364113, + -0.019431591033935547, + -0.008862229995429516, + -0.027967240661382675, + 0.02023319900035858, + 0.009530237875878811, + 0.019847240298986435, + -0.006398025434464216, + 0.01741272397339344, + 0.0049284095875918865, + 0.021806728094816208, + 0.030015796422958374, + 0.008595027960836887, + -0.0031897348817437887, + -0.007756307255476713, + -0.011081499047577381, + -0.00892160926014185, + 0.004364314489066601, + 0.011430347338318825, + -0.002454926958307624, + -0.008943876251578331, + 0.007934442721307278, + -0.021925484761595726, + 0.02096058614552021, + -0.03265813738107681, + -0.0029911883175373077, + 0.00320643512532115, + -0.012172577902674675, + -0.015089543536305428, + 0.00930756889283657, + 0.011667861603200436, + 0.004802230279892683, + 0.012514003552496433, + -0.02698749490082264, + -0.0020429890137165785, + -0.0036035284865647554, + 0.004924698267132044, + -0.01770961657166481, + -0.0009704661788418889, + -0.0012896251864731312, + -0.0037668191362172365, + 0.02477564848959446, + 0.0053774588741362095, + 0.009723217226564884, + -0.01451802533119917, + -0.01756116934120655, + -0.011452614329755306, + 0.01409495435655117, + -0.052757732570171356, + -0.03138149902224541, + -0.016329068690538406, + 0.005648373160511255, + -0.010406069457530975, + 0.021925484761595726, + -0.010042376816272736, + -0.014569981954991817, + -0.00420102383941412, + 0.006891608703881502, + 0.013382413424551487, + 0.009322413243353367, + -0.00733694713562727, + 0.007374058477580547, + -0.011979597620666027, + 0.04278215765953064, + -0.013946508057415485, + 0.02698749490082264, + -0.029184497892856598, + 0.01422855630517006, + 0.013961353339254856, + 0.036072395741939545, + -0.009515393525362015, + 0.007533638272434473, + -0.01800650916993618, + 0.01128190103918314, + -0.009990420192480087, + -0.02683904953300953, + -0.030000951141119003, + -0.003926398698240519, + 0.01401330903172493, + -0.03411290794610977, + -0.014265667647123337, + -0.01174208428710699, + -0.0016254844376817346, + 0.03426135331392288, + 0.0029670658987015486, + 0.021168408915400505, + -0.01415433268994093, + -0.006253290921449661, + -0.0007051188149489462, + -0.022192686796188354, + -0.014792650938034058, + 0.010428336448967457, + -0.007949287071824074, + -0.019951151683926582, + -0.01726427860558033, + 0.01606186479330063, + -0.020322266966104507, + -0.015839194878935814, + -0.044355686753988266, + -0.0010419058380648494, + 0.018971407786011696, + -0.032390933483839035, + 0.02729923278093338, + -0.002959643490612507, + 0.0030338666401803493, + -0.007177367340773344, + -0.0014723994536325336, + -0.022534113377332687, + 0.016715027391910553, + -0.014829762279987335, + -0.035359855741262436, + -0.05174830183386803, + 0.007696928922086954, + -0.00755961611866951, + 0.029169652611017227, + 0.015571992844343185, + 0.015512614510953426, + -0.009277879260480404, + 0.02213330939412117, + -0.015824351459741592, + -0.02137623354792595, + 0.013070676475763321, + 0.019075321033596992, + 0.02406310848891735, + -0.015052431263029575, + 0.007151389494538307, + 0.03553798794746399, + -0.02461235783994198, + -0.0008145978208631277, + 0.007615283597260714, + 0.0021636015735566616, + 0.0031285008881241083, + 0.014339890331029892, + -0.024567823857069016, + -0.005173345562070608, + 0.007169945165514946, + -0.0025161609519273043, + -0.011111188679933548, + -0.013805484399199486, + -0.013694150373339653, + -0.017932284623384476, + -0.02008475363254547, + 0.011460036970674992, + 0.003239835612475872, + 0.029926728457212448, + -0.002367714885622263, + 0.009314990602433681, + -0.01520087756216526, + -0.0024809050373733044, + 0.013738683424890041, + 0.008595027960836887, + 0.02462720312178135, + 0.01917923241853714, + -0.013107787817716599, + 0.005507349036633968, + 0.013991042040288448, + -0.007006654515862465, + 0.016625959426164627, + -0.0029670658987015486, + 0.009166545234620571, + 0.03639897704124451, + -0.03408321738243103, + -0.009136855602264404, + 0.027254698798060417, + 0.035775505006313324, + 0.012410091236233711, + -0.014443802647292614, + -0.01843700185418129, + -0.03218310698866844, + 0.004609250463545322, + 0.004052577540278435, + 0.0038744425401091576, + 0.010346691124141216, + 0.018214333802461624, + -0.01019082311540842, + -0.009945887140929699, + -0.002002166351303458, + 0.008914186619222164, + 0.007136544678360224, + 0.003915265202522278, + -0.011987020261585712, + -0.004245557822287083, + -0.00523643521592021, + -0.019060475751757622, + -0.015089543536305428, + -0.0032249907962977886, + 0.013040987774729729, + -0.0009087682701647282, + 0.005763418506830931, + 0.000869337294716388, + 0.011111188679933548, + 0.021613748744130135, + 0.01563137210905552, + -0.017739305272698402, + -0.009626727551221848, + -0.014258245006203651, + -0.005047166254371405, + 0.00047827468370087445, + 8.871972386259586e-5, + 0.018347933888435364, + 0.007555904798209667, + 0.02241535671055317, + -0.024597514420747757, + -0.01210577692836523, + 0.013916819356381893, + -0.003584972582757473, + -0.007259012665599585, + 0.007800841238349676, + -0.012276490218937397, + 0.00509541155770421, + -0.01069553941488266, + 0.07689506560564041, + -0.005551883019506931, + 0.01843700185418129, + 0.017086142674088478, + 0.005036032758653164, + -0.013850018382072449, + 0.004308647010475397, + 0.008053199388086796, + 0.0054294150322675705, + -0.023113053292036057, + -0.02021835558116436, + -0.0040637110359966755, + 0.022192686796188354, + 0.020040219649672508, + -0.028219597414135933, + -0.0042715356685221195, + 0.004468226805329323, + 0.017293967306613922, + 0.024523291736841202, + 0.02140592411160469, + 0.006513071246445179, + 0.004698317963629961, + -0.019817549735307693, + 0.008773162961006165, + -0.016136087477207184, + 0.02272709272801876, + -0.019980840384960175, + 0.015141499228775501, + 0.016596270725131035, + 0.02982281520962715, + 0.010799451731145382, + 0.00667636189609766, + 0.0050323219038546085, + -0.027046874165534973, + -0.006910164840519428, + 0.017620548605918884, + 0.006976965349167585, + 0.0107771847397089, + -0.002603373024612665, + 0.0019557769410312176, + 0.01564621552824974, + -0.007941864430904388, + 0.03052051179111004, + 0.021762194111943245, + -0.02272709272801876, + 0.016477514058351517, + -0.005629817023873329, + -0.006546471733599901, + 0.020767604932188988, + -0.006798829883337021, + -0.007949287071824074, + -0.010851407423615456, + 0.00035023994860239327, + 0.020455868914723396, + 0.016729872673749924, + -0.0035905393306165934, + 0.009463436901569366, + 0.005581572186201811, + 0.001727541210129857, + 0.007533638272434473, + 0.0029466545674949884, + -0.01800650916993618, + 0.002698007272556424, + -0.020737916231155396, + -0.010725229047238827, + 0.007385191973298788, + -0.007110566832125187, + 0.004943253938108683, + -0.002868720330297947, + -0.012083509936928749, + -0.02698749490082264, + -0.008431736379861832, + 0.01772445999085903, + -0.007644972763955593, + -0.011957330629229546, + 0.02670544758439064, + -0.0012089076917618513, + 0.028828227892518044, + 0.04296029359102249, + 0.00431235833093524, + 0.011460036970674992, + 0.008238757029175758, + -0.01009433250874281, + -0.008097733370959759, + -0.012922230176627636, + -0.006331224925816059, + 0.008691517636179924, + -0.022504424676299095, + 0.012424936518073082, + -0.006186489947140217, + -0.02535458840429783, + 0.005351481027901173, + 0.0023788483813405037, + 0.017308812588453293, + 0.0013100366340950131, + -0.002800063928589225, + 0.007496526464819908, + -0.02094574086368084, + 0.0008113505318760872, + -0.02404826320707798, + 0.014287934638559818, + 0.0034866270143538713, + -0.004126800689846277, + -0.01769477128982544, + -0.005292102228850126, + 0.0017581582069396973, + 0.010012687183916569, + 0.0017934141214936972, + 0.0017024908447638154, + 0.004995210096240044, + -0.0015132221160456538, + -0.014339890331029892, + -0.000575692392885685, + 0.004802230279892683, + -0.007344369310885668, + 0.011838573962450027, + -0.007593016605824232, + -0.004449671134352684, + -0.03464731201529503, + -0.021895796060562134, + -0.009997842833399773, + 0.002761096926406026, + -0.012172577902674675, + -0.019401902332901955, + 0.009314990602433681, + -0.005173345562070608, + -0.008899342268705368, + -0.0035961060784757137, + -0.009656417183578014, + -0.02081213891506195, + 0.014510603621602058, + 0.020544936880469322, + 0.017768993973731995, + -0.026052284985780716, + 0.008639561012387276, + 0.009352102875709534, + 0.004015466198325157, + 0.011756928637623787, + 0.0017377468757331371, + -0.01373126171529293, + 0.024849873036146164, + -0.024552980437874794, + 0.004249268677085638, + 0.02124263346195221, + 0.003807641798630357, + -0.019995685666799545, + -0.008580182678997517, + -0.018095575273036957, + 0.0015243556117638946, + -0.023409945890307426, + 0.01680409535765648, + -0.03446917608380318, + -0.00203000009059906, + 0.0013360145967453718, + -0.011897952295839787, + 0.011972175911068916, + -0.023929506540298462, + 0.0025291498750448227, + -0.03657711297273636, + 0.0026627513580024242, + 0.015364168211817741, + 0.005841352976858616, + -0.010717806406319141, + 0.007726618088781834, + -0.015824351459741592, + 0.004757696762681007, + 0.011949908919632435, + 0.010762340389192104, + 0.01180146262049675, + 0.00212092325091362, + 0.008906763978302479, + 0.013738683424890041, + -0.001731252297759056, + -0.01903078705072403, + 0.008149689063429832, + -0.004152779001742601, + 0.004048866685479879, + 0.005978665314614773, + -0.008498537354171276, + 0.0006731101311743259, + -0.0002581570006441325, + -0.014109798707067966, + 0.023350566625595093, + 0.006171645596623421, + -0.02535458840429783, + -0.02921418659389019, + 0.022905228659510612, + -0.007793418597429991, + -0.024389689788222313, + 0.0005293030408211052, + -0.0015187888639047742, + 0.015126654878258705, + 0.008632139302790165, + -0.007830530405044556, + -0.007143967319279909, + -0.011987020261585712, + 0.030015796422958374, + 0.005915576126426458, + 0.027625814080238342, + -0.027803950011730194, + 0.0024883272126317024, + 0.005800530314445496, + 0.006297824438661337, + 0.012209689244627953, + -0.0024141042958945036, + -1.256862742593512e-5, + -0.007615283597260714, + -0.022073930129408836, + -0.005889597814530134, + -0.012142888270318508, + -0.017011919990181923, + -0.014347312971949577, + 0.00671718455851078, + 0.009433748200535774, + -0.0010901507921516895, + 0.01201670989394188, + -0.002339881146326661, + -0.0017674360424280167, + 0.005407148040831089, + 0.013961353339254856, + 0.014636782929301262, + -0.005080566741526127, + -0.008520804345607758, + -0.021450458094477654, + 0.0022619469091296196, + -0.010792029090225697, + 0.01785806193947792, + 0.012372979894280434, + 0.0027592412661761045, + -0.015854040160775185, + 0.013092943467199802, + -0.0009472714737057686, + -0.009708372876048088, + 0.0043234918266534805, + 0.007366636302322149, + 0.025740548968315125, + 0.005848775152117014, + -0.01726427860558033, + -0.005065722391009331, + -0.008676673285663128, + -0.007325813639909029, + -0.008372358046472073, + -0.00995330885052681, + -0.008357513695955276, + -0.0014297212474048138, + -0.016314223408699036, + -0.005351481027901173, + 0.005028610583394766, + -0.00319159054197371, + -2.4528393623768352e-5, + -0.0010001554619520903, + -0.000604917760938406, + 0.0045758499763906, + 0.0028427422512322664, + -0.0015707450220361352, + -0.00667636189609766, + -0.00512510072439909, + 0.021331699565052986, + -0.0012840585550293326, + -0.013026142492890358, + -0.010858830064535141, + -0.012269067578017712, + -0.008023509755730629, + -0.0030988117214292288, + -0.004204735159873962, + 0.018644826486706734, + -0.03936789929866791, + 0.03011970780789852, + -0.011897952295839787, + 0.006732029374688864, + 0.004546160809695721, + -0.007912175729870796, + 0.002852020086720586, + 0.02122778818011284, + 0.007830530405044556, + 0.019268300384283066, + -0.00512510072439909, + -0.023231809958815575, + 0.007748885080218315, + 0.004319780506193638, + 0.007659817114472389, + 0.011890530586242676, + 0.029243875294923782, + -0.023499013856053352, + 0.009322413243353367, + -0.03895225003361702, + 0.004943253938108683, + 0.008060622029006481, + -0.012565960176289082, + 0.020901206880807877, + -0.008869652636349201, + 0.003870731219649315, + 0.007262723986059427, + -0.006435137242078781, + -0.0004996138159185648, + 0.0016783684259280562, + -0.02256380207836628, + 0.0025013163685798645, + 0.034023839980363846, + -0.004702029284089804, + 6.720663805026561e-5, + 0.004308647010475397, + -0.011541682295501232, + -0.026319488883018494, + 0.006446270737797022, + 0.004631517454981804, + 0.045662011951208115, + 0.005288391374051571, + -0.02137623354792595, + 0.024167019873857498, + 0.0037464078050106764, + 0.012417513877153397, + -0.019995685666799545, + 0.0036276509054005146, + -0.022177843376994133, + 0.0030784003902226686, + 0.012038975954055786, + 0.016922852024435997, + 0.002614506520330906, + 0.018822962418198586, + -0.0001950674195541069, + -0.0032880804501473904, + 0.01447349227964878, + 0.0027443966828286648, + 0.011526837013661861, + -0.016299378126859665, + 0.015883728861808777, + -0.0066466727294027805, + 0.024552980437874794, + -0.012291334569454193, + 0.006772852037101984, + 0.010376380756497383, + -0.03007517382502556, + 0.0058858864940702915, + -0.002527294447645545, + 0.007852797396481037, + 0.0009500548476353288, + -0.008966142311692238, + 0.002354725729674101, + 0.010673272423446178, + -0.017605703324079514, + -0.008684094995260239, + -0.0015456947730854154, + 0.002312047639861703, + 0.0037538299802690744, + 0.008298135362565517, + 0.000940313097089529, + -0.0026237843558192253, + 0.008943876251578331, + -0.0038410420529544353, + -0.00733694713562727, + 0.005433126352727413, + 0.0003968612872995436, + 0.007073455490171909, + -0.011771772988140583, + -0.03734903037548065, + 0.02358807995915413, + 0.011704972945153713, + 0.0012896251864731312, + 0.010947898030281067, + -0.0236029252409935, + 0.011816306971013546, + 0.0027406855951994658, + -0.01041349209845066, + 0.01260307151824236, + 0.009567349217832088, + 0.010309579782187939, + 0.0007849085959605873, + -0.035033274441957474, + 0.011274479329586029, + -0.0017043465049937367, + -0.006171645596623421, + -0.015364168211817741, + 0.012276490218937397, + -0.009381791576743126, + 0.010680695064365864, + -0.014592248946428299, + 0.008379780687391758, + -0.01886749640107155, + -0.015883728861808777, + 0.008535648696124554, + -0.024701425805687904, + 0.005626106169074774, + -0.00937436893582344, + -0.006368336267769337, + 0.010591627098619938, + 0.0067431628704071045, + -0.00936694722622633, + -0.0032045794650912285, + -0.0023213254753500223, + 0.0021116454154253006, + 0.003915265202522278, + -0.006969543173909187, + -0.008899342268705368, + -0.02082698419690132, + 0.02434515580534935, + -0.011259634047746658, + 0.01932767778635025, + -0.007463126443326473, + 0.010458026081323624, + -0.006665228400379419, + -0.01511923223733902, + -0.005911864805966616, + -0.0016078564804047346, + 0.015178610570728779, + -0.006654095370322466, + -0.0005775479949079454, + -0.004698317963629961, + 0.018496381118893623, + 0.004724296275526285, + 0.009745484218001366, + -0.0041676233522593975, + -0.010643583722412586, + -0.015839194878935814, + 0.02743283472955227, + -0.004468226805329323, + -0.0022229799069464207, + 0.002534716622903943, + 0.00047966637066565454, + 0.006965831853449345, + 0.0008878930821083486, + -0.002475338289514184, + 0.019090164452791214, + 0.006765429861843586, + -0.0013425091747194529, + -0.002761096926406026, + 0.029837660491466522, + 0.00892903096973896, + -0.005566727835685015, + -0.010049799457192421, + -0.005087988916784525, + 0.002900265157222748, + -0.02787817269563675, + 0.007273857481777668, + -0.013011298142373562, + -0.009745484218001366, + 0.037259962409734726, + -0.0038892871234565973, + -0.004085978027433157, + 0.028798537328839302, + -0.009700951166450977, + -0.021361390128731728, + -0.017650237306952477, + 0.009485703893005848, + -0.001707129762507975, + 0.006553893908858299, + 0.008520804345607758, + 0.03494420647621155, + -0.006631828378885984, + -0.01555714849382639, + -0.00907005462795496, + 0.011771772988140583, + -0.000566878414247185, + -0.0033400366082787514, + -0.007763729430735111, + -0.011111188679933548, + -0.00560012785717845, + -0.02461235783994198, + 0.005993510130792856, + -0.0527874231338501, + 0.00996815413236618, + 0.021168408915400505, + 0.02112387679517269, + -0.006108555942773819, + -0.00907005462795496, + 0.011482303962111473, + 0.027789104729890823, + 0.016477514058351517, + -0.01174208428710699, + 0.007689506281167269, + -0.016047019511461258, + 0.04322749748826027, + 0.0014835329493507743, + 0.0019761882722377777, + 0.020277732983231544, + 0.014703582972288132, + -0.009648994542658329, + 0.018511224538087845, + -0.0030746893025934696, + -0.005644661840051413, + -0.004290091339498758, + -0.00016410248645115644, + -0.006208756938576698, + 0.00937436893582344, + 0.020262889564037323, + -0.00797897670418024, + 0.025131920352578163, + 0.0203519556671381, + 0.004572139121592045, + -0.018540915101766586, + -0.0046463618054986, + 0.009552504867315292, + 0.007581883110105991, + 0.015230567194521427, + 0.005934131797403097, + 0.01379064004868269, + 0.0019130987348034978, + -0.0011421069502830505, + 0.0025013163685798645, + 0.022474735975265503, + 0.01652204804122448, + 0.005062011070549488, + -0.0009004182065837085, + -0.005240146536380053, + 0.01055451575666666, + 0.0021673126611858606, + -0.0014677605358883739, + 0.002928098663687706, + 0.03256906941533089, + 0.003546005580574274, + 0.0268538948148489, + 0.004078555852174759, + -0.01334530208259821, + 0.021287167444825172, + 0.006179067771881819, + 0.020737916231155396, + 0.00214133458212018, + 0.0006921298336237669, + 0.018199488520622253, + 0.011081499047577381, + -0.01166043896228075, + -0.00981228519231081, + -0.010851407423615456, + -0.016358757391572, + 0.017041608691215515, + -0.010487714782357216, + 0.01993630826473236, + 0.0034328154288232327, + -0.003421681933104992, + -0.0061308229342103004, + -0.009597038850188255, + 0.017011919990181923, + 0.010970165021717548, + -0.009797440841794014, + 0.005629817023873329, + 0.004111956339329481, + 0.016343912109732628, + 0.006642961874604225, + 0.008283291012048721, + -0.012655027210712433, + 0.0033919927664101124, + -0.0031173673924058676, + -0.0010836563305929303, + -0.013864862732589245, + 0.004787385929375887, + 0.005470237694680691, + 0.010985009372234344, + -0.00107066729106009, + -0.004004332702606916, + -0.0054219928570091724, + -0.01527510117739439, + -0.00046946070506237447, + 0.02728438749909401, + 0.010302157141268253, + 0.0206340029835701, + -0.025933528319001198, + 0.0038892871234565973, + -0.014503180980682373, + -0.016611116006970406, + 0.018822962418198586, + 0.004293802659958601, + -0.00199474417604506, + 0.0017414579633623362, + 0.0001638705434743315, + -0.004735429771244526, + 0.008676673285663128, + -0.001335086883045733, + -0.0068470751866698265, + 0.0027592412661761045, + -0.006821096874773502, + -0.0005947120953351259, + -0.022059086710214615, + -0.03011970780789852, + 0.00112355116289109, + 0.001780425081960857, + -0.0015642504440620542, + -0.023855283856391907, + 0.006999232340604067, + -0.003404981689527631, + 0.022162998095154762, + 0.0047205849550664425, + -0.040080439299345016, + -0.012929652817547321, + -0.0025254387874156237, + -0.001522500067949295, + 0.0018750594463199377, + -0.009982998482882977, + 0.015854040160775185, + 0.0028946984093636274, + -0.008587605319917202, + 0.03806157410144806, + -0.015082120895385742, + -0.0011949908221140504, + 0.015987642109394073, + 0.006728318054229021, + 0.00884738564491272, + -0.00600835494697094, + -0.01665564998984337, + -0.023499013856053352, + -0.020975429564714432, + -0.007040055003017187, + 0.0057745520025491714, + 0.014169177040457726, + 0.011229945346713066, + 0.00501376623287797, + -0.0023176143877208233, + -0.006164222955703735, + -0.013374990783631802, + 0.003664762480184436, + 0.0004580953100230545, + 0.0028984094969928265, + -0.01232102420181036, + 0.019119853153824806, + -0.015571992844343185, + 0.03396446257829666, + -0.008008665405213833, + 0.011608482338488102, + -5.923346179770306e-5, + 0.03295502811670303, + 0.0253694336861372, + 0.011103766039013863, + 0.013308190740644932, + 0.0025124498642981052, + 0.002809341996908188, + 0.008795429952442646, + -0.007912175729870796, + -0.0034643602557480335, + 0.0011383958626538515, + 0.01919407770037651, + -0.010012687183916569, + 0.011935064569115639, + -0.012484314851462841, + -0.0009138711029663682, + -0.02977828122675419, + -0.012350712902843952, + 0.016462668776512146, + -0.029169652611017227, + 0.018956562504172325, + -0.00519561255350709, + -0.013464058749377728, + 0.00631266925483942, + 0.003286224789917469, + -0.012491736561059952, + 0.013471481390297413, + -0.003705585142597556, + 0.006895320024341345, + 0.007414881139993668, + -0.005804241169244051, + 0.0029540767427533865, + -0.01724943332374096, + 0.005666928831487894, + 0.018540915101766586, + -0.022519268095493317, + 0.016700182110071182, + 0.020604314282536507, + -0.005477659869939089, + -0.005199323873966932, + -0.02654215693473816, + 0.005496216006577015, + -0.005065722391009331, + -0.01785806193947792, + -0.02170281484723091, + -0.005240146536380053, + 0.0025755392853170633, + -0.004609250463545322, + 0.0020151555072516203, + 0.008669250644743443, + 0.0001700171414995566, + -0.024270933121442795, + -0.008023509755730629, + -0.010428336448967457, + -0.0008257312583737075, + -0.019847240298986435, + -0.0008841819362714887, + 0.006776563357561827, + 0.015839194878935814, + 0.0012877696426585317, + -0.027358610183000565, + 0.001426010043360293, + -0.005733729340136051, + 0.0024011151399463415, + 0.009381791576743126, + 0.0016291956417262554, + 0.013679305091500282, + -1.5569441529805772e-5, + 0.009493126533925533, + -0.002391837304458022, + -0.02257864736020565, + -0.006386892404407263, + -0.012536270543932915, + -0.023528702557086945, + -0.00973063986748457, + -0.01680409535765648, + -0.02345447987318039, + 0.006873053032904863, + -0.00726643530651927, + -0.0011142733274027705, + -0.014993052929639816, + -0.012135466560721397, + -0.006275557447224855, + -0.02318727597594261, + 0.0024493602104485035, + 0.006216179113835096, + 0.007292413152754307, + 0.0027369745075702667, + -0.016789250075817108, + 0.017026765272021294, + 0.0023936929646879435, + 0.004624095279723406, + -0.012254223227500916, + 0.02241535671055317, + -0.019980840384960175, + -0.001209835521876812, + 0.015839194878935814, + 0.007047477178275585, + -0.0345582440495491, + 0.0020949451718479395, + 0.004813363775610924, + -0.010383802466094494, + -0.009040365926921368, + 0.011897952295839787, + 0.00015389682084787637, + 0.001780425081960857, + 0.010702962055802345, + 0.01122252270579338, + -0.030758025124669075, + 0.006435137242078781, + 0.00856533832848072, + -0.004746563266962767, + 0.014347312971949577, + 0.028575869277119637, + -0.006969543173909187, + -0.014629360288381577, + 0.008253601379692554, + -0.015854040160775185, + -0.0059823766350746155, + -0.010272468440234661, + 0.006984387524425983, + -0.007233034819364548, + 0.00812000036239624, + -0.02845711261034012, + -0.021198099479079247, + 0.01511923223733902, + 0.012914808467030525, + 0.03351912274956703, + -0.031648702919483185, + -0.022489579394459724, + 0.006372047588229179, + -0.0010038665495812893, + 0.03633959963917732, + -0.0014900274109095335, + -0.006223601754754782, + 0.0248053390532732, + 0.0006443487363867462, + 0.013159744441509247, + 0.005926709622144699, + -0.0058858864940702915, + -0.0038336198776960373, + -0.0026664624456316233, + 0.0023343143984675407, + 0.00755961611866951, + -0.012751517817378044, + -0.010168556123971939, + -0.007800841238349676, + 0.004609250463545322, + 0.002757385838776827, + 0.00206525600515306, + 0.0009825273882597685, + -0.015141499228775501, + 0.024582669138908386, + -0.012803473509848118, + 0.0014937386149540544, + 0.0032806582748889923, + -0.022934917360544205, + 0.0033196252770721912, + -0.02816022001206875, + -0.011808885261416435, + -0.009886507876217365, + 0.02081213891506195, + 0.011326435022056103, + 0.00774146243929863, + -0.0037037294823676348, + -0.015794662758708, + 0.0029689213261008263, + -0.02257864736020565, + 0.016180621460080147, + 0.0041156671941280365, + 0.010873674415051937, + 0.004713162779808044, + 0.011905374936759472, + 0.021732505410909653, + -0.019134698435664177, + 0.004624095279723406, + 0.014822340570390224, + 0.0165368914604187, + 0.009263034909963608, + 0.017056453973054886, + -0.005548171699047089, + -0.0054813711903989315, + -0.0040637110359966755, + 0.016729872673749924, + -0.013634772039949894, + -0.001255297102034092, + -0.03188621625304222, + -0.020975429564714432, + 0.007054899353533983, + -0.00950797088444233, + 0.005652084015309811, + -0.0067357406951487064, + 0.013464058749377728, + -0.017679927870631218, + 0.01624000072479248, + 0.002260091481730342, + 0.014042998664081097, + 0.0008141339058056474, + 0.005381170194596052, + -0.017041608691215515, + -0.01946127973496914, + -0.015705594792962074, + 0.011853419244289398, + -0.010977586731314659, + 0.011415502987802029, + -0.0007417664746753871, + -0.004546160809695721, + -0.050946690142154694, + -0.001310964347794652, + 0.003811352886259556, + 0.0024382267147302628, + -0.0014826051192358136, + -0.014807495288550854, + -0.003672184655442834, + -0.0026312065310776234, + -0.017204899340867996, + 0.011823729611933231, + 0.006487093400210142, + -0.010584204457700253, + -0.009916197508573532, + 0.003967221360653639, + 0.006082577630877495, + 0.006683784537017345, + 0.007054899353533983, + -0.032509688287973404, + 0.008409470319747925, + 0.008409470319747925, + 0.0021283456590026617, + -0.0034513710997998714, + 0.00937436893582344, + -0.018540915101766586, + -0.005106545053422451, + -0.001738674589432776, + 0.02050040289759636, + 0.0049803657457232475, + 0.00010107090201927349, + 0.003299213945865631, + -0.009715795516967773, + -0.00226751365698874, + -0.01874873787164688, + -0.006398025434464216, + 0.007288702297955751, + -0.006175356451421976, + 0.012365558184683323, + 0.008060622029006481, + 0.004275246988981962, + -0.0017080575926229358, + 0.020708227530121803, + -0.019669104367494583, + -0.024152176454663277, + -0.004078555852174759, + -0.014881718903779984, + -0.01526025589555502, + -0.006368336267769337, + -0.009567349217832088, + -0.007292413152754307, + 0.007734040264040232, + 0.001001083175651729, + -0.002041133586317301, + -0.013686727732419968, + 0.00016108718409668654, + 0.021346544846892357, + 0.009032943286001682, + 0.00028761426801793277, + 0.014480913989245892, + 0.019075321033596992, + 0.016744716092944145, + -0.032836269587278366, + -0.002518016379326582, + 0.010895941406488419, + 0.0036517733242362738, + -0.006932431366294622, + 0.026512468233704567, + -0.003807641798630357, + -0.0047725411131978035, + 0.01149714831262827, + 0.0022693693172186613, + 0.000613731739576906, + 0.008595027960836887, + 0.01520087756216526, + 0.01711583137512207, + -0.02729923278093338, + 0.0007640333496965468, + -0.010955319739878178, + 0.009574771858751774, + -0.00862471666187048, + 0.0061456672847270966, + -0.0061382451094686985, + 0.014644204638898373, + -0.023988885805010796, + 0.0031099452171474695, + -0.027417989447712898, + 0.0034643602557480335, + -0.029555613175034523, + -0.013590238057076931, + 0.004182468168437481, + 0.012499159201979637, + -8.576239633839577e-5, + 0.00810515508055687, + -0.002248957986012101, + -0.004590694792568684, + 0.012944497168064117, + 0.0027759415097534657, + 0.0006067733047530055, + 0.003768674563616514, + 0.019832395017147064, + 0.012758939526975155, + 0.0036833181511610746, + 0.020248044282197952, + -0.017590859904885292, + -0.028679780662059784, + 0.015319634228944778, + 0.0023732816334813833, + 0.00449420465156436, + -0.004048866685479879, + 0.015453236177563667, + -0.0005761563079431653, + -0.014562559314072132, + 0.0091516999527812, + -0.008112577721476555, + -0.007188500836491585, + -0.008698939345777035, + 0.022103620693087578, + 0.002690585097298026, + -0.009923620149493217, + 0.008676673285663128, + -0.003000466153025627, + -0.008891919627785683, + -0.012358135543763638, + -0.005889597814530134, + -0.007270146161317825, + 0.01726427860558033, + 0.00036346091656014323, + 0.011370969004929066, + 0.0010242778807878494, + -0.005915576126426458, + -0.0064314259216189384, + 0.013085520826280117, + 0.010547093115746975, + -0.014005886390805244, + -0.007077166344970465, + -0.014525447972118855, + -0.00921107828617096, + -0.008275868371129036, + -0.0029392321594059467, + 0.019223766401410103, + -0.010005265474319458, + 0.0366067998111248, + 0.0004267824406269938, + -0.009567349217832088, + -0.008275868371129036, + -0.009663838893175125, + -0.0028241865802556276, + 0.013827751390635967, + -0.007284990977495909, + -0.005010054912418127, + 0.00774146243929863, + 0.01932767778635025, + 0.0034959050826728344, + -0.016611116006970406, + -0.007830530405044556, + 0.002677595941349864, + 0.0032936471980065107, + -0.023127898573875427, + 0.01592826284468174, + -0.0011486015282571316, + 0.003260246943682432, + 0.006234734784811735, + 0.002649762434884906, + -0.00042121572187170386, + 0.023677147924900055, + -0.009864241816103458, + -0.011177988722920418, + -0.0028594424948096275, + -0.020010530948638916, + 0.01437700167298317, + 0.008112577721476555, + -0.008364936336874962, + -0.021138720214366913, + 0.001888048485852778, + 8.118144614854828e-5, + 0.0017433135071769357, + -0.016997074708342552, + 0.006257001776248217, + 0.011229945346713066, + -0.014325045980513096, + 0.00973063986748457, + 0.011979597620666027, + -0.010747495107352734, + 0.026883583515882492, + -0.0200699083507061, + -0.01364961639046669, + -0.021361390128731728, + 0.005744862835854292, + -0.008825118653476238, + -0.01919407770037651, + -0.010346691124141216, + -0.011868263594806194, + -0.006657806225121021, + 0.012283911928534508, + 0.008528226986527443, + 0.008335246704518795, + 0.018347933888435364, + -0.010086910799145699, + 0.025933528319001198, + 0.021880950778722763, + -0.003477349178865552, + 0.016136087477207184, + 0.010940475389361382, + -0.013419524766504765, + -0.008068043738603592, + -0.012372979894280434, + -0.004304936155676842, + 0.0025198720395565033, + -0.004000621847808361, + -0.003265813458710909, + -0.017620548605918884, + -0.014866873621940613, + 0.009975575841963291, + 0.002037422265857458, + 0.01099985372275114, + 0.023944351822137833, + 0.004638939630240202, + 0.01157879363745451, + -0.017887752503156662, + -0.0017238300060853362, + -0.0009565493674017489, + -0.014035576023161411, + -0.007949287071824074, + 0.016774406656622887, + -0.0057745520025491714, + 0.014814917929470539, + 0.004334625322371721, + 0.0014853884931653738, + 0.020337112247943878, + -0.008068043738603592, + -0.0016486791428178549, + 0.0006981604383327067, + 0.019669104367494583, + -0.00981228519231081, + 0.01606186479330063, + 0.009559926576912403, + 0.023127898573875427, + 0.002447504550218582, + 0.0021543235052376986, + 0.010138866491615772, + -0.008350091055035591, + 0.00208566733635962, + 0.005080566741526127, + -0.0037352743092924356, + 0.03152994439005852, + 0.006654095370322466, + -0.0015030164504423738, + -0.002562550362199545, + 0.010985009372234344, + -0.0005061083356849849, + 0.007322102319449186, + 0.008283291012048721, + -0.004746563266962767, + 0.009300146251916885, + 0.01726427860558033, + -0.015148921869695187, + -0.00820164568722248, + -0.013887129724025726, + -0.00741859246045351, + 0.0005627034115605056, + -0.003347459016367793, + -0.014740695245563984, + -0.01594310812652111, + -0.003993199206888676, + 0.004345758818089962, + 0.0010734506649896502, + -0.0016922851791605353, + 0.002510594204068184, + -0.018095575273036957, + -0.011675283312797546, + 0.03096584975719452, + -0.0029633548110723495, + -0.0012961197644472122, + 0.027417989447712898, + -0.00011864088446600363, + 0.008001243695616722, + 0.004501627292484045, + -0.02419671043753624, + -0.007949287071824074, + 0.0002665070933289826, + 0.02639371156692505, + 0.0011523126158863306, + 0.011771772988140583, + -0.011511992663145065, + -0.013916819356381893, + -0.0028817092534154654, + -0.018704205751419067, + -0.0005868258886039257, + 0.006780274212360382, + -0.03720058500766754, + -0.01136354636400938, + 0.005321791861206293, + 0.021153565496206284, + -0.00908489990979433, + 0.0017581582069396973, + 0.006821096874773502, + 0.0013434368884190917, + -0.01871904917061329, + 0.0003653164894785732, + -0.022014552727341652, + -0.01364961639046669, + 0.0017999085830524564, + 0.0037705302238464355, + -0.009582193568348885, + -0.004594406113028526, + 0.027477366849780083, + -0.00609000027179718, + 0.00022232119226828218, + 0.004468226805329323, + -0.009931041859090328, + -0.021628592163324356, + 0.01503758691251278, + -0.003653628984466195, + 0.004223290830850601, + -0.01379064004868269, + 0.001248802524060011, + -0.010465447790920734, + 0.0006949131493456662, + 0.0010966453701257706, + 0.0003843361628241837, + 0.02673513814806938, + 0.0013443647185340524, + -0.009975575841963291, + 0.0016394013073295355, + 0.009760329499840736, + 0.02198486402630806, + 0.02259349264204502, + -0.0033808592706918716, + 0.0073035466484725475, + -0.0032528245355933905, + 0.005778263323009014, + 0.01202413160353899, + 0.016759561374783516, + -0.0044274041429162025, + 0.017798684537410736, + 0.02701718546450138, + 0.028516490012407303, + -0.0010725228348746896, + -0.006758007220923901, + -0.010561938397586346, + -0.0050842780619859695, + -0.009329835884273052, + 0.0033289031125605106, + -0.02315758727490902, + -0.006921297870576382, + 0.00019703897123690695, + -0.007615283597260714, + -0.02168797142803669, + -0.04201023653149605, + 0.006386892404407263, + -0.005618683993816376, + -0.004798519425094128, + 0.01262533850967884, + 0.013182011432945728, + 0.012796050868928432, + -0.0025773949455469847, + -0.015215721912682056, + -0.002117212163284421, + -0.011912797577679157, + 0.009708372876048088, + -0.019995685666799545, + -0.005425703711807728, + -0.010161133483052254, + -0.009263034909963608, + 0.004089689347893, + 0.02609681896865368, + 0.000313824275508523, + 0.01797681860625744, + -0.020040219649672508, + -0.032390933483839035, + 0.024835027754306793, + 0.0067431628704071045, + -0.00981228519231081, + -0.01025762315839529, + -0.011712394654750824, + 0.004119378514587879, + 0.005021188408136368, + -0.004683473613113165, + -0.007830530405044556, + 0.008030932396650314, + 0.0018128976225852966, + -0.0005121389403939247, + -0.004902431275695562, + 0.0014649771619588137, + 0.01799166388809681, + 0.004097111523151398, + 0.01873389445245266, + -0.004078555852174759, + 0.01010917779058218, + -0.0053774588741362095, + 0.002547705778852105, + -0.004969232250005007, + 0.012899963185191154, + 0.005154789891093969, + -0.009864241816103458, + 0.029154809191823006, + 0.026527313515543938, + -0.0027276966720819473, + 0.01304840948432684, + 0.00781568605452776, + -0.026794515550136566, + 0.023959195241332054, + -0.018540915101766586, + -0.003692595986649394, + -0.009582193568348885, + 0.014221133664250374, + 0.014035576023161411, + 0.002892842749133706, + 0.002781508257612586, + -0.0008595955441705883, + 0.012573381885886192, + -0.0012803473509848118, + -0.01223937887698412, + -0.003956087864935398, + 0.007771151605993509, + 0.016937697306275368, + 0.016432980075478554, + -0.00876574032008648, + 0.0071996343322098255, + -0.01622515544295311, + 0.009945887140929699, + -0.013115210458636284, + -0.025592101737856865, + -0.004583272617310286, + -0.019683949649333954, + 0.0017321801278740168, + -0.02477564848959446, + 0.0019242322305217385, + -0.0068990313448011875, + 0.008097733370959759, + -0.013033565133810043, + 0.016744716092944145, + 0.022519268095493317, + -0.014584826305508614, + -0.02038164623081684, + 0.01122252270579338, + 0.01099243201315403, + -0.0013935375027358532, + -0.029154809191823006, + -0.0026850183494389057, + 0.007927020080387592, + -0.004590694792568684, + -0.00723674613982439, + -0.003314058529213071, + -0.011014698073267937, + 0.013033565133810043, + -0.001992888515815139, + 0.010279890149831772, + 0.009196233935654163, + 0.01061389409005642, + -0.012350712902843952, + 0.012001864612102509, + -0.021509835496544838, + -0.005882175639271736, + 0.004586983472108841, + 0.004067422356456518, + 0.0031136563047766685, + -0.0007348080398514867, + 0.015089543536305428, + 0.015215721912682056, + -0.020114442333579063, + 0.007555904798209667, + 0.03170808032155037, + 0.058784645050764084, + 0.028219597414135933, + -0.007581883110105991, + -0.008646983653306961, + 0.019283143803477287, + -0.04147583246231079, + 0.011630749329924583, + -0.007771151605993509, + -0.0306689590215683, + -0.018926873803138733, + -0.0009203656227327883, + -0.016715027391910553, + 0.01468131598085165, + 0.015171188861131668, + -0.012499159201979637, + 0.004913564771413803, + 0.00022730804630555212, + -0.020322266966104507, + -0.007281279657036066, + -9.39965175348334e-5, + 0.008364936336874962, + -0.0010029387194663286, + -0.022756783291697502, + -0.01727912202477455, + 0.026957806199789047, + -0.010153710842132568, + -0.015675904229283333, + -0.023573236539959908, + -0.02507254108786583, + -0.0012089076917618513, + 0.012254223227500916, + -0.024879561737179756, + -0.012157733552157879, + -0.011935064569115639, + -0.007374058477580547, + 0.0230388306081295, + 0.005091700237244368, + 0.012959342449903488, + -0.012157733552157879, + 0.0027796525973826647, + -0.006809963379055262, + -0.02539912238717079, + -0.002391837304458022, + -0.025636635720729828, + -0.03574581444263458, + 0.009611883200705051, + -0.0031860237941145897, + -0.02005506493151188, + -0.0048244972713291645, + 0.0005190973752178252, + 0.012224533595144749, + 0.012298757210373878, + -0.0027926417533308268, + -0.00035905392724089324, + -0.005763418506830931, + 0.023395100608468056, + 0.014406691305339336, + -0.007080877665430307, + -0.004408848471939564, + -0.024241242557764053, + -0.010509981773793697, + -0.0027035740204155445, + 0.008862229995429516, + 0.018362779170274734, + -0.012076088227331638, + 0.011274479329586029, + 0.007574460934847593, + 0.007533638272434473, + 0.020975429564714432, + -0.013812907040119171, + -0.005748574156314135, + -0.010183400474488735, + 0.0020559781696647406, + -0.01334530208259821, + -0.028679780662059784, + 0.0005116750253364444, + -0.022608336061239243, + -0.003974643535912037, + -0.01423597801476717, + 0.034320730715990067, + 0.00781568605452776, + -0.0012116910656914115, + 0.0006707906723022461, + -0.0008294424042105675, + -0.020708227530121803, + 0.0024085375480353832, + -0.0018416590755805373, + 0.009760329499840736, + -0.00944859255105257, + 0.014443802647292614, + -0.029837660491466522, + -0.005336636211723089, + -0.0068544973619282246, + 0.004000621847808361, + 0.007058610673993826, + -0.020025374367833138, + 0.005485082510858774, + 0.005477659869939089, + -0.011474881321191788, + -0.0009073765831999481, + -0.007121700327843428, + 0.010220511816442013, + 0.007986398413777351, + 0.004286380484700203, + -0.015304789878427982, + -0.03393477201461792, + -0.018036197870969772, + -0.009032943286001682, + 0.007426014635711908, + 0.019520658999681473, + -0.0036814624909311533, + 0.009619305841624737, + 0.00406000018119812, + 0.005010054912418127, + -0.0057225958444178104, + 0.021643437445163727, + -0.0019743328448385, + 0.013627349399030209, + 0.005963820964097977, + -0.002948509994894266, + -0.02845711261034012, + 0.02020351029932499, + 0.04076329246163368, + 0.005563016515225172, + 0.004457093309611082, + -0.009641571901738644, + 0.006420292425900698, + 0.009337257593870163, + -0.008869652636349201, + -0.007092011161148548, + 0.02168797142803669, + 0.0021469013299793005, + -0.017486946657299995, + 0.003007888561114669, + -0.024285776540637016, + -0.0060937111265957355, + 0.012632760219275951, + -0.02314274199306965, + 0.019817549735307693, + -0.006409158930182457, + -0.019594881683588028, + 0.0091516999527812, + 0.027996929362416267, + 0.0011949908221140504, + -0.011771772988140583, + 0.002785219345241785, + -0.008320402354001999, + 0.016032176092267036, + 0.02018866501748562, + -0.0008020726963877678, + 0.004074844531714916, + -0.005763418506830931, + 0.0038855758029967546, + 0.009515393525362015, + -0.006405448075383902, + 0.008602449670433998, + 0.0024567823857069016, + 0.03126274421811104, + -0.005113967228680849, + -0.00715510081499815, + -0.006709762383252382, + 0.0075039491057395935, + 0.015215721912682056, + 0.014050420373678207, + -0.013219122774899006, + -0.015468080528080463, + 0.007748885080218315, + 0.027922706678509712, + -0.016447825357317924, + -0.018080731853842735, + -0.026809360831975937, + 0.013196855783462524, + -0.0037222851533442736, + 0.011897952295839787, + 0.009359524585306644, + 0.012580804526805878, + -0.005952687468379736, + -0.0090106762945652, + -0.023350566625595093, + -0.007726618088781834, + -0.0006369264447130263, + 0.015379012562334538, + 0.008416892029345036, + -0.0014482770347967744, + 0.005447970703244209, + -0.004742851946502924, + -0.0005928564933128655, + 0.00936694722622633, + 0.020010530948638916, + -0.0034124040976166725, + -0.016358757391572, + 0.023068519309163094, + -0.012261645868420601, + -0.009203656576573849, + -0.0037779523991048336, + -0.009359524585306644, + 0.003382714930921793, + 0.012068665586411953, + -0.01860029250383377, + 0.003473638091236353, + -0.011601060628890991, + 0.002518016379326582, + -0.007121700327843428, + -0.01136354636400938 + ], + "135a0c63-420e-4970-a69a-f967e1e36a40": [ + -2.9037651984253898e-5, + -0.009167524054646492, + 0.00034244233393110335, + -0.010069144889712334, + -0.04370651766657829, + -0.025674112141132355, + 0.007925432175397873, + 0.036972738802433014, + -0.03313927724957466, + 0.019116872921586037, + 0.0030106552876532078, + 0.033290598541498184, + 0.014047622680664062, + 0.009583656676113605, + -0.02650637738406658, + 0.00732645345851779, + 0.009608876891434193, + 0.009085558354854584, + 0.00042243750067427754, + -0.028624869883060455, + 0.0482209250330925, + -0.0458502322435379, + 0.00013802120520267636, + 0.017628883942961693, + -0.014463755302131176, + -0.04678337648510933, + -0.006569848861545324, + 0.02379521168768406, + -0.011752589605748653, + 0.005986632779240608, + 0.026632478460669518, + 0.0010797376744449139, + 0.04776696115732193, + -0.03649355471134186, + -0.00815871823579073, + 0.003515058197081089, + 0.014968158677220345, + 0.012231772765517235, + -0.015018599107861519, + -0.021979359909892082, + -0.001987663097679615, + 0.005586263258010149, + 0.03692229837179184, + 0.02081923373043537, + -0.024034801870584488, + 0.05054117739200592, + 0.008360479027032852, + 0.0069670663215219975, + 0.01804501749575138, + -0.002356507582589984, + -0.010560937225818634, + 0.014892498031258583, + -0.01177780982106924, + -0.011361677199602127, + 0.011367982253432274, + -0.015850864350795746, + 0.006443748250603676, + 0.062142446637153625, + 0.00963409710675478, + -0.04748954251408577, + 0.0281456857919693, + 0.015712153166532516, + -0.011002290062606335, + -0.01786847598850727, + -0.04274815320968628, + -0.03291229531168938, + 0.02179020829498768, + -0.009299930185079575, + -0.06153716519474983, + -0.024211343377828598, + -0.005901515018194914, + 0.022912506014108658, + -0.04226896911859512, + -0.02373216114938259, + -0.0034488553646951914, + -0.029507573693990707, + 0.005330909043550491, + -0.010535717010498047, + 0.008625291287899017, + -0.011872385628521442, + -0.04004959762096405, + -0.01514469925314188, + 0.0041329520754516125, + -0.022332442924380302, + 0.07843466103076935, + -0.016203945502638817, + -0.02081923373043537, + -0.03160084784030914, + -0.025333639234304428, + 0.01863769069314003, + -0.0009087134967558086, + 0.0063933078199625015, + -0.009829552844166756, + 0.029179712757468224, + 0.01582564413547516, + -0.027363862842321396, + 0.025220150128006935, + 0.02127319574356079, + 0.00626405468210578, + -0.002923961030319333, + 0.03951997309923172, + 0.0381833054125309, + -0.057754140347242355, + -0.000435835710959509, + -0.027641283348202705, + -0.00034066903754137456, + 0.007093166932463646, + -0.019154703244566917, + -0.050137657672166824, + -0.006582458969205618, + 0.0029397236648947, + -0.024627475067973137, + 0.024551814422011375, + -0.023593449965119362, + -0.02930581383407116, + -0.04317689687013626, + 0.020869674161076546, + -0.030238958075642586, + 0.04352997615933418, + -0.0492045097053051, + 0.039646074175834656, + 0.011569743044674397, + -0.01149408333003521, + 0.03556041046977043, + -0.0019655954092741013, + -0.007364283781498671, + 0.004980979487299919, + -0.010333956219255924, + 0.006235681939870119, + -0.012540719471871853, + 0.012175027281045914, + 0.0011656438000500202, + 0.008530715480446815, + 0.053264956921339035, + 0.01706143096089363, + 0.01808284781873226, + 0.013101867400109768, + 0.0519535057246685, + -0.0032407892867922783, + 0.03465248644351959, + -0.046732936054468155, + -0.0438830591738224, + -0.0019592903554439545, + -0.007654315326362848, + 0.002392761642113328, + 0.009318845346570015, + -0.025510180741548538, + 0.015220359899103642, + -0.027288202196359634, + 0.036342233419418335, + -0.03934343159198761, + -0.04928017035126686, + 0.007332758512347937, + 0.006897710729390383, + 0.009470165707170963, + 0.005718668922781944, + -0.027187321335077286, + 0.0431012362241745, + -0.024551814422011375, + 0.021147094666957855, + -0.000629715621471405, + -0.05714885890483856, + 0.019999578595161438, + -9.245746332453564e-5, + 0.013492779806256294, + 0.013454949483275414, + 0.0067968303337693214, + 0.03659443557262421, + -0.02235766313970089, + 0.02867531031370163, + 0.022647693753242493, + -0.02688467875123024, + -0.030238958075642586, + -0.04453878477215767, + -0.010882494039833546, + 0.005630398169159889, + 0.04759042337536812, + -0.010542022064328194, + 0.032029587775468826, + -0.01384586188942194, + -0.016960550099611282, + -0.016973160207271576, + 0.0018536809366196394, + -0.029734555631875992, + -0.03271053358912468, + 0.0008764002122916281, + 0.001700783846899867, + 0.02284945547580719, + 0.016557028517127037, + -0.00861898623406887, + -0.001169584458693862, + -0.008436139672994614, + -0.01009436510503292, + -0.009344065561890602, + -0.031928710639476776, + -0.03760324418544769, + 0.021752377972006798, + 0.018688131123781204, + 0.013190138153731823, + 0.0030863157007843256, + -0.025951532647013664, + -0.06083099916577339, + -0.044664885848760605, + 0.044866643846035004, + -0.030945122241973877, + -0.0006210461724549532, + -0.01518252957612276, + -0.04867488890886307, + -0.010069144889712334, + 0.012017400935292244, + 0.04244551062583923, + -0.01283075101673603, + 0.006371240131556988, + -0.005951955448836088, + -0.005472772289067507, + 0.006891405675560236, + 0.00039327671402134, + 0.005375044420361519, + 0.004126647021621466, + 0.0002659937599673867, + -0.039923496544361115, + 0.002818351611495018, + 0.0109707647934556, + -0.04577457159757614, + -0.06864924728870392, + -0.020453540608286858, + -0.0033952626399695873, + 0.033568017184734344, + -0.04970891401171684, + 0.027742164209485054, + 0.04678337648510933, + -0.022155901417136192, + -0.005482229869812727, + -0.031752169132232666, + -0.0013634642818942666, + 0.06385742127895355, + 0.01881423220038414, + 0.03407242149114609, + 0.008221768774092197, + -0.02039049006998539, + 0.02688467875123024, + -0.010699648410081863, + 0.016557028517127037, + 0.019823037087917328, + 0.022761184722185135, + 0.00035978120286017656, + -0.008429834619164467, + -0.0033889575861394405, + 0.015485171228647232, + -0.004864336457103491, + -0.008253294043242931, + 0.02052920125424862, + 0.0310964435338974, + 0.014615076594054699, + -0.0084613598883152, + 0.0015644374070689082, + 0.01909165270626545, + -0.013505389913916588, + -0.013051426969468594, + 0.005393959581851959, + -0.021033603698015213, + -0.0034520078916102648, + 0.02081923373043537, + 0.007509299553930759, + 0.05679577589035034, + -0.005362434312701225, + 0.029255373403429985, + 0.004426136147230864, + -0.0010939239291474223, + 0.011651708744466305, + -0.020314829424023628, + 0.01824677735567093, + -0.01965910568833351, + -0.012288517318665981, + 0.01110947597771883, + 0.008745086379349232, + -0.02796914614737034, + 0.014905108138918877, + 0.015472561120986938, + -0.03001197800040245, + 0.01720014214515686, + -0.02832222729921341, + 0.010806834325194359, + 0.0787373036146164, + 0.006822050549089909, + 0.002551963785663247, + -0.014413314871490002, + -0.005321451462805271, + -0.04317689687013626, + 0.0023754227440804243, + -0.03278619423508644, + 0.020163509994745255, + 0.009905213490128517, + 0.009110778570175171, + 0.034274183213710785, + 0.022382883355021477, + -0.0025803365278989077, + -0.03550997003912926, + -0.017074041068553925, + -0.00018629414262250066, + -0.007118387147784233, + 0.020516591146588326, + 0.022735964506864548, + -0.01790630631148815, + 0.019848257303237915, + -0.01958344504237175, + 0.06405917555093765, + 0.02179020829498768, + -0.021311026066541672, + -0.002388032851740718, + 0.04070531949400902, + -0.017288412898778915, + -0.008656816557049751, + -0.02650637738406658, + 0.0009299929952248931, + 0.005166978109627962, + 0.018940331414341927, + -0.03656921535730362, + 0.013366678729653358, + -0.025144489482045174, + 0.012597464956343174, + 0.0037514972500503063, + -0.036014374345541, + -0.013391898944973946, + 0.038385067135095596, + -0.023114265874028206, + 0.023543009534478188, + -0.028801409527659416, + -0.006191546563059092, + -0.018751181662082672, + 0.006232529412955046, + -0.029078831896185875, + -0.04847312718629837, + -0.012742480263113976, + -0.012515499256551266, + -0.03117210417985916, + -0.03959563374519348, + -0.05689665675163269, + -0.007055336609482765, + -0.013366678729653358, + -0.024034801870584488, + -0.005075554829090834, + -0.0176162738353014, + -0.006468968465924263, + 0.015485171228647232, + -0.017364073544740677, + 0.02769172377884388, + -0.015220359899103642, + 0.0035434309393167496, + 0.027363862842321396, + 0.0005611483356915414, + -0.02474096603691578, + 0.05437464267015457, + 0.0002827415300998837, + 0.03682141751050949, + -0.01093293447047472, + 0.00036529809585772455, + -0.02407263219356537, + 0.0009197473409585655, + 0.0016661061672493815, + 0.02334124781191349, + -0.035434309393167496, + -0.021348856389522552, + 0.0015037513803690672, + 0.02373216114938259, + -0.005491687450557947, + -0.013328849337995052, + 0.020125679671764374, + 0.002744267461821437, + 0.029860656708478928, + -0.04249595105648041, + -0.0015865049790591002, + 0.00951430108398199, + -0.011304931715130806, + -0.021071434020996094, + -0.024400494992733, + 0.0196843259036541, + 0.0034236351493746042, + -0.03349235653877258, + 0.018524199724197388, + -0.03422374278306961, + 0.002627624198794365, + 0.018486369401216507, + -0.02306382730603218, + 0.02088228426873684, + 0.009129693731665611, + 0.014261994510889053, + -0.010308736003935337, + 0.03288707509636879, + 0.007635400164872408, + -0.0521552674472332, + -0.0053718918934464455, + -0.009243184700608253, + -0.002599251689389348, + -0.010523106902837753, + 0.02119753509759903, + 0.004580609500408173, + -0.009659317322075367, + -0.006777915172278881, + 0.005173283163458109, + 0.011784114874899387, + 0.006074903532862663, + 0.008278514258563519, + 0.0038933604955673218, + 0.03303839638829231, + -0.024551814422011375, + -0.010012399405241013, + -0.013971962966024876, + 0.012256992980837822, + -0.010661818087100983, + -0.005085012409836054, + 0.0059141251258552074, + 0.03538386896252632, + -0.0176162738353014, + -0.02039049006998539, + -0.0007897058967500925, + 0.02796914614737034, + 0.01242722850292921, + -0.01769193448126316, + -0.04405960068106651, + 0.022282002493739128, + 0.04965847358107567, + -0.012465058825910091, + -0.004694100469350815, + -0.03361845761537552, + 0.0342489629983902, + 0.00815871823579073, + 0.02839788794517517, + -0.031928710639476776, + 0.003114688443019986, + -0.0030059264972805977, + -0.015258190222084522, + 0.02527058869600296, + 0.01070595346391201, + 0.00817763339728117, + 0.011815640144050121, + 0.025510180741548538, + -0.02088228426873684, + -0.033820219337940216, + -0.04312645643949509, + -0.005885752383619547, + 0.013089257292449474, + 0.017288412898778915, + 0.0007676382665522397, + -0.009148608893156052, + 0.0008409343427047133, + -0.01110947597771883, + 0.009646707214415073, + 0.004277967847883701, + 0.01905382238328457, + 0.004054138902574778, + 0.03598915413022041, + 0.01859986037015915, + 0.029406694695353508, + 0.024652695283293724, + 0.010138499550521374, + -0.028599649667739868, + -0.0031556710600852966, + 0.004104579333215952, + -0.043151676654815674, + -0.008146108128130436, + -0.016935329884290695, + 0.017288412898778915, + -0.038132864981889725, + 0.015169919468462467, + -0.04458922520279884, + 0.007156217470765114, + 0.02877619117498398, + 0.0029854350723326206, + 0.005460162181407213, + -0.008675731718540192, + 0.04194111004471779, + -0.04226896911859512, + 0.0023628126364201307, + 0.025850653648376465, + 0.010384396649897099, + -0.013064037077128887, + 0.012187637388706207, + 0.02373216114938259, + 0.023984361439943314, + -0.005756499245762825, + -0.05356759577989578, + -0.03250877186655998, + 0.026027193292975426, + -0.009728672914206982, + -0.007452554069459438, + -0.011695844121277332, + -0.05876294896006584, + 0.020327439531683922, + -0.006998591590672731, + 0.04141148552298546, + 0.014589856378734112, + 0.010220465250313282, + -0.012294822372496128, + -0.00521111348643899, + -0.0006108005181886256, + 0.030087638646364212, + -0.03165128827095032, + -0.014325045049190521, + -0.022029800340533257, + 0.006651814561337233, + 0.002588217845186591, + -0.03291229531168938, + 0.0010025008814409375, + 0.0030815869104117155, + 0.028624869883060455, + -0.0759630873799324, + -0.024135682731866837, + 0.0056808385998010635, + 0.030592041090130806, + 0.01325318869203329, + -0.026027193292975426, + -0.019142093136906624, + 0.02064269222319126, + -0.003237636759877205, + 0.02786826528608799, + -0.03303839638829231, + 0.02456442452967167, + 0.02485445700585842, + 0.006645509507507086, + 0.005173283163458109, + -0.015598662197589874, + -0.012250687927007675, + 0.03341669589281082, + -0.005832159426063299, + -0.0054223318584263325, + -0.025611061602830887, + -0.014261994510889053, + -0.005570500623434782, + 0.005012504756450653, + 0.012729870155453682, + 0.0029539100360125303, + -0.020239170640707016, + -0.020541811361908913, + -0.004246442578732967, + -0.026304615661501884, + -0.023089047521352768, + -0.010088060051202774, + 0.00923057459294796, + 0.04713645949959755, + -0.01930602453649044, + 0.006415375508368015, + 0.015913914889097214, + -0.02993631735444069, + -0.01147516816854477, + 0.01796935684978962, + -0.019923917949199677, + 0.012509194202721119, + 0.004079359117895365, + 0.004631049931049347, + -0.029532793909311295, + 0.011449947953224182, + -0.016758788377046585, + 0.0006214402383193374, + 0.017502782866358757, + -0.017679324373602867, + 0.023946531116962433, + -0.034904684871435165, + -0.04320211708545685, + 0.0018158507300540805, + -0.01112839113920927, + -0.009060339070856571, + 0.008795526809990406, + -0.007351673673838377, + -0.0012129315873607993, + 0.016166115179657936, + -0.03583783283829689, + 0.011525608599185944, + 0.011632793582975864, + 0.02503099851310253, + 0.028725750744342804, + 0.008518105372786522, + 0.04988545551896095, + 0.00024609349202364683, + -0.005832159426063299, + -0.008921627886593342, + -0.01730102300643921, + -0.005075554829090834, + -0.013202748261392117, + -0.0011640675365924835, + 0.016645299270749092, + -0.015636492520570755, + 0.015535611659288406, + -0.012906411662697792, + 0.01842331886291504, + 0.015787813812494278, + -0.02920493297278881, + -0.03152518719434738, + -0.007149912416934967, + -0.0009126541553996503, + 0.0005004623089917004, + 0.03550997003912926, + 0.019419515505433083, + -0.007502994500100613, + -0.019293414428830147, + 0.016014793887734413, + 0.0005371103761717677, + 0.00923057459294796, + 0.004331560805439949, + 0.010661818087100983, + 0.01621655561029911, + 0.006481578573584557, + 0.02759084291756153, + 0.0022351357620209455, + -0.02172715775668621, + -0.0006706983549520373, + -0.019961748272180557, + -0.0027789452578872442, + -0.028019586578011513, + 0.00399424135684967, + -0.0006998591125011444, + 0.02930581383407116, + 0.014123283326625824, + -0.014451145194470882, + 0.00945755559951067, + 0.030718142166733742, + -0.0019687479361891747, + 0.030440719798207283, + -0.02162627875804901, + -0.01428721472620964, + 0.002482608426362276, + -0.03046594001352787, + 0.03371933847665787, + -0.017275802791118622, + 0.005992937833070755, + -0.0016834449488669634, + 0.013026206754148006, + -0.004593219608068466, + -0.00568714365363121, + -0.00631764717400074, + 0.018524199724197388, + 0.0022903047502040863, + 0.007011201698333025, + -0.028196126222610474, + 0.04166368767619133, + 0.00441352603957057, + -0.007862381637096405, + 0.02436266466975212, + -0.009394505992531776, + 0.023429518565535545, + -0.018902501091361046, + -0.0065635438077151775, + -0.027716943994164467, + 0.008751391433179379, + -0.026405496522784233, + 0.02723776176571846, + -0.007742585614323616, + 0.012357872910797596, + 0.019747376441955566, + -0.017717154696583748, + -0.038208525627851486, + -0.0011546099558472633, + 0.008650511503219604, + 0.01631743647158146, + 0.004520711954683065, + -0.017389293760061264, + 0.0012547024525702, + 0.013051426969468594, + -0.01089510414749384, + -0.0006588763790205121, + 0.003578108735382557, + -0.012465058825910091, + -0.007521909661591053, + 0.03533342853188515, + 0.001472226227633655, + 0.03530820831656456, + 0.0038082425016909838, + 7.309902866836637e-5, + 0.027262981981039047, + 0.016544418409466743, + 0.010289820842444897, + -0.015396901406347752, + 0.013908912427723408, + 0.014854667708277702, + 0.043504755944013596, + -0.005784871522337198, + 0.011935435235500336, + -0.03548474982380867, + 0.003370042424649, + -0.0032880769576877356, + 0.0017401903169229627, + -0.016342656686902046, + -0.03684663772583008, + 0.014804227277636528, + 0.00016560574294999242, + -0.009293625131249428, + -0.014589856378734112, + 0.023744771257042885, + 0.0010600343812257051, + -0.024942727759480476, + 0.007294928189367056, + 0.0014840482035651803, + 0.02186586894094944, + -0.01325318869203329, + -0.008625291287899017, + 0.024766186252236366, + -0.004848573822528124, + -0.0040856641717255116, + 0.04418570175766945, + -0.012616380117833614, + -0.025018388405442238, + 0.0006974947755225003, + -0.0027568775694817305, + 0.004296883009374142, + 0.012086756527423859, + 0.016733568161725998, + -0.01046005729585886, + 0.006960761267691851, + 0.010920324362814426, + -0.026935119181871414, + 0.03117210417985916, + 0.025434520095586777, + 0.008959458209574223, + 0.02231983281672001, + 0.024892287328839302, + 0.008026312105357647, + -0.013908912427723408, + 0.005583110731095076, + -0.008146108128130436, + 0.011506693437695503, + 0.0015597086166962981, + 0.03702317923307419, + -0.010888799093663692, + -0.027262981981039047, + -0.05447552353143692, + 0.01680922880768776, + 0.023782601580023766, + 0.01317752804607153, + -0.03709883987903595, + -0.0064248330891132355, + -0.0017922068946063519, + -0.014602466486394405, + 0.019570834934711456, + 0.010712258517742157, + -0.018902501091361046, + 0.0006312918849289417, + -0.01645614765584469, + 0.008644206449389458, + 0.04007481783628464, + -0.03253399208188057, + -0.027565622702240944, + 0.0021405601873993874, + 0.0019183076219633222, + -0.011771504767239094, + -0.002824656665325165, + -0.010743783786892891, + -0.0016976313199847937, + -0.00984216295182705, + -0.00800109189003706, + 0.03298795595765114, + 0.0010009246179834008, + -0.014350265264511108, + 0.02554801106452942, + 0.018965551629662514, + -0.01046005729585886, + -0.029078831896185875, + -0.006213614251464605, + 0.017767595127224922, + -0.009060339070856571, + 0.0330636166036129, + -0.015623882412910461, + 0.025850653648376465, + -0.0014202096499502659, + -0.008518105372786522, + -0.00861898623406887, + -0.01765410415828228, + -0.0205670315772295, + 0.023366468027234077, + 0.031222544610500336, + -0.005365586839616299, + 0.012332652695477009, + 0.015409511514008045, + 0.019242973998188972, + 0.021676719188690186, + -0.03054160065948963, + -0.02147495746612549, + 0.03389587998390198, + -0.009482775814831257, + -0.020327439531683922, + -0.004536474123597145, + -0.015813034027814865, + -0.046001553535461426, + 0.015888694673776627, + 0.005702906288206577, + 0.030617261305451393, + 0.00523948622867465, + 0.005315146408975124, + 0.013089257292449474, + -0.010062839835882187, + 0.002376999007537961, + -0.019432125613093376, + -0.006689644418656826, + -0.0041833920404314995, + -0.005759651772677898, + 0.019709546118974686, + -0.007250792812556028, + -0.005103927571326494, + -0.04910362884402275, + 0.033189717680215836, + 0.03432462364435196, + 0.012547024525702, + -0.008360479027032852, + 0.03349235653877258, + 0.05366847664117813, + 0.008278514258563519, + 0.022105460986495018, + 0.02505621872842312, + 0.03954519331455231, + 0.00357180368155241, + 0.006125343963503838, + -0.025321029126644135, + 0.011204050853848457, + -0.000954425020609051, + 0.00844244472682476, + -0.016065234318375587, + 0.02975977584719658, + -0.00018806743901222944, + 0.01859986037015915, + 0.020403100177645683, + 0.007238182704895735, + 0.011084255762398243, + 0.01912948302924633, + -0.004905318841338158, + 0.007458859123289585, + -0.04022613912820816, + -0.008253294043242931, + 0.00013703604054171592, + -0.004448203835636377, + 0.03402198106050491, + 0.017591053619980812, + 0.05361803621053696, + -0.004114036913961172, + -0.0020428320858627558, + 0.0184989795088768, + -0.02176498807966709, + 0.012263298034667969, + -0.01838548853993416, + -0.009381895884871483, + -0.03324015811085701, + 0.02786826528608799, + 0.00419284962117672, + -0.008486580103635788, + -0.05503036454319954, + 0.0060685984790325165, + 0.017149701714515686, + 0.007692145649343729, + 0.03351757675409317, + 0.011033815331757069, + 0.06078055873513222, + 0.021285805851221085, + -0.0024841846898198128, + -0.03064248152077198, + -0.011267101392149925, + 0.01706143096089363, + -0.016342656686902046, + 0.012111976742744446, + -0.012578549794852734, + 0.023076437413692474, + 0.031928710639476776, + 0.0013768625212833285, + 0.0021247975528240204, + 0.0011601268779486418, + -0.034551605582237244, + -0.03177738934755325, + 0.012729870155453682, + 0.00378617481328547, + -0.02877619117498398, + 0.017351463437080383, + -0.004331560805439949, + 0.006897710729390383, + -0.020201340317726135, + 0.01645614765584469, + -0.004259052686393261, + 0.021071434020996094, + -0.00631764717400074, + -0.01954561658203602, + -0.02751518227159977, + -0.009753893129527569, + -0.023505179211497307, + -0.0027616063598543406, + 0.015813034027814865, + 0.039015572518110275, + 0.021386686712503433, + 0.014413314871490002, + -0.048422686755657196, + 0.0016069964040070772, + 0.0219415295869112, + -0.003556041046977043, + -0.04219330847263336, + -0.019646495580673218, + 0.02259725332260132, + -0.0009402387076988816, + -0.0362161360681057, + -0.015964355319738388, + -0.016342656686902046, + -0.04075575992465019, + 0.002744267461821437, + 0.015106869861483574, + 0.01237048301845789, + 0.015270800329744816, + -0.004088816698640585, + -0.040100038051605225, + -0.005567348096519709, + -0.013013596646487713, + -0.020857064053416252, + -0.0312982052564621, + 0.02320253662765026, + 0.020516591146588326, + -0.0021768142469227314, + 0.05225614830851555, + 0.01934385485947132, + 0.001992391888052225, + -0.04728778079152107, + 0.0013477017637342215, + 0.05260923132300377, + -0.006746389903128147, + 0.00032451239530928433, + -0.010403311811387539, + 0.0010568818543106318, + 0.010062839835882187, + 0.013354068621993065, + -0.007332758512347937, + -0.015560831874608994, + 0.028372667729854584, + -0.034274183213710785, + -0.014123283326625824, + 0.005305688828229904, + -0.026304615661501884, + 0.0036600742023438215, + 0.03674575686454773, + -0.018448539078235626, + 0.0067653050646185875, + 0.013227968476712704, + -0.027893485501408577, + 0.034450724720954895, + -0.011424727737903595, + 0.010958154685795307, + 0.004170782398432493, + -0.023227756842970848, + -0.00886488240212202, + -0.005305688828229904, + -0.030062418431043625, + 0.01674617826938629, + 0.008511800318956375, + 0.009665622375905514, + -0.006421680562198162, + -0.026909898966550827, + 0.044135261327028275, + 0.014993378892540932, + -0.000911866023670882, + 0.02049137093126774, + 0.03447594493627548, + -0.008902712725102901, + -0.00252359127625823, + 0.03566129133105278, + 0.032584432512521744, + 0.00025436884607188404, + 0.006866185460239649, + -0.00632710475474596, + -0.01680922880768776, + 0.006371240131556988, + -0.009930433705449104, + -0.003530820831656456, + 0.00026126496959477663, + -0.031323425471782684, + -0.009444945491850376, + -0.046001553535461426, + 0.031676508486270905, + -0.012963157147169113, + 0.008871187455952168, + -0.004482881631702185, + -0.008555935695767403, + 0.04141148552298546, + 0.02520754002034664, + -0.0013760743895545602, + -0.007030116394162178, + -0.028826629742980003, + -0.0015250309370458126, + -0.0038902079686522484, + 0.0013547949492931366, + 0.03583783283829689, + 0.026052413508296013, + 0.004129799548536539, + -0.024829236790537834, + -0.0017591053619980812, + -0.0033038395922631025, + 0.011557132937014103, + 0.0130388168618083, + 0.039746955037117004, + 0.013555830344557762, + -0.019154703244566917, + -0.03361845761537552, + -0.005321451462805271, + 0.005715516395866871, + 0.03656921535730362, + 0.015951745212078094, + -0.02955801412463188, + -0.02127319574356079, + -0.007887601852416992, + -0.025497570633888245, + -0.009186439216136932, + 0.015712153166532516, + -0.01737668365240097, + 0.04040268063545227, + 0.009426030330359936, + 0.000569029594771564, + -0.030440719798207283, + 0.008921627886593342, + 0.031853049993515015, + 0.010598767548799515, + -0.012256992980837822, + -0.022055020555853844, + -0.025522790849208832, + -0.011670623905956745, + 0.007332758512347937, + 0.02576238289475441, + 0.012710954993963242, + -0.06385742127895355, + -0.039570413529872894, + 0.023227756842970848, + -0.006450053304433823, + -0.025737162679433823, + -0.002739538671448827, + -0.034274183213710785, + 0.011159916408360004, + 0.009331455454230309, + 0.0041833920404314995, + -0.005157520528882742, + 0.005989785306155682, + 0.018625080585479736, + -0.013744981028139591, + -0.004946301691234112, + 0.02235766313970089, + -0.002036527032032609, + 0.0013209052849560976, + -0.026279395446181297, + 0.0088081369176507, + -0.04375695809721947, + -0.0038145475555211306, + 0.001855257200077176, + 0.035787392407655716, + -0.004728777799755335, + -0.004823353607207537, + 0.0023092199116945267, + 0.006437443196773529, + -0.005803786683827639, + 0.001440701074898243, + -0.00945755559951067, + -0.029734555631875992, + -0.012862276285886765, + 0.0369979590177536, + 0.008083057589828968, + 0.020377879962325096, + -0.003647464094683528, + -0.010031314566731453, + 0.014375485479831696, + 0.019570834934711456, + -0.012219162657856941, + -0.01398457307368517, + 0.013341458514332771, + -0.001615665853023529, + -0.03091990388929844, + 0.02418612316250801, + -0.033996760845184326, + -0.005277316085994244, + -0.02259725332260132, + 0.007761500775814056, + 0.01160126831382513, + -0.016103064641356468, + -0.007862381637096405, + -0.003710514400154352, + 0.012616380117833614, + 0.008455054834485054, + 0.02414829283952713, + 0.031046003103256226, + 0.02418612316250801, + -0.006355477496981621, + 0.017591053619980812, + 0.014728567562997341, + -0.007433638907968998, + -0.019911307841539383, + -1.7893005860969424e-5, + 0.0019703241996467113, + 0.007402113638818264, + -0.004218069836497307, + -0.005173283163458109, + 0.0035686511546373367, + 0.02751518227159977, + -0.0011908638989552855, + 0.03165128827095032, + -0.022874675691127777, + 0.012893801555037498, + -0.003842920297756791, + 0.029104052111506462, + -0.03924255073070526, + 0.020579641684889793, + -0.0018316133646294475, + 0.019280804321169853, + -0.009722367860376835, + 0.002827809192240238, + -0.020794013515114784, + -0.02625417523086071, + 0.01962127536535263, + 0.006169478874653578, + 0.022735964506864548, + 0.0011609150096774101, + 0.016910109668970108, + -0.03366889804601669, + -0.017490172758698463, + 0.01846114918589592, + 0.029104052111506462, + 0.0029570625629276037, + 0.009659317322075367, + 0.00168029242195189, + 0.008990983478724957, + 0.00842352956533432, + 0.00336058484390378, + -0.0015203021466732025, + -0.009621486999094486, + 0.018486369401216507, + 0.017893696203827858, + 0.0012373635545372963, + -0.009703452698886395, + -0.002849876880645752, + 0.009217964485287666, + 0.006513103377074003, + -0.007023811340332031, + 0.02151278778910637, + 0.007427333854138851, + 0.024060022085905075, + 0.018171116709709167, + -0.01909165270626545, + 0.014413314871490002, + 0.001131754252128303, + -0.03334103897213936, + -0.00943864043802023, + -0.01216241717338562, + 0.005734431557357311, + -0.03742670267820358, + 0.02576238289475441, + 0.0034267876762896776, + -0.001276770024560392, + -0.0036348539870232344, + 0.01667051948606968, + 0.007767805829644203, + 0.004728777799755335, + -0.017767595127224922, + -0.03654399514198303, + 0.02885184995830059, + -0.025396689772605896, + 0.004933691583573818, + -0.02566150203347206, + 0.028801409527659416, + 0.0055263652466237545, + -0.010869883932173252, + 0.003130451077595353, + -0.03190349042415619, + -0.005088164936751127, + 0.014526805840432644, + -0.018662910908460617, + -0.031575627624988556, + -0.037401482462882996, + 0.01005653478205204, + 0.00014738024037797004, + -0.019596055150032043, + -0.001839494681917131, + 0.035610850900411606, + 0.020869674161076546, + 0.0130388168618083, + 0.01983564719557762, + -0.000911866023670882, + -0.0028215041384100914, + -0.012862276285886765, + 0.0196843259036541, + -0.014299824833869934, + 0.015598662197589874, + -0.030945122241973877, + -0.010378091596066952, + -0.009047728963196278, + 0.009362980723381042, + 0.038309406489133835, + 0.0025819127913564444, + -0.01895294152200222, + 0.0037987849209457636, + -0.004517559427767992, + -0.01277400553226471, + -0.016380487009882927, + -0.00527416355907917, + 0.010920324362814426, + -0.004870641510933638, + -0.021878479048609734, + -0.0271621011197567, + -0.01940690539777279, + -0.029280593618750572, + 0.005513755138963461, + 0.009110778570175171, + -0.008726171217858791, + -0.013190138153731823, + 0.015623882412910461, + 0.009016203694045544, + -0.00921165943145752, + 0.03825896605849266, + 0.0008369936840608716, + -0.030768582597374916, + -0.00795065239071846, + -0.013391898944973946, + -0.028347447514533997, + -0.0029807062819600105, + 0.014261994510889053, + -0.018839452415704727, + -0.02288728579878807, + 0.03172694891691208, + -0.016733568161725998, + -0.01198587566614151, + -0.016090454533696175, + 0.013669321313500404, + -0.010270905680954456, + 0.002525167539715767, + -0.007975872606039047, + 7.078389899106696e-5, + 0.022168511524796486, + 0.027086440473794937, + 0.012168722227215767, + 0.005702906288206577, + 0.013959352858364582, + -0.03772934153676033, + -0.01402240339666605, + 0.032130468636751175, + 0.020794013515114784, + -0.01765410415828228, + -0.0009512724936939776, + 0.015220359899103642, + -0.00521111348643899, + 0.0035686511546373367, + 0.009344065561890602, + -0.020831843838095665, + 0.0005997666739858687, + -0.03298795595765114, + -0.009816942736506462, + 0.00951430108398199, + -0.004445051308721304, + -0.0033889575861394405, + 0.026859458535909653, + -0.02534624934196472, + 0.02182803861796856, + 0.013341458514332771, + 0.006298732478171587, + -0.005100775044411421, + 0.01772976480424404, + 0.008417224511504173, + -0.0130388168618083, + 0.006916625890880823, + -0.00015673929010517895, + 0.005904667545109987, + 0.02580021321773529, + -0.002146865241229534, + -0.022231562063097954, + 0.013757591135799885, + -0.0062230718322098255, + 0.013152307830750942, + -0.053264956921339035, + 0.008637901395559311, + -0.00882705207914114, + -0.007666925434023142, + -0.01912948302924633, + -0.013240578584372997, + 0.010926629416644573, + -0.010769004002213478, + 0.005538975354284048, + 0.013921522535383701, + -0.0216514989733696, + 0.009426030330359936, + -0.002578760264441371, + 0.019873477518558502, + -0.02231983281672001, + 0.02200458012521267, + -0.0033795000053942204, + -0.028019586578011513, + -0.004309493117034435, + -0.01189760584384203, + 0.00817763339728117, + 0.03389587998390198, + 0.02115970477461815, + -0.025043608620762825, + -0.008896407671272755, + 0.016292216256260872, + 0.02759084291756153, + 0.01863769069314003, + -0.0023754227440804243, + -0.014009793289005756, + 0.011979570612311363, + -0.0079695675522089, + 0.02839788794517517, + -0.012692039832472801, + -0.012868581339716911, + -0.008883797563612461, + -0.0235177893191576, + 0.0034141778014600277, + -7.807409565430135e-5, + 0.022483762353658676, + -0.004476576577872038, + 0.01832243800163269, + -0.022824235260486603, + -0.013429729267954826, + -0.014312434941530228, + 0.01384586188942194, + -0.009318845346570015, + 0.0005678473971784115, + -0.0014903531409800053, + -0.011323846876621246, + 0.009161219000816345, + 0.007080556824803352, + 0.00029811004060320556, + -0.002354931551963091, + 0.022647693753242493, + 0.008858577348291874, + 0.006248292047530413, + -0.03046594001352787, + -0.00967192742973566, + -0.0004744540492538363, + 0.0255858413875103, + 0.015296020545065403, + 0.007011201698333025, + 0.003987936303019524, + -0.005025114864110947, + 0.017780205234885216, + 0.01804501749575138, + -0.0023643888998776674, + 0.01580042392015457, + 0.0045396266505122185, + -0.016859669238328934, + 0.009627792052924633, + -0.015031209215521812, + 0.0019120025681331754, + 0.013820641674101353, + 0.007622790057212114, + -0.009161219000816345, + 0.018271997570991516, + -0.01590130478143692, + -0.0166326891630888, + -0.0027663351502269506, + -0.013064037077128887, + -0.00021121875033713877, + 0.005602025426924229, + 0.00040943335625343025, + -0.012849666178226471, + -0.008064142428338528, + -0.012313737533986568, + 0.012446143664419651, + -0.017528003081679344, + 0.009936738759279251, + 0.007055336609482765, + -0.0020712048280984163, + -0.007313843350857496, + 0.0004299247229937464, + -0.01398457307368517, + -0.004864336457103491, + -0.006784220226109028, + 0.01698577031493187, + -0.010901409201323986, + -0.0067968303337693214, + -0.016191335394978523, + -0.023568229749798775, + 0.02162627875804901, + 0.0016944787930697203, + 0.02580021321773529, + -0.002775792730972171, + -0.002542506204918027, + 0.007219267543405294, + 0.006954456213861704, + 0.0117588946595788, + 0.04292469471693039, + -0.02731342241168022, + -0.008366784080862999, + -0.018259387463331223, + 0.004902166314423084, + 0.005948802921921015, + 0.02208024077117443, + -0.008499190211296082, + 0.001613301457837224, + 0.021563228219747543, + 0.028826629742980003, + 0.026909898966550827, + 0.010195245034992695, + 0.00523948622867465, + -0.014413314871490002, + -0.019116872921586037, + 0.008360479027032852, + 0.002027069451287389, + 0.006790525279939175, + 0.019608665257692337, + -0.001219236641190946, + 0.013833251781761646, + -0.013429729267954826, + 0.020264388993382454, + -0.039015572518110275, + -0.017086651176214218, + -0.015081649646162987, + -0.019709546118974686, + 0.002764758886769414, + -0.02389609068632126, + 0.009331455454230309, + 0.010939239524304867, + 0.024942727759480476, + -0.03631701320409775, + -0.015081649646162987, + -0.017591053619980812, + 0.009199049323797226, + -0.008858577348291874, + -0.0031572473235428333, + -0.007427333854138851, + -0.016191335394978523, + 0.017855865880846977, + 0.005936192814260721, + 0.004050986375659704, + -0.0016062082722783089, + -0.016784008592367172, + -0.0009646707330830395, + -0.00420230720192194, + -0.04975935444235802, + -0.02867531031370163, + -0.02245854213833809, + 0.011790419928729534, + 0.004753998015075922, + 0.011910215020179749, + -0.015270800329744816, + -0.008152413181960583, + 0.009646707214415073, + 0.01674617826938629, + 0.0038933604955673218, + 0.017263192683458328, + -0.010769004002213478, + 0.010863578878343105, + -0.033366259187459946, + 0.032407891005277634, + -0.027111660689115524, + 0.01881423220038414, + -0.03245833143591881, + 0.009640402160584927, + 0.024350054562091827, + 0.03099556267261505, + -0.004082511644810438, + 0.01235156785696745, + -0.015964355319738388, + -0.0002051107439910993, + -0.00273796240799129, + -0.05142388492822647, + -0.029810216277837753, + -0.00926840491592884, + 0.01891511119902134, + -0.023807821795344353, + -0.010062839835882187, + -0.011903910897672176, + 0.007944347336888313, + 0.024476155638694763, + -0.006412222981452942, + 0.018347658216953278, + -0.03949475288391113, + 0.0024447781033813953, + 0.00821546372026205, + -0.016380487009882927, + -0.01962127536535263, + 0.005040877498686314, + -0.015964355319738388, + -0.023845650255680084, + -0.01119774580001831, + 0.03909123316407204, + -0.014325045049190521, + -0.017187532037496567, + -0.02113448455929756, + -0.008492885157465935, + 0.04569891095161438, + -0.02920493297278881, + 0.032584432512521744, + 0.0014588279882445931, + 0.01072486862540245, + -0.002265084767714143, + 0.01042222697287798, + -0.024097852408885956, + 0.020932724699378014, + -0.009608876891434193, + -0.04022613912820816, + -0.0391668900847435, + 0.007112082093954086, + -0.013480169698596, + 0.028095245361328125, + 0.028297007083892822, + 0.01173997949808836, + -0.03162606805562973, + 0.03747714310884476, + -0.021714547649025917, + -0.012698344886302948, + 0.023114265874028206, + -0.0004129799490328878, + 0.013341458514332771, + -0.025119269266724586, + 0.0028467243537306786, + 0.02731342241168022, + -0.012874886393547058, + 0.014236774295568466, + -0.0035056008491665125, + -0.000461449904832989, + -0.004407220985740423, + 0.021084044128656387, + -0.027111660689115524, + -0.01260377001017332, + 0.00963409710675478, + -0.005781718995422125, + 0.008303734473884106, + -0.023543009534478188, + -0.00712469220161438, + 0.003477228106930852, + -0.023328637704253197, + 0.004668880254030228, + -0.010661818087100983, + 0.010327651165425777, + 0.000638385012280196, + 0.01635526679456234, + -0.01607784442603588, + -0.008776611648499966, + -0.0010584581177681684, + -0.01091401930898428, + 0.011077950708568096, + 0.028347447514533997, + -0.007874991744756699, + -0.010352871380746365, + 0.023013386875391006, + -0.0007388715748675168, + 0.0016046320088207722, + -0.013328849337995052, + -0.0019813580438494682, + 0.020932724699378014, + -0.022799015045166016, + -0.014350265264511108, + 0.01737668365240097, + 0.030592041090130806, + -0.0005643008626066148, + -0.011840860359370708, + -0.011645403690636158, + -0.03119732439517975, + -0.0013973539462313056, + 4.39135983469896e-5, + -0.004905318841338158, + 0.003987936303019524, + 0.021563228219747543, + -0.004050986375659704, + -0.0036852944176644087, + 0.0008992559742182493, + 0.022761184722185135, + -0.017036210745573044, + -0.0030752818565815687, + -0.015913914889097214, + -0.018839452415704727, + 0.008209158666431904, + 0.003701056819409132, + -0.002632352989166975, + 0.005718668922781944, + -0.003987936303019524, + -0.009331455454230309, + 0.01252810936421156, + -0.004003698471933603, + 0.006859880406409502, + 0.026909898966550827, + 0.007660620380192995, + 0.0024810321629047394, + -0.004306340590119362, + -0.016657909378409386, + -0.0008393580792471766, + -0.003275466850027442, + -0.010308736003935337, + 0.01514469925314188, + 0.004593219608068466, + 0.015913914889097214, + -0.01300098653882742, + -0.016897499561309814, + 0.00608120858669281, + 0.007502994500100613, + -0.006708559580147266, + 0.011059035547077656, + -0.005715516395866871, + 0.007219267543405294, + -0.002578760264441371, + 0.061335403472185135, + 0.0014611923834308982, + 0.01885206066071987, + 0.008537020534276962, + -0.00991782359778881, + -0.02158844843506813, + 0.004681490361690521, + 0.028977951034903526, + 0.0012279059737920761, + -0.029911097139120102, + -0.003215569071471691, + 0.00461528729647398, + -0.0027994364500045776, + 0.027843045070767403, + -0.010088060051202774, + 0.001962442882359028, + -0.0032943820115178823, + 0.011330151930451393, + 0.011115781031548977, + 0.01779281534254551, + 0.007099471986293793, + 6.856727850390598e-5, + -0.030592041090130806, + 0.007357978727668524, + -0.010611377656459808, + 0.009180134162306786, + -0.01564910262823105, + 0.019709546118974686, + 0.008278514258563519, + 0.029255373403429985, + 0.013480169698596, + 0.0030595194548368454, + 0.01189760584384203, + -0.014211554080247879, + -0.009306235238909721, + 0.020617472007870674, + 0.019923917949199677, + 0.014224164187908173, + -0.008852272294461727, + 0.015623882412910461, + 0.00441352603957057, + -0.0002334834134671837, + 0.015043819323182106, + 0.022937726229429245, + -0.04892709106206894, + 0.016443537548184395, + 0.012061536312103271, + -0.003344822209328413, + 0.020617472007870674, + -0.004400915931910276, + -0.025245368480682373, + -0.012900106608867645, + -0.004668880254030228, + 0.013152307830750942, + 0.017389293760061264, + -0.008265904150903225, + 0.012515499256551266, + -0.005334061570465565, + -0.003609633771702647, + -0.0006261690286919475, + 0.008133498020470142, + -0.016821838915348053, + 0.000826748029794544, + -0.0240095816552639, + -0.011229271069169044, + -0.0069355410523712635, + -0.020138289779424667, + 0.006714864633977413, + -0.00670225452631712, + -0.026279395446181297, + -0.032130468636751175, + 0.003934343345463276, + 0.019785206764936447, + -0.011304931715130806, + 0.0016976313199847937, + 0.02751518227159977, + -0.0065950690768659115, + 0.01867552101612091, + 0.027262981981039047, + 0.019318634644150734, + 0.012647904455661774, + 0.0011207204079255462, + -0.011191441677510738, + -0.002574031474068761, + 0.004646812565624714, + -0.0005000682431273162, + 0.01706143096089363, + -0.023139486089348793, + 0.005504297558218241, + -0.014035013504326344, + 0.004233832471072674, + 0.003934343345463276, + 0.007963262498378754, + 0.02387087047100067, + -0.006144258659332991, + 0.010542022064328194, + 0.005781718995422125, + -0.02407263219356537, + 0.010888799093663692, + -0.00963409710675478, + 0.026405496522784233, + -0.006948151160031557, + 0.0031225697603076696, + -0.0016645299037918448, + 0.0033479747362434864, + 0.01649397797882557, + 0.016304826363921165, + -0.01317752804607153, + -0.009760198183357716, + 0.009312540292739868, + -0.005791176576167345, + -0.0032281791791319847, + -0.0038744453340768814, + -0.005166978109627962, + -0.001621970790438354, + 0.0038208526093512774, + -0.006371240131556988, + -0.008209158666431904, + -0.01677139848470688, + -0.017187532037496567, + -0.025220150128006935, + 0.0036348539870232344, + -0.008076752535998821, + -0.005125995259732008, + 0.0021594753488898277, + 0.012963157147169113, + -0.027666503563523293, + -0.004977826960384846, + 0.0022903047502040863, + -0.01747756265103817, + -0.004186544567346573, + 0.018372878432273865, + 0.00647527351975441, + -0.020453540608286858, + 0.0071057770401239395, + 0.010806834325194359, + 0.01325318869203329, + 0.018889890983700752, + 0.01532124076038599, + -0.019217753782868385, + 0.014161113649606705, + -0.004873794037848711, + 0.006229376886039972, + 0.023568229749798775, + 0.0026827934198081493, + -0.014047622680664062, + 0.0014123283326625824, + -0.03268531337380409, + -0.0050188098102808, + -0.019015992060303688, + 0.017452342435717583, + -0.03737626224756241, + 0.01775498501956463, + 0.006992286536842585, + -0.015964355319738388, + 0.0009961959440261126, + -0.017780205234885216, + -0.001404447015374899, + -0.023227756842970848, + 0.004322103224694729, + 0.03573695197701454, + -0.005595720838755369, + -0.022874675691127777, + -0.004621592350304127, + -0.016153505071997643, + -0.0036443115677684546, + 0.0015029632486402988, + 0.016266996040940285, + 0.0012964733177796006, + -0.002654420677572489, + 0.010239380411803722, + 0.012446143664419651, + -0.025333639234304428, + -0.024513985961675644, + -0.0021027298644185066, + 0.005271011032164097, + -0.0028782496228814125, + 0.008133498020470142, + -0.007112082093954086, + -0.0028640632517635822, + 0.010106975212693214, + -0.00923057459294796, + 0.012086756527423859, + -0.0164309274405241, + -0.026657698675990105, + -0.017918916419148445, + 0.03407242149114609, + -0.0029255372937768698, + -0.027616063132882118, + 0.006834660656750202, + 0.0004315009864512831, + 0.01948256604373455, + -0.0006588763790205121, + -0.003515058197081089, + -0.01656963862478733, + -0.02324036695063114, + 0.02534624934196472, + 0.006147411186248064, + 0.0205670315772295, + -0.005901515018194914, + -0.017704544588923454, + 0.0010576699860394, + 0.010170024819672108, + 0.006979676429182291, + -0.008606376126408577, + -0.010012399405241013, + -0.011613878421485424, + -0.01923036389052868, + -0.007465164177119732, + -0.007843466475605965, + -0.0038933604955673218, + -0.015598662197589874, + 0.006550933700054884, + 0.011613878421485424, + -0.01572476327419281, + 0.013366678729653358, + -0.008146108128130436, + 0.004312645643949509, + 0.001839494681917131, + 0.007578654680401087, + 0.021777598187327385, + -0.01828460767865181, + -0.005847922060638666, + -0.007181437686085701, + 0.008833357132971287, + 0.001135694794356823, + 0.009173829108476639, + 0.012578549794852734, + 0.015623882412910461, + -0.005302536301314831, + 0.017528003081679344, + -0.0021500177681446075, + -0.0033385171554982662, + 0.017944136634469032, + 0.009217964485287666, + 0.02375738136470318, + 0.019217753782868385, + -0.0011845588451251388, + 0.006897710729390383, + -0.0027300810907036066, + -0.010731173679232597, + -0.003073705593124032, + -0.008152413181960583, + -0.008265904150903225, + -0.0024447781033813953, + -0.022799015045166016, + -0.01119774580001831, + -0.011632793582975864, + -0.009892603382468224, + -2.373009192524478e-5, + 0.009589961729943752, + -0.009243184700608253, + -0.005397112108767033, + -0.00900359358638525, + 0.018864670768380165, + -0.0184989795088768, + 0.0023596601095050573, + 0.017767595127224922, + -0.007288623135536909, + -0.005989785306155682, + -0.01054832711815834, + -0.016040014103055, + -0.003078434383496642, + -0.01187869068235159, + -0.008871187455952168, + 0.035535190254449844, + -0.024274393916130066, + 0.02477879635989666, + -0.01307664718478918, + -0.007673230487853289, + 0.0015266072005033493, + -0.014905108138918877, + 0.016468757763504982, + 0.0030232653953135014, + 0.007685840595513582, + 0.004344170913100243, + 0.016115674749016762, + -0.01723797246813774, + 0.008234378881752491, + 0.01698577031493187, + 0.011651708744466305, + 0.012055231258273125, + -0.0015959625598043203, + -0.019356464967131615, + 0.01873857155442238, + -0.03674575686454773, + 0.008700951933860779, + 0.01344233937561512, + -0.0016188183799386024, + 0.029230153188109398, + -0.007874991744756699, + -0.0004720896831713617, + 0.011815640144050121, + 5.088362013339065e-5, + 0.012912716716527939, + 0.0013949895510450006, + -0.023669110611081123, + 0.0037798697594553232, + 0.021285805851221085, + 0.0027505725156515837, + 0.0067968303337693214, + -0.011658013798296452, + -0.016027403995394707, + -0.017704544588923454, + 0.002063323510810733, + 0.0015352765331044793, + 0.03619091585278511, + 0.01586347445845604, + -0.010333956219255924, + 0.02011306956410408, + 0.0021547465585172176, + 0.011569743044674397, + -0.006040225736796856, + 0.00521111348643899, + -0.011424727737903595, + 0.004530169535428286, + 0.025245368480682373, + 0.022130681201815605, + 0.01119774580001831, + 0.020440930500626564, + -0.006544628646224737, + -0.005050335079431534, + 0.013291019015014172, + 0.008650511503219604, + 0.000922899809665978, + -0.02796914614737034, + 0.023454738780856133, + -0.021714547649025917, + 0.009161219000816345, + -0.012515499256551266, + 0.03255921229720116, + 0.01469073724001646, + -0.035888273268938065, + 0.003694751765578985, + -0.014009793289005756, + -0.00777411088347435, + 0.016758788377046585, + -0.005148062948137522, + -0.005330909043550491, + 0.00014856243797112256, + -0.010844663716852665, + 0.005655618384480476, + -0.0036852944176644087, + -0.006147411186248064, + -0.0033479747362434864, + -0.0009205354726873338, + -7.915776950540021e-5, + 0.00272850482724607, + 0.0035528885200619698, + 0.009627792052924633, + 0.0012688887072727084, + -0.013089257292449474, + 0.005614635534584522, + -0.015169919468462467, + -0.00991782359778881, + -0.02503099851310253, + 0.009911518543958664, + 0.006188394036144018, + -0.001658224849961698, + 0.01428721472620964, + -0.0020128830801695585, + 0.01741451397538185, + 0.00860007107257843, + -0.01514469925314188, + 0.0019955444149672985, + 0.00772997597232461, + 0.008429834619164467, + -0.0052016559056937695, + -0.014224164187908173, + -0.01089510414749384, + 0.013429729267954826, + -0.005302536301314831, + -0.01238939817994833, + -0.011084255762398243, + -0.012729870155453682, + 0.01028351578861475, + -0.00528362113982439, + 0.015787813812494278, + -0.012055231258273125, + -0.013555830344557762, + 0.010170024819672108, + -0.02292511612176895, + 0.007238182704895735, + -0.014274604618549347, + 0.008530715480446815, + -0.00044332293327897787, + 6.699101959384279e-6, + -0.011386897414922714, + -0.011922825127840042, + -0.0018095456762239337, + 0.005375044420361519, + -0.012175027281045914, + 0.005970870144665241, + -0.018259387463331223, + -0.01214350201189518, + 0.03371933847665787, + -0.008915322832763195, + 0.023593449965119362, + 0.005516907665878534, + -0.0024952185340225697, + 0.003190348856151104, + -0.025094049051404, + -0.0007302021258510649, + -0.007452554069459438, + 0.016720958054065704, + -0.028070027008652687, + 0.0009055609698407352, + -0.01846114918589592, + 0.01818372681736946, + -0.015043819323182106, + 0.012130891904234886, + -0.0026292004622519016, + -0.014968158677220345, + -0.012925326824188232, + 0.018902501091361046, + 0.010308736003935337, + -0.0034677705261856318, + -0.008707256987690926, + -0.007439943961799145, + 0.003896513022482395, + 0.01135537214577198, + -0.004139257129281759, + -0.003502448322251439, + 0.015384291298687458, + 0.008379394188523293, + -0.001086830860003829, + 0.04131060466170311, + 0.0058510745875537395, + 0.0017638341523706913, + -0.02200458012521267, + -0.033290598541498184, + 0.003622243879362941, + -0.02786826528608799, + 0.0031446374487131834, + -0.015850864350795746, + -0.014325045049190521, + 0.022483762353658676, + -0.030617261305451393, + -0.006166326347738504, + 0.01263529434800148, + -0.014539415948092937, + -0.02481662668287754, + -0.02133624628186226, + 0.013518000021576881, + 0.0009764926508069038, + 0.014665517024695873, + 0.0075597395189106464, + 0.028372667729854584, + -0.004757150541990995, + -0.01281183585524559, + -0.005286773666739464, + 0.0020286457147449255, + -0.016330046579241753, + -0.01940690539777279, + -0.007181437686085701, + -0.0019009687239304185, + 0.0007857652963139117, + -0.019255584105849266, + 0.010882494039833546, + -0.04025135934352875, + -0.009293625131249428, + 0.006005547940731049, + 0.02179020829498768, + -0.01370715070515871, + -0.017918916419148445, + 0.023643890395760536, + 0.037578023970127106, + 0.0271621011197567, + -0.013833251781761646, + 0.01032134611159563, + -0.011922825127840042, + 0.04186544939875603, + 0.015636492520570755, + -0.01158235315233469, + 0.014123283326625824, + 0.0180071871727705, + 0.008946848101913929, + 0.01912948302924633, + 0.013858471997082233, + 0.0018410709453746676, + -0.0009827977046370506, + 0.008801831863820553, + -0.02562367171049118, + 0.005791176576167345, + 0.009281015023589134, + 0.001384743838571012, + 0.026405496522784233, + 0.008429834619164467, + 0.005589415784925222, + -0.019558224827051163, + 0.00032096580252982676, + 0.017086651176214218, + 0.013959352858364582, + 0.024198733270168304, + -0.00125943124294281, + 0.013934132643043995, + 0.007130997255444527, + 0.009892603382468224, + 0.017717154696583748, + 0.009085558354854584, + 0.01558605208992958, + 0.004060443956404924, + -0.007944347336888313, + -0.0046121347695589066, + 0.0045553892850875854, + 0.0058510745875537395, + 0.005718668922781944, + 0.008152413181960583, + 0.023076437413692474, + -0.006532018538564444, + 0.011260796338319778, + 0.010579852387309074, + -0.02822134643793106, + 0.02912927232682705, + -0.0010718563571572304, + 0.012963157147169113, + 0.008183938451111317, + 0.009470165707170963, + 0.0037893273402005434, + 0.010750088840723038, + -0.007162522524595261, + -0.023946531116962433, + -0.009779112413525581, + -0.0030973495449870825, + 0.006948151160031557, + -0.0048958612605929375, + 0.019255584105849266, + -0.005520060192793608, + 0.007566044572740793, + -0.00926840491592884, + -0.014854667708277702, + 0.016468757763504982, + -0.014060232788324356, + -0.0226350836455822, + -0.011752589605748653, + 0.0021279500797390938, + 0.03162606805562973, + 0.007465164177119732, + 0.024942727759480476, + -0.013644101098179817, + -8.787645492702723e-5, + 0.002271389588713646, + -0.001216872246004641, + -0.020239170640707016, + 0.0010025008814409375, + 0.00984216295182705, + 0.00896576326340437, + -0.014173723757266998, + -0.012225467711687088, + -0.009640402160584927, + -0.022332442924380302, + -0.008574850857257843, + 0.02456442452967167, + -0.012332652695477009, + 0.013820641674101353, + -0.01940690539777279, + -0.005863684695214033, + 0.00356234610080719, + -0.008833357132971287, + 0.0006442960002459586, + -0.012578549794852734, + -0.01238939817994833, + -0.003924885764718056, + -0.0022903047502040863, + -0.010838359594345093, + 0.0036127862986177206, + 0.009760198183357716, + -0.007654315326362848, + -0.00400054594501853, + 0.0032139928080141544, + -0.004722472745925188, + -0.01747756265103817, + -0.036619655787944794, + 0.0024794558994472027, + -0.0053876545280218124, + -0.002641810569912195, + -0.0216514989733696, + 0.005863684695214033, + 0.006695949472486973, + 0.014665517024695873, + 0.0015652255387976766, + -0.028826629742980003, + -0.029331034049391747, + -0.005655618384480476, + -0.010113280266523361, + -0.0008472393965348601, + 0.00842352956533432, + 0.013744981028139591, + 0.012231772765517235, + -0.00442298362031579, + 0.03823374584317207, + -0.023530399426817894, + -0.0010490005370229483, + -0.001055305590853095, + 0.02259725332260132, + -0.0010324498871341348, + 0.00419284962117672, + 0.004041528794914484, + -0.02723776176571846, + -0.01765410415828228, + 0.009854773059487343, + 0.011456253007054329, + 0.020176120102405548, + 0.007332758512347937, + 0.00777411088347435, + -0.007049031555652618, + 0.004359933082014322, + -0.019369075074791908, + 0.007692145649343729, + 0.013530610129237175, + -0.002011306816712022, + 0.0030185366049408913, + 0.005538975354284048, + -0.009312540292739868, + 0.02759084291756153, + -0.0041991546750068665, + -0.002167356666177511, + -0.009980874136090279, + 0.013568440452218056, + 0.01796935684978962, + 0.011178831569850445, + 0.02660725824534893, + 0.006557238753885031, + 0.012780310586094856, + 0.01702360063791275, + -0.011607573367655277, + -0.009142303839325905, + -0.0017512241611257195, + 0.013732370920479298, + -0.0080200070515275, + 0.002739538671448827, + 0.0013516424223780632, + -0.008732476271688938, + -0.017855865880846977, + 0.0015266072005033493, + 0.017805425450205803, + -0.017843255773186684, + -0.0036033287178725004, + -0.002301338594406843, + -0.013833251781761646, + 0.023807821795344353, + 0.002700132317841053, + -0.010220465250313282, + -0.0009378743125125766, + 0.007584959734231234, + -0.009362980723381042, + 0.031222544610500336, + 0.004574304446578026, + 0.007534519769251347, + 0.00039524701423943043, + -0.007212962489575148, + 0.021613668650388718, + -0.013454949483275414, + 0.0155482217669487, + 0.003609633771702647, + -0.006885100621730089, + -0.0040289186872541904, + 0.005050335079431534, + 0.007301233243197203, + 0.003896513022482395, + -0.007540824823081493, + -0.02186586894094944, + -0.006248292047530413, + 0.0014477941440418363, + -0.010170024819672108, + -0.005431789439171553, + 0.00947647076100111, + -0.007849771529436111, + -0.02028960920870304, + 0.01656963862478733, + -0.010769004002213478, + -0.00037219421938061714, + -0.0260776337236166, + 0.0009481199667789042, + 0.02295033633708954, + 0.01491771824657917, + 0.007704755757004023, + -0.0450684055685997, + -0.010592462494969368, + -0.020201340317726135, + -0.0033259072806686163, + 0.013278408907353878, + 0.00564931333065033, + 0.01743973232805729, + -1.1852731404360384e-5, + 0.017565833404660225, + 0.0011120509589090943, + -0.005242638755589724, + -0.013782811351120472, + -0.029331034049391747, + -0.026834238320589066, + -0.004980979487299919, + -0.022029800340533257, + -0.03548474982380867, + -0.005939345341175795, + 0.004032071214169264, + -0.008770306594669819, + -0.01001870445907116, + 0.00033731950679793954, + -0.0013335153926163912, + -0.02597675286233425, + 0.005479077342897654, + -0.0007912821602076292, + -0.0058825998567044735, + 0.0037987849209457636, + -0.010371786542236805, + 0.008234378881752491, + -0.004914776422083378, + 0.006330257281661034, + -0.009110778570175171, + 0.006960761267691851, + 0.00524579081684351, + 0.015964355319738388, + -0.02092011459171772, + -0.0010269329650327563, + -0.03361845761537552, + 0.014905108138918877, + 0.022408101707696915, + -0.003672684310004115, + 0.013606270775198936, + 0.02516970969736576, + -0.004820201080292463, + 0.013328849337995052, + 0.003600176190957427, + 0.022912506014108658, + -0.02495533786714077, + 0.002813622821122408, + 0.028599649667739868, + 0.004517559427767992, + -0.004205459728837013, + 0.018864670768380165, + -0.015749983489513397, + 0.014488975517451763, + 0.0281456857919693, + -0.007017506752163172, + 0.00628296984359622, + 0.00033731950679793954, + 0.014703347347676754, + -0.008366784080862999, + 0.010655513033270836, + -0.022445932030677795, + -0.020516591146588326, + 0.01895294152200222, + -0.0113175418227911, + 0.011443642899394035, + -0.012118281796574593, + -0.013820641674101353, + -0.009659317322075367, + 0.014047622680664062, + 0.020176120102405548, + -0.008373089134693146, + -0.0038366152439266443, + 0.007919127121567726, + 0.010516801849007607, + -0.00032254206598736346, + 0.009602571837604046, + 0.0011845588451251388, + -0.0016298521077260375, + 0.013934132643043995, + 0.0084613598883152, + 0.006241986993700266, + -0.011954350396990776, + -0.007837161421775818, + 0.009905213490128517, + -0.010605072602629662, + 0.009558436460793018, + 0.016052624210715294, + 0.0004728777857962996, + -0.013858471997082233, + 0.025144489482045174, + -0.00926840491592884, + -0.003344822209328413, + 0.01300098653882742, + -0.01028351578861475, + -0.011853470467031002, + -0.01649397797882557, + 0.01779281534254551, + -0.012553329579532146, + 0.015813034027814865, + 0.00861898623406887, + -0.0010442717466503382, + -0.004177086986601353, + -0.0219415295869112, + 0.011847165413200855, + -0.019949138164520264, + -0.005129147786647081, + 0.004003698471933603, + 0.0130388168618083, + 0.002162627875804901, + 0.015422121621668339, + 0.027716943994164467, + -0.0104789724573493, + 0.00017003896937239915, + -0.003672684310004115, + 0.01240831334143877, + -0.0007451765704900026, + 0.006103276275098324, + 0.001512420829385519, + -0.005012504756450653, + -0.016758788377046585, + 0.017502782866358757, + -0.015623882412910461, + 0.0036979042924940586, + -0.01983564719557762, + -0.014047622680664062, + 0.01469073724001646, + -0.016695739701390266, + 0.010447447188198566, + -0.0050818598829209805, + 0.001839494681917131, + -0.002769487677142024, + 0.013555830344557762, + 0.002473150845617056, + 0.01580042392015457, + 0.012067841365933418, + 0.0057281265035271645, + -0.007502994500100613, + -0.0014288790989667177, + 0.0039784787222743034, + 0.028523989021778107, + -0.00909186340868473, + 0.009703452698886395, + 0.004889556206762791, + -0.0012649481650441885, + -0.033820219337940216, + 0.011204050853848457, + 0.008555935695767403, + -0.013744981028139591, + -0.011689539067447186, + -0.01509425975382328, + -0.015333850868046284, + 0.0014769550180062652, + -0.006178936455398798, + 0.017288412898778915, + -0.002282423432916403, + -0.001068703830242157, + -0.005299383774399757, + 0.01317752804607153, + 0.006033920682966709, + -0.0014785312814638019, + -0.000680944009218365, + -0.02133624628186226, + 0.01465290691703558, + 0.004980979487299919, + 0.007288623135536909, + -0.009823247790336609, + -0.00316828116774559, + 0.005129147786647081, + 0.006055988371372223, + -0.0003008685016538948, + 0.013328849337995052, + 0.004290577955543995, + 0.006872490514069796, + 0.017780205234885216, + -0.009356675669550896, + 0.012887496501207352, + -0.02253420278429985, + -0.004290577955543995, + 0.007357978727668524, + -0.014602466486394405, + 0.008587460964918137, + 0.0022367120254784822, + 0.007313843350857496, + -0.005595720838755369, + 0.026758577674627304, + -0.000922899809665978, + -0.022168511524796486, + 0.004832811187952757, + -0.004164477344602346, + -0.015333850868046284, + -0.013341458514332771, + -0.006803135387599468, + -0.010680733248591423, + 0.0105294119566679, + 0.01149408333003521, + 0.004880099091678858, + -0.016040014103055, + 0.007471469230949879, + 0.01024568546563387, + 0.01361888088285923, + -0.0028325379826128483, + 0.007364283781498671, + 0.024841846898198128, + 0.0159391351044178, + -0.013593660667538643, + -0.01783064566552639, + 0.009999789297580719, + -0.012553329579532146, + 0.010888799093663692, + 0.008656816557049751, + 0.008455054834485054, + 0.007294928189367056, + 0.018751181662082672, + -0.010869883932173252, + -0.00146513304207474, + 0.006759000010788441, + 0.0342489629983902, + 0.026935119181871414, + -0.017074041068553925, + 0.003969021141529083, + -0.005923582706600428, + 0.003250246634706855, + -0.009753893129527569, + 0.002487337216734886, + -0.018208947032690048, + -0.003997393883764744, + -0.02432483434677124, + 0.005428636912256479, + -0.01723797246813774, + 0.00481704855337739, + -0.027010779827833176, + 0.0013681930722668767, + 0.0019309177296236157, + 0.004533321596682072, + 0.00565877091139555, + -0.0010198397794738412, + 0.019457345828413963, + 0.004703558050096035, + 0.012900106608867645, + -0.005958260037004948, + 0.0026181668508797884, + 0.014463755302131176, + 0.010106975212693214, + 0.007067946717143059, + -0.0016503435326740146, + 0.024337444454431534, + -0.014035013504326344, + -0.03054160065948963, + 0.013127087615430355, + -0.004492339212447405, + 0.002567726420238614, + -0.026455936953425407, + 0.011922825127840042, + -0.00977280829101801, + -0.015258190222084522, + 0.0008464512648060918, + -0.011922825127840042, + -0.005129147786647081, + -0.004372543189674616, + 0.015195139683783054, + 0.00795065239071846, + -0.006632899399846792, + -0.00938820093870163, + -0.01790630631148815, + -0.007061641663312912, + 0.008026312105357647, + 0.012698344886302948, + -0.010069144889712334, + 0.01089510414749384, + 0.0014824719401076436, + 0.006985981483012438, + 0.004883251618593931, + -0.00522057106718421, + -0.006878795567899942, + 0.014892498031258583, + 0.005195350851863623, + -0.0006305037532001734, + -0.013051426969468594, + -0.00633656233549118, + -0.017212752252817154, + -0.009596266783773899, + -0.006632899399846792, + 0.005318298935890198, + 0.00229818606749177, + 0.02109665423631668, + -0.019608665257692337, + -0.0032076877541840076, + -0.004341018386185169, + -0.0029807062819600105, + 9.994469291996211e-5, + 0.012465058825910091, + -0.015888694673776627, + -0.0028892832342535257, + 0.01024568546563387, + 0.039746955037117004, + 0.02615329436957836, + -0.014375485479831696, + -0.004943149164319038, + -0.009854773059487343, + -0.000755028217099607, + -0.02109665423631668, + 0.022029800340533257, + 0.0003544613136909902, + -0.002553540049120784, + -0.009905213490128517, + -0.003663226729258895, + 0.00018737782374955714, + 0.007742585614323616, + -0.008896407671272755, + 0.0031824675388634205, + 0.01909165270626545, + -0.018725961446762085, + 0.0069670663215219975, + 0.01428721472620964, + -0.018688131123781204, + 0.006030768156051636, + -0.0024999473243951797, + -0.005271011032164097, + 0.009722367860376835, + -0.01793152652680874, + 0.015623882412910461, + -0.002999621443450451, + -0.010415921919047832, + 0.014602466486394405, + 0.016203945502638817, + -0.005548432935029268, + 0.03498034551739693, + -0.022836845368146896, + -0.004032071214169264, + -0.033820219337940216, + 0.012263298034667969, + -0.006859880406409502, + -0.018133286386728287, + -0.012048926204442978, + 0.000748329097405076, + -0.011248186230659485, + 0.0076164850033819675, + 0.014703347347676754, + 0.0018158507300540805, + 0.010226770304143429, + -0.021437127143144608, + 0.022824235260486603, + 0.019785206764936447, + -0.011727369390428066, + 0.005661923438310623, + -0.007566044572740793, + -0.018574640154838562, + 0.0014745906228199601, + -0.010863578878343105, + -0.007004896644502878, + 0.01733885332942009, + -0.008076752535998821, + 0.014186333864927292, + -0.007030116394162178, + 0.0003333788481540978, + -0.003206111490726471, + -0.00989890843629837, + 0.01983564719557762, + 0.016266996040940285, + 0.007301233243197203, + 0.023505179211497307, + -0.014501585625112057, + 0.007994787767529488, + -0.015447341836988926, + -0.011872385628521442, + -0.019558224827051163, + 0.01680922880768776, + -0.007093166932463646, + 0.01698577031493187, + 0.008032617159187794, + -0.0159391351044178, + 0.003024841658771038, + -0.006396460346877575, + 0.0015431578503921628, + -0.007301233243197203, + 0.022017190232872963, + -0.014451145194470882, + 0.006513103377074003, + 0.025257978588342667, + 0.013694540597498417, + -0.0033826525323092937, + 0.011393202468752861, + 0.014816837385296822, + -0.015157309360802174, + 0.002202034229412675, + -0.009980874136090279, + -0.003691599238663912, + 0.004514406900852919, + 0.015245580114424229, + 0.0049116238951683044, + -0.0017953594215214252, + 0.010226770304143429, + -0.007067946717143059, + -0.006065445952117443, + -0.007023811340332031, + -0.0031336036045104265, + 0.012799225747585297, + 0.0011152034858241677, + -0.01747756265103817, + -0.02520754002034664, + -0.0069355410523712635, + -0.014753786846995354, + 0.007187742739915848, + -0.0035591935738921165, + -0.0260776337236166, + -0.019507786259055138, + 0.008524410426616669, + -0.0042874254286289215, + 0.006985981483012438, + 0.007004896644502878, + -0.009747588075697422, + -0.0050188098102808, + -0.014993378892540932, + 0.031499966979026794, + 0.004536474123597145, + -0.002202034229412675, + 0.010006094351410866, + -0.005554737988859415, + 0.00401000352576375, + 0.012118281796574593, + -0.0037672598846256733, + -0.003300687065348029, + -0.003691599238663912, + 0.022433321923017502, + -0.003609633771702647, + 0.01187869068235159, + -0.005460162181407213, + -0.006866185460239649, + 0.005630398169159889, + -0.020340049639344215, + -0.0074462490156292915, + -0.0027474199887365103, + -0.03533342853188515, + -0.022155901417136192, + 0.0009843739680945873, + 0.00459637213498354, + -0.020579641684889793, + -0.006305037532001734, + 0.014930328354239464, + -0.011248186230659485, + 0.005892057437449694, + 0.006197851616889238, + -0.01694793999195099, + -0.006784220226109028, + -0.013026206754148006, + 0.002285575959831476, + 0.011014900170266628, + -0.019154703244566917, + 0.021676719188690186, + -0.01775498501956463, + -0.0033416696824133396, + 0.004514406900852919, + -0.005003047175705433, + -0.01625438593327999, + 0.023543009534478188, + -0.003950105980038643, + 0.01218133233487606, + -0.029053611680865288, + 0.0018741723615676165, + -0.007332758512347937, + 0.009217964485287666, + -0.01049158163368702, + 0.016241775825619698, + 0.005863684695214033, + -0.013013596646487713, + -0.0049683693796396255, + -0.003871292807161808, + -0.0025850653182715178, + 0.011626488529145718, + 0.01867552101612091, + -0.0030374517664313316, + 0.007610179949551821, + -0.02295033633708954, + 0.023177316412329674, + 0.01066812314093113, + 0.028624869883060455, + -0.0019498327746987343, + 0.019457345828413963, + 0.019104262813925743, + 0.02769172377884388, + -0.0076795355416834354, + -0.01068703830242157, + -0.012988376431167126, + 0.014312434941530228, + -0.005034572444856167, + 0.0031556710600852966, + -0.0029176559764891863, + 0.0004752421809826046, + -0.002466845791786909, + -0.03074336238205433, + -0.024450935423374176, + -0.0322817899286747, + -0.00024865492014214396, + -0.014488975517451763, + 0.009791722521185875, + 0.008839662186801434, + 0.0088081369176507, + -0.0023785752709954977, + -0.00712469220161438, + -0.016342656686902046, + -0.0013201171532273293, + -0.0312982052564621, + 0.025333639234304428, + -0.017326243221759796, + -0.013719760812819004, + -0.008537020534276962, + -0.012288517318665981, + -0.006569848861545324, + 0.018120678141713142, + 0.0035654986277222633, + 0.02337907813489437, + -0.012975766323506832, + -0.035963933914899826, + 0.004069901537150145, + 0.0006817321409471333, + 0.020415710285305977, + -0.009684537537395954, + -0.004363085608929396, + -0.0011506692972034216, + 0.0027994364500045776, + -0.006985981483012438, + -0.0052678585052490234, + 0.00019466802768874913, + -0.00027525427867658436, + -0.004672032780945301, + -0.021437127143144608, + 0.007673230487853289, + 0.019242973998188972, + -0.014715957455337048, + 0.01407284289598465, + -0.005765956826508045, + 0.013265798799693584, + -0.01627960614860058, + -0.01649397797882557, + -0.015787813812494278, + 0.005075554829090834, + -0.015296020545065403, + -0.0200752392411232, + 0.0340472012758255, + 0.02393392100930214, + -0.004438746254891157, + 0.021424517035484314, + 0.008896407671272755, + -0.019873477518558502, + 0.011796724982559681, + -0.015169919468462467, + -0.005318298935890198, + -0.020226560533046722, + 0.03331581875681877, + 0.01656963862478733, + -0.006194699089974165, + -0.004637354984879494, + -0.009741283021867275, + 0.004832811187952757, + 0.002578760264441371, + -0.00272377603687346, + -0.001584140583872795, + 0.020138289779424667, + 0.017981966957449913, + 0.020932724699378014, + -0.0008645782363601029, + 0.00042519596172496676, + -0.008202853612601757, + -0.007629095111042261, + -0.035081226378679276, + -0.01993652805685997, + -0.006632899399846792, + -0.03566129133105278, + 0.011569743044674397, + 0.006645509507507086, + -0.009886298328638077, + -0.0015195140149444342, + 0.0013067190302535892, + -0.002082238672301173, + 0.003492990741506219, + 0.016405707225203514, + -0.015699543058872223, + -0.021247975528240204, + -0.010132194496691227, + 0.014955548569560051, + 0.00670225452631712, + -0.016695739701390266, + 0.005655618384480476, + -0.00396586861461401, + -0.006771610118448734, + -0.009665622375905514, + -0.0011104746954515576, + 0.0038082425016909838, + 0.02404741197824478, + -0.0001934858300955966, + -0.006235681939870119, + 0.016998380422592163, + 0.0008858577348291874, + -0.017944136634469032, + 0.009337760508060455, + -0.01993652805685997, + -0.0019498327746987343, + -0.009463860653340816, + 0.007402113638818264, + -0.0017890543676912785, + 0.003537125885486603, + 0.014942938461899757, + 0.011979570612311363, + -0.01962127536535263, + -0.01528341043740511, + 0.00738950353115797, + 0.041890669614076614, + 0.030440719798207283, + -0.003871292807161808, + -0.015485171228647232, + -0.003031146712601185, + -0.028196126222610474, + 0.0159391351044178, + -0.005365586839616299, + -0.03074336238205433, + -0.030062418431043625, + 0.0113175418227911, + -0.03366889804601669, + 0.019570834934711456, + 0.012742480263113976, + -0.014413314871490002, + 0.006462663412094116, + 0.01428721472620964, + -0.012055231258273125, + -0.019419515505433083, + 0.01509425975382328, + 0.003174586221575737, + 0.0004819413006771356, + -0.007874991744756699, + 0.009199049323797226, + 0.004930539056658745, + -0.005305688828229904, + -0.004293730482459068, + -0.016052624210715294, + -0.03853638842701912, + -0.02442571520805359, + -0.00379563239403069, + -0.02127319574356079, + -0.008259599097073078, + -0.01926819421350956, + -0.00732645345851779, + 0.021664109081029892, + 0.0011183560127392411, + 0.004971521906554699, + -0.008190243504941463, + -0.003250246634706855, + 0.003909123130142689, + -0.015523001551628113, + 0.0026764883659780025, + -0.026632478460669518, + -0.01856203004717827, + 0.01944473572075367, + 0.01054832711815834, + -0.009098168462514877, + -0.010403311811387539, + -0.01046005729585886, + 0.0048454212956130505, + 0.011746284551918507, + -0.01307664718478918, + 0.005173283163458109, + -0.009961958974599838, + 0.028650090098381042, + 0.01702360063791275, + -0.012175027281045914, + 0.007162522524595261, + -0.003385805059224367, + -0.01881423220038414, + 0.012855971232056618, + 0.007900211960077286, + 0.014375485479831696, + -0.014539415948092937, + 0.0013390323147177696, + -0.0004630261682905257, + 0.006153716240078211, + 0.013101867400109768, + -0.00815871823579073, + -0.006790525279939175, + -0.010832054540514946, + 0.0003054002590943128, + -0.005293078720569611, + -0.018826842308044434, + 0.0017338852630928159, + -0.016380487009882927, + -0.01607784442603588, + -0.010964459739625454, + 0.027010779827833176, + 0.013291019015014172, + -0.0029570625629276037, + 0.006446900777518749, + -0.004372543189674616, + -0.01989869773387909, + 2.054062861134298e-5, + -0.0052678585052490234, + 0.013064037077128887, + -0.012301127426326275, + 0.004224374890327454, + -0.02324036695063114, + -0.005003047175705433, + 0.001897816197015345, + -0.013997183181345463, + 0.010712258517742157, + -0.003600176190957427, + 0.004366238135844469, + 0.019886087626218796, + -0.007269707974046469, + 0.0028104702942073345, + 0.011960655450820923, + 0.012338957749307156, + 0.02229461260139942, + 0.006683339364826679, + -0.017717154696583748, + -0.033189717680215836, + -0.007395808584988117, + 0.010926629416644573, + 0.012326347641646862, + 0.023177316412329674, + -0.011847165413200855, + 0.018625080585479736, + -0.0007365071796812117, + 0.010251990519464016, + -0.004728777799755335, + 0.025674112141132355, + 0.008171328343451023, + 0.013518000021576881, + 0.009665622375905514, + -0.015535611659288406, + -0.006532018538564444, + 0.029104052111506462, + 0.017490172758698463, + -0.004867488984018564, + 0.016166115179657936, + 0.000281165266642347, + -0.01590130478143692, + 0.023051217198371887, + -0.00909186340868473, + 0.0022099155467003584, + 0.01716231182217598, + 0.002712742192670703, + -0.011014900170266628, + 0.008026312105357647, + -0.02018873021006584, + 0.005337214097380638, + 0.016229165717959404, + -0.023366468027234077, + 0.01402240339666605, + 0.0003412601363379508, + -0.019293414428830147, + 0.006777915172278881, + 0.01948256604373455, + 0.006525713484734297, + -0.00653832359239459, + 6.043969187885523e-5, + 0.0055263652466237545, + 0.023883480578660965, + 0.031247764825820923, + 0.010251990519464016, + 0.000725867401342839, + -0.0077867209911346436, + 0.010813139379024506, + 0.01032134611159563, + -0.004098274279385805, + 0.00951430108398199, + -0.01804501749575138, + 0.019015992060303688, + -0.005176435690373182, + 0.0021027298644185066, + 0.006421680562198162, + 0.007364283781498671, + 0.0092494897544384, + 0.018725961446762085, + -0.0075282147154212, + -0.009432335384190083, + -0.002993316389620304, + 0.0074777742847800255, + -0.03162606805562973, + -0.022029800340533257, + -0.02042832039296627, + 0.013316239230334759, + -0.019192533567547798, + 0.013265798799693584, + 0.004419831093400717, + 0.005302536301314831, + -0.006166326347738504, + -0.004858031403273344, + -0.02796914614737034, + -0.001424938440322876, + -0.0022997623309493065, + 0.015207749791443348, + 0.005967717617750168, + -0.001304354635067284, + 0.010907714255154133, + 0.005349824205040932, + -0.005838464479893446, + 0.0084613598883152, + 0.019886087626218796, + -0.004356780555099249, + -0.012338957749307156, + 0.02615329436957836, + -0.013833251781761646, + -0.014665517024695873, + -0.0038460728246718645, + 0.0013949895510450006, + 0.004558541812002659, + -0.0006825202726759017, + -0.031146883964538574, + 0.010031314566731453, + -0.010182634927332401, + -0.0016062082722783089, + -0.008190243504941463, + -0.004987284541130066 + ], + "960e584f-7c70-412b-81bc-cbe29ca6c5fa": [ + -0.02250596508383751, + -0.021141085773706436, + -0.004461262840777636, + -0.031043710187077522, + -0.068592369556427, + -0.02686195820569992, + 0.011993501335382462, + 0.05627943202853203, + 0.005056581925600767, + 0.036387063562870026, + -0.003982103895395994, + 0.0193115696310997, + -0.0031417598947882652, + -0.009408945217728615, + 0.008094887249171734, + 0.010381783358752728, + -0.02654251828789711, + 0.008189266547560692, + 0.0045229727402329445, + 0.0009165735682472587, + 0.055204953998327255, + -0.015362135134637356, + -0.015884853899478912, + 0.03060811199247837, + -0.02976595237851143, + -0.029068993404507637, + 0.03145027160644531, + -0.002898550359532237, + -0.03266994655132294, + 0.0018159046303480864, + -0.006232700310647488, + 0.018062850460410118, + 0.05006488040089607, + -0.024538761004805565, + 0.01633497327566147, + -0.001140725682489574, + 0.00456653255969286, + -0.012821139767765999, + -0.019442249089479446, + -0.01312605943530798, + -0.035893384367227554, + 0.04608640819787979, + 0.0153476158156991, + -0.0053288317285478115, + -0.0406268946826458, + 0.039610497653484344, + 0.05282367765903473, + -0.00039498874684795737, + 0.006421459838747978, + -0.01573965512216091, + 0.02069096639752388, + 0.017075492069125175, + -0.027500836178660393, + 0.013082499615848064, + 0.010897242464125156, + -0.012980859726667404, + 0.02227364480495453, + 0.07387764006853104, + 0.010940802283585072, + -0.0611000619828701, + 0.028313955292105675, + 0.00926374550908804, + 0.019819768145680428, + -0.004406813066452742, + -0.023943442851305008, + -0.019151849672198296, + 0.0003232963499613106, + -0.0013612478505820036, + -0.04036553576588631, + 0.019645528867840767, + 0.02888023480772972, + 0.01096258219331503, + -0.04103345423936844, + -0.001566342543810606, + -0.01028740406036377, + -0.006867948919534683, + 0.02976595237851143, + -0.020095648244023323, + -0.00042629745439626276, + 0.01200076099485159, + -0.04658008739352226, + -0.01494105625897646, + 0.02876407466828823, + -0.007161978632211685, + 0.05958998575806618, + 0.025482559576630592, + -0.02124272659420967, + -0.05296887457370758, + -0.04591216892004013, + -0.035283543169498444, + 0.020081128925085068, + 0.011129562743008137, + -0.00569183100014925, + 0.00975742470473051, + -0.004991242196410894, + -0.007702847942709923, + 0.017075492069125175, + 0.014912016689777374, + -0.00022211027680896223, + -0.01444011740386486, + -0.01054876297712326, + 0.027515355497598648, + -0.04585408791899681, + -0.007307178340852261, + 0.0025355510879307985, + 0.004777072463184595, + 0.01502817589789629, + -0.012922779656946659, + -0.035283543169498444, + 0.015870334580540657, + 0.005365131422877312, + -0.010026044212281704, + 0.039755698293447495, + 0.007811747491359711, + 0.0014229577500373125, + -0.06766309589147568, + 0.010810122825205326, + -0.025497078895568848, + -0.02045864798128605, + -0.058428388088941574, + 0.03505122289061546, + 0.032408587634563446, + -0.021286286413669586, + 0.004272503312677145, + 0.020821647718548775, + 0.01321317907422781, + -0.009612224996089935, + -0.012617859989404678, + 0.0003670831792987883, + -0.013989998027682304, + 0.016581812873482704, + -0.006033050362020731, + -0.008276387117803097, + 0.03301842883229256, + -0.008109407499432564, + 0.013576178811490536, + -0.007085748948156834, + 0.06969588994979858, + -0.012719499878585339, + 0.04289201274514198, + -0.02657155692577362, + -0.04896136373281479, + 0.012037061154842377, + -0.01495557650923729, + 0.018077371641993523, + 0.022026805207133293, + -0.031740669161081314, + 0.03824561834335327, + -0.015100776217877865, + 0.016727013513445854, + -0.04817728325724602, + -0.014374776743352413, + 0.023464282974600792, + 0.0040764836594462395, + -0.00767380790784955, + 0.017540132626891136, + 0.004239833448082209, + 0.012327460572123528, + -0.014832156710326672, + 0.00355194928124547, + -0.0027624256908893585, + -0.05253327637910843, + 0.016843173652887344, + 0.00238490616902709, + 0.001000970951281488, + 0.013336598873138428, + 0.03397674486041069, + 0.035661064088344574, + -0.029519112780690193, + 0.03310554847121239, + 0.031072750687599182, + 0.015362135134637356, + 0.010396303609013557, + 0.0006475002155639231, + -0.00116704311221838, + -0.000365268177120015, + 0.015667054802179337, + 0.004196273162961006, + 0.03839081898331642, + -0.01659633405506611, + 0.004483042750507593, + 0.008486926555633545, + -0.039929937571287155, + -0.02797999605536461, + -0.019268009811639786, + 0.012233080342411995, + 0.0007155626080930233, + -0.004065593704581261, + -0.0020491317845880985, + 0.005361501593142748, + -0.014294917695224285, + -0.008871706202626228, + 0.003083680057898164, + 0.03827466070652008, + -0.027050716802477837, + -0.016233334317803383, + 0.010614102706313133, + 0.007579428143799305, + 0.0019402318866923451, + 0.015797734260559082, + -0.03005635179579258, + -0.06923124939203262, + -0.08067299425601959, + 0.02060384675860405, + -0.048700001090765, + -0.0025537009350955486, + 0.006581179331988096, + -0.03130507096648216, + -0.0015999199822545052, + -0.025003399699926376, + 0.0533173568546772, + -0.022433364763855934, + 0.008871706202626228, + -0.006330709904432297, + -0.026092398911714554, + -0.009808244183659554, + -0.01697385311126709, + 0.01299537904560566, + 0.008290906436741352, + -0.009619484655559063, + -0.03423810377717018, + -0.028923794627189636, + -0.0020001267548650503, + -0.01533309556543827, + -0.06324902176856995, + 0.0012686830013990402, + 0.011652281507849693, + 0.025700358673930168, + -0.054856471717357635, + 0.0007005888619460166, + 0.06040310487151146, + 0.032786108553409576, + -0.01723521202802658, + -0.047248005867004395, + 0.0005658253794535995, + 0.001584492507390678, + -0.014882976189255714, + 0.021809006109833717, + 0.01665441319346428, + -0.007456008344888687, + 0.028836674988269806, + 0.03682266175746918, + -0.011862820945680141, + -0.007158348802477121, + 0.024916280061006546, + 0.010178503580391407, + -0.027486316859722137, + 0.011042442172765732, + 0.023696603253483772, + -0.0040764836594462395, + 0.023769201710820198, + 0.027820276096463203, + 0.005601081065833569, + 0.00874828640371561, + 0.01331481896340847, + 0.01919540949165821, + 0.01761273294687271, + -0.012617859989404678, + 0.003996623679995537, + -0.004414073191583157, + -0.005967710632830858, + -0.0021072116214782, + 0.015086255967617035, + -0.003836903953924775, + 0.03133410960435867, + -0.009663044475018978, + 0.017903132364153862, + -0.019790727645158768, + -0.002873140387237072, + 0.016189774498343468, + -0.05337543413043022, + 0.012552520260214806, + -0.004199903458356857, + -0.011151342652738094, + -0.0019021169282495975, + -0.006200029980391264, + 0.00955414492636919, + 0.010069604031741619, + 0.012095141224563122, + 0.007964207790791988, + 0.017278771847486496, + 0.023580443114042282, + 0.006849799305200577, + 0.0662691742181778, + -0.0072563583962619305, + -0.016262374818325043, + 0.020502207800745964, + -0.011877341195940971, + -0.04094633460044861, + -0.011187641881406307, + -0.020168248564004898, + 0.005561151076108217, + 0.01755465194582939, + 0.006185510195791721, + 0.01844037137925625, + 0.01302441954612732, + -0.031217951327562332, + -0.011862820945680141, + -0.007114788517355919, + -0.004446743056178093, + -0.019297048449516296, + 0.0094379847869277, + 0.03133410960435867, + -0.03055003099143505, + 0.0058370307087898254, + -0.009292785078287125, + 0.040336497128009796, + 0.0008462424157187343, + -0.04936792328953743, + -0.013888358138501644, + 0.05378199368715286, + -0.015899375081062317, + -0.031246989965438843, + -0.029068993404507637, + 0.00046395862591452897, + 0.0010490682907402515, + 0.017845051363110542, + 0.016581812873482704, + -0.0058297705836594105, + -0.015492815524339676, + -0.008203786797821522, + -0.003203470027074218, + -0.051023200154304504, + 0.019587449729442596, + 0.02519216015934944, + -0.010708482936024666, + 0.012857439927756786, + -0.009488805197179317, + -0.008697465993463993, + -0.011332841590046883, + -0.001992866862565279, + -0.05758623033761978, + -0.04251449182629585, + -0.006973219104111195, + 0.01656729355454445, + -0.0188759695738554, + -0.03836178034543991, + -0.026818396523594856, + -0.012015281245112419, + 0.005474031437188387, + -0.018948569893836975, + 0.028401074931025505, + -0.027849316596984863, + 0.0022342614829540253, + 0.0365903414785862, + 0.011049702763557434, + 0.02988211251795292, + 0.015420215204358101, + -0.011877341195940971, + 0.010810122825205326, + 0.0006810776540078223, + -0.008348986506462097, + 0.03034675121307373, + 0.01677057333290577, + 0.019558409228920937, + -0.007956947200000286, + 0.01524597592651844, + -0.004472152795642614, + 0.01659633405506611, + 0.03153739124536514, + 0.022491443902254105, + -0.015696095302700996, + -0.031217951327562332, + -0.008864445611834526, + 0.00629804003983736, + 0.026905518025159836, + -0.0034067495726048946, + 0.009612224996089935, + 0.0194567684084177, + 0.024016041308641434, + -0.012639639899134636, + 0.022927043959498405, + 0.0015000951243564487, + 0.014556276611983776, + -0.0446634478867054, + -0.002368571236729622, + 0.04588312655687332, + 0.027137836441397667, + -0.047306083142757416, + 0.03388962522149086, + -0.028807634487748146, + 0.027573436498641968, + 0.028110675513744354, + -0.0026934556663036346, + 0.05311407521367073, + 0.04689952731132507, + 0.023987002670764923, + -0.01247991994023323, + -0.005103772040456533, + -0.011739401146769524, + -0.05232999846339226, + -0.01521693542599678, + -0.012131440453231335, + -0.008348986506462097, + -0.04036553576588631, + 0.03147931024432182, + 0.009859064593911171, + -0.008987865410745144, + 0.0023649411741644144, + -0.008813626132905483, + 0.0038006040267646313, + 0.00832720659673214, + 0.010788342915475368, + 0.00752134807407856, + 0.02501792088150978, + -0.03060811199247837, + 0.011151342652738094, + -0.0008716523880138993, + 0.00045148053322918713, + -0.014498196542263031, + 0.002295971382409334, + 0.02329004369676113, + 0.024451641365885735, + -0.014832156710326672, + 0.02466944046318531, + -0.00747052812948823, + 0.03478986397385597, + 0.01208788063377142, + -0.058283187448978424, + -0.017627252265810966, + 0.058922067284584045, + 0.07718819379806519, + -0.008319946937263012, + -0.005397801287472248, + -0.032553788274526596, + 0.016204293817281723, + 0.009997003711760044, + 0.029519112780690193, + 0.004051073454320431, + -0.00287132547236979, + -0.0028350255452096462, + -0.028430115431547165, + -0.02639731764793396, + -0.023319082334637642, + 0.00831268634647131, + 0.017845051363110542, + 0.020298928022384644, + -0.004305173177272081, + -0.040104176849126816, + -0.015391175635159016, + 0.022578563541173935, + 4.5289849367691204e-5, + 0.01665441319346428, + 0.008022286929190159, + -0.013663298450410366, + -0.02397248148918152, + -0.017191652208566666, + 0.016102654859423637, + 0.005484921392053366, + 0.023391682654619217, + -0.0010173058835789561, + 0.06133238226175308, + -0.003002005163580179, + 0.01258155982941389, + -0.0029203302692621946, + -0.008363506756722927, + -0.019805248826742172, + -0.0027206807862967253, + 0.0028277654200792313, + -0.02715235762298107, + -0.018135450780391693, + 0.021199166774749756, + 0.03859409689903259, + -0.03145027160644531, + -0.009953443892300129, + -0.055408231914043427, + -0.016305934637784958, + 0.06528181582689285, + -0.0014601651346310973, + -0.010657663457095623, + 0.0033668195828795433, + 0.021489566192030907, + -0.02797999605536461, + 0.01749657280743122, + -0.0050420621410012245, + -0.001000970951281488, + 0.0007854399736970663, + 0.01504269614815712, + 0.021460525691509247, + -0.009612224996089935, + -0.031508348882198334, + -0.046841446310281754, + -0.02835751511156559, + 0.047422245144844055, + 0.0016462024068459868, + -0.021344365552067757, + -0.02121368609368801, + -0.0005236266879364848, + 0.008820885792374611, + -0.015913894400000572, + 0.06731460988521576, + 0.002575480844825506, + 0.02504695951938629, + -0.02265116386115551, + -0.020357007160782814, + -0.031769707798957825, + 0.013017158955335617, + -0.006722749210894108, + -0.016059095039963722, + -0.039494335651397705, + 0.030840430408716202, + -0.0221865251660347, + -0.010316443629562855, + 0.035661064088344574, + -0.02299964427947998, + -0.0029112554620951414, + -0.025627760216593742, + -0.004239833448082209, + -0.0005930503248237073, + -0.010033303871750832, + 0.022172003984451294, + -0.004671802744269371, + 0.001905746990814805, + -0.0013131503947079182, + -0.0035192794166505337, + 0.017104532569646835, + -0.01925348863005638, + -0.003236139891669154, + 0.039436258375644684, + -0.0011180381989106536, + 0.0057172407396137714, + 0.00010169655433855951, + -6.199349445523694e-5, + 0.027820276096463203, + -0.014723256230354309, + -0.01412067748606205, + -0.016117174178361893, + 0.004051073454320431, + 0.031653549522161484, + 0.017162613570690155, + -0.027515355497598648, + 0.010149464011192322, + 0.013568918220698833, + -0.028197795152664185, + 0.009067725390195847, + -0.0036027692258358, + -0.02417576126754284, + -0.009329085238277912, + -0.001575417467392981, + 0.040046095848083496, + -0.011478042230010033, + 0.019601969048380852, + 0.0006756326765753329, + -0.008828146383166313, + -0.015275015495717525, + 0.024887239560484886, + -0.021475045010447502, + 0.015405695885419846, + 0.007100268732756376, + 0.005582930985838175, + -0.03897161781787872, + -0.011507081799209118, + 0.002370386151596904, + -0.01350357849150896, + 0.01746753230690956, + -0.039988014847040176, + 0.03679362311959267, + -0.039726655930280685, + -0.023188402876257896, + 0.015492815524339676, + 0.009503324516117573, + 0.02841559424996376, + 0.006831649225205183, + 0.005463141482323408, + -0.026092398911714554, + -0.010033303871750832, + -0.01662537269294262, + 0.010592322796583176, + 0.0005621953750960529, + 0.013256738893687725, + 0.019122809171676636, + 0.014244097284972668, + 0.050994157791137695, + -0.042659692466259, + -0.012632380239665508, + 0.014200537465512753, + -0.0015273201279342175, + -0.01018576417118311, + -0.026586078107357025, + 0.002192516578361392, + -0.0008044974529184401, + -0.036299943923950195, + 0.024596840143203735, + -0.011405441910028458, + 0.016189774498343468, + 0.028894754126667976, + -0.02870599366724491, + -0.05337543413043022, + 0.00975742470473051, + 0.02789287641644478, + -0.0143384775146842, + 0.03423810377717018, + 0.02417576126754284, + -0.016189774498343468, + -0.02835751511156559, + 0.010911762714385986, + -0.004374143201857805, + 0.0060620903968811035, + -0.014679696410894394, + -0.024016041308641434, + -0.00651220977306366, + 0.03307650610804558, + 0.0015853999648243189, + -0.00955414492636919, + -0.021460525691509247, + 0.002796910470351577, + -0.017874091863632202, + -0.0037715639919042587, + -0.01907924935221672, + -0.011173122562468052, + 0.011173122562468052, + 0.025468040257692337, + 0.0032615498639643192, + -0.006483169738203287, + 0.02443712204694748, + 0.008065846748650074, + 0.006490429863333702, + 0.026615118607878685, + -0.01735137216746807, + -0.0031472051050513983, + 0.01126750186085701, + -0.043821290135383606, + 0.043066252022981644, + -0.02227364480495453, + 0.010933542624115944, + -0.010047824122011662, + -0.009684824384748936, + -0.024742040783166885, + -0.021199166774749756, + 0.003559209406375885, + 0.010759303346276283, + 0.019703608006238937, + 0.02077808789908886, + -0.036328982561826706, + 0.03272802755236626, + 0.020966846495866776, + -0.0018522045575082302, + 0.0409172959625721, + -0.026295678690075874, + -0.0005236266879364848, + -0.03145027160644531, + 0.004969462286680937, + -0.01524597592651844, + -0.0017532871570438147, + -0.014570796862244606, + 0.009677564725279808, + -0.014599836431443691, + 0.01512981578707695, + 0.02803807519376278, + -0.003715299069881439, + -0.050790879875421524, + -0.004693582653999329, + 0.017249733209609985, + 0.017046453431248665, + 0.0011425407137721777, + -0.029431993141770363, + -0.0014901126269251108, + 0.023638522252440453, + -0.00047144549898803234, + -0.013510838150978088, + 0.010193023830652237, + 0.0005780765786767006, + -0.013786718249320984, + 0.025148600339889526, + 0.0017904946580529213, + 0.019645528867840767, + 0.023638522252440453, + 0.012465400621294975, + 0.007993247359991074, + 0.02976595237851143, + 0.008537746034562588, + -0.015536375343799591, + 0.020734526216983795, + -0.006029420532286167, + 0.0037534141447395086, + -0.01148530188947916, + -0.0017015597550198436, + -0.02530832029879093, + -0.007394298445433378, + -0.008900745771825314, + -0.010011523962020874, + 0.001628052443265915, + -0.036270901560783386, + -0.01942772977054119, + 0.017728891223669052, + -0.018861450254917145, + 0.0020255367271602154, + 0.031130829825997353, + -0.01351809874176979, + -0.00706759886816144, + 0.0037316340021789074, + 0.016523733735084534, + -0.003350484650582075, + 0.007172868587076664, + 0.0004986704443581402, + 0.026760317385196686, + -0.035283543169498444, + -0.00134763540700078, + 0.03926201909780502, + -0.02042960748076439, + -0.03409290686249733, + -0.005194521974772215, + -0.00461735250428319, + -0.0188759695738554, + 0.007456008344888687, + 0.039407216012477875, + -0.03031771257519722, + -0.009619484655559063, + 0.007920647040009499, + -0.028981873765587807, + 0.028836674988269806, + 0.0005286179366521537, + -0.006693709176033735, + 0.004232573322951794, + 0.0034666445571929216, + -0.004501192830502987, + -0.017757931724190712, + -0.000232773381867446, + 0.012842919677495956, + 0.018774330615997314, + -0.02596171945333481, + 0.04196273162961006, + -0.007325328420847654, + -0.04579600691795349, + -0.059096306562423706, + 0.02516311965882778, + 0.025613239035010338, + -0.0018694470636546612, + -0.010998882353305817, + -0.0009710234589874744, + 0.05166207626461983, + 0.007136568892747164, + -0.0025627759750932455, + 0.008944305591285229, + -0.019558409228920937, + 0.004987611901015043, + -0.005219931714236736, + 0.012363760732114315, + 0.04234025254845619, + -0.015884853899478912, + -0.01524597592651844, + -0.021024927496910095, + 0.03145027160644531, + 0.01740945316851139, + 0.019747167825698853, + -0.004257983062416315, + -0.0172932930290699, + 0.023899881169199944, + 0.0017169872298836708, + 0.01237828005105257, + 0.024190282449126244, + -0.03388962522149086, + 0.03926201909780502, + 0.028633395209908485, + -0.015100776217877865, + -0.023725641891360283, + -0.006719119381159544, + -0.00018932689272332937, + -0.02011016756296158, + 0.007140198722481728, + -0.015100776217877865, + 0.01492653600871563, + -0.002655340824276209, + -0.03432522714138031, + -0.00539054162800312, + -0.006581179331988096, + -0.020095648244023323, + 0.043501850217580795, + 0.03873929753899574, + -0.024277402088046074, + 0.02873503416776657, + -0.01198624074459076, + 0.010621363297104836, + 0.021823525428771973, + -0.02103944681584835, + -0.04088825359940529, + 0.04283393174409866, + -0.004548382945358753, + -0.04190465435385704, + 0.0028749555349349976, + -0.004573792684823275, + -0.01893405057489872, + 0.00012160480400780216, + -0.0093653853982687, + 0.02019728720188141, + 0.0035120195243507624, + 0.015550895594060421, + 0.008806366473436356, + -0.011289281770586967, + -0.0024411710910499096, + -0.01691577397286892, + 0.011768441647291183, + -0.0032306949142366648, + 0.004595572594553232, + 0.024422600865364075, + 0.01717713288962841, + 0.02130080573260784, + -0.02224460430443287, + 0.03002731315791607, + 0.028459154069423676, + -0.010229323990643024, + -0.03508026525378227, + 0.029330354183912277, + 0.03917489945888519, + -0.012871959246695042, + -0.01521693542599678, + 0.014556276611983776, + 0.02628115750849247, + 0.02250596508383751, + 0.005553890950977802, + -0.040278416126966476, + -0.02326100319623947, + -0.004138193558901548, + 0.01299537904560566, + 0.009902624413371086, + 0.0026317457668483257, + 0.0094379847869277, + -0.019660048186779022, + 0.02077808789908886, + -0.0002693001879379153, + 0.03455754369497299, + 0.011695841327309608, + 0.03034675121307373, + 0.011608721688389778, + -0.036270901560783386, + -0.003061900148168206, + -0.01341645885258913, + -0.0019474918954074383, + 0.019209928810596466, + 0.01414971798658371, + 0.015376655384898186, + -0.0062218098901212215, + -0.008218307048082352, + 0.026353757828474045, + -0.01299537904560566, + 0.036183781921863556, + -0.025395439937710762, + -0.017336852848529816, + -0.04123673588037491, + 0.01531857531517744, + -0.007514087948948145, + -0.021809006109833717, + -0.029504593461751938, + -0.0038804637733846903, + 0.002437541028484702, + -0.00784078799188137, + 0.009423465467989445, + -0.010178503580391407, + 0.06470102071762085, + -0.0018122745677828789, + 0.005056581925600767, + -0.018367771059274673, + -0.004657282494008541, + 0.003735264064744115, + -0.04152713343501091, + 0.029315833002328873, + -0.002784205600619316, + 0.0005907815648242831, + 0.039087776094675064, + -0.004207163117825985, + 0.0018821520498022437, + 0.01826613023877144, + -0.01849845051765442, + -0.02601979859173298, + 0.011361882090568542, + -0.0009683009702712297, + -0.04260161146521568, + 0.007009518798440695, + -0.007514087948948145, + 0.021678324788808823, + -0.011681321077048779, + 0.009053206071257591, + -4.282258669263683e-5, + -0.00016550504369661212, + -0.04254353418946266, + -0.03661938011646271, + -0.04297913238406181, + -0.0012432730291038752, + -0.03301842883229256, + 0.009989744052290916, + 0.00956866517663002, + 0.03679362311959267, + 0.0011098707327619195, + -0.005510331131517887, + -0.05938670411705971, + -0.0031998399645090103, + 0.01149982213973999, + 0.0031290550250560045, + -0.011449001729488373, + -0.02578747831285, + 0.021286286413669586, + 0.01893405057489872, + -0.022985123097896576, + -0.026063358411192894, + -0.011652281507849693, + -0.0365903414785862, + -0.027457276359200478, + -0.011594201438128948, + -0.004602832719683647, + -0.005132812075316906, + -0.004374143201857805, + -0.0243500005453825, + -0.0167124941945076, + -0.0028078004252165556, + -0.02019728720188141, + -0.01682865247130394, + 0.03397674486041069, + 0.03824561834335327, + -0.00011842856474686414, + 0.04878712072968483, + 0.003158095059916377, + 0.001898486982099712, + -0.015550895594060421, + -0.01128202211111784, + 0.039087776094675064, + 0.01054876297712326, + 0.015942934900522232, + 0.0002751989522948861, + 0.004268873017281294, + -0.012429100461304188, + 0.002793280640617013, + 0.005851550493389368, + -0.004722622688859701, + 0.0066283694468438625, + -0.011049702763557434, + -0.021112047135829926, + 0.006203660275787115, + 0.0011724880896508694, + 0.008806366473436356, + 0.016959333792328835, + 0.012044320814311504, + 0.028691474348306656, + 0.0052235615439713, + -0.013176878914237022, + 0.006392419803887606, + -0.021315326914191246, + 0.009779204614460468, + 0.0010499758645892143, + -0.04088825359940529, + -0.015884853899478912, + -0.008378027006983757, + -0.013452759012579918, + -0.010810122825205326, + -0.006149210035800934, + 0.031130829825997353, + -0.006156470160931349, + -0.03060811199247837, + 0.03534162417054176, + 0.004831522237509489, + -0.01158694177865982, + 0.01691577397286892, + 0.0374615415930748, + 0.0029638903215527534, + -0.01237828005105257, + 0.025177640840411186, + 0.0266586784273386, + -0.0027987256180495024, + 0.014984616078436375, + -0.0029148852918297052, + -0.01312605943530798, + 0.014229577034711838, + 0.012145960703492165, + -0.006337970029562712, + 0.004994872026145458, + -0.047189924865961075, + 0.012734020128846169, + -0.04544752836227417, + 0.013561658561229706, + -0.0012759430101141334, + 0.027326596900820732, + -0.007731887511909008, + -0.01691577397286892, + 0.02657155692577362, + 0.001810459652915597, + 0.0006107465014792979, + -0.0031308699399232864, + -0.030840430408716202, + 0.00332507467828691, + 0.0025301058776676655, + -0.0011815631296485662, + 0.012763059698045254, + 0.008624866604804993, + 0.022898003458976746, + -0.004944052081555128, + -0.004054703749716282, + 0.007913387380540371, + 0.0012432730291038752, + -0.004058333579450846, + 0.005259861703962088, + -0.016436614096164703, + -0.011144082061946392, + -0.04109153524041176, + -0.010519723407924175, + -0.018716249614953995, + 0.01679961383342743, + -0.0014138827100396156, + -0.039958976209163666, + -0.02890927344560623, + 0.004018403589725494, + -0.02192516438663006, + -0.012719499878585339, + 0.021576685830950737, + -0.04832248389720917, + 0.028372034430503845, + 0.0247856006026268, + 0.007514087948948145, + -0.025714879855513573, + -0.005561151076108217, + 0.0345865860581398, + 0.01505721639841795, + -0.00752134807407856, + -0.0010336408158764243, + 0.002709790598601103, + -0.036125700920820236, + 0.0213298462331295, + 0.014999136328697205, + 0.012915519066154957, + -0.04268873110413551, + -0.007593947928398848, + 0.024509720504283905, + -0.019442249089479446, + -0.032611869275569916, + 0.004933162126690149, + -0.021867085248231888, + -0.008378027006983757, + 0.003248844761401415, + -0.008864445611834526, + 0.01928252913057804, + -7.267078217410017e-6, + 0.014389296993613243, + -0.010759303346276283, + 0.0018767070723697543, + 0.004130933433771133, + -0.023696603253483772, + -0.015173375606536865, + 0.007630248088389635, + 0.01107874233275652, + -0.05000679939985275, + 0.0035809893161058426, + 0.00017231129459105432, + 0.026731276884675026, + -0.0054885512217879295, + 0.007833527401089668, + 0.01571061462163925, + 0.01126750186085701, + 0.00883540604263544, + 0.0052235615439713, + -0.007009518798440695, + -0.005147331859916449, + 0.0023613113444298506, + 0.01826613023877144, + -0.03101467154920101, + 0.031769707798957825, + -0.007125678472220898, + -0.0029566301964223385, + 0.010556023567914963, + 0.021053966134786606, + 0.007107528857886791, + -0.009503324516117573, + 0.01905020885169506, + -0.007416078355163336, + 0.0033813396003097296, + 0.04196273162961006, + -0.043414730578660965, + 0.013619738630950451, + -0.007848047651350498, + -0.018135450780391693, + 0.0058951107785105705, + -0.0011997130932286382, + 0.013975477777421474, + 0.0069223991595208645, + 0.007289028260856867, + 0.010432603769004345, + 0.011615981347858906, + 0.03002731315791607, + 0.019718129187822342, + -0.006091130431741476, + 0.01565253548324108, + 0.023159362375736237, + 0.003570099361240864, + -0.0168576929718256, + -0.014098897576332092, + -0.029286794364452362, + 0.00884992629289627, + -0.016276894137263298, + -0.029606232419610023, + 0.019180890172719955, + 0.018629129976034164, + -0.00747052812948823, + 0.04187561199069023, + -0.024683961644768715, + 0.006076610181480646, + -0.001819534576497972, + 0.012980859726667404, + -0.014585317112505436, + 0.004824262112379074, + -0.004562902729958296, + 0.06475909799337387, + -0.014519977383315563, + 0.010628622956573963, + 0.008203786797821522, + -0.03441234678030014, + -0.0019093769369646907, + 0.0008240087190642953, + -0.003049195045605302, + 0.020647406578063965, + 0.00018603719945531338, + -0.01302441954612732, + 0.005256231874227524, + 0.026353757828474045, + 0.03476082533597946, + 0.018338730558753014, + -0.007463268004357815, + 0.01250896044075489, + 0.01668345369398594, + -0.004991242196410894, + -0.01858557015657425, + -0.002132621593773365, + 0.0010871832491829991, + 0.013271259143948555, + -0.020095648244023323, + -0.003143575042486191, + -0.028372034430503845, + 0.0005671866238117218, + 0.0040147737599909306, + -0.03751961886882782, + -0.003996623679995537, + 0.04527328908443451, + 0.004479412920773029, + 0.02130080573260784, + 0.017598211765289307, + -0.01870173029601574, + 0.031101791188120842, + 0.00532520143315196, + -0.025627760216593742, + 0.006926028989255428, + -0.0014247727813199162, + -0.0053832815028727055, + -0.012182260863482952, + 0.017932171002030373, + -0.0030873101204633713, + -0.008951566182076931, + -0.0013703227741643786, + 0.027253996580839157, + 0.016073614358901978, + 0.00584429083392024, + -0.008102146908640862, + -0.0039639538154006, + -0.005049321800470352, + -0.02864791452884674, + -0.005408691242337227, + -0.024277402088046074, + 0.01328577846288681, + -0.014469156973063946, + -0.03902969881892204, + -0.022201044484972954, + -0.004664542619138956, + 0.022462403401732445, + 0.02408864162862301, + 0.005415951367467642, + -0.015202416107058525, + -0.031101791188120842, + 0.010752042755484581, + -0.00018864625599235296, + -0.008029547519981861, + -0.0016207924345508218, + 0.027181396260857582, + -0.010831902734935284, + 0.025831038132309914, + 0.00762298796325922, + 0.019500328227877617, + 0.0006502227042801678, + -0.006265370175242424, + 0.022781843319535255, + -0.036387063562870026, + 0.00923470500856638, + -0.04538944736123085, + -0.03397674486041069, + 0.009183885529637337, + -0.00032216199906542897, + 0.02230268530547619, + 0.0041781235486269, + -0.01905020885169506, + -6.794895307393745e-5, + -0.003873203881084919, + 0.001026380923576653, + -0.011797481216490269, + -0.0168576929718256, + -0.01328577846288681, + -0.004232573322951794, + -0.021199166774749756, + -0.011550641618669033, + -0.020081128925085068, + -0.017394931986927986, + -0.011100522242486477, + 0.024306440725922585, + -0.006519469432532787, + -0.001818627119064331, + 0.020734526216983795, + 0.0062218098901212215, + -0.022346245124936104, + 0.016872212290763855, + 0.007819007150828838, + -0.014505457133054733, + 0.002393981209024787, + -0.009024165570735931, + -0.013626998290419579, + -0.0017904946580529213, + 0.012828399427235126, + -0.027268515899777412, + -0.021852565929293633, + -0.0033123698085546494, + -0.004824262112379074, + -0.018237091600894928, + -0.012349240481853485, + 0.016146214678883553, + -0.027529876679182053, + 0.0004755292320623994, + 0.004192643333226442, + -0.0025028809905052185, + 0.024858200922608376, + 0.011949940584599972, + 0.0029021804220974445, + 0.000600764062255621, + -0.0032306949142366648, + -0.02697811648249626, + -0.006258110050112009, + 0.01576869562268257, + 0.005219931714236736, + -0.021968724206089973, + -0.006889728829264641, + 0.010403563268482685, + -0.00022381183225661516, + 0.023536883294582367, + 0.0031671698670834303, + -0.005619231145828962, + 0.005524851381778717, + 0.0017786971293389797, + -0.010069604031741619, + 0.004726252518594265, + 0.0038151240441948175, + -0.0014810377033427358, + 0.013532618060708046, + -0.02519216015934944, + 0.008348986506462097, + 0.04800304397940636, + -0.035690102726221085, + 0.009379904717206955, + 0.0008730136323720217, + -0.02204132452607155, + -0.026789357885718346, + 0.01645113341510296, + -0.01706097275018692, + 0.005626491270959377, + 0.000495494226925075, + -0.006272629834711552, + -0.006998628843575716, + 0.008058587089180946, + -0.014200537465512753, + -0.012058841064572334, + -0.0306952316313982, + 0.01485393662005663, + 0.008421586826443672, + -0.01198624074459076, + -0.03873929753899574, + 8.919008905650117e-6, + 0.01858557015657425, + -0.010396303609013557, + -0.012371020391583443, + 0.006602959707379341, + -0.019587449729442596, + 0.011209421791136265, + -0.035951461642980576, + 0.021750925108790398, + -0.024742040783166885, + 0.04457632824778557, + -0.009241965599358082, + -0.015391175635159016, + -0.019151849672198296, + 0.001498280093073845, + 0.007593947928398848, + 0.015362135134637356, + 0.004254353232681751, + -0.027500836178660393, + -0.022142965346574783, + -0.004261613357812166, + 0.024683961644768715, + 0.007550388108938932, + -0.03409290686249733, + -0.0031145350076258183, + 0.032350510358810425, + 0.021257245913147926, + 0.028197795152664185, + -0.017743412405252457, + -0.018977610394358635, + 0.001279572956264019, + -0.014810376800596714, + 0.010352743789553642, + 0.00956866517663002, + 0.007252728566527367, + -0.0027642406057566404, + 0.032698988914489746, + -0.013793977908790112, + -0.009292785078287125, + 0.0025791109073907137, + 0.008348986506462097, + -0.014745036140084267, + 0.011441742070019245, + 0.018803369253873825, + -0.013169619254767895, + -0.0005517591489478946, + 0.004421332851052284, + -0.003096385160461068, + -0.011035182513296604, + 0.025555159896612167, + -0.006762679200619459, + -0.0016697973478585482, + -0.0051545919850468636, + -0.02991115301847458, + -0.024422600865364075, + 0.01135462149977684, + 0.01119490247219801, + -0.011245721951127052, + 0.01452723704278469, + 0.008937045931816101, + 0.0317116305232048, + 0.014781336300075054, + -0.005259861703962088, + 0.025453519076108932, + 0.0009456134866923094, + -0.019093770533800125, + 0.01714809238910675, + 0.002167106606066227, + 0.0006465926999226213, + -0.006388789974153042, + 0.0072490982711315155, + -0.03322170674800873, + 0.007681067567318678, + -0.016872212290763855, + -0.03008539229631424, + 0.003996623679995537, + 0.0031399449799209833, + -0.0003298757364973426, + -0.008987865410745144, + -0.0021072116214782, + -0.01913733035326004, + -0.0047552925534546375, + -0.022172003984451294, + -0.0013521728105843067, + 0.009517844766378403, + -0.0006039402796886861, + -0.014897496439516544, + 0.002453876193612814, + 6.114271673141047e-5, + -0.01514433603733778, + -0.006316190119832754, + -0.013685078360140324, + 0.0024575060233473778, + 0.006457759533077478, + 0.00026816583704203367, + 0.0006257202476263046, + -0.008973346091806889, + -0.0004718992568086833, + 0.023638522252440453, + -0.005071102175861597, + -0.0020146467722952366, + -0.03737442195415497, + -0.009561404585838318, + -0.009082245640456676, + 0.007263618521392345, + 0.010599583387374878, + 0.04234025254845619, + -0.0024919910356402397, + -0.008668426424264908, + -0.021634764969348907, + 0.024858200922608376, + 0.0020582068245857954, + 0.02510504052042961, + -0.005822510924190283, + 0.011492561548948288, + 0.022099405527114868, + -0.004726252518594265, + 0.024306440725922585, + -0.005444991402328014, + -0.0015962899196892977, + 0.017365891486406326, + 0.0018485746113583446, + -0.0035809893161058426, + -0.004962202161550522, + 0.017641771584749222, + 0.00012296605564188212, + -0.005078361835330725, + 0.012639639899134636, + -0.025482559576630592, + 0.025032440200448036, + -0.0182951707392931, + -0.015086255967617035, + -0.0013630628818646073, + -0.016015535220503807, + -0.017757931724190712, + -0.0015962899196892977, + 0.023841802030801773, + 0.013764938339591026, + 0.023638522252440453, + -0.011978981085121632, + 0.005528481211513281, + -0.020850686356425285, + -0.012131440453231335, + -0.007172868587076664, + 0.013271259143948555, + -0.016233334317803383, + 0.00605846056714654, + 0.010737522505223751, + 0.005317941773682833, + 0.015696095302700996, + -0.020052088424563408, + 0.0028277654200792313, + -0.011449001729488373, + 0.01691577397286892, + -0.04219505190849304, + -0.021605726331472397, + -0.007285398431122303, + 0.006893359124660492, + -0.014418337494134903, + 0.012712240219116211, + -0.0025990759022533894, + -0.005866070743650198, + 0.0009864509338513017, + 0.013881097547709942, + 0.007223688531666994, + 0.0039058737456798553, + -0.013060719706118107, + 0.02124272659420967, + -0.02040056698024273, + 0.04385032877326012, + -0.010091383941471577, + 0.027646036818623543, + -0.017743412405252457, + 0.0174384918063879, + 0.009786464273929596, + 0.020908767357468605, + -0.00483515253290534, + 0.0006434164824895561, + -0.011158602312207222, + 0.008842665702104568, + 0.006323449779301882, + -0.017598211765289307, + -0.027370156720280647, + -0.0054885512217879295, + -0.0021289915312081575, + -0.032234348356723785, + -0.01410615723580122, + -0.015608975663781166, + 0.0010327333584427834, + 0.021663805469870567, + -0.011724881827831268, + 0.008784585632383823, + -0.017453012987971306, + 0.00851596612483263, + 0.012806619517505169, + -0.013779457658529282, + -0.00629804003983736, + -8.326299575855955e-5, + -0.014832156710326672, + -0.021809006109833717, + -0.021765446290373802, + -0.008123926818370819, + -0.005557521246373653, + -0.015420215204358101, + -0.014970095828175545, + -0.004138193558901548, + 0.01758369244635105, + -0.021170126274228096, + 0.02674579806625843, + 0.0009773758938536048, + 0.0038804637733846903, + -0.006675559561699629, + -0.013242218643426895, + 4.275168976164423e-6, + 0.018193531781435013, + -0.007586687803268433, + -0.02956267260015011, + -0.03807137906551361, + 0.01227664016187191, + -0.019442249089479446, + 0.020937805995345116, + 0.011020662263035774, + 0.01571061462163925, + -0.003916763700544834, + 0.03266994655132294, + 0.0009483359754085541, + -0.04297913238406181, + 0.017786972224712372, + 0.008929786272346973, + 0.03040483221411705, + -0.016204293817281723, + -1.355575932393549e-5, + 0.031682588160037994, + -0.021852565929293633, + 0.006388789974153042, + 0.008196527138352394, + 0.005350611638277769, + 0.007739147637039423, + 0.017569171264767647, + -0.030927550047636032, + -0.015275015495717525, + -0.0026517107617110014, + -0.008871706202626228, + -0.00482063228264451, + -0.02262212336063385, + -0.019384169951081276, + -0.02414672076702118, + -0.016872212290763855, + 0.0022342614829540253, + 0.005739021115005016, + 0.010846422985196114, + 0.012988119386136532, + 0.02683291770517826, + -0.032786108553409576, + -0.023783722892403603, + 0.010817382484674454, + 0.014127937145531178, + 0.025177640840411186, + 0.012617859989404678, + 0.006200029980391264, + 0.023159362375736237, + 0.00659932941198349, + 0.013365638442337513, + 0.016175255179405212, + 0.011086001992225647, + -0.00015019101556390524, + 0.016843173652887344, + -0.039436258375644684, + -0.004925902001559734, + -0.008537746034562588, + 0.02060384675860405, + 0.01309701893478632, + -0.009575924836099148, + -0.015884853899478912, + -0.03060811199247837, + -0.0038695738185197115, + 0.00964126456528902, + -0.0005181816522963345, + 0.012051580473780632, + 0.014774076640605927, + 0.0022342614829540253, + -0.013685078360140324, + 0.0009646709659136832, + 0.006686449516564608, + 0.009038685820996761, + 0.023667562752962112, + -0.01116586197167635, + 0.0050892517901957035, + -0.005521221086382866, + -0.0005975877866148949, + -0.0213298462331295, + -0.011042442172765732, + 0.003070975188165903, + -0.01495557650923729, + 0.0010590507881715894, + -0.013184139505028725, + 0.0012396430829539895, + 0.018948569893836975, + 0.013147839345037937, + -0.018033811822533607, + 0.002786020515486598, + -0.023740163072943687, + -0.021475045010447502, + 0.01118038222193718, + -0.026469917967915535, + 0.024277402088046074, + 0.005938670597970486, + 0.014403817243874073, + -0.03676458075642586, + -0.019819768145680428, + 0.009924404323101044, + -0.008799105882644653, + -0.0072055384516716, + -0.009329085238277912, + -0.004007513634860516, + -0.0028041705954819918, + -0.018483931198716164, + 0.068011574447155, + 0.0005966803291812539, + 0.01679961383342743, + 0.002992930356413126, + -0.012240340933203697, + -0.015623494982719421, + -0.004740772303193808, + 0.009721124544739723, + 0.0065158396027982235, + -0.0077101076021790504, + -0.014912016689777374, + 0.005648271180689335, + 0.017307812348008156, + 0.012567039579153061, + -0.036416102200746536, + -0.007760927546769381, + 0.007804487831890583, + 0.023928921669721603, + 0.011608721688389778, + 0.014273137785494328, + -0.0008498724200762808, + 0.007695587817579508, + -0.0014647026546299458, + 0.008958825841546059, + -0.01841133087873459, + 0.011775701306760311, + -0.001191545627079904, + -0.005521221086382866, + 0.01769985258579254, + 0.02469848096370697, + 0.0037461540196090937, + -0.010919022373855114, + 0.008298167027533054, + -0.019703608006238937, + -0.004101893398910761, + 0.0019384169718250632, + 0.012893739156425, + 0.01240732055157423, + -0.02124272659420967, + 0.012363760732114315, + 0.0012078805593773723, + 0.0039058737456798553, + 0.01659633405506611, + 0.019587449729442596, + -0.02803807519376278, + 0.01229116041213274, + 0.0032343249768018723, + -0.006849799305200577, + 0.02979499287903309, + -0.0053215716034173965, + -0.0067953490652143955, + -0.012443619780242443, + 0.009590445086359978, + 0.019500328227877617, + 0.01711905188858509, + 0.0003865943872369826, + -0.004247093107551336, + 0.007906127721071243, + -0.00022800901206210256, + 0.006820759270340204, + -0.007416078355163336, + -0.0005304329097270966, + 0.006200029980391264, + -0.019892368465662003, + -0.009546885266900063, + 0.00309820007532835, + -0.003012895118445158, + 0.003945803735405207, + -0.0067953490652143955, + -0.017249733209609985, + -0.03661938011646271, + -0.0030927550978958607, + 0.011158602312207222, + -0.012058841064572334, + 0.006533989682793617, + 0.025540638715028763, + -0.0009233797900378704, + 0.02694907784461975, + 0.023130323737859726, + -0.005056581925600767, + 0.009227445349097252, + 0.005684570875018835, + -0.003524724394083023, + -0.00923470500856638, + 0.0024847311433404684, + -0.0074197081848979, + -0.0019729018677026033, + -0.005350611638277769, + 0.017278771847486496, + -0.03525450453162193, + -0.006987738888710737, + 0.009300045669078827, + 0.0031399449799209833, + 0.007869827561080456, + -0.00032465762342326343, + 0.01430943701416254, + 0.0113836620002985, + -0.01119490247219801, + 0.008770066313445568, + -0.013714117929339409, + 0.020211808383464813, + 0.009692084975540638, + -0.012864699587225914, + -0.009488805197179317, + 0.012153220362961292, + 0.010556023567914963, + 0.01571061462163925, + -0.023841802030801773, + 0.014360257424414158, + -0.00073053635424003, + 0.001054513268172741, + -0.02072000689804554, + 0.007191018667072058, + 0.01495557650923729, + 0.00292214541696012, + 0.0025046959053725004, + -0.004954942036420107, + -0.0034267145674675703, + -0.022288164123892784, + -0.009699344635009766, + -0.008828146383166313, + 0.01826613023877144, + -0.0059423004277050495, + -0.02144600637257099, + 0.0038514239713549614, + 0.000557204126380384, + -0.007485047914087772, + -0.0049222721718251705, + -0.007499568164348602, + -0.013322078622877598, + 0.013547138310968876, + 0.013496318832039833, + 0.023464282974600792, + 0.003639069152995944, + -0.0048024822026491165, + 0.003865943755954504, + -0.0037897140718996525, + 0.0030437500681728125, + -0.004671802744269371, + -0.02417576126754284, + 0.020589327439665794, + -0.012719499878585339, + 0.006141950376331806, + 0.0340057872235775, + 0.012719499878585339, + -0.0024593211710453033, + -0.01331481896340847, + -0.021838044747710228, + 0.01400451734662056, + -0.01393191795796156, + 0.015797734260559082, + -0.0282413549721241, + 0.010948062874376774, + -0.014512716792523861, + -0.007426968310028315, + 0.0033141847234219313, + -0.021199166774749756, + 0.012712240219116211, + -0.03394770622253418, + 0.007848047651350498, + 0.018454890698194504, + -0.014447377063333988, + -0.007158348802477121, + 0.010686703026294708, + -0.0036154743283987045, + 0.005553890950977802, + 0.020908767357468605, + 0.012044320814311504, + -0.0003062807663809508, + 3.9447826566174626e-5, + 0.009241965599358082, + -0.0017351371934637427, + 0.006504949647933245, + -0.013895617797970772, + 0.01679961383342743, + -0.01758369244635105, + -0.002446616068482399, + -0.008704726584255695, + -0.02400152198970318, + 0.0024611360859125853, + 0.005009391810745001, + -0.011543381959199905, + 0.01752561144530773, + 0.0035828042309731245, + -0.0144110769033432, + -0.020647406578063965, + 0.01240732055157423, + -0.010541503317654133, + -0.01645113341510296, + -0.007125678472220898, + -0.007848047651350498, + 0.009408945217728615, + 0.00705307861790061, + -0.01207336038351059, + -0.01951484940946102, + -0.008407066576182842, + 0.03362826630473137, + 0.014563537202775478, + 0.027050716802477837, + -0.014077117666602135, + -0.0022941564675420523, + 0.0029729653615504503, + 0.021954204887151718, + 0.020066607743501663, + -0.009474284946918488, + -0.015420215204358101, + -0.009597704745829105, + -0.016276894137263298, + -0.0030056352261453867, + 0.0012850179336965084, + -0.006319819949567318, + -0.025148600339889526, + 0.007993247359991074, + 0.006878838874399662, + -0.008298167027533054, + 0.003985733725130558, + 0.0014592576771974564, + 0.015623494982719421, + 0.0016235149232670665, + 0.011463521979749203, + 0.011412701569497585, + -0.0011997130932286382, + 0.002706160768866539, + -0.0032542897388339043, + -0.011107781901955605, + -0.005659161135554314, + 0.012813880108296871, + 0.013576178811490536, + 0.021620245650410652, + -0.008552266284823418, + 0.01571061462163925, + -0.0016135324258357286, + -0.016204293817281723, + 0.018425850197672844, + -0.001601735013537109, + 0.031827788800001144, + 0.005920520517975092, + -0.021721884608268738, + -0.016320453956723213, + -0.008472406305372715, + -0.008610346354544163, + 0.0004728067433461547, + -0.010766563005745411, + -0.02207036502659321, + -0.0039494335651397705, + -0.02905447408556938, + -0.006269000004976988, + -0.0037280041724443436, + -0.006933289114385843, + -2.800483889586758e-5, + -0.02400152198970318, + 0.005444991402328014, + -0.0009338160161860287, + -0.005797100719064474, + 0.01511529553681612, + -0.009561404585838318, + -0.003924023825675249, + 0.02092328667640686, + -0.01482489611953497, + -0.011928160674870014, + 0.009902624413371086, + 0.003508389461785555, + -0.01636401377618313, + -0.010773822665214539, + -0.002355866366997361, + 0.025555159896612167, + -0.024713000282645226, + 0.00659932941198349, + -0.0005336091271601617, + 0.020531248301267624, + 0.008726506493985653, + -0.002167106606066227, + 0.011086001992225647, + 0.019122809171676636, + 0.019035689532756805, + 0.009241965599358082, + 0.011042442172765732, + -0.007644767872989178, + 0.01512981578707695, + 0.00953962467610836, + 0.01738041266798973, + 0.0006892451783642173, + 0.019645528867840767, + -0.025395439937710762, + 0.005869700573384762, + -0.046986646950244904, + 0.012675940059125423, + 0.019093770533800125, + -0.005746280774474144, + 0.02648443728685379, + -0.010810122825205326, + -0.0011252982076257467, + 0.011695841327309608, + -0.004559272900223732, + 0.005016651935875416, + -0.009677564725279808, + -0.009459764696657658, + -0.019355129450559616, + 0.02683291770517826, + -0.007869827561080456, + -0.0010372708784416318, + -0.0015327651053667068, + -0.014127937145531178, + -0.016204293817281723, + -0.002515586093068123, + 0.0015962899196892977, + 0.02400152198970318, + 0.006737269461154938, + -0.017511092126369476, + 0.01674153283238411, + 0.005132812075316906, + 0.006091130431741476, + -0.001678872387856245, + -0.010251103900372982, + -0.0075431279838085175, + 0.013242218643426895, + 0.0034339744597673416, + 0.0022596714552491903, + -0.005426841322332621, + 0.012233080342411995, + 0.004893232136964798, + 0.005020282231271267, + 0.015173375606536865, + -0.012951819226145744, + 0.019122809171676636, + -0.017728891223669052, + 0.010040564462542534, + -0.0187307707965374, + 0.01826613023877144, + -0.02034248784184456, + 0.017845051363110542, + 0.025889119133353233, + -0.032698988914489746, + -0.003916763700544834, + -0.011870081536471844, + 0.008348986506462097, + -0.01875980943441391, + -0.004493932705372572, + -0.011884600855410099, + 0.011056962423026562, + -0.0040619634091854095, + -0.005582930985838175, + -0.017685331404209137, + -0.007136568892747164, + 0.0028767704498022795, + 0.007357998285442591, + -0.0024230212438851595, + 5.144382521393709e-5, + 0.007234578486531973, + 0.022288164123892784, + -0.008436106145381927, + 0.01036000344902277, + 0.009953443892300129, + -0.007405188400298357, + -0.013605218380689621, + -0.027224956080317497, + -0.0010409008245915174, + 0.02510504052042961, + -0.008399806916713715, + -0.005190891679376364, + -0.01414971798658371, + 0.009989744052290916, + 0.010556023567914963, + -0.011376402340829372, + 0.017786972224712372, + 0.0014873901382088661, + -0.0041781235486269, + 0.007448748219758272, + -0.04399552941322327, + 0.008203786797821522, + -0.0056555308401584625, + -0.005869700573384762, + -0.008044066838920116, + -0.0022124815732240677, + 0.001985606737434864, + 0.017017412930727005, + -0.005299791693687439, + 0.008857185952365398, + -0.00656302971765399, + -0.005804360844194889, + 0.028633395209908485, + -0.003542874474078417, + -8.694970892975107e-5, + -0.01896308921277523, + -0.01878884993493557, + 0.01211692113429308, + -0.0039022439159452915, + -0.005880590528249741, + -0.0008485111757181585, + -0.0026135959196835756, + -0.004279762972146273, + 0.004951312206685543, + -0.0009410760249011219, + -0.003920393995940685, + -0.005165481939911842, + 0.02827039547264576, + -0.02829943597316742, + 0.03017251193523407, + -0.0018948570359498262, + 0.00757216801866889, + -0.008559525944292545, + -0.004250723402947187, + 0.008399806916713715, + 0.010033303871750832, + 0.02207036502659321, + -0.008857185952365398, + 0.00391313387081027, + -0.003967583645135164, + 0.014585317112505436, + -0.003210729919373989, + 0.005771690979599953, + 0.0006588439573533833, + -0.01928252913057804, + -0.023594962432980537, + 0.014882976189255714, + -0.003639069152995944, + -0.009931663982570171, + -0.0014583502197638154, + -0.0050348020158708096, + -0.0015618050238117576, + 0.008123926818370819, + 0.001724247238598764, + 0.010824643075466156, + 0.019935928285121918, + -0.0017596397083252668, + -0.02268020436167717, + 0.035457782447338104, + 0.011579681187868118, + -0.01126750186085701, + -0.01036000344902277, + -0.010752042755484581, + 0.012567039579153061, + -0.010134943760931492, + 0.007078488823026419, + 0.0002597714483272284, + -0.00559019111096859, + 0.026266638189554214, + -0.010512463748455048, + 0.0029548152815550566, + 0.013924658298492432, + -0.014200537465512753, + -0.020734526216983795, + -0.02259308472275734, + -0.02628115750849247, + 0.0007958762580528855, + 0.002873140387237072, + 0.010519723407924175, + 0.015536375343799591, + -0.00302923028357327, + -0.011957201175391674, + -0.02302868291735649, + 0.00956866517663002, + -0.011521602049469948, + -0.007717367727309465, + -0.02607787773013115, + -0.006377900019288063, + -0.00844336673617363, + -0.020415088161826134, + 0.010802863165736198, + -0.039813775569200516, + 0.003074605017900467, + 0.0016316823894158006, + 0.015071735717356205, + -0.006290779914706945, + 0.0032179898116737604, + 0.006435979623347521, + 0.04518616944551468, + 0.013786718249320984, + -0.008290906436741352, + 0.03002731315791607, + -0.024030562490224838, + 0.043269529938697815, + 0.014715996570885181, + 0.00044127117143943906, + 0.012763059698045254, + 0.01761273294687271, + 0.01155790127813816, + 0.021736405789852142, + 0.001530950074084103, + 0.003927653655409813, + 0.0015200601192191243, + 0.007819007150828838, + -0.01444011740386486, + 0.009220185689628124, + 0.022055845707654953, + -0.016639893874526024, + 0.0024339111987501383, + 0.013815757818520069, + -0.00727087864652276, + -0.0023123063147068024, + 0.007252728566527367, + 0.011521602049469948, + 0.004497563000768423, + 0.006544879637658596, + 0.0004827892407774925, + 0.009401684626936913, + 0.014476416632533073, + 0.009822764433920383, + 0.001052698353305459, + 0.011652281507849693, + 0.013452759012579918, + 0.0033014798536896706, + -0.008915266022086143, + -0.012124180793762207, + 0.009343605488538742, + -0.014882976189255714, + 0.0015019101556390524, + 0.0004476236645132303, + 0.043734170496463776, + 0.0174384918063879, + 0.0024139462038874626, + 0.008610346354544163, + -0.004544752649962902, + 0.002495621098205447, + -0.006051200442016125, + 0.03043387085199356, + 0.017540132626891136, + 0.002722495701164007, + -0.0008335374295711517, + 0.009771944023668766, + -0.008131187409162521, + -0.018687210977077484, + -0.009125805459916592, + 0.005350611638277769, + 0.011492561548948288, + -0.002533735940232873, + 0.008276387117803097, + -0.004072853364050388, + -0.005967710632830858, + -0.014265877194702625, + -0.014382037334144115, + 0.0070276688784360886, + 0.016785092651844025, + -0.0077681876718997955, + 0.002176181646063924, + 0.010693962685763836, + 0.0306952316313982, + 0.008211047388613224, + 0.0035392444115132093, + -0.007122048642486334, + 0.001236013020388782, + 0.0010744782630354166, + 0.013648778200149536, + -0.002619040897116065, + -0.0012214930029585958, + -0.001384842791594565, + 0.012066100724041462, + 0.012225820682942867, + -0.018164491280913353, + 0.00661384966224432, + -0.018033811822533607, + -0.0034503096248954535, + 0.0182951707392931, + 0.00972838420420885, + 0.00276968558318913, + -0.01709001325070858, + -0.002470211125910282, + 0.00254281098023057, + -0.003577359253540635, + 0.011158602312207222, + 0.00038137627416290343, + -0.007978727109730244, + -0.0065085794776678085, + -0.005630121100693941, + -0.007252728566527367, + 0.000354605057509616, + -0.0037316340021789074, + -0.0013113353634253144, + 0.0035465043038129807, + 0.007387038320302963, + -0.012371020391583443, + -0.0056555308401584625, + -0.039755698293447495, + 0.0066283694468438625, + -0.0020382418297231197, + 0.007485047914087772, + -0.04158521443605423, + 0.009481544606387615, + 0.00782626774162054, + 0.006878838874399662, + 0.0009465210023336112, + -0.019935928285121918, + -0.010853682644665241, + -0.0007736425031907856, + 0.0011897305957973003, + 0.01852749101817608, + 0.008813626132905483, + 0.007397928275167942, + 0.014810376800596714, + -0.017394931986927986, + 0.035602983087301254, + -0.0021725515834987164, + -0.0002690733235795051, + -0.005060211755335331, + 0.019834289327263832, + 0.013837537728250027, + 0.006595699582248926, + -0.013104279525578022, + -0.039610497653484344, + -0.023841802030801773, + -0.01934061013162136, + 0.004003883805125952, + 0.018803369253873825, + 0.003916763700544834, + 0.013605218380689621, + 0.0017296922160312533, + 0.000892524840310216, + -0.012124180793762207, + 0.0021072116214782, + 0.013910138048231602, + 0.0093653853982687, + -0.01351809874176979, + 0.014701476320624352, + -0.014701476320624352, + 0.029010914266109467, + 0.0008648461080156267, + 0.002011016709730029, + -0.0012423655716702342, + 0.010098643600940704, + 0.02337716333568096, + 0.022433364763855934, + 0.0282413549721241, + 0.0037316340021789074, + -0.0009864509338513017, + 0.00871924590319395, + -0.01656729355454445, + 0.004290653392672539, + -0.008777325972914696, + 0.020037567242980003, + -0.006370639894157648, + 0.013953697867691517, + -0.002412131056189537, + -0.01826613023877144, + -0.024800119921565056, + -0.0040619634091854095, + 0.010585063137114048, + -0.02692003734409809, + 0.01694481261074543, + -0.016988372430205345, + -0.012400059960782528, + 8.916173101169989e-5, + 0.010084124282002449, + -0.0027370157185941935, + 0.017075492069125175, + -0.0002656702126841992, + -0.0045774225145578384, + 0.0032688097562640905, + -0.011173122562468052, + 0.01065040286630392, + -0.008595826104283333, + -0.008399806916713715, + 0.01925348863005638, + -0.014730516821146011, + 0.018048331141471863, + 0.01126750186085701, + 0.0009029610664583743, + -0.001054513268172741, + -0.020168248564004898, + 0.036387063562870026, + -0.007165608461946249, + -0.014287657104432583, + -0.018237091600894928, + -0.011550641618669033, + 0.014984616078436375, + -0.00953962467610836, + 0.0020237218122929335, + 0.0143384775146842, + 0.0011380031937733293, + -0.014469156973063946, + -0.0012441804865375161, + -0.02083616703748703, + 0.0031290550250560045, + -0.023827282711863518, + 0.007158348802477121, + 0.021083006635308266, + 0.0123928003013134, + 0.0024393561761826277, + -0.028894754126667976, + 0.010940802283585072, + 2.49845688813366e-5, + -0.002392166294157505, + 0.009401684626936913, + 0.008944305591285229, + 0.017046453431248665, + -1.2442656043276656e-5, + 0.014374776743352413, + 0.0008190174703486264, + -0.022752804681658745, + -0.0031707999296486378, + -0.0203134473413229, + -0.014817636460065842, + -0.0007523163221776485, + -0.017162613570690155, + -0.018106412142515182, + -0.0070821186527609825, + -0.00015098506992217153, + -0.0016843173652887344, + -0.02988211251795292, + -0.011361882090568542, + -0.014999136328697205, + -0.015289535745978355, + 0.00834172684699297, + 0.00706759886816144, + -0.0053215716034173965, + -0.017816010862588882, + -0.022012285888195038, + 0.011608721688389778, + 0.0123928003013134, + 0.01300989929586649, + -0.0018095520790666342, + 0.009038685820996761, + -0.00011462841212050989, + 0.012008020654320717, + 0.009859064593911171, + 0.00962674431502819, + -0.05180727690458298, + -0.02086520753800869, + 0.0030600852333009243, + 0.004958572331815958, + -0.004374143201857805, + 0.006740899290889502, + 0.00624722009524703, + 0.005361501593142748, + 0.018062850460410118, + 0.024161241948604584, + -0.032263386994600296, + 0.003036490175873041, + -0.008334467187523842, + -0.006319819949567318, + 0.001854019588790834, + 0.02797999605536461, + -0.0076012080535292625, + -0.022055845707654953, + 0.0045157126151025295, + -0.026005279272794724, + -0.004305173177272081, + -0.006178250070661306, + 0.015971975401043892, + -0.009590445086359978, + 0.004671802744269371, + -0.01846941001713276, + -0.010381783358752728, + 0.003437604522332549, + 0.014636136591434479, + 0.0174384918063879, + -0.01423683762550354, + -0.006345229689031839, + -0.004911382216960192, + -0.01261060032993555, + 0.025032440200448036, + -0.0018522045575082302, + -0.01526049617677927, + 0.016930293291807175, + -0.0036681091878563166, + 0.009488805197179317, + -0.0034575695171952248, + 0.003334149718284607, + -0.01832421123981476, + -0.007760927546769381, + 0.007180128712207079, + -0.009096765890717506, + 0.0013948252890259027, + -0.0026916407514363527, + -0.005013022106140852, + -0.0018041071016341448, + 0.011056962423026562, + 0.005869700573384762, + -0.004497563000768423, + -0.007485047914087772, + 0.03859409689903259, + -0.006428719963878393, + 0.005023912061005831, + 0.0026916407514363527, + -0.02207036502659321, + -0.0002599983417894691, + -0.039203938096761703, + -0.015783214941620827, + -0.003942173905670643, + 0.01711905188858509, + 0.006573919672518969, + 0.0004918642225675285, + -0.005343351513147354, + -0.004849672317504883, + 0.0022142964880913496, + -0.031972989439964294, + 0.02516311965882778, + 0.004141823388636112, + 0.01723521202802658, + 0.010526983067393303, + 0.01746753230690956, + 0.02124272659420967, + -0.012632380239665508, + -0.02106848731637001, + 0.018716249614953995, + 0.011325581930577755, + -0.007379778195172548, + 0.006312559824436903, + -0.017365891486406326, + -0.008363506756722927, + -0.00436688307672739, + 0.004904122091829777, + -0.0026244858745485544, + 0.004758922383189201, + -0.026963597163558006, + -0.030985631048679352, + 0.007296288385987282, + -0.0008108499459922314, + 0.003524724394083023, + 0.0021997764706611633, + 0.030927550047636032, + -0.00834172684699297, + 0.013685078360140324, + 0.011151342652738094, + 0.011013402603566647, + 0.00353379943408072, + -0.0167124941945076, + -0.010759303346276283, + -0.007746407762169838, + -0.013394678942859173, + -0.003662664210423827, + -0.006955069024115801, + 0.008363506756722927, + -0.002020091749727726, + -0.016088133677840233, + -0.04074305668473244, + 0.011507081799209118, + -0.002437541028484702, + 0.007216428406536579, + -0.02069096639752388, + -0.012886479496955872, + 0.00022154308680910617, + -0.00871924590319395, + -0.0203134473413229, + 0.007093008607625961, + 0.010715742595493793, + -0.005150961689651012, + 0.0070349290035665035, + 0.0027388306334614754, + 0.00784078799188137, + -0.0047480324283242226, + 0.02098136581480503, + -0.012646899558603764, + 0.003455754602327943, + 0.009684824384748936, + -0.005219931714236736, + 0.00031535574817098677, + 0.01533309556543827, + -0.023638522252440453, + 0.012443619780242443, + -0.01413519773632288, + 0.014156977646052837, + 0.004951312206685543, + 0.005346981342881918, + -0.0034920545294880867, + -0.005100141745060682, + 0.0028785853646695614, + -0.009663044475018978, + -0.013735897839069366, + -0.011841041035950184, + -0.03072427026927471, + 0.008813626132905483, + 0.023885361850261688, + -0.01454175729304552, + 0.0005186354392208159, + 0.021736405789852142, + -0.007593947928398848, + -0.013322078622877598, + -0.0049222721718251705, + -0.013060719706118107, + -0.01330029871314764, + -0.020327968522906303, + -0.005582930985838175, + 0.0007564000552520156, + 0.009924404323101044, + -0.009292785078287125, + 0.0022251864429563284, + 0.007906127721071243, + 0.004446743056178093, + 0.006131060421466827, + 0.016001014038920403, + 0.0063561201095581055, + 0.010439863428473473, + 0.006308929994702339, + 0.01870173029601574, + -0.023783722892403603, + 0.0031381300650537014, + 0.02212844416499138, + -0.001462887623347342, + 0.0033214446157217026, + 0.028894754126667976, + 0.004472152795642614, + -0.0023885362315922976, + 0.006519469432532787, + 0.007045818958431482, + -0.006287150084972382, + 0.014069858007133007, + 0.006112910341471434, + 0.007971467450261116, + -0.015187895856797695, + 0.006421459838747978, + 0.0009206573013216257, + 0.0071474588476121426, + -0.0017805121606215835, + 0.02279636450111866, + -0.016407573595643044, + 0.002508325967937708, + -0.0374615415930748, + 0.006239959970116615, + -0.010933542624115944, + 0.007187388371676207, + -0.03147931024432182, + -0.016901252791285515, + 0.024030562490224838, + 0.010672182776033878, + 0.002350421156734228, + 0.013706858269870281, + -0.007292658556252718, + -0.010824643075466156, + 0.010439863428473473, + -0.0019366019405424595, + -0.00041291184606961906, + 0.01849845051765442, + 0.01720617339015007, + 0.009067725390195847, + 0.01341645885258913, + 0.015783214941620827, + -0.0007409725803881884, + -0.013873837888240814, + 0.0050420621410012245, + 0.0054885512217879295, + 0.016131693497300148, + -0.001358525361865759, + 0.012015281245112419, + 0.0019202668918296695, + -0.026266638189554214, + 0.008581306785345078, + 0.01350357849150896, + -0.00533972168341279, + -0.0032924048136919737, + 0.0023903511464595795, + 0.025889119133353233, + -0.002069096779450774, + -0.005071102175861597, + -0.008639385923743248, + 0.004671802744269371, + -0.02019728720188141, + -0.004268873017281294, + -0.018004771322011948, + 0.00671548955142498, + -0.00014939694665372372, + 0.012937299907207489, + -0.006123800296336412, + -0.011957201175391674, + -0.006592069752514362, + 0.008036807179450989, + 0.007223688531666994, + -0.015928415581583977, + -0.008603086695075035, + -0.007111158687621355, + -0.009750164113938808, + -0.020560286939144135, + -0.002524660900235176, + 0.013576178811490536, + -0.016727013513445854, + 0.03316362574696541, + -0.008290906436741352, + -0.016785092651844025, + -0.01118038222193718, + -0.01302441954612732, + -0.006105650216341019, + 0.026644157245755196, + 0.017162613570690155, + -0.008196527138352394, + 0.0016997448401525617, + 0.022404324263334274, + 0.02236076444387436, + -0.0342961847782135, + 0.005401431582868099, + 0.004526603035628796, + 0.0034521245397627354, + -0.021112047135829926, + 0.01302441954612732, + 0.008015027269721031, + -0.0006357027450576425, + -0.0016933922888711095, + -0.004900492262095213, + 0.00144473765976727, + 0.017786972224712372, + -0.008109407499432564, + -0.0053832815028727055, + 0.0024230212438851595, + -0.02101040631532669, + -0.01916636899113655, + 0.007416078355163336, + -0.008479666896164417, + -0.0002997014089487493, + 0.02215748466551304, + -0.013547138310968876, + -0.007855307310819626, + -0.008813626132905483, + -0.015013656578958035, + -0.010113163851201534, + 0.0007686512544751167, + -0.00752134807407856, + 0.0168576929718256, + -0.014215057715773582, + 0.021983245387673378, + -0.016117174178361893, + -0.021881604567170143, + -0.003136314917355776, + 0.0004287930787540972, + -0.01025836355984211, + -0.006617479491978884, + 0.005336091388016939, + -0.023769201710820198, + -0.00021019935957156122, + 0.0380423404276371, + 0.017133573070168495, + -0.010788342915475368, + 0.016668934375047684, + -0.019790727645158768, + 0.028778593987226486, + 0.01665441319346428, + 0.000949243491049856, + -3.247143104090355e-5, + 0.02022632770240307, + -0.018396811559796333, + -0.011695841327309608, + -0.02230268530547619, + -0.005002132151275873, + 0.005913260392844677, + 0.011158602312207222, + 0.0036063992884010077, + -0.007191018667072058, + -0.012225820682942867, + -0.0037461540196090937, + 0.010919022373855114, + 0.0026008908171206713, + 0.00871924590319395, + -0.005797100719064474, + 0.00913306511938572, + -0.01430943701416254, + 0.010839162394404411, + -0.006486799567937851, + -0.012857439927756786, + -0.007833527401089668, + 0.02487272024154663, + -0.01755465194582939, + 0.013336598873138428, + 0.010425343178212643, + -0.007136568892747164, + 0.01922444999217987, + 0.008109407499432564, + -0.0049150120466947556, + -0.0003412194491829723, + 0.017656292766332626, + -0.01403355784714222, + 0.018658170476555824, + 0.011405441910028458, + 0.013082499615848064, + 0.018745290115475655, + -0.01711905188858509, + -0.0006670114235021174, + -0.01576869562268257, + -0.004900492262095213, + 0.021315326914191246, + 0.005140071734786034, + 0.00038137627416290343, + 0.004562902729958296, + 0.003992993850260973, + 0.005031172186136246, + 0.028633395209908485, + 0.008770066313445568, + 0.007263618521392345, + 0.0009819134138524532, + -0.006011270452290773, + 0.0006588439573533833, + 0.023667562752962112, + -0.0044104428961873055, + -0.02838655561208725, + -0.009800984524190426, + -0.0139028774574399, + -0.025235719978809357, + -0.01024384330958128, + -0.005194521974772215, + -0.014846676029264927, + -0.004791592247784138, + -0.0048170024529099464, + -0.002018276834860444, + 0.008995126001536846, + 0.017685331404209137, + 0.009125805459916592, + -0.0034521245397627354, + 0.02999827265739441, + -0.0057680606842041016, + 0.0017333222785964608, + 0.016349494457244873, + -0.00883540604263544, + 0.010556023567914963, + -0.003671739250421524, + 0.0019874218851327896, + -0.008465146645903587, + -0.003568284446373582, + -0.0026263007894158363, + 0.00382964382879436, + 0.00845788698643446, + -0.005960450507700443, + -0.0006220902432687581, + -0.007140198722481728, + -0.02469848096370697, + -0.006170990411192179, + -0.018019290640950203, + -0.028662433847784996, + -0.0282413549721241, + 0.005227191839367151, + 0.02832847461104393, + -0.00665014935657382, + -0.0003904512559529394, + 0.013590698130428791, + 0.01321317907422781, + -0.0203134473413229, + 0.011993501335382462, + -0.013242218643426895, + -0.022346245124936104, + 0.003967583645135164, + 0.005739021115005016, + -0.011144082061946392, + -0.009989744052290916, + 0.00964126456528902, + 0.00946702528744936, + -0.004457633011043072, + -0.004679062403738499, + -0.0033287047408521175, + -0.016465654596686363, + 0.015797734260559082, + 0.010381783358752728, + -0.0062218098901212215, + -0.021939685568213463, + 0.008588566444814205, + -0.006232700310647488, + -0.000965578481554985, + -0.0006851613870821893, + 0.005648271180689335, + 0.024567801505327225, + 0.0017877721693366766, + -0.02432096190750599, + 0.005020282231271267, + 0.017743412405252457, + 0.019355129450559616, + 0.009292785078287125, + -0.011630501598119736, + -0.00972838420420885, + -0.004704472608864307, + -0.004973092116415501, + 0.006432349793612957, + 0.012429100461304188, + -0.001992866862565279, + 0.00508562196046114, + 0.00701677892357111, + 0.027094276621937752, + -0.003412194550037384, + -0.010810122825205326, + -0.012066100724041462, + 0.0059568206779658794, + -0.003187134861946106, + 0.004758922383189201, + -0.02469848096370697, + -0.011361882090568542, + -0.006105650216341019, + -0.0182951707392931, + -0.02692003734409809, + -0.03145027160644531, + -0.012886479496955872, + 0.0032433997839689255, + -0.006933289114385843, + 0.018454890698194504, + 0.013539878651499748, + -0.004370512906461954, + -0.007993247359991074, + 0.001409345306456089, + -0.006962329149246216, + -0.008588566444814205, + 0.006798979360610247, + -0.02066192775964737, + 0.002722495701164007, + -0.002192516578361392, + -0.003299664705991745, + 2.8203354304423556e-5, + 0.023449763655662537, + 0.004548382945358753, + 0.02051672711968422, + -0.011129562743008137, + -0.01220404077321291, + 0.018571050837635994, + -0.0058878506533801556, + -0.017859572544693947, + -0.0012559780152514577, + -0.002070911694318056, + -0.0009211110300384462, + 0.01717713288962841, + -0.0018585569923743606, + -0.021678324788808823, + 0.01761273294687271, + 0.007819007150828838, + -0.015362135134637356, + -0.00574265094473958, + -0.002709790598601103, + 0.00831268634647131, + 0.023987002670764923, + 0.027268515899777412, + -0.010047824122011662, + 0.006711859256029129, + -0.00651220977306366, + 0.007176498416811228, + -0.012980859726667404, + 0.0046899523586034775, + 0.004098263569176197, + -0.0024520610459148884, + 0.023899881169199944, + 0.009481544606387615, + 0.0064613898284733295, + 0.01250896044075489, + 0.005379651673138142, + -0.024045081809163094, + 0.009706604294478893, + -0.015405695885419846, + 0.016901252791285515, + -0.006657409481704235, + 0.03859409689903259, + 0.01078108325600624, + -0.0006851613870821893, + -0.009401684626936913, + -0.00468269269913435, + -0.0003961231268476695, + -0.0016525548417121172, + -0.0019347869092598557, + 0.0033994896803051233, + 0.012472660280764103, + -0.007666547782719135, + 0.0030038203112781048, + -0.025482559576630592, + -0.0034938694443553686, + -0.0036808140575885773, + 0.01936964876949787, + -0.0063415998592972755, + -0.023159362375736237, + 0.007292658556252718, + -0.03876833990216255, + -0.013772197999060154, + -0.028197795152664185, + 0.01749657280743122, + -0.003953063860535622, + 0.009096765890717506, + -0.013743158429861069, + 0.025380918756127357, + 0.0306952316313982, + -0.007339848205447197, + -0.008566786535084248, + -0.006882469169795513, + 0.005002132151275873, + 0.013583438470959663, + -0.028836674988269806, + 0.013554398901760578, + 0.01717713288962841, + -0.0020255367271602154, + 0.0034793494269251823, + 0.007891607470810413, + -0.01523145567625761, + 0.0174384918063879, + 0.011514341458678246, + 0.002767870668321848, + 0.0038514239713549614, + 0.00762298796325922, + -0.01107874233275652, + 0.007252728566527367, + 0.0009546884684823453, + -0.0037134841550141573, + -0.01302441954612732, + 0.0015373025089502335, + -0.0011906380532309413, + -6.65877087158151e-5, + 0.021881604567170143, + 0.002201591618359089, + -0.01896308921277523, + 0.011790221557021141, + 0.02654251828789711, + 0.0559019111096859, + 0.0252212006598711, + -0.003414009464904666, + 0.010802863165736198, + 0.023957962170243263, + -0.03534162417054176, + 0.010984362103044987, + -0.0018322395626455545, + -0.026876477524638176, + -0.009779204614460468, + -0.007292658556252718, + -0.003221619874238968, + 0.014382037334144115, + 0.007093008607625961, + -0.007259988691657782, + 0.00463187275454402, + 0.006308929994702339, + -0.0029893002938479185, + -0.016073614358901978, + 0.006769939325749874, + 0.012792099267244339, + -0.004762552212923765, + -0.017830532044172287, + 0.006766309030354023, + 0.013031679205596447, + -0.0009034147951751947, + -0.0182951707392931, + -0.020168248564004898, + -0.016697973012924194, + -0.0004909567069262266, + 0.019413208588957787, + -0.01709001325070858, + -0.007252728566527367, + -0.006334339734166861, + -0.013343858532607555, + 0.01494105625897646, + -0.006813499145209789, + 0.020168248564004898, + -0.006555769592523575, + 0.006730009336024523, + -0.0030183400958776474, + -0.004087373614311218, + 0.0013104279059916735, + -0.020124688744544983, + -0.03020155243575573, + -0.0029384803492575884, + 0.01738041266798973, + -0.017453012987971306, + 0.022317204624414444, + -0.005964080337435007, + 0.007107528857886791, + -0.003384969662874937, + -0.008755546063184738, + -0.013409198261797428, + -0.015783214941620827, + 0.013677818700671196, + 0.03548682481050491, + -0.018512969836592674, + 0.0013276704121381044, + -0.03130507096648216, + -0.013764938339591026, + -0.00256096082739532, + 0.009082245640456676, + 0.026237597689032555, + -0.017961211502552032, + 0.014970095828175545, + 0.0010690332856029272, + -0.01495557650923729, + 0.004552012775093317, + -0.0054413615725934505, + -0.010178503580391407, + -0.012029800564050674, + -0.0044685229659080505, + -0.007463268004357815, + -0.02057480812072754, + -0.004606462549418211, + -0.01907924935221672, + 0.007869827561080456, + 0.0022124815732240677, + 0.03086947090923786, + 0.0065158396027982235, + -0.003588249208405614, + -0.002421206096187234, + 0.006904249079525471, + -0.02636827901005745, + 0.010062344372272491, + -0.019151849672198296, + 0.01067944336682558, + 0.0029185153543949127, + 0.00191482191439718, + -0.018106412142515182, + -0.011724881827831268, + -0.005688201170414686, + -0.002880400512367487, + 0.007093008607625961, + -0.012225820682942867, + -0.003323259763419628, + -0.0019601969979703426, + -0.0021199167240411043, + 0.008080366998910904, + -0.0011298357276245952, + -0.004094633273780346, + -0.0009864509338513017, + 0.013002639636397362, + -0.016552774235606194, + -0.03769386187195778, + -0.010200283490121365, + 0.009329085238277912, + 0.005564781371504068, + 0.017961211502552032, + -0.013176878914237022, + 0.002557330997660756, + 0.004232573322951794, + -0.00784078799188137, + -0.009786464273929596, + 0.008944305591285229, + 0.008653906174004078, + 0.008029547519981861, + 0.005419581197202206, + 0.00527438148856163, + -0.02504695951938629, + 0.013772197999060154, + 0.02060384675860405, + 0.01697385311126709, + -0.0011733956634998322, + 0.007811747491359711, + 0.007869827561080456, + 0.023362642154097557, + -0.011528861708939075, + -0.006450499873608351, + 0.02270924299955368, + -0.00021927434136159718, + -0.016030054539442062, + 0.005343351513147354, + -0.0014492751797661185, + -0.00463187275454402, + 0.01934061013162136, + -0.0153476158156991, + 0.002671675756573677, + -0.008995126001536846, + -0.01939868927001953, + 0.004933162126690149, + 0.017743412405252457, + -0.0018159046303480864, + -0.017772451043128967, + -0.003020155243575573, + 0.00027156894793733954, + 0.011209421791136265, + 0.010940802283585072, + 0.0010291034122928977, + 0.0021398814860731363, + -0.005797100719064474, + 0.004552012775093317, + 0.005564781371504068, + 0.0019202668918296695, + 0.007252728566527367, + 0.002330456394702196, + 0.014498196542263031, + -0.007637507747858763, + -0.006312559824436903, + 0.0010381783358752728, + 0.011223942041397095, + 0.017990252003073692, + 0.011717621237039566, + -0.015507335774600506, + 0.00191482191439718, + 0.0014701476320624352, + 0.02141696587204933, + -0.007310808170586824, + -0.0038695738185197115, + -0.02792191505432129, + 0.011521602049469948, + -0.0022142964880913496, + 0.0009156660526059568, + -0.012639639899134636, + -0.005444991402328014, + -0.011812001466751099, + -0.009706604294478893, + -0.011463521979749203, + -0.01855652965605259, + 0.012813880108296871, + 0.02253500372171402, + 0.020966846495866776, + 0.009946184232831001, + -0.007717367727309465, + -0.005081992130726576, + 0.003384969662874937, + 0.005063842050731182, + 0.015405695885419846, + -0.0021199167240411043, + 9.307532309321687e-5, + 0.006893359124660492, + -0.005437731277197599, + -0.0018767070723697543, + -0.0033976745326071978, + 0.009917144663631916, + 0.0017514722421765327, + 0.00765928765758872, + -0.014178757555782795, + 0.0004217599635012448, + -0.00046305113937705755, + -0.012770319357514381, + -0.0094379847869277, + -0.010693962685763836 + ], + "df1eae99-5b15-4b4e-bfca-c42eed6ef25b": [ + -0.005388755816966295, + -0.02827470190823078, + -0.02583763562142849, + -0.002286228584125638, + -0.022312169894576073, + -0.005915209650993347, + -0.005119613837450743, + 0.014859006740152836, + 0.02512780949473381, + 0.04053101688623428, + -0.010150499641895294, + 0.012049281969666481, + 0.0031616794876754284, + 0.021495871245861053, + 0.018621079623699188, + -0.03165820240974426, + -0.01220899261534214, + 0.022702574729919434, + 0.005622406490147114, + -0.00526453647762537, + 0.05910477414727211, + -0.01630231738090515, + -0.00409036735072732, + 0.00759512884542346, + -0.0054863570258021355, + -0.04157209396362305, + 0.013167256489396095, + -0.015225749462842941, + -0.021436719223856926, + -0.03657965734601021, + 0.015817269682884216, + 0.005421289708465338, + 0.0016444282373413444, + 0.023542534559965134, + -0.0265711210668087, + -0.025719331577420235, + -0.01159381028264761, + 0.0029945748392492533, + -0.005838311742991209, + 0.00476470123976469, + -0.00634110439568758, + -0.004217544570565224, + -0.00845283456146717, + -0.007210640236735344, + -0.03319615498185158, + -0.023696329444646835, + -0.00694445613771677, + 0.009369691833853722, + 0.02407490275800228, + -0.01748535968363285, + 0.024086732417345047, + 0.028109075501561165, + 0.007506400812417269, + -0.03641403093934059, + 0.027186302468180656, + -0.03326713666319847, + 0.003259280463680625, + 0.09805051237344742, + 0.012291805818676949, + -0.044860947877168655, + -0.007246131543070078, + -0.02140122838318348, + 0.036011796444654465, + -0.004226417280733585, + 0.0031646371353417635, + -0.006264206953346729, + -0.0025598069187253714, + 0.01591191440820694, + -0.011227067559957504, + 0.01003219559788704, + -0.011576064862310886, + -0.013545829802751541, + -0.06762267649173737, + 0.0066546108573675156, + 0.011877740733325481, + 0.0025494552683085203, + 0.033882319927215576, + -0.024323342368006706, + 0.021909935399889946, + -0.002268482930958271, + -0.012421940453350544, + -0.010156414471566677, + 0.03277026116847992, + 0.02150770276784897, + -0.007204725407063961, + 0.023045657202601433, + -0.016467943787574768, + -0.03274660184979439, + -0.06307979673147202, + -0.012646717950701714, + 0.01580544002354145, + 0.012481092475354671, + -0.002235949272289872, + 0.016243165358901024, + 0.0015017237747088075, + -0.016184013336896896, + 0.001674004248343408, + 0.02292735129594803, + 0.018810367211699486, + -0.002604170935228467, + -0.012421940453350544, + -0.0011416354682296515, + -0.03804662823677063, + 0.019449209794402122, + -0.011623386293649673, + -0.024323342368006706, + -0.009890230372548103, + 0.017059464007616043, + -0.03996315598487854, + -0.03686358407139778, + 0.02704433724284172, + -0.04658818989992142, + 0.0052674938924610615, + -0.012232652865350246, + -0.03083007223904133, + -0.02026550844311714, + -0.02043113298714161, + -0.007642450742423534, + -0.008961542509496212, + -0.023412398993968964, + 0.010286549106240273, + 0.01326189935207367, + 0.005125529132783413, + -0.03156355768442154, + 0.003915868699550629, + 0.013403864577412605, + 0.0052408757619559765, + 0.023719990625977516, + 0.03828323632478714, + 0.003416033461689949, + 0.02704433724284172, + -0.03710019588470459, + -0.0032178740948438644, + -0.03563322126865387, + 0.0038951653987169266, + 0.033148832619190216, + 0.022205697372555733, + 0.07855398207902908, + -0.004347679205238819, + 0.03158722072839737, + -0.05001901090145111, + -0.01832531951367855, + -0.0008732327842153609, + -0.017544511705636978, + 0.01218533143401146, + -0.026973355561494827, + -0.021957257762551308, + 0.04930918663740158, + -0.029552387073636055, + 0.02515147067606449, + -0.019520191475749016, + -0.006743338890373707, + -0.02971801348030567, + 0.014267485588788986, + 0.0138770816847682, + 0.02420503832399845, + -0.009322370402514935, + 0.050113655626773834, + 0.014421280473470688, + 0.02179163135588169, + 0.030948376283049583, + -0.047510962933301926, + -0.007234301418066025, + -0.021247433498501778, + 0.042494866997003555, + 0.007482740096747875, + 0.05598154291510582, + 0.04332299530506134, + -0.017674645408988, + 0.001431480748578906, + 0.008186650462448597, + 0.008523817174136639, + 0.024701915681362152, + 0.023625347763299942, + 0.013971724547445774, + -0.006619119551032782, + 0.0227144043892622, + 0.0015039420686662197, + 0.057543158531188965, + -0.019129788503050804, + -0.011321711353957653, + -0.01808871142566204, + 0.014314807020127773, + -0.020419303327798843, + -0.029836317524313927, + 0.016976650804281235, + 0.007476824801415205, + 0.008015109226107597, + 0.006222800351679325, + 0.032178740948438644, + -0.008582969196140766, + 0.0013922924408689141, + 0.017307903617620468, + 0.035065360367298126, + -0.011126508936285973, + -0.04183236137032509, + -0.04119351878762245, + -0.00826946273446083, + -0.024122225120663643, + 0.0403890497982502, + 0.024843880906701088, + -0.03591715171933174, + -0.03617742285132408, + 0.026216208934783936, + -0.036011796444654465, + 0.0034426520578563213, + -0.022619761526584625, + -0.03392964228987694, + 0.001449965755455196, + -0.003815310075879097, + 0.021838953718543053, + -0.023199452087283134, + 0.02702067792415619, + 0.02486754022538662, + -0.03184748813509941, + 0.005773244425654411, + 0.0005242354236543179, + 0.021649666130542755, + -0.010404853150248528, + -0.004149519372731447, + 0.003489973722025752, + 0.022193865850567818, + 0.005793947726488113, + 0.00014686356007587165, + -0.012918817810714245, + 0.004250077996402979, + -0.010055855847895145, + 0.05654940381646156, + -0.023258604109287262, + -0.01701214350759983, + 0.016680890694260597, + -0.018230676651000977, + 0.0029309862293303013, + -0.04017610475420952, + -0.004167265258729458, + 0.02336507849395275, + 0.016976650804281235, + -0.010002619586884975, + -0.002664801897481084, + -0.007677942048758268, + 0.01362864300608635, + 0.029339440166950226, + -0.006914880126714706, + 0.0045399232767522335, + -0.022430473938584328, + 0.026429155841469765, + -0.014811684377491474, + 0.0304278377443552, + 0.01076568104326725, + 0.026618443429470062, + -0.0028333852533251047, + 0.026618443429470062, + 0.028416667133569717, + 0.02915015257894993, + -0.017414376139640808, + 0.00042441627010703087, + 0.02612156607210636, + -0.020312828943133354, + -0.020040730014443398, + -0.004563583992421627, + 0.0069622015580534935, + 0.008606629446148872, + -0.02820371836423874, + -8.752661960897967e-5, + 0.023932937532663345, + -0.029599709436297417, + 0.05167527124285698, + -0.025411739945411682, + 0.01982778310775757, + 0.021696988493204117, + -0.014681549742817879, + -0.012930648401379585, + -0.030072925612330437, + 0.03904038295149803, + -0.013593151234090328, + -0.007399927359074354, + -0.0068438975140452385, + 0.014042707160115242, + 0.01003219559788704, + 0.016243165358901024, + -0.004072621930390596, + 0.019390057772397995, + 0.0029679564759135246, + -0.004318103194236755, + 0.014279316179454327, + -0.013853420503437519, + -0.025269774720072746, + 0.017059464007616043, + -0.017343394458293915, + 0.011262559331953526, + 0.020916180685162544, + 0.011806758120656013, + -0.0056253643706440926, + -0.0029797868337482214, + 0.017923085018992424, + 0.0373368039727211, + 0.016030218452215195, + -0.013119935058057308, + -0.02392110787332058, + 0.02118828147649765, + 0.020998993888497353, + 0.021543193608522415, + -0.046256937086582184, + -0.022276679053902626, + 4.7772250582056586e-6, + -0.018053218722343445, + 0.01942554861307144, + 0.0066546108573675156, + -0.027375590056180954, + 0.03189481049776077, + 0.0054774838499724865, + -0.013510338962078094, + -0.04826810956001282, + -0.01472887210547924, + -0.011351287364959717, + 0.0004443801299203187, + -0.032415349036455154, + -0.0005386537523008883, + 0.024039411917328835, + -0.033172495663166046, + -0.04024708643555641, + -0.004031215328723192, + -0.05645475909113884, + 0.028795240446925163, + 0.026973355561494827, + -0.010582310147583485, + 0.04859936237335205, + -0.004149519372731447, + -0.004202756565064192, + 0.013202747330069542, + 0.021022655069828033, + 0.01772196777164936, + -0.024003921076655388, + -0.014764362946152687, + -0.03423723205924034, + -0.0206914022564888, + -0.031184984371066093, + -0.030948376283049583, + -0.00884915329515934, + 0.0016695678932592273, + -0.00433880602940917, + 0.009062101133167744, + 0.02985997684299946, + -0.008133413270115852, + 0.019946087151765823, + 0.013616812415421009, + 0.013001631014049053, + -0.011250728741288185, + -0.0060808355920016766, + -0.002978307893499732, + 0.000617769721429795, + -0.009038439951837063, + 0.024063073098659515, + 0.0036674300208687782, + 0.05475118011236191, + -0.017580002546310425, + 0.0039306567050516605, + -0.004415703937411308, + 0.023116638883948326, + 0.01617218367755413, + -0.044174786657094955, + -0.04086226597428322, + -0.03520732745528221, + -0.006281952373683453, + 0.017627324908971786, + 0.053473494946956635, + 0.003655599430203438, + 0.014409450814127922, + -0.04015244171023369, + 0.02413405478000641, + -0.045570775866508484, + 0.025435401126742363, + -0.03201311454176903, + -0.03731314092874527, + -0.023163961246609688, + -0.024820219725370407, + 0.0450502373278141, + -0.006240546237677336, + -0.02079787664115429, + 0.009275048971176147, + -0.018609249964356422, + 0.016349639743566513, + -0.029505064710974693, + 0.0035254647955298424, + 0.028866222128272057, + 0.01612486131489277, + 0.002482909243553877, + 0.017757458612322807, + -0.03643769025802612, + -0.018573757261037827, + -0.013013460673391819, + 0.0033036444801837206, + -0.00986065436154604, + 0.0022063732612878084, + -0.025222454220056534, + -0.04164307564496994, + -0.006063089706003666, + -0.017946746200323105, + 0.02213471382856369, + -0.00048319867346435785, + 0.009730519726872444, + 0.013427525758743286, + -0.03279392048716545, + 0.016740042716264725, + -0.035775188356637955, + -0.024086732417345047, + -0.0003584247315302491, + -0.006891218945384026, + 0.02704433724284172, + 0.01222082320600748, + -0.0018070965306833386, + 0.019082466140389442, + 0.029765333980321884, + 0.04921454191207886, + 0.03272293880581856, + -0.010026279836893082, + 0.010251058265566826, + 0.04112253710627556, + -0.0032858988270163536, + -0.026878712698817253, + 0.02898452617228031, + 0.06317444145679474, + -0.0130371218547225, + 0.02310480922460556, + 0.022359492257237434, + 0.0056401523761451244, + 0.00040519185131415725, + 0.0016651315381750464, + -0.015900082886219025, + -0.03560956194996834, + 0.041761379688978195, + 0.08494240790605545, + -0.02562468685209751, + 0.006914880126714706, + 0.016586247831583023, + 0.010984543710947037, + 0.0248912014067173, + 0.03236802667379379, + -0.009807417169213295, + -0.0006654610624536872, + -0.026476478204131126, + -0.0029576048254966736, + 0.010422599501907825, + 0.002589382929727435, + -0.036768943071365356, + -0.014054537750780582, + -0.03591715171933174, + -0.008233971893787384, + 0.02176797017455101, + 0.009760095737874508, + 0.003906995989382267, + 0.03492339700460434, + -0.06104496121406555, + 0.0071159969083964825, + 0.008914221078157425, + 0.014054537750780582, + 0.014847176149487495, + -0.004460067953914404, + 0.03875645250082016, + -0.0052881971932947636, + -0.008139328099787235, + 0.016929330304265022, + 0.054230641573667526, + -0.0390167236328125, + -0.0031350611243396997, + -0.005879718344658613, + -0.028605952858924866, + 0.0031823827885091305, + -0.017035802826285362, + 0.012599396519362926, + -0.03717117756605148, + 0.009582639671862125, + -0.017899423837661743, + 0.04521586000919342, + 0.028534971177577972, + 0.00012338758097030222, + -0.0168346855789423, + 0.009215896017849445, + -0.004149519372731447, + -0.018621079623699188, + -0.035988133400678635, + -0.021472210064530373, + -0.026263529434800148, + -0.007121912203729153, + 0.004131773952394724, + -0.017213258892297745, + -0.05863155797123909, + -0.004563583992421627, + 0.025056827813386917, + 0.013119935058057308, + 0.05503511056303978, + 0.03475777059793472, + -0.01806505024433136, + 0.02224118821322918, + -0.01869206130504608, + -0.03539661318063736, + -0.013498508371412754, + -0.03807028755545616, + -0.019070636481046677, + -0.013948064297437668, + 0.0497824028134346, + 0.011339456774294376, + 0.02037198096513748, + 0.011025950312614441, + -0.024193206802010536, + 0.02995462156832218, + 0.006625034846365452, + 0.041027892380952835, + -0.012256314046680927, + -0.03989217430353165, + -0.033385444432497025, + 0.01701214350759983, + 0.007991448044776917, + -0.0006942977197468281, + 0.0038123526610434055, + 0.028393005952239037, + -0.0045044319704174995, + -0.0031764674931764603, + 0.037668053060770035, + -0.0042116292752325535, + -0.024003921076655388, + 0.003936572000384331, + -0.0023601686116307974, + -0.0016680890694260597, + -0.032462671399116516, + 0.0008288687095046043, + -0.01045217551290989, + -0.011871825903654099, + 0.024820219725370407, + -0.002682547550648451, + -0.022383153438568115, + 0.005734795704483986, + -0.032888565212488174, + 0.026263529434800148, + 0.015923744067549706, + 0.011848164722323418, + 0.023885617032647133, + -0.009198150597512722, + 0.001004846184514463, + 0.016089370474219322, + -0.01497731078416109, + 0.02510415017604828, + 0.015249410644173622, + 0.003401245456188917, + -0.004986521787941456, + 0.05763780325651169, + 0.019839612767100334, + 0.0185146052390337, + -0.010682868771255016, + 0.023861955851316452, + -0.024347001686692238, + 0.017686476930975914, + -0.014042707160115242, + -0.016929330304265022, + -0.0029620411805808544, + -0.018396301195025444, + -0.015154766850173473, + -0.03175284340977669, + -0.0326046347618103, + -0.0002820815425366163, + -0.010789342224597931, + 0.012031536549329758, + 0.013746947050094604, + 0.023092977702617645, + 0.009026609361171722, + 0.015746288001537323, + -0.007281622849404812, + 0.01617218367755413, + 0.004812023136764765, + 0.016195842996239662, + 0.04204531013965607, + 0.023932937532663345, + 0.016799194738268852, + 0.011611556634306908, + 0.002009692369028926, + 0.045310504734516144, + -0.0018322361866012216, + -0.0019002610351890326, + -0.015486018732190132, + 0.0026736746076494455, + 0.021342076361179352, + -0.023980259895324707, + 0.007163318805396557, + 0.0034633551258593798, + -0.014835345558822155, + 0.020147204399108887, + -0.018100541085004807, + -0.00022311431530397385, + -0.0009220332722179592, + 0.01649160496890545, + -0.007139658089727163, + 0.04471898451447487, + 0.0035787017550319433, + -0.0011135381646454334, + -0.02633451297879219, + 0.014492263086140156, + 0.028605952858924866, + 0.008251717314124107, + -0.006329274270683527, + 0.003921783994883299, + 0.023992089554667473, + 0.0017819568747654557, + -0.005453823134303093, + -0.01553334016352892, + -0.014066368341445923, + 0.026642104610800743, + 0.018573757261037827, + -0.017970407381653786, + -0.014338468201458454, + 0.027091659605503082, + -0.023542534559965134, + -0.002417841926217079, + 0.026926033198833466, + 0.005311858374625444, + 0.029031848534941673, + 0.010860324837267399, + 0.028842560946941376, + 0.016089370474219322, + -0.016195842996239662, + 0.049877047538757324, + 0.0118540795519948, + -0.043181028217077255, + 0.050776157528162, + -0.04053101688623428, + 0.03357473015785217, + -0.00952940247952938, + 0.0015335180796682835, + 0.0018351937178522348, + -0.008831407874822617, + 0.020076220855116844, + -0.00021756879868917167, + -0.022513287141919136, + 0.016704551875591278, + -0.015923744067549706, + -0.008890559896826744, + 0.0004698894626926631, + -0.011664792895317078, + 0.009162659756839275, + -0.0042678238824009895, + 0.013711455278098583, + 0.01782844215631485, + 0.0027387419249862432, + 0.010564563795924187, + 0.01998157799243927, + -0.015119276009500027, + 0.013510338962078094, + -0.026074243709445, + 0.026074243709445, + 0.03516000509262085, + 0.00986065436154604, + -0.009961212985217571, + 0.03449750319123268, + 0.02803809382021427, + -0.000976009585428983, + 0.017071295529603958, + -0.019046975299715996, + -0.021117297932505608, + -0.002151657361537218, + 0.01882219687104225, + -0.0025435402058064938, + -0.02392110787332058, + 0.022513287141919136, + -0.004179095383733511, + -0.007985533215105534, + 0.011895486153662205, + -0.003013799199834466, + -0.006175478920340538, + -0.002272919286042452, + 0.022099222987890244, + 0.009635875932872295, + -0.0054508657194674015, + 0.0027195175644010305, + -0.011818588711321354, + 0.006412087008357048, + 0.018207015469670296, + 0.002234470332041383, + 0.027115320786833763, + -0.017367055639624596, + 0.024216867983341217, + -0.03203677386045456, + -0.014894497580826283, + -0.03307785093784332, + -0.02269074320793152, + 0.004359509330242872, + -0.03537295386195183, + -0.014397620223462582, + -0.017106786370277405, + 0.08707188069820404, + -0.03040417656302452, + -0.0011652963003143668, + -0.00651264563202858, + 0.03156355768442154, + -0.0210344847291708, + 0.011676623485982418, + -0.005152147728949785, + -0.02198091894388199, + 0.0004931805888190866, + -0.03471044823527336, + 0.02995462156832218, + -0.03726581856608391, + -0.010611886158585548, + 0.02515147067606449, + 0.05238509550690651, + -0.0326046347618103, + 0.02586129680275917, + -0.004335848614573479, + -0.02803809382021427, + -0.01497731078416109, + 0.004826811142265797, + 0.008370021358132362, + 0.01495364960283041, + -0.03404794633388519, + -0.010298379696905613, + 0.027138981968164444, + 0.018502775579690933, + 0.016822855919599533, + -0.017792949452996254, + 0.04116985946893692, + -0.02631085179746151, + 0.027919789776206017, + 0.016243165358901024, + 0.006483069621026516, + 0.025672009214758873, + -0.032912224531173706, + -0.023116638883948326, + 0.03823591396212578, + 0.00526453647762537, + -0.0010869198013097048, + -0.019969746470451355, + 0.000776371278334409, + 0.04426942765712738, + -0.015793610364198685, + -0.01255207508802414, + 0.016184013336896896, + -0.006412087008357048, + -0.016763703897595406, + -0.025908617302775383, + 0.009695028886198997, + 0.0016858347225934267, + -0.013380204327404499, + 0.009186320006847382, + 0.0005305203376337886, + 0.006323358975350857, + -0.0011061441618949175, + 0.04370156675577164, + 0.007861313410103321, + -0.00803285464644432, + -0.0043861279264092445, + 0.006837982218712568, + 0.03631938621401787, + 0.026997016742825508, + -0.021484041586518288, + 0.03754974901676178, + 0.0304278377443552, + -0.023992089554667473, + 0.004590202588587999, + 0.006139987614005804, + -0.0030581632163375616, + -0.030688107013702393, + 0.03440285846590996, + -0.048220787197351456, + 0.023566193878650665, + -0.02796711027622223, + 0.0014063410926610231, + 0.009511657059192657, + 0.014326637610793114, + 0.007027268875390291, + 0.007340774871408939, + 0.04670649394392967, + -0.010730190202593803, + 0.03977387025952339, + 0.03478143364191055, + 0.007399927359074354, + 0.018266167491674423, + -0.020383812487125397, + -0.06610838323831558, + 0.04467166215181351, + -0.0008872814360074699, + -0.030309533700346947, + -0.000566381320822984, + 0.01096088346093893, + -0.03873279318213463, + -0.006891218945384026, + -0.031492576003074646, + 0.02510415017604828, + -0.0248912014067173, + 0.0287479180842638, + 0.01843179203569889, + 0.014823514968156815, + 0.017544511705636978, + -0.003001968841999769, + -0.015273070894181728, + -0.0044837286695837975, + 0.031043019145727158, + 0.008103837259113789, + -0.01769830659031868, + 0.009056185372173786, + 0.008843238465487957, + -0.0019076550379395485, + 0.023850124329328537, + 0.021886276081204414, + -0.01877487450838089, + 0.03736046329140663, + 0.08319150656461716, + -0.0016636527143418789, + 0.02919747494161129, + 0.01937822625041008, + -0.0026307895313948393, + -0.0061991396360099316, + -0.006678271573036909, + -0.024938523769378662, + -0.023755481466650963, + -0.008908305317163467, + 0.02079787664115429, + 0.007340774871408939, + -0.00338349980302155, + -0.0057436684146523476, + -0.002703250851482153, + 0.030522480607032776, + -0.00558691518381238, + 0.009665451943874359, + 0.0005586175830103457, + 0.005249748472124338, + 0.0272572860121727, + 0.015131105668842793, + -0.0012525456259027123, + -0.01953202113509178, + -0.0006077878060750663, + 0.025979600846767426, + -0.01688200794160366, + 0.004921454470604658, + -0.031445253640413284, + 0.024465305730700493, + 0.02870059758424759, + -0.007790330797433853, + 0.008630290627479553, + -0.00040371305658482015, + 0.00795595720410347, + -0.00046656213817186654, + 0.03516000509262085, + -0.00267811119556427, + -0.040081460028886795, + -0.0038448860868811607, + -0.024063073098659515, + -0.001987510360777378, + -0.004415703937411308, + 0.014894497580826283, + 0.0019180066883563995, + 0.03584617003798485, + 0.06506730616092682, + 0.030782749876379967, + 0.011126508936285973, + 0.005941827781498432, + 0.0029635198879987, + -0.029599709436297417, + 0.0047144219279289246, + -0.019046975299715996, + 0.002444460289552808, + -0.025648348033428192, + 0.024938523769378662, + 0.01222082320600748, + -0.0020008196588605642, + -0.010913562029600143, + 0.0006288607255555689, + -0.007151488214731216, + -0.0029472531750798225, + -0.0058146510273218155, + 0.0038419286720454693, + 0.010534987784922123, + 0.031729184091091156, + 0.018313487991690636, + -0.01832531951367855, + -0.02605058252811432, + 0.007707518059760332, + -0.019082466140389442, + -0.026074243709445, + -0.0060985810123384, + 0.008778170682489872, + -0.04732167720794678, + 0.008866898715496063, + 0.002857046201825142, + 0.01472887210547924, + 0.01171211525797844, + 0.00609266571700573, + -0.010629631578922272, + 0.006737423595041037, + -0.015604322776198387, + 0.0037768613547086716, + 0.020182695239782333, + -0.023021996021270752, + -0.009902060963213444, + -0.015876421704888344, + -0.04230557754635811, + -0.033882319927215576, + -0.02060859091579914, + 0.017650986090302467, + -0.014598737470805645, + -0.02292735129594803, + 0.004610905889421701, + 0.016243165358901024, + -0.0008835844346322119, + -0.025719331577420235, + -0.037431444972753525, + -0.022513287141919136, + 0.03750242665410042, + -0.027209963649511337, + 0.018609249964356422, + 0.015012801624834538, + -0.0001449226401746273, + -0.002187148667871952, + 0.009381522424519062, + 0.015462357550859451, + -0.013001631014049053, + -0.002864440204575658, + 0.05673868954181671, + 0.01685834676027298, + 0.03878011554479599, + -0.009056185372173786, + -0.03641403093934059, + -0.002682547550648451, + -0.017497189342975616, + -0.000264520786004141, + 0.04954579472541809, + -0.01942554861307144, + -0.019236261025071144, + 0.0014336989261209965, + 0.01575811766088009, + -0.020857028663158417, + -0.02512780949473381, + 0.022465966641902924, + -0.008056515827775002, + -0.006317443680018187, + 0.00634110439568758, + -0.009138998575508595, + -0.014220164157450199, + 0.019413717091083527, + 0.004412746522575617, + -0.012729531154036522, + -0.0005944785661995411, + -0.04088592901825905, + -0.009819247759878635, + -0.013451186940073967, + 0.026074243709445, + 0.02803809382021427, + -0.00010610406752675772, + -0.004199798684567213, + -0.03189481049776077, + -0.009050270542502403, + 0.0029354228172451258, + 0.03258097544312477, + -0.017650986090302467, + 0.016290487721562386, + -0.02969435229897499, + 0.0003974281426053494, + -0.005711134988814592, + 0.018029559403657913, + -0.0015497849090024829, + 0.02226484939455986, + 0.007086420897394419, + -0.011440015397965908, + -0.012350957840681076, + -0.004847514443099499, + 0.016314147040247917, + 0.008322699926793575, + 0.007198810111731291, + 0.009801502339541912, + -0.014172841794788837, + -0.006672356277704239, + 0.0011209321673959494, + 0.005864930339157581, + -0.018159693107008934, + 0.01243377011269331, + -0.015616153366863728, + 0.031184984371066093, + -0.004285569302737713, + -0.0033420934341847897, + -0.008713103830814362, + -0.001997862011194229, + -0.0018766002031043172, + 0.02583763562142849, + 0.006169563625007868, + 0.02872425690293312, + -0.02030099928379059, + -0.03662697598338127, + -0.02680772915482521, + 0.01388891227543354, + -0.013202747330069542, + 0.018656570464372635, + -0.02198091894388199, + -0.018763044849038124, + 0.013545829802751541, + -0.011576064862310886, + -0.0033864574506878853, + -0.005019055213779211, + -0.005826481617987156, + -0.025648348033428192, + -0.04467166215181351, + -0.030995698645710945, + -0.01054090354591608, + -0.0282510407269001, + -0.01640879176557064, + 0.04083860665559769, + -0.015900082886219025, + 0.056123506277799606, + 0.03307785093784332, + -0.011930977925658226, + -0.021756140515208244, + -0.01737888529896736, + -0.001841109013184905, + 0.016550756990909576, + -0.025246113538742065, + -0.027422910556197166, + -0.02379097230732441, + -0.009079846553504467, + 0.03059346415102482, + 0.018940500915050507, + 0.04526318237185478, + 0.013131764717400074, + -0.026145225390791893, + 0.01601838693022728, + -0.023625347763299942, + -0.008713103830814362, + -0.001934273517690599, + 0.024323342368006706, + -0.02609790489077568, + -0.017035802826285362, + 0.010020365007221699, + 0.020466625690460205, + 0.053473494946956635, + -0.019579343497753143, + 0.01554517075419426, + -0.012350957840681076, + 0.0010603013215586543, + 0.024015750735998154, + 0.022891860455274582, + 0.006435748189687729, + 0.010564563795924187, + -0.0673387423157692, + -0.024583611637353897, + -0.005805778317153454, + 0.007926381193101406, + 0.019082466140389442, + -0.006293782964348793, + 0.012906987220048904, + 0.009973043575882912, + -0.006778830196708441, + 0.04088592901825905, + 0.020833367481827736, + -0.013735116459429264, + 0.023566193878650665, + 0.03127962723374367, + -0.004906666465103626, + 0.019259922206401825, + 0.0007845046930015087, + 0.017674645408988, + 0.018975991755723953, + -0.01304895244538784, + -0.031705524772405624, + 0.004862302448600531, + 0.00015019087004475296, + -0.01302529126405716, + -0.02131841517984867, + 0.02969435229897499, + 0.005255663767457008, + 0.020750554278492928, + -0.01154057402163744, + -0.016633568331599236, + 0.0277541633695364, + 0.028676936402916908, + -0.014551415108144283, + -0.006400256883352995, + 0.004034172743558884, + 0.003155764192342758, + 0.016527095809578896, + 0.015900082886219025, + 0.021105468273162842, + 0.00925730261951685, + 0.0029442955274134874, + 0.03641403093934059, + 0.009168574586510658, + -0.020632250234484673, + -0.0035313800908625126, + -0.003297729417681694, + 0.0014913722407072783, + -0.03494705632328987, + 0.011558319441974163, + 0.008778170682489872, + 0.011830419301986694, + -0.007896805182099342, + -0.012918817810714245, + -0.00992572121322155, + -0.009399267844855785, + 0.0215313620865345, + 0.011930977925658226, + -0.02017086371779442, + 0.01076568104326725, + 0.0003523246559780091, + 0.01010909304022789, + 0.02118828147649765, + -0.010931307449936867, + -0.00018050632206723094, + -0.01154057402163744, + 0.009789671748876572, + 0.0014233472757041454, + -0.00485638715326786, + 0.009387437254190445, + 0.018597418442368507, + 0.008955627679824829, + -0.01701214350759983, + 0.0058501423336565495, + 0.01651526428759098, + -0.00443049194291234, + 0.011049611493945122, + 0.010197821073234081, + 0.026452817022800446, + -0.0030492905061692, + -0.002500654896721244, + -0.015178428031504154, + -0.010813003405928612, + 0.015627983957529068, + 0.004655269905924797, + -0.017035802826285362, + -0.015604322776198387, + -0.009174490347504616, + -0.023152129724621773, + -0.005563254468142986, + 0.0005634237313643098, + 0.010162330232560635, + 0.006240546237677336, + 0.032462671399116516, + 0.01940188743174076, + -0.00627603754401207, + 0.03710019588470459, + 0.013806099072098732, + -0.018017727881669998, + 0.012049281969666481, + -0.0012762064579874277, + 0.012918817810714245, + -0.03710019588470459, + 0.008719018660485744, + -0.04448237642645836, + -0.020442964509129524, + -0.0010987501591444016, + 0.022560609504580498, + 0.001909133861772716, + -0.023353246971964836, + 0.011576064862310886, + 0.02034832164645195, + 0.014267485588788986, + -0.037431444972753525, + -0.04010511934757233, + -0.019946087151765823, + 0.031161323189735413, + -0.018029559403657913, + -0.022856369614601135, + -0.03620108217000961, + 0.010298379696905613, + 0.009996703825891018, + 0.030498821288347244, + -0.006210970226675272, + -0.019330903887748718, + -0.014030876569449902, + 0.0008636206039227545, + -0.01470521092414856, + -0.009825162589550018, + -0.024725575000047684, + -0.0025198792573064566, + -0.003886292688548565, + 0.021838953718543053, + -0.006814321503043175, + 0.004927369765937328, + -0.0030078841373324394, + -0.009186320006847382, + 0.014054537750780582, + -0.03717117756605148, + 0.02211105264723301, + -0.017532680183649063, + 0.02512780949473381, + -0.0028200761880725622, + 0.0048415991477668285, + -0.004460067953914404, + -0.01117383036762476, + -0.003472228068858385, + -0.010883985087275505, + -0.014835345558822155, + -0.013001631014049053, + 0.012469261884689331, + -0.026760408654808998, + 0.01530856266617775, + 0.019212599843740463, + 0.02919747494161129, + -0.0019653283525258303, + -0.011990129947662354, + -0.02870059758424759, + -0.00031775765819475055, + -0.010487666353583336, + -0.005894506350159645, + -0.006648695562034845, + 1.3632709851663094e-5, + 0.01029246486723423, + 0.0035787017550319433, + 0.01092539168894291, + -0.021495871245861053, + -0.0023986175656318665, + -0.010978628881275654, + -0.011794927529990673, + -0.015142936259508133, + -0.0037384124007076025, + 0.01565164513885975, + -0.00576437171548605, + 0.010393023490905762, + -1.985985363717191e-5, + -0.005285239778459072, + -0.014149181544780731, + -0.008015109226107597, + 0.027351928874850273, + 0.007884974591434002, + 0.022962843999266624, + -4.290837387088686e-5, + -0.013463016599416733, + 0.00585605762898922, + -0.007884974591434002, + -0.016680890694260597, + 0.00024917820701375604, + -0.00247107888571918, + 0.010150499641895294, + 0.018573757261037827, + 0.024193206802010536, + -0.023021996021270752, + -0.012232652865350246, + -0.0005641630850732327, + -0.0024030539207160473, + -0.001987510360777378, + 0.030451498925685883, + 0.006985862273722887, + 0.005947743076831102, + 0.004403873346745968, + -0.015083784237504005, + -0.002101378282532096, + 0.023045657202601433, + 0.004741040524095297, + -0.000658806471619755, + -0.0033006868325173855, + -0.02583763562142849, + 0.0008140807040035725, + 0.022253017872571945, + -0.01756817288696766, + -0.01688200794160366, + 0.00036600360181182623, + 0.005418331827968359, + -0.01591191440820694, + 0.007328944746404886, + -0.00033494873787276447, + 0.020395642146468163, + -0.005101868417114019, + 0.04478996619582176, + 0.012268144637346268, + 0.012410109862685204, + -0.023388737812638283, + 0.005980276968330145, + -0.00012412697833497077, + -0.010801172815263271, + 0.0015246452530846, + 0.005444950424134731, + -0.053710103034973145, + 0.0044216192327439785, + 0.006820236798375845, + -0.024796558544039726, + 0.0016932287253439426, + 0.015379544347524643, + 0.0033746270928531885, + -0.01748535968363285, + -0.024962184950709343, + 0.02344788983464241, + -0.004362467210739851, + 0.018266167491674423, + 0.0037384124007076025, + -0.010546818375587463, + -0.00986065436154604, + -0.006311528384685516, + 0.009635875932872295, + 0.02851130999624729, + 0.022596100345253944, + -0.029244795441627502, + -0.009647706523537636, + -0.02376731112599373, + 0.01856192760169506, + 0.025908617302775383, + -0.011629302054643631, + -0.011978299356997013, + 0.024701915681362152, + -0.014078198932111263, + 0.009854739531874657, + 0.01469338033348322, + -0.007394012063741684, + 0.01591191440820694, + 0.0012628972763195634, + 0.02095167152583599, + 0.005175808444619179, + 0.017236920073628426, + -0.004332891199737787, + 0.03418990969657898, + -0.009050270542502403, + 0.017816610634326935, + 0.019543852657079697, + 0.027683179825544357, + 0.004610905889421701, + -0.012001960538327694, + -0.012824174016714096, + -0.023483382537961006, + -0.026500139385461807, + 0.007683857344090939, + 0.012268144637346268, + -0.004572457168251276, + 0.004158392082899809, + -0.023069316521286964, + 0.023743651807308197, + -0.008565223775804043, + -0.0008562266011722386, + -0.023932937532663345, + 0.002247779630124569, + 0.003457440063357353, + 0.0021501786541193724, + 0.016799194738268852, + -0.0255773663520813, + 0.035278309136629105, + -0.04185602441430092, + 0.016420621424913406, + 0.011641132645308971, + 0.004202756565064192, + -0.006063089706003666, + 0.015687135979533195, + -0.030309533700346947, + 0.018147863447666168, + 0.007530061528086662, + -0.004037130624055862, + -0.01143409963697195, + 0.016479773446917534, + -0.011463675647974014, + -0.004865259863436222, + -0.018869519233703613, + 0.020975332707166672, + -0.0001630379556445405, + 0.0035343377385288477, + 0.003901080694049597, + -0.0015616152668371797, + -0.00325632281601429, + 0.013486677780747414, + 0.008393682539463043, + -0.017426207661628723, + -0.003605320118367672, + 0.0185146052390337, + -0.00392474140971899, + -2.0033150576637127e-5, + -0.001075828680768609, + -0.021342076361179352, + -0.02168515883386135, + -0.020513946190476418, + -0.005095953121781349, + -0.0016163310501724482, + 0.003679260378703475, + -0.024796558544039726, + -0.006281952373683453, + -0.012824174016714096, + -0.03305419161915779, + 0.02437066286802292, + 0.0073821814730763435, + 0.0007460557972081006, + 0.023743651807308197, + -0.0037206667475402355, + -0.02465459331870079, + 0.01774562895298004, + 0.005131444428116083, + -0.011227067559957504, + -0.020052559673786163, + -0.010458090342581272, + 0.005935912951827049, + 0.011664792895317078, + -0.018360810354351997, + -0.009073931723833084, + -0.008340445347130299, + -0.000491701764985919, + 0.001396728795953095, + -0.00550705986097455, + 0.0147170415148139, + 0.014504093676805496, + -0.01302529126405716, + -0.00048985326429829, + 0.015060123056173325, + -0.005368052516132593, + -0.0023675626143813133, + 0.028558632358908653, + 0.017035802826285362, + -0.0024843879509717226, + 0.011534658260643482, + -0.02827470190823078, + -0.01154057402163744, + -0.031681861728429794, + -0.028440328314900398, + 0.0021649666596204042, + 0.0025065699592232704, + 0.002250737277790904, + 0.009008863940834999, + 0.03277026116847992, + -0.012646717950701714, + 0.027612198144197464, + -0.017899423837661743, + 0.000446968013420701, + 0.0035550410393625498, + 0.003640811424702406, + -0.010836663655936718, + -0.009955297224223614, + -0.0025139639619737864, + -0.017994066700339317, + 0.008529732003808022, + -0.00994938239455223, + 0.005838311742991209, + 0.019673986360430717, + 0.018703892827033997, + -0.04521586000919342, + -0.004948072601109743, + -0.03426089510321617, + -0.002636704593896866, + -0.024820219725370407, + -0.012883326038718224, + -0.008328614756464958, + 0.008908305317163467, + -0.008080176077783108, + 0.015048293396830559, + 0.003084781812503934, + 0.0029768291860818863, + 0.01672821305692196, + 0.006867558229714632, + -0.01638513058423996, + -0.004315145313739777, + -0.036059118807315826, + 0.016657229512929916, + -0.003484058426693082, + -0.008529732003808022, + 0.010191906243562698, + 0.018384471535682678, + -0.02822737954556942, + -0.0015837973915040493, + 0.011209322139620781, + 0.02680772915482521, + -0.009062101133167744, + -0.021649666130542755, + -0.006861642934381962, + 0.0025805102195590734, + -0.015971066430211067, + -0.0240512415766716, + -0.012741361744701862, + -0.026642104610800743, + 0.007861313410103321, + 0.022442305460572243, + 0.0031675947830080986, + -0.010842579416930676, + -0.011522828601300716, + -0.0028969738632440567, + 0.02000523917376995, + -0.002144263358786702, + 0.01727241277694702, + 0.01050541177392006, + 0.0021575726568698883, + 0.004770616535097361, + 0.012386448681354523, + -0.017426207661628723, + 0.013486677780747414, + -0.0005105565069243312, + 0.002419320633634925, + -0.02990729920566082, + 0.033125173300504684, + -0.013392033986747265, + -0.0017745628720149398, + 0.006577712949365377, + -0.0019579343497753143, + -0.043441299349069595, + 0.0020969416946172714, + -0.005947743076831102, + 0.0021043356973677874, + -0.028866222128272057, + -0.0013945106184110045, + -0.010753851383924484, + 0.026902373880147934, + 0.0011571628274396062, + 0.02060859091579914, + -0.009144914336502552, + 0.022643422707915306, + -0.030475160107016563, + 0.0012776852818205953, + -0.04263683035969734, + -0.031255967915058136, + 0.006030556280165911, + 0.030096586793661118, + -0.009795586578547955, + -0.02730460651218891, + 0.04864668473601341, + 0.009807417169213295, + -0.0003131364064756781, + -0.005628321785479784, + 0.008890559896826744, + -0.035065360367298126, + 0.008328614756464958, + 0.04235289990901947, + -0.023175790905952454, + -0.007287538144737482, + -0.008748594671487808, + -0.007488655392080545, + -0.018810367211699486, + -0.008577053435146809, + 0.0237081591039896, + 0.011049611493945122, + 0.0027668392285704613, + -0.021945428103208542, + -0.0035402528010308743, + 0.005223129875957966, + -0.0058501423336565495, + 0.030569802969694138, + -0.009730519726872444, + 0.021649666130542755, + -0.006240546237677336, + 0.012977969832718372, + 0.017307903617620468, + 0.012279975228011608, + -0.015225749462842941, + -0.0060808355920016766, + 0.027872467413544655, + 0.011688454076647758, + 0.001638513058423996, + 0.017106786370277405, + 0.000797813874669373, + 0.01472887210547924, + -0.048433735966682434, + -0.014172841794788837, + -0.01804138906300068, + 0.029812656342983246, + 0.013924403116106987, + 0.008855069056153297, + -0.021235601976513863, + -0.018869519233703613, + -0.010363447479903698, + -0.0076897721737623215, + 0.008097921498119831, + 0.011156084947288036, + 0.004193883389234543, + 0.011073272675275803, + 0.018467284739017487, + -0.013687795028090477, + -0.00030685149249620736, + -0.023743651807308197, + 0.005403543822467327, + 0.0028836645651608706, + -0.014090029522776604, + 0.0024562906473875046, + -0.010978628881275654, + -0.03357473015785217, + -0.003972063306719065, + -0.012421940453350544, + -0.023305926471948624, + -0.004921454470604658, + -0.00735852075740695, + 0.010209651663899422, + -0.01727241277694702, + 0.008724934421479702, + -0.004359509330242872, + -0.018964162096381187, + -0.008304954506456852, + -0.002774233231320977, + 0.01194872334599495, + 0.011564234271645546, + 0.0055129751563072205, + -0.0031439338345080614, + 0.005294112488627434, + 0.0005294112488627434, + -0.0035668713971972466, + 0.007145572919398546, + -0.005838311742991209, + 0.0023808719124644995, + -0.018763044849038124, + -0.0015675305621698499, + -0.003658557077869773, + 0.0001221860438818112, + 0.05962531268596649, + -0.017639154568314552, + -0.0020821536891162395, + 0.010286549106240273, + 0.0057584564201533794, + -0.01180084329098463, + 0.0018573758425191045, + 0.021484041586518288, + 0.006968116853386164, + -0.017580002546310425, + 0.017296072095632553, + -0.028416667133569717, + 0.012339127250015736, + -0.007121912203729153, + -0.024962184950709343, + 0.013983555138111115, + 0.018490945920348167, + -0.0014632749371230602, + -0.008967457339167595, + -0.013344712555408478, + 0.008470579981803894, + 0.002645577536895871, + -0.004465983249247074, + 0.026878712698817253, + -0.019236261025071144, + 0.0218744445592165, + -0.010487666353583336, + 0.01495364960283041, + -0.023353246971964836, + 0.0016621738905087113, + -0.0008732327842153609, + 0.005563254468142986, + -0.029363099485635757, + 0.01092539168894291, + -0.0042471205815672874, + 0.01328556053340435, + 0.0037265820428729057, + 0.008304954506456852, + -0.013226408511400223, + 0.0004410528053995222, + -0.0008399597718380392, + 0.0026233955286443233, + 0.015592492185533047, + 0.016787365078926086, + -0.028889883309602737, + -0.002870355499908328, + -0.017189599573612213, + 8.300933586724568e-6, + -0.006382510997354984, + -0.019177109003067017, + 0.002568679628893733, + -0.0074176727794110775, + -0.0036348963622003794, + 0.007198810111731291, + 0.013380204327404499, + -0.010534987784922123, + 0.009990788996219635, + -0.0069622015580534935, + -0.014338468201458454, + -0.004874132573604584, + -0.004025300033390522, + 0.003155764192342758, + -0.026168886572122574, + -0.017106786370277405, + -0.0009885793551802635, + -0.028369344770908356, + 0.004199798684567213, + -0.03016756847500801, + 0.018076879903674126, + -0.004341763909906149, + -0.004968775901943445, + 0.014255654998123646, + 0.01469338033348322, + -0.003951360005885363, + 0.0031261881813406944, + 0.013959894888103008, + -0.000450665014795959, + 0.005459738429635763, + -0.014539585448801517, + 0.0008140807040035725, + -0.003886292688548565, + -0.0015305604320019484, + -0.021022655069828033, + -0.018597418442368507, + 0.005368052516132593, + -0.004675973206758499, + -0.0021398270037025213, + -0.04192700609564781, + -0.0030226721428334713, + -0.015450526960194111, + -0.017059464007616043, + 0.005749583709985018, + -0.01446860283613205, + 0.027470232918858528, + 0.006991777569055557, + 0.01013275422155857, + -0.004536965861916542, + 0.02077421545982361, + -0.007098251488059759, + -0.001577882096171379, + -0.021578684449195862, + 0.018017727881669998, + -0.0033273054286837578, + 0.018656570464372635, + 0.0018440665444359183, + -0.03127962723374367, + 0.013143595308065414, + 0.009417013265192509, + -0.02749389410018921, + -0.004276696592569351, + 0.0017967448802664876, + -0.01937822625041008, + -0.008594799786806107, + -0.01769830659031868, + -0.019319074228405952, + 0.01496548019349575, + 0.012634887360036373, + -0.020159034058451653, + -0.009215896017849445, + -0.007323029451072216, + 0.011055526323616505, + 0.0040016393177211285, + 0.012611227110028267, + -0.0213775672018528, + -0.0005567690823227167, + -0.00022200521198101342, + 0.0010824833298102021, + -0.016219504177570343, + -0.01565164513885975, + 0.004468940664082766, + -0.0038951653987169266, + 0.03253365308046341, + 0.007666111458092928, + 0.024559950456023216, + -0.011623386293649673, + -0.011209322139620781, + 0.006802490912377834, + -0.0032178740948438644, + 0.004013469442725182, + -0.02749389410018921, + 0.022182036191225052, + -0.016633568331599236, + -0.0002536146203055978, + 0.028416667133569717, + 0.009683198295533657, + 0.006015768274664879, + 0.003821225371211767, + -0.011256643570959568, + -0.00030925453756935894, + 0.003904038341715932, + 0.011990129947662354, + -0.006139987614005804, + 0.01601838693022728, + -0.010322040878236294, + -0.015225749462842941, + -0.007541892118752003, + -0.02728094719350338, + 0.01556883193552494, + -0.0118540795519948, + -0.02402758039534092, + 0.005873803049325943, + -0.01278868317604065, + -0.023128468543291092, + -0.01903514377772808, + -0.004105155356228352, + 0.004114028066396713, + 0.0015246452530846, + 0.014433111064136028, + 0.0029398591723293066, + 0.004525135271251202, + 0.0025154429022222757, + -0.009192235767841339, + 0.0032119587995111942, + -0.0228681992739439, + 0.02990729920566082, + -0.013238239102065563, + 0.010197821073234081, + 0.0010928349802270532, + -0.018100541085004807, + 0.002454811939969659, + -0.0017124532023444772, + -0.024015750735998154, + 0.012173500843346119, + -0.006317443680018187, + -0.020407473668456078, + -0.0033154748380184174, + -0.005853099748492241, + 0.006151817739009857, + -0.014563245698809624, + 0.013474847190082073, + -0.0215313620865345, + -0.002703250851482153, + 0.00961221568286419, + -0.004741040524095297, + -0.014575076289474964, + -0.005048631224781275, + 0.017059464007616043, + 0.025080488994717598, + 0.021732479333877563, + -0.015746288001537323, + 0.005119613837450743, + 0.0010092826560139656, + 0.005329603794962168, + 4.759895091410726e-5, + -0.03445018082857132, + 0.004217544570565224, + -0.0031675947830080986, + -0.010801172815263271, + 0.005915209650993347, + 0.019129788503050804, + -0.04753462225198746, + -0.02292735129594803, + 0.00018688365526031703, + 0.012149840593338013, + 0.010913562029600143, + 0.012989800423383713, + -0.008139328099787235, + 0.02082153782248497, + 0.026642104610800743, + -0.0019283583387732506, + 0.024299681186676025, + 0.01993425562977791, + 0.014859006740152836, + 0.0005061200936324894, + -0.01946103945374489, + -0.007879058830440044, + 0.010842579416930676, + 0.0024104479234665632, + 0.019650325179100037, + -0.005285239778459072, + 0.01748535968363285, + -0.00019982317462563515, + -0.00904435571283102, + -0.0033154748380184174, + 0.022099222987890244, + 0.011386778205633163, + 0.011942808516323566, + 0.003643769072368741, + 0.004817937966436148, + 0.012090688571333885, + -0.0017509020399302244, + -0.009144914336502552, + -0.018609249964356422, + 0.010718359611928463, + -0.0007464255322702229, + -0.008334530517458916, + -0.007216555532068014, + -0.007565552834421396, + -0.02176797017455101, + -1.7965137885767035e-5, + 0.01520208828151226, + 0.0021782759577035904, + 0.00359053211286664, + 0.007151488214731216, + 0.02612156607210636, + -0.00221524597145617, + -0.014906328171491623, + 0.005767329130321741, + 0.0020925053395330906, + -0.02635817416012287, + -0.009369691833853722, + 0.017970407381653786, + -0.02381463348865509, + -0.004125858657062054, + -0.0030611208640038967, + 0.006601373665034771, + -0.025317097082734108, + 0.012942478060722351, + -0.012741361744701862, + 0.0007859834586270154, + 0.010836663655936718, + 0.0024060115683823824, + 0.006205054931342602, + 0.013604981824755669, + 0.0013131764717400074, + 0.006293782964348793, + 0.0013020854676142335, + -0.03303052857518196, + -0.005308900494128466, + 0.007819906808435917, + -0.005548466462641954, + 0.0005893027409911156, + 0.015852762386202812, + -0.016503434628248215, + 0.003989808727055788, + -0.02142488956451416, + -0.008819577284157276, + -0.007376266177743673, + -0.012741361744701862, + -0.013403864577412605, + -0.0033894150983542204, + -0.007618790026754141, + -0.007275707554072142, + 0.004513304680585861, + 0.023282265290617943, + 0.00037801885628141463, + 0.009405183605849743, + 0.01664539985358715, + 0.0054863570258021355, + -0.005060461815446615, + -0.01724875159561634, + 0.02056126855313778, + -0.0014588385820388794, + -0.026192547753453255, + 0.007394012063741684, + 0.011085102334618568, + 0.007624705322086811, + 0.008931966498494148, + 0.003188297851011157, + 0.03762073442339897, + 0.015261240303516388, + 0.01028063427656889, + -0.009576723910868168, + 0.0067669996060431, + -0.016562586650252342, + 0.0050308858044445515, + -0.005915209650993347, + 0.019437378272414207, + 0.007050929591059685, + 0.006660526152700186, + 0.004185010679066181, + 0.004980606492608786, + 0.004341763909906149, + 0.020336490124464035, + -0.0027239539194852114, + 0.0014788024127483368, + 0.031161323189735413, + 0.016870178282260895, + 0.012421940453350544, + -0.011274388991296291, + 0.010564563795924187, + -0.00863620638847351, + -0.03591715171933174, + -0.02583763562142849, + 0.010055855847895145, + 0.001977158710360527, + 0.0011564234737306833, + -0.007648366037756205, + -0.016077538952231407, + -0.0227144043892622, + -0.0015009844209998846, + -0.014515924267470837, + -0.009523487649857998, + 0.00863620638847351, + 0.010617800988256931, + 1.1489601092762314e-5, + 0.012954308651387691, + 0.0023631262592971325, + 0.0028511309064924717, + 0.0032356195151805878, + 0.010659207589924335, + 0.018266167491674423, + 0.0201945248991251, + -0.001040337490849197, + -0.015462357550859451, + -0.00017163349548354745, + -0.00292802881449461, + 0.00300640519708395, + -0.01178901270031929, + 0.0027520512230694294, + -0.01922443136572838, + -0.003646726720035076, + -0.0022241186816245317, + -0.006453493610024452, + 0.005749583709985018, + 0.006749254185706377, + -0.010298379696905613, + 0.016136690974235535, + -0.01530856266617775, + 0.007470909506082535, + -0.00025675707729533315, + -0.025719331577420235, + 0.00030389390303753316, + 0.009369691833853722, + -0.005371010396629572, + 0.020206356421113014, + -0.019650325179100037, + 0.020939841866493225, + -0.005938870366662741, + 0.019922425970435143, + 0.01575811766088009, + 0.00559874577447772, + -0.008908305317163467, + 0.01617218367755413, + 0.011138339526951313, + 0.027422910556197166, + -0.004779489245265722, + 0.009671367704868317, + -0.0036319387145340443, + -0.005782117135822773, + 0.006441663019359112, + -0.010363447479903698, + 0.0029235922265797853, + -0.0015453484375029802, + -0.013380204327404499, + 0.01927175186574459, + -0.002493260893970728, + 0.03203677386045456, + -0.004066706635057926, + 0.006364765577018261, + 0.0021457422990351915, + -0.0037413700483739376, + -0.004383170045912266, + 0.009304624982178211, + -0.015604322776198387, + -0.024063073098659515, + -0.016704551875591278, + 0.019579343497753143, + 0.03967922553420067, + -0.005545509047806263, + 0.011812673881649971, + 0.01245743129402399, + -0.006299698259681463, + 0.03277026116847992, + 0.009002949111163616, + -0.01972130872309208, + 0.007464994210749865, + -0.013250069692730904, + -0.007281622849404812, + 0.02515147067606449, + 0.01593557372689247, + 0.009298709221184254, + -0.00475287064909935, + -0.008476494811475277, + 0.013498508371412754, + -0.037715375423431396, + 0.013155425898730755, + 0.003995724022388458, + -0.015521509572863579, + -0.0013634557835757732, + 0.007210640236735344, + 0.00104699213989079, + -0.0015290816081687808, + 0.005956615786999464, + -0.02612156607210636, + -0.010375277139246464, + 0.02609790489077568, + -0.03544393554329872, + -0.031043019145727158, + 0.013498508371412754, + -0.032226063311100006, + -0.014291145838797092, + -0.006619119551032782, + -0.0050308858044445515, + 0.020206356421113014, + 0.02635817416012287, + 0.01197238452732563, + 0.015580661594867706, + 0.00567268580198288, + 0.0031971707940101624, + 0.002262567635625601, + 0.007464994210749865, + 0.017556341364979744, + -0.006329274270683527, + -0.017662815749645233, + -0.007252046838402748, + -0.01218533143401146, + 0.0009767489973455667, + 0.026192547753453255, + -0.03518366813659668, + -0.0059329550713300705, + 0.0069267102517187595, + 0.015604322776198387, + 0.012291805818676949, + -0.018337149173021317, + 0.004454152658581734, + -0.0041406466625630856, + 0.017544511705636978, + -0.0001285633770748973, + 0.0069267102517187595, + -0.010493582114577293, + -0.007873144000768661, + 0.011913231573998928, + -0.020726894959807396, + -0.000409628264605999, + 0.002657407894730568, + -0.0018248421838507056, + 0.020549437031149864, + -0.003626023419201374, + -0.0185146052390337, + -0.01843179203569889, + -0.005125529132783413, + -0.026476478204131126, + 0.009523487649857998, + 0.013344712555408478, + 0.01892867125570774, + -0.0322970449924469, + -0.008068345487117767, + 0.0066901021637022495, + -0.003291814122349024, + 0.008967457339167595, + 0.01630231738090515, + 0.00017643961473368108, + -0.022655252367258072, + -0.0009257302735932171, + 0.010600055567920208, + -0.021756140515208244, + 0.04502657428383827, + -0.008920135907828808, + -0.012741361744701862, + 0.016113031655550003, + -0.00651856092736125, + -0.0190114825963974, + 0.012421940453350544, + 0.017071295529603958, + -0.008571138605475426, + 0.006500815507024527, + 0.002902889158576727, + 0.012753191404044628, + 0.02142488956451416, + 0.010824833065271378, + -0.011723944917321205, + -0.0037946070078760386, + 0.003229704452678561, + 0.0049391998909413815, + 0.009499826468527317, + 0.019603004679083824, + 0.016586247831583023, + 0.014066368341445923, + 0.0007456861203536391, + -0.009482081048190594, + -0.005761414300650358, + -0.0011298049939796329, + -0.004335848614573479, + 0.020017068833112717, + 0.006849812809377909, + 0.015060123056173325, + 0.00040223426185548306, + -0.011771267279982567, + 0.010523158125579357, + -0.006441663019359112, + 0.0185146052390337, + 0.01819518394768238, + -0.0032149164471775293, + 0.006370680872350931, + 0.004235289990901947, + 0.009387437254190445, + 0.0035313800908625126, + 0.019129788503050804, + -0.005371010396629572, + -0.0008177777053788304, + -0.0126940393820405, + 0.03182382881641388, + -0.01222082320600748, + -0.01588825322687626, + -0.02985997684299946, + -0.006826151628047228, + -0.020360151305794716, + -0.02486754022538662, + 0.015166597440838814, + -0.02131841517984867, + -0.005737753119319677, + 0.0387091301381588, + 0.00021793850464746356, + -0.00718106422573328, + -0.002753529930487275, + 0.01761549338698387, + -0.0036851754412055016, + -0.016195842996239662, + 0.012126179412007332, + -0.005734795704483986, + 0.0012340606190264225, + -0.014397620223462582, + -0.006021683104336262, + 0.0065067303366959095, + 0.008985203690826893, + 0.011741691268980503, + 0.004214586690068245, + 0.003028587205335498, + 0.0018041388830170035, + 0.005158062558621168, + -0.012599396519362926, + -0.008973373100161552, + 0.0017701264005154371, + 0.022667082026600838, + 0.019449209794402122, + -0.018490945920348167, + 0.004193883389234543, + 0.0001554590999148786, + 0.005714092403650284, + 0.002354253316298127, + -0.02659478224813938, + -0.002040747320279479, + 0.0016178097575902939, + 0.019969746470451355, + 0.0060985810123384, + -0.013403864577412605, + 0.0003197910264134407, + 0.006258291658014059, + -0.02032466046512127, + -0.006648695562034845, + 0.002877749502658844, + -0.004717379808425903, + -0.007642450742423534, + 0.0030906968750059605, + -0.017402546480298042, + -0.0060867504216730595, + -0.0054774838499724865, + -0.01937822625041008, + -0.03402428701519966, + -0.004726252518594265, + 0.004158392082899809, + 0.0017479443922638893, + 0.0033450510818511248, + 0.029978282749652863, + -0.011747606098651886, + 0.00803285464644432, + 0.0006137029849924147, + 0.0006321879918687046, + -0.0012399757979437709, + -0.01690566912293434, + 0.0031173154711723328, + 0.0013102189404889941, + 0.007890889421105385, + -0.01413735095411539, + 0.0004979866789653897, + 0.017733797430992126, + 0.00195941305719316, + 0.016976650804281235, + 0.00485047185793519, + -0.0024666422978043556, + -0.010943138040602207, + 0.004743997938930988, + -0.0019283583387732506, + 2.8929071049788035e-5, + -0.010363447479903698, + 0.02652379870414734, + 0.00926913321018219, + 0.011558319441974163, + -0.020963503047823906, + -0.0059063369408249855, + 0.004572457168251276, + 0.0029753504786640406, + -0.006701932288706303, + 0.0008525295997969806, + 0.006849812809377909, + -0.014634228311479092, + 0.014646058902144432, + -0.004122901242226362, + -0.016740042716264725, + 0.025908617302775383, + -0.0011453324696049094, + -0.0033746270928531885, + -0.0023734779097139835, + 0.008760425262153149, + -0.018207015469670296, + 0.018017727881669998, + -0.01588825322687626, + -0.02037198096513748, + 0.008115667849779129, + -0.0040844520553946495, + 0.018893178552389145, + 0.0037265820428729057, + 0.02510415017604828, + -0.0058146510273218155, + -0.006908964831382036, + 0.0044837286695837975, + -0.02612156607210636, + 0.02777782455086708, + 0.015249410644173622, + 0.012753191404044628, + -0.012930648401379585, + 0.003673345083370805, + -0.008068345487117767, + 0.009103507734835148, + -0.030451498925685883, + 0.014042707160115242, + -0.0009212938603013754, + 0.0040223426185548306, + -0.016609909012913704, + -0.014894497580826283, + 0.02964702993631363, + -0.04419844597578049, + 0.009245472960174084, + -0.003241534810513258, + -0.0009072452667169273, + -0.025979600846767426, + -0.007021353580057621, + 0.011729860678315163, + -0.01782844215631485, + 0.008210310712456703, + 0.01830165833234787, + -0.013746947050094604, + 0.004087409935891628, + -1.4718704733240884e-5, + 0.011487336829304695, + -0.016160352155566216, + -0.022596100345253944, + -0.008062430657446384, + 0.019236261025071144, + -0.016976650804281235, + -0.015592492185533047, + -0.020880689844489098, + 0.006903049536049366, + -0.006897134240716696, + -0.025317097082734108, + -0.02730460651218891, + -0.008535647764801979, + -0.018053218722343445, + 0.004812023136764765, + -0.020880689844489098, + -0.02224118821322918, + 0.013238239102065563, + 0.00525270588696003, + -0.008559308014810085, + -0.021732479333877563, + 0.015249410644173622, + 0.008979287929832935, + -0.0002761663345154375, + -0.008092006668448448, + 0.02198091894388199, + 0.023400569334626198, + 0.0008266505319625139, + -0.003220831509679556, + 0.001464014407247305, + -0.04502657428383827, + 0.0011800843058153987, + -0.002655929187312722, + 0.011510998010635376, + 0.002786063589155674, + 0.012753191404044628, + -0.008127497509121895, + -0.015746288001537323, + 0.011623386293649673, + 0.011570150032639503, + -0.011842249892652035, + 0.012173500843346119, + 0.004368382040411234, + -0.015746288001537323, + -0.00250804889947176, + 0.023566193878650665, + 0.00609266571700573, + -0.026689425110816956, + 0.0130371218547225, + -0.017189599573612213, + -0.014989141374826431, + -0.0009804459987208247, + 0.003963190596550703, + 0.006636864971369505, + -0.01070061419159174, + -0.03281758353114128, + -0.006329274270683527, + 0.004309230018407106, + -0.010724274441599846, + 0.007642450742423534, + -0.013711455278098583, + -0.0168346855789423, + 0.012339127250015736, + -0.003489973722025752, + 0.007855398580431938, + -0.010245142504572868, + -0.009783756919205189, + 0.029576048254966736, + -0.0029398591723293066, + -0.004460067953914404, + -0.018964162096381187, + 0.004554711282253265, + -0.005042715929448605, + 0.0030759088695049286, + -0.008642121218144894, + 0.00627603754401207, + -0.005510017741471529, + -0.003658557077869773, + 0.00910942256450653, + 0.0021250389982014894, + 0.009819247759878635, + 0.02108180709183216, + -0.0035639137495309114, + -0.021235601976513863, + 0.020123543217778206, + 0.006418002303689718, + -0.014752532355487347, + -0.01843179203569889, + -0.008446918800473213, + -0.0016636527143418789, + -0.0193545650690794, + 0.0016355554107576609, + 0.012031536549329758, + 0.005793947726488113, + -0.003836013376712799, + 0.0050515891052782536, + 0.004814980551600456, + -0.017343394458293915, + -0.021957257762551308, + -0.009996703825891018, + -0.033882319927215576, + 0.007429503370076418, + -0.0049953944981098175, + 0.02376731112599373, + -0.006036471109837294, + 0.019094295799732208, + -0.0007116736378520727, + -0.015864592045545578, + -0.005986192263662815, + -0.0004425316001288593, + -0.03177650645375252, + -0.006660526152700186, + -0.0034781431313604116, + -0.03064078465104103, + 0.008446918800473213, + 0.01798223704099655, + 0.015734456479549408, + 0.017307903617620468, + -0.002025959314778447, + -0.006317443680018187, + 0.010428514331579208, + -0.005835354328155518, + 0.00062701222486794, + -0.010943138040602207, + 0.009008863940834999, + 0.002814160892739892, + 0.008222141303122044, + -0.012670379132032394, + -0.010883985087275505, + 0.016716381534934044, + 0.00970094371587038, + -0.014646058902144432, + -0.0038774197455495596, + 0.002404532628133893, + 0.0018011813517659903, + -0.0210344847291708, + 0.02245413511991501, + -0.003992766607552767, + -0.007683857344090939, + -0.012410109862685204, + 0.01077751163393259, + 0.0033243477810174227, + -0.01446860283613205, + 0.00535622239112854, + 0.004034172743558884, + -0.02491486258804798, + -0.004406831227242947, + -0.010115007869899273, + 0.023010164499282837, + 0.012705869972705841, + -0.029079170897603035, + 0.0017967448802664876, + 0.00868944264948368, + 0.014255654998123646, + 0.008529732003808022, + 0.010830748826265335, + -0.029268456622958183, + -0.0005785814137198031, + -0.01035753171890974, + -0.00577028701081872, + 0.003416033461689949, + -0.005412416532635689, + -0.0016089370474219322, + -0.022300340235233307, + -0.0016340765869244933, + -0.0033420934341847897, + 0.014811684377491474, + 0.0026988142635673285, + 0.022572439163923264, + -0.009606299921870232, + -0.006666440982371569, + -0.0019254006911069155, + 0.013392033986747265, + 0.015415036119520664, + -0.008997033350169659, + 0.012303635478019714, + 0.007991448044776917, + 0.004675973206758499, + 0.004063748754560947, + 0.012729531154036522, + -0.020750554278492928, + -0.00970094371587038, + -0.006382510997354984, + 0.0019180066883563995, + -0.032888565212488174, + -0.011096932925283909, + 4.28159510192927e-5, + 0.0042589507065713406, + 0.005575085058808327, + 0.017674645408988, + 0.002426714636385441, + 0.008115667849779129, + 0.000911681680008769, + -0.018550097942352295, + 0.004250077996402979, + 0.001499505597166717, + -0.02011171169579029, + 0.020892519503831863, + -0.0025479765608906746, + -0.0015926702180877328, + -0.022063732147216797, + -0.004927369765937328, + -0.007861313410103321, + -0.018834026530385017, + 0.02635817416012287, + 0.0037798190023750067, + 0.004285569302737713, + 0.006003937683999538, + -0.0012909944634884596, + -0.00803285464644432, + 0.0008288687095046043, + 0.026878712698817253, + 0.014314807020127773, + -0.0033894150983542204, + -0.009724604897201061, + 0.0019327946938574314, + 0.031232306733727455, + -0.0077252634800970554, + -0.009245472960174084, + -0.005711134988814592, + 0.019366396591067314, + -0.04048369452357292, + 0.015580661594867706, + 0.007269792724400759, + -0.017603663727641106, + -0.008961542509496212, + 0.00027912395307794213, + 0.002326156245544553, + -0.014492263086140156, + 0.004400915931910276, + -0.010422599501907825, + -0.0021605303045362234, + -0.008287208154797554, + -0.01280051376670599, + -0.00867761205881834, + -0.003102527465671301, + 0.006163648329675198, + 0.0015749245649203658, + 0.03279392048716545, + 0.014184672385454178, + -0.0017198472050949931, + -0.009127167984843254, + 0.0070805056020617485, + -0.0016533010639250278, + 0.011694368906319141, + 0.009866569191217422, + -0.007039099466055632, + -0.002444460289552808, + 0.01243377011269331, + -0.022406814619898796, + -0.00968911312520504, + 0.013593151234090328, + -0.018372640013694763, + 0.0010373798431828618, + 0.021495871245861053, + 0.02017086371779442, + -6.45820728095714e-6, + 0.004817937966436148, + 0.001990468008443713, + 0.011753520928323269, + -0.00452217785641551, + -0.004610905889421701, + -0.011883655562996864, + 0.007074590772390366, + 0.017532680183649063, + -0.003942487295717001, + -0.003291814122349024, + -0.012906987220048904, + -0.01134537160396576, + 0.007050929591059685, + 0.019863273948431015, + 0.004069664049893618, + 0.0016799195436760783, + -0.01733156479895115, + -0.014326637610793114, + 0.013557660393416882, + -0.002216724678874016, + 0.02047845534980297, + -0.01388891227543354, + 0.004640481900423765, + -0.00047173796338029206, + 0.016184013336896896, + 0.0031291458290070295, + 0.004738082643598318, + 0.01914161816239357, + -0.006258291658014059, + 0.003847843734547496, + -0.019259922206401825, + 0.010801172815263271, + 0.00887281447649002, + 0.014208333566784859, + -0.02095167152583599, + 0.003330263076350093, + 0.006264206953346729, + 0.007879058830440044, + -0.012072942219674587, + 0.011410439386963844, + 0.016503434628248215, + 0.0009338636882603168, + 0.0025598069187253714, + -0.016976650804281235, + 0.00346927042119205, + 0.01245743129402399, + 0.00934603065252304, + 0.01362864300608635, + -0.011315795592963696, + -0.002086590277031064, + 0.016243165358901024, + -0.01306078303605318, + -0.019082466140389442, + -0.01565164513885975, + 0.029008187353610992, + 0.004374297335743904, + 0.004347679205238819, + 0.019472869113087654, + 0.009328285232186317, + -0.013699625618755817, + -0.0029339438769966364, + -0.012244483456015587, + 0.006571797654032707, + -0.014302976429462433, + 0.01612486131489277, + 0.012824174016714096, + -0.027446571737527847, + 0.008961542509496212, + -0.00022329915373120457, + 0.0028688765596598387, + -0.013912572525441647, + 0.006358850281685591, + -0.02155502326786518, + 0.028842560946941376, + 0.015817269682884216, + 0.016929330304265022, + -0.006832066923379898, + -0.0021294753532856703, + -0.0012865581084042788, + 0.008831407874822617, + 0.012765021994709969, + -0.009618130512535572, + -0.004427534528076649, + -0.009961212985217571, + -0.021330244839191437, + -0.022619761526584625, + -0.030238552019000053, + -0.03402428701519966, + 0.020052559673786163, + -0.0015290816081687808, + 0.009570809081196785, + 0.006264206953346729, + -0.012398279272019863, + -0.005752541124820709, + -0.0011556841200217605, + 0.017047634348273277, + -0.001898782211355865, + -0.0006887522176839411, + -0.003673345083370805, + 0.013344712555408478, + -0.008855069056153297, + 0.014255654998123646, + -0.012906987220048904, + 0.005243833176791668, + 0.007565552834421396, + -0.00048171987873502076, + 0.01008543185889721, + 0.002444460289552808, + 0.008399597369134426, + -0.0012192726135253906, + -0.002650013891980052, + -0.005643109790980816, + 0.022418644279241562, + 0.002518400549888611, + 0.013226408511400223, + 0.008015109226107597, + 0.011144254356622696, + 0.022832708433270454, + 0.0009678761707618833, + -0.0011534658260643482, + -0.0035639137495309114, + -0.03203677386045456, + 0.0046582273207604885, + 0.007033184170722961, + -0.007867228239774704, + 0.025884956121444702, + 0.009298709221184254, + 0.013108104467391968, + -0.014657889492809772, + 0.01785210147500038, + 0.00903252512216568, + 0.013309221714735031, + -0.024323342368006706, + -0.012563904747366905, + 0.011806758120656013, + 0.01136903278529644, + 0.005314815789461136, + 0.007985533215105534, + -0.0013575406046584249, + -0.01877487450838089, + -0.010209651663899422, + -0.0012732488103210926, + -0.01733156479895115, + -0.011824503540992737, + -0.0069976928643882275, + -0.014172841794788837, + 0.004353594034910202, + -0.017177768051624298, + 0.010807087644934654, + 0.0011172351660206914, + -0.0020851113367825747, + -0.007192894816398621, + 0.021732479333877563, + 0.004025300033390522, + 0.0025257945526391268, + -0.001282121636904776, + 0.021022655069828033, + 0.00204518367536366, + 0.012481092475354671, + 0.009813332930207253, + -0.0051846811547875404, + 0.01976863108575344, + 0.00016433191194664687, + -0.0033184324856847525, + 0.0036851754412055016, + 0.007979617454111576, + -0.006039428990334272, + -0.00379756442271173, + -0.003821225371211767, + -0.0005138838314451277, + -0.021176449954509735, + 0.0015157724265009165, + 0.009724604897201061, + -0.01143409963697195, + -0.014906328171491623, + -0.018786706030368805, + 0.010676953010261059, + 0.012847835198044777, + -0.012386448681354523, + -0.008630290627479553, + 0.023992089554667473, + 0.005090037826448679, + -0.0016947075491771102, + 0.005033843219280243, + -0.0007970744627527893, + -0.011114678345620632, + 0.013392033986747265, + -0.016479773446917534, + 0.010327955707907677, + 0.009653622284531593, + -0.006849812809377909, + -0.007648366037756205, + 0.00183815136551857, + 0.0029472531750798225, + -0.007896805182099342, + 0.03660331666469574, + -0.012386448681354523, + -0.0017316775629296899, + 0.00179526605643332, + 0.020466625690460205, + -0.01469338033348322, + 0.011505082249641418, + -0.007677942048758268, + 0.004122901242226362, + -0.01445677224546671, + -0.009535318240523338, + 0.0044482373632490635, + 0.014350298792123795, + -0.006784745492041111, + 0.0030581632163375616, + 0.0037236243952065706, + 0.0037058787420392036, + -0.0029428168199956417, + 0.00952940247952938, + -0.010943138040602207, + -0.0007475346210412681, + -0.012954308651387691, + 0.0152139188721776, + -0.009334200993180275, + 0.0021560939494520426, + -0.025198793038725853, + 0.012492922134697437, + 0.006784745492041111, + 0.01875121332705021, + -0.012989800423383713, + -6.996584124863148e-5, + 0.0035077191423624754, + -0.005255663767457008, + -0.0015971065731719136, + -0.013202747330069542, + 0.005385798402130604, + -0.010440344922244549, + -0.002275876933708787, + 0.003034502500668168, + 0.011339456774294376, + -0.004465983249247074, + 0.011996044777333736, + -0.014184672385454178, + -0.017863932996988297, + 0.009771926328539848, + -0.008914221078157425, + -0.010008534416556358, + -0.003912911284714937, + 0.004250077996402979, + 0.003203085856512189, + 0.0020037773065268993, + -0.0017775205196812749, + -0.0064712390303611755, + 0.02465459331870079, + 0.004803149960935116, + 0.003291814122349024, + 0.015107445418834686, + 0.004918496590107679, + 0.00012754670751746744, + -0.01995791681110859, + 0.005518890451639891, + 0.01727241277694702, + 0.008263547904789448, + -0.01640879176557064, + -0.006494900211691856, + 0.015852762386202812, + 0.0033894150983542204, + -0.020513946190476418, + -0.009251387789845467, + 0.00017717901209834963, + 0.004945115186274052, + -0.013202747330069542, + 0.02848764881491661, + 0.018384471535682678, + -0.022430473938584328, + -0.026500139385461807, + -0.015261240303516388, + -0.008239886723458767, + 0.0198514424264431, + 0.008340445347130299, + -0.011895486153662205, + 0.03227338194847107, + -0.004072621930390596, + -0.002664801897481084, + 0.032178740948438644, + -0.013758777640759945, + 6.931886309757829e-5, + 0.00920406635850668, + -0.002482909243553877, + 0.015592492185533047, + -0.02702067792415619, + 0.01569896563887596, + 0.019023314118385315, + 0.008967457339167595, + -0.0062346309423446655, + -0.01243377011269331, + 0.01798223704099655, + -0.00024307814601343125, + 0.009511657059192657, + -0.0044216192327439785, + -0.000893936026841402, + -0.009411098435521126, + 0.007121912203729153, + -0.0030936545226722956, + 0.012776852585375309, + 0.002482909243553877, + 0.004885963164269924, + 0.0042737387120723724, + -0.013664133846759796, + 0.004492601845413446, + -0.014409450814127922, + 0.0019682860001921654, + -0.012339127250015736, + 0.005255663767457008, + 0.011404523625969887, + 0.011996044777333736, + -0.024985844269394875, + 0.027162641286849976, + -0.013403864577412605, + -0.006299698259681463, + 0.01470521092414856, + 0.004717379808425903, + 0.005796905141323805, + -0.007228386122733355, + -0.02174431085586548, + -0.019496530294418335, + 0.03549125790596008, + -0.001752380863763392, + -0.0026721959002316, + 0.013959894888103008, + -0.02002890035510063, + 0.013392033986747265, + 0.009127167984843254, + -0.018727554008364677, + -0.005060461815446615, + 0.0013508859556168318, + -0.00502201309427619, + -0.013758777640759945, + -0.02297467365860939, + 0.02224118821322918, + 0.0025346672628074884, + 0.007127827499061823, + -0.003906995989382267, + -0.003815310075879097, + 0.00040371305658482015, + -0.0240512415766716, + -0.024347001686692238, + 0.012291805818676949, + 0.010327955707907677, + 0.031965792179107666, + 0.011759436689317226, + 0.026689425110816956, + -0.025293435901403427, + 0.012398279272019863, + -0.007252046838402748, + 0.0007150009623728693, + -0.009629961103200912, + -0.00951757188886404, + -0.0232112817466259, + 0.0020244803745299578, + -0.005007225088775158, + 0.021093636751174927, + 0.009357861243188381, + -0.0008406991837546229, + 0.006536306347697973, + 0.0035816594026982784, + -0.012824174016714096, + -0.009275048971176147, + 0.008423258550465107, + 0.005788032431155443, + 0.00860071461647749, + -0.0018425877206027508, + 0.005844227038323879, + 0.0003892947279382497, + 0.01834898069500923, + -0.012031536549329758, + 0.027564875781536102, + -0.0010610406752675772, + 0.0016873135464265943, + 0.015060123056173325, + -0.015225749462842941, + -0.026902373880147934, + -0.0027076872065663338, + 0.018183354288339615, + 0.018845858052372932, + 0.01196055393666029, + -0.0006129635730758309, + -0.020253676921129227, + 0.0059063369408249855, + -0.009215896017849445, + -0.006796575617045164, + -0.014527754858136177, + -0.008630290627479553, + -0.006459408905357122, + 0.0007490133866667747, + 0.00388333504088223, + 0.021626006811857224, + -0.004998351912945509, + 0.010398938320577145, + 0.03255731239914894, + -0.01176535151898861, + -0.029102830216288567, + -0.015604322776198387, + -0.022300340235233307, + -0.0025805102195590734, + -0.009653622284531593, + -0.03248633071780205, + -0.01666906103491783, + -0.02967069111764431, + -0.010227397084236145, + 0.0013841590844094753, + 0.00509299524128437, + 0.0056046610698103905, + -0.016089370474219322, + 0.003977978602051735, + 0.0006358850514516234, + -0.00279937288723886, + 0.00288514350540936, + -0.0031409761868417263, + 0.027588536962866783, + -0.00022829011140856892, + -0.01601838693022728, + 0.004797235131263733, + -0.0025435402058064938, + -0.01769830659031868, + -0.03478143364191055, + 0.013119935058057308, + -0.012126179412007332, + -0.009659537114202976, + 0.025435401126742363, + -0.01492998842149973, + 0.003238577162846923, + -0.0013723286101594567, + -0.008807746693491936, + 0.009393353015184402, + -0.0004961381782777607, + 0.007388096768409014, + -0.006755169481039047, + 0.004306272603571415, + 0.011546488851308823, + -0.01959117315709591, + -0.020360151305794716, + 0.00945250503718853, + 0.014870836399495602, + -0.0040933252312242985, + 0.007257962133735418, + -0.019283583387732506, + 0.0024917819537222385, + 0.008831407874822617, + -0.0056608556769788265, + -0.0013745467877015471, + -0.014350298792123795, + 0.03286490589380264, + 0.01030429545789957, + -0.016337808221578598, + -0.014646058902144432, + -0.01171211525797844, + -0.008092006668448448, + 0.02605058252811432, + 0.004894835874438286, + 0.003024150850251317, + -0.00611041160300374, + 0.007861313410103321, + 0.012173500843346119, + 0.023329585790634155, + -0.0021605303045362234, + -0.0031350611243396997, + 0.0014536627568304539, + 0.01769830659031868, + 0.000905027030967176, + 0.00961221568286419, + 0.023968428373336792, + 0.01326189935207367, + -0.0016651315381750464, + -0.002621916588395834, + 0.011735775507986546, + 0.011984214186668396, + -0.006589543540030718, + -0.0006373638170771301, + 0.00568451639264822, + -0.014646058902144432, + 0.007630620151758194, + 0.008228056132793427, + -0.0012592002749443054, + -0.01640879176557064, + -0.0048770904541015625, + -0.0029694351833313704, + 0.005300027783960104, + -0.018573757261037827, + -0.021069975569844246, + 0.01472887210547924, + 0.005013139918446541, + -0.020360151305794716, + -0.018621079623699188, + -0.00569043168798089, + 0.003593489760532975, + 0.01733156479895115, + -0.0003314365749247372, + -0.001107622985728085, + -0.006042386405169964, + -0.002184191020205617, + 0.0006240545772016048, + 0.006281952373683453, + 0.0006584367365576327, + 0.02820371836423874, + 0.004122901242226362, + 0.00467301532626152, + -0.0014152139192447066, + 0.010576394386589527, + -0.005273409187793732, + 0.007961872033774853, + -0.010883985087275505, + 0.0004162828845437616, + 0.003028587205335498, + -0.025672009214758873, + -0.015474188141524792, + 0.01953202113509178, + -0.004122901242226362, + -0.006589543540030718, + -0.020939841866493225, + -0.011055526323616505, + -0.007855398580431938, + 0.00442457664757967, + -0.0032001284416764975, + 0.0185146052390337, + 0.0013723286101594567, + 0.0033006868325173855, + -0.028795240446925163, + 0.003365754149854183, + 0.017083125188946724, + 0.008517901413142681, + 0.015166597440838814, + 0.009275048971176147, + -0.05281098932027817, + 0.011043696664273739, + -0.00867761205881834, + 0.006696016993373632, + -0.01748535968363285, + -0.006778830196708441, + 0.005471569020301104, + 0.02114095911383629, + -0.0009175968589261174, + -0.00634701969102025, + -0.023696329444646835, + 0.003457440063357353, + 0.022832708433270454, + -0.0032356195151805878, + -0.019804121926426888, + -0.009316454641520977, + 0.030924715101718903, + -0.005595788359642029, + -0.013829760253429413, + -0.0007419891189783812 + ], + "ea331090-3f76-40c9-af80-2bb8df1e5638": [ + -0.0034195350017398596, + -0.030007254332304, + -0.00987432524561882, + 0.0034807969350367785, + -0.03784879297018051, + 0.004797930829226971, + 0.00735701248049736, + 0.022332793101668358, + -0.03332654386758804, + 0.05208386108279228, + -0.00918930396437645, + 0.020283300429582596, + 0.008671361953020096, + -0.02428204007446766, + -0.020149637013673782, + 0.02217685431241989, + -0.009122473187744617, + 0.009935586713254452, + -0.009612568654119968, + 0.00837618950754404, + 0.035286929458379745, + -0.053955137729644775, + 0.007958494126796722, + 0.019715234637260437, + -0.0028820999432355165, + -0.01606179028749466, + 0.004327327013015747, + -0.011210951022803783, + -0.05863333120942116, + -0.031989917159080505, + 0.004831346217542887, + 0.011840279214084148, + 0.009306258521974087, + -0.007362581789493561, + -0.01170661672949791, + 0.0022151791490614414, + -0.015159566886723042, + -0.005747491959482431, + 0.014301898889243603, + -0.0023084646090865135, + -0.006326696835458279, + -0.027534496039152145, + 0.04444281756877899, + -0.006237588357180357, + -0.04283886402845383, + 0.06607387959957123, + 0.008649084717035294, + 0.020004836842417717, + 0.05702937766909599, + 0.012374929152429104, + 0.007841539569199085, + 0.013633585534989834, + -0.00958472304046154, + 0.012319236993789673, + 0.03145526722073555, + 0.003177271457388997, + 0.006293280981481075, + 0.02980676107108593, + 0.0474502258002758, + -0.05912342667579651, + 0.01539347693324089, + -0.008738192729651928, + 0.03221268951892853, + -0.009206011891365051, + -0.0008903878624550998, + -0.015226398594677448, + 0.012653393670916557, + -0.0580541230738163, + -0.0018225453095510602, + 0.005087533034384251, + -0.016240006312727928, + -0.021363738924264908, + -0.05342048779129982, + -0.012497453950345516, + 0.030029531568288803, + 0.011639785021543503, + 0.006465928629040718, + 0.005265749525278807, + -0.006477067247033119, + -0.06242043524980545, + -0.048341307789087296, + -0.014892241917550564, + 0.014769718050956726, + -0.016975151374936104, + 0.059479858726263046, + 0.007997479289770126, + -0.006900331936776638, + -0.011155257932841778, + -0.022989967837929726, + -0.008348343893885612, + -0.01509273611009121, + -0.022522149607539177, + -0.009027794934809208, + 0.01615089736878872, + -0.006710976827889681, + 0.005769769195467234, + 0.03223496675491333, + 0.017454108223319054, + -0.01325487531721592, + -0.028135977685451508, + -0.02824736386537552, + -0.01552713941782713, + -0.01685262657701969, + -0.011132980696856976, + 0.014869964681565762, + -0.013043242506682873, + -0.005034624598920345, + 0.0030436089728027582, + -0.01272022444754839, + 0.010620607994496822, + 0.01215215865522623, + -0.06041549891233444, + 0.04303935915231705, + -0.011695478111505508, + -0.015337783843278885, + -0.04566805809736252, + -0.019592709839344025, + -0.011628646403551102, + 0.020261023193597794, + -0.05154921114444733, + 0.035086434334516525, + 0.01762118749320507, + 0.019804343581199646, + -0.007902801968157291, + 0.02120780013501644, + 0.0036200289614498615, + 0.002676036674529314, + 0.049410611391067505, + 0.036044348031282425, + 0.01866821013391018, + -0.023546895012259483, + -0.0049009621143341064, + 0.011650923639535904, + 0.02882656827569008, + -0.033928025513887405, + -0.0034891508985310793, + 0.04589082673192024, + -0.0014152920339256525, + -0.05244029685854912, + -0.006165187805891037, + 0.0026161670684814453, + -0.012063049711287022, + 0.00670540751889348, + -0.005814323201775551, + 0.02942804992198944, + 0.017064258456230164, + -0.05738581344485283, + 0.03608890250325203, + -0.05431157350540161, + 0.010342144407331944, + -0.04945516213774681, + 0.010949195362627506, + 0.0031076555605977774, + 0.018712764605879784, + 0.043128468096256256, + 0.05524720996618271, + 0.00041108211735263467, + 0.04219282791018486, + -0.005694583989679813, + 0.00324131827801466, + 0.024705305695533752, + -0.05823234096169472, + 0.020305577665567398, + -0.005714076571166515, + 0.017008567228913307, + 0.017097674310207367, + 0.0890192985534668, + 0.029183002188801765, + -0.019626125693321228, + 0.010509222745895386, + 0.03337109833955765, + -0.02138601616024971, + 0.03214585781097412, + -0.008487575687468052, + 0.022087745368480682, + -0.03254684433341026, + 0.0022346717305481434, + -0.017197921872138977, + 0.051816537976264954, + -0.024059269577264786, + -0.021653341129422188, + -0.013822941109538078, + -0.01701970584690571, + 0.03862849250435829, + 0.007329166401177645, + 0.04366311803460121, + 0.0007400174508802593, + -0.002720590913668275, + 0.013388537801802158, + 0.04696013033390045, + 0.019704096019268036, + -0.023101354017853737, + 0.015705356374382973, + -0.003369411453604698, + -0.016997428610920906, + -0.000345991225913167, + 0.012553146108984947, + 0.01811128295958042, + 0.023457787930965424, + 0.017298169434070587, + 0.001092274091206491, + -0.028603797778487206, + -0.03657899796962738, + 0.021074136719107628, + -0.026064207777380943, + -0.017275892198085785, + -0.023279570043087006, + -0.04860863462090492, + -0.019124891608953476, + -0.03415079414844513, + 0.031098833307623863, + -0.011227658949792385, + 0.025529557839035988, + -0.01345536857843399, + 0.0003059620503336191, + 0.008977672085165977, + 0.009612568654119968, + -0.001319918199442327, + -0.006076079327613115, + 0.004647559951990843, + -0.020862504839897156, + 0.013822941109538078, + -0.009222719818353653, + -0.013366260565817356, + -0.05248485133051872, + 0.009317397139966488, + -0.030074086040258408, + 0.024705305695533752, + -0.026353809982538223, + -0.027222616598010063, + 0.0008298220345750451, + -0.00788052473217249, + 0.007100826129317284, + 0.015649663284420967, + -0.0002996966359205544, + 0.05431157350540161, + 0.023346401751041412, + 0.005254611372947693, + 0.0060148173943161964, + -0.00092798046534881, + 0.017442969605326653, + 0.02882656827569008, + -0.02303452230989933, + -0.01750980131328106, + 0.004399727564305067, + 0.006215311121195555, + -0.0044860513880848885, + 0.05564819648861885, + 0.0030185470823198557, + 0.005842169746756554, + -0.023970160633325577, + 0.028871122747659683, + -0.012987549416720867, + -0.004410866182297468, + -0.002400357509031892, + 0.021987497806549072, + 0.038272060453891754, + 0.02090705931186676, + -0.024816690012812614, + -0.008537698537111282, + -0.0009815847733989358, + -0.006126202642917633, + -0.0023558035027235746, + -0.006755530834197998, + 0.042816586792469025, + -0.03664582967758179, + -0.007635476533323526, + 0.0024087114725261927, + -0.010080387815833092, + 0.025796882808208466, + -0.009451059624552727, + -0.032368626445531845, + -0.02717806212604046, + -0.008404036052525043, + -0.027334002777934074, + -0.027890929952263832, + 0.03312604874372482, + 0.007128672208636999, + 0.05373236909508705, + 0.005184995010495186, + -0.017498662695288658, + -0.011818001978099346, + 0.01634025387465954, + 0.042059168219566345, + 0.028135977685451508, + 0.01685262657701969, + -0.027356280013918877, + -0.000277419516351074, + -0.044086381793022156, + -0.017197921872138977, + 0.00038462807424366474, + -0.019815480336546898, + 0.02613103948533535, + 0.01586129516363144, + 0.04700468108057976, + -0.006900331936776638, + -0.0038093843031674623, + 0.015115013346076012, + 0.002921084873378277, + 0.011639785021543503, + 0.022711504250764847, + -0.0015245891408994794, + 0.01442442275583744, + -0.010993748903274536, + 0.02381421998143196, + -0.014157097786664963, + 0.04192550480365753, + 0.027534496039152145, + -0.031499821692705154, + 0.006103925406932831, + 0.023747390136122704, + -0.006454790011048317, + -0.06803426891565323, + 0.020261023193597794, + 0.008654654026031494, + 0.01606179028749466, + -0.021129829809069633, + -0.00367850624024868, + -0.017832819372415543, + -0.011227658949792385, + -0.022098883986473083, + 0.0270889550447464, + -0.03337109833955765, + -0.013232598081231117, + 0.031410712748765945, + -0.027334002777934074, + 0.04172500967979431, + -0.02341323345899582, + -0.012664532288908958, + -0.040811650454998016, + 0.012842748314142227, + -0.011895972304046154, + -1.7708554878481664e-5, + -0.028692906722426414, + -0.04076709598302841, + -0.01229695975780487, + -0.04337351396679878, + -0.017465246841311455, + -0.00031240153475664556, + -0.005769769195467234, + -0.014179375022649765, + -0.001037973677739501, + 0.06861346960067749, + 0.003402827074751258, + -0.020639734342694283, + -0.020873643457889557, + 0.03417307138442993, + 0.021564234048128128, + 0.0018503917381167412, + -0.012241266667842865, + 0.0003950704704038799, + -0.02601965330541134, + 0.041457682847976685, + -0.019915727898478508, + 0.009562445804476738, + -0.011149688623845577, + 0.016808072105050087, + -0.021697895601391792, + -0.0023001106455922127, + -0.0044860513880848885, + -0.03608890250325203, + -0.027512218803167343, + 0.001647113123908639, + -0.022299377247691154, + -0.0030269010458141565, + 0.04972248896956444, + -0.005282457452267408, + -0.014157097786664963, + -0.0043440344743430614, + -0.0019144383259117603, + -0.014056850224733353, + -0.018467716872692108, + -0.009595861658453941, + -0.015159566886723042, + -0.015616247430443764, + -0.051237333565950394, + 0.03938591480255127, + -0.02090705931186676, + -0.0032385336235165596, + 0.02167561836540699, + 0.009718385525047779, + 0.007991909980773926, + -0.009562445804476738, + -0.008142280392348766, + 0.02332412451505661, + 0.028403304517269135, + 0.002812484046444297, + -0.033638421446084976, + -0.013644724152982235, + -0.04090075567364693, + -0.020962752401828766, + 0.00012826737656723708, + -0.025284510105848312, + -0.0024713659659028053, + -0.03466317057609558, + -0.019392216578125954, + 0.01674124039709568, + 0.021452847868204117, + -0.007301319856196642, + -0.006165187805891037, + 0.03464089334011078, + -0.018612517043948174, + 0.011884833686053753, + 0.0015955973649397492, + 0.022032052278518677, + -0.0035838286858052015, + -0.013577893376350403, + -0.002921084873378277, + 0.018044451251626015, + -0.005836600437760353, + 0.00756864482536912, + 0.021352600306272507, + 0.023301847279071808, + 0.004366311710327864, + 0.013132350519299507, + -0.006671991664916277, + 0.031878530979156494, + 0.05137099325656891, + -0.042638372629880905, + -0.04190322756767273, + 0.03423990309238434, + 0.026197871193289757, + -0.03067556768655777, + 0.03158893063664436, + 0.002840330358594656, + 0.03357158973813057, + 0.028046870604157448, + 0.037514638155698776, + -0.032279517501592636, + -0.029071616008877754, + 0.0004403208149597049, + 0.0006992921116761863, + -0.01906919851899147, + 0.012631116434931755, + 0.0047032530419528484, + 0.03096516989171505, + 0.013678140006959438, + -0.029784483835101128, + -0.023569172248244286, + -0.009657123126089573, + 0.007390428334474564, + 0.020394686609506607, + 0.01316576637327671, + -0.031143387779593468, + -0.040299274027347565, + -0.008242527022957802, + 0.0008959571714513004, + 0.002424027072265744, + 0.032279517501592636, + -0.0023154262453317642, + -0.001829506945796311, + 0.03858393803238869, + 0.006454790011048317, + 0.0007685599848628044, + -0.03125477209687233, + -0.008259234949946404, + -0.009885463863611221, + -0.0060259560123085976, + 0.009668261744081974, + -0.03470772132277489, + -0.007540798746049404, + 0.00788052473217249, + 0.00764661468565464, + -0.009529029950499535, + -0.025329064577817917, + -0.028603797778487206, + 0.004098986741155386, + 0.028336472809314728, + -0.004725529812276363, + -0.018122421577572823, + -0.0082258190959692, + -0.0036645832005888224, + -0.047272007912397385, + -0.00764661468565464, + 0.005714076571166515, + -0.003068670630455017, + -0.003926339093595743, + 0.027066677808761597, + 0.009573584422469139, + -0.020194191485643387, + -0.021697895601391792, + -0.05261851102113724, + -0.027423111721873283, + 0.005700153298676014, + 0.04811853915452957, + -0.014223928563296795, + -0.02882656827569008, + -0.005304734688252211, + -0.028403304517269135, + -0.005719645414501429, + 0.047361116856336594, + 0.018311776220798492, + -0.004781222902238369, + -0.0003066582139581442, + -0.012419483624398708, + -0.013611308299005032, + 0.02283402904868126, + -0.011673200875520706, + -0.02835875004529953, + -0.010046972893178463, + 0.004552882630378008, + -0.0015538277802988887, + 0.026108762249350548, + -0.01258656196296215, + -0.019213998690247536, + 0.04954427108168602, + -0.03116566501557827, + 0.008548837155103683, + 0.005992540158331394, + -0.00648263655602932, + -0.016796933487057686, + 0.06758872419595718, + -0.036534447222948074, + -0.0014883887488394976, + 0.02428204007446766, + -0.009902171790599823, + -0.042148273438215256, + -0.00014366989489644766, + 0.01799989677965641, + -0.0035086434800177813, + 0.0063378349877893925, + -0.002123286249116063, + -0.0026467980351299047, + 0.013221459463238716, + -0.01606179028749466, + -0.009083488024771214, + -0.019013505429029465, + 0.006928178481757641, + -0.004959439393132925, + -0.0020369624253362417, + -0.018311776220798492, + 0.017765987664461136, + -0.01258656196296215, + -0.005741922650486231, + 0.014168236404657364, + -0.010498084127902985, + -0.002957285149022937, + -0.028180532157421112, + -0.03374980762600899, + 0.019046921283006668, + -0.014780856668949127, + 0.01484768744558096, + 0.00756864482536912, + -0.01344422996044159, + 0.018512271344661713, + 0.016418224200606346, + -0.04593538120388985, + 0.0251731239259243, + -0.010921348817646503, + 0.006621868349611759, + -0.03530920669436455, + 0.03793790191411972, + -0.025796882808208466, + -0.019770927727222443, + -0.005176641512662172, + -0.003224610351026058, + -0.0024365580175071955, + -0.011333474889397621, + -0.015204121358692646, + -0.004577944055199623, + -0.00012261107622180134, + 0.02130804769694805, + -2.2298856492852792e-5, + 0.013756109401583672, + -0.012163297273218632, + 0.02633153274655342, + -0.03606662526726723, + 0.023480065166950226, + 0.02902706153690815, + -0.010046972893178463, + 0.018645932897925377, + -0.015426892787218094, + 0.02226596139371395, + 0.0074516902677714825, + -0.0015733202453702688, + 0.008448590524494648, + 0.003057532012462616, + 0.006271003745496273, + -0.043707672506570816, + 0.008431882597506046, + 0.011288920417428017, + -0.010097095742821693, + -0.0016512901056557894, + -0.03435128927230835, + 0.027311725541949272, + 0.010475806891918182, + -0.013756109401583672, + -0.02071770466864109, + -0.001967346528545022, + 0.045333899557590485, + -0.0032051177695393562, + 0.0164516381919384, + -0.018267223611474037, + -0.002400357509031892, + -0.02991814725100994, + 0.03250228986144066, + 0.013043242506682873, + 0.006232019048184156, + -0.010046972893178463, + 0.02439342625439167, + 0.012954134494066238, + 0.03183397650718689, + 0.0006070510135032237, + -0.03317060321569443, + -0.023591449484229088, + 0.01074313186109066, + -0.0396532379090786, + -0.0009154496365226805, + -0.020940475165843964, + -0.039541855454444885, + 0.007913939654827118, + 0.0029350081458687782, + 0.027022123336791992, + -0.025885991752147675, + 0.025663219392299652, + 0.04085620120167732, + -0.003505858825519681, + 0.013923187740147114, + 0.024326594546437263, + -0.011517261154949665, + 0.017053119838237762, + -0.03738097473978996, + 0.024215208366513252, + -0.00028420708258636296, + 0.010704146698117256, + 0.0001785648928489536, + -0.03446267545223236, + -0.018701625987887383, + -0.024348871782422066, + 0.03020774945616722, + 0.012252405285835266, + 0.0010512006701901555, + -0.018701625987887383, + -0.014368729665875435, + -0.01286502555012703, + -0.027423111721873283, + 0.009640415199100971, + 0.01360016968101263, + -0.02206546813249588, + 0.019381077960133553, + -0.028180532157421112, + 0.015204121358692646, + -0.01656302437186241, + 0.006204172503203154, + -0.02477213554084301, + 0.042348768562078476, + -0.009746232070028782, + 0.03996511921286583, + 0.0033805500715970993, + 0.031121110543608665, + -0.01384521834552288, + 0.02439342625439167, + 0.007841539569199085, + 0.016485054045915604, + -0.00334991910494864, + -0.01199621893465519, + -0.014301898889243603, + 0.005048547871410847, + -0.012118742801249027, + -0.01908033713698387, + 0.0319453626871109, + -0.007969632744789124, + -0.004675406496971846, + -0.01272022444754839, + 0.01898008957505226, + 0.01877959631383419, + 0.0046419911086559296, + -0.009969002567231655, + 0.014201652258634567, + 0.003954185172915459, + -0.018033312633633614, + -0.016874903813004494, + -0.0054913051426410675, + 0.009796354919672012, + -0.005847739055752754, + -0.022043190896511078, + 0.0135556161403656, + -0.023190461099147797, + 0.006811223458498716, + 0.014546946622431278, + -0.0020453163888305426, + 0.006154049187898636, + -0.026687966659665108, + 0.0063879587687551975, + -0.009969002567231655, + -0.010570484213531017, + -0.04188095033168793, + 0.02207660675048828, + -0.029739929363131523, + 0.0020327854435890913, + 0.002113539958372712, + 0.020695427432656288, + -0.03804928809404373, + 0.021842697635293007, + -0.019592709839344025, + 0.010620607994496822, + -0.019392216578125954, + -0.032769616693258286, + 0.04384133592247963, + -0.012341514229774475, + -0.012976410798728466, + -0.028381027281284332, + -0.010325436480343342, + 0.003954185172915459, + 0.04018789157271385, + 0.025373617187142372, + -0.012564284726977348, + 0.0037091372068971395, + -0.004831346217542887, + -0.016908319666981697, + 0.03020774945616722, + -0.011940525844693184, + 0.002733121858909726, + 0.006276573054492474, + 0.008537698537111282, + 0.00396532379090786, + -0.04664824903011322, + 0.027534496039152145, + 0.027423111721873283, + 0.02244417928159237, + -0.03858393803238869, + 0.020673150196671486, + -0.03697998821735382, + -0.03686860203742981, + -0.023947883397340775, + 0.02679935283958912, + 0.008960964158177376, + -0.004385804291814566, + -0.01044796034693718, + 0.001248213811777532, + 0.016629856079816818, + -0.024950353428721428, + 0.012107604183256626, + 0.0009328536107204854, + 0.01146156806498766, + -0.03989828750491142, + -0.026554305106401443, + -0.0005395235493779182, + 0.030831508338451385, + -0.020929336547851562, + -0.021998636424541473, + 0.007117533590644598, + 0.036712661385536194, + -0.03432901203632355, + 0.014313037507236004, + -0.023591449484229088, + 0.039229974150657654, + -0.018924396485090256, + -0.004363527055829763, + 0.05600463226437569, + 0.03724731132388115, + -0.04682646691799164, + 0.03947502374649048, + 0.029472604393959045, + -0.00957915373146534, + -0.02682163007557392, + 0.00958472304046154, + 0.02717806212604046, + -0.023636003956198692, + 0.038650769740343094, + -0.023168185725808144, + -0.00019753523520193994, + -0.00033659307518973947, + -0.02893795445561409, + -0.012597700580954552, + 0.016006097197532654, + 0.02051720954477787, + 0.005107025150209665, + 0.03370525315403938, + -0.02575232833623886, + 0.01074870117008686, + -0.01732044667005539, + 0.016585301607847214, + 0.04709379002451897, + -0.03475227579474449, + -0.0474502258002758, + 0.008671361953020096, + 0.027244893833994865, + -0.02679935283958912, + -0.008125572465360165, + -0.023480065166950226, + -0.061885785311460495, + 0.008164557628333569, + -0.013644724152982235, + 0.020461516454815865, + -0.00522398017346859, + 0.04771754890680313, + 0.029383495450019836, + -0.03466317057609558, + -0.014791995286941528, + -0.0217647273093462, + 0.025819160044193268, + 0.018256084993481636, + -0.004357957746833563, + 0.01936993934214115, + 0.004928808659315109, + 0.0012579599861055613, + 0.01673010364174843, + -0.01484768744558096, + -0.01442442275583744, + -0.005262964870780706, + -0.019113752990961075, + 0.016629856079816818, + 0.024660751223564148, + 0.008209112100303173, + 0.0026621136348694563, + -0.00346130458638072, + -0.0032023333478718996, + -0.00957915373146534, + 0.021631065756082535, + 0.014480115845799446, + 0.0005708507378585637, + -0.0018782380502671003, + 0.01538233831524849, + -0.009239427745342255, + 0.015348922461271286, + 0.020851366221904755, + -0.00580875389277935, + 0.016975151374936104, + -0.018467716872692108, + 0.00764104537665844, + -0.006076079327613115, + 0.02050607092678547, + 0.05141554772853851, + -0.01675237901508808, + -0.0030018393881618977, + 0.011261074803769588, + -0.001173724769614637, + 0.031187940388917923, + -0.0149924885481596, + 0.015081597492098808, + -0.023947883397340775, + 0.00720664206892252, + 0.0035281358286738396, + -0.010659593157470226, + 0.02971765212714672, + -0.02390332892537117, + -0.04114580526947975, + -0.04593538120388985, + 0.03426218032836914, + 0.004235433880239725, + -0.04203689098358154, + 0.006271003745496273, + -0.015582832507789135, + -0.0071620880626142025, + 0.008933117613196373, + 0.006304419599473476, + 0.0009446883341297507, + 0.027534496039152145, + 0.05203930661082268, + -0.0023265646304935217, + 0.007100826129317284, + 0.006694268900901079, + 0.007763569708913565, + -0.030920615419745445, + 0.00764661468565464, + 0.014446699991822243, + 0.012998688034713268, + 0.020294439047574997, + 0.010097095742821693, + 0.017298169434070587, + -0.02139715477824211, + -0.004254926461726427, + -0.0047366684302687645, + -0.003906846512109041, + 0.009428783319890499, + 0.009846478700637817, + 0.026576580479741096, + 0.020662011578679085, + 0.02980676107108593, + -0.017487524077296257, + 0.013956603594124317, + -0.001630405313335359, + 0.009640415199100971, + -0.01772143319249153, + -0.01345536857843399, + 0.01215215865522623, + 0.003542059101164341, + -0.010726423934102058, + 0.018345192074775696, + 0.0073068891651928425, + 0.027356280013918877, + 0.019102614372968674, + -0.008303789421916008, + -0.02699984610080719, + 0.03800473362207413, + 0.02477213554084301, + 0.007835970260202885, + -0.035465143620967865, + 0.015649663284420967, + -0.04633637145161629, + -0.009027794934809208, + -0.006198603194206953, + -0.02960626780986786, + -0.0251731239259243, + -0.015994958579540253, + -0.020060529932379723, + -0.01514842826873064, + -0.0058310311287641525, + 0.020483793690800667, + -0.0060148173943161964, + -0.022533288225531578, + -0.0034083963837474585, + -0.014324176125228405, + -0.016095206141471863, + -0.035665638744831085, + 0.015649663284420967, + -0.015805603936314583, + 0.007401566952466965, + 0.023769667372107506, + 0.0032552413176745176, + -0.014825410209596157, + -0.02720033936202526, + -0.009696108289062977, + 0.05863333120942116, + 0.011055011302232742, + 0.012842748314142227, + 0.002896023215726018, + -0.01955929398536682, + -0.0076688919216394424, + 0.02486124448478222, + 0.0035838286858052015, + 0.01683034934103489, + -0.020372409373521805, + -0.0015524354530498385, + -0.017264753580093384, + -0.008743762038648129, + -0.013288290239870548, + -0.005864446982741356, + 0.022488733753561974, + -0.006009248085319996, + 0.006722114980220795, + 0.024371149018406868, + -0.05150465667247772, + 0.012341514229774475, + -0.032279517501592636, + -0.0029183002188801765, + -0.025039460510015488, + -0.020584041252732277, + -0.023457787930965424, + -0.022187992930412292, + -0.030809231102466583, + 0.028425579890608788, + -0.0036896448582410812, + -0.030074086040258408, + -0.008426313288509846, + -0.013667001388967037, + 0.020662011578679085, + -0.01552713941782713, + -0.020840227603912354, + 0.014168236404657364, + 0.008827301673591137, + -0.0013428914826363325, + 0.018735041841864586, + -0.013098935596644878, + 0.008348343893885612, + -0.010347713716328144, + -0.020439239218831062, + -0.012987549416720867, + 0.01597268134355545, + -0.00187406106851995, + -0.019871173426508904, + -0.007785846944898367, + 0.005753061268478632, + -0.004179741255939007, + -0.0018643148941919208, + 0.004753376357257366, + 0.023569172248244286, + -0.009790785610675812, + -0.0012885910691693425, + -0.007033994421362877, + -0.02390332892537117, + 0.03800473362207413, + -0.022900858893990517, + -0.015471446327865124, + 0.015939265489578247, + -0.022332793101668358, + -0.0023418802302330732, + -0.015816740691661835, + 0.0006773630739189684, + 0.031032001599669456, + -0.012764778919517994, + -0.010693008080124855, + -0.02893795445561409, + -0.021408293396234512, + 0.049410611391067505, + -0.04344034567475319, + -0.021608788520097733, + -0.0004570286546368152, + -0.01673010364174843, + -0.019225137308239937, + -0.03936363756656647, + 0.008197973482310772, + -0.009261704981327057, + -0.000336941157002002, + -0.01974865049123764, + -0.023791944608092308, + -0.01302096527069807, + -0.0017807757249101996, + -0.00544396648183465, + 0.013132350519299507, + 0.002685782965272665, + -0.03076467663049698, + 0.010609469376504421, + 0.009662692435085773, + 0.020494932308793068, + -0.026487473398447037, + -0.007947355508804321, + 0.034217625856399536, + 0.02081795036792755, + -0.008197973482310772, + -0.013778386637568474, + -0.03027457930147648, + -0.007618768606334925, + 0.020862504839897156, + -0.016518469899892807, + 0.01528209075331688, + -0.02477213554084301, + -0.010681869462132454, + 0.016975151374936104, + -0.013065519742667675, + -0.0266211349517107, + -0.023836497217416763, + 0.02283402904868126, + -0.01568307913839817, + 0.008654654026031494, + 0.016863765195012093, + 0.010230758227407932, + 0.01170661672949791, + 0.019982559606432915, + -0.02573005110025406, + -0.01605065166950226, + 0.0041073402389883995, + 0.013811802491545677, + 0.010904640890657902, + -0.006477067247033119, + 0.008014187216758728, + -0.0522620789706707, + -0.022388486191630363, + 0.006722114980220795, + 0.01848999410867691, + -0.0004316188278608024, + -0.009133611805737019, + -0.02011622115969658, + 0.028871122747659683, + 0.00032858725171536207, + 0.010381128638982773, + 0.01607292890548706, + -0.0188798438757658, + 0.010113803669810295, + 0.015905849635601044, + 0.012619977816939354, + 0.008058741688728333, + 0.008632376790046692, + -0.02314590848982334, + 0.02535133995115757, + -0.008565545082092285, + -0.008008617907762527, + -0.024126099422574043, + 0.019971420988440514, + -0.008699207566678524, + -0.02795776166021824, + 0.017732571810483932, + -0.01312121283262968, + 0.03753691539168358, + -0.004708822350949049, + -0.005029055289924145, + 0.01605065166950226, + 0.0019896235316991806, + 0.0059034316800534725, + 0.009077918715775013, + -0.007401566952466965, + -0.0002587972558103502, + 0.019147168844938278, + -0.014903380535542965, + 0.039541855454444885, + 0.01918058469891548, + 0.019915727898478508, + 0.013522200286388397, + 0.01118310447782278, + 0.0016624286072328687, + -0.0021274632308632135, + -0.02468302845954895, + -0.013199182227253914, + -0.044375985860824585, + -0.012564284726977348, + 0.0044665588065981865, + -0.0037898917216807604, + -0.011339044198393822, + 0.023546895012259483, + -0.009679400362074375, + -0.007368151098489761, + -0.00382052268832922, + -0.012909580022096634, + -0.00803089514374733, + 0.01156181562691927, + -0.008721484802663326, + 0.019993698224425316, + 0.011884833686053753, + -0.024036992341279984, + -0.01494793500751257, + -0.014335314743220806, + -0.002521489281207323, + 0.01513728965073824, + -0.0026105977594852448, + -0.00991887878626585, + 0.012675669975578785, + -0.0019144383259117603, + -0.007769139017909765, + 0.016618717461824417, + 0.009378659538924694, + 0.014223928563296795, + 0.004218725953251123, + 0.008359482511878014, + -0.01578332670032978, + 0.0036812908947467804, + 0.00043927656952291727, + -0.01199621893465519, + -0.007117533590644598, + 0.023791944608092308, + -0.01316576637327671, + -0.01529322937130928, + -0.029472604393959045, + -0.003879000199958682, + -0.015326645225286484, + -0.027423111721873283, + 0.014736302196979523, + 0.004355173092335463, + 0.015816740691661835, + 0.01553827803581953, + 0.023012245073914528, + -0.025885991752147675, + 0.04531162232160568, + 0.015627386048436165, + -0.03660127520561218, + -0.006950455252081156, + -0.007847108878195286, + 0.00692260917276144, + -0.015605108812451363, + -0.0029628544580191374, + -0.028603797778487206, + 0.007446120958775282, + 0.0002269479591632262, + 0.007223349995911121, + -0.008637946099042892, + -0.004165817983448505, + -0.05823234096169472, + -0.01673010364174843, + 0.009974571876227856, + 0.014168236404657364, + 0.003068670630455017, + -0.01441328413784504, + 0.0003787107125390321, + -0.0040739248506724834, + 0.013366260565817356, + -0.01675237901508808, + 0.0009760154644027352, + -0.014023435302078724, + 0.012954134494066238, + -0.02613103948533535, + -0.03143298998475075, + -0.01059833075851202, + 0.010275312699377537, + -0.01074870117008686, + -0.015471446327865124, + 0.010369990020990372, + 0.012753640301525593, + 0.004444281570613384, + 0.005602690856903791, + -0.01734272390604019, + 0.006827931385487318, + 0.002003546804189682, + 0.010759839788079262, + 0.0003613067383412272, + -0.00685020862147212, + 0.007590922061353922, + -0.018634794279932976, + 0.008493144996464252, + -5.673698979080655e-5, + 0.007345873862504959, + -0.0031466404907405376, + 0.004441496916115284, + -0.007680030539631844, + -0.006404666695743799, + -0.0028904539067298174, + -0.002375295851379633, + -0.022232547402381897, + -0.023658281192183495, + 0.01994914375245571, + -0.0025006046053022146, + 0.0077524310909211636, + 0.013800663873553276, + -0.03317060321569443, + -0.04014333710074425, + -0.0041073402389883995, + 0.007796985097229481, + -0.010915779508650303, + -0.005190564319491386, + -0.010626177303493023, + 0.013499923050403595, + -0.02332412451505661, + 0.02292313612997532, + -0.0061707571148872375, + -0.008559975773096085, + -0.006059371400624514, + -0.005215626209974289, + 0.004121263511478901, + -0.009545737877488136, + -0.007156518753618002, + -0.047182898968458176, + 0.0031828407663851976, + -0.004071140196174383, + -0.0135556161403656, + -0.03252456709742546, + -0.013143489137291908, + 0.017086535692214966, + -0.0035921824164688587, + -0.008743762038648129, + 0.0018058374989777803, + -0.03898492828011513, + -0.015928126871585846, + 0.006354542914777994, + 0.0055107977241277695, + 0.01316576637327671, + -0.004522251430898905, + -0.019191723316907883, + 0.012363790534436703, + 0.017665740102529526, + -0.009679400362074375, + -0.004452635534107685, + 0.0029350081458687782, + 0.004090632777661085, + 0.007785846944898367, + 0.005430043209344149, + -0.0019325384637340903, + -0.020194191485643387, + 0.009384228847920895, + -0.013778386637568474, + -0.03764830157160759, + 0.005936847534030676, + 0.016473915427923203, + -0.018178114667534828, + -0.0001326183701166883, + 0.01368927862495184, + 0.008805024437606335, + 0.0319230854511261, + -0.04112352803349495, + -0.008877424523234367, + -0.0002466144796926528, + -0.0003110092075075954, + 0.0003867165360134095, + -0.006510482635349035, + 0.004143540747463703, + 0.01112741231918335, + -0.024616196751594543, + 0.01513728965073824, + -0.0169528741389513, + 0.00727904262021184, + -0.025373617187142372, + 0.005118163768202066, + -0.017097674310207367, + 0.01597268134355545, + 0.007228919304907322, + 0.01112741231918335, + -0.025975098833441734, + -0.002176194218918681, + 0.026064207777380943, + -0.006159618496894836, + 0.022577840834856033, + -0.015070458874106407, + 0.003987601026892662, + 0.015204121358692646, + -0.00947890616953373, + 0.031210217624902725, + -0.0217647273093462, + 0.01569421775639057, + -0.01915830746293068, + -0.007852678187191486, + -0.008732623420655727, + -0.023747390136122704, + 0.011795724742114544, + 0.017877373844385147, + 0.0183897465467453, + -0.011973941698670387, + -0.013678140006959438, + -0.025284510105848312, + 0.010108234360814095, + 0.0038762155454605818, + 0.0038372306153178215, + -0.013811802491545677, + 0.0018531762761995196, + -0.025106292217969894, + -0.0001248735934495926, + 0.008710346184670925, + -0.020940475165843964, + 0.018857566639780998, + -0.035175543278455734, + -0.0019450694089755416, + -0.01311007421463728, + 0.013043242506682873, + -0.022243686020374298, + 0.0023627649061381817, + -0.008337205275893211, + -0.029093893244862556, + -0.010141650214791298, + 0.02564094215631485, + -0.010342144407331944, + -0.01761004887521267, + 0.008142280392348766, + -0.026955291628837585, + -0.015059320256114006, + 0.0024908583145588636, + -0.013934326358139515, + -0.01781054213643074, + 0.0035531974863260984, + -0.004672621842473745, + -0.005747491959482431, + -0.03836116939783096, + -0.01326601393520832, + -0.008203542791306973, + -0.0021149322856217623, + -0.010230758227407932, + 0.0013317529810592532, + -0.010665162466466427, + -0.005335365422070026, + 0.016217729076743126, + 0.00947890616953373, + 0.010297589935362339, + 0.018434301018714905, + 0.032190412282943726, + -0.008014187216758728, + 0.011884833686053753, + -0.0304750744253397, + 0.0075964913703501225, + 0.014869964681565762, + 0.013221459463238716, + 0.009022225625813007, + 0.03185625374317169, + -0.0060482327826321125, + 0.003221825696527958, + -0.0019631695467978716, + -0.007585352752357721, + -0.00012417742982506752, + -0.02013849839568138, + 0.002779068425297737, + 0.004747807048261166, + 0.0017515370855107903, + 0.014045712538063526, + 0.01801103539764881, + -0.002868176670745015, + -0.01703084446489811, + 0.005037409253418446, + 0.008643515408039093, + -0.020249884575605392, + -0.006232019048184156, + -0.012063049711287022, + -0.014981349930167198, + 0.009512322023510933, + 0.005184995010495186, + 0.011049441993236542, + -0.01302096527069807, + -0.05845511332154274, + -0.029093893244862556, + 0.023390956223011017, + -0.022989967837929726, + -0.004190879408270121, + -0.015025904402136803, + -0.003814953612163663, + 0.012508592568337917, + -0.002703883219510317, + -0.014736302196979523, + 0.01955929398536682, + -0.009116903878748417, + -0.030363688245415688, + 0.009328535757958889, + -0.00891084037721157, + 0.011227658949792385, + -0.002482504351064563, + 0.0015190198319032788, + 0.011233228258788586, + -0.00027463489095680416, + -0.002554904902353883, + 0.010570484213531017, + 0.015126151032745838, + 0.030809231102466583, + 0.00947890616953373, + -0.024838967248797417, + 0.02633153274655342, + -0.006527190562337637, + 0.007629907224327326, + 0.001264921622350812, + 0.004399727564305067, + 0.02350234054028988, + 0.022187992930412292, + 0.022288238629698753, + -0.006070510018616915, + -0.006716546136885881, + -0.03027457930147648, + -0.00382052268832922, + -0.020483793690800667, + 0.0012043557362630963, + 0.030720122158527374, + 0.006660853046923876, + -0.007078548893332481, + -0.018701625987887383, + 0.006978301797062159, + -0.0339057482779026, + -0.012909580022096634, + 0.005115379113703966, + -0.002758183516561985, + 0.013466507196426392, + -0.0036729369312524796, + 0.015170705504715443, + -0.0069448864087462425, + 0.009061210788786411, + 0.01711995154619217, + -0.021653341129422188, + 0.00728461192920804, + 0.008197973482310772, + -0.05368781462311745, + -0.009957863949239254, + -0.035353757441043854, + 0.01243062224239111, + -0.019002366811037064, + 0.02777954563498497, + 0.025195401161909103, + 0.004920454695820808, + 0.014903380535542965, + 0.0006745784776285291, + 0.01974865049123764, + 0.02101844549179077, + 0.011740032583475113, + 0.01915830746293068, + -0.022043190896511078, + 0.008365051820874214, + -0.018723903223872185, + 0.004909316077828407, + -0.012107604183256626, + 0.009980141185224056, + 0.011311197653412819, + 0.03706909716129303, + -0.028470134362578392, + 0.00036792023456655443, + 0.0015426892787218094, + 0.030608735978603363, + -0.007730153854936361, + -0.03894037380814552, + -0.02401471510529518, + -0.0029628544580191374, + -0.018055589869618416, + -0.0040015242993831635, + -0.015916988253593445, + 0.020004836842417717, + 0.011829140596091747, + 0.014725163578987122, + 0.008738192729651928, + -0.006181895267218351, + -0.019035782665014267, + -0.0006004374590702355, + -0.00963484589010477, + -0.020294439047574997, + -0.018322914838790894, + 0.019503600895404816, + -0.00019039960170630366, + 0.004193664062768221, + -0.004811853636056185, + -0.001402761205099523, + 0.0013366260100156069, + 0.01850113272666931, + 0.0011980903800576925, + -0.011662062257528305, + 0.04825219884514809, + -0.013065519742667675, + 0.012174435891211033, + 0.009061210788786411, + 0.013566754758358002, + -0.03742552921175957, + -0.006465928629040718, + -0.030140917748212814, + -0.009835340082645416, + -0.005814323201775551, + -0.01635139249265194, + -0.03268050774931908, + 0.01876845769584179, + -0.04266064986586571, + 0.04241560027003288, + 0.04704923555254936, + 0.018623655661940575, + 0.009757369756698608, + 0.010648454539477825, + -0.023168185725808144, + -0.009818632155656815, + 0.0036172443069517612, + 0.004772868938744068, + 0.016618717461824417, + 0.0045584519393742085, + 0.034507229924201965, + 0.0011152473744004965, + -0.022377347573637962, + 0.0006362897111102939, + 0.012497453950345516, + -0.02893795445561409, + -0.005691799335181713, + 0.024994907900691032, + -0.039430469274520874, + 0.003817738266661763, + 0.00846529845148325, + 0.023636003956198692, + -0.0035448437556624413, + -0.008771608583629131, + -0.0025340202264487743, + -0.007334735244512558, + -0.020595179870724678, + -0.010676300153136253, + 0.00580318458378315, + 0.020962752401828766, + 0.023390956223011017, + 0.012931857258081436, + -0.00479236152023077, + -0.008894132450222969, + 0.020550625398755074, + -0.02205432951450348, + 0.0052935960702598095, + 0.0071620880626142025, + -0.026955291628837585, + 0.0010233543580397964, + -0.014591501094400883, + 0.011043872684240341, + 0.015493723563849926, + 0.0017696372233331203, + -0.02913844771683216, + 0.024749858304858208, + -0.03350475803017616, + -0.001301818061619997, + -0.0037397684063762426, + 0.009746232070028782, + 0.005315873306244612, + -0.004895392805337906, + -0.025373617187142372, + -0.024215208366513252, + 0.0009175380691885948, + 0.0020996166858822107, + -0.012887302786111832, + 0.011517261154949665, + -0.0041574640199542046, + 0.0116175077855587, + -0.0203389935195446, + -0.013188043609261513, + -0.022878581658005714, + -0.0005865143029950559, + -0.004694899078458548, + 0.005343719385564327, + -0.01060390006750822, + 0.008699207566678524, + 0.009139180183410645, + -0.00720664206892252, + 0.010726423934102058, + -0.011695478111505508, + -0.0030631013214588165, + 0.007507382892072201, + 0.006649714428931475, + -0.006816792767494917, + 0.019213998690247536, + 0.026554305106401443, + -0.00817012693732977, + 0.001967346528545022, + -0.020584041252732277, + -0.010525929741561413, + -0.00817569624632597, + 0.004825776908546686, + 0.009027794934809208, + 0.02130804769694805, + 0.010046972893178463, + -0.0020717703737318516, + -0.01625114493072033, + 0.004608575254678726, + 0.015215259976685047, + -0.018256084993481636, + -0.0012064442271366715, + -0.00182115298230201, + -0.015827879309654236, + -0.0037564761005342007, + 0.039920564740896225, + 0.01045352965593338, + -0.002996270079165697, + 0.013633585534989834, + -0.003104870906099677, + -0.02795776166021824, + -0.002840330358594656, + 0.03105427883565426, + 0.0237251129001379, + -0.014636055566370487, + 0.0015148428501561284, + 0.0060983565635979176, + 0.004525036085397005, + -0.007835970260202885, + -0.02217685431241989, + 0.013243736699223518, + 0.01513728965073824, + 0.020372409373521805, + -0.02129690907895565, + 0.00403772434219718, + 0.014257344417273998, + 0.014446699991822243, + -0.01866821013391018, + 0.023569172248244286, + 0.009618137963116169, + -0.01915830746293068, + 0.01975978910923004, + -0.00027010985650122166, + 0.003224610351026058, + 0.0002354759199079126, + 0.017743710428476334, + -0.02911617048084736, + -0.010687438771128654, + 9.762547961145174e-7, + -0.00360332103446126, + -0.0005997413536533713, + -0.01374497078359127, + 0.011383598670363426, + -0.006905901245772839, + 0.014613778330385685, + -0.0056555988267064095, + -0.024415701627731323, + 0.01200735755264759, + 0.014313037507236004, + -0.024126099422574043, + 0.01918058469891548, + -0.005109809804707766, + 0.0031828407663851976, + -0.009534599259495735, + 0.010074818506836891, + 0.00500956317409873, + -0.005719645414501429, + 0.01656302437186241, + 0.022878581658005714, + 0.01586129516363144, + -0.004079494159668684, + 0.02332412451505661, + 0.001612305175513029, + -0.018701625987887383, + -0.008715915493667126, + -0.02488352172076702, + -0.01975978910923004, + 0.0007929255370981991, + -0.025128569453954697, + 0.005825461819767952, + -0.0005346504040062428, + 0.002769322134554386, + -0.006020386703312397, + 0.003923554439097643, + -0.004330111667513847, + -0.023168185725808144, + 0.0044470662251114845, + -0.005920139607042074, + -0.002733121858909726, + -0.0024170654360204935, + 0.016986289992928505, + -0.017153367400169373, + 0.012664532288908958, + 0.007462828885763884, + 0.00949004478752613, + -0.018322914838790894, + -0.0020174698438495398, + -0.02720033936202526, + -0.0060259560123085976, + 0.00012774525384884328, + 0.0027261602226644754, + 0.038182951509952545, + -0.014925657771527767, + 0.009556876495480537, + -0.02283402904868126, + -0.00692260917276144, + 0.002430988708510995, + -0.0022973259910941124, + 0.019614987075328827, + -0.017543217167258263, + -0.009885463863611221, + 0.004352388437837362, + 0.013711555860936642, + -0.007290181238204241, + -0.01799989677965641, + 0.013188043609261513, + -0.009707246907055378, + -0.0009586114902049303, + 0.0016638209344819188, + -0.01442442275583744, + 0.005909000989049673, + 0.023591449484229088, + -0.004310619086027145, + -0.008866285905241966, + -0.000669357250444591, + -0.0015148428501561284, + 0.002340487902984023, + -0.0014159881975501776, + 0.0003291093453299254, + -0.03274733945727348, + 0.019124891608953476, + 0.012063049711287022, + -0.01157295424491167, + -0.006282142363488674, + 0.018634794279932976, + 0.013065519742667675, + 0.014892241917550564, + 0.017877373844385147, + 0.01171775534749031, + 0.0006171453278511763, + -0.012542007490992546, + -0.007323597092181444, + -0.0015078812139108777, + 0.0018141913460567594, + -0.00032649876084178686, + 0.01302096527069807, + 0.03210130333900452, + 0.009517891332507133, + -0.011539538390934467, + 0.024259762838482857, + 0.001019177376292646, + 0.014736302196979523, + 0.0048285615630447865, + -0.006610729731619358, + -0.017565494403243065, + 0.009239427745342255, + 0.004820207599550486, + -0.005265749525278807, + 0.020873643457889557, + 0.021987497806549072, + -0.004942731931805611, + -0.004274418577551842, + -0.037202756851911545, + 0.01827836036682129, + -0.00522954948246479, + 0.03330426663160324, + -0.021798143163323402, + 0.008532129228115082, + -0.005602690856903791, + -0.0005336061585694551, + 0.01117196585983038, + -0.012107604183256626, + 0.00862123817205429, + 0.0019088691333308816, + -2.9042899768683128e-5, + 0.021787004545331, + -0.022700365632772446, + -0.01906919851899147, + -0.004076709505170584, + -0.016028374433517456, + 0.023368678987026215, + -0.009640415199100971, + 0.01170661672949791, + -0.00486754672601819, + 0.007095256820321083, + 0.0059758322313427925, + 0.003550413064658642, + -0.003475227626040578, + -0.015593970194458961, + 0.0021525248885154724, + 0.0034473813138902187, + -0.0005155060207471251, + 0.018735041841864586, + -0.027913207188248634, + 0.0014981350395828485, + 0.01743183098733425, + -0.009863186627626419, + 0.0002264258509967476, + -0.014780856668949127, + -0.014023435302078724, + 0.006209741812199354, + -0.004653129260987043, + -0.022299377247691154, + -0.0135556161403656, + -0.013511061668395996, + -0.007546368055045605, + 0.01616203598678112, + -0.0011723324423655868, + 0.005324227269738913, + -0.008983240462839603, + -0.011378029361367226, + 0.0304973516613245, + 0.027601327747106552, + 0.0013408029917627573, + 0.0033109341748058796, + 0.00173065229319036, + -0.004305049777030945, + 0.01315462775528431, + 0.0002051929768640548, + -0.032769616693258286, + -0.022588979452848434, + -0.029004786163568497, + -0.0019130459986627102, + -0.00789723265916109, + -0.0012509984662756324, + 0.009852048009634018, + -0.0006042663590051234, + 0.002003546804189682, + 0.006465928629040718, + -0.01954815536737442, + 0.016496192663908005, + -0.009094626642763615, + 0.0024142807815223932, + 0.011116273701190948, + -0.0030380396638065577, + 0.026442918926477432, + -0.007006148342043161, + 0.001995192840695381, + -0.019626125693321228, + -0.021742450073361397, + 0.020183052867650986, + -0.0046447752974927425, + -0.009066780097782612, + 0.007312458474189043, + -0.003904061857610941, + 0.010876794345676899, + 0.00587558513507247, + -0.014613778330385685, + 0.009283982217311859, + 0.016986289992928505, + 0.0237028356641531, + 0.016874903813004494, + -0.005040193907916546, + 0.020082807168364525, + -0.0035364897921681404, + -0.0015663586091250181, + 0.01634025387465954, + -0.011895972304046154, + 0.001283021760173142, + 0.0026885676197707653, + 0.005864446982741356, + 0.008955394849181175, + -0.00364230596460402, + -0.018423162400722504, + -1.9786155462497845e-5, + -0.010136080905795097, + -0.015070458874106407, + -0.009317397139966488, + -0.001083224080502987, + 0.04241560027003288, + 0.0001724734902381897, + 0.025195401161909103, + 0.009907740168273449, + -0.0002654107811395079, + -0.00655503710731864, + -0.015059320256114006, + 0.008103295229375362, + -0.009840909391641617, + 0.008003048598766327, + -0.01798875816166401, + 0.0003010889340657741, + -0.002087085973471403, + 0.017732571810483932, + 0.011300059035420418, + -0.006042663473635912, + 0.000810329569503665, + -0.0006310684839263558, + 0.0043440344743430614, + 0.007362581789493561, + 0.016284560784697533, + -0.006861347239464521, + 0.0319453626871109, + -0.024215208366513252, + 0.009568015113472939, + 0.010609469376504421, + 0.0006230626604519784, + 0.021564234048128128, + 0.006226449739187956, + -0.019202860072255135, + -1.0029046279669274e-5, + -0.014246205799281597, + 0.0022137868218123913, + 0.009796354919672012, + -0.02137487754225731, + 0.0035448437556624413, + 0.02430431731045246, + -0.003990385681390762, + -0.006076079327613115, + 0.003486366244032979, + 0.004007093608379364, + -0.015516000799834728, + -0.008559975773096085, + -0.00948447547852993, + 0.01789965108036995, + -0.02962854504585266, + 0.004007093608379364, + -0.004636421799659729, + -0.0101639274507761, + -0.02428204007446766, + 0.0025340202264487743, + 0.029583990573883057, + 0.019704096019268036, + -0.006827931385487318, + 0.00209404737688601, + 0.018233807757496834, + 0.002932223491370678, + -0.0011423975229263306, + -0.024081546813249588, + -0.007050702348351479, + -0.0034529506228864193, + -0.009445490315556526, + 0.020383547991514206, + 0.033437930047512054, + -0.0015705355908721685, + -0.005605475511401892, + 0.004970578011125326, + -0.0004427573876455426, + 0.010770978406071663, + 0.012787056155502796, + -0.0068223620764911175, + -0.0064102355390787125, + 0.01312121283262968, + 0.004352388437837362, + 0.028336472809314728, + -0.0034724432043731213, + 0.019124891608953476, + 0.011929387226700783, + -0.022321654483675957, + 0.003731414442881942, + -0.005836600437760353, + 0.008988809771835804, + 0.01001355703920126, + 0.0028626073617488146, + -0.011227658949792385, + -0.01925855316221714, + 0.008454159833490849, + -0.01869048736989498, + 0.01713109016418457, + -0.01258656196296215, + 0.00174875243101269, + 0.024348871782422066, + 0.013678140006959438, + -0.009757369756698608, + -0.0004333592369221151, + 0.02786865271627903, + -0.010381128638982773, + 0.007006148342043161, + 0.021230077371001244, + 0.0015983820194378495, + 0.002038354752585292, + -0.029494881629943848, + -0.00082912587095052, + 0.006432512775063515, + -0.008164557628333569, + -0.006293280981481075, + -0.011055011302232742, + 0.022522149607539177, + 0.0028250147588551044, + -0.008894132450222969, + 0.0041129095479846, + -0.010943626053631306, + 0.0038706462364643812, + 0.01341081503778696, + -0.01866821013391018, + 0.0005642371834255755, + -0.002976777497678995, + -0.018567964434623718, + 0.013800663873553276, + 0.003979247063398361, + -0.006070510018616915, + 0.01368927862495184, + 0.003906846512109041, + 0.0002991745132021606, + -0.00948447547852993, + -0.005970262922346592, + 0.029361218214035034, + -0.0005670218379236758, + -0.003093732288107276, + -0.010102665051817894, + 0.006081648636609316, + 0.00957915373146534, + 0.0024045344907790422, + 0.0033081495203077793, + 0.002822230104357004, + 0.0025980668142437935, + -0.0025465511716902256, + 0.02197635918855667, + 0.006449220702052116, + 0.0005715468432754278, + -0.0037536914460361004, + 0.004906531423330307, + 6.905030750203878e-5, + -0.009022225625813007, + 0.00808101799339056, + 0.0018253299640491605, + 0.029851315543055534, + 0.0021539172157645226, + 0.002084301318973303, + -0.0042493571527302265, + -0.0035531974863260984, + -0.040967587381601334, + 0.010035834275186062, + -0.0008597568375989795, + 0.002311249263584614, + -0.011439290829002857, + 0.031210217624902725, + -0.005132087040692568, + -0.0036283826921135187, + 0.01579446531832218, + 0.004956654738634825, + 0.0046419911086559296, + 0.01146156806498766, + 0.0047032530419528484, + -0.017576633021235466, + -0.0014326960081234574, + 0.009072349406778812, + -0.018545687198638916, + -0.0033471344504505396, + -0.0032635952811688185, + 0.00041525906999595463, + -0.004770084284245968, + 0.007819262333214283, + 0.01625114493072033, + 0.0016053435392677784, + 0.01674124039709568, + -0.03568791598081589, + 0.0116175077855587, + 0.0007964063552208245, + 0.03154437616467476, + 0.0008896916988305748, + -0.0049510858952999115, + 0.010475806891918182, + -0.018723903223872185, + 0.005469028372317553, + 0.022511010989546776, + -0.022900858893990517, + -0.018233807757496834, + -0.013143489137291908, + 0.002202648436650634, + 0.007529660128057003, + 0.03261367604136467, + -0.01243062224239111, + 0.029650820419192314, + -0.006493774708360434, + -0.029338940978050232, + -0.021898390725255013, + 0.04105669632554054, + 0.009384228847920895, + -0.0045584519393742085, + -0.015482584945857525, + -0.033616144210100174, + 0.0022597333882004023, + 0.006142910569906235, + 0.0033805500715970993, + -0.021118691191077232, + 0.006003678776323795, + 0.012686808593571186, + -0.004210371989756823, + -0.024794412776827812, + -0.015081597492098808, + 0.017186783254146576, + 0.010403405874967575, + 0.00038845694507472217, + -0.00486754672601819, + 0.01257542334496975, + -0.019124891608953476, + 0.011795724742114544, + 0.011895972304046154, + -0.018345192074775696, + -0.014324176125228405, + 0.007395997643470764, + -0.017944205552339554, + -0.014669470489025116, + 0.0010003810748457909, + -0.0037815377581864595, + 0.021564234048128128, + 0.014680609107017517, + -0.009178165346384048, + -0.012386067770421505, + 0.017654603347182274, + -0.014736302196979523, + 0.0012802371056750417, + 0.008209112100303173, + 0.016886042430996895, + -0.014970211312174797, + -0.00048487502499483526, + 0.004121263511478901, + -0.005792046431452036, + 0.020973891019821167, + -0.009206011891365051, + 0.014936796389520168, + 0.017866235226392746, + 0.01955929398536682, + -0.00530195003375411, + 0.026086485013365746, + 0.018033312633633614, + -0.016284560784697533, + -0.013711555860936642, + 0.004140756092965603, + 0.010676300153136253, + -0.015270953066647053, + -0.005892293062061071, + 0.03205674886703491, + 0.024794412776827812, + 0.0030547473579645157, + 0.008582253009080887, + 0.005343719385564327, + -0.02273378148674965, + -0.008342774584889412, + -0.018244946375489235, + 0.010648454539477825, + -0.010659593157470226, + 0.019704096019268036, + 0.007551937364041805, + 0.011222089640796185, + 0.005920139607042074, + -0.01413482055068016, + 0.00404050899669528, + -0.03145526722073555, + 0.0101583581417799, + -0.005624968092888594, + 0.020071668550372124, + 0.021341461688280106, + 0.00040934173739515245, + -0.010765409097075462, + 0.0012558716116473079, + 0.01316576637327671, + 0.0010665161535143852, + -0.017788264900445938, + -0.001275364076718688, + 0.013132350519299507, + 0.012352652847766876, + -0.0013178297085687518, + 0.023301847279071808, + -0.010364420711994171, + 0.005288026761263609, + 0.0027721067890524864, + 0.004887038841843605, + -0.01326601393520832, + -0.014034573920071125, + -0.0070896875113248825, + 0.012263543903827667, + 0.007713446393609047, + -0.017064258456230164, + -9.80714539764449e-5, + -0.0017584986053407192, + -0.010938056744635105, + 0.003232964314520359, + -0.015839017927646637, + 0.015582832507789135, + -0.02477213554084301, + 0.0028069147374480963, + -0.028603797778487206, + -0.005017917137593031, + 0.025574112311005592, + 0.0004243091680109501, + -0.0060482327826321125, + 0.00367850624024868, + -0.025863714516162872, + -0.009167026728391647, + 0.008593391627073288, + 0.01577218808233738, + 0.006426943466067314, + 0.02186497487127781, + 0.0037453374825417995, + -0.0025730051565915346, + -0.010709716007113457, + -0.036824047565460205, + -0.0016735672252252698, + -0.00378432241268456, + -0.00019579482614062726, + 0.004906531423330307, + -0.0007602060795761645, + -0.005123733077198267, + -0.0016053435392677784, + 0.010793255642056465, + -0.03181169927120209, + 0.024081546813249588, + -0.0108879329636693, + 0.005622183438390493, + 0.015048181638121605, + 0.0010337966959923506, + 0.0016136975027620792, + 0.010520360432565212, + -0.03620028868317604, + 0.019225137308239937, + -0.010904640890657902, + -0.01762118749320507, + -0.008097725920379162, + 0.027133509516716003, + 0.0009502575849182904, + 0.0044999741949141026, + -0.006042663473635912, + -0.015449169091880322, + -0.034017134457826614, + -0.008727054111659527, + -0.0013797879219055176, + -0.004193664062768221, + -0.015304367989301682, + -0.00817012693732977, + -0.014513530768454075, + -0.004686545114964247, + -0.010481376200914383, + 0.013889772817492485, + 0.005321442615240812, + 0.003667367622256279, + 0.0108879329636693, + 0.03261367604136467, + 0.002777676098048687, + 0.007579783443361521, + 0.024170653894543648, + 0.01341081503778696, + -0.010119372978806496, + 0.008777177892625332, + 0.0006940709426999092, + -0.021530818194150925, + -0.013967742212116718, + 0.004619713872671127, + 0.0019325384637340903, + -0.006298850290477276, + 0.01147270668298006, + 0.022020913660526276, + 0.028403304517269135, + 0.006733253598213196, + -0.011494983918964863, + -0.008682499639689922, + 0.01685262657701969, + 0.015593970194458961, + -0.0329032763838768, + 0.002696921583265066, + -0.00522398017346859, + -0.02931666560471058, + 0.006710976827889681, + 0.0011368283303454518, + -0.011684339493513107, + -0.014324176125228405, + -0.010704146698117256, + -0.00991887878626585, + -0.0001910957507789135, + 0.006126202642917633, + -6.169713014969602e-5, + 0.021319186314940453, + 0.015404615551233292, + -0.010659593157470226, + 0.01635139249265194, + -0.0036534445825964212, + 0.012464038096368313, + -0.024705305695533752, + 0.014324176125228405, + -0.0164516381919384, + -0.02042810060083866, + -0.0019381077727302909, + -0.033348821103572845, + 0.02671024389564991, + -0.009662692435085773, + -0.002532627899199724, + -0.02139715477824211, + -0.014580362476408482, + 0.01789965108036995, + -0.005463459063321352, + -0.002238848712295294, + 0.023257292807102203, + 0.003973677754402161, + 0.010782117024064064, + -0.0021260709036141634, + -0.00544675113633275, + 0.01509273611009121, + -0.00019388039072509855, + -0.001474465592764318, + 0.002121893921867013, + -0.007084118202328682, + 0.015660801902413368, + -0.024727581068873405, + -0.003806599648669362, + -0.0319230854511261, + 0.0060148173943161964, + -0.002123286249116063, + -0.008448590524494648, + -0.0015357276424765587, + -8.163557140505873e-6, + 0.007006148342043161, + -0.005753061268478632, + -0.013945464976131916, + -0.013243736699223518, + 0.005118163768202066, + -0.027155786752700806, + 0.002685782965272665, + -0.01713109016418457, + -0.002048101043328643, + 0.03297010809183121, + 0.0058700162917375565, + -0.012675669975578785, + -0.004764514975249767, + -0.0019617772195488214, + 0.009907740168273449, + -0.006137341260910034, + -0.0035448437556624413, + 0.016707826405763626, + -0.012319236993789673, + 0.005237903445959091, + -0.00025653475313447416, + 0.015326645225286484, + 0.0029183002188801765, + 0.005171072203665972, + -0.009144749492406845, + -0.0010860086185857654, + 0.025663219392299652, + -0.006115064024925232, + 0.016496192663908005, + 0.0007636868394911289, + -0.018991228193044662, + 0.005338150076568127, + -0.0075964913703501225, + -0.007796985097229481, + 0.011639785021543503, + 0.006438082084059715, + 0.016095206141471863, + 0.0037815377581864595, + 0.020149637013673782, + 0.015950404107570648, + -0.008732623420655727, + -0.003659013891592622, + 0.02922755666077137, + -0.020171914249658585, + 0.005535859614610672, + 0.018801873549818993, + 0.0024727582931518555, + -0.015181844122707844, + 0.008426313288509846, + -0.0149924885481596, + -0.013967742212116718, + -0.006666422355920076, + 0.0037174911703914404, + 0.012241266667842865, + 0.007769139017909765, + -0.023925606161355972, + -0.019002366811037064, + 0.0018991228425875306, + -0.0020230391528457403, + 0.01044796034693718, + 0.0027526142075657845, + 0.010498084127902985, + 0.005402197130024433, + -0.0007845716318115592, + 0.04023244231939316, + -0.022410763427615166, + -0.014736302196979523, + 0.009891033172607422, + -0.0003895011905115098, + 0.019213998690247536, + 0.0006470801890827715, + 0.009606999345123768, + -0.01859023980796337, + -0.0019993698224425316, + 0.01442442275583744, + 0.01073756255209446, + 0.009517891332507133, + -0.0018879843410104513, + 0.014903380535542965, + -0.02584143728017807, + 0.005753061268478632, + 0.00573078403249383, + -0.002202648436650634, + -0.005377135239541531, + -0.007964063435792923, + 0.001402761205099523, + -0.011400306597352028, + -0.00992444809526205, + -0.004848054144531488, + -0.0006442955345846713, + -0.01344422996044159, + 0.0012092288816347718, + -0.013143489137291908, + 0.0024351656902581453, + 0.020985029637813568, + -0.005048547871410847, + -0.002195686800405383, + -0.03648989275097847, + 0.0059758322313427925, + 0.0009606999810785055, + 0.012386067770421505, + -0.0009036149131134152, + -0.002769322134554386, + 0.013945464976131916, + 0.01244176086038351, + 0.020940475165843964, + -0.004742237739264965, + -0.012942995876073837, + -0.005262964870780706, + 0.01368927862495184, + -0.0011417014757171273, + 0.0070172869600355625, + 0.014892241917550564, + 0.005190564319491386, + 0.008654654026031494, + 0.02021646872162819, + -0.0149924885481596, + -0.019915727898478508, + -0.018334053456783295, + -0.012709085829555988, + 0.0030491782817989588, + -0.012218989431858063, + 0.014546946622431278, + 0.011539538390934467, + 0.02070656605064869, + 0.019614987075328827, + 0.016507331281900406, + -0.0063879587687551975, + -0.00662743765860796, + 0.001264921622350812, + 0.002396180760115385, + 0.004728314466774464, + -0.01002469565719366, + 0.01312121283262968, + 0.016574162989854813, + -0.029272111132740974, + 0.005769769195467234, + -0.002493642969056964, + -0.010676300153136253, + -0.03718047961592674, + 0.00010581623064354062, + 0.0030519627034664154, + -0.0036645832005888224, + 0.0034000424202531576, + -0.009467767551541328, + -0.013421953655779362, + -0.004822992254048586, + -0.015337783843278885, + 0.0036283826921135187, + 0.009367520920932293, + -0.0304750744253397, + 0.02448253333568573, + -0.0019896235316991806, + 0.002912730909883976, + -0.018456578254699707, + 0.0019492462743073702, + -0.00024278559430968016, + -0.0009774077916517854, + 0.011160827241837978, + -0.019124891608953476, + 0.01170661672949791, + -0.010420113801956177, + 0.014045712538063526, + 0.01789965108036995, + -0.017498662695288658, + -0.002575789811089635, + 0.00486197741702199, + -0.00551636703312397, + -0.015126151032745838, + -0.0198488961905241, + 0.01524867583066225, + -0.007858247496187687, + 0.003124363487586379, + -0.0013978880597278476, + 0.0020105084404349327, + -0.008598960936069489, + 0.016128620132803917, + 0.02343551069498062, + 0.017186783254146576, + 0.021152107045054436, + -0.024059269577264786, + 0.0026802136562764645, + -0.01190710999071598, + -0.003558766795322299, + -0.005087533034384251, + -0.010097095742821693, + 0.003734199097380042, + -0.0017153368098661304, + -0.0007045133388601243, + 0.004842484835535288, + -0.0022346717305481434, + -0.005474597681313753, + -0.005780907813459635, + -0.01947018690407276, + -0.0043440344743430614, + -0.00023077684454619884, + -0.008793885819613934, + 0.027423111721873283, + 0.01818925328552723, + -0.0116175077855587, + -0.007078548893332481, + 0.0014869965380057693, + 0.028291918337345123, + -0.005677876062691212, + 0.026665689423680305, + 0.012074188329279423, + 0.000651257112622261, + 0.016384808346629143, + -0.01456922385841608, + 0.004906531423330307, + -0.005104240961372852, + 0.013098935596644878, + -0.007713446393609047, + 0.000695811293553561, + 0.014791995286941528, + 0.0037174911703914404, + -0.0023725111968815327, + -0.01953701674938202, + 0.014535808004438877, + 0.009094626642763615, + 8.179873111657798e-5, + -0.05025713890790939, + -0.013622446916997433, + -0.0169417355209589, + 0.005981401540338993, + -0.01272022444754839, + -0.014546946622431278, + 0.010347713716328144, + -0.017353860661387444, + 0.01576104946434498, + -0.006928178481757641, + 0.0027456525713205338, + -0.024437978863716125, + 0.0073068891651928425, + -0.008554406464099884, + 0.0012955525889992714, + -0.004669837187975645, + -0.002684390638023615, + 0.014903380535542965, + -0.02120780013501644, + -0.0008326066308654845, + -0.014090266078710556, + -0.0014257344882935286, + -0.0003526047512423247, + -0.014368729665875435, + 0.00588115444406867, + 0.0027818530797958374, + -0.0034083963837474585, + 0.000910576491151005, + -0.007501813583076, + -0.010654023848474026, + -0.02245531789958477, + -0.02265581116080284, + 0.00038288766518235207, + -0.014313037507236004, + 0.014301898889243603, + -0.017454108223319054, + -0.0077524310909211636, + 0.002394788432866335, + -0.015371199697256088, + 0.00209265504963696, + 0.013199182227253914, + 0.005118163768202066, + 0.006549467798322439, + -0.005886723753064871, + -0.006059371400624514, + 0.013032103888690472, + 0.0038121689576655626, + -0.005858877673745155, + 0.001019177376292646, + 0.008348343893885612, + -0.006549467798322439, + -0.01368927862495184, + 0.001901907497085631, + 0.00764104537665844, + -0.0056555988267064095, + 0.0021720172371715307, + 0.007908370345830917, + -0.009618137963116169, + 0.0019325384637340903, + 0.010537068359553814, + -0.005249042063951492, + -0.00418531009927392, + -0.011333474889397621, + 0.017765987664461136, + 0.0027261602226644754, + 0.00522676482796669, + -0.004213156644254923, + 0.008537698537111282, + 0.02196522057056427, + 0.00794178619980812, + -0.03733642026782036, + -0.016707826405763626, + -0.028425579890608788, + 0.008743762038648129, + -0.011160827241837978, + 0.0031549944542348385, + 0.012274682521820068, + 0.0015162351774051785, + -0.013221459463238716, + 0.00977964699268341, + 0.0012147981906309724, + 0.016986289992928505, + 0.015705356374382973, + -0.0030018393881618977, + -0.0002447000297252089, + -0.008944256231188774, + 0.015181844122707844, + -0.006783377379179001, + -0.027712713927030563, + -0.014301898889243603, + 0.024059269577264786, + 0.009289550594985485, + -0.028871122747659683, + -0.015593970194458961, + 0.008559975773096085, + 0.003831661306321621, + -0.011244366876780987, + 0.006360112223774195, + 0.014613778330385685, + 0.023970160633325577, + 0.008108864538371563, + -0.005466243717819452, + -0.009534599259495735, + -0.0004761730378959328, + -0.016217729076743126, + -0.013889772817492485, + -0.012363790534436703, + 0.019314246252179146, + -0.01171775534749031, + -0.001556612434796989, + 0.014212789945304394, + 0.001019177376292646, + -0.010537068359553814, + 0.020940475165843964, + -0.012530868873000145, + 0.0116175077855587, + 0.007368151098489761, + -0.020762257277965546, + -0.00500677851960063, + 0.021530818194150925, + -0.007072979584336281, + -0.016228867694735527, + -0.012653393670916557, + -0.02343551069498062, + 0.020985029637813568, + -0.001793306670151651, + -0.006866916548460722, + -0.008131141774356365, + -0.030051808804273605, + -0.005683445371687412, + 0.01753207854926586, + 0.007145380135625601, + -0.011985080316662788, + -0.003478012280538678, + 0.022087745368480682, + -0.003152209799736738, + -0.020383547991514206, + 0.027244893833994865, + -0.012274682521820068, + 0.024950353428721428, + 0.005992540158331394, + -0.020884782075881958, + 0.004277203232049942, + 0.001163978478871286, + -0.014869964681565762, + -0.001356814638711512, + -0.004706037696450949, + 0.0019060844788327813, + 0.014725163578987122, + 0.010921348817646503, + 0.00014332181308418512, + -0.02274492010474205, + -0.001883807359263301, + 0.02835875004529953, + 0.02717806212604046, + -0.009852048009634018, + 0.0015050966758280993, + -0.016095206141471863, + 0.0006373339565470815, + 0.008933117613196373, + -0.0013143490068614483, + 0.0005349984858185053, + 0.02070656605064869, + 0.02081795036792755, + 0.0020244314800947905, + 0.002985131461173296, + -0.0029545004945248365, + -0.005045763216912746, + -0.031789422035217285, + -0.008933117613196373, + 0.001319918199442327, + 0.0135444775223732, + -0.0060482327826321125, + 0.01859023980796337, + -0.005641676019877195, + 0.0013776994310319424, + -0.021129829809069633, + -0.006254296284168959, + -0.016718965023756027, + -0.013466507196426392, + 0.012686808593571186, + 0.004605790600180626, + -0.0030269010458141565, + 0.014201652258634567, + 0.009211581200361252, + -0.0017055905191227794, + 0.005101456306874752, + 0.01713109016418457, + 0.010381128638982773, + 0.005825461819767952, + 0.013054381124675274, + -0.01577218808233738, + -0.0024769350420683622, + 0.009228289127349854, + 0.0004034243756905198, + 0.022989967837929726, + -0.01370041724294424, + -0.005460674408823252, + 0.004196448717266321, + 0.012631116434931755, + 0.02168675698339939, + -0.014647194184362888, + 0.0030436089728027582, + -0.007841539569199085, + -0.020372409373521805, + -0.006571744568645954, + -0.00015063148748595268, + 0.00757421413436532, + -0.00486197741702199, + -0.008353913202881813, + -0.022410763427615166, + -0.005675091408193111, + 0.021029584109783173, + 0.011149688623845577, + -0.009523460641503334, + 0.009267274290323257, + 0.029183002188801765, + -0.000668661086820066, + -0.01272022444754839, + -0.009100195951759815, + -0.0037397684063762426, + -0.006566175259649754, + 0.013956603594124317, + -0.0023711188696324825, + 0.009161457419395447, + 0.00663300696760416, + 0.0038093843031674623, + -0.003851153887808323, + 0.005914570298045874, + 0.015404615551233292, + 0.002649582689628005, + 0.011483845300972462, + -0.003622813615947962, + 0.01908033713698387, + -0.000298130267765373, + -0.003369411453604698, + -0.007262334693223238, + 0.0022625180426985025, + 0.019715234637260437, + -0.00808658730238676, + 0.002614774741232395, + 0.019982559606432915, + -0.0011368283303454518, + 0.02236620895564556, + -0.0198488961905241, + -0.020784534513950348, + -0.040009673684835434, + 0.004121263511478901, + 0.008220249786973, + 0.01626228354871273, + -0.0014939580578356981, + 0.01656302437186241, + -0.004875900223851204, + 0.016217729076743126, + -0.01146156806498766, + -0.0070172869600355625, + 0.003770399373024702, + 0.02633153274655342, + 0.020539486780762672, + 0.017476385459303856, + 0.002506173914298415, + 0.003650659928098321, + 0.014647194184362888, + -0.025418171659111977, + -0.024170653894543648, + -0.03833889216184616, + 0.012909580022096634, + 0.0029795621521770954, + 0.0068223620764911175, + 0.020205330103635788, + -0.0010755662806332111, + 0.00205784710124135, + -0.0021706249099224806, + -0.011940525844693184, + -0.00837618950754404, + 0.001056073815561831, + 0.00987432524561882, + -0.01199621893465519, + -0.01147270668298006, + 0.01779940351843834, + -0.009835340082645416, + -0.014580362476408482, + 0.012074188329279423, + 0.012508592568337917, + -0.0025604742113500834, + -0.03020774945616722, + -0.018322914838790894, + 0.008236957713961601, + -0.008693638257682323, + 0.0020174698438495398, + -0.006649714428931475, + 0.005413335282355547, + -0.016329115256667137, + 0.002710844622924924, + -0.0050763944163918495, + -0.011016026139259338, + 0.020962752401828766, + -0.007078548893332481, + -0.038873542100191116, + -0.028225086629390717, + -0.00587558513507247, + 0.004062786232680082, + 0.018066728487610817, + 0.004085063468664885, + 0.008727054111659527, + 0.01128335203975439, + -0.02940577268600464, + -0.01131676696240902, + -0.0034557352773845196, + 0.004129617474973202, + 0.006187464576214552, + -0.011132980696856976, + 0.03125477209687233, + 0.006276573054492474, + 0.01596154272556305, + 0.0029907007701694965, + 0.0019729158375412226, + -0.01060390006750822, + 0.023301847279071808, + -0.005276888143271208, + 0.005034624598920345, + -0.006282142363488674, + 0.023747390136122704, + 0.002231887076050043, + 0.009066780097782612, + 0.022132299840450287, + -0.007952924817800522, + 0.01637366972863674, + 0.03366069868206978, + 0.00371470651589334, + 0.005357642658054829, + 0.02081795036792755, + 0.014056850224733353, + -0.00891084037721157, + -0.018757319077849388, + 0.023546895012259483, + -0.0169528741389513, + 0.012942995876073837, + -0.0061707571148872375, + -0.035465143620967865, + -0.013878634199500084, + -0.026353809982538223, + -0.008120003156363964, + -0.03455178439617157, + 0.026777075603604317, + -0.007095256820321083, + 0.024215208366513252, + -0.0184008851647377, + 0.041168082505464554, + -0.01955929398536682, + -0.012842748314142227, + -0.01848999410867691, + 0.01074313186109066, + -0.003068670630455017, + -0.01936993934214115, + -0.024504810571670532, + -0.0030241163913160563, + -0.007028425112366676, + -0.016407085582613945, + 0.004438712261617184, + 0.010503653436899185, + 0.008838439360260963, + 0.017843957990407944, + -0.02506173774600029, + -0.019871173426508904, + 0.006271003745496273, + -0.006800084840506315, + -0.026777075603604317, + -0.009957863949239254, + -0.019325384870171547, + -0.009206011891365051, + -0.017832819372415543, + -0.003505858825519681, + -0.0037007834762334824, + 0.01771029457449913, + -0.0004281380388420075, + -0.008977672085165977, + -0.023680558428168297, + 0.012408345006406307, + 0.0004528517019934952, + 0.023658281192183495, + 0.0036562292370945215, + 0.018935535103082657, + -0.0026816059835255146, + -0.0008514029323123395, + -0.01596154272556305, + 0.00011408312275307253, + 0.0056862300261855125, + -0.010676300153136253, + -0.023658281192183495, + 0.00735701248049736, + -0.009740662761032581, + -0.004065570887178183, + 0.022767197340726852, + -0.0074962442740798, + 0.018634794279932976, + 0.005062471143901348, + -0.01636253111064434, + -0.016808072105050087, + 0.02090705931186676, + 0.010002418421208858, + -0.007100826129317284, + -0.007072979584336281, + -0.010581622831523418, + 0.01399001944810152, + -0.011962803080677986, + 0.004352388437837362, + 0.0023446648847311735, + -0.004945516586303711, + -0.010804394260048866, + 0.007763569708913565, + -0.006694268900901079, + -0.008515422232449055, + -0.017376137897372246, + 0.009612568654119968, + 0.001811406807973981, + -0.013366260565817356, + -0.00905564147979021, + -0.005858877673745155, + 0.01827836036682129, + -0.013288290239870548, + -0.010821102187037468, + 0.012464038096368313, + -0.014691747725009918, + -0.03395030274987221, + -0.018122421577572823, + -0.01615089736878872, + 0.010002418421208858, + -0.005430043209344149, + 0.008448590524494648, + -0.005998109467327595, + -0.005235118791460991, + -0.028626075014472008, + 0.01030315924435854, + 0.009801924228668213, + 0.02285630628466606, + 0.009556876495480537, + -0.007384859025478363, + -0.0011542323045432568, + -0.018924396485090256, + 0.01963726431131363, + -0.004324542358517647, + -0.012475176714360714, + 0.018902119249105453, + -0.011829140596091747, + 0.00382330734282732, + 0.02215457707643509, + -0.022009775042533875, + 0.006393528077751398, + -0.006978301797062159, + -0.01175117027014494, + -0.0012816294329240918, + -0.0015259813517332077, + -0.016329115256667137, + -0.020673150196671486, + 0.0006366377929225564, + -0.02120780013501644, + 0.0031577791087329388, + -0.02748994156718254, + -0.016975151374936104, + -0.007117533590644598, + 0.0007845716318115592, + 0.03107655607163906, + -0.009885463863611221, + -0.02806914784014225, + 0.009902171790599823, + -0.00020797761681023985, + -0.006254296284168959, + -0.01200735755264759, + 0.006972732488065958, + -0.022477595135569572, + -0.011105135083198547, + 0.009278412908315659, + 0.0009321574470959604, + 0.00486754672601819, + -0.013087796978652477, + -0.01199621893465519, + -0.00648263655602932, + 0.0016958443447947502, + 0.015994958579540253, + -0.009863186627626419, + 0.008014187216758728, + -0.007674461230635643, + -0.004978931974619627, + 0.0033916886895895004, + -0.029338940978050232, + -0.028626075014472008, + 0.008537698537111282, + -0.00043440345325507224, + 0.021408293396234512, + -0.025952821597456932, + 0.027244893833994865, + 0.0033610574901103973, + 0.021709034219384193, + 0.011110704392194748, + 0.01175117027014494, + 0.02931666560471058, + 0.005031839944422245, + 0.020773395895957947, + -5.347374462871812e-5, + -0.0007483713561668992, + 0.019102614372968674, + 0.024616196751594543, + -0.0026635059621185064, + 0.037492360919713974, + 0.023368678987026215, + 0.015582832507789135, + -0.005947986152023077, + -0.0007650791667401791, + 0.01772143319249153, + 0.007312458474189043, + 0.005482951644808054, + -0.012742501683533192, + 0.02748994156718254, + 0.0021970791276544333, + -0.016006097197532654, + 0.025039460510015488, + 0.007256765384227037, + -0.008454159833490849, + -0.0019422847544774413, + -0.002577182138338685, + 0.0058310311287641525, + 0.021140968427062035, + 0.023836497217416763, + -0.00670540751889348, + 0.017498662695288658, + -0.010186204686760902, + 0.0006087914225645363, + 0.01523753721266985, + 0.012085326947271824, + -0.003224610351026058, + -0.0004518074565567076, + 0.002329349284991622, + -0.0002843811234924942, + -0.0020522780250757933, + 0.014468977227807045, + -0.005947986152023077, + 0.02688845992088318, + -0.001019873539917171, + -0.010943626053631306, + -0.01975978910923004, + 0.005694583989679813, + 0.007680030539631844, + -0.003650659928098321, + 0.004093417432159185, + -0.0033276418689638376, + -0.005137656349688768, + -0.0007455867016687989, + -0.0072679040022194386, + -0.0012677062768489122, + -0.009935586713254452, + 0.008877424523234367, + -0.01510387472808361, + -0.0071398108266294, + -0.0012579599861055613, + -0.0035671207588166, + -0.003948616329580545, + 0.007557506673038006, + -0.031187940388917923, + -0.005925708916038275, + 0.010826670564711094, + 0.00728461192920804, + -0.002386434469372034, + -0.008949825540184975, + 0.025774605572223663, + 0.012063049711287022, + -0.011595230549573898, + 0.00876046996563673, + -0.018946673721075058, + -0.007167657371610403, + -0.004522251430898905, + 0.004811853636056185, + -0.002776283770799637, + 0.002812484046444297, + -0.007680030539631844, + 0.029294388368725777, + -0.0032719492446631193, + -0.019492464140057564, + -0.012252405285835266, + -0.0026356594171375036, + -0.012898441404104233, + -0.010364420711994171, + -0.019291969016194344, + 0.002593889832496643 + ], + "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0": [ + -0.014080822467803955, + -0.006987645756453276, + -0.019312134012579918, + -0.027196792885661125, + -0.0335286408662796, + -0.027332475408911705, + 0.017291974276304245, + 0.03123711422085762, + -0.009648529812693596, + 0.05080553889274597, + 0.03268439322710037, + 0.013975291512906551, + -0.007907271385192871, + 0.008510304614901543, + -0.00998773518949747, + 0.0008206903585232794, + -0.03485531359910965, + 0.023201698437333107, + 0.029126498848199844, + -0.017201518639922142, + 0.06790152937173843, + -0.052252817898988724, + -0.0040365527383983135, + 0.00708186998963356, + -0.016613561660051346, + -0.023005712777376175, + 0.02944309078156948, + 0.001611229032278061, + -0.04634309187531471, + -0.04965977370738983, + -0.002344291191548109, + 0.03925745561718941, + 0.01937243714928627, + 0.015023062005639076, + 0.014736621640622616, + -0.0335286408662796, + -0.005830576177686453, + 0.014043132774531841, + 6.813567597419024e-5, + 0.005431066732853651, + -0.030875293537974358, + 0.010538003407418728, + 0.016146210953593254, + 0.013296879827976227, + -0.009181179106235504, + 0.003326104488223791, + 0.013259190134704113, + -0.007643444463610649, + 0.01602560468018055, + -0.015234123915433884, + 0.023081092163920403, + 0.027332475408911705, + -0.000717044051270932, + -0.0031998443882912397, + 0.013854685239493847, + -0.040041398257017136, + -0.01122395321726799, + 0.0808064341545105, + 0.029895365238189697, + -0.04272489622235298, + 0.011683765798807144, + 0.010387244634330273, + 0.027739522978663445, + -0.008118333294987679, + 0.00654290895909071, + -0.0010392898693680763, + -0.015829619020223618, + -0.01281445287168026, + 0.0005705258226953447, + 0.008570607751607895, + 0.0044662137515842915, + -0.0008696867735125124, + -0.052825700491666794, + 0.009286710061132908, + -0.017834704369306564, + -0.011879751458764076, + 0.005698662716895342, + -0.009829439222812653, + 0.020171456038951874, + 0.02059357985854149, + -0.028990816324949265, + 0.0024215546436607838, + 0.020638806745409966, + 0.021799646317958832, + 0.05599162355065346, + 0.03235272690653801, + -0.015935149043798447, + -0.05608207732439041, + -0.07978127896785736, + -0.03563925623893738, + -0.0014915646752342582, + 0.031056204810738564, + -0.021452901884913445, + 7.985476986505091e-5, + 0.00044355911086313426, + 0.020503124222159386, + 0.05234327167272568, + 0.009105799719691277, + -0.0008084412547759712, + -0.04010169953107834, + -0.015452723018825054, + 0.025131404399871826, + -0.02660883590579033, + 0.00571373850107193, + 0.00927917193621397, + -0.011480242945253849, + -0.0016517452895641327, + 0.002214262029156089, + -0.03096574917435646, + -0.013357182964682579, + 0.030136579647660255, + -0.040312763303518295, + 0.017729172483086586, + 0.010553078725934029, + -0.027106337249279022, + -0.04100624844431877, + -0.02318662218749523, + -0.024528371170163155, + 0.0043456070125103, + -0.024151476100087166, + 0.03762926533818245, + 0.03672471642494202, + 0.015339653939008713, + -0.020548352971673012, + 0.001963626593351364, + -0.0038443359080702066, + -0.0195382721722126, + 0.01937243714928627, + 0.030679307878017426, + 0.031418025493621826, + -0.011118422262370586, + -0.035578951239585876, + 0.0021746880374848843, + -0.030619004741311073, + -0.009806825779378414, + 0.008012802340090275, + 0.008887200616300106, + 0.06211240962147713, + -0.007914809510111809, + 0.041699737310409546, + -0.025553526356816292, + -0.03588046878576279, + -0.017774401232600212, + -0.020005622878670692, + 0.017201518639922142, + 0.011193801648914814, + -0.029081270098686218, + 0.0446847528219223, + -0.02048804983496666, + 0.016070831567049026, + -0.06386120617389679, + -0.0007354177068918943, + 0.019417665898799896, + 0.02484496310353279, + -0.013786843977868557, + 0.01445018034428358, + -0.004164697136729956, + 0.060092248022556305, + 0.012829529121518135, + 0.015693936496973038, + -0.02170919068157673, + -0.06802213191986084, + -0.026729442179203033, + 0.0011721455957740545, + 0.009882205165922642, + 0.01839250884950161, + 0.03313666954636574, + 0.042242467403411865, + -0.0417901948094368, + 0.004047859460115433, + 0.04498627036809921, + -0.004714964888989925, + 0.02764906734228134, + 0.01700553297996521, + 0.024332385510206223, + -0.03491561487317085, + 0.023578593507409096, + 0.052282970398664474, + 0.018513115122914314, + -0.02900589257478714, + -0.017065836116671562, + 0.0064637609757483006, + -0.008698752149939537, + -0.00019327682093717158, + -0.017080912366509438, + 0.05602177605032921, + 0.015663783997297287, + 0.0136059345677495, + 0.0047601922415196896, + -0.00025087117683142424, + 0.008374622091650963, + 0.0064486851915717125, + 0.022025784477591515, + 0.039770033210515976, + -0.011924979276955128, + -0.024091171100735664, + -0.02247805893421173, + 0.012279260903596878, + 0.00659944349899888, + 0.033649247139692307, + -0.008095718920230865, + -0.059790730476379395, + -0.04821249470114708, + 0.027739522978663445, + -0.031116507947444916, + 0.021347371861338615, + -0.016085907816886902, + -0.013515478931367397, + 0.023819807916879654, + -0.022824803367257118, + 0.02011115290224552, + -0.022658968344330788, + -0.007703747600317001, + -0.008955040946602821, + -0.02579474076628685, + -0.0010995931224897504, + -0.008909814059734344, + 0.0014774310402572155, + 0.014909992925822735, + -0.015339653939008713, + -0.019417665898799896, + 0.011842062696814537, + 0.01465370412915945, + -0.005310459993779659, + -0.06542909145355225, + -0.002291525714099407, + -0.02268912084400654, + 0.05345888435840607, + -0.04212186112999916, + 0.0017940234392881393, + 0.04682552069425583, + -0.011321946047246456, + 0.0243776123970747, + -0.009527922607958317, + -0.007096945773810148, + 0.015874845907092094, + 0.02941293828189373, + 0.008894737809896469, + 0.005449911579489708, + -0.048634618520736694, + 0.025071101263165474, + 0.0195382721722126, + -0.02130214311182499, + 0.009776674211025238, + 0.004240076523274183, + 0.027829976752400398, + -0.01080183032900095, + 0.07604247331619263, + 0.01308581791818142, + 0.004277766216546297, + -0.017020609229803085, + 0.018000537529587746, + 0.0044322931207716465, + 0.0026401542127132416, + -0.0216338112950325, + 0.048604466021060944, + 0.041699737310409546, + 0.015844695270061493, + -0.014872303232550621, + -0.006343154236674309, + 0.014646166004240513, + -0.02701588161289692, + 0.00921133067458868, + 0.010771678760647774, + 0.004892106167972088, + -0.02924710512161255, + 0.023819807916879654, + -0.04516717791557312, + 0.0017356046009808779, + 0.03238287568092346, + 0.00820124987512827, + -0.026412850245833397, + 0.0032620320562273264, + 0.0009714486077427864, + -0.004428524058312178, + -0.021271992474794388, + 0.033649247139692307, + 0.012045585550367832, + 0.027664143592119217, + 0.005476294085383415, + -0.005525290500372648, + 0.012098351493477821, + -0.0007415422587655485, + 0.013719002716243267, + 0.0174728836864233, + 0.015437646768987179, + -0.0013954562600702047, + -0.007345696911215782, + -0.029940592125058174, + -0.013070742599666119, + -0.016523106023669243, + 0.018980465829372406, + 0.01176668331027031, + 0.01129179447889328, + -0.0032808769028633833, + 0.005947413854300976, + 0.012919983826577663, + -0.022372527047991753, + 0.010960126295685768, + 0.0023084860295057297, + 0.007884657941758633, + -0.029156649485230446, + 0.002178457099944353, + -0.03904639184474945, + 0.03268439322710037, + -0.020156381651759148, + 0.008540456183254719, + 0.01134456042200327, + -0.048604466021060944, + 0.03090544603765011, + 0.033317577093839645, + 0.002883251989260316, + -0.028613919392228127, + -0.023684125393629074, + -0.021256916224956512, + 0.004010170232504606, + -0.014352187514305115, + -0.0074361516162753105, + -0.01670401729643345, + -0.023548442870378494, + -0.009452544152736664, + -0.014012981206178665, + -0.07568065077066422, + 0.05177038908004761, + 0.02217654138803482, + -0.046132031828165054, + 0.009814363904297352, + 0.010357093065977097, + -0.011110885068774223, + -0.019869940355420113, + -0.016417576000094414, + -0.020503124222159386, + -0.027829976752400398, + -0.01787993125617504, + -0.02342783473432064, + -0.04402141645550728, + -0.046101879328489304, + -0.04206155985593796, + 0.013832071796059608, + -0.014058209024369717, + -0.004944871179759502, + 0.005261463578790426, + 0.020020699128508568, + -0.0118345245718956, + 0.004929795395582914, + 0.010982739739120007, + 0.02636762149631977, + 0.009324398823082447, + -0.02623193897306919, + 0.022432830184698105, + 0.0008230459643527865, + -0.043026410043239594, + 0.041398223489522934, + -0.027739522978663445, + 0.02786012925207615, + 0.0074210758320987225, + -0.01592007279396057, + -0.019839787855744362, + 0.01632712036371231, + 0.02133229561150074, + -0.018709100782871246, + -0.03214166313409805, + -0.004854416474699974, + -0.011940055526793003, + -0.005536597687751055, + 0.04423247650265694, + 0.019719181582331657, + -0.0067464327439665794, + 0.005747659131884575, + 0.009912356734275818, + -0.022779574617743492, + 0.013673774898052216, + 0.021076006814837456, + -0.022779574617743492, + -0.005642128176987171, + -0.03455379605293274, + 0.04239322617650032, + -0.003375100903213024, + -0.023880111053586006, + 0.030166730284690857, + 0.001302174525335431, + 0.02704603411257267, + 0.016281893476843834, + 0.013749154284596443, + 0.03422212973237038, + 0.015497950837016106, + 0.005208698101341724, + -0.026156559586524963, + -0.0375991128385067, + -0.022674044594168663, + -0.011012892238795757, + -0.002006969414651394, + -0.03012150339782238, + -0.0005818327190354466, + -0.036091528832912445, + -0.017020609229803085, + -0.00544237345457077, + -0.0033977145794779062, + -0.0072401659563183784, + -0.005238850135356188, + -0.007179862819612026, + -0.0019004964269697666, + 0.006294157821685076, + 0.01670401729643345, + 0.013741616159677505, + -0.029051119461655617, + -0.00378214824013412, + -0.012264185585081577, + -0.00405539758503437, + -0.003160270396620035, + -0.006791660096496344, + 0.021754419431090355, + 0.03877502679824829, + 0.0446847528219223, + 0.0460415780544281, + 0.022462982684373856, + 0.02329215407371521, + 0.03841320797801018, + -0.044202324002981186, + -0.03569955751299858, + 0.025990726426243782, + 0.04133791849017143, + 0.005204929504543543, + 0.034161824733018875, + 0.0011222069151699543, + -0.0034259818494319916, + 0.007541682571172714, + 0.02522185817360878, + -0.02312631905078888, + 0.02095540054142475, + 0.0034617867786437273, + 0.01730705052614212, + -0.018754329532384872, + -0.013183810748159885, + 0.010831981897354126, + -0.00467350659891963, + 0.020020699128508568, + -0.03226226940751076, + -0.015098441392183304, + 0.012226495891809464, + 0.011879751458764076, + 0.0042023868300020695, + -0.004722503013908863, + 0.008080643601715565, + -0.02819179743528366, + -0.033076364547014236, + -0.02424192987382412, + -0.003083006711676717, + 0.03076976351439953, + 0.026699289679527283, + 0.027302322909235954, + 0.005423529073596001, + -0.07954006642103195, + 0.020985551178455353, + -0.008751518093049526, + 0.0006727587897330523, + 0.009942508302628994, + -0.0007537913625128567, + 0.011043043807148933, + -0.012889832258224487, + -0.035277437418699265, + 0.003458017949014902, + 0.060333460569381714, + -0.0005304806982167065, + 0.01646280288696289, + -0.06223301589488983, + -0.021392598748207092, + 0.013651161454617977, + -0.004850647412240505, + 0.0041345455683767796, + -0.010831981897354126, + 0.02274942398071289, + -0.016040680930018425, + 0.014970296062529087, + -0.013055666349828243, + -0.006836887449026108, + -0.018648797646164894, + 0.009377164766192436, + 0.013907450251281261, + -0.0032243425957858562, + 0.013311955146491528, + -0.016417576000094414, + -0.028659148141741753, + 0.0030679309275001287, + 0.01757841370999813, + 0.0034957074094563723, + -0.03651365265250206, + 0.006083096377551556, + 0.03566940873861313, + -0.0010355209233239293, + 0.04130776599049568, + 0.00412323884665966, + -0.010424934327602386, + -0.02078956551849842, + -0.01961365155875683, + -0.020201608538627625, + 0.018769405782222748, + -0.030106427147984505, + -0.04941856116056442, + -0.013719002716243267, + 0.04212186112999916, + -0.00955053698271513, + 0.023744428530335426, + 0.0017120486591011286, + 0.009181179106235504, + 0.036393046379089355, + -0.008223864249885082, + 0.017789475619792938, + 0.014887379482388496, + -0.002811641898006201, + -0.020910171791911125, + 0.01507582701742649, + -0.004654661752283573, + -0.011932517401874065, + 0.013734078966081142, + 0.017533186823129654, + -0.003113158280029893, + 0.03090544603765011, + 0.023141395300626755, + 0.007688671816140413, + 0.0003132945275865495, + 0.0009394125081598759, + 0.003167808288708329, + -0.005755197256803513, + -0.016417576000094414, + 0.0032469562720507383, + -0.0011382249649614096, + -0.0038782565388828516, + 0.05131811648607254, + -0.021392598748207092, + -0.01534719206392765, + 0.020985551178455353, + -0.0017535071820020676, + 0.021859949454665184, + 0.03868457302451134, + -0.009135951288044453, + -0.008857048116624355, + -0.0038028773851692677, + -0.007285393308848143, + 0.012837067246437073, + -0.009852053597569466, + 0.018317129462957382, + -0.004594358149915934, + -0.005559211131185293, + 0.007545451633632183, + 0.05740875005722046, + -0.04845370724797249, + 0.02609625644981861, + -0.013259190134704113, + 0.008419849909842014, + -0.04480535909533501, + 0.015769315883517265, + -0.011419938877224922, + -0.006486374884843826, + -0.0071082524955272675, + -0.045589301735162735, + 0.008397235535085201, + -0.011065657250583172, + -0.03904639184474945, + -0.01839250884950161, + -0.0014435104094445705, + 0.03579001501202583, + 0.012279260903596878, + 0.010266638360917568, + -0.02718171663582325, + 0.008344470523297787, + -0.030543625354766846, + 0.004982560873031616, + -0.009723908267915249, + 0.017050759866833687, + 0.0335286408662796, + -0.006765277590602636, + 0.02674451842904091, + -0.011246567592024803, + -0.011201339773833752, + 0.031659238040447235, + 0.02078956551849842, + 0.03036271594464779, + -0.03153863176703453, + -0.02731739915907383, + 0.002570428652688861, + -0.0104626240208745, + -0.01100535411387682, + -0.016643714159727097, + -0.0037161915097385645, + 0.04356914013624191, + -0.03705638274550438, + -0.01812114380300045, + 0.014796924777328968, + 0.01592007279396057, + 0.015083365142345428, + 0.03615183383226395, + 0.008269091136753559, + -0.0021916483528912067, + -0.026186712086200714, + 0.011480242945253849, + 0.0195382721722126, + 0.03292560577392578, + 0.01274661161005497, + 0.03177984431385994, + -0.0007226974703371525, + 0.011533007957041264, + 0.01662863790988922, + -0.025372616946697235, + -0.016508031636476517, + 0.026277167722582817, + -0.005012712441384792, + 0.006799198221415281, + -0.002525201067328453, + 0.02981998585164547, + -0.012829529121518135, + -0.018332205712795258, + 0.031026052311062813, + 0.010749065317213535, + 0.03380000591278076, + 0.012889832258224487, + 0.02005084976553917, + 0.028372706845402718, + 0.0033072596415877342, + 0.006373305805027485, + 0.01697538234293461, + -0.04094594717025757, + 0.03756896033883095, + -0.00983697734773159, + 0.021407674998044968, + 0.018181446939706802, + -0.021452901884913445, + 0.005438604857772589, + -0.01700553297996521, + -0.01149531826376915, + -0.01102042943239212, + -0.009181179106235504, + 0.015603480860590935, + -0.009249020367860794, + 0.025206783786416054, + -0.002634500851854682, + -0.0066295950673520565, + 0.005683586932718754, + -0.013907450251281261, + 0.0015707127749919891, + -0.007914809510111809, + 0.014374800957739353, + 0.01521150954067707, + 0.04203140735626221, + -0.015407495200634003, + 0.027905356138944626, + -0.029925517737865448, + -0.0042513832449913025, + 0.033920612186193466, + 0.022462982684373856, + 0.00831431895494461, + 0.030242109671235085, + 0.027257096022367477, + 0.013259190134704113, + -0.0020427745766937733, + -0.00058513053227216, + -0.019598575308918953, + 0.00786204356700182, + -0.0026062335819005966, + -0.005431066732853651, + 0.01267877034842968, + -0.010093266144394875, + 0.011857138015329838, + 0.020849868655204773, + 0.018075916916131973, + 0.015158744528889656, + 0.03729759529232979, + 0.008434925228357315, + 0.03039286844432354, + 0.01967395469546318, + 0.005404684226959944, + -0.018980465829372406, + 0.017668869346380234, + -0.0005648724036291242, + 0.00041293632239103317, + -0.005581825040280819, + 0.011879751458764076, + -0.010304328054189682, + 0.01163100078701973, + -0.021784570068120956, + -0.0432073213160038, + -0.0299858208745718, + 0.005660973023623228, + 0.004451137967407703, + 0.012490322813391685, + -0.009135951288044453, + 0.0018515000119805336, + 0.06343907862901688, + -0.04956931993365288, + -0.0024780891835689545, + 0.003124465234577656, + 0.010794292204082012, + -0.030242109671235085, + 0.022101162001490593, + 0.01809099316596985, + -0.014397415332496166, + 0.007579372264444828, + -0.01741258054971695, + 0.038021236658096313, + -0.03660411015152931, + -0.04182034358382225, + -0.018437737599015236, + 0.0037595343310385942, + -0.02258358895778656, + 0.03521713241934776, + 0.01760856620967388, + -0.022900180891156197, + -0.02938278764486313, + 0.0047790370881557465, + 0.0028813674580305815, + 0.002559121698141098, + -0.006305464543402195, + -0.00875905528664589, + 0.017095988616347313, + 0.007666058372706175, + 0.021287068724632263, + -0.0034071370027959347, + 0.0142994225025177, + -0.0020314676221460104, + 0.01961365155875683, + -0.018754329532384872, + 0.023382607847452164, + -0.012791839428246021, + -0.046162184327840805, + -0.02501079812645912, + 0.03964942693710327, + -0.006000179331749678, + -0.009452544152736664, + -0.0031301185954362154, + -0.0011646077036857605, + 0.04402141645550728, + -0.01977948471903801, + -0.009249020367860794, + 0.018784480169415474, + -0.01822667568922043, + -0.01246017124503851, + -0.0061019412241876125, + 0.016417576000094414, + 0.01907092146575451, + 0.000766040466260165, + 0.01478938665241003, + -0.01178175862878561, + 0.036996081471443176, + -0.015980377793312073, + 0.025583678856492043, + -0.0018816516967490315, + 0.02268912084400654, + -0.0004553370818030089, + -0.010507851839065552, + 0.01724674552679062, + 0.04218216612935066, + -0.035578951239585876, + 0.03153863176703453, + 0.021965479478240013, + -0.027845053002238274, + 0.023141395300626755, + 0.029593849554657936, + -0.002040890045464039, + -0.01879955641925335, + 0.02819179743528366, + -0.03280499950051308, + 0.014126050285995007, + 0.0009059630101546645, + -0.01478938665241003, + -0.0012201997451484203, + -0.004926026798784733, + -0.019764410331845284, + 0.014706469140946865, + 0.0348854660987854, + -0.005238850135356188, + 0.03995094075798988, + 0.015083365142345428, + 0.003196075325831771, + 0.02764906734228134, + -0.022327300161123276, + -0.04079518839716911, + 0.014623552560806274, + 0.0007815874414518476, + -0.039709728211164474, + -0.016779396682977676, + -0.018980465829372406, + -0.02911142259836197, + 0.01872417703270912, + -0.06271544098854065, + 0.009882205165922642, + -0.009037958458065987, + 0.03289545699954033, + 0.002683497266843915, + 0.00341090583242476, + 0.0010901708155870438, + -0.023035863414406776, + -0.010093266144394875, + -0.015045675449073315, + 0.03398091346025467, + 0.026955578476190567, + -0.018166372552514076, + 0.01741258054971695, + -0.0032469562720507383, + -0.008193711750209332, + 0.0013059435877949, + -0.002811641898006201, + -0.04396111145615578, + 0.042212314903736115, + 0.056504201143980026, + -0.022538362070918083, + -0.03253363445401192, + -0.011623462662100792, + -0.009882205165922642, + 0.009927432052791119, + -0.0059549519792199135, + -0.002344291191548109, + -0.029925517737865448, + -0.025025872513651848, + 0.016719091683626175, + 0.00721755251288414, + -0.02201070822775364, + 0.0014991025673225522, + -0.013937602750957012, + 0.031418025493621826, + 0.0015075827250257134, + 0.0024667822290211916, + 0.007907271385192871, + 0.021859949454665184, + 0.011065657250583172, + -0.014442642219364643, + -0.00749645521864295, + -0.008208788000047207, + 0.005423529073596001, + 0.009980197995901108, + -0.0008574376697652042, + -0.021045854315161705, + -0.030000897124409676, + -0.009203792549669743, + 0.031327567994594574, + -0.0014444526750594378, + 0.033588942140340805, + -0.012565702199935913, + -0.0033034905791282654, + -0.051981452852487564, + 0.029624000191688538, + -0.005073016043752432, + -0.04878537729382515, + -0.011027967557311058, + -0.00467350659891963, + 0.014616014435887337, + -0.007884657941758633, + -0.010673685930669308, + 0.010048039257526398, + 0.002585504436865449, + 0.03621213883161545, + 0.0041684661991894245, + -0.008118333294987679, + 0.007006490603089333, + -0.013304417952895164, + -0.02995566837489605, + 0.019327210262417793, + 0.0013596512144431472, + 0.007982650771737099, + -0.005909724161028862, + 0.014208966866135597, + 0.028915436938405037, + -0.01313104573637247, + 0.0012541203759610653, + 0.004752654582262039, + -0.00729293143376708, + 0.0009092608233913779, + -0.0159954521805048, + 0.018498040735721588, + 0.015709012746810913, + 0.023714276030659676, + 0.011035505682229996, + -0.008035415783524513, + 0.005348149687051773, + 0.0014086476294323802, + -0.0362422876060009, + -0.024061020463705063, + -0.02356351725757122, + -0.0018515000119805336, + -0.046704914420843124, + 0.029081270098686218, + -0.001366246840916574, + 0.00480918912217021, + 0.010824443772435188, + -0.021663963794708252, + -0.019824713468551636, + 0.0071233282797038555, + 0.010017887689173222, + -0.0025044719222933054, + -0.009708832949399948, + -0.002005085116252303, + -0.012550625950098038, + 0.00017148753977380693, + -0.016116058453917503, + -0.022915257140994072, + -0.03241302818059921, + -0.024151476100087166, + -0.00688965292647481, + -0.026111332699656487, + -0.0008107968606054783, + -0.0014840267831459641, + 0.005962489638477564, + -0.07447458803653717, + -0.02271927148103714, + 0.0007683960720896721, + 0.02590027078986168, + -0.026759592816233635, + 0.03762926533818245, + 0.021618736907839775, + -0.02018653228878975, + 0.021136309951543808, + 0.03177984431385994, + 0.0104475487023592, + -0.009301785379648209, + -0.006516526453197002, + 0.04432293400168419, + 0.01828697882592678, + 0.017231671139597893, + 0.01073398906737566, + 0.007202476263046265, + -0.022870030254125595, + 0.007439920678734779, + 0.005310459993779659, + 0.03768956661224365, + -0.0006025619804859161, + -0.018347281962633133, + -0.01683969981968403, + 0.003277108073234558, + -0.01662863790988922, + 0.008412311784923077, + 0.01377930585294962, + 0.012935060076415539, + 0.01626681722700596, + 0.03150847926735878, + -0.017050759866833687, + 0.014043132774531841, + -0.005962489638477564, + 0.008163560181856155, + -0.004187311045825481, + -0.021513205021619797, + -0.025432920083403587, + -0.033076364547014236, + 0.0035202056169509888, + 0.030468247830867767, + 0.007070562802255154, + -0.01926690712571144, + -0.017834704369306564, + -0.012075738050043583, + 0.014065747149288654, + -0.006422302220016718, + 0.017970386892557144, + 0.011962668970227242, + 0.0071723246946930885, + 0.0027193024288862944, + 0.028628995642066002, + 0.016824623569846153, + 0.03560910373926163, + -0.009852053597569466, + 0.009105799719691277, + 0.010093266144394875, + -0.00029515643836930394, + -0.0011721455957740545, + -0.010794292204082012, + -0.002103077946230769, + -0.0027117645367980003, + 0.01308581791818142, + 0.008683676831424236, + 0.007341927848756313, + -0.01127671916037798, + -0.0003606420650612563, + -0.0028889053501188755, + -0.010590768419206142, + -0.009942508302628994, + -0.015739163383841515, + -0.0017723519122228026, + -0.009663605131208897, + -0.004763961303979158, + -0.010522927157580853, + -0.00824647769331932, + -0.016116058453917503, + 0.0021614967845380306, + 0.016447728499770164, + -0.034101519733667374, + -0.011721455492079258, + -0.0007580314413644373, + -0.028689298778772354, + -0.028041038662195206, + -0.012889832258224487, + -0.007368310820311308, + -0.020472973585128784, + -0.017050759866833687, + 0.01108827069401741, + -0.008269091136753559, + 0.008676138706505299, + -0.019734257832169533, + 0.005412221886217594, + -0.006275312975049019, + -0.04718733951449394, + -0.020337291061878204, + 0.001109957811422646, + -0.019493045285344124, + -0.00858568400144577, + 0.01507582701742649, + -0.019447816535830498, + 0.03865442052483559, + 0.023925337940454483, + 0.014465256594121456, + -0.008140946738421917, + -0.030468247830867767, + 0.005317998118698597, + 0.02122676558792591, + -0.006459991913288832, + -0.036423198878765106, + -0.03536789119243622, + -0.009844515472650528, + 0.009927432052791119, + -0.004307917784899473, + 0.040252458304166794, + -0.0067765843123197556, + -0.01447279378771782, + 0.03729759529232979, + -0.011548083275556564, + -0.030211957171559334, + -0.004360683262348175, + 0.0035164367873221636, + -0.02201070822775364, + -0.006833118852227926, + -0.012286799028515816, + 0.02484496310353279, + 0.008231401443481445, + 0.015739163383841515, + 0.0008385928813368082, + -0.013628548011183739, + 0.0006411937647499144, + 0.005114474333822727, + 0.005046633072197437, + 0.005879572592675686, + 0.01176668331027031, + -0.0698312297463417, + -0.017789475619792938, + -0.020638806745409966, + 0.006784122437238693, + 0.015980377793312073, + -0.010824443772435188, + 0.006833118852227926, + 0.010485237464308739, + -0.01004050113260746, + 0.013658699579536915, + 0.009776674211025238, + -0.03961927443742752, + 0.03461410105228424, + 0.008849510923027992, + -0.014261732809245586, + 0.016553258523344994, + -0.0017685829661786556, + -0.011932517401874065, + 0.02826717682182789, + -0.008193711750209332, + -0.005660973023623228, + 0.007786664646118879, + 0.027272172272205353, + -0.01619143784046173, + -0.017427656799554825, + 0.05695647373795509, + -0.007937422953546047, + 0.025297237560153008, + -0.014442642219364643, + -0.022191617637872696, + 0.013425024226307869, + 0.011382249183952808, + 0.013651161454617977, + 0.007975112646818161, + -0.008103257045149803, + 0.007960036396980286, + 0.0031075049191713333, + 0.011864676140248775, + 0.033860307186841965, + 0.016990456730127335, + 0.0002154194371541962, + -0.0019268791656941175, + 0.014126050285995007, + -0.00010435299191158265, + 0.0015603480860590935, + -0.026985730975866318, + -0.010975202545523643, + -0.02805611491203308, + -0.010492775589227676, + 0.011374711990356445, + 0.01690000295639038, + 0.006836887449026108, + 0.008442463353276253, + -0.020065926015377045, + 0.006248930469155312, + 0.002317908452823758, + 0.00770751666277647, + -0.0062677753157913685, + 0.007726361509412527, + -0.00480918912217021, + 0.06434363126754761, + 0.02397056482732296, + 0.014744158834218979, + -0.0029642845038324594, + -0.022658968344330788, + 0.0021256916224956512, + 0.01646280288696289, + 0.029488317668437958, + 0.029895365238189697, + -0.006230085622519255, + -0.007598217111080885, + -0.010538003407418728, + -0.0029435553587973118, + 0.029397863894701004, + -0.010688761249184608, + 0.0009469504002481699, + 0.025463072583079338, + -0.004330531228333712, + -0.011789296753704548, + -0.010432472452521324, + -0.011706380173563957, + -0.0076849027536809444, + 0.017729172483086586, + -0.021754419431090355, + -0.02109108306467533, + -0.008480153046548367, + 0.008397235535085201, + -0.0071233282797038555, + -0.002201070776209235, + -0.015543177723884583, + 0.02478465996682644, + 0.021211689338088036, + 0.024076096713542938, + 0.017668869346380234, + -0.007198707666248083, + 0.012633543461561203, + -0.011992820538580418, + -0.00763967540115118, + 0.003789686132222414, + -0.015294427052140236, + -0.008434925228357315, + -0.036393046379089355, + 0.005284077487885952, + -0.03235272690653801, + -0.013229038566350937, + 0.012927521951496601, + 0.025402769446372986, + 0.0035296280402690172, + -0.0037161915097385645, + -0.017593489959836006, + 0.005936107132583857, + 0.005540366750210524, + -0.043327927589416504, + -0.011450090445578098, + -0.03434273600578308, + 0.026005802676081657, + -0.01037970744073391, + -0.03086021915078163, + -0.025538451969623566, + 0.02440776489675045, + -0.00053236517123878, + 0.018332205712795258, + -0.007055487018078566, + -0.015294427052140236, + -0.00694618746638298, + 0.0064147645607590675, + -0.009135951288044453, + -0.0022632586769759655, + 0.00046947068767622113, + 0.007439920678734779, + -0.004047859460115433, + 0.014374800957739353, + -0.002604349050670862, + 0.013477789238095284, + -0.0035880468785762787, + -0.0017987346509471536, + 0.01907092146575451, + -0.007892195135354996, + 0.0362422876060009, + -0.020231761038303375, + 0.008811821229755878, + -0.0035088988952338696, + -0.002193532884120941, + -0.0010920552304014564, + -0.004390834830701351, + -0.008223864249885082, + 0.002006969414651394, + 0.005770273040980101, + 0.014796924777328968, + -0.0023066014982759953, + -0.014133588410913944, + 0.012430019676685333, + 0.0043003796599805355, + 0.00786204356700182, + -0.02119661308825016, + -0.01757841370999813, + -0.03768956661224365, + 0.0002638269797898829, + 0.002694804221391678, + -0.020970474928617477, + -0.0035032453015446663, + 0.002131344983354211, + 0.016100984066724777, + -0.021754419431090355, + 0.00875905528664589, + -0.003605007193982601, + -0.026186712086200714, + 0.006633364129811525, + 0.005269001703709364, + -0.014043132774531841, + -0.0006247045821510255, + -0.004929795395582914, + -0.010387244634330273, + -0.011962668970227242, + -0.007409769110381603, + -0.014932607300579548, + -0.0035880468785762787, + -0.0023047171998769045, + 0.021211689338088036, + -0.01730705052614212, + -0.004869492258876562, + 0.008389698341488838, + -0.02048804983496666, + -0.0029529777821153402, + 0.02525201067328453, + -0.02336753159761429, + -0.0039008702151477337, + -0.006158475298434496, + -0.008962579071521759, + -1.7225310102730873e-6, + 0.013236576691269875, + -0.010387244634330273, + -0.010048039257526398, + 0.027211869135499, + 0.0007259952835738659, + -0.019839787855744362, + 0.03874487429857254, + 0.010470162145793438, + -0.011578235775232315, + 9.016051626531407e-5, + -0.03407137095928192, + -0.0038066464476287365, + 0.0019466661615297198, + 0.02568920888006687, + -0.0005945529555901885, + 0.014344649389386177, + -0.047820523381233215, + 0.007688671816140413, + 0.03096574917435646, + -0.01548287458717823, + 0.003318566596135497, + 0.0032902993261814117, + -0.0030245878733694553, + -0.01943274214863777, + -0.008465076796710491, + -0.009799287654459476, + 0.008992730639874935, + -0.03603122755885124, + 0.0047941128723323345, + -0.0010732105001807213, + 0.01081690564751625, + -0.018302055075764656, + 0.0038028773851692677, + -0.01472154539078474, + -0.0015273697208613157, + 0.0027268403209745884, + 0.009761597961187363, + -0.04760946333408356, + -0.004650892689824104, + 0.013515478931367397, + -0.012271723710000515, + 0.014940144494175911, + -0.010025424882769585, + -0.016387423500418663, + 0.0006053886609151959, + -0.038322754204273224, + 0.03428243100643158, + -0.0071572489105165005, + 0.0334080345928669, + 0.008276629261672497, + -0.012769225984811783, + -0.021995631977915764, + 0.013432562351226807, + 0.023518290370702744, + 0.03171953931450844, + 0.013651161454617977, + -0.014676317572593689, + -0.01714121550321579, + -0.0008319971966557205, + 0.004903412889689207, + 0.008864586241543293, + -0.014329574070870876, + -0.016719091683626175, + 0.014133588410913944, + -0.00042565655894577503, + 0.01533211674541235, + -0.004130776505917311, + -0.0028889053501188755, + 0.00035663755261339247, + -0.019689030945301056, + 0.003160270396620035, + -0.0007618003874085844, + 0.020578503608703613, + -0.01741258054971695, + 0.02691035158932209, + -0.005050402134656906, + 0.004145852290093899, + -0.0009686219273135066, + 0.00041128741577267647, + -0.02241775579750538, + 0.0038481049705296755, + 0.01031186617910862, + -0.022734347730875015, + 0.010718912817537785, + 0.019297059625387192, + 0.008902275934815407, + -0.0033016062807291746, + -0.026005802676081657, + -0.010266638360917568, + -0.01967395469546318, + -0.02184487320482731, + 0.008789206854999065, + -0.0097691360861063, + 0.019191527739167213, + -0.011193801648914814, + 0.013598396442830563, + 0.033076364547014236, + 0.006912266835570335, + 0.04061427712440491, + -0.02606610581278801, + 0.011412401683628559, + 0.014608476310968399, + 0.0022444138303399086, + -0.010357093065977097, + -0.001971164485439658, + -0.042755044996738434, + 0.0005450854077935219, + -0.01274661161005497, + 0.0118495998904109, + -0.001902380958199501, + 0.012558164075016975, + -0.0061509376391768456, + -0.023246925324201584, + -0.012362178415060043, + -0.0010298674460500479, + -0.0002621780731715262, + -0.01533211674541235, + 0.030453171581029892, + -0.012226495891809464, + -0.011306870728731155, + 0.009663605131208897, + 0.016281893476843834, + 0.005468756426125765, + -0.012377254664897919, + 0.0031169273424893618, + 0.006124554667621851, + 0.002434746129438281, + -0.005140857305377722, + -0.022839877754449844, + -0.027573687955737114, + -0.0019900090992450714, + 0.006622056942433119, + 0.020985551178455353, + -0.01295013539493084, + -0.014600939117372036, + -0.00316969258710742, + 0.018543267622590065, + -0.014804461970925331, + 0.009316861629486084, + 0.000992177869193256, + -0.0025044719222933054, + 0.03464424982666969, + 0.022086087614297867, + -0.035277437418699265, + 0.022538362070918083, + 0.006241392344236374, + -0.019055845215916634, + -0.015362268313765526, + 0.0072401659563183784, + 0.01073398906737566, + -0.01178175862878561, + 0.015286888927221298, + 0.00441344827413559, + -0.02318662218749523, + 0.03675486519932747, + 0.020035775378346443, + 0.011246567592024803, + 0.026834972202777863, + 0.021181536838412285, + -0.00786204356700182, + -0.0020653882529586554, + 0.02059357985854149, + -0.017774401232600212, + -0.006418533623218536, + 0.016915077343583107, + 0.006181089207530022, + -0.003654003608971834, + 0.012271723710000515, + -0.020412670448422432, + -0.014691393822431564, + -0.010681224055588245, + -0.005355687811970711, + -0.007413538172841072, + 0.032774847000837326, + -0.01019125897437334, + 0.025040948763489723, + 0.03235272690653801, + -0.018000537529587746, + 0.01872417703270912, + -0.02666913904249668, + 0.003571086563169956, + 6.996125739533454e-5, + -0.019824713468551636, + -0.019055845215916634, + -0.0010835750726982951, + 0.01514366827905178, + 0.002698573051020503, + 0.014804461970925331, + 0.0002482800337020308, + 0.006720050238072872, + -0.010696299374103546, + -0.010153569281101227, + -0.02217654138803482, + -0.016146210953593254, + -0.018950315192341805, + 0.004635816905647516, + -0.015543177723884583, + -0.0005083380383439362, + -0.0033788697328418493, + -0.019116148352622986, + -0.02694050408899784, + -0.006836887449026108, + 0.0030132809188216925, + 0.016809547320008278, + 0.007715054787695408, + 0.006738894619047642, + -0.04091579467058182, + -0.01375669240951538, + -0.0181512963026762, + -0.003563548671081662, + -0.008352008648216724, + -0.021648887544870377, + 0.005593131761997938, + 0.01053046528249979, + -0.0033977145794779062, + 0.003086775541305542, + 0.007168556097894907, + 0.016794471070170403, + 0.02106093056499958, + -0.03841320797801018, + -0.022658968344330788, + 0.018814632669091225, + -0.024392688646912575, + -0.029910441488027573, + -0.011027967557311058, + -0.0044172173365950584, + 0.007583141326904297, + 0.014126050285995007, + -0.007017797790467739, + 0.004722503013908863, + -0.0020371212158352137, + -0.009037958458065987, + 0.010349555872380733, + -0.022387603297829628, + -0.006143399514257908, + 0.021121233701705933, + 0.007500224281102419, + -0.012874756939709187, + 0.008962579071521759, + -0.011374711990356445, + 0.01940258964896202, + -0.0016272470820695162, + -0.013673774898052216, + -0.024528371170163155, + 0.05629313737154007, + 0.00182323285844177, + 0.025131404399871826, + 0.007884657941758633, + -0.017699021846055984, + -0.008329394273459911, + -0.03762926533818245, + -0.018844783306121826, + 0.004688582383096218, + -0.016508031636476517, + -0.02876467816531658, + -0.018302055075764656, + 0.02386503480374813, + -0.026216864585876465, + 0.013726540841162205, + -0.005333073902875185, + 0.032744698226451874, + -0.02176949381828308, + 0.030136579647660255, + 0.003612545086070895, + -0.0057401214726269245, + 0.016658788546919823, + 0.008254015818238258, + 0.009897280484437943, + -0.004552899859845638, + 0.04016200453042984, + 0.00949777103960514, + 0.0032205735333263874, + -0.02565905824303627, + 0.00048030642210505903, + -0.01288229413330555, + 0.008367083966732025, + 0.022628815844655037, + -0.03865442052483559, + -0.00206161942332983, + -0.0216338112950325, + -0.0104626240208745, + -0.03289545699954033, + -0.007413538172841072, + -0.007198707666248083, + 0.0030660463962703943, + -0.022568512707948685, + -0.005536597687751055, + -0.0236991997808218, + -0.0004237720859237015, + -0.0005309517728164792, + 0.012407406233251095, + -0.020337291061878204, + 0.009942508302628994, + 0.012218957766890526, + 0.025131404399871826, + 0.011487780138850212, + 0.020261911675333977, + -0.032744698226451874, + -0.0012776763178408146, + 0.0006068020593374968, + -0.008743979968130589, + 0.024618826806545258, + -0.011653614230453968, + -0.003333642380312085, + 0.0063318475149571896, + -0.043629445135593414, + -0.014691393822431564, + -0.02190517634153366, + 0.015829619020223618, + -0.005178546532988548, + -0.005506446119397879, + 0.002551583806052804, + -0.03515682741999626, + -0.004786575213074684, + 0.01447279378771782, + -0.007070562802255154, + 0.007598217111080885, + 0.008857048116624355, + 0.008095718920230865, + -0.006444916129112244, + -0.0040855491533875465, + 0.011118422262370586, + -0.011706380173563957, + -0.01037970744073391, + -0.007586909923702478, + -0.0072703175246715546, + 0.00875905528664589, + -0.008027877658605576, + -0.030468247830867767, + -0.023382607847452164, + -0.01991516724228859, + -0.020035775378346443, + -0.005483832210302353, + -0.005321767181158066, + -0.0033656784798949957, + 0.014012981206178665, + 0.006395919714123011, + -0.008223864249885082, + -0.013794382102787495, + -0.0023951721377670765, + 0.0074700722470879555, + 0.028553616255521774, + -0.0017751787090674043, + 0.008005264215171337, + 0.011909903958439827, + -0.0003797223907895386, + -0.008397235535085201, + -0.009475157596170902, + 0.009867128916084766, + -0.013070742599666119, + 0.004567975644022226, + -0.008276629261672497, + -0.010809368453919888, + -0.004206155892461538, + -0.01683969981968403, + 0.05915754660964012, + -0.002295294776558876, + 0.011472704820334911, + 0.0036200829781591892, + 0.004801650997251272, + -0.03174969181418419, + -0.001113726757466793, + 0.008887200616300106, + 0.018513115122914314, + -0.020231761038303375, + -0.024633901193737984, + -0.011246567592024803, + 0.01095258817076683, + 0.013055666349828243, + -0.014110974036157131, + 0.01724674552679062, + 0.005159701686352491, + 0.041428372263908386, + 0.009852053597569466, + 0.012309413403272629, + -0.004929795395582914, + -0.0012032394297420979, + -0.014269270934164524, + 0.01964380219578743, + -0.017065836116671562, + 0.023337380960583687, + -0.0032130356412380934, + 0.013764230534434319, + 0.0070404112339019775, + 0.0063996887765824795, + 0.002206724137067795, + 0.001253178110346198, + -0.019854864105582237, + -0.0015085249906405807, + -0.005691124591976404, + 0.011811911128461361, + 0.01212096493691206, + -0.006987645756453276, + -0.017940234392881393, + 0.005464987363666296, + -0.011367173865437508, + -0.0038631807547062635, + 0.008238939568400383, + 0.02204085886478424, + -0.006226316560059786, + 0.006916035898029804, + -0.0063996887765824795, + 0.002310370560735464, + 0.011442553251981735, + -0.011163650080561638, + -0.008231401443481445, + 0.012354640290141106, + 0.010146032087504864, + 0.026382697746157646, + 0.01512859296053648, + 0.011321946047246456, + 0.016508031636476517, + -0.0025949268601834774, + -0.015965301543474197, + 0.006098172161728144, + -0.03055870160460472, + -0.0034146748948842287, + 0.00014110031770542264, + -0.01080183032900095, + -0.010703837499022484, + -0.012919983826577663, + -0.01086967159062624, + -0.022839877754449844, + -0.011548083275556564, + -0.01301797665655613, + -0.0243776123970747, + 0.005845651961863041, + 0.007164787035435438, + -0.0257645882666111, + -0.020412670448422432, + 0.012874756939709187, + -0.011533007957041264, + -0.0003712422330863774, + 0.0014585863100364804, + -0.007507761940360069, + -0.000941768113989383, + 0.013749154284596443, + -0.027769673615694046, + -0.010929974727332592, + -0.0015386766754090786, + 0.006105709820985794, + 0.027332475408911705, + -0.03509652614593506, + 0.0038594116922467947, + -0.026518380269408226, + -0.026458077132701874, + -0.008254015818238258, + 0.01059830654412508, + 0.025372616946697235, + 0.01478938665241003, + -0.0058381143026053905, + -0.00029280083253979683, + 0.01178175862878561, + -0.0010298674460500479, + -0.009490232914686203, + 0.0035202056169509888, + 0.015709012746810913, + -0.01640249975025654, + -0.0043003796599805355, + 0.0020295833237469196, + 0.005702431779354811, + 0.007711285725235939, + -0.008608297444880009, + -0.02535754069685936, + 0.009919893927872181, + -0.0069084977731108665, + -0.012128503061830997, + -0.005879572592675686, + 0.004526517353951931, + -0.022251920774579048, + 0.027257096022367477, + 0.022462982684373856, + 0.003493822878226638, + -0.018784480169415474, + -0.021271992474794388, + -0.005762734916061163, + 0.011404863558709621, + -0.0029982051346451044, + -0.010432472452521324, + 0.007274086587131023, + -0.0111410366371274, + -4.331355739850551e-5, + -0.0070894076488912106, + -0.01445018034428358, + 0.007447458803653717, + 0.001652687555179, + 0.023035863414406776, + 0.008042953908443451, + -0.004926026798784733, + -0.0043832967057824135, + -0.0036031226627528667, + -0.014955220744013786, + -0.018814632669091225, + 0.01899554207921028, + -0.016749244183301926, + 0.006550447084009647, + -0.00949777103960514, + 0.003605007193982601, + 0.011193801648914814, + 0.0027343782130628824, + 0.006011486053466797, + -0.02008100226521492, + 0.008254015818238258, + -0.006166013423353434, + 0.000536134117282927, + 0.03310651704668999, + -0.018678950145840645, + 0.007394693326205015, + -0.006689898204058409, + -0.009045496582984924, + -0.011035505682229996, + -0.021784570068120956, + 0.022387603297829628, + -0.029066195711493492, + -0.006622056942433119, + 0.0030660463962703943, + -0.02650330401957035, + -0.0174427330493927, + -0.013545630499720573, + 0.005069246981292963, + 0.011864676140248775, + 2.823036993504502e-6, + 5.353096639737487e-5, + -0.001181568019092083, + 0.008389698341488838, + 0.004534055013209581, + 0.017638718709349632, + 0.018030690029263496, + -0.013229038566350937, + 0.0019033232238143682, + -0.016206514090299606, + -0.004492596723139286, + -0.0038933323230594397, + -0.022538362070918083, + 0.0072552417404949665, + 0.005235081072896719, + -0.012852142564952374, + 0.00640722643584013, + 0.007967574521899223, + -0.0208950974047184, + -0.01714121550321579, + 0.005054171197116375, + -0.005664742086082697, + 0.0037199603393673897, + -0.01375669240951538, + -0.007259010802954435, + -0.004051628522574902, + 0.019839787855744362, + -0.00391217740252614, + -0.01313104573637247, + 0.006633364129811525, + 0.03793078288435936, + 0.03518697991967201, + 0.017397504299879074, + -0.010093266144394875, + 0.002672190312296152, + -0.0008409484871663153, + 0.009980197995901108, + 0.0048431092873215675, + -0.01646280288696289, + -0.024362536147236824, + -0.007259010802954435, + -0.010281714610755444, + 0.002905865665525198, + 0.004643355030566454, + -0.02309616655111313, + -0.026126408949494362, + 0.011540546081960201, + 0.005540366750210524, + -0.0012823875294998288, + 0.02176949381828308, + 0.01697538234293461, + 0.018618647009134293, + 0.015528102405369282, + 0.016116058453917503, + 0.021648887544870377, + -0.003576739924028516, + 0.02565905824303627, + -0.009286710061132908, + -0.01267877034842968, + -0.002255720552057028, + 0.012490322813391685, + 0.012957673519849777, + 0.0065466780215501785, + -0.0016065178206190467, + 0.015663783997297287, + -0.019251830875873566, + -0.018648797646164894, + 0.007017797790467739, + 0.016749244183301926, + 0.016960306093096733, + 0.016251740977168083, + -0.015023062005639076, + 0.0097691360861063, + -0.009852053597569466, + 0.009445006027817726, + -0.016824623569846153, + -0.01088474690914154, + -0.021799646317958832, + 0.0014840267831459641, + -0.018407585099339485, + -0.006041637621819973, + -0.002905865665525198, + -0.012716460041701794, + -3.20361323247198e-5, + -0.007696209941059351, + 0.006486374884843826, + 0.012603391893208027, + 0.006007716991007328, + 0.015121054835617542, + -0.002969937864691019, + -0.009806825779378414, + 0.013251652009785175, + -0.0017572761280462146, + -0.016116058453917503, + -0.00045274593867361546, + 0.02467912994325161, + -0.028116418048739433, + 0.0028059883043169975, + -0.01081690564751625, + 0.00364646571688354, + -0.02751338481903076, + 0.013719002716243267, + -0.003991325385868549, + 0.010824443772435188, + 0.007319313939660788, + 0.0012277376372367144, + 0.011736531741917133, + 0.014812000095844269, + -0.018136220052838326, + 0.010688761249184608, + 0.009271633811295033, + -0.040825340896844864, + -0.004820495843887329, + -0.0059549519792199135, + -0.0064637609757483006, + 0.016206514090299606, + 0.008427387103438377, + -0.010922436602413654, + 0.0007905386737547815, + -0.01869402639567852, + -0.002468666760250926, + 0.027257096022367477, + -0.000394327100366354, + -0.002905865665525198, + -0.005717507563531399, + -0.003623852040618658, + -0.012279260903596878, + -0.005069246981292963, + -0.010997815988957882, + -0.004824264906346798, + 0.0014708354137837887, + 0.015203971415758133, + 0.021528281271457672, + -0.0007358888396993279, + -6.519117596326396e-5, + 0.011261642910540104, + 0.003278992371633649, + -0.02492034249007702, + 0.01191744115203619, + 0.03512667864561081, + 0.011977745220065117, + 0.005005174782127142, + -0.011442553251981735, + 0.007877119816839695, + 0.001991893630474806, + -0.008216326124966145, + -0.02805611491203308, + -0.006459991913288832, + -0.01795531064271927, + -0.007922347635030746, + 0.014284346252679825, + 0.015874845907092094, + -0.023488139733672142, + -0.009286710061132908, + -0.013613471761345863, + -0.008645987138152122, + 0.010899823158979416, + 0.0035371659323573112, + 0.0025723129510879517, + 0.0045792823657393456, + 0.018196523189544678, + 0.01053046528249979, + 0.01037970744073391, + -0.008472614921629429, + 0.010477700270712376, + 0.010183721780776978, + -0.026443000882864, + -3.409728014958091e-5, + 0.013432562351226807, + 0.005370763596147299, + 0.002657114528119564, + -0.0013860338367521763, + -0.011148573830723763, + -0.017487959936261177, + -0.007477610372006893, + -0.04067458212375641, + 0.0030811221804469824, + 0.00873644184321165, + 0.0038820256013423204, + 0.0017299511237069964, + 0.004322993569076061, + -0.011691303923726082, + 0.0188598595559597, + 0.007624599616974592, + -0.011178726330399513, + 0.01129179447889328, + 0.024196702986955643, + 0.021829798817634583, + -0.019900092855095863, + -0.0027419161051511765, + 0.007718823384493589, + 0.016040680930018425, + -0.010741527192294598, + 0.0008334105950780213, + -0.02789027988910675, + -0.004601896274834871, + -0.010470162145793438, + -0.005698662716895342, + 0.019055845215916634, + 0.0024403994902968407, + 0.022734347730875015, + 0.019281983375549316, + -0.013719002716243267, + -0.0040365527383983135, + -0.00763213774189353, + -0.022508209571242332, + 0.0031508479733020067, + -0.013146121054887772, + -0.01635727286338806, + 0.01683969981968403, + 0.0007900675991550088, + 0.002532738959416747, + -0.014133588410913944, + -0.013688851147890091, + 0.017050759866833687, + -0.000985582242719829, + -0.005310459993779659, + -0.007341927848756313, + 0.013161197304725647, + 0.04944871366024017, + 0.02535754069685936, + 0.005144625902175903, + 0.01683969981968403, + -0.017397504299879074, + -0.00742861395701766, + -0.014714007265865803, + 0.0076849027536809444, + 0.0029868981800973415, + -0.008743979968130589, + 0.014329574070870876, + -0.019085997715592384, + 0.04073488712310791, + -0.009512847289443016, + -0.00027866725577041507, + 0.0005837171920575202, + -0.01261092908680439, + 0.009233944118022919, + -0.010628458112478256, + 0.002423439174890518, + -0.022402679547667503, + -0.005747659131884575, + 0.0007575603085570037, + 0.00502778822556138, + -0.006222547497600317, + 0.010967664420604706, + 0.018513115122914314, + -0.013749154284596443, + 0.010409859009087086, + 0.011465166695415974, + -0.004322993569076061, + 0.02157350815832615, + -0.005118243396282196, + -0.009580688551068306, + 0.0006374248187057674, + -0.0017440847586840391, + 0.008042953908443451, + 0.007191169541329145, + -0.00817863643169403, + 0.010703837499022484, + -0.022704195231199265, + 0.017970386892557144, + 0.004311686381697655, + 0.012075738050043583, + 0.012867218814790249, + 0.005841882899403572, + 0.00419108010828495, + 7.378910959232599e-5, + 3.3420048566767946e-5, + -0.023684125393629074, + -0.01032694149762392, + 0.02751338481903076, + -0.016658788546919823, + -0.02258358895778656, + 0.029880288988351822, + -0.015136130154132843, + 0.008811821229755878, + -0.013523017056286335, + -0.0032544941641390324, + 0.0012748496374115348, + 0.019658878445625305, + -0.0026589990593492985, + 0.022598665207624435, + -0.001984355738386512, + -0.02008100226521492, + 0.000649202789645642, + 0.007786664646118879, + -0.005529059562832117, + -0.017774401232600212, + -0.019885016605257988, + 0.00865352526307106, + 0.011992820538580418, + -0.005389608442783356, + 0.016146210953593254, + -0.03850366175174713, + 0.003491938579827547, + 0.013862223364412785, + -0.005498907994478941, + 0.009663605131208897, + -0.009264095686376095, + 0.004914719611406326, + 0.006720050238072872, + -0.0004923199885524809, + -0.002159612253308296, + 0.013244113884866238, + -0.014457718469202518, + 0.01629696972668171, + 0.011879751458764076, + -0.006863270420581102, + -0.013839608989655972, + 0.007764051202684641, + -0.026819895952939987, + 0.00956561230123043, + 0.005747659131884575, + -0.0043456070125103, + -0.01869402639567852, + -0.0015876730903983116, + -0.012151116505265236, + 0.001709221862256527, + 0.03811169043183327, + -0.011450090445578098, + 0.008706290274858475, + 0.022357452660799026, + 0.006584367714822292, + -0.005698662716895342, + -0.004183541983366013, + 0.012128503061830997, + 0.008344470523297787, + -0.012618467211723328, + 0.0062187789008021355, + 0.00817863643169403, + -0.013236576691269875, + 0.029729532077908516, + -0.011201339773833752, + 0.02184487320482731, + 0.019553348422050476, + -0.0016432651318609715, + -0.007831891998648643, + 0.010455085895955563, + 0.024362536147236824, + -0.011578235775232315, + -0.007590678986161947, + 0.013869761489331722, + 0.016884926706552505, + 0.01757841370999813, + -0.0024554752744734287, + 0.010093266144394875, + -0.017804551869630814, + 0.00011418761278036982, + 0.004338069353252649, + 0.025402769446372986, + -0.004273997154086828, + 0.018302055075764656, + 0.01416373997926712, + 0.007119559217244387, + 0.003605007193982601, + -0.009135951288044453, + 0.00023073083139024675, + -0.005627052392810583, + -0.000298218714306131, + -0.006109478883445263, + 0.01697538234293461, + 0.0018590379040688276, + 0.008223864249885082, + -0.010507851839065552, + -0.026111332699656487, + 0.008442463353276253, + 0.01059830654412508, + -0.0202468354254961, + 0.023141395300626755, + 0.00900780688971281, + 0.017503036186099052, + 0.013108432292938232, + 0.016538182273507118, + -0.013545630499720573, + 0.0006096287397667766, + -0.005344380624592304, + 0.00598510354757309, + -0.007145942188799381, + -0.005419760011136532, + -0.0039875563234090805, + 0.006226316560059786, + -0.003703000023961067, + -0.024151476100087166, + 0.01025910023599863, + -0.017427656799554825, + 0.002657114528119564, + 0.025734437629580498, + 0.00020234586554579437, + 0.008947503753006458, + -0.023819807916879654, + -0.00354093499481678, + -0.0014124165754765272, + -0.0008367084083147347, + 0.01774424873292446, + -0.0044662137515842915, + -0.01261092908680439, + -0.02032221481204033, + -0.012874756939709187, + -0.025990726426243782, + 0.0022236844524741173, + 0.017804551869630814, + 0.01899554207921028, + 0.006565522868186235, + 0.006056713405996561, + -0.008909814059734344, + -0.0037991085555404425, + -0.009354550391435623, + -0.004194849170744419, + 0.013364721089601517, + 0.014668780378997326, + -0.013854685239493847, + -0.007259010802954435, + 0.022387603297829628, + -0.006079327315092087, + 0.013990367762744427, + -0.0251464806497097, + 0.00997265987098217, + -0.009505309164524078, + 0.011306870728731155, + 0.013191348873078823, + -0.007451227866113186, + 0.005159701686352491, + 0.014020519331097603, + -0.014374800957739353, + 0.026111332699656487, + 0.0015961532481014729, + -0.008329394273459911, + 0.007247704081237316, + 0.013025514781475067, + -0.015844695270061493, + -0.010048039257526398, + -0.005962489638477564, + -0.011593311093747616, + -0.0417901948094368, + -0.01066614780575037, + -0.004665968474000692, + 0.0008908871677704155, + -0.011615924537181854, + 0.015709012746810913, + -0.00921133067458868, + 0.00019433684065006673, + -0.0005766503745689988, + -0.004534055013209581, + -0.003927253186702728, + 0.010756602510809898, + -0.009897280484437943, + 0.03120696172118187, + -0.0008616777486167848, + 0.009452544152736664, + -0.008849510923027992, + 0.01700553297996521, + 0.001577308401465416, + 0.009467619471251965, + -0.010620919987559319, + -0.017261821776628494, + -0.00406670430675149, + -0.0011222069151699543, + 0.0041043940000236034, + -0.006279082037508488, + 0.007063025142997503, + 0.014940144494175911, + 0.009407316334545612, + 0.027769673615694046, + -0.017834704369306564, + 0.00033520159195177257, + 0.009135951288044453, + 0.0030679309275001287, + -0.04239322617650032, + -0.009120875969529152, + 0.0016658789245411754, + -0.009995273314416409, + 0.018633723258972168, + -0.009037958458065987, + -0.040041398257017136, + 0.005306691396981478, + 0.00543483579531312, + -0.008223864249885082, + -0.009791749529540539, + -0.011864676140248775, + 0.005140857305377722, + 0.009422391653060913, + -0.01923675648868084, + 0.004436062183231115, + 0.002214262029156089, + -0.004420986399054527, + 0.014646166004240513, + -0.03049839846789837, + 0.014118512161076069, + -0.0073381587862968445, + -0.006094403099268675, + 0.02650330401957035, + -0.03756896033883095, + 0.021106157451868057, + 0.0012710806913673878, + -0.0070894076488912106, + -0.022297147661447525, + -0.0022029553074389696, + 0.000915385375265032, + 0.003980018198490143, + -0.021618736907839775, + 0.0033807542640715837, + 0.008005264215171337, + -0.0006958436570130289, + -0.013771768659353256, + -0.014706469140946865, + 0.00997265987098217, + -0.017367353662848473, + 0.0024667822290211916, + 0.016342196613550186, + -0.0014670664677396417, + -0.007696209941059351, + -0.01825682632625103, + 0.010831981897354126, + -0.013183810748159885, + -0.009882205165922642, + 0.009927432052791119, + 0.00017702319019008428, + -0.004835571628063917, + -1.078422246791888e-5, + 0.0032186892349272966, + 0.013568244874477386, + -0.032171815633773804, + 0.0020729261450469494, + 0.016085907816886902, + -0.018437737599015236, + -0.009249020367860794, + -0.013372259214520454, + -0.008336932398378849, + 0.016417576000094414, + -0.0033864076249301434, + -0.0236991997808218, + -0.010032963007688522, + -0.03898609057068825, + -0.00619616499170661, + -0.01134456042200327, + -0.0037501121405512094, + 0.014698931947350502, + 0.0004477991897147149, + -0.0026213093660771847, + -0.007583141326904297, + 0.01717136800289154, + 0.018905088305473328, + -0.0027004575822502375, + -0.0020861176308244467, + 0.0042513832449913025, + 0.0026589990593492985, + 0.023985641077160835, + 0.0014557596296072006, + -0.010847058147192001, + -0.027362626045942307, + 0.0017356046009808779, + -0.010854595340788364, + -0.020096078515052795, + 0.010703837499022484, + -0.014714007265865803, + -0.009309323504567146, + 0.015844695270061493, + 0.0173824280500412, + 0.007127097342163324, + -0.01514366827905178, + 0.006418533623218536, + 0.0019202835392206907, + -0.019658878445625305, + 0.006075558252632618, + 0.03120696172118187, + -0.00037242003600113094, + -0.00129086768720299, + -0.008615835569798946, + -0.02660883590579033, + -0.019854864105582237, + -0.0021916483528912067, + -0.015219047665596008, + -0.0035088988952338696, + 0.0035183210857212543, + -0.02207101136445999, + -0.012618467211723328, + 0.013048128224909306, + 0.007831891998648643, + 0.02636762149631977, + 0.007451227866113186, + -0.007779126986861229, + 0.014359725639224052, + 0.0007217552047222853, + 0.023759502917528152, + -0.014080822467803955, + -0.021784570068120956, + 0.016236666589975357, + -0.008864586241543293, + -0.0022255689837038517, + -0.003041548188775778, + 0.014389877207577229, + -0.017759324982762337, + -0.010289251804351807, + -0.006965032313019037, + 0.015294427052140236, + -0.012754149734973907, + -0.02440776489675045, + 0.00682181166484952, + -0.01416373997926712, + 0.00584942102432251, + 0.0012776763178408146, + -0.01438233908265829, + -0.02045789733529091, + 0.007198707666248083, + 0.02947324328124523, + -0.002033352153375745, + -0.017427656799554825, + -0.018905088305473328, + -0.0031791150104254484, + -0.024664053693413734, + -0.016643714159727097, + -0.011246567592024803, + 0.010417396202683449, + 0.0037840325385332108, + 0.00949777103960514, + -0.016146210953593254, + -0.0064486851915717125, + -0.011736531741917133, + -0.011201339773833752, + -0.0019673954229801893, + 0.018498040735721588, + 0.008683676831424236, + 0.010146032087504864, + 0.008841972798109055, + 0.010357093065977097, + -8.438929944531992e-5, + -0.013771768659353256, + -0.013688851147890091, + 0.016417576000094414, + -0.004051628522574902, + -0.009708832949399948, + 0.010266638360917568, + -0.009460081346333027, + -0.0015942687168717384, + 0.01107319537550211, + 0.0006586252129636705, + -0.021724266931414604, + -0.028071191161870956, + -0.014804461970925331, + 0.008472614921629429, + 0.0010986508568748832, + 0.008532918058335781, + -0.00378214824013412, + 0.006618288345634937, + 0.01872417703270912, + -0.013244113884866238, + -0.014065747149288654, + 0.00016088734264485538, + 0.004405910614877939, + -0.008465076796710491, + -0.023201698437333107, + -0.00017737652524374425, + 0.0012192574795335531, + 0.022251920774579048, + -0.011442553251981735, + 0.030136579647660255, + 0.0014331458369269967, + -0.009249020367860794, + -0.03838305547833443, + -0.004213693551719189, + -0.0063506923615932465, + -0.005800424609333277, + -0.0062640062533319, + -0.0028399089351296425, + -0.00271741789765656, + -0.010206335224211216, + -0.013515478931367397, + 0.010786754079163074, + 0.021287068724632263, + -0.02549322322010994, + 0.00502025056630373, + -0.007854506373405457, + 0.013342106714844704, + -0.0042513832449913025, + 0.01492506917566061, + -0.027166640385985374, + 0.0062677753157913685, + 0.005736352410167456, + -0.0006949013913981616, + 0.005238850135356188, + 0.004164697136729956, + 0.0033882921561598778, + -0.01673416793346405, + -0.017095988616347313, + 0.017216594889760017, + 0.005423529073596001, + -3.9927384932525456e-5, + -0.01964380219578743, + 0.01741258054971695, + 0.018844783306121826, + 0.01135963574051857, + 0.0007523780222982168, + 0.02454344742000103, + -0.0046961200423538685, + 0.00564589723944664, + 0.012731536291539669, + -0.009309323504567146, + -0.005099398549646139, + 0.018678950145840645, + -0.01073398906737566, + 0.0015104094054549932, + 0.0026288474909961224, + -0.006328078452497721, + -0.012030510231852531, + -0.0174427330493927, + 0.003661541501060128, + -0.004752654582262039, + 0.011525469832122326, + 0.011352097615599632, + 0.004183541983366013, + 0.004635816905647516, + 0.004726272076368332, + -0.016583409160375595, + -0.006554216146469116, + -0.004858185537159443, + 0.0104475487023592, + 0.012912445701658726, + 0.0021765725687146187, + -0.01741258054971695, + -0.005973796360194683, + 0.014533097855746746, + -0.007914809510111809, + 0.00035781532642431557, + 0.032774847000837326, + 0.009316861629486084, + -0.0015989799285307527, + 0.022086087614297867, + -0.016523106023669243, + -0.010002811439335346, + -0.010922436602413654, + 0.0064826058223843575, + -0.012550625950098038, + 0.006731356959789991, + 0.008985193446278572, + 0.004017707891762257, + 0.0059549519792199135, + -0.0037086536176502705, + -0.0012201997451484203, + -0.012693846598267555, + 0.004967485088855028, + -0.0375991128385067, + -0.006154706701636314, + 0.0028662916738539934, + 0.0026024647522717714, + -0.015543177723884583, + 0.004044090863317251, + 0.007153479848057032, + -0.0013144237454980612, + 0.019447816535830498, + 0.011585772968828678, + -0.017699021846055984, + -0.005276539362967014, + -0.0037538809701800346, + 0.0024517064448446035, + 0.007511531002819538, + 0.00914348941296339, + 0.01683969981968403, + 0.02332230471074581, + 0.0004456791502889246, + 0.008284167386591434, + -0.019146300852298737, + 0.010847058147192001, + -0.0025986956898123026, + -0.008254015818238258, + 0.0188598595559597, + -0.005197391379624605, + 0.0009507193462923169, + 0.018814632669091225, + -0.01649295538663864, + -0.011367173865437508, + 0.009271633811295033, + -0.020744338631629944, + -0.0005271828267723322, + 0.01822667568922043, + 0.02309616655111313, + 0.0016018066089600325, + 0.009942508302628994, + -0.0032902993261814117, + -3.9044036384439096e-5, + -0.0026326163206249475, + -0.001256947056390345, + -0.012249109335243702, + 0.011374711990356445, + -0.0061848582699894905, + 0.002988782711327076, + 0.007907271385192871, + -0.004093087278306484, + 0.009015345014631748, + 0.0035993538331240416, + 9.952401887858286e-5, + -0.0024215546436607838, + -0.005996410269290209, + -0.020156381651759148, + -0.008970117196440697, + 0.01120887789875269, + 0.0036690793931484222, + 0.016960306093096733, + -0.017668869346380234, + 0.0216338112950325, + -0.006867039483040571, + -0.0031923064962029457, + -0.015980377793312073, + -0.005061708856374025, + 0.00371430697850883, + 0.0018957853317260742, + -0.005860727746039629, + -0.007658520247787237, + 0.02109108306467533, + 0.02035236731171608, + -0.00474134786054492, + -0.02799581177532673, + -0.003011396387591958, + 0.0009752175537869334, + 0.028538541868329048, + -0.010387244634330273, + 0.014977834187448025, + 0.003672848455607891, + -0.00721755251288414, + 0.0003436817496549338, + 1.9389515728107654e-5, + 0.015693936496973038, + 0.0174427330493927, + 0.005939875729382038, + -0.006897191051393747, + -0.015829619020223618, + -0.013719002716243267, + 0.0019127455307170749, + 0.009188716299831867, + -0.0012597738532349467, + -0.0181512963026762, + 0.014646166004240513, + 0.0014934490900486708, + -0.006011486053466797, + -0.009723908267915249, + 0.008389698341488838, + 0.01781962811946869, + 0.01700553297996521, + -0.019221680238842964, + 0.013417486101388931, + -0.01534719206392765, + 0.012754149734973907, + 0.007296700496226549, + -0.0347648561000824, + 0.009965121746063232, + 0.010854595340788364, + -0.021588584408164024, + -0.03503622114658356, + 0.024739433079957962, + -0.014781848527491093, + 0.011412401683628559, + 0.021724266931414604, + 0.011419938877224922, + 0.0017572761280462146, + 0.01670401729643345, + -0.023985641077160835, + 0.03461410105228424, + 0.020910171791911125, + -0.0150079857558012, + -0.005875803530216217, + 0.02018653228878975, + -0.0020352366846054792, + -0.013568244874477386, + -0.010764140635728836, + -0.020276987925171852, + 0.008223864249885082, + 0.004982560873031616, + -0.005446142517030239, + -0.0009624973754398525, + -0.01458586286753416, + 0.010522927157580853, + 0.016116058453917503, + 0.009867128916084766, + -0.007975112646818161, + 0.007134635467082262, + -0.000509751436766237, + 0.008841972798109055, + -0.0038669495843350887, + 0.017337201163172722, + -0.007145942188799381, + -0.0011919325916096568, + 0.021528281271457672, + 0.0037501121405512094, + 0.012399868108332157, + 0.0033091441728174686, + -0.0017987346509471536, + 0.0013728424673900008, + 0.0043832967057824135, + -0.0026288474909961224, + 0.02068403549492359, + -0.0012032394297420979, + 0.007127097342163324, + -0.007134635467082262, + 0.003942328970879316, + 0.019447816535830498, + 0.007990188896656036, + -0.02193532884120941, + -0.005287846550345421, + -0.013063204474747181, + 0.005830576177686453, + -0.0011353982845321298, + -0.01774424873292446, + 0.01120887789875269, + -0.005393377039581537, + -0.0195382721722126, + -0.004763961303979158, + 0.010319403372704983, + 0.012919983826577663, + 0.015769315883517265, + -0.0039385599084198475, + -0.004782806150615215, + 0.006354461424052715, + 0.01656833477318287, + -0.002555352635681629, + 0.0018109837546944618, + -0.008796744979918003, + -0.013455175794661045, + -0.013070742599666119, + -0.0077338991686701775, + -0.001373784733004868, + -0.009316861629486084, + -0.003631389932706952, + 0.0028248331509530544, + 0.0013342107413336635, + -0.005751428194344044, + 0.02086494490504265, + -0.004100624937564135, + -0.004556668922305107, + 0.007764051202684641, + 0.01575423963367939, + 0.015045675449073315, + 0.007556758355349302, + 0.0031376564875245094, + -0.0001539383374620229, + 0.010010349564254284, + -0.009181179106235504, + 0.010553078725934029, + -0.0030603930354118347, + 0.0005559211131185293, + 0.008005264215171337, + -0.009173640981316566, + -0.0029982051346451044, + -0.008269091136753559, + -0.006286620162427425, + -0.017427656799554825, + -0.008163560181856155, + -0.01274661161005497, + 0.01163100078701973, + 0.004722503013908863, + -0.010681224055588245, + 0.010560616850852966, + -0.006373305805027485, + 0.00460566533729434, + 0.016583409160375595, + 0.02198055572807789, + -0.03597092255949974, + -0.013349644839763641, + 0.02541784569621086, + -0.021920252591371536, + 0.007937422953546047, + 0.011367173865437508, + -0.007191169541329145, + -0.012987825088202953, + -0.01190236583352089, + -0.006870808079838753, + -0.00862337276339531, + 0.012837067246437073, + 0.002838024403899908, + 0.0011655498528853059, + 0.004990098997950554, + -0.0026024647522717714, + 0.0013539977371692657, + -0.004115700721740723, + -0.003980018198490143, + 0.00875905528664589, + 0.00851784273982048, + 0.009942508302628994, + 0.0023951721377670765, + 0.012867218814790249, + 0.00749645521864295, + -0.0030754688195884228, + 0.0028700607363134623, + 0.01619143784046173, + 0.014887379482388496, + -0.003203613217920065, + -0.010824443772435188, + -0.014962758868932724, + 0.0010703837033361197, + -0.012347102165222168, + -0.0005488543538376689, + -0.0033392957411706448, + 0.008502766489982605, + 0.0019118033815175295, + -0.007507761940360069, + 0.029895365238189697, + -0.001166492118500173, + 0.020292064175009727, + -0.009467619471251965, + 0.0090756481513381, + 0.006068020593374968, + 0.020985551178455353, + -0.018317129462957382, + 0.00480918912217021, + 0.020563429221510887, + 0.012927521951496601, + -0.005630821455270052, + -0.021392598748207092, + -0.01447279378771782, + 0.011058119125664234, + -0.01578439027070999, + 0.006049175746738911, + 0.008367083966732025, + -0.005317998118698597, + 0.0036521190777420998, + -0.012045585550367832, + -0.01246017124503851, + -0.0018128682859241962, + -0.008510304614901543, + -0.0236991997808218, + 0.010274176485836506, + -0.017487959936261177, + 0.0012060662265866995, + -0.025915347039699554, + 0.020231761038303375, + 0.007308007217943668, + 0.03404121845960617, + -0.003015165450051427, + -0.01771409623324871, + 0.01697538234293461, + -0.008352008648216724, + 0.0195382721722126, + 0.0029303638730198145, + 0.029533546417951584, + 0.00820124987512827, + -0.01592007279396057, + -0.006557984743267298, + -0.008035415783524513, + 0.020307138562202454, + -0.010997815988957882, + -0.010492775589227676, + -0.0011617809068411589, + 0.00682181166484952, + 0.002638269681483507, + 0.017020609229803085, + 0.021799646317958832, + -0.008299242705106735, + 0.00949777103960514, + -0.027468157932162285, + -0.005660973023623228, + -0.010093266144394875, + 0.01940258964896202, + 0.009105799719691277, + -0.02873452752828598, + 0.005291615147143602, + -0.0020861176308244467, + -0.0028700607363134623, + 0.020910171791911125, + 0.004292842000722885, + 0.001109957811422646, + 0.017910081893205643, + -0.0111410366371274, + 0.017261821776628494, + -0.0007773473626002669, + 0.025643981993198395, + 0.019990546628832817, + 0.014940144494175911, + -0.00817863643169403, + 0.000985582242719829, + -0.0040026321075856686, + 0.00887212436646223, + -0.0030283567029982805, + 0.010424934327602386, + -0.0029586311429739, + 0.01088474690914154, + 0.007677365094423294, + -0.02008100226521492, + 0.018754329532384872, + 0.001076037180610001, + 0.0005582767189480364, + -0.005973796360194683, + -0.025915347039699554, + 0.010590768419206142, + -0.016673864796757698, + 0.0036973466631025076, + -0.018648797646164894, + 0.012467709369957447, + -0.005600669886916876, + -0.007051718421280384, + -0.007982650771737099, + 0.03208136186003685, + -0.012151116505265236, + -0.005114474333822727, + -0.01640249975025654, + 0.02620178833603859, + 0.0037689567543566227, + -0.008035415783524513, + -0.02190517634153366, + 0.0404936708509922, + 0.02008100226521492, + 0.0033864076249301434, + -0.0118345245718956, + -0.0003144723305013031, + -0.008570607751607895, + 0.010605844669044018, + 0.004880798980593681, + -0.02339768409729004, + 0.014186353422701359, + -0.01326672825962305, + 0.005555442534387112, + 0.004726272076368332, + -0.043599292635917664, + -0.015219047665596008, + -0.001109957811422646, + 0.01727689802646637, + 0.0044473689049482346, + -0.009098261594772339, + -0.001400167471729219, + -0.012716460041701794, + -0.004956178367137909, + 0.007153479848057032, + 0.027392778545618057, + 0.05608207732439041, + 0.017789475619792938, + 0.023081092163920403, + -0.002103077946230769, + -0.0012626005336642265, + -0.016085907816886902, + 0.002404594561085105, + -0.01004050113260746, + -0.025779664516448975, + -0.03349848836660385, + -0.0022312223445624113, + -0.010078190825879574, + 0.020412670448422432, + 0.0195382721722126, + 0.0025308544281870127, + -0.0028964432422071695, + -0.021271992474794388, + -0.019116148352622986, + -0.01690000295639038, + 0.00010853417916223407, + -0.006117017008364201, + 0.018136220052838326, + -0.007021566387265921, + -0.00474134786054492, + -0.0015961532481014729, + -0.0016215937212109566, + -0.0015980376629158854, + -0.012173730880022049, + 0.005830576177686453, + 0.0104475487023592, + 0.0173824280500412, + -0.023488139733672142, + -0.008125870488584042, + -0.012693846598267555, + -0.0015904997708275914, + 0.011555621400475502, + 0.005653435364365578, + 0.011027967557311058, + -0.003312913002446294, + -0.02457359805703163, + -0.018136220052838326, + -0.006799198221415281, + 0.011261642910540104, + -0.024392688646912575, + -0.013281803578138351, + -0.009799287654459476, + -0.012987825088202953, + 0.006026561837643385, + -0.0009771020850166678, + 0.0035202056169509888, + 0.0068595013581216335, + 0.005664742086082697, + -0.019221680238842964, + -0.00875905528664589, + -0.005133319180458784, + -0.008917352184653282, + 0.026247015222907066, + -0.009196254424750805, + 0.012105889618396759, + -0.018603570759296417, + -0.0035202056169509888, + 0.002219915622845292, + 0.010967664420604706, + 0.008254015818238258, + -0.000570054748095572, + 0.013055666349828243, + -0.0026476921048015356, + 0.001883536227978766, + 0.010251562111079693, + -0.012264185585081577, + 0.027829976752400398, + -0.014442642219364643, + -0.01934228651225567, + -0.01267877034842968, + -0.020970474928617477, + -0.018648797646164894, + -0.031146658584475517, + 0.009603301994502544, + -0.007692440878599882, + 0.005476294085383415, + 0.0036295054014772177, + -0.009520384483039379, + -0.0055705183185637, + -0.007394693326205015, + -0.022086087614297867, + 0.025040948763489723, + -0.01012341771274805, + 0.00022095508757047355, + -0.006459991913288832, + 0.021076006814837456, + -0.014457718469202518, + -0.025613831356167793, + -0.005336842965334654, + 0.005657203961163759, + 0.02048804983496666, + -0.018482964485883713, + 0.0019334747921675444, + -0.00723639689385891, + 0.003571086563169956, + 0.007398462388664484, + -0.008020340465009212, + -0.006083096377551556, + -0.012671233154833317, + 0.008284167386591434, + -0.018709100782871246, + -0.02410624735057354, + -0.02268912084400654, + -0.0005285961669869721, + 0.0041043940000236034, + 0.03503622114658356, + -0.01507582701742649, + 0.010146032087504864, + -0.004032783675938845, + 0.025915347039699554, + 0.021799646317958832, + 0.026081182062625885, + 0.016854774206876755, + 0.018814632669091225, + -0.014246656559407711, + 0.005106936674565077, + -0.022945409640669823, + 0.013455175794661045, + 0.016719091683626175, + 0.014691393822431564, + -0.010017887689173222, + 0.023382607847452164, + 0.009844515472650528, + 0.010183721780776978, + 0.004967485088855028, + 0.004142083693295717, + 0.009995273314416409, + -0.007575603201985359, + -0.011774221435189247, + 0.029262181371450424, + 0.003684155410155654, + 0.0036709639243781567, + 0.009942508302628994, + -0.025915347039699554, + 0.005845651961863041, + 0.0069273426197469234, + -0.007726361509412527, + 0.022794650867581367, + 0.0062640062533319, + -0.006000179331749678, + -0.027664143592119217, + -0.008095718920230865, + -0.00632054079324007, + 0.0038443359080702066, + 0.015980377793312073, + 0.003789686132222414, + -0.01017618365585804, + -0.01541503332555294, + -0.008706290274858475, + -0.0044473689049482346, + -0.009233944118022919, + 0.03569955751299858, + 0.0008263437775895, + 0.014141125604510307, + 0.009384702891111374, + 0.004899643827229738, + -0.02802596241235733, + 0.012452633120119572, + 0.012151116505265236, + -0.011389787308871746, + -0.00360877625644207, + -0.016719091683626175, + -0.009708832949399948, + 0.01024402491748333, + -0.004782806150615215, + -0.006117017008364201, + -0.01340241078287363, + 0.003744458546862006, + 0.005317998118698597, + -0.004149621352553368, + 0.0006383670843206346, + 0.0026401542127132416, + 0.0005201160674914718, + 0.003147078910842538, + -0.033347729593515396, + -0.01507582701742649, + 0.011857138015329838, + 0.019734257832169533, + 0.02176949381828308, + -0.014887379482388496, + -0.013749154284596443, + 0.0029454396571964025, + -0.010266638360917568, + 0.006248930469155312, + -0.0006100998725742102, + -0.009784212335944176, + 0.016508031636476517, + 0.007605754770338535, + -0.013146121054887772, + 0.011600849218666553, + -0.008547994308173656, + 0.024618826806545258, + 0.00934701319783926, + -0.01163100078701973, + -0.034433189779520035, + 0.0027494539972394705, + 0.013281803578138351, + 0.006606981158256531, + -0.02149813063442707, + -0.02051820047199726 + ], + "55f0fba3-64d0-45fa-959f-de7abf3d8afe": [ + -0.02923833765089512, + 0.001094954670406878, + -0.01530464831739664, + -0.019958000630140305, + -0.019944816827774048, + -0.014632351696491241, + -0.004149128682911396, + 0.0469026193022728, + 0.006835022009909153, + 0.03155842423439026, + -0.013801866210997105, + 0.03506491333246231, + -0.02250218391418457, + -0.023319486528635025, + -0.03132114186882973, + 0.004646760411560535, + -0.02185625024139881, + 0.002364574698731303, + 0.006198975723236799, + -0.01651741936802864, + 0.05098913237452507, + -0.02181670442223549, + -0.02027437463402748, + 0.04126059263944626, + -0.00610669981688261, + 0.004732445348054171, + 0.027181899175047874, + 0.005951807834208012, + -0.03946780040860176, + -0.018112478777766228, + 0.006284660659730434, + 0.0038821869529783726, + 0.025692299008369446, + -0.015067366883158684, + 0.00032935148919932544, + -0.007546865846961737, + 0.0033631338737905025, + 0.022396724671125412, + -0.0393623448908329, + 0.04089149087667465, + -0.020511656999588013, + -0.018521130084991455, + 0.005661797244101763, + 0.014566440135240555, + -0.02320084534585476, + 0.036277685314416885, + 0.02458498626947403, + -0.008990327827632427, + 0.012358404695987701, + -0.013511856086552143, + 0.0069932094775140285, + -0.004320498555898666, + 0.01621422730386257, + 0.0012399599654600024, + 0.011112677864730358, + 0.006630696356296539, + 0.026193227618932724, + 0.025534112006425858, + 0.01863976940512657, + -0.04885359853506088, + -0.00991967972368002, + -0.006109995301812887, + 0.007711644750088453, + -0.0052498504519462585, + -0.0027468614280223846, + -0.039151426404714584, + 0.033852141350507736, + -0.025046367198228836, + -0.010512882843613625, + -0.008515764959156513, + 0.015067366883158684, + 0.022027621045708656, + -0.031822070479393005, + -0.009464890696108341, + -0.017374269664287567, + -0.002662824233993888, + 0.03116295300424099, + -0.010308557190001011, + -0.01152792014181614, + 0.022185808047652245, + -0.019997546449303627, + 0.011112677864730358, + 0.013880960643291473, + -0.0041623106226325035, + 0.05963671952486038, + 0.051516421139240265, + -0.02546820044517517, + -0.03590857982635498, + -0.003191764000803232, + -0.020762119442224503, + 0.014711445197463036, + 0.014579622074961662, + -0.007342540193349123, + 0.001931206788867712, + -0.02404451183974743, + -0.008173025213181973, + 0.033799413591623306, + 0.03116295300424099, + -0.0095242103561759, + -0.026535967364907265, + -0.005988059099763632, + 0.03332484886050224, + -0.03319302946329117, + 0.0023118455428630114, + -0.002166840247809887, + -0.00019773448002524674, + 0.03799138590693474, + -0.014039147645235062, + -0.026377778500318527, + 0.0013610722962766886, + 0.014605986885726452, + -0.01804656721651554, + -0.020617114380002022, + 0.018217936158180237, + -0.006357163656502962, + -0.059425801038742065, + -0.011765201576054096, + -0.022818557918071747, + -0.004317202605307102, + -0.04500436782836914, + 0.03166387975215912, + 0.030582932755351067, + 0.0097944475710392, + -0.025441836565732956, + 0.008786002174019814, + -0.007157987914979458, + -0.001720289932563901, + -0.007896197028458118, + 0.013999600894749165, + -0.013103204779326916, + 0.023622678592801094, + 0.004231517668813467, + -0.006409892812371254, + 0.029554713517427444, + -0.010249237529933453, + 0.0091221509501338, + 0.03764864429831505, + 0.04526801407337189, + -0.005134505219757557, + 0.03292938321828842, + -0.02868468128144741, + -0.03026655688881874, + -0.0035328560043126345, + 0.008693725802004337, + -0.0071250321343541145, + -0.0038294577971100807, + -0.02789374440908432, + 0.042947929352521896, + 0.00996581744402647, + 0.037569548934698105, + -0.0433170311152935, + -0.0001997942163143307, + 0.0598476342856884, + 0.027867378666996956, + -0.003878891235217452, + 0.014144605956971645, + 0.00495983986184001, + 0.051911890506744385, + -0.02503318525850773, + 0.013933689333498478, + 0.011738836765289307, + -0.02720826491713524, + 0.026878707110881805, + -0.03213844448328018, + 0.0004955720505677164, + -0.0031439783051609993, + 0.043844323605298996, + 0.024967273697257042, + -0.034748539328575134, + 0.024914544075727463, + 0.04608531668782234, + -0.026746883988380432, + 0.016148315742611885, + 0.004033783450722694, + 0.009840586222708225, + 0.002184965880587697, + 0.005543156526982784, + 0.005526678636670113, + 0.034748539328575134, + 0.00650546420365572, + -0.024176334962248802, + -0.003578993957489729, + -0.027972837910056114, + 0.005833167117089033, + -0.002816068474203348, + 0.0006788883474655449, + 0.02165851555764675, + 0.019997546449303627, + 0.0024370774626731873, + 0.022726282477378845, + 0.018877051770687103, + -0.01310979574918747, + 0.009267156012356281, + 0.010644705966114998, + -0.006156133487820625, + -0.00811370462179184, + 0.006228636018931866, + 0.010453563183546066, + 0.011092904023826122, + 0.028869234025478363, + -0.028842868283391, + -0.07192262262105942, + -0.050224557518959045, + 0.009029874578118324, + -0.03654133155941963, + -0.005421220324933529, + -0.022330813109874725, + -0.0103349220007658, + 0.017532456666231155, + -0.04460889846086502, + 0.01928570307791233, + -0.008225753903388977, + 0.01476417388767004, + 0.0018916598055511713, + -0.002888571238145232, + 0.009346249513328075, + -0.02225171960890293, + 0.007672097533941269, + 0.019812995567917824, + 0.0022558209020644426, + -0.030872942879796028, + 0.022278085350990295, + 0.01167292520403862, + -0.03730590641498566, + -0.03862413391470909, + 0.009833994321525097, + 0.012384769506752491, + 0.010545838624238968, + -0.047456275671720505, + 0.014566440135240555, + 0.06517328321933746, + -0.012193625792860985, + -0.01476417388767004, + -0.04753536731004715, + -0.016253774985671043, + 0.0269578006118536, + 0.0034438755828887224, + -0.020393015816807747, + 0.02755100466310978, + -0.016781065613031387, + 0.04827357828617096, + 0.02280537597835064, + 0.003147273790091276, + 0.008621223270893097, + 0.0011345015373080969, + 0.0259691271930933, + 0.015396924689412117, + 0.034801267087459564, + 0.009616486728191376, + -0.019747084006667137, + 0.009550575166940689, + 0.012575913220643997, + 0.02744554542005062, + -0.00042966054752469063, + -0.006284660659730434, + 0.003185172798112035, + -0.0092539731413126, + -7.332653331104666e-5, + 0.015001455321907997, + -0.025705482810735703, + -0.007731418125331402, + 0.0038723002653568983, + 0.02088076062500477, + -0.011409278959035873, + 0.04099695011973381, + -0.04471435770392418, + 0.0310047660022974, + -0.05046183988451958, + 0.010526065714657307, + 0.018165206536650658, + -0.01606922224164009, + -0.002895162208005786, + 0.020999401807785034, + 0.009214426390826702, + -0.01009104959666729, + -0.009860359132289886, + 0.002745213685557246, + 0.015120096504688263, + 0.002730383537709713, + 0.0200370941311121, + -0.010842440649867058, + 0.023873142898082733, + 0.012727509252727032, + 0.03654133155941963, + -0.016926070675253868, + -0.007012982852756977, + 0.011620196513831615, + 0.04764082655310631, + -0.04218335449695587, + -0.03295574709773064, + -0.0072238994762301445, + -0.02190897986292839, + 0.05842394754290581, + -0.00513120973482728, + 0.06301138550043106, + -0.023411761969327927, + -0.009656033478677273, + -0.008436671458184719, + -0.003346655983477831, + -0.0037569550331681967, + -0.024901362136006355, + 0.022278085350990295, + 0.027788285166025162, + -0.005651910323649645, + 0.007981881499290466, + 0.014052330516278744, + 0.03406305983662605, + 0.0019147288985550404, + -0.05004000663757324, + 0.0004914525779895484, + 0.02963380701839924, + 0.006571375764906406, + -0.012292493134737015, + -0.03366759046912193, + -0.0030632365960627794, + 0.019219791516661644, + 0.03822866454720497, + -0.006014423910528421, + -0.00875304639339447, + -0.03240209072828293, + -0.03327212110161781, + 0.008153251372277737, + -0.012549548409879208, + 0.018666135147213936, + 0.04487254470586777, + -0.04284247010946274, + 0.010816075839102268, + -0.016846977174282074, + -0.011580648832023144, + -0.08869050443172455, + 0.0014541723066940904, + -0.07825012505054474, + -0.057791195809841156, + -0.024690445512533188, + -0.008008246310055256, + -0.01874522864818573, + -0.03585585206747055, + -0.03530219569802284, + -0.01355140283703804, + -0.006657060701400042, + 0.0036580879241228104, + 0.03372031822800636, + -0.043897055089473724, + 0.014025965705513954, + 0.025336377322673798, + 0.0025178189389407635, + -0.01123131811618805, + 0.0054311067797243595, + -0.022581277415156364, + 0.002962721511721611, + 0.0006335742073133588, + -0.028315577656030655, + 0.04031147062778473, + -0.0007703405572101474, + 0.007335949223488569, + -0.01223976444453001, + -0.017677461728453636, + 0.00818620715290308, + -0.027471909299492836, + 0.02122350037097931, + 0.011494964361190796, + -0.0038195711094886065, + -0.014368705451488495, + -0.019404344260692596, + 0.007487545721232891, + 0.00035056675551459193, + 0.024611352011561394, + 0.020986219868063927, + 0.015581476502120495, + 0.021500328555703163, + -0.011317003518342972, + 0.012734100222587585, + 0.021829886361956596, + 0.019417526200413704, + -0.01696561835706234, + 0.017769739031791687, + 0.03817593678832054, + 0.026153679937124252, + -0.031136589124798775, + 0.01335366815328598, + -0.03353576734662056, + 0.0055365655571222305, + 0.0031653994228690863, + -0.016873342916369438, + 0.014355523511767387, + 0.025402288883924484, + 0.021579422056674957, + -0.007803920656442642, + 0.008423488587141037, + -0.022489001974463463, + -0.04302702099084854, + -0.025876851752400398, + -0.017572004348039627, + -0.0022245128639042377, + -0.02424224652349949, + 0.025837305933237076, + 0.005698048509657383, + -0.025362743064761162, + -0.007177761755883694, + -0.014698263257741928, + 0.009576939977705479, + -0.03274482861161232, + -0.00929352082312107, + -0.0017944404389709234, + 0.025784576311707497, + 0.0014286315999925137, + -0.03240209072828293, + -0.0013709591003134847, + 0.007711644750088453, + -0.006920706946402788, + 0.01705789379775524, + 0.010697435587644577, + 0.023925872519612312, + 0.012674779631197453, + 0.037516821175813675, + -0.008614632301032543, + 0.03640950843691826, + -0.027181899175047874, + -0.05747482180595398, + -0.01622740924358368, + 0.05594567582011223, + 0.06448780745267868, + -0.027788285166025162, + 0.009840586222708225, + -0.01394687220454216, + -0.010414015501737595, + 0.039784178137779236, + 0.01196952722966671, + -0.033852141350507736, + 0.0017367678228765726, + -0.020366651937365532, + 0.01567375287413597, + 0.0063406857661902905, + 0.005038933828473091, + 0.01602967455983162, + -0.012694553472101688, + -0.012187034823000431, + -0.0212103184312582, + -0.018534312024712563, + -0.02823648415505886, + 0.003575698472559452, + -0.005263032857328653, + 0.002562309382483363, + 0.013973236083984375, + -0.013683225959539413, + -0.017927926033735275, + -0.027313722297549248, + -0.047957200556993484, + 0.023899506777524948, + 0.017572004348039627, + -0.014685080386698246, + 0.084103062748909, + -0.014605986885726452, + 0.00426447344943881, + -0.006109995301812887, + -0.0006265711272135377, + -0.012971381656825542, + 0.021632151678204536, + 0.017717009410262108, + -0.01194316241890192, + -0.0171633530408144, + 0.007138214539736509, + -0.0009639555937610567, + -0.026430508121848106, + -0.02424224652349949, + -0.057843927294015884, + -0.02165851555764675, + 0.017202898859977722, + 0.003466944443061948, + -0.0036580879241228104, + -0.02422906458377838, + 0.015858305618166924, + -0.02818375453352928, + 0.004386409651488066, + -0.016583330929279327, + 0.0010809485102072358, + -0.0039250291883945465, + -0.0013437705347314477, + 0.013564584776759148, + -0.01964162476360798, + -0.027867378666996956, + -0.027524638921022415, + -0.012364995665848255, + 0.023504037410020828, + 0.017519274726510048, + 0.0031258524395525455, + 0.0017268811352550983, + -0.017492910847067833, + 0.015897851437330246, + -0.031822070479393005, + 0.0460062213242054, + -0.025389106944203377, + 0.008324621245265007, + 0.001980640459805727, + -0.006185793783515692, + -0.05420561134815216, + -0.00019618967780843377, + -0.01355140283703804, + -0.005516791716217995, + -0.020366651937365532, + 0.04698171094059944, + -0.014632351696491241, + 0.008271892555058002, + 0.0382813960313797, + 0.014157788828015327, + -0.01908796839416027, + -0.025204554200172424, + -0.02165851555764675, + 0.010736982338130474, + 0.005945216864347458, + 0.03635678067803383, + -0.012055211700499058, + -0.005223485641181469, + 0.009880132973194122, + 0.0038294577971100807, + -0.007929152809083462, + -0.018283847719430923, + 0.010947898961603642, + 0.011831113137304783, + -0.033562131226062775, + 0.002186613855883479, + -0.005879305303096771, + -0.015146461315453053, + 0.010895169340074062, + 0.011218136176466942, + -0.007883014157414436, + -0.022146262228488922, + 0.010934717021882534, + 0.017426999285817146, + 0.0019295589299872518, + -0.028315577656030655, + 0.02699734829366207, + -0.017782920971512794, + 0.006185793783515692, + 0.020709391683340073, + -0.017703827470541, + 0.011481782421469688, + -0.018231118097901344, + -0.001600001472979784, + 0.0310047660022974, + -0.019522983580827713, + 0.031268410384655, + 0.002186613855883479, + -0.012483636848628521, + 0.007632550783455372, + 0.05172733962535858, + -0.03590857982635498, + 0.01705789379775524, + -0.010011956095695496, + 0.006564784795045853, + -0.010512882843613625, + 0.025837305933237076, + -0.008568493649363518, + 0.0009507733047939837, + 0.018982509151101112, + -0.023069022223353386, + 0.03066202625632286, + -0.025402288883924484, + -0.048299942165613174, + 0.016491055488586426, + 0.007283220067620277, + -0.005615659058094025, + 0.02676006592810154, + 0.01355140283703804, + -0.02997654676437378, + 0.0024650897830724716, + -0.009313293732702732, + 0.006126473192125559, + -0.007237081881612539, + -0.012450681068003178, + -0.006100108847022057, + 0.01583193987607956, + 0.017941107973456383, + -0.0008098874823190272, + -0.018428852781653404, + 0.02482226863503456, + -0.007335949223488569, + 0.017387451604008675, + -0.014685080386698246, + -0.005651910323649645, + 0.0003783731663133949, + -0.03166387975215912, + -0.010769938118755817, + -0.019667988643050194, + -0.00872668158262968, + 0.005088367033749819, + -0.04041692614555359, + -0.028895597904920578, + 0.009899905882775784, + 0.01123131811618805, + 0.023952236399054527, + 0.006769110448658466, + 0.006287956610321999, + -0.0149619085714221, + -0.018771592527627945, + 0.03285028785467148, + 0.015423289500176907, + 0.02582412213087082, + -0.016688790172338486, + 0.007975290529429913, + -0.004758809693157673, + 0.011989300139248371, + 0.036040402948856354, + 0.001188878552056849, + -0.02048529125750065, + 0.005711230915039778, + -0.011903615668416023, + -0.029791994020342827, + -0.026641424745321274, + -0.022620825096964836, + -0.005042229313403368, + 0.02275264635682106, + 0.017334721982479095, + -0.024123607203364372, + 0.016306502744555473, + 0.00597158120945096, + 0.012549548409879208, + 0.03849231079220772, + 0.014329158701002598, + 0.01196952722966671, + 0.020168917253613472, + -0.06069130077958107, + 0.04281610623002052, + -0.012200217694044113, + 0.013030702248215675, + 0.0007258502882905304, + 0.008818957954645157, + 0.0017977359239012003, + -0.011686108075082302, + 0.002390939509496093, + 0.026351414620876312, + 0.010420607402920723, + 0.0463753268122673, + -0.026825977489352226, + 0.033456671983003616, + 0.014922361820936203, + 0.013122978620231152, + 0.035091277211904526, + -0.0006113291019573808, + 0.025547293946146965, + 0.018784774467349052, + 0.00442595686763525, + -0.025165008381009102, + 0.03337758034467697, + -0.005427811294794083, + 0.02636459656059742, + -0.022291267290711403, + 0.03076748549938202, + 0.026430508121848106, + 0.001769723603501916, + -0.07418997585773468, + -0.0053487177938222885, + 0.008911233395338058, + 0.02122350037097931, + -0.014052330516278744, + -0.020590750500559807, + 0.010697435587644577, + 0.0285792239010334, + 0.004142537247389555, + -0.00124243157915771, + -0.004689602646976709, + 0.030530203133821487, + -0.022581277415156364, + 0.019905271008610725, + 0.004465503618121147, + -0.006195680238306522, + 0.005595885682851076, + 0.011066539213061333, + 0.01003831997513771, + 0.0043106116354465485, + -0.006024310365319252, + -0.003928325138986111, + 0.03200662136077881, + 0.00982081238180399, + 0.007250264286994934, + -0.025415470823645592, + 0.0025721960701048374, + -0.020406197756528854, + 0.02106531336903572, + -0.028078295290470123, + 0.01264182385057211, + -0.0009104025084525347, + -0.03669951856136322, + -0.00019670461188070476, + 0.030002910643815994, + -0.01377550233155489, + -0.014513710513710976, + 0.03928324952721596, + 0.009669216349720955, + 0.022040802985429764, + 0.01357776764780283, + 0.00013594244956038892, + -0.022185808047652245, + -0.007250264286994934, + -0.022317631170153618, + -0.009537393227219582, + -0.03282392397522926, + 0.00294953933916986, + 0.05159551650285721, + -0.004353453870862722, + -0.0460062213242054, + 0.016939254477620125, + 0.007619368378072977, + -0.015278284437954426, + -0.007665506564080715, + 0.012925243936479092, + -0.015489201061427593, + -0.014685080386698246, + 0.006828430574387312, + 0.0021520103327929974, + 0.04392341896891594, + 0.004070034716278315, + 0.01120495330542326, + -0.0011748723918572068, + -0.011857477948069572, + 0.009840586222708225, + -0.005520087666809559, + 0.006488986313343048, + -0.002114111091941595, + 0.015291466377675533, + -0.0028457287698984146, + 0.05742209404706955, + 0.003737181657925248, + -0.024769539013504982, + -0.042552459985017776, + 0.020261192694306374, + 0.008858504705131054, + 0.014948726631700993, + -0.006835022009909153, + 0.004554484039545059, + 0.03443216532468796, + 0.02548138238489628, + -0.0051048449240624905, + -0.0017400634242221713, + -0.0411551371216774, + 0.0034537622705101967, + -0.027972837910056114, + 0.012668188661336899, + 0.026786429807543755, + -0.015106914564967155, + -0.018086113035678864, + -0.012490227818489075, + 0.019667988643050194, + -0.008291665464639664, + 0.022871287539601326, + -0.006508759688585997, + -0.030846579000353813, + 0.019997546449303627, + 0.026733702048659325, + 0.018877051770687103, + 0.029897453263401985, + -0.032270267605781555, + 0.052834652364254, + 0.02487499639391899, + -0.021737610921263695, + -0.011270864866673946, + -0.004201857838779688, + -0.010987445712089539, + -0.026153679937124252, + 0.013590949587523937, + -0.005259736906737089, + 0.0002902165288105607, + 0.0182443019002676, + -0.0031077268067747355, + 0.01513327844440937, + -0.010104231536388397, + -0.030055640265345573, + 0.045821670442819595, + 0.030055640265345573, + -0.024519074708223343, + 0.024308158084750175, + -0.0002469621249474585, + 0.03332484886050224, + 0.03245481848716736, + 0.00862781424075365, + 0.012549548409879208, + 0.03422124683856964, + 0.005207007750868797, + -0.05257100611925125, + 0.0014170970534905791, + -0.015120096504688263, + -0.04782537743449211, + 0.0012860980350524187, + -0.017941107973456383, + 0.014395070262253284, + 0.0011419166112318635, + 0.02358313277363777, + 0.014513710513710976, + -0.022330813109874725, + -0.003178581828251481, + 0.015449654310941696, + 0.019905271008610725, + -0.01241113431751728, + 0.0037997975014150143, + 0.013300939463078976, + -0.004884041380137205, + 0.008298257365822792, + -0.01889023371040821, + 0.011864068917930126, + 0.00738208694383502, + -0.0006669419235549867, + -0.04476708546280861, + 0.017374269664287567, + 0.03161115199327469, + 0.012872514314949512, + 0.005945216864347458, + 0.019865723326802254, + 0.022238537669181824, + 0.021381687372922897, + 0.003038519760593772, + -0.018560675904154778, + -0.008495991118252277, + -0.01701834797859192, + 0.0010644706198945642, + 0.008364167995750904, + 0.0021520103327929974, + -0.015541929751634598, + -0.01392050739377737, + 0.012523183599114418, + -0.0008568494231440127, + 0.04323793947696686, + 0.022634007036685944, + -0.008575085550546646, + 0.03849231079220772, + -0.009029874578118324, + -0.00765232415869832, + 0.0010669422335922718, + -0.004445730242878199, + 0.024347705766558647, + 0.02616686187684536, + -0.007566639222204685, + 0.0021553058177232742, + -0.012200217694044113, + 0.04091785475611687, + 0.01538374274969101, + 0.03195388987660408, + -0.02097303606569767, + -0.013735954649746418, + -0.0372004471719265, + 0.03575039282441139, + 0.001094954670406878, + -0.019707536324858665, + -0.01973390020430088, + 0.007685279939323664, + 0.01612195186316967, + -0.003967871889472008, + 0.01809929497539997, + -0.0028440807946026325, + 0.03833412379026413, + 0.002502989023923874, + 0.0033235871233046055, + 0.016939254477620125, + 0.015199190005660057, + -0.01657014898955822, + -0.004758809693157673, + 0.0016329572536051273, + 0.025890033692121506, + 0.028473764657974243, + 0.031242048367857933, + 0.019101150333881378, + -0.02661506086587906, + 0.043949782848358154, + -0.005503609776496887, + -0.033904872834682465, + 0.008832139894366264, + 0.0212103184312582, + -0.020538020879030228, + 0.008931007236242294, + -0.011560875922441483, + 0.019298885017633438, + 0.011837704107165337, + -0.005467358510941267, + 0.004554484039545059, + 0.021328959614038467, + -0.022910835221409798, + -0.007546865846961737, + -0.03071475587785244, + -0.012272720225155354, + -0.030688390135765076, + -0.007217308506369591, + 0.01189702469855547, + 0.0118179302662611, + 0.022541729733347893, + -0.001801031525246799, + -0.045531660318374634, + -0.004014010075479746, + 0.00862781424075365, + -0.008179616183042526, + -0.0036580879241228104, + -0.03569766506552696, + 0.011396097019314766, + -0.006096812896430492, + 0.0006105051725171506, + -0.03248118236660957, + -0.011343368329107761, + -0.028210118412971497, + -0.028869234025478363, + -0.01660969667136669, + -0.0009721945389173925, + 0.003948098514229059, + -0.005941920913755894, + -0.03245481848716736, + -0.014184153638780117, + 0.025745028629899025, + -0.009392387233674526, + -0.03488036245107651, + -0.005707935430109501, + 0.040285103023052216, + 0.002498045563697815, + 0.030793849378824234, + 0.003185172798112035, + 0.007711644750088453, + -0.027313722297549248, + -0.02453225664794445, + 0.017598368227481842, + 0.017624733969569206, + 0.015541929751634598, + 0.006182497832924128, + -0.0006735330680385232, + 0.001037282170727849, + 0.00845644436776638, + 0.0004457264731172472, + 0.00268259784206748, + 0.01355140283703804, + -0.009016692638397217, + -0.014975091442465782, + 0.02359631471335888, + -0.012720918282866478, + 0.012470453977584839, + 0.012991155497729778, + 0.01784883253276348, + 0.021829886361956596, + 0.006521942093968391, + -0.025257283821702003, + 0.03066202625632286, + -0.014460981823503971, + 0.01535737793892622, + 0.0016766235930845141, + -0.05900396779179573, + -0.006999800447374582, + -0.0026051518507301807, + -0.029343796893954277, + -0.014698263257741928, + -0.003704225877299905, + 0.013643679209053516, + -0.032322995364665985, + -0.03137386962771416, + 0.013564584776759148, + 0.003356542671099305, + 0.0285792239010334, + 0.016701972112059593, + 0.046217139810323715, + 0.020551202818751335, + -0.029449254274368286, + -0.0005956751410849392, + 0.03150569275021553, + 0.0036317233461886644, + -0.008225753903388977, + 0.010769938118755817, + -0.012832967564463615, + 0.0011089608306065202, + -0.011481782421469688, + -0.021394871175289154, + 0.01090176124125719, + -0.04207789525389671, + 0.026338232681155205, + -0.03493309020996094, + 0.014856450259685516, + 0.014065512455999851, + 0.031136589124798775, + 0.0009647794649936259, + -0.021948527544736862, + 0.01152792014181614, + -0.041866980493068695, + 0.006011127959936857, + 0.00860804133117199, + -0.03221753612160683, + -0.009405570104718208, + 0.006835022009909153, + 0.0025820827577263117, + 0.023214027285575867, + -0.016846977174282074, + 0.012154079042375088, + -0.006693311966955662, + -0.016438325867056847, + 0.022989928722381592, + -0.028921963647007942, + -0.021684881299734116, + 0.02902742102742195, + -0.03807047754526138, + 0.034353069961071014, + -0.05510200932621956, + -0.007197535131126642, + -0.010031729005277157, + 0.004393001087009907, + -0.021473964676260948, + -0.013696407899260521, + -0.0023431535810232162, + 0.0020152439828962088, + -0.008001655340194702, + -0.036673154681921005, + -0.0017862014938145876, + -0.020248010754585266, + 0.026417326182127, + 0.007474363315850496, + -0.0019822882022708654, + -0.0166228786110878, + 0.030187463387846947, + 0.018626587465405464, + -0.010130596347153187, + 0.015515564940869808, + -0.01461916882544756, + -0.023662226274609566, + -0.016530603170394897, + 0.03134750574827194, + 0.02329312078654766, + -0.020248010754585266, + -0.05483836308121681, + -0.0056683882139623165, + 0.012490227818489075, + -0.01943070814013481, + -0.03137386962771416, + 0.00811370462179184, + 0.006498873233795166, + 0.0055365655571222305, + 0.0014854802284389734, + 0.01152792014181614, + 0.010466745123267174, + 0.022963564842939377, + -0.00520371226593852, + -0.015897851437330246, + 0.010717208497226238, + 0.010130596347153187, + -0.014553257264196873, + 0.006109995301812887, + -0.026338232681155205, + 0.021289411932229996, + -0.045426201075315475, + -0.015911035239696503, + 0.0015859953127801418, + 0.0400741882622242, + -0.03833412379026413, + -0.018389306962490082, + -0.0009590121917426586, + 0.0012481989106163383, + 0.012147488072514534, + -0.010414015501737595, + 0.020366651937365532, + 0.005497018340975046, + 0.02201443910598755, + 0.02379404939711094, + -0.014039147645235062, + 0.027076441794633865, + 0.0034801268484443426, + 0.003384555224329233, + 0.008884869515895844, + 0.027709191665053368, + 0.010967672802507877, + 0.009886723943054676, + 0.004646760411560535, + 0.00823893677443266, + 0.012898879125714302, + 0.029159244149923325, + -0.03245481848716736, + 0.052702829241752625, + -0.0074611809104681015, + 0.006657060701400042, + 0.016359232366085052, + 0.01223976444453001, + -0.036831341683864594, + -0.001675799721851945, + 0.0010438732570037246, + 0.0019031943520531058, + 0.023319486528635025, + 0.005378377623856068, + 0.00583646260201931, + 0.002712257904931903, + 0.017084259539842606, + 0.011593831703066826, + 0.0016988686984404922, + 0.01476417388767004, + 0.002745213685557246, + 0.006485690828412771, + 0.011949753388762474, + 0.007929152809083462, + -0.03775410354137421, + 0.010354695841670036, + -0.008265301585197449, + -0.012490227818489075, + 0.041524238884449005, + -0.024545440450310707, + -0.005951807834208012, + -0.01651741936802864, + -0.0015011342475190759, + 0.016754701733589172, + -0.01577921211719513, + -0.0134789003059268, + 0.05568202957510948, + 0.006271478720009327, + -0.01755882240831852, + 0.008100522682070732, + -0.011541102081537247, + 0.004920293111354113, + 0.006920706946402788, + 0.021104859188199043, + 0.019852541387081146, + 0.016385596245527267, + -0.03416851907968521, + 0.00895078107714653, + 0.0029511870816349983, + 0.030899308621883392, + 0.0005940273404121399, + -0.0022063872311264277, + 0.0005462414701469243, + 0.006670243106782436, + -0.015805575996637344, + -0.020551202818751335, + -0.003763546235859394, + -0.016253774985671043, + 0.010328331030905247, + 0.00039773466414771974, + -0.017229264602065086, + -0.030292922630906105, + 0.00868054386228323, + 0.011139042675495148, + -0.043053388595581055, + -0.009201244451105595, + 0.02325357496738434, + 0.014355523511767387, + 0.03042474575340748, + 0.010980854742228985, + -0.01657014898955822, + 0.012219990603625774, + 0.02902742102742195, + 0.005757369101047516, + -0.012872514314949512, + -0.006867977324873209, + -0.0144214341416955, + -0.006350572220981121, + 0.007685279939323664, + -0.009537393227219582, + -0.0008453148766420782, + 0.01501463819295168, + 0.01481690350919962, + 0.001175696263089776, + -0.017743373289704323, + -0.0023942349944263697, + 0.006014423910528421, + -0.0022591163869947195, + -0.010736982338130474, + -0.023991784080863, + -0.030978402122855186, + -0.0038063887041062117, + -0.005595885682851076, + -0.015423289500176907, + -0.03026655688881874, + -0.009563758037984371, + 0.006439552642405033, + 0.0004984556580893695, + -0.013004337437450886, + -0.010545838624238968, + -0.027920108288526535, + -0.004610508680343628, + -8.043261914281175e-5, + 0.016926070675253868, + -0.006119882222265005, + -0.01746654510498047, + 0.007856650277972221, + 0.008561902679502964, + 0.015990128740668297, + 0.00218167039565742, + -0.014645533636212349, + 0.018916597589850426, + 0.02349085547029972, + -0.01555511262267828, + 0.017440181225538254, + -0.03764864429831505, + -0.02107849530875683, + 0.005098253954201937, + -0.015594659373164177, + 0.01968117244541645, + -0.015120096504688263, + -0.00024984576157294214, + -0.000829248980153352, + 0.0037800241261720657, + 0.005721117369830608, + -0.023411761969327927, + -0.008568493649363518, + -0.004284246824681759, + 0.02086757868528366, + -0.001041401526890695, + -0.011607013642787933, + -0.016042856499552727, + -0.003638314316049218, + -0.005510200746357441, + -0.005355308763682842, + 0.01691288873553276, + -0.013630496338009834, + -0.005757369101047516, + 0.030872942879796028, + -0.017084259539842606, + 0.025191372260451317, + -0.01130382064729929, + -0.010374468751251698, + 0.018903415650129318, + -0.023807231336832047, + 0.004663238301873207, + 0.008891460485756397, + -0.0050125690177083015, + -0.032085712999105453, + -0.022528547793626785, + -0.004752218723297119, + -0.010954489931464195, + -0.03155842423439026, + -0.0009862007573246956, + 0.015845123678445816, + 0.004949952941387892, + 0.005582703277468681, + -0.010842440649867058, + -0.03382577747106552, + -0.0003223483799956739, + 0.0235435850918293, + -0.009161697700619698, + -0.0030731232836842537, + 0.00902328360825777, + -0.0038294577971100807, + -0.013999600894749165, + 0.017703827470541, + 0.004142537247389555, + -0.0161746796220541, + -0.008166434243321419, + 0.02181670442223549, + 0.006657060701400042, + 0.01964162476360798, + -0.004205153323709965, + -0.016701972112059593, + -0.010196507908403873, + 0.011007219552993774, + -0.011910206638276577, + 0.005444289185106754, + 0.004126059357076883, + -0.0029511870816349983, + 0.007803920656442642, + -0.011752018705010414, + 0.01597694493830204, + 0.021684881299734116, + 0.004495163913816214, + 0.021526694297790527, + -0.0021997960284352303, + 0.003293926827609539, + -0.005025751423090696, + -0.005025751423090696, + 0.0038360487669706345, + 0.009392387233674526, + -0.011059948243200779, + 0.007065712008625269, + -0.011073131114244461, + 0.0029380046762526035, + -0.010077867656946182, + -0.0010669422335922718, + -0.03298211097717285, + 0.005477244965732098, + 0.0032148330938071012, + -0.008739863522350788, + 0.0013437705347314477, + 0.0008502582786604762, + 0.011857477948069572, + 0.0018125660717487335, + -0.01264182385057211, + -0.02679961360991001, + -0.0009944397024810314, + -0.005035637877881527, + -0.024914544075727463, + 0.04036419838666916, + -0.02528364770114422, + 0.02665460668504238, + -0.015713300555944443, + -0.012773646973073483, + -0.013472309336066246, + -0.006980027072131634, + -0.008001655340194702, + 0.011013810522854328, + 0.0037569550331681967, + -0.010255828499794006, + -0.010875396430492401, + -0.010124005377292633, + -0.01736108772456646, + 0.011191771365702152, + -0.04405524209141731, + -0.009748309850692749, + 0.0185079462826252, + 0.02028755657374859, + 0.01231226697564125, + -0.02329312078654766, + -0.018428852781653404, + 0.003414215287193656, + -0.0172556284815073, + 0.014315975829958916, + 0.0020449040457606316, + -0.011811339296400547, + -0.017150171101093292, + 0.006403301376849413, + -0.013261392712593079, + 0.001978992484509945, + -0.028447400778532028, + 0.013656861148774624, + -0.0010537599446251988, + 0.009827403351664543, + 0.015713300555944443, + -0.0031225569546222687, + 0.018217936158180237, + 0.03071475587785244, + 0.01355140283703804, + 0.0016140076331794262, + 0.029791994020342827, + -0.008515764959156513, + -0.003437284380197525, + -0.018270665779709816, + -0.018336577340960503, + -0.01746654510498047, + 0.003862413577735424, + 0.00942534301429987, + -0.007869832217693329, + 0.0051608700305223465, + 0.005355308763682842, + 0.025362743064761162, + 0.01330753043293953, + 0.018877051770687103, + 0.014724627137184143, + 0.006762519013136625, + -0.009675807319581509, + 0.003565811784937978, + -0.016556967049837112, + -0.005157574079930782, + 0.00035365635994821787, + 0.009913088753819466, + -0.0041689020581543446, + -0.005803506821393967, + -0.0332457572221756, + -0.007263446692377329, + 0.0022179216612130404, + -0.012872514314949512, + -0.0002628220827318728, + -0.004554484039545059, + 0.00823893677443266, + -0.016926070675253868, + -0.02424224652349949, + -0.021935345605015755, + 0.0010867157252505422, + 0.012345222756266594, + 0.02136850543320179, + -0.0015299705555662513, + 0.015317831188440323, + 0.008232345804572105, + -0.002712257904931903, + -0.0172556284815073, + -0.005009273532778025, + 0.0013207015581429005, + -0.011336776427924633, + 0.02581094019114971, + -0.022291267290711403, + -0.01736108772456646, + 0.02205398492515087, + 0.027867378666996956, + -0.00412935484200716, + -0.005938625428825617, + -0.0314529649913311, + -0.015251919627189636, + 0.01805974915623665, + -0.021974891424179077, + 0.010084458626806736, + 0.02879014052450657, + -0.021355323493480682, + 0.019905271008610725, + 0.0063307988457381725, + 0.041181501001119614, + 0.0022360472939908504, + 0.026338232681155205, + -0.016530603170394897, + -0.003176933852955699, + 0.011705880984663963, + -0.0015629262197762728, + 0.008074157871305943, + -0.007138214539736509, + 0.00815984234213829, + 0.02002391219139099, + 0.004683011677116156, + -0.019114332273602486, + 0.018626587465405464, + 0.006699903402477503, + 0.01073039136826992, + -0.001055407803505659, + 0.009656033478677273, + -0.015199190005660057, + 0.026918252930045128, + 0.004495163913816214, + -0.004485276993364096, + -0.001944389077834785, + -0.015093731693923473, + 0.0072304909117519855, + 0.015897851437330246, + 0.03801774978637695, + 0.03229663148522377, + 0.033403944224119186, + -0.015739664435386658, + -0.019694354385137558, + -0.030134733766317368, + -0.00204655178822577, + -0.009511028416454792, + 0.025890033692121506, + -0.016701972112059593, + 0.019852541387081146, + -0.0034076240845024586, + 0.02424224652349949, + 0.018573857843875885, + 0.0024238950572907925, + 0.0016774474643170834, + 0.008489400148391724, + -0.0013528333511203527, + -0.02562638744711876, + -0.017347905784845352, + -0.01016355212777853, + 0.0048247212544083595, + 0.009016692638397217, + 0.024070877581834793, + 0.003961280919611454, + -0.010308557190001011, + -0.029370160773396492, + -0.005259736906737089, + 0.019918452948331833, + -0.0033005180303007364, + -0.010282193310558796, + 0.021197136491537094, + -0.03205934911966324, + 0.03472217544913292, + -0.02942289039492607, + 0.0234513096511364, + -0.008080748841166496, + 0.049881815910339355, + 0.014856450259685516, + 0.008957372047007084, + -0.009642851538956165, + -0.013103204779326916, + -0.020366651937365532, + 0.015436471439898014, + -0.01167292520403862, + -0.0037207037676125765, + -0.029712900519371033, + 0.002507932251319289, + 0.01345253549516201, + -0.008265301585197449, + 0.004699489567428827, + 0.010796302929520607, + 0.02715553529560566, + 0.02952834777534008, + 0.018389306962490082, + -0.02160578779876232, + -0.0017021642997860909, + 0.009188062511384487, + -0.012655006721615791, + -0.006597740575671196, + -0.017624733969569206, + 0.001094954670406878, + -0.014144605956971645, + -0.0009062830358743668, + -0.005170756485313177, + 0.02210671454668045, + -0.0035031959414482117, + 0.001881773117929697, + -0.010769938118755817, + 0.004330385010689497, + 0.047746285796165466, + -0.008746455423533916, + 0.003401033114641905, + -0.03843958303332329, + 0.004949952941387892, + -0.02679961360991001, + -0.014698263257741928, + 0.003786615328863263, + -0.0006286308635026217, + -0.011066539213061333, + -0.024545440450310707, + -0.028210118412971497, + 0.000777755631133914, + 0.0035196735989302397, + 0.0003355306980665773, + 0.019074786454439163, + 0.026325050741434097, + 0.005384969059377909, + 0.028157388791441917, + -0.01513327844440937, + -0.003869004547595978, + 0.02072257362306118, + -0.0033450082410126925, + 0.033852141350507736, + 0.013841413892805576, + 0.0025540704373270273, + 0.026628242805600166, + -0.04263155162334442, + -0.026694154366850853, + 0.0036844525020569563, + 0.02463771589100361, + 0.002216273918747902, + 0.021539876237511635, + -0.04268428310751915, + -0.00416560610756278, + 0.006940480321645737, + -0.0060935174115002155, + -0.009801038540899754, + -0.012780238874256611, + -0.01840248890221119, + 0.0014813607558608055, + -0.030345650389790535, + 0.0003301753895357251, + 0.0031983552034944296, + 0.019470255821943283, + 0.0031901162583380938, + -0.006933888886123896, + -0.017281994223594666, + -0.03031928651034832, + -0.0055859992280602455, + 0.01513327844440937, + 0.020841214805841446, + 0.017967473715543747, + -0.020340286195278168, + 0.023649044334888458, + -0.021922161802649498, + 0.014395070262253284, + 0.019799811765551567, + 0.01885068602859974, + 0.025244101881980896, + 0.03754318505525589, + -0.022383542731404305, + -0.005882600788027048, + 0.0008749750559218228, + 0.017572004348039627, + 0.004847790114581585, + 0.0038360487669706345, + -0.01342617068439722, + -0.01647787354886532, + 0.0046863071620464325, + 0.0190484207123518, + 0.001273739617317915, + 0.01889023371040821, + 0.0011748723918572068, + 0.007902787998318672, + -0.011488373391330242, + -0.0028803322929888964, + 0.01944389007985592, + -0.015317831188440323, + 0.010849031619727612, + -0.007487545721232891, + 0.0068547953851521015, + 0.014105059206485748, + -0.005098253954201937, + -0.004287542775273323, + -0.00818620715290308, + 0.005787028931081295, + -0.02126304805278778, + -0.004610508680343628, + -0.009471481665968895, + 0.005335535388439894, + 0.021698063239455223, + 0.016332868486642838, + -0.009010100737214088, + 0.020893942564725876, + -0.020907126367092133, + -0.011119268834590912, + 0.011633378453552723, + -0.0065285335294902325, + 0.016701972112059593, + -0.010618341155350208, + 0.037068624049425125, + -0.009346249513328075, + -0.014236882328987122, + 0.00895078107714653, + 0.006083630956709385, + -0.003499900223687291, + 0.0005750777781940997, + -0.002474976470693946, + -0.0037701374385505915, + 0.0002587026101537049, + 0.05238645523786545, + -0.0029841428622603416, + 0.02082803100347519, + 0.010058093816041946, + -0.0011163759045302868, + -0.01342617068439722, + 0.007283220067620277, + -0.01160042267292738, + 0.0007513909949921072, + 0.0016856864094734192, + -0.0056189545430243015, + 0.004132650792598724, + 0.012892288155853748, + -0.005157574079930782, + -0.04616440832614899, + 0.009985591284930706, + 0.023306304588913918, + 0.006607627030462027, + -0.002662824233993888, + 0.0071250321343541145, + 0.013907324522733688, + 0.005421220324933529, + -0.0018224527593702078, + -0.0021305889822542667, + -0.011073131114244461, + 0.021671699360013008, + -0.005174051970243454, + -0.003074771026149392, + 0.022436272352933884, + 0.0028572631999850273, + 0.009267156012356281, + -0.012332039885222912, + -0.0035328560043126345, + -0.017690645530819893, + 0.018929781392216682, + 0.005918852053582668, + 0.01894296333193779, + -0.013136160559952259, + -0.0018801253754645586, + 0.027814649045467377, + -0.008173025213181973, + -0.013696407899260521, + 0.00640659686177969, + 0.0006673538591712713, + -0.027076441794633865, + 0.004201857838779688, + -0.026694154366850853, + 0.00048527336912229657, + -0.009899905882775784, + 0.009913088753819466, + -0.0005470653995871544, + -0.01606922224164009, + 0.018376125022768974, + 0.007566639222204685, + 0.02502000331878662, + -0.005404742434620857, + 0.015317831188440323, + 0.015278284437954426, + -0.004267768934369087, + 0.013986418955028057, + -0.023807231336832047, + -0.00828507449477911, + 0.014065512455999851, + -0.01377550233155489, + -0.02507273107767105, + -0.012345222756266594, + -0.009985591284930706, + 0.005157574079930782, + 0.0062912520952522755, + -0.02086757868528366, + -0.009076012298464775, + -0.015370559878647327, + 0.025876851752400398, + -0.003450466552749276, + -0.006769110448658466, + 0.009886723943054676, + 0.02794647216796875, + 0.029712900519371033, + 0.033852141350507736, + 0.00034438754664734006, + -0.001997118117287755, + -0.0035097869113087654, + -0.005187234375625849, + 0.0011196715058758855, + 0.004284246824681759, + -0.007302993442863226, + 0.04347522184252739, + -0.054574716836214066, + 0.01009104959666729, + -0.009801038540899754, + 0.008535537868738174, + -0.001541504985652864, + 0.0033944419119507074, + 0.012575913220643997, + -0.007553457282483578, + -0.004940066486597061, + 0.0026430508587509394, + 0.006571375764906406, + 0.00784346740692854, + -0.0036086542531847954, + 0.01784883253276348, + -0.0055794077925384045, + 0.011494964361190796, + 0.009728536009788513, + -0.015660570934414864, + -0.010440380312502384, + 0.0230031106621027, + -0.005526678636670113, + -0.024097241461277008, + -0.013340486213564873, + -0.008245527744293213, + -0.025217736139893532, + 0.006900933105498552, + 0.01040742453187704, + -0.019562531262636185, + 0.004557779524475336, + 0.015265101566910744, + 0.006334094330668449, + -0.0062912520952522755, + -0.0037965020164847374, + -0.006940480321645737, + 0.001211123657412827, + -0.0035196735989302397, + -0.027023712173104286, + 0.017400633543729782, + 0.016003310680389404, + -0.015278284437954426, + -0.004267768934369087, + 0.01028878428041935, + 0.008390532806515694, + 0.010928125120699406, + -0.0026760066393762827, + 0.037068624049425125, + -0.012747283093631268, + 0.005384969059377909, + 0.0005466534639708698, + -0.008265301585197449, + 0.023978600278496742, + -0.00520371226593852, + -0.022423090413212776, + 0.02602185681462288, + 0.0010035025188699365, + 0.016385596245527267, + 0.012378178536891937, + 0.02320084534585476, + -0.008739863522350788, + -0.009431934915482998, + -0.018521130084991455, + 0.004231517668813467, + -0.024308158084750175, + -0.0014022670220583677, + -0.01637241430580616, + -0.003967871889472008, + -0.014105059206485748, + -0.008107113651931286, + 0.003226367523893714, + -0.02447952888906002, + -0.0011732245329767466, + -0.024255428463220596, + 0.014803721569478512, + 0.018982509151101112, + -0.014685080386698246, + -0.007217308506369591, + -0.0006418131524696946, + -0.008812366984784603, + -0.001546448445878923, + 0.01038765162229538, + 0.020696207880973816, + 0.0057672555558383465, + -0.0012943369802087545, + -0.014882815070450306, + 0.004930179566144943, + 0.04381795972585678, + -0.0285792239010334, + -0.014685080386698246, + -0.003030280815437436, + 0.011910206638276577, + -0.008891460485756397, + -0.024097241461277008, + 0.008832139894366264, + -0.00704593863338232, + 0.013643679209053516, + 0.020959854125976562, + -0.004903815221041441, + -0.005513496231287718, + -0.00432708952575922, + -0.00600783247500658, + -0.014632351696491241, + 0.01707107573747635, + -0.01962844282388687, + -0.008673952892422676, + 0.029791994020342827, + 0.011824522167444229, + 0.002694132272154093, + -0.006960253696888685, + -0.017387451604008675, + 0.022924017161130905, + 0.01948343776166439, + 0.027129169553518295, + 0.013564584776759148, + 0.003714112564921379, + 0.005295988637953997, + 0.021144406870007515, + -0.000632338400464505, + -0.007111850194633007, + -0.004076625686138868, + 0.0004173021297901869, + -0.006940480321645737, + -0.016530603170394897, + 0.018534312024712563, + -0.022185808047652245, + -0.011765201576054096, + 0.0020679731387645006, + 0.0042117442935705185, + -0.0012045325711369514, + -0.01221339963376522, + 0.008772819302976131, + 0.02092030830681324, + 0.012134306132793427, + -0.0047357408329844475, + 0.0010570555459707975, + -0.028157388791441917, + -0.001957571366801858, + -0.004116172902286053, + 0.009431934915482998, + 0.0074611809104681015, + 0.00687456876039505, + -0.004979613237082958, + 0.03443216532468796, + -0.016253774985671043, + 0.01829702965915203, + -0.013880960643291473, + 0.019470255821943283, + 0.0224626362323761, + -0.010031729005277157, + 0.022185808047652245, + 0.019325248897075653, + -0.036277685314416885, + 0.0036844525020569563, + 0.004287542775273323, + -0.02586366981267929, + 0.016939254477620125, + -0.004287542775273323, + -0.0031703428830951452, + -0.00750731909647584, + 0.001045520999468863, + 0.0005911436746828258, + -0.011639969423413277, + 0.010684252716600895, + -2.233524173789192e-5, + -0.032085712999105453, + 0.01631968468427658, + -0.009221017360687256, + -0.010374468751251698, + 0.02244945429265499, + -0.007922561839222908, + 0.0017763146897777915, + 0.027972837910056114, + -0.0018998987507075071, + -0.02359631471335888, + 0.004999386612325907, + 0.009735127910971642, + -0.01572648249566555, + 0.0015826997114345431, + 0.02156624011695385, + -0.02126304805278778, + -0.023174481466412544, + 0.006311025470495224, + 0.001693925354629755, + -0.007922561839222908, + 0.04387069121003151, + -0.003384555224329233, + 0.0010175086790695786, + 0.018666135147213936, + 0.005124618764966726, + 0.003298870287835598, + 0.0036712700966745615, + -0.00667683407664299, + -0.0007023693178780377, + 0.022976746782660484, + 0.009662624448537827, + 0.005961694288998842, + 0.017730191349983215, + -0.006746041122823954, + -0.000654583505820483, + -0.028500128537416458, + 0.018573857843875885, + 0.009998773224651814, + 0.008522355929017067, + 0.0088519137352705, + 0.009056239388883114, + -0.012806602753698826, + 0.007922561839222908, + -0.021698063239455223, + 0.002964369487017393, + 0.018428852781653404, + -0.0025310013443231583, + -0.019852541387081146, + 0.01815202459692955, + -0.02676006592810154, + -0.006508759688585997, + -0.004505050368607044, + -0.03274482861161232, + -0.018376125022768974, + -0.020010728389024734, + 0.0049169971607625484, + 0.04426615685224533, + 0.010539247654378414, + 0.000790937920100987, + 0.01352503802627325, + 0.002738622482866049, + -0.018270665779709816, + -0.016293320804834366, + -0.0025375925470143557, + -0.0012770352186635137, + -0.004079921171069145, + 0.003293926827609539, + 0.008278483524918556, + 0.01318229828029871, + 0.0028407853096723557, + 0.013986418955028057, + -0.003918438218533993, + 0.012351813726127148, + -0.020208463072776794, + 0.002463442040607333, + -0.01592421717941761, + 0.020538020879030228, + -0.008344395086169243, + -0.0044061834923923016, + -0.021038947626948357, + 0.03619858995079994, + 0.012971381656825542, + -0.021394871175289154, + -0.00436334079131484, + -0.018072931095957756, + 0.0009738422813825309, + -0.014447798952460289, + 0.01018991693854332, + -0.009313293732702732, + -0.008575085550546646, + -0.017782920971512794, + -0.004640168976038694, + -0.007731418125331402, + -0.004745627287775278, + 0.0018998987507075071, + 0.012826376594603062, + -0.008575085550546646, + 0.00011380031355656683, + 0.00833121221512556, + 0.00818620715290308, + -0.006762519013136625, + 0.010110822506248951, + 0.016688790172338486, + 0.011481782421469688, + -0.0052432590164244175, + -0.01513327844440937, + 0.02828921191394329, + 0.010598568245768547, + -0.009787856601178646, + 0.005470653995871544, + -0.0011073130881413817, + 0.01291206106543541, + -0.00815984234213829, + -0.008614632301032543, + 0.007593004032969475, + -0.014711445197463036, + -0.003565811784937978, + -0.00999218225479126, + -0.031031129881739616, + 0.0006158605101518333, + 0.015120096504688263, + 0.0003890837833750993, + -0.01691288873553276, + 0.002860558684915304, + -0.01055902149528265, + 0.016491055488586426, + -0.017334721982479095, + 0.010295375250279903, + -0.01567375287413597, + -0.004640168976038694, + 0.027524638921022415, + 0.004976317752152681, + 0.007111850194633007, + -0.025850487872958183, + -0.02359631471335888, + -0.005174051970243454, + 0.009082603268325329, + 0.018086113035678864, + 0.0314529649913311, + 0.001707107643596828, + -0.029686536639928818, + 0.009471481665968895, + 0.004099695011973381, + 0.0001489187852712348, + -0.03150569275021553, + 0.043343398720026016, + -0.006452735047787428, + -0.0021075198892503977, + -0.005711230915039778, + 0.005497018340975046, + 0.007744600530713797, + -0.010545838624238968, + 0.03669951856136322, + -0.008304848335683346, + 0.001394028076902032, + -0.01883750408887863, + 0.0020564384758472443, + 0.004505050368607044, + 0.01513327844440937, + -0.0053981514647603035, + 0.011139042675495148, + 0.007520501501858234, + -0.01805974915623665, + -0.004205153323709965, + 0.018376125022768974, + -0.0055365655571222305, + -0.01357776764780283, + 0.011079722084105015, + 0.020340286195278168, + -0.0018092704704031348, + 0.0037800241261720657, + -0.01809929497539997, + -0.004366636276245117, + 0.017993837594985962, + 0.010242645628750324, + -0.022383542731404305, + 0.01809929497539997, + 0.012773646973073483, + -0.0008300728513859212, + -0.01204202976077795, + -0.021342141553759575, + -0.0205775685608387, + -0.029264703392982483, + 0.0003046346828341484, + -0.014948726631700993, + -0.008904642425477505, + 0.017703827470541, + -0.0061923847533762455, + -0.004623691085726023, + 0.019549349322915077, + -0.01493554376065731, + -0.00935284048318863, + -0.0134789003059268, + 0.002043256303295493, + 0.0011476838262751698, + -0.01755882240831852, + 0.001998766092583537, + 0.0022821854799985886, + -0.0013338838471099734, + -0.00757982162758708, + -0.008271892555058002, + 0.006531829014420509, + -0.020221645012497902, + -0.003714112564921379, + -0.005075185094028711, + -0.004017305560410023, + 0.004554484039545059, + -0.003984349779784679, + 0.008001655340194702, + -0.039204154163599014, + -0.000453553453553468, + -0.008199390023946762, + -0.00493347505107522, + -0.001693925354629755, + -0.0020531429909169674, + -0.004584144335240126, + 0.02645687386393547, + -0.0028671498876065016, + -0.013057067058980465, + 0.01498827338218689, + -0.026641424745321274, + 0.022093532606959343, + 0.005417924840003252, + -7.384146738331765e-5, + 0.01298456359654665, + 0.033061206340789795, + 0.003499900223687291, + 0.009451707825064659, + -0.00616931589320302, + -0.0019246155861765146, + -0.010414015501737595, + 0.009286928921937943, + -0.008713499642908573, + -0.0010784767800942063, + 0.022001255303621292, + -0.0083114393055439, + 0.01028878428041935, + 0.0038953691255301237, + -0.011257682926952839, + -0.0007159636006690562, + 0.0045874398201704025, + 0.022238537669181824, + 0.003918438218533993, + 0.003181877313181758, + 0.014447798952460289, + 0.007316175848245621, + 0.030978402122855186, + 0.0134789003059268, + -0.006927297916263342, + 0.001586819184012711, + 0.012832967564463615, + 0.011890433728694916, + 0.005513496231287718, + -0.0024107128847390413, + 0.004577553365379572, + -0.0034834223333746195, + -0.00246673752553761, + 0.018481582403182983, + 0.021632151678204536, + 0.0018175094155594707, + -0.00325273210182786, + 0.0034537622705101967, + -0.016530603170394897, + -0.009636260569095612, + -0.00670319888740778, + 0.021684881299734116, + -0.006614218465983868, + 0.002095985459163785, + -0.0004350158560555428, + 0.006119882222265005, + -0.02418951690196991, + -0.030398380011320114, + -0.002685893326997757, + -0.004956544376909733, + 0.0016749758506193757, + -0.007968699559569359, + 0.007731418125331402, + 0.008594858460128307, + -0.00670319888740778, + -0.009662624448537827, + -0.0009169936529360712, + 0.02805193141102791, + -0.008047793060541153, + -0.013696407899260521, + 0.010275601409375668, + 0.023965418338775635, + 0.010638114996254444, + 0.01080289389938116, + 0.0007761078304611146, + -0.008001655340194702, + 0.017005164176225662, + 0.005157574079930782, + 0.01587148755788803, + 0.0038854824379086494, + -0.015489201061427593, + -0.005704639479517937, + 0.004940066486597061, + 0.0015406811144202948, + -0.01637241430580616, + -0.03477490320801735, + -0.0028226596768945456, + 0.00422822218388319, + 0.014579622074961662, + -0.003572402987629175, + 0.03482763096690178, + 0.002099280944094062, + 0.017005164176225662, + -0.021988073363900185, + -0.002610095078125596, + 0.0345112569630146, + 0.005559634417295456, + -0.007204126100987196, + 0.006515351124107838, + -0.0059122610837221146, + -0.001251494511961937, + 0.0037108170799911022, + -0.0149619085714221, + -0.016794247552752495, + 0.004379818681627512, + -0.004198561888188124, + -0.025191372260451317, + 0.007059121038764715, + -0.005157574079930782, + 0.03285028785467148, + 0.004946657456457615, + 0.011982709169387817, + -0.00791596993803978, + 0.0007279100245796144, + 0.015700116753578186, + 0.010414015501737595, + -0.0013602484250441194, + -0.004307316150516272, + -0.004976317752152681, + 0.014975091442465782, + 0.005684866104274988, + 0.005556338932365179, + 0.020643480122089386, + -0.007316175848245621, + 0.007349131628870964, + -0.003549333894625306, + 0.017637915909290314, + 0.0008098874823190272, + -0.010526065714657307, + 0.003961280919611454, + 0.006980027072131634, + 0.01555511262267828, + 0.00962307769805193, + 0.0036580879241228104, + -0.033403944224119186, + -0.015766028314828873, + -0.003539447207003832, + -0.0046863071620464325, + 0.004004123155027628, + -0.0015637502074241638, + -0.002562309382483363, + 0.0031176134943962097, + -0.0007740480941720307, + 0.0031604559626430273, + 0.010783120058476925, + -0.011297229677438736, + 0.0018257483607158065, + -0.022594459354877472, + 0.02201443910598755, + -0.00811370462179184, + 0.027129169553518295, + 0.004557779524475336, + 0.011020401492714882, + 0.008298257365822792, + 0.020103005692362785, + 0.0073623135685920715, + 0.030503839254379272, + 0.014671898446977139, + -0.0009845528984442353, + -0.012655006721615791, + -0.009609895758330822, + -0.0017680757446214557, + 0.01189702469855547, + -0.0070854853838682175, + 0.02101258374750614, + 0.007388678379356861, + 0.0056749796494841576, + -0.004930179566144943, + -0.021671699360013008, + -0.023069022223353386, + -0.005589294712990522, + -0.004999386612325907, + -0.004620395600795746, + -0.012694553472101688, + 0.007691871374845505, + -0.00011256447032792494, + -0.0031621039379388094, + 0.0224626362323761, + -0.006350572220981121, + -0.006172611378133297, + 0.011949753388762474, + 0.0009219369967468083, + 0.006788883823901415, + -0.016530603170394897, + 0.011560875922441483, + -0.004149128682911396, + -0.011171998456120491, + 0.028104661032557487, + -2.006953400268685e-5, + 0.008568493649363518, + 0.009807630442082882, + -0.03121568262577057, + 0.0020762120839208364, + -0.014474163763225079, + 0.028315577656030655, + 0.0002477860252838582, + -0.01090176124125719, + -0.018020201474428177, + -0.012931834906339645, + 0.02699734829366207, + -0.014078694395720959, + -0.013412988744676113, + 0.0161746796220541, + -0.005595885682851076, + -0.018969327211380005, + 0.005427811294794083, + -0.013511856086552143, + 0.011837704107165337, + -0.020999401807785034, + 0.005183938890695572, + -0.0001080330548575148, + 0.03353576734662056, + -0.008463035337626934, + -0.0265096016228199, + 0.027709191665053368, + 0.018165206536650658, + 0.02467726357281208, + -0.007447998505085707, + 0.021236682310700417, + 0.004890632815659046, + -1.3658612260769587e-5, + -0.008733272552490234, + -0.011455417610704899, + -0.02230444923043251, + 0.001140268868766725, + -0.013050475157797337, + -0.024848632514476776, + -0.0051542785950005054, + -0.009392387233674526, + -0.008977144956588745, + -0.005052115768194199, + 0.006439552642405033, + 0.012022255919873714, + -0.0068482039496302605, + -0.01666242443025112, + -0.0028440807946026325, + -0.009873542003333569, + 0.01120495330542326, + 0.006156133487820625, + -0.007039347197860479, + 0.0068547953851521015, + -0.022673552855849266, + 0.00046220433432608843, + 0.021394871175289154, + 0.005417924840003252, + -0.0016156554920598865, + -0.0008906290167942643, + -0.0026381073985248804, + 0.00043954726424999535, + 0.01987890526652336, + 0.007823694497346878, + -0.0161746796220541, + -0.009174879640340805, + 0.01036128681153059, + -0.008818957954645157, + -0.0029561305418610573, + 0.007197535131126642, + 0.0034966047387570143, + -0.010203098878264427, + 0.02037983387708664, + 0.002471680985763669, + -0.03282392397522926, + -0.00031452139955945313, + 0.002186613855883479, + 0.004116172902286053, + -0.013867777772247791, + 0.035539478063583374, + 0.0032329587265849113, + 0.0013322359882295132, + 0.012648415751755238, + -0.018679317086935043, + -0.0035559250973165035, + 0.0011946457671001554, + 0.009952635504305363, + -0.024057695642113686, + 0.023279938846826553, + -0.015001455321907997, + -0.01310979574918747, + -0.001403090893290937, + 0.004419365432113409, + 0.03437943384051323, + -0.007401860784739256, + -0.027023712173104286, + -0.0008078277460299432, + 0.007098667789250612, + 0.03427397459745407, + -0.023424943909049034, + -0.0015077254502102733, + 0.01641196198761463, + -0.007586412597447634, + -0.003440579865127802, + -0.004116172902286053, + -0.028895597904920578, + -0.011086313053965569, + 0.0033038135152310133, + -0.010275601409375668, + -0.0117256548255682, + 0.011712471954524517, + -0.005948512349277735, + -0.0026265729684382677, + -0.004478686023503542, + 0.018376125022768974, + -0.0018554085399955511, + -0.009201244451105595, + 0.00583646260201931, + 0.03337758034467697, + -0.0007872303831391037, + 0.011191771365702152, + -0.010031729005277157, + -0.016530603170394897, + 0.001934502273797989, + -0.0211180429905653, + -0.020854396745562553, + -0.018784774467349052, + 0.011211545206606388, + 0.028131024911999702, + -0.00781710259616375, + -0.009952635504305363, + -0.016504237428307533, + 0.0024700332432985306, + -0.014434617012739182, + 0.014197335578501225, + 0.007672097533941269, + -0.0012078280560672283, + 0.011448826640844345, + 0.02325357496738434, + 0.02379404939711094, + -0.004551188554614782, + -0.013202072121202946, + 0.014856450259685516, + 0.02453225664794445, + -0.0030813622288405895, + 0.007691871374845505, + -0.020208463072776794, + 0.014777356758713722, + -0.008364167995750904, + 0.013670044019818306, + -0.011086313053965569, + 0.02140805311501026, + -0.02215944416821003, + -0.016530603170394897, + 0.007738009095191956, + -0.00671308534219861, + 0.001269620144739747, + 0.03021382912993431, + 0.013063658028841019, + -0.000991967972368002, + 0.004534710664302111, + 0.0010957785416394472, + 0.0027518048882484436, + 0.015317831188440323, + -0.006090221926569939, + -0.002351392526179552, + 0.011692699044942856, + -0.01040742453187704, + -0.009847177192568779, + -0.0171633530408144, + -0.006867977324873209, + 0.014553257264196873, + -0.01555511262267828, + -0.016398780047893524, + 0.007830285467207432, + 0.003727294970303774, + 0.01476417388767004, + -0.004551188554614782, + -0.00767868896946311, + -0.01133018545806408, + 0.0195888951420784, + -0.006933888886123896, + 0.011099494993686676, + 0.005424515809863806, + -0.01355140283703804, + -0.010743573307991028, + 0.029449254274368286, + 0.024967273697257042, + -0.002888571238145232, + 0.0037207037676125765, + -0.018534312024712563, + 0.010414015501737595, + 0.03556584194302559, + 0.02181670442223549, + 0.004145832732319832, + 0.012378178536891937, + -0.01028878428041935, + 0.004066739231348038, + -0.017479727044701576, + -0.012193625792860985, + 0.025929581373929977, + 0.011277456767857075, + 0.0030006207525730133, + -0.006492281798273325, + -0.010591977275907993, + -0.011481782421469688, + -0.003714112564921379, + -0.00045396541827358305, + -0.024993637576699257, + 0.013683225959539413, + 0.011956344358623028, + -0.008126887492835522, + 0.0036679746117442846, + 0.021922161802649498, + -0.0011064892169088125, + -0.01696561835706234, + -0.020696207880973816, + -0.007705053314566612, + -0.011152224615216255, + -0.013894142583012581, + -0.00438970560207963, + 0.028552858158946037, + 0.004221631214022636, + -0.01003831997513771, + 0.015001455321907997, + -0.008271892555058002, + -0.017717009410262108, + -0.005226781591773033, + -0.0042611779645085335, + 0.01011741440743208, + -0.016491055488586426, + 0.0025277056265622377, + 0.009036465547978878, + -0.02947562001645565, + -0.013867777772247791, + 0.011923388577997684, + 0.00730958441272378, + -0.01476417388767004, + 0.027814649045467377, + -0.002435429720208049, + 0.009108968079090118, + 0.013419579714536667, + -0.005895783193409443, + -0.008021428249776363, + -0.0052992841228842735, + 0.018877051770687103, + 0.003414215287193656, + 0.004683011677116156, + 0.0034834223333746195, + -0.00757982162758708, + 0.00808733981102705, + -0.003109374549239874, + 0.009267156012356281, + 0.011178589425981045, + 0.012806602753698826, + -0.027392815798521042, + -0.00476210517808795, + -0.017097441479563713, + 0.013894142583012581, + -0.00875304639339447, + -0.005661797244101763, + 0.017796102911233902, + 0.017914744094014168, + 0.009478072635829449, + 0.0028374898247420788, + -0.0076589155942201614, + -0.0025936171878129244, + 0.03155842423439026, + 0.008166434243321419, + -0.010176734067499638, + -0.007302993442863226, + -0.004857677035033703, + 0.014856450259685516, + 0.023464491590857506, + 0.006063857115805149, + -0.007039347197860479, + -0.005042229313403368, + 0.0007962931995280087, + 0.0027419182006269693, + 0.011198362335562706, + -0.007632550783455372, + 0.010282193310558796, + -0.021434416994452477, + -0.02715553529560566, + -0.003598767565563321, + -0.028473764657974243, + -0.005081776063889265, + -0.012154079042375088, + 0.015106914564967155, + -0.0005165813490748405, + -0.004837903659790754, + 0.008318030275404453, + -0.003058293368667364, + 0.008937598206102848, + 0.0027633393183350563, + -0.012127714231610298, + -0.009451707825064659, + -0.008832139894366264, + -0.0137491375207901, + 0.0040238965302705765, + 0.007573230657726526, + -0.0027864084113389254, + -0.00750731909647584, + -4.886719398200512e-5, + 0.020340286195278168, + -0.005411333404481411, + -0.011007219552993774, + -0.01780928485095501, + 0.00019454189168754965, + -0.0091221509501338, + 0.003223072038963437, + 0.02101258374750614, + -0.001037282170727849, + 0.023372216150164604, + 0.007830285467207432, + -0.01191679760813713, + -0.00882554892450571, + -0.02744554542005062, + 0.015067366883158684, + 0.005612363573163748, + 0.015568294562399387, + -0.008515764959156513, + 0.017875196412205696, + 0.027524638921022415, + -0.00023439773940481246, + -0.03042474575340748, + 0.000117301860882435, + -0.009385796263813972, + -0.019812995567917824, + -0.015265101566910744, + 0.021157588809728622, + 3.2344262308470206e-6, + -0.0046368734911084175, + 0.0072238994762301445, + 0.006175906863063574, + -0.00721071707084775, + 0.01162678748369217, + 0.006218749098479748, + -0.011158815585076809, + -0.015462836250662804, + -0.013643679209053516, + -0.005892487242817879, + -0.025876851752400398, + -0.012391360476613045, + 0.0008543777512386441, + 0.023728137835860252, + -0.012655006721615791, + -0.019747084006667137, + -0.02318766340613365, + 0.005170756485313177, + 0.008225753903388977, + 0.0033417127560824156, + -0.0010430493857711554, + 0.012800011783838272, + 0.0012004130985587835, + 0.027340088039636612, + -0.01923297345638275, + -0.028816504403948784, + 0.02250218391418457, + 0.007098667789250612, + -0.0067064943723380566, + -0.007006391882896423, + 0.008390532806515694, + -0.009629668667912483, + 0.00011740484478650615, + 0.022937199100852013, + 0.012127714231610298, + -0.01829702965915203, + 0.005885896272957325, + -0.019312066957354546, + 0.0028622066602110863, + 0.0009046352352015674, + -0.02987108752131462, + -0.010183325968682766, + 0.01908796839416027, + -0.01301092840731144, + 0.004564370959997177, + -0.0149619085714221, + -0.001430279342457652, + -0.002877036575227976, + 0.00818620715290308, + 0.00680206622928381, + -0.019918452948331833, + -0.006861386355012655, + 0.011752018705010414, + 0.004284246824681759, + 0.008766228333115578, + 0.01137632317841053, + 0.01858704164624214, + 0.005731004290282726, + -0.013867777772247791, + 0.03369395434856415, + -0.0067064943723380566, + -0.021500328555703163, + 0.010269010439515114, + 0.00976808276027441, + -0.004870859440416098, + 0.013973236083984375, + 0.013050475157797337, + -0.015199190005660057, + 0.02715553529560566, + -0.00610669981688261, + -0.015594659373164177, + -0.008423488587141037, + 0.02002391219139099, + -0.005731004290282726, + 0.015805575996637344, + 0.01680743135511875, + 0.034590352326631546, + 0.026193227618932724, + 0.0005202888278290629, + -0.022185808047652245, + -0.008944189175963402, + -0.01829702965915203, + 0.008344395086169243, + -0.018283847719430923, + 0.023807231336832047, + -0.01409187726676464, + 0.016794247552752495, + 0.016385596245527267, + 0.025560477748513222, + 0.012404543347656727, + 0.021671699360013008, + -0.0007921737269498408, + 0.0008358401246368885, + -0.006548306904733181, + 0.0030780667439103127, + -0.010446971282362938, + -0.018165206536650658, + 0.016675608232617378, + -0.00037507759407162666, + -0.012727509252727032, + -0.018086113035678864, + -0.00039752869633957744, + -0.006268182769417763, + -0.00031740503618493676, + 0.008990327827632427, + -0.007157987914979458, + 0.003335121553391218, + 0.020656662061810493, + 0.0149619085714221, + -0.005269623827189207, + 0.02106531336903572, + 0.0037833196111023426, + -0.001506077591329813, + -0.008561902679502964, + 0.0037075213622301817, + -0.006808657199144363, + 0.0061034043319523335, + -0.004083217121660709, + -0.0004799180605914444, + -0.0083114393055439, + -0.022568095475435257, + -0.011877250857651234, + 0.020893942564725876, + 0.012279311195015907, + -0.01328116562217474, + 0.005819984711706638, + -0.01592421717941761, + -0.005454176105558872, + -0.016754701733589172, + -0.04065420851111412, + -0.0011699290480464697, + 0.022594459354877472, + 0.016939254477620125, + -0.01775655522942543, + 0.01325480081140995, + 0.017202898859977722, + 0.005829871632158756, + -0.018916597589850426, + 0.003410919802263379, + 0.004557779524475336, + -0.026588696986436844, + 0.001693925354629755, + -0.007078894414007664, + 0.005075185094028711, + -0.0023579837288707495, + 0.024400435388088226, + -0.0007744600297883153, + -0.0025853782426565886, + 0.001939445617608726, + 0.008153251372277737, + -0.004159015137702227, + -0.00556622538715601, + 0.013037293218076229, + -0.004205153323709965, + -0.018125660717487335, + 0.010275601409375668, + -0.017123805359005928, + 0.01860022358596325, + -0.008080748841166496, + -0.008093931712210178, + 0.007428225129842758, + -0.024861814454197884, + -0.015344195067882538, + 0.006828430574387312, + 0.014197335578501225, + 0.00496972631663084, + -0.01964162476360798, + -0.022238537669181824, + -0.020986219868063927, + -0.0042183357290923595, + -0.009609895758330822, + 0.018020201474428177, + 0.010269010439515114, + 0.012635232880711555, + 0.007711644750088453, + 0.004603917710483074, + 0.008983736857771873, + -0.010466745123267174, + -0.005477244965732098, + -0.013037293218076229, + 0.00875304639339447, + 0.00021359443780966103, + 0.01241113431751728, + -0.0017285288777202368, + -0.013340486213564873, + -0.017229264602065086, + -0.004139241762459278, + -0.01476417388767004, + -0.034590352326631546, + 0.004930179566144943, + -0.0014714740682393312, + 0.0029791994020342827, + 0.0132086630910635, + 0.02092030830681324, + 0.004854381550103426, + -0.025507748126983643, + -0.007784147281199694, + -0.020999401807785034, + 0.0067163812927901745, + -0.00929352082312107, + -0.011106086894869804, + -0.010374468751251698, + -0.009979000315070152, + -0.010420607402920723, + 0.002110815607011318, + 0.005599181167781353, + 0.015937399119138718, + 0.012635232880711555, + -0.00750731909647584, + -0.020551202818751335, + 0.011363141238689423, + 0.00767868896946311, + -0.018560675904154778, + 1.697993320703972e-5, + 0.003915142733603716, + -0.017927926033735275, + 0.006357163656502962, + 0.006815248169004917, + -0.017374269664287567, + 0.009062830358743668, + 0.0018290439620614052, + -0.006900933105498552, + -0.016846977174282074, + -0.0017153465887531638, + 0.026773247867822647, + 0.01187065988779068, + 0.016504237428307533, + 0.014012783765792847, + 0.04629623144865036, + -0.006116586737334728, + 0.01301092840731144, + -0.012852741405367851, + -0.00850917398929596, + -0.00446220813319087, + 0.0088519137352705, + 0.00018609697872307152, + 0.016926070675253868, + -0.00044861010974273086, + -0.011382915079593658, + 0.017690645530819893, + -0.010743573307991028, + 0.010690843686461449, + -0.01903523877263069, + 0.014605986885726452, + -0.01345253549516201, + 0.029607443138957024, + 0.022686736658215523, + -0.019602077081799507, + -0.010677661746740341, + 0.0069932094775140285, + 0.017281994223594666, + 0.009913088753819466, + -0.011277456767857075, + 0.007632550783455372, + 0.02577139437198639, + 0.012516592629253864, + 0.02106531336903572, + -0.024453163146972656, + 0.004046965856105089, + 0.005338830873370171, + 0.019153879955410957, + -0.01845521852374077, + -0.005246554967015982, + -0.002242638496682048, + -0.01983935944736004, + -0.00808733981102705, + -0.029291067272424698, + 0.022343996912240982, + -0.009959226474165916, + 0.010723799467086792, + -0.0080412020906806, + 0.017585186287760735, + 0.0016337811248376966, + -0.026865525171160698, + -0.010954489931464195, + 0.012160670012235641, + 0.006386823486536741, + 0.007012982852756977, + -0.025850487872958183, + 0.03490672633051872, + 0.027076441794633865, + -0.019852541387081146, + -0.014671898446977139, + 0.030978402122855186, + -0.016108768060803413, + 0.005938625428825617, + 0.0074216341599822044, + -0.014184153638780117, + 0.011923388577997684, + 0.014302793890237808, + -0.020168917253613472, + -0.0011765201343223453, + -0.0019592191092669964, + -0.0028490242548286915, + -0.008535537868738174, + 0.001081772381439805, + -0.0013058714102953672, + 0.003990940749645233, + 0.0018158616730943322, + 0.008100522682070732, + -0.010947898961603642, + 0.00436334079131484, + 0.007784147281199694, + 0.046665336936712265, + 0.012450681068003178, + 0.0015489200595766306, + 0.006317616440355778, + 0.013274574652314186, + -0.02318766340613365, + 0.006222045049071312, + 0.003651496721431613, + 0.0004836255684494972, + -0.011396097019314766, + -0.004808243364095688, + 0.00202842615544796, + 0.01476417388767004, + 0.010269010439515114, + -0.014605986885726452, + -0.003964576404541731, + -0.00855531170964241, + 0.005371786653995514, + -0.004524823743849993, + -0.005810098256915808, + -0.0036152454558759928, + -0.006113290786743164, + -0.014685080386698246, + 0.011686108075082302, + 0.014645533636212349, + 0.0022442862391471863, + 0.0002028838061960414, + -0.021553058177232742, + -0.02958107739686966, + 0.0023892915342003107, + 0.028157388791441917, + -0.008805775083601475, + -0.006495577748864889, + -0.0016379005974158645, + -0.008021428249776363, + 0.005404742434620857, + 0.0015209077391773462, + 0.0003369725018274039, + 0.0097944475710392, + -0.0029297657310962677, + 0.001972401514649391, + -0.01481690350919962, + 0.0028276031371206045, + -0.04046965762972832, + -0.013511856086552143, + 0.00044366673682816327, + 0.006887751165777445, + -0.035486746579408646, + 0.005559634417295456, + -0.02958107739686966, + -0.0036976346746087074, + -0.011521329171955585, + -0.00616931589320302, + -0.020762119442224503, + -0.004373227711766958, + 0.030635662376880646, + 0.022541729733347893, + -0.012628641910851002, + -0.012556139379739761, + -0.006782292388379574, + -0.005071889143437147, + 0.006353867705911398, + 0.014698263257741928, + 0.025507748126983643, + -0.019760265946388245, + 0.027129169553518295, + -0.00513120973482728, + -0.0023217322304844856, + -0.011218136176466942, + -0.015054184943437576, + 0.005404742434620857, + -0.036224957555532455, + -0.016794247552752495, + -0.010921534150838852, + -0.020208463072776794, + -0.00442595686763525, + -0.02180352248251438, + -0.006287956610321999, + -0.006927297916263342, + 0.033113934099674225, + 0.003934916108846664, + 0.01013718731701374, + 0.003565811784937978, + 0.00777755631133914, + -0.02325357496738434, + -0.003208241891115904, + -0.00777755631133914, + 0.005645319353789091, + 0.0005033990019001067, + -0.010783120058476925, + -0.003944803029298782, + -0.012767056003212929, + -0.012272720225155354, + -0.008917825296521187, + 0.002923174761235714, + -0.019971182569861412, + -0.012628641910851002, + -0.004373227711766958, + -0.003476831130683422, + 0.020366651937365532, + 0.0009367670863866806, + -0.009221017360687256, + 0.003401033114641905, + 0.01345253549516201, + -0.006202271673828363, + -0.026048222556710243, + 0.007105258759111166, + 0.00040865124901756644, + 0.00033470679773017764, + 0.01612195186316967, + 0.004999386612325907, + 0.0028440807946026325, + 0.01745336316525936, + 0.0014764174120500684, + -0.006512055639177561, + 0.016675608232617378, + -0.015594659373164177, + 0.023714955896139145, + 0.00989331491291523, + 0.007026165258139372, + 0.009056239388883114, + 0.010071275755763054, + 0.022634007036685944, + 0.004455616697669029, + 0.006320911925286055, + -0.01310979574918747, + -0.0007579821394756436, + 0.00895078107714653, + -0.01150155533105135, + -0.007052529603242874, + 0.03137386962771416, + 0.01394687220454216, + -0.0020185394678264856, + 0.018863869830965996, + 0.003414215287193656, + -0.013202072121202946, + -0.0030731232836842537, + -0.017334721982479095, + -0.010928125120699406, + -0.012279311195015907, + -0.007790738251060247, + 0.009609895758330822, + 0.03530219569802284, + -0.006960253696888685, + -0.003316995920613408, + 0.000871679512783885, + -0.015067366883158684, + 0.01682061329483986, + 0.009860359132289886, + 0.011804748326539993, + -0.010644705966114998, + -0.020419379696249962, + -0.03314029797911644, + 0.00942534301429987, + -0.001680743065662682, + 0.016108768060803413, + -0.005127914249897003, + 0.017440181225538254, + -0.02320084534585476, + 0.01606922224164009, + 0.028948327526450157, + -0.00503234239295125, + 0.00821257196366787, + 0.00422822218388319, + 0.007962108589708805, + 0.0035295605193823576, + 0.009280337952077389, + -5.3656072850571945e-5, + -0.024176334962248802, + 0.011508146300911903, + 0.003186820773407817, + 0.0029132880736142397, + 0.014803721569478512, + -0.003588880877941847, + -0.015396924689412117, + -0.006109995301812887, + -0.013670044019818306, + -0.01160042267292738, + -0.03261300548911095, + 0.006887751165777445, + 0.008588267490267754, + 0.010677661746740341, + 0.01050629187375307, + -0.010881987400352955, + -0.009576939977705479, + -0.018929781392216682, + -0.00017847596609499305, + 0.013386623933911324, + -0.0008160666911862791, + -0.015568294562399387, + 0.0025820827577263117, + 0.010684252716600895, + 0.0034273976925760508, + -0.0014871280873194337, + -0.0011954697547480464, + -0.0014006191631779075, + 0.012714327313005924, + -0.002359631471335888, + -0.0230031106621027, + 0.011956344358623028, + -0.018824322149157524, + -0.02275264635682106, + -0.007922561839222908, + -0.039494168013334274 + ], + "a081ad6b-87d5-4df2-8ffd-85afdc75a174": [ + -0.0314469076693058, + -0.039472296833992004, + -0.009443771094083786, + -0.03265920281410217, + -0.04434571787714958, + -0.02810097672045231, + 0.04618840664625168, + 0.0450003556907177, + -0.029167795553803444, + 0.005467446520924568, + -0.024548955261707306, + 0.025530913844704628, + -0.018560223281383514, + -0.0230699572712183, + -0.03583541512489319, + -0.032537974417209625, + -0.03881765529513359, + 0.01646295376121998, + 8.334522135555744e-5, + -0.018281394615769386, + 0.08199957013130188, + -0.03331384062767029, + -0.004152107518166304, + 0.0028776831459254026, + -0.010595450177788734, + -0.002015438862144947, + 0.023215431720018387, + 0.01316551398485899, + -0.014571774750947952, + 0.005540184210985899, + 0.020184697583317757, + 0.021748555824160576, + 0.029676958918571472, + -0.01001961063593626, + 0.005767489317804575, + -0.013298866339027882, + -0.016972117125988007, + 0.04580046981573105, + -0.01445054542273283, + -0.001680542714893818, + -0.03973900154232979, + 0.02073022909462452, + 0.009534693323075771, + -0.008025387302041054, + -0.015577979385852814, + 0.0005580341094173491, + 0.03285317122936249, + 0.013856521807610989, + 0.030792269855737686, + -0.012874563224613667, + 0.023215431720018387, + -0.009292234666645527, + 0.009862012229859829, + 0.032125793397426605, + 0.006637310143560171, + 0.013941382057964802, + 0.020596876740455627, + 0.03011338599026203, + 0.014123226515948772, + -0.02841617353260517, + 0.016499321907758713, + 0.0007372263353317976, + 0.012777579948306084, + -0.00971047580242157, + -0.012935178354382515, + -0.057996150106191635, + -0.005594737362116575, + -0.006976752541959286, + -0.01548099610954523, + 0.00233821221627295, + 0.013007915578782558, + -0.00019065219385083765, + -0.012547244317829609, + -0.013298866339027882, + -0.0030443735886365175, + 0.00807994045317173, + 0.025555159896612167, + -0.026064323261380196, + 0.015577979385852814, + -0.008279968984425068, + -0.0484432727098465, + 0.011516793631017208, + 0.008061755448579788, + -0.010165086016058922, + 0.02982243523001671, + 0.03319261223077774, + 0.0061372388154268265, + -0.027009911835193634, + -0.04652784764766693, + -0.015784069895744324, + 0.02139699086546898, + 0.012910932302474976, + -0.00582507299259305, + -0.02304571121931076, + -0.018123796209692955, + -0.019251231104135513, + 0.04917065054178238, + 0.0013941382057964802, + 0.01069849543273449, + -0.04570348933339119, + -0.013226129114627838, + 0.022391071543097496, + -0.03658703714609146, + -0.0034732224885374308, + -0.0068555232137441635, + -0.006982814054936171, + 0.024524709209799767, + -0.025264209136366844, + -0.011904727667570114, + 0.052371107041835785, + 0.008880054578185081, + -0.00874670222401619, + -0.0077647436410188675, + -0.006952506490051746, + -0.0011334950104355812, + -0.08044783771038055, + 0.009371033869683743, + 0.004521857015788555, + -0.0033944235183298588, + -0.04817656800150871, + 0.04570348933339119, + 0.004061185289174318, + -0.00500980531796813, + -0.0021942523308098316, + 0.035156529396772385, + -0.024573201313614845, + -0.003630820894613862, + -0.011595592834055424, + 0.010140839964151382, + 0.005079512484371662, + -0.004870391450822353, + -0.012898809276521206, + -0.011140982620418072, + 0.026428012177348137, + -0.02116665430366993, + 0.002698869677260518, + -0.0017972260247915983, + 0.05775368958711624, + -0.026961421594023705, + 0.03876916691660881, + -0.024548955261707306, + -0.023445768281817436, + -0.0047037010081112385, + 0.00010740168363554403, + 0.016050774604082108, + 0.011989588849246502, + -0.04975254833698273, + 0.013614063151180744, + -0.02538543939590454, + 0.02764030545949936, + -0.033871497958898544, + -0.021336376667022705, + 0.05057691037654877, + 0.010783355683088303, + 0.012741210870444775, + 0.017735863104462624, + 0.00280039943754673, + 0.03792056068778038, + -0.010098409838974476, + 0.005206803325563669, + -0.0027019004337489605, + -0.055862512439489365, + 0.03935106471180916, + -0.017796477302908897, + 0.007916280068457127, + 0.004791592247784138, + 0.021227270364761353, + -0.00024170114193111658, + -0.03331384062767029, + 0.028658632189035416, + 0.041193753480911255, + -0.00789809599518776, + -0.011989588849246502, + -0.013553448021411896, + -0.041605934500694275, + 0.00078344508074224, + 0.01999072916805744, + -0.014814234338700771, + 0.02091207355260849, + -0.008407259359955788, + -0.01334735844284296, + -0.020051345229148865, + -0.035229265689849854, + -0.0009834736119955778, + -0.03105897456407547, + 0.006831277161836624, + 0.0237609650939703, + -0.009977180510759354, + 0.006358482409268618, + 0.02155458927154541, + -0.0021760680247098207, + -0.016535691916942596, + -0.022439563646912575, + 0.03549597039818764, + 0.013614063151180744, + 0.0007171477191150188, + 0.01631747931241989, + 0.03263495862483978, + 0.016535691916942596, + 0.01896028034389019, + -0.02288811281323433, + -0.05780218169093132, + -0.05406831577420235, + 0.004876452963799238, + -0.0397147536277771, + 0.01235933881253004, + 0.008449689485132694, + 0.002767061349004507, + 0.0069221993908286095, + -0.04664907604455948, + 0.008316337130963802, + -0.017566140741109848, + 0.010498466901481152, + -0.018948156386613846, + -0.044248733669519424, + 0.0007054036250337958, + -0.005906903184950352, + -0.017990443855524063, + 0.031762104481458664, + -0.011383441276848316, + -0.036829493939876556, + 0.01362618524581194, + 0.041242245584726334, + -0.03265920281410217, + -0.02401554584503174, + -0.03336233273148537, + -0.018099550157785416, + -0.0001041815266944468, + -0.053195465356111526, + 0.03479284048080444, + 0.05595949664711952, + -0.0021851600613445044, + -0.013250374235212803, + -0.024597447365522385, + -0.016875134781003, + 0.04087855666875839, + -0.01314126793295145, + -0.011056122370064259, + 0.03922983631491661, + -0.005237110424786806, + 0.026234043762087822, + 0.04313342273235321, + 0.028610140085220337, + -0.030768023803830147, + 0.03789631277322769, + -0.019772516563534737, + -0.020160451531410217, + 0.007285887375473976, + -0.0019108785782009363, + -0.039060115814208984, + 0.014220209792256355, + 0.02191827818751335, + 0.014911217615008354, + -0.012886686250567436, + -0.02451258711516857, + 0.02499750442802906, + 0.006125115789473057, + -0.005049204919487238, + 0.007097981870174408, + -0.027810025960206985, + 0.00904371403157711, + -0.046843044459819794, + 0.02183341607451439, + -0.003370177699252963, + 0.036877986043691635, + -0.009740782901644707, + -0.007170719560235739, + -0.03610211983323097, + -0.0018184412037953734, + -0.01269271969795227, + -0.03399272635579109, + -0.020924195647239685, + 0.020875703543424606, + 0.009661983698606491, + -0.0137716606259346, + 0.010540897026658058, + -0.002691292902454734, + 0.03372602164745331, + 0.03629608452320099, + -0.0016623582923784852, + 0.02841617353260517, + 0.006970691028982401, + 0.011237965896725655, + 0.05081936717033386, + -0.0005114365485496819, + -0.02667047083377838, + 0.015638593584299088, + -0.0019396705320104957, + -0.0369507260620594, + -0.02715538814663887, + -0.013068530708551407, + 0.008795193396508694, + 0.04189688339829445, + 0.009328602813184261, + 0.013601940125226974, + 0.006003886461257935, + -0.007643514312803745, + 0.0026625008322298527, + -0.02846466563642025, + 0.009874135255813599, + -0.014244455844163895, + 0.008880054578185081, + 0.04221208021044731, + -0.02846466563642025, + 0.02160308137536049, + 0.011680454015731812, + 0.05484418570995331, + 0.01533552072942257, + -0.025579405948519707, + 0.007740498054772615, + 0.060129787772893906, + 0.004267275333404541, + -0.029531484469771385, + -0.015711331740021706, + 0.003448976669460535, + 0.01857234537601471, + 0.005625044461339712, + -0.03096199221909046, + -0.03738715127110481, + -0.014353562146425247, + -0.022827498614788055, + 0.02761605940759182, + -0.04323040693998337, + 0.014389931224286556, + 0.03246523439884186, + -0.015408257953822613, + 0.01134101115167141, + -0.014280824922025204, + 0.008589103817939758, + -0.023336661979556084, + -0.009134636260569096, + -0.058869000524282455, + -0.049340371042490005, + -0.016014404594898224, + -0.011953219771385193, + -0.003564144717529416, + -0.02543392963707447, + -0.04470940679311752, + -0.00764957582578063, + -0.004312736447900534, + -0.0017108500469475985, + 0.03418669477105141, + -0.023882193490862846, + 0.02669471688568592, + 0.016972117125988007, + -0.016608430072665215, + -0.010104470886290073, + 0.03716893866658211, + -0.02810097672045231, + 0.023494260385632515, + 0.00036709781852550805, + 0.017384298145771027, + 0.04575197771191597, + 0.011104613542556763, + -0.003221671562641859, + -0.03408971056342125, + 0.0022957818582654, + -0.005070419982075691, + 0.016062896698713303, + 0.01117735169827938, + 0.0020987840835005045, + 0.00561292190104723, + -0.03280467912554741, + 0.001300185453146696, + -0.01880268193781376, + 0.044224489480257034, + 0.006904014851897955, + -0.013965628109872341, + 0.02635527402162552, + 0.011710761114954948, + -0.04143621399998665, + 0.027858518064022064, + 0.04597019404172897, + 0.017687371000647545, + -0.04563074931502342, + -0.010322684422135353, + 0.029652712866663933, + 0.027761535719037056, + -0.017226699739694595, + 0.011413749307394028, + -0.018123796209692955, + -0.00035327006480656564, + 0.019821008667349815, + -0.03149539977312088, + 0.03178635239601135, + 0.01919061504304409, + 0.027785779908299446, + -0.01960279606282711, + 0.010134778916835785, + -0.005785673391073942, + -0.011456179432570934, + -0.0045794411562383175, + -0.016863010823726654, + -0.027009911835193634, + -0.026961421594023705, + 0.011298581026494503, + 0.020596876740455627, + 0.007152535021305084, + 0.011377380229532719, + -0.011256150901317596, + 0.018790557980537415, + -0.004146046005189419, + 0.008716394193470478, + 0.013456464745104313, + 0.037290167063474655, + -0.00658881850540638, + -0.013686800375580788, + 0.005885687656700611, + 0.0022094061132520437, + -0.018281394615769386, + 0.006028132513165474, + 0.0004629448230843991, + 0.02250017784535885, + 0.0008993707015179098, + 0.035156529396772385, + -0.026064323261380196, + 0.05658989027142525, + 0.00028015358839184046, + -0.07108892500400543, + -0.009255865588784218, + 0.05576552823185921, + 0.07278613746166229, + 0.004979498218744993, + -0.008304215036332607, + -0.03665977343916893, + -0.009019467979669571, + 0.005391677841544151, + 0.039496541023254395, + -0.005337124690413475, + -0.01792982965707779, + -0.022960850968956947, + -0.0335078090429306, + -0.032198529690504074, + -0.013407972641289234, + 0.007152535021305084, + -0.012704841792583466, + -0.007989018224179745, + -0.03246523439884186, + 0.009649860672652721, + -0.011759253218770027, + -0.0004027089453302324, + -0.0005625802441500127, + 0.0452185682952404, + 0.01631747931241989, + -0.008825501427054405, + -0.03760536387562752, + -0.011728945188224316, + 0.0014789988053962588, + 0.03147115558385849, + 0.02764030545949936, + -0.013020038604736328, + 0.06299079954624176, + -0.024027669802308083, + 0.015553733333945274, + -0.037314411252737045, + -0.0007478339248336852, + -0.008073878474533558, + -0.0044794268906116486, + -0.012377522885799408, + -0.0187056977301836, + -0.001376711530610919, + -0.013711046427488327, + 0.024391356855630875, + 0.002226075157523155, + -0.0012683627428486943, + -0.062311917543411255, + -0.0358111672103405, + 0.03792056068778038, + -0.005688690114766359, + 0.016656920313835144, + 0.005531091708689928, + 0.025700634345412254, + -0.03367752954363823, + -0.010643942281603813, + -0.03520502150058746, + 0.005470477044582367, + -0.008770948275923729, + 0.03309562802314758, + 0.02795550227165222, + -0.001741157379001379, + -0.024003423750400543, + -0.04213934391736984, + -0.0004906002432107925, + 0.0015380980912595987, + 0.025773372501134872, + -0.007322256453335285, + 0.004588533192873001, + -0.00763745279982686, + 0.021409112960100174, + 0.004294551908969879, + 0.06720958650112152, + -0.04087855666875839, + 0.031689368188381195, + -0.043400127440690994, + -0.0035277758724987507, + -0.05052841827273369, + 0.0064918347634375095, + -0.02093631960451603, + 0.0009236165788024664, + -0.03619910031557083, + 0.02070598304271698, + 0.011310704052448273, + 0.007261641789227724, + 0.03745988756418228, + 0.02070598304271698, + 0.0017896491335704923, + -0.03450189158320427, + 0.005049204919487238, + -0.007679882925003767, + 0.04432147368788719, + -0.0001897050824481994, + -0.017590386793017387, + -0.0100438566878438, + 0.0018942095339298248, + -0.007364686578512192, + 0.031228696927428246, + 0.0037399271968752146, + -0.013965628109872341, + 0.0047734081745147705, + -0.021724309772253036, + 0.0051249731332063675, + 0.007322256453335285, + 0.011365257203578949, + 0.03610211983323097, + 0.03362903743982315, + -0.0019730087369680405, + -0.024488341063261032, + 0.016947871074080467, + 0.026937175542116165, + 0.00764957582578063, + -0.015711331740021706, + 0.00872245617210865, + -0.011959281750023365, + -0.01654781401157379, + 0.02034229412674904, + -0.013371603563427925, + -0.012583612464368343, + 0.005706874653697014, + 0.019226985052227974, + 0.039496541023254395, + -0.04439420998096466, + -0.013905012980103493, + 0.00024245881650131196, + 0.013032161630690098, + 0.003548990935087204, + 0.011692577041685581, + -0.027034157887101173, + -0.009922627359628677, + 0.007358625065535307, + -0.006940383929759264, + -0.008558796718716621, + 0.002485202858224511, + -0.00517043424770236, + -0.0024806568399071693, + 0.021481851115822792, + -0.02073022909462452, + 0.019966483116149902, + -0.011904727667570114, + -0.03501105308532715, + -0.0010668188333511353, + 0.026234043762087822, + 0.01183199044317007, + 0.024233758449554443, + -0.002939813304692507, + -0.02764030545949936, + 0.012044142000377178, + 0.0056159524247050285, + -0.010013549588620663, + 0.0008046602015383542, + 0.012450260110199451, + 0.01742066629230976, + 0.02635527402162552, + 0.03937531262636185, + -0.00884974654763937, + -0.008789132349193096, + 0.023627612739801407, + -0.031689368188381195, + 0.017335806041955948, + -0.015396134927868843, + 0.023239677771925926, + 0.020827213302254677, + -0.003630820894613862, + 0.005879626609385014, + -0.008073878474533558, + 0.002089692046865821, + -0.013420095667243004, + -0.022985097020864487, + -0.04858874902129173, + -0.02219710499048233, + 0.012438137084245682, + 0.011922912672162056, + 0.02206375263631344, + 0.02540968358516693, + 0.003797511337324977, + -0.008158739656209946, + 0.02894958294928074, + -0.01826927252113819, + 0.009007344953715801, + -0.009413463994860649, + -0.017796477302908897, + -0.0035247451160103083, + 0.0013751961523666978, + 0.03450189158320427, + 0.021033301949501038, + -0.031762104481458664, + 0.0023427584674209356, + -0.026452258229255676, + 0.008322399109601974, + -0.013383726589381695, + -0.02414889819920063, + -0.021106040105223656, + 0.01613563485443592, + 0.021287884563207626, + -0.022597162052989006, + 0.02132425270974636, + 0.007522284984588623, + -0.008952791802585125, + 0.06119660660624504, + -0.01135313417762518, + -0.012547244317829609, + 0.010771232657134533, + -0.03927832841873169, + 0.030816515907645226, + 0.013480710797011852, + 0.010753048583865166, + 0.0007357109570875764, + -0.01088033989071846, + -0.022136490792036057, + -0.015032446943223476, + -0.0027306925039738417, + 0.011074306443333626, + 0.003982386086136103, + 0.0011797137558460236, + -0.03656278923153877, + 0.03319261223077774, + 0.015444627031683922, + 0.005873565096408129, + 0.023797333240509033, + -0.007819296792149544, + -0.015250659547746181, + 0.0008273907005786896, + -0.018075305968523026, + -0.0397147536277771, + -0.0008311791461892426, + -0.01965128816664219, + 0.003074680920690298, + -0.012335092760622501, + 0.007813235744833946, + 0.008770948275923729, + -0.007752620615065098, + -0.08209655433893204, + -0.004730977583676577, + 0.022985097020864487, + 0.007976895198225975, + 0.009771090000867844, + -0.02681594528257847, + -0.012729087844491005, + 0.032998643815517426, + -0.001067576464265585, + -0.029119303449988365, + 0.023179063573479652, + 0.0007603357080370188, + -0.01723882183432579, + 0.025288455188274384, + 0.0008122370345517993, + 0.006443343125283718, + -0.004867360927164555, + -0.022960850968956947, + 0.009201312437653542, + 0.00840119831264019, + 0.0009054321562871337, + -0.025361193343997, + 0.00904371403157711, + 0.027009911835193634, + -0.016268987208604813, + -0.01397775113582611, + 0.026597732678055763, + -0.03496256098151207, + -0.0025609713047742844, + -0.02270626835525036, + -0.007910219021141529, + -0.00023848097771406174, + -0.02938600815832615, + -0.012286600656807423, + 0.046746060252189636, + -0.023821579292416573, + -0.0022518362384289503, + 0.027761535719037056, + 0.002838283544406295, + 0.012656350620090961, + -0.01447479147464037, + -0.0013585271080955863, + -0.021227270364761353, + 0.015396134927868843, + -0.010528774000704288, + 0.00025799134164117277, + -0.017772231251001358, + 0.03280467912554741, + 0.030355844646692276, + -0.015820438042283058, + -0.016511445865035057, + 0.003179241204634309, + -0.007055551744997501, + 0.011025815270841122, + 0.02045140229165554, + 0.02414889819920063, + -0.010322684422135353, + -0.03275618702173233, + -0.011631961911916733, + -0.003791449824348092, + 0.017687371000647545, + -0.00989232026040554, + -0.022960850968956947, + 0.011898666620254517, + -0.012462383136153221, + -0.013941382057964802, + -0.011062183417379856, + 0.012644227594137192, + 0.010383298620581627, + 0.029943663626909256, + -0.02671896107494831, + 0.014547529630362988, + 0.002751907566562295, + -0.013541324995458126, + -0.040854312479496, + 0.01378378365188837, + 0.045073095709085464, + 0.0033641161862760782, + 0.012595735490322113, + -0.002406403888016939, + 0.018075305968523026, + 0.008995221927762032, + 0.001372923026792705, + 0.009413463994860649, + -0.021130286157131195, + 0.004491549450904131, + -0.026597732678055763, + 0.005012836307287216, + 0.03399272635579109, + -0.029434500262141228, + -0.0406360998749733, + -0.01811167411506176, + 0.004312736447900534, + -0.0026594700757414103, + 0.022124366834759712, + 0.005797796417027712, + -0.010310561396181583, + -0.0001387508527841419, + -0.0048309918493032455, + 0.009637737646698952, + 0.03137417137622833, + -0.03629608452320099, + 0.058432575315237045, + 0.049801040440797806, + 0.010753048583865166, + -0.009637737646698952, + -0.029895173385739326, + -0.0061705769039690495, + 0.004588533192873001, + 0.019796762615442276, + -0.0029034444596618414, + 0.0024700493086129427, + 0.007213149685412645, + -0.01230478473007679, + 0.009395278990268707, + -0.02669471688568592, + -0.016863010823726654, + 0.022306211292743683, + 0.030913500115275383, + -0.03784782066941261, + 0.017202453687787056, + -0.011825929395854473, + 0.016656920313835144, + 0.03067104145884514, + -0.009922627359628677, + 0.011122798547148705, + 0.05033444985747337, + -0.0010796994902193546, + -0.0259430930018425, + 0.013226129114627838, + -0.007097981870174408, + -0.03280467912554741, + 0.002450349507853389, + -0.032950155436992645, + -0.008970976807177067, + 0.011516793631017208, + 0.05979034677147865, + 0.00904371403157711, + -0.009383155964314938, + -0.005540184210985899, + 0.021687941625714302, + 0.023603366687893867, + -0.013323112390935421, + -0.010589389130473137, + 0.0061039007268846035, + 0.017166083678603172, + 0.008158739656209946, + -0.014911217615008354, + 0.03505954518914223, + 0.01221386343240738, + -0.008631533943116665, + -0.029531484469771385, + 0.008479997515678406, + 0.03054981119930744, + 0.0035611139610409737, + -0.0009561969782225788, + 0.026476502418518066, + 0.014789988286793232, + 0.02224559709429741, + 0.011159167625010014, + -0.013577694073319435, + -0.012583612464368343, + -0.014208086766302586, + -0.009074021130800247, + -0.008607287891209126, + 0.024900520220398903, + -0.010152962990105152, + -0.014208086766302586, + 0.03265920281410217, + -0.03610211983323097, + 0.011092491447925568, + 0.00393692497164011, + -0.004576410166919231, + 0.010565143078565598, + -0.0023200279101729393, + -0.0137716606259346, + 0.005300756078213453, + 0.010777294635772705, + 0.026040077209472656, + -0.005452292505651712, + -0.01834201067686081, + -0.010074163787066936, + 0.004794623237103224, + 0.003388362005352974, + -0.002182129304856062, + 0.01921486109495163, + -0.028658632189035416, + -0.02389431744813919, + -0.05765670910477638, + 0.023154817521572113, + 0.012232047505676746, + 0.011250088922679424, + 0.0038126648869365454, + 0.009086144156754017, + 0.0021472759544849396, + -0.029192041605710983, + 0.028222206979990005, + -0.00041862030047923326, + 0.04228481650352478, + 0.008001141250133514, + -0.004143015015870333, + 0.0024336804635822773, + -0.003912679385393858, + -0.017129715532064438, + -0.03244099020957947, + 0.008886115625500679, + 0.004827961325645447, + 0.016062896698713303, + 0.021930400282144547, + 0.008855808526277542, + -0.02054838463664055, + 0.02171218767762184, + -0.008546673692762852, + -0.03632033243775368, + -0.004233937244862318, + -0.0024018576368689537, + -0.026161307469010353, + 0.03183484449982643, + 0.01631747931241989, + 0.024209512397646904, + 0.005973579362034798, + 0.0017669186927378178, + 0.02756756730377674, + -0.003555052448064089, + -0.03149539977312088, + -0.018839050084352493, + -0.005631105974316597, + 0.00427030585706234, + -0.010795478709042072, + 0.01955430395901203, + -0.00027579691959545016, + 0.019020894542336464, + 0.002980728168040514, + -0.013080653734505177, + -0.03440490737557411, + -2.557182961027138e-5, + 0.03896313160657883, + 0.0028882906772196293, + -0.0239912997931242, + -0.01639021560549736, + 0.005528061185032129, + -0.0035611139610409737, + -0.002685231389477849, + -0.037362903356552124, + 0.004843114875257015, + -0.05639592185616493, + -0.017614632844924927, + -0.004994651768356562, + 0.00021821293921675533, + -0.029095059260725975, + 0.0009933235123753548, + -0.0211181640625, + -0.007534408010542393, + -0.015250659547746181, + -0.042236328125, + -0.018305640667676926, + 0.0054189544171094894, + 0.027688797563314438, + -0.0002106361062033102, + 0.03147115558385849, + 0.003582329023629427, + -0.013492832891643047, + -0.0030307353008538485, + -0.012765456922352314, + 0.03270769491791725, + 0.027713043615221977, + -0.004673393908888102, + 0.020487770438194275, + -0.0009971118997782469, + -0.0036944663152098656, + 0.02463381551206112, + -0.014899094589054585, + -0.007910219021141529, + -0.01117735169827938, + 0.010286315344274044, + -0.0005246960208751261, + 0.004758254159241915, + 0.0013645885046571493, + 0.03452613577246666, + 0.02681594528257847, + 0.0008129947236739099, + 0.030937746167182922, + 0.010656065307557583, + -0.018051059916615486, + 0.008395136334002018, + -0.018208658322691917, + 0.007807174231857061, + -0.009910504333674908, + -0.03976324573159218, + -0.031665120273828506, + -0.02093631960451603, + -0.028755616396665573, + 0.0042157527059316635, + -0.0137716606259346, + 0.021978892385959625, + -0.016656920313835144, + -0.023166939616203308, + 0.0038338801823556423, + 0.007267703302204609, + -0.014971831813454628, + 0.02334878407418728, + 0.03896313160657883, + 0.0059129646979272366, + -0.001222143997438252, + 0.003248948138207197, + 0.047691650688648224, + 0.014268701896071434, + -3.501919854898006e-5, + -0.016196249052882195, + -0.017129715532064438, + 0.024185268208384514, + 0.017820723354816437, + -0.039496541023254395, + -0.0021321221720427275, + -0.02582186460494995, + 0.026064323261380196, + -0.03331384062767029, + -0.008570919744670391, + 0.008043571375310421, + 0.02222135104238987, + -0.006285744719207287, + -0.02288811281323433, + 0.03198031708598137, + -0.021021179854869843, + 0.026112815365195274, + 0.021106040105223656, + -0.03855095058679581, + -0.012183555401861668, + 0.017638878896832466, + -0.007467731833457947, + -0.002359427511692047, + 0.013044284656643867, + 0.010728802531957626, + -0.007843542844057083, + -0.008958853781223297, + 0.04694002866744995, + -0.0018502639140933752, + -0.004440027289092541, + 0.014996077865362167, + -0.02548242174088955, + 0.010292377322912216, + -0.05047992616891861, + -0.018245026469230652, + -0.03493831679224968, + 0.021651573479175568, + -0.032610710710287094, + -0.04878271371126175, + 0.03278043121099472, + -0.009728659875690937, + 0.002035138662904501, + -0.006697924807667732, + 0.009601369500160217, + -0.022209227085113525, + 0.02504599653184414, + 0.004073308315128088, + 0.006040255539119244, + -0.008189046755433083, + 0.009928688406944275, + 0.023954931646585464, + 0.015687085688114166, + 0.004882514476776123, + 0.00024170114193111658, + 0.0024670185521245003, + 0.005940241273492575, + 0.012341153807938099, + -0.01634172536432743, + -0.014402054250240326, + -0.06396063417196274, + -0.016705412417650223, + 0.016402339562773705, + -0.030889254063367844, + -0.029992155730724335, + 0.0019654317293316126, + 0.01657206006348133, + -0.0033944235183298588, + 0.01792982965707779, + 0.025724880397319794, + 0.010183270089328289, + 0.027373600751161575, + 0.029579976573586464, + -0.007546530570834875, + 0.016838764771819115, + 0.012850317172706127, + -0.03408971056342125, + -0.01595379039645195, + -0.031616631895303726, + 0.03445339947938919, + -0.023603366687893867, + -0.016729658469557762, + 0.00427030585706234, + 0.021178778260946274, + 0.003348962403833866, + -0.013844398781657219, + -0.0023867040872573853, + -0.02387007139623165, + -0.0022472902201116085, + -0.014317193068563938, + 0.004746131598949432, + 0.009692291729152203, + 0.03287741541862488, + 0.0062311915680766106, + -0.014838479459285736, + 0.017590386793017387, + -0.008498181588947773, + 0.009298295713961124, + -0.006710047833621502, + 0.01383227575570345, + -0.0028231299947947264, + 0.01068637240678072, + 0.044685158878564835, + 0.01705697737634182, + 0.010643942281603813, + 0.04092704877257347, + -0.022439563646912575, + 0.027737289667129517, + -0.0146323898807168, + 0.003476253245025873, + 0.009286172688007355, + 0.0014820295618847013, + -0.009274049662053585, + -0.011104613542556763, + 0.010207516141235828, + -0.00734044099226594, + 0.022100120782852173, + 0.0025215717032551765, + 0.007534408010542393, + -0.013492832891643047, + 0.013359480537474155, + 0.016099264845252037, + -0.006219068542122841, + -0.009322541765868664, + -0.005282571539282799, + -0.008522427640855312, + 0.0024882336147129536, + -0.024391356855630875, + 0.0027700921054929495, + 0.00201695435680449, + 0.00218970631249249, + -0.01200777292251587, + 0.02756756730377674, + -0.023833701387047768, + 0.007692005950957537, + -0.024852029979228973, + 0.01957855001091957, + 0.012232047505676746, + 0.011128859594464302, + 0.013614063151180744, + 0.02217285893857479, + -0.005528061185032129, + 0.004346074536442757, + -0.00681309262290597, + -0.0119956498965621, + -0.005543214734643698, + 0.00851636566221714, + -0.009061898104846478, + 0.02245168760418892, + 0.029846681281924248, + -0.012935178354382515, + 0.005531091708689928, + 0.027009911835193634, + 0.023797333240509033, + -0.010092348791658878, + 0.004064215812832117, + 0.019481565803289413, + -0.0008455751230940223, + -0.005415923893451691, + -0.011935035698115826, + -0.004018755163997412, + -0.004976467229425907, + 0.012110818177461624, + -0.017372174188494682, + -0.011104613542556763, + -0.02217285893857479, + -0.007140412461012602, + -0.004664301406592131, + -0.04080582037568092, + -0.009074021130800247, + -0.005776581354439259, + -0.005027989856898785, + 0.017178207635879517, + 0.01859659142792225, + -0.024682307615876198, + 0.003909648396074772, + 0.01101975329220295, + -0.02263353019952774, + -0.014765742234885693, + -2.943128129118122e-5, + 0.01054695900529623, + -0.011565285734832287, + -0.014280824922025204, + -0.03105897456407547, + 0.008795193396508694, + 0.005340155679732561, + 0.014111103489995003, + 0.011153105646371841, + -0.001788133755326271, + -0.011334950104355812, + -0.044224489480257034, + 0.015468873083591461, + -0.014329316094517708, + 0.006352420896291733, + -0.03481708839535713, + 0.012292662635445595, + 0.010516650974750519, + -0.014256578870117664, + -0.034744348376989365, + -0.016523567959666252, + 0.007388932630419731, + -0.005303786601871252, + -0.009843828156590462, + -0.019736148416996002, + -0.037290167063474655, + 0.0181359201669693, + 0.004473365377634764, + 0.01167439203709364, + 0.00361566711217165, + 0.002532179234549403, + -0.023082079365849495, + 0.02247593179345131, + 0.00689795333892107, + 0.00968622975051403, + 0.00560079887509346, + 0.02885259874165058, + 0.00699493708088994, + -0.020124081522226334, + 0.008825501427054405, + -0.024876274168491364, + -0.021542465314269066, + 0.0010842455085366964, + 0.015711331740021706, + 0.03452613577246666, + -0.004909791052341461, + -0.006449404638260603, + -0.012813949026167393, + -0.0029686051420867443, + 0.026379520073533058, + -0.02538543939590454, + -0.01253512129187584, + 0.002477626083418727, + 0.01664479821920395, + -0.006988875567913055, + -0.02345789037644863, + -0.017784355208277702, + -0.01312914490699768, + -0.019336091354489326, + 0.017735863104462624, + 0.02591884881258011, + -0.022997219115495682, + -0.0040551237761974335, + 0.02396705374121666, + -0.00700706010684371, + 0.02265777625143528, + -0.025167224928736687, + -0.013468587771058083, + 0.009607430547475815, + -0.032198529690504074, + -0.012753333896398544, + -0.01252299826592207, + 0.006746416445821524, + -0.016062896698713303, + 0.003194394987076521, + -0.011359196156263351, + 0.0016229586908593774, + -0.013444341719150543, + 0.016184126958251, + 0.021615203469991684, + 0.003303501522168517, + -0.009789275005459785, + -0.020208941772580147, + -0.0230699572712183, + -0.009001283906400204, + 0.01811167411506176, + -0.01772373914718628, + 0.0013479194603860378, + 0.005203772336244583, + -0.02941025421023369, + -0.01531127467751503, + 0.029652712866663933, + 0.0037672040052711964, + -0.02199101448059082, + -0.0026776546146720648, + 0.01197140384465456, + -0.011080368421971798, + 0.012013834901154041, + -0.023603366687893867, + -0.015359765850007534, + -0.002397311618551612, + -0.02894958294928074, + -0.0010099925566464663, + 0.01005597971379757, + 0.0012009288184344769, + -0.018851174041628838, + 0.019299721345305443, + -0.025579405948519707, + -0.00483705336228013, + 0.03716893866658211, + -0.013201883062720299, + -0.009419525042176247, + -0.0007046459359116852, + -0.013383726589381695, + 0.00852848868817091, + -0.004815838299691677, + 0.0069221993908286095, + 0.003930863458663225, + -0.010389360599219799, + -0.026137061417102814, + 0.0007864757790230215, + -0.0031095342710614204, + -0.02096056565642357, + 0.003008004743605852, + -0.038187265396118164, + 0.0028564680833369493, + 0.009552877396345139, + -0.00042165102786384523, + -0.01723882183432579, + -0.0028019146993756294, + -0.006449404638260603, + -0.007770805153995752, + -0.00188814802095294, + -0.016608430072665215, + -0.0013486772077158093, + 0.01790558360517025, + -0.00923768151551485, + 0.01397775113582611, + -0.020427156239748, + 0.02720388025045395, + -0.0014145956374704838, + -0.01891178824007511, + -0.02322755567729473, + 0.005037081893533468, + 0.001219870988279581, + -0.010468159802258015, + -0.01218961738049984, + -0.009886258281767368, + -0.010504527948796749, + 0.007164658047258854, + -0.002780699636787176, + 0.02150609716773033, + -0.040320903062820435, + -0.015638593584299088, + 0.023542750626802444, + -0.013092776760458946, + 0.013286743313074112, + -0.00789809599518776, + -0.019299721345305443, + -0.0034520074259489775, + -0.022463809698820114, + 0.014729373157024384, + -0.010850031860172749, + -0.003470191964879632, + -0.012389645911753178, + 0.001948762801475823, + -0.019275475293397903, + -0.012838194146752357, + -0.020839335396885872, + 0.0052856020629405975, + 0.008164800703525543, + 0.016875134781003, + 0.01379590667784214, + -0.005776581354439259, + -0.0032762247137725353, + 0.012729087844491005, + -0.012110818177461624, + -0.005412893369793892, + 0.004467303864657879, + 0.0011289488757029176, + -0.00973472185432911, + -0.005543214734643698, + -0.01166226901113987, + 0.016062896698713303, + 0.003915709909051657, + 0.018463239073753357, + -0.000693280715495348, + 0.010183270089328289, + 0.007382871117442846, + 0.031640876084566116, + 0.008819439448416233, + 0.013323112390935421, + -0.002248805481940508, + 0.008886115625500679, + -0.026573486626148224, + 0.021421236917376518, + -0.008152677677571774, + 0.003179241204634309, + 0.021130286157131195, + 0.002959512872621417, + -0.027858518064022064, + -0.0038399414625018835, + -0.029095059260725975, + -0.008273907005786896, + -0.021954646334052086, + -0.02548242174088955, + -0.0002841314417310059, + -0.01877843588590622, + 0.023627612739801407, + 0.0031580261420458555, + -0.023542750626802444, + -0.021675817668437958, + 0.03459887206554413, + -0.005722028203308582, + -0.001921486109495163, + 0.006600941531360149, + 0.018948156386613846, + 0.008661841042339802, + 0.014729373157024384, + -0.01101975329220295, + -0.01401412021368742, + 0.007746559102088213, + -0.013214006088674068, + -0.003127718809992075, + -0.012547244317829609, + -0.02494901232421398, + -0.0024609570391476154, + 0.016608430072665215, + 0.010249946266412735, + -0.01695999503135681, + -0.028585894033312798, + -0.004494580440223217, + 0.01037723757326603, + -0.03273193910717964, + -0.0026412857696413994, + 0.014620266854763031, + -0.0065948800183832645, + 0.0015517364954575896, + 0.0014411145821213722, + 0.01700848713517189, + 0.0005629590596072376, + 0.009583184495568275, + -0.014074734412133694, + -0.006782785523682833, + 0.011601654812693596, + -0.01896028034389019, + 0.012135064229369164, + 0.007922342047095299, + 0.008564857766032219, + 0.006879768799990416, + 0.0049643442034721375, + 0.01703273132443428, + 0.004794623237103224, + -0.0012835164088755846, + 0.005431077443063259, + 0.008770948275923729, + -0.0007091920706443489, + -0.0193967055529356, + 0.01767524890601635, + -0.021287884563207626, + -0.006197853479534388, + 0.013529201969504356, + -0.007795051205903292, + -0.00583719601854682, + 0.002162429504096508, + 0.03360479325056076, + 0.0171054694801569, + 0.036853741854429245, + 0.007085858844220638, + -0.0036793125327676535, + -0.03367752954363823, + -0.01466875895857811, + -0.004794623237103224, + 0.014280824922025204, + -0.021493975073099136, + 0.019687656313180923, + -0.0007940526120364666, + 0.015941668301820755, + -0.0006375909433700144, + 0.003691435558721423, + 0.013238251209259033, + -0.015432504005730152, + 0.005321971140801907, + -0.06580332666635513, + -0.019493689760565758, + 0.004985559266060591, + 0.007946588099002838, + -0.0007667760364711285, + 0.028319189324975014, + 0.002520056441426277, + -0.008383013308048248, + 0.0038793410640209913, + 0.006703986320644617, + 0.007843542844057083, + 6.18459380348213e-5, + 0.0012115364661440253, + 0.03336233273148537, + -0.028537403792142868, + 0.029919417575001717, + -0.004188476130366325, + 0.010516650974750519, + -0.005891749169677496, + 0.010298438370227814, + 0.01017114706337452, + 0.015250659547746181, + -0.011122798547148705, + -0.023651858791708946, + -0.012322969734668732, + 0.009983241558074951, + -0.0011403141543269157, + -0.03224702179431915, + -0.01120159775018692, + -0.0006485773483291268, + 0.01937245950102806, + 0.002979212673380971, + -0.0001795710704755038, + 0.028755616396665573, + 0.0034095770679414272, + 0.036077871918678284, + -0.008255722932517529, + -0.015032446943223476, + 0.004633994307368994, + 0.001841171644628048, + -0.0017866183770820498, + -0.009758967906236649, + -0.004724916070699692, + -0.002686746884137392, + -0.0018442024011164904, + -0.011147044599056244, + -0.010553020052611828, + -0.0030383120756596327, + -0.01098338421434164, + 0.020536262542009354, + -0.010989446192979813, + -0.016402339562773705, + 0.04858874902129173, + -0.016062896698713303, + 0.031640876084566116, + -0.03661128133535385, + -0.0007705644238740206, + -0.03459887206554413, + -0.01698424108326435, + -0.008334522135555744, + 0.021748555824160576, + -0.005152249708771706, + -0.008473935537040234, + -0.014208086766302586, + -0.0002598855353426188, + -0.01611138880252838, + 0.015650717541575432, + 0.02679169923067093, + 0.027276616543531418, + -0.007413178216665983, + 0.01247450616210699, + 0.001909363199956715, + -0.04276973754167557, + 0.016608430072665215, + 0.0001442440552636981, + 0.03920559212565422, + -0.01548099610954523, + 0.011013692244887352, + 0.020608998835086823, + -0.009146759286522865, + -0.0034580689389258623, + 0.003642943687736988, + 0.007679882925003767, + 0.004558225627988577, + 0.012298723682761192, + -0.02507024258375168, + -0.005415923893451691, + 0.006613064557313919, + -0.02160308137536049, + 0.014038365334272385, + -0.006043286062777042, + -0.015347643755376339, + -0.01397775113582611, + -0.00271402345970273, + 0.004239998757839203, + -0.004658239893615246, + -0.0019169400911778212, + 0.02288811281323433, + 0.009468017145991325, + -0.023397276178002357, + -0.014026242308318615, + 0.01316551398485899, + 0.008122370578348637, + 0.023930685594677925, + -0.01218961738049984, + 0.0031853027176111937, + 0.028197960928082466, + -0.010262069292366505, + 0.00691007636487484, + 0.020718106999993324, + 0.00533106317743659, + 0.012001711875200272, + 0.02797974832355976, + -0.040320903062820435, + -0.014062611386179924, + -0.003056496614590287, + 0.031713612377643585, + -0.007176781073212624, + -0.014183840714395046, + -0.020621122792363167, + -0.005185587797313929, + -0.011498609557747841, + 0.006934322416782379, + 0.021687941625714302, + 0.0250217504799366, + 0.011286458000540733, + 0.012438137084245682, + -0.0015835592057555914, + -0.0010099925566464663, + 0.007625329773873091, + -0.003782357554882765, + -0.002980728168040514, + -0.004082400351762772, + 0.002539756242185831, + 0.016729658469557762, + 0.00040119356708601117, + -0.01316551398485899, + -0.013589817099273205, + 0.020621122792363167, + -0.005309848114848137, + 0.0029155672527849674, + -0.008279968984425068, + 0.022791128605604172, + 0.008946730755269527, + 0.03370177745819092, + -0.011347073130309582, + -0.0021533374674618244, + 0.003815695643424988, + -0.02494901232421398, + 0.025239963084459305, + -0.015844684094190598, + 0.01937245950102806, + 0.0021321221720427275, + 0.024451972916722298, + -0.015020323917269707, + -0.008261783979833126, + 0.009783213026821613, + -0.002571578836068511, + 0.004012693651020527, + -0.016293233260512352, + -0.004436996299773455, + 0.0004273336671758443, + -0.0035004992969334126, + 0.02258503995835781, + -0.008479997515678406, + 0.010862154886126518, + -0.006285744719207287, + -0.004061185289174318, + -0.019796762615442276, + -0.019542180001735687, + -0.00486129941418767, + 0.0032428866252303123, + -0.001948762801475823, + -0.01068637240678072, + 0.0008902784902602434, + 0.0010327229974791408, + 0.005031020380556583, + -0.03874491900205612, + 0.004900699015706778, + 0.014862725511193275, + 0.005264387000352144, + -0.008007202297449112, + 0.014499037526547909, + 0.004800684750080109, + 0.005882657133042812, + -0.008558796718716621, + 0.002030592644587159, + -0.006782785523682833, + 0.011147044599056244, + 0.0007595780189149082, + -0.015529487282037735, + 0.011710761114954948, + 0.01834201067686081, + 0.012923055328428745, + -0.017384298145771027, + -0.009680168703198433, + -0.025652144104242325, + 0.01055908203125, + -0.0017381266225129366, + 0.019748270511627197, + 0.013759537599980831, + -0.014571774750947952, + 0.009758967906236649, + -0.003555052448064089, + 0.0056492905132472515, + 0.018851174041628838, + 0.01854809932410717, + -0.027397846803069115, + 0.006376666948199272, + -0.00421878369525075, + 0.002404888393357396, + 0.007601084187626839, + 0.0167539045214653, + 0.002001800574362278, + -0.005606860388070345, + 0.010074163787066936, + -0.0019654317293316126, + 0.002462472300976515, + 0.012268416583538055, + 0.006849461700767279, + 0.0076616988517344, + -0.010177209042012691, + 0.00329440925270319, + -0.011165228672325611, + -0.005991763435304165, + 0.012250231578946114, + -0.021481851115822792, + -0.01054695900529623, + 0.01035299152135849, + 0.002150306710973382, + -0.009098267182707787, + -0.014899094589054585, + -0.008164800703525543, + -0.027761535719037056, + -0.00971047580242157, + 0.01703273132443428, + -0.017275191843509674, + -0.018402624875307083, + 0.019481565803289413, + -0.0028170684818178415, + 0.030889254063367844, + 0.02844041958451271, + -0.002250320976600051, + -0.015941668301820755, + -0.002476110588759184, + 0.0019608857110142708, + 0.008310276083648205, + 0.00656457245349884, + -0.001500213984400034, + 0.02982243523001671, + -0.03445339947938919, + -0.0012910931836813688, + -0.030404336750507355, + 0.011122798547148705, + -0.01186835952103138, + 0.008692149072885513, + 0.008340583182871342, + -0.01001961063593626, + 0.0006493350374512374, + 0.0073101334273815155, + -0.006479712203145027, + -0.005467446520924568, + 0.0033459316473454237, + 0.010383298620581627, + -0.009716536849737167, + -0.008170862682163715, + -0.010850031860172749, + -0.009958996437489986, + -0.002818583743646741, + 0.036490052938461304, + 0.003041342832148075, + 0.005888718646019697, + 0.007970834150910378, + -0.0020260466262698174, + -0.014365685172379017, + 0.010195393115282059, + -0.006831277161836624, + -0.005382585804909468, + -0.012135064229369164, + 0.01317763701081276, + -0.0031974257435649633, + -0.013323112390935421, + -0.0033247165847569704, + -0.0071161664091050625, + 0.0008463328122161329, + -0.01708122342824936, + -0.01792982965707779, + 0.0008720940677449107, + 0.017141839489340782, + -0.007407117169350386, + -0.009340725839138031, + -0.0024154959246516228, + 0.005594737362116575, + 0.02890109084546566, + 0.00610693171620369, + 0.022597162052989006, + -0.009898381307721138, + 0.015141553245484829, + 0.00542804691940546, + 0.0006754751084372401, + -0.0014979408588260412, + -0.0009084629127755761, + -0.014341439120471478, + 0.018863296136260033, + 0.001453237608075142, + 0.005794765893369913, + 0.03520502150058746, + 0.012559367343783379, + 0.010310561396181583, + 0.012171432375907898, + -0.028755616396665573, + 0.021275760605931282, + -0.002404888393357396, + 0.015687085688114166, + -0.03745988756418228, + -0.003092865226790309, + -0.02807673066854477, + -0.012656350620090961, + 0.0001403609203407541, + -0.015784069895744324, + 0.0004996924544684589, + -0.020512016490101814, + 0.011577408760786057, + 0.005431077443063259, + 0.0006929018418304622, + -0.00755259208381176, + 0.013395849615335464, + -0.002215467393398285, + 0.013541324995458126, + 0.018875420093536377, + 0.010722741484642029, + 0.021227270364761353, + -0.008310276083648205, + 0.016559937968850136, + 0.01785709150135517, + 0.0183662548661232, + -0.009831705130636692, + -0.01620837301015854, + -0.008267845958471298, + 0.002571578836068511, + 0.012644227594137192, + -0.021481851115822792, + 0.0032428866252303123, + 0.022621408104896545, + -0.008025387302041054, + 0.023785211145877838, + 0.0003653930325526744, + -0.025239963084459305, + -0.0078011127188801765, + 0.00615845387801528, + -0.012716964818537235, + -0.004027847200632095, + -0.007000998593866825, + -0.002450349507853389, + 0.005822042468935251, + 0.005806888919323683, + -0.01054695900529623, + 0.0007804143242537975, + -0.009831705130636692, + 0.027373600751161575, + 0.018839050084352493, + 0.024161022156476974, + 0.010371175594627857, + 0.0030352813191711903, + 3.243833998567425e-5, + 0.015553733333945274, + 0.00492494460195303, + -0.015505241230130196, + -0.029119303449988365, + -0.01780860126018524, + -0.017178207635879517, + -0.020718106999993324, + -0.006285744719207287, + -0.01891178824007511, + -0.01765100285410881, + 0.00818298477679491, + 0.0020805997774004936, + -0.007085858844220638, + -0.02442772686481476, + -0.012074449099600315, + -0.0020669614896178246, + -0.009213435463607311, + -0.001815410447306931, + -0.003842972218990326, + -0.012644227594137192, + -0.0036944663152098656, + 0.007073736283928156, + 0.009716536849737167, + -0.006703986320644617, + 0.0070131211541593075, + 0.01625686325132847, + 0.035520218312740326, + -0.009752905927598476, + 0.010389360599219799, + -0.0030731656588613987, + 0.011492548510432243, + -0.0002053323114523664, + -0.0021518219728022814, + 0.019917992874979973, + 0.015432504005730152, + -0.029167795553803444, + -0.00018487485067453235, + 0.008407259359955788, + -0.00634029833599925, + 0.002336696954444051, + -0.004858268424868584, + -0.014038365334272385, + -0.003815695643424988, + -0.004433965776115656, + -0.007019182667136192, + -0.005434108432382345, + 0.016099264845252037, + -1.981816785701085e-5, + -0.007431362755596638, + 0.010819724760949612, + -0.010152962990105152, + -0.01852385327219963, + 0.034235186874866486, + -0.0033065322786569595, + 0.007237395737320185, + 0.013371603563427925, + -0.008728517219424248, + -0.01893603429198265, + 0.007407117169350386, + 0.0073768096044659615, + -0.01760251075029373, + 0.010734864510595798, + 0.012668473646044731, + 0.0009933235123753548, + -0.0243307426571846, + 0.015541610307991505, + 0.00333683961071074, + -0.003021643031388521, + 0.014377808198332787, + 0.003388362005352974, + 0.007146473508328199, + 0.02176067978143692, + -0.0018669329583644867, + -0.0006633521988987923, + -0.010934893041849136, + -0.016681166365742683, + 0.009589246474206448, + 0.01468088198453188, + 0.022233473137021065, + -0.006152392365038395, + 0.018426870927214622, + -0.008680026046931744, + -0.0004898426122963428, + -0.030331598594784737, + 0.021700063720345497, + 0.01248662918806076, + -0.007740498054772615, + 0.022257719188928604, + 0.015577979385852814, + 0.02890109084546566, + -0.0071828425861895084, + -0.008164800703525543, + 0.007970834150910378, + -0.01512943021953106, + -0.0026776546146720648, + -0.025288455188274384, + 0.012935178354382515, + -0.02435498870909214, + -0.004503672476857901, + -0.003059527138248086, + -0.021518221125006676, + -0.001163044711574912, + -0.004267275333404541, + 0.01333523541688919, + 0.03867218270897865, + 0.004900699015706778, + -0.001995739061385393, + 0.023421522229909897, + 0.01134101115167141, + -0.004394566174596548, + -0.01068637240678072, + -0.007910219021141529, + 0.0018790558679029346, + -0.0031398418359458447, + 0.022087998688220978, + 0.010231762193143368, + 0.0013342811726033688, + 0.020633244886994362, + -0.001094853156246245, + -0.0048976680263876915, + 0.020790843293070793, + 0.003570206230506301, + 0.007437424268573523, + -0.016050774604082108, + 0.00842544436454773, + -0.006022071000188589, + 0.0047037010081112385, + -0.0007410147809423506, + 0.025991585105657578, + 0.0072434572502970695, + -0.015384011901915073, + -0.0038944948464632034, + -0.0002547711774241179, + -0.01155922468751669, + -0.007097981870174408, + 0.002820099238306284, + -0.00517043424770236, + -0.0038126648869365454, + -0.01055908203125, + -0.017772231251001358, + -0.00855273474007845, + -0.014959708787500858, + 0.005646259989589453, + 0.018608715385198593, + -0.007261641789227724, + -0.007940526120364666, + 0.01978464052081108, + -0.01811167411506176, + -0.010516650974750519, + 0.0024154959246516228, + 0.03021036833524704, + 0.011298581026494503, + -0.00560079887509346, + -0.010965200141072273, + 0.015868930146098137, + -0.0073768096044659615, + -0.010989446192979813, + -0.0016426584916189313, + -0.028779862448573112, + 0.01955430395901203, + -0.0026503780391067266, + -0.008176923729479313, + 0.009783213026821613, + -0.006807031575590372, + -0.002136668423190713, + 0.005100727546960115, + -0.03544747829437256, + 0.009934750385582447, + -0.0007008575485087931, + -0.013759537599980831, + 0.0015623440267518163, + -7.089079008437693e-5, + -0.013359480537474155, + 0.012135064229369164, + 0.0014342954382300377, + 0.0010903070215135813, + 0.00012653319572564214, + -0.017141839489340782, + 0.008286030031740665, + -0.0068858303129673, + -0.008279968984425068, + -0.009007344953715801, + -0.0017578264232724905, + 0.025361193343997, + 0.015650717541575432, + 0.012413891963660717, + 0.014292947016656399, + -0.0019927085377275944, + 0.001968462485820055, + 0.0017866183770820498, + -0.008595164865255356, + -0.01529915165156126, + -0.0076071457006037235, + 0.01379590667784214, + -0.01728731393814087, + 0.01726306788623333, + -0.005188618786633015, + -0.0025685480795800686, + 0.007776866666972637, + -0.003026189049705863, + 0.018632959574460983, + -0.02191827818751335, + -0.015784069895744324, + -0.01600228250026703, + -0.001815410447306931, + -0.020463524386286736, + 0.013589817099273205, + 0.006437281612306833, + -0.00019339879509061575, + 0.011140982620418072, + -0.009752905927598476, + -0.0034338231198489666, + 0.004306674934923649, + -0.007152535021305084, + -0.00468854745849967, + 0.0029110212344676256, + 0.007164658047258854, + -0.007110104896128178, + 0.016608430072665215, + -0.021821293979883194, + -0.007819296792149544, + 0.002610978437587619, + 0.014305070042610168, + -0.01680239662528038, + 0.023445768281817436, + 0.010449974797666073, + 0.0019411859102547169, + 0.0034126078244298697, + -0.01230478473007679, + 0.0008834593463689089, + -0.03331384062767029, + 0.005815980955958366, + -0.023409398272633553, + -0.018414746969938278, + 0.024548955261707306, + 0.0018866326427087188, + 0.023082079365849495, + 0.020257433876395226, + -0.01666904427111149, + -0.014135349541902542, + -0.01839050091803074, + 0.0012600282207131386, + 0.004397596698254347, + -0.0018002567812800407, + 0.012462383136153221, + 0.018620837479829788, + -0.006873707752674818, + -0.0076738218776881695, + -0.018099550157785416, + 0.0068858303129673, + -0.022645654156804085, + -0.006649433169513941, + -0.01252299826592207, + -0.01120159775018692, + 0.005082543008029461, + -0.018875420093536377, + -0.007061613257974386, + -0.02191827818751335, + -0.0015206714160740376, + -0.006031163036823273, + -0.009158882312476635, + -0.008964914828538895, + -0.0009077052236534655, + 0.016741782426834106, + 0.02805248461663723, + 0.0007633664645254612, + -0.002898898208513856, + 0.03198031708598137, + -0.010037794709205627, + 0.020766597241163254, + 0.003348962403833866, + 0.004555195104330778, + 0.014486914500594139, + 0.017784355208277702, + -0.003976324573159218, + 0.002571578836068511, + -0.0027094772085547447, + 0.004127861466258764, + 0.00788597296923399, + -0.020051345229148865, + -0.008928545750677586, + -0.00657669547945261, + 0.02722812630236149, + -0.01721457578241825, + -0.0011547101894393563, + 0.003530806628987193, + 0.012019895948469639, + 0.00249884114600718, + 0.010953077115118504, + 0.017481280490756035, + -0.009661983698606491, + 0.006249376107007265, + 0.015808315947651863, + -0.004640055820345879, + 0.03319261223077774, + 0.008570919744670391, + -0.002912536496296525, + 0.008049632422626019, + -0.0019472474232316017, + 0.004473365377634764, + -0.007091920357197523, + -0.022730514407157898, + -0.004030877724289894, + -0.006655494682490826, + 0.0012971546966582537, + 0.014741496182978153, + 0.016681166365742683, + 0.003088319208472967, + 0.002163944998756051, + 0.004633994307368994, + -0.00972259882837534, + 0.015565856359899044, + -0.003382300492376089, + 0.03915710002183914, + -0.009789275005459785, + 0.0015653747832402587, + -0.013650431297719479, + 0.01334735844284296, + -0.005685659125447273, + -0.011183412745594978, + -0.00938921794295311, + -0.009225558489561081, + -0.004024816211313009, + -0.02240319550037384, + 0.0096983527764678, + 0.0031822719611227512, + -0.020851459354162216, + -0.006740355398505926, + -0.02003922127187252, + 0.03493831679224968, + 0.00036690838169306517, + -0.022306211292743683, + 0.02001497521996498, + 0.01916636899113655, + -0.010062040761113167, + 0.006479712203145027, + 0.020621122792363167, + 0.0011471332982182503, + 0.007067674770951271, + 0.009498324245214462, + 0.012995792552828789, + -0.0027700921054929495, + -0.003067104145884514, + -0.009292234666645527, + 0.010177209042012691, + 0.016014404594898224, + -0.014135349541902542, + -0.0034914070274680853, + -0.009340725839138031, + 0.009249803610146046, + 0.01657206006348133, + 0.011989588849246502, + 0.022742636501789093, + -0.012110818177461624, + 0.007491977419704199, + -0.010825786739587784, + -0.006449404638260603, + 0.029216287657618523, + -0.006182699929922819, + 0.0012486629420891404, + 0.008643656969070435, + -0.017966197803616524, + -0.015456750057637691, + 0.01378378365188837, + 0.006794908549636602, + -0.006322113797068596, + 0.012595735490322113, + -0.01468088198453188, + -0.010977323167026043, + -0.000577733910176903, + -0.021215146407485008, + 0.009007344953715801, + -0.0043521360494196415, + 0.0031974257435649633, + -0.031180204823613167, + -0.009498324245214462, + 0.02679169923067093, + 0.005200741812586784, + 0.0025230871979147196, + -0.0183662548661232, + -0.010177209042012691, + 0.005279541015625, + 0.004900699015706778, + 0.0184753630310297, + 0.01765100285410881, + 0.008383013308048248, + 0.01816016621887684, + 0.006358482409268618, + 0.015893176198005676, + -0.020596876740455627, + -0.00023961751139722764, + -0.015153676271438599, + 0.014123226515948772, + 0.006837338674813509, + -0.005852349568158388, + -0.006161484867334366, + -0.04776438698172569, + -0.025288455188274384, + -0.018305640667676926, + -0.00955893937498331, + 0.018402624875307083, + -0.010656065307557583, + -0.006776724010705948, + -0.010904585011303425, + -0.007910219021141529, + 0.003521714359521866, + 0.011244027875363827, + 0.006067532114684582, + 0.015590102411806583, + -0.009164943359792233, + 0.022669900208711624, + -0.007904157973825932, + 0.028294945135712624, + -0.0007565472624264657, + 0.0071161664091050625, + -0.014620266854763031, + 0.031131712719798088, + 0.030986236408352852, + 0.010486343875527382, + 0.009716536849737167, + 0.0007455608574673533, + -0.0017472188919782639, + -0.011153105646371841, + -0.009771090000867844, + 0.009704413823783398, + -0.0037520502228289843, + 0.012147187255322933, + -0.019105754792690277, + 0.012159310281276703, + 0.0018442024011164904, + 0.003842972218990326, + -0.01620837301015854, + -0.00593417976051569, + 0.012092634104192257, + -0.02006346732378006, + 0.019517935812473297, + 0.00033811639877967536, + -0.00787384994328022, + 0.004615809768438339, + 0.01723882183432579, + 0.0001962401147466153, + -0.00656457245349884, + 0.011668330989778042, + -0.006988875567913055, + 0.007225272711366415, + -0.00875882524996996, + 0.017541896551847458, + -0.004158168565481901, + 0.004173322580754757, + 0.024548955261707306, + -0.009219496510922909, + 0.014098980464041233, + 0.009589246474206448, + -0.012171432375907898, + -0.004158168565481901, + -0.021700063720345497, + 0.015238536521792412, + -0.010195393115282059, + 0.009122513234615326, + -0.01220174040645361, + -0.007904157973825932, + 0.028755616396665573, + -0.0025624865666031837, + -0.0008455751230940223, + 0.015662839636206627, + -0.006085716187953949, + -0.0035004992969334126, + -0.0059432717971503735, + -0.0011092490749433637, + -0.00131988525390625, + -0.008498181588947773, + 0.009437710046768188, + 0.0032428866252303123, + 0.005970548372715712, + -0.0027700921054929495, + -0.030040647834539413, + 0.010777294635772705, + -0.0039005563594400883, + 0.006619125604629517, + 0.01249875221401453, + 0.011486486531794071, + 0.011474363505840302, + -1.0731881047831848e-5, + -0.02440348081290722, + 0.01721457578241825, + -0.040296655148267746, + 0.009637737646698952, + -0.011153105646371841, + -0.02499750442802906, + -0.006167546380311251, + -0.02353062853217125, + -0.027325108647346497, + 0.007104043383151293, + 0.01020145509392023, + -0.0005296209710650146, + -0.022330457344651222, + -0.033386580646038055, + -0.013020038604736328, + -0.020536262542009354, + 0.02679169923067093, + 0.00721921119838953, + 0.0027276617474853992, + -0.019542180001735687, + -0.002463987795636058, + 0.01680239662528038, + 0.020512016490101814, + 0.008813378401100636, + -0.015711331740021706, + 0.029555730521678925, + -0.007989018224179745, + 0.006237253081053495, + 0.007067674770951271, + 0.025749126449227333, + -0.027325108647346497, + -0.0049340371042490005, + 0.008146616630256176, + -0.017432788386940956, + 0.007443485781550407, + -0.0006610791315324605, + 0.026209797710180283, + -0.005031020380556583, + 0.021154532209038734, + -0.008334522135555744, + -0.014753619208931923, + -0.004576410166919231, + 0.012753333896398544, + -0.01643870770931244, + 0.0017093346687033772, + 0.05814162641763687, + -0.0029731513932347298, + -0.015941668301820755, + 0.02974969707429409, + -0.028197960928082466, + -0.0008683056221343577, + 0.0005712935817427933, + -0.0015638594049960375, + -0.03270769491791725, + 0.00873457919806242, + -0.011886543594300747, + -0.008546673692762852, + 0.005434108432382345, + 0.001343373442068696, + 0.02224559709429741, + -0.008352706208825111, + -0.01533552072942257, + 0.008843685500323772, + 0.003555052448064089, + 0.02887684479355812, + 0.0014350531855598092, + 0.00634029833599925, + 0.025167224928736687, + -0.005822042468935251, + 0.01218961738049984, + -0.009419525042176247, + -0.008419382385909557, + -0.028585894033312798, + 0.0064918347634375095, + 0.0223789494484663, + -0.0008129947236739099, + -0.0017790416022762656, + -0.006619125604629517, + -0.004094523377716541, + 0.002779184142127633, + 0.021360622718930244, + 0.009249803610146046, + -0.011898666620254517, + -0.012789702974259853, + 0.008564857766032219, + -0.0002363973471801728, + -0.013650431297719479, + -0.0005841742386110127, + -0.022100120782852173, + -0.00999536458402872, + -0.03023461438715458, + -0.019081508740782738, + -0.0020442309323698282, + 0.004821899812668562, + 0.016729658469557762, + 0.0073161949403584, + -0.018123796209692955, + 0.0002990956709254533, + 0.010631819255650043, + -0.016450831666588783, + 0.02026955783367157, + 0.022087998688220978, + 0.020281679928302765, + 0.03585965931415558, + 0.028682878240942955, + 0.026573486626148224, + 0.004682485945522785, + -0.03530200570821762, + 0.035180773586034775, + 0.0067524779587984085, + -0.012450260110199451, + -0.024451972916722298, + -0.008364829234778881, + -0.0003062936884816736, + -0.014026242308318615, + 0.01834201067686081, + 0.003476253245025873, + 0.019311845302581787, + 9.95407099253498e-5, + -0.02119090035557747, + 0.01230478473007679, + 0.008589103817939758, + 0.012025957927107811, + 0.012092634104192257, + -0.002083630533888936, + 0.006722170859575272, + 0.01464451290667057, + 0.004197568167001009, + -0.007455608807504177, + 0.017129715532064438, + 0.0031065037474036217, + -0.008140554651618004, + -0.01921486109495163, + -0.004858268424868584, + 0.009619553573429585, + -0.00789809599518776, + 0.0071828425861895084, + 0.00492494460195303, + -0.008013264276087284, + -0.046818796545267105, + -0.006552449427545071, + 0.00609480869024992, + 0.008498181588947773, + -0.006716109346598387, + -0.020257433876395226, + -0.013662554323673248, + 0.004624901805073023, + -0.009752905927598476, + -0.0005235595162957907, + 0.018051059916615486, + -0.00820723082870245, + -0.0069464449770748615, + 0.013189760036766529, + 0.02219710499048233, + 0.017772231251001358, + 0.0084375673905015, + -0.016693290323019028, + -0.0017472188919782639, + 0.0042521217837929726, + 0.021845540031790733, + -0.005788704380393028, + 0.02155458927154541, + -0.016814518719911575, + 0.008680026046931744, + 0.005143157672137022, + 0.0044794268906116486, + 0.02130000665783882, + 0.004400627687573433, + 0.003630820894613862, + 0.006600941531360149, + 0.001995739061385393, + -0.007298010401427746, + -0.02841617353260517, + -0.0007925372919999063, + -0.021542465314269066, + -0.001322158263064921, + 0.011759253218770027, + 0.0016669044271111488, + -0.0003129234246443957, + 0.010419667698442936, + -0.009116451255977154, + 0.011250088922679424, + -0.017578264698386192, + -0.03183484449982643, + -0.004721885547041893, + -0.011250088922679424, + -0.027834272012114525, + 0.01398987416177988, + 0.018875420093536377, + -0.00022408498625736684, + 0.0042521217837929726, + -0.018438993021845818, + 0.001316096750088036, + -0.0013388273073360324, + 0.005834165494889021, + 0.013407972641289234, + 0.006122085265815258, + 0.0017896491335704923, + 0.019433073699474335, + -0.011922912672162056, + -0.0005114365485496819, + 0.011244027875363827, + 0.008395136334002018, + -0.011807744391262531, + 0.010710618458688259, + 0.0019275476224720478, + -0.020427156239748, + 0.016353847458958626, + -0.013117021881043911, + -0.002223044401034713, + -0.0008986130123957992, + 0.020815089344978333, + 0.02499750442802906, + -0.024573201313614845, + 0.0008213292458094656, + -0.0008289060788229108, + 0.007431362755596638, + -0.0033459316473454237, + 0.012038080021739006, + -0.008964914828538895, + 0.01742066629230976, + -0.049388863146305084, + 0.01731155999004841, + -0.0344291515648365, + 0.017347928136587143, + -0.01834201067686081, + -0.0193967055529356, + 0.0019517935579642653, + 0.006100870203226805, + 0.0067282323725521564, + 0.005049204919487238, + -0.0025685480795800686, + -0.017044855281710625, + 0.003782357554882765, + -0.002050292445346713, + -0.0013706500176340342, + 0.009971118532121181, + 0.019493689760565758, + 0.013638308271765709, + 0.01253512129187584, + 0.023373030126094818, + 0.001439599203877151, + -0.02722812630236149, + -0.0008667903020977974, + -0.01151073258370161, + 0.007055551744997501, + -0.00013420474715530872, + 0.016196249052882195, + -0.007710190489888191, + -0.003967232536524534, + 0.007940526120364666, + 0.004503672476857901, + 0.0006466831546276808, + -0.010128716938197613, + 0.01719032973051071, + 0.0048643299378454685, + -0.00010702283907448873, + 0.0164144616574049, + 0.01600228250026703, + -0.002101814839988947, + -0.002357912017032504, + 0.0015365828294306993, + 0.0037611424922943115, + -0.01120159775018692, + -0.00807994045317173, + 0.005982671398669481, + 0.009510447271168232, + -0.007710190489888191, + -0.0013479194603860378, + 0.012983669526875019, + 0.004230906255543232, + -0.0062069459818303585, + -0.01151073258370161, + -0.020075589418411255, + 0.00020230158406775445, + -0.019893746823072433, + 0.005518968682736158, + 0.003227733075618744, + 0.004749162122607231, + 0.0259430930018425, + -0.01465663593262434, + -0.015759823843836784, + -0.01152285560965538, + -0.006061470601707697, + 0.0020730230025947094, + -0.010013549588620663, + 0.002395796123892069, + -0.010152962990105152, + 0.030840761959552765, + 0.03998145833611488, + 0.019917992874979973, + -0.025967339053750038, + -0.0049340371042490005, + 0.0039884475991129875, + -0.011401626281440258, + -0.02887684479355812, + 0.008140554651618004, + -0.005537153221666813, + -0.006164515390992165, + -0.010746987536549568, + 0.002847375813871622, + -0.009328602813184261, + -0.007000998593866825, + 0.008316337130963802, + 0.01003173366189003, + -0.018645083531737328, + -0.009855951182544231, + -0.012407829985022545, + -0.010249946266412735, + -0.013577694073319435, + 0.00435516657307744, + -0.011231904849410057, + 0.008255722932517529, + -0.020827213302254677, + -0.014935463666915894, + 0.010462097823619843, + 0.0006224372773431242, + -0.002633708994835615, + -0.006607003044337034, + 0.021615203469991684, + -0.00593417976051569, + 0.022003138437867165, + -0.006976752541959286, + -0.021433359012007713, + 0.002979212673380971, + 0.0008395136683247983, + 0.00875882524996996, + -0.00667367922142148, + 0.012898809276521206, + -0.014062611386179924, + -0.005164372734725475, + 0.04480639100074768, + 0.009480140171945095, + -0.024670185521245003, + 0.01742066629230976, + -0.014741496182978153, + 0.0026215859688818455, + 0.007091920357197523, + -0.009965057484805584, + -0.0056492905132472515, + 0.002223044401034713, + -0.004012693651020527, + -0.024827783927321434, + -0.01880268193781376, + 0.018742067739367485, + -0.0021245453972369432, + -0.0038550952449440956, + 0.012619981542229652, + -0.010680311359465122, + -0.014705127105116844, + 0.00344291515648365, + 0.019724024459719658, + 0.0012698781210929155, + 0.014038365334272385, + 0.0003324337594676763, + 0.016608430072665215, + -0.010565143078565598, + 0.013117021881043911, + -0.01442629937082529, + 0.0014714219141751528, + -0.0053886473178863525, + 0.01662055216729641, + -0.010480282828211784, + 0.029119303449988365, + -0.0007781412568874657, + -0.008704272098839283, + 0.023179063573479652, + -0.011947158724069595, + 0.004609748255461454, + 0.015044569969177246, + 0.014996077865362167, + -0.0017623725580051541, + 0.01317763701081276, + 0.01976039446890354, + 0.009965057484805584, + 0.017093347385525703, + -0.008995221927762032, + -0.006485773250460625, + -0.02026955783367157, + -0.005334094166755676, + 0.0005610648659057915, + -0.00823147688060999, + 0.017360052093863487, + -0.005482600070536137, + 0.015032446943223476, + 0.007485915906727314, + 0.023106325417757034, + -0.019711902365088463, + 0.0055219996720552444, + -0.0025124794337898493, + 0.0005375766777433455, + 0.008777009323239326, + -0.004221814218908548, + -0.012753333896398544, + -0.014935463666915894, + 0.006764600984752178, + -0.0036671897396445274, + -0.011698638089001179, + -0.0034277616068720818, + -0.017481280490756035, + -0.0053856163285672665, + 0.008001141250133514, + 0.014098980464041233, + -0.003770234761759639, + 0.014959708787500858, + 0.02463381551206112, + -0.010528774000704288, + -0.0036065748427063227, + 0.019893746823072433, + -0.002691292902454734, + 0.014183840714395046, + 0.018354132771492004, + -0.0019578549545258284, + -0.005306817591190338, + 0.0030307353008538485, + 0.018560223281383514, + -0.0003350856713950634, + -0.0044794268906116486, + -0.003415638580918312, + 0.0030352813191711903, + 0.012401768937706947, + 0.02894958294928074, + -0.012298723682761192, + -0.003797511337324977, + -0.0027276617474853992, + -0.014523283578455448, + -0.0027109927032142878, + -0.020790843293070793, + -0.01053483597934246, + 0.00451579550281167, + 0.0014403569512069225, + -0.013638308271765709, + -0.005812950432300568, + 0.008934607729315758, + -0.004124830476939678, + -0.0193967055529356, + -0.005234079901129007, + -0.017663124948740005, + -0.0319075807929039, + 0.0006766116712242365, + -0.011565285734832287, + -0.012729087844491005, + -0.016426585614681244, + 0.030477073043584824, + 0.0065948800183832645, + -0.00020268041407689452, + 0.0024321649689227343, + 0.009455894120037556, + 0.0009349817992188036, + 0.017820723354816437, + 0.0015532518737018108, + -0.0012327515287324786, + -0.012656350620090961, + 0.015214291401207447, + 0.013056407682597637, + 0.012092634104192257, + -0.01746915839612484, + -0.008928545750677586, + 0.005961456336081028, + -0.0016972117591649294, + -0.021906154230237007, + 0.004394566174596548, + 0.015468873083591461, + 0.0028110069688409567, + 0.01780860126018524, + -0.011541039682924747, + -0.013238251209259033, + -0.022257719188928604, + -0.017541896551847458, + 0.0010584843112155795, + 0.012729087844491005, + 0.007449547294527292, + 0.00855273474007845, + 0.005143157672137022, + 0.008443628437817097, + -0.005991763435304165, + 0.00419453764334321, + -0.01401412021368742, + -0.0009508932125754654, + -0.0032853169832378626, + -0.006473650690168142, + -0.024803537875413895, + -0.012116879224777222, + 0.0016714504454284906, + -0.006843400187790394, + -0.016499321907758713, + -0.0417756550014019, + -0.0010630304459482431, + 0.007782928179949522, + 0.009243742562830448, + 0.011207658797502518, + 0.012632104568183422, + 0.012044142000377178, + -0.0003174695302732289, + -0.01103187631815672, + -0.015177922323346138, + 0.008304215036332607, + 0.012838194146752357, + -0.016038650646805763, + 0.001635081716813147, + -0.008395136334002018, + -0.0121653713285923, + 0.01857234537601471, + 0.011013692244887352, + 0.015141553245484829, + 0.020208941772580147, + -0.011795621365308762, + -0.022318335250020027, + 0.013420095667243004, + 0.00658881850540638, + 0.009074021130800247, + 0.007188904099166393, + -0.010874277912080288, + -0.011043999344110489, + -0.0001609130995348096, + 0.009540754370391369, + -0.020924195647239685, + 0.028222206979990005, + 0.021954646334052086, + -0.01248662918806076, + -0.0003040206211153418, + -0.003939955960959196, + 0.008019325323402882, + 0.023191185668110847, + 0.02759181335568428, + 0.005546245723962784, + 0.022645654156804085, + 0.0052946945652365685, + -0.00492494460195303, + -0.014353562146425247, + -0.016499321907758713, + 0.0015426442259922624, + 0.010904585011303425, + 0.02173643372952938, + 0.007625329773873091, + -0.015432504005730152, + 0.0030868039466440678, + 0.013723169453442097, + -0.017360052093863487, + 0.004306674934923649, + -0.019311845302581787, + 0.006740355398505926, + -0.002739784773439169, + 0.040320903062820435, + 0.002879198407754302, + 0.014802111312747002, + 0.007534408010542393, + -0.010437851771712303, + -0.01528702862560749, + 0.012656350620090961, + -0.016172003000974655, + 0.006358482409268618, + 0.02139699086546898, + -0.008649718016386032, + 0.008449689485132694, + -0.0020260466262698174, + 0.002538240747526288, + 0.00017445669800508767, + 0.009334664791822433, + -0.011371318250894547, + -0.004464272875338793, + -0.00036690838169306517, + -0.018632959574460983, + -0.010953077115118504, + -0.02226984314620495, + 0.013941382057964802, + -0.01221386343240738, + 0.016087142750620842, + 0.0011433449108153582, + 0.026524994522333145, + 0.0025473330169916153, + -0.016632674261927605, + 0.00025098276091739535, + -0.007122227922081947, + 0.0011562254512682557, + -0.003852064488455653, + -0.03292590752243996, + 0.013880767859518528, + 0.004846145864576101, + -0.015614348463714123, + 0.0007330590742640197, + -0.0003989205288235098, + -0.01531127467751503, + 0.010704556480050087, + -0.0020457461941987276, + -0.0035126220900565386, + 0.007431362755596638, + 0.006570633966475725, + -0.01960279606282711, + 0.005376524291932583, + -0.003758111735805869, + -0.007097981870174408, + -0.01962704211473465, + 0.0035914212930947542, + -0.003339870134368539, + 0.012110818177461624, + 0.0019790700171142817, + 0.012274477630853653, + -0.009631676599383354, + -0.0017366112442687154, + 0.0011850175214931369, + 0.03450189158320427, + 0.04313342273235321, + -0.006425158586353064, + 0.008473935537040234, + 0.0004106646229047328, + -0.021009055897593498, + 0.004403658211231232, + -0.00124942057300359, + -0.011001569218933582, + -0.01988162286579609, + 0.006800970062613487, + 0.01000748760998249, + 0.010777294635772705, + 0.017966197803616524, + -0.00551593815907836, + -0.0008993707015179098, + -0.005709905177354813, + -0.0036853740457445383, + -0.0171054694801569, + 0.006219068542122841, + -0.0036399129312485456, + -0.007122227922081947, + -0.01946944370865822, + 0.023106325417757034, + 0.016838764771819115, + -0.003321685828268528, + -0.0007353321416303515, + -0.009565000422298908, + -0.02054838463664055, + 0.005309848114848137, + 0.010262069292366505, + -0.025336947292089462, + -0.013298866339027882, + -0.015020323917269707, + -0.00818298477679491, + 0.019542180001735687, + 0.0018699635984376073, + 0.0007796566351316869, + -0.003809634130448103, + 0.0026837161276489496, + -0.000581522355787456, + -0.013492832891643047, + 0.00042430293979123235, + -0.026937175542116165, + -0.018584469333291054, + 0.0005981913418509066, + 0.01682664267718792, + -0.016729658469557762, + 0.024112530052661896, + 0.0020124081056565046, + -0.013541324995458126, + 0.007067674770951271, + -0.011941096745431423, + -0.012141125276684761, + -0.013262497261166573, + 0.03147115558385849, + 0.023336661979556084, + -0.011274334974586964, + -0.017796477302908897, + -0.013480710797011852, + -0.020051345229148865, + 0.0010796994902193546, + 0.0017305498477071524, + 0.03438065946102142, + -0.012632104568183422, + 0.009371033869683743, + 0.006643371656537056, + -1.866980346676428e-5, + -0.0038399414625018835, + -0.006076624151319265, + 0.0005034809000790119, + -0.013650431297719479, + -0.0018639022018760443, + -0.0067888470366597176, + -0.010922770015895367, + -0.008855808526277542, + -0.027810025960206985, + 0.003059527138248086, + -0.005334094166755676, + 0.027713043615221977, + 0.004491549450904131, + 0.02302146516740322, + 0.01859659142792225, + 0.005334094166755676, + -0.022972973063588142, + 0.00904371403157711, + -0.008176923729479313, + -0.0167539045214653, + -0.020766597241163254, + -0.003167118411511183, + -0.0049310061149299145, + -0.002329119946807623, + -0.018814804032444954, + 0.0004390777612570673, + 0.0019230014877393842, + -0.019384583458304405, + -0.014705127105116844, + 0.010831847786903381, + -0.003897525602951646, + -0.004570348653942347, + 0.004036939237266779, + 0.004146046005189419, + -0.008019325323402882, + -0.00046408132766373456, + -0.014535406604409218, + -0.05489267781376839, + 0.0029034444596618414, + 0.005103758070617914, + 0.008958853781223297, + 0.03021036833524704, + -0.0013714076485484838, + 0.005791734904050827, + 0.012595735490322113, + -0.012886686250567436, + -0.015881052240729332, + 0.015832560136914253, + -0.007455608807504177, + 0.04015117883682251, + 0.015359765850007534, + -0.020051345229148865, + 0.0064918347634375095, + -0.0021806140430271626, + -0.0024276189506053925, + 0.00454004155471921, + 0.016014404594898224, + -0.0031519646290689707, + 0.019687656313180923, + 0.03750837966799736, + -0.01001961063593626, + 0.009104329161345959, + 0.029676958918571472, + 0.010134778916835785, + -0.0038005420938134193, + 0.007837481796741486, + 0.007273764815181494, + -0.010092348791658878, + 0.01903301663696766, + 0.0065585109405219555, + -0.008825501427054405, + 0.004712793510407209, + -0.0011334950104355812, + 0.0021927370689809322, + 0.03789631277322769, + -0.006049347575753927, + -0.004667332395911217, + 0.010862154886126518, + -0.02933751791715622, + 0.000728512997739017, + 0.018232902511954308, + 0.011237965896725655, + -0.003979355562478304, + -0.019457319751381874, + -0.020827213302254677, + 0.022851744666695595, + -0.008625472895801067, + 0.016935748979449272, + -0.009049775078892708, + 0.02759181335568428, + -0.003942986484616995, + -0.015190045349299908, + 0.0030398275703191757, + 0.0016153819160535932, + 0.01875418983399868, + 0.012280539609491825, + 0.00047620426630601287, + 0.009286172688007355, + -0.01623261719942093, + -0.0015850745839998126, + -0.022366825491189957, + 0.0038338801823556423, + -0.009116451255977154, + 0.00999536458402872, + -0.00806781742721796, + -0.024185268208384514, + -0.00599782494828105, + -0.0003284559352323413, + -0.015856806188821793, + -0.0275433212518692, + -0.031252942979335785, + -0.01135313417762518, + 0.01623261719942093, + 0.038163017481565475, + 0.015384011901915073, + 0.007449547294527292, + 0.004912822041660547, + 0.01512943021953106, + 0.0022124366369098425, + 0.013189760036766529, + 0.019736148416996002, + 0.016329601407051086, + 0.01926335319876671, + 0.013104898855090141, + 0.007716252002865076, + -0.003603544319048524, + -0.006119054276496172, + 0.03195607289671898, + 0.016475077718496323, + 0.00940134096890688, + -0.01315339095890522, + 0.0015532518737018108, + -0.016450831666588783, + -0.0137716606259346, + -0.018608715385198593, + -0.03059830330312252 + ], + "88c08258-e948-4a2a-b0a8-e7d746e760a0": [ + -0.006711489986628294, + -0.020438984036445618, + -0.014628855511546135, + -0.04148699715733528, + -0.01930619217455387, + -0.036395519971847534, + 0.018149038776755333, + 0.033788878470659256, + -0.008922262117266655, + 0.003084727330133319, + -0.0071438997983932495, + 0.021608317270874977, + 0.0026660205330699682, + -0.016053982079029083, + -0.01285049319267273, + -0.014007646590471268, + -0.019854316487908363, + 0.013958924449980259, + 0.0029690121300518513, + -0.019501080736517906, + 0.048478636890649796, + -0.009324220940470695, + -0.026212569326162338, + 0.011979582719504833, + -0.028112737461924553, + 0.005143242422491312, + 0.017807982861995697, + -0.0010581864044070244, + -0.024507291615009308, + -0.00891617126762867, + 0.018453551456332207, + 0.007028184365481138, + 0.03702890872955322, + 0.012740868143737316, + 0.006839385721832514, + -0.007113448344171047, + -0.0021620497573167086, + 0.03464151918888092, + -0.019647246226668358, + -0.0056670065969228745, + -0.04253452271223068, + -0.008167066611349583, + 0.016102703288197517, + 0.020816581323742867, + -0.035250548273324966, + 0.00400435971096158, + 0.028794849291443825, + 0.004354550968855619, + 0.02242441475391388, + 0.0016367631033062935, + 0.01889205165207386, + -0.0220589991658926, + -0.005240687169134617, + 0.00033249129774048924, + 0.01599307917058468, + 0.028137098997831345, + 0.013215909712016582, + 0.028429431840777397, + 0.018185580149292946, + -0.028526877984404564, + -0.02060951106250286, + 0.010901602916419506, + 0.03866110369563103, + -0.006614045239984989, + -0.02989109978079796, + -0.03422737866640091, + 0.034568436443805695, + 0.0069733718410134315, + -0.04185241088271141, + -0.005511704366654158, + 0.030646294355392456, + 0.03632243722677231, + -0.029038460925221443, + -0.011839506216347218, + 0.008227969519793987, + 0.018952954560518265, + 0.01416599377989769, + -0.03162074089050293, + -0.0056030587293207645, + 0.012740868143737316, + -0.03505565971136093, + -0.006845476105809212, + 0.04095105081796646, + -0.016163606196641922, + 0.040220215916633606, + 0.0511583611369133, + -0.021474331617355347, + -0.030207794159650803, + -0.03698018565773964, + -0.03183998912572861, + 0.015578939579427242, + 0.018197759985923767, + 0.015688564628362656, + -0.015700744464993477, + -0.026724154129624367, + 0.0024665638338774443, + 0.021583955734968185, + 0.00825842097401619, + -0.02254622057080269, + -0.029355155304074287, + -0.012947937473654747, + 0.033764518797397614, + -0.04423980414867401, + -0.019769052043557167, + -0.0016093568410724401, + -0.00996979046612978, + 0.0029050640296190977, + -0.01232063863426447, + 0.02833198755979538, + 0.02587151527404785, + 0.01627323217689991, + -0.002489402424544096, + -0.012083117850124836, + 0.014653216116130352, + 0.01601743884384632, + -0.07741965353488922, + -0.017272036522626877, + -0.011589804664254189, + -0.013081924058496952, + -0.06723670661449432, + 0.02599331922829151, + 0.014190355315804482, + -0.0011609598295763135, + 0.005417305044829845, + 0.01930619217455387, + -0.04523861035704613, + -0.008672560565173626, + 0.007247434463351965, + 0.016723912209272385, + 0.006279079709202051, + -0.033642712980508804, + -0.008508122526109219, + -0.014677577652037144, + 0.023009082302451134, + -0.03408121317625046, + -0.008392407558858395, + 0.005749225616455078, + 0.037467408925294876, + -0.029355155304074287, + 0.0493556372821331, + -0.030256517231464386, + -0.013642230071127415, + -0.019464539363980293, + -0.009598283097147942, + 0.015444952994585037, + -0.005593923386186361, + -0.04762599989771843, + -0.008386317640542984, + 0.0017052787588909268, + 0.01029866561293602, + -0.03481204807758331, + -0.024251500144600868, + 0.030889905989170074, + 0.0341055728495121, + 0.008715192787349224, + 0.007667663972824812, + 0.02531120926141739, + 0.019354913383722305, + -0.00812443532049656, + -0.026017680764198303, + -0.00997588038444519, + -0.01652902364730835, + 0.033935047686100006, + -0.007253524847328663, + -0.0010886377422139049, + -0.008940532803535461, + 0.01784452423453331, + 0.003830786794424057, + -0.007448413874953985, + 0.02976929396390915, + 0.051645584404468536, + -0.03084118478000164, + 0.007192621938884258, + -1.7569032934261486e-5, + -0.0343979075551033, + -0.005088429898023605, + 0.01628541201353073, + 0.0033313839230686426, + 0.0013109330320730805, + -0.007692025043070316, + -0.004899631254374981, + -0.02060951106250286, + -0.008343685418367386, + 0.03578649088740349, + -0.03500693663954735, + 0.018027232959866524, + 0.002286900533363223, + 0.018977316096425056, + -0.030938629060983658, + 0.009634824469685555, + -0.015822550281882286, + -0.0007510078139603138, + -0.0015956537099555135, + 0.025286847725510597, + -0.006772392895072699, + 0.005426440387964249, + 0.005155423190444708, + 0.017941968515515327, + 0.0068089342676103115, + 0.01719895377755165, + -0.03359398990869522, + -0.05223025009036064, + -0.07103703916072845, + 0.012034395709633827, + -0.035080019384622574, + -0.011382735334336758, + -0.009829713962972164, + -0.0033983769826591015, + -0.0203415397554636, + -0.06967281550168991, + 0.04896586015820503, + -0.043119192123413086, + 0.0014304547803476453, + -0.028819210827350616, + -0.046651553362607956, + 0.004421544261276722, + 0.020171010866761208, + -0.00833150465041399, + 0.02587151527404785, + 0.030670655891299248, + -0.011053860187530518, + 0.014543591067194939, + 0.028648681938648224, + -0.015176980756223202, + -0.011443638242781162, + -0.015335327945649624, + 0.004966624081134796, + 0.023642471060156822, + -0.06124386936426163, + -0.00780165009200573, + 0.061341311782598495, + -0.005520839709788561, + 0.01877024583518505, + -0.03532363101840019, + -0.01108431164175272, + 0.012947937473654747, + -0.017686177045106888, + -0.023581568151712418, + 0.028916655108332634, + -0.02859996072947979, + 0.005319860763847828, + 0.00866037979722023, + 0.001168572693131864, + 0.006096371449530125, + 0.026188209652900696, + 0.004652974661439657, + -0.0047686900943517685, + 0.008313233964145184, + 0.012211013585329056, + -0.034032490104436874, + 0.0030695016030222178, + 0.02400788851082325, + 0.002757374895736575, + -0.005030572414398193, + -5.352786320145242e-5, + 0.012369360774755478, + -0.020438984036445618, + -0.018697163090109825, + -0.003596310969442129, + -0.023812999948859215, + -0.006455698050558567, + -0.008843088522553444, + 0.018672801554203033, + 0.004698651842772961, + 0.05305853113532066, + -0.01838046871125698, + 0.0046255686320364475, + -0.03437354788184166, + -0.014860286377370358, + -0.010895512998104095, + -0.028819210827350616, + -0.004050036892294884, + -0.0178688857704401, + -0.0038581930566579103, + -0.01449486892670393, + 0.027333181351423264, + 0.005785766988992691, + 0.010091596283018589, + -0.006796753965318203, + 0.004522033967077732, + 0.003176081692799926, + -0.007600671146064997, + 0.02152305282652378, + 0.02808837592601776, + 0.00045867430162616074, + -0.04370385780930519, + 0.03054885007441044, + 0.008514213375747204, + -0.029550043866038322, + -0.009829713962972164, + -0.003431873396039009, + -0.022765470668673515, + 0.006242538336664438, + 0.0062242671847343445, + 0.023788638412952423, + 0.009500838816165924, + -0.021096734330058098, + -0.0026172983925789595, + -0.02794221043586731, + 0.01717459224164486, + -0.019720330834388733, + 0.009366852231323719, + 0.03734560310840607, + -0.03461715951561928, + 0.006875927560031414, + 0.004707787185907364, + 0.06363125890493393, + 0.012022214941680431, + -0.04959924891591072, + -0.02216862328350544, + 0.059879645705223083, + -0.0009287678985856473, + -0.011729881167411804, + -0.01576164737343788, + 0.03493385389447212, + 0.003852102905511856, + 0.03108479455113411, + -0.030207794159650803, + -0.0027649877592921257, + -0.0024635186418890953, + -0.031815629452466965, + 0.012947937473654747, + -0.05198663845658302, + 0.028551237657666206, + 0.047309305518865585, + -0.033131130039691925, + 0.02665107138454914, + -0.007838191464543343, + 0.015384050086140633, + -0.03425174206495285, + 0.013496062718331814, + -0.054763808846473694, + -0.019062580540776253, + -0.031401488929986954, + 0.013033201918005943, + -0.03912396728992462, + -0.03897779807448387, + -0.02570098638534546, + -0.0023325777146965265, + -0.004671245813369751, + 0.0035384532529860735, + 0.03188871219754219, + -0.04691952466964722, + 0.013678771443665028, + 0.02059733122587204, + 0.009135421365499496, + -0.024361124262213707, + 0.017527829855680466, + -0.004150526598095894, + -0.0031608559656888247, + 0.00047009356785565615, + -0.01219883281737566, + 0.040390744805336, + 0.01930619217455387, + 0.012984479777514935, + -0.012357180938124657, + -0.007612851448357105, + -0.015688564628362656, + -0.003596310969442129, + 0.02928207255899906, + 0.008636018261313438, + 0.01652902364730835, + -0.015907814726233482, + 0.009500838816165924, + -0.012777409516274929, + 0.05905136466026306, + 0.027479348704218864, + 0.021742302924394608, + 0.018039412796497345, + -0.000534422171767801, + -0.0427781343460083, + 0.03651732578873634, + -0.004321054555475712, + 0.001162482425570488, + -0.0441179983317852, + 0.013349896296858788, + 0.025481736287474632, + 0.021998096257448196, + -0.01542059239000082, + 0.012357180938124657, + -0.008776094764471054, + 0.02400788851082325, + 0.03342346474528313, + -0.014409605413675308, + 0.021864108741283417, + 0.018270842730998993, + 0.039050884544849396, + -0.021425608545541763, + -0.005499524064362049, + -0.023520665243268013, + 0.004893540870398283, + -0.019318372011184692, + -0.013520424254238605, + -0.02285073511302471, + -0.020950566977262497, + 0.04431288689374924, + 0.0028989738784730434, + -0.0014989704359322786, + -0.004238835535943508, + -0.02587151527404785, + 0.02952568233013153, + -0.002556395484134555, + 0.01694316230714321, + 0.006614045239984989, + 0.014519230462610722, + -0.004646884743124247, + 0.0038673286326229572, + -0.009385122917592525, + -0.022728929296135902, + -0.03015907295048237, + 0.014799383468925953, + -0.007283976301550865, + 0.027333181351423264, + 0.0034775505773723125, + 0.023837361484766006, + -0.025944598019123077, + 0.027260098606348038, + 0.0017570460913702846, + -0.03320421278476715, + -0.014811564236879349, + 0.03347218409180641, + 0.06528781354427338, + -0.03673657774925232, + -0.0002348564739804715, + -0.023812999948859215, + -0.004397183191031218, + 0.02886793203651905, + 0.01808813586831093, + -0.006242538336664438, + 0.021705761551856995, + 0.0003155526937916875, + -0.007198712322860956, + -0.030134711414575577, + 0.01810031570494175, + -0.002754329703748226, + -0.011102582328021526, + -0.017150232568383217, + -0.003979998640716076, + -0.0012370883487164974, + 0.004704742226749659, + 0.0143608832731843, + 0.02665107138454914, + 0.02073131687939167, + 0.012777409516274929, + 0.011492360383272171, + -0.022205164656043053, + -0.006540962029248476, + -0.036151908338069916, + -0.020158831030130386, + 0.04285121709108353, + -0.006821115035563707, + 0.04265632852911949, + -0.03398377075791359, + 0.015932176262140274, + -0.017272036522626877, + 0.017479106783866882, + -0.0451655238866806, + -0.0019397545838728547, + 0.003666349221020937, + -0.005054933484643698, + -0.04355769231915474, + -0.0040987590327858925, + 0.02704084850847721, + -0.010414380580186844, + 0.00287156761623919, + -0.06304658949375153, + -0.02521376498043537, + 0.012887034565210342, + -0.004123120568692684, + -0.02202245593070984, + 0.023849541321396828, + 0.03990352153778076, + -0.043362803757190704, + 0.0033740156795829535, + 0.0019443222554400563, + 0.03461715951561928, + 0.017223315313458443, + 0.025091959163546562, + 0.006461788434535265, + -0.014531411230564117, + -0.014433966018259525, + -0.03359398990869522, + -0.0006592729478143156, + -0.020122289657592773, + 0.04082924500107765, + 0.0025807565543800592, + -0.03756485506892204, + -0.03145021200180054, + 0.017673995345830917, + -0.023179609328508377, + 0.047284942120313644, + -0.023959165439009666, + -0.0014951640041545033, + -0.02665107138454914, + -0.002445247955620289, + -0.05968475714325905, + 0.012874854728579521, + 0.008611657656729221, + -0.004123120568692684, + -0.026967765763401985, + 0.04684644192457199, + -0.00800871942192316, + 0.010536186397075653, + 0.010122047737240791, + -0.003733342280611396, + 0.020365899428725243, + -0.027113931253552437, + 0.01663864776492119, + 0.0040987590327858925, + 0.015140439383685589, + 0.0001602505217306316, + 0.0006931501557119191, + 0.013788396492600441, + -0.020195372402668, + -0.0278204046189785, + 0.01416599377989769, + -0.020889664068818092, + 0.021705761551856995, + 0.01769835688173771, + -0.041925497353076935, + 0.010858971625566483, + 0.019452357664704323, + -0.017637453973293304, + 0.025895874947309494, + 0.02652926556766033, + -0.00873346347361803, + -0.015213522128760815, + 0.0028076195158064365, + 0.04078052192926407, + 0.0037790194619446993, + -0.006486149504780769, + -7.583113983855583e-6, + -0.02611512504518032, + -0.013812758028507233, + 0.04002532735466957, + -0.005703548435121775, + 0.014909008517861366, + -0.01693098247051239, + -0.017418203875422478, + 0.054374031722545624, + -0.0245316531509161, + -0.011955222114920616, + 0.012911396101117134, + -0.013228090479969978, + 0.030232155695557594, + 9.663563105277717e-5, + -0.019842136651277542, + 0.005399034358561039, + -0.003818606259301305, + 0.013812758028507233, + -0.028575599193572998, + 0.0025959822814911604, + -0.008179247379302979, + -0.00038920703809708357, + 0.02584715373814106, + -0.024629097431898117, + -0.0015971761895343661, + -0.017089329659938812, + -0.033545270562171936, + 0.018709342926740646, + 0.006486149504780769, + -0.004531169310212135, + 0.008301053196191788, + -0.016626467928290367, + -0.020256275311112404, + -0.011480179615318775, + -0.01555457804352045, + 0.0191478431224823, + 0.017284218221902847, + 0.02310652658343315, + 0.020378081128001213, + 0.016723912209272385, + 0.02572534792125225, + -0.01718677394092083, + -0.028429431840777397, + 0.028697405010461807, + -0.023508485406637192, + 0.03225412964820862, + -0.025749709457159042, + 0.01350824348628521, + 0.013033201918005943, + -0.005027526989579201, + -0.0006992404232732952, + -0.01431216113269329, + -0.02099929004907608, + -0.00015444571909029037, + -0.020792219787836075, + -0.03897779807448387, + 0.0016565565019845963, + 0.012692146003246307, + -0.0019976121839135885, + 0.009129331447184086, + 0.028648681938648224, + -0.025116318836808205, + -0.009427755139768124, + 0.005061023868620396, + -0.029574405401945114, + 0.005237641744315624, + -0.007326608058065176, + 0.001986954128369689, + -0.005356402136385441, + 0.021839749068021774, + 0.054909974336624146, + -0.0056883227080106735, + -0.0036419881507754326, + -0.0014723255299031734, + -0.032716989517211914, + -0.006534871645271778, + -0.025262486189603806, + -0.028502516448497772, + -0.02335013821721077, + 0.023703373968601227, + 0.010779798030853271, + -0.01889205165207386, + 0.016078341752290726, + 0.01796633005142212, + 0.025506097823381424, + 0.010365658439695835, + 0.01611488312482834, + -0.025530459359288216, + 0.029087182134389877, + -0.04472702369093895, + 0.0393432155251503, + 0.00019241482368670404, + 0.022631485015153885, + -0.003169991308823228, + -0.014397424645721912, + -0.012740868143737316, + -0.025140680372714996, + 0.014969911426305771, + 0.002815232379361987, + 0.00800262950360775, + 0.01358132716268301, + -0.026602348312735558, + 0.02862432226538658, + -0.017613092437386513, + 0.018283024430274963, + 0.02952568233013153, + -0.002717787865549326, + 0.0017220269655808806, + -0.011985673569142818, + 0.001358893932774663, + -0.017893245443701744, + -0.0019321417203173041, + -0.009726178832352161, + 0.010237762704491615, + -0.02596895955502987, + 0.019367095082998276, + 0.00203110883012414, + -0.0012698236387223005, + -0.04509244114160538, + 0.009488658048212528, + 0.016602106392383575, + 0.010913783684372902, + -0.031036073341965675, + -0.026845959946513176, + -0.007899094372987747, + 0.008227969519793987, + -0.006510510575026274, + -0.010731075890362263, + 0.03191307187080383, + 0.013264632783830166, + 0.002093534218147397, + 0.02336231805384159, + -0.001796633005142212, + -0.0066444966942071915, + 0.01718677394092083, + -0.018283024430274963, + -0.010773707181215286, + 0.012332819402217865, + -0.015140439383685589, + -0.009251137264072895, + 0.01280177105218172, + 0.008288872428238392, + -0.005048843100667, + -0.0014000034425407648, + 0.0026081628166139126, + -0.02269238792359829, + -0.0028228452429175377, + -0.027625516057014465, + -0.0003852102963719517, + 0.008581206202507019, + -0.02740626595914364, + -0.013995465822517872, + 0.03656604886054993, + -0.02324051223695278, + 0.006443517282605171, + 0.036687854677438736, + -0.022728929296135902, + -0.009366852231323719, + -0.0008488329476676881, + -0.007612851448357105, + -0.01941581629216671, + -0.0060872361063957214, + -0.047187499701976776, + -0.01509171724319458, + -0.02060951106250286, + -0.011601985432207584, + 0.019988302141427994, + 0.0042631966061890125, + -0.026797236874699593, + 0.021985914558172226, + -0.027357542887330055, + -0.01193695142865181, + 0.007893004454672337, + 0.018173398450016975, + -0.015298786573112011, + -0.027089571580290794, + -0.00016833917470648885, + 0.004050036892294884, + 0.03539671376347542, + -0.012174472212791443, + -0.01076152641326189, + -0.014616674743592739, + -0.005204145330935717, + -0.007046455517411232, + -0.021060192957520485, + -0.004534214269369841, + 0.034982576966285706, + 0.022229526191949844, + -0.029623128473758698, + 0.023922624066472054, + -0.013849299401044846, + -0.004217519890516996, + -0.02901409938931465, + 0.0012043530587106943, + 0.016882259398698807, + 0.021206358447670937, + -0.00656532309949398, + -0.005338131450116634, + 0.03162074089050293, + -0.005347266793251038, + -0.020926205441355705, + -0.003252210095524788, + -0.002486357232555747, + 0.0022442685440182686, + -0.0005245254724286497, + -0.01074934657663107, + 0.029818017035722733, + -0.029842378571629524, + -0.029160266742110252, + -0.024105332791805267, + 0.00564264552667737, + 0.017430385574698448, + 0.023130888119339943, + -0.02321615256369114, + -0.00701600406318903, + 0.03819824382662773, + 0.0019321417203173041, + 0.030280878767371178, + 0.03237593546509743, + -0.03298496454954147, + 0.04986722394824028, + 0.031791266053915024, + -0.023593749850988388, + 0.004872224759310484, + 0.0018468777416273952, + 8.402684761676937e-5, + 0.005758360959589481, + 0.010901602916419506, + 0.001976296305656433, + -0.005663961637765169, + 0.020536428317427635, + -0.028258904814720154, + -0.009561741724610329, + -0.01482374407351017, + -0.018575357273221016, + 0.018867691978812218, + 0.02728446014225483, + -0.03408121317625046, + 0.020658234134316444, + -0.013276812620460987, + -0.005328996106982231, + 0.026407459750771523, + -0.017893245443701744, + -0.0041840230114758015, + 0.037589214742183685, + 0.004360641352832317, + -0.03520182520151138, + 0.018660621717572212, + 0.004308873787522316, + 0.0021940236911177635, + -0.005551291164010763, + -0.022363511845469475, + 0.00820969883352518, + 0.03084118478000164, + 0.04867352545261383, + 0.036931466311216354, + -0.017101509496569633, + -0.0015164799988269806, + 0.008745644241571426, + 0.03978171572089195, + -0.012204923667013645, + -0.012960118241608143, + -0.008977074176073074, + 0.0058527602814137936, + 0.016699550673365593, + -0.02545737475156784, + 0.005928888916969299, + 0.02177884615957737, + 0.0036480785347521305, + -0.04648102447390556, + 0.008100073784589767, + 0.031011711806058884, + 0.015810370445251465, + 0.0008503554854542017, + 0.010670172981917858, + 0.019099121913313866, + 0.05169430747628212, + 0.009659186005592346, + -0.00918414443731308, + 0.004872224759310484, + -0.02308216504752636, + 0.014409605413675308, + 0.007911275140941143, + 0.00977490097284317, + -0.0220589991658926, + -0.017235495150089264, + 0.012679965235292912, + -0.027235737070441246, + 0.03571340814232826, + 0.034154295921325684, + 0.02440984733402729, + 0.013094104826450348, + -0.031157879158854485, + -0.01601743884384632, + 0.03873419016599655, + 0.0024208868853747845, + 0.04212038591504097, + 0.01280177105218172, + -0.007570219691842794, + -0.017028426751494408, + -0.0036937554832547903, + 0.003340519266203046, + 0.022387873381376266, + 0.028185822069644928, + 0.003401421941816807, + -0.032010518014431, + -0.03551851958036423, + 0.02451947145164013, + 0.0046834261156618595, + -0.00989670678973198, + -0.009330310858786106, + 0.002292990917339921, + 0.00039853277849033475, + -0.010840700939297676, + 0.022119902074337006, + -0.020195372402668, + 0.029842378571629524, + -0.009330310858786106, + -0.020804399624466896, + -0.012935757637023926, + -0.006486149504780769, + 0.00701600406318903, + -0.023301415145397186, + 0.033009324222803116, + 0.013435160741209984, + 0.0312553234398365, + 0.009701818227767944, + 0.029038460925221443, + 0.009921068325638771, + 0.0210114698857069, + -0.017247676849365234, + -0.043508969247341156, + -0.020694775506854057, + 0.008142706006765366, + -0.01721113547682762, + 0.00989670678973198, + -0.011900409124791622, + 0.013215909712016582, + -0.036151908338069916, + 0.005928888916969299, + -0.006129867862910032, + -0.004613387864083052, + -0.030353961512446404, + -0.0022290428169071674, + -0.0031639011576771736, + -0.018928593024611473, + 0.0011365987593308091, + 0.012485076673328876, + 0.000601795909460634, + 0.016041800379753113, + 0.001989999320358038, + -0.018989495933055878, + -0.044653940945863724, + -0.004643839318305254, + 0.011309652589261532, + 0.0100246025249362, + -0.006382614839822054, + -0.022619305178523064, + 0.011334013193845749, + 0.023532846942543983, + -0.00656532309949398, + -0.05578697472810745, + -0.01902603916823864, + -0.029842378571629524, + -0.017077147960662842, + -0.04129210487008095, + 0.010383929125964642, + -0.012826132588088512, + -0.005021436605602503, + -0.017515648156404495, + -0.006967281457036734, + -0.0023508486337959766, + -0.04124338552355766, + -0.03132840618491173, + 0.02007356658577919, + 0.02218080498278141, + 0.01522570289671421, + 0.01863626018166542, + -0.002530511934310198, + -0.018843330442905426, + -0.001758568687364459, + -0.016979703679680824, + 0.0208653025329113, + 0.03688274323940277, + -0.009951519779860973, + 0.01168724987655878, + -0.004844818729907274, + -0.003504956839606166, + 0.01824648305773735, + -0.013861480168998241, + -0.010511825792491436, + -0.002401093253865838, + -0.010895512998104095, + -0.0005066352896392345, + -0.0045189885422587395, + 0.02611512504518032, + 0.007350969593971968, + 0.013033201918005943, + -0.004987940192222595, + 0.021985914558172226, + -0.005557381547987461, + -0.014068549498915672, + 0.04370385780930519, + -0.0016124019166454673, + 0.017747079953551292, + 0.011382735334336758, + -0.04618869349360466, + -0.022789832204580307, + -0.02098710834980011, + -0.020438984036445618, + 0.004464176017791033, + -0.04450777545571327, + 0.0053320410661399364, + -0.01043265126645565, + -0.011187846772372723, + 0.015834731981158257, + 0.006352163385599852, + -0.003504956839606166, + 0.014275618828833103, + 0.04197421669960022, + 0.00607201037928462, + -0.017673995345830917, + -0.00498489523306489, + 0.02913590520620346, + 0.0072291637770831585, + 0.00840458832681179, + 0.006303441245108843, + -0.0076433029025793076, + 0.004814367275685072, + 0.012174472212791443, + -0.012972299009561539, + 0.0021711853332817554, + -0.032205406576395035, + 0.03213232383131981, + -0.054763808846473694, + 0.00285329669713974, + 0.014604493975639343, + 0.010645811446011066, + -0.006961191538721323, + -0.012643423862755299, + 0.03344782441854477, + 0.0026766785886138678, + 0.016102703288197517, + 0.01902603916823864, + -0.015006452798843384, + 0.003663304029032588, + 0.001094728009775281, + -0.0013611778849735856, + 0.025433015078306198, + 0.003818606259301305, + 0.015164799988269806, + -0.003109088633209467, + -0.019001677632331848, + 0.033788878470659256, + -0.03166946396231651, + -0.02032935805618763, + 0.03527490794658661, + -0.01652902364730835, + 0.021559596061706543, + -0.043728217482566833, + 0.002603595145046711, + -0.02740626595914364, + 0.00550561398267746, + -0.018392648547887802, + -0.04538477584719658, + -0.013971105217933655, + 0.039952244609594345, + 0.0018560132011771202, + -0.017820162698626518, + 0.002160527277737856, + -0.027576792985200882, + 0.043216634541749954, + 0.007174351252615452, + 0.0003661781665869057, + -0.009665275923907757, + 0.012040485627949238, + 0.014275618828833103, + 0.04967233166098595, + 0.005883211735635996, + 0.0069733718410134315, + -0.015530217438936234, + -0.022119902074337006, + 0.012558159418404102, + -0.003501911647617817, + -0.028112737461924553, + -0.0553484745323658, + -0.018465733155608177, + 0.019525442272424698, + -0.008197518065571785, + -0.03802771493792534, + 0.029598766937851906, + 0.03213232383131981, + 3.651789666037075e-5, + 0.016504662111401558, + -0.0024848347529768944, + 0.013812758028507233, + 0.01371531281620264, + 0.01601743884384632, + -0.014738480560481548, + 0.0013429069658741355, + -0.007588490378111601, + -0.000857207051012665, + -0.004616433288902044, + -0.026797236874699593, + 0.017552189528942108, + -0.011163485236465931, + -0.00956783164292574, + 0.003976953681558371, + 0.02662670984864235, + 0.0016017439775168896, + 0.0027254007291048765, + -0.0100246025249362, + 0.0008488329476676881, + -0.009135421365499496, + -0.01627323217689991, + 0.000663459999486804, + 0.008648199029266834, + 0.03356963023543358, + 0.015676382929086685, + -0.04523861035704613, + 0.039148326963186264, + -0.016309773549437523, + 0.002923334948718548, + -0.005286363884806633, + 0.004585981834679842, + 0.006626226007938385, + -0.011748152785003185, + 0.03909960389137268, + 0.01718677394092083, + 0.025384292006492615, + 0.017345121130347252, + -0.04233963415026665, + 0.04691952466964722, + -0.03369143605232239, + -0.006376524455845356, + 0.013422979973256588, + 0.008197518065571785, + -0.004573801066726446, + 0.01449486892670393, + 0.014982091262936592, + 0.00035742338513955474, + 0.013033201918005943, + -0.01993958093225956, + 0.012454625219106674, + 0.013800577260553837, + 0.006510510575026274, + 0.02808837592601776, + -0.001954980194568634, + 0.013727493584156036, + -0.027771681547164917, + -0.013264632783830166, + 0.0031578107737004757, + -0.013800577260553837, + -0.028648681938648224, + 0.02648054249584675, + -0.005877121351659298, + -0.016468120738863945, + 0.026066403836011887, + -0.020390260964632034, + 0.01534750871360302, + -0.02202245593070984, + 0.009750540368258953, + 0.01890423335134983, + -0.017162412405014038, + 0.003952592611312866, + 0.041657522320747375, + -0.02399570867419243, + 0.014202536083757877, + -0.0033283387310802937, + -0.005298544652760029, + 0.0005979894776828587, + 0.005371627863496542, + -0.0028076195158064365, + 0.008757824078202248, + 0.00597152067348361, + -0.009086699225008488, + 0.009610463865101337, + 0.028697405010461807, + 0.029696211218833923, + -0.0074788653291761875, + 0.007168260868638754, + 0.023971347138285637, + -0.009506928734481335, + -0.010785887949168682, + -0.012034395709633827, + -0.016066161915659904, + -0.005776631645858288, + 0.02388608269393444, + -0.019708149135112762, + -0.009951519779860973, + -0.015652023255825043, + 0.011833416298031807, + -0.003520182566717267, + -0.01981777511537075, + -0.019525442272424698, + 0.01160807628184557, + 0.007984358817338943, + -0.010359568521380424, + 0.021998096257448196, + -0.0203415397554636, + 0.03303368389606476, + 0.020938387140631676, + -0.013008840382099152, + -0.018965136259794235, + 0.016480300575494766, + -0.008575116284191608, + -0.01940363645553589, + -0.020682595670223236, + -0.017077147960662842, + 0.0012462238082662225, + 0.002334100194275379, + 0.018173398450016975, + 0.0023173519875854254, + 0.009196324273943901, + -0.01982995495200157, + -0.003185217035934329, + 0.0243854857981205, + -0.00840458832681179, + -0.01070062443614006, + -0.02375209704041481, + -0.010268214158713818, + -0.014397424645721912, + -0.03108479455113411, + -0.029964182525873184, + -0.002745194360613823, + 0.005533020477741957, + -0.007332698442041874, + -0.01956198364496231, + -0.02123071998357773, + -0.03447099030017853, + 0.006218177266418934, + 0.0057735866867005825, + -0.007899094372987747, + 0.009994151070713997, + 0.006607954856008291, + -0.008020900189876556, + 0.008301053196191788, + -0.006461788434535265, + 0.01668737083673477, + 0.0033009324688464403, + 0.03729688376188278, + 0.015067355707287788, + -0.016187967732548714, + -0.0034562344662845135, + -0.01154108252376318, + -0.01835610717535019, + 0.004701697267591953, + -0.006601864937692881, + 0.014628855511546135, + -0.008307143114507198, + -0.004923992324620485, + -0.012253645807504654, + 0.001194456359371543, + 0.0005435575731098652, + -0.03834440931677818, + -0.005198054946959019, + -0.01587127335369587, + -0.002870044903829694, + -0.018197759985923767, + -0.021169817075133324, + -0.017527829855680466, + -0.016772635281085968, + -0.021827567368745804, + 0.014775021933019161, + 0.011059951037168503, + 0.003037527669221163, + -0.007076906505972147, + 0.020694775506854057, + -0.022765470668673515, + 0.015919994562864304, + -0.008770004846155643, + -0.022521859034895897, + 0.03081682324409485, + -0.023045623674988747, + 0.0036298076156526804, + -0.0050244820304214954, + -0.0033070226199924946, + -0.013556965626776218, + -0.01134010311216116, + -0.01825866289436817, + -0.00619990611448884, + -0.01186995767056942, + -0.00860556773841381, + 0.014982091262936592, + -0.002885270630940795, + -0.01704060658812523, + -0.02046334557235241, + -0.04869788885116577, + 0.018343927338719368, + 0.025749709457159042, + 0.004238835535943508, + 0.0053259506821632385, + 0.01548149436712265, + -0.014835924841463566, + -0.011833416298031807, + 0.017113689333200455, + 0.01234500017017126, + -0.007972178049385548, + 0.007259615231305361, + -0.0013817325234413147, + -0.005450801458209753, + -0.0031425850465893745, + -0.02967184968292713, + -0.01313064619898796, + 0.006212086882442236, + -0.002891361014917493, + -0.0067297606728971004, + 0.010201221331954002, + 0.0014662351459264755, + -0.015030814334750175, + -0.001265255967155099, + -0.018319565802812576, + 0.0076493932865560055, + 0.029038460925221443, + 0.0035445436369627714, + 0.011467999778687954, + -0.0220589991658926, + -0.001679395092651248, + -0.006827205419540405, + 0.008361956104636192, + -0.00652269134297967, + 0.01902603916823864, + 0.0015050607034936547, + -0.007296157069504261, + 0.008270601741969585, + 0.000663459999486804, + -0.027065210044384003, + 0.0006961952894926071, + -0.03478768467903137, + -5.638267975882627e-5, + 0.00511279096826911, + 0.010310846380889416, + -0.01062754075974226, + -0.00475650979205966, + 0.010925964452326298, + -0.00989670678973198, + -0.007375330664217472, + -0.010128137655556202, + 0.017089329659938812, + 0.009214595891535282, + -0.01548149436712265, + 0.014129452407360077, + -0.0012294754851609468, + 0.03356963023543358, + -0.01861189864575863, + -0.029038460925221443, + -0.019915219396352768, + -0.004905721638351679, + 0.010481374338269234, + -0.0008389362483285367, + 0.00342882820405066, + -0.022728929296135902, + -0.010938145220279694, + 0.01391020230948925, + -0.01704060658812523, + 0.003596310969442129, + -0.033545270562171936, + -0.021023651584982872, + 0.01680917665362358, + -0.0018879871349781752, + 0.015968717634677887, + -0.020804399624466896, + -0.035226184874773026, + -0.00400435971096158, + -0.02560354210436344, + 0.03532363101840019, + -0.0019595478661358356, + 0.0023965255822986364, + 0.01304538268595934, + 0.009050157852470875, + -0.0276742372661829, + -0.01769835688173771, + 0.03347218409180641, + 0.0039617279544472694, + -0.0021178952883929014, + -0.011492360383272171, + 0.011437548324465752, + 0.0038581930566579103, + -0.008093983866274357, + -0.00023219197464641184, + 0.012692146003246307, + 0.009293769486248493, + 0.020378081128001213, + 0.009025796316564083, + -0.033399101346731186, + -0.021145455539226532, + -0.007131719496101141, + -0.007862553000450134, + -0.0013429069658741355, + 0.004674290772527456, + -0.006498329807072878, + 0.026066403836011887, + -0.008246241137385368, + 0.010268214158713818, + 0.02451947145164013, + 0.012204923667013645, + -0.018855510279536247, + 0.011723791249096394, + -0.028526877984404564, + 0.020414622500538826, + -0.005064068827778101, + 0.003846012521535158, + 0.011675069108605385, + 0.011906499974429607, + -0.0018164264038205147, + -0.0009972834959626198, + -0.029038460925221443, + 0.007819920778274536, + -0.018928593024611473, + -0.014835924841463566, + -0.0002108759799739346, + -0.0469682477414608, + 0.002568576019257307, + -0.0034075123257935047, + -0.012606882490217686, + -0.028161460533738136, + 0.031279683113098145, + -0.0018712389282882214, + 0.00891617126762867, + 0.007082996889948845, + -0.008477671071887016, + 0.013155007734894753, + 0.006221222225576639, + -0.02255840227007866, + 0.008562935516238213, + 0.002204681746661663, + -0.0033648803364485502, + 0.00899534486234188, + -0.005234596785157919, + -0.018550995737314224, + 0.0013246361631900072, + 0.022668026387691498, + 0.000710279040504247, + 0.007070816587656736, + -0.03203487768769264, + 0.008148795925080776, + 0.013191549107432365, + -0.009305949322879314, + 0.006601864937692881, + 0.02611512504518032, + -0.01602962054312229, + -0.00237825489602983, + -0.011200027540326118, + 0.002809142228215933, + -0.007119538728147745, + -0.0020950566977262497, + 0.006455698050558567, + -0.0032796163577586412, + -0.0032461199443787336, + -0.008234060369431973, + 0.005170648917555809, + 0.007223073393106461, + -0.01022558193653822, + 0.008581206202507019, + -0.004525078926235437, + 0.013824937865138054, + -0.0059958817437291145, + 0.004896586295217276, + -0.0015157187590375543, + 0.01851445436477661, + 0.0160052590072155, + 0.0012051144149154425, + 0.03866110369563103, + -0.0110294995829463, + -0.013958924449980259, + 0.005283318925648928, + -0.020670413970947266, + -0.00763721251860261, + -0.00800871942192316, + 0.048113223165273666, + 0.0011350761633366346, + 0.0341055728495121, + 0.017503468319773674, + 0.005042752716690302, + -0.01371531281620264, + -0.03386196494102478, + 0.015688564628362656, + 0.018295204266905785, + -0.009452116675674915, + 0.004345415625721216, + -0.012180562131106853, + 0.02898973785340786, + -0.003830786794424057, + 0.011729881167411804, + 0.019756872206926346, + 0.004692561458796263, + -0.005651780869811773, + -0.05588442087173462, + -0.03581085428595543, + 0.00042403582483530045, + -0.013106284663081169, + 0.015786008909344673, + 0.017613092437386513, + 0.009470387361943722, + -0.00964700523763895, + 0.00260664033703506, + 0.01365441083908081, + 0.021060192957520485, + -0.00551474979147315, + -0.005067113786935806, + 0.028429431840777397, + -0.013727493584156036, + 0.024361124262213707, + -0.004844818729907274, + 0.016297591850161552, + -0.00931813009083271, + 0.018295204266905785, + 0.025165041908621788, + 0.012411992996931076, + -0.004254061263054609, + -0.023252693936228752, + -0.006050694268196821, + 0.0245316531509161, + 0.005837534554302692, + -0.02886793203651905, + -0.027576792985200882, + 0.010329117067158222, + 0.004378912039101124, + -0.006778482813388109, + 0.00702209398150444, + -0.0006056023412384093, + 0.024580374360084534, + 0.01979341357946396, + -0.0012233852175995708, + -0.01285049319267273, + 0.0005062546115368605, + 0.002236655680462718, + 0.006303441245108843, + -0.01063363067805767, + -0.01515261922031641, + -0.0029720573220402002, + 0.01042656134814024, + -0.023946985602378845, + -0.008136616088449955, + 0.04056127369403839, + -0.0038277418352663517, + 0.01717459224164486, + -0.022119902074337006, + 0.02070695534348488, + 0.05213280767202377, + -0.010249943472445011, + 0.03749177232384682, + -0.02662670984864235, + 0.016175786033272743, + -0.024348944425582886, + -0.011242658831179142, + 0.019342733547091484, + -0.005076249595731497, + 0.01365441083908081, + -0.01280177105218172, + -0.03673657774925232, + -0.0037302973214536905, + -0.01996394246816635, + 0.015615480951964855, + 0.017004065215587616, + 0.0225827619433403, + -0.018319565802812576, + 0.036955825984478, + -0.00024037578259594738, + -0.016955342143774033, + 0.03844185546040535, + 0.003937366884201765, + 0.02806401625275612, + -0.016090523451566696, + 0.005252867471426725, + 0.014129452407360077, + -0.01825866289436817, + -0.009713998064398766, + 0.007600671146064997, + 0.018027232959866524, + -0.01370313297957182, + 0.04436160996556282, + -0.030743738636374474, + -0.01207093708217144, + 0.034300465136766434, + -0.014982091262936592, + 0.004251016303896904, + -0.00260664033703506, + -0.010249943472445011, + -0.027357542887330055, + -0.020840942859649658, + 0.005219371058046818, + 0.0009165873052552342, + 0.004046991933137178, + 0.02297254092991352, + 0.005310725420713425, + -0.01965942792594433, + -0.04236399754881859, + 0.01304538268595934, + 0.016736092045903206, + 0.008471581153571606, + 0.007332698442041874, + -0.011699429713189602, + 0.008757824078202248, + -0.012357180938124657, + 0.016200147569179535, + 0.005986746400594711, + 0.0027878261171281338, + 0.026212569326162338, + 0.005164558533579111, + -0.034056853502988815, + -0.03503129631280899, + 0.011449729092419147, + 0.03030523844063282, + 0.0033313839230686426, + -0.0007422530325129628, + -0.015384050086140633, + -0.012186652980744839, + 0.0009150647674687207, + 0.01889205165207386, + 0.009269407950341702, + 0.014092911034822464, + 0.010603179223835468, + 0.015591119416058064, + 0.000531377037987113, + -0.011772513389587402, + 0.021717943251132965, + -0.006699309218674898, + 0.009287678636610508, + -0.01758873276412487, + -0.011431457474827766, + 0.01992739923298359, + 0.008958803489804268, + 0.0017189818900078535, + -0.0023523711133748293, + 0.010402199812233448, + -0.010603179223835468, + -0.0034075123257935047, + -0.0029613992664963007, + -0.005633510183542967, + 0.00246047368273139, + 0.012497257441282272, + -0.015530217438936234, + 0.012692146003246307, + -0.01055445708334446, + -0.025140680372714996, + 0.026139486581087112, + -0.014275618828833103, + 0.0006204473902471364, + 0.008514213375747204, + 0.028161460533738136, + -0.008221879601478577, + -0.026992125436663628, + 0.01456795260310173, + -0.016711732372641563, + -0.013435160741209984, + -0.015079536475241184, + 0.00014654739061370492, + 0.005368582904338837, + -0.00652269134297967, + 0.01941581629216671, + -0.014775021933019161, + 0.01527442503720522, + -0.00013322489394340664, + -0.009750540368258953, + -0.027260098606348038, + -0.012631243094801903, + -0.0014578610425814986, + 0.0028076195158064365, + 0.022071179002523422, + -0.022229526191949844, + -0.00029804313089698553, + 0.014190355315804482, + -0.007405782118439674, + -0.0375404916703701, + -0.011924770660698414, + 0.0009470387012697756, + 0.002075263299047947, + -0.0009104970376938581, + 0.013922383077442646, + 0.00459207221865654, + 0.005252867471426725, + -0.011650707572698593, + 0.004400228150188923, + -0.00977490097284317, + 0.01534750871360302, + 0.007046455517411232, + -0.013946743682026863, + 0.020231913775205612, + 0.008849178440868855, + 0.011717701330780983, + -0.019598525017499924, + -0.011382735334336758, + -0.014957730658352375, + -0.006352163385599852, + -0.0012698236387223005, + 0.015042994171380997, + 0.02031717821955681, + -0.011017318814992905, + 0.007698115427047014, + 0.006571413483470678, + -0.005121926311403513, + 0.0067236702889204025, + 0.030987350270152092, + -0.028673043474555016, + 0.012034395709633827, + -0.01141318678855896, + 0.009141512215137482, + 0.0004327906062826514, + 0.013094104826450348, + 0.011041679419577122, + -0.005816218443214893, + 0.014226896688342094, + -0.005490388721227646, + 0.009677456691861153, + -0.012947937473654747, + 0.021937193349003792, + 0.02950132265686989, + -0.012357180938124657, + 0.007941726595163345, + -0.008361956104636192, + -0.010067234747111797, + 0.021169817075133324, + -0.003736387472599745, + -0.014190355315804482, + -0.005584788043051958, + 0.006455698050558567, + 0.011577624827623367, + 0.0006097893929108977, + -0.00035951691097579896, + -0.007265705615282059, + -0.03598137944936752, + 0.013946743682026863, + -0.0004681903519667685, + -0.014092911034822464, + 0.019756872206926346, + 0.0004560098168440163, + 0.05218153074383736, + 0.03186435252428055, + 0.005828399211168289, + -0.009878436103463173, + -0.00584362493827939, + -0.003736387472599745, + 0.0010764572070911527, + 0.01902603916823864, + -0.010578818619251251, + 0.016833536326885223, + -0.031401488929986954, + 0.019635066390037537, + -0.034860771149396896, + 0.005048843100667, + -0.014080730266869068, + 0.0035597693640738726, + 0.0063947951421141624, + -0.01226582657545805, + -0.005094520282000303, + -0.0013383392943069339, + -0.0011373599991202354, + 0.018331745639443398, + -0.024105332791805267, + 0.0033192031551152468, + -0.004229700192809105, + 0.0017128916224464774, + -0.0070586358197033405, + 0.004893540870398283, + 0.020572969689965248, + 0.03069501742720604, + 0.004071353003382683, + 0.01641939766705036, + -0.016845718026161194, + 0.00535031221807003, + -0.004930082708597183, + 0.027649875730276108, + 0.01732075959444046, + -0.008928352035582066, + -0.0018453551456332207, + 0.003169991308823228, + -0.004266242031008005, + -0.0026340465992689133, + -8.145751053234562e-5, + -0.008794366382062435, + 0.013605687767267227, + -0.01227191649377346, + -0.005191964562982321, + 0.006190770771354437, + 0.009628734551370144, + -0.016577744856476784, + -0.0013482359936460853, + 0.009628734551370144, + 0.027089571580290794, + -0.00455553038045764, + -0.009835803881287575, + 0.03807643800973892, + -0.021425608545541763, + 0.008264511823654175, + -0.00964091531932354, + -0.018599718809127808, + 0.015359689481556416, + -0.013094104826450348, + -0.004759554751217365, + 0.016443759202957153, + 0.014019827358424664, + 0.008045261725783348, + 0.017113689333200455, + 0.01449486892670393, + -0.011102582328021526, + -0.014092911034822464, + -0.03603010252118111, + 0.006997732911258936, + -0.014105090871453285, + -0.009421665221452713, + -0.019903039559721947, + 0.014738480560481548, + -0.01272868737578392, + 0.002644704654812813, + 0.007947816513478756, + -0.023289235308766365, + 0.00944602582603693, + -0.029623128473758698, + 0.02481180615723133, + 0.03293624147772789, + -0.00326439063064754, + -0.00977490097284317, + 0.01482374407351017, + 0.004141391254961491, + 0.005864940583705902, + 0.008690831251442432, + 0.004381957463920116, + -0.005520839709788561, + 0.002627956448122859, + 0.0007848849636502564, + 0.005240687169134617, + 0.029964182525873184, + -0.03790590912103653, + -0.01628541201353073, + -0.0011708565289154649, + -0.0005793379968963563, + 0.003370970720425248, + -0.017004065215587616, + -0.015371869318187237, + 0.008386317640542984, + -0.005319860763847828, + 0.031961794942617416, + 0.008843088522553444, + -0.0018773291958495975, + -0.014787202700972557, + -0.00827669259160757, + -0.0070647262036800385, + -0.006699309218674898, + -0.018733704462647438, + -0.00845940038561821, + 0.018965136259794235, + 0.013264632783830166, + 0.007503226399421692, + 0.0030984305776655674, + -0.007357059512287378, + 0.024251500144600868, + 0.01096250582486391, + 0.023033443838357925, + -0.008240150287747383, + 0.004418498836457729, + 0.007082996889948845, + 0.018587538972496986, + 0.006595774553716183, + -0.018343927338719368, + -0.018002871423959732, + -0.016187967732548714, + -0.012655604630708694, + -0.0267728753387928, + -0.008386317640542984, + -0.004777825437486172, + -0.010791977867484093, + 0.00433323485776782, + 0.011528902687132359, + -0.0007475820020772517, + -0.021912831813097, + -0.005015346687287092, + -0.000548886600881815, + 0.005536065436899662, + -0.007576309610158205, + -0.009878436103463173, + -0.01043265126645565, + -0.018392648547887802, + 0.007119538728147745, + 0.009531290270388126, + 0.0033922865986824036, + 0.008818726986646652, + 0.005508659407496452, + 0.03690710291266441, + -0.012509437277913094, + 0.010901602916419506, + -0.006504420191049576, + 0.0034440539311617613, + 0.003288751933723688, + 0.004856999032199383, + 0.014714119024574757, + 0.013690952211618423, + -0.03459279611706734, + 0.015262244269251823, + 0.004522033967077732, + -0.016187967732548714, + 0.011662888340651989, + -0.0021331210155040026, + -0.0009462774614803493, + 0.0002776787441689521, + -0.021486511453986168, + 0.004406318534165621, + 0.0003052753454539925, + 0.0036937554832547903, + -2.0768809918081388e-5, + -0.014190355315804482, + 0.0006276795757003129, + -0.001030780142173171, + -0.020195372402668, + 0.023898262530565262, + -0.0007000017212703824, + 0.009159782901406288, + 0.01560330018401146, + -0.014324340969324112, + -0.014909008517861366, + -2.3468994186259806e-5, + 0.01756437122821808, + -0.027722960337996483, + 0.008100073784589767, + 0.0013642229605466127, + 0.002838070970028639, + -0.033764518797397614, + 0.014921189285814762, + 0.003815561067312956, + 0.0032308942172676325, + 0.01941581629216671, + -0.006790663581341505, + 0.0005523123545572162, + 0.022375693544745445, + 0.011699429713189602, + 0.011041679419577122, + -0.0024619961623102427, + -0.010408290661871433, + 0.021937193349003792, + 0.001335294102318585, + 0.013069743290543556, + -0.00763721251860261, + -0.000939425895921886, + -0.022229526191949844, + 0.0055817426182329655, + -0.028137098997831345, + 0.03578649088740349, + 0.007095177657902241, + -0.011437548324465752, + 0.007174351252615452, + 0.014519230462610722, + 0.0027162653859704733, + -0.012162291444838047, + -0.014738480560481548, + 0.0009051680681295693, + 0.013727493584156036, + 0.012381541542708874, + -0.012442444451153278, + 0.005895392037928104, + -0.034178659319877625, + -0.010341297835111618, + 0.0051828292198479176, + -0.020244095474481583, + -0.006534871645271778, + -0.018587538972496986, + 0.010036783292889595, + 0.025286847725510597, + -0.0038246966432780027, + -0.00138553895521909, + 0.014701939187943935, + 0.016480300575494766, + -0.0022701523266732693, + -0.013958924449980259, + -0.006461788434535265, + -0.005429485812783241, + -0.003754658391699195, + 0.009013616479933262, + 0.012168381363153458, + -0.012095298618078232, + 0.01423907745629549, + -0.005621329415589571, + -0.0002103050210280344, + 0.01613924466073513, + -0.01101122796535492, + -0.0014167516492307186, + -0.014921189285814762, + 0.014348702505230904, + -0.022253887727856636, + 0.003258300479501486, + -0.02335013821721077, + 0.03749177232384682, + 0.012862673960626125, + -0.015323147177696228, + 0.000490267644636333, + -0.007704205811023712, + 0.005645690485835075, + -0.02478744462132454, + -0.022460956126451492, + -0.003370970720425248, + -0.014933369122445583, + -0.007338788826018572, + -0.004802186507731676, + -0.007953907363116741, + -0.03481204807758331, + 0.00518587464466691, + 0.0038947348948568106, + 0.007271795533597469, + -0.0004849386459682137, + 0.010085505433380604, + 0.012290187180042267, + -0.01599307917058468, + 0.01022558193653822, + 0.02518940344452858, + 0.011632436886429787, + 0.014811564236879349, + -0.01651684194803238, + 0.006620135623961687, + 0.001993044512346387, + -0.005173693876713514, + -0.0029629217460751534, + 0.0014365450479090214, + 0.02572534792125225, + -0.008069622330367565, + -0.012131839990615845, + 0.02007356658577919, + -0.010493554174900055, + -0.0022990810684859753, + 0.008977074176073074, + -0.04918511211872101, + 0.0007304531172849238, + 0.004695606883615255, + -0.009878436103463173, + -0.01449486892670393, + -0.018161218613386154, + -0.019452357664704323, + 0.013727493584156036, + 0.0026629753410816193, + -0.011882138438522816, + -0.009525199420750141, + -0.016053982079029083, + 0.006455698050558567, + 0.006145093590021133, + -0.004360641352832317, + -0.020767858251929283, + -0.005262002814561129, + 0.006607954856008291, + 0.01706496812403202, + 0.016041800379753113, + 0.01383711863309145, + 0.0012249078135937452, + -0.009860165417194366, + 0.007253524847328663, + -0.0029553088825196028, + -0.007838191464543343, + -0.014531411230564117, + 0.01468975841999054, + -0.010274304077029228, + 0.011315742507576942, + 0.004141391254961491, + 0.018587538972496986, + 0.014811564236879349, + -0.010189040564000607, + 0.0133864376693964, + -0.008374136872589588, + -0.008806546218693256, + -0.020840942859649658, + -0.004978804849088192, + 0.0058314441703259945, + 0.013033201918005943, + 0.0036145818885415792, + -0.001089399098418653, + 0.020158831030130386, + -0.011681159026920795, + -0.020682595670223236, + 0.015846911817789078, + -0.006376524455845356, + 0.009653096087276936, + 0.0005051126936450601, + 0.012655604630708694, + -0.004308873787522316, + 0.012101388536393642, + -0.0035658597480505705, + -0.00845940038561821, + 0.007582399994134903, + 0.002139211166650057, + -0.0036298076156526804, + 0.03310677036643028, + 0.012679965235292912, + 0.0045403046533465385, + -0.01527442503720522, + -0.007235254161059856, + 0.008045261725783348, + -0.009616553783416748, + 0.0013581326929852366, + -0.022631485015153885, + -0.004019585438072681, + 0.017649635672569275, + 0.017686177045106888, + -0.01234500017017126, + 0.01995176076889038, + -0.02296035923063755, + -0.03149893507361412, + -0.0220589991658926, + -0.0012614495353773236, + 4.8008543672040105e-5, + -0.002305171452462673, + -0.00043811960495077074, + 0.007844282314181328, + -0.01252161804586649, + -0.021474331617355347, + -0.00685156648978591, + 0.015371869318187237, + -0.020012663677334785, + 0.006053739693015814, + -0.014726299792528152, + -0.0030344827100634575, + -0.0033070226199924946, + -0.012125750072300434, + 0.007935636676847935, + -0.03225412964820862, + 0.0047686900943517685, + -0.010128137655556202, + 0.014080730266869068, + -0.0027939165011048317, + 0.008081803098320961, + 0.009628734551370144, + 0.051255807280540466, + 0.000833607220556587, + -0.012150110676884651, + 0.026724154129624367, + 0.0014784157974645495, + 0.021608317270874977, + 0.01371531281620264, + 0.010919874534010887, + 0.012454625219106674, + 0.024970153346657753, + 0.0011061473051086068, + 0.0013368166983127594, + -0.013532605022192001, + 0.0028319808188825846, + 0.007204802706837654, + 0.002501582959666848, + -0.004954443778842688, + -0.0007274079835042357, + 0.026870321482419968, + -0.012753048911690712, + 0.001086353906430304, + -0.01449486892670393, + 0.0009569354588165879, + -0.0071438997983932495, + 0.0007247434696182609, + 0.017941968515515327, + 0.011382735334336758, + 0.006406975910067558, + 0.004238835535943508, + 0.006053739693015814, + 0.013520424254238605, + -0.010164679028093815, + 0.0023843450471758842, + -0.0017372526926919818, + 0.010517915710806847, + 0.006062875036150217, + 0.01705278642475605, + -0.020097928121685982, + 0.00878827553242445, + 0.001840787474066019, + 0.01456795260310173, + 0.0033922865986824036, + 0.01718677394092083, + -0.008020900189876556, + 0.0006653632153756917, + 0.0073936013504862785, + -0.016200147569179535, + 0.0025244215503335, + -0.005003165919333696, + 0.01573728583753109, + -0.007265705615282059, + -0.004628613591194153, + -0.0024345899000763893, + 0.003617627080529928, + -0.007692025043070316, + -0.0028106647077947855, + -0.0093120401725173, + 0.002026541158556938, + -0.012101388536393642, + -0.0025350796058773994, + 0.006437427364289761, + -0.011461908929049969, + -0.0011282245395705104, + -0.010164679028093815, + 0.006778482813388109, + 0.026577986776828766, + 0.019525442272424698, + -0.014775021933019161, + 0.017637453973293304, + 0.02386172115802765, + 0.00886135920882225, + 0.005968475714325905, + 0.023812999948859215, + 0.015055174939334393, + 0.015505855903029442, + -0.003093862906098366, + 0.006044603884220123, + -0.0028137098997831345, + -0.0031075659207999706, + 0.009732269681990147, + 0.01850227452814579, + 0.024093152955174446, + -0.009305949322879314, + 0.018465733155608177, + -0.0053533571772277355, + 0.004141391254961491, + 0.005569562315940857, + 0.02098710834980011, + 0.012253645807504654, + -0.024458568543195724, + -0.001165527617558837, + 0.0056883227080106735, + -0.01875806599855423, + 0.030865544453263283, + -0.008562935516238213, + 0.005432530771940947, + 0.022071179002523422, + -0.010895512998104095, + -0.013362077064812183, + 0.003995224367827177, + 0.017016245052218437, + -0.016224509105086327, + 0.00521328067407012, + 0.0002873851335607469, + -0.010548367165029049, + 0.0018940774025395513, + -0.0034136027097702026, + 0.008386317640542984, + -0.007253524847328663, + -0.0010064189555123448, + -0.012655604630708694, + -0.006406975910067558, + 0.01055445708334446, + 0.016468120738863945, + -0.0037120264023542404, + -0.0004746612976305187, + -0.0028106647077947855, + -0.002331055235117674, + -0.0020189282950013876, + 0.012789590284228325, + 0.013861480168998241, + 0.00939121376723051, + 0.01864844188094139, + -0.01121220737695694, + 0.013447340577840805, + -0.012789590284228325, + 0.0016809175722301006, + -0.0012781977420672774, + 0.001094728009775281, + 0.01332553569227457, + -0.0016656919615343213, + -0.0005142480949871242, + -0.03493385389447212, + -0.012186652980744839, + -0.007113448344171047, + 0.010992957279086113, + 0.018319565802812576, + -0.006674948148429394, + 0.007076906505972147, + -0.004193158820271492, + -0.025262486189603806, + -0.009165872819721699, + 0.013569146394729614, + 0.003964772913604975, + 0.017941968515515327, + -0.031693823635578156, + 0.02349630557000637, + -0.008636018261313438, + 0.023313596844673157, + 0.0020341540221124887, + 0.022229526191949844, + -0.01062754075974226, + 0.03434918448328972, + 0.014007646590471268, + 0.010158589109778404, + 0.004101804457604885, + -0.0009097357396967709, + -0.0083375945687294, + -0.012186652980744839, + -0.017345121130347252, + 0.023946985602378845, + 0.00018166167137678713, + 0.021937193349003792, + -0.002615775680169463, + 0.011334013193845749, + -0.020012663677334785, + -0.00750931678339839, + -0.021291622892022133, + 2.902399683080148e-5, + -0.00812443532049656, + -0.018697163090109825, + 0.003422738052904606, + -0.006735851056873798, + -0.017150232568383217, + -0.019744692370295525, + 0.010542276315391064, + -0.0026203435845673084, + -0.01666300930082798, + -0.004153571557253599, + -0.013776215724647045, + 0.010706714354455471, + -0.014531411230564117, + 0.01795414835214615, + 0.0016367631033062935, + -0.012777409516274929, + 0.020914025604724884, + -0.011467999778687954, + 0.016857897862792015, + -0.005998927168548107, + -0.02874612808227539, + -0.006218177266418934, + -0.006796753965318203, + 0.03814952075481415, + -0.00320044276304543, + 0.006888107862323523, + -0.008118344470858574, + -0.018587538972496986, + 0.02403225004673004, + -0.029550043866038322, + -0.005989791359752417, + 0.008684741333127022, + -0.007223073393106461, + -0.012533798813819885, + 0.006026333197951317, + 0.015493675135076046, + -0.0018057683482766151, + -0.018989495933055878, + -0.004994030576199293, + 0.006918559316545725, + 0.027089571580290794, + -0.007375330664217472, + -0.012972299009561539, + 0.012631243094801903, + -0.00037150716525502503, + 0.02152305282652378, + 0.007685934659093618, + 0.005813173484057188, + 0.017479106783866882, + -9.866968866845127e-6, + -0.017016245052218437, + 0.014129452407360077, + -0.02311870828270912, + 0.0015461700968444347, + -0.014385243877768517, + -0.02097492851316929, + -0.011802964843809605, + -0.005529975518584251, + -0.011041679419577122, + -0.005395988933742046, + 0.006050694268196821, + -0.010280394926667213, + -0.01464103627949953, + -0.021437790244817734, + 0.0011723791249096394, + 0.0029553088825196028, + 0.021693581715226173, + 0.010231672786176205, + 0.0034105575177818537, + -0.004473311360925436, + -0.013349896296858788, + 0.0014776544412598014, + 0.007917365990579128, + 0.018307385966181755, + -0.03466587886214256, + 0.02219298481941223, + 0.016967523843050003, + 0.003906915429979563, + 0.010724985040724277, + 0.0051615131087601185, + -0.02060951106250286, + -0.007259615231305361, + 0.015116077847778797, + -0.005593923386186361, + 0.017004065215587616, + -0.011991763487458229, + 0.015834731981158257, + -0.0033831512555480003, + 0.01611488312482834, + -0.01784452423453331, + -0.02321615256369114, + -0.0024406802840530872, + -0.009092790074646473, + -0.008824817836284637, + 0.006967281457036734, + 0.04974541813135147, + 0.00028757547261193395, + -0.01758873276412487, + 0.009196324273943901, + -0.026066403836011887, + -0.02166922017931938, + -0.0014753706054762006, + 0.011126943863928318, + -0.026919042691588402, + 0.02309434674680233, + -0.008398497477173805, + -0.02138906717300415, + 0.0033100678119808435, + 0.003681574948132038, + 0.030085988342761993, + 0.004394137766212225, + -0.020926205441355705, + 0.015712926164269447, + -0.011522811837494373, + 0.03322857245802879, + -0.007856463082134724, + -0.005880166310817003, + -0.0005005449638701975, + -0.014628855511546135, + 0.0045463950373232365, + -0.021072372794151306, + 0.002973579801619053, + -0.021705761551856995, + 0.0005378479836508632, + 0.021449970081448555, + 0.00750931678339839, + -0.00567918736487627, + -0.00037093617720529437, + 3.64703155355528e-5, + -0.005986746400594711, + 0.016979703679680824, + 0.0016398081788793206, + -0.023143067955970764, + -0.005021436605602503, + 0.0276742372661829, + 0.0036328528076410294, + -0.0065592327155172825, + -0.01207093708217144, + -0.003989133983850479, + 0.004695606883615255, + -0.013556965626776218, + -0.028770487755537033, + -0.015932176262140274, + 0.01954980194568634, + 0.02376427687704563, + 0.011169576086103916, + -0.002119417767971754, + -0.01246680598706007, + 0.01010377611964941, + -0.014105090871453285, + 0.017747079953551292, + 0.009665275923907757, + 0.016236688941717148, + 0.014543591067194939, + 0.038636744022369385, + 0.01468975841999054, + -0.0032187136821448803, + -0.017613092437386513, + 0.03978171572089195, + 0.00919023435562849, + -0.014019827358424664, + -0.018051592633128166, + -0.01576164737343788, + -0.0007411111146211624, + 0.0011289858957752585, + 0.01431216113269329, + -0.005572607275098562, + 0.020536428317427635, + -0.0033861964475363493, + -0.03612754866480827, + 0.010645811446011066, + -0.005539110861718655, + 0.01956198364496231, + 0.006754121743142605, + 0.004421544261276722, + -0.009586102329194546, + 0.015323147177696228, + 0.01825866289436817, + -0.01783234253525734, + 0.016602106392383575, + 0.01049964502453804, + -0.004823502618819475, + -0.018002871423959732, + -0.012411992996931076, + 0.002729968633502722, + -0.012655604630708694, + -0.010079415515065193, + 0.01941581629216671, + -0.005883211735635996, + -0.03420301899313927, + 0.0006303440895862877, + 0.014604493975639343, + 0.012679965235292912, + -0.011991763487458229, + -0.027187015861272812, + -0.01901385746896267, + 0.0013961970107629895, + -0.024750903248786926, + -0.011321832425892353, + 0.011565444059669971, + 0.004165752325206995, + 0.0039343214593827724, + 0.021181998774409294, + 0.02847815491259098, + 0.012022214941680431, + 0.004448950290679932, + 0.005255912896245718, + -0.007783379405736923, + 0.0278204046189785, + 0.00964700523763895, + -0.020962748676538467, + 0.019903039559721947, + 0.0011297471355646849, + -1.0675834346329793e-5, + -0.007277885917574167, + 0.012405903078615665, + 0.014019827358424664, + 0.0013406231300905347, + -0.012424173764884472, + 0.03164510056376457, + -0.018831148743629456, + -0.008380226790904999, + -0.02229042910039425, + 0.0054964786395430565, + -0.02952568233013153, + 0.008282782509922981, + 0.024738721549510956, + 0.005700503010302782, + -0.00623644795268774, + 0.03069501742720604, + -0.005941069219261408, + -0.014178174547851086, + -0.026943404227495193, + -0.02626129239797592, + 0.01874588616192341, + -0.0026112080086022615, + -0.015980897471308708, + 0.022534040734171867, + 0.017552189528942108, + 0.014458327554166317, + -0.006882017944008112, + -0.02216862328350544, + 0.012716507539153099, + 0.00702209398150444, + 0.015944356098771095, + 0.006413066294044256, + -0.002556395484134555, + 0.0006862985901534557, + 0.017649635672569275, + -0.028258904814720154, + -0.0006242538220249116, + 0.002577711595222354, + 0.006492239888757467, + -0.017917606979608536, + 0.009866255335509777, + 0.009415574371814728, + -0.010938145220279694, + 0.011748152785003185, + -0.012180562131106853, + 0.0028837481513619423, + -0.01082852017134428, + 0.013362077064812183, + 0.00577054126188159, + -0.011547173373401165, + 0.0035445436369627714, + 0.0022275203373283148, + 0.00584362493827939, + -0.003952592611312866, + 0.006029378157109022, + -0.027747321873903275, + 0.0025244215503335, + -0.04450777545571327, + 0.002673633396625519, + -0.01640721783041954, + 0.007850372232496738, + -0.002274719998240471, + -0.012107479386031628, + 0.02648054249584675, + 0.0030223019421100616, + 0.017272036522626877, + -0.005158468149602413, + 0.0058588506653904915, + -0.011918680742383003, + 0.003922141157090664, + -0.001881896867416799, + -0.015201342292129993, + -0.009586102329194546, + 0.01337425783276558, + 0.013971105217933655, + 0.003760748542845249, + 0.028941016644239426, + 0.0028456838335841894, + -0.018270842730998993, + 0.014482689090073109, + -0.0008023945265449584, + 0.011522811837494373, + -0.005925843492150307, + 0.014762841165065765, + -0.012874854728579521, + -0.010310846380889416, + 0.00800871942192316, + -0.014799383468925953, + -0.008575116284191608, + -0.022278249263763428, + 0.018331745639443398, + -0.00498489523306489, + -0.01391020230948925, + 0.02192501164972782, + 0.0011876048520207405, + -0.009945428930222988, + -0.007893004454672337, + -0.022217346355319023, + -0.00918414443731308, + 0.008502032607793808, + 0.007235254161059856, + 0.001494402764365077, + -0.012765229679644108, + -0.007588490378111601, + 0.007826011627912521, + 0.016492482274770737, + 0.012570340186357498, + -5.3908504924038425e-5, + -0.017028426751494408, + -0.018818968906998634, + 0.002055469900369644, + -0.012229284271597862, + 0.009269407950341702, + 0.016066161915659904, + 0.014994272030889988, + 0.010323026217520237, + -0.034958213567733765, + 0.0005462220869958401, + -0.0003212623414583504, + -0.01756437122821808, + 0.02464127726852894, + 0.001559111988171935, + -0.001951935118995607, + 0.0009615031303837895, + 0.021462151780724525, + 0.030085988342761993, + 0.0049392180517315865, + -0.03788154944777489, + 0.0012629720149561763, + -0.02059733122587204, + 0.0007064726087264717, + -0.022789832204580307, + 0.0169066209346056, + 0.005115836393088102, + 0.008087893016636372, + 0.006093326490372419, + -0.001644375966861844, + -0.01680917665362358, + -0.0019321417203173041, + -0.003252210095524788, + -0.001165527617558837, + -0.017016245052218437, + -0.00028376904083415866, + -0.016589926555752754, + -0.012229284271597862, + -0.024580374360084534, + 0.0093120401725173, + -0.0045189885422587395, + 0.005700503010302782, + -0.013313354924321175, + -0.01797850988805294, + 0.017540009692311287, + -0.013483882881700993, + -0.0037120264023542404, + -0.017028426751494408, + 0.019744692370295525, + -0.010055053979158401, + 0.014409605413675308, + -0.011102582328021526, + -0.0015385572332888842, + -0.013215909712016582, + -0.0013101717922836542, + 0.0019884768407791853, + -0.0006733566988259554, + 0.010731075890362263, + 0.0008785230456851423, + -0.0005039707757532597, + 0.028405072167515755, + 0.0012873332016170025, + -0.016894439235329628, + 0.011187846772372723, + -0.012338909320533276, + 0.017406024038791656, + -0.003842967329546809, + -0.013459521345794201, + -0.02859996072947979, + 0.01733293943107128, + -0.002334100194275379, + -0.013666590675711632, + -0.009482568129897118, + 0.013313354924321175, + 0.0039343214593827724, + -0.0045128981582820415, + 0.010420471429824829, + -0.016602106392383575, + -0.015055174939334393, + 0.006674948148429394, + 0.006912468932569027, + -0.0030923401936888695, + 0.029818017035722733, + -0.005097565241158009, + 0.004311919212341309, + -0.0161514263600111, + 0.01980559527873993, + -0.006184680387377739, + -0.005572607275098562, + -0.028137098997831345, + -0.0064739687368273735, + -0.017795801162719727, + 0.018526636064052582, + 0.00984189473092556, + -0.017089329659938812, + 0.027333181351423264, + -0.008185338228940964, + -0.003568904707208276, + -0.001926051452755928, + 0.010737165808677673, + -0.006111597176641226, + 0.004354550968855619, + 0.006955101154744625, + 0.007101268041878939, + 0.03527490794658661, + -0.006279079709202051, + 0.0076493932865560055, + -0.015237883664667606, + -0.01247289590537548, + 0.016321953386068344, + -0.0023843450471758842, + 0.02833198755979538, + 0.008550754748284817, + -0.002343235770240426, + 0.01201612502336502, + 0.017734898254275322, + 0.0084533104673028, + -0.004385002423077822, + 0.008940532803535461, + -0.014226896688342094, + -0.019354913383722305, + 0.005645690485835075, + 0.0008739553741179407, + -0.011151304468512535, + 0.013106284663081169, + -0.013118465431034565, + -0.011492360383272171, + 0.0004129971785005182, + 0.0010064189555123448, + 0.006875927560031414, + -0.005511704366654158, + 0.007521497085690498, + 0.008033080957829952, + 0.018185580149292946, + 0.030987350270152092, + 0.006699309218674898, + -0.002475699409842491, + 0.02755243144929409, + 0.0032978872768580914, + 0.008349775336682796, + 0.01226582657545805, + -0.005179784260690212, + -0.008928352035582066, + 0.004089623689651489, + 0.005362492520362139, + 0.005447756499052048, + -0.003785109845921397, + -0.01820993982255459, + 0.0005629703518934548, + 0.03712635487318039, + 0.01601743884384632, + -0.017747079953551292, + 0.0069733718410134315, + -0.025286847725510597, + -0.0015423636650666595, + -0.0044550406746566296, + -0.024775264784693718, + -0.012667784467339516, + -0.002353893592953682, + 0.022083358839154243, + -0.02964748814702034, + -0.004951398819684982, + 0.016833536326885223, + 0.018404830247163773, + -0.020134469494223595, + -0.011882138438522816, + 0.011309652589261532, + -0.010767617262899876, + -0.0036937554832547903, + 0.0015103897312656045, + 0.00044991952017880976, + 0.0012743913102895021, + 0.016321953386068344, + 0.015688564628362656, + -0.0017631363589316607, + 0.005922798532992601, + 0.014397424645721912, + -0.02138906717300415, + 0.0037911999970674515, + 0.0006082668551243842, + -0.030768100172281265, + -0.023508485406637192, + 0.02730882167816162, + -0.00911715067923069, + -0.007034274749457836, + -0.00957392156124115, + -0.009701818227767944, + 0.013483882881700993, + 0.008818726986646652, + -0.013873660936951637, + 0.0028472065459936857, + 0.004025675822049379, + 0.002366074128076434, + -0.004177933093160391, + -0.0017631363589316607, + -0.005292454268783331, + -0.02402006834745407, + -0.005003165919333696, + 0.027844766154885292, + 0.046651553362607956, + 0.002221429953351617, + -0.0025320344138890505, + -0.0010734120151028037, + 0.004975759889930487, + -0.02163267880678177, + 0.005328996106982231, + -0.00944602582603693, + 0.0022351332008838654, + -0.0061664097011089325, + -0.014275618828833103, + -0.0037211617454886436, + -0.006735851056873798, + 0.0024680865462869406, + -0.00010972021846100688, + -0.00964091531932354, + -0.02821018174290657, + -0.0037059360183775425, + -0.0015096284914761782, + 0.015128258615732193, + 0.011729881167411804, + 0.010457012802362442, + 0.014263438992202282, + 0.011126943863928318, + -0.005849714856594801, + -0.00326439063064754, + -0.009379032999277115, + -0.005539110861718655, + -0.0055817426182329655, + -0.0037120264023542404, + -0.01769835688173771, + -0.003504956839606166, + 0.0076433029025793076, + 0.006668857764452696, + 0.030232155695557594, + 0.014835924841463566, + -0.012010034173727036, + -0.019208746030926704, + 0.0003642749506980181, + -0.004202294163405895, + -0.0033466094173491, + -0.006650587078183889, + -0.013349896296858788, + 0.003422738052904606, + 0.018721524626016617, + 0.012052666395902634, + -0.024775264784693718, + 0.013422979973256588, + 0.006078100763261318, + -0.0178688857704401, + 0.009506928734481335, + -0.01055445708334446, + 0.011827326379716396, + 0.014275618828833103, + 0.005931933876127005, + 0.006132913287729025, + 0.03176690638065338, + -0.01129138097167015, + -0.00203110883012414, + 0.004488537088036537, + 0.0007970655569806695, + 0.014373064041137695, + 0.008818726986646652, + 0.028137098997831345, + 0.0038795091677457094, + -0.006032423581928015, + 0.006163364741951227, + -0.0046834261156618595, + -0.007259615231305361, + -0.006145093590021133, + -0.0279665719717741, + 0.007978267967700958, + -0.018027232959866524, + 0.03215668350458145, + 0.009586102329194546, + 0.031401488929986954, + -0.006540962029248476, + 0.012533798813819885, + 0.008093983866274357, + 0.02557918056845665, + -0.010414380580186844, + 0.01705278642475605, + 0.007296157069504261, + -0.01824648305773735, + 0.003855148097500205, + -0.010262124240398407, + -0.020840942859649658, + 0.007941726595163345, + 0.013593507930636406, + -0.012253645807504654, + -0.020426802337169647, + -0.017649635672569275, + -0.02704084850847721, + 0.0025959822814911604, + -0.0372481606900692, + 0.003288751933723688, + -0.009092790074646473, + 0.014909008517861366, + -0.014555771835148335, + 0.012679965235292912, + 0.009354671463370323, + -0.012692146003246307, + -0.006790663581341505, + -0.0074788653291761875, + 0.003599356161430478, + -0.016334133222699165, + -0.025091959163546562, + 0.015493675135076046, + 0.006114642135798931, + -0.008410678245127201, + 0.007893004454672337, + 0.007186532020568848, + -0.003008598927408457, + -0.003605446545407176, + -0.011717701330780983, + -0.018063774332404137, + 0.009555650874972343, + -0.011273110285401344, + -0.025359930470585823, + -0.001294184708967805, + -0.022643664851784706, + 0.005953249987214804, + -0.027844766154885292, + -0.001353565021418035, + -0.003343564458191395, + 0.0061938161961734295, + -0.008477671071887016, + -0.0015111509710550308, + 0.007003823295235634, + 0.003846012521535158, + 0.023800818249583244, + 0.033788878470659256, + 0.01663864776492119, + -0.020037025213241577, + 0.01993958093225956, + 0.021949373185634613, + -0.02650490403175354, + -0.0052680931985378265, + -0.006382614839822054, + -0.01599307917058468, + -0.024495111778378487, + -0.004278422333300114, + -0.0030283923260867596, + 0.009561741724610329, + 0.007113448344171047, + -0.01017685979604721, + -0.0018834194634109735, + -0.0047108326107263565, + -0.0038825543597340584, + -0.0006862985901534557, + 0.011930860579013824, + 0.00019231965416111052, + 0.0024528608191758394, + -0.005383808631449938, + 0.017881065607070923, + 0.013958924449980259, + -0.004247971344739199, + 0.004418498836457729, + -0.010651901364326477, + -0.02638309821486473, + -0.0009721611277200282, + 0.017771439626812935, + -0.01704060658812523, + -0.0022792876698076725, + 0.003617627080529928, + -0.007905185222625732, + 0.014117271639406681, + -0.0005119642592035234, + -0.0038216514512896538, + -0.003176081692799926, + -0.00043926152284257114, + 0.00040614561294205487, + -0.020560789853334427, + -0.012740868143737316, + -0.017540009692311287, + -0.03756485506892204, + -0.007582399994134903, + 0.019988302141427994, + -0.023959165439009666, + 0.012405903078615665, + 0.011425367556512356, + -0.007503226399421692, + 0.00030660760239697993, + -0.027722960337996483, + -0.0038064257241785526, + -0.01668737083673477, + 0.018295204266905785, + 0.03269262984395027, + -0.017661815509200096, + -0.017527829855680466, + -0.0009828191250562668, + -0.012716507539153099, + 0.000880806939676404, + 0.004759554751217365, + 0.03651732578873634, + -0.011175666004419327, + 0.01572510600090027, + -0.00482045765966177, + 0.009025796316564083, + -0.0049970755353569984, + -0.009068428538739681, + -0.0005233835545368493, + -0.02045116387307644, + -0.0005405124393291771, + -0.006510510575026274, + -0.020487705245614052, + -0.00989670678973198, + -0.016736092045903206, + 0.010335206985473633, + 0.003952592611312866, + 0.016431579366326332, + 0.0017981554847210646, + 0.012326729483902454, + -0.0049970755353569984, + 0.009348581545054913, + -0.019866496324539185, + 0.010664082132279873, + -0.014738480560481548, + -0.0027467168401926756, + -0.013203729875385761, + -0.0064739687368273735, + 0.0019184385892003775, + -0.01037174928933382, + -0.026870321482419968, + -0.0010490509448572993, + 0.010018512606620789, + -0.015664203092455864, + 6.670760922133923e-5, + 0.010450922884047031, + -0.007119538728147745, + 0.006632316391915083, + 0.0019884768407791853, + -0.007095177657902241, + -0.0038734187837690115, + 0.017783621326088905, + -0.02494579181075096, + -0.057930756360292435, + -0.016614286229014397, + -0.0037759742699563503, + 0.010140318423509598, + 0.02035371959209442, + -0.001144972862675786, + -0.002827413147315383, + 0.012826132588088512, + 0.0023950031027197838, + -0.026212569326162338, + 0.01576164737343788, + 0.0017372526926919818, + 0.034178659319877625, + 0.01913566328585148, + -0.0038003355730324984, + -0.006382614839822054, + -0.008288872428238392, + 0.010572727769613266, + 0.002137688687071204, + 0.0025320344138890505, + 0.006032423581928015, + 0.022473137825727463, + 0.03244901821017265, + -0.010134227573871613, + 0.004528123885393143, + 0.02165704034268856, + 0.008715192787349224, + -3.742192347999662e-5, + -0.0074849557131528854, + 0.0012987524969503284, + -0.012777409516274929, + 0.026797236874699593, + 0.004415453877300024, + 0.002669065725058317, + -0.013422979973256588, + -0.001259165583178401, + -0.010243852622807026, + 0.030110349878668785, + 0.0024330674204975367, + 0.00037379100103862584, + 0.013678771443665028, + -0.024970153346657753, + 0.026724154129624367, + 0.029038460925221443, + 0.006382614839822054, + 0.01717459224164486, + -0.008191428147256374, + -0.018940774723887444, + 0.003973908256739378, + 0.006516600959002972, + -0.0024589509703218937, + -0.011839506216347218, + 0.025774069130420685, + -0.0029263801407068968, + -0.015493675135076046, + -0.0031486754305660725, + 0.0035749950911849737, + 0.01668737083673477, + 0.0063582537695765495, + 0.004692561458796263, + 0.003976953681558371, + -0.010262124240398407, + -0.002600549953058362, + -0.013849299401044846, + -0.006175545044243336, + -0.003483640728518367, + -0.0009706385899335146, + -0.0158590916544199, + -0.02609076537191868, + -0.01121220737695694, + -0.013569146394729614, + -0.013215909712016582, + -0.02440984733402729, + -0.018015051260590553, + 0.010152499191462994, + -0.0010619928361847997, + 0.02701648697257042, + 0.003191307419911027, + -0.007704205811023712, + -0.002028063638135791, + 0.008087893016636372, + -0.00455553038045764, + 0.019342733547091484, + 0.009385122917592525, + -0.006997732911258936, + -0.0008054396603256464, + 0.008642109110951424, + 0.004272332414984703, + -0.028185822069644928, + -0.00018289875879418105, + 0.02964748814702034, + -0.000154826368088834, + 0.006339982617646456, + -0.025408653542399406, + 0.0014418740756809711, + -0.009957609698176384, + -0.027235737070441246, + -0.017430385574698448, + -0.03293624147772789 + ], + "fbd23709-de50-4ee7-9fe4-b9091aad8af0": [ + -0.01745367981493473, + -0.007227116264402866, + -0.00698147201910615, + -0.024370508268475533, + -0.05316261574625969, + -0.03043404594063759, + 0.028262032195925713, + 0.03327834978699684, + -0.007699012290686369, + 0.03560550510883331, + -0.015850527212023735, + 0.03718280419707298, + -0.021371060982346535, + -0.020440198481082916, + -0.010090813040733337, + -0.034622929990291595, + -0.05192146450281143, + 0.018358685076236725, + 0.019819622859358788, + 0.007647297345101833, + 0.05034416913986206, + -0.03785509243607521, + -0.0146610913798213, + 0.03289049118757248, + -0.012818758375942707, + -0.005759714171290398, + 0.02549530193209648, + 0.000704207515809685, + -0.02328450232744217, + -0.0019522263901308179, + 0.030537474900484085, + 0.021254703402519226, + 0.019496407359838486, + -0.023801647126674652, + 0.004450688138604164, + -0.011668108403682709, + -0.01820354163646698, + 0.04380227252840996, + -0.01224343292415142, + 0.0003500836610328406, + -0.04519856721162796, + 0.024745440110564232, + 0.0301237590610981, + -0.010077884420752525, + -0.02699502557516098, + 0.029089465737342834, + 0.045353710651397705, + -0.0044668493792414665, + 0.03710522875189781, + -0.0062833246774971485, + 0.021939922124147415, + -0.008203229866921902, + -0.005388015415519476, + 0.011293177492916584, + 0.007543868385255337, + 0.012023646384477615, + 0.01851382851600647, + 0.02554701641201973, + 0.031028764322400093, + -0.044526275247335434, + -0.007466296199709177, + -0.0031513588037341833, + 0.00011039856326533481, + -0.005116513930261135, + -0.005219943355768919, + -0.0253530852496624, + -0.005045406520366669, + 0.008616946637630463, + -0.02937389723956585, + 0.0019926284439861774, + 0.03407992422580719, + 0.02097027376294136, + -0.025702159851789474, + -0.00336468149907887, + -0.0014027587603777647, + 0.0030495456885546446, + 0.017595894634723663, + -0.030278902500867844, + 0.005549623630940914, + 0.012560185045003891, + -0.055024340748786926, + 0.004854708909988403, + 0.020685842260718346, + -0.004379580728709698, + 0.03798437863588333, + 0.03904452919960022, + -0.020556556060910225, + -0.02950318343937397, + -0.030847763642668724, + -0.02378871850669384, + 0.0329163484275341, + 0.0121141467243433, + 0.01264422107487917, + -0.013432868756353855, + -0.03482978790998459, + -0.0016564835095778108, + 0.04103554040193558, + 0.008080407045781612, + -0.0021639331243932247, + -0.045095138251781464, + -0.017285607755184174, + 0.03095119260251522, + -0.03878595679998398, + 0.015139451250433922, + 0.014363732188940048, + 0.014686948619782925, + 0.040208104997873306, + -0.019030975177884102, + -0.013665584847331047, + 0.029580755159258842, + 0.01626424305140972, + -0.008048085495829582, + -0.012249897234141827, + -0.016535745933651924, + 0.012249897234141827, + -0.0894145518541336, + 0.0007110758451744914, + 0.0038204165175557137, + -0.03314906358718872, + -0.039147958159446716, + 0.03170105442404747, + 0.025081584230065346, + 0.0030689386185258627, + 0.007388724479824305, + 0.023452574387192726, + -0.011467713862657547, + -0.011810323223471642, + 0.012792901135981083, + 0.0003302866534795612, + 0.011474178172647953, + 0.011900823563337326, + -0.018604330718517303, + -0.01738903671503067, + 0.022508783265948296, + -0.02510744147002697, + 0.009832239709794521, + -0.01632888801395893, + 0.04571571201086044, + -0.027667313814163208, + 0.044215988367795944, + -0.016975319012999535, + -0.025896089151501656, + -0.002742490265518427, + -0.013523370027542114, + 0.02146156132221222, + -0.008998341858386993, + -0.023491360247135162, + 0.02354307472705841, + -0.02097027376294136, + 0.02636152133345604, + -0.020478984341025352, + -0.008390694856643677, + 0.05450719594955444, + 0.0001691835350356996, + -0.00857169646769762, + -0.005291050765663385, + 0.00881734024733305, + 0.028986036777496338, + -0.009877489879727364, + -0.016535745933651924, + 0.0010940871434286237, + -0.04217326268553734, + 0.03570893779397011, + -0.02937389723956585, + 0.013368225656449795, + 0.013820728287100792, + 0.017052890732884407, + 0.011810323223471642, + -0.014829163439571857, + 0.02963246963918209, + 0.04938745126128197, + -0.009024199098348618, + 0.022056279703974724, + 0.002193022519350052, + -0.010401099920272827, + -0.004007881972938776, + 0.00919873546808958, + 0.00012666037946473807, + 0.007821834646165371, + -0.005255497060716152, + -0.030615046620368958, + -0.010866532102227211, + -0.04028568044304848, + 0.012385648675262928, + -0.009172878228127956, + 0.00966416671872139, + 0.011293177492916584, + 0.012127075344324112, + 0.005837286356836557, + 0.030666761100292206, + -0.00019978807540610433, + -0.00308348354883492, + -0.0048934947699308395, + 0.008429480716586113, + 0.0053169080056250095, + -0.0043343305587768555, + 0.03333006426692009, + 0.011390142142772675, + -0.0006524929194711149, + 0.034054066985845566, + -0.0235301461070776, + -0.0454571396112442, + -0.04796529933810234, + 0.016522817313671112, + -0.04788772761821747, + -0.015928098931908607, + -0.01895340345799923, + -0.004508867394179106, + -0.00039492989890277386, + -0.04217326268553734, + 0.024396365508437157, + -0.01996183767914772, + 0.004382812883704901, + -0.005969804711639881, + -0.03309734910726547, + -0.0008338980260305107, + -0.026943311095237732, + -0.0004690676578320563, + 0.03707937151193619, + -0.005536695010960102, + -0.03294220566749573, + -0.007569725625216961, + -0.0007837995071895421, + -0.018539685755968094, + -0.03930310159921646, + -0.005051870830357075, + -0.002765115350484848, + 0.007194794714450836, + -0.05983379855751991, + 0.002348166424781084, + 0.07131443917751312, + 0.017052890732884407, + 0.0026956237852573395, + -0.051197461783885956, + -0.022961284965276718, + 0.024383436888456345, + -0.0032030735164880753, + -0.02051777020096779, + 0.027951745316386223, + -0.02266392670571804, + 0.035372789949178696, + 0.04475899040699005, + 0.0009300548699684441, + 0.0037590055726468563, + 0.020129911601543427, + 0.010077884420752525, + -0.01838454231619835, + 0.008397159166634083, + -0.0029412682633847, + -0.03320077806711197, + -5.888596933800727e-5, + 0.03795852139592171, + 0.007563261315226555, + -0.004188883118331432, + -0.005484980531036854, + 0.03894110023975372, + -0.013193689286708832, + -0.001528813038021326, + 0.009263378567993641, + -0.03397649526596069, + 0.0037880949676036835, + -0.03224405646324158, + 0.010000311769545078, + -0.005627195816487074, + 0.046982720494270325, + 0.004179186653345823, + 0.01327772531658411, + -0.038372237235307693, + 0.009263378567993641, + 0.020323840901255608, + -0.02844303287565708, + -0.0076666902750730515, + -0.007026722189038992, + 0.00260350713506341, + -0.007311152759939432, + -0.010704923421144485, + 0.007356402929872274, + 0.03534693270921707, + 0.03180448338389397, + 0.009806382469832897, + 0.013187224976718426, + 0.030408188700675964, + 0.01707874983549118, + 0.058592651039361954, + 0.002852383768185973, + -0.019729122519493103, + 0.011778001673519611, + 0.010000311769545078, + -0.02888260781764984, + -0.01706581935286522, + -0.024512723088264465, + -0.005837286356836557, + 0.04261283576488495, + 0.00591485807672143, + 0.027538027614355087, + -0.0027182491030544043, + -0.022547569125890732, + -0.01380779966711998, + -0.002967125503346324, + 0.013523370027542114, + -0.017544180154800415, + 0.011480642482638359, + 0.04155268520116806, + -0.012624828144907951, + 0.015165308490395546, + 0.011551749892532825, + 0.06402268260717392, + 0.012670078314840794, + -0.0410613976418972, + 0.0026422932278364897, + 0.042535264045000076, + 0.0011344891972839832, + -0.008248480036854744, + -0.01582466997206211, + -0.003298422321677208, + -0.0032903419341892004, + 0.022379495203495026, + -0.02009112387895584, + -0.026090018451213837, + -0.023685289546847343, + -0.012825222685933113, + 0.006806935183703899, + -0.040699396282434464, + 0.00048320836503989995, + 0.037053514271974564, + -0.0366656556725502, + 0.008933698758482933, + -0.03415749967098236, + -0.0027069365605711937, + -0.038889385759830475, + 0.007996371015906334, + -0.042845550924539566, + -0.04501756653189659, + -0.0038301129825413227, + 0.0053169080056250095, + -0.02278028428554535, + -0.03764823451638222, + -0.03309734910726547, + -0.02530137076973915, + -0.004612296354025602, + 0.0009405594319105148, + 0.036562226712703705, + -0.025715088471770287, + 0.013794871047139168, + 0.003513361094519496, + -0.009618916548788548, + 0.0002840263186953962, + 0.022560497745871544, + -0.021642563864588737, + 0.007912334986031055, + 0.0004892686847597361, + -0.03095119260251522, + 0.027693171054124832, + 0.009256914258003235, + -0.008707446977496147, + -0.015346309170126915, + -0.012708865106105804, + -0.009463773109018803, + 0.008345444686710835, + 0.02543065883219242, + 0.005753249861299992, + 0.006813399493694305, + -0.02417657896876335, + -0.007168937474489212, + -0.005013084504753351, + 0.022392425686120987, + 0.0032127699814736843, + -0.002139691961929202, + 0.0345195010304451, + 0.019754979759454727, + -0.02416365034878254, + 0.038010235875844955, + 0.019806694239377975, + 0.02574094571173191, + -0.040466681122779846, + 2.1753970941063017e-5, + 0.016173742711544037, + 0.027460455894470215, + -0.016522817313671112, + 0.014816234819591045, + -0.035812366753816605, + 0.014867949299514294, + 0.01595395617187023, + -0.01422151643782854, + 0.017557108774781227, + 0.0367690846323967, + 0.025883160531520844, + -0.016484031453728676, + -0.017298536375164986, + -0.0352693609893322, + -0.0330197773873806, + -0.009114699438214302, + -0.000745013530831784, + -0.002257665852084756, + -0.05052516981959343, + 0.04238012060523033, + 0.0039141494780778885, + -0.011907287873327732, + 0.01490673515945673, + -0.020608270540833473, + 0.010388171300292015, + -0.013038544915616512, + 0.005294282920658588, + 0.02297421358525753, + 0.043724700808525085, + -0.006335039157420397, + -0.0026568379253149033, + -0.0051908534951508045, + 0.007951120845973492, + -0.03519178926944733, + 0.007388724479824305, + -0.0018568775849416852, + 0.035760652273893356, + -0.0235301461070776, + 0.023181073367595673, + -0.03201134130358696, + 0.022689783945679665, + -0.008707446977496147, + -0.09137970954179764, + -0.02919289469718933, + 0.04243183508515358, + 0.06567755341529846, + -0.01607031375169754, + 0.0002626132336445153, + -0.0499563105404377, + -0.012618363834917545, + 0.021241774782538414, + 0.005578713025897741, + -0.019431764259934425, + -0.005016316659748554, + 0.00023635191610082984, + -0.007821834646165371, + -0.01455766148865223, + -0.03767409175634384, + 0.008519981056451797, + -7.752140663797036e-5, + -0.00712368730455637, + -0.03180448338389397, + -0.001721126725897193, + -0.015902241691946983, + 0.02580558881163597, + 0.0016508272383362055, + 0.014596447348594666, + 0.0220304224640131, + -0.00813212152570486, + -0.023181073367595673, + -0.004735118709504604, + -0.017557108774781227, + -0.009140556678175926, + 0.04587085545063019, + -0.031209765002131462, + 0.06691870093345642, + -0.04690514877438545, + 0.01208182517439127, + -0.03170105442404747, + 0.0023077642545104027, + -0.027279455214738846, + 0.015010165050625801, + -0.0036264867521822453, + 0.0073628672398626804, + -0.02800345979630947, + 0.010006776079535484, + 0.022741498425602913, + -0.006441700737923384, + -0.024461008608341217, + -0.0506027415394783, + -0.03265777602791786, + 0.02875332161784172, + -0.011467713862657547, + -0.009774060919880867, + 0.003523057559505105, + 0.023698218166828156, + -0.028081031516194344, + -0.007724869530647993, + -0.02315521612763405, + -0.003571540117263794, + -0.02178477868437767, + 0.029735898599028587, + 0.01714339293539524, + -0.010685530491173267, + -0.0419146902859211, + -0.03459707275032997, + -0.014131016097962856, + 0.0205306988209486, + 0.023995578289031982, + 0.001730823190882802, + 0.01129964180290699, + -0.002774811815470457, + 0.01497137825936079, + -0.011215605773031712, + 0.04972359538078308, + -0.006141109392046928, + 0.027589742094278336, + -0.02888260781764984, + 0.008461802266538143, + -0.0558517761528492, + -0.013251868076622486, + -0.024629080668091774, + 0.011693965643644333, + -0.062057528644800186, + 0.04300069436430931, + -0.0003353368956595659, + 0.021926993504166603, + 0.03534693270921707, + 0.012935115955770016, + -0.01676846109330654, + -0.04506928101181984, + -0.004916119854897261, + 0.004618760664016008, + 0.019561050459742546, + -0.003266100538894534, + 0.012902794405817986, + 0.017117535695433617, + -0.002807133598253131, + -0.02266392670571804, + 0.016535745933651924, + -0.020116982981562614, + 0.006975007709115744, + 0.0025033100973814726, + -0.00891430489718914, + 0.007052579429000616, + 0.006325342692434788, + 0.007466296199709177, + 0.014855020679533482, + -0.007854156196117401, + -0.020621199160814285, + -0.018100112676620483, + 0.00825494434684515, + 0.035372789949178696, + 0.00031614594627171755, + -0.023995578289031982, + 0.013122581876814365, + 0.021875279024243355, + -0.0169365331530571, + 0.03108047880232334, + 0.004780368879437447, + -0.009050056338310242, + -0.01725975051522255, + 0.008823804557323456, + 0.0418112613260746, + -0.013419940136373043, + 0.00042826158460229635, + 0.012689471244812012, + -0.004702797159552574, + 0.008675125427544117, + 0.01738903671503067, + -0.035114217549562454, + 0.013032080605626106, + 0.008170908316969872, + 0.0054429625160992146, + -0.024564437568187714, + 0.013510441407561302, + 0.004263222683221102, + 0.0005967380711808801, + 0.0034713430795818567, + -0.022457068786025047, + 0.033355921506881714, + -0.02159084752202034, + -0.04605185613036156, + -0.025004012510180473, + 0.031364910304546356, + 0.008991877548396587, + 0.012140003964304924, + -0.004547653254121542, + -0.029011894017457962, + 0.01831989921629429, + -0.016044456511735916, + 0.0012177174212411046, + 0.008093335665762424, + 0.012566649354994297, + -0.009424987249076366, + 0.029916899278759956, + 0.048482444137334824, + -0.012476149015128613, + -0.009942132979631424, + 0.01875947415828705, + -0.012670078314840794, + 0.03038233146071434, + -0.029037751257419586, + 0.008940163068473339, + 0.0038850598502904177, + -0.009929204359650612, + -0.003093180013820529, + -0.02616759017109871, + -0.00033957912819460034, + -0.004693100694566965, + -0.03314906358718872, + -0.05153360590338707, + -0.00247906893491745, + 0.032683633267879486, + -0.006015055347234011, + 0.016031527891755104, + 0.028986036777496338, + -0.014984306879341602, + -0.02040141262114048, + 0.027589742094278336, + 0.0053136758506298065, + -0.0022075672168284655, + -0.0011845877161249518, + 0.003594165202230215, + -0.01882411725819111, + 0.0014205356128513813, + 0.030356474220752716, + 0.0006549170357175171, + -0.035114217549562454, + -0.0009688408463262022, + -0.0161349568516016, + 0.0008476347429677844, + -0.019806694239377975, + -0.019948909059166908, + 0.0011983243748545647, + 0.015915170311927795, + -0.007983442395925522, + -0.0037783985026180744, + 0.0375189483165741, + 0.01001324038952589, + 0.001096511259675026, + 0.049232304096221924, + 0.0058599114418029785, + -0.01846211403608322, + 0.014570590108633041, + -0.035553790628910065, + 0.045534711331129074, + 0.004020810592919588, + 0.017104607075452805, + 0.0007914758753031492, + -0.009696489199995995, + -0.021073702722787857, + -0.029477326199412346, + 0.005158531945198774, + 0.027796601876616478, + 0.009470237419009209, + 0.02278028428554535, + -0.022056279703974724, + 0.030744334682822227, + 0.019561050459742546, + 0.014454232528805733, + 0.02968418411910534, + -0.0038268808275461197, + -0.0019441460026428103, + -0.005543159320950508, + -0.004075757227838039, + -0.006806935183703899, + 0.0069620790891349316, + -0.010808352380990982, + 0.009864561259746552, + -0.02290957048535347, + 0.016406459733843803, + 0.016031527891755104, + -0.016988247632980347, + -0.06278153508901596, + 0.003451949916779995, + 0.033355921506881714, + 0.01227575447410345, + 0.011189747601747513, + -0.019819622859358788, + -0.021254703402519226, + 0.02065998502075672, + 0.004980762954801321, + 0.0005563360173255205, + 0.020388484001159668, + 0.01236625574529171, + -0.033045634627342224, + 0.03183034062385559, + -0.010995818302035332, + -0.003952935338020325, + 0.015863455832004547, + -0.0016314341919496655, + -0.0032046895939856768, + -0.0034745752345770597, + 0.0031141890212893486, + -0.01221111137419939, + 0.019483478739857674, + 0.0071560088545084, + -0.004983995109796524, + -0.006031216122210026, + 0.005552855785936117, + -0.030615046620368958, + -0.0037816306576132774, + -0.042845550924539566, + -0.007298223674297333, + -0.011674572713673115, + -0.022082136943936348, + -0.009573666378855705, + 0.04307826608419418, + -0.009399130009114742, + -0.008545839227735996, + 0.03472635895013809, + 0.01013606321066618, + 0.010155456140637398, + 0.021694278344511986, + 0.0014027587603777647, + -0.019250761717557907, + 0.016173742711544037, + -0.019729122519493103, + -0.0008435945492237806, + -0.018526757135987282, + 0.022870784625411034, + 0.04600014165043831, + -0.0019425299251452088, + -0.01004556193947792, + 0.00406606076285243, + -0.03245091438293457, + -0.018630187958478928, + 0.0006306758150458336, + 0.03322663530707359, + -0.004621992819011211, + -0.020608270540833473, + -0.01168103702366352, + -0.01970326527953148, + 0.022767355665564537, + -0.006060305517166853, + -0.011849109083414078, + -0.011435392312705517, + -0.015023093670606613, + -0.0112026771530509, + -0.005998894572257996, + 0.012359791435301304, + 0.01588931307196617, + 0.01051745843142271, + -0.0359157957136631, + 0.03175276890397072, + 0.00474158301949501, + -0.01700117625296116, + -0.06391925364732742, + 0.026477878913283348, + 0.027382884174585342, + 0.0026229002978652716, + -0.005695071071386337, + 0.0005761330248787999, + 0.018785331398248672, + 0.003988489042967558, + 0.004282616078853607, + 0.004796529654413462, + -0.03038233146071434, + 0.01919904723763466, + -0.0191344041377306, + 0.004447455983608961, + 0.0257280170917511, + -0.02484886907041073, + -0.02033676952123642, + -0.015385095961391926, + 0.032735347747802734, + 0.006192824337631464, + 0.02844303287565708, + 0.02022041194140911, + -0.01227575447410345, + 0.015643669292330742, + -0.013937086798250675, + 0.024952298030257225, + 0.0344160720705986, + -0.02391800656914711, + 0.03614851087331772, + 0.04175954684615135, + 0.0026794630102813244, + -0.01161639392375946, + -0.0205306988209486, + -0.0018956635612994432, + -0.008713911287486553, + 0.02285785600543022, + -0.005126210395246744, + -0.0016516352770850062, + 0.004321401938796043, + -0.005636892281472683, + 0.0033355921041220427, + -0.010737244971096516, + -0.0454571396112442, + 0.0359157957136631, + 0.025960732251405716, + -0.0271243117749691, + 0.037131085991859436, + -0.009987383149564266, + 0.020181626081466675, + 0.037570662796497345, + -0.016432316973805428, + -0.01781568117439747, + 0.04263869300484657, + 0.011066925711929798, + -0.02404729276895523, + 0.01016838476061821, + -0.002836222993209958, + -0.04351784288883209, + -0.00831958744674921, + -0.02416365034878254, + -0.017557108774781227, + 0.019056832417845726, + 0.02805517427623272, + 0.031054621562361717, + -0.009825775399804115, + -0.017492465674877167, + -0.0033032705541700125, + 0.012922187335789204, + -0.032114770263433456, + -0.015178237110376358, + 0.008875519037246704, + 0.016910675913095474, + 0.009896882809698582, + -0.008733304217457771, + 0.020750485360622406, + 0.014997236430644989, + -0.01023302786052227, + -0.034364357590675354, + 0.006341503467410803, + 0.02510744147002697, + -0.0003242263337597251, + -0.008920770138502121, + 0.041837118566036224, + 0.025081584230065346, + 0.03454535827040672, + 0.011319034732878208, + -0.030847763642668724, + 0.004563814029097557, + -0.01437666080892086, + -0.004104847088456154, + 0.0006351200281642377, + 0.02510744147002697, + 0.01045281533151865, + -0.026413235813379288, + 0.0012952892575412989, + -0.024060221388936043, + 0.03433850035071373, + 0.012799365445971489, + -0.0005672445986419916, + 0.03865666687488556, + -0.02178477868437767, + -0.01657453179359436, + 0.010976425372064114, + -0.0023497825022786856, + 0.037880949676036835, + 0.028391318395733833, + -0.01875947415828705, + 0.007175401784479618, + 0.003940006718039513, + 0.0025679534301161766, + -0.025883160531520844, + 0.018487971276044846, + -0.01587638445198536, + -0.015113594010472298, + -0.05057688429951668, + 0.015708312392234802, + -0.004967834334820509, + -0.009657702408730984, + -0.005811429116874933, + 0.015643669292330742, + 0.02730531245470047, + -0.010187777690589428, + 0.004806226119399071, + -0.013407011516392231, + 0.03426092863082886, + -0.01631595939397812, + -0.0057370890863239765, + 0.005400944035500288, + 0.01041402854025364, + -0.009890418499708176, + -0.027848316356539726, + 0.02774488739669323, + 0.006761685013771057, + 0.029891042038798332, + 0.03961338847875595, + 0.009347415529191494, + -0.014014658518135548, + -0.0034034675918519497, + -0.003545682644471526, + -0.041707828640937805, + 0.008565232157707214, + -0.0009421755094081163, + -0.027667313814163208, + 0.026762308552861214, + 0.016225457191467285, + 0.0015263889217749238, + 0.003590933047235012, + 0.0011619626311585307, + -0.0035780044272542, + -0.010595030151307583, + -0.042767979204654694, + -0.016794318333268166, + -0.030020330101251602, + -0.009075913578271866, + -0.01424737460911274, + 0.026271020993590355, + -0.008940163068473339, + 0.00637382548302412, + -0.002449979539960623, + -0.007349938619881868, + -0.04837901517748833, + 0.0023142285645008087, + 0.024654937908053398, + 0.006994400639086962, + -0.011939609423279762, + -0.031209765002131462, + 0.00850058812648058, + 0.020194554701447487, + 0.007298223674297333, + -0.04131997004151344, + -0.01349751278758049, + -0.02629687823355198, + -0.03338177874684334, + -0.0187077596783638, + -0.005019548814743757, + -0.015708312392234802, + -0.002348166424781084, + -0.01547559630125761, + -0.0021299952641129494, + 0.006603308953344822, + -0.0194059070199728, + -0.02554701641201973, + 0.011952538974583149, + 0.03007204458117485, + -0.012127075344324112, + 0.035372789949178696, + -0.0008217774447984993, + -0.011771537363529205, + -0.02906360849738121, + -0.025934875011444092, + 0.04853415861725807, + 0.01277997251600027, + -0.006073234137147665, + 0.010433422401547432, + 0.003952935338020325, + -0.026025375351309776, + -0.002125147031620145, + 0.0011264088097959757, + -0.006470790132880211, + 0.0014496251242235303, + 0.0006044144392944872, + 0.0011910520261153579, + 0.008959555998444557, + 0.012372720055282116, + 0.032114770263433456, + 0.026581307873129845, + -0.0001710016222205013, + 0.03064090386033058, + 0.003253171918913722, + -0.026141732931137085, + 0.006884506903588772, + -0.0036878979299217463, + 0.020181626081466675, + -0.019509335979819298, + -0.0587477944791317, + -0.03987196087837219, + -0.019043903797864914, + -0.0030075276736170053, + 0.004024042747914791, + -0.03325249254703522, + 0.027641456574201584, + -0.006092627067118883, + -0.028675749897956848, + 0.019160261377692223, + -0.005249032750725746, + -0.012249897234141827, + -0.0008888447773642838, + 0.050938889384269714, + 0.007388724479824305, + -0.007227116264402866, + 0.024073150008916855, + 0.03201134130358696, + 0.005785571876913309, + 0.011422463692724705, + -0.0030915639363229275, + -0.011312570422887802, + 0.029451468959450722, + -0.014402518048882484, + -0.02284492738544941, + -0.0027441063430160284, + -0.025818517431616783, + 0.024383436888456345, + -0.03126148134469986, + -0.0015078040305525064, + 0.011532356962561607, + 0.02365943230688572, + -0.01079542376101017, + -0.015242880210280418, + 0.02585730329155922, + -0.03322663530707359, + 0.032295770943164825, + 0.01662624627351761, + -0.008455337956547737, + -0.010039097629487514, + 0.021228846162557602, + 0.002774811815470457, + 0.009877489879727364, + 0.006806935183703899, + 0.023995578289031982, + -0.004673707764595747, + -0.03276120498776436, + 0.04889615997672081, + -0.01305793784558773, + -0.025598730891942978, + 0.026012446731328964, + -0.03224405646324158, + -0.009696489199995995, + -0.044784851372241974, + -0.00560133857652545, + -0.03423507139086723, + 0.002752186730504036, + -0.02082805708050728, + -0.037312090396881104, + -0.003156207036226988, + 0.00919873546808958, + 0.008125657215714455, + -0.025210870429873466, + 0.01813889853656292, + -0.02510744147002697, + 0.031183907762169838, + 0.011952538974583149, + 0.009243985638022423, + -0.013523370027542114, + 0.0013688210165128112, + 0.04703443497419357, + -0.0005599722499027848, + 0.010439886711537838, + 0.02183649316430092, + -0.008991877548396587, + 0.001164386747404933, + 0.016354745253920555, + -0.013510441407561302, + -0.00024928056518547237, + -0.05166289210319519, + 0.0028847053181380033, + 0.008106264285743237, + -0.0042115082032978535, + -0.028598178178071976, + 0.02002648077905178, + 0.004085454158484936, + -0.007653761655092239, + -0.0009656086913309991, + 0.008901376277208328, + 0.002010405296459794, + 0.02468079701066017, + 0.03265777602791786, + -0.015915170311927795, + -0.002374023664742708, + 0.0016694121295586228, + -0.03175276890397072, + -0.0029089467134326696, + -0.027977602556347847, + 0.020375555381178856, + -0.0351659320294857, + -0.011907287873327732, + -0.006218681577593088, + 0.020065266638994217, + -0.004237365443259478, + -0.011622858233749866, + -0.007000864949077368, + -0.012340398505330086, + 0.010077884420752525, + -0.01713046431541443, + 0.006845721043646336, + 0.02636152133345604, + 0.015488524921238422, + 0.01670381799340248, + -0.023568931967020035, + 0.03340763598680496, + -0.011674572713673115, + 0.0018197076860815287, + 0.009871025569736958, + 0.030097901821136475, + 0.00042987766209989786, + 0.003982024732977152, + 0.041707828640937805, + 0.011474178172647953, + 0.012301611714065075, + 0.031158050522208214, + -0.033795494586229324, + 0.03948410227894783, + -0.005869607906788588, + 0.014428375288844109, + 0.006021519657224417, + 0.006461093667894602, + -0.017789823934435844, + 0.005446194671094418, + 0.01490673515945673, + 0.004205043893307447, + 0.013781942427158356, + 0.013588013127446175, + 0.006975007709115744, + 0.017919111996889114, + 0.008061014115810394, + 0.023814575746655464, + 0.007776584010571241, + 0.0021267631091177464, + 0.005268425680696964, + -0.01719510741531849, + 0.007718405220657587, + -0.01318076066672802, + -0.03296806290745735, + 0.0073693315498530865, + -0.0027037044055759907, + -0.015048950910568237, + 0.04147511348128319, + -0.028856750577688217, + 0.0029154110234230757, + -0.031183907762169838, + 0.004062828607857227, + 0.0009979302994906902, + 0.00506803160533309, + -0.007699012290686369, + 0.03503664582967758, + -0.010937639512121677, + -0.010213634930551052, + 0.002611587755382061, + 0.0016257779207080603, + 0.008591089397668839, + 0.013238939456641674, + -0.00022059511684346944, + 0.022870784625411034, + 0.03051161766052246, + -0.026335664093494415, + 0.000419777148636058, + 0.027227740734815598, + 0.0382688082754612, + 0.002488765399903059, + -0.008959555998444557, + 0.020297983661293983, + 0.014014658518135548, + -0.006800470873713493, + -0.012172325514256954, + -0.0049581378698349, + -0.004036971367895603, + 0.015436810441315174, + -0.011306106112897396, + -0.01236625574529171, + -0.01675553247332573, + -0.0020928254816681147, + -0.0005830014124512672, + -0.036820799112319946, + -0.008985413238406181, + 0.006975007709115744, + 0.011092782951891422, + 0.003503664629533887, + 0.015488524921238422, + -0.026154661551117897, + 0.011693965643644333, + 0.023995578289031982, + -0.014208587817847729, + -0.018048398196697235, + 0.0021542366594076157, + 0.0039141494780778885, + -0.029141180217266083, + 0.00707843666896224, + -0.007421046029776335, + -0.012514934875071049, + 0.014118087477982044, + 0.01859140209853649, + 0.016212528571486473, + 0.00932155828922987, + -0.010310599580407143, + -0.0015700231306254864, + 0.010969961062073708, + -0.009812846779823303, + -0.0018245559185743332, + -0.02109955996274948, + 0.01675553247332573, + 0.01020070631057024, + -0.025909017771482468, + -0.03718280419707298, + -0.006619469728320837, + 0.024086078628897667, + 0.0007757191197015345, + -0.007091365288943052, + -0.00797051377594471, + -0.04147511348128319, + 0.004702797159552574, + -0.0037040587048977613, + 0.017789823934435844, + -0.0015506302006542683, + -0.0058469828218221664, + -0.009211664088070393, + 0.0023142285645008087, + 0.0062833246774971485, + 0.005029245745390654, + -0.0010868147946894169, + 0.026141732931137085, + 0.01700117625296116, + -0.02950318343937397, + -0.011500035412609577, + -0.01362679898738861, + -0.015966884791851044, + 0.013794871047139168, + 0.001509420108050108, + 0.013988801278173923, + -0.0009793454082682729, + -0.006794006563723087, + -0.017932040616869926, + -0.0028911696281284094, + 0.008894911967217922, + -0.026581307873129845, + -0.004589671269059181, + 0.0017227428033947945, + -0.0024709885474294424, + -0.015785884112119675, + -0.008112728595733643, + -0.024280007928609848, + -0.006929757539182901, + -0.026193449273705482, + 0.004560581874102354, + -0.0007761231390759349, + -0.02121591754257679, + 0.010717852041125298, + 0.028856750577688217, + -0.021991636604070663, + 0.022625140845775604, + -0.017311464995145798, + -0.023336216807365417, + 0.00809979997575283, + -0.0146610913798213, + -0.010355849750339985, + -0.00010999454389093444, + -0.004043435677886009, + -0.014622305519878864, + -0.002677846932783723, + -0.00626393174752593, + 0.0095672020688653, + -0.027460455894470215, + -0.002218879759311676, + 0.02616759017109871, + 0.0010108589194715023, + -0.012838151305913925, + -0.019224904477596283, + -0.022883713245391846, + 0.0038462739903479815, + 0.026206377893686295, + -0.015734169632196426, + 0.005129442550241947, + 0.012683006934821606, + -0.0176346804946661, + -0.030485760420560837, + 0.02108663134276867, + 0.0051811570301651955, + -0.0005805772379972041, + 0.008616946637630463, + 0.0260512325912714, + -0.005762946326285601, + 0.009593059308826923, + -0.03069261834025383, + -0.009696489199995995, + -0.0022398889996111393, + -0.0057435533963143826, + -0.017906183376908302, + 0.018125969916582108, + -0.009289235807955265, + -0.022922499105334282, + 0.005973036866635084, + -0.021888207644224167, + 0.0009534880518913269, + 0.03961338847875595, + -0.020194554701447487, + 0.012695935554802418, + 0.011532356962561607, + -0.007298223674297333, + -0.013219546526670456, + -0.011183283291757107, + -0.0022851391695439816, + -0.006541897542774677, + 0.0015207326505333185, + -0.007860620506107807, + 0.011312570422887802, + -0.003952935338020325, + -0.02227606624364853, + 0.007815370336174965, + -0.02725359797477722, + 0.0051908534951508045, + -0.02001355215907097, + -0.008662196807563305, + -0.008338980376720428, + 0.0073693315498530865, + 0.008791483007371426, + -0.02334914542734623, + -0.004554117564111948, + -0.02214678004384041, + 0.0024370509199798107, + 0.015979813411831856, + -0.02178477868437767, + 0.00492581631988287, + -0.005821125581860542, + 0.03997538983821869, + -0.0019570747390389442, + -0.015488524921238422, + -0.03645879775285721, + 0.001544973929412663, + 0.007201259024441242, + -0.0036458796821534634, + 0.0040337392129004, + -0.005801732651889324, + -0.01963862217962742, + -0.014053444378077984, + 0.005478516221046448, + 0.0187077596783638, + -0.026413235813379288, + -0.007459831889718771, + 0.03289049118757248, + 0.011435392312705517, + 0.009379737079143524, + -0.02367236092686653, + -0.025327228009700775, + -0.015372167341411114, + -0.018694831058382988, + 0.03100290708243847, + 0.006082930602133274, + -0.0073822601698338985, + -0.007201259024441242, + -0.0012185254599899054, + -0.018294041976332664, + 0.015152379870414734, + -0.018500899896025658, + 0.004570278339087963, + 0.007892942056059837, + 0.025650445371866226, + 0.014609376899898052, + -0.008429480716586113, + -0.004799761809408665, + 0.003269332693889737, + -0.0068327924236655235, + 0.001291249063797295, + 0.014531804248690605, + 0.003022072371095419, + -0.012909258715808392, + -0.01600567065179348, + -0.013911229558289051, + -0.008907840587198734, + -0.00037977914325892925, + 0.02097027376294136, + -0.008707446977496147, + 0.01362679898738861, + 0.009205199778079987, + 0.025534087792038918, + 0.013988801278173923, + 0.007349938619881868, + 0.004363419953733683, + 0.0015078040305525064, + -0.009935668669641018, + 0.01422151643782854, + -9.782343113329262e-5, + -0.0001520126679679379, + -0.005672445986419916, + 0.013678513467311859, + -0.011293177492916584, + -0.007918799296021461, + -0.029218753799796104, + -0.0064029148779809475, + -0.015915170311927795, + -0.008797947317361832, + -0.00027897607651539147, + -0.01126732025295496, + 0.009521951898932457, + -0.011836180463433266, + -0.016600389033555984, + -0.009243985638022423, + 0.023000070825219154, + 0.005342765245586634, + 0.02259928360581398, + 0.007589118555188179, + 0.009909811429679394, + 0.023517217487096786, + -0.0013066019164398313, + -0.026529593393206596, + -0.017466608434915543, + 0.005604570731520653, + -0.004835315514355898, + -0.004903191234916449, + -0.007446903269737959, + -0.02448686584830284, + 0.004272919613867998, + 0.0330197773873806, + 0.0011409535072743893, + -0.01541095320135355, + -0.03521764650940895, + 0.004777136724442244, + 0.007388724479824305, + -0.019948909059166908, + -0.0036458796821534634, + 0.019742051139473915, + -0.023452574387192726, + -0.013432868756353855, + -0.0017195106483995914, + 0.04439698904752731, + 0.0034196283668279648, + 0.014738663099706173, + -0.019380049780011177, + -0.00913409236818552, + 0.011687501333653927, + -7.716788968537003e-5, + 0.009470237419009209, + 0.015669526532292366, + 0.006519272457808256, + -0.004715725779533386, + 0.010646744631230831, + 0.003956167493015528, + -0.005258729215711355, + -0.0017405197722837329, + -0.007395188789814711, + 0.005362158175557852, + -0.01563074067234993, + -0.010989353992044926, + 0.04147511348128319, + -0.006800470873713493, + -0.000671885849442333, + 0.003487503854557872, + -0.009961525909602642, + -0.0016645638970658183, + -0.00520701427012682, + 0.030356474220752716, + -0.003652344224974513, + 0.042767979204654694, + -0.008177372626960278, + -0.004356955643743277, + -0.027072597295045853, + -0.019224904477596283, + -0.007543868385255337, + 0.03069261834025383, + -0.007640833035111427, + 0.017621751874685287, + 0.0033226634841412306, + 0.02102198824286461, + 0.01844918541610241, + 0.0014859868679195642, + 0.013794871047139168, + -0.010543315671384335, + 0.01895340345799923, + -0.03289049118757248, + -0.013988801278173923, + -0.00888198334723711, + 0.010039097629487514, + -0.006806935183703899, + 0.027822459116578102, + -0.002501694019883871, + 0.0037525412626564503, + -0.0005882536643184721, + 0.00998091883957386, + 0.017427822574973106, + 0.011726287193596363, + 0.0009850016795098782, + 0.026283949613571167, + -0.024435151368379593, + 0.02517208456993103, + -0.013872443698346615, + 0.0205306988209486, + 0.0003587700775824487, + 0.01769932359457016, + 0.016677960753440857, + 0.01345872599631548, + 0.004845012445002794, + -0.014299089089035988, + -0.007595582865178585, + 0.026348592713475227, + -0.0039173816330730915, + -0.029425611719489098, + -0.015928098931908607, + -0.030615046620368958, + 0.021939922124147415, + 0.001679108594544232, + -0.009153485298156738, + 0.013536298647522926, + 0.016277171671390533, + 0.028417175635695457, + -0.007304688449949026, + -0.02248292602598667, + -0.010381706990301609, + 0.008326051756739616, + 0.007776584010571241, + -0.023012999445199966, + -0.004605832044035196, + -0.004150097258388996, + -0.002097673714160919, + 0.001994244521483779, + -0.0066970414482057095, + 0.009586594998836517, + -0.003607093822211027, + 0.01576002687215805, + -0.02668473683297634, + -0.000871875963639468, + 0.05057688429951668, + -0.021875279024243355, + 0.03552793338894844, + -0.025081584230065346, + -0.0012670079013332725, + -0.028262032195925713, + -0.014143944717943668, + 0.003545682644471526, + 0.0005442154360935092, + -0.011028139851987362, + -0.018811188638210297, + -0.037053514271974564, + 0.0053201401606202126, + -0.01782860979437828, + 0.010459279641509056, + 0.02616759017109871, + 0.021358132362365723, + -0.005572248715907335, + 0.022250209003686905, + -0.026814023032784462, + -0.009179342538118362, + 0.01764760911464691, + 0.008041621185839176, + 0.0308219064027071, + 0.0018649579724296927, + 0.0032224664464592934, + 0.02109955996274948, + -0.02955489791929722, + -0.004373116418719292, + 0.0036297189071774483, + 0.004411902278661728, + 0.004366652108728886, + 0.014958449639379978, + -0.01594102755188942, + -0.01264422107487917, + 0.01914733275771141, + -0.006806935183703899, + -0.005397711880505085, + -0.011409535072743893, + -2.8761200155713595e-5, + -0.018048398196697235, + -0.018164755776524544, + 0.012308076024055481, + 0.003529521869495511, + 0.012353327125310898, + 0.0020928254816681147, + -0.005814661271870136, + -0.023387931287288666, + -0.027512170374393463, + 0.015708312392234802, + 0.00035816404852084816, + 0.024758368730545044, + 0.009922740049660206, + -0.006768149323761463, + 0.04090625420212746, + -0.008552303537726402, + 0.01888876035809517, + 0.024202436208724976, + -0.016871890053153038, + 0.015850527212023735, + 0.025159155949950218, + -0.035941652953624725, + -0.017841540277004242, + 5.463743946165778e-6, + 0.030330616980791092, + -0.008093335665762424, + -0.014958449639379978, + -0.039820246398448944, + -0.0063382713124156, + -0.0005632044048979878, + 0.011138033121824265, + 0.012889865785837173, + 0.01895340345799923, + 0.011390142142772675, + 0.001414879341609776, + -0.010052026249468327, + 0.002748954575508833, + 0.012637756764888763, + 0.007976978085935116, + 0.013975872658193111, + -0.014984306879341602, + 0.0023077642545104027, + 0.019431764259934425, + 0.012327468954026699, + 0.0007195602520368993, + -0.004712493624538183, + 0.027977602556347847, + -0.014040515758097172, + 0.008772090077400208, + -0.01595395617187023, + 0.022056279703974724, + 0.013678513467311859, + 0.034933216869831085, + -0.007563261315226555, + 0.007007329259067774, + -0.000272511737421155, + -0.022327780723571777, + 0.029089465737342834, + -0.01919904723763466, + 0.022056279703974724, + -0.010504529811441898, + 0.02906360849738121, + -0.002559873042628169, + -0.014415446668863297, + 0.006748756393790245, + -0.0038753633853048086, + -0.004987227264791727, + -0.006357664708048105, + -0.009955061599612236, + -0.002404729137197137, + -0.009961525909602642, + 0.03803609311580658, + -0.0013397315051406622, + 0.010362314060330391, + -0.009612452238798141, + -0.0033549850340932608, + -0.026503736153244972, + 0.0018180916085839272, + -0.007285295054316521, + 0.007136615924537182, + 0.0037137551698833704, + -0.013096724636852741, + -0.003109340788796544, + 0.0023724075872451067, + -0.009683560580015182, + -0.027667313814163208, + -0.004680172074586153, + 0.026943311095237732, + 0.002913794945925474, + 0.008953091688454151, + 0.023387931287288666, + -0.0030236884485930204, + 0.004903191234916449, + -0.008455337956547737, + 0.00010257067333441228, + -0.005536695010960102, + 0.009858096949756145, + -0.013419940136373043, + -0.008216158486902714, + 0.024642009288072586, + 0.02033676952123642, + 0.0011684269411489367, + -0.012547256425023079, + 0.00304469745606184, + -0.02095734514296055, + 0.009263378567993641, + 0.009075913578271866, + 0.02530137076973915, + 0.005804964806884527, + -0.013975872658193111, + 0.008862590417265892, + -0.0010827746009454131, + 0.004243829753249884, + 0.017686394974589348, + 0.014829163439571857, + -0.03439021483063698, + 0.019884265959262848, + -0.004237365443259478, + 0.0017938504461199045, + 0.0027182491030544043, + 0.012482613325119019, + -0.001974851591512561, + -0.008894911967217922, + 0.02297421358525753, + 0.003018840216100216, + 4.035153324366547e-5, + 0.0018471811199560761, + 0.004146865103393793, + 0.01838454231619835, + 0.004408670123666525, + 0.008869054727256298, + -0.018113041296601295, + -0.006658255588263273, + 0.0032046895939856768, + -0.021707206964492798, + -0.03270949050784111, + -0.00850058812648058, + -0.003461646381765604, + 0.0037654698826372623, + -0.013588013127446175, + -0.009062984958291054, + -0.028908465057611465, + -0.008662196807563305, + 0.013445797376334667, + -0.009334486909210682, + -0.004356955643743277, + 0.012857544235885143, + -0.006212217267602682, + 0.025702159851789474, + 0.05096474662423134, + 0.002495229709893465, + 0.0003011971712112427, + -0.004605832044035196, + 0.00644816504791379, + -0.0003377610119059682, + 0.017169250175356865, + -0.004563814029097557, + 0.00790587067604065, + -0.03560550510883331, + -0.0008516749367117882, + -0.02411193586885929, + -0.001636282540857792, + -0.008041621185839176, + 0.007821834646165371, + 0.011855573393404484, + -0.01701410487294197, + 0.0009082377655431628, + -0.007569725625216961, + -0.00039492989890277386, + 0.008843197487294674, + -0.0006371401250362396, + 0.006251003127545118, + 0.005142371170222759, + -0.011706894263625145, + 0.002618052065372467, + -0.011997789144515991, + -0.0033549850340932608, + 0.03144248202443123, + -0.008080407045781612, + -0.00327902939170599, + 0.01045281533151865, + 0.007265902124345303, + -0.0338730663061142, + 0.014570590108633041, + 0.0165098886936903, + -0.01813889853656292, + -0.0018601097399368882, + 0.008280801586806774, + 0.0165098886936903, + -0.02691745199263096, + -0.00690389983355999, + -0.008145050145685673, + 0.0028960180934518576, + -0.022431211546063423, + -0.01996183767914772, + -0.005323372315615416, + 0.0165098886936903, + -0.008390694856643677, + -0.0099162757396698, + 0.00020483833213802427, + 0.0076796188950538635, + 0.014867949299514294, + 0.015307523310184479, + 0.02849474921822548, + 0.0003072574909310788, + 0.005142371170222759, + 0.0013122581876814365, + -0.022392425686120987, + 0.008907840587198734, + -0.011222070083022118, + -0.01926369033753872, + 0.011209141463041306, + -0.002196254674345255, + 0.003503664629533887, + 0.0249264407902956, + 0.010304135270416737, + 0.0011635787086561322, + 0.0008823804673738778, + -0.03296806290745735, + 0.004053132142871618, + -0.004011114127933979, + 0.004560581874102354, + -0.023581860587000847, + 0.0062800925225019455, + -0.03283877670764923, + -0.0064126113429665565, + 0.010310599580407143, + 0.006386754103004932, + 0.009573666378855705, + -0.026814023032784462, + 0.021888207644224167, + 0.019573979079723358, + -0.010310599580407143, + -0.005714464001357555, + 0.009987383149564266, + -0.00425029406324029, + -0.009903347119688988, + 0.02448686584830284, + -0.005268425680696964, + 0.014609376899898052, + 0.0003573560097720474, + 0.014118087477982044, + 0.006108787842094898, + 0.023310359567403793, + -0.017311464995145798, + -0.02015576884150505, + 0.0007454175502061844, + 0.00014514430949930102, + 0.012980366125702858, + -0.023129357025027275, + 0.01233393419533968, + 0.012392112985253334, + -0.013070866465568542, + 0.020052338019013405, + 0.0048514767549932, + -0.02040141262114048, + -0.004683404229581356, + -0.006878042593598366, + -0.005038942210376263, + 0.0007781432359479368, + -0.018035469576716423, + -0.013251868076622486, + 0.030537474900484085, + 0.013303582556545734, + 0.0042212046682834625, + 0.001018131268210709, + -0.003266100538894534, + 0.019754979759454727, + 0.016147885471582413, + 0.034364357590675354, + 0.0029267235659062862, + 3.285190541646443e-5, + 0.0012274138862267137, + 0.02880503609776497, + 0.012172325514256954, + -0.003461646381765604, + -0.022301923483610153, + -0.009728810749948025, + -0.014518875628709793, + -0.021758921444416046, + 0.0073822601698338985, + -0.005562552250921726, + -0.023568931967020035, + 0.0021881742868572474, + -0.004053132142871618, + -0.009062984958291054, + -0.014764520339667797, + -0.0028022853657603264, + 0.006852185353636742, + -0.011280248872935772, + 0.0022301925346255302, + -0.0038495061453431845, + -0.013122581876814365, + -0.004819154739379883, + 0.00035614395164884627, + -0.007117222994565964, + -0.0028443033806979656, + 0.005614267196506262, + 0.01179739460349083, + 0.021939922124147415, + -0.0205306988209486, + 0.010840674862265587, + -0.010336456820368767, + -0.005029245745390654, + 0.018668973818421364, + -0.003503664629533887, + 0.03283877670764923, + 0.004525028169155121, + -0.027641456574201584, + 0.01497137825936079, + 0.006377057638019323, + -0.013174296356737614, + -0.008125657215714455, + 0.0018601097399368882, + -0.01574709825217724, + -0.013077330775558949, + -0.0124632203951478, + -0.0028911696281284094, + -0.0010593413608148694, + -0.002277058782055974, + -2.218324334535282e-5, + -0.021564990282058716, + 0.017363179475069046, + 0.00552376639097929, + -0.014738663099706173, + 0.021939922124147415, + 0.010614423081278801, + 0.004492706619203091, + 0.027279455214738846, + 0.004311705473810434, + -0.016613317653536797, + -0.005782339256256819, + 0.007233580574393272, + -0.017492465674877167, + -0.003668504999950528, + 0.009399130009114742, + 0.005488212686032057, + -0.01826818473637104, + 0.013937086798250675, + -0.015514382161200047, + 0.001974851591512561, + 0.025766802951693535, + -0.006389986258000135, + 0.003503664629533887, + 0.028132745996117592, + 0.005876072216778994, + 0.002222111914306879, + -0.0006153230206109583, + -0.017673466354608536, + 0.014001729898154736, + 0.002388568362221122, + -0.0017001177184283733, + -0.009373272769153118, + 0.003038233146071434, + -0.01582466997206211, + -0.011868502013385296, + -0.03630365431308746, + 0.028106888756155968, + 0.012799365445971489, + -0.0018568775849416852, + 0.016471102833747864, + 0.014208587817847729, + 0.008177372626960278, + 0.01136428490281105, + -0.01020070631057024, + 0.006215449422597885, + -0.007918799296021461, + 0.001018131268210709, + -0.018100112676620483, + 0.0021202987991273403, + -0.03488150238990784, + -0.012159396894276142, + -0.0042212046682834625, + -0.008565232157707214, + -0.005656285211443901, + -0.002768347505480051, + 0.006554826628416777, + 0.028106888756155968, + 0.010788959451019764, + -0.01004556193947792, + 0.016742603853344917, + 0.00060643459437415, + -0.0017356715397909284, + -0.013154903426766396, + -0.0023562468122690916, + -0.0034713430795818567, + 0.020310912281274796, + 0.013769013807177544, + 0.01670381799340248, + -0.002944500418379903, + 0.010530387051403522, + -0.012127075344324112, + 0.008397159166634083, + 0.019884265959262848, + -0.015604882501065731, + 0.009437915869057178, + -0.015100665390491486, + 0.003426092676818371, + -0.011415999382734299, + 0.005569016560912132, + -0.004712493624538183, + 0.03630365431308746, + 0.0054300338961184025, + -0.02880503609776497, + -0.007472760509699583, + 6.247164856176823e-5, + -0.015268737450242043, + -0.012152932584285736, + -0.0004892686847597361, + -0.0006638054619543254, + -0.020504841580986977, + -0.019224904477596283, + -0.021435704082250595, + -0.008338980376720428, + -0.024642009288072586, + 0.01662624627351761, + 0.0013518522027879953, + 0.006293021142482758, + 0.007272366434335709, + 0.022948356345295906, + 0.013070866465568542, + -0.007711940910667181, + 0.01587638445198536, + 0.034312643110752106, + 0.016057385131716728, + -0.009218128398060799, + -0.007084900978952646, + -0.0003842233563773334, + -0.0016080010682344437, + -0.013219546526670456, + -0.008209694176912308, + -0.0039012206252664328, + 0.018656045198440552, + -0.00218009389936924, + -0.000688046682626009, + 0.018617259338498116, + -0.007162473164498806, + 0.006606541108340025, + -0.005804964806884527, + -0.05352461710572243, + 0.0146610913798213, + 0.001795466523617506, + -0.024577366188168526, + -0.007194794714450836, + -0.0014326561940833926, + 0.0002078684774460271, + 0.023517217487096786, + 0.008313123136758804, + 0.0012201415374875069, + -0.016794318333268166, + -0.025585802271962166, + 0.025818517431616783, + 0.0017809218261390924, + -0.004903191234916449, + -0.02284492738544941, + -0.01607031375169754, + 0.022056279703974724, + 0.034105781465768814, + 0.012456756085157394, + 0.02265099808573723, + 0.00037796105607412755, + -0.0058599114418029785, + 0.001620121649466455, + -0.007317617069929838, + -0.005956876091659069, + 0.0005737089086323977, + 0.02336207404732704, + -0.016677960753440857, + 0.006344735622406006, + -0.013264796696603298, + 0.004140400793403387, + 0.011448320932686329, + -0.0026422932278364897, + 0.01914733275771141, + -0.002729561645537615, + 0.014648162759840488, + -0.028701607137918472, + 0.005646588746458292, + -0.00888198334723711, + 0.012708865106105804, + -0.00010322720481781289, + -0.0003165499656461179, + 0.007589118555188179, + -0.0009534880518913269, + -0.0059859659522771835, + 0.021202988922595978, + -0.005536695010960102, + 0.009476701728999615, + 0.009211664088070393, + 0.010317063890397549, + -0.013290653936564922, + 0.01286400854587555, + -0.013226010836660862, + -0.015488524921238422, + 0.021422775462269783, + 0.0036264867521822453, + -0.008519981056451797, + 0.026090018451213837, + 0.01010374166071415, + -0.00470926146954298, + -0.019380049780011177, + -0.009651238098740578, + 0.006189592182636261, + -0.008649268187582493, + 0.0057241604663431644, + -0.011066925711929798, + -0.014803306199610233, + 0.02618052065372467, + -0.009528416208922863, + 0.007699012290686369, + 0.0021170666441321373, + -0.011092782951891422, + -0.003523057559505105, + -0.009638309478759766, + -0.006002126727253199, + 0.011836180463433266, + -0.006299485452473164, + 0.010478672571480274, + 0.004570278339087963, + -0.007627904415130615, + -0.0011474178172647953, + -0.005139139015227556, + 0.000881572428625077, + -0.018410399556159973, + 0.007136615924537182, + -0.016096170991659164, + 0.0038139522075653076, + -0.0009736890788190067, + -0.016548674553632736, + 0.010743709281086922, + -0.027589742094278336, + 0.001170851057395339, + -0.003112572943791747, + 0.0028992502484470606, + -0.008119192905724049, + -0.0013809415977448225, + 0.0007817794103175402, + 0.016858961433172226, + 0.004592903424054384, + -0.013523370027542114, + 0.025534087792038918, + -0.014958449639379978, + 0.014790377579629421, + -0.002569569507613778, + 0.01725975051522255, + 0.022870784625411034, + 0.023387931287288666, + 0.0013607406290248036, + 0.0024742207024246454, + 0.003269332693889737, + 0.005966572556644678, + 0.00948316603899002, + 0.0067099700681865215, + 0.0012144852662459016, + 0.007304688449949026, + 0.021694278344511986, + -0.01713046431541443, + 0.005384783260524273, + 0.014195659197866917, + 0.00018494031974114478, + 0.004121007863432169, + 0.0011369133135303855, + 0.025779731571674347, + 0.00036301231011748314, + 0.006047376897186041, + 0.016846032813191414, + 0.0011902439873665571, + 0.02536601386964321, + 0.008591089397668839, + -0.004793297499418259, + -0.0006262315437197685, + 0.0010108589194715023, + -0.005707999691367149, + -0.005966572556644678, + -0.009269842877984047, + 0.011719822883605957, + -7.701638241996989e-5, + 8.166261977748945e-5, + 0.008836733177304268, + 0.015333380550146103, + 0.00733054568991065, + -0.004007881972938776, + -0.0015433578519150615, + -0.013859515078365803, + 0.0008403623360209167, + 0.0004690676578320563, + 0.02328450232744217, + -0.011597000993788242, + 0.004699565004557371, + 0.0009559121681377292, + 0.014932592399418354, + 0.007233580574393272, + -0.010258885100483894, + -0.0013259948464110494, + -0.006027983967214823, + 0.005627195816487074, + -0.009218128398060799, + -0.0020798968616873026, + -0.004205043893307447, + -0.007647297345101833, + -0.014299089089035988, + -0.010724316351115704, + 0.0375189483165741, + 0.003933542408049107, + -0.02297421358525753, + 0.0013550843577831984, + 0.002193022519350052, + 0.011913752183318138, + -0.0028055175207555294, + 0.018281113356351852, + -0.0015441658906638622, + 0.019173189997673035, + -4.7598648961866274e-5, + 0.022987142205238342, + 0.005087424535304308, + -0.0013510440476238728, + -0.010827746242284775, + 0.009541344828903675, + 0.017970826476812363, + -0.011532356962561607, + -7.388522499240935e-5, + -0.001392254140228033, + -0.0033549850340932608, + 0.012185254134237766, + 0.020866844803094864, + 0.02065998502075672, + -0.008810875937342644, + -0.000865411595441401, + -0.0037654698826372623, + -0.013704370707273483, + 0.026581307873129845, + -0.0011110559571534395, + -0.0030527778435498476, + 0.014001729898154736, + -0.023775789886713028, + -0.020750485360622406, + 0.01299329474568367, + -0.001779305748641491, + -0.025779731571674347, + 0.019612764939665794, + -0.006328574847429991, + -0.0033905389718711376, + 0.0014286160003393888, + -0.017233893275260925, + 0.018746545538306236, + -0.00013494280574377626, + 0.016496960073709488, + -0.025960732251405716, + -0.00019312174117658287, + 0.024461008608341217, + 0.010439886711537838, + -0.004027274902909994, + -0.0062865568324923515, + 0.006389986258000135, + 0.004518563859164715, + -0.01663917489349842, + 0.004706029314547777, + 0.004140400793403387, + 0.0029218753334134817, + 0.004621992819011211, + -0.008823804557323456, + 0.020918559283018112, + -0.018345756456255913, + -0.0032321629114449024, + -0.003933542408049107, + 0.013536298647522926, + 0.0169365331530571, + 0.004612296354025602, + -0.01032999251037836, + -0.03718280419707298, + -0.020802199840545654, + -0.005245800595730543, + -0.009114699438214302, + 0.01738903671503067, + 0.006325342692434788, + -0.004861173219978809, + 0.0013898300239816308, + -0.007304688449949026, + 0.004431295208632946, + 0.014984306879341602, + 0.009573666378855705, + 0.015087736770510674, + -0.02009112387895584, + 0.019677408039569855, + -0.017595894634723663, + 0.03428678587079048, + 0.021371060982346535, + 0.007957585155963898, + -0.016807246953248978, + 0.034312643110752106, + 0.009496094658970833, + 0.01311611756682396, + 0.014066372998058796, + -0.00021837301028426737, + -0.020000623539090157, + -0.0026229002978652716, + -0.010588565841317177, + 0.010543315671384335, + 0.005352461710572243, + 0.032864633947610855, + 0.003172367811203003, + -0.010530387051403522, + -0.011228534393012524, + -0.019948909059166908, + -0.0323733426630497, + -0.0030818672385066748, + -0.01484209205955267, + -0.009651238098740578, + 0.0019312173826619983, + -0.008649268187582493, + 0.0003775570366997272, + -0.01619959995150566, + 0.016432316973805428, + -0.004036971367895603, + -0.01289633009582758, + -0.0008969252230599523, + -0.006884506903588772, + 0.01932833343744278, + -0.016471102833747864, + 0.009424987249076366, + 0.010148991830646992, + -0.0004621992993634194, + 0.02058241330087185, + -0.01126732025295496, + 0.013950015418231487, + 0.0037525412626564503, + -0.0076666902750730515, + -0.00026160318520851433, + -0.021758921444416046, + 0.034803930670022964, + -0.0011304490035399795, + -0.007931727916002274, + -0.0198325514793396, + -0.004867637529969215, + 0.023620646446943283, + -0.006800470873713493, + 0.0031852966640144587, + 0.007860620506107807, + -0.002876624930649996, + -0.029011894017457962, + -0.0046349214389920235, + -0.00513267470523715, + -0.0028604641556739807, + -0.015915170311927795, + 0.004793297499418259, + 0.005973036866635084, + 0.015514382161200047, + 0.011693965643644333, + -0.03439021483063698, + 0.018565542995929718, + -0.0032095378264784813, + 0.022198494523763657, + 0.0073628672398626804, + 0.023633575066924095, + 0.017414893954992294, + -9.778555067896377e-6, + -0.0048837983049452305, + 0.011868502013385296, + -0.04400913044810295, + -0.003613558132201433, + -0.011965467594563961, + -0.025391871109604836, + -0.005410640966147184, + -0.00815797969698906, + -0.014622305519878864, + -0.0183328278362751, + 0.0046349214389920235, + 0.0007005713414400816, + -0.009431451559066772, + -0.010769566521048546, + -0.0279258880764246, + -0.020556556060910225, + 0.020375555381178856, + 0.005927786696702242, + -0.002186558209359646, + -0.01619959995150566, + -0.007744262460619211, + 0.005038942210376263, + 0.01374315656721592, + 0.0012249897699803114, + -0.006564523093402386, + 0.0213322751224041, + 0.003600629512220621, + -0.004411902278661728, + 0.017156321555376053, + 0.00863633956760168, + -0.031545910984277725, + -0.013193689286708832, + 0.013200153596699238, + -0.002784508280456066, + -0.0008726840023882687, + 0.002010405296459794, + 0.024267079308629036, + -0.007343474309891462, + 0.02976175583899021, + 0.006047376897186041, + -0.012314540334045887, + 0.0008896528743207455, + 0.021448632702231407, + -0.011131568811833858, + -0.006099091377109289, + 0.04902544617652893, + -0.000985809718258679, + -0.014932592399418354, + 0.014001729898154736, + -0.026814023032784462, + -0.0008044045534916222, + 0.012204647064208984, + 0.0027020880952477455, + -0.028106888756155968, + 0.009476701728999615, + -0.017285607755184174, + -0.009056520648300648, + 0.004602599889039993, + 0.010245956480503082, + 0.012902794405817986, + -0.02906360849738121, + -0.007117222994565964, + 0.012540792115032673, + 0.013859515078365803, + 0.0301237590610981, + -0.00262128422036767, + 0.006625934038311243, + 0.01895340345799923, + -0.008009299635887146, + 0.011946073733270168, + -0.006858649663627148, + -0.012224039994180202, + -0.028701607137918472, + -0.009328022599220276, + 0.01846211403608322, + -0.009715882129967213, + -0.0017550644697621465, + -0.008125657215714455, + -0.023995578289031982, + 0.005371854640543461, + 0.02197870798408985, + -0.0061572701670229435, + 0.003603861667215824, + 0.00030604543280787766, + 0.027848316356539726, + -0.008435945026576519, + 0.0006565331132151186, + 0.005400944035500288, + -0.021202988922595978, + 0.002391800517216325, + -0.026581307873129845, + -0.015268737450242043, + -0.0038527383003383875, + 0.013833656907081604, + 0.012521399185061455, + 0.0010819665621966124, + -0.01781568117439747, + -0.012094753794372082, + -0.010672601871192455, + -0.01619959995150566, + 0.021823564544320107, + 0.019858408719301224, + 0.00393677456304431, + 0.033666208386421204, + 0.014531804248690605, + 0.01227575447410345, + 0.007621440105140209, + -0.0367690846323967, + 0.03395063802599907, + 0.013639727607369423, + -0.0194059070199728, + -0.014337874948978424, + -0.02611587569117546, + 0.007750726770609617, + -0.017906183376908302, + 0.0021122184116393328, + -0.009114699438214302, + 0.005326604470610619, + -0.006564523093402386, + -0.0293221827596426, + 0.01123499870300293, + -0.0029412682633847, + 0.02297421358525753, + -0.0008920769905671477, + 0.018475042656064034, + 0.0018988957162946463, + 0.02116420306265354, + 0.0006973391282372177, + 0.004874101839959621, + 0.015346309170126915, + -0.00881734024733305, + -0.007776584010571241, + -0.013445797376334667, + -0.014712805859744549, + 0.00274572242051363, + -0.025702159851789474, + -0.0012249897699803114, + -0.007511546835303307, + -0.012340398505330086, + -0.04506928101181984, + 0.0004541188827715814, + -0.0042082760483026505, + 0.015294594690203667, + -0.011881430633366108, + -0.007059043738991022, + -0.019160261377692223, + -0.0032515558414161205, + -0.02001355215907097, + 0.0062768603675067425, + 0.012999759055674076, + -0.0023659432772547007, + -0.01161639392375946, + 0.018113041296601295, + 0.026943311095237732, + 0.002634212840348482, + -0.004240597598254681, + -0.011241463012993336, + -0.010375242680311203, + 0.008920770138502121, + 0.000500985246617347, + -0.0037137551698833704, + 0.01978083699941635, + -0.02787417359650135, + 0.02022041194140911, + -0.012547256425023079, + -0.0029283396434038877, + 0.020621199160814285, + 0.007589118555188179, + 0.0016144653782248497, + 0.00803515687584877, + -0.010381706990301609, + -0.011306106112897396, + -0.024202436208724976, + -0.0023901844397187233, + -0.021358132362365723, + 0.0048773339949548244, + 0.01838454231619835, + -0.0028475355356931686, + 0.0005656285211443901, + 0.004082222003489733, + -0.025934875011444092, + 0.0003595781163312495, + -0.016910675913095474, + -0.010239492170512676, + 0.006221913732588291, + -0.01789325475692749, + -0.026788165792822838, + 0.029011894017457962, + 0.014208587817847729, + -0.005475284066051245, + 0.002521087182685733, + -0.00803515687584877, + -0.007964049465954304, + 0.007931727916002274, + 0.013051473535597324, + 0.01895340345799923, + -0.001093279104679823, + 0.0032014574389904737, + 0.015100665390491486, + -0.012172325514256954, + -0.009560737758874893, + 0.018914617598056793, + 0.01626424305140972, + -0.005058335140347481, + 0.02924461103975773, + -0.0018487971974536777, + 0.00045371486339718103, + 0.00945084448903799, + -0.0039012206252664328, + 0.00012696339399553835, + -0.009521951898932457, + 0.008610482327640057, + 0.016652103513479233, + -0.018345756456255913, + -0.002829758683219552, + 0.00407898984849453, + 0.0021041380241513252, + -0.014415446668863297, + 0.01846211403608322, + -0.017169250175356865, + 0.008920770138502121, + -0.035941652953624725, + 0.009379737079143524, + -0.01939297839999199, + 0.017337322235107422, + -0.022301923483610153, + -0.021177131682634354, + 0.009011270478367805, + 0.01525580883026123, + 0.021383989602327347, + -0.005514069925993681, + -0.019418835639953613, + -0.017220964655280113, + 0.014182730577886105, + 0.0010197474621236324, + 0.005055102985352278, + 0.0078089055605232716, + 0.013083795085549355, + 0.005488212686032057, + 0.017156321555376053, + 0.016923604533076286, + -0.011480642482638359, + -0.017621751874685287, + 0.0015675990143790841, + 0.001207212801091373, + 0.013820728287100792, + 0.012967437505722046, + 0.006196056492626667, + -0.007104293908923864, + -0.02442222274839878, + 0.00016312322986777872, + -0.0039044527802616358, + -0.0007668306352570653, + -0.006464325822889805, + 0.019793765619397163, + 0.005397711880505085, + -0.006351199932396412, + 0.011344891972839832, + -0.0023562468122690916, + 0.0011789314448833466, + -0.015217022970318794, + 0.002883089240640402, + -0.005585177335888147, + -0.005045406520366669, + -0.01554023940116167, + 0.003122269408777356, + 0.0006759261013939977, + -0.015798812732100487, + 0.0026552218478173018, + 0.007770119700580835, + 0.008797947317361832, + 0.007485689129680395, + -0.0006234034080989659, + -0.014324946328997612, + -0.0001691835350356996, + -0.02040141262114048, + 0.00793819222599268, + 0.011351356282830238, + 0.015217022970318794, + 0.02271564118564129, + -0.010717852041125298, + -0.009683560580015182, + -0.018720688298344612, + -0.021047845482826233, + 0.002876624930649996, + -0.0030721707735210657, + 0.0032483236864209175, + -0.010679066181182861, + 0.009185806848108768, + 0.021564990282058716, + 0.020918559283018112, + -0.033743780106306076, + 0.00641584349796176, + -0.022573426365852356, + 0.004192115273326635, + -0.027460455894470215, + 0.010685530491173267, + 0.003266100538894534, + -0.0043407948687672615, + 0.0058566792868077755, + 0.004088686313480139, + -0.01631595939397812, + 0.0037945592775940895, + 0.0031739838887006044, + 0.008675125427544117, + -0.012624828144907951, + -0.009877489879727364, + -0.02103491686284542, + -0.02409900724887848, + -0.012708865106105804, + -0.004525028169155121, + 0.0002153428504243493, + 0.010704923421144485, + -0.010704923421144485, + -0.02102198824286461, + -0.0019328334601595998, + -0.006251003127545118, + -0.012805829755961895, + 0.0013672049390152097, + 0.02499108389019966, + -0.0007947080885060132, + 0.010769566521048546, + -0.0053072115406394005, + -0.04540542513132095, + -0.007589118555188179, + 0.0016112332232296467, + 0.005058335140347481, + -0.0019425299251452088, + 0.012922187335789204, + -0.011222070083022118, + -0.013846585527062416, + 0.03728623315691948, + 0.005720928311347961, + -0.019121475517749786, + 0.015462667681276798, + -0.007479224819689989, + 0.013051473535597324, + 0.0025550248101353645, + -0.0172080360352993, + -0.002338469959795475, + 0.012838151305913925, + -0.0026584540028125048, + -0.017608823254704475, + -0.024280007928609848, + 0.010704923421144485, + 0.002855615923181176, + 0.0076796188950538635, + 0.012249897234141827, + -0.01069845911115408, + -0.018927546218037605, + -0.0009906579507514834, + 0.009528416208922863, + 0.0025938106700778008, + 0.016716746613383293, + 0.0033743781968951225, + 0.021293489262461662, + -0.018746545538306236, + 0.005604570731520653, + -0.013316511176526546, + -0.015359237790107727, + -0.018061326816678047, + 0.014699877239763737, + -0.00474158301949501, + 0.016238385811448097, + -0.00033978113788180053, + -0.005918090231716633, + 0.022767355665564537, + 0.001317106420174241, + -0.0029331878758966923, + -0.0014827547129243612, + 0.0183328278362751, + -0.007440438959747553, + 0.013368225656449795, + 0.020478984341025352, + 0.0054397303611040115, + 0.03296806290745735, + -0.006845721043646336, + -0.011131568811833858, + -0.01725975051522255, + -0.001405182876624167, + 0.011655179783701897, + -0.004508867394179106, + 0.018849974498152733, + -0.0009704569238238037, + 0.03296806290745735, + 0.004263222683221102, + 0.016522817313671112, + 0.0038818276952952147, + 0.005746785551309586, + -0.00722065195441246, + 0.004899959079921246, + -0.003552146954461932, + 0.0004141208773944527, + -0.005106817465275526, + -0.025585802271962166, + 0.00079228391405195, + -0.008662196807563305, + 0.0006714818300679326, + -0.0011571142822504044, + -0.0023966487497091293, + -0.014118087477982044, + 0.008448873646557331, + 0.0018148594535887241, + -0.004146865103393793, + 0.011344891972839832, + 0.005462355446070433, + 0.009011270478367805, + 0.0030107598286122084, + 0.015772955492138863, + -0.014402518048882484, + -0.0019118243362754583, + 0.018500899896025658, + -0.009573666378855705, + 0.0093538798391819, + 0.0021380758844316006, + -0.001652443315833807, + 0.005245800595730543, + -0.00044159425306133926, + -0.023646503686904907, + -0.009218128398060799, + 0.011732751503586769, + 0.01497137825936079, + -0.013575084507465363, + -0.0006557250744663179, + -0.019729122519493103, + -0.00439250934869051, + -0.01569538377225399, + -0.03485564514994621, + -0.010064955800771713, + 0.0003203881497029215, + 0.022263137623667717, + -0.024124864488840103, + 0.0012637757463380694, + 0.018035469576716423, + 0.014195659197866917, + -0.012055967934429646, + 0.007440438959747553, + -0.0037687020376324654, + -0.03759652003645897, + -0.007265902124345303, + -0.005889000836759806, + -0.013704370707273483, + -0.007724869530647993, + 0.02447393722832203, + 0.012514934875071049, + -0.005397711880505085, + 0.0011247927322983742, + 0.013691442087292671, + 0.0003735168429557234, + 0.011002282612025738, + -0.009334486909210682, + -0.014286160469055176, + -0.02065998502075672, + 0.01261189952492714, + 0.013154903426766396, + 0.005365390330553055, + -0.019250761717557907, + 0.005145603325217962, + 0.018061326816678047, + -0.0014286160003393888, + -0.02479715459048748, + 0.016109099611639977, + 0.016367673873901367, + 0.009935668669641018, + 0.012230504304170609, + -0.016833104193210602, + -0.009715882129967213, + -0.019935980439186096, + -0.009651238098740578, + 0.01204950362443924, + 0.00875269714742899, + 0.01719510741531849, + 0.008203229866921902, + 0.007401653099805117, + 0.007964049465954304, + -0.010226563550531864, + 0.0024257383774966, + -0.019910123199224472, + -0.000897733261808753, + -0.004030507057905197, + 0.0017906182911247015, + -0.026658879593014717, + -0.014531804248690605, + -0.011991324834525585, + 0.0012346862349659204, + -0.0009526800131425261, + -0.0388118140399456, + -0.004124240018427372, + 0.010937639512121677, + -0.00637382548302412, + 0.014493018388748169, + 0.016652103513479233, + 0.0036943622399121523, + -0.0047642081044614315, + 0.005229639820754528, + -0.013432868756353855, + 0.0169365331530571, + -0.013394082896411419, + -0.021564990282058716, + 0.007556797005236149, + -0.009050056338310242, + -0.0016120412619784474, + 0.011571143753826618, + 0.017220964655280113, + 0.02115127444267273, + 0.023866290226578712, + -0.007214187644422054, + -0.013264796696603298, + 0.01826818473637104, + -0.0038107200525701046, + -0.00704611511901021, + -0.008481195196509361, + -0.005943947471678257, + -0.0020184856839478016, + -0.0011013594921678305, + 0.016496960073709488, + -0.01989719457924366, + 0.011726287193596363, + 0.009967990219593048, + -0.011150961741805077, + 0.0023271574173122644, + -0.0022851391695439816, + 0.013161367736756802, + 0.029477326199412346, + 0.018294041976332664, + -0.006322110537439585, + 0.029735898599028587, + 0.006570987403392792, + 0.007744262460619211, + -0.008901376277208328, + -0.01327772531658411, + 0.00235463073477149, + 0.001756680547259748, + 0.02172013558447361, + 0.007143080234527588, + -0.005404176190495491, + 0.008507052436470985, + 0.010814817622303963, + -0.02316814474761486, + -0.00336468149907887, + -0.029606612399220467, + 0.0015869919443503022, + 0.0005882536643184721, + 0.048560015857219696, + 0.014829163439571857, + 0.008112728595733643, + -0.0014698260929435492, + -0.006577451713383198, + -0.003256404073908925, + 0.012812294065952301, + -0.008216158486902714, + 0.006493415217846632, + 0.007007329259067774, + -0.0042147403582930565, + 0.014867949299514294, + -0.015837598592042923, + 0.0011821635998785496, + 0.008694518357515335, + 0.016484031453728676, + -0.011409535072743893, + -0.01588931307196617, + -0.013898300938308239, + -0.021009059622883797, + -0.01706581935286522, + -0.03407992422580719, + 0.020388484001159668, + 0.003678201464936137, + 0.011739215813577175, + -0.01083421055227518, + 0.023310359567403793, + 0.015772955492138863, + -0.020065266638994217, + -0.007614975795149803, + -0.013924158178269863, + 0.011920216493308544, + 0.012055967934429646, + -0.02497815527021885, + 0.03899281471967697, + 0.025456516072154045, + -0.006878042593598366, + 0.0046349214389920235, + 0.013174296356737614, + -0.011965467594563961, + 0.011474178172647953, + 0.009961525909602642, + -0.012437363155186176, + 0.008558767847716808, + 0.008326051756739616, + -0.019690336659550667, + -0.001581335673108697, + -0.01600567065179348, + -0.002186558209359646, + -0.013665584847331047, + 0.004916119854897261, + -0.0021914064418524504, + 0.0002549368655309081, + 0.007828298956155777, + 0.0018100112210959196, + -0.010510994121432304, + 0.009651238098740578, + 0.006341503467410803, + 0.04147511348128319, + 0.023814575746655464, + -0.0026552218478173018, + 0.01963862217962742, + 0.0062833246774971485, + -0.02384043298661709, + 0.01091824658215046, + 0.004234133288264275, + -0.023258645087480545, + -0.020000623539090157, + -0.003956167493015528, + 0.007892942056059837, + 0.01663917489349842, + 0.0067099700681865215, + -0.0012484228936955333, + -0.003005911596119404, + -0.00037796105607412755, + 0.012857544235885143, + -0.010556244291365147, + 0.005064799450337887, + 0.0013268028851598501, + -0.011002282612025738, + -0.03252848610281944, + 0.014699877239763737, + 0.024499794468283653, + -0.004835315514355898, + -0.010905317962169647, + -0.017182178795337677, + -0.01844918541610241, + -0.0014350803103297949, + 0.019754979759454727, + -0.006047376897186041, + -0.003523057559505105, + -0.015579025261104107, + -0.011351356282830238, + 0.01883704587817192, + 0.002367559354752302, + 0.00704611511901021, + -0.010969961062073708, + 0.0011239846935495734, + -0.0025614891201257706, + -0.018061326816678047, + 0.0027311777230352163, + -0.031054621562361717, + -0.013193689286708832, + -0.0031174211762845516, + -0.0014455848140642047, + -0.01789325475692749, + 0.012598970904946327, + -0.02082805708050728, + -0.00492581631988287, + 0.0033452885691076517, + -0.010620887391269207, + -0.0238533616065979, + -0.010750173591077328, + 0.0286240354180336, + 0.034803930670022964, + -0.020104052498936653, + -0.023879218846559525, + -0.022301923483610153, + -0.00277804397046566, + 0.003940006718039513, + 0.006509575992822647, + 0.0404149666428566, + -0.010459279641509056, + 0.013613870367407799, + -0.01607031375169754, + -0.01694946177303791, + 0.006625934038311243, + -0.010963496752083302, + 0.0017938504461199045, + -0.026581307873129845, + -0.005358926020562649, + -0.012301611714065075, + -0.01976790837943554, + -0.0038688990753144026, + -0.01838454231619835, + 0.0020508074667304754, + 0.0036264867521822453, + 0.029037751257419586, + -0.0025162389501929283, + 0.010646744631230831, + 0.01186203770339489, + 0.016962390393018723, + -0.019561050459742546, + 0.010860067792236805, + 0.00018221318896394223, + -0.005559320095926523, + -0.007737798150628805, + -0.013691442087292671, + 0.0054235695861279964, + -0.020065266638994217, + -0.033666208386421204, + -0.0019489942351356149, + -0.0046316892839968204, + -0.013032080605626106, + -0.0102653494104743, + -0.000190293591003865, + -0.003965863958001137, + 0.005106817465275526, + 0.009741739369928837, + 0.009121163748204708, + -0.006108787842094898, + 0.013407011516392231, + -0.00891430489718914, + -0.04413841664791107, + 0.012560185045003891, + 0.006112019997090101, + 0.006596844643354416, + 0.02284492738544941, + -0.005365390330553055, + 0.006625934038311243, + 0.007052579429000616, + -0.00687157828360796, + -0.009282771497964859, + 0.017027033492922783, + -0.014635234139859676, + 0.03620022535324097, + 0.008416552096605301, + 0.004415134433656931, + 0.011920216493308544, + -0.0008080407278612256, + 0.012359791435301304, + 0.010885925032198429, + 0.017027033492922783, + -0.01098288968205452, + 0.029141180217266083, + 0.02059534192085266, + -0.011609929613769054, + 0.005950411781668663, + 0.020802199840545654, + 0.01532045193016529, + -0.009935668669641018, + -0.004586439114063978, + 0.0028653123881667852, + -0.00891430489718914, + 0.027900030836462975, + 0.0039141494780778885, + -0.017427822574973106, + -0.0007219843682833016, + -0.002803901443257928, + 0.0031982252839952707, + 0.02603830397129059, + 0.006619469728320837, + -0.017776895314455032, + 0.0073628672398626804, + -0.0194059070199728, + 0.012152932584285736, + 0.00959952361881733, + 0.018242327496409416, + -0.0013971023727208376, + -0.01815182715654373, + -0.02246999740600586, + 0.0026099716778844595, + -0.0027344098780304193, + 0.0072594378143548965, + -0.005362158175557852, + 0.01437666080892086, + -0.013316511176526546, + -0.015010165050625801, + 0.013833656907081604, + 0.003291958011686802, + 0.02001355215907097, + 0.006722898688167334, + -0.0008540990529581904, + 0.02058241330087185, + -0.0017356715397909284, + -0.004977530799806118, + -0.009961525909602642, + 0.013200153596699238, + -0.007020257879048586, + 0.00891430489718914, + -0.003930310253053904, + -0.01612202823162079, + -0.006196056492626667, + -0.006179895717650652, + -0.016677960753440857, + -0.025197941809892654, + -0.027977602556347847, + -0.0007215803489089012, + 0.019367121160030365, + 0.03232162818312645, + 0.013264796696603298, + 0.01745367981493473, + -0.006234842352569103, + 0.0038656669203191996, + -0.0011999404523521662, + 0.0010940871434286237, + 0.020065266638994217, + 0.005788804031908512, + 0.0013946782564744353, + 0.01051745843142271, + -0.006189592182636261, + -0.010291206650435925, + -0.007511546835303307, + 0.010756637901067734, + 0.011836180463433266, + 0.002498461864888668, + -0.011138033121824265, + -0.004854708909988403, + -0.007563261315226555, + -0.023077642545104027, + -0.018294041976332664, + -0.02686573751270771 + ], + "2b48de5c-e88d-4082-b30e-95790ede9e7a": [ + -0.026726799085736275, + -0.038534536957740784, + -0.0083967549726367, + -0.0314192920923233, + -0.028078440576791763, + -0.0035767497029155493, + 0.0261402390897274, + 0.052331481128931046, + 0.005084595177322626, + 0.01797938346862793, + -0.008683660067617893, + 0.02892003022134304, + -0.026050979271531105, + -0.03282193839550018, + -0.03493865951895714, + -0.0248013474047184, + -0.04633835330605507, + 0.007070615887641907, + -0.0014783579390496016, + -0.0036405064165592194, + 0.07319267094135284, + -0.006898472551256418, + -0.02344970591366291, + 0.019586050882935524, + -0.013962713070213795, + -0.002366966800764203, + 0.030909238383173943, + -0.0056647807359695435, + -0.022875895723700523, + -0.01537811104208231, + 0.001947766519151628, + 0.013707686215639114, + 0.028103943914175034, + -0.024482565000653267, + -0.0039784167893230915, + -0.013108373619616032, + -0.028307965025305748, + 0.01326138898730278, + -0.009129956364631653, + 0.002907304558902979, + -0.0388660728931427, + 0.020453142002224922, + 0.0051037222146987915, + -0.007701806724071503, + -0.04735846072435379, + 0.027160344645380974, + 0.043864596635103226, + 0.007096118293702602, + 0.02350071258842945, + -0.005055904854089022, + 0.027313360944390297, + -0.008384003303945065, + 0.015059327706694603, + -0.004367332439869642, + 0.007676304318010807, + 0.014000967144966125, + 0.03264341875910759, + 0.02746637724339962, + 0.019586050882935524, + -0.01967531070113182, + -0.0027622580528259277, + 0.018808219581842422, + 0.02879251539707184, + -0.002964685671031475, + -0.0054097543470561504, + -0.05498376116156578, + 0.0017102728597819805, + -0.01687001809477806, + -0.030195163562893867, + -0.004864634480327368, + 0.02611473575234413, + -0.0011683411430567503, + -0.02468658611178398, + -0.0006562953349202871, + -0.0034332971554249525, + -0.0010631426703184843, + 0.0443236418068409, + -0.019318273290991783, + 0.0027431310154497623, + 0.014574776403605938, + -0.046644385904073715, + -0.006257717963308096, + 0.0265737846493721, + -0.0025438915472477674, + 0.03932511806488037, + 0.06661298125982285, + -0.026624789461493492, + -0.0294300839304924, + -0.033893048763275146, + -0.030195163562893867, + 0.022544361650943756, + 0.023245684802532196, + -0.0011053814087063074, + -0.006541435141116381, + -0.023844998329877853, + -0.017698854207992554, + 0.03894257918000221, + 0.013643929734826088, + -0.0010958178900182247, + -0.03162331134080887, + -0.0022585804108530283, + 0.036315806210041046, + -0.04496121034026146, + 0.005180230364203453, + -0.009875909425318241, + -0.0016879580216482282, + 0.015263348817825317, + -0.028588494285941124, + -0.023781241849064827, + 0.027568388730287552, + 0.010570857673883438, + -0.018361924216151237, + -0.013682182878255844, + -0.0048678223975002766, + 0.0008085143635980785, + -0.0665619745850563, + -0.0020418076310306787, + -0.019879331812262535, + -0.01328689232468605, + -0.04065125808119774, + 0.03692786768078804, + -0.002355809323489666, + 0.0024976679123938084, + -0.020414888858795166, + 0.023602722212672234, + -0.014358004555106163, + -0.02161351405084133, + 0.01674250327050686, + 0.016002926975488663, + 0.001673612860031426, + -0.0037425169721245766, + 0.002315961290150881, + -0.025706693530082703, + 0.02088668756186962, + -0.0073638963513076305, + 0.001195437740534544, + -0.010016174055635929, + 0.05676894634962082, + -0.022225577384233475, + 0.056666936725378036, + -0.027746906504034996, + -0.016474725678563118, + 0.014740544371306896, + 0.0026490900199860334, + -0.0014074286445975304, + -0.005097346380352974, + -0.050469785928726196, + 0.028103943914175034, + -0.004778563044965267, + 0.029047543182969093, + -0.040906284004449844, + -0.003344037802889943, + 0.038432527333498, + 0.03317897394299507, + -0.014179485850036144, + 0.02350071258842945, + 0.014702290296554565, + 0.0430230088531971, + 0.0011061783879995346, + -0.010685618966817856, + 0.015518375672399998, + -0.03210786357522011, + 0.04794502258300781, + -0.030093152076005936, + -0.0054097543470561504, + 0.019037744030356407, + 0.035805750638246536, + 0.013592923991382122, + -0.03845802694559097, + 0.029124051332473755, + 0.03322998061776161, + -0.010347709059715271, + 0.017800865694880486, + -0.004211128689348698, + -0.02652277797460556, + -0.001880822004750371, + 0.008205484598875046, + 0.007478658575564623, + 0.02560468204319477, + -0.01299361139535904, + -0.008103474043309689, + -0.01630895771086216, + -0.033459506928920746, + 0.0014209769433364272, + -0.02395975962281227, + 0.0069303507916629314, + 0.04720544442534447, + 0.007242758758366108, + -0.006566938012838364, + 0.023385949432849884, + 0.0005351576255634427, + -0.0027590703684836626, + 5.608595529338345e-5, + 0.031572308391332626, + 0.005301367957144976, + -0.014868057332932949, + 0.013082870282232761, + 0.03177632763981819, + 0.009997047483921051, + 0.008224611170589924, + -0.03412257507443428, + -0.06268556416034698, + -0.0557488389313221, + 0.015072079375386238, + -0.03986067697405815, + 0.0034014189150184393, + -0.012604695744812489, + -0.002577363746240735, + 0.004555414896458387, + -0.030195163562893867, + 0.014982819557189941, + -0.032388392835855484, + 0.03220987319946289, + -0.0253624077886343, + -0.016423720866441727, + -0.008549770340323448, + -0.008128976449370384, + -0.001778811332769692, + 0.030909238383173943, + 0.01940753310918808, + -0.01568414270877838, + 0.009161834605038166, + 0.014625782147049904, + -0.02291415072977543, + -0.008741040714085102, + 0.0013030271511524916, + -0.0001704494934529066, + 0.01582440733909607, + -0.04266596958041191, + 0.02301616035401821, + 0.05294354632496834, + -0.0013795351842418313, + -0.0235899705439806, + -0.021702773869037628, + -0.010003423318266869, + 0.03901908919215202, + -0.003627754980698228, + -0.0025996787007898092, + 0.04840407148003578, + -0.013656680472195148, + 0.042410943657159805, + 0.05590185523033142, + -0.001335702370852232, + -0.00719812884926796, + 0.04225792735815048, + 0.010577233508229256, + -0.016563985496759415, + 0.01584991067647934, + 0.009066199883818626, + -0.04638935998082161, + -0.003933786880224943, + 0.022506108507514, + 0.00817998219281435, + -0.015760650858283043, + -0.014727792702615261, + 0.01256006583571434, + -0.007408526260405779, + -0.007351145148277283, + 0.013388902880251408, + -0.040039192885160446, + -0.010800381191074848, + -0.026726799085736275, + 0.018145151436328888, + -0.007612547371536493, + 0.03404606506228447, + -0.021817535161972046, + 0.01113191619515419, + -0.05452471226453781, + 0.004552226979285479, + -0.013975463807582855, + -0.021001450717449188, + -0.01424324233084917, + 0.011973503977060318, + 0.007351145148277283, + -0.011259429156780243, + 0.0249288622289896, + 0.010494349524378777, + 0.0010958178900182247, + 0.01795388013124466, + 0.009818528778851032, + 0.009875909425318241, + 0.004756248090416193, + 0.004105930216610432, + 0.03455612063407898, + -0.001944578718394041, + -0.025668438524007797, + 0.016704250127077103, + 0.009149083867669106, + -0.03748892620205879, + -0.018553193658590317, + -0.00901519414037466, + -0.016755254939198494, + 0.053810637444257736, + 0.016053931787610054, + 0.04434914514422417, + -0.011023529805243015, + -0.0026172117795795202, + 0.009512496180832386, + -0.03264341875910759, + 0.017851870507001877, + -0.029659606516361237, + -0.0032021792139858007, + 0.027721403166651726, + -0.019879331812262535, + 0.013082870282232761, + 0.022493356838822365, + 0.03493865951895714, + 0.004714806564152241, + -0.027721403166651726, + 0.010519851930439472, + 0.029073046520352364, + 0.015237846411764622, + -0.055697835981845856, + -0.01439625769853592, + 0.013146626763045788, + 0.0212947316467762, + 0.030399184674024582, + -0.017966631799936295, + -0.03881506621837616, + -0.023322192952036858, + -0.028665002435445786, + 0.026216747239232063, + -0.04274247586727142, + 0.0293025691062212, + 0.03835601732134819, + -0.03312797099351883, + 0.018616950139403343, + -0.009691014885902405, + 0.0028148572891950607, + -0.040931787341833115, + 0.016423720866441727, + -0.06023731082677841, + -0.04791951924562454, + -0.040498241782188416, + 0.012419801205396652, + -0.018476685509085655, + -0.04062575474381447, + -0.03453061729669571, + 0.001772435731254518, + 0.006770959123969078, + -0.005616963375359774, + 0.0381774976849556, + -0.031011248007416725, + 0.007472282741218805, + 0.03876405954360962, + 0.0025295461528003216, + -0.005887929350137711, + 0.015964671969413757, + -0.023577220737934113, + 0.015365359373390675, + 0.0005060686380602419, + 0.009480617940425873, + 0.058452121913433075, + 0.016806259751319885, + -0.018361924216151237, + -0.014727792702615261, + -0.0036468820180743933, + 0.012145647779107094, + 0.011916123330593109, + 0.030475692823529243, + 0.005907056387513876, + 0.0027096588164567947, + -0.0375654362142086, + -0.02504362352192402, + -0.009442363865673542, + 0.03980967029929161, + 0.03368902951478958, + 0.00921921618282795, + 0.0248013474047184, + 0.02514563500881195, + -0.031011248007416725, + 0.013210384175181389, + 0.025566428899765015, + 0.02703283168375492, + -0.025719445198774338, + 0.008868553675711155, + 0.041900888085365295, + 0.01468953862786293, + -0.017647849395871162, + 0.004195189569145441, + -0.02134573645889759, + 0.0052694897167384624, + 0.03363802284002304, + -0.006866594310849905, + 0.024865103885531425, + 0.032439399510622025, + 0.0241510309278965, + -0.02018536441028118, + -0.011922499164938927, + -0.03736141324043274, + -0.00489970063790679, + -0.007045113015919924, + -0.005903868470340967, + -0.012719457037746906, + -0.025732195004820824, + 0.03634130582213402, + 0.013962713070213795, + -0.012113768607378006, + -0.00793770607560873, + -0.020491397008299828, + 0.013337897136807442, + 0.0008148900815285742, + 0.0027240042109042406, + -0.0007507348782382905, + 0.03034817986190319, + -0.010883265174925327, + -0.014064723625779152, + 0.002956715878099203, + 0.006994107738137245, + -0.011928874999284744, + 0.020682666450738907, + 0.017482081428170204, + 0.03409707173705101, + -0.006305535323917866, + 0.04009019955992699, + -0.01625795289874077, + 0.03394405543804169, + -0.014319750480353832, + -0.06528683751821518, + -0.023921506479382515, + 0.055595822632312775, + 0.08808622509241104, + -0.01579890586435795, + 0.016245201230049133, + -0.042334433645009995, + 0.00589749263599515, + 0.026752302423119545, + 0.031062254682183266, + -0.015110332518815994, + -0.0027192223351448774, + -0.0011364627862349153, + -0.025719445198774338, + -0.03129177913069725, + -0.0060632601380348206, + 0.020478645339608192, + 0.0036373184993863106, + -0.010264825075864792, + 0.003911472391337156, + 0.010245698504149914, + -0.008811173029243946, + 0.00316392513923347, + -0.010558106005191803, + 0.030450189486145973, + 0.029149552807211876, + -0.013809696771204472, + -0.03506617248058319, + -0.03845802694559097, + -0.013274140655994415, + 0.019050495699048042, + 0.030705217272043228, + 0.0004458982730284333, + 0.06467477232217789, + -0.045598775148391724, + 0.015059327706694603, + -0.020032348111271858, + -0.0005650435923598707, + -0.00450759707018733, + -0.005601024255156517, + 0.00862627848982811, + -0.00037198036443442106, + -0.003347225720062852, + -0.010016174055635929, + 0.02892003022134304, + -0.01838742569088936, + -0.032388392835855484, + -0.059880271553993225, + -0.024240288883447647, + 0.03124077245593071, + -0.00260127242654562, + -0.006397982593625784, + -0.021651769056916237, + 0.01822165958583355, + -0.02579595148563385, + 0.0060281939804553986, + -0.029022039845585823, + -0.0026315569411963224, + 0.002886583562940359, + 0.006490429863333702, + 0.030501196160912514, + 0.0027367554139345884, + -0.021001450717449188, + -0.04253845661878586, + -0.0037743954453617334, + 0.03991167992353439, + 0.017890123650431633, + 0.018884727731347084, + -0.011061783879995346, + -0.01674250327050686, + 0.005706222727894783, + -0.0018903855234384537, + 0.0625835582613945, + -0.030960243195295334, + 0.00992053933441639, + -0.022684626281261444, + -0.004957081750035286, + -0.05906418710947037, + -0.018744463101029396, + -0.012764086946845055, + -0.0005765994428656995, + -0.029506590217351913, + 0.038126494735479355, + -0.006021818146109581, + 0.01268120389431715, + 0.03249040246009827, + 0.012802341021597385, + -0.011272180825471878, + -0.01875721476972103, + -0.01446001511067152, + 0.006149331573396921, + 0.04580279812216759, + 0.020440392196178436, + -0.007032361812889576, + -0.0029790308326482773, + -0.01749483309686184, + 0.005667968653142452, + 0.024495316669344902, + -0.007912203669548035, + 0.007261885795742273, + 0.021817535161972046, + -0.03124077245593071, + -0.000906938745174557, + -0.0063087232410907745, + -0.005272677168250084, + 0.020032348111271858, + 0.016028428450226784, + -0.012445303611457348, + -0.015951920300722122, + 0.020797429606318474, + 0.03220987319946289, + -0.008377627469599247, + -0.01160371582955122, + 0.017890123650431633, + -0.01205001212656498, + -0.006410734262317419, + 0.015352608636021614, + -0.003283469006419182, + -0.003065102268010378, + 0.017941130325198174, + -0.0007455546874552965, + 0.02061890996992588, + -0.009895036928355694, + 0.019560549408197403, + -0.01512308418750763, + 0.02746637724339962, + 0.008505141362547874, + 0.02705833502113819, + -0.03312797099351883, + -0.012203028425574303, + -0.001192249939776957, + 0.004775375127792358, + -0.010628238320350647, + 0.0006770162144675851, + 0.00022534001618623734, + -0.009888661094009876, + 0.02986362762749195, + -0.044706184417009354, + 0.0235899705439806, + -0.009174586273729801, + -0.04837856814265251, + 0.011724852956831455, + 0.029455585405230522, + -0.003414170118048787, + 0.025451665744185448, + -0.0014863276155665517, + -0.02751738205552101, + 0.013146626763045788, + -0.002915274119004607, + -0.005537267774343491, + 0.012502685189247131, + 0.023628225550055504, + -0.0005546830943785608, + 0.01725255697965622, + 0.042359936982393265, + -0.019560549408197403, + -0.013809696771204472, + 0.02538790926337242, + -0.017647849395871162, + 0.0008551364298909903, + -0.032949451357126236, + -0.008364876732230186, + 0.011049032211303711, + -0.00520254485309124, + -0.011004403233528137, + -0.02744087390601635, + 0.0018122836481779814, + 0.005062280222773552, + -0.027160344645380974, + -0.034275591373443604, + 0.007899452932178974, + 0.004440652672201395, + 0.00805884413421154, + 0.009506121277809143, + 0.007172626443207264, + -0.006713578477501869, + -0.02504362352192402, + 0.026318756863474846, + -0.0019174821209162474, + 0.00874741654843092, + -0.013554669916629791, + -0.001444885740056634, + -0.007185377646237612, + 0.009914163500070572, + 0.03782046213746071, + 0.014294247142970562, + -0.01854044198989868, + 0.001150011084973812, + -0.009671888314187527, + -0.007140748202800751, + -0.022085312753915787, + -0.02107795886695385, + -0.007822944782674313, + 0.021868539974093437, + 0.01652573049068451, + -0.014026469551026821, + 0.03368902951478958, + 0.009212840348482132, + 0.011297683231532574, + 0.05057179927825928, + 0.0029917822685092688, + -0.005550018977373838, + 0.016614990308880806, + -0.03963115066289902, + 0.043813589960336685, + 0.009104453958570957, + 0.004800877999514341, + 0.004861446563154459, + 0.0037170143332332373, + -0.005256738048046827, + -0.023105420172214508, + -0.006879345513880253, + 0.01989208348095417, + 0.0011755137238651514, + 0.030195163562893867, + -0.0441451258957386, + 0.048123542219400406, + -0.0016098561463877559, + 0.0032468088902533054, + 0.0322863832116127, + -0.019764570519328117, + -0.0021215034648776054, + -0.02412552759051323, + -0.03218436986207962, + -0.030552200973033905, + 0.010016174055635929, + -0.017775362357497215, + -0.0024976679123938084, + -0.018106896430253983, + 0.011756731197237968, + 0.011610091663897038, + 0.00445977970957756, + -0.08089447766542435, + -0.00348749035038054, + 0.014090226031839848, + 0.017635097727179527, + -0.012980859726667404, + -0.014957317151129246, + -0.007172626443207264, + 0.04274247586727142, + -0.002703283214941621, + -0.015888163819909096, + 0.009946041740477085, + 0.011884245090186596, + -0.02654828131198883, + 0.02231483720242977, + -0.00684746727347374, + 0.0049985237419605255, + -0.0027718215715140104, + -0.009289348497986794, + 0.027695901691913605, + 0.024941612035036087, + 0.011463451199233532, + -0.008989691734313965, + 0.013835199177265167, + 0.021383989602327347, + -0.009429613128304482, + -0.021600762382149696, + 0.031036751344799995, + -0.03256691247224808, + -0.008772918954491615, + -0.03511717915534973, + 0.01326138898730278, + -0.007006858941167593, + -0.02744087390601635, + -0.012190276756882668, + 0.0344541110098362, + -0.025489920750260353, + -0.009289348497986794, + 0.034862153232097626, + -0.003477926831692457, + 0.0021262853406369686, + 0.005852863192558289, + -0.00970376655459404, + -0.022633621469140053, + 0.018157903105020523, + -0.023538965731859207, + 0.01587541215121746, + -0.019101500511169434, + 0.020147111266851425, + 0.034811146557331085, + 0.0067199538461863995, + -0.01638546586036682, + -0.013210384175181389, + -0.013898955658078194, + 0.00203861971385777, + -0.005715786479413509, + 0.032872945070266724, + -0.018910231068730354, + -0.04355856403708458, + -0.00020541604317259043, + -0.018565945327281952, + 0.027797911316156387, + -0.01199263148009777, + -0.01749483309686184, + 0.007089742925018072, + -0.010966149158775806, + -0.004542663227766752, + -0.015569381415843964, + -0.010774878785014153, + 0.0030188788659870625, + 0.013720436953008175, + -0.011763107031583786, + 0.05057179927825928, + 0.013886204920709133, + -0.014753295108675957, + -0.04822555184364319, + 0.02234034053981304, + 0.02412552759051323, + 0.00266502914018929, + 0.010073555633425713, + 0.0003054343396797776, + 0.025910714641213417, + 0.005049529019743204, + -0.026344260200858116, + -0.013414405286312103, + -0.03118976764380932, + 0.007166250608861446, + -0.0264462698251009, + 0.012783214449882507, + 0.020274624228477478, + -0.028741510584950447, + -0.01641096919775009, + -0.014855306595563889, + 0.024508068338036537, + 0.002775009488686919, + 0.030118655413389206, + -0.01207551546394825, + -0.021065207198262215, + 0.033357493579387665, + 0.02161351405084133, + 0.017533086240291595, + 0.01887197606265545, + -0.039962686598300934, + 0.05391264706850052, + 0.04253845661878586, + -0.00342373363673687, + -0.00231436756439507, + -0.005703034810721874, + 0.010691994801163673, + -0.01117017026990652, + 0.022391345351934433, + 0.011189296841621399, + -0.0026634351816028357, + 0.01373318862169981, + -0.019573301076889038, + -0.0013237480306997895, + -0.007956833578646183, + -0.015365359373390675, + 0.04822555184364319, + 0.042844489216804504, + -0.0406002514064312, + 0.030424688011407852, + -0.014957317151129246, + 0.018349172547459602, + 0.030475692823529243, + -0.002067310269922018, + 0.006853843107819557, + 0.05870715156197548, + 0.011916123330593109, + -0.05814609304070473, + 0.019394781440496445, + -0.004922015592455864, + -0.030144158750772476, + -0.0032436209730803967, + -0.03968215733766556, + -0.003081041621044278, + 0.012579192407429218, + 0.04317602142691612, + 0.015135835856199265, + -0.01970081403851509, + -0.0009292535833083093, + 0.00563290249556303, + 0.008460511453449726, + -0.01730356179177761, + 0.011686598882079124, + 0.02231483720242977, + 0.012043636292219162, + 0.007287388201802969, + -0.017176048830151558, + 0.02091219089925289, + 0.0017708417726680636, + -0.011979879811406136, + -0.030450189486145973, + 0.015735147520899773, + 0.03422458469867706, + 0.0014185861218720675, + -0.0038349642418324947, + 0.02983812615275383, + 0.03516818583011627, + 0.028027435764670372, + 0.004112305585294962, + -0.019305521622300148, + 0.0017102728597819805, + -0.013924458995461464, + 0.01512308418750763, + 0.007408526260405779, + 0.002309585688635707, + 0.0052184839732944965, + -0.02040213719010353, + 0.011597339995205402, + -0.03733590990304947, + 0.022595366463065147, + 0.024189284071326256, + 0.009244718588888645, + 0.03320447728037834, + -0.013274140655994415, + -0.008766543120145798, + -0.00515472749248147, + 0.008052468299865723, + 0.02088668756186962, + 0.016155943274497986, + -0.006911224219948053, + -0.0064489878714084625, + 0.0022314838133752346, + 0.004192001651972532, + 0.007631674408912659, + 0.015811655670404434, + -0.023781241849064827, + -0.01582440733909607, + -0.055595822632312775, + 0.039146602153778076, + -0.00020501756807789207, + 0.0025502671487629414, + -0.013038241304457188, + -0.01609218493103981, + 0.008779294788837433, + -0.024533569812774658, + 0.033791039139032364, + 0.0034651753958314657, + 0.04888861998915672, + 0.025375157594680786, + -0.0016002926276996732, + 0.008052468299865723, + -0.002947152592241764, + -0.009091702289879322, + -0.01606668345630169, + 0.011552710086107254, + -0.002344651846215129, + 0.0284354779869318, + 0.011367815546691418, + 0.00909807812422514, + -0.028562992811203003, + 0.0347091369330883, + 0.01138694304972887, + -0.021090708673000336, + -0.0004542663518805057, + 0.012547314167022705, + -0.030526697635650635, + 0.02177928201854229, + 0.0016544858226552606, + 0.024061771109700203, + 0.018910231068730354, + 0.01044334378093481, + 0.0036022523418068886, + 0.0074340286664664745, + -0.023513462394475937, + -0.011941625736653805, + -0.01797938346862793, + -0.01018831692636013, + -0.02183028683066368, + 0.0064840540289878845, + 0.013019113801419735, + 0.007555166259407997, + 0.01746932975947857, + -0.01701028272509575, + -0.03218436986207962, + -0.011661096476018429, + 0.020657163113355637, + -0.0008678878075443208, + -0.007281012833118439, + -0.050367776304483414, + 0.01730356179177761, + -0.023118171840906143, + 0.012107393704354763, + -0.036188289523124695, + 0.0024881043937057257, + -0.0375654362142086, + 0.0009587410604581237, + -0.024010764434933662, + -0.0029917822685092688, + -0.0027654459699988365, + 0.0001814076822483912, + -0.02434230037033558, + -0.014587528072297573, + -0.00355124706402421, + -0.013796945102512836, + -0.030628709122538567, + 0.014370755292475224, + 0.0355762280523777, + 0.0019254516810178757, + 0.029634105041623116, + 0.010628238320350647, + -0.013146626763045788, + -0.014523771591484547, + -0.028537489473819733, + 0.004670176655054092, + 0.0184384323656559, + 0.017418324947357178, + 0.01935652829706669, + 0.004169686697423458, + -0.006809213198721409, + 0.0232839398086071, + 0.010806757025420666, + 0.004351393319666386, + -0.001930233440361917, + 0.0015979018062353134, + 0.0018696646438911557, + 0.019024992361664772, + 0.008645405992865562, + 0.02274838276207447, + 0.007816568948328495, + 0.008830299600958824, + 0.021179968491196632, + 0.007848447188735008, + -0.018094144761562347, + 0.016704250127077103, + -0.023334944620728493, + -0.0007124808616936207, + 0.008332997560501099, + -0.05113285779953003, + -0.024138279259204865, + -0.03302596136927605, + -0.03792247176170349, + -0.01326138898730278, + -0.012120144441723824, + 0.03118976764380932, + -0.017890123650431633, + -0.03705538064241409, + 0.027695901691913605, + 0.011769482865929604, + 0.009333977475762367, + 0.02304166369140148, + 0.031954847276210785, + 0.00653505977243185, + 0.002056152792647481, + -0.006923975422978401, + 0.04343105107545853, + 0.008600776083767414, + 0.0003717811487149447, + -0.012821468524634838, + -0.013172130100429058, + 0.001874446403235197, + 0.01665324531495571, + -0.022365843877196312, + -0.003234057454392314, + -0.04256395995616913, + 0.02304166369140148, + -0.033000458031892776, + -0.010545354336500168, + 0.006072823889553547, + 0.007344769313931465, + -0.012585568241775036, + -0.015250598080456257, + 0.03537220507860184, + -0.03560173138976097, + 0.013337897136807442, + 0.0265737846493721, + -0.016015678644180298, + -0.022008806467056274, + 0.011648344807326794, + -0.003277093404904008, + 0.00939135905355215, + 0.008511516265571117, + 0.01945853792130947, + -0.010341333225369453, + -0.012662076391279697, + 0.03078172542154789, + -0.009251094423234463, + -0.020478645339608192, + 0.019637057557702065, + -0.033357493579387665, + 0.01935652829706669, + -0.03351050987839699, + -0.012062763795256615, + -0.025515422224998474, + 0.008007839322090149, + -0.004195189569145441, + -0.04735846072435379, + 0.01269395463168621, + -0.003414170118048787, + 3.795514930970967e-5, + -0.017392821609973907, + -0.001708679017610848, + -0.03986067697405815, + 0.030424688011407852, + 0.00958262849599123, + 0.00723638292402029, + -0.030552200973033905, + 0.03307696431875229, + 0.02598722279071808, + 0.009053448215126991, + 0.006809213198721409, + -0.008116224780678749, + -0.0037712075281888247, + -0.011667472310364246, + 0.032464899122714996, + 0.0066498215310275555, + -0.009850407019257545, + -0.05299455299973488, + -0.007956833578646183, + 0.011909747496247292, + -0.027772409841418266, + -0.029583098366856575, + 0.005916619673371315, + 0.022926902398467064, + -0.00023868907010182738, + -0.0005076625384390354, + 0.024648332968354225, + 0.010902391746640205, + 0.01892298273742199, + 0.018106896430253983, + -0.0037425169721245766, + 0.015237846411764622, + 0.0072937640361487865, + -0.029736114665865898, + -0.005151539575308561, + -0.014039220288395882, + 0.015990175306797028, + -0.02509462833404541, + -0.006943102460354567, + 0.015786154195666313, + 0.02277388609945774, + -0.0101500628516078, + -0.014166734181344509, + 0.006841091439127922, + -0.008505141362547874, + 0.012139271944761276, + -0.0051069101318717, + 0.0011619654251262546, + 0.0009332383633591235, + 0.01970081403851509, + -0.0015341450925916433, + -0.018795469775795937, + 0.017418324947357178, + 0.0034651753958314657, + 0.004185625817626715, + 0.00962088257074356, + 0.020720921456813812, + 0.0017835930921137333, + 0.002798918168991804, + 0.04274247586727142, + 0.0076699284836649895, + 0.022174572572112083, + 0.029506590217351913, + -0.029149552807211876, + 0.024163780733942986, + -0.01346541102975607, + 0.013720436953008175, + 0.0051993574015796185, + 0.008562522009015083, + -0.017214303836226463, + -0.010022549889981747, + 0.008607151918113232, + -0.0023430578876286745, + 0.014128480106592178, + 0.007854823023080826, + -0.003720202250406146, + 5.598633288173005e-5, + 0.016704250127077103, + 0.03121526911854744, + 0.007606172002851963, + -0.006815589033067226, + -0.019075999036431313, + -0.0010750970104709268, + 0.008734664879739285, + -0.006694451440125704, + -0.012719457037746906, + 0.01630895771086216, + -0.00279254256747663, + -0.006461739540100098, + 0.03537220507860184, + -0.020771926268935204, + 0.005317307077348232, + -0.00415693549439311, + -0.003946538548916578, + 0.01446001511067152, + 0.005161103326827288, + -0.014306998811662197, + 0.021843038499355316, + -0.007147123571485281, + 0.009276596829295158, + -0.005961249582469463, + 0.006040945183485746, + -0.010143687948584557, + -0.002386093605309725, + 0.01347816176712513, + 0.023169176653027534, + 0.013414405286312103, + -0.0172270555049181, + 0.0005287819658406079, + 0.009078951552510262, + 0.02541341260075569, + 0.0033663527574390173, + 0.006547810975462198, + 0.0015939170261844993, + -0.007612547371536493, + -0.014625782147049904, + 0.007931331172585487, + -0.009557126089930534, + -0.014051971957087517, + 0.01940753310918808, + -0.012713082134723663, + 0.0005247971857897937, + -0.029277067631483078, + 0.007032361812889576, + 0.008224611170589924, + -0.03680035471916199, + -0.013363399542868137, + 0.010774878785014153, + -4.585001806844957e-5, + 0.023755738511681557, + 0.012674828059971333, + -0.019152507185935974, + 0.00032476059277541935, + 0.016691498458385468, + -0.01424324233084917, + -0.009034321643412113, + 0.0049283914268016815, + -0.010099058039486408, + -0.010845011100172997, + -0.005294992122799158, + -0.01676800660789013, + -0.011195672675967216, + 0.0006044930196367204, + 0.019178008660674095, + -0.00956987775862217, + 0.005240798927843571, + 0.0013404841301962733, + -0.024291295558214188, + -0.0004721978912129998, + -0.013299643062055111, + -0.0029694673139601946, + -0.030960243195295334, + 0.010653740726411343, + -0.020657163113355637, + -0.020822931081056595, + -0.04697592183947563, + -0.010883265174925327, + 0.003452424192801118, + 0.002966279396787286, + -0.012706706300377846, + -0.018833722919225693, + -0.022136319428682327, + 0.019764570519328117, + 0.01468953862786293, + 0.018769966438412666, + 0.006219463888555765, + 0.002300022169947624, + -0.025273147970438004, + 0.024112775921821594, + 0.009531623683869839, + 0.015365359373390675, + -0.01841292902827263, + 0.01590091548860073, + 0.018553193658590317, + -0.01695927605032921, + 0.01264294981956482, + -0.03223537653684616, + -0.024979867041110992, + -0.004922015592455864, + 0.005996315740048885, + 0.032872945070266724, + -0.01326138898730278, + -0.0026092419866472483, + -0.0013412811094895005, + 0.0018345984863117337, + 0.006528683938086033, + -0.0163599643856287, + -0.006372480187565088, + -0.004089991096407175, + 0.016232449561357498, + 0.0008917965460568666, + -0.029022039845585823, + -0.024992618709802628, + -0.01630895771086216, + -0.021868539974093437, + 0.007650801446288824, + 0.015033825300633907, + -0.012432551942765713, + -7.252322393469512e-5, + 0.024597326293587685, + -0.02301616035401821, + 0.024839602410793304, + -0.013567421585321426, + -0.025005370378494263, + 0.020440392196178436, + -0.0293025691062212, + -0.008830299600958824, + -0.004545851144939661, + -0.005616963375359774, + -0.024979867041110992, + -0.014842554926872253, + -0.012145647779107094, + -0.00014155975077301264, + -0.024788597598671913, + 0.008938685990869999, + 0.027236852794885635, + -0.004137808457016945, + -0.006911224219948053, + -0.01962430588901043, + -0.01604118011891842, + 0.004692491609603167, + 0.017380069941282272, + -0.004944330547004938, + 0.010067179799079895, + 0.004325890447944403, + -0.017048535868525505, + -0.015186840668320656, + 0.02991463430225849, + 0.002140630502253771, + -0.034301094710826874, + -0.006528683938086033, + 0.0076699284836649895, + -0.005862426478415728, + 0.013707686215639114, + -0.012987235561013222, + -0.022875895723700523, + -0.0048933252692222595, + -0.0072236317209899426, + -0.022977907210588455, + 0.014625782147049904, + 0.009850407019257545, + 0.0014353222213685513, + 0.003755268407985568, + -0.01727806031703949, + 0.0017357756150886416, + 0.03249040246009827, + 0.004389647394418716, + 0.0026219934225082397, + 0.019828327000141144, + -0.011922499164938927, + -0.008294743485748768, + -0.0042493827641010284, + 0.006751832086592913, + -0.0008128976332955062, + 0.011297683231532574, + -0.015033825300633907, + 0.0018170654075220227, + -0.004794502165168524, + -0.014829803258180618, + -0.005613775458186865, + -0.0355762280523777, + 0.005301367957144976, + 0.0004690100613515824, + -0.009206464514136314, + -0.01711229234933853, + -0.01467678789049387, + 0.003927411511540413, + 0.000956350180786103, + -0.013363399542868137, + -0.014664036221802235, + 0.015250598080456257, + 0.0006985341315157712, + -0.0184384323656559, + 0.019305521622300148, + -0.014358004555106163, + 0.03134278208017349, + -0.011418821290135384, + -0.023768490180373192, + -0.010500725358724594, + -0.008811173029243946, + 0.0018856037640944123, + -0.019101500511169434, + 0.006426673382520676, + -0.012101017870008945, + -0.022149071097373962, + -0.00019316280668135732, + -0.0009850406786426902, + 0.018043139949440956, + -0.03651982545852661, + -0.026803307235240936, + 0.016933774575591087, + 0.004571354016661644, + 0.013784194365143776, + -0.011278556659817696, + -0.01234329305589199, + -0.009671888314187527, + -0.03585675731301308, + 0.030552200973033905, + -0.00970376655459404, + -0.002046589506790042, + -0.026369761675596237, + 0.01322313491255045, + -0.015696894377470016, + -0.00472436985000968, + -0.02021086774766445, + 0.004099554382264614, + 0.0006554983556270599, + 0.016002926975488663, + 0.037106387317180634, + -0.0018616950837895274, + -0.0015174089930951595, + 0.022518858313560486, + 0.014447263441979885, + -0.006713578477501869, + 0.00650318106636405, + 0.007848447188735008, + -0.021014200523495674, + -0.017099540680646896, + -0.03034817986190319, + 0.002437099115923047, + -0.0067199538461863995, + 0.011705726385116577, + -0.005613775458186865, + 0.0013046209933236241, + 0.015556629747152328, + 0.016130439937114716, + 0.01701028272509575, + 0.02146049775183201, + 0.012840595096349716, + -0.007746436633169651, + -0.017367320135235786, + 0.013159378431737423, + -0.009206464514136314, + -0.0016576736234128475, + -0.0052344235591590405, + -0.013758691027760506, + -0.014447263441979885, + 0.0014353222213685513, + -0.018451182171702385, + 0.0020338380709290504, + -0.0147150419652462, + -0.009110829792916775, + -0.0002954723604489118, + -0.019127003848552704, + 0.007006858941167593, + -0.005569146014750004, + -0.02177928201854229, + -0.017558589577674866, + 0.016831763088703156, + -0.006605192087590694, + 0.01614319160580635, + 0.006021818146109581, + 0.007567917928099632, + 0.01269395463168621, + 0.005926183424890041, + -0.01730356179177761, + -0.003563998267054558, + 0.0071534994058310986, + -0.01665324531495571, + 0.013210384175181389, + -0.015862662345170975, + -0.03356151655316353, + 0.006216275971382856, + 0.039095595479011536, + -0.0013691746862605214, + -0.00983765535056591, + -0.024380553513765335, + -0.012783214449882507, + 0.017316313460469246, + -0.012356044724583626, + 0.007587044965475798, + 0.01783911883831024, + -0.01841292902827263, + -0.001036842935718596, + -0.0005279849865473807, + 0.02741537243127823, + -3.55144620698411e-5, + 0.0006794070941396058, + 0.00036520621506497264, + -0.006095138378441334, + 0.031546805053949356, + -0.025107380002737045, + 0.01746932975947857, + -0.01887197606265545, + 0.015008321963250637, + 0.017941130325198174, + 0.0036946996115148067, + 0.0014361192006617785, + 0.02156250923871994, + 0.01490631140768528, + 0.006656197365373373, + 0.011087286286056042, + -0.001427352661266923, + -0.019024992361664772, + 0.02652277797460556, + -0.017584092915058136, + -0.0022553924936801195, + 0.002548673190176487, + -0.012266784906387329, + -0.003882781835272908, + -0.0006833918741904199, + 0.04542025923728943, + 0.022595366463065147, + 0.0335870198905468, + -0.008607151918113232, + -0.00744678033515811, + -0.04312501847743988, + -0.023947007954120636, + 0.0004630328912753612, + 0.00567434448748827, + -0.02458457462489605, + 0.019522294402122498, + -0.0006180413183756173, + 0.023118171840906143, + 0.009493369609117508, + -0.00040764425648376346, + 0.0037010752130299807, + -0.002017898950725794, + 0.00020083354320377111, + -0.0674290657043457, + -0.008473262190818787, + -0.011049032211303711, + 0.0018218470504507422, + -0.011584588326513767, + 0.017775362357497215, + 0.0006319881067611277, + 0.0016337649431079626, + -0.006209900602698326, + -0.004051737021654844, + 0.012394298799335957, + -0.011763107031583786, + 0.0024626017548143864, + 0.035831253975629807, + -0.030628709122538567, + 0.04248744994401932, + -0.022710129618644714, + 0.0293025691062212, + 0.0062322155572474, + 0.038075488060712814, + 0.006866594310849905, + 0.02342420443892479, + -0.009786650538444519, + -0.02313092350959778, + -0.004896512720733881, + 0.004268509801477194, + -0.0002600077132228762, + -0.014766046777367592, + -0.020529650151729584, + -0.00982490461319685, + 0.033791039139032364, + 0.0063788555562496185, + 0.002929619513452053, + 0.014829803258180618, + 0.013108373619616032, + 0.045241739600896835, + -0.001828222768381238, + -0.006515932735055685, + 0.004561790265142918, + 0.003975228872150183, + -0.0003857279079966247, + -0.012540938332676888, + -0.00589749263599515, + -0.015454619191586971, + -0.013452659361064434, + -0.01144432369619608, + -0.0070833670906722546, + -0.014638533815741539, + -0.010927895084023476, + 0.016500229015946388, + 0.005572333931922913, + -0.0102138202637434, + 0.024495316669344902, + -0.015735147520899773, + 0.0237174853682518, + -0.02937907725572586, + -0.00017264112830162048, + -0.03695337101817131, + -0.010130936279892921, + -0.008135352283716202, + 0.0033408498857170343, + -0.007593420334160328, + -0.017941130325198174, + -0.025477169081568718, + 0.0005072640487924218, + -0.006468114908784628, + 0.013580172322690487, + 0.024406056851148605, + 0.03560173138976097, + 0.001431337441317737, + 0.01959880255162716, + -0.013631178066134453, + -0.03509167581796646, + 0.019178008660674095, + -0.012387922964990139, + 0.03205685690045357, + -0.018578696995973587, + 0.017341816797852516, + 0.03473464027047157, + -0.019637057557702065, + -0.014740544371306896, + 0.0075742932967841625, + 0.00497939670458436, + -0.008741040714085102, + 0.006637070327997208, + -0.02698182687163353, + -0.003283469006419182, + 0.02654828131198883, + -0.010978899896144867, + 0.0031878340523689985, + -0.015276100486516953, + -0.007217255886644125, + -0.016104936599731445, + 0.007995087653398514, + 0.0004717994306702167, + 0.003975228872150183, + 0.006936726626008749, + 0.009142708033323288, + -0.000675023824442178, + -0.026344260200858116, + -0.013159378431737423, + 0.009435988031327724, + 0.01701028272509575, + 0.03374003618955612, + -0.00814172811806202, + -0.007759187836199999, + 0.031903840601444244, + 0.005247174762189388, + -0.0006439424469135702, + 0.01582440733909607, + -0.002618805505335331, + 0.016461974009871483, + 0.03164881467819214, + -0.05013825371861458, + -0.009671888314187527, + -0.015097581781446934, + 0.02137123793363571, + -0.008594400249421597, + -0.008900432847440243, + -0.013121124356985092, + -0.0010631426703184843, + -0.003023660508915782, + 0.011291307397186756, + 0.007147123571485281, + 0.012534563429653645, + 0.011629218235611916, + 0.009378607384860516, + 0.004705242812633514, + 0.009805777110159397, + 0.013133876025676727, + -0.007465906906872988, + -0.002440286800265312, + 0.002370154485106468, + 0.018425680696964264, + 0.00650318106636405, + 0.0020163049921393394, + -0.015492873266339302, + -0.011571837589144707, + 0.02234034053981304, + -0.010908767580986023, + -0.0014440887607634068, + -0.01950954459607601, + 0.004552226979285479, + 0.0060632601380348206, + 0.027134843170642853, + -0.019229013472795486, + 0.010156438685953617, + 0.006694451440125704, + -0.013159378431737423, + 0.009008818306028843, + -0.02015986107289791, + 0.007771939039230347, + 0.003458799794316292, + 0.02482685074210167, + -0.02325843647122383, + -0.018718961626291275, + 0.012738584540784359, + 0.0042589460499584675, + 0.008938685990869999, + -0.02337319776415825, + 0.0017708417726680636, + -0.007816568948328495, + -0.018208907917141914, + 0.03027167171239853, + -0.011597339995205402, + 0.012152022682130337, + 0.003347225720062852, + -0.011055408045649529, + -0.02894553169608116, + -0.005132412537932396, + -0.014587528072297573, + 0.0016433283453807235, + 0.012139271944761276, + -0.009773898869752884, + 0.0059835645370185375, + 0.004775375127792358, + -0.007854823023080826, + -0.035703741014003754, + -0.001705491216853261, + 0.011750356294214725, + -0.002440286800265312, + -0.008951437659561634, + -0.010736624710261822, + 0.006904848385602236, + 0.001036842935718596, + -0.0012050012592226267, + -0.0031192954629659653, + -0.02269737794995308, + 0.023003410547971725, + -0.0035416835453361273, + -0.01630895771086216, + 0.02884352207183838, + 0.026777805760502815, + 0.014842554926872253, + -0.02272288128733635, + -0.014613030478358269, + -0.015773402526974678, + 0.02010885626077652, + -0.004988959990441799, + 0.02037663385272026, + 0.005192981567233801, + 1.4469777852355037e-5, + 0.006681699771434069, + -0.015263348817825317, + 0.0012169555993750691, + 0.0196498092263937, + 0.019790073856711388, + -0.03493865951895714, + 0.0015923230675980449, + -0.027746906504034996, + 0.004367332439869642, + -0.0007483439985662699, + 0.017137795686721802, + 0.012496309354901314, + -0.01489356067031622, + 0.009640010073781013, + 0.01628345623612404, + 0.024074522778391838, + 0.00653505977243185, + 0.01242617703974247, + 0.016512980684638023, + -0.013580172322690487, + 0.002060934668406844, + -0.023309441283345222, + -0.0030619145836681128, + 0.011610091663897038, + -0.00878567062318325, + -0.017431076616048813, + -0.0026905317790806293, + 0.005623339209705591, + 0.000451875472208485, + -0.010003423318266869, + -0.01113191619515419, + -0.019930338487029076, + -0.023067167028784752, + 0.014638533815741539, + -0.003898720955476165, + -0.006442612502723932, + 0.02652277797460556, + 0.008741040714085102, + 0.025885211303830147, + 0.02010885626077652, + 0.0003751681942958385, + -0.015403613448143005, + -0.0023924694396555424, + 0.004227067809551954, + -0.001346859848126769, + 0.010456095449626446, + 0.008243738673627377, + 0.0355762280523777, + -0.0347091369330883, + -0.0006244169780984521, + -0.040574751794338226, + -0.0035098050720989704, + -0.01490631140768528, + -0.006923975422978401, + 0.003337662201374769, + -0.011119164526462555, + 0.001962111797183752, + 0.014625782147049904, + 0.008199108764529228, + -0.001923857838846743, + 0.005361936520785093, + 0.011284932494163513, + 0.011418821290135384, + -0.0035735617857426405, + -0.0008399942307732999, + -0.005036777816712856, + -0.0006491226959042251, + 0.03399506211280823, + -0.0124644311144948, + 0.0021087522618472576, + -0.0003046373894903809, + 0.000248850294156, + -0.005942122545093298, + 0.01919076032936573, + 0.0042940122075378895, + -0.004494845867156982, + -0.006949477829039097, + 0.009939665906131268, + -0.001810689689591527, + -0.005878365598618984, + -0.0010041677160188556, + -0.013631178066134453, + -0.003069884143769741, + -0.025936216115951538, + -0.019203511998057365, + 0.00662431912496686, + 0.023602722212672234, + -0.009589004330337048, + -0.0029439646750688553, + 0.011437947861850262, + 0.011814112775027752, + 0.031011248007416725, + 0.006732705514878035, + 0.021932298317551613, + -0.005553206894546747, + 0.006777334958314896, + -0.00034607923589646816, + -0.004883761517703533, + 0.002414784161373973, + -0.000864699948579073, + -0.02105245552957058, + 0.007140748202800751, + 0.00011446316057117656, + 0.01394996140152216, + 0.023194679990410805, + 0.020848434418439865, + -0.006197149399667978, + -0.0002725598169490695, + -0.02744087390601635, + 0.008741040714085102, + -0.015403613448143005, + 0.008639030158519745, + -0.03129177913069725, + -0.01122755091637373, + -0.019075999036431313, + -0.0035895011387765408, + 0.008702786639332771, + -0.021715525537729263, + 0.017431076616048813, + -0.025438914075493813, + 0.006066448055207729, + 0.006190773565322161, + 0.003847715677693486, + -0.017851870507001877, + 8.338178304256871e-5, + -0.011877869255840778, + 0.017558589577674866, + 0.020236369222402573, + 0.013197632506489754, + 0.01242617703974247, + -0.011399693787097931, + -0.000759501417633146, + 0.021039703860878944, + 0.01698477938771248, + -0.01894848421216011, + -0.01899949088692665, + 0.0015660234494134784, + 0.0002647894434630871, + 0.0003106145595666021, + -0.02218732424080372, + 0.014370755292475224, + 0.011233926750719547, + -0.0012424582382664084, + 0.02156250923871994, + -0.008600776083767414, + -0.013911707326769829, + 0.0025582367088645697, + 0.00962088257074356, + -0.020529650151729584, + -0.0023398702032864094, + -0.016028428450226784, + 0.009965169243514538, + 0.015008321963250637, + 0.02582145482301712, + -0.02563018538057804, + -0.008715538308024406, + -0.01207551546394825, + 0.03361251950263977, + 0.00909807812422514, + 0.032439399510622025, + 0.007032361812889576, + -0.0038413398433476686, + -0.0030491631478071213, + 0.023998014628887177, + 0.002618805505335331, + -0.028562992811203003, + -0.012744960375130177, + -0.012375171296298504, + -0.0012663670349866152, + -0.0200833547860384, + 0.005508576985448599, + -0.0124006737023592, + -0.008377627469599247, + 0.005907056387513876, + -0.006764583755284548, + -0.009404109790921211, + -0.011788610368967056, + -0.00331215956248343, + 0.0072937640361487865, + 0.0006395591772161424, + -0.0006654603639617562, + 0.0018361923284828663, + -0.01778811402618885, + 0.005119661334902048, + 0.004376896191388369, + 0.009327602572739124, + 0.001452058320865035, + 0.005164290778338909, + 0.000530774355866015, + 0.030883735045790672, + -0.01981557533144951, + 0.016780758276581764, + -0.0011061783879995346, + 0.007472282741218805, + 0.010768502950668335, + 0.013605675660073757, + 0.016461974009871483, + 0.024673834443092346, + -0.03374003618955612, + 0.0015771808102726936, + 0.009289348497986794, + -0.011450699530541897, + 0.004950705915689468, + -0.020478645339608192, + -0.0030921988654881716, + -0.01665324531495571, + -0.009480617940425873, + -0.0050208386965096, + 0.0013452658895403147, + 0.006283220835030079, + -1.9861699911416508e-5, + -0.011884245090186596, + 0.017265308648347855, + -0.00792495533823967, + -0.01439625769853592, + 0.031954847276210785, + 0.0021278790663927794, + -0.003650069935247302, + 0.01468953862786293, + -0.000984243699349463, + -0.026165740564465523, + -0.003286656690761447, + 0.01948404125869274, + -0.011488953605294228, + 0.0034970538690686226, + 0.011176546104252338, + -0.009901411831378937, + -0.029022039845585823, + 0.020236369222402573, + -0.005820984952151775, + -0.0001793156552594155, + 0.030169660225510597, + 0.014549273997545242, + -0.0049028885550796986, + 0.01967531070113182, + 0.002872238401323557, + -0.0030109090730547905, + 0.006751832086592913, + -0.018910231068730354, + -1.4444872249441687e-5, + 0.005320494994521141, + 0.011488953605294228, + 0.000963522819802165, + 0.03080722689628601, + -0.013388902880251408, + -0.006436236668378115, + -0.027848917990922928, + 0.03027167171239853, + 0.02395975962281227, + -0.009697390720248222, + 0.014013717882335186, + 0.019216263666749, + 0.0019955839961767197, + -0.013401653617620468, + -0.02514563500881195, + -0.001898355083540082, + -0.0006052899989299476, + 0.010073555633425713, + -0.030628709122538567, + 0.014880809001624584, + -0.030679713934659958, + -0.017163297161459923, + 0.0033280986826866865, + -0.014370755292475224, + -0.018846474587917328, + -0.008199108764529228, + 0.009104453958570957, + 0.033434003591537476, + -0.006821964867413044, + -0.002183666219934821, + 0.02091219089925289, + 0.015339856967329979, + -0.006031381897628307, + -0.007140748202800751, + 0.0036373184993863106, + 0.000580185791477561, + -0.0028037000447511673, + 0.011731228791177273, + -0.0010543761309236288, + 0.011284932494163513, + 0.0048582591116428375, + -0.002021086635068059, + -0.017915626987814903, + 0.008823924697935581, + -0.008670908398926258, + 0.007408526260405779, + -0.010825884528458118, + 0.021498752757906914, + -0.012611070647835732, + 0.0010926300892606378, + -0.009907787665724754, + 0.03118976764380932, + 0.015186840668320656, + -0.018349172547459602, + -0.019369279965758324, + -0.012445303611457348, + -0.0018059079302474856, + -0.011425197124481201, + 0.0005040762480348349, + -0.004918827675282955, + -0.004564978182315826, + -0.00592937134206295, + -0.015237846411764622, + -0.021919546648859978, + -0.010723873041570187, + -0.00039309976273216307, + 0.023462457582354546, + 0.001248036976903677, + -0.008734664879739285, + 0.014970067888498306, + 0.0001793156552594155, + 0.004408774431794882, + -0.0053045558743178844, + 0.02894553169608116, + 0.012228530831634998, + -0.006213088519871235, + -0.004281261004507542, + 0.012591944076120853, + 0.0006618740153498948, + -0.010436967946588993, + -0.014306998811662197, + -0.008505141362547874, + 0.014804300852119923, + -0.010991651564836502, + -0.005116473417729139, + 0.01207551546394825, + -0.01373318862169981, + -0.00520254485309124, + -0.017584092915058136, + -0.040064696222543716, + 0.003446048591285944, + 0.0034332971554249525, + 0.0032244939357042313, + 0.002282489091157913, + -0.006841091439127922, + -0.012687578797340393, + 0.022251080721616745, + -0.006216275971382856, + -0.01040508970618248, + -0.0015373328933492303, + -0.017048535868525505, + 0.023411452770233154, + 0.008709162473678589, + 0.003168707014992833, + -0.017176048830151558, + -0.01160371582955122, + 0.01537811104208231, + 0.025464417412877083, + 0.032337386161088943, + 0.02514563500881195, + -0.008026965893805027, + 0.0022059811744838953, + 0.008741040714085102, + 0.014791549183428288, + -0.001465606619603932, + -0.028639500960707664, + 0.031521301716566086, + -0.018591446802020073, + 0.009078951552510262, + 0.001877634203992784, + 0.0072236317209899426, + 0.007427653297781944, + 0.008983315899968147, + 0.024597326293587685, + -0.010009798221290112, + 0.00296787335537374, + -0.017673350870609283, + 0.005049529019743204, + -0.011361440643668175, + 0.012923479080200195, + 0.008262865245342255, + 0.003379103960469365, + 0.002830796642228961, + -0.012030885554850101, + -0.00017722364282235503, + 0.011087286286056042, + -0.006493617780506611, + -0.010602735914289951, + 0.007121621165424585, + 0.008097098208963871, + -0.00956987775862217, + 0.009939665906131268, + -0.015492873266339302, + -0.017074039205908775, + 0.008989691734313965, + -9.364262223243713e-5, + -0.02061890996992588, + 0.015786154195666313, + 0.010966149158775806, + 0.007300139870494604, + -0.00888130534440279, + -0.011304059065878391, + -0.01183323934674263, + -0.032413896173238754, + 0.0040134829469025135, + -0.0036468820180743933, + -0.005840111989527941, + 0.023296689614653587, + 0.00662431912496686, + 0.013172130100429058, + 0.01892298273742199, + -0.022085312753915787, + -0.014829803258180618, + -0.013312394730746746, + -0.006130204536020756, + -0.0004323499742895365, + -0.004800877999514341, + 0.01347816176712513, + 0.009206464514136314, + -0.0060983262956142426, + -0.014549273997545242, + -0.018043139949440956, + 0.0028499234467744827, + -0.0203001257032156, + 0.0007714558159932494, + -0.008836675435304642, + -0.0011826864210888743, + -0.0014775610761716962, + -0.0261402390897274, + 0.003308971645310521, + -0.008817548863589764, + -0.000970695458818227, + -0.008996067568659782, + -0.002982218749821186, + -0.013682182878255844, + -0.0011962347198277712, + 0.011673848144710064, + 0.019420284777879715, + -0.000312806194415316, + -0.01121480017900467, + 0.018157903105020523, + -0.019075999036431313, + 0.031011248007416725, + 0.01638546586036682, + 0.001825034967623651, + 0.013758691027760506, + 0.02350071258842945, + 0.0029455586336553097, + 0.00649680569767952, + -0.007032361812889576, + 0.0023813119623810053, + -0.004290824290364981, + -0.0039433506317436695, + -0.007070615887641907, + -0.001044015632942319, + 0.025757698342204094, + -0.010896016843616962, + -0.00939135905355215, + -0.0016512980218976736, + 0.0032229002099484205, + 6.873766687931493e-5, + 0.015250598080456257, + 0.020465893670916557, + 0.000906938745174557, + 0.00419837748631835, + 0.007714558392763138, + -0.0020928129088133574, + 0.022251080721616745, + 0.023462457582354546, + 0.002315961290150881, + -0.007191753480583429, + 0.012904351577162743, + 0.00974202062934637, + -0.011335937306284904, + -0.00849238969385624, + 0.011686598882079124, + -0.010022549889981747, + 0.017635097727179527, + 0.015276100486516953, + 0.009557126089930534, + -0.0038062736857682467, + -0.007752812001854181, + 0.011080910451710224, + -0.022761134430766106, + -0.003927411511540413, + -0.009952417574822903, + 0.03845802694559097, + -0.008741040714085102, + 0.010009798221290112, + 7.526276749558747e-5, + 0.012732208706438541, + 0.008575273677706718, + -0.020312877371907234, + 0.002913680160418153, + -0.008862178772687912, + -0.008109849877655506, + -0.006617943290621042, + 0.02800193428993225, + 0.010532603599131107, + -0.005014462862163782, + -0.00979940127581358, + -0.008262865245342255, + 0.023309441283345222, + 0.0015413176734000444, + -0.015620386227965355, + 0.01633446104824543, + 0.010328581556677818, + 0.003111325902864337, + -0.00010539776121731848, + 0.001909512560814619, + -0.009506121277809143, + 0.013184880837798119, + 0.004918827675282955, + 0.019739067181944847, + -0.0019222638802602887, + -0.009295723401010036, + -0.00827561691403389, + 0.011826863512396812, + 0.013337897136807442, + -0.0232839398086071, + -0.010519851930439472, + -0.00563290249556303, + 0.01173760462552309, + 0.002518388908356428, + -0.005623339209705591, + 0.011068159714341164, + -0.019713565707206726, + 0.01773710735142231, + -0.01439625769853592, + -0.002461007796227932, + 0.03753993287682533, + 0.017163297161459923, + 0.001610653125680983, + 0.0021884480956941843, + -0.0011763107031583786, + -0.012929854914546013, + 0.006834716070443392, + 0.004689303692430258, + -0.0028355782851576805, + 5.583690290222876e-5, + -0.02526039630174637, + -0.02245510183274746, + 0.004290824290364981, + -0.018527690321207047, + 0.007217255886644125, + 0.00675820792093873, + 0.011004403233528137, + -0.03215887024998665, + -0.009289348497986794, + 0.018106896430253983, + 0.00040126859676092863, + -0.0013261389685794711, + -0.0190887488424778, + -0.009716518223285675, + 0.003372728358954191, + 0.02434230037033558, + 0.01468953862786293, + 0.01674250327050686, + 0.0050686560571193695, + 0.01913975551724434, + -0.0005120458081364632, + 0.006522308103740215, + 0.0033695404417812824, + -0.002300022169947624, + -0.0034970538690686226, + 0.020032348111271858, + 0.01630895771086216, + 0.005862426478415728, + -0.005473510827869177, + -0.03991167992353439, + -0.01948404125869274, + -0.005212108604609966, + 7.740459113847464e-5, + 0.011909747496247292, + -0.01101077813655138, + -0.004820005036890507, + 0.002333494368940592, + -0.004160123411566019, + -0.002151787979528308, + 0.009027945809066296, + 0.012757711112499237, + 0.003959289751946926, + -0.023526214063167572, + 0.03753993287682533, + -0.017265308648347855, + 0.026267752051353455, + 0.01735456846654415, + 0.004262133967131376, + -0.011406069621443748, + 0.02649727649986744, + 0.025783201679587364, + 0.01911425217986107, + 0.01560763455927372, + -0.003034817986190319, + -0.01674250327050686, + -0.007255509961396456, + 0.0065095569007098675, + 0.007752812001854181, + -0.007064240053296089, + 0.015429116785526276, + 0.001982832793146372, + 0.010845011100172997, + -0.005097346380352974, + -0.0069303507916629314, + -0.005667968653142452, + -0.0024769469164311886, + 0.0047881267964839935, + -0.017622346058487892, + 0.007147123571485281, + -0.01183323934674263, + 0.003076259745284915, + 0.0130063621327281, + 0.01695927605032921, + 0.00305235106498003, + -0.008862178772687912, + 0.0027797911316156387, + -0.009901411831378937, + 0.0069303507916629314, + -0.011278556659817696, + 0.003382291877642274, + -0.010921519249677658, + -0.012407049536705017, + 0.03269442543387413, + -0.0022267019376158714, + 0.014740544371306896, + 0.007127996534109116, + -0.019024992361664772, + 0.0002865065762307495, + -0.015735147520899773, + 0.02514563500881195, + -0.009142708033323288, + 0.0014257587026804686, + -0.002158163581043482, + -0.012381547130644321, + 0.010366835631430149, + -0.013490913435816765, + -0.0050750314258039, + 0.006292784120887518, + 0.006656197365373373, + -0.011042656376957893, + -0.0015795717481523752, + -0.003557622665539384, + 0.004160123411566019, + -0.014153982512652874, + 0.0038509033620357513, + 0.008294743485748768, + 0.01897398754954338, + -0.012936229817569256, + -0.02582145482301712, + 0.01630895771086216, + 0.009467867203056812, + 0.013337897136807442, + 0.002531140111386776, + 0.011195672675967216, + 0.00420475285500288, + -1.26703944260953e-5, + -0.020338380709290504, + 0.008339373394846916, + -0.03022066503763199, + 0.008269241079688072, + -0.015951920300722122, + -0.023870499804615974, + 0.0031097319442778826, + -0.02889452688395977, + -0.010672868229448795, + -0.00032117427326738834, + 0.00793770607560873, + 0.003732953453436494, + -0.020950444042682648, + -0.023832246661186218, + -0.012241282500326633, + 0.0016497040633112192, + 0.017074039205908775, + 0.017877371981739998, + -0.0023637788835912943, + -0.0021422244608402252, + -0.009467867203056812, + 0.014026469551026821, + 0.022824890911579132, + 0.008001463487744331, + -0.012152022682130337, + 0.02889452688395977, + -0.006528683938086033, + 0.011807736940681934, + 0.013605675660073757, + 0.019802823662757874, + -0.028282463550567627, + -0.020720921456813812, + 0.006783710792660713, + -0.006770959123969078, + -0.0017309938557446003, + -0.0007411714177578688, + 0.01829816773533821, + -0.012164774350821972, + 0.014141231775283813, + -0.00974202062934637, + -0.021218223497271538, + -0.003087417222559452, + 0.0034747389145195484, + -0.004440652672201395, + -0.014447263441979885, + 0.04891412332653999, + 0.005718973930925131, + 0.004252570681273937, + 0.013121124356985092, + -0.020848434418439865, + 0.0024705713149160147, + -0.0014153983211144805, + 0.011476201936602592, + -0.0322863832116127, + 0.01122755091637373, + -0.01044334378093481, + -0.007689055521041155, + 0.016321709379553795, + 0.0007351941894739866, + 0.0065796892158687115, + -0.002183666219934821, + -0.016104936599731445, + 0.008817548863589764, + 0.00010191106412094086, + 0.02647177316248417, + -0.010003423318266869, + -0.00018080996233038604, + 0.012458055280148983, + -0.006528683938086033, + 0.004606420174241066, + -0.013235886581242085, + 0.00853064376860857, + -0.028665002435445786, + 0.0022553924936801195, + -0.003087417222559452, + -0.008830299600958824, + 0.0009053448447957635, + -0.0038700303994119167, + 0.003012503031641245, + 0.005333246197551489, + 0.01768610253930092, + -0.006592440418899059, + -0.008403129875659943, + -0.011042656376957893, + 0.02185579016804695, + 0.002848329721018672, + 0.011673848144710064, + 0.00029726550565101206, + -0.011941625736653805, + -0.00203861971385777, + -0.007848447188735008, + -0.01948404125869274, + -0.0032324637286365032, + 0.006082387175410986, + 0.024214787408709526, + 0.005999503657221794, + -0.0033344742842018604, + 0.0042143166065216064, + 0.0012607882963493466, + -0.01489356067031622, + 0.01662774197757244, + 0.02134573645889759, + -0.007988711819052696, + 0.019777322188019753, + 0.030960243195295334, + 0.02889452688395977, + 0.008422257378697395, + -0.02517113648355007, + 0.028537489473819733, + 0.003446048591285944, + -0.004227067809551954, + -0.012955357320606709, + -0.017507584765553474, + -0.00515472749248147, + -0.010825884528458118, + 0.010258449241518974, + -0.00390190863981843, + 0.014791549183428288, + -0.011221175082027912, + -0.02881801873445511, + 0.013274140655994415, + 0.006732705514878035, + 0.01829816773533821, + 0.02231483720242977, + 0.014102977700531483, + 0.0005506983143277466, + -0.0020625286269932985, + 0.006777334958314896, + -0.002837172243744135, + 0.018502188846468925, + -0.009780274704098701, + -0.003563998267054558, + -0.00935310497879982, + -0.005017650779336691, + 0.013924458995461464, + -0.015760650858283043, + 0.0102138202637434, + 0.002869050484150648, + -0.010985275730490685, + -0.027619393542408943, + 0.0020370259881019592, + 0.007402150426059961, + 0.018400177359580994, + -0.011061783879995346, + -0.01873171143233776, + -0.013337897136807442, + -0.004619171377271414, + -0.017048535868525505, + 0.007561542093753815, + 0.016436472535133362, + -0.006949477829039097, + -0.0003915058623533696, + 0.02081017941236496, + 0.023385949432849884, + 0.008301119320094585, + 0.014868057332932949, + -0.014447263441979885, + 0.001142838504165411, + 0.023679230362176895, + 0.021090708673000336, + -0.01570964604616165, + 0.010494349524378777, + -0.01776261068880558, + -0.002696907613426447, + -0.006171646527945995, + -0.003385479561984539, + 0.01851494051516056, + 0.017316313460469246, + 2.4020826458581723e-5, + 0.013299643062055111, + 0.006643446162343025, + -0.0020975947845727205, + -0.018565945327281952, + 0.0010169190354645252, + -0.022620869800448418, + 0.02066991478204727, + 0.025642937049269676, + -0.00927022099494934, + 0.003956101834774017, + 0.01805589161813259, + 0.011323186568915844, + -0.009180962108075619, + -0.010691994801163673, + -0.011629218235611916, + -0.006021818146109581, + -0.022008806467056274, + -0.009008818306028843, + 0.023194679990410805, + 0.00576041592285037, + 0.009244718588888645, + 0.007032361812889576, + -0.022085312753915787, + 0.0007459531188942492, + 0.004944330547004938, + 0.005390627309679985, + 0.006866594310849905, + -0.009429613128304482, + 0.010711122304201126, + 0.011763107031583786, + -0.015582132153213024, + 0.0014209769433364272, + 0.016512980684638023, + -0.0030778537038713694, + -0.01373318862169981, + 0.027670398354530334, + 0.012292287312448025, + -0.00779744191095233, + 0.017507584765553474, + -0.005980376619845629, + -0.010538979433476925, + 0.008384003303945065, + 0.02412552759051323, + 0.014447263441979885, + -0.015276100486516953, + 0.0032468088902533054, + 0.006796461995691061, + 0.012324166484177113, + 0.006187585648149252, + 0.01490631140768528, + -0.0074595315381884575, + 0.0012990423711016774, + -0.048506081104278564, + 0.011316810734570026, + -0.020223619416356087, + 0.01641096919775009, + -0.011571837589144707, + -0.013274140655994415, + 0.012725832872092724, + 0.0235899705439806, + -0.004105930216610432, + -0.001842568046413362, + 0.015084830112755299, + -0.027262356132268906, + 0.011903371661901474, + -0.0013301237486302853, + -0.0037712075281888247, + 0.014141231775283813, + 0.006923975422978401, + 0.01805589161813259, + 0.017800865694880486, + 0.004730745684355497, + 0.01265570055693388, + -0.006034569814801216, + -0.0019605178385972977, + -0.00016397421131841838, + 0.006815589033067226, + 0.00921921618282795, + 0.004147371742874384, + -0.003512992989271879, + -0.01160371582955122, + 0.008970565162599087, + -0.0022522045765072107, + -0.012630198150873184, + 0.002003553556278348, + 0.011233926750719547, + 0.0004088396963197738, + 0.006005879025906324, + 0.01541636511683464, + 0.015327105298638344, + 0.0031591434963047504, + 0.0010201068362221122, + -0.004411962348967791, + -0.0024944799952208996, + -0.0016799884615465999, + -0.007791066076606512, + 0.005285428836941719, + 0.012011758051812649, + -0.011903371661901474, + -0.007822944782674313, + 0.0005375485052354634, + 0.027109339833259583, + -0.00576041592285037, + -0.00419837748631835, + -0.016614990308880806, + -0.006331038195639849, + -0.009805777110159397, + 0.006069635972380638, + 0.0039178477600216866, + 0.009780274704098701, + 0.012483557686209679, + -0.005110098049044609, + -0.01754583790898323, + -0.014804300852119923, + -0.018986739218235016, + 0.006668948568403721, + -0.009435988031327724, + 0.009085326455533504, + -0.009933291003108025, + 0.021868539974093437, + 0.04067676141858101, + 0.01144432369619608, + -0.020019596442580223, + -0.002932807197794318, + -0.002795730484649539, + -0.014319750480353832, + -0.022302085533738136, + -0.00021019780251663178, + 0.006923975422978401, + -0.001986020477488637, + -0.001198625541292131, + 0.010022549889981747, + -0.015837159007787704, + -0.0015556629514321685, + 0.0009220809442922473, + 0.0027160344179719687, + -0.021843038499355316, + -0.015518375672399998, + -0.02035113237798214, + 0.007344769313931465, + -0.01560763455927372, + 0.011284932494163513, + 0.009589004330337048, + -0.006911224219948053, + -0.016155943274497986, + -0.011355064809322357, + -0.0029694673139601946, + -0.002352621406316757, + -0.0005885538412258029, + -0.013121124356985092, + 0.02932807244360447, + -0.00010519852366996929, + 0.018145151436328888, + -0.011304059065878391, + -0.037233900278806686, + 0.00292483763769269, + 0.0020131170749664307, + 0.010232946835458279, + -0.00210237642750144, + 0.007032361812889576, + -0.019535046070814133, + -0.0020768737886101007, + 0.030067650601267815, + 0.004826380405575037, + -0.022812139242887497, + 0.01846393384039402, + -0.011042656376957893, + 0.024049019441008568, + 0.008556146174669266, + -0.006050508935004473, + -0.01101077813655138, + -0.0021119399461895227, + -0.01040508970618248, + -0.021690022200345993, + -0.027338864281773567, + 0.0062035247683525085, + -0.010940645821392536, + 0.002872238401323557, + 0.002457819879055023, + -0.01962430588901043, + -0.01187149342149496, + 0.013427156955003738, + 0.010704746469855309, + 0.0016481101047247648, + 0.008868553675711155, + 0.01373318862169981, + 0.01897398754954338, + 0.002966279396787286, + 0.014102977700531483, + -0.01269395463168621, + 0.0011771076824516058, + 0.01299361139535904, + 0.014587528072297573, + -0.010105433873832226, + 0.017418324947357178, + 0.006044133100658655, + -0.015977423638105392, + 0.01889747940003872, + -0.0051037222146987915, + -0.00497939670458436, + -0.00710249412804842, + 0.017392821609973907, + -0.0051387883722782135, + 0.006605192087590694, + 0.02991463430225849, + 0.014026469551026821, + 0.025668438524007797, + -0.013427156955003738, + -0.0054193176329135895, + 0.0003879195428453386, + -0.01103628147393465, + 0.00322768185287714, + -0.014600279740989208, + 0.008670908398926258, + -0.0130063621327281, + 0.025617433711886406, + 0.008122600615024567, + 0.02506912685930729, + -0.00407086405903101, + 0.004297200124710798, + -0.01468953862786293, + 0.00027614610735327005, + 0.004239819012582302, + 0.008772918954491615, + -0.0015604447107762098, + -0.0190887488424778, + 0.005766791757196188, + -0.0039529139176011086, + -0.01633446104824543, + -0.012623822316527367, + -0.01018831692636013, + -0.004708430729806423, + 0.004042173270136118, + 0.0025502671487629414, + -0.00997154414653778, + 0.010060803964734077, + 0.023870499804615974, + -0.007147123571485281, + -0.0059484983794391155, + 0.010258449241518974, + -0.01322313491255045, + 0.013363399542868137, + -0.000706902181264013, + -0.0016879580216482282, + -0.010545354336500168, + -0.00684746727347374, + 0.0231564249843359, + 0.01208826620131731, + -0.012827843427658081, + -0.01424324233084917, + -3.790533810388297e-5, + 0.022225577384233475, + 0.026828810572624207, + -0.018565945327281952, + 0.0017835930921137333, + -0.006809213198721409, + -0.008454135619103909, + -0.005878365598618984, + -0.022008806467056274, + -0.0015245815739035606, + 0.0043992106802761555, + 0.009142708033323288, + -0.012662076391279697, + 0.008237362839281559, + 0.019496792927384377, + 0.00819273293018341, + -0.010825884528458118, + -0.004835944157093763, + -0.01101077813655138, + -0.025489920750260353, + -0.008473262190818787, + -0.009939665906131268, + -0.011106413789093494, + -0.005511764902621508, + 0.03175082430243492, + 0.011909747496247292, + -0.013835199177265167, + 0.008849427103996277, + 0.024508068338036537, + 0.010749376378953457, + 0.005387439392507076, + 0.016538482159376144, + -0.012126520276069641, + -0.014179485850036144, + 0.013299643062055111, + -0.0021996053401380777, + 0.014319750480353832, + -0.009537999518215656, + -0.006617943290621042, + -0.0009794619400054216, + 0.0008001463138498366, + -0.012719457037746906, + 0.009455115534365177, + 0.020937694236636162, + -0.0036819481756538153, + 0.004969832953065634, + -0.022493356838822365, + -0.04121231660246849, + -0.020606158301234245, + -0.012846970930695534, + 0.008001463487744331, + 0.002049777191132307, + 0.0037648319266736507, + 0.018884727731347084, + 0.015314354561269283, + 0.01768610253930092, + -0.015314354561269283, + 0.014358004555106163, + -0.010436967946588993, + 0.01062186248600483, + -5.409355799201876e-5, + 0.005377876106649637, + -0.029277067631483078, + -0.009200088679790497, + -0.007045113015919924, + -0.004915639758110046, + -0.027823414653539658, + -0.027313360944390297, + 0.0031734886579215527, + 0.004140996374189854, + -0.004756248090416193, + 0.007242758758366108, + 0.014957317151129246, + 0.016449222341179848, + -0.014766046777367592, + -0.01916525699198246, + -0.02705833502113819, + 0.007835695520043373, + 0.008084346540272236, + -0.006898472551256418, + -9.619538104743697e-6, + -0.004960269667208195, + -0.008250114507973194, + 0.012757711112499237, + 0.004992147907614708, + 0.025451665744185448, + 0.010825884528458118, + -0.0021629452239722013, + -0.01827266439795494, + 0.01565864123404026, + 0.005932558793574572, + 0.005706222727894783, + 0.0060186306945979595, + -0.0017341816565021873, + -0.010334957391023636, + 0.013924458995461464, + 0.002158163581043482, + -0.03310246765613556, + 0.024240288883447647, + 0.010099058039486408, + -0.01183323934674263, + 0.0014050378231331706, + 0.005365124437958002, + 0.01269395463168621, + 0.016002926975488663, + 0.022085312753915787, + 0.01766059920191765, + 0.029583098366856575, + -0.0042143166065216064, + -0.0018967612413689494, + -0.016270704567432404, + -0.015237846411764622, + 0.0006670542643405497, + 0.008938685990869999, + 0.011731228791177273, + -0.0025104193482548, + -0.015174089930951595, + 0.003379103960469365, + 0.011259429156780243, + -0.015671391040086746, + 0.014383506961166859, + -0.024724839255213737, + 5.098043766338378e-5, + -0.005875178147107363, + 0.03881506621837616, + 0.023806743323802948, + 0.009550750255584717, + 0.00878567062318325, + 0.004835944157093763, + -0.014931813813745975, + 0.017609594389796257, + -0.014064723625779152, + 0.01771160587668419, + 0.00995879340916872, + -0.006362916436046362, + 0.006136580370366573, + -0.011724852956831455, + 0.007427653297781944, + 0.007944081909954548, + 0.016053931787610054, + -0.006324662361294031, + -0.007912203669548035, + 0.000615251949056983, + -0.013414405286312103, + -0.01984107866883278, + -0.026803307235240936, + 0.010698370635509491, + -0.014625782147049904, + 0.021014200523495674, + -0.002770227612927556, + 0.026025475934147835, + 0.011692974716424942, + -0.01230503898113966, + 0.006949477829039097, + 0.008951437659561634, + -0.0021215034648776054, + -0.0006403561565093696, + -0.03131728246808052, + 0.025897962972521782, + 0.02323293313384056, + -0.01695927605032921, + -0.0048933252692222595, + 0.027083836495876312, + -0.01563313789665699, + 0.0029025229159742594, + -0.0013588141882792115, + -0.006149331573396921, + 0.006136580370366573, + 0.006149331573396921, + -0.027083836495876312, + 0.007912203669548035, + -0.003267529886215925, + -0.012069139629602432, + -0.015135835856199265, + 0.0065095569007098675, + -0.0038795939180999994, + 0.00348749035038054, + 0.01446001511067152, + 0.015582132153213024, + -0.018259912729263306, + 0.010927895084023476, + 0.011182921938598156, + 0.03697887435555458, + 0.027619393542408943, + -0.002475352957844734, + 0.0047530606389045715, + 0.009225591085851192, + -0.0050782193429768085, + -0.00279254256747663, + -0.006241778843104839, + -0.0004973020986653864, + -0.020363884046673775, + 0.009576253592967987, + -0.004067676141858101, + 0.009346729144454002, + 0.009168210439383984, + 0.0029280255548655987, + 0.0011053814087063074, + -0.005049529019743204, + -0.005285428836941719, + -0.007166250608861446, + 0.005773167125880718, + -0.0071534994058310986, + 0.0042589460499584675, + -0.007121621165424585, + 0.024457061663269997, + 0.021524254232645035, + 0.004737121053040028, + -0.0034301092382520437, + -0.006095138378441334, + -0.015913667157292366, + 0.0011611685622483492, + 0.024253040552139282, + -0.01935652829706669, + -0.007210880517959595, + -0.02088668756186962, + -0.020236369222402573, + 0.012292287312448025, + 0.007536039687693119, + -0.0008160854922607541, + -0.01018831692636013, + -0.015913667157292366, + 0.0026427144184708595, + -0.008505141362547874, + 9.922133176587522e-5, + -0.03649432212114334, + -0.024355052039027214, + -0.0017628722125664353, + 0.010086306370794773, + -0.031113259494304657, + 0.02248060517013073, + -0.01347816176712513, + -0.018400177359580994, + -0.006254530046135187, + -0.00962088257074356, + -0.031138762831687927, + -0.01887197606265545, + 0.03085823357105255, + 0.018208907917141914, + -0.014026469551026821, + -0.015747899189591408, + -0.0005666374927386642, + -0.006617943290621042, + -0.0015277693746611476, + 0.0007909812848083675, + 0.011896996758878231, + -0.011233926750719547, + 0.026318756863474846, + -0.0041888137347996235, + -0.010800381191074848, + -0.008779294788837433, + 0.001856913324445486, + 0.009321226738393307, + -0.01899949088692665, + 0.0013094027526676655, + -0.0051483516581356525, + -0.008836675435304642, + -0.011597339995205402, + -0.011412445455789566, + 0.004762623924762011, + -0.0012807123130187392, + 0.0284354779869318, + 0.006605192087590694, + 0.009499745443463326, + 0.0014783579390496016, + 0.00792495533823967, + -0.024469813331961632, + -0.000829633790999651, + -0.01017556618899107, + -0.01169935055077076, + -0.00589749263599515, + -0.006012254860252142, + 0.0008320246706716716, + 0.004051737021654844, + -0.02751738205552101, + 0.010105433873832226, + 0.007886701263487339, + -0.018667954951524734, + -0.0022267019376158714, + -0.012324166484177113, + -0.007516912650316954, + 0.0070833670906722546, + 0.002833984326571226, + -0.006611567456275225, + -0.011189296841621399, + 0.010602735914289951, + -0.012744960375130177, + -0.04748597368597984, + 0.005954873748123646, + 0.008026965893805027, + 0.01126580499112606, + 0.021116212010383606, + 0.005355561152100563, + 0.0073638963513076305, + 0.011769482865929604, + -0.017099540680646896, + -0.028716009110212326, + 0.010373211465775967, + -0.012311414815485477, + 0.016347212716937065, + 0.005661593284457922, + -0.012897975742816925, + 0.0031830521766096354, + 0.00589749263599515, + 0.013937209732830524, + 0.005416129715740681, + 0.015059327706694603, + -0.0047530606389045715, + 0.0078101931139826775, + 0.03264341875910759, + -0.01625795289874077, + 0.0037520804908126593, + 0.019178008660674095, + 0.010494349524378777, + 0.0004698070406448096, + 0.016500229015946388, + 0.0101500628516078, + -0.004488470032811165, + 0.01846393384039402, + 0.011004403233528137, + -0.010832259431481361, + 0.0071790022775530815, + -0.010424217209219933, + 0.0032707175705581903, + 0.04735846072435379, + -0.013541918247938156, + -0.010730248875916004, + -0.0037457048892974854, + -0.029710613191127777, + 0.011055408045649529, + 0.0051993574015796185, + 0.005942122545093298, + -0.0012647730764001608, + -0.0315978117287159, + -0.011552710086107254, + 0.017048535868525505, + 0.007618923205882311, + 0.020287375897169113, + 0.0023717484436929226, + 0.025477169081568718, + -0.006480866577476263, + -0.011788610368967056, + 0.02051689848303795, + 0.004733933601528406, + 0.014613030478358269, + 0.018323669210076332, + -0.004934766795486212, + 0.013312394730746746, + 0.005884741432964802, + -0.00041083208634518087, + -0.020019596442580223, + 0.003178270533680916, + -0.006034569814801216, + 0.005004899110645056, + -0.0027048771735280752, + -0.022926902398467064, + -0.007625299040228128, + -0.006528683938086033, + -0.015237846411764622, + -0.031852837651968, + -0.026905318722128868, + -0.004679740406572819, + 0.019547797739505768, + 0.0172270555049181, + 0.02647177316248417, + -0.0037680198438465595, + -0.004794502165168524, + -3.7780813727295026e-5, + 0.004733933601528406, + 0.011367815546691418, + 0.01420498825609684, + 0.00697498070076108, + 0.024737590923905373, + -0.012630198150873184, + 0.0018409740878269076, + 0.0011053814087063074, + -0.01218390092253685, + 0.009302099235355854, + 0.01173760462552309, + 0.00628003291785717, + -0.01706128753721714, + -0.0030890111811459064, + -0.0038859695196151733, + -0.025655686855316162, + -0.006184397730976343, + -0.0235899705439806 + ], + "c92dd0dc-c2d7-40d9-a9e4-36c908174d04": [ + -0.03636582940816879, + 0.0014963473659008741, + -0.01852843351662159, + -0.004491741303354502, + -0.05001381039619446, + -0.015231610275804996, + 0.004175015725195408, + 0.038784459233284, + 0.01092702429741621, + 0.042585164308547974, + 0.00021943578030914068, + 0.03440789133310318, + -0.023236123844981194, + 0.006352502852678299, + -0.02303457073867321, + 0.02260267175734043, + -0.03636582940816879, + 0.03371685370802879, + 0.003649539779871702, + 0.0133744478225708, + 0.05067605525255203, + -0.03872687369585037, + -0.008652360178530216, + 0.005438318010419607, + -0.024834146723151207, + -0.022890605032444, + 0.013583198189735413, + -0.01821170747280121, + -0.0445718951523304, + -0.04123188182711601, + 0.011992373503744602, + 0.029124336317181587, + 0.011481293477118015, + -0.015159626491367817, + -0.0031816500704735518, + -0.05096398666501045, + -0.004358572885394096, + 0.003926674369722605, + -0.0014720530016347766, + -0.011654052883386612, + -0.046875350177288055, + 0.023984747007489204, + 0.033601678907871246, + -0.004351374227553606, + -0.0023358494509011507, + 0.016570493578910828, + 0.028102176263928413, + -0.00930020771920681, + -0.005423921626061201, + -0.024186300113797188, + 0.005816229153424501, + 0.04773914813995361, + -0.03170132637023926, + -0.0020263222977519035, + 0.005020816810429096, + -0.03101029060781002, + 0.012647419236600399, + 0.10451936721801758, + 0.025885099545121193, + -0.04670259356498718, + -0.004923639353364706, + -0.014655745588243008, + -0.009314604103565216, + -0.01659928821027279, + -0.0293978713452816, + -0.0026363786309957504, + 0.0019291453063488007, + -0.0122299175709486, + -0.005909807048738003, + 0.0206015445291996, + -0.005395128391683102, + 0.027670277282595634, + -0.04445672035217285, + -0.008184471167623997, + -0.029239507392048836, + -0.001495447475463152, + 0.011834010481834412, + -0.023207329213619232, + 0.017376704141497612, + 0.015015660785138607, + -0.03829497471451759, + 0.015102040022611618, + 0.022861812263727188, + 0.04062722250819206, + 0.022343533113598824, + 0.010977412573993206, + -0.01044473797082901, + -0.045694828033447266, + -0.061329543590545654, + -0.004369370173662901, + 0.04710569605231285, + 0.04149102047085762, + -0.02450302429497242, + 0.011214956641197205, + -0.0020263222977519035, + 0.011049395427107811, + 0.05505262315273285, + 0.01884515769779682, + -0.018442053347826004, + -0.02006886899471283, + -0.013489620760083199, + 0.005848621483892202, + -0.061617475003004074, + 0.011790821328759193, + -0.008789128623902798, + -0.0016133197350427508, + -0.0030826732981950045, + 0.010056030005216599, + -0.036106690764427185, + 0.0022584677208215, + -0.002188284182921052, + -0.01655609719455242, + 0.004527732729911804, + 0.0198817141354084, + 0.008573179133236408, + -0.01773661933839321, + -0.018830761313438416, + -0.024243885651230812, + -0.013309663161635399, + -0.03458064794540405, + 0.03892842307686806, + 0.01973774842917919, + 0.003187048714607954, + -0.02500690519809723, + 0.012064356356859207, + 0.0042685940861701965, + 0.008026108145713806, + -0.009732105769217014, + 0.0036855312064290047, + 0.015620318241417408, + 0.015577128157019615, + -0.007946927100419998, + 0.005621874704957008, + -0.02568354643881321, + -0.023020174354314804, + 0.018902745097875595, + 0.01824050024151802, + 0.05211571604013443, + -0.021220598369836807, + 0.05018657073378563, + -0.005229567177593708, + -0.024027936160564423, + -0.0005866617430001497, + 0.0030934708192944527, + 0.04382327198982239, + -0.005333942826837301, + -0.04992743209004402, + 0.03184529393911362, + -0.0008745938539505005, + 0.023941557854413986, + -0.024848543107509613, + -0.021508529782295227, + 0.03175891563296318, + 0.00833563506603241, + -0.003728721057996154, + 0.005082002375274897, + 0.008450808003544807, + 0.05698176845908165, + 0.023020174354314804, + 0.018643606454133987, + -0.028015796095132828, + -0.026158634573221207, + -0.0040490454994142056, + -0.010214392095804214, + -0.008069298230111599, + 0.02278982847929001, + 0.03930273652076721, + -0.01176922582089901, + -0.024733370169997215, + 0.009559347294270992, + 0.031211843714118004, + -0.028490884229540825, + -0.004855255596339703, + -0.011596466414630413, + 0.017794206738471985, + -0.023955954238772392, + 0.03400478512048721, + 0.037747904658317566, + 0.01563471555709839, + -0.0020821092184633017, + -0.009113051928579807, + 0.017822999507188797, + -0.024215092882514, + -0.01652730442583561, + -0.021911635994911194, + 0.01677204668521881, + 0.022559482604265213, + 0.04367930442094803, + -0.026201823726296425, + 0.005384331103414297, + -0.015073247253894806, + -0.002377239754423499, + 0.01970895379781723, + 0.013021730817854404, + -0.03187408670783043, + -0.010948619805276394, + -0.016426527872681618, + 0.0332561619579792, + 0.012985738925635815, + 0.05231726914644241, + -0.021738875657320023, + -0.030607186257839203, + -0.035818759351968765, + 0.022372327744960785, + -0.03437909856438637, + 0.038179799914360046, + -0.023840781301259995, + 0.0018679597415030003, + 0.011250948533415794, + -0.017045581713318825, + 0.033457715064287186, + -0.021724479272961617, + 0.004408960696309805, + 0.005704655312001705, + -0.021810859441757202, + 0.006406489759683609, + 0.005085601471364498, + 0.006276920437812805, + 0.011913192458450794, + -0.0021972821559756994, + 0.000755371933337301, + 0.007407054305076599, + 0.004768875893205404, + -0.007011147681623697, + -0.04016653448343277, + 0.016282562166452408, + -0.01924826391041279, + 0.04310344159603119, + -0.03170132637023926, + 0.0034839787986129522, + 0.021810859441757202, + 0.005204373504966497, + 0.030923910439014435, + 0.0009627730469219387, + -0.0006289517623372376, + 0.013928717002272606, + 0.014015096239745617, + 0.0037647127173841, + 0.005819828249514103, + -0.012330693192780018, + 0.0397634282708168, + 0.03201805427670479, + 0.0025230052415281534, + 0.019593780860304832, + -0.0006015082472003996, + -0.010257582180202007, + 0.0031258631497621536, + 0.015289196744561195, + 0.015620318241417408, + -0.031643740832805634, + -0.0025859905872493982, + 0.027166396379470825, + 0.0007837152807042003, + -0.009019474498927593, + -0.006478473078459501, + 0.016296958550810814, + 0.022329136729240417, + -0.00046743982238695025, + -0.00010639992251526564, + -0.012345090508460999, + 1.9317321857670322e-5, + -0.006388494279235601, + 0.012597030960023403, + -0.013050523586571217, + 0.039619460701942444, + -0.03340012580156326, + 0.025093285366892815, + -0.022300343960523605, + -0.00024159305030480027, + -0.004211007617413998, + -0.004236201755702496, + -0.006600844208151102, + 0.026979241520166397, + -0.026057858020067215, + -0.016829634085297585, + -0.019723352044820786, + -0.004869652446359396, + 0.03115425631403923, + -0.0018058744026347995, + -0.0287932138890028, + 0.011740433052182198, + 0.028015796095132828, + 0.007151514291763306, + 0.02117740921676159, + 0.029426664113998413, + 0.011452500708401203, + -0.0012282105162739754, + 0.015793077647686005, + -0.056377112865448, + 0.0019489406840875745, + 0.0017581855645403266, + -0.02250189706683159, + 0.018945934250950813, + -0.004103032872080803, + 0.005355537869036198, + 0.005942199379205704, + -0.010379953309893608, + -0.03440789133310318, + 0.012726600281894207, + 0.02968580275774002, + 0.010588704608380795, + -0.013122507371008396, + -0.016037819907069206, + -0.0327666774392128, + 0.02607225440442562, + -0.017794206738471985, + 0.02110542543232441, + 0.01703118532896042, + -0.020241629332304, + 0.01741989329457283, + 0.025136474519968033, + 0.005398727487772703, + -0.008105289191007614, + -0.02532363124191761, + -0.0146989356726408, + -0.0011409310391172767, + 0.0046393065713346004, + 0.0015773281920701265, + 0.021364564076066017, + -0.03587634488940239, + -0.002366442233324051, + -0.021566117182374, + -0.05185657739639282, + 0.009098655544221401, + 0.02281862124800682, + -0.03573237732052803, + 0.04252757504582405, + -0.013345654122531414, + -0.02932588756084442, + -0.04074239730834961, + -0.019089899957180023, + -0.03515651449561119, + -0.036106690764427185, + -0.01387832872569561, + -0.011690044775605202, + -0.07296200096607208, + -0.020875079557299614, + -0.022185171023011208, + -0.02936907857656479, + 0.01273379847407341, + -0.012762592174112797, + 0.03584755212068558, + -0.01550514530390501, + 0.0119851753115654, + 0.0128921614959836, + -0.00032482342794537544, + -0.017535066232085228, + -0.021378960460424423, + 0.006006984040141106, + 0.0199968870729208, + 0.0007751673110760748, + -0.021983617916703224, + 0.04232602193951607, + -0.009005077183246613, + 0.016498511657118797, + 0.027439933270215988, + -0.017016788944602013, + -0.0332561619579792, + 0.0047292853705585, + -0.007630201522260904, + -0.05862298235297203, + -0.03423513099551201, + -0.02378319390118122, + 0.03291064128279686, + 0.00167180597782135, + 0.049985017627477646, + -0.0024816151708364487, + -0.024661386385560036, + 0.004149822052568197, + 0.038323767483234406, + -0.07209820300340652, + 0.017966965213418007, + -0.020947063341736794, + 0.020947063341736794, + -0.033745646476745605, + -0.04077119007706642, + 0.03915876895189285, + 0.0017797804903239012, + -0.01273379847407341, + 0.036855313926935196, + -0.02139335684478283, + 0.03829497471451759, + 0.0046069142408668995, + 0.016901616007089615, + 0.04676017910242081, + 0.009703313000500202, + -0.0004408960812725127, + -0.045118965208530426, + -0.0039014804642647505, + -0.028390107676386833, + -0.05004260316491127, + 0.006859983317553997, + -0.021666893735527992, + 0.0063956924714148045, + -0.028447695076465607, + -0.021091029047966003, + -0.027987003326416016, + -0.0037899066228419542, + 0.014986868016421795, + 0.015087643638253212, + 0.003728721057996154, + -0.0006343504646793008, + -0.01032236684113741, + 0.012561039067804813, + 0.007140717003494501, + -0.00013822992332279682, + 0.010329565033316612, + -0.0018337677465751767, + 0.010451936163008213, + -0.0018463648157194257, + 0.007014746777713299, + -0.015332385897636414, + 0.04235481843352318, + 0.008767533116042614, + 0.04961070790886879, + 0.01659928821027279, + 0.007057936396449804, + 0.010027236305177212, + -0.01285616960376501, + -0.05473589897155762, + 0.038035836070775986, + 0.052058130502700806, + -0.011092585511505604, + 0.020227232947945595, + -0.03489737585186958, + 0.018758779391646385, + -0.0038690881337970495, + 0.026374584063887596, + -0.0010005641961470246, + 0.008925896137952805, + 0.0037467170041054487, + 0.003235637443140149, + 0.004214606713503599, + -0.03498375415802002, + 0.04485982656478882, + -0.010207193903625011, + 0.05053209140896797, + -0.013791949488222599, + -0.018557226285338402, + -0.006118557881563902, + 0.014554969035089016, + 0.03699927777051926, + 0.03645220771431923, + 0.009343397803604603, + -0.002632779534906149, + -0.047767940908670425, + -0.000554719241335988, + -0.01520281657576561, + 0.03291064128279686, + 0.031240636482834816, + 0.006680025719106197, + 0.03737359121441841, + -0.058104705065488815, + 0.016858426854014397, + -0.020572751760482788, + 0.018629208207130432, + 0.008306842297315598, + 0.00827804859727621, + 0.024387851357460022, + 0.006456878036260605, + -0.05977471172809601, + 0.01655609719455242, + 0.04595397040247917, + -0.012935351580381393, + -0.011970778927206993, + -0.03584755212068558, + -0.02117740921676159, + 0.01659928821027279, + -0.020803097635507584, + 0.011718837544322014, + 0.0013064920203760266, + -0.015260403044521809, + -0.047451216727495193, + 0.01773661933839321, + -0.012337892316281796, + -0.013100911863148212, + -0.026057858020067215, + 0.0019057508325204253, + 0.01809653453528881, + 0.0012758992379531264, + 0.0013946712715551257, + -0.021378960460424423, + -0.03751755878329277, + 0.009278613142669201, + 0.044802241027355194, + -0.03435030207037926, + -0.028735626488924026, + -0.02708001807332039, + 0.037863075733184814, + -0.036682553589344025, + 0.06633956730365753, + 0.014137467369437218, + -0.009185034781694412, + 0.01573549024760723, + -0.042153265327215195, + -0.026734499260783195, + 0.029743390157818794, + -0.0073782610706985, + -0.029484249651432037, + -0.03645220771431923, + 0.05404486134648323, + 0.007029143162071705, + 0.04298826679587364, + 0.023955954238772392, + -0.004329779651015997, + 0.002614783588796854, + -0.04117429628968239, + 0.02021283656358719, + 0.0037683118134737015, + 0.0004334728291723877, + -0.018629208207130432, + 0.0071371179074049, + -0.0021828855387866497, + 0.0003999557229690254, + -0.004711289424449205, + 0.021163010969758034, + -0.009508959017693996, + 0.015044454485177994, + 0.02954183705151081, + -0.01681523583829403, + 0.007317075505852699, + 0.0027137603610754013, + 0.006554055027663708, + 0.014914884231984615, + -0.011207758449018002, + -7.738175918348134e-5, + -0.03452306240797043, + -0.021983617916703224, + 0.016397735103964806, + -0.013144101947546005, + -0.02335129678249359, + -0.01563471555709839, + -0.003287825034931302, + 0.03745996952056885, + 0.03187408670783043, + 0.004657302051782608, + -0.016368942335247993, + -0.007104725576937199, + -0.005294352304190397, + 0.026835275813937187, + -0.0019741347059607506, + 0.0091562420129776, + 0.0307223591953516, + -0.005722651258111, + 0.0016070212004706264, + 0.037834282964468, + -0.024488627910614014, + 0.04108791425824165, + 0.010451936163008213, + 0.015303593128919601, + -0.017463084310293198, + -0.02127818390727043, + 0.0031816500704735518, + 0.013950311578810215, + 0.024387851357460022, + -0.03391840681433678, + 0.016973599791526794, + -0.048516564071178436, + -0.03406237065792084, + 0.0136119918897748, + 0.004502538591623306, + 0.014547770842909813, + -0.005269158165901899, + 0.015533939003944397, + -0.028634849935770035, + 0.02335129678249359, + -0.009436976164579391, + 0.0016736055258661509, + -0.024099919945001602, + 0.031989261507987976, + 0.021825255826115608, + 0.007565416861325502, + 0.03029046021401882, + -0.010819049552083015, + -0.0018535631243139505, + -0.0021073033567517996, + 0.017722222954034805, + 0.029887355864048004, + -0.02067352645099163, + -0.009264216758310795, + 0.0036207465454936028, + -0.010430341586470604, + 0.005082002375274897, + -0.019968094304203987, + -0.004747280851006508, + 0.060465749353170395, + -0.020860683172941208, + -0.04131826013326645, + 0.010739868506789207, + 0.029095541685819626, + -0.0020443182438611984, + 0.021666893735527992, + 0.02689286135137081, + -0.005726250354200602, + -0.017837395891547203, + 0.022098790854215622, + 0.010653489269316196, + 0.03671134635806084, + 0.0048876479268074036, + 0.010682282038033009, + 0.0046860952861607075, + 0.024517420679330826, + -0.018830761313438416, + -0.017376704141497612, + -0.013100911863148212, + 0.03676893189549446, + -0.017002392560243607, + 0.019507402554154396, + 0.004221804905682802, + 0.01741989329457283, + 0.007291881367564201, + 0.0010923425434157252, + 0.03383202478289604, + 0.010207193903625011, + 0.02729596570134163, + 0.0031510572880506516, + 0.019190676510334015, + 0.006798797752708197, + 0.011063791811466217, + -0.017002392560243607, + 0.009343397803604603, + -0.032248400151729584, + 0.04825742542743683, + -0.01949300616979599, + 0.0103007722645998, + -0.010523919947445393, + -0.024776559323072433, + -0.007939728908240795, + -0.010538316331803799, + -0.008472403511404991, + 0.0016133197350427508, + 0.014684539288282394, + -0.013540009036660194, + -0.020342405885457993, + 0.023020174354314804, + 0.015289196744561195, + -0.0278286412358284, + 0.030779944732785225, + -0.0190323144197464, + -0.006309312768280506, + -0.0014072683406993747, + 0.008465204387903214, + 0.006165346596390009, + -0.0061041610315442085, + -0.018945934250950813, + 0.02414310909807682, + -0.010005641728639603, + 0.0006006084149703383, + 0.026561738923192024, + -0.010574307292699814, + -0.0029315089341253042, + 0.012561039067804813, + 0.04212447255849838, + 0.00017849542200565338, + 0.007788564078509808, + -0.0054131243377923965, + 0.005132390186190605, + -0.004329779651015997, + 0.025654753670096397, + -0.0039446703158319, + 0.02582751214504242, + 0.016570493578910828, + 0.0062913172878324986, + 0.018571622669696808, + -0.009508959017693996, + 0.012244313955307007, + 0.020615940913558006, + 0.010559910908341408, + 0.022185171023011208, + 0.03751755878329277, + 0.0036441411357373, + -0.009868874214589596, + 0.027238380163908005, + -0.009408182464540005, + 0.00960253644734621, + -0.009580941870808601, + 0.0075294254347682, + -0.009703313000500202, + -0.00010116990597452968, + -0.013892725110054016, + -0.026864068582654, + -0.03351530060172081, + -0.020486371591687202, + -0.009573743678629398, + 0.024258282035589218, + -0.01917628012597561, + 0.02889399044215679, + 0.0602354034781456, + -0.03766152262687683, + -0.006154549308121204, + -0.008414817042648792, + 0.001970535609871149, + -0.015404368750751019, + 0.006906772032380104, + 0.007043540012091398, + -0.012366685084998608, + -0.0007364763878285885, + 0.005056808236986399, + 0.035214100033044815, + -0.013482422567903996, + -0.008112488314509392, + -0.009688916616141796, + 0.0005043311393819749, + -0.04209567978978157, + 0.007158712483942509, + 0.004196610767394304, + -0.025913892313838005, + -0.032680295407772064, + 0.024215092882514, + 0.0054527148604393005, + 0.025381216779351234, + -0.0137343630194664, + -0.02278982847929001, + 0.006579249165952206, + 0.022041205316781998, + 0.0011058393865823746, + -0.0132520766928792, + -0.0020245227497071028, + 0.015965836122632027, + 0.01816851831972599, + 0.007299079559743404, + 0.04773914813995361, + -0.01375595759600401, + -0.043477751314640045, + -0.0445718951523304, + 0.044082410633563995, + -0.001774381729774177, + 0.015893854200839996, + 0.004776074085384607, + 0.001990330871194601, + 0.0542176216840744, + 0.0039446703158319, + -0.02042878419160843, + 0.011884398758411407, + -0.013230481185019016, + 0.005852220579981804, + -0.04117429628968239, + 0.02368241734802723, + 0.05076243355870247, + -0.028058987110853195, + -0.014958074316382408, + -0.022329136729240417, + 0.04903484135866165, + 0.011056593619287014, + 0.02052956074476242, + -0.001643912517465651, + 0.016829634085297585, + -0.013899924233555794, + -0.005006419960409403, + 0.031672533601522446, + 0.025381216779351234, + -0.005787435919046402, + 0.048804495483636856, + 0.026993637904524803, + -0.02679208479821682, + -0.011956381611526012, + 0.007144316099584103, + -0.005315946880728006, + -0.015044454485177994, + 0.022098790854215622, + -0.014929281547665596, + 0.0023682417813688517, + -0.011423707008361816, + -0.03282426297664642, + 0.008580377325415611, + 0.015102040022611618, + -0.022631466388702393, + 0.004938036203384399, + 0.04123188182711601, + -0.020371198654174805, + 0.011020602658390999, + -0.0054851071909070015, + 0.019392229616642, + 0.0342063382267952, + -0.045090172439813614, + -0.011070990934967995, + 0.0287932138890028, + -0.000860647123772651, + -0.030376840382814407, + -0.012712203897535801, + -0.017290323972702026, + -0.04868932440876961, + -0.012597030960023403, + -0.03987859934568405, + 0.03305460885167122, + -0.043017059564590454, + 0.015246006660163403, + 0.008832317776978016, + 0.0004989323788322508, + -0.008184471167623997, + -4.791370520251803e-5, + -0.012568237259984016, + -0.02982976846396923, + 0.03351530060172081, + 0.008083694614470005, + -0.003696328727528453, + 0.015346783213317394, + -0.0008453507325612009, + -0.011034999042749405, + 0.027123207226395607, + 0.008393221534788609, + -0.035818759351968765, + 0.03288184851408005, + 0.04765276983380318, + -0.00833563506603241, + -0.007961323484778404, + 0.04157739877700806, + -0.0021702884696424007, + -0.0160234235227108, + -0.005128791090101004, + -0.02045757882297039, + -0.029628217220306396, + -0.0016898016911000013, + 0.01896033063530922, + -0.002125299070030451, + -0.014648547396063805, + -0.0008102590218186378, + -0.02407112717628479, + 0.012604229152202606, + 0.008601972833275795, + 0.008529989048838615, + 0.010595902800559998, + 0.0053915292955935, + 0.023725608363747597, + 0.003588354215025902, + -0.024704577401280403, + -0.012618625536561012, + -0.005668663885444403, + 0.008709946647286415, + -0.022329136729240417, + -0.0030070911161601543, + -0.03331374749541283, + 0.0029531039763242006, + 0.012417073361575603, + -0.014605357311666012, + 0.0024582205805927515, + -0.013806345872581005, + 0.02045757882297039, + -0.03636582940816879, + 0.008364428766071796, + -0.008076496422290802, + -0.045694828033447266, + -0.010768662206828594, + -0.012805781327188015, + -0.001014061039313674, + -0.0054131243377923965, + 0.008522790856659412, + -0.0015566331567242742, + 0.04206688329577446, + -0.0013235880760475993, + 0.008846715092658997, + 0.0032140424009412527, + 0.009134646505117416, + -0.007360265124589205, + -0.048660531640052795, + 0.011733234860002995, + -0.02117740921676159, + -0.011430906131863594, + -0.003998657688498497, + 0.0063165114261209965, + -0.004898445215076208, + -0.015217212960124016, + -0.027022430673241615, + -0.007918133400380611, + -0.008846715092658997, + -0.008580377325415611, + -0.03365926817059517, + 0.010689480230212212, + 0.015116437338292599, + 0.016584891825914383, + 0.0076805897988379, + 0.004506137687712908, + -0.003262630896642804, + -0.008796326816082, + -0.04402482509613037, + -0.019867317751049995, + -0.03619306907057762, + 0.00013395592395681888, + -0.04520534351468086, + 0.0013037926983088255, + 0.003277027513831854, + 0.036394622176885605, + 0.03429271653294563, + -0.02664811909198761, + -0.052346061915159225, + -0.00014149164780974388, + 0.023336900398135185, + 0.005035213194787502, + 0.009012275375425816, + -0.01466294378042221, + 0.01785179227590561, + 0.01032236684113741, + -0.02160930633544922, + -0.019766541197896004, + 0.012740996666252613, + -0.024114316329360008, + -0.010768662206828594, + -0.03377443924546242, + 0.0003644140961114317, + -0.005283554550260305, + -0.006194139830768108, + -0.049697086215019226, + -0.0074934340082108974, + 0.03101029060781002, + -0.0006312011973932385, + -0.043938443064689636, + 0.033601678907871246, + 0.015490748919546604, + 0.010790256783366203, + 0.01631135493516922, + 0.0166280809789896, + 0.03233477845788002, + -0.004128227010369301, + -0.030492013320326805, + 0.030031321570277214, + 0.01056710910052061, + 0.020587148144841194, + 0.003154656384140253, + -0.012489056214690208, + -0.0029513044282794, + 0.009969649836421013, + 0.030463220551609993, + 0.012985738925635815, + 0.0009087857906706631, + -0.006834789179265499, + -0.0053015504963696, + -0.0006118557648733258, + 0.013986303471028805, + -0.0070183458738029, + 0.010639091953635216, + 0.0014603558229282498, + 0.0026885662227869034, + 0.018010154366493225, + -0.009379389695823193, + -0.0011832211166620255, + -0.004981225822120905, + -0.011092585511505604, + -0.012985738925635815, + -0.013381646014750004, + -0.022559482604265213, + -0.030232874676585197, + 0.021940428763628006, + 0.02575553022325039, + -0.006359701044857502, + 0.0014000700321048498, + 0.0010077625047415495, + -0.0385541133582592, + 0.022919397801160812, + 0.015908250585198402, + 0.03573237732052803, + -0.018326880410313606, + 0.018643606454133987, + -0.0013055922463536263, + 0.024186300113797188, + 0.017693430185317993, + -0.013676776550710201, + 0.00212349952198565, + 0.02002567984163761, + 0.024445438757538795, + -0.012525048106908798, + 0.0009303807164542377, + -0.020572751760482788, + 0.0019561389926820993, + 0.0037359194830060005, + -0.0203568022698164, + 0.013201688416302204, + -0.014958074316382408, + -0.005017217248678207, + 0.018643606454133987, + -0.0163833387196064, + 0.0013730763457715511, + -0.004642905667424202, + -0.010358358733355999, + 0.003046681871637702, + 0.016584891825914383, + -0.004473745357245207, + -0.02886519581079483, + 0.013014532625675201, + 0.011020602658390999, + -0.0033616076689213514, + 0.016052216291427612, + 0.03141339495778084, + 0.0011238350998610258, + -0.001653810148127377, + -0.026662515476346016, + -0.002442024415358901, + -0.022847414016723633, + 0.007961323484778404, + 0.0026129840407520533, + 0.016714461147785187, + 0.032277192920446396, + -0.047595180571079254, + -0.012085950933396816, + -0.023912763223052025, + 0.00019367935601621866, + -0.004549327772110701, + -0.041260674595832825, + -0.030031321570277214, + 0.0046680998057127, + -0.04310344159603119, + -0.006255325395613909, + 0.014418201521039009, + -0.006420886609703302, + 0.02886519581079483, + -0.008321238681674004, + 0.017621446400880814, + -0.026029065251350403, + -0.01681523583829403, + 0.007428648881614208, + 0.0007360265008173883, + 0.012165132910013199, + -0.0018202710198238492, + 0.0209614597260952, + -0.0018607614329084754, + 0.017966965213418007, + -0.0038330964744091034, + 0.0009402784053236246, + -0.005593081936240196, + -0.00036396420910023153, + 0.04094395041465759, + -0.018125327304005623, + 0.002386237494647503, + -0.0009375790250487626, + 0.007093927823007107, + -0.018729984760284424, + -0.016743253916502, + -0.0073782610706985, + 0.010423143394291401, + 0.019608179107308388, + 0.0021864846348762512, + -0.0003605899983085692, + 0.0015629315748810768, + 0.011114180088043213, + 0.024445438757538795, + 0.014446995221078396, + -0.024992508813738823, + 0.02604346163570881, + -0.06858543306589127, + -0.011905993334949017, + -0.00917783658951521, + 0.006917569320648909, + 0.010783058591187, + 0.014353416860103607, + 0.01992490328848362, + -0.004754479508846998, + -0.0262594111263752, + 0.0027101612649858, + 0.018067741766572, + -0.014303028583526611, + 0.017218342050909996, + 0.02127818390727043, + -0.02392715960741043, + 0.027411138638854027, + -0.0073782610706985, + 0.005855819676071405, + 0.006834789179265499, + -0.012884963303804398, + -0.013547207228839397, + 0.01189159695059061, + 0.011193362064659595, + -0.022343533113598824, + -0.02110542543232441, + 0.03029046021401882, + 0.013000136241316795, + 0.021047839894890785, + -0.010171202942728996, + -0.028879592195153236, + 0.020572751760482788, + 0.005287153646349907, + -0.002873922698199749, + -0.013907122425734997, + 0.0262594111263752, + 0.007061535492539406, + 0.014418201521039009, + 0.015591525472700596, + 0.024114316329360008, + -0.01703118532896042, + 0.005722651258111, + 0.012186727486550808, + 0.0026741696055978537, + -0.01792377606034279, + -0.0031978462357074022, + -0.025769926607608795, + -0.0026129840407520533, + -0.008263652212917805, + -0.01609540544450283, + 0.013028929010033607, + 0.01655609719455242, + 0.019449815154075623, + 0.027454329654574394, + -0.023365693166851997, + 0.007147915195673704, + -0.00200292794033885, + -0.025438804179430008, + -0.008616369217634201, + 0.01681523583829403, + 0.015087643638253212, + 0.06680025160312653, + 0.008767533116042614, + -0.0020965058356523514, + 0.01609540544450283, + -0.012294702231884003, + 0.015303593128919601, + 0.013547207228839397, + 0.016714461147785187, + 0.017045581713318825, + 0.011977977119386196, + -0.04128946736454964, + -0.0022890605032444, + 0.011834010481834412, + 0.030607186257839203, + -0.009185034781694412, + -0.0213213749229908, + 0.021940428763628006, + 0.008810723200440407, + -0.02293379418551922, + -0.032709091901779175, + 0.0023304508067667484, + 0.005013618152588606, + 0.02768467552959919, + -0.008062100037932396, + -0.02163809910416603, + -0.02633139304816723, + -0.010891033336520195, + -0.019896110519766808, + 0.0012453064555302262, + 0.007320674601942301, + 0.023365693166851997, + 0.008112488314509392, + 0.017894981428980827, + 0.0009771697223186493, + -0.026806481182575226, + 0.020803097635507584, + -0.0033238164614886045, + -0.027771053835749626, + 0.0081916693598032, + -0.0013361850287765265, + -0.018254896625876427, + -0.03527168557047844, + 0.0018859554547816515, + -0.012265908531844616, + -0.008465204387903214, + 0.0017698828596621752, + 0.023883970454335213, + 0.03849652782082558, + -0.03371685370802879, + -0.004837259650230408, + -0.013719966635107994, + 0.015159626491367817, + -0.03242115676403046, + 0.0026939650997519493, + -0.014583762735128403, + 0.016124200075864792, + -0.02363922819495201, + -0.031816501170396805, + -0.03688410669565201, + 0.014295830391347408, + 0.010991808958351612, + 0.025064492598176003, + 0.004531331826001406, + -0.006917569320648909, + -0.016613684594631195, + 0.015476352535188198, + -0.0026615727692842484, + -0.0005727150128223002, + -0.008616369217634201, + 0.01888834871351719, + -0.013158498331904411, + -0.0055570900440216064, + 0.0017428891733288765, + 0.01623937301337719, + -0.003001692472025752, + -0.014886091463267803, + 0.013482422567903996, + -0.01813972368836403, + 0.010487928055226803, + -0.020875079557299614, + -0.022372327744960785, + -0.02245870605111122, + 0.005276356358081102, + 0.002353845164179802, + -0.012546642683446407, + -0.010343962348997593, + -0.001907550380565226, + -0.0041066319681704044, + 0.007000349927693605, + 0.0005398727371357381, + -0.004722087178379297, + -0.005827026441693306, + 0.004779673647135496, + -0.009991245344281197, + 0.0007684188894927502, + 0.021738875657320023, + -0.02736794948577881, + 0.0012201124336570501, + 0.0016241171397268772, + -0.010394349694252014, + -0.001347882323898375, + 0.0040814378298819065, + -0.009285811334848404, + -0.027943814173340797, + 0.003345411503687501, + 0.00899787899106741, + -0.017506273463368416, + 0.0061437520198524, + -0.0040490454994142056, + -0.02110542543232441, + -0.014482986181974411, + 0.0104807298630476, + 0.011128577403724194, + -0.020543957129120827, + -0.0016106204129755497, + -0.003410196164622903, + -0.008342833258211613, + -0.025741131976246834, + 0.025769926607608795, + -0.02274663932621479, + -0.009206630289554596, + 0.006856383755803108, + -0.004862453788518906, + 0.013064920902252197, + 0.00912025012075901, + -0.0017257932340726256, + 0.008162875659763813, + -0.0032536331564188004, + -0.008040504530072212, + -0.02117740921676159, + 0.0081916693598032, + -0.0018310684245079756, + -0.0063704983331263065, + 0.009652924723923206, + 0.015433162450790405, + 0.01609540544450283, + 0.031384602189064026, + 0.019953696057200432, + -0.006230131722986698, + -0.0025967878755182028, + -0.0284332986921072, + 0.0169879961758852, + 0.008321238681674004, + 0.01703118532896042, + -0.00912025012075901, + 0.012013968080282211, + -0.043333787471055984, + -4.1109062294708565e-5, + 0.01809653453528881, + -0.018902745097875595, + 0.014785314910113811, + 0.024560611695051193, + -0.003149257740005851, + -0.03423513099551201, + 0.005801832303404808, + -0.011243749409914017, + -0.0012893960811197758, + -0.021983617916703224, + -0.005665064789354801, + 0.00948016531765461, + -2.896192427215283e-6, + -0.014886091463267803, + 0.006640434730798006, + -0.009221026673913002, + -0.01490048784762621, + 0.0034749810583889484, + -0.015231610275804996, + -0.04920760169625282, + 0.0008822420495562255, + 0.011905993334949017, + -0.03380323201417923, + 0.011726035736501217, + -0.017535066232085228, + -0.02592828869819641, + -0.006550455931574106, + -0.020702321082353592, + 0.036567382514476776, + -0.004509737249463797, + 0.037747904658317566, + 0.025208458304405212, + -0.028490884229540825, + -0.023624831810593605, + 0.004797669127583504, + 0.01744868792593479, + 0.033572886139154434, + -0.011682846583425999, + -0.001523340935818851, + -0.024949319660663605, + -0.009192232973873615, + 0.021522926166653633, + 0.006122156977653503, + -0.017866188660264015, + -0.007129919249564409, + 0.004974027629941702, + -0.004851656500250101, + 0.010120814666152, + -0.012971342541277409, + -0.01436061505228281, + 0.002990894950926304, + -0.029095541685819626, + 0.009400984272360802, + -0.0005506702000275254, + 0.01888834871351719, + -0.019550591707229614, + 0.0424124039709568, + -0.012712203897535801, + 0.015821870416402817, + 0.029037956148386, + -0.008803525008261204, + -0.011171766556799412, + 0.0015809274045750499, + 0.01677204668521881, + -0.007730977609753609, + 0.0018409660551697016, + 0.03852532058954239, + 0.005449115764349699, + 0.015893854200839996, + 0.011905993334949017, + -0.009991245344281197, + 0.0030484814196825027, + -0.007036341354250908, + 0.0153611795976758, + -0.008393221534788609, + 0.027238380163908005, + -0.0032230403739959, + 0.007536623626947403, + 0.027094414457678795, + -0.004452150780707598, + 0.0293978713452816, + -0.012841773219406605, + 0.015102040022611618, + 0.0025913892313838005, + 0.010343962348997593, + -0.013784751296043396, + -0.0008988881600089371, + -0.0173479113727808, + -0.0038258982822299004, + -0.010718273930251598, + -0.006582848262041807, + 0.0030520805157721043, + 0.011351724155247211, + -0.008119686506688595, + -0.0287932138890028, + 0.003586554666981101, + -0.015030057169497013, + -0.0002645376371219754, + -0.008148479275405407, + 0.025064492598176003, + 0.0010446538217365742, + 0.0017221940215677023, + 0.0032824263907969, + 0.03665376082062721, + -0.03296823054552078, + 0.004261395428329706, + -0.0015917248092591763, + 0.026835275813937187, + 0.014958074316382408, + -0.008227660320699215, + -0.020932666957378387, + -0.01587945781648159, + -0.04402482509613037, + -0.015793077647686005, + 0.014727728441357613, + -0.0031942471396178007, + -0.027065619826316833, + -0.0012507052160799503, + 0.026460962370038033, + -0.002487013814970851, + 0.01484290137887001, + -0.018571622669696808, + -0.01985292136669159, + 0.02016964554786682, + 0.0012039162684231997, + -0.008904301561415195, + 0.025410011410713196, + 0.0008853913168422878, + -0.028562868013978004, + -0.012424271553754807, + 0.017434291541576385, + 0.005611077416688204, + 0.0016241171397268772, + 0.00293690781109035, + 0.012265908531844616, + -0.01339604239910841, + 0.021076632663607597, + 0.022660259157419205, + 0.011502888984978199, + 0.017463084310293198, + 0.012863367795944214, + 0.008645161986351013, + -0.002926110289990902, + 0.009134646505117416, + 0.012013968080282211, + -0.006773603614419699, + 0.008731542155146599, + 0.0033346139825880527, + -0.008587575517594814, + 0.025510787963867188, + 0.003510972484946251, + 0.002627380657941103, + 0.001300193602219224, + -0.025841908529400826, + 0.007658994756639004, + 0.011222154833376408, + 0.0012570037506520748, + 0.011013404466211796, + 0.027670277282595634, + -0.01777980849146843, + 0.030492013320326805, + -0.018945934250950813, + 0.01014240924268961, + 0.012078752741217613, + -0.004218205809593201, + -0.013475223444402218, + -0.011783622205257416, + 0.012381081469357014, + 0.006078967358916998, + 0.011258146725594997, + 0.015404368750751019, + -0.013511215336620808, + 0.0068635824136435986, + 0.00942257884889841, + -0.046270694583654404, + -0.03293943777680397, + -0.039907392114400864, + 0.012561039067804813, + -0.010106418281793594, + 0.004700492136180401, + -0.012532246299088001, + -0.01691601239144802, + -0.006791599094867706, + -0.005438318010419607, + 0.01691601239144802, + 0.02597147785127163, + -0.0037899066228419542, + 0.020975856110453606, + -0.021566117182374, + 0.0203568022698164, + -0.03650979325175285, + 0.018442053347826004, + -0.019651368260383606, + -0.0003909578372258693, + -0.00026543744024820626, + 0.021335771307349205, + -0.0080117117613554, + -0.0009074361296370625, + 0.026619326323270798, + 0.012582634575664997, + 0.0020011283922940493, + -0.03331374749541283, + -0.018067741766572, + -0.006276920437812805, + 0.013770353980362415, + -0.015015660785138607, + -0.0284332986921072, + -0.017520669847726822, + 0.0009384787990711629, + 0.0009195832535624504, + 0.009005077183246613, + -0.0016196182696148753, + -0.01092702429741621, + -0.012445866130292416, + 0.00942257884889841, + -0.022588275372982025, + -0.013388844206929207, + -0.003205044660717249, + 0.015332385897636414, + 0.002532003214582801, + -0.008450808003544807, + -0.0011598266428336501, + 0.02124939113855362, + -0.01621057838201523, + -0.015605921857059002, + -0.0043801674619317055, + 0.025165269151329994, + -0.0091562420129776, + 0.0116252601146698, + -0.0089762844145298, + -0.004110231064260006, + -0.02886519581079483, + -0.01910429634153843, + -0.018398864194750786, + 0.031125463545322418, + 6.129805115051568e-5, + -0.011596466414630413, + -0.022559482604265213, + 0.023811986669898033, + -0.0046069142408668995, + 0.008767533116042614, + 0.020155249163508415, + 0.010228789411485195, + -0.01652730442583561, + 0.034321509301662445, + -0.02392715960741043, + -0.02016964554786682, + 0.013000136241316795, + 0.02368241734802723, + 0.02135016769170761, + -0.012697807513177395, + 0.03524289280176163, + 0.0179525688290596, + 0.0034245927818119526, + -0.019939299672842026, + 0.006071768701076508, + -0.03262270987033844, + 0.011387716047465801, + 0.03296823054552078, + -0.018557226285338402, + -0.0029854963067919016, + 0.007421450689435005, + 0.01472053024917841, + -0.03483978658914566, + -0.015375575982034206, + 0.005082002375274897, + -0.011078189127147198, + -0.021969221532344818, + 0.0014864496188238263, + -0.004286589566618204, + -0.0011760228080675006, + -0.0076805897988379, + 0.012776988558471203, + -0.018283691257238388, + 0.008889904245734215, + 0.01934903860092163, + 0.029455456882715225, + 0.011855605989694595, + 0.02604346163570881, + -0.025654753670096397, + 0.002675969386473298, + -0.0033418124075978994, + 0.0030718760099262, + 0.008745938539505005, + 0.006201338488608599, + -0.00042132570524699986, + 0.016138596460223198, + -0.03184529393911362, + -0.008961888030171394, + -0.0011373319430276752, + 0.006917569320648909, + 0.005780237726867199, + 0.006982354447245598, + -0.013640784658491611, + -0.03244995325803757, + -0.010171202942728996, + 0.0074358475394546986, + 0.014670141972601414, + -0.005114394705742598, + 0.006478473078459501, + 0.0110853873193264, + 0.0005812629824504256, + -0.0012642020592465997, + 0.006431683897972107, + -0.01888834871351719, + 0.0007045339443720877, + -0.0014801510842517018, + -0.0034713817294687033, + -0.0019957295153290033, + -0.0017230939120054245, + -0.01400069985538721, + -0.011697242967784405, + 0.004948833491653204, + -0.0150588508695364, + -0.0030754751060158014, + -0.002091107191517949, + 0.01008482277393341, + 0.03351530060172081, + 0.01906110718846321, + -0.013201688416302204, + 0.01171163935214281, + 0.0002438425290165469, + -0.010070426389575005, + 0.0053015504963696, + -0.0036801325622946024, + 0.029570629820227623, + -0.008774732239544392, + 0.014331822283565998, + -0.0117476312443614, + -0.0021828855387866497, + -0.003804303240031004, + -0.006284118629992008, + 0.005028015002608299, + -0.004164218436926603, + 0.006060971412807703, + 0.005780237726867199, + -0.014281434006989002, + 0.09000758826732635, + 0.002344847423955798, + 0.01454057265073061, + -0.0019741347059607506, + -0.00137037702370435, + -0.03149977698922157, + -0.009257018566131592, + 0.011977977119386196, + 0.025050096213817596, + -0.006651232484728098, + 0.007263088133186102, + -0.016138596460223198, + -0.0005664164782501757, + 0.0077669695019721985, + -0.012136339209973812, + 0.002067712601274252, + 0.02303457073867321, + 0.003446187824010849, + 0.009559347294270992, + -0.0005790135473944247, + -0.014288632199168205, + -0.0025140075013041496, + -0.01606661267578602, + 0.010027236305177212, + -0.015519541688263416, + 0.030808737501502037, + -0.011517285369336605, + -0.0024402248673141003, + 0.026273807510733604, + 0.026547342538833618, + -0.009185034781694412, + -0.013784751296043396, + -0.010372755117714405, + -0.013050523586571217, + 0.008861111477017403, + 0.008702748455107212, + 0.004516935441643, + -0.027094414457678795, + -0.018398864194750786, + -0.007709383033216, + 0.011006206274032593, + 0.007795762736350298, + 0.013237680308520794, + 0.008954689837992191, + -0.006539658643305302, + -0.010459134355187416, + -0.011790821328759193, + 0.0024096320848912, + 0.015246006660163403, + -0.0006608942057937384, + -0.002110902452841401, + -0.017290323972702026, + 0.008947490714490414, + 0.03334254026412964, + 0.019550591707229614, + -0.0048408592119812965, + 0.0035451643634587526, + 0.004257796332240105, + 0.012388279661536217, + -8.924771100282669e-5, + -0.02064473368227482, + -0.005207972601056099, + -0.004103032872080803, + -0.008062100037932396, + -0.039504289627075195, + -0.011718837544322014, + -0.024200696498155594, + -0.007371062412858009, + -0.01351841352880001, + -0.007407054305076599, + -0.03250753879547119, + 0.006107760593295097, + -0.013360051438212395, + -0.005560689140111208, + -0.006618840154260397, + 0.02604346163570881, + -0.0169879961758852, + -0.0026561738923192024, + 0.011884398758411407, + 0.004869652446359396, + 0.008781930431723595, + 0.015404368750751019, + -0.022156378254294395, + -0.003797105047851801, + 0.012496254406869411, + 0.00335800857283175, + 0.010128012858331203, + -0.03780549019575119, + 0.011495690792798996, + -0.025381216779351234, + -0.023768797516822815, + -0.0033364135306328535, + 0.010531118139624596, + 0.009329001419246197, + 0.021969221532344818, + -0.0036585377529263496, + -0.003854691516608, + 0.01888834871351719, + 0.016973599791526794, + -0.013280869461596012, + 0.01852843351662159, + 0.01436061505228281, + -0.012215521186590195, + -0.008767533116042614, + 0.00188235635869205, + 0.0011625259649008512, + 0.021897239610552788, + -0.013871130533516407, + -0.008177272975444794, + 0.01655609719455242, + 0.0022224760614335537, + -0.018715588375926018, + 0.011610863730311394, + -0.006593646015971899, + -0.010365556925535202, + 0.0035469639115035534, + 0.015577128157019615, + -0.0043081846088171005, + -0.017506273463368416, + -0.014972470700740814, + -0.0037611136212944984, + 0.014706133864820004, + -0.008738740347325802, + -0.0142742358148098, + -0.0015404368750751019, + -0.02296258695423603, + 0.0022674654610455036, + -0.0206015445291996, + -0.0028847199864685535, + 0.0002976048563141376, + 0.011920390650629997, + 0.023524055257439613, + 0.006460477132350206, + 0.013244878500699997, + 0.010048831813037395, + 0.0012075153645128012, + -0.012776988558471203, + -0.0023358494509011507, + 0.022473102435469627, + -0.028102176263928413, + 0.015965836122632027, + 0.0020137254614382982, + -0.005348339211195707, + 0.010120814666152, + -0.0108406450599432, + 0.008875507861375809, + -0.009984047152101994, + -0.007486235350370407, + -0.00035316674620844424, + -0.008098090998828411, + 0.037575144320726395, + -0.03365926817059517, + 0.0010734469396993518, + 9.356388545711525e-6, + -0.013446430675685406, + -0.007644598372280598, + -0.023811986669898033, + 0.013928717002272606, + -0.021076632663607597, + 0.007065134588629007, + 0.005125191994011402, + -0.007317075505852699, + 0.0020785101223737, + -0.0103007722645998, + -0.005319545976817608, + 0.020572751760482788, + 0.023883970454335213, + -0.0002859076193999499, + 0.008450808003544807, + -0.0023556447122246027, + 0.006258924957364798, + 0.0085515845566988, + 0.006618840154260397, + -0.022401120513677597, + 0.0049452343955636024, + 0.005647068843245506, + 0.0012075153645128012, + 0.001739290077239275, + -0.009458570741117, + 0.0013973705936223269, + 0.002594988327473402, + 0.0015341384569182992, + 0.017189549282193184, + -0.0013829739764332771, + -0.020486371591687202, + -0.024445438757538795, + -0.006312911864370108, + -0.009696114808321, + 0.0007198303355835378, + 0.009228224866092205, + -0.02382638491690159, + 0.0031060678884387016, + 0.010639091953635216, + -0.012337892316281796, + 0.002659772988408804, + -0.009228224866092205, + 0.03633703663945198, + 0.028274934738874435, + 0.013899924233555794, + -0.009530553594231606, + -0.017362307757139206, + 0.01303612720221281, + 0.011502888984978199, + 0.0008543486474081874, + -0.0359051376581192, + -0.0017662836471572518, + -0.015533939003944397, + -0.005729849450290203, + -0.009616932831704617, + -0.012676212005317211, + -0.023596039041876793, + -0.024978112429380417, + 0.0064028906635940075, + 0.004923639353364706, + 0.01146689709275961, + 0.007345868740230799, + 0.017405496910214424, + 0.006032178178429604, + 0.016253769397735596, + 0.010005641728639603, + 0.006946362555027008, + 0.016930408775806427, + 0.03363047167658806, + 0.0015044454485177994, + -0.029095541685819626, + -0.002569794189184904, + 0.004794070031493902, + 0.021004648879170418, + 0.02621622011065483, + 0.013791949488222599, + 0.016944807022809982, + -0.027411138638854027, + -0.0008129584020934999, + 0.008090892806649208, + -0.012481858022511005, + 0.0284332986921072, + 0.012222719378769398, + -0.01860041543841362, + 0.0212062019854784, + -0.0017896781209856272, + -0.0026543743442744017, + -0.013957509770989418, + -0.011150171980261803, + -0.014929281547665596, + -0.0058234273456037045, + -0.013820742256939411, + -0.01906110718846321, + 0.008378825150430202, + -0.0031654539052397013, + -2.5208120860042982e-5, + -0.02585630491375923, + 0.007126320153474808, + 0.009523355402052402, + -0.008047702722251415, + 0.006140152923762798, + -0.008645161986351013, + -0.018370069563388824, + 0.028058987110853195, + -0.0032986225560307503, + -0.020414387807250023, + 0.013957509770989418, + 0.00942257884889841, + -0.02014085277915001, + 0.006042975466698408, + -0.0015359380049631, + 0.026086650788784027, + -0.008645161986351013, + -0.004045446403324604, + 0.016109803691506386, + -0.009429777041077614, + -0.008623567409813404, + -0.0016070212004706264, + 0.0030232875142246485, + 0.008961888030171394, + 0.006654831580817699, + 0.031960468739271164, + 0.005121592897921801, + -0.04163498803973198, + -6.973356357775629e-5, + 0.011740433052182198, + 0.003987859934568405, + 0.003696328727528453, + 0.008529989048838615, + -0.02392715960741043, + 0.013136903755366802, + -0.027411138638854027, + 0.008695550262928009, + 0.012964144349098206, + -0.003771910909563303, + 0.022833017632365227, + -0.009595338255167007, + -0.017679033800959587, + -0.010365556925535202, + -0.0019291453063488007, + -0.015346783213317394, + -0.0066620297729969025, + -0.017391100525856018, + -0.0001476776960771531, + 0.01194918341934681, + -0.02106223627924919, + 0.011956381611526012, + 0.006345304194837809, + -0.010307970456779003, + -0.00010983036190737039, + -0.005884612910449505, + 0.0017833797028288245, + 0.0186723992228508, + 0.016397735103964806, + -0.008947490714490414, + 0.024560611695051193, + 0.020975856110453606, + -0.0064028906635940075, + -0.01670006290078163, + -0.011783622205257416, + -0.028965972363948822, + 0.0057514444924890995, + -0.0004118779324926436, + -0.0022044803481549025, + -0.014641349203884602, + 0.011171766556799412, + -0.00019919054466299713, + -0.012193925678730011, + 0.0034191941376775503, + -0.009206630289554596, + 0.004689694847911596, + -0.008767533116042614, + 0.01870119199156761, + 0.0007535723852925003, + 0.016944807022809982, + 0.000552019861061126, + 0.008839516900479794, + 0.01573549024760723, + -0.02267465554177761, + -0.02546759694814682, + 0.007414252497255802, + 0.0021504932083189487, + 0.002863125177100301, + 0.0028613256290555, + -0.019046710804104805, + -0.00028050888795405626, + -0.010538316331803799, + -0.011128577403724194, + -0.005737047642469406, + -0.0063956924714148045, + 0.003156455932185054, + 0.008601972833275795, + 0.013871130533516407, + 0.017477480694651604, + 0.012445866130292416, + 0.015965836122632027, + -0.0035811560228466988, + 0.0030088908970355988, + 0.03026166744530201, + 0.004959631245583296, + -0.013547207228839397, + 0.008731542155146599, + -0.0069751557894051075, + 0.01910429634153843, + -0.010199995711445808, + 0.01870119199156761, + -0.011078189127147198, + 0.007961323484778404, + -0.013468025252223015, + 0.003091671271249652, + -0.002944106003269553, + 0.016253769397735596, + 0.0029603021685034037, + 0.013180093839764595, + -0.04163498803973198, + 0.022617070004343987, + 0.0028865195345133543, + -0.025726735591888428, + -0.0018931537633761764, + -0.0006932865944691002, + -0.021825255826115608, + 0.024258282035589218, + 0.0020191241055727005, + 0.0038906829431653023, + -0.014339020475745201, + -0.0034623839892446995, + 0.025741131976246834, + -0.001342483563348651, + -0.000612305651884526, + -0.009329001419246197, + 0.005114394705742598, + 0.01956498809158802, + 0.0108406450599432, + 0.012172331102192402, + -0.0053015504963696, + -4.611413169186562e-5, + -0.0245750080794096, + 0.0017320917686447501, + 0.011632458306849003, + 0.0046860952861607075, + -0.0011112380307167768, + 0.024560611695051193, + -0.009739304892718792, + 0.009364992380142212, + -0.0075150285847485065, + -0.0015044454485177994, + -0.03391840681433678, + -0.012388279661536217, + 0.009645726531744003, + -0.019161883741617203, + 0.0072019025683403015, + -0.024906130507588387, + -0.024949319660663605, + -0.0026057858485728502, + 0.005153985228389502, + -0.0017104968428611755, + 0.001691601239144802, + -0.00023754400899633765, + -0.013525611720979214, + -0.027353553101420403, + 0.004200209863483906, + -0.012848971411585808, + -0.007730977609753609, + -0.01273379847407341, + 0.00020661379676312208, + 0.0032068442087620497, + 0.009005077183246613, + -0.003663936397060752, + -0.004696893040090799, + 0.017650239169597626, + 0.009091457352042198, + -0.004455749876797199, + 0.030520806089043617, + 0.0048804497346282005, + -0.002449222607538104, + 0.007324273698031902, + 0.005488706286996603, + -0.009595338255167007, + 0.0029657010454684496, + -0.0033058207482099533, + -0.030808737501502037, + -0.0024024336598813534, + 0.024229489266872406, + 0.0007576214266009629, + -0.004660901613533497, + 0.019046710804104805, + -0.020716717466711998, + -0.025813115760684013, + -0.022487498819828033, + 0.008170073851943016, + 0.012280305847525597, + -0.0033094200771301985, + 0.008889904245734215, + 0.013403240591287613, + 0.005387930199503899, + 0.007457442115992308, + -0.009221026673913002, + 0.005247563123703003, + -0.00046788970939815044, + -0.011646854691207409, + -0.002717359457165003, + -0.015346783213317394, + -0.006122156977653503, + -0.004779673647135496, + 0.034609440714120865, + -0.039360322058200836, + 0.015937043353915215, + 0.01744868792593479, + 0.00022539687051903456, + -0.01659928821027279, + -0.0009501760359853506, + 0.007029143162071705, + 0.011488492600619793, + -0.0011409310391172767, + -0.009494561702013016, + 0.002675969386473298, + -0.01749187707901001, + 0.010970214381814003, + 0.0032734284177422523, + 0.00011888447625096887, + 0.013842337764799595, + 0.013360051438212395, + -0.013791949488222599, + 0.025669150054454803, + 0.018902745097875595, + -0.0021666893735527992, + -0.0133744478225708, + 0.016973599791526794, + -0.017290323972702026, + 0.025294838473200798, + 0.03763272985816002, + -0.0015242407098412514, + -0.007658994756639004, + 0.027814244851469994, + 0.0014837502967566252, + -0.026777688413858414, + 0.0111429737880826, + 0.013417637906968594, + 0.02214198186993599, + -0.010941420681774616, + 0.018326880410313606, + 0.016685666516423225, + -0.010329565033316612, + 0.024272678419947624, + 0.0037755100056529045, + 0.007068733684718609, + 0.035962723195552826, + -0.005434718914330006, + -0.0023574442602694035, + 0.0062337308190763, + 0.017477480694651604, + 0.018614811822772026, + -0.015937043353915215, + 0.02214198186993599, + 0.011301335878670216, + 0.011582070030272007, + 0.013827940449118614, + -0.0011013404000550508, + -0.008882706053555012, + 0.007291881367564201, + 0.010977412573993206, + 0.03411995619535446, + 0.011308535002171993, + 0.01920507289469242, + 0.01655609719455242, + -0.005082002375274897, + -0.0019435419235378504, + 0.010358358733355999, + -0.0015323387924581766, + 0.0033094200771301985, + 0.02414310909807682, + 0.0012830975465476513, + 0.015994630753993988, + -0.005773039069026709, + -0.001583626726642251, + -0.0119851753115654, + -0.013525611720979214, + 0.02332250215113163, + 0.005600280128419399, + -0.01978093758225441, + 0.005132390186190605, + 0.015116437338292599, + 0.019968094304203987, + 0.02221396379172802, + 0.002118100877851248, + 0.0012758992379531264, + 0.02399914339184761, + -0.00815567746758461, + 0.01809653453528881, + 0.001618718495592475, + 0.003822299186140299, + 0.011848406866192818, + 0.019536195322871208, + 0.0186723992228508, + -0.011294137686491013, + 0.027814244851469994, + -0.023221727460622787, + -0.009314604103565216, + 0.028850799426436424, + 0.00960253644734621, + 0.004977626726031303, + -0.006694422103464603, + -0.013604793697595596, + -0.004502538591623306, + -0.0045997160486876965, + 0.016584891825914383, + 0.0015548334922641516, + -0.020112060010433197, + -0.007543821819126606, + -0.006813194137066603, + -0.011654052883386612, + 0.004200209863483906, + 0.005305149592459202, + 0.015174023807048798, + 0.00863796379417181, + 0.006582848262041807, + 0.014986868016421795, + -0.002697564195841551, + -0.0019615376368165016, + -0.0005862118559889495, + 0.0044269566424191, + 0.018485242500901222, + -0.028447695076465607, + 0.012201123870909214, + 0.011207758449018002, + -0.0018481643637642264, + 0.0043369778431952, + -0.005575085990130901, + 0.006906772032380104, + 0.011582070030272007, + -0.002594988327473402, + 0.007623003330081701, + 0.003642341587692499, + 0.013899924233555794, + 0.016340147703886032, + -0.010415945202112198, + 0.03262270987033844, + 0.004088636487722397, + -0.00236464268527925, + 0.006784400902688503, + 0.026518549770116806, + -0.004743681754916906, + 0.010999007150530815, + -0.0065576545894145966, + -0.0099984435364604, + -0.017693430185317993, + -0.00948016531765461, + -0.01454057265073061, + 0.01563471555709839, + 0.00046339078107848763, + 0.03259391710162163, + -0.012049959972500801, + -0.0032158419489860535, + -0.008400419726967812, + 0.006334506906569004, + -0.007302678655833006, + 0.005182778462767601, + -0.006528861355036497, + 0.0128921614959836, + -0.0028523276560008526, + 0.013705569319427013, + -0.00013811745156999677, + 0.016930408775806427, + 0.01773661933839321, + 0.014166261069476604, + 0.017247134819626808, + 0.02238672412931919, + 0.0041858134791255, + -0.005308748688548803, + -0.0012435069074854255, + -0.006823991425335407, + 0.0072270967066287994, + 0.023192932829260826, + -0.005438318010419607, + 0.008933094330132008, + -0.015620318241417408, + -0.003422793233767152, + 0.005312347784638405, + -0.00033584583434276283, + -0.04221085086464882, + 0.010502324439585209, + 0.0005943099386058748, + -0.009372190572321415, + -0.005949397571384907, + -0.012215521186590195, + -0.01852843351662159, + 0.006449679844081402, + 0.003905079560354352, + 7.918133633211255e-5, + 0.019680161029100418, + 0.0012543043121695518, + -0.01773661933839321, + 0.009544949978590012, + -0.0010905429953709245, + 0.004563724156469107, + -0.009804089553654194, + -0.005996186751872301, + 0.007111923769116402, + -0.0059925876557827, + 0.012258710339665413, + 0.011222154833376408, + -0.0017050980823114514, + 0.006428084801882505, + -0.02918192185461521, + 0.030492013320326805, + 0.02178206667304039, + -0.012460263445973396, + -0.02281862124800682, + -0.003212242852896452, + -0.005020816810429096, + 0.008220462128520012, + -0.003771910909563303, + -0.0045781210064888, + 0.003618946997448802, + -0.010430341586470604, + 0.0099984435364604, + -0.0063704983331263065, + 0.011646854691207409, + -0.02828933298587799, + -0.000808009528554976, + 0.007306277751922607, + 0.0033148187212646008, + -0.005650667939335108, + -0.024762162938714027, + 0.015346783213317394, + 0.007810159120708704, + 0.004448551684617996, + 0.01703118532896042, + 0.011078189127147198, + -0.010516720823943615, + -1.0066377399198245e-5, + 0.006730413530021906, + -0.018326880410313606, + -0.024243885651230812, + -0.016052216291427612, + -0.012021166272461414, + -0.008328436873853207, + 0.01171163935214281, + -0.012784186750650406, + 0.002269265241920948, + -0.008882706053555012, + -0.0019579385407269, + -0.008702748455107212, + -0.015591525472700596, + -0.032997023314237595, + -0.0010536516783758998, + -0.0027641484048217535, + -0.009242621250450611, + -0.002971099689602852, + -0.0081916693598032, + -0.019017918035387993, + -0.023293709382414818, + 0.014655745588243008, + 0.006852784659713507, + 0.01648411527276039, + -0.0078893406316638, + 0.010092020966112614, + 0.002715559909120202, + 0.002035320270806551, + 0.0173479113727808, + -0.014497382566332817, + -0.020831890404224396, + 0.005384331103414297, + -0.010048831813037395, + -0.007658994756639004, + 0.006255325395613909, + 0.0010041632922366261, + 0.011553277261555195, + -0.003829497378319502, + 0.012618625536561012, + 0.014958074316382408, + -0.026705704629421234, + -0.004052644595503807, + -0.0043153828009963036, + -0.017016788944602013, + -0.0004318981955293566, + 0.02679208479821682, + -0.019406626001000404, + 0.0008610970107838511, + -0.0044881422072649, + -0.011661251075565815, + 0.0007090328726917505, + 0.007687787991017103, + 0.009523355402052402, + 0.007147915195673704, + -7.322023884626105e-5, + -0.035674791783094406, + -0.026417773216962814, + -0.0038258982822299004, + 0.0043081846088171005, + 0.03524289280176163, + 0.007536623626947403, + -0.005326744634658098, + 0.017607050016522408, + -0.002917112549766898, + 0.03201805427670479, + -0.0021288981661200523, + -0.005229567177593708, + 0.020615940913558006, + 0.0033112196251749992, + 0.0072270967066287994, + -0.022948190569877625, + 0.0109630161896348, + -0.010041633620858192, + -0.015692301094532013, + -0.005405925679951906, + 0.003124063601717353, + -0.016757650300860405, + -0.005017217248678207, + 0.0074358475394546986, + -0.0005079302936792374, + 0.0074934340082108974, + 0.0008534488151781261, + -0.003696328727528453, + -0.004236201755702496, + 0.010451936163008213, + 0.0027317560743540525, + -0.013180093839764595, + -0.006136553827673197, + -0.025093285366892815, + -0.0025032099802047014, + -0.012064356356859207, + -0.01881636492908001, + 0.010502324439585209, + 0.019939299672842026, + -0.009876072406768799, + 0.009645726531744003, + -0.02585630491375923, + -0.015490748919546604, + 0.0017905780114233494, + -0.02633139304816723, + -0.003257232252508402, + -0.0011031399480998516, + 0.015346783213317394, + -0.010718273930251598, + 0.015274799428880215, + 0.0033310148864984512, + 0.0010122613748535514, + -0.02267465554177761, + -0.008234859444200993, + 0.013597595505416393, + -0.004484543111175299, + -0.014461391605436802, + -0.014346218667924404, + -0.004513336345553398, + 0.011373319663107395, + 0.01978093758225441, + 0.012928152456879616, + -0.015994630753993988, + -0.00912025012075901, + -0.018902745097875595, + 0.009674519300460815, + -0.007295480463653803, + 0.007615805137902498, + -0.0026561738923192024, + 0.0031186649575829506, + 0.014828504994511604, + 0.0038762863259762526, + 0.008796326816082, + 0.01056710910052061, + 0.015418766066432, + -0.013280869461596012, + -0.006212135776877403, + -0.007608606480062008, + 0.017088772729039192, + 0.003663936397060752, + -0.024056728929281235, + 0.010423143394291401, + -0.0006307513103820384, + -0.020932666957378387, + -0.03458064794540405, + -0.0019633371848613024, + -0.01655609719455242, + -0.0041858134791255, + 0.014022295363247395, + -0.0038582906126976013, + -0.004898445215076208, + -0.0036225460935384035, + -0.01898912340402603, + 0.007165911141782999, + -0.0019345440668985248, + -0.0078893406316638, + 0.0026687709614634514, + -0.009976848028600216, + 0.011977977119386196, + 0.0003297722723800689, + 0.010451936163008213, + -0.021897239610552788, + -0.0034389893990010023, + 0.026230618357658386, + -0.005762241780757904, + -0.016152992844581604, + -0.0018283691024407744, + -0.010862239636480808, + 0.0003875836555380374, + -0.020112060010433197, + 0.006251726299524307, + 0.006388494279235601, + 0.0004595666832756251, + 0.007223497610539198, + 0.006906772032380104, + -0.0011706240475177765, + 0.0007580713136121631, + -0.006352502852678299, + 0.016786443069577217, + -0.010516720823943615, + 0.009048267267644405, + 0.008731542155146599, + -0.005495904479175806, + -0.004264994524419308, + 0.009372190572321415, + -0.0058126300573349, + -0.009163440205156803, + -0.01436061505228281, + -0.007694986183196306, + -0.019075503572821617, + -0.011841208674013615, + -0.0007634700741618872, + -0.0003713874612003565, + 0.011970778927206993, + -0.001071647391654551, + 0.011956381611526012, + 0.015490748919546604, + -0.005449115764349699, + -0.009293009527027607, + 0.003322016913443804, + 0.005549891851842403, + 0.0005844122497364879, + 0.0021648898255079985, + -0.0008660458843223751, + -0.009444174356758595, + 0.0027875429950654507, + 0.015346783213317394, + 0.007061535492539406, + 0.0037179237697273493, + 0.02607225440442562, + 0.014367813244462013, + -0.013763155788183212, + 0.002296258695423603, + 0.008659559302031994, + -0.006449679844081402, + -0.004264994524419308, + 0.029858563095331192, + -0.009372190572321415, + -0.013935915194451809, + -0.005085601471364498, + 0.006730413530021906, + -0.0019093499286100268, + -0.0013208886375650764, + 0.01727592758834362, + -0.012539444491267204, + 0.0139143206179142, + -0.01454057265073061, + -0.010495126247406006, + -0.0043729692697525024, + 0.010408747009932995, + -0.013727164827287197, + -0.012661815620958805, + 0.006438882555812597, + 0.007464640773832798, + -0.0035811560228466988, + 0.0009240821818821132, + -0.02597147785127163, + -0.004365771077573299, + -0.0073494678363204, + -0.015821870416402817, + 0.0054131243377923965, + 0.008537188172340393, + -0.00035271685919724405, + 0.036221861839294434, + 0.0035775566939264536, + 0.006208536680787802, + -0.022257154807448387, + -0.004948833491653204, + -0.0038115016650408506, + 0.004351374227553606, + 0.014929281547665596, + -0.012820178642868996, + 0.011610863730311394, + 0.016253769397735596, + -0.013288067653775215, + 0.000775617198087275, + 0.01717515103518963, + -0.012935351580381393, + -0.004218205809593201, + 0.017218342050909996, + 0.010869437828660011, + -0.0031762514263391495, + 0.0035271686501801014, + -0.020774303004145622, + 0.005952996667474508, + 0.003984260838478804, + 0.0006910371012054384, + 0.0007562717655673623, + -0.0021828855387866497, + -0.0008237558649852872, + 0.019190676510334015, + -0.004592517390847206, + -0.0101784011349082, + 0.002760549308732152, + 0.0030988696962594986, + 0.02382638491690159, + -0.0011238350998610258, + 0.0032482342794537544, + -0.009868874214589596, + -0.021148614585399628, + 0.004506137687712908, + -0.008659559302031994, + 0.002672370057553053, + 0.00029580527916550636, + 0.017247134819626808, + -0.038323767483234406, + -0.0038258982822299004, + -0.013532809913158417, + 0.0004962330567650497, + -0.013136903755366802, + 0.007205501664429903, + 0.0025589969009160995, + 0.009149043820798397, + 0.011905993334949017, + 0.02751191519200802, + 0.012647419236600399, + -0.024373454973101616, + -0.010027236305177212, + -0.009688916616141796, + 0.0017824798123911023, + -0.018053345382213593, + 0.012402676977217197, + 0.019435418769717216, + 0.00041952612809836864, + 0.0072414930909872055, + -0.004585319198668003, + 0.01158926822245121, + 0.0002976048563141376, + 0.0004136775096412748, + -0.0026201824657619, + -0.016340147703886032, + -0.0179525688290596, + -0.0033939999993890524, + 0.0024780158419162035, + -0.01802455075085163, + -0.0069031729362905025, + 0.016872823238372803, + -0.012517849914729595, + 0.011517285369336605, + -0.028447695076465607, + 0.0006757407099939883, + 0.01691601239144802, + 0.0017032985342666507, + 0.0019003520719707012, + 0.015404368750751019, + -0.005287153646349907, + 0.015346783213317394, + 0.013331257738173008, + -0.0332561619579792, + -0.001450458075851202, + 0.009494561702013016, + 0.0020641135051846504, + -0.022257154807448387, + 0.017146358266472816, + -0.01717515103518963, + 0.018010154366493225, + 0.031355809420347214, + 0.015418766066432, + 0.010358358733355999, + 0.02257387898862362, + -0.016268165782094002, + 0.009069861844182014, + 0.009926460683345795, + -0.0037107253447175026, + 0.007011147681623697, + 0.013504017144441605, + -0.011330129578709602, + -0.004761677701026201, + -0.028951575979590416, + -0.024272678419947624, + 0.008609171025454998, + 0.006917569320648909, + 0.005819828249514103, + -0.012107546441257, + -0.0077669695019721985, + 0.0035199704580008984, + 0.002677768934518099, + 0.021019045263528824, + -0.002971099689602852, + 0.007219898048788309, + -0.008832317776978016, + -0.01466294378042221, + 0.027857434004545212, + -0.013799147680401802, + -0.010790256783366203, + -0.01917628012597561, + 0.022545086219906807, + -0.0055318959057331085, + -0.008422015234827995, + 0.022876208648085594, + 0.008875507861375809, + 0.01860041543841362, + 0.012942549772560596, + -0.019809730350971222, + 0.004236201755702496, + 0.005549891851842403, + 0.006168946158140898, + -0.000345068663591519, + -0.012150736525654793, + 0.029916148632764816, + 0.008839516900479794, + -0.005855819676071405, + -0.003829497378319502, + 0.0013091914588585496, + -0.00827804859727621, + 0.008767533116042614, + -0.015865061432123184, + 0.01255384087562561, + -0.009768097661435604, + -0.028015796095132828, + -0.013057722710072994, + 0.016901616007089615, + 0.008846715092658997, + 0.0032608313485980034, + -0.006877978798002005, + -0.005891811102628708, + 0.007608606480062008, + 0.012150736525654793, + -0.010387151502072811, + -8.722319034859538e-5, + -0.004124627914279699, + 0.0030538802966475487, + -0.030060114338994026, + 0.0077669695019721985, + 0.013338455930352211, + -0.008839516900479794, + 0.0029297093860805035, + 0.006428084801882505, + -0.0007135318010114133, + -0.015447558835148811, + 0.017160754650831223, + -0.019896110519766808, + 0.021767670288681984, + 0.015461955219507217, + -0.00010336313425796106, + 0.012676212005317211, + 0.02149413339793682, + -0.004365771077573299, + 0.0028217348735779524, + 0.010955817997455597, + -0.003401198424398899, + 0.007144316099584103, + -0.008954689837992191, + -0.0013064920203760266, + -0.0018535631243139505, + -0.01821170747280121, + 0.0137343630194664, + -0.013799147680401802, + -0.005866617430001497, + -0.012848971411585808, + -0.014259838499128819, + 0.0002595888217911124, + -0.012661815620958805, + 0.003199645783752203, + -0.0041570202447474, + 0.005920604337006807, + -0.0052115716971457005, + 0.011999571695923805, + 0.020687924697995186, + 0.01207155454903841, + -0.016786443069577217, + -0.01261142734438181, + 0.003683731658384204, + -0.030895117670297623, + 0.007151514291763306, + 0.0009051866363734007, + -0.018182914704084396, + 0.003046681871637702, + -0.0075294254347682, + -0.0013937714975327253, + 0.015677904710173607, + 0.01695920340716839, + 0.003923075273633003, + 1.299771793128457e-5, + 0.0035577614326030016, + 0.007716581225395203, + -0.010257582180202007, + -0.002449222607538104, + 0.0058306255377829075, + 0.006496468558907509, + 0.020515164360404015, + 0.007457442115992308, + 0.014914884231984615, + 0.024085523560643196, + -0.012525048106908798, + -0.012906557880342007, + 0.02368241734802723, + 0.012647419236600399, + 0.01580747403204441, + 0.007345868740230799, + -0.016541700810194016, + -0.004207408521324396, + -0.009069861844182014, + 0.005675862077623606, + 0.016325751319527626, + 0.010192797519266605, + 0.008709946647286415, + 0.004211007617413998, + -0.002519406145438552, + 0.02980097569525242, + -0.005308748688548803, + 0.010005641728639603, + -0.0010788457002490759, + 0.004635707475244999, + -0.0009357794187963009, + 0.030751151964068413, + -0.025913892313838005, + 0.003179850522428751, + 0.007032742258161306, + -0.0010824449127539992, + -0.01062469556927681, + -0.013691172935068607, + -0.008738740347325802, + 0.0061041610315442085, + 0.0013586797285825014, + 0.026316996663808823, + 0.011445302516222, + -0.0037755100056529045, + 0.020342405885457993, + -0.0057190521620213985, + -0.014389408752322197, + -0.00266517186537385, + -0.0023034571204334497, + -0.0024330264423042536, + -0.00030750251607969403, + -0.005647068843245506, + -0.004855255596339703, + -0.0035325672943145037, + 0.02929709479212761, + 0.024560611695051193, + 0.04321861267089844, + -0.0020515164360404015, + -0.009084259159862995, + 0.008781930431723595, + -0.020270422101020813, + -0.0052259680815041065, + -0.002218876965343952, + 0.008666757494211197, + 0.0153611795976758, + -0.005787435919046402, + 0.012546642683446407, + -0.0119275888428092, + 0.011661251075565815, + -0.012510650791227818, + -0.0043153828009963036, + 0.0037179237697273493, + 0.017391100525856018, + 0.019478609785437584, + 0.01514523010700941, + 0.0219260323792696, + -0.014785314910113811, + 0.008083694614470005, + -0.011099783703684807, + 0.008897103369235992, + -0.020371198654174805, + 0.0065900469198822975, + 0.001508044544607401, + -0.02260267175734043, + 0.018182914704084396, + -0.010365556925535202, + -0.0018517635762691498, + 0.0056614656932652, + 0.0013559804065153003, + -0.005243964027613401, + -0.00024969116202555597, + -0.003136660670861602, + 0.012992937117815018, + -0.001920147449709475, + 0.04439913481473923, + 0.0136119918897748, + 0.017261531203985214, + -0.015303593128919601, + 0.0028541272040456533, + -6.292892066994682e-5, + 0.010495126247406006, + 0.0005304249934852123, + 0.017679033800959587, + -0.005319545976817608, + -0.010401548817753792, + 0.014166261069476604, + -0.0150588508695364, + -0.004822863265872002, + 0.01809653453528881, + 0.010617497377097607, + -0.021292582154273987, + -0.007623003330081701, + 0.011726035736501217, + -0.026532946154475212, + -0.0013028929242864251, + -0.019190676510334015, + 0.03161494806408882, + 0.005575085990130901, + -0.008018909953534603, + -0.012208322063088417, + 0.01785179227590561, + 0.0021990817040205, + 0.013324059545993805, + -0.014029493555426598, + 0.006186941638588905, + -0.0104807298630476, + 0.017117565497756004, + -0.014382210560142994, + 0.030923910439014435, + 0.019622575491666794, + 0.002245870651677251, + -0.0038906829431653023, + 0.018125327304005623, + -0.016728857532143593, + -0.0098184859380126, + 0.0038007041439414024, + -0.01799575798213482, + 0.0053015504963696, + -0.0017455886118113995, + 0.002314254641532898, + 0.01339604239910841, + -0.030348047614097595, + 0.0010284575400874019, + -0.015980234369635582, + 0.0016529103741049767, + 0.0013829739764332771, + -0.016656873747706413, + 0.0183124840259552, + -0.0052259680815041065, + -0.005956596229225397, + 0.006712418049573898, + 0.010768662206828594, + 0.04863173887133598, + 0.022329136729240417, + -0.001786978798918426, + -0.00013946712715551257, + 0.012222719378769398, + -0.027483122423291206, + 0.008386023342609406, + 0.0037863075267523527, + -0.02052956074476242, + -0.014245442114770412, + -0.007939728908240795, + -0.007587011903524399, + 0.011358922347426414, + 0.007990117184817791, + 0.002179286442697048, + -0.020486371591687202, + -0.01870119199156761, + -0.023293709382414818, + 0.013928717002272606, + 0.010034434497356415, + 0.009386587888002396, + 0.002828933298587799, + -0.020083267241716385, + -0.012049959972500801, + 0.02317853644490242, + 0.009084259159862995, + -0.0128921614959836, + -0.009868874214589596, + -0.027742261067032814, + 0.009804089553654194, + 0.027209587395191193, + -0.007414252497255802, + -0.026057858020067215, + 0.0030052915681153536, + -0.01261142734438181, + 0.000850749493110925, + -0.012093150056898594, + 0.007054337300360203, + 0.007299079559743404, + -0.016253769397735596, + -0.019003521651029587, + -0.006993151735514402, + 0.0023502460680902004, + -0.014742124825716019, + -0.00037836082628928125, + -0.0030322852544486523, + -0.001754586468450725, + 0.0015269401483237743, + -0.0013775753322988749, + -0.015303593128919601, + -0.004477344918996096, + -0.005974591709673405, + -0.03411995619535446, + -0.014252640306949615, + 0.009408182464540005, + -0.006442481651902199, + 0.012417073361575603, + -0.0039158770814538, + -0.0027335556223988533, + -0.03745996952056885, + -0.00797571986913681, + 0.002418629825115204, + 0.012920954264700413, + 0.012841773219406605, + -0.007882142439484596, + 0.03671134635806084, + -0.004801268223673105, + -0.018715588375926018, + 0.012193925678730011, + -0.023135347291827202, + 0.002253068843856454, + -0.01888834871351719, + -0.003663936397060752, + -0.008198867551982403, + -0.010646291077136993, + -0.018873952329158783, + -0.02464699000120163, + -0.004531331826001406, + -0.0061293551698327065, + 0.020040076225996017, + 0.005603879224509001, + 0.0037107253447175026, + -0.02633139304816723, + -0.009717709384858608, + -0.013835138641297817, + 0.0101784011349082, + -0.008004513569176197, + 0.01146689709275961, + -0.006726814433932304, + 0.015836266800761223, + 0.0019309448543936014, + -0.03262270987033844, + -0.018226103857159615, + -0.005650667939335108, + 0.013187292031943798, + -0.003235637443140149, + 0.009804089553654194, + -0.013316861353814602, + -0.005737047642469406, + 0.018398864194750786, + -0.014526176266372204, + 0.01128693949431181, + -0.008270850405097008, + 0.0125898327678442, + -0.0019381431629881263, + -0.03247874602675438, + 0.00038106017746031284, + -0.000803060713224113, + 0.002015525009483099, + 0.009069861844182014, + -0.011013404466211796, + -0.0013190890895202756, + -0.002010126132518053, + 0.016757650300860405, + 0.0043009864166378975, + 0.026029065251350403, + 0.005283554550260305, + 0.006766404956579208, + -0.011351724155247211, + 0.020860683172941208, + -0.010639091953635216, + 0.0145765645429492, + 0.028490884229540825, + 0.024258282035589218, + -0.0116252601146698, + 0.0036027508322149515, + 0.0113229313865304, + 0.017045581713318825, + -0.010552712716162205, + 0.0021091029047966003, + 0.008738740347325802, + -0.002532003214582801, + 0.005387930199503899, + 0.004448551684617996, + -0.019521798938512802, + 0.0063561019487679005, + 0.011798019520938396, + -0.008717145770788193, + 0.02335129678249359, + -0.009379389695823193, + -0.01802455075085163, + 0.015188420191407204, + 0.006845586467534304, + -0.003804303240031004, + -0.003894282039254904, + -0.006978754885494709, + -0.021292582154273987, + 0.0190323144197464, + -0.014166261069476604, + 0.009077060967683792, + -0.005254761315882206, + 0.007043540012091398, + -0.014490184374153614, + 0.013468025252223015, + 0.0033040212001651525, + 0.02510768175125122, + -0.019334642216563225, + 0.014267037622630596, + -0.016541700810194016, + 0.01949300616979599, + -0.009343397803604603, + 0.008162875659763813, + 0.0026867666747421026, + -0.006269722245633602, + -0.012201123870909214, + -0.0049056438729166985, + 0.0017527869204059243, + 0.017405496910214424, + -0.01261142734438181, + -0.018442053347826004, + -0.010711075738072395, + -0.003555961884558201, + -0.0032662302255630493, + 0.003969864454120398, + -0.001679004286415875, + -0.0024078325368463993, + -0.010365556925535202, + -0.0012866967590525746, + -0.025669150054454803, + -0.020227232947945595, + 0.019377833232283592, + 0.011956381611526012, + 0.026014668866991997, + -0.006579249165952206, + -0.006608042400330305, + -0.0018013754161074758, + -0.009948055259883404, + 0.011855605989694595, + 0.011704441159963608, + -0.012956946156919003, + -0.0029099141247570515, + 0.011430906131863594, + -0.013619190081954002, + 0.005809030961245298, + -0.018729984760284424, + 0.004365771077573299, + 0.007716581225395203, + 0.004225404001772404, + -0.02278982847929001, + -0.005809030961245298, + 0.021364564076066017, + -0.008933094330132008, + -0.008709946647286415, + -0.021436547860503197 + ], + "2135c16e-6e34-425c-9901-4d9d31e2239c": [ + -0.025725023820996284, + -0.049795616418123245, + -0.01646292954683304, + -0.00481411861255765, + -0.02446386031806469, + -0.03135279566049576, + 0.022144947201013565, + 0.026104727759957314, + 0.004749704618006945, + 0.04464247450232506, + 0.01082837674766779, + 0.021588949486613274, + 0.015079718083143234, + 0.00671264436095953, + -0.010102869011461735, + -0.017493559047579765, + -0.018049554899334908, + 0.016978243365883827, + 0.00581762520596385, + -0.0011136886896565557, + 0.05966795235872269, + -0.03731958940625191, + -0.004641217179596424, + 0.034390438348054886, + 0.021073635667562485, + -0.029155930504202843, + 0.01097754668444395, + 0.0006810113554820418, + -0.045401886105537415, + -0.02831515483558178, + -0.011106375604867935, + 0.032383423298597336, + 0.020802417770028114, + 0.012448904104530811, + 0.01536449696868658, + -0.012998120859265327, + -0.01703248731791973, + 0.01928359642624855, + -0.008726437576115131, + 0.008746779523789883, + -0.008956973440945148, + -0.015757763758301735, + -0.0013416813453659415, + 0.008495902642607689, + -0.014116894453763962, + 0.020314225926995277, + -0.0015823872527107596, + -0.011797981336712837, + 0.006838082801550627, + -0.015256009995937347, + 0.02577926777303219, + 0.041523467749357224, + -0.020300664007663727, + 0.007058447226881981, + 0.031461283564567566, + -0.004359828773885965, + 0.0036275400780141354, + 0.11369457095861435, + 0.03390224650502205, + -0.04236424341797829, + 0.008943412452936172, + -0.029318660497665405, + 0.051802631467580795, + -0.0036343205720186234, + 0.020693929865956306, + 0.023704448714852333, + -0.006963521242141724, + 0.016300199553370476, + 0.02366376668214798, + 0.004105561878532171, + 0.009146825410425663, + -0.026837017387151718, + -0.05375539883971214, + 0.02192797139286995, + 0.03232917934656143, + -0.001280657248571515, + -0.013588019646704197, + -0.009689261205494404, + 0.017222341150045395, + -0.04014025628566742, + -0.031705379486083984, + -0.0001749143993947655, + 0.01952769234776497, + 0.016137467697262764, + 0.03151552751660347, + 0.014266064390540123, + 0.0014806805411353707, + -0.06075282394886017, + -0.07409674674272537, + -0.004766655620187521, + 0.016801953315734863, + 0.021304171532392502, + 0.01810379885137081, + 0.012482806108891964, + -0.016395125538110733, + -0.003834343980997801, + 0.014984792098402977, + 0.0023748523090034723, + -0.03539394214749336, + -0.013669384643435478, + -0.02232123725116253, + 0.0013586324639618397, + -0.021073635667562485, + 0.012394661083817482, + -0.010001162067055702, + -0.0049666790291666985, + -0.0013688030885532498, + 0.03818748891353607, + -0.01676126942038536, + 0.02061256393790245, + 0.0034156511537730694, + -0.028532128781080246, + 0.012821828946471214, + 0.0020443054381757975, + -0.004892094060778618, + -0.010570719838142395, + -0.01874116063117981, + -0.006885545793920755, + -0.0035563455894589424, + -0.04705631732940674, + 0.017181657254695892, + -0.026362385600805283, + 0.03257327526807785, + 0.002905422355979681, + 0.040764059871435165, + 0.008597609587013721, + -0.011845444329082966, + 0.052995987236499786, + 0.035963501781225204, + 0.01023169793188572, + -0.010252038948237896, + -0.03479726240038872, + -0.007594102993607521, + -0.046215541660785675, + 0.014211821369826794, + 0.04279819503426552, + -0.017507119104266167, + 0.04176756739616394, + -0.014686452224850655, + 0.02767779305577278, + -0.022266995161771774, + 0.014713574200868607, + 0.030267924070358276, + -0.027704915031790733, + 0.02274162508547306, + -0.012177686206996441, + -0.02940002642571926, + 0.04212014749646187, + -0.02515546604990959, + 0.020043008029460907, + -0.041414983570575714, + 0.011696274392306805, + -0.03365814685821533, + -0.018442820757627487, + 0.03493287414312363, + 0.009512970224022865, + 0.006305817514657974, + 0.05728123337030411, + -0.010841937735676765, + 0.032519035041332245, + 0.013472751714289188, + -0.01928359642624855, + -0.013811774551868439, + -0.023039964959025383, + -0.029833976179361343, + 0.000466155877802521, + 0.031000211834907532, + 0.042879559099674225, + -0.053375694900751114, + 0.003144433256238699, + 0.050039712339639664, + 0.021100757643580437, + 0.020517637953162193, + 0.015079718083143234, + 0.004780216608196497, + -0.02977973222732544, + 0.01889033056795597, + 0.03354966267943382, + 0.03539394214749336, + -0.01846994273364544, + -0.012177686206996441, + 0.010638524778187275, + 0.017873262986540794, + -0.013120168820023537, + -0.06221739947795868, + 0.013364264741539955, + 0.03425482660531998, + 0.011350471526384354, + 0.016178151592612267, + 0.021263487637043, + 0.017900384962558746, + -0.027026869356632233, + 0.02138553559780121, + 0.024368934333324432, + -0.026647163555026054, + -0.048846352845430374, + -0.02937290444970131, + -0.0042615123093128204, + -0.0009933357359841466, + 0.04331350699067116, + 0.003163079498335719, + -0.03788914903998375, + -0.013981285504996777, + 0.04174044355750084, + -0.02484356425702572, + 0.025765705853700638, + -0.01190646830946207, + -0.03433619439601898, + 0.006380402483046055, + -0.023039964959025383, + 0.06487533450126648, + -0.03495999425649643, + 0.02953563630580902, + -0.016300199553370476, + -0.017317267134785652, + 0.002096853917464614, + 0.02275518700480461, + -0.00016972312005236745, + 0.00019281901768408716, + 0.024246886372566223, + -0.013628702610731125, + -0.008672194555401802, + -0.006217671558260918, + -0.005031093023717403, + -0.056955769658088684, + 0.013235436752438545, + -0.023731570690870285, + 0.04732753336429596, + -0.01954125426709652, + -0.024165520444512367, + 0.012530270032584667, + -0.012537050060927868, + 0.039299480617046356, + -0.03750944510102272, + 0.006176989059895277, + 0.01611034758388996, + 0.026891261339187622, + -0.014903427101671696, + -0.0075127375312149525, + -0.04399155452847481, + 0.008536585606634617, + -0.001745965564623475, + -0.03260039910674095, + -0.012598074041306973, + -0.030783237889409065, + 0.024504542350769043, + -0.020639685913920403, + 0.03338693082332611, + 0.009214630350470543, + 0.017086731269955635, + -0.017913946881890297, + 0.009668920189142227, + -0.0044954377226531506, + 0.03712973743677139, + -0.004556461703032255, + 0.02725740522146225, + 0.04895484074950218, + 0.007668687961995602, + 0.0023256940767169, + 0.014184699393808842, + 0.011079253628849983, + -0.02156182751059532, + -0.005675235763192177, + -0.010028284043073654, + -0.00422421982511878, + -0.006610937882214785, + 0.01901237852871418, + -0.06227164342999458, + 0.022443285211920738, + -0.0014815280446782708, + 0.046486757695674896, + -0.047002073377370834, + -0.018117358908057213, + -0.0018205505330115557, + -0.03775354102253914, + -0.008211123757064342, + 0.013750750571489334, + 0.007695809472352266, + 0.0032376644667237997, + -0.009804529137909412, + -0.01217090617865324, + -0.013486312702298164, + 0.00937736127525568, + 0.021982215344905853, + 0.03577364981174469, + -0.0015603507636114955, + 0.006936399266123772, + -0.008794242516160011, + -0.01461864821612835, + -0.02710823528468609, + -0.009811310097575188, + 0.007010984234511852, + -0.012265832163393497, + 0.05503012239933014, + -0.009011216461658478, + -0.002917288104072213, + 0.029589878395199776, + 0.004339487291872501, + 0.036505937576293945, + -0.005017532035708427, + -0.005824405699968338, + -0.05329432711005211, + 0.0059701851569116116, + 0.0049666790291666985, + 0.023907862603664398, + 0.011574226431548595, + 0.02236192114651203, + 0.013208314776420593, + -0.03295298293232918, + 0.02392142452299595, + 0.03780778497457504, + 0.00039941081195138395, + -0.051531411707401276, + -0.03826885297894478, + -0.01377109158784151, + -0.011892907321453094, + -0.05226369947195053, + 0.010482573881745338, + 0.015418740920722485, + -0.053782522678375244, + -0.043801698833703995, + -0.002322303829714656, + -0.06297680735588074, + 0.03474302217364311, + 0.05277901515364647, + -0.02099226973950863, + 0.01143861748278141, + -0.015120401047170162, + -0.02020573802292347, + 0.005743040237575769, + -0.018700478598475456, + -0.02579282782971859, + -0.001274724374525249, + -0.00032948743319138885, + -0.00674993684515357, + -0.019473450258374214, + -0.038648560643196106, + -0.024911370128393173, + 0.0036750033032149076, + 0.013404947705566883, + -0.025019856169819832, + 0.010089308023452759, + 0.0372653491795063, + -0.00674993684515357, + 0.015201766975224018, + -0.0037360272835940123, + 0.022660261020064354, + 0.030349289998412132, + -0.012889633886516094, + -0.01461864821612835, + 0.0006204110686667264, + -0.02910168655216694, + 0.031081577762961388, + -0.029318660497665405, + 0.029617000371217728, + 0.0028630446176975965, + -0.025467365980148315, + -0.01780545897781849, + 0.018917452543973923, + 0.01686975732445717, + -0.03425482660531998, + -0.01848350465297699, + 0.014727135188877583, + -0.014523721300065517, + -0.0005373505991883576, + 0.04797845706343651, + 0.032112207263708115, + 0.006007477641105652, + 0.0034173461608588696, + 0.023175574839115143, + -0.04610705375671387, + -0.005481992848217487, + -0.05009395629167557, + -0.03368527069687843, + -0.026931943371891975, + -0.052182335406541824, + 0.050039712339639664, + 0.004281853325664997, + -0.014306747354567051, + 0.036370329558849335, + 0.005417578853666782, + 0.0052921404130756855, + -0.0345802903175354, + -0.0037733197677880526, + 0.05356554687023163, + 0.00674993684515357, + 0.03528545796871185, + -0.013004900887608528, + -0.05142292380332947, + -0.02671496942639351, + 0.006655010860413313, + 0.00783819891512394, + -0.012808267958462238, + -0.005861698184162378, + 0.00996726006269455, + -0.01743931509554386, + -0.006387182977050543, + 0.011852224357426167, + 0.0159611776471138, + 0.020002324134111404, + -0.025887753814458847, + -0.006397353485226631, + -0.009228191338479519, + -0.0028291423805058002, + -0.013615141622722149, + -0.027487939223647118, + -0.03430907055735588, + -0.0016578197246417403, + -0.014916988089680672, + -0.003725856775417924, + -0.005498944316059351, + 0.01686975732445717, + 0.01834789477288723, + 0.05413510277867317, + 0.029698366299271584, + 0.012882852926850319, + 0.012055638246238232, + 0.06948604434728622, + -0.011750518344342709, + -0.02180592343211174, + 0.029833976179361343, + 0.01570351980626583, + 0.0014772902941331267, + 0.02366376668214798, + 0.005685406271368265, + 0.017981750890612602, + -0.011696274392306805, + 0.01727658323943615, + 0.010448671877384186, + 0.0025053760036826134, + 0.04504930227994919, + 0.018008872866630554, + -0.021317731589078903, + 0.006383792497217655, + 0.002912202849984169, + -0.008950192481279373, + 0.02754218317568302, + -0.018578430637717247, + -0.013011681847274303, + 0.01741219311952591, + 0.011682713404297829, + 0.006461767945438623, + 0.009716383181512356, + 0.04220151528716087, + -0.0385671928524971, + -0.014754257164895535, + -0.008536585606634617, + -0.010984327644109726, + 0.015798445791006088, + 0.007953466847538948, + -0.019351400434970856, + 0.035149846225976944, + -0.011621689423918724, + 9.667436825111508e-5, + 0.005102287977933884, + 0.020965147763490677, + 0.02302640490233898, + 0.017995310947299004, + 0.03574652597308159, + -0.020924465730786324, + 0.002900337101891637, + 0.026131849735975266, + 0.055247098207473755, + -0.04005889222025871, + 0.006617718376219273, + -0.006197330541908741, + -0.015540788881480694, + 0.0009170557023026049, + -0.00671264436095953, + 0.03772641718387604, + -0.026131849735975266, + 0.0027037039399147034, + -0.03935372456908226, + 0.008204342797398567, + 0.016327321529388428, + 0.022945038974285126, + -0.017873262986540794, + 0.01712741330265999, + -0.00012978202721569687, + 0.01810379885137081, + 0.002223987365141511, + -0.012530270032584667, + -0.0026630214415490627, + -0.023853618651628494, + 0.00791278388351202, + 0.010421549901366234, + -0.030918847769498825, + -0.013506654649972916, + -0.0093095563352108, + 0.029698366299271584, + 0.015066158026456833, + 0.010191014967858791, + -0.011350471526384354, + 0.006315988022834063, + -0.031000211834907532, + -0.006736375857144594, + 0.008272147737443447, + -0.024707956239581108, + -0.010557158850133419, + 0.010346964932978153, + 0.027447257190942764, + -0.009818090125918388, + 0.019107304513454437, + -0.022253433242440224, + -0.010909742675721645, + 0.03805188089609146, + 0.0018205505330115557, + 0.04079117998480797, + 0.008339952677488327, + 0.01335070375353098, + -0.010204575955867767, + 0.009824870154261589, + -0.012109882198274136, + -0.01939208433032036, + -0.0038953679613769054, + -0.020504077896475792, + -0.03390224650502205, + 0.02009725011885166, + 0.057769425213336945, + 0.006732985842972994, + -0.0139677245169878, + 0.008753559552133083, + -0.027826962992548943, + 0.018822526559233665, + -0.0032308839727193117, + 0.023175574839115143, + -0.013004900887608528, + -0.002218901878222823, + 0.04065557196736336, + -0.004407291766256094, + -0.008895949460566044, + -0.00508194649592042, + 0.008760340511798859, + 0.0017900385428220034, + 0.026755651459097862, + 0.031461283564567566, + -0.013628702610731125, + 0.0021697436459362507, + 0.010950424708425999, + 0.007689028978347778, + -0.012109882198274136, + 0.032898738980293274, + -0.0029613610822707415, + 0.024111276492476463, + 0.018429260700941086, + 0.02219918929040432, + -0.014198260381817818, + 0.019242914393544197, + -0.006234623026102781, + 0.01727658323943615, + -0.031461283564567566, + 0.023053526878356934, + -0.026525115594267845, + -0.015418740920722485, + 0.00046064675552770495, + -0.026362385600805283, + -0.030647629871964455, + -0.01875472255051136, + -0.025019856169819832, + 0.006193940062075853, + 0.016991805285215378, + 0.02007012814283371, + 0.008685755543410778, + -0.006360061001032591, + 0.011465739458799362, + -0.0004979392397217453, + -0.032491911202669144, + 0.004332706797868013, + 0.0017883434193208814, + 0.021751679480075836, + 0.01913442648947239, + -0.017859702929854393, + 0.03208508342504501, + 0.023243378847837448, + -0.01442879531532526, + 0.048846352845430374, + 0.010794474743306637, + 0.018415698781609535, + -0.024151958525180817, + -0.010075747035443783, + 0.015567910857498646, + -0.01151320245116949, + 0.009987601079046726, + -0.011194521561264992, + -0.014849183149635792, + 0.033061470836400986, + -0.03401073068380356, + 0.0006780449184589088, + 0.004529339727014303, + 0.018130920827388763, + -0.01941920630633831, + 0.031596891582012177, + 0.010258818976581097, + -0.002334169577807188, + -0.026253897696733475, + 0.023718010634183884, + 0.003702125046402216, + 0.012923535890877247, + -0.008048392832279205, + 0.026837017387151718, + 0.026281019672751427, + 0.023053526878356934, + 0.020449833944439888, + -0.016015419736504555, + -0.029861096292734146, + 0.025589413940906525, + -0.006465157959610224, + 0.0060040876269340515, + -0.021249927580356598, + -0.010299501940608025, + -0.023243378847837448, + -0.03376663476228714, + 0.023772254586219788, + 0.0199345201253891, + 0.0035427846014499664, + 0.008245025761425495, + 0.03373951464891434, + 0.043530482798814774, + -0.004797167610377073, + 0.010652085766196251, + 0.014116894453763962, + -0.059125516563653946, + 0.030376411974430084, + -0.012659098021686077, + 0.018985256552696228, + 0.016964683309197426, + -0.025833509862422943, + -0.016557855531573296, + -0.015242449007928371, + 0.01621883362531662, + 0.004132683854550123, + -0.009790968149900436, + 0.006949960254132748, + 0.0026528507005423307, + 0.011994614265859127, + -0.011411495506763458, + 0.007031325716525316, + -0.01408977247774601, + 2.1400792320491746e-5, + -0.03379375860095024, + 0.008353512734174728, + 0.004051318392157555, + -8.104755397653207e-5, + -0.014198260381817818, + -0.015581471845507622, + 0.015649275854229927, + 0.006963521242141724, + 0.029454270377755165, + 0.030213680118322372, + 0.012157345190644264, + -0.02834227681159973, + 0.036126233637332916, + 0.021724559366703033, + 0.012977778911590576, + 0.011689494363963604, + -0.01170983538031578, + -0.004902264568954706, + 0.013248996809124947, + -0.007736492436379194, + -0.005197213962674141, + 0.013676165603101254, + -0.03753656521439552, + 0.023894302546977997, + 0.02592843770980835, + 0.03298010304570198, + -0.020558321848511696, + 0.002786764409393072, + -0.006926228757947683, + 0.026931943371891975, + 0.030105194076895714, + -0.011574226431548595, + -0.0016773135866969824, + 0.005448090843856335, + -0.02369088865816593, + 0.018524186685681343, + -0.026023363694548607, + 0.020395589992403984, + -0.005800674203783274, + 0.017507119104266167, + -0.01810379885137081, + -0.024830004200339317, + -0.017574923112988472, + -0.0016112042358145118, + 0.009553652256727219, + 0.016557855531573296, + -0.012713341973721981, + 0.014008407481014729, + 0.06867238879203796, + -0.06530928611755371, + 0.0005191281088627875, + -0.00033203011844307184, + -0.016395125538110733, + -0.03845870494842529, + 0.020558321848511696, + 0.0013679555850103498, + -0.020680369809269905, + 0.015052597038447857, + -0.03840446472167969, + 0.03417346253991127, + -0.02127704955637455, + -0.02618609368801117, + 0.028369398787617683, + 0.019785350188612938, + 0.00349193112924695, + 0.03086460381746292, + 0.026362385600805283, + -0.009512970224022865, + -0.012577733024954796, + 0.00014228349027689546, + -0.002551143988966942, + 0.025453805923461914, + -0.001272181747481227, + 0.0042276098392903805, + 0.010367306880652905, + -0.007309324108064175, + 0.0033936146646738052, + -0.04426277056336403, + 0.04285243898630142, + -0.012577733024954796, + 0.022443285211920738, + -0.01322865579277277, + 0.01836145669221878, + -0.02153470553457737, + -0.03127143159508705, + -0.01807667687535286, + 0.028559250757098198, + -0.001633240608498454, + 0.005719308741390705, + -0.025752145797014236, + 0.0035224431194365025, + 0.020666807889938354, + -0.02221275120973587, + -0.012198027223348618, + 0.001294218236580491, + 0.0011552190408110619, + -0.023039964959025383, + 0.0046005346812307835, + 0.031190065667033195, + 0.008095855824649334, + -0.002407059306278825, + 0.0012560781324282289, + -0.0312443096190691, + 0.024016350507736206, + -0.004529339727014303, + 0.03604486584663391, + 0.0022511091083288193, + 0.007946685887873173, + -0.0033173346891999245, + -0.022172067314386368, + 0.02061256393790245, + 0.03018655814230442, + -0.028966078534722328, + 0.02499273419380188, + 0.010313062928617, + -0.040764059871435165, + 0.0024341812822967768, + 0.03642457351088524, + 0.0139677245169878, + 0.012801487930119038, + 0.015079718083143234, + -0.02845076471567154, + 0.010475793853402138, + -0.037563689053058624, + 0.006166818551719189, + -0.0014501685509458184, + -0.018307212740182877, + 0.0037495882716029882, + 0.017588485032320023, + 0.027555745095014572, + -0.01403552945703268, + 0.025982679799199104, + 0.037156861275434494, + 0.002668106695637107, + 0.017737654969096184, + -0.02298572286963463, + -0.05090761184692383, + -0.0013179497327655554, + 0.0001516065967734903, + 0.009723164141178131, + -0.008122977800667286, + -0.01117417961359024, + -0.05237218737602234, + -0.007750052958726883, + -0.038106124848127365, + -0.0007377975853160024, + 0.002802020637318492, + 0.030539141967892647, + 0.012164125218987465, + 0.010767352767288685, + 0.01756136305630207, + -0.007899222895503044, + -0.008434878662228584, + -0.007010984234511852, + -0.006997423246502876, + 0.0018358065281063318, + -0.013954163528978825, + 0.01780545897781849, + 0.04220151528716087, + -0.016408685594797134, + 0.015608593821525574, + -0.003607198828831315, + -0.03468877822160721, + 0.029725488275289536, + 0.029318660497665405, + 0.0045666322112083435, + -0.01536449696868658, + -0.00945194624364376, + -0.015486545860767365, + -0.013011681847274303, + 0.013120168820023537, + 0.014930548146367073, + -0.007227958645671606, + -0.023094208911061287, + 0.0025765704922378063, + 0.0013738884590566158, + -0.025901315733790398, + -0.02499273419380188, + -0.025358879938721657, + 0.0319494754076004, + -0.02313489094376564, + 0.0021646583918482065, + 0.011058912612497807, + -0.0009645188692957163, + 0.01521532703191042, + 0.007668687961995602, + 0.008000929839909077, + 0.019975202158093452, + -0.014062651433050632, + 0.012313295155763626, + -0.025562291964888573, + -0.024762200191617012, + -0.02405703254044056, + 0.004329316783696413, + 0.011113155633211136, + -0.016801953315734863, + 0.019053062424063683, + -0.0033275054302066565, + 0.020775295794010162, + -0.02834227681159973, + 0.0332784429192543, + 0.0037529785186052322, + -0.034390438348054886, + 0.0052989209070801735, + -0.03298010304570198, + 0.010428330861032009, + -0.008658633567392826, + -0.001993451965972781, + 0.010191014967858791, + 0.01874116063117981, + 0.03867568075656891, + 0.020382029935717583, + -0.00977062713354826, + -0.0028884713537991047, + 0.023487474769353867, + -0.05305023118853569, + 0.03938084840774536, + -0.01583912968635559, + -0.013655824586749077, + -0.02165675349533558, + 0.0003138076572213322, + 0.04176756739616394, + 0.01388635952025652, + 0.02621321566402912, + 0.009438385255634785, + -0.007634785491973162, + 0.012062418274581432, + -0.000694148475304246, + -0.006502450443804264, + 0.013927042484283447, + 0.028749102726578712, + 0.014808500185608864, + -0.0014383026864379644, + -0.0033139444421976805, + 0.007566981017589569, + -0.019975202158093452, + -0.04803270101547241, + -0.008536585606634617, + 0.012435343116521835, + -0.0035292236134409904, + 0.002902032108977437, + -0.004251341335475445, + 0.028505006805062294, + 0.009085801430046558, + -0.01794106885790825, + -0.0027037039399147034, + 0.021100757643580437, + 0.002647765213623643, + 0.020422711968421936, + -0.0063566709868609905, + 0.004664948675781488, + 0.0031681647524237633, + 0.012320076115429401, + -0.00025914027355611324, + -0.04054708406329155, + -0.01768341101706028, + 0.0032241034787148237, + 0.004841240588575602, + -0.03235630318522453, + 0.011486080475151539, + 0.011086033657193184, + 0.012021736241877079, + -0.04838528484106064, + -0.007939905859529972, + -0.002205341123044491, + 0.018442820757627487, + -0.015717079862952232, + 0.03276313096284866, + 0.009885894134640694, + 0.015649275854229927, + 0.0199345201253891, + 0.024558786302804947, + 0.005200604442507029, + 0.010367306880652905, + -0.0071262517012655735, + 0.04445262253284454, + 0.009811310097575188, + 0.02899320051074028, + -0.009072240442037582, + 0.007743272930383682, + -0.031569771468639374, + 0.0049598985351622105, + 0.006617718376219273, + 0.03349541872739792, + -0.014333869330585003, + -0.01016389299184084, + -0.017724093049764633, + -0.02379937656223774, + 0.004200488328933716, + -0.02634882554411888, + 0.017656289041042328, + -0.0056650652550160885, + 0.02087022177875042, + 0.03140703961253166, + -0.024965612217783928, + 0.0001141022439696826, + -0.008584048599004745, + 0.007885661907494068, + 0.021331291645765305, + -0.0015501801390200853, + -0.04157771170139313, + -0.006346500013023615, + -0.006461767945438623, + 0.019514132291078568, + 0.021263487637043, + -0.020029446110129356, + -0.008563706651329994, + 0.011282667517662048, + 0.0016646002186462283, + 0.009723164141178131, + -0.003398700151592493, + -0.009329897351562977, + 0.000811534991953522, + -0.024897808209061623, + 0.030213680118322372, + -0.011682713404297829, + 0.021100757643580437, + -0.006977081764489412, + 0.011350471526384354, + 0.002771508414298296, + -0.0021544876508414745, + -0.0011908164015039802, + 0.002208731137216091, + -0.009126484394073486, + 0.009614676237106323, + 0.01156744547188282, + 0.026497993618249893, + 0.010814815759658813, + -0.007614444009959698, + -0.004183536861091852, + 0.004631046671420336, + -0.013310021720826626, + 0.012164125218987465, + 0.01151320245116949, + -0.010638524778187275, + 0.011601348407566547, + 0.005675235763192177, + -0.01756136305630207, + -0.003600418334826827, + -0.015120401047170162, + 0.00857726763933897, + 0.014116894453763962, + -0.023636644706130028, + -0.009411263279616833, + -0.017615607008337975, + -0.0035834673326462507, + 0.019866716116666794, + -0.0008284861105494201, + 0.016422247514128685, + 0.001973110716789961, + -0.0020849881693720818, + 0.017913946881890297, + -0.0015603507636114955, + -0.0056243822909891605, + -0.023568840697407722, + 0.014144016429781914, + -0.0014060955727472901, + -0.05972219258546829, + -0.009004436433315277, + -0.005231116432696581, + -0.009289215318858624, + 0.0049734595231711864, + 0.043286386877298355, + -0.013723628595471382, + 0.031461283564567566, + 0.025765705853700638, + -0.0003477098944131285, + -0.0053701153956353664, + -0.015256009995937347, + -0.0012170906411483884, + 0.01249636709690094, + -0.022538213059306145, + -0.0060685016214847565, + -0.020043008029460907, + 0.007187275681644678, + 0.01190646830946207, + -0.00035406657843850553, + 0.029155930504202843, + 0.007580542005598545, + -0.008760340511798859, + 0.052995987236499786, + -0.021900849416851997, + -0.013743969611823559, + 0.012137003242969513, + -0.003810612251982093, + -0.025223270058631897, + 0.017317267134785652, + 0.018673356622457504, + 0.024924930185079575, + 0.008428097702562809, + -4.2642666812753305e-5, + -0.009445165283977985, + 0.004264902323484421, + -0.0074652740731835365, + -0.030132316052913666, + 0.009153606370091438, + -0.013743969611823559, + 0.018958134576678276, + -0.05172126367688179, + -0.04095391184091568, + 0.0021799143869429827, + 0.006400743965059519, + 0.01716809719800949, + 0.002061256440356374, + 0.015459423884749413, + 0.010869059711694717, + -0.019514132291078568, + 0.005231116432696581, + 0.011621689423918724, + -0.030267924070358276, + 0.029454270377755165, + 0.01849706470966339, + -0.011106375604867935, + 0.029454270377755165, + -0.01783258095383644, + -0.00256131449714303, + -0.009085801430046558, + -0.0013230351032689214, + -0.01016389299184084, + -0.0004407291708048433, + 0.03843158483505249, + -0.01686975732445717, + -0.01969042420387268, + 0.047788605093955994, + -0.016123907640576363, + 0.01928359642624855, + -0.00654991390183568, + -0.01714097522199154, + 0.012984559871256351, + 0.007614444009959698, + -0.00504804402589798, + 0.024029910564422607, + -0.009994382038712502, + 0.006346500013023615, + 0.00024791015312075615, + 0.022931478917598724, + 0.039814796298742294, + 0.015079718083143234, + -0.0028511788696050644, + 0.007268641144037247, + 0.016598539426922798, + -0.002444351790472865, + 0.015906933695077896, + -0.020151494070887566, + 0.009926577098667622, + -0.03951645642518997, + 0.031054455786943436, + 0.013547336682677269, + 0.010808035731315613, + -0.013235436752438545, + -0.004431023262441158, + -0.02499273419380188, + 0.020653247833251953, + 0.016178151592612267, + 0.012353978119790554, + -0.011608128435909748, + -0.0036444913130253553, + -0.012394661083817482, + 0.04591720178723335, + 0.035692282021045685, + 0.0012348892632871866, + -0.004556461703032255, + -0.020382029935717583, + -0.005505724344402552, + 0.0012569257523864508, + 0.018049554899334908, + 0.027081113308668137, + 0.009818090125918388, + -0.013954163528978825, + 0.01754780113697052, + -0.0008941717096604407, + 0.022768747061491013, + 0.015866249799728394, + -0.000927226385101676, + 0.015025475062429905, + 0.010482573881745338, + -0.007377128582447767, + -0.005132799968123436, + -0.01620527356863022, + -0.009994382038712502, + 0.02606404572725296, + -0.009607896208763123, + -0.009221410378813744, + -0.01646292954683304, + 0.0038953679613769054, + -0.019188670441508293, + -7.749841461190954e-5, + -0.0010908046970143914, + 0.02312133088707924, + -0.000579728395678103, + -0.002556229243054986, + 0.017330827191472054, + -0.01916154846549034, + 0.040492840111255646, + -0.00013910514826420695, + 0.0014925462892279029, + 0.02236192114651203, + -0.0179275069385767, + 0.008082294836640358, + -0.042228635400533676, + 0.01023847796022892, + -0.03802475705742836, + -0.014374551363289356, + 0.016056103631854057, + 0.024138398468494415, + 0.014442356303334236, + -0.009865553118288517, + 0.012143784202635288, + 0.0004907349939458072, + 0.01807667687535286, + -0.009519750252366066, + -0.05104321986436844, + -0.048195432871580124, + 0.020436273887753487, + -0.005227725952863693, + -0.018008872866630554, + -0.02205001935362816, + 0.005739650223404169, + -0.0059634046629071236, + 0.0026460702065378428, + -0.006936399266123772, + -0.010794474743306637, + -0.012950657866895199, + 0.001754441182129085, + -0.023216256871819496, + -0.009743505157530308, + -0.003827563486993313, + 0.020680369809269905, + -0.01116739958524704, + 0.030945969745516777, + -0.017100293189287186, + 0.011147057637572289, + 0.035827893763780594, + -0.025046978145837784, + -0.007451713550835848, + -0.00542435934767127, + 0.010950424708425999, + -0.005431139841675758, + -0.0033207249362021685, + 0.0007628005114383996, + -0.00030956987757235765, + -0.0017713923007249832, + 0.009567213244736195, + 0.01109281461685896, + -0.01941920630633831, + -0.010936863720417023, + 0.002895251614972949, + 0.009743505157530308, + -0.0035868575796484947, + 0.014632209204137325, + 0.0020595614332705736, + 0.02964412234723568, + 0.008828144520521164, + -0.011655591428279877, + -0.028396520763635635, + 0.014388112351298332, + 0.003015604568645358, + 0.003617369569838047, + 0.0005398932262323797, + -0.014686452224850655, + 0.02670140750706196, + -0.009492628276348114, + 0.017195219174027443, + 0.001515430398285389, + -0.01928359642624855, + -0.01928359642624855, + -0.0002246023650513962, + -0.009682481177151203, + -0.008028051815927029, + -0.013133729808032513, + -0.008617950603365898, + -0.004512388724833727, + -0.023555278778076172, + 0.0024002790451049805, + 0.006312598008662462, + -0.025684339925646782, + 0.02365020662546158, + -0.021480461582541466, + -0.010889400728046894, + 0.019988764077425003, + -0.012672659009695053, + 0.004336097277700901, + 0.02072105184197426, + -0.0064549874514341354, + -0.018008872866630554, + -0.012218369171023369, + -0.021629631519317627, + 0.004905655048787594, + 0.011967492289841175, + -0.005173482466489077, + -0.022782308980822563, + 0.01317441277205944, + -0.010367306880652905, + 0.020178616046905518, + 0.017737654969096184, + 0.0026409849524497986, + -0.025182588025927544, + 0.02474863827228546, + 0.005109068471938372, + -0.03870280086994171, + 0.0075059570372104645, + 0.02301284298300743, + -0.0017095207003876567, + 0.014632209204137325, + -0.029047442600131035, + 0.004000464919954538, + 0.0199345201253891, + -0.04944303259253502, + 0.015323814935982227, + -0.0015603507636114955, + 0.0014849182916805148, + -0.00950618926435709, + -0.0006157495081424713, + -0.0045089987106621265, + -0.008536585606634617, + -0.01329646073281765, + 0.009445165283977985, + 0.015445862896740437, + 0.00434965780004859, + -0.0036851740442216396, + 0.04163195565342903, + -0.0063431099988520145, + 0.01581200771033764, + 0.009160386398434639, + 0.01967686228454113, + -0.01646292954683304, + 0.018985256552696228, + 0.010719889774918556, + -0.01237431913614273, + 0.028260910883545876, + -0.009458726271986961, + -0.0049192155711352825, + -0.017588485032320023, + -0.020639685913920403, + 0.029752610251307487, + -0.008882388472557068, + 0.028152424842119217, + -0.0052141654305160046, + -0.004936167038977146, + -0.01874116063117981, + -0.001048426958732307, + 0.015934055671095848, + 0.02393498457968235, + 0.013323581777513027, + -0.006054941099137068, + 0.0015781495021656156, + 0.011892907321453094, + 0.00010504398960620165, + 0.007221178151667118, + -0.0059769656509160995, + -0.0045937541872262955, + 0.005759991239756346, + -0.02408415451645851, + 0.0028054106514900923, + 0.02049051597714424, + -0.003824173239991069, + 0.0031952864956110716, + -0.01807667687535286, + -0.015459423884749413, + -0.0021561826579272747, + 0.04033011198043823, + -0.04862938076257706, + 0.02245684713125229, + 0.03200371935963631, + -0.005346383899450302, + 0.015635715797543526, + 0.02287723496556282, + 0.007634785491973162, + -0.008923070505261421, + -0.012991339899599552, + -0.024151958525180817, + -0.0028291423805058002, + 0.00654991390183568, + 0.005427749361842871, + 0.013994846493005753, + -0.038241732865571976, + 0.008997655473649502, + -0.00043606761028058827, + -0.015757763758301735, + -0.004312365315854549, + -0.0049463375471532345, + 0.012855730950832367, + -0.014144016429781914, + 0.01956837624311447, + 0.026430189609527588, + -0.02233479917049408, + 0.03927236050367355, + -0.011316569522023201, + 0.01686975732445717, + 0.024640152230858803, + 0.019609058275818825, + 0.0071601541712880135, + 0.007621224503964186, + -0.02619965560734272, + 0.013126948848366737, + 0.008014490827918053, + -0.0007085569086484611, + 0.0020782076753675938, + -0.004970069043338299, + -0.018388576805591583, + -0.009214630350470543, + -0.02672852948307991, + -0.02341967076063156, + -0.00025320739950984716, + -0.011194521561264992, + 0.019310718402266502, + -0.004325926303863525, + -0.013899920508265495, + 0.015039036050438881, + 0.014049090445041656, + 0.013059144839644432, + -0.008224684745073318, + 0.01330324076116085, + 0.007431372068822384, + 0.012075979262590408, + -0.010489354841411114, + -0.020843099802732468, + -0.031976595520973206, + -0.007458494044840336, + 0.026647163555026054, + 0.021371975541114807, + -0.008685755543410778, + -0.007600883487612009, + -0.021453339606523514, + -0.006936399266123772, + 0.006407524459064007, + -0.00044666207395493984, + 6.49439898552373e-5, + 0.029454270377755165, + 0.005207384936511517, + 0.0136422635987401, + -0.005885429680347443, + 0.0057226987555623055, + 0.010950424708425999, + -0.005410798359662294, + -0.00764156598597765, + 0.004705631639808416, + 0.009004436433315277, + -0.009797749109566212, + 0.010150332003831863, + 0.0021629631519317627, + -0.012503148056566715, + 0.02035490795969963, + 0.013086266815662384, + 0.006570254918187857, + 0.0166120994836092, + 0.005051434505730867, + -0.00434965780004859, + 0.006143086589872837, + 0.012801487930119038, + -0.007180495653301477, + -0.013343923725187778, + -0.01536449696868658, + 0.0038919777143746614, + -0.0037767100147902966, + 0.016273077577352524, + -0.0018154651625081897, + -0.0034207364078611135, + -0.025874193757772446, + -0.003280042205005884, + 0.010909742675721645, + 0.03550243005156517, + -0.00349193112924695, + 0.03523121401667595, + 0.044344134628772736, + -0.004536120221018791, + 0.016137467697262764, + -0.04881923273205757, + 0.007458494044840336, + -0.005197213962674141, + -0.02021929807960987, + 0.028098180890083313, + 0.004949727561324835, + 0.022416165098547935, + -0.0139677245169878, + 0.020571881905198097, + 0.0008056021179072559, + -0.01368972659111023, + 0.005932892672717571, + -0.004766655620187521, + -0.056847285479307175, + -0.02034134604036808, + -0.024368934333324432, + -0.007004203740507364, + -0.014808500185608864, + -0.004105561878532171, + -0.024911370128393173, + 0.024436738342046738, + -0.007689028978347778, + -0.01237431913614273, + 0.015025475062429905, + 0.024938492104411125, + 0.024965612217783928, + 0.006071892101317644, + -0.03045777603983879, + -0.03205796331167221, + -0.015025475062429905, + 0.016313759610056877, + 0.0020849881693720818, + -0.0015450947685167193, + 0.0016154419863596559, + -0.004037757404148579, + -0.019744668155908585, + -0.011275886557996273, + 0.01156066544353962, + -0.0006572797428816557, + 0.02046339586377144, + -0.05039229616522789, + -0.0173037052154541, + -0.009757066145539284, + 0.004675119649618864, + -0.024151958525180817, + -0.034119218587875366, + -0.014279625378549099, + -0.011960712261497974, + 0.016001859679818153, + 0.008692535571753979, + -0.023202696815133095, + -0.010963985696434975, + 4.828421151614748e-5, + 0.026565799489617348, + -0.002785069402307272, + -0.005261628422886133, + 0.011669152416288853, + 0.010536817833781242, + -0.00032948743319138885, + -0.004376779776066542, + 0.002759642666205764, + 0.017059609293937683, + 0.0035597356036305428, + -0.0199345201253891, + -0.017195219174027443, + 0.03740095719695091, + -0.005275189410895109, + 0.022633139044046402, + 0.013594800606369972, + -0.0139677245169878, + -0.011947151273488998, + -0.021887289360165596, + -0.03151552751660347, + -0.007187275681644678, + -0.00937736127525568, + -0.016788391396403313, + -0.024165520444512367, + 0.022768747061491013, + -0.004997191019356251, + 0.021982215344905853, + -0.013432069681584835, + 0.009851992130279541, + -0.017656289041042328, + 0.028667738661170006, + -0.011920029297471046, + -0.006810960825532675, + -0.010516475886106491, + 0.029210174456238747, + -0.0013026937376707792, + -0.018035994842648506, + 0.04320501908659935, + 0.012265832163393497, + 0.016449369490146637, + -0.009397702291607857, + 0.015174644999206066, + -0.026267459616065025, + 0.024924930185079575, + 0.02737945318222046, + -0.030512019991874695, + -0.015310253947973251, + -0.008794242516160011, + 0.009241752326488495, + 0.0028460933826863766, + 0.012659098021686077, + -0.01913442648947239, + -0.01715453527867794, + -0.0359363779425621, + -0.012970998883247375, + -0.008000929839909077, + 0.010835157707333565, + 0.029725488275289536, + 0.02101939171552658, + -0.004061488900333643, + 0.010062186047434807, + 0.0017298620659857988, + 0.02074817381799221, + 0.02059900388121605, + 0.0265929214656353, + -0.02511478215456009, + -0.01874116063117981, + 0.0007013526628725231, + -0.0067160348407924175, + 0.013120168820023537, + -0.015649275854229927, + 0.026172533631324768, + 0.0021494023967534304, + -0.022958600893616676, + -0.0071737151592969894, + -0.013011681847274303, + 0.005112458486109972, + 0.008272147737443447, + -0.0074991765432059765, + -0.0015976432478055358, + -0.026240337640047073, + 0.0049531180411577225, + -0.0017900385428220034, + 0.005539626814424992, + 0.0005038721137680113, + 0.0016493442235514522, + 0.0034563338849693537, + 0.003283432452008128, + 0.0016459539765492082, + 0.011716615408658981, + -0.013954163528978825, + 0.0015493326354771852, + 0.011940370313823223, + -0.0064346459694206715, + 0.012455685064196587, + -0.005892210174351931, + -0.018402138724923134, + -0.012048858217895031, + 0.008672194555401802, + -0.010313062928617, + -0.0023833278100937605, + -0.0016730758361518383, + -0.0037597590126097202, + -0.007275421638041735, + 0.006417694967240095, + -0.018415698781609535, + 0.003022385062649846, + -0.01954125426709652, + -0.00970282219350338, + 0.012035297229886055, + 0.024382494390010834, + 0.01649005152285099, + 0.028125302866101265, + 0.004522559233009815, + -0.008814583532512188, + -0.0053701153956353664, + -0.0060888431034982204, + -0.01715453527867794, + -0.0045598517172038555, + -0.0025291074998676777, + -0.01315407082438469, + -0.010197794996201992, + -0.007424591574817896, + 0.07821925729513168, + -0.020314225926995277, + 0.0021171951666474342, + 0.01057750079780817, + 0.019595498219132423, + -0.02484356425702572, + 0.0012196332681924105, + 0.013343923725187778, + 0.021466901525855064, + -0.019310718402266502, + -0.014211821369826794, + -0.017507119104266167, + 0.0035427846014499664, + 0.0033936146646738052, + -0.006678742356598377, + 0.017751215025782585, + 0.006044770125299692, + 0.04437125846743584, + -0.0265929214656353, + -0.005088726989924908, + 0.0069838622584939, + 0.002417230047285557, + -0.007756833452731371, + -0.010319842956960201, + -0.0029867878183722496, + 0.005705747753381729, + 0.023039964959025383, + 0.028911834582686424, + 0.010204575955867767, + -0.0006606699898838997, + -0.002705399179831147, + 0.009092582389712334, + -0.027596427127718925, + -0.00958077423274517, + 0.003488540882244706, + 0.007187275681644678, + -0.015405179932713509, + -0.0079805888235569, + -0.00884170550853014, + 0.005682016257196665, + -0.007695809472352266, + -0.006855033803731203, + 0.01256417203694582, + 0.004668339155614376, + -0.011262325569987297, + 0.01017067302018404, + -0.019514132291078568, + -0.0003002467565238476, + 0.0056311627849936485, + -0.03230205923318863, + -0.009248532354831696, + 0.012381100095808506, + 0.015527227893471718, + 0.00937736127525568, + 0.015201766975224018, + -0.004729363135993481, + 0.0116420304402709, + 0.0071398126892745495, + -0.017574923112988472, + -0.0019171719904989004, + -0.005841356702148914, + -0.000700928911101073, + -0.018130920827388763, + -0.023840058594942093, + -0.0051565314643085, + -0.017859702929854393, + -0.003149518510326743, + -0.0017883434193208814, + -0.009397702291607857, + 0.0013696507085114717, + -0.008923070505261421, + 0.01116739958524704, + 0.016408685594797134, + -0.0024799492675811052, + -0.021222805604338646, + 0.020504077896475792, + 0.013479532673954964, + -0.002796935150399804, + -0.003512272611260414, + -0.0027206551749259233, + -0.005559968296438456, + 0.0006424475577659905, + -0.020029446110129356, + -0.02153470553457737, + -0.008733218535780907, + 0.009709603153169155, + 0.007817857898771763, + -0.031325675547122955, + 0.013194753788411617, + -0.03379375860095024, + -0.007424591574817896, + 0.011838664300739765, + -0.026837017387151718, + 0.024138398468494415, + 0.0020476956851780415, + 0.005675235763192177, + 0.0014128760667517781, + 0.013208314776420593, + -0.0012509928783401847, + -0.009641798213124275, + -0.018659794703125954, + 0.020775295794010162, + -0.01016389299184084, + 0.0009170557023026049, + -0.009085801430046558, + -0.004624266177415848, + 0.024233324453234673, + 0.006817741319537163, + -0.0071601541712880135, + 0.00876712054014206, + -0.010421549901366234, + -0.020558321848511696, + -0.02538600005209446, + -0.012808267958462238, + 0.007044886238873005, + 0.0166120994836092, + 0.015771323814988136, + -0.004929386544972658, + -0.011614909395575523, + -0.021968655288219452, + 0.001383211580105126, + 0.005505724344402552, + 0.010814815759658813, + -0.016056103631854057, + 0.009275654330849648, + 0.010428330861032009, + -0.014876305125653744, + -0.011682713404297829, + -0.020653247833251953, + -0.0024307910352945328, + 0.01979891024529934, + 0.026009801775217056, + -0.013852457515895367, + 0.002934239339083433, + -0.013723628595471382, + 0.0007882271893322468, + -0.025969119742512703, + -0.010489354841411114, + 0.012774365954101086, + -0.010218136943876743, + 0.011323349550366402, + -0.006502450443804264, + 0.001988366711884737, + 0.016801953315734863, + 0.003803831757977605, + 0.00582101522013545, + -0.011594567447900772, + -0.0030664580408483744, + 0.005770162213593721, + -0.006855033803731203, + 0.01516108401119709, + -0.0199345201253891, + -0.011723396368324757, + 0.007655126973986626, + -0.013540556654334068, + 0.008658633567392826, + -0.013255777768790722, + -0.009729944169521332, + -0.0060040876269340515, + 0.0015628935070708394, + 0.013059144839644432, + 0.006027819123119116, + -0.013201533816754818, + -0.01084871869534254, + 0.0067024738527834415, + -0.008089075796306133, + -0.0023816328030079603, + -0.003600418334826827, + 0.014076212421059608, + -0.002807105891406536, + 0.015459423884749413, + -0.0056718457490205765, + -0.011262325569987297, + -0.015649275854229927, + -0.007058447226881981, + 0.018971696496009827, + -0.01703248731791973, + 0.011282667517662048, + -0.014794939197599888, + 0.013628702610731125, + 0.021222805604338646, + -0.015459423884749413, + 0.006509230937808752, + 0.012191247195005417, + 0.0028850811067968607, + -0.006834692321717739, + 0.0007594102644361556, + 0.006288866512477398, + -0.011770859360694885, + 0.0010238478425890207, + -0.030512019991874695, + 0.007051666732877493, + 0.007824637927114964, + -0.005481992848217487, + 0.00028117673355154693, + 0.0033444564323872328, + 0.01795462891459465, + 0.025101222097873688, + 0.029427148401737213, + 0.0012060723965987563, + 0.008462000638246536, + -0.00211210991255939, + 0.01461864821612835, + -0.003725856775417924, + -0.010557158850133419, + -0.01594761572778225, + -0.026158971711993217, + -0.009079021401703358, + -0.016937561333179474, + -0.003410565899685025, + -0.04469671845436096, + -0.013560897670686245, + 0.009980821050703526, + 0.0007615291979163885, + -0.010068967007100582, + 0.002569790231063962, + 0.022660261020064354, + -0.013615141622722149, + 0.028803346678614616, + 0.01863267458975315, + 0.02192797139286995, + 0.01016389299184084, + 0.0007572913891635835, + -0.01170305535197258, + -0.002930849092081189, + -0.002696923678740859, + 0.010597841814160347, + -0.0006076977588236332, + 0.008787461556494236, + -0.017737654969096184, + -0.0007178800296969712, + -0.01582556776702404, + 0.00024049404601100832, + -0.0074923960492014885, + 0.016666343435645103, + 0.03162401542067528, + 0.016395125538110733, + -0.011018229648470879, + -0.002322303829714656, + 0.0004542900715023279, + 0.00721439765766263, + -0.0008513701031915843, + -0.019880276173353195, + -0.014727135188877583, + 0.002200255636125803, + -0.0034173461608588696, + 0.00010912284778896719, + 0.008821364492177963, + -0.0239485464990139, + -2.7678004698827863e-5, + 0.007960246875882149, + 0.003912318963557482, + 0.00989945512264967, + -0.005376895889639854, + 0.003946221433579922, + 0.018388576805591583, + 0.012815048918128014, + 0.01836145669221878, + 0.010814815759658813, + -0.005536236800253391, + 0.0028223618865013123, + 0.017208779230713844, + 0.009641798213124275, + -0.014293186366558075, + -0.014388112351298332, + 0.018388576805591583, + -0.03148840367794037, + 0.01635444350540638, + -0.012164125218987465, + 0.02487068623304367, + -0.011797981336712837, + 0.01886320859193802, + 0.000699233787599951, + 0.005980356130748987, + 0.0007886509411036968, + 0.008685755543410778, + 0.002691838191822171, + -0.037672173231840134, + -0.006929618772119284, + -0.019717546179890633, + -0.0004432718560565263, + 0.0024562175385653973, + 0.009858773089945316, + -0.022307677194476128, + -0.009153606370091438, + -0.004702241159975529, + -0.02156182751059532, + 0.02766423113644123, + -0.016123907640576363, + -0.01377109158784151, + -0.004034366924315691, + 0.006956740748137236, + -0.0021527926437556744, + 0.014401673339307308, + 0.0033122492022812366, + -0.02845076471567154, + 0.012048858217895031, + 0.008902729488909245, + -0.0006382097490131855, + -0.006956740748137236, + -0.011777639389038086, + 0.02767779305577278, + 0.0020087079610675573, + -0.015147523023188114, + 0.007756833452731371, + 0.012930315919220448, + 0.006271915510296822, + -0.015527227893471718, + -0.002907117595896125, + 0.0063363295048475266, + 0.018727600574493408, + 0.008726437576115131, + -0.0505550280213356, + -0.015771323814988136, + -0.011797981336712837, + -0.01650361344218254, + 0.008000929839909077, + 0.0083060497418046, + -0.027447257190942764, + -0.01011642999947071, + 0.0022494138684123755, + 0.009621457196772099, + 0.011180960573256016, + 0.005431139841675758, + 0.011079253628849983, + -0.011262325569987297, + 0.025169026106595993, + 0.000290287978714332, + 0.017574923112988472, + 0.004295414313673973, + -0.0064143044874072075, + 0.0023934985511004925, + -0.025480927899479866, + 0.0052650184370577335, + -0.002318913582712412, + 0.009729944169521332, + -0.0060888431034982204, + -0.01182510331273079, + -0.009594335220754147, + -0.009946919046342373, + -0.012347197160124779, + -0.029318660497665405, + -0.0030664580408483744, + -0.0049395570531487465, + 0.003519053105264902, + 0.006797400303184986, + 0.009241752326488495, + 0.012109882198274136, + 0.01342528872191906, + 0.01743931509554386, + 0.009994382038712502, + -0.009851992130279541, + 0.017086731269955635, + 0.02271450310945511, + -0.030023828148841858, + 0.0003962324990425259, + -0.0038953679613769054, + 0.0006483804318122566, + -0.007363567594438791, + -0.005183653440326452, + -0.02872198261320591, + 0.009879114106297493, + -0.013994846493005753, + -0.010787694714963436, + 0.021195683628320694, + 0.005529456306248903, + 0.005712528247386217, + 0.001959549728780985, + -0.018117358908057213, + -0.015771323814988136, + -0.0035326138604432344, + -0.031325675547122955, + -0.0009077325812540948, + -0.008414536714553833, + -0.006665181368589401, + 0.023351866751909256, + -0.0016629050951451063, + 0.025209710001945496, + -0.008855266496539116, + 0.005536236800253391, + -0.0017035878263413906, + 0.008156879805028439, + -0.01124198455363512, + -0.009153606370091438, + 0.0023273890838027, + 0.03466165438294411, + -0.001046731835231185, + 0.006309207528829575, + 0.0023782425560057163, + -0.014957670122385025, + 0.0034427728969603777, + -0.018510624766349792, + 0.017222341150045395, + -0.006651620380580425, + 0.019880276173353195, + -0.005332822911441326, + -0.009004436433315277, + 0.014740696176886559, + -0.002781679155305028, + -0.010713109746575356, + 0.007804296910762787, + -0.01677483133971691, + -0.007010984234511852, + -0.005444700364023447, + -0.006949960254132748, + -0.023718010634183884, + 0.003108835779130459, + 0.00032906365231610835, + 0.021073635667562485, + -0.0126387570053339, + 0.006197330541908741, + 0.005302310921251774, + 0.0008823059033602476, + 0.009790968149900436, + 0.012930315919220448, + 0.0010891095735132694, + 0.019595498219132423, + 0.0009340068208985031, + 0.0014891561586409807, + 0.004125903360545635, + 0.008909509517252445, + 0.009051899425685406, + 0.012157345190644264, + -0.010353745892643929, + 0.009885894134640694, + -0.004892094060778618, + 0.02378581464290619, + 0.0018951355013996363, + 0.008543365634977818, + 0.022822991013526917, + 0.016666343435645103, + 0.008021270856261253, + 0.0026850576978176832, + 0.002908812602981925, + -0.0152831319719553, + -0.009601116180419922, + 0.01886320859193802, + -0.023365426808595657, + -0.01716809719800949, + 0.02447742037475109, + -0.005058214999735355, + -0.0041428543627262115, + 0.01673414744436741, + 0.00411573238670826, + 0.008828144520521164, + 0.03520409017801285, + 0.0041428543627262115, + 0.005654894281178713, + 0.0079805888235569, + -0.006556693930178881, + 0.006112574599683285, + 0.014021968469023705, + 0.015228888019919395, + -0.028640616685152054, + -0.003908928949385881, + -0.01846994273364544, + 0.0021409266628324986, + 0.0039021484553813934, + 0.01902594044804573, + -0.03268176317214966, + -0.004997191019356251, + -0.0031969817355275154, + 0.015066158026456833, + 0.006522791925817728, + -0.002546058502048254, + 0.026552237570285797, + 0.009411263279616833, + -0.0028410081285983324, + -0.0027494721580296755, + 0.0036817837972193956, + -0.006499060429632664, + 0.0015484850155189633, + 0.00996726006269455, + -4.5768028940074146e-5, + -0.006831302307546139, + 0.005492163822054863, + -0.0345531664788723, + 0.010855498723685741, + -0.007275421638041735, + 0.0012145478976890445, + -0.018171602860093117, + -0.007329665124416351, + -0.011472519487142563, + -0.0003648729179985821, + 0.013879578560590744, + -0.0007208464667201042, + -0.02487068623304367, + 0.01422538235783577, + -0.0028647396247833967, + 0.011011448688805103, + 0.010835157707333565, + 0.00029516141512431204, + 0.003488540882244706, + 0.0018324162811040878, + 0.008834924548864365, + 0.003020690055564046, + -0.022158507257699966, + 0.024775760248303413, + -0.004641217179596424, + 0.01982603222131729, + -0.003817392745986581, + -0.015866249799728394, + -0.009655359201133251, + 0.02180592343211174, + 0.015120401047170162, + -0.009526531212031841, + -0.005061605013906956, + -0.010353745892643929, + -0.010787694714963436, + 0.013160851784050465, + 0.009065460413694382, + -0.011953931301832199, + -0.008807803504168987, + -0.011730176396667957, + -0.009716383181512356, + 0.010889400728046894, + 0.011228423565626144, + 0.00957399420440197, + 0.02245684713125229, + 0.011086033657193184, + 0.0004898874321952462, + 0.003266481216996908, + 0.003229188732802868, + -0.016300199553370476, + -0.0016188322333618999, + 0.0359092578291893, + 0.01606966368854046, + 0.007200836669653654, + 2.457912705722265e-5, + 0.0052717989310622215, + -0.02381293661892414, + 0.021100757643580437, + 0.007377128582447767, + -0.013825335539877415, + -0.0059973071329295635, + -0.006105794105678797, + 0.0067668878473341465, + -0.0031732500065118074, + -0.001057750079780817, + -0.00014101214765105397, + -0.00803483184427023, + -0.012415002100169659, + 0.015567910857498646, + 0.008000929839909077, + -0.017588485032320023, + -0.016286637634038925, + 0.004478486720472574, + -0.002886776113882661, + -0.028098180890083313, + -0.009865553118288517, + -0.03015943616628647, + 0.011730176396667957, + 0.01914798840880394, + 0.02713535726070404, + 0.004268292803317308, + -0.01124198455363512, + -0.0009975736029446125, + 0.00578372273594141, + 0.01516108401119709, + 0.015662837773561478, + 0.0015340765239670873, + -0.027325209230184555, + -0.004251341335475445, + -0.005834576208144426, + -0.0075127375312149525, + 0.008638291619718075, + -0.004824289586395025, + 0.01887677051126957, + -0.0024918150156736374, + -0.014184699393808842, + -0.009763846173882484, + 0.0010891095735132694, + -0.025711461901664734, + 0.0008428945438936353, + 0.007844979874789715, + 0.007872100919485092, + 0.000584813707973808, + -0.007255080156028271, + 0.02645731158554554, + 0.00877390056848526, + 0.014469478279352188, + -0.009668920189142227, + 0.021995777264237404, + -0.008611170575022697, + 0.012191247195005417, + -0.0015628935070708394, + -0.002098548924550414, + 0.0020849881693720818, + -0.000814077677205205, + -0.01349309366196394, + 0.020029446110129356, + -0.002334169577807188, + -0.007329665124416351, + -0.021968655288219452, + 0.00658720638602972, + -0.018808964639902115, + -0.01916154846549034, + 0.0004538662906270474, + -0.007851759903132915, + -0.03512272611260414, + 0.00255961949005723, + 0.004675119649618864, + 0.0034156511537730694, + 0.0031918962486088276, + 0.005000581033527851, + -0.01521532703191042, + 0.007221178151667118, + 0.017181657254695892, + 0.006254964042454958, + -0.0023680718149989843, + -0.0036851740442216396, + -0.01715453527867794, + 0.04811406508088112, + 0.0025392782408744097, + 0.014130455441772938, + -0.009418043307960033, + 0.0292372964322567, + -0.010068967007100582, + 0.027338769286870956, + 0.004322536289691925, + -0.016517173498868942, + -0.01714097522199154, + 0.005573528818786144, + -0.006261744536459446, + 0.002073122188448906, + -0.0016052712453529239, + 0.009750285185873508, + 0.012109882198274136, + 0.0023104380816221237, + -0.01555434986948967, + -0.005678625777363777, + 0.0071398126892745495, + 0.01834789477288723, + -0.02488424815237522, + -0.02365020662546158, + -0.017195219174027443, + -0.006851643789559603, + 0.028260910883545876, + -0.00844843965023756, + -0.0312443096190691, + 0.014144016429781914, + -0.01890389248728752, + -0.0071737151592969894, + -0.02115500159561634, + -0.012828608974814415, + 0.009682481177151203, + 0.02912880852818489, + -0.009838431142270565, + -0.0035360041074454784, + 0.0008738303440622985, + -0.00884170550853014, + 0.003908928949385881, + -0.021331291645765305, + 0.00943160429596901, + -0.009079021401703358, + -0.008516243658959866, + 0.01899881847202778, + -0.011187740601599216, + 0.017615607008337975, + 0.0007055904716253281, + -0.006617718376219273, + -0.023351866751909256, + 0.01302524283528328, + 0.00581762520596385, + 0.02431469038128853, + -0.0032105424907058477, + 0.008550146594643593, + 0.012604855000972748, + 0.0017866482958197594, + -0.0071465931832790375, + -0.002913897857069969, + 0.012815048918128014, + -0.017371511086821556, + -0.0029494953341782093, + 0.0028274471405893564, + -0.004308975301682949, + 0.007878881879150867, + -0.02218562923371792, + 0.006726205348968506, + -0.03354966267943382, + 0.009065460413694382, + 0.017385071143507957, + -0.023433230817317963, + -0.0049598985351622105, + -1.0779854164866265e-5, + 0.012062418274581432, + -0.01269300002604723, + -0.03604486584663391, + -0.012320076115429401, + 0.011445397511124611, + -0.021114317700266838, + -0.0056650652550160885, + -0.014903427101671696, + 0.008597609587013721, + 0.0006352433119900525, + -0.0030918847769498825, + -0.026131849735975266, + -0.005576919298619032, + -0.012306515127420425, + 0.0013281204737722874, + -0.011425056494772434, + -0.01807667687535286, + 0.012509928084909916, + 0.011397934518754482, + 0.007756833452731371, + -0.005400627385824919, + 0.01256417203694582, + 0.016313759610056877, + -0.008597609587013721, + -0.016693465411663055, + 0.00025024093338288367, + 0.011892907321453094, + 0.012530270032584667, + 0.0025053760036826134, + -0.013472751714289188, + -0.026036923751235008, + -0.0035224431194365025, + -0.014103333465754986, + -0.017900384962558746, + 0.004641217179596424, + -0.0007708523189648986, + 0.0024850345216691494, + 0.021914411336183548, + 0.007573761511594057, + -0.0008738303440622985, + -0.010869059711694717, + 0.010543597862124443, + 0.012211588211357594, + -0.02139909751713276, + 0.006034599617123604, + 0.02657935954630375, + 0.009424824267625809, + -0.02858637273311615, + -0.0002597759594209492, + -0.026091167703270912, + -0.026755651459097862, + 0.013811774551868439, + -0.005495553836226463, + 0.015310253947973251, + 0.00977062713354826, + -0.03615335375070572, + -0.0005403170362114906, + 0.014103333465754986, + 0.006217671558260918, + 0.011547104455530643, + 0.004295414313673973, + -0.017520681023597717, + -0.011594567447900772, + -0.005641333758831024, + 0.020015886053442955, + -0.006658400874584913, + -0.020585443824529648, + 0.030512019991874695, + -0.007750052958726883, + 0.00445814523845911, + -0.012598074041306973, + 0.01102500967681408, + 0.004095391370356083, + 0.0013467667158693075, + 0.015039036050438881, + 0.0016959598287940025, + -0.02023285999894142, + -0.014483039267361164, + 0.0037868807557970285, + -0.008360293693840504, + -0.012021736241877079, + 0.012984559871256351, + 0.003959782421588898, + -0.023745132610201836, + 0.015337375923991203, + 0.0024833395145833492, + -0.0159611776471138, + -0.006526181939989328, + 0.00020489668531809002, + 0.003624150063842535, + -0.02007012814283371, + 0.005163311958312988, + -0.0010992803145200014, + 0.010428330861032009, + 0.015011914074420929, + 0.0004551376332528889, + 0.01836145669221878, + -0.012476026080548763, + 0.011553885415196419, + -0.03243766725063324, + -0.020165055990219116, + -0.002890166360884905, + -0.011608128435909748, + 0.025847071781754494, + 0.003413956146687269, + -0.007051666732877493, + -0.019609058275818825, + -0.009268873371183872, + 0.0016849415842443705, + 0.010760572738945484, + 0.00838063471019268, + -0.0008636596612632275, + -0.0021222804207354784, + -0.008984094485640526, + -0.004285243805497885, + 0.020110812038183212, + 0.023772254586219788, + -0.0028732153587043285, + -0.001849367399699986, + -0.025508049875497818, + 0.010306281968951225, + -0.002215511631220579, + 0.013147290796041489, + -0.008516243658959866, + 0.018035994842648506, + 0.008977314457297325, + -0.017479997128248215, + -0.006841472815722227, + -0.011079253628849983, + 0.007072008214890957, + 0.008265367709100246, + 0.006387182977050543, + -0.0037733197677880526, + 0.0021205854136496782, + 0.002922373590990901, + -0.026416629552841187, + 0.01848350465297699, + -0.02766423113644123, + -0.015256009995937347, + -0.0531587190926075, + -0.009282434359192848, + 0.0010797864524647593, + 0.0139677245169878, + 0.006539742927998304, + 0.02271450310945511, + -0.001749355811625719, + -0.005827795714139938, + -0.018795404583215714, + -0.0011314874282106757, + -0.002118890406563878, + -0.018646234646439552, + 0.0075195180252194405, + -0.005183653440326452, + 0.004949727561324835, + -0.00027672707801684737, + 0.01649005152285099, + -0.019907398149371147, + -0.005810844711959362, + 0.014469478279352188, + -0.0007166087161749601, + 0.005743040237575769, + -0.01209632121026516, + 0.0005403170362114906, + 0.00211210991255939, + -0.01914798840880394, + 0.004678509663790464, + 0.006546523422002792, + 0.008048392832279205, + -0.0059905266389250755, + -0.0035868575796484947, + -0.005882039666175842, + 0.011309788562357426, + 0.01349987369030714, + 0.009553652256727219, + -0.008950192481279373, + -0.005027703009545803, + 0.010313062928617, + 0.01016389299184084, + -0.0045937541872262955, + 0.012774365954101086, + -0.005946453660726547, + 0.01283538993448019, + 0.007390689570456743, + 0.0004640369734261185, + -0.012821828946471214, + -0.026552237570285797, + -0.020653247833251953, + 0.004217439331114292, + 0.017100293189287186, + 0.007797516416758299, + -0.005217555444687605, + -0.006404133979231119, + -0.007275421638041735, + -0.019107304513454437, + -0.01442879531532526, + 0.005339603405445814, + -0.005051434505730867, + 0.017886824905872345, + 0.0023070478346198797, + -0.02153470553457737, + -0.00236298656091094, + -0.00012278968642931432, + 0.014510160312056541, + -0.023175574839115143, + 0.02219918929040432, + -0.0036512718070298433, + -0.0007204227149486542, + 0.029047442600131035, + -0.019446328282356262, + 0.008089075796306133, + 0.00508194649592042, + 0.0008577267872169614, + 0.005559968296438456, + 0.01097076665610075, + -0.020300664007663727, + -0.009397702291607857, + 0.016178151592612267, + -0.010462232865393162, + 0.011228423565626144, + -0.00038945203414186835, + 0.006312598008662462, + -0.02644375152885914, + -0.007261860650032759, + -0.018415698781609535, + -0.005342993885278702, + -0.004095391370356083, + -0.0024053642991930246, + 0.003946221433579922, + -0.010909742675721645, + 0.011187740601599216, + -0.01606966368854046, + -0.026403067633509636, + -0.019202232360839844, + 0.0026172532234340906, + -0.0003381748974788934, + -0.006963521242141724, + 0.0021104146726429462, + -0.004397121258080006, + 0.02647087350487709, + -0.012726902961730957, + 0.013113387860357761, + -0.020382029935717583, + -0.011425056494772434, + -0.0067736683413386345, + -0.00884848553687334, + 0.013737189583480358, + -0.006021038629114628, + 0.007288982626050711, + 0.013845676556229591, + -0.025182588025927544, + -0.011153838597238064, + 0.001150981173850596, + -0.02059900388121605, + 0.013282899744808674, + 0.03227493539452553, + 0.020178616046905518, + -0.008923070505261421, + 0.006912667769938707, + 0.01143861748278141, + 0.006685522850602865, + 0.007417811080813408, + 0.0035427846014499664, + -0.00399368442595005, + 0.014876305125653744, + 0.010767352767288685, + -0.0159611776471138, + 0.01521532703191042, + -0.0020171834621578455, + -0.013547336682677269, + 0.002671496942639351, + -0.0001861445198301226, + -0.0012145478976890445, + -0.01966330222785473, + 0.0007666145102120936, + -0.002242633607238531, + 0.008990875445306301, + -0.0031681647524237633, + -9.078120456251781e-6, + -0.011879346333444118, + 0.016720587387681007, + -0.023962106555700302, + 0.017479997128248215, + -0.02365020662546158, + -0.004570022691041231, + 0.00911292340606451, + 0.00958077423274517, + -0.0009357019443996251, + -0.02740657515823841, + 0.0014493209309875965, + 0.03213932737708092, + 0.013669384643435478, + -0.010346964932978153, + 0.015201766975224018, + -0.005773552227765322, + 0.02153470553457737, + -0.011594567447900772, + 0.006207501050084829, + 0.01863267458975315, + 0.00014535587979480624, + -0.0030122145544737577, + -0.018686916679143906, + -0.001956159481778741, + 0.009241752326488495, + 0.001403552945703268, + 0.00010345481859985739, + -0.007261860650032759, + -0.006292256526648998, + 0.010224916972219944, + -0.010184234008193016, + -0.004441194236278534, + -0.024816442281007767, + 0.02379937656223774, + 0.010157112963497639, + -0.002340950071811676, + -0.013404947705566883, + 0.013913481496274471, + -0.001634088228456676, + -0.008563706651329994, + 8.486156002618372e-5, + -0.010028284043073654, + -0.0010772438254207373, + 0.003969952929764986, + -0.009173947386443615, + -0.022416165098547935, + 0.008584048599004745, + 0.015405179932713509, + -0.010869059711694717, + -0.04336775094270706, + -0.002893556607887149, + 0.008143318817019463, + 0.024016350507736206, + 0.00542435934767127, + 0.011669152416288853, + 0.005400627385824919, + 0.011675933375954628, + -0.016123907640576363, + 0.013547336682677269, + -0.0046208761632442474, + -0.005919332150369883, + -0.009228191338479519, + 0.019703984260559082, + -0.011228423565626144, + 0.002003622706979513, + -0.008875607512891293, + -0.02554873190820217, + 0.004451364744454622, + 0.008970534428954124, + 0.014469478279352188, + 0.0033207249362021685, + -0.017479997128248215, + 0.007722931448370218, + -0.005539626814424992, + 0.014238942414522171, + -0.0014950890326872468, + 0.017791898921132088, + -0.009757066145539284, + 0.00395639194175601, + -0.002339254831895232, + 0.01189968828111887, + 0.015744201838970184, + -0.0159747377038002, + 0.03154264762997627, + -0.00628547603264451, + -0.007844979874789715, + 0.00031317200046032667, + -0.004468315746635199, + -0.0017968189204111695, + 0.009757066145539284, + -0.010272379964590073, + 0.015418740920722485, + 0.0011467434233054519, + 0.001974805723875761, + 0.016788391396403313, + -0.00970282219350338, + 0.018442820757627487, + -0.0032173229847103357, + 0.0027359111700206995, + 0.01677483133971691, + -0.02539956197142601, + -0.014483039267361164, + 0.006997423246502876, + 0.009228191338479519, + 0.015608593821525574, + 0.001643411349505186, + -0.026023363694548607, + -0.009906236082315445, + -0.004451364744454622, + 0.006315988022834063, + 0.007729711942374706, + -0.010265599936246872, + -0.0116284703835845, + 0.010747011750936508, + 0.02087022177875042, + -0.007404250092804432, + 0.014320308342576027, + -0.005017532035708427, + -0.007939905859529972, + -0.01846994273364544, + 0.002242633607238531, + -0.020965147763490677, + -0.012008175253868103, + 0.0021544876508414745, + -0.020043008029460907, + -0.00010901690257014707, + -0.002803715644404292, + 0.0027274356689304113, + -0.020761733874678612, + 0.0026562409475445747, + 0.008489121682941914, + 0.001986671471968293, + 0.012726902961730957, + 0.01521532703191042, + -0.00562099227681756, + 0.00031952865538187325, + -0.0008373854216188192, + 0.0021273659076541662, + 0.018510624766349792, + -0.001391687197610736, + 0.005590480286628008, + 0.012523489072918892, + -0.005224335938692093, + 0.004058098886162043, + -0.011892907321453094, + -0.002212121384218335, + -0.009865553118288517, + 0.0018069896614179015, + -0.01536449696868658, + 0.02500629611313343, + -0.007973807863891125, + -0.003854685230180621, + -0.004159805364906788, + -0.013133729808032513, + -0.010943644680082798, + 0.018985256552696228, + 0.009031558409333229, + -0.018578430637717247, + -0.009357019327580929, + 0.025508049875497818, + -0.011418276466429234, + -0.008482341654598713, + 0.0007865320658311248, + -0.004909045062959194, + -0.01117417961359024, + 0.01009608805179596, + -0.007099130190908909, + 0.004278463311493397, + 0.016557855531573296, + -0.0003756792575586587, + -0.015188205987215042, + 0.005244677420705557, + 0.005600650794804096, + -0.005600650794804096, + 0.04599856585264206, + -0.016991805285215378, + 0.013520215637981892, + 0.003807222004979849, + 0.007973807863891125, + -0.006292256526648998, + 0.004071659408509731, + 0.00783819891512394, + -0.016151029616594315, + -0.004366609267890453, + 0.02032778598368168, + 0.003127482021227479, + 0.007600883487612009, + -0.01688331738114357, + -0.015581471845507622, + -0.0292372964322567, + -0.007783955428749323, + 0.003254615468904376, + -0.0024918150156736374, + -0.001734099816530943, + 0.02488424815237522, + -0.020246420055627823, + 0.02940002642571926, + 0.0002788459532894194, + 0.02139909751713276, + 0.004244560841470957, + -0.0015578081365674734, + 0.002461303025484085, + 0.04290667921304703, + -0.01780545897781849, + 0.00030745097319595516, + 0.029481392353773117, + 0.01315407082438469, + -0.020287103950977325, + -0.02552160993218422, + -0.01742575317621231, + -0.012137003242969513, + -0.015011914074420929, + 0.010523256845772266, + -0.002571485238149762, + -0.0026630214415490627, + 0.006570254918187857, + -0.01555434986948967, + -0.01261841505765915, + 0.0007081331568770111, + 0.002178219147026539, + -0.010129990987479687, + -0.005210774950683117, + -0.021073635667562485, + 0.003841124242171645, + 0.013418508693575859, + 0.005366725381463766, + 0.012109882198274136, + 0.023595962673425674, + 0.003607198828831315, + -0.0049734595231711864, + 0.007397469598799944, + -0.0024985955096781254, + 0.005234506446868181, + -0.008909509517252445, + 0.004627656191587448, + 0.002781679155305028, + -0.02179236337542534, + 0.02169743739068508, + -0.014794939197599888, + 0.02260601706802845, + 0.01090296171605587, + -0.0232840608805418, + -0.005529456306248903, + 0.011723396368324757, + -0.008726437576115131, + 0.00481411861255765, + 0.022144947201013565, + -0.002446047030389309, + -0.01516108401119709, + -0.00950618926435709, + -0.03349541872739792, + -0.015757763758301735, + 0.011614909395575523, + 0.0034393826499581337, + -0.022822991013526917, + 0.02701330929994583, + 0.017886824905872345, + -0.0013077791081741452, + 0.012903193943202496, + -0.00871965754777193, + -0.003980123437941074, + 0.015201766975224018, + -0.010740230791270733, + 0.00534977437928319, + -0.006668571382761002, + 0.013262557797133923, + 0.026281019672751427, + 0.015378057956695557, + 0.008923070505261421, + 0.01662566140294075, + -0.014252503402531147, + 0.0018290261505171657, + 0.004437803756445646, + -0.0027647281531244516, + 0.006054941099137068, + -0.006610937882214785, + 0.00884848553687334, + -0.028125302866101265, + 0.009872334077954292, + -0.024436738342046738, + -0.0048548015765845776, + -0.009058679454028606, + -0.028613494709134102, + 0.017046049237251282, + -0.008434878662228584, + -0.003820782992988825, + -0.008672194555401802, + 0.023623084649443626, + 0.003141043009236455, + -0.008258586749434471, + -0.01116739958524704, + 0.041930295526981354, + -0.004292024299502373, + 0.00869931560009718, + -0.01714097522199154, + 0.010611402802169323, + 0.001503564533777535, + -0.009492628276348114, + -0.009790968149900436, + 0.0071262517012655735, + -0.0010865669464692473, + -0.002527412259951234, + 0.0057159182615578175, + -0.005475212354212999, + 0.007261860650032759, + 0.015595032833516598, + -0.016449369490146637, + -0.022117825224995613, + 0.014062651433050632, + -0.017222341150045395, + 0.012333637103438377, + 0.00137812620960176, + -0.026633603498339653, + -0.010475793853402138, + -0.00031846921774558723, + 0.006848253309726715, + -0.006929618772119284, + 0.011770859360694885, + -0.009635018184781075, + 0.0048683625645935535, + -0.014130455441772938, + -0.0001749143993947655, + 0.026023363694548607, + 0.043530482798814774, + 0.012998120859265327, + 0.011106375604867935, + 0.009546872228384018, + -0.0071737151592969894, + -0.0173037052154541, + 0.004336097277700901, + 0.013513434678316116, + -0.03043065406382084, + -0.02192797139286995, + 0.00028795719845220447, + -0.01686975732445717, + 0.022972160950303078, + 0.004942947067320347, + 0.00977062713354826, + -0.00048014053027145565, + -0.0017281669424846768, + -0.020449833944439888, + -0.015405179932713509, + 0.009465506300330162, + 0.003719076281413436, + 0.019907398149371147, + 0.005604041274636984, + -0.011126716621220112, + 0.010224916972219944, + 0.006546523422002792, + 0.0031579940114170313, + -0.019175110384821892, + 0.0048548015765845776, + -8.846366836223751e-5, + -0.00040258915396407247, + -0.006180379074066877, + -0.018686916679143906, + -0.013472751714289188, + 0.005187043454498053, + 0.02488424815237522, + 0.009465506300330162, + 0.010055406019091606, + -0.005037873517721891, + -0.012252271175384521, + -0.029942462220788002, + 0.0002693109563551843, + 0.015486545860767365, + -0.004285243805497885, + -0.025074100121855736, + -0.0008632359094917774, + -0.015757763758301735, + 0.012035297229886055, + -0.008278927765786648, + 0.007078788708895445, + 0.02845076471567154, + 0.0009619761840440333, + -0.021032951772212982, + -0.000586932641454041, + -0.0006441426230594516, + -0.007587322499603033, + 0.0166120994836092, + -0.00690927729010582, + 0.009668920189142227, + -0.02497917413711548, + -0.004468315746635199, + -0.0045734127052128315, + -0.009146825410425663, + 0.013120168820023537, + -0.013994846493005753, + -0.004698851145803928, + -0.0015832348726689816, + -0.000929769070353359, + 0.0011992919025942683, + -0.0219415333122015, + 0.01455084327608347, + -0.005075166001915932, + -0.013513434678316116, + -0.02019217610359192, + -0.027704915031790733, + -0.017724093049764633, + -0.006977081764489412, + 0.006861814297735691, + -0.010265599936246872, + -0.0009806224843487144, + 0.007858539931476116, + -0.0024935100227594376, + -0.008299269713461399, + 0.015527227893471718, + -0.01408977247774601, + 0.014916988089680672, + -0.0034292121417820454, + -0.0012501452583819628, + -0.010109649039804935, + 0.013160851784050465, + 0.006295647006481886, + -0.017059609293937683, + -0.005485383328050375, + 0.0096282372251153, + 0.016422247514128685, + -0.0059634046629071236, + 0.016842635348439217, + -0.009913016110658646, + 0.010814815759658813, + 0.0015366192674264312, + -0.012198027223348618, + 0.007953466847538948, + -0.039679188281297684, + 0.013594800606369972, + -0.010835157707333565, + -0.034905750304460526, + -0.01329646073281765, + -0.009140045382082462, + -0.020259981974959373, + 0.01555434986948967, + -0.008936631493270397, + -0.011065692640841007, + -0.01089618168771267, + 0.01875472255051136, + 0.007282202132046223, + 0.025616535916924477, + 0.02432825043797493, + 0.01608322560787201, + 0.015988297760486603, + 0.007668687961995602, + -0.0005174329853616655, + 0.019703984260559082, + 0.011540324427187443, + 0.006729595363140106, + 0.009940138086676598, + 0.0096282372251153, + 0.005858307704329491, + 0.01914798840880394, + -0.027216721326112747, + 0.009194288402795792, + 0.0052141654305160046, + 0.014944109134376049, + -0.00422421982511878, + 0.0037767100147902966, + -0.0023934985511004925, + -0.004210658837109804, + 0.005003971513360739, + -0.006146477069705725, + 0.016517173498868942, + -0.004058098886162043, + -0.009397702291607857, + 0.008367073722183704, + -0.005288750398904085, + -0.009858773089945316, + -0.010557158850133419, + -0.01966330222785473, + -0.0042276098392903805, + 0.0013425288489088416, + 0.011743737384676933, + 0.0067024738527834415, + -0.010136771015822887, + -0.007899222895503044, + 0.004305585287511349, + -0.01097076665610075, + -0.00163832597900182, + 0.036505937576293945, + -0.0030969700310379267, + 0.0006555846775881946, + -0.0013094742316752672, + -0.0008445896673947573, + -0.019364962354302406, + -0.00651601143181324, + 0.0013560898369178176, + -0.033197078853845596, + -0.004909045062959194, + -0.01482206117361784, + 8.300752961076796e-5, + 0.020300664007663727, + -0.022144947201013565, + 0.0015425521414726973, + -0.023731570690870285, + -0.0030495068058371544, + 0.0013704982120543718, + 0.010591060854494572, + 0.006156647577881813, + 0.02005656808614731, + 0.00484802108258009, + 0.014320308342576027, + -0.02457234635949135, + -0.0028088008984923363, + 0.019609058275818825, + 0.012686219997704029, + 0.0063566709868609905, + -0.0116420304402709, + 0.00209515867754817, + 0.013120168820023537, + -0.0006034599500708282, + 0.00876712054014206, + 0.009051899425685406, + -0.0006356670637615025, + -0.004705631639808416, + 0.00869931560009718, + 0.003263090969994664, + -0.00884848553687334, + -0.019853154197335243, + 0.005861698184162378, + 0.002893556607887149, + -0.023080648854374886, + -0.021046513691544533, + 0.006302427500486374, + 0.001514582778327167, + 0.009316337294876575, + -0.009906236082315445, + -0.0025189367588609457 + ], + "a540806a-9e44-4c09-90a2-72ef5870e1c3": [ + -0.014593538828194141, + -0.004498056136071682, + -0.015758803114295006, + -0.004622905980795622, + -0.040312569588422775, + -0.014981959946453571, + 0.018713578581809998, + 0.031240161508321762, + 0.007726807147264481, + 0.01783963106572628, + -0.0026409171987324953, + 0.03756587952375412, + -0.02505316585302353, + -0.024928316473960876, + 0.008191525004804134, + 0.00018358969828113914, + -0.054545432329177856, + 0.02494218945503235, + -0.008524457924067974, + 0.00480671226978302, + 0.060815662145614624, + -0.030130386352539062, + -0.015925269573926926, + 0.002595832571387291, + -0.03237767890095711, + -0.03221121430397034, + 0.007171920035034418, + -0.011832973919808865, + -0.015453614294528961, + -0.03773234412074089, + 0.0023357293102890253, + 0.01327568106353283, + 0.02488670125603676, + -0.00281258556060493, + 0.007234344724565744, + -0.03911956399679184, + -0.010112822987139225, + 0.024095986038446426, + -0.021973541006445885, + 0.015439742244780064, + -0.03168407082557678, + 0.030602041631937027, + 0.029492266476154327, + 0.017908990383148193, + -0.012589008547365665, + 0.02584388107061386, + 0.018769066780805588, + -0.012873387895524502, + -0.005229813978075981, + -0.041311368346214294, + -0.0015276743797585368, + 0.024914445355534554, + -0.009100154042243958, + -0.0003246958367526531, + 0.014399328269064426, + 0.01911587081849575, + 0.009509382769465446, + 0.06802919507026672, + 0.020322751253843307, + -0.0432257279753685, + -0.01850549504160881, + -0.0044009508565068245, + 0.02177933044731617, + -0.015023577027022839, + -0.012561263516545296, + -0.02521963231265545, + 0.0115000419318676, + -0.004983582533895969, + -0.010757879354059696, + 0.007803104352205992, + -0.0009415745735168457, + 0.012672241777181625, + -0.029103845357894897, + -0.010348650626838207, + -0.012845643796026707, + -0.009849251247942448, + 0.04841392859816551, + -0.036816779524087906, + 0.0029617114923894405, + 0.020184028893709183, + -0.029242565855383873, + 0.01180522982031107, + 0.009599552489817142, + -0.010466563515365124, + 0.036261893808841705, + 0.014954215846955776, + -0.04516783729195595, + -0.04128362238407135, + -0.04960693418979645, + -0.03329324349761009, + 0.029048355296254158, + 0.013130023144185543, + -0.007137239445000887, + 0.0010013984283432364, + -0.02161286398768425, + 0.011090812273323536, + 0.04222693294286728, + 0.018311284482479095, + -0.03556828200817108, + -0.03573475033044815, + -0.0132271284237504, + 0.024095986038446426, + -0.056764982640743256, + -0.003062285017222166, + 0.006911816541105509, + -0.002637449186295271, + -0.002474450971931219, + 0.016480155289173126, + -0.028965122997760773, + 0.019088126718997955, + 0.017423463985323906, + -0.001479988801293075, + -0.028604445978999138, + 0.006728009786456823, + 0.0038703398313373327, + -0.0670304000377655, + -0.002496993402019143, + -0.04366964101791382, + 0.001261501805856824, + -0.047970015555620193, + 0.056598518043756485, + 0.0398964062333107, + 0.023749182000756264, + -0.027813730761408806, + -0.0032374211587011814, + -0.0027258843183517456, + 0.002659991616383195, + 0.029298055917024612, + 0.007511788513511419, + -0.002503929426893592, + 0.026301663368940353, + 0.000513270846568048, + -0.007220472674816847, + 0.019545909017324448, + -0.021321548148989677, + 0.017922863364219666, + 0.00803199503570795, + 0.028146663680672646, + -0.030269108712673187, + 0.04566723480820656, + -0.012672241777181625, + -0.017090532928705215, + -0.006814711261540651, + -0.001756565528921783, + 0.027910836040973663, + 0.003008530242368579, + -0.040534526109695435, + 0.03429204225540161, + 0.014399328269064426, + 0.03318226709961891, + -0.039424750953912735, + -0.036150913685560226, + 0.036983247846364975, + 0.0068043069913983345, + 0.005136176478117704, + -0.0007196196238510311, + 0.008399608545005322, + 0.025413842871785164, + 0.014912599697709084, + 0.025413842871785164, + -0.004449503496289253, + -0.0360121950507164, + 0.039424750953912735, + -0.02456763945519924, + -0.014968087896704674, + 0.013844440691173077, + 0.03845369815826416, + 0.009994909167289734, + -0.05412926897406578, + 0.03259963542222977, + 0.036428358405828476, + -0.020655684173107147, + 0.011527786031365395, + -0.014288350939750671, + -0.0002733253932092339, + -0.02499767765402794, + 0.01695181056857109, + 0.011375191621482372, + 0.020808277651667595, + -0.03762136772274971, + -0.01175667718052864, + -0.02700914442539215, + -0.021515758708119392, + 0.006010124459862709, + -0.02083602175116539, + 0.02584388107061386, + -0.004002125468105078, + 0.006159250158816576, + -0.019532037898898125, + 0.0004283037269487977, + 0.008621563203632832, + 0.005351195577532053, + 0.04206046462059021, + 0.05418475717306137, + -0.006353460717946291, + -0.007310641463845968, + -0.00805974006652832, + 0.015065193176269531, + 0.02771662548184395, + 0.04161655530333519, + -0.007386938668787479, + -0.060926638543605804, + -0.06675295531749725, + 0.043197985738515854, + -0.061869945377111435, + 0.00889207050204277, + -0.014440945349633694, + -0.003859935561195016, + 0.0205030906945467, + -0.018144818022847176, + 0.025691287592053413, + -0.015814291313290596, + 0.029242565855383873, + -0.010445755906403065, + -0.0020357430912554264, + -0.008177652955055237, + -0.007830848917365074, + 0.022403579205274582, + 0.0060205282643437386, + 0.006512991152703762, + -0.021321548148989677, + 0.02606583572924137, + 0.01688244938850403, + -0.008996112272143364, + -0.039313774555921555, + -0.0023773456923663616, + -0.008413480594754219, + 0.02739756554365158, + -0.0246647447347641, + -0.002632247284054756, + 0.05082768574357033, + 0.003908488433808088, + 0.003984785173088312, + -0.030185874551534653, + -0.018366772681474686, + 0.017201509326696396, + -0.0006038735737092793, + -0.004296909552067518, + 0.0062598236836493015, + -0.011604082770645618, + 0.04289279878139496, + 0.022237112745642662, + 0.021709969267249107, + 0.016466284170746803, + 0.01883842796087265, + 0.005902614910155535, + 0.0011643965262919664, + 0.03318226709961891, + 0.002167528960853815, + -0.03723294660449028, + 0.023430120199918747, + 0.014232861809432507, + 0.015162298455834389, + 0.0050564114935696125, + -0.0018155222060158849, + 0.003246091306209564, + 0.016660494729876518, + -9.008792403619736e-6, + -0.022583918645977974, + -0.01278321910649538, + -0.010452691465616226, + -0.0001931268343469128, + 0.010418010875582695, + -0.020031435415148735, + 0.05202069506049156, + -0.020988617092370987, + 0.018130946904420853, + -0.04883009195327759, + -0.012325436808168888, + 0.026315536350011826, + -0.060205284506082535, + -0.0038564675487577915, + -0.011264214292168617, + 0.01732635870575905, + 0.004348929971456528, + -0.015481359325349331, + -0.008940623141825199, + 0.03154534846544266, + -0.008642371743917465, + 0.012686113826930523, + 0.0118399104103446, + 0.03800978884100914, + 0.02734207734465599, + 0.034541741013526917, + -0.006939560640603304, + -0.022084519267082214, + 0.0041616554372012615, + 0.023374632000923157, + -0.04333670809864998, + -0.018241923302412033, + -0.005313047207891941, + -0.01661887764930725, + 0.028604445978999138, + -0.00897530373185873, + 0.028909634798765182, + -0.0033830793108791113, + -0.011742805130779743, + -0.02356884256005287, + -0.03376489877700806, + 0.039702195674180984, + -0.015966884791851044, + 0.008482841774821281, + 0.02456763945519924, + -0.039535727351903915, + 0.012880324386060238, + -0.0025091315619647503, + 0.037260688841342926, + 0.003355334745720029, + -0.029270311817526817, + 0.011777485720813274, + 0.023749182000756264, + -0.006481778807938099, + -0.01314389519393444, + -0.031156929209828377, + -0.0032998460810631514, + 0.0033466648310422897, + 0.0042032720521092415, + 0.022528428584337234, + 0.00977989099919796, + -0.027355950325727463, + -0.012817899696528912, + -0.019587526097893715, + -0.027272716164588928, + 0.011326638981699944, + 0.02673170156776905, + -0.04300377517938614, + 0.016202712431550026, + 0.011423744261264801, + -0.02684267796576023, + -0.043780617415905, + 0.0014782547950744629, + -0.04783129692077637, + -0.039202794432640076, + -0.010785624384880066, + 0.003970913123339415, + -0.04760934039950371, + -0.04733189567923546, + -0.029520010575652122, + -0.0059095509350299835, + 0.0009216333273798227, + -0.004331589676439762, + 0.0410061813890934, + -0.052103929221630096, + -0.004713074769824743, + 0.03673354536294937, + 0.0021224443335086107, + -0.005358131602406502, + 0.009932484477758408, + -0.0051673888228833675, + -0.009821507148444653, + 0.0007738078129477799, + -0.006728009786456823, + 0.05079994350671768, + -0.004140847362577915, + 0.003254761453717947, + -0.006731478031724691, + -0.02161286398768425, + -0.03193376958370209, + 0.013969291001558304, + -0.0007993846666067839, + -0.043197985738515854, + -0.011243406683206558, + -0.030130386352539062, + -0.0028212557081133127, + -0.0038703398313373327, + 0.03223896026611328, + 0.021099593490362167, + 0.005507257767021656, + 0.009516319260001183, + 0.014357712119817734, + -0.0354573056101799, + 0.04366964101791382, + 0.018463877961039543, + 0.010112822987139225, + -0.039091818034648895, + 0.02272263914346695, + 0.04869136959314346, + 0.022153880447149277, + -0.005451768636703491, + 0.025080911815166473, + -0.027813730761408806, + 0.014829366467893124, + 0.004921157844364643, + -0.004518864210695028, + 0.03334873542189598, + 0.0005479513201862574, + -0.016036245971918106, + -0.0021501886658370495, + -0.010341714136302471, + -0.041033923625946045, + -0.025816136971116066, + 0.002391217974945903, + -0.034319788217544556, + 0.007449363358318806, + -0.030685273930430412, + 0.028687680140137672, + -0.006943028885871172, + -0.028548957780003548, + 0.006561543792486191, + 0.008524457924067974, + 0.01756218634545803, + -0.026260046288371086, + -0.026925912126898766, + 0.008212333545088768, + 0.013601677492260933, + 0.013525380752980709, + 0.0024796531070023775, + -0.0010490840068086982, + 0.0024311004672199488, + 0.017811885103583336, + -0.002894084667786956, + 0.01094515435397625, + 0.022861361503601074, + -0.016133351251482964, + 0.038425952196121216, + -0.014579666778445244, + 0.007171920035034418, + 0.022750383242964745, + -0.038259487599134445, + -0.016924066469073296, + 0.04591693356633186, + 0.05540550872683525, + -0.015703313052654266, + 0.005704936105757952, + -0.03645610436797142, + 0.009176450781524181, + 0.027799859642982483, + 0.019074255600571632, + -0.012505775317549706, + 0.023083316162228584, + -0.019878841936588287, + -0.005802041385322809, + -0.02473410591483116, + -0.00035742553882300854, + 0.027702754363417625, + 0.0006849391502328217, + 0.00885738991200924, + -0.0007209201576188207, + -0.010348650626838207, + -0.03673354536294937, + 0.03806527704000473, + 0.04416903853416443, + 0.017423463985323906, + 0.010438819415867329, + -0.006426289677619934, + -0.04072873666882515, + -0.0272865891456604, + 0.003686533309519291, + 0.0230000838637352, + 0.026912039145827293, + -0.008267822675406933, + 0.023027827963232994, + -0.059650398790836334, + 0.021515758708119392, + -0.016521772369742393, + -0.0076158298179507256, + 0.005313047207891941, + -0.002197007415816188, + 0.025039294734597206, + 0.002096434123814106, + -0.04389159381389618, + -0.004744287580251694, + 0.034541741013526917, + -0.025538694113492966, + -0.006974241230636835, + -0.061370547860860825, + -0.018089329823851585, + 0.018699705600738525, + -0.007553405128419399, + -0.020974744111299515, + -0.0019490420818328857, + 0.04516783729195595, + -0.038814373314380646, + 0.009162578731775284, + -0.03751038759946823, + -0.004064550157636404, + 0.008316375315189362, + -0.00566678773611784, + 0.0003227450652047992, + -0.017534442245960236, + -0.022084519267082214, + -0.011715060099959373, + -0.03162858262658119, + -0.0085868826135993, + 0.045140091329813004, + -0.0028385960031300783, + -0.025025421753525734, + 0.006620500236749649, + 0.018685834482312202, + -0.012519647367298603, + 0.05143806338310242, + -0.009731338359415531, + -0.0017600335413590074, + -0.010071206837892532, + -0.0246647447347641, + -0.031129183247685432, + 0.027147866785526276, + -0.014357712119817734, + -0.006193930748850107, + -0.025094782933592796, + 0.054878365248441696, + 0.008462033234536648, + 0.022098390385508537, + 0.03418106585741043, + 0.029020611196756363, + -0.007796168327331543, + -0.028188280761241913, + 0.02745305560529232, + 0.011132428422570229, + -0.01817256212234497, + -0.0028975526802241802, + 0.004785903729498386, + -0.000621213810518384, + 0.004609033465385437, + -1.82343374035554e-5, + 0.02533061057329178, + -0.01325487345457077, + 0.004917689599096775, + 0.006797370966523886, + -0.011139364913105965, + 0.012380925007164478, + 0.010452691465616226, + 0.006634372752159834, + 0.016799217090010643, + 0.013775080442428589, + -0.013962354511022568, + -0.005833253730088472, + 0.037538133561611176, + 0.03745489940047264, + 0.012034120969474316, + -0.03218346834182739, + 0.004099230747669935, + -0.01883842796087265, + -0.0033934833481907845, + 0.019629143178462982, + -0.014218989759683609, + -0.017770269885659218, + -0.0025524820666760206, + -0.013795888051390648, + 0.04502911493182182, + -0.014981959946453571, + 0.012734666466712952, + -0.006287568248808384, + 0.009093217551708221, + 0.017409592866897583, + 0.04425227269530296, + -0.008108292706310749, + 0.007914082147181034, + 0.025247378274798393, + 0.02638489566743374, + -0.020308880135416985, + 0.011617954820394516, + 0.007442427333444357, + 0.019878841936588287, + 0.03293256834149361, + -0.044141292572021484, + 0.01845000684261322, + -0.025705158710479736, + -0.0448903925716877, + 0.01292194053530693, + 0.002892350545153022, + 0.003565151710063219, + 0.007144175469875336, + -0.0020374772138893604, + -0.025441588833928108, + -0.010237672366201878, + -0.021654481068253517, + 0.026537491008639336, + -0.013761207461357117, + 0.017465081065893173, + 0.0275640320032835, + 0.016188839450478554, + 0.020267263054847717, + -0.014496433548629284, + -0.020711172372102737, + 0.017146021127700806, + 0.011076940223574638, + 0.03143437206745148, + -0.00017622009909246117, + 0.0005691931000910699, + 0.020960872992873192, + -0.053324680775403976, + 0.02649587392807007, + -0.021931925788521767, + -0.0069603691808879375, + 0.01386524923145771, + -0.059095509350299835, + -0.035096630454063416, + 0.011874591000378132, + 0.03917505219578743, + 0.017159894108772278, + 0.014718389138579369, + 0.018311284482479095, + 0.003925828263163567, + 0.0026738636661320925, + 0.031267907470464706, + -0.013150831684470177, + 0.025205761194229126, + -0.016313690692186356, + -0.011763612739741802, + 0.012138161808252335, + 0.00468186242505908, + 0.019975947216153145, + -0.0018224583473056555, + -0.006173122674226761, + 0.019323954358696938, + -0.0023357293102890253, + 0.009675849229097366, + -0.000310606905259192, + -0.008462033234536648, + 0.006284100003540516, + 0.01745120994746685, + 0.017853502184152603, + -0.00889207050204277, + 0.034541741013526917, + 0.007449363358318806, + 0.021266059949994087, + 0.010334777645766735, + 0.002864606212824583, + -0.017243126407265663, + 0.014135756529867649, + -0.06675295531749725, + 0.05596039444208145, + -0.00785859301686287, + 0.003790574613958597, + -0.018519368022680283, + -0.0034680464304983616, + 0.008309438824653625, + -0.013379722833633423, + -0.0040922947227954865, + 0.011201789602637291, + 0.02423470839858055, + 0.04450197145342827, + -0.020073052495718002, + 0.0434754304587841, + 0.010965962894260883, + -0.0008990910137072206, + 0.04217144474387169, + -0.011347447521984577, + 0.03154534846544266, + -0.020711172372102737, + -0.007380002643913031, + -0.003492322750389576, + 0.05032828822731972, + -0.012519647367298603, + 0.010744007304310799, + -0.021765459328889847, + 0.016244329512119293, + 0.03362617641687393, + -0.009578743949532509, + -0.04439099133014679, + -0.005052943713963032, + 0.028576701879501343, + 0.0059476993046700954, + -0.012519647367298603, + -0.021709969267249107, + -0.0006056075799278915, + 0.007650510407984257, + 0.015037449076771736, + 0.004407886881381273, + 0.027661137282848358, + 0.010508180595934391, + -0.016577262431383133, + 0.014135756529867649, + 0.014218989759683609, + -0.007352258078753948, + 0.023763053119182587, + -0.0005254090065136552, + 0.033598434180021286, + 0.02589936926960945, + 0.0062979720532894135, + -0.007879401557147503, + 0.014649027958512306, + 0.021377038210630417, + 0.008184589445590973, + -0.01356006134301424, + 0.0074979159981012344, + -0.030879484489560127, + 0.02390177547931671, + -0.034708209335803986, + -0.025261249393224716, + -0.013677975162863731, + -0.02671782858669758, + -0.021807074546813965, + 0.031184673309326172, + -0.020877638831734657, + 0.0015424136072397232, + 0.060649193823337555, + -0.02061406709253788, + -0.014815494418144226, + 0.004671458620578051, + 0.0038252552039921284, + -0.024914445355534554, + 0.0020374772138893604, + -0.014593538828194141, + 0.011257278732955456, + -0.012124289758503437, + 0.0006771360640414059, + 0.030185874551534653, + -0.008288631215691566, + -0.03301580250263214, + -0.012589008547365665, + -0.003195804776623845, + -0.012235267087817192, + 0.006232079118490219, + 0.014066396281123161, + -0.011479233391582966, + -0.011139364913105965, + 0.041755277663469315, + 0.014565794728696346, + 0.027133993804454803, + 0.015647824853658676, + -0.018935533240437508, + -0.005989315919578075, + 0.003544343402609229, + 0.005247154273092747, + -0.012124289758503437, + 0.002824723720550537, + 0.009044664911925793, + 0.020142413675785065, + -0.012075737118721008, + 0.053713101893663406, + 0.00557315070182085, + -0.040867459028959274, + -0.053546637296676636, + 0.013566996902227402, + 0.0026634596288204193, + -0.011590210720896721, + -0.01872744970023632, + -0.006925688590854406, + 0.047581594437360764, + -0.0016152425669133663, + -0.017409592866897583, + 0.004522332455962896, + -0.016688238829374313, + 0.0028004474006593227, + -0.02467861771583557, + -0.002814319683238864, + 0.03234993666410446, + -0.026468129828572273, + -0.014066396281123161, + -0.015800418332219124, + 0.01599462889134884, + 0.013913801871240139, + 0.020586322993040085, + -0.015689441934227943, + -0.0078932736068964, + -0.014205117709934711, + 0.009550999850034714, + 0.02562192641198635, + 0.029076101258397102, + -0.029936175793409348, + 0.043031517416238785, + 0.011791357770562172, + -0.043308962136507034, + -0.0030848272144794464, + -0.012623689137399197, + -0.005087623838335276, + -0.00797650683671236, + 0.032488659024238586, + -0.01245028618723154, + -0.017243126407265663, + 0.014746133238077164, + -0.02290297858417034, + 0.000155303452629596, + -0.004362802486866713, + -0.04466843605041504, + 0.0196707583963871, + 0.058374155312776566, + -0.029214821755886078, + 0.013990098610520363, + -0.017881246283650398, + 0.011430680751800537, + 0.010043461807072163, + 0.003492322750389576, + -0.0013785484479740262, + 0.02693978324532509, + -0.00587833859026432, + -0.05252009257674217, + 0.015966884791851044, + -0.023874031379818916, + -0.04844167083501816, + -0.0034871206153184175, + -0.031267907470464706, + 0.03415331989526749, + 0.002710278145968914, + 0.02449828013777733, + 0.031212417408823967, + 0.004185931757092476, + -0.018810683861374855, + -0.0042032720521092415, + 0.006807774771004915, + -0.01016831211745739, + 0.00930823665112257, + 0.006849391385912895, + -0.010854984633624554, + 0.011846845969557762, + -0.020308880135416985, + -0.02011466957628727, + 0.014704516157507896, + 0.009384533390402794, + -0.04405806213617325, + 0.033542945981025696, + 0.045140091329813004, + -0.01593914069235325, + -0.01639692299067974, + 0.019851097837090492, + 0.007449363358318806, + -0.004172059707343578, + 0.0020392113365232944, + -0.03232219070196152, + 0.008434289135038853, + -0.004508460406213999, + -0.011964759789407253, + 0.0011748006800189614, + -0.019365571439266205, + -0.011846845969557762, + -0.018658088520169258, + 0.024983806535601616, + -0.003398685483261943, + 0.010362522676587105, + 0.037760090082883835, + 0.026038091629743576, + 0.006069080904126167, + -0.007643573917448521, + 0.0013308627530932426, + -0.018033841624855995, + -0.024415045976638794, + 0.0329880565404892, + 0.005392812192440033, + -0.00277096894569695, + -0.009488575160503387, + 0.0026842679362744093, + 0.012595944106578827, + 0.010202992707490921, + 0.029381288215517998, + -0.029214821755886078, + -0.015051321126520634, + -0.03739941120147705, + 0.020988617092370987, + 0.014857110567390919, + -0.0171737652271986, + -0.02194579690694809, + -0.018907789140939713, + -0.004539672750979662, + 0.008475905284285545, + 0.013220192864537239, + 0.010036526247859001, + 0.043197985738515854, + -0.007532596588134766, + 0.011437617242336273, + -0.008108292706310749, + -0.004661054350435734, + -0.0043974826112389565, + -0.053158216178417206, + 0.015689441934227943, + -0.021127337589859962, + 0.00922500342130661, + 0.012401733547449112, + 0.012089609168469906, + 0.005049475468695164, + 0.0007525660330429673, + 0.0026409171987324953, + -0.016979554668068886, + -0.0038148509338498116, + -0.023013954982161522, + -0.024428918957710266, + 0.027661137282848358, + 0.0013534050667658448, + 0.02033662423491478, + -0.005808977410197258, + -0.004622905980795622, + 0.014968087896704674, + 0.00012322401744313538, + -0.02401275373995304, + -0.01955978199839592, + -0.019920459017157555, + -0.004772031679749489, + -0.03479143977165222, + -0.0027692350558936596, + -0.009204194881021976, + 0.01638305000960827, + 0.007927954196929932, + -0.011867654509842396, + -0.058374155312776566, + 0.025746775791049004, + 0.006048272829502821, + 0.009876996278762817, + 0.019573653116822243, + -0.020100796595215797, + 0.009814571589231491, + 0.008351055905222893, + -0.03695550188422203, + -0.02017015777528286, + 0.0016291147330775857, + -0.053213704377412796, + -0.027994070202112198, + -0.039979636669158936, + 0.009162578731775284, + -0.017437336966395378, + -0.014184309169650078, + -0.02372143790125847, + -0.012478030286729336, + 0.015203915536403656, + -0.016480155289173126, + -0.03351520001888275, + 0.01861647330224514, + 0.030102642253041267, + 0.003984785173088312, + 0.04697122052311897, + 0.021266059949994087, + 0.011708124540746212, + -0.0016629282617941499, + -0.012637561187148094, + 0.028257641941308975, + 0.02477572299540043, + 0.01839451864361763, + -0.003428163705393672, + -0.043919339776039124, + -0.0005033002234995365, + -0.009356789290904999, + -0.007851656526327133, + 0.01634143479168415, + 0.020073052495718002, + -0.013740399852395058, + -0.010112822987139225, + 0.01308840699493885, + 0.015966884791851044, + 0.017381848767399788, + -0.0041651236824691296, + 0.006551139522343874, + 0.00889207050204277, + 0.02139090932905674, + -0.011396000161767006, + 0.009322108700871468, + -0.02628779038786888, + 0.010848049074411392, + -0.01136825606226921, + -0.01344214752316475, + -0.030158130452036858, + -0.020697301253676414, + 0.011285022832453251, + 0.010216864757239819, + -0.0030102641321718693, + 0.01933782547712326, + -0.011909271590411663, + -0.029769709333777428, + 0.02268102392554283, + 0.006509522907435894, + -0.018380645662546158, + 0.010404138825833797, + 0.040590014308691025, + 0.0066066281870007515, + 0.013386659324169159, + 0.014538050629198551, + 0.03337647765874863, + 0.00018749125592876226, + 0.03950798511505127, + -0.004307313356548548, + 0.006970772985368967, + -0.013025982305407524, + -0.006204335018992424, + -0.016299817711114883, + 0.0038564675487577915, + -0.038703396916389465, + 0.0076990630477666855, + -0.038425952196121216, + 0.009114026091992855, + 0.028659934177994728, + 0.023208165541291237, + -0.014399328269064426, + -0.0029721157625317574, + 0.021460270509123802, + -0.01944880373775959, + 0.0044425674714148045, + -0.0003214445314370096, + -0.013566996902227402, + -0.000657194759696722, + 0.016077863052487373, + -0.0017877778736874461, + 0.018103202804923058, + 0.02761952020227909, + -0.002474450971931219, + 0.005420556291937828, + -0.017243126407265663, + 0.017978351563215256, + -0.012977429665625095, + -0.017742525786161423, + 0.02477572299540043, + -0.028798656538128853, + 0.03956347331404686, + -0.03517986088991165, + -0.014538050629198551, + -0.02517801709473133, + -0.000543616246432066, + -0.009231938980519772, + -0.026690084487199783, + 0.013823633082211018, + -0.006835519336163998, + -0.012568200007081032, + -0.010313970036804676, + 0.011798293329775333, + -0.02472023479640484, + 0.024872828274965286, + 0.008996112272143364, + 0.017132148146629333, + -0.016050118952989578, + -0.019684631377458572, + 0.021543504670262337, + 0.02155737578868866, + 0.022209368646144867, + -0.008878198452293873, + -0.010209928266704082, + -0.03407008573412895, + 0.030102642253041267, + 0.0027137461584061384, + -0.01628594473004341, + -0.05096640810370445, + 0.011881526559591293, + 0.029825199395418167, + -0.020350495353341103, + -0.027661137282848358, + -0.0034541741479188204, + -0.009967165067791939, + -0.0061072297394275665, + -0.006599692162126303, + -0.006578884087502956, + 0.016591133549809456, + 0.024095986038446426, + 0.012422542087733746, + -0.014177373610436916, + 0.01188846305012703, + -0.0040090614929795265, + -0.0006381205166690052, + 0.015453614294528961, + -0.0318782813847065, + 0.025927115231752396, + -0.054434455931186676, + -0.020364368334412575, + 0.005808977410197258, + 0.014454817399382591, + -0.009169514290988445, + -0.005257558077573776, + -0.0009641168871894479, + 0.0026530553586781025, + -0.0207805335521698, + -0.001890085288323462, + 0.021598992869257927, + -0.016577262431383133, + 0.01628594473004341, + 0.029242565855383873, + -0.028743168339133263, + 0.019740119576454163, + -0.012256075628101826, + -0.006509522907435894, + 0.008413480594754219, + -0.006724542006850243, + -0.005770829040557146, + -0.005545406136661768, + 0.026149069890379906, + -0.0006025730399414897, + 0.013587805442512035, + 0.04619437828660011, + -0.020919255912303925, + 0.04891332611441612, + -0.016299817711114883, + -0.017576059326529503, + 0.03218346834182739, + -0.00583672197535634, + 0.0071511114947497845, + -0.0010005313670262694, + 0.021418653428554535, + -0.0005743951769545674, + 0.02501155063509941, + 0.020475344732403755, + 0.0011695986613631248, + -0.0031056355219334364, + 0.004269164986908436, + 0.006769626401364803, + 0.004997454583644867, + -0.002569822361692786, + 0.00343163195066154, + -0.015079065226018429, + 0.0035790237598121166, + -0.015217787586152554, + -0.034763697534799576, + 0.0185609832406044, + 0.0013473359867930412, + -0.0009909942746162415, + 0.03612317144870758, + -0.017603803426027298, + 0.007282897364348173, + -0.009655040688812733, + -0.006721073761582375, + -0.014427072368562222, + -0.008087484166026115, + -0.003100433386862278, + 0.07413295656442642, + -0.007407747209072113, + -0.006464438512921333, + 0.013511508703231812, + -0.006936092860996723, + 0.007553405128419399, + 0.010154440067708492, + 0.023971136659383774, + 0.014981959946453571, + -0.003223549108952284, + -0.022750383242964745, + -0.010459627956151962, + 0.019989818334579468, + 0.01710440404713154, + -0.0029755837749689817, + -0.0014947280287742615, + 0.02429019659757614, + 0.0026686617638915777, + -0.029880687594413757, + -0.013816696591675282, + -0.014121884480118752, + -0.009134833700954914, + 0.02517801709473133, + -0.012769347056746483, + -0.006981177255511284, + -0.029214821755886078, + 0.009419213980436325, + 0.010182184167206287, + -0.014260606840252876, + 0.008455096744000912, + 0.01634143479168415, + -0.0011791357537731528, + 0.03451399877667427, + -0.00021480211580637842, + -0.021973541006445885, + 0.017035042867064476, + 0.006294504273682833, + -0.0246647447347641, + -0.010993706993758678, + -0.019462676718831062, + 0.00283339386805892, + -0.012873387895524502, + -0.016826961189508438, + -0.007137239445000887, + 0.015162298455834389, + 0.007477107923477888, + 0.016091734170913696, + 0.009016920812427998, + -0.01917136088013649, + 0.0020999021362513304, + -0.013636358082294464, + -0.0038217869587242603, + -0.016688238829374313, + 0.001231156405992806, + -0.023582715541124344, + 0.007338386029005051, + -0.012873387895524502, + -0.03706647828221321, + -0.040978435426950455, + -0.02433181367814541, + 0.007296769414097071, + 0.017354104667901993, + -0.005382407922297716, + -0.01305372640490532, + -0.02455376833677292, + 0.0013109215069562197, + -0.0023166548926383257, + -0.008288631215691566, + -0.004362802486866713, + -0.010910473763942719, + -0.01061222143471241, + 0.0015883651794865727, + 0.0019646482542157173, + 0.011215661652386189, + -0.022583918645977974, + 0.013920738361775875, + 0.025802263990044594, + -0.028146663680672646, + 0.0012857781257480383, + -0.029852943494915962, + -0.02628779038786888, + 0.005958103574812412, + 0.020766660571098328, + 0.012595944106578827, + -0.004879541229456663, + -0.007927954196929932, + 0.002115508308634162, + -0.006748818326741457, + -0.004615969490259886, + -0.01861647330224514, + 0.0004007761017419398, + -0.004837924614548683, + 0.007269025314599276, + -0.012034120969474316, + -0.007650510407984257, + -0.010300097987055779, + -0.015398126095533371, + -0.010445755906403065, + 0.0005887008737772703, + -0.0315730944275856, + -0.02545545995235443, + 0.004130443092435598, + 0.00891981553286314, + -0.02671782858669758, + 0.018019968643784523, + 0.009641168639063835, + -0.01200637686997652, + 0.02072504535317421, + -0.006575415842235088, + -0.02795245312154293, + 0.007567277178168297, + 0.014995831996202469, + -0.014732261188328266, + 0.0029513074550777674, + -0.0055176615715026855, + -0.005743084941059351, + -0.003048412734642625, + -0.004532736726105213, + 0.014690644107758999, + -0.005018263123929501, + -0.015259403735399246, + -0.004633309785276651, + -0.009384533390402794, + 0.002169263083487749, + 0.02011466957628727, + -0.020683428272604942, + -0.01249883882701397, + 0.018325157463550568, + -0.024928316473960876, + -0.002115508308634162, + 0.012512710876762867, + 0.007907145656645298, + -0.0038217869587242603, + 0.01839451864361763, + 0.008829645812511444, + -0.003337994683533907, + 0.02588549815118313, + -0.007164983544498682, + -0.016369178891181946, + -0.0010941686341539025, + -0.015398126095533371, + 0.003058816771954298, + -0.0006350859766826034, + 0.01317164022475481, + -0.0008084882865659893, + 0.02399888075888157, + -0.02311106026172638, + 0.014510305598378181, + 0.022625533863902092, + -0.011049195192754269, + 0.00437667453661561, + 0.010730135254561901, + -0.025816136971116066, + -0.008295566774904728, + 0.0032807718962430954, + -0.018907789140939713, + -9.786392911337316e-5, + -0.03171181678771973, + 0.0032599635887891054, + 0.0070678782649338245, + -0.01236705295741558, + -0.012817899696528912, + -0.0020912319887429476, + -0.031240161508321762, + -0.01200637686997652, + 0.0027154802810400724, + -0.01600850187242031, + -0.026995273306965828, + 0.0012892462546005845, + 0.01710440404713154, + -0.024983806535601616, + 0.007733743172138929, + -0.019365571439266205, + 0.0026738636661320925, + -0.004758159630000591, + -0.018824554979801178, + 0.02111346647143364, + -0.009107089601457119, + 0.03523534908890724, + -0.0011479232925921679, + -0.040479037910699844, + -0.02573290467262268, + 0.004421758931130171, + 0.003202740801498294, + 0.020988617092370987, + -0.010570605285465717, + -0.00021881205611862242, + -0.01811707392334938, + -0.030185874551534653, + 0.0010854984866455197, + 0.017825758084654808, + -0.025594182312488556, + -0.010924345813691616, + 0.015966884791851044, + 0.005784701090306044, + 0.0016360508743673563, + -0.0315730944275856, + -0.026190685108304024, + 0.012041056528687477, + -0.002894084667786956, + 0.013976226560771465, + -0.0012536987196654081, + 0.012422542087733746, + -0.010078142397105694, + 0.031240161508321762, + -0.014156565070152283, + 0.002496993402019143, + -0.0047928402200341225, + -0.0036726610269397497, + 0.0018554048147052526, + -0.003140315879136324, + 0.012568200007081032, + -0.01817256212234497, + 0.006790434941649437, + 0.016632750630378723, + -0.0035408753901720047, + -0.0071927281096577644, + 0.01656338945031166, + -0.011749740689992905, + -0.010404138825833797, + -0.008788029663264751, + -0.020419856533408165, + 0.003006796119734645, + 0.021904179826378822, + 0.0029513074550777674, + -0.017881246283650398, + 0.02356884256005287, + -0.0008622430032119155, + 0.03337647765874863, + -0.0060656131245195866, + -0.009759082458913326, + 0.0033345266710966825, + 0.01922684907913208, + -0.01983722485601902, + 0.008253950625658035, + -0.018630344420671463, + -0.0185609832406044, + -0.0034541741479188204, + -0.005985848139971495, + -0.003275569761171937, + -0.024082113057374954, + -0.026204558089375496, + -0.01153472252190113, + -0.010813368484377861, + -0.0160639900714159, + -0.00022780729341320693, + 0.0003689134318847209, + 0.017603803426027298, + 0.0019871904514729977, + -0.006891008000820875, + -0.014329967088997364, + 0.015148426406085491, + -0.011992503888905048, + 0.005215941928327084, + -0.005632107146084309, + 0.01639692299067974, + 0.008434289135038853, + -0.008156845346093178, + -0.007102558854967356, + -0.023249782621860504, + -0.02345786616206169, + -0.03129564970731735, + 0.011486169882118702, + -0.004144315607845783, + -0.016410795971751213, + 0.029658732935786247, + 0.03690001368522644, + 0.00550032127648592, + -0.0018918192945420742, + -0.02817440778017044, + 0.009481638669967651, + 0.029630988836288452, + -0.019254593178629875, + -0.006984645500779152, + 0.03534632921218872, + -0.014773877337574959, + -0.010327842086553574, + -0.009675849229097366, + 0.027133993804454803, + -0.001900489442050457, + -0.004237952642142773, + 0.018699705600738525, + 0.009238875471055508, + -0.00010073590965475887, + 0.003256495576351881, + 0.020156284794211388, + -0.0082470141351223, + 0.015411998145282269, + 0.0053373235277831554, + -0.010598349384963512, + -0.01236011739820242, + 0.014565794728696346, + -0.007095622830092907, + 0.0006493916735053062, + -0.004477247595787048, + 0.021085722371935844, + -0.0016906725941225886, + 0.043808359652757645, + 0.003738553961738944, + -0.01403171569108963, + -0.014496433548629284, + -0.029658732935786247, + -0.002566354349255562, + 0.02449828013777733, + 0.04067324846982956, + -0.005229813978075981, + 0.03426429629325867, + -0.005774297285825014, + 0.009190322831273079, + -0.035207606852054596, + -0.0005288770771585405, + 0.0064956508576869965, + 0.003409089520573616, + -0.02150188758969307, + -0.006880603730678558, + -0.007400810718536377, + 0.019393315538764, + 0.007927954196929932, + 0.012318500317633152, + 0.019185231998562813, + -0.0051014963537454605, + 0.018880045041441917, + -0.03129564970731735, + -0.01192314364016056, + -0.02394339255988598, + 0.025538694113492966, + -0.019795607775449753, + 0.02678718976676464, + -0.008323310874402523, + 0.009301300160586834, + 0.014787749387323856, + 0.021432526409626007, + 0.016410795971751213, + 0.013920738361775875, + 0.007934889756143093, + 0.009745210409164429, + -0.021918052807450294, + 0.03382038697600365, + -0.015758803114295006, + 0.013684910722076893, + -0.012859515845775604, + 0.022875234484672546, + 0.016688238829374313, + 0.01745120994746685, + -0.0025802263990044594, + -0.009599552489817142, + 0.015439742244780064, + 0.008517521433532238, + -0.0020686895586550236, + -0.0283963643014431, + -0.029436778277158737, + -0.018422262743115425, + 0.010716263204813004, + -0.012554327957332134, + 0.006128037814050913, + -0.010112822987139225, + 0.015647824853658676, + 0.009981037117540836, + -0.0008774157031439245, + -0.007092154584825039, + -0.016577262431383133, + -0.0071927281096577644, + 0.014884854666888714, + -0.03334873542189598, + -0.008073612116277218, + -0.0006767025333829224, + 0.008947559632360935, + 0.004518864210695028, + -0.009238875471055508, + 0.003355334745720029, + 0.004473779816180468, + 0.0036414486821740866, + -0.0028680742252618074, + 0.015869779512286186, + 0.014981959946453571, + -0.02322203852236271, + 0.027425309643149376, + 0.0019577122293412685, + 0.019185231998562813, + -0.025039294734597206, + -0.02467861771583557, + -0.030518807470798492, + 0.015814291313290596, + -0.0011748006800189614, + -0.006322248373180628, + -0.024373428896069527, + 0.0018051181687042117, + -0.010362522676587105, + 0.028798656538128853, + 0.008108292706310749, + 0.010903537273406982, + 0.011104684323072433, + 0.027161739766597748, + -0.010605285875499249, + -0.0157865472137928, + 0.029963919892907143, + 0.003443770110607147, + 0.032100237905979156, + -0.020267263054847717, + 0.02689816802740097, + 0.015620080754160881, + -0.011354384012520313, + -0.005156985018402338, + 0.0044703115709125996, + -0.008399608545005322, + -0.011617954820394516, + 0.026371024549007416, + -0.021876435726881027, + -0.011846845969557762, + 0.0034975246526300907, + -0.007754551712423563, + -0.022209368646144867, + -0.03343196585774422, + 0.002659991616383195, + -0.0015250734286382794, + -0.004088826477527618, + 0.017603803426027298, + -0.0019178296206519008, + 0.004466843791306019, + 0.008323310874402523, + 0.00880883727222681, + -0.028410235419869423, + -0.007206600159406662, + 0.014135756529867649, + 0.01403171569108963, + 0.02166835404932499, + 0.02356884256005287, + -0.015176170505583286, + -0.0008717801538296044, + 0.0002624877670314163, + -0.0030137323774397373, + 0.0132271284237504, + 0.009821507148444653, + 0.017811885103583336, + 0.0332377552986145, + -0.026315536350011826, + -0.014357712119817734, + 0.008767221122980118, + 0.014815494418144226, + -0.005188197363168001, + 0.008614626713097095, + -0.008323310874402523, + -0.024359557777643204, + -0.012568200007081032, + -0.011770549230277538, + 0.027314333245158195, + 0.007671318482607603, + 0.01671598292887211, + 0.014149629510939121, + -0.00622167531400919, + -0.004237952642142773, + 0.02000369131565094, + -0.002415494294837117, + 0.003679597284644842, + 0.007019325625151396, + 0.014399328269064426, + 0.02173771522939205, + -0.005437896586954594, + -0.0016377848805859685, + -0.004099230747669935, + 0.010626094415783882, + -0.012290756218135357, + -0.0014409732539206743, + -0.030130386352539062, + 0.02212613634765148, + 0.010674647055566311, + 0.019629143178462982, + -0.017659291625022888, + 0.003624108387157321, + -0.016202712431550026, + -0.011701188050210476, + 0.015037449076771736, + -0.015481359325349331, + 0.019462676718831062, + 0.0035755557473748922, + 0.0007226541638374329, + -0.028937378898262978, + -0.010501244105398655, + 0.00011325338709866628, + 0.005746552720665932, + 0.0035894280299544334, + 0.0020461473613977432, + -0.001919563626870513, + -0.01588365249335766, + -0.015550719574093819, + 0.062091901898384094, + -0.005476044956594706, + 0.01356006134301424, + 0.004380142316222191, + 0.004688798449933529, + -0.02033662423491478, + 0.001631715800613165, + 0.0023669416550546885, + 0.00844816118478775, + 0.002238623797893524, + -0.012200587429106236, + -0.013435211963951588, + 0.025067038834095, + 0.012859515845775604, + -0.034319788217544556, + 0.004036806058138609, + 0.010064270347356796, + -0.006682925391942263, + 0.00536159984767437, + 0.010771752335131168, + -0.00867011584341526, + 0.006447098217904568, + -0.010965962894260883, + 0.01314389519393444, + -0.013768143951892853, + 0.023485610261559486, + -0.004231016617268324, + -0.010771752335131168, + 0.02667621336877346, + 0.017853502184152603, + 0.009162578731775284, + -0.014829366467893124, + -0.012727729976177216, + -0.015356509014964104, + 0.00991861242800951, + 0.01361554954200983, + 0.012797091156244278, + 0.009453894570469856, + -0.004543140530586243, + -0.005774297285825014, + 0.015606208704411983, + 0.004241420887410641, + 0.005614766851067543, + 0.004217144567519426, + -0.019823353737592697, + 0.0014401061926037073, + -0.026579108089208603, + 0.003603300079703331, + -0.011631827801465988, + -0.003766298294067383, + 0.010286225005984306, + -0.02749467082321644, + 0.011548594571650028, + 0.01872744970023632, + 0.028465723618865013, + -0.006970772985368967, + 0.019573653116822243, + 0.010445755906403065, + 0.007574213203042746, + 0.007595021277666092, + -0.015273275785148144, + -0.0071511114947497845, + 0.010175247676670551, + -0.014288350939750671, + -0.02150188758969307, + 0.0013932876754552126, + -0.007775359787046909, + -0.004695734940469265, + -0.00025186687707901, + -0.03237767890095711, + -0.017548315227031708, + -0.020752789452672005, + 8.111976785585284e-5, + -0.011735868640244007, + -0.0005024332203902304, + 0.016813088208436966, + 0.00536159984767437, + 0.028091175481677055, + 0.0232775267213583, + -0.015550719574093819, + 0.007435491308569908, + 0.010854984633624554, + -0.013525380752980709, + -0.00605520885437727, + 0.01061222143471241, + -0.008462033234536648, + 0.01771477982401848, + -0.04244888573884964, + -0.0017496293876320124, + -0.02488670125603676, + -0.020045308396220207, + -0.01889391615986824, + 0.015342636965215206, + 0.011423744261264801, + 0.00013427842350210994, + 0.0042032720521092415, + 0.014371584169566631, + 0.00885738991200924, + -0.014718389138579369, + -0.009599552489817142, + -0.0034455040004104376, + 0.009550999850034714, + -0.006710669491440058, + -0.0092804916203022, + -0.012457222677767277, + 0.0015320094535127282, + 0.028659934177994728, + -0.01347682811319828, + -0.011243406683206558, + 0.010834177024662495, + 0.003797510638833046, + -0.0070678782649338245, + 0.010868857614696026, + -0.002698139986023307, + -0.005032135173678398, + 0.0016603271942585707, + 0.019143614917993546, + 0.008441224694252014, + -0.010959026403725147, + -0.00883658230304718, + 0.004758159630000591, + 0.014787749387323856, + -0.014829366467893124, + -0.013268745504319668, + -0.013962354511022568, + -0.005569682456552982, + -0.014662900008261204, + -0.012693049386143684, + -0.006911816541105509, + -0.010917410254478455, + 0.01645241118967533, + 0.010584477335214615, + 0.024026624858379364, + 0.006554607767611742, + 0.016521772369742393, + -0.007837784476578236, + -0.02144639939069748, + 0.020322751253843307, + 0.009786826558411121, + -0.019989818334579468, + 0.026925912126898766, + -0.009502447210252285, + 0.00897530373185873, + 0.020877638831734657, + -0.00015909662761259824, + -0.0066482448019087315, + -0.004789371974766254, + -0.011715060099959373, + 0.00016245630104094744, + -0.008781093172729015, + 0.020641811192035675, + -0.033542945981025696, + 0.0185609832406044, + -0.011617954820394516, + 0.003481918480247259, + 9.65634171734564e-5, + -0.029409032315015793, + 0.02272263914346695, + -0.030019409954547882, + 0.0059476993046700954, + 0.007719871122390032, + -0.0012242203811183572, + -0.015384253114461899, + 1.3418359230854549e-5, + -0.00322181498631835, + 0.02044760063290596, + 0.004678394645452499, + 0.006422821898013353, + 0.008357991464436054, + 0.008413480594754219, + -0.002066955668851733, + 0.005257558077573776, + 0.030685273930430412, + -0.02749467082321644, + 0.0030952312517911196, + -0.00015302754763979465, + 0.0036622569896280766, + -0.00021404348080977798, + -0.01645241118967533, + 0.006173122674226761, + -0.004990518558770418, + -0.009974101558327675, + 0.028687680140137672, + -0.005170857068151236, + -0.028854144737124443, + -0.017437336966395378, + 0.011222598142921925, + -0.007289833389222622, + 0.003894616151228547, + -0.00408189045265317, + -0.006464438512921333, + 0.01761767454445362, + 0.012949684634804726, + -0.003367472905665636, + -0.005930359475314617, + -0.0008297300664708018, + 0.03218346834182739, + 0.015287147834897041, + 0.018144818022847176, + 0.005926891230046749, + -0.007927954196929932, + 0.006367333233356476, + 0.01571718603372574, + 0.0068459236063063145, + -0.009828443638980389, + -0.0028888825327157974, + -0.009419213980436325, + -0.0062598236836493015, + -0.00043090476538054645, + -0.00017481121176388115, + -0.029963919892907143, + -0.019767863675951958, + 0.012672241777181625, + 0.003377877175807953, + -0.010320905596017838, + 0.004504992160946131, + 0.011832973919808865, + 0.0068459236063063145, + 0.0010109355207532644, + 0.010258480906486511, + 0.011340511962771416, + 0.01671598292887211, + 0.026149069890379906, + 0.014593538828194141, + -0.01339359488338232, + 0.0023253250401467085, + -0.006949964910745621, + 0.01163876336067915, + 0.040090616792440414, + 0.0007217871607281268, + 0.019296210259199142, + -0.0128872599452734, + 0.0004291707300581038, + -9.667179256211966e-5, + -0.0013178576482459903, + 0.021085722371935844, + 0.008711731992661953, + -0.010605285875499249, + 0.01278321910649538, + -0.01567556895315647, + -0.011014515534043312, + 0.019074255600571632, + -0.0041200388222932816, + -0.0272865891456604, + -0.008378800004720688, + -0.0164940282702446, + -0.006131506059318781, + -0.0028368618804961443, + -0.018422262743115425, + -2.4777566068223678e-5, + -0.01231156475841999, + 0.005888742860406637, + 0.016188839450478554, + -0.007581149227917194, + 0.00082105997717008, + -0.004005593713372946, + -0.006773094646632671, + 0.01584203541278839, + -0.0005739616462960839, + -0.02594098635017872, + 0.014815494418144226, + 0.011201789602637291, + -0.02595485933125019, + -0.003416025545448065, + 0.017256999388337135, + 0.005684128031134605, + -0.029187077656388283, + 0.014884854666888714, + 0.0024709829594939947, + -0.008177652955055237, + 0.006620500236749649, + -0.0033917492255568504, + 0.012720794416964054, + 0.024137603119015694, + 0.0023270591627806425, + -0.003173262346535921, + 0.002710278145968914, + -0.02560805343091488, + 0.007220472674816847, + 0.015203915536403656, + -0.0005228079971857369, + -0.003818318946287036, + 0.009065473452210426, + -0.011597147211432457, + 0.004844860639423132, + -0.036206405609846115, + 0.0221677515655756, + -0.0020270731765776873, + -0.010952089913189411, + 0.019906586036086082, + -0.0047096069902181625, + -0.007816976867616177, + -0.020600195974111557, + -0.005829785950481892, + 0.0036206403747200966, + 0.011229533702135086, + 0.0028368618804961443, + -0.015800418332219124, + 0.026967529207468033, + -0.038093019276857376, + -0.011423744261264801, + -0.0020079987589269876, + -0.009114026091992855, + -0.008593819104135036, + -0.0032270171213895082, + 0.010237672366201878, + 0.030352341011166573, + 0.015620080754160881, + -0.014329967088997364, + 0.025760648772120476, + 0.024248579517006874, + -0.007213536184281111, + -0.016480155289173126, + -0.005649447441101074, + -0.01922684907913208, + -0.005455236881971359, + 0.003337994683533907, + 0.019434932619333267, + 0.006669053342193365, + 0.01577267423272133, + -0.013671038672327995, + -0.009481638669967651, + 0.007477107923477888, + -0.014995831996202469, + 0.006943028885871172, + -0.011701188050210476, + 0.035984449088573456, + 0.010653838515281677, + 0.01634143479168415, + -0.019989818334579468, + 0.014128820970654488, + 0.03395910933613777, + -0.019962074235081673, + -0.006974241230636835, + 0.0039050201885402203, + 0.014427072368562222, + -0.006346524693071842, + -0.005046007223427296, + 0.015037449076771736, + -0.004844860639423132, + -0.012949684634804726, + -0.013927673920989037, + -0.001909159473143518, + -0.0005553209339268506, + 0.006478310562670231, + -0.014662900008261204, + 0.0021588588133454323, + -0.015925269573926926, + 0.02650974690914154, + 0.01327568106353283, + -0.017589930444955826, + 0.0005934694199822843, + 0.028437979519367218, + 0.022237112745642662, + 0.0008912879275158048, + -0.010265417397022247, + -0.0016533910529688, + 0.009821507148444653, + -0.0075048524886369705, + -0.004480715841054916, + 0.003233953146263957, + 0.02388790249824524, + -0.009766018949449062, + -0.01258207205682993, + 0.013518444262444973, + -0.0044703115709125996, + 0.002476185094565153, + 0.00404027383774519, + -0.04272633045911789, + 0.007830848917365074, + 0.00562517112120986, + -0.020655684173107147, + -0.014045587740838528, + -0.017159894108772278, + -0.008912879042327404, + 0.01634143479168415, + -0.006353460717946291, + -0.008302503265440464, + -0.011125492863357067, + -0.017603803426027298, + 0.019906586036086082, + -0.0006064745830371976, + 0.01016831211745739, + -0.01600850187242031, + -0.01983722485601902, + 0.015259403735399246, + 0.02499767765402794, + 0.006901412270963192, + -0.0007790098898112774, + -0.00468186242505908, + -0.0024172281846404076, + 0.007442427333444357, + 0.001683736452832818, + 0.0032270171213895082, + -0.03296031057834625, + 0.043308962136507034, + -0.019240720197558403, + 0.01972624845802784, + -0.007664382457733154, + 0.015384253114461899, + -0.0032079429365694523, + 0.0012164172949269414, + 0.018186435103416443, + -0.00819846149533987, + 0.00880883727222681, + -0.027910836040973663, + -0.005184729117900133, + -0.0014409732539206743, + 0.028091175481677055, + -0.011506977491080761, + -0.009939420968294144, + 0.018380645662546158, + -0.006072549149394035, + 0.0015944342594593763, + 0.005115368403494358, + -0.012200587429106236, + -0.008129100315272808, + 0.007213536184281111, + -0.0005280100740492344, + 0.011909271590411663, + 0.006551139522343874, + -0.001295315334573388, + -0.011222598142921925, + 0.00983537919819355, + 0.0005678925663232803, + -0.013553124852478504, + 0.030740762129426003, + 0.006745350081473589, + -0.010827240534126759, + 0.005274898372590542, + -0.0030449447222054005, + -0.0050598797388374805, + -0.011035323143005371, + 0.008926751092076302, + -0.03251640126109123, + -0.010258480906486511, + 0.014094140380620956, + -0.0009701859671622515, + 0.00045561458682641387, + 0.013317298144102097, + -0.016854705289006233, + -0.013976226560771465, + -0.020267263054847717, + 0.003686533309519291, + 0.005458705127239227, + -0.007934889756143093, + 0.008219270035624504, + 0.019545909017324448, + -0.0074979159981012344, + -0.008794965222477913, + -0.004529268480837345, + -0.009502447210252285, + -0.0027137461584061384, + -0.002269836375489831, + -0.024248579517006874, + -0.00587833859026432, + -0.00704360194504261, + -0.020600195974111557, + 0.014274478890001774, + -0.029825199395418167, + 0.017076659947633743, + 0.01688244938850403, + 0.011895398609340191, + -0.01928233727812767, + 0.006904880050569773, + -0.008614626713097095, + 0.023749182000756264, + 0.013365850783884525, + -0.015134554356336594, + -0.0007274227100424469, + -0.007338386029005051, + 0.03395910933613777, + 0.0009433085797354579, + 0.012269947677850723, + 0.0006736679933965206, + 0.02538609877228737, + -0.00875334907323122, + 0.005396279972046614, + 0.007525660563260317, + -0.0018415326485410333, + -0.01983722485601902, + 0.005538470111787319, + -0.020350495353341103, + -0.003235687268897891, + 0.02005917951464653, + 0.010078142397105694, + 0.0004642847052309662, + 0.014024779200553894, + -0.014884854666888714, + 0.008628499694168568, + 0.002280240412801504, + 0.02312493324279785, + 0.016147224232554436, + -0.013733463361859322, + 0.02723109908401966, + 0.015911396592855453, + 0.008302503265440464, + 0.019018765538930893, + -0.005569682456552982, + -0.0015822960995137691, + 0.029131589457392693, + 0.0016811355017125607, + -0.013130023144185543, + -0.009745210409164429, + 0.012880324386060238, + 0.0014114949153736234, + -0.013428275473415852, + 0.025136400014162064, + 0.010820304974913597, + 0.003308516228571534, + 0.00550032127648592, + -0.0047512236051261425, + -0.0241098590195179, + 0.0006814710795879364, + -0.002985987812280655, + 0.03440301865339279, + 1.72183081303956e-5, + 0.0005366801633499563, + 0.008066675625741482, + -0.005160452798008919, + -0.008642371743917465, + -0.029658732935786247, + 0.0037836385890841484, + 0.01214509829878807, + 0.02200128510594368, + 0.005965039599686861, + 0.010757879354059696, + -0.009870059788227081, + -0.012103482149541378, + -0.019462676718831062, + -0.011604082770645618, + 0.028715424239635468, + 0.005722276400774717, + -0.028798656538128853, + 0.0029010206926614046, + 0.03193376958370209, + 0.023749182000756264, + 0.01202718447893858, + 0.013421338982880116, + -0.011611019261181355, + 0.020142413675785065, + -0.005926891230046749, + -0.003462844295427203, + 0.0016057054745033383, + 0.007962634786963463, + -0.013872185721993446, + 0.014038651250302792, + 0.001644721021875739, + 0.0006879736902192235, + 0.012172842398285866, + -0.019823353737592697, + 0.005368535872548819, + 0.019101999700069427, + 0.014163501560688019, + 0.021127337589859962, + -0.007636637892574072, + -0.003114305669441819, + -0.012131226249039173, + -0.015564591623842716, + 0.020752789452672005, + 0.0015476156258955598, + -0.002543811919167638, + -0.0009511117241345346, + 0.0012753740884363651, + -0.007907145656645298, + 0.0032096768263727427, + 0.005476044956594706, + -0.0065650115720927715, + 0.020919255912303925, + 0.004688798449933529, + 0.004071486182510853, + 0.003908488433808088, + 0.010626094415783882, + 0.010431883856654167, + -0.00844816118478775, + 0.018755193799734116, + -0.038536932319402695, + 0.014773877337574959, + 0.021793203428387642, + -0.0011539923725649714, + -0.0017791077261790633, + -0.01722925342619419, + 0.021349294111132622, + 0.0040541463531553745, + 0.017201509326696396, + 0.019878841936588287, + 0.0014236330753192306, + 0.01194395124912262, + 0.02612132579088211, + -0.01867196150124073, + 0.020405985414981842, + 0.005725744646042585, + 0.013768143951892853, + -0.011631827801465988, + 0.005552342161536217, + 0.0063014402985572815, + -0.00012615018931683153, + 0.007851656526327133, + -0.02822989784181118, + -0.03628963604569435, + -0.009190322831273079, + -0.01141680870205164, + 0.019254593178629875, + -0.004633309785276651, + 0.015869779512286186, + -0.005465641152113676, + 0.004314249847084284, + -0.00819846149533987, + 0.0029634456150233746, + 0.010237672366201878, + 0.014163501560688019, + -0.02599647454917431, + 0.0007525660330429673, + -0.024969933554530144, + 0.019143614917993546, + -0.0035165990702807903, + 0.005503789521753788, + 0.002422430319711566, + 0.0254970770329237, + -0.0032304851338267326, + 0.010993706993758678, + -0.0036414486821740866, + 0.008489777334034443, + 0.01206186506897211, + -0.006159250158816576, + -0.013351978734135628, + 0.022264856845140457, + -0.006374269258230925, + 0.027480799704790115, + -0.006128037814050913, + 0.016965683549642563, + -0.00875334907323122, + -0.007199664134532213, + -0.027536287903785706, + 0.0036414486821740866, + -0.005330387037247419, + -0.013074534945189953, + -0.0038634035736322403, + -0.007269025314599276, + -0.019518164917826653, + 0.007851656526327133, + 0.010813368484377861, + 0.002113774186000228, + 0.009904740378260612, + 0.0034264298155903816, + -0.006252887658774853, + -0.008524457924067974, + -0.008219270035624504, + 0.00425182469189167, + -0.005465641152113676, + -0.015120682306587696, + 0.010709326714277267, + -0.01610560715198517, + 0.019101999700069427, + -0.010986770503222942, + -0.0031455180142074823, + 0.01086192112416029, + -0.020933127030730247, + 0.028715424239635468, + 0.0011756677413359284, + -0.00038733743713237345, + -0.031656328588724136, + -0.010029589757323265, + 0.007560341153293848, + -0.007484043948352337, + -0.00656847981736064, + -0.007705999072641134, + 0.013025982305407524, + -0.01695181056857109, + 0.00639160955324769, + -0.01236705295741558, + 0.004796307999640703, + -0.014454817399382591, + 0.0007213536300696433, + 0.009904740378260612, + 0.02451215125620365, + 0.018214179202914238, + -0.03312677890062332, + 0.030130386352539062, + 0.018533239141106606, + -0.0006840721471235156, + 0.0040541463531553745, + 0.028077302500605583, + 0.01211041770875454, + -1.210429491038667e-5, + -0.003811382921412587, + -0.0032825057860463858, + -0.012817899696528912, + -0.005122304428368807, + 0.0022785065229982138, + -0.010848049074411392, + 0.002689469838514924, + -0.030296852812170982, + 0.006284100003540516, + 0.007008921820670366, + 0.0024276324547827244, + -0.016147224232554436, + -0.011708124540746212, + -0.009766018949449062, + -0.009016920812427998, + -0.01778414100408554, + 0.004726947285234928, + 0.0043558659963309765, + -0.009814571589231491, + -0.009648105129599571, + -0.018089329823851585, + 0.005538470111787319, + 0.016410795971751213, + 0.014413200318813324, + -0.01656338945031166, + 0.017021171748638153, + -0.007310641463845968, + -0.003046678612008691, + 0.009897803887724876, + 0.006502586882561445, + -0.029492266476154327, + -0.009231938980519772, + -0.002786575350910425, + -0.009231938980519772, + -0.007102558854967356, + 0.0009094951674342155, + 0.003079625079408288, + -0.012977429665625095, + 0.01258207205682993, + -0.0008535729139111936, + -0.020322751253843307, + -0.0035356732551008463, + 0.00794876180589199, + -0.01275547407567501, + -0.0005466507864184678, + 0.040978435426950455, + 0.002803915413096547, + -0.003202740801498294, + 0.01617496833205223, + -0.018477750942111015, + -0.008968368172645569, + -0.0023981539998203516, + 0.006100293714553118, + -0.007449363358318806, + 0.024706361815333366, + -0.021848691627383232, + -0.019268466159701347, + 0.0072620888240635395, + -0.002432834589853883, + 0.025372227653861046, + 0.004858733154833317, + -0.015065193176269531, + 0.01994820311665535, + 0.011548594571650028, + 0.028313130140304565, + -0.0005254090065136552, + -0.0063430569134652615, + 0.029520010575652122, + -0.013802824541926384, + 0.0241098590195179, + -0.01645241118967533, + -0.01008507888764143, + -0.02771662548184395, + 0.009814571589231491, + -0.0022750385105609894, + 0.005222877953201532, + -0.004935029894113541, + -0.005770829040557146, + 0.009883931837975979, + -0.006679457146674395, + 0.00024363026022911072, + 0.007844720967113972, + -0.01069545466452837, + -0.009550999850034714, + 0.0157865472137928, + 0.010452691465616226, + -0.0077406796626746655, + -0.01192314364016056, + -0.028368618339300156, + -0.0008076212834566832, + -0.030241364613175392, + -0.020683428272604942, + 0.011222598142921925, + 0.009072409011423588, + -0.00412350706756115, + 0.00162131164688617, + -0.011208726093173027, + -0.014468689449131489, + 0.001869276980869472, + -0.009606488049030304, + 0.0018137881997972727, + 0.0010178715456277132, + 0.018699705600738525, + 0.0006771360640414059, + 0.01739571988582611, + 0.02105797827243805, + -0.0013508039992302656, + -0.017742525786161423, + 0.014593538828194141, + 0.011132428422570229, + -0.023041699081659317, + -0.016313690692186356, + -0.014343840070068836, + -0.006384673528373241, + -0.010230736806988716, + 0.01795060746371746, + 0.0013265276793390512, + 0.009023856371641159, + -0.014676772058010101, + -0.01845000684261322, + -0.00328423990868032, + 0.001591833308339119, + 0.00613844208419323, + 0.014524177648127079, + -0.013511508703231812, + 0.0021103061735630035, + 0.008094419725239277, + 0.0027345544658601284, + 0.014551922678947449, + 0.013157768175005913, + -0.016410795971751213, + -0.012422542087733746, + -0.02200128510594368, + -0.0005947699537500739, + 0.006207802798599005, + -0.019212976098060608, + 0.01200637686997652, + 0.014524177648127079, + -0.008357991464436054, + -0.027869220823049545, + -0.005729212425649166, + 0.011305831372737885, + 0.008385736495256424, + -0.007567277178168297, + -0.020086923614144325, + -0.0057569569908082485, + -0.016577262431383133, + -0.01671598292887211, + 0.003122975816950202, + 0.005555810406804085, + -0.008455096744000912, + 0.0035998320672661066, + -0.008184589445590973, + 0.03182279318571091, + -0.002219549613073468, + 0.0007248217007145286, + -0.01983722485601902, + 0.009953293018043041, + 0.02562192641198635, + 0.003492322750389576, + -0.01214509829878807, + 0.018630344420671463, + -0.013761207461357117, + 0.003265165723860264, + -0.010591413825750351, + 0.003655320731922984, + 0.014746133238077164, + -0.008677052333950996, + 0.003081359202042222, + -0.00014479093078989536, + -0.009301300160586834, + -0.009731338359415531, + -0.019365571439266205, + 0.012068801559507847, + -0.02005917951464653, + 0.02150188758969307, + 0.022264856845140457, + -0.018921660259366035, + 0.011548594571650028, + 0.016022374853491783, + -0.010584477335214615, + -0.025469332933425903, + -0.011222598142921925, + -0.006426289677619934, + -0.02212613634765148, + -0.01106306817382574, + -0.008496713824570179, + 0.010404138825833797, + 0.0017496293876320124, + -0.004959306214004755, + 0.009828443638980389, + -0.009384533390402794, + -0.00433505792170763, + 0.010993706993758678, + 0.0019230316393077374, + 0.021085722371935844, + -0.007886337116360664, + 0.012873387895524502, + 0.00794182624667883, + -0.010376394726336002, + 0.004917689599096775, + 0.009703593328595161, + 0.015620080754160881, + -0.0020184030290693045, + 0.015217787586152554, + -0.0030570828821510077, + -0.01008507888764143, + 0.006908348295837641, + -0.0031801986042410135, + -0.007962634786963463, + 0.0048622009344398975, + 0.022764256224036217, + 0.011132428422570229, + -0.02384628728032112, + 0.004643714055418968, + 0.0044703115709125996, + 0.0003045378252863884, + 0.003811382921412587, + 0.008260886184871197, + -0.015453614294528961, + 0.012020248919725418, + -0.013906865380704403, + 0.003950104583054781, + -0.010737071745097637, + 0.005760424770414829, + -0.026357151567935944, + -0.01728474348783493, + 0.009169514290988445, + -0.00507028354331851, + -0.0034004193730652332, + 0.015522975474596024, + 0.00398825341835618, + -0.0016525241080671549, + -0.004935029894113541, + -0.006949964910745621, + 0.005191665142774582, + -0.015744930133223534, + 0.0017262200126424432, + 0.037926554679870605, + 0.026482000946998596, + 0.008441224694252014, + -0.008843517862260342, + -0.007206600159406662, + -0.005843658000230789, + 0.002913158852607012, + 0.008989175781607628, + -0.011423744261264801, + 0.003929296508431435, + -0.014218989759683609, + -0.0042448886670172215, + -0.0027137461584061384, + -0.005621703341603279, + -0.005281834397464991, + -0.011097747832536697, + 0.03196151554584503, + -0.002826457843184471, + -0.007296769414097071, + -0.005202069412916899, + -0.006592756137251854, + 0.008690924383699894, + -0.011382128112018108, + -0.000841868226416409, + -0.0023339951876550913, + -0.0002412459725746885, + -0.013802824541926384, + 0.0049003493040800095, + 0.005684128031134605, + -0.012020248919725418, + 0.007622765842825174, + 0.00488994549959898, + 0.017256999388337135, + -0.016355305910110474, + 0.01239479798823595, + -0.013116151094436646, + -0.0028611382003873587, + 0.0027137461584061384, + -0.011264214292168617, + 0.014399328269064426, + -0.006516458932310343, + 0.009211131371557713, + -0.01684083230793476, + -0.011382128112018108, + -0.02116895467042923, + -0.006010124459862709, + 0.0016889385879039764, + 0.006911816541105509, + 0.018352901563048363, + 0.0021380505058914423, + 0.007914082147181034, + 0.01339359488338232, + 0.01867196150124073, + -0.014898726716637611, + -0.007664382457733154, + -0.014440945349633694, + 0.01732635870575905, + -0.01706278882920742, + 0.021196698769927025, + 0.009675849229097366, + -0.0021103061735630035, + 0.012720794416964054, + -0.011271150782704353, + -0.004990518558770418, + 0.008642371743917465, + 0.002712012268602848, + -0.006544203497469425, + -0.012963557615876198, + -0.006703733466565609, + -0.02545545995235443, + -0.00613844208419323, + -0.02750854380428791, + -0.01610560715198517, + 0.0160639900714159, + -0.0006862396840006113, + -0.004834456369280815, + -0.01239479798823595, + 0.007567277178168297, + 0.005205537658184767, + -0.01102838758379221, + 0.0008028527372516692, + 0.017146021127700806, + -0.007518724538385868, + 0.03162858262658119, + 0.0076158298179507256, + -0.027425309643149376, + -0.004411355126649141, + 0.006114165764302015, + -0.015037449076771736, + -0.003216613084077835, + 0.016202712431550026, + -0.02749467082321644, + 0.006048272829502821, + 0.039535727351903915, + 0.013962354511022568, + -0.002966913627460599, + -0.009592615999281406, + -0.018033841624855995, + 0.002167528960853815, + 0.012991301715373993, + -0.0034350999630987644, + 0.007775359787046909, + 0.023971136659383774, + 6.0528247558977455e-5, + -0.014995831996202469, + -0.01933782547712326, + -0.005202069412916899, + -0.0008847853168845177, + 0.006904880050569773, + 0.001869276980869472, + -0.007823912426829338, + -0.0077684237621724606, + 0.029020611196756363, + 0.007324513979256153, + 0.010681582614779472, + 0.0015519506996497512, + 2.0198660422465764e-5, + -0.0066933296620845795, + -0.007116430904716253, + 0.018630344420671463, + -0.009557935409247875, + -0.01584203541278839, + -0.026995273306965828, + 0.005000922828912735, + -0.011798293329775333, + 0.005205537658184767, + 0.022750383242964745, + -0.003963977098464966, + 0.02712012268602848, + -0.009557935409247875, + -0.004671458620578051, + 0.005826317705214024, + 0.002342665335163474, + -0.011763612739741802, + -0.0024501746520400047, + -0.002517801709473133, + 0.021238315850496292, + 0.017187638208270073, + -0.0001658159599173814, + 0.00867011584341526, + -0.013566996902227402, + -0.0073453220538794994, + -0.00025078310864046216, + -0.013816696591675282, + 0.005802041385322809, + -0.0017747727688401937, + -0.016660494729876518, + -0.0020496153738349676, + 0.013671038672327995, + 0.011458424851298332, + -0.0022993148304522038, + -0.008933687582612038, + -0.014981959946453571, + 0.0034680464304983616, + -0.0022108794655650854, + -0.007560341153293848, + 0.00794182624667883, + 0.0028299258556216955, + 0.0033119842410087585, + -0.004543140530586243, + 0.006984645500779152, + 0.0053650676272809505, + -0.0012467626947909594, + 0.006322248373180628, + -0.0006515592103824019, + 0.007921017706394196, + -0.015633953735232353, + 0.004827520344406366, + 0.006089889444410801, + -0.0045951614156365395, + 0.01978173665702343, + 0.0018571388209238648, + -0.004605565685778856, + 0.006558075547218323, + -0.004272633232176304, + 0.015120682306587696, + 0.012047993019223213, + 0.003462844295427203, + 0.004133911337703466, + -0.0010603552218526602, + -0.00799731444567442, + 0.01878293976187706, + 0.006644777022302151, + -0.013234064914286137, + -0.0160639900714159, + 0.001273639965802431, + -0.010598349384963512, + -0.014593538828194141, + 0.00819846149533987, + -0.03839820995926857, + 0.0037628302816301584, + 0.014649027958512306, + 0.015203915536403656, + -0.009550999850034714, + -0.0006649979040957987, + 0.028937378898262978, + 0.012630624696612358, + -0.014017843641340733, + -0.006044804584234953, + -0.019379442557692528, + -0.029991663992404938, + -0.006963836960494518, + -0.014760005287826061, + -0.009335980750620365, + 0.012103482149541378, + 0.003936232533305883, + 0.008399608545005322, + -0.001509467139840126, + 0.005084156058728695, + 0.009870059788227081, + -0.011493105441331863, + 0.0049003493040800095, + -0.00404027383774519, + 0.005639043170958757, + -0.00037368200719356537, + 0.005684128031134605, + -0.006200866773724556, + 0.008240077644586563, + -0.0015692909946665168, + -0.00015584533684886992, + 0.029658732935786247, + 0.0009467766503803432, + -0.020933127030730247, + 0.0019473080756142735, + 0.0002221717149950564, + 0.004581289365887642, + 0.015467486344277859, + -0.02333301492035389, + -0.02234809100627899, + -0.0017010767478495836, + -0.024193091318011284, + 0.019018765538930893, + 0.023152677342295647, + 0.007518724538385868, + 0.02571903169155121, + 0.01756218634545803, + 0.023263655602931976, + -0.010445755906403065, + 0.0018033840460702777, + -0.012013312429189682, + 0.012013312429189682, + 0.003376143053174019, + 0.022847488522529602, + -0.025524821132421494, + -0.012034120969474316, + -0.004650650080293417, + -0.006838987581431866, + -0.00639160955324769, + -0.0272865891456604, + -0.0053650676272809505, + -0.0066135642118752, + -0.002760564908385277, + 0.013941545970737934, + 0.014177373610436916, + -0.003717745654284954, + 0.007137239445000887, + 0.0042899735271930695, + -0.004796307999640703, + 0.01063996646553278, + -0.013074534945189953, + -0.016591133549809456, + -0.0013273947406560183, + -0.029298055917024612, + -0.010494308546185493, + -0.006766158621758223, + 0.0010907006217166781, + 0.022708768025040627, + 0.009731338359415531, + -0.007078282535076141, + -0.017256999388337135, + 0.001344734919257462, + -0.005587022751569748, + -0.007643573917448521, + -0.006353460717946291, + -0.0115000419318676, + 0.0009918612195178866, + 0.006249419413506985, + -0.012977429665625095, + -0.019129743799567223, + 0.018713578581809998, + 0.019795607775449753, + -0.020960872992873192, + -0.007185792084783316, + -0.001796448021195829, + 0.024650873616337776, + 0.020530834794044495, + 0.012089609168469906, + -0.011999440379440784, + 0.020461473613977432, + -0.016591133549809456, + 0.023430120199918747, + -0.011999440379440784, + 0.012519647367298603, + 0.0038079149089753628, + -0.004529268480837345, + 0.022306473925709724, + -0.00799731444567442, + 0.0018137881997972727, + 0.0082470141351223, + -0.006363864988088608, + -0.017159894108772278, + -0.005333855282515287, + -0.012880324386060238, + 0.019240720197558403, + -0.01063996646553278, + 0.03495790809392929, + 0.006030932534486055, + 0.007178856059908867, + -0.003787106601521373, + -0.01236705295741558, + 0.0075048524886369705, + 0.022237112745642662, + 0.009252747520804405, + 0.021016361191868782, + 0.0035408753901720047, + 0.0059060826897621155, + 0.004525800701230764, + -0.007886337116360664, + -0.0031489860266447067, + -0.009329044260084629, + 0.012269947677850723, + 0.00048205844359472394, + 0.0019854565616697073, + 0.01194395124912262, + -0.02834087423980236, + -0.003443770110607147, + -0.030324596911668777, + 0.034541741013526917, + -0.00013677107926923782, + 0.005392812192440033, + -0.011749740689992905, + 0.010522052645683289, + 0.009322108700871468, + -0.002545546041801572, + -0.002831659745424986, + 0.007178856059908867, + 0.004883009474724531, + 0.005233281757682562, + -0.04039580374956131, + 0.025635799393057823, + 0.012672241777181625, + -0.006405481602996588, + -0.00850364938378334, + 0.020919255912303925, + -0.013234064914286137, + 0.014954215846955776, + 0.01258207205682993, + 0.0033050482161343098, + 0.004140847362577915, + 0.006173122674226761, + -0.021807074546813965, + -0.004241420887410641, + -0.02127993293106556, + -0.0038356592413038015, + -0.008351055905222893, + 0.01833902858197689, + 0.0037524262443184853, + 0.0014773877337574959, + 0.0017062787665054202, + -0.01693793758749962, + -0.017146021127700806, + 0.013788952492177486, + 0.029714221134781837, + 0.05362986773252487, + 0.02460925653576851, + 0.0073453220538794994, + 0.007823912426829338, + 0.03154534846544266, + -0.036539334803819656, + -0.0029617114923894405, + 0.003058816771954298, + -0.02356884256005287, + -0.02127993293106556, + -0.0031073694117367268, + -0.00673841405659914, + 0.019393315538764, + 0.011285022832453251, + -0.008205397985875607, + -0.007456299848854542, + -0.019296210259199142, + -0.01245028618723154, + 0.000554887403268367, + 0.004099230747669935, + -0.003337994683533907, + 0.014274478890001774, + -0.015231659635901451, + 0.006943028885871172, + 0.006460970267653465, + 0.008094419725239277, + -0.019851097837090492, + -0.004671458620578051, + -0.027217227965593338, + 0.007525660563260317, + 0.024262452498078346, + -0.015633953735232353, + -0.018880045041441917, + -0.005677192006260157, + -0.0070401341654360294, + 0.01211041770875454, + 0.002174464985728264, + -0.001950776088051498, + 0.0005154383834451437, + -0.030019409954547882, + -0.007057474460452795, + -0.015814291313290596, + -0.008607691153883934, + -0.024747978895902634, + -0.023027827963232994, + -0.005507257767021656, + 0.00704360194504261, + -0.024470534175634384, + 0.008677052333950996, + -0.009114026091992855, + -0.011347447521984577, + -0.004966242238879204, + -0.024082113057374954, + -0.012353180907666683, + -0.008427352644503117, + 0.012693049386143684, + 0.039813172072172165, + -0.0017123478464782238, + -0.013518444262444973, + -0.014565794728696346, + -0.017978351563215256, + -0.0030345404520630836, + 0.015481359325349331, + 0.023360760882496834, + -0.013872185721993446, + 0.017964480444788933, + -0.006162718404084444, + -0.002999860094860196, + -0.009259684011340141, + -0.018408389762043953, + 0.002569822361692786, + -0.02122444286942482, + -0.02061406709253788, + -0.005375471897423267, + -0.021182827651500702, + -0.011486169882118702, + -0.019212976098060608, + 0.0030761570669710636, + -0.008788029663264751, + 0.029409032315015793, + 0.0011999440612271428, + 0.005732680670917034, + 0.00472347903996706, + -0.0031767303589731455, + -0.019393315538764, + 0.005812445655465126, + -0.006419353652745485, + 0.004185931757092476, + -0.02211226336658001, + -0.006620500236749649, + -0.010126695036888123, + -0.010230736806988716, + -0.032100237905979156, + -0.0029721157625317574, + 0.012263012118637562, + -0.006578884087502956, + 0.000739560869988054, + -0.01883842796087265, + 0.0028091175481677055, + 0.008045867085456848, + -0.0010993706528097391, + 0.014593538828194141, + 0.0008397007477469742, + 0.018921660259366035, + -0.006398545578122139, + -0.04555625841021538, + 0.010459627956151962, + 0.005063347518444061, + 0.006620500236749649, + 0.014399328269064426, + -0.0010837644804269075, + -0.009925548918545246, + -0.002065221546217799, + 0.01700729876756668, + -0.004158187657594681, + 0.024373428896069527, + -0.010522052645683289, + 0.016605006530880928, + 0.0017895118799060583, + 0.020627940073609352, + -0.0164940282702446, + 0.012720794416964054, + 0.015800418332219124, + 0.012609816156327724, + -0.005687595810741186, + -0.005150048993527889, + -0.0026426513213664293, + 0.012380925007164478, + -0.0037212136667221785, + -0.002568088239058852, + 0.009440022520720959, + -0.0016507901018485427, + 0.0009632498840801418, + 0.0059927841648459435, + -0.02700914442539215, + -0.020988617092370987, + 0.020128540694713593, + -0.011382128112018108, + 0.01634143479168415, + -0.0038842118810862303, + -0.026995273306965828, + 0.023263655602931976, + 0.01155553013086319, + -0.0006550272810272872, + -0.008746412582695484, + -0.002217815723270178, + -0.021321548148989677, + 0.023790797218680382, + 0.010959026403725147, + 0.002197007415816188, + 0.023263655602931976, + -0.010626094415783882, + -0.0012779750395566225, + 0.0016958746127784252, + -0.008607691153883934, + 0.015287147834897041, + 0.0020236049313098192, + 0.03462497517466545, + -0.021598992869257927, + 0.002065221546217799, + -0.003852999536320567, + 0.0024241644423455, + 0.002464046934619546, + 0.009481638669967651, + 0.000658061821013689, + -0.00686326390132308, + -0.0022108794655650854, + 0.018644217401742935, + -0.013830568641424179, + -0.013677975162863731, + -0.009724401868879795, + -0.003315452253445983, + -0.010355586186051369, + -0.0016776673728600144, + 0.0034264298155903816, + -0.021252188831567764, + -0.011056131683290005, + -0.018352901563048363, + -0.03662256896495819, + -0.010161375626921654, + 0.012429477646946907, + 0.02268102392554283, + 0.019323954358696938, + -0.0031056355219334364, + -0.0017383581725880504, + -0.003114305669441819, + 0.002464046934619546, + 0.0010941686341539025, + 0.01693793758749962, + -0.006904880050569773, + -0.009849251247942448, + 0.006447098217904568, + -0.02684267796576023, + 0.0025403439067304134, + -0.0070678782649338245, + -0.0007807439542375505, + -0.0004152985638938844, + 0.014746133238077164, + -0.0027154802810400724, + -0.010820304974913597, + -0.003133379854261875, + -0.027813730761408806, + -0.007969570346176624, + -0.028521213680505753 + ], + "aed67281-3a13-42b8-b9ec-2031d631c4f1": [ + 0.014342661015689373, + -0.030394116416573524, + -0.01962311379611492, + -0.004454068373888731, + -0.049414947628974915, + -0.0004967932472936809, + -0.0027662846259772778, + 0.037201277911663055, + 0.015435168519616127, + 0.04725794866681099, + -0.0071993437595665455, + 0.007675564847886562, + -0.019132886081933975, + 1.9081127902609296e-5, + -0.016051454469561577, + -0.0013927718391641974, + -0.03260714188218117, + 0.03868596628308296, + 0.001497820601798594, + 0.019693145528435707, + 0.04823840409517288, + -0.027228645980358124, + -0.00960145890712738, + 0.03700518608093262, + 0.0011073893401771784, + -0.004506593104451895, + 0.018194450065493584, + -0.008410906419157982, + -0.019076859578490257, + -0.01418858952820301, + 0.006358953192830086, + 0.022592492401599884, + 0.05479344725608826, + -0.015379142016172409, + 0.0015652269357815385, + -0.013215137645602226, + -0.0004186631995253265, + 0.02180812880396843, + -0.024301286786794662, + -0.0055605825036764145, + -0.0181664377450943, + 0.03185079246759415, + 0.021079789847135544, + 0.017522137612104416, + -0.04039476066827774, + 0.04064687713980675, + 0.04916283115744591, + 0.0056341164745390415, + -0.01263386756181717, + 0.008011721074581146, + 0.0018313504988327622, + 0.03672505542635918, + 0.012668883427977562, + 0.013649338856339455, + 0.007955694571137428, + 0.0067266239784657955, + -0.017676210030913353, + 0.05994784086942673, + 0.03591267764568329, + -0.040422774851322174, + 0.0044015441089868546, + 0.024021156132221222, + 0.029637765139341354, + 0.0010347305797040462, + 0.020701615139842033, + -0.027774900197982788, + 0.0019311468349769711, + -0.030057959258556366, + -0.03411984443664551, + 0.007178333587944508, + -0.006369458045810461, + -0.01320113055408001, + -0.03608075529336929, + 0.008698039688169956, + -0.023530928418040276, + -0.02885339967906475, + 0.03381170332431793, + -0.020505523309111595, + -0.0015074501279741526, + 0.025057638064026833, + -0.03538043051958084, + 0.0023320831824094057, + 0.02601007930934429, + 0.020687608048319817, + 0.06045207381248474, + 0.03137456998229027, + -0.032102908939123154, + -0.03316740319132805, + -0.036781083792448044, + -0.018754709511995316, + -0.006796656642109156, + 0.004107407759875059, + 0.022690538316965103, + -0.0040233684703707695, + -0.03462408110499382, + 0.0013595063937827945, + 0.04919084534049034, + 0.008950157091021538, + -0.02451138384640217, + -0.02952571213245392, + -0.029161542654037476, + 0.013852433301508427, + -0.03638890013098717, + 0.0028415697161108255, + 0.014251618646085262, + -0.010091686621308327, + 0.03022603690624237, + -0.019595099613070488, + -0.02913353033363819, + 0.030254051089286804, + 0.033139389008283615, + -0.018334515392780304, + -0.011268232949078083, + -0.017199987545609474, + 0.0007134563638828695, + -0.0726657509803772, + -0.013446244411170483, + -0.02795698307454586, + 0.015463181771337986, + -0.07524294406175613, + 0.04075893014669418, + 0.048126351088285446, + 0.017242006957530975, + -0.009272306226193905, + 0.022452427074313164, + -0.019048847258090973, + -0.007773610297590494, + -0.008382893167436123, + 0.0207156203687191, + 0.017760248854756355, + 0.026934508234262466, + -0.034652091562747955, + -0.02813906781375408, + 0.0056341164745390415, + -0.028629295527935028, + 0.0125568313524127, + 0.01802637241780758, + 0.029833855107426643, + -0.03975046053528786, + 0.05126380920410156, + -0.00912523828446865, + -0.026332229375839233, + -0.0031339554116129875, + -0.020617574453353882, + 0.011457321234047413, + -0.0024283777456730604, + -0.05053547024726868, + 0.05966771021485329, + -0.005574589129537344, + 0.007794620003551245, + -0.045577168464660645, + 0.0021622541826218367, + 0.04087098315358162, + 0.010378819890320301, + -0.022886628285050392, + 0.03714524954557419, + 0.01406953390687704, + 0.0018943798495456576, + 0.01265487726777792, + -0.01411855686455965, + -0.0024633940774947405, + -0.01844656653702259, + 0.028559263795614243, + 0.00412841746583581, + 0.02785893902182579, + 0.018768716603517532, + 0.04686576500535011, + 0.005879230331629515, + -0.041459254920482635, + 0.010441849008202553, + 0.022032232955098152, + -0.01882474310696125, + 0.008172795176506042, + -0.00738142803311348, + -0.018838748335838318, + -0.018838748335838318, + -0.001763068838045001, + -0.00044667618931271136, + 0.04187944903969765, + -0.024917572736740112, + -0.0017149214399978518, + -0.02757880836725235, + -0.04428856819868088, + 0.020183373242616653, + 0.0015582236228510737, + 0.02530975453555584, + 0.013761390931904316, + 0.013873443007469177, + -0.01212963368743658, + 0.043588243424892426, + -0.0026139640249311924, + -0.0238810908049345, + 0.020043307915329933, + 0.04977911710739136, + -0.015267089940607548, + -0.016107480973005295, + -0.029861869290471077, + -0.022060245275497437, + 0.022872623056173325, + 0.03022603690624237, + -0.011751458048820496, + -0.04370029643177986, + -0.07507486641407013, + 0.04039476066827774, + -0.02652832120656967, + 0.01934298314154148, + -0.010946083813905716, + -0.024245260283350945, + 0.019034840166568756, + -0.04039476066827774, + 0.02724265120923519, + -0.014398687519133091, + -0.000449083570856601, + -0.00965048186480999, + -0.008621003478765488, + -0.00808875635266304, + -0.022816596552729607, + 0.025183696299791336, + 0.012262695468962193, + -0.00962947215884924, + -0.0365009531378746, + -0.0005046718870289624, + 0.019455036148428917, + -0.02521170862019062, + -0.03972244635224342, + -0.006772145163267851, + -0.010869047604501247, + 0.028489230200648308, + -0.048042312264442444, + -0.026850469410419464, + 0.053953055292367935, + 0.007213349919766188, + -0.017620183527469635, + -0.04005860537290573, + -0.009538429789245129, + 0.0018313504988327622, + -0.008333870209753513, + -0.004580127075314522, + 0.024665454402565956, + 0.005980777554214001, + 0.043924398720264435, + 0.03832179680466652, + -0.02152799814939499, + -0.016639728099107742, + 0.027774900197982788, + 0.01749412529170513, + -0.0068211681209504604, + 0.03977847471833229, + 0.01812441647052765, + -0.004583628848195076, + 0.02549183927476406, + 0.058771293610334396, + -0.004159932024776936, + -0.017185982316732407, + 0.00822882167994976, + 0.032327014952898026, + 0.019272951409220695, + -0.011821489781141281, + -0.007283382583409548, + -0.03367163613438606, + -0.008193805813789368, + -0.009895595721900463, + -0.010252761654555798, + -0.008382893167436123, + 0.04711788147687912, + -0.014412693679332733, + 0.013754387386143208, + -0.037397369742393494, + -0.01024575810879469, + 0.005833709146827459, + -0.02743874303996563, + 0.009069211781024933, + 0.01052588876336813, + -0.01603744737803936, + -0.00747247040271759, + -0.008060744032263756, + 0.04199150204658508, + -0.006288920529186726, + 0.02099575102329254, + 0.0014610534999519587, + 0.009307322092354298, + 0.0015757317887619138, + -0.007479473482817411, + 0.028881413862109184, + -0.031430598348379135, + -0.023614967241883278, + 0.0076825679279863834, + 0.02005731500685215, + -0.035548508167266846, + -0.03213092312216759, + -0.010224748402833939, + -0.03563254699110985, + 0.027466755360364914, + -0.013901456259191036, + 0.010140709578990936, + 0.002971129957586527, + -0.0017998359398916364, + -0.008284847252070904, + 0.005070354789495468, + -0.011786473914980888, + -0.02185014821588993, + -0.02312473952770233, + 0.015113018453121185, + 0.00671611912548542, + -0.003827277570962906, + -0.01423761248588562, + 0.027648840099573135, + 0.018796728923916817, + -0.051011692732572556, + 0.020925719290971756, + 0.03112245351076126, + 0.008193805813789368, + -0.010469862259924412, + -0.003718727035447955, + -0.005578090436756611, + 0.005613106768578291, + 0.047706156969070435, + -0.01104412879794836, + -0.004135420545935631, + -0.03305535018444061, + 0.0019328977214172482, + -0.0017096690135076642, + -0.057594750076532364, + 0.020701615139842033, + 0.02729867771267891, + -0.04409247636795044, + -0.011842499487102032, + 0.028685322031378746, + -0.016205526888370514, + -0.03243906423449516, + -0.001628256170079112, + -0.010827028192579746, + -0.029833855107426643, + -0.025365781038999557, + -0.016009435057640076, + -0.028251120820641518, + -0.027088580653071404, + -0.037201277911663055, + -0.011464323848485947, + 0.024063175544142723, + -0.006814164575189352, + 0.026556333526968956, + -0.0023811059072613716, + 0.025085650384426117, + 0.03078629821538925, + 0.011597385630011559, + 0.01698989048600197, + 0.014790869317948818, + 0.020169368013739586, + 0.0005383750540204346, + 0.00079968391219154, + -0.0065515427850186825, + 0.018320508301258087, + 0.01558924000710249, + 0.008726052939891815, + 0.007045271806418896, + -0.0237970519810915, + -0.010763999074697495, + -0.012913997285068035, + 0.01355129387229681, + 0.0029746314976364374, + -0.022200310602784157, + -0.02222832292318344, + -0.00627841567620635, + -0.012752923183143139, + 0.01655568927526474, + 0.01114217471331358, + -0.006435988936573267, + 0.018796728923916817, + 0.005077357869595289, + -0.038293782621622086, + 0.03784557804465294, + 0.019216924905776978, + 0.015869369730353355, + -0.06381363421678543, + 0.019006827846169472, + 0.04563319310545921, + 0.005858220625668764, + -0.004363026469945908, + 0.015267089940607548, + -0.013677352108061314, + 0.006891200318932533, + 0.02043549157679081, + -0.009160254150629044, + 0.008361883461475372, + 0.027984997257590294, + 0.03165470063686371, + 0.006887699011713266, + -0.0022445423528552055, + -0.021121809259057045, + -0.02346089482307434, + -0.030534179881215096, + -0.023166758939623833, + -0.010553901083767414, + -0.032186947762966156, + 0.025673924013972282, + -0.006555044092237949, + -0.001216815086081624, + 0.013145104981958866, + -0.011429307982325554, + 0.012157646007835865, + -0.034035805612802505, + -0.02270454540848732, + 0.026710404083132744, + 0.029413660988211632, + -0.007598529104143381, + 0.0054870485328137875, + 0.00022246269509196281, + -0.0017403082456439734, + 0.02664037235081196, + -0.012780935503542423, + 0.01689184457063675, + 0.008557974360883236, + -0.008971166796982288, + 0.0339517667889595, + 0.006674099713563919, + 0.032523103058338165, + 0.03823775798082352, + -0.06375761330127716, + 0.010778005234897137, + 0.029637765139341354, + 0.052720483392477036, + 0.004002358764410019, + -0.009755530394613743, + -0.020463503897190094, + 0.013446244411170483, + 0.04857455939054489, + 0.012906994670629501, + -0.020141353830695152, + 0.0075495061464607716, + -0.024469364434480667, + -0.017017902806401253, + 0.00444706529378891, + -0.023755032569169998, + -0.009020188823342323, + -0.018194450065493584, + 0.026080112904310226, + -0.030310077592730522, + -0.0269205030053854, + -0.011695431545376778, + 0.04185143858194351, + 0.004138922318816185, + -0.010161719284951687, + 0.008761068806052208, + -0.03159867599606514, + -0.033839717507362366, + -0.03316740319132805, + -0.005630615167319775, + 0.005108872894197702, + 0.005567585583776236, + -0.010728983208537102, + 0.03638890013098717, + -0.06605467945337296, + -0.010778005234897137, + -0.011842499487102032, + 0.01397849153727293, + -0.02493157796561718, + -0.008543968200683594, + 0.05204817280173302, + -0.009664488025009632, + -0.046529609709978104, + -0.02142995223402977, + 0.02988988161087036, + -0.0314025841653347, + 0.00704877357929945, + -0.05378497764468193, + -0.015169044956564903, + 0.006082324776798487, + 0.007248366251587868, + -0.029693789780139923, + -0.03448401391506195, + 0.018334515392780304, + -0.01812441647052765, + -0.001981920562684536, + 0.008635010570287704, + 0.015000966377556324, + 0.021135816350579262, + 0.0010058421175926924, + 0.03986251354217529, + -0.023544935509562492, + -0.022242330014705658, + -0.01322214026004076, + -0.030618220567703247, + 0.012787939049303532, + 0.019931256771087646, + 0.008417909033596516, + -0.02918955683708191, + -0.0031374571844935417, + -0.009209277108311653, + 0.001296477159485221, + 0.059387579560279846, + -0.007304392289370298, + 0.013775398023426533, + -0.02142995223402977, + -0.0018856257665902376, + -0.03367163613438606, + -0.003736235201358795, + -0.030814310535788536, + -0.012108623050153255, + -0.0552416555583477, + 0.04224361851811409, + -0.04961103945970535, + -0.010553901083767414, + 0.04098303243517876, + 0.01130324974656105, + 0.007598529104143381, + -0.021556010469794273, + 0.012241685763001442, + 0.01411855686455965, + -0.009069211781024933, + 0.01402751449495554, + 0.021542005240917206, + 0.0007624790887348354, + 0.016303570941090584, + 0.0022462932392954826, + 0.023236792534589767, + -0.00908321887254715, + 0.0067511354573071, + 0.013768394477665424, + -0.015477187931537628, + 0.011317255906760693, + 0.0175081305205822, + 0.005266445688903332, + 0.014174583368003368, + -0.013950479216873646, + -0.013740381225943565, + -0.026808449998497963, + 0.019034840166568756, + 0.03585665300488472, + -3.405878669582307e-5, + -0.00021097298304084688, + 0.01958109438419342, + -0.009076215326786041, + -0.008319864049553871, + 0.01637360453605652, + -0.02799900248646736, + 0.009370352141559124, + 0.005872227251529694, + -0.012066603638231754, + 0.03316740319132805, + -0.011716441251337528, + 0.047902245074510574, + -0.004296495579183102, + -0.024847539141774178, + 0.03792961686849594, + 0.05216022580862045, + -0.0339517667889595, + 0.015883376821875572, + 0.011541360057890415, + 0.016639728099107742, + -0.026416268199682236, + 0.0062083834782242775, + 0.01731204055249691, + -0.011170187965035439, + 0.007605532184243202, + -0.039190199226140976, + 0.017228001728653908, + -0.012150643393397331, + -0.022886628285050392, + -0.0004145050188526511, + 0.011436311528086662, + 0.02668239176273346, + 0.0019994284957647324, + 0.004005860537290573, + -0.04356022924184799, + 0.01357230357825756, + -0.02109379693865776, + 0.03627684712409973, + 0.010126703418791294, + -0.00745146069675684, + -0.0007108301506377757, + 0.019805198535323143, + 0.03050616756081581, + -0.0251136627048254, + -0.022382395341992378, + 0.0163175780326128, + -0.0162335392087698, + 0.01802637241780758, + -0.02001529559493065, + -0.0048462506383657455, + 0.006425484083592892, + -0.03224297612905502, + -0.00960145890712738, + -0.01977718435227871, + 0.019272951409220695, + -0.0023530928883701563, + -0.041935477405786514, + -0.025099657475948334, + -0.007150320801883936, + 0.0300859734416008, + 0.011527353897690773, + 0.0182504765689373, + 0.011415301822125912, + -0.00509836757555604, + -0.025561871007084846, + 0.02980584278702736, + 0.013264160603284836, + 0.02682245709002018, + -0.0006202255608513951, + -0.0061803702265024185, + -0.019469041377305984, + 0.018852755427360535, + 0.010063673369586468, + -0.03344753384590149, + -0.003232001094147563, + 0.012710902839899063, + -0.0008316362509503961, + -0.01397849153727293, + -0.01050487905740738, + -0.020253406837582588, + -0.0033615611027926207, + 0.00877507496625185, + 0.026318222284317017, + -0.000969075073953718, + 0.03790160268545151, + 0.02009933441877365, + 0.01109315175563097, + 0.013110088184475899, + -0.0096995048224926, + -0.011156180873513222, + 0.025043630972504616, + -0.04560517892241478, + 0.05459735542535782, + -0.020589562132954597, + -0.01135227270424366, + -0.02776089310646057, + -0.022914642468094826, + -0.02346089482307434, + -0.02411920204758644, + -0.007696574553847313, + 0.012066603638231754, + 0.012339730747044086, + 0.03274720907211304, + -0.022956661880016327, + 0.03257913142442703, + 0.024987604469060898, + 0.009664488025009632, + 0.019833210855722427, + -0.021457966417074203, + 0.015211064368486404, + -0.05689442157745361, + -0.016639728099107742, + 0.00827784463763237, + 0.042075540870428085, + -0.011513346806168556, + 0.00820781197398901, + -0.031066427007317543, + 0.025842001661658287, + 0.03078629821538925, + -0.01125422678887844, + -0.030730271711945534, + -0.01977718435227871, + 0.01556122675538063, + 0.017914319410920143, + -0.008165792562067509, + -0.017900314182043076, + -0.01651366986334324, + 0.01967914029955864, + 0.010707972571253777, + 0.00022629259910900146, + 0.005119377747178078, + -0.010203738696873188, + 0.024637442082166672, + 0.01428663544356823, + 0.031206492334604263, + 0.03145860880613327, + -0.006096331402659416, + 0.004349019844084978, + -0.0048742638900876045, + -0.012991033494472504, + -0.010168722830712795, + -0.00553607102483511, + 0.01850259304046631, + 0.013215137645602226, + 0.006082324776798487, + -0.024539396166801453, + 0.01910487189888954, + -0.018810736015439034, + 0.008880124427378178, + -0.03524036705493927, + -0.01411855686455965, + -0.000931432587094605, + -0.0027907961048185825, + 0.01187051273882389, + 0.01830650120973587, + -0.009006182663142681, + 0.012479796074330807, + 0.03599671646952629, + -0.019427021965384483, + -0.020603569224476814, + 0.02270454540848732, + 0.022886628285050392, + 0.008123773150146008, + 0.017003897577524185, + -0.005896738730370998, + 0.02421724610030651, + -0.02341887541115284, + -0.00010379039304098114, + 0.018460573628544807, + -0.026192164048552513, + -0.012689893133938313, + -0.0061453538946807384, + -0.016359597444534302, + -0.032999325543642044, + 0.0011958053801208735, + 0.04857455939054489, + -0.02142995223402977, + -0.007857649587094784, + -0.00825683493167162, + -0.0339517667889595, + 0.019174905493855476, + 0.0014041521353647113, + -0.005147390533238649, + -0.0007305267499759793, + 0.00632743863388896, + 0.022970668971538544, + -0.010070676915347576, + -0.009503413923084736, + 0.01854461245238781, + 0.0250296238809824, + -0.025996072217822075, + 0.039386291056871414, + 0.001594990724697709, + -0.04560517892241478, + -0.029217569157481194, + 0.026416268199682236, + -0.007052275352180004, + -0.029637765139341354, + -0.0008723426144570112, + -0.012311717495322227, + 0.0512918196618557, + -0.0009077966096810997, + -0.016359597444534302, + 0.005056348163634539, + -0.047678142786026, + -0.014930934645235538, + -0.017718229442834854, + -0.008270841091871262, + 0.022270342335104942, + -0.008403902873396873, + -0.0018015867099165916, + -0.013719371519982815, + 0.01483288872987032, + -0.017536144703626633, + 0.029021477326750755, + 0.008221818134188652, + -0.001152910408563912, + 0.024945585057139397, + 0.028937438502907753, + 0.01697588339447975, + 0.04734198749065399, + -0.011310252360999584, + 0.0300859734416008, + 0.026766430586576462, + -0.031206492334604263, + -0.02578597515821457, + -0.0036311864387243986, + 0.018320508301258087, + -0.006520028226077557, + 0.022480441257357597, + -0.020505523309111595, + 0.011877516284584999, + 0.0041984496638178825, + -0.044064465910196304, + -0.006453497335314751, + 0.01324314996600151, + -0.03014199808239937, + 0.04518498480319977, + 0.018712690100073814, + -0.02441333793103695, + 0.015099012292921543, + -0.017003897577524185, + 0.004916283302009106, + 0.024343306198716164, + -0.015953408554196358, + -0.03680909425020218, + 0.03944231942296028, + 0.006071819923818111, + -0.04868661239743233, + -0.02516968920826912, + -0.006499018054455519, + -0.03319541737437248, + -0.004629150032997131, + -0.042635802179574966, + 0.03235502541065216, + -0.0012194412993267179, + 0.031010402366518974, + 0.029217569157481194, + -0.01244477927684784, + -0.007269375957548618, + -0.01497295405715704, + -0.0006534910062327981, + -0.012843964621424675, + 0.01336220558732748, + 0.01327116321772337, + -0.004524101037532091, + 0.01357230357825756, + -0.03182277828454971, + -0.015365135855972767, + -0.0040898993611335754, + 0.011856506578624249, + -0.06683903932571411, + 0.04171137139201164, + 0.02308272011578083, + -0.01987523026764393, + -0.032719194889068604, + 0.016849825158715248, + 0.00884510762989521, + 0.022382395341992378, + 0.007076786831021309, + -0.03042212873697281, + -0.018894774839282036, + 0.0037397367414087057, + 0.008550970815122128, + 0.02176610939204693, + 0.012087613344192505, + 0.005017830524593592, + 0.0005313717992976308, + -0.005578090436756611, + -0.015617253258824348, + 0.015547220595180988, + -0.009538429789245129, + 0.0412631630897522, + 0.026556333526968956, + -0.029301607981324196, + -0.02425926737487316, + -0.004891771823167801, + -0.00043332623317837715, + 0.0337836891412735, + 0.012591848149895668, + 0.016779793426394463, + -0.014650803990662098, + -0.0060403053648769855, + 0.022480441257357597, + -0.000108823980554007, + 0.04215957969427109, + -0.03963840752840042, + -0.006530533079057932, + -0.016541682183742523, + 0.004972309339791536, + -0.003239004174247384, + -0.025743955746293068, + -0.02157001756131649, + -0.005753172095865011, + -0.012850968167185783, + -0.018488585948944092, + -0.009489406831562519, + 0.00022869996610097587, + 0.03840583562850952, + 0.04120713844895363, + 0.007038268726319075, + -0.010140709578990936, + -0.0036031734198331833, + 0.01687783934175968, + -0.033559586852788925, + 0.008424912579357624, + -0.012570838443934917, + 0.009230286814272404, + 0.021065782755613327, + 0.01995926909148693, + 0.03425991162657738, + 0.006632080301642418, + -0.03028206340968609, + -0.01324314996600151, + 0.0018313504988327622, + 0.0059317550621926785, + -0.024007149040699005, + 0.014440706931054592, + -0.0007217727252282202, + 0.01355129387229681, + -0.004793726373463869, + 0.025673924013972282, + -0.0007182710687629879, + 0.0027417733799666166, + -0.021682068705558777, + -0.045913323760032654, + -0.019174905493855476, + 0.006131347734481096, + -0.038489874452352524, + 0.01556122675538063, + 0.010700969956815243, + 0.017900314182043076, + 0.014153573662042618, + -0.030590206384658813, + -0.04361625760793686, + 0.0020274415146559477, + 0.007423447445034981, + 0.002493157982826233, + -0.0040793945081532, + -0.024581415578722954, + 0.0022042738273739815, + -0.0036977173294872046, + -0.009041198529303074, + -0.02630421705543995, + -0.0023303322959691286, + -0.026892488822340965, + -0.03557652235031128, + -0.0413472019135952, + -0.005546575877815485, + -0.033279456198215485, + -0.00671611912548542, + -0.027704866603016853, + -0.032719194889068604, + 0.013936472125351429, + -0.013866439461708069, + -0.02431529201567173, + 0.027984997257590294, + 0.01697588339447975, + -0.014195593073964119, + 0.04238368570804596, + 0.016961878165602684, + -0.009972631931304932, + 0.001418158644810319, + -0.014720836654305458, + 0.05358888953924179, + 0.01329217292368412, + 0.008887127041816711, + 0.007006754167377949, + 0.0009603209909982979, + -0.023951122537255287, + -0.005094866268336773, + 0.012668883427977562, + 0.005784686654806137, + 0.008403902873396873, + 0.010371817275881767, + -0.0024966595228761435, + 0.010827028192579746, + 0.0162335392087698, + 0.0175921693444252, + 0.03305535018444061, + 0.01026676781475544, + 0.018936794251203537, + 0.01348126120865345, + -0.022914642468094826, + 0.02729867771267891, + -0.015477187931537628, + -0.007276379503309727, + 0.015463181771337986, + -0.042551763355731964, + -0.021079789847135544, + -0.009706508368253708, + 0.00896416325122118, + 0.01774624176323414, + -0.005084361415356398, + 0.02009933441877365, + -0.0033843216951936483, + -0.025477832183241844, + 0.040618862956762314, + 0.023096727207303047, + 0.010869047604501247, + 0.01607946678996086, + 0.04033873602747917, + 0.005000322125852108, + -0.0035383934155106544, + -0.016961878165602684, + 0.02397913672029972, + 0.0026787440292537212, + 0.02374102547764778, + 0.01872669719159603, + -0.019469041377305984, + 0.0025246725417673588, + -0.02568792924284935, + -0.00041581812547519803, + 0.0028643303085118532, + -0.03145860880613327, + -0.0038657954428344965, + -0.017424091696739197, + 0.014664811082184315, + 0.001250080531463027, + 0.004541609436273575, + 0.00012693395547103137, + -0.032943300902843475, + 0.008656020276248455, + -0.017704222351312637, + -0.011492337100207806, + -0.002887090900912881, + -0.035408444702625275, + -0.000922678504139185, + 0.000560697924811393, + -0.004180941730737686, + -0.008025727234780788, + 0.0032845253590494394, + -0.002785543678328395, + -0.015281097032129765, + -0.022312361747026443, + 0.0062819174490869045, + -0.016709759831428528, + -0.035352420061826706, + 0.004972309339791536, + -0.023614967241883278, + 0.0022305359598249197, + -0.03652896359562874, + -0.010490871965885162, + -0.03955436870455742, + -0.002037946367636323, + -0.0029553724452853203, + -0.02644428052008152, + -0.00901318620890379, + -0.010343804024159908, + -0.012787939049303532, + -0.011625398881733418, + -0.01703190989792347, + -0.03336349502205849, + 0.06639083474874496, + 0.005515061318874359, + 0.004807732999324799, + -0.021682068705558777, + 0.0013244901783764362, + 0.009881589561700821, + -0.016093473881483078, + -0.007080288138240576, + -0.009734520688652992, + -0.00030267180409282446, + -0.002030943287536502, + 0.037817563861608505, + 0.0281950943171978, + -0.007146819029003382, + -0.021303893998265266, + -0.0004416425945237279, + 0.01773223467171192, + -0.009426377713680267, + -0.021121809259057045, + -0.0002917292295023799, + -0.00018197513418272138, + -0.014930934645235538, + -0.007409441284835339, + 0.0019083862425759435, + 0.022060245275497437, + 0.032046884298324585, + 0.005462537053972483, + -0.01977718435227871, + 0.007146819029003382, + 0.019945263862609863, + -0.013138101436197758, + 0.021836141124367714, + -0.011205203831195831, + -0.00443305866792798, + -0.04535306245088577, + -0.00877507496625185, + 0.010967093519866467, + 0.002871333621442318, + 0.007857649587094784, + -0.003389574121683836, + -0.005942259915173054, + 0.013208134099841118, + -0.012472792528569698, + -0.0003606675018090755, + 0.010035661049187183, + 0.002736520953476429, + 0.01669575460255146, + 0.03462408110499382, + 0.003953335806727409, + 0.002930861199274659, + 0.015365135855972767, + -0.006085826549679041, + 0.02322278544306755, + 0.004278987180441618, + -0.001099510584026575, + -0.00010849570389837027, + 0.030113985762000084, + -0.004888270050287247, + 0.002121985424309969, + 0.034792158752679825, + -0.009916605427861214, + 0.029217569157481194, + -0.0219061728566885, + -0.0042649805545806885, + 0.001305231126025319, + 0.004853254184126854, + -0.0018611142877489328, + 0.025141676887869835, + -0.005028335377573967, + -0.002783792791888118, + 0.011450317688286304, + 0.02336285077035427, + 0.01858663186430931, + 0.012598850764334202, + 0.020883698016405106, + 0.01872669719159603, + -0.001293850946240127, + -0.006516526453197002, + 0.0009445636533200741, + -0.009167257696390152, + 0.00868403259664774, + -0.019595099613070488, + -0.006537536159157753, + 0.026892488822340965, + 0.011807483620941639, + -0.0052559408359229565, + 0.033895742148160934, + -0.020659593865275383, + 0.020519530400633812, + 0.009244292974472046, + 0.0054870485328137875, + 0.009258300065994263, + 0.005861722398549318, + 0.009097225032746792, + 0.0712650939822197, + 0.008305856958031654, + -0.0062574059702456, + -0.014041521586477757, + -0.015967415645718575, + -0.007703577633947134, + 0.004650159738957882, + 0.020351450890302658, + 0.004349019844084978, + 0.006635581608861685, + -0.005767178256064653, + 0.006176868453621864, + 0.012472792528569698, + 0.021107802167534828, + -0.007913675159215927, + -0.0005466914153657854, + 0.024539396166801453, + -0.01476285606622696, + -0.016261551529169083, + -0.004478579852730036, + -0.0075775193981826305, + 0.004391039256006479, + 0.008382893167436123, + -0.007969701662659645, + -0.006807161495089531, + -0.034035805612802505, + 0.015295103192329407, + 0.0029851363506168127, + -0.021934187039732933, + 0.014181585982441902, + 0.024343306198716164, + -0.0017473114421591163, + 0.02374102547764778, + 0.02266252413392067, + -0.014748849906027317, + 0.02592604048550129, + -0.0007195841753855348, + -0.014566765166819096, + -0.02601007930934429, + 0.012913997285068035, + -0.012928004376590252, + -0.01549119409173727, + 7.977142377058044e-5, + -0.0009752028854563832, + 0.00040509438258595765, + 0.004012863617390394, + 0.016303570941090584, + -0.003055168781429529, + 0.010224748402833939, + -0.022494446486234665, + -0.0015197057509794831, + -0.01906285248696804, + -0.013614322990179062, + 0.00100234046112746, + -0.02039347030222416, + 0.007948691956698895, + -0.021079789847135544, + -0.029693789780139923, + -0.016009435057640076, + -0.014846894890069962, + 0.02152799814939499, + 0.023390863090753555, + -0.008838105015456676, + -0.012661880813539028, + -0.007038268726319075, + 0.02214428409934044, + 0.014510738663375378, + -0.0055991001427173615, + 0.012619861401617527, + 0.022340375930070877, + 0.008831101469695568, + -0.008305856958031654, + -0.0019293960649520159, + 0.01244477927684784, + -0.0006136599695309997, + 0.0007861150661483407, + 0.02791496366262436, + -0.020169368013739586, + -0.006663594860583544, + -0.038573913276195526, + -0.007458463776856661, + 0.026808449998497963, + 0.026290209963917732, + 0.02411920204758644, + -0.014356667175889015, + -0.014566765166819096, + 0.006621574983000755, + -0.0014584272867068648, + 0.008382893167436123, + -0.03409183397889137, + -0.013915462419390678, + -0.025659916922450066, + 0.011387288570404053, + 0.0007734217215329409, + -0.02795698307454586, + -0.02805502898991108, + -0.007640548516064882, + -0.0005221799947321415, + 0.0049407947808504105, + -0.006856183987110853, + -0.015869369730353355, + 0.004758710041642189, + 0.00894315354526043, + -0.0035996718797832727, + 0.013810413889586926, + 0.011590383015573025, + -0.018376534804701805, + 0.01769021525979042, + -0.01995926909148693, + -0.010588917881250381, + -0.00678615178912878, + -0.011667418293654919, + 0.0013700112467631698, + -0.02142995223402977, + 0.007192340213805437, + 0.00019488738325890154, + -0.011226213537156582, + -0.00016796863928902894, + 0.0032022371888160706, + -0.005410012323409319, + -0.01476285606622696, + 0.00834787730127573, + -0.014538751915097237, + 0.00748647702857852, + 0.026430275291204453, + 0.003942830953747034, + 0.01707392930984497, + -0.004426055587828159, + -0.013740381225943565, + -0.009776540100574493, + 0.02445535734295845, + 0.02757880836725235, + 0.008677029982209206, + -0.005077357869595289, + 0.030534179881215096, + -0.018040377646684647, + 0.04610941559076309, + 0.0023145750164985657, + -0.027522781863808632, + 0.0010898811742663383, + -0.0033265450038015842, + 0.007045271806418896, + 0.009216280654072762, + 0.014776863157749176, + -0.023993143811821938, + -0.0024791513569653034, + -0.022438419982790947, + 0.0377335250377655, + 0.015463181771337986, + -0.0163175780326128, + 0.01788630709052086, + 0.0062819174490869045, + -0.017662202939391136, + 0.004324508365243673, + 0.0032775220461189747, + -0.00012419831182342023, + 0.01558924000710249, + -0.006267910823225975, + 0.01544917467981577, + 0.004464573226869106, + 0.00013120155199430883, + -0.014020511880517006, + -0.004898774903267622, + -0.018082397058606148, + -0.002258548978716135, + 0.008151785470545292, + -0.03229900076985359, + -0.02624819055199623, + -0.021513991057872772, + 0.021401939913630486, + -0.004520599264651537, + -0.0014671813696622849, + -0.00834787730127573, + 0.00877507496625185, + 0.017676210030913353, + -0.026094118133187294, + 0.02648629993200302, + -0.01584135740995407, + 0.015183051116764545, + -0.007675564847886562, + -0.025617897510528564, + -0.024231253191828728, + -0.006562047637999058, + 0.010602924041450024, + 0.0182084571570158, + 0.02214428409934044, + -0.006887699011713266, + -0.010756995528936386, + -0.012416766956448555, + 0.011933541856706142, + 0.01565927267074585, + -0.03227098658680916, + -0.008733055554330349, + 0.041235148906707764, + 0.01320113055408001, + 0.03487619757652283, + -0.01565927267074585, + -0.00905520562082529, + 0.006488513201475143, + -0.00636245496571064, + 0.017185982316732407, + -0.0018698683707043529, + 0.007276379503309727, + -0.016723766922950745, + 0.023628974333405495, + -0.017522137612104416, + -0.012024584226310253, + -0.0035541506949812174, + -0.0009112982079386711, + -0.024763500317931175, + -0.0007567889406345785, + 0.020267412066459656, + -0.006961232982575893, + -0.011905529536306858, + 0.030814310535788536, + 0.007332405541092157, + -0.004271984100341797, + 0.004422553814947605, + -0.021892167627811432, + -0.00588973518460989, + -0.0037607466802001, + -0.008550970815122128, + -0.023446889594197273, + 0.003540144069120288, + -0.019525067880749702, + -0.023334836587309837, + -0.002382856560871005, + 0.009020188823342323, + 0.023306824266910553, + 0.009951621294021606, + -0.015351129695773125, + 0.006817666348069906, + 0.0237970519810915, + -0.011191197670996189, + 0.009307322092354298, + -0.010441849008202553, + 0.00827784463763237, + -0.015967415645718575, + 0.011625398881733418, + -0.0029098514933139086, + -0.006649588234722614, + -0.003802766092121601, + -0.027312684804201126, + -0.0019223927520215511, + -0.018740704283118248, + -0.0002125049359165132, + -0.013509274460375309, + 0.01598142273724079, + -0.006922714877873659, + 0.008270841091871262, + -0.012010578066110611, + 0.0019399009179323912, + 0.0042999968864023685, + -0.00803973339498043, + -0.01432865485548973, + 0.01187051273882389, + -0.005476543214172125, + 0.0004517097841016948, + -0.01981920376420021, + 0.001946904230862856, + -0.012906994670629501, + -0.010820024646818638, + 0.008249831385910511, + -0.0031829781364649534, + -0.02620617114007473, + 0.021121809259057045, + 0.01341122854501009, + -0.013264160603284836, + 0.003415836486965418, + -0.02360096015036106, + -0.02337685599923134, + 0.023544935509562492, + -0.0016869084211066365, + 0.007255369331687689, + 0.02587001398205757, + -0.010049667209386826, + -0.014580771327018738, + -0.015715299174189568, + 0.03661300241947174, + -0.0003748928720597178, + 0.0015109516680240631, + 0.005819702986627817, + 0.0162335392087698, + 0.019973276183009148, + 0.003156716004014015, + 0.0031847290229052305, + 0.0075495061464607716, + 0.021373925730586052, + 0.022354381158947945, + -0.015673279762268066, + -0.003946332726627588, + 0.011520350351929665, + 0.010147713124752045, + 0.020547542721033096, + 0.00441204896196723, + 0.023839071393013, + -0.015813343226909637, + 0.01549119409173727, + -0.018222462385892868, + -0.00955943949520588, + 0.009335335344076157, + -0.01731204055249691, + -0.020169368013739586, + 0.0313185453414917, + 0.03557652235031128, + 0.025982066988945007, + 0.017704222351312637, + 0.003617179812863469, + -0.010350807569921017, + -0.027788905426859856, + -0.011289242655038834, + -0.0008819720824249089, + -0.01987523026764393, + -0.0022025229409337044, + 0.002104477258399129, + -0.006481510121375322, + 0.017998358234763145, + 0.0018436062382534146, + -0.011905529536306858, + 0.023390863090753555, + -0.018334515392780304, + 0.004653661046177149, + -0.04215957969427109, + -0.010294781066477299, + -0.0056341164745390415, + 0.014748849906027317, + -0.034512028098106384, + 0.031010402366518974, + 0.007444457150995731, + -0.0032337517477571964, + 0.009300319477915764, + 0.003851788816973567, + 0.01593940332531929, + 0.00412841746583581, + -0.0026384752709418535, + 0.014986960217356682, + -0.012668883427977562, + 0.02526773512363434, + -0.0036311864387243986, + 0.03042212873697281, + -0.017143962904810905, + 0.02019738033413887, + 0.016023442149162292, + 0.019511060789227486, + 0.010553901083767414, + 0.008649016730487347, + 0.006880695465952158, + 0.021864153444767, + -0.0032862762454897165, + -0.031570661813020706, + -0.02284460887312889, + 0.004065387882292271, + -0.011121165007352829, + -0.009958624839782715, + -0.018222462385892868, + -0.017536144703626633, + 0.014916927553713322, + -0.0032197453547269106, + 0.005651624873280525, + 0.0007804249180480838, + 0.0038657954428344965, + 0.0016186267603188753, + -0.007920678704977036, + -0.027844931930303574, + -0.024819526821374893, + -0.00020878446230199188, + 0.005788187962025404, + -0.01253582164645195, + 0.004559117369353771, + -0.0006981367478147149, + -0.0007546004489995539, + 0.006204881705343723, + -0.01353028416633606, + 0.005588595289736986, + 0.015155038796365261, + -0.016247546300292015, + 0.014384680427610874, + -0.008564977906644344, + -0.007010255940258503, + -0.03269118070602417, + -0.008473935537040234, + 0.0030586705543100834, + -0.008922143839299679, + -0.009923608973622322, + -0.012500805780291557, + -0.03439997509121895, + 0.0008193805115297437, + -0.02304070070385933, + 0.017382072284817696, + 0.008950157091021538, + 0.03975046053528786, + -0.008880124427378178, + 0.05386901646852493, + 0.0009130490361712873, + -0.011954551562666893, + 0.008564977906644344, + -0.009363348595798016, + 0.02829314023256302, + -0.019497055560350418, + 0.011030122637748718, + 0.0015984923811629415, + -0.01332018617540598, + -0.022592492401599884, + 0.004275485407561064, + 0.004296495579183102, + -0.003617179812863469, + 0.014958946965634823, + -0.03185079246759415, + -0.006635581608861685, + 0.00444706529378891, + -0.003013149369508028, + -0.01061693113297224, + -0.013488263823091984, + -0.0020537038799375296, + -0.005616608541458845, + -0.026430275291204453, + 0.008557974360883236, + 0.0007756102131679654, + 0.020309431478381157, + 0.01274591963738203, + 0.03717326372861862, + -0.01882474310696125, + -0.013635332696139812, + 0.011786473914980888, + 0.007094294764101505, + 0.010518885217607021, + 0.017816273495554924, + -0.011450317688286304, + 0.008691036142408848, + -0.01406953390687704, + 0.004096902906894684, + 0.0036697043105959892, + 0.006982242688536644, + -0.0030411623883992434, + 0.019370995461940765, + -0.02099575102329254, + -0.005826706066727638, + 0.015127025544643402, + 0.02554786577820778, + 0.016499662771821022, + -0.00636245496571064, + -0.02431529201567173, + -0.02488955855369568, + -0.0026559834368526936, + -0.0052909571677446365, + 0.01336220558732748, + -0.00011872701725224033, + 0.00801872368901968, + 0.02795698307454586, + -0.006211884785443544, + 0.012928004376590252, + -0.0033703153021633625, + 0.0052909571677446365, + 0.01826448179781437, + 0.021836141124367714, + 0.017564157024025917, + 0.014426699839532375, + 0.010876051150262356, + -0.03028206340968609, + -0.015379142016172409, + -0.0046711694449186325, + 0.013915462419390678, + -0.006323936861008406, + -0.02743874303996563, + 0.007220353465527296, + 0.02417522668838501, + 0.009146247990429401, + -0.003694215789437294, + 0.005332976579666138, + -0.01432865485548973, + 0.0006197878392413259, + -0.0013988997088745236, + -0.023110732436180115, + 0.006618073675781488, + -0.0005086112068966031, + 0.006639083381742239, + -0.014412693679332733, + -0.022074252367019653, + 0.012304714880883694, + -0.012892987579107285, + 0.016023442149162292, + -0.0006850056233815849, + -0.00444706529378891, + -0.010609927587211132, + -0.01019673515111208, + 0.0740664005279541, + 0.002550934674218297, + 0.011366278864443302, + 0.001435666810721159, + 0.015141031704843044, + -0.015085006132721901, + -0.00513338390737772, + 0.0013901456259191036, + 0.021878160536289215, + -0.007206346839666367, + -0.002391610760241747, + 0.0070312656462192535, + 0.015463181771337986, + 0.005777683109045029, + -0.02037946507334709, + -0.005508058238774538, + 0.011051132343709469, + 0.005998285952955484, + 0.02199021354317665, + 0.005196413490921259, + 0.0045030913315713406, + 0.01182849332690239, + 0.0031497126910835505, + 0.005805696360766888, + -0.0030096478294581175, + 0.022200310602784157, + 0.0035296392161399126, + -0.0035383934155106544, + 0.01858663186430931, + 0.02876936085522175, + 0.004776217974722385, + -0.005732161924242973, + 0.005192911718040705, + -0.012570838443934917, + 0.0025806985795497894, + 0.005031836684793234, + -0.0012203167425468564, + -0.004790224600583315, + 0.0011240220628678799, + 0.02748076245188713, + -0.007626541890203953, + 0.0097415242344141, + 0.023054707795381546, + 0.01683581806719303, + -0.025813989341259003, + 0.006057813297957182, + 0.0007173956837505102, + 0.0028415697161108255, + 0.0018873765366151929, + -8.863491530064493e-5, + 0.02200421877205372, + -0.020029302686452866, + 0.009643478319048882, + 0.010161719284951687, + 0.027326691895723343, + 0.003907815087586641, + 0.012668883427977562, + 0.015267089940607548, + 0.00012551141844596714, + 4.762758908327669e-5, + -0.004240469541400671, + -0.0025964558590203524, + 0.009461394511163235, + -0.002869582735002041, + -0.02558988519012928, + -0.004012863617390394, + -0.013747384771704674, + -0.022242330014705658, + 0.011737450957298279, + -0.002079966012388468, + -0.017914319410920143, + -0.028447210788726807, + 0.015113018453121185, + -0.017760248854756355, + 0.006831672973930836, + 0.0225644800812006, + -0.009503413923084736, + 0.020001288503408432, + 0.02109379693865776, + 0.004590631928294897, + -0.0025106659159064293, + 0.014678817242383957, + -0.02397913672029972, + -0.008733055554330349, + -0.0024703973904252052, + -0.015127025544643402, + 0.0314025841653347, + -0.020603569224476814, + -0.0012089364463463426, + -0.015295103192329407, + -0.020687608048319817, + -0.018474580720067024, + 0.0034018298611044884, + 0.011590383015573025, + -0.02540780045092106, + 0.017536144703626633, + 0.009097225032746792, + -0.007934684865176678, + 0.02290063537657261, + -0.012549828737974167, + 0.016247546300292015, + 0.003214492928236723, + -0.0193990096449852, + 0.0006359828403219581, + -0.003932326100766659, + 0.021864153444767, + 0.00332304323092103, + -0.010918070562183857, + 0.015477187931537628, + -0.008333870209753513, + -0.006593562196940184, + -0.008887127041816711, + 0.012892987579107285, + -0.0012754673371091485, + -0.01868467777967453, + -4.44542383775115e-5, + 0.013264160603284836, + -0.00887312088161707, + -0.015715299174189568, + -0.013558296486735344, + -0.018810736015439034, + -0.0036136782728135586, + -0.009356345050036907, + -0.01925894431769848, + 0.005963269621133804, + -0.009461394511163235, + -0.006215386558324099, + -0.005991282407194376, + -0.0073744249530136585, + 0.005833709146827459, + 0.017340052872896194, + 0.01187051273882389, + 0.02133190631866455, + -0.0065900604240596294, + 0.009524423629045486, + 0.013145104981958866, + -2.949025838461239e-5, + 0.014510738663375378, + 0.00010822213516803458, + -0.024525390937924385, + 0.01741008646786213, + -0.002258548978716135, + 0.0038657954428344965, + 0.013705365359783173, + 0.001803337479941547, + -0.005150892306119204, + -0.001499571488238871, + -0.01288598496466875, + 0.02397913672029972, + -0.00703476695343852, + 0.031486622989177704, + -0.037341341376304626, + 0.00412841746583581, + 0.005935256369411945, + 0.004086397588253021, + 0.008677029982209206, + -0.020001288503408432, + 0.019609106704592705, + -0.00669510941952467, + -0.00047884738887660205, + 0.015603246167302132, + -0.007892665453255177, + -0.002468646503984928, + -0.0063764615915715694, + -0.019328976050019264, + 0.02678043767809868, + 0.003240755060687661, + 0.008999179117381573, + 0.013537286780774593, + -0.002911602146923542, + -0.0028818384744226933, + 0.02918955683708191, + 0.019973276183009148, + -0.01850259304046631, + -0.016429631039500237, + -0.008305856958031654, + 0.008852111175656319, + -0.0009480653097853065, + -0.013306180015206337, + 0.006085826549679041, + -0.014013508334755898, + 0.006723122205585241, + 0.0018908781930804253, + 0.005143888760358095, + -0.013453247956931591, + -0.011317255906760693, + 0.010869047604501247, + -0.006950728129595518, + 0.010778005234897137, + -0.010827028192579746, + -0.007220353465527296, + 0.01679379865527153, + 0.017438098788261414, + -0.01253582164645195, + -0.0006267910939641297, + -0.0004871637502219528, + 0.018376534804701805, + 0.009307322092354298, + 0.04924686998128891, + -0.0012929755030199885, + 0.0014899419620633125, + 0.01598142273724079, + 0.02606610581278801, + 0.002426627092063427, + -0.01712995581328869, + -0.019609106704592705, + -0.0073394086211919785, + -0.019048847258090973, + -0.012668883427977562, + -0.021682068705558777, + -0.022970668971538544, + -0.015967415645718575, + 0.014272628352046013, + 0.0015249581774696708, + 0.0025316758546978235, + 0.014083540998399258, + 0.009930611588060856, + 0.017914319410920143, + 0.005886233877390623, + -0.0015258336206898093, + 0.002811805810779333, + -0.0010137207573279738, + 0.0001540715602459386, + -0.01621953211724758, + -0.00027006291202269495, + -0.01487490814179182, + 0.002274306258186698, + 0.0014164077583700418, + 0.015309110283851624, + 0.02308272011578083, + -0.0005742667126469314, + -0.0026472294703125954, + -0.0250296238809824, + 0.010792012326419353, + 0.004762211814522743, + 0.02312473952770233, + 0.0013988997088745236, + -0.010995106771588326, + 0.013754387386143208, + -0.010841034352779388, + 0.008179798722267151, + 0.0016168758738785982, + -0.007087291684001684, + -0.0010802516480907798, + -0.010231751948595047, + -0.023166758939623833, + -0.012164649553596973, + 0.008459929376840591, + 0.0034175871405750513, + -2.663150917214807e-5, + -0.019385002553462982, + -0.00028647680301219225, + 0.007094294764101505, + -0.010918070562183857, + 0.019385002553462982, + -0.015281097032129765, + -0.029693789780139923, + 0.016709759831428528, + 0.006905206944793463, + -0.01244477927684784, + 0.015323116444051266, + 0.014230608940124512, + -0.020253406837582588, + 0.0020344448275864124, + -0.016387611627578735, + 0.006218888331204653, + -0.03989052772521973, + -0.010168722830712795, + -0.010161719284951687, + 0.005721657071262598, + 0.02427327260375023, + -0.006404474377632141, + 0.010273771360516548, + 0.024819526821374893, + 0.007360418327152729, + 0.004545110743492842, + 0.01570129208266735, + -0.008810091763734818, + 0.0023635977413505316, + 0.008880124427378178, + -0.014251618646085262, + 0.010700969956815243, + 0.016905851662158966, + -0.024329299107193947, + -0.00523843290284276, + -0.021654056385159492, + 0.014790869317948818, + 0.0162755586206913, + -0.006684604566544294, + 0.01916089840233326, + -0.013089078478515148, + 0.0005598224815912545, + -0.01480487547814846, + -0.00981155689805746, + 0.009608462452888489, + 0.011912532150745392, + 0.001413781545124948, + -0.026668384671211243, + 0.026906495913863182, + -0.01834852062165737, + -0.0009664488607086241, + 0.0004814736021216959, + -0.010000644251704216, + -0.0181664377450943, + -0.006351950112730265, + 0.016303570941090584, + 0.015197058208286762, + 0.007787616923451424, + -0.01501497346907854, + 0.019553080201148987, + -0.0005865223938599229, + -0.003475364064797759, + -0.007899668999016285, + -0.01575731858611107, + -0.00434201629832387, + -0.004107407759875059, + 0.00740243773907423, + 0.0036627009976655245, + 0.009727518074214458, + -0.010217745788395405, + -0.002041448140516877, + 0.0007598528754897416, + 0.009384358301758766, + -0.012850968167185783, + 0.020001288503408432, + -0.005851217545568943, + 0.022676531225442886, + -0.0065865591168403625, + 0.0048497524112463, + -0.0294696856290102, + 0.03173873946070671, + 0.013397222384810448, + -0.027116592973470688, + 0.0030901851132512093, + 0.0004661539860535413, + 0.005683139432221651, + -0.004573123995214701, + -0.01348126120865345, + -0.0036697043105959892, + 0.001962661510333419, + -0.018670670688152313, + -0.012115626595914364, + 0.002582449233159423, + -0.013523280620574951, + -0.0033528071362525225, + -0.002165755722671747, + 0.00015155476285144687, + -0.012031587772071362, + 0.002701504621654749, + 0.030618220567703247, + -0.01343223825097084, + 0.0015879875281825662, + 0.008032730780541897, + 0.004797228146344423, + -0.005861722398549318, + -0.009755530394613743, + -0.003477114951238036, + 0.00877507496625185, + -0.01123321708291769, + -0.00414942717179656, + -0.0027662846259772778, + -0.008074750192463398, + -0.005630615167319775, + -0.008179798722267151, + 0.006737128831446171, + -0.005497553385794163, + 0.010168722830712795, + -0.0008027477888390422, + -0.0281530749052763, + 0.003981349058449268, + -0.021275881677865982, + -0.004916283302009106, + 0.008536964654922485, + 0.0027557797729969025, + -0.014860901981592178, + 0.011380285024642944, + -0.0034613574389368296, + -0.007815630175173283, + -0.01991724967956543, + -0.009006182663142681, + 0.02435731142759323, + -0.00244238437153399, + 0.012311717495322227, + -0.02100975811481476, + -0.0073394086211919785, + 0.023755032569169998, + 0.006334441713988781, + 0.03473613038659096, + 0.022130277007818222, + -0.018390541896224022, + -0.0016054955776780844, + -0.006971737835556269, + 0.00624339934438467, + 0.005928253289312124, + -0.007934684865176678, + 0.017143962904810905, + -0.009832566604018211, + 0.011198200285434723, + 0.002787294564768672, + 0.01205960102379322, + -0.0023180765565484762, + 0.0025894525460898876, + 0.025141676887869835, + -0.015323116444051266, + 0.01339021883904934, + -0.023853078484535217, + 0.011436311528086662, + -0.011576375924050808, + 0.004944296088069677, + 0.0071713305078446865, + -0.005185908637940884, + 0.002121985424309969, + -0.007020760793238878, + -0.009622468613088131, + 0.01830650120973587, + -0.001838353811763227, + -0.0011581628350540996, + 0.026654379442334175, + 0.007297389209270477, + -0.016849825158715248, + 0.015183051116764545, + -0.0023600959684699774, + 0.0016711511416360736, + -0.01327116321772337, + 0.006852682679891586, + -0.027074573561549187, + 0.041179124265909195, + 0.009496410377323627, + -0.005739165470004082, + 0.003767749760299921, + -0.002661235863342881, + 0.016905851662158966, + -0.012010578066110611, + 0.004933791235089302, + -0.007892665453255177, + 0.00033571841777302325, + 0.012570838443934917, + 0.0010259764967486262, + -0.001938150147907436, + 0.013726375065743923, + -0.018698684871196747, + -0.023292817175388336, + -0.019987283274531364, + -0.011240220628678799, + -0.0023198274429887533, + -0.01490292139351368, + 0.010686962865293026, + 0.019034840166568756, + -0.0059107448905706406, + -0.0008101887651719153, + -0.008705043233931065, + 0.01483288872987032, + -0.019427021965384483, + -0.0049477978609502316, + -0.008004717528820038, + -0.007584522478282452, + -0.00279604853130877, + -0.025085650384426117, + 0.030310077592730522, + -0.04322407394647598, + 0.0040898993611335754, + 0.009461394511163235, + -0.0019083862425759435, + -0.022172296419739723, + -0.002340837148949504, + -0.010231751948595047, + 0.029917893931269646, + 0.014510738663375378, + -0.014335657469928265, + -0.0012360740220174193, + -0.019328976050019264, + 0.04031072184443474, + 0.016009435057640076, + -0.008410906419157982, + 0.00039962309529073536, + 0.02776089310646057, + -0.016009435057640076, + 0.015183051116764545, + 0.012241685763001442, + -0.00441204896196723, + -0.006936721503734589, + 0.020799659192562103, + -0.0029693790711462498, + -0.004233465995639563, + 0.01886676251888275, + -0.01107214204967022, + 0.007892665453255177, + -0.003205738728865981, + -0.0013148606522008777, + 0.002570193726569414, + 0.007395434658974409, + 0.018096404150128365, + 0.0034123347140848637, + -0.023572947829961777, + 0.006492014974355698, + -0.002333833836019039, + 0.02602408640086651, + -0.0027155112475156784, + 0.005452032200992107, + 0.014622790738940239, + 0.02913353033363819, + 0.012977026402950287, + -0.0020957232918590307, + -0.0020256908610463142, + 0.019903242588043213, + -0.011156180873513222, + -0.00509836757555604, + 0.013369209133088589, + 0.021219855174422264, + 0.006201379932463169, + -0.0019994284957647324, + -0.003424590453505516, + -0.02620617114007473, + 0.022158291190862656, + -0.002148247789591551, + 0.0313185453414917, + 0.016807805746793747, + 0.014846894890069962, + 0.006012292113155127, + 0.0075214933604002, + -0.003911316394805908, + -0.016401616856455803, + -0.0009428128832951188, + -0.023348843678832054, + 0.0018698683707043529, + -0.00041844433872029185, + 0.012970023788511753, + -0.0012439526617527008, + -0.0027435242664068937, + -0.02280258946120739, + -0.001619502087123692, + 0.006124344188719988, + 0.020071322098374367, + -0.021037770435214043, + 0.02876936085522175, + 0.012297711335122585, + 0.01972115971148014, + 0.005746168550103903, + 0.03515632823109627, + -0.006474507041275501, + 0.021640049293637276, + -0.007164327427744865, + -0.001287723076529801, + 0.005070354789495468, + -0.013166114687919617, + -0.004047879949212074, + 0.014062531292438507, + 0.03627684712409973, + -0.009944618679583073, + 0.000880658975802362, + -0.028083043172955513, + 0.0033282956574112177, + -0.00013929906708654016, + 0.006351950112730265, + 0.025225715711712837, + -0.016191519796848297, + 0.009258300065994263, + 0.0019101371290162206, + -0.008726052939891815, + 0.017956338822841644, + 0.014622790738940239, + 0.008557974360883236, + 0.008768072351813316, + -0.010014651343226433, + -0.020729627460241318, + 0.00448208162561059, + 0.009384358301758766, + -0.0075495061464607716, + 0.017003897577524185, + 0.00955943949520588, + -0.013887450098991394, + -0.003440347732976079, + 0.004243970848619938, + 0.008992176502943039, + 0.0014549257466569543, + -0.007146819029003382, + -0.03428792580962181, + 0.00748647702857852, + -0.010203738696873188, + -0.012935006991028786, + -0.00281355669721961, + -0.01584135740995407, + 0.012766929343342781, + 0.0024616431910544634, + -0.005690142512321472, + 0.010876051150262356, + 0.0020782151259481907, + 0.005774181801825762, + 0.029553726315498352, + -0.011219209991395473, + 0.014706830494105816, + -0.013110088184475899, + -0.016191519796848297, + -0.01501497346907854, + 0.04045078530907631, + 0.006411477457731962, + -0.0010119699873030186, + -0.010567908175289631, + -0.015239077620208263, + -0.02318076603114605, + -0.014846894890069962, + -0.004257977474480867, + -0.00010816741996677592, + 0.00024839662364684045, + -0.0019101371290162206, + 0.0001464117522118613, + -0.0016475151060149074, + 0.002501911949366331, + 0.0023881089873611927, + 0.018936794251203537, + 0.007927682250738144, + -0.01826448179781437, + 0.01731204055249691, + -0.008165792562067509, + 0.023614967241883278, + 0.0181664377450943, + 0.002575446153059602, + -0.0004142861580476165, + 0.016821812838315964, + 0.02833515964448452, + -0.01612148806452751, + 0.023432882502675056, + 0.007094294764101505, + 0.002426627092063427, + 0.00037051583058200777, + -0.007325401995331049, + 0.0051158759742975235, + 0.011961555108428001, + 0.01712995581328869, + -0.008726052939891815, + 0.005269947461783886, + -0.0032092405017465353, + -0.01844656653702259, + -0.030254051089286804, + 0.0010172224137932062, + 0.007773610297590494, + -0.029217569157481194, + -0.0040898993611335754, + -0.013180120848119259, + -0.016709759831428528, + -0.011226213537156582, + 0.005105371121317148, + -0.009209277108311653, + 0.013761390931904316, + 0.0016361348098143935, + 0.011149178259074688, + -0.014916927553713322, + 0.004877765197306871, + 0.004667667672038078, + -0.008543968200683594, + -0.001203684019856155, + 0.008494945243000984, + -0.02809704840183258, + 0.014034518040716648, + 0.023642979562282562, + -0.006071819923818111, + -0.005480044987052679, + -0.023096727207303047, + 0.034792158752679825, + -0.004804231226444244, + -0.02091171219944954, + -0.00801872368901968, + -0.01026676781475544, + 0.01281595230102539, + 0.0016054955776780844, + -0.008936149999499321, + 0.0001296695991186425, + -0.0016247545136138797, + -0.022354381158947945, + -0.0036977173294872046, + 0.0068211681209504604, + 0.008992176502943039, + -0.010238755494356155, + 0.008501948788762093, + 0.01637360453605652, + 0.008621003478765488, + 0.004405045881867409, + -0.012423769570887089, + 0.01198956836014986, + 0.005336478352546692, + 0.007563512772321701, + -0.00043201312655583024, + 0.011975561268627644, + 0.010119699873030186, + -1.1859023288707249e-5, + 0.00050992431351915, + 0.0020116842351853848, + -0.020085327327251434, + -0.006211884785443544, + -0.00877507496625185, + -0.012836962006986141, + -0.006852682679891586, + -0.02015536092221737, + -0.02960975095629692, + 0.0010855040745809674, + -0.0016431381227448583, + 0.013992498628795147, + -0.009328332729637623, + -0.010721979662775993, + -0.009923608973622322, + -0.0061068362556397915, + 0.014608784578740597, + 0.017774254083633423, + -0.008606997318565845, + -0.013747384771704674, + -0.009307322092354298, + 0.006201379932463169, + -0.014636797830462456, + 0.016065461561083794, + -0.005669132806360722, + 0.0069682360626757145, + 0.004096902906894684, + 0.0017087935702875257, + 0.018894774839282036, + -0.0011861758539453149, + -0.01934298314154148, + -0.029413660988211632, + 0.0063834646716713905, + -0.014650803990662098, + 0.0049407947808504105, + 0.004215958062559366, + 0.019174905493855476, + -0.0006565549410879612, + -0.002402115613222122, + -0.013033052906394005, + -0.02493157796561718, + 0.008410906419157982, + -0.012787939049303532, + -0.010070676915347576, + -0.00896416325122118, + 0.04176739603281021, + -0.0027575306594371796, + -0.006379962898790836, + -0.0033703153021633625, + -0.007528496440500021, + -0.0062469011172652245, + -0.009356345050036907, + 0.0031829781364649534, + -0.00669510941952467, + -0.0003711723838932812, + -0.0194830484688282, + -0.014790869317948818, + 0.010630937293171883, + 0.012710902839899063, + 0.012297711335122585, + -0.009188267402350903, + -0.02952571213245392, + 0.009342338889837265, + -0.009951621294021606, + 0.0238810908049345, + 0.0028258124366402626, + -0.007479473482817411, + 0.02009933441877365, + -0.007115304470062256, + 0.014860901981592178, + -0.005364491604268551, + 0.017760248854756355, + -0.029581738635897636, + -0.007458463776856661, + -0.001132776029407978, + 0.015225070528686047, + 0.00843891967087984, + -0.018936794251203537, + 0.017564157024025917, + -0.0011432809988036752, + -0.009594456292688847, + -0.008179798722267151, + -0.010343804024159908, + -0.0029396151658147573, + 0.017998358234763145, + -0.005711152218282223, + 0.005066853016614914, + -0.018628651276230812, + -0.03459606692194939, + 0.0032284993212670088, + -0.023530928418040276, + -0.02425926737487316, + 0.002013435121625662, + 0.015379142016172409, + 0.0006941974279470742, + -0.001347250654362142, + -0.011534356512129307, + 0.013376211747527122, + -6.833642692072317e-5, + -0.04535306245088577, + 0.030254051089286804, + 0.009454390965402126, + 0.012738916091620922, + 0.010855041444301605, + 0.01683581806719303, + 0.02009933441877365, + -0.016163507476449013, + -0.009965628385543823, + 0.018656665459275246, + 0.01544917467981577, + -0.0003354995569679886, + -0.00829885434359312, + -0.023811059072613716, + 0.0006495516863651574, + 0.012409763410687447, + -0.005311966873705387, + 0.00678615178912878, + -0.008712045848369598, + -0.03078629821538925, + -0.027508774772286415, + 0.008712045848369598, + 0.010133706033229828, + 0.009349342435598373, + 0.002402115613222122, + 0.014174583368003368, + -0.02029542624950409, + 0.006169865373522043, + -0.000288227602140978, + -0.003928824793547392, + 0.010105693712830544, + -0.011037126183509827, + -0.007864652201533318, + -0.019216924905776978, + -0.0012045594630762935, + 0.010890057310461998, + -0.01773223467171192, + 0.023965129628777504, + 0.005865223705768585, + -0.006295924074947834, + -0.026136137545108795, + 0.0010609927121549845, + -0.009678495116531849, + 0.007801623083651066, + 0.0023373356088995934, + -0.03322342783212662, + -0.012787939049303532, + -0.003974345978349447, + -0.028223106637597084, + 0.003442098619416356, + 0.02204623818397522, + -0.007178333587944508, + -0.009391361847519875, + 0.003694215789437294, + 0.02966577745974064, + -0.003701218869537115, + 0.013705365359783173, + -0.00986057985574007, + -0.019230931997299194, + 0.002592954318970442, + 0.006961232982575893, + -0.00962947215884924, + 0.01125422678887844, + -0.008144782856106758, + 0.009377354755997658, + -0.018894774839282036, + 0.01130324974656105, + -0.003834280651062727, + 0.007703577633947134, + -0.00564112002030015, + -0.0024809022434055805, + -0.005749670322984457, + 0.0033458038233220577, + -0.007668561302125454, + 0.0028485730290412903, + -0.010763999074697495, + 0.013817417435348034, + 0.016107480973005295, + -0.011359275318682194, + 0.011674421839416027, + 0.006807161495089531, + -0.004769214894622564, + -0.010553901083767414, + -0.006628578528761864, + -0.0006486762431450188, + -0.018488585948944092, + -0.020561549812555313, + 0.005028335377573967, + 0.013719371519982815, + -0.0010277272667735815, + -0.015393149107694626, + 0.007983707822859287, + -0.0070312656462192535, + 0.004303498659282923, + 0.0037607466802001, + -0.007766606751829386, + 0.012563834898173809, + 0.008515954948961735, + -0.026290209963917732, + 0.009209277108311653, + -0.040142644196748734, + 0.014930934645235538, + 0.029581738635897636, + -0.0023635977413505316, + -0.011555366218090057, + 0.03339150920510292, + 0.012752923183143139, + -0.006432487163692713, + 0.0012387002352625132, + 0.001296477159485221, + -0.005007325671613216, + 0.007234359625726938, + 0.0059317550621926785, + -0.00747247040271759, + -0.010939080268144608, + -0.007787616923451424, + 0.005872227251529694, + 0.0017446852289140224, + 0.004625648260116577, + 0.01270390022546053, + -0.007591525558382273, + -0.0037747530732303858, + -0.024063175544142723, + 0.003240755060687661, + -0.008585987612605095, + 0.0077175842598080635, + -0.020085327327251434, + -0.010154715739190578, + 0.010623933747410774, + -0.0059387581422924995, + -0.007325401995331049, + -0.0016895346343517303, + -0.014426699839532375, + -0.026318222284317017, + 0.00636245496571064, + -0.005539572797715664, + 0.001805088366381824, + 0.013103085570037365, + 0.02413320727646351, + 0.028937438502907753, + 0.010210742242634296, + 0.010518885217607021, + -0.010834031738340855, + -0.006593562196940184, + 0.01727002114057541, + -0.007024262100458145, + 0.005056348163634539, + 0.007584522478282452, + 0.009048202075064182, + -0.010308787226676941, + -0.006950728129595518, + -0.015477187931537628, + -0.012850968167185783, + -0.013733377680182457, + 0.0019363992614671588, + -0.0016799052245914936, + 0.010665953159332275, + -0.00477971974760294, + 0.007843642495572567, + -0.01549119409173727, + 0.003359810449182987, + -0.013908459804952145, + -0.011401294730603695, + -0.0011030122404918075, + 0.010539894923567772, + -0.00962947215884924, + -0.0026892488822340965, + 0.001497820601798594, + -0.000898167141713202, + 0.008852111175656319, + 0.0016737773548811674, + -0.003820274258032441, + -0.011345269158482552, + 0.0004889145493507385, + -0.010799014940857887, + -0.002554436447098851, + -0.005749670322984457, + 0.0002781604416668415, + 0.008578984066843987, + -0.011576375924050808, + 0.03711723908782005, + -0.012339730747044086, + -0.005665631033480167, + -0.03207489475607872, + -0.02336285077035427, + 0.007857649587094784, + 0.015379142016172409, + 0.02312473952770233, + -0.009713510982692242, + 0.01910487189888954, + 0.019553080201148987, + -0.005826706066727638, + -0.02974981628358364, + -0.025603890419006348, + -0.007017259020358324, + 0.015911389142274857, + -0.0181664377450943, + 0.016723766922950745, + 0.0027417733799666166, + -0.017900314182043076, + 0.02445535734295845, + -0.0033352989703416824, + -0.007465467322617769, + 0.0010049666743725538, + 0.013509274460375309, + -0.008487941697239876, + -0.021485978737473488, + -0.02397913672029972, + -0.001674652798101306, + 0.005007325671613216, + -0.012437776662409306, + -0.0001699382992228493, + -0.0008154411916621029, + -0.004923286382108927, + -0.002620967337861657, + -0.009419374167919159, + 0.0028573269955813885, + 0.01689184457063675, + 0.0028065533842891455, + -0.0006158485193736851, + 0.012073607183992863, + 0.006667096167802811, + 0.03437196463346481, + 0.004117912612855434, + -0.01697588339447975, + 0.002300568390637636, + 0.006236396264284849, + -0.0013358703581616282, + -0.004695680923759937, + 0.0163175780326128, + -0.0030849326867610216, + -0.0025649413000792265, + 0.020743634551763535, + 0.022480441257357597, + -0.004650159738957882, + -0.004667667672038078, + -0.013145104981958866, + 0.019076859578490257, + 0.01864265836775303, + -0.01698989048600197, + 0.0032197453547269106, + 0.006604067049920559, + -0.007479473482817411, + -0.016821812838315964, + -0.01603744737803936, + 0.003820274258032441, + -0.001513577881269157, + 0.00564112002030015, + 0.009006182663142681, + -0.011744454503059387, + -0.0147348428145051, + 0.00743745407089591, + 0.014062531292438507, + 0.007563512772321701, + -0.004706185776740313, + 0.008550970815122128, + -0.008929146453738213, + -0.006807161495089531, + 0.010210742242634296, + -0.017382072284817696, + -0.018432561308145523, + 0.012318721041083336, + 0.014034518040716648, + -0.014440706931054592, + 0.01556122675538063, + 0.0014216603012755513, + -0.006838676054030657, + 0.01483288872987032, + -0.0075144898146390915, + -0.017157968133687973, + 0.01868467777967453, + 0.01991724967956543, + -0.003263515653088689, + 0.0021622541826218367, + 0.02095373161137104, + 0.01332018617540598, + 0.02809704840183258, + -0.005483546759933233, + 0.016205526888370514, + -0.0006294173072092235, + -0.007227356545627117, + 0.0038657954428344965, + -0.005329475272446871, + 0.014356667175889015, + -0.026668384671211243, + 0.011009112931787968, + 0.007801623083651066, + 0.025239722803235054, + 0.013033052906394005, + 0.0008675279095768929, + -0.013971488922834396, + -0.011457321234047413, + 0.0035313901025801897, + 0.014174583368003368, + 0.005052846856415272, + -0.011744454503059387, + 0.0060438066720962524, + -0.00412841746583581, + -0.023432882502675056, + -0.011058135889470577, + 0.003750241594389081, + -0.009349342435598373, + 0.013733377680182457, + -0.00372573034837842, + -0.0004626523586921394, + 0.006562047637999058, + 0.012822954915463924, + 0.01253582164645195, + -0.0012789689935743809, + 0.028265126049518585, + -0.001964412396773696, + 0.008670026436448097, + 0.013467254117131233, + 0.007773610297590494, + -0.00263672461733222, + -0.0031181981321424246, + -0.001208061003126204, + 0.008719049394130707, + -0.0033528071362525225, + -0.01637360453605652, + -0.002323328983038664, + 0.004391039256006479, + 0.00750748673453927, + 0.004741202108561993, + -0.004247472621500492, + -0.020617574453353882, + -0.025856008753180504, + -0.021513991057872772, + -0.01476285606622696, + -0.006418481003493071, + -0.004152928479015827, + 0.01962311379611492, + -0.03042212873697281, + -0.006418481003493071, + 0.010700969956815243, + 0.023811059072613716, + -0.02427327260375023, + 0.0024371319450438023, + -0.010434846393764019, + -0.03442798927426338, + 0.007871655747294426, + -0.005199914798140526, + -0.01244477927684784, + 0.005791689734905958, + 0.012178655713796616, + 0.009090221486985683, + -0.0073394086211919785, + 0.0175501499325037, + 0.02152799814939499, + -0.0018751207971945405, + 0.00704877357929945, + 0.00886611733585596, + -0.016261551529169083, + -0.021303893998265266, + 0.027424735948443413, + -0.01336220558732748, + 0.009209277108311653, + -0.007332405541092157, + -0.01727002114057541, + 0.012956016696989536, + 0.0015100763412192464, + -0.018460573628544807, + 0.010785008780658245, + 0.01812441647052765, + 0.007297389209270477, + -0.010350807569921017, + -0.012752923183143139, + -0.026906495913863182, + 0.004349019844084978, + -0.02346089482307434, + 0.012150643393397331, + 0.019567087292671204, + 0.012857971712946892, + 0.01773223467171192, + 0.023068713024258614, + 0.0020029302686452866, + -0.005066853016614914, + -0.0029658775310963392, + -0.0011809234274551272, + 0.003212742041796446, + -0.010280774906277657, + 0.022648518905043602, + 0.0013901456259191036, + -0.0038903066888451576, + 0.009384358301758766, + -0.003991853911429644, + -0.012437776662409306, + -0.03806968033313751, + 0.0015582236228510737, + 0.004145925398916006, + 0.006782650016248226, + 0.031094441190361977, + 0.013607319444417953, + 0.0007821757462807, + -0.016247546300292015, + -0.007409441284835339, + -0.016625721007585526, + 0.00370822218246758, + 0.005315468646585941, + -0.014223605394363403, + 0.0004827867087442428, + 0.004461071919649839, + -0.01170943770557642, + -0.03215893357992172, + 0.015463181771337986, + 0.024861546233296394, + 0.017676210030913353, + -0.02176610939204693, + -0.010988103225827217, + -5.2387611503945664e-5, + -0.009265302680432796, + 0.008095759898424149, + 0.0035278883296996355, + -0.014594778418540955, + 0.0001732210657792166, + 0.010329796932637691, + -0.011275236494839191, + -0.016527675092220306, + 0.018222462385892868, + 0.0009550685645081103, + -0.006478008348494768, + -0.00877507496625185, + 0.005812699440866709, + 0.021513991057872772, + 0.015645265579223633, + 0.01868467777967453, + -0.011877516284584999, + 0.015729304403066635, + -0.005403009243309498, + 0.001497820601798594, + -0.008880124427378178, + 0.016345590353012085, + 0.015337122604250908, + 0.017185982316732407, + 0.006099832709878683, + 0.011667418293654919, + 0.0019504057709127665, + -0.011457321234047413, + 0.0013577556237578392, + -0.01598142273724079, + 0.010904064401984215, + -0.02270454540848732, + 0.02554786577820778, + -0.009314325638115406, + 0.029777828603982925, + 0.01265487726777792, + 0.005276950541883707, + 0.01126123033463955, + -0.011534356512129307, + 0.0001452080614399165, + 0.014062531292438507, + 0.002785543678328395, + -0.004100404214113951, + 0.0022025229409337044, + -0.006702112499624491, + -0.0010215993970632553, + -0.013894452713429928, + -0.0013393720146268606, + -0.0005497552920132875, + 0.014139566570520401, + -0.0001341560564469546, + -0.01977718435227871, + -0.006705614272505045, + -0.039946552366018295, + -0.015127025544643402, + -0.0414312407374382, + 0.01198956836014986, + 0.003592668566852808, + 0.0012290708255022764, + -0.02572994865477085, + 0.013369209133088589, + 0.00708378991112113, + -0.019174905493855476, + -0.0017516885418444872, + 0.0269205030053854, + 0.004891771823167801, + 0.011492337100207806, + -0.05064752325415611, + 0.02918955683708191, + 0.0008403902756981552, + -0.002482652897015214, + -0.008614000864326954, + -0.004590631928294897, + -0.007248366251587868, + 0.005311966873705387, + 0.012928004376590252, + -0.027130600064992905, + 0.004566120449453592, + 0.010756995528936386, + -0.02138793282210827, + -0.008480939082801342, + -0.024707473814487457, + -0.021037770435214043, + -0.013922465965151787, + 0.0008465181454084814, + 0.005056348163634539, + 0.018082397058606148, + -0.00045083436998538673, + -0.012360740453004837, + -0.017802268266677856, + 0.010827028192579746, + 0.023769039660692215, + 0.05266445875167847, + 0.014062531292438507, + 5.690142643288709e-5, + 0.00418444350361824, + 0.018096404150128365, + -0.02748076245188713, + 0.008922143839299679, + -0.0069962493143975735, + -0.01844656653702259, + -0.0059037418104708195, + -0.010567908175289631, + -0.014181585982441902, + 0.013061066158115864, + 0.008312860503792763, + -0.018488585948944092, + 0.004790224600583315, + 0.002158752642571926, + -0.013068068772554398, + -0.009181263856589794, + 0.009524423629045486, + 0.007829636335372925, + 0.015463181771337986, + -7.719991845078766e-5, + 0.007829636335372925, + 0.017760248854756355, + -0.005315468646585941, + 0.001254457631148398, + -0.014846894890069962, + -0.01042784284800291, + 0.007864652201533318, + 0.026374248787760735, + -0.007297389209270477, + -0.0027260161004960537, + -0.004783221520483494, + -0.011366278864443302, + 0.006971737835556269, + -0.006197878625243902, + 0.012970023788511753, + 0.004723693709820509, + 0.0022305359598249197, + -0.007556509226560593, + -0.010848037898540497, + 0.015099012292921543, + -0.01717197522521019, + -0.01707392930984497, + 0.002993890317156911, + -0.010848037898540497, + -0.02658434584736824, + 0.01872669719159603, + -0.009713510982692242, + -0.009041198529303074, + -0.012991033494472504, + -0.01476285606622696, + -0.025940047577023506, + -0.0014785616658627987, + 0.012640871107578278, + 0.04036674648523331, + 0.008719049394130707, + -0.008957159705460072, + -0.006621574983000755, + 0.0007813003612682223, + 0.00523843290284276, + 0.011030122637748718, + 0.004723693709820509, + -0.006334441713988781, + 0.019385002553462982, + 0.005497553385794163, + -0.006358953192830086, + 0.014958946965634823, + 0.0007502234075218439, + 0.011695431545376778, + -0.016429631039500237, + -0.007500483188778162, + -0.004489084705710411, + -0.018712690100073814, + -0.01556122675538063, + -0.024063175544142723, + -0.002526423428207636, + -0.005812699440866709, + 0.015687284991145134, + 0.007633544970303774, + -0.02459542267024517, + 0.00834787730127573, + -0.008550970815122128, + -0.0163175780326128, + -0.008592991158366203, + -0.006250402890145779, + -0.006047308444976807, + -0.02521170862019062, + 0.025743955746293068, + -0.02753678895533085, + 0.009349342435598373, + -0.0026594852097332478, + 0.0162755586206913, + -0.002894093981012702, + -0.02199021354317665, + -0.013383215293288231, + -0.002587701892480254, + -0.005077357869595289, + 0.012283705174922943, + -0.004923286382108927, + 0.007234359625726938, + 0.002948369365185499, + 0.012991033494472504, + -0.017424091696739197, + -0.032046884298324585, + -0.01107214204967022, + 0.0026629867497831583, + 0.003855290589854121, + 0.01637360453605652, + -0.02053353562951088, + -0.0007786741480231285, + 0.013453247956931591, + 0.004818237852305174, + -0.007206346839666367, + 0.013467254117131233, + 0.008053740486502647, + 0.013712367974221706, + -0.0006626827525906265, + 0.0047377003356814384, + -0.010981099680066109, + 0.014650803990662098, + 0.015295103192329407, + -0.0018646159442141652, + 0.014552759006619453, + 0.012928004376590252, + 0.00806774664670229, + 0.00972051452845335, + 0.005462537053972483, + -0.010168722830712795, + 0.009384358301758766, + 0.002971129957586527, + -0.0024458859115839005, + 0.004506593104451895, + 0.006453497335314751, + -0.0036451928317546844, + 0.017914319410920143, + -0.008025727234780788, + -0.012213672511279583, + -0.003932326100766659, + -0.017017902806401253, + 0.04725794866681099, + 0.028797375038266182, + -0.0018856257665902376, + -0.02351692132651806, + -0.020085327327251434, + -0.03260714188218117, + 0.00600879080593586, + 0.004979312419891357, + 0.0014146569883450866, + -0.010378819890320301, + -0.009188267402350903, + -0.010560904629528522, + -0.001654518418945372, + -0.007766606751829386, + 0.020869692787528038, + 0.013089078478515148, + 0.03459606692194939, + -0.01428663544356823, + 0.006555044092237949, + -0.01244477927684784, + 0.009146247990429401, + 0.0028485730290412903, + 0.008859114721417427, + -0.0020764642395079136, + -0.005108872894197702, + 0.01052588876336813, + 0.017802268266677856, + -0.018614644184708595, + 0.004194948356598616, + -0.015267089940607548, + 0.007864652201533318, + -0.012836962006986141, + -0.017984353005886078, + 0.0023723517078906298, + -0.0024283777456730604, + -0.011534356512129307, + -0.01995926909148693, + -0.016499662771821022, + -0.009202273562550545, + 0.00314621115103364, + 0.028965452685952187, + 0.010329796932637691, + -0.0019504057709127665, + 0.008768072351813316, + -0.014412693679332733, + -0.003239004174247384, + 0.025757962837815285, + -0.015365135855972767, + 0.01040683314204216, + -0.0012798444367945194, + 0.013075072318315506, + 0.00033659383188933134, + 0.004860257264226675, + -0.00101109454408288, + -0.010518885217607021, + 0.002610462252050638, + 0.005732161924242973, + -0.012423769570887089, + 0.014524745754897594, + 0.007129311095923185, + -0.010630937293171883, + 0.0026489803567528725, + -0.01773223467171192 + ], + "1d74e06e-21a1-4b8c-bb5c-4866a1a9531f": [ + 0.013035193085670471, + -0.03155597299337387, + -0.020127667114138603, + -0.004034537822008133, + -0.05516061559319496, + 0.0033730813302099705, + 0.006257862318307161, + 0.03435417637228966, + 0.022773493081331253, + 0.047929614782333374, + -0.0005164381582289934, + 0.011649943888187408, + -0.01943504437804222, + 0.0023099028039723635, + -0.014683639630675316, + -0.002091726055368781, + -0.03213777765631676, + 0.0331074520945549, + 0.0005380826769396663, + 0.024560464546084404, + 0.05136503279209137, + -0.02737252041697502, + -0.011830026283860207, + 0.03989516943693161, + 0.002081336686387658, + -0.016456758603453636, + 0.021429801359772682, + -0.006811961997300386, + -0.01832684502005577, + -0.015320854261517525, + 0.0042908089235424995, + 0.022316360846161842, + 0.05421864613890648, + -0.014094908721745014, + 0.0015237738844007254, + -0.01455896720290184, + -0.0019151067826896906, + 0.017135530710220337, + -0.026139648631215096, + -0.008332272991538048, + -0.021983901038765907, + 0.033827781677246094, + 0.03130662813782692, + 0.015168476849794388, + -0.03637664020061493, + 0.04056008905172348, + 0.05100486800074577, + 3.7986126699252054e-5, + -0.01655372604727745, + 0.0021402097772806883, + 0.0015904390020295978, + 0.043967802077531815, + 0.016830775886774063, + 0.011075065471231937, + 0.009163422510027885, + 0.005160052329301834, + -0.01676151342689991, + 0.06687982380390167, + 0.0379004143178463, + -0.037595659494400024, + 0.006514133419841528, + 0.0240617748349905, + 0.031445153057575226, + -0.00013830846000928432, + 0.027912767603993416, + -0.030032198876142502, + 0.005966959986835718, + -0.02733096294105053, + -0.03814975917339325, + 0.0031929989345371723, + -0.0010025739902630448, + -0.01762036792933941, + -0.0392579585313797, + 0.00029956010985188186, + -0.023286035284399986, + -0.021692998707294464, + 0.04341370239853859, + -0.017024710774421692, + -0.0033626919612288475, + 0.02029389701783657, + -0.038260579109191895, + 0.0018077499698847532, + 0.031001873314380646, + 0.024117184802889824, + 0.06239161640405655, + 0.03130662813782692, + -0.03485286608338356, + -0.03313515707850456, + -0.04740322008728981, + -0.01674766093492508, + 0.0027168195229023695, + 0.0033401816617697477, + 0.026555223390460014, + -0.00014783204824198037, + -0.03374466672539711, + -0.005083863623440266, + 0.05072781816124916, + 0.009800637140870094, + -0.028328342363238335, + -0.03634893521666527, + -0.02557169646024704, + 0.008540060371160507, + -0.03911943361163139, + -6.388514066202333e-6, + 0.009128791280090809, + -0.00894870888441801, + 0.03177761286497116, + -0.014448147267103195, + -0.0251007117331028, + 0.03986746445298195, + 0.03000449389219284, + -0.017301760613918304, + -0.0035670162178575993, + -0.017495695501565933, + 0.00018668394477572292, + -0.08228378742933273, + -0.012557282112538815, + -0.02487907186150551, + 0.019947584718465805, + -0.07890378683805466, + 0.040227629244327545, + 0.04499288648366928, + 0.017149383202195168, + -0.010209284722805023, + 0.024311119690537453, + -0.013914826326072216, + -0.01090883556753397, + -0.004477817565202713, + 0.019462749361991882, + 0.017467990517616272, + 0.02715088054537773, + -0.03504680097103119, + -0.025253089144825935, + 0.004107263404875994, + -0.030253838747739792, + 0.018437664955854416, + 0.008678585290908813, + 0.030530888587236404, + -0.0317499078810215, + 0.04756944999098778, + -0.004862224217504263, + -0.021318981423974037, + -0.006465649697929621, + -0.018603894859552383, + 0.009163422510027885, + 7.2076240030583e-5, + -0.05050617828965187, + 0.06023062765598297, + -0.0010865547228604555, + 0.007611943408846855, + -0.05097716301679611, + 0.013783227652311325, + 0.040670908987522125, + 0.00958592351526022, + -0.024976039305329323, + 0.035850245505571365, + 0.007424934767186642, + 0.0007142690010368824, + 0.01045170333236456, + -0.020543241873383522, + -0.0018285287078469992, + -0.025737926363945007, + 0.02443579211831093, + 0.006029296200722456, + 0.023632347583770752, + 0.027912767603993416, + 0.04341370239853859, + 0.007237926125526428, + -0.04385698214173317, + 0.009814489632844925, + 0.019116437062621117, + -0.02227480337023735, + 0.011546050198376179, + -0.006825814489275217, + -0.018216025084257126, + -0.0139979412779212, + 0.0027774241752922535, + 0.003618963062763214, + 0.046405840665102005, + -0.019047174602746964, + -0.0009766005678102374, + -0.03155597299337387, + -0.0476248599588871, + 0.017357170581817627, + -0.0021003838628530502, + 0.023673905059695244, + 0.0163043811917305, + 0.008401535451412201, + -0.008422314189374447, + 0.04779108986258507, + 0.0024605486541986465, + -0.021776113659143448, + 0.020363159477710724, + 0.04579633101820946, + -0.010721826925873756, + -0.012384125962853432, + -0.03529614582657814, + -0.01983676664531231, + 0.020764881744980812, + 0.028162112459540367, + -0.008754773996770382, + -0.048622239381074905, + -0.06870835274457932, + 0.04873305931687355, + -0.022399475798010826, + 0.016401348635554314, + -0.014503557235002518, + -0.02515612170100212, + 0.0176619254052639, + -0.04119730368256569, + 0.026638338342308998, + -0.010784163139760494, + 0.0019653220660984516, + -0.01586110144853592, + -0.009772932156920433, + -0.009786784648895264, + -0.017080120742321014, + 0.02382628247141838, + 0.013547735288739204, + 0.0002127655898220837, + -0.0353238508105278, + -0.0015800496330484748, + 0.016152003780007362, + -0.024962186813354492, + -0.03853762894868851, + -0.004003369715064764, + -0.01278584823012352, + 0.031001873314380646, + -0.048816174268722534, + -0.026305878534913063, + 0.05928865820169449, + 0.016484463587403297, + -0.019573569297790527, + -0.041308123618364334, + -0.004315050784498453, + 0.001264039659872651, + -0.010784163139760494, + -0.01037551462650299, + 0.02203931100666523, + 0.007999813184142113, + 0.042194683104753494, + 0.03950730338692665, + -0.02291201800107956, + -0.013395357877016068, + 0.025488581508398056, + 0.012848184444010258, + -0.017495695501565933, + 0.04557469114661217, + 0.023410707712173462, + -0.009606702253222466, + 0.02051553688943386, + 0.05358143150806427, + -0.003127199597656727, + -0.016803070902824402, + 0.006268251687288284, + 0.033827781677246094, + 0.02119430899620056, + -0.013693186454474926, + -0.005450954660773277, + -0.027427930384874344, + -0.006787720136344433, + -0.004637121222913265, + -0.016179708763957024, + -0.01046555582433939, + 0.048151254653930664, + -0.013118308037519455, + 0.010929614305496216, + -0.03773418441414833, + -0.009883752092719078, + 0.010029202327132225, + -0.02625046856701374, + 0.0032622613944113255, + 0.0016449831891804934, + -0.018437664955854416, + -0.0109226880595088, + -0.007847435772418976, + 0.042194683104753494, + -0.011102770455181599, + 0.020099962130188942, + 0.0028276394587010145, + 0.007923624478280544, + 0.000854958372656256, + 0.00037942835479043424, + 0.031029578298330307, + -0.027940472587943077, + -0.02818981744349003, + 0.013700112700462341, + 0.008560839109122753, + -0.04008910432457924, + -0.035850245505571365, + -0.009426619857549667, + -0.032608762383461, + 0.02090340666472912, + -0.012557282112538815, + 0.009849120862782001, + 0.00396527536213398, + -0.001800823723897338, + -0.01037551462650299, + 0.010333957150578499, + -0.014392737299203873, + -0.025890303775668144, + -0.017578810453414917, + 0.012280232273042202, + 0.004491670057177544, + -0.003549700602889061, + -0.013353800401091576, + 0.027386372908949852, + 0.02228865586221218, + -0.04989666864275932, + 0.025086859241127968, + 0.033162862062454224, + 0.014586672186851501, + -0.009869899600744247, + -0.001718574552796781, + 0.002922875341027975, + 0.01056944951415062, + 0.04887158423662186, + -0.006022369954735041, + -0.0073972297832369804, + -0.03465893119573593, + 0.00015032116789370775, + -0.0035947212018072605, + -0.05396930128335953, + 0.017564957961440086, + 0.025890303775668144, + -0.03645975515246391, + -0.0073972297832369804, + 0.030336953699588776, + -0.018132910132408142, + -0.03424335643649101, + 0.009883752092719078, + -0.007999813184142113, + -0.023258330300450325, + -0.01962897926568985, + -0.01809135265648365, + -0.027275552973151207, + -0.02648596093058586, + -0.033162862062454224, + -0.007251778617501259, + 0.026305878534913063, + -0.015930363908410072, + 0.027635717764496803, + -0.004051853436976671, + 0.028591539710760117, + 0.028730064630508423, + 0.010867278091609478, + 0.021526768803596497, + 0.01831299252808094, + 0.019490454345941544, + -0.0035843318328261375, + 0.0008181626908481121, + -0.0021298204082995653, + 0.032304007560014725, + 0.01136596780270338, + 0.008692437782883644, + 0.006472575943917036, + -0.016927743330597878, + -0.003750561736524105, + -0.012834331952035427, + 0.014600524678826332, + 0.006482965312898159, + -0.023230625316500664, + -0.02335529774427414, + -0.002831102581694722, + -0.005714152008295059, + 0.020196929574012756, + 0.015016099438071251, + -0.008997192606329918, + 0.02576563134789467, + 0.01056944951415062, + -0.03440958634018898, + 0.03911943361163139, + 0.019919879734516144, + 0.010749531909823418, + -0.06372145563364029, + 0.020418569445610046, + 0.04100336879491806, + 0.008228379301726818, + -0.0018545021302998066, + 0.0176619254052639, + -0.007563459686934948, + 0.008408461697399616, + 0.020099962130188942, + -0.006178210489451885, + 0.010964245535433292, + 0.027954325079917908, + 0.034049421548843384, + 0.005187757313251495, + -0.0036466680467128754, + -0.025280794128775597, + -0.024740546941757202, + -0.028757769614458084, + -0.028286784887313843, + -0.011019655503332615, + -0.03479745611548424, + 0.02335529774427414, + -0.00980756338685751, + -0.0071340324357151985, + 0.013679333962500095, + -0.010943466797471046, + 0.008318420499563217, + -0.0334676168859005, + -0.023202920332551003, + 0.034520406275987625, + 0.028508424758911133, + -0.011552976444363594, + -0.0013731280341744423, + -0.002245835028588772, + 0.0015099213924258947, + 0.022177835926413536, + -0.013423062860965729, + 0.015833396464586258, + 0.0139979412779212, + -0.003397323191165924, + 0.03862074390053749, + 0.0032622613944113255, + 0.02909022942185402, + 0.03612729534506798, + -0.06272407621145248, + 0.0015713918255642056, + 0.02692924067378044, + 0.0520576573908329, + -0.0015618682373315096, + -0.005766098853200674, + -0.021651441231369972, + 0.016152003780007362, + 0.042637962847948074, + 0.010611006990075111, + -0.01849307492375374, + 0.005471733398735523, + -0.01893635466694832, + -0.018409959971904755, + 0.003085642121732235, + -0.02267652563750744, + -0.0021055785473436117, + -0.013817858882248402, + 0.022108573466539383, + -0.030752528458833694, + -0.033412206918001175, + -0.011123549193143845, + 0.041086483746767044, + 0.007369524799287319, + -0.008747847750782967, + 0.01762036792933941, + -0.03637664020061493, + -0.03615500032901764, + -0.027871210128068924, + -0.004453575704246759, + 0.004865687340497971, + 0.006971265655010939, + -0.012952078133821487, + 0.03335679695010185, + -0.05538225546479225, + -0.0055998689495027065, + -0.0072448523715138435, + 0.0198783241212368, + -0.0322485975921154, + -0.012778921984136105, + 0.04804043471813202, + -0.002491716528311372, + -0.04895469918847084, + -0.013762448914349079, + 0.031029578298330307, + -0.02975514903664589, + -0.0012830868363380432, + -0.05178060755133629, + -0.017038563266396523, + 0.010832646861672401, + 0.007099401205778122, + -0.03222089260816574, + -0.0370415598154068, + 0.0218453761190176, + -0.01068719569593668, + -0.008394609205424786, + 0.005915013141930103, + 0.011289779096841812, + 0.022427180781960487, + 0.003909865394234657, + 0.04205615818500519, + -0.026499813422560692, + -0.02468513697385788, + -0.011414451524615288, + -0.0286746546626091, + 0.009281168691813946, + 0.02422800473868847, + 0.010160801000893116, + -0.03687532991170883, + -0.011940846219658852, + -0.007549607194960117, + 0.005655278917402029, + 0.05286110192537308, + -0.004647510591894388, + 0.017495695501565933, + -0.01831299252808094, + -0.0028085922822356224, + -0.03612729534506798, + -0.0021003838628530502, + -0.027275552973151207, + -0.01786971278488636, + -0.05751553922891617, + 0.03524073585867882, + -0.04623961076140404, + -0.006884687580168247, + 0.03864844888448715, + 0.011774616315960884, + 0.007805878296494484, + -0.01788356527686119, + 0.004325440153479576, + 0.010410145856440067, + -0.01388019509613514, + 0.01762036792933941, + 0.027732685208320618, + 0.004134968388825655, + 0.012010108679533005, + 0.008879446424543858, + 0.02404792234301567, + -0.014087982475757599, + 0.008664732798933983, + 0.0213466864079237, + -0.01827143505215645, + 0.010049981065094471, + 0.018188320100307465, + 0.002600804902613163, + 0.01829914003610611, + -0.010680269449949265, + -0.016138151288032532, + -0.01942119188606739, + 0.022621115669608116, + 0.04236091300845146, + -0.007625795900821686, + -0.0020588263869285583, + 0.020141519606113434, + -0.0067807938903570175, + -0.006018906831741333, + 0.018202172592282295, + -0.03158367797732353, + 0.00894870888441801, + 0.0016345938201993704, + -0.018465369939804077, + 0.030724823474884033, + -0.009537439793348312, + 0.04366304725408554, + 0.00048483716091141105, + -0.026319731026887894, + 0.027469487860798836, + 0.053442906588315964, + -0.03147285804152489, + 0.018908649682998657, + 0.012744290754199028, + 0.019753651693463326, + -0.029007114470005035, + 0.007882067002356052, + 0.02112504653632641, + -0.009225758723914623, + 0.011649943888187408, + -0.04092025384306908, + 0.024782104417681694, + -0.020016847178339958, + -0.019795209169387817, + -0.004173062741756439, + 0.015528641641139984, + 0.02118045650422573, + -0.0003004258906003088, + 0.000793487939517945, + -0.046156495809555054, + 0.011684575118124485, + -0.022662673145532608, + 0.03964582830667496, + 0.015099214389920235, + -0.005056158639490604, + 5.578873970080167e-5, + 0.01500224694609642, + 0.029201049357652664, + -0.027289405465126038, + -0.0279958825558424, + 0.020570946857333183, + -0.010957319289445877, + 0.015708724036812782, + -0.020183077082037926, + -0.0059842756018042564, + 0.004720236174762249, + -0.03418794646859169, + -0.005450954660773277, + -0.016152003780007362, + 0.011996256187558174, + -0.0006190331769175828, + -0.042665667831897736, + -0.027524897828698158, + -0.013118308037519455, + 0.029450394213199615, + 0.011753837577998638, + 0.021914638578891754, + 0.01321527548134327, + -0.006382534746080637, + -0.02845301479101181, + 0.02647210843861103, + 0.01047940831631422, + 0.026098091155290604, + 0.0010527892736718059, + -0.0036362786777317524, + -0.02292587049305439, + 0.02005840465426445, + 0.008657806552946568, + -0.03751254454255104, + -0.0032414826564490795, + 0.012287158519029617, + -0.0014926057774573565, + -0.016027331352233887, + -0.014392737299203873, + -0.021900786086916924, + -0.003781729843467474, + 0.008630101568996906, + 0.019365781918168068, + 0.001496934681199491, + 0.03657057508826256, + 0.02227480337023735, + 0.011594533920288086, + 0.007210221141576767, + -0.009343504905700684, + -0.01311138179153204, + 0.02399251237511635, + -0.04344140738248825, + 0.05468963086605072, + -0.018451517447829247, + -0.008546986617147923, + -0.02602882869541645, + -0.023327592760324478, + -0.019545864313840866, + -0.022565705701708794, + -0.00828378926962614, + 0.009218832477927208, + 0.012778921984136105, + 0.032968927174806595, + -0.02823137491941452, + 0.032331712543964386, + 0.029478099197149277, + 0.0077504683285951614, + 0.017149383202195168, + -0.026361288502812386, + 0.013852490112185478, + -0.05928865820169449, + -0.020390864461660385, + 0.004218083340674639, + 0.04150205850601196, + -0.013991015031933784, + 0.011165106669068336, + -0.0339663065969944, + 0.023424560204148293, + 0.03108498826622963, + -0.008290715515613556, + -0.026195058599114418, + -0.013360726647078991, + 0.017274055629968643, + 0.015805691480636597, + -0.009066455066204071, + -0.019795209169387817, + -0.015307001769542694, + 0.024324972182512283, + 0.01269580703228712, + -0.0063271247781813145, + 0.0139079000800848, + -0.008914077654480934, + 0.019351929426193237, + 0.010472482070326805, + 0.029949083924293518, + 0.03194384276866913, + -0.002283929381519556, + 0.007591164670884609, + -0.004619805607944727, + -0.01279970072209835, + -0.015182329341769218, + -0.0050146011635661125, + 0.017814302816987038, + 0.014143392443656921, + 0.011864657513797283, + -0.02600112371146679, + 0.018229877576231956, + -0.01701085828244686, + 0.006531449034810066, + -0.03258105739951134, + -0.010617933236062527, + -0.006292493548244238, + -0.007189442403614521, + 0.013852490112185478, + 0.022427180781960487, + -0.00871321652084589, + 0.014108761213719845, + 0.03565631061792374, + -0.02070947177708149, + -0.01377630140632391, + 0.026970798149704933, + 0.02267652563750744, + 0.008325346745550632, + 0.021873081102967262, + -0.007611943408846855, + 0.023258330300450325, + -0.026624485850334167, + 0.0014519140822812915, + 0.021208161488175392, + -0.02334144525229931, + -0.015556346625089645, + -0.006167821120470762, + -0.01921340450644493, + -0.02975514903664589, + 0.0013904436491429806, + 0.04698764532804489, + -0.020210782065987587, + -0.006292493548244238, + -0.008526207879185677, + -0.036736804991960526, + 0.020667914301156998, + -6.0225866036489606e-5, + -0.005686447024345398, + -0.0052362410351634026, + 0.009440472349524498, + 0.020016847178339958, + -0.011996256187558174, + -0.00584575068205595, + 0.01629052869975567, + 0.025973418727517128, + -0.025724073871970177, + 0.039812054485082626, + -0.0011584145249798894, + -0.04920404404401779, + -0.033384501934051514, + 0.0273171104490757, + -0.010846499353647232, + -0.023092100396752357, + 0.001638922723941505, + -0.013852490112185478, + 0.051891427487134933, + -0.006323661655187607, + -0.017080120742321014, + 0.008671659044921398, + -0.04299812763929367, + -0.01652602106332779, + -0.01895020715892315, + -0.008678585290908813, + 0.01900561712682247, + -0.0102439159527421, + -0.0031029577367007732, + -0.013471546582877636, + 0.021942343562841415, + -0.01962897926568985, + 0.033162862062454224, + 0.007424934767186642, + -0.0068916138261556625, + 0.027206290513277054, + 0.02909022942185402, + 0.020335454493761063, + 0.047486335039138794, + -0.012411830946803093, + 0.02796817757189274, + 0.029394984245300293, + -0.024324972182512283, + -0.02647210843861103, + -0.0020345845259726048, + 0.025737926363945007, + -0.00924653746187687, + 0.012688880786299706, + -0.022122425958514214, + 0.01745413802564144, + -6.953300908207893e-5, + -0.04083713889122009, + -0.007127106189727783, + 0.007418008521199226, + -0.034492701292037964, + 0.0462673157453537, + 0.0220254585146904, + -0.021540621295571327, + 0.011649943888187408, + -0.02443579211831093, + 0.00667343707755208, + 0.025405466556549072, + -0.014642082154750824, + -0.0445496067404747, + 0.036515165120363235, + 0.011857731267809868, + -0.04695994034409523, + -0.018396107479929924, + -0.010209284722805023, + -0.03147285804152489, + -0.0064379447139799595, + -0.03950730338692665, + 0.03557319566607475, + 0.006479502189904451, + 0.030032198876142502, + 0.02734481543302536, + -0.014725197106599808, + -0.0027878135442733765, + -0.01764807291328907, + -0.00036341141094453633, + -0.015445526689291, + 0.010105391032993793, + 0.012557282112538815, + -0.00562411081045866, + 0.009842194616794586, + -0.029394984245300293, + -0.014087982475757599, + -0.0032813085708767176, + 0.007182516157627106, + -0.06654736399650574, + 0.03995057940483093, + 0.02600112371146679, + -0.015320854261517525, + -0.031195808202028275, + 0.013506177812814713, + 0.013339947909116745, + 0.020792586728930473, + 0.005142736714333296, + -0.029173344373703003, + -0.01878397725522518, + -0.00023224565666168928, + 0.011982403695583344, + 0.025073006749153137, + 0.014420442283153534, + 0.007805878296494484, + -0.001677882857620716, + -0.0014302695635706186, + -0.00915649626404047, + 0.020155372098088264, + -0.009121865034103394, + 0.03687532991170883, + 0.02886858955025673, + -0.029699739068746567, + -0.021900786086916924, + -0.002581757726147771, + 0.0002536737301852554, + 0.0348251610994339, + 0.015140771865844727, + 0.02005840465426445, + -0.014711344614624977, + -0.006534912157803774, + 0.025239236652851105, + 9.81443463388132e-6, + 0.0426933728158474, + -0.03723549470305443, + -0.002292587189003825, + -0.018409959971904755, + 0.0011151254875585437, + -0.005980812478810549, + -0.025488581508398056, + -0.01874241977930069, + -0.010500187054276466, + -0.013707038946449757, + -0.013873268850147724, + -0.00847772415727377, + -0.0025021058972924948, + 0.04144664853811264, + 0.03349532186985016, + 0.005617184564471245, + -0.007611943408846855, + -0.0077296895906329155, + 0.015833396464586258, + -0.034520406275987625, + 0.009177275002002716, + -0.015029951930046082, + 0.011836952529847622, + 0.028757769614458084, + 0.02379857748746872, + 0.026818420737981796, + 0.011871583759784698, + -0.031666792929172516, + -0.016401348635554314, + 0.004841445479542017, + 0.005547922104597092, + -0.02402021735906601, + 0.015597904101014137, + 0.0005147065967321396, + 0.017024710774421692, + -0.006050074938684702, + 0.030059903860092163, + 0.004508985672146082, + -0.0002400376833975315, + -0.01922725699841976, + -0.043081242591142654, + -0.01986447162926197, + 0.003419833490625024, + -0.031001873314380646, + 0.014081056229770184, + 0.005007674917578697, + 0.015279296785593033, + 0.013533882796764374, + -0.023258330300450325, + -0.04801272973418236, + 0.007639648392796516, + 0.006268251687288284, + 0.006237083580344915, + -0.008533134125173092, + -0.023507675155997276, + 0.0007614540518261492, + 2.3166396658780286e-6, + -0.007805878296494484, + -0.027677275240421295, + 0.004938412923365831, + -0.029256459325551987, + -0.03623811528086662, + -0.04299812763929367, + -0.004671752452850342, + -0.031666792929172516, + -0.005201609805226326, + -0.031666792929172516, + -0.0356840156018734, + 0.014198802411556244, + -0.009828342124819756, + -0.02734481543302536, + 0.034963686019182205, + 0.017523400485515594, + -0.008775552734732628, + 0.04981355369091034, + 0.02140209637582302, + -0.00883096270263195, + 0.0006112411501817405, + -0.01785586029291153, + 0.04723699018359184, + 0.016387496143579483, + 0.013416136614978313, + 0.010624859482049942, + -0.004723699297755957, + -0.019338076934218407, + -0.0024397699162364006, + 0.009696743451058865, + 0.0073764510452747345, + 0.0084915766492486, + 0.004682141821831465, + -0.003598184324800968, + 0.006444870959967375, + 0.013873268850147724, + 0.015320854261517525, + 0.0313897430896759, + 0.007258704863488674, + 0.01856233738362789, + 0.013055971823632717, + -0.02269037812948227, + 0.030336953699588776, + -0.014171097427606583, + -0.006247472949326038, + 0.011594533920288086, + -0.04100336879491806, + -0.02223324589431286, + -0.007140958681702614, + 0.003989517223089933, + 0.01652602106332779, + -0.006198989227414131, + 0.018409959971904755, + -0.006867371965199709, + -0.025502434000372887, + 0.04382927715778351, + 0.023881692439317703, + 0.01355466153472662, + 0.01809135265648365, + 0.03770647943019867, + 0.008443092927336693, + -0.0020796051248908043, + -0.019324224442243576, + 0.023327592760324478, + 0.0016034257132560015, + 0.022122425958514214, + 0.019282666966319084, + -0.01764807291328907, + -0.0009532244876027107, + -0.02535005658864975, + -0.0017315612640231848, + 0.0007025809609331191, + -0.029422689229249954, + -0.0027756926137953997, + -0.023978659883141518, + 0.01744028553366661, + 0.005475196521729231, + 0.009627480991184711, + -0.004744478035718203, + -0.027026208117604256, + 0.00837383046746254, + -0.018202172592282295, + -0.005755709484219551, + -0.007418008521199226, + -0.029893673956394196, + -0.00047055177856236696, + 0.0003865710459649563, + -0.004547080025076866, + -0.004474354442209005, + 0.002791276667267084, + -0.0019445433281362057, + -0.01695544831454754, + -0.022441033273935318, + 0.011975477449595928, + -0.016941595822572708, + -0.03817746415734291, + 0.004997285548597574, + -0.019947584718465805, + 0.005672594532370567, + -0.03424335643649101, + -0.010534818284213543, + -0.03909172862768173, + -0.001192179974168539, + -0.0034423437900841236, + -0.025073006749153137, + -0.008630101568996906, + -0.009772932156920433, + -0.008041370660066605, + -0.01135211531072855, + -0.014053351245820522, + -0.03862074390053749, + 0.07075852155685425, + 0.004744478035718203, + 0.001476155943237245, + -0.019365781918168068, + 0.0005822374951094389, + 0.013797080144286156, + -0.014960689470171928, + -0.006458723451942205, + -0.008076001890003681, + -0.0008471663459204137, + 0.0016562383389100432, + 0.038066644221544266, + 0.026970798149704933, + -0.013187570497393608, + -0.020155372098088264, + -0.001527237007394433, + 0.01379015389829874, + -0.010763384401798248, + -0.026278173550963402, + -0.004044927190989256, + -0.007210221141576767, + -0.01584724895656109, + -0.007875140756368637, + -0.002742792945355177, + 0.025253089144825935, + 0.028175964951515198, + 0.006597248371690512, + -0.017938975244760513, + 0.011255147866904736, + 0.01788356527686119, + -0.008297641761600971, + 0.019753651693463326, + -0.012197117321193218, + 0.002050168579444289, + -0.04565780609846115, + -0.009211906231939793, + 0.007688132114708424, + 0.005433639045804739, + 0.011428304016590118, + 0.00019079640333075076, + -0.006708068307489157, + 0.013069824315607548, + -0.016456758603453636, + 0.000929848407395184, + 0.011920067481696606, + -0.0008250889368355274, + 0.015113066881895065, + 0.039341073483228683, + 0.003670909907668829, + 0.005956570617854595, + 0.011906214989721775, + 0.0009038749849423766, + 0.02090340666472912, + 0.0040899477899074554, + -0.004360071383416653, + -0.0014380615903064609, + 0.02978285402059555, + -0.006032759323716164, + -0.0010692391078919172, + 0.03801123425364494, + -0.017329465597867966, + 0.025931861251592636, + -0.02361849509179592, + -0.0050146011635661125, + 0.00611241115257144, + 0.0004740149015560746, + 0.0008917540544643998, + 0.020002994686365128, + -0.00440855510532856, + -0.003833676688373089, + 0.011490640230476856, + 0.025073006749153137, + 0.02289816550910473, + 0.013319169171154499, + 0.01900561712682247, + 0.024809809401631355, + 0.0005060487892478704, + -0.004657899960875511, + -0.00220427755266428, + -0.01268195454031229, + 0.011497566476464272, + -0.01986447162926197, + -0.006351366639137268, + 0.026832273229956627, + 0.014683639630675316, + -0.004903781693428755, + 0.034714341163635254, + -0.017523400485515594, + 0.015514789149165154, + 0.006368682254105806, + 0.004744478035718203, + 0.007286409847438335, + 0.010957319289445877, + 0.011670722626149654, + 0.07386147975921631, + 0.006992044392973185, + -0.007182516157627106, + -0.011774616315960884, + -0.017703482881188393, + -0.006313272286206484, + 0.005336671601980925, + 0.020432421937584877, + 0.004803351126611233, + 0.00683620385825634, + -0.00883096270263195, + 0.007888993248343468, + 0.010527892038226128, + 0.021305128931999207, + -0.00584575068205595, + -0.002843223512172699, + 0.023660052567720413, + -0.01960127428174019, + -0.014642082154750824, + -0.0008320151828229427, + -0.0017852396704256535, + 0.003702078014612198, + 0.013755522668361664, + -0.004280419554561377, + -0.007757394574582577, + -0.03684762492775917, + 0.01609659381210804, + 0.00457132188603282, + -0.026125796139240265, + 0.008907151408493519, + 0.023923249915242195, + -0.004183452110737562, + 0.022344065830111504, + 0.02780194766819477, + -0.014960689470171928, + 0.02428341470658779, + -0.0029800168704241514, + -0.018811682239174843, + -0.02535005658864975, + 0.012737364508211613, + -0.012204043567180634, + -0.013810932636260986, + 0.004152284003794193, + -0.007695058360695839, + -0.0020172689110040665, + 0.007054380606859922, + 0.019074879586696625, + -0.006167821120470762, + 0.010624859482049942, + -0.022967427968978882, + 0.0012259454233571887, + -0.01723249815404415, + -0.006992044392973185, + -0.0034856328275054693, + -0.02336915023624897, + 0.004055316559970379, + -0.02381242997944355, + -0.031888432800769806, + -0.016636840999126434, + -0.0125503558665514, + 0.02029389701783657, + 0.023230625316500664, + -0.013741670176386833, + -0.010049981065094471, + -0.008761700242757797, + 0.01918569952249527, + 0.013637776486575603, + -0.006822351366281509, + 0.013069824315607548, + 0.02090340666472912, + 0.010444777086377144, + -0.005641426425427198, + -0.004581711255013943, + 0.015071509405970573, + -0.002784350421279669, + 0.0030908368062227964, + 0.026361288502812386, + -0.020889554172754288, + -0.004086484666913748, + -0.040033694356679916, + -0.0099391620606184, + 0.027469487860798836, + 0.0235630851238966, + 0.02443579211831093, + -0.016484463587403297, + -0.015029951930046082, + 0.006888150703161955, + 0.0021661831997334957, + 0.014157244935631752, + -0.03199925273656845, + -0.012584987096488476, + -0.019989142194390297, + 0.011643017642199993, + 0.002824176335707307, + -0.024311119690537453, + -0.02359079010784626, + -0.013270685449242592, + -0.00250903214327991, + 0.0033903969451785088, + -0.0043115876615047455, + -0.021499063819646835, + 0.006188599858433008, + 0.0051254210993647575, + -0.006621490232646465, + 0.012307937256991863, + 0.012467240914702415, + -0.01964283175766468, + 0.016858480870723724, + -0.016595283523201942, + -0.006714994553476572, + -0.006860445719212294, + -0.011739985086023808, + -0.0016839433228597045, + -0.018174467608332634, + 0.006181673612445593, + -0.003560089971870184, + -0.014489704743027687, + -0.0073764510452747345, + 0.004550543148070574, + -0.008803257718682289, + -0.013970236293971539, + 0.0060639274306595325, + -0.018853239715099335, + 0.0035635530948638916, + 0.02648596093058586, + 0.008297641761600971, + 0.01566716656088829, + -0.006354829762130976, + -0.016055036336183548, + -0.005818045698106289, + 0.021485211327672005, + 0.025419319048523903, + 0.003315939800813794, + -0.0037886560894548893, + 0.02820366993546486, + -0.012397978454828262, + 0.0445496067404747, + -0.0015731233870610595, + -0.02539161406457424, + 0.0017869712319225073, + -0.0002415527997072786, + 0.006385997869074345, + 0.012321789748966694, + 0.018894797191023827, + -0.022815050557255745, + -0.005883845034986734, + -0.019518159329891205, + 0.035213030874729156, + 0.0193796344101429, + -0.017357170581817627, + 0.01827143505215645, + 0.008089854381978512, + -0.017329465597867966, + -0.00013603578554466367, + 0.004844908602535725, + -0.0056310370564460754, + 0.017537252977490425, + -0.010590228252112865, + 0.01875627227127552, + 0.005928865633904934, + -0.003844066057354212, + -0.012127854861319065, + -0.005049232393503189, + -0.020418569445610046, + 0.000590895302593708, + 0.001436330028809607, + -0.02648596093058586, + -0.023064395412802696, + -0.02228865586221218, + 0.02205316349864006, + -0.0066699739545583725, + -0.001619009766727686, + -0.011649943888187408, + 0.010888056829571724, + 0.016179708763957024, + -0.03573942556977272, + 0.02555784396827221, + -0.017564957961440086, + 0.017384875565767288, + -0.005932328756898642, + -0.0218453761190176, + -0.021886933594942093, + -0.00782665703445673, + 0.010652564465999603, + 0.01588880643248558, + 0.020612504333257675, + -0.009502808563411236, + -0.010250842198729515, + -0.0116915013641119, + 0.009786784648895264, + 0.0139979412779212, + -0.031223513185977936, + -0.008886372670531273, + 0.04299812763929367, + 0.014517409726977348, + 0.03216548264026642, + -0.015487084165215492, + -0.008976413868367672, + 0.004439723212271929, + -0.009627480991184711, + 0.015805691480636597, + -0.00716173741966486, + 0.0038094348274171352, + -0.018354550004005432, + 0.023701610043644905, + -0.015473231673240662, + -0.014836017042398453, + 0.004238862078636885, + 0.004450112581253052, + -0.019518159329891205, + -0.0016268017934635282, + 0.01964283175766468, + -0.006046611815690994, + -0.006607637740671635, + 0.0286746546626091, + 0.01266810204833746, + -0.0015549419913440943, + 0.003591258078813553, + -0.01872856728732586, + -0.011005803011357784, + -0.005987738724797964, + -0.010985024273395538, + -0.023078247904777527, + 0.006479502189904451, + -0.018174467608332634, + -0.022815050557255745, + 6.558288441738114e-5, + 0.008415387943387032, + 0.024740546941757202, + 0.010063833557069302, + -0.01433732733130455, + 0.006586859002709389, + 0.020889554172754288, + -0.012217896059155464, + 0.010617933236062527, + -0.008879446424543858, + 0.005308966618031263, + -0.011504492722451687, + 0.011206664144992828, + -0.006850056350231171, + -0.007099401205778122, + -0.00902489759027958, + -0.023715462535619736, + 0.0008021457470022142, + -0.016041183844208717, + -0.00018397837993688881, + -0.01433732733130455, + 0.014683639630675316, + -0.00968981720507145, + 0.0047964248806238174, + -0.01002227608114481, + 0.002820713212713599, + 0.0024622802156955004, + -0.005579090211540461, + -0.013914826326072216, + 0.009592849761247635, + -0.00295231188647449, + 0.0002482626005075872, + -0.021956196054816246, + -0.0015220423229038715, + -0.011615312658250332, + -0.0073972297832369804, + 0.009966866113245487, + -0.0008121022256091237, + -0.030364658683538437, + 0.021471358835697174, + 0.017772745341062546, + -0.012259453535079956, + -0.0007744407630525529, + -0.020543241873383522, + -0.0218453761190176, + 0.02205316349864006, + 0.0006727115251123905, + 0.008650880306959152, + 0.025737926363945007, + -0.007833583280444145, + -0.015265444293618202, + -0.015279296785593033, + 0.03615500032901764, + -7.380780152743682e-5, + 0.001999953296035528, + 0.01089498307555914, + 0.018825534731149673, + 0.017357170581817627, + 0.0091703487560153, + 0.0026285098865628242, + 0.005755709484219551, + 0.02050168439745903, + 0.020557094365358353, + -0.019074879586696625, + -0.005475196521729231, + 0.011684575118124485, + 0.007542680948972702, + 0.01986447162926197, + 0.00534359784796834, + 0.019282666966319084, + -0.01278584823012352, + 0.016664545983076096, + -0.015736429020762444, + -0.007054380606859922, + 0.011428304016590118, + -0.015971921384334564, + -0.02339685522019863, + 0.026541370898485184, + 0.03529614582657814, + 0.023881692439317703, + 0.019795209169387817, + 0.00414189463481307, + -0.006372145377099514, + -0.023521527647972107, + -0.008512355387210846, + -0.0022908556275069714, + -0.015833396464586258, + -0.002455353969708085, + 0.004228472709655762, + -0.002588683972135186, + 0.01584724895656109, + -0.0012285427656024694, + -0.014434294775128365, + 0.02093111164867878, + -0.017481843009591103, + 0.00386138167232275, + -0.04457731172442436, + -0.008498502895236015, + -0.00838768295943737, + 0.010285473428666592, + -0.03853762894868851, + 0.031001873314380646, + 0.005908086895942688, + 0.0011246490757912397, + 0.004041464067995548, + 0.005038843024522066, + 0.017717335373163223, + 0.00562411081045866, + -0.004723699297755957, + 0.015043804422020912, + -0.016484463587403297, + 0.025710221379995346, + -0.005755709484219551, + 0.030614003539085388, + -0.01629052869975567, + 0.021111194044351578, + 0.01695544831454754, + 0.0193796344101429, + 0.00397912785410881, + 0.0078128045424819, + 0.006385997869074345, + 0.02246873825788498, + -0.0010848231613636017, + -0.028092849999666214, + -0.02511456422507763, + 0.0074872709810733795, + -0.009108012542128563, + -0.011857731267809868, + -0.013540809042751789, + -0.014475852251052856, + 0.013831711374223232, + -0.0022475665900856256, + 0.003601647447794676, + 0.006212841719388962, + 0.005987738724797964, + -0.0011913141934201121, + -0.0091703487560153, + -0.02735866792500019, + -0.022551853209733963, + 0.00022423718473874032, + 0.007521902211010456, + -0.010888056829571724, + 0.0029696275014430285, + -0.0006696812924928963, + 0.003844066057354212, + 0.009239611215889454, + -0.012231748551130295, + 0.004218083340674639, + 0.015944216400384903, + -0.021554473787546158, + 0.011310557834804058, + -0.007611943408846855, + -0.008526207879185677, + -0.028563834726810455, + -0.01410183496773243, + 0.007064769975841045, + -0.009412767365574837, + -0.005672594532370567, + -0.016913890838623047, + -0.037180084735155106, + 0.004176525864750147, + -0.022399475798010826, + 0.012633470818400383, + 0.0068812244571745396, + 0.036930739879608154, + -0.005399007815867662, + 0.0479850247502327, + -0.004623268730938435, + -0.01278584823012352, + 0.010860351845622063, + -0.01124822162091732, + 0.027414077892899513, + -0.02119430899620056, + 0.012294084765017033, + 0.002630241448059678, + -0.013596219010651112, + -0.021305128931999207, + 0.003601647447794676, + 0.0066907526925206184, + -0.002631973009556532, + 0.01701085828244686, + -0.03191613778471947, + -0.009710595943033695, + 0.00540247093886137, + -0.006593785248696804, + -0.008553912863135338, + -0.012959004379808903, + -0.00491070793941617, + -0.00859547033905983, + -0.02537776157259941, + 0.0010778969153761864, + -0.0015835127560421824, + 0.02334144525229931, + 0.00914264377206564, + 0.039812054485082626, + -0.01897791214287281, + -0.010881130583584309, + 0.012543429620563984, + 0.01067334320396185, + 0.012626544572412968, + 0.01915799453854561, + -0.009385062381625175, + 0.014794459566473961, + -0.010472482070326805, + 0.0006177345057949424, + 0.004457038827240467, + 0.0023220237344503403, + -0.007251778617501259, + 0.021249718964099884, + -0.022967427968978882, + -0.006773867644369602, + 0.014018720015883446, + 0.024851366877555847, + 0.01652602106332779, + -0.004214620217680931, + -0.023964807391166687, + -0.029644329100847244, + -0.003927181009203196, + -0.0016839433228597045, + 0.014378884807229042, + 0.00031882370240055025, + 0.008415387943387032, + 0.02870235964655876, + -0.00491070793941617, + 0.015293149277567863, + -0.0038267504423856735, + 0.006268251687288284, + 0.01809135265648365, + 0.021208161488175392, + 0.0147667545825243, + 0.012515724636614323, + 0.013360726647078991, + -0.02625046856701374, + -0.012481093406677246, + -0.0015731233870610595, + 0.011539123952388763, + -0.004242325201630592, + -0.02316136285662651, + 0.005381692200899124, + 0.02005840465426445, + 0.011095844209194183, + -0.008186821825802326, + 0.0035566268488764763, + -0.015016099438071251, + 0.00408302154392004, + -0.003608573693782091, + -0.025959566235542297, + 0.010541744530200958, + -0.00048180692829191685, + 0.0038163610734045506, + -0.014697492122650146, + -0.018687009811401367, + 0.010714900679886341, + -0.011830026283860207, + 0.010860351845622063, + -0.0007986826240085065, + -0.006552227772772312, + -0.008983340114355087, + -0.014143392443656921, + 0.0733627900481224, + 0.0009991108672693372, + 0.009849120862782001, + -0.0005986873293295503, + 0.016055036336183548, + -0.014226507395505905, + -0.004668289329856634, + 0.0006813693325966597, + 0.023853987455368042, + -0.008671659044921398, + -0.0033852022606879473, + 0.005928865633904934, + 0.014794459566473961, + 0.0053574503399431705, + -0.022981280460953712, + -0.006746162660419941, + 0.011054286733269691, + 0.009329652413725853, + 0.016193561255931854, + 0.0036778361536562443, + 0.004592100623995066, + 0.013804006390273571, + 0.005894234403967857, + 0.006285567302256823, + -0.0020588263869285583, + 0.01983676664531231, + 0.005087326746433973, + -0.007348746061325073, + 0.014683639630675316, + 0.0313897430896759, + 0.00046059529995545745, + -0.008159116841852665, + 0.00035908250720240176, + -0.015722576528787613, + 0.003257066709920764, + 0.004938412923365831, + -0.0045540062710642815, + -0.002446696162223816, + 0.0038094348274171352, + 0.024768251925706863, + -0.010666416957974434, + 0.003954885993152857, + 0.020349306985735893, + 0.015376264229416847, + -0.026292026042938232, + 0.008332272991538048, + 0.00021114225091878325, + 9.978121670428663e-5, + 0.005693373270332813, + 0.0035635530948638916, + 0.01986447162926197, + -0.020626356825232506, + 0.007189442403614521, + 0.009800637140870094, + 0.02446349710226059, + 0.00451244879513979, + 0.011552976444363594, + 0.016844628378748894, + 0.0003655758628156036, + -0.0019653220660984516, + 0.0009566876105964184, + -0.0017064536223188043, + 0.005527143366634846, + -0.0047964248806238174, + -0.02097266912460327, + -0.0024847905151546, + -0.013035193085670471, + -0.018354550004005432, + 0.008879446424543858, + -0.003366155084222555, + -0.017938975244760513, + -0.025890303775668144, + 0.014891427010297775, + -0.020404716953635216, + 0.008443092927336693, + 0.019254961982369423, + -0.01023006346076727, + 0.022981280460953712, + 0.019545864313840866, + 0.002500374335795641, + -0.0007038796320557594, + 0.012959004379808903, + -0.025017596781253815, + -0.008484650403261185, + -0.0020778735633939505, + -0.016262823715806007, + 0.030170723795890808, + -0.022177835926413536, + -0.00458517437800765, + -0.015348559245467186, + -0.018229877576231956, + -0.020404716953635216, + 0.0036986148916184902, + 0.009814489632844925, + -0.02402021735906601, + 0.01629052869975567, + 0.007701984606683254, + -0.006635342724621296, + 0.024394234642386436, + -0.010320104658603668, + 0.015570199117064476, + 0.0036882255226373672, + -0.014448147267103195, + -2.7664396839099936e-5, + -0.0008618846186436713, + 0.01720479317009449, + 0.0008484650170430541, + -0.012439535930752754, + 0.015126919373869896, + -0.009419693611562252, + -0.0036778361536562443, + -0.009094160050153732, + 0.010306252166628838, + -0.003437149105593562, + -0.019504306837916374, + -0.0035531637258827686, + 0.011199737899005413, + -0.008747847750782967, + -0.017717335373163223, + -0.008754773996770382, + -0.01721864566206932, + -0.0033626919612288475, + -0.010611006990075111, + -0.01804979518055916, + 0.004702920559793711, + -0.012204043567180634, + -0.0038267504423856735, + -0.003002527169883251, + -0.005797266960144043, + 0.007390303537249565, + 0.021083489060401917, + 0.014600524678826332, + 0.01872856728732586, + -0.0057106888853013515, + 0.009530513547360897, + 0.013679333962500095, + -0.0024726695846766233, + 0.014531262218952179, + -0.0009921846212819219, + -0.020390864461660385, + 0.013187570497393608, + -0.0038856235332787037, + -0.0010423999046906829, + 0.010590228252112865, + 1.9195980712538585e-5, + -0.000677906209602952, + -0.005759172607213259, + -0.011885436251759529, + 0.024324972182512283, + -0.009696743451058865, + 0.031888432800769806, + -0.0353238508105278, + 0.0037748035974800587, + 0.004356608260422945, + 0.0015939021250233054, + 0.006493354681879282, + -0.01878397725522518, + 0.019365781918168068, + -0.009073381312191486, + -0.0010640444234013557, + 0.017606515437364578, + -0.00937813613563776, + -0.005260482896119356, + -0.009149570018053055, + -0.020099962130188942, + 0.028730064630508423, + 0.005960033740848303, + 0.0054890490137040615, + 0.012751217000186443, + -0.0020397792104631662, + -0.0005831032758578658, + 0.025460876524448395, + 0.019338076934218407, + -0.02070947177708149, + -0.015348559245467186, + -0.008574691601097584, + 0.009017971344292164, + -0.003012916538864374, + -0.013395357877016068, + 0.00991145707666874, + -0.01302134059369564, + 0.009537439793348312, + 0.00029328319942578673, + 0.007404156029224396, + -0.009371209889650345, + -0.008671659044921398, + 0.010202358476817608, + -0.008962561376392841, + 0.009835268370807171, + -0.013707038946449757, + -0.0017220376757904887, + 0.016595283523201942, + 0.022413328289985657, + -0.01590265892446041, + -0.0006649194983765483, + -0.0022077406756579876, + 0.01872856728732586, + 0.007563459686934948, + 0.04612879082560539, + -0.0037540248595178127, + 0.0007830985705368221, + 0.014295769855380058, + 0.02162373624742031, + 0.0024328436702489853, + -0.014836017042398453, + -0.01895020715892315, + -0.0074872709810733795, + -0.018008237704634666, + -0.013146013021469116, + -0.01875627227127552, + -0.019587421789765358, + -0.01433732733130455, + 0.014946836978197098, + -0.004384313244372606, + 0.00012088462244719267, + 0.01543167419731617, + 0.007888993248343468, + 0.015043804422020912, + 0.010784163139760494, + -0.004360071383416653, + 0.005385155323892832, + -0.0001101705856854096, + 0.0006086438079364598, + -0.015971921384334564, + -0.0010562523966655135, + -0.01521003432571888, + 1.7653808754403144e-5, + 0.004283882677555084, + 0.014531262218952179, + 0.0211666040122509, + 0.0016423858469352126, + -0.005977349355816841, + -0.02208086848258972, + 0.01210707612335682, + 0.004131505265831947, + 0.028328342363238335, + 0.0032691876403987408, + -0.009267316199839115, + 0.017287908121943474, + -0.007882067002356052, + 0.010354735888540745, + 0.002335876226425171, + -0.007785099558532238, + -0.004720236174762249, + -0.01232871599495411, + -0.016886185854673386, + -0.011767690069973469, + 0.007327967323362827, + 0.0006753088673576713, + -2.677156044228468e-5, + -0.017163235694169998, + 0.0036986148916184902, + 0.005166978575289249, + -0.010507113300263882, + 0.016900038346648216, + -0.013339947909116745, + -0.029588919132947922, + 0.01634593866765499, + 0.010195432230830193, + -0.013526956550776958, + 0.014226507395505905, + 0.014240359887480736, + -0.019462749361991882, + 0.0049695810303092, + -0.017329465597867966, + 0.006995507515966892, + -0.04141894355416298, + -0.009980718605220318, + -0.012751217000186443, + 0.00881711021065712, + 0.02536390908062458, + -0.003298624185845256, + 0.0070336018688976765, + 0.0233830027282238, + 0.008276863023638725, + 0.006600711494684219, + 0.014919131994247437, + -0.009828342124819756, + 0.0021280888468027115, + 0.0045540062710642815, + -0.010770310647785664, + 0.008027518168091774, + 0.014822164550423622, + -0.022995132952928543, + -0.007715837098658085, + -0.022344065830111504, + 0.018687009811401367, + 0.018825534731149673, + -0.009066455066204071, + 0.01744028553366661, + -0.009669038467109203, + 0.001264039659872651, + -0.018880944699048996, + -0.010340883396565914, + 0.008429240435361862, + 0.012100149877369404, + 0.0008579886052757502, + -0.02533620409667492, + 0.025211531668901443, + -0.016165856271982193, + -0.004924560431391001, + -0.0021973513066768646, + -0.007390303537249565, + -0.01940733939409256, + -0.008366904221475124, + 0.016027331352233887, + 0.013146013021469116, + 0.005915013141930103, + -0.011158180423080921, + 0.020834144204854965, + 0.0003807270259130746, + -0.005662205163389444, + -0.008865593932569027, + -0.016165856271982193, + -0.0018977911677211523, + -0.0038059717044234276, + 0.009551292285323143, + 0.003598184324800968, + 0.006517596542835236, + -0.01003612857311964, + -0.0009558218298479915, + -0.0018925964832305908, + 0.00892100390046835, + -0.007625795900821686, + 0.01942119188606739, + -0.0040691690519452095, + 0.023313740268349648, + -0.00936428364366293, + 0.006753088906407356, + -0.026859978213906288, + 0.02975514903664589, + 0.010327030904591084, + -0.030614003539085388, + 0.0007099400972947478, + -0.00026081642135977745, + 0.010174653492867947, + -0.00418691523373127, + -0.014489704743027687, + -0.006493354681879282, + 0.00046146108070388436, + -0.01389404758810997, + -0.01058330200612545, + 0.004380850121378899, + -0.010839573107659817, + -0.0032847716938704252, + -0.004391239490360022, + 0.0005900295218452811, + -0.007082085590809584, + -0.0062059154734015465, + 0.034298766404390335, + -0.012314863502979279, + 0.0019428117666393518, + 0.003125468036159873, + 0.006365219131112099, + -0.00936428364366293, + -0.010645638220012188, + -0.0025938786566257477, + 0.009759079664945602, + -0.011165106669068336, + -0.008810183964669704, + -0.004837982356548309, + -0.008865593932569027, + -0.007701984606683254, + -0.009385062381625175, + 0.010617933236062527, + -0.008207600563764572, + 0.010534818284213543, + -0.002941922517493367, + -0.032276302576065063, + 0.0032120461110025644, + -0.020349306985735893, + -0.0045643956400454044, + 0.004515911918133497, + 0.0003155770245939493, + -0.01653987355530262, + 0.011698427610099316, + -0.006029296200722456, + -0.0027791557367891073, + -0.02163758873939514, + -0.012190191075205803, + 0.023216772824525833, + -0.006039685569703579, + 0.013485399074852467, + -0.024408087134361267, + -0.003165293950587511, + 0.023729315027594566, + 0.0023185606114566326, + 0.03127892315387726, + 0.021429801359772682, + -0.015403969213366508, + 0.0007666487363167107, + -0.004879539832472801, + 0.009946087375283241, + 0.00529857724905014, + -0.011504492722451687, + 0.019670536741614342, + -0.010638711974024773, + 0.010354735888540745, + 0.004315050784498453, + 0.009128791280090809, + -0.004979969933629036, + 0.0008437032229267061, + 0.02251029573380947, + -0.017703482881188393, + 0.01377630140632391, + -0.025627106428146362, + 0.01191314123570919, + -0.014184949919581413, + 0.003830213565379381, + 0.009475103579461575, + -0.002701235469430685, + 0.0020380476489663124, + -0.007452639751136303, + -0.009973792359232903, + 0.015764134004712105, + -0.0037055411376059055, + -0.003348839469254017, + 0.023230625316500664, + 0.007632722146809101, + -0.017537252977490425, + 0.01079108938574791, + -0.003518532495945692, + -0.0011263806372880936, + -0.011816173791885376, + 0.0078128045424819, + -0.02620891109108925, + 0.0348251610994339, + 0.01155990269035101, + -0.008498502895236015, + 0.0040691690519452095, + -0.004599026869982481, + 0.016152003780007362, + -0.008955635130405426, + 0.004477817565202713, + -0.009031823836266994, + -0.007230999879539013, + 0.015833396464586258, + 0.0023774337023496628, + 0.000555831182282418, + 0.015390116721391678, + -0.015279296785593033, + -0.03127892315387726, + -0.01568101905286312, + -0.010881130583584309, + -0.0013999672373756766, + -0.013367652893066406, + 0.007923624478280544, + 0.015099214389920235, + -0.005869992543011904, + -0.0025852208491414785, + -0.00397912785410881, + 0.01673380844295025, + -0.02068176679313183, + -0.0014337326865643263, + -0.008630101568996906, + -0.005908086895942688, + -0.004865687340497971, + -0.024394234642386436, + 0.026956945657730103, + -0.04305353760719299, + 0.003871771041303873, + 0.009225758723914623, + -0.00021860960987396538, + -0.01900561712682247, + 0.0004541019443422556, + -0.008346125483512878, + 0.026763010770082474, + 0.017024710774421692, + -0.011719206348061562, + 0.004038000945001841, + -0.023008985444903374, + 0.04299812763929367, + 0.014877574518322945, + -0.00828378926962614, + 0.002862270688638091, + 0.02643055096268654, + -0.016886185854673386, + 0.016803070902824402, + 0.01189928874373436, + 0.0011843879474326968, + -0.007916698232293129, + 0.01631823368370533, + -0.0015843785367906094, + -0.004505522549152374, + 0.0218453761190176, + -0.013506177812814713, + 0.008221453055739403, + 0.0024518908467143774, + -0.00048094114754348993, + 0.003913328517228365, + 0.008685511536896229, + 0.019490454345941544, + 0.00589077128097415, + -0.023493822664022446, + 0.006005054339766502, + 0.0003489095834083855, + 0.027483340352773666, + 0.0028899756725877523, + 0.0069539500400424, + 0.0169831532984972, + 0.02469898946583271, + 0.01279970072209835, + -2.9436541808536276e-5, + 0.0007623198325745761, + 0.022551853209733963, + -0.016041183844208717, + -0.0014432562747970223, + 0.014150318689644337, + 0.018687009811401367, + 0.008637027814984322, + -0.0012536502908915281, + -0.0014952031197026372, + -0.027926620095968246, + 0.022579558193683624, + -0.005083863623440266, + 0.029394984245300293, + 0.01701085828244686, + 0.01311138179153204, + 0.006358292885124683, + 0.0066595845855772495, + -0.005083863623440266, + -0.015750281512737274, + -0.001406893483363092, + -0.0227042306214571, + 0.006282104179263115, + 0.002093457616865635, + 0.01677536591887474, + 0.003167025512084365, + -0.0022718084510415792, + -0.022565705701708794, + -0.005928865633904934, + 0.0038371398113667965, + 0.019061027094721794, + -0.01676151342689991, + 0.02223324589431286, + 0.01569487154483795, + 0.020654061809182167, + 0.004574785009026527, + 0.03368925675749779, + -0.00860932283103466, + 0.021041931584477425, + -0.008318420499563217, + -0.000354104267898947, + 0.0033211344853043556, + -0.009655185975134373, + -0.003026769030839205, + 0.012529577128589153, + 0.034714341163635254, + -0.011594533920288086, + 0.0011436962522566319, + -0.02776039019227028, + 0.0027566454373300076, + -0.003972201608121395, + 0.002692577661946416, + 0.024158742278814316, + -0.015376264229416847, + 0.010936540551483631, + 0.0023324131034314632, + -0.009842194616794586, + 0.019116437062621117, + 0.01457281969487667, + 0.005613721441477537, + 0.010091538541018963, + -0.01191314123570919, + -0.021873081102967262, + 0.004010295961052179, + 0.008914077654480934, + -0.005748783238232136, + 0.01896405965089798, + 0.009288094937801361, + -0.013956383801996708, + -0.005807656329125166, + 0.004280419554561377, + 0.01155990269035101, + 0.0024380383547395468, + -0.005956570617854595, + -0.0348251610994339, + 0.006860445719212294, + -0.006406776607036591, + -0.009163422510027885, + -0.0018458443228155375, + -0.014489704743027687, + 0.014808312058448792, + 0.0018977911677211523, + -0.004678678698837757, + 0.015168476849794388, + 0.0002469639293849468, + 0.007528828456997871, + 0.02712317556142807, + -0.011282852850854397, + 0.011864657513797283, + -0.012217896059155464, + -0.012820479460060596, + -0.009461251087486744, + 0.03698614984750748, + 0.004720236174762249, + -0.002164451638236642, + -0.011199737899005413, + -0.014739049598574638, + -0.027206290513277054, + -0.012536503374576569, + -0.005139273591339588, + 0.002891707234084606, + 3.357605601195246e-5, + -0.0008839620277285576, + 0.0025073005817830563, + -0.0012588449753820896, + 0.0037990454584360123, + 0.0031323942821472883, + 0.02118045650422573, + 0.005215462297201157, + -0.01302134059369564, + 0.018839387223124504, + -0.006268251687288284, + 0.022344065830111504, + 0.020155372098088264, + 0.002131551969796419, + -0.006877761334180832, + 0.019324224442243576, + 0.024546612054109573, + -0.01432347483932972, + 0.01806364767253399, + 0.004360071383416653, + 0.0011073334608227015, + -0.0035947212018072605, + -0.005966959986835718, + 0.004713309928774834, + 0.015777986496686935, + 0.018409959971904755, + -0.006974728778004646, + 0.005021527409553528, + -0.0034527331590652466, + -0.017301760613918304, + -0.02818981744349003, + -0.0010969440918415785, + 0.0040691690519452095, + -0.0322485975921154, + -0.00014187980559654534, + -0.009627480991184711, + -0.0191995520144701, + -0.016415201127529144, + 0.009398914873600006, + -0.009204979985952377, + 0.012245601043105125, + -0.0012692343443632126, + 0.008456945419311523, + -0.014226507395505905, + 0.00528472475707531, + 0.003378276014700532, + -0.0070024337619543076, + -0.004235398955643177, + 0.014032572507858276, + -0.025059154257178307, + 0.01089498307555914, + 0.019809061661362648, + -0.0044327969662845135, + -0.005558311473578215, + -0.02449120208621025, + 0.03235941752791405, + -0.005049232393503189, + -0.018160615116357803, + -0.009114938788115978, + -0.010285473428666592, + 0.013873268850147724, + 0.008900225162506104, + -0.005475196521729231, + 8.333138248417526e-5, + 0.0007740078726783395, + -0.01982291415333748, + -0.002223324729129672, + 0.005184294190257788, + 0.012654249556362629, + -0.011733058840036392, + 0.0063375141471624374, + 0.010929614305496216, + 0.012162486091256142, + 0.0016025599325075746, + -0.012654249556362629, + 0.014905279502272606, + 0.005416323430836201, + 0.009558218531310558, + 0.0016319964779540896, + 0.01435117982327938, + 0.011282852850854397, + -1.2005942153336946e-5, + 0.0015722576063126326, + -0.0006939231534488499, + -0.024144889786839485, + -0.007584238424897194, + -0.010063833557069302, + -0.016692250967025757, + -0.005655278917402029, + -0.017135530710220337, + -0.029062524437904358, + 0.003916791640222073, + -0.0007675145170651376, + 0.011802321299910545, + -0.006385997869074345, + -0.009488956071436405, + -0.01045170333236456, + -0.00639292411506176, + 0.016262823715806007, + 0.018853239715099335, + -0.008990266360342503, + -0.013700112700462341, + -0.014108761213719845, + 0.008962561376392841, + -0.012806626968085766, + 0.010458629578351974, + -0.006808498874306679, + 0.008186821825802326, + 0.0017887027934193611, + 0.006915855687111616, + 0.02185922861099243, + 0.0008610188378952444, + -0.02269037812948227, + -0.0313897430896759, + 0.00412804214283824, + -0.01810520514845848, + 0.004993822425603867, + 0.002690846100449562, + 0.019961437210440636, + -3.227738488931209e-5, + -0.006119337398558855, + -0.010223137214779854, + -0.025530138984322548, + 0.010964245535433292, + -0.012716585770249367, + -0.012425683438777924, + -0.009800637140870094, + 0.045990265905857086, + -0.00390640227124095, + -0.010133096016943455, + -0.007785099558532238, + -0.013062898069620132, + -0.0057210782542824745, + -0.011158180423080921, + -0.0004774780245497823, + -0.00760501716285944, + -0.002384359948337078, + -0.02072332426905632, + -0.012938225641846657, + 0.008540060371160507, + 0.010430924594402313, + 0.020002994686365128, + -0.009897604584693909, + -0.027857357636094093, + 0.006486428435891867, + -0.00803444441407919, + 0.02535005658864975, + -0.003670909907668829, + -0.011421377770602703, + 0.016207413747906685, + -0.0047964248806238174, + 0.01588880643248558, + -0.004574785009026527, + 0.015237739309668541, + -0.030780233442783356, + -0.007026675622910261, + 0.00020962713460903615, + 0.015029951930046082, + 0.013076750561594963, + -0.020654061809182167, + 0.016719955950975418, + -0.0009731374448165298, + -0.012051666155457497, + -0.007016286253929138, + -0.006340977270156145, + -0.010617933236062527, + 0.023050542920827866, + -0.0012908788630738854, + 0.004214620217680931, + -0.016179708763957024, + -0.036044180393218994, + 0.005776488222181797, + -0.023078247904777527, + -0.024602022022008896, + 0.006091632414609194, + 0.017093973234295845, + -0.0004934949683956802, + 6.157864845590666e-5, + -0.011532197706401348, + 0.0198783241212368, + -0.0010744337923824787, + -0.0431920625269413, + 0.030309248715639114, + 0.0092603899538517, + 0.009163422510027885, + 0.008353051729500294, + 0.013859416358172894, + 0.01878397725522518, + -0.02094496414065361, + -0.010098464787006378, + 0.019490454345941544, + 0.017274055629968643, + 0.0016441174084320664, + -0.007736615836620331, + -0.02339685522019863, + -0.0004307258641347289, + 0.01189928874373436, + -0.004820666741579771, + 0.002784350421279669, + -0.011421377770602703, + -0.027732685208320618, + -0.026111943647265434, + 0.0054786596447229385, + 0.010624859482049942, + 0.006524522788822651, + 0.0034025178756564856, + 0.01136596780270338, + -0.020778734236955643, + 0.010216210968792439, + -0.003416370367631316, + -0.0013324363389983773, + 0.008623175323009491, + -0.00980756338685751, + -0.010174653492867947, + -0.016484463587403297, + -0.0006043149041943252, + 0.013083676807582378, + -0.016858480870723724, + 0.02446349710226059, + 0.0057210782542824745, + -0.006098558660596609, + -0.02620891109108925, + 0.0015618682373315096, + -0.006635342724621296, + 0.007431861013174057, + 0.002010342665016651, + -0.027940472587943077, + -0.01203088741749525, + -0.006057001184672117, + -0.029284164309501648, + 0.0007142690010368824, + 0.0198783241212368, + -0.0033436447847634554, + -0.009724448435008526, + 0.0010025739902630448, + 0.03352302685379982, + -0.00228566094301641, + 0.013014414347708225, + -0.013076750561594963, + -0.017786597833037376, + 0.0012692343443632126, + 0.006150505505502224, + -0.006351366639137268, + 0.010562523268163204, + -0.011068139225244522, + 0.007688132114708424, + -0.016235118731856346, + 0.012688880786299706, + -0.0028657338116317987, + 0.00397912785410881, + -0.008096780627965927, + -0.00434968201443553, + -0.008858667686581612, + 0.0004618939710780978, + -0.009523587301373482, + 0.002256224397569895, + -0.012709659524261951, + 0.008311494253575802, + 0.01543167419731617, + -0.014378884807229042, + 0.011836952529847622, + 0.006521059665828943, + -0.010611006990075111, + -0.011996256187558174, + -0.00605353806167841, + 0.003156636143103242, + -0.0176619254052639, + -0.02206701599061489, + 0.0026250467635691166, + 0.017080120742321014, + -0.0053574503399431705, + -0.01435117982327938, + 0.008117559365928173, + -0.0059738862328231335, + 0.005045769270509481, + -6.060464511392638e-5, + -0.004924560431391001, + 0.015140771865844727, + 0.007452639751136303, + -0.0257794838398695, + 0.005426712799817324, + -0.03726319968700409, + 0.01563946157693863, + 0.02426956221461296, + -0.0013696649111807346, + -0.008013665676116943, + 0.03127892315387726, + 0.010278547182679176, + -0.004668289329856634, + 0.004831056110560894, + 0.001508189830929041, + -0.002824176335707307, + 0.011172032915055752, + 0.007798952050507069, + -0.006264788564294577, + -0.009295021183788776, + -0.004640584345906973, + 0.006476039066910744, + 0.002528079319745302, + 0.0019947586115449667, + 0.015099214389920235, + -0.008907151408493519, + -0.00611241115257144, + -0.023078247904777527, + 0.0035116062499582767, + -0.011601460166275501, + 0.0019064489752054214, + -0.023646200075745583, + -0.011442156508564949, + 0.00991145707666874, + -0.004096874035894871, + -0.005049232393503189, + -0.004744478035718203, + -0.012314863502979279, + -0.021692998707294464, + 0.0020657526329159737, + -0.006974728778004646, + -0.0014242090983316302, + 0.014157244935631752, + 0.018922502174973488, + 0.028813179582357407, + 0.011289779096841812, + 0.013616997748613358, + -0.011705353856086731, + -0.006957413163036108, + 0.016193561255931854, + -0.00872706901282072, + 0.0025730999186635017, + 0.009011045098304749, + 0.006822351366281509, + -0.005558311473578215, + -0.007127106189727783, + -0.014600524678826332, + -0.016387496143579483, + -0.010015349835157394, + 0.0004389507812447846, + 0.0010458630276843905, + 0.005977349355816841, + -0.005253556650131941, + 0.009772932156920433, + -0.016221266239881516, + 0.005530606489628553, + -0.011947772465646267, + -0.007792025804519653, + 0.004671752452850342, + 0.009772932156920433, + -0.012813553214073181, + -0.0017938974779099226, + 0.00102075538598001, + -0.00010795202251756564, + 0.007369524799287319, + 0.002346265595406294, + -0.0019982217345386744, + -0.01222482230514288, + -0.0010190238244831562, + -0.009662112221121788, + -0.003480438143014908, + -0.0033245976082980633, + -0.004578248132020235, + 0.011185885407030582, + -0.013492325320839882, + 0.03742942959070206, + -0.011442156508564949, + -0.0026042680256068707, + -0.028328342363238335, + -0.020196929574012756, + 0.008179895579814911, + 0.00968981720507145, + 0.024865219369530678, + -0.007736615836620331, + 0.015279296785593033, + 0.020390864461660385, + -0.008242231793701649, + -0.028619244694709778, + -0.022122425958514214, + -0.007798952050507069, + 0.012965930625796318, + -0.016484463587403297, + 0.016872333362698555, + 0.008463871665298939, + -0.01678921841084957, + 0.02091725915670395, + -0.006621490232646465, + -0.009433546103537083, + 0.003999906592071056, + 0.013783227652311325, + -0.01012616977095604, + -0.019670536741614342, + -0.023507675155997276, + -0.0013203154085204005, + 0.002541931811720133, + -0.011954698711633682, + -0.003066594945266843, + -0.0027497191913425922, + -0.00506308488547802, + -0.0009558218298479915, + -0.006611100863665342, + 0.0042111570946872234, + 0.013526956550776958, + -0.0007627527229487896, + -0.0017436821945011616, + 0.01655372604727745, + 0.007113253697752953, + 0.03421565145254135, + 0.0014692296972498298, + -0.017980532720685005, + 0.002316829049959779, + 0.002741061383858323, + 0.0026839198544621468, + -0.0022995134349912405, + 0.014531262218952179, + -0.0023376077879220247, + -0.0046648262068629265, + 0.018174467608332634, + 0.02141594886779785, + -0.004436260089278221, + -0.004131505265831947, + -0.010978098027408123, + 0.02072332426905632, + 0.017357170581817627, + -0.018853239715099335, + 0.004013759084045887, + 0.010901909321546555, + -0.007196368649601936, + -0.015736429020762444, + -0.015390116721391678, + 0.00380250858142972, + 0.002424185862764716, + 0.005745320115238428, + 0.009454324841499329, + -0.015500936657190323, + -0.013804006390273571, + 0.006320198532193899, + 0.016415201127529144, + 0.009682890959084034, + -0.004294272046536207, + 0.013298390433192253, + -0.008339199237525463, + -0.0053886184468865395, + 0.011892362497746944, + -0.015971921384334564, + -0.015971921384334564, + 0.01081879436969757, + 0.015930363908410072, + -0.008339199237525463, + 0.013381505385041237, + 0.0042908089235424995, + -0.004837982356548309, + 0.01895020715892315, + -0.008020591922104359, + -0.01677536591887474, + 0.01634593866765499, + 0.019324224442243576, + -0.008110633119940758, + 0.004270030185580254, + 0.019975289702415466, + 0.012051666155457497, + 0.027455635368824005, + -0.004231935832649469, + 0.01785586029291153, + -0.00436353450641036, + -0.004678678698837757, + 0.0025073005817830563, + -0.0019376170821487904, + 0.013485399074852467, + -0.028951704502105713, + 0.01034780964255333, + 0.0052362410351634026, + 0.019892174750566483, + 0.009696743451058865, + 0.0027306720148772, + -0.015043804422020912, + -0.011926993727684021, + 0.0005467404844239354, + 0.018146762624382973, + 0.006960876286029816, + -0.0052570197731256485, + 0.005966959986835718, + -0.0020190004725009203, + -0.02514226920902729, + -0.017980532720685005, + -0.0033834706991910934, + -0.006915855687111616, + 0.016415201127529144, + -0.0008471663459204137, + 0.0002445830323267728, + 0.004096874035894871, + 0.010292399674654007, + 0.013582366518676281, + -0.001729829702526331, + 0.02514226920902729, + -0.003989517223089933, + 0.008456945419311523, + 0.01167764887213707, + 0.010299325920641422, + 0.004110726527869701, + -0.0029107544105499983, + 0.0008320151828229427, + 0.013734743930399418, + -0.0035445059183984995, + -0.013526956550776958, + -0.004356608260422945, + 0.006631879601627588, + 0.0053678397089242935, + 0.00033852021442726254, + -0.0032622613944113255, + -0.02336915023624897, + -0.025862598791718483, + -0.018132910132408142, + -0.01433732733130455, + -0.004647510591894388, + -0.0023705074563622475, + 0.017911270260810852, + -0.029173344373703003, + -0.004560932517051697, + 0.005759172607213259, + 0.021970048546791077, + -0.0235630851238966, + 0.0029592381324619055, + -0.007625795900821686, + -0.031168103218078613, + 0.00894870888441801, + -0.00600851746276021, + -0.011428304016590118, + 0.00816604308784008, + 0.013762448914349079, + 0.010223137214779854, + -0.006282104179263115, + 0.017745040357112885, + 0.024324972182512283, + -0.006981655023992062, + 0.002050168579444289, + 0.010333957150578499, + -0.018797829747200012, + -0.014891427010297775, + 0.027386372908949852, + -0.010985024273395538, + 0.00838768295943737, + -0.006434481590986252, + -0.01918569952249527, + 0.012148633599281311, + 0.0004225009470246732, + -0.020543241873383522, + 0.005651815794408321, + 0.019947584718465805, + 0.006420629099011421, + -0.006624953355640173, + -0.009904530830681324, + -0.02335529774427414, + 0.003961812239140272, + -0.02425570972263813, + 0.010458629578351974, + 0.01921340450644493, + 0.01090883556753397, + 0.017606515437364578, + 0.023050542920827866, + 0.0024207227397710085, + -0.00815219059586525, + -0.0011402331292629242, + -0.002661409555003047, + 0.0014995320234447718, + -0.012536503374576569, + 0.022967427968978882, + -0.0016917353495955467, + -0.0027947397902607918, + 0.006320198532193899, + -0.004159210249781609, + -0.016595283523201942, + -0.03368925675749779, + 0.0007125374395400286, + 0.00667343707755208, + 0.006652658339589834, + 0.03263646736741066, + 0.014461999759078026, + 0.0010874205036088824, + -0.01498839445412159, + -0.004837982356548309, + -0.014752902090549469, + 0.0036051105707883835, + 0.0023479971569031477, + -0.016650693491101265, + -0.0009255195036530495, + 0.0064275553449988365, + -0.011165106669068336, + -0.033855486661195755, + 0.014822164550423622, + 0.023286035284399986, + 0.014863722026348114, + -0.017564957961440086, + -0.010354735888540745, + 0.002474401146173477, + -0.012688880786299706, + 0.007182516157627106, + 0.0019480064511299133, + -0.010423998348414898, + 0.0021575253922492266, + 0.01201703492552042, + -0.01853463239967823, + -0.017149383202195168, + 0.01895020715892315, + 0.001799092162400484, + -0.010604080744087696, + -0.003823287319391966, + 0.0032328248489648104, + 0.019725946709513664, + 0.015182329341769218, + 0.017606515437364578, + -0.009592849761247635, + 0.016248971223831177, + -0.005880381911993027, + -3.4394488466205075e-6, + -0.009017971344292164, + 0.016927743330597878, + 0.012813553214073181, + 0.019365781918168068, + 0.00671845767647028, + 0.007168663665652275, + 0.0025263477582484484, + -0.011989329941570759, + 0.005253556650131941, + -0.016886185854673386, + 0.011303631588816643, + -0.020099962130188942, + 0.022759640589356422, + -0.009745227172970772, + 0.03191613778471947, + 0.01247416716068983, + 0.011400599032640457, + 0.012619618326425552, + -0.014143392443656921, + 0.001739353290759027, + 0.014226507395505905, + 0.002651020186021924, + -0.0016874064458534122, + 0.003309013554826379, + -0.001748876878991723, + -0.003116810228675604, + -0.015542494133114815, + 0.0011791932629421353, + -0.001911643659695983, + 0.0169831532984972, + 0.00250903214327991, + -0.01609659381210804, + -0.010929614305496216, + -0.037595659494400024, + -0.016248971223831177, + -0.039396483451128006, + 0.01222482230514288, + 0.003999906592071056, + 0.0007454371079802513, + -0.026943093165755272, + 0.01588880643248558, + 0.009080307558178902, + -0.022094720974564552, + 0.0009445666801184416, + 0.026956945657730103, + 0.003549700602889061, + 0.012169412337243557, + -0.049924373626708984, + 0.028397604823112488, + 0.003225898602977395, + -0.009281168691813946, + -0.006351366639137268, + -0.001447585178539157, + -0.009461251087486744, + 0.005866529420018196, + 0.012965930625796318, + -0.028120554983615875, + 0.005450954660773277, + 0.009959939867258072, + -0.016830775886774063, + -0.006503744050860405, + -0.02334144525229931, + -0.01853463239967823, + -0.016830775886774063, + 0.00474794115871191, + 0.00562411081045866, + 0.015944216400384903, + 0.001980906119570136, + -0.008339199237525463, + -0.01853463239967823, + 0.00980756338685751, + 0.026943093165755272, + 0.0511988028883934, + 0.0147667545825243, + -0.0019376170821487904, + 0.0026562148705124855, + 0.013256832957267761, + -0.03443729132413864, + 0.006552227772772312, + -0.010534818284213543, + -0.021873081102967262, + -0.006933171302080154, + -0.012314863502979279, + -0.012979783117771149, + 0.011885436251759529, + 0.009946087375283241, + -0.018853239715099335, + 0.007695058360695839, + 0.0022094722371548414, + -0.01235642097890377, + -0.007258704863488674, + 0.006888150703161955, + 0.00794440321624279, + 0.01629052869975567, + -0.0012493213871493936, + 0.011663796380162239, + 0.01850692741572857, + -0.006503744050860405, + 0.00319646205753088, + -0.017509547993540764, + -0.012384125962853432, + 0.015182329341769218, + 0.023909397423267365, + -0.003184341127052903, + -0.006583395879715681, + -0.004325440153479576, + -0.014628229662775993, + 0.004997285548597574, + -0.007715837098658085, + 0.013194496743381023, + 0.001296073547564447, + 0.0009090696694329381, + -0.004741014912724495, + -0.0077089108526706696, + 0.014863722026348114, + -0.017537252977490425, + -0.015348559245467186, + 0.0040587796829640865, + -0.012730438262224197, + -0.023937102407217026, + 0.02046012692153454, + -0.010472482070326805, + -0.007992886938154697, + -0.014711344614624977, + -0.01742643304169178, + -0.028536129742860794, + -0.00046665576519444585, + 0.009163422510027885, + 0.040476974099874496, + 0.004453575704246759, + -0.009641333483159542, + -0.008297641761600971, + -0.00025085994275286794, + 0.00838768295943737, + 0.011892362497746944, + 0.007577312178909779, + -0.00750112347304821, + 0.016401348635554314, + 0.007563459686934948, + -0.005097716115415096, + 0.015944216400384903, + -0.0005566969630308449, + 0.011386746540665627, + -0.01588880643248558, + -0.006309809163212776, + -0.00883096270263195, + -0.017384875565767288, + -0.014877574518322945, + -0.021734556183218956, + -0.00019122929370496422, + -0.0029298015870153904, + 0.016152003780007362, + 0.008193748071789742, + -0.023189067840576172, + 0.004782572388648987, + -0.006915855687111616, + -0.01723249815404415, + -0.003923717886209488, + -0.0031185417901724577, + -0.0036362786777317524, + -0.023438412696123123, + 0.02208086848258972, + -0.02911793440580368, + 0.009953013621270657, + -0.003438880667090416, + 0.014503557235002518, + -0.00016742032312322408, + -0.025502434000372887, + -0.007674279622733593, + -0.0007653500651940703, + -0.001740219071507454, + 0.012508798390626907, + -0.0031012261752039194, + 0.0037851929664611816, + 0.0010190238244831562, + 0.015819543972611427, + -0.01985061913728714, + -0.03324597701430321, + -0.012391052208840847, + 0.004225009586662054, + 0.005980812478810549, + 0.016470611095428467, + -0.01940733939409256, + -0.00041968715959228575, + 0.011442156508564949, + 0.0030423530843108892, + -0.003397323191165924, + 0.011940846219658852, + 0.00826993677765131, + 0.008692437782883644, + -0.000308217917336151, + 0.009627480991184711, + -0.013429989106953144, + 0.012598839588463306, + 0.016706103459000587, + -0.0031497098971158266, + 0.016207413747906685, + 0.007542680948972702, + 0.004121115896850824, + 0.0037644142284989357, + 0.0064171659760177135, + -0.009869899600744247, + 0.011414451524615288, + 0.00584575068205595, + 0.0019254961516708136, + 0.002903828164562583, + 0.008110633119940758, + -0.004869150463491678, + 0.015265444293618202, + -0.009793710894882679, + -0.010396293364465237, + -0.00033700509811751544, + -0.017260203137993813, + 0.0344649963080883, + 0.027885062620043755, + -0.002985211554914713, + -0.025308499112725258, + -0.016193561255931854, + -0.031001873314380646, + 0.0048760767094790936, + 0.004782572388648987, + -0.0007363464101217687, + -0.009398914873600006, + -0.006808498874306679, + -0.011393672786653042, + -0.006489891558885574, + -0.007888993248343468, + 0.02561325393617153, + 0.01234256848692894, + 0.034714341163635254, + -0.016595283523201942, + 0.0067704045213758945, + -0.012072444893419743, + 0.010874204337596893, + 0.004207693971693516, + 0.002519421512261033, + -0.003527190303429961, + -0.00716173741966486, + 0.00738337729126215, + 0.02008610963821411, + -0.020584799349308014, + 0.0020293898414820433, + -0.015085361897945404, + 0.006714994553476572, + -0.009343504905700684, + -0.015528641641139984, + 0.002162720076739788, + -0.0038371398113667965, + -0.011061212979257107, + -0.018617747351527214, + -0.019033322110772133, + -0.01059715449810028, + -0.00036579230800271034, + 0.030364658683538437, + 0.00892100390046835, + -0.003388665383681655, + 0.005911550018936396, + -0.011255147866904736, + -0.003618963062763214, + 0.02625046856701374, + -0.015584051609039307, + 0.010721826925873756, + -0.0030475477688014507, + 0.011816173791885376, + 0.0006385131855495274, + 0.007026675622910261, + -0.001417282852344215, + -0.005814582575112581, + 0.0026285098865628242, + 0.0031029577367007732, + -0.009627480991184711, + 0.011663796380162239, + 0.010527892038226128, + -0.012411830946803093, + 0.0016977958148345351, + -0.015736429020762444 + ] + }, + "text_id_to_ref_doc_id": { + "8ee005f6-4244-4150-8397-38b43c51d568": "e073aa57-e525-4e73-86a4-17a2e84f6c96", + "b62ec4b9-7646-4d54-ab3f-a82f006e5b48": "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa", + "c455d382-4822-4de9-99de-ed945e58c6d0": "9fff190b-3326-4032-8337-105e18dbf698", + "472c884d-6522-40ed-afef-993a922a8de6": "d5c99332-006a-4563-aee6-b09be7032902", + "43408a31-702a-4ea9-9e9a-15c5d24e0040": "6d7958c1-e3f9-4fc0-b435-48becf1b2a85", + "de188cbd-8053-4129-9d8b-18ccbec40b12": "a4f30077-4d90-44d0-8c71-0460dddb61b6", + "65081f7f-fbb2-4b98-abb2-c498ffeed3ae": "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba", + "53f4439e-ed64-466a-b4e5-22f63fae7143": "5d064bb1-9153-4a83-a418-ac61048f75f7", + "9f951089-d568-4e58-80d0-8e52a8fc72bf": "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912", + "b1ee9aa0-c711-4ca7-89af-d49425266d7b": "5a272539-60fa-4cc2-8ed9-defb2a93ec29", + "7c6b9285-17da-4a33-b28a-7e96d60a0e9c": "65c01335-0e19-4a6f-8589-84871945c3f1", + "14658e25-10cf-4679-8a52-bedbc8515f4c": "f87b40d9-acd2-4f7a-adfb-68c995944c0a", + "a768f0e7-ac33-46a0-b154-f561a05c9d54": "338dc3bd-bb8c-4917-bf43-b78ea93307cf", + "9937a4e2-dddb-4aba-9d47-b1c6da63e335": "6787c86f-4310-44e7-9de7-0d2714c2406a", + "e2332648-6300-46c2-b1d5-f5966f11ce80": "f874e13d-4827-496d-8a5a-5e3a179dbb9a", + "015aadd8-9061-4542-9d1c-6e0f3b3ec96f": "593bc266-2dad-46ff-91b2-2407ddcb728f", + "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6": "c21d6297-441d-482c-bd53-0c2cb96c5182", + "f6f713d6-68a5-45e1-aa49-aed586e59c7e": "e2067416-8439-4c4a-b79e-dced61c5014e", + "3667515a-1927-4b16-803c-9b93e91b7689": "063c3711-676f-434c-b740-31157b4a3bf1", + "142927a5-1925-4ba1-b05d-67ad5f108340": "72907f82-fce1-453d-996d-f28d49f8da02", + "d7ba5df5-4220-447e-b9ee-4506ddd585ca": "c11ba473-1778-4590-b1f3-11a3aa5b84cf", + "0308889d-fbbc-401a-88d1-998060d1c644": "8f6a1986-dc74-43f5-a73c-fae0b39f63d5", + "7b7305d6-06d3-45c3-a5f1-48efe2b8822b": "a9e9bd4b-c290-4c60-8851-3e2afccff780", + "85c3ec39-c43e-47ee-9a60-ce18351fb179": "239d3466-8ebd-44f3-83a0-f0a84a9399ef", + "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9": "7146cbb8-0e24-498a-85eb-118da108ba79", + "8ac0adf3-cc9a-46bd-974d-a948fad3c944": "a20f90ff-e847-470f-ac6a-c5e2faf27a4b", + "9f536e57-d021-4982-9bc4-40dc7be00ac0": "589ddbac-899a-4953-9f20-945503678b04", + "d503eb6e-392f-42be-9cfa-db7518dce2c5": "51774bff-dad7-40d9-9397-4811b534f7af", + "36817ce8-f818-4583-a780-4cd4d2273a7f": "3e772827-f248-4bda-a9de-f03fc494ec9f", + "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d": "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4", + "1a47a74d-b663-42ed-bb64-ec02a36930eb": "1875a318-4714-4d3c-9823-44fc04fdb80e", + "1fd73fc0-2038-4b6e-8a5d-05c8c2708670": "53b7c8e9-4038-484a-9959-f8ba0c74cae4", + "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d": "8dd08508-a0e8-453c-a261-bbfe9b400fb6", + "3ceb959b-c18c-4b87-9ad6-57cd094ea347": "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b", + "85674089-ac2b-4e17-bcbd-8a26e52e0479": "dffac31e-407e-4db7-b748-eb0c3bde79be", + "c93eb83d-f192-4d6a-8804-f9fe024fc9b3": "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e", + "dd980b9d-c087-47af-a05e-e4f9293d6b00": "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5", + "71a0db5b-8b05-43cb-a292-f738bf7f2a17": "9bfba4d9-ed41-44c0-8d14-473969cd5dc4", + "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c": "0796653b-31f7-4304-8d36-b504494351bc", + "8bc678cb-61e4-40fd-ab1e-8fed5858f750": "7668d899-32f4-400d-a3bc-0fbcbbd0cb95", + "a04d77c2-9ee7-4fce-a10e-6deba2887435": "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d", + "df073b45-a9b0-4904-9148-43b9d1d631d2": "054eeaa3-1184-48bf-bcba-b9818dcd1460", + "74df844b-7eff-4914-a518-ec5b4bfa7c38": "d4e51f31-9576-4cce-9a5d-ab990a67d246", + "10b3958c-31b3-45bc-b6c5-8f633558f400": "2fadf236-b58c-4e5f-8564-f3ba31eb3c78", + "98088bbe-3045-4978-8093-b2ce06830843": "6dad88fc-3d36-45ad-b54b-e67d7dac95eb", + "40193ed8-343f-4536-b10c-0458b2fc74de": "5b4f6747-16ad-461d-8b0a-c684dafea1b2", + "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8": "9bef55e2-a359-4dd2-90ea-3cabbefb0c88", + "b463a27e-a692-441a-a66a-34610730ddb4": "4290c0a3-68bf-46b8-a963-70834ce30d40", + "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99": "d73a7539-5dab-4229-8697-1a8457247d95", + "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72": "3186adb2-a93b-456c-9014-b74e712385ef", + "77735169-8e6a-4805-90b5-fd8136f8f40c": "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d", + "5135e964-9062-4dc9-87f5-78f4213b7f6b": "5b1021d4-fe9e-40eb-96de-d32a43140447", + "a6368a15-a882-4d45-8337-5aa16131c81f": "15bf1853-8534-448c-9b4e-11b26c0ef7a6", + "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865": "607f4a8d-bd16-4b4f-9895-8eb8427ad64f", + "6c9d3854-7c5d-4087-8fbf-29be8953f7cd": "44b43dc1-b557-4eff-9fba-7896c635050a", + "22aacff5-a1e6-48b8-87da-3bc0a6b6275b": "dcf13e3c-3703-4312-8edc-b0f117d4621d", + "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed": "7c3b415f-c1b0-4471-86a8-ade398a7faad", + "52d0dadc-b060-48fd-9e7a-177efef38efa": "d8411fc9-1c7b-4d0a-b95d-17a1e255610c", + "6d4117d6-bc83-44a5-ad19-d828afa2baed": "48580fdc-e332-45f5-9d2d-147d9d022b2f", + "9f93ecb7-2d49-48f8-a8a1-baa72fb39565": "c0ceb309-98cf-484d-9330-0f6b8b5b2fda", + "4d609ec0-9a7a-46ce-a769-d2daf0141978": "f50ac71e-4df1-4edd-b7ce-a512a5e0193c", + "39b7cc27-3b1a-459c-87ac-cb805e0845d9": "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6", + "348b7fb0-1e7b-4f03-958e-72413469a02c": "e958b6ee-5340-451f-b8c1-0ecab8b293ae", + "aaac39b2-41ce-49a5-ac24-516f873a8dc7": "6c339873-d97d-46e5-a495-1a6b0ea42dc7", + "9850698b-a7f7-478c-b6b5-cfc4b75c04fa": "03dd3269-d126-4a95-81e6-c49974907666", + "239e054c-bffc-4992-8627-8d9f80c066cd": "c1bb2b52-a549-4578-84fe-c57c6e5d5446", + "81857120-fce6-4805-a1f5-878400b46bb2": "1900616f-5e01-48f1-91ec-e432ba515157", + "6eee3782-64f2-49e8-9fda-c9b53e8827f1": "5026023d-8ff8-43ec-8237-b36e371c2b42", + "135a0c63-420e-4970-a69a-f967e1e36a40": "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5", + "960e584f-7c70-412b-81bc-cbe29ca6c5fa": "83b58953-3e2b-430c-ba54-04564ae2c764", + "df1eae99-5b15-4b4e-bfca-c42eed6ef25b": "c95ce074-0ee7-44fb-9265-c7326923b8ad", + "ea331090-3f76-40c9-af80-2bb8df1e5638": "01f5fbc0-b6d5-48c1-a788-c84272dc4c24", + "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0": "7f196e1d-f25a-42f1-8526-3d0edcc9182a", + "55f0fba3-64d0-45fa-959f-de7abf3d8afe": "02842d37-142a-4115-8687-30678a03d6ca", + "a081ad6b-87d5-4df2-8ffd-85afdc75a174": "6880a3bd-3700-4428-b73d-357543a854e7", + "88c08258-e948-4a2a-b0a8-e7d746e760a0": "6bb45b06-7c91-4f10-9550-fb02eb6c685b", + "fbd23709-de50-4ee7-9fe4-b9091aad8af0": "a5a27515-0a35-45fe-887b-4b9035eb06de", + "2b48de5c-e88d-4082-b30e-95790ede9e7a": "771a3b45-733d-49cb-8395-0a54423466fd", + "c92dd0dc-c2d7-40d9-a9e4-36c908174d04": "ea64cc92-be5c-4386-91cc-6e7d4039a2b9", + "2135c16e-6e34-425c-9901-4d9d31e2239c": "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8", + "a540806a-9e44-4c09-90a2-72ef5870e1c3": "5fd235a1-a085-4785-b45a-ee39fdb2cbb7", + "aed67281-3a13-42b8-b9ec-2031d631c4f1": "98407fd2-3fa3-4953-ac50-1364d6b8f934", + "1d74e06e-21a1-4b8c-bb5c-4866a1a9531f": "19306ea4-0457-431a-b8ec-fdc9817e759e" + }, + "metadata_dict": { + "8ee005f6-4244-4150-8397-38b43c51d568": { + "_node_type": "TextNode", + "document_id": "e073aa57-e525-4e73-86a4-17a2e84f6c96", + "doc_id": "e073aa57-e525-4e73-86a4-17a2e84f6c96", + "ref_doc_id": "e073aa57-e525-4e73-86a4-17a2e84f6c96" + }, + "b62ec4b9-7646-4d54-ab3f-a82f006e5b48": { + "_node_type": "TextNode", + "document_id": "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa", + "doc_id": "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa", + "ref_doc_id": "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa" + }, + "c455d382-4822-4de9-99de-ed945e58c6d0": { + "_node_type": "TextNode", + "document_id": "9fff190b-3326-4032-8337-105e18dbf698", + "doc_id": "9fff190b-3326-4032-8337-105e18dbf698", + "ref_doc_id": "9fff190b-3326-4032-8337-105e18dbf698" + }, + "472c884d-6522-40ed-afef-993a922a8de6": { + "_node_type": "TextNode", + "document_id": "d5c99332-006a-4563-aee6-b09be7032902", + "doc_id": "d5c99332-006a-4563-aee6-b09be7032902", + "ref_doc_id": "d5c99332-006a-4563-aee6-b09be7032902" + }, + "43408a31-702a-4ea9-9e9a-15c5d24e0040": { + "_node_type": "TextNode", + "document_id": "6d7958c1-e3f9-4fc0-b435-48becf1b2a85", + "doc_id": "6d7958c1-e3f9-4fc0-b435-48becf1b2a85", + "ref_doc_id": "6d7958c1-e3f9-4fc0-b435-48becf1b2a85" + }, + "de188cbd-8053-4129-9d8b-18ccbec40b12": { + "_node_type": "TextNode", + "document_id": "a4f30077-4d90-44d0-8c71-0460dddb61b6", + "doc_id": "a4f30077-4d90-44d0-8c71-0460dddb61b6", + "ref_doc_id": "a4f30077-4d90-44d0-8c71-0460dddb61b6" + }, + "65081f7f-fbb2-4b98-abb2-c498ffeed3ae": { + "_node_type": "TextNode", + "document_id": "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba", + "doc_id": "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba", + "ref_doc_id": "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba" + }, + "53f4439e-ed64-466a-b4e5-22f63fae7143": { + "_node_type": "TextNode", + "document_id": "5d064bb1-9153-4a83-a418-ac61048f75f7", + "doc_id": "5d064bb1-9153-4a83-a418-ac61048f75f7", + "ref_doc_id": "5d064bb1-9153-4a83-a418-ac61048f75f7" + }, + "9f951089-d568-4e58-80d0-8e52a8fc72bf": { + "_node_type": "TextNode", + "document_id": "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912", + "doc_id": "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912", + "ref_doc_id": "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912" + }, + "b1ee9aa0-c711-4ca7-89af-d49425266d7b": { + "_node_type": "TextNode", + "document_id": "5a272539-60fa-4cc2-8ed9-defb2a93ec29", + "doc_id": "5a272539-60fa-4cc2-8ed9-defb2a93ec29", + "ref_doc_id": "5a272539-60fa-4cc2-8ed9-defb2a93ec29" + }, + "7c6b9285-17da-4a33-b28a-7e96d60a0e9c": { + "_node_type": "TextNode", + "document_id": "65c01335-0e19-4a6f-8589-84871945c3f1", + "doc_id": "65c01335-0e19-4a6f-8589-84871945c3f1", + "ref_doc_id": "65c01335-0e19-4a6f-8589-84871945c3f1" + }, + "14658e25-10cf-4679-8a52-bedbc8515f4c": { + "_node_type": "TextNode", + "document_id": "f87b40d9-acd2-4f7a-adfb-68c995944c0a", + "doc_id": "f87b40d9-acd2-4f7a-adfb-68c995944c0a", + "ref_doc_id": "f87b40d9-acd2-4f7a-adfb-68c995944c0a" + }, + "a768f0e7-ac33-46a0-b154-f561a05c9d54": { + "_node_type": "TextNode", + "document_id": "338dc3bd-bb8c-4917-bf43-b78ea93307cf", + "doc_id": "338dc3bd-bb8c-4917-bf43-b78ea93307cf", + "ref_doc_id": "338dc3bd-bb8c-4917-bf43-b78ea93307cf" + }, + "9937a4e2-dddb-4aba-9d47-b1c6da63e335": { + "_node_type": "TextNode", + "document_id": "6787c86f-4310-44e7-9de7-0d2714c2406a", + "doc_id": "6787c86f-4310-44e7-9de7-0d2714c2406a", + "ref_doc_id": "6787c86f-4310-44e7-9de7-0d2714c2406a" + }, + "e2332648-6300-46c2-b1d5-f5966f11ce80": { + "_node_type": "TextNode", + "document_id": "f874e13d-4827-496d-8a5a-5e3a179dbb9a", + "doc_id": "f874e13d-4827-496d-8a5a-5e3a179dbb9a", + "ref_doc_id": "f874e13d-4827-496d-8a5a-5e3a179dbb9a" + }, + "015aadd8-9061-4542-9d1c-6e0f3b3ec96f": { + "_node_type": "TextNode", + "document_id": "593bc266-2dad-46ff-91b2-2407ddcb728f", + "doc_id": "593bc266-2dad-46ff-91b2-2407ddcb728f", + "ref_doc_id": "593bc266-2dad-46ff-91b2-2407ddcb728f" + }, + "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6": { + "_node_type": "TextNode", + "document_id": "c21d6297-441d-482c-bd53-0c2cb96c5182", + "doc_id": "c21d6297-441d-482c-bd53-0c2cb96c5182", + "ref_doc_id": "c21d6297-441d-482c-bd53-0c2cb96c5182" + }, + "f6f713d6-68a5-45e1-aa49-aed586e59c7e": { + "_node_type": "TextNode", + "document_id": "e2067416-8439-4c4a-b79e-dced61c5014e", + "doc_id": "e2067416-8439-4c4a-b79e-dced61c5014e", + "ref_doc_id": "e2067416-8439-4c4a-b79e-dced61c5014e" + }, + "3667515a-1927-4b16-803c-9b93e91b7689": { + "_node_type": "TextNode", + "document_id": "063c3711-676f-434c-b740-31157b4a3bf1", + "doc_id": "063c3711-676f-434c-b740-31157b4a3bf1", + "ref_doc_id": "063c3711-676f-434c-b740-31157b4a3bf1" + }, + "142927a5-1925-4ba1-b05d-67ad5f108340": { + "_node_type": "TextNode", + "document_id": "72907f82-fce1-453d-996d-f28d49f8da02", + "doc_id": "72907f82-fce1-453d-996d-f28d49f8da02", + "ref_doc_id": "72907f82-fce1-453d-996d-f28d49f8da02" + }, + "d7ba5df5-4220-447e-b9ee-4506ddd585ca": { + "_node_type": "TextNode", + "document_id": "c11ba473-1778-4590-b1f3-11a3aa5b84cf", + "doc_id": "c11ba473-1778-4590-b1f3-11a3aa5b84cf", + "ref_doc_id": "c11ba473-1778-4590-b1f3-11a3aa5b84cf" + }, + "0308889d-fbbc-401a-88d1-998060d1c644": { + "_node_type": "TextNode", + "document_id": "8f6a1986-dc74-43f5-a73c-fae0b39f63d5", + "doc_id": "8f6a1986-dc74-43f5-a73c-fae0b39f63d5", + "ref_doc_id": "8f6a1986-dc74-43f5-a73c-fae0b39f63d5" + }, + "7b7305d6-06d3-45c3-a5f1-48efe2b8822b": { + "_node_type": "TextNode", + "document_id": "a9e9bd4b-c290-4c60-8851-3e2afccff780", + "doc_id": "a9e9bd4b-c290-4c60-8851-3e2afccff780", + "ref_doc_id": "a9e9bd4b-c290-4c60-8851-3e2afccff780" + }, + "85c3ec39-c43e-47ee-9a60-ce18351fb179": { + "_node_type": "TextNode", + "document_id": "239d3466-8ebd-44f3-83a0-f0a84a9399ef", + "doc_id": "239d3466-8ebd-44f3-83a0-f0a84a9399ef", + "ref_doc_id": "239d3466-8ebd-44f3-83a0-f0a84a9399ef" + }, + "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9": { + "_node_type": "TextNode", + "document_id": "7146cbb8-0e24-498a-85eb-118da108ba79", + "doc_id": "7146cbb8-0e24-498a-85eb-118da108ba79", + "ref_doc_id": "7146cbb8-0e24-498a-85eb-118da108ba79" + }, + "8ac0adf3-cc9a-46bd-974d-a948fad3c944": { + "_node_type": "TextNode", + "document_id": "a20f90ff-e847-470f-ac6a-c5e2faf27a4b", + "doc_id": "a20f90ff-e847-470f-ac6a-c5e2faf27a4b", + "ref_doc_id": "a20f90ff-e847-470f-ac6a-c5e2faf27a4b" + }, + "9f536e57-d021-4982-9bc4-40dc7be00ac0": { + "_node_type": "TextNode", + "document_id": "589ddbac-899a-4953-9f20-945503678b04", + "doc_id": "589ddbac-899a-4953-9f20-945503678b04", + "ref_doc_id": "589ddbac-899a-4953-9f20-945503678b04" + }, + "d503eb6e-392f-42be-9cfa-db7518dce2c5": { + "_node_type": "TextNode", + "document_id": "51774bff-dad7-40d9-9397-4811b534f7af", + "doc_id": "51774bff-dad7-40d9-9397-4811b534f7af", + "ref_doc_id": "51774bff-dad7-40d9-9397-4811b534f7af" + }, + "36817ce8-f818-4583-a780-4cd4d2273a7f": { + "_node_type": "TextNode", + "document_id": "3e772827-f248-4bda-a9de-f03fc494ec9f", + "doc_id": "3e772827-f248-4bda-a9de-f03fc494ec9f", + "ref_doc_id": "3e772827-f248-4bda-a9de-f03fc494ec9f" + }, + "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d": { + "_node_type": "TextNode", + "document_id": "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4", + "doc_id": "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4", + "ref_doc_id": "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4" + }, + "1a47a74d-b663-42ed-bb64-ec02a36930eb": { + "_node_type": "TextNode", + "document_id": "1875a318-4714-4d3c-9823-44fc04fdb80e", + "doc_id": "1875a318-4714-4d3c-9823-44fc04fdb80e", + "ref_doc_id": "1875a318-4714-4d3c-9823-44fc04fdb80e" + }, + "1fd73fc0-2038-4b6e-8a5d-05c8c2708670": { + "_node_type": "TextNode", + "document_id": "53b7c8e9-4038-484a-9959-f8ba0c74cae4", + "doc_id": "53b7c8e9-4038-484a-9959-f8ba0c74cae4", + "ref_doc_id": "53b7c8e9-4038-484a-9959-f8ba0c74cae4" + }, + "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d": { + "_node_type": "TextNode", + "document_id": "8dd08508-a0e8-453c-a261-bbfe9b400fb6", + "doc_id": "8dd08508-a0e8-453c-a261-bbfe9b400fb6", + "ref_doc_id": "8dd08508-a0e8-453c-a261-bbfe9b400fb6" + }, + "3ceb959b-c18c-4b87-9ad6-57cd094ea347": { + "_node_type": "TextNode", + "document_id": "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b", + "doc_id": "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b", + "ref_doc_id": "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b" + }, + "85674089-ac2b-4e17-bcbd-8a26e52e0479": { + "_node_type": "TextNode", + "document_id": "dffac31e-407e-4db7-b748-eb0c3bde79be", + "doc_id": "dffac31e-407e-4db7-b748-eb0c3bde79be", + "ref_doc_id": "dffac31e-407e-4db7-b748-eb0c3bde79be" + }, + "c93eb83d-f192-4d6a-8804-f9fe024fc9b3": { + "_node_type": "TextNode", + "document_id": "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e", + "doc_id": "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e", + "ref_doc_id": "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e" + }, + "dd980b9d-c087-47af-a05e-e4f9293d6b00": { + "_node_type": "TextNode", + "document_id": "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5", + "doc_id": "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5", + "ref_doc_id": "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5" + }, + "71a0db5b-8b05-43cb-a292-f738bf7f2a17": { + "_node_type": "TextNode", + "document_id": "9bfba4d9-ed41-44c0-8d14-473969cd5dc4", + "doc_id": "9bfba4d9-ed41-44c0-8d14-473969cd5dc4", + "ref_doc_id": "9bfba4d9-ed41-44c0-8d14-473969cd5dc4" + }, + "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c": { + "_node_type": "TextNode", + "document_id": "0796653b-31f7-4304-8d36-b504494351bc", + "doc_id": "0796653b-31f7-4304-8d36-b504494351bc", + "ref_doc_id": "0796653b-31f7-4304-8d36-b504494351bc" + }, + "8bc678cb-61e4-40fd-ab1e-8fed5858f750": { + "_node_type": "TextNode", + "document_id": "7668d899-32f4-400d-a3bc-0fbcbbd0cb95", + "doc_id": "7668d899-32f4-400d-a3bc-0fbcbbd0cb95", + "ref_doc_id": "7668d899-32f4-400d-a3bc-0fbcbbd0cb95" + }, + "a04d77c2-9ee7-4fce-a10e-6deba2887435": { + "_node_type": "TextNode", + "document_id": "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d", + "doc_id": "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d", + "ref_doc_id": "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d" + }, + "df073b45-a9b0-4904-9148-43b9d1d631d2": { + "_node_type": "TextNode", + "document_id": "054eeaa3-1184-48bf-bcba-b9818dcd1460", + "doc_id": "054eeaa3-1184-48bf-bcba-b9818dcd1460", + "ref_doc_id": "054eeaa3-1184-48bf-bcba-b9818dcd1460" + }, + "74df844b-7eff-4914-a518-ec5b4bfa7c38": { + "_node_type": "TextNode", + "document_id": "d4e51f31-9576-4cce-9a5d-ab990a67d246", + "doc_id": "d4e51f31-9576-4cce-9a5d-ab990a67d246", + "ref_doc_id": "d4e51f31-9576-4cce-9a5d-ab990a67d246" + }, + "10b3958c-31b3-45bc-b6c5-8f633558f400": { + "_node_type": "TextNode", + "document_id": "2fadf236-b58c-4e5f-8564-f3ba31eb3c78", + "doc_id": "2fadf236-b58c-4e5f-8564-f3ba31eb3c78", + "ref_doc_id": "2fadf236-b58c-4e5f-8564-f3ba31eb3c78" + }, + "98088bbe-3045-4978-8093-b2ce06830843": { + "_node_type": "TextNode", + "document_id": "6dad88fc-3d36-45ad-b54b-e67d7dac95eb", + "doc_id": "6dad88fc-3d36-45ad-b54b-e67d7dac95eb", + "ref_doc_id": "6dad88fc-3d36-45ad-b54b-e67d7dac95eb" + }, + "40193ed8-343f-4536-b10c-0458b2fc74de": { + "_node_type": "TextNode", + "document_id": "5b4f6747-16ad-461d-8b0a-c684dafea1b2", + "doc_id": "5b4f6747-16ad-461d-8b0a-c684dafea1b2", + "ref_doc_id": "5b4f6747-16ad-461d-8b0a-c684dafea1b2" + }, + "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8": { + "_node_type": "TextNode", + "document_id": "9bef55e2-a359-4dd2-90ea-3cabbefb0c88", + "doc_id": "9bef55e2-a359-4dd2-90ea-3cabbefb0c88", + "ref_doc_id": "9bef55e2-a359-4dd2-90ea-3cabbefb0c88" + }, + "b463a27e-a692-441a-a66a-34610730ddb4": { + "_node_type": "TextNode", + "document_id": "4290c0a3-68bf-46b8-a963-70834ce30d40", + "doc_id": "4290c0a3-68bf-46b8-a963-70834ce30d40", + "ref_doc_id": "4290c0a3-68bf-46b8-a963-70834ce30d40" + }, + "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99": { + "_node_type": "TextNode", + "document_id": "d73a7539-5dab-4229-8697-1a8457247d95", + "doc_id": "d73a7539-5dab-4229-8697-1a8457247d95", + "ref_doc_id": "d73a7539-5dab-4229-8697-1a8457247d95" + }, + "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72": { + "_node_type": "TextNode", + "document_id": "3186adb2-a93b-456c-9014-b74e712385ef", + "doc_id": "3186adb2-a93b-456c-9014-b74e712385ef", + "ref_doc_id": "3186adb2-a93b-456c-9014-b74e712385ef" + }, + "77735169-8e6a-4805-90b5-fd8136f8f40c": { + "_node_type": "TextNode", + "document_id": "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d", + "doc_id": "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d", + "ref_doc_id": "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d" + }, + "5135e964-9062-4dc9-87f5-78f4213b7f6b": { + "_node_type": "TextNode", + "document_id": "5b1021d4-fe9e-40eb-96de-d32a43140447", + "doc_id": "5b1021d4-fe9e-40eb-96de-d32a43140447", + "ref_doc_id": "5b1021d4-fe9e-40eb-96de-d32a43140447" + }, + "a6368a15-a882-4d45-8337-5aa16131c81f": { + "_node_type": "TextNode", + "document_id": "15bf1853-8534-448c-9b4e-11b26c0ef7a6", + "doc_id": "15bf1853-8534-448c-9b4e-11b26c0ef7a6", + "ref_doc_id": "15bf1853-8534-448c-9b4e-11b26c0ef7a6" + }, + "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865": { + "_node_type": "TextNode", + "document_id": "607f4a8d-bd16-4b4f-9895-8eb8427ad64f", + "doc_id": "607f4a8d-bd16-4b4f-9895-8eb8427ad64f", + "ref_doc_id": "607f4a8d-bd16-4b4f-9895-8eb8427ad64f" + }, + "6c9d3854-7c5d-4087-8fbf-29be8953f7cd": { + "_node_type": "TextNode", + "document_id": "44b43dc1-b557-4eff-9fba-7896c635050a", + "doc_id": "44b43dc1-b557-4eff-9fba-7896c635050a", + "ref_doc_id": "44b43dc1-b557-4eff-9fba-7896c635050a" + }, + "22aacff5-a1e6-48b8-87da-3bc0a6b6275b": { + "_node_type": "TextNode", + "document_id": "dcf13e3c-3703-4312-8edc-b0f117d4621d", + "doc_id": "dcf13e3c-3703-4312-8edc-b0f117d4621d", + "ref_doc_id": "dcf13e3c-3703-4312-8edc-b0f117d4621d" + }, + "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed": { + "_node_type": "TextNode", + "document_id": "7c3b415f-c1b0-4471-86a8-ade398a7faad", + "doc_id": "7c3b415f-c1b0-4471-86a8-ade398a7faad", + "ref_doc_id": "7c3b415f-c1b0-4471-86a8-ade398a7faad" + }, + "52d0dadc-b060-48fd-9e7a-177efef38efa": { + "_node_type": "TextNode", + "document_id": "d8411fc9-1c7b-4d0a-b95d-17a1e255610c", + "doc_id": "d8411fc9-1c7b-4d0a-b95d-17a1e255610c", + "ref_doc_id": "d8411fc9-1c7b-4d0a-b95d-17a1e255610c" + }, + "6d4117d6-bc83-44a5-ad19-d828afa2baed": { + "_node_type": "TextNode", + "document_id": "48580fdc-e332-45f5-9d2d-147d9d022b2f", + "doc_id": "48580fdc-e332-45f5-9d2d-147d9d022b2f", + "ref_doc_id": "48580fdc-e332-45f5-9d2d-147d9d022b2f" + }, + "9f93ecb7-2d49-48f8-a8a1-baa72fb39565": { + "_node_type": "TextNode", + "document_id": "c0ceb309-98cf-484d-9330-0f6b8b5b2fda", + "doc_id": "c0ceb309-98cf-484d-9330-0f6b8b5b2fda", + "ref_doc_id": "c0ceb309-98cf-484d-9330-0f6b8b5b2fda" + }, + "4d609ec0-9a7a-46ce-a769-d2daf0141978": { + "_node_type": "TextNode", + "document_id": "f50ac71e-4df1-4edd-b7ce-a512a5e0193c", + "doc_id": "f50ac71e-4df1-4edd-b7ce-a512a5e0193c", + "ref_doc_id": "f50ac71e-4df1-4edd-b7ce-a512a5e0193c" + }, + "39b7cc27-3b1a-459c-87ac-cb805e0845d9": { + "_node_type": "TextNode", + "document_id": "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6", + "doc_id": "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6", + "ref_doc_id": "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6" + }, + "348b7fb0-1e7b-4f03-958e-72413469a02c": { + "_node_type": "TextNode", + "document_id": "e958b6ee-5340-451f-b8c1-0ecab8b293ae", + "doc_id": "e958b6ee-5340-451f-b8c1-0ecab8b293ae", + "ref_doc_id": "e958b6ee-5340-451f-b8c1-0ecab8b293ae" + }, + "aaac39b2-41ce-49a5-ac24-516f873a8dc7": { + "_node_type": "TextNode", + "document_id": "6c339873-d97d-46e5-a495-1a6b0ea42dc7", + "doc_id": "6c339873-d97d-46e5-a495-1a6b0ea42dc7", + "ref_doc_id": "6c339873-d97d-46e5-a495-1a6b0ea42dc7" + }, + "9850698b-a7f7-478c-b6b5-cfc4b75c04fa": { + "_node_type": "TextNode", + "document_id": "03dd3269-d126-4a95-81e6-c49974907666", + "doc_id": "03dd3269-d126-4a95-81e6-c49974907666", + "ref_doc_id": "03dd3269-d126-4a95-81e6-c49974907666" + }, + "239e054c-bffc-4992-8627-8d9f80c066cd": { + "_node_type": "TextNode", + "document_id": "c1bb2b52-a549-4578-84fe-c57c6e5d5446", + "doc_id": "c1bb2b52-a549-4578-84fe-c57c6e5d5446", + "ref_doc_id": "c1bb2b52-a549-4578-84fe-c57c6e5d5446" + }, + "81857120-fce6-4805-a1f5-878400b46bb2": { + "_node_type": "TextNode", + "document_id": "1900616f-5e01-48f1-91ec-e432ba515157", + "doc_id": "1900616f-5e01-48f1-91ec-e432ba515157", + "ref_doc_id": "1900616f-5e01-48f1-91ec-e432ba515157" + }, + "6eee3782-64f2-49e8-9fda-c9b53e8827f1": { + "_node_type": "TextNode", + "document_id": "5026023d-8ff8-43ec-8237-b36e371c2b42", + "doc_id": "5026023d-8ff8-43ec-8237-b36e371c2b42", + "ref_doc_id": "5026023d-8ff8-43ec-8237-b36e371c2b42" + }, + "135a0c63-420e-4970-a69a-f967e1e36a40": { + "_node_type": "TextNode", + "document_id": "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5", + "doc_id": "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5", + "ref_doc_id": "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5" + }, + "960e584f-7c70-412b-81bc-cbe29ca6c5fa": { + "_node_type": "TextNode", + "document_id": "83b58953-3e2b-430c-ba54-04564ae2c764", + "doc_id": "83b58953-3e2b-430c-ba54-04564ae2c764", + "ref_doc_id": "83b58953-3e2b-430c-ba54-04564ae2c764" + }, + "df1eae99-5b15-4b4e-bfca-c42eed6ef25b": { + "_node_type": "TextNode", + "document_id": "c95ce074-0ee7-44fb-9265-c7326923b8ad", + "doc_id": "c95ce074-0ee7-44fb-9265-c7326923b8ad", + "ref_doc_id": "c95ce074-0ee7-44fb-9265-c7326923b8ad" + }, + "ea331090-3f76-40c9-af80-2bb8df1e5638": { + "_node_type": "TextNode", + "document_id": "01f5fbc0-b6d5-48c1-a788-c84272dc4c24", + "doc_id": "01f5fbc0-b6d5-48c1-a788-c84272dc4c24", + "ref_doc_id": "01f5fbc0-b6d5-48c1-a788-c84272dc4c24" + }, + "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0": { + "_node_type": "TextNode", + "document_id": "7f196e1d-f25a-42f1-8526-3d0edcc9182a", + "doc_id": "7f196e1d-f25a-42f1-8526-3d0edcc9182a", + "ref_doc_id": "7f196e1d-f25a-42f1-8526-3d0edcc9182a" + }, + "55f0fba3-64d0-45fa-959f-de7abf3d8afe": { + "_node_type": "TextNode", + "document_id": "02842d37-142a-4115-8687-30678a03d6ca", + "doc_id": "02842d37-142a-4115-8687-30678a03d6ca", + "ref_doc_id": "02842d37-142a-4115-8687-30678a03d6ca" + }, + "a081ad6b-87d5-4df2-8ffd-85afdc75a174": { + "_node_type": "TextNode", + "document_id": "6880a3bd-3700-4428-b73d-357543a854e7", + "doc_id": "6880a3bd-3700-4428-b73d-357543a854e7", + "ref_doc_id": "6880a3bd-3700-4428-b73d-357543a854e7" + }, + "88c08258-e948-4a2a-b0a8-e7d746e760a0": { + "_node_type": "TextNode", + "document_id": "6bb45b06-7c91-4f10-9550-fb02eb6c685b", + "doc_id": "6bb45b06-7c91-4f10-9550-fb02eb6c685b", + "ref_doc_id": "6bb45b06-7c91-4f10-9550-fb02eb6c685b" + }, + "fbd23709-de50-4ee7-9fe4-b9091aad8af0": { + "_node_type": "TextNode", + "document_id": "a5a27515-0a35-45fe-887b-4b9035eb06de", + "doc_id": "a5a27515-0a35-45fe-887b-4b9035eb06de", + "ref_doc_id": "a5a27515-0a35-45fe-887b-4b9035eb06de" + }, + "2b48de5c-e88d-4082-b30e-95790ede9e7a": { + "_node_type": "TextNode", + "document_id": "771a3b45-733d-49cb-8395-0a54423466fd", + "doc_id": "771a3b45-733d-49cb-8395-0a54423466fd", + "ref_doc_id": "771a3b45-733d-49cb-8395-0a54423466fd" + }, + "c92dd0dc-c2d7-40d9-a9e4-36c908174d04": { + "_node_type": "TextNode", + "document_id": "ea64cc92-be5c-4386-91cc-6e7d4039a2b9", + "doc_id": "ea64cc92-be5c-4386-91cc-6e7d4039a2b9", + "ref_doc_id": "ea64cc92-be5c-4386-91cc-6e7d4039a2b9" + }, + "2135c16e-6e34-425c-9901-4d9d31e2239c": { + "_node_type": "TextNode", + "document_id": "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8", + "doc_id": "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8", + "ref_doc_id": "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8" + }, + "a540806a-9e44-4c09-90a2-72ef5870e1c3": { + "_node_type": "TextNode", + "document_id": "5fd235a1-a085-4785-b45a-ee39fdb2cbb7", + "doc_id": "5fd235a1-a085-4785-b45a-ee39fdb2cbb7", + "ref_doc_id": "5fd235a1-a085-4785-b45a-ee39fdb2cbb7" + }, + "aed67281-3a13-42b8-b9ec-2031d631c4f1": { + "_node_type": "TextNode", + "document_id": "98407fd2-3fa3-4953-ac50-1364d6b8f934", + "doc_id": "98407fd2-3fa3-4953-ac50-1364d6b8f934", + "ref_doc_id": "98407fd2-3fa3-4953-ac50-1364d6b8f934" + }, + "1d74e06e-21a1-4b8c-bb5c-4866a1a9531f": { + "_node_type": "TextNode", + "document_id": "19306ea4-0457-431a-b8ec-fdc9817e759e", + "doc_id": "19306ea4-0457-431a-b8ec-fdc9817e759e", + "ref_doc_id": "19306ea4-0457-431a-b8ec-fdc9817e759e" + } + } +} diff --git a/opentrons-ai-server/api/storage/index/commands/docstore.json b/opentrons-ai-server/api/storage/index/commands/docstore.json new file mode 100644 index 00000000000..4b018f2e959 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/commands/docstore.json @@ -0,0 +1,5389 @@ +{ + "docstore/metadata": { + "e073aa57-e525-4e73-86a4-17a2e84f6c96": { + "doc_hash": "1b5250f7cfd509c7f37b39e5877f2aa6882e5923b1d59fecdd258376ef899bda" + }, + "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa": { + "doc_hash": "4a3633e629764e78138c8789f495777e1e0095f69f6f443a525ea00af3cf6c05" + }, + "9fff190b-3326-4032-8337-105e18dbf698": { + "doc_hash": "603f8df7cc0e0c561ab0494a4317e39680a25264dd3061762b28dc87b7aec904" + }, + "d5c99332-006a-4563-aee6-b09be7032902": { + "doc_hash": "d6e7a8920da118d40efb09a1ade6946588ac1a82cc57ef160057da70e1fbf50f" + }, + "6d7958c1-e3f9-4fc0-b435-48becf1b2a85": { + "doc_hash": "16a5402da2fcf6fe4faead689904abd08dd561d89c3668b71a2548926c490bc0" + }, + "a4f30077-4d90-44d0-8c71-0460dddb61b6": { + "doc_hash": "efa0cdb4c4b6359a16e4767d48cb95e5916e7dcb50cfaeac110f7010114543ba" + }, + "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba": { + "doc_hash": "dda7a008188916d4060f5dec7a50d8d8f5b10f0da6384b6d7a307a90ed575fd2" + }, + "5d064bb1-9153-4a83-a418-ac61048f75f7": { + "doc_hash": "bb44f3f2b76f4a9227e0d20e2f9d9e234f70d9abcd95daf39779a6879a13c1fc" + }, + "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912": { + "doc_hash": "ae074f201d5c2642126a2fe4a1b8f8b79e7da0143a1604507edd1fc0f22a8b5c" + }, + "5a272539-60fa-4cc2-8ed9-defb2a93ec29": { + "doc_hash": "4a9043245828304616024eda0c96d50b2c0eb7cad12e5df48e6da39561209039" + }, + "65c01335-0e19-4a6f-8589-84871945c3f1": { + "doc_hash": "537df6cdae34122a0848c3a5d5005db695941895338457f10f888595834e000c" + }, + "f87b40d9-acd2-4f7a-adfb-68c995944c0a": { + "doc_hash": "dd7cf4cddf320f19879d591327de664e534e5e9666a5a309321cf92d2c48a64f" + }, + "338dc3bd-bb8c-4917-bf43-b78ea93307cf": { + "doc_hash": "a8ca134a9a512f30c679e1106488eec4a2aa674da31dd0d65f10809197621bcf" + }, + "6787c86f-4310-44e7-9de7-0d2714c2406a": { + "doc_hash": "8aaf6c0d140176371c7966e53297ca5ed7be797d05d6a28d6cef27f858a9a203" + }, + "f874e13d-4827-496d-8a5a-5e3a179dbb9a": { + "doc_hash": "42c424dbc6c3190ac9aa5bc47decd7a97a229e7e8891025862b5987a9b75c189" + }, + "593bc266-2dad-46ff-91b2-2407ddcb728f": { + "doc_hash": "80d3c0e737266c9ce8a22b1e7945269520d61fc571926987c5b433b319516b74" + }, + "c21d6297-441d-482c-bd53-0c2cb96c5182": { + "doc_hash": "28b604d1451fe43c0ee55c9d1da3b4bfe0581eae51dcbe57f6cae6d5130135e5" + }, + "e2067416-8439-4c4a-b79e-dced61c5014e": { + "doc_hash": "745c1b330299838a1eb6835e60e230d313f2a78a8033eb358f100606e6bdbc90" + }, + "063c3711-676f-434c-b740-31157b4a3bf1": { + "doc_hash": "98843d68a0b8016483f23f6b81ee1cd42e5ff593f2e7bf573ee5006a0b5b70b2" + }, + "72907f82-fce1-453d-996d-f28d49f8da02": { + "doc_hash": "fb5dafb10fa27fa861ff1de8b77afa27433b454f41a38661d1e658ec272d7d00" + }, + "c11ba473-1778-4590-b1f3-11a3aa5b84cf": { + "doc_hash": "fcb253bb3e1e4fe88695264aa52c8a860ee9988f3e6779c0e8946b3863c28019" + }, + "8f6a1986-dc74-43f5-a73c-fae0b39f63d5": { + "doc_hash": "637aec339ed511758a9b3fba28a0e539972a1791aac9cf4eb5b8c719452aa779" + }, + "a9e9bd4b-c290-4c60-8851-3e2afccff780": { + "doc_hash": "f8dc479d1dd6b85331c0117ee729c6f4ca2dc44ebae343aba54136b29ec04ab3" + }, + "239d3466-8ebd-44f3-83a0-f0a84a9399ef": { + "doc_hash": "a9580bc5cf3fc438970718d21214ecfaa025f2aa20f097a4ec55092c2204341c" + }, + "7146cbb8-0e24-498a-85eb-118da108ba79": { + "doc_hash": "b8f44dd1c1e85b70ae7dfa4132f0afe8924cddf149ffd0fcd1bc9b9a58d7fcf6" + }, + "a20f90ff-e847-470f-ac6a-c5e2faf27a4b": { + "doc_hash": "9cd255f45ac40e30a8e719ab173c28505aba8cc34cba34ec6f440c9ddd661c32" + }, + "589ddbac-899a-4953-9f20-945503678b04": { + "doc_hash": "f46fd76a89e92edc1a7d3619ab9e80ef7ca5644082dfd0bb2ec7c8621c8cc074" + }, + "51774bff-dad7-40d9-9397-4811b534f7af": { + "doc_hash": "cbd3385e447f5b37ea54fc9c6d9cb7d3579d9069e8db5cfaf4e4a2e9855b2b42" + }, + "3e772827-f248-4bda-a9de-f03fc494ec9f": { + "doc_hash": "9207e5bc837db6076ed4276c809b08018adf30081e564d496e8d99f2b3c966e1" + }, + "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4": { + "doc_hash": "3175a1225c3ce5923bff32ae52e0b4b37f0e97c92ab8aaaf8830e9013059a7bf" + }, + "1875a318-4714-4d3c-9823-44fc04fdb80e": { + "doc_hash": "83303ff35700d8aa3e839b23c483f95de1fe8a91f0004db53318c6175e4e68d9" + }, + "53b7c8e9-4038-484a-9959-f8ba0c74cae4": { + "doc_hash": "6ab2b11fd876c93b00e2a5c398a4daab3546d3929b48958ab947a4dfa898754a" + }, + "8dd08508-a0e8-453c-a261-bbfe9b400fb6": { + "doc_hash": "6144691d1acabb843fce3587eedfcf992277cb11f2a96f0b44ec8be0795b5048" + }, + "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b": { + "doc_hash": "1cc917aacdc623d2b1cb84f915ff5264efca053c71cb4863c8b9c4960e55185b" + }, + "dffac31e-407e-4db7-b748-eb0c3bde79be": { + "doc_hash": "e6ff43c0c50437d277582ac958b5f356a044690e22f42440f41139e742767823" + }, + "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e": { + "doc_hash": "96dd04ac5ad6d52468c444c35f7440bb417f254cc747cf8d37368bee5318aaab" + }, + "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5": { + "doc_hash": "b9046aab61c034be75844a131dcddc42c030f35e2b9dd66f96917079fb4c8b27" + }, + "9bfba4d9-ed41-44c0-8d14-473969cd5dc4": { + "doc_hash": "a2025b2941859e542cf2891c2e728a27c9fb9babae387ea89ca8eae90235de11" + }, + "0796653b-31f7-4304-8d36-b504494351bc": { + "doc_hash": "742de29f29acaa815b05ac250a863eaee98a779fc2f9a862ec64162be6b9126c" + }, + "7668d899-32f4-400d-a3bc-0fbcbbd0cb95": { + "doc_hash": "f86b83ca1a22d1371c3c12f9f5357d5aa1179986fba9926adcdb8efb5eaa3367" + }, + "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d": { + "doc_hash": "c8fdd091ffad8a366ac609b005bfa9b77b76a950e64ed9f80d4e730e5abcd333" + }, + "054eeaa3-1184-48bf-bcba-b9818dcd1460": { + "doc_hash": "1b8d2b55e64bc526d2522e815d176b34a238f0e3b5621a3dfb72618625bc0e3e" + }, + "d4e51f31-9576-4cce-9a5d-ab990a67d246": { + "doc_hash": "f138983c85282b09dea7f83df146a08408dbe7bbb42f8e24e5fdd448241b6a7d" + }, + "2fadf236-b58c-4e5f-8564-f3ba31eb3c78": { + "doc_hash": "7c41107a33734f661d097d088e8d82543eb15d10f74087825fcc20fc792ceb6a" + }, + "6dad88fc-3d36-45ad-b54b-e67d7dac95eb": { + "doc_hash": "c320b0146037910c87fa4c08cdcb0049d1f2c7600b67a992b83de61fc9332c9f" + }, + "5b4f6747-16ad-461d-8b0a-c684dafea1b2": { + "doc_hash": "4c989d7885fd5493b34d5dec1ff7cd5bee11e42162fbadc08066163768c5459f" + }, + "9bef55e2-a359-4dd2-90ea-3cabbefb0c88": { + "doc_hash": "c19c3219736e6988e6d9617915c70197081d8e7fa8593b46eb11956131579c3f" + }, + "4290c0a3-68bf-46b8-a963-70834ce30d40": { + "doc_hash": "096aed368c276075490f7f5afeeed1a20e6861e3f025299b68381aecd88098da" + }, + "d73a7539-5dab-4229-8697-1a8457247d95": { + "doc_hash": "fe719d1dcd267eb91384cafadfe1cf15c0910e8b5c6a078233a8e34c8324a872" + }, + "3186adb2-a93b-456c-9014-b74e712385ef": { + "doc_hash": "3b7ec4a6e60cc4ed0c463dd3ad44d2a041fea597d0ccf5c018b49ca4a30ae712" + }, + "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d": { + "doc_hash": "11b51d7099311a7e5ee1c1c31ad152bfdcdb74038558d68398dc0c282266f116" + }, + "5b1021d4-fe9e-40eb-96de-d32a43140447": { + "doc_hash": "dc362ddebfa53d19689c1c9b197464e50f915e2ed3026e7c6bd5aa03c4470c0d" + }, + "15bf1853-8534-448c-9b4e-11b26c0ef7a6": { + "doc_hash": "f3a79bfea30f0a7d29eaf096d7d34ce14aac539266637e8e61cfe90f802bb4de" + }, + "607f4a8d-bd16-4b4f-9895-8eb8427ad64f": { + "doc_hash": "9d9673973f15d01edda51b177edef8711b7b56497e6405743fea6c1f0561632e" + }, + "44b43dc1-b557-4eff-9fba-7896c635050a": { + "doc_hash": "cc002e4af3620f6578881e18d8fde55864f74bbc3852cd024ebd758ec05a0021" + }, + "dcf13e3c-3703-4312-8edc-b0f117d4621d": { + "doc_hash": "a5d2f0e54f006950e47335b1e95d8a4d3fc29b01a2129754350250dd9d6e9959" + }, + "7c3b415f-c1b0-4471-86a8-ade398a7faad": { + "doc_hash": "43042c0d7746d9e33f65a0cc239fc0b18f995fbac02993597b00df25ba77e7eb" + }, + "d8411fc9-1c7b-4d0a-b95d-17a1e255610c": { + "doc_hash": "57d0587a3c7d58004099d448279013de639d98d9d38eac03c3441a44ba4133a3" + }, + "48580fdc-e332-45f5-9d2d-147d9d022b2f": { + "doc_hash": "29f0f91201efa63855556aae59b0043e375bf920ea1d513309ec5ee55e19ed09" + }, + "c0ceb309-98cf-484d-9330-0f6b8b5b2fda": { + "doc_hash": "8e10ee819fec9e4c5ad9777622f4181e00bd6951277b9d8f3deee187d0807866" + }, + "f50ac71e-4df1-4edd-b7ce-a512a5e0193c": { + "doc_hash": "dfe46a63ff67763a941598ee32ee1712c6c1fce19f4da73671cc1729ac304253" + }, + "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6": { + "doc_hash": "8980fd0ec7a9d5bd5f60536d54830c7f6a72d952626c49e9a3c5baafaf057b1f" + }, + "e958b6ee-5340-451f-b8c1-0ecab8b293ae": { + "doc_hash": "19f622bddfa8ed45876aee6b2d0403faf45b27c1280dda7c503471684d5279b4" + }, + "6c339873-d97d-46e5-a495-1a6b0ea42dc7": { + "doc_hash": "0216161d8304c18df56009a923e31211098fa0a794424b56df1afa01a5ab9fd5" + }, + "03dd3269-d126-4a95-81e6-c49974907666": { + "doc_hash": "83e69d5e147ece98878c859b8b2c71d575870840a17beb46a0aa506e17760bd6" + }, + "c1bb2b52-a549-4578-84fe-c57c6e5d5446": { + "doc_hash": "b6a859a6c7031d23a8f2bcdf3275e43921042c7614f987debd64abc5fb1ae258" + }, + "1900616f-5e01-48f1-91ec-e432ba515157": { + "doc_hash": "7d113160fae1caf85e9db2f98c3dddc6b4eb625f224cd8c82d416f730b56cede" + }, + "5026023d-8ff8-43ec-8237-b36e371c2b42": { + "doc_hash": "5ff84b62b04f20fa0f0c53edb750a5ab3d2febb6ec0c787df858c241c9d8eafd" + }, + "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5": { + "doc_hash": "739234eba940dcefa2d2fc5f76fd0053256229cd59afef885072b2d68d969c74" + }, + "83b58953-3e2b-430c-ba54-04564ae2c764": { + "doc_hash": "8e709ab5389c85380e6b9f3ee6b201ea35b6f0a8f70c7444f1e8b92945f3b04c" + }, + "c95ce074-0ee7-44fb-9265-c7326923b8ad": { + "doc_hash": "75db99f67350d1bb4b78d3f8e62f681e0c0186e0fd575e2059b4d3ae67693186" + }, + "01f5fbc0-b6d5-48c1-a788-c84272dc4c24": { + "doc_hash": "b032484c31a26c0e7cfa5ee60c63c68a7e2be1b831c8315e810b83029c7272f3" + }, + "7f196e1d-f25a-42f1-8526-3d0edcc9182a": { + "doc_hash": "1f8e2557e2ad02ff792856075ce330305101557dfd1bcea6891b353d4b9e6711" + }, + "02842d37-142a-4115-8687-30678a03d6ca": { + "doc_hash": "2253eb4b82857a1ab03451ad882266a741083b74e53faa8cee43e115081a1dc8" + }, + "6880a3bd-3700-4428-b73d-357543a854e7": { + "doc_hash": "756d7723725b2468b72a08381dce060ed4cd66640b4f9d29cac1e21e37ba674c" + }, + "6bb45b06-7c91-4f10-9550-fb02eb6c685b": { + "doc_hash": "9160d61221a0bd8952a6af4a433547314a5c7891ebeb5c920be1ac841304b5ee" + }, + "a5a27515-0a35-45fe-887b-4b9035eb06de": { + "doc_hash": "2b8151ef280c9090488b85b804cb054f0fd172eb4986e4911fb31980721dd4a4" + }, + "771a3b45-733d-49cb-8395-0a54423466fd": { + "doc_hash": "9d733c6b00023e046c304d2f9843de024c15acf3d3506c53d6c4b2f956fd39d8" + }, + "ea64cc92-be5c-4386-91cc-6e7d4039a2b9": { + "doc_hash": "bf0a057ea84be0d93a769bec864bbc70818da2b3af22b4102e8695cdf3952dd0" + }, + "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8": { + "doc_hash": "0eae4468bfe80a10a82bcf2993a2fd5820d744a37e5601303b43e38240fe8356" + }, + "5fd235a1-a085-4785-b45a-ee39fdb2cbb7": { + "doc_hash": "22de7aca8099ffebeca9cdc0c50d1c91392af2efe80ea7388620affa5acfc497" + }, + "98407fd2-3fa3-4953-ac50-1364d6b8f934": { + "doc_hash": "34b0544275c0ef8a6d2707a893d11c7976e7fed2fd29bc351316d0ed45466c63" + }, + "19306ea4-0457-431a-b8ec-fdc9817e759e": { + "doc_hash": "4bba61746b024fcf83aa3b02570ae5bdc4789a661d5032744603939fd14bc7aa" + }, + "8ee005f6-4244-4150-8397-38b43c51d568": { + "doc_hash": "1b5250f7cfd509c7f37b39e5877f2aa6882e5923b1d59fecdd258376ef899bda", + "ref_doc_id": "e073aa57-e525-4e73-86a4-17a2e84f6c96" + }, + "b62ec4b9-7646-4d54-ab3f-a82f006e5b48": { + "doc_hash": "4a3633e629764e78138c8789f495777e1e0095f69f6f443a525ea00af3cf6c05", + "ref_doc_id": "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa" + }, + "c455d382-4822-4de9-99de-ed945e58c6d0": { + "doc_hash": "603f8df7cc0e0c561ab0494a4317e39680a25264dd3061762b28dc87b7aec904", + "ref_doc_id": "9fff190b-3326-4032-8337-105e18dbf698" + }, + "472c884d-6522-40ed-afef-993a922a8de6": { + "doc_hash": "d6e7a8920da118d40efb09a1ade6946588ac1a82cc57ef160057da70e1fbf50f", + "ref_doc_id": "d5c99332-006a-4563-aee6-b09be7032902" + }, + "43408a31-702a-4ea9-9e9a-15c5d24e0040": { + "doc_hash": "16a5402da2fcf6fe4faead689904abd08dd561d89c3668b71a2548926c490bc0", + "ref_doc_id": "6d7958c1-e3f9-4fc0-b435-48becf1b2a85" + }, + "de188cbd-8053-4129-9d8b-18ccbec40b12": { + "doc_hash": "efa0cdb4c4b6359a16e4767d48cb95e5916e7dcb50cfaeac110f7010114543ba", + "ref_doc_id": "a4f30077-4d90-44d0-8c71-0460dddb61b6" + }, + "65081f7f-fbb2-4b98-abb2-c498ffeed3ae": { + "doc_hash": "dda7a008188916d4060f5dec7a50d8d8f5b10f0da6384b6d7a307a90ed575fd2", + "ref_doc_id": "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba" + }, + "53f4439e-ed64-466a-b4e5-22f63fae7143": { + "doc_hash": "bb44f3f2b76f4a9227e0d20e2f9d9e234f70d9abcd95daf39779a6879a13c1fc", + "ref_doc_id": "5d064bb1-9153-4a83-a418-ac61048f75f7" + }, + "9f951089-d568-4e58-80d0-8e52a8fc72bf": { + "doc_hash": "ae074f201d5c2642126a2fe4a1b8f8b79e7da0143a1604507edd1fc0f22a8b5c", + "ref_doc_id": "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912" + }, + "b1ee9aa0-c711-4ca7-89af-d49425266d7b": { + "doc_hash": "4a9043245828304616024eda0c96d50b2c0eb7cad12e5df48e6da39561209039", + "ref_doc_id": "5a272539-60fa-4cc2-8ed9-defb2a93ec29" + }, + "7c6b9285-17da-4a33-b28a-7e96d60a0e9c": { + "doc_hash": "537df6cdae34122a0848c3a5d5005db695941895338457f10f888595834e000c", + "ref_doc_id": "65c01335-0e19-4a6f-8589-84871945c3f1" + }, + "14658e25-10cf-4679-8a52-bedbc8515f4c": { + "doc_hash": "dd7cf4cddf320f19879d591327de664e534e5e9666a5a309321cf92d2c48a64f", + "ref_doc_id": "f87b40d9-acd2-4f7a-adfb-68c995944c0a" + }, + "a768f0e7-ac33-46a0-b154-f561a05c9d54": { + "doc_hash": "a8ca134a9a512f30c679e1106488eec4a2aa674da31dd0d65f10809197621bcf", + "ref_doc_id": "338dc3bd-bb8c-4917-bf43-b78ea93307cf" + }, + "9937a4e2-dddb-4aba-9d47-b1c6da63e335": { + "doc_hash": "8aaf6c0d140176371c7966e53297ca5ed7be797d05d6a28d6cef27f858a9a203", + "ref_doc_id": "6787c86f-4310-44e7-9de7-0d2714c2406a" + }, + "e2332648-6300-46c2-b1d5-f5966f11ce80": { + "doc_hash": "42c424dbc6c3190ac9aa5bc47decd7a97a229e7e8891025862b5987a9b75c189", + "ref_doc_id": "f874e13d-4827-496d-8a5a-5e3a179dbb9a" + }, + "015aadd8-9061-4542-9d1c-6e0f3b3ec96f": { + "doc_hash": "80d3c0e737266c9ce8a22b1e7945269520d61fc571926987c5b433b319516b74", + "ref_doc_id": "593bc266-2dad-46ff-91b2-2407ddcb728f" + }, + "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6": { + "doc_hash": "28b604d1451fe43c0ee55c9d1da3b4bfe0581eae51dcbe57f6cae6d5130135e5", + "ref_doc_id": "c21d6297-441d-482c-bd53-0c2cb96c5182" + }, + "f6f713d6-68a5-45e1-aa49-aed586e59c7e": { + "doc_hash": "745c1b330299838a1eb6835e60e230d313f2a78a8033eb358f100606e6bdbc90", + "ref_doc_id": "e2067416-8439-4c4a-b79e-dced61c5014e" + }, + "3667515a-1927-4b16-803c-9b93e91b7689": { + "doc_hash": "98843d68a0b8016483f23f6b81ee1cd42e5ff593f2e7bf573ee5006a0b5b70b2", + "ref_doc_id": "063c3711-676f-434c-b740-31157b4a3bf1" + }, + "142927a5-1925-4ba1-b05d-67ad5f108340": { + "doc_hash": "fb5dafb10fa27fa861ff1de8b77afa27433b454f41a38661d1e658ec272d7d00", + "ref_doc_id": "72907f82-fce1-453d-996d-f28d49f8da02" + }, + "d7ba5df5-4220-447e-b9ee-4506ddd585ca": { + "doc_hash": "fcb253bb3e1e4fe88695264aa52c8a860ee9988f3e6779c0e8946b3863c28019", + "ref_doc_id": "c11ba473-1778-4590-b1f3-11a3aa5b84cf" + }, + "0308889d-fbbc-401a-88d1-998060d1c644": { + "doc_hash": "637aec339ed511758a9b3fba28a0e539972a1791aac9cf4eb5b8c719452aa779", + "ref_doc_id": "8f6a1986-dc74-43f5-a73c-fae0b39f63d5" + }, + "7b7305d6-06d3-45c3-a5f1-48efe2b8822b": { + "doc_hash": "f8dc479d1dd6b85331c0117ee729c6f4ca2dc44ebae343aba54136b29ec04ab3", + "ref_doc_id": "a9e9bd4b-c290-4c60-8851-3e2afccff780" + }, + "85c3ec39-c43e-47ee-9a60-ce18351fb179": { + "doc_hash": "a9580bc5cf3fc438970718d21214ecfaa025f2aa20f097a4ec55092c2204341c", + "ref_doc_id": "239d3466-8ebd-44f3-83a0-f0a84a9399ef" + }, + "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9": { + "doc_hash": "b8f44dd1c1e85b70ae7dfa4132f0afe8924cddf149ffd0fcd1bc9b9a58d7fcf6", + "ref_doc_id": "7146cbb8-0e24-498a-85eb-118da108ba79" + }, + "8ac0adf3-cc9a-46bd-974d-a948fad3c944": { + "doc_hash": "9cd255f45ac40e30a8e719ab173c28505aba8cc34cba34ec6f440c9ddd661c32", + "ref_doc_id": "a20f90ff-e847-470f-ac6a-c5e2faf27a4b" + }, + "9f536e57-d021-4982-9bc4-40dc7be00ac0": { + "doc_hash": "f46fd76a89e92edc1a7d3619ab9e80ef7ca5644082dfd0bb2ec7c8621c8cc074", + "ref_doc_id": "589ddbac-899a-4953-9f20-945503678b04" + }, + "d503eb6e-392f-42be-9cfa-db7518dce2c5": { + "doc_hash": "cbd3385e447f5b37ea54fc9c6d9cb7d3579d9069e8db5cfaf4e4a2e9855b2b42", + "ref_doc_id": "51774bff-dad7-40d9-9397-4811b534f7af" + }, + "36817ce8-f818-4583-a780-4cd4d2273a7f": { + "doc_hash": "9207e5bc837db6076ed4276c809b08018adf30081e564d496e8d99f2b3c966e1", + "ref_doc_id": "3e772827-f248-4bda-a9de-f03fc494ec9f" + }, + "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d": { + "doc_hash": "3175a1225c3ce5923bff32ae52e0b4b37f0e97c92ab8aaaf8830e9013059a7bf", + "ref_doc_id": "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4" + }, + "1a47a74d-b663-42ed-bb64-ec02a36930eb": { + "doc_hash": "83303ff35700d8aa3e839b23c483f95de1fe8a91f0004db53318c6175e4e68d9", + "ref_doc_id": "1875a318-4714-4d3c-9823-44fc04fdb80e" + }, + "1fd73fc0-2038-4b6e-8a5d-05c8c2708670": { + "doc_hash": "6ab2b11fd876c93b00e2a5c398a4daab3546d3929b48958ab947a4dfa898754a", + "ref_doc_id": "53b7c8e9-4038-484a-9959-f8ba0c74cae4" + }, + "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d": { + "doc_hash": "6144691d1acabb843fce3587eedfcf992277cb11f2a96f0b44ec8be0795b5048", + "ref_doc_id": "8dd08508-a0e8-453c-a261-bbfe9b400fb6" + }, + "3ceb959b-c18c-4b87-9ad6-57cd094ea347": { + "doc_hash": "1cc917aacdc623d2b1cb84f915ff5264efca053c71cb4863c8b9c4960e55185b", + "ref_doc_id": "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b" + }, + "85674089-ac2b-4e17-bcbd-8a26e52e0479": { + "doc_hash": "e6ff43c0c50437d277582ac958b5f356a044690e22f42440f41139e742767823", + "ref_doc_id": "dffac31e-407e-4db7-b748-eb0c3bde79be" + }, + "c93eb83d-f192-4d6a-8804-f9fe024fc9b3": { + "doc_hash": "96dd04ac5ad6d52468c444c35f7440bb417f254cc747cf8d37368bee5318aaab", + "ref_doc_id": "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e" + }, + "dd980b9d-c087-47af-a05e-e4f9293d6b00": { + "doc_hash": "b9046aab61c034be75844a131dcddc42c030f35e2b9dd66f96917079fb4c8b27", + "ref_doc_id": "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5" + }, + "71a0db5b-8b05-43cb-a292-f738bf7f2a17": { + "doc_hash": "a2025b2941859e542cf2891c2e728a27c9fb9babae387ea89ca8eae90235de11", + "ref_doc_id": "9bfba4d9-ed41-44c0-8d14-473969cd5dc4" + }, + "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c": { + "doc_hash": "742de29f29acaa815b05ac250a863eaee98a779fc2f9a862ec64162be6b9126c", + "ref_doc_id": "0796653b-31f7-4304-8d36-b504494351bc" + }, + "8bc678cb-61e4-40fd-ab1e-8fed5858f750": { + "doc_hash": "f86b83ca1a22d1371c3c12f9f5357d5aa1179986fba9926adcdb8efb5eaa3367", + "ref_doc_id": "7668d899-32f4-400d-a3bc-0fbcbbd0cb95" + }, + "a04d77c2-9ee7-4fce-a10e-6deba2887435": { + "doc_hash": "c8fdd091ffad8a366ac609b005bfa9b77b76a950e64ed9f80d4e730e5abcd333", + "ref_doc_id": "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d" + }, + "df073b45-a9b0-4904-9148-43b9d1d631d2": { + "doc_hash": "1b8d2b55e64bc526d2522e815d176b34a238f0e3b5621a3dfb72618625bc0e3e", + "ref_doc_id": "054eeaa3-1184-48bf-bcba-b9818dcd1460" + }, + "74df844b-7eff-4914-a518-ec5b4bfa7c38": { + "doc_hash": "f138983c85282b09dea7f83df146a08408dbe7bbb42f8e24e5fdd448241b6a7d", + "ref_doc_id": "d4e51f31-9576-4cce-9a5d-ab990a67d246" + }, + "10b3958c-31b3-45bc-b6c5-8f633558f400": { + "doc_hash": "7c41107a33734f661d097d088e8d82543eb15d10f74087825fcc20fc792ceb6a", + "ref_doc_id": "2fadf236-b58c-4e5f-8564-f3ba31eb3c78" + }, + "98088bbe-3045-4978-8093-b2ce06830843": { + "doc_hash": "c320b0146037910c87fa4c08cdcb0049d1f2c7600b67a992b83de61fc9332c9f", + "ref_doc_id": "6dad88fc-3d36-45ad-b54b-e67d7dac95eb" + }, + "40193ed8-343f-4536-b10c-0458b2fc74de": { + "doc_hash": "4c989d7885fd5493b34d5dec1ff7cd5bee11e42162fbadc08066163768c5459f", + "ref_doc_id": "5b4f6747-16ad-461d-8b0a-c684dafea1b2" + }, + "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8": { + "doc_hash": "c19c3219736e6988e6d9617915c70197081d8e7fa8593b46eb11956131579c3f", + "ref_doc_id": "9bef55e2-a359-4dd2-90ea-3cabbefb0c88" + }, + "b463a27e-a692-441a-a66a-34610730ddb4": { + "doc_hash": "096aed368c276075490f7f5afeeed1a20e6861e3f025299b68381aecd88098da", + "ref_doc_id": "4290c0a3-68bf-46b8-a963-70834ce30d40" + }, + "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99": { + "doc_hash": "fe719d1dcd267eb91384cafadfe1cf15c0910e8b5c6a078233a8e34c8324a872", + "ref_doc_id": "d73a7539-5dab-4229-8697-1a8457247d95" + }, + "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72": { + "doc_hash": "3b7ec4a6e60cc4ed0c463dd3ad44d2a041fea597d0ccf5c018b49ca4a30ae712", + "ref_doc_id": "3186adb2-a93b-456c-9014-b74e712385ef" + }, + "77735169-8e6a-4805-90b5-fd8136f8f40c": { + "doc_hash": "11b51d7099311a7e5ee1c1c31ad152bfdcdb74038558d68398dc0c282266f116", + "ref_doc_id": "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d" + }, + "5135e964-9062-4dc9-87f5-78f4213b7f6b": { + "doc_hash": "dc362ddebfa53d19689c1c9b197464e50f915e2ed3026e7c6bd5aa03c4470c0d", + "ref_doc_id": "5b1021d4-fe9e-40eb-96de-d32a43140447" + }, + "a6368a15-a882-4d45-8337-5aa16131c81f": { + "doc_hash": "f3a79bfea30f0a7d29eaf096d7d34ce14aac539266637e8e61cfe90f802bb4de", + "ref_doc_id": "15bf1853-8534-448c-9b4e-11b26c0ef7a6" + }, + "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865": { + "doc_hash": "9d9673973f15d01edda51b177edef8711b7b56497e6405743fea6c1f0561632e", + "ref_doc_id": "607f4a8d-bd16-4b4f-9895-8eb8427ad64f" + }, + "6c9d3854-7c5d-4087-8fbf-29be8953f7cd": { + "doc_hash": "cc002e4af3620f6578881e18d8fde55864f74bbc3852cd024ebd758ec05a0021", + "ref_doc_id": "44b43dc1-b557-4eff-9fba-7896c635050a" + }, + "22aacff5-a1e6-48b8-87da-3bc0a6b6275b": { + "doc_hash": "a5d2f0e54f006950e47335b1e95d8a4d3fc29b01a2129754350250dd9d6e9959", + "ref_doc_id": "dcf13e3c-3703-4312-8edc-b0f117d4621d" + }, + "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed": { + "doc_hash": "43042c0d7746d9e33f65a0cc239fc0b18f995fbac02993597b00df25ba77e7eb", + "ref_doc_id": "7c3b415f-c1b0-4471-86a8-ade398a7faad" + }, + "52d0dadc-b060-48fd-9e7a-177efef38efa": { + "doc_hash": "57d0587a3c7d58004099d448279013de639d98d9d38eac03c3441a44ba4133a3", + "ref_doc_id": "d8411fc9-1c7b-4d0a-b95d-17a1e255610c" + }, + "6d4117d6-bc83-44a5-ad19-d828afa2baed": { + "doc_hash": "29f0f91201efa63855556aae59b0043e375bf920ea1d513309ec5ee55e19ed09", + "ref_doc_id": "48580fdc-e332-45f5-9d2d-147d9d022b2f" + }, + "9f93ecb7-2d49-48f8-a8a1-baa72fb39565": { + "doc_hash": "8e10ee819fec9e4c5ad9777622f4181e00bd6951277b9d8f3deee187d0807866", + "ref_doc_id": "c0ceb309-98cf-484d-9330-0f6b8b5b2fda" + }, + "4d609ec0-9a7a-46ce-a769-d2daf0141978": { + "doc_hash": "dfe46a63ff67763a941598ee32ee1712c6c1fce19f4da73671cc1729ac304253", + "ref_doc_id": "f50ac71e-4df1-4edd-b7ce-a512a5e0193c" + }, + "39b7cc27-3b1a-459c-87ac-cb805e0845d9": { + "doc_hash": "8980fd0ec7a9d5bd5f60536d54830c7f6a72d952626c49e9a3c5baafaf057b1f", + "ref_doc_id": "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6" + }, + "348b7fb0-1e7b-4f03-958e-72413469a02c": { + "doc_hash": "19f622bddfa8ed45876aee6b2d0403faf45b27c1280dda7c503471684d5279b4", + "ref_doc_id": "e958b6ee-5340-451f-b8c1-0ecab8b293ae" + }, + "aaac39b2-41ce-49a5-ac24-516f873a8dc7": { + "doc_hash": "0216161d8304c18df56009a923e31211098fa0a794424b56df1afa01a5ab9fd5", + "ref_doc_id": "6c339873-d97d-46e5-a495-1a6b0ea42dc7" + }, + "9850698b-a7f7-478c-b6b5-cfc4b75c04fa": { + "doc_hash": "83e69d5e147ece98878c859b8b2c71d575870840a17beb46a0aa506e17760bd6", + "ref_doc_id": "03dd3269-d126-4a95-81e6-c49974907666" + }, + "239e054c-bffc-4992-8627-8d9f80c066cd": { + "doc_hash": "b6a859a6c7031d23a8f2bcdf3275e43921042c7614f987debd64abc5fb1ae258", + "ref_doc_id": "c1bb2b52-a549-4578-84fe-c57c6e5d5446" + }, + "81857120-fce6-4805-a1f5-878400b46bb2": { + "doc_hash": "7d113160fae1caf85e9db2f98c3dddc6b4eb625f224cd8c82d416f730b56cede", + "ref_doc_id": "1900616f-5e01-48f1-91ec-e432ba515157" + }, + "6eee3782-64f2-49e8-9fda-c9b53e8827f1": { + "doc_hash": "5ff84b62b04f20fa0f0c53edb750a5ab3d2febb6ec0c787df858c241c9d8eafd", + "ref_doc_id": "5026023d-8ff8-43ec-8237-b36e371c2b42" + }, + "135a0c63-420e-4970-a69a-f967e1e36a40": { + "doc_hash": "739234eba940dcefa2d2fc5f76fd0053256229cd59afef885072b2d68d969c74", + "ref_doc_id": "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5" + }, + "960e584f-7c70-412b-81bc-cbe29ca6c5fa": { + "doc_hash": "8e709ab5389c85380e6b9f3ee6b201ea35b6f0a8f70c7444f1e8b92945f3b04c", + "ref_doc_id": "83b58953-3e2b-430c-ba54-04564ae2c764" + }, + "df1eae99-5b15-4b4e-bfca-c42eed6ef25b": { + "doc_hash": "75db99f67350d1bb4b78d3f8e62f681e0c0186e0fd575e2059b4d3ae67693186", + "ref_doc_id": "c95ce074-0ee7-44fb-9265-c7326923b8ad" + }, + "ea331090-3f76-40c9-af80-2bb8df1e5638": { + "doc_hash": "b032484c31a26c0e7cfa5ee60c63c68a7e2be1b831c8315e810b83029c7272f3", + "ref_doc_id": "01f5fbc0-b6d5-48c1-a788-c84272dc4c24" + }, + "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0": { + "doc_hash": "1f8e2557e2ad02ff792856075ce330305101557dfd1bcea6891b353d4b9e6711", + "ref_doc_id": "7f196e1d-f25a-42f1-8526-3d0edcc9182a" + }, + "55f0fba3-64d0-45fa-959f-de7abf3d8afe": { + "doc_hash": "2253eb4b82857a1ab03451ad882266a741083b74e53faa8cee43e115081a1dc8", + "ref_doc_id": "02842d37-142a-4115-8687-30678a03d6ca" + }, + "a081ad6b-87d5-4df2-8ffd-85afdc75a174": { + "doc_hash": "756d7723725b2468b72a08381dce060ed4cd66640b4f9d29cac1e21e37ba674c", + "ref_doc_id": "6880a3bd-3700-4428-b73d-357543a854e7" + }, + "88c08258-e948-4a2a-b0a8-e7d746e760a0": { + "doc_hash": "9160d61221a0bd8952a6af4a433547314a5c7891ebeb5c920be1ac841304b5ee", + "ref_doc_id": "6bb45b06-7c91-4f10-9550-fb02eb6c685b" + }, + "fbd23709-de50-4ee7-9fe4-b9091aad8af0": { + "doc_hash": "2b8151ef280c9090488b85b804cb054f0fd172eb4986e4911fb31980721dd4a4", + "ref_doc_id": "a5a27515-0a35-45fe-887b-4b9035eb06de" + }, + "2b48de5c-e88d-4082-b30e-95790ede9e7a": { + "doc_hash": "9d733c6b00023e046c304d2f9843de024c15acf3d3506c53d6c4b2f956fd39d8", + "ref_doc_id": "771a3b45-733d-49cb-8395-0a54423466fd" + }, + "c92dd0dc-c2d7-40d9-a9e4-36c908174d04": { + "doc_hash": "bf0a057ea84be0d93a769bec864bbc70818da2b3af22b4102e8695cdf3952dd0", + "ref_doc_id": "ea64cc92-be5c-4386-91cc-6e7d4039a2b9" + }, + "2135c16e-6e34-425c-9901-4d9d31e2239c": { + "doc_hash": "0eae4468bfe80a10a82bcf2993a2fd5820d744a37e5601303b43e38240fe8356", + "ref_doc_id": "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8" + }, + "a540806a-9e44-4c09-90a2-72ef5870e1c3": { + "doc_hash": "22de7aca8099ffebeca9cdc0c50d1c91392af2efe80ea7388620affa5acfc497", + "ref_doc_id": "5fd235a1-a085-4785-b45a-ee39fdb2cbb7" + }, + "aed67281-3a13-42b8-b9ec-2031d631c4f1": { + "doc_hash": "34b0544275c0ef8a6d2707a893d11c7976e7fed2fd29bc351316d0ed45466c63", + "ref_doc_id": "98407fd2-3fa3-4953-ac50-1364d6b8f934" + }, + "1d74e06e-21a1-4b8c-bb5c-4866a1a9531f": { + "doc_hash": "4bba61746b024fcf83aa3b02570ae5bdc4789a661d5032744603939fd14bc7aa", + "ref_doc_id": "19306ea4-0457-431a-b8ec-fdc9817e759e" + } + }, + "docstore/data": { + "8ee005f6-4244-4150-8397-38b43c51d568": { + "__data__": { + "id_": "8ee005f6-4244-4150-8397-38b43c51d568", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "e073aa57-e525-4e73-86a4-17a2e84f6c96", + "node_type": "4", + "metadata": {}, + "hash": "1b5250f7cfd509c7f37b39e5877f2aa6882e5923b1d59fecdd258376ef899bda", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b62ec4b9-7646-4d54-ab3f-a82f006e5b48", + "node_type": "1", + "metadata": {}, + "hash": "4a3633e629764e78138c8789f495777e1e0095f69f6f443a525ea00af3cf6c05", + "class_name": "RelatedNodeInfo" + } + }, + "text": "A good example of using a `transfer` method: \nThe following is correct:\n```python\np1000s.transfer(transfer_vol, src, dest_wells, new_tip='always')\n```\n\nThe following is incorrect:\n```python\nfor src in src_wells:\n p1000s.transfer(transfer_vol, src, dest_wells, new_tip='always')\n```\n\nNote that `transfer` function uses `for` implicitly.", + "start_char_idx": 0, + "end_char_idx": 338, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b62ec4b9-7646-4d54-ab3f-a82f006e5b48": { + "__data__": { + "id_": "b62ec4b9-7646-4d54-ab3f-a82f006e5b48", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa", + "node_type": "4", + "metadata": {}, + "hash": "4a3633e629764e78138c8789f495777e1e0095f69f6f443a525ea00af3cf6c05", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8ee005f6-4244-4150-8397-38b43c51d568", + "node_type": "1", + "metadata": {}, + "hash": "1b5250f7cfd509c7f37b39e5877f2aa6882e5923b1d59fecdd258376ef899bda", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c455d382-4822-4de9-99de-ed945e58c6d0", + "node_type": "1", + "metadata": {}, + "hash": "603f8df7cc0e0c561ab0494a4317e39680a25264dd3061762b28dc87b7aec904", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette on left mount, transfer 50 uL from wells A1, A2 in source labware 1\nto B6, B7 in source labware 2. Reuse the same tip for each transfer.\n\nThe following is correct:\n```python\ntransfer_vol_1 = 50 # setup volume\n\nsource_wells_1 = [source_1.wells_by_name()[wells] for wells in ['A1', 'A2']] # source setup wells\ndestination_wells_1 = [source_2.wells_by_name()[wells] for wells in ['B6', 'B7']] # destination setup wells\n\np1000s.transfer(transfer_vol_1, source_wells_1, destination_wells_1, new_tip=\"once\") # transfer function without any loop\n```\n\nThe following is not correct since it calls transfer function twice rather than once: \n```python\np300_single.transfer(50, source_labware_1.wells_by_name()['A1'], source_labware_2.wells_by_name()['B6'], new_tip='once')\np300_single.transfer(50, source_labware_1.wells_by_name()['A2'], source_labware_2.wells_by_name()['B7'], new_tip='never')\n```", + "start_char_idx": 0, + "end_char_idx": 924, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c455d382-4822-4de9-99de-ed945e58c6d0": { + "__data__": { + "id_": "c455d382-4822-4de9-99de-ed945e58c6d0", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "9fff190b-3326-4032-8337-105e18dbf698", + "node_type": "4", + "metadata": {}, + "hash": "603f8df7cc0e0c561ab0494a4317e39680a25264dd3061762b28dc87b7aec904", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b62ec4b9-7646-4d54-ab3f-a82f006e5b48", + "node_type": "1", + "metadata": {}, + "hash": "4a3633e629764e78138c8789f495777e1e0095f69f6f443a525ea00af3cf6c05", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "472c884d-6522-40ed-afef-993a922a8de6", + "node_type": "1", + "metadata": {}, + "hash": "d6e7a8920da118d40efb09a1ade6946588ac1a82cc57ef160057da70e1fbf50f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Use the left-mounted P1000 Single-Channel GEN2 pipette to transfer 200 uL of reagent from wells A7, A6, A5, A2, A3 \nof the source labware to the corresponding wells A5, A9, A1, A10, A2 of the destination labware. Use a new tip for each transfer.\n```python\nTRANSFER_VOL_1 = 200\nSRC_WELL_1 = [source.wells_by_name()[well] for well in ['A7', 'A6', 'A5', 'A2', 'A3']]\nDEST_WELL_1 = [destination.wells_by_name()[well] for well in ['A5', 'A9', 'A1', 'A10', 'A2']]\n\n# command 1\np1000s_1.transfer(TRANSFER_VOL_1, SRC_WELL_1, DEST_WELL_1, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 551, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "472c884d-6522-40ed-afef-993a922a8de6": { + "__data__": { + "id_": "472c884d-6522-40ed-afef-993a922a8de6", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "d5c99332-006a-4563-aee6-b09be7032902", + "node_type": "4", + "metadata": {}, + "hash": "d6e7a8920da118d40efb09a1ade6946588ac1a82cc57ef160057da70e1fbf50f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c455d382-4822-4de9-99de-ed945e58c6d0", + "node_type": "1", + "metadata": {}, + "hash": "603f8df7cc0e0c561ab0494a4317e39680a25264dd3061762b28dc87b7aec904", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "43408a31-702a-4ea9-9e9a-15c5d24e0040", + "node_type": "1", + "metadata": {}, + "hash": "16a5402da2fcf6fe4faead689904abd08dd561d89c3668b71a2548926c490bc0", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Use the right-mounted P1000 Single-Channel GEN2 pipette to transfer 18 uL of liquid from wells A9, A12, A6, A10, A3 \nof the source labware to the corresponding wells A7, A11, A6, A3, A9 of the destination labware. Use the same tip for all transfers.\n```python\nTRANSFER_VOL_2 = 18\nSRC_WELL_2 = [source.wells_by_name()[well] for well in ['A9', 'A12', 'A6', 'A10', 'A3']]\nDEST_WELL_2 = [source.wells_by_name()[well] for well in ['A7', 'A11', 'A6', 'A3', 'A9']]\n\n# command 2\np1000s_2.transfer(TRANSFER_VOL_2, SRC_WELL_2, DEST_WELL_2, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 549, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "43408a31-702a-4ea9-9e9a-15c5d24e0040": { + "__data__": { + "id_": "43408a31-702a-4ea9-9e9a-15c5d24e0040", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "6d7958c1-e3f9-4fc0-b435-48becf1b2a85", + "node_type": "4", + "metadata": {}, + "hash": "16a5402da2fcf6fe4faead689904abd08dd561d89c3668b71a2548926c490bc0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "472c884d-6522-40ed-afef-993a922a8de6", + "node_type": "1", + "metadata": {}, + "hash": "d6e7a8920da118d40efb09a1ade6946588ac1a82cc57ef160057da70e1fbf50f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "de188cbd-8053-4129-9d8b-18ccbec40b12", + "node_type": "1", + "metadata": {}, + "hash": "efa0cdb4c4b6359a16e4767d48cb95e5916e7dcb50cfaeac110f7010114543ba", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Single-Channel GEN2 pipette on the left mount, transfer 119 uL of reagent\nfrom first well in source labware to E12, G12, B9, A6, D7 wells in the destination labware.\nUse a new tip for each transfer.\n\n```python\nvol = 119\nsrc_well = source.wells_by_name()['A1']\ndest_wells = [destination.wells_by_name()[well] for well in ['E12', 'G12', 'B9', 'A6', 'D7']]\n\n# commands\np300s.transfer(vol, src_well, dest_wells, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 441, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "de188cbd-8053-4129-9d8b-18ccbec40b12": { + "__data__": { + "id_": "de188cbd-8053-4129-9d8b-18ccbec40b12", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "a4f30077-4d90-44d0-8c71-0460dddb61b6", + "node_type": "4", + "metadata": {}, + "hash": "efa0cdb4c4b6359a16e4767d48cb95e5916e7dcb50cfaeac110f7010114543ba", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "43408a31-702a-4ea9-9e9a-15c5d24e0040", + "node_type": "1", + "metadata": {}, + "hash": "16a5402da2fcf6fe4faead689904abd08dd561d89c3668b71a2548926c490bc0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "65081f7f-fbb2-4b98-abb2-c498ffeed3ae", + "node_type": "1", + "metadata": {}, + "hash": "dda7a008188916d4060f5dec7a50d8d8f5b10f0da6384b6d7a307a90ed575fd2", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Single Channel, transfer 13ul of reagent from the first tube of the source rack to each well in the destination plate. \nUse the same tip for each transfer.\n\n```python\n# parameters\nvol = 13\nsrc_well = source.wells_by_name()['A1']\ndest_wells = destination.wells()\n\n# commands\np20s.transfer(vol, src_well, dest_wells, new_tip='once')\n```", + "start_char_idx": 0, + "end_char_idx": 344, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "65081f7f-fbb2-4b98-abb2-c498ffeed3ae": { + "__data__": { + "id_": "65081f7f-fbb2-4b98-abb2-c498ffeed3ae", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba", + "node_type": "4", + "metadata": {}, + "hash": "dda7a008188916d4060f5dec7a50d8d8f5b10f0da6384b6d7a307a90ed575fd2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "de188cbd-8053-4129-9d8b-18ccbec40b12", + "node_type": "1", + "metadata": {}, + "hash": "efa0cdb4c4b6359a16e4767d48cb95e5916e7dcb50cfaeac110f7010114543ba", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "53f4439e-ed64-466a-b4e5-22f63fae7143", + "node_type": "1", + "metadata": {}, + "hash": "bb44f3f2b76f4a9227e0d20e2f9d9e234f70d9abcd95daf39779a6879a13c1fc", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Single Channel GEN2 pipette on right mount, transfer 16 uL from the first well of source labware 1 to each well\nin destination labware 1 and destination labware 2. Reuse the same tip\n\n```python\n# volumes setup\ntransfer_vol_1 = 16\n\n# wells setup\nsource_wells_1 = source_1.wells_by_name()['A1']\ndestination_wells_1 = destination_1.wells()\ndestination_wells_2 = destination_2.wells()\nall_destinations = destination_wells_1 + destination_wells_2\n\n# commands\np20s.transfer(transfer_vol_1, source_wells_1, all_destinations, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 547, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "53f4439e-ed64-466a-b4e5-22f63fae7143": { + "__data__": { + "id_": "53f4439e-ed64-466a-b4e5-22f63fae7143", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5d064bb1-9153-4a83-a418-ac61048f75f7", + "node_type": "4", + "metadata": {}, + "hash": "bb44f3f2b76f4a9227e0d20e2f9d9e234f70d9abcd95daf39779a6879a13c1fc", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "65081f7f-fbb2-4b98-abb2-c498ffeed3ae", + "node_type": "1", + "metadata": {}, + "hash": "dda7a008188916d4060f5dec7a50d8d8f5b10f0da6384b6d7a307a90ed575fd2", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9f951089-d568-4e58-80d0-8e52a8fc72bf", + "node_type": "1", + "metadata": {}, + "hash": "ae074f201d5c2642126a2fe4a1b8f8b79e7da0143a1604507edd1fc0f22a8b5c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Single Channel GEN2 pipette on right mount, transfer 23 uL from each well in source labware 2 to\neach well in the destination labware 1. Reuse the same tip.\n\n```python\n# volumes setup\ntransfer_vol_2 = 23\n\n# wells setup\nsource_wells_2 = source_2.wells()\ndestination_wells_1 = destination_1.wells()\n\n# commands\np20s.transfer(transfer_vol_2, source_wells_2, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 405, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9f951089-d568-4e58-80d0-8e52a8fc72bf": { + "__data__": { + "id_": "9f951089-d568-4e58-80d0-8e52a8fc72bf", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912", + "node_type": "4", + "metadata": {}, + "hash": "ae074f201d5c2642126a2fe4a1b8f8b79e7da0143a1604507edd1fc0f22a8b5c", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "53f4439e-ed64-466a-b4e5-22f63fae7143", + "node_type": "1", + "metadata": {}, + "hash": "bb44f3f2b76f4a9227e0d20e2f9d9e234f70d9abcd95daf39779a6879a13c1fc", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b1ee9aa0-c711-4ca7-89af-d49425266d7b", + "node_type": "1", + "metadata": {}, + "hash": "4a9043245828304616024eda0c96d50b2c0eb7cad12e5df48e6da39561209039", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Multi-Channel GEN2 pipette on the right mount, transfer 5 uL of reagent\nfrom first column in source labware to columns 5, 9, 1, 10, and 2 in the destination labware.\nUse the same tip everytime.\n\n```python\n# parameters\nvol = 5\nsrc_col = source.columns_by_name()['1']\ndest_cols = [destination.columns_by_name()[idx] for idx in ['5', '9', '1', '10', '2']]\n\n# commands\np20m.transfer(vol, src_col, dest_cols, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 433, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b1ee9aa0-c711-4ca7-89af-d49425266d7b": { + "__data__": { + "id_": "b1ee9aa0-c711-4ca7-89af-d49425266d7b", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5a272539-60fa-4cc2-8ed9-defb2a93ec29", + "node_type": "4", + "metadata": {}, + "hash": "4a9043245828304616024eda0c96d50b2c0eb7cad12e5df48e6da39561209039", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9f951089-d568-4e58-80d0-8e52a8fc72bf", + "node_type": "1", + "metadata": {}, + "hash": "ae074f201d5c2642126a2fe4a1b8f8b79e7da0143a1604507edd1fc0f22a8b5c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "7c6b9285-17da-4a33-b28a-7e96d60a0e9c", + "node_type": "1", + "metadata": {}, + "hash": "537df6cdae34122a0848c3a5d5005db695941895338457f10f888595834e000c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Multi-Channel GEN2 pipette on the left mount, transfer 24 uL of reagent\nfrom columns 4, 3, 6, 1, 11 in source labware to columns 5, 9, 1, 10, 2 in the same source labware.\nUse a new tip everytime.\n\n```python\n# parameters\nvol = 24\nsrc = [source.columns_by_name()[idx] for idx in ['4', '3', '6', '1', '11']]\ndest = [source.columns_by_name()[idx] for idx in ['5', '9', '1', '10', '2']]\n\n# commands\np20m.transfer(vol, src, dest, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 456, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "7c6b9285-17da-4a33-b28a-7e96d60a0e9c": { + "__data__": { + "id_": "7c6b9285-17da-4a33-b28a-7e96d60a0e9c", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "65c01335-0e19-4a6f-8589-84871945c3f1", + "node_type": "4", + "metadata": {}, + "hash": "537df6cdae34122a0848c3a5d5005db695941895338457f10f888595834e000c", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b1ee9aa0-c711-4ca7-89af-d49425266d7b", + "node_type": "1", + "metadata": {}, + "hash": "4a9043245828304616024eda0c96d50b2c0eb7cad12e5df48e6da39561209039", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "14658e25-10cf-4679-8a52-bedbc8515f4c", + "node_type": "1", + "metadata": {}, + "hash": "dd7cf4cddf320f19879d591327de664e534e5e9666a5a309321cf92d2c48a64f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Multi Channel, transfer 55 uL of sample from each column of the source plate \ninto the corresponding columns of the destination deep well plate.\nChange tips for each transfer.\n\n```python\n# parameters\nvol = 55\nsrc_cols = source.columns()\ndest_cols = destination.columns()\n\n# commands\np300m.transfer(vol, src_cols, dest_cols, new_tip='always')\n```", + "start_char_idx": 0, + "end_char_idx": 356, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "14658e25-10cf-4679-8a52-bedbc8515f4c": { + "__data__": { + "id_": "14658e25-10cf-4679-8a52-bedbc8515f4c", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f87b40d9-acd2-4f7a-adfb-68c995944c0a", + "node_type": "4", + "metadata": {}, + "hash": "dd7cf4cddf320f19879d591327de664e534e5e9666a5a309321cf92d2c48a64f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "7c6b9285-17da-4a33-b28a-7e96d60a0e9c", + "node_type": "1", + "metadata": {}, + "hash": "537df6cdae34122a0848c3a5d5005db695941895338457f10f888595834e000c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a768f0e7-ac33-46a0-b154-f561a05c9d54", + "node_type": "1", + "metadata": {}, + "hash": "a8ca134a9a512f30c679e1106488eec4a2aa674da31dd0d65f10809197621bcf", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Single Channel GEN2, transfer 70ul of reagent from the first tube of the source rack to each well in the destination plate.\nKeep the same tip for each transfer.\n\n```python\n# parameters\nvol = 70\nsrc_well = source.wells_by_name()['A1']\ndest_wells = destination.wells()\n\n# commands\np300s.transfer(vol, src_well, dest_wells, new_tip='once')\n```", + "start_char_idx": 0, + "end_char_idx": 351, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a768f0e7-ac33-46a0-b154-f561a05c9d54": { + "__data__": { + "id_": "a768f0e7-ac33-46a0-b154-f561a05c9d54", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "338dc3bd-bb8c-4917-bf43-b78ea93307cf", + "node_type": "4", + "metadata": {}, + "hash": "a8ca134a9a512f30c679e1106488eec4a2aa674da31dd0d65f10809197621bcf", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "14658e25-10cf-4679-8a52-bedbc8515f4c", + "node_type": "1", + "metadata": {}, + "hash": "dd7cf4cddf320f19879d591327de664e534e5e9666a5a309321cf92d2c48a64f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9937a4e2-dddb-4aba-9d47-b1c6da63e335", + "node_type": "1", + "metadata": {}, + "hash": "8aaf6c0d140176371c7966e53297ca5ed7be797d05d6a28d6cef27f858a9a203", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Single Channel GEN2, transfer 75ul of samples from each tube in the source tube rack to each well of the destination plate.\nUse a new tip for each transfer.\n\n```python\n# parameters\nvol = 75\nsrc_wells = source.wells()\ndest_wells = destination.wells()\n\n# commands\np300s.transfer(vol, src_wells, dest_wells, new_tip='always')\n```", + "start_char_idx": 0, + "end_char_idx": 337, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9937a4e2-dddb-4aba-9d47-b1c6da63e335": { + "__data__": { + "id_": "9937a4e2-dddb-4aba-9d47-b1c6da63e335", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "6787c86f-4310-44e7-9de7-0d2714c2406a", + "node_type": "4", + "metadata": {}, + "hash": "8aaf6c0d140176371c7966e53297ca5ed7be797d05d6a28d6cef27f858a9a203", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a768f0e7-ac33-46a0-b154-f561a05c9d54", + "node_type": "1", + "metadata": {}, + "hash": "a8ca134a9a512f30c679e1106488eec4a2aa674da31dd0d65f10809197621bcf", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e2332648-6300-46c2-b1d5-f5966f11ce80", + "node_type": "1", + "metadata": {}, + "hash": "42c424dbc6c3190ac9aa5bc47decd7a97a229e7e8891025862b5987a9b75c189", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Multi-channel pipette on the left mount, transfer 65 uL of reagent from first column in the source labware 1\nto all the columns in destination labware 1. Keep the same set of tips for this entire set of transfers within this step.\n\n```python\ntransfer_vol_1 = 65\n\n# wells setup\nsource_wells_1 = source_1.columns_by_name()['1']\ndestination_wells_1 = destination_1.columns()\n\np300m.transfer(transfer_vol_1, source_wells_1, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 471, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e2332648-6300-46c2-b1d5-f5966f11ce80": { + "__data__": { + "id_": "e2332648-6300-46c2-b1d5-f5966f11ce80", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f874e13d-4827-496d-8a5a-5e3a179dbb9a", + "node_type": "4", + "metadata": {}, + "hash": "42c424dbc6c3190ac9aa5bc47decd7a97a229e7e8891025862b5987a9b75c189", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9937a4e2-dddb-4aba-9d47-b1c6da63e335", + "node_type": "1", + "metadata": {}, + "hash": "8aaf6c0d140176371c7966e53297ca5ed7be797d05d6a28d6cef27f858a9a203", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "015aadd8-9061-4542-9d1c-6e0f3b3ec96f", + "node_type": "1", + "metadata": {}, + "hash": "80d3c0e737266c9ce8a22b1e7945269520d61fc571926987c5b433b319516b74", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P1000 Single-Channel GEN2 pipette on left mount, transfer 175.0 uL of reagent\nfrom H10, F12, D7, B1, C8 wells in source labware\nto first well in the destination labware. Use a new tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 175.0\nsrc_wells = [source.wells_by_name()[well] for well in ['H10', 'F12', 'D7', 'B1', 'C8']]\ndest_well = destination.wells_by_name()['A1']\n\n# commands\np1000s.transfer(transfer_vol, src_wells, dest_well, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 475, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "015aadd8-9061-4542-9d1c-6e0f3b3ec96f": { + "__data__": { + "id_": "015aadd8-9061-4542-9d1c-6e0f3b3ec96f", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "593bc266-2dad-46ff-91b2-2407ddcb728f", + "node_type": "4", + "metadata": {}, + "hash": "80d3c0e737266c9ce8a22b1e7945269520d61fc571926987c5b433b319516b74", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e2332648-6300-46c2-b1d5-f5966f11ce80", + "node_type": "1", + "metadata": {}, + "hash": "42c424dbc6c3190ac9aa5bc47decd7a97a229e7e8891025862b5987a9b75c189", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6", + "node_type": "1", + "metadata": {}, + "hash": "28b604d1451fe43c0ee55c9d1da3b4bfe0581eae51dcbe57f6cae6d5130135e5", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Single-channel GEN2 pipette on left mount, transfer 51 uL from wells A1, A2 in source labware 1\nto B6, B7 in source labware 2. Reuse the same tip.\n\n```python\n# volume setup\ntransfer_vol_1 = 51\n\n# well setup\nsource_wells_1 = [source_1.wells_by_name()[wells] for wells in ['A1', 'A2']]\ndestination_wells_1 = [source_2.wells_by_name()[wells] for wells in ['B6', 'B7']]\n\n# commands\np300s.transfer(transfer_vol_1, source_wells_1, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 476, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6": { + "__data__": { + "id_": "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c21d6297-441d-482c-bd53-0c2cb96c5182", + "node_type": "4", + "metadata": {}, + "hash": "28b604d1451fe43c0ee55c9d1da3b4bfe0581eae51dcbe57f6cae6d5130135e5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "015aadd8-9061-4542-9d1c-6e0f3b3ec96f", + "node_type": "1", + "metadata": {}, + "hash": "80d3c0e737266c9ce8a22b1e7945269520d61fc571926987c5b433b319516b74", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f6f713d6-68a5-45e1-aa49-aed586e59c7e", + "node_type": "1", + "metadata": {}, + "hash": "745c1b330299838a1eb6835e60e230d313f2a78a8033eb358f100606e6bdbc90", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Single-channel GEN2 pipetet on right mount, transfer 14 uL from wells C4, C6 in source labware 2\nto A3, A4 in source labware 1. Reuse the same tip.\n\n```python\n# volume setup\ntransfer_vol_2 = 14\n\n# well setup\nsource_wells_2 = [source_2.wells_by_name()[wells] for wells in ['C4', 'C6']]\ndestination_wells_2 = [source_1.wells_by_name()[wells] for wells in ['A3', 'A4']]\n\n# commands\np20s.transfer(transfer_vol_2, source_wells_2, destination_wells_2, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 475, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f6f713d6-68a5-45e1-aa49-aed586e59c7e": { + "__data__": { + "id_": "f6f713d6-68a5-45e1-aa49-aed586e59c7e", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "e2067416-8439-4c4a-b79e-dced61c5014e", + "node_type": "4", + "metadata": {}, + "hash": "745c1b330299838a1eb6835e60e230d313f2a78a8033eb358f100606e6bdbc90", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2d3fc4ca-444d-41c9-ab17-80dd6d9025b6", + "node_type": "1", + "metadata": {}, + "hash": "28b604d1451fe43c0ee55c9d1da3b4bfe0581eae51dcbe57f6cae6d5130135e5", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3667515a-1927-4b16-803c-9b93e91b7689", + "node_type": "1", + "metadata": {}, + "hash": "98843d68a0b8016483f23f6b81ee1cd42e5ff593f2e7bf573ee5006a0b5b70b2", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Single-channel GEN2 pipette on right mount, transfer 17 uL from wells B6, B7 in source labware 2 \nto A1, B1 in destination labware 1. Use a new tip each time.\n\n```python\n# volume setup\ntransfer_vol = 17\n# well setup\nsource_wells_2 = [source_2.wells_by_name()[wells] for wells in ['B6', 'B7']]\ndestination_wells_1 = [destination_1.wells_by_name()[wells] for wells in ['A1', 'B1']]\n# commands\np20s.transfer(transfer_vol, source_wells_2, destination_wells_1, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 487, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3667515a-1927-4b16-803c-9b93e91b7689": { + "__data__": { + "id_": "3667515a-1927-4b16-803c-9b93e91b7689", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "063c3711-676f-434c-b740-31157b4a3bf1", + "node_type": "4", + "metadata": {}, + "hash": "98843d68a0b8016483f23f6b81ee1cd42e5ff593f2e7bf573ee5006a0b5b70b2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f6f713d6-68a5-45e1-aa49-aed586e59c7e", + "node_type": "1", + "metadata": {}, + "hash": "745c1b330299838a1eb6835e60e230d313f2a78a8033eb358f100606e6bdbc90", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "142927a5-1925-4ba1-b05d-67ad5f108340", + "node_type": "1", + "metadata": {}, + "hash": "fb5dafb10fa27fa861ff1de8b77afa27433b454f41a38661d1e658ec272d7d00", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Single-channel GEN2 pipette on right mount, transfer 15 uL from wells C4, C6 in source labware 2\nto A1, B1 in destination labware 2. Use a new tip each time.\n\n```python\n# volume setup\ntransfer_vol = 15\n\n# well setup\nsource_wells_2 = [source_2.wells_by_name()[wells] for wells in ['C4', 'C6']]\ndestination_wells_2 = [destination_2.wells_by_name()[wells] for wells in ['A1', 'B1']]\n\n# commands\np20s.transfer(transfer_vol, source_wells_2, destination_wells_2, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 489, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "142927a5-1925-4ba1-b05d-67ad5f108340": { + "__data__": { + "id_": "142927a5-1925-4ba1-b05d-67ad5f108340", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "72907f82-fce1-453d-996d-f28d49f8da02", + "node_type": "4", + "metadata": {}, + "hash": "fb5dafb10fa27fa861ff1de8b77afa27433b454f41a38661d1e658ec272d7d00", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3667515a-1927-4b16-803c-9b93e91b7689", + "node_type": "1", + "metadata": {}, + "hash": "98843d68a0b8016483f23f6b81ee1cd42e5ff593f2e7bf573ee5006a0b5b70b2", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d7ba5df5-4220-447e-b9ee-4506ddd585ca", + "node_type": "1", + "metadata": {}, + "hash": "fcb253bb3e1e4fe88695264aa52c8a860ee9988f3e6779c0e8946b3863c28019", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using the P300 Single-Channel GEN2, pool [transfer_vol]ul from all tubes in source labware into A1 of the destination labware.\nChange tips between each tube.\n\n```python\n# well setup\nsource_wells = source.wells()\ndestination_wells = [destination.wells_by_name()[wells] for wells in ['A1']]\n# Transfer samples\np300_single.transfer(transfer_vol, source_wells, destination_wells, new_tip='always')\n```", + "start_char_idx": 0, + "end_char_idx": 397, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d7ba5df5-4220-447e-b9ee-4506ddd585ca": { + "__data__": { + "id_": "d7ba5df5-4220-447e-b9ee-4506ddd585ca", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c11ba473-1778-4590-b1f3-11a3aa5b84cf", + "node_type": "4", + "metadata": {}, + "hash": "fcb253bb3e1e4fe88695264aa52c8a860ee9988f3e6779c0e8946b3863c28019", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "142927a5-1925-4ba1-b05d-67ad5f108340", + "node_type": "1", + "metadata": {}, + "hash": "fb5dafb10fa27fa861ff1de8b77afa27433b454f41a38661d1e658ec272d7d00", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0308889d-fbbc-401a-88d1-998060d1c644", + "node_type": "1", + "metadata": {}, + "hash": "637aec339ed511758a9b3fba28a0e539972a1791aac9cf4eb5b8c719452aa779", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 single-channel GEN2 pipette, pool 95 uL of liquid from all the wells in source labware 1 to\nthe first well in destination labware 1. Use the same tip throughout.\n\n```python\n# volume setup\ntransfer_vol_1 = 95\n# wells setup\nsource_wells_1 = source_1.wells()\ndestination_wells_1 = destination_1.wells_by_name()['A1']\n\n# commands\np300s.transfer(transfer_vol_1, source_wells_1, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 424, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0308889d-fbbc-401a-88d1-998060d1c644": { + "__data__": { + "id_": "0308889d-fbbc-401a-88d1-998060d1c644", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "8f6a1986-dc74-43f5-a73c-fae0b39f63d5", + "node_type": "4", + "metadata": {}, + "hash": "637aec339ed511758a9b3fba28a0e539972a1791aac9cf4eb5b8c719452aa779", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d7ba5df5-4220-447e-b9ee-4506ddd585ca", + "node_type": "1", + "metadata": {}, + "hash": "fcb253bb3e1e4fe88695264aa52c8a860ee9988f3e6779c0e8946b3863c28019", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "7b7305d6-06d3-45c3-a5f1-48efe2b8822b", + "node_type": "1", + "metadata": {}, + "hash": "f8dc479d1dd6b85331c0117ee729c6f4ca2dc44ebae343aba54136b29ec04ab3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using the P20 Multi-Channel GEN2 pipette on the right mount, transfer 3 uL of reagent from the first column in the source labware \nto columns 5, 9, 1, 10, 2 in the destination labware. Use a new set of tips for each transfer.\n\n```python\n# parameters\ntransfer_vol = 3\nsrc_col = source.columns_by_name()['1']\ndest_cols = [destination.columns_by_name()[idx] for idx in ['5', '9', '1', '10', '2']]\n\n# commands\np20m.transfer(transfer_vol, src_col, dest_cols, new_tip='always')\n```", + "start_char_idx": 0, + "end_char_idx": 475, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "7b7305d6-06d3-45c3-a5f1-48efe2b8822b": { + "__data__": { + "id_": "7b7305d6-06d3-45c3-a5f1-48efe2b8822b", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "a9e9bd4b-c290-4c60-8851-3e2afccff780", + "node_type": "4", + "metadata": {}, + "hash": "f8dc479d1dd6b85331c0117ee729c6f4ca2dc44ebae343aba54136b29ec04ab3", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0308889d-fbbc-401a-88d1-998060d1c644", + "node_type": "1", + "metadata": {}, + "hash": "637aec339ed511758a9b3fba28a0e539972a1791aac9cf4eb5b8c719452aa779", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "85c3ec39-c43e-47ee-9a60-ce18351fb179", + "node_type": "1", + "metadata": {}, + "hash": "a9580bc5cf3fc438970718d21214ecfaa025f2aa20f097a4ec55092c2204341c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using the P20 Multi-Channel GEN2 pipette on the right mount, transfer 8 uL of reagent from source columns 4, 3, 6, 1, \nand 11 to columns 5, 9, 1, 10, and 2 in the destination labware. Use the same set of tips for all transfers.\n\n```python\n# parameters\ntransfer_vol = 8\nsrc_cols = [source.columns_by_name()[idx] for idx in ['4', '3', '6', '1', '11']]\ndest_cols = [destination.columns_by_name()[idx] for idx in ['5', '9', '1', '10', '2']]\n\n# commands\np20m.transfer(transfer_vol, src_cols, dest_cols, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 517, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "85c3ec39-c43e-47ee-9a60-ce18351fb179": { + "__data__": { + "id_": "85c3ec39-c43e-47ee-9a60-ce18351fb179", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "239d3466-8ebd-44f3-83a0-f0a84a9399ef", + "node_type": "4", + "metadata": {}, + "hash": "a9580bc5cf3fc438970718d21214ecfaa025f2aa20f097a4ec55092c2204341c", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "7b7305d6-06d3-45c3-a5f1-48efe2b8822b", + "node_type": "1", + "metadata": {}, + "hash": "f8dc479d1dd6b85331c0117ee729c6f4ca2dc44ebae343aba54136b29ec04ab3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9", + "node_type": "1", + "metadata": {}, + "hash": "b8f44dd1c1e85b70ae7dfa4132f0afe8924cddf149ffd0fcd1bc9b9a58d7fcf6", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Multi-Channel GEN2 pipette on the left mount, transfer 38 uL of reagent from 4, 3, 6, 1, 11 \ncolumns in the source labware to 5, 9, 1, 10, 2 columns in the destination labware. Use a new tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 38\nsrc_cols = [source.columns_by_name()[idx] for idx in ['4', '3', '6', '1', '11']]\ndest_cols = [destination.columns_by_name()[idx] for idx in ['5', '9', '1', '10', '2']]\n\n# commands\np300m.transfer(transfer_vol, src_cols, dest_cols, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 520, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9": { + "__data__": { + "id_": "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7146cbb8-0e24-498a-85eb-118da108ba79", + "node_type": "4", + "metadata": {}, + "hash": "b8f44dd1c1e85b70ae7dfa4132f0afe8924cddf149ffd0fcd1bc9b9a58d7fcf6", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "85c3ec39-c43e-47ee-9a60-ce18351fb179", + "node_type": "1", + "metadata": {}, + "hash": "a9580bc5cf3fc438970718d21214ecfaa025f2aa20f097a4ec55092c2204341c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8ac0adf3-cc9a-46bd-974d-a948fad3c944", + "node_type": "1", + "metadata": {}, + "hash": "9cd255f45ac40e30a8e719ab173c28505aba8cc34cba34ec6f440c9ddd661c32", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P20 Single GEN2 pipette on the right mount, transfer 10 uL of reagent\nfrom the first well of source labware 2 to all the wells in the destination labware. Reuse the same tip.\n\n```python\n# volumes setup\ntransfer_vol_1 = 10\n# wells setup\nsource_wells_2 = source_labware_2.wells_by_name()['A1']\ndestination_wells_1 = [dest.wells() for dest in destination_list] # a list of destinations \n# commands\np20s.transfer(transfer_vol_1, source_wells_2, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 488, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8ac0adf3-cc9a-46bd-974d-a948fad3c944": { + "__data__": { + "id_": "8ac0adf3-cc9a-46bd-974d-a948fad3c944", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "a20f90ff-e847-470f-ac6a-c5e2faf27a4b", + "node_type": "4", + "metadata": {}, + "hash": "9cd255f45ac40e30a8e719ab173c28505aba8cc34cba34ec6f440c9ddd661c32", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "7bb6d9c2-1fff-480e-af0b-394d5fc50ed9", + "node_type": "1", + "metadata": {}, + "hash": "b8f44dd1c1e85b70ae7dfa4132f0afe8924cddf149ffd0fcd1bc9b9a58d7fcf6", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9f536e57-d021-4982-9bc4-40dc7be00ac0", + "node_type": "1", + "metadata": {}, + "hash": "f46fd76a89e92edc1a7d3619ab9e80ef7ca5644082dfd0bb2ec7c8621c8cc074", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using P300 Single GEN2 on the left mount, perform a well to well transfer of 90 uL from source\nlabware to the destination labware. Use a new tip each time.\n\n```python\n# volumes setup\ntransfer_vol\n# wells setup\nsource_wells = [src.wells() for src in source_labware]\ndestination_wells = [dest.wells() for dest in destination_list] # a list of destinations\n# commands\np300s.transfer([transfer_vol], source_wells, destination_wells, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 450, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9f536e57-d021-4982-9bc4-40dc7be00ac0": { + "__data__": { + "id_": "9f536e57-d021-4982-9bc4-40dc7be00ac0", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "589ddbac-899a-4953-9f20-945503678b04", + "node_type": "4", + "metadata": {}, + "hash": "f46fd76a89e92edc1a7d3619ab9e80ef7ca5644082dfd0bb2ec7c8621c8cc074", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8ac0adf3-cc9a-46bd-974d-a948fad3c944", + "node_type": "1", + "metadata": {}, + "hash": "9cd255f45ac40e30a8e719ab173c28505aba8cc34cba34ec6f440c9ddd661c32", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d503eb6e-392f-42be-9cfa-db7518dce2c5", + "node_type": "1", + "metadata": {}, + "hash": "cbd3385e447f5b37ea54fc9c6d9cb7d3579d9069e8db5cfaf4e4a2e9855b2b42", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette on left mount,\ntransfer 186.0 uL of reagent from A7, A6, A5, A2, A3 of the source labware to A5, A9, A1, A10, A2 the destination labware.\nUse a new tip for all transfers.\n\n```python\n# parameters\nTRANSFER_VOL = 186.0\nSRC_WELLS = [source.wells_by_name()[well] for well in ['A7', 'A6', 'A5', 'A2', 'A3']]\nDEST_WELLS = [destination.wells_by_name()[well] for well in ['A5', 'A9', 'A1', 'A10', 'A2']]\n\n# command 1\np1000s_1.transfer(TRANSFER_VOL, SRC_WELLS, DEST_WELLS, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 521, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d503eb6e-392f-42be-9cfa-db7518dce2c5": { + "__data__": { + "id_": "d503eb6e-392f-42be-9cfa-db7518dce2c5", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "51774bff-dad7-40d9-9397-4811b534f7af", + "node_type": "4", + "metadata": {}, + "hash": "cbd3385e447f5b37ea54fc9c6d9cb7d3579d9069e8db5cfaf4e4a2e9855b2b42", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9f536e57-d021-4982-9bc4-40dc7be00ac0", + "node_type": "1", + "metadata": {}, + "hash": "f46fd76a89e92edc1a7d3619ab9e80ef7ca5644082dfd0bb2ec7c8621c8cc074", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "36817ce8-f818-4583-a780-4cd4d2273a7f", + "node_type": "1", + "metadata": {}, + "hash": "9207e5bc837db6076ed4276c809b08018adf30081e564d496e8d99f2b3c966e1", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Use Flex 1-Channel 1000 uL Pipette on right mount,\ntransfer 10 uL of liquid from A9, A12, A6, A10, A3 of source labware to A7, A11, A6, A3, A9 of the destination labware.\nUse the same tip for all transfers.\n\n```python\n# parameters\nTRANSFER_VOL = 10\n# well setup\nSRC_WELLS = [source.wells_by_name()[well] for well in ['A9', 'A12', 'A6', 'A10', 'A3']]\n = [destination.wells_by_name()[well] for well in ['A7', 'A11', 'A6', 'A3', 'A9']]\n\n# command 1\n[pipette object].transfer(TRANSFER_VOL, SRC_WELLS, DEST_WELLS, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 528, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "36817ce8-f818-4583-a780-4cd4d2273a7f": { + "__data__": { + "id_": "36817ce8-f818-4583-a780-4cd4d2273a7f", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "3e772827-f248-4bda-a9de-f03fc494ec9f", + "node_type": "4", + "metadata": {}, + "hash": "9207e5bc837db6076ed4276c809b08018adf30081e564d496e8d99f2b3c966e1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d503eb6e-392f-42be-9cfa-db7518dce2c5", + "node_type": "1", + "metadata": {}, + "hash": "cbd3385e447f5b37ea54fc9c6d9cb7d3579d9069e8db5cfaf4e4a2e9855b2b42", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d", + "node_type": "1", + "metadata": {}, + "hash": "3175a1225c3ce5923bff32ae52e0b4b37f0e97c92ab8aaaf8830e9013059a7bf", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette on left mount, transfer 127.0 uL of reagent from the first well in source labware \nto E12, G12, B9, A6, D7 wells in the destination labware. Use a new tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 127.0\nsrc_well = source.wells_by_name()['A1']\ndest_wells = [destination[well] for well in ['E12', 'G12', 'B9', 'A6', 'D7']]\n\n# commands\n[pipette object].transfer(transfer_vol, src_well, dest_wells, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 470, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d": { + "__data__": { + "id_": "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4", + "node_type": "4", + "metadata": {}, + "hash": "3175a1225c3ce5923bff32ae52e0b4b37f0e97c92ab8aaaf8830e9013059a7bf", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "36817ce8-f818-4583-a780-4cd4d2273a7f", + "node_type": "1", + "metadata": {}, + "hash": "9207e5bc837db6076ed4276c809b08018adf30081e564d496e8d99f2b3c966e1", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1a47a74d-b663-42ed-bb64-ec02a36930eb", + "node_type": "1", + "metadata": {}, + "hash": "83303ff35700d8aa3e839b23c483f95de1fe8a91f0004db53318c6175e4e68d9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 50 uL Pipette, transfer 2ul of reagent from the first tube of the source rack to each well in the destination plate.\nUse the same tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 2\nsrc_well = source.wells_by_name()['A1']\ndest_wells = destination.wells()\n\n# commands\np50s.transfer(transfer_vol, src_well, dest_wells, new_tip='once')\n```", + "start_char_idx": 0, + "end_char_idx": 369, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1a47a74d-b663-42ed-bb64-ec02a36930eb": { + "__data__": { + "id_": "1a47a74d-b663-42ed-bb64-ec02a36930eb", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1875a318-4714-4d3c-9823-44fc04fdb80e", + "node_type": "4", + "metadata": {}, + "hash": "83303ff35700d8aa3e839b23c483f95de1fe8a91f0004db53318c6175e4e68d9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8dbc6456-9c2f-47cc-8485-c96d34aa3b1d", + "node_type": "1", + "metadata": {}, + "hash": "3175a1225c3ce5923bff32ae52e0b4b37f0e97c92ab8aaaf8830e9013059a7bf", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1fd73fc0-2038-4b6e-8a5d-05c8c2708670", + "node_type": "1", + "metadata": {}, + "hash": "6ab2b11fd876c93b00e2a5c398a4daab3546d3929b48958ab947a4dfa898754a", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using the Flex 1-Channel 50 uL Pipette, transfer 25 uL from the first well of source labware 1 to each well\nin destination labware 1 and destination labware 2. Use the same tip for each transfer.\n\n```python\n# volumes setup\ntransfer_vol_1 = 25\n\n# wells setup\nsource_wells_1 = source_1.wells_by_name()['A1']\ndestination_wells_1 = destination_1.wells()\ndestination_wells_2 = destination_2.wells()\nall_dest = destination_wells_1+destination_wells_2\n\n# commands\np50s.transfer(transfer_vol_1, source_wells_1, all_dest, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 532, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1fd73fc0-2038-4b6e-8a5d-05c8c2708670": { + "__data__": { + "id_": "1fd73fc0-2038-4b6e-8a5d-05c8c2708670", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "53b7c8e9-4038-484a-9959-f8ba0c74cae4", + "node_type": "4", + "metadata": {}, + "hash": "6ab2b11fd876c93b00e2a5c398a4daab3546d3929b48958ab947a4dfa898754a", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1a47a74d-b663-42ed-bb64-ec02a36930eb", + "node_type": "1", + "metadata": {}, + "hash": "83303ff35700d8aa3e839b23c483f95de1fe8a91f0004db53318c6175e4e68d9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d", + "node_type": "1", + "metadata": {}, + "hash": "6144691d1acabb843fce3587eedfcf992277cb11f2a96f0b44ec8be0795b5048", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 8-Channel 50 uL Pipette on right mount, transfer 5 uL of reagent from the first column in source labware \nto columns 4, 8, 1, 9, and 2 in the destination labware. Use the same tip for all transfers.\n\n```python\n# parameters\ntransfer_vol = 5\nsrc_col = source.columns_by_name()['1']\ndest_cols = [destination.columns_by_name()[idx] for idx in ['4', '8', '1', '9', '2']]\n\n# commands\np50m.transfer(transfer_vol, src_col, dest_cols, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 456, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d": { + "__data__": { + "id_": "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "8dd08508-a0e8-453c-a261-bbfe9b400fb6", + "node_type": "4", + "metadata": {}, + "hash": "6144691d1acabb843fce3587eedfcf992277cb11f2a96f0b44ec8be0795b5048", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1fd73fc0-2038-4b6e-8a5d-05c8c2708670", + "node_type": "1", + "metadata": {}, + "hash": "6ab2b11fd876c93b00e2a5c398a4daab3546d3929b48958ab947a4dfa898754a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3ceb959b-c18c-4b87-9ad6-57cd094ea347", + "node_type": "1", + "metadata": {}, + "hash": "1cc917aacdc623d2b1cb84f915ff5264efca053c71cb4863c8b9c4960e55185b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 8-Channel 50 uL Pipette on left mount, transfer 24.0 uL of reagent from columns 3, 2, 5, 1, 10 \nto columns 4, 8, 1, 9, 2 in the same source labware. Use a new tip for each transfer.\n\n```python\n#parameters\ntransfer_vol = 24.0\nsrc_cols = [source.columns_by_name()[idx] for idx in ['3', '2', '5', '1', '10']]\ndest_cols = [source.columns_by_name()[idx] for idx in ['4', '8', '1', '9', '2']]\n\n# commands\np50m.transfer(transfer_vol, src_cols, dest_cols, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 481, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3ceb959b-c18c-4b87-9ad6-57cd094ea347": { + "__data__": { + "id_": "3ceb959b-c18c-4b87-9ad6-57cd094ea347", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b", + "node_type": "4", + "metadata": {}, + "hash": "1cc917aacdc623d2b1cb84f915ff5264efca053c71cb4863c8b9c4960e55185b", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d1ac497c-fd25-43c8-92f7-1ddbf4876a6d", + "node_type": "1", + "metadata": {}, + "hash": "6144691d1acabb843fce3587eedfcf992277cb11f2a96f0b44ec8be0795b5048", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "85674089-ac2b-4e17-bcbd-8a26e52e0479", + "node_type": "1", + "metadata": {}, + "hash": "e6ff43c0c50437d277582ac958b5f356a044690e22f42440f41139e742767823", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 8-Channel 1000 uL Pipette , transfer 70ul of sample from each well of the first column of the source plate into the first column of\nthe destination plate. Use a new tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 70\nsrc_col = source.columns_by_name()['1']\ndest_col = destination.columns_by_name()['1']\n\n# commands\np1000m.transfer(transfer_vol, src_col, dest_col, new_tip='always')\n```", + "start_char_idx": 0, + "end_char_idx": 409, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "85674089-ac2b-4e17-bcbd-8a26e52e0479": { + "__data__": { + "id_": "85674089-ac2b-4e17-bcbd-8a26e52e0479", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "dffac31e-407e-4db7-b748-eb0c3bde79be", + "node_type": "4", + "metadata": {}, + "hash": "e6ff43c0c50437d277582ac958b5f356a044690e22f42440f41139e742767823", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3ceb959b-c18c-4b87-9ad6-57cd094ea347", + "node_type": "1", + "metadata": {}, + "hash": "1cc917aacdc623d2b1cb84f915ff5264efca053c71cb4863c8b9c4960e55185b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c93eb83d-f192-4d6a-8804-f9fe024fc9b3", + "node_type": "1", + "metadata": {}, + "hash": "96dd04ac5ad6d52468c444c35f7440bb417f254cc747cf8d37368bee5318aaab", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 80ul of reagent from the first tube of the source rack to each well in the destination plate.\nUse the same tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 80\nsrc_well = source.wells_by_name()['A1']\ndest_wells = destination.wells()\n\n# commands\np1000s.transfer(transfer_vol, src_well, dest_wells, new_tip='once')\n```", + "start_char_idx": 0, + "end_char_idx": 337, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c93eb83d-f192-4d6a-8804-f9fe024fc9b3": { + "__data__": { + "id_": "c93eb83d-f192-4d6a-8804-f9fe024fc9b3", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e", + "node_type": "4", + "metadata": {}, + "hash": "96dd04ac5ad6d52468c444c35f7440bb417f254cc747cf8d37368bee5318aaab", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "85674089-ac2b-4e17-bcbd-8a26e52e0479", + "node_type": "1", + "metadata": {}, + "hash": "e6ff43c0c50437d277582ac958b5f356a044690e22f42440f41139e742767823", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "dd980b9d-c087-47af-a05e-e4f9293d6b00", + "node_type": "1", + "metadata": {}, + "hash": "b9046aab61c034be75844a131dcddc42c030f35e2b9dd66f96917079fb4c8b27", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette, aliquot 190 ul of samples from each tube in the source tube rack to \nall wells of the destination plate evenly. Use a new tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 190\nsrc_wells = source.wells()\ndest_wells = destination.wells()\n\n# commands\np1000s.transfer(transfer_vol, src_wells, dest_wells, new_tip='always')\n```", + "start_char_idx": 0, + "end_char_idx": 372, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "dd980b9d-c087-47af-a05e-e4f9293d6b00": { + "__data__": { + "id_": "dd980b9d-c087-47af-a05e-e4f9293d6b00", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5", + "node_type": "4", + "metadata": {}, + "hash": "b9046aab61c034be75844a131dcddc42c030f35e2b9dd66f96917079fb4c8b27", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c93eb83d-f192-4d6a-8804-f9fe024fc9b3", + "node_type": "1", + "metadata": {}, + "hash": "96dd04ac5ad6d52468c444c35f7440bb417f254cc747cf8d37368bee5318aaab", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "71a0db5b-8b05-43cb-a292-f738bf7f2a17", + "node_type": "1", + "metadata": {}, + "hash": "a2025b2941859e542cf2891c2e728a27c9fb9babae387ea89ca8eae90235de11", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 8-Channel 1000 uL Pipette on left mount, transfer 40 uL from the first column in the source labware 1 \nto the first column in destination labware 1. Keep the same tip for this entire set of transfers within this step.\n\n```python\n# volumes setup\ntransfer_vol_1 = 40\n# wells setup\nsource_wells_1 = source_1.columns_by_name()['1']\ndestination_wells_1 = destination_1.columns_by_name()['1']\np1000m.transfer(transfer_vol_1, source_wells_1, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 487, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "71a0db5b-8b05-43cb-a292-f738bf7f2a17": { + "__data__": { + "id_": "71a0db5b-8b05-43cb-a292-f738bf7f2a17", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "9bfba4d9-ed41-44c0-8d14-473969cd5dc4", + "node_type": "4", + "metadata": {}, + "hash": "a2025b2941859e542cf2891c2e728a27c9fb9babae387ea89ca8eae90235de11", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "dd980b9d-c087-47af-a05e-e4f9293d6b00", + "node_type": "1", + "metadata": {}, + "hash": "b9046aab61c034be75844a131dcddc42c030f35e2b9dd66f96917079fb4c8b27", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c", + "node_type": "1", + "metadata": {}, + "hash": "742de29f29acaa815b05ac250a863eaee98a779fc2f9a862ec64162be6b9126c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette on left mount, transfer 197 uL of reagent\nfrom H10, F12, D7, B1, C8 wells in source labware to the first well in the destination labware.\nUse a new tip for each transfer.\n\n```python\n# parameters\ntransfer_vol = 197\nsrc_wells = [source.wells_by_name()[well] for well in ['H10', 'F12', 'D7', 'B1', 'C8']]\ndest_well = destination.wells_by_name()['A1']\n\n# commands\np1000s.transfer(transfer_vol, src_wells, dest_well, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 471, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c": { + "__data__": { + "id_": "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "0796653b-31f7-4304-8d36-b504494351bc", + "node_type": "4", + "metadata": {}, + "hash": "742de29f29acaa815b05ac250a863eaee98a779fc2f9a862ec64162be6b9126c", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "71a0db5b-8b05-43cb-a292-f738bf7f2a17", + "node_type": "1", + "metadata": {}, + "hash": "a2025b2941859e542cf2891c2e728a27c9fb9babae387ea89ca8eae90235de11", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8bc678cb-61e4-40fd-ab1e-8fed5858f750", + "node_type": "1", + "metadata": {}, + "hash": "f86b83ca1a22d1371c3c12f9f5357d5aa1179986fba9926adcdb8efb5eaa3367", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette on left mount, transfer 52 uL from wells A1, A2 in source labware 1\nto B6, B7 in source labware 2. Reuse the same tip for each transfer.\n\n```python\n# volume setup\ntransfer_vol_1 = 52\n\n# well setup\nsource_wells_1 = [source_1.wells_by_name()[wells] for wells in ['A1', 'A2']]\ndestination_wells_1 = [source_2.wells_by_name()[wells] for wells in ['B6', 'B7']]\n\n# commands\np1000s.transfer(transfer_vol_1, source_wells_1, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 493, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8bc678cb-61e4-40fd-ab1e-8fed5858f750": { + "__data__": { + "id_": "8bc678cb-61e4-40fd-ab1e-8fed5858f750", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7668d899-32f4-400d-a3bc-0fbcbbd0cb95", + "node_type": "4", + "metadata": {}, + "hash": "f86b83ca1a22d1371c3c12f9f5357d5aa1179986fba9926adcdb8efb5eaa3367", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c", + "node_type": "1", + "metadata": {}, + "hash": "742de29f29acaa815b05ac250a863eaee98a779fc2f9a862ec64162be6b9126c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a04d77c2-9ee7-4fce-a10e-6deba2887435", + "node_type": "1", + "metadata": {}, + "hash": "c8fdd091ffad8a366ac609b005bfa9b77b76a950e64ed9f80d4e730e5abcd333", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 50 uL Pipette on right mount, transfer 20 uL from wells B6, B7 in source labware 2\nto A1, B1 in destination labware 1. Use a new tip for each transfer.\n\n```python\n# volume setup\ntransfer_vol_3 = 20\n\n# well setup\nsource_wells_3 = [source_2.wells_by_name()[wells] for wells in ['B6', 'B7']]\ndestination_wells_3 = [destination_1.wells_by_name()[wells] for wells in ['A1', 'B1']]\n\n# commands\np50s.transfer(transfer_vol_3, source_wells_3, destination_wells_3, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 497, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a04d77c2-9ee7-4fce-a10e-6deba2887435": { + "__data__": { + "id_": "a04d77c2-9ee7-4fce-a10e-6deba2887435", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d", + "node_type": "4", + "metadata": {}, + "hash": "c8fdd091ffad8a366ac609b005bfa9b77b76a950e64ed9f80d4e730e5abcd333", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8bc678cb-61e4-40fd-ab1e-8fed5858f750", + "node_type": "1", + "metadata": {}, + "hash": "f86b83ca1a22d1371c3c12f9f5357d5aa1179986fba9926adcdb8efb5eaa3367", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "df073b45-a9b0-4904-9148-43b9d1d631d2", + "node_type": "1", + "metadata": {}, + "hash": "1b8d2b55e64bc526d2522e815d176b34a238f0e3b5621a3dfb72618625bc0e3e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette , pool 25ul from all tubes in source labware1 into A1 of the destination labware. \nChange tips between each tube.\n\n```python\nvol = 25\nsource_wells = source_labware1.wells()\ndest_well = destination_labware.wells_by_name()['A1']\n\np1000s.transfer(vol, source_wells, dest_well, new_tip='always')\n```", + "start_char_idx": 0, + "end_char_idx": 332, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "df073b45-a9b0-4904-9148-43b9d1d631d2": { + "__data__": { + "id_": "df073b45-a9b0-4904-9148-43b9d1d631d2", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "054eeaa3-1184-48bf-bcba-b9818dcd1460", + "node_type": "4", + "metadata": {}, + "hash": "1b8d2b55e64bc526d2522e815d176b34a238f0e3b5621a3dfb72618625bc0e3e", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a04d77c2-9ee7-4fce-a10e-6deba2887435", + "node_type": "1", + "metadata": {}, + "hash": "c8fdd091ffad8a366ac609b005bfa9b77b76a950e64ed9f80d4e730e5abcd333", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "74df844b-7eff-4914-a518-ec5b4bfa7c38", + "node_type": "1", + "metadata": {}, + "hash": "f138983c85282b09dea7f83df146a08408dbe7bbb42f8e24e5fdd448241b6a7d", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette, pool 90 uL of liquid from all the wells in source labware 1 to\nthe first well in destination labware 1. Reuse the same tip.\n\n\n```python\n# volume setup\ntransfer_vol_1 = 90\n# wells setup\nsource_wells_1 = source_1.wells()\ndestination_wells_1 = destination_1.wells_by_name()['A1']\n# commands\np1000s.transfer(transfer_vol_1, source_wells_1, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 414, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "74df844b-7eff-4914-a518-ec5b4bfa7c38": { + "__data__": { + "id_": "74df844b-7eff-4914-a518-ec5b4bfa7c38", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "d4e51f31-9576-4cce-9a5d-ab990a67d246", + "node_type": "4", + "metadata": {}, + "hash": "f138983c85282b09dea7f83df146a08408dbe7bbb42f8e24e5fdd448241b6a7d", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "df073b45-a9b0-4904-9148-43b9d1d631d2", + "node_type": "1", + "metadata": {}, + "hash": "1b8d2b55e64bc526d2522e815d176b34a238f0e3b5621a3dfb72618625bc0e3e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "10b3958c-31b3-45bc-b6c5-8f633558f400", + "node_type": "1", + "metadata": {}, + "hash": "7c41107a33734f661d097d088e8d82543eb15d10f74087825fcc20fc792ceb6a", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 8-Channel 50 uL Pipette on right mount, transfer 7 uL of reagent from the first column in source labware to \n4, 8, 1, 9, and 2 columns in the destination labware. Use a new tip for each transfer.\n\n```python\n#parameters\ntransfer_vol = 7\nsrc_col = source.columns_by_name()['1']\ndest_cols = [destination.columns_by_name()[idx] for idx in ['4', '8', '1', '9', '2']]\n\n# commands\np50m.transfer(transfer_vol, src_col, dest_cols, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 454, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "10b3958c-31b3-45bc-b6c5-8f633558f400": { + "__data__": { + "id_": "10b3958c-31b3-45bc-b6c5-8f633558f400", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2fadf236-b58c-4e5f-8564-f3ba31eb3c78", + "node_type": "4", + "metadata": {}, + "hash": "7c41107a33734f661d097d088e8d82543eb15d10f74087825fcc20fc792ceb6a", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "74df844b-7eff-4914-a518-ec5b4bfa7c38", + "node_type": "1", + "metadata": {}, + "hash": "f138983c85282b09dea7f83df146a08408dbe7bbb42f8e24e5fdd448241b6a7d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "98088bbe-3045-4978-8093-b2ce06830843", + "node_type": "1", + "metadata": {}, + "hash": "c320b0146037910c87fa4c08cdcb0049d1f2c7600b67a992b83de61fc9332c9f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 8-Channel 50 uL Pipette on right mount, transfer 6 uL of reagent from 4, 3, 6, 1, 11 columns in source labware \nto 5, 9, 1, 10, 2 columns in the destination labware. Using the same tip for all transfers.\n\n\n```python\n# parameters\ntransfer_vol = 6\nsrc_cols = [source.columns_by_name()[idx] for idx in ['4', '3', '6', '1', '11']]\ndest_cols = [destination.columns_by_name()[idx] for idx in ['5', '9', '1', '10', '2']]\n\n# commands\np50m.transfer(transfer_vol, src_cols, dest_cols, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 505, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "98088bbe-3045-4978-8093-b2ce06830843": { + "__data__": { + "id_": "98088bbe-3045-4978-8093-b2ce06830843", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "6dad88fc-3d36-45ad-b54b-e67d7dac95eb", + "node_type": "4", + "metadata": {}, + "hash": "c320b0146037910c87fa4c08cdcb0049d1f2c7600b67a992b83de61fc9332c9f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "10b3958c-31b3-45bc-b6c5-8f633558f400", + "node_type": "1", + "metadata": {}, + "hash": "7c41107a33734f661d097d088e8d82543eb15d10f74087825fcc20fc792ceb6a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "40193ed8-343f-4536-b10c-0458b2fc74de", + "node_type": "1", + "metadata": {}, + "hash": "4c989d7885fd5493b34d5dec1ff7cd5bee11e42162fbadc08066163768c5459f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 8-Channel 1000 uL Pipette on left mount, transfer 78 uL of reagent from 4, 3, 6, 1, 11 columns in the source labware \nto 5, 9, 1, 10, 2 columns in the destination labware. Use a new tip for each transfer.\n\n\n```python\n# parameters\ntransfer_vol = 78\nsrc_cols = [source.columns_by_name()[idx] for idx in ['4', '3', '6', '1', '11']]\ndest_cols = [destination.columns_by_name()[idx] for idx in ['5', '9', '1', '10', '2']]\n\n# commands\np1000m.transfer(transfer_vol, src_cols, dest_cols, new_tip=\"always\")\n```", + "start_char_idx": 0, + "end_char_idx": 512, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "40193ed8-343f-4536-b10c-0458b2fc74de": { + "__data__": { + "id_": "40193ed8-343f-4536-b10c-0458b2fc74de", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5b4f6747-16ad-461d-8b0a-c684dafea1b2", + "node_type": "4", + "metadata": {}, + "hash": "4c989d7885fd5493b34d5dec1ff7cd5bee11e42162fbadc08066163768c5459f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "98088bbe-3045-4978-8093-b2ce06830843", + "node_type": "1", + "metadata": {}, + "hash": "c320b0146037910c87fa4c08cdcb0049d1f2c7600b67a992b83de61fc9332c9f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8", + "node_type": "1", + "metadata": {}, + "hash": "c19c3219736e6988e6d9617915c70197081d8e7fa8593b46eb11956131579c3f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 50 uL Pipette on right mount, transfer 25 uL of reagent\nfrom the first well of source labware 2 to all wells in destination labware. Reuse the same tip.\n\n```python\n# volumes setup\ntransfer_vol_1 = 25\n\n# wells setup\nsource_wells_2 = source_labware_2.wells_by_name()['A1']\ndestination_wells_1 = [dest.wells() for dest in destination]\n\n# commands\np50s.transfer(transfer_vol_1, source_wells_2, destination_wells_1, new_tip=\"once\")\n```", + "start_char_idx": 0, + "end_char_idx": 451, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8": { + "__data__": { + "id_": "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "9bef55e2-a359-4dd2-90ea-3cabbefb0c88", + "node_type": "4", + "metadata": {}, + "hash": "c19c3219736e6988e6d9617915c70197081d8e7fa8593b46eb11956131579c3f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "40193ed8-343f-4536-b10c-0458b2fc74de", + "node_type": "1", + "metadata": {}, + "hash": "4c989d7885fd5493b34d5dec1ff7cd5bee11e42162fbadc08066163768c5459f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b463a27e-a692-441a-a66a-34610730ddb4", + "node_type": "1", + "metadata": {}, + "hash": "096aed368c276075490f7f5afeeed1a20e6861e3f025299b68381aecd88098da", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- when command says 'Use a new tip for each transfer', or something similar, \nset the `new_tip` parameter to \"always\": `new_tip='always'`.\n- when command says 'Use the same tip for all transfers.', 'reuse the same tip' or something similar.\nset the `new_tip` parameter to \"once\": `new_tip='once'`.", + "start_char_idx": 0, + "end_char_idx": 298, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b463a27e-a692-441a-a66a-34610730ddb4": { + "__data__": { + "id_": "b463a27e-a692-441a-a66a-34610730ddb4", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4290c0a3-68bf-46b8-a963-70834ce30d40", + "node_type": "4", + "metadata": {}, + "hash": "096aed368c276075490f7f5afeeed1a20e6861e3f025299b68381aecd88098da", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0cedb3c9-bd2d-49bc-9fe7-545e37a535d8", + "node_type": "1", + "metadata": {}, + "hash": "c19c3219736e6988e6d9617915c70197081d8e7fa8593b46eb11956131579c3f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99", + "node_type": "1", + "metadata": {}, + "hash": "fe719d1dcd267eb91384cafadfe1cf15c0910e8b5c6a078233a8e34c8324a872", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Note that when command says `Use the same tip for all transfers` or similar.\nDo not use new_tip='once' inside loop as shown below \n```python\nfor src, dest in LIST:\n p50_multi_right.transfer(transfer_vol, src, dest, new_tip='once')\n```\n\nInstead, remove `for` and use like so:\n```python\np50_multi_right.transfer(transfer_vol, src, dest, new_tip='once')\n```\nNote that no `for` loop is used.", + "start_char_idx": 0, + "end_char_idx": 391, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99": { + "__data__": { + "id_": "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "d73a7539-5dab-4229-8697-1a8457247d95", + "node_type": "4", + "metadata": {}, + "hash": "fe719d1dcd267eb91384cafadfe1cf15c0910e8b5c6a078233a8e34c8324a872", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b463a27e-a692-441a-a66a-34610730ddb4", + "node_type": "1", + "metadata": {}, + "hash": "096aed368c276075490f7f5afeeed1a20e6861e3f025299b68381aecd88098da", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72", + "node_type": "1", + "metadata": {}, + "hash": "3b7ec4a6e60cc4ed0c463dd3ad44d2a041fea597d0ccf5c018b49ca4a30ae712", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Source labware is ['labware name'], placed on [temperature module] on slot 3\n```python\n# modules\ntemperature_module = protocol.load_module(['temperature module gen2'], 3)\n\n# labware\nsource = temperature_module.load_labware(['labware name'])\n```", + "start_char_idx": 0, + "end_char_idx": 244, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72": { + "__data__": { + "id_": "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "3186adb2-a93b-456c-9014-b74e712385ef", + "node_type": "4", + "metadata": {}, + "hash": "3b7ec4a6e60cc4ed0c463dd3ad44d2a041fea597d0ccf5c018b49ca4a30ae712", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5bcc62da-2d01-4aae-8bd6-f2d7e9466a99", + "node_type": "1", + "metadata": {}, + "hash": "fe719d1dcd267eb91384cafadfe1cf15c0910e8b5c6a078233a8e34c8324a872", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "77735169-8e6a-4805-90b5-fd8136f8f40c", + "node_type": "1", + "metadata": {}, + "hash": "11b51d7099311a7e5ee1c1c31ad152bfdcdb74038558d68398dc0c282266f116", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Thermocycler module GEN 2 is present on slot A1+B1. `A1+B1` referes to 7, please use the slot number 7.\n\nCorrect thermocycler load:\n```python\nthermocycler = protocol.load_module('thermocyclerModuleV2') # by default slot number is 7\n```\n\nIncorrect thermocycler load:\n```python\nthermocycler = protocol.load_module('thermocyclerModuleV2', 'A1+B1')\n```", + "start_char_idx": 0, + "end_char_idx": 348, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "77735169-8e6a-4805-90b5-fd8136f8f40c": { + "__data__": { + "id_": "77735169-8e6a-4805-90b5-fd8136f8f40c", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d", + "node_type": "4", + "metadata": {}, + "hash": "11b51d7099311a7e5ee1c1c31ad152bfdcdb74038558d68398dc0c282266f116", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72", + "node_type": "1", + "metadata": {}, + "hash": "3b7ec4a6e60cc4ed0c463dd3ad44d2a041fea597d0ccf5c018b49ca4a30ae712", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5135e964-9062-4dc9-87f5-78f4213b7f6b", + "node_type": "1", + "metadata": {}, + "hash": "dc362ddebfa53d19689c1c9b197464e50f915e2ed3026e7c6bd5aa03c4470c0d", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- Sample temperature module GEN 2 is placed on slot D1\n- Opentrons 96 Well Aluminum Block adapter is placed on sample temperature module GEN 2\n\nCorresponding protocol\n```python\ntemp_mod_sample = protocol.load_module('temperature module gen2', 'D1')\ntemp_sample_adapter = temp_mod_sample.load_adapter('opentrons_96_well_aluminum_block')\n```", + "start_char_idx": 0, + "end_char_idx": 339, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5135e964-9062-4dc9-87f5-78f4213b7f6b": { + "__data__": { + "id_": "5135e964-9062-4dc9-87f5-78f4213b7f6b", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5b1021d4-fe9e-40eb-96de-d32a43140447", + "node_type": "4", + "metadata": {}, + "hash": "dc362ddebfa53d19689c1c9b197464e50f915e2ed3026e7c6bd5aa03c4470c0d", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "77735169-8e6a-4805-90b5-fd8136f8f40c", + "node_type": "1", + "metadata": {}, + "hash": "11b51d7099311a7e5ee1c1c31ad152bfdcdb74038558d68398dc0c282266f116", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a6368a15-a882-4d45-8337-5aa16131c81f", + "node_type": "1", + "metadata": {}, + "hash": "f3a79bfea30f0a7d29eaf096d7d34ce14aac539266637e8e61cfe90f802bb4de", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Open thermocycler lid\n```python\n[thermocycler_object].open_lid()\n```", + "start_char_idx": 0, + "end_char_idx": 68, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a6368a15-a882-4d45-8337-5aa16131c81f": { + "__data__": { + "id_": "a6368a15-a882-4d45-8337-5aa16131c81f", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "15bf1853-8534-448c-9b4e-11b26c0ef7a6", + "node_type": "4", + "metadata": {}, + "hash": "f3a79bfea30f0a7d29eaf096d7d34ce14aac539266637e8e61cfe90f802bb4de", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5135e964-9062-4dc9-87f5-78f4213b7f6b", + "node_type": "1", + "metadata": {}, + "hash": "dc362ddebfa53d19689c1c9b197464e50f915e2ed3026e7c6bd5aa03c4470c0d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865", + "node_type": "1", + "metadata": {}, + "hash": "9d9673973f15d01edda51b177edef8711b7b56497e6405743fea6c1f0561632e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Set the thermocycler block temperature to 1 C.\n```python\nplate_temperature_c = 1\n[thermocycler_object].set_block_temperature(plate_temperature_c)\n```", + "start_char_idx": 0, + "end_char_idx": 149, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865": { + "__data__": { + "id_": "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "607f4a8d-bd16-4b4f-9895-8eb8427ad64f", + "node_type": "4", + "metadata": {}, + "hash": "9d9673973f15d01edda51b177edef8711b7b56497e6405743fea6c1f0561632e", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a6368a15-a882-4d45-8337-5aa16131c81f", + "node_type": "1", + "metadata": {}, + "hash": "f3a79bfea30f0a7d29eaf096d7d34ce14aac539266637e8e61cfe90f802bb4de", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6c9d3854-7c5d-4087-8fbf-29be8953f7cd", + "node_type": "1", + "metadata": {}, + "hash": "cc002e4af3620f6578881e18d8fde55864f74bbc3852cd024ebd758ec05a0021", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Set the thermocycler lid temperature to 50 C.\n```python\nlid_temperature_c = 50\n[thermocycler_object].set_lid_temperature(lid_temperature_c)\n```", + "start_char_idx": 0, + "end_char_idx": 143, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6c9d3854-7c5d-4087-8fbf-29be8953f7cd": { + "__data__": { + "id_": "6c9d3854-7c5d-4087-8fbf-29be8953f7cd", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "44b43dc1-b557-4eff-9fba-7896c635050a", + "node_type": "4", + "metadata": {}, + "hash": "cc002e4af3620f6578881e18d8fde55864f74bbc3852cd024ebd758ec05a0021", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "da8f1f6d-d1f6-4677-9d6a-6af17b5b9865", + "node_type": "1", + "metadata": {}, + "hash": "9d9673973f15d01edda51b177edef8711b7b56497e6405743fea6c1f0561632e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "22aacff5-a1e6-48b8-87da-3bc0a6b6275b", + "node_type": "1", + "metadata": {}, + "hash": "a5d2f0e54f006950e47335b1e95d8a4d3fc29b01a2129754350250dd9d6e9959", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Set the sample temperature module to 3 C.\n```python\nsample_temperature_c = 3\n[temperature_module].set_temperature(sample_temperature_c)\n```", + "start_char_idx": 0, + "end_char_idx": 139, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "22aacff5-a1e6-48b8-87da-3bc0a6b6275b": { + "__data__": { + "id_": "22aacff5-a1e6-48b8-87da-3bc0a6b6275b", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "dcf13e3c-3703-4312-8edc-b0f117d4621d", + "node_type": "4", + "metadata": {}, + "hash": "a5d2f0e54f006950e47335b1e95d8a4d3fc29b01a2129754350250dd9d6e9959", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6c9d3854-7c5d-4087-8fbf-29be8953f7cd", + "node_type": "1", + "metadata": {}, + "hash": "cc002e4af3620f6578881e18d8fde55864f74bbc3852cd024ebd758ec05a0021", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed", + "node_type": "1", + "metadata": {}, + "hash": "43042c0d7746d9e33f65a0cc239fc0b18f995fbac02993597b00df25ba77e7eb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 17 uL of mastermix from the mastermix source wells to the destination wells. \nUse the same pipette tip for all transfers.\n```python\n[pippette_object].transfer(\n 17,\n master_mix_source_wells,\n master_mix_destination_wells,\n new_tip='once'\n)\n```", + "start_char_idx": 0, + "end_char_idx": 264, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed": { + "__data__": { + "id_": "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7c3b415f-c1b0-4471-86a8-ade398a7faad", + "node_type": "4", + "metadata": {}, + "hash": "43042c0d7746d9e33f65a0cc239fc0b18f995fbac02993597b00df25ba77e7eb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "22aacff5-a1e6-48b8-87da-3bc0a6b6275b", + "node_type": "1", + "metadata": {}, + "hash": "a5d2f0e54f006950e47335b1e95d8a4d3fc29b01a2129754350250dd9d6e9959", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "52d0dadc-b060-48fd-9e7a-177efef38efa", + "node_type": "1", + "metadata": {}, + "hash": "57d0587a3c7d58004099d448279013de639d98d9d38eac03c3441a44ba4133a3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 4 uL of the sample from the source to the destination. \nMix the sample and mastermix for a total volume of 15 uL 10 times. \nBlow out to 'destination well' after each transfer. Use a new tip for each transfer.\n```python\n[pippette_object].transfer(\n 4,\n [sample_source_wells],`\n [sample_destination_wells],\n new_tip='always',\n mix_after=(10, 15),\n blow_out=True,\n blowout_location='destination well'\n)\n```", + "start_char_idx": 0, + "end_char_idx": 433, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "52d0dadc-b060-48fd-9e7a-177efef38efa": { + "__data__": { + "id_": "52d0dadc-b060-48fd-9e7a-177efef38efa", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "d8411fc9-1c7b-4d0a-b95d-17a1e255610c", + "node_type": "4", + "metadata": {}, + "hash": "57d0587a3c7d58004099d448279013de639d98d9d38eac03c3441a44ba4133a3", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "06eaef47-1d7b-4bb7-9b9b-f2881d1efaed", + "node_type": "1", + "metadata": {}, + "hash": "43042c0d7746d9e33f65a0cc239fc0b18f995fbac02993597b00df25ba77e7eb", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6d4117d6-bc83-44a5-ad19-d828afa2baed", + "node_type": "1", + "metadata": {}, + "hash": "29f0f91201efa63855556aae59b0043e375bf920ea1d513309ec5ee55e19ed09", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Close the thermocycler lid.\n```python\n[thermocycler_module].close_lid()\n```", + "start_char_idx": 0, + "end_char_idx": 75, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6d4117d6-bc83-44a5-ad19-d828afa2baed": { + "__data__": { + "id_": "6d4117d6-bc83-44a5-ad19-d828afa2baed", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "48580fdc-e332-45f5-9d2d-147d9d022b2f", + "node_type": "4", + "metadata": {}, + "hash": "29f0f91201efa63855556aae59b0043e375bf920ea1d513309ec5ee55e19ed09", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "52d0dadc-b060-48fd-9e7a-177efef38efa", + "node_type": "1", + "metadata": {}, + "hash": "57d0587a3c7d58004099d448279013de639d98d9d38eac03c3441a44ba4133a3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9f93ecb7-2d49-48f8-a8a1-baa72fb39565", + "node_type": "1", + "metadata": {}, + "hash": "8e10ee819fec9e4c5ad9777622f4181e00bd6951277b9d8f3deee187d0807866", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Execute the thermocycler with the following profile:\n- 75 C for 66 seconds for 1 cycle (repetition). \n```python\n[thermocycler_module].execute_profile(\n steps=[{'temperature': 75, 'hold_time_seconds': 66}],\n repetitions=1,\n block_max_volume=[total_mix_volume_ul]\n)\n```\n\nNote that you must calculate `block_max_volume` based on the whole prompt context.", + "start_char_idx": 0, + "end_char_idx": 360, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9f93ecb7-2d49-48f8-a8a1-baa72fb39565": { + "__data__": { + "id_": "9f93ecb7-2d49-48f8-a8a1-baa72fb39565", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c0ceb309-98cf-484d-9330-0f6b8b5b2fda", + "node_type": "4", + "metadata": {}, + "hash": "8e10ee819fec9e4c5ad9777622f4181e00bd6951277b9d8f3deee187d0807866", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6d4117d6-bc83-44a5-ad19-d828afa2baed", + "node_type": "1", + "metadata": {}, + "hash": "29f0f91201efa63855556aae59b0043e375bf920ea1d513309ec5ee55e19ed09", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "4d609ec0-9a7a-46ce-a769-d2daf0141978", + "node_type": "1", + "metadata": {}, + "hash": "dfe46a63ff67763a941598ee32ee1712c6c1fce19f4da73671cc1729ac304253", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Execute the thermocycler with the following profile:\n - 61C for 8 seconds, 85\u00b0C for 20 seconds, 58\u00b0C for 45 seconds for 14 cycles.\n```python\n[thermocycler_module].execute_profile(\n steps=[\n {'temperature': temp, 'hold_time_seconds': duration}\n for temp, duration in zip([61, 85, 58], [8, 20, 45])\n ],\n repetitions=14,\n block_max_volume=[total_mix_volume_ul]\n)\n```\nNote that you must calculate `block_max_volume` based on the whole prompt context.", + "start_char_idx": 0, + "end_char_idx": 472, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "4d609ec0-9a7a-46ce-a769-d2daf0141978": { + "__data__": { + "id_": "4d609ec0-9a7a-46ce-a769-d2daf0141978", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f50ac71e-4df1-4edd-b7ce-a512a5e0193c", + "node_type": "4", + "metadata": {}, + "hash": "dfe46a63ff67763a941598ee32ee1712c6c1fce19f4da73671cc1729ac304253", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9f93ecb7-2d49-48f8-a8a1-baa72fb39565", + "node_type": "1", + "metadata": {}, + "hash": "8e10ee819fec9e4c5ad9777622f4181e00bd6951277b9d8f3deee187d0807866", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "39b7cc27-3b1a-459c-87ac-cb805e0845d9", + "node_type": "1", + "metadata": {}, + "hash": "8980fd0ec7a9d5bd5f60536d54830c7f6a72d952626c49e9a3c5baafaf057b1f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Hold the thermocycler block at 4\u00b0C.\n```python\nhold_temperature_c = 10\n[thermocycler_module].set_block_temperature(hold_temperature_c)\n```", + "start_char_idx": 0, + "end_char_idx": 137, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "39b7cc27-3b1a-459c-87ac-cb805e0845d9": { + "__data__": { + "id_": "39b7cc27-3b1a-459c-87ac-cb805e0845d9", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6", + "node_type": "4", + "metadata": {}, + "hash": "8980fd0ec7a9d5bd5f60536d54830c7f6a72d952626c49e9a3c5baafaf057b1f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "4d609ec0-9a7a-46ce-a769-d2daf0141978", + "node_type": "1", + "metadata": {}, + "hash": "dfe46a63ff67763a941598ee32ee1712c6c1fce19f4da73671cc1729ac304253", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "348b7fb0-1e7b-4f03-958e-72413469a02c", + "node_type": "1", + "metadata": {}, + "hash": "19f622bddfa8ed45876aee6b2d0403faf45b27c1280dda7c503471684d5279b4", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Deactivate the mastermix temperature module.\n```python\n[master_mix_temperature_module].deactivate()\n```", + "start_char_idx": 0, + "end_char_idx": 103, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "348b7fb0-1e7b-4f03-958e-72413469a02c": { + "__data__": { + "id_": "348b7fb0-1e7b-4f03-958e-72413469a02c", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "e958b6ee-5340-451f-b8c1-0ecab8b293ae", + "node_type": "4", + "metadata": {}, + "hash": "19f622bddfa8ed45876aee6b2d0403faf45b27c1280dda7c503471684d5279b4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "39b7cc27-3b1a-459c-87ac-cb805e0845d9", + "node_type": "1", + "metadata": {}, + "hash": "8980fd0ec7a9d5bd5f60536d54830c7f6a72d952626c49e9a3c5baafaf057b1f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "aaac39b2-41ce-49a5-ac24-516f873a8dc7", + "node_type": "1", + "metadata": {}, + "hash": "0216161d8304c18df56009a923e31211098fa0a794424b56df1afa01a5ab9fd5", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Sample source wells: the first 48 wells column-wise in the sample source plate.\nNote that the pipette is a single channel.\n\nUse `[source_labware].wells()`. For example,\n```python\nnumber_of_samples = 48\nsource_wells = sample_plate.wells()[:number_of_samples]\n```", + "start_char_idx": 0, + "end_char_idx": 261, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "aaac39b2-41ce-49a5-ac24-516f873a8dc7": { + "__data__": { + "id_": "aaac39b2-41ce-49a5-ac24-516f873a8dc7", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "6c339873-d97d-46e5-a495-1a6b0ea42dc7", + "node_type": "4", + "metadata": {}, + "hash": "0216161d8304c18df56009a923e31211098fa0a794424b56df1afa01a5ab9fd5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "348b7fb0-1e7b-4f03-958e-72413469a02c", + "node_type": "1", + "metadata": {}, + "hash": "19f622bddfa8ed45876aee6b2d0403faf45b27c1280dda7c503471684d5279b4", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9850698b-a7f7-478c-b6b5-cfc4b75c04fa", + "node_type": "1", + "metadata": {}, + "hash": "83e69d5e147ece98878c859b8b2c71d575870840a17beb46a0aa506e17760bd6", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Sample source wells: the first 48 wells column-wise in the sample source plate.\nNote that the pipette is a multi-channel.\n\n- Estimate the columns using the number samples \n```python\nnumber_of_samples = 48\nnumber_of_columns = math.ceil(number_of_samples / 8)\n```\n- Then, use `[source_labware].columns()` method to access the columns. \nFor example, \n```python\nsource_wells = sample_plate.columns()[:number_of_columns]\n```", + "start_char_idx": 0, + "end_char_idx": 419, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9850698b-a7f7-478c-b6b5-cfc4b75c04fa": { + "__data__": { + "id_": "9850698b-a7f7-478c-b6b5-cfc4b75c04fa", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "03dd3269-d126-4a95-81e6-c49974907666", + "node_type": "4", + "metadata": {}, + "hash": "83e69d5e147ece98878c859b8b2c71d575870840a17beb46a0aa506e17760bd6", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "aaac39b2-41ce-49a5-ac24-516f873a8dc7", + "node_type": "1", + "metadata": {}, + "hash": "0216161d8304c18df56009a923e31211098fa0a794424b56df1afa01a5ab9fd5", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "239e054c-bffc-4992-8627-8d9f80c066cd", + "node_type": "1", + "metadata": {}, + "hash": "b6a859a6c7031d23a8f2bcdf3275e43921042c7614f987debd64abc5fb1ae258", + "class_name": "RelatedNodeInfo" + } + }, + "text": "When a command says `move destination labware` or something, use `move_labware`.\nWe need to specify two arguments:\n- labware: The labware object you want to move. \n- new_location: The destination where you want to move the labware. \n\nThis can be any empty deck slot or a module that is ready to accept labware.\nExample for the slot,\n```python\nprotocol.move_labware([labware]], ['C4'], use_gripper=True)\n```\n\nExample for the module, \n```python\nprotocol.move_labware([labware]], [thermocycler], use_gripper=True)\n```", + "start_char_idx": 0, + "end_char_idx": 514, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "239e054c-bffc-4992-8627-8d9f80c066cd": { + "__data__": { + "id_": "239e054c-bffc-4992-8627-8d9f80c066cd", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c1bb2b52-a549-4578-84fe-c57c6e5d5446", + "node_type": "4", + "metadata": {}, + "hash": "b6a859a6c7031d23a8f2bcdf3275e43921042c7614f987debd64abc5fb1ae258", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9850698b-a7f7-478c-b6b5-cfc4b75c04fa", + "node_type": "1", + "metadata": {}, + "hash": "83e69d5e147ece98878c859b8b2c71d575870840a17beb46a0aa506e17760bd6", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "81857120-fce6-4805-a1f5-878400b46bb2", + "node_type": "1", + "metadata": {}, + "hash": "7d113160fae1caf85e9db2f98c3dddc6b4eb625f224cd8c82d416f730b56cede", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Pause the protocol \n```python\nprotocol.pause(\"Pause please\")\n```", + "start_char_idx": 0, + "end_char_idx": 64, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "81857120-fce6-4805-a1f5-878400b46bb2": { + "__data__": { + "id_": "81857120-fce6-4805-a1f5-878400b46bb2", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1900616f-5e01-48f1-91ec-e432ba515157", + "node_type": "4", + "metadata": {}, + "hash": "7d113160fae1caf85e9db2f98c3dddc6b4eb625f224cd8c82d416f730b56cede", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "239e054c-bffc-4992-8627-8d9f80c066cd", + "node_type": "1", + "metadata": {}, + "hash": "b6a859a6c7031d23a8f2bcdf3275e43921042c7614f987debd64abc5fb1ae258", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6eee3782-64f2-49e8-9fda-c9b53e8827f1", + "node_type": "1", + "metadata": {}, + "hash": "5ff84b62b04f20fa0f0c53edb750a5ab3d2febb6ec0c787df858c241c9d8eafd", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 21 uL of liquid from 6 mm below the top surface of mastermix well to 3 mm above the bottom of destination well.\nUse the same tip for each transfer.\n\n```python\n[pipette_object].transfer(21, mastermix_well.top(-6), dest.bottom(3), new_tip='once')\n```", + "start_char_idx": 0, + "end_char_idx": 257, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6eee3782-64f2-49e8-9fda-c9b53e8827f1": { + "__data__": { + "id_": "6eee3782-64f2-49e8-9fda-c9b53e8827f1", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5026023d-8ff8-43ec-8237-b36e371c2b42", + "node_type": "4", + "metadata": {}, + "hash": "5ff84b62b04f20fa0f0c53edb750a5ab3d2febb6ec0c787df858c241c9d8eafd", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "81857120-fce6-4805-a1f5-878400b46bb2", + "node_type": "1", + "metadata": {}, + "hash": "7d113160fae1caf85e9db2f98c3dddc6b4eb625f224cd8c82d416f730b56cede", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "135a0c63-420e-4970-a69a-f967e1e36a40", + "node_type": "1", + "metadata": {}, + "hash": "739234eba940dcefa2d2fc5f76fd0053256229cd59afef885072b2d68d969c74", + "class_name": "RelatedNodeInfo" + } + }, + "text": "5 mm above the top of the well\n```python\nplate['A1'].top(z=5) \n```\t\t\n\n5 mm below the top of the well\n```python\nplate['A1'].top(z=-5) \n```\t\t\n\n5 mm above the bottom of the well\n```python\nplate['A1'].bottom(z=1) \n```\n\n5 mm below the bottom of the well\n```python\nplate['A1'].bottom(z=-5)\n```\n\nTransfer 20 uL of liquid from 5 mm below the top surface of the mastermix well to 2 mm above the bottom of the destination well.\nUse the same tip for each transfer.\n\n```python\npipette_96channel.transfer(20, mastermix_source_well.top(-5), destination_wells.bottom(2), new_tip='once')\n```", + "start_char_idx": 0, + "end_char_idx": 578, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "135a0c63-420e-4970-a69a-f967e1e36a40": { + "__data__": { + "id_": "135a0c63-420e-4970-a69a-f967e1e36a40", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5", + "node_type": "4", + "metadata": {}, + "hash": "739234eba940dcefa2d2fc5f76fd0053256229cd59afef885072b2d68d969c74", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6eee3782-64f2-49e8-9fda-c9b53e8827f1", + "node_type": "1", + "metadata": {}, + "hash": "5ff84b62b04f20fa0f0c53edb750a5ab3d2febb6ec0c787df858c241c9d8eafd", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "960e584f-7c70-412b-81bc-cbe29ca6c5fa", + "node_type": "1", + "metadata": {}, + "hash": "8e709ab5389c85380e6b9f3ee6b201ea35b6f0a8f70c7444f1e8b92945f3b04c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Remove the tip slowly out of the well at 5 mm/s speed\n```python\npipette.move_to([well].top(), speed=5)\n```\n\nMove to the top of the well at 5 mm/s speed\n```python\npipette.move_to([well].top(), speed=5)\n```\n\nMove to 2 mm below the top of well A1\n```python\npipette.move_to(plate['A1'].top(z=-2)) \n```\n\nMove to 2 mm above the bottom of well A1\n```python\npipette.move_to(plate['A1'].bottom(z=2)) \n```", + "start_char_idx": 0, + "end_char_idx": 399, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "960e584f-7c70-412b-81bc-cbe29ca6c5fa": { + "__data__": { + "id_": "960e584f-7c70-412b-81bc-cbe29ca6c5fa", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "83b58953-3e2b-430c-ba54-04564ae2c764", + "node_type": "4", + "metadata": {}, + "hash": "8e709ab5389c85380e6b9f3ee6b201ea35b6f0a8f70c7444f1e8b92945f3b04c", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "135a0c63-420e-4970-a69a-f967e1e36a40", + "node_type": "1", + "metadata": {}, + "hash": "739234eba940dcefa2d2fc5f76fd0053256229cd59afef885072b2d68d969c74", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "df1eae99-5b15-4b4e-bfca-c42eed6ef25b", + "node_type": "1", + "metadata": {}, + "hash": "75db99f67350d1bb4b78d3f8e62f681e0c0186e0fd575e2059b4d3ae67693186", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 20 ul of liquid from 3 mm above the source well bottom to destination well 7 mm beneath the top surface. Flow rate is at half the default.\nMix the sample and mastermix of 40 ul total volume 5 times. Remove the tip slowly out of the well at 5 mm/s speed. Use the same tip for each transfer.\n\n```python\npipette_96channel.pick_up_tip()\npipette_96channel.aspirate(20, sample_source_wells.bottom(3), rate=0.5)\npipette_96channel.dispense(20, destination_wells.top(-7), rate=0.5)\npipette_96channel.mix(5, 40)\npipette_96channel.move_to(destination_wells.top(), speed=5)\npipette_96channel.drop_tip()\n```", + "start_char_idx": 0, + "end_char_idx": 603, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "df1eae99-5b15-4b4e-bfca-c42eed6ef25b": { + "__data__": { + "id_": "df1eae99-5b15-4b4e-bfca-c42eed6ef25b", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c95ce074-0ee7-44fb-9265-c7326923b8ad", + "node_type": "4", + "metadata": {}, + "hash": "75db99f67350d1bb4b78d3f8e62f681e0c0186e0fd575e2059b4d3ae67693186", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "960e584f-7c70-412b-81bc-cbe29ca6c5fa", + "node_type": "1", + "metadata": {}, + "hash": "8e709ab5389c85380e6b9f3ee6b201ea35b6f0a8f70c7444f1e8b92945f3b04c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ea331090-3f76-40c9-af80-2bb8df1e5638", + "node_type": "1", + "metadata": {}, + "hash": "b032484c31a26c0e7cfa5ee60c63c68a7e2be1b831c8315e810b83029c7272f3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Load three opentrons_flex_96_filtertiprack_50ul tip racks in slots A2, B2, and C2\n\n```python\t\t\ntips_50ul = [\n protocol.load_labware(\n 'opentrons_flex_96_filtertiprack_50ul',\n slot\n )\n for slot in ['A2', 'B2', 'C2']\n]\n```\n\nor\n\n```python\ntips_50ul_a = protocol.load_labware('opentrons_flex_96_filtertiprack_50ul', 'A2')\ntips_50ul_b = protocol.load_labware('opentrons_flex_96_filtertiprack_50ul', 'B2')\ntips_50ul_c = protocol.load_labware('opentrons_flex_96_filtertiprack_50ul', 'C2')\ntips_50ul = [tips_50ul_a, tips_50ul_b, tips_50ul_c]\n```", + "start_char_idx": 0, + "end_char_idx": 560, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ea331090-3f76-40c9-af80-2bb8df1e5638": { + "__data__": { + "id_": "ea331090-3f76-40c9-af80-2bb8df1e5638", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "01f5fbc0-b6d5-48c1-a788-c84272dc4c24", + "node_type": "4", + "metadata": {}, + "hash": "b032484c31a26c0e7cfa5ee60c63c68a7e2be1b831c8315e810b83029c7272f3", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "df1eae99-5b15-4b4e-bfca-c42eed6ef25b", + "node_type": "1", + "metadata": {}, + "hash": "75db99f67350d1bb4b78d3f8e62f681e0c0186e0fd575e2059b4d3ae67693186", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0", + "node_type": "1", + "metadata": {}, + "hash": "1f8e2557e2ad02ff792856075ce330305101557dfd1bcea6891b353d4b9e6711", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Move the destination labware to the thermocycler using a gripper.\n```python\nprotocol.move_labware(destination_plate, thermocycler_module, use_gripper=True)\n```", + "start_char_idx": 0, + "end_char_idx": 159, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0": { + "__data__": { + "id_": "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7f196e1d-f25a-42f1-8526-3d0edcc9182a", + "node_type": "4", + "metadata": {}, + "hash": "1f8e2557e2ad02ff792856075ce330305101557dfd1bcea6891b353d4b9e6711", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ea331090-3f76-40c9-af80-2bb8df1e5638", + "node_type": "1", + "metadata": {}, + "hash": "b032484c31a26c0e7cfa5ee60c63c68a7e2be1b831c8315e810b83029c7272f3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "55f0fba3-64d0-45fa-959f-de7abf3d8afe", + "node_type": "1", + "metadata": {}, + "hash": "2253eb4b82857a1ab03451ad882266a741083b74e53faa8cee43e115081a1dc8", + "class_name": "RelatedNodeInfo" + } + }, + "text": "I am going to be running a protocol on my Opentrons Flex. \nI have a 96-channel pipette on the system. My destination plates will be \n4 'nest_96_wellplate_2ml_deep' plates. My source labware will be \na 'nest_1_reservoir_195ml'. \n\n```python\npipette_96_channel = protocol.load_instrument(\n 'flex_96channel_1000', mount='left'\n )\nsource_reservoir = protocol.load_labware('nest_1_reservoir_195ml', '1')\ndestination_plates = [\n protocol.load_labware('nest_96_wellplate_2ml_deep', slot)\n for slot in ['2', '3', '4', '5']\n]\n```", + "start_char_idx": 0, + "end_char_idx": 535, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "55f0fba3-64d0-45fa-959f-de7abf3d8afe": { + "__data__": { + "id_": "55f0fba3-64d0-45fa-959f-de7abf3d8afe", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "02842d37-142a-4115-8687-30678a03d6ca", + "node_type": "4", + "metadata": {}, + "hash": "2253eb4b82857a1ab03451ad882266a741083b74e53faa8cee43e115081a1dc8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0", + "node_type": "1", + "metadata": {}, + "hash": "1f8e2557e2ad02ff792856075ce330305101557dfd1bcea6891b353d4b9e6711", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a081ad6b-87d5-4df2-8ffd-85afdc75a174", + "node_type": "1", + "metadata": {}, + "hash": "756d7723725b2468b72a08381dce060ed4cd66640b4f9d29cac1e21e37ba674c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Example 5\nTransfer 25 uL from multiple source wells to a single destination well, use a new tip every time, and touch the tip after dispense.\n\n```python\npipette.transfer(25, source_wells, dest_well, new_tip='always', touch_tip=True)\n```", + "start_char_idx": 0, + "end_char_idx": 236, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a081ad6b-87d5-4df2-8ffd-85afdc75a174": { + "__data__": { + "id_": "a081ad6b-87d5-4df2-8ffd-85afdc75a174", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "6880a3bd-3700-4428-b73d-357543a854e7", + "node_type": "4", + "metadata": {}, + "hash": "756d7723725b2468b72a08381dce060ed4cd66640b4f9d29cac1e21e37ba674c", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "55f0fba3-64d0-45fa-959f-de7abf3d8afe", + "node_type": "1", + "metadata": {}, + "hash": "2253eb4b82857a1ab03451ad882266a741083b74e53faa8cee43e115081a1dc8", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "88c08258-e948-4a2a-b0a8-e7d746e760a0", + "node_type": "1", + "metadata": {}, + "hash": "9160d61221a0bd8952a6af4a433547314a5c7891ebeb5c920be1ac841304b5ee", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 10 uL from source to destination, with an air gap of 5 uL after aspiration.\n\n```python\npipette.transfer(10, source_well, dest_well, air_gap=5)\n```", + "start_char_idx": 0, + "end_char_idx": 155, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "88c08258-e948-4a2a-b0a8-e7d746e760a0": { + "__data__": { + "id_": "88c08258-e948-4a2a-b0a8-e7d746e760a0", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "6bb45b06-7c91-4f10-9550-fb02eb6c685b", + "node_type": "4", + "metadata": {}, + "hash": "9160d61221a0bd8952a6af4a433547314a5c7891ebeb5c920be1ac841304b5ee", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a081ad6b-87d5-4df2-8ffd-85afdc75a174", + "node_type": "1", + "metadata": {}, + "hash": "756d7723725b2468b72a08381dce060ed4cd66640b4f9d29cac1e21e37ba674c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "fbd23709-de50-4ee7-9fe4-b9091aad8af0", + "node_type": "1", + "metadata": {}, + "hash": "2b8151ef280c9090488b85b804cb054f0fd172eb4986e4911fb31980721dd4a4", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 200 uL from source to destination, blowing out in the source well after dispensing. Use the same tip for each transfer.\n\n```python\npipette.transfer(200, source_well, dest_well, trash=False, blow_out=True, blowout_location='source well')\n```", + "start_char_idx": 0, + "end_char_idx": 249, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "fbd23709-de50-4ee7-9fe4-b9091aad8af0": { + "__data__": { + "id_": "fbd23709-de50-4ee7-9fe4-b9091aad8af0", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "a5a27515-0a35-45fe-887b-4b9035eb06de", + "node_type": "4", + "metadata": {}, + "hash": "2b8151ef280c9090488b85b804cb054f0fd172eb4986e4911fb31980721dd4a4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "88c08258-e948-4a2a-b0a8-e7d746e760a0", + "node_type": "1", + "metadata": {}, + "hash": "9160d61221a0bd8952a6af4a433547314a5c7891ebeb5c920be1ac841304b5ee", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2b48de5c-e88d-4082-b30e-95790ede9e7a", + "node_type": "1", + "metadata": {}, + "hash": "9d733c6b00023e046c304d2f9843de024c15acf3d3506c53d6c4b2f956fd39d8", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 12 uL from source to destination, mix the destination well 5 times with 10 uL after dispensing, and do not touch the tip.\n\n```python\npipette.transfer(12, source_well, dest_well, mix_after=(5, 10))\n```", + "start_char_idx": 0, + "end_char_idx": 209, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2b48de5c-e88d-4082-b30e-95790ede9e7a": { + "__data__": { + "id_": "2b48de5c-e88d-4082-b30e-95790ede9e7a", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "771a3b45-733d-49cb-8395-0a54423466fd", + "node_type": "4", + "metadata": {}, + "hash": "9d733c6b00023e046c304d2f9843de024c15acf3d3506c53d6c4b2f956fd39d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "fbd23709-de50-4ee7-9fe4-b9091aad8af0", + "node_type": "1", + "metadata": {}, + "hash": "2b8151ef280c9090488b85b804cb054f0fd172eb4986e4911fb31980721dd4a4", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c92dd0dc-c2d7-40d9-a9e4-36c908174d04", + "node_type": "1", + "metadata": {}, + "hash": "bf0a057ea84be0d93a769bec864bbc70818da2b3af22b4102e8695cdf3952dd0", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Transfer 30 uL from one source to multiple destinations, after each aspirate and touch tip after dispensing.\n\n```python\npipette.transfer(30, source_well, dest_wells, air_gap=10, touch_tip=True)\n```", + "start_char_idx": 0, + "end_char_idx": 197, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c92dd0dc-c2d7-40d9-a9e4-36c908174d04": { + "__data__": { + "id_": "c92dd0dc-c2d7-40d9-a9e4-36c908174d04", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ea64cc92-be5c-4386-91cc-6e7d4039a2b9", + "node_type": "4", + "metadata": {}, + "hash": "bf0a057ea84be0d93a769bec864bbc70818da2b3af22b4102e8695cdf3952dd0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2b48de5c-e88d-4082-b30e-95790ede9e7a", + "node_type": "1", + "metadata": {}, + "hash": "9d733c6b00023e046c304d2f9843de024c15acf3d3506c53d6c4b2f956fd39d8", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2135c16e-6e34-425c-9901-4d9d31e2239c", + "node_type": "1", + "metadata": {}, + "hash": "0eae4468bfe80a10a82bcf2993a2fd5820d744a37e5601303b43e38240fe8356", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Flex 1-Channel 1000 uL Pipette is mounted on the left side.\nmastermix source wells: first N wells column-wise in mastermix plate.\nNote that the pipette is a single channel.\n\n\n```python\npipette = protocol.load_instrument('flex_1channel_1000', 'left', tip_racks=[tips_1000ul])\nsample_source_wells = sample_plate.wells()[:N]\n```", + "start_char_idx": 0, + "end_char_idx": 325, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2135c16e-6e34-425c-9901-4d9d31e2239c": { + "__data__": { + "id_": "2135c16e-6e34-425c-9901-4d9d31e2239c", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8", + "node_type": "4", + "metadata": {}, + "hash": "0eae4468bfe80a10a82bcf2993a2fd5820d744a37e5601303b43e38240fe8356", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c92dd0dc-c2d7-40d9-a9e4-36c908174d04", + "node_type": "1", + "metadata": {}, + "hash": "bf0a057ea84be0d93a769bec864bbc70818da2b3af22b4102e8695cdf3952dd0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a540806a-9e44-4c09-90a2-72ef5870e1c3", + "node_type": "1", + "metadata": {}, + "hash": "22de7aca8099ffebeca9cdc0c50d1c91392af2efe80ea7388620affa5acfc497", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Source Labware: `Opentrons 96 Flat Bottom Heater-Shaker Adapter with NEST 96 Well Plate 200 uL Flat` in slot D1\n\n```python\nsource = protocol.load_labware('opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat', 'D1')\n```", + "start_char_idx": 0, + "end_char_idx": 225, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a540806a-9e44-4c09-90a2-72ef5870e1c3": { + "__data__": { + "id_": "a540806a-9e44-4c09-90a2-72ef5870e1c3", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5fd235a1-a085-4785-b45a-ee39fdb2cbb7", + "node_type": "4", + "metadata": {}, + "hash": "22de7aca8099ffebeca9cdc0c50d1c91392af2efe80ea7388620affa5acfc497", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2135c16e-6e34-425c-9901-4d9d31e2239c", + "node_type": "1", + "metadata": {}, + "hash": "0eae4468bfe80a10a82bcf2993a2fd5820d744a37e5601303b43e38240fe8356", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "aed67281-3a13-42b8-b9ec-2031d631c4f1", + "node_type": "1", + "metadata": {}, + "hash": "34b0544275c0ef8a6d2707a893d11c7976e7fed2fd29bc351316d0ed45466c63", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using Flex 1-Channel 1000 uL Pipette on left mount, transfer 150 uL from wells `A1, A2` in source labware 1\n to `B6, B7` in source labware 2. Use the same tip for each transfer.\n\nFirst collect all wells for source and destination. \n```python\nsource_wells_1 = [source_1.wells_by_name()[wells] for wells in ['A1', 'A2']]\ndestination_wells_1 = [source_2.wells_by_name()[wells] for wells in ['B6', 'B7']]\n```\nThen use a transfer method like so:\n\n```python\np1000s.transfer(150, source_wells_1, destination_wells_1, new_tip=\"once\")\n```\n\nNote that we are using a single transfer function for multiple wells.\n\nThe following is totally wrong:\n```python\npipette_1000ul.transfer(50, source_labware_1.wells_by_name()['A1'], source_labware_2.wells_by_name()['B6'], new_tip='once')\npipette_1000ul.transfer(50, source_labware_1.wells_by_name()['A2'], source_labware_2.wells_by_name()['B7'], new_tip='never')\n```", + "start_char_idx": 0, + "end_char_idx": 897, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "aed67281-3a13-42b8-b9ec-2031d631c4f1": { + "__data__": { + "id_": "aed67281-3a13-42b8-b9ec-2031d631c4f1", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "98407fd2-3fa3-4953-ac50-1364d6b8f934", + "node_type": "4", + "metadata": {}, + "hash": "34b0544275c0ef8a6d2707a893d11c7976e7fed2fd29bc351316d0ed45466c63", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a540806a-9e44-4c09-90a2-72ef5870e1c3", + "node_type": "1", + "metadata": {}, + "hash": "22de7aca8099ffebeca9cdc0c50d1c91392af2efe80ea7388620affa5acfc497", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1d74e06e-21a1-4b8c-bb5c-4866a1a9531f", + "node_type": "1", + "metadata": {}, + "hash": "4bba61746b024fcf83aa3b02570ae5bdc4789a661d5032744603939fd14bc7aa", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using the multi-channel pipette, transfer 3ul of sample from each column in the source plate to \nthe destination plate in duplicate. Changing tips between each column. Duplicate means that \naspirate the sample from the sample plate column 1 to the destination plate column 1, change tip,\nthen aspirate from sample plate column 1 to destination plate column 2. Then, transfer the sample \nfrom the sample plate column 2 to the destination plate column 3, change tip, then transfer \nthe sample from sample plate column 2 to destination plate column 4. Repeat this pattern for \nthe remainder of the source columns.\n\n```python\nsource_columns = source_plate.columns()[:number_of_columns]\ndestination_columns = destination_plate.columns()[:number_of_columns * 2] # Twice the number for duplicates\n\nfor col_ctr, s in enumerate(source_columns, start=0):\n dest_index = 2 * col_ctr\n pipette_multi.transfer(3, s, destination_columns[dest_index], new_tip='always')\n pipette_multi.transfer(3, s, destination_columns[dest_index + 1], new_tip='always')\n```\n\nNote that two transfer methods is used to account for duplication. 'for' loop is used since description\nsays change tip for each column.", + "start_char_idx": 0, + "end_char_idx": 1188, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1d74e06e-21a1-4b8c-bb5c-4866a1a9531f": { + "__data__": { + "id_": "1d74e06e-21a1-4b8c-bb5c-4866a1a9531f", + "embedding": null, + "metadata": {}, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "19306ea4-0457-431a-b8ec-fdc9817e759e", + "node_type": "4", + "metadata": {}, + "hash": "4bba61746b024fcf83aa3b02570ae5bdc4789a661d5032744603939fd14bc7aa", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "aed67281-3a13-42b8-b9ec-2031d631c4f1", + "node_type": "1", + "metadata": {}, + "hash": "34b0544275c0ef8a6d2707a893d11c7976e7fed2fd29bc351316d0ed45466c63", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Using the multi-channel pipette, transfer 3ul of sample from each column in the source plate to \nthe destination plate in triplicate. Changing tips between each column. \nThe triplicate means that for first source columns,\naspirate the sample from the source column 1 to the destination plate column 1, change tip,\nthen aspirate from source column 1 to destination plate column 2, change tip,\nthen aspirate from source column 1 to destination plate column 3, change tip.\nFor second source column,\naspirate the sample from the source column 2 to the destination column 4, change tip, \nthen aspirate the sample from source column 2 to destination column 5, change tip, \nthen aspirate the sample from source column 2 to destination column 6, change tip.\n\nRepeat this pattern for the remainder of the source columns.\n\n```python\nsource_columns = source_plate.columns()[:number_of_columns]\ndestination_columns = destination_plate.columns()[:number_of_columns * 2] # Twice the number for duplicates\n\nfor col_ctr, s in enumerate(source_columns, start=0):\n dest_index = 2 * col_ctr\n pipette_multi.transfer(3, s, destination_columns[dest_index], new_tip='always')\n pipette_multi.transfer(3, s, destination_columns[dest_index + 1], new_tip='always')\n pipette_multi.transfer(3, s, destination_columns[dest_index + 2], new_tip='always')\n```\n\nNote that two transfer methods is used to account for duplication. 'for' loop is used since description\nsays change tip for each column.", + "start_char_idx": 0, + "end_char_idx": 1477, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + } + }, + "docstore/ref_doc_info": { + "e073aa57-e525-4e73-86a4-17a2e84f6c96": { + "node_ids": ["8ee005f6-4244-4150-8397-38b43c51d568"], + "metadata": {} + }, + "bf4cad5c-96c2-4a3c-8b2e-7481c3cb30aa": { + "node_ids": ["b62ec4b9-7646-4d54-ab3f-a82f006e5b48"], + "metadata": {} + }, + "9fff190b-3326-4032-8337-105e18dbf698": { + "node_ids": ["c455d382-4822-4de9-99de-ed945e58c6d0"], + "metadata": {} + }, + "d5c99332-006a-4563-aee6-b09be7032902": { + "node_ids": ["472c884d-6522-40ed-afef-993a922a8de6"], + "metadata": {} + }, + "6d7958c1-e3f9-4fc0-b435-48becf1b2a85": { + "node_ids": ["43408a31-702a-4ea9-9e9a-15c5d24e0040"], + "metadata": {} + }, + "a4f30077-4d90-44d0-8c71-0460dddb61b6": { + "node_ids": ["de188cbd-8053-4129-9d8b-18ccbec40b12"], + "metadata": {} + }, + "65c73543-0ad8-4e3d-9eb7-a02f7c1a25ba": { + "node_ids": ["65081f7f-fbb2-4b98-abb2-c498ffeed3ae"], + "metadata": {} + }, + "5d064bb1-9153-4a83-a418-ac61048f75f7": { + "node_ids": ["53f4439e-ed64-466a-b4e5-22f63fae7143"], + "metadata": {} + }, + "c02abb00-5b93-4ce6-9d15-b8ac8fe5b912": { + "node_ids": ["9f951089-d568-4e58-80d0-8e52a8fc72bf"], + "metadata": {} + }, + "5a272539-60fa-4cc2-8ed9-defb2a93ec29": { + "node_ids": ["b1ee9aa0-c711-4ca7-89af-d49425266d7b"], + "metadata": {} + }, + "65c01335-0e19-4a6f-8589-84871945c3f1": { + "node_ids": ["7c6b9285-17da-4a33-b28a-7e96d60a0e9c"], + "metadata": {} + }, + "f87b40d9-acd2-4f7a-adfb-68c995944c0a": { + "node_ids": ["14658e25-10cf-4679-8a52-bedbc8515f4c"], + "metadata": {} + }, + "338dc3bd-bb8c-4917-bf43-b78ea93307cf": { + "node_ids": ["a768f0e7-ac33-46a0-b154-f561a05c9d54"], + "metadata": {} + }, + "6787c86f-4310-44e7-9de7-0d2714c2406a": { + "node_ids": ["9937a4e2-dddb-4aba-9d47-b1c6da63e335"], + "metadata": {} + }, + "f874e13d-4827-496d-8a5a-5e3a179dbb9a": { + "node_ids": ["e2332648-6300-46c2-b1d5-f5966f11ce80"], + "metadata": {} + }, + "593bc266-2dad-46ff-91b2-2407ddcb728f": { + "node_ids": ["015aadd8-9061-4542-9d1c-6e0f3b3ec96f"], + "metadata": {} + }, + "c21d6297-441d-482c-bd53-0c2cb96c5182": { + "node_ids": ["2d3fc4ca-444d-41c9-ab17-80dd6d9025b6"], + "metadata": {} + }, + "e2067416-8439-4c4a-b79e-dced61c5014e": { + "node_ids": ["f6f713d6-68a5-45e1-aa49-aed586e59c7e"], + "metadata": {} + }, + "063c3711-676f-434c-b740-31157b4a3bf1": { + "node_ids": ["3667515a-1927-4b16-803c-9b93e91b7689"], + "metadata": {} + }, + "72907f82-fce1-453d-996d-f28d49f8da02": { + "node_ids": ["142927a5-1925-4ba1-b05d-67ad5f108340"], + "metadata": {} + }, + "c11ba473-1778-4590-b1f3-11a3aa5b84cf": { + "node_ids": ["d7ba5df5-4220-447e-b9ee-4506ddd585ca"], + "metadata": {} + }, + "8f6a1986-dc74-43f5-a73c-fae0b39f63d5": { + "node_ids": ["0308889d-fbbc-401a-88d1-998060d1c644"], + "metadata": {} + }, + "a9e9bd4b-c290-4c60-8851-3e2afccff780": { + "node_ids": ["7b7305d6-06d3-45c3-a5f1-48efe2b8822b"], + "metadata": {} + }, + "239d3466-8ebd-44f3-83a0-f0a84a9399ef": { + "node_ids": ["85c3ec39-c43e-47ee-9a60-ce18351fb179"], + "metadata": {} + }, + "7146cbb8-0e24-498a-85eb-118da108ba79": { + "node_ids": ["7bb6d9c2-1fff-480e-af0b-394d5fc50ed9"], + "metadata": {} + }, + "a20f90ff-e847-470f-ac6a-c5e2faf27a4b": { + "node_ids": ["8ac0adf3-cc9a-46bd-974d-a948fad3c944"], + "metadata": {} + }, + "589ddbac-899a-4953-9f20-945503678b04": { + "node_ids": ["9f536e57-d021-4982-9bc4-40dc7be00ac0"], + "metadata": {} + }, + "51774bff-dad7-40d9-9397-4811b534f7af": { + "node_ids": ["d503eb6e-392f-42be-9cfa-db7518dce2c5"], + "metadata": {} + }, + "3e772827-f248-4bda-a9de-f03fc494ec9f": { + "node_ids": ["36817ce8-f818-4583-a780-4cd4d2273a7f"], + "metadata": {} + }, + "8b454ca8-c4c0-4b7e-8db3-c2c16dd48df4": { + "node_ids": ["8dbc6456-9c2f-47cc-8485-c96d34aa3b1d"], + "metadata": {} + }, + "1875a318-4714-4d3c-9823-44fc04fdb80e": { + "node_ids": ["1a47a74d-b663-42ed-bb64-ec02a36930eb"], + "metadata": {} + }, + "53b7c8e9-4038-484a-9959-f8ba0c74cae4": { + "node_ids": ["1fd73fc0-2038-4b6e-8a5d-05c8c2708670"], + "metadata": {} + }, + "8dd08508-a0e8-453c-a261-bbfe9b400fb6": { + "node_ids": ["d1ac497c-fd25-43c8-92f7-1ddbf4876a6d"], + "metadata": {} + }, + "66f7f1e3-bd0b-4f26-acc9-3cbfe95bbd3b": { + "node_ids": ["3ceb959b-c18c-4b87-9ad6-57cd094ea347"], + "metadata": {} + }, + "dffac31e-407e-4db7-b748-eb0c3bde79be": { + "node_ids": ["85674089-ac2b-4e17-bcbd-8a26e52e0479"], + "metadata": {} + }, + "4e64e0d0-6fb6-4ef0-bbc9-969b00dd2a0e": { + "node_ids": ["c93eb83d-f192-4d6a-8804-f9fe024fc9b3"], + "metadata": {} + }, + "63778bd0-ea2a-439c-a6f8-c8bdca3b51b5": { + "node_ids": ["dd980b9d-c087-47af-a05e-e4f9293d6b00"], + "metadata": {} + }, + "9bfba4d9-ed41-44c0-8d14-473969cd5dc4": { + "node_ids": ["71a0db5b-8b05-43cb-a292-f738bf7f2a17"], + "metadata": {} + }, + "0796653b-31f7-4304-8d36-b504494351bc": { + "node_ids": ["f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c"], + "metadata": {} + }, + "7668d899-32f4-400d-a3bc-0fbcbbd0cb95": { + "node_ids": ["8bc678cb-61e4-40fd-ab1e-8fed5858f750"], + "metadata": {} + }, + "04f945e7-7bf2-4b4e-b6ee-46bb26a0e43d": { + "node_ids": ["a04d77c2-9ee7-4fce-a10e-6deba2887435"], + "metadata": {} + }, + "054eeaa3-1184-48bf-bcba-b9818dcd1460": { + "node_ids": ["df073b45-a9b0-4904-9148-43b9d1d631d2"], + "metadata": {} + }, + "d4e51f31-9576-4cce-9a5d-ab990a67d246": { + "node_ids": ["74df844b-7eff-4914-a518-ec5b4bfa7c38"], + "metadata": {} + }, + "2fadf236-b58c-4e5f-8564-f3ba31eb3c78": { + "node_ids": ["10b3958c-31b3-45bc-b6c5-8f633558f400"], + "metadata": {} + }, + "6dad88fc-3d36-45ad-b54b-e67d7dac95eb": { + "node_ids": ["98088bbe-3045-4978-8093-b2ce06830843"], + "metadata": {} + }, + "5b4f6747-16ad-461d-8b0a-c684dafea1b2": { + "node_ids": ["40193ed8-343f-4536-b10c-0458b2fc74de"], + "metadata": {} + }, + "9bef55e2-a359-4dd2-90ea-3cabbefb0c88": { + "node_ids": ["0cedb3c9-bd2d-49bc-9fe7-545e37a535d8"], + "metadata": {} + }, + "4290c0a3-68bf-46b8-a963-70834ce30d40": { + "node_ids": ["b463a27e-a692-441a-a66a-34610730ddb4"], + "metadata": {} + }, + "d73a7539-5dab-4229-8697-1a8457247d95": { + "node_ids": ["5bcc62da-2d01-4aae-8bd6-f2d7e9466a99"], + "metadata": {} + }, + "3186adb2-a93b-456c-9014-b74e712385ef": { + "node_ids": ["cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72"], + "metadata": {} + }, + "fc5e1e3b-d5b3-4868-a3f7-6e7389caaa1d": { + "node_ids": ["77735169-8e6a-4805-90b5-fd8136f8f40c"], + "metadata": {} + }, + "5b1021d4-fe9e-40eb-96de-d32a43140447": { + "node_ids": ["5135e964-9062-4dc9-87f5-78f4213b7f6b"], + "metadata": {} + }, + "15bf1853-8534-448c-9b4e-11b26c0ef7a6": { + "node_ids": ["a6368a15-a882-4d45-8337-5aa16131c81f"], + "metadata": {} + }, + "607f4a8d-bd16-4b4f-9895-8eb8427ad64f": { + "node_ids": ["da8f1f6d-d1f6-4677-9d6a-6af17b5b9865"], + "metadata": {} + }, + "44b43dc1-b557-4eff-9fba-7896c635050a": { + "node_ids": ["6c9d3854-7c5d-4087-8fbf-29be8953f7cd"], + "metadata": {} + }, + "dcf13e3c-3703-4312-8edc-b0f117d4621d": { + "node_ids": ["22aacff5-a1e6-48b8-87da-3bc0a6b6275b"], + "metadata": {} + }, + "7c3b415f-c1b0-4471-86a8-ade398a7faad": { + "node_ids": ["06eaef47-1d7b-4bb7-9b9b-f2881d1efaed"], + "metadata": {} + }, + "d8411fc9-1c7b-4d0a-b95d-17a1e255610c": { + "node_ids": ["52d0dadc-b060-48fd-9e7a-177efef38efa"], + "metadata": {} + }, + "48580fdc-e332-45f5-9d2d-147d9d022b2f": { + "node_ids": ["6d4117d6-bc83-44a5-ad19-d828afa2baed"], + "metadata": {} + }, + "c0ceb309-98cf-484d-9330-0f6b8b5b2fda": { + "node_ids": ["9f93ecb7-2d49-48f8-a8a1-baa72fb39565"], + "metadata": {} + }, + "f50ac71e-4df1-4edd-b7ce-a512a5e0193c": { + "node_ids": ["4d609ec0-9a7a-46ce-a769-d2daf0141978"], + "metadata": {} + }, + "f58f5abd-6ca3-435d-9fb4-f58d8a52ecf6": { + "node_ids": ["39b7cc27-3b1a-459c-87ac-cb805e0845d9"], + "metadata": {} + }, + "e958b6ee-5340-451f-b8c1-0ecab8b293ae": { + "node_ids": ["348b7fb0-1e7b-4f03-958e-72413469a02c"], + "metadata": {} + }, + "6c339873-d97d-46e5-a495-1a6b0ea42dc7": { + "node_ids": ["aaac39b2-41ce-49a5-ac24-516f873a8dc7"], + "metadata": {} + }, + "03dd3269-d126-4a95-81e6-c49974907666": { + "node_ids": ["9850698b-a7f7-478c-b6b5-cfc4b75c04fa"], + "metadata": {} + }, + "c1bb2b52-a549-4578-84fe-c57c6e5d5446": { + "node_ids": ["239e054c-bffc-4992-8627-8d9f80c066cd"], + "metadata": {} + }, + "1900616f-5e01-48f1-91ec-e432ba515157": { + "node_ids": ["81857120-fce6-4805-a1f5-878400b46bb2"], + "metadata": {} + }, + "5026023d-8ff8-43ec-8237-b36e371c2b42": { + "node_ids": ["6eee3782-64f2-49e8-9fda-c9b53e8827f1"], + "metadata": {} + }, + "8022cdf6-05a3-43a8-b4f0-eab40c0ca5d5": { + "node_ids": ["135a0c63-420e-4970-a69a-f967e1e36a40"], + "metadata": {} + }, + "83b58953-3e2b-430c-ba54-04564ae2c764": { + "node_ids": ["960e584f-7c70-412b-81bc-cbe29ca6c5fa"], + "metadata": {} + }, + "c95ce074-0ee7-44fb-9265-c7326923b8ad": { + "node_ids": ["df1eae99-5b15-4b4e-bfca-c42eed6ef25b"], + "metadata": {} + }, + "01f5fbc0-b6d5-48c1-a788-c84272dc4c24": { + "node_ids": ["ea331090-3f76-40c9-af80-2bb8df1e5638"], + "metadata": {} + }, + "7f196e1d-f25a-42f1-8526-3d0edcc9182a": { + "node_ids": ["38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0"], + "metadata": {} + }, + "02842d37-142a-4115-8687-30678a03d6ca": { + "node_ids": ["55f0fba3-64d0-45fa-959f-de7abf3d8afe"], + "metadata": {} + }, + "6880a3bd-3700-4428-b73d-357543a854e7": { + "node_ids": ["a081ad6b-87d5-4df2-8ffd-85afdc75a174"], + "metadata": {} + }, + "6bb45b06-7c91-4f10-9550-fb02eb6c685b": { + "node_ids": ["88c08258-e948-4a2a-b0a8-e7d746e760a0"], + "metadata": {} + }, + "a5a27515-0a35-45fe-887b-4b9035eb06de": { + "node_ids": ["fbd23709-de50-4ee7-9fe4-b9091aad8af0"], + "metadata": {} + }, + "771a3b45-733d-49cb-8395-0a54423466fd": { + "node_ids": ["2b48de5c-e88d-4082-b30e-95790ede9e7a"], + "metadata": {} + }, + "ea64cc92-be5c-4386-91cc-6e7d4039a2b9": { + "node_ids": ["c92dd0dc-c2d7-40d9-a9e4-36c908174d04"], + "metadata": {} + }, + "9cc97ebb-4e1e-46fd-981a-56b41d5ddab8": { + "node_ids": ["2135c16e-6e34-425c-9901-4d9d31e2239c"], + "metadata": {} + }, + "5fd235a1-a085-4785-b45a-ee39fdb2cbb7": { + "node_ids": ["a540806a-9e44-4c09-90a2-72ef5870e1c3"], + "metadata": {} + }, + "98407fd2-3fa3-4953-ac50-1364d6b8f934": { + "node_ids": ["aed67281-3a13-42b8-b9ec-2031d631c4f1"], + "metadata": {} + }, + "19306ea4-0457-431a-b8ec-fdc9817e759e": { + "node_ids": ["1d74e06e-21a1-4b8c-bb5c-4866a1a9531f"], + "metadata": {} + } + } +} diff --git a/opentrons-ai-server/api/storage/index/commands/graph_store.json b/opentrons-ai-server/api/storage/index/commands/graph_store.json new file mode 100644 index 00000000000..5ede88ebe0a --- /dev/null +++ b/opentrons-ai-server/api/storage/index/commands/graph_store.json @@ -0,0 +1 @@ +{ "graph_dict": {} } diff --git a/opentrons-ai-server/api/storage/index/commands/image__vector_store.json b/opentrons-ai-server/api/storage/index/commands/image__vector_store.json new file mode 100644 index 00000000000..b57c98cdf4e --- /dev/null +++ b/opentrons-ai-server/api/storage/index/commands/image__vector_store.json @@ -0,0 +1 @@ +{ "embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {} } diff --git a/opentrons-ai-server/api/storage/index/commands/index_store.json b/opentrons-ai-server/api/storage/index/commands/index_store.json new file mode 100644 index 00000000000..52a0b5d8a4a --- /dev/null +++ b/opentrons-ai-server/api/storage/index/commands/index_store.json @@ -0,0 +1,8 @@ +{ + "index_store/data": { + "960428fb-6cd2-4b89-b664-ceadbb3bcf8f": { + "__type__": "vector_store", + "__data__": "{\"index_id\": \"960428fb-6cd2-4b89-b664-ceadbb3bcf8f\", \"summary\": null, \"nodes_dict\": {\"8ee005f6-4244-4150-8397-38b43c51d568\": \"8ee005f6-4244-4150-8397-38b43c51d568\", \"b62ec4b9-7646-4d54-ab3f-a82f006e5b48\": \"b62ec4b9-7646-4d54-ab3f-a82f006e5b48\", \"c455d382-4822-4de9-99de-ed945e58c6d0\": \"c455d382-4822-4de9-99de-ed945e58c6d0\", \"472c884d-6522-40ed-afef-993a922a8de6\": \"472c884d-6522-40ed-afef-993a922a8de6\", \"43408a31-702a-4ea9-9e9a-15c5d24e0040\": \"43408a31-702a-4ea9-9e9a-15c5d24e0040\", \"de188cbd-8053-4129-9d8b-18ccbec40b12\": \"de188cbd-8053-4129-9d8b-18ccbec40b12\", \"65081f7f-fbb2-4b98-abb2-c498ffeed3ae\": \"65081f7f-fbb2-4b98-abb2-c498ffeed3ae\", \"53f4439e-ed64-466a-b4e5-22f63fae7143\": \"53f4439e-ed64-466a-b4e5-22f63fae7143\", \"9f951089-d568-4e58-80d0-8e52a8fc72bf\": \"9f951089-d568-4e58-80d0-8e52a8fc72bf\", \"b1ee9aa0-c711-4ca7-89af-d49425266d7b\": \"b1ee9aa0-c711-4ca7-89af-d49425266d7b\", \"7c6b9285-17da-4a33-b28a-7e96d60a0e9c\": \"7c6b9285-17da-4a33-b28a-7e96d60a0e9c\", \"14658e25-10cf-4679-8a52-bedbc8515f4c\": \"14658e25-10cf-4679-8a52-bedbc8515f4c\", \"a768f0e7-ac33-46a0-b154-f561a05c9d54\": \"a768f0e7-ac33-46a0-b154-f561a05c9d54\", \"9937a4e2-dddb-4aba-9d47-b1c6da63e335\": \"9937a4e2-dddb-4aba-9d47-b1c6da63e335\", \"e2332648-6300-46c2-b1d5-f5966f11ce80\": \"e2332648-6300-46c2-b1d5-f5966f11ce80\", \"015aadd8-9061-4542-9d1c-6e0f3b3ec96f\": \"015aadd8-9061-4542-9d1c-6e0f3b3ec96f\", \"2d3fc4ca-444d-41c9-ab17-80dd6d9025b6\": \"2d3fc4ca-444d-41c9-ab17-80dd6d9025b6\", \"f6f713d6-68a5-45e1-aa49-aed586e59c7e\": \"f6f713d6-68a5-45e1-aa49-aed586e59c7e\", \"3667515a-1927-4b16-803c-9b93e91b7689\": \"3667515a-1927-4b16-803c-9b93e91b7689\", \"142927a5-1925-4ba1-b05d-67ad5f108340\": \"142927a5-1925-4ba1-b05d-67ad5f108340\", \"d7ba5df5-4220-447e-b9ee-4506ddd585ca\": \"d7ba5df5-4220-447e-b9ee-4506ddd585ca\", \"0308889d-fbbc-401a-88d1-998060d1c644\": \"0308889d-fbbc-401a-88d1-998060d1c644\", \"7b7305d6-06d3-45c3-a5f1-48efe2b8822b\": \"7b7305d6-06d3-45c3-a5f1-48efe2b8822b\", \"85c3ec39-c43e-47ee-9a60-ce18351fb179\": \"85c3ec39-c43e-47ee-9a60-ce18351fb179\", \"7bb6d9c2-1fff-480e-af0b-394d5fc50ed9\": \"7bb6d9c2-1fff-480e-af0b-394d5fc50ed9\", \"8ac0adf3-cc9a-46bd-974d-a948fad3c944\": \"8ac0adf3-cc9a-46bd-974d-a948fad3c944\", \"9f536e57-d021-4982-9bc4-40dc7be00ac0\": \"9f536e57-d021-4982-9bc4-40dc7be00ac0\", \"d503eb6e-392f-42be-9cfa-db7518dce2c5\": \"d503eb6e-392f-42be-9cfa-db7518dce2c5\", \"36817ce8-f818-4583-a780-4cd4d2273a7f\": \"36817ce8-f818-4583-a780-4cd4d2273a7f\", \"8dbc6456-9c2f-47cc-8485-c96d34aa3b1d\": \"8dbc6456-9c2f-47cc-8485-c96d34aa3b1d\", \"1a47a74d-b663-42ed-bb64-ec02a36930eb\": \"1a47a74d-b663-42ed-bb64-ec02a36930eb\", \"1fd73fc0-2038-4b6e-8a5d-05c8c2708670\": \"1fd73fc0-2038-4b6e-8a5d-05c8c2708670\", \"d1ac497c-fd25-43c8-92f7-1ddbf4876a6d\": \"d1ac497c-fd25-43c8-92f7-1ddbf4876a6d\", \"3ceb959b-c18c-4b87-9ad6-57cd094ea347\": \"3ceb959b-c18c-4b87-9ad6-57cd094ea347\", \"85674089-ac2b-4e17-bcbd-8a26e52e0479\": \"85674089-ac2b-4e17-bcbd-8a26e52e0479\", \"c93eb83d-f192-4d6a-8804-f9fe024fc9b3\": \"c93eb83d-f192-4d6a-8804-f9fe024fc9b3\", \"dd980b9d-c087-47af-a05e-e4f9293d6b00\": \"dd980b9d-c087-47af-a05e-e4f9293d6b00\", \"71a0db5b-8b05-43cb-a292-f738bf7f2a17\": \"71a0db5b-8b05-43cb-a292-f738bf7f2a17\", \"f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c\": \"f615d4cb-ae83-4b8d-b75c-3dd1f1a6691c\", \"8bc678cb-61e4-40fd-ab1e-8fed5858f750\": \"8bc678cb-61e4-40fd-ab1e-8fed5858f750\", \"a04d77c2-9ee7-4fce-a10e-6deba2887435\": \"a04d77c2-9ee7-4fce-a10e-6deba2887435\", \"df073b45-a9b0-4904-9148-43b9d1d631d2\": \"df073b45-a9b0-4904-9148-43b9d1d631d2\", \"74df844b-7eff-4914-a518-ec5b4bfa7c38\": \"74df844b-7eff-4914-a518-ec5b4bfa7c38\", \"10b3958c-31b3-45bc-b6c5-8f633558f400\": \"10b3958c-31b3-45bc-b6c5-8f633558f400\", \"98088bbe-3045-4978-8093-b2ce06830843\": \"98088bbe-3045-4978-8093-b2ce06830843\", \"40193ed8-343f-4536-b10c-0458b2fc74de\": \"40193ed8-343f-4536-b10c-0458b2fc74de\", \"0cedb3c9-bd2d-49bc-9fe7-545e37a535d8\": \"0cedb3c9-bd2d-49bc-9fe7-545e37a535d8\", \"b463a27e-a692-441a-a66a-34610730ddb4\": \"b463a27e-a692-441a-a66a-34610730ddb4\", \"5bcc62da-2d01-4aae-8bd6-f2d7e9466a99\": \"5bcc62da-2d01-4aae-8bd6-f2d7e9466a99\", \"cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72\": \"cee15c6d-c4a3-4bc3-9b55-95ca4e98fc72\", \"77735169-8e6a-4805-90b5-fd8136f8f40c\": \"77735169-8e6a-4805-90b5-fd8136f8f40c\", \"5135e964-9062-4dc9-87f5-78f4213b7f6b\": \"5135e964-9062-4dc9-87f5-78f4213b7f6b\", \"a6368a15-a882-4d45-8337-5aa16131c81f\": \"a6368a15-a882-4d45-8337-5aa16131c81f\", \"da8f1f6d-d1f6-4677-9d6a-6af17b5b9865\": \"da8f1f6d-d1f6-4677-9d6a-6af17b5b9865\", \"6c9d3854-7c5d-4087-8fbf-29be8953f7cd\": \"6c9d3854-7c5d-4087-8fbf-29be8953f7cd\", \"22aacff5-a1e6-48b8-87da-3bc0a6b6275b\": \"22aacff5-a1e6-48b8-87da-3bc0a6b6275b\", \"06eaef47-1d7b-4bb7-9b9b-f2881d1efaed\": \"06eaef47-1d7b-4bb7-9b9b-f2881d1efaed\", \"52d0dadc-b060-48fd-9e7a-177efef38efa\": \"52d0dadc-b060-48fd-9e7a-177efef38efa\", \"6d4117d6-bc83-44a5-ad19-d828afa2baed\": \"6d4117d6-bc83-44a5-ad19-d828afa2baed\", \"9f93ecb7-2d49-48f8-a8a1-baa72fb39565\": \"9f93ecb7-2d49-48f8-a8a1-baa72fb39565\", \"4d609ec0-9a7a-46ce-a769-d2daf0141978\": \"4d609ec0-9a7a-46ce-a769-d2daf0141978\", \"39b7cc27-3b1a-459c-87ac-cb805e0845d9\": \"39b7cc27-3b1a-459c-87ac-cb805e0845d9\", \"348b7fb0-1e7b-4f03-958e-72413469a02c\": \"348b7fb0-1e7b-4f03-958e-72413469a02c\", \"aaac39b2-41ce-49a5-ac24-516f873a8dc7\": \"aaac39b2-41ce-49a5-ac24-516f873a8dc7\", \"9850698b-a7f7-478c-b6b5-cfc4b75c04fa\": \"9850698b-a7f7-478c-b6b5-cfc4b75c04fa\", \"239e054c-bffc-4992-8627-8d9f80c066cd\": \"239e054c-bffc-4992-8627-8d9f80c066cd\", \"81857120-fce6-4805-a1f5-878400b46bb2\": \"81857120-fce6-4805-a1f5-878400b46bb2\", \"6eee3782-64f2-49e8-9fda-c9b53e8827f1\": \"6eee3782-64f2-49e8-9fda-c9b53e8827f1\", \"135a0c63-420e-4970-a69a-f967e1e36a40\": \"135a0c63-420e-4970-a69a-f967e1e36a40\", \"960e584f-7c70-412b-81bc-cbe29ca6c5fa\": \"960e584f-7c70-412b-81bc-cbe29ca6c5fa\", \"df1eae99-5b15-4b4e-bfca-c42eed6ef25b\": \"df1eae99-5b15-4b4e-bfca-c42eed6ef25b\", \"ea331090-3f76-40c9-af80-2bb8df1e5638\": \"ea331090-3f76-40c9-af80-2bb8df1e5638\", \"38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0\": \"38fe6fc4-fc80-4a9e-bbcd-f9f8f09a8cd0\", \"55f0fba3-64d0-45fa-959f-de7abf3d8afe\": \"55f0fba3-64d0-45fa-959f-de7abf3d8afe\", \"a081ad6b-87d5-4df2-8ffd-85afdc75a174\": \"a081ad6b-87d5-4df2-8ffd-85afdc75a174\", \"88c08258-e948-4a2a-b0a8-e7d746e760a0\": \"88c08258-e948-4a2a-b0a8-e7d746e760a0\", \"fbd23709-de50-4ee7-9fe4-b9091aad8af0\": \"fbd23709-de50-4ee7-9fe4-b9091aad8af0\", \"2b48de5c-e88d-4082-b30e-95790ede9e7a\": \"2b48de5c-e88d-4082-b30e-95790ede9e7a\", \"c92dd0dc-c2d7-40d9-a9e4-36c908174d04\": \"c92dd0dc-c2d7-40d9-a9e4-36c908174d04\", \"2135c16e-6e34-425c-9901-4d9d31e2239c\": \"2135c16e-6e34-425c-9901-4d9d31e2239c\", \"a540806a-9e44-4c09-90a2-72ef5870e1c3\": \"a540806a-9e44-4c09-90a2-72ef5870e1c3\", \"aed67281-3a13-42b8-b9ec-2031d631c4f1\": \"aed67281-3a13-42b8-b9ec-2031d631c4f1\", \"1d74e06e-21a1-4b8c-bb5c-4866a1a9531f\": \"1d74e06e-21a1-4b8c-bb5c-4866a1a9531f\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}" + } + } +} diff --git a/opentrons-ai-server/api/storage/index/v215/default__vector_store.json b/opentrons-ai-server/api/storage/index/v215/default__vector_store.json new file mode 100644 index 00000000000..3e22eefca31 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v215/default__vector_store.json @@ -0,0 +1,638810 @@ +{ + "embedding_dict": { + "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9": [ + -0.01052004937082529, + -0.027105191722512245, + -0.015278259292244911, + 0.04863627254962921, + -0.003321360796689987, + 0.017892025411128998, + 0.00935757253319025, + 0.021718811243772507, + -0.03272262215614319, + 0.02919909358024597, + 0.009054318070411682, + 0.005227533169090748, + 0.04199355095624924, + -0.004639074672013521, + 0.002398960990831256, + 0.012483984231948853, + -0.013530935160815716, + 0.012780018150806427, + 0.005729347001761198, + -0.02844817563891411, + 0.036823783069849014, + -0.033329132944345474, + -0.039278700947761536, + -0.012462322600185871, + -0.013610358349978924, + 0.0252712219953537, + -0.01016625203192234, + 0.011032694019377232, + -0.032087232917547226, + 0.010317879728972912, + 0.01672232896089554, + 0.014657309278845787, + -0.028000514954328537, + 0.009675268083810806, + 0.024534747004508972, + -0.049069494009017944, + 0.03174065425992012, + 0.009350351989269257, + -0.018440771847963333, + 0.008223977871239185, + -0.03252045437693596, + 0.0018989519448950887, + 0.009054318070411682, + -0.007390027400106192, + -0.02421705238521099, + -0.006595788989216089, + -0.040520600974559784, + -0.00709038320928812, + -0.024448102340102196, + -0.04049171879887581, + -0.005884584970772266, + -0.007350315805524588, + -0.006880993023514748, + 0.019668230786919594, + 0.04600806534290314, + -0.03278038650751114, + 0.019003959372639656, + 0.03159624710679054, + 0.01347317174077034, + -0.043755318969488144, + 0.01685229502618313, + -0.04543043673038483, + 0.02707630954682827, + -0.014202427119016647, + 0.022975152358412743, + 0.019725995138287544, + -0.02538674883544445, + 0.008498351089656353, + -0.006725755520164967, + 0.011256524361670017, + -0.007603027857840061, + 0.033069200813770294, + -0.03263597935438156, + -0.010339540429413319, + -0.0065452465787529945, + -0.006343076936900616, + 0.04612359032034874, + 0.000579433050006628, + -0.004624633584171534, + -0.023105118423700333, + -0.003288869047537446, + 0.009032657369971275, + 0.013090493157505989, + 0.016751211136579514, + 0.029256856068968773, + 0.01230347529053688, + -0.019855961203575134, + -0.0388454794883728, + -0.016549041494727135, + -0.02713407389819622, + -0.03376235440373421, + -0.002803300740197301, + -0.006974857300519943, + -0.008021808229386806, + -0.014043579809367657, + 0.04017402231693268, + 0.03127855435013771, + 0.0045379893854260445, + -0.03012329712510109, + -0.031769536435604095, + -0.016563480719923973, + -0.01709778793156147, + 0.029834482818841934, + -0.008628317154943943, + 0.03393564373254776, + -0.030152179300785065, + -0.021401114761829376, + -0.011761949397623539, + -0.006007330492138863, + 0.05233309045433998, + -0.0066355010494589806, + -0.013660901226103306, + -0.005870143882930279, + -0.005339448340237141, + -0.040318429470062256, + -0.038383375853300095, + -0.03283814713358879, + -0.03480208292603493, + -0.008520012721419334, + -0.00330330990254879, + 0.042975518852472305, + -0.0005839457735419273, + -0.014686190523207188, + -0.002754563232883811, + -0.02752397209405899, + -0.002971173729747534, + 0.0010686117457225919, + 0.025892172008752823, + 0.031105265021324158, + 0.02992112748324871, + -0.04182026535272598, + -0.03133631497621536, + 0.020231418311595917, + -0.025213459506630898, + 0.0219643022865057, + 0.02047691121697426, + 0.00839004572480917, + 0.01331432443112135, + -0.006790738552808762, + 0.01735772006213665, + -0.02241196483373642, + 0.016202464699745178, + -0.0031769536435604095, + 0.04222460463643074, + 0.018238602206110954, + 0.010462285950779915, + -0.019653791561722755, + 0.03191394358873367, + -0.010606693103909492, + 0.0013086883118376136, + -0.08745287358760834, + -0.013480392284691334, + -0.014397376216948032, + -0.010375642217695713, + 0.03618839010596275, + -0.011523677967488766, + 0.008187876082956791, + 0.023523898795247078, + 0.023408371955156326, + 0.05839818716049194, + 0.03335801512002945, + -0.037545815110206604, + -0.011162660084664822, + 0.02765393815934658, + 0.03930758312344551, + 0.01574036106467247, + 0.05452807992696762, + 0.008657199330627918, + -0.011935237795114517, + 0.021097861230373383, + 0.0009991158731281757, + -0.04092494025826454, + 0.012289034202694893, + 0.023278405889868736, + -0.030556518584489822, + -0.01428185123950243, + 0.04228236526250839, + 0.03595734015107155, + 0.012115745805203915, + -0.026975225657224655, + -0.04372643679380417, + -0.012151847593486309, + 0.02506905235350132, + 0.02020253799855709, + 0.03945199027657509, + 0.03038323111832142, + 0.019509384408593178, + 0.021343352273106575, + -0.00010367970389779657, + -0.006361127831041813, + 0.022123150527477264, + 0.018744027242064476, + -0.009603064507246017, + 0.0018330662278458476, + -0.033126961439847946, + -0.029126890003681183, + 0.0005329520208761096, + 0.010180692188441753, + 0.015841446816921234, + 0.030672043561935425, + -0.005624652374535799, + -0.0358995757997036, + -0.04956047981977463, + 0.035321950912475586, + -0.029718957841396332, + 0.033589065074920654, + -0.013393748551607132, + -0.004790701903402805, + 0.059437915682792664, + -0.05109119042754173, + 0.019336095079779625, + -0.05990001931786537, + -0.0028195464983582497, + -0.0220220647752285, + 0.014101342298090458, + 0.01898951828479767, + 0.008252859115600586, + 0.03699706867337227, + -0.01431073248386383, + -0.015465988777577877, + 0.04317769035696983, + 0.01166086457669735, + -0.01742992363870144, + -0.006920705083757639, + -0.04491057246923447, + 0.016101378947496414, + -0.05117783695459366, + 0.04418853670358658, + -0.03647720441222191, + 0.017213312909007072, + 0.018570737913250923, + -0.0130182895809412, + 0.01356703694909811, + -0.008556113578379154, + -0.012440661899745464, + 0.021256709471344948, + 0.04309104382991791, + -0.014556224457919598, + -0.008014587685465813, + 0.0038592766504734755, + -0.025545595213770866, + 0.016808973625302315, + -0.009408115409314632, + -0.001337569672614336, + 0.006801568903028965, + 0.017401041463017464, + -0.02241196483373642, + 0.08959009498357773, + -0.023206202313303947, + -0.014729512855410576, + 0.025892172008752823, + 0.008577775210142136, + 0.013480392284691334, + 0.02384159341454506, + -0.028000514954328537, + 0.02843373641371727, + 0.02945902571082115, + -0.014787275344133377, + -0.026931902393698692, + -0.011444253847002983, + 0.03168289363384247, + 0.017762059345841408, + 0.027957193553447723, + -0.003344826865941286, + 0.011538118124008179, + 0.00813011359423399, + 0.05117783695459366, + -0.006649941671639681, + 0.02505461312830448, + 0.010628354735672474, + 0.015855887904763222, + 0.011826932430267334, + -0.022960711270570755, + 0.03771910443902016, + 0.010570591315627098, + -0.007624689023941755, + 0.014375715516507626, + -0.0022689946927130222, + 0.049387190490961075, + 0.018801789730787277, + -0.018224161118268967, + 0.028866956010460854, + -0.0003064135671593249, + -0.01722775399684906, + 0.030209941789507866, + 0.015567073598504066, + -0.05051356554031372, + -0.022238675504922867, + -0.036246154457330704, + -0.03038323111832142, + 0.013408188708126545, + -0.007841299287974834, + 0.00813011359423399, + 0.007436960004270077, + -0.0038051242008805275, + -0.026513122022151947, + 0.004646294750273228, + 0.012866662815213203, + 0.02317732200026512, + 0.01311215478926897, + -0.0072636716067790985, + -0.02358166128396988, + 0.0065452465787529945, + -0.025415629148483276, + 0.04288887605071068, + -0.0234372541308403, + 0.020780164748430252, + 0.03148072212934494, + -0.04961824044585228, + -0.002583079971373081, + 0.02462139166891575, + -0.012592289596796036, + -0.025560036301612854, + -0.01911948435008526, + -0.013660901226103306, + -0.004353870637714863, + -0.01910504512488842, + -0.0019675451330840588, + -0.012238492257893085, + -0.051322244107723236, + -0.019653791561722755, + -0.03370459005236626, + -0.0772288590669632, + 0.001913392567075789, + 0.06775575876235962, + -0.04892508685588837, + 0.03226052224636078, + 0.0018772908952087164, + -0.04707667976617813, + 0.01956714689731598, + -0.04311992600560188, + 0.0024115967098623514, + -0.019725995138287544, + 0.004888176452368498, + -0.06065093353390694, + -0.020693521946668625, + -0.05215980485081673, + -0.022700779139995575, + 0.0077329943887889385, + -0.028780313208699226, + -0.005902635399252176, + 3.75965864805039e-5, + 0.007223959546536207, + -0.012873883359134197, + -0.027047429233789444, + -0.010325099341571331, + 0.011249304749071598, + 0.023538339883089066, + -0.021415555849671364, + 0.0060759237967431545, + 0.000962111575063318, + -0.0069929081946611404, + 0.03968304023146629, + -0.017848704010248184, + 0.03945199027657509, + 0.00329608959145844, + -0.01742992363870144, + 0.00028046543593518436, + 0.015538191422820091, + -0.01807975396513939, + 0.004202243406325579, + -0.05395045131444931, + -0.004270836710929871, + 0.005133668426424265, + -0.032347165048122406, + 0.00028294743970036507, + -0.0033917592372745275, + -0.011328727938234806, + -0.015162733383476734, + 0.009935201145708561, + -0.029978889971971512, + 0.010924388654530048, + -0.013451511040329933, + -0.032289400696754456, + -0.02798607386648655, + -0.02280186302959919, + 0.028159363195300102, + -0.02570444345474243, + -0.012057983316481113, + 0.037603579461574554, + -0.01524937804788351, + -0.022180913016200066, + 0.027567293494939804, + 0.03595734015107155, + 0.028087159618735313, + -0.0022112319711595774, + -0.02423149161040783, + -0.0348309651017189, + -0.05241973698139191, + 0.009964082390069962, + 0.009595843963325024, + -0.012577848508954048, + -0.015032767318189144, + -0.003231106325984001, + -0.025949936360120773, + 0.00425639608874917, + -0.016534600406885147, + -0.01275835745036602, + 0.01049838773906231, + -0.012852221727371216, + 0.006888213101774454, + -0.031134147197008133, + -0.019263891503214836, + -0.017068905755877495, + 0.032491572201251984, + -0.013993036933243275, + -0.019018400460481644, + -0.006646331399679184, + 0.027957193553447723, + 0.006696874275803566, + -0.010224014520645142, + 0.039596397429704666, + -0.005927906837314367, + 0.03514866158366203, + 0.034686557948589325, + -0.0076174684800207615, + -0.012613950297236443, + 0.055856622755527496, + -0.014527343213558197, + -0.01813751831650734, + 0.04753877967596054, + 0.024924645200371742, + 0.0220220647752285, + -0.00438636215403676, + 0.04075165092945099, + 0.004765430465340614, + -0.029718957841396332, + 0.02395711839199066, + -0.006696874275803566, + 0.011552559211850166, + 0.016808973625302315, + 0.03194282576441765, + 0.01318435836583376, + -0.01418076641857624, + -0.021675487980246544, + 0.012086864560842514, + 0.00448744697496295, + -0.032607097178697586, + -0.0053213974460959435, + 0.005584940314292908, + -0.0347154401242733, + 0.003424250753596425, + -0.02823156677186489, + 0.0021426386665552855, + -0.04075165092945099, + -0.015567073598504066, + -0.009393674321472645, + 0.030672043561935425, + 0.0035181152634322643, + -0.06353907287120819, + -0.0015731336316093802, + 0.028289329260587692, + -0.054239265620708466, + -0.0015803539426997304, + 0.018541857600212097, + -0.021661048755049706, + 0.0015866718022152781, + -0.005166159942746162, + 0.053343940526247025, + -0.036246154457330704, + 0.00413003982976079, + -0.01110489759594202, + 0.03607286512851715, + 0.0036571070086210966, + 0.030527636408805847, + -0.026975225657224655, + 0.007451400626450777, + 0.0013159086229279637, + -0.003465767716988921, + 0.01729995757341385, + 0.0031083603389561176, + -0.0589180514216423, + -0.03950975090265274, + 0.02480912022292614, + 0.015552632510662079, + 0.023740509524941444, + -0.005570499692112207, + -0.028462616726756096, + 0.02571888454258442, + -0.03321360796689987, + 0.0002664760104380548, + 0.02901136316359043, + 0.04586365818977356, + -0.02285962551832199, + 0.01659236289560795, + 0.007574146613478661, + -0.022902948781847954, + -0.00697846757248044, + 0.03462879732251167, + -0.02837597392499447, + 0.030931977555155754, + 0.019581587985157967, + 0.03673713654279709, + 0.012556187808513641, + -0.014816156588494778, + -0.04257117956876755, + -0.011964119039475918, + -0.026830818504095078, + 0.005584940314292908, + -0.01670788787305355, + -0.013545375317335129, + 0.0017798161134123802, + -0.011812491342425346, + -0.02505461312830448, + 0.0019314434612169862, + 0.008534452877938747, + -0.023278405889868736, + 0.04961824044585228, + 0.021415555849671364, + -0.015913650393486023, + -0.05143776908516884, + 0.01659236289560795, + -0.028910279273986816, + -0.014743953011929989, + 0.007581366691738367, + 0.011126558296382427, + -0.018354129046201706, + -0.01275835745036602, + 0.028578143566846848, + -0.014845038764178753, + 0.0016254811780527234, + -0.020650198683142662, + -0.012317916378378868, + -0.002696800511330366, + -0.009798014536499977, + 0.011639202944934368, + 0.009444217197597027, + -0.020448029041290283, + 0.022180913016200066, + -0.020433587953448296, + -0.011162660084664822, + 0.008245638571679592, + -0.015827005729079247, + 0.026917463168501854, + 0.022787421941757202, + 0.0011805271496996284, + 0.007956825196743011, + 0.021877659484744072, + 0.020837929099798203, + -0.01026733685284853, + -0.04066500812768936, + 0.003920649643987417, + -0.03148072212934494, + -0.003754581790417433, + -0.016361311078071594, + 0.02304735593497753, + -0.01833968795835972, + -0.0012734890915453434, + 0.005906245671212673, + 0.03217387571930885, + -0.033271368592977524, + 0.021603286266326904, + 0.00906875915825367, + 0.003945921082049608, + -0.015018327161669731, + -0.031076382845640182, + 0.008317842148244381, + 0.009848556481301785, + -0.0015262013766914606, + -0.018614061176776886, + -0.011863034218549728, + 0.019393857568502426, + 0.015653718262910843, + 0.003010885789990425, + -0.0007062404183670878, + 0.0024910205975174904, + -0.0019946214742958546, + -0.0153793441131711, + 0.007242010440677404, + 0.02105453796684742, + 0.034368861466646194, + -0.0037293103523552418, + 0.014390156604349613, + -0.0008745648083277047, + -0.0025614190381020308, + 0.02441922202706337, + -0.010252895765006542, + 0.01917724870145321, + -0.0096824886277318, + -0.02194986119866371, + 0.032491572201251984, + 0.008960453793406487, + -0.02345169521868229, + 0.005093956366181374, + -0.02298959158360958, + 0.014577885158360004, + -0.03023882396519184, + -0.006155347917228937, + -0.016808973625302315, + -0.014946123585104942, + 0.021213386207818985, + 0.03220275789499283, + -0.026513122022151947, + 0.020577995106577873, + -0.003848446300253272, + 0.028159363195300102, + 0.0010650015901774168, + 0.040145143866539, + 0.019003959372639656, + 0.009177064523100853, + 0.029560109600424767, + 0.027162954211235046, + 0.005873754154890776, + 0.010946049354970455, + -0.005844872910529375, + 0.02356722019612789, + -0.0047437697649002075, + 0.004888176452368498, + -0.0006038017454557121, + 0.029386822134256363, + 0.017256634309887886, + -0.040260668843984604, + 0.032491572201251984, + -0.008881029672920704, + 0.010946049354970455, + 0.017920907586812973, + 0.01943718083202839, + -0.0001397814485244453, + 0.022296437993645668, + -0.020505791530013084, + 0.03136519715189934, + -0.027639497071504593, + 0.03485984727740288, + 0.018281925469636917, + -0.004516328684985638, + 0.03292479366064072, + -0.011372050270438194, + 0.00424195546656847, + -0.019841520115733147, + -0.026773056015372276, + 0.0005374647444114089, + -0.025632239878177643, + 0.00755970599129796, + -0.012231271713972092, + 0.010325099341571331, + -0.0019874011632055044, + 0.010361201129853725, + -0.010989371687173843, + 0.0020902911201119423, + 0.0015198835171759129, + -0.0077979774214327335, + -0.012895544059574604, + 0.007310603745281696, + 0.06787128746509552, + -0.01029621809720993, + 0.011761949397623539, + 0.01587032712996006, + 0.0070831626653671265, + 0.044795047491788864, + 0.022310879081487656, + -0.004974820651113987, + 0.008050689473748207, + 0.011552559211850166, + 0.030989740043878555, + 0.005418871995061636, + -0.005368329584598541, + -0.010361201129853725, + -0.011458694003522396, + -0.006664382293820381, + 0.004505497869104147, + 0.013935274444520473, + -0.03237604722380638, + 0.028000514954328537, + -0.0017572524957358837, + 0.01845521293580532, + -0.024823561310768127, + 0.025285663083195686, + -0.013350426219403744, + 0.030209941789507866, + 0.014029138721525669, + 0.029747840017080307, + 0.000638098397757858, + -0.011285406537353992, + 0.003106555435806513, + -0.005964008625596762, + 0.00076535705011338, + 0.009003776125609875, + 0.03717035800218582, + 0.019639350473880768, + -0.028549261391162872, + -0.02142999693751335, + -0.04649905115365982, + -0.02150220051407814, + 0.029560109600424767, + -0.023538339883089066, + 0.007436960004270077, + -0.020837929099798203, + -0.022787421941757202, + -0.016693448647856712, + 0.02280186302959919, + -0.0137258842587471, + 0.011372050270438194, + -0.002530732424929738, + 0.03133631497621536, + -0.024722475558519363, + -0.018224161118268967, + 0.010224014520645142, + -0.012231271713972092, + 0.002920631319284439, + 0.015133852139115334, + -0.008498351089656353, + -0.0226141344755888, + -0.000879077531863004, + 0.013227679766714573, + -0.002837597392499447, + -0.018224161118268967, + -0.017762059345841408, + -0.032347165048122406, + -0.007566926069557667, + 0.010245676152408123, + -0.0137258842587471, + 0.005130058154463768, + 0.01787758432328701, + 0.04066500812768936, + -0.00011620250006671995, + -0.0077329943887889385, + -0.017473245039582253, + 0.028968041762709618, + -0.0019061722559854388, + 0.031971707940101624, + -0.04034731164574623, + 0.00389537843875587, + -0.007285332307219505, + 0.0037148697301745415, + -0.0347154401242733, + 0.010599472559988499, + 0.008057910017669201, + 0.005841262638568878, + 0.018296364694833755, + -0.0013159086229279637, + 0.0361306294798851, + -0.0036769630387425423, + 0.005047024227678776, + 0.004382751882076263, + -0.007942384108901024, + -0.0011471330653876066, + -0.022585252299904823, + 0.036101747304201126, + 0.02137223444879055, + 0.00019303153385408223, + 0.01123486366122961, + 0.01253452617675066, + 0.014613986946642399, + -0.0006922510219737887, + 0.0004715790564659983, + -0.015711480751633644, + 0.017271075397729874, + 0.019408298656344414, + -0.04707667976617813, + -0.022585252299904823, + 0.014801716431975365, + -0.001520786085166037, + 0.007339484989643097, + 0.010339540429413319, + -0.0160002950578928, + 0.016606803983449936, + 0.021661048755049706, + -0.00916984397917986, + -0.0020361384376883507, + 0.05452807992696762, + -0.0466434583067894, + 0.011480355635285378, + 0.02112674154341221, + -0.020188096910715103, + -0.005906245671212673, + -0.00162728619761765, + 0.003458547405898571, + 0.006527195684611797, + 0.0227296594530344, + -0.00919872522354126, + 0.011761949397623539, + 0.022426405921578407, + 0.02300403267145157, + 0.017242195084691048, + -0.017083346843719482, + -0.009516420774161816, + 0.014700631611049175, + -0.040376193821430206, + -0.047712069004774094, + 0.0034639625810086727, + -0.05051356554031372, + -0.020433587953448296, + 0.014000257477164268, + -0.014173545874655247, + 0.0220220647752285, + -0.03433998301625252, + 0.04895396903157234, + -0.023913796991109848, + -0.004837634041905403, + 0.0050325836054980755, + 0.0057654487900435925, + 0.02155996300280094, + 0.02091013267636299, + 0.016924498602747917, + 0.0006570518016815186, + -0.03748805448412895, + 0.002709435997530818, + 0.009660827927291393, + -0.0292857363820076, + -0.006007330492138863, + 0.012072424404323101, + -0.003395369276404381, + 0.012317916378378868, + 0.014678969979286194, + 0.01224571280181408, + -0.028390413150191307, + -0.012707814574241638, + -0.0008853953331708908, + -0.04467952251434326, + 0.012390119954943657, + -0.005018142983317375, + 0.02112674154341221, + -0.002478384878486395, + 0.013177137821912766, + -0.028289329260587692, + 0.002140833530575037, + 0.004433294292539358, + -0.014657309278845787, + 0.030094416812062263, + 0.03711259737610817, + -0.029170211404561996, + -0.0035830982960760593, + 0.011805270798504353, + 0.008498351089656353, + 0.018614061176776886, + -0.029227973893284798, + -0.00035537657095119357, + 0.0045885322615504265, + 0.0053177871741354465, + -0.010021844878792763, + -0.034484390169382095, + -0.0006507340003736317, + -0.0010234845103695989, + 0.013819748535752296, + 0.011870254762470722, + 0.018758468329906464, + -0.014238528907299042, + -0.01558151375502348, + -0.02531454525887966, + 0.048867326229810715, + -0.0038087342400103807, + -0.041415922343730927, + -0.0013014680007472634, + -0.004086717963218689, + -0.010325099341571331, + -0.010606693103909492, + 0.016635684296488762, + 0.004451345186680555, + 0.02001480758190155, + 0.04525715112686157, + 0.03904765099287033, + -0.027177395299077034, + 0.034484390169382095, + -0.00035830982960760593, + -0.0070145693607628345, + 0.0057654487900435925, + 0.0039603617042303085, + 0.018383009359240532, + -0.0017843288369476795, + -0.0006809692131355405, + 0.009574183262884617, + 0.038441140204668045, + -0.040520600974559784, + 0.01360313780605793, + -0.00425639608874917, + -0.024202611297369003, + -0.0054116519168019295, + 0.011826932430267334, + 0.002651673275977373, + 0.011018252931535244, + -0.006808789446949959, + -0.010346760973334312, + 0.0027220717165619135, + 0.01678009144961834, + 0.026599766686558723, + 0.008382825180888176, + 0.0036390561144798994, + -0.01646239683032036, + 0.00023985098232515156, + -0.002231088001281023, + -0.008166215382516384, + 0.018801789730787277, + 0.0027491480577737093, + 0.01265727262943983, + -0.004689617082476616, + -0.026975225657224655, + -0.017660975456237793, + 0.008014587685465813, + -0.014484020881354809, + -0.017531007528305054, + -0.0010938829509541392, + 0.007346705533564091, + 0.01969711296260357, + -0.022527489811182022, + -0.010115709155797958, + 0.01639019325375557, + 0.0023195373360067606, + -0.0023141219280660152, + 0.004859295208007097, + 0.02008701115846634, + -0.003906209021806717, + -0.029834482818841934, + -0.0017256635474041104, + -0.0007919820491224527, + 0.03431110084056854, + -0.04280222952365875, + 0.019855961203575134, + 0.010801643133163452, + 0.04372643679380417, + 0.007841299287974834, + 0.022946270182728767, + 0.001382696907967329, + 2.0011086235172115e-5, + -0.01098215114325285, + 0.03413781151175499, + 0.02701854705810547, + -0.002133613219484687, + -0.03148072212934494, + -0.018238602206110954, + 0.0035433864686638117, + 0.01613026112318039, + 0.0031426569912582636, + 0.02791387028992176, + 0.027682820335030556, + -0.012845001183450222, + 0.014354054816067219, + -0.015018327161669731, + -0.02369718626141548, + 0.013494833372533321, + -0.021227827295660973, + 9.803880675463006e-5, + -0.013733104802668095, + 0.004328599665313959, + -0.013711443170905113, + 0.000923753425013274, + -0.01438293606042862, + -0.04222460463643074, + -0.004909837618470192, + 0.005927906837314367, + 0.017473245039582253, + -0.01227459404617548, + 0.012224051170051098, + 0.03422445431351662, + 0.0027942752931267023, + -0.011285406537353992, + -0.012924425303936005, + 0.0234372541308403, + 0.013978596776723862, + -0.003202224848791957, + -0.004065056797116995, + -0.013191577978432178, + -0.0136681217700243, + -0.005992889869958162, + -0.01572592183947563, + 0.026180986315011978, + 0.01049838773906231, + -0.021155623719096184, + -0.024173729121685028, + -0.008173435926437378, + 0.01813751831650734, + 0.000996408169157803, + 0.04208019748330116, + 0.004140870179980993, + 0.0026715293060988188, + -0.044130776077508926, + 0.001734688994474709, + -0.008086791262030602, + -0.004711277782917023, + -0.03321360796689987, + 0.008548893965780735, + 0.0025560036301612854, + 0.019090604037046432, + -0.01004350557923317, + 0.014187986962497234, + -0.022267557680606842, + -0.02311955951154232, + -0.011769169941544533, + -0.006584958638995886, + -0.023942679166793823, + -0.00823119841516018, + 0.019206129014492035, + -0.015177174471318722, + -0.010917168110609055, + -0.024433663114905357, + -0.021155623719096184, + -0.01846965402364731, + 0.0002694092981982976, + 0.01761765219271183, + -0.030845332890748978, + -0.0004413438437040895, + 0.01457066461443901, + -0.014419037848711014, + -0.0031697333324700594, + 0.021920980885624886, + 0.009047097526490688, + -0.0005880072130821645, + -0.012281814590096474, + -0.02073684334754944, + -0.0034765983000397682, + -0.010021844878792763, + -0.013964155688881874, + -0.0022816304117441177, + -0.02410152554512024, + 0.02300403267145157, + 0.03136519715189934, + 0.024173729121685028, + 0.0007703209994360805, + -0.03032546676695347, + -0.032491572201251984, + 0.02008701115846634, + -0.006177009083330631, + -0.03670825809240341, + -0.004176971968263388, + -0.017242195084691048, + -0.0023321728222072124, + 0.009855777025222778, + 0.03139407932758331, + -0.030036654323339462, + -0.0037437512073665857, + 0.01891731470823288, + -0.005563279148191214, + -0.030672043561935425, + 0.009386453777551651, + -0.024245932698249817, + -0.006436941679567099, + 0.009733030572533607, + -0.0072384001687169075, + 0.01042618416249752, + 0.013068832457065582, + 3.5396635212237015e-5, + -0.01548042893409729, + -0.0219643022865057, + -0.0016399218002334237, + -0.0034495219588279724, + 0.024173729121685028, + -0.008953233249485493, + -0.00848391093313694, + -0.0903410091996193, + -0.01774761825799942, + -0.019003959372639656, + 0.0043394300155341625, + 0.013047171756625175, + 0.003953141160309315, + 0.008534452877938747, + 0.013494833372533321, + -0.007877401076257229, + -0.00955252256244421, + 0.03032546676695347, + -0.019610468298196793, + -0.004039785359054804, + 0.013494833372533321, + 0.01166086457669735, + 0.0011949677718803287, + -0.017660975456237793, + -0.014426258392632008, + 0.011263744905591011, + -0.013812527991831303, + -0.004426074214279652, + -0.002099316567182541, + 0.045112743973731995, + -0.005339448340237141, + -0.006068703718483448, + -0.006985688116401434, + -0.005866534076631069, + -0.008707741275429726, + 0.00766079081222415, + -0.03847002238035202, + 0.006956806406378746, + 0.02519901841878891, + -0.002754563232883811, + -0.025935495272278786, + -0.012780018150806427, + 0.008043468929827213, + -0.005357499234378338, + -0.010159031488001347, + 0.021097861230373383, + 0.018166398629546165, + -0.023162880912423134, + -0.01626022718846798, + 0.0038737175054848194, + -0.0004420207696966827, + 0.01631798967719078, + -9.414658416062593e-5, + 0.025819970294833183, + -0.02415928989648819, + 0.0035830982960760593, + 0.008353943936526775, + 0.0038881581276655197, + -0.003231106325984001, + -0.009422555565834045, + -0.012390119954943657, + -0.010960490442812443, + -0.011191541329026222, + 0.024144848808646202, + -0.017978670075535774, + 0.017906466498970985, + 0.020549114793539047, + 0.05019586905837059, + 0.010714998468756676, + 0.02356722019612789, + -0.018411891534924507, + -0.021588845178484917, + 0.0030361569952219725, + 0.015292700380086899, + 0.019668230786919594, + 0.019076162949204445, + 0.0018592400010675192, + 0.01678009144961834, + 0.0034946491941809654, + -0.029574550688266754, + 0.01820972189307213, + -0.013812527991831303, + 0.015047208406031132, + 0.0153504628688097, + 0.008779944851994514, + 0.00012342284026090056, + -0.010252895765006542, + -0.0452282689511776, + 0.006855721585452557, + -0.007530824281275272, + 0.0023141219280660152, + -0.013307103887200356, + -0.005938737187534571, + -0.013559816405177116, + -0.0035560219548642635, + 0.03321360796689987, + -0.005761838983744383, + 0.03217387571930885, + -0.0073214340955019, + 0.014650088734924793, + 0.009740251116454601, + -0.016938939690589905, + 0.06157514080405235, + -0.017646534368395805, + 0.013364866375923157, + -0.01192079670727253, + -0.004310548771172762, + -0.009422555565834045, + -0.016216903924942017, + 0.011971339583396912, + -0.01594253070652485, + -0.008195096626877785, + -0.009018216282129288, + 0.013689782470464706, + 0.0045632608234882355, + -0.0009765522554516792, + -0.009018216282129288, + 0.012722255662083626, + 0.0038989887107163668, + -0.027740582823753357, + 0.020188096910715103, + -0.013422629795968533, + 0.0037220900412648916, + -0.037083715200424194, + -0.010216793976724148, + -0.014505681581795216, + -0.009444217197597027, + 0.018960637971758842, + 0.026729732751846313, + -0.01741548255085945, + 0.004292497877031565, + 0.0023159270640462637, + 0.02053467370569706, + 3.931000719603617e-6, + -0.013617578893899918, + 0.015206055715680122, + 0.01780538074672222, + -0.007913502864539623, + -0.006534416228532791, + -0.011899136006832123, + -0.00016493986186105758, + -0.018642941489815712, + 0.016231345012784004, + 0.032549336552619934, + -0.016303548589348793, + 0.020130334421992302, + -0.035986222326755524, + 0.008144553750753403, + -0.010686117224395275, + -0.0037148697301745415, + 0.008021808229386806, + -0.03252045437693596, + 0.010606693103909492, + -0.03402228653430939, + -0.01787758432328701, + 0.0016281887656077743, + 0.004111988935619593, + 0.007278112228959799, + -0.0031534875743091106, + -0.0031913944985717535, + 0.006317805498838425, + -0.009696928784251213, + -0.020967895165085793, + -0.01846965402364731, + 0.015104970894753933, + -0.01911948435008526, + -0.016938939690589905, + 0.007509163580834866, + 0.005028973333537579, + 0.007119264453649521, + 0.0153504628688097, + -0.020231418311595917, + -0.011834152974188328, + 0.008303401991724968, + -0.008404486812651157, + 0.01781982183456421, + 0.00719146803021431, + 0.018310805782675743, + -0.00026015820913016796, + -0.0034567422699183226, + -0.0048123630695044994, + -0.005646313074976206, + -0.02706187032163143, + -0.010837743990123272, + 0.002620986895635724, + 0.018440771847963333, + -0.003592123743146658, + -0.007964045740664005, + 0.022513048723340034, + 0.012693374417722225, + 0.010859405621886253, + -0.012108526192605495, + 0.0011218617437407374, + -0.01917724870145321, + 0.0013059807242825627, + 0.012722255662083626, + 0.0033664877992123365, + 0.02130003087222576, + 0.028289329260587692, + -0.007047060877084732, + 0.009870217181742191, + -0.001778913545422256, + 0.00896767433732748, + 0.03607286512851715, + 0.04098270460963249, + -0.022830745205283165, + -0.012548967264592648, + 0.0012455102987587452, + -0.0041841925121843815, + 0.027350682765245438, + 0.020679080858826637, + -0.0033881489653140306, + 0.006852111779153347, + -0.06544524431228638, + 0.013206019066274166, + 0.013516494072973728, + -0.006718534976243973, + -0.00032942843972705305, + 0.002048774156719446, + 0.024722475558519363, + -0.008368385024368763, + 0.019451621919870377, + 0.00984133593738079, + 0.023913796991109848, + -0.012216831557452679, + 0.002362859435379505, + -0.017718737944960594, + 0.042773351073265076, + -0.026440920308232307, + 0.02254193089902401, + -0.009501979686319828, + 0.02099677547812462, + 0.014166325330734253, + 0.011321507394313812, + -0.06319249421358109, + -0.013624799437820911, + -0.005151719320565462, + 0.008794385939836502, + 0.005859313532710075, + -0.014390156604349613, + 0.0006114733405411243, + -0.012252933345735073, + 0.004018124658614397, + 0.03878771513700485, + 0.0075524854473769665, + 0.02155996300280094, + 0.018946196883916855, + 0.004924278240650892, + -0.02150220051407814, + -0.011263744905591011, + -0.0050073121674358845, + 0.02746620960533619, + 0.018512975424528122, + -0.010895507410168648, + -0.01742992363870144, + 0.00877272430807352, + -0.020491352304816246, + 0.017386602237820625, + -0.0005753716104663908, + -0.010122929699718952, + 0.005209482274949551, + 0.004534379579126835, + -0.004750989843159914, + 0.01995704509317875, + -0.016491277143359184, + 0.025343425571918488, + 0.004198633134365082, + -0.01090994756668806, + 0.0031625130213797092, + 0.007137315347790718, + -0.013704223558306694, + 0.014498461969196796, + -0.010946049354970455, + -0.02144443802535534, + -0.007242010440677404, + 0.024895764887332916, + -0.004642684478312731, + 0.017660975456237793, + 0.0075524854473769665, + -0.014787275344133377, + 0.009321470744907856, + -0.0026534784119576216, + 0.017603211104869843, + -0.01036842167377472, + -0.020115893334150314, + 0.008050689473748207, + -0.010483947582542896, + -0.011083235964179039, + -0.014960563741624355, + -0.004787091631442308, + 0.011191541329026222, + 0.015494870021939278, + 0.004148090723901987, + -0.008223977871239185, + 0.005953178275376558, + 0.028910279273986816, + -0.01331432443112135, + 0.0006769077735953033, + 0.026542004197835922, + 0.03159624710679054, + -0.012996628880500793, + 0.013141036033630371, + 0.01884511113166809, + 0.010411744005978107, + 0.01683785393834114, + 0.025025730952620506, + -0.0027978853322565556, + -0.007285332307219505, + -0.012101305648684502, + -0.013978596776723862, + 0.004747379571199417, + -0.011574219912290573, + -0.00020070314349140972, + -0.007267281878739595, + -0.005736567545682192, + -0.012455102987587452, + -0.0064152805134654045, + -0.013379307463765144, + 0.004137260373681784, + -0.017834262922406197, + -0.02849149890244007, + -0.0020090623293071985, + 0.0273362435400486, + 0.03971192240715027, + -0.019798198714852333, + 0.01010848954319954, + -0.02105453796684742, + 0.0070795523934066296, + 0.003974802326411009, + 0.004176971968263388, + -0.0046932268887758255, + -0.0492427833378315, + -0.013458731584250927, + 0.008187876082956791, + -0.0001811856491258368, + 0.002682359889149666, + -0.002068630186840892, + -0.01545154768973589, + 0.05669418349862099, + 0.002610156312584877, + 0.0019188078586012125, + -0.007704112678766251, + 0.0026155714876949787, + -0.00935757253319025, + 0.006852111779153347, + -0.02590661309659481, + -0.004321379121392965, + 0.015595954842865467, + 0.002557808766141534, + -0.001523493672721088, + -0.019018400460481644, + 0.013783646747469902, + 0.012296254746615887, + 0.01029621809720993, + 0.037401407957077026, + 0.004992871545255184, + 0.011018252931535244, + -0.00813011359423399, + 0.018512975424528122, + 0.02648424170911312, + -0.014397376216948032, + 0.0017157355323433876, + 0.01574036106467247, + 0.009494759142398834, + 0.017704296857118607, + 0.00720590865239501, + -0.01988484151661396, + -0.0080001475289464, + 0.005660753697156906, + 0.0049170576967298985, + 0.04147368669509888, + -0.004260006360709667, + -0.018614061176776886, + -0.008057910017669201, + -0.016621245071291924, + 0.006241992115974426, + -0.013177137821912766, + 0.009935201145708561, + -0.014715071767568588, + -0.030036654323339462, + 0.018368568271398544, + -0.021097861230373383, + 0.0005839457735419273, + 0.010462285950779915, + -0.001130887190811336, + 0.024202611297369003, + -0.01670788787305355, + -5.6634617067174986e-5, + -0.008534452877938747, + -0.002048774156719446, + -0.014433478005230427, + -0.025415629148483276, + -0.00010210025357082486, + -0.006039822474122047, + 0.0193649772554636, + 0.002072240225970745, + 0.007177027408033609, + -0.04979152977466583, + -0.012548967264592648, + 0.0013330569490790367, + -0.016491277143359184, + 0.030412111431360245, + 0.021675487980246544, + -0.019393857568502426, + 0.015263818204402924, + -0.0266286488622427, + -0.02112674154341221, + -0.016216903924942017, + 0.022166471928358078, + -0.016101378947496414, + 0.043033283203840256, + -0.03422445431351662, + 0.008895470760762691, + 0.03237604722380638, + 0.01511941198259592, + 0.018570737913250923, + -0.010325099341571331, + -0.01240456011146307, + -0.006018161308020353, + -0.010418964549899101, + 0.0020668250508606434, + -0.02008701115846634, + 0.015307140536606312, + -0.019971486181020737, + 0.013104934245347977, + 0.0013113958993926644, + -0.0016155531629920006, + -0.012996628880500793, + -0.006855721585452557, + -0.02085236832499504, + -0.016924498602747917, + -0.031711775809526443, + 0.003079479094594717, + -0.029357939958572388, + 0.006003720685839653, + -0.012325135990977287, + -0.010050726123154163, + 0.003516310127452016, + -0.006844891235232353, + -0.007884621620178223, + 0.005223922897130251, + 0.0345999151468277, + -0.020000368356704712, + 0.00625282246619463, + 0.004602972883731127, + -0.0058809746988117695, + -0.02758173458278179, + -0.028650347143411636, + -0.007242010440677404, + 0.014585105702280998, + -0.007494722492992878, + 0.0011868448927998543, + 0.007101213559508324, + 0.017198871821165085, + -0.011696966364979744, + 0.012837781570851803, + -0.009610285051167011, + 0.011595881544053555, + -0.02804383635520935, + -0.005003701895475388, + 0.01975487545132637, + 0.00790628232061863, + -0.006213110871613026, + -0.014375715516507626, + -0.01820972189307213, + 0.003337606554850936, + 0.024130407720804214, + -0.003982022870332003, + 0.02700410597026348, + -0.0030776739586144686, + 0.00864275824278593, + -0.02047691121697426, + 0.017790941521525383, + 0.044073011726140976, + -0.008938792161643505, + -0.00026805547531694174, + -0.026787497103214264, + 0.02124226838350296, + -0.013133815489709377, + -0.002530732424929738, + 0.008938792161643505, + 0.012491204775869846, + -0.017574330791831017, + -0.008520012721419334, + -0.0021083420142531395, + -0.01644795574247837, + 0.0048737358301877975, + 0.007747435010969639, + -0.005498296115547419, + 0.015104970894753933, + 0.005036193877458572, + 0.012556187808513641, + -0.011502016335725784, + 0.014671750366687775, + -0.01702558435499668, + 0.011119337752461433, + 0.02661420777440071, + -0.029415704309940338, + 0.03543747588992119, + -0.0137258842587471, + 1.9221359252696857e-5, + 0.0011164465686306357, + -0.015162733383476734, + -0.009335911832749844, + -0.0008149969507940114, + 0.003041572170332074, + -0.00707594258710742, + 0.016014734283089638, + -0.01826748438179493, + -0.017502127215266228, + -0.006339466664940119, + 0.003344826865941286, + -0.021531082689762115, + -0.032231640070676804, + 0.008606656454503536, + 0.012209611013531685, + -0.0005442338297143579, + -0.004696837160736322, + 0.009927980601787567, + -0.006866552401334047, + -0.009155402891337872, + -0.0029296567663550377, + -0.009603064507246017, + -0.003640861250460148, + 0.0038881581276655197, + -0.023278405889868736, + -0.003938700538128614, + -0.016202464699745178, + -0.006162567995488644, + -0.009501979686319828, + -0.019263891503214836, + 0.006054263096302748, + 0.008375605568289757, + -0.008433368057012558, + -0.004935108590871096, + -0.016159141436219215, + 0.013379307463765144, + -0.00508312601596117, + 0.0048773461021482944, + -0.0019332485971972346, + 0.005408041644841433, + 0.008166215382516384, + -0.006927925162017345, + 0.01839745044708252, + -0.008830487728118896, + -0.020895691588521004, + -0.012108526192605495, + 0.004368311259895563, + -0.0027978853322565556, + -0.02707630954682827, + 0.00289716525003314, + 0.011805270798504353, + 0.07306993752717972, + -0.015090529806911945, + -0.013097713701426983, + -0.018036432564258575, + 0.016144700348377228, + -0.022325320169329643, + 0.01016625203192234, + 0.010079607367515564, + 0.020260300487279892, + 0.012209611013531685, + -0.004379142075777054, + -0.02415928989648819, + 0.023235084488987923, + 0.014816156588494778, + 0.001978375716134906, + 0.011502016335725784, + 0.012592289596796036, + 0.05002257972955704, + -0.0022401134483516216, + 0.018628502264618874, + 0.0009946031495928764, + 0.009119301103055477, + 0.0001351559185422957, + 0.03289591148495674, + -0.013039951212704182, + 0.019379418343305588, + -0.003368292935192585, + -0.002337587997317314, + 0.019191687926650047, + 0.015985853970050812, + 0.010931609198451042, + 0.0016155531629920006, + 0.005090346094220877, + -0.01594253070652485, + -0.00861387699842453, + 0.008924352005124092, + 0.007061501499265432, + -0.0021263929083943367, + 0.010837743990123272, + 0.006595788989216089, + -0.0032563775312155485, + -0.002617376623675227, + 0.015769243240356445, + 0.007036230526864529, + -0.0037437512073665857, + -0.018354129046201706, + -0.016476837918162346, + -0.002117367461323738, + -0.009805234149098396, + -0.01023845560848713, + -0.005534397903829813, + 0.007299773395061493, + 0.011032694019377232, + -0.00675102649256587, + 0.012397339567542076, + 0.002720266580581665, + 0.013141036033630371, + -0.007884621620178223, + -0.003265402978286147, + -0.0023664694745093584, + -0.011754728853702545, + 0.003516310127452016, + -0.004678786266595125, + -0.0027599786408245564, + -0.0021534692496061325, + 0.004440514836460352, + -0.011841372586786747, + -0.016938939690589905, + 0.007855740375816822, + 0.013487612828612328, + -0.006444161757826805, + 0.0044044130481779575, + -0.013624799437820911, + -0.026657529175281525, + -0.008014587685465813, + 0.008801605552434921, + -0.0035397761967033148, + 0.005375550128519535, + 0.003133631544187665, + -0.004397192969918251, + 0.02060687728226185, + 0.014613986946642399, + -0.007711333222687244, + -0.016072498634457588, + -0.002954927971586585, + 0.006198669783771038, + 0.028477057814598083, + -0.001030704821459949, + -0.004426074214279652, + -0.02906912751495838, + -0.01463564857840538, + -0.00861387699842453, + -0.007429739460349083, + 0.001337569672614336, + -0.007696892600506544, + -0.016534600406885147, + -0.019596029072999954, + 0.006386398803442717, + -0.002772614127025008, + 0.008888250216841698, + 0.011090456508100033, + 0.015494870021939278, + -0.0014774639857932925, + -0.0025036560837179422, + 0.010577811859548092, + -0.02947346679866314, + 0.01904728077352047, + 0.01217350922524929, + -0.04372643679380417, + 0.007913502864539623, + 0.012267373502254486, + -0.010029065422713757, + -0.006476653274148703, + 0.0023592491634190083, + -0.011581440456211567, + 0.018036432564258575, + 0.0348309651017189, + -0.0003939603047911078, + -0.01897507905960083, + -0.027552852407097816, + -0.0089748939499259, + 0.02629651315510273, + 0.009935201145708561, + -0.014130223542451859, + 0.006826840341091156, + -0.01146591454744339, + 0.00755970599129796, + 0.003269013250246644, + -0.02254193089902401, + 0.002330367686226964, + 0.004686006810516119, + 0.0080001475289464, + 0.011971339583396912, + 0.010743879713118076, + 0.021603286266326904, + -0.010418964549899101, + -0.025675563141703606, + 0.001310493447817862, + 0.014354054816067219, + 0.008534452877938747, + 0.00836116448044777, + 0.013292662799358368, + -0.0029729788657277822, + 0.012209611013531685, + 0.014989444985985756, + 0.023018473759293556, + -0.016606803983449936, + -0.008707741275429726, + 0.0061661782674491405, + -0.0011146414326503873, + 0.021791014820337296, + -0.020505791530013084, + 0.01800755225121975, + -0.016938939690589905, + 0.0185996200889349, + 0.013003849424421787, + -0.022513048723340034, + 0.04800088331103325, + -0.000569053809158504, + -0.0013817943399772048, + -0.012794459238648415, + 0.005115617532283068, + -0.00659217918291688, + -0.025285663083195686, + 0.014686190523207188, + 0.0022563592065125704, + 0.020809046924114227, + 0.014671750366687775, + 0.012354018166661263, + -0.013769206590950489, + 0.008195096626877785, + -0.010303438641130924, + 0.004054225981235504, + -0.04020290449261665, + -0.0013456926681101322, + 0.017141109332442284, + 0.004205853678286076, + 0.001875485759228468, + -0.012382899411022663, + 0.0008668932132422924, + -0.0001772370160324499, + -0.019509384408593178, + 0.011834152974188328, + -0.01227459404617548, + 0.010245676152408123, + -0.017502127215266228, + 0.016043616458773613, + 0.008411707356572151, + 0.007891842164099216, + -0.0030199112370610237, + -0.009891878813505173, + 0.022686338052153587, + -0.015090529806911945, + 0.0025505884550511837, + -0.008303401991724968, + 0.007465841248631477, + 0.013307103887200356, + 0.02824600599706173, + -0.007390027400106192, + -0.005866534076631069, + -0.003395369276404381, + 0.007913502864539623, + 0.0019115875475108624, + -0.0014025528216734529, + -0.0077979774214327335, + -0.0034043947234749794, + -0.01026733685284853, + -0.014657309278845787, + -0.0013808917719870806, + 0.00768967205658555, + -0.04242677241563797, + -0.024780239909887314, + 0.01522049680352211, + -0.014989444985985756, + -0.029632313176989555, + -0.0017049049492925406, + 0.013805308379232883, + 0.003826785134151578, + 0.018556298688054085, + 0.0018041847506538033, + 0.011906356550753117, + 0.02235420234501362, + 0.02091013267636299, + 0.013516494072973728, + -0.02501128986477852, + 0.02144443802535534, + -0.005563279148191214, + 0.011249304749071598, + 0.013588697649538517, + -0.0011164465686306357, + 0.020318062976002693, + -0.015827005729079247, + -0.013841410167515278, + 0.016303548589348793, + 0.011624762788414955, + 0.018772907555103302, + 0.01761765219271183, + -0.01702558435499668, + 0.01685229502618313, + -0.0041192094795405865, + 0.012902764603495598, + 0.002810521051287651, + -0.007877401076257229, + -0.009054318070411682, + 0.020029248669743538, + -0.0006074119010008872, + 0.0032834538724273443, + 0.009335911832749844, + 0.00916984397917986, + -2.5651983378338628e-5, + -0.010455066338181496, + -0.01657792180776596, + 0.014332393184304237, + 0.027365123853087425, + 0.005057854577898979, + 0.02558891847729683, + 0.004722108598798513, + 0.006653551943600178, + 0.0016426295042037964, + -0.005072295665740967, + 0.008686080574989319, + 0.006476653274148703, + 0.021531082689762115, + -0.02326396480202675, + 0.0008510986808687449, + -0.000992798013612628, + -0.005942347459495068, + -0.0031191909220069647, + -0.004075887147337198, + 0.013805308379232883, + 6.791641499148682e-5, + 0.02609434351325035, + -0.0035776831209659576, + 0.002799690468236804, + -0.013234900310635567, + -0.016924498602747917, + 0.015653718262910843, + -0.03096085786819458, + -0.004180582240223885, + 0.0020162826403975487, + -0.008476690389215946, + -0.0019675451330840588, + 0.0077979774214327335, + -0.0022220625542104244, + 0.016996702179312706, + -0.010274557396769524, + -0.00783407874405384, + 0.004902617074549198, + -0.018700703978538513, + 0.002133613219484687, + 0.0016913668951019645, + -0.0006227551493793726, + -0.005465804599225521, + -0.013552595861256123, + 0.0022870455868542194, + 0.02649868279695511, + -0.010065167210996151, + 0.0001152435434050858, + 0.021285589784383774, + -0.002781639574095607, + -0.0017247609794139862, + 0.0015216886531561613, + -0.0005848482833243906, + -0.003213055431842804, + -0.005339448340237141, + -0.00615173764526844, + 0.003750971518456936, + -0.0056535336188972, + 0.0003768119786400348, + -0.00313182664103806, + 0.009740251116454601, + -0.001841189106926322, + 0.007949604652822018, + 0.0019422739278525114, + -0.004689617082476616, + -0.008953233249485493, + 0.015754802152514458, + 0.01592809148132801, + -0.0046932268887758255, + -0.01262839138507843, + -0.008909910917282104, + -0.006996518466621637, + -0.027827225625514984, + 0.017516568303108215, + -0.005714906379580498, + 0.03789239376783371, + 0.008072350174188614, + 0.03737252950668335, + -0.009083199314773083, + -0.016549041494727135, + 0.006050652824342251, + 0.008556113578379154, + -0.004361091181635857, + 0.005144498776644468, + -0.022195354104042053, + 0.01631798967719078, + -0.028462616726756096, + -0.008548893965780735, + -0.011068795807659626, + 0.012866662815213203, + -0.023726068437099457, + -0.002254554070532322, + 0.004541599657386541, + -0.0077979774214327335, + 0.011047134175896645, + 0.020289182662963867, + 0.014989444985985756, + -0.007985706441104412, + 0.004317768849432468, + 0.032087232917547226, + 0.01311937440186739, + -0.022123150527477264, + 0.007177027408033609, + -0.004335819743573666, + 0.002083070809021592, + -0.003357462352141738, + -0.012548967264592648, + 0.012772797606885433, + -0.013545375317335129, + 0.0056535336188972, + -0.012664493173360825, + 0.0032437420450150967, + -0.008382825180888176, + 0.0012987602967768908, + 0.003227496286854148, + 0.0036173949483782053, + 0.00626365328207612, + 0.005624652374535799, + 0.0007387319928966463, + 0.0003328129823785275, + -0.0040939380414783955, + -0.01318435836583376, + -0.0321161150932312, + -0.01807975396513939, + -0.02181989513337612, + 0.007646350190043449, + -0.013971376232802868, + -0.023986000567674637, + 0.0002678298333194107, + -0.013148256577551365, + 0.013819748535752296, + 0.0013610358582809567, + -0.023350609466433525, + -0.01696782186627388, + 0.016563480719923973, + 0.008758284151554108, + 0.02371162734925747, + 0.016202464699745178, + 0.004187802784144878, + -0.009061538614332676, + -0.0056318724527955055, + -0.003758191829547286, + -0.003848446300253272, + -0.000277532177278772, + -0.007299773395061493, + -0.02170437015593052, + -0.015263818204402924, + 0.031971707940101624, + -0.008223977871239185, + -0.010671676136553288, + 0.008787165395915508, + -0.005465804599225521, + 0.01672232896089554, + -0.0008362067164853215, + 0.005516347009688616, + -0.020245859399437904, + -0.017718737944960594, + 0.006826840341091156, + 0.01550931017845869, + -0.005451363977044821, + -0.010447845794260502, + 0.011473135091364384, + -0.012339577078819275, + 0.018744027242064476, + -0.003624615492299199, + -0.017632093280553818, + 0.020303621888160706, + -0.013985816389322281, + 0.01761765219271183, + 0.007231180090457201, + 0.02079460583627224, + -0.0012021881993860006, + 0.016029175370931625, + 0.005408041644841433, + 0.001837578951381147, + 0.00011467945296317339, + -0.0017915491480380297, + -0.020029248669743538, + -0.014859478920698166, + 0.025632239878177643, + 0.00828896090388298, + -0.005523567087948322, + 0.005812381394207478, + -0.004559650551527739, + -0.022657455876469612, + 2.981214493047446e-5, + 0.02402932196855545, + -0.010714998468756676, + 0.017141109332442284, + 0.01146591454744339, + -0.01806531473994255, + -0.00994242075830698, + 0.0033394116908311844, + -0.011350389569997787, + 0.011516457423567772, + -0.0023592491634190083, + 0.011754728853702545, + 0.005462194327265024, + 0.0033538523130118847, + -0.005093956366181374, + 0.005498296115547419, + 0.008960453793406487, + -0.001765375374816358, + -0.0240870863199234, + -0.007325044367462397, + -0.01644795574247837, + -0.0015469598583877087, + 0.028058277443051338, + 0.008245638571679592, + -0.01639019325375557, + -0.005823211744427681, + 0.0013348620850592852, + -0.0035145049914717674, + 0.01955270580947399, + -0.00697846757248044, + -0.004913447890430689, + -0.0040145143866539, + 0.012707814574241638, + 0.00013346364721655846, + -0.004418853670358658, + -0.006418890785425901, + 0.01665012538433075, + -0.0035253355745226145, + -0.000996408169157803, + 0.01891731470823288, + 0.011227643117308617, + 0.0009991158731281757, + 0.015336021780967712, + 0.02306179516017437, + -0.01929277367889881, + -0.023754948750138283, + 0.0014151884242892265, + -0.005090346094220877, + 0.002113757189363241, + -0.0014882945688441396, + 0.009870217181742191, + 0.0022184522822499275, + 0.018281925469636917, + 0.010245676152408123, + 0.030469873920083046, + -0.005523567087948322, + -0.026253189891576767, + 0.018166398629546165, + -0.02066463977098465, + -0.0018935366533696651, + -0.006891823373734951, + -0.009422555565834045, + -0.01013737078756094, + 0.0038015139289200306, + 0.010837743990123272, + -0.01337208691984415, + -0.017718737944960594, + -0.0040289550088346004, + 0.0320005901157856, + 0.005133668426424265, + -0.0033773183822631836, + -0.0060759237967431545, + 0.01524937804788351, + 0.002588495146483183, + 0.012563408352434635, + 0.017790941521525383, + -0.004700447432696819, + 0.00019370843074284494, + 0.02233976125717163, + -0.0037870733067393303, + 0.012397339567542076, + 0.0018312610918655992, + 0.00377985299564898, + 0.02170437015593052, + -0.008960453793406487, + -0.0017816212493926287, + -0.0006439649150706828, + 0.00217874045483768, + 0.005718516651540995, + -0.0067040943540632725, + 0.008678860031068325, + 0.012354018166661263, + 0.020780164748430252, + 0.005974838975816965, + 0.00324735208414495, + -0.0030433773063123226, + 0.011581440456211567, + 0.003920649643987417, + 0.005404431372880936, + 0.007198688108474016, + 0.010014624334871769, + 0.002393545815721154, + -0.00236466433852911, + 0.05328617990016937, + 0.0006281703826971352, + 0.005584940314292908, + -0.006483873818069696, + 0.01205076277256012, + -0.007415298838168383, + -0.002917021047323942, + -0.009761912748217583, + -0.01026733685284853, + 0.016534600406885147, + -0.024967968463897705, + 0.0040253447368741035, + -0.0013980400981381536, + 0.006516365334391594, + 0.019971486181020737, + 0.00922760646790266, + 0.010151810944080353, + -0.031105265021324158, + -0.007574146613478661, + -0.0069531966000795364, + -0.012613950297236443, + 0.013509273529052734, + -0.015263818204402924, + -0.01457066461443901, + -0.010375642217695713, + 0.012108526192605495, + 0.007209518924355507, + -0.009761912748217583, + 0.008245638571679592, + 0.009855777025222778, + -0.001965740229934454, + 0.008339503780007362, + -0.014339613728225231, + -0.009285368956625462, + -0.006314195692539215, + -0.002976589137688279, + 0.006765467580407858, + 0.00329608959145844, + -0.01665012538433075, + -0.0012094085104763508, + 0.022917388007044792, + 0.00011208464275114238, + 0.0037257003132253885, + -0.008498351089656353, + -0.013993036933243275, + -0.009018216282129288, + -0.004411633592098951, + 0.012606729753315449, + -0.0022256725933402777, + -0.009776352904736996, + 0.004180582240223885, + -0.01943718083202839, + 0.02233976125717163, + -0.007133705075830221, + -0.014556224457919598, + 0.0007621981203556061, + -0.0030722585506737232, + -0.006938755977898836, + -0.007000128738582134, + 0.024534747004508972, + -0.02397155947983265, + 0.007992926985025406, + -0.0021642998326569796, + 0.0045632608234882355, + -0.009761912748217583, + -0.0013944299425929785, + 0.002189571037888527, + -0.004270836710929871, + 0.016043616458773613, + 0.004772651009261608, + -0.005436922889202833, + -0.012960527092218399, + -0.02034694515168667, + 0.01013737078756094, + 0.001913392567075789, + 0.012224051170051098, + 0.006816009990870953, + -0.028722550719976425, + 0.014751173555850983, + 0.011018252931535244, + 0.031827300786972046, + -0.018541857600212097, + -0.01696782186627388, + -0.014260189607739449, + -0.0011985780438408256, + 0.002472969703376293, + 0.00021051830844953656, + -0.01618802361190319, + -0.0011002006940543652, + 0.005393601022660732, + -0.006368348374962807, + -0.01171862706542015, + 0.00425639608874917, + 0.004458565730601549, + 0.0010974931064993143, + -0.022426405921578407, + -0.0011696965666487813, + -0.007480281870812178, + -0.012686153873801231, + -0.0008524524746462703, + 0.014520122669637203, + -0.0321161150932312, + 0.009054318070411682, + -0.01683785393834114, + -0.00984133593738079, + 0.0056824148632586, + 0.00035740729072131217, + 0.00766079081222415, + 0.0048268036916852, + -0.014678969979286194, + -0.003819564823061228, + -0.015913650393486023, + -0.0019151977030560374, + -0.018700703978538513, + -0.021675487980246544, + 0.0024639442563056946, + -0.0013023705687373877, + -0.010686117224395275, + 0.024014882743358612, + -0.014859478920698166, + -0.0021642998326569796, + -0.009834115393459797, + -0.013653680682182312, + -0.02449142560362816, + 0.010260116308927536, + -0.001962129957973957, + 0.0331847257912159, + -0.013328764587640762, + 0.011704185977578163, + 0.01761765219271183, + -0.0023430034052580595, + -0.03965415805578232, + 0.002402571262791753, + 0.032549336552619934, + -0.010736659169197083, + 0.019798198714852333, + -0.01652015931904316, + -0.025675563141703606, + -0.01702558435499668, + -0.022180913016200066, + 0.01659236289560795, + -0.03916317597031593, + -0.005003701895475388, + 0.014975004829466343, + -0.00553800817579031, + -0.016881177201867104, + -1.5470162907149643e-5, + -0.005433313082903624, + -0.00615173764526844, + -0.033271368592977524, + -0.009386453777551651, + -0.004736549220979214, + -0.02014477550983429, + -0.011610321700572968, + 0.014613986946642399, + -0.02092457190155983, + 0.03549523651599884, + 0.008657199330627918, + -0.012938866391777992, + -0.010072387754917145, + -0.00851279217749834, + -0.016606803983449936, + -0.021791014820337296, + -0.005992889869958162, + -0.003337606554850936, + -0.009769132360816002, + 0.006754636764526367, + -0.0002662503975443542, + 0.025502273812890053, + -0.005617431830614805, + 0.004624633584171534, + 0.012238492257893085, + -0.006657162215560675, + 0.002054189331829548, + -0.00435748090967536, + -0.009826895780861378, + -0.037603579461574554, + -0.009769132360816002, + 0.020881250500679016, + -0.022787421941757202, + -0.018888434395194054, + 0.035206422209739685, + -0.01898951828479767, + 0.005223922897130251, + -0.003826785134151578, + 0.01742992363870144, + -0.013256561011075974, + -0.01062113419175148, + 0.004776261281222105, + 0.010794422589242458, + -0.010946049354970455, + 0.0200725719332695, + 0.023682745173573494, + 0.002068630186840892, + 0.017790941521525383, + 0.000489629921503365, + -0.004353870637714863, + -0.006238381844013929, + -0.008325062692165375, + 0.004512718413025141, + -0.0030433773063123226, + -0.005888194777071476, + -0.01878734864294529, + -0.028549261391162872, + -0.007451400626450777, + 0.012548967264592648, + 0.013263781554996967, + -0.01444069854915142, + -0.006819619797170162, + 0.016245786100625992, + -0.02098233439028263, + 0.0038664971943944693, + -0.01631798967719078, + -0.027552852407097816, + 0.027119632810354233, + -0.009855777025222778, + 0.023495016619563103, + -0.016303548589348793, + 0.018628502264618874, + 0.00023014863836579025, + 0.0012554381974041462, + -0.00020138005493208766, + -0.008541673421859741, + 0.007278112228959799, + -0.012281814590096474, + 0.019466061145067215, + 0.0017310787225142121, + 0.0005018142983317375, + -0.005621042102575302, + -0.0014910021563991904, + -0.0029729788657277822, + 0.002375494921579957, + 0.024303695186972618, + 0.0019910114351660013, + 0.004671566188335419, + -0.0193072147667408, + -0.022570813074707985, + -0.012339577078819275, + -0.004830413963645697, + -0.005801550578325987, + 0.0024838002864271402, + -0.015855887904763222, + -0.005241973791271448, + -0.006216720677912235, + -0.028722550719976425, + 0.004415243864059448, + -0.020289182662963867, + 0.010917168110609055, + 0.039798565208911896, + -0.001620968454517424, + 0.009740251116454601, + 0.020577995106577873, + -0.018238602206110954, + 0.0013980400981381536, + -0.01665012538433075, + -0.003371903207153082, + 0.02467915415763855, + 0.0009147280361503363, + 0.014845038764178753, + 0.0024946306366473436, + -0.010462285950779915, + -0.0014413621975108981, + -0.008137334138154984, + 0.004447735380381346, + -0.012224051170051098, + -0.007444180082529783, + -0.00014880688104312867, + 0.02324952557682991, + 0.005570499692112207, + 0.015234936960041523, + 0.016361311078071594, + -0.0011489380849525332, + 0.012317916378378868, + 0.0005464901914820075, + -0.01748768612742424, + -0.0033971744123846292, + 0.014397376216948032, + -0.002518096938729286, + 0.005205872002989054, + -0.004155311267822981, + 0.01039730291813612, + 0.00014147371985018253, + -0.0020469690207391977, + -0.011140999384224415, + -0.00106139131821692, + 0.002265384653583169, + -0.01683785393834114, + -0.005613821558654308, + 0.002696800511330366, + -0.017863145098090172, + 0.0028412074316293, + -0.01042618416249752, + -0.020419148728251457, + 0.012151847593486309, + 0.0004212622588966042, + 0.03324249014258385, + -0.007227569818496704, + -0.024130407720804214, + -0.0048737358301877975, + -0.004801532253623009, + -0.007566926069557667, + 0.013169917277991772, + 0.021083420142531395, + -0.032607097178697586, + 0.01550931017845869, + 0.01832524687051773, + -0.010729439556598663, + 0.009956861846148968, + -0.022108709439635277, + 0.002433257643133402, + 0.005144498776644468, + 0.002747342921793461, + -0.0030361569952219725, + 0.003288869047537446, + 0.02118450589478016, + 0.0061011952348053455, + -0.013516494072973728, + 0.006202280055731535, + -0.004765430465340614, + 0.0025740545243024826, + 0.011538118124008179, + -0.01698226109147072, + -0.012252933345735073, + 0.024852443486452103, + 0.0179497878998518, + 0.0032401317730545998, + -0.005736567545682192, + -0.007610248401761055, + -0.01110489759594202, + 0.009379234164953232, + -0.010686117224395275, + 0.005917076487094164, + -0.013321544975042343, + -0.011798051185905933, + -0.022772982716560364, + -0.0005767254042439163, + 0.004260006360709667, + 0.0007951409788802266, + -0.002534342696890235, + 0.0012491204543039203, + -0.009307030588388443, + 0.013964155688881874, + -0.004018124658614397, + 0.019148366525769234, + 0.004574091173708439, + -0.01415188517421484, + -0.005628262180835009, + -0.008209536783397198, + -0.006584958638995886, + -0.018556298688054085, + 0.01646239683032036, + 0.022700779139995575, + 0.010888286866247654, + -0.022036505863070488, + 0.02104009874165058, + -0.019393857568502426, + -0.007184247486293316, + -0.0044730063527822495, + 0.023740509524941444, + -0.002368274610489607, + -0.008057910017669201, + -0.009617505595088005, + -0.005393601022660732, + 0.0027599786408245564, + -0.017054464668035507, + 0.002330367686226964, + -0.007029009982943535, + -0.006411670241504908, + -0.04649905115365982, + -0.001489197020418942, + -0.005859313532710075, + 0.0026949953753501177, + -0.0080290287733078, + -0.015090529806911945, + 0.006353907287120819, + -0.0046535152941942215, + 0.016808973625302315, + 0.024144848808646202, + 0.011733068153262138, + -0.02046247012913227, + -0.010065167210996151, + -0.026440920308232307, + 0.006079534068703651, + 0.009400894865393639, + -0.0007626494043506682, + -0.004606582690030336, + -0.003675157902762294, + 0.0008091303752735257, + -0.014216868206858635, + -0.01665012538433075, + -0.002518096938729286, + -0.010866626165807247, + 0.00673658587038517, + -0.015971412882208824, + -0.0035632424987852573, + 0.0009097640286199749, + -0.006180618889629841, + -0.009350351989269257, + 0.0024134018458426, + 0.001651654951274395, + 0.009675268083810806, + -0.019610468298196793, + 0.03962527588009834, + 0.02033250406384468, + 0.01568259857594967, + -0.009603064507246017, + 0.0006593081634491682, + 0.02098233439028263, + 0.008534452877938747, + -0.007501943036913872, + -0.015032767318189144, + 0.0048773461021482944, + -0.003505479544401169, + 0.0015352268237620592, + 0.007444180082529783, + 0.022758541628718376, + 0.008173435926437378, + -0.003953141160309315, + -0.006686043459922075, + -0.020029248669743538, + -0.007704112678766251, + -0.01059225294739008, + 0.01955270580947399, + -0.0067040943540632725, + 0.006332246586680412, + -0.032144997268915176, + 0.004306938499212265, + -0.006353907287120819, + 0.008137334138154984, + -0.006584958638995886, + -0.00929981004446745, + -0.015913650393486023, + 7.383935735560954e-5, + -0.004036175087094307, + -0.01227459404617548, + 0.01858517900109291, + 0.01524937804788351, + 0.011884694918990135, + -0.008729401975870132, + 0.024245932698249817, + -0.004913447890430689, + 0.02345169521868229, + -0.009927980601787567, + -0.018801789730787277, + 0.026729732751846313, + 0.004834023769944906, + -0.008382825180888176, + 0.016953380778431892, + 0.009509200230240822, + -0.004458565730601549, + 0.028736989945173264, + 0.0009539886377751827, + -0.008541673421859741, + -0.016736770048737526, + -0.0018772908952087164, + 0.006321415770798922, + -0.003269013250246644, + -0.005592160392552614, + 0.014245749451220036, + 0.009566962718963623, + 0.0003210799186490476, + 0.005173380486667156, + 0.0038628869224339724, + 0.02402932196855545, + -0.017834262922406197, + -0.0012626586249098182, + 0.014159104786813259, + -0.009884658269584179, + -0.006072313990443945, + -0.009826895780861378, + -0.03535082936286926, + 0.0388454794883728, + 0.015003886073827744, + 0.007783536799252033, + -0.05816713348031044, + 0.005523567087948322, + -0.014187986962497234, + 0.026931902393698692, + 0.003213055431842804, + 0.01903284154832363, + 0.018224161118268967, + 0.019466061145067215, + -0.00935757253319025, + 0.0020812656730413437, + -0.011776389554142952, + -0.009696928784251213, + -0.007350315805524588, + 0.019841520115733147, + 0.004732938949018717, + -0.009061538614332676, + -0.004516328684985638, + -0.022643014788627625, + 0.011487576179206371, + 0.011502016335725784, + 0.0008641855674795806, + -0.009162623435258865, + -0.0067293657921254635, + -0.004906227346509695, + -0.0014079681131988764, + 0.028058277443051338, + -0.020419148728251457, + 0.009631945751607418, + -0.0004553332692012191, + -0.005577719770371914, + 0.005036193877458572, + 0.01592809148132801, + -0.007195078302174807, + -0.002278020139783621, + 0.00014339163317345083, + -0.0034278607927262783, + -0.0021949862129986286, + 0.0037293103523552418, + -0.03159624710679054, + -0.02811603993177414, + 0.004830413963645697, + -0.0193649772554636, + 0.0010234845103695989, + -0.0013745740288868546, + 0.0007982998504303396, + -0.006018161308020353, + -0.0015677183400839567, + 0.018253043293952942, + -0.0179497878998518, + 0.004862905479967594, + -0.007184247486293316, + -0.0007220349507406354, + 0.006945976056158543, + 0.0016814388800412416, + -0.0010812473483383656, + 0.007747435010969639, + 0.006357517559081316, + -0.0054766349494457245, + 0.0047834813594818115, + 0.017343278974294662, + 0.0042744469828903675, + 0.013761986047029495, + -0.006371958181262016, + -0.025921054184436798, + 0.00828896090388298, + 0.019538264721632004, + -0.006018161308020353, + 0.0361306294798851, + 0.007848519831895828, + -0.015956971794366837, + -0.0067293657921254635, + -0.006671602837741375, + 0.00849113054573536, + -0.00306864851154387, + 0.017054464668035507, + -0.006436941679567099, + 0.011429812759160995, + -0.027538413181900978, + -0.002879114355891943, + 0.00435748090967536, + -0.0032527674920856953, + 0.01453456375747919, + 0.014989444985985756, + -0.005469414871186018, + -0.004375531803816557, + 0.007162586785852909, + 0.006028991658240557, + -0.01026733685284853, + 0.007884621620178223, + 0.01062113419175148, + 0.00010819242015713826, + -0.004794312175363302, + -0.008007367141544819, + -0.0018086974741891026, + 0.001689561759121716, + 0.024144848808646202, + -0.013588697649538517, + 0.005433313082903624, + -0.007177027408033609, + 0.009985743090510368, + -0.00848391093313694, + 0.013169917277991772, + 0.015711480751633644, + 0.01728551648557186, + 0.008014587685465813, + 0.009747471660375595, + 0.005130058154463768, + -0.004263616167008877, + -0.026209868490695953, + -0.01929277367889881, + 0.006451382301747799, + 0.007057891692966223, + -0.018108636140823364, + 0.014606766402721405, + -0.004704057704657316, + -0.02719183638691902, + 0.013263781554996967, + -0.01184859313070774, + 0.011913576163351536, + 0.0033935641404241323, + 0.016549041494727135, + -0.006566907744854689, + 0.010325099341571331, + 0.0014133834047243, + 0.01192079670727253, + 0.010844964534044266, + -0.0014810741413384676, + 0.018541857600212097, + 0.01833968795835972, + 0.019466061145067215, + 0.004516328684985638, + 0.004880956374108791, + 0.017068905755877495, + -0.01916280761361122, + 0.005389990750700235, + -0.0010496582835912704, + 0.008036249317228794, + -0.0008073252975009382, + -0.007538044825196266, + -0.0018556298455223441, + 0.02298959158360958, + -0.0067690773867070675, + -0.0014242138713598251, + -0.014000257477164268, + -0.009379234164953232, + 0.006718534976243973, + -0.039740804582834244, + 0.026859698817133904, + 0.0029043855611234903, + 0.004649905022233725, + 0.013487612828612328, + 0.0044730063527822495, + 0.016202464699745178, + 0.023596102371811867, + -0.03148072212934494, + 0.00639361934736371, + 0.012462322600185871, + 0.0186573825776577, + -0.015711480751633644, + -0.00722034927457571, + 0.003092114580795169, + -0.004754600115120411, + 0.008462249301373959, + -0.012895544059574604, + 0.011530897580087185, + 0.007140925619751215, + 0.02467915415763855, + -0.008830487728118896, + -0.006982077844440937, + -0.01820972189307213, + -0.020361384376883507, + -0.01652015931904316, + 0.020707961171865463, + 0.0023556388914585114, + -0.02519901841878891, + -0.009162623435258865, + 0.0001696782128419727, + 0.01524937804788351, + 0.013328764587640762, + -0.0016110404394567013, + -0.01428185123950243, + 0.006429721135646105, + -0.01522049680352211, + -0.003931480459868908, + -0.014072461053729057, + 0.03396452218294144, + 0.011213202960789204, + -0.021531082689762115, + -0.02454918809235096, + -0.013364866375923157, + 0.007992926985025406, + -0.01767541468143463, + -0.01807975396513939, + -0.0009873827220872045, + 0.01519161555916071, + -0.004122819285839796, + 0.0034765983000397682, + 0.006660772487521172, + 0.0016868541715666652, + 0.022397523745894432, + 0.0005577720003202558, + -0.011545338667929173, + -0.0008966771420091391, + 0.018556298688054085, + -0.006826840341091156, + -0.019538264721632004, + 0.026643089950084686, + 0.008664418943226337, + 0.011769169941544533, + 0.016693448647856712, + 0.003747361246496439, + -0.014787275344133377, + -0.0021245877724140882, + 0.011603101156651974, + 0.01194967795163393, + -0.005169770214706659, + -0.008693301118910313, + 0.009964082390069962, + -0.0061445171013474464, + 0.013321544975042343, + -0.009422555565834045, + -0.01181971188634634, + -0.0049170576967298985, + 0.02079460583627224, + -0.002323147375136614, + 0.028087159618735313, + -0.0018718756036832929, + 0.004501888062804937, + -0.01168974582105875, + 0.014931682497262955, + 0.0020325283985584974, + 0.001806892454624176, + 0.005592160392552614, + -0.02091013267636299, + 0.008895470760762691, + 0.0017247609794139862, + -0.006386398803442717, + -0.01702558435499668, + 0.0186573825776577, + -0.002707631094381213, + -0.005018142983317375, + 0.019610468298196793, + 0.02778390422463417, + -0.011574219912290573, + -0.004209463484585285, + 0.0006809692131355405, + 0.016693448647856712, + 0.002227477729320526, + -0.016202464699745178, + 0.009487539529800415, + 0.030931977555155754, + 0.007350315805524588, + 0.015653718262910843, + 0.010079607367515564, + -0.009292589500546455, + -0.003557827090844512, + -0.010390082374215126, + -0.008296181447803974, + -0.008469469845294952, + 0.016274668276309967, + -0.003758191829547286, + -0.010094048455357552, + -0.0031228011939674616, + -0.02194986119866371, + -0.013357646763324738, + 0.008404486812651157, + 0.0074225193820893764, + 0.005931517109274864, + 0.002317732200026512, + 0.001974765444174409, + -0.022238675504922867, + 0.0010496582835912704, + 0.02798607386648655, + -0.011725847609341145, + 0.04658569395542145, + 0.0020848759450018406, + 0.037863511592149734, + -0.004992871545255184, + 0.009516420774161816, + -0.02558891847729683, + -0.006140907295048237, + -0.01441181730479002, + -0.006418890785425901, + -0.018816230818629265, + -0.002102926839143038, + -0.01519161555916071, + 0.00877272430807352, + 0.023754948750138283, + 0.0029856145847588778, + 0.00038425796083174646, + 0.008599435910582542, + -0.002512681530788541, + 0.01715555042028427, + 0.005158939864486456, + -0.01735772006213665, + 0.01395693514496088, + -0.021531082689762115, + -0.016808973625302315, + 0.0035090898163616657, + -0.004476616624742746, + 0.019653791561722755, + -0.01592809148132801, + 0.002931461902335286, + -0.008960453793406487, + 0.004155311267822981, + -0.005801550578325987, + -0.022065388038754463, + 0.0027942752931267023, + 0.0008948720642365515, + -0.008086791262030602, + 0.0030957248527556658, + 0.01454178337007761, + 0.015624836087226868, + -0.014368494972586632, + -0.03205835074186325, + -0.007769095711410046, + 0.013451511040329933, + 0.005671584513038397, + -0.015985853970050812, + 0.013025510124862194, + 0.0061661782674491405, + 0.006288924254477024, + -0.0026570886839181185, + 0.009610285051167011, + -0.0010388278169557452, + -0.00028678326634690166, + -0.018310805782675743, + -0.00217874045483768, + 0.01453456375747919, + 0.0069495863281190395, + 0.006787128280848265, + -0.00025180968805216253, + -0.018671823665499687, + -0.0026661138981580734, + -0.0006214012973941863, + -0.00916984397917986, + 0.0033773183822631836, + 0.026787497103214264, + -0.007761875633150339, + 0.013003849424421787, + -0.01741548255085945, + 0.02514125593006611, + -0.010635574348270893, + -0.005967618897557259, + 0.01438293606042862, + -0.01360313780605793, + -0.024563629180192947, + -0.01696782186627388, + -0.017892025411128998, + -0.01982707902789116, + -0.01117710117250681, + -0.006603009533137083, + -0.011928017251193523, + 0.0012455102987587452, + -0.0013953325105831027, + -0.010180692188441753, + 9.702344686957076e-5, + -0.007718553300946951, + 0.003971192054450512, + -0.003978412598371506, + 0.0003129570104647428, + -0.007949604652822018, + -0.0016227734740823507, + 0.02092457190155983, + -0.026022139936685562, + -0.01813751831650734, + 0.0020848759450018406, + 0.013083272613584995, + 0.013906393200159073, + -0.017314398661255836, + -0.008043468929827213, + -0.022845186293125153, + 0.006675213109701872, + -0.002227477729320526, + 0.016159141436219215, + -0.005902635399252176, + -0.011047134175896645, + 0.008628317154943943, + -0.005458584055304527, + -0.03858554735779762, + 0.01052004937082529, + -0.013386528007686138, + -0.008209536783397198, + 0.012498424388468266, + -0.005350278690457344, + 0.00424195546656847, + -0.01285944227129221, + 0.0032599878031760454, + 0.020245859399437904, + 0.02771170064806938, + 0.004530769307166338, + 0.008736622519791126, + 0.019610468298196793, + 0.011140999384224415, + -0.007927943952381611, + 0.015393785201013088, + 0.03263597935438156, + -0.012130186893045902, + 0.01240456011146307, + 0.01819528080523014, + 0.003844836028292775, + 0.014173545874655247, + -0.0015460572903975844, + -0.007595807779580355, + 0.009588624350726604, + -0.02298959158360958, + -0.0096824886277318, + 0.010159031488001347, + 0.016621245071291924, + 0.006458602380007505, + 0.008476690389215946, + -0.01594253070652485, + 0.023783830925822258, + -0.0010000184411183, + -0.00034770494676195085, + 0.02086680941283703, + 0.007444180082529783, + 0.019018400460481644, + -0.01722775399684906, + 0.00043592858128249645, + -0.02020253799855709, + -0.0016363116446882486, + 0.0014603156596422195, + 0.005718516651540995, + -0.03136519715189934, + -0.0360151045024395, + -0.006209500599652529, + 0.011263744905591011, + -0.012512865476310253, + 0.016881177201867104, + -0.008570554666221142, + 0.006177009083330631, + -0.014029138721525669, + 0.007870180532336235, + 0.00994242075830698, + -0.01698226109147072, + -0.0015271039446815848, + 0.018123077228665352, + 0.0017536423401907086, + 0.004303328227251768, + -0.002769004087895155, + 0.01657792180776596, + 0.0234372541308403, + -0.027437327429652214, + 0.003630030667409301, + 0.005003701895475388, + 0.005433313082903624, + -0.004527159035205841, + 0.0029224364552646875, + 0.018050873652100563, + -0.004931498784571886, + 0.01278723869472742, + -0.00766079081222415, + -0.006675213109701872, + 0.02142999693751335, + 0.013039951212704182, + 0.008628317154943943, + 0.005314177367836237, + -0.013090493157505989, + 0.019913723692297935, + 0.0012184339575469494, + 0.014780054800212383, + 0.016144700348377228, + 0.0009467683266848326, + 0.018570737913250923, + 0.02823156677186489, + -0.007509163580834866, + -0.005718516651540995, + -0.02441922202706337, + 0.027047429233789444, + -0.01806531473994255, + 0.011227643117308617, + -0.032231640070676804, + 0.005389990750700235, + 0.011595881544053555, + 0.016534600406885147, + -0.014960563741624355, + 0.013386528007686138 + ], + "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219": [ + -0.021373802796006203, + -0.009331420063972473, + -0.015609439462423325, + 0.05276390165090561, + -0.0020296552684158087, + 0.01244902703911066, + 0.0020225211046636105, + 0.018263328820466995, + -0.02616792730987072, + 0.021944532170891762, + 0.028051333501935005, + 0.014682005159556866, + 0.03119034320116043, + 0.00650987820699811, + -0.0009087076759897172, + 0.013704631477594376, + -0.012456160970032215, + 0.0023774432484060526, + -0.019818566739559174, + -0.03341618552803993, + 0.033359114080667496, + -0.015780657529830933, + -0.000873482960741967, + -0.015766389667987823, + -0.007797585800290108, + 0.01210658997297287, + -0.0035064166877418756, + -0.002150935120880604, + -0.03327350318431854, + 0.014318165369331837, + 0.005347017664462328, + 0.0014723025960847735, + -0.01650833711028099, + 0.014781882055103779, + 0.03778226301074028, + -0.04899708926677704, + 0.05812875181436539, + 0.01076537650078535, + -0.013947190716862679, + 0.006345793604850769, + -0.028051333501935005, + 0.007426611613482237, + 0.00952404085546732, + -0.0024077631533145905, + -0.01476761419326067, + -0.025697074830532074, + -0.021216852590441704, + -0.00818996224552393, + -0.015138587914407253, + -0.046400271356105804, + -0.021901726722717285, + -0.0271667018532753, + -0.02056051418185234, + 0.019133690744638443, + 0.045572713017463684, + -0.049767572432756424, + 0.02461268939077854, + 0.017150407657027245, + 0.0036883363500237465, + -0.028507916256785393, + -0.0030052452348172665, + -0.03079083189368248, + 0.006827346049249172, + -0.014810418710112572, + 0.012149394489824772, + 0.029192790389060974, + -0.016879310831427574, + -0.0022900502663105726, + -0.030020348727703094, + 0.010865254327654839, + -0.01789235509932041, + 0.031104732304811478, + -0.018819790333509445, + -0.010287391021847725, + -0.014532187953591347, + 0.00692722387611866, + 0.03430081531405449, + 0.0022151421289891005, + 0.00461933808401227, + -0.016551142558455467, + 0.008018743246793747, + -0.004448119550943375, + 0.04017932340502739, + 0.03567056357860565, + 0.027637554332613945, + 0.012235003523528576, + -0.007769049145281315, + -0.036869097501039505, + -0.010158977471292019, + -0.031703997403383255, + -0.033073749393224716, + 0.01441804226487875, + 0.01476761419326067, + -0.018092110753059387, + -0.014168348163366318, + 0.0473419725894928, + 0.019233569502830505, + -0.002555795945227146, + -0.01649406924843788, + -0.028479378670454025, + -0.00105049810372293, + -0.02114551141858101, + 0.027937186881899834, + -0.022629406303167343, + 0.029763519763946533, + -0.02282916195690632, + -0.030048884451389313, + -0.0023685256019234657, + -0.013940056785941124, + 0.05011000856757164, + 0.0035456542391330004, + -0.016308583319187164, + -0.003112256759777665, + -0.006392165087163448, + -0.01820625737309456, + -0.024412935599684715, + -0.043432481586933136, + -0.024113303050398827, + -0.022500991821289062, + -0.008432521484792233, + 0.0281226746737957, + -0.006099666468799114, + 0.006581219378858805, + -0.015466757118701935, + -0.02238684706389904, + -0.016151631250977516, + 0.0076406351290643215, + 0.02813694253563881, + 0.04015078768134117, + 0.02225843258202076, + -0.032816920429468155, + -0.03509983792901039, + 0.027109630405902863, + -0.03076229616999626, + 0.0062780193984508514, + 0.04660002514719963, + 0.004262632690370083, + 0.036869097501039505, + 0.011350373737514019, + 0.001545427250675857, + -0.032560091465711594, + 0.011564397253096104, + -0.004055743105709553, + 0.05610266700387001, + 0.018791254609823227, + 0.015024442225694656, + -0.016693824902176857, + 0.03746836259961128, + -0.007997340522706509, + 0.008061547763645649, + -0.0883488580584526, + 0.00040374620584771037, + -6.0026872233720496e-5, + -0.028079869225621223, + 0.05013854801654816, + -0.018662840127944946, + -0.026809997856616974, + 0.014154080301523209, + 0.010544219054281712, + 0.07659183442592621, + 0.03903786838054657, + -0.011229094117879868, + -0.0006402866565622389, + 0.020474905148148537, + 0.04286175221204758, + 0.02618219517171383, + 0.03783933445811272, + 0.020531976595520973, + -0.010772510431706905, + 0.01859149895608425, + 0.01720748096704483, + -0.05196487903594971, + 0.02225843258202076, + 0.02993473783135414, + -0.0055289375595748425, + -0.010223183780908585, + 0.06837333738803864, + 0.013248047791421413, + 0.036754950881004333, + -0.004865465220063925, + -0.039094939827919006, + -0.006042593624442816, + 0.0319322906434536, + 0.026895606890320778, + 0.04854050651192665, + 0.008988982066512108, + 0.029421081766486168, + 0.01762126013636589, + 0.004259065724909306, + -0.007426611613482237, + 0.01476761419326067, + 0.03712592273950577, + 0.0051222932524979115, + 0.008097218349575996, + -0.04254785180091858, + -0.03849567472934723, + 0.01127189863473177, + 0.02071746438741684, + -0.005742961075156927, + 0.03275984898209572, + -0.00636719586327672, + -0.026210730895400047, + -0.0288360845297575, + 0.02688133716583252, + -0.03487154468894005, + 0.04160614684224129, + -0.00873928889632225, + 0.010972266085445881, + 0.06654700636863708, + -0.027238043025135994, + 0.028793280944228172, + -0.05293511971831322, + 0.007633501198142767, + -0.03119034320116043, + 0.021858923137187958, + 0.021359534934163094, + 0.008967580273747444, + 0.02885035239160061, + -0.03430081531405449, + -0.013783106580376625, + 0.03290253132581711, + 0.013882984407246113, + -0.014938833191990852, + -0.003873823443427682, + -0.03681202232837677, + 0.029763519763946533, + -0.034643251448869705, + 0.03735421597957611, + -0.04534442350268364, + 0.017321625724434853, + 0.027252312749624252, + -0.008232766762375832, + 0.004765587393194437, + -0.009252944961190224, + 0.0055075353011488914, + 0.020403563976287842, + 0.04126371070742607, + -0.019904175773262978, + -0.005182933062314987, + 0.009859343990683556, + 0.002125965664163232, + 0.020346490666270256, + 0.001395610859617591, + -0.01650833711028099, + 0.008346912451088428, + 0.002102779923006892, + -0.03584178537130356, + 0.08401131629943848, + -0.03244594484567642, + -0.014753345400094986, + 0.01859149895608425, + -0.0013911520363762975, + 0.004811959341168404, + 0.036326903849840164, + -0.03652665764093399, + 0.02939254604279995, + 0.03355886787176132, + -0.023185867816209793, + -0.018962472677230835, + -0.01344066858291626, + 0.028065601363778114, + 0.009581114165484905, + 0.022586602717638016, + 0.007016400340944529, + 0.009074592031538486, + 0.025154883041977882, + 0.03695470467209816, + 0.012256406247615814, + 0.01182122528553009, + -0.004448119550943375, + 0.030163029208779335, + 0.014838955365121365, + -0.020931487902998924, + 0.026082318276166916, + -0.01217079721391201, + -0.004655008669942617, + 0.0013447803212329745, + -0.001464276690967381, + 0.04562978819012642, + -0.0009185170638374984, + -0.0016649236204102635, + 0.042890287935733795, + -0.002366742119193077, + -0.020346490666270256, + 0.039237622171640396, + 0.02785157784819603, + -0.04620051756501198, + -0.03107619658112526, + -0.02982059307396412, + -0.017178943380713463, + 0.01723601669073105, + -0.007604964543133974, + -0.006313689984381199, + -0.022715015336871147, + -0.003934463486075401, + -0.01916222833096981, + 0.019119422882795334, + 0.018991008400917053, + 0.022158555686473846, + 0.019133690744638443, + -0.03401545062661171, + -0.023870741948485374, + 0.010315927676856518, + -0.028622061014175415, + 0.05233585461974144, + -0.00832550972700119, + 0.02435586228966713, + 0.013940056785941124, + -0.03358740359544754, + 0.00626731850206852, + -0.003970134072005749, + -0.021359534934163094, + -0.021930264309048653, + -0.026068048551678658, + -0.01127189863473177, + 0.009531174786388874, + -0.04531588777899742, + -0.021730508655309677, + -0.0159661453217268, + -0.038723964244127274, + -0.018263328820466995, + -0.005207902751863003, + -0.046514417976140976, + 0.012113723903894424, + 0.04488784074783325, + -0.04739904776215553, + 0.026695851236581802, + 0.0051436955109238625, + -0.04491637647151947, + 0.0001433510915376246, + -0.043461017310619354, + 0.017535649240016937, + -0.017435772344470024, + 0.008111486211419106, + -0.052906583994627, + -0.004993879236280918, + -0.049196843057870865, + -0.03587032109498978, + -0.0018352506449446082, + -0.03093351423740387, + -0.0021188315004110336, + 0.007540757302194834, + -0.030277175828814507, + -0.00745514826849103, + -0.02421317994594574, + -0.018991008400917053, + -0.011985310353338718, + 0.025283297523856163, + -0.011015070602297783, + 0.009395627304911613, + 0.0008204230107367039, + 0.011136350221931934, + 0.031703997403383255, + -0.023485500365495682, + 0.050595130771398544, + -0.014938833191990852, + -0.0027180970646440983, + 0.0017612341325730085, + 0.017464308068156242, + -0.020246613770723343, + -0.006770273204892874, + -0.04754173010587692, + 0.0002994098176714033, + 0.0027876547537744045, + -0.015994681045413017, + 0.008568069897592068, + -0.01847735233604908, + -0.01239195466041565, + -0.014739077538251877, + 0.0022276267409324646, + 0.005261408165097237, + -0.010829583741724491, + -0.0014384154928848147, + -0.03076229616999626, + -0.03355886787176132, + -0.029064375907182693, + 0.006791675463318825, + -0.020489173009991646, + -0.02603951282799244, + 0.048768796026706696, + -0.012698721140623093, + -0.015595171600580215, + 0.04189151152968407, + 0.04291882365942001, + 0.026981215924024582, + 0.02267221175134182, + -0.03375862166285515, + -0.020032590255141258, + -0.018420280888676643, + 0.021587826311588287, + -0.021473679691553116, + -0.0012547121150419116, + -0.03698324039578438, + 0.008068681694567204, + -0.031161805614829063, + 0.011878298595547676, + -0.026110853999853134, + -0.005899911746382713, + 0.01735016331076622, + -0.008090084418654442, + 0.005282810889184475, + -0.020646123215556145, + -0.020788805559277534, + -0.007968803867697716, + 0.03709738701581955, + -0.01098653394728899, + -0.02586829476058483, + -0.024398665875196457, + 0.02897876687347889, + 0.005336316768079996, + -0.005721558816730976, + 0.026367681100964546, + -0.009210140444338322, + 0.03792494535446167, + 0.04771294817328453, + -0.0009434864623472095, + -0.02056051418185234, + 0.039951033890247345, + -0.018291866406798363, + -0.01406133733689785, + 0.04309004172682762, + 0.029007304459810257, + 0.02181611768901348, + -0.0014464413980022073, + 0.055646080523729324, + 0.01440377440303564, + -0.05829997360706329, + 0.0313044898211956, + -0.0025165583938360214, + -0.002543311333283782, + 0.010201781988143921, + 0.04762733727693558, + 0.01595187745988369, + -0.041777364909648895, + -0.009581114165484905, + -0.004897568840533495, + -0.020474905148148537, + -0.02759474888443947, + -0.001650655409321189, + 0.0019030246185138822, + -0.056759003549814224, + 0.007476550526916981, + -0.018149184063076973, + -0.010915192775428295, + -0.02143087610602379, + -0.025525856763124466, + 0.0038452870212495327, + 0.03986542299389839, + 0.011771286837756634, + -0.03801055625081062, + -0.0024523513857275248, + 0.05750095099210739, + -0.0319322906434536, + -0.0005025090649724007, + 0.011450251564383507, + -0.03395837917923927, + 0.01098653394728899, + -0.015552366152405739, + 0.03704031556844711, + -0.053791213780641556, + -0.000127522274851799, + -0.01610882766544819, + 0.04477369412779808, + 0.01476761419326067, + 0.028479378670454025, + -0.029620837420225143, + -0.005150829441845417, + -0.007612098474055529, + -0.0033904872834682465, + 0.024284521117806435, + -0.0018513023387640715, + -0.041777364909648895, + -0.011393178254365921, + 0.0316183902323246, + 0.01028025709092617, + 0.01677943393588066, + 0.004216260742396116, + -0.029035840183496475, + 0.023000380024313927, + -0.0077048419043421745, + -0.0017755023436620831, + 0.029421081766486168, + 0.04348955303430557, + -0.03298813849687576, + 0.022072946652770042, + -0.006852315738797188, + -0.009745198301970959, + 0.0002782304072752595, + 0.01162147056311369, + -0.03721153363585472, + 0.025925366207957268, + 0.010130440816283226, + 0.052392926067113876, + 0.015923339873552322, + -0.0004877949832007289, + -0.024541348218917847, + -0.024569885805249214, + -0.02840803749859333, + 0.004412448965013027, + -0.030705222859978676, + -0.005375554319471121, + -0.0011405663099139929, + -0.022058676928281784, + -0.023756597191095352, + 0.017749672755599022, + 0.02572561241686344, + -0.030876440927386284, + 0.034928616136312485, + 0.0072767953388392925, + -0.0020938622765243053, + -0.05695875734090805, + 0.026210730895400047, + -0.01903381384909153, + -0.00500458013266325, + 0.007512221112847328, + 0.00896044634282589, + -0.008054413832724094, + -0.013319388963282108, + 0.015452489256858826, + -0.021759044378995895, + 0.015366879291832447, + -0.013062560930848122, + 0.008653678931295872, + -0.003233536845073104, + -0.0025415278505533934, + -0.004933238960802555, + -0.0010451475391164422, + -0.01441804226487875, + 0.029178522527217865, + -0.026838533580303192, + -0.030163029208779335, + 0.021773312240839005, + -0.016865042969584465, + 0.03863835707306862, + 0.017977964133024216, + 0.02755194529891014, + -0.0067524379119277, + 0.010330195538699627, + 0.011635738424956799, + -0.01817771978676319, + -0.04982464388012886, + -0.004886867478489876, + -0.04189151152968407, + 0.0009292182512581348, + -0.0212881937623024, + 0.009830808266997337, + 0.0007562160026282072, + 0.011464519426226616, + 0.012463295832276344, + 0.02197306789457798, + -0.012912744656205177, + 0.0016123095992952585, + -0.0011798039777204394, + 0.012477563694119453, + -0.030619613826274872, + -0.0035438707564026117, + 0.03164692595601082, + 0.004269766621291637, + -0.0016979188658297062, + -0.008354046382009983, + -0.017749672755599022, + 0.012363418005406857, + -0.011179154738783836, + 0.002272214973345399, + 0.004383912310004234, + 0.024013424292206764, + 0.015167124569416046, + -0.03315935656428337, + 0.0011521592969074845, + 0.01707906648516655, + 0.03264570236206055, + -0.004747752100229263, + 0.027052557095885277, + -0.009595382027328014, + -0.009424163028597832, + 0.03150424361228943, + -0.014896027743816376, + 0.0313044898211956, + -0.011022204533219337, + -0.012199332937598228, + 0.0228006262332201, + 0.006385031156241894, + -0.007654903456568718, + 0.002659240737557411, + -0.006538414862006903, + 0.01650833711028099, + -0.03441496193408966, + -0.018834058195352554, + -0.0013947191182523966, + -0.0019672317430377007, + 0.03704031556844711, + 0.03090497851371765, + -0.02098856121301651, + 0.01013757474720478, + 0.002356040757149458, + 0.02588256262242794, + 0.006135337054729462, + 0.052906583994627, + 0.04648588225245476, + 0.005500401370227337, + 0.03766811639070511, + 0.019618811085820198, + 0.010537085123360157, + 0.010408670641481876, + -0.02058904990553856, + 0.024969395250082016, + -8.477332448819652e-5, + 0.03381569683551788, + 0.0032424544915556908, + 0.016194436699151993, + -0.006952193100005388, + -0.03635543957352638, + 0.03587032109498978, + 0.00152313313446939, + 0.006859449669718742, + 0.005953417159616947, + 0.019904175773262978, + -0.011371776461601257, + 0.014318165369331837, + -0.0022276267409324646, + 0.024284521117806435, + -0.013240913860499859, + 0.01933344639837742, + 0.013697497546672821, + -0.029421081766486168, + 0.01944759301841259, + -0.028721939772367477, + -0.00868934951722622, + -0.016051754355430603, + -0.026082318276166916, + -0.013355059549212456, + -0.033673014491796494, + 0.01182122528553009, + -0.017635527998209, + -0.007159082684665918, + -0.0040307738818228245, + 0.02922132797539234, + -0.006602621637284756, + 0.0015481025911867619, + -0.019918443635106087, + 0.005867808125913143, + -0.021373802796006203, + 0.01862003467977047, + 0.07556452602148056, + -0.008939043618738651, + 0.013176706619560719, + 0.021730508655309677, + 0.0036597999278455973, + 0.034928616136312485, + 0.028079869225621223, + -0.018848326057195663, + 0.011542994529008865, + 0.0012270674342289567, + 0.023456964641809464, + 0.0012261756928637624, + -0.002309669042006135, + -0.0033351979218423367, + 0.007362404838204384, + -0.012342015281319618, + -0.00853239931166172, + 0.004558698274195194, + -0.014682005159556866, + 0.013747435994446278, + 0.004544429946690798, + 0.028579257428646088, + -0.015509561635553837, + 0.015452489256858826, + -0.008853434585034847, + 0.03501422703266144, + -0.0053933896124362946, + 0.0374968983232975, + -0.019290640950202942, + -0.005118726287037134, + 0.013048293069005013, + -0.011500190012156963, + 0.008782093413174152, + 0.008632277138531208, + 0.034357886761426926, + 0.018106378614902496, + -0.013126768171787262, + -0.010037696920335293, + -0.030876440927386284, + -0.0036954705137759447, + 0.02688133716583252, + -0.038723964244127274, + -0.004087846726179123, + -0.014603529125452042, + -0.028165478259325027, + -0.016964921727776527, + 0.0270097516477108, + -0.01649406924843788, + -0.0022311939392238855, + -0.015752121806144714, + 0.05573169142007828, + -0.0044374181888997555, + -0.027223775163292885, + 0.024455739185214043, + -0.004897568840533495, + 0.004722782876342535, + 0.026553168892860413, + 0.009709527716040611, + -0.03918055072426796, + 0.005693022161722183, + 0.0032495884224772453, + -0.0002947280590888113, + -0.01665101945400238, + -0.010494280606508255, + -0.015124320052564144, + -0.00113789108581841, + -0.008254168555140495, + -0.017549918964505196, + -0.003322713077068329, + 0.008075815625488758, + 0.039237622171640396, + 0.009181603789329529, + 0.0014749779365956783, + -0.016137363389134407, + 0.019533202052116394, + -0.010394402779638767, + 0.038581281900405884, + -0.03144717216491699, + 0.021502217277884483, + -0.012748660519719124, + 0.01874844916164875, + -0.026524633169174194, + -0.008839165791869164, + 0.02000405266880989, + 0.013126768171787262, + 0.03284545615315437, + -0.005272109527140856, + 0.02349976822733879, + 0.0007762807072140276, + 0.0019351281225681305, + -0.0013322955928742886, + -0.009331420063972473, + 0.012063785456120968, + 0.004433851223438978, + 0.03467179089784622, + 0.01764979586005211, + -0.007533623371273279, + 0.018277598544955254, + -0.003345899051055312, + 0.01162147056311369, + -0.00444098562002182, + -0.0021848222240805626, + -0.003187165129929781, + 0.01916222833096981, + 0.012855671346187592, + -0.040807127952575684, + -0.011592933908104897, + -0.0014758696779608727, + -0.007547891698777676, + 0.001178020378574729, + -0.02198733575642109, + 0.0007120736408978701, + 0.010551352985203266, + 0.026082318276166916, + -0.0012966250069439411, + -0.0027716029435396194, + 0.053791213780641556, + -0.03432935103774071, + 0.0030105956830084324, + 0.008311241865158081, + -0.01105074118822813, + 0.023200135678052902, + -0.00784039031714201, + 0.009195871651172638, + 0.006306556053459644, + 0.019633078947663307, + -0.013119634240865707, + 0.018006501719355583, + 0.029449619352817535, + 0.03158985450863838, + 0.02238684706389904, + -0.01846308447420597, + -0.004451686516404152, + 0.013419266790151596, + -0.024398665875196457, + -0.03741128742694855, + 0.0017228883225470781, + -0.05342023819684982, + -0.01608029007911682, + 0.021602094173431396, + 0.0016114177415147424, + 0.0218446534126997, + -0.0341581329703331, + 0.05792899802327156, + -0.013975727371871471, + -0.011143485084176064, + 0.0215307530015707, + 0.017307357862591743, + 0.03592739254236221, + 0.02646755985915661, + 0.011407447047531605, + 0.0018691376317292452, + -0.0371829979121685, + 0.0011111381463706493, + 0.001284140395000577, + -0.010594157502055168, + -0.004669276997447014, + -0.0001708843046799302, + 0.0007214371580630541, + 0.01391865499317646, + 0.020674658939242363, + -0.01496736891567707, + -0.004162754863500595, + -0.01070116925984621, + -0.0005747419781982899, + -0.032931067049503326, + 0.008425387553870678, + -0.007961669936776161, + 0.00545402942225337, + 0.01846308447420597, + 0.008996116928756237, + -0.04537295922636986, + -0.0034867976792156696, + 0.016750898212194443, + -0.017749672755599022, + 0.0448022298514843, + 0.04132078215479851, + -0.01723601669073105, + -0.002017170423641801, + 0.003895225701853633, + 0.014089873060584068, + 0.036184221506118774, + -0.026653045788407326, + 0.0062566171400249004, + 0.010886656120419502, + -0.0025878995656967163, + -0.011521592736244202, + -0.032103508710861206, + -0.016465533524751663, + 0.0004097656055819243, + 0.0028465110808610916, + 0.00896044634282589, + 0.031247414648532867, + -0.017963696271181107, + -0.00246840319596231, + -0.04229102283716202, + 0.050737813115119934, + -2.338094054721296e-5, + -0.01539541594684124, + -0.00583927147090435, + 0.014368103817105293, + 0.008275571279227734, + -0.019618811085820198, + 0.0048012579791247845, + 0.0017710435204207897, + 0.010109038092195988, + 0.04856904223561287, + 0.05050951987504959, + -0.027494871988892555, + 0.023599646985530853, + -0.01197817549109459, + -0.010380134917795658, + -0.0013349709333851933, + 0.007818987593054771, + 0.024270253255963326, + 0.0016649236204102635, + -0.005571742542088032, + -0.015010174363851547, + 0.042604923248291016, + -0.03823884576559067, + 0.02519768662750721, + -0.0034529108088463545, + -0.04431711137294769, + -0.0071733505465090275, + 0.006624023895710707, + -0.016722360625863075, + 0.011029338464140892, + -0.005621680989861488, + -0.03287399187684059, + -0.0045836674980819225, + 0.011150619015097618, + 0.030419858172535896, + 0.01623724214732647, + -0.014853223226964474, + -0.015894804149866104, + 0.004276901017874479, + 0.0018673541489988565, + -0.015295538119971752, + 0.00930288340896368, + 0.016593946143984795, + 0.02197306789457798, + -0.008917640894651413, + -0.020189540460705757, + -0.009167334996163845, + 0.025782683864235878, + -0.012506100349128246, + -0.014332433231174946, + 0.01622297242283821, + 0.026239268481731415, + 0.02953522838652134, + -0.013062560930848122, + -0.006374330259859562, + 0.01833466999232769, + 0.00895331148058176, + 0.01119342353194952, + -0.007633501198142767, + 0.021345267072319984, + -0.00573939410969615, + -0.03287399187684059, + -0.012284942902624607, + -0.0001887195830931887, + 0.032531555742025375, + -0.05384828522801399, + 0.028293892741203308, + 0.015552366152405739, + 0.042747605592012405, + -0.017435772344470024, + 0.025269027799367905, + 0.00840398482978344, + 0.00826130248606205, + -0.026624510064721107, + 0.024313056841492653, + 0.03133302554488182, + -0.011136350221931934, + -0.02282916195690632, + -0.012705855071544647, + 0.006128203123807907, + -0.009431297890841961, + 0.0008440547389909625, + 0.026795728132128716, + 0.02745206654071808, + -0.01224927231669426, + 0.009738064371049404, + -0.01834893971681595, + -0.0378107987344265, + 0.026824265718460083, + -0.023057453334331512, + -0.01013757474720478, + -0.004918971098959446, + 0.0001939586945809424, + -0.009481236338615417, + -0.013526278547942638, + -0.0180350374430418, + -0.03900932893157005, + 0.004116383381187916, + 0.006088965572416782, + 0.019618811085820198, + -0.02434159442782402, + 0.01295554917305708, + 0.0135048758238554, + -0.01399713009595871, + -0.01279859896749258, + -0.018120646476745605, + 0.021730508655309677, + 0.0008449465385638177, + 0.007348136510699987, + -0.014724809676408768, + -0.018306134268641472, + 0.007376672700047493, + -0.0126701844856143, + -0.0032513721380382776, + 0.021744776517152786, + 0.008011609315872192, + -0.008082950487732887, + -0.022615138441324234, + 0.016536874696612358, + 0.011707079596817493, + -0.011321837082505226, + 0.024541348218917847, + -0.006948626134544611, + 0.009609649889171124, + -0.03221765533089638, + -0.004587234929203987, + -0.008917640894651413, + 0.004908269736915827, + -0.03578471019864082, + 0.011657141149044037, + -0.010508548468351364, + 0.021602094173431396, + -0.014924564398825169, + -0.004305437207221985, + -0.027038289234042168, + -0.012277808971703053, + -0.01013757474720478, + -0.019547469913959503, + -0.023428427055478096, + -0.0008931017946451902, + 0.008618008345365524, + 0.00583927147090435, + 0.0036330469883978367, + -0.014981637708842754, + -0.002343556145206094, + -0.022600870579481125, + 0.007426611613482237, + 0.012891341932117939, + -0.029849128797650337, + -0.0011994227534160018, + 0.011500190012156963, + -0.016408460214734077, + 0.0006349360919557512, + 0.020118199288845062, + 0.005261408165097237, + 0.013540546409785748, + -0.018291866406798363, + -0.019262105226516724, + 0.0007753889076411724, + -0.008132888935506344, + -0.013076829724013805, + -0.010858120396733284, + -0.020218076184391975, + 0.01281286682933569, + 0.018134916201233864, + -0.0031318755354732275, + 0.01021604984998703, + -0.019361982122063637, + -0.038695428520441055, + 0.01259170938283205, + -0.013968593440949917, + -0.025269027799367905, + -0.011143485084176064, + -0.01695065200328827, + 0.000593914941418916, + 0.0024327326100319624, + 0.03387276828289032, + -0.03461471572518349, + -0.00594985019415617, + 0.005618114024400711, + -0.004194858483970165, + -0.011150619015097618, + 0.008140022866427898, + -0.02842230722308159, + -0.002120615215972066, + 0.010237452574074268, + -0.015909072011709213, + 0.0019155093468725681, + 0.010251720435917377, + 0.0015721801901236176, + 0.009131664410233498, + -0.021801849827170372, + -0.009573979303240776, + 0.00351355061866343, + 0.014710540883243084, + -0.02464122697710991, + 0.006898687221109867, + -0.08429668098688126, + -0.022187091410160065, + -0.015309806913137436, + -0.00151154026389122, + 0.006631158292293549, + 0.014496517367661, + 0.0032852590084075928, + 0.009645320475101471, + 0.002812623977661133, + -0.024027692154049873, + 0.01862003467977047, + -0.01265591662377119, + -0.009267212823033333, + 0.019233569502830505, + -0.0009087076759897172, + 0.004929671995341778, + -0.019390519708395004, + -0.01777821034193039, + 0.009609649889171124, + -0.02044636756181717, + -0.006820212118327618, + 0.013640424236655235, + 0.043289799243211746, + -0.009488370269536972, + 0.0002735486486926675, + -0.0004111032758373767, + 0.0020260880701243877, + -0.012463295832276344, + 0.012605978175997734, + -0.03390130400657654, + 0.016165900975465775, + 0.02800852805376053, + -0.00769770797342062, + -0.02421317994594574, + -0.004783422686159611, + 0.015766389667987823, + 0.008639411069452763, + -0.008767824620008469, + 0.010850985534489155, + 0.01491029653698206, + -0.013947190716862679, + -0.01707906648516655, + 0.007811853662133217, + 0.01847735233604908, + 0.023999156430363655, + -0.007426611613482237, + 0.029164254665374756, + -0.01440377440303564, + 0.0014687355142086744, + 0.00702710123732686, + 0.01050141453742981, + 0.011735616251826286, + -0.007405209355056286, + -0.011814091354608536, + -0.010551352985203266, + -0.01901954598724842, + 0.03218911960721016, + -0.022286970168352127, + 0.015309806913137436, + 0.013041159138083458, + 0.054361943155527115, + 0.00660975556820631, + 0.0062780193984508514, + -0.004116383381187916, + -0.021231120452284813, + 0.016579678282141685, + -0.00678454153239727, + 0.02405622974038124, + 0.016993457451462746, + 0.0005707290256395936, + 0.00290358392521739, + 0.008140022866427898, + -0.029064375907182693, + 0.02041783183813095, + -0.02422744780778885, + 0.027323653921484947, + 0.008618008345365524, + 0.020646123215556145, + 0.00018727047427091748, + 0.00570729048922658, + -0.046799782663583755, + 0.005168664734810591, + -0.015509561635553837, + -0.006067563313990831, + -0.016322851181030273, + -0.008068681694567204, + -0.00930288340896368, + -0.008218497969210148, + 0.039123475551605225, + -0.0013162438990548253, + 0.027209507301449776, + 0.0015159989707171917, + -0.00604616105556488, + 0.005714424420148134, + -0.033244967460632324, + 0.0602119155228138, + -0.011164886876940727, + 0.013454937376081944, + -0.019975516945123672, + -0.0031978662591427565, + -0.012648782692849636, + -0.0024166807997971773, + 0.011036473326385021, + -0.01253463700413704, + -0.013269450515508652, + 0.00859660655260086, + -0.004886867478489876, + 0.021059902384877205, + 0.012299210764467716, + -0.007448013871908188, + 0.005614547058939934, + 0.01197817549109459, + -0.024412935599684715, + 0.034643251448869705, + 0.0028465110808610916, + -0.007390941027551889, + -0.04000810533761978, + -0.02464122697710991, + -0.005946283228695393, + -0.014810418710112572, + 0.012998353689908981, + 0.031275950372219086, + -0.01029452495276928, + -8.304553193738684e-5, + -0.008910506963729858, + 0.026752924546599388, + 0.012113723903894424, + -0.013404998928308487, + 0.01092232670634985, + 0.017806746065616608, + -0.008774959482252598, + -0.021901726722717285, + -0.00479412404820323, + -0.006327958311885595, + -0.022600870579481125, + 0.002568280790001154, + 0.02605378068983555, + 0.007925999350845814, + 0.005999789107590914, + -0.02856498956680298, + 0.019404787570238113, + -0.011828359216451645, + -0.005475431680679321, + -0.0001271878572879359, + -0.02310025878250599, + 0.005468297749757767, + -0.01859149895608425, + -0.02770889550447464, + 0.004505192395299673, + 0.013462071307003498, + 0.0027252312283962965, + -0.007711976300925016, + 0.008354046382009983, + 0.03173253312706947, + -0.021216852590441704, + -0.02532610110938549, + -0.01736443117260933, + -0.00031769098131917417, + -0.02601097710430622, + -0.01639419235289097, + 0.015010174363851547, + 0.013240913860499859, + -0.0008226524223573506, + 0.0055075353011488914, + -0.02979205548763275, + -0.01832040213048458, + 0.018805522471666336, + -0.0077048419043421745, + 0.003556355368345976, + -0.013169572688639164, + 0.025154883041977882, + 0.007711976300925016, + -0.007669171784073114, + 0.009331420063972473, + -0.00936709064990282, + -0.02545451559126377, + -0.015609439462423325, + -6.253495666896924e-5, + 0.023143062368035316, + -0.010494280606508255, + -0.013818777166306973, + 0.02475537173449993, + 0.011542994529008865, + 0.01525273360311985, + -0.0067239017225801945, + 0.0039059268310666084, + -0.02379940077662468, + -0.002393494825810194, + 0.002919635735452175, + -0.0026307040825486183, + 0.012484697625041008, + 0.024398665875196457, + 0.00028179746004752815, + 0.012149394489824772, + 0.0036990377120673656, + -0.005329182371497154, + 0.026096586138010025, + 0.03441496193408966, + -0.01328371837735176, + -0.01428249478340149, + -0.007890328764915466, + -0.008746422827243805, + 0.018134916201233864, + 0.012135126627981663, + 0.003367301309481263, + -0.00023453397443518043, + -0.04811245948076248, + 0.015067246742546558, + 0.028051333501935005, + 0.0006862125010229647, + 0.012220735661685467, + -0.0022615138441324234, + 0.03664080426096916, + 0.0023025351110845804, + 0.0072553930804133415, + 0.019290640950202942, + 0.020046858116984367, + -0.01777821034193039, + -0.007369538769125938, + -0.02629633992910385, + 0.043889064341783524, + -0.0193049106746912, + 0.021887458860874176, + 0.00016330431390088052, + 0.019975516945123672, + -0.005240005906671286, + 0.011714213527739048, + -0.04828367754817009, + -0.017421504482626915, + -0.0010023429058492184, + 0.010686901398003101, + 0.012463295832276344, + -0.014261092059314251, + 0.020503440871834755, + -0.011921103112399578, + -0.0021776880603283644, + 0.023571109399199486, + 0.00973093044012785, + 0.015481024980545044, + 0.01862003467977047, + 0.0050295498222112656, + -0.029478155076503754, + 0.006245915777981281, + -0.01900527812540531, + 0.013404998928308487, + 0.007148381322622299, + -0.01308396365493536, + -0.00846819207072258, + 0.013347925618290901, + -0.0027377158403396606, + 0.01176415290683508, + 0.0015864484012126923, + -0.0005823219544254243, + -0.0037133058067411184, + 0.008575203828513622, + -0.01971868798136711, + 0.022500991821289062, + -0.01491029653698206, + 0.026681583374738693, + -0.016294313594698906, + -0.0193049106746912, + 0.009188737720251083, + 0.016679557040333748, + -0.009231542237102985, + 0.004687112290412188, + -0.008368314243853092, + -0.01622297242283821, + 0.0019297775579616427, + 0.014467981643974781, + 0.001029095845296979, + 0.0165226049721241, + 0.009203005582094193, + -0.009538309648633003, + 0.004016505554318428, + 0.0007472983561456203, + 0.005197201389819384, + 0.0026449724100530148, + -0.005218603648245335, + -0.002318586688488722, + -0.013476339168846607, + -0.011971041560173035, + -0.03218911960721016, + -0.004765587393194437, + 0.01552383042871952, + 0.01609455980360508, + 0.016536874696612358, + -0.02601097710430622, + 0.002049274044111371, + 0.028379501774907112, + -0.01196390762925148, + -0.006691798102110624, + 0.01998978480696678, + 0.027880113571882248, + -0.008311241865158081, + 0.005714424420148134, + 0.026781460270285606, + 0.008168559521436691, + 0.020503440871834755, + 0.03738275170326233, + -0.022001605480909348, + -0.0024362995754927397, + -0.007269661407917738, + -0.006834480445832014, + 0.002580765401944518, + -0.011635738424956799, + -0.00020477133512031287, + -0.008025877177715302, + -0.0051222932524979115, + -0.004633606411516666, + -0.0036740682553499937, + -0.0010611993493512273, + -0.01372603327035904, + -0.003615211695432663, + -0.026410486549139023, + -0.002723447745665908, + 0.02281489409506321, + 0.046229053288698196, + -0.002966007450595498, + -0.011143485084176064, + -0.012841403484344482, + 0.010979400016367435, + -0.019661616533994675, + 0.002154502086341381, + -0.00979513768106699, + -0.053220484405756, + -0.009203005582094193, + -0.004223395138978958, + -0.0015008390182629228, + 0.001874488196335733, + -0.013982861302793026, + -0.0316183902323246, + 0.04836928844451904, + -0.0027751699090003967, + 0.004312571138143539, + -0.014796150848269463, + -0.005835704505443573, + 0.00045836676144972444, + -0.0010397969745099545, + -0.02745206654071808, + -0.0065705180168151855, + 0.022058676928281784, + 0.016893580555915833, + 0.002356040757149458, + -0.008232766762375832, + 0.026139389723539352, + 0.007868926972150803, + 0.007676305714994669, + 0.030962049961090088, + -0.00931715127080679, + 0.020945755764842033, + -0.0002936133532784879, + 0.010223183780908585, + 0.004515893757343292, + -0.018377475440502167, + 0.0054861330427229404, + 0.023984888568520546, + 0.007569293957203627, + 0.0033316307235509157, + 0.0017933376366272569, + -0.009966355748474598, + 0.0013786673080176115, + 0.018234793096780777, + 0.009038921445608139, + 0.018077842891216278, + -0.012284942902624607, + -0.034643251448869705, + -0.014639199711382389, + -0.02000405266880989, + 0.012142260558903217, + 0.0012422273866832256, + -0.009552577510476112, + -0.009723796509206295, + -0.033387649804353714, + 0.014018531888723373, + -0.009723796509206295, + 0.0025326102040708065, + -0.00087972532492131, + -0.0016461965860798955, + 0.013190975412726402, + -0.0028875323478132486, + -0.007251826114952564, + 0.007009265944361687, + -0.018120646476745605, + -0.022429650649428368, + -0.018006501719355583, + 0.007094875443726778, + -0.0038131834007799625, + 0.014838955365121365, + -0.0090175187215209, + -0.015010174363851547, + -0.02869340218603611, + -0.02014673501253128, + -0.013026890344917774, + -0.012777196243405342, + 0.02562573365867138, + 0.012349150143563747, + -0.019347714260220528, + 0.01428249478340149, + -0.020018320530653, + -0.0209742933511734, + -0.012784330174326897, + 0.03906640410423279, + -0.01817771978676319, + 0.036612268537282944, + -0.023870741948485374, + 0.0010620910907164216, + 0.022900503128767014, + 0.005329182371497154, + 0.002257946878671646, + -0.004319705534726381, + -0.0042198277078568935, + -0.0011619686847552657, + -0.0005372879095375538, + -0.004819093272089958, + -0.008767824620008469, + 0.007244691718369722, + -0.01569504849612713, + 0.028779013082385063, + -0.005860673729330301, + -0.00337621895596385, + -0.01491029653698206, + -0.015081514604389668, + -0.010173245333135128, + -0.01736443117260933, + -0.036041539162397385, + 0.0058499728329479694, + -0.02181611768901348, + -0.006385031156241894, + 0.006099666468799114, + -0.013319388963282108, + 0.0043946136720478535, + 0.0029339040629565716, + -0.004633606411516666, + 0.00506878737360239, + 0.03330203890800476, + -0.007123412098735571, + 0.01583773083984852, + -9.58089076448232e-5, + -0.006174575071781874, + -0.0341581329703331, + -0.027038289234042168, + -0.00846819207072258, + 0.00524357333779335, + -0.008211364038288593, + 0.015709316357970238, + -0.0004380791215226054, + 0.01393292285501957, + -0.007105576805770397, + 0.0015311590395867825, + -0.001936911721713841, + 0.014097006991505623, + -0.05567461997270584, + -0.011814091354608536, + 0.025825489312410355, + 0.008332643657922745, + -0.010180379264056683, + -0.013611887581646442, + -0.004572966601699591, + 0.002894666278734803, + 0.005985520780086517, + -0.004169889260083437, + 0.03370155021548271, + 0.014446578919887543, + 0.010736839845776558, + -0.013290852308273315, + 0.024255983531475067, + 0.037297144532203674, + 0.0033976214472204447, + 0.00175945064984262, + -0.02562573365867138, + 0.03258862718939781, + -0.0036597999278455973, + 0.0011798039777204394, + -0.0035670564975589514, + 0.0065063112415373325, + -0.0050081475637853146, + -0.023456964641809464, + 0.0068701510317623615, + -0.010394402779638767, + -0.004943940322846174, + 0.0019529634155333042, + 0.007223289459943771, + 0.025083541870117188, + -0.011728482320904732, + 0.014111275784671307, + -0.011022204533219337, + -0.0033583836629986763, + -0.019675884395837784, + 0.017977964133024216, + 0.018991008400917053, + -0.026082318276166916, + 0.03236033767461777, + -0.01680796965956688, + -0.007647769059985876, + 0.012320613488554955, + -0.012420491315424442, + -0.0019904174841940403, + 0.006624023895710707, + 0.0021687704138457775, + -0.008025877177715302, + 0.009709527716040611, + -0.0027377158403396606, + -0.006948626134544611, + -0.005040250718593597, + 0.01777821034193039, + -0.021473679691553116, + -0.025083541870117188, + 0.005832137539982796, + 0.01322664599865675, + 0.010508548468351364, + 0.003451127093285322, + 0.013069694861769676, + -0.008981848135590553, + -0.00867508165538311, + -0.005489700008183718, + -0.0029000169597566128, + -0.0026717253495007753, + 0.01722174882888794, + -0.016280045732855797, + -0.0023078855592757463, + -0.014004264026880264, + -0.00689512025564909, + -0.000606399611569941, + -0.0141398124396801, + 0.022986112162470818, + 0.004244797397404909, + -0.007016400340944529, + -0.006131770089268684, + -0.018234793096780777, + 0.010208915919065475, + 0.003192515578120947, + -0.00035090919118374586, + -0.003338764887303114, + 0.012991219758987427, + 0.0034154567401856184, + 0.002304318593814969, + 0.022187091410160065, + 0.0033530332148075104, + -0.012342015281319618, + -0.007797585800290108, + -0.012035248801112175, + -0.0030605345964431763, + -0.012120857834815979, + 0.010801047086715698, + 0.020089661702513695, + 0.06660407781600952, + -0.014467981643974781, + -0.006370762828737497, + -0.007448013871908188, + 0.008796361275017262, + -0.03595592826604843, + -0.004622905049473047, + 0.016465533524751663, + 0.012570307590067387, + 0.015095783397555351, + 0.008860568515956402, + -0.030305711552500725, + 0.015780657529830933, + 0.022500991821289062, + -0.0060176244005560875, + -0.00251834187656641, + 0.00812575500458479, + 0.04463101178407669, + -0.001514215487986803, + 0.01525273360311985, + -0.009909283369779587, + 0.009559711441397667, + 0.004455253481864929, + 0.02211575023829937, + -0.007740512490272522, + 0.02492659166455269, + -0.0126701844856143, + -0.012284942902624607, + 0.012477563694119453, + 0.02083161100745201, + 0.018134916201233864, + 0.0041984254494309425, + 0.01461066398769617, + -0.02461268939077854, + -0.014204018749296665, + -0.0016426295042037964, + 0.007940268144011497, + -0.012962683103978634, + 0.013611887581646442, + -0.0077048419043421745, + 0.0004877949832007289, + 0.015595171600580215, + 0.00804014503955841, + 0.013269450515508652, + -0.002061758656054735, + -0.024997932836413383, + -0.015167124569416046, + -0.003870256245136261, + -0.013875849545001984, + 0.002142017474398017, + -0.013069694861769676, + 0.006217379588633776, + 0.005300646182149649, + -0.008104352280497551, + 0.0012734391493722796, + 0.006937924772500992, + -0.0013483474031090736, + -0.006128203123807907, + 0.0037454094272106886, + -0.006777407601475716, + -0.013540546409785748, + 0.0020653256215155125, + -0.010373000055551529, + -0.011229094117879868, + -0.007505087181925774, + 0.0013590485323220491, + -0.013833045028150082, + -0.020603317767381668, + 0.009809405542910099, + -0.003934463486075401, + -0.00027711570146493614, + 0.018277598544955254, + -0.0007678089314140379, + -0.022743552923202515, + -0.007790451403707266, + 0.0010933028534054756, + -0.0015641542850062251, + 0.009203005582094193, + -0.000867686525452882, + -0.006035459693521261, + 0.017721137031912804, + 0.019961249083280563, + -0.0029642239678651094, + -0.015095783397555351, + -0.008582337759435177, + -0.003497499041259289, + 0.0316183902323246, + -0.01566651277244091, + -0.007868926972150803, + -0.032103508710861206, + -0.016151631250977516, + -0.011528726667165756, + -0.015152855776250362, + -0.0016007166123017669, + -0.01322664599865675, + -0.009295749478042126, + -0.020888682454824448, + -0.0023685256019234657, + -0.0025379606522619724, + 0.019975516945123672, + 0.01125763077288866, + 0.009167334996163845, + 0.002142017474398017, + -0.001405420247465372, + 0.011992444284260273, + -0.04026493430137634, + 0.012770062312483788, + 0.0049261050298810005, + -0.04211980476975441, + 0.0025861160829663277, + 0.003855988150462508, + -0.006028325762599707, + -0.0010531734442338347, + -0.002297184430062771, + -0.012984085828065872, + 0.0067667062394320965, + 0.027480604127049446, + -0.005314914043992758, + -0.019946979358792305, + -0.02797999233007431, + 0.006292287725955248, + 0.0229575764387846, + 0.021316729485988617, + -0.007226856425404549, + 0.003121174406260252, + 0.0032906096894294024, + -0.006709633395075798, + -0.004273333586752415, + -0.013897252269089222, + 0.006171007640659809, + -0.0015249166171997786, + 0.010337329469621181, + 0.01015184260904789, + 0.00824703462421894, + 0.010323061607778072, + -0.006292287725955248, + -0.011100679636001587, + 0.0053220484405756, + 0.0194618608802557, + 0.004633606411516666, + 0.008832031860947609, + 0.0006951301475055516, + 0.0014080955879762769, + 0.0017639094730839133, + 0.01863430254161358, + 0.01901954598724842, + -0.005889210384339094, + 0.007376672700047493, + -0.005717991851270199, + -0.001302867429330945, + 0.018363207578659058, + -0.012627379968762398, + 0.01566651277244091, + -0.01553809829056263, + 0.025126345455646515, + 0.007868926972150803, + -0.015481024980545044, + 0.03401545062661171, + 0.0017184294993057847, + 0.0037204399704933167, + -0.019790029153227806, + 0.019904175773262978, + -0.006991430651396513, + -0.020888682454824448, + 0.004084279760718346, + 0.006302989087998867, + 0.012463295832276344, + 0.01161433570086956, + 0.010579889640212059, + -0.010158977471292019, + 0.008946177549660206, + 0.0008864135597832501, + 0.008075815625488758, + -0.038438599556684494, + -0.0012734391493722796, + 0.011493056081235409, + 0.004662143066525459, + -0.00450875936076045, + -0.019518934190273285, + -0.013533412478864193, + -0.007198320236057043, + -0.007997340522706509, + 0.010458610020577908, + -0.016536874696612358, + -0.002295400947332382, + -0.0253403689712286, + 0.0216877032071352, + -0.004605070222169161, + 0.00384885398671031, + 0.011564397253096104, + -0.01609455980360508, + 0.03147570788860321, + -0.028750475496053696, + 0.00952404085546732, + -0.01448224950581789, + 0.003681202419102192, + 0.007876060903072357, + 0.025811221450567245, + -0.01849162019789219, + -0.015024442225694656, + -0.008132888935506344, + 0.01034446433186531, + -0.005478998646140099, + 0.009260078892111778, + -0.0011744534131139517, + 0.004294735845178366, + -0.020046858116984367, + 0.004480223171412945, + -0.0198613703250885, + 0.007077040150761604, + -0.04831221327185631, + -0.013654692098498344, + 0.017806746065616608, + -0.022144287824630737, + -0.029849128797650337, + -2.7198806492378935e-5, + 0.014125543646514416, + 0.009773734956979752, + 0.006763139273971319, + -0.007954536005854607, + 0.010815315879881382, + 0.00958824809640646, + 0.017835281789302826, + -0.002054624492302537, + -0.01476761419326067, + 0.012548904865980148, + -0.0009363523568026721, + -8.354715100722387e-5, + 0.01639419235289097, + -0.0009880746947601438, + 0.02408476546406746, + -0.025440247729420662, + -0.008268437348306179, + 0.02686706930398941, + 0.008161425590515137, + 0.01639419235289097, + 0.010522816330194473, + -0.02758048102259636, + 0.017963696271181107, + -0.007102009374648333, + 0.016436995938420296, + 0.006763139273971319, + -0.0002632933610584587, + -0.016322851181030273, + 0.019119422882795334, + 0.009909283369779587, + 0.009895014576613903, + 0.006673962809145451, + 0.01505297888070345, + -2.9205275495769456e-5, + 0.0009506205678917468, + -0.007262527011334896, + 0.00978800281882286, + 0.027081092819571495, + -0.004533729050308466, + 0.026110853999853134, + 0.002257946878671646, + 0.011507323943078518, + -0.005639516282826662, + -0.0061567397788167, + 9.469420183449984e-5, + 0.00384885398671031, + 0.007016400340944529, + -0.012712989933788776, + -0.004808392375707626, + -0.004341107793152332, + -0.0010112605523318052, + 0.005457596387714148, + -0.019633078947663307, + 0.010116172023117542, + 0.0088177639991045, + 0.029734984040260315, + 0.0008788335835561156, + 0.004594368860125542, + -0.013169572688639164, + -0.009474102407693863, + 0.007102009374648333, + -0.016008948907256126, + -0.01316243875771761, + 0.005846405867487192, + 0.003162195673212409, + -0.0066632614471018314, + 0.0020296552684158087, + -0.010415805503726006, + 0.02797999233007431, + -0.0005528937908820808, + -0.0025932500138878822, + -0.007590696215629578, + -0.03176107257604599, + 0.01294128131121397, + 0.002042139880359173, + 0.00012741080718114972, + -0.0031639791559427977, + -0.017136139795184135, + -0.011300435289740562, + 0.03176107257604599, + 0.002272214973345399, + -0.0015695048496127129, + 0.02449854463338852, + -0.0008663488551974297, + 0.00321570155210793, + -0.005789332557469606, + 0.0031693298369646072, + -0.007258960045874119, + -0.00043272855691611767, + 0.007776183076202869, + 0.003074802691116929, + -0.014089873060584068, + -0.004094981122761965, + 0.00804014503955841, + 0.007198320236057043, + 0.0028482945635914803, + 0.023300012573599815, + 0.004362510051578283, + -0.014589261263608932, + -0.005650217644870281, + 0.018705643713474274, + 0.01610882766544819, + -0.013305121101439, + 0.0014410908333957195, + -0.01998978480696678, + -0.0025861160829663277, + -0.03515690937638283, + 0.02758048102259636, + -0.004986744839698076, + 0.03852421045303345, + 0.01595187745988369, + 0.03838152810931206, + 0.002447000704705715, + -0.019904175773262978, + 0.009937819093465805, + -0.004847629927098751, + -0.0009595382143743336, + 0.008946177549660206, + -0.003313795430585742, + 0.020531976595520973, + -0.024113303050398827, + 0.007711976300925016, + -0.010629828087985516, + 0.005582443438470364, + -0.023599646985530853, + 0.007062771823257208, + 0.0019155093468725681, + -0.016208704560995102, + 0.00204570684581995, + 0.03261716663837433, + 0.0073195998556911945, + -0.019419055432081223, + 0.006199544295668602, + 0.017592722550034523, + 0.003517117816954851, + -0.014867492020130157, + 0.018006501719355583, + -0.011036473326385021, + -0.007961669936776161, + -0.004790557082742453, + -0.019818566739559174, + 0.023028917610645294, + -0.015423952601850033, + 0.012898476794362068, + -0.02686706930398941, + -0.012213601730763912, + -0.009716661646962166, + 0.004690679255872965, + -0.007333868183195591, + -0.004080712795257568, + 0.0003674068138934672, + 0.018562961369752884, + 0.003977268002927303, + 0.0004420920740813017, + 0.002402412472292781, + -0.03418666869401932, + -0.023028917610645294, + -0.008446790277957916, + -0.013961459510028362, + 0.009117396548390388, + -0.009274346753954887, + -0.00681664515286684, + -0.00017545459559187293, + -0.012720123864710331, + 0.0156522449105978, + -0.006392165087163448, + -0.022715015336871147, + -0.01259170938283205, + 0.021602094173431396, + 0.009053189307451248, + 0.02210148237645626, + 0.00952404085546732, + -0.000565824331715703, + -0.005910612642765045, + -4.015725426143035e-5, + 0.0031978662591427565, + -0.005650217644870281, + -0.013276584446430206, + 0.004483790136873722, + -0.012884208001196384, + -0.0038524209521710873, + 0.03327350318431854, + 0.0004420920740813017, + -0.01287707407027483, + 0.007077040150761604, + 0.0010460392804816365, + 0.020917220041155815, + 0.007512221112847328, + 0.0040093716233968735, + -0.008396850898861885, + -0.024541348218917847, + 0.01833466999232769, + 0.011657141149044037, + -0.0004895785241387784, + -0.0065063112415373325, + 0.016879310831427574, + -0.015224196948111057, + 0.008832031860947609, + -0.006442104000598192, + -0.02880754880607128, + 0.017863819375634193, + -0.016750898212194443, + 0.020760269835591316, + 0.006984296720474958, + 0.014881759881973267, + -0.011036473326385021, + 0.002095645759254694, + 0.004309004172682762, + 0.00332092959433794, + 0.007583562284708023, + 0.010915192775428295, + -0.01876271702349186, + -0.023699523881077766, + 0.024655494838953018, + 0.00916020106524229, + -0.017293090000748634, + 0.003347682533785701, + 0.0009104911587201059, + -0.016622483730316162, + -0.007383807096630335, + 0.01622297242283821, + -0.009245810098946095, + 0.006203111261129379, + 0.01230634469538927, + -0.016137363389134407, + 0.00604616105556488, + -0.009195871651172638, + -0.01723601669073105, + 0.012784330174326897, + -0.004087846726179123, + 0.012584575451910496, + 0.010537085123360157, + -0.010686901398003101, + -0.018691375851631165, + -0.004287601914256811, + 0.02379940077662468, + 0.009895014576613903, + -0.027537675574421883, + -0.016608215868473053, + -0.007144814357161522, + -0.0016997024649754167, + 0.025811221450567245, + 0.006595487706363201, + -0.007016400340944529, + 0.004662143066525459, + 0.0044980584643781185, + -0.007141247391700745, + 0.008225632831454277, + 3.9739239582559094e-5, + 0.0064028664492070675, + -0.0004284926690161228, + 0.012962683103978634, + 0.006035459693521261, + -0.000932785274926573, + -0.008432521484792233, + 0.00514726247638464, + -0.004658575635403395, + 0.0023827936965972185, + 0.024541348218917847, + -0.004637173376977444, + 0.004127084277570248, + 0.009688125923275948, + 0.014161214232444763, + -0.012277808971703053, + -0.033644478768110275, + -0.006071130279451609, + -0.007219722494482994, + 0.007562160026282072, + 0.008553802035748959, + 0.0016560059739276767, + 0.0010968699352815747, + 0.015195661224424839, + 0.018577231094241142, + 0.01890539936721325, + -0.012099456042051315, + -0.021188315004110336, + 0.014781882055103779, + -0.018420280888676643, + 0.005043818149715662, + -0.001986850518733263, + -0.0010799263836815953, + 0.0033780024386942387, + 0.005261408165097237, + 0.0014196884585544467, + -0.00741234328597784, + -0.01806357502937317, + -0.0038203175645321608, + 0.02208721451461315, + 0.004045042209327221, + 0.0014312814455479383, + -0.006135337054729462, + 0.016180168837308884, + 0.00327099091373384, + 0.002058191690593958, + 0.026139389723539352, + 0.015281270258128643, + 0.010044830851256847, + 0.011806957423686981, + -0.0018923234893009067, + 0.011457385495305061, + 0.007398075424134731, + 0.002425598446279764, + 0.014589261263608932, + -0.00028424980700947344, + 0.009474102407693863, + 0.0048833005130290985, + 0.011785554699599743, + -0.0002418910153210163, + -0.00973093044012785, + -0.004754886496812105, + -0.0014990555355325341, + 0.004412448965013027, + 0.017464308068156242, + 0.013376462273299694, + -0.00199576816521585, + 0.001936911721713841, + 0.0027127463836222887, + 0.018677107989788055, + -0.0001124737536883913, + 0.0177924782037735, + -0.004433851223438978, + -0.007654903456568718, + 0.04494491219520569, + -0.003028430975973606, + 0.00517936609685421, + -0.0038417198229581118, + 0.014467981643974781, + -0.009188737720251083, + -0.0001961881062015891, + -0.015880536288022995, + -0.011321837082505226, + 0.026096586138010025, + -0.012099456042051315, + 0.015866266563534737, + -0.0002931674534920603, + 0.010287391021847725, + 0.015980413183569908, + -0.0005109808407723904, + 0.003254939103499055, + -0.025925366207957268, + 0.0025040737818926573, + -0.010772510431706905, + -0.014710540883243084, + 0.010044830851256847, + -0.023399891331791878, + -0.013690362684428692, + -0.009638186544179916, + 0.01903381384909153, + 0.006131770089268684, + -0.004269766621291637, + 0.005810735281556845, + 0.015338343568146229, + -0.002232977421954274, + 0.011443117633461952, + -0.009067458100616932, + -0.01328371837735176, + 0.005703723523765802, + 0.000820868881419301, + 0.013968593440949917, + 0.0033904872834682465, + 0.0029874099418520927, + 0.0024398667737841606, + 0.022358309477567673, + 0.00790459755808115, + 0.0025236925575882196, + -0.010130440816283226, + -0.01679370179772377, + -0.008510996587574482, + -0.013383596204221249, + 0.004886867478489876, + -0.003497499041259289, + -0.003684769384562969, + 0.012577441520988941, + -0.022486723959445953, + 0.017392966896295547, + -0.01265591662377119, + -0.01933344639837742, + 0.0019137258641421795, + -0.0039879693649709225, + -0.01762126013636589, + -0.009409895166754723, + 0.00958824809640646, + -0.011542994529008865, + 0.012363418005406857, + 0.002204440999776125, + 0.001305542653426528, + -0.009359956718981266, + 0.00804727990180254, + -0.0041342186741530895, + -0.002928553381934762, + 0.010772510431706905, + 0.003970134072005749, + 0.008518131449818611, + -0.004783422686159611, + -0.03398691490292549, + 0.02181611768901348, + 0.001514215487986803, + 0.007258960045874119, + 0.004647874739021063, + -0.026125121861696243, + 0.012548904865980148, + 0.012356284074485302, + 0.026510363444685936, + -0.009046055376529694, + -0.007626366801559925, + -0.019690152257680893, + -0.01300548855215311, + -0.002555795945227146, + 0.008154291659593582, + -0.015481024980545044, + -0.0013572650495916605, + -0.015067246742546558, + -0.002705612452700734, + -0.0065277134999632835, + 0.0005225737695582211, + -0.0018459517741575837, + -0.0012243922101333737, + -0.018862595781683922, + 0.004291168879717588, + -0.0037632447201758623, + -0.00038903209497220814, + 0.005154396872967482, + 0.00966672319918871, + -0.025012200698256493, + 0.012377685867249966, + -0.016593946143984795, + -0.00838971696794033, + 0.023014647886157036, + 0.01286280620843172, + 0.013390730135142803, + -0.0016319283749908209, + -0.004694246221333742, + -0.00889623910188675, + -0.009766601026058197, + -0.018848326057195663, + -0.015994681045413017, + -0.020617587491869926, + 0.007497952785342932, + 0.0040735783986747265, + -0.009680991061031818, + 0.01610882766544819, + -0.013740302063524723, + 0.0073195998556911945, + 0.0031318755354732275, + -0.01244902703911066, + -0.016436995938420296, + 0.00784039031714201, + 0.0017603423912078142, + 0.01735016331076622, + -0.01188543252646923, + 0.013940056785941124, + 0.015224196948111057, + 0.009388492442667484, + -0.03529959172010422, + 0.0034814472310245037, + 0.02210148237645626, + -0.012320613488554955, + 0.013076829724013805, + -0.013897252269089222, + -0.021602094173431396, + -0.023613914847373962, + -0.027894381433725357, + 0.028450842946767807, + -0.03801055625081062, + 0.0008355830213986337, + -0.0010799263836815953, + 0.001274330890737474, + -0.013982861302793026, + -1.2254789908183739e-5, + -0.0033066614996641874, + 0.0025700642727315426, + -0.03920908644795418, + -0.0015177825698629022, + -0.007997340522706509, + -0.023471232503652573, + -0.007216155529022217, + 0.021045632660388947, + -0.009702393785119057, + 0.03592739254236221, + 0.006902254186570644, + -0.007490818854421377, + -0.013768837787210941, + -0.004180590156465769, + -0.014353835955262184, + -0.02616792730987072, + 0.006492042914032936, + -0.006238781847059727, + -0.010373000055551529, + 0.002614652505144477, + -0.00024055337416939437, + 0.028079869225621223, + -0.00755502562969923, + 0.0032032167073339224, + 0.008489594794809818, + -0.004280467983335257, + 0.007269661407917738, + -0.00950977299362421, + -7.083951641106978e-5, + -0.03989395871758461, + -0.0011735615553334355, + 0.023114526644349098, + -0.005785765592008829, + -0.014981637708842754, + 0.02419891208410263, + -0.02418464422225952, + 0.005874942056834698, + -0.008011609315872192, + 0.003966566640883684, + -0.01356908306479454, + -0.012491831555962563, + -0.009345687925815582, + 0.012342015281319618, + 0.00030520628206431866, + 0.01133610587567091, + 0.021059902384877205, + -0.009438431821763515, + 0.021031364798545837, + 0.002459485549479723, + -0.010187513194978237, + 0.003945164382457733, + -0.006474207621067762, + 0.007776183076202869, + -0.008154291659593582, + 0.0001662025460973382, + -0.0023703090846538544, + -0.023699523881077766, + -0.01847735233604908, + 0.008746422827243805, + 0.019775761291384697, + -0.024255983531475067, + -0.007216155529022217, + 0.016051754355430603, + -0.023984888568520546, + 0.003941597416996956, + -0.022429650649428368, + -0.01834893971681595, + 0.013733168132603168, + -0.005514669232070446, + 0.013469205237925053, + -0.008846300654113293, + 0.022643674165010452, + -0.0009943170007318258, + -0.008603740483522415, + 0.0057572294026613235, + -0.0096524553373456, + 0.014460846781730652, + -0.008268437348306179, + 0.01625151000916958, + 0.006178142037242651, + 0.0058499728329479694, + -0.0024487844202667475, + -0.0007365971687249839, + 0.004223395138978958, + 0.006417134776711464, + 0.012035248801112175, + -0.006513445172458887, + 0.005689455196261406, + -0.013683228753507137, + -0.026239268481731415, + -0.009752332232892513, + -0.009609649889171124, + 0.00412351731210947, + -0.00745514826849103, + 0.0004931455478072166, + 0.0009100452880375087, + -0.006531280465424061, + -0.04451686516404152, + 0.00832550972700119, + -0.023014647886157036, + 0.017421504482626915, + 0.029207058250904083, + 0.0037846469786018133, + 0.006770273204892874, + 0.020046858116984367, + -0.013533412478864193, + 0.003363734344020486, + -0.004419582895934582, + -0.003909493796527386, + 0.030476931482553482, + 0.01579492725431919, + 0.010751108638942242, + 0.010801047086715698, + 0.0038381528574973345, + -0.001010368810966611, + -0.006574084982275963, + 0.005960551556199789, + -0.012192199006676674, + -0.010002026334404945, + -0.0028340264689177275, + 0.0281226746737957, + 0.010480011813342571, + 0.01253463700413704, + 0.003618778893724084, + 0.0037917811423540115, + 0.01933344639837742, + -0.005721558816730976, + -0.009723796509206295, + 0.004205559846013784, + 0.003895225701853633, + -0.004644307773560286, + 0.0072981975972652435, + 0.0009871829533949494, + 0.006534847430884838, + 0.018134916201233864, + 0.007954536005854607, + -0.022144287824630737, + 0.0003083274350501597, + 0.009859343990683556, + -0.018120646476745605, + -0.0029178522527217865, + -0.002166986931115389, + -0.031104732304811478, + 0.00812575500458479, + 0.006681096740067005, + -0.024156106635928154, + 0.012270674109458923, + -0.002129532862454653, + 0.03621275722980499, + -0.010579889640212059, + -0.022172823548316956, + -0.02046063542366028, + -0.011735616251826286, + -0.01196390762925148, + 0.00826130248606205, + 0.00728036230430007, + -0.033787161111831665, + 0.016479801386594772, + 0.02014673501253128, + -0.015509561635553837, + 0.0018245493993163109, + -0.026353413239121437, + -0.0009836158715188503, + 0.004483790136873722, + 0.0059177465736866, + -0.008782093413174152, + 0.012099456042051315, + 0.025554392486810684, + 0.016436995938420296, + -0.018077842891216278, + 0.0006175466696731746, + -0.013833045028150082, + 0.005625247955322266, + 0.00622451351955533, + -0.019761493429541588, + -0.01947612874209881, + 0.007059204857796431, + 0.018092110753059387, + -0.00042291913996450603, + 0.001458034384995699, + -0.007212588097900152, + -0.010872388258576393, + 0.006716767325997353, + -0.01733589544892311, + 0.0011976392706856132, + -0.014467981643974781, + -0.014225421473383904, + -0.02252952940762043, + 0.008018743246793747, + -0.0021687704138457775, + -0.0022704314906150103, + 0.008275571279227734, + -0.00016363871691282839, + 0.009245810098946095, + 0.014739077538251877, + -0.008939043618738651, + 0.015851998701691628, + -0.0006411783979274333, + -0.02365671843290329, + 0.001240443903952837, + -0.015281270258128643, + -0.01092232670634985, + -0.02000405266880989, + 0.024969395250082016, + 0.018006501719355583, + 0.014104141853749752, + -0.021773312240839005, + 0.016051754355430603, + -0.00678454153239727, + 0.006459939293563366, + -0.022472456097602844, + 0.015452489256858826, + -0.004918971098959446, + -0.0048012579791247845, + -0.016137363389134407, + -0.004979610908776522, + -0.0010157193755730987, + -0.0021830385085195303, + 0.0015953660476952791, + -0.00018203134823124856, + 0.013554815202951431, + -0.040236398577690125, + 0.001688109477981925, + -0.009887880645692348, + -0.005118726287037134, + -0.006031892728060484, + -0.010180379264056683, + 0.009452699683606625, + -0.013347925618290901, + 0.004512326326221228, + 0.015438220463693142, + 0.004383912310004234, + -0.016294313594698906, + -0.02070319652557373, + -0.02213001810014248, + -0.00601405743509531, + 0.004744185134768486, + 0.008746422827243805, + -0.004037907812744379, + -0.008939043618738651, + -0.0010861686896532774, + -0.0216877032071352, + -0.008396850898861885, + 0.0005885643186047673, + -0.008282705210149288, + 0.006456372328102589, + -0.010223183780908585, + 8.69470022735186e-6, + 0.005985520780086517, + -0.0025843323674052954, + -0.009046055376529694, + -0.005300646182149649, + -0.0024291654117405415, + 0.0013331873342394829, + -0.012349150143563747, + 0.03835299238562584, + 0.016308583319187164, + 0.014375237748026848, + -0.004098548088222742, + 0.004512326326221228, + 0.0194618608802557, + 0.005639516282826662, + -0.01217079721391201, + -0.0033351979218423367, + 0.02241538278758526, + -0.0068095107562839985, + -0.005664485972374678, + 0.007505087181925774, + 0.01719321310520172, + -0.003167546121403575, + -0.005129427183419466, + -0.005475431680679321, + -0.00824703462421894, + -0.011542994529008865, + -0.007990206591784954, + 0.014539322815835476, + -0.003618778893724084, + 0.013740302063524723, + -0.019832834601402283, + 0.0021848222240805626, + 0.0010576322674751282, + 0.0012172580463811755, + -0.023171599954366684, + -0.004162754863500595, + 0.004647874739021063, + 0.0023917113430798054, + -0.004084279760718346, + -0.01105074118822813, + 0.024883786216378212, + 0.010287391021847725, + 0.005782198626548052, + -0.012927012518048286, + 0.02237257920205593, + -0.0069557600654661655, + 0.01622297242283821, + -0.0049689095467329025, + -0.022187091410160065, + 0.030419858172535896, + 0.0025147749111056328, + 0.0023542572744190693, + 0.019847102463245392, + 0.009680991061031818, + -0.0025664970744401217, + 0.012727257795631886, + 0.01197817549109459, + -0.018106378614902496, + -0.014432311058044434, + 0.0024773208424448967, + 0.010743974708020687, + -0.005568175110965967, + -0.007155515253543854, + 0.01804930530488491, + 0.002316803205758333, + 0.005621680989861488, + 0.01013757474720478, + -0.0010192864574491978, + 0.02770889550447464, + -0.014589261263608932, + 0.0008079382823780179, + -0.001927994075231254, + -0.0005243573104962707, + -0.007301764562726021, + -0.0006166548701003194, + -0.032246191054582596, + 0.04132078215479851, + 0.02044636756181717, + 0.0010326628107577562, + -0.04072151705622673, + 0.0050081475637853146, + -0.015566634945571423, + 0.027223775163292885, + 0.0009122746996581554, + 0.0177924782037735, + 0.006492042914032936, + 0.0251834187656641, + -0.016551142558455467, + -0.006035459693521261, + -0.01356908306479454, + -0.0011084628058597445, + -0.006317256949841976, + 0.010900924913585186, + 0.002366742119193077, + 0.008275571279227734, + 0.0016007166123017669, + -0.029877666383981705, + 0.0014063119888305664, + 0.011785554699599743, + 0.0056751868687570095, + -0.013547680340707302, + -0.007112710736691952, + -0.006388598121702671, + 8.757402611081488e-6, + 0.025982439517974854, + -0.02842230722308159, + 0.0031907320953905582, + 0.0005912396009080112, + -0.017578454688191414, + 0.004951074253767729, + 0.0033994049299508333, + -0.012256406247615814, + -0.00647777458652854, + -0.007783317472785711, + -0.0011173804523423314, + -0.00461933808401227, + -0.0021776880603283644, + -0.03592739254236221, + -0.011357507668435574, + 0.0032317531295120716, + -0.009516906924545765, + -0.004444552585482597, + 0.0032424544915556908, + -0.0033976214472204447, + 0.01695065200328827, + 0.004976043943315744, + 0.022429650649428368, + -0.012370551936328411, + -0.004744185134768486, + -0.00650987820699811, + -0.003021296812221408, + 0.0068915532901883125, + 0.011250495910644531, + -0.014539322815835476, + 0.023999156430363655, + -0.005015281494706869, + -0.0024826712906360626, + 0.0007945618708617985, + 0.025368906557559967, + -0.008461058139801025, + 0.019647346809506416, + 0.005660918541252613, + -0.020089661702513695, + 0.009845076128840446, + 0.014004264026880264, + -0.009752332232892513, + 0.03022010251879692, + 0.0029517393559217453, + -0.022344041615724564, + -0.009709527716040611, + 0.0004057526821270585, + 0.004719215910881758, + -0.008489594794809818, + 0.0010362298926338553, + -0.0025504454970359802, + 0.004137785639613867, + -0.03187521547079086, + -0.006599054671823978, + 0.0031497108284384012, + 0.0019297775579616427, + 0.011214825324714184, + 0.00776191521435976, + -0.008275571279227734, + 0.008803495205938816, + 0.01663675159215927, + 0.02265794388949871, + -0.007590696215629578, + 0.002250812714919448, + 0.022857697680592537, + -0.0055075353011488914, + 0.008132888935506344, + -0.0021812550257891417, + -0.0029588732868433, + 0.0030641015619039536, + 0.023043185472488403, + -0.012277808971703053, + 0.02210148237645626, + -0.008789227344095707, + -0.006006923038512468, + -0.010836717672646046, + 0.012006712146103382, + 0.01919076405465603, + 0.00755502562969923, + 0.011157752946019173, + 0.006456372328102589, + -0.007519355043768883, + 0.0008222065516747534, + -0.04075005277991295, + -0.024099033325910568, + 0.008789227344095707, + 0.012370551936328411, + -0.011564397253096104, + 0.007876060903072357, + -0.005375554319471121, + -0.020103931427001953, + 0.005999789107590914, + -0.006113934796303511, + 0.01553809829056263, + 0.007654903456568718, + -0.003834585892036557, + 0.002828675787895918, + 0.008082950487732887, + -0.01649406924843788, + 0.005015281494706869, + 0.0066632614471018314, + 0.008967580273747444, + 0.015081514604389668, + 0.01505297888070345, + 0.016693824902176857, + 0.0065277134999632835, + 0.005728692747652531, + 0.012135126627981663, + -0.01649406924843788, + 0.007833256386220455, + 0.005543205887079239, + -0.00506878737360239, + 0.004130651243031025, + -0.006763139273971319, + 0.0003963891649618745, + 0.013761703856289387, + 0.0017211047234013677, + -0.008132888935506344, + -0.014097006991505623, + -0.007612098474055529, + -0.0006550007383339107, + -0.03467179089784622, + 0.02953522838652134, + 0.0005141020519658923, + -0.005429060198366642, + 0.003615211695432663, + 0.004109248984605074, + 0.02573988027870655, + 0.015909072011709213, + -0.018677107989788055, + 0.004276901017874479, + 0.014446578919887543, + 0.013454937376081944, + -0.00391306122764945, + -0.013355059549212456, + 0.003069452242925763, + 0.009609649889171124, + 0.01070116925984621, + -0.014938833191990852, + 0.002916068769991398, + 0.00626731850206852, + 0.022600870579481125, + -0.02058904990553856, + -0.009288615547120571, + -0.030448393896222115, + -0.0165226049721241, + -0.011428848840296268, + 0.026938410475850105, + 0.0004079820937477052, + -0.024883786216378212, + -0.0012359850807115436, + -0.005357719026505947, + 0.0012475780677050352, + 0.005043818149715662, + -0.0017121871933341026, + -0.009231542237102985, + 0.0037668116856366396, + -0.014232555404305458, + -0.0036919035483151674, + -0.012705855071544647, + 0.03609861060976982, + 0.0055075353011488914, + -0.024940859526395798, + -0.02870767191052437, + -0.0051222932524979115, + 0.006452805362641811, + -0.018705643713474274, + -0.007490818854421377, + 0.004048609174787998, + 0.012841403484344482, + 0.0008980064885690808, + 0.01055848691612482, + 0.0027644687797874212, + -0.0006197760812938213, + 0.02842230722308159, + 0.012256406247615814, + -0.013026890344917774, + 0.0003277233336120844, + 0.021059902384877205, + -0.006028325762599707, + -0.01832040213048458, + 0.01399713009595871, + 0.007854658178985119, + 0.012605978175997734, + 0.017606990411877632, + 0.009688125923275948, + -0.011371776461601257, + -0.006188842933624983, + 0.015167124569416046, + 0.018363207578659058, + -0.006053294986486435, + -0.006987863685935736, + 0.005618114024400711, + -0.005461163353174925, + 0.010522816330194473, + -0.020888682454824448, + -0.01511005125939846, + -0.004533729050308466, + 0.014425176195800304, + 0.0077048419043421745, + 0.03412959724664688, + 0.008275571279227734, + 0.010751108638942242, + -0.004829794634133577, + 0.009966355748474598, + 0.0037846469786018133, + 0.008254168555140495, + 0.0068915532901883125, + -0.008682215586304665, + -0.0028875323478132486, + 0.001194072188809514, + -0.014953101053833961, + -0.015409683808684349, + 0.011500190012156963, + -0.007854658178985119, + -0.003588458988815546, + 0.014938833191990852, + 0.010330195538699627, + -0.0019226435106247663, + -0.004209126811474562, + -0.0040521761402487755, + 0.013390730135142803, + -0.013825911097228527, + -0.01789235509932041, + 0.012163662351667881, + 0.03221765533089638, + 0.0005421926034614444, + 0.02210148237645626, + 0.01735016331076622, + -0.012277808971703053, + 0.0008609982905909419, + -0.0038631223142147064, + -0.007911731489002705, + -0.01680796965956688, + 0.015366879291832447, + 0.005689455196261406, + -0.0018887564074248075, + -0.003205000190064311, + -0.020917220041155815, + -0.016836507245898247, + 0.021587826311588287, + 0.00370617164298892, + 0.006877284962683916, + 0.008339778520166874, + 0.007961669936776161, + -0.02167343534529209, + -0.009738064371049404, + 0.018092110753059387, + -0.013661826960742474, + 0.039551522582769394, + -0.0011949639301747084, + 0.046542953699827194, + -0.009352821856737137, + 0.01133610587567091, + -0.025012200698256493, + -0.005721558816730976, + -0.013576216995716095, + 0.0032424544915556908, + -0.01253463700413704, + -0.002158069284632802, + -0.0037846469786018133, + 0.010251720435917377, + 0.019847102463245392, + 0.0036045105662196875, + 0.006838047411292791, + -0.0022846998181194067, + -0.0009073700057342649, + 0.024284521117806435, + 0.0030302144587039948, + -0.015438220463693142, + 0.004790557082742453, + -0.015438220463693142, + -0.016337119042873383, + -0.004976043943315744, + 0.002166986931115389, + 0.019561737775802612, + -0.011664275079965591, + -0.010722571983933449, + -0.001623010728508234, + -0.0018147400114685297, + -0.003379786154255271, + -0.02044636756181717, + 0.01448224950581789, + 0.004886867478489876, + -0.016194436699151993, + 0.006203111261129379, + 0.01294128131121397, + 0.019704420119524002, + -0.011771286837756634, + -0.018234793096780777, + 0.00580716785043478, + 0.01029452495276928, + 0.017392966896295547, + -0.01111494842916727, + 0.012070919387042522, + 0.0008538641850464046, + 0.014146946370601654, + -0.0027805205900222063, + 0.008147156797349453, + -0.004858330823481083, + 0.0021152645349502563, + -0.011421714909374714, + -0.000295396865112707, + 0.010993667878210545, + 0.001979716354981065, + 0.014532187953591347, + -0.01300548855215311, + -0.024712568148970604, + 0.010030562989413738, + -0.010287391021847725, + 0.0015677213668823242, + 0.0027091794181615114, + 0.00745514826849103, + -0.002347123110666871, + 0.021801849827170372, + -0.01076537650078535, + 0.027066824957728386, + 0.0051436955109238625, + -0.006320824380964041, + -0.003370868507772684, + -0.009409895166754723, + -0.018648572266101837, + -0.02362818270921707, + -0.010180379264056683, + -0.008860568515956402, + 0.0011664275079965591, + -0.002557579427957535, + 0.0012823567958548665, + -0.0028268923051655293, + -0.004815526306629181, + -0.01202811487019062, + -0.0031443603802472353, + -0.0035510046873241663, + 0.003370868507772684, + 0.002828675787895918, + 0.012327747419476509, + -0.0035117671359330416, + -0.003770378651097417, + 0.003724006935954094, + -0.008011609315872192, + -0.016993457451462746, + 0.004512326326221228, + 0.01125763077288866, + 0.017749672755599022, + -0.02825108729302883, + -0.011015070602297783, + -0.0036669340915977955, + 0.007654903456568718, + 0.0032103508710861206, + 0.015095783397555351, + -0.012627379968762398, + -0.013490607962012291, + 0.0041556209325790405, + -0.004701380617916584, + -0.018677107989788055, + 0.00594985019415617, + -0.017450040206313133, + -0.009338553994894028, + 0.012192199006676674, + -0.007690574042499065, + 0.010330195538699627, + -0.012456160970032215, + 0.012827135622501373, + 0.013704631477594376, + 0.010622694157063961, + 0.009345687925815582, + 0.01860576681792736, + 0.017021993175148964, + 0.024327324703335762, + -0.009581114165484905, + 0.020631855353713036, + 0.02492659166455269, + -0.0008926559239625931, + 0.0032192685175687075, + 0.013376462273299694, + -0.009295749478042126, + 0.008717886172235012, + -0.012805732898414135, + -0.01862003467977047, + 0.009274346753954887, + -0.02297184430062771, + -0.01105074118822813, + 0.012070919387042522, + 0.008974714204668999, + 0.004116383381187916, + 0.008132888935506344, + -0.009502639062702656, + 0.02046063542366028, + 0.011243361979722977, + 0.009773734956979752, + 0.01680796965956688, + 0.005193634424358606, + 0.006645426154136658, + 0.00021580692555289716, + 0.0017148624174296856, + -0.023000380024313927, + -0.0015748554142192006, + 0.007348136510699987, + 0.01244902703911066, + -0.01637992449104786, + -0.014097006991505623, + -0.017835281789302826, + 0.005832137539982796, + -0.012506100349128246, + 0.02057478204369545, + 0.008625142276287079, + -0.0005172232049517334, + -0.010330195538699627, + 0.010672633536159992, + 0.019961249083280563, + -0.0037418422289192677, + -0.001110246405005455, + 0.01595187745988369, + -0.0010406887158751488, + -0.005129427183419466, + -0.004997446201741695, + 0.014489383436739445, + 0.02658170461654663, + -0.04152053967118263, + 0.005386255215853453, + 0.0062780193984508514, + 0.009488370269536972, + -0.00755502562969923, + 0.008004474453628063, + 0.017635527998209, + -0.004448119550943375, + -0.0029107180889695883, + -0.004958208650350571, + -0.01007336750626564, + 0.017564186826348305, + 0.0024630525149405003, + 0.018420280888676643, + 0.0009969923412427306, + -0.006763139273971319, + 0.027209507301449776, + -0.005104457959532738, + 0.022729285061359406, + 0.014318165369331837, + 0.005589577369391918, + 0.00973093044012785, + 0.025982439517974854, + -0.001514215487986803, + -0.010030562989413738, + -0.025368906557559967, + 0.017521381378173828, + -0.007547891698777676, + 0.0065705180168151855, + -0.030334249138832092, + -0.010836717672646046, + 0.004462387878447771, + 0.016822239384055138, + -0.01568078063428402, + 0.01405420247465372 + ], + "f62a56d7-421c-448d-8040-45eec0049950": [ + -0.0035106921568512917, + -0.01070435717701912, + -0.015367413870990276, + 0.05610981956124306, + -0.02280227094888687, + 0.01498456858098507, + 0.008882013149559498, + 0.016707373782992363, + -0.014571095816791058, + 0.03666127473115921, + 0.019800763577222824, + 0.019739508628845215, + 0.007978498004376888, + 0.00750376982614398, + -0.01773339882493019, + 0.02241942659020424, + 0.0002273144491482526, + 0.023797670379281044, + -0.011753353290259838, + -0.022771643474698067, + 0.05182195082306862, + -0.020826788619160652, + -0.03479298949241638, + -0.015528209507465363, + -0.0088131008669734, + 0.004134730435907841, + -0.009938666597008705, + 0.006370547227561474, + -0.03411918133497238, + 0.004762596450746059, + 0.01070435717701912, + 0.00833071582019329, + -0.009601762518286705, + 0.026002859696745872, + 0.021209634840488434, + -0.04453257471323013, + 0.013889631256461143, + 0.021653736010193825, + -0.016860511153936386, + -0.0033843533601611853, + -0.05494597181677818, + 0.007833017036318779, + -0.0014203564496710896, + 0.011202055960893631, + -0.019172897562384605, + -0.0013504871167242527, + -0.01261092722415924, + 0.007450171280652285, + -0.02382829785346985, + -0.04315433278679848, + -0.008177577517926693, + 0.0027411729097366333, + -0.030106961727142334, + 0.021546538919210434, + 0.04820789024233818, + -0.05350647121667862, + 0.028744032606482506, + 0.06762581318616867, + 0.016875823959708214, + -0.040857259184122086, + 0.0009408425539731979, + -0.035221777856349945, + 0.004081131890416145, + -0.013422559015452862, + 0.006401175167411566, + 0.010597160086035728, + -0.02021423727273941, + 0.015803858637809753, + -0.0037136003375053406, + -0.002796685555949807, + -0.03329223394393921, + 0.03705943375825882, + -0.04836102947592735, + 0.01842251978814602, + -0.015581807121634483, + -0.022036580368876457, + 0.05975450947880745, + -0.01086515188217163, + 0.005271781235933304, + -0.0037346568424254656, + 0.008836071938276291, + 0.007752619218081236, + 0.012059629894793034, + 0.022404111921787262, + 0.012733438052237034, + 0.02303197793662548, + -0.023185117170214653, + -0.0250074602663517, + -0.006079584825783968, + -0.030719514936208725, + -0.022113149985671043, + 0.006018329411745071, + -0.0022702731657773256, + -0.02555875852704048, + -0.018330637365579605, + 0.038835834711790085, + 0.02364453114569187, + -0.0008939440012909472, + -0.01924946717917919, + -0.012120884843170643, + 0.0006039385916665196, + 0.004655399825423956, + 0.007304689846932888, + -0.011240340769290924, + 0.03163834288716316, + -0.01452515460550785, + -0.03537491336464882, + 0.016293900087475777, + -0.019678253680467606, + 0.032342780381441116, + 0.01924946717917919, + -0.03892771899700165, + 0.005409605335444212, + -0.017932478338479996, + -0.031730227172374725, + -0.0325571708381176, + -0.04594144597649574, + -0.043797511607408524, + 0.010635444894433022, + -0.004341466818004847, + 0.030229471623897552, + 0.011347537860274315, + 0.024027377367019653, + 0.0006747649749740958, + -0.027672065421938896, + -0.01475486159324646, + 0.0018912561936303973, + 0.013552727177739143, + 0.03947901725769043, + 0.04787098616361618, + -0.01061247382313013, + -0.022848213091492653, + 0.03834579512476921, + -0.02776394784450531, + 0.009777870960533619, + 0.032342780381441116, + 0.006290149874985218, + 0.03191399201750755, + -0.019463859498500824, + 0.04183734580874443, + -0.03215901181101799, + -0.0040696463547647, + 0.0027832859195768833, + 0.03157708793878555, + 0.0251759123057127, + 0.0191422700881958, + -0.027120767161250114, + 0.07013727724552155, + -0.02010704018175602, + 0.022710388526320457, + -0.06480807065963745, + -0.011661470867693424, + -0.0013926001265645027, + -0.02179156057536602, + 0.03035198338329792, + -0.022281602025032043, + -0.028958424925804138, + 0.015512894839048386, + 0.015252560377120972, + 0.07503769546747208, + 0.025022774934768677, + -0.04431818425655365, + -0.016937080770730972, + -0.006918016355484724, + 0.020643023774027824, + 0.030612317845225334, + 0.0792030543088913, + 0.024517418816685677, + -0.009456281550228596, + 0.014724234119057655, + 0.009326113387942314, + -0.01970888115465641, + 0.027350474148988724, + 0.02917281910777092, + -0.003560462035238743, + -0.016232645139098167, + 0.04376688599586487, + -0.0002818699285853654, + 0.03335348889231682, + -0.03516051918268204, + -0.025650640949606895, + -0.019509801641106606, + 0.014701263047754765, + 0.007787075359374285, + 0.022741016000509262, + 0.020306119695305824, + 0.008208204992115498, + 0.03430294618010521, + -0.011738039553165436, + -0.0018998702289536595, + 0.00720897875726223, + 0.017825281247496605, + -0.0005431618774309754, + 0.011829922907054424, + -0.029080936685204506, + -0.030275413766503334, + -0.003480064682662487, + 0.017809968441724777, + -0.00552063062787056, + 0.06251099705696106, + -0.00345709384419024, + -0.03271031007170677, + -0.03705943375825882, + 0.028958424925804138, + -0.017258670181035995, + 0.030397923663258553, + -0.029984451830387115, + 0.004705169703811407, + 0.05601793900132179, + -0.02709013968706131, + 0.026829805225133896, + -0.045145127922296524, + 0.0011380079668015242, + -0.008468540385365486, + -0.011623186059296131, + 0.011202055960893631, + 0.004226613324135542, + 0.03941776230931282, + -0.027013570070266724, + -0.03258780017495155, + 0.0270288847386837, + 0.015558836981654167, + -0.0031469890382140875, + -0.01418825052678585, + -0.06251099705696106, + 0.01340724527835846, + -0.03583432734012604, + 0.04490010812878609, + -0.044961363077163696, + 0.002873254707083106, + 0.034609224647283554, + -0.026998257264494896, + 0.01062013115733862, + -0.02151591144502163, + -0.0020750220865011215, + 0.009525192901492119, + 0.03237340599298477, + -0.024303024634718895, + -0.0035355770960450172, + -0.011010633781552315, + -0.00971661601215601, + 0.006665338296443224, + 0.010949377901852131, + -0.0010135831544175744, + 0.0012327621225267649, + 0.023001350462436676, + -0.0088973268866539, + 0.06609442830085754, + 0.001143750618211925, + 0.009946322999894619, + 0.007924899458885193, + 0.004900421015918255, + 0.002566978335380554, + 0.008736532181501389, + -0.025099344551563263, + 0.008882013149559498, + 0.03748822212219238, + -0.013108626008033752, + -0.013100969605147839, + -0.006887388415634632, + 0.03549742326140404, + 0.010321511887013912, + 0.009310799650847912, + 0.0038399393670260906, + 0.009701302275061607, + -0.0031910163816064596, + 0.04431818425655365, + -0.0024214971344918013, + 0.017074905335903168, + 0.010773269459605217, + 0.0256812684237957, + 0.015336786396801472, + -0.016584862023591995, + 0.041316673159599304, + 0.014012141153216362, + -0.007109439000487328, + -0.015681346878409386, + 0.010826868005096912, + 0.027794575318694115, + -0.0016931337304413319, + -0.0029708801303058863, + 0.044471319764852524, + 0.010168373584747314, + -0.0024425536394119263, + 0.01716678775846958, + 0.014134651981294155, + -0.039448387920856476, + 0.007924899458885193, + -0.03418043628334999, + -0.010107118636369705, + 0.016967708244919777, + -0.004329981282353401, + 0.022618506103754044, + -0.0014059996465221047, + -0.002509551588445902, + -0.01171506941318512, + -0.005976216401904821, + 0.0040007345378398895, + 0.01892787590622902, + 0.02471649833023548, + -0.003424552036449313, + -0.01540569867938757, + -0.00691418768838048, + -0.037763871252536774, + 0.03678378462791443, + -0.0201529823243618, + 0.02866746298968792, + 0.011538960039615631, + -0.048575423657894135, + 0.017809968441724777, + 0.006868246477097273, + 0.0021075638942420483, + -0.018284695222973824, + -0.022618506103754044, + -0.00996929407119751, + -0.009862096980214119, + -0.04174546152353287, + -0.015298501588404179, + -0.020398002117872238, + -0.03638562560081482, + -0.017151473090052605, + -0.02157716639339924, + -0.07663033157587051, + 0.0023468423169106245, + 0.05987701937556267, + -0.04805475473403931, + 0.04989241063594818, + 0.00980084203183651, + -0.02771800570189953, + -0.002285586902871728, + -0.0399690605700016, + 0.009808499366044998, + -0.0085604228079319, + -0.017718084156513214, + -0.040520355105400085, + 0.00018161228217650205, + -0.03647750988602638, + -0.03705943375825882, + -0.007641593925654888, + -0.04244989529252052, + 0.0024655242450535297, + 0.027289219200611115, + -0.005279438104480505, + -0.020964613184332848, + -0.023690473288297653, + -0.024241769686341286, + -0.004678370896726847, + 0.011056574992835522, + -0.01078858319669962, + -0.008177577517926693, + 0.0011035518255084753, + -0.016018250957131386, + 0.045696426182985306, + -0.015443983487784863, + 0.050933752208948135, + -0.0051416135393083096, + -0.028789972886443138, + -0.013973856344819069, + 0.015696661546826363, + -0.012342935428023338, + -0.005918789654970169, + -0.0466458834707737, + -0.0001458401675336063, + -0.011255654506385326, + 0.0014758689794689417, + 0.013774776831269264, + -0.02793239988386631, + -0.0196476262062788, + -0.02185281552374363, + 0.007465485017746687, + -0.033598512411117554, + 0.013231136836111546, + -0.00302639277651906, + -0.029034994542598724, + -0.024563360959291458, + -0.03439483046531677, + 0.04909609258174896, + -0.017672143876552582, + -0.007947870530188084, + 0.041255418211221695, + -0.019586369395256042, + -0.016355155035853386, + 0.03709006309509277, + 0.035681191831827164, + 0.03169959783554077, + 0.015390384942293167, + -0.031393323093652725, + -0.0389583483338356, + -0.021041182801127434, + 0.0048851072788238525, + -0.023751728236675262, + -0.01588042639195919, + -0.03540554270148277, + 0.019218837842345238, + -0.03947901725769043, + 0.005110986065119505, + 0.0012298908550292253, + -0.02540561929345131, + 0.015681346878409386, + -0.019846705719828606, + 0.0048276805318892, + -0.035681191831827164, + -0.034486714750528336, + 0.003876309609040618, + 0.0166154894977808, + -0.005378977861255407, + -0.019356662407517433, + -0.015482267364859581, + 0.03859081491827965, + -0.003855253104120493, + -0.010122432373464108, + 0.00799381174147129, + 0.0028675119392573833, + 0.0246705561876297, + 0.04584956541657448, + 0.011332223191857338, + -0.014877371490001678, + 0.04780973121523857, + -0.01615607552230358, + -0.02444084919989109, + 0.04404253512620926, + 0.05356772616505623, + 0.0011906491126865149, + 0.02889716997742653, + 0.03632437065243721, + 0.020290805026888847, + -0.022205032408237457, + 0.03638562560081482, + 0.0034704934805631638, + -0.0028675119392573833, + -0.004873621743172407, + 0.04906546697020531, + 0.01790185086429119, + -0.03764135763049126, + -0.008927954360842705, + 0.0006546656368300319, + 0.009724273346364498, + -0.021714990958571434, + -0.006427973974496126, + 0.008774816058576107, + -0.02477775327861309, + 0.0179631058126688, + -0.013361304067075253, + -0.009509879164397717, + -0.017074905335903168, + -0.010880465619266033, + -0.029647547751665115, + 0.013338332995772362, + 0.007794732227921486, + -0.03822328522801399, + -0.0030091647058725357, + 0.022848213091492653, + -0.07056606560945511, + 0.019188210368156433, + 0.010413394309580326, + -0.021041182801127434, + 0.01078092586249113, + -0.02275633066892624, + 0.06676823645830154, + -0.0637667253613472, + -0.027580181136727333, + 0.005172241013497114, + 0.036354999989271164, + -0.005807764362543821, + 0.035344287753105164, + -0.03160771727561951, + 0.008989210240542889, + 0.0038054832257330418, + -0.015114735811948776, + 0.03957090154290199, + -0.027672065421938896, + -0.021837500855326653, + 0.0024789238814264536, + 0.03800889104604721, + -0.000582403561566025, + 0.010421051643788815, + -0.00020111346384510398, + -0.03846830502152443, + 0.012955487705767155, + -0.02629382163286209, + -0.017947791144251823, + 0.01943323202431202, + 0.03709006309509277, + -0.032863449305295944, + 0.01284063421189785, + -0.00333075481466949, + -0.021975325420498848, + -0.01750369183719158, + 0.039050228893756866, + -0.039785291999578476, + 0.04217424988746643, + 0.025160599499940872, + -0.0027737149503082037, + 0.03418043628334999, + 0.0022683588322252035, + -0.05225073918700218, + 0.0005536901298910379, + -0.0463089793920517, + -0.010160716250538826, + -0.04082663357257843, + 0.023736413568258286, + -0.0007417629240080714, + 0.0011695927241817117, + -0.0033479828853160143, + -0.004655399825423956, + 0.01095703523606062, + -0.028989052399992943, + 0.05917258560657501, + 0.017702771350741386, + -0.03638562560081482, + -0.052066974341869354, + 0.018330637365579605, + -0.02715139463543892, + 0.008843728341162205, + -0.004065818153321743, + 0.01615607552230358, + -0.004494605120271444, + -0.014394986443221569, + 0.020061098039150238, + -0.005440232809633017, + -0.01095703523606062, + -0.018514404073357582, + 0.014578752219676971, + -0.006382032763212919, + -0.015612435527145863, + 0.002612919779494405, + -0.013813061639666557, + -0.02562001347541809, + 0.049923039972782135, + -0.00879012979567051, + -0.021148379892110825, + 0.011761010624468327, + -0.03215901181101799, + 0.0315464586019516, + 0.0199845302850008, + 0.017702771350741386, + -0.0018070302903652191, + 0.016462352126836777, + 0.0037002007011324167, + 0.012488416396081448, + -0.030045706778764725, + 0.012243395671248436, + -0.024532733485102654, + 0.001073881285265088, + -0.009555821307003498, + 0.033261608332395554, + -0.004548203200101852, + 0.0033058698754757643, + -0.0033230979461222887, + 0.050658103078603745, + -0.025038087740540504, + 0.012894232757389545, + -0.006688308902084827, + -0.003585347207263112, + -0.013414902612566948, + -0.023399509489536285, + 0.0010269827907904983, + -0.007189836353063583, + -0.006672995164990425, + -0.02191407047212124, + -0.011898835189640522, + 0.0263550765812397, + 0.011906491592526436, + 0.01435670256614685, + -0.012886576354503632, + 0.010030549019575119, + 0.017365867272019386, + 0.006435630843043327, + -0.011500675231218338, + 0.030903279781341553, + 0.031730227172374725, + -0.011447077617049217, + 0.014134651981294155, + -0.002247302560135722, + -0.008943268097937107, + 0.03125549852848053, + 0.00708263972774148, + 0.020811475813388824, + -0.009923352859914303, + -0.035221777856349945, + 0.01741180755198002, + -0.0161101333796978, + -0.0157732293009758, + -0.009395025670528412, + -0.010512934066355228, + 0.03283281996846199, + -0.029126876965165138, + -0.01475486159324646, + 0.0037844267208129168, + 0.009081092663109303, + 0.03467047959566116, + 0.035344287753105164, + -0.019862018525600433, + 0.018499089404940605, + 0.005566571839153767, + 0.03396604210138321, + 0.002609091345220804, + 0.03969341143965721, + 0.022664446383714676, + -0.01416527945548296, + 0.02349139377474785, + 0.03344537317752838, + 0.0002701452758628875, + 0.00486979354172945, + -0.020260177552700043, + 0.008935611695051193, + -0.0012136198347434402, + 0.01294783130288124, + -0.0020118525717407465, + 0.027794575318694115, + 0.006443288177251816, + -0.022051895037293434, + 0.0379476360976696, + -0.0035566336009651423, + 0.029693488031625748, + -0.007151552010327578, + 0.002873254707083106, + 0.02523716911673546, + 0.007679878734052181, + 0.013437873683869839, + 0.032802194356918335, + -0.0463089793920517, + 0.05007617548108101, + -0.006209752056747675, + 0.002398526296019554, + 0.028789972886443138, + -0.015084108337759972, + -0.0025976060424000025, + -0.01450218353420496, + -0.021546538919210434, + -0.0020003672689199448, + -0.017381180077791214, + 0.00929548591375351, + -0.02084210328757763, + 0.005390462931245565, + -0.005754166282713413, + -0.006542827934026718, + -0.007963184267282486, + -0.010842181742191315, + -0.013751806691288948, + 0.0013696294045075774, + -0.006087241694331169, + 0.022649133577942848, + 0.09078030288219452, + -0.008912640623748302, + 0.0290503092110157, + -0.0024176687002182007, + 0.02252662368118763, + 0.043797511607408524, + 0.02805490978062153, + 0.0024636101443320513, + 0.0031910163816064596, + 0.02105649746954441, + 0.034486714750528336, + 0.0002926374436356127, + -0.006286321207880974, + -0.00032422220101580024, + 0.01523724664002657, + 0.009938666597008705, + -0.0025401790626347065, + 0.012848291546106339, + -0.015283187851309776, + 0.03142394870519638, + -0.007963184267282486, + 0.03142394870519638, + -0.011776324361562729, + 0.009892725385725498, + 0.005336864851415157, + 0.02084210328757763, + 0.019969215616583824, + 0.016186702996492386, + -0.0181315578520298, + 0.0012595613952726126, + -0.008606364019215107, + 0.0046592284925282, + -0.006596426013857126, + 0.022955410182476044, + 0.02646227367222309, + 0.016538921743631363, + -0.038437675684690475, + -0.02471649833023548, + -0.03987717628479004, + -0.0157732293009758, + 0.011439420282840729, + -0.014517497271299362, + 0.010712014511227608, + -0.016983021050691605, + 0.013728835619986057, + -0.02944846823811531, + 0.032863449305295944, + -0.0008623592439107597, + 0.018330637365579605, + -0.021025868132710457, + 0.03130143880844116, + -0.0035891756415367126, + -0.0277026928961277, + 0.010459336452186108, + -0.02162310853600502, + 0.013644609600305557, + -0.0042380983941257, + -0.0008824586402624846, + -0.02084210328757763, + 0.014203564263880253, + -0.005692910868674517, + 0.009440967813134193, + -0.011508332565426826, + -0.01701364852488041, + -0.007702849339693785, + 0.0007766975904814899, + 0.002027166308835149, + -0.005279438104480505, + 0.002593777608126402, + 0.011056574992835522, + 0.036630645394325256, + 0.016202017664909363, + 0.015298501588404179, + -0.004999960772693157, + 0.02151591144502163, + -0.0164470374584198, + 0.03228152170777321, + -0.024593988433480263, + 0.020398002117872238, + 0.011944776400923729, + -0.018835993483662605, + -0.033812906593084335, + 0.017442436888813972, + 0.004823851864784956, + 0.009058121591806412, + 0.008016782812774181, + -0.0004563038528431207, + 0.04937174171209335, + -0.007806217763572931, + -0.00833071582019329, + 0.007978498004376888, + -0.016033565625548363, + -0.010826868005096912, + -0.028851227834820747, + 0.030734827741980553, + 0.03718194365501404, + -0.01977013610303402, + 0.010022892616689205, + -0.006757221184670925, + 0.011056574992835522, + -0.003436037339270115, + 0.02381298318505287, + -0.02866746298968792, + 0.024532733485102654, + 0.012289336882531643, + -0.025665955618023872, + 0.004640086088329554, + 0.02140871435403824, + -0.023981435224413872, + 0.022771643474698067, + 0.020290805026888847, + -0.01343021634966135, + 0.012411847710609436, + 0.006906530819833279, + -0.007806217763572931, + -0.02162310853600502, + 0.02738110162317753, + -0.03243466094136238, + -0.006707451306283474, + -0.0011112086940556765, + -0.03555867820978165, + -0.006596426013857126, + 0.022618506103754044, + 0.007496112957596779, + 0.007764104753732681, + 0.025665955618023872, + -0.00609489856287837, + 0.03329223394393921, + 0.023567961528897285, + 0.026217252016067505, + 0.026891060173511505, + -0.011163772083818913, + -0.03249591588973999, + 0.022618506103754044, + 0.0002699060132727027, + -0.024257084354758263, + -0.0017036619829013944, + -0.04315433278679848, + -0.04658462852239609, + 0.011408792808651924, + -0.008146950043737888, + 0.027396416291594505, + -0.027120767161250114, + 0.04382814094424248, + -0.002168819075450301, + -0.00575799448415637, + 0.01235824916511774, + 0.01104126125574112, + -0.001025068573653698, + 0.01112548727542162, + 0.023231057450175285, + 0.007189836353063583, + -0.04370563104748726, + -0.006458601914346218, + -0.004115588031709194, + -0.01954042911529541, + 0.002182218711823225, + -0.004731968976557255, + -0.020398002117872238, + 0.022327544167637825, + 0.033874161541461945, + -0.001450984040275216, + -0.02033674716949463, + 0.0036427739541977644, + -0.0007207064772956073, + -0.021592479199171066, + 0.006087241694331169, + -0.009356741793453693, + -0.014762517996132374, + 0.013920258730649948, + 0.015015196055173874, + -0.02957097813487053, + -0.018943190574645996, + 0.010581846348941326, + -0.011278625577688217, + 0.0463089793920517, + 0.04759534075856209, + -0.016064193099737167, + 0.017105532810091972, + 0.008843728341162205, + 0.023751728236675262, + 0.015076451934874058, + -0.045818936079740524, + 0.004368266090750694, + -0.0012882747687399387, + 0.0007053926237858832, + -0.019846705719828606, + -0.034946128726005554, + -0.005137785337865353, + 0.002013766672462225, + 0.005122471135109663, + -0.003430294804275036, + 0.03160771727561951, + -0.011975403875112534, + -0.0042993538081645966, + -0.011194399558007717, + 0.04456320405006409, + -0.007450171280652285, + -0.036354999989271164, + -0.016600176692008972, + -0.010765612125396729, + -0.01081155426800251, + -0.004904249683022499, + 0.012664525769650936, + 0.01053590513765812, + 0.01241950411349535, + 0.032005876302719116, + 0.04410379007458687, + -0.018621599301695824, + 0.01774871163070202, + 0.016584862023591995, + -0.007821531035006046, + 0.002226246055215597, + 0.0005900604883208871, + 0.021975325420498848, + -0.01672268658876419, + -0.002279844367876649, + 0.007810045965015888, + 0.03163834288716316, + -0.03277156502008438, + 0.0005527330213226378, + -0.0049961325712502, + -0.029525035992264748, + -0.0099922651425004, + 0.013330676592886448, + 0.015643062070012093, + 0.017212728038430214, + -0.0090657789260149, + -0.01852971687912941, + 0.002572721103206277, + -3.22726700687781e-5, + -0.002697145799174905, + 0.0045137470588088036, + -0.0015533951809629798, + -0.004096445627510548, + -0.016875823959708214, + 0.005922618322074413, + -0.02071959339082241, + 0.015803858637809753, + 0.0017543890280649066, + 0.004077303223311901, + -0.013560383580625057, + -0.0005627827486023307, + -0.004934877157211304, + -0.006466258782893419, + -0.004816194996237755, + -0.0189738180488348, + 0.017825281247496605, + 0.02709013968706131, + -0.010122432373464108, + -0.02235817164182663, + -0.0024731813464313745, + -0.004483119584619999, + 0.00011688748054439202, + -0.012036658823490143, + 4.374307536636479e-6, + 0.03264905512332916, + -0.004892764147371054, + -0.03718194365501404, + -0.02353733405470848, + 0.016064193099737167, + 0.03607935085892677, + -0.03295532986521721, + 0.018545031547546387, + 0.014126994647085667, + 0.05935635045170784, + -0.003889709245413542, + 0.02771800570189953, + 0.018376579508185387, + -0.002184133045375347, + -0.027059512212872505, + 0.045482032001018524, + 0.03445608541369438, + 0.002838798565790057, + -0.02906562201678753, + -0.009693644940853119, + 0.01391260139644146, + 0.007415715139359236, + 0.022327544167637825, + 0.04036721959710121, + 0.024624615907669067, + -0.005237325094640255, + 0.019234152510762215, + -0.013889631256461143, + -0.020321432501077652, + -0.0005766608519479632, + -0.0008872441831044853, + 0.015436326153576374, + -0.011324566788971424, + 0.010413394309580326, + -0.01233527809381485, + -0.01089578028768301, + 0.01751900464296341, + -0.030903279781341553, + 0.0013973857276141644, + 0.01202134508639574, + -0.004127073101699352, + -0.02664603851735592, + 0.0021094779949635267, + 0.014716576784849167, + -0.004150044173002243, + -0.0083077447488904, + -0.012955487705767155, + 0.014410300180315971, + 0.0007120924419723451, + 0.017871223390102386, + 0.009900381788611412, + -0.025084029883146286, + 0.004081131890416145, + -0.012480759993195534, + -0.0171208456158638, + 0.03754947707056999, + 0.014180593192577362, + -0.01682988367974758, + -0.007438685745000839, + 0.004601801745593548, + 0.012350592762231827, + -0.0022396454587578773, + 0.01768745668232441, + -0.005091843660920858, + 0.013950886204838753, + -0.02839181385934353, + 0.0007015641895122826, + 0.0020022813696414232, + 0.01250373013317585, + -0.028912484645843506, + -0.0009709916193969548, + -0.006064271088689566, + 0.01791716367006302, + -0.007511426694691181, + 0.011010633781552315, + -0.04039784520864487, + -0.016860511153936386, + -0.0012385048903524876, + -0.013476157560944557, + -0.02370578609406948, + 0.0020539655815809965, + 0.021041182801127434, + -0.0014892686158418655, + -0.029218759387731552, + -0.017702771350741386, + -0.018177499994635582, + -0.009333770722150803, + -0.009494565427303314, + 0.01359866838902235, + -0.018345952033996582, + 0.004314667545258999, + 0.013330676592886448, + -0.02889716997742653, + -0.002894311212003231, + 0.017809968441724777, + 0.01492331363260746, + 0.007450171280652285, + -0.040796004235744476, + -0.024195829406380653, + 0.004594144877046347, + -0.011362851597368717, + -0.03485424444079399, + 0.024134572595357895, + -0.03271031007170677, + 0.04725843667984009, + 0.007044355385005474, + 0.011653813533484936, + 0.0020597081165760756, + -0.03687566891312599, + -0.04539015144109726, + 0.018100930377840996, + -0.014218878000974655, + -0.03632437065243721, + -0.004395064897835255, + -0.008131636306643486, + 0.0027028885670006275, + 0.022940095514059067, + 0.04539015144109726, + -0.028682777658104897, + -0.01909632794559002, + 0.017304612323641777, + -0.013560383580625057, + -0.023047292605042458, + 0.01045167911797762, + -0.01672268658876419, + -0.015926368534564972, + 0.00754588283598423, + -0.0038456819020211697, + 0.0034762362483888865, + 0.022741016000509262, + -0.009387369267642498, + -0.003459008177742362, + -0.017243357375264168, + -0.0012796607334166765, + 0.004333809949457645, + 0.01892787590622902, + -0.003213986987248063, + 0.01233527809381485, + -0.09696707874536514, + -0.029984451830387115, + -0.00879012979567051, + -0.003989249002188444, + 0.014823773875832558, + 0.013728835619986057, + 0.008269460871815681, + 0.022388799116015434, + -0.009640047326683998, + 0.01089578028768301, + 0.028468383476138115, + -0.01865222677588463, + 0.004107931163161993, + 0.023215744644403458, + 0.009134691208600998, + -0.009372055530548096, + -0.01433373149484396, + -0.009440967813134193, + 0.013966199941933155, + -0.029754742980003357, + -0.01120971329510212, + 0.0049961325712502, + 0.0322202667593956, + -0.01464766450226307, + 0.0013658009702339768, + 0.012136198580265045, + -0.012450132519006729, + 0.010321511887013912, + 0.005953245796263218, + -0.041867971420288086, + 0.011837579309940338, + 0.020581768825650215, + -0.005440232809633017, + -0.02038268931210041, + -0.015160677954554558, + 0.012557328678667545, + 0.013713521882891655, + -0.0028885684441775084, + 0.02410394512116909, + 0.0179631058126688, + 0.0005264123901724815, + -0.008361343294382095, + 0.008001469075679779, + -0.0091500049456954, + 0.020474571734666824, + -0.0038514246698468924, + 0.01382837537676096, + -0.016171390190720558, + 0.009586448781192303, + -0.0003053192049264908, + -0.00042519764974713326, + 0.008353686891496181, + 0.0009614204755052924, + -0.009762557223439217, + 0.0019812248647212982, + -0.02973943017423153, + 0.007863644510507584, + -0.012564986012876034, + 0.026385704055428505, + 0.019862018525600433, + 0.06817710399627686, + 0.01932603493332863, + 0.013208165764808655, + -0.016569549217820168, + -0.023736413568258286, + -0.0027775433845818043, + 0.002670346526429057, + 0.023276999592781067, + 0.014119338244199753, + 0.002071193652227521, + 0.0009193075238727033, + -0.014685949310660362, + -0.010022892616689205, + 0.023736413568258286, + -0.027672065421938896, + 0.009540507569909096, + 0.01604887843132019, + 0.009862096980214119, + -0.015926368534564972, + -0.009417996741831303, + -0.02917281910777092, + -0.0010930235730484128, + 0.006251865066587925, + 0.004559688735753298, + -0.01227402314543724, + -0.020030470564961433, + -0.03344537317752838, + -0.01604887843132019, + 0.020061098039150238, + 0.0068567609414458275, + 0.03969341143965721, + -0.0029536522924900055, + 0.022618506103754044, + 0.010765612125396729, + -0.022036580368876457, + 0.05476220324635506, + 0.004521403927356005, + 0.008300088346004486, + 0.0009183503570966423, + 0.009999921545386314, + -0.01376712042838335, + -0.015130049549043179, + 0.01650829240679741, + -0.01349147129803896, + -0.001562009216286242, + 0.0026952314656227827, + 0.016339842230081558, + 0.02105649746954441, + 0.0026607755571603775, + -0.009081092663109303, + 0.0035336629953235388, + 0.01509176567196846, + -0.0399690605700016, + 0.024869637563824654, + -0.014509839937090874, + 0.012013688683509827, + -0.04943299666047096, + -0.013606324791908264, + -0.005072701256722212, + -0.014035112224519253, + 0.010114775039255619, + 0.01909632794559002, + -0.020964613184332848, + 0.00033690393320284784, + -0.0076951924711465836, + 0.015244903042912483, + -0.004552031867206097, + -0.014961597509682178, + 0.0037691129837185144, + 0.016232645139098167, + -0.0008039753302000463, + -0.016462352126836777, + -0.024027377367019653, + 0.006753392517566681, + -0.019065700471401215, + 0.010413394309580326, + 0.015076451934874058, + -0.005122471135109663, + 0.007633937057107687, + -0.029984451830387115, + 0.00746165681630373, + -0.016431724652647972, + 0.011355194263160229, + 0.010512934066355228, + -0.019846705719828606, + 0.00870590377599001, + -0.013116283342242241, + -0.02094930037856102, + 0.004862136673182249, + 0.0025956917088478804, + 0.005072701256722212, + -0.007940213195979595, + 0.006776363588869572, + 0.011990717612206936, + 0.0002304250665474683, + -0.008843728341162205, + -0.018958503380417824, + -0.0033977527637034655, + -0.025589386001229286, + -0.011990717612206936, + -0.003906937316060066, + 0.012128542177379131, + 0.003910765517503023, + -0.010734984651207924, + -0.004310839343816042, + -0.018269382417201996, + 0.023123862221837044, + -0.00478556752204895, + -0.0016002937918528914, + -0.004318496212363243, + 0.004008391406387091, + 0.014662978239357471, + -0.005960902664810419, + -0.009417996741831303, + 0.00042376198689453304, + -0.01949448697268963, + -0.0100764911621809, + -0.01218979712575674, + 0.013644609600305557, + -0.006022158078849316, + -0.014907999895513058, + 0.024578673765063286, + 0.006630882155150175, + 0.012059629894793034, + -0.003841853467747569, + -0.005294751841574907, + -0.007415715139359236, + -0.008652306161820889, + 0.011875864118337631, + -0.0019888817332684994, + 0.011401135474443436, + 0.005819249898195267, + 0.0001333976979367435, + -0.0010164545383304358, + -0.00790958572179079, + -0.006546656135469675, + 0.04578831046819687, + 0.03292470425367355, + -0.005735023878514767, + -0.006803162395954132, + -0.0026933173649013042, + 0.007894271984696388, + 0.020398002117872238, + 0.011990717612206936, + 0.0012002203147858381, + 0.0036083178129047155, + -0.06480807065963745, + 0.009609418921172619, + 0.01450218353420496, + 0.0021171350963413715, + -0.003855253104120493, + 0.016462352126836777, + 0.025757838040590286, + -0.006251865066587925, + 0.010719670914113522, + 0.018100930377840996, + 0.015535865910351276, + -0.011048917658627033, + 0.006405003368854523, + -0.018958503380417824, + 0.041531067341566086, + -0.019448546692728996, + 0.03243466094136238, + 0.010597160086035728, + 0.007710506208240986, + 0.011676784604787827, + 0.01966293901205063, + -0.05834563821554184, + 0.0010097547201439738, + 0.010030549019575119, + 0.0042572407983243465, + 0.008935611695051193, + -0.014930970035493374, + 0.0007403272902593017, + -0.0027239450719207525, + -0.0036293743178248405, + 0.042878683656454086, + -0.00937971193343401, + 0.026278506964445114, + 0.01292486023157835, + -0.004571173805743456, + -0.029586292803287506, + -0.013591011054813862, + -0.013483814895153046, + 0.02326168678700924, + 0.017212728038430214, + -0.01376712042838335, + -0.021760931238532066, + -0.0009284000843763351, + 0.001290188985876739, + 0.028299931436777115, + 0.004184500314295292, + -0.01773339882493019, + 0.0036293743178248405, + 0.021378086879849434, + -0.010551218874752522, + 0.02376704104244709, + -0.011393479071557522, + 0.01667674444615841, + -0.0084761967882514, + 0.002327699912711978, + 0.022848213091492653, + 0.022036580368876457, + -0.011117829941213131, + 0.02101055532693863, + -0.0030933907255530357, + -0.004578830674290657, + 0.00535217858850956, + 0.030903279781341553, + 0.005486174486577511, + 0.004965504631400108, + -0.0035049496218562126, + -0.011270968243479729, + -0.0030340496450662613, + 0.01227402314543724, + 0.010183687321841717, + 0.0023793841246515512, + -0.013085655868053436, + -0.012465446256101131, + 0.0031355037353932858, + -0.008261803537607193, + -0.012258709408342838, + -0.009693644940853119, + 0.01819281280040741, + 0.016937080770730972, + 0.0015304244589060545, + -0.01284063421189785, + 0.010842181742191315, + 0.02477775327861309, + -0.01903507299721241, + 0.005585714243352413, + 0.005639312788844109, + 0.03583432734012604, + -0.002142020035535097, + 0.004134730435907841, + 0.011592558585107327, + 0.011500675231218338, + 0.009854440577328205, + 0.029433153569698334, + -0.009670674800872803, + -0.0005422047688625753, + -0.0005077486857771873, + -0.006274836137890816, + -0.004651571623980999, + 0.0071553802117705345, + -0.00011461434041848406, + 0.006531342398375273, + 0.002142020035535097, + -0.005107157398015261, + 0.0031699598766863346, + 0.002685660496354103, + -0.010290884412825108, + -0.009869754314422607, + -0.020918672904372215, + 0.005788622424006462, + 0.01684519648551941, + 0.048789817839860916, + -0.008767159655690193, + 0.002069279318675399, + -0.02010704018175602, + -0.009724273346364498, + -0.025696583092212677, + -0.004613286815583706, + 0.0008078037644736469, + -0.051607560366392136, + -0.016079505905508995, + -0.010980005376040936, + -0.006803162395954132, + 0.016355155035853386, + -0.004831508733332157, + -0.027503613382577896, + 0.04661525413393974, + -0.0066002546809613705, + -0.01253435853868723, + -0.0015036253025755286, + -0.00428021140396595, + -0.0004838208551518619, + -0.010007578879594803, + -0.0352524034678936, + -0.006209752056747675, + 0.010298540815711021, + 0.008552766405045986, + -0.004391236696392298, + -0.02044394426047802, + 0.028912484645843506, + 0.030964534729719162, + 0.018315322697162628, + 0.03476236015558243, + -0.0008355600875802338, + 0.017304612323641777, + -0.009326113387942314, + 0.0085604228079319, + 0.01315456721931696, + -0.005482345819473267, + 0.0016002937918528914, + 0.013024399988353252, + 0.004900421015918255, + 0.020091725513339043, + -0.0026512043550610542, + -0.020474571734666824, + -0.01506879460066557, + 0.0040696463547647, + 0.019800763577222824, + 0.029371898621320724, + -0.01408105343580246, + -0.019678253680467606, + 0.009272515773773193, + -0.017319925129413605, + 0.00495401956140995, + -0.007706677541136742, + 0.0017936306539922953, + -0.012059629894793034, + -0.023797670379281044, + 0.010145402513444424, + -0.0019678252283483744, + 0.004456320311874151, + 0.016860511153936386, + 0.00354131986387074, + -0.0030072506051510572, + -0.014617037028074265, + 0.013759463094174862, + 0.011646157130599022, + -0.03739633783698082, + -0.02393549308180809, + -0.02860620804131031, + 0.014609379693865776, + -0.00996929407119751, + 0.006864417809993029, + -0.001017411588691175, + -0.003660002024844289, + -0.034272320568561554, + -0.008353686891496181, + -0.010505277663469315, + -0.007549711037427187, + 0.028315246105194092, + 0.011944776400923729, + -0.02365984581410885, + 0.010689043439924717, + -0.03402729704976082, + -0.017273984849452972, + -0.005072701256722212, + 0.013376617804169655, + -0.015183648094534874, + 0.02101055532693863, + -0.033200353384017944, + 0.012741094455122948, + 0.02218971960246563, + 0.009440967813134193, + 0.012940173968672752, + -0.009012180380523205, + -0.005746509414166212, + 0.01244247518479824, + -0.002063536550849676, + -0.007431028876453638, + -0.010298540815711021, + 0.01193711906671524, + 0.0020520512480288744, + 0.012710466980934143, + 0.006508371792733669, + -0.0159416813403368, + -0.01542866975069046, + -0.004268726333975792, + 0.007224292494356632, + -0.020428629592061043, + -0.025329051539301872, + 0.001372500672005117, + -0.023123862221837044, + -0.0067265937104821205, + 0.0028349701315164566, + -0.010168373584747314, + 0.005742680747061968, + 0.006343747954815626, + -0.003617889015004039, + 0.01087280921638012, + 0.042603034526109695, + -0.013545069843530655, + 0.00937971193343401, + -0.010589503683149815, + -0.004138558637350798, + -0.0355893075466156, + -0.022725703194737434, + -0.0070252129808068275, + -0.0008781516226008534, + -0.031163614243268967, + 0.0035126064904034138, + -0.005964731331914663, + 0.00816226378083229, + -0.007978498004376888, + 0.011730383150279522, + -0.006944815628230572, + 0.004509918857365847, + -0.033935416489839554, + -0.0021803046111017466, + 0.019295407459139824, + 0.003074248554185033, + 0.0038801380433142185, + -0.0179631058126688, + -0.009984607808291912, + -0.002454038942232728, + 0.016355155035853386, + -0.011554273776710033, + 0.008047410286962986, + 0.0022147605195641518, + 0.01053590513765812, + -0.008920297957956791, + 0.02822336181998253, + 0.032465290278196335, + -0.016079505905508995, + 0.006657681427896023, + -0.02471649833023548, + 0.005413434002548456, + -0.030673572793602943, + -0.007438685745000839, + 0.0009676417103037238, + 0.008001469075679779, + -0.0016759056597948074, + -0.011584901250898838, + -0.0023946978617459536, + -0.002477009780704975, + -0.006623225286602974, + 0.01227402314543724, + 0.002362156054005027, + 0.0012509473599493504, + 0.016431724652647972, + 0.02421114221215248, + -0.0073965732008218765, + 0.017381180077791214, + -0.006324606016278267, + 0.013552727177739143, + 0.03650813549757004, + -0.025022774934768677, + 0.013667580671608448, + 0.008315402083098888, + -0.0051301284693181515, + 0.005616341717541218, + -0.026064114645123482, + 0.001729504088871181, + 0.0028407128993421793, + 0.010038206353783607, + -0.003772941417992115, + 0.007243434898555279, + -0.016569549217820168, + -0.013055027462542057, + -0.003101047594100237, + 0.0007944041863083839, + -0.018881935626268387, + -0.01898913085460663, + 0.013522099703550339, + 0.013629295863211155, + 0.003654259257018566, + 0.0013227307936176658, + 0.010964691638946533, + -0.01949448697268963, + 0.00841494183987379, + -0.022710388526320457, + -0.002649290021508932, + 0.0029727944638580084, + 0.005206697154790163, + -0.021424029022455215, + -0.0018768995068967342, + -0.018208127468824387, + -0.008016782812774181, + -0.009961636736989021, + -0.015436326153576374, + 0.008675276301801205, + 0.012281680479645729, + -0.007247263099998236, + -0.0018529717344790697, + -0.011845236644148827, + 0.008238832466304302, + 0.005738852545619011, + 0.0010987662244588137, + 0.012702809646725655, + -0.0034934640862047672, + 0.004923391621559858, + 0.004146215505897999, + 0.018437834456562996, + 0.002168819075450301, + -0.005803936161100864, + -0.01705959066748619, + -0.007668393198400736, + -0.004287868272513151, + -0.012296994216740131, + -0.0046592284925282, + -0.004016048274934292, + 0.09292422980070114, + -0.011998374946415424, + -0.013223479501903057, + -0.00708263972774148, + 0.005953245796263218, + -0.03372102230787277, + 0.0006182953366078436, + 0.015895741060376167, + 0.0186369139701128, + 0.0045443749986588955, + 0.00875184591859579, + -0.030535748228430748, + 0.0198160782456398, + 0.022572563961148262, + -0.0033422403503209352, + 0.016355155035853386, + 0.02326168678700924, + 0.03197524696588516, + -0.011102516204118729, + 0.012664525769650936, + -0.006990756839513779, + 0.008491510525345802, + -0.007212806958705187, + 0.014364358969032764, + -0.012894232757389545, + 0.025252481922507286, + -0.0014662978937849402, + -0.0007934470777399838, + 0.012886576354503632, + 0.013146910816431046, + 0.015130049549043179, + -0.001630921382457018, + -0.004689855966717005, + -0.019892645999789238, + -0.010987662710249424, + 0.0010690958006307483, + 0.0010135831544175744, + 0.001450026873499155, + 0.002036737510934472, + 0.005490002688020468, + 0.002036737510934472, + 0.002182218711823225, + 0.011914148926734924, + -0.002398526296019554, + -0.011508332565426826, + -0.006761049851775169, + -0.006091070361435413, + -0.0032867277041077614, + -0.009326113387942314, + -0.004578830674290657, + 0.003673401428386569, + 0.003744228044524789, + 0.005819249898195267, + 0.0012050059158354998, + 0.011362851597368717, + 0.006699794437736273, + 0.011860550381243229, + -0.01269515324383974, + 0.0018979560118168592, + 0.0061446684412658215, + -0.02010704018175602, + 0.0037557133473455906, + -0.005237325094640255, + -0.005891990382224321, + -0.010849838145077229, + -0.0065275137312710285, + -0.015803858637809753, + -0.028008969500660896, + 0.016538921743631363, + -0.00643180264160037, + -0.011163772083818913, + 0.0250074602663517, + 0.0013772862730547786, + -0.029540350660681725, + -0.014226534403860569, + 0.010099461302161217, + -0.006382032763212919, + 0.008552766405045986, + -0.008904984220862389, + 0.006795505527406931, + 0.007128581404685974, + 0.012143855914473534, + -0.018054988235235214, + -0.018146870657801628, + -0.006041300483047962, + 0.006573455408215523, + 0.029157504439353943, + -0.01886662095785141, + 0.00024238898186013103, + -0.01823875494301319, + -0.013881973922252655, + -0.012794693000614643, + -0.0087288748472929, + -0.0025822920724749565, + 0.0029708801303058863, + 0.0035049496218562126, + -0.02433365397155285, + 0.010750298388302326, + 0.0032580143306404352, + 0.010405737906694412, + -0.003101047594100237, + 0.011929462663829327, + 0.014172936789691448, + 0.00858339387923479, + 0.0008125893655233085, + -0.033200353384017944, + 0.007055840454995632, + 0.009088749997317791, + -0.03999968618154526, + -0.0010020978515967727, + 0.0016538921045139432, + -0.0023889553267508745, + -0.009816155768930912, + 0.010880465619266033, + -0.0012078771833330393, + 0.014517497271299362, + 0.02477775327861309, + 0.00470134150236845, + -0.02494620531797409, + -0.025926290079951286, + -0.0008417813223786652, + 0.012733438052237034, + 0.021990640088915825, + -0.015191305428743362, + 0.015497581101953983, + -0.014149965718388557, + 0.0042610689997673035, + -0.004647742956876755, + -0.013927915133535862, + -0.006573455408215523, + 0.014203564263880253, + 0.0095711350440979, + 0.014571095816791058, + 0.020061098039150238, + 0.012679839506745338, + -0.009892725385725498, + -0.009754900820553303, + 0.004142387304455042, + 0.024961519986391068, + -0.007679878734052181, + 0.008912640623748302, + -0.011301595717668533, + -0.011002976447343826, + 0.004678370896726847, + 0.022434739395976067, + 0.02754955366253853, + -0.0051416135393083096, + 0.005007617641240358, + -0.005528287496417761, + 0.000895379635039717, + 0.031347379088401794, + -0.028851227834820747, + 0.014777831733226776, + -0.008912640623748302, + 0.018514404073357582, + 0.012978458777070045, + -0.029249388724565506, + 0.03482361510396004, + -0.0009011223446577787, + 0.001017411588691175, + -0.010941721498966217, + -0.0024444677401334047, + -0.0088973268866539, + -0.01682988367974758, + -0.0021917899139225483, + 0.013315362855792046, + 0.015911053866147995, + 0.028070224449038506, + 0.008215862326323986, + -0.007365945260971785, + -0.0018701996887102723, + -0.00895858183503151, + 0.014364358969032764, + -0.02957097813487053, + 0.008529795333743095, + 0.0057273670099675655, + 0.012748751789331436, + -0.0014241848839446902, + -0.021194320172071457, + 0.00737743079662323, + -0.00682996166869998, + -0.008836071938276291, + 0.01081155426800251, + -0.015290845185518265, + -0.01970888115465641, + -0.020826788619160652, + 0.006975443102419376, + 0.0038073973264545202, + 0.004529060795903206, + 0.0027411729097366333, + -0.015421012416481972, + 0.018790051341056824, + -0.0038877949118614197, + 0.006267179269343615, + -0.011676784604787827, + 0.0001923798117786646, + 0.011607872322201729, + 0.02641633152961731, + -0.004360609222203493, + -0.01758025959134102, + -0.0042610689997673035, + 0.016967708244919777, + 0.00849916785955429, + -0.005294751841574907, + -0.0044180359691381454, + -0.00035365342046134174, + -0.0015352100599557161, + -0.022327544167637825, + -0.0021515910048037767, + 0.011048917658627033, + -0.05393525958061218, + -0.018851306289434433, + 0.017886536195874214, + -0.014578752219676971, + -0.029815999791026115, + 0.01650829240679741, + 0.00767222186550498, + 0.009862096980214119, + 0.023169802501797676, + 0.006117869168519974, + 0.009663017466664314, + 0.013338332995772362, + 0.023077920079231262, + 0.008430255576968193, + -0.01218979712575674, + 0.003707857569679618, + -0.008154606446623802, + 0.004678370896726847, + 0.025711895897984505, + -0.0007207064772956073, + 0.033077843487262726, + -0.019892645999789238, + -0.010229628533124924, + 0.01999984309077263, + 0.0012595613952726126, + 0.016799256205558777, + 0.016309212893247604, + -0.01523724664002657, + 0.020015157759189606, + -0.008009125478565693, + 0.005803936161100864, + 0.003977763466536999, + -0.011301595717668533, + -0.0016395354177802801, + 0.005922618322074413, + -0.015581807121634483, + 0.008629335090517998, + 0.003445608541369438, + 0.0020041957031935453, + -3.373825165908784e-5, + -0.013797747902572155, + -0.017473064363002777, + -0.004850651137530804, + 0.01836126483976841, + 0.011370508000254631, + 0.017932478338479996, + -0.008292431011795998, + 0.010796239599585533, + -0.0009590277331881225, + -0.025160599499940872, + -0.004808538127690554, + 0.003548976732417941, + 0.0015878512058407068, + -0.0030857338570058346, + -0.005378977861255407, + 0.0049961325712502, + 0.008108665235340595, + 0.0024521248415112495, + 0.000589103321544826, + 0.0026894889306277037, + 0.009762557223439217, + 0.026569470763206482, + -0.0033345832489430904, + 0.0009417996625415981, + -0.01557415071874857, + 0.004678370896726847, + -0.0013351732632145286, + -0.038437675684690475, + -0.002404269063845277, + 0.007388915866613388, + -0.013215823099017143, + 0.008101008832454681, + 0.007940213195979595, + -0.002084593055769801, + 0.01865222677588463, + -0.022067207843065262, + -0.004444834776222706, + 0.0065275137312710285, + -0.017212728038430214, + 0.0021018211264163256, + -0.009946322999894619, + -0.021316831931471825, + -0.008483854122459888, + 0.0012997600715607405, + -0.002477009780704975, + 0.028682777658104897, + -0.006925673224031925, + 0.0034475226420909166, + 0.024394908919930458, + -0.005214354023337364, + 0.001137050800025463, + -0.006902702618390322, + -0.0015313816256821156, + -0.002831141697242856, + -0.0008633163524791598, + -0.008889669552445412, + 0.005378977861255407, + 0.0017936306539922953, + -0.0070252129808068275, + 0.004816194996237755, + 0.018545031547546387, + -0.0019084842642769217, + 0.009685988537967205, + 0.006320777349174023, + -0.012097914703190327, + 0.0014308847021311522, + -0.002390869427472353, + 0.01294783130288124, + -0.0024214971344918013, + -0.010168373584747314, + -0.00879012979567051, + 0.0034972927533090115, + -0.019953900948166847, + 0.010398080572485924, + -0.009433310478925705, + 0.030489806085824966, + 0.010336825624108315, + 0.033414747565984726, + -0.003771027084439993, + -0.026783863082528114, + 0.006125526502728462, + 0.005440232809633017, + -0.006952472496777773, + -0.01498456858098507, + -0.01903507299721241, + 0.02816210687160492, + -0.0201529823243618, + -0.008185234852135181, + -0.010122432373464108, + 0.006240379996597767, + -0.016309212893247604, + -0.00568908266723156, + 0.0048468224704265594, + -0.001792673603631556, + 0.002769886516034603, + 0.01716678775846958, + 0.015788543969392776, + -0.007511426694691181, + 0.024073317646980286, + 0.018146870657801628, + 0.007350631523877382, + -0.011875864118337631, + 0.015926368534564972, + -0.0042993538081645966, + -0.012855947948992252, + 0.010428708046674728, + -0.017825281247496605, + 0.014211220666766167, + -0.013613982126116753, + 0.0020175951067358255, + -0.019188210368156433, + 0.00626335060223937, + -0.005846049170941114, + 0.0026588612236082554, + 0.007220464292913675, + 0.009410339407622814, + 0.0027373444754630327, + 0.02107181027531624, + -0.020183609798550606, + 0.000725492020137608, + 0.008154606446623802, + -0.0013964285608381033, + -0.01886662095785141, + -0.020964613184332848, + -0.016646116971969604, + 0.0025344365276396275, + -0.006722765043377876, + -0.011661470867693424, + -0.006251865066587925, + -0.0007149637676775455, + 0.0260181725025177, + -0.00034982498618774116, + -0.010313854552805424, + -0.009839126840233803, + 0.023414824157953262, + 0.010888122953474522, + 0.014762517996132374, + 0.011263311840593815, + 0.013897287659347057, + -0.006087241694331169, + -0.004923391621559858, + -0.008169921115040779, + -0.0012432903749868274, + 0.005091843660920858, + -0.0016318784328177571, + -0.0081392927095294, + -0.026783863082528114, + 0.03344537317752838, + -0.005233496427536011, + -0.014739547856152058, + 0.005179898347705603, + 0.0003462358145043254, + 0.012771721929311752, + 0.007633937057107687, + -0.003792083589360118, + -0.012205110862851143, + -0.013728835619986057, + 0.0196476262062788, + 0.028744032606482506, + -0.005244981963187456, + -0.01424950547516346, + 0.00753056863322854, + -0.013254107907414436, + 0.02185281552374363, + 0.003654259257018566, + -0.015160677954554558, + 0.021194320172071457, + -0.014594065956771374, + 0.005696739535778761, + 0.006627053953707218, + 0.018560344353318214, + 0.0063131204806268215, + 0.0059723882004618645, + -0.002817742060869932, + -0.002057794015854597, + -0.0021228776313364506, + 0.010237285867333412, + -0.012289336882531643, + -0.018208127468824387, + 0.02843775600194931, + 0.009249544702470303, + -0.012120884843170643, + 0.003813140094280243, + -0.0037691129837185144, + -0.011286281980574131, + -0.007901929318904877, + 0.02393549308180809, + -0.0036638304591178894, + -0.010673729702830315, + 0.025711895897984505, + -0.01908101513981819, + -0.0019304979359731078, + -0.001052824780344963, + 0.00461711548268795, + 0.014601723290979862, + -0.00763010885566473, + 0.012564986012876034, + 0.01433373149484396, + -0.0022339029237627983, + -0.00047975312918424606, + -0.0026244050823152065, + 0.00929548591375351, + 0.008192891255021095, + -0.008016782812774181, + -0.024793067947030067, + -0.014394986443221569, + 0.0022358170244842768, + 0.013315362855792046, + 0.02269507572054863, + -0.020137667655944824, + 0.0020520512480288744, + 0.003472407814115286, + 0.00138015765696764, + 0.003681058529764414, + 0.0035470626316964626, + 0.007668393198400736, + 0.005275609437376261, + 0.015114735811948776, + -0.002664603991433978, + 0.011837579309940338, + -0.006454773247241974, + 0.0076990206725895405, + 0.0034130667336285114, + -0.0015840227715671062, + 0.005907304584980011, + 0.008116322569549084, + -0.0014117424143478274, + 0.00858339387923479, + 0.020183609798550606, + -0.01915758289396763, + -0.02381298318505287, + 0.010436365380883217, + -0.011561931110918522, + 0.004161529242992401, + 0.007515254896134138, + 0.0037250856403261423, + 0.001896041794680059, + 0.016738001257181168, + 0.013774776831269264, + 0.009471595287322998, + 0.004104102496057749, + -0.004900421015918255, + 0.0176262017339468, + -0.022312229499220848, + 0.0034417801070958376, + -0.0028770831413567066, + 0.005826906766742468, + 0.0030991334933787584, + -0.0056010279804468155, + 0.002745001344010234, + 0.005784793756902218, + -0.013943228870630264, + -0.012764065526425838, + 0.032404035329818726, + 0.008131636306643486, + 0.001562009216286242, + -0.00895858183503151, + 0.016002938151359558, + 0.004582659341394901, + -0.002111392328515649, + 0.010803896933794022, + -0.006079584825783968, + -0.00571588147431612, + 0.01705959066748619, + -0.010497620329260826, + 0.019280094653367996, + 0.024823695421218872, + 0.013361304067075253, + 0.02826930396258831, + -0.010673729702830315, + 0.0006082456093281507, + -0.00588433351367712, + 0.00033666467061266303, + 0.015459297224879265, + 0.013315362855792046, + -0.014287790283560753, + 0.013537413440644741, + -0.00428021140396595, + 0.004689855966717005, + 5.937094556429656e-6, + -0.006267179269343615, + 0.01920352503657341, + 0.008185234852135181, + 0.0024636101443320513, + -0.0022932440042495728, + 0.012595613487064838, + 0.02094930037856102, + 0.003652344923466444, + 0.04646211490035057, + -0.0019142269156873226, + 0.014747204259037971, + -0.01452515460550785, + 0.02370578609406948, + -0.005903475917875767, + -0.012044316157698631, + -0.018146870657801628, + -0.010130088776350021, + 0.0071438951417803764, + -0.014379672706127167, + 0.005937932059168816, + -0.006791677325963974, + 0.003459008177742362, + 0.03068888746201992, + 0.007488456089049578, + 0.0161101333796978, + -0.026508215814828873, + 0.009433310478925705, + -0.01062013115733862, + -0.017549632117152214, + 0.02574252337217331, + -0.012664525769650936, + -0.012771721929311752, + -0.010252599604427814, + 0.01047465018928051, + 0.001101637608371675, + 0.0025114656891673803, + 9.708719881018624e-5, + 0.00887435581535101, + -0.005953245796263218, + 0.013200509361922741, + -0.011110173538327217, + -0.006240379996597767, + 0.011163772083818913, + 0.014303104020655155, + 0.01802436076104641, + 0.010444022715091705, + -0.020857416093349457, + 0.001317945308983326, + 0.01650829240679741, + 0.003772941417992115, + 0.0007513340678997338, + 0.0021707334090024233, + -0.015788543969392776, + 0.003011079039424658, + -0.010260256938636303, + 0.016202017664909363, + -0.0014672549441456795, + 0.007702849339693785, + 0.012564986012876034, + -0.021837500855326653, + 0.01385134644806385, + 0.002055879682302475, + -0.005030588246881962, + 0.004456320311874151, + 0.0021649906411767006, + -0.02078084833920002, + -0.005650797858834267, + 0.007599480915814638, + -0.018039675429463387, + -0.010459336452186108, + -0.005662283394485712, + -0.0047166552394628525, + -0.015114735811948776, + 0.0013983427779749036, + 0.004008391406387091, + -0.004686027765274048, + 0.02078084833920002, + 0.010842181742191315, + 0.004938705358654261, + -0.012281680479645729, + -0.024410221725702286, + 0.00478556752204895, + 0.001268175314180553, + -0.0018529717344790697, + 0.0033211838454008102, + -0.02212846279144287, + 0.021087124943733215, + 0.007641593925654888, + 0.026140684261918068, + 0.003522177692502737, + -0.0007058712071739137, + -0.010803896933794022, + -0.0044716340489685535, + 0.008399628102779388, + 0.0033422403503209352, + -0.018851306289434433, + 0.006864417809993029, + -0.006493058055639267, + 0.0034264663700014353, + -0.010512934066355228, + 0.006902702618390322, + 0.008238832466304302, + -0.0012404191074892879, + -0.04042847454547882, + 0.005378977861255407, + -0.0029727944638580084, + -0.01081155426800251, + 0.0039586215279996395, + 0.010329168289899826, + -0.022679761052131653, + 0.008621678687632084, + -0.016263272613286972, + -0.005865191575139761, + -0.00172854692209512, + -0.0003692065365612507, + 0.018958503380417824, + 0.009349084459245205, + -0.005547429900616407, + -0.012733438052237034, + -0.01275640819221735, + -0.009264858439564705, + 0.0040045627392828465, + -0.026339763775467873, + 0.020474571734666824, + 0.007848330773413181, + -0.011071888729929924, + 0.019218837842345238, + -0.018391892313957214, + 0.010666072368621826, + 0.009877410717308521, + -0.0052602957002818584, + -0.024624615907669067, + 0.010796239599585533, + -0.007840673439204693, + 0.025972232222557068, + -0.012794693000614643, + 0.010589503683149815, + 0.011408792808651924, + 0.0009173932485282421, + -0.04364437609910965, + -0.0033001273404806852, + 0.01540569867938757, + -0.012649212032556534, + 0.0174577496945858, + 0.005976216401904821, + -0.017365867272019386, + -0.015727289021015167, + -0.01768745668232441, + 0.014563438482582569, + -0.027166709303855896, + -0.006117869168519974, + 0.009846783243119717, + -0.005658454727381468, + -0.005275609437376261, + -1.2592024177138228e-5, + 0.008070380426943302, + -0.00147108337841928, + -0.020872730761766434, + -0.014157623052597046, + 0.004950190894305706, + -0.03650813549757004, + -0.0044601489789783955, + 0.007622451521456242, + -0.005949417594820261, + 0.0248390082269907, + 0.013751806691288948, + -0.027457671239972115, + -0.016799256205558777, + -0.015673689544200897, + -0.01615607552230358, + -0.023613903671503067, + -0.007450171280652285, + -0.004379751160740852, + -0.008315402083098888, + -0.0020654508844017982, + -0.0056737689301371574, + 0.02174561843276024, + -0.0034972927533090115, + 0.010428708046674728, + -0.004900421015918255, + -0.004329981282353401, + 0.013468501158058643, + -0.0015419097617268562, + 0.007117095869034529, + -0.03715131804347038, + -0.0091500049456954, + 0.011079546064138412, + -0.000489802798256278, + -0.012289336882531643, + 0.02607942745089531, + -0.007201321888715029, + -0.0022071036510169506, + -0.012182140722870827, + 0.012013688683509827, + 0.006068099290132523, + -0.005463203880935907, + -0.0016203931299969554, + 0.014226534403860569, + 0.0011772495927289128, + 0.010597160086035728, + 0.01649297960102558, + 0.002348756417632103, + 0.013300049118697643, + 0.009241887368261814, + -0.01104126125574112, + -0.020428629592061043, + -0.003464750712737441, + -0.004253412131220102, + -0.004961676429957151, + -0.0032752424012869596, + -0.019892645999789238, + -0.03712068870663643, + -0.01750369183719158, + 0.010160716250538826, + 0.008407284505665302, + -0.01523724664002657, + -0.006424145773053169, + 0.0050152745097875595, + -0.018039675429463387, + 0.004425692837685347, + 0.0017668314976617694, + -0.0172892976552248, + 0.016983021050691605, + -0.013077998533844948, + 0.0176262017339468, + -0.02799365483224392, + 0.01859097182750702, + 0.0024980662856251, + 0.0032943845726549625, + -0.008552766405045986, + -0.014609379693865776, + 0.010068833827972412, + -0.006301634944975376, + 0.027411730960011482, + 0.0036982866004109383, + 0.013591011054813862, + 0.0074004014022648335, + -0.004383579827845097, + -0.0011313081486150622, + 0.00921125989407301, + 0.024961519986391068, + -0.007576510310173035, + -0.0006489229272119701, + -0.012197454459965229, + -0.024073317646980286, + -0.009724273346364498, + -0.0068529327400028706, + 0.0047587682493031025, + -0.0017352467402815819, + -0.0019907960668206215, + -0.010497620329260826, + -0.0036159746814519167, + -0.03807014599442482, + -0.01987733319401741, + -0.019632311537861824, + -0.002298986539244652, + 0.021929383277893066, + -0.0017036619829013944, + 0.01932603493332863, + 0.020643023774027824, + -0.009027494117617607, + 0.007262577302753925, + -0.010183687321841717, + 0.0008326887036673725, + 0.026064114645123482, + -0.0021515910048037767, + 0.014578752219676971, + -0.011990717612206936, + -0.010666072368621826, + 0.0009604633669368923, + -0.011531303636729717, + 0.011952432803809643, + -0.003269499633461237, + -0.017978420481085777, + -0.006738078780472279, + 0.023231057450175285, + 0.0013236879603937268, + 0.0033805249258875847, + 0.00411175936460495, + -0.001066224416717887, + 0.013062684796750546, + 0.0005417262436822057, + -0.004226613324135542, + 0.0030244786757975817, + 0.009663017466664314, + -0.005467032082378864, + -0.0028139136265963316, + 0.008238832466304302, + 0.006910359486937523, + 0.0076530794613063335, + -0.008353686891496181, + -0.010428708046674728, + 0.006845275405794382, + -0.004188328515738249, + -0.014241848140954971, + -0.004999960772693157, + -0.00904280785471201, + -0.02725859172642231, + 0.009471595287322998, + -0.020413316786289215, + -0.0196476262062788, + 0.010114775039255619, + 0.005091843660920858, + 0.017243357375264168, + 0.0042993538081645966, + -0.021148379892110825, + -0.011661470867693424, + -0.0001458401675336063, + 0.00539429159834981, + 0.011500675231218338, + 0.008820758201181889, + -0.0352524034678936, + 0.011638499796390533, + -3.10762770823203e-5, + -0.0094026830047369, + 0.011990717612206936, + -0.017825281247496605, + 0.002078850520774722, + -0.0003675315820146352, + -0.00716686574742198, + -0.012067286297678947, + 0.01526021771132946, + 0.006301634944975376, + 0.010466992855072021, + -0.008529795333743095, + 0.007411886937916279, + -0.005914961453527212, + 0.006818476598709822, + 0.004119416233152151, + -0.005796279292553663, + 1.077500382962171e-5, + 0.01509176567196846, + 0.007266405504196882, + 0.005627827253192663, + 0.013675237074494362, + -0.02157716639339924, + -0.007274062372744083, + 0.0040045627392828465, + -0.0070290411822497845, + -0.014946283772587776, + -0.007637765724211931, + -0.010275570675730705, + -0.020872730761766434, + 0.012771721929311752, + 0.004873621743172407, + 0.007235778030008078, + 0.0019391118548810482, + -0.0024808382149785757, + -0.010903436690568924, + 0.0072817192412912846, + -0.001651977887377143, + 0.0016759056597948074, + 0.011676784604787827, + -0.006944815628230572, + 0.0016577205387875438, + -0.01382837537676096, + 0.0009733844199217856, + -0.02393549308180809, + 0.0056737689301371574, + 0.029708802700042725, + 0.012656868435442448, + -0.017932478338479996, + 0.0171208456158638, + -0.016538921743631363, + -0.012197454459965229, + -0.017090218141674995, + 0.010719670914113522, + -0.009517536498606205, + -0.011523646302521229, + -0.01069669984281063, + -0.004295525141060352, + -0.007813874632120132, + -0.0093184569850564, + 0.00047951386659406126, + -0.011845236644148827, + -0.0021305344998836517, + -0.047380946576595306, + 0.0036293743178248405, + -0.006715108174830675, + 0.010107118636369705, + -0.007871300913393497, + 0.002132448833435774, + 0.007553539704531431, + -0.0011322651989758015, + 0.015972310677170753, + 0.015589464455842972, + 0.003688715398311615, + -0.02140871435403824, + -0.012465446256101131, + -0.012013688683509827, + 0.0024387252051383257, + 0.014303104020655155, + 0.008843728341162205, + 0.009203603491187096, + 0.004410379100590944, + -0.005172241013497114, + -0.016462352126836777, + -0.008606364019215107, + 0.006799334194511175, + -0.0021171350963413715, + 0.0162785854190588, + -0.022664446383714676, + 0.012174483388662338, + 0.01261092722415924, + -0.013950886204838753, + -0.0179631058126688, + 0.005692910868674517, + -0.0015514809638261795, + 0.015865113586187363, + -0.004697512835264206, + 0.038774579763412476, + 0.011309253051877022, + 0.007553539704531431, + -0.021469969302415848, + 0.005199040286242962, + 0.014035112224519253, + 0.005681425798684359, + -0.00737743079662323, + 0.000728841929230839, + 0.011002976447343826, + 0.003889709245413542, + -0.010022892616689205, + 0.008545109070837498, + 0.017197415232658386, + 0.007350631523877382, + 0.0001707251212792471, + -0.005964731331914663, + -0.012832977809011936, + -0.017365867272019386, + -0.002706717001274228, + 0.013445530086755753, + -0.0094026830047369, + 0.016140760853886604, + -0.0270288847386837, + 0.0092342309653759, + 0.0010786668863147497, + 0.002362156054005027, + -0.01882067881524563, + -0.01334599032998085, + -0.008300088346004486, + 0.010880465619266033, + -0.005447890143841505, + -0.004337638150900602, + 0.041990481317043304, + 0.016600176692008972, + 0.023675158619880676, + -0.015413355082273483, + 0.010551218874752522, + -0.0095711350440979, + 0.026492901146411896, + -0.01294783130288124, + -0.016033565625548363, + 0.02061239629983902, + -0.0032465290278196335, + 0.008254146203398705, + 0.018545031547546387, + 0.004555860068649054, + -0.000937492644879967, + 0.012595613487064838, + -0.004567345604300499, + -0.002957480726763606, + -0.01926477998495102, + 0.003520263358950615, + 0.011944776400923729, + -0.011653813533484936, + 0.0011485362192615867, + 0.028590893372893333, + 0.014571095816791058, + 0.00988506805151701, + 0.01970888115465641, + 0.0027641437482088804, + 0.008445569314062595, + -0.0080550666898489, + -0.005696739535778761, + 0.011255654506385326, + 0.005865191575139761, + -0.006443288177251816, + -0.0004421864286996424, + -0.031668972223997116, + 0.02117900736629963, + 0.012304650619626045, + 0.0004407507658470422, + -0.05277140811085701, + 0.016921766102313995, + -0.013629295863211155, + 0.03131675347685814, + 0.02309323474764824, + 0.020566454157233238, + 0.009425653144717216, + 0.013315362855792046, + -0.0030244786757975817, + -0.00043692230246961117, + -0.00376528431661427, + 0.0015246818074956536, + -0.0006843361188657582, + 0.01146239135414362, + -0.010352139361202717, + -0.0013868574751541018, + -0.01999984309077263, + -0.02698294259607792, + 0.0191422700881958, + 0.013185195624828339, + 0.006163810845464468, + -0.012970801442861557, + -0.009532850235700607, + -0.005953245796263218, + -0.0023736413568258286, + 0.022511309012770653, + -0.022067207843065262, + -0.007622451521456242, + 0.0038495103362947702, + 0.003889709245413542, + 0.010045862756669521, + 0.01819281280040741, + -0.015352100133895874, + -0.009808499366044998, + 0.009563477709889412, + 0.0002259984175907448, + 0.004444834776222706, + -0.0011399221839383245, + -0.017488377168774605, + -0.025819092988967896, + 0.007216635625809431, + -0.012312307953834534, + 0.015114735811948776, + 0.010428708046674728, + -0.001986967632547021, + 0.001798416255041957, + 0.00849916785955429, + 0.02647758647799492, + -0.013652266934514046, + -0.003935650456696749, + -0.0018529717344790697, + -0.01171506941318512, + 0.0084761967882514, + 0.016002938151359558, + -0.013307705521583557, + 0.030152903869748116, + 0.0013437872985377908, + -0.00311061879619956, + -0.0004287868505343795, + 0.023169802501797676, + 0.00912703387439251, + 0.006592597812414169, + -0.020091725513339043, + -0.011623186059296131, + 0.0044716340489685535, + 0.007480798754841089, + -0.020765533670783043, + 0.03482361510396004, + 0.011309253051877022, + -0.011362851597368717, + -0.008215862326323986, + -0.0032446146942675114, + 0.013820718973875046, + -0.007373602129518986, + 0.009341427125036716, + -0.006504543125629425, + 0.005788622424006462, + -0.02090335823595524, + -0.0068146479316055775, + 0.006627053953707218, + 0.008453226648271084, + 0.01758025959134102, + 0.02298603765666485, + -0.0040887887589633465, + 0.003924165386706591, + 0.005153099074959755, + 0.023231057450175285, + -0.011837579309940338, + 0.0015323386760428548, + 0.024624615907669067, + -0.0013217737432569265, + 8.643930777907372e-5, + 0.0005637398571707308, + -0.0037959120236337185, + 0.010842181742191315, + 0.012312307953834534, + -0.02343013882637024, + 0.002406183397397399, + -0.011761010624468327, + -0.0067687067203223705, + -0.019111642614006996, + 0.0031967589166015387, + 0.012519043870270252, + 0.00038715239497832954, + -0.003935650456696749, + 0.008606364019215107, + 0.0099080391228199, + 0.01598762348294258, + -0.02889716997742653, + 0.00028163063689135015, + 0.009640047326683998, + 0.002901968080550432, + -0.01509176567196846, + 0.008675276301801205, + 0.005654626525938511, + -0.02725859172642231, + 0.01733523979783058, + -0.016186702996492386, + 0.006159982178360224, + 0.006918016355484724, + -0.0030436208471655846, + 0.0044065504334867, + 0.013606324791908264, + 0.005011446308344603, + 0.009609418921172619, + 0.004050504416227341, + -0.0009394068620167673, + 0.012289336882531643, + 0.010428708046674728, + 0.018682854250073433, + 0.005742680747061968, + 0.014065739698708057, + 0.007955526933073997, + -0.003485807217657566, + 0.009081092663109303, + 0.012603269889950752, + 0.004494605120271444, + 0.009640047326683998, + -0.006672995164990425, + -0.0062710074707865715, + 0.025206539779901505, + -0.012664525769650936, + -0.015620091930031776, + -0.007515254896134138, + 0.006075756158679724, + 0.0014117424143478274, + -0.042664289474487305, + 0.01908101513981819, + 0.007496112957596779, + 0.0010068833362311125, + 0.0004424257203936577, + 0.009877410717308521, + 0.021714990958571434, + 0.02731984667479992, + -0.015627749264240265, + 0.006584940943866968, + 0.012542014941573143, + 0.0026531184557825327, + 0.000571396725717932, + -0.027411730960011482, + 0.0025229512248188257, + -0.014601723290979862, + 0.015926368534564972, + -0.003954792860895395, + 0.010964691638946533, + 0.003973935265094042, + 0.012909546494483948, + -0.024655243381857872, + -0.01176866702735424, + -0.00946393795311451, + -0.017718084156513214, + 0.006508371792733669, + 0.02038268931210041, + -0.0004259154957253486, + -0.010635444894433022, + -0.015482267364859581, + -0.003927993588149548, + 0.0019410261884331703, + 0.013169881887733936, + -0.005482345819473267, + -0.008652306161820889, + -3.514401032589376e-5, + -0.0018443576991558075, + 0.0009355784277431667, + -0.0018185155931860209, + 0.022205032408237457, + 0.0162785854190588, + -0.012901890091598034, + -0.04376688599586487, + -0.01036745309829712, + 0.018897248432040215, + -0.014915656298398972, + -0.017090218141674995, + 0.004969333298504353, + 0.007331489119678736, + 0.0029191961511969566, + 0.005329207982867956, + 0.007120924070477486, + -0.002285586902871728, + 0.013881973922252655, + -0.005750337615609169, + -0.016738001257181168, + 0.004494605120271444, + 0.024134572595357895, + -0.004831508733332157, + -0.012771721929311752, + 0.006190610118210316, + 0.007297032978385687, + 0.01638578251004219, + 0.02055114135146141, + 0.021025868132710457, + -0.009586448781192303, + 0.011263311840593815, + 0.01104126125574112, + 0.02021423727273941, + -0.008292431011795998, + -0.0028158279601484537, + 0.012886576354503632, + -0.008001469075679779, + -0.0003510213573463261, + 0.0012145770015195012, + -0.010712014511227608, + -0.006163810845464468, + 0.01424950547516346, + 0.0007015641895122826, + 0.016309212893247604, + 0.0002658382582012564, + 0.004104102496057749, + -0.008039752952754498, + 0.010666072368621826, + -0.0013342162128537893, + 0.008797787129878998, + -0.00311061879619956, + -0.022955410182476044, + 0.007006070576608181, + -0.012036658823490143, + 0.0024904091842472553, + -0.02347607910633087, + 0.01892787590622902, + -0.011408792808651924, + 0.001568709034472704, + -0.0021037354599684477, + 0.019586369395256042, + -0.006025986280292273, + -0.0021381916012614965, + -0.009372055530548096, + 0.01773339882493019, + -0.001889341976493597, + -0.004165357910096645, + -0.00044003291986882687, + 0.024471476674079895, + 0.006657681427896023, + 0.017243357375264168, + 0.009609418921172619, + -0.0031412465032190084, + -0.008284774608910084, + -0.007205150090157986, + -0.005570400506258011, + -0.0035738616716116667, + 0.0035317486617714167, + 0.01250373013317585, + -0.0048008812591433525, + -0.007676050066947937, + -0.037426967173814774, + 0.01252670120447874, + -0.0028885684441775084, + 0.00647391565144062, + 0.01087280921638012, + 0.00560485664755106, + 0.008376657031476498, + -0.026033487170934677, + -0.005578057374805212, + 0.02421114221215248, + 0.004850651137530804, + 0.04490010812878609, + 0.010543562471866608, + 0.03957090154290199, + -0.005486174486577511, + 0.017840595915913582, + -0.021975325420498848, + 0.0020252522081136703, + -0.01987733319401741, + -0.005934103392064571, + -0.01909632794559002, + -0.007476970553398132, + -0.009417996741831303, + 0.006110212299972773, + 0.0090657789260149, + -0.0057273670099675655, + 0.0068108197301626205, + -0.0011619357392191887, + -0.004862136673182249, + 0.01323879323899746, + 0.0021458484698086977, + -0.012679839506745338, + 0.016293900087475777, + -0.023338254541158676, + -0.0048008812591433525, + 0.010022892616689205, + 0.008782473392784595, + 0.01261858455836773, + -0.015581807121634483, + -0.011607872322201729, + 0.006921844556927681, + 0.007247263099998236, + -0.004146215505897999, + -0.0270288847386837, + 0.00912703387439251, + 0.00833071582019329, + 0.010926407761871815, + 0.005696739535778761, + 0.007055840454995632, + 0.0037212572060525417, + -0.00971661601215601, + -0.0282080490142107, + -0.007450171280652285, + 0.009869754314422607, + -0.006454773247241974, + -0.0064854007214307785, + -0.0007953612948767841, + -0.011653813533484936, + 0.005440232809633017, + -0.011921805329620838, + 0.0045750024728477, + 0.010107118636369705, + -0.009058121591806412, + -0.009785528294742107, + -0.011814609169960022, + 0.02286352589726448, + -0.0012767893495038152, + 0.011025947518646717, + -0.015834486111998558, + -0.0177946537733078, + -0.0014682121109217405, + 0.006512199994176626, + 0.0066002546809613705, + 0.012955487705767155, + 0.004640086088329554, + -0.003981592133641243, + 0.011822265572845936, + -0.01758025959134102, + 0.005635484121739864, + 0.010336825624108315, + -0.0181315578520298, + 0.018054988235235214, + -0.010857495479285717, + -0.03865206986665726, + -0.009333770722150803, + -0.009953980334103107, + -0.009134691208600998, + -0.010635444894433022, + 0.0016098648775368929, + -0.010084147565066814, + 0.01250373013317585, + 0.0023812982253730297, + -0.0191422700881958, + 0.011523646302521229, + -0.009218917228281498, + -0.0035355770960450172, + 0.007316175382584333, + 0.0011887348955497146, + -8.823390089673921e-5, + 0.012220424599945545, + 0.020015157759189606, + -0.001262432662770152, + -0.02078084833920002, + -0.0043874080292880535, + -0.008598707616329193, + 0.025298424065113068, + -0.013904944993555546, + -0.009088749997317791, + -0.012986116111278534, + 0.013713521882891655, + 0.007132409606128931, + 0.014724234119057655, + -0.004081131890416145, + -0.013499128632247448, + 0.0196476262062788, + -0.0030034221708774567, + -0.03085733950138092, + 0.004858308006078005, + -0.002163076540455222, + -0.002348756417632103, + 0.024701185524463654, + -0.0005847963620908558, + 0.006362890359014273, + -0.0005723538342863321, + 0.017809968441724777, + 0.01498456858098507, + 0.019050385802984238, + -0.004150044173002243, + -0.0028253989294171333, + 0.024685870856046677, + 0.019218837842345238, + -0.009142347611486912, + 0.021883442997932434, + 0.026737922802567482, + -0.006994585506618023, + -0.008629335090517998, + 0.004992303904145956, + 0.0001327994978055358, + 0.008859042078256607, + -0.01143176294863224, + -0.0060145012103021145, + 0.003665744559839368, + -0.01542866975069046, + -0.007289376109838486, + 0.005616341717541218, + 0.005137785337865353, + -0.004613286815583706, + 0.0022492166608572006, + -0.01735055260360241, + 0.01532147265970707, + -0.0044180359691381454, + -0.002572721103206277, + 0.02523716911673546, + 0.0029823656659573317, + -0.0017113188514485955, + -0.013070342130959034, + -0.004379751160740852, + -0.019754821434617043, + 0.0034341232385486364, + -0.002063536550849676, + 0.01163084339350462, + -0.017993733286857605, + -0.015834486111998558, + -0.022205032408237457, + 0.006711279507726431, + -0.012710466980934143, + 0.034272320568561554, + -0.004766425117850304, + 0.014372016303241253, + 0.005735023878514767, + 0.012710466980934143, + -0.00643180264160037, + 0.0010432536946609616, + -0.0035164349246770144, + 0.026232566684484482, + -0.013460843823850155, + -0.004081131890416145, + -0.0008637949358671904, + 0.023077920079231262, + 0.007687535602599382, + -0.0263550765812397, + 0.0007163994596339762, + -0.00495401956140995, + -0.0014825687976554036, + 0.0011743782088160515, + -0.0010547389974817634, + 0.012243395671248436, + 0.0014040854293853045, + 0.0028119992930442095, + -0.010964691638946533, + -0.006718936841934919, + 0.016232645139098167, + 0.005275609437376261, + 0.01267218217253685, + 0.0024310683365911245, + -0.025803780183196068, + 0.008782473392784595, + -0.005761823151260614, + 0.011355194263160229, + 0.007917243055999279, + -0.01391260139644146, + 0.013384275138378143, + 0.02799365483224392, + -0.005738852545619011, + -0.007752619218081236, + -0.021332144737243652, + 0.01667674444615841, + -0.005784793756902218, + 0.009188289754092693, + -0.029479095712304115, + 0.005237325094640255, + 0.01104126125574112, + 0.0005761823267675936, + -0.023108547553420067, + 0.0028330557979643345 + ], + "3a432b4f-1d15-4fdb-b22a-60260e79a243": [ + -0.026295317336916924, + -0.0304014440625906, + -0.015039697289466858, + 0.05519923195242882, + -0.0337829627096653, + 0.023316362872719765, + 0.0007487643742933869, + 0.025747833773493767, + -0.0161749217659235, + 0.04595642164349556, + 0.0012902095913887024, + 0.00975809060037136, + 0.019838230684399605, + -0.0017199439462274313, + 0.013743449933826923, + 0.019000902771949768, + -0.03487792983651161, + 0.003254709765315056, + -0.03051416203379631, + -0.011883615516126156, + 0.04547334834933281, + -0.031222669407725334, + -0.028420841321349144, + -0.015281234867870808, + -0.00114730023778975, + -0.008606764487922192, + -0.015466412529349327, + -0.00043048919178545475, + -0.048500608652830124, + 0.012817557901144028, + 0.009725885465741158, + 0.015128261409699917, + 0.0003462028980720788, + 0.021899346262216568, + 0.012495509348809719, + -0.06782355904579163, + 0.01948397606611252, + 0.01404939591884613, + -0.0005021954420953989, + 0.0008871448808349669, + -0.016971992328763008, + 0.02094930037856102, + -0.008711431175470352, + 0.0005862301914021373, + -0.023139234632253647, + -0.009822500869631767, + -0.04701918363571167, + 0.016939787194132805, + -0.008936865255236626, + -0.01855003461241722, + 0.007866051979362965, + 0.027390284463763237, + -0.02790556289255619, + 0.017310144379734993, + 0.05133464187383652, + -0.042317263782024384, + 0.01565159112215042, + 0.07426454871892929, + 0.01990264095366001, + -0.047663282603025436, + -0.019000902771949768, + -0.04795312508940697, + 0.021577296778559685, + -0.01768050156533718, + 0.011939974501729012, + -0.01355827134102583, + -0.048983681946992874, + 0.016070254147052765, + -0.003582797246053815, + 0.024089280515909195, + -0.022237496450543404, + 0.030868416652083397, + -0.0357152558863163, + -0.002984993625432253, + -0.02384774386882782, + 0.00114730023778975, + 0.057582397013902664, + 0.002773648826405406, + 0.011328080669045448, + -0.022237496450543404, + 0.02914545312523842, + -0.008502098731696606, + 0.017422862350940704, + 0.031206566840410233, + 0.035586435347795486, + 0.0036854504141956568, + -0.03977307677268982, + -0.0463106743991375, + -0.01578846201300621, + -0.02500711940228939, + 0.002572367899119854, + 0.028436943888664246, + 0.008212254382669926, + 0.010708135552704334, + 0.0013304657768458128, + 0.01776101253926754, + 0.04788871482014656, + 0.006074653007090092, + 0.0005439612432383001, + -0.01921023428440094, + -0.021738320589065552, + 0.020498432219028473, + -0.009202555753290653, + -0.016343995928764343, + 0.012777302414178848, + 0.002411343390122056, + -0.021593399345874786, + 0.023107029497623444, + -0.005635860841721296, + 0.045344527810811996, + -0.017406759783625603, + -0.05742137134075165, + 0.017229631543159485, + -0.004210793413221836, + -0.004693867173045874, + -0.04447499290108681, + -0.01603805087506771, + -0.04180198535323143, + -0.0030111600644886494, + 0.0026408033445477486, + 0.04228505864739418, + 0.0054506827145814896, + -0.005511066876351833, + 0.020450124517083168, + -0.028227612376213074, + 0.03600510209798813, + -0.008711431175470352, + 0.013687090948224068, + 0.03542541339993477, + 0.04257490485906601, + -0.03594069182872772, + -5.5666707339696586e-5, + 0.043959714472293854, + -0.012004383839666843, + 0.00931527279317379, + 0.029982781037688255, + 0.013010787777602673, + 0.0323820486664772, + -0.007334670517593622, + 0.009709782898426056, + -0.02713264524936676, + 0.008936865255236626, + -0.010064037516713142, + 0.0279860757291317, + -0.0015055800322443247, + -0.00014177712728269398, + -0.03758314251899719, + 0.05484497919678688, + -0.02065945602953434, + 0.027857255190610886, + -0.052558429539203644, + -0.011368337087333202, + -0.003095697844401002, + -0.007479592692106962, + 0.039354413747787476, + -0.004083986394107342, + 0.005631835199892521, + 0.03829164803028107, + 0.009814449585974216, + 0.04888707026839256, + 0.03487792983651161, + -0.027003824710845947, + -0.0012751135509461164, + 0.005837141536176205, + 0.02444353513419628, + -0.008904660120606422, + 0.06402338296175003, + 0.02645634114742279, + 0.00243952265009284, + 0.019854333251714706, + -0.012704840861260891, + -0.042735930532217026, + 0.04331561550498009, + 0.0029548013117164373, + -0.014798160642385483, + -0.003745834808796644, + 0.04218844324350357, + 0.05046511068940163, + 0.01596558839082718, + -0.014902826398611069, + -0.03829164803028107, + -0.023396873846650124, + 0.04006291925907135, + 0.012962480075657368, + 0.0173906572163105, + 0.05587553605437279, + -0.0009897981071844697, + 0.009814449585974216, + -0.006936134770512581, + -0.025619013234972954, + 0.021367965266108513, + -0.007705027237534523, + 0.022656161338090897, + 0.01584482006728649, + -0.004408048465847969, + -0.015989743173122406, + -0.01864664815366268, + -0.004573098849505186, + 0.022752776741981506, + 0.0521719716489315, + -0.029016632586717606, + -0.020514534786343575, + -0.035296592861413956, + 0.03977307677268982, + -0.0279860757291317, + 0.03507115691900253, + -0.01385616697371006, + -0.0020953326020389795, + 0.05288047716021538, + -0.026520751416683197, + 0.050626132637262344, + -0.02750300243496895, + -0.001662579015828669, + 0.008944916538894176, + -0.012922223657369614, + 0.01806695945560932, + 0.02373502589762211, + 0.013815910555422306, + 0.01120731234550476, + -0.03349311649799347, + 0.018131369724869728, + -0.004391945898532867, + -0.0078459233045578, + -0.017648296430706978, + -0.04119009152054787, + -0.019709410145878792, + -0.03349311649799347, + 0.05552128329873085, + -0.0226883664727211, + -0.018227985128760338, + 0.028050485998392105, + 0.00045741049689240754, + 0.03871031478047371, + -0.029902268201112747, + -0.00642085587605834, + -0.014266779646277428, + 0.028356431052088737, + -0.022752776741981506, + 0.0018507764907553792, + -0.019387362524867058, + -0.013767602853477001, + 0.027068234980106354, + -0.008502098731696606, + -0.00060988066252321, + -0.014983339235186577, + 0.023123132064938545, + -0.0017400720389559865, + 0.0868888720870018, + -0.0021174733992666006, + 0.0025341245345771313, + 0.016923684626817703, + -0.008502098731696606, + 0.01652112416923046, + 0.014258728362619877, + -0.04102906957268715, + 0.031335387378931046, + 0.03507115691900253, + -0.02605378068983555, + -0.03292953222990036, + -0.018501726910471916, + -0.00945214368402958, + 0.013059095479547977, + -0.007322593592107296, + 0.006275933701545, + 0.027261463925242424, + -0.02433081716299057, + 0.03157692402601242, + 0.013397246599197388, + 0.01535369548946619, + 0.022817185148596764, + 0.024991018697619438, + -0.006151139736175537, + -0.015031646005809307, + 0.021190837025642395, + -0.015321490354835987, + -0.01602194830775261, + -0.003753886092454195, + 0.012173459865152836, + 0.025538502261042595, + 0.00369148887693882, + -0.011939974501729012, + 0.01959669403731823, + 0.018308496102690697, + -0.023896049708127975, + -0.0023731000255793333, + 0.02181883342564106, + -0.024556251242756844, + -0.01748727075755596, + -0.028211509808897972, + 0.007725154981017113, + 0.004738148767501116, + -0.006537598557770252, + 0.0014894775813445449, + 0.017068607732653618, + -0.010780597105622292, + -0.012447201646864414, + -0.0140010891482234, + -0.0027072259690612555, + 0.027358079329133034, + -0.007765411399304867, + -0.011738693341612816, + 0.005704296287149191, + -0.02347738668322563, + -0.04528011754155159, + 0.00620347261428833, + -0.031609129160642624, + 0.03304224833846092, + 0.02249513566493988, + -0.03565084561705589, + -0.012326433323323727, + 0.014323137700557709, + -0.005060198251157999, + -0.012060742825269699, + -0.02539357915520668, + 0.011328080669045448, + -0.002093319781124592, + -0.03784077987074852, + -0.0012952416436746716, + -0.01785762794315815, + -0.020015357062220573, + -0.02191544882953167, + -0.02663346938788891, + -0.04466822370886803, + 0.0009918109280988574, + 0.05223638191819191, + -0.05297709256410599, + 0.03465249389410019, + -0.0057727317325770855, + -0.028227612376213074, + -0.005229273810982704, + -0.012326433323323727, + -0.026198701933026314, + 0.0014914904022589326, + -0.001234857365489006, + -0.04283254221081734, + -0.01748727075755596, + -0.04160875827074051, + -0.021867141127586365, + -0.03329988569021225, + -0.016955889761447906, + -0.03420162573456764, + 0.012318382039666176, + 7.761888991808519e-5, + -0.008477944880723953, + -0.0521397665143013, + -0.02276887744665146, + 0.03996630385518074, + 0.005486913025379181, + 0.01719742640852928, + -0.0003909878432750702, + 0.00103156385011971, + 0.00177328335121274, + 0.05397544428706169, + -0.03144810348749161, + 0.025924960151314735, + -0.009250863455235958, + -0.015410054475069046, + -0.00206010858528316, + 0.019178029149770737, + 0.01119926106184721, + -0.023590104654431343, + -0.04096465930342674, + -0.014017191715538502, + -0.04025615006685257, + -0.02328415773808956, + -0.0038827056996524334, + 7.705278403591365e-5, + -0.020691661164164543, + -0.03272019699215889, + -0.0028340329881757498, + -0.017438964918255806, + 0.010072088800370693, + -0.02170611545443535, + -0.025248657912015915, + -0.02634362503886223, + -0.04077142849564552, + 0.04866163432598114, + 0.009854705072939396, + -0.002562304027378559, + 0.03301004320383072, + -0.02054673805832863, + 0.004999813623726368, + -0.014975287951529026, + 0.013365041464567184, + 0.042156241834163666, + -0.003939064219594002, + -0.028211509808897972, + -0.04408853501081467, + -0.03420162573456764, + -0.006412804592400789, + -0.014323137700557709, + -0.0024153690319508314, + -0.011770898476243019, + -0.006263856776058674, + -0.020160280168056488, + -0.013179863803088665, + 0.0006561752525158226, + -0.0026065856218338013, + 0.037711963057518005, + -0.00927501730620861, + -0.0005162851302884519, + -0.03600510209798813, + -0.030047189444303513, + 0.0001967519347090274, + -0.020868787541985512, + -0.00897712167352438, + 0.011424695141613483, + -0.02230190671980381, + 0.03032093122601509, + 0.022833287715911865, + 0.003953153733164072, + 0.014983339235186577, + 0.015321490354835987, + 0.03030483052134514, + 0.02673008292913437, + 0.003820308716967702, + -0.013526066206395626, + 0.0617690347135067, + -0.037422116845846176, + -0.024588456377387047, + 0.03507115691900253, + 0.012632380239665508, + -0.0037518732715398073, + 0.018662750720977783, + 0.004448304418474436, + 0.009218658320605755, + 0.0031198516953736544, + 0.009001275524497032, + 0.000254242739174515, + -0.018292395398020744, + 0.010080140084028244, + 0.035586435347795486, + -0.007753334473818541, + 0.021400168538093567, + -0.013952781446278095, + -0.021029813215136528, + 0.029966678470373154, + -0.010981877334415913, + -0.016762660816311836, + -0.006746930535882711, + 0.00220804987475276, + 0.04218844324350357, + 0.025812244042754173, + -0.0015891115181148052, + -0.057292550802230835, + -0.01816357485949993, + -0.029515808448195457, + 0.027390284463763237, + 0.014154062606394291, + -0.03339650109410286, + 0.007717104163020849, + 0.0569705031812191, + -0.06325045973062515, + -0.0012378765968605876, + 0.03796960040926933, + -0.025168145075440407, + 0.014524418860673904, + -0.02384774386882782, + 0.03871031478047371, + -0.05172109976410866, + 0.0020067691802978516, + 0.0036935016978532076, + 0.04434617608785629, + -0.008192126639187336, + 0.014838417060673237, + -0.049176912754774094, + -0.00022090562561061233, + 0.013695142231881618, + 0.005853244103491306, + 0.02742248959839344, + -0.007765411399304867, + -0.052461814135313034, + -0.02664957195520401, + 0.03887133672833443, + 0.028597969561815262, + 0.002491855761036277, + -0.012342535890638828, + -0.030047189444303513, + 0.018711058422923088, + -0.01950007863342762, + -0.022269701585173607, + 0.006533572915941477, + 0.004524791147559881, + -0.005615733098238707, + 0.0003306036232970655, + -0.0018024691380560398, + -0.01625543273985386, + -0.007064954377710819, + 0.003916923422366381, + -0.003608963917940855, + 0.02701992727816105, + 0.020047562196850777, + 0.003961205016821623, + 0.04025615006685257, + -0.010756443254649639, + -0.05172109976410866, + 0.0038525136187672615, + -0.02230190671980381, + 0.00825251080095768, + -0.014661289751529694, + 0.012761199846863747, + -0.02666567452251911, + 0.01669825054705143, + -0.022269701585173607, + -0.03606950864195824, + 0.025361374020576477, + -0.001060749520547688, + 0.028034383431077003, + 0.020031459629535675, + -0.034781314432621, + -0.03445926308631897, + 0.016585534438490868, + -0.03623053431510925, + -0.009355529211461544, + 0.0010270350612699986, + 0.01806695945560932, + -0.008799994364380836, + -0.015458361245691776, + 0.024298612028360367, + 0.004307407885789871, + -0.013872269541025162, + 0.00477840518578887, + -0.012004383839666843, + 0.00039476188248954713, + -0.01048270147293806, + 0.01221371628344059, + 0.009911064058542252, + -0.02334856614470482, + 0.031045543029904366, + -0.016827071085572243, + -0.01777711510658264, + 0.017068607732653618, + -0.004536868073046207, + 0.0323176383972168, + 0.006263856776058674, + 0.027003824710845947, + -0.009403836913406849, + -0.00901737716048956, + -0.0031138132326304913, + -0.005261478945612907, + 0.009661476127803326, + 0.01181920524686575, + -0.033943984657526016, + -0.015522771514952183, + -0.02759961597621441, + 0.02550629712641239, + 0.00946019496768713, + 0.0007814724813215435, + -0.0036592839751392603, + 0.016569431871175766, + -0.035779666155576706, + 0.01226202305406332, + -0.010643726214766502, + 0.009806398302316666, + 0.0011150953359901905, + -0.001328452955931425, + -0.010064037516713142, + -0.006026345770806074, + 0.00014504794671665877, + -0.014057447202503681, + -0.007656719535589218, + 0.013324785977602005, + 0.007564130704849958, + 0.017326246947050095, + -0.03146420791745186, + 0.019934846088290215, + -0.017986448481678963, + -0.001707867137156427, + -0.005269530229270458, + 0.013356990180909634, + 0.029757345095276833, + -0.01152936089783907, + 0.020047562196850777, + -0.007624514866620302, + -0.0024455611128360033, + 0.0073709008283913136, + -0.005048121325671673, + -0.008373279124498367, + -0.01795424334704876, + -0.010885262861847878, + 0.03117436170578003, + -0.009146197699010372, + 0.0017924050334841013, + -0.013799807988107204, + -0.0011050313478335738, + 0.00810758862644434, + -0.009113992564380169, + -0.016086356714367867, + -0.02164170704782009, + 0.03838826343417168, + -0.00840548425912857, + 0.03236594423651695, + -0.011690385639667511, + -0.004351689945906401, + -0.004134306684136391, + 0.03107774816453457, + -0.00823238305747509, + 0.015796512365341187, + 0.027953870594501495, + 0.0008629912044852972, + 0.03610171377658844, + 0.036842428147792816, + -0.01399303786456585, + -0.02730977162718773, + -0.030852314084768295, + 0.015667693689465523, + -0.009331375360488892, + 0.01124756783246994, + -0.018678853288292885, + 0.025651218369603157, + 0.030965030193328857, + -0.009178401902318, + 0.028614072129130363, + 0.00591362826526165, + 0.024008767679333687, + 0.003884718520566821, + -0.015442258678376675, + 0.024991018697619438, + 0.022479034960269928, + -0.012576021254062653, + 0.04737343639135361, + -0.004754251334816217, + 0.06218770146369934, + -0.006529547739773989, + -0.0036069510970264673, + 0.04492586478590965, + -0.04112568125128746, + -0.008155896328389645, + -0.011811153963208199, + -0.016666045412421227, + -0.00582103943452239, + -0.0212552472949028, + -0.0020953326020389795, + -0.01491892896592617, + 0.015418105758726597, + -0.002505945274606347, + 0.002687097992748022, + -0.005325888749212027, + -0.013308683410286903, + 0.01824408769607544, + 0.00016769202193245292, + 0.010804750956594944, + 0.007048851810395718, + 0.0366491973400116, + -0.015120210126042366, + 0.024266406893730164, + 0.015957538038492203, + -0.0084537910297513, + 0.03793739527463913, + 0.044636018574237823, + -0.012189562432467937, + 0.013526066206395626, + 0.010973826050758362, + 0.015724051743745804, + 0.009097889997065067, + -0.023815538734197617, + 0.0006435951800085604, + -0.002171819331124425, + 0.018356803804636, + 0.00243952265009284, + -0.012471355497837067, + -0.03263968601822853, + 0.041576553136110306, + 0.012237869203090668, + 0.034910134971141815, + 0.009476297535002232, + -0.0032949659507721663, + -0.0007442355854436755, + 0.01719742640852928, + 0.02626311220228672, + 0.02289769798517227, + -0.013743449933826923, + -0.005551323294639587, + 0.016488919034600258, + -0.006255805492401123, + 0.0037860909942537546, + 0.02017638273537159, + 0.01863054558634758, + 0.0063000875525176525, + -0.026858903467655182, + -0.015579129569232464, + -0.054200880229473114, + -0.03358973190188408, + 0.01951618120074272, + -0.021367965266108513, + -0.00974198803305626, + -0.0017269888194277883, + 0.00692808348685503, + -0.028436943888664246, + 0.015804564580321312, + -0.015973640605807304, + 0.03745432198047638, + -0.01969330944120884, + 0.02606988325715065, + 0.0005605668993666768, + -0.010233113542199135, + -0.002057089237496257, + -0.014508316293358803, + 0.0027354054618626833, + 0.002344920765608549, + -0.0020953326020389795, + -0.005184992216527462, + 0.0004886090173386037, + -0.012680687010288239, + 0.009959371760487556, + -0.00931527279317379, + -0.019709410145878792, + -0.0294514000415802, + 0.012020486406981945, + 0.0010577302891761065, + -0.021319657564163208, + -0.008123691193759441, + -0.006469163112342358, + 0.026520751416683197, + 0.014822314493358135, + -0.023718923330307007, + -0.016553329303860664, + 0.0020218652207404375, + -0.027841152623295784, + 0.027953870594501495, + -0.042220648378133774, + 0.03516777232289314, + -0.013791756704449654, + -0.03416942059993744, + -0.029998883605003357, + 0.03484572470188141, + -0.008300818502902985, + -0.0279860757291317, + 0.016295690089464188, + 0.00927501730620861, + 0.03948323056101799, + -0.013034941628575325, + 0.0031842614989727736, + 0.005390298552811146, + 0.016110511496663094, + -0.030079394578933716, + -0.011891666799783707, + 0.021174734458327293, + 0.026891108602285385, + 0.003333209315314889, + 0.021206939592957497, + 0.009299170225858688, + 0.018775468692183495, + -0.002141627250239253, + 0.010724238120019436, + -0.009283068589866161, + 0.023332463577389717, + 0.019467873498797417, + -0.03339650109410286, + 0.01959669403731823, + 0.0212552472949028, + -0.03590848669409752, + 0.02827592007815838, + 0.007459464482963085, + -0.0002898442908190191, + 0.007531925570219755, + 0.01710081286728382, + -0.015128261409699917, + -0.002580419182777405, + 0.05394323915243149, + -0.019967051222920418, + 0.0008126710308715701, + -7.309007196454331e-5, + -0.018018653616309166, + -0.00956486165523529, + 0.03149641305208206, + 0.012326433323323727, + -0.01443585567176342, + 0.016859276220202446, + -0.0017108863685280085, + 0.018083062022924423, + 0.015184619463980198, + 0.011593771167099476, + 0.010885262861847878, + -0.003506310749799013, + -0.051688894629478455, + 0.0045569962821900845, + -0.0323820486664772, + 0.012487458065152168, + -0.013807859271764755, + -0.027776744216680527, + -0.051882125437259674, + 0.034040600061416626, + -0.01874326355755329, + 0.02346128411591053, + -0.01768050156533718, + 0.01458077784627676, + -0.028308125212788582, + -0.009089838713407516, + 0.010885262861847878, + 0.013670988380908966, + -0.006867699325084686, + 0.010160651989281178, + 0.02991837076842785, + 0.017825422808527946, + -0.023960459977388382, + 0.025828346610069275, + 0.013324785977602005, + -0.04019173979759216, + 0.00046445534098893404, + -0.00975003931671381, + -0.011650130152702332, + 0.015740154311060905, + 0.011014082469046116, + 0.002361023100093007, + -0.03410501033067703, + -0.019290747120976448, + -0.004033666104078293, + -0.03301004320383072, + 0.014669341035187244, + -0.008155896328389645, + 0.00859066192060709, + 0.018356803804636, + 0.03214050829410553, + -0.0008624879992567003, + -0.003814270254224539, + 0.005470810923725367, + -0.022543443366885185, + 0.033364295959472656, + 0.025924960151314735, + -0.00810758862644434, + -0.01375955156981945, + 0.01019285712391138, + 0.02083658240735531, + 0.0279860757291317, + -0.05046511068940163, + -0.008816096931695938, + 0.0009248850401490927, + -0.007133389823138714, + -0.018276292830705643, + -0.021979857236146927, + -0.029966678470373154, + -0.016335945576429367, + 0.0036431816406548023, + 0.016102459281682968, + 0.02199595980346203, + -0.01326842699199915, + 0.031222669407725334, + -0.027937768027186394, + 0.035683050751686096, + -0.019049210473895073, + -0.04682595282793045, + -0.004065871238708496, + -0.004536868073046207, + 0.0033110682852566242, + 0.017261836677789688, + 0.028050485998392105, + 0.005370170343667269, + 0.010724238120019436, + 0.03565084561705589, + 0.03301004320383072, + 0.01903310790657997, + 0.04528011754155159, + 0.009073736146092415, + -0.027180952951312065, + -0.004090024624019861, + -0.010595418512821198, + -0.00350027228705585, + -0.009959371760487556, + 0.010869160294532776, + 0.013493861071765423, + 0.022334111854434013, + -0.03951543569564819, + 0.006485265679657459, + -0.012004383839666843, + -0.020111972466111183, + 0.013526066206395626, + 0.012028537690639496, + 0.030143804848194122, + 0.039064567536115646, + -0.006251779850572348, + -0.01565159112215042, + 0.004762302618473768, + -0.007548028137534857, + 0.011746744625270367, + -0.034427057951688766, + 0.018517829477787018, + -0.00596596160903573, + -0.009999627247452736, + 0.0064772143959999084, + -0.027245361357927322, + 0.005507041234523058, + 0.0060384226962924, + -0.01370319351553917, + -0.019065313041210175, + -0.002600547391921282, + 0.010853057727217674, + -0.003560656448826194, + -0.007503746543079615, + -0.01912972331047058, + 0.0008161934674717486, + 0.0169075820595026, + -0.017116915434598923, + -0.020788276568055153, + -0.010136498138308525, + 0.027583513408899307, + -0.007483618333935738, + -0.013518014922738075, + 0.0011412618914619088, + 0.012761199846863747, + -0.0004699905402958393, + -0.03806621581315994, + -0.005994140636175871, + -0.002505945274606347, + 0.03874251991510391, + -0.0250876322388649, + -0.007060928735882044, + -0.0010919480118900537, + 0.043122388422489166, + -0.015973640605807304, + 0.017793217673897743, + 0.02141627110540867, + 0.012366688810288906, + -0.01661773957312107, + 0.039064567536115646, + 0.028227612376213074, + 0.005080325994640589, + -0.03503895178437233, + -0.0025763935409486294, + -0.003681425005197525, + 0.0028239688836038113, + -0.0017420848598703742, + 0.024298612028360367, + 0.014129908755421638, + -0.02740638703107834, + 0.012938326224684715, + -0.023960459977388382, + -0.017455067485570908, + -0.00524135073646903, + -0.007246106863021851, + 0.006988467648625374, + -0.019355157390236855, + 0.03358973190188408, + -0.01607830636203289, + 0.00472607184201479, + -0.004291305784136057, + -0.02964462898671627, + -0.00721792783588171, + -0.007684899028390646, + 0.020514534786343575, + -0.013212068006396294, + 0.004420125391334295, + 0.034233830869197845, + -0.005321863107383251, + -0.01578846201300621, + -0.009001275524497032, + 0.007495695259422064, + 0.015039697289466858, + 0.02141627110540867, + -0.019645001739263535, + -0.008502098731696606, + 0.006573829334229231, + -0.02664957195520401, + -0.0006113902782090008, + 0.02780894748866558, + 0.015047748573124409, + -0.0198060255497694, + -0.002316741505637765, + 0.008630918338894844, + 0.019918743520975113, + -0.008920762687921524, + 0.012278125621378422, + -0.014500265009701252, + 0.011875564232468605, + -0.05088377371430397, + 0.02373502589762211, + -0.013195966370403767, + 0.012342535890638828, + -0.024491840973496437, + -0.015716001391410828, + -0.024008767679333687, + -0.003433849662542343, + -0.02615039423108101, + 0.02326805517077446, + -0.038581494241952896, + -0.02394435741007328, + -0.03030483052134514, + 0.00931527279317379, + -0.014065498486161232, + 0.011980229988694191, + 0.013944730162620544, + -0.010289471596479416, + -0.020498432219028473, + -0.02904883772134781, + 0.001772276940755546, + 0.00569624500349164, + -0.0015297336503863335, + 0.0052131712436676025, + -0.0006023326423019171, + 0.014017191715538502, + 0.025635115802288055, + -0.02172221802175045, + 0.029660731554031372, + 0.02489440329372883, + 0.01312350481748581, + 0.007181697059422731, + -0.01563548855483532, + -0.018292395398020744, + -0.005297709256410599, + -0.00287428917363286, + -0.010643726214766502, + 0.008630918338894844, + -0.024572353810071945, + 0.02722926065325737, + 0.021448476240038872, + 0.008091486059129238, + 0.01505579985678196, + -0.00902542844414711, + -0.017310144379734993, + 0.0405137874186039, + 0.002361023100093007, + -0.007853974588215351, + 0.009951320476830006, + 0.0018618468893691897, + -0.004818661138415337, + 0.01255186740309, + 0.036745812743902206, + -0.007548028137534857, + 0.007994871586561203, + 0.036745812743902206, + -0.005362119060009718, + -0.022962108254432678, + -0.010217010974884033, + -0.012753148563206196, + -0.00781774427741766, + 0.00450868858024478, + 0.005800911225378513, + 0.0010365959024056792, + 0.02392825484275818, + -0.010941621847450733, + -0.011014082469046116, + -0.007886179722845554, + 0.011006031185388565, + 0.021384065970778465, + 0.00840548425912857, + -0.007278311997652054, + -0.0031198516953736544, + -0.096550352871418, + -0.03292953222990036, + -0.00825251080095768, + -0.01990264095366001, + 0.017116915434598923, + -0.0038082317914813757, + 0.011473002843558788, + 0.01890428736805916, + -0.0147257000207901, + 0.007407131604850292, + 0.027567410841584206, + -0.007998896762728691, + 0.007882154546678066, + 0.031109953299164772, + 0.008167972788214684, + -0.005084351636469364, + -0.008159921504557133, + -0.008518201299011707, + 0.004754251334816217, + -0.03236594423651695, + -0.0028601994272321463, + 0.009138146415352821, + 0.010804750956594944, + -0.0034479391761124134, + -0.02954801358282566, + -0.0011956077069044113, + 0.012600175105035305, + 0.0006893865647725761, + -0.00014467054279521108, + -0.029982781037688255, + 0.019548386335372925, + 0.005684168543666601, + 0.0025099709164351225, + -0.01845341920852661, + -0.0132764782756567, + 0.0366814024746418, + 0.011102646589279175, + -0.004927352536469698, + 0.03532879799604416, + 0.0241375882178545, + 0.006336317863315344, + -0.013751501217484474, + 0.012423047795891762, + -0.022640058770775795, + 0.01032972801476717, + -0.00427117757499218, + 0.0016786814667284489, + -0.03429824113845825, + 0.009814449585974216, + -0.006006217561662197, + 0.006630187854170799, + 0.005515092518180609, + 0.0027615719009190798, + -0.01930684968829155, + 0.01342140045017004, + 0.00018329128215555102, + 0.012511610984802246, + -0.008582611568272114, + 0.02463676407933235, + 0.012479406781494617, + 0.05764680728316307, + 0.015329541638493538, + -0.02568342350423336, + -0.008324971422553062, + -0.029193758964538574, + 0.003949128091335297, + 0.006199446972459555, + 0.015530822798609734, + 0.02317143976688385, + 0.005297709256410599, + 0.0026106112636625767, + -0.006996518932282925, + 0.012036588974297047, + 0.023541796952486038, + 0.008365227840840816, + -0.002127537503838539, + 0.03358973190188408, + 0.02684280090034008, + -0.0010849032551050186, + -0.010820853523910046, + -0.02701992727816105, + 0.0007251139031723142, + 0.010547110810875893, + 0.00405379431322217, + -0.026472443714737892, + -0.02210867777466774, + -0.020498432219028473, + -0.015434208326041698, + -0.015216824598610401, + 0.011239517480134964, + 0.030546367168426514, + 0.004754251334816217, + 0.03722888603806496, + 0.01903310790657997, + -0.022607853636145592, + 0.03697124868631363, + 0.002542175818234682, + 0.01660163700580597, + -0.014564675278961658, + 0.002513996558263898, + -0.019467873498797417, + -0.005776757374405861, + 0.004818661138415337, + -0.03059467300772667, + -0.0012831648346036673, + 0.004023602232336998, + 0.02579614147543907, + 0.010007678531110287, + -0.003327170852571726, + -0.01660163700580597, + 0.0029366861563175917, + 0.02286549285054207, + -0.007495695259422064, + 0.0004438240430317819, + -0.005519118160009384, + -0.005470810923725367, + -0.035586435347795486, + -0.014315087348222733, + -0.00613101152703166, + -0.013936678878962994, + 0.008300818502902985, + 0.010861109010875225, + -0.023316362872719765, + 0.012189562432467937, + 0.012640431523323059, + 0.01911362074315548, + -0.0007819756865501404, + -0.016400355845689774, + 0.010555162094533443, + 0.001706860726699233, + -0.009733936749398708, + -0.024266406893730164, + -0.004001461435109377, + 0.006618110928684473, + -0.009291118942201138, + 0.009242812171578407, + 0.01650502160191536, + -0.003884718520566821, + 0.01766439899802208, + -0.027084337547421455, + -0.003969256300479174, + -0.0021255246829241514, + -0.016400355845689774, + 0.0011966140009462833, + -0.02829202264547348, + 0.01196412742137909, + -0.01077254582196474, + -0.018211882561445236, + 0.0021838960237801075, + -0.013244273141026497, + -0.008349125273525715, + 0.006895878352224827, + 0.012052691541612148, + 0.010949673131108284, + -0.00811563991010189, + -0.02953191101551056, + 0.000835315091535449, + -0.00292058358900249, + -0.016416458413004875, + -0.011070441454648972, + -0.012181511148810387, + -0.019258541986346245, + -0.018694955855607986, + 0.005350042134523392, + 0.008630918338894844, + -0.018308496102690697, + 0.011859461665153503, + -0.008147845044732094, + -0.012479406781494617, + -0.01921023428440094, + 0.011770898476243019, + -0.01226202305406332, + -0.008856353349983692, + -0.009009326808154583, + 0.0023731000255793333, + -0.02315533719956875, + -0.012704840861260891, + -0.005684168543666601, + 0.017503373324871063, + -0.011762847192585468, + -0.02009586989879608, + 0.02048232965171337, + 0.010144549421966076, + 0.013598527759313583, + -0.008047204464673996, + 0.01048270147293806, + -0.014846468344330788, + 0.006698623299598694, + -0.007185722701251507, + 0.013662937097251415, + 0.014250677078962326, + -0.007713078521192074, + -0.03130318224430084, + 0.006312164478003979, + -0.007866051979362965, + 0.005044095683842897, + 0.00342781119979918, + 0.022382419556379318, + -0.0020379675552248955, + -0.002592496108263731, + 0.011988281272351742, + -0.0004380372411105782, + 0.019725512713193893, + 0.008014999330043793, + -0.012447201646864414, + -0.01197217870503664, + -0.059611305594444275, + 0.04160875827074051, + 0.03183456510305405, + -0.013775654137134552, + -0.007535951212048531, + -0.012205664999783039, + 0.01710081286728382, + -0.021158631891012192, + 0.016569431871175766, + -0.0050682490691542625, + 0.02837253361940384, + -0.020868787541985512, + -0.009983525611460209, + -0.019999254494905472, + 0.03175405040383339, + -0.01814747229218483, + 0.030948927626013756, + 0.010820853523910046, + 0.03990189731121063, + 0.001329459366388619, + 0.01719742640852928, + -0.054587338119745255, + -0.014250677078962326, + 0.005040070042014122, + -0.012390842661261559, + 0.005237325094640255, + -0.021174734458327293, + -0.0018064947798848152, + -0.01824408769607544, + 0.006066601723432541, + 0.04399191960692406, + 0.0036633096169680357, + 0.02550629712641239, + -0.006481240037828684, + -0.01776101253926754, + -0.005744552705436945, + -0.001002881326712668, + -0.0010446470696479082, + 0.026520751416683197, + 0.0014250676613301039, + 0.0016062203794717789, + -0.0027052133809775114, + -0.0014683430781587958, + -0.008244459517300129, + 0.00840548425912857, + 0.003973281942307949, + -0.014266779646277428, + -0.007640617433935404, + 0.013034941628575325, + -0.009387734346091747, + 0.04579539597034454, + -0.011867512948811054, + 0.015361746773123741, + -0.004987737163901329, + -0.011311978101730347, + -0.00017322725034318864, + 0.01235863845795393, + -0.01640840619802475, + 0.0098869102075696, + -0.01003183238208294, + 0.009202555753290653, + 0.025409681722521782, + 0.021174734458327293, + 0.00472607184201479, + 0.006581880617886782, + 0.01578846201300621, + -0.0016817006981000304, + -0.0028440970927476883, + -0.007056903094053268, + -0.003979320637881756, + 0.01429093349725008, + -0.00822433177381754, + -0.014749852940440178, + -0.0008851321181282401, + -0.02666567452251911, + -0.01893649250268936, + -0.008381330408155918, + 0.001038608723320067, + 0.02479778788983822, + -0.00685562239959836, + -0.020723866298794746, + -0.020498432219028473, + 0.024652866646647453, + -0.02405707538127899, + 0.0212391447275877, + 0.013960832729935646, + 0.024588456377387047, + 0.00040709032327868044, + -0.005760655272752047, + 0.017809320241212845, + 0.0010688008042052388, + 0.004621406085789204, + 0.03125487640500069, + -0.005245376378297806, + -0.004045743029564619, + 0.0014049396850168705, + -0.009532656520605087, + 0.010531009174883366, + -0.006746930535882711, + -0.00023323406639974564, + 0.019145824015140533, + 0.0021235118620097637, + -0.00485086627304554, + 0.002093319781124592, + 0.005688194185495377, + 0.015957538038492203, + -0.02993447333574295, + -0.023493489250540733, + -0.000936458702199161, + 0.022430727258324623, + 0.027148747816681862, + -0.0159414354711771, + 0.015917282551527023, + -0.03400839492678642, + 0.006718751508742571, + 0.021464578807353973, + 0.009146197699010372, + 0.007378952112048864, + -0.02375112846493721, + -0.022962108254432678, + 0.0017390656284987926, + -0.013195966370403767, + 0.0058854492381215096, + -0.011150953359901905, + -0.01222176756709814, + 0.011617925018072128, + -0.03236594423651695, + -0.01660163700580597, + -0.010386087000370026, + 0.003037326503545046, + -0.005184992216527462, + -0.017133018001914024, + -0.025280863046646118, + -0.001750136143527925, + 0.016971992328763008, + 0.02054673805832863, + 0.00760036101564765, + -0.002397253643721342, + 0.00596596160903573, + 0.023139234632253647, + 0.005333940032869577, + 0.04747005179524422, + 0.016859276220202446, + -0.0010627623414620757, + -0.0007849949179217219, + -0.0002390208828728646, + 0.009572912007570267, + -0.00811563991010189, + -0.01646476611495018, + 0.03320327401161194, + -0.004689841531217098, + 0.013083248399198055, + -0.020514534786343575, + -0.030176009982824326, + -0.03555423021316528, + 0.0008348118863068521, + 0.0037297322414815426, + 0.02094930037856102, + -0.004625431727617979, + -0.013107402250170708, + -0.002274472499266267, + -0.020627250894904137, + -0.010361933149397373, + -0.006449035368859768, + 0.010402189567685127, + -0.025329168885946274, + -0.01671435311436653, + 0.001991672907024622, + -0.011505207978188992, + 0.005116556771099567, + -0.033654142171144485, + 0.0033150939270853996, + 0.006094781216233969, + -0.02220529317855835, + 0.029370887205004692, + 0.001518663251772523, + -0.027583513408899307, + -0.01491087768226862, + -0.03526438772678375, + 0.0049957879818975925, + -0.013018839061260223, + 0.013204016722738743, + -0.0064450097270309925, + -0.004697892814874649, + -0.03545761853456497, + -0.01491087768226862, + -0.006742904894053936, + 0.008324971422553062, + 0.003095697844401002, + 0.015893127769231796, + -0.0080955121666193, + 0.007773462682962418, + -0.05703491345047951, + -0.02326805517077446, + -0.016263484954833984, + 0.01932295225560665, + -0.0132764782756567, + 0.026601264253258705, + -0.023992665112018585, + 0.011473002843558788, + 0.023251952603459358, + 0.023606207221746445, + 0.0113522345200181, + -0.016335945576429367, + -0.001322414493188262, + -0.0004030647105537355, + 0.0001996453502215445, + -0.01719742640852928, + -0.012463304214179516, + 0.01254381611943245, + -0.0065698036924004555, + 0.011086544021964073, + 0.018389008939266205, + -0.021384065970778465, + -0.005660014692693949, + 0.015893127769231796, + -0.02305872179567814, + -0.02885560877621174, + -0.022060370072722435, + 0.005869346670806408, + -0.0337829627096653, + -0.011867512948811054, + -0.009709782898426056, + -0.014540521427989006, + 0.01017675455659628, + -0.012873916886746883, + 0.00932332407683134, + 0.009226709604263306, + 0.01370319351553917, + -0.003661296796053648, + -0.004138332325965166, + 0.015031646005809307, + 0.011553514748811722, + -0.027052132412791252, + -0.02326805517077446, + -0.027857255190610886, + 0.012028537690639496, + -0.004552970640361309, + -0.005788834299892187, + -0.012245920486748219, + 0.010700084269046783, + 0.0025240606628358364, + 0.027180952951312065, + 0.026230907067656517, + 0.01874326355755329, + -0.024169791489839554, + 0.005877397954463959, + 0.003705578623339534, + 0.002272459678351879, + -0.013743449933826923, + 0.004818661138415337, + 0.004713995382189751, + -0.025023221969604492, + 0.021738320589065552, + 0.014258728362619877, + 0.009105941280722618, + -0.0020671533420681953, + 0.00975003931671381, + -0.019065313041210175, + 0.016923684626817703, + 0.025844447314739227, + -0.00371765554882586, + -0.00530576054006815, + -0.017696604132652283, + 0.021190837025642395, + -0.018211882561445236, + -0.02885560877621174, + 0.0034680673852562904, + 0.01385616697371006, + -0.014878672547638416, + -0.014556623995304108, + 0.01091746799647808, + 0.0058451928198337555, + 0.0036472072824835777, + 0.02606988325715065, + 0.015047748573124409, + 0.016086356714367867, + 0.025908857583999634, + 0.004963583312928677, + -0.012302279472351074, + 0.022640058770775795, + -0.0003605441306717694, + -0.0013183888513594866, + 0.027358079329133034, + -0.037325501441955566, + 0.008300818502902985, + -0.0015528809744864702, + -0.003828359767794609, + 0.00516083836555481, + -0.022607853636145592, + -0.008582611568272114, + -0.004150409251451492, + 0.0020973454229533672, + 0.0034056701697409153, + 0.01785762794315815, + -0.033750757575035095, + -0.0226883664727211, + -0.002636777702718973, + -0.0071494923904538155, + -0.018115267157554626, + -0.01710081286728382, + 0.010410239920020103, + 0.006501368246972561, + -0.01211710087954998, + -0.004150409251451492, + 0.004911250434815884, + 0.0008000909583643079, + 0.001539797754958272, + -0.025924960151314735, + -0.013928627595305443, + -0.007109235972166061, + 0.007419208530336618, + -0.03098113276064396, + -0.0021456528920680285, + 0.00022832784452475607, + -0.007495695259422064, + -0.016029998660087585, + -0.016150766983628273, + -0.012286176905035973, + 0.013630731962621212, + -0.00018480088328942657, + -0.0038625774905085564, + -0.011424695141613483, + -0.0009263946558348835, + -0.0031299155671149492, + 0.006646290421485901, + 0.00041136753861792386, + 0.011408592574298382, + 0.0017742897616699338, + -0.007085082586854696, + 0.009427990764379501, + 0.00854235514998436, + -0.010458547621965408, + -0.015860922634601593, + -0.010289471596479416, + 7.925429235910997e-5, + -0.01661773957312107, + -0.005011890549212694, + 0.0019795962143689394, + 0.096550352871418, + -0.014025242999196053, + -0.02183493599295616, + -0.0021557167638093233, + 0.009589014574885368, + -0.014967236667871475, + 0.012350587174296379, + 0.028839506208896637, + 0.01192387193441391, + 0.010547110810875893, + 0.0007693956722505391, + -0.023879949003458023, + 0.011456900276243687, + -0.007483618333935738, + -0.007117287255823612, + 0.012012435123324394, + 0.014749852940440178, + 0.03690683841705322, + 0.010168703272938728, + 0.0007195787038654089, + 0.005374195985496044, + 0.02421809919178486, + -0.012133203446865082, + 0.025747833773493767, + -0.005470810923725367, + 0.00874363537877798, + 0.0027555334381759167, + -0.0036230534315109253, + 0.02276887744665146, + 0.010949673131108284, + 0.008381330408155918, + 0.006199446972459555, + -0.013936678878962994, + -0.021480681374669075, + 0.004552970640361309, + 0.020997608080506325, + -0.0028642250690609217, + 0.0040698968805372715, + 0.008518201299011707, + 0.009878858923912048, + 0.0069844420067965984, + -0.012189562432467937, + 0.020305201411247253, + -0.012431099079549313, + 0.0028863658662885427, + -0.005112531129270792, + -0.013526066206395626, + -0.0012529726373031735, + 0.011134850792586803, + -0.010410239920020103, + 0.0033150939270853996, + 0.001910154358483851, + 0.005136684514582157, + 0.009218658320605755, + 0.008775840513408184, + -0.006251779850572348, + 0.0173745546489954, + -0.008163947612047195, + -0.002469714730978012, + 0.005825065076351166, + -0.03078790381550789, + -0.00898517295718193, + -0.022044267505407333, + -0.02481389045715332, + 0.0017108863685280085, + 0.009540707804262638, + -0.008357176557183266, + -0.010023781098425388, + 0.007777488324791193, + 0.015047748573124409, + -0.008244459517300129, + 0.016150766983628273, + -0.011666231788694859, + -0.0033734652679413557, + -0.014121857471764088, + 0.024572353810071945, + -0.005040070042014122, + -0.018115267157554626, + 0.002890391508117318, + -0.0006732841138727963, + -0.007620489224791527, + 0.006251779850572348, + 0.007354798726737499, + -0.020498432219028473, + -0.0014492213958874345, + 0.00538627291098237, + 0.032977838069200516, + -0.00782579556107521, + 0.005269530229270458, + -0.007636591792106628, + -0.021673910319805145, + -0.004041717387735844, + 0.0025220478419214487, + 0.00822433177381754, + -0.009790295735001564, + 0.002513996558263898, + -0.025989370420575142, + 0.00185882777441293, + -0.0002926118904724717, + -0.005607681814581156, + 0.002747482154518366, + 0.004915276076644659, + 0.007725154981017113, + 0.015764309093356133, + 0.0015055800322443247, + -0.020450124517083168, + 0.004331561736762524, + 0.011980229988694191, + -0.01805085688829422, + 0.013236221857368946, + 0.008413535542786121, + -0.00495150638744235, + -0.01004793494939804, + -0.004251049365848303, + -0.017696604132652283, + 0.0212552472949028, + 0.01442780438810587, + -0.008912711404263973, + -0.02645634114742279, + -0.016843173652887344, + 0.003536502830684185, + 0.008075383491814137, + 0.03545761853456497, + -0.010683982633054256, + -0.011899718083441257, + -0.01487062219530344, + -0.013405297882854939, + -0.004665687680244446, + -0.017986448481678963, + 0.018485624343156815, + 0.014902826398611069, + 0.009500451385974884, + 0.01163402758538723, + 0.014323137700557709, + 0.0055553484708070755, + -0.00243952265009284, + -0.01428288221359253, + -0.011448848992586136, + 0.01433118898421526, + -0.0005283619393594563, + 0.008163947612047195, + 0.007858000695705414, + -0.00917035061866045, + 0.01048270147293806, + 0.007978769019246101, + 0.006686546374112368, + 0.012092947028577328, + 0.00095910276286304, + 0.019339054822921753, + 0.009629270993173122, + 0.02674618549644947, + -0.025989370420575142, + 0.017068607732653618, + -0.007870077155530453, + 0.011883615516126156, + 0.010708135552704334, + -0.015369798056781292, + 0.011915820650756359, + 0.002177857793867588, + -0.0057928599417209625, + -0.00854235514998436, + 0.0034419007133692503, + -0.01806695945560932, + -0.012728994712233543, + -0.00369148887693882, + 0.020595045760273933, + 0.030771801248192787, + 0.005180966574698687, + 0.027068234980106354, + -0.0042470237240195274, + -0.009516553953289986, + 0.021158631891012192, + -0.0009279042715206742, + -0.031721845269203186, + -0.0023006389383226633, + 0.011159004643559456, + 0.012487458065152168, + -0.0010798712028190494, + -0.01138443872332573, + 0.0033513244707137346, + -0.0034962466452270746, + -0.003035313682630658, + 0.007974742911756039, + -0.012012435123324394, + -0.003625066252425313, + -0.013944730162620544, + 0.0025763935409486294, + -0.001322414493188262, + 0.013767602853477001, + 0.0008831192972138524, + -0.01419431809335947, + 0.0031540694180876017, + -0.029419194906949997, + -0.0062477546744048595, + -0.007177671417593956, + 0.01797034591436386, + 0.01254381611943245, + 0.02586054988205433, + -0.00584116717800498, + -7.095146429492161e-5, + -0.018179677426815033, + 0.013654885813593864, + 0.013960832729935646, + -0.0013123505050316453, + -0.019564488902688026, + -0.0033593757543712854, + -0.02170611545443535, + -0.013670988380908966, + -0.010096242651343346, + 0.015136312693357468, + -0.043025773018598557, + -0.011022133752703667, + 0.012600175105035305, + 0.006296061910688877, + -0.032865121960639954, + 0.021013710647821426, + 0.00903347972780466, + -0.008051229640841484, + 0.024572353810071945, + 0.013840064406394958, + 0.018002551048994064, + 0.024668969213962555, + 0.01919413171708584, + -0.01874326355755329, + -0.008300818502902985, + 0.026214804500341415, + 0.0020319290924817324, + 0.0011311977868899703, + 0.028130996972322464, + 0.0022100626956671476, + 0.03552202507853508, + -0.005639886483550072, + -0.009637322276830673, + 0.016682147979736328, + 0.013445554301142693, + 0.007608412299305201, + 0.028130996972322464, + -0.022028164938092232, + 0.016923684626817703, + -0.01698809489607811, + -0.003391580656170845, + 0.007648668251931667, + -0.013920576311647892, + 0.003313081106171012, + 0.011094595305621624, + -0.008171997964382172, + 0.00427117757499218, + 0.0049957879818975925, + 0.0002958826953545213, + -3.453222961979918e-5, + 0.01196412742137909, + -0.02181883342564106, + -0.002687097992748022, + 0.011014082469046116, + 0.01768050156533718, + 0.01803475432097912, + 0.012857814319431782, + 0.012495509348809719, + 0.011907769367098808, + -0.006952236872166395, + -0.011609873734414577, + 0.006626162212342024, + 0.005945833399891853, + -0.010788648389279842, + 0.01139249000698328, + 0.016746558248996735, + 0.006956262513995171, + -0.00502396747469902, + -0.007737231906503439, + 0.0030473906081169844, + -0.005764680448919535, + 0.0042470237240195274, + -0.007342721801251173, + -0.003870628774166107, + -0.01487062219530344, + -0.009935217909514904, + 0.0236384104937315, + -0.011980229988694191, + 0.0019806025084108114, + 0.002199998591095209, + -0.015949485823512077, + 0.0034298240207135677, + -0.0020017370115965605, + -0.020788276568055153, + 0.008711431175470352, + -0.026279214769601822, + -0.0065174708142876625, + 0.012036588974297047, + -0.01950007863342762, + 0.003152056597173214, + 0.0008483983692713082, + -0.03468469902873039, + 0.0006013262318447232, + 0.0020148202311247587, + -0.0036210406105965376, + 0.00839743297547102, + -0.005897526163607836, + 0.00912204384803772, + 0.018582237884402275, + -0.00412021717056632, + -0.0008237414876930416, + 0.0046294573694467545, + -0.00545873399823904, + -0.027583513408899307, + 0.014081601053476334, + 0.005003839265555143, + 0.021174734458327293, + -0.01211710087954998, + 0.008856353349983692, + 0.019870435819029808, + 0.018582237884402275, + 0.007278311997652054, + -0.003969256300479174, + -0.0008584624156355858, + -0.005660014692693949, + -0.004722046200186014, + 0.0032748377416282892, + 0.012302279472351074, + 0.00018542988982517272, + -0.006022320128977299, + -0.013646834529936314, + -0.0005822045495733619, + -0.02065945602953434, + 0.012809506617486477, + 0.017809320241212845, + 0.03125487640500069, + 0.03128708153963089, + 0.03903236240148544, + -0.0017048479057848454, + 0.01607830636203289, + 0.002238241955637932, + 0.007081056945025921, + -0.015377849340438843, + -0.004291305784136057, + -0.024089280515909195, + 0.013018839061260223, + -0.003834398230537772, + -0.006126985885202885, + -0.019145824015140533, + 0.0042470237240195274, + -0.00975809060037136, + -0.008292767219245434, + 0.0009721860405988991, + -0.013719296082854271, + 0.013872269541025162, + 0.036262739449739456, + 0.030385341495275497, + -0.017616091296076775, + 0.0015367785235866904, + 0.0395476408302784, + 0.010531009174883366, + -0.01384811569005251, + 0.015957538038492203, + -0.012326433323323727, + -0.014902826398611069, + -0.0031601078808307648, + -0.012608226388692856, + 0.007866051979362965, + -0.007652693893760443, + 0.0020077754743397236, + -0.011432746425271034, + 0.006811340339481831, + 0.001983621856197715, + -0.003918936010450125, + 0.002723328536376357, + 0.0014653238467872143, + 0.013912525027990341, + 0.016778763383626938, + -0.01370319351553917, + 0.02346128411591053, + -0.0029064940754324198, + -0.012745097279548645, + -0.007302465382963419, + -0.015079953707754612, + -0.011609873734414577, + -0.0004098579229321331, + -0.006940160412341356, + -0.005116556771099567, + 0.0022946004755795, + 0.01803475432097912, + 0.023429078981280327, + -0.005704296287149191, + -0.011762847192585468, + -0.004468432627618313, + 0.015144363977015018, + 0.007342721801251173, + -0.007008595857769251, + 0.016682147979736328, + -0.0029890190344303846, + 0.008357176557183266, + 0.00714546674862504, + 0.015699898824095726, + 0.012036588974297047, + -0.0011946012964472175, + -0.005442631430923939, + -0.015321490354835987, + -0.006891852710396051, + 0.004862942732870579, + -0.008236408233642578, + -0.017938140779733658, + -0.003987371455878019, + -0.016239330172538757, + 0.00750777218490839, + -0.0029950574971735477, + -0.007986820302903652, + -0.02606988325715065, + -0.011255619116127491, + 0.027454694733023643, + 0.01961279660463333, + -0.022189190611243248, + 0.0057405270636081696, + 0.0059176539070904255, + -0.003912897780537605, + 0.008357176557183266, + 0.005664040334522724, + -0.005543272010982037, + 0.026488546282052994, + -0.01611856184899807, + 0.01477400679141283, + 0.00975809060037136, + 0.01748727075755596, + 0.0068596480414271355, + 0.01903310790657997, + -0.003941077273339033, + -0.008566509000957012, + 0.02914545312523842, + 0.01578846201300621, + -0.008051229640841484, + -0.00912204384803772, + 0.01845341920852661, + -0.0022644083946943283, + -0.0236384104937315, + 0.027438592165708542, + -0.0021013710647821426, + -0.01549056638032198, + -0.001648489385843277, + 0.027148747816681862, + -0.021384065970778465, + -0.0033754780888557434, + 0.020160280168056488, + -0.011255619116127491, + -0.00553119508549571, + -0.006771084386855364, + -0.0016233292408287525, + 0.000915324199013412, + 0.0032929531298577785, + -0.0030997234862297773, + 0.022237496450543404, + 0.006972365081310272, + -0.017068607732653618, + -0.0005691213300451636, + 0.006324240937829018, + -0.0002157478011213243, + 0.0012328445445746183, + -0.02587665244936943, + -0.00516083836555481, + -0.002681059530004859, + 0.012632380239665508, + 0.008574560284614563, + -0.014242625795304775, + 0.010547110810875893, + 0.0067670587450265884, + 0.0010486727114766836, + 0.00716559449210763, + -0.002177857793867588, + -0.008904660120606422, + -0.001264043152332306, + 0.0028702635318040848, + 0.003391580656170845, + 0.01046659890562296, + -0.004059832543134689, + 0.01501554436981678, + 0.011948024854063988, + -0.007487643975764513, + -0.012052691541612148, + 0.02579614147543907, + -0.007258183788508177, + -0.00294675026088953, + 0.028147099539637566, + -0.02597326785326004, + -0.0049434551037848, + -0.004158460069447756, + -0.008421586826443672, + -0.012728994712233543, + 0.013244273141026497, + -0.0034902081824839115, + -0.023010415956377983, + 0.01824408769607544, + 0.004150409251451492, + 0.012503559701144695, + 0.006706674583256245, + -0.005032018758356571, + 0.003993410151451826, + -0.010394138284027576, + -0.009065684862434864, + -0.0063322922214865685, + 0.010700084269046783, + 0.007262209430336952, + -0.011617925018072128, + 0.005539246369153261, + 0.010450496338307858, + -0.015603283420205116, + -0.01708471029996872, + 0.023686718195676804, + 0.013075197115540504, + 0.005052146967500448, + -0.01718132384121418, + 0.018211882561445236, + 0.017503373324871063, + -0.002427445724606514, + 0.0020168330520391464, + -0.011690385639667511, + -0.009580963291227818, + 0.009951320476830006, + -0.01632789522409439, + 0.005969987250864506, + 0.013397246599197388, + 0.012028537690639496, + 0.01998315192759037, + -0.005664040334522724, + 0.008534303866326809, + -0.008413535542786121, + 0.004081973806023598, + -0.01222176756709814, + -0.0006566784577444196, + 0.0006607040413655341, + 0.004585175309330225, + 0.003536502830684185, + -0.015514720231294632, + 0.013292580842971802, + -0.0265368539839983, + 0.023831641301512718, + 0.004858917091041803, + -0.01048270147293806, + 0.008502098731696606, + 0.014846468344330788, + 0.003947115503251553, + -0.004794507287442684, + 0.03516777232289314, + -0.01355827134102583, + 0.006525522097945213, + 0.0026830723509192467, + 0.021271349862217903, + -0.005370170343667269, + -0.015909230336546898, + -0.01283366046845913, + -0.0173906572163105, + 0.002163768047466874, + -0.015933383256196976, + 0.002260382752865553, + -0.02054673805832863, + 0.0023207671474665403, + 0.02933868207037449, + 0.007628540508449078, + 0.014202369377017021, + -0.026971619576215744, + -0.02035350911319256, + -0.007391029037535191, + 0.0018115267157554626, + 0.013719296082854271, + -0.00184574443846941, + -0.006485265679657459, + -0.007133389823138714, + -0.0016766686458140612, + -0.008518201299011707, + -0.007809692993760109, + 0.00354656670242548, + 0.006771084386855364, + -0.011553514748811722, + 0.017455067485570908, + -0.010426342487335205, + 0.004931378178298473, + -0.023010415956377983, + -0.006457086652517319, + 0.002085268497467041, + -0.00164144451264292, + 0.0021758449729532003, + -0.002528086304664612, + 0.019178029149770737, + -0.011795052327215672, + 0.0034962466452270746, + -0.007640617433935404, + -0.015216824598610401, + 0.0010204934515058994, + -0.0032023766543716192, + 0.014242625795304775, + -0.007769437041133642, + -0.00015813119534868747, + 0.00974198803305626, + -0.03503895178437233, + 0.024958813562989235, + 0.00970173254609108, + -0.02771233394742012, + -0.001350593869574368, + 0.004399997182190418, + -0.007797616068273783, + -0.017165223136544228, + -0.0060102432034909725, + -0.02616649679839611, + -0.004693867173045874, + -0.0011462938273325562, + -0.010539060458540916, + -0.007141441106796265, + 0.0055553484708070755, + 0.009476297535002232, + 0.000980740413069725, + 0.010708135552704334, + -0.003413721453398466, + 0.00883219949901104, + -0.012930274941027164, + -0.014210420660674572, + 0.003818295896053314, + -0.0015599258476868272, + -0.011698436923325062, + 0.0046294573694467545, + -0.005873372312635183, + 0.012229817919433117, + 0.01003988366574049, + 0.037711963057518005, + 0.007419208530336618, + -0.013453605584800243, + -0.016488919034600258, + 0.008671174757182598, + -0.013501912355422974, + -0.0012459278805181384, + -0.008558457717299461, + -0.0025683422572910786, + -0.00620347261428833, + 0.010249216109514236, + -0.007342721801251173, + -0.003470080206170678, + 0.0037136299069970846, + 0.007109235972166061, + -0.033847369253635406, + 0.006521496456116438, + -0.023107029497623444, + -0.017986448481678963, + -9.315524948760867e-5, + 0.029515808448195457, + -0.029902268201112747, + 0.011118748225271702, + -0.0036069510970264673, + 0.003363401396200061, + 0.011762847192585468, + -0.0009359554969705641, + 0.00598608935251832, + 0.006614085286855698, + -0.0106276236474514, + -0.01312350481748581, + 0.004866968374699354, + 0.0025321117136627436, + -0.0034660545643419027, + -0.012616277672350407, + 0.020530637353658676, + -0.004605303518474102, + -0.010522957891225815, + 0.012060742825269699, + -0.021690012887120247, + 0.0025824320036917925, + -0.018405111506581306, + -0.006271908059716225, + -0.02732587419450283, + -0.0016233292408287525, + -0.0017541617853567004, + -0.001553887384943664, + -0.010104293935000896, + 0.017455067485570908, + 0.006408778950572014, + 0.018372906371951103, + -0.008663123473525047, + -0.010869160294532776, + 0.013896423391997814, + -0.009999627247452736, + 0.009725885465741158, + -0.007910333573818207, + -0.020707763731479645, + -0.02394435741007328, + -0.031206566840410233, + 0.007483618333935738, + -0.04209183156490326, + -0.010941621847450733, + 0.01748727075755596, + -0.018807673826813698, + -0.02586054988205433, + -1.1738756256818306e-5, + -0.006670443806797266, + -0.009363580495119095, + -0.008638969622552395, + -0.013042992912232876, + -0.005571451038122177, + -0.015836769714951515, + -0.02624700963497162, + 0.017809320241212845, + -0.0014995415695011616, + 0.014379496686160564, + 0.012286176905035973, + -0.007213902194052935, + -0.0030574544798582792, + -0.017551681026816368, + -0.001960474532097578, + -0.018099164590239525, + -0.017165223136544228, + -0.005611707456409931, + -0.025554604828357697, + 0.004399997182190418, + -0.012366688810288906, + 0.009661476127803326, + -4.069645001436584e-5, + 0.02259175106883049, + 0.0033311964944005013, + -0.0012539790477603674, + 0.0010949672432616353, + -0.010973826050758362, + 0.004722046200186014, + -0.024073177948594093, + -0.010925519280135632, + 0.014218471944332123, + -0.010023781098425388, + -0.012310330756008625, + 0.025989370420575142, + -0.006674469448626041, + 0.010893314145505428, + 0.0018185715889558196, + 0.02479778788983822, + -0.0016253420617431402, + -0.010587367229163647, + -0.006533572915941477, + 0.02164170704782009, + -0.01747116819024086, + 0.01506385114043951, + 0.01776101253926754, + 0.017599988728761673, + 0.01091746799647808, + -0.009661476127803326, + -0.01864664815366268, + -0.0036129895597696304, + 0.002536137355491519, + 0.004826712422072887, + 0.011271721683442593, + 2.8100679628551006e-5, + -0.007902282290160656, + -0.02392825484275818, + -0.007914358749985695, + 0.019967051222920418, + 0.017616091296076775, + 0.000581701344344765, + 0.005156812723726034, + 0.011159004643559456, + -0.012278125621378422, + -0.004802558571100235, + -0.020530637353658676, + -0.03313886374235153, + 0.03784077987074852, + 0.004468432627618313, + 0.014830365777015686, + -0.012503559701144695, + 0.01586897484958172, + -0.0044845351949334145, + 0.013171812519431114, + 0.0015870986972004175, + -0.004146383609622717, + -0.0005937782116234303, + 0.00429935660213232, + 0.0279860757291317, + -0.003369439858943224, + 0.005382247269153595, + -0.009798347018659115, + -0.001888013444840908, + -0.008316920138895512, + 0.008856353349983692, + 0.000581198139116168, + -0.0025039324536919594, + -0.005563399754464626, + -0.003725706599652767, + 0.00038469783612526953, + -0.011980229988694191, + -0.019628899171948433, + 0.0161588191986084, + 0.008928813971579075, + 0.011956076137721539, + -0.006698623299598694, + 0.014411701820790768, + -0.028308125212788582, + 0.011368337087333202, + -0.015804564580321312, + -0.01164207886904478, + 0.036842428147792816, + 0.016046101227402687, + 0.02143237367272377, + 0.005172915291041136, + 0.010885262861847878, + 0.002759559080004692, + -0.01404134463518858, + -0.005172915291041136, + 0.015530822798609734, + 0.001721956767141819, + 0.011948024854063988, + -0.007729180622845888, + -0.014645187184214592, + 0.004613354802131653, + 0.005249402020126581, + 0.016456713899970055, + -0.012181511148810387, + -0.010249216109514236, + 0.003536502830684185, + 0.022817185148596764, + -0.008606764487922192, + 0.009178401902318, + 0.012471355497837067, + 0.008316920138895512, + 0.019999254494905472, + -0.0032949659507721663, + -0.016384253278374672, + 0.012672635726630688, + 0.012712892144918442, + 0.0012086909264326096, + -0.013920576311647892, + -0.0023147286847233772, + 0.005780783016234636, + 0.012004383839666843, + -0.00405379431322217, + -0.01442780438810587, + 0.014604930765926838, + -0.008719482459127903, + -0.027100440114736557, + 0.00383641105145216, + -0.007185722701251507, + -0.01959669403731823, + 0.006606034003198147, + -0.004331561736762524, + -0.006976390723139048, + -0.004665687680244446, + -0.011311978101730347, + 0.03136759251356125, + 0.004613354802131653, + -0.028356431052088737, + 0.009806398302316666, + 0.006819391623139381, + 0.0013415361754596233, + -0.007644643075764179, + 0.00873558409512043, + -0.03565084561705589, + 0.018968697637319565, + 0.00399542273953557, + -0.00027198062161915004, + -8.831192826619372e-5, + -0.00901737716048956, + 0.008147845044732094, + -0.0025462014600634575, + -0.012624328956007957, + -0.012761199846863747, + 0.012302279472351074, + 0.0013385169440880418, + -0.0049957879818975925, + -0.01892038993537426, + 0.011022133752703667, + -0.0030997234862297773, + -0.001112076104618609, + -0.007894231006503105, + -0.010458547621965408, + -0.007974742911756039, + 0.003991397097706795, + 0.009725885465741158, + 0.009685629978775978, + 0.0056680659763514996, + -0.01457272656261921, + -0.003385542193427682, + 0.0015297336503863335, + -0.0063725486397743225, + -0.006972365081310272, + -0.015836769714951515, + -0.01019285712391138, + -0.008220305666327477, + 0.0084537910297513, + 0.0025240606628358364, + -0.006964313797652721, + 0.006706674583256245, + -0.011939974501729012, + -0.03183456510305405, + 0.008671174757182598, + 0.004766328260302544, + -0.00823238305747509, + 0.002005762653425336, + 0.005249402020126581, + -0.024363022297620773, + -0.012004383839666843, + 0.019145824015140533, + -0.015482515096664429, + -0.01283366046845913, + 0.012535764835774899, + -0.002020858693867922, + -0.008119665086269379, + 0.009202555753290653, + -0.018292395398020744, + 0.0049957879818975925, + 0.002469714730978012, + 0.018099164590239525, + 0.005837141536176205, + -0.020047562196850777, + -0.007415182888507843, + -3.4815278922906145e-5, + -0.006014268845319748, + -0.01385616697371006, + 0.001046659890562296, + -0.007169620133936405, + -0.011271721683442593, + -0.05204315111041069, + -0.005354067776352167, + 0.005708321928977966, + 0.009500451385974884, + 0.0014713623095303774, + -0.010651777498424053, + 0.007197799626737833, + -0.00560365617275238, + 0.01390447374433279, + 0.021496783941984177, + -0.006843545474112034, + -0.025441886857151985, + -0.00941993948072195, + -0.025119837373495102, + 0.0011573643423616886, + 0.004649585112929344, + 0.001191582065075636, + 0.01384811569005251, + -0.013743449933826923, + -0.021561194211244583, + -0.013574373908340931, + -0.002783712698146701, + -0.006948211695998907, + -0.007793590426445007, + 0.016537226736545563, + -0.007684899028390646, + -0.0017491297330707312, + -0.009927166625857353, + -0.0060424478724598885, + -0.0014834391186013818, + 0.012898070737719536, + -0.013614630326628685, + 0.004130281042307615, + -0.012414996512234211, + 0.01901700533926487, + 0.008622867055237293, + -0.011609873734414577, + -0.017068607732653618, + 0.00036708576953969896, + 0.008373279124498367, + 0.011030185036361217, + -0.004621406085789204, + 0.010933570563793182, + 0.0030997234862297773, + -0.004959557671099901, + 0.011811153963208199, + -0.005881423596292734, + 0.009516553953289986, + -0.004677764605730772, + 0.004154434893280268, + 0.00261664972640574, + 0.0008841257076710463, + 0.0030634929426014423, + -0.017793217673897743, + 0.0236384104937315, + 0.001154345110990107, + 0.019967051222920418, + -0.03204389661550522, + -0.003095697844401002, + -0.0012831648346036673, + 0.00799084547907114, + -0.012165408581495285, + -0.0003230556030757725, + -0.008719482459127903, + 0.002199998591095209, + 0.02201206237077713, + 0.005881423596292734, + 0.023139234632253647, + 0.022543443366885185, + 0.023090926930308342, + -0.008284715935587883, + 0.015893127769231796, + -0.02344518154859543, + 0.016343995928764343, + 0.0006345375441014767, + -0.009427990764379501, + 0.028130996972322464, + 0.001699815969914198, + -0.0034378753043711185, + 0.015893127769231796, + 0.01385616697371006, + 0.010700084269046783, + 0.014564675278961658, + -0.021206939592957497, + -0.00017788185505196452, + -0.01843731664121151, + 0.015160465613007545, + 0.005027993116527796, + -0.018711058422923088, + -0.020723866298794746, + 0.023203644901514053, + 0.01457272656261921, + 0.011263670399785042, + 0.00502396747469902, + 0.0021094223484396935, + 0.025892755016684532, + -0.00443622749298811, + 0.013083248399198055, + -0.0009394778753630817, + -0.0028863658662885427, + -0.004090024624019861, + 0.016746558248996735, + -0.02210867777466774, + 0.024765582755208015, + -0.005406401120126247, + 0.0016444637440145016, + -0.05571451038122177, + 0.008663123473525047, + -0.029274271801114082, + 0.02673008292913437, + -0.0009711796301417053, + 0.020723866298794746, + 0.010901365429162979, + 0.008437689393758774, + 0.008799994364380836, + -0.006501368246972561, + -0.013469708152115345, + -0.013252324424684048, + -0.006698623299598694, + 0.011448848992586136, + -0.014315087348222733, + -0.014846468344330788, + -0.00412021717056632, + -0.037132274359464645, + 0.004190665204077959, + -0.006799263879656792, + 0.012656533159315586, + -0.010297522880136967, + -0.026391932740807533, + 0.005003839265555143, + -0.014347291551530361, + 0.03125487640500069, + -0.010249216109514236, + 0.00473412312567234, + 0.009653424844145775, + -0.0003275844210293144, + 0.001735040103085339, + 0.024701174348592758, + 0.010989928618073463, + -0.003552605165168643, + 0.011231466196477413, + -0.005672091618180275, + -0.0010849032551050186, + 0.0046294573694467545, + -0.022672263905405998, + -0.026697877794504166, + 0.007644643075764179, + -0.002542175818234682, + 0.0017521489644423127, + -0.005027993116527796, + -0.003939064219594002, + -0.013598527759313583, + -0.0028300073463469744, + 0.037035658955574036, + -0.0033291836734861135, + 0.017503373324871063, + 0.0033956062979996204, + -0.01950007863342762, + 0.006843545474112034, + 0.006678495090454817, + -0.006255805492401123, + 0.030626878142356873, + -0.00047250656643882394, + -0.01505579985678196, + -0.007008595857769251, + 0.014951134100556374, + -0.00010649009345797822, + 0.0073709008283913136, + -0.004077948164194822, + -0.009363580495119095, + 0.011899718083441257, + 0.005269530229270458, + -0.007922410033643246, + 0.026858903467655182, + 0.013389195315539837, + -0.0014774006558582187, + -0.005366144701838493, + 0.00781774427741766, + 0.02286549285054207, + -0.013236221857368946, + 0.0011925884755328298, + 0.0019886537920683622, + 0.004311433527618647, + -0.013493861071765423, + -0.009919115342199802, + -0.015764309093356133, + 0.0188237763941288, + 0.020723866298794746, + 0.010780597105622292, + 0.004548944998532534, + -0.0027917639818042517, + 0.014113806188106537, + 0.028018280863761902, + -0.012898070737719536, + -0.021013710647821426, + 0.017310144379734993, + -0.004536868073046207, + -0.004979685880243778, + 0.0009017377742566168, + 0.011464951559901237, + -0.0060625760816037655, + -0.009508502669632435, + -0.02460455894470215, + -0.0046294573694467545, + -0.014983339235186577, + -0.0020299162715673447, + 0.003371452447026968, + 0.01660163700580597, + 0.011706488206982613, + -0.004011525306850672, + -0.0060625760816037655, + 0.006066601723432541, + 0.007161568850278854, + 0.014009140431880951, + -0.00859066192060709, + -0.008461842313408852, + 0.022527340799570084, + -0.022720571607351303, + -0.0036290918942540884, + 0.0060827042907476425, + -0.0014784070663154125, + -0.019661104306578636, + 0.010152600705623627, + -0.007741257548332214, + 0.02199595980346203, + 0.012334484606981277, + -0.010563213378190994, + 0.01192387193441391, + -0.004645559471100569, + -0.0064973426051437855, + 0.024459635838866234, + 0.013501912355422974, + -0.011175107210874557, + 0.023590104654431343, + 0.008808045648038387, + 0.02991837076842785, + 0.005664040334522724, + 0.00605855043977499, + -0.0023871897719800472, + -0.015361746773123741, + 0.010265318676829338, + 0.006191395688802004, + -0.0027756616473197937, + 0.004742174409329891, + 0.005547297652810812, + -0.008027076721191406, + 0.01602194830775261, + 0.007684899028390646, + -0.025409681722521782, + -0.010820853523910046, + -0.020723866298794746, + -0.0025945089291781187, + -0.03487792983651161, + 0.019387362524867058, + 0.016279587522149086, + -0.0006310151657089591, + 0.014226523227989674, + 0.012012435123324394, + 0.01652112416923046, + 0.020595045760273933, + -0.014081601053476334, + 0.0027716360054910183, + 0.016013896092772484, + 0.005293683614581823, + -0.019628899171948433, + -0.01776101253926754, + 0.007713078521192074, + -0.014363394118845463, + 0.005543272010982037, + 0.007777488324791193, + 0.0183245986700058, + 0.012455252930521965, + 0.017905935645103455, + -0.019677206873893738, + -0.023107029497623444, + -0.01505579985678196, + -0.00825251080095768, + 0.001271087909117341, + 0.014178215526044369, + 0.0173745546489954, + -0.015249029733240604, + -0.015554976649582386, + 0.001822597230784595, + -0.0068395198322832584, + 0.019628899171948433, + -0.005221222527325153, + -0.016843173652887344, + -0.0009887916967272758, + -0.02094930037856102, + -0.01017675455659628, + -0.004327536094933748, + 0.018115267157554626, + 0.012245920486748219, + -0.010345830582082272, + -0.0013596514472737908, + 0.006271908059716225, + 0.02616649679839611, + -0.010708135552704334, + -0.02444353513419628, + -0.000315759185468778, + 0.007016647141426802, + -0.00975809060037136, + 0.008477944880723953, + -0.004931378178298473, + 0.005394324194639921, + 0.010788648389279842, + -0.009911064058542252, + -0.019339054822921753, + 0.000595791032537818, + 0.03070739097893238, + -0.027197055518627167, + -0.0032587354071438313, + 0.007161568850278854, + 0.02521645277738571, + 0.018759366124868393, + 0.017261836677789688, + 0.0012982608750462532, + -0.01959669403731823, + -0.0031923127826303244, + 0.012728994712233543, + 0.013308683410286903, + -0.00932332407683134, + 0.01091746799647808, + 0.011191209778189659, + -0.002185908844694495, + 0.007793590426445007, + -0.007737231906503439, + -0.007173645775765181, + -0.01120731234550476, + 0.011859461665153503, + -0.005800911225378513, + 0.023412976413965225, + -0.022028164938092232, + 0.00656577805057168, + -0.012922223657369614, + 0.021963754668831825, + -0.01872716099023819, + 0.012664584442973137, + -0.014065498486161232, + -0.012012435123324394, + -0.0001549861772218719, + -0.006211523897945881, + -0.008019025437533855, + -0.024459635838866234, + 0.011271721683442593, + -0.00709313340485096, + 0.006360471714287996, + 0.0003026759368367493, + 0.028742890805006027, + -0.02297821082174778, + 0.0003756402002181858, + -0.015957538038492203, + 0.015619385987520218, + -0.001989660318940878, + -0.02135186269879341, + 0.006670443806797266, + 0.000494144216645509, + -0.0019272632198408246, + -0.005180966574698687, + -0.0019987178966403008, + -0.00812771636992693, + -0.020723866298794746, + -0.015297336503863335, + -0.00685562239959836, + -0.010104293935000896, + 0.018469521775841713, + 0.0030031087808310986, + 0.017310144379734993, + -0.00451673986390233, + -0.018292395398020744, + 0.02846914902329445, + 0.006215549539774656, + 0.009291118942201138, + 0.005273555405437946, + 0.007205850910395384, + -0.004862942732870579, + -0.02392825484275818, + -0.013783705420792103, + 0.007596335373818874, + 0.007338696159422398, + 0.059418078511953354, + -0.0005806949338875711, + 0.03455587849020958, + -0.0007276299293152988, + -0.003369439858943224, + -0.020804379135370255, + 0.0007477579638361931, + -0.018711058422923088, + -0.014790109358727932, + -0.00721792783588171, + -0.0007160562672652304, + -0.035006746649742126, + 0.009677578695118427, + 0.014709597453474998, + 0.001698809559457004, + 0.012487458065152168, + 0.004162485711276531, + 0.013534117490053177, + 0.01853393204510212, + 0.003961205016821623, + -0.013389195315539837, + 0.0008166966144926846, + -0.03183456510305405, + -0.006364497356116772, + 0.005221222527325153, + 0.014749852940440178, + -0.002491855761036277, + -0.02885560877621174, + -0.0019987178966403008, + -0.011738693341612816, + 7.604638085467741e-5, + -0.0024878301192075014, + -0.020128075033426285, + -0.015039697289466858, + -0.007427259813994169, + 0.01535369548946619, + 0.009138146415352821, + 0.014822314493358135, + 0.0049434551037848, + -0.015039697289466858, + -0.029081042855978012, + -0.010273369029164314, + 0.00437181768938899, + -0.0020892941392958164, + -0.008461842313408852, + 0.00040331631316803396, + -0.01515241526067257, + 0.008912711404263973, + -0.027969973161816597, + -0.011424695141613483, + -0.005011890549212694, + -0.01940346509218216, + 0.0021979857701808214, + -0.0003680921799968928, + 0.01652112416923046, + -0.005672091618180275, + 0.013550220057368279, + -0.000276006234344095, + -0.011376388370990753, + -0.010217010974884033, + -0.009049582295119762, + 0.009186453185975552, + 0.01625543273985386, + 0.0188398789614439, + -0.013493861071765423, + 0.0031701717525720596, + -0.004420125391334295, + -0.011593771167099476, + 0.018405111506581306, + -0.018211882561445236, + 0.009532656520605087, + -0.0011865500127896667, + -0.011585719883441925, + -0.016585534438490868, + -0.009951320476830006, + 0.010361933149397373, + -0.015546925365924835, + -0.0031641332898288965, + -0.02682669833302498, + -0.013477759435772896, + -0.01710081286728382, + 0.0008046198054216802, + 0.007322593592107296, + -0.0057405270636081696, + -0.007729180622845888, + -0.014838417060673237, + 0.006686546374112368, + 0.0013888371177017689, + 0.005044095683842897, + 0.019532283768057823, + -0.026021575555205345, + -0.025699526071548462, + 0.01211710087954998, + -0.00826056208461523, + 0.01399303786456585, + -0.026971619576215744, + -0.03001498617231846, + -0.007431285455822945, + 0.010498804040253162, + 0.005418477579951286, + 0.004963583312928677, + 0.010426342487335205, + -0.008421586826443672, + 0.016569431871175766, + 0.010208959691226482, + -0.028807301074266434, + 0.006195421330630779, + -0.018308496102690697, + -0.010458547621965408, + 0.002912532538175583, + -0.000994830159470439, + 0.005197069142013788, + -0.023493489250540733, + 0.026858903467655182, + 0.019258541986346245, + 0.008461842313408852, + 0.009911064058542252, + -0.008373279124498367, + 0.01948397606611252, + 0.014323137700557709, + -0.010941621847450733, + 0.019451770931482315, + 0.03436264768242836, + -0.005032018758356571, + -0.004130281042307615, + 0.0031862743198871613, + 0.002876301994547248, + 0.025361374020576477, + 0.0003210427821613848, + -0.0024314713664352894, + -0.0059579103253781796, + -0.008494047448039055, + 0.010949673131108284, + 0.008558457717299461, + -0.00220804987475276, + -0.006863673683255911, + 0.014073549769818783, + -0.01806695945560932, + 0.008566509000957012, + -0.02075607143342495, + -0.02481389045715332, + 0.026408033445477486, + 0.007230004295706749, + -0.006726802792400122, + -0.0043396130204200745, + -0.008920762687921524, + -0.018469521775841713, + 0.005072274710983038, + -0.007125338539481163, + 0.0038444623351097107, + -0.003842449514195323, + -0.023815538734197617, + -0.007129364181309938, + 0.00045992652303539217, + -0.012487458065152168, + 0.019564488902688026, + -0.0014693494886159897, + 0.003109787590801716, + -0.013670988380908966, + 0.013332837261259556, + -0.0031902999617159367, + 0.0015085992636159062, + -0.007097159046679735, + 0.01091746799647808, + 0.004987737163901329, + -0.0009686636039987206, + -0.004492586478590965, + 0.014532470144331455, + 0.01134418323636055, + -0.023107029497623444, + -0.0012650495627894998, + -0.02152898907661438, + -0.0008141806465573609, + 0.0057203988544642925, + 0.005040070042014122, + 0.0033311964944005013, + 0.00029009589343331754, + 0.0021456528920680285, + -0.005003839265555143, + 0.002461663680151105, + 0.01313155610114336, + 0.012423047795891762, + 0.018083062022924423, + 0.0020258906297385693, + 0.0013053056318312883, + 0.01621517725288868, + -0.00045237847371026874, + 0.008228356949985027, + 0.015579129569232464, + -0.0038766672369092703, + 0.00584116717800498, + 0.03545761853456497, + -0.021496783941984177, + 0.007801641710102558, + -0.024556251242756844, + 0.015434208326041698, + 0.003949128091335297, + -0.0003648213460110128, + -0.024846095591783524, + -0.00945214368402958, + 0.027535205706954002, + 0.014524418860673904, + -0.013767602853477001, + 0.01235863845795393 + ], + "2497c312-b311-4e27-9852-4dfef272acbc": [ + 0.002436327748000622, + -0.024505753070116043, + -0.016738813370466232, + 0.0385904535651207, + -0.051095712929964066, + 0.03793913871049881, + -0.0005805868422612548, + 0.010510606691241264, + -0.023447364568710327, + 0.040218744426965714, + 0.006908016745001078, + 0.01332754734903574, + 0.036701638251543045, + -0.018985852599143982, + -0.013522941619157791, + 0.023561345413327217, + -0.0320284478366375, + 0.010494323447346687, + -0.023805588483810425, + -0.028315948322415352, + 0.03995821624994278, + -0.0509980171918869, + -0.045331571251153946, + -0.014141691848635674, + -0.00626077177003026, + -0.012676231563091278, + -0.006696339230984449, + 0.0068998755887150764, + -0.04715525358915329, + 0.010502465069293976, + 0.007091199513524771, + 0.009468501433730125, + -0.002566590905189514, + 0.009948846884071827, + 0.005491405259817839, + -0.05347301810979843, + 0.01854621432721615, + 0.012643665075302124, + 0.018122859299182892, + -0.0006289266748353839, + -0.0348779559135437, + 0.00462027033790946, + 0.012016774155199528, + -0.004089041147381067, + -0.021867923438549042, + 0.010144241154193878, + -0.054026633501052856, + -0.002171730622649193, + -0.01691792532801628, + -0.04145624116063118, + 0.012399422004818916, + 0.04139111191034317, + -0.035952623933553696, + 0.008243214339017868, + 0.04409407079219818, + -0.05910689756274223, + 0.030041934922337532, + 0.07105854153633118, + 0.02354506216943264, + -0.04132597893476486, + -0.013775326311588287, + -0.03904637321829796, + 0.024147529155015945, + -0.012407563626766205, + 0.0014227177016437054, + -0.028022857382893562, + -0.031865619122982025, + -0.009623189456760883, + -0.0072947354055941105, + 0.01732499711215496, + -0.018383385613560677, + 0.013164717704057693, + -0.04109801724553108, + -0.028315948322415352, + -0.02856019139289856, + 0.0049744234420359135, + 0.054482556879520416, + 0.009956988506019115, + 0.02665509469807148, + -0.035952623933553696, + -0.005890336353331804, + 0.01007096841931343, + -0.016453862190246582, + 0.010950244963169098, + 0.03862302005290985, + -0.003008264349773526, + -0.018448516726493835, + -0.045624662190675735, + -0.013376395218074322, + -0.003836656454950571, + -0.01131660956889391, + 0.03569209948182106, + 0.001849125954322517, + 0.0177972000092268, + 0.0002663779305294156, + 0.012627382762730122, + 0.038134533911943436, + 0.01491512916982174, + -0.016494570299983025, + -0.02994423732161522, + -0.027241278439760208, + -0.004359744489192963, + -0.006036882288753986, + -0.009940705262124538, + 0.021753942593932152, + -0.0010451581329107285, + -0.013441527262330055, + 0.009794159792363644, + -0.003635155502706766, + 0.06171216070652008, + -0.01991397701203823, + -0.05666446313261986, + 0.03666907176375389, + -0.001080776914022863, + -0.038427624851465225, + -0.055068738758563995, + -0.03494308516383171, + -0.03943716362118721, + 0.004388239234685898, + -0.009737169370055199, + 0.03057927079498768, + 0.02676907368004322, + 0.014760441146790981, + 0.02025591768324375, + -0.027045883238315582, + 0.01439407654106617, + -0.003069325117394328, + 0.03010706789791584, + 0.018757890909910202, + 0.03891611099243164, + -0.034519731998443604, + 0.010917679406702518, + 0.04060953110456467, + -0.0249291080981493, + 0.010176807641983032, + 0.02429407462477684, + 0.016103779897093773, + 0.041879598051309586, + -0.021314306184649467, + 0.013311264105141163, + -0.01773206889629364, + -0.009232399985194206, + -0.018725326284766197, + 0.02901611290872097, + 0.026410849764943123, + 0.002660217462107539, + -0.0290649626404047, + 0.0764644593000412, + -0.012936757877469063, + 0.018350819125771523, + -0.045331571251153946, + 0.0011632090900093317, + 0.00024895014939829707, + -0.013881165534257889, + 0.037515781819820404, + 0.011422448791563511, + 0.00011423466639826074, + 0.03069325163960457, + -0.0027151722460985184, + 0.034682560712099075, + 0.05239834636449814, + -0.05291939899325371, + 0.0029594155494123697, + 0.020988646894693375, + 0.019148681312799454, + 0.014467349275946617, + 0.06125623732805252, + 0.006252630613744259, + -0.020125653594732285, + 0.02999308705329895, + -0.01514308899641037, + -0.03298914059996605, + 0.017764635384082794, + -0.02302400954067707, + 0.00422948133200407, + -0.016087496653199196, + 0.05474308133125305, + 0.024554600939154625, + 0.01528149377554655, + -0.0348779559135437, + -0.039632558822631836, + -0.02647598274052143, + 0.030774665996432304, + 0.009948846884071827, + 0.01848108135163784, + 0.059269726276397705, + 0.006248559802770615, + 0.003415336599573493, + -0.014646461233496666, + -0.01864391192793846, + 0.024342922493815422, + -0.012179602868855, + 0.015029109083116055, + -0.011373599991202354, + -0.014556905254721642, + -0.015631577000021935, + -0.011536428704857826, + -0.004783099517226219, + 0.010095393285155296, + 0.015134948305785656, + -0.02597121335566044, + -0.014459207653999329, + -0.03214242681860924, + 0.03725525736808777, + -0.016502710059285164, + 0.02958601526916027, + -0.003966919612139463, + -0.030302461236715317, + 0.0573483444750309, + -0.030351310968399048, + 0.047578610479831696, + -0.0320284478366375, + 0.0007474864833056927, + -0.00338277081027627, + 0.002405797364190221, + 0.02711101435124874, + 0.01968601532280445, + -0.003549670334905386, + -0.009419652633368969, + -0.017764635384082794, + 0.030139632523059845, + -0.008931166492402554, + -0.022356409579515457, + -0.023170555010437965, + -0.0445825569331646, + -0.005104686599224806, + -0.02758321911096573, + 0.046959858387708664, + -0.026345718652009964, + -0.010095393285155296, + 0.012057481333613396, + 0.010535030625760555, + 0.02211216650903225, + -0.026573680341243744, + -0.01194350142031908, + -0.005996175110340118, + 0.05256117507815361, + -0.017748352140188217, + 0.019327793270349503, + -0.018692759796977043, + -0.00993256364017725, + 0.02572696842253208, + -0.014263813383877277, + -0.0014837784692645073, + -0.0008009147713892162, + 0.04298683628439903, + -0.013807891868054867, + 0.05692499130964279, + -0.013563648797571659, + -0.001166262081824243, + 0.01073856744915247, + 0.018106576055288315, + -0.005772285163402557, + -0.004795311484485865, + -0.017194733023643494, + 0.024033548310399055, + 0.053277622908353806, + -0.018904438242316246, + -0.02856019139289856, + -0.027273843064904213, + 0.027013316750526428, + 0.02522219903767109, + 0.0019417348084971309, + -0.00761225214228034, + 0.033412493765354156, + -0.0035883423406630754, + 0.010893254540860653, + 0.01841595023870468, + -0.007245887070894241, + 0.04819735884666443, + -0.007661100476980209, + -0.012073764577507973, + -0.020125653594732285, + 0.0006660720682702959, + -0.023854436352849007, + -0.0033766645938158035, + -0.014646461233496666, + 0.019311510026454926, + 0.016673680394887924, + -0.00597175071015954, + 0.0031710932962596416, + 0.018057726323604584, + 0.016364306211471558, + 0.0018969569355249405, + 0.02947203442454338, + 0.006716692820191383, + -0.04298683628439903, + -0.034747689962387085, + -0.0551338717341423, + -0.017829766497015953, + 0.003761348081752658, + -0.004815665073692799, + -0.0008696081931702793, + 0.03644111007452011, + 0.010828123427927494, + -0.03305426985025406, + -0.00531229330226779, + 0.002996052149683237, + 0.015452464111149311, + -0.007486059330403805, + -0.011023517698049545, + -0.009175409562885761, + -0.024440620094537735, + -0.03357532247900963, + 0.007347655016928911, + -0.02545016072690487, + 0.03448716551065445, + 0.014491774141788483, + -0.04559209570288658, + -0.03147482872009277, + 0.03855788707733154, + 0.018611345440149307, + -0.015867678448557854, + 0.006981289945542812, + 0.00969646219164133, + 0.01007096841931343, + -0.02808798849582672, + -0.0019763358868658543, + -0.0044493000023067, + -0.03800426796078682, + -0.01025008037686348, + -0.03653880953788757, + -0.0498582161962986, + -0.010307070799171925, + 0.036180585622787476, + -0.041358545422554016, + 0.03396611288189888, + -0.014817431569099426, + -0.04005591571331024, + -0.0225029569119215, + -0.01160156074911356, + -0.003256578464061022, + -0.009688320569694042, + 0.0019946543034166098, + -0.04064209759235382, + -0.05015130713582039, + -0.034454599022865295, + -0.016665540635585785, + -0.028755586594343185, + -0.0198651272803545, + -0.05145393684506416, + -0.0014685132773593068, + 0.009786018170416355, + -0.02147713489830494, + -0.03199588134884834, + -0.028299666941165924, + 0.028006574138998985, + 0.024424336850643158, + 0.007188896648585796, + -0.019816279411315918, + 0.0010950245195999742, + -0.005377424880862236, + 0.05705525353550911, + -0.04663420096039772, + 0.04191216453909874, + 0.003067289711907506, + -0.0056338803842663765, + -0.008923024870455265, + 0.0022450038231909275, + -0.008963732048869133, + -0.00304490071721375, + -0.03735295310616493, + -0.01182952057570219, + -0.017259865999221802, + -0.032158710062503815, + 0.02027220092713833, + -0.03108404017984867, + -0.035268742591142654, + -0.02838108129799366, + 0.01318100094795227, + -0.03390097990632057, + 0.008051889948546886, + -0.010933961719274521, + -0.017894897609949112, + -0.01572113297879696, + -0.061679594218730927, + 0.05148650333285332, + -0.006285196170210838, + -0.006012457888573408, + 0.039339467883110046, + -0.001418647007085383, + 0.014540622010827065, + -0.00643174210563302, + 0.019604600965976715, + 0.06741116940975189, + 0.029553448781371117, + -0.027322692796587944, + -0.030139632523059845, + -0.027013316750526428, + -0.0039017880335450172, + -0.0219330545514822, + 0.020483877509832382, + -0.014117266982793808, + 0.009826725348830223, + -0.017129601910710335, + -0.015012825839221478, + 0.0012771893525496125, + 0.02124917320907116, + 0.026443416252732277, + -0.012773928232491016, + 0.0068998755887150764, + -0.017585523426532745, + -0.03432433679699898, + -0.01864391192793846, + -0.007954192347824574, + -0.010176807641983032, + 0.008776478469371796, + -0.016771377995610237, + 0.018871871754527092, + -0.0034010889939963818, + 0.022991443052887917, + 0.0014420535881072283, + 0.027550652623176575, + 0.02595493011176586, + 0.026638811454176903, + 0.01422310620546341, + 0.013058879412710667, + 0.04927203059196472, + -0.037385519593954086, + -0.043507885187864304, + 0.037157557904720306, + 0.034291770309209824, + 0.002912602387368679, + 0.006077589467167854, + 0.0026846418622881174, + 0.011837662197649479, + -0.008015253581106663, + -0.0033481696154922247, + -0.012733221054077148, + -0.017373844981193542, + 0.0014308590907603502, + 0.029569732025265694, + -0.007445352151989937, + -0.005462910048663616, + -0.0016211654292419553, + -0.004656907171010971, + 0.016266608610749245, + -0.015843253582715988, + -0.034226637333631516, + -0.009566199034452438, + 0.02624802105128765, + 0.039469730108976364, + 0.004241693299263716, + -0.007062704302370548, + -0.030237330123782158, + -0.012326149269938469, + -0.04490821436047554, + 0.021542266011238098, + 0.03875328227877617, + -0.04969538748264313, + -0.017113318666815758, + 0.031572528183460236, + -0.051095712929964066, + -0.00924054067581892, + 0.026638811454176903, + -0.042921703308820724, + 0.018350819125771523, + -0.018464799970388412, + 0.04595031961798668, + -0.037222690880298615, + 0.0019366464111953974, + 0.008849752135574818, + 0.018220555037260056, + -0.012562250718474388, + 0.044875651597976685, + -0.04559209570288658, + 0.003987273201346397, + 0.0390138104557991, + 0.005694941617548466, + 0.007595968898385763, + 0.0077465856447815895, + -0.020939799025654793, + -0.03758091479539871, + 0.030172199010849, + 0.029032396152615547, + 0.010396626777946949, + -0.01079555694013834, + -0.018057726323604584, + 0.02331710048019886, + -0.037971705198287964, + -0.03137713298201561, + 0.03137713298201561, + 0.011104932054877281, + 0.0170481875538826, + 0.01813914068043232, + -0.008072244003415108, + 0.0015061674639582634, + -0.02965114638209343, + 0.010689718648791313, + -0.01852993108332157, + 0.032093580812215805, + 0.02147713489830494, + 0.017194733023643494, + 0.021216608583927155, + 0.002135094255208969, + -0.06402432918548584, + 0.013726477511227131, + -0.018497364595532417, + -0.0028149050194770098, + -0.008153658360242844, + 0.02867417223751545, + -0.023349666967988014, + 0.008015253581106663, + -0.022616935893893242, + -0.020109372213482857, + 0.04249834641814232, + 0.0010217514354735613, + 0.021509699523448944, + 0.024782560765743256, + -0.03631084784865379, + -0.024033548310399055, + 0.004962211474776268, + -0.028299666941165924, + -0.009452219121158123, + 0.009061429649591446, + 0.005133181810379028, + -0.02198190428316593, + -0.007115623913705349, + 0.020451312884688377, + -0.0001480725477449596, + 0.0032321540638804436, + 0.00043276872020214796, + 0.00012148563837399706, + 0.026166606694459915, + -0.005035484209656715, + -0.007148189470171928, + 0.004371956456452608, + -0.029895389452576637, + 0.030937494710087776, + -0.00657828850671649, + -0.012383139692246914, + 0.002700924640521407, + -0.01693420670926571, + 0.02711101435124874, + 0.014817431569099426, + 0.01727614738047123, + -0.008613649755716324, + -0.013645063154399395, + 0.021900489926338196, + 0.022486673668026924, + -0.020076805725693703, + 0.022242430597543716, + -0.023626476526260376, + -0.002124917460605502, + -0.01841595023870468, + 0.00938708707690239, + 0.0011326787061989307, + 0.025482725352048874, + -0.012301724404096603, + 0.02504308708012104, + -0.03611545264720917, + 0.014174257405102253, + -0.011813238263130188, + -0.007901273667812347, + -0.002135094255208969, + -0.013001888990402222, + -0.0020241669844835997, + -0.0006508068181574345, + 0.003582236124202609, + -0.01831825263798237, + -0.019376641139388084, + -0.004376027267426252, + 0.008589225821197033, + 0.01686907559633255, + -0.031100323423743248, + 0.004494077991694212, + -0.005475122481584549, + -0.010730425827205181, + -0.01321356650441885, + 0.00386515143327415, + 0.019930260255932808, + -0.00519424257799983, + 0.011056083254516125, + 0.001314843539148569, + 0.006855097599327564, + 0.019718581810593605, + -0.00884161051362753, + -0.010982810519635677, + -0.010168666020035744, + -0.01321356650441885, + 0.04064209759235382, + -0.008336840197443962, + -0.010608304291963577, + -0.017536673694849014, + 0.008100738748908043, + 0.010005837306380272, + -0.023072857409715652, + -0.022991443052887917, + -0.022519240155816078, + 0.029146376997232437, + 0.008735771290957928, + 0.03390097990632057, + -0.017927464097738266, + 0.0014512126799672842, + 0.0029370265547186136, + 0.031051475554704666, + 0.008735771290957928, + 0.018090292811393738, + 0.012065622955560684, + 0.0032871088478714228, + 0.020467594265937805, + 0.03136084973812103, + -0.0010019066976383328, + -0.014239388518035412, + -0.031458545476198196, + 0.009720886126160622, + -0.01870904304087162, + 0.007144118659198284, + -0.0134985176846385, + 0.009566199034452438, + 0.024033548310399055, + -0.00820657704025507, + 0.041423678398132324, + -0.0009881679434329271, + 0.03592006117105484, + 0.008605508133769035, + -0.005833345931023359, + 0.0102175148203969, + 0.019897693768143654, + -0.03806940093636513, + 0.03653880953788757, + -0.018969569355249405, + 0.0824565663933754, + 0.0037369236815720797, + -0.005540254060178995, + 0.020874667912721634, + -0.04474538564682007, + -0.0056908708065748215, + -0.01572113297879696, + 0.00019106955733150244, + -0.0003030144434887916, + 0.0012364820577204227, + -0.002194119617342949, + -0.017341280356049538, + 0.027990290895104408, + 0.005861841142177582, + 0.006794036831706762, + 0.003443831577897072, + -0.016885358840227127, + 0.0340963751077652, + -0.0264271330088377, + 0.004713897127658129, + 0.0027294198516756296, + 0.029911672696471214, + -0.017145885154604912, + 0.023056574165821075, + 0.028169402852654457, + -0.008145516738295555, + 0.04428946599364281, + 0.028999829664826393, + -0.020565291866660118, + 0.009786018170416355, + 0.023072857409715652, + 0.01939292438328266, + 0.006452095694839954, + -0.011715540662407875, + -0.019767431542277336, + -0.005393708124756813, + 0.012358714826405048, + 0.0077628688886761665, + -0.010478041134774685, + -0.02147713489830494, + 0.0412282831966877, + 0.022600654512643814, + 0.025694403797388077, + 0.013889307156205177, + -0.016706246882677078, + 0.005308222956955433, + 0.020858384668827057, + 0.03176792338490486, + 0.007889061234891415, + -0.004302754066884518, + -0.0077872928231954575, + -0.0015611222479492426, + 0.005585032049566507, + -0.017292430624365807, + 0.016901642084121704, + 0.0032219772692769766, + 0.0001736417762003839, + -0.030937494710087776, + 0.003099855501204729, + -0.042856570333242416, + -0.013083303347229958, + 0.018855588510632515, + -0.000267650029854849, + -0.007506412919610739, + -1.1456859283498488e-5, + -0.006215993780642748, + -0.03074209950864315, + 0.011845803819596767, + -0.001092989114113152, + 0.018008878454566002, + -0.015411756932735443, + 0.034682560712099075, + -0.006789966020733118, + 0.004656907171010971, + -0.00769773731008172, + -0.028820717707276344, + 0.0064276717603206635, + 0.007074916735291481, + -0.01802516169846058, + -0.004555138759315014, + -0.010307070799171925, + 0.003107996890321374, + 0.0025055299047380686, + -0.0032443662639707327, + -0.018953286111354828, + -0.028397362679243088, + 0.0078035760670900345, + 0.014622037298977375, + -0.008161799982190132, + 0.0005877106450498104, + 0.0015621399506926537, + 0.021949337795376778, + 0.013172859326004982, + -0.004608058370649815, + -0.023072857409715652, + 0.011463155969977379, + -0.006114225834608078, + 0.03784143924713135, + -0.037515781819820404, + 0.024684863165020943, + -0.028706738725304604, + -0.03644111007452011, + -0.013058879412710667, + 0.029162658378481865, + -0.001763640670105815, + -0.018692759796977043, + 0.02976512536406517, + 0.0035578119568526745, + 0.0536358468234539, + -0.0045225732028484344, + 0.009891856461763382, + 0.00970460381358862, + -0.008629932999610901, + -0.03930690139532089, + -0.019311510026454926, + 0.026443416252732277, + 0.04520130902528763, + -0.0010644940193742514, + 0.02545016072690487, + 0.029569732025265694, + 0.011031659319996834, + -0.006130508612841368, + 0.02326825261116028, + -0.02561298944056034, + 0.031051475554704666, + 0.02595493011176586, + -0.015590868890285492, + 0.010608304291963577, + 0.018350819125771523, + -0.027029599994421005, + 0.02654111385345459, + 0.0023691607639193535, + 0.0011398023925721645, + -0.009020722471177578, + 0.010673435404896736, + 0.0006050111842341721, + 0.003413301194086671, + 0.03530130907893181, + -0.019018417224287987, + -2.362927443755325e-5, + -0.005727507174015045, + -0.009061429649591446, + -0.015200079418718815, + 0.03481282293796539, + -0.002206331817433238, + -0.023756738752126694, + 0.023984700441360474, + -0.00703827990218997, + 0.02372417412698269, + 0.013026313856244087, + 0.01841595023870468, + 0.009753452613949776, + -0.03575722873210907, + -0.03885098174214363, + -0.009492926299571991, + -0.025026803836226463, + -0.020988646894693375, + -0.013563648797571659, + -0.041716769337654114, + -0.02969999425113201, + 0.01252154354006052, + -0.004738321527838707, + 0.033542755991220474, + -0.010681577026844025, + 0.018692759796977043, + -0.023789305239915848, + -0.017520392313599586, + 0.004986635409295559, + 0.024440620094537735, + 0.0005241055623628199, + 0.011381741613149643, + 0.03839505836367607, + 0.03491051867604256, + -0.02631315402686596, + 0.01629103347659111, + 0.001311790430918336, + -0.03287515789270401, + -0.002837294014170766, + -0.022258713841438293, + -0.028169402852654457, + 0.019441772252321243, + 0.03067696839570999, + 0.0020557150710374117, + -0.03331479802727699, + -0.023463647812604904, + 0.03546413779258728, + -0.03222384303808212, + 0.018057726323604584, + -0.011520146392285824, + 0.010730425827205181, + 0.01918124593794346, + 0.03074209950864315, + -0.014955836348235607, + 0.0011265726061537862, + 0.01916496455669403, + -0.02297515980899334, + 0.037613481283187866, + 0.028641607612371445, + 0.0001228849432663992, + -0.0028067633975297213, + 0.004485936835408211, + 0.030530422925949097, + 0.025873515754938126, + -0.044126637279987335, + -0.009745310992002487, + -0.0073150889948010445, + -0.006977219134569168, + -0.014646461233496666, + -0.009346379898488522, + -0.03852532058954239, + -0.018171707168221474, + 0.015094241127371788, + 0.01745525933802128, + 0.012953040190041065, + -0.017406411468982697, + 0.012407563626766205, + -0.032728612422943115, + 0.03494308516383171, + -0.026264304295182228, + -0.05226808413863182, + -0.01979999616742134, + -0.020011674612760544, + -0.01791118085384369, + 0.010974668897688389, + 0.021151475608348846, + 0.013946296647191048, + 0.011479438282549381, + 0.04790426790714264, + 0.03741808608174324, + 0.016494570299983025, + 0.022519240155816078, + 0.013783467933535576, + -0.04178190231323242, + -0.003236224642023444, + 0.0007856495212763548, + 0.008654356934130192, + 0.0060898014344275, + 0.008401972241699696, + 0.013205424882471561, + 0.008353123441338539, + -0.034063808619976044, + -0.002837294014170766, + 0.011438731104135513, + -0.017243582755327225, + -0.00077191082527861, + 0.03390097990632057, + 0.015159372240304947, + 0.022535521537065506, + -0.014882562682032585, + 0.0008222860633395612, + -0.015704849734902382, + 0.00674925884231925, + 0.00304490071721375, + -0.01659226603806019, + 0.0013423209311440587, + -0.02717614732682705, + -0.017813483253121376, + 0.0040727583691477776, + -0.006720763631165028, + 0.0006396123208105564, + 0.0011621913872659206, + 0.0028454354032874107, + -0.02066298946738243, + -0.009411511942744255, + 0.01355550717562437, + -0.0007072880980558693, + -0.03176792338490486, + -0.0068795219995081425, + -0.03033502772450447, + 0.021086344495415688, + -0.002257215790450573, + -0.04103288799524307, + -0.01246455404907465, + 0.007034209091216326, + -0.026003777980804443, + -0.008719488978385925, + 0.0015885996399447322, + 0.02377302199602127, + -0.007477918174117804, + -0.033298514783382416, + -0.0035435643512755632, + 0.013449668884277344, + 0.018904438242316246, + -0.026573680341243744, + -0.00453478517010808, + -0.008678781799972057, + 0.056338805705308914, + 0.009712745435535908, + 0.016999339684844017, + 0.01843223348259926, + 0.006366610527038574, + -0.021802792325615883, + 0.03481282293796539, + 0.0256781205534935, + 0.005979891866445541, + -0.04415920376777649, + -0.0013921872014179826, + 0.009737169370055199, + 0.008169940672814846, + 0.01010353397578001, + 0.009020722471177578, + 0.016852792352437973, + -0.022991443052887917, + 0.00901258084923029, + -0.022486673668026924, + 0.009330096654593945, + 0.011984208598732948, + -0.001553998445160687, + 0.006317762192338705, + 0.001083830022253096, + 0.029211508110165596, + -0.0030102995224297047, + 0.012993747368454933, + -0.0036310849245637655, + -0.011796955019235611, + -0.020516443997621536, + -0.005890336353331804, + 0.023349666967988014, + -0.005495476070791483, + 0.007144118659198284, + 0.02930920571088791, + -0.011935359798371792, + -0.00803153682500124, + -0.01073856744915247, + -0.007042350713163614, + 0.0047098263166844845, + 0.012659948319196701, + -0.016453862190246582, + 0.0033766645938158035, + 0.012204027734696865, + -0.007595968898385763, + 0.0056501636281609535, + 0.008581084199249744, + -0.0020964222494512796, + -0.022014468908309937, + 0.004921503830701113, + -0.010860688984394073, + 0.02291002869606018, + 0.003938424400985241, + 0.012374998070299625, + -0.0204350296407938, + 0.011609701439738274, + -0.04549439996480942, + 0.008239143528044224, + -0.0009500049636699259, + 0.005812992341816425, + -0.032272692769765854, + 0.002593050478026271, + -0.012733221054077148, + -0.00422948133200407, + -0.008743912912905216, + 0.02440805546939373, + -0.036701638251543045, + -0.02090723253786564, + -0.021151475608348846, + -0.006586429663002491, + -0.027013316750526428, + 0.022519240155816078, + 0.017699504271149635, + -0.010445475578308105, + 0.0005551448557525873, + -0.03303798660635948, + -0.005601314827799797, + 0.0114305904135108, + 0.018106576055288315, + 0.020793253555893898, + -0.003924177028238773, + 0.002332524163648486, + 0.00683474401012063, + -0.030204763635993004, + -0.0015499277506023645, + -0.0008436573552899063, + 0.01439407654106617, + 0.016649257391691208, + -0.028999829664826393, + -0.012155178934335709, + -0.012684373185038567, + -0.017536673694849014, + 0.0006864256574772298, + 0.005731577984988689, + -0.043898675590753555, + 0.03180048614740372, + 0.010640869848430157, + 0.008027466014027596, + 0.00720925023779273, + 0.004660977981984615, + -0.025010522454977036, + 0.035724665969610214, + 0.004070722963660955, + -0.011984208598732948, + 0.0010283663868904114, + -0.007921626791357994, + -0.011503863148391247, + 0.013604355975985527, + 0.035431571304798126, + -0.007074916735291481, + 0.004750533495098352, + 0.025140784680843353, + 0.018627628684043884, + -0.023512495681643486, + 0.004986635409295559, + -0.02509193681180477, + -0.000249586213612929, + 0.006415459327399731, + 0.02313798852264881, + 0.009745310992002487, + 0.004172490909695625, + -0.007530837319791317, + -0.014670885168015957, + 0.007135977502912283, + 0.024196377024054527, + 0.019962824881076813, + 0.01318100094795227, + -0.019734865054488182, + -0.01755295693874359, + -0.08590853959321976, + -0.02004423923790455, + -0.007929768413305283, + -0.010022119618952274, + 0.005829275120049715, + -0.015102381817996502, + 0.02401726506650448, + 0.014662744477391243, + -0.02769719809293747, + 0.006313691381365061, + 0.025189634412527084, + 0.007722161244601011, + -0.015623434446752071, + 0.021395720541477203, + 0.0024933177046477795, + -0.017227299511432648, + -0.02066298946738243, + -0.0015193973667919636, + -0.0012466588523238897, + -0.024945389479398727, + -0.021574832499027252, + 0.004840089473873377, + 0.020125653594732285, + 0.0027762330137193203, + -0.024961672723293304, + -0.01001397892832756, + -0.0019814244005829096, + 0.005047696642577648, + -0.008027466014027596, + -0.015753697603940964, + 0.029455751180648804, + 0.017943747341632843, + 0.0010482111247256398, + -0.02411496266722679, + -0.015607152134180069, + 0.03240295499563217, + 0.009517350234091282, + 0.0027782684192061424, + 0.02631315402686596, + 0.02463601529598236, + 0.0005202892934903502, + -0.0009520403109490871, + 0.007099340669810772, + -0.014320803806185722, + 0.0040747937746346, + 0.0007230621413327754, + 0.020939799025654793, + -0.0442243330180645, + 0.0011988278711214662, + -0.0033440988045185804, + 0.012928616255521774, + -0.009940705262124538, + 0.005580961238592863, + -0.012480836361646652, + 0.010819981805980206, + 0.0028841071762144566, + 0.002867824397981167, + -0.010771133005619049, + 0.0070464215241372585, + 0.009802300482988358, + 0.06916972249746323, + 0.007880919612944126, + -0.004685401916503906, + -0.009028863161802292, + -0.03150739520788193, + 0.0008731700945645571, + 0.026036344468593597, + 0.0077669392339885235, + 0.005112828221172094, + 0.0061223674565553665, + 0.002584909088909626, + 0.0012904191389679909, + -0.006199711002409458, + 0.02077697031199932, + -0.0044045220129191875, + 0.016771377995610237, + 0.028885850682854652, + 0.01605493202805519, + -0.00794605165719986, + -0.009777876548469067, + -0.029146376997232437, + 0.0024872117210179567, + 0.013742760755121708, + 0.020516443997621536, + -0.027436673641204834, + -0.02763206698000431, + -0.03676677122712135, + -0.009330096654593945, + -0.020825818181037903, + -0.0024302215315401554, + 0.0228611808270216, + 0.014825573191046715, + 0.015240786597132683, + 0.019099831581115723, + -0.03230525925755501, + 0.040902625769376755, + -0.011129356920719147, + 0.020402463153004646, + -0.014890704303979874, + 0.0032769320532679558, + -0.018969569355249405, + -0.005658304784446955, + 0.0071074822917580605, + -0.02930920571088791, + -0.003624978708103299, + -0.0011927217710763216, + 0.029292922466993332, + 0.0015814758371561766, + -0.00531229330226779, + -0.02401726506650448, + -0.010461757890880108, + 0.023707890883088112, + -0.004266117699444294, + 0.008914883248507977, + -0.00987557414919138, + 0.002094387076795101, + -0.020109372213482857, + -0.011096790432929993, + -0.004758675117045641, + -0.023121707141399384, + 0.00011607920896494761, + 0.01818799041211605, + -0.03170279040932655, + 0.001533644855953753, + 0.022063318639993668, + 0.007652959320694208, + 0.009810442104935646, + -0.006411388516426086, + 0.0085240937769413, + 0.0025808382779359818, + -0.011389883235096931, + -0.038720715790987015, + -0.005939184688031673, + 0.006932441145181656, + -0.009908139705657959, + 0.01027450431138277, + 0.025238482281565666, + -0.007600039709359407, + 0.015248928219079971, + -0.03285887464880943, + 0.011853945441544056, + 0.017292430624365807, + -0.004575492814183235, + 0.008129233494400978, + -0.0348779559135437, + 0.0054059200920164585, + -0.01830197125673294, + -0.014100984670221806, + -0.0005358089110814035, + -0.018806740641593933, + -0.0014583364827558398, + -0.000783105322625488, + 0.007868707180023193, + -0.0012374997604638338, + 0.0010553349275141954, + -0.02756693586707115, + 0.0009952917462214828, + -0.006623066030442715, + 0.008890459313988686, + 0.004209127742797136, + -0.006891733966767788, + -0.00903700478374958, + 0.002155447844415903, + 0.0007739462307654321, + 0.017080754041671753, + -0.008011182770133018, + 0.021314306184649467, + -0.0030632191337645054, + -0.01652713492512703, + -0.004742392338812351, + 0.006386964116245508, + 0.00866249855607748, + -0.001890850835479796, + 0.0005113845691084862, + -0.0016537312185391784, + -0.02499423921108246, + -0.008182153105735779, + -0.009435935877263546, + 0.02297515980899334, + 0.002133058849722147, + 0.0015845289453864098, + 0.02947203442454338, + 0.013954438269138336, + 0.012912333011627197, + 0.0028413645923137665, + 0.00872762966901064, + -0.012301724404096603, + -0.017373844981193542, + -0.01825312152504921, + 0.026508547365665436, + 0.01859506219625473, + 0.0023203121963888407, + -0.03592006117105484, + -0.00745756458491087, + 0.007828000001609325, + -0.0009754470083862543, + 0.008548518642783165, + 0.015908384695649147, + -0.010136100463569164, + -0.002908531576395035, + 0.0051413229666650295, + -0.011788813397288322, + 0.013987003825604916, + 0.004076829180121422, + -0.002171730622649193, + -0.010038402862846851, + -0.05181216076016426, + 0.03605032339692116, + 0.015354767441749573, + -0.014491774141788483, + 0.00269074784591794, + -0.015639716759324074, + 0.009720886126160622, + -0.02090723253786564, + 0.014581329189240932, + 0.002656146651133895, + 0.017634371295571327, + -0.016193335875868797, + 0.006639349274337292, + -0.029097527265548706, + 0.029406903311610222, + -0.012073764577507973, + 0.029781408607959747, + -0.008988155983388424, + 0.03149111196398735, + 0.004958140663802624, + 0.008304274640977383, + -0.05002104490995407, + -0.020597858354449272, + 0.014605754055082798, + -0.000845183851197362, + -0.005377424880862236, + -0.028983548283576965, + -0.006965007167309523, + -0.006647490430623293, + -0.004003555979579687, + 0.04223782196640968, + -0.0015712990425527096, + 0.021053779870271683, + 0.008686922490596771, + -0.00754304975271225, + -0.006973148323595524, + 0.0010181895922869444, + -0.002529954304918647, + 0.028462495654821396, + -0.008752054534852505, + 0.003977096173912287, + -0.01229358371347189, + 0.002922779181972146, + -0.013425244018435478, + 0.010933961719274521, + 0.00014947185991331935, + -0.014491774141788483, + -0.0024302215315401554, + 0.020467594265937805, + -0.01453248132020235, + 0.04624341428279877, + -0.005865911953151226, + 0.012562250718474388, + 0.006602712441235781, + -0.0004340408486314118, + 0.008792761713266373, + 0.004437088035047054, + -0.007013855502009392, + 0.024326641112565994, + -0.010722284205257893, + -0.0032911794260144234, + 0.024147529155015945, + 0.021607397124171257, + -0.01010353397578001, + 0.010925820097327232, + 0.02291002869606018, + -0.002092351671308279, + 0.011129356920719147, + -0.008450821042060852, + -0.00814144592732191, + 0.000551074102986604, + -0.012716938741505146, + -0.014304520562291145, + -0.0033054270315915346, + -0.028104271739721298, + -0.014100984670221806, + -0.01634802296757698, + 0.017064470797777176, + 0.011153780855238438, + 0.005369283724576235, + -0.020076805725693703, + -0.0047464631497859955, + 0.023121707141399384, + 0.008670640178024769, + 0.02435920573771, + 0.027534369379281998, + 0.023284535855054855, + 0.010746709071099758, + -0.009126560762524605, + 0.015981657430529594, + -0.004060545936226845, + 0.005694941617548466, + 0.03210986405611038, + -0.0010797592112794518, + 0.00932195596396923, + -0.0028169401921331882, + -0.02913009375333786, + 0.004579563159495592, + 0.005992104299366474, + -0.0001998470543185249, + 0.021428285166621208, + 0.0009576375596225262, + -0.014027711004018784, + 0.0009774822974577546, + 0.012920474633574486, + 0.0068225315771996975, + -0.015867678448557854, + -0.021151475608348846, + -0.012252876535058022, + 0.02338223345577717, + 0.014434783719480038, + -0.010339636355638504, + -0.0019407172221690416, + -0.03292400762438774, + 0.0047668167389929295, + 0.01916496455669403, + 0.003034723922610283, + 0.0022307562176138163, + -0.03927433490753174, + -0.03114917129278183, + 0.004836018662899733, + 0.0011906864820048213, + -0.002228720812126994, + -0.016168911010026932, + -0.024766279384493828, + 0.012456412427127361, + -0.02038617990911007, + -0.011308467946946621, + -0.006932441145181656, + -0.0037959490437060595, + -0.010575737804174423, + 0.005357071291655302, + -0.0006223117816261947, + -0.0007408715900965035, + 0.022665785625576973, + 0.022128449752926826, + 0.01007096841931343, + -0.012928616255521774, + 0.006562005262821913, + 0.02613404206931591, + 0.00521052535623312, + 0.04702499136328697, + 0.01791118085384369, + -0.0025279188994318247, + -0.00531229330226779, + -0.010665293782949448, + 0.013612497597932816, + 0.010868830606341362, + -0.019018417224287987, + 0.01577812246978283, + 0.004084970336407423, + 0.010787416249513626, + -0.019490621984004974, + -0.02585723251104355, + -0.011528287082910538, + 0.0037572772707790136, + -0.00226739258505404, + 0.02020706795156002, + -0.01027450431138277, + -0.011927218176424503, + -0.01007911004126072, + -0.019099831581115723, + 0.002102528465911746, + -0.012920474633574486, + 0.012456412427127361, + -0.023398514837026596, + -0.0166899636387825, + 0.0008365335525013506, + 0.0011866157874464989, + -0.011227053590118885, + -0.010038402862846851, + 0.016608549281954765, + 0.014874421991407871, + -0.014141691848635674, + 0.014874421991407871, + -0.0018664264352992177, + -0.033135686069726944, + -0.021835358813405037, + -0.020874667912721634, + 0.008882317692041397, + -0.027843745425343513, + 0.019848845899105072, + 4.503237141761929e-5, + -0.011780672706663609, + -0.01755295693874359, + -0.005043625831604004, + -0.002206331817433238, + 0.006659702863544226, + 0.01490698754787445, + 0.015542020089924335, + -0.013954438269138336, + 0.005076191388070583, + -0.04770887270569801, + -0.00527972774580121, + -0.012537826783955097, + 0.016405014321208, + -0.012944898568093777, + 0.047187820076942444, + -0.009810442104935646, + -0.0002612895332276821, + 0.024896541610360146, + 0.01617705263197422, + 0.014141691848635674, + -0.019604600965976715, + -0.009362663142383099, + 0.0032708258368074894, + -0.0035232107620686293, + -0.014605754055082798, + -0.013237991370260715, + 0.013954438269138336, + -0.01830197125673294, + -0.0015682460507377982, + 0.009948846884071827, + -0.011308467946946621, + -0.0038631160277873278, + 0.006598642095923424, + -0.01848108135163784, + -0.02658996172249317, + -0.034063808619976044, + 0.00803560670465231, + -0.03396611288189888, + 0.00443301722407341, + -0.008401972241699696, + -0.019425490871071815, + -0.0023569485638290644, + -0.004551068414002657, + 0.014622037298977375, + 0.010298929177224636, + 0.007701807655394077, + -0.006325903348624706, + 0.010095393285155296, + 0.008023395203053951, + 0.008072244003415108, + -0.023512495681643486, + -0.006773682776838541, + -0.02515706792473793, + 0.003975060768425465, + -0.0068225315771996975, + -0.009549915790557861, + -0.010225656442344189, + 0.018790457397699356, + -0.018611345440149307, + 0.02111891098320484, + 0.03676677122712135, + 0.006439883727580309, + -0.015623434446752071, + 0.0006823549629189074, + 0.005438485648483038, + -0.008874176070094109, + -0.014231247827410698, + 0.006875451188534498, + 0.02756693586707115, + -0.0068998755887150764, + 0.02136315405368805, + 0.0005978874396532774, + 0.010290787555277348, + 0.008939307183027267, + 0.012130754068493843, + -0.002794551197439432, + 0.01945805549621582, + 0.04152137413620949, + -0.01056759711354971, + -0.004551068414002657, + -0.02234012819826603, + 0.03546413779258728, + -0.005324505735188723, + -0.013889307156205177, + 0.011422448791563511, + 0.0063503277488052845, + -0.023756738752126694, + -0.020858384668827057, + 0.013067021034657955, + 0.012456412427127361, + 0.0068998755887150764, + 0.011910934932529926, + -0.011495721526443958, + 0.002784374402835965, + 0.02102121338248253, + 0.012244734913110733, + -0.019425490871071815, + 0.010315212421119213, + -0.01286348421126604, + 0.004498148802667856, + 0.011577135883271694, + -0.02654111385345459, + 0.012212168425321579, + 0.012090046890079975, + -0.004025944974273443, + -0.0073313722386956215, + -0.01796003058552742, + -0.01090953778475523, + -0.006195640191435814, + -0.020174503326416016, + 0.00037272556801326573, + -0.0035028571728616953, + -0.033705584704875946, + -0.027941443026065826, + -0.006496873684227467, + 0.00036814602208323777, + -0.017064470797777176, + -0.011902794241905212, + 0.010526889935135841, + 0.015810687094926834, + -0.004282400477677584, + -0.00521052535623312, + -0.0054466272704303265, + 0.0063299741595983505, + 0.0016089532291516662, + -0.022942595183849335, + -0.010119817219674587, + -0.0038203734438866377, + 0.0036717921029776335, + -0.026052627712488174, + 0.0008685904904268682, + 0.0026215456891804934, + -0.012309866026043892, + -0.005263444967567921, + -0.018236838281154633, + -0.005845558363944292, + 0.012700655497610569, + 0.00845896266400814, + -0.0006691250600852072, + -0.0032382600475102663, + -0.008923024870455265, + 0.006354398559778929, + 0.007306947838515043, + 0.002523848321288824, + 0.015240786597132683, + -0.009370803833007812, + -0.0004452353168744594, + 7.206451846286654e-5, + 0.0013046667445451021, + -0.007164472248405218, + -0.012391280382871628, + -0.010649011470377445, + -0.002709066029638052, + -0.02660624496638775, + -0.007897202856838703, + 0.005234949756413698, + 0.10154011100530624, + -0.012220310047268867, + 0.0015193973667919636, + 0.0010736532276496291, + 0.00106144102755934, + -0.02908124402165413, + 0.0036168373189866543, + 0.026687659323215485, + 0.019083548337221146, + 0.010819981805980206, + -0.00788499042391777, + -0.0324518047273159, + 0.004494077991694212, + 0.011259620077908039, + -0.014963977970182896, + 0.006753329187631607, + 0.017699504271149635, + 0.03507334738969803, + 0.014402218163013458, + 0.002709066029638052, + 0.002629687078297138, + 0.018692759796977043, + -0.01641315408051014, + 0.015501312911510468, + -0.008243214339017868, + 0.017129601910710335, + -0.00045846516150049865, + 0.001376922009512782, + 0.005597244016826153, + 0.019213812425732613, + 0.01514308899641037, + -0.007811717223376036, + 0.0035150693729519844, + -0.013596214354038239, + 0.009020722471177578, + 0.010087251663208008, + 0.0018613380379974842, + -0.008735771290957928, + 0.006912087555974722, + 0.015029109083116055, + 0.00588626554235816, + -0.00512504018843174, + 0.024912824854254723, + -0.01745525933802128, + -0.0019732830114662647, + 0.004109394736588001, + -0.007718090899288654, + 0.0031466688960790634, + 0.004266117699444294, + -0.009541774168610573, + 0.004498148802667856, + -0.007258099038153887, + 0.01680394448339939, + 0.012309866026043892, + 0.0027233136352151632, + -0.011593419127166271, + 0.007453493773937225, + -0.017080754041671753, + 0.004172490909695625, + 0.004339390899986029, + -0.015688566491007805, + 0.0006034846883267164, + -0.009916281327605247, + -0.034454599022865295, + 0.0036432971246540546, + 0.0088986000046134, + -0.009663896635174751, + -0.002175801433622837, + -0.0013372325338423252, + 0.012953040190041065, + -0.013229849748313427, + 0.007994899526238441, + -0.013278698548674583, + -0.009574340656399727, + -0.008279850706458092, + 0.032207559794187546, + -0.015444322489202023, + -0.01647014543414116, + 0.00794605165719986, + -0.004359744489192963, + 0.006423600949347019, + 0.009549915790557861, + 0.005361142102628946, + -0.013343829661607742, + 0.010095393285155296, + -0.003057112917304039, + 0.027615783736109734, + 0.006627136841416359, + -0.005865911953151226, + -0.010510606691241264, + -0.025352463126182556, + -0.0008629932417534292, + -0.008638073690235615, + -0.004123642574995756, + -0.005861841142177582, + -0.005259374156594276, + -0.023642759770154953, + -0.011349176056683064, + 0.012261017225682735, + -0.010404767468571663, + 0.0006940582534298301, + 0.006435812916606665, + 0.022356409579515457, + 0.008597366511821747, + 0.013995145447552204, + -0.008515952154994011, + 0.011267760768532753, + 0.00970460381358862, + -0.013579932041466236, + -0.0019458056194707751, + 0.0022551806177943945, + -0.007636676076799631, + -0.01407655980437994, + 0.006150862202048302, + -0.0069894311018288136, + 0.006960936356335878, + 0.007160401903092861, + -0.0296022966504097, + -0.0290649626404047, + -0.014035852625966072, + -0.0016221831319853663, + 0.015379191376268864, + 0.014491774141788483, + -0.012830918654799461, + -0.004986635409295559, + -0.017129601910710335, + -0.015875820070505142, + -0.01042105071246624, + -0.005251232534646988, + 0.02377302199602127, + 0.014996543526649475, + 0.02107006125152111, + 0.01401957031339407, + 0.01497211866080761, + 0.011577135883271694, + 0.0032932148315012455, + -0.0005393708124756813, + -0.002039432292804122, + 0.01601422391831875, + 0.001092989114113152, + 0.014271955005824566, + -0.0009393193176947534, + -0.0033278160262852907, + 0.014157974161207676, + 0.013067021034657955, + 0.006378822959959507, + 0.011609701439738274, + 0.0010120834922417998, + 0.018041444942355156, + 0.007400574162602425, + 0.04582005739212036, + -0.02452203445136547, + 0.01493955310434103, + 2.300912638020236e-5, + 0.00581706315279007, + 0.01778091862797737, + -0.01841595023870468, + 0.02429407462477684, + 0.005186100956052542, + -0.019620884209871292, + -0.006134579423815012, + -0.014149833470582962, + -0.02124917320907116, + -0.026101475581526756, + -0.004376027267426252, + 0.030709534883499146, + 0.012537826783955097, + 0.011414307169616222, + 0.009484784677624702, + 5.231515024206601e-5, + -0.01248897798359394, + 0.006586429663002491, + 0.0001582493569003418, + -0.031230585649609566, + 0.0032077296636998653, + 0.003500821767374873, + 0.014744158834218979, + 0.006171215791255236, + -0.014524339698255062, + 0.013783467933535576, + -0.0037755954544991255, + -0.001764658372849226, + 0.0033115330152213573, + -0.028022857382893562, + 0.000625364831648767, + -0.006415459327399731, + 0.012700655497610569, + 0.006167145445942879, + 0.005019201431423426, + -0.004836018662899733, + -0.006505015306174755, + 0.011438731104135513, + -0.02338223345577717, + -0.01211447175592184, + -0.010201231576502323, + 0.009859290905296803, + 0.019132398068904877, + 0.021786509081721306, + 0.0028617181815207005, + 0.007640746887773275, + -0.017308713868260384, + 0.018106576055288315, + 0.019832562655210495, + -0.0002457698865327984, + -0.01831825263798237, + -0.003938424400985241, + -0.0018603203352540731, + -0.017194733023643494, + -0.00938708707690239, + 0.005491405259817839, + -0.027843745425343513, + -0.011862087063491344, + 0.01263552438467741, + 0.005063979420810938, + -0.02930920571088791, + 0.01900213398039341, + 0.0004083444073330611, + -0.0037104638759046793, + 0.004880796652287245, + 0.006667844019830227, + 0.02245410718023777, + 0.027599502354860306, + 0.01599794067442417, + -0.011723682284355164, + -0.003846833249554038, + 0.015297777019441128, + 0.005357071291655302, + 0.0024098679423332214, + 0.0324518047273159, + 0.022714633494615555, + 0.02597121335566044, + -0.0019905834924429655, + -0.0035679887514561415, + 0.010632728226482868, + 0.00352728134021163, + 0.016372447833418846, + 0.03303798660635948, + -0.006488732527941465, + 0.020418746396899223, + -0.017992595210671425, + -0.001062458730302751, + 0.009077711962163448, + -0.006313691381365061, + 0.007103411480784416, + 0.0037226760759949684, + -0.004583633970469236, + -0.004546997603029013, + 0.0017178450943902135, + 0.012391280382871628, + -3.657290289993398e-5, + 0.005287868902087212, + -0.02113519422709942, + -0.016673680394887924, + 0.011096790432929993, + 0.0177972000092268, + 0.01612006314098835, + 0.014499914832413197, + 0.01571299135684967, + 0.00811702199280262, + -0.0030611837282776833, + -0.012545968405902386, + -0.0007581721292808652, + -0.003101890906691551, + -0.02729012630879879, + 0.014963977970182896, + 0.014516198076307774, + 0.003036759328097105, + -0.006997572723776102, + 0.0014318767935037613, + -0.0014379828935489058, + 0.005495476070791483, + 0.015191937796771526, + -0.003942495211958885, + -0.003417372005060315, + -0.017829766497015953, + -0.008353123441338539, + 0.02163996361196041, + -0.008015253581106663, + 0.003384806215763092, + 0.004836018662899733, + -0.006940582767128944, + -0.0072540282271802425, + -0.007119694259017706, + -0.016771377995610237, + 0.013018172234296799, + -0.018041444942355156, + -0.004770887084305286, + 0.008621791377663612, + -0.0222912784665823, + 0.02147713489830494, + 0.006529439706355333, + -0.021379437297582626, + -0.005556536838412285, + -0.0036290495190769434, + 0.00011830538278445601, + 0.0061060842126607895, + -0.008434537798166275, + 0.004836018662899733, + 0.029341770336031914, + -0.01353108324110508, + 0.004811594728380442, + 0.016103779897093773, + -0.0014430712908506393, + -0.014255671761929989, + 0.01514308899641037, + 0.0019804066978394985, + 0.022844897583127022, + -0.0047098263166844845, + 0.013571790419518948, + 0.015061674639582634, + 0.013995145447552204, + 0.004119571764022112, + 0.0018094363622367382, + -0.01010353397578001, + -0.004616199992597103, + 0.001014118897728622, + 0.005414061713963747, + 0.015981657430529594, + -0.007404644973576069, + 0.005137252155691385, + -0.014003287069499493, + 0.009175409562885761, + -0.0320284478366375, + 0.007494200952351093, + 0.003193482058122754, + 0.03507334738969803, + 0.0191161148250103, + 0.026638811454176903, + 0.00175549928098917, + 0.007404644973576069, + 0.0035557765513658524, + 0.012480836361646652, + -0.023333383724093437, + -0.001902045332826674, + -0.02188420668244362, + 0.014149833470582962, + 0.013547365553677082, + -0.0020038133952766657, + -0.02111891098320484, + -0.013514799997210503, + -0.00828799232840538, + 0.001081794616766274, + 0.007905343547463417, + -0.009077711962163448, + 0.01428009569644928, + 0.027094731107354164, + 0.02711101435124874, + -0.03170279040932655, + -0.0016354129184037447, + 0.03592006117105484, + 0.015322200953960419, + -0.020744403824210167, + 0.0018002772703766823, + -0.02113519422709942, + -0.014784866012632847, + -0.009598764590919018, + -0.01214703731238842, + 0.013571790419518948, + -0.019604600965976715, + -0.003814267460256815, + -0.0037023224867880344, + 0.015737414360046387, + 0.0034499377943575382, + 0.0014990437775850296, + 0.018204273656010628, + 0.0028922485653311014, + 0.026052627712488174, + 0.006301478948444128, + -0.019995391368865967, + 0.017129601910710335, + -0.003077466506510973, + -0.010380343534052372, + -0.023447364568710327, + -0.01617705263197422, + 0.0006706516142003238, + -0.000688461004756391, + -0.011959783732891083, + 0.007290664594620466, + 0.0009729028097353876, + -0.004762745928019285, + 0.010355919599533081, + -0.0011011305032297969, + -0.006118296645581722, + -0.0007083058007992804, + 0.009663896635174751, + -0.0030937495175749063, + -0.0005739719490520656, + 0.013343829661607742, + -0.014540622010827065, + 0.004068687558174133, + -0.009102136828005314, + 0.007530837319791317, + 0.015403615310788155, + -0.004905221052467823, + -0.0005057873204350471, + -0.006150862202048302, + -0.0158351119607687, + -0.00462027033790946, + -0.005271586123853922, + -0.012285442091524601, + -0.008752054534852505, + -0.01848108135163784, + 0.015200079418718815, + -0.016323599964380264, + 0.0014237354043871164, + -0.034682560712099075, + -0.0023182767909020185, + 0.0013463916257023811, + 0.011617843061685562, + -0.020597858354449272, + 0.0102175148203969, + 0.002161553828045726, + -0.004652836360037327, + 0.008377548307180405, + 0.006830673199146986, + -0.01283906027674675, + 0.02211216650903225, + -0.013563648797571659, + 0.01900213398039341, + -0.006606783252209425, + 0.018953286111354828, + -0.013539224863052368, + 0.010095393285155296, + 0.0033257806207984686, + -0.006932441145181656, + 0.020825818181037903, + 0.014727875590324402, + -0.003958777990192175, + -0.013612497597932816, + 0.020711839199066162, + -0.00918355118483305, + -0.010355919599533081, + 0.00935452152043581, + -0.005080262199044228, + -0.017634371295571327, + -0.0026622528675943613, + 0.020972365513443947, + -0.005116898566484451, + 0.002426150953397155, + 0.020825818181037903, + -0.012228451669216156, + -0.01390558946877718, + -0.021607397124171257, + -0.010209373198449612, + 8.147806511260569e-5, + 0.007872777990996838, + 0.0019620885141193867, + 0.018269404768943787, + 0.002930920571088791, + -0.0037043578922748566, + 0.0023813729640096426, + -0.00019335934484843165, + -0.0013952403096482158, + -0.0012761716498062015, + -0.03360788896679878, + -0.02533617988228798, + 0.003962848801165819, + 0.01923009566962719, + 0.0034214425832033157, + -0.028869567438960075, + -0.002650040667504072, + 0.007144118659198284, + 0.009175409562885761, + -0.009403370320796967, + -0.005499546881765127, + 0.015094241127371788, + 0.0023040291853249073, + 0.014955836348235607, + -0.009281248785555363, + 0.00794605165719986, + -0.006285196170210838, + 0.015476888976991177, + -0.0047301799058914185, + 0.003993379417806864, + -0.0005688835517503321, + 0.030025651678442955, + -0.007494200952351093, + -0.0012690478470176458, + 0.03344506025314331, + -0.015183796174824238, + 0.0002645969798322767, + 0.005894406698644161, + -0.00915098562836647, + -0.025417594239115715, + 0.019441772252321243, + 0.00035059102810919285, + -0.0058577703312039375, + 0.0177972000092268, + 0.0010868830140680075, + 0.015485030598938465, + -0.007172613870352507, + -0.0010868830140680075, + 0.00817401148378849, + -0.015761839225888252, + -0.010950244963169098, + 0.0019620885141193867, + 0.008857892826199532, + 0.010706000961363316, + -0.001681208610534668, + 0.01318100094795227, + 0.013791609555482864, + -0.016836510971188545, + -0.0009896944975480437, + 0.011813238263130188, + 0.006529439706355333, + -0.012171461246907711, + -0.007775080855935812, + 0.0118050966411829, + 0.039469730108976364, + 0.0031995882745832205, + 0.008711347356438637, + 0.003928247839212418, + -0.015509454533457756, + 0.010657153092324734, + -5.5614664233871736e-6, + 0.017031904309988022, + 0.011389883235096931, + 0.00048085415619425476, + 0.018578778952360153, + -0.011951643042266369, + 0.0033013562206178904, + -0.013856740668416023, + -0.005357071291655302, + 5.641767711495049e-5, + 0.005475122481584549, + -0.0028454354032874107, + -0.0019376641139388084, + 0.003112067701295018, + -0.004791241139173508, + 0.006732975598424673, + -0.023984700441360474, + 0.0077832224778831005, + 0.008629932999610901, + -0.008988155983388424, + 0.01594909280538559, + 0.021281739696860313, + 0.00222465000115335, + -0.0011733858846127987, + 0.037450652569532394, + -0.016966773197054863, + 0.010372201912105083, + 0.002678535645827651, + 0.02020706795156002, + -0.017487825825810432, + -0.0166899636387825, + -0.01160156074911356, + -0.005291939713060856, + 0.009330096654593945, + -0.020483877509832382, + 0.0028637535870075226, + -0.02326825261116028, + -0.00044040134525857866, + 0.018220555037260056, + -0.0068021779879927635, + 0.008353123441338539, + -0.023105423897504807, + -0.015362908132374287, + 0.010665293782949448, + -0.0011102897115051746, + 0.012830918654799461, + -0.0007754727266728878, + -0.007278452627360821, + -0.005780426785349846, + -0.0019305403111502528, + -0.002395620569586754, + -0.007648888509720564, + -0.0005805868422612548, + -0.004420805256813765, + -0.003561882534995675, + 0.009338238276541233, + -0.006386964116245508, + -0.004384168423712254, + -0.032907724380493164, + -0.015525737777352333, + 0.0016689964104443789, + 0.003944530617445707, + -0.021444568410515785, + -0.006342186592519283, + 0.005841487552970648, + -0.003854974638670683, + 0.0028271169867366552, + -0.009134702384471893, + -0.01111307367682457, + -0.014548763632774353, + 0.0041969153098762035, + 0.015403615310788155, + -0.006830673199146986, + 0.0033583464100956917, + 0.011560853570699692, + -0.029748843982815742, + 0.029683711007237434, + 0.005719365552067757, + -0.02036989852786064, + -0.00976159330457449, + 0.009663896635174751, + -0.009362663142383099, + -0.00797047559171915, + -0.005853699520230293, + -0.026459699496626854, + -0.0019559822976589203, + -0.007815788500010967, + -0.0063503277488052845, + -0.0027619856409728527, + 0.0044045220129191875, + 0.01286348421126604, + 0.00600431626662612, + 0.02729012630879879, + -0.005580961238592863, + 0.007095270324498415, + -0.006305549759417772, + -0.0009398281690664589, + -0.007156331092119217, + -0.001301613636314869, + -0.008809044025838375, + 0.004323107656091452, + -0.0013779397122561932, + 0.012431987561285496, + 0.002194119617342949, + 0.023349666967988014, + -0.005963609088212252, + -0.007188896648585796, + -0.01407655980437994, + 0.006745188031345606, + -0.007376150228083134, + 0.00023813729058019817, + 0.006724834442138672, + 0.003519139951094985, + 0.004982565063983202, + 0.00869506411254406, + -0.0032871088478714228, + 0.007901273667812347, + 0.0039038232062011957, + 0.007168543059378862, + -0.027143580839037895, + 0.0024953531101346016, + -0.011577135883271694, + -0.007636676076799631, + -0.00046431683585979044, + 0.016771377995610237, + -0.025987494736909866, + 0.008169940672814846, + -0.014337086118757725, + -0.00101869844365865, + 0.0162991750985384, + 0.010787416249513626, + 0.0060450234450399876, + 0.0018328430596739054, + -0.01027450431138277, + -0.0049744234420359135, + -0.009093995206058025, + 0.0017249688971787691, + -0.008654356934130192, + -0.016103779897093773, + 0.011731823906302452, + -0.008849752135574818, + -0.005548395216464996, + 0.013425244018435478, + -0.01622590236365795, + 0.0017249688971787691, + -0.01407655980437994, + 0.0005688835517503321, + -0.028771869838237762, + -0.006460237316787243, + 0.0004719494318123907, + 0.0027619856409728527, + -0.007575615309178829, + 0.023235686123371124, + 0.002922779181972146, + 0.012057481333613396, + -0.015468747355043888, + -0.0042783296667039394, + 0.01165855024009943, + 0.001144890789873898, + 0.004021874163299799, + -0.021444568410515785, + -0.024098679423332214, + -0.016738813370466232, + -0.03461742773652077, + -0.004225410521030426, + -0.03569209948182106, + -0.01589210331439972, + 0.01321356650441885, + -0.010689718648791313, + -0.008279850706458092, + -1.1870291928062215e-5, + -0.00580078037455678, + -0.012228451669216156, + -0.017585523426532745, + -0.014695310033857822, + -0.00017669481167104095, + -0.006040953099727631, + -0.025189634412527084, + 0.009126560762524605, + -0.018578778952360153, + 0.020076805725693703, + 0.020760687068104744, + -0.004917433485388756, + 0.004779028706252575, + -0.022779766470193863, + -0.021721377968788147, + -0.016567843034863472, + -0.008300203830003738, + -0.00010571158782113343, + -0.012301724404096603, + -0.007262169849127531, + -0.004445229656994343, + 0.01324613206088543, + -0.004101253580302, + 0.02338223345577717, + 0.01163412630558014, + -5.152008816367015e-5, + -0.0081495875492692, + 0.002751808613538742, + 0.007534908130764961, + -0.017829766497015953, + -0.008678781799972057, + 0.0029166729655116796, + 0.0006533510168083012, + -0.016559701412916183, + 0.027322692796587944, + -0.007718090899288654, + -0.001187633373774588, + 0.0032972856424748898, + 0.031214304268360138, + 0.01018494926393032, + -0.009232399985194206, + -0.009167267940938473, + 0.01663297414779663, + -0.016502710059285164, + 0.0290649626404047, + 0.017243582755327225, + 0.003905858611688018, + 0.0018562496406957507, + -0.012423846870660782, + -0.016494570299983025, + -0.004770887084305286, + -0.0018165601650252938, + -0.001553998445160687, + 0.01784604974091053, + 0.013783467933535576, + -0.00397302582859993, + -0.0264271330088377, + -0.00788499042391777, + 0.013482234440743923, + 0.02458716742694378, + -0.003761348081752658, + 0.002753844019025564, + 0.01125147845596075, + -0.011357316747307777, + -0.0005322470096871257, + -0.00901258084923029, + -0.02365904115140438, + 0.029406903311610222, + 0.0027457026299089193, + 0.03126315400004387, + -0.012904191389679909, + 0.0006859168061055243, + -0.010339636355638504, + 0.017259865999221802, + 0.004697614349424839, + 0.004380098078399897, + 0.007050492335110903, + 0.009965130127966404, + 0.031132889911532402, + -0.0024953531101346016, + -0.0011784742819145322, + 0.0037206406705081463, + -0.006505015306174755, + -0.014060277491807938, + 0.01007096841931343, + 0.004644694738090038, + 0.003004193538799882, + -0.002973663154989481, + -0.007591898087412119, + -0.010600162670016289, + -0.009484784677624702, + -0.012366856448352337, + -0.0022429684177041054, + 0.008015253581106663, + -0.0018318253569304943, + -0.0061060842126607895, + 0.008129233494400978, + -0.02781117893755436, + 0.0024403983261436224, + -0.011153780855238438, + 0.0015570515533909202, + 0.027778614312410355, + 0.019962824881076813, + 0.010779274627566338, + 0.007604110520333052, + 0.0005009533488191664, + 0.00226739258505404, + -0.01090953778475523, + 0.00018877978436648846, + 0.030481573194265366, + 0.009199833497405052, + 0.012765787541866302, + -0.0057112243957817554, + -0.009175409562885761, + 0.010290787555277348, + -0.0014278060989454389, + 0.007665171287953854, + -0.010282645933330059, + -0.016543418169021606, + 0.008548518642783165, + 0.02090723253786564, + -0.01686907559633255, + 0.015419898554682732, + 0.01680394448339939, + -0.0005785514949820936, + 0.010811840184032917, + 0.0002948729961644858, + -0.010266363620758057, + 0.01459761243313551, + 0.018855588510632515, + -0.0005037519731558859, + -0.002711101435124874, + 0.003708428703248501, + 0.002143235644325614, + -0.0024139387533068657, + -0.019490621984004974, + -0.009061429649591446, + 0.022372692823410034, + -0.0031059617176651955, + -0.025319896638393402, + 0.007571544498205185, + -0.005967679899185896, + -0.009142844006419182, + 0.008418255485594273, + -0.014638319611549377, + -0.0009423723677173257, + -0.0040096621960401535, + -0.0053855665028095245, + 0.041879598051309586, + 0.00053072051377967, + -0.027908876538276672, + 0.004380098078399897, + 0.0072743818163871765, + -8.408587018493563e-5, + -0.003008264349773526, + 0.012887909077107906, + -0.031523678451776505, + 0.013262415304780006, + 0.011495721526443958, + -0.01635616458952427, + -0.003826479660347104, + -0.00044727069325745106, + 0.012700655497610569, + -0.01491512916982174, + -0.005283798556774855, + -0.020011674612760544, + 0.01113749761134386, + 0.010176807641983032, + -0.008825327269732952, + -0.01945805549621582, + 0.012057481333613396, + -0.004815665073692799, + -0.003551705740392208, + 0.0068225315771996975, + -0.009077711962163448, + -0.005430344492197037, + 0.0035130339674651623, + 0.005906619131565094, + 0.0016639080131426454, + 0.0005027342704124749, + -0.02649226412177086, + -0.003423477988690138, + 0.011259620077908039, + -0.012309866026043892, + -0.00485230190679431, + 0.002698889235034585, + -0.017341280356049538, + -0.007131906691938639, + 0.008988155983388424, + -0.006618995685130358, + 0.0044818660244345665, + 0.006000245455652475, + -0.011544570326805115, + -0.026980752125382423, + 0.01476858276873827, + -0.010885112918913364, + -0.0040503693744540215, + 0.01355550717562437, + 0.005963609088212252, + -0.010722284205257893, + -0.003738959087058902, + 0.010502465069293976, + -0.002198190428316593, + -0.0024180093314498663, + 0.01476858276873827, + 0.012822777032852173, + -0.014980260282754898, + 0.011666691862046719, + -0.01336011290550232, + -0.010478041134774685, + 0.012399422004818916, + 0.023333383724093437, + 0.0019631062168627977, + -0.02036989852786064, + -0.0008502722484990954, + 0.007689595688134432, + 0.004608058370649815, + -0.01525706984102726, + -0.004282400477677584, + 0.0031242799013853073, + -0.007925697602331638, + -0.035431571304798126, + -0.011088649742305279, + 0.005507688038051128, + 0.024896541610360146, + -0.004831948317587376, + -0.020174503326416016, + 0.01212261337786913, + -0.007958263158798218, + 0.01531405933201313, + 0.021542266011238098, + 0.0005073138745501637, + -0.035952623933553696, + -0.009574340656399727, + -0.031002625823020935, + 0.002470928942784667, + 0.014263813383877277, + -0.0014573187800124288, + 0.010600162670016289, + -0.0010192072950303555, + -0.018855588510632515, + -0.023935850709676743, + 3.428311902098358e-5, + -0.021623680368065834, + -0.0027925160247832537, + 0.020060522481799126, + -0.004774957895278931, + -0.0007790346280671656, + -0.0003195517638232559, + -0.011992350220680237, + 9.820619015954435e-5, + 0.0074982717633247375, + 0.010347777977585793, + 0.0001064748503267765, + -0.022356409579515457, + 0.032093580812215805, + -0.0020546973682940006, + 0.0034397609997540712, + -0.016600407660007477, + 0.002446504542604089, + 0.01647014543414116, + 0.010543172247707844, + -0.010469899512827396, + -0.004551068414002657, + -0.012896050699055195, + 0.0006660720682702959, + 0.006305549759417772, + 0.0032240126747637987, + 0.0032871088478714228, + -0.002951274160295725, + -0.0003022511664312333, + -0.004929645452648401, + 0.00811702199280262, + -0.015550161711871624, + -0.017585523426532745, + 0.026036344468593597, + 0.009615047834813595, + 0.012513401918113232, + -0.035431571304798126, + -0.003437725594267249, + 0.005243091378360987, + 0.01062458660453558, + -0.01497211866080761, + -0.006118296645581722, + -0.004823806695640087, + 0.011308467946946621, + 0.02729012630879879, + 0.010355919599533081, + 0.028462495654821396, + 0.021200325340032578, + 0.023675324395298958, + -0.004091076552867889, + 0.018090292811393738, + -0.014166115783154964, + 0.019962824881076813, + -0.01422310620546341, + -0.0002645969798322767, + 0.020532727241516113, + 0.001052281935699284, + -0.020581575110554695, + 0.01721101626753807, + 0.015631577000021935, + 0.0003355802327860147, + 0.021037496626377106, + -0.012081906199455261, + 0.002375266747549176, + -0.020109372213482857, + 0.004453370813280344, + 0.0034519729670137167, + -0.015175655484199524, + -0.01791118085384369, + 0.019246378913521767, + 0.006435812916606665, + 0.002680571051314473, + -0.005438485648483038, + 0.0007495218887925148, + 0.018041444942355156, + -0.018106576055288315, + 0.006150862202048302, + 0.012537826783955097, + -0.002279604785144329, + 0.008613649755716324, + 0.012928616255521774, + -0.021493418142199516, + 0.020793253555893898, + -0.008589225821197033, + -0.004017803352326155, + -0.042921703308820724, + 0.013970721513032913, + -0.02670394256711006, + 0.0013067020336166024, + -0.0068428851664066315, + 0.01056759711354971, + 0.017145885154604912, + 0.006419530138373375, + 0.0015183796640485525, + 0.004555138759315014, + -0.00845896266400814, + -0.004656907171010971, + -0.006570146884769201, + 0.017243582755327225, + -0.021151475608348846, + -0.01131660956889391, + 0.01094210334122181, + -0.027208711951971054, + 0.020630424842238426, + -0.008483386598527431, + 0.007286594249308109, + -0.012798353098332882, + -0.02602006122469902, + -0.00993256364017725, + -0.003846833249554038, + 0.02649226412177086, + -0.017585523426532745, + 0.004990706220269203, + 0.001365727512165904, + -0.018236838281154633, + 0.0177972000092268, + 0.019441772252321243, + -0.001934611122123897, + 0.012993747368454933, + 0.012285442091524601, + -0.013408961705863476, + -0.0026418992783874273, + 0.0029064961709082127, + -0.022079601883888245, + -0.03158881142735481, + 0.007567474152892828, + 0.00191120442468673, + -0.008670640178024769, + 0.0028332232031971216, + -0.01318100094795227, + -0.022437825798988342, + 0.009118419140577316, + 0.024342922493815422, + -0.014035852625966072, + 0.011682975105941296, + 0.006887663155794144, + -0.006769612431526184, + -0.0005085859447717667, + 0.010543172247707844, + -5.781698564533144e-5, + 0.022470390424132347, + 0.0012171461712568998, + -0.005825204774737358, + 0.002481105737388134, + 0.003466220572590828, + 0.007750656455755234, + 0.010917679406702518, + -0.01950690522789955, + -0.017292430624365807, + 0.01473601721227169, + 0.010640869848430157, + -0.02124917320907116, + 0.017422694712877274, + 0.019425490871071815, + -0.011088649742305279, + -0.0037878076545894146, + 0.006830673199146986, + 0.01825312152504921, + 0.0020964222494512796, + 0.012098188512027264, + 0.010510606691241264, + 0.006741117220371962, + -0.025580422952771187, + -0.014491774141788483, + -0.009981412440538406, + 0.014125408604741096, + 0.01870904304087162, + 0.016706246882677078, + 0.005996175110340118, + -0.0010263309814035892, + -0.0020638564601540565, + 0.022893745452165604, + -0.005841487552970648, + -0.023675324395298958, + 0.023398514837026596, + -0.013392678461968899, + -0.023007726296782494, + 0.002163589233532548, + 0.0017727998783811927, + 0.0047464631497859955, + -0.016217760741710663, + -0.015265211462974548, + -0.003142598085105419, + -0.017748352140188217, + -0.003922141622751951, + -0.011186346411705017, + 0.007241816259920597, + -0.004823806695640087, + -0.00018343694682698697, + -0.004091076552867889, + -0.0022327916231006384, + 0.01018494926393032, + 0.002888177987188101, + -0.01212261337786913, + -0.00617528660222888, + 0.0068021779879927635, + -0.0051576062105596066, + -0.011056083254516125, + 0.025010522454977036, + 0.005080262199044228, + -0.013962579891085625, + 0.003380735404789448, + -0.017471542581915855, + 0.016738813370466232, + 0.012415705248713493, + -0.013083303347229958, + 0.005576890427619219, + 0.004697614349424839, + -0.0017982418648898602, + 0.02336595021188259, + 0.011707399040460587, + -0.004888938274234533, + 0.01963716745376587, + 0.01622590236365795, + 0.016820227727293968, + -0.002998087555170059, + -0.0023406657855957747, + 0.000270957505563274, + -0.02072812058031559, + 0.011357316747307777, + 0.012830918654799461, + 0.008515952154994011, + 0.015362908132374287, + 0.0024017265532165766, + -0.011324751190841198, + 0.012130754068493843, + 0.00883346889168024, + -0.0014532480854541063, + -0.012309866026043892, + -0.014646461233496666, + 0.006325903348624706, + -0.02585723251104355, + 0.012814636342227459, + 0.004868584685027599, + 0.005287868902087212, + 0.004007626790553331, + 0.0061020138673484325, + 0.01680394448339939, + 0.028543910011649132, + -0.01716216839849949, + 0.007144118659198284, + 0.011512004770338535, + 0.0015305918641388416, + -0.011886510998010635, + -0.02025591768324375, + 0.0019824421033263206, + -0.0020435028709471226, + 0.023756738752126694, + 0.008849752135574818, + 0.014369651675224304, + -0.0032423308584839106, + 0.02274719998240471, + -0.01612006314098835, + -0.013653204776346684, + -0.015965376049280167, + -0.003152774879708886, + 0.0031771992798894644, + 0.007327301427721977, + 0.007180755492299795, + -0.009940705262124538, + -0.02320312149822712, + -0.004958140663802624, + 0.0002712119312491268, + 0.01963716745376587, + -0.011642267927527428, + -0.020988646894693375, + -0.010649011470377445, + -0.025694403797388077, + 0.00011410745355533436, + 0.007192967459559441, + 0.013742760755121708, + 0.014744158834218979, + -0.011552711948752403, + -0.02763206698000431, + -0.003875328227877617, + 0.024147529155015945, + -0.012545968405902386, + -0.021053779870271683, + -0.005080262199044228, + 0.016095638275146484, + -0.0005887282895855606, + 0.014988401904702187, + -0.0024220801424235106, + -0.005247161723673344, + -0.0005831310409121215, + -0.014092843048274517, + -0.016478287056088448, + -0.009867432527244091, + 0.020076805725693703, + -0.01269251387566328, + -0.01664111576974392, + -0.0028189755976200104, + 0.0118050966411829, + 0.013018172234296799, + 0.017357563599944115, + 0.009956988506019115, + -0.02584094926714897, + -0.0030306533444672823, + 0.014035852625966072, + 0.006623066030442715, + -0.007359866984188557, + -0.0016506781103089452, + 0.0063503277488052845, + -0.009020722471177578, + -0.0014552834909409285, + -0.009989554062485695, + -0.015444322489202023, + 0.0011326787061989307, + 0.01680394448339939, + 0.004893009085208178, + 0.020679272711277008, + -0.019995391368865967, + -0.0005157096893526614, + -0.024945389479398727, + 0.01042105071246624, + -0.017927464097738266, + 0.016201477497816086, + -0.009419652633368969, + -0.020532727241516113, + 0.008776478469371796, + -0.00959062296897173, + -0.009093995206058025, + -0.03069325163960457, + 0.02365904115140438, + -0.013588073663413525, + -0.004665048327296972, + 0.0014542657881975174, + 0.026573680341243744, + -0.01905098371207714, + -0.007441281341016293, + -0.011845803819596767, + 0.007245887070894241, + 0.003738959087058902, + -0.02102121338248253, + -0.006203781813383102, + 0.013962579891085625, + -0.002228720812126994, + -0.0034947155509144068, + 0.0004968825960531831, + 0.003496750956401229, + -0.013620639219880104, + -0.0030937495175749063, + -0.013897447846829891, + -0.024277791380882263, + 0.011267760768532753, + 0.012195886112749577, + 0.0026541114784777164, + -0.009313814342021942, + -0.02054900862276554, + 0.0138730239123106, + 0.0061834282241761684, + 0.010917679406702518, + 0.009460359811782837, + 0.010087251663208008, + -0.010022119618952274, + -0.018578778952360153, + -0.011471297591924667, + 0.024456903338432312, + -0.006476520095020533, + 0.05865097790956497, + 0.00014883581025060266, + 0.039176639169454575, + 0.00970460381358862, + -0.0025706614833325148, + -0.021184042096138, + -0.001081794616766274, + -0.0052186669781804085, + -0.007201109081506729, + -0.0018511612433940172, + 0.0002112959627993405, + -0.02860904112458229, + 0.007551190908998251, + 0.019213812425732613, + 0.0023284535855054855, + 0.00829206220805645, + -0.005662375595420599, + 0.0035130339674651623, + 0.01900213398039341, + 0.01373461913317442, + -0.01025008037686348, + -0.007188896648585796, + -0.01807400956749916, + -0.012602957896888256, + 0.015379191376268864, + 0.01559901051223278, + -0.003602589713409543, + -0.03696216270327568, + -0.007575615309178829, + -0.0049337162636220455, + 0.012887909077107906, + -0.003480468178167939, + -0.020060522481799126, + 0.006480590905994177, + 0.006496873684227467, + 0.01200049091130495, + 0.0011713504791259766, + 0.01900213398039341, + 0.0011214842088520527, + -0.013881165534257889, + -0.03898124396800995, + -0.02198190428316593, + 0.0014115232042968273, + 0.0006528422236442566, + 7.441790512530133e-5, + 0.002930920571088791, + -0.004831948317587376, + 0.005788567941635847, + -0.022958876565098763, + -0.009826725348830223, + -0.0047301799058914185, + -0.0077425152994692326, + -0.017373844981193542, + 0.00030326886917464435, + 0.011414307169616222, + 0.010144241154193878, + 0.011275902390480042, + -0.0011632090900093317, + -0.02227499522268772, + 0.0009260894730687141, + 0.0036005545407533646, + -0.0077832224778831005, + 0.014345227740705013, + 0.024212660267949104, + -0.005230878945440054, + -7.441790512530133e-5, + -0.010575737804174423, + 0.0036392263136804104, + 0.012537826783955097, + -0.012041198089718819, + 0.02163996361196041, + -0.005694941617548466, + -0.022893745452165604, + -0.014288237318396568, + -0.010771133005619049, + 0.005617597606033087, + -0.013433385640382767, + -0.012277300469577312, + -0.022763483226299286, + -0.015582727268338203, + -0.01148757990449667, + -0.00022516185708809644, + 0.0046691191382706165, + -0.013099586591124535, + -0.02209588512778282, + -0.009411511942744255, + -0.000935248623136431, + 0.009834866970777512, + -0.0005754984449595213, + 0.016136346384882927, + -0.028071705251932144, + -0.027827462181448936, + 0.009777876548469067, + -0.00803560670465231, + 0.021281739696860313, + -0.027078449726104736, + -0.024896541610360146, + 0.0005526006571017206, + 0.013303122483193874, + 0.004412663634866476, + 0.006411388516426086, + 0.007396503817290068, + -0.0014685132773593068, + 0.011715540662407875, + 0.021656246855854988, + -0.03150739520788193, + 0.0036107313353568316, + -0.00989999808371067, + -0.002521812915802002, + 0.0024546459317207336, + -0.002100493060424924, + 0.009834866970777512, + -0.015672283247113228, + 0.018008878454566002, + 0.01565600000321865, + 0.01761808805167675, + 0.025303613394498825, + -0.016510851681232452, + 0.022877462208271027, + 0.012505261227488518, + -0.010958386585116386, + 0.01791118085384369, + 0.019734865054488182, + -0.007319159805774689, + 0.015444322489202023, + 0.013832316733896732, + 0.011357316747307777, + 0.012098188512027264, + -0.008882317692041397, + -0.0011927217710763216, + -0.002678535645827651, + -0.019441772252321243, + 0.007701807655394077, + -0.005784497130662203, + -0.008882317692041397, + 0.001880674040876329, + 0.021623680368065834, + -0.0027049954514950514, + 0.009517350234091282, + -0.018350819125771523, + -0.020972365513443947, + 0.05054209753870964, + 0.020109372213482857, + 0.00849152822047472, + -0.007856495678424835, + -0.008328699506819248, + -0.02672022581100464, + 0.00806410238146782, + 0.00527972774580121, + 0.011666691862046719, + -0.006272984202951193, + -0.018839305266737938, + 0.0051779597997665405, + 0.004791241139173508, + -0.010885112918913364, + 0.005173888988792896, + -0.009338238276541233, + 0.014516198076307774, + -0.01338453684002161, + 0.001480725477449596, + -0.00872762966901064, + -0.005088403820991516, + 0.0047261095605790615, + 0.0183671023696661, + 0.0066352784633636475, + 0.004469653591513634, + -0.012529685162007809, + 0.011870227754116058, + 0.010282645933330059, + -0.01629103347659111, + -0.001440018299035728, + -0.012757645919919014, + -0.01663297414779663, + 0.0005760072963312268, + 0.002040449995547533, + 0.002554378705099225, + -0.0042579760774970055, + 0.013653204776346684, + -0.006378822959959507, + -0.0005561625002883375, + 0.008043748326599598, + 0.024847693741321564, + -0.008076314814388752, + 0.007506412919610739, + 0.014963977970182896, + 0.009028863161802292, + -0.003814267460256815, + 0.010347777977585793, + 0.023854436352849007, + -0.008218789473176003, + 0.001008521649055183, + 0.023919567465782166, + -0.004048333968967199, + 0.002131023444235325, + -0.027257561683654785, + 0.013408961705863476, + -0.0010120834922417998, + -0.009769734926521778, + -0.025938646867871284, + -0.0016669610049575567, + 0.003478432772681117, + 0.005145393777638674, + -0.014483632519841194, + 0.014703451655805111 + ], + "d6aaa9bd-e5dc-4388-a265-0eec11f922d7": [ + -0.001668391516432166, + -0.018895938992500305, + -0.0036160978488624096, + -0.01859600469470024, + -0.012709768489003181, + -0.0337427482008934, + 0.019150884822010994, + 0.005023920442909002, + -0.026049401611089706, + 0.011127608828246593, + 0.010422760620713234, + 0.03398269787430763, + -0.008848099038004875, + -0.02699419856071472, + -0.0047502294182777405, + 0.01694635860621929, + -0.008068266324698925, + 0.025329556316137314, + -0.011615004390478134, + -0.024324772879481316, + 0.05737766996026039, + 0.02429477870464325, + -0.024579718708992004, + 0.02050059475004673, + 0.015986565500497818, + -0.03005354292690754, + -0.0003625002282205969, + 0.014006990008056164, + -0.04100118950009346, + 0.013302141800522804, + 0.013564584776759148, + -0.008390696719288826, + 0.02510460466146469, + -0.016451464965939522, + 0.009080548770725727, + -0.03317287191748619, + -0.012364842928946018, + 0.027789028361439705, + -0.0016852628905326128, + -0.017726190388202667, + -0.03254300728440285, + 0.02411481738090515, + -0.011712483130395412, + -0.01934584230184555, + -0.06184671074151993, + 0.012934720143675804, + 0.008345706388354301, + -0.04915943741798401, + 0.016586435958743095, + 0.002363867126405239, + 0.011330065317451954, + -0.04172103479504585, + 0.0010244674049317837, + -0.0015043641906231642, + 0.029003767296671867, + -0.015116752125322819, + 0.028838802129030228, + 0.05209880322217941, + -0.00416160561144352, + -0.06190669909119606, + -0.015446680597960949, + -0.0004756790294777602, + -0.008420690894126892, + 0.003066841047257185, + -0.028373902663588524, + -0.03845173865556717, + 0.009170529432594776, + 0.0018886566394940019, + -0.05539809539914131, + 0.006024955306202173, + 0.05098904296755791, + 0.06460611522197723, + -0.02206026017665863, + 0.009357988834381104, + -0.023769892752170563, + 0.006924761924892664, + 0.01309218630194664, + 0.007483392022550106, + 0.018551014363765717, + 0.029528655111789703, + -0.020290639251470566, + 0.030173515900969505, + 0.027564076706767082, + 0.007134716957807541, + 0.06862525641918182, + -0.0038879145868122578, + -0.021370407193899155, + -0.04972931370139122, + 0.023829879239201546, + -0.019630782306194305, + 0.00430407514795661, + 0.044510435312986374, + 0.0032186834141612053, + -0.011255081743001938, + 0.003749194322153926, + -0.019450820982456207, + 0.04001140221953392, + -0.031163303181529045, + 0.004536525346338749, + 0.0020208158530294895, + 0.022045262157917023, + 0.015401690267026424, + -0.05953720584511757, + -0.0018895940156653523, + -0.01811610721051693, + 0.00496018398553133, + 0.0018455409444868565, + -0.007093475665897131, + -0.03458257019519806, + 0.07048485428094864, + 0.0026937960647046566, + -0.03275296092033386, + 0.019810743629932404, + -0.006771044805645943, + -0.026799241080880165, + -0.03908160328865051, + 0.011704985052347183, + -0.0352124348282814, + 0.00464900117367506, + -0.014846810139715672, + 0.0069322604686021805, + -0.0027931497897952795, + 0.01562664285302162, + 0.033862724900245667, + -0.012372341006994247, + 0.029033761471509933, + 0.009560445323586464, + 0.008345706388354301, + 0.02370990440249443, + 0.03755193203687668, + -0.03860170394182205, + -0.022030266001820564, + 0.0013225283473730087, + 0.036772098392248154, + 0.01670641079545021, + 0.01876096799969673, + 0.00034867506474256516, + 0.06568588316440582, + -0.03323286026716232, + 0.04379059001803398, + -0.047389816492795944, + -0.05971716716885567, + -0.032812949270009995, + 0.028328912332654, + 0.00027158227749168873, + 0.019390832632780075, + -0.052008822560310364, + 0.0035861043725162745, + 0.009972857311367989, + 0.018386049196124077, + -0.023649917915463448, + -0.006377379409968853, + 0.022015269845724106, + 0.03656214475631714, + 0.0037660656962543726, + 0.015956571325659752, + -0.012897228822112083, + 0.0009794770739972591, + 0.028868796303868294, + 0.029933568090200424, + 0.0052038817666471004, + -0.07600367069244385, + 0.006643572356551886, + -0.008938079699873924, + 0.04316072538495064, + 0.016346488147974014, + -0.0012119270395487547, + 0.031223291531205177, + -0.020785532891750336, + 0.019660774618387222, + 0.020650561898946762, + -0.0061786724254488945, + -0.009028060361742973, + -0.025959420949220657, + 0.02321501076221466, + -0.01160750538110733, + 0.0471198745071888, + 0.005893733352422714, + 0.00613368209451437, + -0.03473253548145294, + -0.006174922920763493, + -0.022270213812589645, + 0.0007667102618142962, + -0.010370271280407906, + -0.016751401126384735, + -0.0038429242558777332, + 0.018491026014089584, + -0.01597156748175621, + -0.0022551403380930424, + -0.006857276428490877, + -0.03827177733182907, + -0.013452108949422836, + -0.03482251614332199, + 0.04589013755321503, + -0.019555797800421715, + -0.013654565438628197, + 0.01639147847890854, + -0.003959149122238159, + 0.020545585080981255, + 0.010452753864228725, + -0.018386049196124077, + -0.03491249680519104, + -0.050419166684150696, + 0.04972931370139122, + -0.06043701246380806, + 0.027399111539125443, + -0.021265430375933647, + 0.008480677381157875, + 0.0017939894460141659, + -0.04726984351873398, + 0.03308289125561714, + -0.04412052035331726, + 0.014464391395449638, + -0.0016862001502886415, + -0.009043056517839432, + 0.01366956252604723, + -0.013279646635055542, + 0.004131612367928028, + -0.0008473179186694324, + -0.02189529500901699, + -0.007134716957807541, + -0.009492959827184677, + -0.008150748908519745, + -0.016331490129232407, + -0.04061127454042435, + -0.02042561024427414, + -0.007858311757445335, + 0.022600144147872925, + -0.04394055902957916, + 0.01696135476231575, + 0.041121162474155426, + -0.000942922371905297, + 0.007029739208519459, + -0.012132393196225166, + -0.005027669481933117, + 0.00634363666176796, + -0.009950362145900726, + 0.03893163427710533, + -0.00272753881290555, + -0.02257014997303486, + 0.011877447366714478, + 0.002618812257423997, + 0.028373902663588524, + 0.010842669755220413, + 0.011135106906294823, + -0.003651715349406004, + 0.007228446658700705, + 0.0029112494084984064, + 0.037491943687200546, + -0.04205096513032913, + 0.005485071334987879, + 0.011495029553771019, + 0.013519594445824623, + -0.01606154814362526, + -0.022495165467262268, + 0.04514029994606972, + 0.04241088777780533, + -0.027399111539125443, + -0.007715842220932245, + -0.021610356867313385, + 0.02567448280751705, + -0.005177637562155724, + 0.0485895574092865, + -0.001509050722233951, + 0.01259729266166687, + -0.04271082207560539, + 0.029603639617562294, + -0.0496993213891983, + 0.00038874457823112607, + 0.03161320835351944, + -0.049849286675453186, + 0.005301360972225666, + -0.0080232759937644, + -0.005218878388404846, + -0.025554507970809937, + 0.005316357593983412, + -0.011495029553771019, + -0.009342992678284645, + -0.01804112270474434, + -0.026889221742749214, + -0.0003388334298506379, + -0.015416687354445457, + -0.0022476420272141695, + 0.04625006020069122, + -0.0024463492445647717, + -0.001225049258209765, + -0.01714131608605385, + -0.0007596805226057768, + -0.034702543169260025, + 0.015461677685379982, + -0.0026150629855692387, + -0.0045402743853628635, + 0.008338208310306072, + 0.02486465685069561, + 0.011862451210618019, + 0.005590048618614674, + -0.024759680032730103, + -0.02180531434714794, + -0.030428461730480194, + 0.020440608263015747, + -0.02759407088160515, + -0.00901306327432394, + 0.008923082612454891, + -0.03656214475631714, + 0.026154380291700363, + -0.01672140695154667, + 0.03104333020746708, + 0.014044482260942459, + -0.02478967234492302, + 0.0112775769084692, + 0.06067696213722229, + -0.01795114204287529, + -0.028463883325457573, + -0.023185018450021744, + 0.0006542344344779849, + 0.02691921591758728, + 0.01020530704408884, + -0.005068910773843527, + -0.01526671927422285, + 0.0052563706412911415, + 0.03896162658929825, + 0.03236304596066475, + -0.06952506303787231, + 0.016976352781057358, + 0.01868598535656929, + -0.038001835346221924, + 0.04241088777780533, + -0.026214366778731346, + -0.011427544057369232, + -0.022270213812589645, + -0.03506246581673622, + -0.002300130669027567, + -0.04124113917350769, + -0.01387951709330082, + -0.008645642548799515, + -0.05344851315021515, + -0.023424966260790825, + -0.032393038272857666, + -0.016826383769512177, + -0.02924371510744095, + -0.023844875395298004, + -0.02296006679534912, + -0.03179316967725754, + -0.023694908246397972, + 0.033472806215286255, + -0.001962703187018633, + -0.0037248246371746063, + 0.014906796626746655, + -0.008098259568214417, + 0.019120890647172928, + 0.0010132198221981525, + -0.0006064322078600526, + 0.03566233813762665, + -0.010325280949473381, + 0.05782757326960564, + -0.0209954883903265, + 0.009058053605258465, + -0.026904217898845673, + -0.0020864265970885754, + -0.0005183261237107217, + 0.018251078203320503, + -0.016571439802646637, + -0.04151108115911484, + -0.008840600028634071, + 0.010962644591927528, + 0.02790900319814682, + -0.016826383769512177, + -0.018625997006893158, + 0.012604791671037674, + 0.028103960677981377, + -0.017891155555844307, + 0.007599616888910532, + 0.03287293761968613, + -0.045500222593545914, + -0.013107183389365673, + -0.03611224144697189, + 0.019795745611190796, + -0.018071116879582405, + -0.04774973914027214, + 0.017891155555844307, + 0.02090550772845745, + 0.003522368147969246, + -0.0018277321942150593, + -0.04157106578350067, + 0.02033562958240509, + 0.01952580362558365, + -0.024804670363664627, + -0.024654701352119446, + 0.03581230342388153, + 0.04001140221953392, + -0.024894651025533676, + 0.021955281496047974, + -0.026394328102469444, + 0.005773759447038174, + -0.0080232759937644, + 0.0092155197635293, + 0.01357958186417818, + 0.0121023990213871, + 0.016586435958743095, + -0.020035695284605026, + -0.01316717080771923, + 0.007895803079009056, + 0.014846810139715672, + 0.014756828546524048, + 0.022180233150720596, + -0.023095037788152695, + 0.00619366904720664, + -0.012634784914553165, + 0.022105250507593155, + -0.009875377640128136, + -0.018251078203320503, + 0.0017480618553236127, + 0.011989923194050789, + -0.014726835303008556, + 0.04553021490573883, + -0.002570072654634714, + 0.00901306327432394, + 0.02675425074994564, + -0.017096325755119324, + -0.011547518894076347, + 0.014494385570287704, + 0.06109687313437462, + -0.015866590663790703, + 0.03986143320798874, + -0.019855733960866928, + 0.0176062174141407, + 0.018236082047224045, + 0.01967577263712883, + -0.0449303463101387, + -0.02825392782688141, + -0.0027237897738814354, + 0.047449804842472076, + 0.005365096963942051, + -0.0061636753380298615, + -0.022930072620511055, + -0.04933939874172211, + 0.002999355550855398, + -0.018790962174534798, + -0.018176093697547913, + -0.000947608903516084, + -0.008090761490166187, + 0.009702915325760841, + -0.012117396108806133, + -0.018835952505469322, + -0.008263224735856056, + -0.02948366478085518, + -0.022270213812589645, + 0.023919859901070595, + 0.014171954244375229, + -0.0011172599624842405, + -0.0050726598128676414, + 0.006707308813929558, + -0.04292077571153641, + 0.008330710232257843, + -0.016526449471712112, + -0.027069183066487312, + -0.014269433915615082, + -0.008375700563192368, + -0.00391040975227952, + -0.027534082531929016, + -0.0048402100801467896, + -0.02502962201833725, + -0.005653785075992346, + 0.007423405069857836, + 0.006812286097556353, + -0.04025135189294815, + -0.017516236752271652, + 0.024819666519761086, + 0.011547518894076347, + 0.01993071660399437, + -0.007149713579565287, + -0.008945577777922153, + -0.037821874022483826, + -0.004326570313423872, + -0.015791606158018112, + -0.0013412742409855127, + 0.0016946358373388648, + 0.0038054322358220816, + -0.003850422566756606, + 0.0012831618078052998, + -0.013557086698710918, + -0.03224307298660278, + -0.01588158681988716, + -0.01753123290836811, + 0.020635565742850304, + -0.03731198236346245, + 0.029903573915362358, + -0.03419265151023865, + 0.007888305000960827, + -0.013482103124260902, + 0.03134326636791229, + -0.017741188406944275, + 0.013617074117064476, + 0.0019195874920114875, + -0.0030799631495028734, + -0.0184310395270586, + -0.0006800101255066693, + -0.01661643013358116, + -0.012139891274273396, + 0.006324891000986099, + 0.02339497208595276, + -0.0199907049536705, + -0.0054625761695206165, + 0.044570423662662506, + 0.01952580362558365, + 0.012094900943338871, + -0.0259444247931242, + -0.04040131717920303, + -0.01885094866156578, + 0.012664778158068657, + -0.01967577263712883, + -0.0482296347618103, + -0.02790900319814682, + -0.0033292844891548157, + -0.011802463792264462, + -0.0029187477193772793, + -0.018311064690351486, + -0.012837241403758526, + 0.044510435312986374, + 0.0020751790143549442, + -0.006816035136580467, + -0.004712737165391445, + -0.013422115705907345, + -0.003168069291859865, + -0.02361992374062538, + 0.005230125971138477, + 0.006013707723468542, + -0.014404404908418655, + 0.006636073812842369, + -0.019720762968063354, + -0.010955145582556725, + -0.0029018763452768326, + -0.0014715588185936213, + 0.006887270137667656, + 0.02616937644779682, + 0.0005356661276891828, + -0.0305334385484457, + 0.021295424550771713, + 0.02132541686296463, + 0.041871003806591034, + -0.03341282159090042, + 0.017276287078857422, + 0.025479525327682495, + -0.012162386439740658, + -0.02427978254854679, + 0.016436468809843063, + 0.005440081004053354, + 0.03530241549015045, + -0.004442795179784298, + 0.012747260741889477, + -0.03908160328865051, + 0.006636073812842369, + -0.016751401126384735, + 0.0006092441035434604, + 0.020230652764439583, + -0.026694264262914658, + 0.021205443888902664, + -0.02840389683842659, + -0.023245004937052727, + -0.019000917673110962, + -0.029438674449920654, + 0.008698130957782269, + 0.018910937011241913, + 0.016331490129232407, + -0.012567299418151379, + -0.005211380310356617, + -0.013707054778933525, + 0.017426256090402603, + 0.004716486670076847, + 0.02444474771618843, + 0.026709260419011116, + 0.02774403803050518, + 0.055788010358810425, + 0.013114681467413902, + -0.014231941662728786, + 0.021685339510440826, + -0.0004911444848403335, + 0.01378953643143177, + 0.006381128914654255, + -0.01976575329899788, + 0.019060904160141945, + -0.026739254593849182, + 0.007985783740878105, + 0.012904726900160313, + 0.014066977426409721, + 0.024504734203219414, + -0.01267227716743946, + -0.007412157487124205, + -0.007625861559063196, + 0.03161320835351944, + 0.003914158791303635, + 0.03137325868010521, + 0.011187596246600151, + 0.0170513354241848, + -0.028118956834077835, + 0.018670987337827682, + -0.012717267498373985, + -0.009942863136529922, + 0.014479388482868671, + -0.031163303181529045, + -0.005271367263048887, + 0.017336275428533554, + 0.0018089863006025553, + -0.0030330982990562916, + -0.013504598289728165, + 0.004604010842740536, + 0.014434398151934147, + 0.017471246421337128, + -0.016016557812690735, + 0.017321277409791946, + -0.0184310395270586, + -0.0009574505384080112, + 0.020320633426308632, + -0.0025025871582329273, + 0.005822498816996813, + -0.0007831129478290677, + 0.003631094703450799, + 0.05854741856455803, + 0.0029206224717199802, + -0.022330202162265778, + 0.000226240445044823, + -0.021175449714064598, + 0.049849286675453186, + -0.02206026017665863, + 0.02290007844567299, + 0.010715197771787643, + -0.010677705518901348, + -0.009088046848773956, + -0.023020053282380104, + 0.01552166510373354, + 0.027114173397421837, + -0.02403983473777771, + 0.006973501294851303, + -0.021430395543575287, + 0.04810966178774834, + 0.019705764949321747, + 0.02568947896361351, + 0.011270077899098396, + -0.01239483617246151, + -0.029198724776506424, + -0.010347776114940643, + -0.00475772749632597, + 0.008750619366765022, + 0.021175449714064598, + -0.0076858485117554665, + 0.015004276297986507, + -0.024414753541350365, + 0.039411529898643494, + 0.021865300834178925, + 0.004431547597050667, + -0.02101048454642296, + -0.0007910800050012767, + -0.005222627893090248, + 0.014179453253746033, + -0.007115970831364393, + -0.006741051562130451, + 0.0068010385148227215, + -0.00149780313950032, + 0.0006556403823196888, + -0.010025345720350742, + 0.061216846108436584, + -0.033052898943424225, + -0.01000285055488348, + 0.002530706115067005, + 0.005140145309269428, + 0.01612153649330139, + 0.0042815799824893475, + 0.01366956252604723, + 0.014111967757344246, + 0.046220067888498306, + 0.00893058069050312, + -0.011869949288666248, + 0.03269297629594803, + 0.010857666842639446, + -0.00222327234223485, + 0.008563159964978695, + 0.00020644001779146492, + -0.012019917368888855, + -0.023514946922659874, + 0.012694772332906723, + -0.018970923498272896, + -0.0097179114818573, + -0.018506024032831192, + 0.00430407514795661, + 0.0055413092486560345, + -0.0021989024244248867, + -0.007663353346288204, + 0.022210227325558662, + -0.009875377640128136, + -0.03959149122238159, + 0.019570793956518173, + -0.00880310870707035, + 0.005098904483020306, + -0.02922871895134449, + -3.347913298057392e-5, + 0.013287144713103771, + -0.00543633196502924, + -0.0013656440423801541, + 0.0027837767265737057, + -0.012117396108806133, + -0.04834961146116257, + -0.00028025227948091924, + -0.01661643013358116, + -0.013212161138653755, + 0.023020053282380104, + 0.023829879239201546, + -0.020710550248622894, + -0.012057408690452576, + 0.010220304131507874, + -0.005807502195239067, + 0.0016252757050096989, + -0.0005951846251264215, + 0.00902056135237217, + 0.03137325868010521, + 0.012237370014190674, + 0.011067621409893036, + -0.004525277763605118, + 0.0006158051546663046, + -0.0015755989588797092, + 0.004022885579615831, + 0.010715197771787643, + 0.01395450159907341, + 0.003274921327829361, + -0.028868796303868294, + -0.03170318901538849, + -0.003363027237355709, + 0.03146323934197426, + 0.0368620790541172, + 0.00712346937507391, + -0.008248227648437023, + 0.02026064693927765, + 0.01729128509759903, + 0.010692702606320381, + 0.002062056912109256, + 0.014231941662728786, + -0.003891663858667016, + 0.00613368209451437, + 0.011719981208443642, + 0.01037777028977871, + -0.044000543653964996, + 0.017501238733530045, + -0.012072405777871609, + 0.009365487843751907, + -0.012072405777871609, + -0.005046415608376265, + 0.013392122462391853, + 0.014636854641139507, + 0.00016613617481198162, + 0.009440471418201923, + 0.0034567571710795164, + 0.035452380776405334, + -0.014831813052296638, + 0.03005354292690754, + 0.01720130443572998, + 0.0005075471708551049, + 0.004349065478891134, + 0.00872812420129776, + 0.01639147847890854, + -0.010265294462442398, + 0.04592013359069824, + 0.010932650417089462, + 0.024489738047122955, + -0.012619787827134132, + 0.009747905656695366, + -0.0006350197945721447, + -0.025584502145648003, + -0.0038035577163100243, + 0.015851594507694244, + 0.01819109171628952, + -0.03299291059374809, + 0.019120890647172928, + 0.04298076406121254, + 0.04735982418060303, + 0.0023338734172284603, + 0.0017274413257837296, + 0.0026713008992373943, + 0.013212161138653755, + -0.013699555769562721, + -0.04379059001803398, + 0.0052563706412911415, + -0.007228446658700705, + -0.027789028361439705, + -0.00012852707004640251, + -0.03287293761968613, + 0.009470464661717415, + -0.003812930779531598, + 0.03995141386985779, + -0.0024875905364751816, + -0.021520376205444336, + -0.00272753881290555, + -0.0010019722394645214, + 0.026799241080880165, + 0.004727734252810478, + -0.005518814083188772, + 0.03422264754772186, + -0.0009691667510196567, + 0.011352560482919216, + -0.04978930205106735, + 0.0225551538169384, + 0.04559020325541496, + 0.03125328570604324, + -0.0370420403778553, + 0.03326285257935524, + 0.04190099611878395, + -0.004525277763605118, + 0.01523672603070736, + 0.031223291531205177, + 0.028838802129030228, + 0.0004405303334351629, + 0.003034972818568349, + -0.0031624455004930496, + -0.005725019611418247, + -0.006122434511780739, + 0.037761885672807693, + -0.028928782790899277, + -0.008615648373961449, + -0.010220304131507874, + 0.034612562507390976, + 0.029948564246296883, + -0.012619787827134132, + 0.003340532071888447, + 0.0153566999360919, + 0.009965358301997185, + -0.007985783740878105, + -0.02444474771618843, + -0.017561227083206177, + 0.014771825633943081, + -0.011052625253796577, + -0.00698099983856082, + 0.01589658483862877, + 0.02816394716501236, + 0.006321141496300697, + 0.01837105304002762, + 0.036502156406641006, + 0.01522922795265913, + 0.0168713741004467, + -0.011989923194050789, + -0.005027669481933117, + -0.04085122048854828, + 0.042290911078453064, + -0.035842299461364746, + -0.024429749697446823, + -0.011352560482919216, + -0.0056312899105250835, + -0.008075764402747154, + -0.03566233813762665, + 0.00722469761967659, + -0.014831813052296638, + 0.005173888057470322, + 0.03293292224407196, + -0.0040116379968822, + -0.026469312608242035, + -0.00569877540692687, + 0.018401045352220535, + -0.009290503337979317, + 0.02544953115284443, + -0.040791235864162445, + 0.010572727769613266, + 0.016001561656594276, + 0.011914939619600773, + 0.00880310870707035, + -0.002065806183964014, + -0.03332284092903137, + -0.00831571314483881, + 0.0027256642933934927, + -0.030983341857790947, + -0.029408680275082588, + -0.0009218331542797387, + -0.006872273050248623, + 0.014554372057318687, + -0.00514389481395483, + -0.012229871936142445, + -0.013399620540440083, + -0.018386049196124077, + -0.017966140061616898, + -0.01859600469470024, + -0.016901368275284767, + 0.014681844972074032, + -0.04756977781653404, + -0.012492315843701363, + -0.016766397282481194, + 0.009253012016415596, + 0.02715916372835636, + 0.0006022143643349409, + -0.04190099611878395, + 0.022270213812589645, + 0.03062341921031475, + 0.008990568108856678, + 0.017261290922760963, + 0.010677705518901348, + 0.004236589651554823, + 0.014396905899047852, + -0.005368846468627453, + -0.029693620279431343, + -0.02346995659172535, + -0.027894005179405212, + 0.009410478174686432, + -0.015446680597960949, + -0.020725546404719353, + -0.030518442392349243, + 0.0005572240334004164, + -0.0298885777592659, + -0.005702524445950985, + 0.015746615827083588, + -0.01729128509759903, + -0.015206732787191868, + 0.005147643852978945, + 0.007880806922912598, + 0.011360058560967445, + 0.026979202404618263, + -0.0008946515154093504, + 0.024489738047122955, + -0.014104468747973442, + -0.021790318191051483, + 0.016286499798297882, + 0.005402589216828346, + 0.019075900316238403, + -0.0032767958473414183, + -0.017066333442926407, + 0.0034961237106472254, + 0.04226091876626015, + 0.008038273081183434, + -0.012904726900160313, + 0.009163031354546547, + -0.013114681467413902, + 0.0006781355477869511, + 0.015056764706969261, + 0.006493604741990566, + 0.010175313800573349, + -0.002300130669027567, + -0.003064966294914484, + -0.0031230789609253407, + -0.0004210813785903156, + -0.002470719162374735, + 0.02024564892053604, + -0.017471246421337128, + -0.003839174984022975, + 0.008203237317502499, + -0.02955864742398262, + -0.001370330573990941, + 0.0035148696042597294, + -0.005200132727622986, + 0.005743765737861395, + -0.025509517639875412, + 0.002907500136643648, + -0.012859736569225788, + -0.03542238846421242, + 0.02141539752483368, + 0.0020751790143549442, + 0.005222627893090248, + -0.01571662351489067, + 0.03641217574477196, + 0.017486242577433586, + -0.007367166690528393, + 0.01028778962790966, + 0.0117799686267972, + -0.0201706662774086, + -0.019810743629932404, + 0.0030443458817899227, + -0.014089472591876984, + 0.0022045262157917023, + 0.003812930779531598, + 0.004634004086256027, + 0.015116752125322819, + -0.06412622332572937, + 0.017906151711940765, + -0.04801968112587929, + 0.021625353023409843, + 0.015274218283593655, + 0.0020583076402544975, + -0.020635565742850304, + -0.035452380776405334, + -0.03422264754772186, + 0.017771180719137192, + -0.0184310395270586, + -0.024684695526957512, + -0.020800530910491943, + 0.008390696719288826, + -0.020770536735653877, + 0.010880162008106709, + 0.02766905352473259, + 0.002780027687549591, + -0.013932006433606148, + -0.016346488147974014, + -0.005365096963942051, + 0.020440608263015747, + 0.006493604741990566, + 0.007145964540541172, + -0.011622502468526363, + 0.028013980016112328, + 8.090058690868318e-5, + -0.036502156406641006, + -0.023364979773759842, + -0.023904863744974136, + 0.007783327717334032, + 0.010370271280407906, + -0.011345062404870987, + -0.02189529500901699, + 0.013032199814915657, + -0.02478967234492302, + 0.012814746238291264, + -0.013189665973186493, + -0.024489738047122955, + 0.03242303431034088, + 0.005481322295963764, + 0.018326062709093094, + 0.0011734978761523962, + -0.019120890647172928, + -0.0015024896711111069, + 0.011997422203421593, + 0.0056687816977500916, + -0.03884165361523628, + 0.0010291538201272488, + -0.009912869893014431, + 0.021670343354344368, + 0.028463883325457573, + 0.022870086133480072, + -0.06268653273582458, + -0.023364979773759842, + 0.03188315033912659, + -0.026859227567911148, + -0.01630149781703949, + 0.00255132676102221, + -0.023409970104694366, + -0.0008060768013820052, + 0.01317466888576746, + 0.00475772749632597, + 0.0009879127610474825, + -0.0038035577163100243, + 0.010535236448049545, + -0.020860517397522926, + -0.00045271520502865314, + 0.0017855537589639425, + -0.02700919657945633, + -0.016766397282481194, + -0.03365276753902435, + -0.011420045979321003, + -0.07360418140888214, + -0.03152322769165039, + 0.00322243245318532, + 0.04109117016196251, + 0.0025382046587765217, + 0.028193941339850426, + 0.014194449409842491, + 0.01712631992995739, + 0.017336275428533554, + -0.003115580417215824, + -0.014531876891851425, + 0.00040514732245355844, + 0.004885200411081314, + 0.022090252488851547, + -0.008758118376135826, + 0.01255980134010315, + -0.019495811313390732, + 0.007457147818058729, + -0.01811610721051693, + -0.022540155798196793, + 0.016826383769512177, + 0.016076546162366867, + 0.018401045352220535, + 0.0014162581646814942, + 0.014561871066689491, + 0.03176317363977432, + -0.030248500406742096, + 0.0031024583149701357, + -0.01975075528025627, + -0.008870594203472137, + 0.0027931497897952795, + -0.002210150007158518, + -0.021145455539226532, + -0.006606080569326878, + 0.03821178898215294, + 0.0077383373863995075, + 0.03137325868010521, + -0.0017639959696680307, + 0.011060123331844807, + -0.01885094866156578, + 0.022285211831331253, + 0.018730975687503815, + 0.002568198135122657, + -0.015401690267026424, + -0.01169748604297638, + -0.02666427008807659, + 0.006898517720401287, + -0.028943780809640884, + -0.0006645446992479265, + 0.011540019884705544, + 0.02939368411898613, + -0.011105113662779331, + 0.015371697023510933, + -0.021460387855768204, + 0.02125043421983719, + 0.00724344328045845, + 0.026724256575107574, + -0.007640858180820942, + -0.0010132198221981525, + 0.001370330573990941, + 0.05110901594161987, + 0.010347776114940643, + 0.0034998729825019836, + 0.0027837767265737057, + -0.019450820982456207, + 0.01696135476231575, + 0.011674990877509117, + 0.015079259872436523, + 0.022435178980231285, + 0.0012484816834330559, + 0.0021989024244248867, + -0.023170020431280136, + 0.01811610721051693, + 0.033052898943424225, + -0.009200522676110268, + 0.017276287078857422, + 0.04019136354327202, + 0.011630000546574593, + 0.008188240230083466, + 0.0023863622918725014, + -0.018715977668762207, + 0.005635038949549198, + 0.010257795453071594, + -0.005286363884806633, + -0.012942219153046608, + -0.020845521241426468, + 0.010055338963866234, + -0.038901641964912415, + 0.011907441541552544, + 0.0031305772718042135, + 0.008908085525035858, + 0.024249788373708725, + 0.01919587515294552, + 0.022210227325558662, + -0.0004379527526907623, + 0.02478967234492302, + 0.03134326636791229, + -0.00980039406567812, + -0.0005750326672568917, + -0.007798324339091778, + -0.000439124385593459, + 0.005121399648487568, + 0.007273436989635229, + -0.010482747107744217, + -0.00959043949842453, + -0.012289859354496002, + 0.00831571314483881, + 0.01288223173469305, + -0.025479525327682495, + -0.012754758819937706, + -0.011300072073936462, + 0.021265430375933647, + -0.026214366778731346, + -0.013152173720300198, + 0.0030087283812463284, + -0.001493116607889533, + -0.001553103793412447, + -0.020545585080981255, + -0.011952431872487068, + -0.013189665973186493, + -0.004963933490216732, + 0.025164593011140823, + 0.009822889231145382, + -0.05836745724081993, + -0.017726190388202667, + -0.0007404658826999366, + -0.023364979773759842, + -0.01771119423210621, + -0.025149594992399216, + 0.033622775226831436, + -0.012214874848723412, + 0.0012859737034887075, + 0.009620432741940022, + 0.0002497900859452784, + -0.012297357432544231, + 0.024084825068712234, + 0.02691921591758728, + -0.013002205640077591, + 0.014524378813803196, + -0.04139110445976257, + 0.0008440373931080103, + 0.004862705245614052, + -0.004705239087343216, + 0.027114173397421837, + -0.0019514557207003236, + -0.024399757385253906, + 0.01465934980660677, + -0.00010491885768715292, + -0.008953075855970383, + -0.03863169997930527, + 0.003640467766672373, + 0.01876096799969673, + 0.02865884080529213, + -0.025329556316137314, + -0.001303782337345183, + -0.01679639145731926, + -0.006797289475798607, + 0.009567944332957268, + 0.027534082531929016, + -0.015176738612353802, + -0.003962898626923561, + 0.01828107237815857, + 0.0035186188761144876, + -0.013684559613466263, + 0.0100853331387043, + -0.020215656608343124, + -0.020935501903295517, + -0.005481322295963764, + -0.031073322519659996, + -0.018551014363765717, + -0.006962253712117672, + -0.0026563042774796486, + -0.028118956834077835, + -0.004585264716297388, + 0.02924371510744095, + -0.017981136217713356, + -0.019300851970911026, + 0.006302395835518837, + 0.018506024032831192, + 0.00025143034872598946, + 0.006437366828322411, + 0.023095037788152695, + 0.002618812257423997, + 0.03902161493897438, + -0.008668137714266777, + 0.011787466704845428, + 0.02191029116511345, + 0.0032599244732409716, + -0.016691412776708603, + -0.014021987095475197, + 0.017186306416988373, + 0.01712631992995739, + -0.01696135476231575, + -0.0023863622918725014, + 0.014996777288615704, + 0.005522563122212887, + 0.004206595942378044, + 0.013909511268138885, + -0.02156536653637886, + -0.009545449167490005, + -0.05176887661218643, + -0.027519086375832558, + 0.006849777884781361, + -0.002123918617144227, + -0.0036442168056964874, + 0.015281716361641884, + -0.02378488890826702, + 0.007404658943414688, + -0.006081193219870329, + -0.004870203323662281, + 0.003552361624315381, + 0.005458827130496502, + 0.004723984748125076, + -0.019060904160141945, + 0.010512741282582283, + 0.00929800234735012, + 0.003721075365319848, + -0.009890374727547169, + -0.02002069726586342, + -0.039411529898643494, + 0.007843314670026302, + 0.010625217109918594, + -0.005803752690553665, + -0.007663353346288204, + 0.008060768246650696, + 0.01148003339767456, + 0.0032186834141612053, + -0.026589285582304, + -0.02691921591758728, + 0.011180097237229347, + 0.015701625496149063, + -0.004480287432670593, + -0.008090761490166187, + -0.02370990440249443, + -0.008045771159231663, + -0.0026525550056248903, + 0.020545585080981255, + -0.008885590359568596, + 0.01942082680761814, + -0.022585146129131317, + -0.022945068776607513, + -0.030893361195921898, + -0.00843568705022335, + -0.00555630587041378, + 0.03812180832028389, + 0.012867234647274017, + -0.018011130392551422, + -0.012604791671037674, + 0.03293292224407196, + -0.004457792267203331, + 0.004911444615572691, + -0.01877596601843834, + -0.014224443584680557, + 0.02240518480539322, + -0.001765870489180088, + 0.006711057852953672, + 0.00678979093208909, + -0.012462321668863297, + 0.020215656608343124, + -0.008360703475773335, + 0.005421334877610207, + -0.013287144713103771, + 0.01325715146958828, + -0.031163303181529045, + 0.02561449632048607, + -0.007363417651504278, + 0.0002572884550318122, + 0.00559754716232419, + 0.01399199292063713, + -0.013842025771737099, + 0.008000780828297138, + -0.011615004390478134, + -0.009357988834381104, + 0.0018755345372483134, + 0.008210735395550728, + 0.020860517397522926, + 0.0100853331387043, + -0.010715197771787643, + 0.020440608263015747, + 0.01714131608605385, + 0.002360117854550481, + -0.006973501294851303, + -0.01514674536883831, + 0.03323286026716232, + 0.019210871309041977, + 0.0008102946449071169, + 0.021040478721261024, + -0.0012512935791164637, + 0.01655644178390503, + 0.009815391153097153, + 0.026979202404618263, + 0.016361484304070473, + 0.026139382272958755, + -0.010722695849835873, + 0.013976996764540672, + -0.0073446715250611305, + -0.002063931431621313, + 0.01952580362558365, + 0.028133954852819443, + 0.0034567571710795164, + 0.017096325755119324, + 0.013557086698710918, + -0.035032473504543304, + -0.002183905802667141, + -0.0001974185142898932, + -0.0003032161039300263, + 0.008660638704895973, + 0.004349065478891134, + -0.0016084043309092522, + -0.013774540275335312, + 0.005196383222937584, + 0.0012278611538931727, + -0.011667492799460888, + -0.019825739786028862, + -0.0042815799824893475, + -0.000942922371905297, + 0.0050876569002866745, + 0.0009635429596528411, + -0.001661830348894, + -0.021520376205444336, + -0.0015746615827083588, + -0.02436976321041584, + 0.012237370014190674, + 0.008068266324698925, + -0.025719473138451576, + -0.01564163900911808, + -0.008045771159231663, + -0.011037628166377544, + 0.009680420160293579, + -0.01407447550445795, + -0.008158246986567974, + -0.0006003397284075618, + -0.004064126871526241, + 0.010032843798398972, + 0.01918087899684906, + -0.0040116379968822, + 0.0030312235467135906, + 0.0008356017060577869, + 0.008975571021437645, + 0.0005750326672568917, + 0.011615004390478134, + 0.018071116879582405, + -0.014809317886829376, + 0.02435476705431938, + 3.6027413443662226e-5, + 0.023934856057167053, + 0.004139110445976257, + -0.006504852324724197, + 0.028358906507492065, + -0.0010179062373936176, + -0.006204916629940271, + 0.005702524445950985, + 0.0023657416459172964, + 0.012057408690452576, + 0.02066555991768837, + 0.03299291059374809, + -0.007655854802578688, + 0.024729685857892036, + -0.03045845590531826, + -0.009732908569276333, + -0.007805822882801294, + -0.01654144562780857, + -0.01967577263712883, + 0.005575051996856928, + 0.01407447550445795, + 0.00047942824312485754, + 0.011877447366714478, + -0.00929800234735012, + -0.013152173720300198, + -0.015416687354445457, + 0.0010600846726447344, + -0.004922692198306322, + 0.01720130443572998, + -0.002622561529278755, + -0.026049401611089706, + 0.0012719142250716686, + -0.010460251942276955, + 0.01366956252604723, + -0.005518814083188772, + -0.019060904160141945, + -0.011884946376085281, + 0.0016280876006931067, + -0.032962918281555176, + -0.014734333381056786, + 0.015034269541501999, + -0.02444474771618843, + 0.01672140695154667, + 0.0008641892927698791, + -0.0026525550056248903, + -0.015611645765602589, + -0.004349065478891134, + 0.006726054474711418, + -0.0005033293273299932, + 0.00023057544603943825, + -0.008870594203472137, + 0.022540155798196793, + -0.01976575329899788, + 0.007457147818058729, + -0.04322071373462677, + -0.007250941824167967, + -0.026139382272958755, + -0.0012353595811873674, + 0.009058053605258465, + -0.0059687173925340176, + -0.01868598535656929, + 0.004716486670076847, + -0.014726835303008556, + 0.015416687354445457, + -0.004802717827260494, + -0.00046771200140938163, + 0.0019074026495218277, + 0.008083263412117958, + 0.027279138565063477, + -0.030983341857790947, + -0.013279646635055542, + -0.022345198318362236, + 0.022165236994624138, + 0.04106117784976959, + -0.004206595942378044, + 0.002380738500505686, + -0.029273709282279015, + 0.00942547433078289, + 0.005567553453147411, + -0.010272792540490627, + -0.02191029116511345, + -0.0006532971165142953, + 0.001031028456054628, + 0.006816035136580467, + -0.006411122158169746, + 0.04768975079059601, + 0.009462966583669186, + -0.0013047195971012115, + 0.009852882474660873, + -0.005792505107820034, + 0.0518888495862484, + -0.0038166798185557127, + 0.02535955049097538, + -0.018251078203320503, + 0.009417976252734661, + -0.018416043370962143, + 7.803010521456599e-5, + 0.006471109576523304, + 0.007895803079009056, + 0.022270213812589645, + -0.0075171347707509995, + -0.013849523849785328, + 0.013099685311317444, + 0.0031399503350257874, + 0.021640349179506302, + 0.03698205202817917, + -0.0100853331387043, + -0.03773189336061478, + 0.031583212316036224, + -0.011052625253796577, + -0.017816171050071716, + 0.0026525550056248903, + -0.009245513007044792, + 0.014554372057318687, + -0.016736403107643127, + 0.009380483999848366, + 0.015761613845825195, + -0.025824449956417084, + -0.018176093697547913, + 0.012109898030757904, + 0.0009377672686241567, + 0.02000570110976696, + 0.029948564246296883, + -0.04175102710723877, + -0.0500592440366745, + 0.008150748908519745, + -0.009830387309193611, + 0.0030987090431153774, + -0.035542361438274384, + -0.01606154814362526, + 0.007115970831364393, + -0.019315849989652634, + -0.024969633668661118, + -0.004127862863242626, + -0.0051626404747366905, + -0.019615784287452698, + 0.008278220891952515, + -0.024429749697446823, + -0.01375204510986805, + 0.004634004086256027, + 0.030188513919711113, + 0.0044465446844697, + 0.0341026708483696, + -0.0004313916724640876, + 0.004120364785194397, + 0.02048559859395027, + -0.006309893913567066, + 0.01688637211918831, + -0.009350490756332874, + 0.008998066186904907, + 0.0034473841078579426, + -0.023035049438476562, + -0.016931362450122833, + -0.021205443888902664, + 0.028778815641999245, + -0.016766397282481194, + -0.01061771810054779, + -0.010197808966040611, + -0.031103316694498062, + 0.00658733444288373, + 0.005983714014291763, + -0.015776610001921654, + -0.0014125090092420578, + 0.02116045355796814, + -0.013279646635055542, + -0.004236589651554823, + -0.01107512041926384, + 0.004795219749212265, + -0.0018839702242985368, + -0.004660248756408691, + -0.00910304393619299, + 0.005110152065753937, + 0.011030130088329315, + -0.007637109141796827, + 0.0032393038272857666, + -0.005721270572394133, + 0.009972857311367989, + -0.027519086375832558, + -0.015079259872436523, + -0.0049039460718631744, + 0.005886235274374485, + 0.014674346894025803, + -0.005942473188042641, + 0.010647712275385857, + 0.0011988049373030663, + -0.012522309087216854, + -0.013279646635055542, + -0.0010357149876654148, + -0.019135888665914536, + 0.007408407982438803, + -0.003520493395626545, + 0.003025599755346775, + -0.006834781263023615, + -0.0036667119711637497, + -0.006471109576523304, + 0.011929936707019806, + -0.0008646579226478934, + 0.014426900073885918, + -0.0044465446844697, + 0.02002069726586342, + -0.028178945183753967, + 0.09070050716400146, + 0.002618812257423997, + 0.0007821756880730391, + -0.0024388509336858988, + 0.010460251942276955, + -0.012784752994775772, + -0.00918552652001381, + 0.01148753147572279, + 0.011135106906294823, + -0.011427544057369232, + -0.005443830043077469, + 0.0029206224717199802, + 0.016736403107643127, + 0.0070072440430521965, + -0.019165880978107452, + -0.018955927342176437, + 0.012259865179657936, + -0.008630645461380482, + -0.0035073712933808565, + 0.0201706662774086, + 0.019570793956518173, + -0.0034248889423906803, + -0.01268727332353592, + 0.013947002589702606, + -0.015596648678183556, + 0.03524242714047432, + -0.00195520487613976, + 0.006309893913567066, + 0.023859873414039612, + 0.0322730652987957, + 0.0032561752013862133, + -0.0070822280831635, + -0.013489601202309132, + 0.012042412534356117, + 0.0054625761695206165, + 0.00910304393619299, + 0.016586435958743095, + 0.009402979165315628, + -0.004768975079059601, + 0.0015812227502465248, + 0.009238014928996563, + -0.016181522980332375, + 0.03299291059374809, + 0.03431262820959091, + -0.015941575169563293, + 0.0016627677250653505, + 0.011457538232207298, + -0.008705629035830498, + 0.006388626992702484, + 0.01357958186417818, + -0.0006931322859600186, + -0.03806181997060776, + -0.0015259220963343978, + 0.006433617323637009, + 0.006122434511780739, + -0.0012419206323102117, + 0.007955790497362614, + -0.0176062174141407, + -0.019465817138552666, + 0.006977250799536705, + -0.018056120723485947, + 0.005533810704946518, + -0.0009344866848550737, + -0.03134326636791229, + -0.024309776723384857, + -0.003962898626923561, + -0.006283649709075689, + -0.009193024598062038, + -0.007112221792340279, + -0.008165745064616203, + -0.004896447993814945, + 0.001185682718642056, + -0.0012213001027703285, + -0.030683407559990883, + -0.008083263412117958, + 0.016346488147974014, + 0.012934720143675804, + 0.028118956834077835, + 0.01811610721051693, + 0.01049774419516325, + 0.013842025771737099, + 0.004945187363773584, + 0.002302005421370268, + -0.018655991181731224, + 0.012019917368888855, + -0.015746615827083588, + -0.004678994417190552, + -0.022135242819786072, + 0.015851594507694244, + -0.018086113035678864, + -0.015701625496149063, + 0.011097615584731102, + 0.0005783132510259748, + 0.003533615730702877, + -0.005815000273287296, + -0.003038722090423107, + -0.005758762359619141, + -0.014546873979270458, + 0.009350490756332874, + 0.0046714963391423225, + 0.0006917263381183147, + 0.005158891435712576, + -0.013122180476784706, + -0.01612153649330139, + 0.009455468505620956, + 0.012702270410954952, + 0.023080039769411087, + 0.004180351737886667, + -0.022600144147872925, + 0.0097179114818573, + -0.01795114204287529, + -0.018491026014089584, + 0.010760188102722168, + -0.00028892228147014976, + -0.01762121357023716, + 0.008263224735856056, + 0.004585264716297388, + -0.013572083786129951, + 0.003936653956770897, + -0.01396199967712164, + -0.0009813515935093164, + -0.008210735395550728, + -0.016781393438577652, + -0.010347776114940643, + 0.008743121288716793, + -0.0008646579226478934, + -0.006006209179759026, + -0.00271816598251462, + -0.009522954002022743, + -0.009335493668913841, + 0.010325280949473381, + 0.006306144874542952, + 0.017096325755119324, + -0.024399757385253906, + 0.010595222935080528, + -0.0029131239280104637, + 0.00613368209451437, + 0.0013618948869407177, + 0.03104333020746708, + -0.024684695526957512, + 0.026529299095273018, + 0.00851816963404417, + 0.009417976252734661, + 0.02150537818670273, + 0.007067231461405754, + 0.023319989442825317, + -0.017966140061616898, + -0.017801174893975258, + 0.014051980338990688, + -0.012814746238291264, + 0.0353923961520195, + -0.03131327033042908, + -0.0035167443566024303, + -0.021100465208292007, + -0.0034380112774670124, + 0.003831676673144102, + -0.005904980935156345, + 0.025509517639875412, + -0.01828107237815857, + -0.0235599372535944, + 0.014224443584680557, + -0.005717521533370018, + 0.004427798558026552, + 0.004499033093452454, + -0.027294134721159935, + -0.0008234168053604662, + -0.0016243384452536702, + 0.023349981755018234, + 0.012769755907356739, + -0.021595358848571777, + -0.026289351284503937, + -0.01714131608605385, + 0.010437756776809692, + -0.014696842059493065, + 0.003520493395626545, + -0.009140536189079285, + 0.007978285662829876, + -0.0011313194409012794, + -0.02008068561553955, + 0.0067635467275977135, + 0.009830387309193611, + -0.011000135913491249, + 0.016091542318463326, + 0.004476537927985191, + -0.009560445323586464, + -0.012297357432544231, + 0.029363689944148064, + -0.028553863987326622, + -0.005964968353509903, + 0.004322821274399757, + -0.026484308764338493, + -0.0011472534388303757, + -0.013939504511654377, + -0.0052413735538721085, + -0.01820608787238598, + -0.01428443007171154, + 0.009462966583669186, + 0.01562664285302162, + 0.0024838412646204233, + -0.009657924994826317, + -0.012492315843701363, + -0.008270722813904285, + 0.017321277409791946, + -0.013594578951597214, + -0.00794079340994358, + -0.006677315104752779, + -0.03254300728440285, + -0.01612153649330139, + -0.004214094486087561, + 0.00416160561144352, + -0.02323000878095627, + -0.03134326636791229, + 0.0016833882546052337, + 0.006947257090359926, + -0.010385268367826939, + 0.009342992678284645, + -0.008908085525035858, + 0.0242047980427742, + 0.004641502629965544, + 0.011082618497312069, + 0.014014488086104393, + -0.003571107517927885, + -0.0021876548416912556, + -0.002948741428554058, + -0.011674990877509117, + -0.011817460879683495, + 0.015446680597960949, + 0.024399757385253906, + 0.003214934142306447, + 0.0054550776258111, + 0.038481730967760086, + 0.0021782820113003254, + 0.016436468809843063, + 0.015274218283593655, + -0.01661643013358116, + 0.023424966260790825, + 0.006819784641265869, + -0.014764327555894852, + 0.004971431568264961, + 0.004015387035906315, + -0.021925289183855057, + 0.001791177550330758, + -0.017306281253695488, + -0.006339887622743845, + -0.002152037573978305, + -0.0176062174141407, + -0.0008740309276618063, + 0.003115580417215824, + 0.005376344546675682, + -2.1616448066197336e-5, + -0.012364842928946018, + -0.015701625496149063, + -0.012237370014190674, + 0.007112221792340279, + 0.018176093697547913, + 0.0018886566394940019, + 0.006399874575436115, + -0.006816035136580467, + -0.02363492175936699, + -0.013819530606269836, + 0.0036273454315960407, + -0.008210735395550728, + -0.00011657651339191943, + -0.01070020068436861, + 0.005226376932114363, + 0.025794457644224167, + -0.03407267853617668, + -0.003989142831414938, + 0.007730838842689991, + 0.006148678716272116, + -0.002433227142319083, + 0.0003489094087854028, + 0.014989279210567474, + -0.006321141496300697, + -0.0022945068776607513, + 0.0008234168053604662, + 0.00732592586427927, + -0.0008412254974246025, + 0.008533166721463203, + -0.00543633196502924, + 0.007209700532257557, + -0.006103688385337591, + -0.005717521533370018, + -0.02444474771618843, + 0.005076409317553043, + -0.029858583584427834, + 0.011352560482919216, + 0.021850304678082466, + -0.008278220891952515, + 0.020875513553619385, + 0.001537169679068029, + -0.010535236448049545, + 0.007168459706008434, + -0.007172208745032549, + 0.013129678554832935, + 0.007134716957807541, + -0.005815000273287296, + -0.0070822280831635, + 0.016736403107643127, + 0.012447325512766838, + 0.0014453143812716007, + -0.029528655111789703, + -0.0072171990759670734, + -0.019135888665914536, + 0.011232586577534676, + -0.0097179114818573, + 0.02000570110976696, + -0.0004445138620212674, + -0.031583212316036224, + 0.015911580994725227, + -0.00613368209451437, + -0.0037829370703548193, + 0.005387592129409313, + 0.01612153649330139, + -0.011817460879683495, + -0.010850168764591217, + 0.015071761794388294, + 0.021955281496047974, + -0.00860065221786499, + 0.007993282750248909, + -0.003962898626923561, + -0.004326570313423872, + 0.017321277409791946, + 0.0014865555567666888, + 0.01357958186417818, + -0.012589794583618641, + 0.014209446497261524, + -0.002740661147981882, + -0.0005947159370407462, + -0.03155322000384331, + 0.023904863744974136, + 0.013197164051234722, + -0.026139382272958755, + -0.00959793757647276, + -0.002817519474774599, + 0.011719981208443642, + -0.02306504361331463, + -0.02090550772845745, + -0.01910589449107647, + 0.003340532071888447, + -0.007963288575410843, + 0.006122434511780739, + -0.023260001093149185, + 0.0005844056722708046, + -0.0009635429596528411, + 0.02922871895134449, + 0.0027425356674939394, + -0.0030106031335890293, + 0.016076546162366867, + 0.0077758291736245155, + 0.008660638704895973, + 0.0162265133112669, + 0.01804112270474434, + -0.007277186028659344, + -0.019000917673110962, + 0.003906660713255405, + 0.026559293270111084, + 0.006508601363748312, + 0.021340414881706238, + -0.0021614106371998787, + 0.0020826775580644608, + 0.014464391395449638, + -0.010220304131507874, + -0.007873307913541794, + 0.004326570313423872, + 0.004210345447063446, + -0.005998711101710796, + 0.00999535247683525, + -0.015761613845825195, + 0.010392766445875168, + 0.004765226040035486, + -0.0281489510089159, + -0.03368276357650757, + -0.012057408690452576, + -0.019795745611190796, + 0.023245004937052727, + 0.0035186188761144876, + 0.010572727769613266, + 0.004529026802629232, + 0.0029806094244122505, + 0.01217738352715969, + 0.014096970669925213, + -0.00794079340994358, + -0.014734333381056786, + 0.006017456762492657, + -0.0029224969912320375, + 0.0201706662774086, + 0.006857276428490877, + -0.00599121255800128, + -0.009680420160293579, + 0.0028212687466293573, + 0.014381909742951393, + 0.009612934663891792, + -0.009283005259931087, + 0.008218234404921532, + 0.001770557020790875, + -0.024744682013988495, + 0.017306281253695488, + -0.0006078381557017565, + -0.005713772028684616, + -0.012507311999797821, + -0.019795745611190796, + 0.014989279210567474, + -0.010227802209556103, + -0.006381128914654255, + -0.009545449167490005, + -0.0038073069881647825, + 0.010167814791202545, + 0.022045262157917023, + -0.014539375901222229, + 0.001121009117923677, + -0.005518814083188772, + -0.01993071660399437, + -0.022255217656493187, + 0.011247582733631134, + 0.016406474635004997, + -0.001985198352485895, + -0.011247582733631134, + 0.00613368209451437, + -0.006868524011224508, + 0.008285719901323318, + -0.0007812383701093495, + 0.008660638704895973, + -0.0025232078041881323, + 0.0013356504496186972, + -0.004851457662880421, + 0.03566233813762665, + 2.8646187274716794e-5, + 0.00524512305855751, + -0.0007690534694120288, + 0.0004042100044898689, + -0.014711838215589523, + -0.019360840320587158, + -0.0009405791643075645, + -0.019330846145749092, + -0.0005000488017685711, + 0.026889221742749214, + -0.007472144439816475, + 0.013009704649448395, + 0.0007718653650954366, + -0.0028325163293629885, + -0.00767834996804595, + -0.013894514180719852, + 0.00959043949842453, + 0.004311573691666126, + 0.02191029116511345, + 0.007018491625785828, + 0.015401690267026424, + -0.008623147383332253, + -0.008555661886930466, + -0.028763819485902786, + -0.004521528258919716, + -0.0033592781983315945, + 0.009665423072874546, + -0.0040753744542598724, + -0.018056120723485947, + 0.015596648678183556, + -0.006572337821125984, + 0.011847454123198986, + -0.013534591533243656, + 0.002410731976851821, + 0.000890902301762253, + -0.006283649709075689, + 0.003788560861721635, + 0.00021124366321600974, + 0.020860517397522926, + 0.01910589449107647, + 0.00024229168775491416, + -0.003016226924955845, + 0.013219659216701984, + -0.0029393683653324842, + 0.0291537344455719, + 0.028838802129030228, + 0.01098513975739479, + 0.009148034267127514, + -0.005833746399730444, + -0.012379840016365051, + -0.0003913221589755267, + -0.009620432741940022, + -0.0017977387178689241, + 0.004101618658751249, + -0.003244927618652582, + -0.014036983251571655, + 0.0035879788920283318, + 0.030323484912514687, + -0.03566233813762665, + 0.008675635792315006, + 0.01157001405954361, + 0.006219913251698017, + -0.008210735395550728, + 0.019645778462290764, + 0.02955864742398262, + 0.0015634139999747276, + 0.018730975687503815, + 0.006144929677248001, + -0.006576086860150099, + 0.014179453253746033, + 0.013939504511654377, + 0.020380619913339615, + -0.005027669481933117, + 0.007580871228128672, + -0.001962703187018633, + 0.002202651696279645, + -0.007010993547737598, + 0.011914939619600773, + 0.0307133998721838, + -0.00034234829945489764, + 0.008510671555995941, + 0.003966647665947676, + -0.01169748604297638, + 0.008375700563192368, + -0.010197808966040611, + -0.0032093103509396315, + 0.007970787584781647, + -0.009762901812791824, + 0.026574289426207542, + -0.0032205579336732626, + -0.0035148696042597294, + 0.006414871662855148, + -0.0005136396503075957, + -0.0039441525004804134, + -0.022090252488851547, + -0.01140504889190197, + 0.0297086164355278, + 0.0019702017307281494, + -0.021460387855768204, + 0.009965358301997185, + -0.019360840320587158, + 0.000398117583245039, + -0.01049024611711502, + -0.01885094866156578, + -0.004326570313423872, + 0.004570268094539642, + -0.01688637211918831, + 0.025149594992399216, + 0.02946866676211357, + 0.010970142669975758, + 0.01436691265553236, + 0.022120246663689613, + -0.009657924994826317, + -0.00034773777588270605, + 0.016031555831432343, + 0.014186951331794262, + -0.005691276863217354, + 0.0005914354114793241, + -0.010452753864228725, + 0.00746839540079236, + 0.00415410753339529, + 0.0024969633668661118, + 0.01408197358250618, + -0.02092050388455391, + 0.005155142396688461, + 0.004180351737886667, + 0.0025550760328769684, + 0.013414617627859116, + -0.0013253402430564165, + 0.005053914152085781, + 0.003323660697788, + 0.01189244445413351, + 0.01119509432464838, + -0.006418620701879263, + -0.0008712190319783986, + -0.004611508920788765, + 0.0003613285953179002, + -0.022420182824134827, + 0.0007104723481461406, + 0.014096970669925213, + -0.007205951493233442, + 0.022930072620511055, + 0.0004892698489129543, + -0.01795114204287529, + -0.01664642244577408, + -0.020440608263015747, + -0.017171310260891914, + -0.016811387613415718, + 0.006058698054403067, + -0.030083535239100456, + 7.228915637824684e-5, + 0.016571439802646637, + -0.005961218848824501, + 0.0004339692532084882, + -0.007745835464447737, + -0.038511723279953, + -0.009073050692677498, + -0.0022082754876464605, + 0.023904863744974136, + 0.011240084655582905, + 0.007502138148993254, + 0.024639705196022987, + -0.01952580362558365, + 0.023110033944249153, + -0.0092155197635293, + -0.018745971843600273, + 0.0014321922790259123, + -0.007337173447012901, + 0.0097179114818573, + -0.0032561752013862133, + 0.010227802209556103, + -0.027953993529081345, + -0.015611645765602589, + -0.023499950766563416, + -0.0016927612014114857, + 0.010272792540490627, + 0.0020508093293756247, + 0.011037628166377544, + 0.0025625743437558413, + 0.015506668016314507, + -0.010347776114940643, + -0.01694635860621929, + -0.01892593316733837, + -0.0019289605552330613, + 0.01020530704408884, + 0.008428188972175121, + -0.015926577150821686, + -0.0026150629855692387, + -0.013894514180719852, + 0.013782038353383541, + -0.0036292201839387417, + 0.014021987095475197, + -0.016601432114839554, + -0.009178027510643005, + 0.02149038203060627, + 0.0011378804920241237, + 0.007768330629914999, + -0.01160750538110733, + -0.017996132373809814, + -0.009372985921800137, + 0.016106538474559784, + 0.017096325755119324, + -0.01562664285302162, + -0.00046208821004256606, + 0.016526449471712112, + -0.0052038817666471004, + -0.019885726273059845, + -0.008060768246650696, + 0.0018783464329317212, + -0.026634275913238525, + 0.003481126856058836, + 0.0005656597204506397, + -0.033382825553417206, + 0.016361484304070473, + -0.0028737573884427547, + -0.01140504889190197, + 0.0032524261623620987, + 0.01771119423210621, + -0.027444101870059967, + 0.008285719901323318, + 0.00851816963404417, + -0.0011650621891021729, + 0.014389407820999622, + 0.002530706115067005, + 0.0068010385148227215, + -0.020050691440701485, + 0.012012418359518051, + 0.008375700563192368, + -0.010467750951647758, + -0.002798773581162095, + -0.010332779958844185, + 0.06460611522197723, + 0.0003856983676087111, + -0.02693421207368374, + -0.02288508228957653, + -0.0058787367306649685, + 0.008210735395550728, + 0.001303782337345183, + -0.009852882474660873, + 0.005211380310356617, + 0.008248227648437023, + 0.018056120723485947, + -0.017471246421337128, + 0.0032711720559746027, + -0.012859736569225788, + -0.042530860751867294, + 0.0030480949208140373, + 0.003947901539504528, + 0.006054949015378952, + 0.007753334008157253, + -0.013684559613466263, + 0.002489465055987239, + -0.027039188891649246, + 0.0031999372877180576, + -0.0016646422445774078, + 0.0042628338560462, + -0.010392766445875168, + -2.0371599021018483e-5, + 0.0005459764506667852, + 0.011510026641190052, + -0.012837241403758526, + -0.017171310260891914, + -0.01482431497424841, + -0.004199097864329815, + 0.016031555831432343, + -0.012717267498373985, + -0.022045262157917023, + -0.012079903855919838, + -0.001067583099938929, + -0.00015898927813395858, + -0.01168998796492815, + -0.00851816963404417, + -0.007228446658700705, + -0.011952431872487068, + 0.01552166510373354, + -0.00044404520303942263, + -0.010280290618538857, + 0.005188885144889355, + -0.006534845568239689, + 0.02880880981683731, + 0.0038654194213449955, + -0.012019917368888855, + -0.004172853194177151, + 0.021445391699671745, + 0.0007545253611169755, + 0.015851594507694244, + 0.01218488160520792, + -0.007798324339091778, + -0.02906375378370285, + 0.009680420160293579, + 0.0003132920537609607, + -0.00831571314483881, + 0.0005370720755308867, + 0.0006640760693699121, + 0.0012606666423380375, + -5.603288082056679e-5, + 0.004693991504609585, + -0.012439826503396034, + -0.01909089833498001, + -0.0005825310945510864, + 0.012949717231094837, + -0.022690124809741974, + 0.0023488702718168497, + 0.019900724291801453, + -0.009140536189079285, + 0.008705629035830498, + 0.028373902663588524, + 0.01612153649330139, + -0.004427798558026552, + -0.004454042762517929, + 0.008698130957782269, + -0.007232195697724819, + 0.022045262157917023, + -0.01474183239042759, + -0.02288508228957653, + -0.024819666519761086, + 0.002311378251761198, + -0.0029318700544536114, + 0.0022363944444805384, + 0.0017639959696680307, + 0.00831571314483881, + -0.027204154059290886, + 0.007213450036942959, + -0.003156821709126234, + -0.01415695808827877, + 0.012222373858094215, + -0.013129678554832935, + 0.020035695284605026, + 0.006703559309244156, + 0.014846810139715672, + 0.002838140120729804, + 0.009290503337979317, + 0.024489738047122955, + 0.024594714865088463, + -0.004997676238417625, + -0.0006092441035434604, + -0.0030724648386240005, + 0.011457538232207298, + 0.024819666519761086, + 0.00615242775529623, + -0.012349845841526985, + -0.016196519136428833, + 0.020860517397522926, + -0.0014874928165227175, + -0.002956239739432931, + -0.00539509067311883, + -0.02098049223423004, + -0.008983070030808449, + -0.004221593029797077, + -0.0016955730970948935, + -0.003383647883310914, + -0.003563609207049012, + 0.022495165467262268, + 0.01119509432464838, + -0.0029000018257647753, + -0.020560581237077713, + 0.0019926968961954117, + -0.014801819808781147, + -0.0044502937234938145, + 0.006898517720401287, + 0.028673838824033737, + 0.019360840320587158, + 0.013609575107693672, + 0.018146101385354996, + 0.033382825553417206, + -0.03063841722905636, + -0.014726835303008556, + 0.0201706662774086, + 0.008015777915716171, + 0.0003861670265905559, + -0.0031474486459046602, + -0.005946222227066755, + -0.01853601634502411, + 0.008263224735856056, + -0.0008580968715250492, + -0.0162265133112669, + -0.006579835899174213, + -0.016856377944350243, + 0.028673838824033737, + -0.014816815964877605, + 0.0022270213812589645, + 0.0073071797378361225, + -0.011937434785068035, + 0.01885094866156578, + -0.018970923498272896, + 0.0015690377913415432, + 0.006737302057445049, + -0.016181522980332375, + 0.004791470244526863, + 0.009762901812791824, + 0.0017518110107630491, + -0.0035861043725162745, + 0.03419265151023865, + -0.008668137714266777, + 0.006122434511780739, + 0.021760324016213417, + -0.015566655434668064, + -0.032393038272857666, + 0.011015133000910282, + 0.01305469498038292, + -0.005983714014291763, + -0.0036573391407728195, + -0.021430395543575287, + -0.007663353346288204, + 0.00918552652001381, + -0.004615258425474167, + 0.002331998897716403, + -0.00446529034525156, + 0.00041288003558292985, + -0.017156314104795456, + -0.008533166721463203, + 0.01769619807600975, + 0.018491026014089584, + -0.0017443126998841763, + -0.022945068776607513, + 0.007299681194126606, + -0.00011077697854489088, + 0.009972857311367989, + 0.011734978295862675, + -0.011719981208443642, + 0.0007582745747640729, + -0.01354958862066269, + -0.02733912505209446, + -0.0002472125052008778, + 0.013002205640077591, + 0.012342347763478756, + 0.02305004745721817, + -0.001966452458873391, + -0.005050164647400379, + -0.018251078203320503, + -0.031973131000995636, + -0.0041503580287098885, + 0.0026844232343137264, + 0.01564163900911808, + 0.015341703779995441, + -0.016586435958743095, + -0.013677060604095459, + 0.021520376205444336, + 0.005856241565197706, + -0.002948741428554058, + 0.0050089238211512566, + -0.013219659216701984, + -0.011442541144788265, + -0.004952685907483101, + 0.018236082047224045, + -0.005522563122212887, + 0.007667102385312319, + -0.0062536559998989105, + 0.004727734252810478, + 0.008945577777922153, + -0.00869063287973404, + 0.008390696719288826, + 0.02057557925581932, + -0.004266583360731602, + -0.004337817896157503, + 0.006523597985506058, + 0.02057557925581932, + 0.009672921150922775, + 0.01219237968325615, + 0.022420182824134827, + -0.02733912505209446, + -0.0012334849452599883, + 0.006111186929047108, + 0.01494428887963295, + 0.0006500165909528732, + 0.01859600469470024, + 0.0033461558632552624, + -0.009380483999848366, + 0.0004260021960362792, + 0.02484966069459915, + 0.0035167443566024303, + -0.004420300014317036, + 0.007408407982438803, + -0.0029581142589449883, + -0.0009274569456465542, + -0.010760188102722168, + -0.00262631056830287, + -0.009575442411005497, + -0.00732592586427927, + -0.04481036961078644, + -0.00902056135237217, + -0.009897872805595398, + 0.010572727769613266, + -0.007490890566259623, + -0.003154946956783533, + -0.0010610220488160849, + -0.007352170068770647, + -0.011060123331844807, + 0.014974282123148441, + 0.01679639145731926, + -0.011420045979321003, + -0.007948292419314384, + 0.0032130596227943897, + -0.024984631687402725, + 0.01670641079545021, + 0.009440471418201923, + 0.0007301556179299951, + 0.011517524719238281, + 0.008203237317502499, + -0.007970787584781647, + -0.015101755037903786, + -0.014606861397624016, + -0.012439826503396034, + 0.003321786178275943, + 0.0014125090092420578, + 0.021430395543575287, + -0.015101755037903786, + -0.013834526762366295, + 0.012747260741889477, + -0.0015502918977290392, + 0.0040716249495744705, + 0.003749194322153926, + 0.009462966583669186, + 0.01477932371199131, + 0.004064126871526241, + -0.0144868865609169, + -0.012147389352321625, + -0.001666516880504787, + -0.002095799660310149, + 0.006954755634069443, + -0.009635429829359055, + 0.0020676807034760714, + 0.006542344111949205, + 0.0022888830862939358, + -0.0027968990616500378, + 0.023005057126283646, + -0.0020470600575208664, + 0.0001507879060227424, + -0.0021651596762239933, + -0.013369627296924591, + -0.016856377944350243, + -0.010355275124311447, + -0.02913873828947544, + -0.008555661886930466, + -0.030443457886576653, + 0.01337712537497282, + -0.01951080746948719, + 0.011225087568163872, + -0.02873382531106472, + 0.0049189431592822075, + -0.019885726273059845, + -0.011210091412067413, + 0.010152818635106087, + 0.011862451210618019, + 0.011322567239403725, + 0.01247731875628233, + 0.026709260419011116, + 0.0088930893689394, + 0.004435297101736069, + -0.021700337529182434, + 0.014509381726384163, + -0.00913303717970848, + 0.0009593251161277294, + -0.020155668258666992, + -0.006043701432645321, + -0.00510265352204442, + -0.005942473188042641, + 0.01565663516521454, + 0.0030199759639799595, + 0.005964968353509903, + 0.012664778158068657, + 0.0029131239280104637, + -3.942512194043957e-5, + -0.009740406647324562, + -0.016811387613415718, + 0.0010807053185999393, + 0.02411481738090515, + -0.011622502468526363, + 0.004517779219895601, + 0.011322567239403725, + 0.012567299418151379, + -0.010062837973237038, + -0.017096325755119324, + 0.016781393438577652, + 0.023499950766563416, + -0.00276878010481596, + -0.0020826775580644608, + 0.014876803383231163, + -0.011097615584731102, + 0.00860815029591322, + 0.009575442411005497, + -0.03617222607135773, + 0.014231941662728786, + 0.033562786877155304, + 0.001031028456054628, + -0.013302141800522804, + 0.0010525863617658615, + -0.024909647181630135, + 0.025329556316137314, + 0.023484952747821808, + 0.015259221196174622, + 0.0015821600100025535, + 0.02939368411898613, + -0.007835816591978073, + 0.029843587428331375, + 0.0007817069999873638, + -0.008623147383332253, + -0.007895803079009056, + -0.010272792540490627, + -0.00460775988176465, + -0.02147538587450981, + -0.025554507970809937, + -0.020800530910491943, + 0.0129722123965621, + -0.0014012614265084267, + 0.010332779958844185, + 0.003443635068833828, + -0.028883792459964752, + -0.004615258425474167, + -0.012657280080020428, + 0.018401045352220535, + 0.007063481956720352, + 0.006339887622743845, + 0.012619787827134132, + 0.0004742730816360563, + 0.006621077191084623, + -0.00010591473983367905, + -0.01276225782930851, + -0.020275643095374107, + 0.0028906287625432014, + 0.007130967453122139, + 0.013939504511654377, + -0.012424830347299576, + -0.02279510162770748, + -0.010392766445875168, + -0.005376344546675682, + 0.00913303717970848, + 0.006767295766621828, + 0.008368201553821564, + -0.012904726900160313, + 0.007610864471644163, + 0.011007634922862053, + 0.026364333927631378, + -0.011592509225010872, + 0.030743394047021866, + 0.02222522348165512, + -0.02691921591758728, + -0.002909374888986349, + 0.005859990604221821, + -0.011412547901272774, + 0.0010385268833488226, + -0.0012138016754761338, + 0.010520239360630512, + -0.01672140695154667, + 0.020320633426308632, + 0.00040514732245355844, + 0.013482103124260902, + -0.015761613845825195, + -0.013924507424235344, + -0.0006434554816223681, + 0.008915584534406662, + -0.020125675946474075, + -0.002281384775415063, + 0.02445974387228489, + -0.009972857311367989, + -0.012297357432544231, + -0.018895938992500305, + -0.01679639145731926, + -0.0006443927995860577, + 0.016571439802646637, + -0.002193278633058071, + -0.011764971539378166, + -0.0033873971551656723, + -0.005151392892003059, + -0.01564163900911808, + 0.010302785784006119, + 0.006246157921850681, + 0.006024955306202173, + 0.0023076292127370834, + -0.0020489348098635674, + -0.0032955417409539223, + -0.006617328152060509, + 0.006122434511780739, + -0.0009499521111138165, + -0.002988107968121767, + -0.007423405069857836, + -0.01279974915087223, + -0.009118041023612022, + 0.012987209483981133, + 0.005005174316465855, + -0.0012587920064106584, + 0.0014574993401765823, + -0.005140145309269428, + -0.019795745611190796, + -0.015214230865240097, + -0.04103118181228638, + 0.005844993982464075, + 0.0005506629240699112, + 0.009312998503446579, + -0.013017202727496624, + 0.01444939523935318, + 0.02741410955786705, + 0.012379840016365051, + 0.004907695576548576, + 0.005350100342184305, + 0.00658733444288373, + 0.004851457662880421, + 0.0014340667985379696, + 0.020350627601146698, + 0.010670207440853119, + -0.01810111105442047, + 0.012499813921749592, + 0.004604010842740536, + 0.005290113389492035, + 0.005065161734819412, + 0.011157602071762085, + 0.007145964540541172, + 0.015109253115952015, + 0.011989923194050789, + 0.018506024032831192, + -0.021790318191051483, + 0.03152322769165039, + -0.01811610721051693, + 0.012042412534356117, + 0.00287000834941864, + 0.01993071660399437, + 0.01428443007171154, + 0.009552947245538235, + -0.017981136217713356, + 0.008788111619651318, + 0.0069697522558271885, + 0.0012887855991721153, + -0.0036085995379835367, + 0.001537169679068029, + 0.009672921150922775, + 0.012942219153046608, + -0.005676280241459608, + -0.009755403734743595, + 0.013482103124260902, + -0.019705764949321747, + 0.017561227083206177, + 0.0011931811459362507, + 0.03962148725986481, + 0.005196383222937584, + 0.0010254046646878123, + -0.02693421207368374, + -7.41051699151285e-5, + -0.00574001669883728, + 0.0057475147768855095, + -0.01049774419516325, + 0.007670851889997721, + 0.01506426278501749, + -0.013744546100497246, + -0.014644352719187737, + -0.014119465835392475, + -0.0045027825981378555, + -0.006313643418252468, + 0.007783327717334032, + 0.01753123290836811, + 0.024984631687402725, + -0.0029412428848445415, + 0.005413836799561977, + -0.016826383769512177, + -0.0052413735538721085, + -0.021790318191051483, + -0.005151392892003059, + -0.004952685907483101, + -0.014689343050122261, + -0.01639147847890854, + -0.004210345447063446, + 0.00910304393619299, + 0.010932650417089462, + -0.0001287613995373249, + 0.04325070604681969, + -0.011090116575360298, + -0.018820956349372864, + -0.00668856268748641, + -0.020440608263015747, + -0.0038073069881647825, + -0.021535372361540794, + -0.007580871228128672, + -0.0004611508920788765, + 0.018835952505469322, + -0.015109253115952015, + -0.016751401126384735, + 0.005608794745057821, + 0.016241509467363358, + -0.012484816834330559, + 0.0038691686931997538, + 0.0004302200395613909, + 0.007288433611392975, + -0.008405693806707859, + 0.03440260887145996, + -0.019540801644325256, + 0.015416687354445457, + -0.00271816598251462, + 0.009545449167490005, + -0.004214094486087561, + -0.007584620267152786, + -0.005376344546675682, + -0.017576223239302635, + 0.030833374708890915, + -0.00950795691460371, + -0.0015559156890958548, + 0.019780749455094337, + 0.012612289749085903, + -0.018820956349372864, + 0.01927085965871811, + -0.017831169068813324, + 0.0023657416459172964, + -0.013399620540440083, + -0.004277830943465233, + 0.004139110445976257, + 0.002195153385400772, + -0.008143249899148941, + -0.02156536653637886, + 0.000528167758602649, + -0.0034061430487781763, + 0.016526449471712112, + 0.0074758934788405895, + 0.019135888665914536, + -0.013392122462391853, + 0.008458182215690613, + -0.01894092932343483, + -0.005680029280483723, + 0.003799808444455266, + 0.000452480890089646, + -0.033382825553417206, + -0.00037140457425266504, + 0.01169748604297638, + -0.013722050935029984, + 0.010302785784006119, + -0.0040116379968822, + 0.0251196026802063, + -0.023484952747821808, + 0.006624826230108738, + 0.023814883083105087, + 0.02101048454642296, + -0.0011435042833909392, + -0.00017820388893596828, + -0.018655991181731224, + -0.008128253743052483, + 0.016781393438577652, + -0.0018221084028482437, + -0.009905371814966202, + 0.01934584230184555, + 0.027639061212539673, + -0.0068535273894667625, + -0.0027744038961827755, + 0.007025990169495344, + -0.017741188406944275, + 0.01573161967098713, + 0.012724765576422215, + -0.009170529432594776, + 0.015056764706969261, + 0.010025345720350742, + -0.01993071660399437, + -0.007074729539453983, + -0.009073050692677498, + -0.00015418561815749854, + 0.0019130264408886433, + 0.017831169068813324, + 0.006943508051335812, + 0.0011838080827146769, + -0.005785007029771805, + -0.020350627601146698, + -0.007018491625785828, + -0.018461033701896667, + -0.0015812227502465248, + 0.04684993252158165, + 0.04124113917350769, + 0.0015737243229523301, + -0.005728769116103649, + -0.0010244674049317837, + -0.019135888665914536, + 0.010340278036892414, + -0.007573372684419155, + -0.008098259568214417, + 0.01238733809441328, + 0.012732263654470444, + 0.00980039406567812, + 0.0026431819424033165, + 0.012567299418151379, + -0.011944932863116264, + 0.020125675946474075, + 0.004191599320620298, + -0.004517779219895601, + -0.01136755757033825, + 0.024834662675857544, + 0.002468844410032034, + 0.0010375895071774721, + -0.012934720143675804, + -0.0020208158530294895, + 0.01021280512213707, + -0.011330065317451954, + -0.007873307913541794, + -0.009350490756332874, + -0.0025250823237001896, + -0.0016862001502886415, + 0.03179316967725754, + -0.0010207181330770254, + -0.017021343111991882, + -0.0017780554480850697, + -0.018011130392551422, + 0.019855733960866928, + 0.01654144562780857, + 0.00860815029591322, + 0.007858311757445335, + -0.011232586577534676, + -0.040551286190748215, + -0.006036202888935804, + 0.014126963913440704, + -0.021355411037802696, + -0.011360058560967445, + -0.0018436663085594773, + 0.013362128287553787, + -4.0743198042036965e-5, + -0.018566010519862175, + -0.005361347924917936, + -0.0013459607725962996, + 0.008120754733681679, + -0.007265938445925713, + 0.003312413115054369, + -0.017921149730682373, + 0.019450820982456207, + 0.012514811009168625, + -0.046639978885650635, + 0.002084552077576518, + -0.010152818635106087, + -0.008975571021437645, + 0.004626506008207798, + 0.009395481087267399, + 0.03311288356781006, + -0.004978930111974478, + 0.023664914071559906, + 0.005811251234263182, + 0.0003383647999726236, + 0.0033798986114561558, + -0.006699810270220041, + 0.014306925237178802, + -0.01308468822389841, + 0.0035786060616374016, + -0.010587724857032299, + -0.009980355389416218, + -0.010130323469638824, + -0.012642282992601395, + -0.02131042070686817, + -0.00020233933173585683, + 0.03710202872753143, + 0.019795745611190796, + -0.010167814791202545, + -0.0026450566947460175, + -0.0018867821199819446, + -0.005545058287680149, + 0.006223662756383419, + -0.016241509467363358, + 0.007247192785143852, + 0.005695026367902756, + 0.006073694676160812, + -0.027354121208190918, + -0.008870594203472137, + -0.01703633926808834, + -0.010175313800573349, + 0.0036460915580391884, + -0.0013581456150859594, + -0.007314678281545639, + 0.007108472287654877, + 0.010107828304171562, + 0.01721630059182644, + 0.0066323247738182545, + 0.00543633196502924, + 0.0006729803862981498, + 0.005466325208544731, + -0.004045380745083094, + -0.03003854490816593, + 0.008570658043026924, + 0.00893058069050312, + 0.005117650143802166, + 0.012154888361692429, + -0.03509245812892914, + 0.03500247746706009, + 0.010842669755220413, + 0.003074339358136058, + 0.0028043973725289106, + 0.007055983878672123, + -0.006197418086230755, + 0.0014246938517317176, + 0.023319989442825317, + 0.006129932589828968, + -0.0017283785855397582, + -0.00039108784403651953, + 0.01160750538110733, + 0.004157856572419405, + 0.009178027510643005, + -0.01975075528025627, + 0.005117650143802166, + 0.028223935514688492, + -0.006006209179759026, + -0.02724914439022541, + 0.01255980134010315, + 0.007205951493233442, + -0.002116420306265354, + -0.00011294447904219851, + -0.005680029280483723, + -0.00239948439411819, + -0.0028550114948302507, + 0.0050089238211512566, + 0.01859600469470024, + -0.016691412776708603, + -0.002481966745108366, + 0.01573161967098713, + 0.016841381788253784, + 0.0030593425035476685, + 0.007089726626873016, + 0.004229091107845306, + -0.012717267498373985, + 0.007093475665897131, + 0.003014352172613144, + -0.0010994512122124434, + -0.005972466431558132, + -0.002830641809850931, + -0.005897482857108116, + 0.016106538474559784, + -0.0027631563134491444, + 0.011817460879683495, + -0.01753123290836811, + 0.024324772879481316, + -0.005346351303160191, + 0.0013572083553299308, + 0.006478607654571533, + 0.003572982270270586, + 0.020455604419112206, + 0.026154380291700363, + 0.0063848779536783695, + -0.005859990604221821, + -0.0176062174141407, + 0.011097615584731102, + -0.015701625496149063, + -0.013602077029645443, + -0.012042412534356117, + 0.012567299418151379, + -0.0024650953710079193, + 0.012199878692626953, + -0.005117650143802166, + -0.010595222935080528, + -0.0012437952682375908, + -0.00015125656500458717, + -0.01663142628967762, + 0.00195520487613976, + 0.01580660417675972, + -0.00032571126939728856, + 0.016076546162366867, + 0.008698130957782269, + -0.017171310260891914, + 0.021025482565164566, + 0.0038654194213449955, + 0.004896447993814945, + 0.01736626774072647, + -0.004731483291834593, + 0.019855733960866928, + 0.009762901812791824, + -0.004510280676186085, + -0.014584366232156754, + -0.018341058865189552, + 0.004476537927985191, + -0.005068910773843527, + -0.005972466431558132, + -0.02224022150039673, + -0.001368455938063562, + -0.006144929677248001, + -0.007490890566259623, + -0.01958579197525978, + -0.0065160999074578285 + ], + "7462b66d-9ad6-410f-9ceb-ccc834c899a7": [ + -0.026927925646305084, + -0.006980567704886198, + -0.006187779363244772, + -0.0028268275782465935, + -0.012657737359404564, + -0.03402270749211311, + 0.016944168135523796, + 0.01572139374911785, + -0.023582089692354202, + 0.01234868448227644, + -0.014901731163263321, + 0.047486670315265656, + 0.012859294191002846, + -0.04254182428121567, + -0.015936387702822685, + -0.0016804758924990892, + -0.010709359310567379, + 0.0238911435008049, + -0.00839146226644516, + -0.04719105362892151, + 0.06191810593008995, + 0.019658461213111877, + -0.025409534573554993, + -0.001624208060093224, + -0.009278309531509876, + -0.023770209401845932, + -0.00933877658098936, + 0.014028320088982582, + -0.047674790024757385, + -0.006654717959463596, + 0.015197346918284893, + 0.007578517775982618, + 0.019268784672021866, + -0.024025514721870422, + -0.0001988269214052707, + -0.040956247597932816, + 0.015210784040391445, + 0.006238168571144342, + -0.0035910620354115963, + -0.01647387072443962, + -0.05439333617687225, + 0.00820334255695343, + 0.012563677504658699, + -0.014659863896667957, + -0.048803504556417465, + -0.008572862483561039, + 0.004766807425767183, + -0.011367777362465858, + 0.02683386579155922, + -0.005566313862800598, + 0.013786452822387218, + -0.013470681384205818, + -0.025046734139323235, + 0.006728622131049633, + 0.01772351935505867, + -0.04367053881287575, + 0.0086400480940938, + 0.06621797382831573, + -0.000791528495028615, + -0.04724480211734772, + -0.007027597166597843, + 0.01514359936118126, + 0.006836118642240763, + -0.010541396215558052, + -0.028647873550653458, + -0.05665076524019241, + -0.0108437305316329, + -0.010467492043972015, + -0.07551643997430801, + -0.02131122350692749, + 0.01017859485000372, + 0.04520236700773239, + -0.03859131783246994, + 0.00433682044968009, + -0.02991095930337906, + 0.021297786384820938, + 0.013242251239717007, + -0.00308717112056911, + 0.0111595019698143, + 0.021848706528544426, + -0.036925118416547775, + -0.0066379220224916935, + -0.0026588640175759792, + 0.00804881565272808, + 0.05939193069934845, + -0.007692733313888311, + -0.00038778598536737263, + -0.024401752278208733, + -0.00798834953457117, + -0.00724259065464139, + 0.008875196799635887, + 0.04181621968746185, + -9.201256762025878e-5, + 0.0017149084014818072, + -0.006154186557978392, + -0.01886567287147045, + 0.017696645110845566, + -0.005126249510794878, + 0.016742613166570663, + -0.007397117093205452, + 0.01448518130928278, + 0.019000044092535973, + -0.03426457569003105, + 0.01549296360462904, + -0.011387933045625687, + 0.004017689730972052, + -0.004377131815999746, + -0.020195944234728813, + -0.02469736896455288, + 0.08626610785722733, + -0.004753370303660631, + -0.028325382620096207, + 0.03418395295739174, + -0.02149934135377407, + -0.02942722477018833, + -0.04299868270754814, + 0.021270912140607834, + -0.011374495923519135, + 0.023407408967614174, + -0.011199813336133957, + 0.023608963936567307, + 0.009466429241001606, + 0.03313586115837097, + 0.05436646193265915, + 0.005764510948210955, + -0.0032954460475593805, + 0.015694519504904747, + 0.023044606670737267, + 0.03294774144887924, + 0.014982353895902634, + -0.020464686676859856, + -0.015694519504904747, + -0.0035104393027722836, + 0.013302717357873917, + 0.022614620625972748, + 0.021029043942689896, + 0.007027597166597843, + 0.06557299196720123, + -0.013208658434450626, + 0.03195339813828468, + -0.06895913928747177, + -0.03628014028072357, + -0.015210784040391445, + 0.011589488945901394, + 0.008855041116476059, + 0.01194557175040245, + -0.054715823382139206, + 0.029400350525975227, + 0.00877441931515932, + 0.027922270819544792, + -0.015788579359650612, + -0.015157035551965237, + 0.023111792281270027, + 0.04826602339744568, + -0.012516648508608341, + 0.023367097601294518, + -0.008626610971987247, + 0.0005248863017186522, + -0.002724369755014777, + 0.031066548079252243, + 0.003930348437279463, + -0.06895913928747177, + -0.01797882467508316, + -0.020504998043179512, + 0.022104009985923767, + 0.009049879387021065, + -0.005888804327696562, + 0.01298022735863924, + -0.02061249315738678, + 0.020061573013663292, + 0.02948097325861454, + 0.012745078653097153, + -0.02375677227973938, + -0.019940638914704323, + 0.018180381506681442, + 0.0059996601194143295, + 0.04332117363810539, + 0.009123783558607101, + 0.014847982674837112, + -0.020316878333687782, + 0.0005639378214254975, + -0.009137220680713654, + -0.003500361694023013, + -0.024106137454509735, + -0.019456904381513596, + -6.403612496796995e-5, + 0.00710150133818388, + -0.011240124702453613, + -0.013443807139992714, + -0.0017300251638516784, + -0.03219526261091232, + -0.0036548881325870752, + -0.003090530401095748, + 0.03628014028072357, + -0.030394693836569786, + -0.016567930579185486, + 0.015103287994861603, + 0.004897818900644779, + 0.006194497924298048, + 0.026927925646305084, + -0.02765352837741375, + -0.036360763013362885, + -0.06234809011220932, + 0.04001564905047417, + -0.054662074893713, + 0.04367053881287575, + -0.00029624582384712994, + 0.013853638432919979, + 0.0011077199596911669, + -0.045659225434064865, + 0.03990815207362175, + -0.04745979607105255, + 0.009533614851534367, + -0.001783773535862565, + -0.02929285354912281, + 0.023111792281270027, + -0.0012681252555921674, + -0.014982353895902634, + 0.016823235899209976, + -0.020007824525237083, + -0.03507080301642418, + 0.005573032423853874, + -0.02274899184703827, + -0.023407408967614174, + -0.03681762143969536, + -0.016621679067611694, + -0.011260280385613441, + 0.019497215747833252, + -0.051517799496650696, + 0.02444206364452839, + 0.06197185441851616, + 0.02136497013270855, + -0.0018627163954079151, + -0.012973508797585964, + 0.005489050876349211, + 0.046599823981523514, + -0.014377685263752937, + 0.03305523842573166, + 0.019712209701538086, + -0.050066594034433365, + 0.015466089360415936, + -0.0037993367295712233, + 0.016930731013417244, + 0.004246119875460863, + -0.006953693460673094, + -0.01259727030992508, + -0.019255347549915314, + -0.009903134778141975, + 0.03028719872236252, + -0.03934379667043686, + 0.010366713628172874, + 0.02148590423166752, + -0.006335587240755558, + -0.017642896622419357, + -0.02093498408794403, + 0.03249087929725647, + 0.01448518130928278, + -0.033592723309993744, + -0.03361959755420685, + -0.03657575696706772, + 0.02759977988898754, + -0.013000383041799068, + 0.04426176846027374, + -0.0024304334074258804, + 0.021136540919542313, + -0.019591275602579117, + 0.004716418217867613, + -0.052270274609327316, + 0.010716077871620655, + 0.03426457569003105, + -0.03657575696706772, + 0.008908789604902267, + 0.0030435004737228155, + -0.023273037746548653, + -0.030717184767127037, + 0.018489433452486992, + -0.02602764032781124, + -0.017951950430870056, + -0.008095845580101013, + -0.023555217310786247, + 0.0073164948262274265, + -0.0028385850600898266, + -0.011959008872509003, + 0.05858570709824562, + 0.007974912412464619, + -0.0012698048958554864, + -0.003098928602412343, + 0.0005194274708628654, + -0.027626654133200645, + 0.005549517460167408, + -0.010319683700799942, + -0.01878505013883114, + 0.0025160948280245066, + 0.037435729056596756, + -0.011213250458240509, + 0.011320747435092926, + -0.016769487410783768, + -0.007813666947185993, + -0.028809117153286934, + -0.017871327698230743, + -0.016379810869693756, + 0.00949330348521471, + 0.004360335413366556, + -0.038752563297748566, + 0.0176025852560997, + -0.038241952657699585, + 0.02972283959388733, + 0.002694136230275035, + -0.010077816434204578, + 0.011723860166966915, + 0.04267619177699089, + -0.004417442716658115, + -0.015251095406711102, + 0.0028856147546321154, + 0.019188161939382553, + 0.004521580412983894, + -0.011885104700922966, + -0.0025312115903943777, + 0.011072160676121712, + -0.027949145063757896, + 0.0364682599902153, + 0.007074627093970776, + -0.06148811802268028, + 0.024872051551938057, + 0.020397501066327095, + -0.034909557551145554, + 0.04111749306321144, + -0.03869881480932236, + 0.003863163059577346, + -0.003243377199396491, + -0.019967513158917427, + -0.005623421631753445, + -0.015076413750648499, + -0.011670111678540707, + -0.012483055703341961, + -0.03262525051832199, + -0.03361959755420685, + -0.04909912124276161, + -0.009439554996788502, + -0.009002849459648132, + -0.019752521067857742, + -0.01105872355401516, + -0.012281498871743679, + 0.001081685652025044, + 0.0245226863771677, + 0.018690990284085274, + -0.00820334255695343, + 0.012825701385736465, + -0.0226280577480793, + 0.02507360652089119, + 0.0007541566155850887, + -0.0024858613032847643, + 0.06164936348795891, + -0.014283625409007072, + 0.05589829012751579, + 0.007585236337035894, + 0.008445209823548794, + -0.023837395012378693, + 0.0017023112159222364, + -0.020195944234728813, + 0.04442301392555237, + -0.022090572863817215, + -0.03351210057735443, + -0.014847982674837112, + 0.008680359460413456, + 0.027976019307971, + -0.011744015850126743, + 0.0002695815928746015, + 0.02872849628329277, + 0.028325382620096207, + -0.027546031400561333, + 0.009594080969691277, + 0.02344772033393383, + -0.022466812282800674, + -0.03128154203295708, + -0.018516307696700096, + 0.032329633831977844, + -0.009446273557841778, + -0.011918697506189346, + 0.0139880096539855, + -0.00013500075147021562, + 0.023407408967614174, + 0.029131608083844185, + -0.02093498408794403, + 0.02481830306351185, + 0.013739422895014286, + -0.013571459800004959, + -0.017495090141892433, + 0.03864506632089615, + 0.014283625409007072, + -0.006755496375262737, + 0.008693796582520008, + -0.020343752577900887, + 0.008808011189103127, + -0.015560148283839226, + 0.005509206559509039, + 0.026296382769942284, + 0.0069201006554067135, + -0.010682485066354275, + -0.02023625560104847, + -0.002707573352381587, + 0.00036028193426318467, + 0.014471744187176228, + 0.02676668018102646, + 0.044342391192913055, + -0.010292809456586838, + -0.0018660756759345531, + -0.031066548079252243, + 0.00939252506941557, + -0.02953472174704075, + -0.004420801997184753, + 0.0032752903643995523, + 0.011730578728020191, + -0.016930731013417244, + 0.02406582608819008, + 0.003483565291389823, + 0.04111749306321144, + 0.020290004089474678, + -0.022278692573308945, + -0.021848706528544426, + 0.013678955845534801, + 0.06869039684534073, + -0.005865289364010096, + 0.016823235899209976, + -0.00300822826102376, + 0.003493643132969737, + 0.008062252774834633, + 0.023031169548630714, + -0.030260324478149414, + -0.020840924233198166, + -0.014780797064304352, + 0.012409151531755924, + 0.009318620897829533, + 0.0037523070350289345, + -0.0052068717777729034, + -0.04041876271367073, + 0.009432836435735226, + 0.0007856497541069984, + -0.030152827501296997, + -0.011112472042441368, + -0.003080452559515834, + 0.0044308798387646675, + -0.0018089680233970284, + -0.012436025775969028, + -0.0045417360961437225, + -0.02300429530441761, + -0.020760301500558853, + 0.005915678106248379, + 0.005311009474098682, + 3.4616248740348965e-5, + -0.0071686869487166405, + 0.00823693536221981, + -0.03262525051832199, + 0.02055874653160572, + 0.008660203777253628, + -0.000733161170501262, + -0.028432879596948624, + -0.010682485066354275, + 0.0010380151215940714, + -0.040391888469457626, + -0.009755326434969902, + 0.0025043373461812735, + 0.011374495923519135, + -0.003564187791198492, + 0.014149254187941551, + -0.06326181441545486, + 0.0032652125228196383, + 0.023031169548630714, + 0.008472084067761898, + -0.004128545522689819, + -0.011105753481388092, + 0.011146064847707748, + -0.04995909705758095, + -0.015398903749883175, + 0.019443467259407043, + -0.0007869094843044877, + 0.008935663849115372, + 0.011146064847707748, + 0.014028320088982582, + -0.01530484389513731, + -0.026672620326280594, + -0.0245226863771677, + 0.00741727277636528, + -0.015855764970183372, + -0.0003722493420355022, + -0.01231509167701006, + 0.0043939282186329365, + -0.0395856648683548, + 0.0007722126902081072, + -0.018489433452486992, + 0.028835991397500038, + -0.00028049922548234463, + 0.0005840934463776648, + -0.008747545070946217, + 0.0032702514436095953, + -0.02942722477018833, + 0.004797040484845638, + -0.03367334231734276, + -0.032840244472026825, + -0.031657781451940536, + 0.04447676241397858, + -0.017253221943974495, + -0.014915168285369873, + 0.01955096423625946, + -0.00036028193426318467, + 0.01584232784807682, + -0.029373476281762123, + -0.025355786085128784, + -0.018623804673552513, + -0.00042074883822351694, + -0.033216483891010284, + -0.025422971695661545, + -0.03257150202989578, + -0.0011858231155201793, + -0.0026084748096764088, + 0.0003294186317361891, + -0.01859693042933941, + -0.006873070728033781, + 0.0446111336350441, + -0.01427018828690052, + -0.0028402647003531456, + -0.0044779097661376, + -0.015264532528817654, + 0.0008578741108067334, + -0.020894672721624374, + 0.003150997217744589, + 0.004588765557855368, + -0.010588426142930984, + 0.0023430923465639353, + -0.017172599211335182, + -0.014149254187941551, + -0.01216056477278471, + 0.001354626496322453, + 0.01654105633497238, + 0.03211464360356331, + 0.003933707717806101, + -0.024549560621380806, + 0.006987286265939474, + 0.027761025354266167, + 0.051571547985076904, + -0.0257723368704319, + -0.00039135522092692554, + 0.008646766655147076, + -0.01597669906914234, + -0.018623804673552513, + 0.02268180623650551, + -0.009036442264914513, + 0.018637241795659065, + -0.01005766075104475, + 0.011938853189349174, + -0.0464923270046711, + 0.0006206255056895316, + -0.011791044846177101, + 0.0049616447649896145, + 0.003493643132969737, + -0.023111792281270027, + 0.042595572769641876, + -0.004612280521541834, + -0.03327023237943649, + -0.00452829897403717, + -0.024912362918257713, + 0.02155308984220028, + 0.015855764970183372, + 0.003953863400965929, + -0.011320747435092926, + 0.014861419796943665, + -0.0077061704359948635, + 0.01584232784807682, + 0.0005269857938401401, + 0.023152103647589684, + 0.017441341653466225, + 0.03660263121128082, + 0.05777947977185249, + -0.011374495923519135, + -0.027384785935282707, + 0.03555453568696976, + -0.000600889790803194, + 0.004854148253798485, + 0.005620062351226807, + -0.014700175262987614, + 0.004719777498394251, + -0.012805545702576637, + -0.0201153215020895, + -0.0024119573645293713, + 0.03370021656155586, + 0.019833141937851906, + -0.027868522331118584, + -0.029588468372821808, + -0.01609763130545616, + 0.011992601677775383, + 0.004484628327190876, + 0.0383225753903389, + 0.00771288899704814, + 0.013188502751290798, + -0.027304165065288544, + 0.04278368875384331, + -0.00513968663290143, + 0.006906663533300161, + -0.002549687633290887, + -0.018005698919296265, + 0.01702479086816311, + 0.007672577630728483, + 0.011952290311455727, + 0.015009228140115738, + -0.013329591602087021, + -0.0002569843200035393, + -0.0032719310838729143, + -0.0027512439992278814, + -0.024025514721870422, + 0.021862143650650978, + 0.010480929166078568, + 0.0041520604863762856, + 0.014216439798474312, + -0.009977038018405437, + 0.012456181459128857, + 0.029507847502827644, + 0.008613173849880695, + 0.04724480211734772, + -0.014068631455302238, + -0.016796361654996872, + -9.631663124309853e-5, + -0.027976019307971, + 0.07379648834466934, + 0.019765958189964294, + 0.010111409239470959, + 0.007827104069292545, + -0.028701622039079666, + -0.006103797350078821, + -0.022654931992292404, + -0.0032030660659074783, + 0.0029611983336508274, + 0.01298022735863924, + 0.015573585405945778, + -0.03085155598819256, + 0.048857253044843674, + 0.02840600535273552, + -0.0004984320257790387, + 0.0036649659741669893, + 0.001315155066549778, + -0.01924191042780876, + -0.027949145063757896, + -0.01834162510931492, + 0.0032836885657161474, + 0.006039971485733986, + -0.007430709898471832, + 0.008458646945655346, + -0.026497939601540565, + 0.043589916080236435, + 0.015479526482522488, + 0.007088064216077328, + -0.030367819592356682, + 0.005052345339208841, + 0.006852915044873953, + 0.011320747435092926, + 0.00048667454393580556, + -0.002228877041488886, + 0.013020538724958897, + -0.005888804327696562, + 0.0007289620698429644, + -0.007081345655024052, + 0.02639044262468815, + -0.03740885481238365, + 0.027183230966329575, + 0.018314752727746964, + 0.020034698769450188, + 0.018744738772511482, + 0.007289620582014322, + -0.0011035208590328693, + 0.011206531897187233, + 0.044664882123470306, + -0.00633222796022892, + -0.009345495142042637, + 0.038618192076683044, + 0.012536803260445595, + -0.0016124506946653128, + -0.00870723370462656, + -0.011649955995380878, + -0.02331334911286831, + -0.03740885481238365, + 0.0010774865513667464, + -0.008404899388551712, + 0.0025177744682878256, + -0.025678277015686035, + -0.004121826961636543, + 0.012724922969937325, + -0.0005139686400070786, + -0.01030624657869339, + 0.028191011399030685, + -0.01037343218922615, + -0.025006422773003578, + 0.005519283935427666, + -0.0032702514436095953, + -0.015949824824929237, + -0.03998877480626106, + 0.012355403043329716, + 0.014229876920580864, + 0.002613513730466366, + 0.005243823863565922, + 0.033968959003686905, + -0.02223838120698929, + -0.056973256170749664, + -0.0035171578638255596, + -0.01226134318858385, + -0.021459029987454414, + 0.02312522940337658, + 0.014417995698750019, + -0.027008548378944397, + -0.023716460913419724, + -0.0027428457979112864, + 0.003560828510671854, + 0.0062851980328559875, + 0.00795475672930479, + -0.004907896742224693, + 0.02702198550105095, + 0.014619552530348301, + 0.010467492043972015, + -0.016326062381267548, + -0.004857507534325123, + 0.005573032423853874, + 0.012496492825448513, + 0.008881915360689163, + 0.002151613822206855, + 0.00233469414524734, + -0.03802696242928505, + -0.04049938544631004, + 0.005431943107396364, + 0.007114938460290432, + 0.04708356037735939, + 0.004578688181936741, + -0.0033374368213117123, + 0.0127316415309906, + -0.00047365736099891365, + 0.02544984593987465, + -0.0033727092668414116, + -0.0067857299000024796, + -0.0032702514436095953, + -0.01603044755756855, + 0.011979164555668831, + 0.01597669906914234, + -0.041009996086359024, + -0.010265936143696308, + -0.007672577630728483, + 0.0018694349564611912, + 0.0002284305082866922, + 0.007007441949099302, + 0.009513459168374538, + 0.03216839209198952, + -0.006305353716015816, + -0.00044888275442644954, + -0.008230216801166534, + 0.03826882690191269, + -0.032705873250961304, + 0.02394489198923111, + 0.028997236862778664, + 0.006201216485351324, + -0.00510609382763505, + 0.003238338278606534, + 0.023555217310786247, + -0.020706553012132645, + 0.04184309393167496, + 0.02324616350233555, + 0.013725985772907734, + 0.0053278058767318726, + -0.012341965921223164, + -0.01784445345401764, + -0.01859693042933941, + -0.012442744337022305, + 0.011334184557199478, + 0.02313866652548313, + -0.020840924233198166, + 0.02023625560104847, + 0.023837395012378693, + 0.027102608233690262, + 0.01564077101647854, + -0.013228814117610455, + -0.006537143606692553, + 0.013074287213385105, + -0.016446996480226517, + -0.04375116154551506, + 0.002791555132716894, + -0.03294774144887924, + -0.03055593930184841, + 0.007188842631876469, + -0.03791946545243263, + 0.021217163652181625, + -0.009795637801289558, + 0.05557579919695854, + -0.00848552118986845, + -0.019886890426278114, + 0.010044223628938198, + 0.01281898282468319, + 0.008902071043848991, + -0.009184249676764011, + -0.006446443498134613, + 0.013853638432919979, + 0.012509929947555065, + 0.019080664962530136, + -0.04829289764165878, + 0.01652761921286583, + 0.026121700182557106, + 0.004713058937340975, + -0.007901008240878582, + 0.038752563297748566, + 0.0396125391125679, + -0.008734107948839664, + -0.0014612834202125669, + 0.026041077449917793, + 0.041520603001117706, + 0.011219969019293785, + -0.018019136041402817, + -0.013316154479980469, + -0.006446443498134613, + 0.006899944972246885, + 0.020719990134239197, + -0.04238057881593704, + -0.00870723370462656, + -0.013403495773673058, + 0.02859412506222725, + 0.02406582608819008, + -0.032652124762535095, + -0.00437041325494647, + 0.014915168285369873, + 0.02626950852572918, + -0.010890760459005833, + -0.009298465214669704, + -0.034157078713178635, + 0.02350146882236004, + -0.011139346286654472, + -0.002475783694535494, + 0.012603988870978355, + 0.02972283959388733, + 0.0015200705965980887, + 0.009533614851534367, + 0.026377005502581596, + 0.02300429530441761, + 0.011320747435092926, + -0.022090572863817215, + 0.010111409239470959, + -0.05681201070547104, + 0.05046970397233963, + -0.023393971845507622, + -0.01678292453289032, + -0.03009907901287079, + -0.009788919240236282, + 0.01589607633650303, + -0.021270912140607834, + 0.019255347549915314, + 0.0048205554485321045, + 0.022104009985923767, + 0.03738198056817055, + 0.011354340240359306, + -0.03934379667043686, + -0.0016888740938156843, + 0.007504614070057869, + -0.0041520604863762856, + 0.03402270749211311, + -0.024119574576616287, + -0.013658800162374973, + 0.011676830239593983, + -0.01666199043393135, + 0.022292129695415497, + 0.01654105633497238, + -0.04235370457172394, + -0.012429307214915752, + 0.0024455501697957516, + -0.016326062381267548, + -0.029803462326526642, + -0.0009447953198105097, + -0.005650295875966549, + 0.021230600774288177, + -0.01037343218922615, + 0.0008801292860880494, + -0.003984096925705671, + 0.0025832802057266235, + -0.012872731313109398, + -0.02066624164581299, + -0.0048205554485321045, + 0.0007340009906329215, + -0.03915567696094513, + -0.005156482569873333, + -0.012241187505424023, + 0.021848706528544426, + 0.03614576905965805, + -0.006627844180911779, + -0.04657294973731041, + 0.02081404998898506, + 0.03652200847864151, + 0.016688864678144455, + 0.001433569355867803, + 0.006799167022109032, + -0.0030485393945127726, + 0.004014330450445414, + 0.0038161331322044134, + -0.019268784672021866, + -0.014659863896667957, + -0.026094825938344002, + 0.001050612423568964, + -0.006429647095501423, + -0.0006256644264794886, + -0.02162027545273304, + 0.0033105628099292517, + -0.029964707791805267, + 0.010286091826856136, + 0.00039891357300803065, + -0.01508985087275505, + -0.014646426774561405, + 0.014928605407476425, + 0.019886890426278114, + 0.0017652974929660559, + 0.014968916773796082, + 0.03533954173326492, + 0.02464362047612667, + -0.004400646314024925, + -0.015788579359650612, + 0.043912407010793686, + 0.019846579059958458, + 0.00016093012527562678, + 0.011649955995380878, + -0.016232002526521683, + 0.002327975584194064, + 0.03192652389407158, + -0.0031342008151113987, + -0.00012135370343457907, + 0.01590951345860958, + -0.0032954460475593805, + 0.004874303936958313, + 0.015734830871224403, + -0.0016099312342703342, + -0.004907896742224693, + 0.02268180623650551, + -0.003933707717806101, + 0.005576391704380512, + 0.013961135409772396, + -0.009405962191522121, + 0.007719607558101416, + -0.010440617799758911, + 0.0007839701138436794, + -0.0020743506029248238, + -0.01886567287147045, + 0.004407364875078201, + -0.009117064997553825, + -0.00727618345990777, + 0.004071437753736973, + -0.017132287845015526, + -0.009627673774957657, + 0.001320193987339735, + -0.03289399296045303, + 0.028137262910604477, + 0.02690105140209198, + 0.015385466627776623, + -0.005781307350844145, + 0.002771399449557066, + 0.011784326285123825, + 0.008001786656677723, + 0.018717864528298378, + 0.011434962041676044, + -0.004172216169536114, + 0.0029779947362840176, + 0.021633712574839592, + 0.0003739289822988212, + 0.011710423044860363, + 0.0027294086758047342, + 0.012053068727254868, + 0.011374495923519135, + -0.05665076524019241, + 0.010171876288950443, + -0.03628014028072357, + 0.020639367401599884, + 0.0015309882583096623, + 0.000357972428901121, + -0.017562275752425194, + -0.03700574114918709, + -0.006463239435106516, + 0.0264038797467947, + 0.00633222796022892, + -0.015479526482522488, + -0.03216839209198952, + -0.0011581090511754155, + -0.03571578115224838, + 0.007403835654258728, + 0.02621576003730297, + 0.025342348963022232, + -0.010427180677652359, + -0.03112029656767845, + -0.02413301169872284, + 0.006147467996925116, + 0.011132627725601196, + 0.004786962643265724, + 0.010554833337664604, + 0.014243314042687416, + -0.007383680436760187, + -0.02695479989051819, + -0.028809117153286934, + -0.01109231635928154, + 0.007081345655024052, + 0.004185653291642666, + -0.03687136992812157, + -0.020639367401599884, + -0.00014003965770825744, + -0.023420846089720726, + 0.01620512828230858, + -0.011938853189349174, + -0.03714011237025261, + 0.04412740096449852, + 0.0057510738261044025, + 0.004786962643265724, + -0.019765958189964294, + -0.006258324254304171, + 0.0005710762925446033, + -0.00465259188786149, + -0.005176638253033161, + -0.03149653598666191, + 0.0007058670744299889, + -4.388049273984507e-5, + 0.009795637801289558, + 0.02457643486559391, + 0.02816413715481758, + -0.05605953559279442, + -0.03474831208586693, + 0.028056640177965164, + -0.02257430925965309, + -0.018758175894618034, + 0.01263086311519146, + -0.01564077101647854, + -0.004088234156370163, + 0.018274441361427307, + 0.0070611899718642235, + 0.00888863392174244, + -0.008646766655147076, + 0.018328189849853516, + -0.011327465996146202, + -0.008962538093328476, + 0.008545988239347935, + -0.0066782329231500626, + -0.011119190603494644, + -0.03136216476559639, + 0.0045417360961437225, + -0.046223584562540054, + -0.009634392336010933, + 0.012691330164670944, + 0.039505042135715485, + 0.002761321607977152, + 0.0036616066936403513, + -0.0034499724861234426, + 0.017374156042933464, + 0.0022675087675452232, + -0.000928838737308979, + 0.0032198624685406685, + -0.015533274039626122, + -0.004938130266964436, + 0.022896798327565193, + 0.00451150257140398, + 0.010319683700799942, + -0.022050263360142708, + -0.01099825743585825, + -0.0019870095420628786, + -0.024872051551938057, + 0.011938853189349174, + 0.003090530401095748, + 0.011817919090390205, + -0.0010086214169859886, + 0.01266445592045784, + 0.024872051551938057, + -0.03942441940307617, + 0.0011858231155201793, + -0.03009907901287079, + -0.012388995848596096, + 0.0066345627419650555, + -0.0031224435660988092, + -0.002474104054272175, + -0.009332058019936085, + 0.02532891184091568, + 0.032464005053043365, + 0.016796361654996872, + -0.0038329295348376036, + -0.003157715778797865, + -0.023044606670737267, + 0.016957605257630348, + 0.010474210605025291, + -0.010675766505300999, + 0.00606684572994709, + -0.003497002413496375, + -0.014028320088982582, + 0.014942042529582977, + -0.007927882485091686, + 0.004719777498394251, + -0.0003355072985868901, + 0.040257517248392105, + 0.007235872093588114, + 0.024925800040364265, + -0.019658461213111877, + 0.04033813998103142, + 0.009513459168374538, + 0.020518435165286064, + -0.00699400482699275, + 0.00302502466365695, + 0.013611771166324615, + 0.04665357246994972, + -0.007813666947185993, + 0.027505720034241676, + 0.004524939693510532, + -0.02854037657380104, + 0.008586299605667591, + 0.007800229825079441, + 0.009211123920977116, + -0.0038127738516777754, + -0.004605561960488558, + -0.013208658434450626, + -0.022278692573308945, + 0.010319683700799942, + 0.033538974821567535, + -0.004803759045898914, + 0.027707276865839958, + 0.032517753541469574, + 0.02061249315738678, + 0.003906833473592997, + 0.001777054974809289, + -0.004299868363887072, + -0.013705830089747906, + 0.012355403043329716, + -0.014995791018009186, + -0.006345665082335472, + -0.021405281499028206, + 0.0007012480637058616, + -0.008492239750921726, + 0.041144367307424545, + -0.011898541823029518, + 0.01904035545885563, + -0.0029494408518075943, + 0.024670494720339775, + 0.022359315305948257, + -0.014135817065834999, + 0.018905984237790108, + 0.020061573013663292, + -0.02268180623650551, + -0.01483454555273056, + -0.007759918924421072, + 0.0021280988585203886, + -0.006345665082335472, + 0.002941042883321643, + -0.018556619063019753, + -0.0012832420179620385, + 0.004645873326808214, + 0.007477739825844765, + 0.006906663533300161, + 0.002868818351998925, + -0.009567206725478172, + -0.02200995199382305, + 0.011985883116722107, + -0.029749713838100433, + 0.014821108430624008, + -0.014646426774561405, + 0.01973908394575119, + -0.009748607873916626, + -0.015734830871224403, + 0.002937683602795005, + -0.02426738291978836, + 0.005717481020838022, + 0.012792108580470085, + -0.011307310312986374, + -0.0320608951151371, + -0.02999158203601837, + 0.00028112909058108926, + 4.739723226521164e-5, + -0.03009907901287079, + -0.027707276865839958, + 0.04017689451575279, + -0.010312965139746666, + 0.006836118642240763, + 0.012765234336256981, + 0.006822681985795498, + -0.014444869942963123, + 0.01766977086663246, + 0.025678277015686035, + -0.014982353895902634, + 0.024536123499274254, + -0.045229241251945496, + -0.0270354226231575, + 0.0035944213159382343, + 0.01758914813399315, + 0.012765234336256981, + -0.013880512677133083, + -0.025543905794620514, + 0.01231509167701006, + 0.0019164647674188018, + -0.0013294320087879896, + -0.03421082720160484, + -0.008290683850646019, + 0.00011306050146231428, + 0.010111409239470959, + -0.02953472174704075, + -0.02464362047612667, + -0.0015335077187046409, + -0.021270912140607834, + 0.015197346918284893, + 0.02727729082107544, + -0.0157079566270113, + -0.00481047760695219, + 0.00995688233524561, + 0.014942042529582977, + -0.015331718139350414, + 0.009587362408638, + -0.01427018828690052, + -0.0176025852560997, + 0.016688864678144455, + -0.03367334231734276, + -0.012442744337022305, + -0.006503550801426172, + 0.0032081049866974354, + -0.030905304476618767, + 0.003984096925705671, + 0.019631586968898773, + -0.02929285354912281, + -0.011455117724835873, + -0.015412340871989727, + 0.033592723309993744, + 0.011656674556434155, + 0.011468554846942425, + 0.026820428669452667, + 0.006087000947445631, + 0.042595572769641876, + 0.004454394802451134, + 0.012845857068896294, + 0.010292809456586838, + -0.009513459168374538, + -0.012241187505424023, + -0.005932474508881569, + 0.020142195746302605, + 0.01779070496559143, + -0.02156652696430683, + -0.007739763241261244, + 0.004088234156370163, + -0.0016678785905241966, + 0.0169710423797369, + 0.021714335307478905, + -0.030125953257083893, + -0.0058484929613769054, + -0.03313586115837097, + -0.01589607633650303, + 0.016326062381267548, + -0.005495769437402487, + -0.001939979731105268, + 0.025060171261429787, + -0.028325382620096207, + -0.006342305801808834, + 0.0037254327908158302, + -0.022668369114398956, + 0.004360335413366556, + -0.00045182209578342736, + -0.004058000631630421, + -0.005798103753477335, + 0.011623081751167774, + 0.018126633018255234, + 0.0012588872341439128, + -0.02972283959388733, + -0.007867415435612202, + -0.04670732095837593, + 0.0025916784070432186, + 0.008290683850646019, + -0.003018306102603674, + -0.017575712874531746, + 0.010816856287419796, + 0.008364588022232056, + -0.006553940009325743, + 0.0006726942374370992, + -0.020639367401599884, + 0.00631543155759573, + -0.0005945911980234087, + -0.005173278972506523, + -0.018247567117214203, + -0.012456181459128857, + 0.004726496059447527, + -0.007733044680207968, + 0.022345878183841705, + -0.029239105060696602, + 0.01980626955628395, + -0.014458307065069675, + -0.03060968779027462, + -0.024213634431362152, + -0.005670451559126377, + 0.0016628396697342396, + 0.03657575696706772, + 0.009412680752575397, + 0.0017182676820084453, + -0.017132287845015526, + 0.025745462626218796, + 0.001545265200547874, + 0.01936284452676773, + -0.015681082382798195, + -0.03625326603651047, + 0.013457244262099266, + 0.0006046689813956618, + -0.005015393253415823, + 0.0005584789905697107, + -0.011414806358516216, + 0.015506400726735592, + -0.011737297289073467, + 0.006429647095501423, + -0.004659310448914766, + 0.020599056035280228, + -0.025248289108276367, + 0.043912407010793686, + 0.011025131680071354, + -0.008969256654381752, + 0.018314752727746964, + 0.011932134628295898, + -0.015936387702822685, + 0.01828787848353386, + 0.007303057704120874, + -0.006480035837739706, + -0.00010434738942421973, + 0.0019668538589030504, + 0.0197928324341774, + -0.015506400726735592, + -0.0027378068771213293, + 0.008653485216200352, + 0.006859633605927229, + -0.008619892410933971, + -0.01999438740313053, + -0.01620512828230858, + 0.016017010435461998, + 0.013504274189472198, + 0.007323213387280703, + 0.012832419946789742, + 0.004498065449297428, + 0.03308211266994476, + -0.003957222681492567, + 0.021633712574839592, + 0.0037422291934490204, + 0.030878430232405663, + -0.010171876288950443, + 0.012395714409649372, + 0.0035171578638255596, + -0.010198750533163548, + 0.009184249676764011, + 0.02425394579768181, + -0.015627333894371986, + 0.012328528799116611, + -0.006147467996925116, + -0.037166986614465714, + -0.018059447407722473, + -0.008848322555422783, + -0.00013510572898667306, + 0.00042599771404638886, + 0.01549296360462904, + 0.005472254473716021, + -0.0050758603028953075, + 0.011132627725601196, + 0.020330315455794334, + -0.0033811074681580067, + -0.029695965349674225, + 0.0009590722038410604, + -0.012294935993850231, + 0.001624208060093224, + 0.0034533317666500807, + 0.0015393864596262574, + 0.0021415359806269407, + 0.014350811019539833, + -0.009090190753340721, + 0.003013267181813717, + 0.011589488945901394, + -0.022023389115929604, + -0.02375677227973938, + 0.012180720455944538, + 0.0019466981757432222, + 0.006258324254304171, + -0.011858230456709862, + -0.013564741238951683, + 0.0007974072359502316, + -0.0014873177278786898, + -0.0011438322253525257, + 0.03292086720466614, + -0.01621856540441513, + 0.0045350175350904465, + -0.002858740510419011, + 0.01124684326350689, + -0.004571969620883465, + -0.01181120052933693, + 0.016299188137054443, + -0.008895352482795715, + 0.023850832134485245, + 0.00713509414345026, + 0.019456904381513596, + 0.004642514046281576, + -0.009190968237817287, + 0.01905379258096218, + -0.01495547965168953, + -0.0004963324754498899, + -0.02049156092107296, + -0.0020004466641694307, + 0.006873070728033781, + 0.02821788564324379, + 0.009197686798870564, + -0.005626780912280083, + 0.02375677227973938, + -0.02985721081495285, + -0.022466812282800674, + -0.009614236652851105, + -0.017199473455548286, + -0.019094102084636688, + -0.00860645528882742, + 0.006080282386392355, + 0.02608138881623745, + 0.02054530940949917, + 0.010265936143696308, + -0.003631373168900609, + -0.021660586819052696, + -0.011797763407230377, + -0.005774588789790869, + 0.019134413450956345, + -0.0083242766559124, + -0.011891823261976242, + -0.00021205405937507749, + 0.00046357954852283, + -0.019846579059958458, + -0.013329591602087021, + -0.005200153216719627, + 0.005260620266199112, + -0.004182294011116028, + -0.04845414310693741, + -0.017118850722908974, + 0.0007608751184307039, + -0.006600969936698675, + 0.004182294011116028, + -0.006103797350078821, + -0.0019215036882087588, + -0.011179657652974129, + -0.002722690114751458, + 0.004420801997184753, + -0.003695199266076088, + -0.009278309531509876, + -0.007195561192929745, + 0.023958329111337662, + -0.030206575989723206, + -0.002237275242805481, + -0.04477237910032272, + -0.0003728792071342468, + -0.008330995216965675, + -0.014108942821621895, + -1.896151661640033e-5, + -0.0013353106332942843, + -0.010857167653739452, + 0.0207468643784523, + -0.023031169548630714, + 0.005633499473333359, + 0.0008150434005074203, + -0.01310116145759821, + -0.01565420813858509, + 0.00526397954672575, + 0.02049156092107296, + -0.03910192847251892, + -0.014794234186410904, + -0.001785453176125884, + 0.007800229825079441, + 0.03668325021862984, + 8.40867796796374e-5, + 0.01231509167701006, + -0.018623804673552513, + 0.009950163774192333, + 0.013336310163140297, + -0.003172832541167736, + -0.023044606670737267, + 0.008330995216965675, + -0.0008675320423208177, + -0.018059447407722473, + -0.012758515775203705, + 0.037865716964006424, + 0.010077816434204578, + 0.006009737960994244, + 0.016312625259160995, + -0.021459029987454414, + 0.0496634803712368, + -0.01363864541053772, + 0.03257150202989578, + -0.02464362047612667, + 0.0025160948280245066, + -0.03689824417233467, + 0.0038026960100978613, + -0.005290853790938854, + 0.008149594068527222, + 0.0007440787740051746, + -0.027680402621626854, + -0.01897316984832287, + 0.030448442324995995, + -0.01590951345860958, + 0.0020525152795016766, + 0.026927925646305084, + -0.007867415435612202, + -0.03714011237025261, + 0.05366773158311844, + -0.019389718770980835, + -0.017320407554507256, + 0.02722354233264923, + 0.007914445362985134, + 0.023918017745018005, + -0.03509767726063728, + 0.015116725116968155, + 0.017521964386105537, + -0.008398180827498436, + -0.01784445345401764, + 0.015802016481757164, + -0.010917634703218937, + -0.004770166240632534, + 0.027384785935282707, + -0.05095344036817551, + -0.007645703386515379, + 0.009862823411822319, + -0.016608241945505142, + 0.004508143290877342, + -0.026941362768411636, + -0.004222604911774397, + -0.0017098694806918502, + 1.493301442678785e-5, + -0.005391631741076708, + 0.017199473455548286, + -0.02256087213754654, + 0.004471191205084324, + 0.019752521067857742, + -0.026430753991007805, + -0.023232726380228996, + 0.009882979094982147, + 0.01474048662930727, + -0.01530484389513731, + 0.034855809062719345, + -0.00820334255695343, + 0.0006454001413658261, + 0.0059929415583610535, + -0.017616022378206253, + 0.009950163774192333, + -0.0015183910727500916, + 0.00417893473058939, + 0.01285257562994957, + -0.023420846089720726, + -0.017804142087697983, + -0.0194837786257267, + 0.03614576905965805, + -0.026484502479434013, + -0.010615300387144089, + -0.016997916623950005, + -0.025758899748325348, + 0.011488710530102253, + 0.014417995698750019, + -0.015130162239074707, + 0.0016578008653596044, + 0.02765352837741375, + -0.001701471395790577, + 0.0059929415583610535, + -0.015990136191248894, + 0.021539652720093727, + 0.004592124838382006, + 0.004098311997950077, + -0.0024253944866359234, + -0.0015326678985729814, + 0.01152902189642191, + 0.011152783408761024, + -0.012012757360935211, + -0.007114938460290432, + 0.006288557313382626, + -0.021351533010601997, + -0.01620512828230858, + -0.013537866994738579, + -0.003026704303920269, + 0.008666922338306904, + 0.00385644449852407, + -0.0009011247311718762, + -0.0032971256878226995, + 0.005203512497246265, + -0.011502147652208805, + 0.004575328901410103, + -0.022345878183841705, + 0.007578517775982618, + -0.008566143922507763, + 0.01936284452676773, + -0.0009935047710314393, + -0.01427018828690052, + -0.0025748820044100285, + 0.005673810839653015, + -0.007390398532152176, + 0.007531488314270973, + -0.006641280837357044, + 0.02049156092107296, + -0.03286711871623993, + 0.07503270357847214, + -0.0002544648596085608, + 0.0013378300936892629, + -0.004111749120056629, + -0.003974019084125757, + -0.011649955995380878, + -0.006654717959463596, + 0.01310116145759821, + 0.011394651606678963, + -0.016057321801781654, + 0.006181060802191496, + 0.006695029325783253, + 0.019712209701538086, + 0.02213088423013687, + -0.026242634281516075, + -0.008337713778018951, + 0.015734830871224403, + 0.0011052004992961884, + 0.008848322555422783, + 0.003611217485740781, + 0.007471021264791489, + -0.0011186376214027405, + -0.030717184767127037, + 0.011992601677775383, + -0.015519837848842144, + 0.020625930279493332, + 0.00949330348521471, + 0.012866012752056122, + 0.030717184767127037, + 0.031012801453471184, + 0.010830293409526348, + -0.00949330348521471, + -0.02620232291519642, + -0.004249479155987501, + -0.013907386921346188, + 0.009137220680713654, + 0.0176025852560997, + 0.015291406773030758, + -0.005690607242286205, + 0.005126249510794878, + 0.00804881565272808, + -0.012570396065711975, + 0.03676387295126915, + 0.03802696242928505, + -0.023434283211827278, + 0.0020659524016082287, + 0.006379257887601852, + -0.010937790386378765, + 0.025154229253530502, + 0.02558421716094017, + -0.009352213703095913, + -0.023958329111337662, + -0.004481269046664238, + 0.002638708334416151, + 0.0032954460475593805, + 0.003320640418678522, + 0.013430370017886162, + -0.01729353331029415, + -0.008317558094859123, + -0.01081013772636652, + -0.0006063486216589808, + 0.010050942189991474, + 0.006006378680467606, + -0.020316878333687782, + -0.03388833627104759, + -0.012086661532521248, + 0.006211294326931238, + -0.036978866904973984, + -0.01017859485000372, + -0.001584736630320549, + -0.0003638511698227376, + 0.010796700604259968, + 0.002321257023140788, + -0.02187558077275753, + -0.0063859764486551285, + 0.021270912140607834, + 0.00905659794807434, + 0.0066379220224916935, + 0.021889017894864082, + 0.019873453304171562, + 0.004182294011116028, + 0.006271760910749435, + -0.004971722606569529, + -0.010359995067119598, + -0.0018744738772511482, + -0.013974572531878948, + 0.012476337142288685, + -0.022722117602825165, + 0.014794234186410904, + -0.0197928324341774, + -0.023649275302886963, + 0.0089558195322752, + -0.009983756579458714, + 0.00880129262804985, + -0.016433559358119965, + 0.001078326371498406, + -0.008223498240113258, + -0.011744015850126743, + 0.005532721057534218, + -0.005452098790556192, + 0.007927882485091686, + 0.014364248141646385, + -0.006335587240755558, + -0.014458307065069675, + 0.018489433452486992, + 0.02942722477018833, + 0.0172800961881876, + -0.005287494510412216, + -0.009889697656035423, + 0.0009557129233144224, + -0.010823574848473072, + -0.018126633018255234, + 0.006570736411958933, + 0.008250372484326363, + -0.023582089692354202, + -0.0004942329251207411, + 0.00860645528882742, + -0.0069268192164599895, + 0.007350087631493807, + -0.017306970432400703, + -0.007901008240878582, + 0.0032685718033462763, + -0.014606115408241749, + -0.0045316582545638084, + -0.0012026194017380476, + -0.012503211386501789, + -0.0018341626273468137, + -0.0008251212420873344, + 0.012711485847830772, + 0.004598843399435282, + 0.015277969650924206, + 0.006483395118266344, + 0.01373270433396101, + -0.01992720179259777, + 0.003705277107656002, + 0.011757452972233295, + 0.013746141456067562, + 0.010272654704749584, + 0.023541780188679695, + -0.022533997893333435, + 0.028110388666391373, + 0.010695922188460827, + 0.0166485533118248, + 0.030394693836569786, + 0.003144278656691313, + 0.0037825405597686768, + -0.018556619063019753, + -0.01772351935505867, + 0.021969640627503395, + -0.012986945919692516, + 0.042595572769641876, + -0.02934660203754902, + 0.003705277107656002, + -0.01779070496559143, + 0.0029141686391085386, + 0.018838798627257347, + -0.023111792281270027, + 0.002168410224840045, + -0.013390058651566505, + -0.00804881565272808, + 0.0248317401856184, + -0.001112758880481124, + -0.005845133680850267, + 0.002314538462087512, + -0.01904035545885563, + -0.002717651193961501, + -0.002569843316450715, + 0.03601139783859253, + 0.017360718920826912, + -0.01316834706813097, + -0.0254632830619812, + 0.0016561212250962853, + 0.008881915360689163, + -0.0213784072548151, + -0.007027597166597843, + -0.010662329383194447, + 0.00601645652204752, + 0.004756729584187269, + -0.008001786656677723, + 0.007793511264026165, + 0.019067229703068733, + -0.002571522956714034, + 0.012207594700157642, + -0.0009825871093198657, + -0.020908109843730927, + -0.007625547703355551, + 0.02910473383963108, + -0.018717864528298378, + -0.006980567704886198, + 0.006862992886453867, + -0.022198069840669632, + -0.012147128582000732, + -0.022036826238036156, + -0.009385806508362293, + -0.01281898282468319, + -0.014874856919050217, + 0.006160905119031668, + 0.02305804379284382, + 0.006812604144215584, + -0.003789258887991309, + -0.03122779354453087, + -0.003970659803599119, + 0.02288336120545864, + 0.0029108093585819006, + -0.0053177280351519585, + -0.018502870574593544, + -0.02854037657380104, + -0.02092154696583748, + 0.00458540627732873, + -0.004971722606569529, + -0.0013260727282613516, + -0.029212230816483498, + 0.00713509414345026, + 0.005129608791321516, + -0.01577514223754406, + 0.014565804041922092, + -0.014686738140881062, + 0.009029723703861237, + 0.0020038059446960688, + 0.009452992118895054, + 0.008599736727774143, + -0.012610707432031631, + 0.00804209802299738, + -0.0006890707300044596, + -0.00554615817964077, + -0.005203512497246265, + 0.022036826238036156, + 0.012375558726489544, + 0.02313866652548313, + 0.004094952717423439, + 0.030206575989723206, + 0.003233299357816577, + 0.0010615299688652158, + -0.0020424374379217625, + -0.009923289529979229, + 0.01746821589767933, + 0.014942042529582977, + -0.013974572531878948, + -0.003112365724518895, + -0.0009011247311718762, + -0.010884041897952557, + 0.009768763557076454, + -0.011824637651443481, + -0.0069268192164599895, + 0.004350257571786642, + -0.022050263360142708, + -0.004172216169536114, + -0.00845192838460207, + 0.010823574848473072, + -2.9183676815591753e-5, + -0.015251095406711102, + -0.013826764188706875, + -0.002190245548263192, + -0.008734107948839664, + 0.01666199043393135, + -0.02218463271856308, + 0.005670451559126377, + 0.0226280577480793, + -0.024791428819298744, + -0.006234809290617704, + -0.006543862167745829, + 0.006906663533300161, + 0.005126249510794878, + -0.01924191042780876, + -0.004027767106890678, + 0.036495134234428406, + -0.021593401208519936, + 0.0031241232063621283, + 0.006906663533300161, + 0.0016922333743423223, + -0.005616703070700169, + 0.0013739423593506217, + -0.0016922333743423223, + 0.0012395713711157441, + 0.004565251059830189, + -0.0006571576232090592, + 0.019524089992046356, + -0.0121000986546278, + 0.007766637019813061, + -0.0020592338405549526, + -0.001929901889525354, + -0.012960071675479412, + -0.0033475146628916264, + -0.017736956477165222, + 0.005986222997307777, + -0.02645762823522091, + 0.013497555628418922, + 0.016769487410783768, + -0.006187779363244772, + 0.01627231389284134, + -0.006721903569996357, + -0.006940256338566542, + -0.0041621383279562, + -0.012704767286777496, + 0.0015629014233127236, + -0.005657014437019825, + -0.002766360528767109, + -0.004363694693893194, + 0.009479866363108158, + 0.010541396215558052, + -0.0002231816470157355, + -0.024159885942935944, + -0.006443084217607975, + 0.0005777947953902185, + 0.011273717507719994, + 0.0022792662493884563, + 0.02067967876791954, + 0.00020061153918504715, + -0.023393971845507622, + 0.019174724817276, + 0.004108389839529991, + -0.004457754082977772, + 0.014122379943728447, + 0.01577514223754406, + -0.014310499653220177, + -0.010662329383194447, + 0.02344772033393383, + 0.033028364181518555, + -0.009197686798870564, + -0.0028066718950867653, + -0.008398180827498436, + -0.013154909946024418, + 0.008915508165955544, + 0.01074295211583376, + 0.01823412999510765, + -0.012093380093574524, + 0.014108942821621895, + 0.008539269678294659, + 0.0037623848766088486, + -0.021042481064796448, + 0.03404958173632622, + 0.013551304116845131, + -0.03810758516192436, + -0.006520347204059362, + -0.013282561674714088, + 0.0003720393870025873, + -0.00999047514051199, + -0.01266445592045784, + -0.017132287845015526, + 0.0003787579480558634, + -0.005640218034386635, + -0.002766360528767109, + -0.0226280577480793, + -0.011065442115068436, + -0.009332058019936085, + 0.010064379312098026, + 0.005022111814469099, + -0.013974572531878948, + 0.011213250458240509, + 0.013443807139992714, + 0.012523367069661617, + -0.0027445254381746054, + 0.026565123349428177, + -0.013705830089747906, + -0.009916570968925953, + -0.005979504436254501, + -0.0017317048041149974, + 0.025973891839385033, + 0.014283625409007072, + -0.0019903688225895166, + 0.005636858753859997, + 0.017629459500312805, + -0.003100608242675662, + -0.0032803292851895094, + 0.01816694438457489, + 0.021096229553222656, + 0.009278309531509876, + 0.026874177157878876, + -0.0127316415309906, + 0.002867138711735606, + 0.01096466463059187, + -0.02437487803399563, + -0.02175464667379856, + -0.014229876920580864, + -0.023165540769696236, + 0.026739805936813354, + -0.007914445362985134, + 0.026121700182557106, + 0.006359102204442024, + 0.004904537461698055, + 0.017562275752425194, + -0.0017300251638516784, + 6.518431291624438e-6, + -0.006130671594291925, + 0.02124403789639473, + 0.011959008872509003, + 0.02897036261856556, + 0.01159620750695467, + 0.0011119190603494644, + 0.002242314163595438, + 0.008969256654381752, + 0.003792618168517947, + 0.008760982193052769, + -0.014512055553495884, + -0.001625887700356543, + 0.008915508165955544, + -0.016164816915988922, + 0.026565123349428177, + -0.007914445362985134, + -0.02187558077275753, + -0.01992720179259777, + -0.0139880096539855, + 0.00804881565272808, + -0.0017401030054315925, + -0.017172599211335182, + -0.023299911990761757, + -0.008008505217730999, + 0.006560658570379019, + 0.025624528527259827, + -0.016567930579185486, + 0.006711825728416443, + -0.010884041897952557, + -0.01495547965168953, + -0.023797083646059036, + 0.004874303936958313, + 0.01467330101877451, + 0.003866522340103984, + -0.019456904381513596, + -0.013974572531878948, + -0.002563124755397439, + 0.03310898691415787, + 0.00036595072015188634, + 0.019443467259407043, + -0.004474550485610962, + -0.008653485216200352, + -0.0021230599377304316, + 0.03808071091771126, + 0.002094506286084652, + -0.002398520242422819, + -0.004575328901410103, + -0.0029040907975286245, + -0.0273310374468565, + -0.02293710969388485, + -0.002084428444504738, + -0.031147170811891556, + -0.003722073510289192, + 0.01659480482339859, + -0.0046761068515479565, + 0.019967513158917427, + -0.0024102777242660522, + 0.004803759045898914, + 0.0030586172360926867, + -0.005384913180023432, + 0.008277246728539467, + 0.008928945288062096, + 0.02695479989051819, + 0.0075583625584840775, + 0.015277969650924206, + -0.0009036441915668547, + -0.01621856540441513, + -0.025624528527259827, + -0.008492239750921726, + -0.025315474718809128, + -0.0015956542920321226, + -0.017925076186656952, + -0.015949824824929237, + 0.010924353264272213, + -0.013329591602087021, + 0.0042931498028337955, + -0.019470341503620148, + 0.007981630973517895, + -0.0016074117738753557, + 0.0012412510113790631, + -0.0007197240483947098, + 0.0012933197431266308, + 0.015990136191248894, + 0.038430072367191315, + 0.008720670826733112, + -0.012294935993850231, + 0.023595526814460754, + 0.002223838120698929, + 0.025248289108276367, + 0.02143215574324131, + 0.014055194333195686, + 0.01867755316197872, + 0.009802356362342834, + -0.0121000986546278, + 0.0016838351730257273, + 0.0025144151877611876, + -0.01590951345860958, + 0.017683207988739014, + -0.0020676320418715477, + -0.01259727030992508, + -0.006218012887984514, + 0.022036826238036156, + -0.03515142574906349, + 0.009688140824437141, + 0.008290683850646019, + 0.027438534423708916, + -0.005754433106631041, + 0.0036649659741669893, + 0.010393587872385979, + 0.005038908217102289, + 0.0216874610632658, + -0.002329655224457383, + 0.003698558546602726, + 0.010803419165313244, + 0.01379988994449377, + 0.007423991337418556, + -0.010695922188460827, + 0.016756050288677216, + -0.004471191205084324, + 0.0016023728530853987, + -0.013195221312344074, + 0.011260280385613441, + 0.0257723368704319, + -0.006792448461055756, + 0.028620999306440353, + 0.012476337142288685, + -0.0025899987667798996, + 0.005549517460167408, + 0.009076753631234169, + -0.015815453603863716, + 0.021781520918011665, + 0.008646766655147076, + 0.02891661413013935, + 0.008841603994369507, + -0.012429307214915752, + 0.00785397831350565, + 0.005526002496480942, + -0.007914445362985134, + -0.009580643847584724, + -0.011656674556434155, + 0.01597669906914234, + -0.003554109949618578, + -0.02238618955016136, + 0.012637581676244736, + -0.006496832240372896, + -0.009856104850769043, + -0.012241187505424023, + -0.018435684964060783, + 0.001279042917303741, + -0.009090190753340721, + -0.018704427406191826, + 0.029507847502827644, + 0.02305804379284382, + 0.01294663455337286, + 0.01628575101494789, + 0.019645024091005325, + -0.013188502751290798, + 0.0007163647678680718, + 0.027505720034241676, + 0.020021261647343636, + -0.004582047462463379, + -0.0008750904235057533, + 0.006359102204442024, + 0.015398903749883175, + -0.007397117093205452, + -0.008908789604902267, + 0.01659480482339859, + -0.02338053472340107, + 0.0014327295357361436, + -0.009647829458117485, + 0.0025093762669712305, + 0.02067967876791954, + -0.007894289679825306, + -0.006886507850140333, + 0.00820334255695343, + 0.013141472823917866, + 0.010978101752698421, + -0.014915168285369873, + -0.009036442264914513, + -0.008660203777253628, + -0.005435302387923002, + -0.030502190813422203, + -0.002697495510801673, + 0.0015167114324867725, + 0.007652421947568655, + 0.00795475672930479, + -0.0014570843195542693, + -0.026632308959960938, + -0.0185431819409132, + -0.030260324478149414, + -0.007665859069675207, + -0.011367777362465858, + -0.0008230216917581856, + -0.043401796370744705, + 0.007343369070440531, + 0.002148254541680217, + -0.0008952460484579206, + -0.00699400482699275, + -0.016554493457078934, + -0.03187277540564537, + -0.01077654492110014, + -0.014350811019539833, + 0.018879109993577003, + 0.027922270819544792, + 0.003019985742866993, + 0.016420122236013412, + -0.014310499653220177, + 0.027451971545815468, + -0.008498958311975002, + -0.016890419647097588, + 0.005734277423471212, + 0.003957222681492567, + -0.008189905434846878, + -0.0019030276453122497, + 0.00905659794807434, + -0.029588468372821808, + -0.020128758624196053, + -0.009217842482030392, + 0.007188842631876469, + 0.002868818351998925, + 0.006046690046787262, + 0.005132968071848154, + 0.0003426457697059959, + 0.0066647958010435104, + -0.004555173218250275, + 0.001083365292288363, + -0.007423991337418556, + -0.0035171578638255596, + 0.007686014752835035, + 0.007827104069292545, + -0.015439215116202831, + 0.004498065449297428, + 0.0008666922221891582, + 0.008666922338306904, + -0.01191197894513607, + 0.007376961875706911, + -0.0035205171443521976, + -0.013033975847065449, + 0.03934379667043686, + 0.0048171961680054665, + 0.01564077101647854, + -0.00010198540257988498, + -0.009748607873916626, + -0.0041419826447963715, + 0.010312965139746666, + 0.005227027460932732, + -0.006832759361714125, + 0.00845192838460207, + 0.013840201310813427, + -0.01922847330570221, + -0.007753200363367796, + 0.014512055553495884, + 0.0029813540168106556, + -0.02608138881623745, + 0.007948038168251514, + 0.0002668521774467081, + -0.02816413715481758, + 0.009513459168374538, + -0.0022003231570124626, + -0.009332058019936085, + -0.003258493961766362, + 0.02324616350233555, + -0.009768763557076454, + 0.015036102384328842, + 0.0001421392080374062, + -0.0019752520602196455, + 0.010749670676887035, + -0.01448518130928278, + 0.022399626672267914, + -0.02966909110546112, + 0.005394991021603346, + 0.010433899238705635, + -0.01886567287147045, + 0.012254624627530575, + -0.01904035545885563, + 0.05079219490289688, + -0.004225964192301035, + -0.015157035551965237, + -0.01131402887403965, + -0.006879789289087057, + 0.006164264399558306, + 0.0007549964357167482, + -0.004699621815234423, + 0.013551304116845131, + 0.015815453603863716, + 0.0219965148717165, + -0.01194557175040245, + 0.00466938829049468, + -0.01608419604599476, + -0.027707276865839958, + 0.015533274039626122, + 0.01840881071984768, + -0.00466938829049468, + -0.010716077871620655, + -0.020276566967368126, + 0.010749670676887035, + -0.021647149696946144, + -0.0038396480958908796, + 0.003920270595699549, + -0.005670451559126377, + -0.014055194333195686, + -1.0845462384168059e-5, + -0.00629863515496254, + 0.0003974438877776265, + -0.034479569643735886, + -0.026041077449917793, + -0.0005106093594804406, + -0.009748607873916626, + 0.013242251239717007, + -0.011112472042441368, + -0.026672620326280594, + 0.005593188107013702, + 0.006090360227972269, + -0.00452829897403717, + -0.021969640627503395, + -0.031899649649858475, + 0.009251435287296772, + -0.015748267993330956, + 0.0010195390786975622, + -0.0005324446246959269, + 0.0014906770084053278, + -0.013537866994738579, + -0.013558022677898407, + 0.024912362918257713, + 0.017898201942443848, + -0.0069268192164599895, + -0.017763830721378326, + 0.01797882467508316, + 0.0012446102919057012, + 0.02112310379743576, + 0.006705107167363167, + -0.008881915360689163, + -0.030072204768657684, + -0.0006911702221259475, + -0.0006819322588853538, + -0.00845192838460207, + 0.007860696874558926, + 0.0066748736426234245, + 0.0010480929631739855, + 0.000930518377572298, + 0.004645873326808214, + -0.006742059253156185, + -0.02835225686430931, + -0.011959008872509003, + 0.014014883898198605, + -0.012758515775203705, + 0.0062851980328559875, + 0.028997236862778664, + -0.0028990518767386675, + 0.006913382094353437, + 0.017239784821867943, + -0.004367053974419832, + 0.008727389387786388, + 0.0035104393027722836, + 0.006127312313765287, + -0.00355075066909194, + 0.008068971335887909, + -0.007880852557718754, + -0.02238618955016136, + -0.01980626955628395, + 0.004981800448149443, + 0.007652421947568655, + -0.012503211386501789, + -0.0008519954280927777, + 0.007423991337418556, + -0.02238618955016136, + 0.009903134778141975, + -0.0023481312673538923, + -0.019403155893087387, + -0.009076753631234169, + 0.007538206875324249, + 0.023044606670737267, + 0.011602926068007946, + 0.008532551117241383, + -0.003638091729953885, + 0.0030720543581992388, + 0.028647873550653458, + 0.011139346286654472, + -0.004548454657196999, + -0.006933537777513266, + 0.006846196483820677, + 0.00020449569274205714, + 0.016500744968652725, + -0.006795807741582394, + -0.0020038059446960688, + -0.0248317401856184, + 0.02608138881623745, + -0.0023531701881438494, + -0.020263129845261574, + -0.004588765557855368, + -0.020881235599517822, + -0.013571459800004959, + -0.005915678106248379, + 0.006933537777513266, + -0.001770336413756013, + -0.003330718260258436, + 0.029050985351204872, + 0.015600459650158882, + -0.00942611787468195, + -0.017642896622419357, + 0.002761321607977152, + -0.030152827501296997, + 0.008539269678294659, + 0.0003271091263741255, + 0.02426738291978836, + 0.01294663455337286, + 0.02016906999051571, + 0.017763830721378326, + 0.01847599633038044, + -0.021445592865347862, + -0.0012983586639165878, + 0.026995111256837845, + 0.008962538093328476, + 0.006372539326548576, + -4.692483344115317e-5, + -0.0042864312417805195, + -0.015157035551965237, + 0.00851911399513483, + 0.0074508655816316605, + -0.0063859764486551285, + -0.022345878183841705, + -0.016944168135523796, + 0.022359315305948257, + -0.01448518130928278, + 0.023205852136015892, + -0.016057321801781654, + -0.016514182090759277, + 0.013645363971590996, + -0.023111792281270027, + 0.018140070140361786, + 0.005408428143709898, + -0.005929115228354931, + 0.0028520221821963787, + -0.013309435918927193, + 0.015264532528817654, + 0.0030485393945127726, + 0.03872568905353546, + -0.009090190753340721, + -0.002096185926347971, + 0.018879109993577003, + -0.010097972117364407, + -0.034291449934244156, + 0.011757452972233295, + 0.0020491559989750385, + -0.007350087631493807, + -0.0172800961881876, + -0.02281617745757103, + -0.007793511264026165, + 0.006120593752712011, + -0.0015066335909068584, + 0.01017859485000372, + 0.0021113024558871984, + -0.00016943328955676407, + -0.019819706678390503, + -0.002794914413243532, + 0.024737680330872536, + 0.010675766505300999, + 0.010272654704749584, + -0.022224944084882736, + 0.02344772033393383, + -0.0043939282186329365, + 0.015210784040391445, + 0.003035102505236864, + -0.0033391164615750313, + 0.015264532528817654, + -0.004938130266964436, + -0.019456904381513596, + 0.002163371304050088, + 0.006261683534830809, + -0.0005379034555517137, + 0.017696645110845566, + -0.012798827141523361, + 0.0067823706194758415, + -0.01721291057765484, + -0.019819706678390503, + -0.004753370303660631, + -0.006258324254304171, + 0.01427018828690052, + 0.014323936775326729, + -0.0020474763587117195, + -0.00845192838460207, + 0.01584232784807682, + 0.0001568360166857019, + 0.0028486629016697407, + 0.0005421025562100112, + -0.01219415757805109, + -0.006164264399558306, + -0.00233469414524734, + 0.003503720974549651, + -0.011488710530102253, + 0.01672917604446411, + 0.013907386921346188, + -0.0014411277370527387, + 0.008290683850646019, + 0.006113875191658735, + 0.000241657646256499, + 0.018623804673552513, + 0.006748777814209461, + 0.002163371304050088, + 0.001852638553828001, + 0.012610707432031631, + -0.004726496059447527, + 0.011898541823029518, + 0.011273717507719994, + -0.026632308959960938, + 0.0009716694476082921, + 0.013322873041033745, + 0.01999438740313053, + 0.011119190603494644, + 0.028271634131669998, + -0.006859633605927229, + 0.0065237064845860004, + -0.01281898282468319, + 0.02010188437998295, + 0.002086108084768057, + -0.008055534213781357, + 0.004467831924557686, + -9.547681111143902e-5, + 0.017266659066081047, + -0.004205808974802494, + -0.01960471272468567, + -0.010232343338429928, + -0.014861419796943665, + -0.027572905644774437, + -0.00699400482699275, + -0.003634732449427247, + 0.013047412969172001, + -0.004666029009968042, + 0.001074967090971768, + -0.013081005774438381, + -0.0062482464127242565, + -0.009231279604136944, + 0.015600459650158882, + 0.024428626522421837, + -0.026927925646305084, + -0.008129438385367393, + -0.007585236337035894, + -0.015506400726735592, + 0.02751915715634823, + 0.010783263482153416, + 0.004437598399817944, + 0.007464302703738213, + 0.016823235899209976, + -0.02514079213142395, + -0.022843049839138985, + -0.010312965139746666, + -0.011233406141400337, + 0.017575712874531746, + -0.0163394995033741, + 0.021230600774288177, + -0.009137220680713654, + -0.016258876770734787, + 0.012933197431266308, + -0.003920270595699549, + -0.009002849459648132, + -0.007524769753217697, + 0.006597610656172037, + 0.01455236691981554, + -0.009869541972875595, + -0.016164816915988922, + -0.013826764188706875, + -0.0014327295357361436, + 0.0044308798387646675, + 0.011354340240359306, + -0.00955376960337162, + -0.004786962643265724, + -0.0025211337488144636, + 0.00634902436286211, + -0.009211123920977116, + -0.004706340376287699, + 0.0044308798387646675, + 0.011199813336133957, + -0.0019131054868921638, + -0.010467492043972015, + -0.0062448871321976185, + 0.007390398532152176, + -0.04235370457172394, + 0.003967300523072481, + -0.010803419165313244, + 0.007249309215694666, + -0.02695479989051819, + 0.01703822799026966, + -0.015788579359650612, + 0.006584173534065485, + -0.019631586968898773, + 0.0005891323671676219, + 0.012012757360935211, + 0.006651358678936958, + 0.010218906216323376, + 0.020384063944220543, + 0.034667689353227615, + 0.030502190813422203, + 0.009486584924161434, + -0.018247567117214203, + 0.0016838351730257273, + -0.012677893042564392, + 0.006691670045256615, + -0.01652761921286583, + 0.00022696082305628806, + 0.006379257887601852, + -0.0036851216573268175, + 0.01986001618206501, + 0.0028033126145601273, + 0.003614576766267419, + 0.010359995067119598, + 0.019389718770980835, + 0.014149254187941551, + 0.010695922188460827, + -0.01729353331029415, + 0.013974572531878948, + 0.016446996480226517, + -0.01936284452676773, + 0.004467831924557686, + 0.012496492825448513, + 0.010380150750279427, + -0.005173278972506523, + -0.009063316509127617, + 0.020263129845261574, + 0.02237275242805481, + -0.007726326119154692, + -0.014377685263752937, + 0.028889739885926247, + -0.009667985141277313, + 0.009681422263383865, + -0.0004371253016870469, + -0.01840881071984768, + -0.006167623680084944, + 0.02054530940949917, + -0.003930348437279463, + -0.00513968663290143, + -0.009916570968925953, + -0.021969640627503395, + 0.016245439648628235, + 0.009177531115710735, + 0.009285028092563152, + 0.003177871461957693, + 0.03469456359744072, + -0.015466089360415936, + 0.03243713080883026, + -0.0005609984509646893, + -0.012986945919692516, + -0.019645024091005325, + -0.0007058670744299889, + -0.007282902020961046, + -0.011670111678540707, + -0.027478845790028572, + -0.027572905644774437, + 0.0041419826447963715, + -0.014108942821621895, + 0.004645873326808214, + 0.0021364970598369837, + -0.023367097601294518, + -0.011374495923519135, + -0.002776438370347023, + 0.010010630823671818, + -0.0031929882243275642, + 0.009600799530744553, + 0.016366373747587204, + 0.005845133680850267, + 0.026000766083598137, + -0.006829400081187487, + 0.002638708334416151, + -0.013759578578174114, + 0.006913382094353437, + -0.008626610971987247, + 0.007766637019813061, + 0.006254964973777533, + -0.02276242896914482, + 0.0031039675232023, + -0.017199473455548286, + 0.008861759677529335, + -0.003073733998462558, + 0.013121317140758038, + -0.018690990284085274, + -0.0016737573314458132, + 0.011461836285889149, + 0.02501985989511013, + -0.01999438740313053, + 0.004373772535473108, + 0.017629459500312805, + -0.019255347549915314, + -0.0075583625584840775, + -0.0004255778039805591, + -0.0204243753105402, + 0.0032820089254528284, + 0.018126633018255234, + 0.006194497924298048, + 0.003016626462340355, + 0.020599056035280228, + 0.010662329383194447, + 0.0058552115224301815, + -0.008028660900890827, + -0.017186036333441734, + 0.004414083436131477, + 0.013269125483930111, + -0.020894672721624374, + -0.017387593165040016, + 0.017427904531359673, + -0.011172939091920853, + -0.021969640627503395, + -0.009123783558607101, + -0.0121000986546278, + 0.007034315727651119, + 0.0024438705295324326, + -0.006600969936698675, + 0.008713952265679836, + -0.0039034741930663586, + 0.0022154399193823338, + 0.0035877027548849583, + -0.0058484929613769054, + 0.020007824525237083, + 0.0075986734591424465, + -0.002148254541680217, + -0.009291746653616428, + -0.0024388316087424755, + -0.012375558726489544, + 0.00650691008195281, + 0.0019987670239061117, + 0.0029460815712809563, + -0.01056155189871788, + -0.010400306433439255, + -0.014337373897433281, + 0.011905260384082794, + 0.008794574066996574, + -0.004699621815234423, + 0.0015629014233127236, + -0.0034466132055968046, + -0.030018456280231476, + -0.017333844676613808, + -0.022856486961245537, + -0.007329931948333979, + -0.0006596770836040378, + 0.0031241232063621283, + -0.022910235449671745, + 0.015224221162497997, + 0.01886567287147045, + 0.005435302387923002, + 0.0032097846269607544, + -0.001933261170051992, + -0.006466598715633154, + -0.0008058054372668266, + 0.014364248141646385, + 0.005374835338443518, + -0.002405238803476095, + -0.027626654133200645, + 0.02344772033393383, + -0.0074575841426849365, + 0.0026723009068518877, + 0.00262359157204628, + 0.015869202092289925, + -0.00573763670399785, + 0.01369911152869463, + 0.009936726652085781, + 0.021324658766388893, + -0.014458307065069675, + 0.027451971545815468, + -0.0025362505111843348, + 0.008223498240113258, + -0.003624654607847333, + 0.025557342916727066, + 0.011710423044860363, + 0.007027597166597843, + -0.023098355159163475, + 0.01263086311519146, + -0.0017401030054315925, + 0.0020306799560785294, + 0.009600799530744553, + 0.008216779679059982, + 0.011999320238828659, + 0.004252838436514139, + 0.004088234156370163, + -0.0009632713044993579, + 0.005489050876349211, + -0.003480206010863185, + 0.003574265632778406, + -0.001509153051301837, + 0.034855809062719345, + 0.003097248962149024, + 0.016756050288677216, + -0.011918697506189346, + 0.00573763670399785, + 0.0019786113407462835, + 0.018489433452486992, + -0.008364588022232056, + 0.00458540627732873, + 0.01523765828460455, + -0.008693796582520008, + -0.01722634769976139, + -0.005223668180406094, + 0.0020323595963418484, + -0.005337883252650499, + 0.018395373597741127, + 0.007020878605544567, + 0.02300429530441761, + -0.001553663401864469, + 0.01564077101647854, + -0.014780797064304352, + -0.0040008933283388615, + -0.0304753165692091, + 0.003256814321503043, + -0.011502147652208805, + -0.02175464667379856, + -0.011300591751933098, + -0.016326062381267548, + 0.0069201006554067135, + -0.0038228516932576895, + 0.009520177729427814, + 0.030502190813422203, + -0.004259556997567415, + -0.020061573013663292, + 0.008559425361454487, + -0.01603044755756855, + 0.009600799530744553, + -0.023393971845507622, + -0.005502487998455763, + -0.0034382150042802095, + 0.0018643960356712341, + -0.023864269256591797, + -0.01483454555273056, + 0.0025832802057266235, + -0.005334523972123861, + -0.009513459168374538, + -0.0015612217830494046, + 0.004561891779303551, + 0.016688864678144455, + -0.007934601046144962, + 0.01859693042933941, + -0.01448518130928278, + 0.010265936143696308, + -0.007974912412464619, + 0.012301654554903507, + -0.01040702499449253, + -0.004504784010350704, + 0.0014327295357361436, + -0.019456904381513596, + 0.016554493457078934, + 0.0010514522437006235, + 0.00920440535992384, + 0.017575712874531746, + 0.005267338827252388, + -0.01572139374911785, + 0.011361058801412582, + -0.01922847330570221, + 0.0025933580473065376, + -0.00883488543331623, + 0.011535740457475185, + 0.015277969650924206, + 0.008364588022232056, + -0.0029141686391085386, + -0.014243314042687416, + 0.0020424374379217625, + 0.003413020633161068, + -0.008613173849880695, + 0.003718714229762554, + 0.020155632868409157, + 0.0039001149125397205, + 0.005059063900262117, + -0.006590892095118761, + -0.006654717959463596, + 0.005179997533559799, + -0.008243653923273087, + -0.026256071403622627, + -0.011999320238828659, + 0.0063658207654953, + -0.011206531897187233, + 0.02985721081495285, + -0.014444869942963123, + 0.009009568020701408, + -0.024845177307724953, + 0.012590551748871803, + 0.01597669906914234, + 0.014780797064304352, + 0.0105279590934515, + 0.0004803759220521897, + -0.023582089692354202, + 0.0005429423763416708, + 0.019335970282554626, + 0.007188842631876469, + -0.011757452972233295, + 0.0010027427924796939, + 0.011851511895656586, + -0.011139346286654472, + -0.017387593165040016, + 0.007014160044491291, + -0.01323553267866373, + 0.005364757496863604, + 0.0015620616031810641, + -0.019282221794128418, + 0.008465365506708622, + 0.012785390019416809, + -0.011804481968283653, + -0.009197686798870564, + -0.018328189849853516, + 0.0006991485133767128, + -0.012200876139104366, + 0.0008851682068780065, + 0.003256814321503043, + 0.0045417360961437225, + -0.0022104009985923767, + -0.009634392336010933, + -0.009096909314393997, + -0.00045560128637589514, + 0.008283965289592743, + 0.03859131783246994, + 0.0427299402654171, + -0.0013865395449101925, + 0.004508143290877342, + -0.008949100971221924, + -0.03009907901287079, + 0.014713612385094166, + -0.004229323472827673, + -0.014821108430624008, + -0.004061359912157059, + 0.0058585708029568195, + 0.001109399599954486, + 0.00015830570191610605, + 0.012026194483041763, + 0.0025379301514476538, + 0.016608241945505142, + -0.0016300868010148406, + 0.003554109949618578, + -0.012093380093574524, + 0.016017010435461998, + -0.0017972106579691172, + -0.0003900954907294363, + -0.011999320238828659, + -0.006187779363244772, + 0.025664839893579483, + -0.013208658434450626, + -0.0005693966522812843, + -0.020330315455794334, + -0.006869711447507143, + 0.021459029987454414, + 0.017253221943974495, + -0.012402432970702648, + -0.020316878333687782, + -0.007679296191781759, + -0.015130162239074707, + 0.016258876770734787, + 0.008196623995900154, + 0.008821448311209679, + -0.002655504737049341, + -0.014606115408241749, + -0.023649275302886963, + 0.009641110897064209, + 0.011327465996146202, + -0.022896798327565193, + -0.008344432339072227, + 0.001085044932551682, + 0.014243314042687416, + -0.003016626462340355, + -0.017495090141892433, + 0.004256197717040777, + -0.011602926068007946, + 0.013060850091278553, + 0.00027168114320375025, + -0.0018744738772511482, + -0.005542798899114132, + 0.019268784672021866, + -0.008512395434081554, + -0.03461394086480141, + -0.005966067314147949, + -0.010642174631357193, + -0.013571459800004959, + 0.005411787424236536, + 0.0016107710544019938, + 0.03418395295739174, + 0.0029712761752307415, + 0.014565804041922092, + 0.007618829142302275, + 0.0163394995033741, + 0.0025026577059179544, + -0.011401370167732239, + 0.011703704483807087, + -0.006352383643388748, + -0.006486754398792982, + -0.0003101027978118509, + -0.010312965139746666, + -0.013248969800770283, + -0.014780797064304352, + -0.031711529940366745, + 0.00851911399513483, + 0.03797321394085884, + 0.023474594578146935, + -0.010850449092686176, + 0.0017233066027984023, + -0.0029578390531241894, + -0.010635456070303917, + -0.00039618415758013725, + -0.02596045471727848, + -0.003863163059577346, + -0.003159395419061184, + -0.002092826645821333, + -0.02230556681752205, + -0.010084534995257854, + -0.004105030559003353, + -0.0023380534257739782, + 0.0015461050206795335, + -0.002386762760579586, + -0.013316154479980469, + 0.0007566760759800673, + 0.010736233554780483, + -0.003967300523072481, + 0.005472254473716021, + 0.010044223628938198, + -0.008492239750921726, + -0.006564017850905657, + -0.01647387072443962, + -0.040391888469457626, + 0.0041419826447963715, + 0.010071097873151302, + 0.0028856147546321154, + 0.004659310448914766, + -0.023488031700253487, + 0.020034698769450188, + 0.0012093379627913237, + 0.005082578863948584, + 0.004272994119673967, + 0.01105872355401516, + 0.005623421631753445, + 0.007081345655024052, + 0.006738699972629547, + -0.000576954975258559, + 2.7451551432022825e-5, + 0.006238168571144342, + 0.017884764820337296, + 0.005267338827252388, + 0.023232726380228996, + 0.006009737960994244, + 0.013128035701811314, + 0.04004252329468727, + -0.016245439648628235, + -0.029373476281762123, + 0.009802356362342834, + 0.0070611899718642235, + 0.006453161593526602, + 0.0031946678645908833, + 0.002771399449557066, + 0.0054688951931893826, + 0.00108840421307832, + -0.008189905434846878, + 0.007336650509387255, + -0.00438720965757966, + 0.0028150700964033604, + 0.03590390086174011, + 0.0254632830619812, + 0.002633669413626194, + 0.0008423374965786934, + 0.0007902687648311257, + -0.016863545402884483, + 0.0017468215664848685, + -0.0008700515027157962, + -0.0011186376214027405, + -0.009345495142042637, + 0.0004493026644922793, + -0.00977548211812973, + 0.019940638914704323, + -0.004451035521924496, + 0.006265042815357447, + -0.0010413744021207094, + 0.005939193069934845, + -0.00970829650759697, + 0.00446111336350441, + 0.004978441167622805, + 0.0039034741930663586, + 0.012590551748871803, + 0.020908109843730927, + -0.0008986053289845586, + -0.0010380151215940714, + -0.03628014028072357, + -0.0011446720454841852, + -0.02338053472340107, + -0.004064719192683697, + -0.014028320088982582, + 0.024804865941405296, + -0.0019853299017995596, + 0.010131564922630787, + 0.0007768317009322345, + -0.0011975804809480906, + 0.002783156931400299, + -0.0013756219996139407, + -0.008653485216200352, + -0.00923799816519022, + -0.01124684326350689, + 0.00804881565272808, + 0.010722796432673931, + 0.006879789289087057, + -0.025342348963022232, + 0.016809798777103424, + 0.0074575841426849365, + 0.015466089360415936, + 0.025154229253530502, + -0.006577454973012209, + 0.01905379258096218, + 0.016446996480226517, + -0.0059895822778344154, + -0.02695479989051819, + -0.007800229825079441, + 0.0029914318583905697, + 0.004575328901410103, + 0.0036616066936403513, + -0.010890760459005833, + 0.015439215116202831, + -0.014404558576643467, + -0.008176468312740326, + -0.035473912954330444, + -0.006036612205207348 + ], + "75157767-dded-4c39-b43e-88cc72a9bea2": [ + -0.02021746337413788, + -0.010061932727694511, + -0.001860287506133318, + 0.003924488089978695, + -0.021527854725718498, + -0.021193571388721466, + 0.020979629829525948, + 0.013398081064224243, + -0.015377039089798927, + 0.012923398986458778, + -0.0011240281164646149, + 0.030005283653736115, + -0.0019104300299659371, + -0.027812384068965912, + -0.014013162814080715, + 0.011258667334914207, + -0.015363668091595173, + 0.03219818323850632, + -0.0010947783011943102, + -0.03211795538663864, + 0.04966115206480026, + 0.002207942306995392, + -0.005963617004454136, + 0.012208032421767712, + -0.015738066285848618, + -0.03284000605344772, + -0.0012719485675916076, + 0.019147757440805435, + -0.04433935880661011, + 0.0045128269121050835, + 0.01223477441817522, + -0.0048872241750359535, + 0.015938635915517807, + -0.025512514635920525, + -0.004880538675934076, + -0.03249235451221466, + -0.000930143753066659, + 0.0005152144003659487, + 0.006525213364511728, + -0.010884269140660763, + -0.040675610303878784, + 0.03907104954123497, + 0.005565819796174765, + -0.018265249207615852, + -0.0549294576048851, + 0.016112463548779488, + 0.03957916051149368, + -0.04032795876264572, + 0.022864988073706627, + 0.004562969319522381, + -0.0030971362721174955, + -0.023841096088290215, + -0.014949156902730465, + 0.006478413473814726, + 0.014721843414008617, + -0.019856438040733337, + 0.008002745918929577, + 0.0533783845603466, + -0.0029099376406520605, + -0.05771069601178169, + -0.003657061140984297, + -0.007180409040302038, + 0.0034180483780801296, + -0.01036947313696146, + -0.04506140947341919, + -0.030593622475862503, + 0.01363207958638668, + -0.007862347178161144, + -0.056159622967243195, + -0.02128717117011547, + 0.03476548194885254, + 0.03944544866681099, + -0.03045990876853466, + 0.005181393586099148, + -0.02036454901099205, + 0.0017115313094109297, + 0.01113832462579012, + -0.0026458536740392447, + -0.0014741900376975536, + 0.020886030048131943, + -0.010075303725898266, + -0.00039278308395296335, + 0.013618708588182926, + -0.00444262707605958, + 0.07525389641523361, + -0.0151363555341959, + -0.004312256816774607, + -0.03313417732715607, + -0.003157307393848896, + -0.02076568827033043, + 0.005763046909123659, + 0.021755168214440346, + 0.00010832873522303998, + 0.005101165734231472, + -0.0017090241890400648, + -0.01885358802974224, + 0.030727336183190346, + 0.002411855151876807, + 0.02501777373254299, + -0.005264964420348406, + 0.037279292941093445, + 0.04302896931767464, + -0.024375950917601585, + 0.005826560780405998, + -0.022370249032974243, + 0.011445865966379642, + -0.006555298808962107, + -0.012696086429059505, + -0.028106553480029106, + 0.06439636647701263, + -0.01159295067191124, + -0.029015805572271347, + 0.026234567165374756, + -0.011780149303376675, + -0.02634153701364994, + -0.03677118197083473, + 0.017422854900360107, + -0.03893733769655228, + 0.004776910878717899, + -0.04302896931767464, + 0.03939196467399597, + 0.004954081028699875, + 0.015310182236135006, + 0.05046343058347702, + -0.008751541376113892, + 0.011445865966379642, + -0.000895043951459229, + 0.004562969319522381, + 0.01028255932033062, + 0.01869313046336174, + -0.03163658827543259, + -0.004556283820420504, + 0.001167485024780035, + 0.039124537259340286, + -0.0002513393701519817, + 0.019375069066882133, + 0.016286291182041168, + 0.06974489986896515, + -0.043296393007040024, + 0.052201706916093826, + -0.036343298852443695, + -0.04952743649482727, + -0.03008551150560379, + 0.007668462581932545, + 0.008103030733764172, + 0.01363207958638668, + -0.06444985419511795, + 0.027785642072558403, + -0.014695101417601109, + 0.019375069066882133, + -0.027183931320905685, + -0.02319927327334881, + 0.021969109773635864, + 0.013571908697485924, + -0.0023215985856950283, + 0.020431404933333397, + -0.0026525394059717655, + -0.009547135792672634, + 0.01458813063800335, + 0.038028087466955185, + 0.010603471659123898, + -0.06733806431293488, + 0.002809652592986822, + -0.012261517345905304, + 0.03850945457816124, + 0.0202040933072567, + 0.002933337353169918, + 0.009386680088937283, + -0.016326405107975006, + 0.024924175813794136, + 0.024750348180532455, + -0.011900491081178188, + -0.026047367602586746, + 0.0013488337863236666, + 0.021206943318247795, + 0.009847991168498993, + 0.05081108585000038, + 0.00728737935423851, + 0.038562942296266556, + -0.03342834487557411, + -0.004776910878717899, + -0.0205250047147274, + -0.0006451670778915286, + -0.01890707202255726, + -0.02035117708146572, + 0.012769628316164017, + 0.0014148547779768705, + -0.009794505313038826, + -0.009326508268713951, + 0.0012761271791532636, + -0.03642352670431137, + -0.006314614787697792, + -0.02259756252169609, + 0.021193571388721466, + -0.02912277542054653, + -0.040996525436639786, + 0.013418138027191162, + 0.0018736588535830379, + -0.004278828389942646, + 0.016299661248922348, + -0.025739826261997223, + -0.042333658784627914, + -0.04765545204281807, + 0.05888737365603447, + -0.06279180943965912, + 0.01795770786702633, + -0.01739611104130745, + -0.011639750562608242, + 0.012528943829238415, + -0.023038815706968307, + 0.04310919716954231, + -0.02504451759159565, + 0.0045796833001077175, + 0.022383620962500572, + -0.024937545880675316, + 0.014013162814080715, + -0.013605336658656597, + 0.002599054016172886, + 2.0814368326682597e-5, + -0.01815827749669552, + -0.04455329850316048, + -0.009620677679777145, + -0.0009042367455549538, + -0.029283231124281883, + -0.049072813242673874, + -0.03751997649669647, + -0.009279709309339523, + 0.03177030012011528, + -0.07118900865316391, + 0.021367399021983147, + 0.06434287875890732, + 0.008276858367025852, + 0.0017065170686692, + -0.032251667231321335, + 0.003941202070564032, + 0.03639678284525871, + 0.0003564297512639314, + 0.0351131334900856, + -0.011913863010704517, + -0.02636827901005745, + 0.009266337379813194, + 0.006892925128340721, + 0.029951797798275948, + 0.026796162128448486, + -0.005017594899982214, + -0.0076818340457975864, + 0.0087782833725214, + 0.0010822426993399858, + 0.02692987583577633, + -0.048858869820833206, + 0.012609172612428665, + 0.011231924407184124, + 0.015751436352729797, + -0.018211763352155685, + 0.0015159754548221827, + 0.04490095376968384, + 0.03944544866681099, + -0.01468172948807478, + -0.017289141193032265, + -0.033535316586494446, + 0.010536614805459976, + 0.0005001716199330986, + 0.046639230102300644, + -0.01524332631379366, + 0.02992505580186844, + -0.01666068844497204, + 0.010890955105423927, + -0.03444456681609154, + -0.0028748377226293087, + 0.03792111575603485, + -0.0627383217215538, + 0.0017299168976023793, + -0.016339775174856186, + -0.019294841215014458, + -0.016032235696911812, + 0.014053276740014553, + 0.006642212625592947, + -0.012582429684698582, + -0.006197615526616573, + -0.01683451607823372, + -0.010489814914762974, + -0.013297796249389648, + 0.00696646748110652, + 0.05995708331465721, + -0.013705622404813766, + -0.009072452783584595, + -0.01561772357672453, + -0.012014147825539112, + -0.012488829903304577, + 0.005622647702693939, + -0.008363772183656693, + -0.0073341792449355125, + 0.001488397130742669, + 0.03751997649669647, + 0.002899909159168601, + 0.006993209943175316, + -0.05032971873879433, + -0.012187975458800793, + -0.034123655408620834, + 0.024616634473204613, + -0.025726456195116043, + 0.006618812680244446, + 0.009968332946300507, + -0.03457828238606453, + 0.017249027267098427, + -0.032251667231321335, + 0.038429226726293564, + 0.022142937406897545, + -0.04500792548060417, + 0.01410676259547472, + 0.03998030349612236, + -0.021033115684986115, + -0.04096978157758713, + -0.015270068310201168, + 0.006338014267385006, + 0.011098210699856281, + 0.004827053286135197, + -0.006388157140463591, + 0.006287871859967709, + -0.025525884702801704, + 0.049634408205747604, + 0.0035066334530711174, + -0.06755200028419495, + 0.02765192836523056, + 0.02075231820344925, + -0.036931637674570084, + 0.0452486090362072, + -0.03717232123017311, + -0.013839335180819035, + -0.01889370195567608, + -0.02503114566206932, + -0.00833034422248602, + -0.02837398089468479, + -0.003867659717798233, + -0.010409587062895298, + -0.04241388663649559, + -0.01850593276321888, + -0.04209297522902489, + -0.016379889100790024, + -0.02896231971681118, + -0.003135578939691186, + -0.016299661248922348, + -0.024763718247413635, + -0.016513602808117867, + 0.02802632562816143, + -0.020030265673995018, + -0.0013045412488281727, + 0.01682114414870739, + -0.02599388174712658, + -0.002640839433297515, + 0.0007571520400233567, + -0.008938740007579327, + 0.021942365914583206, + 0.0038409170228987932, + 0.06455682218074799, + 9.537525329506025e-5, + 0.005973645485937595, + -0.022664418444037437, + 0.00945353601127863, + -0.002889880444854498, + 0.03637004271149635, + -0.016219433397054672, + -0.038028087466955185, + -0.014066647738218307, + 0.014039905741810799, + 0.03612935543060303, + -0.003881030948832631, + -0.0016045606462284923, + 0.03067385032773018, + 0.026501992717385292, + -0.01605897769331932, + 0.015965377911925316, + 0.03348183259367943, + -0.02936345897614956, + -0.013598651625216007, + -0.022744646295905113, + 0.013605336658656597, + -0.009794505313038826, + -0.03045990876853466, + 0.01815827749669552, + -0.009112567640841007, + 0.018840216100215912, + 0.009500335901975632, + -0.030005283653736115, + 0.017302511259913445, + 0.017823994159698486, + -0.0073341792449355125, + -0.01683451607823372, + 0.032037727534770966, + 0.020672090351581573, + -0.0321446992456913, + 0.006986524444073439, + -0.029015805572271347, + 0.003630318446084857, + -0.017650166526436806, + 0.006779268849641085, + -0.0024419405963271856, + 0.0015669537242501974, + -0.001470847288146615, + -0.016861258074641228, + -0.015965377911925316, + -0.010790670290589333, + -0.0044927699491381645, + 0.0336957722902298, + 0.03572821617126465, + -0.02709033153951168, + -0.0029316660948097706, + -0.0007513021118938923, + 0.026635706424713135, + -0.023827726021409035, + -0.009045710787177086, + 0.0038542882539331913, + 0.031476132571697235, + 0.0006393171497620642, + 0.03420388326048851, + -0.008738169446587563, + 0.04051515460014343, + 0.019201241433620453, + -0.014842186123132706, + -0.028133295476436615, + 0.032037727534770966, + 0.057122357189655304, + 0.0009752720361575484, + 0.02183539606630802, + -0.018933815881609917, + 0.015363668091595173, + 0.01091769803315401, + 0.009239595383405685, + -0.03366903215646744, + -0.013090540654957294, + -0.008711427450180054, + 0.030245967209339142, + 0.002975122770294547, + -0.00119172059930861, + -0.02226327918469906, + -0.039873331785202026, + 0.018653016537427902, + 0.008149830624461174, + -0.03404342755675316, + -0.0011139996349811554, + 0.008189944550395012, + 0.01281642820686102, + -0.0027912668883800507, + -0.020498262718319893, + -0.014334075152873993, + -0.03645027056336403, + -0.02762518636882305, + 0.016018863767385483, + 0.01120518147945404, + 0.0034665195271372795, + -0.009486964903771877, + 0.016674058511853218, + -0.042306914925575256, + 0.027036845684051514, + -0.004211971536278725, + -0.012508886866271496, + -0.013331224210560322, + -0.022570818662643433, + 0.0009619006887078285, + -0.035006165504455566, + -0.009386680088937283, + -0.028908833861351013, + 0.00042871854384429753, + 0.002619110979139805, + 0.004008058924227953, + -0.05594567954540253, + 0.004499455448240042, + 0.020886030048131943, + 0.007467892486602068, + 0.007086809258908033, + -0.014842186123132706, + 0.007748690899461508, + -0.03794785961508751, + 0.015203212387859821, + 0.0032659494318068027, + 0.007187094539403915, + 0.009647420607507229, + 0.006973152980208397, + -0.0016087391413748264, + 0.0029517230577766895, + -0.007635034155100584, + -0.026809534057974815, + -0.013324539177119732, + -0.020845916122198105, + -0.0003144353977404535, + -0.0452486090362072, + 0.018960557878017426, + -0.03118196129798889, + 0.013531794771552086, + -0.017610052600502968, + 0.040836069732904434, + -0.007922518067061901, + 0.011847006157040596, + 0.015764808282256126, + 0.006070587784051895, + -0.022891731932759285, + 0.007962631992995739, + -0.01355853769928217, + -0.04209297522902489, + -0.010971182957291603, + 0.03358880430459976, + -0.010690385475754738, + -0.011666492559015751, + 0.038990821689367294, + 0.010095360688865185, + 0.00340801989659667, + -0.049794863909482956, + -0.029096033424139023, + -0.024215493351221085, + 0.009620677679777145, + -0.010623528622090816, + -0.03489919379353523, + -0.025258459150791168, + 0.007648405618965626, + -0.015831664204597473, + 0.000456296926131472, + -0.03171681612730026, + -0.004258771426975727, + 0.0294971726834774, + -0.0034264056012034416, + 0.002482054755091667, + 0.005358563736081123, + -0.006598755717277527, + 0.004867167212069035, + -0.03396319970488548, + -0.0036336611956357956, + -0.00018343805277254432, + -0.019869809970259666, + 0.008818398229777813, + -0.015778180211782455, + -0.01608571968972683, + 0.008611141704022884, + 0.003553433110937476, + -0.005338506773114204, + 0.04187903180718422, + -0.008002745918929577, + -0.021808654069900513, + 0.0029901654925197363, + 0.02261093445122242, + 0.046050891280174255, + -0.02448292076587677, + -0.00841725803911686, + 0.021594712510704994, + 0.0007467056857421994, + -0.021273799240589142, + 0.015992121770977974, + -0.005575848277658224, + 0.02037791907787323, + 0.004532883875072002, + 0.005789789836853743, + -0.030005283653736115, + 0.012435344979166985, + -0.018465818837285042, + 0.005552448332309723, + 0.006658926606178284, + -0.040675610303878784, + 0.027344387024641037, + -0.03332137688994408, + -0.0351131334900856, + -0.022156307473778725, + -0.022891731932759285, + 0.005291707348078489, + 0.002848095027729869, + 0.01382596418261528, + -0.019121013581752777, + 0.0030820935498923063, + -0.02392132394015789, + 0.02413526549935341, + 0.012756257317960262, + 0.01870650239288807, + 0.02802632562816143, + 0.02540554292500019, + 0.046826425939798355, + 0.00017351401038467884, + -0.0294971726834774, + 0.026622334495186806, + -0.01017558854073286, + 0.0022463849745690823, + -0.013210882432758808, + -0.030700594186782837, + 0.026047367602586746, + -0.02615433745086193, + -0.001992329489439726, + -0.006164187099784613, + 0.03152961656451225, + 0.013906192034482956, + -0.01625954732298851, + -0.018653016537427902, + 0.01886695809662342, + 0.027598442509770393, + 0.005071080289781094, + 0.02429572306573391, + 0.016018863767385483, + 0.0034113626461476088, + -0.028882091864943504, + 0.03083430603146553, + -0.003476548008620739, + 0.020605232566595078, + 0.004860481712967157, + -0.028347237035632133, + 0.014360818080604076, + 0.020498262718319893, + 1.2372405535643338e-6, + -0.00472342548891902, + -0.026488622650504112, + 0.0023449985310435295, + -0.0023449985310435295, + 0.011693235486745834, + -0.015631094574928284, + 0.01739611104130745, + -0.003623632714152336, + 0.008410572074353695, + -0.003142264671623707, + -0.015644466504454613, + 0.004893910139799118, + 0.010977868922054768, + -0.004131743684411049, + 0.04859144613146782, + 0.002834723796695471, + -0.003107164753600955, + -0.01561772357672453, + -0.029577400535345078, + 0.05498294532299042, + -0.01393293496221304, + 0.023439956828951836, + 0.007554806303232908, + -0.018639646470546722, + -0.012281574308872223, + -0.020498262718319893, + -0.00839720107614994, + 0.018733246251940727, + 0.0018770016031339765, + 0.008283544331789017, + -0.012589115649461746, + 0.05067737400531769, + 0.003824202809482813, + 0.02111334353685379, + 0.027705414220690727, + -0.02821352519094944, + -0.025927025824785233, + -0.02001689374446869, + -6.262592069106176e-5, + -0.012736200354993343, + 0.03123544715344906, + -0.007628348655998707, + 0.0351131334900856, + -0.012762942351400852, + 0.023453328758478165, + 0.017115313559770584, + -0.0005164679605513811, + -0.030005283653736115, + 0.0015134683344513178, + 0.010021817870438099, + 0.011258667334914207, + -0.01608571968972683, + -0.008758226409554482, + -0.003204107051715255, + -0.0018937158165499568, + -0.0006911310483701527, + -0.01008198969066143, + 0.02616770938038826, + -0.02821352519094944, + -0.004863824229687452, + 0.016928113996982574, + -0.007802176289260387, + 0.022022593766450882, + 0.016018863767385483, + 0.0056259906850755215, + 0.03080756403505802, + 0.023627154529094696, + 0.008062916807830334, + -0.006294557824730873, + 0.033000461757183075, + 0.025565998628735542, + 0.006030473858118057, + -0.0004153471963945776, + -0.011853691190481186, + -0.02579331211745739, + -0.023212643340229988, + -4.7818204620853066e-5, + 0.002794609870761633, + -0.015149726532399654, + -0.039151281118392944, + -0.0009134295396506786, + -0.0032559209503233433, + 0.002794609870761633, + 0.004275485407561064, + 0.030219225212931633, + -0.016192691400647163, + -0.020404662936925888, + -3.6039935366716236e-5, + -0.011171753518283367, + 0.005472220480442047, + -0.03332137688994408, + 0.0009769434109330177, + 0.010971182957291603, + -0.0034030056558549404, + 0.0015936964191496372, + 0.02092614397406578, + -0.010997925885021687, + -0.05078434571623802, + -0.01485555712133646, + -0.0028180095832794905, + -0.0222365353256464, + 0.0066154696978628635, + 0.019174499437212944, + -0.020270949229598045, + -0.0023466700222343206, + 0.004853795748203993, + -0.006655583623796701, + 0.012268203310668468, + 0.01624617725610733, + 0.0023232700768858194, + 0.022758018225431442, + 0.018198391422629356, + 0.022490590810775757, + -0.008149830624461174, + -0.0029868227429687977, + 0.002577325562015176, + 0.007828918285667896, + -0.006628841161727905, + 0.008577713742852211, + 0.011285409331321716, + -0.030005283653736115, + -0.04353707656264305, + 0.0030085511971265078, + 0.0056259906850755215, + 0.033749260008335114, + -0.0014090047916397452, + -0.008250115439295769, + 0.023025445640087128, + 0.009219537489116192, + 0.014454416930675507, + -0.002565625589340925, + -0.02039129100739956, + -0.0029049233999103308, + -0.0003430584038142115, + 0.018960557878017426, + 0.036557238548994064, + -0.039632648229599, + -0.013050426729023457, + -0.01774376630783081, + 0.015256697311997414, + -0.001818502089008689, + 0.0031171932350844145, + 0.0021026430185884237, + 0.023854468017816544, + 0.0008632870740257204, + 0.019094271585345268, + 0.015350297093391418, + 0.014721843414008617, + -0.03227841109037399, + 0.03439108282327652, + 0.024576520547270775, + 0.015350297093391418, + -0.005920160096138716, + 0.002639167942106724, + 0.0255927424877882, + -0.0164601169526577, + 0.043991703540086746, + 0.014561387710273266, + 0.019201241433620453, + 0.020672090351581573, + -0.021541226655244827, + -0.003690489334985614, + -0.02503114566206932, + -0.007060066796839237, + 0.01984306611120701, + 0.020872659981250763, + -0.013244311325252056, + 0.03134241700172424, + 0.030138997361063957, + 0.03735952079296112, + 0.022905103862285614, + -0.0111182676628232, + 0.0009744362905621529, + 0.02837398089468479, + -0.02468349039554596, + -0.054501574486494064, + -0.007193780038505793, + -0.005716247018426657, + -0.027919355779886246, + -0.0004475219757296145, + -0.030513394623994827, + 0.019000671803951263, + -0.006605441216379404, + 0.03834899887442589, + 0.01756993867456913, + -0.0017399453790858388, + 0.003553433110937476, + -0.010015132836997509, + 0.022169679403305054, + -0.008323658257722855, + -0.015216583386063576, + 0.029604144394397736, + -0.004375770688056946, + 0.019950037822127342, + -0.054501574486494064, + 0.014802072197198868, + 0.03388297185301781, + -0.0004517005290836096, + -0.019147757440805435, + 0.03845597058534622, + 0.04639854654669762, + 0.013946305960416794, + -0.005676133092492819, + 0.019909923896193504, + 0.02258419059216976, + 0.017703652381896973, + -0.007735319435596466, + -0.014093390665948391, + -0.009607306681573391, + -0.020043635740876198, + 0.030165739357471466, + -0.026635706424713135, + 0.0066321841441094875, + -0.015417153015732765, + 0.03134241700172424, + 0.02540554292500019, + -0.011546150781214237, + 0.015096241608262062, + 0.02016397938132286, + 0.004325627814978361, + -0.012000776827335358, + -0.026087481528520584, + -0.028561178594827652, + 0.01811816357076168, + -0.02245047688484192, + -0.007895775139331818, + 0.02688976190984249, + 0.045302096754312515, + -0.004248742945492268, + 0.0032492352183908224, + 0.028641406446695328, + 0.011064782738685608, + 0.011091525666415691, + -0.011425809003412724, + 0.004827053286135197, + -0.047013625502586365, + 0.04706711322069168, + -0.01962912455201149, + -0.04019424319267273, + -0.0369851216673851, + -0.006886239163577557, + 0.011158381588757038, + -0.03118196129798889, + 0.00630124332383275, + -0.0028531092684715986, + 0.03642352670431137, + 0.02170168235898018, + 0.011913863010704517, + -0.040675610303878784, + -0.014160247519612312, + -0.002980137011036277, + -0.022383620962500572, + 0.021581340581178665, + -0.03332137688994408, + -0.009326508268713951, + 0.011272038333117962, + -0.005519019905477762, + 0.02579331211745739, + -0.009727648459374905, + -0.03976636007428169, + -0.003267620922997594, + 0.004191914573311806, + -0.02544565685093403, + -0.03086104989051819, + 0.008169887587428093, + -0.01591189205646515, + 0.014334075152873993, + -0.0003560118784662336, + -0.005555791314691305, + 0.001515139825642109, + 0.012375174090266228, + -0.011519407853484154, + -0.020605232566595078, + -0.013785850256681442, + 0.008156516589224339, + -0.04770893603563309, + -0.016125833615660667, + -0.021808654069900513, + 0.023052187636494637, + 0.02168831042945385, + 0.005853303242474794, + -0.04334988072514534, + 0.027036845684051514, + 0.04022098705172539, + 0.012488829903304577, + 0.01225483138114214, + 0.011760092340409756, + 0.014213732443749905, + 0.018960557878017426, + -0.012495515868067741, + -0.036717694252729416, + -0.018599532544612885, + -0.04153137654066086, + -0.0045830262824893, + -0.0019321583677083254, + -0.022891731932759285, + -0.023988181725144386, + 0.007040009833872318, + -0.026568850502371788, + 0.00025906969676725566, + 0.0021477711852639914, + -0.006899610627442598, + -0.005732961464673281, + 0.016339775174856186, + 0.010469757951796055, + 0.0028330523055046797, + 0.03008551150560379, + 0.01625954732298851, + 0.012823113240301609, + -0.01017558854073286, + -0.018064677715301514, + 0.030513394623994827, + 0.021969109773635864, + 0.011405752040445805, + -0.006725783459842205, + -0.005154651124030352, + -0.0006134101422503591, + 0.04043492674827576, + -0.010148845613002777, + -0.0004767717909999192, + 0.007635034155100584, + -0.0012218060437589884, + 0.002528854412958026, + 0.026983361691236496, + -0.0018302019452676177, + -0.0006602098583243787, + 0.001358862267807126, + 0.0035434046294540167, + 0.010964497923851013, + 0.0008917011437006295, + -0.009934904985129833, + 0.018612902611494064, + -0.026568850502371788, + -0.0014014834305271506, + -0.001567789469845593, + -0.022116193547844887, + -0.0008026981959119439, + -0.008691370487213135, + -0.00029124447610229254, + 0.0026859675999730825, + -0.021928995847702026, + 0.009527078829705715, + 0.004997537937015295, + -0.02394806779921055, + 0.04527535289525986, + 0.005719590000808239, + 0.00420862901955843, + -0.0081164026632905, + 0.021567968651652336, + 0.0033695772290229797, + 0.012482144869863987, + 0.03960590437054634, + 0.02112671546638012, + -0.013625393621623516, + -9.856138785835356e-5, + 0.034498054534196854, + -0.017249027267098427, + 0.013852707110345364, + -0.01698159985244274, + 0.006809354294091463, + 0.008744855411350727, + -0.051479652523994446, + 0.006879553664475679, + -0.04110349342226982, + 0.02561948448419571, + -0.002207942306995392, + 0.004105000756680965, + -0.011425809003412724, + -0.032572582364082336, + -0.009172738529741764, + 0.0230120737105608, + -0.0038576312363147736, + -0.02557937055826187, + -0.020859288051724434, + -0.0006990702822804451, + -0.008838455192744732, + 0.0007600770331919193, + 0.04597066342830658, + 0.038964081555604935, + -0.009032338857650757, + -0.017984449863433838, + -0.023480070754885674, + 0.015831664204597473, + 0.022931845858693123, + 0.0059134745970368385, + 0.0028447522781789303, + 0.01703508570790291, + 0.0077286334708333015, + -0.032224927097558975, + -0.013866078108549118, + -0.004215314518660307, + 0.00677258288487792, + -0.006013759411871433, + -0.040675610303878784, + -0.03083430603146553, + 0.010697070509195328, + -0.014641615562140942, + 0.0020307721570134163, + -0.011124953627586365, + -0.018719874322414398, + 0.032973721623420715, + 0.009119252674281597, + -0.002590696793049574, + -0.016861258074641228, + -0.022758018225431442, + 7.671544153708965e-6, + 0.007487949449568987, + -0.00012117775622755289, + -0.019121013581752777, + -0.011920548044145107, + -0.02056511864066124, + 0.014213732443749905, + 0.03160984441637993, + 0.017489710822701454, + -0.06471727788448334, + -0.04107675328850746, + 0.03396319970488548, + -0.02615433745086193, + -0.011499350890517235, + 0.008744855411350727, + -0.016874630004167557, + 0.0058967601507902145, + 0.015550866723060608, + 0.012281574308872223, + -0.002635825192555785, + 0.003733946243301034, + 0.0028246953152120113, + -0.025098001584410667, + -0.00513125117868185, + 0.006775925867259502, + -0.012134489603340626, + -0.018719874322414398, + -0.01814490556716919, + -0.0030503366142511368, + -0.0630592331290245, + -0.0023316270671784878, + -0.001627124729566276, + 0.049447208642959595, + -0.007080123759806156, + 0.01847919076681137, + -0.0013112268643453717, + 0.013946305960416794, + 0.005966959986835718, + 0.012408602051436901, + -0.010864212177693844, + -0.004455998539924622, + -0.002996851224452257, + 0.021206943318247795, + 0.010142160579562187, + 0.023105673491954803, + -0.014721843414008617, + -0.013197511434555054, + 0.002273127669468522, + -0.012963512912392616, + 0.017623424530029297, + 0.00762166315689683, + 0.011345581151545048, + 0.0009142652852460742, + 0.013444880954921246, + 0.03294697776436806, + -0.048297274857759476, + 0.008998910896480083, + -0.010209017433226109, + -0.006555298808962107, + 0.009667477570474148, + -0.013986419886350632, + -0.014173618517816067, + -0.006083959247916937, + 0.03195749968290329, + 0.0126024866476655, + 0.014882300049066544, + -0.012060947716236115, + 0.015283440239727497, + -0.005826560780405998, + 0.01925472728908062, + 0.012876599095761776, + 0.006899610627442598, + -0.003304392099380493, + 0.0012326702708378434, + -0.03455153852701187, + 0.017623424530029297, + -0.011793520301580429, + -0.02224990725517273, + 0.011826949194073677, + 0.03126218914985657, + -0.0010128788417205215, + 0.027758898213505745, + -0.015484009869396687, + 0.01402653381228447, + -0.001651360304094851, + 0.025111373513936996, + -0.006959781516343355, + -0.0037239177618175745, + 0.0040849437937140465, + 0.04912629723548889, + 0.003052008105441928, + 0.008845140226185322, + 0.003197421319782734, + -0.01223477441817522, + 0.02767867036163807, + 0.004750167950987816, + 0.01754319667816162, + -0.0007262308499775827, + 0.0077286334708333015, + -0.018452446907758713, + -0.02168831042945385, + 0.024188751354813576, + 0.03637004271149635, + -0.00813645962625742, + 0.013892821036279202, + 0.02842746488749981, + 0.015096241608262062, + 0.0015443896409124136, + -0.008076288737356663, + -0.008363772183656693, + 0.00016985778347589076, + 0.007033323869109154, + -0.0034665195271372795, + -0.01420036144554615, + -0.013732364401221275, + 0.01908089965581894, + -0.031074991449713707, + 0.007187094539403915, + -0.0004320613807067275, + 0.01540378201752901, + 0.0034464625641703606, + 0.011826949194073677, + 0.02786586992442608, + -0.013016997836530209, + 0.011211867444217205, + 0.02783912606537342, + -0.018051307648420334, + -0.008189944550395012, + -0.006358071696013212, + -0.001783402287401259, + -0.01702171377837658, + -0.006060559302568436, + -0.02295858785510063, + -0.007721947971731424, + 0.009313137270510197, + 0.0030403081327676773, + -0.0020006864797323942, + -0.008657941594719887, + -0.016313033178448677, + -0.02183539606630802, + 0.019923293963074684, + -0.034096911549568176, + 0.0026491964235901833, + -0.015577609650790691, + 0.014935784973204136, + -0.003817517077550292, + -0.013879449106752872, + -0.021822024136781693, + -0.0343375988304615, + -0.004449313040822744, + 0.028320495039224625, + 0.002614096738398075, + -0.04468701407313347, + -0.02824026718735695, + 0.01008867472410202, + -0.014802072197198868, + -0.011185124516487122, + -0.029443686828017235, + 0.03703860938549042, + 0.004893910139799118, + 0.0006773418863303959, + 0.009366623125970364, + 0.008624513633549213, + -0.005615962203592062, + 0.010590099729597569, + 0.03960590437054634, + -0.005953588522970676, + 0.020658718422055244, + -0.043055709451436996, + -0.02071220427751541, + -0.01223477441817522, + 0.00823005847632885, + 0.027197303250432014, + 0.005535734351724386, + -0.01814490556716919, + 0.01000176090747118, + -0.00015272575546987355, + -0.0029450373258441687, + -0.022129565477371216, + -0.01119849644601345, + 0.006418242584913969, + 0.02651536464691162, + -0.0270769614726305, + -0.017075199633836746, + -0.010877584107220173, + -0.006795982830226421, + 0.00841725803911686, + 0.029283231124281883, + -0.00943347904831171, + -0.0020374576561152935, + 0.005261621903628111, + 0.008657941594719887, + -0.013110597617924213, + 0.006348043214529753, + -0.018345477059483528, + -0.017636796459555626, + 0.001675595878623426, + -0.034471310675144196, + -0.024242237210273743, + -0.003170678624883294, + 0.003436434082686901, + -0.028293753042817116, + -0.008784969337284565, + 0.03171681612730026, + -0.016767658293247223, + -0.013745736330747604, + -0.010884269140660763, + 0.02861466445028782, + 0.024991031736135483, + 0.0074545214883983135, + 0.01540378201752901, + 0.0020525003783404827, + 0.05404695123434067, + 0.003169007133692503, + 0.012589115649461746, + 0.011933919973671436, + -0.0056259906850755215, + -0.024028295651078224, + -0.021808654069900513, + 0.021581340581178665, + 0.01866638846695423, + -0.027411244809627533, + -0.0036069185007363558, + 0.007300750818103552, + -0.0037306034937500954, + 0.010897641070187092, + 0.022196421399712563, + -0.03979310393333435, + -0.014561387710273266, + -0.029256489127874374, + -0.009700906462967396, + 0.012468772940337658, + -0.0064115566201508045, + -0.0009944932535290718, + 0.010255816392600536, + -0.027437986806035042, + 0.0025372114032506943, + 0.01485555712133646, + -0.005739646963775158, + -0.008176573552191257, + 0.021340657025575638, + -0.0003693832259159535, + -0.015363668091595173, + -0.002550582867115736, + 0.009199480526149273, + -0.005358563736081123, + -0.021648196503520012, + -0.002675939118489623, + -0.0366642102599144, + 0.02220979332923889, + 0.015764808282256126, + 0.00226978468708694, + -0.015738066285848618, + 0.011526093818247318, + 0.0033829486928880215, + -0.0060371593572199345, + -0.010703756473958492, + -0.010737184435129166, + 0.005251593422144651, + 0.008196630515158176, + -0.005997045431286097, + -0.012582429684698582, + -0.021340657025575638, + 0.009460221976041794, + -0.0002799624053295702, + 0.010202331468462944, + -0.02392132394015789, + 0.01297019887715578, + -0.008657941594719887, + -0.03120870515704155, + -0.01319082546979189, + 0.004278828389942646, + 0.007935889065265656, + 0.03048665262758732, + 0.026207823306322098, + -0.011405752040445805, + -0.011499350890517235, + 0.014788700267672539, + 0.01280305627733469, + 0.0005097822868265212, + -0.016486860811710358, + -0.020030265673995018, + 0.02485731802880764, + 0.01225483138114214, + 0.009119252674281597, + 0.0012518916046246886, + -0.008871883153915405, + 0.014160247519612312, + -0.012769628316164017, + -0.0012777985539287329, + -0.007220522966235876, + 0.01999015174806118, + -0.030032025650143623, + 0.024162009358406067, + -0.00859777070581913, + -0.00047635394730605185, + 0.016018863767385483, + 0.01502938475459814, + -0.017797252163290977, + 0.015082869678735733, + -0.003546747611835599, + -0.007742004934698343, + -0.009901476092636585, + 0.01010204665362835, + 0.008537599816918373, + 0.0036336611956357956, + -0.008283544331789017, + 0.009868048131465912, + 0.005178051069378853, + 0.006759211421012878, + -0.004639854654669762, + -0.018639646470546722, + 0.027357758954167366, + 0.01399979181587696, + 0.011826949194073677, + 0.018372219055891037, + -0.0009460222208872437, + 0.027250787243247032, + -0.001068871351890266, + 0.015163097530603409, + 0.009119252674281597, + 0.020471518859267235, + -0.00783560425043106, + 0.005415392108261585, + -0.0021761853713542223, + -0.002884866204112768, + 0.008998910896480083, + 0.028480950742959976, + -0.0011800206266343594, + 0.009600620716810226, + 0.0034264056012034416, + -0.024563148617744446, + -0.008624513633549213, + 0.001444940222427249, + -0.00019263084686826915, + 0.01194729097187519, + -0.00943347904831171, + -0.003931173589080572, + 0.0007809697417542338, + 0.007160351611673832, + 0.008952111005783081, + -0.00783560425043106, + -0.023332985118031502, + -0.0177170243114233, + -0.012187975458800793, + 0.018265249207615852, + 0.007862347178161144, + -0.007140294648706913, + -0.013037054799497128, + -0.006585384253412485, + -0.013016997836530209, + 0.011847006157040596, + 0.00802948884665966, + -0.024148637428879738, + -0.0057262759655714035, + 0.0028798519633710384, + -0.0021912280935794115, + 0.025111373513936996, + -0.021367399021983147, + -0.008357086218893528, + 0.006384814158082008, + -0.009814562276005745, + -0.008591084741055965, + 0.01960238255560398, + -0.013418138027191162, + -0.0008607798954471946, + -0.005375278182327747, + 0.0032525782007724047, + 0.002099300269037485, + 0.0034096913877874613, + 0.012187975458800793, + -0.008958796970546246, + 0.008751541376113892, + 0.01054998580366373, + 0.029844827950000763, + 0.010616842657327652, + 0.010717127472162247, + 0.035594504326581955, + -0.012415288016200066, + -0.01660720258951187, + -0.016406632959842682, + -0.01906752958893776, + 0.022570818662643433, + 0.02131391316652298, + 0.025886911898851395, + -0.007721947971731424, + 0.022918473929166794, + -0.03968613222241402, + -0.007494635414332151, + -0.017703652381896973, + 0.0004028115654364228, + -0.014039905741810799, + -0.011613007634878159, + 0.002104314509779215, + 0.009159366600215435, + 0.0294971726834774, + -0.023413212969899178, + -0.007274008356034756, + -0.011251981370151043, + -0.0033979914151132107, + -0.0126024866476655, + 0.01977621018886566, + -0.005251593422144651, + -0.015216583386063576, + -0.004322285298258066, + 0.0012903341557830572, + 0.009727648459374905, + 0.006785954348742962, + -0.0006848632474429905, + -0.009319823235273361, + 0.002976794261485338, + -0.045114897191524506, + -0.028347237035632133, + 0.0005323464283719659, + -0.002141085686162114, + 0.01336465310305357, + -0.001783402287401259, + -0.005211479030549526, + 0.0009886433836072683, + 0.005488934461027384, + 0.019522154703736305, + 0.0006890418007969856, + 0.013458251953125, + -0.02036454901099205, + 0.02429572306573391, + -0.03471199423074722, + 0.004703368525952101, + -0.03152961656451225, + 0.011499350890517235, + -0.017797252163290977, + 0.005676133092492819, + 0.012034204788506031, + 0.00471339700743556, + -0.0013864407083019614, + 0.013578594662249088, + -0.02057849057018757, + 0.011459236964583397, + 0.0073341792449355125, + -0.01734262704849243, + -0.010971182957291603, + 0.004960766527801752, + 0.02166156843304634, + -0.03158310055732727, + -0.007935889065265656, + -0.010824098251760006, + 0.011920548044145107, + 0.028079811483621597, + 0.0008925368310883641, + 0.008163202553987503, + -0.02109997160732746, + 0.006030473858118057, + 0.013464937917888165, + -0.010342730209231377, + -0.016299661248922348, + -0.005585876759141684, + -0.015256697311997414, + -0.006548612844198942, + -0.010610157623887062, + 0.03396319970488548, + 0.00980119127780199, + -0.0031873928382992744, + 0.013464937917888165, + 0.004726768005639315, + 0.05514340102672577, + -0.007421093061566353, + 0.03527359291911125, + -0.02408178150653839, + 0.0030603650957345963, + -0.021434254944324493, + 0.0008014445775188506, + 0.005529048386961222, + 0.00762166315689683, + -0.002271456178277731, + -0.013839335180819035, + -0.03719906508922577, + 0.022931845858693123, + -0.00785566121339798, + 0.015738066285848618, + 0.04824379086494446, + -0.011178439483046532, + -0.026956617832183838, + 0.04597066342830658, + -0.005134594161063433, + -0.011017982847988605, + 0.018198391422629356, + 0.0029784657526761293, + 0.005181393586099148, + -0.021768538281321526, + 0.020993001759052277, + 0.006585384253412485, + -0.01830536313354969, + -0.007788804825395346, + 0.009727648459374905, + 0.0008060410036705434, + -4.1393694118596613e-5, + 0.028454208746552467, + -0.04546255245804787, + -0.03302720561623573, + 0.01290334202349186, + -0.019147757440805435, + -0.0056560761295259, + -0.021407512947916985, + -0.010015132836997509, + -0.00696646748110652, + -0.0001445775997126475, + 0.0070266383700072765, + 0.004863824229687452, + -0.004817024804651737, + -0.019214613363146782, + 0.01391956303268671, + -0.007501320913434029, + -0.013157397508621216, + 0.0010788998333737254, + 0.022503962740302086, + -0.0008866869029588997, + 0.0336957722902298, + -0.00933988019824028, + -0.013692250475287437, + 0.0030603650957345963, + -0.007260636892169714, + 0.010255816392600536, + -0.001392290578223765, + 0.02055174671113491, + 0.010623528622090816, + -0.022169679403305054, + -0.011251981370151043, + -0.009600620716810226, + 0.023306243121623993, + -0.019923293963074684, + -0.0008018624503165483, + -0.01924135535955429, + -0.016968227922916412, + -0.00010759748693089932, + 0.018599532544612885, + -0.013471623882651329, + 0.002542225643992424, + 0.02389458194375038, + -0.011559521779417992, + 0.0054220776073634624, + -0.019482040777802467, + 0.021567968651652336, + 0.0006317957304418087, + -0.009279709309339523, + -0.0026575536467134953, + 0.00021112090325914323, + 0.017462968826293945, + 0.0003133907448500395, + -0.004222000017762184, + -0.0164601169526577, + -0.0008252622792497277, + -0.024055037647485733, + -0.012629229575395584, + -0.019361699000000954, + -0.0043891416862607, + 0.018412332981824875, + 0.0022129565477371216, + 0.0033595487475395203, + 0.0035099764354526997, + -0.008016117848455906, + -0.023827726021409035, + 0.011332209222018719, + -0.01605897769331932, + 0.007106866221874952, + -0.006906296592205763, + 0.0056259906850755215, + -0.01740948297083378, + -0.012642600573599339, + 0.0028129953425377607, + 0.0026491964235901833, + -0.0056059337221086025, + 0.01758331060409546, + -0.014454416930675507, + 0.02824026718735695, + -0.02484394796192646, + 0.08439988642930984, + 0.009480278939008713, + 0.005047680344432592, + 8.132489892886952e-5, + -0.0024720262736082077, + -0.013946305960416794, + -0.01159295067191124, + 0.02861466445028782, + 0.009700906462967396, + -0.003994687460362911, + -0.006104016210883856, + 0.007494635414332151, + 0.0039612590335309505, + 0.0038776881992816925, + -0.020498262718319893, + -0.00879165530204773, + 0.013030369766056538, + -0.001536868279799819, + 0.013144025579094887, + 0.01773039437830448, + 0.010957811959087849, + -0.0011624707840383053, + -0.02315915934741497, + 0.012936769984662533, + -0.015470638871192932, + 0.019575640559196472, + -0.0068260682746768, + 0.015484009869396687, + 0.019909923896193504, + 0.04000704362988472, + 0.012060947716236115, + -0.004325627814978361, + -0.01457475870847702, + -0.005585876759141684, + -0.0056059337221086025, + 0.007668462581932545, + 0.008764912374317646, + 0.013244311325252056, + 0.0023500127717852592, + 0.006842782720923424, + 0.012676028534770012, + -0.005639362148940563, + 0.0294971726834774, + 0.02521834522485733, + -0.024202123284339905, + -0.004843767266720533, + 0.002739452989771962, + -0.011920548044145107, + 0.013973048888146877, + 0.01870650239288807, + -0.0032074498012661934, + -0.03829551488161087, + -0.004232028499245644, + 0.0026575536467134953, + -0.003533376147970557, + -0.014227104373276234, + 0.008383829146623611, + -0.01448115985840559, + -0.01663394458591938, + -0.00015575520228594542, + -0.016179319471120834, + 0.0168478861451149, + -0.002961751539260149, + -0.02783912606537342, + -0.017676910385489464, + -0.0005411213496699929, + 0.005662762094289064, + -0.011693235486745834, + -0.0035233476664870977, + -0.015042755752801895, + -0.009968332946300507, + 0.0005260786274448037, + 0.006124073173850775, + -0.021795282140374184, + -0.0008774941088631749, + 0.018011193722486496, + 0.003217478282749653, + 0.01869313046336174, + 0.026047367602586746, + 0.022517334669828415, + 0.0115060368552804, + 0.0035567760933190584, + -0.010503186844289303, + -0.018546046689152718, + 0.003133907448500395, + -0.017462968826293945, + 0.0067558689042925835, + -0.013892821036279202, + 0.022356878966093063, + -0.02543228678405285, + -0.025672970339655876, + 0.0066154696978628635, + 0.003414705628529191, + -0.002724410267546773, + -0.013230939395725727, + 0.0065118419006466866, + -0.012589115649461746, + -0.006846125237643719, + 0.010115417651832104, + 0.009065767750144005, + 0.008250115439295769, + 0.00794257503002882, + -0.004345685243606567, + -0.02524508722126484, + 0.004302228335291147, + 0.013237625360488892, + 0.009246280416846275, + 0.0033628917299211025, + -0.01317076850682497, + -0.0013496695319190621, + -0.015564237721264362, + -0.014320703223347664, + 0.007360921707004309, + 0.00579647533595562, + -0.02356029860675335, + 0.01468172948807478, + -0.002328284317627549, + 0.0051111942157149315, + -0.0018268590793013573, + -0.026074109598994255, + 0.0008524228469468653, + -0.007534749340265989, + -0.010623528622090816, + -0.016152577474713326, + 0.012208032421767712, + -0.00294169457629323, + -0.00841725803911686, + -0.004643197171390057, + 0.0024268978741019964, + -0.002411855151876807, + 0.008343715220689774, + 0.001526004052720964, + 0.010837470181286335, + -0.02709033153951168, + 0.00462648319080472, + 0.005900103133171797, + 0.008370458148419857, + 0.007828918285667896, + 0.023613784462213516, + -0.026475250720977783, + 0.03211795538663864, + 0.011158381588757038, + 0.003817517077550292, + 0.024950917810201645, + 0.009841305203735828, + 0.007608291693031788, + -0.010302616283297539, + -0.016286291182041168, + 0.014802072197198868, + -0.017650166526436806, + 0.026849647983908653, + -0.03591541573405266, + -0.0001976451021619141, + -0.017997821792960167, + -0.008156516589224339, + 0.00934656523168087, + -0.01327773928642273, + 0.01945529691874981, + -0.015524123795330524, + 0.00011647689825622365, + 0.02445617876946926, + -0.0006292886100709438, + 0.008617827668786049, + 0.00639818562194705, + -0.017984449863433838, + -0.009547135792672634, + 0.007594920229166746, + 0.013799221254885197, + 0.0147485863417387, + -0.012174603529274464, + -0.012475458905100822, + -0.011666492559015751, + 0.01885358802974224, + -0.019281471148133278, + 0.012442030943930149, + -0.006154158618301153, + 0.008784969337284565, + -0.008631198666989803, + -0.012361802160739899, + 0.0019538868218660355, + 0.007441150024533272, + -0.008905311115086079, + 0.01054998580366373, + -0.017676910385489464, + -0.005953588522970676, + -0.011900491081178188, + 0.020070379599928856, + -0.01775713823735714, + -0.00954044982790947, + -0.0074745784513652325, + -0.011666492559015751, + 0.0006785954465158284, + -0.0113121522590518, + -0.008196630515158176, + -0.012716143392026424, + -0.02652873657643795, + 0.00990816205739975, + 0.02281150408089161, + 0.011780149303376675, + -0.006124073173850775, + -0.030245967209339142, + -0.0018937158165499568, + 0.01905415765941143, + 0.0026909818407148123, + -0.002418540883809328, + -0.006231043953448534, + -0.02053837664425373, + -0.019107643514871597, + -0.013612022623419762, + 0.006585384253412485, + -0.014775329269468784, + -0.032465610653162, + -0.0013037055032327771, + 0.0017299168976023793, + -0.009052395820617676, + 0.016406632959842682, + 0.0006982345948927104, + 0.02207607962191105, + 0.0017366026295349002, + 0.008845140226185322, + 0.007548120804131031, + -0.002585682552307844, + -0.008651255629956722, + -0.0007421093177981675, + 0.0068594967015087605, + -0.00748126395046711, + 0.01902741566300392, + 0.01572469435632229, + 0.004950738046318293, + 0.002542225643992424, + 0.0318237841129303, + 0.016941485926508904, + 0.004940709564834833, + 0.0126024866476655, + -0.008296915329992771, + 0.03289349377155304, + 0.015470638871192932, + -0.0066355266608297825, + -0.008410572074353695, + 0.0031857213471084833, + -0.014788700267672539, + -0.0032692921813577414, + -0.009125938639044762, + -0.01605897769331932, + 0.0003390887868590653, + -0.015163097530603409, + 0.0015285111730918288, + 0.00537862116470933, + 0.012482144869863987, + -2.5397708668606356e-5, + -0.01335128117352724, + -0.007842290215194225, + -0.006000388413667679, + 0.003282663645222783, + 0.02357367053627968, + -0.0036804608535021544, + 0.0005837425123900175, + 0.0076417201198637486, + -0.022490590810775757, + -0.024723604321479797, + -0.005722932983189821, + -0.007193780038505793, + 0.006555298808962107, + -0.003586861537769437, + -0.004780253395438194, + 0.04016749933362007, + -0.01777050830423832, + 0.0017533167265355587, + 0.006899610627442598, + 0.008932054042816162, + 0.002585682552307844, + -0.003351191757246852, + 0.01196734793484211, + -0.005940217059105635, + -0.009279709309339523, + -0.008564342744648457, + 0.01831873320043087, + -0.004793624859303236, + 0.010061932727694511, + -0.004295542370527983, + 0.012488829903304577, + -0.012575743719935417, + 0.0005741318454965949, + -0.01754319667816162, + 0.001978958025574684, + -0.03663746640086174, + 0.011760092340409756, + 0.01308385469019413, + -0.008056231774389744, + 0.020030265673995018, + -0.0016764316242188215, + -0.013210882432758808, + 0.015590980648994446, + -0.005291707348078489, + -0.0005030966131016612, + 0.009814562276005745, + -0.019321585074067116, + 0.0010738855926319957, + 0.007394350133836269, + 0.0031940785702317953, + -0.006371442694216967, + -0.03045990876853466, + -0.012649286538362503, + -0.004145115148276091, + 0.0005691176047548652, + 0.0006251100567169487, + 0.02445617876946926, + -0.0003390887868590653, + -0.026448506861925125, + 0.017797252163290977, + -0.00034514768049120903, + -0.007086809258908033, + 0.0022146280389279127, + 0.008089659735560417, + -0.01647348888218403, + -0.0061006732285022736, + 0.012575743719935417, + 0.032037727534770966, + -0.004255428444594145, + 0.009286394342780113, + -0.007294065319001675, + -0.004880538675934076, + 0.017663538455963135, + -0.002726081758737564, + 0.013959677889943123, + -0.011974033899605274, + 0.01869313046336174, + -0.0006050530937500298, + 0.0030837650410830975, + -0.02432246506214142, + 0.023319615051150322, + 0.021394141018390656, + -0.029978541657328606, + -0.0076417201198637486, + -0.013685565441846848, + 0.008022802881896496, + -0.010422958061099052, + -0.022864988073706627, + -0.024723604321479797, + 0.00962736364454031, + -0.014427674002945423, + 0.0033177633304148912, + -0.014441045932471752, + 0.0029366803355515003, + 0.002530525904148817, + 0.017289141193032265, + -0.002682624850422144, + -0.006986524444073439, + 0.008009431883692741, + 0.002563954098150134, + 0.013605336658656597, + 0.004546255338937044, + 0.0209127739071846, + -0.006926353555172682, + -0.003085436299443245, + -0.008845140226185322, + 0.013692250475287437, + 0.012468772940337658, + 0.025646226480603218, + -0.0023082273546606302, + -0.006538584362715483, + 0.02821352519094944, + -0.006879553664475679, + -0.0024920832365751266, + 0.01288997009396553, + 0.008584399707615376, + 0.0019973437301814556, + 0.008845140226185322, + -0.0061207301914691925, + 0.021781910210847855, + 0.002726081758737564, + -0.024175379425287247, + -0.03719906508922577, + -0.007895775139331818, + -0.026087481528520584, + 0.019348327070474625, + -0.009032338857650757, + 0.01288328506052494, + -0.00831697229295969, + -0.00518473656848073, + 0.026395022869110107, + -0.00017508096061646938, + -0.00462648319080472, + -0.00222131353802979, + 0.0147485863417387, + 0.017142055556178093, + 0.019388440996408463, + 0.013137340545654297, + 0.005017594899982214, + -0.0029667657800018787, + 0.003322777571156621, + 0.01074387039989233, + 0.005632676184177399, + -0.010202331468462944, + 0.0019806295167654753, + 0.008784969337284565, + -0.023266129195690155, + 0.02263767644762993, + 0.014641615562140942, + 5.330907242750982e-6, + -0.0015611037379130721, + -0.019281471148133278, + 0.010356102138757706, + 0.001923801377415657, + -0.011338895186781883, + -0.01083078421652317, + -0.0025405543856322765, + 0.011927234008908272, + 0.02783912606537342, + -0.00934656523168087, + 0.0005624319310300052, + -0.0036537181586027145, + -0.02352018468081951, + -0.01870650239288807, + 0.013324539177119732, + 0.024736976251006126, + -1.1817443009931594e-5, + -0.027384500950574875, + -0.004974137991666794, + -0.00990816205739975, + 0.020070379599928856, + 0.0011900491081178188, + -0.0027544957119971514, + 0.0049239955842494965, + -0.006458356510847807, + -0.02261093445122242, + 0.038242027163505554, + -0.0008494978537783027, + -0.003931173589080572, + -0.004125057719647884, + -0.005030966363847256, + -0.018251877278089523, + -0.016513602808117867, + -0.005692847538739443, + -0.0318237841129303, + -0.006689012050628662, + 0.017971079796552658, + -0.008036174811422825, + 0.004870510194450617, + 0.0021477711852639914, + -0.013077168725430965, + -0.0027294245082885027, + -0.015631094574928284, + 0.008156516589224339, + 0.007441150024533272, + 0.01437418907880783, + 0.0032275067642331123, + 0.01291002705693245, + -0.009794505313038826, + -0.011726664379239082, + -0.02765192836523056, + -0.007688519544899464, + -0.0040013729594647884, + 0.01121855340898037, + -0.019682610407471657, + -0.019294841215014458, + 0.01964249648153782, + -0.010576728731393814, + 0.015818294137716293, + -0.025258459150791168, + 0.003921145107597113, + -0.005987016949802637, + 0.006548612844198942, + -0.00870474148541689, + -0.00560259073972702, + 0.02035117708146572, + 0.026675820350646973, + 0.02075231820344925, + -0.015470638871192932, + 0.019963407889008522, + -0.005211479030549526, + 0.04385799169540405, + 0.03219818323850632, + 0.0023299558088183403, + 0.010643585585057735, + 0.022570818662643433, + -0.016379889100790024, + -0.0036269756965339184, + -0.004422570113092661, + -0.0011098211398348212, + 0.010148845613002777, + -0.0071670375764369965, + -0.021608082577586174, + 0.0018970586825162172, + 0.017623424530029297, + -0.03439108282327652, + 0.020645346492528915, + 0.022731276229023933, + -0.0022430419921875, + -0.009687534533441067, + 0.002809652592986822, + 0.0213005430996418, + 0.004328970797359943, + 0.024215493351221085, + -0.0037306034937500954, + 0.0016137533821165562, + 0.01540378201752901, + 0.016754286363720894, + 0.022517334669828415, + -0.006351385731250048, + 0.021247057244181633, + 0.005328478291630745, + -0.010596785694360733, + -0.010777299292385578, + 0.013986419886350632, + 0.021394141018390656, + -0.005488934461027384, + 0.018238505348563194, + 0.009687534533441067, + -0.006444985046982765, + 0.005208136513829231, + 0.007407721597701311, + -0.02056511864066124, + 0.006237729452550411, + 0.00556916231289506, + 0.023239387199282646, + 0.005244907457381487, + 0.007200466003268957, + 0.004516169428825378, + 0.007802176289260387, + -0.007989374920725822, + -0.015310182236135006, + -0.01046307198703289, + 0.013003626838326454, + 0.01533692516386509, + -0.012575743719935417, + 0.013839335180819035, + -0.012121118605136871, + -0.0032692921813577414, + -0.014507902786135674, + -0.009313137270510197, + -0.00476688239723444, + 0.00041388472891412675, + -0.019388440996408463, + 0.014387560077011585, + 0.012355117127299309, + 0.014628244563937187, + 0.018225135281682014, + 0.023627154529094696, + -0.02709033153951168, + 0.00925296638160944, + 0.013230939395725727, + 0.015738066285848618, + -0.002326612826436758, + 0.0005611783708445728, + 0.005448820535093546, + 0.006752525921911001, + -0.011639750562608242, + -0.0016839529853314161, + 0.012294946238398552, + -0.012107746675610542, + 0.01054330077022314, + 0.011940605007112026, + 0.004131743684411049, + 0.015310182236135006, + -0.013097225688397884, + 0.004817024804651737, + 0.008470742963254452, + 0.0033846201840788126, + 0.013244311325252056, + -0.006555298808962107, + -0.005071080289781094, + -0.01793096587061882, + -0.004178543109446764, + -0.027384500950574875, + 0.006792639847844839, + 0.01308385469019413, + -0.006007073912769556, + 0.01679440215229988, + 0.0009878076380118728, + -0.016687430441379547, + -0.022303393110632896, + -0.036182843148708344, + -0.008089659735560417, + -0.007447835523635149, + 0.007387664634734392, + -0.04096978157758713, + 0.007187094539403915, + 0.01567120850086212, + 0.0011574565432965755, + -0.009486964903771877, + -0.004566312301903963, + -0.030032025650143623, + -0.00804954580962658, + -0.002599054016172886, + 0.01719554141163826, + 0.01870650239288807, + 0.007548120804131031, + 0.023787612095475197, + -0.024375950917601585, + 0.0291762612760067, + -0.008250115439295769, + -0.011659807525575161, + 0.009152681566774845, + 0.012662657536566257, + 0.009794505313038826, + 0.0027327672578394413, + 0.006251100916415453, + -0.03142264485359192, + -0.021434254944324493, + -0.02786586992442608, + 0.012582429684698582, + 0.011098210699856281, + 0.004171857610344887, + -0.0018402304267510772, + 0.001176677760668099, + 0.009954961948096752, + -0.013003626838326454, + -0.0037506604567170143, + -0.027892611920833588, + -0.006582041271030903, + 0.0007266486645676196, + 0.0020675433333963156, + -0.016112463548779488, + 0.016192691400647163, + 0.00668566906824708, + 0.011272038333117962, + -0.0005686997319571674, + 0.005191422067582607, + -0.01083078421652317, + 0.0017332597635686398, + 0.03452479466795921, + 0.004593054763972759, + 0.018412332981824875, + -0.010790670290589333, + -0.016112463548779488, + 0.004235371481627226, + 0.00340801989659667, + 0.004004715941846371, + -0.017529824748635292, + 0.007601606193929911, + 0.028454208746552467, + -0.021621454507112503, + -0.02544565685093403, + 0.011091525666415691, + 0.0038342312909662724, + -0.021260429173707962, + -0.001664731651544571, + 0.001112328260205686, + -0.02989831380546093, + 0.013117283582687378, + 0.00035663865855894983, + -0.013210882432758808, + -0.001490904251113534, + 0.0028831949457526207, + -0.018546046689152718, + 0.01496252790093422, + -0.007869033142924309, + 0.001358862267807126, + 0.005906788632273674, + -0.018960557878017426, + 0.016139205545186996, + -0.02521834522485733, + 0.008036174811422825, + 0.008236744441092014, + -0.014775329269468784, + 0.013378024101257324, + -0.017516452819108963, + 0.05824555084109306, + 0.0012552343541756272, + -0.027411244809627533, + -0.018372219055891037, + -0.010984554886817932, + 0.006715754978358746, + -0.014775329269468784, + -0.013471623882651329, + 0.006946410518139601, + 0.0008624513284303248, + 0.008016117848455906, + -0.003824202809482813, + 0.00649512792006135, + -0.019856438040733337, + -0.031476132571697235, + 0.003197421319782734, + 0.004335656762123108, + 0.00925296638160944, + 0.004847110249102116, + -0.011038039810955524, + 0.010409587062895298, + -0.024630006402730942, + 0.00024360907264053822, + 0.004282171372324228, + 0.00991484709084034, + -0.0014106761664152145, + -1.4141757674224209e-5, + 0.007060066796839237, + 0.014721843414008617, + -0.018198391422629356, + -0.017503082752227783, + -0.015791550278663635, + -0.011004611849784851, + 0.009954961948096752, + -0.016339775174856186, + -0.027023475617170334, + 0.0015560894971713424, + -0.004559626337140799, + -0.0013095554895699024, + -0.01774376630783081, + 0.0011231924872845411, + 0.0018987300572916865, + -0.015845036134123802, + 0.0070466953329741955, + 0.0007818054291419685, + -0.0039980304427444935, + -0.006658926606178284, + -0.015069498680531979, + 0.021608082577586174, + 0.015216583386063576, + 0.012488829903304577, + -0.01533692516386509, + 0.02373412624001503, + -0.0061407871544361115, + 0.031155219301581383, + 0.014454416930675507, + -0.0025372114032506943, + -0.0410500094294548, + -0.00416517211124301, + -0.006605441216379404, + -0.009279709309339523, + 0.009500335901975632, + 0.00886519718915224, + 0.011813577264547348, + 0.0030553508549928665, + -0.00044334345147944987, + 0.0005219000740908086, + -0.025352057069540024, + -0.006331328768283129, + 0.0057296184822916985, + -0.015082869678735733, + 0.004038144368678331, + 0.0222365353256464, + -0.0051111942157149315, + 0.007401036098599434, + 0.03358880430459976, + -0.011806892231106758, + -0.006886239163577557, + 8.592129597673193e-5, + 0.003690489334985614, + -0.013839335180819035, + 0.007708576507866383, + -0.014133504591882229, + -0.024416064843535423, + -0.004984166473150253, + -0.002568968338891864, + 0.001418197643943131, + -0.00561261922121048, + 0.011051411740481853, + 0.006317957304418087, + -0.02035117708146572, + 0.009781134314835072, + 0.005519019905477762, + -0.007140294648706913, + 0.0021494426764547825, + 0.003324449062347412, + 0.011519407853484154, + -0.010449700988829136, + 0.016192691400647163, + -0.008390515111386776, + 0.0037707174196839333, + 0.010777299292385578, + 0.020110493525862694, + 0.002328284317627549, + 0.005061051808297634, + 0.0039980304427444935, + -0.007955946028232574, + 0.020324435085058212, + 0.0042888568714261055, + -0.005452163517475128, + -0.00751469237729907, + 0.023252757266163826, + -0.0053986781276762486, + -0.009727648459374905, + 0.002381769707426429, + -0.03160984441637993, + -0.015804922208189964, + -0.007902461104094982, + 0.006107358727604151, + -0.00476688239723444, + 0.0071670375764369965, + 0.027705414220690727, + 0.012562372721731663, + 0.0005231536342762411, + -0.022183051332831383, + 0.0025405543856322765, + -0.01308385469019413, + 3.105180076090619e-5, + 0.001972272526472807, + 0.01625954732298851, + 0.012328374199569225, + 0.008711427450180054, + 0.024950917810201645, + 0.01567120850086212, + -0.016313033178448677, + 0.0006748347659595311, + 0.018813474103808403, + -0.004145115148276091, + 0.00971427746117115, + -0.0005335999885573983, + -0.006237729452550411, + -0.021260429173707962, + 0.005124565679579973, + -0.004422570113092661, + -0.009493649937212467, + -0.024442806839942932, + -0.029256489127874374, + 0.03460502251982689, + -0.016232805326581, + 0.0048203677870333195, + -0.0035634618252515793, + -0.008911997079849243, + 0.0020859288051724434, + -0.017997821792960167, + 0.019589010626077652, + 0.011185124516487122, + -0.0019171156454831362, + -0.0035768330562859774, + 0.0030703935772180557, + 0.0037941173650324345, + -0.004125057719647884, + 0.02501777373254299, + -0.006261129397898912, + -0.004974137991666794, + 0.019161127507686615, + -0.006836096756160259, + -0.041023265570402145, + 0.011038039810955524, + 0.015764808282256126, + -0.013785850256681442, + -0.009640735574066639, + -0.012261517345905304, + -0.0073341792449355125, + 0.0026023967657238245, + -0.002035786397755146, + 0.014347446151077747, + 0.0006000387948006392, + -0.009680849500000477, + -0.01908089965581894, + -0.0003618618648033589, + 0.02222316525876522, + 0.01047644391655922, + 0.0001653658546274528, + -0.02188888192176819, + 0.016179319471120834, + 0.00842394307255745, + 0.011479293927550316, + 0.006073930766433477, + -0.02109997160732746, + -0.0015828321920707822, + 0.006979838944971561, + -0.026448506861925125, + 0.019348327070474625, + 0.012776314280927181, + 0.00593687454238534, + 0.009640735574066639, + 0.0015669537242501974, + -0.004455998539924622, + -0.022864988073706627, + -0.018412332981824875, + -0.011298781260848045, + 0.010202331468462944, + 0.022878360003232956, + 0.007508006412535906, + -0.013685565441846848, + -0.011499350890517235, + 0.04246737062931061, + 0.006378128658980131, + 4.011401688330807e-5, + -0.0024920832365751266, + -0.007360921707004309, + -0.023399842903017998, + -0.002074228832498193, + 0.012435344979166985, + -0.011058096773922443, + 0.017890851944684982, + 0.0010571714956313372, + -0.010870898142457008, + 0.0014792042784392834, + 0.005819875281304121, + 0.010289245285093784, + 0.013598651625216007, + -0.017904222011566162, + -0.003590204520151019, + 0.005144622642546892, + 0.02170168235898018, + -0.008363772183656693, + 0.0012318345252424479, + 0.011840320192277431, + -0.024803832173347473, + -6.173797737574205e-5, + 0.00756817776709795, + 0.019348327070474625, + 0.0063447002321481705, + 0.017128685489296913, + -0.0018352161860093474, + -0.01336465310305357, + -0.007494635414332151, + 0.033348117023706436, + -0.0013814264675602317, + 0.0004032294382341206, + 0.005351878236979246, + 0.003824202809482813, + 0.018185021355748177, + -0.004643197171390057, + -0.006588727235794067, + -0.01604560576379299, + 0.004335656762123108, + -0.028293753042817116, + -0.015644466504454613, + -0.009634049609303474, + 0.013591965660452843, + -0.011559521779417992, + -0.0010120432125404477, + -0.004696682561188936, + -0.008156516589224339, + 0.006795982830226421, + 0.014293961226940155, + 0.017476338893175125, + -0.014641615562140942, + -0.005024280399084091, + 0.0004155561327934265, + -0.007274008356034756, + 0.007267322391271591, + 0.005983673967421055, + -0.0026441821828484535, + 0.013357967138290405, + 0.0039010881446301937, + -0.021741796284914017, + -0.016727544367313385, + -0.007695205509662628, + -0.017128685489296913, + 0.013043740764260292, + -0.008457371965050697, + 0.03254583850502968, + -0.020270949229598045, + -0.011231924407184124, + 0.009700906462967396, + -0.004676625598222017, + -0.0046799685806035995, + -0.0034264056012034416, + 0.006261129397898912, + 0.01700834184885025, + -0.0018435732927173376, + -0.012488829903304577, + -0.03457828238606453, + -0.00851085688918829, + -0.0011624707840383053, + 0.0003196585748810321, + -0.002786252647638321, + -0.0033812772016972303, + -0.007668462581932545, + 0.006254443433135748, + -0.0019338298588991165, + 0.007521377876400948, + 0.002933337353169918, + -0.0008031160105019808, + -0.0009008939377963543, + -0.013097225688397884, + -0.01984306611120701, + 0.00012953484838362783, + -0.03321440517902374, + -0.002249727724120021, + -0.0244962926954031, + 0.010362787172198296, + -0.02147436887025833, + 0.0014207047643139958, + -0.01682114414870739, + 0.013852707110345364, + -0.010723813436925411, + 0.0010964497923851013, + 0.009386680088937283, + 0.009179423563182354, + 0.004379113204777241, + 0.016526974737644196, + 0.027544956654310226, + 0.020324435085058212, + 0.0015134683344513178, + -0.022356878966093063, + 0.004349027760326862, + -0.006361414212733507, + 0.004900595638900995, + -0.020845916122198105, + 0.002035786397755146, + 0.0027695384342223406, + -0.0022313420195132494, + 0.011011296883225441, + 0.01083078421652317, + -0.004793624859303236, + 0.010422958061099052, + 0.004078258294612169, + -0.01093775499612093, + 0.012294946238398552, + -0.018612902611494064, + -0.0025338686536997557, + 0.019548896700143814, + -0.013973048888146877, + -0.0009702577372081578, + 0.013498365879058838, + 0.005462191998958588, + -0.011385695077478886, + -0.014093390665948391, + 0.021407512947916985, + 0.026769420132040977, + -0.01334459614008665, + -0.007748690899461508, + 0.02297195978462696, + -0.006000388413667679, + 0.005589219741523266, + 0.004502798430621624, + -0.03289349377155304, + -0.00728737935423851, + 0.029791342094540596, + -0.008544285781681538, + -0.02204933762550354, + -0.005906788632273674, + -0.011392380110919476, + 0.011706606484949589, + 0.01589852198958397, + 0.007501320913434029, + -0.007407721597701311, + 0.019722724333405495, + -0.007996060885488987, + 0.04078258201479912, + -0.002132728463038802, + -0.005756361410021782, + 0.003001865465193987, + -0.0004851288686040789, + 0.004502798430621624, + -0.01000176090747118, + -0.02749147266149521, + -0.015751436352729797, + 0.01625954732298851, + -0.007882404141128063, + 0.0005386142292991281, + -0.006906296592205763, + -0.024897431954741478, + -0.009226223453879356, + -0.01075724232941866, + 0.0126024866476655, + 0.008497485890984535, + 0.005024280399084091, + 0.019522154703736305, + 0.007842290215194225, + 0.002843080786988139, + -0.0010020147310569882, + -0.005592562258243561, + -0.032465610653162, + 0.01722228340804577, + -0.006444985046982765, + 0.019896551966667175, + -0.00017351401038467884, + -0.024710234254598618, + -0.0029233088716864586, + -0.013271053321659565, + 0.00833034422248602, + 0.0042520854622125626, + 0.013037054799497128, + -0.004910624120384455, + 0.01113832462579012, + 0.02936345897614956, + 0.019000671803951263, + -0.011211867444217205, + 0.014507902786135674, + 0.02409515157341957, + -0.016714172437787056, + 0.009099195711314678, + 0.012241460382938385, + -0.024429434910416603, + 0.008377143181860447, + 0.008203316479921341, + 0.031663328409194946, + 5.358981798053719e-5, + 0.015350297093391418, + -0.001180856372229755, + 0.01703508570790291, + -0.017462968826293945, + -0.0014499545795843005, + 0.007548120804131031, + 0.0009460222208872437, + -0.01242865901440382, + -0.009654106572270393, + 0.018238505348563194, + -0.02095288783311844, + -0.010315987281501293, + -0.020471518859267235, + -0.01028255932033062, + -0.008724798448383808, + -0.002174513880163431, + -0.004011401440948248, + -0.004703368525952101, + 0.0019956722389906645, + 0.0006836096872575581, + -0.005388649646192789, + -0.0017449597362428904, + 0.017329255118966103, + 0.010997925885021687, + -0.005579190794378519, + -0.0004993359325453639, + -0.013458251953125, + 0.008009431883692741, + 0.008517542853951454, + -0.009379994124174118, + 0.00466994009912014, + -0.0010412930278107524, + -0.01176677830517292, + -0.011699921451508999, + 0.02837398089468479, + -6.210360152181238e-5, + -0.01008198969066143, + -0.0007843125495128334, + -0.005672790575772524, + -0.005221507512032986, + -0.01924135535955429, + -0.03468525409698486, + -0.017476338893175125, + 0.0033077348489314318, + 0.00010420242324471474, + -0.02036454901099205, + -0.0011541136773303151, + 0.0202040933072567, + 0.012241460382938385, + 0.0035935472697019577, + 0.008584399707615376, + 0.008056231774389744, + -0.002737781498581171, + 0.01091769803315401, + 0.016313033178448677, + 0.008731484413146973, + -0.01540378201752901, + 0.010275873355567455, + -0.0065519558265805244, + 0.00014363742957357317, + -0.0027996241115033627, + -0.00172824552282691, + -0.00756817776709795, + 0.013378024101257324, + 0.007120237685739994, + 0.011459236964583397, + -0.02446954883635044, + 0.030914533883333206, + -0.0006902953609824181, + 0.01960238255560398, + 0.0038776881992816925, + 0.025512514635920525, + 0.017984449863433838, + 0.004833738785237074, + -0.016928113996982574, + 0.016781030222773552, + -0.00756817776709795, + 0.018425704911351204, + 0.005030966363847256, + 0.002179528120905161, + 0.007695205509662628, + -0.0005448820302262902, + 0.01660720258951187, + -0.004318942315876484, + 0.018987299874424934, + -0.016406632959842682, + 0.0065118419006466866, + -0.0014474474592134356, + 0.04653225839138031, + -0.003586861537769437, + 0.004593054763972759, + -0.015042755752801895, + 0.006705726496875286, + -0.003195749828591943, + 0.010162217542529106, + -0.004071572795510292, + 0.004743482451885939, + 0.005873360671103001, + -0.017088571563363075, + -0.010697070509195328, + -0.01522995438426733, + 0.005963617004454136, + 0.005756361410021782, + 0.010703756473958492, + 0.007200466003268957, + 0.026769420132040977, + 0.0012569058453664184, + 0.01176677830517292, + -0.02799958363175392, + -0.003824202809482813, + -0.01664731651544571, + 0.004004715941846371, + -0.01660720258951187, + -0.020658718422055244, + -0.0038308885414153337, + -0.013378024101257324, + 0.008450686000287533, + 0.0076417201198637486, + 0.011231924407184124, + 0.04048841446638107, + 0.0015811608172953129, + -0.01754319667816162, + -0.002146099926903844, + -0.010275873355567455, + 0.00681603979319334, + -0.012662657536566257, + -0.002271456178277731, + -0.0025957110337913036, + 0.019522154703736305, + -0.015497381798923016, + -0.01977621018886566, + 0.004506140947341919, + 0.00048721814528107643, + -0.01609909161925316, + -0.00887856911867857, + -0.000831112265586853, + 0.025713084265589714, + -0.012916713021695614, + 0.024228865280747414, + -0.014227104373276234, + 0.012201346457004547, + 0.005161336623132229, + 0.005081108771264553, + -0.003790774382650852, + -0.0005908460007049143, + -0.01113832462579012, + -0.019121013581752777, + 0.032064471393823624, + -0.004964109510183334, + 0.012462087906897068, + 0.017663538455963135, + 0.014013162814080715, + -0.019187871366739273, + 0.017489710822701454, + -0.026047367602586746, + 0.010710442438721657, + -0.01759668067097664, + 0.013946305960416794, + 0.017449596896767616, + 0.006458356510847807, + -0.002014057943597436, + -0.023078929632902145, + 0.0056059337221086025, + -0.004385799169540405, + 0.004516169428825378, + 0.009139309637248516, + 0.018064677715301514, + 0.003197421319782734, + 0.01187374908477068, + -0.0022681131958961487, + -0.004258771426975727, + 0.002610753756016493, + 0.008377143181860447, + -0.017890851944684982, + -0.02390795387327671, + 0.010229074396193027, + -0.00954044982790947, + 0.015764808282256126, + -0.010509871877729893, + 0.00495742354542017, + -0.017623424530029297, + 0.004736796487122774, + 0.015256697311997414, + 0.012488829903304577, + 0.003700518049299717, + 0.0037473177071660757, + -0.013444880954921246, + -0.012468772940337658, + 0.015363668091595173, + 0.013204196467995644, + 0.00593687454238534, + 0.020618604496121407, + 0.015978749841451645, + 0.005819875281304121, + -0.016500230878591537, + 0.009125938639044762, + -0.004061544314026833, + 0.008163202553987503, + 0.01977621018886566, + -0.010229074396193027, + 0.017476338893175125, + 0.01740948297083378, + -0.022838246077299118, + -0.0009694220498204231, + -0.013444880954921246, + -0.00023943053383845836, + 0.003289349377155304, + 0.002809652592986822, + 0.006578698754310608, + 0.009827934205532074, + 0.011425809003412724, + -0.01496252790093422, + -0.01113832462579012, + -0.014280589297413826, + 0.0013889478286728263, + 0.041023265570402145, + 0.028293753042817116, + 0.003175692865625024, + -0.006528555881232023, + -0.003700518049299717, + -0.02594039775431156, + 0.012488829903304577, + -0.004041486885398626, + -0.032465610653162, + 0.007875718176364899, + 0.012388545088469982, + -0.002174513880163431, + 0.013531794771552086, + 0.016500230878591537, + -0.0015485681360587478, + 0.01391956303268671, + 0.005321792792528868, + -0.0002686803345568478, + -0.010068617761135101, + 0.02037791907787323, + 0.00578644685447216, + -0.005870017688721418, + -0.01999015174806118, + 0.0021928995847702026, + 0.012241460382938385, + -0.0034264056012034416, + -0.01036947313696146, + -0.01719554141163826, + -0.012315003201365471, + 0.0026007252745330334, + 0.013685565441846848, + -0.0028447522781789303, + -0.017462968826293945, + 0.0031205362174659967, + -0.013578594662249088, + 0.013685565441846848, + 0.019214613363146782, + 0.0064282710663974285, + -0.002411855151876807, + -0.009406737051904202, + -0.02989831380546093, + -0.0028948949184268713, + 0.00831697229295969, + -0.02842746488749981, + -0.02334635704755783, + 0.009948275983333588, + -0.007380978669971228, + -0.005101165734231472, + -0.022316763177514076, + -0.007802176289260387, + 0.0019104300299659371, + 0.006702383514493704, + -0.016353147104382515, + -0.0032442209776490927, + -0.012415288016200066, + 0.027972839772701263, + 0.01177346333861351, + -0.02672930620610714, + -0.0005181393935345113, + -0.0032910206355154514, + -0.022851618006825447, + 0.008537599816918373, + 0.012615857645869255, + 0.03789437189698219, + -0.011365638114511967, + 0.026421764865517616, + 0.0029901654925197363, + 0.009620677679777145, + 0.0038910594303160906, + -0.005749675445258617, + 0.017142055556178093, + -0.005121222697198391, + -0.00472342548891902, + -0.007508006412535906, + -0.014775329269468784, + -0.01448115985840559, + -0.004613111726939678, + -0.014614872634410858, + -0.006622155662626028, + 0.03489919379353523, + 0.016914743930101395, + -0.011974033899605274, + 0.01468172948807478, + -0.0038843739312142134, + -0.006287871859967709, + 0.011940605007112026, + -0.027812384068965912, + 0.006013759411871433, + -0.0033612202387303114, + -0.0076417201198637486, + -0.023613784462213516, + -0.010697070509195328, + -0.011699921451508999, + -0.015952007845044136, + 0.00821000151336193, + -0.0062210154719650745, + -0.0006004566675983369, + -0.0057530184276402, + 0.005258278921246529, + 0.0029216373804956675, + 0.00560259073972702, + 0.005940217059105635, + -0.011064782738685608, + -0.0012251489097252488, + -0.013812593184411526, + -0.03797459974884987, + 0.009005596861243248, + 0.011332209222018719, + 0.0010538286296650767, + 0.011659807525575161, + -0.026649078354239464, + 0.027892611920833588, + 0.005876703187823296, + 0.01281642820686102, + -0.012823113240301609, + 0.01591189205646515, + -0.0027361102402210236, + -5.1056576921837404e-6, + 0.019174499437212944, + 0.008811712265014648, + -0.0025372114032506943, + 0.0087782833725214, + 0.0291762612760067, + 0.00017069349996745586, + 0.0011282067280262709, + -0.0018970586825162172, + 0.0015000971034169197, + 0.019134385511279106, + -0.010931069031357765, + -0.022945217788219452, + 0.01327773928642273, + 0.005652733612805605, + -0.011439180001616478, + 0.005368592217564583, + 0.002049157628789544, + 0.0022430419921875, + -0.000686116807628423, + -0.018546046689152718, + 0.013090540654957294, + -0.005124565679579973, + -0.0008858511573635042, + 0.03043316677212715, + 0.025178231298923492, + 0.010376159101724625, + 0.008958796970546246, + 0.0027411244809627533, + -0.004927338100969791, + 0.0038141743279993534, + 0.014133504591882229, + 0.0016630602767691016, + -0.009246280416846275, + -0.002480383263900876, + -0.00036353326868265867, + 0.017997821792960167, + 0.008022802881896496, + 0.004452655557543039, + -0.0007065917016007006, + 0.01288328506052494, + -0.003907773643732071, + -0.0042888568714261055, + 0.008156516589224339, + -0.0003194496384821832, + 0.02071220427751541, + 0.031502872705459595, + 0.005435449071228504, + 0.0022814846597611904, + -0.02711707539856434, + -0.001097285421565175, + -0.021407512947916985, + -0.004325627814978361, + -0.010603471659123898, + 0.0028831949457526207, + -0.014668358489871025, + 0.010209017433226109, + -0.009005596861243248, + -0.007962631992995739, + -0.00509782275184989, + -0.002341655781492591, + -0.016032235696911812, + -0.002027429174631834, + 0.0019990152213722467, + 0.009794505313038826, + 0.010429644025862217, + 0.006000388413667679, + -0.02446954883635044, + 0.015443895943462849, + 0.004810338839888573, + 0.015845036134123802, + 0.018185021355748177, + -0.00991484709084034, + 0.01224814634770155, + 0.010911012068390846, + -0.012936769984662533, + -0.015537495724856853, + -0.012742885388433933, + 0.010710442438721657, + -0.0008281872724182904, + 0.014895671047270298, + -0.025459028780460358, + -0.0021694996394217014, + -0.011265352368354797, + -0.021634826436638832, + -0.02824026718735695, + -0.012983569875359535 + ], + "4bc9adf8-6c71-466c-a373-cba39f77d046": [ + -0.008306910283863544, + -0.00124107557348907, + -0.00120771792717278, + -0.007670548744499683, + -0.01309672649949789, + -0.04989619925618172, + 0.014068374410271645, + 0.016805412247776985, + -0.0024855725932866335, + 0.01562848687171936, + -0.0022101581562310457, + 0.04190405085682869, + -0.0005084903095848858, + -0.01546426396816969, + -0.009737011976540089, + -0.007451585493981838, + -0.034295085817575455, + 0.040699753910303116, + 0.008881688117980957, + -0.020431987941265106, + 0.05246901512145996, + -0.006791275460273027, + -0.0012214031303301454, + 0.025016525760293007, + 0.0029867927078157663, + -0.04231460765004158, + -0.0074994838796556, + 0.015861134976148605, + -0.03079167567193508, + 0.004629015456885099, + 0.007896354421973228, + -0.0002587356138974428, + 0.0012701567029580474, + -0.03136645257472992, + -0.0012342330301180482, + -0.025030212476849556, + 0.003705265000462532, + 0.01220034621655941, + 0.004711126442998648, + -0.007780030369758606, + -0.04037130996584892, + 0.010907095856964588, + -0.0014771451242268085, + -0.015601116232573986, + -0.05443968251347542, + 0.03268023207783699, + 0.03760690242052078, + -0.03642997518181801, + 0.029286306351423264, + 0.006941812578588724, + 0.0019005306530743837, + -0.045927494764328, + -0.017243338748812675, + 0.0033648458775132895, + 0.017407560721039772, + -0.02898523211479187, + 0.014629467390477657, + 0.04521586745977402, + 0.013062513433396816, + -0.048555053770542145, + -0.0001480780338170007, + 0.011974540539085865, + 0.0014489194145426154, + 0.010996050201356411, + -0.0414934940636158, + -0.02018565498292446, + -0.00496088108047843, + -0.011132901534438133, + -0.0505530908703804, + -0.03960493952035904, + 0.029778972268104553, + 0.06640054285526276, + -0.025112323462963104, + 0.006507307756692171, + -0.008409548550844193, + 0.006059117615222931, + 0.016942264512181282, + 0.012097707949578762, + 0.006698900368064642, + -0.004064501263201237, + -0.01056496612727642, + -0.004577695857733488, + 0.019692987203598022, + 0.006657844875007868, + 0.07910039275884628, + -0.01103026233613491, + -0.0038831725250929594, + -0.03785323351621628, + 0.0011452792678028345, + -0.0298610832542181, + 0.013500439934432507, + 0.026576638221740723, + 0.009032225236296654, + -0.007342104334384203, + -0.018214987590909004, + -0.034787751734256744, + 0.02667243406176567, + -0.007177881896495819, + 0.01612115278840065, + 0.011707679368555546, + 0.018776079639792442, + 0.04283464327454567, + -0.030271640047430992, + 0.016860153526067734, + -0.0061993906274437904, + 0.039358604699373245, + 0.003688158467411995, + -0.02760302647948265, + -0.026562953367829323, + 0.054987091571092606, + 0.010537595488131046, + -0.01937822811305523, + 0.010797614231705666, + -0.011406605131924152, + -0.026781916618347168, + -0.038893308490514755, + 0.021841563284397125, + -0.0367310494184494, + 0.006791275460273027, + -0.03407612070441246, + 0.018611857667565346, + -0.012617744505405426, + 0.013958893716335297, + 0.056875646114349365, + 0.00161399703938514, + 0.014451560564339161, + -0.009107493795454502, + -0.01154345739632845, + 0.012391938827931881, + 0.009969661012291908, + -0.046721238642930984, + -0.005101154558360577, + -0.0005602374440059066, + 0.020130913704633713, + 0.005645140539854765, + 0.01653170958161354, + 0.00853955838829279, + 0.07296942919492722, + -0.021266784518957138, + 0.04371049627661705, + -0.04893823713064194, + -0.046255942434072495, + -0.02988845482468605, + -0.001998037565499544, + 0.004331362433731556, + -0.007766345050185919, + -0.04683071747422218, + 0.023771174252033234, + -0.01748967170715332, + 0.015053708106279373, + -0.029176823794841766, + -0.019036099314689636, + 0.01798233948647976, + 0.022361598908901215, + 0.003783955005928874, + 0.02262161858379841, + -0.018050765618681908, + 0.006712585687637329, + 0.02248476631939411, + 0.014123115688562393, + 0.014615782536566257, + -0.061419129371643066, + -0.004861663561314344, + -0.023387989029288292, + 0.04499690234661102, + 0.0028157278429716825, + -0.00828638207167387, + 0.00496088108047843, + -0.03325501084327698, + 0.020582525059580803, + 0.025194434449076653, + -0.01848869025707245, + -0.028629416599869728, + -0.010291262529790401, + 0.024715451523661613, + -0.0008826947305351496, + 0.04978672042489052, + 0.004519533831626177, + 0.048144496977329254, + -0.019501395523548126, + -0.003811325179412961, + -0.022320544347167015, + 0.006674951408058405, + -0.003643681760877371, + -0.016860153526067734, + 0.012159290723502636, + 0.011167114600539207, + 0.005255112890154123, + -0.01172136515378952, + -0.0007240320555865765, + -0.028191490098834038, + -0.00856008566915989, + -0.008334279991686344, + 0.0230869147926569, + -0.03547201305627823, + -0.029696861281991005, + 0.011611883528530598, + -0.005333802662789822, + -0.001873160363174975, + 0.02018565498292446, + -0.01654539443552494, + -0.049129828810691833, + -0.04458634927868843, + 0.03623838350176811, + -0.06557942926883698, + 0.01880345121026039, + -0.015984300523996353, + -0.005631455685943365, + 0.00528248306363821, + -0.027890415862202644, + 0.027055619284510612, + -0.033419232815504074, + 0.011249225586652756, + 0.002721642144024372, + -0.013774143531918526, + 0.012241401709616184, + -0.0016978188650682569, + 0.009853336028754711, + 0.01172136515378952, + -0.019474023953080177, + -0.016819097101688385, + -0.00645940937101841, + -0.008868003264069557, + -0.031092749908566475, + -0.06514149904251099, + -0.011345022358000278, + -0.004317677114158869, + 0.05249638855457306, + -0.06393720209598541, + 0.006688636261969805, + 0.05353645980358124, + 0.005901738069951534, + 0.010284420102834702, + -0.030682194977998734, + -0.005179844330996275, + 0.01427365280687809, + -0.011954013258218765, + 0.027931472286581993, + -0.01399994920939207, + -0.027753563597798347, + 0.006093330681324005, + 0.00899116974323988, + 0.02756197191774845, + 0.03560886159539223, + -0.005829890724271536, + -0.0046495432034134865, + 0.02808200940489769, + -0.007157354149967432, + 0.04685808718204498, + -0.036676306277513504, + -0.011755578219890594, + 0.007944252341985703, + 0.00802636332809925, + -0.013171995058655739, + 0.00404397351667285, + 0.04037130996584892, + 0.041602976620197296, + -0.014875801280140877, + 0.011776105500757694, + -0.036101531237363815, + -0.009141706861555576, + -0.004745339509099722, + 0.03916701301932335, + -0.030627453699707985, + 0.028164120391011238, + -0.029642120003700256, + 0.022375285625457764, + -0.04223249480128288, + 0.002044225111603737, + 0.033419232815504074, + -0.05350909009575844, + -0.012953031808137894, + -0.015341097488999367, + -0.02112993225455284, + -0.014944227412343025, + 0.009216975420713425, + -0.0026104499120265245, + -0.004570853430777788, + -0.0015327412402257323, + -0.017174912616610527, + -0.00436557549983263, + -0.004981408827006817, + -0.02217000722885132, + 0.051374200731515884, + -0.008669567294418812, + -0.010038086213171482, + -0.012624586932361126, + -0.009360669180750847, + -0.013035142794251442, + 0.030107416212558746, + -0.0004721390432678163, + -0.025167062878608704, + -0.004475057125091553, + 0.015751652419567108, + 0.01932348683476448, + 0.00392080657184124, + -0.029833713546395302, + -0.0276714526116848, + -0.03623838350176811, + 0.029368417337536812, + -0.027753563597798347, + -0.00044049203279428184, + 0.022388970479369164, + -0.029642120003700256, + 0.029751602560281754, + -0.030627453699707985, + 0.04198615998029709, + 0.0161485243588686, + -0.03577308729290962, + 0.01698332093656063, + 0.05391964688897133, + -0.0048548211343586445, + -0.027493545785546303, + -0.014082060195505619, + 0.015149504877626896, + 0.02708299085497856, + 0.026138711720705032, + -0.01662750542163849, + -0.0011803476372733712, + 0.001873160363174975, + 0.030955899506807327, + 0.005669089965522289, + -0.08139950782060623, + 0.01982983946800232, + 0.013849412091076374, + -0.02619345299899578, + 0.05572609230875969, + -0.04102819785475731, + -0.01937822811305523, + -0.027931472286581993, + -0.038920678198337555, + -0.010777086950838566, + -0.018105505034327507, + -0.009586474858224392, + -0.02668611891567707, + -0.04546219855546951, + -0.02300480380654335, + -0.046803347766399384, + -0.015943245962262154, + -0.013281476683914661, + 0.01753072813153267, + -0.017845487222075462, + -0.03081904724240303, + -0.00723262270912528, + 0.026426101103425026, + 0.0021331789903342724, + -0.005251691676676273, + 0.006507307756692171, + -0.024989156052470207, + -0.010647077113389969, + 0.0008249603561125696, + -0.024578601121902466, + 0.010291262529790401, + 0.006671529728919268, + 0.03634786233305931, + 0.006729691755026579, + -0.001383059425279498, + -0.026918767020106316, + 0.007923725061118603, + 0.009695956483483315, + 0.025153378024697304, + -0.014711578376591206, + -0.037990085780620575, + -0.020076172426342964, + 0.0018646070966497064, + 0.020048802718520164, + 0.011091846041381359, + -0.0055014463141560555, + 0.01009966991841793, + 0.02389434166252613, + -0.021773137152194977, + 0.0048582423478364944, + 0.013192522339522839, + -0.03826379030942917, + -0.024044878780841827, + -0.018652914091944695, + -0.004755603149533272, + -0.011803476139903069, + -0.028300972655415535, + 0.025673415511846542, + 0.009497521445155144, + 0.032543379813432693, + 0.002389776287600398, + -0.047733940184116364, + 0.02669980563223362, + 0.02301848866045475, + -0.014588411897420883, + -0.014834745787084103, + 0.033419232815504074, + -0.004974566400051117, + -0.03818167746067047, + 0.019870895892381668, + -0.04283464327454567, + -0.010653920471668243, + -0.016504338011145592, + 0.012802494689822197, + -0.007177881896495819, + 0.00691444193944335, + 0.026426101103425026, + -0.03032637946307659, + -0.017229653894901276, + -0.015491634607315063, + -0.004861663561314344, + 0.02709667570888996, + 0.0230595450848341, + -0.023866970092058182, + 0.01519056037068367, + 0.00020463635155465454, + 0.005460390821099281, + -0.023853285238146782, + -0.006866544019430876, + -0.00041440463974140584, + 0.025522878393530846, + 0.017421245574951172, + 0.03593730926513672, + -0.013527809642255306, + 0.0415482372045517, + 0.020965710282325745, + -0.02805463783442974, + -0.013952050358057022, + 0.024250155314803123, + 0.057806242257356644, + -0.006538099143654108, + 0.04787079244852066, + -0.011618725955486298, + 0.020582525059580803, + 0.013931523077189922, + -0.0010665894951671362, + -0.03736056759953499, + -0.006531256716698408, + -0.026138711720705032, + 0.021348895505070686, + 0.00495403865352273, + 0.013534652069211006, + -0.02030882053077221, + -0.02846519462764263, + 0.012521948665380478, + -0.009969661012291908, + -0.012419309467077255, + 0.008129002526402473, + 0.01083866972476244, + 0.011865058913826942, + 0.0004930944996885955, + -0.01666855998337269, + -0.03128434345126152, + -0.010428114794194698, + -0.02571447193622589, + 0.009381197392940521, + -0.0025454452261328697, + 0.014615782536566257, + -0.02860204689204693, + 0.027849361300468445, + -0.05394701659679413, + 0.016901209950447083, + -0.0014848430873826146, + 0.004249251447618008, + -0.03486986458301544, + -0.007793715223670006, + 0.0027319060172885656, + -0.023579580709338188, + -0.014082060195505619, + -0.02854730561375618, + 0.0001130097298300825, + -0.003332343650981784, + 0.003517093602567911, + -0.034349825233221054, + 0.0038386955857276917, + 0.03815430775284767, + 0.011331336572766304, + 0.018160246312618256, + -6.543231575051323e-5, + 0.011495559476315975, + -0.05463127791881561, + -0.005152473691850901, + -0.01981615461409092, + -0.0008489094325341284, + 0.006890492979437113, + -0.0019005306530743837, + 0.0050874692387878895, + 0.005347487982362509, + -0.019008727744221687, + -0.015026338398456573, + -0.016791727393865585, + -0.009887549094855785, + -0.0017619681311771274, + -0.038455381989479065, + 0.02715141512453556, + -0.04781605303287506, + -0.006681793835014105, + -0.018105505034327507, + 0.055479757487773895, + 0.006110437214374542, + -0.0070478725247085094, + 0.028273601084947586, + 0.004423737525939941, + -0.02262161858379841, + 0.006668108515441418, + 0.0037600058130919933, + -0.04792553558945656, + -0.012152448296546936, + 0.021376265212893486, + -0.02111624740064144, + -0.0017132146749645472, + 0.04729601368308067, + 0.0057580433785915375, + 0.011208170093595982, + -0.041219789534807205, + -0.04291675612330437, + -0.03177700936794281, + 0.022867951542139053, + -0.011399762704968452, + -0.015163189731538296, + -0.02214263752102852, + 0.0010580362286418676, + -0.02019933983683586, + -0.013685189187526703, + -0.04978672042489052, + 0.009141706861555576, + 0.025618674233555794, + -0.0207193773239851, + 0.011194485239684582, + 0.006343085318803787, + -0.02217000722885132, + 0.009374354965984821, + -0.027397749945521355, + 0.007875826209783554, + -0.005648561753332615, + -0.007431057747453451, + 0.01081814244389534, + -0.01744861714541912, + 0.006674951408058405, + 0.012371411547064781, + 0.008395863696932793, + 2.128955748048611e-5, + 0.02849256433546543, + -0.03081904724240303, + -0.024660712108016014, + 0.002728484570980072, + 0.033419232815504074, + 0.03270760178565979, + -0.016819097101688385, + 0.006613367702811956, + 0.02622082270681858, + -0.006592839956283569, + -0.010688132606446743, + 0.010250207036733627, + -0.017270708456635475, + 0.025153378024697304, + 0.0034418252762407064, + -0.005682774819433689, + -0.023689063265919685, + 0.01194032747298479, + -0.014396819286048412, + -0.007054715417325497, + 0.018680283799767494, + -0.03183175250887871, + 0.024113303050398827, + -0.0369500108063221, + -0.019446654245257378, + -0.016736986115574837, + -0.023360619321465492, + 0.007957938127219677, + 0.02492072992026806, + -0.001041784998960793, + -0.032050713896751404, + -7.045733946142718e-5, + -0.03415823355317116, + 0.004919825587421656, + 0.012829865328967571, + 0.015081078745424747, + 0.03185912221670151, + 0.012932504527270794, + 0.057751499116420746, + 0.019583506509661674, + -0.020048802718520164, + 0.02489336021244526, + -0.009169076569378376, + 0.018776079639792442, + -0.0207467470318079, + -0.014383134432137012, + 0.034295085817575455, + -0.02945052832365036, + -0.008779048919677734, + -0.004895876627415419, + 0.02166365459561348, + 0.024181729182600975, + -0.012802494689822197, + -0.007636335678398609, + 0.012111392803490162, + 0.05101838707923889, + -0.004694019909948111, + 0.01746230199933052, + 0.02401750721037388, + -0.00013022312487009913, + -0.033829789608716965, + 0.023648006841540337, + 0.010537595488131046, + 0.014780004508793354, + 0.009388039819896221, + -0.014191541820764542, + 0.01699700579047203, + 0.03125697374343872, + -0.0019313223892822862, + -0.016764357686042786, + -0.016271689906716347, + 0.007266835775226355, + 0.0036573668476194143, + 0.013302003964781761, + -0.017653893679380417, + 0.025016525760293007, + -0.006726270541548729, + 0.006113858427852392, + -0.011324494145810604, + 0.0042355661280453205, + -0.004895876627415419, + 0.005699881352484226, + 0.012357725761830807, + 0.0459001250565052, + 0.006668108515441418, + -0.0009220396168529987, + -0.008950114250183105, + -0.024044878780841827, + 0.04784342274069786, + -0.027055619284510612, + 0.027726193889975548, + -0.0027609870303422213, + -0.00587436743080616, + -0.010318633168935776, + -0.01200191117823124, + -0.0029269198421388865, + 0.026357674971222878, + -0.0027832253836095333, + 0.0059838490560650826, + -0.002042514504864812, + 0.06727638840675354, + 0.0018115770071744919, + 0.022306859493255615, + 0.022430025041103363, + -0.019022412598133087, + -0.03092852793633938, + -0.02217000722885132, + 0.0068323309533298016, + -0.004485320765525103, + 0.010127040557563305, + -0.018611857667565346, + 0.026836656033992767, + -0.01174873486161232, + 0.029614750295877457, + 0.003937913104891777, + 0.0010700107086449862, + -0.015874819830060005, + 0.010428114794194698, + -0.0008001559181138873, + 0.009162234142422676, + -0.013520967215299606, + -0.01885819062590599, + 0.011782947927713394, + -0.010674447752535343, + 0.0061993906274437904, + -0.01054443884640932, + 0.024961786344647408, + -0.015272671356797218, + -0.01126975379884243, + 0.019227690994739532, + 0.003766848472878337, + 0.017325449734926224, + 0.006497043650597334, + 0.00047556034405715764, + 0.024715451523661613, + 0.017352819442749023, + -0.0007535407203249633, + -0.017640208825469017, + 0.032433900982141495, + 0.01335674524307251, + 0.006640738341957331, + 0.001642222749069333, + -0.00481718685477972, + -0.029368417337536812, + -0.023223767057061195, + 0.003123644506558776, + -0.00527906185016036, + -0.011906115338206291, + -0.042095642536878586, + 0.01399994920939207, + 0.008854317478835583, + 0.009039067663252354, + -0.0018577644368633628, + 0.02860204689204693, + -0.012569846585392952, + -0.02676822990179062, + 0.017612839117646217, + -0.01846132054924965, + -0.008573771454393864, + -0.02067832089960575, + 0.009887549094855785, + -0.003852380905300379, + -0.0032536538783460855, + -0.004071343690156937, + 0.001934743719175458, + -0.000429586652899161, + -0.061911799013614655, + -0.008347965776920319, + -0.002162260003387928, + -0.032023344188928604, + 0.007567910011857748, + 0.02846519462764263, + -0.01653170958161354, + -0.026891397312283516, + 0.0029252092353999615, + -0.025591304525732994, + 0.009531734511256218, + 0.00270966743119061, + 0.006541520822793245, + 0.020801488310098648, + 0.007786872796714306, + 0.014342078939080238, + -1.166047604783671e-5, + 0.0034520891495049, + -0.004454529378563166, + 0.003924228250980377, + -0.000969082466326654, + 0.008628511801362038, + -0.006637317128479481, + -0.03722371533513069, + -0.03081904724240303, + 0.0008442051475867629, + 0.02663137950003147, + 0.023196395486593246, + -0.0015609669499099255, + -0.0012325224233791232, + 0.0026771652046591043, + 0.025536563247442245, + 0.00631913635879755, + 0.007650020997971296, + -0.0070478725247085094, + 0.005094311665743589, + 0.016682246699929237, + 0.0027387484442442656, + 0.034295085817575455, + -0.044832680374383926, + -0.02025408111512661, + -0.02438700757920742, + 0.03320027142763138, + -0.005248269997537136, + -0.009237502701580524, + 0.024113303050398827, + 0.026617692783474922, + -0.015970615670084953, + 0.0025522878859192133, + -0.0001764106418704614, + 0.031202232465147972, + -0.02487967535853386, + 0.03903016075491905, + 0.003491434035822749, + 0.01844763569533825, + 0.0004618751408997923, + 0.011105530895292759, + 0.03541726991534233, + -0.01107816118746996, + 0.03785323351621628, + 0.01888556219637394, + 0.01612115278840065, + 0.011440818198025227, + -0.011002892628312111, + -4.2873132770182565e-5, + -0.017243338748812675, + -0.004687177482992411, + 0.013432013802230358, + 0.014301023446023464, + 0.006763904821127653, + 0.04182193800806999, + 0.030627453699707985, + 0.03276234492659569, + 0.006432039197534323, + -0.008142687380313873, + 0.008888530544936657, + 0.021472062915563583, + -0.0036060474812984467, + -0.03829116001725197, + -0.016011672094464302, + -0.01473894901573658, + -0.02849256433546543, + -0.0036265752278268337, + -0.019241375848650932, + 0.015847450122237206, + 0.004170561674982309, + 0.029122082516551018, + 0.011139743961393833, + -0.01984352432191372, + 0.009264873340725899, + -0.009107493795454502, + 0.022430025041103363, + -0.014561041258275509, + -0.015231615863740444, + 0.020130913704633713, + -0.004396367352455854, + 0.010886568576097488, + -0.05671142414212227, + 0.015888504683971405, + 0.02945052832365036, + 0.008347965776920319, + -0.035198308527469635, + 0.04329993948340416, + 0.04434001445770264, + 0.004057658836245537, + 0.0006722849211655557, + 0.029094712808728218, + 0.009511206299066544, + 0.030216898769140244, + -0.00600437680259347, + -0.0038318531587719917, + -0.012118235230445862, + -0.01796865463256836, + 0.020568840205669403, + -0.001974088605493307, + 0.0016114310128614306, + -0.027945157140493393, + 0.031530678272247314, + 0.01753072813153267, + -0.02534497156739235, + 0.022320544347167015, + 0.02448280341923237, + 0.007301048841327429, + -0.007123141083866358, + -0.028383083641529083, + -0.026987193152308464, + 0.028766268864274025, + -0.008457447402179241, + 0.010722345672547817, + 0.029122082516551018, + 0.027000879868865013, + -0.001343714538961649, + 0.007424215320497751, + 0.04001549258828163, + 0.006955497432500124, + 0.009757540188729763, + -0.02206052467226982, + -0.005019043106585741, + -0.034842491149902344, + 0.037990085780620575, + -0.027397749945521355, + -0.03185912221670151, + -0.01101657748222351, + -0.006336242891848087, + 0.004793237429112196, + -0.03166752681136131, + 0.00899801217019558, + -0.002846519462764263, + 0.026590323075652122, + 0.00736947450786829, + 0.00990123488008976, + -0.017859172075986862, + -0.012145605869591236, + 0.008313752710819244, + -0.022265803068876266, + 0.042068272829055786, + -0.037059493362903595, + 0.002357273828238249, + 0.021294154226779938, + -0.0066304742358624935, + 0.02252582274377346, + -0.00918276235461235, + -0.03194123134016991, + -0.018776079639792442, + 0.0013462805654853582, + -0.007862141355872154, + -0.029149454087018967, + 0.0013779274886474013, + 0.00043343560537323356, + 0.009093808010220528, + -0.0029782394412904978, + -0.0005234585260041058, + -0.007629493251442909, + 0.0074926414526999, + -0.015929561108350754, + -0.017188597470521927, + -0.02441437728703022, + 0.00871746614575386, + -0.048555053770542145, + -0.009025382809340954, + -0.019706672057509422, + 0.0076637063175439835, + 0.02903997153043747, + 0.009887549094855785, + -0.04806238412857056, + 0.012987244874238968, + 0.03273497521877289, + -0.006438881624490023, + 0.017653893679380417, + 0.012521948665380478, + 0.011967698112130165, + 0.019200321286916733, + 0.0008382178493775427, + -0.025865009054541588, + -0.011098688468337059, + -0.021855248138308525, + 0.002061331644654274, + -0.009552262723445892, + -0.016476968303322792, + -0.016860153526067734, + 0.0070205023512244225, + -0.03317289799451828, + 0.0011812029406428337, + 0.007848456501960754, + -0.0207330621778965, + -0.02760302647948265, + 0.019898265600204468, + 0.012857235968112946, + 0.0025539984926581383, + 0.02393539622426033, + 0.0031681214459240437, + 0.00990807730704546, + -0.019432969391345978, + -0.019597191363573074, + 0.0229500625282526, + 0.02122572809457779, + 0.024126989766955376, + 0.0035649919882416725, + -0.016367487609386444, + -0.0030620612669736147, + 0.033419232815504074, + -0.01705174706876278, + -0.005905159283429384, + -0.011954013258218765, + -0.005898316856473684, + -0.017325449734926224, + 0.0183792095631361, + 0.01473894901573658, + 0.00802636332809925, + -0.006524414289742708, + -0.007992150261998177, + 0.00339221628382802, + 0.008956956677138805, + -0.0080879470333457, + 0.029176823794841766, + -0.01755809783935547, + -0.013842569664120674, + -0.0050635202787816525, + -0.03284445405006409, + -0.017653893679380417, + -0.015122134238481522, + -0.001833815360441804, + 0.004567432217299938, + -0.026111342012882233, + -0.00677759014070034, + -0.005439862608909607, + -0.025522878393530846, + 0.04316308721899986, + 0.010181780904531479, + 0.01473894901573658, + -0.00599753437563777, + 0.02403119206428528, + 0.015108449384570122, + 0.0006141228950582445, + 0.037004753947257996, + 0.0207193773239851, + -0.010626549832522869, + 0.00645940937101841, + 0.02994319424033165, + -0.012111392803490162, + 0.012145605869591236, + -0.011331336572766304, + 0.00150194950401783, + 0.012309827841818333, + -0.026029231026768684, + 0.009401725605130196, + -0.03607415780425072, + 0.026070285588502884, + 0.014588411897420883, + 0.003595783608034253, + -0.002685718471184373, + -0.03601941838860512, + -0.015587430447340012, + 0.02256687730550766, + -0.0029012602753937244, + -0.036648936569690704, + -0.019953006878495216, + 0.006445724051445723, + 0.007547381799668074, + 0.0007466981769539416, + 0.04798027500510216, + 0.009750697761774063, + -0.004327941220253706, + -0.0024239891208708286, + -0.014492616057395935, + 0.018091820180416107, + 0.0031612787861377, + -0.006739955861121416, + 0.00016026639787014574, + 0.027343008667230606, + 0.02122572809457779, + -0.023812230676412582, + -0.025878693908452988, + -0.009819123893976212, + 0.015149504877626896, + 0.00553565938025713, + -0.02906734310090542, + -0.02994319424033165, + 0.01564217172563076, + -0.02400382235646248, + 0.009983345866203308, + -0.02664506435394287, + -0.0183518398553133, + 0.03785323351621628, + 0.00918276235461235, + 0.001457472681067884, + -0.009955975227057934, + -0.024756507948040962, + 0.004023445770144463, + 0.014875801280140877, + -0.0161485243588686, + -0.021540489047765732, + -0.012665643356740475, + -0.012665643356740475, + 0.014177856035530567, + 0.031503304839134216, + 0.0005563884624280035, + -0.05693038925528526, + -0.03949545696377754, + 0.03555412217974663, + -0.003575255861505866, + -0.008806419558823109, + 0.0028824431356042624, + -0.003207466332241893, + 0.002788357436656952, + 0.012084022164344788, + 0.012405624613165855, + -0.007129983976483345, + 0.009401725605130196, + -0.004680334590375423, + -0.007780030369758606, + -0.004605066496878862, + -0.003667630720883608, + -0.015546374954283237, + -0.021759450435638428, + -0.03451404720544815, + -0.0023367460817098618, + -0.06399194896221161, + -0.010742873884737492, + -0.01219350378960371, + 0.03418560326099396, + 0.006086488254368305, + 0.01292566116899252, + 0.0031287765596061945, + 0.0034623530227690935, + 0.017257023602724075, + 0.007896354421973228, + -0.007520011626183987, + -0.0017286104848608375, + 0.0024222785141319036, + 0.0299979355186224, + -0.011160272173583508, + 0.031120121479034424, + -0.011208170093595982, + -0.009169076569378376, + -0.0019638247322291136, + -0.01706543192267418, + 0.015956930816173553, + 0.005508288741111755, + 0.026850342750549316, + 0.00029252091189846396, + 0.019036099314689636, + 0.04455897584557533, + -0.039796531200408936, + 0.012378253974020481, + -0.01569691300392151, + -0.007725289557129145, + 0.010318633168935776, + -0.01402731891721487, + -0.023825915530323982, + 0.00496088108047843, + 0.03084641695022583, + 0.0063944049179553986, + 0.01972035877406597, + -0.007314733695238829, + 0.01427365280687809, + -0.005101154558360577, + 0.012344040907919407, + 0.018529746681451797, + -0.007198409643024206, + -0.0042150383815169334, + -0.011345022358000278, + -0.0299705658107996, + 0.01356886513531208, + -0.013650976121425629, + -0.029806341975927353, + 0.02756197191774845, + 0.03782586380839348, + 0.0026737439911812544, + 0.006733113434165716, + -0.016367487609386444, + 0.01493054162710905, + 0.006976025179028511, + 0.02396276779472828, + -0.004485320765525103, + -0.0038181678391993046, + 0.0017046614084392786, + 0.0553155355155468, + 0.0038660659920424223, + 0.008416391909122467, + 0.011906115338206291, + -0.011146587319672108, + 0.031585417687892914, + 0.008005836047232151, + 0.025180749595165253, + 0.006716006901115179, + -0.003931070677936077, + -0.019214006140828133, + -0.011372392065823078, + 0.018693968653678894, + 0.04201353341341019, + -0.009066438302397728, + 0.019008727744221687, + 0.02950526773929596, + -6.85328632243909e-5, + 0.012768281623721123, + 2.031395342783071e-5, + -0.013459383510053158, + 0.001832104753702879, + 0.006024904549121857, + -0.021732080727815628, + -0.008204271085560322, + -0.02534497156739235, + 0.0070478725247085094, + -0.03632049262523651, + 0.0044476864859461784, + 0.012070337310433388, + 0.00873799342662096, + 0.0019501395290717483, + 0.005056677386164665, + 0.031202232465147972, + -0.014944227412343025, + 0.021061506122350693, + 0.028629416599869728, + 0.005333802662789822, + 0.005833311937749386, + -0.007964780554175377, + 0.003371688537299633, + -0.015341097488999367, + 0.0008305199444293976, + -0.015519005246460438, + -0.006035168655216694, + 0.013028300367295742, + 0.013801513239741325, + -0.003289577318355441, + -0.02898523211479187, + -0.008389021269977093, + -0.016353800892829895, + 0.005918844603002071, + -0.02017197012901306, + -0.019186636433005333, + -0.032078083604574203, + 0.0161895789206028, + -0.006846016272902489, + -0.02950526773929596, + -0.033364493399858475, + -0.01427365280687809, + -0.0006881084409542382, + 0.017243338748812675, + 0.006524414289742708, + -0.03284445405006409, + -0.03046323172748089, + 0.0002450504107400775, + -0.009504363872110844, + -0.0038797513116151094, + -0.022703729569911957, + 0.03306341916322708, + -0.007636335678398609, + 0.005070362705737352, + -0.004899297840893269, + -0.001047772355377674, + 0.006976025179028511, + 0.0027729615103453398, + 0.019077153876423836, + 0.0021314683835953474, + 0.011488717049360275, + -0.034295085817575455, + -0.018598172813653946, + -5.597028575721197e-5, + -0.00528248306363821, + 0.006969182752072811, + 0.004324520006775856, + -0.009839651174843311, + 0.006497043650597334, + -0.002581368898972869, + 0.002458202186971903, + -0.026809286326169968, + -0.007191567216068506, + -0.005569871980696917, + 0.02712404541671276, + -0.030517973005771637, + -0.010181780904531479, + -0.015012652613222599, + -0.0005739226471632719, + 0.015943245962262154, + 0.029833713546395302, + -0.007855298928916454, + -0.00528590427711606, + 0.011967698112130165, + 0.008416391909122467, + -0.014602097682654858, + 0.01083182729780674, + -0.015313726849853992, + -0.04373786598443985, + 0.006137807387858629, + -0.026494527235627174, + -0.022909007966518402, + -0.009784910827875137, + -0.004225302487611771, + -0.021992100402712822, + 0.0005730672855861485, + 0.012727226130664349, + -0.01977509818971157, + -0.014150486327707767, + -0.007766345050185919, + 0.012426151894032955, + 0.00600095558911562, + 0.007650020997971296, + 0.01664119027554989, + -0.013822041451931, + 0.04891086742281914, + -0.0039037002716213465, + 0.01217297650873661, + 0.008833790197968483, + 0.004064501263201237, + -0.005142210051417351, + -0.013794670812785625, + 0.002290558535605669, + 0.020363561809062958, + -0.020541468635201454, + 0.00450584851205349, + 0.003807903965935111, + -0.009955975227057934, + 0.01243983767926693, + 0.002519785426557064, + -0.039796531200408936, + 3.4814374885172583e-6, + -0.03955019637942314, + -0.019692987203598022, + 0.01885819062590599, + -0.009148549288511276, + -0.009333299472928047, + 0.001621695002540946, + -0.023593267425894737, + -0.008799577131867409, + 0.008813261985778809, + -0.00918276235461235, + 0.0015566903166472912, + 0.0070410300977528095, + 0.004912983160465956, + -0.017585469409823418, + -0.0003226711123716086, + 0.00391738535836339, + 0.005118261091411114, + -0.010038086213171482, + -0.013425171375274658, + -0.025180749595165253, + 0.02255319245159626, + 0.006993131712079048, + -0.0048548211343586445, + -0.013274634256958961, + 0.013822041451931, + 0.006065960042178631, + -0.0033032626379281282, + 0.002974817994982004, + -0.008231641724705696, + 0.003371688537299633, + 0.01198138389736414, + 0.007608965504914522, + -0.0183518398553133, + -0.011180799454450607, + 0.009326457045972347, + 0.0007206107839010656, + 0.0036368391010910273, + -0.032461270689964294, + 0.010667605325579643, + -0.0019039519829675555, + -0.028738897293806076, + -0.029204195365309715, + -0.009080123156309128, + 0.016299061477184296, + 0.04056290164589882, + 0.03188649192452431, + -0.015820078551769257, + -0.016791727393865585, + 0.012350883334875107, + 0.0027729615103453398, + 0.0063704559579491615, + -0.015614801086485386, + -0.0014489194145426154, + 0.02988845482468605, + 0.006107016000896692, + 0.01846132054924965, + -0.0036231540143489838, + -0.019419284537434578, + 0.019077153876423836, + -0.007136826403439045, + -0.0013377272989600897, + -0.006018062122166157, + 0.013774143531918526, + -0.022717414423823357, + 0.0161895789206028, + -0.009559105150401592, + 0.004150033928453922, + 0.011858216486871243, + 0.003127065720036626, + -0.01929611712694168, + 0.004721390549093485, + -0.008327437564730644, + -0.004895876627415419, + 0.0001494679308962077, + 0.026480842381715775, + 0.007198409643024206, + 0.02297743409872055, + -0.0057614645920693874, + 0.009244345128536224, + 0.002873889869078994, + 0.006982868071645498, + 0.006442302837967873, + -0.020541468635201454, + 0.026918767020106316, + 0.01475263386964798, + -0.0023435887414962053, + 0.02389434166252613, + -0.0014078639214858413, + 0.028410453349351883, + 0.0006645870162174106, + 0.034787751734256744, + 0.005248269997537136, + 0.02249845117330551, + -0.009128021076321602, + 0.015874819830060005, + -0.008197428658604622, + 8.831224113237113e-5, + 0.0161895789206028, + 0.022388970479369164, + 0.012152448296546936, + 0.013623606413602829, + 0.01083866972476244, + -0.024250155314803123, + -0.00018186333181802183, + 0.0005884631536900997, + -0.0002683580096345395, + 0.004249251447618008, + 0.007937409915030003, + -0.002812306396663189, + -0.005166159011423588, + 0.0023829336278140545, + 0.010304947383701801, + -0.010763401165604591, + -0.014711578376591206, + -0.006083066575229168, + -0.001308646285906434, + 0.00048154761316254735, + 0.0007723578601144254, + -0.002562551759183407, + -0.01894030161201954, + -0.0019911951385438442, + -0.0055493442341685295, + 0.01355518028140068, + -0.016723301261663437, + -0.02022670954465866, + -0.0040337094105780125, + -0.0021058085840195417, + 0.00048753488226793706, + 0.018529746681451797, + -0.00946330837905407, + -0.0018457899568602443, + -0.0010426404187455773, + 0.003985811490565538, + -0.004286885727196932, + 0.031503304839134216, + -0.007451585493981838, + -0.004988251719623804, + 0.012405624613165855, + 0.018146561458706856, + 9.916416274791118e-6, + 0.002810595789924264, + -0.0006085632485337555, + -0.026480842381715775, + 0.006288344506174326, + 0.004577695857733488, + 0.019528765231370926, + 0.020856229588389397, + 0.002767829690128565, + 0.034842491149902344, + -0.019487710669636726, + -0.0114750312641263, + -0.0033374757040292025, + 0.011064475402235985, + 0.021964728832244873, + 0.01654539443552494, + 0.024989156052470207, + -0.002061331644654274, + 0.008649040013551712, + -0.03164015710353851, + 0.008772206492722034, + -0.011433975771069527, + -0.011399762704968452, + -0.01565585657954216, + -0.012583531439304352, + -0.006069381721317768, + 0.020965710282325745, + 0.018789764493703842, + -0.014602097682654858, + -0.01428733766078949, + -0.010770244523882866, + -0.017174912616610527, + -0.00024141529866028577, + 0.008587456308305264, + -0.008785891346633434, + -0.00963437370955944, + -0.00027092397795058787, + -0.007738974876701832, + 0.005740936845541, + 0.008122160099446774, + -0.009093808010220528, + -0.012337198480963707, + 0.0004708560591097921, + -0.043080978095531464, + -0.024154359474778175, + 0.006134386174380779, + -0.00020014589244965464, + 0.023606952279806137, + 0.004478478338569403, + -0.006657844875007868, + -0.019501395523548126, + 0.020568840205669403, + -0.006260974332690239, + 0.008375336416065693, + 0.01198138389736414, + -0.021335210651159286, + 0.029204195365309715, + -0.03418560326099396, + 0.011782947927713394, + -0.04384734854102135, + 0.016435911878943443, + -0.026987193152308464, + 0.009942290373146534, + 0.010640234686434269, + -0.0012068626238033175, + -0.007171039469540119, + 0.024181729182600975, + -0.031503304839134216, + 0.006524414289742708, + -0.0032776028383523226, + -0.020952025428414345, + -0.024099618196487427, + 0.012809337116777897, + 0.030654825270175934, + -0.039796531200408936, + -0.001910794642753899, + -0.0207604318857193, + 0.01884450577199459, + 0.007027344778180122, + 0.0033169477246701717, + 0.005155895370990038, + -0.017366506159305573, + -0.005183265544474125, + -0.0011589644709601998, + -0.014766319654881954, + -0.024085933342576027, + 0.005125103518366814, + -0.007314733695238829, + -0.012569846585392952, + -0.003176674712449312, + 0.03454141691327095, + -0.0034880125895142555, + -0.005463812034577131, + 0.01334990281611681, + 0.009032225236296654, + 0.06585313379764557, + -0.0010443510254845023, + 0.04272516071796417, + -0.027466176077723503, + -0.00019961131329182535, + -0.010886568576097488, + -0.005651983432471752, + 0.014123115688562393, + 0.01610746793448925, + -0.005918844603002071, + -0.014492616057395935, + -0.03645734488964081, + 0.015833763405680656, + -0.014615782536566257, + 0.01447893027216196, + 0.04053553193807602, + -0.015149504877626896, + -0.027274582535028458, + 0.0506899431347847, + -0.01939191296696663, + -0.010298104956746101, + 0.007003395818173885, + 0.0009400014532729983, + 0.0068391733802855015, + -0.022648988291621208, + 0.02297743409872055, + 0.011386077851057053, + -0.03456879034638405, + -0.010195465758442879, + 0.011693994514644146, + 0.0008912479970604181, + 0.006052275188267231, + 0.018516061827540398, + -0.04357364401221275, + -0.0276714526116848, + 0.004546904005110264, + -0.024975471198558807, + -0.009825966320931911, + -0.031120121479034424, + -0.028656786307692528, + 0.005559608340263367, + -0.0126382727175951, + -0.004721390549093485, + -0.004731654189527035, + 0.0023675377015024424, + -0.013124097138643265, + 0.02576921135187149, + -0.026467155665159225, + -0.018228672444820404, + 0.008854317478835583, + 0.020952025428414345, + -0.009114336222410202, + 0.02901260182261467, + -0.009825966320931911, + -0.008847475051879883, + -0.0023145077284425497, + -0.0009434227249585092, + 0.014766319654881954, + -0.014424189925193787, + 0.015751652419567108, + 0.0019450075924396515, + -0.02029513567686081, + -0.017215969040989876, + -0.0009579632896929979, + 0.04371049627661705, + -0.007027344778180122, + -0.0010015848092734814, + -0.011830846779048443, + -0.02114361710846424, + 0.0016020224429666996, + 0.010325475595891476, + -0.00019757992413360626, + 0.001049482962116599, + 0.016504338011145592, + -0.015902189537882805, + 0.004126084502786398, + -0.013473069295287132, + 0.024099618196487427, + -0.01354149542748928, + -0.00645256694406271, + -0.007212094962596893, + -0.0019655353389680386, + 0.01653170958161354, + -0.021253099665045738, + 0.006219918839633465, + 9.948491060640663e-5, + 0.006213075947016478, + -0.015519005246460438, + -0.010263891890645027, + -0.010866040363907814, + 0.003664209507405758, + 0.016682246699929237, + -0.00323141529224813, + 0.002128046937286854, + -0.004834293387830257, + -0.0005264521460048854, + -0.005675932392477989, + 0.009216975420713425, + -0.019679302349686623, + -0.0049027190543711185, + -0.01608009822666645, + 0.011146587319672108, + -0.00031304871663451195, + -0.017257023602724075, + -0.0019398756558075547, + -0.012720383703708649, + -0.006089909467846155, + 0.028383083641529083, + -0.004427158739417791, + 0.01658644899725914, + -0.028656786307692528, + 0.07214831560850143, + 0.008436919189989567, + 0.013178837485611439, + 0.0012906844494864345, + 0.005949635989964008, + -0.02017197012901306, + -0.0068425945937633514, + 0.019679302349686623, + 0.014082060195505619, + 0.0005170435761101544, + -0.009381197392940521, + 0.005597242619842291, + 0.01939191296696663, + -0.002516364213079214, + -0.02534497156739235, + -0.01887187547981739, + 0.008779048919677734, + -0.003513672389090061, + 0.013213050551712513, + 0.023606952279806137, + 0.014588411897420883, + -0.009490679018199444, + -0.01520424522459507, + 0.008594298735260963, + -0.01794128306210041, + 0.017393875867128372, + -0.0074857985600829124, + 0.006958918645977974, + 0.01655907928943634, + 0.03448667749762535, + 0.011830846779048443, + 0.000646625179797411, + -0.014396819286048412, + -0.008512187749147415, + 0.004163718782365322, + -0.004139769822359085, + 0.01520424522459507, + 0.008477974683046341, + -0.002742169890552759, + -0.0012333777267485857, + 0.011776105500757694, + -0.014615782536566257, + 0.02630293369293213, + 0.024236470460891724, + -0.015915876254439354, + 0.0055219740606844425, + 0.0031937810126692057, + -0.008655882440507412, + 0.006822066847234964, + 0.020938340574502945, + -0.0016969634452834725, + -0.034267716109752655, + 0.009210132993757725, + -0.001526754000224173, + 0.004516112618148327, + -0.01880345121026039, + 0.012761439196765423, + -0.0029885033145546913, + -0.015477949753403664, + -0.007157354149967432, + -0.016764357686042786, + 0.00035966388531960547, + -0.015792708843946457, + -0.03445930778980255, + -0.024770192801952362, + -0.005556187126785517, + 0.005200372077524662, + -0.0030329800210893154, + 0.013151466846466064, + -0.010578651912510395, + -0.00632597878575325, + -0.00300389900803566, + 0.004591381177306175, + -0.016463283449411392, + -0.003890015184879303, + 0.016928579658269882, + 0.011974540539085865, + 0.022813210263848305, + 0.033364493399858475, + 0.016736986115574837, + 0.013609920628368855, + 0.005214057397097349, + -0.009148549288511276, + -0.026056600734591484, + 0.013425171375274658, + -0.012159290723502636, + 0.004136348608881235, + -0.018666598945856094, + 0.025167062878608704, + -0.01936454325914383, + -0.02210158109664917, + -0.008443761616945267, + 0.007157354149967432, + 0.010989206843078136, + -0.004977987613528967, + 0.0030312694143503904, + -0.0025454452261328697, + -0.021855248138308525, + 0.026535581797361374, + -0.008614826947450638, + 0.0008664435590617359, + -0.0012325224233791232, + -0.02163628488779068, + -0.020869914442300797, + 0.012699855491518974, + -0.0055253952741622925, + 0.01571059785783291, + 0.011256068013608456, + -0.014834745787084103, + -6.901398592162877e-5, + -0.014054689556360245, + -0.012152448296546936, + 0.01037337351590395, + 0.006544942036271095, + -0.016258005052804947, + 0.009285401552915573, + -0.0017859172075986862, + 0.004971145186573267, + 0.000572211982216686, + -0.029560009017586708, + -0.011064475402235985, + -0.014807375147938728, + -0.004280042834579945, + -0.010907095856964588, + 0.015820078551769257, + 0.0014771451242268085, + -0.006045432295650244, + 0.001631103572435677, + 0.00827953964471817, + -0.012946189381182194, + 0.009476994164288044, + -0.003183517139405012, + 0.009613845497369766, + -0.024551229551434517, + 0.011392920278012753, + 0.01083182729780674, + -0.001873160363174975, + 0.004724811762571335, + 0.02255319245159626, + -0.03278971463441849, + 0.024756507948040962, + 0.0023247716017067432, + 0.007027344778180122, + 0.01701069064438343, + 0.0006183995283208787, + 0.010783929377794266, + -0.012686170637607574, + -0.018269728869199753, + 0.014246282167732716, + -0.016394857317209244, + 0.021403636783361435, + -0.032050713896751404, + -0.005162737797945738, + -0.013910994865000248, + -0.011331336572766304, + 0.003183517139405012, + -0.00854640081524849, + 0.016778042539954185, + -0.03084641695022583, + 0.0055014463141560555, + 0.030107416212558746, + -0.0072531504556536674, + 0.009682271629571915, + 0.01217297650873661, + -0.018789764493703842, + -0.006288344506174326, + 0.00403713108971715, + 0.010229678824543953, + 0.019665617495775223, + -0.006979446858167648, + -0.019432969391345978, + -0.013151466846466064, + 0.02300480380654335, + -0.020021433010697365, + 0.007054715417325497, + 0.00021393800852820277, + 0.01174189243465662, + 0.002075016964226961, + -0.017421245574951172, + 0.0059359511360526085, + 0.0031972024589776993, + -0.003286156104877591, + 0.015081078745424747, + -0.004139769822359085, + 0.0003545319486875087, + -0.02118467353284359, + 0.02945052832365036, + -0.01932348683476448, + -0.007766345050185919, + -0.002583079505711794, + -0.019446654245257378, + 0.00920328963547945, + -0.009237502701580524, + 0.005104575771838427, + -0.009100651368498802, + -0.016887523233890533, + 0.010079141706228256, + 0.02262161858379841, + 0.009360669180750847, + -0.01655907928943634, + -0.02162260003387928, + -0.014547356404364109, + 0.017380191013216972, + 0.004540061578154564, + 0.0005478352541103959, + -0.02156785875558853, + -0.030080046504735947, + -0.009476994164288044, + -0.021362580358982086, + 0.00391396414488554, + -0.024332266300916672, + -0.018338153138756752, + -0.0037292141932994127, + -0.00019640385289676487, + -0.0053166961297392845, + 0.0080947894603014, + -0.004348468966782093, + 0.009750697761774063, + 0.003414454869925976, + 0.00782792828977108, + 0.01517687551677227, + -0.002518074819818139, + -0.010414429008960724, + -0.0037155288737267256, + 0.0036299964413046837, + -0.008313752710819244, + 0.018064450472593307, + 0.019241375848650932, + 0.003783955005928874, + -0.0025899221654981375, + 0.01883082091808319, + 0.0015515583800151944, + 0.01493054162710905, + 0.011954013258218765, + -0.01493054162710905, + 0.036566827446222305, + 0.009237502701580524, + -0.0068391733802855015, + 0.004132927395403385, + 0.009860179387032986, + -0.0025249174796044827, + 0.007218937389552593, + -0.005378279369324446, + -0.02067832089960575, + -0.013890467584133148, + -0.02253950759768486, + 0.005046413745731115, + 0.019460339099168777, + 0.01219350378960371, + -1.9699189579114318e-5, + -0.0015909032663330436, + -0.006678372621536255, + -0.009285401552915573, + -0.004540061578154564, + 0.030600083991885185, + -0.002225553849712014, + -0.00010028677934315056, + 0.009771225042641163, + -0.015915876254439354, + -0.02489336021244526, + -0.0008099921396933496, + -0.008300067856907845, + -0.0011692283442243934, + 0.0033990589436143637, + 0.00873115099966526, + 0.029560009017586708, + -0.025536563247442245, + 0.0006440592114813626, + -0.011242383159697056, + -0.0027336166240274906, + 0.001362531678751111, + -0.01427365280687809, + 0.012138763442635536, + 0.004451107699424028, + -0.010318633168935776, + -0.009025382809340954, + 0.008915901184082031, + -0.004776131361722946, + 0.01308304164558649, + 0.001135015394538641, + 0.007957938127219677, + -0.0038797513116151094, + -0.006346506532281637, + -0.023579580709338188, + 0.004570853430777788, + -0.03166752681136131, + 0.024222785606980324, + 0.01751704327762127, + -0.0006932403775863349, + 0.014602097682654858, + -0.0033973483368754387, + -0.015874819830060005, + 0.016764357686042786, + -0.005309853702783585, + -0.010133882984519005, + 0.0022118687629699707, + -0.012268772348761559, + -0.0009134864085353911, + 0.018146561458706856, + -0.0020493571646511555, + 0.006148071493953466, + -0.015149504877626896, + -0.020527783781290054, + -0.01356202270835638, + -0.0008698648307472467, + 0.0020134334918111563, + 0.0229500625282526, + 0.003558149328455329, + -0.023784859105944633, + 0.011345022358000278, + -0.0006530401296913624, + -0.009784910827875137, + -0.00044776228605769575, + -0.005610927939414978, + -0.013644133694469929, + -0.007732131984084845, + 0.0207467470318079, + 0.021047821268439293, + -0.026097657158970833, + 0.01198138389736414, + 0.004892455413937569, + -0.0011230409145355225, + 0.018639227375388145, + 0.003332343650981784, + 0.016381172463297844, + -0.012166133150458336, + 0.008347965776920319, + -0.0038558021187782288, + 0.01616220921278, + -0.02170471101999283, + 0.02579658292233944, + 0.014301023446023464, + -0.021745765581727028, + -0.00450926972553134, + -0.002620713785290718, + 0.005809362977743149, + -0.021321525797247887, + -0.027958841994404793, + -0.03188649192452431, + 0.0035649919882416725, + -0.015327412635087967, + 0.004386103246361017, + -0.01976141333580017, + -0.0023179289419203997, + -0.0020869914442300797, + 0.022963747382164, + 0.0026070286985486746, + -0.0064217750914394855, + 0.025043897330760956, + -0.004574274644255638, + 3.6351284506963566e-5, + 0.014780004508793354, + 0.019898265600204468, + -0.0010674447985365987, + -0.0048548211343586445, + 0.003074035746976733, + 0.01985720917582512, + 0.008067418821156025, + 0.02160891517996788, + -0.010660762898623943, + 0.004974566400051117, + 0.023675378412008286, + -0.006175441667437553, + 0.0010520489886403084, + 0.01609378308057785, + 0.0022341071162372828, + -0.00403713108971715, + 0.01291881874203682, + -0.017393875867128372, + 0.00645598815754056, + 0.004865084774792194, + -0.023798543959856033, + -0.03169490024447441, + -0.01010651234537363, + -0.01399994920939207, + 0.021020451560616493, + -0.0076637063175439835, + 0.01930980198085308, + -0.01705174706876278, + -0.00032459560316056013, + 0.020801488310098648, + -0.00011140599963255227, + -0.003825010498985648, + -0.005686196032911539, + -0.00293034128844738, + 0.01054443884640932, + 0.006849437486380339, + 0.02355221100151539, + 0.010195465758442879, + -0.0028653366025537252, + -0.00873115099966526, + 0.010749716311693192, + 0.017311764881014824, + -0.01152977254241705, + -0.00013856255100108683, + -0.0019638247322291136, + -0.009292243979871273, + 0.023579580709338188, + 0.01608009822666645, + 0.00784161314368248, + -0.012255087494850159, + -0.02301848866045475, + 0.01334990281611681, + 0.0011726496741175652, + -0.010694975964725018, + -0.007992150261998177, + 0.008347965776920319, + 0.018173931166529655, + 0.02255319245159626, + -0.014136800542473793, + 0.014451560564339161, + 0.0015489923534914851, + -0.02623450756072998, + -0.0229500625282526, + 0.025153378024697304, + 0.012959874235093594, + 0.00678443256765604, + -0.012241401709616184, + 0.0076842340640723705, + -0.013596235774457455, + 0.02163628488779068, + -0.008436919189989567, + 0.0066544231958687305, + 0.004078186582773924, + -0.0017457170179113746, + -0.026809286326169968, + 0.04267042130231857, + -0.0012256797635927796, + -0.0026549268513917923, + 0.00015353072376456112, + -0.010900253430008888, + -0.0009742144029587507, + -0.01937822811305523, + -0.0031561467330902815, + -0.027507230639457703, + -0.011782947927713394, + 0.030983269214630127, + -0.008067418821156025, + 0.0038421170320361853, + 0.012152448296546936, + -0.010469170287251472, + -0.012070337310433388, + -0.016955949366092682, + 0.013644133694469929, + 0.005802520550787449, + 0.010934466496109962, + -0.0005414203042164445, + 0.026864027604460716, + -0.013883625157177448, + -0.01984352432191372, + -0.02898523211479187, + 0.01009282749146223, + -0.011433975771069527, + 0.00827269721776247, + -0.004067922476679087, + -0.013438856229186058, + 0.015423208475112915, + -0.014355763792991638, + 0.014602097682654858, + -0.01978878490626812, + -0.0018765815766528249, + -0.001833815360441804, + 0.0010708661284297705, + -2.0541148842312396e-5, + -0.011208170093595982, + 0.012029281817376614, + 0.018338153138756752, + 0.007355789188295603, + -0.00736263208091259, + 0.021855248138308525, + 0.0023162183351814747, + 0.024168044328689575, + 0.04061764106154442, + 0.007410530000925064, + 0.010797614231705666, + 0.009565947577357292, + -0.015833763405680656, + -0.006384140811860561, + -0.010257049463689327, + 0.0014395108446478844, + 0.007622650358825922, + -0.006380719598382711, + -0.016422227025032043, + 0.005597242619842291, + 0.028246231377124786, + -0.033857159316539764, + 0.031120121479034424, + 0.002201604889705777, + -0.0022375285625457764, + -0.00024312594905495644, + 0.0004832582490053028, + 0.03328238055109978, + 0.0019484288059175014, + 0.02118467353284359, + 0.005463812034577131, + 0.007773187477141619, + 0.01056496612727642, + 0.018160246312618256, + 0.010907095856964588, + -0.0040473947301507, + 0.013869939371943474, + 0.007218937389552593, + 0.011687152087688446, + -0.01562848687171936, + 0.027726193889975548, + 0.03322764113545418, + -0.009955975227057934, + 0.020363561809062958, + 0.0022580563090741634, + -0.011098688468337059, + 0.0011931774206459522, + -0.005463812034577131, + -0.010346002876758575, + 0.010729189030826092, + 0.013822041451931, + 0.010127040557563305, + -0.0023983295541256666, + -0.009073280729353428, + 0.0052961683832108974, + 0.014711578376591206, + -0.009121178649365902, + -0.01012019719928503, + 0.002577947685495019, + 0.015094763599336147, + 0.010496539995074272, + -0.02114361710846424, + 0.010291262529790401, + -0.01308988407254219, + 0.001936454325914383, + -0.010920781642198563, + -0.017393875867128372, + 0.0048753488808870316, + 0.005422756541520357, + -0.023593267425894737, + 0.016736986115574837, + 0.011331336572766304, + 0.010660762898623943, + 0.013952050358057022, + 0.03174963966012001, + -0.015231615863740444, + 0.003180095925927162, + 0.01655907928943634, + 0.013137781992554665, + -0.005672511179000139, + -0.008375336416065693, + 0.0028174384497106075, + 0.005716987885534763, + -0.003825010498985648, + 0.0037531631533056498, + 0.00361973256804049, + -0.00035367661621421576, + 0.0038865937385708094, + 0.0001494679308962077, + 0.012357725761830807, + 0.02297743409872055, + -0.020048802718520164, + -0.0004806922806892544, + 0.010339160449802876, + 0.002916655968874693, + 0.009613845497369766, + -0.007868983782827854, + -0.008053733967244625, + -0.010975521989166737, + -0.006976025179028511, + -0.022005785256624222, + 0.0014189830981194973, + 0.012480893172323704, + -0.014656838029623032, + 0.01517687551677227, + 0.005138788837939501, + -0.006500464864075184, + -0.01571059785783291, + -0.02628924883902073, + -0.020459357649087906, + -0.003243390005081892, + 0.007157354149967432, + -0.03596467897295952, + -0.00150194950401783, + 0.010455484502017498, + 0.003474327502772212, + -0.0010486276587471366, + -0.006048853974789381, + -0.027698824182152748, + -0.007383159827440977, + -0.008231641724705696, + 0.011885587126016617, + 0.012405624613165855, + 0.0028619151562452316, + 0.020514098927378654, + -0.019542450085282326, + 0.026357674971222878, + -0.022676359862089157, + -0.010749716311693192, + 0.01519056037068367, + 0.007451585493981838, + 0.006284923292696476, + 0.004293728154152632, + -0.00047000072663649917, + -0.028848379850387573, + -0.008477974683046341, + -0.0207467470318079, + 0.014095745049417019, + 0.003282734891399741, + -0.002721642144024372, + 8.23249647510238e-5, + -0.0026720331516116858, + 0.005196950864046812, + -0.004054237622767687, + -0.007732131984084845, + -0.0367036797106266, + -0.01475263386964798, + 0.0005961610586382449, + 0.008313752710819244, + -0.014342078939080238, + 0.01664119027554989, + -0.0055185528472065926, + 0.006527835503220558, + -0.0019159265793859959, + 0.0006320846732705832, + -0.011461346410214901, + 0.00014112851931713521, + 0.028821008279919624, + 0.0018628963734954596, + 0.015519005246460438, + -0.01572428271174431, + -0.006089909467846155, + -0.0010862619383260608, + 0.013000929728150368, + 0.020555155351758003, + -0.01107816118746996, + -0.016285374760627747, + 0.009825966320931911, + -0.011132901534438133, + -0.026042915880680084, + 0.004639279097318649, + -0.0021177830640226603, + -0.0322149358689785, + 0.0066065252758562565, + 0.001383059425279498, + -0.04042604938149452, + 0.001642222749069333, + -0.004221880808472633, + -0.010777086950838566, + -0.006069381721317768, + 0.004132927395403385, + -0.012337198480963707, + 0.019446654245257378, + -0.013459383510053158, + 0.0068152244202792645, + -0.0008407838176935911, + -0.006873386446386576, + 0.010975521989166737, + -0.026891397312283516, + 0.0016918315086513758, + 0.010736031457781792, + -0.026932453736662865, + 0.010448642075061798, + -0.00966174341738224, + 0.054932352155447006, + -0.006873386446386576, + -0.017174912616610527, + -0.020076172426342964, + -0.020418303087353706, + -0.004020024556666613, + -0.014574727043509483, + -0.01172136515378952, + 0.0036060474812984467, + 0.0026258458383381367, + -0.0004056375764776021, + 0.0149989677593112, + 0.010893411003053188, + -0.011892429552972317, + -0.04007023572921753, + -0.006093330681324005, + 0.002971396781504154, + 0.010927624069154263, + 0.004115820862352848, + -0.008676409721374512, + 0.016025356948375702, + -0.027397749945521355, + 0.0024256999604403973, + -0.0069178631529212, + 0.004088450223207474, + 0.004536640364676714, + -1.849638829298783e-5, + 0.010647077113389969, + 0.019159264862537384, + -0.023853285238146782, + -0.020842542871832848, + -0.01473894901573658, + -0.013897310011088848, + -0.002432542387396097, + -0.024318581447005272, + -0.025153378024697304, + 0.003205755725502968, + -0.005443284288048744, + 0.0011153429513797164, + -0.02206052467226982, + -0.009853336028754711, + -0.0007963069947436452, + -0.007061557844281197, + 0.0074857985600829124, + -0.013897310011088848, + -0.00853955838829279, + 0.001436944934539497, + -0.015874819830060005, + 0.02164996974170208, + 0.015272671356797218, + 0.013302003964781761, + -0.020910969004034996, + 0.02345641516149044, + -0.005682774819433689, + 0.01702437549829483, + 0.02156785875558853, + -0.005826469510793686, + -0.023210082203149796, + 0.001974088605493307, + 0.0012906844494864345, + -0.013055671006441116, + 0.006233603693544865, + 0.005556187126785517, + 0.007533696945756674, + -0.00047513266326859593, + 0.0010340871522203088, + -0.009620687924325466, + -0.018748709931969643, + -0.007718447130173445, + 0.016449598595499992, + -0.016312746331095695, + 0.00586068257689476, + 0.02945052832365036, + -0.009709642268717289, + 0.006291765719652176, + 0.029204195365309715, + -0.0066031040623784065, + -0.005179844330996275, + 0.0006316570215858519, + 0.02108887769281864, + -0.008156373165547848, + 0.019966691732406616, + -0.016367487609386444, + -0.037579528987407684, + -0.015970615670084953, + 0.0036265752278268337, + 0.0026463735848665237, + -0.007923725061118603, + 0.012166133150458336, + 0.0035923621617257595, + -0.01475263386964798, + 0.024263840168714523, + 0.007465270813554525, + -0.012563004158437252, + -0.0010161253158003092, + 0.003725792746990919, + -0.002950869034975767, + -0.004338204860687256, + 0.01453367155045271, + -0.012576689012348652, + 0.0002961560676340014, + 0.00944962352514267, + 0.021896302700042725, + -0.0032416791655123234, + -0.011242383159697056, + -0.002684007864445448, + -0.008108475245535374, + 0.01747598685324192, + -0.0026463735848665237, + -0.00947015080600977, + -0.01354149542748928, + 0.031010638922452927, + 0.0016781464219093323, + -0.010010716505348682, + -0.009216975420713425, + -0.025577619671821594, + -0.007608965504914522, + -0.0138357263058424, + 0.008642197586596012, + -0.012432994320988655, + 9.535529898130335e-6, + 0.03716897591948509, + 0.012426151894032955, + -0.003848959458991885, + -0.016230635344982147, + 0.005905159283429384, + -0.008676409721374512, + -0.009791753254830837, + 0.0012094286503270268, + 0.02388065494596958, + 0.0019432968692854047, + 0.02111624740064144, + 0.03325501084327698, + 0.006962340325117111, + -0.01881713606417179, + 0.0025711050257086754, + 0.015245300717651844, + 0.010215993970632553, + 0.010647077113389969, + -0.0008651606040075421, + -0.012569846585392952, + -0.006175441667437553, + 0.008457447402179241, + -0.0072805206291377544, + -0.01664119027554989, + -0.012953031808137894, + -0.036785788834095, + 0.03276234492659569, + -0.016490653157234192, + 0.012549318373203278, + -0.005508288741111755, + -0.012056651525199413, + -0.004136348608881235, + -0.028629416599869728, + 0.015984300523996353, + 0.013534652069211006, + -0.0033152371179312468, + -0.005884631536900997, + 0.008566929027438164, + 0.005840154830366373, + -0.008909058757126331, + 0.025577619671821594, + -0.01743493229150772, + -0.0036299964413046837, + 0.016504338011145592, + -0.006555205676704645, + -0.032953936606645584, + 0.005162737797945738, + 0.010024401359260082, + -0.012699855491518974, + -0.004919825587421656, + -0.010250207036733627, + -0.01011335477232933, + 0.001850921893492341, + -0.010346002876758575, + 0.012672485783696175, + -0.013240421190857887, + -0.0014976729871705174, + -0.005747779738157988, + 0.0005183265311643481, + 0.01748967170715332, + 0.014492616057395935, + 0.003804482752457261, + -0.01401363406330347, + 0.02215632237493992, + 0.007738974876701832, + 0.006733113434165716, + 0.0018064450705423951, + -0.020596209913492203, + -0.0024034613743424416, + -0.009244345128536224, + -0.02539971098303795, + 0.010886568576097488, + 0.014697893522679806, + 0.002535181352868676, + 0.003209176938980818, + 0.005070362705737352, + -0.010763401165604591, + -0.026056600734591484, + -0.01428733766078949, + -0.009764382615685463, + 0.010325475595891476, + 0.016435911878943443, + 0.008300067856907845, + 0.015573745593428612, + -0.012487735599279404, + 0.033446602523326874, + 0.008683253079652786, + 0.0009793463395908475, + 0.0005675076972693205, + -0.009483836591243744, + -0.025043897330760956, + -0.01011335477232933, + 0.010017558932304382, + 0.0012333777267485857, + 0.021444691345095634, + 0.004519533831626177, + -0.010072299279272556, + 0.009374354965984821, + -0.0049027190543711185, + 0.0015780733665451407, + 0.01929611712694168, + -0.02108887769281864, + -0.008238484151661396, + -0.011954013258218765, + 0.020555155351758003, + -0.006866544019430876, + -0.004249251447618008, + 0.022265803068876266, + -0.010893411003053188, + 0.002617292571812868, + 0.01172820758074522, + 0.0183518398553133, + 0.009545419365167618, + 0.01703806035220623, + -0.0014728684909641743, + -0.015286357142031193, + -0.001424115034751594, + 0.02758934162557125, + -0.003725792746990919, + 0.0017602575244382024, + -0.0008390732109546661, + 0.013479911722242832, + 0.0004973711329512298, + -0.015258986502885818, + -0.004351890180259943, + -0.01172136515378952, + -0.005234585143625736, + -0.01473894901573658, + -0.014588411897420883, + -0.008868003264069557, + 0.012788809835910797, + -0.017612839117646217, + -0.010592336766421795, + -0.007807400543242693, + 0.008443761616945267, + -0.0006231038132682443, + 0.00947015080600977, + 0.01606641337275505, + -0.007171039469540119, + -1.1794120837294031e-5, + 0.0030979847069829702, + -0.01009966991841793, + 0.008176900446414948, + -0.005604085046797991, + -0.005720409099012613, + 0.006637317128479481, + 0.005217478610575199, + -0.021348895505070686, + -0.019624561071395874, + -0.011755578219890594, + -0.023114284500479698, + 0.014150486327707767, + -0.009073280729353428, + 0.03347397223114967, + -0.018119191750884056, + -0.0007129128207452595, + 0.00962753128260374, + -0.006476515904068947, + -0.0034606424160301685, + -0.005559608340263367, + 0.006750219967216253, + 0.01291881874203682, + -0.006069381721317768, + 0.0022392391692847013, + -0.02616608329117298, + -0.008498502895236015, + -0.013288319110870361, + -0.0030842996202409267, + 0.00017908353765960783, + 0.0032331261318176985, + 0.0021759450901299715, + 0.011796633712947369, + -0.000602148356847465, + 0.0008929586037993431, + 0.0053132749162614346, + -0.004119242075830698, + -5.02770344610326e-5, + -0.002102387137711048, + -0.026973508298397064, + -0.004283464513719082, + -0.033364493399858475, + -0.013616763986647129, + -0.02025408111512661, + 0.01709280163049698, + -0.009524892084300518, + 0.006746798288077116, + -0.028410453349351883, + 0.00871746614575386, + -0.011755578219890594, + -0.0044168950989842415, + 0.0207056924700737, + 0.004516112618148327, + 0.014232597313821316, + 0.016504338011145592, + 0.02441437728703022, + 0.029122082516551018, + -0.0023795124143362045, + -0.019980376586318016, + 0.006288344506174326, + -0.019501395523548126, + 0.0004956604680046439, + -0.017818117514252663, + -0.00392080657184124, + -0.002199894282966852, + 0.006305451039224863, + 0.022402655333280563, + 0.010455484502017498, + 0.0019501395290717483, + 0.00600095558911562, + 0.00528590427711606, + -0.01712017133831978, + -0.004598223604261875, + -0.012686170637607574, + 0.00012744333071168512, + 0.017188597470521927, + -0.0017243338515982032, + -0.010489697568118572, + 0.020473044365644455, + 0.014629467390477657, + -0.010448642075061798, + -0.009251188486814499, + 0.02111624740064144, + 0.023743804544210434, + -0.011242383159697056, + -0.005258534103631973, + 0.01571059785783291, + 0.002305954461917281, + 0.0006551784463226795, + 0.012521948665380478, + -0.02630293369293213, + -0.008587456308305264, + 0.02403119206428528, + -0.0042389873415231705, + -0.012166133150458336, + -0.003282734891399741, + -0.004741918295621872, + 0.013274634256958961, + 0.013596235774457455, + 0.0070410300977528095, + 0.0022084475494921207, + 0.03347397223114967, + -0.0007184724672697484, + 0.042068272829055786, + -0.002435963833704591, + -0.0032793134450912476, + 0.0014403661480173469, + -0.009107493795454502, + 0.006230182480067015, + -0.01220718864351511, + -0.029724230989813805, + -0.006284923292696476, + 0.008231641724705696, + -0.00495745986700058, + 0.009381197392940521, + -0.00848481711000204, + -0.02214263752102852, + -0.008621669374406338, + -0.019651932641863823, + 0.007410530000925064, + 0.00899116974323988, + 0.014082060195505619, + 0.011892429552972317, + -0.0034520891495049, + 0.015300041995942593, + 0.0074789561331272125, + -0.009353826753795147, + -0.021732080727815628, + 0.01757178269326687, + -0.0006633040029555559, + 0.02262161858379841, + -0.00645256694406271, + -0.0184065792709589, + -0.0020151440985500813, + -0.012261929921805859, + 0.009162234142422676, + 0.012740911915898323, + 0.013609920628368855, + -0.00901169702410698, + 0.013527809642255306, + 0.017311764881014824, + 0.02942315675318241, + -0.0006162612116895616, + 0.016490653157234192, + 0.022758470848202705, + -0.014889486134052277, + 0.004868505988270044, + 0.009045910090208054, + -0.024250155314803123, + 0.012693013064563274, + 0.016504338011145592, + 0.008703780360519886, + -0.007335261441767216, + 0.024195415899157524, + 0.009743855334818363, + -0.0008347965776920319, + -0.025153378024697304, + -0.002511232392862439, + 0.0038797513116151094, + 0.0052893259562551975, + -0.007752659730613232, + -0.009579632431268692, + 0.009675429202616215, + -0.013035142794251442, + -0.01493054162710905, + -0.009073280729353428, + -0.012357725761830807, + -0.0015147794038057327, + 0.004379260819405317, + -0.012720383703708649, + -0.00599753437563777, + 0.008881688117980957, + -0.0016815676353871822, + -0.0007146234856918454, + 0.006729691755026579, + 0.015587430447340012, + 0.008512187749147415, + -0.007472113706171513, + 0.0007796281133778393, + -0.013000929728150368, + 0.011201327666640282, + -9.884341852739453e-5, + -0.016449598595499992, + 0.003725792746990919, + -0.0016986741684377193, + -0.005634876899421215, + -0.007082085590809584, + 0.01606641337275505, + -0.005836733151227236, + -0.004611908923834562, + 0.002624134998768568, + -0.008176900446414948, + -0.002536891959607601, + -0.0054980251006782055, + -0.030189527198672295, + -0.005788835231214762, + 0.007129983976483345, + -0.00014326682139653713, + -0.025919748470187187, + -0.001198309357278049, + 0.020404618233442307, + 0.004434001632034779, + 0.009887549094855785, + 0.001395889325067401, + 0.016805412247776985, + 0.0003859651042148471, + 0.0010332318488508463, + 0.021376265212893486, + -0.007003395818173885, + -0.0023829336278140545, + 0.01356202270835638, + 0.004865084774792194, + 0.006640738341957331, + 0.00874483585357666, + 0.0024889938067644835, + -0.009832808747887611, + 0.006014640908688307, + 0.001748282928019762, + 0.01152977254241705, + -0.01292566116899252, + 0.04042604938149452, + 0.0016336694825440645, + 0.0230869147926569, + 0.0026771652046591043, + 0.015915876254439354, + 0.0030671930871903896, + 0.00263610971160233, + -0.012528791092336178, + 0.014807375147938728, + -0.00017876278434414417, + 0.013144624419510365, + -0.014177856035530567, + -0.003927649464458227, + 0.017599154263734818, + -0.0051079969853162766, + -0.004132927395403385, + 0.009955975227057934, + 0.024236470460891724, + -0.006685215048491955, + 0.018201302736997604, + 0.008457447402179241, + 0.02574184164404869, + 0.006493622437119484, + 0.0017859172075986862, + -0.02217000722885132, + -0.0009323035483248532, + -0.004478478338569403, + 0.007930567488074303, + -0.002637820318341255, + 0.0044682142324745655, + 0.010229678824543953, + -0.009326457045972347, + -0.011687152087688446, + -0.01308988407254219, + -0.0057614645920693874, + 0.00899116974323988, + 0.0005657970323227346, + 0.020021433010697365, + 0.022881636396050453, + 0.0012453522067517042, + 0.008313752710819244, + -0.021348895505070686, + -0.0017192019149661064, + -0.016860153526067734, + -0.0033956377301365137, + -0.008327437564730644, + -0.02617976814508438, + -0.007547381799668074, + -0.009545419365167618, + 0.012296142987906933, + 0.02018565498292446, + 0.009771225042641163, + 0.050388868898153305, + 0.003470906289294362, + -0.02672717534005642, + -0.012077179737389088, + 0.002372669754549861, + 0.0021058085840195417, + -0.011256068013608456, + 0.004314255900681019, + 0.002018565544858575, + 0.009737011976540089, + -0.019186636433005333, + -0.015258986502885818, + 0.004454529378563166, + 0.006739955861121416, + -0.030162157490849495, + -0.015286357142031193, + -0.004587959963828325, + 0.024072248488664627, + -0.003517093602567911, + 0.02440069243311882, + -0.020869914442300797, + 0.014424189925193787, + -0.005853839684277773, + 0.0037805335596203804, + -0.008854317478835583, + 0.005823048297315836, + -0.004283464513719082, + -0.01217981893569231, + 0.03415823355317116, + -0.00873799342662096, + 0.008703780360519886, + 0.009798595681786537, + 0.01309672649949789, + -0.0004956604680046439, + 0.012959874235093594, + -0.023182710632681847, + 0.0031612787861377, + -0.0072463080286979675, + 0.0003558149328455329, + 0.021444691345095634, + 0.01199506875127554, + 0.0013231867924332619, + -0.01802339404821396, + 0.007061557844281197, + -0.004071343690156937, + -0.001684988965280354, + 0.01309672649949789, + 0.015122134238481522, + 0.000863022287376225, + 0.007259992882609367, + -0.0019467181991785765, + -0.0033408969175070524, + -0.0015489923534914851, + 0.015354782342910767, + -0.029149454087018967, + -0.00990123488008976, + 0.014342078939080238, + -0.01707911677658558, + 0.013192522339522839, + -0.015313726849853992, + 0.011324494145810604, + -0.021718395873904228, + -0.002186208963394165, + 0.021814191713929176, + 0.0183518398553133, + -0.003848959458991885, + -0.0016379461158066988, + -0.019145580008625984, + -0.007157354149967432, + 0.0030090310610830784, + 0.010318633168935776, + -0.009292243979871273, + 0.02994319424033165, + 0.014916856773197651, + 0.009121178649365902, + -0.01926874741911888, + 0.0007744961767457426, + -0.010489697568118572, + 0.016326431185007095, + 0.012959874235093594, + -0.013637291267514229, + 0.012521948665380478, + 0.004132927395403385, + -0.029560009017586708, + -0.006726270541548729, + -0.019405599683523178, + 0.005248269997537136, + -0.015614801086485386, + 0.009114336222410202, + 0.006798117887228727, + 0.004355311393737793, + 0.0036265752278268337, + -0.016955949366092682, + 0.0011469899909570813, + -0.013076198287308216, + 0.0016952528385445476, + 0.04277990385890007, + 0.026508212089538574, + -0.003205755725502968, + -0.005898316856473684, + -0.006367034278810024, + -0.03035375103354454, + 0.016326431185007095, + -0.00039537367410957813, + -0.023853285238146782, + 0.0008809840655885637, + 0.005474075675010681, + -0.006158335134387016, + 0.0008061432163231075, + 0.018735025078058243, + -0.017257023602724075, + 0.016230635344982147, + -0.0048513999208807945, + -0.006175441667437553, + -0.011043948121368885, + 0.007088928017765284, + 0.001144423964433372, + -0.003773690899834037, + -0.020801488310098648, + -0.0016593292821198702, + 0.026590323075652122, + -0.006021483335644007, + -0.005857260897755623, + -0.012275614775717258, + -0.005169580224901438, + 0.007198409643024206, + 0.030080046504735947, + -0.010961837135255337, + -0.025591304525732994, + -0.002536891959607601, + -0.016258005052804947, + 0.01755809783935547, + 0.019049784168601036, + 0.0059633213095366955, + 0.0030107416678220034, + -0.00723262270912528, + -0.02630293369293213, + -0.019953006878495216, + 0.006295187398791313, + -0.02903997153043747, + -0.023401673883199692, + 0.013315689750015736, + 0.014574727043509483, + 0.008895372971892357, + -0.02303217351436615, + -0.01706543192267418, + 0.005244848784059286, + 0.014916856773197651, + -0.019036099314689636, + -0.001318054855801165, + -0.00901853945106268, + 0.013924680650234222, + 0.009675429202616215, + -0.021034136414527893, + -0.002892707008868456, + -0.004225302487611771, + -0.01802339404821396, + 0.013534652069211006, + 0.007287363521754742, + 0.038948047906160355, + -0.006575733423233032, + 0.03580045700073242, + -0.0013283187290653586, + 0.012323513627052307, + 0.008628511801362038, + -0.010065456852316856, + 0.013014615513384342, + -0.01011335477232933, + 0.0126314302906394, + -0.013767301104962826, + -0.015546374954283237, + -0.010920781642198563, + -0.018160246312618256, + -0.01710648648440838, + -0.008943271823227406, + 0.042040903121232986, + 0.008950114250183105, + -0.009422252885997295, + 0.001604588469490409, + -0.0036299964413046837, + -0.014342078939080238, + 0.023237451910972595, + -0.01884450577199459, + 0.007643178571015596, + 0.0028533621225506067, + -0.010311790741980076, + -0.02939578704535961, + 0.0025471558328717947, + -0.008491660468280315, + -0.019597191363573074, + 0.013507282361388206, + 0.0050908904522657394, + -0.007383159827440977, + -0.00015588286623824388, + 0.0013839148450642824, + 0.008703780360519886, + 0.001744861714541912, + 0.015286357142031193, + -0.0011786369141191244, + -0.01698332093656063, + -0.014711578376591206, + -0.03788060322403908, + -0.002075016964226961, + 0.020130913704633713, + 0.006089909467846155, + -0.004078186582773924, + -0.03281708434224129, + 0.03489723429083824, + -0.0021297575440257788, + 0.023223767057061195, + -0.0006397826364263892, + 0.02356589585542679, + -0.0003340041439514607, + 0.006657844875007868, + 0.02344273030757904, + 0.012973560020327568, + -0.0014583279844373465, + 0.0020151440985500813, + 0.02119835838675499, + 0.0025078109465539455, + 0.004177404101938009, + -0.016271689906716347, + 0.00554250180721283, + 0.023141656070947647, + -0.011454503983259201, + -0.012350883334875107, + 0.0040063392370939255, + 0.01081130001693964, + -0.0072257802821695805, + -0.0026532160118222237, + -0.0039823902770876884, + 0.0011059343814849854, + 0.013000929728150368, + -0.01194032747298479, + 0.021335210651159286, + -0.011454503983259201, + -0.015573745593428612, + 0.028629416599869728, + 0.03079167567193508, + -0.003077456960454583, + -0.00023735250579193234, + 0.005645140539854765, + -0.016709616407752037, + 0.02248476631939411, + 0.013849412091076374, + -0.0032006236724555492, + 0.003284445498138666, + 0.008341123349964619, + 0.00046786241000518203, + 0.017339134588837624, + 0.00527564063668251, + -0.005227742251008749, + -0.0018868454499170184, + 0.015874819830060005, + -0.0026138711255043745, + -0.008929586037993431, + 0.0026925611309707165, + 0.005569871980696917, + 0.02945052832365036, + 0.01891293190419674, + 0.013048828579485416, + 0.002742169890552759, + -0.023716432973742485, + 0.009860179387032986, + -0.03125697374343872, + -0.0072463080286979675, + -0.016504338011145592, + 0.0027592764236032963, + -0.010708660818636417, + 0.012624586932361126, + -0.0015310306334868073, + -7.970553997438401e-5, + -0.001099947141483426, + 0.00263610971160233, + -0.017133858054876328, + -0.004806922748684883, + 0.00901853945106268, + -0.0015686647966504097, + 0.007095770910382271, + -0.0008300922927446663, + -0.027794620022177696, + 0.012583531439304352, + 0.003931070677936077, + 0.01743493229150772, + 0.019077153876423836, + -0.002952579641714692, + 0.010633392259478569, + 0.01788654364645481, + -0.003558149328455329, + -0.01660013571381569, + -0.01101657748222351, + 0.0003600915370043367, + -0.005781992804259062, + 0.009504363872110844, + -0.032433900982141495, + -0.005354330409318209, + -0.011652939021587372, + -0.018160246312618256, + -0.019241375848650932, + -0.026001859456300735 + ], + "4d392551-daf1-4443-abe8-7dac3a5956ef": [ + -0.034714262932538986, + -0.0286689642816782, + 0.00012126893125241622, + 0.0036331182345747948, + -0.005233537871390581, + -0.0352158360183239, + -0.0025128242559731007, + 0.009411129169166088, + -0.01896745152771473, + 0.015416827984154224, + -0.006368681322783232, + 0.043056245893239975, + -0.002138292882591486, + -0.028140991926193237, + -0.009793910197913647, + 0.01238758023828268, + -0.01808309555053711, + 0.03920203819870949, + -0.0010097494814544916, + -0.020498573780059814, + 0.05026308447122574, + 0.012644967064261436, + -0.012539372779428959, + 0.007662216667085886, + -0.024471575394272804, + -0.014281685464084148, + -0.01891465298831463, + 0.006810859311372042, + -0.04073316231369972, + 0.023178039118647575, + 0.01991780288517475, + 0.0046329679898917675, + 0.017713513225317, + -0.015522423200309277, + -0.005992500111460686, + -0.03870046138763428, + 0.013806508854031563, + 0.022412478923797607, + 0.030728062614798546, + -0.018333882093429565, + -0.05960821732878685, + 0.011800209060311317, + 0.015311233699321747, + -0.005055346991866827, + -0.05665156617760658, + 0.015443227253854275, + 0.032496772706508636, + -0.04772881045937538, + 0.02469596453011036, + -0.006391779985278845, + -0.00638188049197197, + -0.04627688229084015, + -0.026662666350603104, + -0.011740812100470066, + 0.010302084498107433, + -0.028008997440338135, + -0.0007742237648926675, + 0.06103374436497688, + -0.006127793341875076, + -0.050949450582265854, + -0.02125093713402748, + 0.006065096240490675, + 0.015562021173536777, + 0.0020970450714230537, + -0.07101244479417801, + -0.03001529723405838, + 0.00325033743865788, + -0.015799609944224358, + -0.07022048532962799, + -0.035506222397089005, + 0.028114592656493187, + 0.06916453689336777, + -0.015562021173536777, + 0.013766910880804062, + -0.024880755692720413, + 0.01058587059378624, + 0.043505024164915085, + -0.007299234624952078, + 0.005068546161055565, + 0.023600418120622635, + 0.004263386595994234, + -0.011575820855796337, + 0.022610468789935112, + 0.010262486524879932, + 0.05393249914050102, + -0.0006480050506070256, + -0.01816229149699211, + -0.02646467462182045, + 0.0077480124309659, + -0.025514323264360428, + 0.010922453366219997, + 0.046540871262550354, + 0.0062003894709050655, + -0.009714714251458645, + -0.01636718027293682, + -0.011668216437101364, + 0.01853187195956707, + -0.0030110992956906557, + 0.012922152876853943, + 0.013219138607382774, + 0.011153441853821278, + 0.060716960579156876, + -0.02954012155532837, + 0.025540722534060478, + -0.020604168996214867, + 0.011958601884543896, + -0.014440077356994152, + -0.022821657359600067, + -0.014096894301474094, + 0.04764961451292038, + -0.0022026398219168186, + -0.03437107801437378, + 0.005646017380058765, + -0.009859906509518623, + -0.02696624957025051, + -0.04717443883419037, + 0.024471575394272804, + -0.024814758449792862, + 0.01084985677152872, + -0.03408069536089897, + 0.014836057089269161, + 0.005563521757721901, + 0.017013948410749435, + 0.05438127741217613, + 0.0018693564925342798, + -0.01393850240856409, + 0.0023824807722121477, + -0.004032398108392954, + 0.014426877722144127, + 0.02338922955095768, + -0.042581070214509964, + -0.010473676025867462, + -0.005141142755746841, + 0.005972701124846935, + -0.00507844565436244, + 0.0052302381955087185, + 0.013964900746941566, + 0.06045297533273697, + -0.042158689349889755, + 0.043980199843645096, + -0.0352950319647789, + -0.05329893156886101, + -0.006507274229079485, + -0.004890355281531811, + -0.005375430919229984, + 0.004451477434486151, + -0.06911174207925797, + 0.009001949802041054, + -0.01393850240856409, + 0.0068372576497495174, + -0.02300644852221012, + -0.028985749930143356, + 0.007899804972112179, + 0.017871905118227005, + -0.019073044881224632, + -0.00016715725359972566, + -0.02466956526041031, + 0.009747711941599846, + 0.0016928153345361352, + 0.006982450373470783, + -0.01102144829928875, + -0.054038096219301224, + 0.0008497074595652521, + -0.027507422491908073, + 0.02732263319194317, + 0.013555721379816532, + 0.0013958301860839128, + 0.005015749018639326, + -0.020194988697767258, + 0.024986349046230316, + 0.03841007873415947, + -0.019640617072582245, + -0.030701663345098495, + -0.009780710563063622, + 0.0099259028211236, + 0.00214654253795743, + 0.06135052815079689, + 0.011754011735320091, + 0.02646467462182045, + -0.026662666350603104, + -0.013285134918987751, + -0.023151641711592674, + -0.0010031497804448009, + -0.0022339881397783756, + -0.022636866196990013, + 1.4037188520887867e-5, + -0.010744262486696243, + 0.015654416754841805, + -0.02998889982700348, + -0.009688314981758595, + -0.029012147337198257, + -0.02468276396393776, + -0.03175761178135872, + 0.013793310150504112, + -0.03500464931130409, + -0.025936702266335487, + -0.011404229328036308, + -0.008506974205374718, + -0.00607499573379755, + 0.009140542708337307, + -0.027745012193918228, + -0.05475085973739624, + -0.03629818186163902, + 0.03835728019475937, + -0.04279225692152977, + 0.008883155882358551, + -0.01303434744477272, + -0.016433177515864372, + 0.011371230706572533, + -0.028140991926193237, + 0.0572323352098465, + -0.04099714756011963, + -0.0020227988716214895, + -0.0007519498467445374, + -0.05039507895708084, + 0.0154564268887043, + 0.001155767124146223, + 0.007503824308514595, + 0.0015641216887161136, + -0.029249737039208412, + -0.02822018787264824, + -0.00507844565436244, + -0.00902834814041853, + -0.02693985216319561, + -0.03167841583490372, + -0.030675264075398445, + -0.02074936218559742, + 0.04902234673500061, + -0.07322993874549866, + 0.0033674815203994513, + 0.06040017679333687, + 0.014083695597946644, + -0.005586620420217514, + -0.04363701492547989, + 0.017119543626904488, + 0.031176839023828506, + -0.017964301630854607, + 0.02742822654545307, + 0.009114143438637257, + -0.0485999658703804, + -0.0007680365815758705, + -0.01393850240856409, + 0.031493622809648514, + 0.014426877722144127, + -0.011437227949500084, + -0.006701964419335127, + 0.02291405387222767, + 0.0014733762945979834, + 0.03738052770495415, + -0.040020398795604706, + 0.00019180290109943599, + 0.0035176239907741547, + 0.024973150342702866, + -0.00651717372238636, + -0.007272835820913315, + 0.046620067209005356, + 0.026623068377375603, + -0.025342730805277824, + -0.006857056636363268, + -0.023178039118647575, + 0.009213139303028584, + 0.031176839023828506, + 0.036377377808094025, + -0.009714714251458645, + 0.02080215886235237, + -0.027032246813178062, + -0.0005593220121227205, + -0.01903344690799713, + -0.01127223577350378, + 0.03402789682149887, + -0.04511534050107002, + 0.0175947193056345, + -0.014809658750891685, + -0.03500464931130409, + -0.016670765355229378, + 0.01991780288517475, + 0.004712164402008057, + -0.018875055015087128, + -0.011219438165426254, + -0.011226038448512554, + -0.0002613056858535856, + -0.0034648266155272722, + 0.01723833754658699, + 0.04379540681838989, + 0.0033674815203994513, + -0.01414969190955162, + -0.008137392811477184, + -0.019996998831629753, + -0.004533973056823015, + 0.0049200537614524364, + 0.0067349630407989025, + -0.0010922453366219997, + -0.004616469144821167, + 0.027586620301008224, + 0.02563311718404293, + 0.021013347432017326, + -0.047042444348335266, + -0.03714293986558914, + -0.03313034027814865, + 0.01814909093081951, + -0.03133523091673851, + 0.011562621220946312, + 0.009483725763857365, + -0.04931273311376572, + 0.006249887403100729, + -0.038225285708904266, + 0.053219735622406006, + 0.026134692132472992, + -0.03088645450770855, + 0.002955002011731267, + 0.030807258561253548, + -0.010381280444562435, + -0.014690864831209183, + -0.024128392338752747, + 0.02729623392224312, + 0.01641997881233692, + 0.03006809577345848, + -0.01259216945618391, + -0.01859786920249462, + -0.012222588062286377, + 0.04289785400032997, + -0.004273286089301109, + -0.07111804187297821, + 0.048837557435035706, + 0.025342730805277824, + -0.04073316231369972, + 0.0397036112844944, + -0.03714293986558914, + -0.009120743721723557, + -0.02342882752418518, + -0.024959951639175415, + -0.0023214337415993214, + -0.019785810261964798, + -0.016208788380026817, + -0.020076194778084755, + -0.05203179642558098, + -0.05021028593182564, + -0.06393759697675705, + -0.020472174510359764, + -0.02513154223561287, + 0.0026745160575956106, + -0.015535622835159302, + -0.0573907271027565, + -0.015720413997769356, + 0.0198914036154747, + -0.018677065148949623, + -0.006464376579970121, + -0.020604168996214867, + -0.005494224838912487, + -0.0029847007244825363, + 0.0008629068033769727, + -0.020128993317484856, + 0.03833088278770447, + 0.025844305753707886, + 0.0616673119366169, + -0.0022092394065111876, + 0.012288585305213928, + -0.0016647666925564408, + 0.014017698355019093, + 0.01014369260519743, + 0.05263896659016609, + -0.005184040404856205, + -0.023494824767112732, + -0.005784610286355019, + 0.005398530047386885, + 0.03268156573176384, + -0.0017769610276445746, + 0.008216588757932186, + 0.015113243833184242, + 0.032021597027778625, + -0.028959350660443306, + 0.008553171530365944, + 0.006543572526425123, + -0.019746212288737297, + -0.01991780288517475, + -0.007127643097192049, + 0.025501124560832977, + -0.008011998608708382, + -0.04508894309401512, + 0.019178640097379684, + -0.006490775384008884, + 0.04332023113965988, + 0.014215688221156597, + -0.040363579988479614, + 0.014479675330221653, + 0.01521883811801672, + -0.02123773656785488, + -0.006804259493947029, + 0.04796639829874039, + -0.000862081884406507, + -0.03297194838523865, + 0.01475686114281416, + -0.032866355031728745, + 0.00022108893608674407, + 0.0052566369995474815, + 0.01764751598238945, + 0.00020283673075027764, + 0.0039466023445129395, + -0.0006001574802212417, + -0.01257237046957016, + 0.0007915478781796992, + 0.006589770317077637, + 0.023996399715542793, + -0.0019106044201180339, + 0.030200088396668434, + -0.019297434017062187, + 0.014242087490856647, + -0.006566671188920736, + 0.008427778258919716, + -0.033262334764003754, + 0.013595319353044033, + 0.0038971048779785633, + 0.03875325992703438, + 0.023138441145420074, + 0.012400778941810131, + -0.004474576096981764, + 0.04004679620265961, + 0.014862456358969212, + -0.0033773810137063265, + -0.019244637340307236, + 0.023943601176142693, + 0.05617638677358627, + -0.02690025418996811, + 0.016934752464294434, + 0.011212838813662529, + 0.017766311764717102, + 0.030648866668343544, + 0.0014973001088947058, + -0.03870046138763428, + -0.003177741076797247, + 0.000614181743003428, + 0.02785060554742813, + 0.004451477434486151, + 0.0002483125717844814, + -0.01673676259815693, + -0.05031588301062584, + 0.00215809210203588, + 0.0012225888203829527, + -0.019970601424574852, + 0.011707814410328865, + 0.010915854014456272, + 0.028880154713988304, + -0.002834558254107833, + -0.019601019099354744, + 0.009001949802041054, + -0.013674515299499035, + -0.03178400918841362, + 0.005316033959388733, + -0.02433958277106285, + 0.024405578151345253, + -0.0016961151268333197, + 0.021475324407219887, + -0.034714262932538986, + 0.02119813859462738, + 0.009615718387067318, + 0.025540722534060478, + -0.03254957124590874, + -0.03479345887899399, + 0.006371980998665094, + -0.031124042347073555, + -0.0397300124168396, + -0.016670765355229378, + 0.0051675415597856045, + 0.006378580816090107, + 0.02288765460252762, + -0.060716960579156876, + 0.01282315794378519, + 0.026451475918293, + 0.006494075059890747, + 0.0032222887966781855, + -0.007484025321900845, + 0.014888854697346687, + -0.04770241305232048, + 0.0016433177515864372, + 0.006896655075252056, + 0.038621265441179276, + 0.01083005778491497, + 0.006124493665993214, + 0.023640016093850136, + -0.012565771117806435, + 0.0007750486838631332, + -0.02782420814037323, + -0.01723833754658699, + -0.016908353194594383, + 0.01304094772785902, + -0.02249167487025261, + 0.023204438388347626, + -0.03883245587348938, + 0.011839807033538818, + -0.03843647614121437, + 0.02391720376908779, + 0.003448327537626028, + -0.007556621916592121, + 0.007490625139325857, + 0.0034912251867353916, + -0.025817908346652985, + 0.0012514623813331127, + -0.008658766746520996, + -0.02515794150531292, + -0.018690263852477074, + 0.04205309599637985, + 0.010546272620558739, + -0.006804259493947029, + 0.031229637563228607, + 0.022412478923797607, + 0.01546962559223175, + -0.05997779965400696, + -0.029698513448238373, + -0.014400479383766651, + 0.014453276991844177, + -0.013674515299499035, + -0.04099714756011963, + -0.00795920193195343, + 0.011688015423715115, + -0.020445777103304863, + -0.02472236193716526, + -0.02510514296591282, + -0.005811009090393782, + 0.028827358037233353, + -0.014690864831209183, + -0.009576120413839817, + 0.010242687538266182, + -0.006428078282624483, + 0.016063595190644264, + -0.02909134328365326, + 0.00022541996440850198, + -0.01389890443533659, + -0.01764751598238945, + 0.030173689126968384, + 0.0032767360098659992, + 0.006593069992959499, + 0.02077575959265232, + -0.0025507723912596703, + 0.009397929534316063, + 0.02602909691631794, + -0.006259786896407604, + -0.00496625155210495, + 0.006451176945120096, + 0.021963700652122498, + 0.04368981346487999, + -0.0221352931112051, + -0.0309920497238636, + 0.028167391195893288, + -0.01255917176604271, + 0.004289785400032997, + 0.006345582194626331, + 0.001164016779512167, + 0.02742822654545307, + 0.009226338006556034, + 0.0038179089315235615, + -0.028035396710038185, + 0.010090894997119904, + -0.026636267080903053, + -0.014162891544401646, + 0.01060566958039999, + -0.05205819383263588, + 0.027032246813178062, + -0.017924703657627106, + -0.013502923771739006, + 0.000824958726298064, + -0.030226487666368484, + 0.011199639178812504, + 0.02034018188714981, + -0.006675566080957651, + -0.018690263852477074, + -0.0009396279929205775, + -0.014743662439286709, + 0.00337408110499382, + 0.008348582312464714, + 0.0076424176804721355, + 0.017541922628879547, + 0.006744862534105778, + 0.034265484660863876, + 0.003877305891364813, + -0.035163041204214096, + 0.02385120652616024, + -0.020577769726514816, + 0.021382929757237434, + -0.016010798513889313, + -0.009351732209324837, + 0.02156772091984749, + -0.016010798513889313, + -0.016617968678474426, + -0.015535622835159302, + 0.005372131243348122, + 0.003063896670937538, + -0.015377230010926723, + -0.01895425096154213, + 0.02556711994111538, + 0.030569670721888542, + 0.003544022561982274, + 0.03186320513486862, + 0.03083365596830845, + -0.01083005778491497, + -0.01389890443533659, + 0.013186139985918999, + 0.001412329263985157, + 0.03041127882897854, + -0.004095095209777355, + -0.012499774806201458, + 0.025382328778505325, + 0.010671665892004967, + 0.0077480124309659, + -0.00949032511562109, + -0.028008997440338135, + 0.007860206998884678, + -0.014228887856006622, + 0.014902054332196712, + -0.007873405702412128, + 0.014400479383766651, + -0.014070495963096619, + 0.004784760531038046, + 0.006589770317077637, + -0.006540272850543261, + 0.007259636651724577, + 0.006025498267263174, + 0.010084295645356178, + 0.024418778717517853, + 0.021105743944644928, + -0.011661616154015064, + 0.003119993954896927, + -0.023996399715542793, + 0.05176780745387077, + -0.016670765355229378, + 0.015812808647751808, + 0.004121493548154831, + -0.028140991926193237, + -0.005391930229961872, + -0.014228887856006622, + -0.01280335895717144, + 0.02246527560055256, + -7.306040788535029e-5, + -0.00011879405792569742, + -0.02597630023956299, + 0.06119213625788689, + -0.004758361726999283, + 0.008064796216785908, + 0.011635217815637589, + -0.02478835918009281, + -0.01081025879830122, + -0.0143344821408391, + 0.00398950045928359, + 0.013714113272726536, + 0.01950862444937229, + -0.00791300367563963, + 0.037354130297899246, + -0.02378520928323269, + 0.037802908569574356, + 0.010209688916802406, + 0.00947052612900734, + -0.0060782958753407, + 0.006246587261557579, + 0.016129592433571815, + 0.010962051339447498, + -0.02610829286277294, + -0.004362381529062986, + 0.019680215045809746, + -0.0010237738024443388, + -0.014730462804436684, + -0.0002003618428716436, + 0.013608518987894058, + -0.0062927850522100925, + 0.012889155186712742, + 0.02824658714234829, + -0.002874156227335334, + 0.015060446225106716, + 0.01585240662097931, + 0.0005160116706974804, + 0.007503824308514595, + 0.00420068996027112, + -0.007437827531248331, + -0.0005254987045191228, + 0.03489905223250389, + 0.026623068377375603, + 0.009609119035303593, + 0.011219438165426254, + -0.01414969190955162, + -0.008308984339237213, + -0.031018447130918503, + 0.0004064984095748514, + -0.009767510928213596, + -0.0035572219640016556, + -0.03793490305542946, + 0.0022917352616786957, + 0.014413679018616676, + 0.006411578971892595, + 0.005306134466081858, + 0.04374261200428009, + -0.013159741647541523, + -0.0012456875992938876, + 0.023125242441892624, + -0.014558871276676655, + -0.013337932527065277, + -0.030569670721888542, + -0.024431977421045303, + -0.011305234394967556, + -0.0006711038877256215, + -0.00420068996027112, + 0.020181789994239807, + 0.008315583691000938, + -0.06536313146352768, + -0.0032882853411138058, + -0.006474276073276997, + -0.02069656364619732, + 0.02255767025053501, + 0.0029038547072559595, + -0.025052346289157867, + -0.012862755917012691, + -8.39395506773144e-5, + -0.006391779985278845, + -0.001000674907118082, + 0.007820609025657177, + 0.00168704055249691, + -0.0009289035224355757, + 0.01895425096154213, + 0.008764361031353474, + -0.0027982599567621946, + -0.0053589316084980965, + 0.01671036332845688, + 0.009477125480771065, + -0.0099259028211236, + -0.008599369786679745, + -0.0032866355031728745, + -0.032496772706508636, + -0.035268634557724, + 0.007444427348673344, + 0.019667016342282295, + 0.03133523091673851, + 0.014624868519604206, + -0.003544022561982274, + 0.008282585069537163, + 0.0015335982898250222, + 0.004213889129459858, + -0.0034450276289135218, + -0.0175947193056345, + 0.009820308536291122, + 0.011932202614843845, + 0.006398379802703857, + 0.045247334986925125, + -0.04046917334198952, + -0.0018726562848314643, + -0.02035338059067726, + 0.009034947492182255, + -0.006754762027412653, + -0.0005877830553799868, + -0.00739822955802083, + 0.03753891959786415, + -0.014506073668599129, + 0.00015550472016911954, + 0.008889755234122276, + 0.01057927031069994, + -0.029223337769508362, + 0.025751911103725433, + 0.004801259841769934, + 0.008744562044739723, + -0.0047253635711967945, + 0.02158091962337494, + 0.011107244528830051, + -0.00487055629491806, + 0.013126743026077747, + 0.018452676013112068, + 0.0067976596765220165, + 0.01851867325603962, + -0.026174290105700493, + -0.01591840386390686, + -0.012895754538476467, + -0.006942852400243282, + 0.012961750850081444, + 0.017528722062706947, + -0.023996399715542793, + 0.058499474078416824, + 0.023283634334802628, + -0.007675415836274624, + 0.005259936675429344, + -0.011569220572710037, + 0.0027256635949015617, + 0.012631767429411411, + -0.0019452526466920972, + -0.04339942708611488, + -0.006810859311372042, + -0.012499774806201458, + -0.0071474420838057995, + 0.0030424478463828564, + -0.024524372071027756, + 0.004223788622766733, + -0.002065696520730853, + 0.038251686841249466, + 0.028008997440338135, + -0.0013224087888374925, + 0.024577170610427856, + 0.0029913003090769053, + 0.015509223565459251, + -0.02993610128760338, + -0.0031381428707391024, + 0.011820008046925068, + -0.009820308536291122, + 0.025857506319880486, + -0.04453457146883011, + 0.006569971330463886, + 0.025712313130497932, + -0.01482285838574171, + -0.026200689375400543, + 0.02301964722573757, + 0.05200539901852608, + 0.008018598891794682, + -0.009127343073487282, + 0.013595319353044033, + 0.02601589821279049, + 0.03125603497028351, + -0.021000148728489876, + -0.0071474420838057995, + -0.005712014157325029, + -0.02171291410923004, + 0.018465876579284668, + -0.0055800206027925014, + 0.01681595854461193, + -0.021448927000164986, + 0.036931753158569336, + 0.02787700481712818, + -0.024959951639175415, + 0.007068246137350798, + 0.021805308759212494, + 0.007200239691883326, + -0.02469596453011036, + -0.016499174758791924, + -0.03851567208766937, + 0.023230837658047676, + -0.027956200763583183, + 0.0013793309917673469, + 0.023758811876177788, + 0.018201889470219612, + 0.006411578971892595, + 0.008275985717773438, + 0.032919153571128845, + -0.0027669116389006376, + 0.01041427906602621, + -0.0002518186520319432, + 0.0010542972013354301, + -0.023574020713567734, + 0.04632968083024025, + -0.013964900746941566, + -0.026213888078927994, + -0.029777709394693375, + 0.001846257597208023, + 0.013529323041439056, + -0.022861255332827568, + 0.007457626983523369, + 0.0008579570567235351, + 0.027137842029333115, + 0.0025491223204880953, + 0.008764361031353474, + -0.05203179642558098, + -0.027454625815153122, + 0.004550472367554903, + -0.015298034064471722, + 0.02200329862535, + -0.01722513884305954, + 0.015562021173536777, + 0.008645567111670971, + 0.005094944965094328, + 0.029460925608873367, + -0.006589770317077637, + -0.03785570710897446, + -0.015416827984154224, + -0.018426278606057167, + -0.02472236193716526, + -0.02470916323363781, + -0.007576420903205872, + -0.011100644245743752, + 0.00840137992054224, + -0.01520563941448927, + -0.0006942027830518782, + -0.005226938519626856, + 0.001536073163151741, + -0.008487175218760967, + -0.010744262486696243, + -0.029883304610848427, + -0.011259036138653755, + -0.026134692132472992, + -0.029038546606898308, + -0.01813589222729206, + 0.00542492838576436, + 0.01634078286588192, + 0.0018594568828120828, + -0.040812358260154724, + 0.022240886464715004, + 0.024616768583655357, + 0.008731363341212273, + 0.0032387878745794296, + -0.002941802842542529, + 0.011120443232357502, + 0.021990099921822548, + 0.0009330282919108868, + -0.04376900941133499, + -0.035453423857688904, + -0.01816229149699211, + 0.002890655305236578, + -0.02914414182305336, + 0.007899804972112179, + -0.015548821538686752, + 0.0028956050518900156, + -0.024497974663972855, + -0.0030160490423440933, + 0.00043887802166864276, + -0.007279435638338327, + -0.03273436054587364, + 0.016142792999744415, + 0.017792709171772003, + 0.0035077244974672794, + 0.013832908123731613, + 0.018861856311559677, + 0.004114894196391106, + -0.017990699037909508, + -0.012017998844385147, + 0.034239087253808975, + 0.0199046041816473, + 0.016881955787539482, + 0.00791300367563963, + -0.008447577245533466, + 0.006088195368647575, + 0.026636267080903053, + -0.00036875653313472867, + -0.00573181314393878, + 0.008513573557138443, + -0.0026019196957349777, + 0.004385480657219887, + 0.01368771493434906, + 0.008236387744545937, + 4.302675370126963e-5, + 0.012605369091033936, + -0.007464226335287094, + 0.003275086171925068, + -0.00021717038180213422, + 0.0013174590421840549, + 0.01232158299535513, + 0.003217339050024748, + 0.0034747261088341475, + -0.0006764661520719528, + -0.017502324655652046, + -0.007272835820913315, + -0.01681595854461193, + -0.025052346289157867, + 0.011113843880593777, + -0.047464825212955475, + -0.020973749458789825, + 0.0014230537926778197, + -0.01945582590997219, + 0.043505024164915085, + -0.018188688904047012, + 0.029328932985663414, + 4.2717394535429776e-5, + 0.013443526811897755, + 0.021066145971417427, + -0.005824208725243807, + 0.01634078286588192, + 0.016512373462319374, + -0.006315883714705706, + 0.018901454284787178, + 0.033315133303403854, + -0.012037797830998898, + 0.018399879336357117, + -0.0039466023445129395, + 0.008295784704387188, + 0.003864106722176075, + -0.05205819383263588, + 0.00737843057140708, + -0.045194536447525024, + 0.00364301772788167, + -0.005679016001522541, + 0.0006240812945179641, + -0.007081445772200823, + -0.024841155856847763, + 0.0002446002617944032, + 0.03318313881754875, + -0.0055800206027925014, + -0.03270796313881874, + -0.014717263169586658, + 0.004586770664900541, + -0.005900104530155659, + -0.0019568020943552256, + 0.04693685099482536, + 0.027639416977763176, + -0.006619468796998262, + -0.008883155882358551, + -0.04770241305232048, + 0.007279435638338327, + 0.0032288883812725544, + -0.0010592469479888678, + 0.015350831672549248, + 0.015337632037699223, + 0.015311233699321747, + -0.03782930597662926, + -0.0132719362154603, + 0.00013281835708767176, + 0.013463325798511505, + 0.0027157641015946865, + -0.041234735399484634, + -0.025857506319880486, + 0.01803029701113701, + -0.03146722540259361, + 0.012427178211510181, + -0.018254686146974564, + -0.030648866668343544, + 0.0397828072309494, + 0.014928452670574188, + -0.017013948410749435, + -0.01635398156940937, + -0.020577769726514816, + 0.0016565171536058187, + 0.0072134388610720634, + 0.0005638592992909253, + -0.02824658714234829, + -0.01525843609124422, + -0.02257087081670761, + 0.002662966726347804, + 0.00751702394336462, + -0.006022198591381311, + -0.060188986361026764, + -0.043029844760894775, + 0.036852557212114334, + -0.008289185352623463, + -0.008619168773293495, + 0.025923501700162888, + -0.010447276756167412, + 0.01503404788672924, + 0.014690864831209183, + 0.004114894196391106, + 0.012737362645566463, + 0.006830658297985792, + -0.013509524054825306, + -0.018465876579284668, + -0.006246587261557579, + 0.00044589018216356635, + 0.017898304387927055, + -0.015746811404824257, + -0.02073616161942482, + 0.0005716963787563145, + -0.04379540681838989, + -0.0055800206027925014, + -0.012506374157965183, + 0.0309392511844635, + -0.0064247786067426205, + 0.017805909737944603, + -0.0013224087888374925, + 0.012189590372145176, + 0.009272536262869835, + 0.01583920791745186, + -0.013727312907576561, + -0.0012118644081056118, + 0.004606569651514292, + 0.021501723676919937, + -0.006682165432721376, + 0.02336283028125763, + -0.0110412472859025, + -0.0011755661107599735, + 0.003504424588754773, + -0.009628918021917343, + 0.012037797830998898, + 0.012473375536501408, + 0.022597268223762512, + 0.010189889930188656, + 0.025303132832050323, + 0.02861616760492325, + -0.03173121064901352, + 0.02345522679388523, + -0.007081445772200823, + -0.010090894997119904, + 0.013232337310910225, + -0.01983860693871975, + -0.024392379447817802, + -0.004764961544424295, + 0.023970000445842743, + 0.01630118489265442, + 0.010328482836484909, + -0.02998889982700348, + 0.017792709171772003, + 0.003347682533785701, + 0.005434827879071236, + 0.0035869204439222813, + -0.00837498065084219, + 0.01282315794378519, + -0.004151192028075457, + -0.01676316186785698, + 0.014096894301474094, + 0.003438427811488509, + -0.033816706389188766, + 0.01764751598238945, + 0.038990847766399384, + -0.0058902050368487835, + 0.013568921014666557, + -0.017291134223341942, + 0.007787610404193401, + -0.005444727372378111, + 0.020511774346232414, + 0.0023956801742315292, + -0.007668816018849611, + 0.016103193163871765, + 0.05902744457125664, + 0.006536972709000111, + 0.02117174118757248, + 0.01723833754658699, + -0.02205609530210495, + 0.02612149342894554, + 0.004098394885659218, + 0.02169971354305744, + 0.006018898915499449, + -0.011872805655002594, + -0.007114443928003311, + -0.023547621443867683, + 0.018413078039884567, + 0.03228558599948883, + -0.016433177515864372, + 0.008407979272305965, + 0.02288765460252762, + 0.008533372543752193, + 0.007253036834299564, + -0.0018330583116039634, + 0.0010311984224244952, + -0.021844906732439995, + 0.005715313833206892, + -0.010988449677824974, + -0.015377230010926723, + -0.027745012193918228, + 0.020062996074557304, + -0.02294045127928257, + 0.011971800588071346, + -0.008935952559113503, + 0.020472174510359764, + 0.004642867483198643, + 0.004451477434486151, + 0.02291405387222767, + -0.008619168773293495, + 0.023679614067077637, + 0.034186288714408875, + 0.005844007711857557, + -0.0018314083572477102, + 0.008282585069537163, + -0.006583170499652624, + -0.02692665159702301, + -0.007345432415604591, + -0.01768711395561695, + -0.003560521872714162, + 0.02205609530210495, + 0.00819019041955471, + -0.0028461075853556395, + -0.0006876030820421875, + -0.01894105225801468, + -0.02209569327533245, + 0.011080845259130001, + -0.022306883707642555, + -0.010552871972322464, + -0.014928452670574188, + 0.021778909489512444, + -0.0008171215886250138, + -0.01904664747416973, + -0.009133942425251007, + -0.021092545241117477, + -0.00214654253795743, + 0.012895754538476467, + -0.00951012410223484, + -0.04155151918530464, + -0.03276076167821884, + 0.0011574170785024762, + -0.009081145748496056, + -0.009965500794351101, + -0.02474876120686531, + 0.026728661730885506, + 0.003715614089742303, + -0.0020211488008499146, + -0.008216588757932186, + 0.0012432127259671688, + 0.0031331931240856647, + 0.003421928733587265, + 0.026306282728910446, + 0.014902054332196712, + 0.013285134918987751, + -0.026675865054130554, + -0.03170481324195862, + -0.009437527507543564, + 0.00417759083211422, + 0.02031378261744976, + -0.006365381646901369, + -0.009087745100259781, + 0.0077480124309659, + 0.0039466023445129395, + -0.010988449677824974, + -0.018413078039884567, + -0.01173421274870634, + -0.010044697672128677, + 0.01857146993279457, + -0.029012147337198257, + -0.03434468060731888, + 0.00012271260493434966, + -0.0005547847249545157, + 0.006325783208012581, + 0.024511173367500305, + -0.003930103499442339, + -0.010823458433151245, + -0.005045447498559952, + 0.013978100381791592, + -0.010361481457948685, + -0.001531948335468769, + -0.0221352931112051, + -0.016525572165846825, + 0.019601019099354744, + -0.026702264323830605, + -0.014426877722144127, + -0.021475324407219887, + 0.007233237847685814, + -0.023956801742315292, + -0.003887205384671688, + 0.030780859291553497, + -0.014096894301474094, + -0.0001007480823318474, + -0.013608518987894058, + 0.01719873957335949, + 0.004339282866567373, + -0.020617367699742317, + 0.017119543626904488, + -0.012796759605407715, + 0.04310904070734978, + 0.016248386353254318, + 0.01862426847219467, + 0.01018329057842493, + 0.011490024626255035, + -0.015614818781614304, + -0.008203389123082161, + 0.01036808080971241, + 0.01855827122926712, + -0.02509194426238537, + 0.01941622793674469, + -0.007160641718655825, + -0.0004925003740936518, + 0.012123593129217625, + 0.0020475476048886776, + -0.040389977395534515, + 0.0005436477949842811, + -0.034635066986083984, + -0.001217639073729515, + 0.005454626865684986, + 0.010315284132957458, + 0.007371831219643354, + 0.0044085793197155, + -0.026675865054130554, + 0.0029946002177894115, + 0.0018495573895052075, + 0.007114443928003311, + 0.0059562018141150475, + 0.0037453125696629286, + 0.00819019041955471, + -0.021844906732439995, + -0.007754611782729626, + 0.0036958151031285524, + 0.006312584038823843, + -0.008737962692975998, + -0.0019155541667714715, + -0.02472236193716526, + 0.009708113968372345, + 0.0025689215399324894, + 0.0032305382192134857, + -0.024893954396247864, + 0.004481175914406776, + -0.013859306462109089, + -0.0056724161840975285, + -0.0028939552139490843, + -0.009318733587861061, + 0.02158091962337494, + -0.007345432415604591, + -0.020102594047784805, + -0.015588419511914253, + -0.0007164766429923475, + 0.008117593824863434, + 0.00011662853648886085, + 0.005669116508215666, + -0.013555721379816532, + 0.025276735424995422, + -0.0110412472859025, + -0.0309392511844635, + -0.022174891084432602, + 0.004738562740385532, + 0.011305234394967556, + 0.036905352026224136, + 0.011919003911316395, + -0.012565771117806435, + -0.01900704950094223, + 0.028035396710038185, + -0.004626368638128042, + -0.005669116508215666, + -0.015232037752866745, + -0.009364930912852287, + 0.0242207869887352, + 0.023138441145420074, + 0.003920204006135464, + -0.0018347081495448947, + -0.02250487357378006, + 0.021448927000164986, + -0.010077695362269878, + 0.008348582312464714, + 0.0055437227711081505, + 0.013872506096959114, + -0.011991599574685097, + 0.016868755221366882, + -0.007134242914617062, + 0.002303284825757146, + 0.03455587103962898, + 0.00029347906820476055, + -0.016908353194594383, + 0.01234798226505518, + 0.010981850326061249, + -0.004164391662925482, + -0.010203089565038681, + 0.009793910197913647, + 0.022412478923797607, + 0.009628918021917343, + 0.0029038547072559595, + 0.005157642066478729, + -0.0264910738915205, + -0.003992800135165453, + -0.0011574170785024762, + -0.01987820491194725, + 0.019125843420624733, + 0.01722513884305954, + 0.014479675330221653, + 0.014228887856006622, + -0.0018033597152680159, + 0.025316333398222923, + 0.0006529547972604632, + 0.015324433334171772, + -0.014400479383766651, + 0.014651266857981682, + -0.02729623392224312, + 0.004355782177299261, + -0.004227088298648596, + -0.0003438015410210937, + 0.007536822929978371, + 0.026266684755682945, + 0.010229487903416157, + 0.00865216739475727, + -0.005144442431628704, + -0.014611668884754181, + 0.003415329148992896, + -0.004302984569221735, + -0.0001229188492288813, + -0.013595319353044033, + -0.005576720926910639, + -0.007352032233029604, + -0.007701814640313387, + 0.014228887856006622, + 0.018716663122177124, + -0.023626817390322685, + -0.018003899604082108, + 0.0018066596239805222, + -0.0068636564537882805, + 0.02509194426238537, + 0.01436088141053915, + -0.014162891544401646, + -0.0012852856889367104, + -0.006391779985278845, + -0.014519273303449154, + 0.00951012410223484, + 0.0028230086900293827, + -0.02605549618601799, + 0.0021514922846108675, + 0.004009299445897341, + 0.014492874965071678, + 0.015548821538686752, + -0.021290535107254982, + -0.0019205039134249091, + 0.010783860459923744, + -0.011635217815637589, + -0.0023214337415993214, + 0.02919693849980831, + -0.008018598891794682, + 0.0004347532521933317, + -0.002719064010307193, + 0.01305414643138647, + -0.005929803010076284, + -0.005675715859979391, + 0.006263086572289467, + -0.0220428965985775, + -0.007180440705269575, + 0.01482285838574171, + 0.024550771340727806, + 0.00970151461660862, + 0.006041997577995062, + 0.0198254082351923, + -0.015284835360944271, + 0.0019386529456824064, + -0.006444577593356371, + -0.00507844565436244, + 0.013925302773714066, + 0.04157792031764984, + 0.024484774097800255, + -0.007985600270330906, + 0.019521823152899742, + -0.02432638220489025, + -0.008308984339237213, + -0.017119543626904488, + -0.01303434744477272, + -0.007253036834299564, + -0.01862426847219467, + 0.00762921804562211, + 0.01673676259815693, + 0.03302474692463875, + -0.024563970044255257, + -0.009800509549677372, + 0.0016812658868730068, + 0.004837557673454285, + -0.005233537871390581, + 0.005253336858004332, + -0.023930402472615242, + -0.016974350437521935, + -0.030226487666368484, + 0.00791300367563963, + -0.012044397182762623, + -0.002931903349235654, + -0.01148342527449131, + 0.004741862881928682, + -0.0004599144740495831, + -0.04667286574840546, + -0.04250187426805496, + 0.001184640685096383, + -0.021396128460764885, + 0.03394870087504387, + -0.007233237847685814, + -0.0005605594487860799, + -0.009635517373681068, + 0.0007263761362992227, + 0.004108294378966093, + 0.017898304387927055, + -0.000500337453559041, + -0.01591840386390686, + 0.01809629425406456, + -0.018465876579284668, + 0.01727793551981449, + -0.03405429422855377, + 0.011998199857771397, + -0.023085644468665123, + 0.0007754612015560269, + 0.016261586919426918, + 0.0022504874505102634, + 0.01595800183713436, + 0.021013347432017326, + -0.021422527730464935, + 0.009391330182552338, + 0.0014139792183414102, + -0.028008997440338135, + -0.032919153571128845, + 0.02379840984940529, + 0.027243437245488167, + -0.020392978563904762, + 0.00672836322337389, + -0.02345522679388523, + 0.024814758449792862, + 0.027982600033283234, + 0.01946902647614479, + -0.004695665091276169, + -0.014070495963096619, + -0.0008926053415052593, + 0.02561991848051548, + -0.0017918102676048875, + -0.016578370705246925, + 0.009569521062076092, + -0.013912104070186615, + -0.013885704800486565, + -0.011107244528830051, + 0.056334782391786575, + 0.013443526811897755, + 0.004814459010958672, + 0.012961750850081444, + 0.0057615116238594055, + 0.0574435256421566, + -0.009246136993169785, + 0.0484415739774704, + -0.039914801716804504, + -0.0017291135154664516, + -0.01173421274870634, + 0.016881955787539482, + 0.009708113968372345, + -0.00839477963745594, + 0.014638067223131657, + 4.859522596234456e-5, + -0.0397828072309494, + 0.02202969789505005, + -0.0008294960134662688, + 0.015126442536711693, + 0.022676466032862663, + -0.011384430341422558, + -0.02917053923010826, + 0.04767601564526558, + -0.004738562740385532, + -0.0018347081495448947, + 0.010500074364244938, + 0.013542522676289082, + 0.0029616018291562796, + -0.02332323230803013, + 0.009153742343187332, + 0.00038236836553551257, + -0.020181789994239807, + -0.006916454061865807, + 0.02023458667099476, + 0.013885704800486565, + -0.00396970147266984, + 0.03616619110107422, + -0.027481025084853172, + -0.022768860682845116, + -0.0015533972764387727, + -0.022306883707642555, + 0.019957400858402252, + -0.0072134388610720634, + -0.01628798432648182, + 0.022650066763162613, + 0.003959801979362965, + 0.0011178191052749753, + -0.007655616849660873, + -0.010005099698901176, + -0.016499174758791924, + 0.028035396710038185, + -0.011575820855796337, + -0.022795259952545166, + 0.01167481578886509, + 0.014413679018616676, + -0.013859306462109089, + 0.030754460021853447, + -0.001674666185863316, + -0.001685390598140657, + 0.004949752241373062, + -0.005302834790199995, + 0.0025276734959334135, + 0.0009140542824752629, + 0.02602909691631794, + 0.0028791059739887714, + -0.02338922955095768, + -0.018347082659602165, + 0.0017703614430502057, + 0.03257596865296364, + -0.017423128709197044, + 0.005929803010076284, + -0.008269386366009712, + -0.021066145971417427, + 0.013964900746941566, + 0.02078896015882492, + -0.007028648164123297, + -0.002626668429002166, + 0.014413679018616676, + -0.011206239461898804, + -0.0009685015538707376, + -0.022293685004115105, + 0.018267884850502014, + -0.00417759083211422, + -0.009648717008531094, + -0.015126442536711693, + -0.01636718027293682, + 0.009160341694951057, + -4.916238322039135e-5, + 0.002824658527970314, + -0.010645267553627491, + 0.006104694679379463, + -0.03051687218248844, + -0.009899504482746124, + -0.005019048694521189, + -0.011331632733345032, + 0.01816229149699211, + 0.0031496924348175526, + 0.0033443826250731945, + 0.0020194989629089832, + 0.00168704055249691, + -0.011424028314650059, + 0.01017669029533863, + -0.009331933222711086, + -0.006150892004370689, + -0.005556921940296888, + 0.014387279748916626, + 0.0008488825405947864, + -0.014730462804436684, + 0.005652617197483778, + -0.00967511534690857, + -0.011806809343397617, + 0.017753111198544502, + -0.01167481578886509, + 0.01760791800916195, + -0.021013347432017326, + 0.06842537224292755, + 0.0037189137656241655, + 0.001707664574496448, + -0.005002549849450588, + 0.01324553694576025, + 0.0042204889468848705, + -0.0038080094382166862, + 0.016881955787539482, + 0.013991300016641617, + -0.0005333357839845121, + -0.009820308536291122, + 0.0010666715679690242, + 0.010130492970347404, + 0.003979600965976715, + -0.03653576970100403, + -0.018650665879249573, + 0.016406778246164322, + -0.0017604619497433305, + 0.027243437245488167, + 0.021858105435967445, + 0.0033592318650335073, + -0.010632067918777466, + -0.02382480725646019, + -0.003864106722176075, + -0.013516123406589031, + 0.016406778246164322, + -0.00552062364295125, + 0.016525572165846825, + 0.017013948410749435, + 0.01499444991350174, + 0.01084985677152872, + -0.005929803010076284, + -0.015746811404824257, + -0.011424028314650059, + -0.0030919453129172325, + 0.010104094631969929, + 0.02432638220489025, + 0.015047246590256691, + -0.005662516690790653, + -0.0041016945615410805, + 0.002059096936136484, + -0.014717263169586658, + 0.03397509828209877, + 0.018267884850502014, + -0.007503824308514595, + 0.008058196865022182, + 0.0030886454042047262, + -0.007774410769343376, + 0.017370330169796944, + 0.013502923771739006, + 0.0024484775494784117, + -0.022729262709617615, + 0.00630598422139883, + -0.012651566416025162, + -0.008308984339237213, + -0.01680275984108448, + 0.011285435408353806, + 0.004484475590288639, + -0.013093744404613972, + 0.004467976279556751, + -0.007906404323875904, + 0.003864106722176075, + -0.004362381529062986, + -0.024418778717517853, + -0.021396128460764885, + -0.0049464525654911995, + 0.012875955551862717, + 0.008289185352623463, + -0.004203989636152983, + -0.008157191798090935, + -0.0029500522650778294, + 0.00029904753318987787, + 0.001273736241273582, + -0.015390429645776749, + -0.013819708488881588, + 0.013370931148529053, + 0.008506974205374718, + 0.0264910738915205, + 0.01479645911604166, + 0.021488524973392487, + 0.015812808647751808, + 0.013951702043414116, + 0.004431677982211113, + -0.01638038083910942, + -0.000980051001533866, + -0.010209688916802406, + 0.002745462581515312, + -0.01766071654856205, + 0.03225918486714363, + -0.022742461413145065, + -0.013727312907576561, + -0.003560521872714162, + 0.0020607467740774155, + -0.006758061703294516, + -0.008744562044739723, + 0.005048747174441814, + -0.007127643097192049, + -0.019244637340307236, + 0.019653815776109695, + -0.006672265939414501, + 0.0059826006181538105, + 0.003530823392793536, + -0.003715614089742303, + -0.015997599810361862, + 0.0045966701582074165, + 0.013410529121756554, + 0.0019106044201180339, + 0.017079945653676987, + -0.008744562044739723, + -0.007668816018849611, + -0.012077395804226398, + -0.004088495392352343, + 0.010381280444562435, + 0.00682405848056078, + -0.012473375536501408, + 0.011912403628230095, + -0.009589320048689842, + 0.002433628309518099, + -0.006342282518744469, + -0.02344202622771263, + -0.014598469249904156, + -0.003992800135165453, + -0.027111442759633064, + -0.020656965672969818, + 0.025870705023407936, + -0.004530673380941153, + -0.017753111198544502, + -0.00028089844272471964, + 0.016631167382001877, + 0.010288884863257408, + -0.00030069745844230056, + -0.0016614669002592564, + 0.021858105435967445, + -0.015680816024541855, + -0.010750861838459969, + -0.004114894196391106, + 0.0017340632621198893, + 0.011193039827048779, + 0.01302114874124527, + -0.0059826006181538105, + 0.030147291719913483, + 0.008124193176627159, + -0.002687715459614992, + 0.016895154491066933, + 0.009199939668178558, + 0.011166641488671303, + -0.03355272114276886, + -0.016697164624929428, + 0.011146842502057552, + -0.006272986065596342, + -0.00023140091798268259, + -0.03352632373571396, + 0.00237753102555871, + -0.011767211370170116, + -0.0029038547072559595, + 0.02391720376908779, + -0.0010798709699884057, + 0.013311534188687801, + -0.0243527814745903, + 0.011813408695161343, + 0.027533821761608124, + -0.014836057089269161, + 0.010823458433151245, + -0.01146362628787756, + -0.015720413997769356, + -0.0073322332464158535, + 0.011028047651052475, + 0.011516423895955086, + 0.0076424176804721355, + -0.0014486274449154735, + -0.02168651483952999, + -0.004418478813022375, + 0.03096565045416355, + -0.02558032050728798, + 0.00015571094991173595, + -0.012638367712497711, + 0.0010724463500082493, + 0.0026745160575956106, + -0.0009214789024554193, + 0.005939702969044447, + -0.003471426200121641, + -0.011146842502057552, + 0.01627478562295437, + -0.016657566651701927, + -0.019587820395827293, + -0.015773210674524307, + 0.024867555126547813, + -0.00022026397346053272, + -0.013377530500292778, + -0.0042204889468848705, + -0.008348582312464714, + 0.011364631354808807, + -0.0022669865284115076, + 0.002522723749279976, + -0.007695214822888374, + -0.024035997688770294, + 0.007127643097192049, + 0.012651566416025162, + 0.0014544022269546986, + -0.017885105684399605, + -0.03051687218248844, + -0.009087745100259781, + 0.017977500334382057, + -0.00018963738693855703, + -0.0030985448975116014, + -0.018677065148949623, + -0.025421928614377975, + -0.01589200459420681, + -0.01676316186785698, + 0.01125243678689003, + -0.01192560326308012, + -0.026570269837975502, + 0.0020194989629089832, + -0.006989050190895796, + -0.007906404323875904, + 0.011516423895955086, + -8.397822057304438e-6, + 0.017000749707221985, + 0.0012638367479667068, + 0.005939702969044447, + 0.007022048346698284, + 0.0039103045128285885, + 0.001577321090735495, + -0.012004799209535122, + 0.024194389581680298, + -0.007880005985498428, + 0.02125093713402748, + 0.012248987331986427, + 0.008949152193963528, + -0.008117593824863434, + 0.028906553983688354, + 0.014492874965071678, + 0.007470826152712107, + 0.014479675330221653, + 0.000882705848198384, + 0.029804108664393425, + 0.016538772732019424, + -0.0017604619497433305, + 0.0021333431359380484, + 0.00029554145294241607, + -0.012961750850081444, + -0.008110994473099709, + -0.004784760531038046, + -0.010704664513468742, + 0.004481175914406776, + -0.0088567566126585, + 0.0063323830254375935, + 0.006243287585675716, + 0.017449526116251945, + -2.260902510897722e-5, + -0.006362081505358219, + -0.016868755221366882, + -0.015746811404824257, + -0.00037205638363957405, + 0.016512373462319374, + -0.00990610383450985, + -0.002902204869315028, + 0.01081685908138752, + -0.01634078286588192, + -0.01991780288517475, + -0.020881354808807373, + -0.008018598891794682, + -0.012242387048900127, + 0.000984175712801516, + -0.0037288134917616844, + 0.03674696013331413, + -0.029672114178538322, + 0.009503524750471115, + 0.003537422977387905, + 0.004682465456426144, + 0.010031498037278652, + -0.015588419511914253, + 0.0008521823328919709, + -0.015139642171561718, + -0.014057296328246593, + -0.008110994473099709, + 0.013483124785125256, + -0.006434678100049496, + 0.014202489517629147, + -0.005141142755746841, + 0.008176990784704685, + -0.016921553760766983, + -0.008038397878408432, + -0.017581520602107048, + 0.01127223577350378, + -0.03320953622460365, + 0.02600269950926304, + 0.0154564268887043, + -0.007787610404193401, + 0.015047246590256691, + -0.006692064926028252, + -0.0033608817029744387, + 0.008995349518954754, + -0.014717263169586658, + -0.004025798290967941, + 0.022755661979317665, + -0.0030919453129172325, + 0.011529622599482536, + 0.01016349159181118, + -0.001310859341174364, + -0.00505864666774869, + -0.011285435408353806, + -0.017977500334382057, + -0.0033047846518456936, + 0.002524373587220907, + 0.0018726562848314643, + 0.019996998831629753, + -0.0028461075853556395, + -0.0242999829351902, + 0.01714594103395939, + 0.012050996534526348, + -0.0006546047516167164, + 0.002897254889830947, + -0.00015519536100327969, + -0.024933552369475365, + 0.004761661868542433, + 0.01125243678689003, + 0.017436327412724495, + -0.01850547455251217, + 0.009186740033328533, + 0.004461376927793026, + 0.0020326983649283648, + 0.0006607919349335134, + 0.011787010356783867, + 0.009767510928213596, + -0.01991780288517475, + 0.010295485146343708, + -0.01125243678689003, + 0.0031727910973131657, + -0.015443227253854275, + 0.02074936218559742, + 0.01809629425406456, + -0.027692213654518127, + 0.00375851197168231, + -0.014638067223131657, + 0.008678565733134747, + -0.012644967064261436, + -0.023481624200940132, + -0.020485375076532364, + -0.007530223112553358, + -0.01641997881233692, + -0.0012456875992938876, + -0.011562621220946312, + 0.0018363581039011478, + -0.0005019873497076333, + 0.02336283028125763, + -0.0009297284414060414, + -0.008341982960700989, + 0.018017098307609558, + -0.004203989636152983, + 0.0011359681375324726, + -0.0027322631794959307, + 0.014743662439286709, + 0.0035869204439222813, + 0.01306074671447277, + 0.004517473746091127, + 0.00793940294533968, + 0.016406778246164322, + 0.026755061000585556, + 0.0044085793197155, + -0.0028626066632568836, + 0.01368771493434906, + 0.0012819858966395259, + -0.004718763753771782, + 0.016116393730044365, + 0.008005399256944656, + 0.008592769503593445, + 0.015126442536711693, + -0.012895754538476467, + 0.019996998831629753, + 0.005576720926910639, + -0.019693413749337196, + -0.028088193386793137, + -0.01457207091152668, + -0.033790308982133865, + 0.009312134236097336, + 0.007048447150737047, + -0.0036727162078022957, + -0.010519873350858688, + -0.0015038996934890747, + 0.012090594507753849, + -0.0034912251867353916, + 0.0018198589095845819, + -0.016921553760766983, + 0.012064196169376373, + 0.0060782958753407, + 0.021435726433992386, + 0.011424028314650059, + 0.0025524222292006016, + -0.002197690075263381, + -0.005461226683109999, + 0.017079945653676987, + 0.009899504482746124, + -0.007906404323875904, + -0.01039448007941246, + 0.0020062995608896017, + -0.004530673380941153, + 0.03408069536089897, + 0.013832908123731613, + 0.00739822955802083, + 0.0009041547309607267, + -0.022346481680870056, + 0.007510424125939608, + 0.009180140681564808, + -0.014704064466059208, + -0.0034021297469735146, + -0.0024451776407659054, + 0.009285734966397285, + 0.035611819475889206, + -0.0132257379591465, + 0.00841457862406969, + 0.012420577928423882, + -0.018703464418649673, + -0.03307754546403885, + 0.011853006668388844, + 0.029223337769508362, + 0.005042147822678089, + -0.033288732171058655, + 0.006282885558903217, + -0.014440077356994152, + 0.02521073818206787, + 0.003218988887965679, + 0.013661316595971584, + -0.0030737961642444134, + -0.00253097340464592, + -0.02028738521039486, + 0.033737510442733765, + 0.014202489517629147, + 0.003078745910897851, + -0.003136493032798171, + -0.0029137542005628347, + -0.017291134223341942, + -0.0032387878745794296, + -0.025303132832050323, + -0.03215359151363373, + -0.01148342527449131, + 0.027137842029333115, + 0.0014502773992717266, + -0.013073945418000221, + 0.007926203310489655, + -0.021013347432017326, + -0.016644366085529327, + -0.0045702713541686535, + 0.002450127387419343, + 0.0038410078268498182, + 0.0198650062084198, + -0.0020970450714230537, + 0.01593160256743431, + -0.009688314981758595, + -0.013608518987894058, + -0.018690263852477074, + -0.007358631584793329, + -0.010110693983733654, + 0.008308984339237213, + -0.019086245447397232, + -0.023125242441892624, + 0.010552871972322464, + -0.017343932762742043, + 0.016934752464294434, + -0.012394179590046406, + -0.005712014157325029, + -0.0045966701582074165, + 0.006916454061865807, + 0.008256186731159687, + -0.017515523359179497, + 0.02246527560055256, + 0.0352950319647789, + 0.007200239691883326, + -0.009609119035303593, + 0.018241487443447113, + 0.006329083349555731, + 0.012407379224896431, + 0.0396772138774395, + 0.01079045981168747, + 0.020670166239142418, + 0.018729861825704575, + 0.008520173840224743, + -0.0007705114549025893, + -0.014242087490856647, + 0.0055173239670693874, + 0.00473526306450367, + 0.006206989288330078, + -0.015232037752866745, + 0.005791210103780031, + 0.021976899355649948, + -0.03262876719236374, + 0.023600418120622635, + 0.008949152193963528, + 0.00972131360322237, + -0.020868156105279922, + 0.0005634467815980315, + 0.020128993317484856, + 0.013951702043414116, + 0.0198914036154747, + -0.004339282866567373, + 0.0017835607286542654, + -0.0014181040460243821, + 0.00994570180773735, + 0.016961151733994484, + -0.015509223565459251, + 0.027137842029333115, + 0.003121643792837858, + 0.0022818357683718204, + -0.008579570800065994, + 0.015086844563484192, + 0.027058646082878113, + 0.0046362681314349174, + 0.021356530487537384, + 0.012704364024102688, + 0.00505864666774869, + 0.0060716960579156876, + 0.014426877722144127, + -0.013172940351068974, + 0.006942852400243282, + 0.018267884850502014, + 0.02337603084743023, + 0.001879255985841155, + -0.009318733587861061, + 0.0008216588757932186, + 0.006810859311372042, + -0.0009478775900788605, + -0.0010014998260885477, + -0.008289185352623463, + 0.018188688904047012, + -0.0034186288248747587, + -0.020590970292687416, + 0.01039448007941246, + -0.009404528886079788, + -0.00505864666774869, + -0.008117593824863434, + -0.0031711412593722343, + 0.0034318282268941402, + -0.0016820908058434725, + -0.0058902050368487835, + 0.014875655062496662, + 0.022742461413145065, + 0.017581520602107048, + 0.007985600270330906, + 0.016169190406799316, + -0.01726473681628704, + 0.011305234394967556, + 0.014083695597946644, + -0.0008604319300502539, + -0.015654416754841805, + -0.005939702969044447, + 0.028404979035258293, + 0.005005849525332451, + 0.006098094861954451, + 0.008460776880383492, + 0.002811459358781576, + -0.01638038083910942, + 0.0005287985550239682, + 0.004593370016664267, + 0.004821058828383684, + 0.010440677404403687, + -0.02258406952023506, + -0.004217188805341721, + 0.011074245907366276, + -0.00463956780731678, + 0.007035247981548309, + -0.01546962559223175, + -0.008559771813452244, + -0.011371230706572533, + 0.0044778757728636265, + -0.02164691686630249, + -0.0036628167144954205, + 0.015522423200309277, + 0.002441877732053399, + 0.005349032115191221, + -0.002938502933830023, + -0.011747412383556366, + -0.010130492970347404, + -0.011595619842410088, + -0.011912403628230095, + -0.010216288268566132, + 0.00661286897957325, + -0.028484174981713295, + -0.011773810721933842, + 0.009061346761882305, + -0.005936402827501297, + -0.00682405848056078, + 0.00974111258983612, + -0.03188960254192352, + -0.004009299445897341, + -0.013740512542426586, + 0.011707814410328865, + 0.021290535107254982, + 0.0041676913388073444, + 0.02243887633085251, + -0.014030897989869118, + 0.02123773656785488, + -0.0009726263233460486, + -0.013595319353044033, + 0.01587880589067936, + 0.015694014728069305, + 0.008071396499872208, + 0.005619618576020002, + -0.0008711564005352557, + -0.014057296328246593, + -0.005995799787342548, + -0.01123263780027628, + 0.019772609695792198, + 0.0017868605209514499, + 0.004860656801611185, + -0.004217188805341721, + -0.004378880839794874, + -0.002286785515025258, + -0.008176990784704685, + 0.0031480423640459776, + -0.012664766050875187, + -0.01632758229970932, + -0.008658766746520996, + 0.0031150442082434893, + -0.0198518056422472, + 0.020656965672969818, + -0.017885105684399605, + 0.016208788380026817, + 0.0028923051431775093, + 0.01475686114281416, + -0.006282885558903217, + -0.00019108106789644808, + 0.03305114433169365, + 0.01496805064380169, + 0.023679614067077637, + -0.008051596581935883, + -0.020881354808807373, + -0.0042831855826079845, + -0.006210288964211941, + 0.014413679018616676, + -0.009556321427226067, + 0.008638967759907246, + 0.004161091521382332, + -0.016512373462319374, + -0.02696624957025051, + -0.005926503334194422, + 0.002237288048490882, + -0.026702264323830605, + -0.00264646764844656, + -0.005553622264415026, + -0.02729623392224312, + 0.012625168077647686, + 0.0034186288248747587, + -0.01804349757730961, + -0.0022257387172430754, + 0.0030275983735919, + -0.0076820156536996365, + 0.019297434017062187, + -0.011206239461898804, + 0.008110994473099709, + 0.0025771709624677896, + -0.011457026936113834, + 0.019680215045809746, + -0.026319483295083046, + -5.3364517953014e-5, + -0.0016391929239034653, + -0.009635517373681068, + 0.018373480066657066, + -0.0025771709624677896, + 0.04559051990509033, + -0.0027223636861890554, + -0.02032698318362236, + -0.017317533493041992, + -0.011014848947525024, + 0.006975851021707058, + -0.03273436054587364, + -0.018439477309584618, + -0.011641817167401314, + 0.01171441376209259, + 0.009127343073487282, + 0.0072662364691495895, + 0.010915854014456272, + -0.021488524973392487, + -0.024999549612402916, + 0.0004755886911880225, + 0.005556921940296888, + -0.003388930344954133, + -0.01016349159181118, + 3.061370307477773e-6, + 0.010803659446537495, + -0.02023458667099476, + -0.008044997230172157, + 0.008975550532341003, + 0.0016713663935661316, + -0.004877156112343073, + -1.4050077879801393e-5, + -0.006345582194626331, + 0.024880755692720413, + -0.024524372071027756, + -0.0099721010774374, + -0.004821058828383684, + -0.0009058046853169799, + -0.0005923203425481915, + -0.00883695762604475, + -0.02118493989109993, + 0.004335983190685511, + -0.011430627666413784, + -0.006434678100049496, + -0.009760911576449871, + -0.005573421251028776, + 0.003128243377432227, + -0.009345131926238537, + 0.007193639874458313, + -0.006302684545516968, + -0.004972850903868675, + -0.0015979449963197112, + -0.00835518166422844, + 0.00929893460124731, + 0.011239237152040005, + 0.011813408695161343, + -0.022293685004115105, + 0.012981550768017769, + -0.004613169003278017, + 0.016868755221366882, + 0.007312434259802103, + -0.015562021173536777, + -0.01730433478951454, + -0.00419738981872797, + 0.015377230010926723, + -0.01682915724813938, + 0.012710964307188988, + 0.006830658297985792, + 0.0026068694423884153, + 0.002605219604447484, + 0.01061886828392744, + -0.006160791497677565, + -0.03257596865296364, + 0.003324583638459444, + 0.00837498065084219, + 0.0003392642829567194, + 0.010071096010506153, + 0.030252885073423386, + -0.008619168773293495, + 0.013951702043414116, + 0.022610468789935112, + -0.01482285838574171, + -0.017871905118227005, + 0.002311534248292446, + 0.013324732892215252, + -0.02035338059067726, + 0.022386079654097557, + -0.011542822234332561, + -0.03183680772781372, + -0.00271246419288218, + 0.009034947492182255, + 0.007946002297103405, + -0.017066745087504387, + -0.0014502773992717266, + 0.00819019041955471, + -0.017027147114276886, + 0.01806989498436451, + -0.0053226337768137455, + -0.010955451987683773, + -0.016433177515864372, + 0.010803659446537495, + -0.006688765250146389, + -0.015509223565459251, + 0.008520173840224743, + -0.021488524973392487, + -0.004243587609380484, + 0.018228286877274513, + 0.030728062614798546, + -0.0044778757728636265, + -0.011166641488671303, + 0.005098244640976191, + -0.0020211488008499146, + 0.03046407550573349, + 0.012182990089058876, + -0.014849256724119186, + -0.006362081505358219, + 0.023996399715542793, + -0.011641817167401314, + -0.008691765367984772, + -0.005929803010076284, + -0.01083665806800127, + 0.0010245987214148045, + -0.00835518166422844, + 0.002557371975854039, + -0.007431228179484606, + 0.021409329026937485, + 0.03220638632774353, + 0.010328482836484909, + -0.008302384056150913, + -0.029777709394693375, + 0.010473676025867462, + -0.005187340546399355, + -0.008341982960700989, + 0.0071738408878445625, + 0.02824658714234829, + -0.007965801283717155, + 0.03479345887899399, + 0.015575220808386803, + 0.01144382730126381, + -0.004890355281531811, + 0.010711263865232468, + 0.02258406952023506, + 0.002742162672802806, + 0.005563521757721901, + 0.0009421028662472963, + -0.020868156105279922, + -0.012948552146553993, + 0.008850157260894775, + 0.0044382777996361256, + -0.011688015423715115, + -0.015166041441261768, + -0.03133523091673851, + 0.03083365596830845, + -0.03046407550573349, + 0.02342882752418518, + -0.0009264286491088569, + -0.01634078286588192, + -0.01590520329773426, + -0.02345522679388523, + 0.020472174510359764, + 0.006243287585675716, + -0.0001966495328815654, + 0.0008472325862385333, + -0.004896955098956823, + 0.0051675415597856045, + -0.02250487357378006, + 0.017871905118227005, + 0.005652617197483778, + -0.00949032511562109, + 0.01899384893476963, + -0.006903254427015781, + -0.02874816209077835, + 0.009714714251458645, + 0.013595319353044033, + -0.015720413997769356, + -0.012301784008741379, + 0.006632667966187, + -0.01278355997055769, + 0.013331333175301552, + 0.005992500111460686, + 0.013912104070186615, + 0.00036298183840699494, + 0.000634805706795305, + -0.007965801283717155, + 0.010552871972322464, + 0.0132257379591465, + 0.013007949106395245, + -0.0063851806335151196, + -0.01816229149699211, + 0.020920952782034874, + 0.02035338059067726, + 0.012314983643591404, + 0.003530823392793536, + -0.004042297601699829, + 0.007180440705269575, + -0.003979600965976715, + -0.029302533715963364, + 0.005124643445014954, + 0.010269085876643658, + 0.0038410078268498182, + 0.017792709171772003, + 0.021765710785984993, + -0.008487175218760967, + -0.009536522440612316, + -0.02249167487025261, + -0.012658166699111462, + 0.0018561570905148983, + 0.02382480725646019, + -0.0003429765929467976, + -0.00540512939915061, + -0.015746811404824257, + 0.02822018787264824, + 0.020036596804857254, + -0.0022323383018374443, + -0.02117174118757248, + -0.012288585305213928, + -0.009655316360294819, + -0.016195589676499367, + 0.00419738981872797, + 0.001004799734801054, + 0.03400149941444397, + 0.002179540926590562, + -0.011872805655002594, + -0.0019155541667714715, + 0.0036694162990897894, + 0.0028048595413565636, + 0.016657566651701927, + -0.00819019041955471, + -0.006022198591381311, + -0.005474425852298737, + 0.026636267080903053, + -0.018267884850502014, + 0.0021762410178780556, + 0.0007886605453677475, + -0.015192439779639244, + -0.0057879104278981686, + 0.0035572219640016556, + 0.020524973049759865, + 0.008988750167191029, + 0.01718553900718689, + -0.022386079654097557, + -0.007114443928003311, + -0.02785060554742813, + 0.03677336126565933, + -0.012334782630205154, + 0.00243527814745903, + 0.004817758686840534, + 0.0046329679898917675, + 0.017766311764717102, + -0.004768261220306158, + -0.010757461190223694, + -0.02069656364619732, + -0.004484475590288639, + -0.030622467398643494, + -0.011529622599482536, + -0.007101244758814573, + 0.010942252352833748, + -0.003314684145152569, + -0.0005725213559344411, + 0.0010633717756718397, + -0.0004153667250648141, + 0.0030325481202453375, + -0.0012894105166196823, + 0.025540722534060478, + -0.004547172226011753, + -0.00906794611364603, + 0.0006331558106467128, + -0.013582120649516582, + 0.020472174510359764, + 0.005461226683109999, + 0.0005972700892016292, + 0.0121169937774539, + 0.005801109597086906, + -0.0143344821408391, + -0.01938983052968979, + -0.008968951180577278, + -0.013324732892215252, + 0.015047246590256691, + -0.01591840386390686, + 0.02332323230803013, + -0.013793310150504112, + 0.0020310482941567898, + 0.002720713848248124, + -0.0008769311243668199, + -0.005688915494829416, + -0.003616618923842907, + 0.0017505623400211334, + 0.007899804972112179, + -0.004190790466964245, + -0.002270286437124014, + -0.020445777103304863, + -0.007470826152712107, + 0.01150322426110506, + -0.00994570180773735, + 0.0038410078268498182, + -0.007893204689025879, + 0.0026365681551396847, + -0.0008505324367433786, + -0.013153141364455223, + 0.02819378860294819, + 0.00879735965281725, + 0.0011697914451360703, + -0.011226038448512554, + -0.007708413992077112, + -0.018756261095404625, + -0.006721763405948877, + -0.030728062614798546, + 0.006104694679379463, + -0.005038847681134939, + 0.009193340316414833, + -0.010005099698901176, + 0.011919003911316395, + -0.014849256724119186, + 0.015971200540661812, + -0.010486874729394913, + 0.0019716513343155384, + 0.007008849177509546, + 0.008982150815427303, + 0.0052302381955087185, + 0.016670765355229378, + 0.028985749930143356, + 0.01770031452178955, + 0.00043392827501520514, + -0.016406778246164322, + 0.006391779985278845, + -0.01674996130168438, + 0.013238937593996525, + -0.007530223112553358, + 0.010803659446537495, + -0.007114443928003311, + -0.004124793689697981, + 0.016670765355229378, + 0.012262186035513878, + -0.00410499470308423, + -0.0011046197032555938, + 0.010876256041228771, + -0.016406778246164322, + 0.0068636564537882805, + -0.012077395804226398, + 0.016063595190644264, + 0.019205039367079735, + -0.006777860689908266, + 0.006830658297985792, + 0.009180140681564808, + 0.01634078286588192, + -0.007253036834299564, + -0.01859786920249462, + 0.010539672337472439, + 0.016947951167821884, + -0.008572970516979694, + -0.00036360055673867464, + 0.010876256041228771, + -0.0013809808297082782, + -0.0038938052020967007, + -0.002717413939535618, + -0.0264118779450655, + -0.017013948410749435, + 0.02034018188714981, + -0.001724163768813014, + -0.005236838012933731, + -0.0024468274787068367, + 0.0012605369556695223, + 0.008262786082923412, + 0.008968951180577278, + 0.001261361874639988, + -0.0012935352278873324, + 0.037301331758499146, + -0.005461226683109999, + 0.034186288714408875, + -0.0005716963787563145, + -0.009001949802041054, + -0.010691464878618717, + 0.003299834905192256, + -0.0057879104278981686, + -0.013568921014666557, + -0.022082494571805, + -0.017528722062706947, + 0.0008068096358329058, + -0.0121103934943676, + 0.006104694679379463, + -0.0013281835708767176, + -0.00410499470308423, + -0.00795920193195343, + -0.021435726433992386, + -0.006622768472880125, + 0.01899384893476963, + 0.003534123068675399, + 0.02474876120686531, + -0.0018677065381780267, + 0.020036596804857254, + 0.010896055027842522, + -0.00951012410223484, + -0.025936702266335487, + 0.007556621916592121, + -0.008110994473099709, + 0.023310033604502678, + 0.0018165591172873974, + -0.012235787697136402, + -0.005108144134283066, + -0.01594480127096176, + 0.011773810721933842, + 0.0006777035887353122, + 0.001730763353407383, + -0.000673991278745234, + 0.006038697902113199, + 0.025699114426970482, + 0.02332323230803013, + -0.018663866445422173, + 0.004804559517651796, + 0.02782420814037323, + -0.01595800183713436, + 0.010057896375656128, + 0.007391630206257105, + -0.01631438359618187, + 0.016142792999744415, + 0.011239237152040005, + 0.02119813859462738, + 0.0018281085649505258, + 0.026372279971837997, + 0.005576720926910639, + -0.000649242487270385, + -0.009734513238072395, + -0.00952992308884859, + -0.016076795756816864, + 0.013199339620769024, + -0.0067316628992557526, + -0.014717263169586658, + 0.016472775489091873, + -0.006701964419335127, + 0.0024369279853999615, + -0.004266686271876097, + -0.0072662364691495895, + 0.0049200537614524364, + 0.0021762410178780556, + 0.0019155541667714715, + 0.005969401448965073, + 0.00970151461660862, + 0.00014539896801579744, + -0.01167481578886509, + 0.003659516805782914, + 0.024893954396247864, + 0.014044096693396568, + -0.0024534272961318493, + -0.007767811417579651, + 0.0023544321302324533, + -0.009635517373681068, + 0.006114594172686338, + -0.020947352051734924, + 0.007451027166098356, + 0.011622018180787563, + -0.003012749133631587, + -0.012295184656977654, + 0.024893954396247864, + 0.002337933052331209, + -0.005065246485173702, + -0.003202489810064435, + -0.008269386366009712, + -0.00820998940616846, + -0.0099259028211236, + -0.011364631354808807, + -0.006685465574264526, + 0.0009775761282071471, + 0.0021514922846108675, + -0.03217998892068863, + -0.008777560666203499, + 0.013172940351068974, + 0.015324433334171772, + 0.0012300134403631091, + -0.0010889455443248153, + 0.008922753855586052, + 0.005299534648656845, + 0.0076160188764333725, + 0.008678565733134747, + 0.002874156227335334, + -0.022597268223762512, + 0.007675415836274624, + 0.004368981346487999, + -0.0018578070448711514, + 0.002425378654152155, + -0.0005576721159741282, + -0.004461376927793026, + 0.004933252930641174, + 0.0035143240820616484, + -0.0031892904080450535, + -0.025474725291132927, + 0.031044846400618553, + -0.004425078630447388, + 0.013106944039463997, + 4.9394402594771236e-5, + 0.016961151733994484, + 0.012625168077647686, + 0.011080845259130001, + -0.008335382677614689, + 0.02389080449938774, + -0.011404229328036308, + 0.01389890443533659, + -8.15677922219038e-5, + 0.003520923899486661, + 0.033843107521533966, + 0.00542822852730751, + 0.017885105684399605, + 0.015311233699321747, + 0.0242207869887352, + -0.014096894301474094, + -0.005200539715588093, + -0.009127343073487282, + 0.03798769786953926, + 0.0009124043281190097, + 0.019693413749337196, + -0.01303434744477272, + -0.002009599469602108, + -0.008269386366009712, + 0.008863355964422226, + 0.0037453125696629286, + -0.0014791509602218866, + 0.007536822929978371, + -0.002106944564729929, + -0.01255917176604271, + -0.029487324878573418, + 0.00584730738773942, + 0.0007305009639821947, + 0.00902834814041853, + 0.010282285511493683, + 0.0264118779450655, + 0.014664466492831707, + 0.02742822654545307, + -0.015377230010926723, + 0.0007577245705761015, + -0.023098843172192574, + -0.008203389123082161, + -0.007576420903205872, + -0.017937902361154556, + -0.011186440475285053, + -0.0022603869438171387, + 0.0028675564099103212, + -0.0075896200723946095, + 0.013410529121756554, + 0.036482974886894226, + 0.0016152691096067429, + -0.013819708488881588, + -0.00038339957245625556, + -0.003111744299530983, + 0.0035539220552891493, + -0.005929803010076284, + 0.0027619616594165564, + 0.014162891544401646, + 0.007061646785587072, + -0.027085045352578163, + -0.016987549141049385, + -0.007088045123964548, + -0.01457207091152668, + -0.0033856306690722704, + -0.005118043627589941, + -0.007345432415604591, + 0.0265438724309206, + -0.004959651734679937, + 0.012974950484931469, + -0.016934752464294434, + 0.010896055027842522, + 0.0017703614430502057, + -0.0056724161840975285, + -0.006368681322783232, + 0.009378130547702312, + -0.002752062166109681, + -0.009391330182552338, + 0.03302474692463875, + -0.00791300367563963, + 0.01188600528985262, + 0.021752512082457542, + 0.01300134975463152, + -0.009714714251458645, + 0.008922753855586052, + -0.01582600735127926, + 0.012671365402638912, + -0.013661316595971584, + 0.007114443928003311, + 0.02993610128760338, + 0.011661616154015064, + -0.010229487903416157, + -0.011767211370170116, + 0.00628948537632823, + 0.004078595899045467, + 0.017330732196569443, + 0.017053546383976936, + 0.021396128460764885, + -0.0031661915127187967, + 0.0009619018528610468, + 0.004863956477493048, + -0.01257237046957016, + 0.0051675415597856045, + 0.007503824308514595, + -0.03001529723405838, + -0.02345522679388523, + 0.000315340468659997, + -0.003002849640324712, + 0.028352180495858192, + -0.006338982842862606, + 0.002941802842542529, + -0.020419377833604813, + 0.0016490924172103405, + 0.01942942850291729, + 0.0062036896124482155, + -0.0019452526466920972, + -0.0022389378864318132, + -0.011146842502057552, + -0.0025771709624677896, + 0.015100044198334217, + 0.01482285838574171, + 0.009457326494157314, + 0.011978400871157646, + 0.013582120649516582, + -0.0008909553871490061, + -0.007226638495922089, + 0.0012687864946201444, + -0.003544022561982274, + 0.001564946724101901, + 0.011998199857771397, + -0.004141292534768581, + 0.014347681775689125, + 0.012717563658952713, + -0.013964900746941566, + -0.0006669791182503104, + -0.023112043738365173, + 0.015482825227081776, + -0.007352032233029604, + -0.0006178940529935062, + 0.0064214784651994705, + 0.006114594172686338, + 0.0075500220991671085, + -0.009166941046714783, + 0.002443527802824974, + -0.011173240840435028, + 0.0006805909215472639, + 0.03661496937274933, + 0.03838367760181427, + -0.009437527507543564, + -0.00043681563693098724, + 0.001706014620140195, + -0.03577021136879921, + 0.008157191798090935, + -0.0009239537757821381, + -0.017079945653676987, + -0.01106764655560255, + 0.014136492274701595, + -0.015364031307399273, + 0.011575820855796337, + 0.02612149342894554, + -0.004533973056823015, + 0.0057351128198206425, + -0.00967511534690857, + 0.008388180285692215, + -0.0008579570567235351, + 0.012209389358758926, + 0.0009132293052971363, + -0.004877156112343073, + -0.01862426847219467, + 0.008896354585886002, + 0.022254087030887604, + -0.0018693564925342798, + -0.0006232563173398376, + -0.015152841806411743, + -0.020815357565879822, + 0.0020722963381558657, + 0.017898304387927055, + -0.00947052612900734, + -0.027085045352578163, + 0.012631767429411411, + -0.0042204889468848705, + 0.02214849181473255, + 0.02300644852221012, + 0.003583620535209775, + -0.009853307157754898, + -0.002948402427136898, + -0.026702264323830605, + -0.018267884850502014, + 0.003144742688164115, + -0.024418778717517853, + -0.02250487357378006, + 0.0022851356770843267, + 0.008817158639431, + -0.003877305891364813, + -0.025025947019457817, + 0.006272986065596342, + 0.009787309914827347, + 0.01630118489265442, + -0.007583020720630884, + 0.0049200537614524364, + -0.0067085642367601395, + 0.013238937593996525, + 0.00531273428350687, + -0.017370330169796944, + 0.0018825557781383395, + -0.0036364179104566574, + -0.016195589676499367, + 0.01862426847219467, + 0.014347681775689125, + 0.04136672988533974, + -0.00540512939915061, + 0.032496772706508636, + 0.004576871171593666, + 0.02035338059067726, + 0.012532772496342659, + -0.014836057089269161, + 0.018439477309584618, + -0.0035176239907741547, + 0.0017670615343376994, + -0.010777260176837444, + 0.0007915478781796992, + -0.0024039295967668295, + 0.005622918717563152, + -0.016947951167821884, + 0.005375430919229984, + 0.03429188206791878, + 0.022768860682845116, + -0.0027570119127631187, + 0.00408519571647048, + -0.00819019041955471, + -0.005250037182122469, + 0.01083665806800127, + -0.015482825227081776, + 0.013991300016641617, + -0.0006640917854383588, + -0.007767811417579651, + -0.02250487357378006, + -0.006124493665993214, + -0.00814399216324091, + -0.0034780260175466537, + 0.01543002761900425, + -0.01639357954263687, + 0.0016573420725762844, + 0.013093744404613972, + 0.00461976882070303, + 0.003570421366021037, + -0.004048897419124842, + -0.000802272348664701, + -0.00837498065084219, + 0.003118343884125352, + -0.021422527730464935, + -0.05203179642558098, + 0.0030490474309772253, + 0.010229487903416157, + -0.0018099594162777066, + 0.0029599517583847046, + -0.01589200459420681, + 0.02298004925251007, + 0.004418478813022375, + 0.02381160855293274, + -0.0062927850522100925, + 0.015971200540661812, + -0.00028894178103655577, + 0.00818359013646841, + 0.020221387967467308, + 0.011404229328036308, + 0.010460476391017437, + 0.0038410078268498182, + 0.02468276396393776, + -0.002057447098195553, + 0.012928753159940243, + -0.0009338532690890133, + -0.004563671536743641, + 0.025501124560832977, + -0.013423727825284004, + -0.022782059386372566, + 0.0033229338005185127, + 0.0006851282087154686, + 0.00016447615053039044, + 0.0003244150138925761, + -0.012334782630205154, + 0.0073322332464158535, + 0.018399879336357117, + -0.01635398156940937, + 0.013186139985918999, + -0.00879735965281725, + -0.001943602692335844, + 0.0006937902653589845, + 0.017409928143024445, + 9.064233745448291e-5, + 0.005316033959388733, + -0.0075236232951283455, + -0.018281085416674614, + 0.02118493989109993, + 0.019139042124152184, + -0.0009668515995144844, + 0.006850457284599543, + 0.0024765259586274624, + -0.009371531195938587, + 0.020445777103304863, + 0.00617069099098444, + -0.004382180515676737, + -0.006817458663135767, + 0.013780110515654087, + -0.003748612478375435, + -0.0022059394977986813, + 0.002595320111140609, + -0.005246737506240606, + 0.019521823152899742, + 0.02874816209077835, + 0.0032882853411138058, + 0.003273436101153493, + -0.02303284779191017, + -0.007424628362059593, + -0.014664466492831707, + -0.00972131360322237, + -0.006536972709000111, + -0.010915854014456272, + -0.016116393730044365, + 0.004309584386646748, + -0.0018512073438614607, + -0.005504124332219362, + -0.0024880755227059126, + -0.01496805064380169, + 0.008454176597297192, + 0.0005523098516277969, + -0.003920204006135464, + 0.013384129852056503, + 0.0014676015125587583, + 0.007187040522694588, + -0.011635217815637589, + -0.0018561570905148983, + 0.0005316858878359199, + 0.011991599574685097, + 0.020907754078507423, + -0.012968351133167744, + 0.021052947267889977, + 0.017066745087504387, + -0.006098094861954451, + -0.018769459798932076, + -0.01521883811801672, + 0.008579570800065994, + 0.004550472367554903, + 0.01725153625011444, + -0.041313931345939636, + 0.00036710663698613644, + 0.0012110393727198243, + -0.01546962559223175, + -0.021316932514309883, + -0.020670166239142418 + ], + "39a71b21-283f-4275-86b2-ff692afcbea9": [ + -0.02949330396950245, + -0.025034144520759583, + 0.006789744831621647, + 0.0014430545270442963, + -0.028475778177380562, + -0.026500578969717026, + 0.006183717865496874, + 0.014282779768109322, + -0.01963227614760399, + 0.012891163118183613, + 0.004343192093074322, + 0.05114566907286644, + 0.001613265834748745, + -0.03761855140328407, + -0.018629712983965874, + 0.013684234581887722, + -0.008559193462133408, + 0.022220982238650322, + -0.017193205654621124, + -0.01462694350630045, + 0.05282159522175789, + -0.0006513852858915925, + -0.032351355999708176, + 0.028251323848962784, + -0.008244957774877548, + -0.020006366074085236, + -0.004171110223978758, + 0.008738757111132145, + -0.0346258282661438, + 0.01198586355894804, + 0.019766949117183685, + 0.006221127230674028, + 0.02774256095290184, + -0.012060681357979774, + 0.011596809141337872, + -0.03642146289348602, + 0.013025835156440735, + 0.021502729505300522, + 0.0018741940148174763, + -0.022819528356194496, + -0.06739616394042969, + 0.025213707238435745, + -0.0029777614399790764, + -0.003349981503561139, + -0.061291009187698364, + 0.024001654237508774, + 0.02293923683464527, + -0.027383433654904366, + 0.015300306491553783, + -0.0025980593636631966, + 0.012157944962382317, + -0.03728935495018959, + -0.00914277508854866, + 0.009584201499819756, + 0.023926835507154465, + -0.022475365549325943, + 0.0032171793282032013, + 0.05458730459213257, + -0.002757048001512885, + -0.051265377551317215, + -0.0013644956052303314, + -0.0032452361192554235, + -0.0007631448679603636, + 0.00030301339575089514, + -0.042287204414606094, + -0.02772759646177292, + -0.004294560290873051, + -0.009531829506158829, + -0.07122685760259628, + -0.030406085774302483, + 0.015906333923339844, + 0.06847354769706726, + -0.023447999730706215, + 0.011080563999712467, + 0.00028056796872988343, + -0.015906333923339844, + 0.046297457069158554, + -0.01022015605121851, + 0.004167369566857815, + 0.011297537013888359, + -0.010235119611024857, + 0.008596602827310562, + 0.026156416162848473, + 0.007620226126164198, + 0.06368518620729446, + 0.013774016872048378, + -0.01708845980465412, + -0.03857622668147087, + 0.01699867844581604, + -0.01819576881825924, + 0.011424727737903595, + 0.04764418303966522, + 0.016893932595849037, + 0.009187665767967701, + -0.020021330565214157, + -0.018300512805581093, + 0.022864418104290962, + -0.00739577179774642, + 0.005308345891535282, + 0.012816344387829304, + 0.014245371334254742, + 0.036990080028772354, + -0.046237602829933167, + 0.026500578969717026, + -0.008469412103295326, + 0.004724764730781317, + -0.0003572565328795463, + -0.021502729505300522, + -0.028341105207800865, + 0.059136245399713516, + -0.009434565901756287, + -0.030241485685110092, + 0.02058994770050049, + -0.014200479723513126, + -0.05072668939828873, + -0.03600248321890831, + 0.034835319966077805, + -0.020470239222049713, + 0.005678695626556873, + -0.041479166597127914, + 0.011050636880099773, + 0.014200479723513126, + -0.0016039134934544563, + 0.03681051731109619, + 0.00613134540617466, + 0.003108693053945899, + -0.008065394125878811, + -0.017342841252684593, + 0.005701140966266394, + 0.007152612786740065, + -0.035164520144462585, + 0.0004489087441470474, + 0.00012403442815411836, + -0.005484168417751789, + 0.02108374796807766, + 0.00043932266999036074, + -0.0006789744948036969, + 0.044771164655685425, + -0.03447619080543518, + 0.03477546572685242, + -0.04396313056349754, + -0.062188826501369476, + -0.008357184939086437, + -0.001311187632381916, + 0.005304605234414339, + -0.012157944962382317, + -0.05716104805469513, + 0.014559607021510601, + -0.00645306333899498, + 0.02452538162469864, + -0.04120982438325882, + -0.03672073408961296, + 0.013130581006407738, + 0.024001654237508774, + -0.0202906746417284, + 0.004477864596992731, + -0.007421957794576883, + 0.02412136271595955, + 0.0050427415408194065, + 0.010601728223264217, + -0.007380808237940073, + -0.05829828232526779, + 0.01203075423836708, + -0.007511739619076252, + 0.048691634088754654, + 0.015831515192985535, + -0.0027327321004122496, + 0.017701968550682068, + -0.011955936439335346, + 0.025123925879597664, + 0.04351422190666199, + -0.029119214043021202, + -0.019497603178024292, + -0.025782326236367226, + 0.011604291386902332, + 0.013414889574050903, + 0.039893023669719696, + 0.02117352932691574, + 0.010227637365460396, + -0.028505705296993256, + -0.001765707740560174, + -0.018001241609454155, + 0.018943948671221733, + -0.020141039043664932, + -0.015218006446957588, + -0.01714831404387951, + -0.005869481712579727, + 0.008948247879743576, + -0.00909788440912962, + -0.014611979946494102, + -0.019826803356409073, + -0.02093411050736904, + -0.03148346766829491, + 0.018061095848679543, + -0.04363393038511276, + -0.01650487817823887, + -0.007983094081282616, + -0.019826803356409073, + 0.008880911394953728, + -0.004058883059769869, + -0.02638087049126625, + -0.0453697107732296, + -0.03438641130924225, + 0.038366734981536865, + -0.05009821802377701, + 0.01563698798418045, + -0.028670305386185646, + -0.027862269431352615, + 0.011873636394739151, + -0.028819940984249115, + 0.04809309169650078, + -0.05386904999613762, + 0.008551711216568947, + 0.0019452712731435895, + -0.03268055617809296, + 0.008693866431713104, + 0.0058732228353619576, + 0.02252025529742241, + 0.03567328304052353, + -0.018076058477163315, + -0.02204141952097416, + -0.00885846558958292, + -0.009950811043381691, + -0.01435759849846363, + -0.05626323074102402, + -0.014133144170045853, + -0.010766328312456608, + 0.04171858727931976, + -0.0601537711918354, + 0.01659465953707695, + 0.06751587241888046, + 0.008372148498892784, + -0.0028000683523714542, + -0.04168865829706192, + -0.005746032111346722, + 0.021023893728852272, + -0.005226045846939087, + 0.02974768728017807, + 0.014163071289658546, + -0.0293586328625679, + 0.0023885685950517654, + -0.00411125598475337, + 0.020156003534793854, + 0.018569858744740486, + -0.014125661924481392, + -0.018539931625127792, + 0.029717758297920227, + 0.00755663076415658, + 0.04336458444595337, + -0.036122191697359085, + -0.008192584849894047, + -0.0021267051342874765, + 0.03971346095204353, + -0.01931804046034813, + -0.013467262499034405, + 0.06188955157995224, + 0.02660532481968403, + -0.01278641726821661, + 0.00473224651068449, + -0.0135495625436306, + 0.021592510864138603, + 0.03151339292526245, + 0.06230853497982025, + -0.000805230054538697, + 0.05201356112957001, + -0.03238128498196602, + 0.011589327827095985, + -0.037738263607025146, + 0.00014040089445188642, + 0.03291997313499451, + -0.01931804046034813, + 0.008155175484716892, + -0.01587640680372715, + -0.01668444089591503, + -0.0051549687050282955, + 0.03297983109951019, + 0.0014383784728124738, + -0.028520669788122177, + -0.00615379074588418, + -0.011364873498678207, + -0.007111462764441967, + 0.014918734319508076, + -0.00994332879781723, + 0.040611278265714645, + -0.005241009406745434, + 0.003611844964325428, + -0.0057759592309594154, + -0.00016693794168531895, + -0.053270503878593445, + -0.004810805432498455, + -0.000345098611433059, + 0.011103009805083275, + 0.022804563865065575, + 0.01391617115586996, + 0.028400959447026253, + 0.014477306976914406, + -0.03054075874388218, + -0.027368469163775444, + -0.04961938038468361, + 0.006303426809608936, + -0.025857143104076385, + 0.0028449592646211386, + 0.013295181095600128, + -0.035792991518974304, + 0.018629712983965874, + -0.02991228550672531, + 0.06739616394042969, + 0.022819528356194496, + -0.04707556590437889, + -0.00569365918636322, + 0.03294990211725235, + -0.026186343282461166, + -0.015218006446957588, + -0.01563698798418045, + 0.029942212626338005, + -0.006864563096314669, + 0.028475778177380562, + -0.02533341757953167, + -0.004500310402363539, + -0.023447999730706215, + 0.011155382730066776, + -0.01547238789498806, + -0.07152612507343292, + 0.026156416162848473, + 0.028086723759770393, + -0.04593832790851593, + 0.04617774486541748, + -0.03229150176048279, + 0.008559193462133408, + -0.031064486131072044, + -0.0073920306749641895, + -0.0037278130184859037, + -0.0570712648332119, + -0.021427910774946213, + -0.008880911394953728, + -0.03986309841275215, + -0.05222305282950401, + -0.058148644864559174, + -0.014544643461704254, + -0.01620560511946678, + -0.012240245006978512, + -0.01746254973113537, + -0.023433037102222443, + -0.0035594722721725702, + 0.025453126057982445, + -0.0037951492704451084, + -0.0012868717312812805, + -0.005731068551540375, + 0.0052634552121162415, + 0.006183717865496874, + 0.0009698299691081047, + -0.013923653401434422, + 0.027054233476519585, + 0.02564765326678753, + 0.05081646889448166, + -0.013145544566214085, + 0.024869544431567192, + -0.010287492536008358, + 0.0025550390128046274, + 0.013377481140196323, + 0.049350034445524216, + -0.00833473913371563, + -0.0072760628536343575, + 0.0015403181314468384, + -0.012113054282963276, + 0.004466642159968615, + -0.019542494788765907, + -0.003810113063082099, + 0.0005513160722330213, + 0.02058994770050049, + -0.04234705865383148, + 0.009247520007193089, + 0.005435536615550518, + -0.012285135686397552, + -0.011918527074158192, + -0.010152819566428661, + 0.0327104851603508, + 0.0010820571333169937, + -0.050696760416030884, + 0.01964723877608776, + -0.015607060864567757, + 0.028834905475378036, + 0.028984541073441505, + -0.03585284575819969, + -0.001621682895347476, + 0.031064486131072044, + -0.015135706402361393, + -0.016220569610595703, + 0.0508463978767395, + 0.019288113340735435, + -0.0379776805639267, + 0.01659465953707695, + -0.034506119787693024, + 0.007059089839458466, + -0.015577133744955063, + 0.02246040105819702, + 0.0035239337012171745, + -0.013976025395095348, + 0.004851955454796553, + -0.003155454294756055, + -0.024510417133569717, + -0.007915757596492767, + 0.008888393640518188, + -0.001661897636950016, + 0.028176505118608475, + -0.03048090450465679, + -0.006239831447601318, + -0.023926835507154465, + 0.015098297968506813, + -0.025617726147174835, + 0.009718874469399452, + 0.0032564587891101837, + 0.05147486925125122, + 0.004208519589155912, + 0.013093171641230583, + -0.009756283834576607, + 0.010452091693878174, + 0.018943948671221733, + -0.03360830247402191, + -0.013459780253469944, + 0.03734920918941498, + 0.06583994626998901, + -0.023777199909090996, + 0.02557283453643322, + -0.012921090237796307, + 0.037409063428640366, + 0.03537400811910629, + 0.012045717798173428, + -0.03716964274644852, + -0.012883680872619152, + -0.01499355211853981, + 0.028894759714603424, + 0.009052992798388004, + -0.003161065746098757, + -0.01981183886528015, + -0.04545949399471283, + 0.007758639752864838, + 0.0019826802890747786, + -0.022146165370941162, + -0.01338496245443821, + -0.013736607506871223, + 0.01435011625289917, + -0.0008903357083909214, + -0.0063819861970841885, + 0.0016375817358493805, + -0.011551918461918831, + -0.02436078153550625, + -0.007627707906067371, + -0.016400132328271866, + 0.02187681943178177, + -0.008065394125878811, + 0.03890542313456535, + -0.03262070193886757, + 0.013497189618647099, + -0.00925500225275755, + 0.01403588056564331, + -0.023433037102222443, + -0.028879795223474503, + 0.024196181446313858, + -0.045489419251680374, + -0.049679234623909, + -0.021023893728852272, + -0.006142567843198776, + -0.012053200043737888, + 0.00854422990232706, + -0.07439914345741272, + 0.011043155565857887, + 0.026739997789263725, + 0.012808863073587418, + 0.0013308273628354073, + -0.01859978586435318, + -0.00378953805193305, + -0.03381779417395592, + 0.008880911394953728, + -0.0026092820335179567, + -0.0008716311422176659, + -0.0009459816501475871, + -0.0005223240586929023, + 0.014080771245062351, + -0.015816550701856613, + -0.027278687804937363, + -0.030256450176239014, + -0.017342841252684593, + 0.0019826802890747786, + 0.019512567669153214, + -0.015517279505729675, + 0.027533069252967834, + -0.05605373904109001, + 0.011125455610454082, + -0.038366734981536865, + 0.03830688074231148, + 0.0034285406582057476, + 0.004784618970006704, + 0.017776787281036377, + -0.007219948805868626, + -0.03055572137236595, + -0.005012814421206713, + -0.00519237807020545, + -0.011484581977128983, + -0.01916840299963951, + 0.04303538426756859, + -0.010324900969862938, + -0.015143188647925854, + 0.03441633656620979, + 0.011305018328130245, + 0.02108374796807766, + -0.03710978850722313, + -0.04043171554803848, + -0.006726149469614029, + 0.006071490701287985, + -0.03525429964065552, + -0.028685269877314568, + -0.015008515678346157, + 0.02877505123615265, + -0.010287492536008358, + -0.014492270536720753, + -0.021203456446528435, + -0.012120536528527737, + 0.02774256095290184, + -0.012135500088334084, + -0.008147694170475006, + 0.0022389322984963655, + -0.003075024811550975, + 0.012240245006978512, + -0.022625001147389412, + 0.007848421111702919, + -0.007668857928365469, + -0.004664910025894642, + 0.011806299909949303, + -0.011409764178097248, + -0.007683821488171816, + 0.023911872878670692, + -0.007691303268074989, + 0.0097862109541893, + 0.020185930654406548, + 0.0012672320008277893, + -0.01005555596202612, + 0.003991547040641308, + -0.013325108215212822, + 0.02548305317759514, + -0.02189178392291069, + 0.001150328665971756, + 0.018554894253611565, + -0.026171380653977394, + 0.010167783126235008, + 0.020979002118110657, + -0.00909788440912962, + 0.02011111192405224, + -0.004174851346760988, + 0.008372148498892784, + -0.029044395312666893, + 0.016474951058626175, + -0.008589120581746101, + 0.00354824960231781, + 0.029149141162633896, + -0.05796908214688301, + 0.03048090450465679, + -0.012397362850606441, + -0.016415096819400787, + 0.016250496730208397, + -0.022819528356194496, + 0.014178034849464893, + 0.014013434760272503, + 0.009367229416966438, + -0.023507853969931602, + -0.020096147432923317, + -0.015300306491553783, + -0.00406636530533433, + 0.02533341757953167, + 0.002027571201324463, + 0.02718890644609928, + 0.01619064249098301, + 0.030884921550750732, + -0.0019546234980225563, + -0.016310350969433784, + 0.0351046659052372, + -0.010250083170831203, + 0.013938616961240768, + -0.026680143550038338, + -0.00785590335726738, + 0.018150877207517624, + -0.030406085774302483, + -0.006703704129904509, + -0.002366123255342245, + 0.00885846558958292, + 0.008963211439549923, + -0.014110698364675045, + -0.01046705525368452, + 0.0075042578391730785, + 0.018495040014386177, + -0.0009174572769552469, + 0.023298364132642746, + 0.030825067311525345, + -0.018330439925193787, + -0.01070647407323122, + 0.02533341757953167, + -0.00035094376653432846, + 0.024480490013957024, + -0.002975890878587961, + -0.010721437633037567, + 0.015083334408700466, + 0.020560020580887794, + 0.010646618902683258, + 0.0007439727196469903, + -0.023029018193483353, + 0.01828555017709732, + -0.014222925528883934, + 0.012083127163350582, + -0.011439691297709942, + 0.012479662895202637, + 0.009322338737547398, + 0.009486937895417213, + 0.03142361342906952, + -0.010758846066892147, + 0.01494866143912077, + -0.0005335467285476625, + 0.003591269953176379, + 0.04468138515949249, + 0.012255208566784859, + -0.02757796086370945, + 0.011873636394739151, + -0.02283449098467827, + 0.04991865158081055, + -0.02093411050736904, + -0.0002370799338677898, + 0.01025756448507309, + -0.02781737968325615, + 0.0006976790027692914, + -0.019527530297636986, + -0.008274884894490242, + 0.012532035820186138, + -0.007163835223764181, + 0.0032994793727993965, + -0.03447619080543518, + 0.06236838921904564, + 0.00790079403668642, + 0.00505022332072258, + 0.026814816519618034, + -0.03190244734287262, + -0.021547619253396988, + -0.01620560511946678, + 0.0025325934402644634, + 0.012000827118754387, + 0.020066220313310623, + -0.008880911394953728, + 0.028026869520545006, + -0.02798197790980339, + 0.029807541519403458, + 0.01668444089591503, + 0.029687831178307533, + -0.013931134715676308, + 0.009711392223834991, + 0.0010661582928150892, + 0.02373230829834938, + -0.010294973850250244, + -0.026560435071587563, + 0.012846272438764572, + 0.006988012697547674, + -0.006191199645400047, + -0.007421957794576883, + 0.029298776760697365, + 0.0007926045218482614, + 0.014866361394524574, + 0.018569858744740486, + -0.009636574424803257, + 0.010354828089475632, + 0.0261414535343647, + 0.003110563615337014, + 0.005203600507229567, + 0.020784474909305573, + -0.002708416199311614, + 0.003901765216141939, + 0.03600248321890831, + 0.02671007066965103, + 0.011641699820756912, + 0.003654865315183997, + -0.013123098760843277, + 0.0038606151938438416, + -0.02671007066965103, + -0.005682436749339104, + -0.02108374796807766, + -0.015023479238152504, + -0.04764418303966522, + -0.008918320760130882, + 0.014178034849464893, + -0.0008042948320508003, + -0.0013364386977627873, + 0.033069610595703125, + -0.009314856491982937, + -0.005727327428758144, + 0.033698081970214844, + -0.007264839950948954, + -0.016489915549755096, + -0.0185100045055151, + -0.011851190589368343, + -0.0075790761038661, + -0.008439484052360058, + -0.01628042384982109, + 0.03971346095204353, + -0.006946862675249577, + -0.06721660494804382, + 0.00833473913371563, + -0.01210557296872139, + -0.019497603178024292, + 0.01732787676155567, + 0.012561962939798832, + -0.0303163044154644, + -0.015277860686182976, + 0.0036529949866235256, + -0.013931134715676308, + -0.0001750042720232159, + 0.005948041100054979, + 0.006138827186077833, + -0.0060976771637797356, + 0.010235119611024857, + 0.0053719412535429, + -0.008110284805297852, + -0.011215236969292164, + -0.0014421193627640605, + 0.011559400707483292, + -0.012756490148603916, + 0.01467183418571949, + -0.009995701722800732, + -0.016085896641016006, + -0.03037615865468979, + 0.02518378011882305, + 0.025378307327628136, + 0.030031995847821236, + -0.009980738162994385, + 0.0019976438488811255, + 0.02220601961016655, + -0.004919291473925114, + 0.002786975121125579, + -0.0006345512229017913, + -0.004197296686470509, + 0.01747751422226429, + -0.005289641208946705, + 0.010511946864426136, + 0.055934030562639236, + -0.04875148832798004, + 0.002642950275912881, + -0.01306324452161789, + 0.003520192811265588, + 0.0030731544829905033, + -0.0007098369533196092, + 0.006019118241965771, + 0.0256626158952713, + 0.0011493933852761984, + 0.00631090858951211, + 0.010975819081068039, + 0.022595074027776718, + -0.03372801095247269, + 0.02461516298353672, + -0.002867404604330659, + -0.011963417753577232, + -0.001869517844170332, + 0.0186147503554821, + 0.005020296201109886, + -0.011955936439335346, + 0.015001034364104271, + 0.002680359408259392, + 0.01981183886528015, + -0.009412120096385479, + -0.01634027808904648, + -0.007089017424732447, + -0.013325108215212822, + -0.007014199160039425, + 0.030046958476305008, + 0.02228083834052086, + -0.011005746200680733, + 0.05153472349047661, + 0.013691716827452183, + -0.006105158943682909, + 0.018495040014386177, + -0.01081870123744011, + 0.0028430887032300234, + 0.009509383700788021, + 0.006688740570098162, + -0.04022222384810448, + -0.018345404416322708, + -0.005910631734877825, + -0.005974227096885443, + 0.0012691024458035827, + -0.02485458180308342, + 0.02027571201324463, + -0.0017731895204633474, + 0.02855059690773487, + 0.018644677475094795, + -0.021293237805366516, + 0.000366608815966174, + 0.014260334894061089, + 0.0039691017009317875, + -0.00615379074588418, + -0.00345659744925797, + 0.030570685863494873, + -0.0063183908350765705, + 0.029328705742955208, + -0.033877648413181305, + 0.011955936439335346, + 0.026979416608810425, + 6.517359724966809e-5, + -0.03172288462519646, + 0.027233798056840897, + 0.0073433988727629185, + 0.0010876684682443738, + 0.0009819879196584225, + 0.005951781757175922, + 0.016400132328271866, + 0.0006312779150903225, + 0.007642671465873718, + -0.0290144681930542, + -0.019063659012317657, + -0.023792164400219917, + 0.016295388340950012, + -0.011791336350142956, + 0.004395565018057823, + -0.01699867844581604, + 0.029807541519403458, + 0.008147694170475006, + -0.00849933922290802, + 0.003935433458536863, + 0.01819576881825924, + -0.0042683738283813, + -0.010137856006622314, + -0.01462694350630045, + -0.027218833565711975, + 0.030046958476305008, + -0.013781498186290264, + 0.016549769788980484, + 0.0341469906270504, + 0.014709243550896645, + 0.0019134735921397805, + 0.0034472451079636812, + 0.024899471551179886, + -0.014267816208302975, + 0.010676546022295952, + -0.019677165895700455, + -0.004724764730781317, + -0.03495502844452858, + 0.05758002772927284, + -0.027697669342160225, + -0.03118419460952282, + -0.026171380653977394, + -0.003563213162124157, + 0.010302456095814705, + -0.012883680872619152, + 0.015936261042952538, + -0.001616071444004774, + 0.03160317614674568, + 0.006711185909807682, + 0.0051998598501086235, + -0.047823745757341385, + -0.0027121570892632008, + 0.00422722427174449, + -0.016878968104720116, + 0.02180200070142746, + -0.0151581522077322, + 0.026814816519618034, + 0.022250911220908165, + -0.002257636981084943, + 0.015322752296924591, + 0.007029162719845772, + -0.03214186802506447, + 0.01307072676718235, + -0.022625001147389412, + -0.028236359357833862, + -0.017342841252684593, + -0.008469412103295326, + -0.016220569610595703, + 0.012936053797602654, + -0.020081184804439545, + 0.003140490734949708, + 0.007399512454867363, + 0.0028861090540885925, + -0.003484654240310192, + -0.010212673805654049, + -0.028894759714603424, + -0.010452091693878174, + -0.0379776805639267, + -0.021772073581814766, + 0.0035725655034184456, + 0.01435011625289917, + 0.012479662895202637, + -0.008798611350357533, + -0.05123545229434967, + 0.01821073144674301, + 0.024899471551179886, + 0.004758432507514954, + 0.004477864596992731, + -0.004904327914118767, + 0.010130373761057854, + 0.02157754637300968, + 0.0015225488459691405, + -0.04908068850636482, + -0.023837054148316383, + -0.0161158237606287, + 0.002328714122995734, + -0.03420684486627579, + 0.010160300880670547, + -0.027443287894129753, + 0.0023361959028989077, + -0.026919560506939888, + -0.006535363383591175, + 0.012704117223620415, + 0.003499617800116539, + -0.03321924805641174, + 0.003609974402934313, + 0.015367642976343632, + -0.00028103557997383177, + 0.015352679416537285, + 0.008723793551325798, + 0.003050709143280983, + -0.01764211431145668, + -0.006019118241965771, + 0.018001241609454155, + 0.004945477936416864, + 0.004541459959000349, + 0.007212467025965452, + -0.012763972394168377, + 0.027847306802868843, + -1.597191658220254e-5, + 0.016579696908593178, + -0.007590298540890217, + 0.001992032630369067, + -0.0006111705442890525, + 0.0013710421044379473, + 0.014013434760272503, + 0.013190435245633125, + 0.015547206625342369, + -0.014903770759701729, + -0.008439484052360058, + 0.0008763073128648102, + -0.006090195383876562, + 0.00503151910379529, + -0.010511946864426136, + 0.0056674727238714695, + 0.018420223146677017, + -0.004444196820259094, + -0.03054075874388218, + -0.010003183037042618, + -0.025198744609951973, + -0.04207771271467209, + 0.011970899999141693, + -0.036840446293354034, + -0.008529266342520714, + 0.0034117065370082855, + -0.0033144429326057434, + 0.040521495044231415, + -0.026321016252040863, + 0.02187681943178177, + 0.011260127648711205, + 0.019273148849606514, + 0.034506119787693024, + -0.009554274380207062, + 0.018824240192770958, + 0.02027571201324463, + -0.01940782181918621, + 0.0021641142666339874, + 0.01186615414917469, + 0.0014804636593908072, + 0.001980809960514307, + -0.004515273962169886, + -0.003505229251459241, + 0.011013227514922619, + -0.054647158831357956, + 0.008843502029776573, + -0.05096610635519028, + 0.005551504902541637, + -0.003407965647056699, + -0.010646618902683258, + -0.0021585028152912855, + -0.02877505123615265, + -0.004010251257568598, + 0.01845015026628971, + 0.005592654924839735, + -0.020081184804439545, + -0.020829366520047188, + 0.002579354913905263, + -0.010534391738474369, + 0.0023586414754390717, + 0.037798117846250534, + 0.013961061835289001, + -0.01898884028196335, + -0.022325728088617325, + -0.033488593995571136, + 0.013676753267645836, + -0.011162864044308662, + 0.0016357112908735871, + 0.01318295393139124, + 0.02678488940000534, + 0.016130788251757622, + -0.043574076145887375, + -0.005966745316982269, + -0.0193330030888319, + 0.017133351415395737, + 0.0005396257038228214, + -0.023208582773804665, + -0.019108548760414124, + 0.00283560692332685, + -0.04432225599884987, + 0.01650487817823887, + -0.01090100035071373, + -0.03857622668147087, + 0.03767840936779976, + 0.02926884964108467, + 0.002005125628784299, + -0.015487351454794407, + -0.01852496713399887, + 0.023911872878670692, + -0.009651537984609604, + -0.017297949641942978, + -0.020574985072016716, + -0.013878761790692806, + -0.0161158237606287, + 0.010414683260023594, + 0.023612599819898605, + -0.014230407774448395, + -0.06703703850507736, + -0.02509399875998497, + 0.03761855140328407, + -0.013968544080853462, + -0.012988426722586155, + 0.022265873849391937, + -0.014499752782285213, + 0.005708622746169567, + 0.003825076622888446, + -0.006901971995830536, + 0.005517836660146713, + -0.003879319876432419, + -0.005630063824355602, + -0.012734045274555683, + -0.004073847085237503, + 0.01307072676718235, + 0.010781291872262955, + -0.011581845581531525, + -0.018255623057484627, + -0.006726149469614029, + -0.06482242047786713, + -0.015023479238152504, + -0.0175523329526186, + 0.03513459116220474, + -0.001992032630369067, + 0.013055763207376003, + 0.01210557296872139, + 0.02133812941610813, + 0.0016329055652022362, + 0.015322752296924591, + -0.015891369432210922, + -0.009524347260594368, + -0.0044180103577673435, + 0.022729746997356415, + -0.0051063369028270245, + 0.015741733834147453, + -0.01619064249098301, + -0.005274677649140358, + 0.011896082200109959, + -0.002061239443719387, + 0.017851604148745537, + 0.027458252385258675, + 0.01370668038725853, + 0.005398127716034651, + 0.005869481712579727, + 0.04079084098339081, + -0.029119214043021202, + 0.011192791163921356, + -0.025782326236367226, + 0.007261098828166723, + 0.006520399358123541, + -0.005409350618720055, + -0.024315889924764633, + 0.0014374431921169162, + 0.025363344699144363, + 0.01054187398403883, + 0.007601521443575621, + -0.004339451435953379, + 0.011267609894275665, + -0.00284682959318161, + 0.0064942133612930775, + 0.022250911220908165, + 0.00457138754427433, + -0.005080150440335274, + 0.0021061301231384277, + -0.022894347086548805, + 0.019856730476021767, + 0.0012111184187233448, + -0.02108374796807766, + 0.010758846066892147, + 0.050636906176805496, + 0.005790922790765762, + 0.016714369878172874, + -0.02133812941610813, + 0.012000827118754387, + 0.006954344920814037, + 0.022146165370941162, + -0.00034580001374706626, + -0.00021428379113785923, + 0.0012952887918800116, + 0.06518155336380005, + 0.0009745060815475881, + -2.840750676114112e-5, + 0.003909246996045113, + -0.0182705856859684, + 0.011604291386902332, + 0.013601935468614101, + 0.02516881749033928, + 0.020485201850533485, + -0.01683407835662365, + -0.01114041917026043, + -0.014574570581316948, + 0.00308811804279685, + 0.056562501937150955, + -0.0016572214663028717, + 0.01467931643128395, + 0.009404637850821018, + 0.016579696908593178, + 0.007470589596778154, + -0.0007481812499463558, + -0.00408506952226162, + -0.006524140480905771, + 0.014275298453867435, + -0.0077436757273972034, + -0.0027271206490695477, + -0.023148728534579277, + 0.008087838999927044, + -0.009404637850821018, + 0.02373230829834938, + 0.0026354684960097075, + 0.027967015281319618, + -0.0049754055216908455, + 0.007706266827881336, + 0.026171380653977394, + -0.006034081801772118, + 0.03405721113085747, + 0.023702381178736687, + -0.0025064072106033564, + -0.012113054282963276, + 0.00539438659325242, + -0.008110284805297852, + -0.023777199909090996, + 0.015816550701856613, + -0.024510417133569717, + -0.0020780733320862055, + 0.019288113340735435, + 0.013676753267645836, + 0.004376860335469246, + -0.007305989973247051, + -0.014746651984751225, + -0.022804563865065575, + 0.007990575395524502, + -0.03148346766829491, + -0.0009370970074087381, + -0.00805791188031435, + 0.013452298939228058, + -0.00021358235972002149, + -0.02741336077451706, + -0.004275855608284473, + -0.023672454059123993, + 0.0007285414612852037, + 0.015060888603329659, + -0.005794663913547993, + -0.02445056289434433, + -0.02108374796807766, + 0.0034958769101649523, + -0.011581845581531525, + -0.009846065193414688, + -0.0008641493623144925, + 0.025064071640372276, + -0.0005368200363591313, + -0.010601728223264217, + 0.0035089701414108276, + -0.0022015233989804983, + 0.0008636817219667137, + 0.0018732588505372405, + 0.03693022578954697, + 0.011626736260950565, + 0.022265873849391937, + -0.036271825432777405, + -0.020335566252470016, + -0.005304605234414339, + -0.013818907551467419, + 0.02926884964108467, + -0.0052185640670359135, + -0.0034154474269598722, + 0.01651984266936779, + -0.009748801589012146, + -0.0009698299691081047, + -0.01828555017709732, + -0.004025215283036232, + -0.0005807756679132581, + 0.028116650879383087, + -0.004698578268289566, + -0.02998710423707962, + -0.00741447601467371, + -0.006595217622816563, + 0.0031685475260019302, + 0.020949074998497963, + 0.0003455662226770073, + 0.0006387597532011569, + 0.006572772283107042, + 0.006142567843198776, + -0.006651331204921007, + 0.009269965812563896, + -0.021607475355267525, + -0.017746858298778534, + 0.007515480741858482, + -0.02316369116306305, + -0.010115410201251507, + -0.015255415812134743, + 0.0036904041189700365, + -0.02820643223822117, + -0.0282962154597044, + 0.030241485685110092, + -0.004923032596707344, + -0.012891163118183613, + -0.017357805743813515, + 0.027129052206873894, + -0.0006827153847552836, + -0.015008515678346157, + 0.00741447601467371, + -0.009202629327774048, + 0.045728836208581924, + 0.01318295393139124, + 0.013759053312242031, + 0.0066550723277032375, + 0.010294973850250244, + -0.01578662358224392, + -0.00440678745508194, + 0.004855696111917496, + 0.031393684446811676, + -0.030031995847821236, + 0.0012242115335538983, + 0.004653687588870525, + -0.0034696904476732016, + 0.019542494788765907, + 0.014155589044094086, + -0.027952050790190697, + 0.00392795167863369, + -0.03172288462519646, + -0.004365637432783842, + 0.009471974335610867, + 0.006901971995830536, + 0.01025756448507309, + -0.0031909930985420942, + -0.03495502844452858, + 0.007186281029134989, + -0.008671420626342297, + 0.022864418104290962, + 0.011095527559518814, + 0.0019228258170187473, + 0.004822028335183859, + -0.022415509447455406, + 0.0031442316249012947, + -0.0008477828814648092, + 0.016938824206590652, + 0.0077287121675908566, + -0.013369998894631863, + -0.015352679416537285, + -0.0012522683246061206, + 0.0029889841098338366, + -0.0182705856859684, + -0.026410797610878944, + 0.008469412103295326, + -0.01542749721556902, + -0.011940972879529, + -0.04082076996564865, + -0.013579489663243294, + 0.020964037626981735, + -0.02012607641518116, + -0.004836991894990206, + -0.016130788251757622, + 0.0004531172744464129, + 0.0010222026612609625, + -0.0056487685069441795, + 0.035314153879880905, + -0.01771693117916584, + 0.03791782632470131, + -0.015831515192985535, + -0.032500993460416794, + -0.015015997923910618, + -0.011103009805083275, + 0.014619461260735989, + 0.022954201325774193, + 0.022340692579746246, + -0.027533069252967834, + -0.015622024424374104, + 0.019542494788765907, + -0.0008407686837017536, + 0.005521577782928944, + -0.009038029238581657, + -0.010010665282607079, + 0.02919403277337551, + 0.01868956722319126, + 0.005461723078042269, + 0.00583207281306386, + -0.006789744831621647, + 0.021263310685753822, + -0.0009076373535208404, + 0.01836036704480648, + 0.00306567270308733, + 0.007766121532768011, + -0.010669064708054066, + 0.03321924805641174, + -0.018719494342803955, + 0.012891163118183613, + 0.004986627958714962, + -0.004721023607999086, + -0.010452091693878174, + 0.005476686637848616, + 0.01708845980465412, + -0.01057928241789341, + 0.007623966783285141, + 0.01716327853500843, + 0.0005541217396967113, + 0.012928571552038193, + -0.013691716827452183, + 0.0026635252870619297, + -0.015622024424374104, + -0.01258440874516964, + 0.00771374860778451, + -0.0224454365670681, + 0.025722471997141838, + 0.005398127716034651, + 0.018569858744740486, + 0.008117766119539738, + 0.002515759551897645, + 0.026874670758843422, + 0.009112847968935966, + 0.016849040985107422, + -0.0012214059242978692, + 0.020350530743598938, + -0.01821073144674301, + 0.007347139995545149, + -0.018420223146677017, + -0.013295181095600128, + -0.0010147207649424672, + 0.01795634999871254, + 0.008753720670938492, + 0.003991547040641308, + 0.001003498095087707, + -0.02446552738547325, + 0.0026317276060581207, + -0.01197838131338358, + -0.0002201289462391287, + -0.0067822630517184734, + -0.003494006348773837, + 0.0012494627153500915, + -0.011521991342306137, + 0.017133351415395737, + -0.00962909311056137, + -0.01675925962626934, + -0.00691319489851594, + 0.010167783126235008, + -0.0009988219244405627, + 0.011417245492339134, + 0.004189814906567335, + -0.002222098410129547, + -0.008095321245491505, + 0.0016244885046035051, + -0.00957672018557787, + 0.0059368181973695755, + 0.01547238789498806, + -0.034446265548467636, + -0.01170903630554676, + 0.005689918529242277, + 0.0049791461788117886, + 0.020574985072016716, + -0.018809275701642036, + -0.011589327827095985, + 0.013676753267645836, + -0.013250289484858513, + -0.0016347760101780295, + 0.026754962280392647, + -0.0031479725148528814, + -0.002222098410129547, + -0.001158745726570487, + -0.009067956358194351, + -0.007564112544059753, + 0.011095527559518814, + 0.018779348582029343, + -0.015816550701856613, + 0.005431795958429575, + 0.014552125707268715, + 0.016774224117398262, + 0.0020743324421346188, + 0.006367022637277842, + 0.024181218817830086, + 0.00024105464399326593, + -0.0012457218253985047, + -0.002248284639790654, + 0.021742146462202072, + 0.0024652571883052588, + 0.04402298480272293, + 0.02124834805727005, + -0.007766121532768011, + 0.018495040014386177, + -0.020395420491695404, + -0.00833473913371563, + -0.010601728223264217, + -0.02180200070142746, + 0.0015973669942468405, + -0.009449529461562634, + -0.014843915589153767, + 0.015457424335181713, + 0.02156258374452591, + -0.02358267270028591, + -0.02397172711789608, + -0.007107721641659737, + 0.00918018352240324, + -0.0021472801454365253, + -0.002556909341365099, + -0.008708829991519451, + -0.02412136271595955, + -0.007623966783285141, + -0.007691303268074989, + -0.009950811043381691, + -0.007983094081282616, + -0.010392237454652786, + 0.006726149469614029, + 0.014058325439691544, + -0.041987933218479156, + -0.03594262897968292, + 0.001515067066065967, + -0.009861028753221035, + 0.018569858744740486, + -0.014582052826881409, + -0.0033032202627509832, + -0.0027420842088758945, + -0.002738343318924308, + -0.006853340193629265, + 0.007833457551896572, + -0.005977968219667673, + -0.03501488268375397, + 0.005783441010862589, + -0.016893932595849037, + 0.009591683745384216, + -0.03342873975634575, + 0.006875785533338785, + -0.020979002118110657, + -0.0015861442079767585, + 0.003658606205135584, + -0.004204778466373682, + 0.01178385503590107, + 0.02846081554889679, + -0.01714831404387951, + 0.008626529946923256, + -0.006011636462062597, + -0.014312706887722015, + -0.023672454059123993, + 0.02133812941610813, + 0.032441139221191406, + -0.028745124116539955, + -0.004679873585700989, + -0.01780671440064907, + 0.02485458180308342, + 0.029568122699856758, + 0.019422784447669983, + 0.0020780733320862055, + -0.020799439400434494, + 0.007002976257354021, + 0.004421751014888287, + -0.0007491164724342525, + -0.006875785533338785, + 0.012000827118754387, + -0.011170346289873123, + -0.019497603178024292, + -0.019826803356409073, + 0.05249239504337311, + 0.0051549687050282955, + -0.000670089852064848, + -0.0031760293059051037, + 0.0060453047044575214, + 0.04049156978726387, + -0.017178241163492203, + 0.0410601869225502, + -0.050636906176805496, + 0.015741733834147453, + -0.0066064405255019665, + 4.1822164348559454e-5, + 0.002396050374954939, + -0.010803737677633762, + 0.010347346775233746, + -0.010482018813490868, + -0.03522437438368797, + 0.015262897126376629, + 0.0011194661492481828, + 0.019467676058411598, + 0.029164105653762817, + -0.013721643947064877, + -0.021353092044591904, + 0.035882771015167236, + -0.0043057831935584545, + 0.007668857928365469, + 0.0019359189318493009, + -0.0018264974933117628, + -0.0002263248316012323, + -0.03181266784667969, + 0.006168754305690527, + 0.006516658701002598, + -0.016370205208659172, + -0.008551711216568947, + 0.012442254461348057, + 0.006707444787025452, + 0.0024409412872046232, + 0.03196230158209801, + -0.023268437013030052, + -0.02582721598446369, + 0.007620226126164198, + -0.019617311656475067, + 0.009913401678204536, + -0.025064071640372276, + -0.01081870123744011, + 0.023627564311027527, + -0.010392237454652786, + 0.0029422228690236807, + -0.012165427207946777, + -0.004526496399194002, + -0.024151289835572243, + 0.02919403277337551, + -0.010407201014459133, + -0.028834905475378036, + 0.009599165059626102, + 0.01852496713399887, + -0.00773619394749403, + 0.02820643223822117, + 0.004216001369059086, + -0.005764736328274012, + 0.027473215013742447, + -0.009681465104222298, + 0.013998471200466156, + -0.0075678532011806965, + 0.017432622611522675, + 0.0017778656911104918, + -0.027383433654904366, + -0.023926835507154465, + -0.016564732417464256, + 0.0248396173119545, + -0.004717282950878143, + -0.0012784546706825495, + -0.021742146462202072, + -0.02157754637300968, + -0.0012821955606341362, + 0.01628042384982109, + -0.009905919432640076, + -0.003533286042511463, + 0.020185930654406548, + -0.0037278130184859037, + -0.005413091275840998, + -0.01732787676155567, + 0.015756696462631226, + -0.00599293177947402, + -0.007691303268074989, + -0.01186615414917469, + 0.0010371662210673094, + -0.006527881603688002, + -0.005749772768467665, + 0.006135086063295603, + -0.006082713603973389, + 0.002981502329930663, + -0.015240452252328396, + -0.013459780253469944, + 0.002347418572753668, + 0.00723491283133626, + 0.014439897611737251, + 0.0054243141785264015, + 0.008192584849894047, + -0.0004290351935196668, + -0.005955522879958153, + -0.010392237454652786, + 0.002850570483133197, + -0.021472802385687828, + -0.004814546555280685, + -0.0067373719066381454, + 0.017672041431069374, + 0.013123098760843277, + -0.010893519036471844, + 0.0018573598936200142, + -0.010122892446815968, + -0.006961826700717211, + 0.01795634999871254, + -0.0193330030888319, + 0.015681879594922066, + -0.02180200070142746, + 0.08182109892368317, + 0.010930928401648998, + 0.011776372790336609, + -0.006572772283107042, + 0.006815931294113398, + 0.005241009406745434, + 0.00047790075768716633, + -0.00252511166036129, + 0.02446552738547325, + 0.0036417723167687654, + -0.005338273011147976, + 0.0013888113899156451, + 0.011963417753577232, + 0.006901971995830536, + -0.029448414221405983, + -0.0135495625436306, + 0.004287078510969877, + 0.008626529946923256, + 0.018135912716388702, + 0.02187681943178177, + 0.014694279991090298, + -0.019692130386829376, + -0.023283399641513824, + 0.00709649920463562, + -0.012599372304975986, + 0.025542907416820526, + 0.004504051059484482, + 0.009486937895417213, + 0.029044395312666893, + 0.01342985313385725, + 0.008289848454296589, + -0.0070067173801362514, + -0.020410384982824326, + -0.0036623470950871706, + 0.0004956700722686946, + 0.010212673805654049, + 0.011963417753577232, + 0.010609210468828678, + -0.010347346775233746, + 0.004691096488386393, + 0.007657635025680065, + -0.01819576881825924, + 0.04079084098339081, + 0.018165839836001396, + -0.0202906746417284, + 0.0023081391118466854, + 0.012247727252542973, + -0.008559193462133408, + 0.011005746200680733, + 0.01604100503027439, + -9.04247208382003e-5, + -0.026500578969717026, + 0.0018788701854646206, + 0.005386904813349247, + -0.002680359408259392, + -0.01322784461081028, + 0.0032471066806465387, + -0.004492828622460365, + -0.010923446156084538, + 0.0035183222498744726, + -0.02123338356614113, + 0.0014103216817602515, + -0.011245164088904858, + -0.031872522085905075, + -0.03525429964065552, + -0.016070934012532234, + -0.004028955940157175, + -0.0018498781137168407, + -0.019662203267216682, + -0.013609416782855988, + 0.012726563028991222, + -0.006363281514495611, + -0.00229504588060081, + -0.02404654584825039, + -0.0041299606673419476, + 0.01828555017709732, + 0.016864005476236343, + 0.025946926325559616, + 0.022625001147389412, + 0.019467676058411598, + 0.01925818622112274, + 0.011574364267289639, + 0.00472850538790226, + -0.023388145491480827, + 0.004698578268289566, + -0.009427083656191826, + 0.004444196820259094, + -0.01683407835662365, + 0.0226848553866148, + -0.018554894253611565, + -0.007653894368559122, + -0.007511739619076252, + -0.006037822458893061, + -0.0007528573623858392, + 0.006711185909807682, + 0.006729890126734972, + -0.0016974362079054117, + -0.019273148849606514, + 0.022505292668938637, + -0.002873016055673361, + 0.009516865015029907, + 0.0052671958692371845, + -0.010115410201251507, + 0.00424592848867178, + 0.012128017842769623, + 0.0014131272910162807, + 0.01740269549190998, + 0.01279389951378107, + -0.025557871907949448, + 0.004578869324177504, + -0.010414683260023594, + -0.006258536130189896, + 0.017507441341876984, + 0.013699199073016644, + -0.023687418550252914, + 0.011050636880099773, + -0.002579354913905263, + -0.005095114465802908, + -0.009801174513995647, + -0.016415096819400787, + -0.014544643461704254, + -0.008843502029776573, + -0.01278641726821661, + -0.01122271828353405, + 0.02428596280515194, + 0.0013588841538876295, + -0.009516865015029907, + -0.005173673387616873, + 0.010811218991875648, + 0.0025120184291154146, + 0.002167855156585574, + 0.0035089701414108276, + 0.029957177117466927, + -0.02902943268418312, + 0.002188430167734623, + -0.01106560043990612, + 0.00012906127085443586, + 0.01542749721556902, + 0.02021585777401924, + -0.014537161216139793, + 0.019362930208444595, + -0.0045676464214921, + 0.0006093000993132591, + 0.015053406357765198, + 0.006853340193629265, + 0.010197710245847702, + -0.02133812941610813, + -0.029283814132213593, + 0.004960441496223211, + -0.00725361704826355, + 0.020829366520047188, + -0.04117989540100098, + 0.002311880001798272, + -0.015285342931747437, + -0.000517647888045758, + 0.02726372517645359, + -0.0066101811826229095, + 0.0081776212900877, + -0.030046958476305008, + 0.006142567843198776, + 0.018809275701642036, + -0.0175523329526186, + 0.009606647305190563, + -0.004575128201395273, + -0.0192282572388649, + -0.0026018002536147833, + 0.0016562861856073141, + 0.022340692579746246, + 0.0028861090540885925, + -0.009075438603758812, + -0.010766328312456608, + 0.001369171659462154, + 0.0038755787536501884, + -0.019781911745667458, + -0.0008244022028520703, + -0.01644502393901348, + 0.0021528915967792273, + -0.0005125041352584958, + -0.006527881603688002, + 0.014058325439691544, + -0.013878761790692806, + -0.009673983789980412, + 0.020081184804439545, + -0.014709243550896645, + -0.00284682959318161, + -0.013407408259809017, + 0.017058532685041428, + -0.010519428178668022, + -0.016250496730208397, + 0.0029459637589752674, + -0.006756076589226723, + 0.005607618484646082, + 0.005068928003311157, + 0.0016553510213270783, + -0.009703910909593105, + -0.013340071775019169, + 0.011155382730066776, + 0.019123513251543045, + -0.0012691024458035827, + -0.007309730630367994, + -0.022505292668938637, + -0.0027944569010287523, + 0.006658812984824181, + 0.0077287121675908566, + 0.007320953533053398, + -0.02284945547580719, + -0.023627564311027527, + -0.01226269081234932, + -0.012913607992231846, + 0.014664352871477604, + -0.005615100264549255, + -0.029313741251826286, + -0.0007149807061068714, + 0.002757048001512885, + -0.012816344387829304, + 0.01692385971546173, + 0.0021809483878314495, + 0.011334945447742939, + -0.0038493925239890814, + -0.009127811528742313, + 0.008439484052360058, + -0.007017940282821655, + 0.0011652923421934247, + -0.014454862102866173, + 0.015337715856730938, + -0.007650153245776892, + 0.02518378011882305, + 0.016953786835074425, + -0.0011568752815946937, + 0.009965774603188038, + 0.019856730476021767, + 0.002648561727255583, + -0.0008505885489284992, + 0.013938616961240768, + 0.0034098359756171703, + 0.03268055617809296, + 0.006041563581675291, + -0.005689918529242277, + -0.005963004659861326, + 0.003494006348773837, + -0.018225695937871933, + -0.012951017357409, + -0.010661582462489605, + -0.013025835156440735, + 0.002268859650939703, + 0.0023848277051001787, + -0.0029066840652376413, + 0.012591890059411526, + 0.009322338737547398, + -2.754534398263786e-5, + -0.00882105715572834, + -0.016474951058626175, + -0.011521991342306137, + 0.015442460775375366, + 0.013317625969648361, + -0.014424934051930904, + -0.0056487685069441795, + 0.0028861090540885925, + -0.013856316916644573, + -0.010272528976202011, + -0.00629220437258482, + -0.011738963425159454, + -0.012367435730993748, + 0.0010091094300150871, + 0.01306324452161789, + 0.028505705296993256, + -0.022325728088617325, + 0.013961061835289001, + 0.021682292222976685, + 0.00833473913371563, + 0.014567089267075062, + -0.0026523026172071695, + 0.003060061251744628, + -0.0027738818898797035, + -0.0067186676897108555, + -0.0033406291622668505, + 0.017342841252684593, + -0.011911045759916306, + 0.01690889708697796, + -0.004522755742073059, + 0.009008102118968964, + -0.007803530432283878, + 0.008035467006266117, + -0.011911045759916306, + 0.007878348231315613, + -0.029568122699856758, + 0.027562996372580528, + 0.02075454778969288, + 0.0034060950856655836, + 0.01446982566267252, + -0.0013813296100124717, + -0.01090848259627819, + 0.006741113029420376, + -0.014911252073943615, + 0.0075005171820521355, + 0.023298364132642746, + 0.002414755057543516, + 0.01644502393901348, + 0.02123338356614113, + 0.012696635909378529, + 0.003241495229303837, + -0.003712849458679557, + -0.020425347611308098, + -0.007137649226933718, + 0.004724764730781317, + 0.0018975746352225542, + 0.03968353196978569, + 0.01547238789498806, + -0.019677165895700455, + 0.010773809626698494, + 0.013639343902468681, + -0.005656250286847353, + 0.013362516649067402, + -0.0004989433800801635, + -0.01279389951378107, + 0.010803737677633762, + 0.003879319876432419, + 0.005162450484931469, + -0.019273148849606514, + 0.01683407835662365, + 0.00043675079359672964, + -0.0017694486305117607, + 0.004739728290587664, + 0.009659020230174065, + 0.011813782155513763, + -0.007507998961955309, + 0.005368200596421957, + 0.005723586771637201, + 0.006868303753435612, + -0.027562996372580528, + 0.03426670283079147, + 0.010160300880670547, + -0.03094477578997612, + 0.0033462406136095524, + -0.011731482110917568, + 0.0033144429326057434, + -0.010594246909022331, + -0.020320601761341095, + -0.012359954416751862, + -0.005948041100054979, + -0.0012775195064023137, + 0.003364945063367486, + -0.009157738648355007, + -0.002540075220167637, + -0.0061612725257873535, + 0.03609226271510124, + 0.005884445738047361, + -0.00370910856872797, + 0.008297329768538475, + 0.007309730630367994, + 0.0011942842975258827, + 0.00353702693246305, + 0.013093171641230583, + -0.0006541909533552825, + 0.01069899182766676, + 0.004533978179097176, + 0.020874256268143654, + 0.019976438954472542, + 0.009008102118968964, + 0.005009073298424482, + -0.013788980431854725, + 0.007642671465873718, + -1.2640171917155385e-5, + -0.00503151910379529, + 0.004923032596707344, + 0.017417659983038902, + 0.010998263955116272, + 0.017896495759487152, + -0.016295388340950012, + 9.451633377466351e-5, + 0.00909788440912962, + -0.02308887243270874, + -0.02950826846063137, + -0.0205300934612751, + -0.023058945313096046, + 0.007721230387687683, + 0.00019207215518690646, + 0.015921296551823616, + -0.0119933458045125, + 0.00022141488443594426, + 0.025557871907949448, + 0.002119223354384303, + -0.001426220522262156, + -0.022086311131715775, + -0.0006640108767896891, + 0.007582816760987043, + 0.018016204237937927, + 0.014447379857301712, + 0.00865645706653595, + -0.004691096488386393, + -0.02235565520823002, + 0.018569858744740486, + 0.017028605565428734, + -0.010549355298280716, + 0.005181155167520046, + 0.009030547924339771, + -0.013130581006407738, + 0.011013227514922619, + 0.009389674291014671, + 0.002113612135872245, + -0.0029029431752860546, + -0.012883680872619152, + 0.006838376633822918, + -0.0029571864288300276, + -0.0029777614399790764, + -0.019946511834859848, + 0.0004867854295298457, + 0.004331969190388918, + 0.0341469906270504, + -0.01732787676155567, + 0.004717282950878143, + 0.0030263932421803474, + -0.021427910774946213, + -0.028924686834216118, + 0.011559400707483292, + 0.026575397700071335, + 0.0013841353356838226, + -0.0185100045055151, + 0.010594246909022331, + -0.02213120087981224, + 0.011851190589368343, + 0.002749565988779068, + -0.003821335732936859, + -0.008035467006266117, + 0.002366123255342245, + -0.012479662895202637, + 0.0355834998190403, + 0.009329820051789284, + -0.0005948040634393692, + -0.0028711454942822456, + -0.007489294279366732, + -0.008850984275341034, + -0.010878555476665497, + -0.019512567669153214, + -0.019183367490768433, + -0.008402075618505478, + 0.02838599681854248, + -0.00022574031027033925, + 0.006800967734307051, + 0.01070647407323122, + -0.01940782181918621, + -0.0386660061776638, + 0.00014764889783691615, + 0.008042948320508003, + 0.005457982420921326, + 0.021203456446528435, + 0.0077736033126711845, + 0.014866361394524574, + -0.004070105962455273, + -0.008955729193985462, + -0.008678902871906757, + -0.00491180969402194, + -0.004477864596992731, + 0.012891163118183613, + -0.025602761656045914, + -0.01010044664144516, + 0.004833250772207975, + -0.0017058532685041428, + 0.03196230158209801, + -0.022864418104290962, + -0.0015506056370213628, + -0.0018592304550111294, + 0.0023567709140479565, + 0.020410384982824326, + -0.011379837058484554, + 0.010205192491412163, + 0.03543386235833168, + 0.004354414995759726, + -0.00785590335726738, + 0.01122271828353405, + -0.008027984760701656, + 0.01692385971546173, + 0.03591269999742508, + 0.00583581393584609, + 0.022580109536647797, + 0.01708845980465412, + 0.010654101148247719, + -0.0013476614840328693, + -0.013467262499034405, + -0.0001857593742897734, + -0.0035837881732732058, + 0.0067822630517184734, + -0.010534391738474369, + 0.006849599536508322, + 0.017911458387970924, + -0.029927249997854233, + 0.011521991342306137, + 0.007425698917359114, + -0.0022108755074441433, + -0.003243365790694952, + 0.020904183387756348, + 0.010721437633037567, + 0.0051998598501086235, + 0.021293237805366516, + 0.0012344990391284227, + -0.004028955940157175, + 0.0023455482441931963, + 0.009673983789980412, + 0.017133351415395737, + -0.008387112058699131, + 0.020081184804439545, + -0.004627501126378775, + 0.004952959716320038, + 0.004620019346475601, + 0.0175523329526186, + 0.02533341757953167, + -0.009681465104222298, + 0.011477100662887096, + 0.005540281999856234, + 0.002749565988779068, + 0.006348317954689264, + 0.013369998894631863, + -0.0023511594627052546, + 0.010354828089475632, + 0.01668444089591503, + 0.026350943371653557, + -0.001072704908438027, + 0.0002698128519114107, + 0.004941737279295921, + 0.01471672486513853, + -0.013646826148033142, + -0.023058945313096046, + -0.007399512454867363, + 0.015741733834147453, + 0.0030413568019866943, + -0.024480490013957024, + 0.01578662358224392, + 0.004021474160254002, + 0.004264633171260357, + -0.007085276301950216, + -0.002841218374669552, + 0.0009459816501475871, + -0.008731274865567684, + -0.012172908522188663, + 0.015816550701856613, + 0.02428596280515194, + 0.024824654683470726, + 0.002081814222037792, + 0.021023893728852272, + -0.01054187398403883, + 0.010287492536008358, + 0.01981183886528015, + 0.0011363002704456449, + -0.004171110223978758, + -0.006030340678989887, + 0.012157944962382317, + 0.008559193462133408, + 0.004687355365604162, + -0.008948247879743576, + -0.00034696905640885234, + -0.008963211439549923, + 0.0011709036771208048, + 0.006486731581389904, + -0.0027158979792147875, + 0.01370668038725853, + -0.01435011625289917, + -0.0031030818354338408, + 0.005270936992019415, + 0.008746238425374031, + -0.0018339792732149363, + -0.01915344037115574, + -0.014522197656333447, + -0.003172288415953517, + 0.00012906127085443586, + -0.019991403445601463, + -0.0037483880296349525, + 0.013302662409842014, + -0.001003498095087707, + -0.003097470384091139, + 0.010878555476665497, + -0.01451471634209156, + -0.011297537013888359, + -0.004137442447245121, + -0.01375157106667757, + -0.005914372857660055, + 0.0008234669803641737, + -0.02989732287824154, + -0.01279389951378107, + 0.012689153663814068, + -0.0038288175128400326, + 0.0016927600372582674, + 0.0077436757273972034, + -0.036451391875743866, + -0.005861999932676554, + -0.0185100045055151, + 0.015008515678346157, + 0.025079036131501198, + 0.016624586656689644, + 0.013287698850035667, + -0.01690889708697796, + 0.024151289835572243, + -0.006007895339280367, + -0.024315889924764633, + 0.004384342115372419, + 0.015681879594922066, + 0.00929989293217659, + 0.0028019386809319258, + -0.0006523205083794892, + -0.019916584715247154, + -0.009546793065965176, + -0.01803116872906685, + 0.010676546022295952, + -0.014245371334254742, + 0.0028580522630363703, + 0.003995287697762251, + -0.00369788589887321, + 0.005428054835647345, + -0.011701554991304874, + -0.003578176721930504, + -0.016864005476236343, + -0.01602604240179062, + 0.000813647115137428, + 0.014978588558733463, + -0.021682292222976685, + 0.010811218991875648, + -0.009554274380207062, + 0.021682292222976685, + 0.00030324721592478454, + 0.009479456581175327, + -0.014215443283319473, + -0.0032153089996427298, + 0.027922123670578003, + 0.013586971908807755, + 0.008693866431713104, + -0.0015767919830977917, + -0.02958308719098568, + -0.0025512981228530407, + 0.005252232309430838, + 0.020560020580887794, + -0.004788360092788935, + -0.0013046410167589784, + 0.00037362301372922957, + -0.015487351454794407, + -0.03157324716448784, + 0.0036380314268171787, + 0.0012700376100838184, + -0.03181266784667969, + 0.00011906603322131559, + 0.013033317402005196, + -0.02446552738547325, + 0.009434565901756287, + -0.0005050223553553224, + -0.005607618484646082, + 0.0017086588777601719, + 0.011170346289873123, + -0.017118386924266815, + 0.014050844125449657, + 0.00377831538207829, + -0.004219742026180029, + 0.0029609273187816143, + -0.006995494477450848, + 0.03441633656620979, + -0.020305639132857323, + 0.010631655342876911, + -0.01241980865597725, + -0.025378307327628136, + 0.01666947826743126, + -0.014843915589153767, + 0.042616404592990875, + -0.0001917214394779876, + -0.019677165895700455, + -0.015771660953760147, + -0.018255623057484627, + 0.0030525794718414545, + -0.021772073581814766, + -0.014544643461704254, + -0.008387112058699131, + -0.002953445538878441, + 0.0007229301263578236, + -0.009950811043381691, + 0.004908069036900997, + -0.006890749093145132, + -0.035792991518974304, + 0.010669064708054066, + 0.013145544566214085, + -0.00377831538207829, + 0.0009356941445730627, + -0.00028547790134325624, + 0.011656663380563259, + -0.023358218371868134, + -0.013691716827452183, + -0.003825076622888446, + 0.010212673805654049, + -0.021113675087690353, + -1.3736140317632817e-5, + -0.0005929336184635758, + 0.01058676466345787, + -0.009172702208161354, + -0.0048818825744092464, + -0.012816344387829304, + -0.0026616547256708145, + 0.005502873100340366, + -0.015442460775375366, + -0.037079863250255585, + -0.0072798035107553005, + -0.007246135268360376, + 0.0002431589091429487, + -0.014769097790122032, + -0.012232763692736626, + 0.004949219059199095, + -0.01150702778249979, + 0.007133908104151487, + -0.0023231026716530323, + -0.006583995185792446, + 0.0081776212900877, + -0.016654513776302338, + 0.018180804327130318, + 0.010190228931605816, + -0.00047790075768716633, + -0.00934478361159563, + 0.00741821713745594, + 0.006741113029420376, + 0.01161925494670868, + -0.0026878411881625652, + -0.01210557296872139, + -0.027039270848035812, + 0.0003516451979521662, + 0.015030961483716965, + -0.019063659012317657, + 0.006587735842913389, + 0.009284929372370243, + 0.0067747812718153, + -0.011080563999712467, + 0.01659465953707695, + -0.004365637432783842, + -0.026725033298134804, + -0.005319568794220686, + 0.020784474909305573, + 0.006243572570383549, + -0.004346933215856552, + 0.016325315460562706, + -0.004578869324177504, + 0.011701554991304874, + 0.00929241068661213, + -0.016130788251757622, + -0.016549769788980484, + 0.00013736140681430697, + 0.018809275701642036, + -0.026111526414752007, + 0.019437748938798904, + -0.009868510998785496, + -0.034595899283885956, + -0.011626736260950565, + 0.010556837543845177, + 0.006744854152202606, + -0.013369998894631863, + 0.00994332879781723, + 0.004717282950878143, + -0.015562170185148716, + 0.025692544877529144, + -0.009000620804727077, + -0.013601935468614101, + -0.00251388899050653, + 0.009868510998785496, + -0.006666294764727354, + 0.0014009693404659629, + 0.014499752782285213, + -0.00771374860778451, + -0.004141183104366064, + 0.020829366520047188, + 0.029942212626338005, + -0.005910631734877825, + -0.011559400707483292, + 0.0051063369028270245, + 0.0018452020594850183, + 0.029223959892988205, + 0.013257771730422974, + -0.019976438954472542, + -0.011073082685470581, + 0.022969163954257965, + -0.016385169699788094, + -0.00037081731716170907, + -0.012763972394168377, + -0.02275967411696911, + -0.009352265857160091, + -0.014754134230315685, + 0.00837962981313467, + -0.011103009805083275, + 0.021128637716174126, + 0.02908928692340851, + 0.008888393640518188, + -0.009673983789980412, + -0.018315477296710014, + 0.007440662477165461, + -0.016819113865494728, + -0.0035837881732732058, + 0.012943536043167114, + 0.029807541519403458, + -0.000914651551283896, + 0.03438641130924225, + 0.016175677999854088, + 0.005398127716034651, + -0.0075678532011806965, + -0.0042683738283813, + 0.021622437983751297, + 0.007377067115157843, + 0.005207341630011797, + -0.005237268749624491, + -0.01279389951378107, + -0.004496569279581308, + 0.010392237454652786, + 0.009322338737547398, + -0.011731482110917568, + -0.009240038692951202, + -0.022011492401361465, + 0.032111939042806625, + -0.022654928267002106, + 0.020096147432923317, + 0.00025952537544071674, + -0.004234706051647663, + -0.003810113063082099, + -0.03118419460952282, + 0.027278687804937363, + 0.008648974820971489, + 0.0010081742657348514, + -0.0033275361638516188, + -0.001886351965367794, + 0.010594246909022331, + -0.00441052857786417, + 0.02437574416399002, + -0.015607060864567757, + -0.003965360578149557, + 0.00854422990232706, + -0.019677165895700455, + -0.03375793620944023, + 0.003404224757105112, + 0.0067747812718153, + -0.012449735775589943, + -0.008229993283748627, + -0.009816138073801994, + -0.005162450484931469, + 0.012644262984395027, + -0.0006186523823998868, + -0.0007949425489641726, + 0.014005952514708042, + 0.0037839266005903482, + -0.014155589044094086, + 0.010624174028635025, + 0.018465112894773483, + 0.006179977208375931, + -0.00785590335726738, + -0.01114041917026043, + 0.018973875790834427, + 0.012285135686397552, + 0.018150877207517624, + 0.0009651537984609604, + -0.005390645936131477, + 0.005678695626556873, + -0.013661789707839489, + -0.03166303038597107, + -0.00454894220456481, + 0.008671420626342297, + 0.008162657730281353, + 0.01547238789498806, + 0.007238653488457203, + 0.007938203401863575, + -0.016579696908593178, + -0.02540823444724083, + -0.0032171793282032013, + -0.011447173543274403, + 0.020380457863211632, + 0.01350467186421156, + -0.00962161086499691, + -0.014806507155299187, + 0.03184259310364723, + 0.016549769788980484, + 0.004691096488386393, + -0.014140625484287739, + -0.0037278130184859037, + 0.008761201985180378, + -0.012711599469184875, + 0.017342841252684593, + -0.009232556447386742, + 0.02349289134144783, + 0.0027458250988274813, + 0.005484168417751789, + 0.00213418691419065, + -0.006251054350286722, + 0.0037184609100222588, + 0.009636574424803257, + -0.011290054768323898, + 0.0054879095405340195, + 0.0003537494339980185, + 0.024809690192341805, + -0.016489915549755096, + -0.0006457739509642124, + 0.019362930208444595, + -0.02133812941610813, + 0.008828538469970226, + 0.01628042384982109, + 0.020829366520047188, + 0.010534391738474369, + 0.02246040105819702, + -0.013923653401434422, + -0.00521482340991497, + -0.02365749143064022, + 0.0355834998190403, + -0.0007444403599947691, + 0.006146308965981007, + 0.015936261042952538, + -0.0026018002536147833, + 0.019841765984892845, + -0.005035259760916233, + -0.008940765634179115, + -0.029328705742955208, + -0.006849599536508322, + -0.030645504593849182, + -0.0012934183469042182, + 0.0022501552011817694, + 0.02180200070142746, + -0.013467262499034405, + 0.012561962939798832, + 0.002541945781558752, + 0.0006719602970406413, + -0.010953373275697231, + 0.0025064072106033564, + 0.025767361745238304, + -0.0038980243261903524, + -0.006729890126734972, + -0.01258440874516964, + -0.030645504593849182, + 0.02958308719098568, + 0.012404845096170902, + 0.012524554505944252, + 0.01446982566267252, + -0.00021895991812925786, + -0.005319568794220686, + -0.0101453373208642, + -0.002136057475581765, + -0.009172702208161354, + 0.016579696908593178, + -0.015352679416537285, + 0.02340310998260975, + -0.009112847968935966, + -0.00613134540617466, + 0.001262555830180645, + 0.008402075618505478, + -0.015337715856730938, + -0.011768891476094723, + -0.0025756140239536762, + 0.0075790761038661, + -0.00260554114356637, + -0.007051608059555292, + -0.012546999379992485, + -0.0062061636708676815, + 0.008476893417537212, + 0.0025924479123204947, + -0.002510148100554943, + -0.004762173630297184, + 0.007878348231315613, + -0.008349702693521976, + -0.0027907160110771656, + 0.021068783476948738, + -0.004507792182266712, + 0.005203600507229567, + -0.009681465104222298, + -0.007833457551896572, + -0.022265873849391937, + -0.013190435245633125, + -0.02284945547580719, + -0.0022819528821855783, + -0.004126219544559717, + 0.004395565018057823, + -0.008581639267504215, + 0.019766949117183685, + -0.013512153178453445, + 0.01118530984967947, + -0.008641493506729603, + -0.004679873585700989, + 0.009688947349786758, + 0.013257771730422974, + -0.0006939381128177047, + 0.001150328665971756, + 0.022176092490553856, + 0.02660532481968403, + 0.001975198509171605, + -0.019452711567282677, + 0.009359747171401978, + -0.018704531714320183, + 0.004653687588870525, + -0.008327256888151169, + 0.005959263537079096, + 7.651322084711865e-5, + -0.009838582947850227, + 0.02476479858160019, + 0.0036024926230311394, + 0.003712849458679557, + -0.0014047103468328714, + 0.005865741055458784, + -0.013190435245633125, + -0.0003502423351164907, + -0.016953786835074425, + 0.006438099779188633, + 0.02156258374452591, + -0.004335710313171148, + 0.005772218108177185, + 0.016295388340950012, + 0.005641286727041006, + 0.0020313120912760496, + -0.012599372304975986, + 0.016325315460562706, + 0.016893932595849037, + -0.012808863073587418, + -0.003413576865568757, + 0.013093171641230583, + -0.00045966386096552014, + -0.0041299606673419476, + 0.00016541819786652923, + -0.031064486131072044, + -0.009269965812563896, + 0.026829779148101807, + 0.004971664398908615, + -0.006572772283107042, + 0.003450985997915268, + -0.005918113514780998, + 0.019437748938798904, + 0.005734809208661318, + -0.0015403181314468384, + -0.005469204857945442, + 0.030495867133140564, + -0.009718874469399452, + 0.03070535883307457, + -0.006883267313241959, + -0.008027984760701656, + 0.001452406868338585, + -0.0050876326858997345, + 0.0014224796323105693, + -0.002837477484717965, + -0.019138475880026817, + -0.016250496730208397, + -0.009681465104222298, + -0.004885623697191477, + 0.009038029238581657, + -0.009105365723371506, + -0.00645306333899498, + -0.006228609010577202, + -0.007317212410271168, + -0.002590577583760023, + 0.0026784888468682766, + 0.008349702693521976, + 0.019751984626054764, + -0.010983300395309925, + 0.0205300934612751, + 0.004541459959000349, + -0.014372562058269978, + -0.016819113865494728, + 0.015098297968506813, + 0.0035931405145674944, + 0.02428596280515194, + 0.007324694190174341, + -0.010092965327203274, + -0.008402075618505478, + -0.013609416782855988, + 0.014619461260735989, + -0.00567495496943593, + 0.005323309451341629, + -0.000520453555509448, + 0.007051608059555292, + 0.0300768855959177, + 0.01634027808904648, + -0.006374504417181015, + 0.014245371334254742, + 0.016714369878172874, + -0.02067972905933857, + 0.0064493222162127495, + 0.0034640792291611433, + -0.02163740247488022, + 0.014634424820542336, + 0.014522197656333447, + 0.011626736260950565, + -0.010676546022295952, + 0.03420684486627579, + 0.002495184540748596, + 0.01166414562612772, + -0.010115410201251507, + 0.001000692369416356, + -0.016953786835074425, + 0.011948454193770885, + -0.024435600265860558, + -0.020979002118110657, + 0.01690889708697796, + -0.0037820562720298767, + -0.022729746997356415, + -0.007190021686255932, + -0.002055627992376685, + 0.002841218374669552, + 0.009606647305190563, + 0.0017208168283104897, + -0.0025382048916071653, + -0.0044180103577673435, + 0.00870134774595499, + -0.008641493506729603, + 0.007448144257068634, + 0.01418551616370678, + 0.006778521928936243, + -0.004623760003596544, + -0.0010708344634622335, + 0.0020949074532836676, + -0.0038980243261903524, + -0.0014804636593908072, + -0.018150877207517624, + 0.0060976771637797356, + 0.0064979540184140205, + -0.0032789043616503477, + -0.015891369432210922, + 0.025797288864850998, + 0.0018012463115155697, + -0.005173673387616873, + -0.003686662996187806, + -0.022819528356194496, + -0.008192584849894047, + -0.02220601961016655, + -0.022669890895485878, + -0.014125661924481392, + -0.008918320760130882, + 0.009539310820400715, + -0.028640378266572952, + -0.006999235600233078, + 0.004855696111917496, + 0.016654513776302338, + -0.001650674850679934, + 0.000805230054538697, + -0.0029422228690236807, + -0.002274471102282405, + -0.0019153440371155739, + 0.01907862164080143, + 0.007788566872477531, + -0.015502315014600754, + 0.003819465171545744, + 0.01747751422226429, + 0.0006518529262393713, + -0.004687355365604162, + 0.01022015605121851, + 0.0002068019675789401, + 0.012517072260379791, + 0.011626736260950565, + -0.001889157691039145, + -0.02492939867079258, + 0.02187681943178177, + -0.017821677029132843, + 0.01780671440064907, + -0.0007762380409985781, + 0.02501918002963066, + 0.014387525618076324, + 0.005360718816518784, + -0.009090402163565159, + 0.02445056289434433, + -0.000770626706071198, + 0.008147694170475006, + -0.00833473913371563, + -0.0038942834362387657, + 0.022580109536647797, + 0.016310350969433784, + 0.005869481712579727, + -0.009733838029205799, + 0.021607475355267525, + -0.0029571864288300276, + -0.0042683738283813, + 0.010669064708054066, + 0.031393684446811676, + 0.007848421111702919, + 0.01311561744660139, + -0.013609416782855988, + 0.006554067600518465, + -0.010452091693878174, + 0.015547206625342369, + -0.006883267313241959, + -0.0005891927285119891, + 0.007522962521761656, + -0.0075678532011806965, + -0.008357184939086437, + -0.03390757367014885, + -0.009172702208161354, + -0.006187458988279104, + 0.004765914753079414, + 0.01740269549190998, + 0.019198330119252205, + 0.013167990371584892, + 0.008648974820971489, + -0.005630063824355602, + -0.0030263932421803474, + -0.04016236960887909, + 0.004620019346475601, + -0.016549769788980484, + -0.014843915589153767, + 0.0033892609644681215, + -0.0046424646861851215, + 0.00010036150342784822, + 0.0016039134934544563, + 0.0014757874887436628, + 0.03480539098381996, + 0.002459645736962557, + -0.014282779768109322, + 0.0025494275614619255, + -0.008596602827310562, + -0.005057705100625753, + -0.01915344037115574, + -0.0016226180596277118, + -0.0036473835352808237, + 0.0015833385987207294, + -0.020979002118110657, + -0.025468090549111366, + 0.0017470031743869185, + -0.01387128047645092, + -0.008596602827310562, + -0.005113818682730198, + -0.012569445185363293, + 0.024241073057055473, + -0.006527881603688002, + 0.03519444540143013, + -0.021098710596561432, + 0.007249876391142607, + -0.012838790193200111, + 0.003841910744085908, + -0.008110284805297852, + -0.001564634032547474, + -0.00030465004965662956, + -0.0192282572388649, + 0.028475778177380562, + -0.0016244885046035051, + 0.0065428451634943485, + 0.013310144655406475, + 0.012569445185363293, + -0.006135086063295603, + 0.009008102118968964, + -0.005891927517950535, + 0.013669271022081375, + -0.01786656863987446, + -0.0011783854570239782, + 0.02132316492497921, + -0.0002369630237808451, + -0.014686797745525837, + -0.0019602349493652582, + -0.003174158977344632, + -0.0007958778296597302, + 0.012973463162779808, + 0.005304605234414339, + 0.02246040105819702, + 0.0019059916958212852, + 0.0036024926230311394, + -0.0061612725257873535, + 0.003595010843127966, + 0.011282573454082012, + -0.0016076544998213649, + -0.042855821549892426, + -0.006344576831907034, + 0.008409556932747364, + -0.0036305494140833616, + 0.02220601961016655, + -0.006853340193629265, + 0.009905919432640076, + -0.01692385971546173, + 0.010676546022295952, + 0.022669890895485878, + 0.0207695122808218, + 0.003841910744085908, + -0.01307072676718235, + -0.004403046797960997, + -0.0015889499336481094, + 0.01022015605121851, + 0.010122892446815968, + -0.0016665736911818385, + 0.04207771271467209, + 0.011791336350142956, + -0.0018573598936200142, + -0.007014199160039425, + 0.003942915238440037, + -0.018465112894773483, + 0.005645027384161949, + 0.0062248678877949715, + -0.024241073057055473, + 0.008282366208732128, + -0.005169932264834642, + -0.016804151237010956, + -0.001193349133245647, + -0.017447587102651596, + 0.007721230387687683, + -0.0038493925239890814, + 0.008192584849894047, + 0.008252439089119434, + 0.005663732066750526, + 0.00925500225275755, + -0.004937996156513691, + -0.001006303820759058, + -0.004365637432783842, + 0.0061612725257873535, + 0.05192377790808678, + 0.03423677384853363, + -0.013803943991661072, + -0.0034584677778184414, + -0.003965360578149557, + -0.03357837349176407, + 0.01307072676718235, + -0.005502873100340366, + -0.010773809626698494, + -0.01186615414917469, + 0.022265873849391937, + -0.00047462747897952795, + 0.008708829991519451, + 0.012038236483931541, + -0.009075438603758812, + 0.014088252559304237, + -0.005061446223407984, + 0.006127604283392429, + -0.008574157021939754, + 0.007840939797461033, + 0.0011138548143208027, + -0.0015665044775232673, + -0.012240245006978512, + 0.00615379074588418, + 0.024315889924764633, + -0.0025812252424657345, + 0.004941737279295921, + -0.006576512940227985, + -0.01123020052909851, + -0.005805886350572109, + 0.034835319966077805, + 3.954254862037487e-5, + -0.02783234231173992, + 0.006299686152487993, + -0.0041486648842692375, + 0.013377481140196323, + 0.015756696462631226, + 0.009546793065965176, + -0.0091352928429842, + -0.0029684090986847878, + -0.014335152693092823, + -0.018076058477163315, + 0.01166414562612772, + -0.022789601236581802, + -0.01580158807337284, + -0.0009534634882584214, + 0.018704531714320183, + -0.004122478887438774, + -0.00974132027477026, + -0.004586351104080677, + 0.007908275350928307, + 0.0058283316902816296, + -0.010826182551681995, + -0.0017647724598646164, + -0.011192791163921356, + 0.01644502393901348, + 0.006699963007122278, + -0.019916584715247154, + 0.004507792182266712, + -0.008581639267504215, + -0.008529266342520714, + 0.01081870123744011, + 0.017133351415395737, + 0.03839666023850441, + 0.0012578797759488225, + 0.033548448234796524, + 0.011080563999712467, + 0.007848421111702919, + 0.008394593372941017, + -0.010728918947279453, + 0.014387525618076324, + -0.02012607641518116, + 0.00505396444350481, + -0.0037708336021751165, + -0.004840732552111149, + -0.01988665759563446, + -0.004403046797960997, + -0.013467262499034405, + 0.005929336417466402, + 0.032590776681900024, + 0.014320189133286476, + -0.0004164096317254007, + -0.00914277508854866, + -0.00957672018557787, + -0.013310144655406475, + 0.007653894368559122, + -0.008768684230744839, + 0.010691509582102299, + 0.00898565724492073, + 0.0032770338002592325, + -0.013788980431854725, + -0.017103422433137894, + -0.01058676466345787, + 0.0008374953758902848, + 0.005499131977558136, + -0.018569858744740486, + -0.007586557883769274, + 0.025842180475592613, + 0.002104259794577956, + 0.0053756823763251305, + 0.002401661826297641, + -0.0027458250988274813, + -0.0054243141785264015, + -0.0031816407572478056, + -0.016534805297851562, + -0.039893023669719696, + 0.017986277118325233, + -0.007077794522047043, + -0.007683821488171816, + 0.006490472238510847, + -0.02540823444724083, + 0.029867395758628845, + 0.0037633515894412994, + 0.024390708655118942, + -0.002446552738547325, + 0.011649182066321373, + 0.0012980945175513625, + 0.019707094877958298, + 0.020141039043664932, + 0.006090195383876562, + -0.00475095072761178, + 0.009262483566999435, + 0.015622024424374104, + -0.006973049137741327, + 0.01482895202934742, + -0.000514842220582068, + -0.011409764178097248, + 0.024076472967863083, + -0.005278418771922588, + -0.02187681943178177, + 0.008731274865567684, + 0.008648974820971489, + -0.0077436757273972034, + 0.00725361704826355, + -0.022191055119037628, + 0.0009216657490469515, + 0.01580158807337284, + -0.02012607641518116, + 0.009733838029205799, + -0.01006303820759058, + -0.00691319489851594, + 0.02284945547580719, + 0.024091435596346855, + 0.00755663076415658, + 0.00039489942719228566, + -0.0017180112190544605, + 0.0017460680101066828, + 0.030765213072299957, + 0.019138475880026817, + 0.014746651984751225, + 0.0031591954175382853, + 0.0017142703291028738, + -0.012958499602973461, + 0.022325728088617325, + 1.3326978660188615e-5, + 0.006217386107891798, + -0.016385169699788094, + 0.007620226126164198, + 0.0038942834362387657, + 0.001230758149176836, + 0.007002976257354021, + -0.00394665589556098, + 0.026470651850104332, + 0.04117989540100098, + -0.004391823895275593, + -0.0038493925239890814, + -0.007208726368844509, + -0.002590577583760023, + -0.01885416731238365, + -0.007444403599947691, + 0.004956700839102268, + -0.0041935560293495655, + -0.018973875790834427, + 0.01167162787169218, + 0.006471768021583557, + 0.00033177161822095513, + 0.0036155858542770147, + -0.00845444854348898, + -0.0003717525687534362, + -0.0051512280479073524, + -0.0057123638689517975, + 0.008446966297924519, + 0.020305639132857323, + 0.0026897115167230368, + -0.010152819566428661, + 0.0024409412872046232, + -0.002369864145293832, + 0.012936053797602654, + 0.012546999379992485, + -0.006707444787025452, + 0.017926422879099846, + 0.014178034849464893, + -0.0016918248729780316, + -0.015906333923339844, + -0.005420573055744171, + 0.00299646588973701, + 0.018076058477163315, + 0.003162936307489872, + -0.03546379134058952, + 0.0026410797145217657, + 0.010302456095814705, + -0.011424727737903595, + -0.008327256888151169, + -0.01915344037115574 + ], + "a41d9aca-7986-4114-8fd6-07a67f82d394": [ + -0.02192206308245659, + -0.029960645362734795, + -0.0013554063625633717, + -0.01591521129012108, + -0.027649184688925743, + 0.0037174755707383156, + 0.009746410883963108, + 0.008870411664247513, + -0.00828886590898037, + 0.004575071390718222, + 0.0007738606072962284, + 0.06442642956972122, + 0.002852518344298005, + -0.03774894028902054, + -0.016401059925556183, + 0.02140676975250244, + 0.0015753263141959906, + 0.01997867040336132, + -0.0013185995630919933, + -0.010188091546297073, + 0.07190554589033127, + -0.020611746236681938, + -0.03948621451854706, + 0.034333277493715286, + -0.007342934142798185, + -0.018373899161815643, + 0.005083003547042608, + 0.00709632970392704, + -0.0552394762635231, + 0.005970044992864132, + 0.036836132407188416, + 0.0018688596319407225, + 0.012985399924218655, + -0.011476325802505016, + 0.02763446234166622, + -0.03833784535527229, + -0.007460715714842081, + 0.022407911717891693, + -0.01843279041349888, + -0.04178295284509659, + -0.038808971643447876, + -0.010335317812860012, + 0.005281759891659021, + -0.014133768156170845, + -0.0685487762093544, + 0.02140676975250244, + -0.005329608451575041, + -0.03665946051478386, + 0.03456884250044823, + 0.0027365772984921932, + 0.012455383315682411, + -0.05541615188121796, + -0.0026371991261839867, + 0.004722298122942448, + 0.026780545711517334, + 0.010026142001152039, + 0.013603752478957176, + 0.047436460852622986, + 0.003542643738910556, + -0.012992761097848415, + -0.020788418129086494, + 0.002558064879849553, + 0.005355373024940491, + 0.00933417584747076, + -0.025514395907521248, + -0.0249991025775671, + -0.013272492215037346, + -0.00921639520674944, + -0.06672316789627075, + -0.02454270049929619, + 0.0006178923067636788, + 0.04354967549443245, + -0.02882699854671955, + -0.004030332434922457, + -0.004118668381124735, + -0.024262968450784683, + 0.041194044053554535, + 0.0054841963574290276, + 0.01221982017159462, + 0.017858605831861496, + -0.004273256752640009, + 0.004210685379803181, + 0.011866476386785507, + 0.006886531598865986, + 0.06260081380605698, + 0.0033494087401777506, + -0.004424164071679115, + -0.03197764977812767, + 0.021421492099761963, + -0.0018127294024452567, + 0.009761134162545204, + 0.03315546363592148, + 0.013508054427802563, + 0.014200020581483841, + -0.002674005925655365, + -0.01965477131307125, + 0.008472899906337261, + 0.0026206362526863813, + -0.009407789446413517, + 0.02552911825478077, + 0.03763115778565407, + 0.018741965293884277, + -0.03875008225440979, + 0.02946007438004017, + -0.0065479096956551075, + -0.00824469793587923, + -0.002985022496432066, + -0.01591521129012108, + -0.007077926304191351, + 0.0445508174598217, + -0.0012183013604953885, + -0.0342743881046772, + 0.02770807594060898, + -0.005149255506694317, + -0.04725978896021843, + -0.01659245602786541, + 0.0248960442841053, + -0.025691067799925804, + -0.003086240729317069, + -0.04354967549443245, + -0.013228324241936207, + 0.008966109715402126, + 0.004159155767410994, + 0.03271378576755524, + 0.005417944397777319, + 0.0071441782638430595, + 0.004321105312556028, + 0.0092237563803792, + 0.011189233511686325, + 0.008266782388091087, + -0.0027568209916353226, + 0.006522145122289658, + 0.008090110495686531, + 0.018594739958643913, + 0.028959503397345543, + -0.002217602916061878, + 0.011660358868539333, + 0.04140016436576843, + -0.027678629383444786, + 0.0421362966299057, + -0.031506527215242386, + -0.042283523827791214, + -0.017196085304021835, + 0.010438377037644386, + 0.0014096961822360754, + -0.013272492215037346, + -0.05267773196101189, + 0.0078030177392065525, + -0.0251021608710289, + 0.02072952687740326, + -0.055622268468141556, + -0.01856529340147972, + 0.01591521129012108, + 0.03044649213552475, + 0.00010254113294649869, + -0.011365905404090881, + -0.0008088269969448447, + 0.02402740716934204, + 0.017093027010560036, + 0.020611746236681938, + 0.02140676975250244, + -0.0669587254524231, + 0.022025123238563538, + -0.010026142001152039, + 0.060421861708164215, + -0.0016185741405934095, + 0.025249388068914413, + -0.004648684989660978, + -0.0033199633471667767, + 0.018138336017727852, + 0.020655913278460503, + -0.011623552069067955, + 0.003960399888455868, + -0.027428343892097473, + 0.024248246103525162, + -0.0009321293910034001, + 0.0342743881046772, + 0.021789560094475746, + 0.005395860411226749, + -0.04104682058095932, + -0.014494474045932293, + -0.010673939250409603, + 0.024940211325883865, + -0.02224596217274666, + -0.03283156454563141, + -0.0021918383426964283, + -0.010902141220867634, + 0.017652487382292747, + -0.012698307633399963, + -0.02969563566148281, + -0.01984616555273533, + -0.024954935535788536, + -0.0085170678794384, + 0.009488764218986034, + -0.020493963733315468, + -0.028974225744605064, + 0.015753263607621193, + -0.00048216761206276715, + 0.025396615266799927, + -0.01701941341161728, + -0.01953699067234993, + -0.03851451724767685, + -0.0419301800429821, + 0.04740701615810394, + -0.04048735648393631, + 0.009319453500211239, + -0.04051680117845535, + -0.04605253040790558, + -0.004755424335598946, + -0.01647467352449894, + 0.03745448589324951, + -0.048525936901569366, + 0.008266782388091087, + 0.006544229108840227, + -0.03742504119873047, + 0.004987306427210569, + 0.00041131474426947534, + 0.022025123238563538, + 0.022216517478227615, + -0.027133891358971596, + 0.002099821576848626, + 0.0036751478910446167, + -0.017328588292002678, + -0.004317424725741148, + -0.05774233117699623, + 0.02511688508093357, + 0.010556158609688282, + 0.03121207095682621, + -0.048172593116760254, + -0.008163723163306713, + 0.07025660574436188, + -0.00921639520674944, + 0.012720391154289246, + -0.023968515917658806, + -0.010526712983846664, + 0.04160628095269203, + 0.0039346348494291306, + 0.014700591564178467, + -0.002377712167799473, + -0.017078302800655365, + 0.003191139781847596, + 0.015591313131153584, + 0.011895922012627125, + 0.027914192527532578, + 0.01625383272767067, + -0.021259542554616928, + 0.012749836780130863, + -0.0012514274567365646, + 0.019286705181002617, + -0.005804414860904217, + -0.011476325802505016, + 0.006157759111374617, + 0.03277267515659332, + -0.010158645920455456, + -0.008075387217104435, + 0.04472748935222626, + 0.007114733103662729, + -0.052883848547935486, + 0.0042290883138775826, + -0.00676875002682209, + 0.030387602746486664, + 0.01485517993569374, + 0.06984437257051468, + 0.010916863568127155, + 0.06395529955625534, + -0.023409053683280945, + 0.025926630944013596, + -0.041517943143844604, + 0.007780933752655983, + 0.028002528473734856, + -0.012948593124747276, + -0.012006341479718685, + 0.013942373916506767, + -0.019507544115185738, + -0.021774837747216225, + 0.02511688508093357, + -0.006684094667434692, + -0.011181872338056564, + -0.013611113652586937, + 0.008274143561720848, + -0.008119555190205574, + 0.004022971261292696, + 0.015723817050457, + 0.02084730751812458, + 0.002171594649553299, + 0.013544861227273941, + -0.016312723979353905, + 0.03130040690302849, + -0.051264356821775436, + 0.010769637301564217, + -0.002039090497419238, + -0.0017253134865313768, + 0.016312723979353905, + 0.018903914839029312, + 0.02511688508093357, + -0.0034782320726662874, + -0.011564661748707294, + -0.030181484296917915, + -0.08327145129442215, + -0.0015624439110979438, + -0.007928160950541496, + -0.010143923573195934, + 0.006293943617492914, + -0.010651855729520321, + 0.032596003264188766, + -0.015399918891489506, + 0.059214599430561066, + 0.01505393534898758, + -0.04834926500916481, + 0.0032868373673409224, + 0.010857973247766495, + -0.02215762622654438, + -0.011380627751350403, + -0.026368312537670135, + 0.02323238179087639, + -0.008980832062661648, + 0.013044290244579315, + -0.030181484296917915, + -0.0077662114053964615, + -0.01977255381643772, + -0.002005964517593384, + -0.019021697342395782, + -0.07049217075109482, + 0.015576590783894062, + 0.043049104511737823, + -0.04263686761260033, + 0.059450164437294006, + -0.027899470180273056, + 0.012955954298377037, + -0.03309657424688339, + -0.0092752855271101, + -0.008259421214461327, + -0.06701761484146118, + -0.0011318057077005506, + -0.03238988667726517, + -0.049055956304073334, + -0.04363800957798958, + -0.04148849844932556, + 0.004067139234393835, + 0.01101992279291153, + 0.007891354151070118, + 0.007626345846801996, + -0.020597022026777267, + -0.01603299379348755, + 0.012433299794793129, + 0.007092648651450872, + 0.0022801742888987064, + -0.012470105662941933, + -0.005175020545721054, + 0.010791720822453499, + 0.001005742815323174, + 0.006246095057576895, + 0.015120187774300575, + 0.02554384246468544, + 0.0556517131626606, + -0.0036420219112187624, + 0.008531790226697922, + -0.029445350170135498, + -0.005513641983270645, + 0.00824469793587923, + 0.03297879174351692, + -0.028753384947776794, + -0.028753384947776794, + 0.0072472370229661465, + -0.023438498377799988, + 0.006750346627086401, + -0.0061062294989824295, + 0.014604894444346428, + -0.0030181484762579203, + 0.03533441945910454, + -0.046553101390600204, + -0.009429873898625374, + -0.0036714670713990927, + -0.02357100322842598, + -0.01888919249176979, + -0.014597532339394093, + 0.04337300360202789, + -0.031594861298799515, + -0.05032210424542427, + 0.016018271446228027, + -0.025470228865742683, + 0.0106886625289917, + 0.018521126359701157, + -0.02314404584467411, + 0.007950244471430779, + 0.0477898046374321, + -0.021097593009471893, + -0.023335440084338188, + 0.04060513898730278, + 0.024248246103525162, + -0.057477325201034546, + 0.03503996878862381, + -0.017976386472582817, + -0.016106607392430305, + -0.008436093106865883, + 0.031241517513990402, + -0.005657188128679991, + -0.01581215299665928, + -0.016003547236323357, + -0.004571390803903341, + -0.032036542892456055, + -0.018373899161815643, + 0.0026371991261839867, + -0.024631036445498466, + 0.03515774756669998, + -0.03032871149480343, + -0.011284930631518364, + -0.028090864419937134, + 0.018373899161815643, + -0.012028425931930542, + 0.03807283937931061, + -0.007707320619374514, + 0.04652365297079086, + -0.004957860801368952, + 0.024204079061746597, + -0.01975782960653305, + 0.014030709862709045, + 0.008759992197155952, + -0.010769637301564217, + -0.029092006385326385, + 0.04946818947792053, + 0.06360195577144623, + -0.04116459935903549, + 0.018373899161815643, + -0.017196085304021835, + 0.042842984199523926, + -0.016886908560991287, + 0.01715191639959812, + -0.03495163097977638, + -0.009562377817928791, + -0.02312932349741459, + 0.028738662600517273, + 0.008642210625112057, + 0.00682027917355299, + -0.011203955858945847, + -0.0417240634560585, + 0.022349020466208458, + 0.0025304597802460194, + -0.005105087533593178, + -0.01288234069943428, + -0.024837153032422066, + 0.006908615585416555, + -0.006558951921761036, + -0.02128898911178112, + 0.0028451569378376007, + -0.020008115097880363, + -0.01933087222278118, + -0.009083890356123447, + 0.006746666040271521, + 0.022849591448903084, + 0.011932728812098503, + 0.03188931569457054, + -0.01534102763980627, + 0.016769127920269966, + -0.013670003972947598, + -0.0031359298154711723, + -0.029887031763792038, + -0.02566162310540676, + 0.021303711459040642, + -0.02432185970246792, + -0.01821194961667061, + -0.021259542554616928, + -0.006709859240800142, + -0.022407911717891693, + 0.00819316878914833, + -0.043932463973760605, + 0.004939457401633263, + 0.02739889919757843, + 0.014788927510380745, + 0.015871044248342514, + 0.009496125392615795, + -0.029209788888692856, + -0.03230154886841774, + 0.02421880140900612, + 0.009702242910861969, + -0.023615172132849693, + -0.01036476343870163, + 0.00529648270457983, + -0.015561867505311966, + -0.018315007910132408, + -0.03000481240451336, + -0.016828017309308052, + -0.022025123238563538, + 0.006562632508575916, + 0.020111175253987312, + -0.008605403825640678, + 0.016945799812674522, + -0.08321256190538406, + 0.005027793813496828, + -0.04985097795724869, + 0.053001631051301956, + 0.011910644359886646, + 0.001166771980933845, + 0.013125265017151833, + -0.02106814831495285, + -0.0399278961122036, + -0.014590171165764332, + 0.006323389243334532, + -0.0019581157248467207, + 0.011954812332987785, + 0.0482020378112793, + -0.019036419689655304, + 0.0050425161607563496, + 0.019139477983117104, + 0.010629771277308464, + 0.014339885674417019, + -0.01866835169494152, + -0.01150577049702406, + 0.013773063197731972, + 0.016931077465415, + -0.03783727437257767, + -0.030652610585093498, + -0.025632178410887718, + 0.009532932192087173, + 0.006327069830149412, + 0.017814436927437782, + -0.032360441982746124, + 0.0016618219669908285, + 0.026692209765315056, + -0.015311582013964653, + -0.00884832814335823, + -0.004718617536127567, + -0.013655281625688076, + 0.007560093887150288, + 0.005035154987126589, + 0.02445436455309391, + -0.01592993550002575, + -0.02346794493496418, + -0.00857595819979906, + -0.011262847110629082, + -0.007000632118433714, + 0.005182381719350815, + -0.006301305256783962, + 0.008634849451482296, + 0.029504241421818733, + -0.0003133169375360012, + -0.00955501664429903, + -0.004674449563026428, + -0.014641700312495232, + 0.008414008654654026, + -0.005038835573941469, + 0.005907473620027304, + 0.02149510569870472, + -0.034421615302562714, + 0.025352446362376213, + 0.029312847182154655, + -0.012271350249648094, + 0.03135930001735687, + -0.035628873854875565, + 0.024616314098238945, + -0.04060513898730278, + 0.03436272591352463, + -0.00899555440992117, + 0.013014844618737698, + 0.036630015820264816, + -0.025264110416173935, + 0.011284930631518364, + -0.003365971613675356, + -0.023305995389819145, + -0.0009017638512887061, + -0.024704650044441223, + -0.00431374367326498, + -0.002438443014398217, + 0.01690163090825081, + -0.016931077465415, + -0.019257258623838425, + 0.009871553629636765, + -0.003163534915074706, + 0.014030709862709045, + 0.018962806090712547, + 0.03121207095682621, + 0.005094045773148537, + 0.010887418873608112, + -0.014361970126628876, + -0.005428986623883247, + 0.04089959338307381, + -0.023394331336021423, + -0.0035960134118795395, + -0.009621268138289452, + 0.001878061331808567, + 0.03100595436990261, + -0.01878613419830799, + -0.008031219244003296, + -0.013000122271478176, + 0.00425485335290432, + -0.0004817075387109071, + -0.012035787105560303, + -0.011851754039525986, + 0.004906331654638052, + 0.015664925798773766, + 0.011763418093323708, + 0.018506402149796486, + 0.015208523720502853, + -0.02271708846092224, + -0.026059135794639587, + 0.01283081155270338, + -0.0013958936324343085, + 0.019021697342395782, + 0.003783727530390024, + -0.0041149877943098545, + 0.03795505687594414, + 0.03315546363592148, + 0.015105465427041054, + 0.006569993682205677, + -0.010151284746825695, + 0.011284930631518364, + -0.003787408350035548, + -0.005502599757164717, + -0.02052341029047966, + 0.03032871149480343, + -0.00248445151373744, + 0.01210940070450306, + 0.04313743859529495, + -0.021259542554616928, + 0.026029689237475395, + 0.008119555190205574, + 0.02477826178073883, + 0.03601166233420372, + 0.0249991025775671, + -0.03922120854258537, + 0.013522777706384659, + -0.03713058680295944, + 0.05653507262468338, + -0.039250653237104416, + 0.02586774155497551, + -0.00044858152978122234, + -0.015767985954880714, + 0.0024586867075413465, + -0.01615077443420887, + -0.00029468355933204293, + 0.002097981283441186, + -0.00823733676224947, + 0.006095187738537788, + -0.019478099420666695, + 0.022996818646788597, + 0.010342679917812347, + 0.013728895224630833, + 0.018167780712246895, + -0.0262063629925251, + -0.002320661675184965, + -0.0025893505662679672, + -0.0033567699138075113, + 0.0003705973504111171, + 0.0092237563803792, + -0.014163213782012463, + 0.018933361396193504, + -0.02588246390223503, + 0.037807829678058624, + 0.03315546363592148, + 0.037483930587768555, + -0.013618474826216698, + -0.0172402523458004, + -0.017196085304021835, + 0.014737398363649845, + 0.0012532677501440048, + -0.0008010055753402412, + 0.0280319731682539, + 0.01637161523103714, + -0.005171339958906174, + -0.01462697796523571, + 0.04640587419271469, + -0.011800223961472511, + 0.004534584004431963, + 0.015532422810792923, + -0.017770269885659218, + 0.003146971808746457, + 0.008789436891674995, + 0.0036254588048905134, + 0.007180985063314438, + 0.032478220760822296, + -0.00040533364517614245, + 0.0012100199237465858, + 0.023497389629483223, + 0.009422511793673038, + 0.011373266577720642, + -0.005428986623883247, + -0.003592332825064659, + -0.001197137520648539, + -0.01679857261478901, + 0.004700214136391878, + 0.013397634960711002, + -0.020979812368750572, + -0.02639775723218918, + -0.01779971458017826, + -0.02019951120018959, + -0.007817740552127361, + -0.010195452719926834, + 0.02246680296957493, + 0.008671656250953674, + -0.009621268138289452, + 0.011255485005676746, + -0.013949735090136528, + -0.01425154972821474, + -0.0025948714464902878, + -0.010769637301564217, + -0.00045157206477597356, + -0.015208523720502853, + -0.027236949652433395, + 0.018285563215613365, + -0.0017943261191248894, + -0.05391443893313408, + 0.02826753631234169, + -0.00141981802880764, + -0.00785454735159874, + 0.018476957455277443, + 0.024071574211120605, + -0.029283400624990463, + -0.016872186213731766, + 0.002587510272860527, + -0.02030256949365139, + 0.0001359547022730112, + 0.0007292325026355684, + 0.009069168008863926, + 0.0006017893319949508, + -0.016106607392430305, + 0.009488764218986034, + -0.012278711423277855, + 0.0021347878500819206, + -0.008914579637348652, + 0.02828225865960121, + -0.009267924353480339, + 0.04299021139740944, + -0.007648429833352566, + -0.02598552219569683, + -0.046111419796943665, + 0.023438498377799988, + 0.01069602370262146, + 0.042519085109233856, + -0.013463886454701424, + 0.005274398252367973, + 0.041841842234134674, + -0.004961541388183832, + 0.01489934790879488, + -0.013898205943405628, + -0.01101992279291153, + 0.0001607992162462324, + -0.010813805274665356, + 0.004085542634129524, + 0.046317536383867264, + -0.062895268201828, + 0.0023850733414292336, + 0.00357576971873641, + -0.00879679899662733, + 0.005395860411226749, + -0.010651855729520321, + 0.0011290451511740685, + 0.014155852608382702, + 0.012043148279190063, + 0.008524429053068161, + 0.02457214519381523, + 0.03424494341015816, + -0.020803140476346016, + 0.03121207095682621, + 0.0011106418678537011, + -0.007192026823759079, + -0.004799592308700085, + 0.008723185397684574, + 0.009459318593144417, + -0.030858727172017097, + 0.037807829678058624, + 0.004269575700163841, + 0.008583319373428822, + -0.006327069830149412, + -3.418996129767038e-5, + -0.034892741590738297, + -0.003334685927256942, + 0.010511990636587143, + 0.03450994938611984, + 0.04967430606484413, + -0.009194310754537582, + 0.025367170572280884, + 0.00286540063098073, + 0.024734094738960266, + 0.021347878500819206, + -0.0009275285410694778, + 0.0014511037152260542, + 0.0026592833455652, + -0.002160552656278014, + -0.04137071967124939, + -0.009974612854421139, + 0.003231627168133855, + -0.020685359835624695, + -0.0005277158925309777, + -0.021141761913895607, + 0.029430627822875977, + -0.014531280845403671, + 0.030417047441005707, + -0.0026464008260518312, + -0.02117120660841465, + -0.003739559557288885, + 0.0004228168400004506, + -0.019183646887540817, + 0.027089722454547882, + 0.014141129329800606, + 0.013883482664823532, + -0.0016765446634963155, + 0.02399796061217785, + -0.018697798252105713, + 0.01434724684804678, + 0.01174133364111185, + -0.003960399888455868, + -0.02719278074800968, + 0.018506402149796486, + 0.007236194796860218, + 0.0014446625718846917, + 0.016121329739689827, + 0.013611113652586937, + 0.0018881831783801317, + -0.021333156153559685, + -0.0043395087122917175, + -0.025573287159204483, + 0.00248261122033, + -0.018697798252105713, + 0.012433299794793129, + -0.02323238179087639, + 0.020788418129086494, + -0.008590681478381157, + 0.01669551432132721, + 0.02893005684018135, + 0.016739681363105774, + 0.02389490231871605, + 0.01485517993569374, + -0.009253201074898243, + 0.01538519561290741, + -0.013382911682128906, + -0.0213773250579834, + 0.04858483001589775, + -0.006455893162637949, + 0.025956077501177788, + 0.02239318937063217, + 0.010880056768655777, + 0.006879169959574938, + 0.0039015088696032763, + 0.04201851412653923, + 0.004078180994838476, + 0.008141639642417431, + -0.016621900722384453, + -0.03533441945910454, + -0.03459828719496727, + 0.048614274710416794, + -0.029651468619704247, + -0.02607385814189911, + -0.02042035013437271, + -0.004505138844251633, + 0.004243811126798391, + -0.006025254726409912, + 0.022849591448903084, + 0.02062646858394146, + 0.026147471740841866, + 0.033008236438035965, + 0.009621268138289452, + -0.03001953475177288, + 0.021127039566636086, + 0.02139204740524292, + -0.00955501664429903, + 0.011940089985728264, + -0.02259930595755577, + 0.013883482664823532, + 0.02237846702337265, + -0.015164355747401714, + 0.020228955894708633, + 0.014700591564178467, + -0.03621778264641762, + 0.02105342596769333, + -0.004103945568203926, + -0.026162194088101387, + -0.026324143633246422, + -0.0026500816456973553, + -0.035422757267951965, + 0.02314404584467411, + -0.020332014188170433, + -0.007232514210045338, + -0.0006583796348422766, + -0.015223246067762375, + 0.004597155377268791, + -0.007155220024287701, + -0.017505260184407234, + 0.0007476358441635966, + -0.04867316409945488, + -0.01004086434841156, + 0.001535759074613452, + 0.020346736535429955, + 0.0073171695694327354, + -0.001151129137724638, + -0.04640587419271469, + -0.0012284232070669532, + 0.008664294146001339, + -0.023070432245731354, + 0.0009183268994092941, + -0.02140676975250244, + -0.002539661480113864, + 0.010607687756419182, + -0.01570909470319748, + -0.028620880097150803, + -0.01812361367046833, + -0.005822818260639906, + 0.008119555190205574, + -0.050587113946676254, + 0.0008166484185494483, + 0.002081418177112937, + -0.0006818438996560872, + -0.022349020466208458, + -0.026441924273967743, + 0.02050868608057499, + 0.010835888795554638, + -0.031918760389089584, + 0.010467822663486004, + 0.02969563566148281, + -0.013574306853115559, + 0.023320717737078667, + 0.026103302836418152, + 0.02726639434695244, + -0.010246981866657734, + -0.013603752478957176, + 0.014965599402785301, + 0.014074877835810184, + -0.003384375013411045, + -0.007140497677028179, + -0.022231239825487137, + 0.013449164107441902, + 0.024631036445498466, + 0.011557300575077534, + -0.0212742667645216, + 0.018197227269411087, + 0.0022047206293791533, + -0.014995045028626919, + 0.001521956524811685, + 0.004880567081272602, + 0.00610991008579731, + 0.0011943770805373788, + -0.02443964034318924, + -0.002819392364472151, + 0.014752120710909367, + 0.003678828477859497, + 0.010114477947354317, + 0.01174133364111185, + 0.014008625410497189, + -0.0158268753439188, + -0.037690047174692154, + -0.01292650867253542, + -0.010497267358005047, + -0.02542605996131897, + 0.008347757160663605, + -0.0316537506878376, + -0.004056097008287907, + 0.0158268753439188, + -0.009164865128695965, + 0.021760113537311554, + -0.011601468548178673, + -0.0018863427685573697, + 0.0007669593906030059, + 0.01788805052638054, + 0.02838531881570816, + -0.017829159274697304, + -0.0009965411154553294, + 0.018948083743453026, + -0.004564029164612293, + 0.0005511801573447883, + -0.0010986796114593744, + 0.005119810346513987, + -0.002024367917329073, + -0.0012808727333322167, + 0.0017934058560058475, + 0.0034543077927082777, + -0.05096990242600441, + 0.025146329775452614, + -0.054503343999385834, + 0.007744127418845892, + 0.004328466486185789, + -0.007560093887150288, + -0.007030077278614044, + -0.0027807452715933323, + -0.0070742457173764706, + 0.02031729184091091, + 0.011667720042169094, + -0.033361583948135376, + -0.008038580417633057, + -0.013566945679485798, + -0.006529506761580706, + -0.006592078134417534, + 0.05426778271794319, + 0.0016139732906594872, + -0.012234543450176716, + -0.03200709447264671, + -0.029651468619704247, + 0.028561990708112717, + -0.0013977340422570705, + 0.011167149059474468, + 0.01955171301960945, + 0.02159816399216652, + 0.0014603054150938988, + -0.03533441945910454, + -0.000990099972113967, + 0.002893005730584264, + 0.018859747797250748, + -0.010357402265071869, + -0.027546126395463943, + -0.025264110416173935, + 0.010585603304207325, + -0.050351548939943314, + -0.009915721602737904, + -0.021333156153559685, + -0.014119045808911324, + 0.040664028376340866, + 0.007670513819903135, + 0.0033162825275212526, + 0.0012164610670879483, + -0.0005806254921481013, + 0.025043271481990814, + -0.0009845789754763246, + -0.007409186568111181, + -0.009253201074898243, + -0.007626345846801996, + -0.01468586828559637, + 0.02214290387928486, + 0.02205456793308258, + -0.017608320340514183, + -0.056476183235645294, + -0.025484951213002205, + 0.04593474790453911, + -0.0171371940523386, + -0.008215253241360188, + -0.003653063904494047, + 0.003989845048636198, + -0.005086684133857489, + 0.013301936909556389, + -0.014133768156170845, + -0.015974102541804314, + -0.003919912502169609, + 0.009525571018457413, + -0.007928160950541496, + 0.007269321009516716, + 0.01255108043551445, + -0.004622919950634241, + -0.001716111903078854, + -0.009577100165188313, + -0.011638275347650051, + -0.06101076677441597, + -0.013427079655230045, + -0.018741965293884277, + 0.05650562793016434, + -0.011947451159358025, + -0.010195452719926834, + 0.02193678542971611, + 0.04016345739364624, + -0.02302626520395279, + 0.006404364015907049, + -0.018064722418785095, + -0.013670003972947598, + -0.0011980576673522592, + 0.025234665721654892, + 0.0010545116383582354, + 0.012205097824335098, + -0.005281759891659021, + 0.008671656250953674, + 0.003542643738910556, + -0.015988824889063835, + 0.01603299379348755, + 0.01746109314262867, + 0.0029758207965642214, + 0.003689870471134782, + 0.005289121065288782, + 0.040987927466630936, + -0.029092006385326385, + 0.015738539397716522, + -0.028355872258543968, + 0.015120187774300575, + 0.0006188124534673989, + 0.008826243691146374, + -0.024851875379681587, + 0.006812917999923229, + 0.018079444766044617, + -0.0006100708851590753, + 0.01810889132320881, + 0.006783472839742899, + 0.024586867541074753, + 0.01004822552204132, + 0.002690569031983614, + 0.017093027010560036, + -0.0008023857953958213, + 0.003413820406422019, + -0.007011674344539642, + -0.027973083779215813, + 0.00535169243812561, + -0.02195150963962078, + -0.009996696375310421, + 0.02246680296957493, + 0.03630611672997475, + 0.005756566300988197, + 0.01037212461233139, + -0.02239318937063217, + -0.00747543852776289, + 0.009746410883963108, + 0.01179286278784275, + -0.007648429833352566, + -0.004832718055695295, + 0.0002866321010515094, + 0.06772430986166, + -0.01456808764487505, + -0.009437235072255135, + -0.003872063709422946, + -0.003975122235715389, + 0.016327446326613426, + 0.01965477131307125, + 0.01965477131307125, + 0.03395048901438713, + -0.008782075718045235, + 0.008973470889031887, + -0.011925366707146168, + -0.01259524840861559, + 0.04652365297079086, + -0.009341537952423096, + 0.023836011067032814, + -0.017093027010560036, + 0.0084655387327075, + -0.008877772837877274, + -0.007523287087678909, + -0.0033641313202679157, + -0.007434951141476631, + 0.018270840868353844, + 0.006823960226029158, + -0.011616190895438194, + -0.010335317812860012, + 0.01810889132320881, + -0.024748817086219788, + 0.011638275347650051, + -0.0010692343348637223, + 0.014766843058168888, + 0.01625383272767067, + 0.006632565055042505, + 0.012484828941524029, + 0.0016940278001129627, + 0.014884624630212784, + 0.026162194088101387, + -0.006647287867963314, + -0.011947451159358025, + 0.0011860955273732543, + -0.004276937339454889, + -0.02159816399216652, + 0.024380750954151154, + -0.028768107295036316, + 0.015767985954880714, + 0.01434724684804678, + 0.008664294146001339, + 0.017196085304021835, + -0.02171594649553299, + -0.011137704364955425, + -0.00304207275621593, + 0.00960654579102993, + -0.01974310725927353, + 1.0876664418901782e-5, + -0.0026666445191949606, + 0.0010443897917866707, + -0.005506280809640884, + -0.02457214519381523, + -0.010224898345768452, + -0.017078302800655365, + -0.0036549041979014874, + 0.022893760353326797, + -0.026000244542956352, + -0.016106607392430305, + -0.012683585286140442, + -0.01292650867253542, + -0.0003195280733052641, + -0.010578242130577564, + 0.017505260184407234, + 0.028959503397345543, + 0.018918637186288834, + -0.012514273636043072, + -0.0028175520710647106, + 0.0061135911382734776, + -0.009518209844827652, + 0.020670635625720024, + 0.04384412616491318, + -8.787596743786708e-5, + 0.01908058673143387, + -0.03430383279919624, + -0.0059148347936570644, + -0.008104832842946053, + -0.0200670063495636, + 0.019905056804418564, + 0.0031690557952970266, + -0.003618097398430109, + 0.019006973132491112, + -0.006316027604043484, + -0.011226040311157703, + -0.00608414551243186, + 0.012764559127390385, + 0.0002850217861123383, + 0.011549938470125198, + 0.010725469328463078, + -0.020817862823605537, + -0.017313865944743156, + -0.023305995389819145, + 0.011343820951879025, + 0.008369840681552887, + 0.012690946459770203, + -0.008789436891674995, + 0.010408931411802769, + -0.0008534551016055048, + 0.005105087533593178, + 0.016931077465415, + -0.027987806126475334, + -0.01769665628671646, + 0.009753772057592869, + -0.03244877606630325, + -0.006842363625764847, + -0.01846223510801792, + 0.0058890702202916145, + -0.038249511271715164, + -0.03194820508360863, + -0.0020906198769807816, + 0.010305873118340969, + -0.022731810808181763, + -0.03188931569457054, + 0.03342047333717346, + -0.013824592344462872, + -0.010718108154833317, + 0.004939457401633263, + -0.00742758996784687, + 0.029887031763792038, + 0.01036476343870163, + 0.011652997694909573, + -0.0072472370229661465, + 0.010570880956947803, + -0.015134910121560097, + -0.006212968844920397, + -0.008126916363835335, + 0.021774837747216225, + -0.010997838340699673, + -0.008546513505280018, + 0.007534329313784838, + 0.005197104532271624, + 0.013419718481600285, + 0.007055842317640781, + -0.01812361367046833, + -0.011042006313800812, + -0.036394454538822174, + -0.0183444544672966, + 0.031064845621585846, + 0.011549938470125198, + -0.008494983427226543, + -0.003121207235381007, + -0.014759481884539127, + -0.009915721602737904, + -0.0051787011325359344, + 0.0322721041738987, + 0.015723817050457, + -0.005789692047983408, + 0.013618474826216698, + -0.005808095447719097, + 0.018182504922151566, + 0.009437235072255135, + 0.022231239825487137, + -0.004107626620680094, + -0.0015780867543071508, + -0.019271982833743095, + 0.02149510569870472, + -0.004335828125476837, + -0.031035399064421654, + -0.04549306631088257, + 0.005601977929472923, + -0.0032113834749907255, + -0.02019951120018959, + -0.04325522109866142, + -0.015414641238749027, + 0.024262968450784683, + -0.00965807493776083, + -0.01255108043551445, + -0.01495087705552578, + -0.0032113834749907255, + -0.00638964120298624, + 0.00711841369047761, + 0.04107626527547836, + -0.01244802214205265, + 0.025602731853723526, + -0.010931586846709251, + -0.0249991025775671, + -0.006378598976880312, + 0.0004465111414901912, + 0.01183703076094389, + 0.007007993292063475, + 0.025411337614059448, + -0.025705792009830475, + -0.015502977184951305, + 0.02192206308245659, + 0.01648939587175846, + 0.007935522124171257, + 0.004078180994838476, + -0.021686501801013947, + 0.02086203172802925, + 0.012087316252291203, + 0.012948593124747276, + -0.012690946459770203, + -0.016636623069643974, + 0.025161052122712135, + 0.00215687183663249, + 0.0019121074583381414, + 0.002245208015665412, + 0.0071441782638430595, + -0.008119555190205574, + 0.03698335960507393, + -0.009864192456007004, + 0.011314376257359982, + -0.01974310725927353, + 0.01037212461233139, + -0.001138246851041913, + 0.016091885045170784, + 0.030210930854082108, + -0.02323238179087639, + 0.010276427492499352, + 0.01613605208694935, + 0.004203323740512133, + 0.0024274010211229324, + 0.005793372634798288, + 0.0028911654371768236, + -0.0019286704482510686, + -0.022084012627601624, + -0.005359054077416658, + -0.024807708337903023, + 0.03383270651102066, + 0.007265640422701836, + 0.028296982869505882, + 0.01467114593833685, + -0.0009551335824653506, + 0.027560848742723465, + 0.006419086363166571, + 0.01941920816898346, + 0.008826243691146374, + 0.005855944007635117, + -0.035746656358242035, + 0.014082239009439945, + -0.01326513011008501, + -0.007376060355454683, + -0.0014363810187205672, + 0.011343820951879025, + 0.005116129759699106, + -0.0010397889418527484, + 0.00043155840830877423, + -0.009945167228579521, + 0.003529761452227831, + 0.0021679140627384186, + -0.00020818783377762884, + -0.005197104532271624, + 0.0065479096956551075, + 0.022672919556498528, + -0.008200529962778091, + -0.0035113580524921417, + 0.010541435331106186, + -0.01221982017159462, + -0.0022488886024802923, + 0.012190375477075577, + -0.0054473900236189365, + 0.016945799812674522, + 0.007372379768639803, + -0.004159155767410994, + -0.002394275041297078, + -0.000604549830313772, + 0.0012173812137916684, + -0.0007177304360084236, + 0.0061062294989824295, + -0.0342743881046772, + -0.02390962466597557, + -0.005381138063967228, + -0.010350041091442108, + 0.0070742457173764706, + -0.02432185970246792, + -0.01173397246748209, + 0.017843883484601974, + 0.007140497677028179, + 0.010158645920455456, + 0.022216517478227615, + -0.006809237413108349, + -0.00430638249963522, + 0.014200020581483841, + -0.004670768976211548, + -0.0016480195336043835, + 0.007876631803810596, + 0.0171371940523386, + -0.005955322179943323, + 0.011181872338056564, + 0.022761255502700806, + 0.014030709862709045, + -0.012558442540466785, + 0.00889985729008913, + 0.034863296896219254, + -0.016636623069643974, + -0.004398399498313665, + 0.006235052831470966, + 0.015024490654468536, + -0.003163534915074706, + 0.039456769824028015, + 0.028400041162967682, + 0.015532422810792923, + 0.012286072596907616, + -0.03827895596623421, + -0.00575288524851203, + -0.014634339138865471, + -0.014538642019033432, + -0.0025470228865742683, + -0.001255108043551445, + -0.019242536276578903, + 0.023217659443616867, + 0.01669551432132721, + -0.018359176814556122, + -0.004457289818674326, + -0.01391292829066515, + 0.004560348577797413, + -0.009091252461075783, + 0.0013379231095314026, + 0.013647920452058315, + -0.018948083743453026, + 0.008539151400327682, + -0.005907473620027304, + 0.006809237413108349, + -0.0026942496187984943, + -0.02574995905160904, + 0.002440283540636301, + 0.001463065855205059, + -0.04428580775856972, + -0.03162430599331856, + -0.00923111755400896, + 0.005163978319615126, + 0.014104323461651802, + -0.012506912462413311, + -0.01135118305683136, + -0.010850612074136734, + -0.00644117034971714, + 0.008259421214461327, + 0.013220962136983871, + 0.011601468548178673, + -0.030829282477498055, + 0.01244066096842289, + -0.016121329739689827, + 0.021745391190052032, + -0.041105709969997406, + 0.0236887838691473, + -0.015753263607621193, + 0.021568719297647476, + 0.0007591379689984024, + 0.012035787105560303, + -0.002973980503156781, + 0.022010399028658867, + -0.012676223181188107, + -0.006165120285004377, + 0.00610991008579731, + -0.025602731853723526, + -0.01700468920171261, + 0.015223246067762375, + 0.02290848270058632, + -0.01919836923480034, + 0.008480261079967022, + -0.015561867505311966, + 0.0170341357588768, + 0.016224388033151627, + 0.010622410103678703, + 0.012808728031814098, + -0.035216640681028366, + -0.0025801488664001226, + -0.014965599402785301, + -6.061601379769854e-5, + -0.016283279284834862, + 0.005981086753308773, + 0.0004803272895514965, + -0.006967505905777216, + -0.017166638746857643, + 0.028532544150948524, + 0.006801876239478588, + -0.006043658126145601, + 0.02410101890563965, + 0.007677874993532896, + 0.03963344171643257, + -0.0079134376719594, + 0.0293422918766737, + -0.047318678349256516, + 0.013508054427802563, + -0.01141007337719202, + 0.01457544881850481, + -0.006422766949981451, + -0.0038058115169405937, + -0.006680414080619812, + -0.0027568209916353226, + -0.015900488942861557, + 0.016194943338632584, + 0.007883992977440357, + 0.0078030177392065525, + 0.0342743881046772, + -0.005693994928151369, + -0.014546003192663193, + 0.01856529340147972, + -0.0025967119727283716, + 0.0022525694221258163, + 0.009348899126052856, + -0.002894846023991704, + 0.0017832840094342828, + -0.036836132407188416, + 0.024704650044441223, + 0.021215375512838364, + -0.013353466987609863, + -0.0042622145265340805, + 0.012263989076018333, + -0.0006146716768853366, + 0.0004607737355399877, + 0.04237186163663864, + -0.04019290208816528, + -0.03271378576755524, + 0.028959503397345543, + -0.006761388853192329, + -0.0055504487827420235, + -0.02380656637251377, + -0.008001773618161678, + 0.013382911682128906, + -0.020773695781826973, + 0.0009808982722461224, + 0.0008911819313652813, + 0.0053700958378612995, + -0.018418066203594208, + 0.010946309193968773, + -0.015414641238749027, + -0.030387602746486664, + 0.006393321789801121, + 0.03830840066075325, + 0.003500316059216857, + 0.0249991025775671, + -0.006639926694333553, + -0.0076116230338811874, + 0.034657176584005356, + -0.03056427463889122, + 0.009054445661604404, + -0.014391414821147919, + 0.006908615585416555, + 0.011778140440583229, + -0.018256116658449173, + -0.017107749357819557, + -0.016077160835266113, + 0.009459318593144417, + 0.0024439641274511814, + -0.0019305108580738306, + -0.024424917995929718, + -0.02619163878262043, + 0.012212458997964859, + 0.017814436927437782, + -0.028974225744605064, + 0.0011253644479438663, + 0.0249991025775671, + 0.0028543586377054453, + -0.005049877800047398, + -0.012801365926861763, + 0.013839314691722393, + -0.0013563265092670918, + -1.355808853986673e-5, + -0.012764559127390385, + -0.006776111200451851, + -0.014008625410497189, + -0.007460715714842081, + 0.0071773044764995575, + 0.007685236632823944, + 0.011203955858945847, + -0.016857463866472244, + -0.01987561210989952, + -0.000989179708994925, + 0.02096509002149105, + 0.027016108855605125, + -0.006669371854513884, + -0.0092752855271101, + 0.010578242130577564, + -0.009724327363073826, + -0.008126916363835335, + 0.0010121839586645365, + -0.006382279563695192, + 0.012897063978016376, + 0.008730546571314335, + 0.01681329496204853, + 0.008045942522585392, + -0.01381723117083311, + -0.004567710217088461, + -0.011689804494380951, + 0.00018529867520555854, + 0.009142781607806683, + -0.012889701873064041, + 0.007033758331090212, + -0.02991647645831108, + 0.07237667590379715, + 0.010835888795554638, + 0.02301154099404812, + 0.0019507544348016381, + -0.005870666820555925, + -0.004538264591246843, + -0.001581767457537353, + 0.010335317812860012, + 0.011292291805148125, + 0.013081097044050694, + -0.005263356491923332, + 0.011763418093323708, + 0.010791720822453499, + 0.006422766949981451, + -0.04075236618518829, + -0.0014952716883271933, + -0.0004458210023585707, + 0.005123490933328867, + 0.00321874488145113, + 0.010408931411802769, + 0.01800583116710186, + -0.009915721602737904, + -0.02292320504784584, + 0.004622919950634241, + -0.014104323461651802, + 0.01364055834710598, + 0.004291659686714411, + 0.0012716710334643722, + 0.03986900672316551, + 0.013655281625688076, + 0.008207891136407852, + 0.0012827131431549788, + -0.013544861227273941, + -0.005149255506694317, + 0.0002983642043545842, + 0.0024310818407684565, + 0.021023981273174286, + 0.008605403825640678, + -0.009304731152951717, + 0.008855689316987991, + -0.005359054077416658, + -0.027575571089982986, + 0.032360441982746124, + -0.00024706489057280123, + -0.012816089205443859, + -0.0059921289794147015, + -0.0008875012863427401, + -0.00959918461740017, + 0.008428731933236122, + 0.0028838040307164192, + -0.020464519038796425, + -0.011446880176663399, + 0.003838937496766448, + 0.014730037190020084, + 0.015252691693603992, + -0.005366415251046419, + 0.01626855693757534, + -0.01626855693757534, + -0.010983115993440151, + -0.012153568677604198, + -0.022731810808181763, + -0.006871808785945177, + -0.003919912502169609, + -0.02389490231871605, + -0.03068205527961254, + -0.010894780047237873, + -0.014170574955642223, + 0.002140308963134885, + -0.01986088976264, + -0.02511688508093357, + 0.012271350249648094, + -0.029165619984269142, + -0.005469474010169506, + -0.026574429124593735, + 0.002142149256542325, + 0.02642720192670822, + 0.013390272855758667, + 0.026883605867624283, + 0.02050868608057499, + 0.016430506482720375, + 0.02324710413813591, + 0.003618097398430109, + 0.007825101725757122, + -0.01604771614074707, + 0.0051787011325359344, + -0.00717362342402339, + -0.0039346348494291306, + -0.01358902920037508, + 0.024748817086219788, + -0.020243678241968155, + -0.008774714544415474, + -0.013404996134340763, + 0.0008677176665514708, + -0.005502599757164717, + 0.0062166498973965645, + -0.00423276936635375, + 0.0014391415752470493, + -0.008811521343886852, + 0.013007483445107937, + -0.004446248058229685, + 0.0007761610322631896, + 0.010821166448295116, + -0.0044425674714148045, + 0.015399918891489506, + 0.011115619912743568, + 0.003518719458952546, + 0.02617691643536091, + 0.007560093887150288, + -0.028458932414650917, + 0.010026142001152039, + -0.005539406556636095, + -0.020228955894708633, + 0.020817862823605537, + 0.00785454735159874, + -0.02105342596769333, + 0.011667720042169094, + 0.010556158609688282, + -0.017755545675754547, + -0.014597532339394093, + -0.013684727251529694, + -0.020567577332258224, + -0.007203069049865007, + -0.01386876031756401, + -0.004906331654638052, + 0.016739681363105774, + 0.0036972318775951862, + -0.013272492215037346, + 0.0024034767411649227, + -0.005815456621348858, + -0.0017750025726854801, + -0.010578242130577564, + 0.007365018595010042, + 0.03135930001735687, + -0.03088817372918129, + -0.002970299683511257, + -0.011491048149764538, + 0.010224898345768452, + 0.021082870662212372, + 0.01671023666858673, + -0.031270962208509445, + 0.017166638746857643, + 0.010541435331106186, + 0.0027071319054812193, + 0.02052341029047966, + 0.012963315472006798, + 0.01570909470319748, + -0.015988824889063835, + -0.02741362154483795, + 0.010379485785961151, + -0.008833604864776134, + 0.01977255381643772, + -0.026162194088101387, + 0.0008023857953958213, + -0.01036476343870163, + -0.010246981866657734, + 0.017196085304021835, + -0.013287214562296867, + 0.010563519783318043, + -0.022879038006067276, + 0.014074877835810184, + 0.01941920816898346, + 0.009643352590501308, + -0.00021462900622282177, + -0.018403343856334686, + -0.009974612854421139, + 0.012146207503974438, + 0.0034175009932368994, + 0.01691635325551033, + 0.010776998475193977, + -0.01681329496204853, + -0.01036476343870163, + -0.0014373011654242873, + 0.000812967715319246, + -0.02761973813176155, + -0.00712209427729249, + -0.004004567861557007, + -0.00466708792373538, + 0.005200785119086504, + -0.0030567955691367388, + 0.016091885045170784, + -0.008009135723114014, + -0.013743617571890354, + 0.022113459184765816, + -0.0051897428929805756, + 0.01746109314262867, + -0.013993903063237667, + 0.011763418093323708, + -0.03188931569457054, + -0.03100595436990261, + 0.005918515380471945, + 0.0004338588332757354, + 0.017431648448109627, + 0.00795760564506054, + 0.008031219244003296, + -0.007994412444531918, + -0.009503486566245556, + 0.014847817830741405, + 0.011167149059474468, + 0.0047038947232067585, + 0.0011998980771750212, + -0.022084012627601624, + -0.004744382109493017, + 0.01205787155777216, + -0.004755424335598946, + 0.0011851753806695342, + -0.012028425931930542, + -0.009385705925524235, + -0.0022691322956234217, + 0.004424164071679115, + 0.02466048114001751, + -0.005509961396455765, + -0.02467520348727703, + 0.0014612255617976189, + 0.0018578176386654377, + -0.007847186177968979, + 0.013736256398260593, + 0.0018522966420277953, + 0.0058449022471904755, + 0.0020170065108686686, + -0.00998933520168066, + 0.011064090766012669, + -0.003119366941973567, + -0.00339541700668633, + 0.007722043432295322, + 0.013346104882657528, + 0.00017552189819980413, + 0.019595880061388016, + 0.000546579307410866, + 0.004821676295250654, + -0.002466048114001751, + 0.016459951177239418, + 0.0023850733414292336, + -0.003919912502169609, + 0.016651345416903496, + -0.008097471669316292, + 0.025779403746128082, + 0.0077588497661054134, + -0.018476957455277443, + -0.0005935078370384872, + -0.0010075831087306142, + -0.026898328214883804, + 0.00638596061617136, + -0.01984616555273533, + -0.005878027994185686, + -0.007545371074229479, + -0.00011484837159514427, + 0.0017013892065733671, + 0.009025000035762787, + -0.015502977184951305, + -2.6325409635319375e-5, + -0.004523542243987322, + -0.012963315472006798, + -0.009746410883963108, + 0.022864315658807755, + 0.018933361396193504, + -0.01348597090691328, + -0.009415150620043278, + 0.000870938238222152, + -0.008553874678909779, + -0.025926630944013596, + -0.0014299398753792048, + -0.003012627363204956, + -0.010526712983846664, + -0.004729659296572208, + 0.020714804530143738, + 0.007567455060780048, + -0.030711499974131584, + 0.01538519561290741, + 0.0062608178704977036, + -0.001965477131307125, + 0.011277569457888603, + 0.002791787264868617, + 0.005281759891659021, + 0.01788805052638054, + -0.004000886809080839, + 0.004170197993516922, + 0.018153058364987373, + -0.01363319717347622, + -8.592061203671619e-5, + -0.007383421529084444, + 0.006492699962109327, + -0.0015550826210528612, + -0.005719759501516819, + -0.009952528402209282, + 0.00337149272672832, + -0.020758971571922302, + 0.01249219011515379, + 0.01897752843797207, + -0.005046197213232517, + 0.0012192215071991086, + 0.01392028946429491, + -0.01856529340147972, + -0.0018090486992150545, + -0.02304098755121231, + 0.013750978745520115, + 0.01150577049702406, + -0.0006096107535995543, + 0.0014354608720168471, + 0.01528213731944561, + 0.014428221620619297, + 0.010615048930048943, + -0.011005199514329433, + -0.004950499627739191, + -0.01173397246748209, + 0.014781566336750984, + -0.001832973095588386, + 0.03262544795870781, + 0.031447634100914, + -0.014582809992134571, + 0.010511990636587143, + -0.0015744060510769486, + -0.008053303696215153, + -0.004368953872472048, + 0.0006850644713267684, + -0.011991619132459164, + -0.005962683353573084, + 0.009297369979321957, + 0.004431525245308876, + -0.005009390413761139, + 0.01690163090825081, + 0.0061135911382734776, + -0.0023556279484182596, + 0.012985399924218655, + 0.006135675124824047, + 0.004446248058229685, + 0.001773162162862718, + 0.010961031541228294, + 0.00608782609924674, + 0.010350041091442108, + -0.03981011360883713, + 0.036394454538822174, + -0.004549306817352772, + -0.01259524840861559, + -0.010099755600094795, + -0.009532932192087173, + 0.013088458217680454, + -0.01778499223291874, + -0.023423776030540466, + -0.007560093887150288, + -0.004832718055695295, + -0.014207381755113602, + -0.0017805235693231225, + -0.009083890356123447, + 0.0001690807257546112, + 0.015444086864590645, + 0.0251021608710289, + -1.1034817362087779e-6, + 0.003842618316411972, + 0.003529761452227831, + 0.008229975588619709, + 0.008494983427226543, + -0.011218678206205368, + 0.009017638862133026, + 0.0005741843488067389, + -0.0016130531439557672, + 0.0009229276911355555, + 0.034421615302562714, + 0.02271708846092224, + -0.008487622253596783, + 0.01217565219849348, + -0.010327956639230251, + 0.01766720972955227, + -0.014847817830741405, + -0.0035702488385140896, + -0.0035076774656772614, + 0.010327956639230251, + 0.003456148086115718, + 0.004961541388183832, + -0.023099876940250397, + -0.02574995905160904, + 0.01822667196393013, + -0.020493963733315468, + -0.035864438861608505, + -0.005123490933328867, + -0.014310440048575401, + 0.0099819740280509, + -0.007935522124171257, + 0.011947451159358025, + -0.007891354151070118, + 0.005097726359963417, + 0.03177153319120407, + -0.009496125392615795, + 0.0059590027667582035, + -0.03392104431986809, + 0.0006763229030184448, + -0.008656932972371578, + 0.01887447014451027, + 0.014163213782012463, + -0.0027678629849106073, + -0.00029767409432679415, + -0.016886908560991287, + 0.0015099943848326802, + 0.02128898911178112, + -0.005204465705901384, + 0.007795656565576792, + 0.011292291805148125, + -0.025588009506464005, + -0.007567455060780048, + -0.0015017129480838776, + -0.002232325728982687, + -0.007026396691799164, + -0.004987306427210569, + 0.015694372355937958, + -0.006098868325352669, + -0.011984257958829403, + -0.035422757267951965, + 0.0041849203407764435, + -0.0012771921465173364, + 0.02074424922466278, + -0.009680159389972687, + -0.007434951141476631, + 1.0696943718357943e-5, + -0.02683943696320057, + -0.014744759537279606, + 0.013508054427802563, + 0.007387102581560612, + 0.002528619486838579, + -0.005682952702045441, + 0.00785454735159874, + -0.005583574529737234, + 0.020111175253987312, + -0.004475693218410015, + -0.005491557996720076, + 0.002762341871857643, + 0.008863050490617752, + -0.005289121065288782, + 0.04787813872098923, + 0.016459951177239418, + 0.001227503060363233, + 0.0022948971018195152, + -0.011417434550821781, + -0.012801365926861763, + -0.01070338487625122, + -0.0017970865592360497, + -0.03718947991728783, + -0.006720901466906071, + 0.0234826672822237, + -0.013338743709027767, + 0.006934380158782005, + 0.010151284746825695, + -0.024056851863861084, + -0.020243678241968155, + -0.003664105897769332, + 0.004604516550898552, + 0.01604771614074707, + 0.015606035478413105, + 0.0028101906646043062, + 0.014560725539922714, + -0.002143989549949765, + 0.011152426712214947, + 0.001969157950952649, + -0.0003370112390257418, + -0.0035205597523599863, + 0.01822667196393013, + -0.011984257958829403, + -0.0034027784131467342, + 0.0025654262863099575, + 0.00197835941798985, + 0.020258400589227676, + -0.024189354851841927, + -0.004225407727062702, + -0.0010250662453472614, + 0.00428061792626977, + 0.017711378633975983, + -0.017416924238204956, + 0.006246095057576895, + 0.03545220196247101, + 0.011218678206205368, + -0.009540293365716934, + -0.010335317812860012, + -0.02411574311554432, + 0.024145187810063362, + 0.03436272591352463, + -0.0010701544815674424, + 0.011881198734045029, + 0.02761973813176155, + 0.009908360429108143, + 0.01112298108637333, + -0.008973470889031887, + -0.012183014303445816, + 0.009091252461075783, + -0.003426702693104744, + -0.013243046589195728, + 0.007298766169697046, + 0.01467850711196661, + -0.011167149059474468, + 0.012146207503974438, + 0.006592078134417534, + 0.0078030177392065525, + -0.012624694034457207, + 0.0026371991261839867, + 0.012462744489312172, + 0.010835888795554638, + 0.013066374696791172, + 0.007081606891006231, + -0.014384053647518158, + 0.007714681793004274, + 0.0030089467763900757, + 0.008494983427226543, + -0.006190884858369827, + 0.015591313131153584, + -0.003982483875006437, + 0.002217602916061878, + 0.0021145441569387913, + 0.009267924353480339, + 0.025161052122712135, + 0.004159155767410994, + 0.005454751197248697, + 0.009017638862133026, + 0.009474041871726513, + 0.009098613634705544, + -0.004630281589925289, + -0.010062948800623417, + 0.022231239825487137, + -0.006120952311903238, + 0.012801365926861763, + -0.005657188128679991, + -0.004221727140247822, + -0.003513198345899582, + 0.007133136037737131, + -0.016960522159934044, + -0.028090864419937134, + -0.007972328923642635, + 0.027752242982387543, + 0.014803649857640266, + -0.016960522159934044, + 0.022569861263036728, + -0.0013986541889607906, + 0.013029567897319794, + -0.004122348967939615, + 0.013324021361768246, + 0.015561867505311966, + -0.010129200294613838, + -0.003408299293369055, + 0.016680791974067688, + 0.016194943338632584, + 0.021230097860097885, + 0.01570909470319748, + 0.02619163878262043, + -0.017313865944743156, + 0.023600447922945023, + 0.010600326582789421, + 0.003023669356480241, + -0.008458176627755165, + -0.010563519783318043, + -0.0061835236847400665, + 0.013301936909556389, + 0.00753064826130867, + -0.0058191376738250256, + 0.0027715435717254877, + -0.015031851828098297, + -0.00933417584747076, + 0.005027793813496828, + 0.002234166022390127, + 0.015738539397716522, + -0.004155475180596113, + -0.0027991486713290215, + -0.004413121845573187, + 0.008414008654654026, + 0.01637161523103714, + -0.014847817830741405, + -0.020685359835624695, + -0.003161694621667266, + 0.010835888795554638, + -0.016548287123441696, + -0.005797053221613169, + 0.014928792603313923, + -0.004317424725741148, + 0.006595758721232414, + 0.002716333605349064, + -0.014936153776943684, + -0.019021697342395782, + -0.01429571770131588, + -0.007269321009516716, + 0.002602232852950692, + 0.006691455841064453, + -0.012816089205443859, + -0.0027439387049525976, + 0.003003425896167755, + 0.007898715324699879, + 0.00425485335290432, + 0.005793372634798288, + -0.03612944483757019, + -0.008877772837877274, + -0.015179078094661236, + 0.014811011031270027, + 0.005848582834005356, + 0.017608320340514183, + -0.0037910889368504286, + -0.013905567117035389, + 0.02826753631234169, + -0.022349020466208458, + -0.016636623069643974, + -0.003413820406422019, + 0.007677874993532896, + 0.0029758207965642214, + 0.0024605272337794304, + -0.001845855382271111, + -0.030534828081727028, + -0.007552732713520527, + -0.005936918780207634, + 0.0008644970948807895, + 0.004983625840395689, + 0.0007296925759874284, + 0.002950055990368128, + -0.006566313095390797, + 0.009466680698096752, + -0.013044290244579315, + -0.0017124311998486519, + -0.03079983778297901, + 0.000693345966283232, + -0.002245208015665412, + 0.015738539397716522, + -0.003251870861276984, + 0.011108258739113808, + -0.011608829721808434, + 0.028105586767196655, + 0.013728895224630833, + 0.015620758756995201, + -0.02149510569870472, + -0.003146971808746457, + 0.008023858070373535, + 0.0007568375440314412, + 0.006304985843598843, + 0.0035518454387784004, + -0.02716333605349064, + 0.00045985355973243713, + 0.001446502865292132, + 0.02117120660841465, + -0.007269321009516716, + 0.014428221620619297, + 0.016680791974067688, + -0.00879679899662733, + -0.033332135528326035, + 0.005469474010169506, + 0.012425937689840794, + -0.028326427564024925, + -0.008789436891674995, + 0.01660717837512493, + -0.015267414040863514, + 0.011049367487430573, + 0.00036714671296067536, + -0.002142149256542325, + 0.0032463499810546637, + 0.02401268295943737, + -0.01734331250190735, + 0.016003547236323357, + 0.002449485007673502, + -0.01944865472614765, + 0.019728384912014008, + -0.0011143224546685815, + 0.024189354851841927, + -0.01799110881984234, + 0.005355373024940491, + -0.005903793033212423, + -0.014766843058168888, + 0.022849591448903084, + -0.01603299379348755, + 0.037395596504211426, + -0.0033162825275212526, + -0.011822308413684368, + -0.015120187774300575, + -0.001891863765195012, + 0.010600326582789421, + -0.002245208015665412, + -0.00502043217420578, + 0.013736256398260593, + -0.017196085304021835, + -0.007714681793004274, + -0.012676223181188107, + 0.00532224727794528, + -0.012911786325275898, + -0.041841842234134674, + 0.007567455060780048, + 0.003047593869268894, + 0.008502344600856304, + -0.0072141108103096485, + -0.0010913183214142919, + 0.01997867040336132, + -0.029548410326242447, + -0.0199639480561018, + -0.016091885045170784, + 0.016842741519212723, + -0.017652487382292747, + -1.705184877209831e-5, + -0.00795760564506054, + -0.0005304763908497989, + 0.0006367557216435671, + -0.006639926694333553, + -0.005981086753308773, + -0.016106607392430305, + 0.0032721145544201136, + -0.020228955894708633, + -0.014052793383598328, + -0.010659216903150082, + -0.01489934790879488, + 0.008082748390734196, + -0.014361970126628876, + -0.015252691693603992, + 0.003097282722592354, + -0.013611113652586937, + -0.0020317290909588337, + -0.001625935430638492, + -0.005970044992864132, + -0.0022433677222579718, + -0.019492821767926216, + 0.026383034884929657, + 0.003982483875006437, + 0.004490416031330824, + -0.006017893552780151, + 0.011284930631518364, + 0.0013931331923231483, + 0.011380627751350403, + 0.004685491323471069, + 0.0002937633835244924, + -0.028944779187440872, + 0.021480383351445198, + 0.01701941341161728, + 0.00034506269730627537, + 0.009150142781436443, + 0.0026629639323800802, + -0.0010646334849298, + -0.02904783934354782, + 0.015105465427041054, + -0.008090110495686531, + -0.019463377073407173, + -0.005138213746249676, + 0.012919147498905659, + 0.009157503955066204, + -0.010246981866657734, + 0.002766022691503167, + -0.0017271538963541389, + -0.002070376183837652, + 0.0021826366428285837, + -0.001417057472281158, + -0.018079444766044617, + 0.006709859240800142, + 0.01679857261478901, + -0.019919779151678085, + 0.010467822663486004, + -0.01635689288377762, + -0.044815823435783386, + -0.014406138099730015, + -0.003353089326992631, + 0.021436216309666634, + -0.016739681363105774, + 0.0021200652699917555, + -0.0019084267551079392, + 0.006588397081941366, + 0.025911908596754074, + -0.013014844618737698, + -0.011380627751350403, + 0.011829669587314129, + -0.0030751987360417843, + 0.001327801262959838, + -0.012411215342581272, + 0.011012561619281769, + 0.001300196279771626, + 0.004541945178061724, + 0.005215507932007313, + 0.009923082776367664, + -0.0026684848126024008, + 0.011535216122865677, + 0.0017317547462880611, + -0.0001199667967739515, + 0.019286705181002617, + 0.02074424922466278, + -0.012249265797436237, + -0.00993044488132, + 0.02717805840075016, + -0.011189233511686325, + 0.0039567188359797, + -0.015414641238749027, + -0.016754403710365295, + -0.014457667246460915, + -0.002480770694091916, + 0.0016958682099357247, + -0.005671910475939512, + 0.012102039530873299, + 0.023497389629483223, + -0.0013977340422570705, + -0.013736256398260593, + -0.01657773181796074, + 0.017210807651281357, + -0.02248152531683445, + -0.009915721602737904, + 0.011866476386785507, + 0.009245839901268482, + -0.0038278955034911633, + 0.028296982869505882, + 0.009834746830165386, + -3.022174132638611e-5, + -0.010681301355361938, + -0.0017970865592360497, + 0.032566558569669724, + -0.009466680698096752, + 0.019831443205475807, + -0.01282345037907362, + -0.01944865472614765, + -0.0018808217719197273, + 0.013220962136983871, + -0.002366670174524188, + 0.0024476447142660618, + -0.011549938470125198, + -0.002110863570123911, + 0.020817862823605537, + -0.023850733414292336, + 0.012286072596907616, + -0.0008171084919013083, + 0.0018670192221179605, + -0.0016489396803081036, + -0.0056645493023097515, + 0.01244066096842289, + 0.011189233511686325, + -0.001698628650046885, + 0.015900488942861557, + 0.0032426691614091396, + 0.016239110380411148, + 0.004188600927591324, + 0.02421880140900612, + -0.032596003264188766, + 1.7799484339775518e-5, + 0.009915721602737904, + -0.0034175009932368994, + -0.014045432209968567, + 0.01107145193964243, + 0.005134533159434795, + -0.011115619912743568, + -0.00575288524851203, + -0.012425937689840794, + -0.018064722418785095, + 0.014730037190020084, + -0.008207891136407852, + 0.007258278783410788, + 0.008163723163306713, + -0.005285440478473902, + -0.012676223181188107, + 0.017976386472582817, + 0.01079908199608326, + 0.017637765035033226, + 0.004472012631595135, + -0.01031323429197073, + 0.003516879165545106, + 0.018580015748739243, + 0.013773063197731972, + 1.6332967788912356e-5, + -0.0035573665518313646, + 0.011468963697552681, + -0.0005456591607071459, + -0.017549429088830948, + -0.017048858106136322, + 0.012079955078661442, + 0.018712520599365234, + 0.02683943696320057, + 0.004976264201104641, + 0.006573674734681845, + -0.0007908837287686765, + -0.023188212886452675, + 0.021465661004185677, + 0.002764182398095727, + 0.008340395987033844, + 0.003128568409010768, + -0.008958747610449791, + -0.008333033882081509, + 0.02476353943347931, + 0.010666578076779842, + 0.0006390561466105282, + -0.013412357307970524, + 0.0025672665797173977, + 0.0037469209637492895, + 0.011630913242697716, + 0.00714785885065794, + 0.006680414080619812, + -0.002140308963134885, + -0.003632820211350918, + 0.009518209844827652, + 0.009731688536703587, + -0.0005258755409158766, + 0.002097981283441186, + 0.003689870471134782, + -0.005719759501516819, + -0.0038278955034911633, + 0.017961664125323296, + 0.00819316878914833, + -0.018418066203594208, + 0.001742796739563346, + 0.0171371940523386, + -0.0170341357588768, + 0.0091722272336483, + 0.01846223510801792, + 0.025676345452666283, + 0.01310318149626255, + 0.024380750954151154, + -0.013404996134340763, + 0.000450421852292493, + -0.009400428272783756, + 0.04416802525520325, + 0.018270840868353844, + -0.001989401411265135, + 0.012072593905031681, + 0.003649383084848523, + 0.009025000035762787, + 0.00014964219008106738, + -0.001683905953541398, + -0.015370473265647888, + 0.0010968393180519342, + -0.020449796691536903, + -0.009135420434176922, + -0.007795656565576792, + 0.015179078094661236, + -0.003073358442634344, + 0.009245839901268482, + -0.009805302135646343, + -0.0039567188359797, + -0.01026170514523983, + -0.002055653603747487, + 0.031594861298799515, + -0.012978038750588894, + 0.0024770901072770357, + -0.012897063978016376, + -0.03342047333717346, + 0.010143923573195934, + 0.02159816399216652, + 0.007589539047330618, + 0.01964004896581173, + -0.00044835146400146186, + -0.01425154972821474, + -0.021347878500819206, + -0.003023669356480241, + -0.010026142001152039, + 0.01648939587175846, + -0.007015354931354523, + 0.022952651605010033, + -0.01358902920037508, + -0.029754526913166046, + -0.0041849203407764435, + -0.002440283540636301, + -0.015039213001728058, + -0.01108617428690195, + -0.011719249188899994, + 0.01217565219849348, + -0.0005364574608393013, + -0.002140308963134885, + -0.003128568409010768, + -0.014943515881896019, + 0.009783217683434486, + -0.00045870334724895656, + -0.007832462899386883, + -0.015444086864590645, + 0.007372379768639803, + 0.0017860445659607649, + 0.004917373415082693, + 0.006941741332411766, + -0.00468917191028595, + 0.008767353370785713, + 0.01385403797030449, + 0.0006155918817967176, + -0.013036929070949554, + -0.0016010910039767623, + -0.013957096263766289, + -0.0022948971018195152, + -0.01616549678146839, + 0.022937927395105362, + -0.006397002376616001, + 0.018697798252105713, + -0.014457667246460915, + 0.015370473265647888, + 0.010394209064543247, + -0.005163978319615126, + 0.019801998510956764, + 0.012249265797436237, + -0.014332524500787258, + 0.006823960226029158, + 0.023777121677994728, + 0.05094045773148537, + 0.004361592698842287, + -0.022952651605010033, + -0.00337149272672832, + -0.008347757160663605, + 0.0006767829763703048, + -0.003982483875006437, + 0.008907218463718891, + -0.0079134376719594, + 0.00115388969425112, + 0.020773695781826973, + 0.006676733493804932, + 0.009245839901268482, + -0.000155163201270625, + 0.014921431429684162, + -0.010769637301564217, + -0.007468076888471842, + -0.016636623069643974, + 0.003023669356480241, + 0.007582177873700857, + -0.018050000071525574, + -0.005583574529737234, + 0.012190375477075577, + 0.007979690097272396, + 0.000991020118817687, + -0.01534102763980627, + 0.015767985954880714, + 0.006912296172231436, + -0.018153058364987373, + -0.014722675085067749, + 0.021112317219376564, + -0.00965071376413107, + 0.006168800871819258, + -0.007342934142798185, + -0.030093148350715637, + -0.003986164461821318, + 0.03262544795870781, + 0.002455006120726466, + -0.014177936129271984, + 0.00879679899662733, + -0.010004057548940182, + 0.028665049001574516, + 0.012234543450176716, + -0.005138213746249676, + -0.012506912462413311, + 0.015076019801199436, + -0.01461961679160595, + 0.023217659443616867, + -0.011218678206205368, + -0.009128058329224586, + -0.0013195198262110353, + 0.0013784104958176613, + 0.0012293433537706733, + 0.012683585286140442, + -0.01952226832509041, + -0.012764559127390385, + -0.013309299014508724, + -0.002762341871857643, + -0.0032297868747264147, + -0.015885766595602036, + 0.0012873138766735792, + 0.013809869065880775, + 0.0015035532414913177, + 0.005624061916023493, + 0.008406647481024265, + 0.020361460745334625, + 0.0158268753439188, + -0.0005116129759699106, + 0.023320717737078667, + 0.017078302800655365, + -0.007950244471430779, + -0.009518209844827652, + 0.00900291558355093, + -0.011984257958829403, + 0.011756055988371372, + -0.005763927474617958, + -0.006514783948659897, + -0.009967251680791378, + -0.019168922677636147, + 0.006993270944803953, + -0.005598297342658043, + -0.00603261636570096, + 0.0003471330855973065, + 0.015620758756995201, + 0.021480383351445198, + 0.028797553852200508, + 0.005815456621348858, + 0.025823572650551796, + -0.000619732600171119, + -0.019036419689655304, + -0.0057418434880673885, + -0.0052928016521036625, + -0.02072952687740326, + 0.0007333732792176306, + 0.010136562399566174, + 0.012286072596907616, + -0.018712520599365234, + 0.024424917995929718, + -0.002123745856806636, + 0.013346104882657528, + -0.004052416421473026, + 0.005458431784063578, + -0.006466935388743877, + 0.012271350249648094, + -0.014391414821147919, + -0.008973470889031887, + 0.011998980306088924, + 0.006224011071026325, + -0.025234665721654892, + 0.006628884468227625, + 0.008347757160663605, + 0.002348266774788499, + -0.010710746049880981, + -0.005546767730265856, + -0.019831443205475807, + -0.015723817050457, + 0.0001433160505257547, + -0.0010508309351280332, + -0.0017473975894972682, + 0.013316660188138485, + 0.017269698902964592, + -0.00283779576420784, + 0.012146207503974438, + -0.002247048309072852, + -0.003178257495164871, + -0.0038021309301257133, + -0.009716966189444065, + 0.004744382109493017, + 0.004810634069144726, + -0.01282345037907362, + -0.015547145158052444, + 0.011756055988371372, + 0.016886908560991287, + 0.011211317032575607, + 0.009341537952423096, + -0.010158645920455456, + -0.007033758331090212, + -0.0051087685860693455, + -0.04658254608511925, + -0.004324785899370909, + -0.010121839120984077, + -0.0017961664125323296, + -0.0011603308375924826, + 0.00031699761166237295, + 0.005918515380471945, + 0.0020335696171969175, + 0.003579450538381934, + 0.0018292923923581839, + 0.006301305256783962, + -8.603563765063882e-5, + -0.014759481884539127, + 0.018476957455277443, + 0.01064449455589056, + -0.0052559953182935715, + 0.014288356527686119, + 0.0019728385377675295, + 0.010180730372667313, + 0.014546003192663193, + 0.003384375013411045, + -0.003010787069797516, + 0.005215507932007313, + -0.0027881066780537367, + 0.0031966608949005604, + -0.028444208204746246, + 0.015974102541804314, + -0.013368189334869385, + 0.010931586846709251, + 0.0010563519317656755, + 0.029106728732585907, + 0.00884832814335823, + -6.58494682284072e-5, + 0.004299021326005459, + 0.012124123051762581, + 0.005708717275410891, + -0.003857340896502137, + 0.002276493702083826, + -0.00638596061617136, + 0.0040708198212087154, + 0.024307137355208397, + -0.01146160252392292, + -0.0091722272336483, + 0.009363621473312378, + -0.0071441782638430595, + 0.013780424371361732, + -0.0029298122972249985, + 0.025779403746128082, + -0.0022415274288505316, + 0.011608829721808434, + -0.012050509452819824, + 0.008531790226697922, + -0.007063203491270542, + 0.009363621473312378, + -0.0019047461682930589, + 0.003632820211350918, + -0.0048842476680874825, + -0.01037212461233139, + -0.00752696767449379, + -0.018624184653162956, + -0.011630913242697716, + -0.00392727367579937, + 0.005215507932007313, + 0.014472389593720436, + 0.017402201890945435, + -0.0017952462658286095, + 0.0017639605794101954, + -0.014413499273359776, + -0.01004822552204132, + -0.040781810879707336, + 0.0042622145265340805, + -0.002497333800420165, + -0.006974867545068264, + 0.00828886590898037, + -0.005554129369556904, + 0.00923111755400896, + -0.0015302380779758096, + -0.013795146718621254, + 0.022937927395105362, + -0.007081606891006231, + -0.02301154099404812, + -0.0021311072632670403, + -0.008671656250953674, + -0.019124755635857582, + -0.031800977885723114, + -0.007033758331090212, + -0.012698307633399963, + 0.0079134376719594, + -0.0346866250038147, + -0.0247929859906435, + -0.0018375739455223083, + -0.01130701508373022, + -0.014663784764707088, + 0.004622919950634241, + -0.007626345846801996, + 0.02072952687740326, + -0.027133891358971596, + 0.016003547236323357, + -0.0011198434513062239, + 0.014936153776943684, + -0.01594465784728527, + 0.014391414821147919, + -0.011248123832046986, + -0.0009137260494753718, + -0.008399286307394505, + -0.022334298118948936, + 0.02192206308245659, + 0.015223246067762375, + -9.4202121545095e-5, + 0.016312723979353905, + 0.001166771980933845, + 0.0005677431472577155, + 0.002973980503156781, + -0.012425937689840794, + 0.008053303696215153, + -0.0262063629925251, + -0.002973980503156781, + 0.010857973247766495, + -0.0035941731184720993, + 0.00044881156645715237, + -0.00046905523049645126, + 0.0021513509564101696, + -0.005866986233741045, + 0.011373266577720642, + -0.004273256752640009, + 0.01283081155270338, + -0.00014596153050661087, + 0.004512500017881393, + -0.007817740552127361, + -0.008318311534821987, + 0.015164355747401714, + -0.00021094833209645003, + -0.051912155002355576, + -0.004670768976211548, + 0.014200020581483841, + -0.006676733493804932, + 0.01179286278784275, + -0.011704526841640472, + 0.01424418855458498, + -0.01997867040336132, + 0.0028838040307164192, + 0.015399918891489506, + 0.013287214562296867, + 0.0018394142389297485, + -0.009687520563602448, + -0.009304731152951717, + -0.002808350371196866, + 0.009864192456007004, + 0.01173397246748209, + -0.003336526220664382, + 0.031594861298799515, + 0.006923337932676077, + -0.009967251680791378, + -0.004078180994838476, + -0.0011272048577666283, + -0.02072952687740326, + 0.007869269698858261, + 0.0050425161607563496, + -0.01659245602786541, + 0.014435582794249058, + -0.001891863765195012, + -0.02891533449292183, + 0.00048124746535904706, + -0.004887928254902363, + 0.008885134942829609, + -0.0019084267551079392, + -0.0012827131431549788, + 0.008119555190205574, + 0.004317424725741148, + 0.00045019181561656296, + 0.0028101906646043062, + -0.004932096228003502, + -0.0007490161224268377, + 0.002259930595755577, + 0.048525936901569366, + 0.021877896040678024, + -0.019566435366868973, + -0.002907728310674429, + -0.008082748390734196, + -0.03244877606630325, + 0.0067724306136369705, + -0.009974612854421139, + -0.02162761054933071, + -0.00019035959849134088, + 0.03533441945910454, + -0.002618795959278941, + 0.0068055568262934685, + 0.004221727140247822, + -0.017829159274697304, + 0.014479751698672771, + -0.01899225078523159, + -0.01528213731944561, + -0.008811521343886852, + 0.009010277688503265, + -0.015399918891489506, + -0.007574816700071096, + 0.0026776865124702454, + 0.014781566336750984, + 0.01821194961667061, + 0.004162836354225874, + -0.012955954298377037, + -0.013714171946048737, + -0.010578242130577564, + -0.022643474861979485, + 0.03109429031610489, + -0.008053303696215153, + -0.029518963769078255, + 0.008583319373428822, + -0.00671722088009119, + 0.0007563774706795812, + 0.01591521129012108, + 0.0010526713449507952, + 0.002556224586442113, + -0.008973470889031887, + -0.010202813893556595, + -0.03153597190976143, + 0.014877263456583023, + -0.004696533549576998, + -0.013898205943405628, + 0.004085542634129524, + 0.026265252381563187, + -0.008325672708451748, + 0.00141889788210392, + -0.020464519038796425, + -0.006010532379150391, + -0.003012627363204956, + -0.01069602370262146, + -0.004468332044780254, + -0.017181362956762314, + 0.015576590783894062, + 0.002997904783114791, + -0.022952651605010033, + -0.004597155377268791, + 0.004795911721885204, + -0.007243556436151266, + 0.007692597806453705, + 0.02564690075814724, + 0.026221085339784622, + -0.005712397862225771, + 0.03512830287218094, + -0.008391925133764744, + 3.1141909857979044e-5, + 0.0025175774935632944, + 0.004203323740512133, + 0.0038058115169405937, + -0.01930142752826214, + -0.010335317812860012, + 0.0006970266695134342, + -0.00895138643682003, + -0.021244820207357407, + -0.006617842707782984, + -0.016724959015846252, + -0.0013986541889607906, + 0.022555138915777206, + 0.01206523273140192, + 0.0011603308375924826, + -0.01592993550002575, + -0.016724959015846252, + -0.01715191639959812, + 0.0034598286729305983, + -0.007641068659722805, + 0.011137704364955425, + 0.009797940030694008, + 0.014516557566821575, + -0.008097471669316292, + -0.020214233547449112, + -0.01259524840861559, + 0.004987306427210569, + 0.0025727874599397182, + -0.018580015748739243, + 0.0023887541610747576, + 0.00861276499927044, + 0.0030954424291849136, + 0.016842741519212723, + 0.019389763474464417, + -0.002063014777377248, + 0.012352325022220612, + -0.0016885068034753203, + 0.0008824403630569577, + -0.021642332896590233, + 0.014663784764707088, + -0.007714681793004274, + -0.005204465705901384, + 0.003964080475270748, + -0.025632178410887718, + 0.036070555448532104, + 0.005138213746249676, + 0.0014575448585674167, + 0.00884832814335823, + 0.026456648483872414, + 0.0005939679103903472, + 0.011748694814741611, + 0.009694881737232208, + -0.0015164355281740427, + 0.006492699962109327, + 0.01179286278784275, + 0.023188212886452675, + -0.0055872551165521145, + 0.018197227269411087, + 0.0031432912219315767, + -0.004022971261292696, + 0.019610604271292686, + -0.012948593124747276, + -0.03194820508360863, + 0.013471247628331184, + 0.016209665685892105, + -0.012124123051762581, + 0.004129710607230663, + -0.015414641238749027, + -0.0036015345249325037, + 0.0016480195336043835, + -0.007876631803810596, + 0.00850970670580864, + -0.00461555877700448, + -0.01613605208694935, + 0.014111684635281563, + 0.0342743881046772, + 0.003266593674197793, + 0.004597155377268791, + 0.0027512998785823584, + -0.0022507288958877325, + 0.026559706777334213, + 0.008936664089560509, + 0.011918005533516407, + 0.0017777630127966404, + 0.006783472839742899, + -0.007302447222173214, + 0.01353013888001442, + 0.008539151400327682, + 0.0012044989271089435, + -0.016298001632094383, + 0.01288234069943428, + 0.0031304089352488518, + 0.005863305646926165, + 0.013979180715978146, + 0.00464132335036993, + 0.018638907000422478, + 0.025499673560261726, + 0.008428731933236122, + -0.012072593905031681, + -0.006893892772495747, + 0.003651223611086607, + -0.01456808764487505, + -0.009407789446413517, + 0.007729404605925083, + 0.010070309974253178, + -0.0010554317850619555, + 0.0022783339954912663, + 0.004210685379803181, + 0.011049367487430573, + -0.00884832814335823, + -0.004343189299106598, + -0.014825734309852123, + 0.0024476447142660618, + -0.0014234987320378423, + -0.0022801742888987064, + 0.01778499223291874, + -0.005311205051839352, + 0.0046339621767401695, + 0.011542577296495438, + -0.008333033882081509, + -0.0007812219555489719, + 0.010077671147882938, + -0.007328211795538664, + 0.015164355747401714, + 0.017534706741571426, + 0.0004198263050056994, + -0.004751743283122778, + 0.0011253644479438663, + -0.002066695597022772, + 0.006146716885268688, + -0.006051019765436649, + -0.03601166233420372, + 0.007313488982617855, + 0.0024642078205943108, + 0.002245208015665412, + -0.021686501801013947, + -0.0017759227193892002 + ], + "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9": [ + -0.014533577486872673, + -0.036588799208402634, + -0.005072976462543011, + 0.0016315835528075695, + -0.04223691672086716, + -0.0113306799903512, + -0.022509824484586716, + 0.007232348900288343, + -0.023501690477132797, + 0.018445933237671852, + -0.011909267865121365, + 0.07207552343606949, + -0.013555488549172878, + -0.04818810895085335, + -0.004645923152565956, + 0.03275909647345543, + -0.021531736478209496, + 0.02627064660191536, + 0.0011227361392229795, + 0.004539160057902336, + 0.06662026792764664, + -0.018170416355133057, + -0.03559693321585655, + 0.04353185370564461, + -0.008231101557612419, + -0.032180510461330414, + 0.00887856911867857, + 0.009574252180755138, + -0.050364699214696884, + 0.023102188482880592, + 0.037277594208717346, + 0.0018786888103932142, + 0.013176650740206242, + -0.008782138116657734, + 0.018321949988603592, + -0.04496454820036888, + -0.004074223339557648, + 0.01552544254809618, + 0.0036678342148661613, + -0.034522414207458496, + -0.04237467795610428, + 0.03862763196229935, + 0.007042930461466312, + -0.03595510497689247, + -0.06662026792764664, + 0.037883732467889786, + -0.015098389238119125, + -0.03507344797253609, + 0.03135395422577858, + -0.005021316464990377, + 0.011323791928589344, + -0.04953814670443535, + 0.0018218631157651544, + 0.004101775120943785, + 0.029976364225149155, + -0.012260553427040577, + 0.02314351685345173, + 0.04441351071000099, + 0.003426755778491497, + -0.030059020966291428, + 0.005761771462857723, + -0.00419476255774498, + -0.025072142481803894, + 0.0012716880301013589, + -0.03394382447004318, + -0.027965083718299866, + -0.0038090371526777744, + -0.0033595983404666185, + -0.0606139712035656, + -0.01310777198523283, + 0.016517307609319687, + 0.05446992069482803, + -0.01861124485731125, + -0.0029566532466560602, + -0.03184988722205162, + -0.043945129960775375, + 0.043201230466365814, + -0.010228607803583145, + -0.013273082673549652, + 0.020774060860276222, + -0.01384478248655796, + -0.009470933116972446, + 0.01136512029916048, + -0.00016983105160761625, + 0.07213062793016434, + -0.0010865742806345224, + -0.009085208177566528, + -0.03069271147251129, + 0.020470991730690002, + -0.021297546103596687, + 0.01567697711288929, + 0.017798466607928276, + 0.00277067837305367, + 0.03165702521800995, + -0.00031878301524557173, + -0.015635650604963303, + 0.03906846046447754, + 0.009181639179587364, + 0.0059133064933121204, + 0.0025003263726830482, + 0.031133539974689484, + 0.021945012733340263, + -0.02824060060083866, + 0.02468641847372055, + -0.014519801363348961, + 0.011826612986624241, + 0.009140311740338802, + -0.0092780701816082, + -0.01739896461367607, + 0.048050347715616226, + 0.0001570237654959783, + -0.035734690725803375, + 0.04546048119664192, + -0.01126868836581707, + -0.031161092221736908, + -0.018032656982541084, + 0.0314917154610157, + -0.02522367797791958, + -0.021876133978366852, + -0.03771842271089554, + 0.03099578060209751, + 0.02308841235935688, + -0.019575558602809906, + 0.034522414207458496, + -0.017412740737199783, + 0.01527747604995966, + 0.00243489071726799, + 0.0010039189364761114, + 0.0002781010407488793, + 0.02671147510409355, + -0.0014309718972072005, + 0.014616233296692371, + 0.00998752936720848, + 0.026835458353161812, + 0.02934267371892929, + -0.0036884979344904423, + -0.0008945727022364736, + 0.0576934814453125, + -0.01654485985636711, + 0.03876538947224617, + -0.01996128261089325, + -0.06221197918057442, + -0.006037289276719093, + 0.0024228368420153856, + 0.0030393085908144712, + 0.01084163598716259, + -0.04176853597164154, + 0.013025116175413132, + -0.005093640182167292, + 0.041933849453926086, + -0.05664651095867157, + -0.03620307147502899, + 0.03851742297410965, + 0.016861705109477043, + -0.01120669674128294, + -0.02296443097293377, + -0.018886763602495193, + 0.0030651383567601442, + 0.03499079495668411, + 0.009615580551326275, + 0.03253868222236633, + -0.05868534743785858, + 0.02854367159307003, + -0.0071634696796536446, + 0.05047490820288658, + 0.008306869305670261, + -0.0013379845768213272, + 0.008299981243908405, + -0.031574368476867676, + 0.029012052342295647, + 0.011867940425872803, + -0.020195472985506058, + -0.013403953053057194, + -0.014010093174874783, + 0.008671930991113186, + 0.010207943618297577, + 0.008210438303649426, + 0.0061302767135202885, + 0.005920194089412689, + -0.025512972846627235, + -0.015621873550117016, + 0.0010030579287558794, + 0.008148446679115295, + -0.020484767854213715, + -0.026794131845235825, + 0.0016091977013275027, + 0.014010093174874783, + 0.02051232010126114, + -0.0012398312101140618, + -0.025678282603621483, + -0.008403300307691097, + -0.016255564987659454, + -0.029232466593384743, + 0.016434652730822563, + -0.061716046184301376, + -0.004046671558171511, + 0.0226062573492527, + -0.012728934176266193, + -0.0039640162140131, + 0.00047225516755133867, + -0.02193123660981655, + -0.049648355692625046, + -0.02523745410144329, + 0.02419048547744751, + -0.043586958199739456, + 0.006509114056825638, + -0.03821435570716858, + -0.017440292984247208, + -0.005589572712779045, + -0.019878627732396126, + 0.04427575320005417, + -0.028819188475608826, + 0.001697879983112216, + 0.006963718682527542, + -0.014988182112574577, + -0.0034456977155059576, + -0.008169110864400864, + 0.02768956497311592, + 0.0062714796513319016, + -0.03942663222551346, + -0.031326401978731155, + -0.011874828487634659, + -0.013376401737332344, + -0.025678282603621483, + -0.053918883204460144, + -0.0012665221001952887, + -0.00465625524520874, + 0.026835458353161812, + -0.07069793343544006, + 0.013583039864897728, + 0.06755702942609787, + 0.008003799244761467, + 0.001244997256435454, + -0.015580546110868454, + -0.012494743801653385, + 0.023749656975269318, + 0.004263641778379679, + 0.018528589978814125, + -0.006898283492773771, + -0.01635199598968029, + 0.013927437365055084, + 0.024218037724494934, + 0.030665159225463867, + 0.005937414243817329, + 0.014712664298713207, + -0.03380606696009636, + 0.04402778670191765, + 0.022551152855157852, + 0.02358434535562992, + -0.03477037698030472, + 0.008802802301943302, + 0.0023332934360951185, + 0.021641943603754044, + -0.0440828874707222, + -0.030472297221422195, + 0.061716046184301376, + 0.018321949988603592, + -0.022454721853137016, + 0.01319731492549181, + -0.01524992473423481, + 0.012184785678982735, + 0.015718305483460426, + 0.05587506294250488, + 0.004780238494277, + 0.03339278697967529, + -0.01679282635450363, + 0.02107713185250759, + -0.035376518964767456, + 0.001390505232848227, + 0.004790570121258497, + -0.04052870720624924, + 0.010965618304908276, + 0.009822218678891659, + -0.009546700865030289, + -0.00459426362067461, + 0.012832253240048885, + 0.00776272127404809, + -0.017054567113518715, + 0.0009023216553032398, + -0.02934267371892929, + -0.007652514148503542, + 0.012542959302663803, + 0.02859877422451973, + 0.02854367159307003, + 0.004618371371179819, + -0.0012820200063288212, + -0.012790925800800323, + -0.006116501055657864, + -0.03551427647471428, + 0.00900255236774683, + -0.0037229377776384354, + 0.012577399611473083, + 0.017068343237042427, + 0.02616043947637081, + 0.010414582677185535, + -0.00417754240334034, + -0.028213048353791237, + -0.041052188724279404, + -0.05493830144405365, + 0.004628703463822603, + -0.02701454609632492, + 0.017316309735178947, + 0.0268216822296381, + -0.04738910496234894, + 0.030472297221422195, + -0.027331391349434853, + 0.07819202542304993, + 0.030610056594014168, + -0.04490944370627403, + 0.006598657462745905, + -0.0071359178982675076, + -0.015759631991386414, + -0.012804701924324036, + -0.016214238479733467, + 0.003905468387529254, + -0.010669436305761337, + 0.014506026171147823, + -0.0027637905441224575, + 0.002465886529535055, + -0.009167863056063652, + 0.02040211297571659, + 0.003791817231103778, + -0.07262656092643738, + 0.013211091049015522, + 0.0038916924968361855, + -0.04490944370627403, + 0.030775366351008415, + -0.030582504346966743, + 0.008830353617668152, + -0.023625673726201057, + -0.008251765742897987, + -0.00667442474514246, + -0.07587767392396927, + 0.006584881339222193, + -0.017343861982226372, + -0.0493728369474411, + -0.031381506472826004, + -0.04220936819911003, + -0.006285255774855614, + 0.015608098357915878, + -0.005503473337739706, + 0.011571758426725864, + -0.04871159419417381, + 0.0007843654602766037, + -0.002264413982629776, + -0.00014819858188275248, + -0.0001113910911954008, + 0.01812908798456192, + -0.005655007902532816, + 8.706800872460008e-5, + 0.0008902677218429744, + -0.014643784612417221, + 0.027221184223890305, + 0.022440945729613304, + 0.039839912205934525, + -0.01622801274061203, + 0.03014167584478855, + -0.018349502235651016, + -0.0035920666996389627, + 0.005634344182908535, + 0.035734690725803375, + -0.017564276233315468, + 0.0015472060767933726, + -0.02217920310795307, + -0.012694494798779488, + 0.005813430994749069, + -0.008244877681136131, + -0.004063891246914864, + 0.009291846305131912, + 0.03143661096692085, + 0.005441481713205576, + 0.013328186236321926, + 0.019396470859646797, + -0.021421529352664948, + -0.0079280324280262, + -0.021022027358412743, + 0.047361552715301514, + -0.03080291859805584, + -0.05309233069419861, + 0.011840388178825378, + -0.02829570509493351, + 0.01935514435172081, + 0.007246125023812056, + -0.017660707235336304, + 0.019630661234259605, + 0.05232087895274162, + -0.009519148617982864, + -0.013954989612102509, + 0.052155569195747375, + 0.027730893343687057, + -0.061771146953105927, + 0.019947506487369537, + -0.0220414437353611, + 0.019396470859646797, + -0.01807398535311222, + 0.03950928896665573, + 0.005252062808722258, + -0.019465351477265358, + 0.010435246862471104, + -0.007804049178957939, + -0.022757790982723236, + -0.026725251227617264, + 0.011695741675794125, + 9.955242421710864e-5, + 0.048601385205984116, + -0.03496324270963669, + -0.010387030430138111, + -0.03521120920777321, + 0.015663200989365578, + -0.04488189145922661, + 0.014671336859464645, + -0.00482500996440649, + 0.03501834347844124, + -0.012790925800800323, + 0.006364467088133097, + -0.012480967678129673, + 0.005799655336886644, + 0.014919302426278591, + -0.05011673644185066, + -0.04121750220656395, + 0.050805531442165375, + 0.050557564944028854, + -0.019010746851563454, + 0.02303330972790718, + -0.0226613599807024, + 0.03416423872113228, + 0.0001728445349726826, + 0.01068321242928505, + -0.026077784597873688, + -0.03154681622982025, + -0.007191021461039782, + 0.003006590763106942, + 0.024052726104855537, + -0.015911167487502098, + -0.001357787405140698, + -0.037277594208717346, + 0.028571221977472305, + -0.015663200989365578, + -0.010331926867365837, + -0.030334537848830223, + 0.00249688234180212, + 0.0012854639207944274, + 0.014643784612417221, + -0.01019416842609644, + 0.007611186243593693, + -0.016999464482069016, + -0.017123447731137276, + 0.008003799244761467, + 0.010221719741821289, + 0.02070518210530281, + 0.009946201927959919, + 0.03501834347844124, + -0.026325751096010208, + 0.002808562247082591, + -0.01151665486395359, + -0.012666942551732063, + -0.01923116110265255, + -0.014685112051665783, + 0.0070739262737333775, + -0.026725251227617264, + 0.004849117714911699, + -0.011826612986624241, + -0.012811589986085892, + -0.006095836870372295, + 0.011089601553976536, + -0.03956439346075058, + 0.0027345167472958565, + 0.024107830598950386, + 0.005985629744827747, + 0.02591247297823429, + -0.02591247297823429, + -0.02509969472885132, + 8.83864049683325e-6, + 0.03791128471493721, + -0.006119944620877504, + -0.023253723978996277, + -0.0018545809434726834, + 0.000597099307924509, + -0.0003715188940986991, + -0.0026690810918807983, + -0.01812908798456192, + -0.015057061798870564, + -0.02289555035531521, + 0.02633952535688877, + -0.008403300307691097, + -0.006781188305467367, + 0.029783502221107483, + -0.04603906720876694, + -0.007707617711275816, + -0.04110729321837425, + 0.04934528470039368, + 0.022096548229455948, + 0.00022708714823238552, + 0.008561723865568638, + 0.002920491388067603, + -0.014547353610396385, + -0.003366486169397831, + -0.013479720801115036, + -0.020112818107008934, + -0.012818478047847748, + 0.04540537670254707, + -0.012742710299789906, + -0.017853569239377975, + 0.025829818099737167, + -0.006577993743121624, + 0.02149040810763836, + -0.02381853573024273, + -0.020002610981464386, + 0.00801757536828518, + 0.008582387119531631, + -0.024025173857808113, + -0.014409594237804413, + -0.03344789147377014, + 0.0036678342148661613, + -0.0050557563081383705, + 0.015883615240454674, + -0.018652573227882385, + -0.004384180996567011, + 0.029012052342295647, + -0.009849770925939083, + -6.037719867890701e-5, + -0.0005028204759582877, + -0.001303544850088656, + 0.003340656403452158, + -0.019024521112442017, + -7.974955951794982e-5, + -0.008492844179272652, + -0.03375096246600151, + 0.018170416355133057, + -0.014712664298713207, + -0.03355810046195984, + -0.00038787777884863317, + 0.0143958181142807, + 0.002713852794840932, + 0.022399617359042168, + 0.015429011546075344, + -0.015690753236413002, + -0.013279970735311508, + 0.016117805615067482, + 0.03851742297410965, + -0.035376518964767456, + -0.0014318329049274325, + 0.014643784612417221, + -0.012722046114504337, + -0.009257406927645206, + 0.023363931104540825, + -0.011447775177657604, + 0.03435710072517395, + -0.007397660054266453, + 0.004377292934805155, + -0.029563087970018387, + 0.033888719975948334, + 0.0006285255658440292, + -0.0003943352203350514, + 0.010972506366670132, + -0.02639462985098362, + 0.054111745208501816, + -0.03358565270900726, + -0.029976364225149155, + -0.01301134005188942, + -0.00845151674002409, + 0.01861124485731125, + 0.004559823777526617, + 0.014423370361328125, + -0.021655719727277756, + -0.018597468733787537, + 0.0018304730765521526, + -0.00903699267655611, + 0.015787184238433838, + 0.016572410240769386, + 0.014561129733920097, + 0.008189774118363857, + 0.03780107572674751, + -0.012370760552585125, + -0.009085208177566528, + 0.02173837460577488, + -0.015608098357915878, + -0.012219225987792015, + -0.01512594148516655, + -0.000961730198469013, + 0.023419035598635674, + -0.027414046227931976, + -0.0017943113343790174, + -0.018239295110106468, + 0.016338221728801727, + 0.025251230224967003, + -0.012060803361237049, + -0.002517546294257045, + 0.01130312867462635, + 0.02388741634786129, + -0.00021126637875568122, + 0.021848581731319427, + 0.013369513675570488, + -0.0061027249321341515, + -0.015084614045917988, + 0.024521106854081154, + -0.008361972868442535, + 0.005785879213362932, + 0.014671336859464645, + -0.013493496924638748, + 0.009553588926792145, + 0.031326401978731155, + -0.0002697063609957695, + -0.0014559407718479633, + -0.039536841213703156, + 0.015332579612731934, + -0.00010482600919203833, + 0.020539870485663414, + -0.014547353610396385, + 0.029618190601468086, + 0.006870731711387634, + 0.009050767868757248, + 0.021765926852822304, + -0.0005803098902106285, + 0.017798466607928276, + -0.007934920489788055, + 0.005231399089097977, + 0.04692072421312332, + 0.02106335572898388, + -0.014671336859464645, + -0.0019096845062449574, + -0.01757805235683918, + 0.046094171702861786, + -0.033833619207143784, + 0.02401139959692955, + 0.0018442489672452211, + -0.020746510475873947, + 0.005338162183761597, + -0.026229318231344223, + 0.013879221864044666, + 0.025940025225281715, + -0.0016892701387405396, + 0.01647597923874855, + -0.017233654856681824, + 0.03730514645576477, + 0.006006293464452028, + 0.003905468387529254, + 0.039233770221471786, + -0.02628442272543907, + -0.0036643901839852333, + -0.02994881197810173, + -0.006412682589143515, + 0.01424428354948759, + 0.017054567113518715, + -0.0033544322941452265, + 0.020360784605145454, + -0.025127246975898743, + 0.02657371573150158, + 0.012053915299475193, + 0.03876538947224617, + -0.02289555035531521, + 0.007001602556556463, + -0.004794014152139425, + 0.012687606737017632, + 0.000821388210169971, + 0.005455257371068001, + 0.00885101780295372, + 0.019382694736123085, + 0.001043524593114853, + -0.014072084799408913, + 0.030968230217695236, + -0.01640710048377514, + -0.0051659634336829185, + 0.02509969472885132, + -0.0165861863642931, + 0.015539218671619892, + 0.02450733073055744, + 0.01635199598968029, + 0.005858202464878559, + 0.04187874495983124, + 0.004397957120090723, + 0.013204202987253666, + 0.032621338963508606, + 0.014003205113112926, + 0.014271835796535015, + 0.00012376788072288036, + -0.010359479114413261, + -0.021146010607481003, + -0.025884920731186867, + -0.013025116175413132, + 0.013879221864044666, + -0.03672655671834946, + -0.02719363197684288, + -0.0038985805585980415, + 0.008134670555591583, + -0.005172851495444775, + 0.0032666109036654234, + 0.007480315398424864, + 0.011151593178510666, + -0.015387683175504208, + 0.013431505300104618, + -0.02045721560716629, + -0.002688023028895259, + -0.004246422089636326, + 0.004036339465528727, + -0.01267383061349392, + -0.019327592104673386, + 0.012722046114504337, + 0.019368918612599373, + -0.010400806553661823, + -0.027028322219848633, + 0.019148504361510277, + -0.000353437993908301, + -0.021531736478209496, + 0.0008132087532430887, + 0.024162933230400085, + -0.020099041983485222, + -0.0357622429728508, + -0.0038916924968361855, + -0.02719363197684288, + 0.0006478979485109448, + -0.00675363652408123, + 0.007652514148503542, + 0.011957483366131783, + 0.004676918964833021, + -0.018266847357153893, + -0.014340714551508427, + -0.0013087107799947262, + -0.0030461964197456837, + 0.02616043947637081, + -0.0008592719677835703, + 0.051108598709106445, + 0.0016203905688598752, + -0.04047360271215439, + -0.038985803723335266, + 0.021449081599712372, + 0.029287569224834442, + 0.035541828721761703, + -0.031188644468784332, + 0.0011468438897281885, + 0.03507344797253609, + 0.009009440429508686, + 0.001390505232848227, + -0.0011873106705024838, + -0.0106556611135602, + 0.015552994795143604, + -0.008182886056602001, + 0.014313163235783577, + 0.05485564470291138, + -0.04769217595458031, + 0.011888604611158371, + -0.012563623487949371, + 0.007755833212286234, + -0.004473724402487278, + 0.005524137057363987, + 0.005155631806701422, + 0.027882426977157593, + -0.00040100791375152767, + 0.010449022054672241, + 0.009360725991427898, + 0.028571221977472305, + -0.01997505873441696, + 0.021049579605460167, + 0.008885457180440426, + 0.009629355743527412, + -0.013713911175727844, + 0.01983729936182499, + -1.6291620340780355e-5, + -0.033888719975948334, + 0.023295052349567413, + 0.015938719734549522, + 0.018969418480992317, + 0.0021679827477782965, + -0.00034418233553878963, + -0.007397660054266453, + -0.006285255774855614, + 0.0031856775749474764, + 0.02223430760204792, + 0.024204261600971222, + -0.016131581738591194, + 0.03931642696261406, + 0.012377648614346981, + 0.03777352720499039, + 0.030224330723285675, + -0.019644437357783318, + 0.01179217267781496, + 0.011647526174783707, + 0.004105219151824713, + -0.03281420096755028, + -0.005606792401522398, + 0.01298378873616457, + -0.018445933237671852, + 0.006622765213251114, + 0.0009755061473697424, + 0.005723887588828802, + 0.00042296326137147844, + 0.02934267371892929, + 0.008830353617668152, + -0.014271835796535015, + 5.0072179874405265e-5, + -0.0030410306062549353, + -0.010696988552808762, + 0.007907368242740631, + 0.006113057024776936, + 0.02438334748148918, + 0.01960310898721218, + 0.018018880859017372, + -0.043394092470407486, + 0.019892403855919838, + 0.009195415303111076, + -0.012157234363257885, + -0.022151652723550797, + 0.03168457746505737, + 0.013920550234615803, + -0.011433999054133892, + -0.009746450930833817, + 0.009856658056378365, + 0.018390830606222153, + -0.005524137057363987, + 0.014561129733920097, + -0.01709589548408985, + -0.02027812972664833, + -0.015952495858073235, + 0.028185497969388962, + -0.038186803460121155, + 0.003058250527828932, + 0.009243630804121494, + 0.03559693321585655, + 0.017798466607928276, + 0.012901132926344872, + 0.010242383927106857, + 0.005462145432829857, + -0.014533577486872673, + 0.0172061026096344, + -0.00921607855707407, + -0.028626326471567154, + 0.050006527453660965, + -0.019396470859646797, + 0.010400806553661823, + 0.026256870478391647, + 0.010380142368376255, + 0.014023869298398495, + -0.00164191541261971, + 0.03967459872364998, + 0.012742710299789906, + 0.011495990678668022, + -0.01350727304816246, + -0.005179739557206631, + -0.03826945647597313, + 0.037690870463848114, + -0.04242978245019913, + -0.03399892896413803, + -0.030582504346966743, + 0.005689447745680809, + 0.02100825123488903, + -0.03234582021832466, + 0.014891751110553741, + 0.002379787154495716, + 0.031216196715831757, + 0.008148446679115295, + -0.0009445103351026773, + -0.015112165361642838, + 0.024466004222631454, + 0.016365772113204002, + -0.010896739549934864, + 0.009884210303425789, + -0.023074638098478317, + 0.013651919551193714, + 0.017068343237042427, + -0.01654485985636711, + 0.007500979118049145, + -0.008561723865568638, + -0.04132770746946335, + -0.004590819589793682, + -0.007494091056287289, + -0.03601020947098732, + -0.03521120920777321, + 0.001015972811728716, + -0.009904874488711357, + 0.015621873550117016, + -0.010903626680374146, + -0.007122141774743795, + 0.01206769049167633, + 0.002605367684736848, + -0.01580096036195755, + -0.012666942551732063, + -0.04300836846232414, + 0.01046968623995781, + -0.054111745208501816, + -0.0028808857314288616, + -0.007852264679968357, + 0.028653878718614578, + -0.007790273055434227, + -0.005710111930966377, + -0.04769217595458031, + 0.01947912573814392, + 0.029728397727012634, + 0.008423964492976665, + 0.010634996928274632, + -0.005334718152880669, + 0.00921607855707407, + 0.000508416909724474, + -0.008375748991966248, + -0.018404606729745865, + -0.020553646609187126, + -0.012818478047847748, + 0.006794963963329792, + -0.00878902617841959, + -0.004187874495983124, + -0.017137223854660988, + 0.0036643901839852333, + -0.023432809859514236, + -0.021600615233182907, + 0.015787184238433838, + 0.006175048649311066, + -0.01102072186768055, + -0.010600557550787926, + 0.028433462604880333, + 0.0006125971558503807, + 0.03471527621150017, + -0.012233002111315727, + 0.04526761546730995, + -0.008685707114636898, + 0.006536665838211775, + 0.017977552488446236, + -0.005985629744827747, + 0.008747698739171028, + -0.002712130779400468, + 0.003518021199852228, + 0.0033561543095856905, + 0.023226171731948853, + 0.030885573476552963, + -0.010187280364334583, + 0.01537390798330307, + 0.010951843112707138, + -0.01252229604870081, + -0.006374799180775881, + -0.00854105968028307, + 0.041933849453926086, + -0.003960572183132172, + -0.02406650222837925, + 0.009932425804436207, + 0.00832753349095583, + 0.0027327947318553925, + -0.009264294989407063, + -0.020677629858255386, + 0.0027293507009744644, + -0.011124041862785816, + -0.04747176170349121, + -0.007053262088447809, + -0.02217920310795307, + -0.01647597923874855, + 0.00866504292935133, + -0.0356520377099514, + 0.0011382339289411902, + 0.0022213642951101065, + -0.0213664248585701, + 0.01733008585870266, + -0.010290599428117275, + 0.010731427930295467, + -0.024107830598950386, + 0.017550500109791756, + 0.02467264235019684, + 0.001668606186285615, + 0.016338221728801727, + 0.025444092229008675, + -0.005462145432829857, + -0.005393265746533871, + 0.004790570121258497, + -0.0219863411039114, + 0.01679282635450363, + -0.022440945729613304, + -0.009408941492438316, + 0.0006629653507843614, + -0.060118041932582855, + 0.0007180689135566354, + -0.033282581716775894, + 0.013879221864044666, + -0.00531061040237546, + -0.0027035209350287914, + -0.0019854519050568342, + -0.0247966255992651, + -0.009023216553032398, + 0.005007540807127953, + 0.005303722806274891, + -0.023419035598635674, + -0.023804759606719017, + -0.008368860930204391, + -0.0031873995903879404, + -0.008196662180125713, + 0.04546048119664192, + 0.0005854758783243597, + -0.012047027237713337, + -0.031877439469099045, + -0.017922449856996536, + 0.021269993856549263, + 0.012233002111315727, + 0.002378065139055252, + 0.011557982303202152, + 0.04587375745177269, + 0.009174751117825508, + -0.035431623458862305, + -0.00719790905714035, + -0.014147852547466755, + 0.018817882984876633, + -0.011661301366984844, + -0.025141023099422455, + -0.01610403135418892, + -0.009505373425781727, + -0.022771567106246948, + -0.013224867172539234, + -0.004907665308564901, + -0.030885573476552963, + 0.024025173857808113, + 0.015015734359622002, + 0.006581437774002552, + -0.0009272904717363417, + -0.02235829085111618, + 0.0028464458882808685, + -0.00402600783854723, + -0.006516002118587494, + 0.005816875025629997, + 0.013865446671843529, + -0.018473485484719276, + 0.020526094362139702, + 0.0255267471075058, + 0.017591828480362892, + -0.05311988294124603, + -0.0032700549345463514, + 0.029260016977787018, + -0.004714802838861942, + -0.006178492214530706, + -0.006233596242964268, + -0.014657560735940933, + 0.0030685823876410723, + 0.012391424737870693, + -0.015911167487502098, + -0.01880410686135292, + -0.006705420557409525, + 0.023377707228064537, + -0.00644367840141058, + -0.006233596242964268, + 0.009539812803268433, + -0.02602268010377884, + -0.0017211268423125148, + -0.025705834850668907, + -0.001583367818966508, + -0.0738939419388771, + -0.01679282635450363, + -0.027400270104408264, + 0.03482548147439957, + -0.010517901740968227, + 0.005114303901791573, + 0.020622527226805687, + 0.037084732204675674, + 0.003175345715135336, + 0.007941807620227337, + -0.029783502221107483, + 0.006633097305893898, + -0.022427169606089592, + 0.021848581731319427, + -0.005527581088244915, + 0.017412740737199783, + -0.01610403135418892, + -0.012177898548543453, + 0.0017538446700200438, + 0.004077667370438576, + 0.010331926867365837, + 0.022523600608110428, + -0.0019355143886059523, + 0.003251112997531891, + 0.021104684099555016, + 0.03209785372018814, + -0.028571221977472305, + 0.009732675738632679, + -0.017922449856996536, + 0.0024538326542824507, + -0.004497832152992487, + -0.010393918491899967, + -0.018404606729745865, + 2.4134735213010572e-5, + 0.02975594997406006, + 0.006502225995063782, + 0.018941866233944893, + -0.009594916366040707, + 0.015305028297007084, + -0.012687606737017632, + 0.016985688358545303, + 0.02082916535437107, + 0.011819724924862385, + -0.002495160326361656, + -0.0006311085307970643, + -0.020718958228826523, + -0.0092780701816082, + -0.003846920793876052, + -0.018445933237671852, + 0.0033234364818781614, + 0.03173968195915222, + 0.010600557550787926, + 0.0060304016806185246, + -0.020071489736437798, + -0.002954931231215596, + 0.010896739549934864, + 0.017316309735178947, + -0.0013190427562221885, + 0.008348196744918823, + -0.002245472278445959, + 0.04876669496297836, + -0.012873581610620022, + -0.002856777748093009, + -0.015167268924415112, + -0.00616816058754921, + 0.02687678672373295, + 0.0038675847463309765, + 0.01019416842609644, + 0.022744014859199524, + -0.006333471275866032, + -0.010524789802730083, + -0.022826671600341797, + -0.009257406927645206, + 0.03449486196041107, + 0.0027913423255085945, + 0.00912653561681509, + 0.02431446872651577, + 0.025871146470308304, + -0.011103377677500248, + -0.016889257356524467, + 0.006147496867924929, + 0.006695088930428028, + 0.014547353610396385, + 0.014712664298713207, + -0.01752294786274433, + -0.02205521985888481, + 0.004725134465843439, + -0.027331391349434853, + -0.0034766935277730227, + -0.008003799244761467, + 0.022881774231791496, + 0.015070837922394276, + 0.0005772964213974774, + 0.011489102616906166, + -0.0014791875146329403, + 0.01806020922958851, + 0.008609939366579056, + -0.012694494798779488, + 0.00029037019703537226, + 0.006006293464452028, + -0.009574252180755138, + 2.1726644263253547e-5, + 0.035927556455135345, + -0.003395759966224432, + -0.008251765742897987, + 0.017536723986268044, + -0.002214476466178894, + 0.006178492214530706, + -0.008678819052875042, + -0.021889910101890564, + -0.0030530844815075397, + 0.0007951278821565211, + -0.028033962473273277, + 0.024328244850039482, + 0.009236742742359638, + 0.004339409526437521, + -0.012728934176266193, + -0.04218181595206261, + -0.01114470511674881, + -0.03044474497437477, + 0.0008631463861092925, + 0.02559562772512436, + -0.015112165361642838, + -0.012990676797926426, + -0.014175403863191605, + 0.005754883401095867, + -0.0022489160764962435, + -0.015759631991386414, + -0.009181639179587364, + 0.034026481211185455, + -0.003516299184411764, + 0.004356629215180874, + -0.0012114184210076928, + 0.004335965495556593, + -0.0089405607432127, + 0.003764265449717641, + 0.03642348572611809, + -0.00799002405256033, + 0.020911820232868195, + -0.04245733097195625, + -0.01292179711163044, + -0.0089405607432127, + -0.0014860755763947964, + 0.028405912220478058, + 0.005241731181740761, + -0.007115253712981939, + 0.020650077611207962, + -0.004852561745792627, + -0.0038951365277171135, + -0.012446528300642967, + 0.0017392077716067433, + -0.000932456401642412, + 0.01574585773050785, + 0.00786604080349207, + -0.010855411179363728, + -0.017302533611655235, + -0.028323255479335785, + 0.00041155508370138705, + 0.025816041976213455, + -0.011723292991518974, + -0.009429605677723885, + 0.014450921677052975, + 0.004745798651129007, + -0.007934920489788055, + 0.00023010063159745187, + -0.023997623473405838, + -0.008651266805827618, + -0.01356926467269659, + -0.036230623722076416, + -0.014919302426278591, + -0.011316903866827488, + 0.002834392013028264, + -0.02890184335410595, + -0.03650614246726036, + 0.029039602726697922, + 0.003877916606143117, + -0.020415887236595154, + -0.013032004237174988, + 0.028626326471567154, + 0.0012260553194209933, + -0.02161439135670662, + -0.00965001992881298, + 0.020057715475559235, + 0.02934267371892929, + 0.008313757367432117, + -0.003263167105615139, + 0.009333173744380474, + 0.01573208160698414, + -0.005909862462431192, + -0.010366367176175117, + -0.0007585356361232698, + 0.010118400678038597, + -0.023997623473405838, + -0.0008902677218429744, + 0.014988182112574577, + -0.005892642308026552, + 0.010063297115266323, + 0.01108271349221468, + -0.02436957135796547, + -0.01353482436388731, + -0.023667000234127045, + -0.022344514727592468, + 0.027648236602544785, + -0.03201519697904587, + -0.007390771992504597, + 0.006454010494053364, + -0.011248025111854076, + -0.002211032435297966, + 0.004738910589367151, + 0.0014094470534473658, + 0.011124041862785816, + 0.01246030442416668, + 0.012708269990980625, + -0.026807906106114388, + 0.01500195823609829, + -0.006643428932875395, + 0.0030117568094283342, + -0.010077073238790035, + -0.012047027237713337, + -0.018666347488760948, + 0.022137876600027084, + 0.010676324367523193, + -0.010311263613402843, + -0.037277594208717346, + 0.016324445605278015, + -0.019258711487054825, + -0.019506677985191345, + -0.016572410240769386, + -0.013707023113965988, + 0.017412740737199783, + -0.002806840231642127, + -0.004683807026594877, + -0.008499732241034508, + -0.016765274107456207, + -0.011523542925715446, + -0.010958731174468994, + 0.03074781596660614, + -0.017261207103729248, + 0.014285610988736153, + -0.004091443028301001, + -0.016090255230665207, + -0.019065849483013153, + 0.006433346774429083, + 0.004990320652723312, + -0.001504156389273703, + 0.03209785372018814, + -0.0314917154610157, + -0.025499196723103523, + 0.008609939366579056, + 0.019699541851878166, + -0.001391366240568459, + -0.005889198277145624, + -0.010979394428431988, + 0.016737721860408783, + 0.02964574284851551, + -0.0007331363158300519, + -0.006467786617577076, + -0.024851728230714798, + 0.0072874524630606174, + -0.008244877681136131, + 0.00499376468360424, + 0.0061578284949064255, + 0.006405794993042946, + -0.012239889241755009, + 0.03044474497437477, + -0.00730122858658433, + 0.01848726160824299, + 0.0040328954346477985, + 0.010641884990036488, + 0.009691347368061543, + 0.02657371573150158, + 0.007604298181831837, + -0.013155987486243248, + 0.006970606744289398, + 0.018817882984876633, + -0.016944359987974167, + 0.020925596356391907, + -0.004966212902218103, + 0.000819666194729507, + -0.005145299714058638, + -0.00912653561681509, + -0.012570511549711227, + -0.014712664298713207, + 0.02687678672373295, + 0.03499079495668411, + 0.020870493724942207, + 0.013300633989274502, + 0.015938719734549522, + 0.02363944984972477, + 0.007611186243593693, + 0.023074638098478317, + 0.011447775177657604, + 0.003822813043370843, + -0.002271302044391632, + 0.017812242731451988, + 0.01672394573688507, + -0.006419570650905371, + -0.00866504292935133, + 0.010972506366670132, + -0.0027586244978010654, + 0.006615877151489258, + 0.011254912242293358, + -0.01212968211621046, + -0.00488700158894062, + -0.001447330811060965, + -0.00019415412680245936, + 0.007280564866960049, + -0.019575558602809906, + 0.00851350836455822, + -0.02014037035405636, + 0.010669436305761337, + 0.005224511027336121, + -0.015167268924415112, + 0.006302475463598967, + -0.013335074298083782, + -0.008217326365411282, + 0.018170416355133057, + 0.011158481240272522, + 0.0062955874018371105, + -0.02481040172278881, + 0.001615224638953805, + -0.00799002405256033, + 0.006388574838638306, + 0.010607445612549782, + -0.019506677985191345, + -0.02111845836043358, + 0.012363872490823269, + -0.0036127304192632437, + 0.004797458183020353, + -0.024038949981331825, + -0.01928626373410225, + -0.004587375558912754, + -0.01084163598716259, + 0.011799060739576817, + 0.012267441488802433, + 0.0021679827477782965, + -0.015952495858073235, + 0.005114303901791573, + 0.011027609929442406, + 0.00029080070089548826, + -0.0006263731047511101, + 0.010820971801877022, + 0.0008261236944235861, + 0.013397065922617912, + 0.0016333054518327117, + 0.02056742273271084, + -0.0020457215141505003, + 0.003318270668387413, + 0.03551427647471428, + -0.0071634696796536446, + -0.002653583185747266, + -0.000233544604270719, + 0.011000058613717556, + 0.006392018869519234, + 0.02810284122824669, + 0.017316309735178947, + 0.012363872490823269, + 0.016751497983932495, + -0.012370760552585125, + 0.012356984429061413, + -0.011957483366131783, + -0.01332129817456007, + 0.016861705109477043, + -0.003316548652946949, + -0.020539870485663414, + 0.01288735680282116, + 0.01905207335948944, + -0.029012052342295647, + -0.015966271981596947, + -0.019134728237986565, + 0.00042855972424149513, + -0.014003205113112926, + -0.0004657977260649204, + 0.004046671558171511, + -0.01219167374074459, + 0.0007322753081098199, + -0.015552994795143604, + 0.015663200989365578, + -0.007008490618318319, + -0.006175048649311066, + -0.0009694791515357792, + 0.010752092115581036, + -0.037883732467889786, + -0.02945288084447384, + -0.009567364118993282, + 0.002262691967189312, + 0.014147852547466755, + -0.0010090848663821816, + -0.00835508480668068, + -0.0071634696796536446, + -0.00027573329862207174, + -0.005933970212936401, + -0.0019733980298042297, + 0.005283058620989323, + -0.019258711487054825, + 0.01267383061349392, + -0.040335845202207565, + 0.029673295095562935, + -0.051604531705379486, + 0.02014037035405636, + -0.010986282490193844, + 0.01068321242928505, + 0.005072976462543011, + 0.006980938836932182, + 0.003767709480598569, + 0.009381390176713467, + -0.023295052349567413, + -0.007707617711275816, + 0.00652289018034935, + -0.01111715380102396, + -0.006150940433144569, + -0.009016328491270542, + 0.034136686474084854, + -0.02786865085363388, + -0.013376401737332344, + -0.015635650604963303, + 0.012226114049553871, + 0.02020924910902977, + 0.007418323773890734, + 0.0027379607781767845, + -0.0254716444760561, + -0.006350691430270672, + 0.0007352888351306319, + -0.00021869245392736048, + -0.02424558997154236, + 0.0072116851806640625, + -0.015828512609004974, + -0.015952495858073235, + -0.020870493724942207, + 0.01928626373410225, + 0.005668784026056528, + -0.004480612464249134, + 0.007755833212286234, + 0.010765868239104748, + 0.04832586646080017, + -0.014258059673011303, + 0.028819188475608826, + -0.0411623977124691, + -0.002918769372627139, + -0.00034999402123503387, + 0.006974050775170326, + 0.0036299503408372402, + 0.01695813611149788, + -0.007225460838526487, + -0.011172257363796234, + -0.01500195823609829, + 0.02155928872525692, + -0.0034147019032388926, + 0.009622468613088131, + 0.046755414456129074, + -0.0019458462484180927, + -0.00531061040237546, + 0.036891866475343704, + 0.002038833685219288, + -0.013238642364740372, + 0.008458404801785946, + 0.0013224866706877947, + 0.004118994809687138, + -0.020043939352035522, + 0.01745406910777092, + 0.015635650604963303, + -0.02273024059832096, + 0.002605367684736848, + 0.010393918491899967, + 0.002412504982203245, + -0.0030703044030815363, + 0.034026481211185455, + -0.038544975221157074, + -0.027538029477000237, + 0.015029510483145714, + -0.01697191223502159, + -0.004769906401634216, + -0.018239295110106468, + -0.004308413714170456, + 0.006788076367229223, + -0.002953209215775132, + -0.0018735227640718222, + -0.004621815402060747, + 0.004521939903497696, + -0.03758066147565842, + 0.008375748991966248, + -0.011186033487319946, + -0.009725787676870823, + 0.016310669481754303, + 0.030224330723285675, + 0.006426458712667227, + 0.02241339348256588, + -0.014767767861485481, + 0.01049723755568266, + 0.025499196723103523, + -0.0220414437353611, + 0.015291252173483372, + -0.022812895476818085, + 0.010249271988868713, + 0.016682619228959084, + -0.02934267371892929, + -0.012143458239734173, + -0.0021421529818326235, + 0.01745406910777092, + 0.004938661120831966, + -0.007597410585731268, + -0.032676443457603455, + -0.02352924272418022, + 0.008299981243908405, + 0.014382042922079563, + -0.014657560735940933, + 0.007232348900288343, + 0.02449355460703373, + -0.0015274032484740019, + -0.0012312213657423854, + -0.009470933116972446, + 0.00644367840141058, + -0.002691467059776187, + 0.0009470933000557125, + -0.0037814853712916374, + -0.01258428767323494, + 0.0003697968786582351, + 0.012970012612640858, + 0.006092392839491367, + 0.008506620302796364, + 0.022454721853137016, + -0.013128435239195824, + -0.012143458239734173, + -0.010311263613402843, + 0.011654414236545563, + 0.008713258430361748, + 0.004277417901903391, + 0.0039777918718755245, + 0.005899530369788408, + -0.020223025232553482, + -0.025623179972171783, + 0.01285980548709631, + -0.022523600608110428, + 0.009980641305446625, + -0.006388574838638306, + 0.00486978143453598, + 0.004201650153845549, + -0.012005699798464775, + -0.009030104614794254, + -9.733267688716296e-6, + 0.012198561802506447, + 0.019754644483327866, + -0.0219863411039114, + 0.011254912242293358, + -0.03209785372018814, + 0.08822087943553925, + 0.006639985367655754, + 0.01702701672911644, + -0.005207291338592768, + 0.003487025387585163, + -0.014326939359307289, + -0.001245858264155686, + 0.009994417428970337, + 0.02015414647758007, + 0.012088354676961899, + -0.003089246107265353, + 0.007921144366264343, + 0.010173504240810871, + -0.000680185214150697, + -0.010566117241978645, + -0.013231754302978516, + 0.006509114056825638, + 0.0015119053423404694, + 0.014643784612417221, + 0.00912653561681509, + 0.01512594148516655, + -0.01537390798330307, + -0.00872703455388546, + 0.002550264121964574, + -0.01512594148516655, + 0.01635199598968029, + 0.005255506839603186, + 0.01923116110265255, + 0.04215426370501518, + 0.0341917909681797, + 0.004577043931931257, + -0.0010245827725157142, + -0.005444925744086504, + 0.0018786888103932142, + 0.01117914542555809, + -0.002092215232551098, + 0.0178811214864254, + 0.0030823582783341408, + 0.006144052837044001, + -0.0020767173264175653, + 0.0019682322163134813, + -0.016448428854346275, + 0.03000391647219658, + 0.0036161744501441717, + -0.007810936775058508, + -0.003204619511961937, + 0.018335726112127304, + -0.012604950927197933, + 0.01356926467269659, + 0.008685707114636898, + -0.008058902807533741, + -0.014933078549802303, + 0.0025141022633761168, + 0.028378359973430634, + -2.938141733466182e-5, + -0.0133832897990942, + 0.0003506397770252079, + -0.011399559676647186, + 0.0038021490909159184, + 0.00042963598389178514, + -0.01512594148516655, + 0.00568256014958024, + -0.013727687299251556, + -0.02099447511136532, + -0.034136686474084854, + -0.02566450648009777, + -0.01586984097957611, + 0.014519801363348961, + -0.02602268010377884, + -0.028764085844159126, + -0.0007417462766170502, + -0.01176462136209011, + 0.004859449807554483, + -0.035789795219898224, + 0.0005867673899047077, + 0.02173837460577488, + 0.011227360926568508, + 0.016765274107456207, + 0.019217384979128838, + 0.01793622598052025, + 0.011991923674941063, + 0.0050488682463765144, + 0.00583409471437335, + -0.01424428354948759, + 0.010910514742136002, + -0.010028857737779617, + -0.006405794993042946, + -0.02088426798582077, + 0.030472297221422195, + -0.023501690477132797, + -0.011385783553123474, + -0.004022563807666302, + 0.0010926013346761465, + -0.006643428932875395, + 0.014574904926121235, + -0.004563267808407545, + -0.004373849369585514, + -0.019203608855605125, + 0.030968230217695236, + 0.01603515073657036, + 0.0019148505525663495, + 0.02070518210530281, + -0.004938661120831966, + -0.00203538965433836, + 0.006374799180775881, + 0.0013818952720612288, + 0.01105516217648983, + 0.0035920666996389627, + -0.01049723755568266, + 0.017247430980205536, + -0.0017943113343790174, + -0.02456243522465229, + 0.008823465555906296, + 0.005837538745254278, + -0.015842288732528687, + 0.0009935869602486491, + 0.004546048119664192, + -0.004287749994546175, + -0.016310669481754303, + -0.019134728237986565, + -0.007514755241572857, + -0.009808442555367947, + -0.002245472278445959, + -0.006763968151062727, + 0.003006590763106942, + 0.0016014487482607365, + -0.01654485985636711, + -0.0040604472160339355, + -0.007060150150209665, + 0.0073218923062086105, + 0.015911167487502098, + 0.011771509423851967, + 0.01179217267781496, + -0.015236148610711098, + -0.009236742742359638, + -0.007845376618206501, + 0.022523600608110428, + 0.010511013679206371, + 0.014643784612417221, + -0.03165702521800995, + 0.005176295526325703, + -0.005176295526325703, + 0.011619973927736282, + 0.005989073775708675, + -0.0011726737720891833, + 0.0050833080895245075, + -0.0030169226229190826, + -0.020526094362139702, + -0.0034715274814516306, + 0.008444628678262234, + 0.009787779301404953, + -0.02804773859679699, + 0.0012501631863415241, + -0.016503531485795975, + -0.013149099424481392, + 0.01941024698317051, + -0.012722046114504337, + 0.008933672681450844, + -0.02646350860595703, + 0.007934920489788055, + 0.002031945623457432, + -0.0033303245436400175, + 0.0009229854913428426, + -0.01332129817456007, + -0.017605604603886604, + -0.016517307609319687, + 0.010648773051798344, + 0.01512594148516655, + 0.016131581738591194, + -0.019561782479286194, + -0.01880410686135292, + -0.01068321242928505, + -0.009202303364872932, + -0.008678819052875042, + 0.0035679589491337538, + -0.01151665486395359, + 0.008217326365411282, + 0.006701976526528597, + -0.015181045047938824, + 0.029507983475923538, + -0.0017822574591264129, + 0.0018321950919926167, + 0.006788076367229223, + -0.009767115116119385, + -0.0021628167014569044, + -0.009484709240496159, + 0.02884674072265625, + -0.020925596356391907, + -0.017908673733472824, + 0.004174098372459412, + 0.0030134788248687983, + 0.017991328611969948, + 0.0074045476503670216, + -0.003915800247341394, + -0.015580546110868454, + 0.0011718127643689513, + 0.017867345362901688, + 0.02351546660065651, + 0.015291252173483372, + -0.012467192485928535, + -0.03135395422577858, + -0.0011003502877429128, + 0.015415235422551632, + -0.0005824624095112085, + 0.0072599006816744804, + -0.012074578553438187, + -0.023295052349567413, + -0.012081466615200043, + -0.007438987493515015, + 0.0060786171816289425, + 0.005128080025315285, + -0.025802265852689743, + 0.006323139648884535, + -0.003280386794358492, + -0.005269282963126898, + 0.019644437357783318, + 0.003815924981608987, + 0.00549658527597785, + -0.015387683175504208, + -0.01246030442416668, + 0.006223264150321484, + -0.01191615592688322, + -0.009429605677723885, + 0.0012165844673290849, + 0.01552544254809618, + 0.0020233357790857553, + 0.00885101780295372, + 0.015828512609004974, + -0.0037470455281436443, + -0.0026139775291085243, + 0.010724540799856186, + -0.006929279305040836, + -0.000879505299963057, + 0.017977552488446236, + -0.01077964436262846, + 0.03289685770869255, + 0.012212337926030159, + -0.011261800304055214, + -0.003493913449347019, + 0.01862502098083496, + -0.02014037035405636, + -0.005937414243817329, + -0.010938066989183426, + -0.017770914360880852, + -0.021600615233182907, + -0.009808442555367947, + -0.00675363652408123, + 0.0072943405248224735, + 0.00958802830427885, + -2.1807361918035895e-5, + -0.005403597839176655, + -0.00891300942748785, + -0.00015433316002599895, + 0.012749598361551762, + 0.014044532552361488, + -0.005124635994434357, + -0.009229854680597782, + -0.003196009434759617, + -0.01960310898721218, + -0.027785995975136757, + -0.01025616005063057, + -0.003712605917826295, + -0.009636243805289268, + -0.017812242731451988, + 0.014354490675032139, + 0.02095314860343933, + -0.011957483366131783, + 0.01757805235683918, + 0.0018339171074330807, + 0.006619321182370186, + 0.018101535737514496, + -0.0027965083718299866, + 0.02118733897805214, + 0.0014946854207664728, + 0.004339409526437521, + -0.0019458462484180927, + 0.021476631984114647, + -0.002181758638471365, + 0.007735169492661953, + -0.028708981350064278, + -0.002238584216684103, + -0.005155631806701422, + -0.01640710048377514, + -0.012198561802506447, + 0.010180392302572727, + -0.025623179972171783, + 0.017922449856996536, + 0.01472644042223692, + 0.004742354620248079, + 0.013032004237174988, + 0.006794963963329792, + -0.018569916486740112, + 0.019134728237986565, + -0.02413538098335266, + 0.008196662180125713, + 0.016007598489522934, + -0.01923116110265255, + -0.005472477525472641, + 0.014657560735940933, + 0.017013240605592728, + 0.00378837320022285, + -0.00980155449360609, + -0.013100883923470974, + -0.0031856775749474764, + 0.0018063652096316218, + -0.006939610932022333, + 0.014933078549802303, + 0.009167863056063652, + -0.015814736485481262, + 0.01086918730288744, + -0.004146546591073275, + -0.015580546110868454, + 0.013803455047309399, + -0.005527581088244915, + -0.013913662172853947, + 0.008492844179272652, + -0.0031030222307890654, + 0.010490350425243378, + 0.0006156106828711927, + 0.022991981357336044, + -0.0004554657789412886, + -0.004480612464249134, + 0.006326583214104176, + -0.004329077433794737, + 0.01019416842609644, + -0.010703876614570618, + 0.003285552840679884, + 0.00031103406217880547, + 0.005562020931392908, + -0.03074781596660614, + 0.02253737673163414, + 0.01887298747897148, + -0.017261207103729248, + -0.01279781386256218, + -0.007838488556444645, + 0.01622801274061203, + -0.006092392839491367, + -0.0171509999781847, + -0.018018880859017372, + 0.008906121365725994, + -0.013142211362719536, + -0.0016005877405405045, + -0.009725787676870823, + 0.0050040967762470245, + 0.008361972868442535, + 0.026311974972486496, + -0.007053262088447809, + 0.001073659397661686, + 0.010056409053504467, + 0.02003016322851181, + 0.012873581610620022, + -0.0035059673245996237, + 0.010400806553661823, + -0.008272429928183556, + -0.0015713139437139034, + 0.004783682059496641, + 0.020608751103281975, + 0.01990617997944355, + 9.06734203454107e-5, + -0.00891300942748785, + -0.015690753236413002, + 0.011124041862785816, + -0.008795914240181446, + 0.01093117892742157, + 0.001923460396938026, + 0.009732675738632679, + 0.001895908615551889, + 0.00013560654770117253, + -0.015070837922394276, + -0.0051074158400297165, + 0.010338814929127693, + -0.022647583857178688, + -0.026683924719691277, + -0.007438987493515015, + -0.010573005303740501, + -0.005875422619283199, + -0.001928626443259418, + 0.012687606737017632, + 0.001015972811728716, + -0.011633750051259995, + 0.04025318846106529, + -0.010511013679206371, + 0.008637490682303905, + -0.02450733073055744, + 0.009319398552179337, + -0.0005277892923913896, + 0.020057715475559235, + 0.015952495858073235, + 0.0050282045267522335, + 0.00322183920070529, + -0.013610592111945152, + 0.012494743801653385, + 0.020774060860276222, + -0.00328383082523942, + 0.016131581738591194, + 0.021159786731004715, + -0.021393977105617523, + 0.004911109339445829, + 0.0039536841213703156, + 0.0027086869813501835, + -0.006374799180775881, + 0.001160619780421257, + 0.0178811214864254, + 0.012715158052742481, + 0.017798466607928276, + -0.018142864108085632, + 0.000792975421063602, + 0.007514755241572857, + 0.013238642364740372, + -0.017688259482383728, + -0.006433346774429083, + -0.012880468741059303, + -0.028157945722341537, + -0.028268152847886086, + 0.019630661234259605, + 0.0038916924968361855, + 0.006378243211656809, + -0.025182349607348442, + 0.005258950870484114, + -0.015718305483460426, + 0.019864851608872414, + 0.0028464458882808685, + 0.0019906179513782263, + 0.015608098357915878, + 0.007804049178957939, + -0.0035300750751048326, + 0.037277594208717346, + -0.00040294515201821923, + -0.015318804420530796, + -0.01108271349221468, + -0.008189774118363857, + -0.01885921135544777, + -0.006595213431864977, + -0.0035886226687580347, + -0.02217920310795307, + -0.0016927140532061458, + 0.033227477222681046, + -0.016916809603571892, + 0.021090907976031303, + -0.0014292498817667365, + -0.010221719741821289, + -0.020677629858255386, + -0.00801757536828518, + -0.004552935715764761, + 0.01930003985762596, + 0.010628108866512775, + -0.0028722756542265415, + 0.012363872490823269, + -0.0012648000847548246, + -0.0006018347339704633, + -0.019134728237986565, + -0.00719790905714035, + -0.012846029363572598, + 0.012198561802506447, + -0.008837241679430008, + 0.004990320652723312, + 0.003490469418466091, + -0.0029084375128149986, + 0.028130393475294113, + -0.011027609929442406, + -0.0140583086758852, + -0.006219820119440556, + -0.020002610981464386, + -0.00017370552814099938, + -0.004528827965259552, + 0.02332260273396969, + 0.035431623458862305, + 0.006595213431864977, + -0.008093343116343021, + 0.003085802309215069, + -0.020443439483642578, + 0.030086571350693703, + 0.02241339348256588, + 0.0032648888882249594, + 0.00949848536401987, + 0.035431623458862305, + 0.015057061798870564, + 0.0025382100138813257, + -0.013307522051036358, + 0.0026398072950541973, + 0.006681312806904316, + 0.024727744981646538, + -0.004246422089636326, + 0.01472644042223692, + 0.01313532330095768, + -0.027152305468916893, + 0.023543018847703934, + 0.021297546103596687, + 0.0071359178982675076, + 0.005489697214215994, + 0.02070518210530281, + 0.03105088509619236, + 0.006261148024350405, + 0.02088426798582077, + 0.006684756837785244, + 0.005093640182167292, + 0.014753991737961769, + 0.00891300942748785, + 0.01793622598052025, + -0.021338872611522675, + 0.009195415303111076, + -0.012480967678129673, + -0.004707914777100086, + 0.0020801613572984934, + 0.009388278238475323, + 0.026683924719691277, + -0.013217979110777378, + 0.003483581356704235, + 0.004332521464675665, + 0.005210735369473696, + -0.002412504982203245, + -0.0005209013470448554, + -0.004349741153419018, + 0.01093117892742157, + -0.0008859627414494753, + 0.012301880866289139, + 0.009849770925939083, + 0.0050040967762470245, + -0.004118994809687138, + 0.017839794978499413, + 0.0037263818085193634, + -0.03055495209991932, + -0.02687678672373295, + 0.03151926398277283, + 0.011861052364110947, + -0.010077073238790035, + 0.012625615112483501, + -0.004625259432941675, + 0.006622765213251114, + -0.017495397478342056, + -0.001612641615793109, + 0.017770914360880852, + -0.010862299241125584, + -0.007631849963217974, + 0.0009488153154961765, + 0.0185561403632164, + 0.025554299354553223, + 0.013803455047309399, + 0.018817882984876633, + -0.015346355736255646, + 0.011757733300328255, + -0.001047829631716013, + 0.015208596363663673, + -0.003426755778491497, + -0.011234248988330364, + -0.0051108598709106445, + 0.0008842407842166722, + -0.00013442267663776875, + -0.009360725991427898, + 0.012439640238881111, + -0.0025967576075345278, + -0.0029928148724138737, + 0.005586128681898117, + -9.998292080126703e-5, + 0.028378359973430634, + -0.0009152365382760763, + -0.0025054924190044403, + 0.019630661234259605, + 0.003319992683827877, + 0.012095242738723755, + -0.007680065929889679, + -0.01873522810637951, + 0.004280861932784319, + 0.005314054433256388, + -0.02143530547618866, + 0.009932425804436207, + 0.014643784612417221, + -0.007218573242425919, + 0.005376046057790518, + 0.010896739549934864, + -0.013803455047309399, + -0.009395165368914604, + -0.0178811214864254, + 0.005479365587234497, + 0.004794014152139425, + 0.007115253712981939, + -0.019754644483327866, + 0.002066385466605425, + 0.01683415286242962, + 0.007001602556556463, + -0.0019079624908044934, + 0.004728578496724367, + -0.03672655671834946, + 0.0038606966845691204, + -0.01898319460451603, + 0.008272429928183556, + 0.0226613599807024, + 0.0050523122772574425, + 0.009780891239643097, + -0.014423370361328125, + 0.03394382447004318, + -0.01574585773050785, + -0.037277594208717346, + 0.010290599428117275, + 0.016820376738905907, + 0.016627514734864235, + 0.002004393842071295, + -0.0036333943717181683, + -0.04328388720750809, + -0.01622801274061203, + -0.014822871424257755, + 0.010772756300866604, + 0.004439284559339285, + 0.02099447511136532, + -0.005427705589681864, + 0.007680065929889679, + 0.009973753243684769, + -0.0027569024823606014, + 0.00940205343067646, + -0.022372066974639893, + 0.0007964193937368691, + 0.0016470813425257802, + 0.00226613599807024, + -0.01350727304816246, + 0.013004451990127563, + -0.0029928148724138737, + 0.033778514713048935, + 0.008272429928183556, + 0.008196662180125713, + -0.020374560728669167, + 0.010166616179049015, + 0.029673295095562935, + 0.0022592481691390276, + 0.008864793926477432, + 0.002782732481136918, + -0.013190426863729954, + -0.013837894424796104, + -0.00023698857694398612, + 0.027717117220163345, + -0.0036402824334800243, + 0.003425033763051033, + 0.01916228048503399, + -0.007893592119216919, + -0.03796638920903206, + 0.008175997994840145, + 0.006881063338369131, + -0.0028430018573999405, + -0.0018201412167400122, + 0.007838488556444645, + -0.005114303901791573, + 0.014092748984694481, + 0.0038055931217968464, + -0.012177898548543453, + -0.0027551804669201374, + 0.014230507425963879, + -0.018225518986582756, + 0.017991328611969948, + 0.010435246862471104, + 0.002653583185747266, + 0.0158560648560524, + -0.009367614053189754, + 0.009043879806995392, + -0.01916228048503399, + -0.007783384993672371, + 0.009656907990574837, + 0.0015687309205532074, + 0.014134076423943043, + -0.003736713668331504, + 0.03810414671897888, + -0.012060803361237049, + -0.02633952535688877, + -0.02781354822218418, + 0.0030668603722006083, + 0.002920491388067603, + 0.0024589987006038427, + -0.002180036623030901, + 0.0007042930228635669, + -0.009243630804121494, + -0.011998811736702919, + -0.006323139648884535, + 0.0006302475812844932, + -0.002321239560842514, + -0.02173837460577488, + 0.011103377677500248, + 0.009174751117825508, + 0.010662549175322056, + 0.0007451902492903173, + -0.009539812803268433, + 0.020856717601418495, + -0.03504589572548866, + -0.01592494361102581, + -0.005338162183761597, + 0.023295052349567413, + -0.01899697072803974, + -1.5309547961805947e-5, + 0.014202956110239029, + 0.007060150150209665, + -0.0023901192471385, + -0.015029510483145714, + -0.010786531493067741, + -0.002438334748148918, + 0.004053559619933367, + -0.01390677411109209, + -0.012212337926030159, + -0.017357638105750084, + -0.0059959618374705315, + -0.004625259432941675, + -0.021338872611522675, + 0.0008980166749097407, + -0.0073701078072190285, + -0.027358943596482277, + 0.001645359443500638, + -0.017812242731451988, + -0.011654414236545563, + -0.012405200861394405, + -0.01176462136209011, + 0.02548542059957981, + 0.0127633735537529, + -0.004163766745477915, + 0.008286205120384693, + 0.0031219639349728823, + -0.007872928865253925, + 0.02099447511136532, + 0.004439284559339285, + -0.016489755362272263, + -0.03939908370375633, + 0.004332521464675665, + -0.002684578998014331, + -0.0025347662158310413, + 0.01191615592688322, + 0.0010822693584486842, + -0.008313757367432117, + -0.027841100469231606, + 0.019189832732081413, + 0.0071290298365056515, + -0.013961877673864365, + -0.005386378150433302, + 0.01105516217648983, + 0.006856955587863922, + -0.0038641407154500484, + 0.01350727304816246, + -0.00977400317788124, + 0.004842229653149843, + 0.015690753236413002, + -0.006502225995063782, + 0.005782435182482004, + 0.017715811729431152, + 0.023790983483195305, + -0.006350691430270672, + 0.0035249092616140842, + -0.022812895476818085, + -0.028764085844159126, + -0.004473724402487278, + -0.006333471275866032, + 0.0021335429046303034, + -0.014175403863191605, + 0.015332579612731934, + -0.008947448804974556, + -0.004787126090377569, + 0.013431505300104618, + -0.009904874488711357, + -0.006454010494053364, + 0.00385036482475698, + 0.0004761296440847218, + 0.001642776420339942, + -0.005427705589681864, + 0.009684459306299686, + -0.015167268924415112, + -0.005093640182167292, + 0.011923043988645077, + 0.0034112578723579645, + 0.004856005776673555, + 0.0031581257935613394, + -0.0019854519050568342, + -0.0007835044525563717, + 0.020898044109344482, + 0.008189774118363857, + -0.0021972565446048975, + 2.673117160156835e-5, + 0.029315121471881866, + -0.01102072186768055, + 0.004466836340725422, + 0.0071565816178917885, + -0.03355810046195984, + -0.010710764676332474, + -0.020718958228826523, + 0.0185010377317667, + -0.015098389238119125, + 0.014437146484851837, + 0.03204274922609329, + -0.0033940381836146116, + -0.005393265746533871, + -0.014189179986715317, + 0.005420817993581295, + -0.02253737673163414, + -0.0002974733943119645, + 0.014519801363348961, + 0.01622801274061203, + -0.004459948744624853, + 0.0016789381625130773, + 0.005861646495759487, + 0.01111715380102396, + -0.014616233296692371, + -0.005806542932987213, + 0.03220806270837784, + -0.01603515073657036, + 0.01745406910777092, + -0.011688853614032269, + -0.021889910101890564, + -0.02339148335158825, + 0.0013121546944603324, + -0.008196662180125713, + -0.008341309614479542, + -0.01862502098083496, + -0.028929395601153374, + 0.021903686225414276, + -0.01954800635576248, + 0.014891751110553741, + -0.014671336859464645, + 0.00958802830427885, + -0.00328383082523942, + -0.0004137075738981366, + 0.028006410226225853, + 0.01610403135418892, + -0.009705123491585255, + -0.003915800247341394, + 0.013831006363034248, + 0.0013508994597941637, + -0.0005234843119978905, + 0.021022027358412743, + -0.0027603465132415295, + -0.0033217144664376974, + 0.004776794463396072, + -0.001671189209446311, + -0.03234582021832466, + 0.01770203560590744, + 0.004728578496724367, + -0.0106556611135602, + -0.012095242738723755, + 0.006536665838211775, + -0.010028857737779617, + 0.009236742742359638, + -0.010917402803897858, + 0.014258059673011303, + 0.018707675859332085, + -1.4018057299836073e-5, + -0.012350097298622131, + 0.007859152741730213, + 0.024397123605012894, + 0.014547353610396385, + -0.005613680463284254, + -0.009643131867051125, + 0.013183538801968098, + 0.010641884990036488, + 0.0039020245894789696, + -0.001101211179047823, + -0.011137817054986954, + 0.0009281514794565737, + -0.010139064863324165, + -0.02100825123488903, + -0.004604595713317394, + 0.008086455054581165, + 0.015484115108847618, + 0.02468641847372055, + -0.0001011667845887132, + 0.019561782479286194, + -0.012474079616367817, + -0.013755238614976406, + 0.0032700549345463514, + 0.00192518241237849, + 0.013087107799947262, + 0.013707023113965988, + -0.01837705448269844, + -0.01836327835917473, + 0.006908615119755268, + 0.0037849294021725655, + 0.013038892298936844, + -0.0072599006816744804, + 0.012012586928904057, + 0.00909898430109024, + -0.012308768928050995, + 0.008045127615332603, + -0.012556735426187515, + 0.01062122080475092, + -0.013176650740206242, + -0.010139064863324165, + 0.015305028297007084, + -0.007087701931595802, + 0.0034732494968920946, + 0.009477821178734303, + -0.00875458586961031, + 0.0010607445146888494, + 0.00696716271340847, + 0.014506026171147823, + -0.0018235851312056184, + -0.0026742471382021904, + 0.027758443728089333, + -0.019244937226176262, + 0.01393432542681694, + 0.024218037724494934, + 0.00799002405256033, + 0.007142805494368076, + 0.016338221728801727, + -0.0018563029589131474, + 3.091506368946284e-5, + -0.011096489615738392, + 0.02633952535688877, + 0.010021969676017761, + -0.003378540277481079, + 0.0171509999781847, + 0.0039812359027564526, + 0.004494388122111559, + -0.005317498464137316, + -0.009677572175860405, + -0.025554299354553223, + -0.00903699267655611, + -0.03215295821428299, + -0.0028843297623097897, + 0.00943649373948574, + 0.030913125723600388, + -0.008961224928498268, + 0.0027000769041478634, + -0.012177898548543453, + -0.010889851488173008, + -0.013465944677591324, + 0.005744551308453083, + 0.020429663360118866, + -0.013741463422775269, + 0.007280564866960049, + -0.004704470746219158, + -0.01702701672911644, + 0.026628820225596428, + 0.008120894432067871, + 0.0016789381625130773, + 0.020677629858255386, + 0.007253013085573912, + -0.01775713823735714, + -0.021641943603754044, + 0.0021300988737493753, + -0.013459057547152042, + 0.015718305483460426, + 0.005400153808295727, + 0.026780355721712112, + -0.012811589986085892, + -0.030279435217380524, + -0.0008261236944235861, + 0.0073150042444467545, + -0.004294637590646744, + -0.006340359337627888, + -0.0020526095759123564, + 0.020966924726963043, + 0.006874175742268562, + -0.009257406927645206, + -0.011351344175636768, + -0.01040769461542368, + 0.005252062808722258, + 0.010297487489879131, + -0.0009849769994616508, + -0.00016003724886104465, + 0.004928329028189182, + 0.0002720740740187466, + -0.008045127615332603, + 0.02504459209740162, + 0.005544800776988268, + -0.0027327947318553925, + 0.007583634462207556, + 0.005882310681045055, + -0.01136512029916048, + -0.0027689565904438496, + -0.025017039850354195, + -0.003258001059293747, + -0.024121606722474098, + 0.014189179986715317, + -0.013500384986400604, + 0.0082655418664217, + -0.011840388178825378, + 0.0038331449031829834, + -0.012749598361551762, + -0.005658451933413744, + -0.0002718588220886886, + 0.02633952535688877, + 0.004184430465102196, + 0.004273973871022463, + 0.01892809011042118, + 0.0328417532145977, + 0.023198621347546577, + -0.026174215599894524, + -0.0035920666996389627, + -0.022275634109973907, + -0.0009815330849960446, + -0.010373255237936974, + -9.244921966455877e-5, + -0.008382637053728104, + -0.010090848430991173, + 0.016090255230665207, + 0.017770914360880852, + 0.0017082119593396783, + 0.00033298940979875624, + 0.015263699926435947, + -0.005407041870057583, + -0.007590522523969412, + -0.0220414437353611, + -0.015883615240454674, + 0.005951189901679754, + -0.01812908798456192, + 0.011895491741597652, + 0.013989428989589214, + 0.015387683175504208, + 0.0019182944670319557, + -0.009519148617982864, + 0.009271183051168919, + 0.022633807733654976, + -0.012088354676961899, + -0.00838952511548996, + 0.01764693111181259, + -0.019947506487369537, + 0.01384478248655796, + -0.0073218923062086105, + -0.03884804621338844, + 0.0025519859045743942, + 0.018638797104358673, + -0.0009849769994616508, + -0.02854367159307003, + 0.001419779029674828, + -0.020898044109344482, + 0.010325038805603981, + 0.006977494806051254, + 0.0023694552946835756, + -0.010276823304593563, + 0.016916809603571892, + 0.0012355262879282236, + 0.021049579605460167, + -0.005183183588087559, + 0.002944599138572812, + 0.00045503530418500304, + 0.00887856911867857, + -0.008492844179272652, + 0.0007593966438435018, + -0.022372066974639893, + -0.003430199809372425, + -0.009780891239643097, + 0.006467786617577076, + 0.006977494806051254, + -0.0206914059817791, + -0.009732675738632679, + -0.00906454399228096, + -0.019189832732081413, + 0.01665506698191166, + -8.001862443052232e-5, + 0.009043879806995392, + 0.03350299596786499, + -0.011282464489340782, + -0.007707617711275816, + 0.017013240605592728, + -0.014099637046456337, + -0.02829570509493351, + 0.015084614045917988, + -0.001615224638953805, + 0.0033509882632642984, + -0.017371414229273796, + -0.0025089362170547247, + -0.013417729176580906, + 0.00616816058754921, + 0.007542307022958994, + -0.001760732615366578, + 0.0028808857314288616, + 0.0010874352883547544, + 0.006409239023923874, + 0.02413538098335266, + 0.027593133971095085, + 0.014740215614438057, + 0.01294934842735529, + 0.00820355024188757, + -0.023873640224337578, + 0.001785701373592019, + 0.015704529359936714, + -0.02854367159307003, + 0.006364467088133097, + 0.0024503886234015226, + 0.020305680111050606, + -0.009264294989407063, + 0.02450733073055744, + 0.006874175742268562, + 0.011475327424705029, + -0.026311974972486496, + 0.0008123477455228567, + -0.005951189901679754, + 0.0016660232795402408, + -0.022620031610131264, + -0.012839141301810741, + 0.007170357275754213, + -0.008954336866736412, + -0.01868012361228466, + -0.004108663182705641, + 0.004938661120831966, + -0.01294934842735529, + -0.001840805052779615, + -0.009656907990574837, + -0.017481621354818344, + -0.0038021490909159184, + -0.01151665486395359, + 0.009519148617982864, + 0.002753458684310317, + 0.01487797498703003, + -0.0049489932134747505, + -0.010793419554829597, + 0.020856717601418495, + -0.018721451982855797, + 0.012708269990980625, + 0.0049731009639799595, + -0.0011279020691290498, + -0.0004221022827550769, + 0.0062714796513319016, + -0.012081466615200043, + -0.0133832897990942, + 0.014051420614123344, + -0.00442550890147686, + 0.006367911119014025, + -0.00681562814861536, + 0.001413751975633204, + -0.007432099431753159, + -0.010338814929127693, + -0.02509969472885132, + -0.011461551301181316, + -0.006033845245838165, + 0.0021438749972730875, + -0.0031529597472399473, + -0.0007163469563238323, + 0.015993822365999222, + 0.006150940433144569, + 0.008100231178104877, + 0.00035774297430180013, + 0.006757080554962158, + -0.00952603667974472, + -0.027909979224205017, + 0.02132509835064411, + -0.009780891239643097, + -0.007996911182999611, + -0.00015422553406096995, + 0.011805948801338673, + 0.009897986426949501, + 0.0009823940927162766, + 0.006622765213251114, + -0.003435365855693817, + 0.02228941023349762, + 0.013989428989589214, + 0.002040555700659752, + -0.027469150722026825, + 0.020195472985506058, + 0.0006121667101979256, + 0.017591828480362892, + -0.004218870308250189, + 0.030968230217695236, + -0.0027017989195883274, + 0.0026432513259351254, + -0.0021335429046303034, + 0.025678282603621483, + 0.0012923518661409616, + 0.021724598482251167, + 0.005172851495444775, + -0.002686301013454795, + -0.0036850539036095142, + 0.015704529359936714, + -0.018514813855290413, + -0.006946498993784189, + 0.01954800635576248, + -0.015814736485481262, + 0.013100883923470974, + -0.011929932050406933, + 0.03014167584478855, + 0.0008730478584766388, + 0.0072392369620501995, + -0.012012586928904057, + 0.004242978058755398, + -0.014285610988736153, + 0.019327592104673386, + 0.008589275181293488, + -0.002973872935399413, + -0.01344528142362833, + -0.004783682059496641, + -0.008651266805827618, + -0.019313815981149673, + 0.004063891246914864, + 0.005014428868889809, + -0.006980938836932182, + 0.02779977209866047, + 0.021283769980072975, + -0.000507986405864358, + 0.00577210308983922, + -0.023432809859514236, + -0.007459651213139296, + -0.03771842271089554, + 0.00681562814861536, + 0.002295409794896841, + -0.014092748984694481, + 0.008857905864715576, + 0.016916809603571892, + 0.0036092866212129593, + -0.0016651622718200088, + -0.008892345242202282, + 0.034632619470357895, + 0.002636363497003913, + -0.017674483358860016, + 0.0018011992797255516, + -0.009815330617129803, + -0.016751497983932495, + -0.01763315498828888, + 0.0043015256524086, + 0.0023935630451887846, + 0.028130393475294113, + -0.033530548214912415, + -0.027331391349434853, + -0.003084080293774605, + 0.0010090848663821816, + -0.004322189372032881, + -0.005572352558374405, + -0.00736322021111846, + 0.024328244850039482, + -0.014574904926121235, + 0.019065849483013153, + -0.02346036210656166, + 0.005634344182908535, + -0.004859449807554483, + 0.010400806553661823, + -0.002720740856602788, + -0.012418976053595543, + -0.01610403135418892, + -0.020099041983485222, + 0.02290932647883892, + -0.0022799118887633085, + 0.004979989025741816, + 0.023970071226358414, + 0.0005153048550710082, + -0.00400878768414259, + 0.00028692622436210513, + -0.004539160057902336, + 0.006960275117307901, + -0.017798466607928276, + 0.014044532552361488, + 0.013252418488264084, + -0.016131581738591194, + -0.012866693548858166, + -0.00736322021111846, + -0.002806840231642127, + -0.00921607855707407, + 0.018156640231609344, + 0.004570155870169401, + 0.015112165361642838, + -0.004325633402913809, + -0.00015347216685768217, + -0.012756486423313618, + -0.0035817348398268223, + 0.024521106854081154, + -0.0073701078072190285, + -0.04110729321837425, + -0.008616827428340912, + 0.015635650604963303, + -0.0018373610218986869, + 0.011337568052113056, + -0.0014972684439271688, + 0.027951307594776154, + -0.007246125023812056, + 0.0013973931781947613, + 0.020966924726963043, + 0.01622801274061203, + 0.012294993735849857, + 0.0018235851312056184, + -0.010524789802730083, + -0.01960310898721218, + 0.0178811214864254, + 0.022826671600341797, + -0.0061578284949064255, + 0.025306332856416702, + 0.01971331611275673, + -0.004153434652835131, + -0.010145952925086021, + -0.0011106821475550532, + -0.010676324367523193, + 0.015057061798870564, + 0.0039743478409945965, + -0.009326286613941193, + 0.022551152855157852, + 0.015181045047938824, + -0.018321949988603592, + -0.003190843388438225, + -0.0025571519508957863, + 0.01666884310543537, + 0.011220472864806652, + 0.004229202400892973, + 0.007845376618206501, + 0.004721690900623798, + 0.00742521183565259, + -0.006819071713835001, + -0.013300633989274502, + 0.002216198481619358, + 0.0061371647752821445, + 0.03931642696261406, + 0.021269993856549263, + -0.009581140242516994, + 0.0005475921207107604, + -0.004466836340725422, + -0.025430316105484962, + 0.0035851786378771067, + -0.002031945623457432, + -0.02138020098209381, + 0.01573208160698414, + 0.029507983475923538, + -0.00949848536401987, + 0.002414226997643709, + 0.01604892686009407, + -0.00730122858658433, + 0.016214238479733467, + 0.006688200868666172, + 0.002329849638044834, + -0.005634344182908535, + 0.019065849483013153, + 0.005892642308026552, + -0.019644437357783318, + -0.014189179986715317, + 0.011000058613717556, + 0.02038833685219288, + -0.007500979118049145, + -0.014506026171147823, + -0.020746510475873947, + -0.004573599901050329, + -0.03226316347718239, + 0.044744133949279785, + -0.0037780413404107094, + -0.03173968195915222, + 0.019382694736123085, + -0.0012630780693143606, + 0.008747698739171028, + 0.018459709361195564, + 0.00931251049041748, + 0.0006216376204974949, + -0.008637490682303905, + -0.01264627929776907, + -0.016558635979890823, + 0.009167863056063652, + -0.0062370398081839085, + -0.009209191426634789, + 0.011372007429599762, + 0.005978741683065891, + 0.002806840231642127, + -0.01396876573562622, + -0.023419035598635674, + -0.003371652215719223, + 0.003431921824812889, + -0.010848523117601871, + -0.01807398535311222, + -0.01745406910777092, + 0.026615044102072716, + 0.012005699798464775, + -0.03135395422577858, + -0.0036368384025990963, + -0.003227005247026682, + -0.011564870364964008, + -0.0005264977808110416, + 0.03300706297159195, + 0.038489874452352524, + 0.0023763433564454317, + 0.037139832973480225, + -0.017247430980205536, + -0.018294399604201317, + 0.013892997987568378, + -0.013624368235468864, + -0.003574846778064966, + -0.019120953977108, + 0.002297131810337305, + -0.010910514742136002, + -0.007108365651220083, + -0.003826257074251771, + -0.012715158052742481, + -0.018845435231924057, + 0.010586781427264214, + 0.024769073352217674, + 0.0017417906783521175, + 0.011013834737241268, + -0.0004363086773082614, + -0.01086918730288744, + -0.011743957176804543, + 0.002519268309697509, + -0.017316309735178947, + 0.024342020973563194, + 0.01285980548709631, + 0.00019307788170408458, + -0.019203608855605125, + -0.011447775177657604, + -0.01905207335948944, + -0.010152840055525303, + 0.0061888243071734905, + -0.023914966732263565, + 0.007769609335809946, + 0.007969359867274761, + 0.006791519932448864, + 0.005716999527066946, + 0.012467192485928535, + -0.011633750051259995, + -0.009808442555367947, + 0.01697191223502159, + -0.00339920399710536, + -0.01288735680282116, + 0.00965001992881298, + 0.011523542925715446, + 0.0003999316832050681, + -0.007783384993672371, + -0.0171509999781847, + 0.043586958199739456, + 0.008237989619374275, + 0.002865387825295329, + 0.006550441961735487, + 0.02058119885623455, + 0.007008490618318319, + 0.0021335429046303034, + 0.012618727050721645, + 0.010290599428117275, + 0.010889851488173008, + 0.003056528512388468, + 0.015966271981596947, + -0.008465291932225227, + 0.003654058324173093, + -0.02352924272418022, + -0.0035042453091591597, + 0.009470933116972446, + -0.009291846305131912, + -0.02246849797666073, + 0.01212968211621046, + 0.00679840799421072, + -0.005365713965147734, + 2.100017991324421e-5, + -0.01825307123363018, + 0.009553588926792145, + 0.023556793108582497, + -0.008155334740877151, + 0.009911762550473213, + 0.009677572175860405, + -0.010972506366670132, + 0.00719790905714035, + 0.026670148596167564, + -0.0005923638236708939, + -0.0018253071466460824, + 0.004136214964091778, + 0.017605604603886604, + 0.02308841235935688, + 0.008568611927330494, + 0.014478473924100399, + 0.006953387055546045, + -0.004966212902218103, + 0.0021972565446048975, + 0.01117914542555809, + 0.006581437774002552, + 0.006409239023923874, + -0.0062714796513319016, + 0.00934006180614233, + -0.0017908674199134111, + 0.010917402803897858, + 0.014092748984694481, + 0.008678819052875042, + 0.022082772105932236, + 0.012770261615514755, + 0.00034246034920215607, + -0.002493438310921192, + -0.006071729119867086, + 0.013169762678444386, + -0.007108365651220083, + 0.007583634462207556, + 0.0025106582324951887, + 0.0009384833974763751, + -0.0009789500618353486, + -0.000255069462582469, + 0.010242383927106857, + -0.004528827965259552, + -0.005806542932987213, + -0.0061371647752821445, + 0.0021094351541250944, + 0.005575796589255333, + 0.02040211297571659, + 0.003884804667904973, + 0.030968230217695236, + 0.012990676797926426, + 0.004304969683289528, + 0.013204202987253666, + 0.0013379845768213272, + 0.009209191426634789, + 0.01899697072803974, + -0.015208596363663673, + 0.010462798178195953, + 0.01580096036195755, + -0.006929279305040836, + -0.005579240620136261, + -0.011440887115895748, + 0.00875458586961031, + 0.006939610932022333, + -0.0074045476503670216, + -0.02125621773302555, + -0.0029084375128149986, + 1.8336480934522115e-5, + 0.0035008012782782316, + -0.006092392839491367, + 0.008534171618521214 + ], + "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff": [ + -0.02178681455552578, + -0.028110621497035027, + -0.007702627684921026, + 0.014127499423921108, + -0.035344015806913376, + -0.033755846321582794, + -0.014957680366933346, + 0.008734938688576221, + -0.024804338812828064, + 0.00889375526458025, + -0.022479834035038948, + 0.02900577150285244, + -0.007919196039438248, + -0.03999302536249161, + -0.014972117729485035, + 0.019173551350831985, + -0.03491088002920151, + 0.02806730754673481, + -0.015188686549663544, + -0.011290449649095535, + 0.05549934506416321, + -0.005323981400579214, + -0.020761722698807716, + 0.021599121391773224, + -0.013124064542353153, + -0.026753457263112068, + 0.004421611316502094, + 0.007861444726586342, + -0.028283875435590744, + 0.022624213248491287, + 0.045652687549591064, + -0.001990627497434616, + 0.014986556023359299, + -0.0073055848479270935, + -0.01156476978212595, + -0.04874240234494209, + -0.001900390605442226, + 0.021945631131529808, + 0.0036834729835391045, + -0.04406451806426048, + -0.050705958157777786, + 0.05362241715192795, + -0.003187169786542654, + -0.03167678415775299, + -0.05804041773080826, + 0.01869709976017475, + 0.0026331148110330105, + -0.0513412244617939, + 0.007193691097199917, + -0.0002885326975956559, + 0.009052572771906853, + -0.03860698640346527, + -0.008041918277740479, + -0.001437474973499775, + 0.03543064370751381, + -0.0058473558165133, + 0.024140194058418274, + 0.025901619344949722, + -0.013658267445862293, + -0.041754450649023056, + -0.007435526233166456, + -0.01657472737133503, + 0.004039006773382425, + -0.0045190672390162945, + -0.03834710270166397, + -0.04767399653792381, + -0.010994472540915012, + -0.016618039458990097, + -0.035892657935619354, + 0.00021386161097325385, + 0.03831822797656059, + 0.047240857034921646, + -0.01722443290054798, + 0.0006799355614930391, + -0.024645520374178886, + -0.012958028353750706, + 0.024645520374178886, + 0.0073055848479270935, + 0.010171511210501194, + -0.0031167848501354456, + -0.0320521704852581, + 0.007096235174685717, + -0.004576819017529488, + 0.003919893875718117, + 0.04406451806426048, + 0.002479712013155222, + -0.014019215479493141, + -0.044555407017469406, + 0.003981254994869232, + -0.03638354688882828, + 0.02096385322511196, + 0.012409388087689877, + -0.005771556403487921, + 0.015029869973659515, + -0.012236133217811584, + -0.026031561195850372, + 0.04880015179514885, + -0.015347504056990147, + 0.024414515122771263, + -0.018076268956065178, + -0.007002388592809439, + 0.03112814575433731, + -0.012907495722174644, + 0.0010377251310274005, + 0.01009210292249918, + 0.03286069631576538, + 0.019433433189988136, + -0.016935674473643303, + -0.02848600596189499, + 0.06398884207010269, + -0.006428481545299292, + -0.005785994231700897, + 0.04556605964899063, + -0.026017123833298683, + -0.018928106874227524, + -0.04334262013435364, + 0.022133324295282364, + -0.004093148745596409, + -0.004981080535799265, + -0.023836998268961906, + 0.043487001210451126, + 0.014827738516032696, + -0.01709449104964733, + 0.03407347947359085, + -0.01859603449702263, + 0.014611169695854187, + 5.5664932006038725e-5, + -0.018740413710474968, + 0.00969505961984396, + 0.04264960065484047, + -0.05466194450855255, + -0.007002388592809439, + 0.011268792673945427, + 0.03031962178647518, + 0.024645520374178886, + 0.0019382900791242719, + -0.03470874950289726, + 0.045768190175294876, + -0.046432334929704666, + 0.037509702146053314, + -0.03979089483618736, + -0.05321815609931946, + -0.011037786491215229, + -0.002959772478789091, + 0.006554813589900732, + 0.001765035092830658, + -0.022104447707533836, + 0.04501741752028465, + -0.03863586112856865, + 0.02431344985961914, + -0.03502638265490532, + -0.021440302953124046, + 0.05665437877178192, + 0.0023569895420223475, + -0.011853528209030628, + -0.01095837727189064, + -0.004176166839897633, + 0.005887059960514307, + 0.036556802690029144, + 0.018956981599330902, + 0.026291443035006523, + -0.05905107408761978, + 0.017426563426852226, + 0.010864530690014362, + 0.046172451227903366, + 0.01657472737133503, + 0.0048727961257100105, + 0.019317930564284325, + -0.007096235174685717, + 0.035228513181209564, + 0.0157662034034729, + -0.023548239842057228, + -0.02938115783035755, + -0.018422778695821762, + -0.0030662522185593843, + -0.0076665328815579414, + 0.04995518550276756, + 0.003665425581857562, + 0.006107238121330738, + -0.008850442245602608, + -0.0180473942309618, + -0.01976550556719303, + -0.004327765200287104, + -0.010633524507284164, + -0.02256646193563938, + 0.024789899587631226, + -0.00046426919288933277, + -0.011196603067219257, + 0.002432788722217083, + -0.054575320333242416, + -0.011586426757276058, + -0.0227397158741951, + -0.028125058859586716, + 0.00963008962571621, + -0.04435327649116516, + 0.009312455542385578, + 0.010077664628624916, + -0.013311757706105709, + -0.005926764104515314, + 0.007745941635221243, + -0.03274518996477127, + -0.053391408175230026, + -0.049926310777664185, + 0.03381359577178955, + -0.049002282321453094, + 0.028038430958986282, + -0.013232349418103695, + 0.016387034207582474, + 0.004843920469284058, + -0.022133324295282364, + 0.013254006393253803, + -0.027215469628572464, + -0.00013309952919371426, + 0.006291321478784084, + 0.007276709191501141, + -0.0013355071423575282, + -0.023995814844965935, + 0.004620132967829704, + 0.022783029824495316, + -0.02941003255546093, + -0.023230604827404022, + -0.006977122277021408, + -0.0006858009728603065, + -0.021151546388864517, + -0.01872597634792328, + -0.020617343485355377, + -0.02900577150285244, + -0.001302119460888207, + -0.07172755897045135, + 0.0358349047601223, + 0.057116392999887466, + 0.014185251668095589, + -0.0014492056798189878, + -0.022681964561343193, + 0.018769290298223495, + 0.008265706710517406, + -0.004645399283617735, + 0.048598021268844604, + 0.03658567741513252, + -0.028543757274746895, + 0.012005126103758812, + 0.037769585847854614, + 0.019548937678337097, + 0.006172208581119776, + 0.033611465245485306, + -0.01229388453066349, + 0.02445782721042633, + 0.02751866541802883, + 0.0235193632543087, + -0.048857904970645905, + 0.021281486377120018, + 0.03245643153786659, + 0.005598301533609629, + -0.019462309777736664, + -0.026782331988215446, + 0.05812704563140869, + 0.023577114567160606, + -0.013874836266040802, + -0.015607385896146297, + -0.036816682666540146, + 0.00269086635671556, + 0.02126704901456833, + 0.043920136988162994, + -0.01243826374411583, + 0.02419794537127018, + -0.024558894336223602, + 0.014899928122758865, + -0.027042215690016747, + -0.020949413999915123, + 0.007998605258762836, + -0.0572030209004879, + -0.0020501839462667704, + -0.019881008192896843, + -0.02044408768415451, + -0.012214476242661476, + 0.0031131755094975233, + 0.0061685992404818535, + 0.0009429763304069638, + 0.0056343963369727135, + -0.031185897067189217, + -0.00889375526458025, + -0.0076593137346208096, + 0.013412822969257832, + 0.02645025961101055, + -0.005933983251452446, + 0.001529516652226448, + -0.004186995327472687, + -0.0265802014619112, + -0.039502136409282684, + 0.006157770752906799, + -0.0010954767931252718, + 0.005237353499978781, + 0.013975901529192924, + 0.030290745198726654, + 0.0067894295789301395, + 0.014351287856698036, + -0.020675094798207283, + 0.006865228526294231, + -0.02271084114909172, + 0.011730805970728397, + -0.031214771792292595, + 0.024371201172471046, + 0.017137804999947548, + -0.036152537912130356, + -0.01181743387132883, + 0.0010756247211247683, + 0.07051477581262589, + 0.03745195269584656, + -0.037336450070142746, + 0.006201084703207016, + 0.047760624438524246, + 0.0015385403530672193, + -0.03225430101156235, + -0.010850093327462673, + -0.03164790943264961, + 0.010308671742677689, + 0.021007167175412178, + 0.0011802995577454567, + -0.03618141636252403, + -0.011774119921028614, + 0.021223735064268112, + 0.010684057138860226, + -0.04931991919875145, + 0.03196554258465767, + 0.006219131872057915, + -0.043515875935554504, + 0.021757937967777252, + -0.008482275530695915, + 0.024255696684122086, + 0.01591058261692524, + -0.023605991154909134, + 0.008258487097918987, + -0.02379368431866169, + 0.011470923200249672, + -0.0031420511659234762, + -0.05757840350270271, + -0.018365027382969856, + -0.03089713864028454, + -0.0323120541870594, + -0.02337498404085636, + -0.025901619344949722, + -0.014654483646154404, + -0.02606043592095375, + -0.002042965032160282, + 0.019086923450231552, + -0.009492929093539715, + -0.007345289457589388, + 0.036296918988227844, + -0.0029760152101516724, + 0.006464576348662376, + 0.0008563488372601569, + -0.00742108840495348, + 0.027229906991124153, + 0.009442396461963654, + 0.03543064370751381, + -0.019736628979444504, + 0.03577715530991554, + -0.01628596894443035, + 0.021324800327420235, + -0.007345289457589388, + 0.035344015806913376, + -0.027432039380073547, + -0.0024490314535796642, + -0.012958028353750706, + 0.002427374478429556, + 0.0114997997879982, + -0.012474359013140202, + -0.04553718492388725, + 0.024486703798174858, + 0.028558196499943733, + -0.0025952153373509645, + 0.014914366416633129, + 0.01872597634792328, + -0.015535196289420128, + -0.03973314166069031, + -0.03886686637997627, + 0.04877127707004547, + -0.012994123622775078, + -0.02968435361981392, + 0.02620481513440609, + -0.024096880108118057, + 0.014329630881547928, + 0.02792292833328247, + -0.026551324874162674, + 0.024154631420969963, + 0.04891565442085266, + -0.018379466608166695, + 0.0070565310306847095, + 0.031590159982442856, + 0.018365027382969856, + -0.0574629008769989, + 0.03185003995895386, + -0.029973112046718597, + 0.023461611941456795, + -0.026435822248458862, + 0.0161560270935297, + 0.002154858782887459, + 0.010128197260200977, + 0.014250222593545914, + 0.001524102408438921, + -0.0207184087485075, + -0.007287537679076195, + 0.028630385175347328, + 0.02086278796195984, + 0.017051177099347115, + -0.015491883270442486, + 0.019881008192896843, + -0.022118885070085526, + 0.006446529179811478, + -0.02724434621632099, + 0.005024394486099482, + -0.01936124451458454, + 0.014957680366933346, + -0.007803692948073149, + 0.01450288575142622, + -0.026421384885907173, + -0.015116496942937374, + 0.02727322094142437, + -0.020270831882953644, + -0.011810214258730412, + 0.054979581385850906, + 0.07103454321622849, + 0.006132504437118769, + 0.02499203011393547, + -0.027720797806978226, + 0.024544455111026764, + 0.01762869395315647, + 0.01001991331577301, + -0.021194858476519585, + -0.05009956657886505, + -0.0036600115709006786, + 0.009261922910809517, + 0.026941148564219475, + -0.022003382444381714, + -0.02297072298824787, + -0.055788103491067886, + -0.020227519795298576, + -0.016791295260190964, + -0.005038832314312458, + -0.025858305394649506, + 0.008944288827478886, + 0.0032539451494812965, + -0.0011198407737538218, + -0.008720500394701958, + -0.014928803779184818, + -0.012019564397633076, + -0.032138798385858536, + 0.020357459783554077, + 0.00896594487130642, + 0.007229785900563002, + -0.027330972254276276, + 0.03649904951453209, + -0.028659261763095856, + 0.0173976868391037, + -0.04452652856707573, + -0.00889375526458025, + 0.016776857897639275, + -0.013116845861077309, + 0.024255696684122086, + -0.0161560270935297, + -0.020631780847907066, + -0.00968062225729227, + -0.009774468839168549, + 0.004457706119865179, + 0.021310362964868546, + -0.048309262841939926, + -0.020371899008750916, + 0.0579826682806015, + -0.00407510157674551, + 0.016372594982385635, + -0.013975901529192924, + -0.03248530998826027, + -0.01966444030404091, + 0.004085930064320564, + -0.011665835045278072, + -0.00011911279580090195, + -0.0065512037836015224, + -0.006821915041655302, + 0.027345411479473114, + 0.012207257561385632, + -0.034535493701696396, + 0.009572337381541729, + -0.030030863359570503, + -0.002571753691881895, + -0.0018823432037606835, + -0.005822089035063982, + 0.022811906412243843, + -0.0315324068069458, + 0.009666183963418007, + -0.017686445266008377, + 0.03098376654088497, + 0.016473660245537758, + 0.03196554258465767, + 0.008236830122768879, + 0.021541370078921318, + -0.012676489539444447, + -0.010460269637405872, + -0.009204170666635036, + -0.017296621575951576, + -0.007435526233166456, + 0.025771677494049072, + 0.009030915796756744, + -0.027071090415120125, + 0.0424763448536396, + 0.0002955260861199349, + 0.0016170465387403965, + -0.04054166376590729, + -0.010388080030679703, + 0.01056855358183384, + 0.01323956809937954, + -0.041696697473526, + 0.012322760187089443, + -0.02554067224264145, + -0.014011996798217297, + -0.016921237111091614, + 0.007078188005834818, + -0.015463006682693958, + -0.027287660166621208, + 0.03395797684788704, + -0.015520758926868439, + -0.006987950764596462, + -0.018740413710474968, + 0.012589861638844013, + 0.033495962619781494, + -0.010171511210501194, + -0.0033929101191461086, + 0.004190604668110609, + -0.006565642077475786, + 0.03303394839167595, + -0.02311510220170021, + -0.027172155678272247, + -0.005789604038000107, + 0.008193517103791237, + -0.003262968733906746, + 0.029973112046718597, + 0.014914366416633129, + -0.023476049304008484, + -0.006164989899843931, + 0.029742104932665825, + 0.024761024862527847, + -0.029973112046718597, + -0.0094135208055377, + 0.018538283184170723, + -0.0036545973271131516, + -0.014026434160768986, + 0.013246786780655384, + 0.014127499423921108, + 0.034679871052503586, + 0.01816289685666561, + 0.014481228776276112, + -0.026536887511610985, + 0.005869012326002121, + 0.002782908035442233, + -0.018783727660775185, + 0.010907844640314579, + -0.02779298648238182, + 0.04758736863732338, + -0.024616645649075508, + -0.010662400163710117, + -0.022681964561343193, + -0.0002661990583874285, + 0.017080053687095642, + 0.029713228344917297, + 0.02979985624551773, + -0.019187988713383675, + 0.001264219987206161, + 0.0046706655994057655, + 0.018408341333270073, + 0.002304652240127325, + 0.011268792673945427, + 0.01628596894443035, + 0.03288957104086876, + 0.06543263047933578, + -0.007110673002898693, + -0.019996512681245804, + 0.03820272162556648, + -0.0047861686907708645, + -0.00581847969442606, + -0.020083140581846237, + 0.007825350388884544, + 0.023822559043765068, + -0.02298516035079956, + 0.021570244804024696, + -0.0030391812324523926, + 0.004046225920319557, + 0.018653785809874535, + -0.00815020315349102, + -0.014271878637373447, + -0.01168749202042818, + 0.013398385606706142, + 0.009976599365472794, + 0.013802646659314632, + 0.005493626464158297, + -0.01015707291662693, + -0.024659959599375725, + 0.04400676488876343, + -0.017614256590604782, + -0.006623393390327692, + 0.01149258017539978, + 0.006977122277021408, + 0.014596732333302498, + 0.025020906701683998, + 0.0047645121812820435, + -0.007435526233166456, + -0.02711440436542034, + 0.02953997440636158, + 0.023432735353708267, + 0.04077267274260521, + 0.017874138429760933, + 0.026637952774763107, + 0.009276360273361206, + 0.009175295010209084, + 0.036412421613931656, + -0.008193517103791237, + 0.005208477843552828, + 0.0037755148950964212, + -0.002037550788372755, + 0.05879119038581848, + 0.0033279394265264273, + -0.014293535612523556, + -0.0011171336518600583, + -0.0317922905087471, + 0.05402667820453644, + -0.02686895988881588, + 0.02044408768415451, + 0.029366718605160713, + -0.033091701567173004, + 0.015289751812815666, + -0.04435327649116516, + 0.016675792634487152, + 0.0037249820306897163, + -0.03502638265490532, + -0.005547768902033567, + -0.04478641226887703, + 0.05775165930390358, + 0.00929079856723547, + 0.0034632948227226734, + 0.012965247966349125, + -0.020790597423911095, + -0.01884147897362709, + -0.04033953323960304, + -0.02325948141515255, + 0.017744198441505432, + 0.024919841438531876, + -0.006731677800416946, + 0.013607734814286232, + -0.001066601020283997, + 0.01618490368127823, + -0.0029363110661506653, + 0.016603602096438408, + -0.022956285625696182, + 0.0031619034707546234, + -0.0037033252883702517, + 0.022956285625696182, + -0.0011378881754353642, + -0.024140194058418274, + 0.009131981059908867, + 0.009565118700265884, + 0.0157662034034729, + -0.00011640568845905364, + 0.03297619894146919, + -0.054575320333242416, + -0.00026281518512405455, + 0.0004899867344647646, + -0.012423825450241566, + 0.018783727660775185, + -0.019881008192896843, + 0.003362229559570551, + -0.002613262739032507, + 0.015361941419541836, + 0.012611518613994122, + 0.005796822719275951, + 0.02432788722217083, + 0.027576418593525887, + -0.002338942140340805, + -0.0024057175032794476, + -0.0015737327048555017, + -0.015506320632994175, + -0.030954889953136444, + -0.025295227766036987, + -0.015073182992637157, + -0.030290745198726654, + -0.030435124412178993, + -0.0038368760142475367, + 0.01302299927920103, + -0.006266055162996054, + -0.006338244769722223, + 0.002609653165563941, + 0.005688538309186697, + -0.006125285290181637, + 0.023028474301099777, + 0.00661978404968977, + -0.009709497913718224, + -0.0055008456110954285, + 0.0006275981431826949, + -0.0017551090568304062, + -0.007442745380103588, + 0.01712336763739586, + 0.01217116229236126, + 0.008258487097918987, + -0.020761722698807716, + -0.012950809672474861, + -0.01469779759645462, + 0.00010935592581517994, + 0.005150726065039635, + 0.026811208575963974, + -0.019346805289387703, + -0.030579503625631332, + -0.005082146264612675, + -0.03046400099992752, + -0.007435526233166456, + 0.014322411268949509, + 0.003353205742314458, + 0.02805286832153797, + 0.014416257850825787, + -0.014033653773367405, + -0.019707754254341125, + 0.011023348197340965, + -0.004504629410803318, + 0.00514350738376379, + -0.013780989684164524, + 0.006742506287992001, + 0.014033653773367405, + -0.04934879392385483, + -0.047760624438524246, + 0.007413869258016348, + 0.043660253286361694, + 0.028023993596434593, + -0.01670466735959053, + -0.0017812778241932392, + 0.025165285915136337, + 0.02380812168121338, + -0.0014943241840228438, + 0.011860746890306473, + 0.009276360273361206, + 0.005129069089889526, + -0.00963008962571621, + 0.0304928757250309, + 0.019823256880044937, + -0.03915562480688095, + 0.007507715839892626, + -0.03392910212278366, + 0.015102059580385685, + -0.01430797390639782, + 0.0185671579092741, + 0.0018020322313532233, + 0.04891565442085266, + 0.00567771028727293, + 0.011644178070127964, + 0.004547943361103535, + 0.018365027382969856, + -0.017585380002856255, + 0.040050774812698364, + -0.002604238921776414, + 0.017960766330361366, + 0.0024418123066425323, + 0.0005418729851953685, + -0.012120629660785198, + 0.006764163263142109, + 0.0350552573800087, + 0.030521752312779427, + 0.004421611316502094, + 0.008576121181249619, + -0.0072839283384382725, + -0.00021228246623650193, + -0.009832220152020454, + -0.014972117729485035, + 0.005630786996334791, + 0.008864879608154297, + -0.025093097239732742, + 0.03340933471918106, + 0.006424872204661369, + 0.025728365406394005, + 0.028125058859586716, + -0.008987601846456528, + -0.00841730460524559, + 0.0292512159794569, + -0.0037249820306897163, + -0.04527730122208595, + -0.012582642957568169, + 0.011073880828917027, + -0.019173551350831985, + 0.00026484549744054675, + -0.0074860588647425175, + 0.012640394270420074, + 0.0069049326702952385, + 0.04059941694140434, + -0.01115328911691904, + -0.0018877574475482106, + 0.013975901529192924, + 0.00448297243565321, + 0.012467139400541782, + 0.018523845821619034, + -6.7621331254486e-5, + 0.017570942640304565, + 0.012394949793815613, + 0.022234389558434486, + -0.04181220382452011, + 0.008099670521914959, + 0.008460618555545807, + -0.0036419641692191362, + -0.02499203011393547, + 0.049377668648958206, + 0.006157770752906799, + -0.02177237533032894, + -0.0317922905087471, + 0.020559590309858322, + 0.035344015806913376, + 0.006908542476594448, + 0.01686348393559456, + -0.01764313131570816, + -0.013318976387381554, + -0.019548937678337097, + 0.011969031766057014, + -0.018336152657866478, + 0.010207605548202991, + -5.861877980350982e-6, + 0.035344015806913376, + 0.008020262233912945, + -0.0200687013566494, + -0.039762016385793686, + -0.0038188286125659943, + 0.0040967585518956184, + -0.02136811427772045, + 0.003706934629008174, + -0.040974803268909454, + 0.0239091869443655, + -0.02792292833328247, + 0.010308671742677689, + 0.02819724753499031, + -0.000970949768088758, + -0.007724284660071135, + -0.002434593392536044, + 0.041119180619716644, + 0.009853877127170563, + 0.024096880108118057, + -0.018076268956065178, + -0.0002449933672323823, + -0.03277406841516495, + 0.0212381724268198, + -0.034304484724998474, + -0.018249524757266045, + -0.021757937967777252, + -0.01992432214319706, + 0.0017939109820872545, + -0.028702575713396072, + 0.015939457342028618, + -0.0040895394049584866, + 0.016257092356681824, + -0.0008098767721094191, + 0.026031561195850372, + -0.008857660926878452, + -0.004573209676891565, + 0.018090708181262016, + -0.003015719586983323, + 0.004381907172501087, + -0.02510753460228443, + 0.008857660926878452, + 0.022956285625696182, + 0.0039559886790812016, + 0.020545152947306633, + -0.007406650576740503, + -0.017412126064300537, + -0.01924574002623558, + 0.004176166839897633, + -0.02564173750579357, + -0.03260081261396408, + -0.019808819517493248, + 0.008460618555545807, + 0.00269086635671556, + -0.01658916473388672, + -0.013658267445862293, + 0.02792292833328247, + -0.000665948842652142, + -0.013015780597925186, + -0.021036041900515556, + -0.03329383209347725, + 0.018494969233870506, + -0.02471771091222763, + -0.00010535166074987501, + -0.00524096330627799, + 0.008373990654945374, + 0.005735461600124836, + 0.0003289137384854257, + -0.03265856206417084, + 0.026840083301067352, + 0.03932888060808182, + 0.0021043261513113976, + 0.01871153712272644, + 0.01644478552043438, + 0.0017939109820872545, + 0.011507018469274044, + -0.02029970847070217, + -0.01517424825578928, + 0.006955465767532587, + -0.017080053687095642, + 0.010207605548202991, + -0.007839787751436234, + 0.00795529130846262, + -0.005735461600124836, + -0.003981254994869232, + -0.017484314739704132, + -0.014885490760207176, + 0.011723587289452553, + -0.01683460921049118, + -0.025482920929789543, + -0.00012960284948349, + 0.0006158673204481602, + -0.014098623767495155, + 0.030232993885874748, + -0.004338593687862158, + 0.025439606979489326, + 0.0041184150613844395, + -0.014748330228030682, + 0.031474653631448746, + -0.0044035641476511955, + -0.011514237150549889, + 0.006374339573085308, + -0.006266055162996054, + 0.004020959138870239, + 0.028023993596434593, + 0.01544856932014227, + 0.0030824949499219656, + 0.00618303706869483, + 0.018134022131562233, + -0.008677187375724316, + 0.0066558788530528545, + -0.005623567849397659, + 0.048049382865428925, + 0.002920068334788084, + -0.03730757161974907, + 0.014257441274821758, + 0.007529372815042734, + 0.006078362464904785, + 0.009514586068689823, + -0.009788906201720238, + -0.0009384644799865782, + -0.00371054420247674, + -0.033236078917980194, + -0.013795427978038788, + -0.0013598711229860783, + -0.001213687239214778, + 0.012272227555513382, + -0.025425167754292488, + 0.005493626464158297, + -0.001281364937312901, + -0.03182116523385048, + 0.014286316931247711, + 0.0014483033446595073, + 0.015737326815724373, + -0.010315890423953533, + 0.002086278749629855, + 0.014524542726576328, + -0.010676838457584381, + 0.013037437573075294, + 0.028038430958986282, + -0.00862665381282568, + -0.004616523161530495, + 0.011124413460493088, + -0.022797467187047005, + 0.03245643153786659, + -0.014741111546754837, + 0.01370158139616251, + 0.002133202040567994, + -0.050734832882881165, + 0.009593994356691837, + -0.04689434915781021, + -6.271469464991242e-5, + -0.004284451249986887, + 0.00358962663449347, + -0.010756246745586395, + -0.03340933471918106, + -0.013485012575984001, + 0.017556505277752876, + 0.011095537804067135, + -0.03834710270166397, + -0.021844565868377686, + -0.012337198480963707, + -0.012698146514594555, + 0.0076593137346208096, + 0.03569052740931511, + 0.019187988713383675, + -0.01069127582013607, + -0.01657472737133503, + -0.031359151005744934, + 0.027966242283582687, + 0.019476747140288353, + 0.012163943611085415, + 0.002966991625726223, + 0.0419565811753273, + -0.00048367015551775694, + -0.05584585666656494, + -0.023014036938548088, + -0.012272227555513382, + 0.004663446452468634, + -0.003145660739392042, + -0.0323120541870594, + -0.005919544957578182, + -0.014243002980947495, + -0.025843868032097816, + 0.009875534102320671, + -0.005695757456123829, + -0.029828732833266258, + 0.021454742178320885, + 0.016112713143229485, + -6.728294101776555e-5, + 0.005977296736091375, + -0.001990627497434616, + 0.006713630631566048, + 0.024833213537931442, + 0.01749875396490097, + -0.02444338984787464, + 0.002154858782887459, + 0.01016429252922535, + 0.010048788972198963, + 0.004259184934198856, + 0.00550806475803256, + -0.04608582332730293, + -0.0153763797134161, + 0.04354475066065788, + -0.031734537333250046, + -0.019202427938580513, + 0.003080690046772361, + -0.007377774454653263, + 0.010207605548202991, + 0.012178380973637104, + 0.005327590741217136, + -0.0066558788530528545, + 0.018090708181262016, + 0.017700884491205215, + -0.01923130266368389, + -0.002346161287277937, + -0.012041221372783184, + -0.003178145969286561, + -0.007984166964888573, + -0.011990688741207123, + -0.005558597389608622, + -0.06722293049097061, + -0.016516974195837975, + -0.009261922910809517, + 0.03569052740931511, + -0.010402517393231392, + 0.01775863580405712, + 0.00708179734647274, + 0.010373641736805439, + 0.003750248346477747, + 0.010128197260200977, + -0.018653785809874535, + 0.01683460921049118, + -0.004656227771192789, + 0.012286665849387646, + -0.002421960234642029, + 0.017484314739704132, + -0.015520758926868439, + -0.009687840938568115, + 0.007767598144710064, + -0.010344766080379486, + -0.0046526179648935795, + 0.022653087973594666, + 0.02058846689760685, + 0.012163943611085415, + 0.014279098249971867, + 0.029626602306962013, + -0.034160107374191284, + 0.00968062225729227, + -0.0007079089991748333, + 0.001286779181100428, + 0.002965186722576618, + 0.006229960359632969, + -0.008987601846456528, + 0.00494859553873539, + 0.02766304463148117, + 0.011680273339152336, + 0.029626602306962013, + -0.007074578199535608, + 0.01762869395315647, + -0.007774817291647196, + 0.009254703298211098, + 0.00611084746196866, + 0.0025338539853692055, + -0.015188686549663544, + -0.00067271658917889, + -0.014762768521904945, + 0.012120629660785198, + -0.02528078854084015, + -0.018509406596422195, + -0.010344766080379486, + 0.03768295794725418, + -0.00875659566372633, + 0.01910136081278324, + -0.020155329257249832, + 0.009348549880087376, + -0.001813763054087758, + 0.021988945081830025, + -0.006428481545299292, + -0.0029868436977267265, + 0.017715321853756905, + 0.05931095406413078, + 0.007200910244137049, + 0.0025934104342013597, + -0.007265880703926086, + -0.024515580385923386, + 0.01076346542686224, + 0.011326543986797333, + 0.019938761368393898, + 0.009131981059908867, + -0.007363336626440287, + 0.0035138276871293783, + -0.034679871052503586, + 0.026767894625663757, + 0.028168372809886932, + -0.0026313099078834057, + 0.010099321603775024, + 0.0317922905087471, + 0.013008561916649342, + -0.0018624910153448582, + -0.011839089915156364, + 0.0017812778241932392, + 0.00928357895463705, + 0.022609775885939598, + 0.004446877632290125, + -0.03338045999407768, + -0.023591553792357445, + -0.005428656004369259, + -0.022653087973594666, + 0.0071900817565619946, + -0.01095837727189064, + 0.01578064076602459, + 0.020343022421002388, + 0.012517672032117844, + 0.013355071656405926, + -0.02112266980111599, + 0.010705714114010334, + 0.01350666955113411, + -0.020112015306949615, + -0.013716019690036774, + -0.0036455735098570585, + 0.0011144265299662948, + 0.0033080873545259237, + 0.008503931574523449, + -0.02766304463148117, + -0.00608558114618063, + 0.007847006432712078, + 0.009904409758746624, + 0.02887582965195179, + -0.00815020315349102, + -0.029828732833266258, + -0.020371899008750916, + 0.006825524382293224, + -0.013882054947316647, + 0.01457507535815239, + -0.002290214179083705, + 0.006186646409332752, + 0.0009862900478765368, + -0.02902020886540413, + -0.01316737849265337, + -0.027504228055477142, + 0.005121850408613682, + 0.01939011923968792, + 0.007449964061379433, + -0.043631378561258316, + -0.03476649895310402, + 0.0227397158741951, + -0.0006429384229704738, + -0.032802943140268326, + -0.024948718026280403, + 0.026508012786507607, + -0.034824252128601074, + -0.008771033026278019, + -0.011182164773344994, + 0.00475007388740778, + 0.006154161412268877, + 0.017022302374243736, + 0.01858159713447094, + -0.01749875396490097, + 0.011478142812848091, + -0.05518171191215515, + -0.012806430459022522, + -0.002613262739032507, + 0.006706411484628916, + 0.038433730602264404, + -0.010207605548202991, + -0.003937941510230303, + -0.004825873300433159, + -0.00026642464217729867, + 0.0030373763293027878, + -0.0188270416110754, + 0.009673402644693851, + 0.009442396461963654, + 0.030781634151935577, + -0.02364930510520935, + -0.007449964061379433, + -0.0011541307903826237, + 0.0037682957481592894, + -0.007042093202471733, + 0.02086278796195984, + 0.010756246745586395, + -0.012474359013140202, + 0.014885490760207176, + -0.010171511210501194, + 0.001857076771557331, + -0.025093097239732742, + -0.020646218210458755, + -0.01751319132745266, + -0.01082121767103672, + -0.040945928543806076, + -0.016935674473643303, + -0.010185949504375458, + 0.015477444976568222, + 0.0032070218585431576, + -0.009103105403482914, + 0.03837597742676735, + -0.004663446452468634, + -0.01871153712272644, + -0.022263264283537865, + 0.03618141636252403, + 0.0021151546388864517, + -0.008648310787975788, + 0.005619958508759737, + 0.012034001760184765, + 0.016488099470734596, + 0.0053203715942800045, + 0.017874138429760933, + 0.018220648169517517, + 0.015722889453172684, + -0.019938761368393898, + -0.013059094548225403, + 0.0009104910423047841, + -0.003456075908616185, + -0.0292512159794569, + -0.006583689246326685, + 0.01832171343266964, + -0.006395996548235416, + 0.011398733593523502, + -0.012034001760184765, + -0.016127150505781174, + -0.0065475944429636, + -0.036412421613931656, + -0.026233691722154617, + 0.012893058359622955, + -0.018278401345014572, + -0.013723238371312618, + -0.019577812403440475, + -0.026493573561310768, + 0.011990688741207123, + 0.011716367676854134, + -0.02177237533032894, + -0.011045005172491074, + 0.00040719431126490235, + 0.013109627179801464, + -0.02431344985961914, + 0.003934331703931093, + -0.014567856676876545, + -0.01128323096781969, + -0.008020262233912945, + -0.004703150596469641, + -0.026565764099359512, + 0.014856614172458649, + 0.0024454218801110983, + 0.011348200961947441, + -0.018870355561375618, + 0.004324155393987894, + -0.014914366416633129, + -0.008337896317243576, + -0.03797171637415886, + -0.019433433189988136, + 0.008410085923969746, + -0.0008333384175784886, + -0.007287537679076195, + -0.021454742178320885, + -0.014524542726576328, + -0.0211082324385643, + 0.007493278011679649, + 0.001598999137058854, + -0.010027131997048855, + 0.00018137630831915885, + 0.004428830463439226, + -0.007341679651290178, + -0.012106191366910934, + -0.0106190862134099, + 0.012322760187089443, + 0.016473660245537758, + -0.0042700134217739105, + -0.010575773194432259, + -0.02887582965195179, + 0.009904409758746624, + 0.015708452090620995, + 0.007847006432712078, + -0.03303394839167595, + 0.003616697620600462, + 0.016791295260190964, + 0.0207184087485075, + -0.012849744409322739, + 0.006078362464904785, + -0.010330327786505222, + 0.024010252207517624, + -0.013369509018957615, + -0.010582991875708103, + 0.005157945211976767, + 0.008157421834766865, + -0.017946328967809677, + 0.012380512431263924, + -0.032687440514564514, + 0.010756246745586395, + 0.015275314450263977, + 0.007157596293836832, + -0.00923304632306099, + 0.020487401634454727, + 0.03398685157299042, + 0.0204585250467062, + -0.00487640593200922, + 0.012532110325992107, + 0.005179602187126875, + 0.025612860918045044, + -0.007984166964888573, + 0.010373641736805439, + 0.010185949504375458, + -0.0023245043121278286, + -0.011976250447332859, + -0.016646916046738625, + 0.015217562206089497, + 0.020776160061359406, + -0.006735287141054869, + 0.012019564397633076, + 0.012958028353750706, + 0.023057350888848305, + -0.010936720296740532, + 0.029308967292308807, + 0.01604052446782589, + 0.01123269833624363, + -0.003753857919946313, + 0.022681964561343193, + 0.023447174578905106, + -0.013867617584764957, + -0.0028117839246988297, + 0.0008549952763132751, + -0.01055411621928215, + 0.019404558464884758, + 0.014293535612523556, + -0.02858707122504711, + 0.0009222218068316579, + -0.008908193558454514, + -0.0002461213443893939, + 0.007258662022650242, + -0.0048980629071593285, + 0.004710369743406773, + -0.005688538309186697, + -0.001791203860193491, + -0.006879666354507208, + -0.02994423545897007, + -0.011947374790906906, + 0.0016062180511653423, + 0.012315541505813599, + 0.0017578161787241697, + 0.008540026843547821, + 0.012524891644716263, + -0.036037035286426544, + -0.012662051245570183, + -0.012741460464894772, + 0.004587647505104542, + 0.0036545973271131516, + -0.025612860918045044, + -0.02646469883620739, + 0.0024454218801110983, + 0.002064621774479747, + 0.0007218957762233913, + -0.02298516035079956, + -0.001546661602333188, + -0.001439279643818736, + -0.01484217680990696, + 0.0015412474749609828, + 0.013485012575984001, + 0.0027937365230172873, + 0.000705653103068471, + 0.00841730460524559, + 0.01416359469294548, + 0.0029940626118332148, + 0.02604599855840206, + 0.028009554371237755, + -0.006219131872057915, + 0.026508012786507607, + -0.003089713864028454, + 0.010518020950257778, + 0.009211389347910881, + 0.003533679759129882, + 0.027706358581781387, + -0.013499450869858265, + -0.007652095053344965, + -0.0019058047328144312, + 0.01575176604092121, + -0.00031989006674848497, + 0.02912127412855625, + 0.014531761407852173, + -0.013008561916649342, + -0.004620132967829704, + -0.016473660245537758, + 0.004392735660076141, + 0.005789604038000107, + -0.00989719107747078, + -0.005713805090636015, + -0.009536243043839931, + -0.021844565868377686, + -0.00234074704349041, + 0.01056855358183384, + -0.021859003230929375, + -0.009918848052620888, + -0.02659463882446289, + 0.012936372309923172, + -0.0042303092777729034, + -0.0036185025237500668, + -0.012286665849387646, + -0.017686445266008377, + -0.0008974066586233675, + -0.003934331703931093, + 0.01591058261692524, + -0.00725144287571311, + -0.0001940094807650894, + -0.0037285916041582823, + 0.013196254149079323, + -0.02860151045024395, + -0.033351585268974304, + 0.0009980208706110716, + -0.0072370050475001335, + 0.02340386062860489, + 0.00822239276021719, + 0.00112705968786031, + -0.008677187375724316, + 0.020400773733854294, + -0.008706063032150269, + -0.012893058359622955, + 0.0012037612032145262, + -0.01990988478064537, + 0.01630040630698204, + -0.010720151476562023, + 0.03514188528060913, + -0.035632774233818054, + 0.01618490368127823, + -0.025627298280596733, + -0.012539329007267952, + -0.0032864303793758154, + 0.014827738516032696, + -0.009052572771906853, + 0.0038621423300355673, + -0.012257790192961693, + 0.009449615143239498, + -0.0013129479484632611, + -0.004858358297497034, + -0.012914715334773064, + -0.004371078684926033, + 0.03967539221048355, + -0.017137804999947548, + 0.005890669301152229, + -0.010864530690014362, + 0.009976599365472794, + 0.02434232458472252, + 0.018220648169517517, + 0.006154161412268877, + -0.008244049735367298, + -0.0022324626334011555, + -0.00963008962571621, + -0.006554813589900732, + -0.005222915671765804, + 0.007724284660071135, + -0.01924574002623558, + -0.012387731112539768, + -0.013297319412231445, + 0.017614256590604782, + 0.00022017820447217673, + -0.010120978578925133, + 0.0102292625233531, + 0.0010124588152393699, + 0.040050774812698364, + -0.02029970847070217, + 0.017830824479460716, + -0.023476049304008484, + -0.011665835045278072, + -0.01963556371629238, + -0.009038134478032589, + 0.0030572284013032913, + 0.011810214258730412, + -0.002833440899848938, + -0.004616523161530495, + -0.023360546678304672, + 0.024818776175379753, + -0.008121327497065067, + -0.003362229559570551, + 0.03673005476593971, + 0.001349042635411024, + -0.03265856206417084, + 0.04007965326309204, + -0.0037394200917333364, + -0.014943242073059082, + -0.015260876156389713, + 0.002418350661173463, + 0.02177237533032894, + -0.015000993385910988, + 0.007132329978048801, + 0.026103749871253967, + -0.028673699125647545, + -0.0029706009663641453, + 0.005396170541644096, + 0.009926066733896732, + 0.013297319412231445, + 0.021945631131529808, + -0.019996512681245804, + -0.0239091869443655, + 0.0009853877127170563, + -0.012445482425391674, + 0.0037430294323712587, + -0.0239091869443655, + -0.018769290298223495, + 0.0016892360290512443, + -0.0060350485146045685, + -0.006323806941509247, + -0.0010043374495580792, + 0.018639348447322845, + -0.03673005476593971, + 0.01517424825578928, + -0.01484217680990696, + 0.005800432525575161, + 0.04088817536830902, + 0.009492929093539715, + 0.009803344495594501, + 0.015506320632994175, + -0.007919196039438248, + -0.0012308323057368398, + 0.0188270416110754, + -0.003797171637415886, + 0.018798165023326874, + -0.008576121181249619, + 0.01336229033768177, + 0.01142039056867361, + -0.03996415063738823, + 0.005789604038000107, + -0.0010133611503988504, + 0.022248826920986176, + 0.0007516739424318075, + -0.003840485354885459, + -0.026089312508702278, + -0.010366423055529594, + 0.0033008684404194355, + 0.010265357792377472, + -0.010777903720736504, + 0.003080690046772361, + 0.0064826239831745625, + -0.01222169492393732, + -0.001987018156796694, + -0.01209897268563509, + 0.003051814390346408, + -0.00856168381869793, + -0.004894453100860119, + -0.007529372815042734, + 0.0026313099078834057, + -0.004334983881562948, + 0.008316239342093468, + 0.0043169367127120495, + 0.002911044517531991, + 0.023735933005809784, + -0.013549983501434326, + -0.006933808792382479, + -0.009276360273361206, + 0.005486407782882452, + 0.008179078809916973, + -0.003891018219292164, + 0.011867966502904892, + 0.005414218176156282, + -0.004197823815047741, + -0.016098275780677795, + 0.006764163263142109, + -0.01229388453066349, + 0.027215469628572464, + -0.017339935526251793, + 0.0023281138855963945, + 0.013145721517503262, + -0.011932936497032642, + -0.007810912095010281, + -0.0011577403638511896, + 0.011362639255821705, + 0.01645922288298607, + -0.019982075318694115, + -0.005562206730246544, + -0.032543059438467026, + 0.09078560769557953, + 0.005753509234637022, + 0.0047645121812820435, + -0.00976724922657013, + 0.004158119671046734, + -0.007334460970014334, + -0.009492929093539715, + 0.0021007165778428316, + 0.007265880703926086, + -0.004793387837707996, + -0.023966938257217407, + -0.006590908393263817, + 0.003306282451376319, + -0.012012345716357231, + -0.01149258017539978, + -0.01110275648534298, + 0.01544856932014227, + 0.0046706655994057655, + 0.019029172137379646, + 0.006226351018995047, + 0.00935576856136322, + -0.018928106874227524, + -0.006861619185656309, + 0.014871052466332912, + -0.016141589730978012, + 0.012250570580363274, + -0.008785471320152283, + -0.002306456910446286, + 0.028803640976548195, + 0.04140793904662132, + -0.003331548999994993, + -0.017845263704657555, + -0.00908866710960865, + -0.004789778497070074, + 0.01963556371629238, + 0.006713630631566048, + 0.009579556994140148, + 0.011723587289452553, + 0.010972815565764904, + -0.003400129033252597, + 0.012250570580363274, + -0.011969031766057014, + 0.041379064321517944, + 0.014972117729485035, + -0.004132853355258703, + -0.007027655374258757, + 0.019592251628637314, + -0.007558248471468687, + 0.015694012865424156, + 0.029597725719213486, + -0.015217562206089497, + -0.014401820488274097, + 0.0059484210796654224, + 0.004201433155685663, + -0.013347852043807507, + -0.009456834755837917, + -0.0010774293914437294, + -0.0011378881754353642, + 0.005414218176156282, + 0.0007182862609624863, + -0.005699366796761751, + 0.004616523161530495, + -0.02099272795021534, + -0.02727322094142437, + -0.020776160061359406, + -0.0017099905526265502, + 0.0033730578143149614, + 0.008287363685667515, + -0.020631780847907066, + -0.008135764859616756, + -0.0016775052063167095, + 0.004638180136680603, + 0.00037042275653220713, + -0.02873145043849945, + -0.009254703298211098, + 0.025049783289432526, + -0.016257092356681824, + 0.025612860918045044, + 0.025699488818645477, + 0.015087621286511421, + 0.011673054657876492, + 0.008742157369852066, + 0.00942795816808939, + -0.02965547703206539, + 0.0019689707551151514, + -0.013196254149079323, + -0.00875659566372633, + -0.009312455542385578, + 0.027735235169529915, + -0.022393206134438515, + -0.013716019690036774, + 0.0012506843777373433, + 0.004273622762411833, + -0.002032136544585228, + -0.0003417725092731416, + 0.0020592075306922197, + -0.0042303092777729034, + -0.0325719378888607, + 0.02180125191807747, + 0.018350590020418167, + 0.012669270858168602, + 0.01101612951606512, + -0.007146767806261778, + -0.009702279232442379, + 0.01316737849265337, + 0.017267746850848198, + 0.012662051245570183, + 0.017441000789403915, + -0.005840136669576168, + 0.023432735353708267, + 0.002562729874625802, + -0.026970025151968002, + 0.005461141467094421, + 0.002477907110005617, + -0.014928803779184818, + 0.004602085333317518, + 0.007099844515323639, + -0.01469779759645462, + -0.0029760152101516724, + -0.00989719107747078, + -0.0007616000366397202, + -0.002838855143636465, + -0.006691973656415939, + -0.017152242362499237, + -0.004461315926164389, + -0.011875185184180737, + -0.009377425536513329, + -0.004789778497070074, + -0.014033653773367405, + 0.004544333554804325, + 0.026666829362511635, + -0.009673402644693851, + 0.0018823432037606835, + -0.026017123833298683, + 0.006414043717086315, + -0.003495780285447836, + 0.0185671579092741, + 0.0058473558165133, + 0.01142761018127203, + -0.029828732833266258, + 0.008034699596464634, + -0.0011433024192228913, + 0.01048192661255598, + 0.006543985102325678, + -0.003851313842460513, + 0.014582294039428234, + 0.004013740457594395, + -0.010792341083288193, + 0.008742157369852066, + 0.021700186654925346, + 0.019996512681245804, + -0.025959370657801628, + 0.00024025593302212656, + -0.009658965282142162, + -0.011528675444424152, + 0.012135067954659462, + -0.0037285916041582823, + 0.010561334900557995, + -0.024761024862527847, + -0.009940504096448421, + 0.004486582241952419, + -0.006706411484628916, + 0.0073525081388652325, + -0.0017154047964140773, + -0.009507367387413979, + -0.000997118535451591, + 0.020487401634454727, + 0.01965000294148922, + 0.02113710716366768, + -0.009853877127170563, + -0.006251617334783077, + 0.001168568735010922, + -0.0039018464740365744, + -0.0009718521614558995, + 0.019678877666592598, + -0.0036852778866887093, + 0.004140072036534548, + 0.003187169786542654, + -0.01656028814613819, + 0.019577812403440475, + 0.0030626426450908184, + -0.005991734564304352, + 0.023317232728004456, + -0.014784424565732479, + -0.008438961580395699, + -0.007042093202471733, + 0.025569546967744827, + -0.021411428228020668, + -0.006594517733901739, + -0.0007963412790559232, + -0.0038116094656288624, + -0.0037249820306897163, + 0.006543985102325678, + -0.014055310748517513, + -0.002129592467099428, + -0.008366771973669529, + 0.004093148745596409, + 0.016675792634487152, + 0.010915063321590424, + -0.015029869973659515, + -0.02991536073386669, + -0.011557551100850105, + 0.007273099850863218, + -0.0004990104353055358, + 0.013716019690036774, + -0.00758712412789464, + -0.01682017184793949, + -0.008973164483904839, + -0.01602608524262905, + 0.010323109105229378, + -0.019159113988280296, + -0.015361941419541836, + 0.006821915041655302, + 0.006562032271176577, + -0.0067713819444179535, + 0.020559590309858322, + -0.017036739736795425, + 0.010525239631533623, + -0.008482275530695915, + 0.006583689246326685, + 0.0037249820306897163, + 0.0043566408567130566, + 0.003004891099408269, + -0.0066378312185406685, + 0.0030175242573022842, + -0.0030716664623469114, + 0.011969031766057014, + 0.02861594781279564, + -0.002600629348307848, + 0.004306108225136995, + 0.004930547904223204, + 0.010193168185651302, + -0.006399605888873339, + 0.00708179734647274, + -0.006998779252171516, + 0.025699488818645477, + 0.016271529719233513, + -0.0006722654215991497, + 0.004768121521919966, + 0.0006903128232806921, + -0.017152242362499237, + -0.00451184855774045, + 0.002654771553352475, + -0.023216167464852333, + -0.006854400038719177, + -0.0100343506783247, + -0.0011171336518600583, + 0.0012560986215248704, + 0.047933876514434814, + -2.513945582904853e-5, + -0.0028641214594244957, + -0.005735461600124836, + -0.02672458067536354, + 0.001010654028505087, + 0.014719454571604729, + -0.0014591318322345614, + -0.0008216075948439538, + -0.007507715839892626, + -0.0157662034034729, + -0.01035198476165533, + 0.002920068334788084, + -0.001484398148022592, + -0.003320720512419939, + -0.015491883270442486, + 0.016545850783586502, + 0.018928106874227524, + -0.025179723277688026, + 0.0009718521614558995, + 0.014495667070150375, + 0.00514350738376379, + 0.009276360273361206, + 0.0011469118762761354, + 0.01035920437425375, + -0.010258138179779053, + 0.010712932795286179, + -0.01977994292974472, + 0.022017819806933403, + 0.0038657516706734896, + 0.005154335871338844, + -0.0032449213322252035, + 0.02151249349117279, + -0.009081448428332806, + -0.00215666345320642, + -0.02444338984787464, + 0.010561334900557995, + -0.04033953323960304, + 0.005796822719275951, + 0.01658916473388672, + -0.003717763116583228, + 0.025598423555493355, + -0.004861968103796244, + -0.0006871545338071883, + 0.00501717533916235, + -0.01963556371629238, + -0.001433865400031209, + 0.004493800923228264, + -0.012835306115448475, + 0.0011595450341701508, + 0.016473660245537758, + 0.03398685157299042, + 0.004381907172501087, + -0.01544856932014227, + -0.016242654994130135, + 0.006287712138146162, + 0.011730805970728397, + -0.0056741004809737206, + 0.022104447707533836, + 0.0026222863234579563, + -0.009384645149111748, + 0.025569546967744827, + -0.0132901007309556, + -0.016372594982385635, + 0.0188270416110754, + 0.007789255119860172, + -0.00758712412789464, + 0.012712583877146244, + 0.0157662034034729, + 0.00698434142395854, + -0.008085232228040695, + 0.019606688991189003, + -0.0010693080257624388, + -0.0035517271608114243, + 0.011268792673945427, + 0.0036888872273266315, + 0.024905404075980186, + -0.008597778156399727, + 0.002562729874625802, + -0.0011595450341701508, + 0.008287363685667515, + -0.007940853014588356, + 0.018379466608166695, + 0.019332367926836014, + -0.006930199451744556, + -0.005161554552614689, + -0.009139200672507286, + 0.004309717565774918, + 0.002418350661173463, + -0.013759332709014416, + -0.0005554085364565253, + 0.010943939909338951, + -0.006598127074539661, + 0.00558025436475873, + -0.013087970204651356, + 0.004125634208321571, + -0.005378123372793198, + 0.037509702146053314, + -0.01235163677483797, + -0.02136811427772045, + 0.008482275530695915, + 0.0007453573634847999, + 0.013983121141791344, + -0.002378646517172456, + 0.01710892841219902, + -0.006590908393263817, + -0.012625956907868385, + -0.010250919498503208, + 0.023490488529205322, + 0.012965247966349125, + -0.00521569699048996, + -0.014098623767495155, + -0.011802995577454567, + 0.012770336121320724, + -0.00210793549194932, + 0.009196951985359192, + 0.017556505277752876, + 0.003898237133398652, + 0.0065692514181137085, + 0.0068363528698682785, + -0.022003382444381714, + 0.02271084114909172, + 0.004212261643260717, + -0.0315324068069458, + -0.024501141160726547, + -0.004999128170311451, + -0.008200735785067081, + 0.002026722300797701, + -0.0094135208055377, + 0.0030752758029848337, + 0.002613262739032507, + -0.00829458236694336, + 0.02419794537127018, + -0.012986904941499233, + 0.00013321232108864933, + -0.017989642918109894, + 0.024010252207517624, + 0.008655530400574207, + 0.019303493201732635, + 0.0038585327565670013, + 0.009103105403482914, + -0.008814346976578236, + 0.007760379463434219, + 0.02097829058766365, + 0.014899928122758865, + -0.01263317558914423, + 0.0153763797134161, + 0.01263317558914423, + -0.009839438833296299, + 0.009254703298211098, + 0.006399605888873339, + 0.007933634333312511, + -0.004991909023374319, + 0.002524830400943756, + 0.012127848342061043, + -0.007298366166651249, + 0.003091518534347415, + -0.006713630631566048, + 0.0033838863018900156, + 0.01682017184793949, + 0.021194858476519585, + -0.009348549880087376, + 0.007847006432712078, + -0.0014943241840228438, + -0.016271529719233513, + -0.03262968733906746, + 0.007536591496318579, + 0.013152940198779106, + 0.005147116724401712, + -0.02246539667248726, + 0.01791745238006115, + -0.014228565618395805, + 0.01979438215494156, + -0.007904758676886559, + 0.014928803779184818, + 0.002310066483914852, + 0.006385168060660362, + -0.004768121521919966, + 0.01979438215494156, + 0.0017930085305124521, + -0.014149156399071217, + -0.014871052466332912, + -0.004836701322346926, + -0.003400129033252597, + -0.009918848052620888, + -0.006164989899843931, + -0.01062630582600832, + -0.012958028353750706, + 0.031590159982442856, + -0.010113759897649288, + 0.025988247245550156, + 0.008633873425424099, + -0.013448918238282204, + -0.02564173750579357, + -0.007738722488284111, + -0.004912500735372305, + -0.0005251791444607079, + 0.015953896567225456, + 0.009911628440022469, + 0.013939807191491127, + -0.007316413335502148, + -0.009536243043839931, + -0.008576121181249619, + -0.011824652552604675, + -0.012091754004359245, + 0.02272527851164341, + 0.0022685574367642403, + -0.004327765200287104, + 0.01129766833037138, + 0.00923304632306099, + 0.021223735064268112, + -0.019606688991189003, + -0.021353676915168762, + -0.0055405497550964355, + -0.013759332709014416, + 0.007045702543109655, + -0.00460930448025465, + 0.024818776175379753, + 0.025468481704592705, + 0.004685103427618742, + -0.009810563176870346, + 0.008922631852328777, + -0.020371899008750916, + 0.017614256590604782, + 0.023735933005809784, + 0.02284078113734722, + 0.000594661629293114, + 0.02725878357887268, + -0.0022811905946582556, + 0.0008495810907334089, + 0.0021422256249934435, + 0.0013535545440390706, + 0.011261573992669582, + -0.009615651331841946, + -0.015881706029176712, + 0.01082121767103672, + 0.03303394839167595, + -0.03089713864028454, + 0.005793213378638029, + 0.025598423555493355, + -0.012178380973637104, + 0.004186995327472687, + 0.018249524757266045, + 0.016473660245537758, + 0.007897539995610714, + 0.022783029824495316, + 0.002611457835882902, + 0.01082121767103672, + 0.01256098598241806, + 0.013138502836227417, + 0.012048440054059029, + 0.00043584455852396786, + -0.001949118566699326, + -0.0012804626021534204, + -0.003948769997805357, + -0.011463704518973827, + 0.007522153668105602, + 0.01684904657304287, + -0.00988997146487236, + 0.0017045763088390231, + 0.005345637910068035, + 0.004656227771192789, + 0.0071720341220498085, + 0.007904758676886559, + -0.01136985793709755, + 0.01069849543273449, + 0.0041184150613844395, + 0.024905404075980186, + -0.009651746600866318, + -0.001350847422145307, + 0.0077531603164970875, + 0.017152242362499237, + 0.0007467109244316816, + -0.011795776896178722, + -0.021281486377120018, + 0.009760030545294285, + 0.0015268095303326845, + -0.015029869973659515, + 0.0129002770408988, + -0.026926711201667786, + -0.0008888341253623366, + -0.003797171637415886, + -0.013030217960476875, + 0.009348549880087376, + 0.0019671658519655466, + -0.009442396461963654, + 0.014214127324521542, + 0.030579503625631332, + 0.016488099470734596, + 0.011752462945878506, + 0.013586077839136124, + -0.03098376654088497, + 0.0057210237719118595, + 0.0064501385204494, + 0.015390817075967789, + 0.007208128925412893, + -0.00504244165495038, + 0.005121850408613682, + -0.005991734564304352, + 0.006395996548235416, + -0.0038188286125659943, + 0.021599121391773224, + -0.004237527959048748, + 0.007413869258016348, + 0.000485474884044379, + 0.0004922426887787879, + 0.015015431679785252, + 0.004436049610376358, + -0.009471272118389606, + 0.008648310787975788, + 0.00032192037906497717, + 0.002696280600503087, + -0.0028424644842743874, + -0.019577812403440475, + 0.006266055162996054, + -0.01992432214319706, + -0.0157662034034729, + 0.008438961580395699, + -0.0011965421726927161, + 0.0025482920464128256, + 0.013694362714886665, + -0.002429179148748517, + -0.020920539274811745, + -0.012979685328900814, + -0.014899928122758865, + -0.004143681842833757, + -2.310912350367289e-5, + 0.014813301153481007, + -0.03730757161974907, + -0.006020610686391592, + 0.013687143102288246, + -0.0030662522185593843, + 0.001172178192064166, + -0.00300669576972723, + -0.046432334929704666, + -0.004854748956859112, + -0.007854226045310497, + 0.01923130266368389, + 0.013181816786527634, + 0.016921237111091614, + 0.017484314739704132, + -0.01016429252922535, + 0.02913571335375309, + -0.005850965157151222, + -0.03462212160229683, + 0.0002682293998077512, + 0.013217911124229431, + 0.027489790692925453, + -0.0005504455184563994, + -0.007074578199535608, + -0.03944438323378563, + -0.008540026843547821, + -0.018740413710474968, + 0.01443069614470005, + 0.010951158590614796, + 0.007998605258762836, + 0.01515981089323759, + 0.012763116508722305, + 0.0024851260241121054, + -0.027475351467728615, + -0.0066558788530528545, + -0.005825698841363192, + 0.0036473781801760197, + 0.022638650611042976, + 0.0037791242357343435, + -0.012474359013140202, + 0.006385168060660362, + -0.008771033026278019, + 0.011362639255821705, + -0.0002465725119691342, + 0.024789899587631226, + -0.0022396815475076437, + 0.0022306579630821943, + 0.02831275202333927, + 0.013708800077438354, + 0.0094135208055377, + -0.02353380061686039, + -0.015188686549663544, + -0.0018949763616546988, + 0.0018263962119817734, + 0.021541370078921318, + -0.019144674763083458, + -0.0030337669886648655, + 0.009081448428332806, + -0.004371078684926033, + -0.03072388283908367, + -0.0067713819444179535, + -0.003059033304452896, + -0.023605991154909134, + 0.010106540285050869, + 0.004811435006558895, + -0.0004994616028852761, + 0.00936298817396164, + 0.008886536583304405, + -0.010315890423953533, + -0.004100367892533541, + 0.022118885070085526, + -0.01819177344441414, + 0.010063226334750652, + 0.004800606984645128, + 0.010236482135951519, + -0.010662400163710117, + -0.013549983501434326, + 0.0020140891429036856, + -0.01035920437425375, + -0.010142635554075241, + 0.01803295500576496, + 0.0056055206805467606, + 0.007832569070160389, + -0.019967636093497276, + 0.03554614633321762, + -0.00856168381869793, + -0.011889623478055, + -0.019216865301132202, + 0.006248007528483868, + 0.017267746850848198, + -0.011362639255821705, + -0.004641789477318525, + -0.01644478552043438, + 0.006627003196626902, + -0.009059791453182697, + -0.00976724922657013, + 0.008157421834766865, + -0.01803295500576496, + -0.009745592251420021, + 0.008316239342093468, + -0.007125111296772957, + -0.0039018464740365744, + 0.0015250047435984015, + -0.0018624910153448582, + 0.020010950043797493, + -0.011839089915156364, + -0.02070396952331066, + 0.0010259943082928658, + 0.0229995995759964, + -0.026406947523355484, + -1.2936315215483773e-5, + -0.011658616364002228, + 0.005461141467094421, + -0.004724807571619749, + -0.002914654091000557, + -0.0009195147431455553, + 0.013723238371312618, + -0.005645224824547768, + -0.016603602096438408, + -0.033467087894678116, + -0.003214240772649646, + -0.0016008038073778152, + 0.001283169724047184, + -0.01644478552043438, + -0.016387034207582474, + -0.010727371089160442, + -0.021469179540872574, + 0.0009249289287254214, + -0.017080053687095642, + 0.008771033026278019, + -0.014972117729485035, + 0.006825524382293224, + 0.029236778616905212, + 0.011059442535042763, + 0.009983818046748638, + 0.006266055162996054, + 0.019751068204641342, + -0.009687840938568115, + -0.005858183838427067, + 0.02594493329524994, + 0.00217110151425004, + -0.028962457552552223, + -0.013456136919558048, + -0.005096584092825651, + -0.004501020070165396, + 0.004916110076010227, + 0.0008509345934726298, + 0.007078188005834818, + -0.024111317470669746, + 0.02659463882446289, + 0.0011487166630104184, + -0.015145372599363327, + -0.0031185897532850504, + 0.008316239342093468, + -0.023360546678304672, + 0.007976948283612728, + 0.03805834427475929, + -0.0013093383749946952, + -0.01129766833037138, + 0.02793736569583416, + 0.0006700094672851264, + 0.0062083033844828606, + 0.0032503355760127306, + 0.010777903720736504, + -0.011593645438551903, + 0.011853528209030628, + -0.01819177344441414, + -0.031878914684057236, + -0.004963033366948366, + -0.011442047543823719, + 0.012885838747024536, + -0.009904409758746624, + -0.006406824570149183, + -0.0034199811052531004, + -0.015708452090620995, + 0.009644526988267899, + -0.005692148115485907, + -0.011174946092069149, + 0.01670466735959053, + -0.009882752783596516, + 0.008013042621314526, + -0.006540375296026468, + 0.0018453460652381182, + -0.018105145543813705, + -0.0005973687511868775, + 0.024674396961927414, + 0.009983818046748638, + 0.009543461725115776, + -0.009196951985359192, + -0.004028178285807371, + 0.015419693663716316, + 0.01589614525437355, + 0.013983121141791344, + -0.020920539274811745, + -0.011319325305521488, + 0.010041570290923119, + -0.009074229747056961, + 0.0012579032918438315, + -0.0019364854088053107, + -0.03245643153786659, + -0.006504280958324671, + -0.006002563051879406, + 0.0023714276030659676, + -0.0054719699546694756, + 0.0114997997879982, + 0.030954889953136444, + 0.010438612662255764, + -0.005919544957578182, + -0.002871340373530984, + -0.011983469128608704, + -0.019953198730945587, + 0.007601562421768904, + 0.014069748111069202, + 0.026305880397558212, + 0.012344417162239552, + 0.00848949421197176, + 0.014813301153481007, + 0.016877923160791397, + -0.01950562372803688, + -0.009709497913718224, + 0.028096182271838188, + 0.0028027603402733803, + 0.003854923415929079, + 0.007092625834047794, + -0.018754851073026657, + -0.0284715685993433, + -0.0002758995397016406, + -0.0010485536186024547, + -0.01699342578649521, + -0.004757293034344912, + -0.02617594040930271, + 0.027201032266020775, + -0.01777307316660881, + 0.0161560270935297, + 0.003015719586983323, + 0.005157945211976767, + 0.0018877574475482106, + -0.006594517733901739, + 0.0076376572251319885, + 0.00511463126167655, + -0.000927636050619185, + 0.0009055279660969973, + 0.012799211777746677, + -0.004930547904223204, + -0.005825698841363192, + 0.013614953495562077, + 0.0007697213441133499, + -0.0032178503461182117, + 0.018119582906365395, + -0.015694012865424156, + -0.041754450649023056, + 0.015694012865424156, + -0.0036997157149016857, + -0.017744198441505432, + -0.0004038104380015284, + -0.0005590180517174304, + -0.005417827516794205, + -0.0032485309056937695, + -0.009478490799665451, + 0.00397764565423131, + -0.005305933766067028, + -0.0038188286125659943, + -0.006100018974393606, + -0.00028672796906903386, + 0.0185671579092741, + 0.012192819267511368, + 0.008475055918097496, + 0.001988822827115655, + 0.026666829362511635, + -0.0005806749104522169, + 0.0016260702395811677, + 0.0015376379014924169, + 0.010597429238259792, + -0.01135542057454586, + -0.01096559688448906, + -0.01215672492980957, + -0.0032918446231633425, + 0.023432735353708267, + 0.014943242073059082, + 0.012539329007267952, + -0.005414218176156282, + 0.00862665381282568, + -0.011738024652004242, + -0.01015707291662693, + -0.00019660379621200264, + 0.00761600024998188, + 0.009334112517535686, + -0.0009438787237741053, + -0.008590559475123882, + -0.006987950764596462, + 0.025049783289432526, + 0.009269141592085361, + -0.000198521331185475, + 0.011470923200249672, + -0.015795079991221428, + -0.015520758926868439, + -0.02902020886540413, + -0.004179776180535555, + -0.00708179734647274, + 0.018956981599330902, + -0.017830824479460716, + -0.0067028021439909935, + 0.002160273026674986, + -0.01215672492980957, + -0.001988822827115655, + 0.009644526988267899, + -0.015260876156389713, + 0.0014230370288714767, + -0.014582294039428234, + 0.025324102491140366, + 0.0009962160838767886, + 0.012907495722174644, + 0.025468481704592705, + -0.006753334775567055, + 0.020083140581846237, + 0.009341331198811531, + 0.004569600336253643, + -0.010871750302612782, + 0.01457507535815239, + -0.004190604668110609, + -0.004490191582590342, + -0.008099670521914959, + 0.03404460474848747, + -0.007258662022650242, + -0.015823954716324806, + 0.003840485354885459, + -0.00032440191716887057, + 0.009954942390322685, + -0.014914366416633129, + -0.0006934711127541959, + -0.03502638265490532, + 2.7705569664249197e-5, + -0.044295523315668106, + 0.006460967008024454, + 0.006374339573085308, + 0.039242252707481384, + -0.00815020315349102, + -0.019043609499931335, + 0.004067882429808378, + -0.007366945967078209, + -0.01195459347218275, + 0.024616645649075508, + 0.010922282934188843, + -0.008316239342093468, + -0.007009607739746571, + 0.0011342787183821201, + -0.017975203692913055, + 0.023461611941456795, + 0.007287537679076195, + -0.00039884739089757204, + 0.02256646193563938, + 0.015044307336211205, + -0.00895150750875473, + -0.023605991154909134, + -0.0009321479010395706, + -0.002331723226234317, + 0.0034217857755720615, + 0.0036997157149016857, + 0.024154631420969963, + -0.018538283184170723, + -0.006652269512414932, + 0.020559590309858322, + 0.010785122402012348, + -0.004111196380108595, + -0.0025482920464128256, + 0.0012055658735334873, + 0.019548937678337097, + 0.013037437573075294, + -0.00022559241915587336, + -0.00916085671633482, + -0.00504244165495038, + -0.002338942140340805, + -0.0015186881646513939, + -0.004854748956859112, + -0.013651048764586449, + 0.004208652302622795, + -0.002481516683474183, + 0.00555137824267149, + 0.02645025961101055, + 0.00869884341955185, + 0.011608083732426167, + -0.004219480790197849, + -0.014972117729485035, + -0.016372594982385635, + -0.014243002980947495, + -0.01952006109058857, + -0.0033802769612520933, + -0.022523147985339165, + 0.0057390714064240456, + -0.019216865301132202, + 0.004381907172501087, + -0.01602608524262905, + 0.009009258821606636, + -0.01282808743417263, + -0.012950809672474861, + 0.009471272118389606, + 0.001678407657891512, + 0.017845263704657555, + 0.01096559688448906, + 0.02941003255546093, + 0.017441000789403915, + 0.023042911663651466, + -0.011037786491215229, + -0.0034759279806166887, + -0.009788906201720238, + 0.001839931821450591, + -0.0185671579092741, + -0.011276011355221272, + -0.01028701476752758, + -0.00962287001311779, + 0.018393903970718384, + 0.02486209012567997, + 0.007164815440773964, + 0.010828436352312565, + 0.00034335165400989354, + -0.002822612412273884, + -0.0008685308275744319, + -0.005706585943698883, + -0.002564534544944763, + 0.014141937717795372, + -0.00443965895101428, + -0.002032136544585228, + -0.0020934976637363434, + 0.011377076618373394, + -0.013145721517503262, + -0.018668225035071373, + 0.019014734774827957, + 0.015823954716324806, + -0.007724284660071135, + 0.0153763797134161, + 0.02136811427772045, + -0.015289751812815666, + -0.0009429763304069638, + -0.0011360833887010813, + -0.030377373099327087, + 0.01048192661255598, + 0.022277703508734703, + 0.01803295500576496, + -0.03597928583621979, + -0.006580079905688763, + -0.0320521704852581, + 0.010489145293831825, + 0.01777307316660881, + 0.01142761018127203, + -0.0042303092777729034, + 0.004598475992679596, + 0.006309368647634983, + 0.015997210517525673, + 0.00948571041226387, + 0.0033802769612520933, + -0.008323458023369312, + -0.0003859886492136866, + 0.007067359518259764, + -0.013073531910777092, + -0.007522153668105602, + 0.003891018219292164, + -0.0029742105398327112, + -2.36167056755221e-6, + 0.02058846689760685, + -0.007818130776286125, + -0.02845713123679161, + -0.010980034247040749, + -0.003172731725499034, + 0.010712932795286179, + 0.007911977358162403, + -0.003854923415929079, + 0.027186594903469086, + -0.0088287852704525, + -0.004378297831863165, + 0.006572860758751631, + 0.0066450503654778, + -0.024385638535022736, + 0.008850442245602608, + 0.014986556023359299, + 0.02164243534207344, + -0.00889375526458025, + -0.011059442535042763, + -0.020675094798207283, + -0.0024923451710492373, + 0.01450288575142622, + -0.0045659905299544334, + 0.011673054657876492, + 0.012474359013140202, + 0.005706585943698883, + 0.020516276359558105, + 0.018220648169517517, + 0.0006176720489747822, + 0.005183211527764797, + 0.009420739486813545, + -0.027157718315720558, + 0.019317930564284325, + 0.013752114027738571, + -0.019418995827436447, + 0.011571988463401794, + 0.0014022825052961707, + 0.015694012865424156, + -0.005147116724401712, + 0.026118189096450806, + -0.011723587289452553, + -0.0066161747090518475, + -0.029742104932665825, + 0.003952379338443279, + 0.01142039056867361, + 0.0034614901524037123, + -0.03872248902916908, + -0.0058076512068510056, + 0.005468360148370266, + -0.00968062225729227, + -0.014741111546754837, + 0.0003620758361648768, + -0.007031264714896679, + -0.012539329007267952, + 0.010712932795286179, + -0.005468360148370266, + -0.024125756695866585, + -0.00441078282892704, + 0.0025825819466263056, + -0.030406249687075615, + 0.010792341083288193, + 0.01979438215494156, + -0.005082146264612675, + 0.0009064303594641387, + 0.005616349168121815, + -0.03566164895892143, + 0.0204585250467062, + 0.001857076771557331, + 0.0007133232429623604, + -0.00795529130846262, + -0.0014898123918101192, + -0.012301103211939335, + -0.007724284660071135, + 0.012546548619866371, + 0.0015159810427576303, + -0.0007588929147459567, + -0.0056524439714848995, + 0.005342028569430113, + -0.0180473942309618, + -0.009911628440022469, + -0.012936372309923172, + -0.01115328911691904, + -0.0027125233318656683, + -0.00278832227922976, + 0.0025446824729442596, + -0.0019779943395406008, + 0.006439310032874346, + 0.017614256590604782, + 0.0032737972214818, + -0.003988474141806364, + -0.01123269833624363, + 5.0504502723924816e-5, + -0.001766839879564941, + 0.028558196499943733, + -0.01696455106139183, + -0.008922631852328777, + 0.015044307336211205, + 0.01076346542686224, + 0.0014961289707571268, + -0.005771556403487921, + 0.01671910472214222, + 0.01316737849265337, + 0.02366374246776104, + 0.02604599855840206, + 0.00475007388740778, + -0.014329630881547928, + 0.032427556812763214, + -0.0012281251838430762, + -0.0007399431196972728, + -0.009954942390322685, + 0.026435822248458862, + -0.004443268291652203, + 0.011362639255821705, + -0.0024995640851557255, + 0.029453346505761147, + -0.007680970709770918, + 0.014105843380093575, + 0.010142635554075241, + -0.008836003951728344, + 0.017686445266008377, + 0.012820868752896786, + -0.01515981089323759, + -0.017946328967809677, + 0.0029020209331065416, + -0.014957680366933346, + 0.010850093327462673, + -0.0007209933828562498, + 0.025887181982398033, + 0.005919544957578182, + 0.011196603067219257, + -0.020660655573010445, + -0.003064447548240423, + -0.00950014777481556, + 0.008207954466342926, + -0.009940504096448421, + -0.0042303092777729034, + 0.00023551848425995559, + 0.0007665630546398461, + -0.014221346005797386, + -0.03072388283908367, + 0.014871052466332912, + 0.008438961580395699, + -0.00955068040639162, + 0.026926711201667786, + 0.020371899008750916, + 0.015477444976568222, + 0.015318627469241619, + -0.014048091135919094, + -0.009788906201720238, + -0.03219655156135559, + 0.007229785900563002, + -0.008049137890338898, + -0.015347504056990147, + -0.0013364094775170088, + -0.0043566408567130566, + 0.0067497254349291325, + 0.008980383165180683, + -0.008330676704645157, + 0.03690331056714058, + 0.006027829367667437, + -0.018639348447322845, + -0.011846309527754784, + -0.0017776682507246733, + 0.001574635156430304, + -0.008446180261671543, + -0.0008387526031583548, + 0.004324155393987894, + 0.022422082722187042, + -0.026941148564219475, + -0.024385638535022736, + -0.0010323108872398734, + 0.0008653725381009281, + -0.005728242918848991, + 0.010467488318681717, + -0.020256394520401955, + 0.022248826920986176, + 0.01450288575142622, + 0.028976894915103912, + -0.02337498404085636, + 0.018249524757266045, + -0.0007972436142154038, + -0.007442745380103588, + -0.004017349798232317, + -0.006237179506570101, + -0.025482920929789543, + -0.018393903970718384, + 0.01885591633617878, + -0.0005779677885584533, + -0.008236830122768879, + 0.012510453350841999, + 0.0025446824729442596, + -0.02203225903213024, + 0.0020501839462667704, + 0.009666183963418007, + -0.0023587944451719522, + -0.014423477463424206, + 0.0090236971154809, + 0.019447872415184975, + -0.0012994123389944434, + -0.017801949754357338, + -0.012669270858168602, + -0.009406301192939281, + 0.0006027829367667437, + 0.016545850783586502, + 0.01644478552043438, + 0.015997210517525673, + -0.027749672532081604, + -0.005175992380827665, + -0.009731154888868332, + 0.007962509989738464, + 0.004114805720746517, + -0.006995169911533594, + -0.04262072592973709, + -0.004071492236107588, + 0.01830727607011795, + -0.0049377670511603355, + 0.0018092512618750334, + -0.008922631852328777, + 0.03332270681858063, + -0.02152693085372448, + 0.006688364315778017, + 0.03846260532736778, + 0.014336849562823772, + 0.0029363110661506653, + -0.01028701476752758, + 0.002645747968927026, + -0.01979438215494156, + 0.02554067224264145, + -0.0028099792543798685, + -0.009168076328933239, + 0.014221346005797386, + 0.01630040630698204, + 0.0040967585518956184, + 0.002133202040567994, + 0.001187518471851945, + -0.01591058261692524, + 0.005919544957578182, + 0.0008712379494681954, + -0.0001675023668212816, + 0.013318976387381554, + 0.015260876156389713, + -0.002828026656061411, + 0.00717925326898694, + -0.011001691222190857, + 0.002064621774479747, + -0.00555137824267149, + 0.010741808451712132, + 0.004796997178345919, + 0.0008572512306272984, + 0.006359901744872332, + -0.014048091135919094, + 0.0017830824945122004, + -0.005865402985364199, + -0.00524096330627799, + 0.045219551771879196, + 0.023981377482414246, + 0.012236133217811584, + -0.0006564739742316306, + -0.007478840183466673, + -0.02353380061686039, + -0.0012651223223656416, + -0.015564072877168655, + -0.006738896947354078, + 0.010943939909338951, + 0.022162199020385742, + 0.012589861638844013, + 0.00011674407869577408, + 0.017801949754357338, + 0.0004999128286726773, + 0.010337547399103642, + 0.005190430674701929, + 0.011918499134480953, + -0.006540375296026468, + 0.020155329257249832, + 0.012048440054059029, + -0.01484217680990696, + -0.012791993096470833, + -0.0049377670511603355, + 0.01671910472214222, + -0.008973164483904839, + 0.0012163943611085415, + -0.020415211096405983, + -0.004822263494133949, + -0.03086826205253601, + 0.02780742384493351, + -0.011052223853766918, + -0.015679575502872467, + -0.0003769649483729154, + -0.010907844640314579, + 0.015665138140320778, + 0.01302299927920103, + 0.009983818046748638, + 0.006226351018995047, + -0.006879666354507208, + -0.025020906701683998, + -0.013535545207560062, + 0.007089016493409872, + 4.303175592212938e-5, + -0.00027838104870170355, + 0.016387034207582474, + 0.021729061380028725, + 0.0019978464115411043, + -0.026363633573055267, + -0.021281486377120018, + -0.0069229803048074245, + 0.0161560270935297, + -0.012517672032117844, + -0.003667230485007167, + -0.008265706710517406, + 0.03404460474848747, + 0.005222915671765804, + -0.0366145521402359, + -0.015549634583294392, + -0.017816387116909027, + -0.0015042502200230956, + 0.00028898389427922666, + 0.023548239842057228, + 0.03150353208184242, + 2.7790167223429307e-5, + 0.025699488818645477, + -0.0008951507043093443, + -0.019216865301132202, + -0.0018110559321939945, + 0.002833440899848938, + -0.005190430674701929, + -0.004248356446623802, + 0.007200910244137049, + -0.0038368760142475367, + -0.003679863642901182, + -0.007760379463434219, + -0.011167727410793304, + -0.01845165528357029, + 0.002214415231719613, + 0.02126704901456833, + 0.010474706999957561, + 0.014156376011669636, + 0.00914641935378313, + -0.00822239276021719, + -0.004547943361103535, + 0.006713630631566048, + -0.0088287852704525, + 0.015333065763115883, + 0.00611084746196866, + -0.004425221122801304, + -0.018899230286478996, + -0.010070445947349072, + -0.0288613922894001, + -0.00475007388740778, + 0.007406650576740503, + -0.014589512720704079, + -0.004692322574555874, + 0.010561334900557995, + 0.004970252048224211, + -0.005991734564304352, + -0.00848949421197176, + -0.004280841909348965, + -0.011434828862547874, + 0.005490017123520374, + 0.00618303706869483, + -0.029713228344917297, + 0.021165983751416206, + 0.010489145293831825, + 0.012459920719265938, + 0.004793387837707996, + -0.023591553792357445, + 0.02714328095316887, + 0.008301801048219204, + 0.010453050956130028, + -0.003923503216356039, + 0.01048192661255598, + -0.0007110672886483371, + 0.012683708220720291, + 0.002162077696993947, + 0.0064176530577242374, + -0.008121327497065067, + 0.0024905402678996325, + 0.009103105403482914, + 0.0023353327997028828, + -0.005136288236826658, + -0.02606043592095375, + 0.003952379338443279, + 0.013593297451734543, + 0.00032440191716887057, + -0.0059448117390275, + 0.0055188932456076145, + 0.010315890423953533, + 0.004735636059194803, + -0.007847006432712078, + -0.018379466608166695, + -0.006464576348662376, + 0.02285522036254406, + 0.005468360148370266, + 0.0020249176304787397, + -0.029828732833266258, + -0.00252122082747519, + 0.015203124843537807, + 0.025858305394649506, + 0.015578510239720345, + 0.013145721517503262, + 0.0002169071085518226, + -0.012770336121320724, + -0.005194040015339851, + -0.001829103333875537, + -0.0032593593932688236, + 0.004407173488289118, + -0.00521208718419075, + 0.00497386185452342, + 0.014827738516032696, + -0.0020610124338418245, + 0.01202678307890892, + -0.0132901007309556, + 0.02018420584499836, + -0.010070445947349072, + -0.012517672032117844, + 0.0004265952738933265, + 0.0041364626958966255, + 0.02246539667248726, + 0.02324504405260086, + -0.00477534020319581, + -0.0011324739316478372, + -0.015564072877168655, + 0.010193168185651302, + -0.008857660926878452, + -0.0017695470014587045, + -0.0038765801582485437, + -0.008041918277740479, + -0.01631484366953373, + 0.004991909023374319, + 0.011925717815756798, + -0.011658616364002228, + -0.011983469128608704, + -0.00843174196779728, + -0.004122024867683649, + -0.001499738427810371, + 0.02165687270462513, + 6.327867595246062e-5, + 0.011131632141768932, + 0.015809517353773117, + -0.0002682293998077512, + 0.005757118575274944, + 0.011839089915156364, + 0.012662051245570183, + 0.015953896567225456, + -0.007709846831858158, + 0.03245643153786659, + 0.010510802268981934, + 0.009536243043839931, + -0.003750248346477747, + -0.02363486774265766, + 0.01832171343266964, + 0.015665138140320778, + 0.007135939318686724, + -0.01950562372803688, + -0.0025753630325198174, + -0.007825350388884544, + -0.002911044517531991, + -0.0033495964016765356, + 0.001751499599777162 + ], + "d825183c-f2ad-4af6-bd58-5972857c4e21": [ + -0.03229311853647232, + -0.014902341179549694, + -0.009282151237130165, + 0.004333555698394775, + -0.008971096016466618, + 0.007543073035776615, + 0.02868771366775036, + 0.003916459623724222, + 0.015623422339558601, + 0.0038599043618887663, + -0.013361207209527493, + 0.009883051738142967, + 0.019356077536940575, + -0.03565816581249237, + 0.014874063432216644, + 0.02717485837638378, + -0.0007056166650727391, + 0.034555334597826004, + 0.012661335058510303, + -0.012724959291517735, + 0.06430346518754959, + -0.009289219975471497, + -0.04247308522462845, + 0.010335494764149189, + 0.0191015787422657, + -0.013863136060535908, + -0.004778929054737091, + -0.01087277103215456, + -0.034555334597826004, + 0.008610555902123451, + 9.41116813919507e-5, + 0.022480761632323265, + 0.006935102865099907, + -0.016245530918240547, + -0.004754186142235994, + -0.018253248184919357, + -0.005319740157574415, + 0.012753237038850784, + -0.03277384117245674, + -0.032915227115154266, + -0.032971784472465515, + 0.012060433626174927, + 0.0026421963702887297, + -0.01944090984761715, + -0.07165566086769104, + 0.011558504775166512, + 0.04482013359665871, + -0.045640189200639725, + -0.012859278358519077, + -0.010455675423145294, + 0.03376355767250061, + -0.018055303022265434, + -0.006751297973096371, + 0.00016999751096591353, + 0.03783554583787918, + -0.015750672668218613, + 0.0007873568683862686, + 0.044763579964637756, + 0.0014200701843947172, + -0.058138925582170486, + -0.012187683023512363, + 0.0030151084065437317, + -0.00492031779140234, + -0.01187662873417139, + 0.0011691056424751878, + -0.024135006591677666, + 0.003105243667960167, + -0.009974954649806023, + -0.022197984158992767, + -0.023852229118347168, + 0.02892807498574257, + 0.027768690139055252, + -0.04860934615135193, + -0.012548224069178104, + -0.010632410645484924, + -0.03517744317650795, + 0.049231454730033875, + -0.005457593593746424, + 0.0010648316238075495, + -0.0028065606020390987, + -0.02834838256239891, + 0.014958896674215794, + 0.020755823701620102, + -0.023088732734322548, + 0.04142681136727333, + 0.0034675514325499535, + -0.015948615968227386, + -0.04094609245657921, + 0.015991032123565674, + 0.0012115221470594406, + -0.01702316850423813, + 0.043858692049980164, + -0.00783998891711235, + 0.008151043206453323, + 0.00872366689145565, + -0.012039225548505783, + 0.021844513714313507, + -0.006419035140424967, + 0.012293724343180656, + -0.005683815106749535, + 0.012640126049518585, + 0.010646549053490162, + -0.05007978528738022, + -0.01467612013220787, + -0.011735239997506142, + 0.004354763776063919, + 0.00012945878552272916, + -0.017348362132906914, + -0.03828798979520798, + 0.04657335206866264, + -0.013389484956860542, + -0.040521927177906036, + 0.015863783657550812, + 0.017532166093587875, + -0.03483811020851135, + -0.030511625111103058, + 0.021943485364317894, + -0.03582783043384552, + 0.002271051751449704, + -0.05511321499943733, + 0.029804682359099388, + 0.03099234588444233, + -0.0022816560231149197, + 0.023640146479010582, + -0.02191520854830742, + 0.012859278358519077, + 0.009508372284471989, + -0.03206689655780792, + 0.024318812415003777, + 0.004220444709062576, + -0.001963531831279397, + -0.0014607192715629935, + -0.004040174651890993, + 0.02834838256239891, + -0.0014987174654379487, + 0.018578439950942993, + 0.01473267562687397, + 0.0423034206032753, + -0.046460241079330444, + 0.053133774548769, + -0.04866589978337288, + -0.04589468613266945, + -0.03594094142317772, + 0.03447050228714943, + -0.0024230442941188812, + 0.00045200117165222764, + -0.020543741062283516, + 0.03280211612582207, + -0.01133935246616602, + 0.006192813627421856, + -0.06475590169429779, + -0.003555919276550412, + 0.014506453648209572, + 0.0024248117115348577, + 0.01276030670851469, + 0.01679694652557373, + 0.018352219834923744, + 0.01597689278423786, + 0.030511625111103058, + 0.04547052085399628, + 0.01992163062095642, + -0.04957078769803047, + 0.005609586369246244, + 0.007649114355444908, + 0.049174897372722626, + 0.016811085864901543, + 0.0391080416738987, + 0.011155547574162483, + -0.006341271568089724, + 0.008455028757452965, + 0.015609283931553364, + -0.013354138471186161, + 0.01066775806248188, + 0.0063377367332577705, + 0.018309803679585457, + -0.011544366367161274, + 0.03034195862710476, + -0.0027959563303738832, + 0.03005918301641941, + -0.030964067205786705, + 0.0001877815229818225, + -0.005581308621913195, + -0.015100285410881042, + -0.034922946244478226, + 0.005111191887408495, + 0.002788886893540621, + 0.010568785481154919, + -0.009734594263136387, + 0.00455270754173398, + -0.008624694310128689, + -0.026679998263716698, + -0.008115696720778942, + -0.0015066704945638776, + 0.0011655709240585566, + -0.006157466676086187, + -0.027443496510386467, + -0.008610555902123451, + 0.011240380816161633, + 0.003898786148056388, + 0.015651701018214226, + -0.005733301397413015, + -0.05519804731011391, + -0.05197438970208168, + 0.05989214405417442, + -0.022579733282327652, + 0.03240622952580452, + -0.007903614081442356, + -0.04643196240067482, + 0.021844513714313507, + -0.028122160583734512, + 0.040521927177906036, + -0.053473107516765594, + 0.04462219029664993, + 0.008094487711787224, + -0.029493628069758415, + 0.019299522042274475, + -0.001963531831279397, + 0.02957846224308014, + 0.005535357166081667, + -0.012371488846838474, + -0.010780868120491505, + -0.0011311075650155544, + -0.003983619157224894, + -0.02021854743361473, + -0.05915692448616028, + -0.009437678381800652, + -0.012569432146847248, + 0.042868975549936295, + -0.045696742832660675, + 0.027740411460399628, + 0.04586641117930412, + -0.004991011694073677, + 0.004895574878901243, + -0.016599003225564957, + -0.000937582110054791, + 0.00913369283080101, + -0.003951807040721178, + 0.04032398387789726, + -0.01927124336361885, + -0.00960734486579895, + 0.010342564433813095, + 0.012208892032504082, + 0.030200570821762085, + 0.0009649760904721916, + 0.013545012101531029, + 0.022197984158992767, + -0.0043229516595602036, + 0.0028489769902080297, + 0.002271051751449704, + -0.023300815373659134, + 0.014888202771544456, + 0.032434508204460144, + 0.026679998263716698, + 0.0030080389697104692, + 0.007825850509107113, + 0.03198206424713135, + -0.002454856876283884, + -0.03806176781654358, + 0.024149145931005478, + -0.0007908915868028998, + 0.010540507733821869, + 0.02150518074631691, + 0.03495122119784355, + 0.010688966140151024, + 0.03070956841111183, + -0.040210872888565063, + 0.02580339089035988, + -0.04470702260732651, + 0.0025838736910372972, + 0.03401805832982063, + -0.028037328273057938, + 0.013559151440858841, + 0.0025220161769539118, + 0.002396533964201808, + -0.011501949280500412, + 0.009091276675462723, + -6.776703958166763e-5, + 0.0010904583614319563, + 0.001465137698687613, + 0.017136279493570328, + -0.011650407686829567, + -0.004934456665068865, + 0.005245510954409838, + 0.021109294146299362, + -0.024488477036356926, + 0.007267365697771311, + -0.036563050001859665, + 0.011897836811840534, + -0.030794402584433556, + 0.011289866641163826, + 0.015269950963556767, + -0.002818932058289647, + 0.04654507339000702, + 0.005446989554911852, + 0.04798723757266998, + 0.008384334854781628, + -0.037213437259197235, + -0.022367650642991066, + -0.049344565719366074, + 0.012654265388846397, + -0.022084875032305717, + 0.008744874969124794, + -0.018295664340257645, + -0.03633682802319527, + 0.010632410645484924, + -0.009769940748810768, + 0.0263406652957201, + 0.031190289184451103, + -0.04108748212456703, + -0.004368902649730444, + 0.033904947340488434, + -0.016839362680912018, + -0.048581067472696304, + -0.001020647818222642, + 0.00680785346776247, + 0.012597709894180298, + 0.0050440323539078236, + -0.0006495031411759555, + -0.0001741949818097055, + -0.03268900886178017, + -0.0026192208752036095, + -0.02133551612496376, + -0.058421701192855835, + 0.011820073239505291, + 0.054123494774103165, + -0.03017229214310646, + 0.04614918678998947, + -0.005535357166081667, + -0.012350279837846756, + -0.004976872820407152, + 0.0032218890264630318, + -0.0007263831212185323, + -0.028065605089068413, + -0.0001044396631186828, + -0.018012886866927147, + -0.0561029314994812, + -0.03195378556847572, + -0.04391524940729141, + -0.01850774697959423, + -0.016712114214897156, + -0.016160698607563972, + -0.008447959087789059, + -0.004358298610895872, + -0.034498777240514755, + 0.026057889685034752, + -0.0067831105552613735, + 0.0007687996258027852, + 0.014046940952539444, + -0.020656850188970566, + 0.003267840249463916, + 0.001017996808513999, + -0.00019341496226843446, + 0.016768669709563255, + -0.005839342717081308, + 0.05938314273953438, + -0.026142721995711327, + 0.019709547981619835, + -0.005966592114418745, + -0.008002585731446743, + -9.720454727357719e-6, + 0.04329314082860947, + -0.015877921134233475, + -0.03718515858054161, + -0.006528611294925213, + -0.003064594464376569, + 0.019822658970952034, + -0.03659132868051529, + -0.025492334738373756, + 0.0008792593725956976, + 0.021717263385653496, + -0.021604154258966446, + 0.011148478835821152, + 0.0034357390832155943, + -0.03028540313243866, + -0.008850916288793087, + -0.04332141950726509, + 0.049825284630060196, + 0.00691035995259881, + -0.06752711534500122, + 0.02016199193894863, + 0.011070714332163334, + -0.008787291124463081, + 0.019879214465618134, + 0.014888202771544456, + 0.01839463599026203, + 0.033791836351156235, + -0.003403926733881235, + 0.013658123090863228, + 0.006033751647919416, + 0.025195419788360596, + -0.025365086272358894, + 0.014160051941871643, + -0.008433820679783821, + 0.007656184025108814, + -0.02544991858303547, + -0.0079248221591115, + 0.0002666497603058815, + 0.004220444709062576, + 0.012724959291517735, + -0.014930618926882744, + -0.021462764590978622, + -0.01384899765253067, + -0.016938334330916405, + 0.015453756786882877, + 0.009112484753131866, + -0.03336767107248306, + -0.013460179790854454, + -0.018111858516931534, + 0.0346684455871582, + 0.007037609349936247, + 0.025435779243707657, + 0.01715041697025299, + 0.02163243107497692, + 0.008433820679783821, + 0.06204124540090561, + -0.011940253898501396, + 0.02386636845767498, + 0.04337797313928604, + -0.0009685108088888228, + -0.017602860927581787, + 0.06011836603283882, + 0.06345513463020325, + -0.025563029572367668, + 0.032151732593774796, + -0.014230746775865555, + 0.01997818611562252, + -0.01198973972350359, + 0.02161829173564911, + -0.022169707342982292, + -0.013212749734520912, + -0.01880466192960739, + 0.05061706155538559, + -0.009126624092459679, + -0.003251934191212058, + -0.0006534797139465809, + -0.0418509766459465, + 0.01204629521816969, + 0.027613162994384766, + -0.011226242408156395, + 0.003064594464376569, + -0.014718536287546158, + 0.003870508400723338, + -0.02133551612496376, + 0.011233311146497726, + -0.02209901250898838, + -0.016019310802221298, + -0.026312388479709625, + 0.01856430247426033, + 0.014478175900876522, + -0.021179988980293274, + -0.0048496234230697155, + 0.03305661678314209, + -0.03209517523646355, + -0.0008907471783459187, + 0.0003660634974949062, + -0.012039225548505783, + 0.005644933320581913, + -0.018931912258267403, + 0.006952776573598385, + -0.03430083394050598, + -0.015453756786882877, + -0.0173342227935791, + -0.02009129710495472, + -0.002787119708955288, + 0.019200550392270088, + -0.03263245150446892, + 0.00761376740410924, + 0.06023147329688072, + 0.00830657035112381, + 0.03251934051513672, + -0.02021854743361473, + -0.01886121742427349, + -0.018889496102929115, + 0.04006948322057724, + 0.017122140154242516, + -0.011572644114494324, + -0.01826738566160202, + -0.003923529293388128, + -0.014548870734870434, + -0.0017673554830253124, + -0.03404633700847626, + -0.025492334738373756, + -0.016924196854233742, + 0.018295664340257645, + 0.011530227027833462, + -0.039617039263248444, + 0.00989719107747078, + -0.043519362807273865, + 0.022834232077002525, + -0.01685350202023983, + 0.07205154746770859, + 0.013241027481853962, + 0.006592235993593931, + 0.028659436851739883, + -0.01167161576449871, + 7.373186235781759e-6, + 0.0079813776537776, + -0.036393385380506516, + -0.015623422339558601, + -0.006150397006422281, + 0.022028319537639618, + -0.039277710020542145, + -0.016104143112897873, + 0.029267406091094017, + 0.009805288165807724, + -0.008348987437784672, + -0.007422892842441797, + -0.0010188804008066654, + -0.03825971111655235, + -0.02310287021100521, + -0.05101294815540314, + -0.02051546238362789, + -0.027429357171058655, + 0.004930921830236912, + 0.0012433346128091216, + 0.012392696924507618, + 0.005280858371406794, + 0.023894645273685455, + 0.03229311853647232, + 0.013290513306856155, + 0.014174191281199455, + 0.0065710279159247875, + -0.009310428984463215, + 0.008660041727125645, + -0.01815427467226982, + -6.834694886492798e-6, + -0.011035367846488953, + -0.02994607202708721, + 0.00981235783547163, + -0.007910682819783688, + 0.00028432332328520715, + 0.012124058790504932, + -0.03005918301641941, + 0.009070068597793579, + 0.02027510292828083, + -0.003257236210629344, + -0.008228806778788567, + 0.016952473670244217, + 0.00027106815832667053, + 0.03452705591917038, + -0.019723687320947647, + 0.0382031574845314, + 0.022551456466317177, + -0.00738047668710351, + -0.0002955902018584311, + 0.026722414419054985, + 0.0016692673088982701, + 0.025308530777692795, + -0.01856430247426033, + 0.02563372440636158, + -0.047110628336668015, + 0.017602860927581787, + -0.012187683023512363, + 0.0060160779394209385, + 0.014633703045547009, + -0.04148336872458458, + 0.0023929993622004986, + -0.019398493692278862, + -0.00916197057813406, + -0.003085802774876356, + -0.0385424867272377, + 0.020670989528298378, + -0.008716597221791744, + 0.03328283876180649, + 0.002087246859446168, + -0.0034534125588834286, + 0.015708254650235176, + 0.03531883284449577, + 0.026623442769050598, + 0.01832394115626812, + 0.04029570519924164, + 0.02327253669500351, + 0.005012220237404108, + -0.010597063228487968, + 0.0011894302442669868, + 0.018748106434941292, + -0.005302066449075937, + 0.01603344827890396, + -0.038796987384557724, + -0.017461473122239113, + 0.021066877990961075, + -0.02433294989168644, + 0.014414551667869091, + -0.013028944842517376, + 0.01473267562687397, + 0.03712860494852066, + -0.0016365711344406009, + -0.008193460293114185, + 0.008052071556448936, + 0.006680603604763746, + 0.009904259815812111, + -0.002552061341702938, + 0.007394615560770035, + 0.00027217273600399494, + -0.03339594975113869, + 0.025789251551032066, + 0.012088711373507977, + -0.003529408946633339, + -0.012371488846838474, + -0.007437031716108322, + -0.004414854105561972, + 0.031727567315101624, + 0.014379204250872135, + 0.004591589327901602, + -0.026312388479709625, + 0.0052561149932444096, + 0.0011770587880164385, + -0.015467895194888115, + -0.0026881475932896137, + 0.02569027990102768, + -0.0263972207903862, + 0.010003232397139072, + 0.046290576457977295, + -0.018125997856259346, + 0.024474339559674263, + -0.008143974468111992, + -0.010759660042822361, + 0.035969220101833344, + -0.003045153571292758, + 0.0028472095727920532, + 0.011289866641163826, + -0.04371730610728264, + 0.06662223488092422, + -0.02786766178905964, + 0.020755823701620102, + 0.015849644318223, + -0.01873396895825863, + 0.0010303682647645473, + -0.031501345336437225, + -0.008518652990460396, + 0.02256559394299984, + -0.01696661300957203, + 0.013841927982866764, + -0.007663253229111433, + 0.01784322038292885, + 0.017659416422247887, + 0.033904947340488434, + 0.022381789982318878, + -0.023300815373659134, + 0.006107980385422707, + 0.004344159737229347, + -0.01178472675383091, + 0.009706316515803337, + 0.052115779370069504, + -0.011954392306506634, + 0.03319800645112991, + -0.006192813627421856, + 0.030144015327095985, + 0.0486941784620285, + 0.00022511690622195601, + -0.037920378148555756, + 0.0009552556439302862, + -0.018366357311606407, + 0.005521218758076429, + 0.010455675423145294, + -0.02952190674841404, + -0.01098588202148676, + 0.014393342658877373, + 0.015750672668218613, + 0.0004040616622660309, + 0.05468904972076416, + -0.025068169459700584, + -0.0173342227935791, + -0.007023470476269722, + -0.005450524389743805, + 0.025138864293694496, + 0.004418388940393925, + 0.018903633579611778, + 0.01519925706088543, + 0.04071987047791481, + 0.01614655926823616, + 0.0011761750793084502, + 0.020430630072951317, + 0.010215315036475658, + -0.0010109273716807365, + 0.011862490326166153, + -0.003842230886220932, + -0.004301743116229773, + 0.00478953355923295, + -0.011205033399164677, + 0.0009587903623469174, + -0.024940920993685722, + -0.039164599031209946, + 0.028489770367741585, + -0.02144862525165081, + 0.0013679331168532372, + -0.0072037409991025925, + 0.04100264608860016, + -0.021660709753632545, + 0.0012919368455186486, + -0.0026881475932896137, + 0.01566583849489689, + 0.02569027990102768, + -0.005676745902746916, + -0.014803369529545307, + -0.00032011227449402213, + -0.013742956332862377, + -0.027726272121071815, + 0.0041037993505597115, + -0.02591650001704693, + -0.03251934051513672, + 0.01903088390827179, + -0.00046083793858997524, + -0.020317519083619118, + 0.013919691555202007, + 0.018168414011597633, + -0.03382011502981186, + -0.004082591272890568, + 0.008589347824454308, + -0.00735219893977046, + 0.031190289184451103, + 0.0064437780529260635, + 0.017687693238258362, + 0.010434466414153576, + -0.012576501816511154, + 0.04648851975798607, + -0.029380517080426216, + 0.02433294989168644, + -0.0034975965972989798, + 0.008009655401110649, + 0.006404896266758442, + 0.0265668872743845, + 0.005425781477242708, + -0.01791391521692276, + -0.026778969913721085, + 1.2620022971532308e-5, + 0.0034021593164652586, + 0.02273526042699814, + 0.0004899993073195219, + -0.0010736684780567884, + 0.05203094705939293, + 0.0036548911593854427, + 0.005471732467412949, + 0.011996809393167496, + -0.013000667095184326, + -0.010646549053490162, + 0.00135909637901932, + 0.005514149088412523, + 0.03529055416584015, + -0.016344504430890083, + 0.019002607092261314, + 0.009847704321146011, + 0.00892867986112833, + -0.02051546238362789, + 0.012894625775516033, + 0.004842554219067097, + 0.009642691351473331, + -0.0024177422747015953, + 0.02434708923101425, + 0.0023841625079512596, + 0.029267406091094017, + -0.010491021908819675, + 0.05915692448616028, + 0.02339978702366352, + -0.027669716626405716, + -0.005602516699582338, + -0.003561221295967698, + -0.007147185504436493, + -0.015807228162884712, + 0.03735482692718506, + -0.001866327365860343, + -0.005337413400411606, + -0.017631137743592262, + -0.020953767001628876, + -0.006168070714920759, + -0.0015667605912312865, + -0.00031370559008792043, + 0.040041204541921616, + 0.031190289184451103, + 0.008264154195785522, + 0.01856430247426033, + 0.009430608712136745, + 0.02646791562438011, + 0.01774424873292446, + 0.008801430463790894, + -0.03777899220585823, + 0.039390817284584045, + -0.01464784238487482, + -0.06277646869421005, + -0.03664788231253624, + -0.018012886866927147, + -0.021081015467643738, + -0.01136763021349907, + -0.016429336741566658, + 0.02245248481631279, + -0.02263628877699375, + 0.031077178195118904, + 0.020868932828307152, + -0.012929973192512989, + -0.0007467076648026705, + 0.004492617677897215, + 0.03104890137910843, + 0.008737805299460888, + 0.00801672413945198, + 0.013410693034529686, + 0.0024177422747015953, + 0.032151732593774796, + -0.03333939239382744, + 0.010286008939146996, + 0.02492678165435791, + 0.02215556800365448, + -0.03613888472318649, + 0.0452725775539875, + 0.022721122950315475, + -0.008285362273454666, + -0.01205336395651102, + 0.01849360764026642, + 0.01743319444358349, + -0.011388838291168213, + 0.012654265388846397, + -0.012774445116519928, + -0.003216587007045746, + -0.02462986670434475, + 0.04306691884994507, + 0.0035682907328009605, + 0.007769294548779726, + 0.004372437484562397, + 0.004701165482401848, + 0.020840656012296677, + 0.00582166900858283, + 0.012951181270182133, + 0.009847704321146011, + 0.016697974875569344, + 0.015750672668218613, + -0.011063645593822002, + -0.01058292482048273, + -0.0021579409949481487, + -0.021052738651633263, + 0.0022692843340337276, + 0.001815074123442173, + 0.0011593851959332824, + -0.005549496039748192, + -0.02764143981039524, + 0.04122886806726456, + -0.013460179790854454, + -0.004718839190900326, + -0.04496152326464653, + -0.008674181066453457, + -0.021491043269634247, + 0.030907513573765755, + -0.04301036149263382, + -0.03333939239382744, + -0.023442203179001808, + -0.01990749128162861, + -0.010257731191813946, + -0.025138864293694496, + -0.000616365228779614, + 0.005634329281747341, + 0.040521927177906036, + 0.04006948322057724, + 0.015467895194888115, + -0.016302086412906647, + -0.022183846682310104, + 0.012406835332512856, + -0.010109273716807365, + 0.0019423236371949315, + -0.02646791562438011, + 0.004121473059058189, + -0.0046340059489011765, + 0.03707204759120941, + 0.016118282452225685, + 0.015029591508209705, + -0.05870448052883148, + -0.01416712161153555, + 0.024545032531023026, + -0.02139207161962986, + -0.008525722660124302, + 0.011890768073499203, + -0.027952494099736214, + 0.02438950538635254, + -0.018140137195587158, + 0.004301743116229773, + -0.0029338099993765354, + 0.02127896063029766, + -0.008511584252119064, + -0.023724980652332306, + -0.006093841511756182, + 0.006684138439595699, + -0.05101294815540314, + -0.024615727365016937, + 0.007825850509107113, + 0.0025237835943698883, + -0.005892363376915455, + -0.0003214377793483436, + -0.041935812681913376, + 0.007931891828775406, + 0.023131148889660835, + -0.014365065842866898, + 0.011685754172503948, + 0.018366357311606407, + 0.0140257328748703, + 0.012329071760177612, + -0.026496194303035736, + -0.038740433752536774, + -0.0007515679462812841, + -0.017588721588253975, + -0.013446040451526642, + -0.04122886806726456, + -0.03257589787244797, + -0.0011231544194743037, + 0.005648468155413866, + -0.029861237853765488, + -0.036732714623212814, + 0.022197984158992767, + 0.001679871347732842, + -0.025068169459700584, + 0.017164556309580803, + 0.02298976108431816, + 0.0012115221470594406, + 0.019016744568943977, + -0.0001186337394756265, + 0.03127512335777283, + 0.024177422747015953, + -0.01396210864186287, + 0.027061747387051582, + 0.01467612013220787, + 0.005443454720079899, + -0.009557858109474182, + -0.010660688392817974, + -0.021321376785635948, + 0.013007736764848232, + 0.008447959087789059, + -0.000802821246907115, + 0.009197317995131016, + -0.008554000407457352, + 0.003976549953222275, + 0.012477530166506767, + 0.008518652990460396, + 0.005355087108910084, + -0.007157789543271065, + -0.015368923544883728, + 0.002119059208780527, + -0.026298249140381813, + 0.019836798310279846, + 0.006691207643598318, + 0.0023929993622004986, + -0.006592235993593931, + -0.007783433422446251, + -0.018832940608263016, + 0.0019193480256944895, + -0.013502595946192741, + -0.0049521299079060555, + 0.001654244726523757, + -0.016287948936223984, + 0.003152962075546384, + -0.0060196127742528915, + -0.03684582561254501, + 0.04035225883126259, + 0.014817507937550545, + 0.0005907385493628681, + -0.016811085864901543, + 0.020812377333641052, + -0.0016754530370235443, + -0.02191520854830742, + 0.008603486232459545, + 0.0283342432230711, + -0.007599628530442715, + 0.012880486436188221, + 0.019964046776294708, + 0.0031352885998785496, + -0.007345129270106554, + -0.00455270754173398, + 0.03707204759120941, + 0.018889496102929115, + -0.039503928273916245, + 0.016867641359567642, + -0.038796987384557724, + 0.01932779885828495, + -0.0010727847693488002, + -0.0005372760933823884, + -0.013113778084516525, + 0.00505110202357173, + -0.031020622700452805, + 0.016019310802221298, + 0.01136763021349907, + -0.03328283876180649, + 0.00035479661892168224, + -0.005008685402572155, + -0.02051546238362789, + 0.004736512899398804, + 0.033141449093818665, + 0.009345775470137596, + -0.021066877990961075, + -0.0384293794631958, + -0.02717485837638378, + -0.003782140789553523, + -0.02020440809428692, + 0.017419055104255676, + 0.004086126107722521, + 0.004658748861402273, + 0.007253226824104786, + -0.03902320936322212, + -0.005468198098242283, + 0.0005880875396542251, + 0.007253226824104786, + -0.014661980792880058, + -0.01990749128162861, + -0.01172817125916481, + -0.018253248184919357, + -0.03099234588444233, + -0.02686380408704281, + -0.010286008939146996, + -0.014930618926882744, + 0.017235251143574715, + 0.018182553350925446, + 0.01305015292018652, + 0.011318144388496876, + -0.01791391521692276, + 0.013827789574861526, + -0.005397503729909658, + -0.002491971245035529, + -0.02191520854830742, + -0.009515441954135895, + 0.0006123886560089886, + 0.016231393441557884, + 0.043689027428627014, + -0.005121796391904354, + -0.04637540876865387, + -0.034922946244478226, + 0.03695893660187721, + -0.03712860494852066, + -0.0044219233095645905, + 0.006669999565929174, + 0.0003782140847761184, + -0.008235876448452473, + 0.00556716974824667, + -0.00636601448059082, + -0.0025591307785362005, + 0.02898463048040867, + 0.00028167228447273374, + -0.030568180605769157, + 0.0028260014951229095, + 0.004390111193060875, + -0.00758548965677619, + -0.009883051738142967, + -0.015991032123565674, + -0.017588721588253975, + -0.08703872561454773, + -0.007104768883436918, + -0.020543741062283516, + 0.036506496369838715, + -0.015255812555551529, + 0.015368923544883728, + 0.0034428085200488567, + 0.009437678381800652, + -0.007719808723777533, + 0.022424206137657166, + 0.007009332068264484, + -0.012180614285171032, + 0.002548526506870985, + 0.016839362680912018, + -0.007776364218443632, + 0.023880507797002792, + -0.006256438326090574, + -0.0008174019167199731, + -0.004248722456395626, + -0.024672282859683037, + -0.0016321528237313032, + 0.021886929869651794, + -0.007451170589774847, + 0.002428346546366811, + -0.010066856630146503, + 0.004386576358228922, + -0.015778949484229088, + 0.010851562954485416, + 0.008250015787780285, + -0.018960189074277878, + -0.0032059827353805304, + 0.0035594538785517216, + -0.02310287021100521, + 0.010455675423145294, + 0.019652992486953735, + -0.012618917971849442, + 0.017051445320248604, + -0.0038210225757211447, + 0.027669716626405716, + -0.007719808723777533, + 0.008257084526121616, + 0.021901069208979607, + 0.0029285079799592495, + -0.0026651720982044935, + -0.024672282859683037, + -0.02368256263434887, + 0.010455675423145294, + -0.021787958219647408, + 0.00011001787788700312, + 0.014117635786533356, + 0.0022357048001140356, + -0.009875982068479061, + 0.0015747137367725372, + -0.015043729916214943, + -0.004683492239564657, + 0.01193318422883749, + 0.024248117581009865, + -0.0026474986225366592, + 0.0027164253406226635, + 0.0012636592146009207, + 0.05723404139280319, + 0.01780080422759056, + -0.009501303546130657, + 0.0008695389260537922, + 0.006224626209586859, + 0.00878022238612175, + -0.0002403603430138901, + 0.008617625571787357, + 0.020176129415631294, + -0.004340624902397394, + 0.004436062183231115, + -0.015835504978895187, + 0.014259024523198605, + 0.03896665200591087, + 0.011798865161836147, + -0.010413258336484432, + 0.01685350202023983, + 0.009409400634467602, + -0.005432850681245327, + 0.0003042060707230121, + -0.014534731395542622, + 6.08633054071106e-5, + 0.006825526710599661, + 0.020868932828307152, + -0.0038351614493876696, + -0.02834838256239891, + 0.013099638745188713, + -0.024417784065008163, + 0.004573916085064411, + 0.01169989351183176, + 0.021943485364317894, + 0.008921610191464424, + 0.020133713260293007, + 0.015566866844892502, + 0.000562019064091146, + 0.022070735692977905, + 0.023908784613013268, + 0.015312368050217628, + 0.01181300450116396, + 0.004842554219067097, + 0.010809145867824554, + -0.00437597231939435, + 0.014259024523198605, + -0.04001292958855629, + 0.005210164003074169, + -0.012293724343180656, + -0.011770587414503098, + 0.0001812644040910527, + -0.021123433485627174, + -0.023018037900328636, + 0.01685350202023983, + 0.017065584659576416, + -0.03141650930047035, + 0.007649114355444908, + 0.0053833648562431335, + 0.00045597771531902254, + -0.005984265822917223, + -0.017715971916913986, + -0.014124705456197262, + -0.015397201292216778, + -0.00752893416211009, + 0.020586157217621803, + 0.0008567255572415888, + -0.04832656681537628, + -0.016712114214897156, + 0.004485548008233309, + -0.0059312451630830765, + -0.003237795317545533, + -0.015001313760876656, + 0.028362520039081573, + 0.0034074613358825445, + -0.008377265185117722, + -0.013841927982866764, + 0.0011399443028494716, + -0.007705669850111008, + 0.03859904408454895, + 0.04626229777932167, + -0.02894221432507038, + 0.0021968227811157703, + -0.04750651493668556, + 0.0034728534519672394, + -0.003501131199300289, + 0.0026651720982044935, + 0.024728838354349136, + -0.00898523535579443, + -6.914778350619599e-5, + 0.009911329485476017, + -0.011721101589500904, + -0.0054823365062475204, + -0.025181280449032784, + 0.005005150567740202, + 0.015991032123565674, + 0.01850774697959423, + -0.025859946385025978, + -0.008370195515453815, + -0.022664567455649376, + -0.005659072194248438, + 0.013361207209527493, + 0.009253873489797115, + 2.1677718905266374e-5, + 0.002695217030122876, + 0.008737805299460888, + 0.0028277686797082424, + 0.002813630038872361, + 0.008801430463790894, + -0.019412633031606674, + -0.01296531967818737, + -0.006033751647919416, + -0.01625967025756836, + -0.015538589097559452, + -0.005468198098242283, + 0.005199559964239597, + -0.03339594975113869, + -0.04029570519924164, + 0.009070068597793579, + 0.00866711139678955, + -0.030539901927113533, + -0.015269950963556767, + 0.02291906625032425, + 0.0019140460062772036, + 0.009600275196135044, + 0.006687673274427652, + 0.006945706903934479, + 0.04349108412861824, + 0.004301743116229773, + 0.010809145867824554, + 0.0046410756185650826, + 0.0030433861538767815, + 0.00011874419578816742, + -0.020826516672968864, + 0.007755155675113201, + 0.02334323152899742, + -0.008759013377130032, + -0.02163243107497692, + 0.01951160468161106, + -0.009557858109474182, + 0.018889496102929115, + 0.0049733384512364864, + -0.019610576331615448, + -0.028192855417728424, + -0.023724980652332306, + -0.007451170589774847, + 0.015849644318223, + 0.0053762951865792274, + 0.006079703103750944, + -0.007762225344777107, + -0.04057848080992699, + 0.006058494560420513, + 0.005786322057247162, + -0.0070800259709358215, + 0.00688208220526576, + 0.008582278154790401, + -0.006411965470761061, + -0.015156840905547142, + 0.004467874765396118, + -0.003191844094544649, + 0.0037892102263867855, + -0.01627380959689617, + -1.207462810270954e-5, + -0.025605445727705956, + 0.03283039480447769, + -0.006107980385422707, + -0.010215315036475658, + -0.015100285410881042, + 0.012420974671840668, + 0.02522369660437107, + -0.009536650031805038, + -0.0456119105219841, + -0.006563958246260881, + 0.027005191892385483, + -0.0030486881732940674, + -0.002138500101864338, + 0.007634975481778383, + -0.024672282859683037, + 0.0006645256653428078, + 0.0014589519705623388, + 0.03611060604453087, + -0.022183846682310104, + 0.006659395527094603, + -0.006429639179259539, + -0.021731402724981308, + -0.0012477529235184193, + -0.014223677106201649, + -0.001884000957943499, + 0.002801258349791169, + 0.027542468160390854, + -0.02444606088101864, + -0.008518652990460396, + 0.001094876672141254, + 0.027655579149723053, + 0.010646549053490162, + -0.021377932280302048, + -0.020260963588953018, + 0.022084875032305717, + 0.005411642603576183, + 0.008207598701119423, + 0.0050793797709047794, + -0.022706983610987663, + 0.01832394115626812, + 0.011615060269832611, + 0.008631763979792595, + 0.01210991945117712, + -0.0033243957441300154, + -0.010575855150818825, + 0.022466622292995453, + -0.01208164170384407, + 0.009883051738142967, + -0.02120826579630375, + 0.017814943566918373, + -0.017362499609589577, + -0.001490764319896698, + 0.007875336334109306, + -0.010604132898151875, + -0.022763539105653763, + 0.007832919247448444, + 0.004061382729560137, + 0.009303359314799309, + -0.0021049203351140022, + 0.0012468693312257528, + 0.019200550392270088, + 0.002189753344282508, + 0.005857015959918499, + -0.035120889544487, + 0.030681291595101357, + 0.015778949484229088, + 0.02191520854830742, + 0.003156496910378337, + -0.005867619998753071, + 0.023838091641664505, + 0.0043194168247282505, + 0.024007756263017654, + 0.005139469634741545, + 0.02375325746834278, + -0.013332929462194443, + 0.015835504978895187, + -0.007253226824104786, + -0.011791795492172241, + 0.012576501816511154, + -0.0032819791231304407, + 0.005616655573248863, + 0.012866348028182983, + 0.009317497722804546, + -0.011120201088488102, + 0.010420328006148338, + 0.011827142909169197, + -0.00021926253975834697, + -0.0019387889187783003, + 0.0016648488817736506, + 0.007861196994781494, + -0.011721101589500904, + -0.00085451640188694, + -0.007394615560770035, + -0.02675069309771061, + -0.0014730908442288637, + -0.00659930519759655, + -0.008822638541460037, + 0.027712134644389153, + 0.010441536083817482, + -0.007196671329438686, + -0.024431921541690826, + -0.023230120539665222, + -0.015383061952888966, + 0.013149124570190907, + 0.004881436005234718, + -0.04490496963262558, + -0.012060433626174927, + -0.019002607092261314, + 0.001490764319896698, + 0.0071012345142662525, + -0.03280211612582207, + -0.018889496102929115, + 0.03263245150446892, + -0.0030027369502931833, + 0.00924680382013321, + 0.02315942570567131, + -0.0019935769960284233, + 0.016514169052243233, + -0.01299359742552042, + -0.006701812148094177, + -0.004301743116229773, + 0.021052738651633263, + 0.04168131202459335, + -0.00282069924287498, + 0.02591650001704693, + -0.004294673912227154, + 0.024474339559674263, + -0.013474318198859692, + 0.016839362680912018, + 0.02792421728372574, + 0.00564139848574996, + -0.000691035995259881, + 0.0038634391967207193, + 0.00204659765586257, + 0.015581006184220314, + 0.04006948322057724, + 0.02403603494167328, + 0.003474620869383216, + 0.01903088390827179, + -0.029776405543088913, + -0.0453856885433197, + -0.009268011897802353, + -0.026482054963707924, + 8.781547512626275e-5, + -0.0013856067089363933, + -0.0001506670523667708, + 0.007931891828775406, + 0.0265668872743845, + -0.013269305229187012, + -0.00512533076107502, + -0.027019331231713295, + 0.00714365066960454, + -0.0247995313256979, + 0.017998747527599335, + -0.0037432590033859015, + -0.026241693645715714, + 0.00582166900858283, + -0.002400068799033761, + 0.014874063432216644, + -0.0011576178949326277, + -0.0009596740128472447, + -0.014520592987537384, + 0.012625987641513348, + -0.014987174421548843, + -0.021420348435640335, + -0.009070068597793579, + -0.007797572296112776, + 0.0087519446387887, + 0.004149750806391239, + -0.006793714594095945, + 0.0010356702841818333, + 0.0033208609092980623, + 0.01258357148617506, + 0.0014801601646468043, + 0.0006578980828635395, + -0.00201831990852952, + 0.02515300363302231, + -0.03144478797912598, + 0.019370216876268387, + -0.01843705214560032, + -0.00018855473899748176, + 0.00031812398810870945, + 0.01914399489760399, + 0.013424832373857498, + 0.00396241107955575, + -0.0014200701843947172, + 0.02935224026441574, + 0.01737663894891739, + 0.02710416354238987, + -0.003941202536225319, + -0.023838091641664505, + 0.007387545891106129, + 0.027061747387051582, + -0.006871478166431189, + -0.0035576866939663887, + -0.019780242815613747, + -0.021194126456975937, + -0.0062316954135894775, + 0.028178716078400612, + 0.0010833889245986938, + -0.00021440231648739427, + -0.024304673075675964, + 0.009098346345126629, + 0.01447110716253519, + 0.006348340772092342, + -0.0038634391967207193, + -0.004400715231895447, + -0.018055303022265434, + 0.01296531967818737, + 0.0059312451630830765, + 0.03486638888716698, + 0.004351229406893253, + -0.008971096016466618, + 0.02085479535162449, + -0.006118584889918566, + 0.01990749128162861, + -0.011431255377829075, + 0.017192834988236427, + -0.025492334738373756, + 0.00804500188678503, + -0.01098588202148676, + -0.004584520123898983, + -0.006171605549752712, + -0.014244885183870792, + -0.004068452399224043, + 0.009663899429142475, + -0.005644933320581913, + 0.012413905002176762, + -0.0016674998914822936, + 0.0076279062777757645, + 0.03076612390577793, + -0.0023028641007840633, + -0.024672282859683037, + 0.013332929462194443, + 0.0014863460091874003, + -0.0019829729571938515, + -0.0008995839161798358, + 0.01384899765253067, + -0.003276677103713155, + -0.0346684455871582, + 0.024474339559674263, + -0.0030751985032111406, + 0.011007090099155903, + -0.011459533125162125, + 0.00478953355923295, + -0.00924680382013321, + 0.012894625775516033, + 0.029719850048422813, + -0.029267406091094017, + -0.02969157136976719, + -0.003359742695465684, + -0.011402977630496025, + -0.008737805299460888, + -0.03664788231253624, + 0.008914541453123093, + 0.0139691773802042, + -0.025973055511713028, + -0.0019847401417791843, + -0.014803369529545307, + 0.010773799382150173, + -0.023131148889660835, + 0.01092932652682066, + -0.011926114559173584, + -0.016005171462893486, + 0.005086448974907398, + 0.030144015327095985, + -0.015510311350226402, + 0.018069442361593246, + -0.006005473900586367, + -0.0008885379647836089, + 0.040210872888565063, + -0.015298228710889816, + 0.01997818611562252, + 0.009791149757802486, + 0.02109515480697155, + -0.006146862171590328, + -0.014068149961531162, + -0.009084207005798817, + -0.005280858371406794, + 0.003987153992056847, + -0.008250015787780285, + 0.004305277951061726, + -0.007755155675113201, + -0.02957846224308014, + -0.009345775470137596, + 0.0007378709269687533, + -0.022311095148324966, + 0.0025043427012860775, + 0.021363792940974236, + 0.005461128428578377, + -0.019667131826281548, + -0.01804116554558277, + -0.0030840353574603796, + -0.009685108438134193, + 0.0019688340835273266, + -0.009685108438134193, + -0.0027164253406226635, + 0.009875982068479061, + -0.008009655401110649, + -0.0031070108525455, + -0.00993253756314516, + -0.014845785684883595, + -0.018281525000929832, + -0.01603344827890396, + -0.018408775329589844, + 0.0011655709240585566, + -0.0009420004789717495, + 0.008285362273454666, + -0.0012654265156015754, + 0.008341917768120766, + -0.005609586369246244, + -0.004061382729560137, + -0.0026598700787872076, + -0.00015928290667943656, + 0.018719829618930817, + 0.002500808099284768, + 0.02327253669500351, + -0.006956311408430338, + -0.009034721180796623, + -0.012604779563844204, + -0.00830657035112381, + -0.00636601448059082, + -0.013127916492521763, + 0.0052702538669109344, + 0.013474318198859692, + -0.019115716218948364, + 0.0697893351316452, + -0.0015543891349807382, + 0.006850270088762045, + 0.010215315036475658, + 0.009282151237130165, + 0.0031264517456293106, + -0.009875982068479061, + 0.0263972207903862, + 0.007228483911603689, + 0.00659930519759655, + -0.0007374290726147592, + 0.004722374025732279, + 0.0042310492135584354, + 0.0026368943508714437, + -0.04332141950726509, + 0.0028878587763756514, + 0.00642256997525692, + 0.0033137914724648, + -0.013622775673866272, + 0.025011613965034485, + 0.01655658707022667, + -0.027952494099736214, + -0.020953767001628876, + 0.029097741469740868, + -0.01478923112154007, + 0.027712134644389153, + -0.0024495546240359545, + 0.002856046427041292, + 0.028800824657082558, + 0.022791815921664238, + -0.0004917666665278375, + -0.01270375121384859, + -0.01470439787954092, + 0.013523804023861885, + 0.002774748019874096, + 0.010215315036475658, + 0.00036540074506774545, + 0.02027510292828083, + 0.007776364218443632, + 0.018182553350925446, + 0.0016781040467321873, + -0.009310428984463215, + 0.009614413604140282, + 0.015694117173552513, + -0.027302106842398643, + -0.007748086471110582, + 0.004174493718892336, + -0.00942353904247284, + 0.013863136060535908, + 0.010476883500814438, + -0.006298854947090149, + -0.0495990626513958, + -0.012986527755856514, + 0.0029479488730430603, + 0.017461473122239113, + -0.0010807379148900509, + 0.011233311146497726, + -0.02863115817308426, + 0.0131986103951931, + 0.005966592114418745, + -0.012887556105852127, + 0.0078682666644454, + -0.020543741062283516, + -0.015750672668218613, + -0.027599023655056953, + 0.008815568871796131, + -0.018889496102929115, + 4.249247467669193e-6, + -0.009091276675462723, + -0.010059787891805172, + -0.012915833853185177, + -0.0044219233095645905, + 0.00907713733613491, + -0.0283342432230711, + 0.01307843066751957, + 0.02935224026441574, + -0.002560898195952177, + 0.02888565883040428, + -0.0055919126607477665, + 0.006408431101590395, + 0.01986507512629032, + 0.007019936107099056, + -0.01979438215494156, + -0.018663274124264717, + 0.009833565913140774, + -0.020868932828307152, + 0.014259024523198605, + -0.0023876973427832127, + -0.0013988618738949299, + -0.01949746534228325, + -0.009352845139801502, + -0.011480741202831268, + 0.004945060703903437, + -0.008292431943118572, + -0.005443454720079899, + -0.006076168268918991, + -0.018253248184919357, + 0.005959522910416126, + 0.0006517123547382653, + 0.00015166119555942714, + 0.010448605753481388, + 0.011431255377829075, + -0.008370195515453815, + 0.0028507444076240063, + 0.0043370905332267284, + -0.002856046427041292, + 0.02498333714902401, + 0.005902967415750027, + -0.02764143981039524, + -0.010908118449151516, + -0.008327779360115528, + -0.012074572965502739, + 0.019596436992287636, + 0.010738451965153217, + -0.003022177843376994, + -0.0005386015982367098, + 0.005786322057247162, + -0.019935769960284233, + -0.009409400634467602, + -0.010971742682158947, + -0.009918399155139923, + 0.012491668574512005, + 0.0032448647543787956, + -0.012187683023512363, + 0.019172271713614464, + 0.0013078430201858282, + -0.015185118652880192, + -0.0021402675192803144, + -0.018719829618930817, + 0.009656830690801144, + 0.0017956332303583622, + -0.0008695389260537922, + 0.029182573780417442, + -0.003842230886220932, + 0.010978812351822853, + -0.011480741202831268, + 0.006030216813087463, + 0.002336443867534399, + 0.02940879575908184, + -0.02963501587510109, + 0.010547577403485775, + 0.016754530370235443, + 0.008030863478779793, + 0.02969157136976719, + 0.014718536287546158, + 0.016599003225564957, + 0.006252903491258621, + -0.01399745512753725, + 0.0077339475974440575, + -0.009359914809465408, + 0.01839463599026203, + -0.014202469028532505, + -0.00866711139678955, + -0.010172897949814796, + -0.008066210895776749, + -0.003930598497390747, + -0.017645277082920074, + 0.03718515858054161, + -0.01666969619691372, + 0.0015287625137716532, + -0.007034074980765581, + -0.011968531645834446, + -0.0022091944701969624, + -0.007698600646108389, + -0.012003878131508827, + 0.020967906340956688, + 0.011735239997506142, + 0.024601588025689125, + 0.010646549053490162, + -0.008511584252119064, + -0.013990386389195919, + -0.010936396196484566, + 0.003718515858054161, + -0.03611060604453087, + 0.037326548248529434, + -0.012618917971849442, + -0.0008165182080119848, + 0.007620837073773146, + -0.018422912806272507, + 0.0032925831619650126, + -0.010858631692826748, + -0.014273162931203842, + 0.023724980652332306, + -0.004202771466225386, + 0.022000040858983994, + -0.009734594263136387, + -0.0007754272082820535, + -0.012795654125511646, + -0.0026298249140381813, + 0.0008827940910123289, + -0.022890787571668625, + 0.003976549953222275, + 0.0042133755050599575, + -0.0061433278024196625, + -0.01361570693552494, + -0.02239592932164669, + 0.014944758266210556, + 0.015991032123565674, + 0.02233937382698059, + 0.002322304993867874, + -0.01637278124690056, + 0.008476236835122108, + 0.010215315036475658, + 0.005941849201917648, + -0.00639429222792387, + -0.00045553589006885886, + -0.0035417804028838873, + -0.014308510348200798, + 0.002133198082447052, + 0.02120826579630375, + -0.023244259878993034, + -0.015877921134233475, + 0.004595124162733555, + 0.02693449705839157, + 0.009211456403136253, + 0.00030199685716070235, + -0.008476236835122108, + 0.017998747527599335, + -0.008299501612782478, + -0.0016268506878986955, + 0.011968531645834446, + 0.003958876244723797, + -0.007175463251769543, + 0.006645256653428078, + 0.00904179085046053, + -0.007330990396440029, + 0.0021632430143654346, + 0.019638855010271072, + 0.002758841961622238, + 0.006751297973096371, + 0.03421600162982941, + -0.0019105112878605723, + 0.0024636934977024794, + 0.018055303022265434, + -0.029776405543088913, + 0.015538589097559452, + 0.02044476754963398, + -0.008285362273454666, + 0.004626936744898558, + 0.008278293535113335, + -0.01464784238487482, + 0.0028401403687894344, + -0.02339978702366352, + -0.0036831689067184925, + 0.01022238377481699, + -0.02274939976632595, + 0.001043623429723084, + -5.743905421695672e-5, + 0.010589994490146637, + -2.0255551135051064e-5, + -0.013085500337183475, + -0.010908118449151516, + 0.006281181238591671, + 0.030794402584433556, + 0.019652992486953735, + -0.0015835504746064544, + -0.014633703045547009, + 0.008829708211123943, + -0.004941525869071484, + -0.018281525000929832, + 0.014661980792880058, + -0.003884647274389863, + 0.0010851562255993485, + -0.0038210225757211447, + 0.014131774194538593, + 0.007543073035776615, + -0.016160698607563972, + -0.006691207643598318, + 0.022904926910996437, + 0.002299329498782754, + 0.011742309667170048, + -0.0002465460856910795, + 0.014414551667869091, + 0.012534084729850292, + 0.002910834504291415, + -0.0040012928657233715, + 0.020246824249625206, + -0.013071360997855663, + -0.0013926761457696557, + 0.007543073035776615, + 0.014577148482203484, + -0.009847704321146011, + 0.012774445116519928, + -0.013156194239854813, + 0.006344806402921677, + -0.02963501587510109, + 0.0030628270469605923, + 0.009670969098806381, + 0.007150720339268446, + 0.021236542612314224, + -0.0055883778259158134, + -0.007444101385772228, + 0.004687026608735323, + -0.029154296964406967, + 0.03571471944451332, + 0.0019900421611964703, + -0.01358742918819189, + -0.002187986159697175, + -0.004499686881899834, + 0.005206629168242216, + 0.003856369759887457, + -0.015368923544883728, + -0.0003665053518489003, + -0.007094164844602346, + 0.007005797233432531, + -0.00810155738145113, + 0.028956351801753044, + 0.014089358039200306, + -0.009685108438134193, + 0.029097741469740868, + -0.0033809510059654713, + -0.008476236835122108, + 0.009232665412127972, + 0.003810418536886573, + -0.000442943477537483, + 0.002772980835288763, + -0.0025096447207033634, + 0.008886263705790043, + 0.00810155738145113, + 0.011763517744839191, + 0.0034481105394661427, + 0.021646570414304733, + 0.02245248481631279, + -0.0027199601754546165, + 0.00866711139678955, + 0.019596436992287636, + 0.01107778400182724, + -0.0062281605787575245, + 0.00890040211379528, + -0.03133167698979378, + 0.02274939976632595, + 0.010589994490146637, + -0.012208892032504082, + -0.010448605753481388, + -0.005581308621913195, + 0.012548224069178104, + -0.027471773326396942, + -0.008384334854781628, + -0.008964027278125286, + 0.011254520155489445, + -0.01508614607155323, + 0.015015452168881893, + -0.005542426835745573, + 0.0015437849797308445, + 0.00014260350144468248, + 0.025379225611686707, + 0.003025712678208947, + -0.007797572296112776, + 0.005093518644571304, + 0.014223677106201649, + 0.022240402176976204, + 0.010978812351822853, + 0.0066558606922626495, + -0.00975580234080553, + -0.006447312887758017, + -9.195771417580545e-5, + 0.019059160724282265, + 0.015708254650235176, + 0.0012822163989767432, + 0.0028507444076240063, + -0.009091276675462723, + 0.01979438215494156, + -0.008893332444131374, + 0.003746793605387211, + -0.014400412328541279, + 0.01720697246491909, + -0.010724312625825405, + 0.0012150568654760718, + -0.018521886318922043, + 0.017631137743592262, + 0.0025043427012860775, + -0.015849644318223, + -0.03034195862710476, + 0.00403663981705904, + -0.013509665615856647, + 0.011841281317174435, + -0.0008293315768241882, + 0.02550647407770157, + -0.002129663247615099, + 0.007847058586776257, + 0.02345634251832962, + 0.009176109917461872, + -0.0087519446387887, + -0.006330667529255152, + 0.001227428438141942, + 0.0020854794420301914, + -0.008462098427116871, + 0.01627380959689617, + -0.0004217351961415261, + -0.006786644924432039, + -0.011600921861827374, + 0.007684461772441864, + -0.003289048559963703, + -0.022028319537639618, + -0.008228806778788567, + 0.005560100544244051, + -0.04006948322057724, + 0.011551435105502605, + 0.011183825321495533, + 0.01172817125916481, + -0.021519320085644722, + -0.01302187517285347, + 0.00986891333013773, + -0.012286655604839325, + 0.0005173933459445834, + -0.018606718629598618, + 0.008080349303781986, + 0.02156173624098301, + 0.028263548389077187, + -0.007161324378103018, + -0.00608323747292161, + 0.013679331168532372, + -0.018663274124264717, + -0.00738047668710351, + 0.00924680382013321, + 0.006044355686753988, + -0.0003369021287653595, + -0.007903614081442356, + 0.006694742478430271, + 0.007387545891106129, + 0.016514169052243233, + -0.00830657035112381, + -0.0016215486684814095, + 0.0036336828488856554, + 0.0018875356763601303, + -0.01307843066751957, + 0.029493628069758415, + -0.0010542275849729776, + 0.005948918405920267, + -0.0014889970188960433, + 0.003686703508719802, + -0.023470479995012283, + -0.02373911812901497, + 0.006694742478430271, + -0.029606739059090614, + -0.003686703508719802, + 0.02511058747768402, + -0.007967238314449787, + 0.010491021908819675, + 0.020289240404963493, + -0.02339978702366352, + -0.016811085864901543, + -0.006107980385422707, + -0.0263972207903862, + 0.012350279837846756, + 0.0004142239340581, + 0.010123412124812603, + -0.00025958032347261906, + 0.009006443433463573, + 0.011254520155489445, + 0.008603486232459545, + -0.0064614517614245415, + 0.02009129710495472, + 0.023555314168334007, + -0.018352219834923744, + -0.03257589787244797, + 0.004764790181070566, + 0.010024440474808216, + 0.03418772295117378, + -0.027005191892385483, + -0.002707588719204068, + -0.00011675592395476997, + 0.004202771466225386, + -0.007338060066103935, + 0.0013166798744350672, + 0.007175463251769543, + 0.017065584659576416, + 0.009826496243476868, + -0.009911329485476017, + -0.00012945878552272916, + -0.02351289801299572, + 0.014393342658877373, + 0.03234967589378357, + -0.0062493691220879555, + 0.012951181270182133, + 0.009055929258465767, + 0.0022745865862816572, + 0.012456321157515049, + 0.001545552397146821, + -0.008589347824454308, + -0.006719485390931368, + 0.009861843660473824, + -0.02710416354238987, + 0.0030186432413756847, + 0.025902362540364265, + -0.01879052445292473, + 0.00907713733613491, + 0.0014757418539375067, + 0.0042169103398919106, + -0.010780868120491505, + 0.012979459017515182, + 0.023894645273685455, + 0.021787958219647408, + -0.006733624264597893, + -0.009494233876466751, + -0.013361207209527493, + 0.008914541453123093, + 0.01102122850716114, + 0.0010171130998060107, + -0.008949887938797474, + 0.004768325015902519, + 0.003331465180963278, + -0.010759660042822361, + 0.0068644084967672825, + 0.021024459972977638, + 0.007790503092110157, + 0.003902320982888341, + 0.006401361431926489, + 0.027768690139055252, + 0.006062029395252466, + 0.014103496447205544, + 0.010370842181146145, + -0.01514270156621933, + -0.006535680498927832, + -0.013594498857855797, + 0.012781514786183834, + 0.02304631471633911, + -0.010109273716807365, + 0.008518652990460396, + -0.006086772307753563, + -0.008730736561119556, + -0.021943485364317894, + -0.007408753968775272, + 0.023937063291668892, + 0.02969157136976719, + -0.010688966140151024, + 0.013163263909518719, + -0.0029055324848741293, + 0.012611848302185535, + -0.010886909440159798, + 0.0036372176837176085, + -0.009239734150469303, + -0.0023010969161987305, + -0.011141409166157246, + 0.02174554206430912, + 0.01903088390827179, + 0.015383061952888966, + 0.026849664747714996, + 0.03981498256325722, + -0.007649114355444908, + 0.01146660279482603, + -0.002067805966362357, + 0.02228281833231449, + -0.0279383547604084, + 0.0034074613358825445, + -0.02503989264369011, + 0.001921115443110466, + 0.005478802137076855, + -0.00050457997713238, + 0.001771773910149932, + -0.02339978702366352, + -0.007055283058434725, + 0.016570724546909332, + 0.00758548965677619, + 0.013460179790854454, + -0.0088085001334548, + 0.007910682819783688, + 0.005263184662908316, + -0.003842230886220932, + 0.014379204250872135, + -0.020487185567617416, + 0.007811711169779301, + -0.017009029164910316, + 0.01004564855247736, + -0.00996081531047821, + 0.008023793809115887, + 0.018536023795604706, + 0.0052773235365748405, + 0.018338080495595932, + 0.00605495972558856, + -0.011056575924158096, + -0.01620311476290226, + -0.00587822450324893, + -0.001700195949524641, + -0.00655335420742631, + 0.006419035140424967, + -0.04105920344591141, + -0.00032519339583814144, + 0.020430630072951317, + -0.009487164206802845, + 0.0005500894039869308, + -0.0055954474955797195, + -0.03328283876180649, + -0.015991032123565674, + -0.009982023388147354, + 0.020699268206954002, + 0.0021667778491973877, + 0.004856693092733622, + 0.007034074980765581, + -0.022438345476984978, + 0.004220444709062576, + 0.002016552723944187, + -0.0032660728320479393, + -0.011714031919836998, + 0.007960168644785881, + 0.0031635663472115993, + -0.0027906543109565973, + -0.0014730908442288637, + -0.031218567863106728, + -0.0053798300214111805, + -0.02894221432507038, + -0.009670969098806381, + 0.010681896470487118, + -0.0033968572970479727, + 0.013940899632871151, + -0.004768325015902519, + 0.01467612013220787, + -0.009458886459469795, + -0.0159061998128891, + -0.013191541656851768, + 0.01175644900649786, + -0.005249045789241791, + -0.004482013639062643, + -0.003640752285718918, + 0.005553030874580145, + -0.007338060066103935, + 0.019200550392270088, + 0.016641419380903244, + 0.011968531645834446, + -0.017164556309580803, + 0.011042437516152859, + 0.02474297769367695, + -0.0017938658129423857, + 0.0030486881732940674, + 0.0018168414244428277, + -0.01019410602748394, + 0.0011001788079738617, + 0.006397827062755823, + 0.015001313760876656, + -0.03418772295117378, + 0.009289219975471497, + 0.025548890233039856, + -0.017108000814914703, + -0.014619564637541771, + 0.011190894991159439, + 0.011261588893830776, + -0.016528308391571045, + -0.016924196854233742, + -0.000267975265160203, + -0.016302086412906647, + 0.006857339292764664, + -0.014661980792880058, + -0.01511442381888628, + 0.00380688370205462, + 0.02457331120967865, + -0.01879052445292473, + -0.006740693934261799, + 0.001677220338024199, + 0.0008704225765541196, + 0.00023483736731577665, + -0.015029591508209705, + 0.008518652990460396, + -0.025789251551032066, + 0.006616978906095028, + 0.007642045151442289, + -0.004499686881899834, + 0.019257105886936188, + -0.023527035489678383, + 0.04377385973930359, + 0.005118261557072401, + -0.014902341179549694, + -0.01273202896118164, + -0.00305575761012733, + 0.014633703045547009, + 0.0028578138444572687, + -0.008886263705790043, + 0.017178695648908615, + -0.00590650225058198, + -0.005984265822917223, + -0.017178695648908615, + 0.001063948031514883, + 0.003280211705714464, + -0.03828798979520798, + 0.002658102661371231, + 0.0033420692197978497, + 0.004326486028730869, + -0.00639429222792387, + 2.3113696443033405e-5, + 0.01784322038292885, + -0.008865054696798325, + 0.005994869861751795, + -0.010703104548156261, + 0.022028319537639618, + -0.012866348028182983, + -2.071119706670288e-5, + -0.005259649828076363, + 0.0031600315123796463, + 0.00020711196702905, + 0.00642256997525692, + -0.00659930519759655, + 0.0016365711344406009, + 0.01099295075982809, + -0.01204629521816969, + -0.022763539105653763, + -0.009310428984463215, + -0.006118584889918566, + 0.0016206649597734213, + -0.02475711517035961, + -0.006086772307753563, + -0.007302712649106979, + -0.021081015467643738, + -0.0022003576159477234, + 0.021123433485627174, + 0.0020006464328616858, + -0.01627380959689617, + -0.004909713752567768, + 0.03164273127913475, + -0.0016878244932740927, + 0.008907471783459187, + 0.01128279697149992, + 0.0017054980853572488, + 0.010837423615157604, + 0.0024955058470368385, + -0.004524430260062218, + -0.0008907471783459187, + -0.03543194383382797, + 0.016825223341584206, + 0.00012537177826743573, + 0.0005814599571749568, + 0.0068644084967672825, + -0.00017596232646610588, + 0.0018221435602754354, + -0.03198206424713135, + 0.014421620406210423, + 0.009282151237130165, + -0.0176735557615757, + 0.016231393441557884, + -0.0006698277429677546, + -0.016287948936223984, + -0.010427397675812244, + 0.011897836811840534, + 0.001889302977360785, + -0.0028772547375410795, + 0.018125997856259346, + 0.009904259815812111, + -0.016895918175578117, + -0.012010947801172733, + 0.002940879436209798, + -0.004142681136727333, + 0.00553889200091362, + -0.023937063291668892, + -0.026679998263716698, + -0.030257126316428185, + 0.009289219975471497, + 0.0016825224738568068, + -0.00872366689145565, + 0.0026616372633725405, + 0.005832273047417402, + -0.027372801676392555, + 0.016401058062911034, + -0.011975600384175777, + -0.004916782956570387, + 0.010208245366811752, + -0.012095781043171883, + 0.0007308014901354909, + 0.00010151247988687828, + 0.00458098528906703, + 0.0029638551641255617, + 0.005666141863912344, + 0.0028419075533747673, + 0.00942353904247284, + 0.008645903319120407, + 0.015397201292216778, + 0.027429357171058655, + 0.0051712822169065475, + 0.010469813831150532, + 0.0009455351973883808, + -0.0033809510059654713, + -0.010038578882813454, + 0.02369670197367668, + -0.004033105447888374, + 0.018719829618930817, + -0.019667131826281548, + -0.02786766178905964, + -0.01809772104024887, + -0.012406835332512856, + -0.000710918742697686, + -0.0033261629287153482, + 0.011615060269832611, + 0.006659395527094603, + 0.00040870095835998654, + 0.0007281504804268479, + -0.011360561475157738, + -0.009536650031805038, + -0.014661980792880058, + -0.0028065606020390987, + 0.004927386995404959, + 0.004298208747059107, + 0.022664567455649376, + 0.01672625169157982, + 0.02167484723031521, + 0.004785998724400997, + -0.020883072167634964, + -0.008426751010119915, + 0.03022884763777256, + -0.022904926910996437, + 0.005471732467412949, + -0.015750672668218613, + -0.0017753086285665631, + -0.013241027481853962, + -0.020374074578285217, + -0.0013626310974359512, + 0.0003762257983908057, + -0.0173342227935791, + -0.012654265388846397, + 0.02433294989168644, + -0.014534731395542622, + -0.0037079118192195892, + 0.02021854743361473, + 0.006510937586426735, + -0.002007715869694948, + -0.01614655926823616, + 0.0006711532478220761, + -0.011572644114494324, + -0.001550854416564107, + 0.010003232397139072, + 0.01791391521692276, + -0.008511584252119064, + 0.009359914809465408, + 0.0035912664607167244, + -0.009126624092459679, + -0.0007215228979475796, + 0.01944090984761715, + -0.007514795754104853, + -0.01519925706088543, + 0.008348987437784672, + 0.0021172917913645506, + -0.009480094537138939, + -0.0035788947716355324, + -0.022791815921664238, + -0.010370842181146145, + 0.0032148195896297693, + 0.0023576521780341864, + 0.014534731395542622, + 0.018253248184919357, + -0.007302712649106979, + -0.014619564637541771, + 0.015538589097559452, + 0.012003878131508827, + 0.006539215333759785, + 0.013248097151517868, + -0.02598719485104084, + -0.004174493718892336, + 0.014548870734870434, + 0.002723494777455926, + 0.007154255174100399, + -0.007359268143773079, + -0.025944778695702553, + -0.0005682047922164202, + -0.02593063935637474, + 0.00878022238612175, + 0.016881778836250305, + 0.008610555902123451, + 0.024785393849015236, + -0.025181280449032784, + 0.009381122887134552, + -0.017192834988236427, + -0.001135525875724852, + -0.0019405563361942768, + 0.004697631113231182, + 0.010165829211473465, + 0.011459533125162125, + -0.007175463251769543, + -0.0061221192590892315, + 0.021547598764300346, + -0.005213698837906122, + -0.018521886318922043, + 0.001364398398436606, + 0.00013973155000712723, + -0.014619564637541771, + 0.011558504775166512, + 0.001777959638275206, + -0.002348815556615591, + -0.009147832170128822, + -0.005415177438408136, + 0.0029373448342084885, + 0.017772527411580086, + -0.007656184025108814, + 0.012724959291517735, + 0.02386636845767498, + -0.01293704193085432, + 0.0013997455826029181, + 0.0075218649581074715, + 0.024955060333013535, + -0.013396554626524448, + 0.0014872296014800668, + 0.03034195862710476, + -0.027500052005052567, + 0.0033155588898807764, + 0.009522511623799801, + 0.021717263385653496, + 0.010858631692826748, + 0.006277646869421005, + 0.004906178917735815, + -0.012689612805843353, + 0.003419832792133093, + 0.029917793348431587, + 0.018168414011597633, + -0.0043370905332267284, + 0.010978812351822853, + 0.00907713733613491, + 0.013099638745188713, + -0.00396241107955575, + -0.010512229986488819, + -0.011919045820832253, + 0.009890121407806873, + -0.041737865656614304, + 0.006853804457932711, + -0.016768669709563255, + 0.01808358170092106, + -0.01025066152215004, + 0.006139792967587709, + 0.006005473900586367, + -0.005029893945902586, + -0.012307863682508469, + 0.015764810144901276, + 0.006390757393091917, + -0.0014801601646468043, + -0.0036054051015526056, + -0.028263548389077187, + -0.030568180605769157, + 0.02379567362368107, + 0.012604779563844204, + -0.00016016658628359437, + 0.017362499609589577, + 0.0012336141662672162, + 0.00878022238612175, + -0.010717243887484074, + 0.003824557177722454, + -0.01390555314719677, + 0.018875356763601303, + -0.0010400887113064528, + 0.01390555314719677, + -0.01305015292018652, + -0.017051445320248604, + -0.00590650225058198, + 0.006988123524934053, + -0.011735239997506142, + 0.0022922600619494915, + -0.011487810872495174, + 0.02974812686443329, + 0.012894625775516033, + 0.003658425761386752, + -0.017164556309580803, + -0.017885638400912285, + -0.0006981054320931435, + -0.0019882749766111374, + -0.01252701599150896, + -0.03670443966984749, + 0.013354138471186161, + -0.0009897190611809492, + 0.0017691227840259671, + 0.021420348435640335, + -0.00478953355923295, + 0.01791391521692276, + 0.009091276675462723, + 0.0026616372633725405, + -0.010547577403485775, + -0.0159627553075552, + -0.018352219834923744, + 0.0006729206070303917, + -0.017277667298913002, + 0.009409400634467602, + -0.023541174829006195, + 0.0021667778491973877, + -0.012152336537837982, + 0.009225595742464066, + -0.0066770692355930805, + -0.030426792800426483, + 0.0013370044762268662, + 0.020543741062283516, + 0.005160678178071976, + 0.005266719497740269, + 0.008497444912791252, + 0.013651053421199322, + 0.0036973077803850174, + -0.023555314168334007, + 0.007359268143773079, + 0.0004670236958190799, + -0.0022869580425322056, + -0.020586157217621803, + -0.007797572296112776, + -0.00505110202357173, + -0.010738451965153217, + 0.017079723998904228, + 0.0002686380466911942, + 0.007698600646108389, + -0.007726878393441439, + 0.006132723763585091, + -0.012124058790504932, + 0.004199236631393433, + -0.021660709753632545, + -0.016217254102230072, + 0.0017293572891503572, + 0.001167338341474533, + -0.01187662873417139, + 0.013509665615856647, + 0.0027340990491211414, + -0.014089358039200306, + -0.013276373967528343, + 0.01903088390827179, + 0.011205033399164677, + -0.012124058790504932, + 0.006107980385422707, + 0.021052738651633263, + -0.011028298176825047, + 0.014117635786533356, + 0.013071360997855663, + -0.033622171729803085, + 0.027075886726379395, + 0.024488477036356926, + 0.002788886893540621, + -0.02120826579630375, + 0.014372134581208229, + -0.007030540145933628, + 0.010780868120491505, + 0.029889516532421112, + 0.00921852607280016, + -0.006235230248421431, + -0.003700842382386327, + -0.003852834925055504, + 0.026679998263716698, + -0.00450675655156374, + 0.007493587210774422, + 0.005266719497740269, + -0.004496152512729168, + 0.012498738244175911, + -0.009070068597793579, + -0.03175584226846695, + -0.013559151440858841, + 0.02014785259962082, + -0.00807327963411808, + -0.0095790671184659, + -0.0036690300330519676, + -0.019992325454950333, + 0.005365691147744656, + 0.003927063662558794, + 0.017065584659576416, + 0.0037573978770524263, + 0.007150720339268446, + 0.008504514582455158, + 0.009437678381800652, + 0.017956331372261047, + 0.017065584659576416, + -0.013233957812190056, + -0.0018557232106104493, + 0.004181562922894955, + -0.015015452168881893, + 0.013813650235533714, + 0.004206305835396051, + 0.0005925059085711837, + -0.006023147609084845, + 0.004128542263060808, + -0.007571350783109665, + 0.005761578679084778, + -0.0016427569789811969, + -0.016542447730898857, + 0.02167484723031521, + 0.02533680759370327, + 0.01914399489760399, + -0.004754186142235994, + 0.011410047300159931, + 0.006344806402921677, + -0.02663758210837841, + -0.0015269950963556767, + -0.0030327821150422096, + -0.013841927982866764, + 0.016132421791553497, + 0.000668060383759439, + 0.014548870734870434, + -0.0034251350443810225, + 0.018253248184919357, + -0.004750651773065329, + 0.017475610598921776, + -0.017249388620257378, + -0.0014262559125199914, + -0.007500656880438328, + 0.011770587414503098, + -0.011275728233158588, + 0.009225595742464066, + 0.023428063839673996, + -0.021123433485627174, + -0.015255812555551529, + -0.016104143112897873, + -0.015015452168881893, + 0.005743905436247587, + 0.011431255377829075, + -0.0010825052158907056, + 0.003423367626965046, + -0.025492334738373756, + -0.00916197057813406, + -0.0062493691220879555, + 0.0038917167112231255, + 0.031020622700452805, + 0.013559151440858841, + -0.004906178917735815, + -0.006171605549752712, + -0.006733624264597893, + 0.016514169052243233, + -0.002440718002617359, + -0.0006645256653428078, + 0.008405542932450771, + -0.005899432580918074, + -0.01773010939359665, + -0.013955038972198963, + 0.009126624092459679, + 0.01213819719851017, + 0.009670969098806381, + -0.002778282854706049, + -0.017475610598921776, + -0.01278858445584774, + -0.01505786832422018, + -0.04400008171796799, + -0.0015985730569809675, + -0.008052071556448936, + 0.00722141470760107, + -0.0079813776537776, + 0.0070764911361038685, + -0.0009234432363882661, + 0.011402977630496025, + 0.01290876418352127, + 0.010491021908819675, + -0.00028609068249352276, + -0.010455675423145294, + 0.003511735238134861, + 0.013926761224865913, + 0.011805934831500053, + -0.017998747527599335, + 0.0004475827736314386, + 0.009176109917461872, + 0.015934476628899574, + 0.015312368050217628, + 0.0021685452666133642, + 0.0056944191455841064, + 0.014718536287546158, + 0.009225595742464066, + 0.012286655604839325, + -0.024120867252349854, + 0.03251934051513672, + -0.014032802544534206, + 0.01061120256781578, + 0.01293704193085432, + 0.024997476488351822, + 0.012180614285171032, + 0.005227837711572647, + -0.0022692843340337276, + 0.00406491756439209, + 0.0006742461118847132, + 0.00878022238612175, + -0.014145913533866405, + 0.006348340772092342, + 0.005620190408080816, + 0.012060433626174927, + -0.008787291124463081, + -0.022904926910996437, + 0.0016931265126913786, + -0.021547598764300346, + 0.01078793779015541, + -0.015609283931553364, + 0.020487185567617416, + -0.0008262387127615511, + 0.006076168268918991, + -0.01850774697959423, + 0.007030540145933628, + 0.000949069915805012, + 0.006118584889918566, + -0.00752893416211009, + 0.009515441954135895, + 0.002893161028623581, + -0.024262256920337677, + -0.01517097931355238, + -0.027372801676392555, + 7.53335261833854e-5, + 0.011233311146497726, + 0.019935769960284233, + 0.0036336828488856554, + 0.019596436992287636, + -0.013332929462194443, + 0.007910682819783688, + -0.024969197809696198, + -0.01081621553748846, + -0.004185097757726908, + -0.005934779532253742, + 0.004326486028730869, + 0.004436062183231115, + 0.012201822362840176, + -0.02280595526099205, + -0.006390757393091917, + 0.004704700317233801, + -0.0027853522915393114, + 0.03240622952580452, + -0.0016224323771893978, + -0.008455028757452965, + 0.00419570179656148, + -0.012385627254843712, + -0.017291806638240814, + -0.026015473529696465, + -0.0010418560123071074, + -0.015255812555551529, + 0.032038621604442596, + -0.03387666866183281, + -0.015482033602893353, + 0.0140257328748703, + 0.011714031919836998, + -0.02745763398706913, + -0.00981235783547163, + 0.009805288165807724, + 0.01666969619691372, + -0.03430083394050598, + 0.04120058938860893, + -0.000788240518886596, + 0.008327779360115528, + -0.017419055104255676, + 0.005249045789241791, + -0.009317497722804546, + 0.011996809393167496, + -0.017532166093587875, + -0.014916480518877506, + 0.02233937382698059, + -0.0019794381223618984, + 0.00942353904247284, + 0.006592235993593931, + 0.007232018746435642, + -0.011763517744839191, + 0.0027394010685384274, + 0.0020625039469450712, + 0.011353491805493832, + -0.021137570962309837, + -0.0009755802457220852, + 0.0053833648562431335, + -0.018550163134932518, + -0.0035788947716355324, + -0.01856430247426033, + 0.0042169103398919106, + -0.01774424873292446, + 0.022070735692977905, + -0.0052702538669109344, + 0.015326506458222866, + 0.004301743116229773, + 0.015397201292216778, + -0.015651701018214226, + -0.016627280041575432, + 0.005991335026919842, + 0.0068679433315992355, + -0.02782524563372135, + -0.010483953170478344, + 0.01849360764026642, + -0.00892867986112833, + -0.010512229986488819, + -0.010335494764149189, + 0.011721101589500904, + -0.01886121742427349, + 0.02092548832297325, + 0.008087418973445892, + 0.014357996173202991, + 0.004040174651890993, + -0.01505786832422018, + 0.0006194580928422511, + -0.015708254650235176, + 0.008879194036126137, + -0.009628552943468094, + -0.006295320112258196, + 0.02610030584037304, + 0.01685350202023983, + 0.0003415414539631456, + 0.009112484753131866, + 0.012675473466515541, + -0.013870205730199814, + 0.010491021908819675, + 0.020487185567617416, + -0.013665192760527134, + -0.01116261724382639, + 0.01886121742427349, + -0.024135006591677666, + -0.01609000377357006, + -0.017164556309580803, + 0.015496172942221165, + 0.0021632430143654346, + 0.009904259815812111, + 0.006351875606924295, + 0.006486194673925638, + 0.0037432590033859015, + -0.023498758673667908, + -0.016471752896904945, + -0.0059100366197526455, + -0.010851562954485416, + 0.04323658347129822, + 0.017956331372261047, + 0.0027765154372900724, + -0.014117635786533356, + 0.0019546952098608017, + -0.026764830574393272, + 0.004149750806391239, + -0.003796279663220048, + -0.013870205730199814, + 0.007168394047766924, + 0.007023470476269722, + 0.0010418560123071074, + -0.01666969619691372, + -4.053871816722676e-5, + -0.018111858516931534, + 0.008405542932450771, + 0.004181562922894955, + -0.00693863769993186, + -0.013396554626524448, + 0.02098204381763935, + 0.013000667095184326, + -0.0020306913647800684, + -0.010088064707815647, + 0.019228827208280563, + 0.013658123090863228, + 0.0047612558118999004, + -0.009126624092459679, + -0.0032731422688812017, + -0.008688319474458694, + -0.0175038892775774, + 0.027669716626405716, + -0.0008947236929088831, + -0.03452705591917038, + 0.016528308391571045, + -0.007037609349936247, + 0.013241027481853962, + -0.002228635363280773, + 0.002870185300707817, + 0.012809792533516884, + 0.0035082006361335516, + -0.008992305025458336, + -0.01678280718624592, + 0.013318791054189205, + -0.008002585731446743, + -0.008009655401110649, + -0.003064594464376569, + 0.002334676682949066, + -0.014174191281199455, + -0.0026881475932896137, + 0.0029143691062927246, + 0.009642691351473331, + -0.017645277082920074, + -0.020020602270960808, + -0.002985063474625349, + -0.017122140154242516, + 0.0280514657497406, + 0.014308510348200798, + -0.038570765405893326, + -0.0157930888235569, + -0.008978165686130524, + -0.004824880510568619, + 0.0005112075596116483, + 0.020458906888961792, + 0.02823527157306671, + -0.010264800861477852, + 0.025548890233039856, + 0.0023117009550333023, + -0.006242299452424049, + 0.0026704741176217794, + 0.02163243107497692, + 0.014004524797201157, + -0.02185865305364132, + -0.017984610050916672, + -0.00013199936074670404, + -0.017489749938249588, + -0.03266073018312454, + -0.006542750168591738, + -0.01505786832422018, + -0.014591286890208721, + 0.02061443403363228, + 0.007938960567116737, + -0.026086166501045227, + 0.002500808099284768, + -0.010024440474808216, + -0.005104122683405876, + 0.005234906915575266, + -0.014831647276878357, + 0.004241653252393007, + 0.010731382295489311, + 0.0072037409991025925, + -0.000951720925513655, + -0.004418388940393925, + -0.012929973192512989, + 0.0006044355686753988, + 0.0041037993505597115, + -0.009557858109474182, + -0.0020342261996120214, + -0.007267365697771311, + 0.0034728534519672394, + 0.01307843066751957, + 0.01691005751490593, + 0.005203094333410263, + 0.0020907814614474773, + -0.004496152512729168, + -0.005556565709412098, + -0.01955402083694935, + 0.01296531967818737, + 0.0023876973427832127, + -0.0008584929164499044, + 0.00533387903124094, + -0.025760972872376442, + 0.011805934831500053, + 0.01597689278423786, + 0.006507402751594782, + -0.0055919126607477665, + 0.019073300063610077, + -0.0069704498164355755, + -0.006238765083253384, + 0.019200550392270088, + 0.0088085001334548, + -0.009225595742464066, + 0.023003898561000824, + 0.021321376785635948, + -0.002143802121281624, + 0.00160564249381423, + 0.002979761455208063, + 0.003838696051388979, + 0.011777657084167004, + 0.0018645600648596883, + -0.026722414419054985, + 0.017164556309580803, + 0.002935577416792512, + -0.02334323152899742, + 0.008525722660124302, + -0.003828092012554407, + -0.008971096016466618, + -0.010236523114144802, + -0.01175644900649786, + -0.007642045151442289, + -0.015764810144901276, + -0.00919024832546711, + 0.030483348295092583, + 0.02373911812901497, + 0.0029603203292936087, + 0.018295664340257645, + -0.003746793605387211, + -0.0035965684801340103, + 0.02014785259962082, + 0.004220444709062576, + 0.007189602125436068, + -0.008030863478779793, + -0.01128279697149992, + 0.003722050692886114, + 0.018691550940275192, + 0.003746793605387211, + 0.019879214465618134, + -0.016952473670244217, + 0.02233937382698059, + -0.006648791488260031, + 0.002695217030122876, + 0.008292431943118572, + -0.0037856753915548325, + 0.01650003157556057, + 0.018889496102929115, + 0.004344159737229347, + -0.006107980385422707, + -0.008992305025458336, + 0.002087246859446168, + -0.014888202771544456, + -0.009409400634467602, + -0.005330344196408987, + -0.003437506500631571, + -0.024672282859683037, + 0.008200529031455517, + 0.0031405906192958355, + -0.003983619157224894, + -0.010505161248147488, + -0.00047100023948587477, + -0.012420974671840668, + 0.0021349654998630285, + 0.021052738651633263, + 0.010215315036475658, + 0.01679694652557373, + 0.004602193832397461, + -0.018578439950942993, + 0.021731402724981308, + 0.0002363837993470952, + -0.0005708558019250631, + -0.0048496234230697155, + -0.009713386185467243, + 0.010604132898151875, + 0.002617453457787633, + 0.00883677788078785, + -0.007359268143773079, + -0.019525744020938873, + 0.013113778084516525, + 0.00047983700642362237, + 0.006001939065754414, + -0.017009029164910316, + -0.009678038768470287, + 0.00590650225058198, + -0.014888202771544456, + -0.012696681544184685, + 0.005231372080743313 + ], + "0a79d729-0631-4479-a8e9-a660ab1445b3": [ + -0.03404178470373154, + -0.009011927992105484, + -0.007533293683081865, + 0.00504063256084919, + -0.02702103555202484, + -0.005803917534649372, + 0.0301184244453907, + 0.011187475174665451, + -0.0013707791222259402, + 6.320379907265306e-5, + -0.013599013909697533, + 0.02321567013859749, + 0.008628441952168941, + -0.03303882107138634, + 0.005999348126351833, + 0.02019202895462513, + 0.014933841302990913, + 0.023451661691069603, + 0.0010674931108951569, + -0.022079961374402046, + 0.04926323890686035, + -0.013289275579154491, + -0.03796514496207237, + 0.010442626662552357, + 0.025251097977161407, + -0.02582632750272751, + 0.008569443598389626, + -0.011607835069298744, + -0.05643148347735405, + 0.012079818174242973, + 0.006939627230167389, + 0.02234545163810253, + 0.006309087388217449, + -0.015398450195789337, + -0.016843898221850395, + -0.018038606271147728, + -0.015236206352710724, + 0.012632924132049084, + -0.019970787689089775, + -0.02855497971177101, + -0.00270837196148932, + 0.009941144846379757, + -0.007352612446993589, + -0.005431493744254112, + -0.06796557456254959, + 0.00545361777767539, + 0.056726474314928055, + -0.0384371280670166, + -0.003856987226754427, + -0.013916128315031528, + 0.011320220306515694, + -0.0005590972141362727, + -0.008643191307783127, + -0.01324502658098936, + 0.028687724843621254, + -0.022537196055054665, + -0.013857129961252213, + 0.061416808515787125, + -0.010708117857575417, + -0.04094453901052475, + 0.011747955344617367, + 0.026283562183380127, + 0.0048931376077234745, + -0.021637476980686188, + -0.01920381374657154, + -0.03377629444003105, + 0.010980983264744282, + 0.008362951688468456, + -0.023038677871227264, + -0.030354415997862816, + -0.006792132277041674, + 0.00696912594139576, + -0.045900359749794006, + -0.0005816823686473072, + -0.016342416405677795, + -0.03882061317563057, + 0.05755244567990303, + 0.009004553779959679, + 0.013127030804753304, + 0.003927047364413738, + -0.015236206352710724, + 0.0031914173159748316, + 0.03253733739256859, + -0.023746652528643608, + 0.045310381799936295, + 0.0010573528707027435, + -0.0035361861810088158, + -0.03581172227859497, + 0.016357166692614555, + -0.015354202128946781, + -0.015929430723190308, + 0.04831927269697189, + -0.017743615433573723, + 0.01911531761288643, + -0.01556069403886795, + 0.004056104924529791, + 0.005807605106383562, + 0.01455773040652275, + 0.01700614206492901, + 0.011113728396594524, + 0.02532484568655491, + 0.01712413877248764, + -0.04522188380360603, + 0.013650637120008469, + -0.00935854110866785, + 0.014756848104298115, + 0.0005236063152551651, + -0.017640370875597, + -0.03486775606870651, + 0.007160869427025318, + -0.0013422020711004734, + -0.04681482911109924, + 0.01662265695631504, + 0.010354130528867245, + -0.047965288162231445, + -0.01713888719677925, + 0.02960219234228134, + -0.033333808183670044, + -0.011733205989003181, + -0.05654948204755783, + 0.03283232823014259, + 0.040590550750494, + 0.01325240172445774, + 0.02131298929452896, + -0.02339266426861286, + 0.007662351243197918, + 0.023613907396793365, + -0.004399030469357967, + 0.015368951484560966, + -0.011777454055845737, + 0.014365986920893192, + -0.0031121389474719763, + -0.007466920651495457, + 0.02327466942369938, + 0.008584193885326385, + 0.031829364597797394, + 0.015368951484560966, + 0.03486775606870651, + -0.023967893794178963, + 0.03994157537817955, + -0.06560565531253815, + -0.05112167447805405, + -0.03230134770274162, + 0.00738948630169034, + -0.007713974453508854, + -0.0027968687936663628, + -0.020988499745726585, + 0.040649548172950745, + -0.022374950349330902, + 0.03781764954328537, + -0.0497647225856781, + -0.022109460085630417, + -0.0026180315762758255, + 0.0062759011052548885, + -0.0022087336983531713, + 0.004446966107934713, + 5.859458542545326e-5, + 0.03321581333875656, + 0.03746366128325462, + 0.019041569903492928, + 0.014874843880534172, + -0.04418942332267761, + 0.006644637789577246, + 0.014697849750518799, + 0.04519238695502281, + 0.009402789175510406, + 0.04418942332267761, + 0.005652735475450754, + -0.01654890924692154, + 0.011644708923995495, + 0.008001589216291904, + -0.0077508483082056046, + 0.03356980159878731, + 0.018318844959139824, + 0.0362837053835392, + 0.012448555789887905, + 0.019498804584145546, + 0.0048747011460363865, + 0.0424489825963974, + -0.029690690338611603, + -0.009048801846802235, + -0.004446966107934713, + -0.027139030396938324, + -0.02174072340130806, + 0.005107005126774311, + 0.007518543861806393, + -0.011010481975972652, + -0.0005941272247582674, + 0.009845273569226265, + -0.003373942105099559, + -0.013429395854473114, + -0.010855612345039845, + 0.01140871737152338, + 0.027581514790654182, + 0.001343123964034021, + -0.02696203626692295, + -0.003908610437065363, + -0.018997320905327797, + 0.0016335041727870703, + 0.03407128155231476, + 0.0009522628970444202, + -0.044336915016174316, + -0.06014835089445114, + 0.04719831421971321, + -0.009447037242352962, + 0.013960376381874084, + -0.020959001034498215, + -0.03938109427690506, + 0.029852934181690216, + -0.007876218296587467, + 0.03156387433409691, + -0.04752280190587044, + 0.028230492025613785, + 0.01563444174826145, + -0.022050462663173676, + 0.014402860775589943, + 0.0036597130820155144, + 0.01924806274473667, + 0.019321810454130173, + -0.02283218502998352, + -0.011895449832081795, + 0.0070502483285963535, + -0.017846861854195595, + -0.03221284970641136, + -0.05427806079387665, + -0.02224220521748066, + 0.0023193545639514923, + 0.0444549135863781, + -0.050472699105739594, + -0.005800230428576469, + 0.030796900391578674, + -0.02182921953499317, + 0.008193332701921463, + -0.024189136922359467, + -0.00902667734771967, + 0.013871879316866398, + -0.017773116007447243, + 0.031829364597797394, + -0.011047355830669403, + -0.008090086281299591, + 0.025118352845311165, + 0.03533973917365074, + 0.02432188205420971, + 0.03306831791996956, + 0.02640155702829361, + 0.014660976827144623, + -0.0028079310432076454, + -0.006135780829936266, + 0.020339524373412132, + -0.01476422231644392, + 0.00036896730307489634, + 0.040148064494132996, + 0.022478196769952774, + -0.004236786160618067, + -0.00491157453507185, + 0.009764151647686958, + -0.001144927809946239, + -0.04303896427154541, + 0.017787864431738853, + 0.01868758350610733, + 0.003930734470486641, + 0.03557572886347771, + 0.0071276831440627575, + 0.005217626225203276, + 0.04407142475247383, + -0.030265919864177704, + 0.027050534263253212, + -0.01765511929988861, + 0.017433878034353256, + 0.02236020192503929, + -0.04194750264286995, + 0.005877665244042873, + 0.009439663030207157, + -0.009483911097049713, + -0.005995661020278931, + -0.00043533992720767856, + 0.0016003178898245096, + 0.00264753052033484, + 0.0022843247279524803, + 0.019071068614721298, + 0.006014097947627306, + -0.0015496165724471211, + -0.0015855684177950025, + 0.024587372317910194, + -0.02691778913140297, + 0.008112209849059582, + -0.030442912131547928, + 0.03056090883910656, + -0.027080032974481583, + 0.013768632896244526, + 0.01368751097470522, + -0.001922962605021894, + 0.041210029274225235, + 0.0022234830539673567, + 0.04651983827352524, + 0.028245240449905396, + -0.039617083966732025, + -0.009041426703333855, + -0.05483854189515114, + 0.009225795976817608, + -0.024218635633587837, + -0.0010896173771470785, + -0.01960204914212227, + -0.02908596210181713, + 0.022684689611196518, + -0.0321243517100811, + 0.019779043272137642, + 0.025103604421019554, + -0.033923789858818054, + -0.00738948630169034, + 0.02948419749736786, + -0.0142701156437397, + -0.03165236860513687, + -0.0026807168032974005, + 0.011150602251291275, + -0.019026819616556168, + 0.009233170188963413, + 0.010811364278197289, + 0.003567528910934925, + -0.02699153684079647, + 0.010575372725725174, + -0.015944181010127068, + -0.028731973841786385, + 0.013842380605638027, + 0.03209485486149788, + -0.03483825549483299, + 0.037021178752183914, + -0.010685993358492851, + -0.009874772280454636, + -0.009933770634233952, + 0.006836380809545517, + -0.007566479966044426, + -0.03666719049215317, + -0.012242062948644161, + -0.011593085713684559, + -0.0506201907992363, + -0.03740466386079788, + -0.03244883939623833, + -0.022138958796858788, + -0.007334175519645214, + 0.004472777713090181, + -0.009896896779537201, + 0.007492732256650925, + -0.03696218132972717, + -0.0013781539164483547, + 0.0006766321021132171, + 0.009211045689880848, + 0.016843898221850395, + -0.019085818901658058, + -0.000500099326018244, + 0.0010306194890290499, + -0.010014892555773258, + 0.009395414032042027, + -0.001433464465662837, + 0.06289175152778625, + -0.017640370875597, + -0.00015221917419694364, + -0.018333595246076584, + 0.008444073610007763, + 4.4104381231591105e-5, + 0.03221284970641136, + -0.037994641810655594, + -0.060826826840639114, + -0.0033444431610405445, + -0.010258258320391178, + 0.028584478422999382, + -0.03796514496207237, + -0.018540088087320328, + -0.0022990740835666656, + 0.03168186917901039, + -0.033392809331417084, + 0.01604742743074894, + 0.014365986920893192, + -0.025516588240861893, + -0.008753811940550804, + -0.03486775606870651, + 0.0547795444726944, + 0.0010536655317991972, + -0.03746366128325462, + 0.02643105573952198, + -0.012588675133883953, + 0.0064455196261405945, + 0.012441180646419525, + -0.007787721697241068, + 0.01710938848555088, + 0.044867899268865585, + 0.0069986251182854176, + 0.018023855984210968, + 0.016991393640637398, + 0.026077069342136383, + -0.0364312008023262, + 0.016180172562599182, + -0.0008079945691861212, + 0.011334970593452454, + -0.01505921222269535, + 0.0030512972734868526, + 0.007116620894521475, + 0.007795096840709448, + 0.010826113633811474, + -0.011777454055845737, + -0.008716939017176628, + -0.007603353355079889, + -0.023746652528643608, + 0.014218492433428764, + -0.004081916529685259, + -0.029926681891083717, + -0.010103389620780945, + -0.0180681049823761, + 0.019498804584145546, + 0.01563444174826145, + 0.014351237565279007, + 0.013989875093102455, + 0.007994214072823524, + -0.00021859179832972586, + 0.051505159586668015, + -0.0011357094626873732, + 0.038614120334386826, + 0.03852562606334686, + -0.01808285340666771, + -0.031799864023923874, + 0.05811292305588722, + 0.05790643393993378, + -0.03557572886347771, + 0.014410234987735748, + -0.007548043038696051, + 0.027286525815725327, + 0.014852719381451607, + 0.019056320190429688, + -0.03356980159878731, + -0.03368779644370079, + 0.00011868716683238745, + 0.03230134770274162, + -0.0075111691839993, + 0.008067961782217026, + -0.00851782038807869, + -0.03404178470373154, + 0.010715492069721222, + 0.02635730803012848, + -0.0029775500297546387, + -0.014572479762136936, + -0.017256883904337883, + 0.022891182452440262, + -0.013776008039712906, + -0.006194778718054295, + -0.0026936226058751345, + -0.009638780727982521, + -0.027640512213110924, + 0.027094783261418343, + 0.013370397500693798, + -0.006766320671886206, + -0.007293614558875561, + 0.03168186917901039, + -0.01818609982728958, + 0.01008126512169838, + 0.018009107559919357, + -0.028171494603157043, + 0.00016500972560606897, + -0.013613764196634293, + 0.01656365767121315, + -0.033363308757543564, + -0.0008038462838158011, + -0.0037518972530961037, + -0.00903405249118805, + -0.029838183894753456, + 0.018967822194099426, + -0.0362837053835392, + 0.013112281449139118, + 0.06501568108797073, + 0.005129129160195589, + 0.015132959932088852, + -0.027773257344961166, + -0.030973894521594048, + -0.017242133617401123, + 0.031327880918979645, + 0.02175547368824482, + -0.024513624608516693, + -0.027906004339456558, + 0.00018298564828000963, + -0.009233170188963413, + 0.0005028648301959038, + -0.06041384115815163, + -0.034484267234802246, + -0.019454555585980415, + 0.009196296334266663, + 0.0005120832938700914, + -0.01859908550977707, + -0.004358469508588314, + -0.04215399548411369, + 0.008259705267846584, + -0.023023927584290504, + 0.0692635253071785, + 0.008739062584936619, + 0.009985393844544888, + 0.03000042773783207, + -0.016991393640637398, + -0.014860094524919987, + -0.01499283965677023, + -0.02174072340130806, + -0.02379089966416359, + -0.013827631250023842, + 0.0197200458496809, + -0.028082996606826782, + -0.03256683796644211, + 0.021622728556394577, + -0.011216974817216396, + 0.0021718598436564207, + 0.00029107162845321, + 0.005685921758413315, + -0.012072443962097168, + -0.06153480336070061, + -0.04649034142494202, + 0.006688886322081089, + -0.0274635199457407, + 0.018997320905327797, + 0.004137227311730385, + 0.02073775976896286, + -0.00245763105340302, + 0.014329113066196442, + 0.034425269812345505, + -9.558349847793579e-5, + 0.014697849750518799, + 0.03669669106602669, + 0.010914609767496586, + 0.011216974817216396, + -0.032360345125198364, + -0.0024023205041885376, + -0.029720189049839973, + -0.015162458643317223, + 0.029941430315375328, + 0.0006333055207505822, + 0.006128406152129173, + 0.02185872010886669, + -0.03303882107138634, + 0.008008964359760284, + 0.018776079639792442, + 0.028672976419329643, + -0.00038924781256355345, + 0.006017785053700209, + 0.0029203956946730614, + 0.03932209685444832, + -0.025280596688389778, + 0.03920409828424454, + 0.020870504900813103, + 0.005287686362862587, + -0.003421877743676305, + 0.033451806753873825, + 0.003117669839411974, + 0.017728867009282112, + -0.013886628672480583, + 0.04000057280063629, + -0.03380579128861427, + 0.009675654582679272, + -0.0024650057312101126, + -0.004284721799194813, + 0.014469233341515064, + -0.03920409828424454, + 0.015096086077392101, + -0.02544284053146839, + -0.015767186880111694, + 0.004907887428998947, + -0.030295418575406075, + 0.014402860775589943, + -0.03159337118268013, + 0.03109188936650753, + 0.004719831515103579, + -0.0014749473193660378, + 0.005785481072962284, + 0.01868758350610733, + 0.0016335041727870703, + 0.024130137637257576, + 0.033953286707401276, + 0.004701394587755203, + 0.014756848104298115, + -0.02339266426861286, + 0.015162458643317223, + 0.025177350267767906, + -0.012942662462592125, + -0.0032614772208034992, + -0.035457734018564224, + -0.021888218820095062, + 0.000629618123639375, + -0.016873396933078766, + 0.00662988843396306, + -0.018348345533013344, + 0.01651941053569317, + 0.010221385397017002, + -0.0012500179000198841, + -0.011298096738755703, + 0.013879254460334778, + 0.012382183223962784, + 0.005586362909525633, + 0.02177022211253643, + -0.004251535516232252, + -0.0012610799167305231, + -0.03002992831170559, + 0.026799792423844337, + 0.004959510173648596, + 0.015354202128946781, + -0.019071068614721298, + -0.017876362428069115, + -0.005383557640016079, + 0.037050675600767136, + 0.008193332701921463, + -0.01011813897639513, + -0.0212982390075922, + 0.024528374895453453, + 0.008429324254393578, + -0.020870504900813103, + -0.006065720692276955, + 0.025000358000397682, + -0.028894217684864998, + 0.01398250088095665, + 0.056637976318597794, + -0.015103460289537907, + 0.04654933884739876, + -0.008296579122543335, + 0.010346755385398865, + 0.03672618791460991, + -0.005873977672308683, + -0.00022677314700558782, + 0.007559105288237333, + -0.05867340415716171, + 0.05171165242791176, + -0.02632780931890011, + 0.02166697569191456, + 0.016239169985055923, + -0.010250884108245373, + -0.014756848104298115, + -0.03244883939623833, + -0.0034329399932175875, + 0.020015034824609756, + -0.011003106832504272, + 0.02793550305068493, + -0.02532484568655491, + 0.005457304883748293, + 0.022197958081960678, + 0.030192172154784203, + 0.03619520738720894, + -0.02023627795279026, + -0.003421877743676305, + 0.0025184724945575, + -0.01267717219889164, + 0.014506107196211815, + 0.05955837294459343, + -0.010700742714107037, + 0.01855483651161194, + 0.006924877874553204, + 0.027242276817560196, + 0.04643134027719498, + 0.010029641911387444, + -0.029838183894753456, + -0.0011633647372946143, + -0.008643191307783127, + 0.006416020914912224, + 0.017242133617401123, + -0.03840762749314308, + -0.014107870869338512, + 0.017861612141132355, + 0.0014804783277213573, + -0.004579711239784956, + 0.036549195647239685, + -0.021003250032663345, + -0.02275843732059002, + -0.0011983946897089481, + 0.01372438482940197, + 0.01861383579671383, + 0.004542837850749493, + 0.019321810454130173, + 0.009771525859832764, + 0.04619535058736801, + -0.0003129653923679143, + -0.013385146856307983, + 0.03256683796644211, + 0.01660790666937828, + 0.009815774857997894, + 0.012242062948644161, + 0.010862987488508224, + -0.006493455730378628, + 0.012750919908285141, + -0.012271561659872532, + 0.019867541268467903, + -0.01613592356443405, + -0.02013303153216839, + 0.015767186880111694, + -0.02687354013323784, + -0.007064997684210539, + 0.0011338657932356, + 0.0487617589533329, + -0.02075250819325447, + -0.00152196129783988, + -0.017404379323124886, + 0.03053141012787819, + -0.004539150279015303, + 0.0140193747356534, + -0.010575372725725174, + 0.015103460289537907, + 0.0020723009947687387, + -0.02793550305068493, + 0.001644566305913031, + -0.026313060894608498, + -0.020295275375247, + 0.025133103132247925, + 0.017433878034353256, + -0.037021178752183914, + -0.003007048973813653, + 0.014447108842432499, + -0.02649005316197872, + -0.010435252450406551, + 0.019543051719665527, + -0.014933841302990913, + 0.03106239065527916, + 0.007219867315143347, + -0.0034569078125059605, + 0.027714259922504425, + 0.008208082057535648, + 0.03560522943735123, + -0.027050534263253212, + 0.011084228754043579, + -0.0004770532832480967, + 0.006670449394732714, + 0.007927841506898403, + 0.033451806753873825, + -0.0013938252814114094, + -0.03418928012251854, + -0.04466140642762184, + 0.007013374473899603, + 0.008458822965621948, + 0.012116692028939724, + -0.008038463070988655, + -0.004900512285530567, + 0.05017770826816559, + -0.008923430927097797, + -0.02123924158513546, + 0.007883593440055847, + -0.01716838777065277, + -0.014115246012806892, + 0.001272142049856484, + -0.016312917694449425, + 0.02283218502998352, + -0.02225695550441742, + 0.02855497971177101, + -0.008075336925685406, + 0.0063754599541425705, + -0.01083348784595728, + 0.019484054297208786, + 0.012728795409202576, + 0.007780347019433975, + -0.001668534125201404, + 0.03516274318099022, + 0.028230492025613785, + 0.014122620224952698, + -0.017286382615566254, + 0.0695585161447525, + 0.011976572684943676, + -0.025133103132247925, + -0.002570095704868436, + -0.004937386140227318, + -0.010450001806020737, + -0.017522374168038368, + 0.03321581333875656, + -0.008584193885326385, + 0.00960928201675415, + -0.02538384310901165, + -0.019808541983366013, + -0.005826042033731937, + 0.015103460289537907, + -0.011275972239673138, + 0.05584150552749634, + 0.04914524406194687, + -0.0009605594677850604, + 0.027271775528788567, + -0.003643119940534234, + 0.015811435878276825, + 0.033894289284944534, + -0.004461715463548899, + -0.040590550750494, + 0.03115088678896427, + -0.006360710132867098, + -0.045339882373809814, + -0.022035712376236916, + -0.005910851527005434, + -0.01960204914212227, + -0.0004950292059220374, + -0.0038016766775399446, + 0.032389841973781586, + -0.0342777743935585, + 0.025133103132247925, + 0.03115088678896427, + 0.005250812508165836, + -0.004749330226331949, + -0.0057264831848442554, + 0.015501696616411209, + 0.012234687805175781, + 0.02441037818789482, + 0.00011108197213616222, + 0.0056969840079545975, + 0.034484267234802246, + -0.04988271743059158, + 0.017330631613731384, + 0.015413199551403522, + 0.021047499030828476, + -0.02637205831706524, + 0.04719831421971321, + 0.04758179932832718, + -0.021504731848835945, + 0.006305399816483259, + 0.011983946897089481, + 0.017802614718675613, + -0.009270044043660164, + 0.04103303328156471, + -0.0206492617726326, + -0.02952844463288784, + -0.025029856711626053, + 0.03474975749850273, + 0.009742027148604393, + -0.009520784951746464, + 0.013495768420398235, + -0.004111415706574917, + 0.016740651801228523, + 0.011688957922160625, + 0.009447037242352962, + 0.005656423047184944, + 0.0108998604118824, + 0.022596193477511406, + -0.0212244912981987, + -0.005730170290917158, + -0.003486406756564975, + -0.013871879316866398, + 0.03265533223748207, + 0.007109246216714382, + 0.005656423047184944, + 0.010376254096627235, + -0.021947216242551804, + 0.038584623485803604, + 0.0027194342110306025, + 0.0011255692224949598, + -0.043835435062646866, + 0.0015247267438098788, + -0.016814399510622025, + 0.029174458235502243, + -0.026608049869537354, + -0.024174386635422707, + -0.026814542710781097, + -0.01974954456090927, + -0.00687694177031517, + -0.014911717735230923, + -0.00545361777767539, + 0.007632852531969547, + 0.05283261463046074, + 0.04336345195770264, + 0.020619763061404228, + -0.0015173520660027862, + -0.015885183587670326, + 0.008606317453086376, + -0.02076725848019123, + -0.0010204791324213147, + -0.0187170822173357, + 0.014837970025837421, + -0.0008204394252970815, + 0.0185695867985487, + 0.01011076383292675, + 0.0013624825514853, + -0.04236048832535744, + -0.008296579122543335, + 0.019277561455965042, + -0.012057694606482983, + -0.0023138236720114946, + 0.00291486456990242, + -0.024528374895453453, + 0.02119499258697033, + -0.016371915116906166, + 0.0027046846225857735, + -0.0032043231185525656, + 0.03206535428762436, + -0.007846719585359097, + -0.0202215276658535, + -0.00928479339927435, + 0.021327737718820572, + -0.04828977584838867, + -0.020398521795868874, + -0.0003668931603897363, + 0.02023627795279026, + -0.00764022720977664, + 0.009181546978652477, + -0.0434519499540329, + 0.009837898425757885, + 0.03147537633776665, + -0.017935359850525856, + -0.0024650057312101126, + -0.013296649791300297, + 0.012234687805175781, + -0.008680065162479877, + -0.035044748336076736, + -0.03466126322746277, + 0.002103643724694848, + -0.013016410171985626, + -0.0029388326220214367, + -0.021106496453285217, + -0.01809760369360447, + 0.0025516587775200605, + 0.0021183930803090334, + -0.023569658398628235, + -0.039646584540605545, + 0.017433878034353256, + 0.01923331245779991, + -0.028613978996872902, + 0.014085747301578522, + 0.029159707948565483, + -0.003952858969569206, + 0.01861383579671383, + 0.014026748947799206, + 0.022905932739377022, + -0.0032411967404186726, + -0.0017920610262081027, + 0.03834863007068634, + 0.031327880918979645, + 0.01499283965677023, + -0.021430984139442444, + -0.024734865874052048, + -0.004100353457033634, + 0.008753811940550804, + -0.0006711010355502367, + 0.00016477926692459732, + 0.01170370727777481, + -0.007876218296587467, + 0.005590050481259823, + 0.00398973235860467, + 0.0029240830335766077, + 0.010752365924417973, + 0.012345309369266033, + -0.014255366288125515, + 0.005136503838002682, + -0.004052417818456888, + 0.030295418575406075, + -0.01422586664557457, + 0.007972090505063534, + -0.00044179282849654555, + -0.016829149797558784, + -0.017920609563589096, + -0.013363022357225418, + -0.013768632896244526, + 0.00700231222435832, + -0.0004950292059220374, + -0.0072530535981059074, + 0.012271561659872532, + 0.005792855750769377, + -0.023186171427369118, + 0.035280741751194, + 0.01372438482940197, + 0.004719831515103579, + -0.0008126038010232151, + 0.025531338527798653, + -0.005925600882619619, + -0.02069351077079773, + 0.014845345169305801, + 0.03168186917901039, + 0.0018427623435854912, + 0.019793793559074402, + 0.009734652005136013, + 0.004461715463548899, + -0.012898414395749569, + 0.009343791753053665, + 0.007334175519645214, + 0.010774490423500538, + -0.032950323075056076, + 0.00935116596519947, + -0.04451391100883484, + 0.008163833059370518, + -0.015722937881946564, + -0.005685921758413315, + -0.016681654378771782, + -0.00960190687328577, + -0.01194707304239273, + 0.01192494947463274, + 0.013613764196634293, + -0.026726044714450836, + -0.014299614354968071, + -0.013613764196634293, + -0.012286311015486717, + 0.012573925778269768, + 0.029248205944895744, + 0.004480152390897274, + -0.014034124091267586, + -0.03938109427690506, + -0.019793793559074402, + 0.021475233137607574, + -0.0341302827000618, + 0.008318702690303326, + 0.0042699724435806274, + -0.006113656796514988, + 0.0013799975859001279, + -0.031209886074066162, + -0.007883593440055847, + 0.021637476980686188, + 0.015147709287703037, + -0.002378352452069521, + -0.02178497239947319, + -0.015339451842010021, + -0.03380579128861427, + -0.024498874321579933, + -0.02902696281671524, + -0.012382183223962784, + -0.018967822194099426, + 0.0312688834965229, + 0.013009035028517246, + 0.0027452458161860704, + 0.016681654378771782, + -0.009616656228899956, + 0.008082711137831211, + -0.005081193521618843, + -0.020487017929553986, + -0.005918226204812527, + 0.00507381884381175, + -0.004612897988408804, + 0.03684418275952339, + 0.038142137229442596, + -0.00541674392297864, + -0.02584107778966427, + -0.0278912540525198, + 0.033982787281274796, + -0.023466411978006363, + -0.0040708547458052635, + 0.019970787689089775, + 0.0007688162731938064, + -0.002715746872127056, + -0.0030605157371610403, + -0.002481598872691393, + -0.007669725921005011, + 0.038171637803316116, + 0.0028448046650737524, + -0.01553119532763958, + -0.014048873446881771, + 0.009004553779959679, + -0.006176341790705919, + -0.007031811401247978, + -0.015073961578309536, + -0.028672976419329643, + -0.07038448750972748, + -0.00738579872995615, + -0.0018114197300747037, + 0.03407128155231476, + -0.01867283321917057, + -0.008326077833771706, + -0.002015146892517805, + 0.0134441452100873, + -0.006600389257073402, + 0.03300932049751282, + 0.01036887988448143, + -0.023702403530478477, + -0.01350314263254404, + 0.03531023859977722, + -0.013635887764394283, + 0.02756676636636257, + -0.0011670520761981606, + -0.009734652005136013, + 0.003283601487055421, + -0.020973751321434975, + -0.013599013909697533, + 0.004340032581239939, + -0.023643406108021736, + -0.002026208909228444, + -0.01373175997287035, + 0.00853257067501545, + -0.005317185074090958, + 0.017374878749251366, + -0.002114705741405487, + -0.01963154971599579, + 0.002302761422470212, + 0.0035749035887420177, + -0.01660790666937828, + 0.019897039979696274, + 0.01267717219889164, + -0.010796613991260529, + 0.02222745679318905, + -0.005287686362862587, + 0.033982787281274796, + -0.010921984910964966, + 0.013281900435686111, + 0.023068176582455635, + 0.00304392259567976, + -0.018790828064084053, + -0.010007517412304878, + -0.027183279395103455, + 0.006581952329725027, + -0.027684761211276054, + 0.0077729723416268826, + 0.009196296334266663, + 0.011364469304680824, + -0.003541717305779457, + 0.011504589579999447, + -0.01817135140299797, + -0.0016132236924022436, + 0.017212634906172752, + 0.021475233137607574, + -0.01960204914212227, + 0.020501768216490746, + -0.00291855214163661, + 0.04964672774076462, + 0.010929360054433346, + -0.012293686158955097, + -0.007083434611558914, + -0.010199260897934437, + 0.01867283321917057, + -0.017817363142967224, + 0.010722867213189602, + 0.021534230560064316, + 0.003578590927645564, + 0.017846861854195595, + -0.002278793603181839, + 0.021504731848835945, + 0.04356994479894638, + 0.01426274050027132, + -0.0030254856683313847, + 0.014144744724035263, + 0.01805335469543934, + -0.010774490423500538, + 0.005538427270948887, + -0.01812710240483284, + -0.005711733363568783, + -0.0033407555893063545, + 0.013783383183181286, + 0.003410815726965666, + -0.022655190899968147, + 0.00853257067501545, + -0.025796828791499138, + -0.002675185678526759, + 0.01170370727777481, + 0.029248205944895744, + 0.022979678586125374, + 0.035988714545965195, + 0.024587372317910194, + -0.0023599157575517893, + 0.016681654378771782, + 0.02325991913676262, + 0.010531123727560043, + -0.004760392475873232, + 0.0022861682809889317, + 0.013045908883213997, + 0.012242062948644161, + 0.009122549556195736, + -0.03457276523113251, + 0.0035214368253946304, + -0.014660976827144623, + -0.010132888332009315, + 0.010250884108245373, + -0.008584193885326385, + -0.03206535428762436, + 0.0207967571914196, + 0.013812881894409657, + -0.027596265077590942, + 0.014247991144657135, + 0.004203599877655506, + 0.011305470950901508, + -0.00881281029433012, + -0.020472269505262375, + -0.0007715818355791271, + -0.008665315806865692, + -0.009218420833349228, + 0.026268811896443367, + 0.006331211421638727, + -0.04180000722408295, + -0.032360345125198364, + -0.001636269735172391, + -0.008200706914067268, + -0.0008941868436522782, + -0.015398450195789337, + 0.02955794520676136, + -0.007326800841838121, + -0.007942591793835163, + 0.0006448285421356559, + 0.008753811940550804, + -0.009454412385821342, + 0.01855483651161194, + 0.045841362327337265, + -0.03000042773783207, + -0.012352683581411839, + -0.02430713176727295, + 0.021416235715150833, + -0.0027452458161860704, + 0.0030623592901974916, + 0.017360130324959755, + -0.0016971112927421927, + -0.010132888332009315, + 0.015870433300733566, + -0.02702103555202484, + -0.004387968219816685, + -0.011098979040980339, + -0.007684475742280483, + 0.014668351039290428, + 0.01709464006125927, + -0.02792075276374817, + -0.005217626225203276, + -0.015457447618246078, + 0.0004560813831631094, + 0.006578265223652124, + 0.0031785115133970976, + 0.00145743228495121, + 0.014461858198046684, + 0.0037979893386363983, + -0.0003906305937562138, + -0.01918906532227993, + 0.019897039979696274, + -0.020531266927719116, + -0.010885111056268215, + -0.008871807716786861, + -0.024675868451595306, + -0.017537124454975128, + -0.010096014477312565, + 0.018997320905327797, + -0.014026748947799206, + -0.03144587576389313, + -0.0013744665775448084, + -0.0007950887666083872, + -0.020310023799538612, + -0.016283418983221054, + 0.020472269505262375, + 0.005011133383959532, + 0.015472197905182838, + 0.007105558644980192, + 0.01162995956838131, + 0.04622484743595123, + 7.749234646325931e-5, + -0.004262597765773535, + 0.0071276831440627575, + 0.0015247267438098788, + -0.003893860848620534, + -0.01818609982728958, + 0.00532824732363224, + 0.016947144642472267, + -0.010420503094792366, + -0.029100710526108742, + 0.020295275375247, + -0.014240616001188755, + 0.040177565068006516, + 0.0032430405262857676, + -0.016902895644307137, + -0.013075408525764942, + -0.009483911097049713, + -0.012588675133883953, + 0.023967893794178963, + 0.0010241665877401829, + 0.0038127389270812273, + 0.008067961782217026, + -0.033923789858818054, + 0.010708117857575417, + 0.002879834733903408, + -0.0003466126217972487, + 0.004712456837296486, + 0.005379870533943176, + -0.0028060872573405504, + -0.00038602136191911995, + 0.013827631250023842, + -0.006681511178612709, + 0.008945555426180363, + -0.01920381374657154, + 0.005984598770737648, + -0.011143227107822895, + 0.038555122911930084, + -0.003602558746933937, + -0.008694814518094063, + -0.023200921714305878, + 0.010509000159800053, + 0.023938395082950592, + -0.014218492433428764, + -0.053599584847688675, + -0.005309810396283865, + 0.030855897814035416, + -0.022197958081960678, + 0.0032559463288635015, + 0.015604943037033081, + -0.018790828064084053, + 0.011098979040980339, + 0.009955894201993942, + 0.036047711968421936, + -0.01812710240483284, + 0.006714697927236557, + -0.0006443675956688821, + -0.028333738446235657, + 0.01087036170065403, + -0.019056320190429688, + 0.009129923768341541, + -0.0021995152346789837, + 0.02321567013859749, + -0.03519224375486374, + -0.002686247928068042, + -0.015855683013796806, + 0.03539873659610748, + 0.015811435878276825, + -0.019926538690924644, + -0.03209485486149788, + 0.022566694766283035, + 0.02125399187207222, + 0.010236134752631187, + -0.007691850420087576, + -0.028245240449905396, + 0.019469304010272026, + 0.017994357272982597, + 0.009454412385821342, + 0.013333523645997047, + -0.010044391267001629, + -0.0041962251998484135, + 0.02699153684079647, + -0.016829149797558784, + 0.0009882147423923016, + -0.015427948907017708, + 0.025265848264098167, + -0.015132959932088852, + -0.0033573489636182785, + 0.0012767512816935778, + -0.01974954456090927, + -0.033392809331417084, + 0.022640440613031387, + 0.011681582778692245, + -0.0009305995772592723, + 0.005973536521196365, + 0.007824596017599106, + 0.006301712244749069, + -0.0049705724231898785, + -0.00041160249384120107, + -0.029203956946730614, + 0.011615210212767124, + 0.007503794506192207, + 0.010442626662552357, + -0.0034550640266388655, + -0.005143878981471062, + 0.026681797578930855, + 0.003882798831909895, + 0.027094783261418343, + 0.006688886322081089, + 0.024985607713460922, + -0.011541462503373623, + 0.019572550430893898, + 0.002153423149138689, + -0.007994214072823524, + 0.008222831413149834, + -0.022124210372567177, + 0.001808654167689383, + 0.020634513348340988, + 0.007625477854162455, + -0.009660905227065086, + 0.007489045150578022, + 0.004321595653891563, + -0.00020937337831128389, + 0.0103246308863163, + -0.002573783043771982, + 0.007898342795670033, + 0.0017450470477342606, + -0.005741232540458441, + -0.014749472960829735, + -0.025000358000397682, + -0.011836452409625053, + -0.008473572321236134, + -0.027537265792489052, + 0.01033200602978468, + 0.01393825188279152, + -0.011939698830246925, + -0.022596193477511406, + -0.023938395082950592, + -0.008230206556618214, + 0.02230120450258255, + 0.017802614718675613, + -0.043304454535245895, + -0.006854817736893892, + -0.013672761619091034, + -0.0048710135743021965, + 0.002343322616070509, + -0.03979407995939255, + -0.02333366684615612, + 0.02634255960583687, + -0.01606217585504055, + 0.014424985274672508, + 0.021888218820095062, + -0.0023838835768401623, + 0.0048452019691467285, + 0.00415566423907876, + -0.010634370148181915, + 0.0015818809624761343, + 0.02321567013859749, + 0.016814399510622025, + -0.022183207795023918, + 0.025221599265933037, + -0.016430912539362907, + 0.020973751321434975, + -0.014188993722200394, + 0.018776079639792442, + 0.04914524406194687, + 0.003390535246580839, + -0.01271404605358839, + 0.008097460493445396, + 0.00927741825580597, + 0.011998696252703667, + 0.025796828791499138, + 0.02477911487221718, + 0.0078024715185165405, + 0.019085818901658058, + -0.03885011374950409, + -0.03563472628593445, + -0.013333523645997047, + -0.04454340785741806, + 0.007529606111347675, + -0.0055679259821772575, + -0.004163038916885853, + 0.006368085276335478, + 0.028835220262408257, + -0.007588603999465704, + -0.0011283346684649587, + -0.03306831791996956, + 0.008252330124378204, + -0.015177207998931408, + 0.009144673123955727, + -0.004476465284824371, + -0.029838183894753456, + 0.00985264778137207, + -0.016696404665708542, + 0.017404379323124886, + -0.015000213868916035, + 0.013842380605638027, + 0.001946930424310267, + 0.023451661691069603, + -0.02641630731523037, + -0.022994428873062134, + -0.006412333343178034, + -0.003158231033012271, + 0.013001660816371441, + 0.0010665713343769312, + -0.012780418619513512, + -0.008104835636913776, + -0.0011818015482276678, + 0.006478705909103155, + 0.007466920651495457, + -0.0012822822900488973, + -0.009343791753053665, + 0.01612117514014244, + -0.03430727496743202, + 0.02691778913140297, + -0.032802827656269073, + 0.0056490483693778515, + 0.010221385397017002, + 0.011091603897511959, + 0.010354130528867245, + 0.017492875456809998, + -0.0042441608384251595, + 0.020959001034498215, + 0.019056320190429688, + 0.017920609563589096, + -0.0010610402096062899, + -0.026298310607671738, + -0.0015357888769358397, + 0.017861612141132355, + -0.008613692596554756, + 0.0029757062438875437, + -0.022153709083795547, + -0.02174072340130806, + -0.0030088925268501043, + 0.01296478696167469, + -0.00245763105340302, + -0.009845273569226265, + -0.025221599265933037, + 0.007994214072823524, + 0.013960376381874084, + 0.00018448365153744817, + -0.0019045257940888405, + 0.00035928795114159584, + -0.025280596688389778, + 0.0040155439637601376, + 0.007064997684210539, + 0.03536923602223396, + 0.015147709287703037, + -0.009933770634233952, + 0.02231595292687416, + -0.021003250032663345, + 0.016740651801228523, + -0.021032748743891716, + 0.008886558003723621, + -0.02432188205420971, + 0.014727349393069744, + -0.016312917694449425, + -0.0029609566554427147, + -0.009837898425757885, + -0.0142701156437397, + -0.023628655821084976, + -0.00041298524593003094, + -0.00532455975189805, + 0.006021472625434399, + -0.007846719585359097, + 0.006648324895650148, + 0.04038405790925026, + -0.0036615566350519657, + -0.023923644796013832, + 0.01651941053569317, + -0.013363022357225418, + 0.004417467396706343, + 0.0072751776315271854, + 0.010509000159800053, + -0.009542909450829029, + -0.031829364597797394, + 0.016976643353700638, + -0.0014952277997508645, + 0.0055974251590669155, + -0.007323113270103931, + 0.009498660452663898, + -0.016430912539362907, + 0.012618174776434898, + 0.03129838407039642, + -0.039558086544275284, + -0.030678903684020042, + 0.005095942877233028, + -0.03826013207435608, + -0.009926395490765572, + -0.028864718973636627, + 0.004417467396706343, + 0.011843826621770859, + -0.019277561455965042, + 0.006829006131738424, + -0.0019930226262658834, + 0.017935359850525856, + -0.005781793501228094, + 0.006862192414700985, + -0.018245099112391472, + -0.020029785111546516, + 0.0070502483285963535, + 0.024720117449760437, + -0.005711733363568783, + 0.012728795409202576, + 0.0032780703622847795, + -0.00675157131627202, + 0.0361362099647522, + -0.013200778514146805, + 0.022581443190574646, + 0.01351051777601242, + 0.006305399816483259, + -0.0048673260025680065, + -0.02694728784263134, + -0.0028687724843621254, + -0.006530329119414091, + 0.0038238009437918663, + 0.005873977672308683, + 0.00012018516281386837, + -0.008879182860255241, + -0.021416235715150833, + -0.01718313619494438, + -0.005630611442029476, + -0.02430713176727295, + 0.004317908082157373, + 0.018348345533013344, + -0.0034569078125059605, + -0.026062319055199623, + -0.011902824975550175, + -0.01011076383292675, + -0.012846791185438633, + 0.00621690321713686, + -0.006508205085992813, + -0.0031766677275300026, + 0.0012537052389234304, + -0.005921913310885429, + -0.005335622001439333, + -0.01607692614197731, + -0.011858576908707619, + -0.012625548988580704, + -0.0031232009641826153, + -0.007559105288237333, + 0.007573854643851519, + -0.0015883338637650013, + 0.001388294156640768, + -0.0007430047262459993, + -0.004517026245594025, + -0.0009799181716516614, + -0.002695466158911586, + 0.0031619183719158173, + 0.01397512573748827, + 0.010413127951323986, + 0.010346755385398865, + 0.03303882107138634, + -0.00986739806830883, + -0.0030973893590271473, + -0.007817220874130726, + -0.0003311717591714114, + -0.005733857862651348, + -0.006581952329725027, + 0.00662620086222887, + 0.0018529025837779045, + -0.022448698058724403, + 0.06749358773231506, + 0.008230206556618214, + 0.004528088495135307, + 0.007540668360888958, + 0.007662351243197918, + -0.009373290464282036, + -0.019572550430893898, + 0.01606217585504055, + 0.006478705909103155, + -0.0011799578787758946, + 0.006493455730378628, + -0.005184439942240715, + 0.0054941787384450436, + 0.0003376246604602784, + -0.037994641810655594, + 0.003460595151409507, + 0.0008964914013631642, + -0.0014316207962110639, + -0.014690475538372993, + 0.012234687805175781, + 0.02119499258697033, + -0.030708404257893562, + -0.01448398269712925, + 0.04504489153623581, + -0.005999348126351833, + 0.022138958796858788, + 0.002378352452069521, + -0.011003106832504272, + 0.02076725848019123, + 0.015147709287703037, + 0.0005328247207216918, + -0.008008964359760284, + -0.006711010355502367, + 0.008798060938715935, + -0.01059012208133936, + 0.006652012467384338, + 0.0050221956335008144, + 0.026091817766427994, + 0.006003035698086023, + 0.007654976565390825, + 0.001272142049856484, + -0.003479032078757882, + 0.017905861139297485, + 0.009122549556195736, + -0.028407486155629158, + -0.016357166692614555, + 0.0017819207860156894, + -0.0049189492128789425, + 0.0027950252406299114, + 0.012832041829824448, + -0.0048710135743021965, + -0.045369379222393036, + -0.0072493660263717175, + 0.008665315806865692, + 0.010951483622193336, + -0.002710215747356415, + 0.01325977686792612, + -0.029897183179855347, + 0.013451519422233105, + 0.01499283965677023, + -0.021150745451450348, + -0.009719902649521828, + -0.02118024416267872, + -0.016342416405677795, + -0.03103289194405079, + 0.003927047364413738, + -0.019956037402153015, + -0.006958064157515764, + 0.007861468940973282, + -0.010671244002878666, + -0.01343677006661892, + 0.008834934793412685, + 0.004480152390897274, + -0.029838183894753456, + 0.010811364278197289, + 0.030914895236492157, + 0.01317865401506424, + 0.016386665403842926, + -0.004612897988408804, + 0.004207287449389696, + 0.007876218296587467, + 0.005151253659278154, + -0.027537265792489052, + -0.0186433345079422, + 0.0009333650814369321, + -0.025560837239027023, + 0.01873183064162731, + -0.016268668696284294, + 0.002588532632216811, + -0.008694814518094063, + 0.009144673123955727, + -0.02016253024339676, + 0.004959510173648596, + -0.00621690321713686, + -0.008289203979074955, + 0.004251535516232252, + -0.0019266499439254403, + -0.005892414599657059, + -0.0021700162906199694, + -0.0036855246871709824, + 0.015914682298898697, + 0.008569443598389626, + -0.009631406515836716, + 0.005877665244042873, + -0.008724313229322433, + -0.00043257439392618835, + 0.025251097977161407, + -0.009388039819896221, + -0.02436612918972969, + -0.013584264554083347, + -0.011239098384976387, + -0.00956503301858902, + 0.0070207491517066956, + 0.014100496657192707, + -0.007529606111347675, + 0.001420558663085103, + -0.0013763102469965816, + -0.022537196055054665, + -0.015324702486395836, + -0.007544355466961861, + -0.00884968414902687, + 0.005239750258624554, + 0.005409369245171547, + -0.014978090301156044, + 0.013635887764394283, + 0.004288409370929003, + -0.018333595246076584, + -0.004653458949178457, + -0.013746509328484535, + 0.008119584992527962, + 0.00621690321713686, + 0.0012454086681827903, + 0.03820113465189934, + -0.00466083362698555, + 0.005011133383959532, + -0.010029641911387444, + 0.00877593643963337, + 0.0020962688140571117, + 0.02384989894926548, + -0.02955794520676136, + 0.012514928355813026, + 0.015000213868916035, + 0.004594461061060429, + 0.03368779644370079, + 0.0024115389678627253, + 0.002625406254082918, + 0.012234687805175781, + -0.02019202895462513, + 0.006489768158644438, + -0.01768461801111698, + 0.019292311742901802, + -0.017802614718675613, + -0.005936663132160902, + -0.010936734266579151, + -0.004885762929916382, + -0.0015698970528319478, + -0.023156672716140747, + 0.03318631649017334, + -0.016239169985055923, + 0.0036578692961484194, + -0.004830452613532543, + 0.0034587515983730555, + -0.007559105288237333, + -0.00802371371537447, + 0.002879834733903408, + 0.032891325652599335, + 0.013908753171563148, + 0.02334841713309288, + 0.007883593440055847, + -0.001528414199128747, + -0.02334841713309288, + -0.010059140622615814, + -0.0005245281499810517, + -0.03501524776220322, + 0.030973894521594048, + -0.01084086298942566, + 0.003434783546254039, + 0.008569443598389626, + -0.014719974249601364, + 0.013702260330319405, + -0.024572622030973434, + -0.005626923870295286, + 0.01858433708548546, + -0.010037016123533249, + 0.008259705267846584, + -0.018525337800383568, + 0.004458028357475996, + -0.012271561659872532, + -0.012559176422655582, + 0.006578265223652124, + -0.01505921222269535, + 0.0016307386104017496, + -0.0018621210474520922, + -0.0051991892978549, + -0.01910056732594967, + -0.02752251736819744, + 0.008997178636491299, + 0.023481162264943123, + 0.02277318760752678, + -0.0015238049672916532, + -0.013554765842854977, + 0.018363093957304955, + 0.017301132902503014, + 0.01564919203519821, + -0.01163733471184969, + 0.004358469508588314, + 0.004343719687312841, + -0.006563515402376652, + 0.003794301999732852, + 0.012743544764816761, + -0.011312846094369888, + -0.01368751097470522, + 0.009941144846379757, + 0.022374950349330902, + 0.011047355830669403, + 0.003397909924387932, + -0.007595978677272797, + 0.01610642485320568, + -0.0017985139274969697, + -0.005822354461997747, + 0.013031159527599812, + 0.00403029378503561, + -0.010287757962942123, + 0.007854094728827477, + 0.008569443598389626, + -0.01059012208133936, + -0.0023838835768401623, + 0.0008402590756304562, + 0.022183207795023918, + 0.002597751095890999, + 0.028274741023778915, + -0.00337578565813601, + -0.02442512847483158, + 0.03557572886347771, + -0.015914682298898697, + 0.025619834661483765, + 0.013776008039712906, + -0.006165280006825924, + 0.0003802598512265831, + 0.009365915320813656, + -0.026667047291994095, + 0.004240473732352257, + -0.028363237157464027, + -0.006784757599234581, + -0.005851853638887405, + -0.017301132902503014, + 0.007913092151284218, + -0.005877665244042873, + 0.0031545436941087246, + -2.5753963200259022e-5, + -0.02171122469007969, + -0.0057486072182655334, + 0.002713903086259961, + 0.03253733739256859, + 0.02587057650089264, + -0.011939698830246925, + -0.01480847131460905, + 0.0016952676232904196, + -0.003604402532801032, + -0.02014777995646, + -0.003960233647376299, + -0.0035435608588159084, + 0.008798060938715935, + -0.005173377692699432, + 0.013827631250023842, + 0.013930877670645714, + -0.015663940459489822, + 0.002026208909228444, + 0.025074103847146034, + -0.00027194342692382634, + 0.014247991144657135, + -0.0007231851341202855, + 0.002942519960924983, + 0.017242133617401123, + 0.00270837196148932, + -0.009550283662974834, + 0.02339266426861286, + -0.014461858198046684, + 0.00440271757543087, + 0.009432287886738777, + 0.017448626458644867, + -0.005298748146742582, + 0.006117343902587891, + -0.027330774813890457, + -0.0036984304897487164, + -0.022610941901803017, + -0.0021423608995974064, + 0.0023875709157437086, + 0.00881281029433012, + 0.012640298344194889, + -0.009978018701076508, + -0.023672904819250107, + 0.008547320030629635, + -0.024513624608516693, + 0.027640512213110924, + 0.013200778514146805, + -0.005442555528134108, + -0.005984598770737648, + -0.009373290464282036, + 0.002479755086824298, + 0.006180029362440109, + -0.007898342795670033, + -0.0026161877904087305, + -0.0212982390075922, + 0.005195502191781998, + 0.003307569306343794, + 0.03622470796108246, + 0.026150817051529884, + -0.006161592435091734, + 0.025752579793334007, + -0.0010748679051175714, + -0.004664520733058453, + 0.018481090664863586, + 0.0047714547254145145, + -0.00045907736057415605, + 0.008702189661562443, + -0.011357094161212444, + 0.019439805299043655, + 0.0047714547254145145, + 0.0029720189049839973, + -0.004255223087966442, + 0.019292311742901802, + 0.017950108274817467, + -0.002394945826381445, + 0.007116620894521475, + 0.017478125169873238, + 0.02076725848019123, + 0.006039909087121487, + 0.011342344805598259, + -0.031829364597797394, + 0.019026819616556168, + -0.0038385505322366953, + -0.010885111056268215, + -0.011106353253126144, + -0.008739062584936619, + 0.013053284026682377, + -0.023746652528643608, + -0.006139468401670456, + -0.012470679357647896, + 0.01194707304239273, + -0.01194707304239273, + -0.0037389914505183697, + -0.013289275579154491, + 0.005936663132160902, + 0.004078229423612356, + 0.017728867009282112, + 0.007400548085570335, + -0.005464680027216673, + 0.015383700840175152, + 0.011475089937448502, + 0.011770079843699932, + 0.022419199347496033, + 0.013599013909697533, + -0.012551802210509777, + -0.0033315373584628105, + 0.005556864198297262, + 0.012271561659872532, + 0.010391004383563995, + 0.0009089363156817853, + -0.0014417610364034772, + -0.007935216650366783, + 0.006902753375470638, + -0.0064270831644535065, + -0.0018307783175259829, + -0.007282552309334278, + 0.031209886074066162, + -0.00529506104066968, + 0.0016123017994686961, + -0.02907121181488037, + 0.004760392475873232, + 0.0025147851556539536, + -0.01603267714381218, + -0.03209485486149788, + 0.0005305201048031449, + -0.022640440613031387, + 0.007713974453508854, + -0.0038385505322366953, + 0.030649404972791672, + -0.0010674931108951569, + 0.005195502191781998, + 0.014056247659027576, + 0.015265705063939095, + 0.003373942105099559, + -0.015236206352710724, + 0.009255294688045979, + 0.01373175997287035, + -0.015236206352710724, + 0.017787864431738853, + -0.005980911199003458, + 0.002557189902290702, + -0.008326077833771706, + -0.007736098952591419, + 0.006183716468513012, + -0.016681654378771782, + -0.015590193681418896, + 0.01036150474101305, + -0.026224562898278236, + 0.01065649464726448, + -0.00011880239617312327, + 0.012352683581411839, + -0.009329041466116905, + -0.007441109046339989, + 0.00804583728313446, + 0.007677101064473391, + -0.0026917788200080395, + -0.027330774813890457, + 0.00264753052033484, + 0.009889521636068821, + 0.027714259922504425, + -0.016209671273827553, + -0.005051694810390472, + 0.008576818741858006, + -0.0186433345079422, + -0.0003526046057231724, + 0.01651941053569317, + 0.014196367934346199, + 0.008665315806865692, + -0.006493455730378628, + 0.013163904659450054, + 0.013038534671068192, + 0.01400462444871664, + -0.017271632328629494, + -0.0010103388922289014, + 0.003346286714076996, + -0.0016067707911133766, + -0.00859156809747219, + 0.04395342990756035, + 0.012824666686356068, + 0.006762633565813303, + 0.0056748599745333195, + -0.0021995152346789837, + -0.030295418575406075, + -0.02647530473768711, + 0.019292311742901802, + -0.015929430723190308, + -0.004317908082157373, + 0.013857129961252213, + -0.0005549489287659526, + 0.005435180850327015, + 0.009343791753053665, + -0.034926753491163254, + -0.0032909761648625135, + -0.015413199551403522, + -0.014432359486818314, + 0.02702103555202484, + -0.006548766046762466, + 0.015162458643317223, + 0.0022972305305302143, + 0.016430912539362907, + 0.012374808080494404, + 0.003416346851736307, + -0.0005374339525587857, + 0.021445734426379204, + 0.016489911824464798, + -0.024587372317910194, + -0.011150602251291275, + 0.0006171732675284147, + 0.003912298008799553, + 0.025501839816570282, + -0.03533973917365074, + -0.006316462066024542, + 0.0025922199711203575, + 0.009719902649521828, + -0.016268668696284294, + -0.0030900146812200546, + 0.00776559766381979, + 0.01868758350610733, + 0.01563444174826145, + -0.01295741181820631, + 0.0064492071978747845, + -0.022596193477511406, + 0.02128349058330059, + 0.017817363142967224, + -0.011681582778692245, + 0.020354272797703743, + 0.020826255902647972, + 0.0002700997283682227, + 0.019911788403987885, + -0.0006738665397278965, + -0.009926395490765572, + -0.0012343465350568295, + 0.00931429211050272, + -0.01712413877248764, + 0.003289132611826062, + 0.009904270991683006, + -0.013016410171985626, + 0.0019967099651694298, + 0.0023322603665292263, + 0.00191005680244416, + -0.0014297770103439689, + 0.02325991913676262, + 0.022994428873062134, + 0.006150530185550451, + -0.0007162712863646448, + -0.005730170290917158, + -0.01214619167149067, + 0.011305470950901508, + 0.019970787689089775, + -0.004907887428998947, + -0.014660976827144623, + 0.006758945994079113, + 0.000782643910497427, + -0.00827445462346077, + 0.006032534409314394, + 0.016268668696284294, + 0.0026567489840090275, + 0.0006780148250982165, + 0.00344031467102468, + 0.027758508920669556, + 0.015501696616411209, + 0.007433734368532896, + 0.007356300018727779, + -0.01600317843258381, + -0.002179234754294157, + -0.007824596017599106, + 0.01267717219889164, + 0.006648324895650148, + -0.010634370148181915, + 0.012618174776434898, + -0.011526713147759438, + -0.01295741181820631, + -0.0285402312874794, + 0.000423586432589218, + 0.022684689611196518, + 0.03784715011715889, + -0.011298096738755703, + 0.026018070057034492, + -0.009336416609585285, + 0.010929360054433346, + -0.01087036170065403, + 0.015590193681418896, + -0.0007517622434534132, + -0.014528230763971806, + -0.003915985114872456, + 0.01556069403886795, + 0.018363093957304955, + 0.019071068614721298, + 0.02066401205956936, + 0.0322718471288681, + -0.015295203775167465, + 0.017920609563589096, + -0.0030752650927752256, + 0.01867283321917057, + -0.015007589012384415, + 0.00402291864156723, + -0.01563444174826145, + 0.0032246035989373922, + -0.005302435718476772, + 0.0048452019691467285, + -0.010693368501961231, + -0.021976714953780174, + -0.00583341671153903, + 0.01662265695631504, + 0.007463233545422554, + 0.007234616670757532, + -0.00986739806830883, + 0.003628370352089405, + 0.0056232367642223835, + -0.013414645567536354, + 0.02131298929452896, + -0.014277489855885506, + 0.012876289896667004, + -0.022684689611196518, + 0.006884316448122263, + -0.010191885754466057, + 0.008709563873708248, + 0.027743758633732796, + 0.006390209309756756, + 0.027832256630063057, + 0.012227313593029976, + -0.0008126038010232151, + -0.020324774086475372, + -0.00697281351312995, + 0.00038970872992649674, + -0.010966232977807522, + 0.001649175537750125, + -0.03324531391263008, + 0.003960233647376299, + 0.003042078809812665, + -0.0038643619045615196, + -0.00037933801650069654, + -0.0027931814547628164, + -0.027286525815725327, + -0.01115797646343708, + -0.0020852067973464727, + 0.015590193681418896, + 0.00024820599355734885, + -0.000668335531372577, + 0.016489911824464798, + -0.03271433338522911, + 0.009262668900191784, + 0.0027876505628228188, + 0.0023451661691069603, + -0.02116549387574196, + 0.013407271355390549, + 0.007618103176355362, + 0.0028060872573405504, + -0.0009038661373779178, + -0.029395699501037598, + -0.015096086077392101, + -0.02185872010886669, + -0.0027470893692225218, + 0.005689609330147505, + -0.0009642468066886067, + 0.01194707304239273, + -0.006194778718054295, + 0.013060658238828182, + -0.009705153293907642, + -0.007035498972982168, + -0.00086007866775617, + 0.0008001589449122548, + -0.018495839089155197, + -0.0013292962685227394, + -0.010708117857575417, + 0.007854094728827477, + -0.00038164263241924345, + 0.013643262907862663, + 0.013414645567536354, + 0.01268454734236002, + 0.008259705267846584, + 0.02544284053146839, + 0.019012071192264557, + -0.0140193747356534, + -0.002597751095890999, + 0.00801633857190609, + -0.002619875129312277, + 0.003029173007234931, + -0.005357746034860611, + 0.020973751321434975, + -0.035487230867147446, + 0.0020169904455542564, + 0.018009107559919357, + -0.013908753171563148, + -0.012743544764816761, + 0.0027323400136083364, + 0.01716838777065277, + -0.014144744724035263, + -0.013812881894409657, + 0.0024723804090172052, + -0.02131298929452896, + 0.00634227367118001, + -0.009056176990270615, + -0.005276624113321304, + 0.006205840967595577, + 0.02228645421564579, + -0.011430841870605946, + 0.004011856857687235, + 0.012809917330741882, + 0.0015772718470543623, + -0.0010850081453099847, + -0.025015106424689293, + 0.012795167975127697, + -0.025531338527798653, + 0.0029351452831178904, + 0.004129852633923292, + 0.009778901003301144, + 0.00557898823171854, + -0.03303882107138634, + 0.04085604101419449, + 0.007647601887583733, + -0.00986739806830883, + -0.016371915116906166, + -0.014712600037455559, + 0.007743473630398512, + -0.00675157131627202, + -0.012278936803340912, + 0.025088854134082794, + -0.007566479966044426, + -0.009365915320813656, + -0.01213881652802229, + 0.0008467119769193232, + 0.005376182962208986, + -0.03008892573416233, + 0.011784829199314117, + 0.007304676808416843, + 0.017448626458644867, + -0.0048673260025680065, + -0.004992696922272444, + 0.01140871737152338, + -0.01059012208133936, + -0.005003758706152439, + -0.009004553779959679, + 0.005003758706152439, + -0.014978090301156044, + -1.824959326768294e-5, + 0.00504063256084919, + -0.00805321242660284, + -0.0002929153270088136, + 0.0037131798453629017, + -0.012596050277352333, + -0.009624031372368336, + 0.0057264831848442554, + -0.00804583728313446, + -0.005980911199003458, + -0.009786275215446949, + -0.009970643557608128, + 0.007057623006403446, + -0.03368779644370079, + -0.016961894929409027, + -0.008185957558453083, + -0.02125399187207222, + -0.008901307359337807, + 0.019543051719665527, + 9.143521310761571e-5, + -0.020855754613876343, + -0.006814256776124239, + 0.019926538690924644, + -0.004299471620470285, + 0.0062685259617865086, + -0.0006328445742838085, + 0.012514928355813026, + 0.004210974555462599, + -0.006416020914912224, + -0.004609210416674614, + 0.0018685739487409592, + -0.0364312008023262, + 0.00465714605525136, + 0.0020981125999242067, + 0.007308363914489746, + 0.0031121389474719763, + -0.0007937060436233878, + -0.002673342125490308, + -0.01817135140299797, + 0.006817943882197142, + -0.008864433504641056, + -0.016357166692614555, + -0.0022327015176415443, + 0.0002135216782335192, + -0.013599013909697533, + -0.014358611777424812, + 0.015501696616411209, + -0.0028558666817843914, + -0.0038496125489473343, + 0.01911531761288643, + 0.0028853656258434057, + -0.010206635110080242, + -0.0063201491720974445, + 0.0019119004718959332, + 0.004107728134840727, + 0.0027876505628228188, + -0.0274635199457407, + -0.02651955373585224, + -0.03303882107138634, + 0.0032116977963596582, + 0.00045815552584826946, + -0.012286311015486717, + 0.0009928239742293954, + 0.009196296334266663, + -0.021976714953780174, + 0.020560765638947487, + -0.011622585356235504, + -0.010545873083174229, + 0.018436841666698456, + 0.0035730598028749228, + 0.0015505383489653468, + 0.005206563975661993, + 0.014896968379616737, + 0.005379870533943176, + 0.00851782038807869, + 0.004941073711961508, + 0.0032780703622847795, + -0.004384281113743782, + 0.017448626458644867, + 0.022994428873062134, + 0.003106607822701335, + 0.012905789539217949, + 0.01065649464726448, + -0.007684475742280483, + -0.015206706710159779, + 0.0180681049823761, + -0.0057006715796887875, + 0.004649771377444267, + -0.02592957392334938, + -0.026062319055199623, + -0.022551944479346275, + -0.01870233193039894, + 0.001640878850594163, + -0.007632852531969547, + 0.006806882098317146, + 0.001961679896339774, + -0.003447689348831773, + -0.009749402292072773, + -0.020059283822774887, + 0.0011393968015909195, + -0.018790828064084053, + -0.007632852531969547, + -0.009697779081761837, + 0.001489696791395545, + 0.020324774086475372, + 0.018879326060414314, + 0.01758137159049511, + -0.0023082925472408533, + -0.02483811229467392, + -0.010258258320391178, + 0.024012142792344093, + -0.024675868451595306, + 0.007518543861806393, + -0.017861612141132355, + -0.004107728134840727, + -0.01033938117325306, + -0.003893860848620534, + 0.003473500953987241, + -0.00033209362300112844, + -0.017404379323124886, + -0.002610656665638089, + 0.02168172597885132, + -0.023540159687399864, + -0.006058346014469862, + -0.0023101363331079483, + -0.0011393968015909195, + -0.000881741929333657, + -0.00662620086222887, + 0.0063754599541425705, + -0.0030015178490430117, + 0.00095502840122208, + 0.000843024579808116, + 0.009778901003301144, + -0.010309881530702114, + 0.014933841302990913, + 0.007854094728827477, + -0.015413199551403522, + 0.00738211115822196, + 0.01607692614197731, + -0.001981960376724601, + -0.013333523645997047, + 0.0106491195037961, + 0.009668279439210892, + -0.010781864635646343, + 0.00019151269225403666, + -0.01422586664557457, + -0.018923575058579445, + -0.0032909761648625135, + 0.005512615665793419, + 0.012537051923573017, + 0.022374950349330902, + -0.009697779081761837, + -0.0139456270262599, + 0.012691921554505825, + 0.008547320030629635, + 0.0018012793734669685, + 0.00478251650929451, + -0.016416164115071297, + -0.006865879986435175, + 0.0033038819674402475, + 0.0007065919344313443, + 0.0006259307847358286, + -0.014122620224952698, + -0.0212244912981987, + -0.004454340785741806, + -0.018938323482871056, + 0.01448398269712925, + 0.011534088291227818, + 0.013001660816371441, + 0.026180315762758255, + -0.022050462663173676, + 0.0007485357928089797, + -0.012787793762981892, + -0.01606217585504055, + -0.008171208202838898, + 0.004775141831487417, + 0.01703564077615738, + 0.0030771088786423206, + -0.009904270991683006, + -0.002341478830203414, + 0.022566694766283035, + 0.001604005228728056, + -0.012529677711427212, + -0.0031379505526274443, + 0.009808399714529514, + -0.018510589376091957, + 0.009933770634233952, + -0.0007102793315425515, + 0.0016565502155572176, + -0.004557587206363678, + -0.005442555528134108, + -0.003373942105099559, + 0.01653415895998478, + -0.003997107036411762, + 0.007304676808416843, + 0.017271632328629494, + -0.019321810454130173, + -0.007289926987141371, + 0.006817943882197142, + 0.025280596688389778, + -0.016371915116906166, + -0.002088894136250019, + 0.029823435470461845, + -0.02441037818789482, + -0.011172725819051266, + 0.015944181010127068, + 0.017773116007447243, + 0.003016267204657197, + -0.001463885186240077, + -0.002394945826381445, + -0.013569515198469162, + 0.0032559463288635015, + 0.02848123200237751, + 0.026165565475821495, + -0.020413270220160484, + 0.022065212950110435, + 0.018333595246076584, + 0.014093121513724327, + -0.00662620086222887, + 0.004439591430127621, + -0.003897548420354724, + 0.0009863710729405284, + -0.03247833997011185, + 0.006825318560004234, + 4.0330589399673045e-5, + 0.012190439738333225, + -0.011497214436531067, + 0.010826113633811474, + 0.004587086383253336, + -0.006703635677695274, + -0.012264187447726727, + 0.0007328644278459251, + 0.018894074484705925, + -0.0021460484713315964, + -0.001351420534774661, + -0.03474975749850273, + -0.027168529108166695, + 0.018923575058579445, + 0.01653415895998478, + 0.016829149797558784, + 0.00827445462346077, + -0.007407922763377428, + 0.0017708586528897285, + -0.01967579685151577, + 0.0019303372828289866, + -0.005283998791128397, + 0.022478196769952774, + -0.01347364392131567, + 0.0040155439637601376, + -0.008702189661562443, + -0.010059140622615814, + -0.000668335531372577, + 0.013112281449139118, + -0.014447108842432499, + 0.001660237554460764, + -0.012832041829824448, + 0.02943994849920273, + 0.013075408525764942, + -0.01219781395047903, + -0.0034458457957953215, + -0.017374878749251366, + -0.0033296935725957155, + 0.003421877743676305, + -0.008355576545000076, + -0.035280741751194, + 0.01267717219889164, + -0.008938181214034557, + -0.00662988843396306, + 0.024012142792344093, + -0.0048710135743021965, + 0.009240545332431793, + 0.015914682298898697, + 0.007448484189808369, + -0.005538427270948887, + -0.019056320190429688, + -0.021445734426379204, + 0.0021497358102351427, + -0.00877593643963337, + 0.017315881326794624, + -0.00827445462346077, + 0.009889521636068821, + 0.0012011602520942688, + 0.010413127951323986, + -0.005656423047184944, + -0.012301060371100903, + 0.005132816731929779, + 0.016829149797558784, + 0.008208082057535648, + 0.0006803194410167634, + -0.0027802756521850824, + 0.027139030396938324, + 0.00859894324094057, + -0.022094711661338806, + 0.01292791310697794, + 0.015073961578309536, + -0.000674788374453783, + -0.01913006603717804, + 0.0002116779942298308, + 0.006073095835745335, + -0.014498732052743435, + 0.020560765638947487, + 0.0001418484462192282, + 0.010059140622615814, + -0.014727349393069744, + 0.011327595449984074, + -0.005154940765351057, + 0.00428103469312191, + -0.01553119532763958, + -0.013908753171563148, + 0.005781793501228094, + -0.0039712958969175816, + -0.02185872010886669, + 0.015368951484560966, + -0.00014726427616551518, + -0.006014097947627306, + 0.0037979893386363983, + 0.018481090664863586, + -0.010597496293485165, + -0.020383771508932114, + -0.00985264778137207, + 0.017389629036188126, + -0.004955823067575693, + 0.021475233137607574, + 0.010678618215024471, + -0.02640155702829361, + 0.019557802006602287, + 0.003831175621598959, + 0.0014906186843290925, + -0.005807605106383562, + 0.008458822965621948, + -0.017876362428069115, + 0.014624102972447872, + 0.032802827656269073, + 0.0017597965197637677, + -0.014048873446881771, + -0.007241991348564625, + 0.0007443875074386597, + 0.039174601435661316, + 0.0005909007741138339, + 0.015973679721355438, + 0.003978670574724674, + 0.008208082057535648, + -0.002776588313281536, + 0.0005148487980477512, + -0.03852562606334686, + -0.02284693345427513, + 0.01768461801111698, + -0.009712528437376022, + 0.0004844280192628503, + -0.00764022720977664, + -0.03386479243636131, + 0.007013374473899603, + -0.0009458099957555532, + 0.02486761286854744, + 0.0020446458365768194, + -0.001565287820994854, + 0.0008172130328603089, + -0.004778829403221607, + 0.013960376381874084, + 0.025059355422854424, + -0.01553119532763958, + -0.007603353355079889, + 0.003300194628536701, + -0.014646226540207863, + 0.018790828064084053, + 0.005767044145613909, + 0.005206563975661993, + -0.001502602593973279, + 0.0010813208064064384, + -0.0007241069688461721, + 0.001757030957378447, + 0.013296649791300297, + -0.008967679925262928, + 0.016194920986890793, + 0.025649333372712135, + 0.023200921714305878, + 0.0012620018096640706, + 0.00805321242660284, + 0.009461787529289722, + -0.021607978269457817, + -0.001642722636461258, + -0.0008904994465410709, + -0.007448484189808369, + 0.01970529556274414, + -0.0016141454689204693, + 0.015781937167048454, + -0.005881352350115776, + 0.014594604261219501, + -0.008893932215869427, + 0.0008116819662973285, + -0.027094783261418343, + -0.0011062105186283588, + -0.0049742599949240685, + 0.006607763934880495, + -0.01014026254415512, + -0.0020538640674203634, + 0.01480847131460905, + -0.007817220874130726, + -0.008082711137831211, + -0.01115797646343708, + -0.02592957392334938, + 0.0006932252435944974, + 0.005236063152551651, + -0.00161691103130579, + -0.0007559105288237333, + -0.019395558163523674, + -0.012765669263899326, + -0.007168244104832411, + 0.001446370268240571, + 0.016224419698119164, + 0.010273007676005363, + -0.007396860979497433, + -0.00018586640362627804, + -0.0070207491517066956, + 0.010177136398851871, + 0.0070244367234408855, + -0.007112933322787285, + 0.011202224530279636, + -0.0064528947696089745, + -0.012765669263899326, + -0.00165562832262367, + 0.007105558644980192, + -0.0006213215528987348, + 0.005516303237527609, + -0.005693296901881695, + -0.015678690746426582, + -0.013075408525764942, + -0.017935359850525856, + -0.04699182137846947, + -0.007400548085570335, + 0.0014436047058552504, + -0.0035712162498384714, + -0.016902895644307137, + 0.0028982714284211397, + -0.0024650057312101126, + -0.0014786346582695842, + 0.0008347280090674758, + 0.0020815194584429264, + 0.0031268883030861616, + -0.015663940459489822, + -0.005877665244042873, + 0.008768562227487564, + 0.005873977672308683, + -0.02283218502998352, + 0.010958858765661716, + 0.012028195895254612, + 0.007359987124800682, + 0.01910056732594967, + -0.008680065162479877, + -0.00041021971264854074, + 0.014299614354968071, + -0.003386847907677293, + 0.002011459320783615, + -0.005936663132160902, + 0.030206920579075813, + -0.010206635110080242, + 0.0047714547254145145, + 0.0023894147016108036, + 0.011231724172830582, + 0.005269249435514212, + -0.0037389914505183697, + 0.0011329439003020525, + -0.00106933678034693, + 0.0021331426687538624, + 0.012743544764816761, + -0.0021349862217903137, + 0.0064455196261405945, + -0.004505963996052742, + 0.018923575058579445, + -0.011784829199314117, + -0.021121244877576828, + 0.01188070047646761, + -0.021534230560064316, + 0.007986839860677719, + -0.008488321676850319, + 0.007795096840709448, + -0.007809846196323633, + -0.006368085276335478, + -0.023068176582455635, + 0.004435903858393431, + -0.0016123017994686961, + 0.00764022720977664, + -0.002776588313281536, + 0.003528811503201723, + -0.0024520999286323786, + -0.028790971264243126, + -0.010789239779114723, + -0.023068176582455635, + -0.0028429608792066574, + 0.002216108376160264, + 0.0070096873678267, + 0.006039909087121487, + 0.010929360054433346, + -0.017758365720510483, + 0.005143878981471062, + -0.010929360054433346, + -0.014874843880534172, + -0.012286311015486717, + -0.00038256446714513004, + -0.007374736480414867, + 0.005309810396283865, + 0.007588603999465704, + -0.007559105288237333, + -0.009933770634233952, + -0.003361036302521825, + -0.0017579528503119946, + 0.031829364597797394, + -0.01162995956838131, + -0.01246330514550209, + 0.0042220368050038815, + -0.004686645232141018, + -0.025988571345806122, + -0.028392735868692398, + -0.004317908082157373, + -0.01480847131460905, + 0.02178497239947319, + -0.02542809210717678, + -0.009594532661139965, + 0.019911788403987885, + -0.007713974453508854, + -0.02427763305604458, + -0.012920538894832134, + 0.004904199857264757, + 0.011202224530279636, + -0.03271433338522911, + 0.03905660659074783, + 0.0008112210198305547, + 0.00329835107550025, + -0.015103460289537907, + 0.0018132633995264769, + -0.0140193747356534, + 0.019012071192264557, + -0.016165422275662422, + -0.0014666507486253977, + 0.009727277792990208, + 0.005320872645825148, + 0.0012435649987310171, + 0.007157181855291128, + 0.0031121389474719763, + -0.0134441452100873, + 0.009483911097049713, + -0.011570962145924568, + 0.009904270991683006, + -0.012758294120430946, + 0.012013445608317852, + 0.0014601978473365307, + -0.01924806274473667, + -0.0031471687834709883, + -0.025723081082105637, + 0.003231978276744485, + -0.014727349393069744, + 0.003263321006670594, + -0.007518543861806393, + 0.009786275215446949, + 0.011615210212767124, + 0.006028847303241491, + -0.01477897260338068, + -0.014528230763971806, + 0.011910200119018555, + 0.010184511542320251, + -0.013953002169728279, + -0.010597496293485165, + 0.01595892943441868, + -0.012905789539217949, + -0.016740651801228523, + -0.0049226367846131325, + 0.017876362428069115, + -0.0014196367701515555, + 0.0312688834965229, + -0.0056490483693778515, + 0.003333380911499262, + 0.0006434457609429955, + -0.02544284053146839, + 0.00507013127207756, + -0.013112281449139118, + 0.007238304242491722, + -0.00855469424277544, + -0.009542909450829029, + 0.01809760369360447, + 0.016873396933078766, + 0.001367091783322394, + 0.009240545332431793, + 0.015007589012384415, + -0.01219781395047903, + 0.011430841870605946, + 0.015501696616411209, + -0.015339451842010021, + -0.004435903858393431, + 0.015811435878276825, + -0.03274383023381233, + -0.011556211858987808, + -0.02178497239947319, + 0.023481162264943123, + -0.0035361861810088158, + 0.0011919417884200811, + 0.006685198750346899, + 0.005313497968018055, + 0.015944181010127068, + -0.023097675293684006, + -0.018510589376091957, + 0.005243437830358744, + -0.014174243435263634, + 0.0486142635345459, + 0.03277333080768585, + 0.004115103278309107, + -0.00659301457926631, + 0.011902824975550175, + -0.022035712376236916, + 0.00310476403683424, + 0.00465714605525136, + -0.009506035596132278, + -0.010280382819473743, + 0.006146843079477549, + 0.012094568461179733, + -0.014528230763971806, + 0.0007430047262459993, + -0.024661120027303696, + 0.004937386140227318, + 0.0039934199303388596, + -0.013739134185016155, + -0.01188807561993599, + 0.006736821960657835, + -0.0006157904863357544, + 0.0008826637640595436, + -0.005892414599657059, + 0.03106239065527916, + 0.012242062948644161, + 0.002865085145458579, + -0.015722937881946564, + 0.00045170262455940247, + -0.008687439374625683, + -0.01653415895998478, + 0.015501696616411209, + -0.001558834919705987, + -0.03722767159342766, + 0.023156672716140747, + -0.00902667734771967, + 0.008716939017176628, + -0.006039909087121487, + 0.010169762186706066, + -0.0007102793315425515, + 0.011570962145924568, + -0.006740509066730738, + -0.014970715157687664, + 0.012050319463014603, + -0.006050971336662769, + -0.0056711724027991295, + -0.006146843079477549, + 0.004273660015314817, + -0.0030402352567762136, + -0.005114379804581404, + -0.007459545973688364, + 0.006921190302819014, + -0.012013445608317852, + -0.022006213665008545, + -0.0003894782857969403, + -0.030472412705421448, + 0.01812710240483284, + 0.01372438482940197, + -0.021534230560064316, + -0.01861383579671383, + -0.0031342629808932543, + -0.00608415761962533, + -1.2005552889604587e-5, + 0.009933770634233952, + 0.018510589376091957, + -0.0062685259617865086, + 0.012529677711427212, + -0.008893932215869427, + -0.009557658806443214, + -0.001476790988817811, + 0.015206706710159779, + 0.012507553212344646, + -0.026814542710781097, + -0.016888147220015526, + 0.013635887764394283, + -0.02069351077079773, + -0.022168457508087158, + -0.005033257883042097, + -0.02171122469007969, + -0.01963154971599579, + 0.015427948907017708, + 0.01615067385137081, + -0.017389629036188126, + -5.404299372457899e-5, + -0.00029959867242723703, + -0.015575443394482136, + 0.005608487408608198, + -0.004011856857687235, + 0.006991250440478325, + 0.001776389661245048, + 0.015796685591340065, + -0.004539150279015303, + 0.0028355862013995647, + -0.015081336721777916, + -0.0017173917731270194, + 0.003897548420354724, + 0.000495951040647924, + -0.011062105186283588, + -0.0101476376876235, + 0.006851130165159702, + 0.021062247455120087, + 0.017994357272982597, + 0.010479500517249107, + -0.002804243704304099, + 0.0006632653530687094, + 0.001360638882033527, + -0.02231595292687416, + 0.01528045441955328, + -0.007208805065602064, + 0.006408646237105131, + 0.00545361777767539, + -0.012795167975127697, + 0.011084228754043579, + 0.009329041466116905, + 0.0030347041320055723, + -0.001692502060905099, + 0.012492803856730461, + -0.009675654582679272, + 0.0023009178694337606, + 0.016475161537528038, + 0.009955894201993942, + -0.0028337426483631134, + 0.019351309165358543, + 0.021475233137607574, + 0.009697779081761837, + 0.007935216650366783, + 0.0035712162498384714, + 0.0015339452074840665, + 0.01603267714381218, + -0.0006097985315136611, + -0.01960204914212227, + 0.0011255692224949598, + 0.002533222083002329, + -0.011865951120853424, + 0.010243508964776993, + -0.014860094524919987, + -0.008421949110925198, + 0.0013615607749670744, + -0.022094711661338806, + -0.003703961381688714, + -0.00902667734771967, + -0.012360058724880219, + 0.017433878034353256, + 0.02649005316197872, + 0.0022677315864712, + 0.018318844959139824, + -0.008244955912232399, + 0.006692573428153992, + 0.02168172597885132, + -0.0028816782869398594, + 0.010634370148181915, + -0.008244955912232399, + 0.0071719312109053135, + 0.007378424052149057, + 0.006784757599234581, + 0.007466920651495457, + 0.023525409400463104, + -0.02028052508831024, + 0.025737831369042397, + -0.02078200876712799, + 0.009188922122120857, + 0.00713137025013566, + 0.005755981896072626, + 0.010346755385398865, + 0.01137184351682663, + 0.0005918226088397205, + -0.006781070493161678, + 0.0022087336983531713, + -8.146779146045446e-5, + -0.017640370875597, + -0.007559105288237333, + -0.007492732256650925, + -0.008444073610007763, + -0.021032748743891716, + -0.0006245480035431683, + 0.0062500895000994205, + 5.870981840416789e-5, + -0.007474295794963837, + -0.0004696785472333431, + -0.024484125897288322, + 0.0056490483693778515, + 0.02078200876712799, + 0.0098231490701437, + 0.008576818741858006, + 0.007949966005980968, + -0.017802614718675613, + 0.01033938117325306, + 0.001539476215839386, + -0.003390535246580839, + -0.01426274050027132, + -0.006504517514258623, + 0.005254500079900026, + 0.01862858422100544, + 0.005180752370506525, + -0.008746437728404999, + -0.0041962251998484135, + 0.012647673487663269, + 0.00030190328834578395, + -0.007846719585359097, + -0.027183279395103455, + -0.003145325230434537, + 0.0070244367234408855, + -0.0072493660263717175, + -0.018363093957304955, + 0.011615210212767124 + ], + "43b96eaa-5ec1-44d6-94c9-52e885e3cea1": [ + -0.04150109365582466, + -0.0117081543430686, + -0.017145706340670586, + 0.0046234335750341415, + -0.03105008788406849, + 0.005339100491255522, + 0.02746039442718029, + 0.025158144533634186, + -0.00642206659540534, + 0.01675190031528473, + 0.0013508681440725923, + 0.012859280221164227, + 0.009102976880967617, + -0.03868386521935463, + 0.006505372002720833, + 0.024279654026031494, + 0.015752239152789116, + 0.012579072266817093, + -0.008322938345372677, + -0.025370193645358086, + 0.030656281858682632, + -0.014093710109591484, + -0.05155828967690468, + 0.014601114206016064, + 0.017781855538487434, + -0.0066189696080982685, + 0.021023180335760117, + -0.01145066600292921, + -0.054102882742881775, + -0.0034476956352591515, + 0.008534987457096577, + 0.010390419512987137, + -0.001027114107273519, + -0.000242815469391644, + -0.013609025627374649, + -0.02733922377228737, + -0.007989717647433281, + -0.02050820365548134, + -0.014691992662847042, + -0.03535166010260582, + -0.012223131954669952, + 0.01447237003594637, + -0.010413139127194881, + -0.003294338472187519, + -0.05049804225564003, + 0.0055662961676716805, + 0.03729039803147316, + -0.023885848000645638, + -0.009837576188147068, + -0.013783209025859833, + 0.014449650421738625, + 0.007198318839073181, + -0.009201427921652794, + 0.009004524908959866, + 0.03383702039718628, + -0.026339560747146606, + -0.013874087482690811, + 0.04247045889496803, + -0.013427269645035267, + -0.054012004286050797, + 0.024052457883954048, + 0.017736416310071945, + 0.0005656227585859597, + -0.032625310122966766, + -0.01779700070619583, + -0.03526078164577484, + 0.017403194680809975, + 0.021841086447238922, + -0.010451004840433598, + -0.010958408936858177, + -0.008943939581513405, + 0.008534987457096577, + -0.03547283262014389, + 0.006668195594102144, + 0.0001345424825558439, + -0.03201945498585701, + 0.06016143783926964, + 0.011662716045975685, + 0.009875441901385784, + 0.018372563645243645, + -0.025067266076803207, + 0.006376627832651138, + 0.03901708498597145, + -0.02126552350819111, + 0.044227439910173416, + 0.013109195046126842, + -0.011465813033282757, + -0.03947147727012634, + 0.016312655061483383, + -0.032504141330718994, + -0.0055132838897407055, + 0.04737788811326027, + -0.013639318756759167, + 0.025718560442328453, + -0.018932979553937912, + 0.003158021019771695, + 0.003693824401125312, + 0.011420373804867268, + 0.021083766594529152, + 0.017569804564118385, + 0.000613901880569756, + 0.011859618127346039, + -0.03677542135119438, + 0.014245173893868923, + 0.008428962901234627, + 0.010625188238918781, + -0.011655142530798912, + -0.016358094289898872, + -0.04086494445800781, + 0.00639177393168211, + -0.002824800554662943, + -0.06234251707792282, + 0.013821075670421124, + 0.01459354069083929, + -0.04925604164600372, + -0.015116090886294842, + 0.013465135358273983, + -0.03619985654950142, + -0.01666102185845375, + -0.04940750449895859, + 0.01725173182785511, + 0.05558722838759422, + -0.0016604223055765033, + 0.013957392424345016, + -0.02986866980791092, + 0.002211372135207057, + 0.03050481714308262, + 0.005263368599116802, + 0.006630329415202141, + -0.006217590533196926, + 0.020780839025974274, + -0.01831197738647461, + 0.009337745606899261, + -0.00335303065367043, + 0.027218051254749298, + 0.016888218000531197, + 0.024824922904372215, + 0.03192857652902603, + -0.024355385452508926, + 0.034564048051834106, + -0.07779182493686676, + -0.044651538133621216, + -0.03341292217373848, + 0.02973235212266445, + 0.0030766092240810394, + -0.006384200882166624, + -0.021992549300193787, + 0.061948709189891815, + -0.026551611721515656, + 0.031140964478254318, + -0.03944118320941925, + -0.02459772676229477, + 0.0028285870794206858, + -0.001995536033064127, + -0.009587661363184452, + 0.009807283990085125, + -0.003699504304677248, + 0.03159535676240921, + 0.037441860884428024, + 0.008671305142343044, + 0.00528230145573616, + -0.03765391185879707, + 0.003900193842127919, + 0.015979435294866562, + 0.03091377019882202, + 0.01658529043197632, + 0.06197900325059891, + 0.017145706340670586, + -0.02327999286353588, + 0.014654126018285751, + 0.010435858741402626, + -0.025082411244511604, + 0.03919884189963341, + 0.02391614019870758, + 0.03295852988958359, + -0.0003978292515967041, + 0.01324551273137331, + 0.014207308180630207, + 0.050861556082963943, + -0.043258070945739746, + -0.008678877726197243, + 0.005263368599116802, + -0.03932001441717148, + -0.02443111687898636, + 0.01944795623421669, + 0.02564282715320587, + 0.00020163624139968306, + 0.016888218000531197, + 0.012647230178117752, + -0.003601052798330784, + -0.012745682150125504, + -0.013631745241582394, + 0.018130222335457802, + 0.03277677297592163, + -0.0002501519920770079, + -0.03235267475247383, + -0.004112243186682463, + -0.03535166010260582, + -0.006668195594102144, + 0.0354425385594368, + -0.014714712277054787, + -0.04307631403207779, + -0.04943779855966568, + 0.035079024732112885, + -0.01273810863494873, + 0.002001215936616063, + -0.016358094289898872, + -0.01953883469104767, + 0.03141359984874725, + -0.024779483675956726, + 0.02830859087407589, + -0.053133513778448105, + 0.007966998033225536, + 0.01531299389898777, + -0.024900654330849648, + 0.017812147736549377, + 0.0013944139936938882, + 0.03317058086395264, + 0.019720591604709625, + -0.027899639680981636, + -0.017645537853240967, + 0.008762182667851448, + -0.007944278419017792, + -0.04116787016391754, + -0.0599190928041935, + -0.015025212429463863, + 0.007470953743904829, + 0.030610842630267143, + -0.06767404079437256, + -0.008519841358065605, + 0.03268589824438095, + -0.003529107430949807, + -0.004025151487439871, + -0.015229688957333565, + -0.014517809264361858, + 0.0141315758228302, + -0.013056183233857155, + 0.010466150939464569, + 0.009814856573939323, + -0.0024272080045193434, + 0.02231062389910221, + 0.0417737253010273, + 0.013328817673027515, + 0.023779822513461113, + 0.018084783107042313, + 0.012291290797293186, + -0.007251331117004156, + -0.005411045625805855, + 0.012791121378540993, + -0.020992888137698174, + -0.01717599853873253, + 0.025036972016096115, + 0.01822109892964363, + -0.0008387310081161559, + -0.015138810500502586, + 0.01616119220852852, + 0.025703413411974907, + -0.014570821076631546, + 0.005403472576290369, + 0.014434503391385078, + 0.02838432416319847, + 0.04222811758518219, + -0.00015028052439447492, + 0.00013738243433181196, + 0.03062598779797554, + -0.03189828619360924, + 0.017448633909225464, + -0.026854539290070534, + 0.015161530114710331, + 0.019856909289956093, + -0.011700581759214401, + 0.007944278419017792, + 0.03259501978754997, + -0.005289874505251646, + -0.0011179924476891756, + 0.01932678557932377, + 0.017448633909225464, + -0.0022000123281031847, + 0.0006759073585271835, + 0.028460055589675903, + 0.0013631745241582394, + -0.0026184311136603355, + -0.014941907487809658, + 0.025627681985497475, + -0.01779700070619583, + -0.004400024656206369, + -0.030004985630512238, + 0.018751222640275955, + -0.04383363574743271, + -0.011041713878512383, + 0.01134464144706726, + -0.009920881129801273, + 0.039713818579912186, + 0.01923590712249279, + 0.03835064545273781, + 0.036381613463163376, + -0.03395819291472435, + 0.0014644659822806716, + -0.03698746860027313, + 0.01831197738647461, + -0.030732013285160065, + -0.02346174791455269, + -0.017478926107287407, + -0.04577237367630005, + 0.01682763174176216, + -0.048104915767908096, + 0.020947448909282684, + 0.009102976880967617, + -0.03420053422451019, + 0.002953544957563281, + 0.03607868775725365, + -0.027854200452566147, + -0.02855093404650688, + -0.009655819274485111, + 0.018917834386229515, + -0.010140503756701946, + 0.02852063998579979, + 0.017145706340670586, + -0.0050285994075238705, + -0.04319748654961586, + 0.01145066600292921, + -0.013503001071512699, + -0.03426111862063408, + 0.02441597171127796, + 0.019902348518371582, + -0.04337924346327782, + 0.022007696330547333, + 0.0052141426131129265, + -0.01784243993461132, + 0.0037638763897120953, + 0.011011420749127865, + -0.026203244924545288, + -0.030701719224452972, + -0.010276821441948414, + -0.01134464144706726, + -0.05392112582921982, + -0.04265221580862999, + -0.01822109892964363, + -0.009587661363184452, + -0.015108518302440643, + -0.004824123345315456, + -0.01746378093957901, + 0.023340577259659767, + -0.039592646062374115, + 0.010791798122227192, + 0.0006413547089323401, + 0.0024859001860022545, + 0.014442076906561852, + -0.028066249564290047, + 0.004877135623246431, + 0.0010545669356361032, + 0.0027566419448703527, + 0.01122347079217434, + -0.002449927618727088, + 0.03598780930042267, + -0.014396637678146362, + -0.016312655061483383, + -0.009527075104415417, + 0.008694024756550789, + 0.0023382229264825583, + 0.009648246690630913, + -0.035957515239715576, + -0.06512945145368576, + 0.0032772987615317106, + -0.016691315919160843, + 0.030338207259774208, + -0.03320087492465973, + -0.028460055589675903, + -0.0004054024175275117, + 0.019902348518371582, + -0.027263490483164787, + 0.013343963772058487, + 0.01713055931031704, + -0.014396637678146362, + -0.0056988270953297615, + -0.03913825750350952, + 0.051194775849580765, + 0.012086814269423485, + -0.04365187883377075, + 0.013662038370966911, + -0.010231382213532925, + 0.011056859977543354, + 0.033685557544231415, + 0.002826693933457136, + 0.007202105596661568, + 0.045196808874607086, + -0.011935350485146046, + 0.005270941648632288, + 0.012442754581570625, + 0.013540866784751415, + -0.021750207990407944, + 0.015010066330432892, + -0.008875780738890171, + 0.010201089084148407, + -0.022583259269595146, + -0.0073422095738351345, + -0.005759412422776222, + 0.014048270881175995, + 0.011935350485146046, + -0.0185543205589056, + -0.00617972481995821, + -0.011988363228738308, + -0.021098913624882698, + 0.003176954109221697, + -0.03126213699579239, + -0.025218728929758072, + -0.017857586964964867, + -0.026127511635422707, + 0.022916479036211967, + 0.02467346005141735, + 0.01088267657905817, + 0.016433825716376305, + 0.008784902282059193, + 0.0015723840333521366, + 0.0607369989156723, + 0.0034950280096381903, + 0.025976048782467842, + 0.050134532153606415, + -0.03362497314810753, + -0.013374256901443005, + 0.05310322344303131, + 0.04480300471186638, + -0.03716922551393509, + 0.011382507160305977, + 0.00228331726975739, + 0.02091715671122074, + 0.027733029797673225, + 0.005217929370701313, + -0.04213723912835121, + -0.02568826638162136, + 0.00829264521598816, + 0.031958870589733124, + -0.0063008954748511314, + -0.006512945052236319, + -0.019690299406647682, + -0.04150109365582466, + 0.013162207789719105, + 0.011821752414107323, + -0.018327124416828156, + 0.0005263368366286159, + -0.004502262454479933, + 0.019599420949816704, + -0.02855093404650688, + -0.00045415485510602593, + -0.002588138449937105, + -0.016252070665359497, + -0.04531798139214516, + 0.020099250599741936, + 0.012685096822679043, + -0.02008410543203354, + -0.006081273313611746, + 0.004358372185379267, + -0.040137916803359985, + 0.00015548709779977798, + 0.030519964173436165, + -0.016888218000531197, + -0.011844472028315067, + -0.011632422916591167, + 0.030444230884313583, + -0.02911134995520115, + 0.0008865367854014039, + 0.00020400286302901804, + 0.014646553434431553, + -0.011988363228738308, + 0.023173967376351357, + -0.04074377194046974, + 0.008300218731164932, + 0.053254686295986176, + -2.0338162357802503e-5, + 0.002557845553383231, + -0.019372224807739258, + -0.0316256508231163, + -0.024946093559265137, + 0.028581226244568825, + 0.018917834386229515, + -0.030444230884313583, + -0.015676507726311684, + -0.016040019690990448, + 0.001413346966728568, + -0.021023180335760117, + -0.06258485466241837, + -0.03547283262014389, + -0.02396157942712307, + 0.023885848000645638, + 0.002697949530556798, + -0.015434165485203266, + 0.000112887893919833, + -0.028157128021121025, + 0.011193177662789822, + -0.024870362132787704, + 0.06519003957509995, + 0.008641012012958527, + 0.0009386024903506041, + 0.02906591072678566, + -0.01324551273137331, + -0.015297847799956799, + -0.03538195416331291, + -0.013972539454698563, + -0.013957392424345016, + -0.028157128021121025, + 0.03198916092514992, + -0.04137992113828659, + -0.004471969790756702, + 0.031019793823361397, + -0.013866514898836613, + 0.008686451241374016, + 0.012768401764333248, + 0.014033124782145023, + 0.005600375588983297, + -0.0594949945807457, + -0.044984761625528336, + 0.019039005041122437, + -0.027021149173378944, + 0.007611057721078396, + 0.004949080757796764, + 0.023189114406704903, + -0.000924876076169312, + -0.0008368376875296235, + 0.025718560442328453, + -0.006187297869473696, + 0.014184588566422462, + 0.030004985630512238, + 0.025385338813066483, + 0.00496801408007741, + -0.03189828619360924, + -0.002654403680935502, + -0.023052796721458435, + -0.011170458048582077, + 0.03220121189951897, + 0.0003876527480315417, + 0.007944278419017792, + 0.0189784187823534, + -0.042167533189058304, + 6.443129677791148e-5, + 0.015964288264513016, + 0.014101283624768257, + 0.004403810948133469, + 0.00549435056746006, + 0.0075277527794241905, + 0.03180740773677826, + -0.02384040877223015, + 0.03238296881318092, + 0.0001379740861011669, + 0.0028001877944916487, + -0.0036445986479520798, + 0.027899639680981636, + 0.0019633499905467033, + 0.011753593571484089, + -0.009049964137375355, + 0.044318318367004395, + -0.03741156682372093, + 0.018887540325522423, + 0.0038244619499891996, + -0.006554597523063421, + 0.015093371272087097, + -0.047226425260305405, + 0.020235568284988403, + -0.024370532482862473, + -0.004767324309796095, + 0.00033795367926359177, + -0.029247667640447617, + 0.029308252036571503, + -0.013343963772058487, + 0.018418002873659134, + 0.004600713960826397, + 0.009655819274485111, + -0.004468183033168316, + 0.011882337741553783, + -0.002762321848422289, + 0.020068958401679993, + 0.01978117786347866, + 0.027687590569257736, + 0.00770950922742486, + -0.02876298315823078, + -0.003519641002640128, + 0.029717205092310905, + -0.0010413138661533594, + 0.0019093910232186317, + -0.03623015061020851, + -0.024567434564232826, + -0.008587999269366264, + -0.021204937249422073, + 0.004297786392271519, + -0.02117464505136013, + 0.007399008609354496, + 0.009610380977392197, + 0.001583743724040687, + -0.002054228214547038, + 0.011132592335343361, + 0.013654464855790138, + 0.0045325555838644505, + 0.014305759221315384, + -0.009360465221107006, + 0.003504494670778513, + -0.029050763696432114, + 0.040683187544345856, + 0.00034789351047948003, + 0.023779822513461113, + -0.026642490178346634, + -0.021098913624882698, + -0.008224486373364925, + 0.044772710651159286, + 0.017857586964964867, + -0.02112920582294464, + -0.006399346981197596, + 0.02708173356950283, + -0.0003561766934581101, + -0.016645876690745354, + 0.006573530379682779, + 0.03856269270181656, + -0.028202567249536514, + 0.01569165289402008, + 0.06240310147404671, + -0.013200073502957821, + 0.043894220143556595, + -0.020977741107344627, + 0.0008193246903829277, + 0.0366845428943634, + -0.011200751177966595, + 0.0067855799570679665, + 0.016812486574053764, + -0.0510433129966259, + 0.052376195788383484, + -0.019887201488018036, + 0.022265184670686722, + 0.016509559005498886, + -0.005297447554767132, + -0.01890268735587597, + -0.028793275356292725, + -0.004778684116899967, + 0.012798693962395191, + -0.016857925802469254, + 0.03177711367607117, + -0.025718560442328453, + 0.005793491844087839, + 0.020735399797558784, + 0.024355385452508926, + 0.016509559005498886, + -0.02396157942712307, + 0.012669949792325497, + -0.003063356038182974, + -0.012306436896324158, + 0.01035255379974842, + 0.05752596631646156, + -0.009511929005384445, + 0.02733922377228737, + -0.009883015416562557, + 0.03095920942723751, + 0.04689320549368858, + 0.03041393868625164, + -0.027536125853657722, + 0.002909999107941985, + 0.0025786717887967825, + 0.02362835966050625, + 0.009186281822621822, + -0.03480638936161995, + -0.005759412422776222, + 0.015509896911680698, + -0.0041198162361979485, + 0.006119139026850462, + 0.023613212630152702, + -0.017236584797501564, + -0.009163562208414078, + -0.004797616973519325, + 0.014669273048639297, + 0.007262690924108028, + 0.010859956964850426, + 0.008444109000265598, + 0.014676845632493496, + 0.050861556082963943, + 0.005683680530637503, + -0.009201427921652794, + 0.0438639260828495, + 0.018948126584291458, + 0.0038131021428853273, + 0.003850968088954687, + 0.012480620294809341, + -0.011480959132313728, + 0.031110672280192375, + -0.009443770162761211, + 0.0017579271225258708, + -0.01784243993461132, + -0.02268928289413452, + 0.002489686943590641, + -0.0194025170058012, + -0.0020655880216509104, + 0.010640334337949753, + 0.045075640082359314, + -0.029368838295340538, + 0.00499830674380064, + 0.0004998306394554675, + 0.022931626066565514, + -0.004740817937999964, + 0.015615921467542648, + -0.0027396022342145443, + 0.024961240589618683, + -0.004615860525518656, + -0.025794291868805885, + 0.016524704173207283, + -0.01826653815805912, + -0.02585487812757492, + 0.010390419512987137, + 0.0014559461269527674, + -0.03968352451920509, + -0.009398330934345722, + 0.013465135358273983, + -0.036593664437532425, + -0.015070651657879353, + -0.005081611685454845, + -0.011064433492720127, + 0.029792936518788338, + 0.020220423117280006, + -0.014631406404078007, + 0.01852402836084366, + 0.011700581759214401, + 0.020387033000588417, + -0.016721608117222786, + 0.011352214962244034, + -0.005111904349178076, + 0.021538157016038895, + 0.015721946954727173, + 0.02746039442718029, + -0.003714650636538863, + -0.04065289348363876, + -0.03320087492465973, + 0.018418002873659134, + 0.008383523672819138, + -0.011011420749127865, + -0.003703290829434991, + -0.006895391270518303, + 0.04337924346327782, + -0.009837576188147068, + -0.020053811371326447, + 0.003231859765946865, + -0.021250376477837563, + -0.014298186637461185, + -0.009405904449522495, + 0.00518006319180131, + 0.027990518137812614, + -0.019251054152846336, + 0.04749906063079834, + -0.00029440782964229584, + 0.02185623161494732, + -0.008762182667851448, + 0.01873607747256756, + -0.013503001071512699, + 0.018705783411860466, + 0.007868546061217785, + 0.026990856975317, + 0.012730536051094532, + 0.020068958401679993, + -0.01611575298011303, + 0.06167607381939888, + 0.017963610589504242, + -0.031443893909454346, + 0.003991072066128254, + -0.0016774620162323117, + -0.0016121432418003678, + -0.021098913624882698, + 0.037987131625413895, + -0.0025540590286254883, + -0.002402595244348049, + -0.019720591604709625, + -0.035079024732112885, + -0.004540128633379936, + 0.019841762259602547, + -0.005729119759052992, + 0.05564781278371811, + 0.055284302681684494, + -0.00803515687584877, + 0.034564048051834106, + -0.006880244705826044, + 0.018024196848273277, + 0.03977440297603607, + -0.024567434564232826, + -0.03674512729048729, + 0.02240150235593319, + 0.0011340854689478874, + -0.031867992132902145, + -0.02365865185856819, + -0.007493673358112574, + -0.026809100061655045, + -0.01628236286342144, + -0.011003848165273666, + 0.0417737253010273, + -0.02961117960512638, + 0.016252070665359497, + 0.030050424858927727, + 0.007898839190602303, + -0.004888495430350304, + 0.00724375806748867, + 0.025536803528666496, + 0.009943600744009018, + 0.021841086447238922, + 0.007614844478666782, + 0.002991410903632641, + 0.03704805672168732, + -0.050437457859516144, + 0.012851706705987453, + 0.0007824053755030036, + 0.024991532787680626, + -0.03020188957452774, + 0.033594679087400436, + 0.044227439910173416, + -0.02303764969110489, + -0.00029156787786632776, + 0.0027490686625242233, + 0.007039282005280256, + -0.006266816519200802, + 0.04247045889496803, + -0.02632441557943821, + -0.023386016488075256, + -0.023219406604766846, + 0.012541205622255802, + 0.004555274732410908, + -0.014048270881175995, + 0.029808083549141884, + -0.011374934576451778, + 0.002557845553383231, + 0.023219406604766846, + 0.009148416109383106, + -0.004184188321232796, + 0.023355724290013313, + 0.012579072266817093, + -0.01675190031528473, + -0.010912969708442688, + -0.0026562970597296953, + 0.0009409690974280238, + 0.02505211904644966, + 0.016221776604652405, + 0.0030084506142884493, + 0.011162884533405304, + -0.01817566156387329, + 0.043258070945739746, + 0.010859956964850426, + 0.017903026193380356, + -0.04141021519899368, + 0.006528091616928577, + -0.007353569380939007, + 0.030126158148050308, + -0.030489670112729073, + -0.03738127648830414, + -0.021295815706253052, + -0.011927776969969273, + 3.100275353062898e-5, + -0.00642206659540534, + -0.006096419412642717, + 0.013949819840490818, + 0.03395819291472435, + 0.04649939760565758, + 0.018372563645243645, + -0.007671643514186144, + -0.011647569015622139, + -0.0014313332503661513, + -0.02252267301082611, + -0.015706799924373627, + -0.010291967540979385, + 0.009034818038344383, + -0.007232398260384798, + 0.03510931879281998, + 0.025082411244511604, + -0.0030482097063213587, + -0.023764675483107567, + -0.00892121996730566, + 0.0035158542450517416, + -0.010602468624711037, + 0.00328487204387784, + -0.002970584435388446, + -0.013548440299928188, + 0.0009395491215400398, + -0.0022019054740667343, + -0.0023779822513461113, + 0.007402794901281595, + 0.026945417746901512, + 0.006838592234998941, + -0.023507187142968178, + -0.014373918063938618, + 0.01611575298011303, + -0.050134532153606415, + -0.018720930442214012, + 0.005153557285666466, + 0.006815872620791197, + -0.0063084689900279045, + 0.0012912292731925845, + -0.04419714957475662, + 0.011571837589144707, + 0.01341212261468172, + -0.020387033000588417, + 0.01123861689120531, + -0.01637324132025242, + 0.03226179629564285, + -0.007584551814943552, + -0.028702396899461746, + -0.04159196838736534, + -0.0017938998062163591, + -0.009693685919046402, + 0.003782809479162097, + -0.029050763696432114, + -0.013147060759365559, + -0.003288658568635583, + -0.0019500969210639596, + -0.021841086447238922, + -0.029717205092310905, + 0.017266876995563507, + 0.027369515970349312, + -0.03138330578804016, + 0.007501246407628059, + 0.023098235949873924, + -0.010693347081542015, + 0.012382169254124165, + 0.018508881330490112, + 0.018539173528552055, + 0.002527552889660001, + -0.0020561215933412313, + 0.043470121920108795, + 0.02434023842215538, + 0.005331526976078749, + -0.01713055931031704, + -0.01720629259943962, + -0.018190806731581688, + 0.014351198449730873, + 0.005891943350434303, + 0.013442415744066238, + 0.0010081811342388391, + -0.003625665558502078, + -0.005600375588983297, + 0.0058767967857420444, + -0.0010593002662062645, + 0.004509835969656706, + 0.018084783107042313, + 0.0009688952704891562, + 0.008481974713504314, + 0.0005599428550340235, + 0.016358094289898872, + -0.021704768761992455, + 0.008936366066336632, + -0.023128528147935867, + -0.011412800289690495, + -0.020068958401679993, + -0.0065659573301672935, + -0.017690977081656456, + -0.00964067317545414, + 0.0022530246060341597, + -0.009822430089116096, + 0.021401841193437576, + 0.008936366066336632, + -0.003510174574330449, + 0.032080039381980896, + 0.011814179830253124, + 0.016176337376236916, + 0.004142535850405693, + 0.0358666367828846, + -0.017100267112255096, + -0.019962934777140617, + 0.015487177297472954, + 0.03371585160493851, + -0.003746836679056287, + 0.03129242733120918, + 0.006607609800994396, + 0.007202105596661568, + -0.01906929723918438, + 0.004986946936696768, + 0.010784225538372993, + 0.00829264521598816, + -0.02209857478737831, + 0.006115352269262075, + -0.0316256508231163, + -0.006812086328864098, + -0.02091715671122074, + 0.0009703152463771403, + -0.02505211904644966, + -0.01223070453852415, + -0.003869901178404689, + 0.01185204554349184, + 0.015426591970026493, + -0.02505211904644966, + -0.02072025276720524, + -0.011465813033282757, + -0.0062478831969201565, + 0.019008710980415344, + 0.03371585160493851, + 0.004699165467172861, + -0.02282560057938099, + -0.03613927215337753, + -0.0261578056961298, + 0.013313671573996544, + -0.05137653276324272, + 0.015441738069057465, + 0.004502262454479933, + -0.02556709572672844, + -0.010117784142494202, + -0.03298882395029068, + -0.0012268570717424154, + 0.025870023295283318, + 0.0014142935397103429, + -0.002453714143484831, + -0.017403194680809975, + -0.029520303010940552, + -0.02218945324420929, + -0.0227801613509655, + -0.02696056291460991, + -0.0013840008759871125, + -0.050013359636068344, + 0.041743434965610504, + 0.021538157016038895, + 0.018493734300136566, + 0.0004543915274553001, + -0.023264845833182335, + -0.006812086328864098, + -0.0014512129127979279, + -0.02384040877223015, + -0.0097012585029006, + 0.010594895109534264, + -0.013843795284628868, + 0.037865959107875824, + 0.02868725173175335, + 0.007838253863155842, + -0.018948126584291458, + -0.014548101462423801, + 0.02821771241724491, + -0.02977779135107994, + -0.012351876124739647, + 0.008012437261641026, + -8.0820158473216e-5, + 0.00034576354664750397, + -0.008451682515442371, + -0.010110211558640003, + 0.004733244888484478, + 0.04128904268145561, + -0.004577994346618652, + -0.013639318756759167, + -0.017145706340670586, + 0.00032990716863423586, + -0.014449650421738625, + -0.002692269627004862, + -0.009754271246492863, + -0.02755127288401127, + -0.08027583360671997, + -0.015570482239127159, + -0.009943600744009018, + 0.021659329533576965, + -0.020265862345695496, + -0.00567232072353363, + 0.012079240754246712, + 0.013828648254275322, + -0.012086814269423485, + 0.0183422714471817, + -0.0007753054960630834, + -0.02509755827486515, + -0.015176676213741302, + 0.023476894944906235, + -0.004528768826276064, + 0.01351814717054367, + -0.013162207789719105, + -0.004267493728548288, + 0.0187663696706295, + -0.01134464144706726, + -0.009466489776968956, + -0.002599498024210334, + -0.01932678557932377, + -0.0008633438847027719, + -0.0016481159254908562, + 0.020553642883896828, + -0.017539512366056442, + 0.017160853371024132, + -0.011427946388721466, + -0.015797678381204605, + 0.0013944139936938882, + 0.013843795284628868, + -0.009648246690630913, + 0.007860973477363586, + 0.0048089767806231976, + -0.00561173539608717, + 0.023976726457476616, + 0.005376966204494238, + 0.02112920582294464, + -0.014419357292354107, + 0.0043848780915141106, + 0.020568789914250374, + -0.007027922198176384, + -0.0320497490465641, + -0.020735399797558784, + -0.033382631838321686, + -0.008163901045918465, + -0.023143675178289413, + 0.005759412422776222, + 0.009458917193114758, + 0.010246528312563896, + -0.004316719248890877, + 0.012488193809986115, + -0.014419357292354107, + -0.0076337773352861404, + 0.01653985120356083, + 0.015979435294866562, + -0.012442754581570625, + 0.015540190041065216, + -0.008572853170335293, + 0.051861219108104706, + 0.005744265858083963, + -0.0003777129459194839, + 0.00278504122979939, + -0.02462802082300186, + 0.01335153728723526, + -0.0012552565895020962, + 0.018069636076688766, + 0.03159535676240921, + 0.008315364830195904, + 0.03105008788406849, + 0.0033303112722933292, + 0.015873409807682037, + 0.03438229113817215, + 0.005907089915126562, + -3.413113290662295e-6, + 0.009776990860700607, + 0.03008071891963482, + -0.0014862389070913196, + 0.009580087848007679, + -0.026294121518731117, + -0.007523966021835804, + -0.009663392789661884, + 0.011753593571484089, + -0.009693685919046402, + -0.02164418250322342, + 0.005986608099192381, + -0.025021826848387718, + -0.0018118862062692642, + 0.006724994629621506, + 0.0417737253010273, + 0.01859975978732109, + 0.03092891536653042, + 0.015676507726311684, + -0.007190745789557695, + 0.030535109341144562, + 0.013722623698413372, + 0.01077665202319622, + -0.004971800372004509, + -0.0024044883903115988, + -0.002440461190417409, + 0.0011236723512411118, + 0.008262352086603642, + -0.033897608518600464, + -0.005157343577593565, + -0.012579072266817093, + -0.0016509558772668242, + 0.003835821757093072, + -0.021523011848330498, + -0.029383985325694084, + 0.009284732863307, + 0.0020428686402738094, + -0.03662395477294922, + 0.03601809963583946, + 0.0033113781828433275, + 0.010125357657670975, + -0.025551948696374893, + -0.017751561477780342, + 0.0013196286745369434, + -0.004116029944270849, + -0.005501924082636833, + 0.019902348518371582, + 0.009580087848007679, + -0.0371086411178112, + -0.0274149551987648, + 0.010814517736434937, + -0.02273472212255001, + -0.003474201774224639, + -0.005683680530637503, + 0.035957515239715576, + -0.005891943350434303, + -0.01658529043197632, + -0.0031712742056697607, + 0.01088267657905817, + -0.0025313394144177437, + 0.021583596244454384, + 0.03601809963583946, + -0.03029276803135872, + 0.015017639845609665, + -0.021401841193437576, + 0.024067604914307594, + 0.0034874549601227045, + -0.0021204936783760786, + 0.015282701700925827, + -0.005342886783182621, + -0.007728442549705505, + 0.01442693080753088, + -0.027006002143025398, + 0.003328417893499136, + -0.010829664766788483, + -0.003561293473467231, + 0.009140842594206333, + 0.00809574220329523, + -0.028490347787737846, + -0.0068537387996912, + -0.01788787916302681, + -0.0032337529119104147, + -0.004869562573730946, + 0.00024399877293035388, + -0.0021488931961357594, + 0.01077665202319622, + 0.0006243149982765317, + 0.006577317137271166, + -0.016312655061483383, + 0.014419357292354107, + -0.010087491944432259, + -0.01221555843949318, + -0.00014211567759048194, + -0.00670606130734086, + -0.008913646452128887, + -0.01217011921107769, + 0.006944616790860891, + -0.007936704903841019, + -0.030610842630267143, + -0.008807621896266937, + 0.004960440564900637, + -0.023476894944906235, + -0.01428303960710764, + 0.020644521340727806, + 0.0059563154354691505, + 0.010587322525680065, + 0.00978456437587738, + 0.0008169580833055079, + 0.03759332373738289, + -0.002970584435388446, + 0.003226179862394929, + 0.0032659389544278383, + 0.007611057721078396, + 0.0075807650573551655, + -0.017812147736549377, + 0.008065449073910713, + 0.022719575092196465, + -0.007266477681696415, + -0.029368838295340538, + 0.015752239152789116, + -0.0061759380623698235, + 0.04543915018439293, + 0.014517809264361858, + -0.013434842228889465, + -0.004964227322489023, + -0.002590031595900655, + -0.012760828249156475, + 0.016342949122190475, + -0.01578253135085106, + -0.0027642149943858385, + 0.007080934476107359, + -0.027399808168411255, + 0.01447237003594637, + -0.0023590493947267532, + 0.003002770710736513, + -0.0043470123782753944, + 0.006232737097889185, + -0.010905396193265915, + -0.0027017362881451845, + 0.007675429806113243, + -7.798021397320554e-5, + 0.010034479200839996, + -0.028747836127877235, + 0.0088606346398592, + -0.0065659573301672935, + 0.030277621001005173, + -0.020174983888864517, + -0.010784225538372993, + -0.013381830416619778, + 0.018887540325522423, + 0.025597387924790382, + -0.016146045178174973, + -0.054102882742881775, + -0.009110549464821815, + 0.02582458406686783, + -0.014192162081599236, + 0.0010356339626014233, + 0.012669949792325497, + -0.018932979553937912, + 0.004733244888484478, + 0.022507525980472565, + 0.03738127648830414, + -0.012616937980055809, + 0.013389403000473976, + 0.003752516582608223, + -0.026384999975562096, + 0.00917113572359085, + -0.01599458046257496, + 0.01746378093957901, + 0.0030311699956655502, + 0.02079598419368267, + -0.03201945498585701, + -0.00656974408775568, + -0.02247723378241062, + 0.029580887407064438, + 0.010072344914078712, + -0.021114058792591095, + -0.018190806731581688, + 0.02611236646771431, + 0.02485521510243416, + 0.007762521971017122, + -0.004755964502692223, + -0.02788449265062809, + 0.017736416310071945, + 0.02070510759949684, + -0.005520856939256191, + 0.017100267112255096, + -0.019296493381261826, + -0.005952528677880764, + 0.023991871625185013, + -0.016524704173207283, + 0.0052860877476632595, + 2.1432724679470994e-5, + 0.021098913624882698, + -0.030307915061712265, + 0.0014796124305576086, + 0.009254440665245056, + -0.018887540325522423, + -0.02287103980779648, + 0.020356740802526474, + 0.018781516700983047, + -0.014714712277054787, + 0.006558384280651808, + -0.00471431203186512, + 0.002468860475346446, + 0.009186281822621822, + 0.002688483102247119, + -0.031201550737023354, + 0.015494750812649727, + -0.002970584435388446, + 0.008012437261641026, + 0.004960440564900637, + 0.0030974354594945908, + 0.023885848000645638, + 0.002186759142205119, + 0.020780839025974274, + 0.0025597389321774244, + 0.012662377208471298, + -0.006073699798434973, + 0.016297509893774986, + -0.0038774742279201746, + 0.010405565612018108, + 0.00010987044515786693, + -0.014389065094292164, + 0.0039342730306088924, + 0.024052457883954048, + -0.005721546709537506, + -0.0371086411178112, + 0.004373518284410238, + -0.0007838253513909876, + -0.0001928797282744199, + 0.0090726837515831, + 0.003517747623845935, + 0.006119139026850462, + 0.012912292033433914, + -0.009564941748976707, + -0.00993602816015482, + -0.019266201183199883, + -0.013843795284628868, + -0.0071036540903151035, + -0.02327999286353588, + 0.023355724290013313, + 0.01082209125161171, + -0.007436874322593212, + -0.030853183940052986, + -0.016358094289898872, + -0.0018402856076136231, + 0.021735060960054398, + 0.010390419512987137, + -0.028581226244568825, + -0.00256731198169291, + -0.002961118007078767, + -0.01026924792677164, + -0.0027017362881451845, + -0.04128904268145561, + -0.03353409469127655, + 0.028111688792705536, + -0.009943600744009018, + 0.015350859612226486, + 0.018781516700983047, + 0.004631007090210915, + 0.0049566542729735374, + 0.01103414036333561, + -0.0058237845078110695, + -0.005217929370701313, + 0.030519964173436165, + 0.016252070665359497, + -0.013949819840490818, + 0.016797339543700218, + -0.0053996858187019825, + 0.030020132660865784, + -0.005217929370701313, + 0.019917495548725128, + 0.045832958072423935, + -0.0046045007184147835, + -0.012669949792325497, + 0.003930486738681793, + 0.014525381848216057, + 0.010026905685663223, + 0.015918849036097527, + 0.03907766938209534, + 0.009496782906353474, + 0.008421389386057854, + -0.04295514523983002, + -0.0354425385594368, + -0.019856909289956093, + -0.035624295473098755, + 0.000271451601292938, + 0.0024177415762096643, + -0.0012969091767445207, + 0.008951513096690178, + 0.03008071891963482, + -0.0058767967857420444, + 0.006952190306037664, + -0.03953206166625023, + 0.000156552079715766, + -0.010095064528286457, + -2.4494542230968364e-5, + -0.010155650787055492, + -0.02311338111758232, + -0.0033587105572223663, + -0.012563925236463547, + 0.023401163518428802, + -0.014495089650154114, + 0.0071755992248654366, + 0.012473046779632568, + 0.01637324132025242, + -0.024749191477894783, + -0.02003866620361805, + -0.009004524908959866, + -0.004320506006479263, + 0.004309146199375391, + -0.003406043164432049, + -0.004877135623246431, + -0.0029346118681132793, + -0.0068575250916182995, + 0.003527214052155614, + 0.011291629634797573, + -0.0013650679029524326, + -0.00649779848754406, + 0.014510235749185085, + -0.04137992113828659, + 0.02290133200585842, + -0.03447316959500313, + -0.00695976335555315, + 0.01402555126696825, + 0.02906591072678566, + 0.006796939764171839, + 0.02287103980779648, + -0.008216912858188152, + 0.018826955929398537, + 0.01594914309680462, + 0.011905057355761528, + 0.004691592417657375, + -0.02889930084347725, + -0.0044909026473760605, + 0.010572175495326519, + -0.008762182667851448, + -0.0073422095738351345, + -0.025067266076803207, + -0.012851706705987453, + -0.00014270732935983688, + 0.015070651657879353, + -0.002981944242492318, + -0.005403472576290369, + -0.026809100061655045, + 0.005017239600419998, + -0.0014625727199018002, + 0.0037013974506407976, + -0.002196225570514798, + -0.01061004213988781, + -0.0191904678940773, + -0.004271280486136675, + 0.007777668070048094, + 0.019629713147878647, + 0.017236584797501564, + -0.00399864511564374, + 0.018569465726614, + -0.011147738434374332, + 0.016630729660391808, + -0.020644521340727806, + 0.004983160179108381, + -0.03189828619360924, + 0.010769078508019447, + -0.0052747284062206745, + -0.0013073222944512963, + -0.005077825393527746, + -0.012132253497838974, + -0.012245851568877697, + 0.004350798670202494, + -0.006395560689270496, + 0.003019810188561678, + -0.01590370386838913, + 0.010375273413956165, + 0.036048393696546555, + -0.006834805943071842, + -0.007478527259081602, + 0.03429141268134117, + -0.010981128551065922, + 0.013586306013166904, + 0.0007705722819082439, + 0.003114475170150399, + -0.010996274650096893, + -0.028444908559322357, + 0.010685773566365242, + -0.022886186838150024, + -0.0014086137525737286, + -0.004449250176548958, + 0.012859280221164227, + -0.0046234335750341415, + 0.008981805294752121, + 0.02873269096016884, + -0.03386731445789337, + -0.03395819291472435, + -0.0006702275131829083, + -0.01928134635090828, + -0.010602468624711037, + -0.02122008427977562, + -0.0035556135699152946, + 0.020402178168296814, + -0.034018777310848236, + 0.010140503756701946, + 0.01082209125161171, + 0.005202782806009054, + -0.001119885710068047, + -0.0033795367926359177, + -0.02434023842215538, + -0.0227801613509655, + 0.019220761954784393, + 0.032928239554166794, + -0.005551149602979422, + 0.006395560689270496, + 0.0024044883903115988, + -0.011995935812592506, + 0.035836342722177505, + -0.02008410543203354, + 0.027006002143025398, + 0.005907089915126562, + 0.007027922198176384, + 0.003417402971535921, + -0.02112920582294464, + -0.004918788094073534, + -0.011594557203352451, + -0.0012306437129154801, + 0.010496444068849087, + -0.0014218668220564723, + -0.011299202218651772, + -0.020811131224036217, + -0.017221437767148018, + 0.0005021973047405481, + -0.019720591604709625, + -0.0025786717887967825, + 0.010466150939464569, + 0.002412061672657728, + -0.02337086945772171, + -0.017903026193380356, + -0.00682344613596797, + -0.009708832018077374, + 0.010890250094234943, + -0.00985272228717804, + 0.0023439028300344944, + 0.0001952463499037549, + 0.0002875446225516498, + -0.021204937249422073, + -0.007080934476107359, + -0.015615921467542648, + -0.002688483102247119, + -0.0008273712010122836, + -0.0026089646853506565, + 0.015275128185749054, + 0.003089862409979105, + 0.0020466551650315523, + -0.014290613122284412, + -0.012533633038401604, + 0.007671643514186144, + -0.001259043114259839, + -0.0008316311286762357, + 0.005475417710840702, + 0.013639318756759167, + 0.01788787916302681, + 0.02982323057949543, + -0.0046045007184147835, + -0.009769417345523834, + -0.007792814634740353, + -0.008694024756550789, + 0.0005386432749219239, + -0.00985272228717804, + 0.007906412705779076, + -0.004930147901177406, + -0.018660344183444977, + 0.08039700239896774, + 0.002268170937895775, + 0.0004913108423352242, + 0.00021974089031573385, + 0.0003313271445222199, + -0.01578253135085106, + -0.015843117609620094, + 0.01994778774678707, + -0.002947865054011345, + 0.004915001802146435, + 0.018720930442214012, + -0.0037316903471946716, + 0.002953544957563281, + -0.013041036203503609, + -0.030595695599913597, + 0.007050641812384129, + 0.005320167168974876, + 0.011980789713561535, + -0.02143213339149952, + 0.01525240857154131, + -0.0011255656136199832, + -0.026718221604824066, + -0.02138669416308403, + 0.04898340627551079, + -0.008050302974879742, + 0.019008710980415344, + 0.0007000469486229122, + -0.010617614723742008, + 0.025324754416942596, + 0.019417664036154747, + -0.006842378992587328, + -0.009209001436829567, + -0.008906073868274689, + 0.008731890469789505, + -0.002298463834449649, + 0.007012775633484125, + -0.004165255464613438, + 0.02585487812757492, + 0.001274189562536776, + 0.022810453549027443, + -0.010049625299870968, + 0.0024215281009674072, + 0.002092094160616398, + 0.01499492023140192, + -0.025430778041481972, + -0.01417701505124569, + -0.0037316903471946716, + 0.0005978088593110442, + 0.0034571620635688305, + -0.00041060900548473, + 0.0008917433442547917, + -0.04150109365582466, + 0.006554597523063421, + 0.011079579591751099, + 0.012510913424193859, + -0.003021703567355871, + 0.01687307097017765, + -0.03226179629564285, + 0.0014086137525737286, + 0.01303346361964941, + -0.013025890104472637, + -0.0039418465457856655, + -0.0187663696706295, + -0.01232158299535513, + -0.028717543929815292, + -0.010117784142494202, + -0.018296832218766212, + -0.009928454644978046, + 0.009617953561246395, + -0.0031447680667042732, + -0.012768401764333248, + 0.01966000720858574, + 0.008898500353097916, + -0.02991410903632641, + 0.014737431891262531, + 0.03535166010260582, + 0.021356401965022087, + 0.012836560606956482, + 0.0032621524296700954, + 0.00023133734066504985, + -0.000890796713065356, + 0.007345996331423521, + -0.022931626066565514, + -0.017054827883839607, + -0.0009120962931774557, + -0.017706122249364853, + 0.0179333183914423, + -0.025763999670743942, + -0.00015939201693981886, + -0.014752577990293503, + 0.0008685504435561597, + -0.015259982086718082, + -0.008959085680544376, + -0.001082966453395784, + -0.011594557203352451, + 0.00953464861959219, + 0.0018611119594424963, + -0.0048430562019348145, + -0.00024021217541303486, + 0.0014124002773314714, + 0.024279654026031494, + 0.010140503756701946, + -0.009284732863307, + 0.009572514332830906, + -0.006743927486240864, + 0.006649262737482786, + 0.013109195046126842, + -0.007860973477363586, + -0.0280511025339365, + -0.005997967906296253, + -0.006448572967201471, + -0.0033927899785339832, + 0.007027922198176384, + 0.01242760755121708, + -0.007376288995146751, + -0.002834266982972622, + 0.007149093318730593, + -0.014835882931947708, + -0.01578253135085106, + 0.002552165649831295, + -0.013631745241582394, + 0.004468183033168316, + 0.012768401764333248, + -0.01953883469104767, + 0.009655819274485111, + 0.00011353871377650648, + -0.017827292904257774, + -0.004854416009038687, + -0.012730536051094532, + 0.001583743724040687, + 0.008822768926620483, + 0.013896807096898556, + 0.03198916092514992, + -0.002917572157457471, + 0.007421728223562241, + -0.010731212794780731, + 0.0094892093911767, + -0.0001778516743797809, + 0.013215219601988792, + -0.0223560631275177, + 0.015010066330432892, + 0.005036172457039356, + 0.006993842776864767, + 0.03377643600106239, + -0.0009665286052040756, + 0.0013783209724351764, + 0.002552165649831295, + -0.023219406604766846, + 0.007607271429151297, + -0.01682763174176216, + 0.019962934777140617, + -0.018251392990350723, + -0.0041804020293056965, + -0.019054150208830833, + -0.0019112842855975032, + -0.0028191206511110067, + -0.01242760755121708, + 0.026127511635422707, + -0.020947448909282684, + 0.001234430237673223, + -0.007266477681696415, + -0.002133746864274144, + -0.017282024025917053, + -0.012283717282116413, + -0.011132592335343361, + 0.027960224077105522, + 0.00917870830744505, + 0.022855892777442932, + 0.009466489776968956, + -0.0008789635612629354, + -0.024537142366170883, + -0.009678538888692856, + 0.0054526980966329575, + -0.030641134828329086, + 0.023931287229061127, + -0.013169780373573303, + 0.0016679954715073109, + -0.004165255464613438, + -0.017054827883839607, + 0.017115414142608643, + -0.018842101097106934, + -0.0008879567612893879, + 0.014404211193323135, + -0.0041273897513747215, + 0.0018383923452347517, + -0.009981467388570309, + 0.00043545852531678975, + -0.010557029396295547, + -0.014601114206016064, + 0.0038187820464372635, + -0.007656496949493885, + -0.002877812832593918, + 0.002599498024210334, + -0.0003303804842289537, + -0.02476433850824833, + -0.01703968271613121, + 0.013018316589295864, + 0.023098235949873924, + 0.021962257102131844, + -0.007770095020532608, + -0.007046855054795742, + 0.021750207990407944, + 0.027657296508550644, + 0.010557029396295547, + -0.01485102903097868, + -0.008103315718472004, + 0.0029024258255958557, + -0.0032735122367739677, + 0.014623833820223808, + 0.021310962736606598, + -0.03008071891963482, + -0.019508542492985725, + 0.017494073137640953, + 0.01885724812746048, + 0.008671305142343044, + 0.006815872620791197, + 0.013684757985174656, + 0.02032644674181938, + 0.0007805121131241322, + -0.006149431690573692, + 0.011867191642522812, + 0.005384539254009724, + 0.0016594757325947285, + 0.0010214343201369047, + 0.001503278617747128, + -0.004434104077517986, + 0.006130498833954334, + 0.0026525105349719524, + 0.023779822513461113, + 0.0029649045318365097, + 0.027657296508550644, + -0.0030084506142884493, + -0.024037310853600502, + 0.03295852988958359, + -0.019508542492985725, + 0.027854200452566147, + 0.02582458406686783, + -0.004763537552207708, + 0.001051726983860135, + 0.007876119576394558, + -0.029520303010940552, + 0.008595572784543037, + -0.014684419147670269, + -0.007815534248948097, + -0.004335652571171522, + -0.019841762259602547, + 0.002446141093969345, + -0.007898839190602303, + 0.004028938245028257, + -2.8488218958955258e-5, + -0.030701719224452972, + -0.0018970845267176628, + -0.003733583725988865, + 0.023522334173321724, + 0.02349204197525978, + -0.0177212692797184, + -0.012071668170392513, + -0.008042729459702969, + -0.0070847212336957455, + -0.030444230884313583, + 0.005392112769186497, + 0.007777668070048094, + -0.0021451066713780165, + -0.006982482969760895, + 0.006588676944375038, + 0.019856909289956093, + -0.01139008067548275, + 5.5408549087587744e-5, + 0.031534772366285324, + 0.009148416109383106, + 0.014328478835523129, + -0.018448295071721077, + -0.009474063292145729, + 0.018327124416828156, + -0.011352214962244034, + -0.01763039082288742, + 0.023673798888921738, + -0.016358094289898872, + 0.008671305142343044, + 0.01531299389898777, + 0.008262352086603642, + -0.008126035332679749, + 0.009617953561246395, + -0.031534772366285324, + 0.007168026175349951, + -0.025218728929758072, + -0.007618631236255169, + 0.0022908905521035194, + 0.002951651578769088, + 0.011162884533405304, + -0.01578253135085106, + -0.03177711367607117, + 0.003010343760251999, + -0.023128528147935867, + 0.025339899584650993, + 0.005501924082636833, + -0.0025161930825561285, + -0.013677184469997883, + -0.01050401758402586, + -0.003341670846566558, + 0.004778684116899967, + -0.0035063878167420626, + -0.0022965704556554556, + -0.017494073137640953, + 0.00232118321582675, + 0.005725333001464605, + 0.025233875960111618, + 0.013843795284628868, + -0.0009873548988252878, + 0.026627343147993088, + -3.5647251934278756e-5, + 0.0010593002662062645, + 0.0061418586410582066, + 0.003231859765946865, + 0.002682803198695183, + 0.013041036203503609, + -0.0177212692797184, + 0.022765014320611954, + -0.0022151586599648, + 0.004195548128336668, + 0.0019974294118583202, + 0.015933996066451073, + 0.009049964137375355, + -0.011753593571484089, + -0.0037354768719524145, + 0.02897503226995468, + 0.017736416310071945, + 0.009352891705930233, + 0.009496782906353474, + -0.026309268549084663, + 0.014798017218708992, + -0.0004032724827993661, + -0.01831197738647461, + -0.00353289395570755, + -0.020311301574110985, + 0.024688605219125748, + -0.02020527608692646, + -0.0021602530032396317, + -0.012177692726254463, + 0.009110549464821815, + -0.008330510929226875, + -0.003655958455055952, + -0.008716744370758533, + 0.002824800554662943, + 0.013745343312621117, + 0.024203920736908913, + 0.00856527965515852, + -0.005115691106766462, + 0.008777329698204994, + 0.02147757261991501, + -0.001781593426130712, + 0.025597387924790382, + 0.01160212978720665, + 0.0007019402110017836, + 3.6904518765368266e-6, + 0.007027922198176384, + 0.00789126567542553, + 0.01658529043197632, + -0.009186281822621822, + 0.0050891852006316185, + -0.005679893773049116, + 0.003290551947429776, + -0.010079918429255486, + -0.005448911804705858, + 0.0007265530875883996, + 0.016979096457362175, + -0.001837445655837655, + 0.00082121801096946, + -0.03741156682372093, + 0.005634455010294914, + 0.011276482604444027, + -0.013881660997867584, + -0.02209857478737831, + -0.005501924082636833, + -0.01746378093957901, + 0.011776313185691833, + -0.004994519986212254, + 0.01779700070619583, + -0.005952528677880764, + 0.007671643514186144, + 0.01737290248274803, + 0.018887540325522423, + 0.001717221224680543, + -0.01616119220852852, + 0.00721346540376544, + 0.02053849585354328, + -0.00513462396338582, + 0.011889911256730556, + 0.0006839538691565394, + -0.0037108641117811203, + -0.008890927769243717, + -0.012260997667908669, + 0.003229966387152672, + -0.012329156510531902, + 0.0009324492421001196, + 0.015570482239127159, + -0.018251392990350723, + 0.014267893508076668, + -0.008368376642465591, + 0.014911615289747715, + -0.00818662066012621, + -0.011200751177966595, + 0.003513961099088192, + 0.02070510759949684, + 0.00310690188780427, + -0.021750207990407944, + 0.004051657859236002, + 0.009049964137375355, + 0.030353352427482605, + -0.012730536051094532, + -0.009284732863307, + 0.005426192190498114, + -0.01607031375169754, + 0.0021564664784818888, + 0.019887201488018036, + 0.01973573863506317, + 0.01873607747256756, + -0.00011584616731852293, + 0.008875780738890171, + 0.00642206659540534, + 0.00860314629971981, + -0.013699904084205627, + 0.004422744270414114, + -0.0013006957015022635, + -0.0008926899754442275, + -0.011170458048582077, + 0.03295852988958359, + 0.010511590167880058, + 0.004339438863098621, + 0.004945294465869665, + -0.007069574669003487, + -0.030065571889281273, + -0.016554998233914375, + 0.02202284149825573, + -0.009360465221107006, + -0.0052330754697322845, + 0.026521317660808563, + 0.011723301373422146, + 0.0017626604530960321, + 0.008512267842888832, + -0.035957515239715576, + 0.0010375273413956165, + -0.00553600350394845, + -0.0021204936783760786, + 0.028111688792705536, + -0.00917870830744505, + 0.01628236286342144, + -0.00642206659540534, + 0.0172971710562706, + 0.008678877726197243, + -0.0014370131539180875, + -0.002484007040038705, + 0.007523966021835804, + 0.01800904981791973, + -0.01881180889904499, + -0.01696394942700863, + 0.008898500353097916, + -0.0007435927982442081, + 0.024612873792648315, + -0.03220121189951897, + -0.010965981520712376, + 0.0008855901542119682, + 0.005289874505251646, + -0.004930147901177406, + 0.009678538888692856, + -4.984698534826748e-5, + 0.02703629434108734, + 0.018281685188412666, + -0.010110211558640003, + 0.0019936428871005774, + -0.020402178168296814, + 0.017024535685777664, + 0.012806267477571964, + -0.015320567414164543, + 0.022643843665719032, + 0.015918849036097527, + 0.0012817627284675837, + 0.019766030833125114, + 0.002419634722173214, + -0.001685981871560216, + 0.00993602816015482, + 0.014828309416770935, + -0.011814179830253124, + 0.010307114571332932, + 0.01699424348771572, + -0.01653985120356083, + -0.012253424152731895, + 0.0038926205597817898, + 0.010072344914078712, + 0.0034003632608801126, + 0.017433488741517067, + -2.4982658942462876e-5, + 0.014669273048639297, + -0.001707754796370864, + 0.0027452821377664804, + -0.008572853170335293, + 0.01578253135085106, + 0.007005202583968639, + -0.006160791497677565, + -0.007372502237558365, + 0.004952867515385151, + -0.0029062123503535986, + -0.008701597340404987, + 0.013851367868483067, + 0.011662716045975685, + -0.0006413547089323401, + 0.009958747774362564, + 0.008285071700811386, + 0.018402855843305588, + 0.013449989259243011, + 0.013366683386266232, + 0.005744265858083963, + -0.013465135358273983, + -0.0022435581777244806, + -0.005873010493814945, + 0.024612873792648315, + 0.007050641812384129, + -0.004865775816142559, + 0.013722623698413372, + -0.0090726837515831, + -0.01402555126696825, + -0.03429141268134117, + 0.007224825210869312, + 0.02944456972181797, + 0.029853522777557373, + -0.0034003632608801126, + 0.020977741107344627, + -0.010170796886086464, + 0.009511929005384445, + -0.015843117609620094, + 0.006319828797131777, + 0.0028039743192493916, + -0.011995935812592506, + -0.007376288995146751, + 0.013298525474965572, + 0.007194532547146082, + 0.019039005041122437, + 0.02138669416308403, + 0.035412244498729706, + -0.0058540771715343, + 0.020992888137698174, + 0.0002934611984528601, + 0.004562848247587681, + -0.0034817750565707684, + 0.0037695562932640314, + -0.00902724452316761, + 0.004350798670202494, + -0.0037506232038140297, + 0.011836899444460869, + -0.011670288629829884, + -0.016676168888807297, + -0.007258904632180929, + 0.026218390092253685, + 0.009034818038344383, + 0.0066719818860292435, + -0.010731212794780731, + -8.898500527720898e-5, + 0.004960440564900637, + -0.009883015416562557, + 0.015297847799956799, + -0.014510235749185085, + 0.012404887937009335, + -0.02396157942712307, + 0.0003159441112075001, + -0.011821752414107323, + 0.0075088199228048325, + 0.030550256371498108, + 0.0014105070149526, + 0.02294677123427391, + 0.0044909026473760605, + -0.008853061124682426, + -0.005808638408780098, + -0.008777329698204994, + -0.002190545666962862, + -0.0061229257844388485, + 0.0034230826422572136, + -0.04198577627539635, + 0.013881660997867584, + 0.0015241048531606793, + -0.006187297869473696, + -0.006702275015413761, + -0.006967336405068636, + -0.026430439203977585, + -0.013237939216196537, + 0.005676107481122017, + 0.01594914309680462, + 0.0012893358943983912, + -0.007542899344116449, + 0.007683003321290016, + -0.029580887407064438, + 0.01628236286342144, + 0.002080734586343169, + 0.0035063878167420626, + -0.02282560057938099, + 0.015335713513195515, + 0.002128066960722208, + 0.0016216096701100469, + -0.0007000469486229122, + -0.02112920582294464, + -0.020190129056572914, + -0.008724316954612732, + 0.00902724452316761, + -0.0015449312049895525, + -0.00617972481995821, + 0.016948804259300232, + -0.004464396741241217, + 0.02273472212255001, + -0.0221440140157938, + 0.0025218729861080647, + 0.0056458148173987865, + -0.005422405432909727, + -0.02429479919373989, + 0.0025502722710371017, + -0.0027017362881451845, + 0.00207316130399704, + -0.0073232767172157764, + 0.015434165485203266, + -0.006444786209613085, + 0.010950835421681404, + -0.002512406324967742, + 0.019296493381261826, + 0.00953464861959219, + -0.015555336140096188, + -0.002919465536251664, + 0.0009485422633588314, + 0.012298863381147385, + 0.006550811231136322, + -0.00985272228717804, + 0.018372563645243645, + -0.01675190031528473, + -0.0019112842855975032, + 0.026248684152960777, + -0.016857925802469254, + -0.015222115442156792, + 0.008345657959580421, + 0.005191422998905182, + -0.020735399797558784, + -0.012700242921710014, + -0.0035896929912269115, + -0.01160212978720665, + 0.006724994629621506, + -0.011920204386115074, + -0.002396915340796113, + 0.01734261028468609, + 0.01653985120356083, + -0.002391235437244177, + 0.0026714433915913105, + 0.013321245089173317, + -0.006993842776864767, + -0.0006749607273377478, + -0.026248684152960777, + 0.029550595209002495, + -0.017872732132673264, + 0.010299541056156158, + -0.0013773742830380797, + 0.007550472393631935, + 0.007448234129697084, + -0.02459772676229477, + 0.03307970240712166, + -0.001366961165331304, + -0.010155650787055492, + -0.01607031375169754, + -0.025657974183559418, + 0.009352891705930233, + -0.00917870830744505, + -0.013866514898836613, + 0.013662038370966911, + -0.003705184208229184, + -0.02003866620361805, + -0.020992888137698174, + -0.00742551451548934, + 0.005577655974775553, + -0.02315882034599781, + 0.007966998033225536, + 0.014502662234008312, + 0.013593879528343678, + -0.00124957668595016, + 0.0025199796073138714, + 0.012753255665302277, + -0.01594914309680462, + -0.006592463701963425, + 0.0017427807906642556, + -0.0013328817440196872, + -0.019917495548725128, + -1.5309089576476254e-5, + 0.0035518270451575518, + -0.010723640210926533, + -0.006281962618231773, + 0.011647569015622139, + -0.008557707071304321, + -0.01514638401567936, + 0.003303804900497198, + -0.008587999269366264, + -0.010693347081542015, + 0.0036370253656059504, + -0.005695040337741375, + 0.0013432949781417847, + -0.025127850472927094, + -0.015093371272087097, + -0.011420373804867268, + -0.012457900680601597, + -0.013086475431919098, + 0.026733366772532463, + 0.003703290829434991, + -0.007982144132256508, + -0.00896665919572115, + 0.005873010493814945, + -0.01235944963991642, + 0.0031939935870468616, + 0.006183511111885309, + 0.000555209640879184, + 0.009981467388570309, + -0.010238955728709698, + -0.003095542313531041, + -0.001927377306856215, + -0.03088347613811493, + -0.00026293174596503377, + -0.002440461190417409, + 0.0015865836758166552, + 0.0005940222181379795, + -0.0134954284876585, + 0.00809574220329523, + -0.015509896911680698, + 0.0137074775993824, + -0.009034818038344383, + -0.013374256901443005, + 0.0019709232728928328, + -0.0037695562932640314, + -0.01273810863494873, + -0.016297509893774986, + 0.009087830781936646, + 0.0012599898036569357, + -0.006694701500236988, + 0.006933257449418306, + -0.0012401101412251592, + -0.009928454644978046, + -0.004619647283107042, + 0.0015335713978856802, + -0.009617953561246395, + -0.004407597705721855, + -0.022204598411917686, + -0.028460055589675903, + -0.029792936518788338, + -0.010299541056156158, + 0.005395899061113596, + -0.00577834527939558, + -0.0027547485660761595, + 0.01252605952322483, + -0.024870362132787704, + 0.013715050183236599, + -0.010110211558640003, + -0.017115414142608643, + 0.025461072102189064, + -0.006425853352993727, + 0.007062001619488001, + 0.0034533755388110876, + 0.0194025170058012, + 0.007383862044662237, + 0.003245112719014287, + 0.005581442266702652, + 0.005289874505251646, + 0.003103115363046527, + 0.015388726256787777, + 0.025021826848387718, + -0.003108795266598463, + 0.008451682515442371, + -0.0028721329290419817, + -0.004517409019172192, + -0.01699424348771572, + 0.022265184670686722, + 0.0032772987615317106, + 0.011102299205958843, + -0.01973573863506317, + -0.029520303010940552, + -0.03619985654950142, + -0.021068619564175606, + -0.014124003238976002, + 0.0010545669356361032, + 0.013556013815104961, + -0.0020428686402738094, + 0.007671643514186144, + -0.012101960368454456, + -0.02015983685851097, + 0.012798693962395191, + -0.014729858376085758, + 0.007505033165216446, + -0.01417701505124569, + 0.010375273413956165, + 0.019932640716433525, + 0.010390419512987137, + 0.013609025627374649, + -0.006353908218443394, + -0.03571517392992973, + -0.01088267657905817, + 0.02143213339149952, + -0.018205953761935234, + 0.004422744270414114, + -0.024900654330849648, + -0.0022435581777244806, + -0.008724316954612732, + -0.003250792622566223, + 0.008610718883574009, + 0.004513622261583805, + -0.019887201488018036, + 0.0024726472329348326, + 0.01906929723918438, + -0.030307915061712265, + -0.00860314629971981, + 0.016342949122190475, + 0.0033549240324646235, + 0.007016562391072512, + -0.009943600744009018, + 0.011397654190659523, + -0.007671643514186144, + -0.007815534248948097, + -0.01421488169580698, + 0.010625188238918781, + -0.0001084504765458405, + 0.011882337741553783, + 0.007732228841632605, + -0.011208323761820793, + 0.00628574937582016, + 0.02046276442706585, + -0.008989378809928894, + -0.007792814634740353, + 0.006717421114444733, + 0.006145645398646593, + -0.007876119576394558, + -0.011473385617136955, + -0.004933934658765793, + -0.01092811580747366, + -0.0007331796223297715, + 0.006278176326304674, + 0.01546445768326521, + 0.026597050949931145, + -0.026672782376408577, + -0.002440461190417409, + 0.01800904981791973, + -0.004422744270414114, + 0.004646153189241886, + 0.013654464855790138, + -0.0137074775993824, + -0.0020371887367218733, + 0.007012775633484125, + 0.005172490142285824, + 0.011912630870938301, + -0.016040019690990448, + -0.009330172091722488, + -0.0052671548910439014, + -0.02480977587401867, + 0.007667856756597757, + 0.020659668371081352, + 0.010973555035889149, + 0.014858602546155453, + -0.027960224077105522, + 0.008527413941919804, + -0.009686112403869629, + -0.017448633909225464, + 0.0014512129127979279, + -0.002590031595900655, + 0.01973573863506317, + 0.003849074710160494, + -0.008527413941919804, + -0.003318951465189457, + 0.015388726256787777, + 0.005255795083940029, + -0.01436634548008442, + 0.0055132838897407055, + 0.002239771420136094, + -0.00507403863593936, + -0.008012437261641026, + -0.002230304991826415, + -0.011011420749127865, + 0.007459593936800957, + -0.01581282541155815, + -0.0027093093376606703, + 0.013631745241582394, + 0.004153895657509565, + 0.001856378628872335, + 0.00932259950786829, + -0.023083088919520378, + -0.003956992644816637, + 0.0029421851504594088, + 0.01687307097017765, + -0.011594557203352451, + -0.0018611119594424963, + 0.029580887407064438, + -0.024612873792648315, + -0.0038433948066085577, + 0.02977779135107994, + 0.008837915025651455, + 0.003133408259600401, + 0.006334974896162748, + -0.008126035332679749, + -0.009019671939313412, + -0.013669611886143684, + 0.02370409108698368, + 0.015267554670572281, + -0.021144350990653038, + 0.018493734300136566, + 0.008906073868274689, + 0.026566756889224052, + -0.013321245089173317, + -0.005411045625805855, + -0.006967336405068636, + -0.008239632472395897, + -0.033140286803245544, + 0.007906412705779076, + 0.0007218198734335601, + 0.015827970579266548, + -0.009617953561246395, + 0.012162546627223492, + 0.004755964502692223, + -0.007016562391072512, + -0.006774220149964094, + 0.012692669406533241, + 0.019902348518371582, + -0.011306775733828545, + -0.002010682364925742, + -0.035018440335989, + -0.02953544817864895, + 0.017766708508133888, + 0.0234163086861372, + 0.014676845632493496, + 0.007387648802250624, + -0.00296301138587296, + 0.006509158294647932, + -0.021523011848330498, + 0.0035783331841230392, + -0.0041804020293056965, + 0.0263698548078537, + -0.004960440564900637, + -0.002610857831314206, + -0.011268910020589828, + -0.013154634274542332, + -0.00989058893173933, + 0.011193177662789822, + -0.01278354786336422, + 0.008587999269366264, + -0.012753255665302277, + 0.023310285061597824, + 0.014464796520769596, + -0.011821752414107323, + 0.00018530653323978186, + -0.011480959132313728, + -0.003652171930298209, + 0.0022435581777244806, + 0.003167487448081374, + -0.024400824680924416, + 0.007387648802250624, + -0.022916479036211967, + 0.008716744370758533, + 0.03223150596022606, + -0.005979035049676895, + 0.010276821441948414, + 0.02164418250322342, + -0.003016023663803935, + -0.005554936360567808, + -0.017857586964964867, + -0.018993565812706947, + -0.005263368599116802, + -0.014343625865876675, + 0.00803515687584877, + 0.0004240987473167479, + 0.016267215833067894, + 0.008572853170335293, + 0.005846504122018814, + -0.014230027794837952, + -0.010912969708442688, + 0.0008250045939348638, + 0.007921558804810047, + 0.014154295437037945, + 1.517596683697775e-5, + -0.0034022564068436623, + 0.03192857652902603, + 0.017403194680809975, + -0.028369177132844925, + 0.00938318483531475, + 0.009557368233799934, + 0.005873010493814945, + -0.00507403863593936, + -9.68540261965245e-5, + 0.005944955628365278, + -0.011859618127346039, + 0.024749191477894783, + 0.0001584453711984679, + 0.009617953561246395, + -0.00631604203954339, + 0.01658529043197632, + -0.004028938245028257, + -0.0016036233864724636, + -0.011405226774513721, + -0.014904041774570942, + 0.012745682150125504, + -0.00339089659973979, + -0.016388386487960815, + 0.020477911457419395, + -0.0018582720076665282, + -0.007088507525622845, + 0.01132949534803629, + 0.024037310853600502, + -0.00396456615999341, + -0.004873348865658045, + -0.019039005041122437, + 0.015555336140096188, + 0.0013745343312621117, + 0.01696394942700863, + 0.014093710109591484, + -0.024158481508493423, + 0.015267554670572281, + 0.005880583543330431, + -0.013692330569028854, + -0.015706799924373627, + 0.0092771602794528, + -0.020023519173264503, + 0.015615921467542648, + 0.04213723912835121, + -0.008050302974879742, + -0.003006557235494256, + 0.0023874486796557903, + 0.0028380537405610085, + 0.03214062750339508, + 0.0020334019791334867, + 0.0074141547083854675, + -0.005342886783182621, + 0.0112840561196208, + 0.00235715601593256, + -0.003440122352913022, + -0.018205953761935234, + -0.0367148332297802, + 0.012859280221164227, + -0.0056458148173987865, + 0.0006200550706125796, + -0.004581781104207039, + -0.024264506995677948, + 0.0021261735819280148, + -0.006512945052236319, + 0.027596712112426758, + 0.003805528860539198, + -0.01185204554349184, + -0.0018412322970107198, + -0.02247723378241062, + 0.0194025170058012, + 0.022083427757024765, + -0.01720629259943962, + 0.004123602993786335, + 0.0016897683963179588, + -0.002228411613032222, + 0.010557029396295547, + 0.008890927769243717, + -0.007853399962186813, + -0.0002570151991676539, + -0.004506049212068319, + -0.0007095134351402521, + -0.008724316954612732, + 0.010307114571332932, + -0.009466489776968956, + 0.015116090886294842, + 0.02602148801088333, + 0.01396496593952179, + -0.002555952174589038, + -0.008156327530741692, + 0.010375273413956165, + -0.010799371637403965, + 0.003548040520399809, + -0.0016784087056294084, + -0.007088507525622845, + 0.01675190031528473, + -0.004930147901177406, + 0.02176535315811634, + -0.0068575250916182995, + 0.022492380812764168, + 0.0043053594417870045, + 0.009012098424136639, + -0.024234214797616005, + 0.007096081040799618, + -0.004559061489999294, + 0.019266201183199883, + -0.008027583360671997, + -0.009776990860700607, + 0.017600098624825478, + -0.003294338472187519, + -0.008368376642465591, + -0.00841381587088108, + -0.017448633909225464, + -0.0003381903516128659, + 0.00015489544603042305, + 0.009193855337798595, + -0.002834266982972622, + -0.014684419147670269, + -0.008572853170335293, + -0.0112840561196208, + 0.0006598143372684717, + 0.014495089650154114, + 0.001722901128232479, + -0.010784225538372993, + 0.00713773351162672, + 0.006456146016716957, + 0.015600775368511677, + 0.009299879893660545, + -0.009254440665245056, + 0.001005341182462871, + -0.006228950340300798, + -0.009958747774362564, + -0.0039418465457856655, + 0.022507525980472565, + 0.005255795083940029, + 0.013071329332888126, + -0.007683003321290016, + -0.017100267112255096, + -0.023900993168354034, + -0.022371208295226097, + -0.026415294036269188, + -0.002694163005799055, + -0.005543576553463936, + -0.009663392789661884, + -0.018130222335457802, + 0.008906073868274689, + 0.0004898908664472401, + 0.002415848197415471, + -0.019311638548970222, + -0.002050441689789295, + 0.00030411098850890994, + -0.02168962173163891, + 0.0016878751339390874, + 0.0064864386804401875, + 0.011874765157699585, + -0.018751222640275955, + 0.006323615089058876, + 0.018130222335457802, + 0.005952528677880764, + 0.009875441901385784, + -0.009057537652552128, + -0.0030671427957713604, + 0.022204598411917686, + 0.0094892093911767, + 0.004960440564900637, + -0.00718317274004221, + 0.031201550737023354, + -0.02434023842215538, + 0.006955976597964764, + 0.0049566542729735374, + 0.010367699898779392, + 0.0013404550263658166, + -0.008194193243980408, + -0.012041375041007996, + 0.007614844478666782, + -0.001537357922643423, + 0.01725173182785511, + -0.0033359909430146217, + 0.011253762990236282, + -0.0007790921372361481, + 0.024824922904372215, + -0.0012656697072088718, + -0.01607031375169754, + 0.011155311949551105, + -0.007913985289633274, + 0.007743588648736477, + -0.007058214861899614, + 0.003229966387152672, + -0.006668195594102144, + -0.010276821441948414, + -0.01838771067559719, + 0.00010484137601451948, + 0.004896068479865789, + -0.00012815260561183095, + 0.0038187820464372635, + 0.002874026307836175, + 0.0022530246060341597, + -0.020523350685834885, + -0.013487854972481728, + -0.020811131224036217, + 0.00274717528373003, + -0.006376627832651138, + -0.0014824522659182549, + 0.01252605952322483, + 0.012851706705987453, + -0.017191145569086075, + 0.011920204386115074, + -0.014237601310014725, + -0.017448633909225464, + -0.009466489776968956, + -0.0017797001637518406, + -0.015411445870995522, + 0.006126712076365948, + 0.01242003496736288, + -0.0008652372052893043, + -0.023022502660751343, + -0.0014625727199018002, + 0.010526737198233604, + 0.024188775569200516, + -0.017388049513101578, + -0.012139827013015747, + 0.008694024756550789, + -0.012086814269423485, + -0.021583596244454384, + -0.028869006782770157, + 0.007542899344116449, + -0.01103414036333561, + 0.014949481002986431, + -0.024946093559265137, + 0.002917572157457471, + 0.017312316223978996, + -0.01396496593952179, + -0.028611518442630768, + -0.00051829032599926, + 0.00749746011570096, + 0.0049755871295928955, + -0.016100605949759483, + 0.0316256508231163, + 0.004479542840272188, + 0.004574208054691553, + -0.018402855843305588, + -0.0011160991853103042, + -0.01045857835561037, + 0.02623353712260723, + -0.008216912858188152, + 0.0014502662234008312, + 0.007069574669003487, + 0.00513462396338582, + -0.0003767662856262177, + 0.005395899061113596, + -0.006558384280651808, + -0.012238278053700924, + 0.0032470060978084803, + -0.00808059610426426, + 0.01800904981791973, + -0.01966000720858574, + 0.008194193243980408, + 0.00024873201618902385, + -0.02944456972181797, + -0.003756303107365966, + -0.02062937431037426, + -0.0065659573301672935, + -0.010950835421681404, + 0.00703549524769187, + -0.0020144691225141287, + 0.008890927769243717, + 0.0025142997037619352, + 0.002230304991826415, + -0.017781855538487434, + -0.011359787546098232, + 0.008277499116957188, + 0.011753593571484089, + -0.014305759221315384, + -0.01675190031528473, + 0.017160853371024132, + -0.009966320358216763, + -0.01944795623421669, + -0.0068575250916182995, + 0.03150447830557823, + -0.003553720423951745, + 0.026778806000947952, + 0.003881260985508561, + 0.011405226774513721, + -0.005986608099192381, + -0.03147418424487114, + 0.012988024391233921, + -0.01139008067548275, + 0.0027945078909397125, + -0.011586983688175678, + -0.01720629259943962, + 0.014843456447124481, + 0.024097897112369537, + -0.005573869217187166, + 0.007683003321290016, + 0.011662716045975685, + -0.015509896911680698, + 0.006721207872033119, + 0.021825939416885376, + -0.024355385452508926, + 0.0031845271587371826, + 0.007701936177909374, + -0.02050820365548134, + -0.007660283707082272, + -0.02691512368619442, + 0.003919126931577921, + -0.014267893508076668, + 0.002317396691069007, + 0.007823106832802296, + -0.0027509620413184166, + 0.012101960368454456, + -0.017872732132673264, + -0.018917834386229515, + 0.00959523394703865, + -0.0046045007184147835, + 0.0523156113922596, + 0.024824922904372215, + 0.013745343312621117, + 0.009754271246492863, + 0.013639318756759167, + -0.021659329533576965, + 0.004187975078821182, + 0.0008567173499614, + 0.00012649597192648798, + -0.01599458046257496, + 0.004933934658765793, + 0.01227614376693964, + -0.009837576188147068, + -0.0046423664316535, + -0.016312655061483383, + 0.004812763538211584, + 0.0014928655000403523, + -0.02332543209195137, + -0.00571775995194912, + -0.0017967397579923272, + -0.003625665558502078, + 0.013154634274542332, + -0.004184188321232796, + 0.020281007513403893, + 0.010791798122227192, + 0.010004187002778053, + -0.010973555035889149, + -0.001738994149491191, + 0.002353369491174817, + -0.00917870830744505, + 0.02247723378241062, + -0.00033156381687149405, + -0.0320497490465641, + 0.027702735736966133, + 0.004074377473443747, + 0.010965981520712376, + -0.010784225538372993, + 0.01267752330750227, + 0.001722901128232479, + 0.007062001619488001, + -0.007592124864459038, + -0.015055505558848381, + 0.017569804564118385, + -0.003417402971535921, + -0.006940830498933792, + -0.0017266877694055438, + 0.005259581841528416, + -0.013987685553729534, + 0.0052671548910439014, + 0.002830480458214879, + -0.0018753116019070148, + -0.011473385617136955, + -0.01160212978720665, + -0.0029308253433555365, + -0.023431455716490746, + 0.01978117786347866, + 0.005157343577593565, + -0.01843314990401268, + -0.015631068497896194, + -0.0017702336190268397, + 0.0011823646491393447, + -0.0002695583098102361, + 0.00019418136798776686, + 0.01928134635090828, + -0.0023457962088286877, + 0.012639657594263554, + -0.006592463701963425, + -0.01831197738647461, + -0.0008108048350550234, + 0.004915001802146435, + 0.02353748120367527, + -0.01514638401567936, + -0.013275805860757828, + 0.0023798756301403046, + -0.01602487452328205, + -0.03301911801099777, + -0.00014010404993314296, + -0.014063416980206966, + -0.016767047345638275, + 0.003226179862394929, + 0.021356401965022087, + -0.0170851219445467, + -0.0022568111307919025, + 0.001859218580648303, + 0.0007416994776576757, + -0.01031468715518713, + -0.016342949122190475, + 0.005880583543330431, + 0.007130159996449947, + 0.016206631436944008, + -0.008148754946887493, + -0.004487116355448961, + -0.007626204285770655, + 0.0033208446111530066, + 0.004513622261583805, + -0.006694701500236988, + -0.0007861920166760683, + -0.01303346361964941, + 0.002697949530556798, + 0.01746378093957901, + 0.014563248492777348, + -0.00357075990177691, + -0.000190631442819722, + 0.004093310330063105, + 0.002211372135207057, + -0.022340916097164154, + 0.013624172657728195, + -0.006997629534453154, + 0.004748391453176737, + 0.005248222034424543, + -0.0183574166148901, + 0.0023155035451054573, + 0.002449927618727088, + -0.0008008650620467961, + 0.0018705783877521753, + 0.00646371953189373, + -0.008368376642465591, + 0.006512945052236319, + 0.0274149551987648, + 0.006478865630924702, + -0.013503001071512699, + 0.01720629259943962, + 0.01640353351831436, + 0.01843314990401268, + -0.0008339977357536554, + 0.004771111067384481, + 0.016767047345638275, + 0.01035255379974842, + -0.003059569513425231, + -0.01632780209183693, + -0.001878151553682983, + -0.01217011921107769, + -0.019629713147878647, + 0.014828309416770935, + -0.011488531716167927, + 0.007406581658869982, + 0.008853061124682426, + -0.00999661348760128, + -0.008209340274333954, + -0.011662716045975685, + -0.008906073868274689, + 0.02147757261991501, + 0.016040019690990448, + 0.0066454759798944, + -0.005456484854221344, + -0.005789705086499453, + -0.006066126748919487, + 0.020099250599741936, + 0.003907767124474049, + 0.01623692363500595, + -0.015434165485203266, + 0.007898839190602303, + -0.010011759586632252, + 0.0058427173644304276, + 0.0016253963112831116, + 0.014676845632493496, + -0.02122008427977562, + 0.021098913624882698, + -0.025249021127820015, + 0.012881999835371971, + 0.0021091338712722063, + 0.014207308180630207, + 0.015797678381204605, + 0.01847858913242817, + 0.00474460469558835, + -0.004524982068687677, + 0.001534517970867455, + 0.0012571498518809676, + -0.01474500447511673, + -0.004877135623246431, + 0.0017513006459921598, + 0.006429640110582113, + -0.00999661348760128, + 0.008216912858188152, + -0.0003204406821168959, + 0.007823106832802296, + -0.013147060759365559, + 0.006346334703266621, + -0.008156327530741692, + 0.004142535850405693, + 0.0185543205589056, + 0.011480959132313728, + 0.005376966204494238, + 0.006872671656310558, + -0.01961456798017025, + 0.00030221769702620804, + 0.01082209125161171, + -0.0003074242558795959, + -0.014411784708499908, + -0.01050401758402586, + 0.012980450876057148, + 0.00695976335555315, + 0.01088267657905817, + -0.008595572784543037, + -0.002953544957563281, + 0.014442076906561852, + 0.009648246690630913, + -0.003582119708880782, + -0.02143213339149952, + -0.004244774114340544, + 0.01994778774678707, + -0.008777329698204994, + -0.013699904084205627, + 0.01210953388363123 + ], + "3436c4b5-7ac3-408f-8bca-c14986fead25": [ + -0.050809573382139206, + -0.023581476882100105, + -0.013492494821548462, + 0.010932262986898422, + -0.03819834813475609, + 0.0022278570104390383, + 0.010119371116161346, + 0.00564086576923728, + 0.003243972547352314, + 0.019600583240389824, + -0.008235284127295017, + 0.018187517300248146, + 0.002854619873687625, + -0.04062942788004875, + 0.017245475202798843, + 0.018278684467077255, + -0.0016789647052064538, + 0.03288035839796066, + 0.011175371706485748, + -0.02713693119585514, + 0.07214230298995972, + -0.01970694400370121, + -0.029507234692573547, + -0.005071081221103668, + 0.025222456082701683, + -0.026468385010957718, + 0.006081498693674803, + -0.004497498273849487, + -0.03947466239333153, + 0.011471658945083618, + 0.012125012464821339, + 0.023490311577916145, + 0.014844782650470734, + -0.014730826020240784, + 0.005336980801075697, + -0.01826348900794983, + -0.001318101305514574, + 0.019630972295999527, + -0.012816350907087326, + -0.04685907065868378, + -0.041844967752695084, + 0.006081498693674803, + 0.001209842273965478, + -0.006826017051935196, + -0.0710483193397522, + 0.011608407832682133, + 0.03379201516509056, + -0.03986971452832222, + 0.005944750737398863, + 0.014730826020240784, + 0.026696298271417618, + -0.006533527746796608, + -0.011859112419188023, + -0.0028679147362709045, + 0.04187535494565964, + -0.01236812025308609, + -0.011502048000693321, + 0.0498371422290802, + 0.0006495542475022376, + -0.06260031461715698, + -0.0028755120001733303, + 0.00564086576923728, + -0.006013124715536833, + -0.02215321734547615, + -0.0029381881467998028, + -0.020101994276046753, + -0.0226090457290411, + 0.0038897281046956778, + -0.03774251788854599, + -0.0196157768368721, + 0.015467747114598751, + 0.017017560079693794, + -0.05202511325478554, + 0.005401556380093098, + -0.014935948885977268, + -0.04069020226597786, + 0.062083709985017776, + 0.00029723753686994314, + 0.009868665598332882, + 0.003359828609973192, + -0.024979347363114357, + 0.016774453222751617, + 0.02487298846244812, + -0.018719317391514778, + 0.024933764711022377, + 0.009944637306034565, + -0.02288254164159298, + -0.04436721280217171, + 0.02482740581035614, + -0.00978509709239006, + -0.0036504187155514956, + 0.03035811334848404, + -0.009458420798182487, + 0.013606451451778412, + -0.019281504675745964, + -0.01572605036199093, + 0.00236650463193655, + 0.010977846570312977, + 0.022852152585983276, + 0.012968293391168118, + 0.014578883536159992, + 0.012185788713395596, + -0.053939592093229294, + 0.008417614735662937, + -0.003304749494418502, + 0.014548495411872864, + 0.006609498988837004, + -0.01322659570723772, + -0.027896644547581673, + 0.045643530786037445, + 0.0071488949470222, + -0.03756018728017807, + 0.01630343124270439, + 0.004930534400045872, + -0.0424831248819828, + -0.03683086484670639, + 0.02368783764541149, + -0.03306268900632858, + -0.008045355789363384, + -0.04543080925941467, + 0.02592139132320881, + 0.02414366416633129, + 0.006590506061911583, + 0.03049486130475998, + -0.01248207688331604, + 0.0046570380218327045, + 0.01957019418478012, + -0.030874717980623245, + 0.007160290610045195, + 0.003973296377807856, + 0.006920981220901012, + -0.010499226860702038, + 0.004307569935917854, + 0.023763807490468025, + 0.011593213304877281, + 0.02768392488360405, + 0.019311891868710518, + 0.043334003537893295, + -0.04272623360157013, + 0.037408243864774704, + -0.051630064845085144, + -0.042969342321157455, + -0.02156064100563526, + 0.0302213653922081, + -0.0015688063576817513, + -0.005082476884126663, + -0.031695205718278885, + 0.03774251788854599, + -0.006153671536594629, + 0.03081393986940384, + -0.05603639781475067, + -0.010081385262310505, + 0.012588436715304852, + 0.01648576185107231, + 0.001814763294532895, + 0.00039077713154256344, + -0.004144231788814068, + 0.018992813304066658, + 0.021135203540325165, + 0.033093079924583435, + 0.005367368925362825, + -0.049685198813676834, + 0.016880812123417854, + 0.012785961851477623, + 0.03525066003203392, + 0.014130652882158756, + 0.05102229490876198, + 0.0016742164734750986, + -0.008523974567651749, + 0.0132721783593297, + 0.009678738191723824, + -0.02016277052462101, + 0.02414366416633129, + 0.005530707072466612, + 0.03248530998826027, + -0.00840242113918066, + 0.04321245104074478, + 0.005982736125588417, + 0.035493768751621246, + -0.027076154947280884, + -0.00010262054274789989, + 0.0062562329694628716, + -0.020952871069312096, + -0.043607499450445175, + 0.005302793346345425, + -0.0025412384420633316, + -0.01511068269610405, + -0.01225416362285614, + 0.005466131493449211, + -0.009101356379687786, + -0.02994786761701107, + -0.015255027450621128, + -0.003939109388738871, + 0.009344464167952538, + -0.008926622569561005, + -0.01812674105167389, + -0.014001501724123955, + 0.006442362442612648, + -0.005021699704229832, + 0.016774453222751617, + -0.005321786273270845, + -0.05871058627963066, + -0.04503576084971428, + 0.044154491275548935, + -0.01785324513912201, + 0.021682195365428925, + -0.0085391690954566, + -0.04442799091339111, + 0.046646349132061005, + -0.03154326602816582, + 0.03822873532772064, + -0.053119100630283356, + 0.031072242185473442, + 0.02994786761701107, + -0.022365937009453773, + 0.014829589053988457, + -0.006096693221479654, + 0.04257429018616676, + 0.002108202315866947, + -0.014920754358172417, + -0.014062278904020786, + -0.0068867942318320274, + 0.0019325187895447016, + -0.021044038236141205, + -0.07056210190057755, + -0.008311254903674126, + -0.012041443958878517, + 0.04135875031352043, + -0.05381803587079048, + 0.012580839917063713, + 0.059105634689331055, + -0.006738650146871805, + 0.010765126906335354, + -0.03646620362997055, + -0.0028603177051991224, + 0.006746247410774231, + -0.015376581810414791, + 0.029841508716344833, + -0.004687426146119833, + 0.00020844613027293235, + 0.01645537279546261, + 0.04500536993145943, + 0.015368985012173653, + 0.009549587033689022, + 0.013143027201294899, + 0.00668167183175683, + 0.007692089304327965, + -0.008212492801249027, + 0.02093767747282982, + -0.01947902888059616, + 0.014814394526183605, + 0.018385043367743492, + 0.01604512892663479, + -0.00105600047390908, + -0.002828029915690422, + 0.024888182058930397, + 0.009390046820044518, + -0.031102631241083145, + 0.0050862752832472324, + -0.013036667369306087, + 0.008508780039846897, + 0.021271951496601105, + 0.023399146273732185, + -0.000566460657864809, + 0.05123501271009445, + -0.03573687747120857, + 0.014791603200137615, + -0.02877791039645672, + 0.002835626946762204, + 0.026483578607439995, + -0.0332450196146965, + 0.0035155697260051966, + -0.007312233094125986, + -0.0024519721046090126, + 0.001309554441832006, + 0.005583886988461018, + -0.023627059534192085, + 0.007137499283999205, + -0.010050997138023376, + 0.013530480675399303, + -0.005621872842311859, + 0.0049381316639482975, + -0.012702393345534801, + 0.020314713940024376, + -0.029157767072319984, + 0.0012858135160058737, + -0.02029951848089695, + 0.033275410532951355, + -0.035220272839069366, + 0.008326449431478977, + 0.022715404629707336, + -0.0005621872842311859, + 0.04494459554553032, + -0.010104176588356495, + 0.05943990871310234, + 0.019327087327837944, + -0.03783368319272995, + -0.0207553468644619, + -0.0571911595761776, + 0.01449531503021717, + -0.021089620888233185, + 0.00856196042150259, + -0.00624103844165802, + -0.01057519856840372, + 0.008258075453341007, + -0.022092441096901894, + 0.03218142315745354, + 0.034460559487342834, + -0.045643530786037445, + -0.00976230576634407, + 0.035767264664173126, + -0.01689600758254528, + -0.033457741141319275, + -0.017868438735604286, + 0.017017560079693794, + -0.004649440757930279, + 0.00268938229419291, + -0.010218133218586445, + -0.005352174863219261, + -0.026149306446313858, + 0.010438450612127781, + -0.027805479243397713, + -0.05004986375570297, + 0.013993904925882816, + 0.026757076382637024, + -0.02016277052462101, + 0.049806755036115646, + -0.007392003200948238, + -0.005447139032185078, + 0.0003983742499258369, + 0.005614275578409433, + -0.002472864231094718, + -0.030844328925013542, + -0.0018641446949914098, + -0.0226090457290411, + -0.043242838233709335, + -0.04357711225748062, + -0.046008192002773285, + -0.016865618526935577, + -0.018871258944272995, + -0.01830907166004181, + -0.012406106106936932, + 0.006856405641883612, + -0.03163443133234978, + 0.012375717051327229, + -0.011426076292991638, + -0.005166045390069485, + 0.02519206702709198, + -0.03184714913368225, + -0.0029324903152883053, + 0.0010816407157108188, + -0.011676781810820103, + 0.017093531787395477, + 0.006244836840778589, + 0.0646059513092041, + -0.016561733558773994, + 0.011897098273038864, + -0.017063142731785774, + 0.007612319663167, + -0.009777500294148922, + 0.03236375376582146, + -0.026924211531877518, + -0.0405990369617939, + -0.007771859411150217, + -0.0038004620000720024, + 0.011403284966945648, + -0.03701319545507431, + -0.030692387372255325, + -0.0031338143162429333, + 0.042027298361063004, + -0.027288874611258507, + 0.002681785263121128, + -0.008934219367802143, + -0.026210082694888115, + -0.01361404825001955, + -0.04190574213862419, + 0.03883650526404381, + -0.008577154949307442, + -0.03996087983250618, + 0.022441908717155457, + 0.0026950801257044077, + -0.016880812123417854, + 0.022441908717155457, + -0.0030103609897196293, + 0.015650078654289246, + 0.02681785263121128, + -0.004208807367831469, + 0.015893185511231422, + 0.0015640582423657179, + 0.01739741675555706, + -0.03306268900632858, + 0.018491404131054878, + -0.014989128336310387, + 0.004113843198865652, + -0.029157767072319984, + 0.0038973253685981035, + -0.003221181221306324, + -0.0024595693685114384, + 0.00630941241979599, + -0.011456465348601341, + -0.018369849771261215, + -0.0035383610520511866, + -0.019737331196665764, + -0.003549756947904825, + -0.01416104193776846, + -0.026392413303256035, + -0.0012411803472787142, + -0.01413825061172247, + 0.036040764302015305, + 0.021135203540325165, + 0.030190976336598396, + 0.0013978710630908608, + 0.035767264664173126, + 0.01716950349509716, + 0.06108088791370392, + -0.01609071157872677, + 0.021818943321704865, + 0.046828679740428925, + -0.002187972189858556, + -0.019190339371562004, + 0.055428627878427505, + 0.06016923487186432, + -0.026255665346980095, + 0.03458211570978165, + -0.01726066879928112, + 0.030282141640782356, + 0.00712230522185564, + 0.009040579199790955, + -0.012717587873339653, + -0.037803295999765396, + -0.024660268798470497, + 0.030251752585172653, + -0.0032306776847690344, + 0.0028071377892047167, + 0.006271427031606436, + -0.03330579772591591, + 0.002281036926433444, + 0.03570649027824402, + 0.004049267619848251, + -0.00020690295787062496, + -0.015482941642403603, + 0.00849358644336462, + -0.010499226860702038, + 6.58219723845832e-5, + -0.006814621388912201, + -0.0012107918737456203, + -0.0189320370554924, + 0.012854335829615593, + 0.022092441096901894, + -0.008166910149157047, + -0.006237240042537451, + 0.05129579082131386, + -0.034460559487342834, + 0.0068753985688090324, + 0.010749932378530502, + -0.01586279831826687, + -0.023535894230008125, + -0.026559550315141678, + 0.018947230651974678, + -0.018157130107283592, + -0.02016277052462101, + -0.005796606652438641, + -0.02736484631896019, + -0.009162133559584618, + 0.023991722613573074, + -0.029780730605125427, + 0.014700437895953655, + 0.0729324072599411, + 0.0049153403379023075, + 0.024401966482400894, + -0.01640979014337063, + -0.041936133056879044, + -0.023323174566030502, + 0.04871276766061783, + 0.008455600589513779, + -0.018476208671927452, + -0.011365300044417381, + -0.01028650812804699, + -0.022852152585983276, + -0.017822856083512306, + -0.0461297444999218, + -0.02592139132320881, + -0.012406106106936932, + 0.023414339870214462, + 0.010841097682714462, + -0.011973069980740547, + -0.0008081442210823298, + -0.049958694726228714, + 0.00849358644336462, + -0.023930944502353668, + 0.07189919799566269, + 0.014859977178275585, + 0.0012183890212327242, + 0.02727368101477623, + -0.009959831833839417, + -0.01075752917677164, + -0.012428897432982922, + -0.02210763469338417, + -0.02356628328561783, + -0.030115004628896713, + 0.060868170112371445, + -0.052541717886924744, + -0.025222456082701683, + 0.027835868299007416, + -0.007923801429569721, + -0.015011919662356377, + -0.008949413895606995, + 0.0013798278523609042, + -0.012162997387349606, + -0.04132836312055588, + -0.04856082424521446, + -0.005705441348254681, + -0.027395233511924744, + 0.009131744503974915, + -0.017336640506982803, + 0.011836321093142033, + 0.002546936273574829, + 0.017518971115350723, + 0.03479483351111412, + 0.011144982650876045, + 0.01160081010311842, + 0.019767720252275467, + 0.008637931197881699, + 0.0030103609897196293, + -0.03950505331158638, + 0.003667512210085988, + -0.010567601770162582, + -0.024386772885918617, + 0.02061859890818596, + -0.004486102610826492, + 0.011517242528498173, + 0.011919889599084854, + -0.029112184420228004, + 0.0061460742726922035, + 0.02423482947051525, + 0.00874429102987051, + -0.0007544895051978528, + 0.013583660125732422, + -0.008083341643214226, + 0.03330579772591591, + -0.02039068378508091, + 0.029750343412160873, + 0.022092441096901894, + -0.007240060716867447, + -0.0004195037763565779, + 0.02727368101477623, + 0.0077224778942763805, + 0.028246112167835236, + -0.029522430151700974, + 0.0135000916197896, + -0.03239414095878601, + 0.018065964803099632, + -0.009663543663918972, + -0.003025555284693837, + 0.02197088673710823, + -0.031695205718278885, + -0.000674244889523834, + -0.022776182740926743, + -0.007004549726843834, + -0.002890706295147538, + -0.039839327335357666, + 0.017412612214684486, + -0.013758393935859203, + 0.02649877406656742, + -0.005678851157426834, + -0.015923574566841125, + 0.0140698766335845, + 0.02247229777276516, + 0.006632290314882994, + 0.01739741675555706, + 0.03479483351111412, + 0.006317009683698416, + 0.015422164462506771, + -0.019494224339723587, + 0.0012601731577888131, + 0.02704576589167118, + -0.009914248250424862, + 0.0018907345365732908, + -0.03385278955101967, + -0.011866710148751736, + 0.006731052882969379, + -0.02967437170445919, + 0.0007749067735858262, + -0.005720635410398245, + 0.005602879915386438, + 0.00424679322168231, + 0.0021271950099617243, + 0.005283800885081291, + 0.004717814736068249, + -0.005743426736444235, + 0.021940497681498528, + 0.005036894232034683, + 0.004596260841935873, + 0.013234192505478859, + -0.03537221625447273, + 0.022031662985682487, + 0.010233327746391296, + 0.004505095537751913, + -0.008888636715710163, + -0.011957875452935696, + -0.0019980440847575665, + 0.031604040414094925, + 0.02002602256834507, + -0.011144982650876045, + -0.02487298846244812, + 0.010134565643966198, + 0.0012459285790100694, + -0.010392867960035801, + 0.002847022842615843, + 0.035068329423666, + -0.021271951496601105, + 0.008926622569561005, + 0.052298612892627716, + -0.024219635874032974, + 0.036587756127119064, + -0.01540696993470192, + 0.002685583895072341, + 0.024933764711022377, + -0.009055773727595806, + -0.017291057854890823, + 0.012937904335558414, + -0.04780111461877823, + 0.06837412714958191, + -0.03376162424683571, + 0.013560868799686432, + 0.024523520842194557, + -0.021545447409152985, + -0.009861068800091743, + -0.03394395485520363, + -0.0066057005897164345, + 0.022138023748993874, + -0.017822856083512306, + 0.015969157218933105, + -0.029340097680687904, + 0.01322659570723772, + 0.020405879244208336, + 0.03360968455672264, + 0.031695205718278885, + -0.014168638736009598, + -0.005511714611202478, + 0.007555341348052025, + 0.0010151659371331334, + 0.02115039713680744, + 0.04245273768901825, + -0.014419344253838062, + 0.011137385852634907, + -0.0017188496422022581, + 0.03424784168601036, + 0.03500755503773689, + 0.004326562862843275, + -0.04409371688961983, + -0.0066626789048314095, + -0.019357476383447647, + 0.010157356970012188, + 0.0033351380843669176, + -0.04497498273849487, + -0.0030388501472771168, + 0.0141990277916193, + 0.015034710988402367, + 0.01255045086145401, + 0.0470414012670517, + -0.019144756719470024, + -0.015232236124575138, + -0.00424679322168231, + 0.006765240337699652, + 0.013158220797777176, + -0.0014377560000866652, + 0.021682195365428925, + 0.0038897281046956778, + 0.03351851552724838, + 0.0012487774947658181, + -0.014768811874091625, + 0.022578656673431396, + 0.010841097682714462, + 0.0038897281046956778, + 0.008128924295306206, + -0.0009724320261739194, + -0.007422391325235367, + 0.01572605036199093, + -0.012269357219338417, + -0.0009486910421401262, + -0.028838688507676125, + -0.027395233511924744, + 0.029096990823745728, + -0.022350743412971497, + -0.006385383661836386, + -0.0013048063265159726, + 0.052177056670188904, + -0.025571923702955246, + -0.000612518226262182, + -0.0038270519580692053, + 0.020633792504668236, + 0.017549360170960426, + 0.008037758991122246, + -0.005621872842311859, + 0.006070103030651808, + -0.0034376992844045162, + -0.02841324917972088, + -0.0007027341052889824, + -0.010985443368554115, + -0.02596697397530079, + 0.026650715619325638, + 0.011775543913245201, + -0.03406551107764244, + 0.003135713515803218, + 0.011836321093142033, + -0.026802659034729004, + -0.013515286147594452, + 0.008736694231629372, + -0.004429124295711517, + 0.03385278955101967, + 0.01440414972603321, + 0.0008114679367281497, + 0.012307343073189259, + -0.004706419073045254, + 0.036952417343854904, + -0.020010828971862793, + 0.009207716211676598, + -0.010841097682714462, + 0.002647598274052143, + -0.011988263577222824, + 0.03072277456521988, + 0.014897963032126427, + -0.022806569933891296, + -0.0332450196146965, + 0.017473388463258743, + 0.004919138737022877, + 0.021393505856394768, + -0.008615139871835709, + -0.000924475200008601, + 0.051721230149269104, + -0.00626382976770401, + -0.010248522274196148, + 0.007885816507041454, + -0.03646620362997055, + 0.013728005811572075, + 0.0031907926313579082, + -0.006389182526618242, + 0.03503794223070145, + -0.024721046909689903, + 0.025982169434428215, + 0.00754394568502903, + 0.004041670821607113, + -0.004843167494982481, + 0.015300610102713108, + 0.0025146484840661287, + 0.01902320235967636, + -0.0006785182631574571, + 0.027942227199673653, + 0.011251342482864857, + 0.016744064167141914, + -0.010392867960035801, + 0.06418051570653915, + 0.013044264167547226, + -0.028018198907375336, + 0.007247657515108585, + -0.010917069390416145, + -0.004539282526820898, + -0.018901647999882698, + 0.033913567662239075, + -0.0033465337473899126, + 0.006081498693674803, + -0.023672642186284065, + -0.02377900294959545, + -0.006700664758682251, + 0.004011282231658697, + 0.004767196252942085, + 0.05372687056660652, + 0.04096370190382004, + 0.013735602609813213, + 0.016789646819233894, + 0.002045525936409831, + 0.026179693639278412, + 0.02560231275856495, + 0.005891570821404457, + -0.03619270399212837, + 0.035493768751621246, + -0.005078678485006094, + -0.05488163232803345, + -0.026878628879785538, + -0.007847830653190613, + -0.028701940551400185, + -0.005557297263294458, + -0.017564553767442703, + 0.027714313939213753, + -0.02877791039645672, + 0.033548906445503235, + 0.029507234692573547, + -0.02320162020623684, + 0.003506073262542486, + 0.00286601553671062, + 0.007787053473293781, + 0.01934228092432022, + 0.008326449431478977, + 0.006389182526618242, + -0.008106132969260216, + 0.03719552606344223, + -0.028884271159768105, + 0.009838277474045753, + 0.004459512419998646, + 0.024812212213873863, + -0.03367045894265175, + 0.04263506829738617, + 0.0288538821041584, + -0.012915113009512424, + -0.003942908253520727, + 0.027197709307074547, + 0.014373761601746082, + -0.012998681515455246, + 0.019919663667678833, + -0.03202947974205017, + -0.011403284966945648, + -0.02039068378508091, + 0.03351851552724838, + 0.017640525475144386, + 0.007361614610999823, + -0.0012468781787902117, + 0.0031262170523405075, + 0.021484671160578728, + 0.002658993937075138, + 0.0042657856829464436, + 0.008478391915559769, + 0.010613184422254562, + 0.026270858943462372, + -0.01065116934478283, + -0.012178191915154457, + 0.01148685347288847, + -0.007300837431102991, + 0.021059231832623482, + 0.007885816507041454, + -0.005014102905988693, + 0.013606451451778412, + -0.008174506947398186, + 0.02645319141447544, + -0.008212492801249027, + 0.0050634839572012424, + -0.03573687747120857, + -0.003424404188990593, + -0.027851061895489693, + 0.04114603251218796, + -0.03385278955101967, + -0.03360968455672264, + -0.02107442542910576, + -0.026362024247646332, + -0.007335024420171976, + -0.017063142731785774, + 0.0005303742946125567, + 0.013629242777824402, + 0.03209025785326958, + 0.03300191089510918, + 0.025997363030910492, + -0.015786826610565186, + -0.01627304218709469, + 0.01920553296804428, + -0.01259603351354599, + -0.004129037726670504, + -0.024842599406838417, + 0.02107442542910576, + 0.008417614735662937, + 0.03085952252149582, + 0.019646165892481804, + -0.00016155761841218919, + -0.042787011712789536, + -0.006655081640928984, + 0.01671367511153221, + -0.00953439250588417, + -0.011965472251176834, + 0.004311368800699711, + -0.010134565643966198, + 0.02178855612874031, + -0.008919024839997292, + 0.005762419663369656, + 0.0074869669042527676, + 0.01613629423081875, + 0.0005251513211987913, + -0.03242453187704086, + -0.012846739031374454, + 0.019327087327837944, + -0.05150850862264633, + -0.019828496500849724, + 0.006879196967929602, + 0.019904468208551407, + -0.006362592335790396, + 0.0028717133682221174, + -0.04585624858736992, + 0.009595169685781002, + 0.020101994276046753, + -0.019175143912434578, + -0.0066740745678544044, + -0.01434337254613638, + 0.012922710739076138, + 0.006867801304906607, + -0.04634246602654457, + -0.030555637553334236, + 0.00621824711561203, + -0.01434337254613638, + -0.004159426316618919, + -0.029370486736297607, + -0.01648576185107231, + 0.0013665328733623028, + 0.004079656209796667, + -0.021803749725222588, + -0.030753163620829582, + 0.01952461153268814, + 0.0031736991368234158, + -0.04230079427361488, + 0.005914362147450447, + 0.02962878905236721, + 0.018491404131054878, + 0.01650095544755459, + 0.022092441096901894, + 0.03546338155865669, + 0.017017560079693794, + -0.009587571956217289, + 0.039717771112918854, + 0.011988263577222824, + 0.0008945615263655782, + -0.018369849771261215, + -0.016516150906682014, + -0.002450072905048728, + 0.016652898862957954, + 0.022457102313637733, + 0.010294104926288128, + 0.002959080273285508, + 0.008106132969260216, + 0.0063929809257388115, + 0.011517242528498173, + -0.00575482239946723, + 0.010955055244266987, + 0.0021366914734244347, + -0.015551315620541573, + 0.002100605284795165, + -0.00881266500800848, + 0.020603403449058533, + -0.010879083536565304, + 0.011699573136866093, + 0.0016941590001806617, + -0.010005414485931396, + -0.015695661306381226, + -0.013325357809662819, + -0.01607551798224449, + -0.012474480085074902, + -0.007133700884878635, + -0.0028185334522277117, + 0.0044443183578550816, + 0.013743199408054352, + -0.030206169933080673, + 0.015665272250771523, + -0.0029799723997712135, + -0.007475571241229773, + -0.021727778017520905, + 0.01952461153268814, + -0.010157356970012188, + -0.031087437644600868, + 0.008508780039846897, + 0.027607953175902367, + -0.010088982060551643, + 0.007373010274022818, + 0.0014282595366239548, + 0.0016590222949162126, + -0.012466882355511189, + 0.004049267619848251, + 0.031786371022462845, + 0.008637931197881699, + -0.026483578607439995, + 0.015650078654289246, + -0.048864711076021194, + 0.010522019118070602, + -0.009131744503974915, + 0.008478391915559769, + -0.0132721783593297, + 0.00017366553947795182, + -0.021758167073130608, + 0.01616668328642845, + 0.01533859595656395, + -0.03312346711754799, + -0.009686334989964962, + -0.015756437554955482, + -0.010719544254243374, + 0.020360296592116356, + 0.031087437644600868, + 0.006693067494779825, + -0.014867573976516724, + -0.02523764967918396, + -0.027258485555648804, + 0.009086161851882935, + -0.02681785263121128, + 0.015391776338219643, + 0.010081385262310505, + 0.014905559830367565, + -0.005766218062490225, + -0.04284778609871864, + -0.00026946055004373193, + 0.016698481515049934, + 0.016105905175209045, + -0.010742335580289364, + -0.018369849771261215, + -0.017929216846823692, + -0.027121737599372864, + -0.03294113650918007, + -0.021135203540325165, + -0.014768811874091625, + -0.016911201179027557, + 0.03330579772591591, + 0.0025336414109915495, + -0.0018897849367931485, + 0.02297370694577694, + -0.011342507787048817, + 0.013788782991468906, + 0.0006846909527666867, + -0.0104916300624609, + -0.009207716211676598, + -0.012451688759028912, + -0.003969497978687286, + 0.027106544002890587, + 0.02903621271252632, + -0.005469930358231068, + -0.039930492639541626, + -0.030798746272921562, + 0.041297972202301025, + -0.04698062315583229, + -0.0011082306737080216, + 0.0037624763790518045, + -0.001977151958271861, + -0.001556461094878614, + 0.00036703611840493977, + -0.0017549359472468495, + -0.009777500294148922, + 0.035311438143253326, + 0.00215758359991014, + -0.019874079152941704, + -0.005591484252363443, + 0.0039049223996698856, + 0.0038973253685981035, + -0.0018423028523102403, + -0.016105905175209045, + -0.019463835284113884, + -0.06345119327306747, + -0.013492494821548462, + -0.016880812123417854, + 0.039626605808734894, + -0.018856065347790718, + -0.011061414144933224, + 0.00529139768332243, + 0.011479256674647331, + -0.022320354357361794, + 0.027106544002890587, + 0.006609498988837004, + -0.008356837555766106, + 0.003790965536609292, + 0.026225276291370392, + -0.007524952758103609, + 0.018278684467077255, + 0.007338823284953833, + -0.004159426316618919, + 0.006317009683698416, + -0.026255665346980095, + 0.002258245600387454, + 0.008820262737572193, + -0.013902739621698856, + 0.0013845760840922594, + -0.012953098863363266, + 0.012846739031374454, + -0.013773588463664055, + 0.009891456924378872, + -0.010256119072437286, + -0.02279137633740902, + 0.0008950363262556493, + -0.006191657390445471, + -0.016774453222751617, + 0.016592122614383698, + 0.01817232370376587, + -0.018734510987997055, + 0.021408699452877045, + -0.008782276883721352, + 0.0359799861907959, + -0.014145847409963608, + 0.0013893243158236146, + 0.025723867118358612, + -0.004721613600850105, + -0.020223548635840416, + -0.014085070230066776, + -0.022396326065063477, + 0.016561733558773994, + -0.024067692458629608, + -0.002881209831684828, + 0.01911436766386032, + 0.018248295411467552, + -0.0015384178841486573, + 0.001872691442258656, + -0.009899054653942585, + -0.004334160126745701, + 0.012542854063212872, + 0.013287371955811977, + -0.010476435534656048, + 0.015095488168299198, + -0.001730245305225253, + 0.052663274109363556, + 0.005321786273270845, + -0.00756673701107502, + 0.003194591263309121, + -0.0046342466957867146, + 0.008303658105432987, + 0.0031623034738004208, + 0.0019116266630589962, + 0.018020382151007652, + -0.0010227629682049155, + 0.016698481515049934, + -0.020405879244208336, + 0.00482417456805706, + 0.043242838233709335, + 0.005431944504380226, + -0.012945502065122128, + 0.011524839326739311, + 0.015141070820391178, + -0.00025165476836264133, + -0.010810709558427334, + -0.003732087789103389, + -0.0022981304209679365, + 0.010164953768253326, + 0.006351196672767401, + 0.0019923460204154253, + -0.006305614020675421, + 0.00770348496735096, + -0.0346125029027462, + 0.005975139327347279, + 0.013682423159480095, + 0.02432599477469921, + 0.0018859864212572575, + 0.029233738780021667, + 0.014951142482459545, + -0.0011880004312843084, + 0.026240471750497818, + 0.039079613983631134, + 0.01644017919898033, + 0.008858248591423035, + 0.004930534400045872, + 0.01590838097035885, + -0.00708052096888423, + 0.022685015574097633, + -0.03348812833428383, + -0.008007369935512543, + 0.0016780151054263115, + 0.0026950801257044077, + 0.006890592630952597, + -0.00962555781006813, + -0.027668731287121773, + 0.02080092951655388, + 0.012094623409211636, + -0.03470366820693016, + 0.010742335580289364, + 0.00264379964210093, + 0.015710854902863503, + -0.0030616414733231068, + -0.018202712759375572, + -0.011266537010669708, + -0.008410017937421799, + -0.0014852379681542516, + 0.02242671325802803, + -0.0011880004312843084, + -0.04871276766061783, + -0.013682423159480095, + -0.003644720884039998, + -0.00960276648402214, + 0.006977959536015987, + -0.014510509558022022, + 0.008554363623261452, + 0.005412952043116093, + -0.00564086576923728, + -0.005557297263294458, + 0.004231598693877459, + -0.00953439250588417, + 0.027623148635029793, + 0.04479265213012695, + -0.03449095040559769, + -0.01884087175130844, + -0.036405425518751144, + 0.011008234694600105, + -0.002431080210953951, + -0.0024785620626062155, + 0.02279137633740902, + 0.0018546482315286994, + 0.0027520586736500263, + 0.018430626019835472, + -0.01798999309539795, + 0.007992176339030266, + -0.016744064167141914, + 0.00013603603292722255, + 0.007221067789942026, + 0.019874079152941704, + -0.018871258944272995, + -0.010993040166795254, + -0.01065116934478283, + -0.007247657515108585, + 0.0087670823559165, + 0.005690246820449829, + 0.012717587873339653, + 0.007437585853040218, + 0.01123614888638258, + -0.0007734823157079518, + -0.0006623743684031069, + 0.019737331196665764, + -0.005595282651484013, + -0.009276090189814568, + -0.0019581590313464403, + -0.02418924681842327, + -0.018157130107283592, + -0.006411973852664232, + 0.004767196252942085, + -0.03139132261276245, + -0.03421745449304581, + 0.00033688501571305096, + 0.0035079726949334145, + -0.026422802358865738, + -0.02795742079615593, + 0.016105905175209045, + -0.0025431376416236162, + 0.0018233100418001413, + 0.005633268505334854, + -0.013902739621698856, + 0.050536077469587326, + -0.007019743788987398, + 0.007475571241229773, + -0.005409153178334236, + 0.0026381018105894327, + -0.009063370525836945, + -0.01456368900835514, + 0.0003573023132048547, + 0.019676554948091507, + -0.003730188589543104, + -0.03485561162233353, + 0.015756437554955482, + -0.010901874862611294, + 0.027076154947280884, + -0.0005935254157520831, + -0.021818943321704865, + -0.023839779198169708, + -0.01586279831826687, + -0.014480121433734894, + 0.012983486987650394, + 0.001872691442258656, + -0.010658767074346542, + 0.0019173244945704937, + -0.036587756127119064, + -0.004862160421907902, + 0.00520023237913847, + 0.005002707242965698, + 0.0135000916197896, + 0.00044395701843313873, + -0.003281958168372512, + 0.0015355689683929086, + 0.013135429471731186, + -0.004250591620802879, + 0.002791943494230509, + -0.010058593936264515, + 0.002307626884430647, + -0.023930944502353668, + 0.02414366416633129, + -0.005226822104305029, + 0.0016495258314535022, + -0.0378640741109848, + 0.00723626185208559, + 0.022578656673431396, + -0.00728184450417757, + -0.06266108900308609, + 0.005834592506289482, + 0.03315385431051254, + -0.007604722399264574, + -0.0031262170523405075, + 0.01071194652467966, + -0.012808753177523613, + 0.005808002315461636, + 0.004113843198865652, + 0.02368783764541149, + -0.01666809245944023, + 0.01568046770989895, + -0.0031281164847314358, + -0.015938768163323402, + 0.0014434538315981627, + -0.023125650361180305, + 0.008151715621352196, + 0.0016675690421834588, + 0.018856065347790718, + -0.023718224838376045, + -0.0037624763790518045, + 0.00046342465793713927, + 0.019676554948091507, + 0.014761215075850487, + -0.02903621271252632, + -0.019144756719470024, + 0.024128470569849014, + 0.01618187688291073, + -0.002165180630981922, + 0.0010578996734693646, + -0.017838049679994583, + 0.018536986783146858, + 0.0207553468644619, + 0.01590838097035885, + 0.018673734739422798, + -0.011479256674647331, + -0.015376581810414791, + 0.017701301723718643, + -0.02441716007888317, + 0.004558275453746319, + -0.0096939317882061, + 0.01748858205974102, + -0.015665272250771523, + -0.0025089506525546312, + 0.008144118823111057, + -0.006533527746796608, + -0.02160622552037239, + 0.011912292800843716, + 9.733816841617227e-5, + 0.01329496968537569, + -0.005158448126167059, + -0.004068260546773672, + 0.0196157768368721, + -0.00286601553671062, + -0.0001092086749849841, + -0.04530925676226616, + 0.031786371022462845, + 0.020314713940024376, + 0.0048165773041546345, + 0.004448116756975651, + -0.0006253384053707123, + 0.031421709805727005, + 0.010430852882564068, + 0.014480121433734894, + -0.003532663220539689, + 0.02877791039645672, + -0.007247657515108585, + 0.014328178949654102, + -0.002765353536233306, + -0.010749932378530502, + 0.004375944379717112, + -0.0050520882941782475, + -0.007840233854949474, + 0.009944637306034565, + -0.0006429067580029368, + -0.012155400589108467, + 0.014897963032126427, + 0.0063018156215548515, + -0.00021366914734244347, + -0.006901988293975592, + 0.0003150432894472033, + 0.008843054063618183, + -0.006989355199038982, + -0.0023968929890543222, + -0.01595396362245083, + -0.02809417061507702, + 0.004341757390648127, + -0.009823082946240902, + -0.01035488210618496, + 0.014746020548045635, + 0.009883860126137733, + -0.012732782401144505, + -0.029431262984871864, + -0.02944645844399929, + -0.005948549136519432, + 0.021499864757061005, + 0.010324493050575256, + -0.05296715721487999, + -0.005500318948179483, + -0.01634901389479637, + -0.002377900294959545, + 0.003656116547062993, + -0.035949598997831345, + -0.02251788042485714, + 0.025526341050863266, + -0.002562130568549037, + 0.018324267119169235, + 0.026346830651164055, + -0.004410131368786097, + 0.012117414735257626, + -0.003266763873398304, + -0.008318852633237839, + 0.0015441157156601548, + 0.027121737599372864, + 0.0332450196146965, + -0.023095261305570602, + 0.024022109806537628, + 0.0012478278949856758, + 0.01844581961631775, + -0.005515513010323048, + 0.02596697397530079, + 0.038076791912317276, + -0.004132836125791073, + -0.0123453289270401, + 0.021894915029406548, + 0.016470568254590034, + 0.01609071157872677, + 0.029735147953033447, + 0.02007160522043705, + 0.0026950801257044077, + 0.023551087826490402, + -0.03351851552724838, + -0.027516787871718407, + -0.008197298273444176, + -0.025617506355047226, + 0.0038783324416726828, + -0.0027843464631587267, + -0.0077566648833453655, + 0.02324720285832882, + 0.01762533001601696, + -0.009663543663918972, + 0.0008722449420019984, + -0.01767091453075409, + 0.022259578108787537, + -0.011167773976922035, + -0.00021616196318063885, + 0.0029875696636736393, + -0.02379419654607773, + 0.017230279743671417, + -0.0028679147362709045, + 0.02864116244018078, + -0.012428897432982922, + 0.012801156379282475, + -0.005010304041206837, + 0.01458648033440113, + -0.012801156379282475, + -0.02206205204129219, + -0.017108727246522903, + -0.0018973820842802525, + 0.009587571956217289, + 0.005538304336369038, + -0.023672642186284065, + -0.00382895115762949, + 0.010415659286081791, + 0.014670048840343952, + 0.004227800294756889, + 0.008865845389664173, + -0.008083341643214226, + 0.028565190732479095, + -0.02832208387553692, + 0.018628152087330818, + -0.036040764302015305, + -0.0027862456627190113, + 0.012975890189409256, + 0.013378538191318512, + 0.010058593936264515, + 0.00486975722014904, + 0.012314939871430397, + 0.025252845138311386, + 0.010544810444116592, + 0.007156492210924625, + 0.002577324863523245, + -0.023095261305570602, + -0.0016827632207423449, + 0.023262398317456245, + -0.005853584967553616, + 0.002573526231572032, + -0.02573906071484089, + -0.0249185711145401, + 0.001887885620817542, + 0.022776182740926743, + 0.007392003200948238, + -0.022593850269913673, + -0.01735183410346508, + 0.01879528909921646, + 0.018141934648156166, + 0.0012430796632543206, + 0.009306478314101696, + 0.004235397558659315, + -0.010126967914402485, + 0.0075097582302987576, + -0.0006519283051602542, + 0.040295153856277466, + -0.005135656800121069, + -0.012831544503569603, + 0.01602993533015251, + 0.004820376168936491, + 0.016728870570659637, + -0.015034710988402367, + 0.011965472251176834, + -0.01844581961631775, + 0.005249613430351019, + -0.0037491812836378813, + -0.0023133247159421444, + -0.0027976413257420063, + -0.0033427351154386997, + -0.025313621386885643, + 0.002258245600387454, + -0.006966563872992992, + 0.009207716211676598, + -0.005226822104305029, + 0.0104916300624609, + 0.027152126654982567, + -0.002619108883664012, + -0.026483578607439995, + 0.020269131287932396, + 0.00021485620527528226, + 0.0051964339800179005, + -0.002053123200312257, + 0.007749068085104227, + -0.006822218652814627, + -0.03003903292119503, + 0.01817232370376587, + 0.00971672311425209, + 0.015414567664265633, + 0.0005688347737304866, + 0.00842521246522665, + -0.004277181811630726, + 0.016637705266475677, + 0.03482522442936897, + -0.02523764967918396, + -0.02192530408501625, + 0.0029951666947454214, + -0.024888182058930397, + -0.008979802019894123, + -0.036314260214567184, + 0.004136634990572929, + 0.008144118823111057, + -0.026240471750497818, + 0.0009111802210099995, + -0.01252765953540802, + 0.007825039327144623, + -0.01934228092432022, + 0.005895369220525026, + -0.021271951496601105, + -0.02731926366686821, + 0.0006129930261522532, + 0.023763807490468025, + -0.012702393345534801, + 0.0265443567186594, + 0.0006903887842781842, + -0.011228551156818867, + 0.036861252039670944, + -0.0212111733853817, + 0.01438895519822836, + 0.0077110822312533855, + 0.02373342029750347, + -0.001483338768593967, + -0.010058593936264515, + 0.0046798293478786945, + 0.002981871599331498, + 0.004091051872819662, + 0.005781412590295076, + 0.009040579199790955, + -0.007015945389866829, + -0.022988900542259216, + -0.013264580629765987, + 0.0005379714420996606, + -0.02450832724571228, + 0.012694796547293663, + 0.026240471750497818, + 0.008204895071685314, + -0.02238113060593605, + -0.025404786691069603, + 0.0032610660418868065, + -0.008113729767501354, + -0.001151914126239717, + -0.018020382151007652, + 0.002098705852404237, + 0.009747112169861794, + -0.009283686988055706, + -0.006165067199617624, + -0.005652261432260275, + -0.005929556209594011, + -0.01803557574748993, + -0.007088117767125368, + -0.011198163032531738, + 0.011190565302968025, + 0.0017653820104897022, + 0.00844800379127264, + -0.0010759428841993213, + -0.003633325221017003, + -0.0050520882941782475, + -0.0028375263791531324, + -0.002546936273574829, + 0.01123614888638258, + 0.012246565893292427, + 0.003980893641710281, + 0.028701940551400185, + -0.0005925757577642798, + -0.009633154608309269, + -0.006556319072842598, + -0.0045354836620390415, + -0.002989468863233924, + -0.0009434680105186999, + 0.0048051816411316395, + -0.0034585914108902216, + -0.020056411623954773, + 0.06861723959445953, + 0.003916318062692881, + 0.011547630652785301, + 0.003228778252378106, + -0.003794764168560505, + -0.009253298863768578, + -0.01030929945409298, + 0.02084651216864586, + -0.0014852379681542516, + -0.0012164897052571177, + 0.0032154833897948265, + -0.009101356379687786, + 0.007107110694050789, + 0.0023247203789651394, + -0.04141952842473984, + -0.0015574106946587563, + -0.004227800294756889, + 0.003973296377807856, + -0.005538304336369038, + 0.020816123113036156, + 0.01621226593852043, + -0.03470366820693016, + -0.029096990823745728, + 0.03525066003203392, + -0.012580839917063713, + 0.031117824837565422, + 0.005667455494403839, + -0.00849358644336462, + 0.019144756719470024, + 0.015368985012173653, + 0.006495542358607054, + -0.009192521683871746, + -0.009450823999941349, + 0.00013354321708902717, + -0.005188836716115475, + 0.009154535830020905, + -0.002674188232049346, + 0.018324267119169235, + 0.007088117767125368, + 0.006108088884502649, + 0.01250486820936203, + -0.009435629472136497, + 0.012785961851477623, + 0.0037814690731465816, + -0.028109364211559296, + -0.011828724294900894, + 0.010453644208610058, + -0.0066740745678544044, + 0.007570535410195589, + 0.014943545684218407, + -0.012717587873339653, + -0.03847184404730797, + -0.008265672251582146, + 0.008592348545789719, + 0.024265218526124954, + 0.0066626789048314095, + 0.014852380380034447, + -0.021089620888233185, + 0.004786189179867506, + 0.0032952530309557915, + -0.029203349724411964, + -0.0068298159167170525, + -0.020177964121103287, + -0.017534164711833, + -0.038441453129053116, + -0.0061118872836232185, + -0.02174297347664833, + -0.004087253473699093, + -0.0014387055998668075, + -0.007809844799339771, + -0.015353790484368801, + -0.0035383610520511866, + 0.011091803200542927, + -0.020816123113036156, + 0.012998681515455246, + 0.030525250360369682, + 0.009268493391573429, + 0.014738422818481922, + 0.004896347410976887, + 0.009633154608309269, + 0.0060663046315312386, + 0.005576290190219879, + -0.022305160760879517, + -0.021864525973796844, + 0.008691111579537392, + -0.01689600758254528, + 0.008318852633237839, + -0.012960695661604404, + 0.0005450937314890325, + -0.01261882483959198, + -0.008615139871835709, + -0.02342953532934189, + 0.00284322421066463, + -0.007448981516063213, + 4.6977536840131506e-5, + 0.0007768060895614326, + -0.0022487491369247437, + 0.003958102315664291, + 0.012360523454844952, + -0.012406106106936932, + 0.015285416506230831, + 0.009519197978079319, + -0.005902966484427452, + 0.013728005811572075, + 0.0023608068004250526, + -0.0031888934317976236, + 0.019372669979929924, + -0.0011547630419954658, + -0.033184245228767395, + -0.009731917642056942, + -0.018734510987997055, + -0.008394823409616947, + 0.027942227199673653, + 0.008668320253491402, + -0.00668167183175683, + -0.007528751157224178, + 0.007999773137271404, + -0.010415659286081791, + -0.01458648033440113, + -0.009070967324078083, + -0.01943344622850418, + 0.0007920003263279796, + 0.010590393096208572, + -0.011570421978831291, + 0.0214694757014513, + 0.003359828609973192, + -0.005553498864173889, + -0.004402534104883671, + -0.013424120843410492, + 0.010187745094299316, + 0.0028527206741273403, + 0.0018508497159928083, + 0.03938349708914757, + -0.01361404825001955, + 0.005397757515311241, + -0.005511714611202478, + 0.007198276463896036, + 0.0018850367050617933, + 0.027425622567534447, + -0.036770086735486984, + 0.013029069639742374, + 0.008713902905583382, + 0.005055887158960104, + 0.03209025785326958, + 0.003266763873398304, + 0.01068915519863367, + 0.00019942453945986927, + -0.02505531907081604, + 0.007809844799339771, + -0.010947457514703274, + 0.023505505174398422, + -0.013196206651628017, + -0.00484696589410305, + -0.010088982060551643, + -0.0010379572631791234, + 0.0035820447374135256, + -0.016060322523117065, + 0.023125650361180305, + -0.02011718787252903, + 0.003181296167895198, + -0.0016077416948974133, + -0.0106207812204957, + -0.0009358708630315959, + -0.0077224778942763805, + -0.006035916041582823, + 0.018233101814985275, + 0.01794441044330597, + 0.02645319141447544, + 0.01630343124270439, + -0.002284835558384657, + -0.015513329766690731, + -0.0032686633057892323, + 0.006294218357652426, + -0.03449095040559769, + 0.030479667708277702, + -0.011403284966945648, + 0.004307569935917854, + 0.013864753767848015, + -0.00939764454960823, + -0.000131050415802747, + -0.02329278737306595, + -0.014487718231976032, + 0.01911436766386032, + -0.000631985894870013, + 0.01771649718284607, + -0.009959831833839417, + -0.005678851157426834, + -0.014814394526183605, + 0.00037012246320955455, + 0.007976981811225414, + -0.010985443368554115, + 0.002771051600575447, + 0.006541125010699034, + -0.0018622453790158033, + -0.015513329766690731, + -0.01817232370376587, + 0.01884087175130844, + 0.014039487577974796, + 0.01602993533015251, + 0.002577324863523245, + -0.017336640506982803, + 0.011973069980740547, + 0.009390046820044518, + 0.01060558669269085, + 0.006199254188686609, + -0.00953439250588417, + -0.002879310632124543, + -0.017321445047855377, + 0.0004565397393889725, + 0.01984369195997715, + -0.01675925776362419, + -0.011783141642808914, + 0.010567601770162582, + 0.02537439949810505, + 0.0049153403379023075, + 0.0016856122529134154, + -0.008637931197881699, + 0.012337731197476387, + 0.0021556844003498554, + -0.011593213304877281, + 0.008957010693848133, + 0.0020588210318237543, + -0.008774680085480213, + 0.005033095367252827, + 0.013750797137618065, + -0.01132731419056654, + -0.011919889599084854, + 0.007270448841154575, + 0.012922710739076138, + 0.003416807157918811, + 0.03561532497406006, + 0.002782447263598442, + -0.005906764883548021, + 0.024022109806537628, + -0.020724957808852196, + 0.018962424248456955, + 0.01622745953500271, + -0.0074869669042527676, + -0.0020588210318237543, + 0.013948322273790836, + -0.01721508614718914, + 0.010028205811977386, + -0.026468385010957718, + -0.012337731197476387, + -0.006020721979439259, + -0.012816350907087326, + -0.004186016041785479, + 0.0015279718209058046, + -0.0021063031163066626, + -2.6738320229924284e-5, + -0.01531580463051796, + -0.007775657810270786, + 0.0009809788316488266, + 0.030692387372255325, + 0.01653134450316429, + -0.008858248591423035, + -0.018324267119169235, + 0.006924779620021582, + -0.0003501799947116524, + -0.014654855243861675, + 0.006917182821780443, + -0.00047790666576474905, + 0.007794650737196207, + -0.0024063894525170326, + 0.014973933808505535, + 0.013811574317514896, + -0.017518971115350723, + 0.003931512590497732, + 0.03588882088661194, + -0.0010379572631791234, + 0.009747112169861794, + -0.0029571810737252235, + 0.007426190190017223, + 0.023095261305570602, + 0.003707397263497114, + 0.002685583895072341, + 0.011646393686532974, + -0.014844782650470734, + 0.0012972091790288687, + 0.010256119072437286, + 0.009116550907492638, + -0.003675109473988414, + 0.013583660125732422, + -0.015505732968449593, + -0.006108088884502649, + -0.037225913256406784, + 0.0006903887842781842, + 0.004261987283825874, + 0.007327427621930838, + 0.016607316210865974, + -0.01059798989444971, + -0.017093531787395477, + 0.0037966633681207895, + -0.027076154947280884, + 0.038441453129053116, + 0.007247657515108585, + -0.014814394526183605, + 0.004527886863797903, + -0.013029069639742374, + 1.556520328449551e-5, + 0.005317987874150276, + -0.02070976421236992, + 0.002902101958170533, + -0.011699573136866093, + 0.005390160251408815, + -0.015148667618632317, + 0.023232009261846542, + 0.018688928335905075, + -0.00020132382633164525, + 0.03224220126867294, + -0.0015555113786831498, + -0.014062278904020786, + 0.012064235284924507, + -0.0003867411578539759, + 0.008387226611375809, + -0.0011462162947282195, + -0.008379628881812096, + 0.011076608672738075, + 0.0010730939684435725, + 0.012094623409211636, + -0.003961900714784861, + 0.013743199408054352, + 0.020041216164827347, + 0.0036238287575542927, + 0.00677283713594079, + 0.010415659286081791, + 0.01422181911766529, + 0.0024861593265086412, + 0.013598854653537273, + -0.03257647529244423, + 0.021803749725222588, + 0.007270448841154575, + -0.01420662458986044, + -0.014761215075850487, + 0.0008024463895708323, + 0.013636840507388115, + -0.026301247999072075, + -0.013370940461754799, + -0.006563916336745024, + 0.009093758650124073, + -0.018734510987997055, + 0.0014614970423281193, + -0.013636840507388115, + 0.002584921894595027, + 0.003359828609973192, + 0.027744701132178307, + 0.009329269640147686, + 0.0032952530309557915, + 0.020831318572163582, + 0.012520062737166882, + 0.012649213895201683, + 0.019129561260342598, + 0.015300610102713108, + -0.0034206057898700237, + -0.003821354126557708, + 0.001799569115974009, + 0.02061859890818596, + 0.013765991665422916, + -0.011380493640899658, + -0.002184173557907343, + -0.008349240757524967, + 0.019509417936205864, + -0.014130652882158756, + 0.0020056411158293486, + -0.004881152883172035, + 0.026605132967233658, + -0.014776408672332764, + 0.0015574106946587563, + -0.027653535827994347, + -0.0050634839572012424, + -0.003109123557806015, + -0.023232009261846542, + -0.0283980555832386, + 0.0025336414109915495, + -0.014601674862205982, + 0.01454089768230915, + -0.00842521246522665, + 0.022122828289866447, + 0.0017160007264465094, + 0.007240060716867447, + 0.024979347363114357, + 0.006974161136895418, + -0.009040579199790955, + -0.002524144947528839, + 0.007646506652235985, + 0.0037624763790518045, + -0.015482941642403603, + 0.018461015075445175, + -0.002307626884430647, + 0.002550734905526042, + -0.015923574566841125, + -0.00016867992235347629, + 0.004167023114860058, + -0.01812674105167389, + -0.012937904335558414, + 0.005211628042161465, + -0.037438634783029556, + 0.003487080568447709, + 0.010522019118070602, + -0.004091051872819662, + -0.010453644208610058, + -0.006734851747751236, + 0.011220954358577728, + -0.003086332231760025, + -0.015467747114598751, + -0.0207553468644619, + 0.007448981516063213, + 0.016728870570659637, + 0.038076791912317276, + -0.003194591263309121, + 0.0029229940846562386, + 0.01586279831826687, + -0.01604512892663479, + -0.005439541768282652, + 0.012383314780890942, + 0.019311891868710518, + 0.004391138441860676, + -0.010392867960035801, + 0.008189701475203037, + 0.00712230522185564, + 0.012945502065122128, + -0.016105905175209045, + -0.00017141013813670725, + 0.0063246069476008415, + -0.0032344760838896036, + -0.019129561260342598, + 0.041115641593933105, + 0.011676781810820103, + 0.012725184671580791, + -0.00029296413413248956, + -0.005397757515311241, + -0.028352471068501472, + -0.026939406991004944, + 0.01431298442184925, + -0.021059231832623482, + -0.009040579199790955, + 0.027425622567534447, + -0.018597763031721115, + 0.007946592755615711, + 0.011843918822705746, + -0.026969796046614647, + -0.012968293391168118, + -0.005621872842311859, + -0.011995861306786537, + 0.015011919662356377, + 0.001560259610414505, + 0.011897098273038864, + -0.007684492506086826, + 0.01236812025308609, + 0.005401556380093098, + 0.004307569935917854, + 0.003359828609973192, + 0.02206205204129219, + 0.022259578108787537, + -0.018385043367743492, + -0.02107442542910576, + -0.006833614315837622, + -0.0034566919784992933, + 0.023946139961481094, + -0.03300191089510918, + -0.013788782991468906, + 0.00121743930503726, + 0.010863889008760452, + 0.0005436692736111581, + -0.0005579139105975628, + 0.0008665471104905009, + 0.02373342029750347, + 0.013940725475549698, + -0.011069011874496937, + -0.008919024839997292, + -0.01634901389479637, + 0.008045355789363384, + 0.028033392503857613, + -0.006746247410774231, + 0.012352925725281239, + 0.022259578108787537, + 0.0001096241467166692, + 0.009390046820044518, + 0.003464289242401719, + -0.0006101441103965044, + -0.0004990361630916595, + 0.005067282821983099, + -0.0209832601249218, + 0.0066398875787854195, + 0.02437157742679119, + -0.011251342482864857, + 0.0034452963154762983, + -0.0005147052579559386, + 0.00243487861007452, + -0.01644017919898033, + 0.01957019418478012, + 0.019494224339723587, + 0.023140843957662582, + 0.00038887784467078745, + -0.010506824590265751, + -0.01888645440340042, + 0.009830680675804615, + 0.011684378609061241, + -0.00570923974737525, + -0.00971672311425209, + 0.004436721093952656, + 0.006396779790520668, + -0.002220259979367256, + 0.0042543900199234486, + 0.018491404131054878, + 0.01844581961631775, + -0.0014311084523797035, + 0.012216177769005299, + 0.01979810930788517, + 0.012087026610970497, + 0.010180148296058178, + 0.007384405937045813, + -0.020147576928138733, + -0.005500318948179483, + -0.0012345329159870744, + 0.019995633512735367, + 0.019266309216618538, + -0.007938995957374573, + 0.009617961011826992, + -0.010187745094299316, + 0.0020474253688007593, + -0.029233738780021667, + 0.0034206057898700237, + 0.03054044395685196, + 0.033913567662239075, + -0.016744064167141914, + 0.012200983241200447, + -0.0016343316528946161, + 0.0064499592408537865, + -0.013310163281857967, + 0.011889501474797726, + 0.00256592920050025, + -0.013583660125732422, + -0.01125894021242857, + 0.017108727246522903, + 0.019053589552640915, + 0.015346193686127663, + 0.027395233511924744, + 0.043151672929525375, + -0.01223137229681015, + 0.01515626534819603, + -0.0033123467583209276, + 0.01259603351354599, + -0.020724957808852196, + 0.0045012966729700565, + -0.015300610102713108, + 0.0005958995316177607, + 0.001352288294583559, + 0.008941816166043282, + -0.002902101958170533, + -0.012314939871430397, + -0.0002057159144897014, + 0.02709134854376316, + 0.01572605036199093, + 0.01785324513912201, + -0.010088982060551643, + 0.0031338143162429333, + 0.004789987578988075, + -0.011410882696509361, + 0.012801156379282475, + -0.017199892550706863, + 0.005367368925362825, + -0.009245702065527439, + 0.013310163281857967, + -0.00967114046216011, + 0.008546765893697739, + 0.015756437554955482, + 0.003752979915589094, + 0.009975025430321693, + 0.013439314439892769, + -0.0018517993157729506, + -0.012497271411120892, + 0.001736892736516893, + -0.001213640789501369, + 0.006096693221479654, + 0.0033465337473899126, + -0.04123719781637192, + -0.0013845760840922594, + 0.008227686397731304, + -0.002393094589933753, + -0.0019809503573924303, + -0.002277238294482231, + -0.03774251788854599, + -0.01602993533015251, + -0.002319022547453642, + 0.014533300884068012, + 0.0019980440847575665, + 0.009655945934355259, + 0.01431298442184925, + -0.023930944502353668, + 0.009101356379687786, + -0.003304749494418502, + -0.0014994826633483171, + -0.020223548635840416, + 0.012603631243109703, + 0.01024092547595501, + 0.0016238855896517634, + -0.01454089768230915, + -0.03218142315745354, + -0.007961787283420563, + -0.026422802358865738, + -0.005735829472541809, + 0.010218133218586445, + 0.0006058707367628813, + 0.008820262737572193, + -0.005055887158960104, + 0.01640979014337063, + -0.013743199408054352, + -0.007976981811225414, + -0.009686334989964962, + 0.001140518463216722, + -0.007403398863971233, + -0.003135713515803218, + -0.0033693250734359026, + 0.013553272001445293, + -0.004212606232613325, + 0.014054682105779648, + 0.01338613498955965, + 0.0132721783593297, + -0.010020608082413673, + 0.02089209482073784, + 0.013036667369306087, + -0.009390046820044518, + 0.0031774977687746286, + 0.0035687496419996023, + -0.01440414972603321, + 0.0012069932417944074, + 0.0028413250111043453, + 0.020360296592116356, + -0.024310801178216934, + 0.01060558669269085, + 0.022213995456695557, + -0.01404708530753851, + -0.023763807490468025, + 0.009709126316010952, + 0.0028185334522277117, + -0.019585389643907547, + -0.01460927166044712, + 0.006035916041582823, + -0.011570421978831291, + -0.0026039148215204477, + -0.016820035874843597, + -0.0008798420894891024, + 0.001537468284368515, + 0.01943344622850418, + -0.01776207983493805, + 0.004106246400624514, + 0.0066170962527394295, + -0.0017160007264465094, + -0.0036504187155514956, + -0.016014739871025085, + 0.01757974736392498, + -0.023672642186284065, + -0.006385383661836386, + 0.021803749725222588, + -0.0020683174952864647, + 0.01666809245944023, + -0.02128714509308338, + 0.03616231679916382, + 0.01035488210618496, + -0.005857383832335472, + -0.013621645979583263, + -0.010977846570312977, + 0.0025602313689887524, + -0.007289441768079996, + -0.006161268800497055, + 0.020421072840690613, + -0.008372032083570957, + -0.009314076043665409, + -0.012915113009512424, + 0.001975252525880933, + -0.0012535257264971733, + -0.03330579772591591, + 0.009997816756367683, + 0.0031414113473147154, + 0.006130880210548639, + -0.014753617346286774, + -0.008265672251582146, + 0.014738422818481922, + -0.013188609853386879, + -0.0031414113473147154, + 0.00424679322168231, + 0.007984578609466553, + -0.013492494821548462, + -1.7152884538518265e-5, + 0.004945728462189436, + -0.0024823606945574284, + 0.0016970079159364104, + 0.007251456379890442, + -0.006890592630952597, + -0.004653239157050848, + 0.012466882355511189, + -0.01595396362245083, + -0.011616004630923271, + -0.021621419116854668, + -0.003705497831106186, + -0.0031850947998464108, + -0.019327087327837944, + -0.018643345683813095, + -0.00429237587377429, + -0.021545447409152985, + -0.001090187462978065, + 0.011061414144933224, + 0.0033503323793411255, + -0.015186653472483158, + -0.0046228510327637196, + 0.021089620888233185, + -0.009549587033689022, + 0.00630941241979599, + 0.0018897849367931485, + 0.011038622818887234, + -0.0014282595366239548, + -0.005891570821404457, + 0.001502331579104066, + -0.0007905758684501052, + -0.03932272270321846, + 0.01322659570723772, + 0.002100605284795165, + 0.0014273099368438125, + -0.0036694116424769163, + 0.006442362442612648, + -0.0038327497895807028, + -0.03485561162233353, + 0.013659631833434105, + 0.007517355494201183, + -0.019220726564526558, + 0.01721508614718914, + -0.0020284324418753386, + -0.017792467027902603, + -0.01577163301408291, + 0.01598435267806053, + -0.003281958168372512, + -0.007707283832132816, + 0.019874079152941704, + -0.0011538134422153234, + -0.017291057854890823, + -0.0013494393788278103, + 0.01599954627454281, + -0.003730188589543104, + 0.010499226860702038, + -0.025298427790403366, + -0.03509872034192085, + -0.023307980969548225, + 0.010955055244266987, + -0.003585843136534095, + -0.0034035120625048876, + -0.008318852633237839, + 0.00016559359210077673, + -0.018719317391514778, + 0.024493131786584854, + -0.007901010103523731, + 6.172664143377915e-5, + 0.020922483876347542, + -0.008174506947398186, + 0.0029096989892423153, + 0.004998908378183842, + 0.0049495273269712925, + 0.0021025044843554497, + 0.020375490188598633, + 0.008303658105432987, + 0.005321786273270845, + 0.0028109364211559296, + 0.012611228041350842, + 0.024705851450562477, + 0.008280866779386997, + 0.0017169503262266517, + 0.019403059035539627, + -0.0049267360009253025, + -0.01352288294583559, + 0.030190976336598396, + 0.004429124295711517, + 0.011927486397325993, + -0.019403059035539627, + -0.026422802358865738, + -0.02130233868956566, + -0.024629879742860794, + -0.002423482947051525, + -0.006161268800497055, + 0.008455600589513779, + 0.005340779200196266, + -0.00021438137628138065, + -0.0026096126530319452, + -0.017610136419534683, + -0.009048175998032093, + -0.02025393582880497, + -0.011190565302968025, + -0.005188836716115475, + 0.0008798420894891024, + 0.022077245637774467, + 0.024310801178216934, + 0.014882768504321575, + -0.003441497916355729, + -0.020816123113036156, + -0.0016077416948974133, + 0.030616415664553642, + -0.01418383326381445, + 0.004577267915010452, + -0.018628152087330818, + -0.00041238145786337554, + 4.39208815805614e-5, + -0.014761215075850487, + 0.007251456379890442, + 0.0050862752832472324, + -0.012953098863363266, + -0.016197070479393005, + 0.018506597727537155, + -0.018810482695698738, + -0.006867801304906607, + 0.008356837555766106, + 0.0016941590001806617, + -0.0006248635472729802, + -0.009139342233538628, + 0.009374852292239666, + -0.007832636125385761, + 0.0010218133684247732, + 0.010962652042508125, + 0.01223137229681015, + -0.006005527451634407, + 0.018111547455191612, + 0.014464926905930042, + -0.017929216846823692, + -0.0037852677050977945, + 0.017686108127236366, + -0.009899054653942585, + -0.017959604039788246, + 0.009800291620194912, + 0.009504003450274467, + -0.017184697091579437, + 0.006487945094704628, + -0.02187972143292427, + -0.013682423159480095, + -0.0006609499105252326, + 0.005143254064023495, + 0.011289328336715698, + 0.022138023748993874, + -0.008865845389664173, + -0.01602993533015251, + 0.010955055244266987, + 0.011388091370463371, + 0.010567601770162582, + 0.012672005221247673, + -0.022852152585983276, + -0.008949413895606995, + 0.0022829361259937286, + 0.004505095537751913, + 0.007380607537925243, + -0.010567601770162582, + -0.017108727246522903, + -0.004835570231080055, + -0.022852152585983276, + 0.01060558669269085, + 0.011220954358577728, + 0.011866710148751736, + 0.02373342029750347, + -0.021864525973796844, + 0.005644664168357849, + -0.01653134450316429, + -0.013401329517364502, + -0.00630941241979599, + 0.011448867619037628, + 0.01906878501176834, + 0.011084206402301788, + 0.0004638994578272104, + -0.013439314439892769, + 0.012102221138775349, + -0.009169730357825756, + -0.009040579199790955, + 0.011965472251176834, + 0.003036950947716832, + -0.008691111579537392, + 0.00709951389580965, + 0.0014035688946023583, + 0.001090187462978065, + 0.006115686148405075, + 0.004493699874728918, + -0.006837412714958191, + 0.01422181911766529, + -0.016014739871025085, + 0.0047254119999706745, + 0.020527433604002, + -0.0038441454526036978, + -0.0026058140210807323, + 0.007878218777477741, + 0.023232009261846542, + -0.004516491200774908, + -0.004531685262918472, + 0.03579765558242798, + -0.018704121932387352, + -0.0029495840426534414, + 0.007528751157224178, + 0.012937904335558414, + 0.0017587345791980624, + 0.002951483242213726, + 0.011616004630923271, + -0.010841097682714462, + -0.0032116847578436136, + 0.02183413878083229, + 0.011775543913245201, + -0.009914248250424862, + 0.014373761601746082, + 0.01513347402215004, + 0.017047949135303497, + -0.009215313009917736, + -0.005697844084352255, + -0.012132609263062477, + 0.0154525525867939, + -0.030388502404093742, + 0.002510849852114916, + -0.0010806911159306765, + 0.026422802358865738, + -0.006282822694629431, + 0.019129561260342598, + -0.0007981729577295482, + -0.007631312590092421, + -0.0021442887373268604, + 0.008151715621352196, + 0.010035802610218525, + -0.0029438859783113003, + 0.002176576526835561, + -0.027623148635029793, + -0.031330544501543045, + 0.02592139132320881, + 0.018536986783146858, + 0.007179283536970615, + 0.024265218526124954, + 0.00045725199743174016, + -0.006544923409819603, + -0.021059231832623482, + -0.005431944504380226, + -0.011737558990716934, + 0.027927033603191376, + -0.004626649431884289, + 0.022943317890167236, + -0.017610136419534683, + -0.017139114439487457, + -0.0023741016630083323, + -2.1255630144878523e-6, + -0.018233101814985275, + -0.0026988787576556206, + -0.015277818776667118, + 0.023672642186284065, + 0.008250477723777294, + 0.006731052882969379, + -0.01146406214684248, + -0.023262398317456245, + 0.0018755403580144048, + -0.009162133559584618, + -0.011122191324830055, + -0.029051408171653748, + 0.01998043991625309, + 0.00034780590794980526, + 0.0004009857657365501, + 0.025845421478152275, + -0.012117414735257626, + 0.011319716461002827, + 0.008691111579537392, + -0.0030274544842541218, + -0.013507689349353313, + -0.015847602859139442, + -0.026194889098405838, + -0.007479370106011629, + -0.012352925725281239, + 0.0031224184203892946, + -0.018233101814985275, + 0.01716950349509716, + -0.01153243612498045, + 0.013082250021398067, + 0.0030217566527426243, + -0.017701301723718643, + 0.010567601770162582, + 0.020922483876347542, + 0.013105041347444057, + 0.0019011805998161435, + 0.006206851452589035, + 0.030023839324712753, + 0.009777500294148922, + -0.020512238144874573, + -0.00359723879955709, + 0.008372032083570957, + -0.0009558133315294981, + -0.01538417860865593, + -0.001726446789689362, + 2.6070603780681267e-5, + -0.013348149135708809, + 0.02871713414788246, + 0.004368347115814686, + 0.012808753177523613, + -0.010370075702667236, + 0.004440519958734512, + -0.010871486738324165, + 0.005302793346345425, + -0.008858248591423035, + -0.0005678851157426834, + 0.011023429222404957, + -0.012922710739076138, + -0.015057502314448357, + 0.012915113009512424, + -0.001730245305225253, + -0.00867591705173254, + -0.019083978608250618, + 0.017002366483211517, + -0.002026533242315054, + -0.0076768952421844006, + 0.0034206057898700237, + 0.02160622552037239, + -0.01135010551661253, + 0.000581654894631356, + 0.008280866779386997, + -0.029826315119862556, + 0.011980666778981686, + 0.02251788042485714, + 0.006491743493825197, + -0.020314713940024376, + 0.01794441044330597, + -0.008979802019894123, + 0.006958967074751854, + 0.027380039915442467, + 0.004261987283825874, + -0.0144269410520792, + 0.002423482947051525, + 0.005109066609293222, + 0.021712584421038628, + -0.001043655094690621, + 0.0063815852627158165, + 0.0031793969683349133, + -0.0004430073604453355, + 0.0033731237053871155, + -0.0094660185277462, + -0.03063160926103592, + -0.017002366483211517, + 0.008660722523927689, + -0.006715858820825815, + 0.003931512590497732, + -0.008106132969260216, + -0.035129107534885406, + 0.01572605036199093, + -0.012816350907087326, + 0.023140843957662582, + 0.004113843198865652, + 0.004417728632688522, + 0.0016894107684493065, + -0.006058707367628813, + 0.013720408082008362, + 0.013849559240043163, + -0.012998681515455246, + 0.003046447178348899, + -0.0031490083783864975, + -0.009724320843815804, + 0.020998453721404076, + -0.00856196042150259, + 0.0020892093889415264, + -0.013978710398077965, + -0.00040549656841903925, + -0.008964608423411846, + -0.005610477179288864, + 0.018476208671927452, + -0.009891456924378872, + 0.014814394526183605, + 0.03306268900632858, + 0.01726066879928112, + 0.0030920300632715225, + 0.0123453289270401, + 0.004398735705763102, + -0.015323402360081673, + -0.01035488210618496, + -0.004858361557126045, + -0.02224438264966011, + 0.02342953532934189, + 0.004193613305687904, + 0.0027862456627190113, + -0.008204895071685314, + 0.018415432423353195, + -0.006666477303951979, + 0.008204895071685314, + -0.015186653472483158, + -0.0017150510102510452, + 0.0007388204685412347, + 0.01071194652467966, + -0.004752001725137234, + -0.0042695845477283, + 0.013416523113846779, + -0.012968293391168118, + -0.009481212124228477, + -0.020451461896300316, + -0.01139568816870451, + 0.006453758105635643, + 0.011243745684623718, + 0.001984748989343643, + -0.003973296377807856, + -0.020512238144874573, + -0.006210649851709604, + -0.0012497270945459604, + -0.003063540905714035, + 0.01726066879928112, + 0.009238104335963726, + -0.002636202611029148, + 0.0002495180815458298, + -0.007730075158178806, + 0.010795515030622482, + -0.001298158778809011, + -0.007141297683119774, + 0.0036067352630198, + -0.006814621388912201, + -0.02128714509308338, + -0.008964608423411846, + 0.008683514781296253, + 0.005120462737977505, + 0.010772723704576492, + 0.00013484897499438375, + -0.009921845979988575, + -0.008957010693848133, + -0.015103084966540337, + -0.04761878028512001, + -0.015893185511231422, + -0.0034263036213815212, + -0.004079656209796667, + -0.005940951872617006, + 0.0013190509052947164, + 0.004664634820073843, + 0.010825904086232185, + 0.0006880146684125066, + 0.010658767074346542, + 0.0014928351156413555, + -0.01517905667424202, + 0.00672725448384881, + 0.020056411623954773, + 0.008736694231629372, + -0.018111547455191612, + 0.00668167183175683, + 0.012975890189409256, + 0.006563916336745024, + 0.013978710398077965, + -0.003135713515803218, + 0.009093758650124073, + 0.020329907536506653, + 0.0030065623577684164, + 0.009792694821953773, + -0.02112000808119774, + 0.026240471750497818, + -0.018871258944272995, + 0.0068184202536940575, + 8.523024735040963e-5, + 0.014556092210114002, + 0.005743426736444235, + -0.005511714611202478, + 0.0033009510952979326, + 0.007505959831178188, + 0.007483168505132198, + 0.005500318948179483, + 0.0008485039579682052, + -0.001833756105042994, + -0.005656059831380844, + 0.014700437895953655, + -0.007471772842109203, + -0.018141934648156166, + 0.006039714906364679, + -0.017534164711833, + 0.009458420798182487, + -0.01568046770989895, + 0.004345555789768696, + -0.004011282231658697, + -0.0009387197787873447, + -0.020588209852576256, + 0.011076608672738075, + 0.002704576589167118, + -0.0004100073711015284, + -0.004277181811630726, + 0.01255045086145401, + 0.005990333389490843, + -0.02011718787252903, + -0.008972205221652985, + -0.025161679834127426, + 0.00942043587565422, + 0.0014491516631096601, + 0.011099399998784065, + 0.003101526526734233, + 0.011616004630923271, + -0.009686334989964962, + 0.003984692040830851, + -0.020132381469011307, + -0.007076722104102373, + -0.01607551798224449, + 0.003270562505349517, + -0.007707283832132816, + 0.004072059411555529, + 0.003942908253520727, + -0.013515286147594452, + -0.0032078861258924007, + -0.001529871136881411, + -0.008318852633237839, + 0.03281958028674126, + -0.005139455199241638, + -0.01657692715525627, + -0.0067500458098948, + -0.0052192253060638905, + -0.027790283784270287, + -0.02364225499331951, + -0.0042695845477283, + -0.011973069980740547, + 0.029963063076138496, + -0.020238742232322693, + -0.011517242528498173, + 0.015376581810414791, + 0.0022354540415108204, + -0.013629242777824402, + -0.000812892394606024, + 0.010202939622104168, + 0.01767091453075409, + -0.025541534647345543, + 0.04363788664340973, + 0.0016343316528946161, + 0.0023228211794048548, + -0.016561733558773994, + 0.00872149970382452, + -0.015558912418782711, + 0.01911436766386032, + -0.024067692458629608, + -0.011357702314853668, + 0.014700437895953655, + -0.002970475936308503, + 0.012406106106936932, + 0.007042535115033388, + 0.005082476884126663, + -0.010635975748300552, + 0.0016428784001618624, + -0.003682706505060196, + 0.011296925134956837, + -0.01572605036199093, + -0.001977151958271861, + 0.01132731419056654, + -0.014708034694194794, + -0.011843918822705746, + -0.018643345683813095, + -0.005724433809518814, + -0.012725184671580791, + 0.010993040166795254, + 0.0027406630106270313, + 0.008045355789363384, + 0.002746360842138529, + 0.017534164711833, + -0.020724957808852196, + -0.007574333809316158, + 0.013211401179432869, + -0.0012915113475173712, + -0.023232009261846542, + -0.018673734739422798, + 0.006047311704605818, + -0.012565645389258862, + -0.009146939031779766, + -0.008805068209767342, + 0.014768811874091625, + -0.014639660716056824, + 0.02066418156027794, + 0.006013124715536833, + 0.010195341892540455, + -0.0033427351154386997, + -0.024751434102654457, + -0.002793842926621437, + -0.012763170525431633, + 0.012398508377373219, + -0.013697616755962372, + -0.011000637896358967, + 0.02809417061507702, + 0.021712584421038628, + -0.012603631243109703, + -0.001401669578626752, + 0.012740379199385643, + -0.014153444208204746, + 0.009238104335963726, + 0.010225730948150158, + -0.02288254164159298, + -0.012261760421097279, + 0.013059458695352077, + -0.025450369343161583, + -0.004155627451837063, + -0.022183606401085854, + 0.017047949135303497, + -0.00679562846198678, + 0.007916204631328583, + 0.007164089474827051, + -0.0008926622103899717, + 0.0001893346052384004, + -0.02596697397530079, + -0.017883632332086563, + -0.006601902190595865, + 0.001013266621157527, + 0.05214666947722435, + 0.01998043991625309, + -0.000981928431428969, + 0.0031072243582457304, + 0.003697900800034404, + -0.0288234930485487, + 0.011046220548450947, + -0.0047709946520626545, + -0.00577761372551322, + -0.012535257264971733, + 0.012216177769005299, + 0.006016923114657402, + -0.01040046475827694, + -0.009747112169861794, + -0.013773588463664055, + 0.003435799852013588, + -0.005071081221103668, + -0.006294218357652426, + -0.003675109473988414, + 0.009086161851882935, + 0.006506938021630049, + -0.006400578189641237, + -0.0030103609897196293, + 0.02224438264966011, + 0.010522019118070602, + 0.016820035874843597, + -0.011851515620946884, + -0.00515464972704649, + -0.014062278904020786, + -0.006738650146871805, + 0.01744299940764904, + 0.005842189304530621, + -0.037165138870477676, + 0.017610136419534683, + -0.010225730948150158, + 0.012109817937016487, + -0.0030274544842541218, + 0.01075752917677164, + 0.00962555781006813, + 0.012200983241200447, + -0.009990219958126545, + -0.012983486987650394, + 0.007885816507041454, + -0.006142275873571634, + -0.008113729767501354, + -0.00865312572568655, + 0.005261009559035301, + -0.017139114439487457, + 0.00561807444319129, + -0.01680484227836132, + 0.0049153403379023075, + -0.02247229777276516, + -0.01449531503021717, + -0.00881266500800848, + -0.01065116934478283, + 0.01671367511153221, + 0.019129561260342598, + -0.03008461743593216, + -0.018430626019835472, + 0.009595169685781002, + -0.006206851452589035, + 0.004600059241056442, + 0.016789646819233894, + 0.016911201179027557, + -0.006294218357652426, + 0.011160177178680897, + 0.006693067494779825, + -0.00763511098921299, + 0.004577267915010452, + 0.01812674105167389, + 0.014594078063964844, + -0.025526341050863266, + -0.02110481448471546, + -0.002199367852881551, + -0.017199892550706863, + -0.015399373136460781, + -0.003733987221494317, + -0.013067055493593216, + -0.020223548635840416, + 0.013560868799686432, + 0.014176235534250736, + -0.008372032083570957, + 0.0051964339800179005, + -0.005477527622133493, + -0.01789882779121399, + 0.003950505051761866, + -0.008296061307191849, + 0.0009876262629404664, + -0.001663770410232246, + 0.015467747114598751, + 0.002993267495185137, + 0.0008366334368474782, + -0.026711493730545044, + -0.0009330219472758472, + 0.00047861889470368624, + -0.0013152523897588253, + -0.009222909808158875, + -0.006317009683698416, + 0.00471021793782711, + 0.010180148296058178, + 0.011897098273038864, + 0.003802361199632287, + 0.0009558133315294981, + -0.0006965614156797528, + -0.002858418505638838, + -0.01988927461206913, + 0.011851515620946884, + -0.0035459583159536123, + 0.00663608917966485, + 0.009101356379687786, + -0.016744064167141914, + 0.011616004630923271, + 0.005078678485006094, + 0.006138477474451065, + 0.002622907515615225, + 0.026559550315141678, + -0.006115686148405075, + 0.0008062449051067233, + 0.017275862395763397, + 0.0036010374315083027, + -0.013067055493593216, + 0.01586279831826687, + 0.021044038236141205, + 0.003086332231760025, + 0.003143310546875, + 0.0003174174053128809, + 0.0005769067211076617, + 0.018962424248456955, + 8.457737567368895e-5, + -0.02279137633740902, + 0.008394823409616947, + 0.004121440462768078, + -0.018339460715651512, + 0.019858885556459427, + -0.011661587283015251, + -0.0008185902843251824, + -0.009002593345940113, + -0.0046228510327637196, + 0.0033085481263697147, + -0.018385043367743492, + -0.025435175746679306, + 0.049594033509492874, + 0.024310801178216934, + -1.079474350262899e-5, + 0.01671367511153221, + -0.0026039148215204477, + 0.0002654245763551444, + 0.031117824837565422, + -0.0025678284000605345, + 0.009655945934355259, + -0.007357815746217966, + -0.00015194251318462193, + -0.004231598693877459, + 0.012375717051327229, + 0.007969384081661701, + 0.01607551798224449, + -0.021059231832623482, + 0.01735183410346508, + -0.002658993937075138, + 0.003950505051761866, + -0.00872149970382452, + -0.0027501594740897417, + 0.007581931073218584, + 0.021393505856394768, + -0.00014707559603266418, + -0.007855427451431751, + 0.0002604389446787536, + 0.006970362737774849, + -0.01609071157872677, + 0.00026613680529408157, + -0.004592462442815304, + -0.010993040166795254, + -0.0323333665728569, + 0.007684492506086826, + 0.005424347706139088, + 0.005059685558080673, + -0.00951160117983818, + 0.0009315974893979728, + -0.019008006900548935, + 0.005469930358231068, + 0.015080293640494347, + 0.007262852042913437, + 0.003490879200398922, + 0.007787053473293781, + -0.017640525475144386, + 0.007855427451431751, + -0.003498476231470704, + -0.008683514781296253, + -0.008174506947398186, + -0.018612956628203392, + 0.004159426316618919, + 0.009184924885630608, + 0.013112638145685196, + -0.010415659286081791, + -0.013743199408054352, + 0.008341643959283829, + 0.0038061598315835, + 0.0014463027473539114, + -0.02917296066880226, + 0.004706419073045254, + 0.012641617096960545, + -0.006575311999768019, + -0.013332954607903957, + 0.003023655852302909 + ], + "ed810bc0-eb72-45d8-90b2-999a60068a2b": [ + -0.03332439437508583, + -0.02017432637512684, + -0.00993061438202858, + 0.0050810170359909534, + -0.035638585686683655, + 0.002157645532861352, + 0.02826039120554924, + 0.009556259959936142, + -0.0015425123274326324, + -0.008113292045891285, + -0.012135905213654041, + 0.018159616738557816, + 0.005213742610067129, + -0.022325165569782257, + -0.0028995489701628685, + 0.030792392790317535, + 0.005206936504691839, + 0.015314518474042416, + 0.005724226590245962, + -0.05028607323765755, + 0.07895485311746597, + -0.009460968896746635, + -0.030547359958291054, + -0.0024077827110886574, + 0.018227679654955864, + -0.021576454862952232, + -0.0008976009557954967, + -0.0044786459766328335, + -0.044977039098739624, + 0.0019160164520144463, + 0.00367548456415534, + 0.022107359021902084, + 0.02703523077070713, + -0.01950729452073574, + 0.0037163232918828726, + -0.002545613329857588, + -0.0032041375525295734, + 0.023359745740890503, + -0.006891533266752958, + -0.03283432871103287, + -0.019398391246795654, + 0.026259295642375946, + -0.0043459199368953705, + 0.0010515969479456544, + -0.07127717137336731, + 0.0029710165690630674, + 0.055758461356163025, + -0.03634645789861679, + 0.0017424519173800945, + 0.007868259213864803, + 0.012660002335906029, + -0.0013749034842476249, + -0.01739729382097721, + -0.014974196441471577, + 0.03781665116548538, + -0.02853265032172203, + -0.013878357596695423, + 0.04230891168117523, + -0.006459323689341545, + -0.04808078333735466, + -0.00464880745857954, + 0.016403550282120705, + -0.009195517748594284, + -0.013769454322755337, + -0.015682067722082138, + -0.029322197660803795, + -0.0016012180130928755, + -0.013388292863965034, + -0.04271729663014412, + -0.03272542357444763, + 0.0036856941878795624, + 0.01199977658689022, + -0.04592994228005409, + -0.011285098269581795, + -0.01658051833510399, + -0.028097037225961685, + 0.05973342806100845, + -0.002162750344723463, + 0.0054553719237446785, + 0.013721808791160583, + -0.02820594049990177, + 0.03003006987273693, + 0.029540004208683968, + -0.02790645696222782, + 0.05200129747390747, + -0.008222195319831371, + -0.006592049729079008, + -0.02525193989276886, + 0.025360843166708946, + -0.007337355986237526, + 0.0023056857753545046, + 0.038007233291864395, + -0.007105936761945486, + 0.014987808652222157, + -0.009454162791371346, + -0.014538583345711231, + 0.0019619599916040897, + 0.013803485780954361, + 0.012421776540577412, + 0.015750132501125336, + 0.022706326097249985, + 0.0032585891894996166, + -0.03596529737114906, + 0.011319130659103394, + -0.004002194385975599, + 0.008623776026070118, + -0.010189259424805641, + -0.011033260263502598, + -0.025415293872356415, + 0.0312824584543705, + 0.0031275651417672634, + -0.04053923115134239, + 0.010624872520565987, + -0.00774574326351285, + -0.03218090906739235, + -0.025769229978322983, + 0.01749258302152157, + -0.010032711550593376, + -0.00758238835260272, + -0.061475880444049835, + 0.04241781309247017, + 0.03155471384525299, + 0.004580742679536343, + 0.0026562181301414967, + -0.006877920590341091, + -0.0025983634404838085, + 0.023931488394737244, + -0.0019602584652602673, + 0.01829574443399906, + 0.0005819516954943538, + 0.014171035028994083, + -0.0019160164520144463, + -0.004849597811698914, + 0.032017555087804794, + -0.012088259682059288, + 0.04007639363408089, + 0.019779551774263382, + 0.03792555630207062, + -0.03855174779891968, + 0.045821040868759155, + -0.060604654252529144, + -0.05148400738835335, + -0.012598743662238121, + 0.017805680632591248, + -0.007534743286669254, + -0.003542758757248521, + -0.025061359629034996, + 0.022747164592146873, + -0.0035189359914511442, + 0.03258929401636124, + -0.04230891168117523, + -0.01864968053996563, + 0.004846194293349981, + 0.008957291953265667, + -0.008569324389100075, + 0.011441647075116634, + 0.006840485148131847, + 0.014143808744847775, + 0.018744971603155136, + 0.03460400551557541, + 0.016893615946173668, + -0.047645170241594315, + 0.03525742515921593, + 0.015341744758188725, + 0.04598439484834671, + 0.015763744711875916, + 0.038578975945711136, + 0.004039629828184843, + -0.0029046537820249796, + 0.0048087588511407375, + 0.010829065926373005, + -0.00930442102253437, + 0.03778942674398422, + 0.013136453926563263, + 0.026871874928474426, + -0.00030990628874860704, + 0.02828761748969555, + -0.01486529316753149, + 0.03512129560112953, + -0.024829939007759094, + -0.011183002032339573, + -0.0029420892242342234, + -0.02312832698225975, + -0.029267746955156326, + -0.005132065620273352, + 0.0034951134584844112, + -0.008501259610056877, + 0.0019347341731190681, + 0.02048742212355137, + 0.003957952372729778, + -0.014838066883385181, + -0.011060485616326332, + -0.0036652747076004744, + 0.019112519919872284, + 0.005373694468289614, + -0.01652606762945652, + -0.006336807738989592, + -0.007487098220735788, + 0.018186841160058975, + 0.04053923115134239, + 0.006704356055706739, + -0.06272827088832855, + -0.06997033208608627, + 0.03811613470315933, + -0.015777356922626495, + 0.0024486214388161898, + -0.01652606762945652, + -0.03577471524477005, + 0.03185419738292694, + -0.043697427958250046, + 0.03879678249359131, + -0.058154333382844925, + 0.04048478230834007, + 0.01768316514790058, + -0.019997358322143555, + 0.012666808441281319, + 0.0022665488068014383, + 0.02940387651324272, + 0.0028416940476745367, + -0.012401357293128967, + -0.020936649292707443, + 0.015151163563132286, + 0.019412003457546234, + -0.010413873009383678, + -0.04440529644489288, + -0.010141614824533463, + 0.005720823537558317, + 0.04007639363408089, + -0.05750091373920441, + -0.00826983992010355, + 0.046420007944107056, + -0.0195345189422369, + 0.00183774228207767, + -0.0402669757604599, + -0.009522227570414543, + 0.013265776447951794, + -0.017356455326080322, + 0.04816246032714844, + -0.011114937253296375, + 0.0009460969595238566, + 0.02553781121969223, + 0.024775488302111626, + 0.018581615760922432, + 0.02346864901483059, + 0.03155471384525299, + 0.017805680632591248, + 0.0135108083486557, + -0.004921065177768469, + 0.011972550302743912, + -0.005901194643229246, + 0.029267746955156326, + 0.027743101119995117, + 0.011080904863774776, + -0.004240420181304216, + -0.0066124689765274525, + -0.0030697102192789316, + -0.014075743965804577, + -0.043751876801252365, + 0.003022064920514822, + -0.01005993690341711, + -0.014171035028994083, + 0.03670039400458336, + 0.0402669757604599, + 0.012210776098072529, + 0.05251859128475189, + -0.03904181346297264, + 0.01502864807844162, + -0.014919744804501534, + 0.008630582131445408, + 0.0288865864276886, + -0.041655492037534714, + 0.016920842230319977, + 0.005778678227216005, + -0.005649355705827475, + -0.028505424037575722, + -0.0018683712696656585, + -0.018241293728351593, + 0.021862326189875603, + -0.006302775349467993, + 0.00901174359023571, + -0.004505871795117855, + -0.005400920286774635, + 0.0028791294898837805, + 0.006639694795012474, + -0.015409809537231922, + 0.006091775372624397, + -0.021140841767191887, + 0.03158194199204445, + -0.027198584750294685, + 0.013653744012117386, + 0.02197122946381569, + 0.0033606861252337694, + 0.02680381014943123, + -0.01245580893009901, + 0.044650331139564514, + 0.008440001867711544, + -0.026858262717723846, + -0.023700067773461342, + -0.05055833235383034, + 0.012564712204039097, + -0.026014262810349464, + 0.0004841089539695531, + -0.008113292045891285, + -0.009896581992506981, + 0.008970905095338821, + -0.010883517563343048, + 0.03852452337741852, + 0.028995489701628685, + -0.04078426584601402, + -0.017873745411634445, + 0.015736518427729607, + -0.017029745504260063, + -0.042200006544589996, + -0.005652759224176407, + 0.015110325068235397, + -0.013980453833937645, + -0.005901194643229246, + -0.00929761491715908, + -0.02039213292300701, + -0.019915681332349777, + 0.0007601957186125219, + -0.019044455140829086, + -0.01067251805216074, + 0.004485452547669411, + 0.042826201766729355, + -0.022692713886499405, + 0.047617942094802856, + -0.011673066765069962, + 0.006472936365753412, + -0.01807793788611889, + 0.011666259728372097, + -0.008337904699146748, + -0.03256206959486008, + -0.00758238835260272, + -0.024203745648264885, + -0.052763622254133224, + -0.049496524035930634, + -0.05804542824625969, + -0.02044658362865448, + -0.004366339650005102, + -0.008297066204249859, + -0.00934525951743126, + 0.010032711550593376, + -0.028069810941815376, + 0.011196615174412727, + -0.013156873174011707, + 0.017792068421840668, + 0.022066520527005196, + -0.016008777543902397, + -0.0008848388679325581, + 0.0008495303918607533, + -0.018758583813905716, + 0.011455260217189789, + 0.008970905095338821, + 0.059951234608888626, + -0.016389938071370125, + 0.0037945974618196487, + -0.024721035733819008, + 0.002273355145007372, + -0.011536937206983566, + 0.024857165291905403, + -0.026545165106654167, + -0.054805558174848557, + -0.0019041051855310798, + 0.010291356593370438, + 0.031173553317785263, + -0.04141045734286308, + -0.02251574583351612, + -0.028015360236167908, + 0.044350847601890564, + -0.02643626183271408, + 0.006452517118304968, + -0.01112855039536953, + -0.02891381084918976, + -0.02734832651913166, + -0.02378174662590027, + 0.04560323432087898, + -0.001978976186364889, + -0.016716647893190384, + 0.022148197516798973, + -0.008637388236820698, + -0.0076776789501309395, + 0.012503453530371189, + -0.011530131101608276, + 0.01520561520010233, + 0.038061682134866714, + 0.021195294335484505, + 0.020065423101186752, + 0.01709781028330326, + 0.012775711715221405, + -0.03277987614274025, + 0.0012396251549944282, + -0.005234162323176861, + 0.01565484143793583, + -0.029703360050916672, + -0.012816550210118294, + 0.0129118412733078, + 0.0017458550864830613, + 0.014497744850814342, + -0.006289162207394838, + -0.003957952372729778, + 0.00405324250459671, + -0.018268520012497902, + 0.004550113808363676, + -0.0020538470707833767, + -0.02913161739706993, + -0.014770002104341984, + -0.00639466242864728, + 0.01589987426996231, + 0.032888781279325485, + 0.022325165569782257, + 0.00023588612384628505, + 0.032888781279325485, + 0.002649411791935563, + 0.05864439532160759, + -0.007085517514497042, + 0.022134585306048393, + 0.03182697296142578, + -0.016430776566267014, + -0.0273891668766737, + 0.04919704049825668, + 0.06223820522427559, + -0.025388069450855255, + 0.01596793904900551, + -0.015804583206772804, + 0.016975292935967445, + 0.011611808091402054, + 0.004444613587111235, + -0.012694034725427628, + -0.043724652379751205, + -0.011618615128099918, + 0.020786907523870468, + 0.0011775163002312183, + 0.006578436587005854, + 0.0006738388328813016, + -0.01862245425581932, + 0.009842130355536938, + 0.030002843588590622, + 0.007684485055506229, + -0.026354584842920303, + -0.016104066744446754, + 0.023808971047401428, + -0.002508177887648344, + -0.018717745319008827, + 0.011223840527236462, + 0.0028995489701628685, + -0.021276971325278282, + 0.020283229649066925, + 0.028042584657669067, + 0.005431549157947302, + 0.005581291392445564, + 0.04304400831460953, + -0.018717745319008827, + 0.0020045002456754446, + 0.009215936996042728, + -0.017383679747581482, + -0.017084196209907532, + -0.03256206959486008, + 0.007861453108489513, + -0.02379535883665085, + -0.01836380921304226, + -0.0031718069221824408, + -0.016444390639662743, + -0.023577552288770676, + 0.019166970625519753, + -0.030520133674144745, + 0.022992197424173355, + 0.07198504358530045, + 0.00929761491715908, + 0.010550001636147499, + -0.019098905846476555, + -0.025333616882562637, + -0.006724775303155184, + 0.042826201766729355, + 0.01859522983431816, + -0.03729936107993126, + -0.028668779879808426, + -0.00814051739871502, + -0.014892518520355225, + 0.00045901015982963145, + -0.034685682505369186, + -0.03819781169295311, + -0.004335710313171148, + -0.006803049705922604, + 0.00034755450906232, + -0.031173553317785263, + -0.0225293580442667, + -0.0481896847486496, + 0.010475130751729012, + -0.02220264822244644, + 0.06104026734828949, + 0.007561969105154276, + 0.011741130612790585, + 0.02650432661175728, + -0.012959485873579979, + -0.0059250169433653355, + -0.01648522913455963, + -0.02853265032172203, + -0.013347453437745571, + -0.024149294942617416, + 0.048216912895441055, + -0.031963102519512177, + -0.03615587577223778, + 0.013939615339040756, + -0.007439452689141035, + -0.0012719559017568827, + -0.01799626089632511, + 0.010339002124965191, + -0.020024584606289864, + -0.05360762029886246, + -0.03694542497396469, + -0.008201775141060352, + -0.03223536163568497, + 0.014674711972475052, + -0.011781970039010048, + 0.012224389240145683, + -0.0016097261104732752, + 0.010876711457967758, + 0.025483358651399612, + 0.004601161926984787, + 0.002647710032761097, + 0.011148969642817974, + 0.008678227663040161, + 0.0057854847982525826, + -0.04023974761366844, + -0.0068506947718560696, + -0.03245316818356514, + -0.025115810334682465, + 0.02310110069811344, + -0.0013621413381770253, + 0.01741090603172779, + 0.024584908038377762, + -0.03694542497396469, + 0.011625421233475208, + 0.02853265032172203, + 0.025605875998735428, + -0.0018088148208335042, + -0.009440549649298191, + -0.0004200857656542212, + 0.03569303825497627, + -0.030220650136470795, + 0.03577471524477005, + 0.027579747140407562, + -0.008970905095338821, + 0.005424743052572012, + 0.021290583536028862, + -0.0017594679957255721, + 0.0240948423743248, + -0.020977487787604332, + 0.02736194059252739, + -0.03931407257914543, + 0.009107033722102642, + -0.01918058469891548, + 0.0029233715031296015, + 0.024503229185938835, + -0.022366004064679146, + -0.00012474952382035553, + -0.02014710009098053, + -0.01562761515378952, + 0.007105936761945486, + -0.03697265312075615, + 0.020854970440268517, + -0.024870777502655983, + 0.03237149119377136, + -0.001243879203684628, + -0.013442744500935078, + 0.01800987310707569, + 0.021440325304865837, + 0.007738936692476273, + 0.01566845364868641, + 0.034113939851522446, + 0.002576242433860898, + 0.015559551306068897, + -0.022379616275429726, + 0.016675809398293495, + 0.022665487602353096, + -0.021549228578805923, + 0.009869356639683247, + -0.02525193989276886, + -0.013463163748383522, + 0.00021759378432761878, + -0.02138587459921837, + 0.008508065715432167, + -0.0144432932138443, + 0.016988907009363174, + 0.0010031010024249554, + -0.006823468953371048, + -0.007922710850834846, + 0.004822371993213892, + 0.008787130936980247, + 0.005799097940325737, + 0.01682555116713047, + 0.006554613821208477, + -0.003270500572398305, + -0.0264226496219635, + 0.02551058493554592, + 0.0008763307705521584, + 0.017914583906531334, + -0.00722164660692215, + -0.007303323596715927, + -0.0008461271645501256, + 0.020269615575671196, + 0.00758238835260272, + 0.0029233715031296015, + -0.03928684443235397, + 0.01836380921304226, + 0.004560323432087898, + -0.01685277745127678, + -0.012278840877115726, + 0.027579747140407562, + -0.01772400364279747, + 0.018132390454411507, + 0.047400135546922684, + -0.01859522983431816, + 0.04290787875652313, + -0.00011985738092334941, + -0.0051695010624825954, + 0.02130419760942459, + -0.0023448229767382145, + -0.004573936108499765, + 0.015682067722082138, + -0.05061278119683266, + 0.075742207467556, + -0.03389613330364227, + 0.019126132130622864, + 0.005492807365953922, + -0.016880003735423088, + -0.01383071206510067, + -0.0303840059787035, + 0.0032670972868800163, + 0.02346864901483059, + -0.0038456458132714033, + 0.024584908038377762, + -0.025320004671812057, + 0.007446259260177612, + 0.014620260335505009, + 0.01837742328643799, + 0.03994026407599449, + -0.02399955317378044, + -0.004413984715938568, + -0.01749258302152157, + -0.008419581688940525, + 0.01263277605175972, + 0.03721768409013748, + -0.0139940669760108, + 0.0007640243275091052, + 0.00318882311694324, + 0.03759884461760521, + 0.03844284638762474, + -0.0018530567176640034, + -0.056684140115976334, + -0.0003718024818226695, + -0.01125787291675806, + -5.9875514125451446e-5, + 0.014089357107877731, + -0.03544800728559494, + -0.02073245495557785, + 0.016444390639662743, + 0.005029968451708555, + 0.0037537587340921164, + 0.04168271645903587, + -0.012421776540577412, + -0.034712910652160645, + -0.009549452923238277, + 0.010332195088267326, + 0.018772196024656296, + -0.0007644497090950608, + 0.02644987590610981, + 0.015137551352381706, + 0.02164451964199543, + 0.00858974363654852, + -0.013871550559997559, + 0.023019423708319664, + 0.011339549906551838, + 0.012258421629667282, + 0.016131293028593063, + 0.01020967960357666, + -0.01067932415753603, + 0.0114144217222929, + -0.013109227642416954, + 0.0020810728892683983, + -0.021413100883364677, + -0.027184972539544106, + 0.01172071136534214, + -0.04141045734286308, + -0.008759904652833939, + -0.005295420065522194, + 0.054261039942502975, + -0.014797228388488293, + 0.008868807926774025, + -0.012993518263101578, + 0.007772969081997871, + 0.008256226778030396, + 0.016648583114147186, + -0.015151163563132286, + 0.014770002104341984, + -0.0005130363861098886, + -0.019071681424975395, + -0.00963793694972992, + -0.017655938863754272, + -0.017302002757787704, + 0.028369294479489326, + 0.010931163094937801, + -0.020569100975990295, + 0.009215936996042728, + -0.0014268027152866125, + -0.02672213315963745, + 0.00045220370520837605, + 0.021862326189875603, + -0.0021270164288580418, + 0.027538908645510674, + -2.5444434868404642e-5, + -0.003947742749005556, + 0.02615039236843586, + 0.006925565656274557, + 0.0348762646317482, + -0.02195761725306511, + 0.016131293028593063, + 0.014824453741312027, + 0.002484355354681611, + 0.003353879554197192, + 0.04353407025337219, + -0.0013919195625931025, + -0.020569100975990295, + -0.04304400831460953, + 0.005598307587206364, + -0.002647710032761097, + 0.018118776381015778, + -0.009665163233876228, + 0.0017416011542081833, + 0.0601690411567688, + -0.010121195577085018, + -0.0049925330094993114, + 0.006782629992812872, + -0.025918971747159958, + 0.004281258676201105, + -0.004584145732223988, + -0.02557864971458912, + 0.033487748354673386, + -0.02921329438686371, + 0.021576454862952232, + 0.005223952699452639, + -0.004250629805028439, + -0.009583485312759876, + 0.013789873570203781, + 0.014102970249950886, + 0.008930065669119358, + -0.002760016592219472, + 0.03392336145043373, + 0.02198484167456627, + 0.006636291276663542, + 0.0037980007473379374, + 0.05624852702021599, + 0.019711486995220184, + -0.02069161646068096, + -0.00959029234945774, + -0.003978371620178223, + -1.1705237739079166e-5, + -0.015872647985816002, + 0.011768356896936893, + -0.005996484775096178, + 0.008045227266848087, + -0.022488519549369812, + -0.022624649107456207, + -0.014048518612980843, + -0.0022665488068014383, + -0.011679872870445251, + 0.05820878595113754, + 0.04089316725730896, + 0.009569872170686722, + 0.018785810098052025, + -0.012993518263101578, + 0.02017432637512684, + 0.02737555280327797, + 0.004066855646669865, + -0.029648907482624054, + 0.034141167998313904, + -0.005472388118505478, + -0.04903368651866913, + -0.026953553780913353, + -0.01564122922718525, + -0.019452841952443123, + 0.006905146408826113, + 0.004696452524513006, + 0.030220650136470795, + -0.029022714123129845, + 0.031173553317785263, + 0.03258929401636124, + -0.004213194362819195, + -0.011271486058831215, + 0.0010864799842238426, + 0.0034049279056489468, + 0.007194420788437128, + -0.0003333034983370453, + -0.019711486995220184, + -0.010638485662639141, + 0.02406761609017849, + -0.027770327404141426, + 0.025905359536409378, + 0.010618066415190697, + 0.029376650229096413, + -0.021576454862952232, + 0.046447232365608215, + 0.03827948868274689, + -0.018105164170265198, + 0.0022835650015622377, + 0.036183103919029236, + 0.03479458764195442, + 0.0019517503678798676, + 0.024203745648264885, + -0.024857165291905403, + -0.01863606832921505, + -0.02975781075656414, + 0.04029420018196106, + -0.012074647471308708, + -0.007092323619872332, + 0.002011306816712022, + 0.005554065573960543, + 0.026340972632169724, + 0.0032636940013617277, + 0.015368970111012459, + 0.014661098830401897, + -0.000977576826699078, + 0.03430452197790146, + -0.017955422401428223, + -0.001176665537059307, + -0.007262485101819038, + -0.01592709869146347, + 0.018568003550171852, + 0.00780700147151947, + 0.005278404336422682, + 0.011639034375548363, + -0.024557681754231453, + 0.029240520671010017, + 0.002188274636864662, + -0.008943678811192513, + -0.052464138716459274, + -0.012442195788025856, + -0.01772400364279747, + 0.02439432591199875, + -0.017329229041934013, + -0.02463935874402523, + -0.04127432778477669, + -0.018105164170265198, + -0.0019568551797419786, + -0.016049616038799286, + 0.011380389332771301, + 0.012238002382218838, + 0.06659433245658875, + 0.03909626603126526, + 0.007139969151467085, + -0.010080356150865555, + -0.01681193895637989, + 0.011046872474253178, + -0.01471555046737194, + 0.0016726857284083962, + -0.02737555280327797, + 0.02672213315963745, + -0.0063402107916772366, + 0.012734873220324516, + 0.017383679747581482, + 0.004461629781872034, + -0.05230078473687172, + -0.012081453576683998, + 0.0059624528512358665, + -0.016948066651821136, + -0.017056969925761223, + 0.004761113785207272, + -0.028314843773841858, + 0.025701165199279785, + -0.02013348788022995, + 0.0037333392538130283, + -0.0073645818047225475, + 0.027157746255397797, + -0.013340647332370281, + -0.015831809490919113, + -0.009195517748594284, + 0.018159616738557816, + -0.050912268459796906, + -0.02699439227581024, + 0.004492258653044701, + 0.026694906875491142, + -0.0036720812786370516, + 0.014497744850814342, + -0.04301678016781807, + 0.0063402107916772366, + 0.03751716762781143, + -0.008923259563744068, + -0.003872871631756425, + -0.013687776401638985, + 0.009991873055696487, + 0.0009520525927655399, + -0.039586327970027924, + -0.01655329391360283, + 0.0009843832813203335, + -0.019793163985013962, + -0.005023162346333265, + -0.017887357622385025, + -0.011142163537442684, + -0.008800743147730827, + 0.00021950810332782567, + -0.02530639059841633, + -0.03928684443235397, + 0.03275265172123909, + 0.0031275651417672634, + -0.033487748354673386, + 0.01427993830293417, + 0.024693811312317848, + 0.011816002428531647, + 0.02016071230173111, + 0.019316712394356728, + 0.013817098923027515, + -0.0019449439132586122, + -0.004492258653044701, + 0.027579747140407562, + 0.023495875298976898, + 0.0043867588974535465, + -0.015260066837072372, + -0.01982039026916027, + 0.0022852665279060602, + 0.004165549296885729, + 0.009685582481324673, + 8.412350143771619e-5, + 0.010624872520565987, + 0.0031513876747339964, + 0.01320451870560646, + 0.016308261081576347, + 0.0027872424107044935, + 0.01624019630253315, + 0.016389938071370125, + -0.010032711550593376, + 0.008950485847890377, + -0.002338016638532281, + 0.02284245565533638, + -0.0074530658312141895, + 0.016934454441070557, + 0.02224348857998848, + -0.017914583906531334, + 0.0023107908200472593, + 0.004226807039231062, + -0.0063402107916772366, + -0.015246454626321793, + -0.01769677735865116, + -0.01200658269226551, + 0.005656162276864052, + 0.0017288390081375837, + -0.033242713660001755, + 0.012564712204039097, + 0.011339549906551838, + 0.0051695010624825954, + -0.013783066533505917, + 0.02161729335784912, + -0.017342841252684593, + -0.028777683153748512, + 0.001365544623695314, + 0.031064650043845177, + 0.008834775537252426, + -0.0005185666377656162, + 0.02048742212355137, + -0.0005232460680417717, + -0.014552196487784386, + 0.008004388771951199, + 0.01628103479743004, + 0.006646500900387764, + -0.03640091046690941, + 0.01291864737868309, + -0.045222073793411255, + 0.022910520434379578, + -0.023985939100384712, + 0.012312873266637325, + -0.013150067068636417, + -0.004805355798453093, + -0.01395322848111391, + 0.014239098876714706, + 0.009985066018998623, + -0.0294855535030365, + -0.0150422602891922, + -0.01561400294303894, + -0.006333404220640659, + 0.009249969385564327, + 0.03065626323223114, + 0.028151487931609154, + 0.009256775490939617, + -0.04094761982560158, + -0.021494777873158455, + 0.020991099998354912, + -0.04179162159562111, + 0.023822585120797157, + 0.012449001893401146, + 0.00334366993047297, + 0.0016403550980612636, + -0.024285422638058662, + -0.001511032460257411, + 0.01799626089632511, + 0.016662197187542915, + -0.0015654840972274542, + -0.022719940170645714, + -0.005516630131751299, + -0.01628103479743004, + -0.01546426024287939, + -0.017574261873960495, + -0.014906131662428379, + -0.00040349503979086876, + 0.021222520619630814, + 0.01471555046737194, + -0.0129118412733078, + 0.03237149119377136, + 0.0013817099388688803, + 0.010767808184027672, + -0.005846743006259203, + -0.003522339276969433, + 0.008297066204249859, + -0.006690742913633585, + -0.013102421537041664, + 0.029948392882943153, + 0.038905683904886246, + -0.0003928599471691996, + -0.039259620010852814, + -0.031663618981838226, + 0.02160368114709854, + -0.039858587086200714, + 0.008712259121239185, + 0.005945436656475067, + -0.004961904138326645, + 0.0014216977870091796, + 0.0065648239105939865, + -0.0004334859549999237, + -0.013361066579818726, + 0.04023974761366844, + 0.006731581874191761, + -0.011148969642817974, + -0.013286195695400238, + 0.010121195577085018, + 0.004815565422177315, + -0.010761002078652382, + -0.021562842652201653, + -0.026000648736953735, + -0.05205575004220009, + -0.007630033418536186, + -0.013551647774875164, + 0.041873298585414886, + -0.018554389476776123, + -0.0051865167915821075, + -0.009794485755264759, + 0.0035835974849760532, + -0.0011349760461598635, + 0.013721808791160583, + -0.003479799022898078, + -0.016349099576473236, + -0.005662968847900629, + 0.03542077913880348, + -0.013776260428130627, + 0.023849811404943466, + 0.005302226636558771, + -0.004019210580736399, + 0.002113403519615531, + -0.023849811404943466, + -0.0034151377622038126, + 0.011652647517621517, + -0.017383679747581482, + 0.00992380827665329, + -0.011033260263502598, + -0.0016088752308860421, + -0.010461517609655857, + 0.0174381323158741, + -0.010747388936579227, + -0.02168535813689232, + 0.014225486665964127, + 0.0008958993712440133, + -0.0135448407381773, + 0.019303100183606148, + 0.015845421701669693, + -0.00780700147151947, + 0.024108456447720528, + -0.006786033511161804, + 0.023223616182804108, + -0.01717948727309704, + 0.0083855502307415, + 0.0408659428358078, + 0.012027001939713955, + -0.012374131008982658, + -0.005220549181103706, + -0.019166970625519753, + 0.010890324600040913, + -0.027198584750294685, + -0.004842791240662336, + 0.007534743286669254, + 0.016961680725216866, + -0.0007516876212321222, + 0.013442744500935078, + -0.007602807600051165, + -0.004679436329752207, + 0.012864195741713047, + 0.012653195299208164, + -0.0008703751373104751, + 0.02254297211766243, + -0.0026357988826930523, + 0.02679019793868065, + 0.009515420533716679, + -0.0210319384932518, + -0.007139969151467085, + -0.0011443349067121744, + 0.02159006893634796, + -0.0011077502276748419, + 0.0020861777011305094, + -0.0020198149140924215, + 0.009127452969551086, + 0.004182565025985241, + -0.007071904372423887, + 0.014524970203638077, + 0.036482587456703186, + 0.008453614078462124, + -0.00023397181939799339, + 0.010236904956400394, + 0.01020967960357666, + -0.00631638802587986, + 0.006136017385870218, + -0.007473485078662634, + 0.003991984762251377, + 0.00035308473161421716, + 0.014933357015252113, + 0.004761113785207272, + -0.02616400457918644, + 0.003957952372729778, + -0.02921329438686371, + 0.009814905002713203, + 0.0165396798402071, + 0.01655329391360283, + 0.010298162698745728, + 0.03972245752811432, + 0.017084196209907532, + -0.003353879554197192, + 0.019112519919872284, + 0.019153358414769173, + 0.013422325253486633, + 0.010427485220134258, + 0.01323855109512806, + 0.016430776566267014, + 0.00465561356395483, + 0.02468019723892212, + -0.01950729452073574, + 0.005771872121840715, + -0.007419033441692591, + 0.0031071456614881754, + 0.012285646982491016, + -0.010563614778220654, + -0.03329716622829437, + 0.026586003601551056, + 0.014960583299398422, + -0.030792392790317535, + 0.017288390547037125, + 0.006166646257042885, + 0.006357226986438036, + 0.010618066415190697, + -0.017955422401428223, + -0.009733227081596851, + -0.018404647707939148, + -0.003542758757248521, + 0.024230971932411194, + -0.004784936085343361, + -0.0456576868891716, + -0.014906131662428379, + -0.01005313079804182, + -0.0014463711995631456, + -0.0002969315100926906, + -0.022039294242858887, + 0.006221097894012928, + 0.0024656374007463455, + 0.005686791148036718, + -0.0006636291509494185, + 0.001060105045326054, + 0.0010124598629772663, + 0.018186841160058975, + 0.04388800635933876, + -0.04200942814350128, + -0.015736518427729607, + -0.025320004671812057, + 0.012442195788025856, + -0.002055548829957843, + -0.0020742665510624647, + 0.017560647800564766, + 0.006680533289909363, + -0.010202872566878796, + 0.022406842559576035, + -0.021236132830381393, + 0.0018921939190477133, + -0.009501808322966099, + -0.000772532366681844, + 0.0144432932138443, + 0.02134503610432148, + -0.028124263510107994, + -0.01532813161611557, + -0.008977711200714111, + -0.005115049425512552, + -0.00019536646141204983, + 0.0011843227548524737, + -0.0017696777358651161, + 0.0068983398377895355, + 0.0019568551797419786, + -0.00556087214499712, + -0.010829065926373005, + 0.02549697272479534, + -0.01262596994638443, + -0.005822920240461826, + -0.009406518191099167, + -0.0288865864276886, + -0.020800519734621048, + -0.009678775444626808, + 0.016730260103940964, + -0.03637368232011795, + -0.032317038625478745, + -0.009583485312759876, + -0.00856251735240221, + -0.023291680961847305, + -0.019915681332349777, + 0.015505099669098854, + 0.001020967960357666, + 0.006959598045796156, + 0.008596549741923809, + -0.0083855502307415, + 0.045548781752586365, + -0.006449114065617323, + 0.005489404313266277, + -0.005901194643229246, + 0.012979905121028423, + -0.011380389332771301, + -0.010441098362207413, + 0.006803049705922604, + 0.01307519618421793, + -0.006221097894012928, + -0.02495245635509491, + 0.018744971603155136, + -0.008705453015863895, + 0.029812263324856758, + 0.0009027058258652687, + -0.0234278105199337, + -0.00871906615793705, + -0.007841033861041069, + -0.011312324553728104, + 0.018418261781334877, + 0.002788943937048316, + -0.00624832371249795, + 0.0045092748478055, + -0.029866714030504227, + 0.0005440908134914935, + -0.0010915849125012755, + -0.003576790913939476, + 0.011285098269581795, + 0.009944227524101734, + -0.00918190460652113, + -0.0029182666912674904, + 0.00361422635614872, + -0.003576790913939476, + 0.0016582220559939742, + -0.003023766679689288, + -0.004015807062387466, + -0.03158194199204445, + 0.030302327126264572, + -0.007439452689141035, + -0.010189259424805641, + -0.02770226262509823, + 0.010427485220134258, + 0.015069486573338509, + -0.019316712394356728, + -0.06033239886164665, + -0.0011979356640949845, + 0.037136007100343704, + -0.020079035311937332, + -0.001972169615328312, + 0.02281522937119007, + -0.014089357107877731, + 0.01519200298935175, + -0.0024265004321932793, + 0.02978503704071045, + -0.022719940170645714, + 0.023264454677700996, + -0.0040124040096998215, + -0.029349423944950104, + 0.00019143147801514715, + -0.01926226168870926, + 0.001078822766430676, + -0.00168714951723814, + 0.026626843959093094, + -0.027852004393935204, + -0.013932809233665466, + -0.0011290203547105193, + 0.028069810941815376, + 0.021426713094115257, + -0.019929293543100357, + -0.023019423708319664, + 0.020337680354714394, + 0.016362711787223816, + 0.009318034164607525, + -0.011387195438146591, + -0.017056969925761223, + 0.022052906453609467, + 0.017342841252684593, + 0.025959810242056847, + 0.014538583345711231, + -6.152395508252084e-5, + -0.00511164590716362, + 0.026286520063877106, + -0.02551058493554592, + 0.003944339230656624, + -0.014797228388488293, + 0.005448565352708101, + -0.010754195041954517, + 0.00049814727390185, + 0.007139969151467085, + -0.017220325767993927, + -0.03961355611681938, + 0.008698646910488605, + 0.0022767584305256605, + 0.012571518309414387, + 0.006513775326311588, + -5.649887668823794e-8, + 0.009569872170686722, + -0.0045092748478055, + -0.01155735645443201, + -0.03689097240567207, + 0.017315614968538284, + 0.00901174359023571, + 0.012360517866909504, + 0.0032381699420511723, + -0.005312436260282993, + 0.017193099483847618, + 0.008154130540788174, + 0.019902067258954048, + 0.00023290830722544342, + 0.02737555280327797, + -0.009563066065311432, + 0.02586452104151249, + 0.0021304197143763304, + -0.013034356757998466, + -0.0021406293381005526, + -0.023836197331547737, + -0.0063402107916772366, + 0.009222743101418018, + -0.004315291065722704, + 0.0019092099973931909, + 0.016090454533696175, + 0.005836533382534981, + -0.00021865729650016874, + 2.8475433282437734e-5, + -0.003995387814939022, + 0.01862245425581932, + -0.0051695010624825954, + 0.004781533032655716, + 0.004376549273729324, + -0.03808891028165817, + 0.005387307144701481, + -0.0016794921830296516, + -0.022338777780532837, + 0.0021065971814095974, + 0.02163090743124485, + -0.010754195041954517, + -0.02644987590610981, + -0.02767503634095192, + -0.007623227313160896, + 0.011019647121429443, + 0.0031667021103203297, + -0.048815879970788956, + -0.00963113084435463, + -0.01836380921304226, + -0.009032162837684155, + 0.005040178075432777, + -0.03974968567490578, + -0.029621683061122894, + 0.02222987450659275, + -0.013483582995831966, + 0.022080132737755775, + 0.030737940222024918, + -0.009059388190507889, + 0.009032162837684155, + -0.00839235633611679, + -0.004403775092214346, + 0.002230814890936017, + 0.02194400317966938, + 0.025047745555639267, + -0.02429903671145439, + 0.027783939614892006, + -0.011189808137714863, + 0.02198484167456627, + -0.010413873009383678, + 0.02225710079073906, + 0.042526718229055405, + 0.0027276859618723392, + -0.009610711596906185, + 0.014552196487784386, + 0.00139021803624928, + 0.013265776447951794, + 0.031364135444164276, + 0.01866329275071621, + 0.005441758781671524, + 0.02583729475736618, + -0.02194400317966938, + -0.030302327126264572, + -0.013701389543712139, + -0.03604697436094284, + -0.0028127667028456926, + -0.00278043607249856, + -0.002673234324902296, + 0.00809287279844284, + 0.021413100883364677, + -0.01742451824247837, + -0.014756389893591404, + -0.029322197660803795, + 0.02105916477739811, + -0.016743874177336693, + 0.010189259424805641, + -0.0019160164520144463, + -0.019343938678503036, + 0.01520561520010233, + -0.011067292653024197, + 0.013919196091592312, + -0.01200658269226551, + 0.009903389029204845, + -0.003995387814939022, + 0.026980778202414513, + -0.028042584657669067, + -0.022447681054472923, + -0.01830935850739479, + 0.0056970007717609406, + 0.005761662498116493, + 0.00735096912831068, + -0.004063452128320932, + -0.008664614520967007, + 0.015409809537231922, + 0.018853874877095222, + 0.007194420788437128, + -0.0011996373068541288, + -0.008753098547458649, + 0.012115485966205597, + -0.01487890537828207, + 0.025401681661605835, + -0.038007233291864395, + 0.0049925330094993114, + 0.007296517491340637, + 0.02010626159608364, + 0.008685033768415451, + 0.011747937649488449, + 0.010243711061775684, + 0.025456134229898453, + 0.014647486619651318, + 0.009168291464447975, + -0.00033309077844023705, + -0.03332439437508583, + 0.0035801941994577646, + 0.016362711787223816, + -0.01441606692969799, + 0.00843319483101368, + -0.021413100883364677, + -0.028069810941815376, + -0.0022103956434875727, + 0.026381811127066612, + 0.0019024035427719355, + -0.015573163516819477, + -0.02039213292300701, + 0.02530639059841633, + 0.024734649807214737, + 0.0007746593910269439, + -0.002877427963539958, + 0.012959485873579979, + -0.011666259728372097, + 0.009154679253697395, + -0.001963661517947912, + 0.04377910494804382, + 0.004563726484775543, + 0.0035495650954544544, + 0.03435897454619408, + -0.010359421372413635, + 0.020841358229517937, + -0.022393230348825455, + -0.00018866636673919857, + -0.006241517141461372, + 0.012149518355727196, + -0.011278292164206505, + 0.00331304082646966, + -0.012530679814517498, + -0.010917549952864647, + -0.02439432591199875, + 0.005890985019505024, + -0.008154130540788174, + 0.009188711643218994, + -0.007602807600051165, + 0.0045262910425662994, + 0.03822503983974457, + 0.002269952092319727, + -0.028968263417482376, + 0.02371368184685707, + -0.001987484283745289, + -0.003757162019610405, + 0.012986712157726288, + 0.011938517913222313, + -0.006081565748900175, + -0.028124263510107994, + 0.02010626159608364, + 0.005176307167857885, + 0.007827420718967915, + 0.005292017012834549, + 0.011210227385163307, + -0.010692937299609184, + 0.022052906453609467, + 0.03239871561527252, + -0.02921329438686371, + -0.02676297165453434, + 0.012101872824132442, + -0.028015360236167908, + -0.0053226458840072155, + -0.020841358229517937, + 0.0012268631253391504, + 0.002040234161540866, + -0.018214067444205284, + -0.001428504241630435, + -0.005625533405691385, + 0.020256003364920616, + -0.013776260428130627, + 0.0006912803510203958, + -0.014048518612980843, + -0.02257019653916359, + -0.001555274473503232, + 0.012939066626131535, + -0.004870017059147358, + 0.017233937978744507, + -0.0022291133645921946, + -0.005234162323176861, + 0.03454955294728279, + -0.003991984762251377, + 0.01457942184060812, + 0.016335487365722656, + 0.014892518520355225, + -0.008685033768415451, + -0.012932260520756245, + -0.004162145778536797, + -0.0021559440065175295, + 0.004250629805028439, + 0.004444613587111235, + 0.001545915612950921, + -0.007854646071791649, + -0.024544069543480873, + -0.019697874784469604, + -0.0006593751022592187, + -0.025102198123931885, + 0.013646937906742096, + 0.029975617304444313, + 0.009848937392234802, + -0.02404039166867733, + -0.015872647985816002, + 0.0008805848192423582, + -0.011918098665773869, + 0.0021355245262384415, + -0.00814732350409031, + -0.006969807669520378, + 0.009386098012328148, + -0.006095178425312042, + -0.000995443668216467, + -0.019765939563512802, + -0.0051695010624825954, + -0.012183550745248795, + 0.0025915568694472313, + -0.007310130167752504, + 0.0012081454042345285, + 0.0054145329631865025, + 0.004311888013035059, + 0.005237565375864506, + -0.013912389054894447, + -0.012741679325699806, + 0.007616420742124319, + -0.008201775141060352, + 0.0054145329631865025, + 0.01625380851328373, + -0.0025881535839289427, + 0.03130968287587166, + -0.012666808441281319, + -0.0014429680304601789, + 0.0021984842605888844, + -0.004444613587111235, + -0.008868807926774025, + -0.00404643639922142, + 0.005802500993013382, + 0.003910307306796312, + -0.020514648407697678, + 0.051511235535144806, + 0.0034100329503417015, + 0.013851131312549114, + 0.00570721086114645, + -0.0037299362011253834, + -0.012292454019188881, + -0.014974196441471577, + 0.02650432661175728, + -0.0006257682689465582, + -0.007105936761945486, + 0.0016156816855072975, + 0.0018990003736689687, + 0.004427597392350435, + -0.005179710686206818, + -0.05300865322351456, + -0.0008814356406219304, + 0.0012362219858914614, + 0.003398121567443013, + -0.00917509850114584, + 0.012387744151055813, + 0.02222987450659275, + -0.026613229885697365, + -0.022012067958712578, + 0.03155471384525299, + -0.00496530719101429, + 0.02194400317966938, + -0.005472388118505478, + -0.007044678553938866, + 0.004485452547669411, + 0.012510260567069054, + 0.004679436329752207, + -0.008657807484269142, + -0.0028348874766379595, + 0.005486000794917345, + -0.013633324764668941, + -0.001073717954568565, + 0.004839387722313404, + 0.023291680961847305, + 0.01622658409178257, + 0.007085517514497042, + 0.0020147101022303104, + 0.005846743006259203, + 0.006813259329646826, + 0.010733775794506073, + -0.02940387651324272, + -0.020664390176534653, + 0.0007674275548197329, + -0.004580742679536343, + 0.0027140730526298285, + 0.02522471360862255, + -0.019289487972855568, + -0.04511316865682602, + -0.013068389147520065, + -0.003590403823181987, + 0.013857937417924404, + 0.0012694034958258271, + 0.014797228388488293, + -0.02255658432841301, + 0.017220325767993927, + 0.005996484775096178, + -0.019643422216176987, + -0.0076776789501309395, + -0.01502864807844162, + -0.007276098243892193, + -0.035883620381355286, + -0.0069970334880054, + -0.02077329345047474, + -0.003678887616842985, + 0.005737839732319117, + -0.01067251805216074, + -0.013388292863965034, + 0.0008665465284138918, + 0.01278251875191927, + -0.02374090813100338, + 0.018254905939102173, + 0.035910844802856445, + 0.007235259283334017, + 0.008998130448162556, + 0.0008231553947553039, + 0.013435937464237213, + 0.014021292328834534, + -0.004162145778536797, + -0.02225710079073906, + -0.020051809027791023, + 0.009249969385564327, + -0.017560647800564766, + 0.01592709869146347, + -0.017070583999156952, + -0.009331646375358105, + -0.01799626089632511, + 0.0007061694632284343, + -0.017261164262890816, + 0.006966404616832733, + -0.0033640891779214144, + 0.0006410827627405524, + 0.00390690378844738, + 0.0044378070160746574, + -0.006643097847700119, + 0.0037980007473379374, + -0.007507517468184233, + 0.011332743801176548, + -0.0013153470354154706, + -0.02378174662590027, + 0.013565259985625744, + -0.006925565656274557, + 0.00556087214499712, + 0.02612316608428955, + -0.003746952163055539, + -0.0270216166973114, + -0.01987484283745289, + -0.012850582599639893, + -0.005387307144701481, + 0.025333616882562637, + 0.01396684069186449, + -0.0120133887976408, + -0.004594355821609497, + 0.0037843878380954266, + -0.020283229649066925, + -0.012707646936178207, + -0.005159290973097086, + -0.021821487694978714, + 0.0032160489354282618, + 0.00564595265313983, + -0.009787678718566895, + 0.02188955247402191, + 0.007718517445027828, + -0.015545938163995743, + -0.007146775256842375, + -0.000986935687251389, + 0.0075211301445961, + 0.009086614474654198, + 0.00039328535785898566, + 0.03299768269062042, + -0.003767371643334627, + 0.0150422602891922, + -0.011353163048624992, + 0.01519200298935175, + -0.0002875726204365492, + 0.025156648829579353, + -0.023958714678883553, + 0.02429903671145439, + 0.014266325160861015, + 0.004985726438462734, + 0.032072003930807114, + 0.0069970334880054, + -0.00034627827699296176, + 0.018391035497188568, + -0.01741090603172779, + 0.009113839827477932, + -0.016335487365722656, + 0.02188955247402191, + -0.01565484143793583, + 0.00525798462331295, + -0.011904485523700714, + -0.003927323035895824, + 0.00084570178296417, + -0.022611036896705627, + 0.0300845205783844, + -0.020936649292707443, + 0.0018190245609730482, + -0.00026034683105535805, + 0.011026453226804733, + -0.004213194362819195, + -0.0042540328577160835, + 0.001186024397611618, + 0.014429680071771145, + 0.010066743940114975, + 0.022297939285635948, + 0.0033606861252337694, + -0.003129266668111086, + -0.017914583906531334, + 0.0009809799958020449, + -0.0025643310509622097, + -0.031200779601931572, + 0.024571293964982033, + -0.017016131430864334, + 0.013864744454622269, + 0.019956519827246666, + -0.008358323946595192, + -0.007269291672855616, + -0.016172131523489952, + -0.01187045406550169, + 0.022937746718525887, + -0.007323743309825659, + 0.007596001494675875, + -0.017533421516418457, + 0.008371937088668346, + -0.004533097613602877, + -0.007146775256842375, + 0.01622658409178257, + -0.027593359351158142, + 0.00026460085064172745, + -0.004642000887542963, + -0.00413151690736413, + -0.021168068051338196, + -0.03133690729737282, + 0.010121195577085018, + 0.008181355893611908, + 0.01894916407763958, + 0.0051695010624825954, + -0.015300906263291836, + 0.015232841484248638, + 0.009706001728773117, + 0.02315555140376091, + 0.006728178355842829, + 0.0021014923695474863, + 0.0013587381690740585, + -0.018704133108258247, + -0.002259742235764861, + 0.005894388072192669, + -0.010284550487995148, + -0.02069161646068096, + 0.002698758617043495, + 0.03062903694808483, + 0.006367436610162258, + 0.0021014923695474863, + -0.014429680071771145, + 0.003251782851293683, + -0.0066567109897732735, + -0.0074530658312141895, + 0.016117680817842484, + 0.0029284763149917126, + -0.005094629712402821, + 0.0022767584305256605, + 0.011196615174412727, + -0.009154679253697395, + -0.012884614989161491, + 0.005370291415601969, + 0.020950261503458023, + 0.0014752986608073115, + 0.026027875021100044, + 0.010332195088267326, + -0.0076368399895727634, + 0.016907228156924248, + -0.009127452969551086, + 0.01686638966202736, + 0.009059388190507889, + -0.010257324203848839, + -0.009576679207384586, + 0.004822371993213892, + -0.023563940078020096, + 0.012360517866909504, + -0.027865618467330933, + -0.005581291392445564, + -0.0034729924518615007, + -0.022461293265223503, + -0.003183718305081129, + -0.0038864845409989357, + -0.003692500526085496, + -2.128345840901602e-5, + -0.009780872613191605, + 0.003236468182876706, + 0.0016692825593054295, + 0.022924132645130157, + 0.012421776540577412, + -0.012660002335906029, + -0.011952131055295467, + 0.014851680025458336, + -0.0032670972868800163, + -0.015586776658892632, + 0.00413151690736413, + 0.0021542422473430634, + 0.014783615246415138, + -0.001399576896801591, + 0.016158519312739372, + 0.008630582131445408, + -0.0031479843892157078, + 0.0022291133645921946, + 0.0270896814763546, + -0.0039239199832081795, + 0.017233937978744507, + 0.0014114881632849574, + 0.0023346133530139923, + 0.012578324414789677, + -0.0007980566006153822, + -0.0014225486665964127, + 0.013817098923027515, + -0.01713864877820015, + -0.0021542422473430634, + 0.016022389754652977, + 0.012272034771740437, + -0.0026460085064172745, + 0.008160936646163464, + -0.027729488909244537, + -0.004710065200924873, + -0.027797553688287735, + -0.0021780647803097963, + 0.010134807787835598, + 0.01519200298935175, + 0.007718517445027828, + -0.012741679325699806, + -0.006813259329646826, + 0.010658904910087585, + -0.027566133067011833, + 0.03640091046690941, + 0.011148969642817974, + 0.0016335486434400082, + 0.0008235807763412595, + -0.0027736295014619827, + -0.0012591937556862831, + 0.001773080904968083, + -0.019643422216176987, + -0.0044786459766328335, + -0.012986712157726288, + 0.00781380757689476, + -0.006040726788341999, + 0.0240267775952816, + 0.027470843866467476, + 0.002419693861156702, + 0.035066843032836914, + -0.005802500993013382, + -0.010155227966606617, + 0.026817424222826958, + -0.00064661301439628, + 0.0024673391599208117, + 0.013796679675579071, + -0.005836533382534981, + 0.015736518427729607, + 0.007650453131645918, + 0.011189808137714863, + -0.012523872777819633, + 0.015586776658892632, + 0.0165396798402071, + 0.0036482587456703186, + 0.00947458203881979, + 0.014388841576874256, + 0.02255658432841301, + -0.005332855973392725, + 0.0079703563824296, + -0.027116907760500908, + 0.01830935850739479, + -0.009529033675789833, + -0.01155735645443201, + -0.00780700147151947, + -0.004328903742134571, + 0.007854646071791649, + -0.02221626229584217, + -0.002998242387548089, + -0.0030458876863121986, + 0.007160388398915529, + -0.003440661821514368, + -0.00015484679897781461, + -0.012530679814517498, + 0.0034763957373797894, + 0.0035189359914511442, + 0.019316712394356728, + 0.0037061134353280067, + -0.0040566460229456425, + 0.010162034071981907, + 0.020310455933213234, + 0.008160936646163464, + 0.02190316468477249, + 0.014075743965804577, + -0.012884614989161491, + -0.006799646187573671, + 0.002734492300078273, + 0.01776484213769436, + 0.00518992030993104, + -0.000532179547008127, + -0.010638485662639141, + -0.009869356639683247, + 0.01772400364279747, + -0.008746291510760784, + -0.0035801941994577646, + -0.01835019700229168, + 0.015981551259756088, + -0.01457942184060812, + 0.008671420626342297, + -0.026272907853126526, + -4.581061875796877e-5, + 0.00017090576875489205, + -0.022488519549369812, + -0.017574261873960495, + 0.004237016662955284, + -0.01920780912041664, + 0.009862549602985382, + -0.0030952345114201307, + 0.024476004764437675, + -0.0014948671450838447, + 0.00032351919799111784, + 0.022052906453609467, + 0.02340058423578739, + -0.004771323408931494, + -0.00473388796672225, + 0.012203969992697239, + 0.00419277511537075, + -0.01709781028330326, + 0.026885489001870155, + -0.019738713279366493, + 0.005431549157947302, + -0.01383751817047596, + 0.0015671857399865985, + 0.0016514156013727188, + -0.0249932948499918, + -0.009481389075517654, + 0.010236904956400394, + -0.030737940222024918, + 0.004403775092214346, + 0.014252712018787861, + 0.0020929842721670866, + -0.011285098269581795, + -0.0035938071087002754, + 0.01305477600544691, + 0.006180258933454752, + -0.004403775092214346, + -0.029077166691422462, + 0.005846743006259203, + 0.020337680354714394, + 0.028069810941815376, + -0.01396684069186449, + -0.0009061090531758964, + 0.011509711854159832, + -0.01232648640871048, + -0.0070787109434604645, + 0.00992380827665329, + 0.008303872309625149, + -0.008514872752130032, + -0.008460421115159988, + 0.01217674370855093, + 0.02048742212355137, + 0.017029745504260063, + -0.016675809398293495, + 0.003478097263723612, + 0.013327034190297127, + 0.007276098243892193, + -0.011979357339441776, + 0.04900645837187767, + 0.01628103479743004, + 0.011346356943249702, + 0.005734436679631472, + -0.013068389147520065, + -0.021481165662407875, + -0.02308748848736286, + 0.016417164355516434, + -0.022012067958712578, + -0.0045671300031244755, + 0.011863647028803825, + -0.015831809490919113, + 0.008977711200714111, + 0.012319679372012615, + -0.02673574723303318, + -0.0195345189422369, + -0.01923503540456295, + -0.016158519312739372, + 0.014919744804501534, + 0.0008682481129653752, + 0.014661098830401897, + 0.0009826816385611892, + 0.010686131194233894, + 0.016716647893190384, + -0.00213892781175673, + 0.008936872705817223, + 0.0294855535030365, + 0.02018793858587742, + -0.022420454770326614, + -0.017669551074504852, + -0.013463163748383522, + -0.0038762749172747135, + 0.025129424408078194, + -0.03332439437508583, + -0.00518992030993104, + 0.0013332139933481812, + 0.01396684069186449, + -0.014484131708741188, + -0.007507517468184233, + -0.009141066111624241, + 0.02074606716632843, + 0.01836380921304226, + -0.012564712204039097, + 0.002196782734245062, + -0.018867487087845802, + 0.021413100883364677, + 0.02496606856584549, + -0.009324840269982815, + 0.005850146058946848, + 0.023019423708319664, + 0.013415518216788769, + 0.0015127341030165553, + -0.00854890514165163, + -0.00691875908523798, + -0.0077253240160644054, + 0.012414969503879547, + -0.02289690636098385, + 0.00345937954261899, + 0.007174001075327396, + -0.0050333719700574875, + 0.0031990327406674623, + 0.0025779439602047205, + 0.009951033629477024, + -0.019779551774263382, + 0.020310455933213234, + 0.023332519456744194, + 0.004951694514602423, + 0.002833185950294137, + -0.009964646771550179, + -0.01742451824247837, + 0.011312324553728104, + 0.013708195649087429, + 0.002610274590551853, + -0.020528262481093407, + 0.012020195834338665, + 0.007772969081997871, + -0.003362387651577592, + -0.007160388398915529, + 0.020215164870023727, + 0.011012841016054153, + 0.007630033418536186, + 0.008759904652833939, + 0.026381811127066612, + 0.02730748802423477, + 0.006823468953371048, + 0.013027550652623177, + -0.017873745411634445, + -0.007371388375759125, + -0.008453614078462124, + 0.004117903765290976, + 0.025156648829579353, + 0.005176307167857885, + 0.002064056694507599, + -0.008766710758209229, + -0.01079503446817398, + -0.027103295549750328, + 0.008732679300010204, + 0.019616197794675827, + 0.044323619455099106, + -0.01835019700229168, + 0.012986712157726288, + 0.0016999115468934178, + 0.012394550256431103, + -0.00858974363654852, + 0.0240948423743248, + -0.002181468065828085, + -0.014252712018787861, + -0.012680421583354473, + 0.015777356922626495, + 0.025388069450855255, + 0.020541874691843987, + 0.021100003272294998, + 0.03003006987273693, + -0.013776260428130627, + 0.0077865817584097385, + -0.01396684069186449, + 0.006969807669520378, + -0.031091876327991486, + -0.0038558554369956255, + -0.013258970342576504, + -0.0012847179314121604, + -1.8930446458398364e-5, + 0.0024962665047496557, + 0.008664614520967007, + -0.02793368138372898, + -0.0027140730526298285, + 0.02466658502817154, + 0.010590840131044388, + 0.014661098830401897, + -0.00871906615793705, + -0.0028604117687791586, + 0.0017866938142105937, + -0.018445486202836037, + 0.014157421886920929, + -0.019588971510529518, + 0.007146775256842375, + -0.006711162626743317, + 0.005761662498116493, + -0.012224389240145683, + 0.009222743101418018, + 0.016771100461483, + 0.01187726017087698, + 0.02340058423578739, + 0.016920842230319977, + -0.00262558925896883, + -0.011094518005847931, + -0.004938081372529268, + 0.00826303381472826, + 0.008086065761744976, + -0.00019132513261865824, + -0.028505424037575722, + -0.007133162580430508, + 0.007003840059041977, + -0.0008218791917897761, + 0.000763173506129533, + 0.0014880606904625893, + -0.028369294479489326, + -0.009100227616727352, + -0.006398065481334925, + 0.018554389476776123, + 0.0024179923348128796, + 0.014511357061564922, + 0.021440325304865837, + -0.026055101305246353, + 0.008943678811192513, + -0.006721372250467539, + -0.004240420181304216, + -0.013578873127698898, + 0.014688325114548206, + 0.01427993830293417, + 0.0012617461616173387, + -0.007248872425407171, + -0.02523832768201828, + -0.0028808312490582466, + -0.02828761748969555, + -0.005227355752140284, + 0.0054077268578112125, + 0.005935227032750845, + 0.004175758920609951, + -0.01234009861946106, + 0.010441098362207413, + -0.011407614685595036, + -0.009971452876925468, + -0.007214840035885572, + 0.00047687708865851164, + -0.015178389847278595, + 0.001963661517947912, + -0.011536937206983566, + 0.021263359114527702, + 0.0075007108971476555, + 0.008657807484269142, + 0.01983400247991085, + 0.018772196024656296, + 0.0051695010624825954, + 0.026967165991663933, + 0.021549228578805923, + -0.012530679814517498, + 0.0008754800073802471, + 0.00617004930973053, + -0.024857165291905403, + 0.012612356804311275, + 0.003566581290215254, + 0.016335487365722656, + -0.021481165662407875, + 0.005040178075432777, + 0.01798264868557453, + -0.015382583253085613, + -0.01863606832921505, + 0.0042540328577160835, + 0.00993061438202858, + -0.011761550791561604, + -0.010713356547057629, + 0.01383071206510067, + -0.01562761515378952, + 0.006265339907258749, + -0.015069486573338509, + -0.001336617162451148, + 0.0018020083662122488, + 0.027225811034440994, + -0.02318277768790722, + -0.0056799850426614285, + 0.01773761585354805, + 0.006714565679430962, + -0.0068983398377895355, + -0.022066520527005196, + 0.017220325767993927, + -0.029376650229096413, + 0.0009911897359415889, + 0.016716647893190384, + -0.0014999720733612776, + 0.01350400224328041, + -0.03675484657287598, + 0.0432618148624897, + 0.01125106681138277, + -0.012605550698935986, + -0.014320776797831059, + -0.012802937999367714, + 0.013027550652623177, + -0.008120098151266575, + -0.019153358414769173, + 0.02222987450659275, + -0.006142823491245508, + -0.008317485451698303, + -0.01546426024287939, + 0.00010996674973284826, + 0.0025779439602047205, + -0.03373277932405472, + 0.009821711108088493, + -0.0035393554717302322, + 0.017642324790358543, + -0.016961680725216866, + -0.017860131338238716, + 0.01383751817047596, + -0.015804583206772804, + -0.007888678461313248, + -0.011564163491129875, + 0.017193099483847618, + -0.009243163280189037, + -1.756118035700638e-5, + -0.002103193895891309, + -0.0017526615411043167, + 0.004556919913738966, + 0.002765121404081583, + -0.015600389800965786, + -0.018159616738557816, + 0.013646937906742096, + -0.011958937160670757, + -0.0039647589437663555, + -0.019003616645932198, + -0.00496530719101429, + 0.0030629036482423544, + -0.020827746018767357, + -0.011359970085322857, + -0.0019806777127087116, + -0.027743101119995117, + -0.006258533336222172, + 0.01807793788611889, + 0.004921065177768469, + -0.015001421794295311, + -0.011271486058831215, + 0.016730260103940964, + -0.009120646864175797, + 0.014484131708741188, + -0.010427485220134258, + 0.01020967960357666, + 0.0029914360493421555, + -0.002256339183077216, + -0.007507517468184233, + -0.0006780928815715015, + -0.03362387791275978, + 0.02131780982017517, + 0.007670872379094362, + -0.0005087823374196887, + 0.008930065669119358, + 0.006221097894012928, + -0.004373145755380392, + -0.020895810797810555, + 0.010155227966606617, + -0.0010133106261491776, + -0.02285606786608696, + 0.008276646956801414, + 0.003411734476685524, + -0.020868584513664246, + -0.01566845364868641, + 0.012830163352191448, + -0.006238114088773727, + 0.0023022827226668596, + 0.014987808652222157, + 0.003951145801693201, + -0.016076842322945595, + -0.004730484448373318, + 0.012843776494264603, + 0.00022886697843205184, + 0.005060597788542509, + -0.030002843588590622, + -0.028396520763635635, + -0.0249932948499918, + 0.007174001075327396, + -0.004471839405596256, + -0.008052033372223377, + 0.0011596493422985077, + 0.011632227338850498, + -0.019371164962649345, + 0.02194400317966938, + -0.01987484283745289, + -0.0003896694106515497, + 0.008174549788236618, + 0.00024162906629499048, + -0.0013434236170724034, + 0.006364033557474613, + 0.012523872777819633, + -0.00525117851793766, + 0.013701389543712139, + 0.0114144217222929, + -0.0014931656187400222, + -0.0001465514360461384, + 0.014511357061564922, + 0.01806432567536831, + 0.007650453131645918, + 0.013231744058430195, + 0.014361615292727947, + -0.01369458343833685, + -0.005254581570625305, + 0.0234278105199337, + -0.002901250496506691, + -0.0012302662944421172, + -0.024748262017965317, + -0.023305295035243034, + -0.015368970111012459, + -0.014511357061564922, + 0.013170486316084862, + -0.0021661536302417517, + 0.011359970085322857, + 0.0032841134816408157, + -0.009454162791371346, + 0.0012277138885110617, + -0.01658051833510399, + -0.006064549554139376, + -0.01889471337199211, + -0.011523324996232986, + -0.006670323666185141, + 0.006367436610162258, + 0.02374090813100338, + 0.016131293028593063, + 0.014797228388488293, + -0.0008227299549616873, + -0.01095838937908411, + -0.0071263560093939304, + 0.031663618981838226, + -0.01678471267223358, + 0.003250081092119217, + -0.020065423101186752, + 0.0017560648266226053, + 0.008222195319831371, + -0.007201226893812418, + 0.0053226458840072155, + 0.01274848636239767, + -0.016349099576473236, + -0.015736518427729607, + 0.01566845364868641, + -0.017383679747581482, + 0.0006138569442555308, + 0.002822976326569915, + 0.004158742725849152, + -0.003068008692935109, + 0.010658904910087585, + 0.006272146012634039, + -0.0015773954801261425, + 0.0063878558576107025, + 0.010339002124965191, + 0.018540777266025543, + -0.01038664672523737, + 0.02316916547715664, + 0.011217034421861172, + -0.023332519456744194, + 0.0034474683925509453, + 0.01866329275071621, + 0.003256887663155794, + -0.01441606692969799, + 0.016144905239343643, + 0.009801291860640049, + -0.013749034143984318, + -0.0017458550864830613, + -0.019779551774263382, + -0.006132613867521286, + 0.001696508377790451, + 0.006677130237221718, + 0.014919744804501534, + 0.01470193825662136, + -0.006983420345932245, + -0.015736518427729607, + 0.012414969503879547, + 0.010890324600040913, + 0.007425840012729168, + 0.005298823583871126, + -0.02828761748969555, + -0.004791742656379938, + 0.002663024701178074, + 0.0034151377622038126, + 0.0028127667028456926, + -0.021113617345690727, + -0.01768316514790058, + -0.00042838111403398216, + -0.01622658409178257, + 0.005693597719073296, + 0.00963113084435463, + 0.015137551352381706, + 0.034086715430021286, + -0.023223616182804108, + 0.0024282019585371017, + -0.019098905846476555, + -0.015341744758188725, + -0.008623776026070118, + 0.01366735715419054, + 0.01592709869146347, + 0.02044658362865448, + -0.008460421115159988, + -0.021113617345690727, + 0.02040574513375759, + -0.00705829169601202, + -0.0035053230822086334, + 0.0021899761632084846, + 0.010563614778220654, + -0.00960390456020832, + 0.005799097940325737, + -0.001856460003182292, + 0.0012983308406546712, + 0.0015484680188819766, + -0.005217146128416061, + -0.006159839686006308, + 0.017329229041934013, + -0.008052033372223377, + 0.008705453015863895, + 0.020283229649066925, + -0.0021457341499626637, + -0.009808098897337914, + 0.008242614567279816, + 0.02284245565533638, + -0.013980453833937645, + -0.007698098197579384, + 0.031963102519512177, + -0.0225293580442667, + -0.011278292164206505, + 0.0070787109434604645, + 0.011271486058831215, + 0.009256775490939617, + -0.0018411454511806369, + 0.004128113389015198, + 0.0024367100559175014, + -0.002497968263924122, + 0.021168068051338196, + 0.022039294242858887, + -0.005264791194349527, + 0.022297939285635948, + 0.010468324646353722, + 0.003430452197790146, + 0.005686791148036718, + 0.0007112743332982063, + -0.0037503554485738277, + 0.012523872777819633, + -0.03267097473144531, + 0.009733227081596851, + -0.010148420929908752, + 0.021835099905729294, + -0.006677130237221718, + 0.006033920217305422, + -0.00014687048678752035, + -0.01427993830293417, + -0.009542646817862988, + -0.0009903388563543558, + 0.010182453319430351, + -0.002075968077406287, + -0.0004607117734849453, + -0.03209923207759857, + -0.029948392882943153, + 0.025428907945752144, + 0.021100003272294998, + 0.006915356032550335, + 0.020501036196947098, + 0.0026460085064172745, + -0.008031614124774933, + -0.01172071136534214, + 0.003883081255480647, + -0.007793388329446316, + 0.01988845504820347, + -0.022366004064679146, + 0.023577552288770676, + -0.013449550606310368, + -0.013592486269772053, + -0.000530052522663027, + 0.009406518191099167, + -0.011155775748193264, + -0.006544404197484255, + -0.0063436138443648815, + 0.03190864995121956, + 0.007432646583765745, + 0.00016292945656459779, + -0.011673066765069962, + -0.021848713979125023, + 0.0015586776426061988, + 0.0038864845409989357, + -0.010128001682460308, + -0.02910439297556877, + 0.020269615575671196, + -0.003168403869494796, + -0.01278251875191927, + 0.020923035219311714, + -0.009324840269982815, + -0.0023822584189474583, + 0.0024230971466749907, + -0.009556259959936142, + -0.010720162652432919, + -0.014198260381817818, + -0.021862326189875603, + -0.0020674599800258875, + -0.012435388751327991, + 0.013851131312549114, + -0.007180807646363974, + 0.015709292143583298, + -0.0060100979171693325, + 0.01083587296307087, + -0.014524970203638077, + -0.007378194946795702, + 0.0022342181764543056, + 0.01802348718047142, + 0.00901174359023571, + 0.009004936553537846, + 0.0029233715031296015, + 0.019384777173399925, + 0.002045338973402977, + -0.022107359021902084, + 0.008072452619671822, + -0.0021746617276221514, + -0.004318694118410349, + -0.015532325021922588, + -0.008896034210920334, + 0.007160388398915529, + -0.015450648032128811, + 0.028723230585455894, + -0.003699307097122073, + 0.011496098712086678, + -0.010597647167742252, + 0.008378743194043636, + -0.00556087214499712, + -0.0009052582317963243, + -0.011509711854159832, + -0.012905034236609936, + 0.0007844436913728714, + -0.012489840388298035, + -0.013061583042144775, + 0.007160388398915529, + -0.0014948671450838447, + -0.014089357107877731, + -0.012394550256431103, + 0.008215388283133507, + -0.009426937438547611, + -0.019085293635725975, + 0.0005347319529391825, + 0.01441606692969799, + -0.005057194270193577, + 0.014851680025458336, + 0.016594132408499718, + -0.028750456869602203, + 0.01516477670520544, + 0.005428146105259657, + 0.01154374424368143, + -0.004825775045901537, + 0.007133162580430508, + -0.01986122876405716, + 0.01170709915459156, + 0.01626742258667946, + 0.006333404220640659, + -0.023577552288770676, + -0.0026902505196630955, + -0.004669226706027985, + 0.023591164499521255, + -0.000568338786251843, + 0.012680421583354473, + 0.0075211301445961, + -0.002235919702798128, + -0.004580742679536343, + -0.0025966616813093424, + -0.03316103667020798, + -0.0120474211871624, + 0.005945436656475067, + -0.010012292303144932, + 0.006210888270288706, + 0.0017713793786242604, + -0.027606971561908722, + 0.01278932485729456, + -0.0012583429925143719, + 0.022692713886499405, + 0.003849049098789692, + 0.00856251735240221, + 0.007255678530782461, + -0.0010822259355336428, + 0.014184647239744663, + 0.01349719613790512, + -0.014266325160861015, + -0.005346468649804592, + 0.0040124040096998215, + -0.010366227477788925, + 0.021467551589012146, + 0.005914807319641113, + 0.0017679760931059718, + -0.0005121855647303164, + 0.0063878558576107025, + -0.005809307564049959, + -0.0022223067935556173, + 0.012503453530371189, + -0.016158519312739372, + 0.01321132481098175, + 0.033542200922966, + 0.017206711694598198, + 0.01037984061986208, + 0.008188162930309772, + -0.0014957180246710777, + -0.0249252300709486, + -0.008977711200714111, + -0.0029029520228505135, + -0.0154914865270257, + 0.017206711694598198, + 0.002574540674686432, + 0.007303323596715927, + -0.001083927578292787, + 0.010584034025669098, + -0.009774066507816315, + 0.005254581570625305, + -0.027770327404141426, + -0.005520033184438944, + -0.002574540674686432, + 0.008460421115159988, + -0.0114144217222929, + -0.009134260006248951, + 0.009821711108088493, + -0.02107277698814869, + 0.002128718188032508, + -0.01682555116713047, + -0.021100003272294998, + 0.0038524523843079805, + 0.002132121240720153, + -0.009624323807656765, + 0.004451420158147812, + -0.021168068051338196, + -0.011734324507415295, + 0.0016369519289582968, + -0.005400920286774635, + 0.018200455233454704, + 0.016662197187542915, + -0.0051695010624825954, + -0.003957952372729778, + -0.006030517164617777, + 0.012700840830802917, + -0.001588455867022276, + -0.0059182108379900455, + 0.008616968989372253, + -0.008079259656369686, + -0.01486529316753149, + -0.011523324996232986, + 0.0038388394750654697, + -0.008698646910488605, + 0.005683388095349073, + -0.0026528150774538517, + -0.007466678507626057, + -0.019289487972855568, + -0.018173228949308395, + -0.05624852702021599, + -0.008542098104953766, + -0.005571081768721342, + 0.0048121619038283825, + -0.02220264822244644, + -0.003023766679689288, + -0.006142823491245508, + -0.0003677611530292779, + 0.0045228879898786545, + 0.010475130751729012, + 0.006683936808258295, + -0.0060066943988204, + 0.008276646956801414, + 0.019085293635725975, + 0.008310678415000439, + -0.03389613330364227, + 0.015314518474042416, + 0.013769454322755337, + 0.01621297001838684, + 0.022120971232652664, + -0.0052307588048279285, + 0.003988581243902445, + 0.01349719613790512, + 3.1798896088730544e-5, + 0.010726969689130783, + -0.020364906638860703, + 0.02497968077659607, + -0.0240267775952816, + 0.012476228177547455, + -0.00539751723408699, + 0.012020195834338665, + 0.0026017664931714535, + -0.008031614124774933, + 0.011346356943249702, + 0.0025149842258542776, + 0.006136017385870218, + 0.0023822584189474583, + 0.009903389029204845, + -0.00960390456020832, + -0.01564122922718525, + 0.009066195227205753, + -0.005339662078768015, + -0.020364906638860703, + 0.004999339580535889, + -0.01159138884395361, + 0.007881872355937958, + -0.007936323992908001, + 0.0021355245262384415, + -0.0019602584652602673, + -0.004652210511267185, + -0.024135680869221687, + 0.008998130448162556, + 0.002925073029473424, + 0.0029727183282375336, + 0.003610823303461075, + 0.012061034329235554, + -0.012101872824132442, + -0.028369294479489326, + -0.013680970296263695, + -0.03517574816942215, + 0.0068949367851018906, + 0.005737839732319117, + 0.011230646632611752, + 0.00929761491715908, + 0.006683936808258295, + -0.004873420111835003, + 0.008773517794907093, + -0.010590840131044388, + -0.016063228249549866, + -0.013102421537041664, + 0.001132423523813486, + -0.004087274894118309, + 0.0040124040096998215, + 0.0139940669760108, + -0.015682067722082138, + 0.0029591054189950228, + -0.008998130448162556, + 0.002380556892603636, + 0.026245681568980217, + -0.014810841530561447, + -0.010774614289402962, + -0.0028842343017458916, + -0.002288669813424349, + -0.025415293872356415, + -0.025020521134138107, + -0.009780872613191605, + -0.01807793788611889, + 0.025742003694176674, + -0.01952090673148632, + -0.004767920356243849, + 0.010815453715622425, + 0.009113839827477932, + -0.010468324646353722, + -0.015314518474042416, + 0.014034905470907688, + 0.014375228434801102, + -0.027824778109788895, + 0.031364135444164276, + 0.0018054116517305374, + 0.011904485523700714, + -0.016607744619250298, + 0.008276646956801414, + -0.011244259774684906, + 0.017084196209907532, + -0.024707423523068428, + -0.00826983992010355, + 0.02070522867143154, + 0.004573936108499765, + 0.01625380851328373, + 0.009808098897337914, + 0.004866613540798426, + -0.013109227642416954, + 0.002906355308368802, + -0.009392905049026012, + 0.009944227524101734, + -0.01709781028330326, + 0.009154679253697395, + 0.010624872520565987, + -0.019942905753850937, + -0.003391314996406436, + -0.039885811507701874, + 0.00570721086114645, + -0.0073645818047225475, + 0.0075483559630811214, + -0.005955646280199289, + 0.0013059881748631597, + 0.012210776098072529, + 0.005370291415601969, + -0.006963001098483801, + -0.010536388494074345, + 0.011108131147921085, + 0.011781970039010048, + -0.01772400364279747, + -0.010597647167742252, + 0.003757162019610405, + -0.012224389240145683, + -0.015804583206772804, + -0.0054587749764323235, + 0.008018000982701778, + -0.00026715328567661345, + 0.028069810941815376, + -0.0013093913439661264, + 0.007378194946795702, + 0.001399576896801591, + -0.020541874691843987, + -0.004754307214170694, + -0.014810841530561447, + 0.01338148582726717, + -0.010073550045490265, + -0.012775711715221405, + 0.016675809398293495, + 0.023495875298976898, + -0.009733227081596851, + -0.0007946533733047545, + 0.023005809634923935, + -0.008249420672655106, + 0.02041935920715332, + 0.008405969478189945, + -0.005890985019505024, + -0.008542098104953766, + 0.016730260103940964, + -0.03425006940960884, + -0.004529694095253944, + -0.012251614592969418, + 0.030710715800523758, + 0.003032274777069688, + -0.0036040167324244976, + 0.0015365567523986101, + 0.011142163537442684, + 0.0005189920193515718, + -0.020079035311937332, + -0.019466454163193703, + 0.0002663024642970413, + -0.004985726438462734, + 0.03629200533032417, + 0.024230971932411194, + 0.0005194174009375274, + 0.00180711317807436, + 6.726689753122628e-5, + -0.01987484283745289, + 0.003393016755580902, + 0.007704904768615961, + -0.012244808487594128, + -0.008160936646163464, + 0.005220549181103706, + 0.008004388771951199, + -0.009059388190507889, + 0.0005755706806667149, + -0.010556808672845364, + 0.004454823210835457, + 0.0034338554833084345, + -0.002618782687932253, + -0.008052033372223377, + 0.016362711787223816, + 0.014688325114548206, + -0.007732130121439695, + -0.0055030169896781445, + 0.02529277838766575, + 0.004026016686111689, + 0.00929761491715908, + -0.016022389754652977, + -0.00809287279844284, + -0.02308748848736286, + -0.020051809027791023, + 0.01988845504820347, + 0.007242065854370594, + -0.03552968427538872, + 0.012360517866909504, + -0.0037741779815405607, + -0.0012694034958258271, + -0.002497968263924122, + 0.009331646375358105, + 0.011006033979356289, + 0.020569100975990295, + -0.0031428795773535967, + -0.013177292421460152, + 0.004104291088879108, + -0.01320451870560646, + -0.012578324414789677, + -0.007255678530782461, + 0.004138323478400707, + -0.01768316514790058, + 0.0036040167324244976, + -0.013163679279386997, + 0.01867690682411194, + -0.022120971232652664, + -0.015314518474042416, + -0.011339549906551838, + -0.024503229185938835, + 0.02736194059252739, + 0.016675809398293495, + -0.023917874321341515, + -0.014810841530561447, + 0.010461517609655857, + -0.009079808369278908, + 0.00639466242864728, + 0.01648522913455963, + 0.01742451824247837, + -0.006792840082198381, + 0.01835019700229168, + -0.0017288390081375837, + -0.0036040167324244976, + 0.00040030450327321887, + 0.017805680632591248, + 0.0055438559502363205, + -0.022120971232652664, + -0.016757486388087273, + -0.00044199402327649295, + -0.02221626229584217, + -0.01837742328643799, + -0.009386098012328148, + -0.015151163563132286, + -0.008052033372223377, + 0.016444390639662743, + 0.021413100883364677, + -0.01037984061986208, + 0.009079808369278908, + 0.0018734760815277696, + -0.022638261318206787, + 0.005016355775296688, + -0.005046984646469355, + 0.00814051739871502, + -0.009386098012328148, + 0.014838066883385181, + -0.011816002428531647, + 0.00525117851793766, + -0.02069161646068096, + -0.0013672461500391364, + -0.002877427963539958, + 0.00842638872563839, + -0.013095615431666374, + -0.01651245355606079, + 0.0010379840387031436, + 0.01745174452662468, + 0.017560647800564766, + 0.015382583253085613, + -0.008058840408921242, + 0.01020967960357666, + -0.004448017105460167, + -0.023931488394737244, + 0.00826303381472826, + -0.008358323946595192, + 0.0025592262391000986, + 0.008460421115159988, + -0.008256226778030396, + 0.014565808698534966, + 0.011271486058831215, + 0.0008763307705521584, + -0.01716587319970131, + 0.016716647893190384, + -0.007480291649699211, + -0.001914314809255302, + 0.021726196631789207, + 0.010121195577085018, + 0.0010515969479456544, + 0.01595432497560978, + 0.022611036896705627, + 0.009624323807656765, + 0.011080904863774776, + 0.002361839171499014, + -0.0040566460229456425, + 0.02640903741121292, + 0.0014114881632849574, + -0.022352389991283417, + 0.004665823187679052, + 0.008705453015863895, + -0.016880003735423088, + 0.015790970996022224, + -0.00662608165293932, + -0.017043357715010643, + -0.00931122712790966, + -0.011196615174412727, + 0.004063452128320932, + -0.008440001867711544, + -0.013490389101207256, + 0.01112855039536953, + 0.02975781075656414, + 0.001730540650896728, + 0.027879230678081512, + -0.005009549204260111, + 0.011230646632611752, + 0.03185419738292694, + -0.004121307283639908, + 0.013789873570203781, + 0.000607475929427892, + -0.002167855156585574, + -0.0025626295246183872, + 0.015790970996022224, + 0.004009000491350889, + 0.0204329714179039, + -0.019303100183606148, + 0.011986163444817066, + -0.007051485124975443, + -0.0016446091467514634, + 0.0015331534668803215, + -0.0011358268093317747, + 0.005598307587206364, + 0.016022389754652977, + 0.001700762426480651, + -0.015736518427729607, + -0.002673234324902296, + -0.0035835974849760532, + -0.022434068843722343, + -0.008222195319831371, + 0.001220056670717895, + -0.011673066765069962, + -0.025646714493632317, + 0.0029676135163754225, + 0.0054587749764323235, + 0.013279389590024948, + -0.009277194738388062, + -0.009413324296474457, + -0.030846843495965004, + 0.004696452524513006, + 0.018527165055274963, + 0.006071355659514666, + 0.012741679325699806, + 0.006125807296484709, + -0.02586452104151249, + 0.010577227920293808, + 0.00027417243109084666, + -0.014810841530561447, + -0.0058739688247442245, + -0.016920842230319977, + 0.002469040686264634, + 0.01807793788611889, + 0.006915356032550335, + -0.011448453180491924, + -0.0026647262275218964, + 0.007419033441692591, + -0.0008491050102747977, + -0.01353803463280201, + -0.031963102519512177, + 0.006847291719168425, + 0.006312984973192215, + -0.0013825607020407915, + -0.01624019630253315, + 0.010393453761935234 + ], + "d5868ba2-8879-435c-841a-fe4ecf9e677b": [ + -0.022467760369181633, + -0.005094520282000303, + -0.007095277309417725, + 0.021326588466763496, + 0.017562201246619225, + 0.009210892021656036, + 0.02392016164958477, + 0.02138586901128292, + -0.03628039360046387, + 0.035924702882766724, + 0.025016872212290764, + 0.02885536290705204, + 0.01090783067047596, + -0.011960080824792385, + -0.0204670038074255, + 0.01397565845400095, + -0.023653393611311913, + 0.02823290415108204, + 0.020289158448576927, + -0.009536941535770893, + 0.012145335786044598, + -0.021563714370131493, + -0.04772175848484039, + 0.025787534192204475, + 0.029789049178361893, + -0.0009234975441358984, + -0.010381706058979034, + 0.015502161346375942, + -0.013486584648489952, + 0.011611800640821457, + 0.009010816924273968, + 0.01630246452987194, + -0.012234258465468884, + -0.008410589769482613, + 0.030885759741067886, + -0.018140196800231934, + -0.00036981585435569286, + -0.011797056533396244, + -0.03696213290095329, + -0.023697854951024055, + -0.05945953354239464, + -0.002111910143867135, + -0.015079779550433159, + -0.022512221708893776, + -0.05139722302556038, + 0.007043405435979366, + -0.03441302105784416, + -0.04629899933934212, + 0.03450194373726845, + 0.029048027470707893, + 0.042504969984292984, + -0.041022930294275284, + 0.01240469329059124, + 0.023416267707943916, + 0.05305711179971695, + -0.005772554315626621, + 0.0046647279523313046, + 0.033849842846393585, + -0.013642198406159878, + -0.05332387983798981, + -0.01883675716817379, + -0.0019618533551692963, + -0.03503547981381416, + 0.014657397754490376, + 0.009247943758964539, + 0.006628433708101511, + 0.00687297061085701, + -0.011804466135799885, + -4.5590164518216625e-5, + -0.037880998104810715, + 0.01931101083755493, + 0.047454990446567535, + -0.05391669645905495, + -8.874885679688305e-5, + -0.012137926183640957, + -0.04736606776714325, + 0.046091511845588684, + 0.013886735774576664, + 0.007832593284547329, + -0.0059281690046191216, + -0.026498915627598763, + 0.0024657477624714375, + -0.00721384072676301, + -0.0154577000066638, + 0.06586195528507233, + -0.02781793288886547, + -0.006517280824482441, + -0.05616940185427666, + 0.03121180832386017, + 0.011307981796562672, + -0.016969382762908936, + 0.05101189389824867, + 0.003629150800406933, + -0.00911455973982811, + -0.03900735080242157, + 0.00911455973982811, + 0.03094504214823246, + -0.010107527486979961, + 0.03171570226550102, + 0.030381865799427032, + 0.03138965368270874, + -0.002350889379158616, + -0.0027343679685145617, + -0.01203418243676424, + 0.0196074191480875, + 0.021919405087828636, + 0.013634788803756237, + -0.020215054973959923, + -0.004168243613094091, + 0.03218995779752731, + -0.02841074950993061, + -0.038651660084724426, + 0.044787317514419556, + -0.01809573546051979, + -0.027136193588376045, + -0.04054867476224899, + -0.01390155591070652, + -0.0243647750467062, + 0.007413916289806366, + -0.014990856871008873, + 0.020852334797382355, + 0.011915619485080242, + -0.009129379875957966, + 0.03393876552581787, + -0.03284205496311188, + 0.025446664541959763, + 0.02452779933810234, + -0.010722575709223747, + 0.034146253019571304, + 0.01612461917102337, + -0.04259389266371727, + 0.017962351441383362, + 0.0010309455683454871, + 0.039511244744062424, + 0.02228991501033306, + 0.023105038329958916, + 0.012738153338432312, + 0.053442440927028656, + -0.05782928690314293, + 0.015946773812174797, + -0.08714408427476883, + -0.04063759744167328, + -0.022497400641441345, + 0.004068206064403057, + -0.01732507348060608, + 0.002030397765338421, + -0.04449090734124184, + 0.0406968779861927, + -0.022808630019426346, + 0.042682815343141556, + -0.05113045498728752, + -0.03230851888656616, + -0.022823451086878777, + 0.010248322039842606, + 0.03722890093922615, + -0.01045580767095089, + -0.014931575395166874, + 0.012634409591555595, + 0.018614450469613075, + 0.04463911056518555, + -0.0002551891375333071, + -0.055072687566280365, + -0.002676938660442829, + 0.014738909900188446, + 0.038651660084724426, + -0.0010605864226818085, + -0.005628055427223444, + 0.027165833860635757, + -0.02228991501033306, + 0.022942014038562775, + -0.007306468207389116, + -0.027106551453471184, + -0.010085297748446465, + -0.001404235023073852, + 0.02349036931991577, + -0.005679926835000515, + 0.02630624920129776, + 0.044313061982393265, + 0.00630979472771287, + -0.034739069640636444, + -0.05305711179971695, + -0.007576941046863794, + 0.006943367887288332, + -0.00721384072676301, + 0.0670475885272026, + 0.003425369970500469, + -0.0016635924112051725, + 0.0060319118201732635, + 0.01671743579208851, + -0.013116073794662952, + 0.004097846802324057, + -0.008003028109669685, + -0.029670484364032745, + 0.003945937380194664, + -0.0010837434092536569, + -0.035361528396606445, + -0.012449154630303383, + 0.008343897759914398, + -0.03349415585398674, + -0.023060576990246773, + -0.004998187534511089, + 0.0014181291917338967, + -0.02872197888791561, + 0.0463879220187664, + -0.04487624019384384, + 0.011048625223338604, + -0.024853847920894623, + 0.0185551680624485, + 0.010781857185065746, + -0.04158610478043556, + 0.0037847652565687895, + -0.06769968569278717, + 0.014168323948979378, + -0.013634788803756237, + 0.013627378270030022, + 0.004079321399331093, + -0.0055539533495903015, + 0.01336802076548338, + 0.014575885608792305, + -0.050448715686798096, + 0.00462767668068409, + 0.013516224920749664, + 0.02060038596391678, + -0.00639130687341094, + -0.06829250603914261, + -0.01931101083755493, + -0.03755494952201843, + 0.027432601898908615, + -0.026113584637641907, + 0.052701421082019806, + -0.024853847920894623, + -0.012338001281023026, + 0.011293161660432816, + 0.015768928453326225, + -0.011130137369036674, + 0.03230851888656616, + 0.03527260571718216, + 0.04546905681490898, + -0.013397661969065666, + -0.019474035128951073, + 0.015887493267655373, + 0.02437959425151348, + 0.034442659467458725, + -0.002591721247881651, + 0.021578535437583923, + -0.004638792015612125, + 0.034916914999485016, + 0.035213321447372437, + 0.0014662955654785037, + -0.01987418532371521, + -0.01627282425761223, + 0.02346072904765606, + -0.002482420764863491, + -0.01585785113275051, + -0.021741559728980064, + 0.05874815210700035, + 0.009062687866389751, + -0.03912591561675072, + 0.013886735774576664, + -0.004509113263338804, + -0.022023146972060204, + 0.03494655713438988, + 0.02869233675301075, + -0.003201211104169488, + 0.00023041125677991658, + -0.01988900639116764, + 0.039096273481845856, + -0.00207300647161901, + 0.02749188244342804, + 0.03435374051332474, + 0.007465787697583437, + -0.008040078915655613, + 0.0022286209277808666, + 0.04063759744167328, + 0.00028969295090064406, + 0.008595844730734825, + -0.03571721911430359, + 0.0018655206076800823, + 0.008595844730734825, + -0.0054390947334468365, + -0.01631728559732437, + -0.03195283189415932, + -0.005898528266698122, + -0.01486488338559866, + -0.014798191376030445, + -0.009396147914230824, + -0.012797434814274311, + 0.01720651052892208, + -0.029863150790333748, + 0.008136412128806114, + -0.00630979472771287, + 0.020437361672520638, + 0.045350492000579834, + 0.013968247920274734, + 0.01419796422123909, + 0.010618832893669605, + -0.01366442907601595, + -0.005201968364417553, + -0.02033361978828907, + -0.010374295525252819, + -0.01957777701318264, + 0.0069655985571444035, + -0.010952292010188103, + -0.03047078847885132, + 0.01837732270359993, + -0.006924842484295368, + 0.053590647876262665, + 0.016776718199253082, + -0.04881846904754639, + 0.05281998589634895, + 0.03687321022152901, + -0.038918428122997284, + -0.04618043452501297, + -0.018569989129900932, + 0.018466245383024216, + 0.014153502881526947, + 0.016999024897813797, + 0.008403179235756397, + -0.03930376097559929, + -0.02018541470170021, + 0.009240533225238323, + -0.009751837700605392, + -0.061060138046741486, + -0.013738531619310379, + 0.0346205048263073, + -0.0415564626455307, + 0.03423517569899559, + 0.023134678602218628, + -0.0065543316304683685, + -0.0003431854129303247, + -0.011056034825742245, + -0.028899824246764183, + -0.01352363545447588, + -0.015635546296834946, + -0.02212689071893692, + -0.05430202558636665, + -0.042238201946020126, + -0.009833349846303463, + 0.009848170913755894, + -0.038592379540205, + -0.017665943130850792, + -0.022497400641441345, + -0.00721384072676301, + -0.030885759741067886, + 0.0017506623407825828, + -0.0115969805046916, + 0.007921515963971615, + 0.01120423898100853, + -0.007299058139324188, + 0.0023064282722771168, + 0.000989263178780675, + -0.027773471549153328, + 0.016480309888720512, + -0.02569861151278019, + 0.032486364245414734, + -0.022200992330908775, + -0.018140196800231934, + -0.016939742490649223, + -0.022349197417497635, + 0.027254756540060043, + 0.034916914999485016, + 0.004583215340971947, + -0.024735284969210625, + -0.01824394054710865, + -0.02031879872083664, + 0.0029251808300614357, + -0.0010114938486367464, + -0.025965379551053047, + -0.013041971251368523, + -0.016791539266705513, + -0.02467600256204605, + 0.0015190932899713516, + 0.014612936414778233, + -0.03799956291913986, + 0.002639887621626258, + -0.022200992330908775, + 0.031478576362133026, + -0.0058059003204107285, + -0.008336487226188183, + -0.0004950947477482259, + -0.01659887284040451, + 0.014398040249943733, + 0.020704129710793495, + -0.030974682420492172, + 0.021771200001239777, + 0.0352429635822773, + -0.03218995779752731, + -0.04712894186377525, + 0.0012921555899083614, + 0.030248481780290604, + -0.02316432073712349, + 0.027580805122852325, + -0.005628055427223444, + 0.011974900960922241, + -0.013064201921224594, + 0.027017628774046898, + 0.0005965220043435693, + -0.005583594087511301, + -0.011960080824792385, + 0.013649608939886093, + -0.03441302105784416, + -0.0026102468837052584, + 0.006150475237518549, + 0.024616722017526627, + 0.0316564217209816, + -0.025342922657728195, + -0.02734367921948433, + -0.029640844091773033, + 0.028959104791283607, + 0.008832971565425396, + -0.007098982110619545, + -0.010218680836260319, + -0.0008512479835189879, + -0.008314256556332111, + 0.033731281757354736, + 0.004946316126734018, + 0.0012087906943634152, + 0.04855170473456383, + -0.008581024594604969, + -0.0017589988419786096, + 0.019696341827511787, + 0.03829596936702728, + 0.009099739603698254, + 0.03841453418135643, + 0.0031252566259354353, + -0.004835162777453661, + 0.0034976196475327015, + -0.018644090741872787, + -0.0037810602225363255, + -0.01689528115093708, + 0.008714408613741398, + 0.029181411489844322, + 0.028796080499887466, + 0.014227605424821377, + -0.011663672514259815, + -0.0267805028706789, + 0.002869604155421257, + -0.007073046639561653, + -0.0013884883373975754, + -0.0017265791539102793, + -0.0194147527217865, + 0.018125375732779503, + 0.00384960463270545, + -0.03364235907793045, + -0.01988900639116764, + -0.01210828498005867, + -0.03885914757847786, + 0.0316564217209816, + 0.015294675715267658, + -0.01240469329059124, + -0.011485827155411243, + 0.0035346706863492727, + -0.021267306059598923, + 0.009618453681468964, + 0.003745861817151308, + -0.0009369285544380546, + -0.006313499994575977, + -0.027832752093672752, + 0.014020119793713093, + -0.040904365479946136, + 0.0337609201669693, + -0.023534830659627914, + 0.010226091369986534, + -0.021489612758159637, + 0.03465014696121216, + -0.005513197276741266, + -0.003714368212968111, + 0.0022397362627089024, + 0.0037866178900003433, + 0.027565985918045044, + -0.009877811186015606, + -0.025179896503686905, + -0.02049664407968521, + 0.0071730841882526875, + 0.012923408299684525, + -0.01880711503326893, + 0.0019044242799282074, + -0.0028770144563168287, + -0.004338678438216448, + 0.002860341453924775, + -0.036102548241615295, + -0.04899631440639496, + 0.031300731003284454, + -0.01435357891023159, + 0.012649230659008026, + -0.019800083711743355, + 0.037584591656923294, + -0.06989311426877975, + -0.01224907860159874, + -0.003758829552680254, + 0.018451426178216934, + -0.0005784595850855112, + -0.003336447523906827, + 0.03260492905974388, + 0.008217924274504185, + 0.01031501404941082, + -0.0007632517372258008, + -0.012508436106145382, + -0.008321667090058327, + 0.024438876658678055, + 0.00040154080488719046, + -0.045498695224523544, + -0.013256867416203022, + 0.019044242799282074, + -0.01599123515188694, + 0.01218979712575674, + -0.003232704708352685, + -0.009588813409209251, + -0.04511336609721184, + -0.015339137054979801, + -0.04487624019384384, + 0.0041237822733819485, + -0.020896796137094498, + 0.001360700000077486, + 0.0007942820084281266, + 0.02314949966967106, + -0.017873428761959076, + 0.005398338660597801, + 0.0457654632627964, + 0.022334376350045204, + -0.0007873349240981042, + 0.002382382983341813, + 0.003436485305428505, + -0.030292943120002747, + -0.006587677635252476, + -0.01702866517007351, + -0.004397960379719734, + 0.0031771280337125063, + -0.031774986535310745, + -0.06111942231655121, + -0.01642102748155594, + 0.0046647279523313046, + -0.030678274109959602, + 0.004364614374935627, + 0.02243812009692192, + -0.013138304464519024, + -0.01811055652797222, + 0.013182765804231167, + 0.010944881476461887, + 0.007862233556807041, + -0.07208653539419174, + 0.02541702426970005, + 0.005176032427698374, + -0.02403872460126877, + -0.0020378080662339926, + 0.017413996160030365, + 0.002578753512352705, + 0.019948288798332214, + -0.012278719805181026, + 0.026380350813269615, + -0.03512440249323845, + 0.014094221405684948, + -0.004998187534511089, + 0.030559711158275604, + 0.0007299057906493545, + -0.04914452135562897, + -0.014976036734879017, + 0.00609489856287837, + 0.015146471560001373, + -0.03737710416316986, + -0.013197585940361023, + 0.0077140298672020435, + 0.019192446023225784, + 0.03153785690665245, + -0.0060245017521083355, + -0.01106344535946846, + -0.028040239587426186, + 0.004208999685943127, + 0.037288181483745575, + 0.018925679847598076, + 0.02227509394288063, + 0.029033206403255463, + 0.028277365490794182, + 0.002591721247881651, + -0.010959702543914318, + 0.014012709259986877, + -0.00032141790143214166, + -0.010885600000619888, + -0.02900356613099575, + -0.023223601281642914, + 0.002626919886097312, + -0.005061174277216196, + 0.009544352069497108, + 0.0077659012749791145, + 0.0073398142121732235, + -0.013701479882001877, + -0.020867154002189636, + 0.0009920420125126839, + -0.00356801669113338, + -0.01456847507506609, + 0.005772554315626621, + -0.0039237067103385925, + -0.008114181458950043, + 0.005061174277216196, + 0.006813689135015011, + 0.026498915627598763, + 0.010033425875008106, + 0.019977929070591927, + 0.02077823132276535, + -0.0015320611419156194, + -0.020985716953873634, + 0.05803677439689636, + 0.016080157831311226, + 0.0027880920097231865, + -0.026706401258707047, + 0.013723710551857948, + 0.010974522680044174, + 0.009796299040317535, + -0.011419135145843029, + 0.00563917076215148, + -0.012604769319295883, + 0.003894065972417593, + 0.040281906723976135, + -0.006583972368389368, + 0.010922650806605816, + 0.0022397362627089024, + -0.0191035233438015, + 0.037732794880867004, + 0.024142468348145485, + -0.0005460399552248418, + -0.005961515009403229, + -0.002350889379158616, + 0.03503547981381416, + 0.005413159262388945, + -0.005383518524467945, + 0.03509476035833359, + -0.02749188244342804, + -0.015116830356419086, + -0.024320313706994057, + 0.015279855579137802, + 0.037969920784235, + -0.015139061026275158, + -0.014857472851872444, + -0.0020452183671295643, + 0.012827075086534023, + -0.009766657836735249, + 0.0004367393266875297, + -0.006028206553310156, + 0.005257544573396444, + 0.0019155396148562431, + -0.006009681150317192, + 0.010507679544389248, + 0.005768849514424801, + 0.050300512462854385, + -0.01360514760017395, + 0.018495887517929077, + -0.005009302869439125, + 0.030885759741067886, + 0.006250513251870871, + 0.007276827469468117, + -0.03411661088466644, + 0.01851070672273636, + -0.028766440227627754, + 0.02018541470170021, + -0.007010059896856546, + -0.014346168376505375, + -0.01971116103231907, + 0.018332861363887787, + -0.006924842484295368, + 0.02273452840745449, + 0.05124901980161667, + -0.010811498388648033, + 0.008240154944360256, + 2.0826746549573727e-5, + -0.012908588163554668, + 0.006457998882979155, + 0.015265034511685371, + 0.0008577319094911218, + -0.005594709422439337, + 0.01368665974587202, + 0.002156371483579278, + -0.0027343679685145617, + 0.036547161638736725, + 0.009685145691037178, + 0.00024777892394922674, + 0.018332861363887787, + -0.017591841518878937, + 0.015531802549958229, + -0.017562201246619225, + 0.016391387209296227, + 0.006676600314676762, + -0.01762148179113865, + -0.047454990446567535, + -0.0012365790316835046, + -0.002778829075396061, + 0.011159777641296387, + -0.021548893302679062, + -0.009418378584086895, + -0.009811119176447392, + -0.011463596485555172, + -0.02091161534190178, + 0.022838270291686058, + -0.024883488193154335, + -0.0057169776409864426, + -0.026261787861585617, + 0.006454294081777334, + 0.017977172508835793, + -0.030678274109959602, + 0.02091161534190178, + -0.014457321725785732, + -0.05415382236242294, + -0.0059837456792593, + -0.01584303192794323, + -0.008625485934317112, + -0.010196450166404247, + 0.010959702543914318, + -0.018896037712693214, + -0.010996753349900246, + 0.0077659012749791145, + -0.002117467811331153, + 0.00761769711971283, + 0.0038570149336010218, + -0.01691010221838951, + 0.0017673353431746364, + 0.010618832893669605, + 0.01959259808063507, + 0.006635844241827726, + 0.02958156354725361, + -0.008581024594604969, + 0.009233122691512108, + 0.00673217698931694, + 0.03064863383769989, + 0.005213083699345589, + -0.019325830042362213, + -0.012760383076965809, + -0.038355253636837006, + 0.013871915638446808, + -0.003860719967633486, + -0.011048625223338604, + -0.004194179549813271, + 0.04247533157467842, + 0.003097468288615346, + 0.01839214377105236, + 0.018140196800231934, + 0.01811055652797222, + -0.005957809742540121, + 0.004950020927935839, + 0.03180462494492531, + 0.01584303192794323, + 0.0031382243614643812, + -0.002356447046622634, + 0.028440389782190323, + 0.007602876517921686, + -0.013323559425771236, + -0.00724718626588583, + -0.021415509283542633, + 0.01732507348060608, + 0.007973386906087399, + 0.0022008325904607773, + -0.0036939901765435934, + 0.023564470931887627, + 0.014153502881526947, + 0.020881975069642067, + -0.01443509105592966, + 0.0003885729529429227, + 0.000892004172783345, + -0.003653234103694558, + 0.0006057847640477121, + -0.013345790095627308, + 0.020896796137094498, + 0.0032660504803061485, + 0.03127109259366989, + -0.033731281757354736, + -0.009025637060403824, + 0.02912212908267975, + -0.03598398342728615, + 0.01643584854900837, + 0.011167188175022602, + 0.01824394054710865, + 0.015591084025800228, + 0.023371806368231773, + 0.031478576362133026, + 0.023045755922794342, + -0.02092643640935421, + -0.01840696483850479, + 0.009440609253942966, + 0.0080104386433959, + -0.02811434119939804, + -0.006313499994575977, + -0.0008280911133624613, + -0.0020822694059461355, + -0.023401446640491486, + -0.0059281690046191216, + -0.003964462783187628, + -0.009322045370936394, + 0.003938527312129736, + 0.025743072852492332, + -0.019192446023225784, + -0.0032197367399930954, + -0.0032049163710325956, + 0.005698452237993479, + 0.0024842731654644012, + -0.009937092661857605, + 0.03198247030377388, + 0.0034957670141011477, + -0.03989657759666443, + -0.013086432591080666, + -0.002537997206673026, + 0.010485448874533176, + -0.0034642736427485943, + 0.016984203830361366, + -0.015487341210246086, + 0.02271970734000206, + -0.008240154944360256, + 0.0009661062504164875, + 0.02660265751183033, + 0.0020100197289139032, + -0.011648851446807384, + -0.01472408976405859, + 0.035331886261701584, + 0.011322802864015102, + 0.005731798242777586, + -0.020289158448576927, + 0.02079305239021778, + -0.011878568679094315, + 0.009448018856346607, + 0.02196386642754078, + 0.025476306676864624, + 0.008669947274029255, + 0.002019282430410385, + -0.008773690089583397, + 0.006369076669216156, + 0.0115969805046916, + 0.010151988826692104, + -0.0033531205262988806, + -0.011152368038892746, + -0.007306468207389116, + 0.02975940704345703, + 0.006558036897331476, + 0.00897376611828804, + -0.005498376674950123, + 0.020822692662477493, + -0.039511244744062424, + 0.033731281757354736, + -0.008581024594604969, + 0.03453158214688301, + -0.02780311182141304, + -0.0011059739626944065, + -0.01765112206339836, + 0.020585566759109497, + -0.02841074950993061, + -0.018125375732779503, + -0.0074509670957922935, + -0.0196074191480875, + -0.003047449281439185, + -0.014479552395641804, + 0.013649608939886093, + -0.006735881790518761, + -0.014064581133425236, + 0.04864062741398811, + 0.011107906699180603, + -0.008914483711123466, + 0.003436485305428505, + 0.025461485609412193, + 0.014820422045886517, + 0.033079180866479874, + -0.04158610478043556, + 0.02808470092713833, + 0.002074859105050564, + -0.0002980294229928404, + 0.013041971251368523, + -0.013360610231757164, + -0.044313061982393265, + 0.005880002398043871, + 0.013249457813799381, + -0.007202725391834974, + 0.0007081382791511714, + 0.006294974125921726, + 0.000727590115275234, + 0.009885221719741821, + -0.007410211022943258, + 0.0060837832279503345, + -0.008180873468518257, + 0.006065257824957371, + 0.003808848559856415, + -0.026528555899858475, + 0.005153801757842302, + -0.03168606385588646, + -0.013175355270504951, + -0.01627282425761223, + -0.0006683084066025913, + 0.018318042159080505, + -0.012990100309252739, + -0.0015746698481962085, + -0.013279098086059093, + -0.003816258627921343, + 0.01098934281617403, + -0.017725225538015366, + 0.01082631852477789, + 0.016035696491599083, + 0.012960459105670452, + 0.0189849603921175, + -0.03379056230187416, + -0.019370291382074356, + 0.0010883747600018978, + 0.017132408916950226, + -0.012456565164029598, + -0.009611044079065323, + -0.009796299040317535, + -0.003097468288615346, + -0.007576941046863794, + -0.03361271694302559, + 0.00036518447450362146, + -0.012212027795612812, + 0.03681392967700958, + -0.04377952590584755, + 0.006028206553310156, + 0.0035995100624859333, + 0.01854034885764122, + 0.040281906723976135, + -0.007936336100101471, + 0.021786021068692207, + 0.01676189713180065, + -0.004042270127683878, + 0.027447421103715897, + 0.004194179549813271, + 0.00140979269053787, + -0.008047489449381828, + 0.022527040913701057, + -0.005172327160835266, + 0.02663229964673519, + -0.029062848538160324, + -0.0077288500033319, + 0.0030863529536873102, + -0.01646548882126808, + 0.016198720782995224, + 0.007780721876770258, + 0.0006659927312284708, + 0.011152368038892746, + -0.018881218507885933, + -0.016361746937036514, + -0.015872672200202942, + 0.000937391712795943, + 0.00980370957404375, + 0.021637815982103348, + -0.011456185951828957, + -0.012219438329339027, + -0.009099739603698254, + -0.031182168051600456, + 0.013508814387023449, + 0.004383139777928591, + -0.03470942750573158, + 0.0056058247573673725, + 0.014242425560951233, + 0.014235015958547592, + 0.019340651109814644, + 0.006961893290281296, + 0.027536343783140182, + -0.00882556103169918, + -0.017443636432290077, + -0.002158223884180188, + 0.020081672817468643, + 0.021756378933787346, + -0.022793808951973915, + 0.02122284471988678, + 0.0233125239610672, + -0.023105038329958916, + -0.025387383997440338, + 0.018436605110764503, + -0.008536563254892826, + 0.013894145376980305, + -0.001127278315834701, + 0.003971873316913843, + -0.001032798201777041, + -0.04001513868570328, + -0.01882193610072136, + -0.03127109259366989, + -0.00949248019605875, + 0.0008521743002347648, + -0.013219816610217094, + 0.005072289612144232, + -0.02076341211795807, + -0.02194904536008835, + 0.014264656230807304, + 0.004553574603050947, + -0.014049760065972805, + -0.012063823640346527, + -0.01913316547870636, + -0.008677356876432896, + 0.00815123226493597, + 0.028188442811369896, + -0.018051274120807648, + -0.0026046892162412405, + -0.014813012443482876, + -0.027714189141988754, + 0.005324236582964659, + -0.021786021068692207, + -0.00040964572690427303, + -0.002210095524787903, + -0.00310117332264781, + 0.023594113066792488, + -0.04398701339960098, + 0.020985716953873634, + 0.013857094570994377, + 0.024275852367281914, + -0.017384355887770653, + 0.03408697247505188, + -0.015220573171973228, + -0.023949801921844482, + -0.04692145809531212, + -0.01307161245495081, + -0.0019099819473922253, + -0.04443162679672241, + 0.008840382099151611, + 0.04054867476224899, + -0.0036513814702630043, + 0.013731121085584164, + 0.005924463737756014, + 0.018614450469613075, + 0.025298461318016052, + -0.0074954284355044365, + -0.03331631049513817, + -0.011263520456850529, + -0.01971116103231907, + 0.020822692662477493, + 0.05450951308012009, + 0.0030659749172627926, + -0.010893010534346104, + -0.023594113066792488, + 0.0221417099237442, + -0.025002053007483482, + -0.023075398057699203, + 0.005802195519208908, + 0.0006534879794344306, + 0.002569490810856223, + 0.019459214061498642, + 0.006217167247086763, + 0.0014783371007069945, + -0.001784934545867145, + 0.012664050795137882, + 0.00683962507173419, + 0.000704896345268935, + -0.010166809894144535, + -0.02317913994193077, + -0.015902312472462654, + -0.012530666776001453, + -0.01944439485669136, + -0.06052660569548607, + -0.024616722017526627, + 0.010174219496548176, + 0.03960016742348671, + -0.031745344400405884, + -0.009959323331713676, + 0.004338678438216448, + 0.00022705350420437753, + 0.01285671629011631, + 0.001132835983298719, + -0.00489073945209384, + 0.000938317971304059, + 0.009455429390072823, + 0.01882193610072136, + 0.006580267567187548, + 0.0045424592681229115, + -0.03583578020334244, + 0.014879703521728516, + -0.015294675715267658, + -0.027773471549153328, + 0.00035870051942765713, + 0.028143981471657753, + 0.01584303192794323, + 0.004357204306870699, + -0.01751773990690708, + 0.019399933516979218, + -0.017858609557151794, + -0.0021915698889642954, + -0.008173462934792042, + -0.029225872829556465, + 0.002578753512352705, + -0.008032668381929398, + -0.03396840766072273, + -0.01794753223657608, + 0.012315770611166954, + -0.013056792318820953, + 0.026513734832406044, + -0.019800083711743355, + 0.02063002809882164, + 0.009129379875957966, + 0.009737017564475536, + 0.008551383391022682, + -0.0065987929701805115, + -0.015368778258562088, + -0.028336647897958755, + -0.027402959764003754, + -0.011752595193684101, + -0.0233125239610672, + -0.0006331098848022521, + 0.005472440738230944, + -0.0049611362628638744, + -0.03186390921473503, + 0.005468735937029123, + -0.016183901578187943, + -0.015309495851397514, + 0.011945260688662529, + 0.010604011826217175, + -0.009677736088633537, + -0.0025898688472807407, + -0.006413537543267012, + 0.04546905681490898, + 0.023683033883571625, + -0.02135622873902321, + -0.017399175092577934, + -0.0031752754002809525, + 0.0006224577082321048, + 0.010500269010663033, + 0.010114938020706177, + 0.014694448560476303, + -0.0070693413726985455, + 0.0061875260435044765, + -0.021845301613211632, + -0.004360909108072519, + 0.035331886261701584, + -0.007473197765648365, + -0.005020418204367161, + 0.01494639553129673, + 0.041615746915340424, + 0.013123484328389168, + -0.004838868044316769, + -0.019459214061498642, + -0.00037375252577476203, + -0.016539590433239937, + -0.0057169776409864426, + -0.01942957378923893, + 0.0110708549618721, + 0.0320417545735836, + -0.02691388688981533, + 0.013486584648489952, + -0.0016524770762771368, + 0.02092643640935421, + 0.007228660862892866, + 0.00957399234175682, + 0.01914798468351364, + -0.014813012443482876, + 0.05572478845715523, + -0.008499512448906898, + 0.001454253913834691, + -0.012130515649914742, + -0.026113584637641907, + 0.018925679847598076, + -0.028143981471657753, + 0.027729010209441185, + -0.04137861728668213, + -0.025031693279743195, + -0.017888249829411507, + 0.0059800404123961926, + 0.0020100197289139032, + -0.02688424661755562, + -0.006454294081777334, + -0.013145714066922665, + 0.01987418532371521, + -0.012538077309727669, + -0.0004038565093651414, + 0.005450210068374872, + -0.015576263889670372, + 0.012330591678619385, + -0.0047165993601083755, + 0.0049092648550868034, + 0.004798111505806446, + -0.0078103626146912575, + 0.015265034511685371, + -0.00866253674030304, + -0.03696213290095329, + 0.01374594122171402, + 0.010352064855396748, + -0.014383220113813877, + -0.014761140570044518, + -0.01748809777200222, + -0.0024750104639679193, + 0.000540482287760824, + -0.0015589231625199318, + 0.005779964849352837, + 0.00850692205131054, + 0.024246210232377052, + 0.021326588466763496, + 0.016850819811224937, + -0.009522121399641037, + 0.019014602527022362, + -0.038799867033958435, + 0.009988964535295963, + 0.008766279555857182, + 0.0034531583078205585, + 0.025772714987397194, + -0.005987450480461121, + 0.027091732248663902, + 0.007817773148417473, + 0.018199479207396507, + 0.006943367887288332, + -0.018584810197353363, + -0.01405717059969902, + 0.03980765491724014, + 0.004661022685468197, + 0.01502049807459116, + -0.021445151418447495, + -0.02913695015013218, + 0.007232366129755974, + 0.009885221719741821, + 0.011159777641296387, + 0.01899978145956993, + -0.0051871477626264095, + 0.014501783065497875, + 0.021459970623254776, + 0.017977172508835793, + 0.01880711503326893, + -0.023949801921844482, + -0.009284994564950466, + -0.007706619333475828, + -0.015724467113614082, + -0.029833510518074036, + 0.005920758470892906, + -0.013597737066447735, + 0.007373160216957331, + 0.021726738661527634, + -0.0009679588256403804, + -0.0019414753187447786, + -0.015739288181066513, + 0.01189338881522417, + 0.011804466135799885, + 0.006676600314676762, + -0.011485827155411243, + 0.020852334797382355, + 0.016480309888720512, + 0.035213321447372437, + 0.009744427166879177, + 0.015353957191109657, + 0.011211649514734745, + 0.02137104794383049, + 0.005861476995050907, + -0.0031678653322160244, + -0.00994450319558382, + 0.03619147092103958, + 0.010263142175972462, + -0.02137104794383049, + -0.001450548879802227, + -0.019918646663427353, + 0.0071916100569069386, + 0.008017848245799541, + -0.03002617508172989, + -0.011248700320720673, + -0.014042350463569164, + -0.009047867730259895, + 0.0119674913585186, + 0.001967411022633314, + -0.001926654833368957, + 0.0012486205669119954, + -0.030826477333903313, + 0.005287185776978731, + 0.0032123264390975237, + 0.03912591561675072, + -0.0221417099237442, + -0.007980797439813614, + 0.00713973818346858, + -0.023668214678764343, + 0.009010816924273968, + 0.004012629389762878, + -0.008877432905137539, + -0.02242329902946949, + -0.023119859397411346, + -0.042534612119197845, + 0.024720463901758194, + 0.0051352763548493385, + 0.010485448874533176, + -0.017858609557151794, + 0.026558196172118187, + 0.02512061595916748, + 0.015739288181066513, + -0.03663608431816101, + -0.011315392330288887, + 0.006065257824957371, + 0.0005474293720908463, + -0.012693691998720169, + -1.5790117686265148e-5, + -0.013590327464044094, + -0.002261966932564974, + 0.012953048571944237, + 0.0236237533390522, + -0.020852334797382355, + 0.020111313089728355, + -0.008492101915180683, + -0.012693691998720169, + -0.0074509670957922935, + -0.019251728430390358, + 0.006709946319460869, + 0.03435374051332474, + 0.015079779550433159, + -0.003573574358597398, + -0.017710404470562935, + 0.006787753198295832, + 0.005227903835475445, + 0.025817176327109337, + -0.008551383391022682, + 0.0011143104638904333, + -0.008766279555857182, + -0.004824047442525625, + 0.0006562668131664395, + 0.0071730841882526875, + -0.008795920759439468, + 0.015783749520778656, + 0.006961893290281296, + -0.015917133539915085, + -0.005942989140748978, + 0.016776718199253082, + -0.042979225516319275, + 0.003469831310212612, + 0.005201968364417553, + 0.02526881918311119, + -0.01956295780837536, + 0.018436605110764503, + 0.0059800404123961926, + -0.003982988651841879, + 0.012226847931742668, + 0.008054899051785469, + 0.005287185776978731, + -0.01277520414441824, + -0.00272695766761899, + 0.006987829227000475, + -0.056139759719371796, + -0.0013431007973849773, + 0.05234573036432266, + 0.0019951993599534035, + 0.019622238352894783, + -0.04526156932115555, + 0.007906694896519184, + 0.03746602684259415, + 0.02434995397925377, + -0.015309495851397514, + -0.004383139777928591, + 0.02123766578733921, + 0.006528396159410477, + 0.046565767377614975, + -0.0037440091837197542, + 0.006976713892072439, + -0.01659887284040451, + -0.003051154315471649, + -0.0065469215624034405, + -0.0003781523264478892, + 0.01584303192794323, + -0.008136412128806114, + 0.02661747857928276, + 0.03159714117646217, + 0.028766440227627754, + -0.0028584888204932213, + 0.0067025357857346535, + 0.017665943130850792, + -0.00019949677516706288, + 0.008625485934317112, + -0.006561742164194584, + 0.010885600000619888, + -0.022452939301729202, + -0.011300572194159031, + -0.011856338009238243, + 0.000351985014276579, + -0.0014514750801026821, + -0.010485448874533176, + 0.004953726194798946, + 0.011256110854446888, + 0.011411725543439388, + 0.004097846802324057, + -0.02270488627254963, + 0.00048722137580625713, + -0.01612461917102337, + 0.0018256907351315022, + -0.004397960379719734, + -0.035806141793727875, + -0.024394415318965912, + -0.018288401886820793, + -0.016865640878677368, + 0.0015783749986439943, + -5.314510781317949e-5, + 0.006287564057856798, + 0.016198720782995224, + 0.007250891532748938, + -0.01809573546051979, + -0.002717694966122508, + -0.012738153338432312, + 0.013753351755440235, + 0.004586920607835054, + -0.021326588466763496, + 0.0004946315893903375, + -0.0008443008991889656, + 0.02614322490990162, + -0.018599629402160645, + -0.006383896805346012, + -0.011478416621685028, + -0.003430927637964487, + 0.009699966758489609, + -0.01897014118731022, + 0.0008216071291826665, + 0.0014746320666745305, + 0.01763630285859108, + -0.011152368038892746, + 0.001272703753784299, + 0.030589351430535316, + 0.00897376611828804, + 0.019222088158130646, + 0.012338001281023026, + 0.005327941849827766, + -0.01824394054710865, + -0.02286791056394577, + -0.0322788804769516, + 0.006361666135489941, + 0.002760303672403097, + -0.009840760380029678, + -0.02765490859746933, + -0.002113762777298689, + 0.034324098378419876, + -0.025683792307972908, + -0.005131571087986231, + -0.023045755922794342, + 0.013597737066447735, + -0.00713603338226676, + 0.00821051374077797, + 0.0005590078071691096, + -0.01645066775381565, + 0.006528396159410477, + -0.01702866517007351, + 0.0023749726824462414, + 0.00964809488505125, + 0.011137546971440315, + -0.011900799348950386, + 0.006446883548051119, + -0.01600605621933937, + -0.0201557744294405, + 0.0071916100569069386, + -0.023356985300779343, + -0.002762156305834651, + 0.008114181458950043, + -0.004364614374935627, + -0.007128623314201832, + -0.004887034185230732, + -0.011752595193684101, + -0.0007201798725873232, + 0.0225715022534132, + 0.017458457499742508, + -0.004383139777928591, + -0.04262353479862213, + 0.010063067078590393, + -0.012471385300159454, + -0.016346925869584084, + -0.0012782614212483168, + 0.005068584345281124, + 0.008425409905612469, + -0.00448688305914402, + -0.023090217262506485, + 0.01733989454805851, + -0.013316149823367596, + 0.03515404090285301, + 0.007877054624259472, + -0.04185287281870842, + -0.0049092648550868034, + 0.023949801921844482, + 0.019355472177267075, + -0.02000756934285164, + -0.012508436106145382, + -0.00452022859826684, + 0.03343487158417702, + 0.01098193321377039, + 0.011226469650864601, + 0.012982689775526524, + -0.012004542164504528, + 0.019755622372031212, + 0.0008452272159047425, + -0.00411637220531702, + 0.001695085782557726, + 0.004294217564165592, + 0.002434254391118884, + -0.013286508619785309, + -0.016065336763858795, + 0.02556522749364376, + -0.0039162966422736645, + -0.008788510225713253, + 0.020570745691657066, + 0.005316826514899731, + 0.06609908491373062, + -0.008091950789093971, + 0.008988586254417896, + -0.018421784043312073, + 0.010952292010188103, + 0.0032679031137377024, + 0.004031154792755842, + -0.013834863901138306, + 0.0026102468837052584, + -0.02061520703136921, + 0.007039700634777546, + -0.00437943497672677, + 0.022037968039512634, + -0.023045755922794342, + -0.001646919408813119, + 0.030530069023370743, + 0.005579888820648193, + -0.0069211372174322605, + 0.00949248019605875, + -0.03719925880432129, + 0.0080104386433959, + -0.011389494873583317, + -0.019207267090678215, + -0.0013079022755846381, + -0.03435374051332474, + 0.026795323938131332, + -0.017754865810275078, + 0.002597278915345669, + 0.0036828748416155577, + 0.008455051109194756, + 0.01811055652797222, + 0.01926654949784279, + 0.031063605099916458, + -0.021860122680664062, + 0.002386088017374277, + 0.009233122691512108, + 0.00108281709253788, + 0.00649875495582819, + -0.05279034376144409, + 0.00299187283962965, + 0.04348311945796013, + -0.040874723345041275, + -0.020881975069642067, + -0.012308361008763313, + 0.024009084329009056, + -0.034739069640636444, + 0.02884054183959961, + -0.016702616587281227, + -0.010589191690087318, + 0.024186929687857628, + 0.030381865799427032, + -0.012389873154461384, + 0.009107149206101894, + -0.018481066450476646, + 0.005116750951856375, + 0.026573017239570618, + -0.024764925241470337, + 0.006669189780950546, + -0.005779964849352837, + 0.002030397765338421, + 0.0007410211255773902, + -0.02347554825246334, + -0.011693312786519527, + -0.015546622686088085, + 0.00852174311876297, + -0.0119674913585186, + 0.007743670605123043, + -0.010122348554432392, + -0.02137104794383049, + 0.016332104802131653, + 0.007128623314201832, + -0.02314949966967106, + -0.014746320433914661, + 0.006424652878195047, + -0.0059281690046191216, + 0.0061208344995975494, + -0.02049664407968521, + 0.0018858987605199218, + -0.008403179235756397, + -0.0011948965257033706, + 0.015739288181066513, + -0.01291599776595831, + 0.010263142175972462, + -0.006005975883454084, + -0.0024805681314319372, + -0.010292783379554749, + -0.013627378270030022, + -0.0035995100624859333, + -0.015561443753540516, + 0.008721818216145039, + 0.005646580830216408, + 0.005913348402827978, + 0.0078548239544034, + 0.001742325839586556, + -0.003794028190895915, + -0.0025194718036800623, + 0.0020137247629463673, + -0.003986693453043699, + -0.017843788489699364, + -0.003749566851183772, + 0.016658155247569084, + -0.002573195844888687, + 0.028899824246764183, + 0.00042052948265336454, + -0.001407013856805861, + -0.006824804469943047, + 0.001029093051329255, + 0.010574371553957462, + -0.005961515009403229, + 0.008914483711123466, + -0.014976036734879017, + 0.07392426580190659, + -0.00860325526446104, + 0.00740280095487833, + 0.005298301111906767, + 0.0025324395392090082, + -0.00852174311876297, + -0.009166430681943893, + 0.024735284969210625, + 0.023846060037612915, + -0.020718950778245926, + -0.010722575709223747, + 0.015591084025800228, + -0.005568773485720158, + 0.013649608939886093, + -0.0007336108828894794, + 0.0019581483211368322, + 0.0009448018972761929, + 0.012419513426721096, + 0.01127834152430296, + 0.03527260571718216, + 0.003371646162122488, + 0.004160833545029163, + 0.0013097547926008701, + 0.02377195656299591, + -0.0038755403365939856, + -0.0012050855439156294, + -0.011056034825742245, + 0.0350058376789093, + 0.04348311945796013, + 0.013204996474087238, + -0.017725225538015366, + 0.0035124400164932013, + -0.0239349827170372, + 0.009307225234806538, + 0.015754109248518944, + 0.010366884991526604, + -0.00860325526446104, + 0.01173036452382803, + -0.029374076053500175, + 0.016702616587281227, + 0.00497225159779191, + -0.01750291883945465, + 0.012797434814274311, + 0.010389115661382675, + -0.01299750991165638, + -0.011826696805655956, + 0.008714408613741398, + -0.00516121182590723, + -0.00448688305914402, + 0.015353957191109657, + -0.0077288500033319, + -0.03017438016831875, + 0.014449912123382092, + -0.011552519164979458, + -0.01218979712575674, + -0.00609489856287837, + 0.011752595193684101, + -0.03284205496311188, + 0.0020137247629463673, + 0.004268281627446413, + -0.02314949966967106, + -0.004668433219194412, + -0.015591084025800228, + -0.016228362917900085, + -0.012708512134850025, + -0.021015359088778496, + -0.02971494570374489, + 0.018451426178216934, + -0.008847791701555252, + -0.001264367252588272, + -0.0040200394578278065, + -0.010589191690087318, + 0.008203104138374329, + -0.024320313706994057, + -0.013034561648964882, + 0.03136001527309418, + -0.005427979864180088, + 0.02226027473807335, + 0.007676978595554829, + -0.01069293450564146, + 0.0030733849853277206, + 0.0114413658156991, + -0.012693691998720169, + -0.00748060829937458, + -0.005446505267173052, + -0.015650365501642227, + 0.0233125239610672, + -0.008781100623309612, + 0.016035696491599083, + -0.016198720782995224, + -0.01584303192794323, + -0.00045920151751488447, + 0.020659668371081352, + 0.004057090729475021, + -0.0012106432113796473, + -0.020585566759109497, + -0.011678492650389671, + -0.0061875260435044765, + 0.01517611276358366, + -0.014338758774101734, + 0.00821051374077797, + 0.008988586254417896, + 0.004849983379244804, + 0.01733989454805851, + -0.009611044079065323, + 0.009855580516159534, + 0.0276400875300169, + 0.010374295525252819, + -0.0189849603921175, + -0.012086054310202599, + -0.008225333876907825, + -0.01720651052892208, + -0.006146769970655441, + 0.003749566851183772, + 0.004312742967158556, + -0.00261765718460083, + 0.003099320689216256, + -0.004568395204842091, + -0.00020644384494516999, + -0.019755622372031212, + -0.013649608939886093, + -0.014220194891095161, + -0.01956295780837536, + 0.027091732248663902, + 0.0037866178900003433, + -0.002736220369115472, + 0.006858150474727154, + -0.0012300950475037098, + -0.025150256231427193, + 0.008966355584561825, + -0.00025009462842717767, + -0.003393876599147916, + 0.008262385614216328, + 0.016109798103570938, + -0.0010466923704370856, + -0.020674489438533783, + 0.017962351441383362, + 0.004127487540245056, + 0.012508436106145382, + -0.0059800404123961926, + 0.015576263889670372, + -0.0009475807310082018, + 0.017991991713643074, + 0.026573017239570618, + 0.012849305756390095, + 0.023964622989296913, + -0.005176032427698374, + -0.019785264506936073, + -0.006113423965871334, + 0.013256867416203022, + 0.006461704149842262, + -0.013923786580562592, + 0.017754865810275078, + 0.0019655583892017603, + -0.008699587546288967, + -0.017399175092577934, + -0.007113802712410688, + 0.011945260688662529, + -0.0185551680624485, + -0.000817438936792314, + 0.018036453053355217, + -0.01867373287677765, + 0.015872672200202942, + -0.0011698870221152902, + -0.006565446965396404, + 0.007884464226663113, + 0.013212406076490879, + 0.023712676018476486, + 0.020837513729929924, + 0.0009809266775846481, + -0.03571721911430359, + 0.0005886486615054309, + -0.006332025397568941, + -0.04019298404455185, + 0.014012709259986877, + -0.004231230355799198, + -0.01315312460064888, + 0.006569152232259512, + -0.012693691998720169, + 0.007980797439813614, + -0.003043744247406721, + 0.0011374674504622817, + 0.010418756864964962, + -0.006876675877720118, + 0.016391387209296227, + -0.00799561757594347, + 0.001077259425073862, + -0.016658155247569084, + -0.010359475389122963, + -0.01496121659874916, + -0.00844764057546854, + -0.0024583374615758657, + -6.304468843154609e-5, + 0.003805143292993307, + -0.025950558483600616, + -0.032486364245414734, + 0.024009084329009056, + 0.009077508933842182, + -0.013064201921224594, + 0.008195693604648113, + -0.007921515963971615, + -0.011900799348950386, + 0.003414254868403077, + 0.00470548402518034, + -0.002636182587593794, + -0.004231230355799198, + -0.007332403678447008, + 0.0028066174127161503, + 0.005546542815864086, + 0.027847573161125183, + -0.03420553356409073, + -0.013130893930792809, + -0.0024231390561908484, + -0.001366257667541504, + -0.01098193321377039, + 0.01195267029106617, + -0.0056428755633533, + 0.006420948076993227, + 0.004887034185230732, + -0.006109719164669514, + -0.007002649363130331, + 0.0034494532737880945, + -0.027447421103715897, + -0.0057540289126336575, + 0.01120423898100853, + -0.008610664866864681, + 0.004049680195748806, + 0.021341407671570778, + 0.0039237067103385925, + -0.00904045719653368, + 0.026246968656778336, + 0.006002271082252264, + 0.002393498085439205, + -0.006791458465158939, + -0.015220573171973228, + 0.013642198406159878, + 0.016924921423196793, + -0.011056034825742245, + 0.008143821731209755, + 0.00019127607811242342, + -0.0008364275563508272, + 0.018466245383024216, + -0.002773271407932043, + -0.019088704138994217, + 0.0018043863819912076, + -0.011715543456375599, + 0.01733989454805851, + -0.014694448560476303, + -0.0028381107840687037, + -2.7730398869607598e-5, + -0.0013245752779766917, + -0.008477281779050827, + 0.001552439178340137, + 0.014131272211670876, + 0.024172108620405197, + 0.01914798468351364, + 0.0011541403364390135, + 0.007536184508353472, + -0.002678791293874383, + -0.010337244719266891, + 0.005257544573396444, + -0.0011967490427196026, + 0.0044387164525687695, + -0.008751459419727325, + 0.015768928453326225, + -0.0061208344995975494, + -0.010218680836260319, + 0.01256030797958374, + -0.016672974452376366, + -0.0013116073096171021, + 0.006457998882979155, + -0.0006252365419641137, + 0.004620266612619162, + -0.005242724437266588, + -0.0160208772867918, + -0.009173841215670109, + 0.007002649363130331, + -0.01157474983483553, + -0.017962351441383362, + -0.011708133853971958, + -0.00437943497672677, + -0.001879414776340127, + 0.011900799348950386, + -0.023223601281642914, + -0.001600605552084744, + -0.027877213433384895, + 0.011100496165454388, + 0.04167502745985985, + 0.008751459419727325, + 0.031152527779340744, + 0.0032586404122412205, + -0.03260492905974388, + 0.010937471874058247, + -0.0120267728343606, + 0.01226389966905117, + 0.0025139141362160444, + -0.015005677938461304, + 0.014501783065497875, + -0.004227525554597378, + 0.013041971251368523, + -0.009225713089108467, + -0.01568000763654709, + -0.016954563558101654, + -0.014716679230332375, + 0.011389494873583317, + 0.006520985625684261, + 0.014931575395166874, + 0.00542427459731698, + -0.006635844241827726, + 0.006250513251870871, + -0.018658911809325218, + -0.011085676029324532, + -0.00032697556889615953, + 0.0005729019176214933, + 0.012204617261886597, + -0.013805223628878593, + 0.0120267728343606, + 0.02676568180322647, + -0.011256110854446888, + 0.006898906547576189, + 0.0008322593639604747, + 0.01112272683531046, + 0.01985936611890793, + 0.014738909900188446, + 0.003342005191370845, + -0.00025565229589119554, + -0.0035457860212773085, + 0.00440907571464777, + -0.009070098400115967, + -0.015561443753540516, + 0.01836250349879265, + 0.003427222603932023, + -0.01323463674634695, + -0.02992243319749832, + -0.025980200618505478, + 0.005850361660122871, + -0.015931954607367516, + -0.006739587057381868, + -0.02017059549689293, + 0.00721754552796483, + -0.006602498237043619, + 0.004108962137252092, + -0.02138586901128292, + -0.020555926486849785, + 0.009247943758964539, + 0.04555797949433327, + 0.007321288343518972, + -0.004824047442525625, + 0.00422382028773427, + 0.013597737066447735, + -0.0016821179306134582, + 0.01880711503326893, + -0.009018226526677608, + -0.012382462620735168, + -0.004827752709388733, + -0.014472141861915588, + 0.030441146343946457, + 0.014790781773626804, + -0.002576900878921151, + -0.001921097282320261, + -0.008358717896044254, + 0.004149718210101128, + -0.018777474761009216, + -0.012071234174072742, + 0.0026973169296979904, + 0.003960757981985807, + 0.013864505104720592, + -0.006428358145058155, + -0.010833729058504105, + 0.008543973788619041, + -9.615907038096339e-5, + -0.0070767514407634735, + -0.038948070257902145, + -0.018747834488749504, + -0.02108946070075035, + 0.009425788186490536, + 0.01293081883341074, + 0.0012801139382645488, + -0.007169379387050867, + 0.0037847652565687895, + 0.006417242810130119, + 0.013249457813799381, + 0.007417621091008186, + -0.00347538897767663, + 0.015946773812174797, + -0.0028973924927413464, + 0.02403872460126877, + 0.02049664407968521, + 0.0025713432114571333, + -0.0005747544928453863, + -0.021889762952923775, + -0.0074880183674395084, + 0.01627282425761223, + 0.0032049163710325956, + 0.0032567877788096666, + -0.010922650806605816, + -0.0062245773151516914, + 0.030263302847743034, + -0.00459803594276309, + -0.00016510876594111323, + -0.006806279066950083, + -0.0120267728343606, + -0.0021860122215002775, + 0.005402043927460909, + 0.013731121085584164, + -0.013345790095627308, + 0.003562459023669362, + 0.03018919937312603, + 0.0197259820997715, + -0.008766279555857182, + 0.005353877320885658, + -0.013064201921224594, + -0.01405717059969902, + -0.0037792075891047716, + -0.001363478833809495, + 0.02123766578733921, + 0.014583295211195946, + 0.00319380103610456, + 0.02722511626780033, + -0.01248620543628931, + 0.011315392330288887, + -0.004838868044316769, + 0.009996375069022179, + 0.010411346331238747, + -0.009003406390547752, + -0.017132408916950226, + 0.02792167477309704, + -0.0012106432113796473, + -8.064393477980047e-5, + -3.861414734274149e-5, + 0.0026991693302989006, + -0.02421656996011734, + -0.0023657099809497595, + 0.017162049189209938, + -0.015813389793038368, + 0.00459803594276309, + 0.014360989443957806, + -0.008440230041742325, + 0.0029770522378385067, + 0.0115969805046916, + -0.009129379875957966, + 0.0007979871006682515, + -0.004383139777928591, + 0.020718950778245926, + 0.007906694896519184, + 0.029240693897008896, + 0.005913348402827978, + 0.00955176167190075, + -0.0030233662109822035, + -0.02735850028693676, + -0.016391387209296227, + 0.007202725391834974, + -0.005746618844568729, + 0.00905527826398611, + 0.0020044620614498854, + -0.0037273361813277006, + -0.004546164534986019, + 0.004523933865129948, + 0.03002617508172989, + -0.011456185951828957, + -0.011552519164979458, + 0.00031261827098205686, + -0.006665484979748726, + -0.004435011185705662, + 0.002660265890881419, + 0.005820720922201872, + 0.013242047280073166, + -0.002826995449140668, + 0.001498715253546834, + -0.014464732259511948, + 0.007032290566712618, + 0.026810143142938614, + 0.008277205750346184, + -0.01914798468351364, + -0.0026472979225218296, + -0.005965219810605049, + -0.008751459419727325, + -0.0034401905722916126, + 0.009825940243899822, + -0.003697695443406701, + -0.011322802864015102, + 0.01307161245495081, + 0.0012365790316835046, + 0.012523257173597813, + 0.014012709259986877, + -0.018762653693556786, + 0.009396147914230824, + 0.006395012140274048, + 0.009159021079540253, + 0.012678870931267738, + 0.006454294081777334, + 0.005820720922201872, + -0.006621023640036583, + 0.008832971565425396, + 0.003934822045266628, + -0.004920380190014839, + 0.014694448560476303, + -0.006558036897331476, + -0.00895894505083561, + 0.0006729398155584931, + -0.0065469215624034405, + -0.0017979025142267346, + 0.010055656544864178, + -0.0017163901356980205, + -0.006832214538007975, + 0.0032512301113456488, + -0.017132408916950226, + 0.0007651043124496937, + 0.014953806065022945, + -0.0012764089042320848, + 0.017413996160030365, + -0.005831836257129908, + 0.0005089888582006097, + 0.007180494721978903, + 0.0053872233256697655, + 0.013953427784144878, + 0.012063823640346527, + -0.011456185951828957, + 0.012234258465468884, + 0.0016978646162897348, + -0.007369454950094223, + -0.02240847796201706, + -0.018777474761009216, + 0.019236907362937927, + 0.010418756864964962, + -0.005383518524467945, + -0.0026009841822087765, + 0.004849983379244804, + 0.013923786580562592, + -0.012530666776001453, + 7.74598665884696e-5, + -0.013190175406634808, + -0.0074954284355044365, + -0.014694448560476303, + 0.007506543770432472, + 0.02479456551373005, + 0.007332403678447008, + 0.025668971240520477, + 0.027180654928088188, + -0.002293460303917527, + 0.007899285294115543, + 0.00986299104988575, + 0.008543973788619041, + -0.00021929593640379608, + -0.026824964210391045, + -0.019459214061498642, + 0.020422542467713356, + -0.014183144085109234, + -0.002121172845363617, + -0.00748060829937458, + -0.013938606716692448, + -0.006806279066950083, + 0.03257528692483902, + -0.0065469215624034405, + -0.008632895536720753, + -0.01674707792699337, + -0.0023268063087016344, + 0.0240535456687212, + 0.0005038943490944803, + 0.020259516313672066, + -0.0012801139382645488, + 0.0002152434753952548, + -0.024557439610362053, + -0.012041592970490456, + -0.009699966758489609, + 0.013412482105195522, + 0.02258632332086563, + -0.003329037455841899, + -0.00560953002423048, + -0.013619967736303806, + -0.0015265034744516015, + 0.007532479707151651, + -0.012397282756865025, + -0.003095615655183792, + -0.010863369330763817, + -0.0073916856199502945, + -0.007425031624734402, + -0.006987829227000475, + 0.0004946315893903375, + -0.0364878810942173, + -0.0028825721237808466, + -0.002006314694881439, + -0.03319774568080902, + -0.0191035233438015, + -0.0048722135834395885, + 0.006454294081777334, + 0.00903304759413004, + 0.004527639131993055, + 0.018021633848547935, + -0.017695583403110504, + 0.013582916930317879, + -0.0029270334634929895, + -0.008084540255367756, + -0.0036272983998060226, + -0.004227525554597378, + -0.004975956864655018, + -0.005353877320885658, + 0.002586163580417633, + -0.014998267404735088, + -0.013338379561901093, + -0.0150279076769948, + 0.008499512448906898, + 0.0002730199776124209, + -0.0053353519178926945, + 0.0035902473609894514, + 0.016939742490649223, + 0.00860325526446104, + -0.011167188175022602, + -0.001268072403036058, + -0.021148743107914925, + -0.00235274201259017, + 0.003514292649924755, + 0.009581402875483036, + -0.003340152557939291, + 0.024320313706994057, + 0.0010883747600018978, + 0.018125375732779503, + 0.017962351441383362, + 0.03705105558037758, + -0.018169837072491646, + -0.013434712775051594, + -0.0055539533495903015, + 0.012315770611166954, + 0.000893856689799577, + 0.001077259425073862, + -0.0031234039925038815, + -0.00507969968020916, + 0.003153044730424881, + 0.00244536972604692, + -0.01985936611890793, + 0.0006377412937581539, + 0.015013087540864944, + -0.02852931246161461, + -0.003655086737126112, + 0.011211649514734745, + -0.0037254835478961468, + -0.02809952013194561, + -0.019918646663427353, + 0.02240847796201706, + -0.007602876517921686, + 0.00489073945209384, + -0.0021748968865722418, + -0.005572478752583265, + 0.00609489856287837, + 0.012649230659008026, + -0.004764765966683626, + 0.011152368038892746, + 0.006395012140274048, + -0.02002239041030407, + -0.012278719805181026, + -0.016850819811224937, + -0.0036217407323420048, + -0.006428358145058155, + -0.0023749726824462414, + -0.011026394553482533, + -0.009685145691037178, + 0.009855580516159534, + -0.008395769633352757, + 0.010374295525252819, + -0.011693312786519527, + -0.019800083711743355, + -0.027995778247714043, + -7.711251237196848e-5, + -0.004538754466921091, + 0.005950399674475193, + -0.01811055652797222, + 0.02498723194003105, + 0.008684767410159111, + -0.009618453681468964, + -0.023386625573039055, + 0.001597826718352735, + 0.01914798468351364, + -0.03210103511810303, + -0.0046573178842663765, + 0.0039570527151227, + 0.0005015786737203598, + 0.0025602278765290976, + -0.006947072688490152, + -0.00046128564281389117, + -0.04336455464363098, + -6.0439535445766523e-5, + 0.01733989454805851, + -0.010033425875008106, + -0.019325830042362213, + -1.515330313850427e-5, + 0.004653612617403269, + 0.017132408916950226, + -0.005576184019446373, + -0.01658405177295208, + 0.002334216609597206, + -0.03930376097559929, + 0.0011393199674785137, + -0.02719547413289547, + -0.020229876041412354, + 0.012849305756390095, + 0.00553172267973423, + -0.0018673732411116362, + -0.0019099819473922253, + -0.01748809777200222, + 0.00150427280459553, + -0.033701639622449875, + -0.0028733094222843647, + 0.021459970623254776, + 0.000983705511316657, + 0.011671082116663456, + 0.022541861981153488, + 0.012664050795137882, + 0.0116562619805336, + -0.003047449281439185, + 0.011270930990576744, + 0.015561443753540516, + 0.012308361008763313, + 0.005839246325194836, + -0.02660265751183033, + 0.0007062857621349394, + -0.023816417902708054, + 0.011826696805655956, + 0.014672217890620232, + 0.02857377380132675, + 0.003658791771158576, + -0.016984203830361366, + -0.0019359176512807608, + -0.008062309585511684, + 0.012160156853497028, + -0.01867373287677765, + -0.015109420754015446, + 0.017828967422246933, + 0.02224545367062092, + -0.009951913729310036, + 0.011433955281972885, + 0.0067544071935117245, + 0.0012421365827322006, + 0.0018469950882717967, + 0.01836250349879265, + 0.018451426178216934, + -0.018436605110764503, + -0.008714408613741398, + -0.013360610231757164, + 0.006665484979748726, + -0.0012578833848237991, + -0.028069879859685898, + -0.02120802365243435, + -0.01405717059969902, + 0.038770224899053574, + 0.009107149206101894, + -0.01098934281617403, + 0.01195267029106617, + 0.007150853518396616, + -0.005150096490979195, + -0.0026195095852017403, + -0.015561443753540516, + -0.023520009592175484, + 0.0050315335392951965, + -0.009870401583611965, + -0.009047867730259895, + 0.018629271537065506, + 0.02048182301223278, + 0.00927758403122425, + 0.018599629402160645, + 0.013360610231757164, + 0.0048055220395326614, + 0.001976673724129796, + 0.0030270712450146675, + 0.02196386642754078, + -0.01106344535946846, + 0.01673225685954094, + 0.002728810301050544, + -0.014627756550908089, + 0.007576941046863794, + 0.008388359099626541, + 0.009084918536245823, + -0.008936714380979538, + -0.007825182750821114, + -0.007569530513137579, + -0.018747834488749504, + -0.03467978909611702, + -0.013427302241325378, + 0.002491683466359973, + 0.020378081128001213, + 0.01646548882126808, + 0.013701479882001877, + -0.0237423162907362, + 0.006821099203079939, + -0.008343897759914398, + -0.02420174889266491, + -0.015368778258562088, + 0.0060837832279503345, + 0.029403718188405037, + 0.012901177629828453, + 0.023890521377325058, + 0.034590866416692734, + -0.009425788186490536, + -0.028959104791283607, + -0.0019396228017285466, + 0.025224357843399048, + -0.00047610606998205185, + 0.01735471375286579, + -0.009611044079065323, + -0.014990856871008873, + 0.0033068067859858274, + 0.001306049758568406, + -0.0014440648956224322, + -0.01701384410262108, + -0.0158282108604908, + -0.018896037712693214, + 0.03018919937312603, + -0.00799561757594347, + 0.02150443196296692, + 0.01120423898100853, + -0.0017163901356980205, + -0.01419796422123909, + -0.01793271116912365, + -0.03020402044057846, + -0.005842951592057943, + 0.0010503974044695497, + 0.006439473479986191, + 0.019681520760059357, + 0.0008480060496367514, + -4.767428617924452e-5, + 0.02900356613099575, + -0.008551383391022682, + 0.002569490810856223, + 0.017680764198303223, + -0.009181251749396324, + -0.002400908386334777, + 0.004023744724690914, + 0.005279775243252516, + 0.0012615884188562632, + -0.0157096479088068, + -0.02108946070075035, + -3.55458578269463e-5, + 0.02092643640935421, + 0.008091950789093971, + -0.005483556073158979, + 0.010070476680994034, + 0.0010568813886493444, + 0.0026417402550578117, + 0.015190932899713516, + 0.004431306384503841, + -0.00030289238202385604, + 0.0030659749172627926, + -0.021148743107914925, + 0.009618453681468964, + 0.018747834488749504, + 0.017532559111714363, + -0.0120267728343606, + -0.016406208276748657, + 0.0019433278357610106, + 0.0038681302685290575, + -0.017147228121757507, + 0.0015200196066871285, + 0.021282127127051353, + 0.0114413658156991, + 0.012960459105670452, + -0.012538077309727669, + 0.013886735774576664, + -0.014027529396116734, + -0.010618832893669605, + -0.002673233626410365, + 0.00889966357499361, + -0.009151610545814037, + 0.02972976677119732, + 0.02749188244342804, + -0.006302384659647942, + 0.01405717059969902, + -0.013894145376980305, + -0.017828967422246933, + 0.011974900960922241, + -0.008462460711598396, + -0.0009688850841484964, + -0.019459214061498642, + 0.0066062030382454395, + -0.0012754825875163078, + 0.013027151115238667, + 0.006065257824957371, + 0.002780681708827615, + -0.00028737724642269313, + 0.0011911914916709065, + 0.013916376046836376, + 0.01778450608253479, + -0.01779932714998722, + 0.0033123644534498453, + -0.0031752754002809525, + 0.019251728430390358, + -0.005668811500072479, + -0.0035402283538132906, + 0.01689528115093708, + -0.011611800640821457, + 0.001781229511834681, + 0.008062309585511684, + 0.011307981796562672, + 0.010418756864964962, + 0.01750291883945465, + -0.011182008311152458, + -0.025209538638591766, + -0.008240154944360256, + 0.023712676018476486, + -0.016198720782995224, + -0.013886735774576664, + 0.0029937252402305603, + -0.00515750702470541, + -0.00695077795535326, + -0.0018377323867753148, + -0.0189849603921175, + 0.004134897608309984, + -0.0046647279523313046, + -0.04558761790394783, + -0.015279855579137802, + -0.0075472998432815075, + 0.012945638969540596, + -0.01808091439306736, + -7.954398461151868e-5, + -0.017295433208346367, + -0.004901854787021875, + -0.00016198257799260318, + 0.004527639131993055, + 0.010804087854921818, + -0.014553654938936234, + -0.017162049189209938, + -0.03159714117646217, + -0.014894524589180946, + 0.01075221598148346, + -0.0010161251993849874, + -0.005683632101863623, + -0.010885600000619888, + 0.013642198406159878, + 5.957114990451373e-5, + -0.002449074760079384, + 0.01628764346241951, + 0.0009313708869740367, + 0.0020804167725145817, + -0.007973386906087399, + 0.0074880183674395084, + -0.013508814387023449, + -0.018125375732779503, + -0.0029640845023095608, + -0.007410211022943258, + -0.01352363545447588, + 0.017591841518878937, + -0.019236907362937927, + 0.042979225516319275, + 0.018318042159080505, + -0.020066851750016212, + -0.022660424932837486, + -0.0034976196475327015, + 0.0015274297911673784, + -0.005891117732971907, + -0.007669568527489901, + -0.04561726003885269, + 0.0004172875196672976, + -0.003562459023669362, + 0.007788131944835186, + -0.007573235780000687, + -0.001501493970863521, + 0.021267306059598923, + -0.00895894505083561, + -0.013182765804231167, + -0.006580267567187548, + -0.023860879242420197, + 0.00014299391477834433, + -0.0059837456792593, + -0.02541702426970005, + 0.0034124022349715233, + -0.02961120381951332, + 0.02602466195821762, + -0.007006354629993439, + 0.0004950947477482259, + -0.02166745811700821, + -0.023342164233326912, + -0.008914483711123466, + 0.006150475237518549, + -0.0001759925071382895, + -0.014020119793713093, + 0.029255513101816177, + -0.008551383391022682, + 0.015146471560001373, + -0.0031734229996800423, + -0.0034642736427485943, + -0.028914643451571465, + 0.02643963322043419, + -0.008847791701555252, + 0.003145634662359953, + 0.0011383936507627368, + -0.006961893290281296, + 0.009455429390072823, + 0.013708890415728092, + 0.004546164534986019, + 0.009092329069972038, + 0.023060576990246773, + -0.017221329733729362, + 0.004275691695511341, + -6.0555317759281024e-5, + 0.002730662701651454, + 0.018866397440433502, + -0.011411725543439388, + 0.005891117732971907, + 0.0030344815459102392, + 0.024898309260606766, + -0.024246210232377052, + -0.006750702392309904, + 0.02421656996011734, + 0.02528364025056362, + -0.006020796485245228, + 0.0035883947275578976, + 0.019459214061498642, + 0.012271309271454811, + -0.01427947636693716, + 0.0058281309902668, + -0.03287169709801674, + 0.034887272864580154, + 0.04526156932115555, + 0.003703253110870719, + -0.013671839609742165, + 0.0006284785340540111, + 0.009314635768532753, + 0.016332104802131653, + 0.009951913729310036, + 0.014086810871958733, + -0.002826995449140668, + 0.00882556103169918, + -0.0015450289938598871, + 0.0191035233438015, + 0.0006391307106241584, + -0.023342164233326912, + -0.006157885305583477, + -0.008647716604173183, + -0.010277963243424892, + -0.010967112146317959, + 0.0061801159754395485, + 0.0028418160509318113, + 0.0115006472915411, + -0.01382004376500845, + 0.0029807575047016144, + -0.0062764487229287624, + -0.017710404470562935, + -0.027432601898908615, + 0.00028737724642269313, + 0.009655505418777466, + -0.001648771925829351, + 0.021044999361038208, + 0.011863747611641884, + -0.008003028109669685, + 0.004246050957590342, + 0.008551383391022682, + -0.017443636432290077, + -0.008136412128806114, + 0.006535806227475405, + -0.00635796133428812, + 0.020881975069642067, + 0.007565825711935759, + -0.031063605099916458, + -0.02211206965148449, + -0.005509492009878159, + -0.0013023446081206203, + 0.006106013897806406, + 0.00044090754818171263, + -0.01024091150611639, + 0.010759626515209675, + 0.017991991713643074, + 0.021593354642391205, + -0.004646202549338341, + 0.01840696483850479, + 0.0017145376186817884, + -0.027284396812319756, + 0.003808848559856415, + -0.024246210232377052, + -0.007877054624259472, + 0.027906855568289757, + 0.011997131630778313, + 0.01024091150611639, + -0.010426167398691177, + 0.020229876041412354, + 0.006302384659647942, + 0.0115006472915411, + -0.009855580516159534, + -0.0036754647735506296, + 0.005865182261914015, + 0.009877811186015606, + -0.011745184659957886, + 0.007802952080965042, + 0.011033804155886173, + 0.00037838390562683344, + -0.00029664000612683594, + -0.006291269324719906, + 0.006695125717669725, + -0.016080157831311226, + 0.01762148179113865, + -4.752955646836199e-5, + -0.011841516941785812, + -0.01523539423942566, + 0.005731798242777586, + -0.009744427166879177, + 0.021341407671570778, + 0.003805143292993307, + 0.02989279106259346, + -0.008847791701555252, + -0.01897014118731022, + 0.008262385614216328, + 0.022186171263456345, + -0.0025324395392090082, + 0.014746320433914661, + -0.004794406704604626, + 0.007199020124971867, + -0.016850819811224937, + -0.008477281779050827, + 7.272716970874171e-7, + 0.010440987534821033, + 0.0017469573067501187, + 0.00044160225661471486, + -0.0077584912069141865, + -0.03571721911430359, + -0.004097846802324057, + -0.013938606716692448, + 0.010559550486505032, + -0.015635546296834946, + 0.0050315335392951965, + -0.0009716639178805053, + -0.00414601294323802, + 0.033405233174562454, + 0.019251728430390358, + 0.0009975996799767017, + 0.010515089146792889, + -0.014457321725785732, + -0.001824764534831047, + -0.020081672817468643, + 0.012330591678619385, + 0.00563917076215148, + -0.02569861151278019, + 0.001551512978039682, + 0.02107463963329792, + 0.005687336903065443, + 0.005442800000309944, + -0.003466126276180148, + -0.0010466923704370856, + 0.0033160694874823093, + 0.02079305239021778, + 0.017147228121757507, + -0.009462839923799038, + 0.028499672189354897, + -0.009425788186490536, + 0.030100276693701744, + 0.012049003504216671, + 0.012819665484130383, + 0.00949248019605875, + 0.0320417545735836, + 0.009373917244374752, + -0.01931101083755493, + 0.015561443753540516, + 0.023520009592175484, + -0.005824425723403692, + -0.0004640644765459001, + 0.0062764487229287624, + 0.02377195656299591, + -0.006420948076993227, + -0.016080157831311226, + -0.0037236311472952366, + -0.011908208951354027, + 0.01731025241315365, + -0.003562459023669362, + 0.014909344725310802, + 0.012797434814274311, + -0.018436605110764503, + -0.02467600256204605, + 0.010641063563525677, + 0.018140196800231934, + 0.02735850028693676, + -0.01956295780837536, + 0.006106013897806406, + -0.007736260537058115, + -0.013775582425296307, + -0.0012588095851242542, + -0.027447421103715897, + -0.008388359099626541, + 0.008781100623309612, + 0.0008609739015810192, + 0.009796299040317535, + 0.022749347612261772, + -0.009937092661857605, + 0.0044387164525687695, + -0.02332734502851963, + -0.015561443753540516, + -0.01689528115093708, + -0.006806279066950083, + -0.010729985311627388, + -0.0002181380841648206, + -0.002198980189859867, + 0.0024101710878312588, + 0.008781100623309612, + 0.02064484730362892, + 0.006154180504381657, + 0.007569530513137579, + -0.003912591375410557, + -0.028484851121902466, + 0.0014857472851872444, + -0.021459970623254776, + -0.015309495851397514, + -0.004701778758317232, + -0.005087109748274088, + -0.010818907991051674, + 0.003908886574208736, + -0.018658911809325218, + 0.013138304464519024, + 0.0160208772867918, + 0.009855580516159534, + -0.019651880487799644, + -0.002400908386334777, + 0.0010513237211853266, + -0.013130893930792809, + -0.017087947577238083, + 0.028455210849642754, + 0.002169339219108224, + 0.015339137054979801, + 0.011307981796562672, + -0.01733989454805851, + 0.0010568813886493444, + -0.01173036452382803, + -0.028040239587426186, + -0.025965379551053047, + 0.02602466195821762, + 0.0010689229238778353, + 0.013842274434864521, + 0.01151546835899353, + -0.014835242182016373, + -0.007936336100101471, + -0.006146769970655441, + -0.0007391685503534973, + -0.010033425875008106, + -0.019059063866734505, + -0.004809226840734482, + -0.001502420287579298, + 0.0009174767765216529, + 0.0025472601410001516, + -0.0067544071935117245, + 0.007536184508353472, + 0.0026065418496727943, + 0.02377195656299591, + -0.012582538649439812, + 0.019755622372031212, + -0.01959259808063507, + 0.014486962929368019, + -0.018184658139944077, + 0.00684332987293601, + 0.004827752709388733, + -0.0016534033929929137, + -0.020822692662477493, + -0.009262763895094395, + -0.004983366932719946, + -0.005576184019446373, + -0.019251728430390358, + -0.011041214689612389, + 0.019666699692606926, + -0.023134678602218628, + -0.005357582587748766, + 0.020526284351944923, + 0.021459970623254776, + -0.003945937380194664, + -0.011589569970965385, + -0.01568000763654709, + -0.01600605621933937, + 0.00440907571464777, + -0.010433577001094818, + 0.004931495524942875, + 0.00860325526446104, + 0.024839026853442192, + -0.0065987929701805115, + -0.00935168657451868, + 0.006054142490029335, + 0.0003962147166021168, + 0.018940499052405357, + 0.003990398719906807, + -0.017458457499742508, + 0.004168243613094091, + 0.007239776197820902, + -0.019963108003139496, + -0.012953048571944237, + -0.015057548880577087, + -0.007228660862892866, + -0.011648851446807384, + 0.01765112206339836, + 0.0033549731597304344, + 0.007195314858108759, + -0.002015577396377921, + -0.008810740895569324, + -0.017250971868634224, + 0.00903304759413004, + 0.0012791877379640937, + 0.04689181596040726, + 0.017132408916950226, + 0.010463218204677105, + -0.016924921423196793, + -0.024927949532866478, + -0.012315770611166954, + -0.000471011531772092, + -0.0025565228424966335, + -0.025520766153931618, + 0.003845899598672986, + 0.0200372114777565, + 0.010500269010663033, + -0.00695077795535326, + -0.007376865018159151, + -0.030381865799427032, + 0.006409832742065191, + -0.004638792015612125, + -0.023090217262506485, + -0.025298461318016052, + 0.02615804597735405, + -0.01717687025666237, + 0.006561742164194584, + -0.010151988826692104, + -0.003290133783593774, + 0.00904045719653368, + 0.0032197367399930954, + -0.0051352763548493385, + -0.022023146972060204, + 0.00978147890418768, + -0.011915619485080242, + 0.03018919937312603, + -0.0007507469854317605, + -0.03254564851522446, + 0.0014894524356350303, + -0.003393876599147916, + 0.014294297434389591, + -0.005509492009878159, + 0.014561064541339874, + 0.01597641594707966, + 0.006821099203079939, + -0.010618832893669605, + -0.015205753035843372, + 0.0004596646467689425, + -0.010885600000619888, + 0.0037421565502882004, + 0.01778450608253479, + 0.02020023576915264, + 0.009144200943410397, + -0.0006534879794344306, + -0.006250513251870871, + 0.006721061654388905, + 0.009959323331713676, + -0.00122268486302346, + 0.025817176327109337, + 0.003986693453043699, + 0.015057548880577087, + 0.010722575709223747, + -0.034324098378419876, + -0.026573017239570618, + -0.01112272683531046, + 0.025446664541959763, + 0.013316149823367596, + 0.022067608311772346, + 0.016495129093527794, + -0.013130893930792809, + 0.012456565164029598, + -0.005913348402827978, + -0.006954483222216368, + 0.0079141054302454, + 0.01811055652797222, + 0.010759626515209675, + -0.01732507348060608, + -0.015309495851397514, + -0.004205294884741306, + -0.02887018211185932, + -0.011493237689137459, + -0.005487261340022087, + -0.019948288798332214, + -0.025209538638591766, + 0.02165263704955578, + 0.008877432905137539, + -0.005539132747799158, + 0.003653234103694558, + -0.013471763581037521, + 0.00044924404937773943, + -0.019755622372031212, + -0.013805223628878593, + 0.007832593284547329, + 0.006621023640036583, + 0.004320153035223484, + -0.004208999685943127, + 0.010337244719266891, + -0.005565068684518337, + -0.003964462783187628, + 0.00874404888600111, + -0.012330591678619385, + -0.00300669320859015, + 0.017369534820318222, + 0.005138981621712446, + 0.006298679392784834, + 0.005061174277216196, + 0.019251728430390358, + -0.003201211104169488, + -0.0160208772867918, + -0.013316149823367596, + -0.021756378933787346, + 0.006213461980223656, + -0.0006678452482447028, + 0.008299436420202255, + 0.0080697201192379, + -0.014442501589655876, + 0.013375431299209595, + -0.0011244994821026921, + -0.0008646789938211441, + 0.0022230632603168488, + 0.027432601898908615, + 0.020881975069642067, + 0.004194179549813271, + 0.006906316615641117, + 0.0079141054302454, + -0.011093085631728172, + 0.007899285294115543, + 0.016243182122707367, + -0.0300558153539896, + -0.0043497937731444836, + 0.0007243481231853366, + 0.009344276040792465, + 0.02079305239021778, + 0.011367264203727245, + 0.0007377791334874928, + 0.00676552252843976, + -0.010359475389122963, + -0.0038273739628493786, + 0.013279098086059093, + 0.00534646725282073, + -0.008032668381929398, + 0.00844764057546854, + 0.006146769970655441, + -0.0007799247396178544, + -0.019770443439483643, + -0.013805223628878593, + 0.029789049178361893, + 0.027536343783140182, + 0.009307225234806538, + 0.007321288343518972, + 0.005198263097554445, + -0.004346088971942663, + 0.0077140298672020435, + 0.012538077309727669, + 0.017250971868634224, + -0.01944439485669136, + -0.0055984146893024445, + 0.0036310034338384867, + 0.005887412931770086, + -0.009136790409684181, + 0.011767415329813957, + 0.003282723482698202, + 0.0009336866205558181, + 0.002867751754820347, + -0.00338090886361897, + 0.007087866775691509, + 0.0019155396148562431, + 0.006617318373173475, + 0.03636931627988815, + 0.0157096479088068, + 0.008455051109194756, + -0.007161968853324652, + 0.0194147527217865, + 0.004405370447784662, + -0.0037236311472952366, + -0.014398040249943733, + 0.00021420141274575144, + 0.009922272525727749, + 0.009121970273554325, + -0.00911455973982811, + -0.00668401038274169, + 0.0016478457255288959, + -0.00430162763223052, + -0.020111313089728355, + -0.007306468207389116, + 0.020570745691657066, + 0.008388359099626541, + 0.021267306059598923, + -0.007358339615166187, + -0.006320910062640905, + 0.011782235465943813, + 0.0059726303443312645, + -0.0020341030322015285, + -0.0013903408544138074, + -0.012923408299684525, + 0.011522877961397171, + -0.0057021575048565865, + -0.009107149206101894, + -0.015724467113614082, + -0.009825940243899822, + 0.02630624920129776, + 0.01990382745862007, + -0.011900799348950386, + -0.0154577000066638, + -0.024275852367281914, + 0.008395769633352757, + -0.0035013246815651655, + -0.0082846162840724, + -0.015339137054979801 + ], + "8fcb6784-76ee-4e3d-a540-7140fc8e156f": [ + -0.023927124217152596, + -0.016665520146489143, + -0.006666903384029865, + 0.035668108612298965, + 0.01236002892255783, + -0.009633449837565422, + 0.010231628082692623, + 0.02376019023358822, + -0.02064410038292408, + 0.0227446798235178, + 0.0045489356853067875, + 0.04126037657260895, + 0.030743572860956192, + -0.02527650259435177, + -0.005842669866979122, + 0.014328451827168465, + -0.01897476613521576, + 0.05361345037817955, + 0.04120473191142082, + -0.0010285533498972654, + 0.04724215716123581, + -0.01103847287595272, + -0.023412412032485008, + 0.008151915855705738, + 0.031049616634845734, + 0.004166380036622286, + -0.01092718355357647, + 0.030465349555015564, + -0.03572375327348709, + 0.0002717015449889004, + 0.009967316873371601, + 0.0018866955069825053, + -0.0023857569321990013, + -0.010016005486249924, + 0.017166320234537125, + -0.005206236150115728, + 0.00258051254786551, + -0.02759965881705284, + -0.012234828434884548, + -0.03413788601756096, + -0.06365727633237839, + 0.011476673185825348, + -0.02259165607392788, + -0.04757602512836456, + -0.04560064524412155, + 0.02907423861324787, + -0.041232556104660034, + -0.023801924660801888, + 0.05742509663105011, + -0.003842946607619524, + 0.017486276105046272, + -0.0383390411734581, + -0.012262650765478611, + 0.03327539563179016, + 0.04880020394921303, + -0.0041037797927856445, + 0.027237970381975174, + -0.0014328452525660396, + -0.003815124277025461, + -0.048855848610401154, + -0.020129388198256493, + 0.014564941637217999, + -0.034388285130262375, + 0.01141407247632742, + 0.025721658021211624, + 0.009883849881589413, + -0.029018593952059746, + -0.018320942297577858, + -0.05430900678038597, + -0.04390348866581917, + -0.005362736061215401, + 0.015997786074876785, + -0.045823223888874054, + -0.004966269247233868, + 0.047715138643980026, + -0.04401477798819542, + 0.04304100200533867, + 0.03895113244652748, + 0.021005788818001747, + -0.00760242622345686, + -0.012067895382642746, + -0.022522101178765297, + -0.008040626533329487, + 0.010029916651546955, + 0.038895487785339355, + 3.244116305722855e-5, + 0.02718232572078705, + -0.04509984701871872, + 0.037726953625679016, + 0.00663908151909709, + 0.00558879179880023, + 0.04009184241294861, + 0.008743138052523136, + -0.015775209292769432, + -0.03864508867263794, + -0.021715255454182625, + 0.029908904805779457, + -0.024288812652230263, + 0.03814428672194481, + 0.021896101534366608, + 0.022647300735116005, + -0.031077438965439796, + 0.014676230028271675, + 0.002603118075057864, + 0.04607362300157547, + 0.027752680703997612, + 0.02601379156112671, + -0.000507321092300117, + -0.012937339954078197, + 0.04676917940378189, + -0.041538599878549576, + -0.02056063339114189, + 0.011671428568661213, + -0.011497539468109608, + -0.03472215309739113, + -0.015149207785725594, + 0.015246585942804813, + 0.015608275309205055, + -0.002185784513130784, + 0.011998339556157589, + 0.015357875265181065, + -0.00411073537543416, + -0.019099965691566467, + 0.04092651233077049, + -0.02250818908214569, + 0.016929831355810165, + 0.013709407299757004, + -0.03355361893773079, + 0.015803031623363495, + 0.012937339954078197, + -0.023704545572400093, + 0.02640330232679844, + 0.005644436459988356, + 0.021395299583673477, + 0.022063033655285835, + 0.00642345892265439, + -0.023621078580617905, + 0.06571612507104874, + -0.015538719482719898, + 0.007630248554050922, + -0.06877657026052475, + 0.0065138814970850945, + -0.020129388198256493, + -0.00523058045655489, + -0.013744184747338295, + -0.0007998893270269036, + 0.0038672909140586853, + 0.02974197082221508, + -0.03797735273838043, + 0.030966149643063545, + -0.051777184009552, + -0.04206722229719162, + -0.019962456077337265, + 0.01823747716844082, + 0.01672116480767727, + -0.02417752332985401, + -0.01947556622326374, + 0.004298535641282797, + 0.029408104717731476, + 0.036947932094335556, + 0.011942694894969463, + -0.04468251392245293, + -0.004145513288676739, + 0.027390992268919945, + 0.044070422649383545, + 0.01531614176928997, + 0.02378801256418228, + 0.005307091865688562, + -0.03483344241976738, + 0.02177090011537075, + -0.00783195998519659, + -0.00510190287604928, + -0.025318235158920288, + -0.014745785854756832, + 0.009285671636462212, + -0.0017858399078249931, + 0.019002588465809822, + 0.04120473191142082, + -0.014690141193568707, + 0.0012128757080063224, + -0.03914588689804077, + -0.011539272964000702, + -0.004322879947721958, + 0.0037733910139650106, + 0.05291789397597313, + 0.006273914594203234, + -0.005929614417254925, + 0.018014898523688316, + -0.014328451827168465, + -0.02523477002978325, + 0.0005812239251099527, + -0.007352026179432869, + 0.014342362992465496, + 0.008457960560917854, + -0.033998772501945496, + -0.024094058200716972, + 0.00281874043866992, + 0.024274902418255806, + -0.013222518377006054, + -0.014314540661871433, + -0.015872586518526077, + -0.01448147464543581, + -0.014940541237592697, + 0.01943383179605007, + -0.057981543242931366, + 0.012304384261369705, + -0.015566541813313961, + 0.006117414217442274, + 0.019739877432584763, + -0.045238956809043884, + 0.01784796454012394, + -0.09159080684185028, + 0.031244372949004173, + -0.011483628302812576, + 0.015608275309205055, + 0.0010633311467245221, + -0.01545525249093771, + 0.0026448513381183147, + 0.03697575256228447, + -0.036363665014505386, + 0.027710948139429092, + 0.016234274953603745, + -0.005334914196282625, + -0.007727626245468855, + -0.06905478984117508, + 0.01640120893716812, + -0.03424917533993721, + 0.03294152766466141, + -0.02974197082221508, + 0.01676289737224579, + -0.010252494364976883, + 0.0003492994874250144, + -0.0007138142827898264, + -0.0035403796937316656, + 0.011831406503915787, + 0.04902278259396553, + 0.029964549466967583, + 0.035083841532468796, + 0.004176813177764416, + -0.008423182182013988, + 0.005526192020624876, + 0.017639297991991043, + 0.025248680263757706, + -0.0031821683514863253, + 0.005321003030985594, + -0.019739877432584763, + 0.026570236310362816, + 0.030576638877391815, + 0.01843223161995411, + -0.032524194568395615, + -0.04131602123379707, + 0.0256660133600235, + -0.008096271194517612, + 0.0028569959104061127, + -0.020894499495625496, + 0.04988527297973633, + 0.028990771621465683, + -0.039285000413656235, + 0.01364680752158165, + 0.0014528424944728613, + 0.02005983330309391, + 0.023342857137322426, + 0.03416570648550987, + 0.008485781960189342, + 0.007595470640808344, + -0.014439741149544716, + 0.03285806253552437, + -0.01531614176928997, + 0.038394685834646225, + 0.015956053510308266, + 0.014578851871192455, + -0.028684725984930992, + 0.0011650561355054379, + 0.029575038701295853, + 0.003707313211634755, + 0.030687928199768066, + -0.05244491621851921, + 0.0004236370441503823, + 0.024233167991042137, + -0.002853518119081855, + -0.03207904100418091, + -0.00843709334731102, + -0.019447743892669678, + -0.00659039244055748, + 0.017875786870718002, + -8.95256562216673e-6, + -0.00878487154841423, + 0.018028810620307922, + -0.03274677321314812, + 0.025791214779019356, + -0.005731381010264158, + -0.008075403980910778, + 0.042595844715833664, + 0.0076511153019964695, + 0.012019206769764423, + 0.0036586241330951452, + -0.017249787226319313, + 0.00014813167217653245, + -0.03666970878839493, + 0.011052384041249752, + -0.02597205899655819, + 0.01281214039772749, + -0.02309245616197586, + -0.029213348403573036, + 0.02072756737470627, + -0.009501294232904911, + 0.045934513211250305, + 0.05725816264748573, + -0.03210686147212982, + 0.04752038046717644, + 0.042039401829242706, + -0.05302918329834938, + -0.02434445731341839, + -0.004242890980094671, + 0.024539213627576828, + 0.026542413979768753, + -0.005560969468206167, + 0.005213191732764244, + -0.03886766359210014, + -0.025262590497732162, + 0.0157056525349617, + -0.012763450853526592, + -0.04832722619175911, + -0.004211591091006994, + -0.008610982447862625, + -0.05764767527580261, + 0.04112126678228378, + 0.024900902062654495, + 0.015928231179714203, + 0.00820060446858406, + -0.04078739881515503, + -0.034666508436203, + -0.019725965335965157, + -0.02332894504070282, + -0.027418814599514008, + -0.03961886465549469, + -0.05842669680714607, + -0.025832947343587875, + 0.0232872124761343, + -0.024900902062654495, + -0.022369079291820526, + -0.05987345427274704, + 0.009716915898025036, + -0.04471033439040184, + 0.00983516126871109, + 0.013820696622133255, + 0.010419427417218685, + 0.02398276887834072, + -0.004896713886409998, + 0.019419921562075615, + 0.0008963976870290935, + -0.006806014571338892, + 0.010482028126716614, + -0.013187739998102188, + 0.057091232389211655, + -0.005901792086660862, + -0.025985969230532646, + -0.014105874113738537, + -0.013472918421030045, + 0.022410811856389046, + 0.03825557604432106, + -0.009751694276928902, + 0.003316062968224287, + -0.005762680899351835, + -0.021367477253079414, + -0.02842041477560997, + -0.00411073537543416, + -0.013542474247515202, + -0.013632896356284618, + 0.013688541017472744, + -0.026375479996204376, + -0.0010963700478896499, + -0.004670658148825169, + -0.03032623790204525, + 0.002865690505132079, + -0.021256189793348312, + 0.027154503390192986, + -0.006256525404751301, + -0.037420909851789474, + -0.004270713310688734, + -0.006666903384029865, + 0.019878989085555077, + 0.04067610949277878, + 0.004521113354712725, + 0.00939000491052866, + 0.04117691144347191, + -0.03472215309739113, + -0.034972552210092545, + -0.009960360825061798, + 0.0015536980936303735, + -0.029324637725949287, + 0.012373940087854862, + -0.0059678698889911175, + -0.0263198371976614, + -0.008520560339093208, + -0.005300136283040047, + 0.0005055821966379881, + -0.009216115809977055, + 0.014495385810732841, + -0.005901792086660862, + -0.03433264046907425, + -0.029380282387137413, + 0.01741672120988369, + 0.0036168908700346947, + 0.03224597126245499, + -0.014801430515944958, + -0.006618214771151543, + -0.00653127022087574, + 0.021117078140378, + -0.007505048532038927, + 0.02060236595571041, + -0.021005788818001747, + -0.005602702964097261, + 0.003190862713381648, + 0.018098365515470505, + 0.023203745484352112, + -0.012373940087854862, + 0.03255201876163483, + -0.00012922125461045653, + 0.016902009025216103, + 0.040731754153966904, + -0.00700772600248456, + 0.009730827063322067, + 0.032913707196712494, + 0.02811437100172043, + -0.0007455490413121879, + -0.015566541813313961, + -0.002683107042685151, + -0.012791273184120655, + -0.02523477002978325, + -0.013048629276454449, + 0.024288812652230263, + -0.007014681585133076, + 0.00020334143482614309, + -0.008138004690408707, + -0.0008929199539124966, + 0.008242337964475155, + 0.00405161315575242, + 0.002011895412579179, + 0.0020466733258217573, + -0.036057621240615845, + 0.0035995019134134054, + 0.010523761622607708, + -0.006489536724984646, + -0.002300551161170006, + 0.009285671636462212, + -0.014926630072295666, + 0.018098365515470505, + 0.017583653330802917, + -0.002270990051329136, + -0.009647361002862453, + 0.02056063339114189, + -0.008729226887226105, + -0.0015815203078091145, + -0.0161368977278471, + -0.012742584571242332, + -0.011135850101709366, + -0.027390992268919945, + -0.0026813680306077003, + -0.03989708796143532, + 0.008193648420274258, + 0.005407947581261396, + 0.004778469447046518, + -0.011727073229849339, + 0.028879482299089432, + -0.009981228038668633, + 0.00795020442456007, + 0.02220214530825615, + 0.015719564631581306, + 0.02270294539630413, + -0.012603473849594593, + -0.016359476372599602, + -0.011754895560443401, + 0.006854703649878502, + 0.011163672432303429, + -0.005912225227802992, + 0.0026239848230034113, + -0.006409547757357359, + -0.008736182935535908, + -0.004455035552382469, + -0.014745785854756832, + -0.03324757516384125, + 0.010169027373194695, + -0.020852766931056976, + -0.012332206591963768, + 0.013556385412812233, + 0.007560693193227053, + -0.06894350051879883, + -0.008506649173796177, + -0.026180725544691086, + 0.008680538274347782, + 0.025832947343587875, + 0.013792874291539192, + 0.02441401407122612, + 0.0043159243650734425, + 0.0041524688713252544, + -0.01904432103037834, + -0.012561740353703499, + 0.0034430017694830894, + -0.00523058045655489, + 0.02243863418698311, + -0.017861876636743546, + -0.011914873495697975, + -0.005317525006830692, + -0.029519394040107727, + 0.009723871946334839, + 0.005494891665875912, + -0.001530223060399294, + -0.0569799430668354, + -0.011796628125011921, + -0.04921753704547882, + 0.0457119345664978, + -0.04454340040683746, + 0.0008868338190950453, + 0.01129582803696394, + 0.035946331918239594, + -0.01624818705022335, + 0.007811093237251043, + 0.05035825073719025, + 0.01284691784530878, + -0.014071096666157246, + -0.007630248554050922, + -0.006499970331788063, + -0.010377694852650166, + -0.016498586162924767, + -0.00890311598777771, + 0.004441124387085438, + -0.0009172643767669797, + -0.029686328023672104, + -0.06838706135749817, + -0.009049182757735252, + 0.020713655278086662, + -0.01843223161995411, + 0.022369079291820526, + 0.011462762020528316, + -0.027224058285355568, + -0.019781609997153282, + 0.03032623790204525, + 0.027669215574860573, + -0.0007994545740075409, + -0.07000074535608292, + 0.018140098080039024, + -0.002923073712736368, + 0.00205536768771708, + -0.011629695072770119, + 0.018571343272924423, + -0.00025996402837336063, + 0.0025179125368595123, + -0.027850059792399406, + 0.010377694852650166, + -0.02079712226986885, + 0.017361076548695564, + 0.008284071460366249, + 0.026542413979768753, + -0.017667120322585106, + -0.05695211887359619, + 0.014370185323059559, + 0.013716363348066807, + 0.012102672830224037, + -0.03352579474449158, + -0.020324144512414932, + 0.019336454570293427, + 0.022730767726898193, + 0.027516191825270653, + -0.04109344258904457, + -0.001968423370271921, + -0.01889129914343357, + -0.02161787822842598, + 0.030214950442314148, + 0.018710454925894737, + 0.02075538970530033, + 0.030270593240857124, + 0.043180111795663834, + 0.0005068863974884152, + -0.02666761353611946, + 0.04707522690296173, + 0.019545121118426323, + -0.016025608405470848, + -0.02716841548681259, + 0.006666903384029865, + 0.011469717137515545, + -0.0035960241220891476, + 0.0023092457558959723, + 0.00760242622345686, + 0.01815401017665863, + 0.003401268506422639, + -0.011358428746461868, + -0.013479873538017273, + -0.02216041274368763, + 0.0008981365826912224, + 0.01788969896733761, + -0.011963562108576298, + 0.00927176047116518, + 0.014634496532380581, + 0.016192542389035225, + 0.02402450144290924, + 0.01691592112183571, + 0.007539826445281506, + 0.015566541813313961, + 0.009543027728796005, + 0.013500740751624107, + 0.05080340430140495, + 0.028684725984930992, + -0.005338391754776239, + -0.020713655278086662, + 0.002297073369845748, + 0.014940541237592697, + 0.028907304629683495, + -0.004145513288676739, + 0.02935246005654335, + 0.006858181674033403, + 0.002399667864665389, + 0.009236983023583889, + -0.023036811500787735, + 0.012582606635987759, + -0.0036586241330951452, + -0.01967032253742218, + 0.016665520146489143, + 0.009264805354177952, + 0.01765321008861065, + -0.0032169462647289038, + -0.004688046872615814, + 0.039479754865169525, + -0.006906870286911726, + -0.012074850499629974, + 0.028601258993148804, + -0.03583504259586334, + -0.013702452182769775, + -0.019419921562075615, + 1.2742802027787548e-5, + 0.006148714572191238, + -0.024984369054436684, + -0.007240737322717905, + 0.0035995019134134054, + -0.004329835530370474, + -0.013959807343780994, + 0.0013450313126668334, + 0.011254094541072845, + -0.006186970043927431, + -0.00019236469233874232, + -0.005411425139755011, + -0.016582053154706955, + -0.007755448576062918, + 0.047019582241773605, + -0.012951251119375229, + -0.0069103483110666275, + -0.02558254636824131, + 0.01761147566139698, + 0.0009929060470312834, + 0.0072546484880149364, + -0.012791273184120655, + 0.02640330232679844, + -0.024678325280547142, + 0.023064633831381798, + -0.015288319438695908, + -0.010913272388279438, + -0.005199280567467213, + -0.01423107460141182, + -0.0012450451031327248, + 0.026138991117477417, + 0.047409091144800186, + -0.01866872049868107, + 0.005119291599839926, + -0.013375540263950825, + -0.014634496532380581, + -0.00020768865942955017, + 0.013591162860393524, + 0.003978579770773649, + 0.00047819470637477934, + 0.03992491215467453, + 0.007811093237251043, + -0.009104827418923378, + 0.01236002892255783, + -0.006461714394390583, + -0.010795027948915958, + 0.001552828587591648, + -0.025707747787237167, + 0.0011780979111790657, + -0.0027022347785532475, + 0.00808931514620781, + 0.011949650943279266, + -0.04537807032465935, + -0.05742509663105011, + -0.0017484537092968822, + -0.017166320234537125, + 0.01162273995578289, + -0.0065138814970850945, + -0.04167770966887474, + -0.021687433123588562, + -0.018334854394197464, + -0.014676230028271675, + 0.014690141193568707, + -0.01951729878783226, + -0.014690141193568707, + -0.007901515811681747, + 0.010586361400783062, + -0.004058568738400936, + -0.023732367902994156, + -0.0036586241330951452, + -0.021826544776558876, + -0.0424567349255085, + 0.002869168296456337, + -0.008965715765953064, + -0.020268499851226807, + -0.01066982839256525, + 0.029380282387137413, + -0.026486769318580627, + -0.03338668495416641, + -0.013472918421030045, + 0.0007716323598288, + 0.0016032564453780651, + 0.013584207743406296, + -0.028823837637901306, + 0.008604026399552822, + 0.019781609997153282, + 0.029213348403573036, + 0.008930938318371773, + 0.0071433596312999725, + -0.01555263064801693, + 0.035167306661605835, + 0.008722271770238876, + 0.021979566663503647, + 0.001740628737024963, + 0.0023231569211930037, + -0.013514651916921139, + -0.013375540263950825, + 0.026152903214097023, + 0.02040761150419712, + 0.011713162064552307, + 0.0039055466186255217, + 0.03385966271162033, + 0.024441834539175034, + 0.008478826843202114, + 0.006319125648587942, + 0.028239570558071136, + 0.022229967638850212, + 0.006360859144479036, + 0.010057738982141018, + 0.03347015008330345, + -0.014898807741701603, + -0.009501294232904911, + 0.012332206591963768, + 0.012394806370139122, + -0.029185526072978973, + -0.0042359353974461555, + -0.031077438965439796, + 0.023162012919783592, + 0.009842116385698318, + 0.005870492197573185, + -0.03266330808401108, + 0.012992984615266323, + 0.014300629496574402, + 0.013229473493993282, + -0.01912778802216053, + -0.004896713886409998, + 0.011928784660995007, + 0.0026448513381183147, + 0.0019301676657050848, + -0.008757049217820168, + 0.03847815468907356, + 0.01620645262300968, + 0.04000837728381157, + -0.0374765545129776, + -0.027502281591296196, + 0.015441341325640678, + -0.04498855769634247, + 0.016651608049869537, + 0.012283517979085445, + 0.020365877076983452, + 0.0003243029641453177, + 0.020964056253433228, + 0.005675736349076033, + 0.03260766342282295, + -0.015371786430478096, + -0.01139320619404316, + 0.007150314748287201, + 0.00892398227006197, + -0.017486276105046272, + -0.011379295028746128, + -0.005174936261028051, + -0.008402315899729729, + -0.012777362018823624, + -0.006562570109963417, + 0.005028869491070509, + 0.007790226489305496, + -0.007157270330935717, + 0.007943248376250267, + -0.030354060232639313, + -0.03004801645874977, + -0.010329005308449268, + 0.013959807343780994, + -0.004858457949012518, + 0.02620854787528515, + 2.5159562937915325e-5, + 0.009814294055104256, + -0.026528503745794296, + -0.023189835250377655, + -0.025053923949599266, + 0.006879047956317663, + -0.02842041477560997, + 0.019503388553857803, + -0.007991937920451164, + 0.03266330808401108, + -0.01059331651777029, + 0.02075538970530033, + 0.00797107070684433, + 0.006409547757357359, + -0.043291401118040085, + -0.03875637799501419, + 0.028907304629683495, + 0.008402315899729729, + -0.003717746352776885, + -0.02246645651757717, + -2.7387513910070993e-5, + -0.031466949731111526, + -0.03730962052941322, + 0.014759697020053864, + 0.014857074245810509, + -0.007136404048651457, + -0.014801430515944958, + -0.020504988729953766, + -0.004820202477276325, + 0.027710948139429092, + -0.003088268218562007, + -0.009494338184595108, + -0.020518900826573372, + 0.016276009380817413, + 0.03666970878839493, + 0.009452604688704014, + 0.029769793152809143, + -0.02367672324180603, + 0.02753010392189026, + -0.04509984701871872, + 0.038116466253995895, + -0.01982334442436695, + 0.03255201876163483, + -0.012200050987303257, + 0.005202758125960827, + -0.02581903524696827, + -0.0009703005198389292, + -0.04070393368601799, + -0.028100458905100822, + -0.0019353843526914716, + -0.014057185500860214, + 0.013166873715817928, + -0.006409547757357359, + 0.016929831355810165, + 0.011407117359340191, + 0.003853379748761654, + 0.02718232572078705, + 0.029018593952059746, + -0.0073172482661902905, + 0.011782717891037464, + 0.028712548315525055, + 0.000849882373586297, + 0.016707252711057663, + -0.030966149643063545, + 0.014801430515944958, + 0.013730274513363838, + -0.02064410038292408, + 0.030743572860956192, + -0.004900191444903612, + -0.035556819289922714, + 0.00016106467228382826, + -0.020115477964282036, + -0.0035108185838907957, + 0.015385697595775127, + -0.0005968739278614521, + -0.028086548671126366, + 0.022132590413093567, + -0.00237184576690197, + 0.006868614815175533, + 0.008131048642098904, + 0.004030746407806873, + 0.0023840179201215506, + -0.02441401407122612, + 0.018376586958765984, + -0.043291401118040085, + -0.02523477002978325, + 0.0009676921763457358, + -0.005293180700391531, + -0.00616262573748827, + -0.021687433123588562, + 0.0030395793728530407, + -0.0013502479996532202, + 0.006204358767718077, + -0.014982274733483791, + -0.029519394040107727, + 0.009515205398201942, + 0.018571343272924423, + 0.005846147425472736, + 0.019503388553857803, + -0.004135080147534609, + 0.007964115589857101, + 0.006350425537675619, + 0.007428537122905254, + 0.010231628082692623, + 0.0004405912186484784, + 0.010252494364976883, + -0.018223565071821213, + 0.005585314240306616, + -0.015997786074876785, + -0.018181832507252693, + -0.025860769674181938, + 0.01951729878783226, + -0.05859363079071045, + 0.0025109569542109966, + -0.0002934376534540206, + 0.00961953867226839, + 0.015093564055860043, + -0.005435769446194172, + 0.0017823621165007353, + 0.013006895780563354, + 0.004848024807870388, + 0.038311220705509186, + -0.0065764812752604485, + -0.0013119924115017056, + -0.004027268849313259, + 0.016860276460647583, + 0.00024170568212866783, + 0.040648289024829865, + -0.054253362119197845, + 0.03288588300347328, + 0.01082980539649725, + 0.0014137174002826214, + 0.004907147027552128, + 0.013020806945860386, + -0.027265792712569237, + -0.002394451294094324, + -0.003293457441031933, + -0.031550418585538864, + -0.005307091865688562, + -0.012784318067133427, + 0.015107475221157074, + 9.770387259777635e-5, + -0.008325804024934769, + -0.030381882563233376, + -0.04000837728381157, + -0.03717051073908806, + -0.0013432924170047045, + -0.0056235697120428085, + -0.035473354160785675, + 0.009431738406419754, + 0.009264805354177952, + 0.016303831711411476, + 0.033136285841464996, + -0.025165213271975517, + 0.03981362283229828, + 0.00610350351780653, + -0.01590040884912014, + -0.011699250899255276, + -0.002505740150809288, + 0.037420909851789474, + -0.0006538225570693612, + 0.030687928199768066, + -0.0034656075295060873, + -0.00743549270555377, + -0.020268499851226807, + 0.010057738982141018, + -0.008144959807395935, + 0.00106680893804878, + -0.0004012488352600485, + 0.008610982447862625, + 0.00795020442456007, + -0.052500560879707336, + -0.011900962330400944, + -0.022730767726898193, + -0.008193648420274258, + -0.014606674201786518, + -0.013820696622133255, + 0.008374493569135666, + -0.020741477608680725, + -0.014578851871192455, + 0.016164720058441162, + 0.011121938936412334, + -0.029602861031889915, + -0.029714148491621017, + -0.021979566663503647, + -0.005213191732764244, + -0.006305214483290911, + 0.030103661119937897, + -0.016164720058441162, + 0.007014681585133076, + -0.023315034806728363, + -0.024052323773503304, + 0.0007464184309355915, + -0.0009450866491533816, + -0.0025944237131625414, + 0.004378524608910084, + 0.01506574172526598, + 0.0070425039157271385, + -0.02549908123910427, + 0.0012441757135093212, + 0.016429031267762184, + 0.008604026399552822, + 0.007873693481087685, + 0.0192808099091053, + -0.010725472122430801, + -0.008548382669687271, + -0.04843851551413536, + 0.00045385025441646576, + -0.0029995848890393972, + -0.02434445731341839, + 0.022536011412739754, + 0.03188428282737732, + -0.007400715257972479, + -0.0065764812752604485, + 0.0037594798486679792, + 0.012262650765478611, + 0.01889129914343357, + -0.02510956861078739, + -0.012179184705018997, + -0.00013704625598620623, + -0.023189835250377655, + 0.01659596525132656, + 0.034583039581775665, + 0.008937893435359001, + -0.017987076193094254, + -0.022257789969444275, + 0.026778902858495712, + -0.014439741149544716, + -0.013577251695096493, + 0.0013241645647212863, + 0.0019649455789476633, + -0.0002258383174194023, + 0.02177090011537075, + -0.02103361114859581, + -0.01788969896733761, + -0.0009172643767669797, + 0.0201433002948761, + 0.01780623197555542, + -0.017945343628525734, + -0.02662588097155094, + -0.01320165116339922, + -0.006927737034857273, + -0.02733534760773182, + -0.009202204644680023, + -0.060986343771219254, + -0.003630802035331726, + -0.014843164011836052, + 0.030854860320687294, + -0.010120338760316372, + -0.02421925775706768, + 0.009654316119849682, + 0.002394451294094324, + 0.003403007285669446, + -0.004555891267955303, + 0.0038638131227344275, + 0.014745785854756832, + 0.02803090400993824, + 0.005404469557106495, + 0.01951729878783226, + -0.010349872522056103, + -0.021005788818001747, + 0.007727626245468855, + -0.002006678842008114, + -0.03274677321314812, + 0.01102456171065569, + 0.006917303893715143, + 0.01047507207840681, + -0.010989783331751823, + -0.01791752129793167, + 0.03705922141671181, + -0.029575038701295853, + -0.019378188997507095, + -0.023384589701890945, + -0.030465349555015564, + -0.0028309125918895006, + 0.0061730588786304, + -0.002980457153171301, + -0.025220857933163643, + 0.0028083070646971464, + -0.0019892898853868246, + -0.006903392728418112, + -0.019503388553857803, + 0.013938941061496735, + -0.006343469955027103, + 0.010753294453024864, + 0.01594214141368866, + -0.008736182935535908, + 0.014662318862974644, + -0.014996185898780823, + -0.0131599185988307, + -0.005988736636936665, + -0.0183070320636034, + -0.021061433479189873, + 0.01377896312624216, + 0.0036968798376619816, + -0.006002647802233696, + 0.011615783907473087, + -0.014801430515944958, + -0.006360859144479036, + 0.02103361114859581, + 0.00599569221958518, + 0.0015250063734129071, + 0.015803031623363495, + 0.01152536179870367, + 0.049356650561094284, + 0.008054537698626518, + -0.01648467592895031, + -0.013090362772345543, + -0.00669820373877883, + 0.007303337100893259, + 0.011080206371843815, + 0.01990681141614914, + 0.016971563920378685, + -0.02259165607392788, + 0.005018435884267092, + -0.025846857577562332, + 0.007379848510026932, + 0.049662694334983826, + -0.004298535641282797, + 0.010252494364976883, + 0.013236429542303085, + 0.04868891462683678, + -0.02402450144290924, + -0.00164759811013937, + -0.024525301530957222, + -0.0076511153019964695, + -0.011066295206546783, + -0.015761297196149826, + 0.008263204246759415, + 0.022257789969444275, + 0.005296658258885145, + -0.026375479996204376, + 0.028323037549853325, + 0.002615290228277445, + 0.01901649869978428, + -0.008847471326589584, + 0.014676230028271675, + 0.01756974309682846, + -0.025053923949599266, + 0.03102179430425167, + -0.03296935185790062, + -0.004712391644716263, + -0.009730827063322067, + -0.03032623790204525, + 0.026180725544691086, + -0.020045921206474304, + 0.031939927488565445, + -0.03079921565949917, + -0.0166794303804636, + -0.004670658148825169, + -0.004340269137173891, + -0.005738336592912674, + -0.02538779191672802, + -0.005651392042636871, + -0.0166794303804636, + 0.02417752332985401, + -0.01750018633902073, + 0.022967256605625153, + 0.010120338760316372, + -0.001971901161596179, + 0.008548382669687271, + -0.002418795833364129, + 0.004093346651643515, + 0.002164917765185237, + -0.007428537122905254, + 0.004298535641282797, + -0.007456359453499317, + -0.0263198371976614, + 0.01376505196094513, + 0.02266121283173561, + -0.024274902418255806, + -0.007880648598074913, + -0.0024396623484790325, + 0.02150658890604973, + 0.007915426045656204, + -0.0009268283029086888, + 0.007303337100893259, + 0.003215207252651453, + 0.0031699961982667446, + 0.015441341325640678, + 0.0015450036153197289, + -0.0012485228944569826, + 0.02352370135486126, + -0.027710948139429092, + 0.009591716341674328, + -0.009452604688704014, + 0.009570850059390068, + 0.007491137366741896, + 0.004340269137173891, + 0.03491690754890442, + 0.002180567942559719, + 0.007706759497523308, + 0.006506925914436579, + 0.000960736651904881, + -0.019141700118780136, + 0.04621273651719093, + 0.01581694185733795, + 0.027613570913672447, + -0.020616278052330017, + -0.0213396567851305, + 0.005387080833315849, + -0.016804631799459457, + 0.015677830204367638, + 0.008736182935535908, + 0.006990337278693914, + 0.028448237106204033, + 0.035862863063812256, + 0.02344023436307907, + 0.005922658834606409, + -0.015149207785725594, + -0.009431738406419754, + 0.007678937632590532, + -0.011254094541072845, + -0.01189400628209114, + -0.00660082558169961, + -0.014314540661871433, + -0.006489536724984646, + -0.003270851681008935, + -0.007035548333078623, + -0.018766099587082863, + -0.010516805574297905, + 0.012144406326115131, + 0.020936233922839165, + 0.01096196100115776, + -0.02954721637070179, + 0.0147318746894598, + -0.005720947403460741, + 0.03235726058483124, + 0.008311893790960312, + 0.008019760251045227, + -0.01222787331789732, + 0.00010297488188371062, + 0.00917438231408596, + 0.02177090011537075, + -0.009654316119849682, + 0.027265792712569237, + 0.0051575470715761185, + -0.02005983330309391, + 0.020087655633687973, + -0.01531614176928997, + 0.02430272474884987, + -0.007609381806105375, + -0.006906870286911726, + -0.014884896576404572, + -0.004507202655076981, + -0.026041613891720772, + 0.010704605840146542, + -0.004503724630922079, + 0.0015876063844189048, + 0.0032065128907561302, + -0.013890251517295837, + 0.0003497342113405466, + -0.009800382889807224, + 0.027752680703997612, + -0.027669215574860573, + 0.006573003716766834, + 0.018320942297577858, + 0.005442725028842688, + -0.0001944296236615628, + 0.01487098541110754, + -0.0043854801915585995, + -0.014398007653653622, + -0.02655632607638836, + -0.0446268692612648, + 0.011532316915690899, + 0.014704052358865738, + -0.007804137654602528, + -0.008624893613159657, + -0.0093691386282444, + 0.010683738626539707, + 0.00653127022087574, + -0.02791961468756199, + 0.0073172482661902905, + 0.008972671814262867, + -0.005894836504012346, + -0.011866183951497078, + -0.013069495558738708, + -0.02904641628265381, + -0.01222787331789732, + 0.041232556104660034, + 0.021256189793348312, + -0.02662588097155094, + 0.010016005486249924, + 0.020588455721735954, + -0.022647300735116005, + -0.030882682651281357, + -0.014314540661871433, + 0.0049627916887402534, + 0.028740370646119118, + 0.026333747431635857, + -0.01741672120988369, + -0.014314540661871433, + 0.010391606017947197, + 0.036252375692129135, + 0.02153441123664379, + 0.00020410219440236688, + -0.012339162640273571, + -0.00022996818006504327, + -0.024817435070872307, + 0.0006194795132614672, + 0.007880648598074913, + -0.010989783331751823, + 0.03079921565949917, + -0.009626493789255619, + -0.006837314926087856, + -0.0015110952081158757, + 0.009779516607522964, + -0.028100458905100822, + 0.029102060943841934, + 0.011142806150019169, + 0.01698547601699829, + -0.012123540043830872, + 0.013848518952727318, + -0.0027300571091473103, + -0.0017006342532113194, + 0.014091962948441505, + 0.02421925775706768, + 0.023189835250377655, + -0.004875847138464451, + 0.0013502479996532202, + 0.008019760251045227, + -0.043680913746356964, + -0.02254992350935936, + 0.04351397976279259, + -0.019072143360972404, + 0.005380125250667334, + -0.04821593686938286, + 0.013187739998102188, + 0.02846214920282364, + 0.03344232961535454, + 0.02324547991156578, + -0.001290256273932755, + 0.0147318746894598, + -0.0019284287700429559, + 0.02798917144536972, + -0.01269389595836401, + 1.617982707102783e-5, + -0.01448147464543581, + -0.0015797814121469855, + 0.008868338540196419, + 0.00865271594375372, + 0.01672116480767727, + -0.022563833743333817, + 0.012631295248866081, + 0.010739383287727833, + 0.029296815395355225, + -0.0065277921967208385, + -0.006086114328354597, + 0.02395494654774666, + -0.00019127788254991174, + 0.008624893613159657, + 0.006732981186360121, + 0.008242337964475155, + -0.00999513827264309, + -0.0031960795167833567, + -0.0061313253827393055, + 0.0004777599824592471, + -0.01521876361221075, + -0.009306537918746471, + 0.002159701194614172, + 0.016609875485301018, + 0.020852766931056976, + 0.019725965335965157, + -0.04404260218143463, + 0.004395913332700729, + -0.008158870972692966, + 0.013354673981666565, + -0.016957653686404228, + -0.042122866958379745, + -0.02744663693010807, + -0.026375479996204376, + -0.01152536179870367, + 0.0277248602360487, + -0.021019700914621353, + -0.009264805354177952, + 0.03102179430425167, + 0.02149267867207527, + -0.023454146459698677, + 0.002210129052400589, + -0.005814847536385059, + 0.00657995929941535, + -0.00029821961652487516, + -0.023774102330207825, + 0.00024105359625536948, + -0.00853447150439024, + 0.011574050411581993, + -0.005463591776788235, + -0.021158810704946518, + 0.010036871768534184, + -0.009473471902310848, + -0.001381548005156219, + -0.001489359186962247, + 0.000296045996947214, + 0.010815895162522793, + 0.011261050589382648, + -0.0206858329474926, + 0.030214950442314148, + 0.019406011328101158, + 0.02118663303554058, + 0.0037281797267496586, + 0.021882189437747, + 0.013125140219926834, + -0.017987076193094254, + -0.004948880523443222, + -0.02270294539630413, + 0.017528008669614792, + 0.008604026399552822, + -0.004006402101367712, + -0.04610144719481468, + 0.02029632218182087, + 0.004256802145391703, + -0.014175429940223694, + -0.0077137150801718235, + -0.03416570648550987, + 0.006385203450918198, + -0.01092718355357647, + -0.011734028346836567, + 0.011601872742176056, + -0.012895607389509678, + 0.021631790325045586, + -0.014098918996751308, + 0.01583085209131241, + 0.02538779191672802, + -0.006736459210515022, + -0.025012191385030746, + -0.0008242337498813868, + -0.016665520146489143, + -0.013187739998102188, + -0.00618349201977253, + -0.01955903321504593, + -0.0029439404606819153, + -0.0018780010286718607, + -0.011407117359340191, + -0.002267512260004878, + 0.0041524688713252544, + -0.01878000982105732, + 0.004058568738400936, + 0.015510897152125835, + -0.023273302242159843, + -0.006155670154839754, + -0.02476179040968418, + 0.014258896932005882, + -0.033804018050432205, + 0.004809769336134195, + 0.011247139424085617, + -0.000215731022763066, + -0.016943741589784622, + 0.008541426621377468, + -0.021311834454536438, + 0.026723258197307587, + -0.011365383863449097, + 0.024441834539175034, + 0.007282470818608999, + -0.027418814599514008, + -0.02142312191426754, + 0.02138138934969902, + 0.014551030471920967, + -0.014342362992465496, + -0.035473354160785675, + -0.005818325560539961, + 0.02679281495511532, + 0.028629081323742867, + 0.0036690575070679188, + 0.012269606813788414, + -0.013751140795648098, + 0.008388404734432697, + -0.015010097064077854, + 0.0064443256705999374, + -0.007491137366741896, + 0.017486276105046272, + -0.024274902418255806, + 0.005981781054288149, + -0.019962456077337265, + -0.010607227683067322, + 0.013876340351998806, + -0.006670381408184767, + 0.0020466733258217573, + 0.00783195998519659, + 0.0569799430668354, + -0.01659596525132656, + 0.005032347049564123, + -0.01521876361221075, + 0.022021301090717316, + 0.009257849305868149, + 0.0025631235912442207, + -0.019419921562075615, + -0.0015719564398750663, + -0.030966149643063545, + 0.002389234723523259, + -0.007512004114687443, + 0.027710948139429092, + -0.009890804998576641, + 0.0034082240890711546, + 0.03285806253552437, + 0.01471796352416277, + -0.025721658021211624, + 0.0061730588786304, + -0.028406504541635513, + -0.005773114040493965, + -0.0026744124479591846, + -0.016387296840548515, + -0.008492738008499146, + -0.02410796843469143, + 0.03221815079450607, + -0.020824944600462914, + -0.00568616995587945, + 0.001763234264217317, + 0.009216115809977055, + 0.0009798643877729774, + 0.019739877432584763, + 0.03583504259586334, + -0.03004801645874977, + 0.009097871370613575, + 0.006437370087951422, + -0.0057870252057909966, + 0.0009155254811048508, + -0.03641930967569351, + -0.0010059477062895894, + 0.02523477002978325, + -0.034972552210092545, + -0.01784796454012394, + 0.003717746352776885, + 0.004701958037912846, + -0.012860829010605812, + 0.02057454362511635, + -0.022369079291820526, + -0.015232674777507782, + 0.029185526072978973, + 0.011261050589382648, + -0.01574738696217537, + 0.012826051563024521, + -0.02060236595571041, + 0.011914873495697975, + 0.018877387046813965, + -0.032440729439258575, + 0.014196296222507954, + -0.026876281946897507, + -0.0029109015595167875, + 0.0020153732039034367, + -0.013855474069714546, + -0.014634496532380581, + -0.014008496887981892, + 0.01174098439514637, + -0.003312585176900029, + -0.0016023869393393397, + -0.00913264974951744, + -0.019447743892669678, + 0.00868749339133501, + 0.01866872049868107, + -0.026250280439853668, + -0.007873693481087685, + 0.006305214483290911, + -0.011873139999806881, + 0.0008477087831124663, + -0.023356767371296883, + -0.0051958030089735985, + 9.26502252696082e-6, + 0.0006194795132614672, + 0.01691592112183571, + -0.01726369746029377, + 0.00563748087733984, + -0.003529946319758892, + -0.009765605442225933, + 0.013069495558738708, + -0.0004634141514543444, + 0.008304937742650509, + -0.015872586518526077, + 0.0066773369908332825, + -0.0057348585687577724, + -0.001994506688788533, + -0.0013919812627136707, + -0.004308968782424927, + -0.014690141193568707, + 0.01663769781589508, + -0.005933091975748539, + 0.006350425537675619, + -0.014523208141326904, + 0.012673028744757175, + 0.017361076548695564, + -0.004722824785858393, + 0.027891792356967926, + 0.0062321810983121395, + 0.0015606536762788892, + 0.0008490129839628935, + 0.004792380146682262, + 0.006618214771151543, + -0.011706206016242504, + 0.006110458634793758, + -0.022758590057492256, + 0.04145513474941254, + 0.010676783509552479, + 0.012513050809502602, + 0.004194202367216349, + -0.0002712668210733682, + 0.004225502256304026, + -0.008478826843202114, + 0.028684725984930992, + 0.02627810277044773, + 0.005630525294691324, + -0.013438140973448753, + 0.008861382491886616, + -0.012304384261369705, + -0.007595470640808344, + 0.0005586183397099376, + 0.0037733910139650106, + 0.0015684786485508084, + 0.009445649571716785, + 0.0123461177572608, + 0.02216041274368763, + -0.0010198588715866208, + -0.0015467425109818578, + 0.0009955144487321377, + 0.027752680703997612, + -0.010308139026165009, + 0.012464362196624279, + 0.004138557706028223, + 0.024274902418255806, + 0.04777077957987785, + 0.00421854667365551, + -0.020658010616898537, + 0.006406070198863745, + -0.01951729878783226, + 0.011198450811207294, + -0.002738751471042633, + 0.007525915279984474, + -0.0007477226317860186, + 0.005140158347785473, + -0.014119785279035568, + 0.011142806150019169, + 0.010273360647261143, + -0.018473966047167778, + 0.01884956657886505, + 0.01865481026470661, + -0.01975378766655922, + -0.009257849305868149, + -0.0005107988836243749, + -0.011831406503915787, + -0.006399114616215229, + 0.00526883639395237, + -0.014064140617847443, + -0.015719564631581306, + -0.010175983421504498, + -0.0072059594094753265, + -0.023064633831381798, + -0.010600272566080093, + 0.022842057049274445, + -0.03405441716313362, + -0.0007881518104113638, + -0.010175983421504498, + -0.012005295604467392, + 0.0030969628132879734, + -0.026778902858495712, + -0.004475902300328016, + -0.012304384261369705, + -0.020630188286304474, + -0.021993478760123253, + -0.001288517378270626, + -0.007129448466002941, + 0.0035716798156499863, + 0.002083190018311143, + 0.005620091687887907, + 0.005143635906279087, + -0.0227446798235178, + -0.014857074245810509, + 0.024706145748496056, + -0.006193925626575947, + 0.008812693879008293, + 0.018167920410633087, + -0.00047384746721945703, + 0.00808931514620781, + 0.015413518995046616, + -0.005915703251957893, + -0.009264805354177952, + 0.0005481850239448249, + -0.0011676645372062922, + 0.017472365871071815, + -0.0057661584578454494, + 0.007755448576062918, + -0.020198944956064224, + -0.027710948139429092, + -0.0072546484880149364, + 0.010600272566080093, + -0.004604580346494913, + 0.004621969070285559, + -0.008958760648965836, + -0.0024622681085020304, + 0.0049627916887402534, + 0.020964056253433228, + -0.0020345011726021767, + 0.02216041274368763, + 0.006865137256681919, + 0.010482028126716614, + 0.011219317093491554, + 0.006670381408184767, + 0.007692848797887564, + 0.025652103126049042, + 0.028879482299089432, + -0.02192392200231552, + -0.0033108461648225784, + 0.009772560559213161, + -0.022285612300038338, + 0.003048273967579007, + 0.0063330368138849735, + -0.005234058480709791, + 0.002003201050683856, + -0.004653268959373236, + 0.0002790918224491179, + 0.008506649173796177, + -0.015510897152125835, + -0.004107257816940546, + -0.006882525980472565, + 0.0012893867678940296, + 0.01640120893716812, + -0.006673858966678381, + -0.003349101869389415, + -0.003135218285024166, + -0.0056548696011304855, + -0.024594858288764954, + 0.012784318067133427, + 0.0021214454900473356, + -0.016262097284197807, + 0.005585314240306616, + 0.014258896932005882, + -0.005971347447484732, + -0.00950824934989214, + 0.003180429572239518, + -0.0005738336476497352, + 0.013591162860393524, + -0.01640120893716812, + 0.008478826843202114, + 0.015302230603992939, + 0.015010097064077854, + 0.03416570648550987, + 0.005307091865688562, + 0.020226767286658287, + 0.006472148001194, + -0.01955903321504593, + -0.007637204136699438, + 0.019197342917323112, + 0.011386250145733356, + -0.0032638960983604193, + 0.022174322977662086, + -0.006486059166491032, + -0.01800098828971386, + -0.0033821407705545425, + -0.029268993064761162, + -0.008047581650316715, + -0.0010363783221691847, + -3.523968916852027e-5, + 0.006986859254539013, + -0.00783195998519659, + 0.00026061609969474375, + 0.014224118553102016, + -0.005536625161767006, + 0.0009503032779321074, + 0.016568142920732498, + 0.045545000582933426, + 0.028879482299089432, + -0.0013911118730902672, + -0.02001809887588024, + 0.017681032419204712, + -0.019155610352754593, + -0.026737170293927193, + 0.012318295426666737, + 0.0022901177871972322, + -0.02298116870224476, + 0.013257295824587345, + -0.010016005486249924, + 0.01090631727129221, + 0.007400715257972479, + -0.011288872919976711, + 0.0015067480271682143, + -0.002415318042039871, + 0.017708854749798775, + 0.0011511450866237283, + 0.007178137078881264, + -0.022953346371650696, + -0.008624893613159657, + 0.015427430160343647, + -0.006023514550179243, + -0.01127496175467968, + -0.004541980102658272, + 0.002006678842008114, + -0.025596458464860916, + -0.015469163656234741, + 0.001724109286442399, + 0.025443436577916145, + -0.0012172228889539838, + 0.002444879151880741, + -0.006771237123757601, + -0.007741537410765886, + 0.013069495558738708, + -0.001898867660202086, + 0.016623787581920624, + -0.022382989525794983, + -0.016554230824112892, + 0.0041837687604129314, + 0.007818048819899559, + 0.0173332542181015, + -0.01545525249093771, + -0.006785148289054632, + 0.008277115412056446, + -0.008576205000281334, + -0.001569348038174212, + 0.019809432327747345, + 0.004308968782424927, + -0.0013824173947796226, + 0.012151362374424934, + -0.03472215309739113, + -0.0058983140625059605, + 0.0029943683184683323, + -0.0034969074185937643, + -0.006378247868269682, + 0.014912718906998634, + -0.000243879301706329, + 0.005035825073719025, + -0.006298258900642395, + -0.010280316695570946, + -0.0010702867293730378, + 0.02655632607638836, + -0.0013806784991174936, + 0.007964115589857101, + -0.004399391356855631, + -0.017444543540477753, + 0.01640120893716812, + -0.00038864187081344426, + -0.006614736746996641, + 0.016192542389035225, + -0.0008785740938037634, + -0.0045176357962191105, + 0.006969470530748367, + 0.0017962731653824449, + -0.026389392092823982, + -0.0027544014155864716, + 0.006892959121614695, + 0.0008064101566560566, + -0.00843709334731102, + -0.004340269137173891, + -2.3148970285546966e-5, + 0.0039403242990374565, + -0.020463256165385246, + -0.004889758303761482, + 0.0077832709066569805, + 0.019252987578511238, + -0.0016823759069666266, + 0.0023092457558959723, + 0.010217716917395592, + -0.002024067798629403, + 0.003947279881685972, + 0.009410872124135494, + 0.005449680611491203, + 0.008388404734432697, + -0.007136404048651457, + 0.023732367902994156, + 0.003898591035977006, + 0.002077973447740078, + 0.016846364364027977, + -0.010982828214764595, + -0.008722271770238876, + 0.0036168908700346947, + -0.00516102509573102, + -0.00023866262927185744, + 0.011817495338618755, + -0.012944296002388, + 0.00010868061508517712, + 0.019002588465809822, + 0.0011285394430160522, + -0.006593869999051094, + -0.0038568575400859118, + -0.0023788013495504856, + -0.004503724630922079, + 0.009612582623958588, + 0.0006386073073372245, + 0.007470270618796349, + -0.025944236665964127, + 0.011747939512133598, + 0.022299522534012794, + 0.016748987138271332, + 0.022021301090717316, + -0.0008229296072386205, + -0.03934064507484436, + 0.012568695470690727, + -0.0002719188923947513, + 0.009035271592438221, + -0.003030885010957718, + -0.020616278052330017, + 0.025610368698835373, + 0.00911873858422041, + 0.015914319083094597, + 0.012666073627769947, + -0.011956606060266495, + -0.0014250201638787985, + -0.01737498678267002, + 0.018710454925894737, + 0.0002037761441897601, + 0.015872586518526077, + 0.011386250145733356, + -0.026931924745440483, + 0.0032830240670591593, + -0.016359476372599602, + -0.015441341325640678, + -0.0014441480161622167, + -0.012047029100358486, + 0.007943248376250267, + -0.012394806370139122, + 0.008172782137989998, + 0.01201225072145462, + -0.03305281698703766, + -0.004399391356855631, + 0.0048932358622550964, + -0.0031230461318045855, + 0.01609516330063343, + 0.003738613100722432, + -0.004131602123379707, + 0.010502894409000874, + 0.0004921058425679803, + 0.008930938318371773, + -0.003269112901762128, + -0.033414505422115326, + 0.017667120322585106, + 0.0057348585687577724, + -0.01843223161995411, + -0.005564447492361069, + -0.016415119171142578, + 0.007014681585133076, + -0.013744184747338295, + 0.005021913908421993, + -0.016582053154706955, + 0.01487098541110754, + -0.01448147464543581, + -0.0030674017034471035, + -0.0027022347785532475, + -0.01189400628209114, + 0.02181263454258442, + 0.049356650561094284, + 0.00642345892265439, + -0.008061492815613747, + 0.008701404556632042, + -0.005407947581261396, + 0.012839962728321552, + 0.0173332542181015, + -0.0049141026102006435, + 0.009675183333456516, + 0.0026170292403548956, + -0.024274902418255806, + 0.013486829586327076, + 0.014098918996751308, + -0.003898591035977006, + -0.01366767380386591, + -0.00456632487475872, + 0.032913707196712494, + -0.012763450853526592, + 0.012255695648491383, + 0.006357381120324135, + 0.006851226091384888, + 0.0023596733808517456, + 0.019141700118780136, + -0.008812693879008293, + -0.014043274335563183, + 0.016888098791241646, + -0.011567095294594765, + -0.030103661119937897, + -0.017945343628525734, + -0.01772276498377323, + 0.021437034010887146, + 0.008471870794892311, + 0.014029363170266151, + -0.0041420357301831245, + -0.00018214870942756534, + 0.022633390501141548, + -0.001213745097629726, + 0.004093346651643515, + -0.013938941061496735, + 0.01189400628209114, + -0.0014171951916068792, + 0.0040411800146102905, + 0.020588455721735954, + 0.01389720756560564, + -0.011094117537140846, + -0.009821250103414059, + -0.006305214483290911, + 0.018028810620307922, + -0.008207559585571289, + 0.008944849483668804, + -0.008464915677905083, + -0.005515758413821459, + 0.02044934406876564, + 0.005992214195430279, + -0.008854427374899387, + -0.005713991820812225, + 0.0018380065448582172, + 0.009480427019298077, + 0.015441341325640678, + 0.015677830204367638, + -0.011462762020528316, + 0.003190862713381648, + 0.01071156095713377, + 0.017528008669614792, + 0.002606595866382122, + 0.0032482461538165808, + -0.012638251297175884, + -0.034304820001125336, + -0.01811227574944496, + -0.003689924255013466, + 0.023662813007831573, + 0.0015667397528886795, + -0.0014606674667447805, + 0.031466949731111526, + -0.006861659232527018, + 0.02092232182621956, + -0.014690141193568707, + 0.014370185323059559, + 0.015135296620428562, + -0.005501847248524427, + -0.00806844886392355, + 0.03394312784075737, + -0.010739383287727833, + -0.0016545536927878857, + -0.00010955005564028397, + -0.024789612740278244, + -0.03347015008330345, + -0.005150591488927603, + 0.025985969230532646, + -0.04092651233077049, + 0.001764973159879446, + 0.009125693701207638, + -0.0015789119061082602, + 0.018752187490463257, + -0.002945679472759366, + -0.014592763036489487, + -0.011441894806921482, + 0.008430138230323792, + 0.030993971973657608, + 0.0053905583918094635, + 0.022647300735116005, + 0.0014085007132962346, + 0.011608828790485859, + -0.006079158745706081, + -0.03277459368109703, + -0.01487098541110754, + 0.0059991697780787945, + -0.008645759895443916, + 0.01628991961479187, + 0.0074494038708508015, + 0.0020171122159808874, + -0.005658347625285387, + 0.011963562108576298, + 0.026570236310362816, + -0.0018901732983067632, + -0.01152536179870367, + 0.0014067618176341057, + -0.008124093525111675, + 0.007512004114687443, + -0.013194696046411991, + 0.001078111701644957, + 0.027697037905454636, + 0.011344517581164837, + -0.004368091467767954, + -0.013632896356284618, + 0.0015423953300341964, + 0.017096765339374542, + 0.00905613787472248, + -0.025526901707053185, + 0.012791273184120655, + 0.001001600525341928, + -0.007331159431487322, + -0.021979566663503647, + 0.0005425336421467364, + -0.00995340570807457, + 0.013417273759841919, + 0.008638804778456688, + 0.009918627329170704, + 0.010913272388279438, + 0.009299582801759243, + -0.0201433002948761, + 0.010920228436589241, + 0.009904716163873672, + 0.0027839625254273415, + 0.0042533245868980885, + 0.005237536039203405, + 0.0058983140625059605, + -0.019225165247917175, + 0.015538719482719898, + 0.012116583995521069, + -0.016540320590138435, + 0.015427430160343647, + -0.008812693879008293, + 0.0037803465966135263, + -0.009257849305868149, + -0.020351966843008995, + -0.009452604688704014, + 0.030966149643063545, + 0.018209654837846756, + -0.0031439128797501326, + 0.019197342917323112, + -0.01149058435112238, + 0.008993538096547127, + -0.0019858120940625668, + -0.0009633449371904135, + 0.017361076548695564, + 0.01352856308221817, + -0.010349872522056103, + 0.0009276977507397532, + 0.005383602809160948, + 0.01059331651777029, + 0.006729503627866507, + 0.0007890212582424283, + 0.013688541017472744, + 0.015969963744282722, + 0.0020345011726021767, + -0.012631295248866081, + -0.00987689383327961, + -0.005807891953736544, + 0.008986582979559898, + -0.012276561930775642, + 0.0017841010121628642, + -0.01236002892255783, + 0.019739877432584763, + -0.0043854801915585995, + -0.012798229232430458, + 0.0035716798156499863, + -0.01679071970283985, + -0.0003901634190697223, + -0.0009442172013223171, + -0.002131878864020109, + -0.0041037797927856445, + 0.013869385235011578, + 0.007755448576062918, + 0.006381725426763296, + 0.007769359741359949, + 0.0006794711807742715, + 0.010558539070189, + 0.0053592585027217865, + -0.04323575645685196, + -0.021297922357916832, + 0.008847471326589584, + -0.011539272964000702, + -0.017541920766234398, + -0.009195249527692795, + -0.0038568575400859118, + -0.005206236150115728, + 0.030103661119937897, + -0.0013902423670515418, + 0.0007512004231102765, + -0.012026161886751652, + -0.0005738336476497352, + 0.010266405530273914, + -0.0004382002225611359, + 0.01975378766655922, + -0.0050253914669156075, + -0.0109410947188735, + 0.0022901177871972322, + -0.004093346651643515, + -0.017110675573349, + 0.006767759099602699, + 0.016429031267762184, + 0.012874740175902843, + -0.010781116783618927, + -0.018487876281142235, + -0.010169027373194695, + 0.008631848730146885, + -0.01389720756560564, + -0.006266959011554718, + 0.0015328313456848264, + -0.006851226091384888, + -0.020894499495625496, + 0.00020562372810672969, + 0.0025318234693259, + -0.026375479996204376, + 0.0015450036153197289, + -0.02510956861078739, + -0.03892330825328827, + -0.006287825759500265, + -0.015037919394671917, + 0.013375540263950825, + 0.026695435866713524, + 0.009890804998576641, + -0.00568616995587945, + -0.01424498576670885, + 0.014258896932005882, + -0.022577745839953423, + -0.008033671416342258, + -0.0076511153019964695, + 0.005234058480709791, + -0.004364613443613052, + -0.006176536437124014, + 0.009647361002862453, + -0.017472365871071815, + -0.024817435070872307, + -0.011852272786200047, + 0.007943248376250267, + -0.005056691821664572, + -0.0008390143630094826, + 0.01008556131273508, + 0.01010642759501934, + 0.022633390501141548, + -0.016429031267762184, + 0.013904162682592869, + -0.03814428672194481, + -0.015371786430478096, + -0.0031143517699092627, + -0.005018435884267092, + -0.0026135514490306377, + 0.013111229054629803, + -0.0019371232483536005, + 0.018126187846064568, + 0.003241290571168065, + 0.011379295028746128, + -0.02662588097155094, + -0.01990681141614914, + 0.0041698575951159, + 0.010412472300231457, + 0.00208492879755795, + 0.005174936261028051, + 0.006002647802233696, + -0.006920781452208757, + 0.003989013377577066, + 0.006419981364160776, + -0.01411283016204834, + -0.006976426113396883, + 0.012276561930775642, + -0.015107475221157074, + 0.0006246961420401931, + 0.007894559763371944, + -0.01415456272661686, + -0.01059331651777029, + -0.006847748067229986, + 0.015469163656234741, + 0.005550536327064037, + -0.002978718373924494, + -0.014523208141326904, + -0.01531614176928997, + -0.007226826157420874, + 0.0192808099091053, + -0.01652640849351883, + 0.0206858329474926, + 0.007324203848838806, + -0.014196296222507954, + -0.005150591488927603, + -0.016081253066658974, + 0.017055030912160873, + -0.003797735320404172, + 0.0010824588825926185, + -0.004524591378867626, + -0.0037351353093981743, + 0.012019206769764423, + -0.010370738804340363, + 0.01741672120988369, + -0.0166794303804636, + -0.03079921565949917, + -0.024928724393248558, + -0.014182385057210922, + -0.017945343628525734, + 0.014258896932005882, + 0.006830359343439341, + 0.01232525147497654, + 0.00890311598777771, + -0.013883296400308609, + -0.005321003030985594, + -0.011448850855231285, + -0.010294227860867977, + -0.005609658546745777, + -9.24872001633048e-5, + 0.001344161806628108, + -0.027613570913672447, + -0.011984428390860558, + 0.0007294642855413258, + 0.009216115809977055, + -0.02534605748951435, + -0.00904222670942545, + 0.008604026399552822, + -0.00113201723434031, + -0.012895607389509678, + -1.540547782497015e-5, + 6.64038525428623e-5, + 0.008207559585571289, + -0.01481534168124199, + -0.01745845377445221, + 0.006256525404751301, + -0.029908904805779457, + 0.0057557253167033195, + -0.016707252711057663, + -0.009988183155655861, + 0.009313493967056274, + 0.005282747093588114, + -0.012568695470690727, + -0.010488983243703842, + -0.030159305781126022, + -0.004521113354712725, + -0.02088058926165104, + -0.013598117977380753, + 0.005547058768570423, + 0.002533562481403351, + 0.004729780368506908, + 0.001554567483253777, + 0.022633390501141548, + 0.02118663303554058, + -0.008645759895443916, + -0.0010598533554002643, + 0.0014789258129894733, + 0.021826544776558876, + 0.019725965335965157, + -0.011309739202260971, + -0.012276561930775642, + -0.02798917144536972, + 0.014509296976029873, + 0.01022467203438282, + 0.020977966487407684, + -0.000204319556360133, + 5.321953722159378e-6, + 0.006360859144479036, + -0.03689228743314743, + 0.01897476613521576, + 0.0005055821966379881, + 0.004521113354712725, + 0.016554230824112892, + -0.0065451813861727715, + -0.012137451209127903, + 0.01399458572268486, + 0.01185922883450985, + 0.003363013034686446, + -0.011205405928194523, + 0.01487098541110754, + 0.011219317093491554, + -0.025220857933163643, + 0.007734581828117371, + 0.0023840179201215506, + 0.001994506688788533, + -0.005442725028842688, + -0.02138138934969902, + -0.02434445731341839, + -0.01761147566139698, + 0.022577745839953423, + 0.012582606635987759, + -0.01092718355357647, + 0.02538779191672802, + -0.010384649969637394, + 0.0023527180310338736, + 0.017138497903943062, + -0.008770960383117199, + -0.0197120551019907, + -0.006802537012845278, + 0.010287271812558174, + -0.01609516330063343, + 0.024316634982824326, + 0.026611970737576485, + -0.0024813958443701267, + 0.01423107460141182, + 0.006952081341296434, + 0.008040626533329487, + 0.0029926293063908815, + -0.010871538892388344, + 0.012735629454255104, + -0.023801924660801888, + 0.005992214195430279, + 0.004768035840243101, + -0.01000904943794012, + 0.0187382772564888, + 0.019002588465809822, + -0.004117690958082676, + -0.014022407121956348, + 0.003961191046983004, + -0.013194696046411991, + -0.030687928199768066, + -0.019155610352754593, + 0.016109075397253036, + 0.014286719262599945, + 0.007936293259263039, + 0.0282673928886652, + 0.01609516330063343, + -0.02200738899409771, + 0.015844764187932014, + 0.0010120338993147016, + -0.0206858329474926, + -0.004114213399589062, + 0.0017658426659181714, + 0.011831406503915787, + 0.01826529949903488, + 0.02472005784511566, + 0.017820142209529877, + -0.00866662710905075, + -0.023162012919783592, + -0.005209713708609343, + 0.017166320234537125, + -0.0012363506248220801, + 0.021756989881396294, + 0.0028604737017303705, + -0.014217163436114788, + -0.013813740573823452, + 0.002347501227632165, + 0.004037701990455389, + -0.006058291997760534, + -0.0166794303804636, + -0.017736677080392838, + 0.024358369410037994, + -0.012735629454255104, + 0.022257789969444275, + -0.005571403075009584, + 0.01761147566139698, + -0.012290473096072674, + -0.0004473293956834823, + -0.017778409644961357, + -0.010057738982141018, + 0.007929337210953236, + 0.0019179955124855042, + 0.012429584749042988, + 0.0023631511721760035, + -0.0009424783056601882, + 0.019197342917323112, + 0.008291026577353477, + 0.008110182359814644, + 0.015371786430478096, + -0.016693342477083206, + -0.013653762638568878, + 0.005828758701682091, + 0.004621969070285559, + 0.0019597287755459547, + 0.004027268849313259, + -0.017430631443858147, + 0.009403916075825691, + 0.02103361114859581, + -0.007567648310214281, + 0.007345070596784353, + -0.004785425029695034, + -0.004065524321049452, + -0.00618349201977253, + -0.004451557993888855, + 0.0018275731708854437, + 0.013361629098653793, + 0.019545121118426323, + -0.010412472300231457, + 0.009292627684772015, + -0.006593869999051094, + 0.0029352460987865925, + -0.011003694497048855, + -0.01176185067743063, + 0.013973718509078026, + -0.004260280169546604, + -0.012749540619552135, + 0.004555891267955303, + 0.022647300735116005, + 0.014078051783144474, + 0.006023514550179243, + -0.01343118492513895, + 0.020324144512414932, + -0.012179184705018997, + 0.004663702566176653, + 0.007644159719347954, + 0.0064964923076331615, + 0.003957713022828102, + 0.02558254636824131, + 0.023217657580971718, + -0.01617863029241562, + 0.01617863029241562, + -0.013688541017472744, + -0.006548658944666386, + 0.0015719564398750663, + 0.0008946587913669646, + 0.0029335070867091417, + -0.007219870574772358, + 0.006785148289054632, + 0.0005160155706107616, + 0.030604461207985878, + 0.014203252270817757, + -0.00016747682821005583, + 0.007755448576062918, + 0.007164225913584232, + -0.00034886476350948215, + 0.005185369402170181, + -0.00618349201977253, + 0.007699803914874792, + 0.007512004114687443, + 0.015719564631581306, + -0.005056691821664572, + 0.003036101581528783, + 0.024678325280547142, + 0.0025961624924093485, + 0.012081806547939777, + 0.009515205398201942, + 0.011970517225563526, + 0.005477502942085266, + 0.03274677321314812, + -0.01702720858156681, + -0.01691592112183571, + -0.005978303030133247, + 0.016582053154706955, + -0.02499827928841114, + -0.009403916075825691, + -0.006308692507445812, + 0.005494891665875912, + 0.014398007653653622, + 0.00024105359625536948, + -0.020741477608680725, + -0.009723871946334839, + 0.008444049395620823, + -0.026584148406982422, + -0.010621138848364353, + 0.0058044143952429295, + 0.018807832151651382, + -0.007091192528605461, + 0.00741462642326951, + -0.02391321212053299, + -0.002239690162241459, + -0.008332760073244572, + 0.009334360249340534, + 0.009466515854001045, + -0.013855474069714546, + -0.031939927488565445, + -0.03619673103094101, + -0.03502819687128067, + 0.014898807741701603, + -0.0036412354093044996, + 0.001044203294441104, + -0.00841622706502676, + -0.005988736636936665, + 0.006447803694754839, + -0.00995340570807457, + 0.012561740353703499, + -0.006712114904075861, + 0.009988183155655861, + -0.007658070884644985, + 0.013556385412812233, + -0.0025979015044867992, + -0.02224387787282467, + -0.0023631511721760035, + 0.0011285394430160522, + -0.021798722445964813, + 0.013250340707600117, + -0.011379295028746128, + 0.03013148345053196, + 0.024121880531311035, + -0.009869938716292381, + -0.03767130896449089, + -0.024831347167491913, + 0.0018553955014795065, + 0.009543027728796005, + -0.0008711838163435459, + -0.019406011328101158, + 0.012213962152600288, + -0.007372892927378416, + 0.001487620291300118, + -0.003023929428309202, + 0.0022466457448899746, + 0.0166794303804636, + -0.002477918053045869, + 0.009403916075825691, + -0.01769494265317917, + -0.01379982940852642, + -0.01044029463082552, + 0.004559369292110205, + -0.030882682651281357, + 0.0017597564728930593, + -0.02608334645628929, + 0.006225225515663624, + -0.005467069800943136, + 0.006538225803524256, + 0.004340269137173891, + -0.002636156976222992, + -0.0020414567552506924, + 0.012047029100358486, + -0.004135080147534609, + -0.0022796846460551023, + 0.03202339634299278, + 0.017124587669968605, + 0.021353567019104958, + -0.008826605044305325, + -0.001712806522846222, + -0.028253482654690742, + 0.014843164011836052, + -0.005394036415964365, + -0.00952216051518917, + 0.009285671636462212, + -0.009549982845783234, + 0.006955559365451336, + 0.014224118553102016, + 0.0015171814011409879, + 0.0073868040926754475, + 0.02659805864095688, + -0.008012804202735424, + -0.0022849012166261673, + -0.0025196513161063194, + 0.010607227683067322, + 0.024900902062654495, + 0.0009503032779321074, + -0.015177030116319656, + 0.002735273679718375, + 0.010155116207897663, + -0.004155946895480156, + 0.010349872522056103, + 0.01320165116339922, + 0.024386191740632057, + -0.0007220740080811083, + 0.016150807961821556, + 0.02733534760773182, + -0.003943802323192358, + -0.0292411707341671, + 0.003585590748116374, + -0.03561246395111084, + 0.021256189793348312, + 0.03157823905348778, + 0.014140652492642403, + -0.020866677165031433, + 0.0012502617901191115, + -0.005762680899351835, + 0.01327816303819418, + 0.0027057125698775053, + 0.005275791510939598, + -0.001029422739520669, + 0.004086391068994999, + 0.006159147713333368, + 0.014398007653653622, + -0.009647361002862453, + -0.0024396623484790325, + -0.018460053950548172, + -0.009362182579934597, + 0.00659039244055748, + -0.0030691404826939106, + 0.006694725714623928, + -0.01320165116339922, + 0.018126187846064568, + -0.02324547991156578, + 0.009967316873371601, + -0.010252494364976883, + -0.01176185067743063, + -0.027891792356967926, + 0.002364890184253454, + 0.014439741149544716, + 0.000730768428184092, + 0.0083397151902318, + 0.006176536437124014, + -0.012151362374424934, + -0.015636097639799118, + 0.007240737322717905, + -0.006451281253248453, + -0.00103724782820791, + 0.012137451209127903, + -0.007421582005918026, + -0.0008220601594075561, + 0.027863970026373863, + -0.02744663693010807, + -0.03580721840262413, + 0.0030934850219637156, + 0.004027268849313259, + 0.012798229232430458, + 0.0060687256045639515, + -0.019350366666913033, + 0.002976979361847043, + 0.020477166399359703, + 0.006002647802233696, + -0.01296516228467226, + 0.006844270508736372, + -0.0029195959214121103, + -0.011824450455605984, + 0.005366214085370302, + -0.020908411592245102, + -0.01482925284653902, + 0.01583085209131241, + 0.012700851075351238, + 0.006965992506593466, + -0.0206858329474926, + 0.007915426045656204, + 0.020671922713518143, + 0.020477166399359703, + -0.01103847287595272, + 0.005081036128103733, + 0.0028048292733728886, + 0.0005890489555895329, + -0.009696049615740776, + 0.0048515028320252895, + 0.017875786870718002, + 0.0030447961762547493, + -0.012749540619552135, + -0.013459007255733013, + 0.007498092949390411, + -0.00961953867226839, + 0.011615783907473087, + 0.011365383863449097, + -0.010016005486249924, + -0.018752187490463257, + 0.004934969358146191, + -0.026027703657746315, + 0.016025608405470848, + 0.010245539247989655, + 0.024052323773503304, + -0.01633165404200554, + -0.015010097064077854, + -0.023537613451480865, + 0.01341031864285469, + -0.012394806370139122, + -0.0006468670326285064, + -0.0017771454295143485, + 0.003505601780489087, + 0.0023909735027700663, + -0.008777915500104427, + -0.003507340792566538, + 0.006517359055578709, + 0.01633165404200554, + -0.008346671238541603, + 0.0017067203298211098, + -0.006670381408184767, + 0.011400161311030388, + -0.009014405310153961, + -0.010697649791836739, + -0.00878487154841423, + -0.009090916253626347, + 0.007084236945956945, + -0.0073659373447299, + 0.02005983330309391, + 0.009090916253626347, + -0.004465469159185886, + 0.0022344733588397503, + 0.001949295517988503, + 0.0058670141734182835, + -0.008548382669687271, + 0.0010963700478896499, + -0.011365383863449097, + -0.015524808317422867, + 0.011344517581164837, + 0.02549908123910427, + 0.005098424851894379, + 0.018988676369190216, + 0.009543027728796005, + 0.002785701537504792, + 0.003954235464334488, + 0.008471870794892311, + 0.03327539563179016, + -0.006155670154839754, + 0.03853379935026169, + 0.00475412467494607, + 0.026584148406982422, + -0.0002943071012850851, + 0.02298116870224476, + 0.012318295426666737, + 0.016429031267762184, + 0.007112059276551008, + -0.014029363170266151, + 0.01804272085428238, + 0.01496836356818676, + 0.003363013034686446, + -0.011518405750393867, + -0.0035212519578635693, + 0.003350840648636222, + -0.01761147566139698, + -0.0032291184179484844, + -0.010363783687353134, + -0.01921125501394272, + 0.01916952058672905, + -0.007470270618796349, + 0.00841622706502676, + 0.019572943449020386, + -0.002785701537504792, + -0.015343964099884033, + 0.011873139999806881, + 0.02083885483443737, + 0.021242277696728706, + -0.027766592800617218, + -0.0023040289524942636, + -0.024135790765285492, + -0.005254925228655338, + -0.005988736636936665, + -0.018710454925894737, + -0.0014571896754205227, + -0.024636590853333473, + -0.00868749339133501, + 0.006865137256681919, + 0.014398007653653622, + -0.020310232415795326, + 0.011581006459891796, + -0.013820696622133255, + -0.026389392092823982, + -0.02181263454258442, + -0.005261880811303854, + -0.012026161886751652, + -0.015135296620428562, + 0.00964040495455265, + -0.010391606017947197, + 0.0020379789639264345, + 0.013229473493993282, + 0.009410872124135494, + 0.02748836949467659, + 0.021784812211990356, + -0.02278641238808632, + 0.0034395239781588316, + -0.010057738982141018, + -0.019586855545639992, + -0.0201433002948761, + -0.003975102212280035, + -0.002244906732812524, + 0.007261604070663452, + -0.03180081769824028, + 0.002161439973860979, + 0.012220917269587517, + -0.004698480479419231, + -0.017152410000562668, + 0.022327344864606857, + 0.008917027153074741, + -0.011845317669212818, + -0.017778409644961357, + 0.027112770825624466, + -0.008040626533329487, + -0.0030900072306394577, + 0.01772276498377323, + -0.010871538892388344, + 0.00026452861493453383, + -0.002533562481403351, + -0.02694583684206009, + -0.0256660133600235, + 0.016999386250972748, + 0.0072546484880149364, + 0.004722824785858393, + -0.0039716241881251335, + -0.01249913964420557, + -0.006781670264899731, + -0.006663425825536251, + -0.011984428390860558, + -0.005181891843676567, + -0.024984369054436684, + 0.0017414981266483665, + 0.005400991998612881, + 0.009696049615740776, + 0.0014267590595409274, + -0.0041524688713252544, + -0.006753847934305668, + 0.0008042365661822259, + 0.013479873538017273, + -0.021701345220208168, + 0.006096547935158014, + -0.017597565427422523, + 0.003849901957437396, + -0.010238583199679852, + 0.016067342832684517, + 0.018877387046813965, + -0.011768806725740433, + -0.02698756940662861, + 0.007769359741359949, + -0.002470962470397353, + 0.0036690575070679188, + -0.0035177741665393114, + -0.008910071104764938, + 0.008311893790960312, + -0.020699745044112206, + -0.008743138052523136, + 0.022772500291466713, + 0.029185526072978973, + -0.0008868338190950453, + -0.006117414217442274, + -0.01722196489572525, + -0.006472148001194, + 0.0030674017034471035, + -0.019002588465809822, + 0.006002647802233696, + 0.0035369019024074078, + 0.019837254658341408, + -2.8148278943262994e-5, + -0.006075681187212467, + -0.009633449837565422, + 0.005981781054288149, + 0.016317741945385933, + 0.008736182935535908, + -0.028823837637901306, + 0.006291303317993879, + 0.006023514550179243, + -0.02395494654774666, + 0.0013502479996532202, + -0.006451281253248453, + -0.0007185962167568505, + -0.004451557993888855, + 0.0009833421790972352, + 0.004708913620561361, + -0.0012824313016608357, + -0.001975378952920437, + -0.0063956365920603275, + -0.02138138934969902, + 0.026778902858495712, + 0.02114490047097206, + 0.04242891073226929, + 0.010725472122430801, + 0.010920228436589241, + -0.010259450413286686, + -0.03717051073908806, + -0.008548382669687271, + 0.0065277921967208385, + -0.004601102322340012, + -0.017597565427422523, + -0.0016154285985976458, + 0.0042533245868980885, + 0.01990681141614914, + -0.012172228656709194, + -0.0008868338190950453, + -0.019336454570293427, + 0.006618214771151543, + -0.013639851473271847, + -0.01901649869978428, + -0.014425829984247684, + 0.014314540661871433, + -0.0009694310720078647, + 0.003289979649707675, + -0.007727626245468855, + -0.0030169738456606865, + 0.007790226489305496, + 0.011128894984722137, + -0.009696049615740776, + -0.024163613095879555, + 0.004740213509649038, + -0.03013148345053196, + 0.022229967638850212, + -0.008019760251045227, + -0.025832947343587875, + 0.01416847389191389, + -0.01531614176928997, + 0.005355780478566885, + -0.019419921562075615, + 0.016470763832330704, + 0.0014102396089583635, + 0.0032256406266242266, + 0.0008772698929533362, + -0.00660082558169961, + -0.012638251297175884, + 0.0030465349555015564, + -0.002344023436307907, + 0.01199138443917036, + 0.013493784703314304, + 0.012937339954078197, + -0.01078807283192873, + -0.011268005706369877, + 0.0008437962969765067, + 0.01737498678267002, + -0.011247139424085617, + 0.01745845377445221, + 0.00432635797187686, + 0.013048629276454449, + 0.0075815594755113125, + -0.024553123861551285, + -0.032524194568395615, + -0.0055922698229551315, + 0.022689035162329674, + 0.011149761267006397, + 0.01424498576670885, + 0.00806844886392355, + -0.00904222670942545, + -0.00027039737324230373, + 0.013027762994170189, + 0.006990337278693914, + 0.009967316873371601, + -0.0037768688052892685, + 0.0038255576509982347, + -0.010892406105995178, + 0.00012683027307502925, + -0.00594700314104557, + -0.012060940265655518, + -0.016109075397253036, + -0.012638251297175884, + 0.00038538145599886775, + -0.01994854398071766, + 0.024678325280547142, + -0.0016728120390325785, + 6.901218876009807e-5, + 0.004646313842386007, + -0.011247139424085617, + 0.00029539389652200043, + -0.003554290859028697, + -0.015385697595775127, + 0.0071850926615297794, + 0.005209713708609343, + -0.003509079571813345, + -0.00642345892265439, + 0.0018362676491960883, + -0.004281146917492151, + 0.005790503229945898, + -0.002286640228703618, + -0.010857627727091312, + -0.007199003826826811, + -0.001476317411288619, + 0.009313493967056274, + -0.008270160295069218, + -0.0008633587858639657, + 0.03669752925634384, + -0.010899361222982407, + -0.018877387046813965, + -0.013264251872897148, + -0.004601102322340012, + -0.001169403432868421, + -0.004065524321049452, + 0.007108581718057394, + -0.002244906732812524, + -0.01648467592895031, + 0.014523208141326904, + -0.019962456077337265, + 0.010781116783618927, + 0.010725472122430801, + 0.03188428282737732, + 0.026737170293927193, + 0.01923907734453678, + 0.003185646142810583, + -0.009424783289432526, + -0.005446203052997589, + 0.0058565810322761536, + 0.017096765339374542, + -0.023315034806728363, + -0.003662101924419403, + 0.012019206769764423, + 0.014801430515944958, + 0.0007455490413121879, + -0.0008242337498813868, + 0.00526883639395237, + 0.013952852226793766, + -0.011191494762897491, + 0.009862982667982578, + 0.006336514372378588, + -0.008624893613159657, + -0.0007929337443783879, + -0.0013693757355213165, + 0.004302013199776411, + -0.012659117579460144, + -0.018905209377408028, + -0.008138004690408707, + 0.01839049905538559, + 0.026486769318580627, + 0.012895607389509678, + 0.016651608049869537, + 0.003449957352131605, + -0.021798722445964813, + 0.004663702566176653, + 0.012033117935061455, + 0.020268499851226807, + -0.02021285519003868, + 0.00699729286134243, + -0.01882174424827099, + 0.007171181496232748, + -0.0009103088523261249, + 0.015232674777507782, + 0.003482996253296733, + -0.0006473017274402082, + 0.006656470242887735, + -0.008764004334807396, + 0.013507695868611336, + -0.0011198450811207294, + 0.0033230185508728027, + 0.035751573741436005, + 0.00669820373877883, + 0.011003694497048855, + -0.021826544776558876, + 0.017402809113264084, + 0.003004801692441106, + -0.009988183155655861, + 0.009647361002862453, + 0.0009416088578291237, + 0.008506649173796177, + -0.002081451006233692, + 0.003274329472333193, + -0.008451004512608051, + 0.0004890627460554242, + -0.0014554507797583938, + -0.010607227683067322, + -0.011163672432303429, + 0.015914319083094597, + -0.009515205398201942, + 0.02757183648645878, + 0.007035548333078623, + -0.008012804202735424, + 0.02177090011537075, + 0.0008529254700988531, + 0.0003921196621377021, + 0.0038881576620042324, + -0.00034886476350948215, + 0.011581006459891796, + -0.002399667864665389, + -0.009570850059390068, + -0.012332206591963768, + -0.01329902932047844, + 0.015079652890563011, + 0.01951729878783226, + 0.006176536437124014, + -0.017361076548695564, + -0.0006086114444769919, + -0.00013324242900125682, + -0.0018797399243339896, + -0.011121938936412334, + -0.021103166043758392 + ], + "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572": [ + -0.008149419911205769, + -0.024549370631575584, + -0.008466229774057865, + 0.04246596246957779, + 0.0019210792379453778, + 0.007630391977727413, + 0.0284724161028862, + 0.004876845050603151, + 0.01910294219851494, + 0.020033149048686028, + 0.014101395383477211, + 0.03852943331003189, + 0.016905497759580612, + -0.013514961116015911, + -0.00862126424908638, + 0.005662128329277039, + -0.04020111262798309, + 0.02743436023592949, + 0.00856733974069357, + -0.013777845539152622, + 0.04543183743953705, + 0.007232694886624813, + -0.049826730042696, + 0.020639805123209953, + 0.0019615229684859514, + 0.0011728694662451744, + 0.0060294927097857, + 0.02148912474513054, + -0.03753182291984558, + 0.011593881994485855, + -5.223987318458967e-5, + -0.005335207562893629, + -0.00852015521377325, + 0.02460329607129097, + 0.003548941109329462, + -0.006663111504167318, + 0.008075273595750332, + -0.03435024619102478, + -0.025627871975302696, + 0.00883022416383028, + -0.027636578306555748, + -0.0020339847542345524, + -0.009059404954314232, + -0.04454207420349121, + -0.04125265032052994, + 0.026841184124350548, + -0.06303836405277252, + -0.012840897776186466, + 0.021893562749028206, + 0.00472518103197217, + -0.003872491419315338, + -0.06837694346904755, + 0.000706080871168524, + 0.010785005986690521, + 0.04330179840326309, + -0.013056598603725433, + 0.00022791750961914659, + 0.03653420880436897, + 0.006915885489434004, + -0.02363264560699463, + -0.015530409291386604, + 0.007468617055565119, + -0.022473257035017014, + 0.005507093854248524, + -0.00936273392289877, + 0.006248563062399626, + -0.011432106606662273, + -0.003314704168587923, + -0.018401917070150375, + -0.05068952962756157, + 0.003980341367423534, + 0.051336631178855896, + -0.050986118614673615, + -0.005874458234757185, + 0.05071649327874184, + -0.023619163781404495, + 0.028418490663170815, + 0.02982054278254509, + -0.007468617055565119, + -0.01938604936003685, + 0.011903950944542885, + 0.008014608174562454, + -0.0007086085970513523, + 0.014775458723306656, + 0.06077351048588753, + -0.005099285859614611, + 0.019224273040890694, + -0.04642945155501366, + 0.04392193630337715, + 0.002542902249842882, + -0.02495380863547325, + 0.03742397204041481, + 0.018604135140776634, + 0.006535039748996496, + -0.00901896134018898, + -0.014155320823192596, + 0.022432813420891762, + -0.03629154711961746, + 0.01686505414545536, + 0.04392193630337715, + 0.024967288598418236, + -0.02588401548564434, + 0.03966186195611954, + 0.011250109411776066, + 0.04842467978596687, + -0.00400056317448616, + -0.0030433940701186657, + 0.012160094454884529, + -0.015382114797830582, + 0.06271481513977051, + -0.01925123669207096, + -0.015800034627318382, + 0.015530409291386604, + -0.008911111392080784, + -0.06907796859741211, + -0.007583207450807095, + -0.008014608174562454, + -0.014330577105283737, + -0.0005169219803065062, + 0.03621065989136696, + 0.005763237830251455, + -0.0031748362816870213, + 0.011876988224685192, + 0.008129198104143143, + -0.031707920134067535, + -0.03497038409113884, + 0.032678570598363876, + -0.01817273534834385, + 0.015489965677261353, + 0.030467642471194267, + -0.006855219602584839, + 0.010906337760388851, + 0.011074853129684925, + 0.00941665843129158, + 0.016918977722525597, + -0.007832610979676247, + -0.012800454162061214, + 0.04702262580394745, + -0.025385208427906036, + 0.004681366961449385, + -0.06961721181869507, + -0.004940880928188562, + -0.03639939799904823, + 0.06336191296577454, + -0.010993965901434422, + 0.0284724161028862, + -0.014384502544999123, + 0.013757623732089996, + -0.024576332420110703, + 0.009618877433240414, + -0.05004242807626724, + -0.020518474280834198, + -0.030224980786442757, + 0.01034686528146267, + 0.057753708213567734, + 0.0013059969060122967, + -0.017714371904730797, + 0.0019952261354774237, + -0.02380790188908577, + 0.029982317239046097, + 0.04074035957455635, + -0.0411178357899189, + -0.0017626744229346514, + 0.04537791386246681, + 0.06697488576173782, + 0.00703047588467598, + 0.03127651661634445, + 0.029038628563284874, + -0.029982317239046097, + 0.014896789565682411, + -0.02117905579507351, + -0.021192537620663643, + -0.003294482361525297, + -0.010508640669286251, + 0.013137485831975937, + 0.005197024904191494, + 0.030386755242943764, + 0.03461987152695656, + 0.027447840198874474, + -0.033298708498477936, + -0.04206152260303497, + -0.007630391977727413, + -0.011593881994485855, + 0.013798067346215248, + 0.039580974727869034, + -0.004371298011392355, + 0.006690074224025011, + 0.02035669982433319, + -0.01810532994568348, + -0.004853252787142992, + -0.012214019894599915, + 0.004984694998711348, + 0.004667885601520538, + -0.00804831087589264, + -0.051336631178855896, + -0.016150547191500664, + 0.01803792268037796, + -0.01083219051361084, + -0.005689090583473444, + 0.003703975584357977, + 0.005294763948768377, + 0.03178880736231804, + -0.015233821235597134, + 0.002371016191318631, + -0.052819568663835526, + -0.008574079722166061, + -0.000937789969611913, + 0.019777005538344383, + 0.004115154035389423, + -0.05004242807626724, + 0.01824014261364937, + -0.063307985663414, + 0.004883585497736931, + 0.021327350288629532, + -0.024886401370167732, + 0.018671542406082153, + 0.006258673965930939, + 0.021570011973381042, + 0.029874468222260475, + -0.02471114508807659, + 0.03497038409113884, + 0.015018121339380741, + 0.0009799189865589142, + 0.005062212236225605, + -0.05521923303604126, + -0.003936527296900749, + -0.015085527673363686, + -0.0004115996416658163, + -0.030952967703342438, + -0.01752563565969467, + -0.024792032316327095, + -0.05586633086204529, + 0.0015099009033292532, + 0.028202790766954422, + 0.023767458274960518, + 0.04599805176258087, + 0.0403628870844841, + -0.011890469118952751, + 0.008836964145302773, + -0.009099849499762058, + -0.03297515586018562, + 0.012254463508725166, + 0.036642059683799744, + -0.013009414076805115, + -0.0029203775338828564, + -0.013420592062175274, + -0.00010189934982918203, + 0.007664095144718885, + 0.011883729137480259, + 0.008628005161881447, + -0.05462605506181717, + 0.015624777413904667, + 0.021206019446253777, + -0.019642192870378494, + -0.003865750739350915, + 0.01392613910138607, + 0.0006272997707128525, + -0.0450543649494648, + 0.013912658207118511, + 0.027879241853952408, + 0.020504992455244064, + 0.05424858257174492, + 0.04198063537478447, + -0.024266263470053673, + -0.01869850419461727, + 0.007650613784790039, + 0.02716473489999771, + 0.005773348733782768, + 0.01472153328359127, + -0.018914204090833664, + 0.020033149048686028, + -0.028903815895318985, + -0.04440726339817047, + 0.06605816632509232, + -0.012429719790816307, + 0.0372621975839138, + -0.0300632044672966, + -0.035159122198820114, + 0.010751303285360336, + -0.00804831087589264, + -0.043733201920986176, + -0.016056178137660027, + -0.0018974870909005404, + -0.027286065742373466, + 0.041657086461782455, + 0.022715918719768524, + -0.028014054521918297, + 0.03666901960968971, + -0.04575539007782936, + 0.010629971511662006, + -0.00581379234790802, + -0.005193654447793961, + 0.005716053303331137, + -0.02038366161286831, + 0.003151244018226862, + -0.003377055050805211, + -0.011634325608611107, + 0.0019716338720172644, + -0.0387720987200737, + 0.020747656002640724, + 4.476198955671862e-5, + 0.001784581458196044, + -0.014465389773249626, + -0.029523953795433044, + 0.02725910395383835, + -0.02086898684501648, + 0.03586014732718468, + 0.05629773437976837, + -0.033568333834409714, + 0.030467642471194267, + 0.013312742114067078, + -0.048910003155469894, + -0.04020111262798309, + -0.03939223662018776, + 0.034080620855093, + 0.012052244506776333, + -0.023592201992869377, + -0.005951975472271442, + -0.036615096032619476, + -0.003997192718088627, + -0.008324677124619484, + -0.005291393492370844, + -0.04869430512189865, + 0.04343661293387413, + 0.0003966438816860318, + -0.046186789870262146, + 0.03947312384843826, + 0.019129903987050056, + -0.0126454196870327, + -0.010468197055161, + -0.031087780371308327, + 0.007852832786738873, + -0.027286065742373466, + -0.017714371904730797, + -0.03418847173452377, + -0.0601264089345932, + -0.05203765630722046, + -0.040174148976802826, + -0.006676592864096165, + -0.01042101252824068, + -0.0064238193444907665, + -0.0296857301145792, + 0.009645840153098106, + -0.04268166050314903, + -0.031195631250739098, + -0.009099849499762058, + 0.01989833638072014, + 0.039688821882009506, + 0.0012284796684980392, + 0.04273558780550957, + 0.0008312038262374699, + -0.0015663536032661796, + -0.009032443165779114, + -0.016474097967147827, + 0.05206461623311043, + -0.006673222407698631, + -0.037370048463344574, + -0.008803261443972588, + -0.011721953749656677, + -0.021543050184845924, + 0.016838090494275093, + -0.01620447263121605, + 0.006137342657893896, + -0.006929366383701563, + -0.04284343868494034, + 0.013157707639038563, + 0.025196470320224762, + 0.03979667276144028, + -0.0148428650572896, + 0.019615231081843376, + -0.03337959572672844, + -0.02197444997727871, + -0.022311482578516006, + -0.014910271391272545, + 0.035887107253074646, + -0.03054852969944477, + 0.03340655565261841, + -0.006420448888093233, + -0.04481169953942299, + -0.007650613784790039, + 0.00893133319914341, + 0.018806355074048042, + -0.001236062846146524, + -0.0077180201187729836, + 0.011998319067060947, + 0.030764229595661163, + 0.011337737552821636, + -0.05144447833299637, + -0.006545150652527809, + 0.03054852969944477, + -0.027380434796214104, + 0.012207278981804848, + 0.005314985755831003, + 0.011681510135531425, + 0.017026828601956367, + -0.0015537149738520384, + 0.011560178361833096, + -0.010993965901434422, + 0.008156160824000835, + -0.03861032426357269, + 0.005985678639262915, + -0.029254330322146416, + 0.019426492974162102, + -0.024266263470053673, + -0.004256707150489092, + -0.029146479442715645, + -0.009915465489029884, + 0.007488838862627745, + 0.048182014375925064, + -0.014586720615625381, + 0.0069024041295051575, + -0.007124844938516617, + 0.004715070128440857, + -0.002327202120795846, + 0.024091007187962532, + 0.028148867189884186, + -0.0077921668998897076, + 0.04518917575478554, + 0.021138612180948257, + 0.019615231081843376, + 0.035887107253074646, + 0.02995535545051098, + -0.004998176358640194, + 0.03103385493159294, + 0.027083847671747208, + -0.007340544834733009, + -0.02522343397140503, + 0.004580257460474968, + 0.0043780384585261345, + -0.018401917070150375, + 0.02484595775604248, + 0.017404302954673767, + 0.0015452891821041703, + -0.012982451356947422, + -0.03604888170957565, + 0.013110523112118244, + -0.005466650240123272, + -0.009409917518496513, + 0.007744982838630676, + -0.0005645276978611946, + -0.03397276997566223, + 0.030467642471194267, + -0.03812499716877937, + -0.017889630049467087, + 0.01717512309551239, + 0.006133972201496363, + -0.014276651665568352, + 0.005311615765094757, + 0.010629971511662006, + -0.02387530729174614, + -0.0010759729193523526, + -0.010717599652707577, + -0.022405849769711494, + -0.019979223608970642, + -0.030090168118476868, + -0.026625484228134155, + 0.04335572570562363, + -0.027083847671747208, + 0.009571692906320095, + -0.0419536754488945, + 0.011721953749656677, + 0.02204185724258423, + 0.005274542141705751, + -0.002750176703557372, + 0.033945806324481964, + -0.02343042567372322, + -0.017188603058457375, + -0.0011248424416407943, + 0.006191267631947994, + -0.0013885695952922106, + 0.008405564352869987, + -0.02674681507050991, + -0.007172028999775648, + 0.02895774133503437, + 0.0037612710148096085, + -0.010751303285360336, + -0.004347705747932196, + -0.01602921634912491, + 0.006848479155451059, + -0.004802698269486427, + -0.013292520307004452, + -0.010340124368667603, + 0.028930779546499252, + -0.024765070527791977, + 0.021677862852811813, + 0.03397276997566223, + 0.01140514388680458, + -0.04357142373919487, + -0.0331638939678669, + -0.0489908903837204, + 0.003495016135275364, + 0.005358799826353788, + 0.0068248868919909, + 0.011688250117003918, + -0.008156160824000835, + -0.011486032046377659, + -0.005102656316012144, + -0.006272155325859785, + 0.007953941822052002, + 0.017957035452127457, + 0.02115209400653839, + 0.014519314281642437, + -0.019480418413877487, + 0.0072461762465536594, + -0.021057724952697754, + 0.01453279610723257, + 0.009059404954314232, + 0.008688670583069324, + -0.05991071090102196, + -0.030494606122374535, + -0.0075090606696903706, + 0.021300386637449265, + -0.045350950211286545, + 0.010191830806434155, + 0.015503446571528912, + 0.027690503746271133, + -0.01454627700150013, + -0.027569172903895378, + 0.03054852969944477, + 0.0002919535036198795, + -0.015530409291386604, + -0.011283813044428825, + -0.007232694886624813, + 0.014478870667517185, + 0.02698947861790657, + 0.0025311061181128025, + 0.005935123655945063, + -0.01140514388680458, + -0.04225026071071625, + -0.03418847173452377, + -0.023956194519996643, + 0.03866424784064293, + -0.030117129907011986, + 0.010542343370616436, + -0.01817273534834385, + -0.009268364869058132, + -0.028067978098988533, + 0.0027097328566014767, + 0.012861119583249092, + -0.027151253074407578, + -0.04615982621908188, + -0.0077382419258356094, + 0.011499512940645218, + -0.020882468670606613, + -0.007616910617798567, + 0.01894116774201393, + -0.018334509804844856, + 0.00803482998162508, + -0.0006310913595370948, + 0.02632889710366726, + -0.01441146433353424, + 0.04038984701037407, + -0.0007726445910520852, + 0.019291680306196213, + -0.0015461317962035537, + -0.05017724260687828, + 0.0027855648659169674, + 0.020019667223095894, + 0.004010674078017473, + -0.03079119324684143, + -0.03432328253984451, + 0.014438427053391933, + 0.012099429033696651, + 0.05241512879729271, + -0.002499088179320097, + -0.0040848213247954845, + -0.01852324791252613, + 0.00720573216676712, + 0.017471710219979286, + 0.00432748394086957, + 0.0008476341026835144, + 0.024967288598418236, + 0.036372434347867966, + -0.015773070976138115, + -0.02705688402056694, + 0.04268166050314903, + 0.02011403627693653, + -0.015489965677261353, + -0.03831373527646065, + 0.0010936670005321503, + -0.013447554782032967, + -0.003243927611038089, + 0.02270243875682354, + 0.021435199305415154, + -0.0016185934655368328, + -0.018307548016309738, + -0.007252916693687439, + 0.008169642649590969, + 0.0005480973632074893, + -0.0022429442033171654, + 0.004381408914923668, + -0.005645276512950659, + 0.0012099428568035364, + -3.1201740057440475e-5, + -0.008924592286348343, + 0.03054852969944477, + 0.002052521565929055, + 0.02159697562456131, + 0.0442185252904892, + 0.004829660523682833, + -0.004037636797875166, + 0.03680383414030075, + 0.01095352228730917, + -0.007906757295131683, + -0.00442185252904892, + -0.007178769912570715, + -0.006942847743630409, + 0.019224273040890694, + 0.024818995967507362, + 0.0118500255048275, + 0.016015734523534775, + -0.008075273595750332, + -0.0030265424866229296, + -0.01596180908381939, + 0.010879375040531158, + -0.011728694662451744, + -0.0004764782206621021, + 0.022351926192641258, + 0.0190085731446743, + -0.008614523336291313, + 0.021017281338572502, + -0.01352844201028347, + 0.02024884894490242, + -0.01515293400734663, + 0.0016362876631319523, + 0.040794286876916885, + -0.036021921783685684, + 0.0017095920629799366, + -0.02283725142478943, + 0.016528021544218063, + 0.024657221511006355, + -0.02774442918598652, + 0.011883729137480259, + -0.010353606194257736, + 0.0027990462258458138, + -0.005658757872879505, + 0.03224716708064079, + 0.005466650240123272, + 0.001875579939223826, + -0.011324256658554077, + -0.0015899458667263389, + -0.023268651217222214, + 0.012672382406890392, + 0.05095915496349335, + -0.011876988224685192, + 0.022540662437677383, + 0.007987645454704762, + -0.0006441513542085886, + 0.015193377621471882, + -0.004479147959500551, + 0.003727567847818136, + 0.03192361816763878, + -0.023969676345586777, + 0.016474097967147827, + 0.012604976072907448, + -0.011270331218838692, + -0.007131585385650396, + -0.01768741011619568, + -0.02498077042400837, + -0.006754110101610422, + 0.005170062184333801, + -0.021866600960493088, + -0.006996772717684507, + -0.03534785658121109, + -0.01602921634912491, + 0.0022159817162901163, + 0.016083139926195145, + 0.00870889239013195, + -0.012982451356947422, + 0.02771746553480625, + 0.012389276176691055, + -0.009133552201092243, + 0.0032523535192012787, + -0.009012220427393913, + 0.002633900847285986, + -0.00879652053117752, + -0.025452615693211555, + 0.02798709087073803, + -0.02024884894490242, + -0.0037545303348451853, + 0.0014778828481212258, + -0.029874468222260475, + -0.0182131789624691, + -0.0008219354203902185, + -0.041306573897600174, + 0.012052244506776333, + -0.008661707863211632, + -0.044353339821100235, + -0.027218660339713097, + -0.014020508155226707, + -0.030467642471194267, + 0.011095074936747551, + -0.04230418801307678, + 0.0023844975512474775, + -0.010946781374514103, + -0.012665641494095325, + -0.0025833460967987776, + -0.013609330169856548, + 0.004950991831719875, + -0.005015027709305286, + -0.04885607957839966, + -0.0029557656962424517, + -0.0021468903869390488, + -0.012760010547935963, + -0.009463842958211899, + 0.010704118758440018, + -0.018159253522753716, + -0.02024884894490242, + -0.007010254077613354, + 0.011978097259998322, + -0.023727014660835266, + -0.01276675146073103, + -0.01987137459218502, + 0.01307682041078806, + 0.021408237516880035, + 0.01841539889574051, + 0.0073944698087871075, + 0.004185930360108614, + 0.01852324791252613, + 0.03839462250471115, + -0.0028917298186570406, + 0.01790311001241207, + -0.008769557811319828, + -0.009470583871006966, + -0.03580622002482414, + -0.03861032426357269, + 0.01841539889574051, + 0.03168095648288727, + 0.020437587052583694, + -0.005904790945351124, + 0.036507245153188705, + 0.024023601785302162, + 0.02018144354224205, + 0.0010945096146315336, + 0.03205843269824982, + -0.020612843334674835, + 0.0077921668998897076, + 0.019372567534446716, + 0.04721136391162872, + -0.009834577329456806, + -0.014465389773249626, + 0.02511558309197426, + 0.01497767772525549, + -0.028202790766954422, + -0.00905266497284174, + -0.023727014660835266, + 0.015247303061187267, + 0.003933156840503216, + 0.012746529653668404, + -0.04168405011296272, + 0.030494606122374535, + -0.0033484073355793953, + 0.016406690701842308, + -0.011277072131633759, + -0.007468617055565119, + 0.03629154711961746, + 0.017026828601956367, + 0.012281426228582859, + -0.0076034292578697205, + 0.026773778721690178, + -0.041764937341213226, + 0.039203498512506485, + -0.020963355898857117, + -0.009221180342137814, + 0.03362225741147995, + -0.013400370255112648, + -0.008405564352869987, + -0.015314708463847637, + 0.026585040614008904, + 0.016150547191500664, + 0.01883331686258316, + 0.008499933406710625, + 0.025344764813780785, + -0.04100998491048813, + -0.010825449600815773, + 0.00782587006688118, + -0.001072602579370141, + -0.03192361816763878, + -0.025412170216441154, + 0.0217317882925272, + -0.020329736173152924, + -0.022271037101745605, + -0.008189864456653595, + -0.012827416881918907, + -0.0015141137409955263, + -0.010616490617394447, + 0.02553350292146206, + 1.4047365766600706e-5, + -0.009827837347984314, + -0.002975987736135721, + 0.034161508083343506, + 0.0022294630762189627, + 0.0005704257055185735, + 0.008836964145302773, + 0.013582367449998856, + -0.039446160197257996, + -0.02159697562456131, + 0.012483644299209118, + -0.007873054593801498, + -0.009167254902422428, + 0.011095074936747551, + -0.00210813176818192, + 0.02860722877085209, + -0.020302774384617805, + 0.03435024619102478, + 0.000679118384141475, + -0.01693245954811573, + -0.051848918199539185, + -0.04540487751364708, + 0.047777578234672546, + 0.026733335107564926, + -0.023834863677620888, + -0.017161641269922256, + 0.018334509804844856, + -0.01392613910138607, + -0.0042533366940915585, + 0.02884989231824875, + -0.0010970373405143619, + 0.030629416927695274, + -0.017215566709637642, + 0.0006420448771677911, + -0.020437587052583694, + -0.004142116289585829, + 0.013272298499941826, + 0.003302908269688487, + -0.023834863677620888, + 0.01682461053133011, + 0.012915045022964478, + 0.010751303285360336, + 0.014775458723306656, + -0.01730993576347828, + 0.02546609565615654, + -0.021502606570720673, + 0.02502121403813362, + 0.00693610729649663, + 0.020329736173152924, + 0.0005139729473739862, + -0.008648226968944073, + -0.017983997240662575, + 0.012416238896548748, + -0.009618877433240414, + -0.03526696935296059, + -0.006258673965930939, + 0.011492772027850151, + 0.0016809443477541208, + 0.0110546313226223, + 0.017121197655797005, + 0.007158548105508089, + -0.00905266497284174, + 0.06346976011991501, + 0.037477895617485046, + -0.0012377479579299688, + 0.004297150764614344, + 0.0363454706966877, + -0.001213313196785748, + 0.029416104778647423, + 0.006524928845465183, + 0.028014054521918297, + -0.007414691615849733, + 0.0019699488766491413, + 0.008412305265665054, + -0.016635872423648834, + -0.019345605745911598, + 0.018078366294503212, + -0.016190990805625916, + 0.00018189166439697146, + 0.006983291357755661, + -0.005038619972765446, + -0.00856733974069357, + 0.02336302027106285, + -0.01772785373032093, + -0.007960682734847069, + 0.0130431167781353, + -0.0035893849562853575, + 0.011425365693867207, + -0.03939223662018776, + 0.018617616966366768, + -0.04157619923353195, + -0.001990170683711767, + 0.0003014325047843158, + 0.013696958310902119, + 0.007057438604533672, + -0.0280949417501688, + 0.008978517726063728, + -0.0021536308340728283, + 0.0030636158771812916, + -0.014478870667517185, + -0.013467776589095592, + 0.0062856366857886314, + 0.021920524537563324, + -0.005375651642680168, + 0.021165573969483376, + 0.016838090494275093, + -0.0016042697243392467, + -0.0009900298900902271, + 0.0140474708750844, + 0.018051404505968094, + 6.135025614639744e-5, + 0.003993822727352381, + -0.0023389982525259256, + -0.0030198018066585064, + -0.0004347705689724535, + -0.03459290787577629, + 0.006076676771044731, + 0.05109396576881409, + -0.04696870222687721, + -0.011250109411776066, + 0.009746949188411236, + 0.04257381334900856, + -0.013063338585197926, + -0.016298839822411537, + 0.0065687429159879684, + 0.0030181165784597397, + -0.00972672738134861, + 0.03596799448132515, + 0.013514961116015911, + 0.004479147959500551, + -0.004027525894343853, + 0.017390822991728783, + -0.0059317536652088165, + 0.011162481270730495, + -0.03728915750980377, + 0.029901430010795593, + 0.009659321047365665, + -0.022446293383836746, + -0.0041791899129748344, + 0.012692604213953018, + -0.014950715005397797, + -0.018671542406082153, + -0.0005830643931403756, + -0.016339285299181938, + -0.03696560859680176, + -0.03106081858277321, + -6.398331606760621e-5, + -0.0065586320124566555, + 0.007279879413545132, + -0.011310775764286518, + -0.017202084884047508, + -0.03200450539588928, + 5.3214105719234794e-5, + -0.005166692193597555, + -0.03186969459056854, + 0.018563691526651382, + -0.0019682636484503746, + 0.021502606570720673, + 0.013238594867289066, + 0.008594301529228687, + -0.009915465489029884, + 0.003350092563778162, + -0.027286065742373466, + 0.005301504861563444, + -0.003269205102697015, + 0.00401741499081254, + -0.0047959573566913605, + 0.026099715381860733, + -0.008007867261767387, + -0.01648757793009281, + -0.049826730042696, + -0.009733468294143677, + 0.009295327588915825, + 0.0038185662124305964, + 0.0037444194313138723, + -0.01907598040997982, + -0.0003140711924061179, + -0.055138345807790756, + 0.0012470163637772202, + -0.022756362333893776, + -0.01578655280172825, + -0.01914338581264019, + -0.010097461752593517, + 0.01387221459299326, + 0.006262044422328472, + -0.007920239120721817, + 0.0166223905980587, + -0.005001546815037727, + -0.010030055418610573, + -0.023228207603096962, + -0.028634192422032356, + -0.008479711599647999, + -0.01752563565969467, + 0.036615096032619476, + -0.012240981683135033, + -0.014735015109181404, + -0.03610280901193619, + -0.025546982884407043, + -0.009477323852479458, + -0.007192251272499561, + 0.0014256429858505726, + -0.0002491926134098321, + 0.013764364644885063, + 0.026301933452486992, + -0.028661154210567474, + 0.006332820747047663, + 0.012793713249266148, + 0.009699764661490917, + 0.00843252707272768, + 0.02522343397140503, + -0.02128690667450428, + -0.0020424106623977423, + -0.0315731056034565, + 0.0036601615138351917, + -0.003247298067435622, + -0.0051902844570577145, + 0.030251942574977875, + 0.005978937726467848, + -0.009268364869058132, + -0.023861825466156006, + -0.0038522693794220686, + -0.003677013097330928, + -0.0008025561110116541, + -0.019534341990947723, + -0.037720561027526855, + -0.012712826021015644, + -0.015099008567631245, + 0.009612136520445347, + 0.020707212388515472, + 0.039715785533189774, + -0.00905266497284174, + -0.02163741923868656, + 0.015557372011244297, + -0.013831770978868008, + -0.010872634127736092, + 0.014478870667517185, + -0.0021856490056961775, + 0.003331555752083659, + 0.029038628563284874, + -0.007960682734847069, + -0.003031597938388586, + 0.011236628517508507, + 0.016972903162240982, + -0.0010675471276044846, + -0.02338998205959797, + -0.020397143438458443, + -0.012079207226634026, + 0.006420448888093233, + -0.02305295132100582, + -0.021650899201631546, + -0.04243899881839752, + -0.03863728418946266, + -0.0006146610830910504, + 0.01717512309551239, + -0.019952261820435524, + -0.01925123669207096, + 0.009645840153098106, + 0.013191410340368748, + 0.020653286948800087, + 0.00032860564533621073, + 0.0014365965034812689, + 0.0009015591349452734, + 0.016393208876252174, + 0.00601264089345932, + -0.0031916878651827574, + 0.0056722392328083515, + -0.022190149873495102, + 0.010933300480246544, + 0.005480131134390831, + -0.028742041438817978, + 0.008412305265665054, + 0.0217317882925272, + 0.022378887981176376, + 0.011169222183525562, + -0.02163741923868656, + 0.023753976449370384, + 0.015530409291386604, + -0.012685863301157951, + -0.002986098639667034, + -0.039607934653759, + -0.004202782176434994, + 0.01838843524456024, + -0.007455135695636272, + -0.031141705811023712, + 0.00993568729609251, + -0.008958295919001102, + 0.0148428650572896, + -0.02674681507050991, + 0.03200450539588928, + -0.008102236315608025, + 0.021866600960493088, + 0.00571942375972867, + -0.0005097600515000522, + 0.008863926865160465, + -0.024684183299541473, + -0.003405702766031027, + 0.006885552313178778, + -0.013723920099437237, + 0.02314732037484646, + 0.010367087088525295, + -0.013056598603725433, + -0.00914029311388731, + 0.010771525092422962, + -0.0037713819183409214, + -0.012126391753554344, + 0.013804808259010315, + 0.0150316022336483, + 0.018995093181729317, + 0.005355429835617542, + -0.0029405993409454823, + 0.04723832756280899, + 0.002478866372257471, + -0.020504992455244064, + -0.010825449600815773, + 0.004954362288117409, + 0.00853363610804081, + 0.008574079722166061, + 0.006983291357755661, + 0.0006546835647895932, + -0.007819129154086113, + 0.0244954451918602, + -0.014613683335483074, + -0.01793007366359234, + 0.041522275656461716, + -0.0034613129682838917, + 0.015975290909409523, + -0.0002837383362930268, + 0.026450227946043015, + -0.020060110837221146, + -0.013407111167907715, + -0.025897495448589325, + -0.008991998620331287, + -0.015220340341329575, + 0.022244075313210487, + 0.007097882218658924, + 0.019129903987050056, + -0.003838788252323866, + -0.0371813103556633, + 0.03645332157611847, + 0.004351075738668442, + 0.024872921407222748, + 0.012706085108220577, + -0.014735015109181404, + 0.016433652490377426, + -0.027771390974521637, + 0.04750795289874077, + -0.04098302498459816, + -0.0005261903279460967, + -0.008681929670274258, + 0.0011804526438936591, + 0.0260862335562706, + -0.009005480445921421, + 0.02712429128587246, + -0.02446848340332508, + -0.004118524491786957, + -0.011472550220787525, + 0.007987645454704762, + 0.003387165954336524, + -0.03591407090425491, + 0.0014054211787879467, + -0.012106169946491718, + 0.014708052389323711, + -0.012699345126748085, + 0.0057463860139250755, + 0.011789360083639622, + -0.012052244506776333, + -0.0010009834077209234, + 0.0005885411519557238, + 0.0074214325286448, + 0.003768011461943388, + 0.011357959359884262, + 0.009794133715331554, + -0.017498672008514404, + -0.013777845539152622, + 0.01896812953054905, + 0.003966860007494688, + -0.02115209400653839, + 0.018671542406082153, + 0.005699201952666044, + 0.007846091873943806, + -0.010225534439086914, + 0.022823769599199295, + -0.003976970911026001, + 0.008371860720217228, + 0.0225271824747324, + 0.01762000471353531, + 0.020639805123209953, + 0.004671256057918072, + 0.02982054278254509, + 0.004324113484472036, + 0.03526696935296059, + -0.010656934231519699, + -0.015570852905511856, + 0.022055337205529213, + -0.008890889585018158, + 0.040308959782123566, + -0.00441511208191514, + 0.002291813725605607, + -0.0003496701247058809, + -0.001321163261309266, + -0.010063759051263332, + 0.05317008122801781, + 0.018442360684275627, + 0.04063251242041588, + -0.01706727221608162, + -0.018577173352241516, + 0.014168801717460155, + 0.0022496848832815886, + 0.003916305489838123, + 0.016635872423648834, + 0.014465389773249626, + 0.025425652042031288, + 0.02170482464134693, + 0.014613683335483074, + 0.0010346865747123957, + -0.014829383231699467, + -0.004037636797875166, + 0.0054026138968765736, + -0.001536020776256919, + -0.0280949417501688, + 0.00035725333145819604, + -0.011223146691918373, + -0.005048730876296759, + 0.007886535488069057, + -0.03178880736231804, + -0.011277072131633759, + 0.0018401916604489088, + -0.001362449605949223, + 0.006464262958616018, + 0.006238452158868313, + -0.005058841779828072, + 0.009342512115836143, + -0.0016826294595375657, + 0.04033592343330383, + -0.01571914739906788, + -0.008776298724114895, + 0.009861540049314499, + -0.012874601408839226, + -0.0021300388034433126, + 0.020612843334674835, + -0.01347451750189066, + 0.02201489359140396, + 0.007347285747528076, + -0.01033338438719511, + 0.0007355711422860622, + -0.0013514960883185267, + 0.004209522623568773, + 0.006282266229391098, + -0.027110809460282326, + -0.020343217998743057, + -0.012267944402992725, + -0.03704649582505226, + -0.0014003656106069684, + -0.0077786860056221485, + 0.0018418768886476755, + 0.003131022211164236, + -0.014748496003448963, + -0.019156867638230324, + -0.0100704999640584, + 0.023700051009655, + -0.007562985643744469, + -0.003885972546413541, + 0.032328058034181595, + -0.018563691526651382, + 0.0019598379731178284, + 0.00804831087589264, + 0.006454152055084705, + -0.0148428650572896, + 0.0019059128826484084, + -0.041764937341213226, + 0.004064599052071571, + -0.01392613910138607, + 0.0005181858432479203, + -0.007347285747528076, + 0.016015734523534775, + 0.003946638200432062, + 0.004809438716620207, + -0.0363454706966877, + -0.004485888406634331, + 0.0005021768738515675, + 0.008607783354818821, + -0.027205178514122963, + 0.004691477864980698, + -0.01593484729528427, + -0.05033901706337929, + 0.023403463885188103, + 0.04198063537478447, + -0.02225755713880062, + 0.00401741499081254, + -0.005574500188231468, + -0.005207135807722807, + -0.034296318888664246, + -0.01534167118370533, + -0.0029271182138472795, + 0.023376500234007835, + 0.02522343397140503, + -0.010886115953326225, + -0.01143884751945734, + 0.012038763612508774, + 0.014249689877033234, + 0.007077660411596298, + 0.012786973267793655, + -0.00972672738134861, + -0.0053284671157598495, + -0.026032308116555214, + 0.009308808483183384, + 0.016635872423648834, + -0.018536729738116264, + 0.022055337205529213, + 0.00020664240582846105, + -0.022864213213324547, + 0.0016177509678527713, + 0.015072045847773552, + -0.011000706814229488, + 0.008675189688801765, + -0.0028782484587281942, + 0.010016574524343014, + 0.033298708498477936, + 0.02442803978919983, + 0.012658901512622833, + 0.0022126114927232265, + -0.003319759853184223, + 0.0028546564280986786, + 0.017080754041671753, + 0.00660918653011322, + -0.010319902561604977, + -0.005176803097128868, + -0.03820588439702988, + -0.017053790390491486, + 0.04640248790383339, + -0.017754817381501198, + 0.015085527673363686, + -0.02380790188908577, + 0.007495579309761524, + 0.031950581818819046, + 0.015530409291386604, + 0.016231434419751167, + -0.014371020719408989, + -0.0029304884374141693, + -0.011155741289258003, + 0.028903815895318985, + 0.01786266639828682, + 0.0048364014364778996, + -0.0028209532611072063, + -0.004287039861083031, + 0.017336897552013397, + -0.010090721771121025, + 0.012470163404941559, + 0.0004912233562208712, + 0.01596180908381939, + 0.025102101266384125, + 0.020936394110322, + 0.002635585842654109, + 0.008702151477336884, + 0.034781645983457565, + -0.00010769208165584132, + 0.013487998396158218, + -0.0021789083257317543, + 0.006676592864096165, + -0.025304321199655533, + 0.01907598040997982, + -0.022271037101745605, + -0.008998739533126354, + -0.0011644436744973063, + -0.00135233870241791, + 0.013258816674351692, + 0.011256850324571133, + 0.01029968075454235, + 0.02895774133503437, + -0.014923752285540104, + -0.00020264016347937286, + -0.0032826862297952175, + 0.011149000376462936, + -0.013258816674351692, + -0.028634192422032356, + -0.025425652042031288, + -0.04254684969782829, + 0.0026103085838258266, + 0.012638678774237633, + -0.01717512309551239, + 0.010933300480246544, + 0.031600069254636765, + 0.032597679644823074, + -0.015449521131813526, + 0.0021047613117843866, + -0.005126248113811016, + 0.0025597538333386183, + 0.017094235867261887, + -0.019224273040890694, + -0.0015933162067085505, + -0.00941665843129158, + 0.017161641269922256, + -0.012578013353049755, + -0.023282133042812347, + -0.008991998620331287, + -0.009214439429342747, + 0.00012954646081198007, + 0.005028509069234133, + -0.007569726090878248, + 0.01755259744822979, + -0.008594301529228687, + 0.003532089525833726, + 0.018685024231672287, + -0.0054026138968765736, + 0.03497038409113884, + 0.011371441185474396, + 0.018442360684275627, + 0.013899176381528378, + 0.005877828225493431, + -0.02415841445326805, + -0.016339285299181938, + 0.007630391977727413, + 0.01651454158127308, + 0.007906757295131683, + -0.03044068068265915, + 0.019723080098628998, + 0.006093528587371111, + -0.005021768622100353, + -0.008661707863211632, + -0.034080620855093, + 0.0022530551068484783, + -0.015638258308172226, + -0.007219213526695967, + 0.021650899201631546, + -0.008863926865160465, + 0.012719566933810711, + -0.022675475105643272, + 0.014114877209067345, + 0.035779260098934174, + -0.017363859340548515, + -0.033676180988550186, + 0.005935123655945063, + -0.027879241853952408, + 0.008702151477336884, + 0.014128358103334904, + -0.02498077042400837, + 0.0006685861153528094, + 0.005577870644629002, + -0.013771104626357555, + -0.007151807192713022, + -0.008810002356767654, + -0.012625197879970074, + 0.0016784166218712926, + 0.0017508784076198936, + 0.0017138049006462097, + -0.015489965677261353, + 0.012658901512622833, + -0.0060800472274422646, + -0.025317803025245667, + -0.0025378467980772257, + 0.0020322995260357857, + 0.009888502769172192, + -0.017094235867261887, + 0.0069024041295051575, + -0.026895109564065933, + 0.005153210833668709, + 0.007212473079562187, + 0.018644578754901886, + 0.016339285299181938, + -0.04163012281060219, + -0.007084400858730078, + 0.01454627700150013, + 0.012072466313838959, + -0.007212473079562187, + -0.03168095648288727, + 0.018253622576594353, + 0.02343042567372322, + 0.022432813420891762, + 0.007576467003673315, + 0.016770685091614723, + -0.023349538445472717, + 0.004593738820403814, + -0.032085392624139786, + -0.0012520718155428767, + -0.00301474635489285, + 0.009153774008154869, + -0.012402757070958614, + 0.009841318242251873, + -0.004007304087281227, + -0.025075139477849007, + 0.019170349463820457, + -0.0023120357654988766, + 0.01938604936003685, + 0.003542200429365039, + 0.03799018636345863, + -0.026652446016669273, + 0.01242297887802124, + -0.0006268784636631608, + 0.015247303061187267, + 0.011270331218838692, + 0.017606522887945175, + -0.017566079273819923, + 0.002905211178585887, + -0.020815061405301094, + 0.020949874073266983, + 0.011512993834912777, + 0.025169508531689644, + 0.006403597537428141, + -0.008007867261767387, + 0.012685863301157951, + 0.03340655565261841, + -0.024630257859826088, + -0.010427752509713173, + -0.02471114508807659, + -0.01914338581264019, + 0.016811128705739975, + -0.013150966726243496, + -0.016905497759580612, + -0.0017980628181248903, + 0.050258129835128784, + -0.006255303509533405, + 0.007893276400864124, + -0.004988065455108881, + 0.01766044832766056, + -0.014222727157175541, + 0.017566079273819923, + 0.013137485831975937, + -0.02546609565615654, + 0.007010254077613354, + 0.007138325832784176, + 0.003693864680826664, + 0.0032658346462994814, + -0.005223987624049187, + -0.0023322575725615025, + -0.0010970373405143619, + -0.04047073423862457, + -0.0077180201187729836, + -0.003612976986914873, + 0.00891785230487585, + -0.023956194519996643, + 0.00441511208191514, + -0.015004639513790607, + -0.013609330169856548, + 0.016541503369808197, + 0.03116866759955883, + -0.005146470386534929, + 0.007091141771525145, + -0.014748496003448963, + 0.0016430283430963755, + 0.0324089452624321, + -0.0118500255048275, + 0.01793007366359234, + -0.010508640669286251, + -0.014586720615625381, + -0.011216406710445881, + -0.01613706536591053, + -0.035509634763002396, + -0.019170349463820457, + 0.0041791899129748344, + -0.006127231754362583, + -0.005176803097128868, + -0.021543050184845924, + -0.020302774384617805, + 0.005422836169600487, + 0.01772785373032093, + -0.03116866759955883, + -0.018779391422867775, + 0.004189300816506147, + -0.006076676771044731, + -0.006888922769576311, + -0.025560464709997177, + -0.0033787402790039778, + -0.019925298169255257, + 0.0013742457376793027, + 0.005291393492370844, + -0.01828058622777462, + 0.01910294219851494, + -0.011856766417622566, + 0.0056115733459591866, + 0.014748496003448963, + -0.008338158018887043, + 0.007980904541909695, + -0.027137771248817444, + 0.016851572319865227, + -0.004789216909557581, + 0.011546697467565536, + -0.0007688530022278428, + -0.004394890274852514, + -0.012962229549884796, + 0.0040342663414776325, + -0.017336897552013397, + -0.005648646969348192, + -0.003784863045439124, + 0.0004364557098597288, + 0.018442360684275627, + 0.010474937036633492, + 0.021516088396310806, + 0.006228341255337, + -0.015206858515739441, + -0.005149840377271175, + -0.005456539336591959, + 0.0016051122220233083, + -0.01786266639828682, + 0.007057438604533672, + -0.020302774384617805, + 0.06276873499155045, + 0.027407396584749222, + 0.005665498785674572, + -0.006009270902723074, + -0.0036534208338707685, + -0.002561439061537385, + 0.006733888294547796, + 0.023888789117336273, + 0.02190704457461834, + 0.0126454196870327, + -0.016595428809523582, + -0.017714371904730797, + -0.0018081737216562033, + -0.005776719190180302, + -0.022999025881290436, + -0.022419331595301628, + 0.009234661236405373, + 0.018267104402184486, + 0.0070237354375422, + 0.0205993615090847, + -0.014128358103334904, + 0.0033079637214541435, + -0.009025702252984047, + 0.030386755242943764, + -0.007900017313659191, + 0.007940460927784443, + 0.010717599652707577, + 0.017363859340548515, + 0.009531249292194843, + 0.02338998205959797, + -0.0016126955160871148, + 0.0040342663414776325, + -0.01551692746579647, + 0.0071855103597044945, + 0.010373828001320362, + 0.012948747724294662, + 0.00671366648748517, + 0.009517768397927284, + -0.016460616141557693, + 0.013818289153277874, + 0.003333240980282426, + -0.010656934231519699, + 0.013696958310902119, + 0.013683476485311985, + -0.013966582715511322, + -0.011324256658554077, + 0.008108976297080517, + -0.0061407131142914295, + -0.02321472577750683, + -0.015287746675312519, + -0.007940460927784443, + -0.010009833611547947, + -0.01282067596912384, + -0.015921365469694138, + -0.015840478241443634, + -0.009645840153098106, + 0.004883585497736931, + -0.02884989231824875, + 0.007670835591852665, + 0.007367507554590702, + -0.02301250770688057, + -0.005355429835617542, + -0.019089460372924805, + 0.0033972770906984806, + -0.004742032382637262, + -0.009733468294143677, + -0.010603009723126888, + 0.0038185662124305964, + 0.0008535321103408933, + 0.010805227793753147, + 0.01879287324845791, + -0.001321163261309266, + 0.0009942427277565002, + -0.013137485831975937, + -0.024589814245700836, + 0.006518187932670116, + 0.007974163629114628, + 0.017673928290605545, + 0.003693864680826664, + -0.0028361196164041758, + 0.006400227081030607, + 0.005372281186282635, + -0.005099285859614611, + -0.0023575350642204285, + 0.0035826442763209343, + -0.006201378535479307, + 0.00612386129796505, + -0.0027586023788899183, + 0.02418537624180317, + -0.023794420063495636, + -0.018091848120093346, + -0.005170062184333801, + 0.004014044534415007, + -0.005712682846933603, + -0.015800034627318382, + -0.010737821459770203, + 0.011512993834912777, + 0.01233535073697567, + 0.009147033095359802, + 0.0128543796017766, + 0.012793713249266148, + 0.0120589854195714, + 0.007327063474804163, + 0.011115296743810177, + 0.0036635317374020815, + 0.0043679275549948215, + 0.0178357046097517, + 0.03507823124527931, + -0.018321029841899872, + -0.003612976986914873, + 0.007374248001724482, + -0.000222019458306022, + 0.02515602670609951, + 0.008634746074676514, + -0.006191267631947994, + -0.009585174731910229, + -0.004610590171068907, + 0.003538830205798149, + -0.0026726594660431147, + -0.007980904541909695, + 0.0011374811874702573, + -0.0066428896971046925, + 0.005655387882143259, + 0.014613683335483074, + -0.0030029502231627703, + -0.01024575624614954, + -0.011216406710445881, + -0.0036803833208978176, + -0.026463709771633148, + -0.013359926640987396, + -0.004051118157804012, + -0.004061229061335325, + 0.0026204194873571396, + 0.02294510044157505, + 0.0037174569442868233, + -0.020343217998743057, + -0.004196041729301214, + -0.002227777848020196, + 0.016608908772468567, + 0.006760851014405489, + 0.018738947808742523, + 0.029362179338932037, + -0.010515380650758743, + 0.0005796941113658249, + 0.003751159878447652, + 0.026301933452486992, + -0.01233535073697567, + -0.009268364869058132, + 0.0016817869618535042, + -0.011135518550872803, + -0.006922625936567783, + -0.0057463860139250755, + 0.01131751574575901, + 0.0030838376842439175, + -0.005422836169600487, + -0.0073203230276703835, + -0.02584357187151909, + 0.0059418645687401295, + -0.0016994810430333018, + -0.0023389982525259256, + 0.00039875032962299883, + 0.004287039861083031, + 0.002933858660981059, + -0.011418625712394714, + -0.012800454162061214, + 0.003939897753298283, + 0.0331638939678669, + 0.029254330322146416, + 0.017606522887945175, + -0.0005405141855590045, + -0.011061372235417366, + -0.005146470386534929, + -0.02163741923868656, + -0.017336897552013397, + 0.004765624646097422, + 0.0071113635785877705, + -0.023767458274960518, + 0.005261060781776905, + -0.013912658207118511, + 0.012571273371577263, + 0.018509766086935997, + -0.013211633078753948, + 0.01140514388680458, + -0.006137342657893896, + 0.008695411495864391, + -0.0023120357654988766, + 0.011472550220787525, + -0.026773778721690178, + -0.00804831087589264, + -0.005884569138288498, + 0.017633484676480293, + -0.0016278618713840842, + -0.007583207450807095, + 0.00865496788173914, + -0.02922736667096615, + -0.016838090494275093, + 0.008722374215722084, + 0.030521567910909653, + -0.016352765262126923, + -0.0006298274965956807, + 0.02159697562456131, + -0.0031916878651827574, + -0.0066428896971046925, + -0.00711810402572155, + 0.009133552201092243, + -0.018536729738116264, + -0.010097461752593517, + 0.005274542141705751, + 0.019965743646025658, + 0.02270243875682354, + -0.04330179840326309, + 0.00571942375972867, + 0.017336897552013397, + -0.00962561834603548, + -0.009302067570388317, + 0.01263193879276514, + 0.012355572544038296, + -0.001838506548665464, + 0.028283679857850075, + -0.028067978098988533, + 0.004209522623568773, + 0.0030029502231627703, + -0.001366662560030818, + 0.009955909103155136, + 0.007994385436177254, + -0.005085804499685764, + -0.020855505019426346, + -0.006403597537428141, + -0.007900017313659191, + -0.02480551414191723, + 0.033190857619047165, + -0.00856733974069357, + -0.008061791770160198, + 0.016258396208286285, + 0.0008594301762059331, + 0.017754817381501198, + 0.010104202665388584, + 0.0009108274825848639, + 0.018361473456025124, + -0.003997192718088627, + -0.008958295919001102, + 0.01162758469581604, + -0.006396856624633074, + -0.003838788252323866, + 0.004671256057918072, + 0.019305162131786346, + 0.008419045247137547, + -0.02639630250632763, + -0.03464683145284653, + -2.727848186623305e-5, + -0.014883308671414852, + -0.013885695487260818, + -0.015489965677261353, + 0.03812499716877937, + 0.003478164551779628, + 0.0009361048578284681, + 0.025034695863723755, + 0.0014728273963555694, + -0.021017281338572502, + -0.00011975148663623258, + -0.003294482361525297, + 0.00693610729649663, + 0.03289426863193512, + 0.005223987624049187, + 0.029523953795433044, + 0.0045128511264920235, + -0.00220755604095757, + 0.010690637864172459, + 0.0030400236137211323, + 0.01091981865465641, + -0.006969810463488102, + 0.010137906298041344, + 0.012793713249266148, + 0.008668448776006699, + -0.013393629342317581, + -0.0078123887069523335, + 0.014748496003448963, + 0.004691477864980698, + -0.0072461762465536594, + -0.013312742114067078, + -0.011721953749656677, + -0.00962561834603548, + 0.004280299413949251, + -0.00660918653011322, + 0.00993568729609251, + -0.020612843334674835, + 0.004991435911506414, + 0.012180316261947155, + 0.011297293938696384, + 0.004007304087281227, + -0.00231035053730011, + -0.011607362888753414, + 0.01593484729528427, + -0.008290973491966724, + 0.004226374439895153, + 0.0018081737216562033, + -0.019965743646025658, + 0.011789360083639622, + 0.008924592286348343, + 0.006787813268601894, + -0.001865469035692513, + -0.008243788965046406, + 0.0015554000856354833, + -0.0062856366857886314, + 0.003333240980282426, + 0.004553294740617275, + 0.01578655280172825, + -0.00015282270032912493, + -0.014654126949608326, + -0.007684316951781511, + -0.0028951000422239304, + -0.007178769912570715, + 0.012065725401043892, + 0.0038590100593864918, + 0.012032022699713707, + 0.007192251272499561, + 0.009180736728012562, + 0.028742041438817978, + -0.0205993615090847, + -0.017256010323762894, + -0.008991998620331287, + 0.010576047003269196, + 0.009517768397927284, + 0.0077382419258356094, + 0.0077180201187729836, + 0.01790311001241207, + -0.00019663678540382534, + 0.01989833638072014, + 0.00693610729649663, + -0.01931864209473133, + 0.013481257483363152, + 0.003505127038806677, + -0.01052212156355381, + -0.006447411607950926, + -0.0017609893111512065, + 0.00010490103886695579, + -0.02276984415948391, + -0.010117683559656143, + -0.028283679857850075, + 0.01689201593399048, + -0.0051801735535264015, + 0.012429719790816307, + -0.010191830806434155, + -0.0064844852313399315, + 0.0198039673268795, + 0.04642945155501366, + 0.0004638395330403, + -0.006882182322442532, + 0.010090721771121025, + -0.0017879517981782556, + -0.0001436596503481269, + 0.006612556986510754, + -0.0023575350642204285, + -0.0012697660131379962, + 0.003990452270954847, + -0.015072045847773552, + 0.004007304087281227, + 0.004391519818454981, + -0.0005818005301989615, + -0.004654404241591692, + -0.017943553626537323, + 0.03842158615589142, + -0.006595705170184374, + 0.005864347331225872, + 0.020478030666708946, + 0.008823483251035213, + -0.007549504283815622, + 0.015543890185654163, + 0.0066934446804225445, + 0.006194638088345528, + 0.019682636484503746, + -0.022486738860607147, + -0.01869850419461727, + -0.02256762608885765, + -0.008938074111938477, + 0.024306707084178925, + -0.0019969113636761904, + 0.012840897776186466, + -0.0036331990268081427, + -0.02287769503891468, + 0.011701731942594051, + -0.0170403104275465, + -0.01648757793009281, + -0.0077786860056221485, + 0.0041690790094435215, + 0.020100556313991547, + 0.01903553679585457, + 0.009302067570388317, + -0.004624071530997753, + -0.0023979786783456802, + -0.010205312632024288, + 0.006572113372385502, + -0.002128353575244546, + 0.007502319756895304, + 0.022095780819654465, + -0.031492218375205994, + -0.009126811288297176, + 0.02356523834168911, + 0.0006251933518797159, + 0.0004189722239971161, + 0.016541503369808197, + 0.0028984704986214638, + -0.0010549083817750216, + 0.014748496003448963, + 0.008715633302927017, + -0.02166438102722168, + 0.003124281531199813, + 0.01993877999484539, + 0.01330600120127201, + 0.006383375730365515, + -0.0074214325286448, + -0.00045499246334657073, + -0.026099715381860733, + 0.011903950944542885, + -0.005308245308697224, + -0.004549924749881029, + 0.009571692906320095, + -0.017606522887945175, + 0.026517633348703384, + 0.007124844938516617, + 0.010596268810331821, + -0.0017256010323762894, + 0.003956749103963375, + -0.000518607150297612, + 0.004320743028074503, + -0.0026035679038614035, + 0.019480418413877487, + 0.001424800488166511, + -0.0002843702968675643, + 0.011425365693867207, + -0.00733380438759923, + -0.028661154210567474, + -0.004246596246957779, + 0.01602921634912491, + -0.03459290787577629, + 0.0038623802829533815, + 0.01064345333725214, + 0.0019126534461975098, + -0.002364275511354208, + 0.0033652589190751314, + -0.01693245954811573, + -0.030521567910909653, + 0.013555404730141163, + 0.02148912474513054, + 0.024522408843040466, + 0.021866600960493088, + -0.002917007077485323, + 0.0041084131225943565, + -0.00993568729609251, + -0.017498672008514404, + 0.0077180201187729836, + 5.618946306640282e-5, + 0.009895243681967258, + 0.0038522693794220686, + -0.0027131030801683664, + -0.016595428809523582, + -0.005722793750464916, + 0.02995535545051098, + 0.011863507330417633, + -0.0068248868919909, + -0.00036989201907999814, + 0.007468617055565119, + -0.008756076917052269, + 0.003366944147273898, + -0.0032725753262639046, + -0.005655387882143259, + 0.01797051727771759, + -0.011175963096320629, + 0.004041007254272699, + 0.0028125273529440165, + 0.0004372982948552817, + 9.879234130494297e-5, + -0.00041707640048116446, + -0.006413708440959454, + -0.004081450868397951, + -0.013049857690930367, + 0.015287746675312519, + 0.0007326221093535423, + -0.0009672802407294512, + -0.032948195934295654, + 0.004890326410531998, + 0.014344057999551296, + -0.002851285971701145, + -0.005675609689205885, + 0.002913636853918433, + -0.011202924884855747, + -0.004101672675460577, + 0.008803261443972588, + 0.01211290992796421, + 0.001683472073636949, + 0.011816322803497314, + -0.0021165574435144663, + -0.01406095176935196, + 0.0017112771747633815, + 0.008675189688801765, + -0.011209665797650814, + 0.01143884751945734, + 0.009888502769172192, + -0.0012655530590564013, + 0.00022033430286683142, + -0.012915045022964478, + -0.031357407569885254, + 0.024832477793097496, + 0.014263170771300793, + -0.019372567534446716, + 0.024171894416213036, + -0.0028108423575758934, + 0.021623937413096428, + 0.015220340341329575, + -0.00340401753783226, + 0.009248143061995506, + -0.001072602579370141, + 0.002962506376206875, + 0.012915045022964478, + -0.0018182846251875162, + -0.0004495157045312226, + 0.0035994958598166704, + 0.011823062784969807, + 0.01693245954811573, + -0.001757618971168995, + 0.00010284725431120023, + -0.004408371169120073, + -0.012079207226634026, + 0.001784581458196044, + 0.005314985755831003, + 0.005149840377271175, + 0.003720827167853713, + -0.019332123920321465, + 0.02906559221446514, + 0.0063496725633740425, + -0.009248143061995506, + 0.009807615540921688, + 0.0002696251613087952, + 0.007145066745579243, + 0.001884005730971694, + 0.0030181165784597397, + -0.0032624644227325916, + -0.0015309653244912624, + 0.018981611356139183, + -0.0034646831918507814, + 0.00038337326259352267, + -0.0004878530162386596, + 0.010272718034684658, + 0.009875020943582058, + -0.03151918202638626, + -0.0033484073355793953, + -0.00035325108910910785, + -0.0033265003003180027, + -0.01571914739906788, + 0.0050049168057739735, + 0.002824323484674096, + -0.00025382681633345783, + 0.016190990805625916, + 0.0205993615090847, + 0.005052101332694292, + -0.008169642649590969, + 0.006535039748996496, + 0.004411741625517607, + -0.0048566232435405254, + 0.00043350670603103936, + -0.011735434643924236, + -0.01472153328359127, + -0.00592501275241375, + -0.0020895949564874172, + -0.008890889585018158, + 0.005496982950717211, + 0.016325803473591805, + 0.019264716655015945, + -0.0033787402790039778, + -0.013002673164010048, + -0.004536443389952183, + 0.012005059979856014, + -0.002025559078902006, + -0.004374668002128601, + 0.009908724576234818, + -0.0019699488766491413, + 0.004806068260222673, + 0.001314422581344843, + 0.0015789923490956426, + -0.00843252707272768, + 0.003033282933756709, + 0.015355153009295464, + -0.028283679857850075, + -0.009800874628126621, + -0.0050049168057739735, + 0.014087914489209652, + 0.013804808259010315, + 0.009322289377450943, + 0.008169642649590969, + 0.002155316062271595, + 0.006710296031087637, + -0.025978384539484978, + -0.016393208876252174, + -0.0028479157481342554, + -0.0042533366940915585, + -0.008378601633012295, + -0.017768297344446182, + 0.003933156840503216, + -0.013966582715511322, + -0.006248563062399626, + -0.002952395472675562, + 0.02274288237094879, + -0.008169642649590969, + 0.008607783354818821, + 0.013555404730141163, + 0.013157707639038563, + 0.022715918719768524, + -0.0015520298620685935, + -0.0019126534461975098, + -0.038826022297143936, + -0.020855505019426346, + 0.006194638088345528, + -0.012840897776186466, + 0.00501839816570282, + 0.025937940925359726, + -0.014303614385426044, + 0.03213931992650032, + 0.0013363297330215573, + 0.02694903500378132, + -0.03054852969944477, + 0.0027586023788899183, + -0.019642192870378494, + 0.015732627362012863, + 0.004977954551577568, + -0.0023524793796241283, + -0.0012807195307686925, + 0.011445587500929832, + -0.0036972349043935537, + 0.0003762113628908992, + -0.02692207135260105, + 0.0020205036271363497, + 0.014586720615625381, + -0.004529702477157116, + -0.003923045936971903, + -0.008877408690750599, + -0.012726307846605778, + -0.013258816674351692, + -0.020504992455244064, + 0.01755259744822979, + 0.004394890274852514, + 0.021785711869597435, + -0.005176803097128868, + -0.014492352493107319, + -0.004590368364006281, + 0.019305162131786346, + -0.002832749392837286, + 0.018321029841899872, + 0.01589440368115902, + -0.01454627700150013, + -0.006828256882727146, + -0.01435753982514143, + 0.021853119134902954, + 0.0014441797975450754, + -0.009268364869058132, + -0.008196604438126087, + -0.02626148983836174, + 0.009477323852479458, + -0.014168801717460155, + 0.03532089665532112, + -0.006026122253388166, + -0.02179919369518757, + -0.016042696312069893, + -0.020087074488401413, + -0.014802421443164349, + 0.00803482998162508, + 0.008836964145302773, + -0.0008349954150617123, + 0.011634325608611107, + -0.01686505414545536, + -0.029308253899216652, + 1.9418803276494145e-5, + 0.004394890274852514, + 0.0015478169079869986, + 0.01387221459299326, + -0.008789780549705029, + -0.020437587052583694, + -0.012193798087537289, + -0.00042192122782580554, + 0.014883308671414852, + -0.03685775771737099, + -0.0006968125235289335, + 0.008756076917052269, + -0.023241689428687096, + -0.023336056619882584, + -1.0571728125796653e-5, + 0.005483501590788364, + 0.006049714516848326, + -0.005379022099077702, + -0.006878811866044998, + -0.01236905436962843, + -0.021610455587506294, + -0.007441654335707426, + 0.0010481678182259202, + -0.028499379754066467, + 0.02305295132100582, + -0.001443337183445692, + -0.0132520766928792, + -0.004445444792509079, + -0.018995093181729317, + -0.016703277826309204, + -0.011728694662451744, + -0.011708472855389118, + 0.0042432257905602455, + -0.0021148722153156996, + 0.007846091873943806, + -0.011371441185474396, + 0.01606965996325016, + 0.009598655626177788, + 0.005625054705888033, + -0.003966860007494688, + 0.003838788252323866, + 0.01869850419461727, + -0.001081028371118009, + -0.020127518102526665, + -0.009396436624228954, + -0.014748496003448963, + 0.037019532173871994, + -0.005341948475688696, + 0.03278641775250435, + 0.010387308895587921, + -0.006167675368487835, + 0.013885695487260818, + -0.037504859268665314, + 0.007798907812684774, + 0.01658194698393345, + 0.007043957244604826, + 0.0015511872479692101, + -0.0021890192292630672, + 0.006804665084928274, + 0.008587561547756195, + 0.012126391753554344, + -0.0017963775899261236, + -0.0007798065198585391, + 0.002563124056905508, + 0.004388149362057447, + -0.03017105534672737, + 0.003548941109329462, + 0.0031630401499569416, + -0.0032422426156699657, + -0.017188603058457375, + -0.005348688922822475, + -0.02004663087427616, + -0.006818145979195833, + 0.028930779546499252, + -0.004964473191648722, + -0.029739655554294586, + 0.013110523112118244, + 0.01814577355980873, + 0.0016371302772313356, + 0.008203345350921154, + -0.004051118157804012, + -0.020087074488401413, + 0.011330997571349144, + 0.009430140256881714, + -0.014505833387374878, + 0.009854799136519432, + 0.019022054970264435, + 0.010232274420559406, + -0.0026322156190872192, + 0.02553350292146206, + -0.0027400655671954155, + -0.008506673388183117, + 0.001536020776256919, + 0.0010254181688651443, + -0.00020632644009310752, + 0.005159951280802488, + 0.0014837809139862657, + -0.0031276517547667027, + 0.028256716206669807, + 0.0049206591211259365, + 0.004479147959500551, + -0.030737267807126045, + 0.003468053648248315, + -0.008028089068830013, + -0.035536594688892365, + -0.015436040237545967, + -0.011364700272679329, + 0.019615231081843376, + 0.010481677949428558, + 0.015233821235597134, + 0.0071113635785877705, + 0.007273138500750065, + -0.011560178361833096, + 0.026234528049826622, + -0.007057438604533672, + -0.003855639835819602, + 0.016123583540320396, + 0.005665498785674572, + 0.015436040237545967, + 0.027690503746271133, + 0.02511558309197426, + 0.014896789565682411, + -0.024616776034235954, + -0.004465666599571705, + 0.007232694886624813, + 0.008028089068830013, + 0.029901430010795593, + 0.0066260383464396, + -0.027083847671747208, + 0.004037636797875166, + -0.0032826862297952175, + 0.020963355898857117, + 0.020572399720549583, + -0.002345738932490349, + 0.00932903029024601, + 0.020639805123209953, + -0.0076438733376562595, + 0.012726307846605778, + 0.009207699447870255, + 0.004539813380688429, + -0.005857606418430805, + 0.0012225816026329994, + -0.007704538758844137, + -0.009659321047365665, + 0.015597815625369549, + -0.00018262890807818621, + 0.011944394558668137, + 0.01081870961934328, + -0.008938074111938477, + 0.004977954551577568, + 0.0033163893967866898, + 0.00831119529902935, + 0.011061372235417366, + -0.02170482464134693, + -0.008924592286348343, + -0.011964616365730762, + -0.012598235160112381, + 0.0009302067919634283, + -0.0008004496921785176, + -0.020397143438458443, + -0.0006559474277310073, + 0.012085947208106518, + 0.020343217998743057, + -0.0026018826756626368, + -0.011378181166946888, + -0.013656513765454292, + 0.006376634817570448, + 0.006319339387118816, + -0.01441146433353424, + 0.0009757060324773192, + 0.011357959359884262, + -0.011600621975958347, + -0.014694571495056152, + 0.005685720592737198, + -0.013656513765454292, + 0.0012242667144164443, + -0.007839351892471313, + 0.020653286948800087, + -0.028445454314351082, + -0.006865330506116152, + 0.006585594266653061, + 0.019426492974162102, + 0.01002331543713808, + 0.011519734747707844, + 0.004014044534415007, + 0.010663675144314766, + -0.010077239945530891, + -0.010387308895587921, + 0.028661154210567474, + 0.010319902561604977, + -0.019911818206310272, + 0.029766617342829704, + 0.027690503746271133, + -0.005850865971297026, + 0.024279745295643806, + -0.0284724161028862, + -0.01236905436962843, + -0.0029827281832695007, + -0.0020322995260357857, + 0.0020440956577658653, + -0.008722374215722084, + 0.011674769222736359, + 0.006174416281282902, + 0.01356214564293623, + 0.0007549504516646266, + -0.007003513630479574, + 0.024279745295643806, + 0.00660918653011322, + 0.005850865971297026, + 0.017849184572696686, + -0.00043350670603103936, + 0.012294907122850418, + 0.009302067570388317, + -0.009214439429342747, + -0.000882179825566709, + 0.005405984353274107, + 0.019345605745911598, + -0.021448681131005287, + 0.0010894541628658772, + 0.005810422357171774, + 0.007225953973829746, + 0.012773491442203522, + 0.03200450539588928, + -0.02425278350710869, + -0.017053790390491486, + -0.006730517838150263, + 0.01675720326602459, + 0.00036104494938626885, + -0.011155741289258003, + 0.00010669151379261166, + 0.008129198104143143, + -0.011708472855389118, + 0.013211633078753948, + -0.02073417417705059, + 0.0002694145077839494, + -0.007893276400864124, + -0.035159122198820114, + 0.00030353895272128284, + 0.015880921855568886, + 0.013110523112118244, + -0.00040212064050137997, + -0.005561018828302622, + -0.006083417683839798, + -0.00791349820792675, + 0.006531669292598963, + -0.00641033798456192, + 0.00884370505809784, + -0.009147033095359802, + -0.027272583916783333, + -0.016339285299181938, + -0.027933165431022644, + -0.002842860296368599, + 0.0031428183428943157, + 0.011789360083639622, + -0.02591097727417946, + -0.010185089893639088, + -0.003872491419315338, + -0.006551891099661589, + -0.0032253910321742296, + -0.012274685315787792, + -0.0049206591211259365, + 0.005112767219543457, + 0.005116137210279703, + 0.0069765509106218815, + -0.006026122253388166, + -0.005857606418430805, + -0.01152647566050291, + -0.011600621975958347, + -0.0008076116209849715, + -0.0132520766928792, + 0.015665221959352493, + 0.014640646055340767, + -0.007138325832784176, + -0.01620447263121605, + -0.005382392089813948, + 0.002246314659714699, + -0.005850865971297026, + 0.0038792318664491177, + -0.00844600796699524, + 0.010576047003269196, + -0.004634182434529066, + -0.008250529877841473, + 0.004209522623568773, + -0.00984805915504694, + 0.016460616141557693, + 0.0009133552084676921, + 0.005581240635365248, + -0.036642059683799744, + -0.021866600960493088, + 0.013629551976919174, + -0.009005480445921421, + -0.007664095144718885, + 0.0001377615990350023, + -0.014114877209067345, + 0.0037444194313138723, + -0.001130740507505834, + 0.03103385493159294, + -0.0025226804427802563, + 0.0036904942244291306, + -0.004239855799823999, + 0.009207699447870255, + -0.002136779483407736, + -0.007057438604533672, + 0.02473810873925686, + 0.006460892967879772, + 0.020019667223095894, + -0.007239435333758593, + 0.009827837347984314, + -0.0372621975839138, + 0.013818289153277874, + -0.009854799136519432, + -0.004870104603469372, + 0.02038366161286831, + -0.00310574471950531, + -0.0007212472846731544, + 0.010286199860274792, + 0.0041791899129748344, + -0.009423399344086647, + 0.028418490663170815, + -0.004937510471791029, + -0.0027299546636641026, + -0.0002687825763132423, + 0.013434073887765408, + 0.0067069255746901035, + -0.010704118758440018, + -0.012301648035645485, + 0.020882468670606613, + 0.020949874073266983, + -0.01497767772525549, + 0.010164868086576462, + 0.01267912331968546, + 0.011708472855389118, + -0.01828058622777462, + 0.002371016191318631, + 0.02294510044157505, + 0.007165288552641869, + -0.021920524537563324, + -0.008634746074676514, + -0.01779526099562645, + 0.020060110837221146, + 0.02097683772444725, + 0.032678570598363876, + -0.024333670735359192, + 0.017512153834104538, + -0.018132291734218597, + 0.011398403905332088, + 0.0007313582464121282, + 0.0072461762465536594, + 0.004317373037338257, + 0.027151253074407578, + 0.011984838172793388, + 0.014492352493107319, + -0.01602921634912491, + 0.0006129759713076055, + -0.003097319044172764, + -0.004735291935503483, + 0.007347285747528076, + -0.011122037656605244, + 0.004934140481054783, + -0.01642017252743244, + 0.02024884894490242, + -0.008641486056149006, + 0.01989833638072014, + -0.0007001828053034842, + -0.013272298499941826, + -0.02992839179933071, + 0.016635872423648834, + 0.01848280429840088, + 0.006231711246073246, + 0.030251942574977875, + -0.0005641063908115029, + -0.004192671272903681, + -0.01730993576347828, + 0.012389276176691055, + -0.018159253522753716, + 0.003703975584357977, + 0.00862126424908638, + 0.018563691526651382, + -0.008668448776006699, + 0.0033719995990395546, + -0.04740010201931, + -0.035536594688892365, + -0.016905497759580612, + 0.015099008567631245, + 0.02774442918598652, + -0.0011425366392359138, + -0.015624777413904667, + -0.009854799136519432, + 0.02287769503891468, + -9.447412594454363e-5, + -0.00839882344007492, + 0.004364557098597288, + -0.009787392802536488, + 0.001515798969194293, + 0.014114877209067345, + -0.01724252849817276, + -0.010495158843696117, + 0.018010960891842842, + -0.002416515490040183, + 0.009807615540921688, + -0.021030761301517487, + -0.006990032270550728, + -0.0026372710708528757, + 0.028391528874635696, + -0.018307548016309738, + -0.01135121937841177, + -0.01267912331968546, + -0.0012950433883816004, + -0.0019615229684859514, + 0.015436040237545967, + 0.024279745295643806, + 0.0066428896971046925, + -0.010629971511662006, + -0.0009824467124417424, + -0.004125264938920736, + -0.0032422426156699657, + 0.023727014660835266, + 0.007165288552641869, + -0.012935266830027103, + -0.02117905579507351, + 0.013097042217850685, + -0.02860722877085209, + 0.012537569738924503, + -0.005163321737200022, + 0.025196470320224762, + -0.022230593487620354, + -0.003983711823821068, + -0.015139452181756496, + 0.01453279610723257, + 0.0035186083987355232, + -0.0015208544209599495, + 0.0034444613847881556, + -0.0070237354375422, + 0.008237048983573914, + -0.01418228354305029, + -0.002960821148008108, + 0.00044446022366173565, + 0.00751580111682415, + 0.004340964835137129, + 0.004354446195065975, + 0.004091561771929264, + 0.004347705747932196, + -0.01989833638072014, + -0.012840897776186466, + 0.0011046205181628466, + -0.0070237354375422, + -0.007300101220607758, + -0.008769557811319828, + 0.01799747906625271, + 0.005769978277385235, + -0.0005754812154918909, + 0.0036197176668792963, + 0.009147033095359802, + 0.004118524491786957, + -0.02920040488243103, + 0.00874259602278471, + 0.0037916037254035473, + -0.009868280962109566, + 0.01069737784564495, + 0.007940460927784443, + 0.02245977520942688, + 0.001616908353753388, + 0.004361187107861042, + 0.011324256658554077, + 0.012793713249266148, + 0.00972672738134861, + 0.00521050626412034, + 0.007064179051667452, + 0.013885695487260818, + -0.004354446195065975, + 0.022432813420891762, + 0.011546697467565536, + 0.00552731566131115, + 0.008115717209875584, + -0.0027569171506911516, + 0.004357816651463509, + -0.008810002356767654, + 0.01180284097790718, + -0.0017272861441597342, + 0.0136497737839818, + -0.00785957369953394, + 0.00230698031373322, + 0.011641066521406174, + -0.023767458274960518, + -0.013386889360845089, + 0.0011105185840278864, + -0.00932903029024601, + 0.006696814671158791, + -0.015274264849722385, + 0.013784586451947689, + 0.03154614195227623, + -0.012658901512622833, + -0.005928383208811283, + 0.021327350288629532, + 0.016217952594161034, + 0.018159253522753716, + -0.00874259602278471, + 0.0013801438035443425, + -0.010252496227622032, + -0.018226660788059235, + -0.0072461762465536594, + -0.002419885713607073, + -0.010178349912166595, + -0.02663896605372429, + -0.006899033673107624, + 0.0070237354375422, + 0.008075273595750332, + -0.01152647566050291, + 0.03494342043995857, + -0.02281028777360916, + -0.01472153328359127, + -0.018685024231672287, + -0.032328058034181595, + -0.0017087494488805532, + 0.0051296185702085495, + -0.002652437426149845, + -0.0009259938960894942, + -0.009706505574285984, + 0.0022867582738399506, + 0.0009175681043416262, + 0.02533128298819065, + 0.018685024231672287, + -0.025897495448589325, + -0.011391662992537022, + -0.006545150652527809, + -0.012591495178639889, + -0.01797051727771759, + 0.011654547415673733, + 0.006585594266653061, + 0.013885695487260818, + -0.033190857619047165, + -0.01361607015132904, + 0.0061407131142914295, + -0.02007359266281128, + -0.017296453937888145, + 0.013022894971072674, + -0.0011964616132900119, + -0.01575959101319313, + -0.023929232731461525, + 0.008412305265665054, + 0.005368910729885101, + -0.006653000600636005, + 0.004600479267537594, + -0.017822222784161568, + 0.008176382631063461, + -0.007077660411596298, + -0.030494606122374535, + -0.017633484676480293, + 0.027137771248817444, + -0.002320461440831423, + 0.011903950944542885, + -9.526404755888507e-5, + -0.009982871823012829, + -0.0014003656106069684, + 0.009322289377450943, + 0.005470020230859518, + -5.492559284903109e-5, + -0.01236905436962843, + -0.0023120357654988766, + -0.008722374215722084, + 0.019750041887164116, + 0.0020070222672075033, + -0.004202782176434994, + 0.009079626761376858, + 0.0016329173231497407, + 0.003848899155855179, + -0.029766617342829704, + 0.007974163629114628, + -0.01865806058049202, + 0.010016574524343014, + -0.019601749256253242, + 0.010724340565502644, + 0.007124844938516617, + 0.0051902844570577145, + -0.013103782199323177, + -0.005948605015873909, + 0.005766607820987701, + -8.36785911815241e-5, + -0.00932903029024601, + -0.01602921634912491, + 0.02442803978919983, + -0.022405849769711494, + -0.006009270902723074, + 0.019682636484503746, + 0.02239236980676651, + -0.0009554841672070324, + -0.0062991175800561905, + -0.01724252849817276, + 0.0005552592920139432, + 0.014195764437317848, + -0.028148867189884186, + 0.010528862476348877, + 0.0055980924516916275, + 0.01232186984270811, + -0.00459710881114006, + -0.02263503149151802, + 0.009268364869058132, + -0.0059654563665390015, + 0.012018541805446148, + 0.010967003181576729, + -0.003457942744717002, + 0.013710439205169678, + 0.01024575624614954, + -0.014573239721357822, + -8.889204036677256e-5, + -0.020194923505187035, + -0.007340544834733009, + 0.0021519458387047052, + 0.007805648259818554, + 0.007879795506596565, + 0.023336056619882584, + -0.006312598939985037, + -0.0077382419258356094, + -0.006228341255337, + 0.003936527296900749, + 0.022230593487620354, + 0.03887994587421417, + -0.0018165995134040713, + 0.014600202441215515, + -0.006144083105027676, + -0.02343042567372322, + -0.01790311001241207, + -0.01642017252743244, + 0.00016008994134608656, + -0.011061372235417366, + -0.002546272473409772, + -0.0007600059034302831, + 0.01330600120127201, + -0.006107009947299957, + 0.011149000376462936, + -0.012281426228582859, + 0.0108658941462636, + -0.004553294740617275, + -0.02239236980676651, + -0.008304454386234283, + -0.0038623802829533815, + -4.989645094610751e-5, + 0.0004052803269587457, + -0.006804665084928274, + -0.008951555006206036, + 0.0005274541908875108, + -0.003993822727352381, + -0.0018182846251875162, + -0.003203483996912837, + 0.010387308895587921, + 0.0010085665853694081, + 0.030413717031478882, + 0.0025867163203656673, + -0.010535603389143944, + 0.02553350292146206, + -0.01021205261349678, + -0.016986384987831116, + -0.01003679633140564, + 0.01316444855183363, + -0.0037949741818010807, + 0.01575959101319313, + -0.012618456967175007, + -0.01735037937760353, + 0.007387729361653328, + 0.002062632469460368, + -0.01987137459218502, + -0.00270467740483582, + 0.009598655626177788, + 0.006450782064348459, + -0.007994385436177254, + 0.007758463732898235, + -0.0036433099303394556, + 0.004273558966815472, + -0.01466760877519846, + 0.022001413628458977, + -0.0148428650572896, + 0.011647806502878666, + 0.013575626537203789, + -0.00492402957752347, + -0.011755656450986862, + 0.004384778905659914, + 0.01352844201028347, + -0.00281589780934155, + 0.006346302106976509, + 0.012119650840759277, + -0.01180284097790718, + -0.0027383805718272924, + -0.0028057866729795933, + 0.013124004937708378, + 0.004189300816506147, + -0.007387729361653328, + 0.020653286948800087, + -0.003230446483939886, + -0.017916591838002205, + -0.0021131872199475765, + -0.0012925155460834503, + 0.013171188533306122, + -0.001112203812226653, + 0.010946781374514103, + -0.027798352763056755, + 0.012139872647821903, + 0.00321359490044415, + 0.013966582715511322, + 0.013831770978868008, + 0.0015090582892298698, + 0.007589948363602161, + -0.008486451581120491, + -0.0045027402229607105, + 0.001828395645134151, + 0.02360568195581436, + 0.011223146691918373, + -0.000873754033818841, + 0.004010674078017473, + 0.022405849769711494, + 0.008978517726063728, + -0.012591495178639889, + -0.007596688810735941, + 0.0056722392328083515, + -0.00862126424908638, + 0.014627165161073208, + 0.003923045936971903, + -0.005776719190180302, + 0.003333240980282426, + -0.0003182840591762215, + -0.012092688120901585, + -0.009214439429342747, + -0.020100556313991547, + 0.0024603295605629683, + -0.009221180342137814, + 0.0014062636764720082, + 0.008641486056149006, + -0.016743721440434456, + 0.012840897776186466, + -0.010683896951377392, + 0.004883585497736931, + 0.012180316261947155, + -0.001375088351778686, + 0.0001594580098753795, + 0.0067069255746901035, + 0.01055582519620657, + 0.016258396208286285, + -0.0130431167781353, + -0.010973744094371796, + 0.016649354249238968, + -0.0009327345178462565, + -0.009827837347984314, + 0.018819835036993027, + 0.0059553454630076885, + -0.01644713431596756, + 0.0014189024223014712, + -0.018442360684275627, + 0.0016202786937355995, + -0.01814577355980873, + 0.008216826245188713, + 0.005722793750464916, + -0.0006871228688396513, + 0.003768011461943388, + 0.017633484676480293, + 0.009693024680018425, + -0.017269492149353027, + -0.0018991722026839852, + -0.017161641269922256, + 0.03497038409113884, + 0.0032489830628037453, + 0.03788233548402786, + 0.015436040237545967, + 0.009490805678069592, + -0.006619297433644533, + -0.0014922067057341337, + -0.0005796941113658249, + 0.01790311001241207, + -0.028445454314351082, + -0.010185089893639088, + -0.005375651642680168, + -0.008014608174562454, + -0.0010835560970008373, + 0.006595705170184374, + 0.006882182322442532, + -0.007960682734847069, + 0.021853119134902954, + -0.010967003181576729, + -0.017121197655797005, + -0.020060110837221146, + 0.0006083417683839798, + 0.04184582456946373, + 0.003559052012860775, + 0.003360203467309475, + -0.013204892165958881, + 0.007192251272499561, + -0.007131585385650396, + -0.008506673388183117, + -8.330996206495911e-5, + -0.005820533260703087, + 0.01814577355980873, + -0.00601264089345932, + 0.01907598040997982, + -0.0002548800257500261, + -0.004539813380688429, + -0.006383375730365515, + -0.0035186083987355232, + -0.009672802872955799, + 0.009713246487081051, + -0.013589108362793922, + 0.028661154210567474, + -0.009173995815217495, + -0.0068417382426559925, + 0.005021768622100353, + -0.004580257460474968, + -0.004742032382637262, + -0.0011273701675236225, + -0.0008400508668273687, + 0.026045789942145348, + -0.004202782176434994, + -0.010582786984741688, + -0.0108658941462636, + -0.0009150403784587979, + 0.013002673164010048, + 0.016474097967147827, + 0.021206019446253777, + -0.0120589854195714, + -0.024630257859826088, + 0.012193798087537289, + 0.0032793160062283278, + -0.007657354231923819, + -0.005379022099077702 + ], + "d79773d0-4aed-4f57-b8d7-c055a16f53e0": [ + 0.006415612064301968, + -0.020809512585401535, + -0.011370631866157055, + 0.001167099573649466, + -0.028756389394402504, + -0.004373923875391483, + 0.027028808370232582, + 0.03263559564948082, + -0.04240429028868675, + 0.05418325960636139, + 0.010012123733758926, + 0.018092496320605278, + 0.02137490175664425, + -0.024971414357423782, + 0.0025521100033074617, + 0.0544973649084568, + -0.018438013270497322, + 0.030656730756163597, + -0.019553089514374733, + -0.013687161728739738, + 0.05638200044631958, + 0.012587791308760643, + -0.02894485369324684, + 0.02234863117337227, + 0.012430738657712936, + -0.01344372984021902, + 0.008504415862262249, + -0.004103007726371288, + -0.03027980402112007, + 0.018186727538704872, + 0.015265543945133686, + 0.025788089260458946, + 0.009650901891291142, + 0.014480279758572578, + 0.05440313369035721, + -0.01751140132546425, + -0.0038811704143881798, + 0.01426040567457676, + -0.017370052635669708, + -0.0003614671004470438, + -0.02270985208451748, + 0.011260694824159145, + 0.0015214502345770597, + 0.0022419304586946964, + -0.052172981202602386, + 0.02201882004737854, + -0.005834516137838364, + -0.020888037979602814, + 0.006462727673351765, + 0.020165594294667244, + 0.022458568215370178, + -0.05057103931903839, + 0.006678675301373005, + 0.01823384501039982, + 0.006113285198807716, + -0.01751140132546425, + -0.0026620470453053713, + 0.022552799433469772, + -0.01458236388862133, + -0.008080372586846352, + 0.0006787630845792592, + -0.015399038791656494, + -0.03238431364297867, + 0.0020966564770787954, + -0.029431717470288277, + -0.022474272176623344, + 0.01059321966022253, + 0.0011828048154711723, + -0.04036260023713112, + 0.005571452435106039, + 0.005850221496075392, + 0.016584789380431175, + -0.006494138389825821, + 0.008779258467257023, + -0.025536805391311646, + 0.005673536565154791, + 0.07808671146631241, + -0.014197584241628647, + 0.011559095233678818, + -0.00045594427501782775, + -0.0013742130249738693, + 0.005669610574841499, + 0.004040186293423176, + -0.010601072572171688, + 0.05195310711860657, + -0.009603786282241344, + -0.04058247432112694, + -0.04645625501871109, + 0.018500834703445435, + -0.016741842031478882, + -0.005952305626124144, + 0.007758414372801781, + 0.019772963598370552, + 0.004499566275626421, + -0.019663026556372643, + 0.026981692761182785, + 0.025615330785512924, + 0.004519197624176741, + 0.004291471093893051, + -0.02613360621035099, + 0.005591083783656359, + 0.030091339722275734, + -0.05135630443692207, + 0.030876604840159416, + 0.004091228824108839, + 0.005347651895135641, + 0.03128494322299957, + -0.021924586966633797, + -0.03631063550710678, + 0.07268409430980682, + -0.008747847750782967, + -0.029321780428290367, + 0.019176160916686058, + 0.012697728350758553, + -0.024751540273427963, + -0.08531114459037781, + 0.012265833094716072, + -0.009917891584336758, + 0.012281538918614388, + -0.01751140132546425, + 0.038352321833372116, + 0.04353506863117218, + -0.009556670673191547, + -0.0025854837149381638, + -0.041242096573114395, + 0.03527408465743065, + 0.028960559517145157, + -0.012226570397615433, + 0.005602863151580095, + 0.014441016130149364, + -0.03417471423745155, + -0.020055657252669334, + -0.024484550580382347, + 0.012493560090661049, + -0.016584789380431175, + 0.022694146260619164, + -0.01290189754217863, + 0.033483684062957764, + -0.0452626533806324, + 0.02682463824748993, + -0.0386350192129612, + -0.05418325960636139, + -0.009721576236188412, + -0.014448869042098522, + 0.002073098672553897, + 0.025678152218461037, + -0.05173323303461075, + 0.06558530032634735, + -0.021092208102345467, + 0.006164327263832092, + -0.036656152456998825, + -0.0262435432523489, + 0.02143772318959236, + -0.0011013336479663849, + -0.027232976630330086, + 0.0013928631087765098, + -0.011378483846783638, + -0.007016339339315891, + 0.015909461304545403, + 0.02585091069340706, + 0.03250995650887489, + -0.05917754024267197, + -0.011755411513149738, + -0.003806570079177618, + 0.04592227563261986, + 0.01776268519461155, + 0.026055078953504562, + 0.05537686124444008, + -0.04350366070866585, + 0.016584789380431175, + 0.018422307446599007, + 0.0023479412775486708, + -0.013600783422589302, + -0.016380619257688522, + 0.01685177907347679, + -0.018422307446599007, + 0.02743714489042759, + 0.04573380947113037, + -0.025788089260458946, + -0.046299200505018234, + -0.011904611252248287, + -0.04193313047289848, + 0.0044563766568899155, + -0.007683814037591219, + 0.025725267827510834, + 0.024877183139324188, + -0.0010689414339140058, + -0.019663026556372643, + 0.029730118811130524, + 0.02259991504251957, + -0.012006696313619614, + 0.0010777757270261645, + 0.003796754404902458, + 0.008527973666787148, + -0.015406891703605652, + -0.02140631340444088, + 0.011449158191680908, + -0.016521967947483063, + -0.010216292925179005, + 0.018940582871437073, + -0.010765978135168552, + -0.02837946265935898, + -0.04419469088315964, + 0.037127312272787094, + -0.010734567418694496, + -0.021924586966633797, + -0.018752118572592735, + -0.01901910826563835, + 0.04645625501871109, + -0.03093942627310753, + 0.03250995650887489, + -0.03222725912928581, + 0.011472715996205807, + -0.014331079088151455, + -0.008048961870372295, + 0.01656908355653286, + -0.04444597661495209, + 0.020165594294667244, + 0.0030114897526800632, + -0.04984859749674797, + -0.00810393039137125, + -0.01268987637013197, + -0.01100941002368927, + -0.021531956270337105, + 0.0009050174849107862, + 0.003784975502640009, + -0.007723077200353146, + 0.040990810841321945, + -0.010671745985746384, + -0.0020632827654480934, + 0.023149600252509117, + 0.018971992656588554, + -0.021830355748534203, + -0.009713723324239254, + -0.02281978912651539, + 0.006596222519874573, + 0.006525549106299877, + 0.030122749507427216, + 0.015391185879707336, + -0.021830355748534203, + 0.01945885643362999, + 0.021123617887496948, + 0.015728849917650223, + 0.01005138736218214, + 0.01887776143848896, + 0.04959731176495552, + 0.026432007551193237, + 0.02096656523644924, + 0.042938269674777985, + -0.028756389394402504, + 0.026149312034249306, + 0.01407979428768158, + 0.005496852099895477, + -0.02101368084549904, + -0.023448001593351364, + 0.05898907780647278, + -0.006796465255320072, + -0.03684461489319801, + -0.00852012075483799, + -0.04353506863117218, + -0.014715858735144138, + 0.029824350029230118, + 0.03728436306118965, + -0.006411685608327389, + 0.03354650363326073, + -0.043409425765275955, + 0.033232398331165314, + -0.018202433362603188, + 0.020259827375411987, + 0.08015981316566467, + 0.012155896052718163, + 0.01534407027065754, + -0.007381487172096968, + -0.020055657252669334, + -0.03225867077708244, + -0.011614063754677773, + 0.031347762793302536, + -0.006965297274291515, + 0.0086300577968359, + -0.010907324962317944, + -0.0157052930444479, + 0.006592296529561281, + 0.021359197795391083, + 0.019804373383522034, + -0.042906858026981354, + -0.006482359487563372, + -0.04312673211097717, + -0.019003404304385185, + -0.0503825768828392, + -0.015132049098610878, + -0.015454007312655449, + 0.027766956016421318, + 0.0033844904974102974, + -0.00492753554135561, + 0.01377354096621275, + 0.019663026556372643, + 0.012846929021179676, + -0.0068946233950555325, + -0.01790403388440609, + 0.021531956270337105, + -0.06241283193230629, + 0.008637910708785057, + 0.016773251816630363, + -0.010805240832269192, + -0.024751540273427963, + 0.013161035254597664, + 0.029431717470288277, + -0.013522256165742874, + -0.03364073485136032, + 0.030813783407211304, + 0.027892598882317543, + -0.02021271176636219, + 0.008944164030253887, + -0.005555747076869011, + -0.026400595903396606, + -0.005520410370081663, + 0.04187030717730522, + 0.017118768766522408, + -0.025175582617521286, + -0.012988276779651642, + 0.03367214649915695, + 0.00799399334937334, + -0.04830947890877724, + 0.02793971449136734, + 0.006910328753292561, + -0.03075096197426319, + 0.017589926719665527, + -0.028206704184412956, + -0.04479149356484413, + -0.0010316413827240467, + -0.00340608530677855, + -0.037818342447280884, + -0.017165884375572205, + -0.014228994958102703, + -0.010711009614169598, + -0.06294681131839752, + -0.03436318039894104, + -0.03411189466714859, + -0.004000923130661249, + -0.0602140910923481, + 0.006046537309885025, + -0.0228826105594635, + -0.012265833094716072, + -0.009729428216814995, + 0.016333503648638725, + -0.008418036624789238, + -0.021029386669397354, + 0.033232398331165314, + -0.006317453924566507, + -0.0002841676177922636, + 0.0009658754570409656, + -0.019537383690476418, + 0.020746691152453423, + -0.010671745985746384, + 0.06872636079788208, + -0.027782661840319633, + 0.017746979370713234, + -0.02040117420256138, + 0.036656152456998825, + 0.020809512585401535, + 0.009831513278186321, + -0.028567926958203316, + -0.03775552287697792, + -0.02429608628153801, + 0.0035003169905394316, + -0.003788901725783944, + -0.03605934977531433, + -0.028457989916205406, + 0.005987642798572779, + 0.016286388039588928, + -0.004758703522384167, + 0.017055947333574295, + 0.043692123144865036, + -0.046047914773225784, + -0.007573876995593309, + -0.025709563866257668, + 0.036027941852808, + -0.026337774470448494, + -0.017746979370713234, + 0.010671745985746384, + -0.023149600252509117, + 0.03461446240544319, + 0.019725846126675606, + -0.004424965940415859, + -0.00994145032018423, + 0.012949013151228428, + -0.00998071301728487, + 0.003983254544436932, + -0.01458236388862133, + 0.013003981672227383, + -0.015618912875652313, + 0.04089657962322235, + -0.045105598866939545, + 0.016726136207580566, + -0.03338945284485817, + 0.00672186492010951, + 0.017087357118725777, + 0.036184992641210556, + 0.01779409684240818, + -0.004801893141120672, + -0.023055369034409523, + 0.005108146462589502, + 0.027390029281377792, + 0.04541970416903496, + -0.002630636328831315, + -0.035933706909418106, + -0.0051905992440879345, + -0.013946299441158772, + 0.019411740824580193, + 0.0283009372651577, + -0.0032843691296875477, + 0.01985148899257183, + -0.014174026437103748, + -0.002824989380314946, + 0.03684461489319801, + -0.018705002963542938, + -0.0015921239973977208, + 0.010004270821809769, + -0.03310675546526909, + -0.04890628159046173, + 0.007479645311832428, + 0.0468645915389061, + -0.003111611120402813, + 0.01120572630316019, + -0.0013074656017124653, + 0.016254978254437447, + 0.03288688138127327, + -0.0007970435544848442, + -0.0228826105594635, + -0.0334208607673645, + 0.024091918021440506, + 0.01988290064036846, + -0.0045231240801513195, + -0.008096078410744667, + -0.019898604601621628, + -0.04925179481506348, + -0.01671043038368225, + 0.01290189754217863, + -0.02270985208451748, + 0.012438591569662094, + 0.02652623876929283, + 0.04472867026925087, + -0.011111494153738022, + 0.025097057223320007, + -0.023181011900305748, + -0.027955420315265656, + -0.06495708972215652, + 0.028096767142415047, + 0.030625319108366966, + -0.013647899031639099, + -0.010765978135168552, + 0.027955420315265656, + -0.04818383604288101, + -0.003635775065049529, + 0.017589926719665527, + -0.033043935894966125, + 0.02079380676150322, + -0.03967156633734703, + 0.015830934047698975, + -0.040268369019031525, + -0.015210575424134731, + -0.018500834703445435, + 0.018579360097646713, + 0.006352790631353855, + 0.03725295141339302, + -0.014896469190716743, + -0.0026561575941741467, + 0.030122749507427216, + 0.013545814901590347, + 0.003710375167429447, + -0.014990701340138912, + -0.01645914651453495, + -0.025254109874367714, + 0.02371499128639698, + 0.004228650126606226, + 0.006490211933851242, + -0.011739705689251423, + 0.009910039603710175, + 0.012242275290191174, + -0.0034119747579097748, + -0.03382920101284981, + -0.033734966069459915, + -0.0027778735384345055, + 0.018092496320605278, + 0.002493215026333928, + -0.0259922593832016, + 0.026227837428450584, + -0.034457411617040634, + -0.008543678559362888, + 0.002652231138199568, + 0.009792249649763107, + -0.025898026302456856, + 0.01704024150967598, + 0.03631063550710678, + 0.03816385939717293, + -0.0071144974790513515, + -0.0040990812703967094, + -0.0185165386646986, + -0.005952305626124144, + -0.005418325774371624, + -0.009219006635248661, + -0.031599048525094986, + 0.02043258585035801, + 0.0008318896871060133, + -0.012038106098771095, + -0.016270682215690613, + -0.001283907680772245, + -0.014181878417730331, + -0.008001846261322498, + -0.004821524489670992, + -0.03345227241516113, + -0.0028603263199329376, + 0.003594548674300313, + 0.02035405859351158, + -0.00810393039137125, + -0.020259827375411987, + -0.02563103660941124, + 0.0013987525599077344, + 0.024955708533525467, + 0.0055086310021579266, + 0.010004270821809769, + -0.014448869042098522, + -0.004044112749397755, + 0.00996500812470913, + 0.004044112749397755, + -0.020982271060347557, + 0.024751540273427963, + -0.019113341346383095, + -0.008606499992311, + -0.00724799232557416, + -0.008873489685356617, + 0.009006985463202, + -0.005222009494900703, + -0.0073186662048101425, + 0.033954840153455734, + 0.003773196367546916, + -0.023181011900305748, + 0.01236006524413824, + 0.015823081135749817, + 0.043943408876657486, + -0.03671897202730179, + 0.007161613088101149, + -0.02115502767264843, + 0.0014311447739601135, + -0.012257980182766914, + 0.024892888963222504, + 0.013632193207740784, + 0.03320098668336868, + -0.026117900386452675, + 0.007295108400285244, + -0.02866215817630291, + 0.015901608392596245, + -0.0019877010490745306, + -0.015673881396651268, + -0.010459724813699722, + -0.02891344204545021, + 0.03125353157520294, + -0.021877471357584, + -0.016302093863487244, + -0.03250995650887489, + -0.013616488315165043, + 0.013019687496125698, + 0.001529302797280252, + 0.028583630919456482, + 0.004790114238858223, + 0.004389629233628511, + 0.00040416588308289647, + 0.02454737201333046, + 0.005649978760629892, + 0.004468155559152365, + 0.002124140737578273, + 0.01884634979069233, + 0.0329182930290699, + 0.006093653384596109, + -0.01751140132546425, + 0.016223566606640816, + -0.0008500489639118314, + 0.0005933655775152147, + 1.2154730939073488e-5, + -0.008237426169216633, + 0.04397481679916382, + -0.026903165504336357, + -0.005068882834166288, + -0.03046826645731926, + -0.013922741636633873, + -0.020856628194451332, + -0.015650324523448944, + -0.014174026437103748, + 0.03313816711306572, + 0.02332235872745514, + 0.008425889536738396, + 0.019254688173532486, + 0.009431027807295322, + 0.028489399701356888, + -0.014519542455673218, + 0.026227837428450584, + -0.0009467346244491637, + 0.018108202144503593, + 0.0014655000995844603, + 0.002821063157171011, + 0.02151625044643879, + 0.038792070001363754, + 0.005339799448847771, + -0.025332637131214142, + -0.010561808943748474, + 0.031237825751304626, + 0.0011700442992150784, + 0.03235290199518204, + 0.030923720449209213, + 0.03079807758331299, + -0.03973438963294029, + 0.016836073249578476, + 0.011645474471151829, + -0.031646162271499634, + 0.018061086535453796, + -0.0056656841188669205, + -0.008763552643358707, + 0.034017663449048996, + 0.02432749792933464, + -0.04303250089287758, + -0.001641203067265451, + -0.004138344433158636, + 0.041461970657110214, + -0.016836073249578476, + 0.020856628194451332, + 0.020730985328555107, + -0.007797677535563707, + -0.009344648569822311, + -0.03744141757488251, + -0.011370631866157055, + 0.021971704438328743, + -0.004177607595920563, + 0.010192734189331532, + -0.04667612910270691, + 0.0036612963303923607, + 0.0015018185367807746, + 0.016145041212439537, + -0.01938033103942871, + -0.016883188858628273, + -0.009910039603710175, + -0.030342623591423035, + 0.007966509088873863, + -9.39403435040731e-6, + 0.03200738504528999, + -0.00042109814239665866, + 0.011653326451778412, + -0.012532822787761688, + 0.012823371216654778, + 0.030892308801412582, + 0.020621048286557198, + -0.007134128827601671, + -0.006482359487563372, + -0.007534613832831383, + 0.017354348674416542, + 0.006152548361569643, + -0.03850937634706497, + -0.012846929021179676, + 0.004750851076096296, + -0.006274264305830002, + 0.00388902286067605, + 0.01017702929675579, + -0.02277267351746559, + 0.0065176961943507195, + 0.018579360097646713, + -0.013223855756223202, + 0.021783240139484406, + -0.005920895375311375, + 0.006725791376084089, + -0.009140480309724808, + 0.023306652903556824, + 0.0037044857162982225, + -0.0029683001339435577, + 0.03596511855721474, + 0.05028834566473961, + -0.015783818438649178, + -0.01124498900026083, + 0.011457010172307491, + -0.011017262004315853, + -0.012501413002610207, + 0.008904900401830673, + -0.020244121551513672, + -0.016804663464426994, + -0.024484550580382347, + 0.022191578522324562, + 0.03360932692885399, + -0.0018169060349464417, + -0.007876204326748848, + -0.006600148975849152, + 0.011543389409780502, + -0.0063135274685919285, + -0.0004309139621909708, + -0.005999421700835228, + -0.004970725160092115, + -0.00021619316248688847, + -0.015838786959648132, + 0.00924256443977356, + 0.01071886159479618, + 0.004680177196860313, + 0.0068749915808439255, + -0.008732142858207226, + -0.029698707163333893, + 0.009187595918774605, + -0.007271550130099058, + -0.018108202144503593, + -0.011794674210250378, + -0.0034669432789087296, + -0.024500256404280663, + -0.017998265102505684, + 0.01523413322865963, + 0.0047940402291715145, + -0.0010444018989801407, + 0.014236846938729286, + -0.003706448944285512, + 0.0020397247280925512, + 0.03235290199518204, + 0.01144130527973175, + -0.00267578917555511, + -0.004919682629406452, + -0.006890696939080954, + -0.013977710157632828, + -0.005826663225889206, + 0.022945431992411613, + -0.01120572630316019, + -0.019757257774472237, + -0.03370355814695358, + -0.0060426113195717335, + 0.007499277126044035, + -0.0020554300863295794, + 0.01501425914466381, + 0.0004912811564281583, + 0.040048494935035706, + -0.012454296462237835, + -0.0020014431793242693, + 0.005591083783656359, + -0.021751830354332924, + -0.019584499299526215, + 0.0024991047102957964, + 0.021107912063598633, + 0.020668163895606995, + -0.02660476416349411, + 0.029871465638279915, + 0.009423174895346165, + 0.025426868349313736, + -0.014668743126094341, + 0.018689297139644623, + 0.030012812465429306, + 0.040519654750823975, + 0.0019592351745814085, + 0.01743287406861782, + 0.012485707178711891, + 0.04180748760700226, + -0.028787801042199135, + 0.022505683824419975, + 0.039326053112745285, + -0.017134474590420723, + 0.0020927302539348602, + 0.0035827697720378637, + 0.0028073210269212723, + -0.01967873051762581, + 0.018532244488596916, + -0.001146486378274858, + 0.028112472966313362, + 0.017103062942624092, + 0.008378772996366024, + -0.024641603231430054, + -0.03436318039894104, + -0.002010277472436428, + 0.028646452352404594, + 0.019113341346383095, + -0.025709563866257668, + 0.02585091069340706, + 0.04136773943901062, + 0.027421440929174423, + 0.011276399716734886, + -0.03329521790146828, + -0.029007675126194954, + 0.008135341107845306, + 0.002069172216579318, + -0.043660711497068405, + -0.027594197541475296, + 0.00806466769427061, + -0.020228415727615356, + -0.011080083437263966, + -0.009195448830723763, + -0.005021767225116491, + -0.010616777464747429, + 0.035399727523326874, + -0.014307521283626556, + -0.010467576794326305, + -0.0021692935843020678, + 0.008881342597305775, + 0.017087357118725777, + 0.004495639819651842, + 0.01982007920742035, + 0.002455915091559291, + -0.022552799433469772, + 0.022222988307476044, + -0.03379778936505318, + -0.010035681538283825, + 0.023589348420500755, + 0.014637332409620285, + -0.02732720784842968, + -0.0010581440292298794, + 0.013106066733598709, + 0.013640046119689941, + -0.021280670538544655, + -0.009305385872721672, + 0.027421440929174423, + -0.007302960846573114, + 0.029337486252188683, + -0.010365492664277554, + -0.022144461050629616, + -0.025458278134465218, + 0.037598468363285065, + -0.026227837428450584, + 0.007711298298090696, + -0.00021349381131585687, + 0.013585077598690987, + -0.008637910708785057, + 0.013671456836163998, + -0.012933308258652687, + 0.024390319362282753, + 0.015603207983076572, + -0.007620993070304394, + -0.035399727523326874, + -0.017825506627559662, + 0.010671745985746384, + -0.013192445039749146, + 0.00638812780380249, + 0.020982271060347557, + 0.013168887235224247, + -0.00014122492575552315, + -0.009156185202300549, + 0.03269841894507408, + -0.013051098212599754, + 0.045137010514736176, + -0.01344372984021902, + -0.0007489460986107588, + -0.03027980402112007, + 0.03332662954926491, + -0.040079906582832336, + -0.02638489007949829, + -0.025615330785512924, + -0.025693858042359352, + 0.007059528958052397, + -0.04428892210125923, + 0.003940065391361713, + -0.01153553742915392, + 0.02335376851260662, + 0.012878339737653732, + 0.01268987637013197, + -0.0014056236250326037, + -0.0017521216068416834, + 0.00673364382237196, + -0.0062271482311189175, + 0.03225867077708244, + -0.009682312607765198, + 0.022568505257368088, + -0.0102869663387537, + 0.01960020512342453, + 0.03530549630522728, + 0.010915177874267101, + -0.027232976630330086, + -0.02346370555460453, + 0.005410473328083754, + -0.007750561460852623, + -0.021893177181482315, + 0.012564233504235744, + -0.005583231337368488, + 0.008363068103790283, + 0.014935732819139957, + -0.007357929367572069, + -0.015595355071127415, + 0.012462149374186993, + 0.011849642731249332, + -0.03461446240544319, + -0.022584209218621254, + -0.022678442299365997, + -0.008143194019794464, + -0.018029674887657166, + -0.004036260303109884, + -0.021343491971492767, + -0.01768415980041027, + -0.016160745173692703, + -0.03379778936505318, + 0.01512419618666172, + 0.04683317989110947, + -0.0001964388502528891, + 0.011881053447723389, + 0.015171311795711517, + 0.0032058428041636944, + 0.009234711527824402, + -0.03294970467686653, + -0.020055657252669334, + -0.022756967693567276, + -0.002385241212323308, + 0.0031567637342959642, + -0.008048961870372295, + -0.02410762384533882, + -0.006882844492793083, + -0.008033256977796555, + -0.01815531775355339, + -0.02220728248357773, + 0.000839251559227705, + 0.022647030651569366, + -0.028709273785352707, + 0.005163114983588457, + 0.013789246790111065, + -0.010930883698165417, + 0.010169176384806633, + 0.02018130011856556, + 0.008834226988255978, + 0.003237253287807107, + -0.0236835815012455, + 0.008739994838833809, + -0.0032235111575573683, + 0.013113918714225292, + -0.02472013048827648, + -0.0009236675105057657, + -0.02274126373231411, + 0.014747269451618195, + -0.009800102561712265, + 0.000670910463668406, + -0.006631559692323208, + 0.00267578917555511, + 0.008166751824319363, + -0.02115502767264843, + -0.005649978760629892, + 0.008386625908315182, + 0.0005251457332633436, + -0.02118643932044506, + 0.003360932460054755, + 0.0015155606670305133, + 0.0005545931053347886, + 0.0316147543489933, + -0.0034669432789087296, + -0.016804663464426994, + 0.007805529981851578, + -0.018783530220389366, + -0.004723366815596819, + -0.0007705409079790115, + -0.021893177181482315, + 0.031143594533205032, + -0.007016339339315891, + 0.012281538918614388, + 0.009682312607765198, + -0.005520410370081663, + 0.04193313047289848, + 0.0027307576965540648, + 0.008920606225728989, + -0.0040284073911607265, + -0.006242853589355946, + -0.012132338248193264, + -0.027766956016421318, + 0.0026325995568186045, + 0.035211265087127686, + -0.004122639074921608, + -0.003506206441670656, + -0.00037250990862958133, + -0.00030306304688565433, + 0.001204399624839425, + 0.002903515938669443, + 0.036404866725206375, + -0.0035238750278949738, + -0.03709590062499046, + -0.004417113494127989, + -0.046801771968603134, + 0.005512557458132505, + -0.042655572295188904, + 0.008504415862262249, + -0.009910039603710175, + -0.033954840153455734, + -0.022364335134625435, + -0.006545180454850197, + -0.02154766023159027, + -0.006128990091383457, + -0.013349498622119427, + -0.01790403388440609, + -0.031096478924155235, + 0.005909116007387638, + 0.025034235790371895, + -0.022364335134625435, + -0.002775910310447216, + -0.02143772318959236, + -0.02446884475648403, + 0.011488420888781548, + -0.011629768647253513, + 0.004063744563609362, + -0.006655117496848106, + -0.0073186662048101425, + -0.01081309374421835, + -0.03627922385931015, + 0.019034814089536667, + 0.01373427826911211, + 0.011731852777302265, + 0.008645763620734215, + 0.013522256165742874, + -0.012501413002610207, + 0.007102718576788902, + -0.038320913910865784, + -0.014605921693146229, + -0.002717015566304326, + -0.04529406130313873, + 0.021123617887496948, + 0.031457699835300446, + 0.027060218155384064, + -0.005214157048612833, + -0.018328076228499413, + -2.8159098292235285e-5, + 0.01988290064036846, + -0.006019053049385548, + 0.0043699974194169044, + 0.0056460523046553135, + 0.0009850163478404284, + 0.017746979370713234, + 0.043911997228860855, + 0.01715017855167389, + -0.049691542983055115, + -0.0006964315543882549, + 0.017888328060507774, + -0.012878339737653732, + -0.007880130782723427, + 0.0005678444867953658, + -0.00662370678037405, + 0.0031724690925329924, + 0.009085511788725853, + -0.005638199858367443, + 0.010585366748273373, + 0.008496562950313091, + 0.0019494193838909268, + -0.0115669472143054, + -0.025599626824259758, + -0.009219006635248661, + -0.004067670553922653, + -0.009650901891291142, + -0.009933597408235073, + -0.025348341092467308, + -0.04959731176495552, + -0.008614352904260159, + 0.009124774485826492, + 0.01120572630316019, + -0.013592930510640144, + 0.008237426169216633, + 0.002173219807446003, + 0.0149278799071908, + 0.0005055140936747193, + -0.012768402695655823, + -0.008575089275836945, + 0.013632193207740784, + 0.009572375565767288, + 0.04234146699309349, + -0.003323632525280118, + 0.002913331612944603, + -0.020558226853609085, + 0.014111205004155636, + 0.012572086416184902, + 0.008991279639303684, + 0.004507418721914291, + 0.01707165315747261, + 0.04117927700281143, + -0.004758703522384167, + 0.02913331612944603, + 0.028646452352404594, + -0.02710733376443386, + 0.010129913687705994, + -0.004864714108407497, + -0.031143594533205032, + -0.0172601155936718, + -0.0249400045722723, + -0.021390607580542564, + -0.009109069593250751, + 0.02718586102128029, + 0.0023086778819561005, + 0.023259537294507027, + -0.01685177907347679, + 0.03574524447321892, + 0.014982848428189754, + 0.010365492664277554, + 0.018359486013650894, + -0.010993704199790955, + 0.009595933370292187, + -0.012493560090661049, + -0.017479989677667618, + -0.001907211379148066, + -0.023369474336504936, + -0.010231997817754745, + 0.0031999533530324697, + 0.012179453857243061, + -0.029573064297437668, + 0.0015322475228458643, + -0.024814361706376076, + 0.005779547616839409, + -0.0037025227211415768, + 0.007624919526278973, + -0.009101216681301594, + 0.00028073208522982895, + 0.004860788118094206, + 0.0787777453660965, + 0.017479989677667618, + 0.004558461252599955, + 0.01678895764052868, + -0.011731852777302265, + 0.021751830354332924, + 0.021092208102345467, + -0.0010601072572171688, + 0.04334660619497299, + -0.024233266711235046, + -0.0004824469506274909, + -0.010962293483316898, + 0.0036593331024050713, + 0.01790403388440609, + 0.02248997800052166, + 0.011826084926724434, + 0.036184992641210556, + 0.010553956031799316, + 0.014441016130149364, + 0.016663314774632454, + -0.0009374096407555044, + 0.0033943061716854572, + -0.010310524143278599, + -0.002471620449796319, + -0.017888328060507774, + -0.002738610375672579, + -0.0027209417894482613, + -0.0014174026437103748, + 0.004189386498183012, + -0.0037516015581786633, + 0.031787510961294174, + 0.037849754095077515, + 0.029007675126194954, + 0.03354650363326073, + 0.00956452265381813, + 0.027924008667469025, + 0.0018836534582078457, + 0.005689241923391819, + -0.007954730652272701, + -0.011488420888781548, + -0.00599156878888607, + -0.0036220329347997904, + 0.006443096324801445, + -0.026683291420340538, + 0.008543678559362888, + 0.012422885745763779, + 0.012744844891130924, + 0.00994145032018423, + -0.027924008667469025, + -0.022945431992411613, + -0.0035592117346823215, + -0.00029005712713114917, + -0.006509843748062849, + -0.003025231882929802, + 0.010624630376696587, + -0.022552799433469772, + 0.007546392735093832, + -0.03414330631494522, + -0.009823660366237164, + -0.005139556713402271, + -0.005759915802627802, + 0.043943408876657486, + 0.012108780443668365, + -0.04724152013659477, + -0.00821386743336916, + 0.01776268519461155, + -0.037127312272787094, + -0.012375770136713982, + -0.03370355814695358, + 0.0129961296916008, + -0.029541654512286186, + -0.021893177181482315, + -0.015469713136553764, + -0.003266700776293874, + -0.010781683027744293, + 0.024971414357423782, + 0.025395456701517105, + -0.004688029643148184, + -0.004036260303109884, + -0.032824061810970306, + -0.010711009614169598, + 0.032824061810970306, + -0.004036260303109884, + 0.0007381487521342933, + -0.013396614231169224, + 0.0031135741155594587, + 0.003651480423286557, + 0.010820946656167507, + 0.014629479497671127, + -0.009611639194190502, + -0.008229573257267475, + 0.006019053049385548, + 0.010765978135168552, + -0.026683291420340538, + -0.018799234181642532, + -0.028787801042199135, + 0.006077948026359081, + 0.010820946656167507, + 0.009611639194190502, + -0.001865003490820527, + -0.014362489804625511, + -0.006034758407622576, + 0.033263809978961945, + 0.004825450945645571, + 0.013742130249738693, + -0.01216374896466732, + -0.012305096723139286, + -0.005862000398337841, + -0.03285546973347664, + -0.017966853454709053, + 0.007915467023849487, + 0.012760549783706665, + 0.00587377930060029, + 0.0013732315273955464, + -0.00767203513532877, + 0.01059321966022253, + -0.010946588590741158, + 0.01642773486673832, + 0.008221720345318317, + 0.02465730905532837, + -0.00832380447536707, + 0.010389050468802452, + 0.010491135530173779, + 0.010907324962317944, + 0.02137490175664425, + 0.035431139171123505, + 0.010082797147333622, + -0.0041147866286337376, + -0.012477854266762733, + -0.0040480392053723335, + 0.01342802494764328, + 0.0113156633451581, + -0.0038792071864008904, + -0.020118478685617447, + 0.022945431992411613, + 0.001566602848470211, + 0.012807665392756462, + -0.018312370404601097, + -0.02602366916835308, + -0.016993125900626183, + -0.00914833229035139, + 0.008457300253212452, + 7.165539864217862e-5, + 0.00661585433408618, + 0.000920231977943331, + -0.008206015452742577, + -0.03744141757488251, + 0.015187017619609833, + 0.014323226176202297, + -0.02713874541223049, + -0.007601361256092787, + 0.002077024895697832, + 0.011457010172307491, + -0.027625609189271927, + -0.00524164130911231, + 0.008355215191841125, + -0.011543389409780502, + -0.023259537294507027, + -0.001557768671773374, + -0.0406452976167202, + 0.003995033912360668, + -0.016082219779491425, + 0.006619780790060759, + -0.03002851828932762, + 0.01250926498323679, + -0.0019474562723189592, + 0.0037457121070474386, + -0.05434031039476395, + -0.020668163895606995, + 0.017212999984622, + -0.0035003169905394316, + -0.024563077837228775, + -0.01715017855167389, + -0.01884634979069233, + 0.008096078410744667, + 0.008810669183731079, + 0.026683291420340538, + -0.01501425914466381, + 0.016380619257688522, + -0.023997686803340912, + -0.010294819250702858, + 0.015210575424134731, + -0.016380619257688522, + 0.02101368084549904, + 0.021422019228339195, + 0.01779409684240818, + -0.029761528596282005, + -0.01812390796840191, + 0.008724289946258068, + -0.013899183832108974, + 0.0025089203845709562, + -0.015375480987131596, + -0.00241861492395401, + 0.015469713136553764, + -0.0012534785782918334, + 0.0017570295603945851, + 0.023840634152293205, + -0.0013280787970870733, + 0.01606651395559311, + 0.012100927531719208, + -0.008661468513309956, + -0.00893631111830473, + 0.011645474471151829, + -0.02688745968043804, + 0.013938446529209614, + -0.026903165504336357, + 0.005595010239630938, + -0.0006650209543295205, + 0.015689587220549583, + -0.02307107485830784, + -0.005846295040100813, + 0.014574510976672173, + -0.003643627744168043, + -0.007004560437053442, + 0.01988290064036846, + 0.011127199046313763, + 0.0031803217716515064, + -0.023275243118405342, + 0.012391475960612297, + -0.0009423175361007452, + 0.005520410370081663, + -0.017197294160723686, + -0.018689297139644623, + -0.0034001958556473255, + -0.0075424667447805405, + 0.00186107715126127, + 0.014739416539669037, + 0.006761128082871437, + 0.017621338367462158, + 0.0014910211320966482, + 0.03093942627310753, + 0.014739416539669037, + 0.029258958995342255, + -0.002471620449796319, + 0.009171891026198864, + 0.008041109889745712, + 0.011700442992150784, + 0.013812804594635963, + 0.015768112614750862, + 0.007338297553360462, + 0.020039953291416168, + 0.017165884375572205, + -0.027280092239379883, + -0.01884634979069233, + -0.011378483846783638, + -0.00022674514912068844, + -0.0011013336479663849, + -0.0033373746555298567, + -0.0013889367692172527, + 0.0013477103784680367, + 0.008543678559362888, + -0.013388761319220066, + 0.0058855582028627396, + -0.012524970807135105, + 0.003977365326136351, + 0.028740685433149338, + 0.03916899859905243, + -0.001819850760512054, + 0.007279403042048216, + -0.031928859651088715, + 0.0027405733708292246, + -0.01865788735449314, + 0.013647899031639099, + 0.033483684062957764, + -0.02869356796145439, + -0.0059837163425982, + -0.002190888160839677, + -0.005492926109582186, + 0.0032647375483065844, + -0.019081929698586464, + -0.028316641226410866, + -0.0018748192815110087, + -0.007895835675299168, + 0.02815958857536316, + -0.0038006806280463934, + -0.0025089203845709562, + 0.027845483273267746, + -0.03624781593680382, + -0.014205437153577805, + -0.002966337138786912, + 0.018469423055648804, + 0.03505421057343483, + -0.015720997005701065, + -0.01153553742915392, + 0.007373634725809097, + 0.007935099303722382, + 0.001159246894530952, + 0.013192445039749146, + 0.015257691033184528, + -0.012265833094716072, + -0.008614352904260159, + -0.019223278388381004, + -0.014464573934674263, + 0.0009349556639790535, + 0.020039953291416168, + 0.03238431364297867, + 0.0102869663387537, + 0.017370052635669708, + -0.031206415966153145, + 0.008527973666787148, + -0.004998209420591593, + 0.005987642798572779, + -0.009415322914719582, + 0.02118643932044506, + 0.002758241957053542, + 0.009297532960772514, + 0.015838786959648132, + -0.020118478685617447, + -0.011629768647253513, + -0.01581523008644581, + 0.02693457528948784, + -0.016616199165582657, + 0.00683180196210742, + 0.000825018621981144, + -0.011574800126254559, + -0.022285809740424156, + -0.001121946843340993, + 0.0035670644138008356, + 0.0050374725833535194, + -0.014872911386191845, + -0.01901910826563835, + -0.0019759221468120813, + -0.03128494322299957, + -0.0036966330371797085, + -0.008724289946258068, + -0.004735145717859268, + -0.010294819250702858, + 0.016254978254437447, + -0.0014183841412886977, + -0.009273975156247616, + -0.004051965195685625, + -0.003512095892801881, + 0.004530976992100477, + -0.014346783980727196, + 0.0063135274685919285, + 0.009156185202300549, + -0.01205381192266941, + 0.036184992641210556, + -0.0339234322309494, + 0.004574166145175695, + -0.0014115130761638284, + 0.006411685608327389, + 0.006843580864369869, + 0.005755989346653223, + -0.014605921693146229, + -0.0008490673499181867, + -0.012257980182766914, + 0.01754281111061573, + 0.008881342597305775, + -0.005803105421364307, + -0.016804663464426994, + -0.0031567637342959642, + 0.034488823264837265, + -0.017825506627559662, + -0.012517117895185947, + -0.015477565117180347, + 0.016412030905485153, + 0.021469134837388992, + 0.0022831568494439125, + 0.004448524210602045, + -0.008975574746727943, + -0.003635775065049529, + 0.00362399616278708, + -0.0016117555787786841, + -0.020699575543403625, + 0.01323170866817236, + 0.00893631111830473, + -0.00650591729208827, + -0.0057991789653897285, + 0.026667585596442223, + 0.004385702777653933, + 0.007189097348600626, + 0.013302382081747055, + -0.0007828106754459441, + 0.05013129115104675, + -0.02220728248357773, + 0.007224434521049261, + -0.025458278134465218, + 0.005414399318397045, + -0.0016696688253432512, + -0.0037614174652844667, + -0.006816096603870392, + 0.003969512414187193, + 0.018500834703445435, + -0.019647320732474327, + -0.02371499128639698, + 0.013475140556693077, + -0.0025285519659519196, + -0.003814422758296132, + 0.04070811718702316, + 0.02205022983253002, + -0.006659043952822685, + 0.02916472777724266, + -0.01689889468252659, + 0.01577596552670002, + 0.010608924552798271, + -0.0028976264875382185, + 0.00662370678037405, + -0.027499966323375702, + 0.004790114238858223, + -0.017527105286717415, + 0.0019513824954628944, + -0.008535826578736305, + 0.010467576794326305, + -0.0032097690273076296, + -0.0006036721752025187, + 0.02610219642519951, + -0.02101368084549904, + -0.014024825766682625, + -0.020856628194451332, + 0.010530398227274418, + 0.0015793634811416268, + -0.043440837413072586, + 0.02332235872745514, + -0.008182457648217678, + 0.013200297951698303, + -0.027264386415481567, + 0.014676595106720924, + -0.011763263493776321, + 0.006890696939080954, + 0.00154991599265486, + -0.02718586102128029, + -0.00020330991537775844, + 0.018862055614590645, + 0.03935746103525162, + -0.00010447700333315879, + -0.004735145717859268, + -0.009352501481771469, + 0.007157687097787857, + 0.013765688985586166, + -0.005123851355165243, + 0.014857206493616104, + -0.011402041651308537, + 0.011307810433208942, + 0.00893631111830473, + -0.020778100937604904, + -0.013914888724684715, + -0.014283963479101658, + 0.023620760068297386, + -0.02270985208451748, + -0.004566313698887825, + -0.023448001593351364, + -0.019772963598370552, + 0.007719151210039854, + 0.009226859547197819, + -0.033012524247169495, + -0.0013280787970870733, + 0.014433163218200207, + -0.018092496320605278, + -0.0021849987097084522, + -0.009878628887236118, + -0.0008044054266065359, + 0.006945665460079908, + 0.0032235111575573683, + -0.02382492832839489, + 0.00839447882026434, + 0.01804538071155548, + -0.005390841513872147, + -0.011284252628684044, + -0.010962293483316898, + -0.0027641314081847668, + -0.018061086535453796, + 0.00256781536154449, + -0.01689889468252659, + 0.00011686945799738169, + 0.017558516934514046, + 0.002377388533204794, + 0.020778100937604904, + -0.00017005886184051633, + 0.0033589694648981094, + -0.02238004095852375, + -0.0012848891783505678, + -0.01895628683269024, + 0.005881631746888161, + -0.010648188181221485, + -0.0037496385630220175, + 0.005147409625351429, + -0.007699519395828247, + -0.0005207285867072642, + -0.005410473328083754, + 0.0031587269622832537, + 0.010695303790271282, + -0.023008253425359726, + -0.0060229795053601265, + -0.02281978912651539, + 0.0940432921051979, + -0.011559095233678818, + -4.868027099291794e-5, + -0.003512095892801881, + 0.018924877047538757, + 0.005626420956104994, + -0.010231997817754745, + 0.006533401552587748, + 0.017338642850518227, + -0.00038576123188249767, + 0.008441594429314137, + -0.011873200535774231, + 0.004955019801855087, + 0.011182167567312717, + -0.015744555741548538, + -0.01982007920742035, + 0.006576591171324253, + -0.00471944035962224, + -0.008739994838833809, + 0.02465730905532837, + 0.006360643543303013, + -0.007189097348600626, + -0.00492753554135561, + 0.03511703386902809, + -0.006077948026359081, + 0.014095500111579895, + -0.007703445851802826, + -0.0036259593907743692, + 0.007106644567102194, + 0.029196137562394142, + 0.0004704225866589695, + -0.016490556299686432, + -0.00765240378677845, + 0.0021261039655655622, + -0.00555967353284359, + 0.016993125900626183, + -0.0032765166833996773, + 0.03222725912928581, + -0.01353796198964119, + 0.0060897269286215305, + 0.013404467143118382, + 0.006977076176553965, + 0.03128494322299957, + 0.021343491971492767, + -0.011959579773247242, + -0.0074560875073075294, + 0.007063454948365688, + -0.00784872006624937, + -0.0029898949433118105, + 0.0025756678078323603, + -0.01178682129830122, + -0.037849754095077515, + 0.006215369328856468, + 0.003902764990925789, + 0.026149312034249306, + 0.008441594429314137, + -0.008959868922829628, + -0.014071941375732422, + 0.0026443784590810537, + 0.001591142383404076, + -0.022866904735565186, + 0.023259537294507027, + -0.01554038655012846, + -0.019333215430378914, + -0.010279113426804543, + -0.004805819597095251, + -0.012744844891130924, + 0.012014548294246197, + -0.01581523008644581, + 0.0016971530858427286, + -0.014841500669717789, + -0.004216870758682489, + 0.008912753313779831, + -0.019663026556372643, + -0.008763552643358707, + 0.01155124232172966, + -0.010444018989801407, + 0.043440837413072586, + 0.010601072572171688, + -0.002012240467593074, + 0.021783240139484406, + 0.005689241923391819, + 0.017637042328715324, + -0.012501413002610207, + -0.004032333847135305, + 0.006729717832058668, + -0.0059562320820987225, + -0.0012652575969696045, + 0.0058698528446257114, + -0.011606210842728615, + -0.022081641480326653, + -0.00902269035577774, + -0.0019317509140819311, + -0.008245278149843216, + -0.007923319935798645, + 0.0018630402628332376, + -0.00913262739777565, + -0.013679309748113155, + -0.002830878831446171, + 0.015461860224604607, + -0.0012524970807135105, + 0.005987642798572779, + -0.0013437840389087796, + -0.00852012075483799, + 0.018218139186501503, + 0.012493560090661049, + 0.012344359420239925, + 0.019034814089536667, + -0.022866904735565186, + -0.003360932460054755, + -0.009595933370292187, + -0.011402041651308537, + -0.00766025623306632, + 0.005002135410904884, + -0.00037766320747323334, + 0.022945431992411613, + -0.0008451410103589296, + -0.008975574746727943, + 0.003129279473796487, + -0.007373634725809097, + -0.006800391711294651, + -0.02248997800052166, + -0.0034217904321849346, + -0.008221720345318317, + -0.004801893141120672, + 0.002355793723836541, + -0.004260060377418995, + 0.009179743006825447, + 0.001541081815958023, + 0.011472715996205807, + 0.010915177874267101, + -0.012038106098771095, + 0.016113629564642906, + -0.01440175250172615, + -0.010765978135168552, + -0.01198313757777214, + -0.00943888071924448, + 0.02043258585035801, + 0.008425889536738396, + -0.01580737717449665, + 0.010012123733758926, + -0.01247000228613615, + 0.00038330728420987725, + 0.025505393743515015, + 0.01236006524413824, + 0.007829087786376476, + 0.015838786959648132, + -0.015713144093751907, + 0.018453719094395638, + 0.015218428336083889, + 0.01971014216542244, + -0.016270682215690613, + -0.0012976498110219836, + -0.019396035000681877, + -0.01111934706568718, + 0.009807954542338848, + -0.00871643703430891, + 0.033515091985464096, + -0.025206994265317917, + -0.01268987637013197, + -0.00878711137920618, + -0.0192703939974308, + -0.007801603991538286, + -0.002277267398312688, + -0.008645763620734215, + -0.00040465666097588837, + -0.005610715597867966, + 0.019505972042679787, + 0.007789825089275837, + 0.002946705324575305, + -0.027013102546334267, + -0.010019976645708084, + 0.006443096324801445, + -0.013765688985586166, + 0.013899183832108974, + -0.00039680401096120477, + 0.0023989833425730467, + -0.0035729538649320602, + -0.02168900892138481, + 0.008920606225728989, + 0.0014232920948415995, + 0.00441318703815341, + 0.017165884375572205, + 0.006215369328856468, + 0.002601189073175192, + -0.010640335269272327, + -0.003453201148658991, + -0.012281538918614388, + 0.01656908355653286, + 0.00046747783198952675, + -0.004452450200915337, + 0.011362778954207897, + 0.002630636328831315, + -0.004538829438388348, + -0.021469134837388992, + -0.023667875677347183, + 0.016364915296435356, + 0.01120572630316019, + 0.0011072230990976095, + -0.0035552855115383863, + -0.02693457528948784, + -0.01005138736218214, + 0.002995784394443035, + 0.026479123160243034, + 0.006341011729091406, + -0.017024537548422813, + -0.02151625044643879, + -0.005206304136663675, + 0.0005060049006715417, + 0.00608187448233366, + -0.032290082424879074, + -0.0329182930290699, + 0.0031469478271901608, + 0.017715569585561752, + -0.015406891703605652, + 0.0009992491686716676, + -0.0017413243185728788, + 0.03596511855721474, + -0.0039420281536877155, + 0.025599626824259758, + 0.00987077597528696, + 0.011936021968722343, + -0.004271839279681444, + -0.006882844492793083, + 0.00967445969581604, + -0.009588080458343029, + 0.010860209353268147, + 0.017856916412711143, + -0.007711298298090696, + 0.008952016942203045, + 0.008834226988255978, + -0.004723366815596819, + -0.008779258467257023, + 0.014409605413675308, + -0.0015626766253262758, + 0.02790830470621586, + 0.00692996010184288, + 0.002917258068919182, + 0.01581523008644581, + 0.003963623195886612, + -0.0024657307658344507, + -0.01144130527973175, + -0.023228127509355545, + -0.010122060775756836, + -0.0005742247449234128, + -0.006364569533616304, + 0.010373345576226711, + -0.004118713084608316, + 0.00902269035577774, + -3.3496442483738065e-5, + -0.021249260753393173, + -0.004063744563609362, + -0.004864714108407497, + 0.013836362399160862, + 0.01715017855167389, + 0.004071597009897232, + 0.0035238750278949738, + -0.0030978689901530743, + -0.028112472966313362, + -0.02212875708937645, + -0.005445810034871101, + -0.005913042463362217, + -0.018469423055648804, + -0.018940582871437073, + 0.009211153723299503, + 0.014119057916104794, + -0.01848512887954712, + -0.011928169056773186, + 0.007899762131273746, + -0.006659043952822685, + 0.012218717485666275, + 0.0001612246414879337, + 0.007711298298090696, + -0.004220797214657068, + -0.002247819909825921, + 0.0007298052660189569, + -0.005858073942363262, + -0.007872277870774269, + -0.010357639752328396, + -0.02657335437834263, + 0.003706448944285512, + -0.026039374992251396, + 0.008402331732213497, + -0.02296113781630993, + 0.009800102561712265, + -0.02421756088733673, + -0.0016196082578971982, + 0.03219584748148918, + 0.0024775099009275436, + 0.004519197624176741, + -0.007059528958052397, + -0.015249839052557945, + 0.016302093863487244, + -0.01532051246613264, + 0.008622205816209316, + 0.03013845533132553, + 0.004845082759857178, + 0.0031253532506525517, + 0.016521967947483063, + 0.016380619257688522, + -0.025693858042359352, + -0.011700442992150784, + -0.0019327325280755758, + -0.013239561580121517, + -6.343465793179348e-5, + 0.00482937740162015, + -0.0010974073084071279, + -0.006282116752117872, + -0.015760261565446854, + 0.006588370073586702, + -0.012988276779651642, + 0.001903285039588809, + 0.0021457355469465256, + -0.005649978760629892, + -0.006835728418081999, + -0.01967873051762581, + 0.016113629564642906, + 0.03731577470898628, + -0.01220301166176796, + -0.0011867311550304294, + -0.017307231202721596, + 0.009925744496285915, + 0.011378483846783638, + -0.006717938929796219, + 0.005944453179836273, + -0.01743287406861782, + 0.003769270144402981, + -0.023306652903556824, + -0.016946010291576385, + -0.023903455585241318, + 0.018092496320605278, + -0.011833937838673592, + -0.0027994683478027582, + 0.0001860095508163795, + 0.004939314443618059, + 0.008135341107845306, + 0.005555747076869011, + -0.0014311447739601135, + -0.008692879229784012, + -0.00537120969966054, + -0.021422019228339195, + 0.010027828626334667, + 0.0056460523046553135, + 0.008268835954368114, + -0.004173681605607271, + 0.01996142603456974, + -0.009957155212759972, + -0.011111494153738022, + -0.007628845516592264, + 0.0024382465053349733, + -0.0003837980912066996, + 0.0040990812703967094, + 0.011818232014775276, + 0.0020495406351983547, + 0.005076735746115446, + -0.006898549385368824, + 0.022191578522324562, + 0.02935319021344185, + -0.004095154814422131, + -0.01438604760915041, + -0.004012702032923698, + 0.01155124232172966, + -0.01155124232172966, + 0.011739705689251423, + 0.02321242168545723, + -0.022647030651569366, + 0.018799234181642532, + 0.011150757782161236, + -0.03216443955898285, + 0.040299780666828156, + -0.013867773115634918, + -0.013325940817594528, + -0.035399727523326874, + -0.0018178875325247645, + -0.022034524008631706, + 0.010954441502690315, + -0.006011200603097677, + 0.010169176384806633, + -0.008818521164357662, + -0.013270972296595573, + 0.015532533638179302, + 0.021641893312335014, + -0.0028564000967890024, + -0.004256134387105703, + 0.008771405555307865, + -0.0017668453510850668, + 0.0060229795053601265, + 0.014668743126094341, + 0.006729717832058668, + -0.03175609931349754, + 0.00852012075483799, + 0.002548183547332883, + 0.008551531471312046, + -0.0071459077298641205, + -0.0023126043379306793, + 0.013208150863647461, + -0.03288688138127327, + 0.028033945709466934, + -0.0025265889707952738, + 0.002905478933826089, + -0.00650591729208827, + -0.013420172035694122, + 0.008889195509254932, + 0.0096351969987154, + 0.003082163631916046, + -0.002198740839958191, + -0.0020161669235676527, + 0.013836362399160862, + 0.009525259956717491, + -0.004770482424646616, + -0.0051905992440879345, + 0.013098213821649551, + -0.00978439673781395, + -0.013836362399160862, + 0.024610193446278572, + -0.005222009494900703, + -0.01512419618666172, + -0.00859079509973526, + 0.007833014242351055, + -0.0047469246201217175, + 0.010781683027744293, + -0.015351923182606697, + -0.0009344648569822311, + 0.0005496852099895477, + -0.00021165335783734918, + -0.009446733631193638, + 0.025144172832369804, + -0.0032058428041636944, + -0.004585945513099432, + 0.010027828626334667, + 0.008952016942203045, + -0.031850334256887436, + -0.010750272311270237, + 0.015469713136553764, + -0.013789246790111065, + 0.0040480392053723335, + 0.005426178220659494, + 0.002135919639840722, + -0.00231064110994339, + 0.014715858735144138, + -0.02321242168545723, + 0.0006468617357313633, + 0.0004846554948017001, + -0.007880130782723427, + 0.005779547616839409, + 0.00766025623306632, + 0.003327558748424053, + -0.004216870758682489, + -0.0029781160410493612, + -0.009038395248353481, + -0.0016029214020818472, + -0.00692996010184288, + -0.0009388820035383105, + 0.011378483846783638, + -0.02101368084549904, + -0.009650901891291142, + 0.004212944768369198, + 0.012784107588231564, + 0.011826084926724434, + -0.009525259956717491, + 0.0018385007278993726, + -0.0019415667047724128, + 0.003196026897057891, + -0.009721576236188412, + 0.0062467800453305244, + 0.01623927243053913, + 0.004703735001385212, + 0.008967721834778786, + -0.007813382893800735, + 0.020872334018349648, + -0.006772907450795174, + 0.01416617352515459, + 0.03621640428900719, + 0.00724799232557416, + 0.025144172832369804, + 0.00841018371284008, + -0.009164038114249706, + 0.004358218517154455, + -0.006164327263832092, + -0.007577803451567888, + -0.015422596596181393, + 0.00724799232557416, + -0.0027189787942916155, + -0.011142904870212078, + 0.037818342447280884, + -0.01562676578760147, + 0.0025324784219264984, + 0.015383333899080753, + -0.0029074421618133783, + 0.022976841777563095, + 0.012501413002610207, + 0.019160456955432892, + -0.008080372586846352, + 0.0030978689901530743, + 0.007487498223781586, + -0.0162078607827425, + 0.015893755480647087, + -0.0024362835101783276, + 0.01815531775355339, + 0.005112072452902794, + -0.0026483049150556326, + -0.0007356947753578424, + -0.007518908474594355, + -0.020589638501405716, + 0.0036711120046675205, + -0.002385241212323308, + -0.012650612741708755, + -3.984604336437769e-5, + 0.01385992020368576, + -0.0017776427557691932, + -0.0016461109044030309, + -0.008048961870372295, + -0.019364625215530396, + 0.0025815574917942286, + 0.008606499992311, + 0.03137917444109917, + 0.011260694824159145, + -0.015147753991186619, + 0.0041147866286337376, + -0.006564812269061804, + -0.008551531471312046, + -0.02357364259660244, + -0.014158320613205433, + 0.006337085273116827, + 0.0053083887323737144, + 0.0023459780495613813, + 0.02212875708937645, + 0.0057991789653897285, + 0.004373923875391483, + -0.011778969317674637, + -0.01715017855167389, + 0.003260811325162649, + -0.005155262071639299, + -0.010027828626334667, + 0.016584789380431175, + 0.025960847735404968, + 0.020055657252669334, + 0.009682312607765198, + 0.030452560633420944, + -0.02118643932044506, + 0.012108780443668365, + 0.005944453179836273, + 0.001525376457720995, + -0.004201165866106749, + -0.010027828626334667, + -0.021139323711395264, + 0.008543678559362888, + -0.004778335336595774, + 0.0043189553543925285, + 0.007169466000050306, + -0.013027539476752281, + -0.0019464746583253145, + 0.02205022983253002, + -0.005787400063127279, + 0.0025089203845709562, + -0.021673303097486496, + 0.01634920947253704, + 0.0018129796953871846, + -0.015618912875652313, + 0.010365492664277554, + 0.004923609085381031, + 0.007581729907542467, + -0.0007337316055782139, + -0.009839365258812904, + -0.028096767142415047, + -0.0020868408028036356, + 0.018092496320605278, + -0.011378483846783638, + -0.006136843003332615, + 0.01250926498323679, + -0.023887749761343002, + -0.0034296431113034487, + -0.019663026556372643, + -0.016977420076727867, + -0.011590505950152874, + -0.007090939208865166, + -0.021940292790532112, + -0.006977076176553965, + 0.00902269035577774, + -0.015461860224604607, + 0.004491713363677263, + -0.019772963598370552, + -0.010428314097225666, + -0.015799524262547493, + -0.001121946843340993, + 0.012713434174656868, + -0.008151046931743622, + -0.0037182278465479612, + 0.030782371759414673, + -0.01985148899257183, + 0.02693457528948784, + -0.016616199165582657, + 0.0005423233960755169, + 0.007032044697552919, + 0.011810380034148693, + 0.008653615601360798, + 0.0008323804941028357, + 0.009054101072251797, + -0.030908014625310898, + -0.010498987510800362, + -0.020165594294667244, + -0.0006390090566128492, + 0.008606499992311, + -0.0010188808664679527, + -0.003551359288394451, + 0.014857206493616104, + 0.01895628683269024, + 0.008315952494740486, + -0.005673536565154791, + -0.0035160223487764597, + 0.0064980648458004, + -0.021610481664538383, + 0.0005511575727723539, + -0.022505683824419975, + -0.0026168941985815763, + -0.018971992656588554, + -0.0020259825978428125, + 0.01124498900026083, + 0.0316147543489933, + -0.014252552762627602, + -0.01451168954372406, + -0.0018915061373263597, + 0.007624919526278973, + 0.0028112472500652075, + -0.01113505195826292, + -0.0064470223151147366, + -0.0009501701570115983, + -0.00040023954352363944, + 0.004495639819651842, + -0.010601072572171688, + 0.016867483034729958, + 0.01743287406861782, + -0.010027828626334667, + -0.017637042328715324, + -0.021940292790532112, + 0.016145041212439537, + -0.009776544757187366, + 0.00817460473626852, + 0.0004058836493641138, + -0.02241145260632038, + 0.009038395248353481, + 0.0035042432136833668, + -0.015069227665662766, + -0.0056853159330785275, + 0.025395456701517105, + -0.00513563072308898, + 0.0008161843870766461, + -0.0017442690441384912, + -0.0019886826630681753, + 0.011449158191680908, + -0.01292545534670353, + 0.0012446444015949965, + -0.015171311795711517, + -0.018752118572592735, + 0.002084877574816346, + 0.013608635403215885, + 0.0009256306802853942, + 0.002966337138786912, + 0.030169866979122162, + 0.0008804779499769211, + -0.03126923739910126, + -0.0047469246201217175, + 0.01050684042274952, + 0.012281538918614388, + -0.003618106711655855, + -0.02782977744936943, + 0.004236502572894096, + 0.00767203513532877, + -0.0053947679698467255, + -0.002630636328831315, + 0.01185749564319849, + -0.006984928622841835, + -0.003121426794677973, + 0.016223566606640816, + -0.008143194019794464, + 0.006242853589355946, + -0.0029565212316811085, + -0.00021423000725917518, + -0.000656677526421845, + -0.027170155197381973, + -0.00924256443977356, + 0.018202433362603188, + -0.004684103187173605, + -0.027594197541475296, + -1.1150144018756691e-5, + -0.025866616517305374, + 0.004982504062354565, + -0.022584209218621254, + 0.0027857262175530195, + 0.00628996966406703, + -0.007573876995593309, + -0.009760838933289051, + -0.011017262004315853, + -0.019003404304385185, + 0.007338297553360462, + 0.004010738804936409, + 0.007526761386543512, + -0.010538251139223576, + -0.018171023577451706, + -0.0021005829330533743, + -0.033263809978961945, + 0.00723621342331171, + -0.014872911386191845, + 0.003144984832033515, + 0.00932894367724657, + -0.013208150863647461, + 0.010192734189331532, + 0.01039690338075161, + 0.012807665392756462, + -0.007781972177326679, + 0.013404467143118382, + -0.01082879863679409, + -0.007075234316289425, + 0.009517407044768333, + -0.0007406026707030833, + -0.03480292856693268, + -0.03558819368481636, + 0.021641893312335014, + -0.02660476416349411, + 0.023400885984301567, + 0.006325306370854378, + 0.0033255955204367638, + -0.028756389394402504, + 0.0017236558487638831, + -0.008653615601360798, + -0.02771984040737152, + -0.0015106528298929334, + -0.005367283709347248, + -0.019977131858468056, + 0.008009699173271656, + 0.014786532148718834, + -0.009823660366237164, + -0.013695014640688896, + 0.019411740824580193, + -0.00882637407630682, + -0.011166462674736977, + -0.00210254592821002, + -0.007412897888571024, + -0.016160745173692703, + 0.023008253425359726, + -0.004872567020356655, + -0.01840660162270069, + -0.021720418706536293, + -0.005465441849082708, + 0.036027941852808, + -0.015611059963703156, + -0.011299957521259785, + 0.010679598897695541, + -0.016380619257688522, + 0.007872277870774269, + -0.011731852777302265, + -0.023997686803340912, + 0.005422252230346203, + -0.008661468513309956, + 0.0061761061660945415, + 0.003826201893389225, + 0.0044760084711015224, + -0.026432007551193237, + 0.0028524736408144236, + 0.01787262223660946, + 0.004326807800680399, + 0.01667902059853077, + 0.012540675699710846, + 0.0035572487395256758, + -0.007412897888571024, + 0.011378483846783638, + -0.007860498502850533, + -0.018642181530594826, + -0.00030208149109967053, + 0.026212133467197418, + 0.0005953287472948432, + 0.011072230525314808, + -0.0025579994544386864, + -0.034959979355335236, + -0.008056814782321453, + 0.00246769399382174, + 0.003957733511924744, + -0.00012613313447218388, + 0.009219006635248661, + 0.02585091069340706, + 0.002683641854673624, + -0.01746428571641445, + -0.021594775840640068, + -0.0030527161434292793, + -0.01063248235732317, + -0.004801893141120672, + 0.024484550580382347, + 0.011519831605255604, + 0.004440671298652887, + 0.019050519913434982, + 0.01312177162617445, + -0.0026188574265688658, + -0.015579650178551674, + -0.007479645311832428, + 0.03382920101284981, + -0.011684737168252468, + -0.0033098903950303793, + -0.002367572858929634, + -0.023479411378502846, + -0.008253131061792374, + 0.0010561809176579118, + -0.03079807758331299, + -0.003928286023437977, + -0.021390607580542564, + -0.01873641274869442, + 0.015791671350598335, + -0.01895628683269024, + 0.02338518016040325, + 0.0182652547955513, + -0.0029270737431943417, + -0.0066040754318237305, + -0.016223566606640816, + 0.0013771577505394816, + 0.0014321262715384364, + -0.0073854136280715466, + 0.003755528014153242, + 0.003951844293624163, + -0.005681389477103949, + -0.01581523008644581, + 0.006132916547358036, + -0.011519831605255604, + 0.011881053447723389, + 0.02223869413137436, + -0.014629479497671127, + -0.013899183832108974, + -0.0006282117101363838, + 0.005822737235575914, + -0.004012702032923698, + -0.02490859292447567, + 0.016584789380431175, + -0.0013153181644156575, + -0.007283329032361507, + -0.01678895764052868, + 0.024343203753232956, + 0.021060796454548836, + 0.0031921006739139557, + -0.01732293702661991, + 0.012658465653657913, + 0.01909763552248478, + 0.006301748566329479, + 0.028599336743354797, + -0.008331657387316227, + 0.007954730652272701, + 0.0015008370392024517, + 0.013019687496125698, + 0.004711587447673082, + -0.011669032275676727, + -0.014715858735144138, + 0.010569661855697632, + -0.016254978254437447, + 0.02090374380350113, + 0.003015416208654642, + 0.013255266472697258, + 0.014535248279571533, + -0.005583231337368488, + 0.009533111937344074, + -0.008488710038363934, + -0.030813783407211304, + -0.009321090765297413, + 0.00441318703815341, + 0.022113051265478134, + 0.005225935950875282, + -0.018924877047538757, + -0.009847218170762062, + 0.010247702710330486, + -0.005968010984361172, + -0.012548528611660004, + 0.016270682215690613, + 0.00514348316937685, + -0.00821386743336916, + -0.016946010291576385, + -0.00262671010568738, + -0.0024382465053349733, + -0.002593336394056678, + -0.0008686989895068109, + 0.004554534796625376, + 0.024610193446278572, + -0.007880130782723427, + 0.003551359288394451, + 0.00832380447536707, + -0.012988276779651642, + -0.00042944157030433416, + 0.007495350670069456, + 0.01693030446767807, + -0.013852067291736603, + 0.0013359313597902656, + 0.03574524447321892, + -0.027499966323375702, + 0.007153760641813278, + 0.015579650178551674, + 0.021249260753393173, + 0.023149600252509117, + 0.013608635403215885, + 0.00010913950973190367, + 0.00514348316937685, + -0.018186727538704872, + 0.02230151556432247, + -0.0010905362432822585, + -0.0060897269286215305, + 0.02021271176636219, + 0.003427680116146803, + -0.00017275821301154792, + -0.01768415980041027, + 0.008182457648217678, + -0.007334371563047171, + 0.003121426794677973, + -0.054811470210552216, + 0.006242853589355946, + -0.014158320613205433, + 0.021123617887496948, + -0.01923898234963417, + -0.0004071106086485088, + -0.0142761105671525, + -0.007923319935798645, + -0.007605287712067366, + 0.008331657387316227, + 0.008873489685356617, + -0.020369764417409897, + 0.007825162261724472, + -0.0205739326775074, + -0.007063454948365688, + 0.013373056426644325, + 0.002605115296319127, + -0.011590505950152874, + 0.0034846116323024035, + 0.019725846126675606, + -0.0037574912421405315, + 0.00043312250636518, + -0.00038846058305352926, + -0.010436167009174824, + 0.004888272378593683, + 0.010326229967176914, + 0.0034473116975277662, + 0.0038340543396770954, + -0.017165884375572205, + 0.009698017500340939, + -0.007110571023076773, + 0.0010071018477901816, + 0.0005550839123316109, + 0.0031194635666906834, + 0.022458568215370178, + -0.005355504807084799, + -0.013899183832108974, + -0.028096767142415047, + -0.009823660366237164, + -0.009109069593250751, + -0.00012079578300472349, + -0.011606210842728615, + -0.010946588590741158, + 0.007738782558590174, + -0.014849353581666946, + -0.002314567333087325, + 0.006132916547358036, + 0.0063999067060649395, + -0.003914543893188238, + -0.009093363769352436, + -0.001661816262640059, + -0.011543389409780502, + -0.03186603635549545, + -0.0035140591207891703, + 0.009682312607765198, + -0.023510823026299477, + 0.018186727538704872, + -0.02018130011856556, + 0.013475140556693077, + -0.01779409684240818, + 0.007683814037591219, + -0.025112763047218323, + -0.02096656523644924, + 0.023369474336504936, + 0.017605632543563843, + -0.0016029214020818472, + -0.021060796454548836, + 0.016396325081586838, + -0.0044563766568899155, + 0.00502569368109107, + -0.004307176452130079, + 0.033483684062957764, + -0.009061953984200954, + 0.018924877047538757, + -0.012721287086606026, + -0.018390897661447525, + -0.009006985463202, + -0.014747269451618195, + 0.009925744496285915, + 0.021202145144343376, + -0.0013123734388500452, + 0.015359776094555855, + 0.016412030905485153, + -0.01664760895073414, + 0.0028897738084197044, + -0.021312082186341286, + -0.0024853625800460577, + 0.021092208102345467, + -0.022285809740424156, + -0.00913262739777565, + 0.01840660162270069, + 0.025945141911506653, + -0.0024539518635720015, + 0.0058188107796013355, + 0.006262485403567553, + 0.018029674887657166, + -0.02148483879864216, + 0.011457010172307491, + 0.006568738259375095, + 0.002239967230707407, + 0.0060229795053601265, + -0.0055989366956055164, + -0.04177607595920563, + 0.0252384040504694, + 0.016270682215690613, + -0.015933018177747726, + -0.027892598882317543, + -0.0067572020925581455, + -0.03433176875114441, + 0.011590505950152874, + 0.015524681657552719, + 0.005755989346653223, + -0.0026149312034249306, + 0.02148483879864216, + 0.01503781694918871, + 0.015155606903135777, + 0.011818232014775276, + -0.011064378544688225, + 0.012415033765137196, + 0.014009120874106884, + 0.006274264305830002, + -0.027751252055168152, + -0.01510849129408598, + -0.01671043038368225, + 0.018312370404601097, + -0.003129279473796487, + -0.011166462674736977, + -0.00030723478994332254, + -0.02544257417321205, + 0.001009065075777471, + -0.0008024422568269074, + 0.015650324523448944, + 0.002571741584688425, + -0.004428892396390438, + 0.018092496320605278, + -0.00035385985393077135, + 0.009823660366237164, + 0.024924298748373985, + -0.020589638501405716, + -0.014786532148718834, + -0.003688780590891838, + 0.0024833993520587683, + 0.03596511855721474, + -0.01562676578760147, + -0.035682424902915955, + -0.023746401071548462, + 0.004177607595920563, + -0.011582653038203716, + 0.020730985328555107, + 0.0021791092585772276, + -0.017055947333574295, + 0.0086300577968359, + 0.020982271060347557, + -0.001379120978526771, + -0.018705002963542938, + 0.009281828068196774, + 0.000623303756583482, + -0.022725557908415794, + 0.01100941002368927, + 0.010844504460692406, + -0.0033255955204367638, + 0.018312370404601097, + -0.008842079900205135, + 0.03013845533132553, + -0.0006929960218258202, + 0.014605921693146229, + -0.0034374957904219627, + 0.015713144093751907, + -0.0012083259643986821, + -0.0021594776771962643, + 0.006352790631353855, + 0.01612933538854122, + -0.008967721834778786, + 0.004067670553922653, + 0.03208591043949127, + -0.03266700729727745, + 0.0032470691949129105, + -0.027405735105276108, + 0.00112587318290025, + -0.0075895823538303375, + 0.017951149493455887, + 0.010797387920320034, + 0.004758703522384167, + -0.02148483879864216, + 0.001557768671773374, + -0.01873641274869442, + 0.004915756639093161, + 0.007357929367572069, + 0.012894044630229473, + -0.0012996129225939512, + 0.02877209521830082, + 0.007734856568276882, + 0.012760549783706665, + 0.0013683235738426447, + -0.0021280671935528517, + -0.0013771577505394816, + -0.008975574746727943, + -0.03389202058315277, + 0.00081225810572505, + 0.004000923130661249, + 0.0040284073911607265, + 0.0006375366938300431, + 0.0023086778819561005, + -0.019081929698586464, + -0.02446884475648403, + -0.018783530220389366, + -0.006541253998875618, + -0.004212944768369198, + -0.006274264305830002, + 0.01967873051762581, + 0.0009383911965414882, + 0.016553377732634544, + -0.014197584241628647, + 0.012265833094716072, + -0.004503492731601, + 0.014519542455673218, + -0.0017560479464009404, + -0.0032470691949129105, + -0.0029231475200504065, + 0.019301803782582283, + 0.005328020546585321, + -0.027390029281377792, + 0.006172179710119963, + 0.006341011729091406, + 0.001003666315227747, + -0.005021767225116491, + 0.015391185879707336, + -0.006262485403567553, + 0.021720418706536293, + 0.011394189670681953, + -0.004754777066409588, + -0.03480292856693268, + 0.029949992895126343, + -0.02602366916835308, + 0.026227837428450584, + 0.001105259987525642, + 0.0008480857941322029, + 0.005862000398337841, + 0.008433741517364979, + -0.008370921015739441, + -0.0077780457213521, + -0.0008677173755131662, + 0.005186672788113356, + 0.0014910211320966482, + -0.005269125569611788, + -0.004479934461414814, + 0.01704024150967598, + -0.007035970687866211, + -0.009093363769352436, + -0.013161035254597664, + -0.02343229576945305, + 0.003963623195886612, + -0.011574800126254559, + 0.017024537548422813, + 0.005092441104352474, + 0.0022164094261825085, + -0.022552799433469772, + 0.013797098770737648, + 0.013216003775596619, + 0.009760838933289051, + -0.009643048979341984, + 0.008347363211214542, + 0.012148043140769005, + 0.005924821365624666, + 0.005697094835340977, + -0.015477565117180347, + -0.00683180196210742, + 0.004860788118094206, + -0.011881053447723389, + -0.002135919639840722, + 0.024421729147434235, + -0.011488420888781548, + -0.004010738804936409, + -0.004715513903647661, + -0.013977710157632828, + -0.0077623408287763596, + 0.003510132897645235, + -0.008535826578736305, + 0.00030306304688565433, + -0.023526526987552643, + -0.024123329669237137, + 0.0006581498892046511, + 0.00947814341634512, + -0.005846295040100813, + 0.01678895764052868, + 0.0005776602774858475, + -0.029258958995342255, + 0.003584733000025153, + -0.009250417351722717, + 0.0034551643766462803, + -0.004063744563609362, + 0.019081929698586464, + -0.008182457648217678, + 0.01718159019947052, + -0.021280670538544655, + -0.006054390221834183, + -0.006560885813087225, + -0.007840867154300213, + -0.008779258467257023, + -0.006125064101070166, + 0.006847507320344448, + -0.009462438523769379, + -0.008991279639303684, + 0.04130491986870766, + -0.012799813412129879, + 0.009006985463202, + -0.014213289134204388, + -0.002243893686681986, + -0.006392053794115782, + 0.017244411632418633, + 0.00032318546436727047, + 0.0011700442992150784, + 0.023872043937444687, + -0.016145041212439537, + 0.0009001095313578844, + 0.01743287406861782, + 0.003353079780936241, + -0.021469134837388992, + 0.020511111244559288, + 0.008779258467257023, + 0.0009899241849780083, + -0.010585366748273373, + 0.0019798483699560165, + 0.01718159019947052, + -0.0024245043750852346, + 0.007471792865544558, + 0.0008853858453221619, + -0.006105432286858559, + -0.00492753554135561, + 0.022474272176623344, + 0.009525259956717491, + 0.025960847735404968, + -0.0072322869673371315, + 0.0007180263055488467, + -0.010671745985746384, + 0.00288388435728848, + 0.011158609762787819, + -0.002667936496436596, + -0.019113341346383095, + -0.011087936349213123, + 0.005398693960160017, + -0.004558461252599955, + -0.010608924552798271, + -0.01373427826911211, + 0.032824061810970306, + -0.008669321425259113, + 0.009352501481771469, + 0.016160745173692703, + 0.00902269035577774, + -0.001637276727706194, + -0.006882844492793083, + -0.0012691839365288615, + -0.008685026317834854, + 0.012823371216654778, + -0.0006699288496747613, + 0.005009988322854042, + 0.006918181199580431, + 0.03580806776881218, + 0.0208252165466547, + -0.0017501584952697158, + 0.015147753991186619, + -0.009250417351722717, + 0.013679309748113155, + 0.013388761319220066, + -0.00987077597528696, + -0.00013263609434943646, + 0.021846061572432518, + -0.007836940698325634, + 0.003266700776293874, + -0.018280960619449615, + 0.0067886123433709145, + 0.004809745587408543, + -0.007326518651098013, + 0.004585945513099432, + -0.008260983973741531, + -0.020024247467517853, + -0.0149278799071908, + -0.028002535924315453, + 0.00544973649084568, + 0.01113505195826292, + 0.053366582840681076, + 0.027751252055168152, + 0.0037084121722728014, + -0.00810393039137125, + -0.0007651422056369483, + -0.03649909794330597, + 0.005437957588583231, + -0.005595010239630938, + -0.008363068103790283, + 0.016443440690636635, + 0.008473005145788193, + 0.016035104170441628, + 0.020526817068457603, + 0.01288619264960289, + -0.0014399789506569505, + 0.011943874880671501, + -0.009462438523769379, + 0.005414399318397045, + 0.007051676046103239, + 0.01840660162270069, + -0.011488420888781548, + 0.001711876830086112, + 0.002035798504948616, + -0.012250128202140331, + 0.006564812269061804, + -0.0036966330371797085, + -0.005174893885850906, + -0.018893467262387276, + 0.004421039950102568, + -0.007173391990363598, + 0.0172601155936718, + -0.0032549218740314245, + -0.021469134837388992, + 0.0022537093609571457, + 0.005300536286085844, + 0.02007136307656765, + 0.005610715597867966, + 0.009619491174817085, + 0.0009143424686044455, + -0.01167688425630331, + -0.0239348653703928, + -0.004283618647605181, + -0.001869911327958107, + -0.020778100937604904, + -0.00799791980534792, + 0.016726136207580566, + -0.007448234595358372, + 0.0034217904321849346, + 0.0027287944685667753, + -0.011166462674736977, + 0.0007567987777292728, + 0.00878711137920618, + -0.002652231138199568, + 0.011087936349213123, + -0.019835783168673515, + 0.03935746103525162, + 0.01938033103942871, + -0.04422610253095627, + -0.011998843401670456, + -0.005960158538073301, + 0.014480279758572578, + -0.005999421700835228, + 0.007781972177326679, + 0.02808106318116188, + 0.007558171637356281, + 0.020856628194451332, + -0.00913262739777565, + -0.008527973666787148, + -0.010019976645708084, + 0.006266411393880844, + 0.02765701897442341, + -0.02285120077431202, + -0.02205022983253002, + -0.010868062265217304, + -0.019160456955432892, + -0.023369474336504936, + 0.0015273396857082844, + -0.03844655677676201, + -0.0136243412271142, + 0.009831513278186321, + 0.005021767225116491, + -0.008677174337208271, + -0.0027307576965540648, + -0.006568738259375095, + -0.004778335336595774, + -0.0065530333667993546, + -0.00956452265381813, + 0.0025521100033074617, + 0.0038046070840209723, + 0.0002851492026820779, + -0.01682036742568016, + -7.785162597429007e-5, + -0.023997686803340912, + 0.010035681538283825, + 0.0195687934756279, + -0.0022497831378132105, + -0.0182652547955513, + 0.007401118986308575, + 0.01063248235732317, + 0.017354348674416542, + -0.004236502572894096, + 0.007267624139785767, + -0.009533111937344074, + 0.023400885984301567, + -0.005987642798572779, + -0.0272486824542284, + 0.02296113781630993, + 0.007856572046875954, + -0.0009094345732592046, + 0.03199167922139168, + -0.005112072452902794, + 0.009085511788725853, + -0.004731219261884689, + 0.006827875971794128, + -0.0057520633563399315, + 0.017370052635669708, + -0.008151046931743622, + -0.0031685426365584135, + 0.03075096197426319, + 0.03894912451505661, + -0.01960020512342453, + 0.020621048286557198, + 0.022662736475467682, + -0.014912175014615059, + 0.01704024150967598, + -0.003095905762165785, + 0.005728505086153746, + 0.035211265087127686, + -0.012917602434754372, + -0.012477854266762733, + 0.022222988307476044, + -0.002824989380314946, + -0.020778100937604904, + -0.00817460473626852, + 0.003111611120402813, + -0.023306652903556824, + -0.006034758407622576, + 0.0239348653703928, + -0.0003710375167429447, + -0.006639412138611078, + 0.005473294295370579, + 0.015029964968562126, + 0.02096656523644924, + -0.012642759829759598, + 0.011229284107685089, + -0.003141058376058936, + 0.003364858916029334, + 0.006077948026359081, + 0.009713723324239254, + 0.0022595988120883703, + -0.010993704199790955, + -0.019977131858468056, + 0.014653037302196026, + 0.006847507320344448, + -0.004527050536125898, + -7.484553498215973e-5, + -0.01787262223660946, + 0.012744844891130924, + 0.004417113494127989, + -0.010569661855697632, + -0.006278190761804581, + 0.010082797147333622, + 0.005155262071639299, + 0.01268987637013197, + -0.0040068128146231174, + -0.016867483034729958, + -0.011912464164197445, + 0.0030978689901530743, + 0.013294530101120472, + 0.0001925125252455473, + 0.000691523659043014, + -0.007389340084046125, + 0.010805240832269192, + -0.007467866409569979, + -0.007467866409569979, + -0.02515987865626812, + -0.004707661457359791, + -0.011040820740163326, + -0.01488861721009016, + 0.01488861721009016, + 0.022662736475467682, + 0.01623927243053913, + 0.011103641241788864, + -0.0029879319481551647, + -0.011928169056773186, + 0.01238362304866314, + 0.01184179075062275, + 0.0016755583928897977, + 0.012171601876616478, + -0.0006282117101363838, + 0.02421756088733673, + -0.010459724813699722, + -0.005457588937133551, + -0.0074050454422831535, + -0.017479989677667618, + 0.010789535939693451, + 0.0126192020252347, + -0.007306887302547693, + -0.031646162271499634, + -0.0013486919924616814, + -0.0013270971830934286, + -0.0018149428069591522, + -0.0020299090538173914, + 0.006121137645095587 + ], + "1eba341e-d6ca-44a3-928d-d5bfab234753": [ + -0.01900690421462059, + 0.003108659526333213, + -0.011014845222234726, + -0.005499789025634527, + -0.0454944372177124, + -0.00570970494300127, + 0.013533832505345345, + 0.023388415575027466, + -0.02835005708038807, + 0.035998620092868805, + 0.017419179901480675, + 0.023342616856098175, + -0.0055952053517103195, + -0.025144074112176895, + -0.010671346448361874, + 0.036426082253456116, + -0.03401396423578262, + 0.032639969140291214, + -0.01208350621163845, + -0.024258611723780632, + 0.06931032240390778, + 0.0060951863415539265, + -0.021113693714141846, + 0.019892366603016853, + -0.00597305316478014, + -0.025525739416480064, + 0.009587418287992477, + -0.003961679991334677, + -0.017709244042634964, + 0.0322125069797039, + 0.011625508777797222, + 0.02569367177784443, + 0.005278423428535461, + 0.008564556948840618, + 0.05224227160215378, + -0.0035513904877007008, + -0.017953509464859962, + 0.0248845424503088, + 0.00810655951499939, + -0.004316628444939852, + -0.040548063814640045, + 0.009411852806806564, + -0.013075834140181541, + -0.0016449750401079655, + -0.04940268397331238, + 0.021861756220459938, + 0.027754660695791245, + -0.0350826233625412, + 0.01400709617882967, + 0.020182432606816292, + 0.021541159600019455, + -0.057616110891103745, + -0.010953778401017189, + 0.023281550034880638, + 0.00779741071164608, + 0.013236133381724358, + 0.01578565500676632, + 0.040792327374219894, + -0.009434753097593784, + -0.024212811142206192, + -0.0012251439038664103, + 0.016518451273441315, + -0.005396739579737186, + 0.012434638105332851, + -0.019067971035838127, + -0.014869659207761288, + 0.022731952369213104, + -0.00016864811186678708, + -0.046563100069761276, + -0.018472574651241302, + 0.0114957420155406, + 0.016747448593378067, + -0.025159340351819992, + 0.0087706558406353, + -0.031204910948872566, + -0.0012528145452961326, + 0.05999770015478134, + -0.029647717252373695, + 0.015228423289954662, + -0.0015199799090623856, + -0.014228462241590023, + 0.014113962650299072, + 0.014022363349795341, + -0.018838971853256226, + 0.05044081434607506, + 0.02146482653915882, + -0.04109765961766243, + -0.04631883278489113, + 0.0076829115860164165, + -0.020014500245451927, + 0.002805236028507352, + -0.013335366733372211, + 0.01972443424165249, + -0.011602608487010002, + -0.010892712511122227, + 0.014915458858013153, + 0.02805999293923378, + 0.011442309245467186, + 0.007049348205327988, + -0.03355596587061882, + 0.003871988970786333, + 0.049646951258182526, + -0.0611579604446888, + 0.029891982674598694, + -0.008869889192283154, + 0.02573947049677372, + 0.01426662877202034, + -0.03233463689684868, + -0.032731570303440094, + 0.07700467854738235, + 0.030365247279405594, + -0.02204495668411255, + 0.0155184892937541, + 0.014617759734392166, + -0.014205561950802803, + -0.07694361358880997, + 0.023098351433873177, + -0.018518373370170593, + 0.0123201385140419, + -0.046990565955638885, + 0.026197468861937523, + 0.04238005355000496, + -0.004946375265717506, + 7.925507088657469e-5, + -0.012358305044472218, + 0.0027441696729511023, + 0.022106021642684937, + -0.03151024132966995, + 0.026960797607898712, + 0.011770540848374367, + -0.02554100565612316, + -0.03015151619911194, + -0.029449252411723137, + 0.004461660981178284, + -0.011701840907335281, + 0.002503720810636878, + 0.00763329491019249, + 0.049219485372304916, + -0.05905117094516754, + 0.05129574239253998, + -0.03810540959239006, + -0.04143352434039116, + -0.0087706558406353, + -0.0021315976046025753, + -0.005564671941101551, + 0.011831607669591904, + -0.04137245938181877, + 0.0563947856426239, + 0.0010457613971084356, + 0.007160030771046877, + -0.033525433391332626, + -0.020915228873491287, + 0.028838587924838066, + 0.0005309910629875958, + -0.01905270479619503, + 0.014327694661915302, + -0.017190180718898773, + 0.0025266206357628107, + 0.01995343342423439, + 0.009778250940144062, + 0.014320061542093754, + -0.048272959887981415, + 0.010991944931447506, + -0.0021754892077296972, + 0.05190640687942505, + 0.030365247279405594, + 0.021877024322748184, + 0.03688408061861992, + -0.053677331656217575, + 0.014258995652198792, + 0.014999425038695335, + -0.007228730246424675, + -0.00037331582279875875, + -0.023724280297756195, + 0.017602378502488136, + -0.017190180718898773, + 0.028808055445551872, + 0.03465516120195389, + -0.005931070074439049, + -0.04412044584751129, + -0.00796152651309967, + -0.04146406054496765, + -0.005942520219832659, + -0.009648485109210014, + 0.014213195070624352, + 0.04070072993636131, + 0.013281933031976223, + -0.0016087169060483575, + -0.00570970494300127, + -0.0007461545756086707, + -0.005076141096651554, + 0.005549405701458454, + -0.011136977933347225, + 0.00524789048358798, + -0.004083812702447176, + -0.023205216974020004, + 0.019602302461862564, + -0.00013429828686639667, + 0.0013434599386528134, + 0.02844165824353695, + -0.027143998071551323, + -0.04674629867076874, + -0.047570694237947464, + 0.034441426396369934, + -0.028075259178876877, + -0.02080836147069931, + -0.015136823989450932, + -0.028945455327630043, + 0.042441122233867645, + -0.03896033763885498, + 0.05563145503401756, + -0.04925002157688141, + 0.017648179084062576, + 0.0009341244585812092, + -0.026670733466744423, + -0.010137015953660011, + -0.03328116610646248, + 0.031876638531684875, + 0.014923091977834702, + -0.0293881855905056, + -0.014251361601054668, + -0.0029330935794860125, + 0.009778250940144062, + -0.02427387796342373, + -0.020579364150762558, + -0.013732298277318478, + -0.012388837523758411, + 0.014068163000047207, + -0.022548753768205643, + -0.012686536647379398, + 0.0403037965297699, + 0.01905270479619503, + -0.018029842525720596, + -0.03141864389181137, + -0.0398152656853199, + -0.004186862148344517, + 0.0008582686423324049, + 0.03526582196354866, + 0.019205370917916298, + -0.024854008108377457, + 0.026228001341223717, + 0.027281396090984344, + 0.03596808761358261, + 0.01886950619518757, + 0.030441580340266228, + 0.04292965307831764, + 0.030304182320833206, + 0.036242883652448654, + 0.025006674230098724, + -0.04796762764453888, + 0.01925116963684559, + 0.030838511884212494, + 0.015610088594257832, + -0.026808131486177444, + -0.013976563699543476, + 0.044761642813682556, + -0.005889086984097958, + -0.01348803285509348, + -0.005335673224180937, + -0.04744856059551239, + -0.02019769884645939, + -0.006488300859928131, + 0.039509933441877365, + -0.00614861911162734, + 0.04525017365813255, + -0.014907825738191605, + 0.01828937418758869, + -0.037708476185798645, + 0.004740276373922825, + 0.0445479117333889, + -0.01402999646961689, + 0.0058471038937568665, + -0.025296740233898163, + -0.031632374972105026, + -0.014739892445504665, + 0.002650661626830697, + 0.03202930465340614, + -0.005118124186992645, + -0.0018272199667990208, + -0.01610625348985195, + -0.0054654390551149845, + 0.009442386217415333, + 0.007167663890868425, + 0.021205293014645576, + -0.04463950917124748, + -0.028655389323830605, + -0.025525739416480064, + -0.009251553565263748, + -0.04531123861670494, + -0.014587227255105972, + -0.010205715894699097, + 0.011801074258983135, + 0.02450287714600563, + 0.0038548139855265617, + 0.04100606217980385, + -0.0015113924164324999, + 0.013495665974915028, + 0.009755350649356842, + -0.018274107947945595, + 0.024579210206866264, + -0.05807410925626755, + -0.015678787603974342, + 0.01862524077296257, + -0.007118047680705786, + -0.002072439529001713, + 0.010541580617427826, + 0.04824242368340492, + 0.02265561930835247, + -0.040120597928762436, + 0.010282048024237156, + 0.028838587924838066, + 0.003528490662574768, + -0.012014806270599365, + -0.03047211468219757, + -0.03160184249281883, + 0.00048757673357613385, + 0.033586498349905014, + 0.005553222261369228, + -0.014411660842597485, + -0.020609896630048752, + 0.030136248096823692, + 0.02427387796342373, + -0.07144764065742493, + 0.0317545086145401, + 0.019083237275481224, + -0.03825807571411133, + 0.044822707772254944, + -0.012839202769100666, + -0.0388687402009964, + -0.009289720095694065, + -0.00867142342031002, + -0.009862217120826244, + -0.010114115662872791, + -0.016671115532517433, + -0.011075911112129688, + -0.04506697505712509, + -0.03816647455096245, + -0.039357271045446396, + -0.018808439373970032, + -0.02445707656443119, + -0.012739969417452812, + -0.0075531452894210815, + -0.02085416205227375, + 0.013175067491829395, + 0.026945531368255615, + -0.0035437571350485086, + -0.017984043806791306, + 0.02283881977200508, + -0.018029842525720596, + -0.011358343064785004, + 0.000956547271925956, + -0.022487686946988106, + -0.007129497826099396, + -0.0015276131452992558, + 0.0644860789179802, + -0.01644211821258068, + 0.012900268658995628, + -0.021983889862895012, + 0.007385212928056717, + 0.004686843138188124, + 0.011480475775897503, + -0.02540360577404499, + -0.034197162836790085, + -0.033678099513053894, + 0.00417159590870142, + -0.003112476086243987, + -0.022380821406841278, + -0.006988281849771738, + 0.01925116963684559, + 0.015984119847416878, + -0.01867103949189186, + 0.015312389470636845, + 0.044578444212675095, + -0.03260943666100502, + -0.024487610906362534, + -0.01445746049284935, + 0.024136479943990707, + -0.01610625348985195, + -0.030731646344065666, + 0.01677798293530941, + -0.006114269141107798, + 0.020212965086102486, + 0.0293881855905056, + -0.030212581157684326, + 0.01738864555954933, + 0.03212090581655502, + 0.005816570948809385, + 0.007667644880712032, + 0.005560855381190777, + 0.01734284684062004, + -0.03236516937613487, + 0.032914768904447556, + -0.043204449117183685, + -0.007629478350281715, + -0.03181557357311249, + 0.018029842525720596, + 0.017037514597177505, + 0.009274453856050968, + 0.008839355781674385, + -0.011877407319843769, + -0.006499750539660454, + -0.0055837552063167095, + 0.009991982951760292, + 0.027754660695791245, + -0.00409907940775156, + -0.03721994534134865, + -0.003417807864025235, + 0.0023338799364864826, + 0.009144687093794346, + 0.032059840857982635, + 1.9888311726390384e-5, + 0.017831377685070038, + 0.015182623639702797, + 0.0037670310121029615, + 0.035143692046403885, + -0.023312082514166832, + 0.01255677081644535, + 0.02137322537600994, + -0.05456279218196869, + -0.04299071803689003, + 0.03825807571411133, + 0.05526505783200264, + -0.019877100363373756, + 0.028930189087986946, + -0.014487993903458118, + 0.026579134166240692, + 0.06042516231536865, + 0.001251860405318439, + -0.027846259996294975, + -0.03639554977416992, + 0.002950268564745784, + 0.0012614020379260182, + -0.012526237405836582, + -0.006621883250772953, + -0.008602723479270935, + -0.04427311196923256, + -0.015213157050311565, + 0.006431051064282656, + -0.023022018373012543, + 0.000463245582068339, + 0.03346436470746994, + 0.018594706431031227, + -0.0036448983009904623, + 0.0006454905378632247, + -0.015373456291854382, + -0.0227472186088562, + -0.057371847331523895, + 0.01569405384361744, + 0.02596846967935562, + -0.018029842525720596, + -0.011030111461877823, + 0.04537230730056763, + -0.02900652214884758, + 0.00032632335205562413, + 0.016839049756526947, + -0.002154497429728508, + -0.008846988901495934, + -0.0388687402009964, + 0.0040074801072478294, + -0.020930495113134384, + -0.004873858764767647, + -0.025373073294758797, + 0.014701725915074348, + -0.0004670622292906046, + 0.01607571914792061, + -0.028701189905405045, + -0.005263156723231077, + 0.02180069126188755, + 0.011740007437765598, + 0.0006240218644961715, + -0.006755466107279062, + -0.003038051538169384, + -0.027693593874573708, + 0.011152244172990322, + -0.008602723479270935, + 0.004041829612106085, + -0.008472957648336887, + 0.010312581434845924, + 0.008869889192283154, + -0.00948055274784565, + -0.04317391663789749, + -0.02999885007739067, + -0.022884618490934372, + 0.010343114845454693, + -0.00239876308478415, + -0.017693977802991867, + 0.03682301566004753, + -0.026319600641727448, + -0.004133429378271103, + 0.0021793057676404715, + 0.0440899133682251, + -0.02506774105131626, + 0.021861756220459938, + 0.016090985387563705, + 0.02071676217019558, + -0.033250633627176285, + -0.004251745529472828, + -0.004629593342542648, + -0.026044802740216255, + -0.028273725882172585, + 0.016381051391363144, + -0.020441964268684387, + 0.02099156193435192, + 0.02247242070734501, + -0.01141940988600254, + -0.0184878408908844, + -0.028319524601101875, + -0.02483874186873436, + -0.007091331295669079, + 0.004698293283581734, + -0.011488108895719051, + 0.007373763248324394, + 0.0008034043130464852, + 0.01471699308604002, + -0.03297583386301994, + -0.017800843343138695, + -0.031968239694833755, + 0.02693026512861252, + 0.019877100363373756, + -0.004038013052195311, + 0.022457154467701912, + 0.015388722531497478, + -0.01357963215559721, + 0.006648600101470947, + -0.01381626445800066, + -0.030548447743058205, + 0.0064959339797496796, + -0.0067707328125834465, + -0.004713559523224831, + -0.006335634738206863, + -0.002234647050499916, + 0.014159762300550938, + 0.012610203586518764, + 0.011808707378804684, + 0.015197890810668468, + 0.004228845238685608, + -0.014549060724675655, + 0.012709436006844044, + 0.0029693518299609423, + 0.05318880081176758, + -0.02616693638265133, + -0.007453912869095802, + -0.004770809318870306, + -0.005896720569580793, + 0.0015867712209001184, + 0.020411431789398193, + 0.0016726457979530096, + 0.03370863199234009, + -0.020029766485095024, + -0.015152091160416603, + -0.022502953186631203, + 0.009633217938244343, + -0.011091177351772785, + -0.012190372683107853, + 0.013747564516961575, + -0.0369756817817688, + 0.025617338716983795, + -0.029739318415522575, + -0.017220713198184967, + -0.022380821406841278, + -0.0071027809754014015, + 0.01995343342423439, + 0.009587418287992477, + 0.016472650691866875, + -0.022289222106337547, + -0.0064005181193351746, + -0.012602570466697216, + 0.012900268658995628, + 0.01379336416721344, + -0.004793709143996239, + 0.011022478342056274, + 0.025708938017487526, + 0.04176938906311989, + -0.005450172815471888, + -0.007724894676357508, + 0.031082777306437492, + -0.005671538412570953, + 0.012946068309247494, + -0.024655543267726898, + -0.01711384765803814, + 0.024915074929594994, + -0.021510625258088112, + -0.005717338062822819, + -0.025098273530602455, + 0.003190717427060008, + -0.020869428291916847, + -0.01625891774892807, + -0.010839278809726238, + 0.03099117800593376, + 0.019373303279280663, + 0.009442386217415333, + 0.007782144472002983, + 0.024441810324788094, + 0.009419485926628113, + -0.01621311902999878, + 0.025937937200069427, + -0.005030341446399689, + 0.010656080208718777, + -0.002612495329231024, + 0.013152167201042175, + 0.009259186685085297, + 0.032639969140291214, + 0.014724626205861568, + -0.025464672595262527, + -0.023831147700548172, + 0.022014422342181206, + -0.002017098246142268, + 0.006576083600521088, + 0.012518604286015034, + 0.011465209536254406, + -0.034197162836790085, + 0.018518373370170593, + 0.02141902595758438, + -0.030685845762491226, + 0.030640047043561935, + 0.014465094543993473, + -0.015533755533397198, + 0.05010494962334633, + 0.015678787603974342, + -0.035326890647411346, + 0.004942558705806732, + -0.012343037873506546, + 0.06753939390182495, + -0.02763252891600132, + 0.017083315178751945, + 0.005213540513068438, + -0.00689668208360672, + -0.027418795973062515, + -0.03776954486966133, + -0.0014493719208985567, + 0.03902140259742737, + -0.0043013617396354675, + 0.03215143829584122, + -0.03786114230751991, + 0.01650318317115307, + 0.006919581908732653, + 0.027372995391488075, + 0.008785923011600971, + -0.02587687037885189, + -0.007839393801987171, + -0.04485324025154114, + 0.0037307729944586754, + -0.006194418761879206, + 0.029708784073591232, + -0.0028758440166711807, + 0.009953816421329975, + -0.017235979437828064, + 0.020701495930552483, + 0.029037054628133774, + 0.015892520546913147, + -0.04179992526769638, + -0.021983889862895012, + -0.004057096317410469, + 0.02308308519423008, + -0.009862217120826244, + -0.050593480467796326, + -0.022762486711144447, + 0.0020972478669136763, + 0.012907901778817177, + 0.01206060592085123, + 0.01948016881942749, + -0.019938167184591293, + -0.001044807257130742, + 0.00909888744354248, + -0.01635051891207695, + 0.02920498698949814, + -0.0043013617396354675, + -0.0019789317157119513, + 0.0021716724149882793, + 0.014671193435788155, + 0.004877675324678421, + 0.010320214554667473, + 0.03166290745139122, + 0.04866988956928253, + -0.011114077642560005, + -0.0177703108638525, + 0.014617759734392166, + -0.0388687402009964, + -0.011785808019340038, + -0.013999463059008121, + -0.011984272859990597, + -0.010701879858970642, + -0.019495435059070587, + 0.020579364150762558, + 0.029327118769288063, + -0.0004808975791092962, + -0.01334299985319376, + 0.017617644742131233, + -0.00819815881550312, + 0.005885270424187183, + 0.009938550181686878, + -0.002135414397343993, + -0.008305025286972523, + 0.004816608969122171, + -0.021556425839662552, + 0.012121672742068768, + -0.012617836706340313, + -0.004400594625622034, + 0.01493072509765625, + -0.009816417470574379, + -0.032914768904447556, + 0.009892750531435013, + -0.008419524878263474, + -0.026380667462944984, + 0.00288538564927876, + 0.008251591585576534, + -0.0296171847730875, + -0.0191901046782732, + 0.012900268658995628, + -0.008358458057045937, + 0.006007403135299683, + 0.013854430988430977, + 0.004225028678774834, + 0.0010925153037533164, + 0.015724588185548782, + 0.015541388653218746, + 0.005679171532392502, + -0.008472957648336887, + -0.017739778384566307, + -0.01016754936426878, + -0.012938435189425945, + 0.04357085004448891, + 0.000478273635962978, + -0.034441426396369934, + -0.03654821589589119, + 0.011022478342056274, + 0.010266781784594059, + 0.011312543414533138, + 0.009648485109210014, + -0.004667759872972965, + 0.03042631410062313, + -0.00810655951499939, + -0.022167088463902473, + 0.003305216785520315, + -0.012106405571103096, + -0.00038595846854150295, + -0.001982748508453369, + 0.006492117419838905, + 0.027754660695791245, + -0.03276210278272629, + 0.021678557619452477, + -0.0009417577530257404, + 0.014518527314066887, + 0.014197928830981255, + 0.024762408807873726, + 0.00990801677107811, + 0.030136248096823692, + 0.013404065743088722, + 0.032731570303440094, + 0.02474714256823063, + 0.04714323207736015, + -0.034807827323675156, + 0.03407502919435501, + 0.03094537742435932, + 0.0033414748031646013, + -0.012228538282215595, + -0.005079957656562328, + 0.009129420854151249, + -0.018029842525720596, + 0.025907402858138084, + -0.003034234745427966, + 0.013182700611650944, + 0.009533985517919064, + -0.003961679991334677, + -6.852074875496328e-5, + -0.03199877217411995, + -0.020350364968180656, + 0.054532259702682495, + 0.030838511884212494, + -0.016289452090859413, + 0.02517460659146309, + 0.03109804354608059, + 0.03468569368124008, + 0.029357653111219406, + 0.0018596615409478545, + -0.0293881855905056, + 0.020548829808831215, + -0.0023968545719981194, + -0.041494593024253845, + -0.029510319232940674, + 0.01909850351512432, + -0.020304564386606216, + -0.004740276373922825, + -0.03401396423578262, + 0.012694169767200947, + 0.008060759864747524, + 0.03667034953832626, + 0.0008248729282058775, + -0.01070951297879219, + -0.01255677081644535, + 0.019235903397202492, + 0.009022554382681847, + -0.010312581434845924, + 0.009144687093794346, + 0.000490439182613045, + -0.0036124568432569504, + 0.031082777306437492, + -0.03871607407927513, + -0.0009169495897367597, + 0.02109842747449875, + 0.017266513779759407, + -0.03679248318076134, + 0.014190295711159706, + -0.0044196778908371925, + 0.007305063307285309, + -0.012694169767200947, + -0.003486507572233677, + 0.028594322502613068, + 0.005908170249313116, + 0.024533409625291824, + -0.006881415378302336, + -0.004828059114515781, + -0.030838511884212494, + 0.037281014025211334, + -0.025235673412680626, + 0.0023415132891386747, + -0.0028701189439743757, + 0.012022439390420914, + -0.015060490928590298, + -0.0002857714716810733, + -0.005137207452207804, + 0.024426544085144997, + 0.01319796685129404, + 0.005190640687942505, + -0.038410741835832596, + -0.022243421524763107, + 0.01838097535073757, + -0.026487533003091812, + 0.02554100565612316, + 0.038655005395412445, + 0.011014845222234726, + -0.0070226313546299934, + -0.012755235657095909, + 0.0298614501953125, + -0.004412044771015644, + 0.02873172238469124, + -0.017739778384566307, + -0.003635356668382883, + -0.020915228873491287, + 0.03346436470746994, + -0.03731154650449753, + -0.028029458597302437, + -0.022976217791438103, + -0.02778519317507744, + -0.0032040756195783615, + -0.04213578999042511, + 0.010205715894699097, + -0.004812792409211397, + 0.031449176371097565, + 0.006572267040610313, + 0.002994159935042262, + -0.01298423483967781, + -0.009900383651256561, + -0.00780886085703969, + -0.018900038674473763, + 0.01263310294598341, + -0.02876225672662258, + 0.0336475633084774, + 0.016136785969138145, + 0.025189872831106186, + 0.009953816421329975, + -0.003026601392775774, + -0.018472574651241302, + -0.016854315996170044, + 0.010289682075381279, + -0.010785846039652824, + -0.024334944784641266, + 0.005675354972481728, + -0.0006116177537478507, + -0.0016955456230789423, + 0.0039845798164606094, + -0.0020667146891355515, + -0.0023319716565310955, + 0.02166329137980938, + 0.0013110184809193015, + -0.030166782438755035, + -0.03529635816812515, + -0.005705887917429209, + -0.0057287877425551414, + -0.03309796750545502, + -0.00019285996677353978, + 0.011686574667692184, + 0.007396663073450327, + -0.026151668280363083, + -0.047418028116226196, + -0.001977023435756564, + 0.03502155840396881, + -0.0007399525493383408, + 0.00798442680388689, + -0.0007065568934194744, + -0.00013072017463855445, + -0.003726956434547901, + -0.018228309229016304, + -0.02754092775285244, + -0.0062974682077765465, + -0.012663636356592178, + -0.006980648264288902, + -0.017327580600976944, + -0.019037438556551933, + -0.019587034359574318, + -0.005228807218372822, + -0.017602378502488136, + -0.025586804375052452, + 0.01208350621163845, + 0.005282239988446236, + -0.039082471281290054, + 0.01938856951892376, + 0.02033509872853756, + -0.013411699794232845, + 0.0177703108638525, + 0.009617951698601246, + 0.01673218235373497, + -4.8125541070476174e-5, + -0.03978473320603371, + 0.0033510164357721806, + 0.00547307264059782, + 0.018090909346938133, + -0.01552612241357565, + 0.0022212888579815626, + -0.010503414086997509, + 0.009274453856050968, + -0.005255523603409529, + -0.0022766301408410072, + -0.002190755680203438, + 0.0182435754686594, + 0.0008806913974694908, + 0.0015419255942106247, + 0.007606578525155783, + 0.03477729111909866, + 0.00288538564927876, + -0.013098734430968761, + 0.012335404753684998, + -0.004606693517416716, + -0.0029407269321382046, + 0.03636501729488373, + -0.004186862148344517, + -0.005610472057014704, + 0.015434522181749344, + -0.039265669882297516, + -0.014999425038695335, + -0.017709244042634964, + -0.029082853347063065, + 0.01772451028227806, + -0.017709244042634964, + 0.026243267580866814, + 0.021296894177794456, + -0.021296894177794456, + 0.043967779725790024, + -0.0001004851728794165, + -1.9247234376962297e-5, + 0.004095262847840786, + 0.014640660025179386, + 0.004438761156052351, + -0.026151668280363083, + 0.0025533372536301613, + 0.04231898859143257, + -0.0087706558406353, + 0.013075834140181541, + 0.022640353068709373, + 0.008518757298588753, + 0.0032804084476083517, + -0.009839317761361599, + 0.02170909196138382, + 0.005102857947349548, + -0.049738552421331406, + -0.005705887917429209, + -0.053494133055210114, + 0.000663142534904182, + -0.03679248318076134, + 0.010526313446462154, + -0.011793441139161587, + -0.03795274347066879, + -0.011335442773997784, + 0.0004012250865343958, + -0.022029690444469452, + -0.0095950523391366, + -0.010694246739149094, + -0.013571999035775661, + -0.014113962650299072, + 0.01092324499040842, + 0.012976601719856262, + -0.005202090367674828, + 0.005499789025634527, + -0.017663445323705673, + -0.021815957501530647, + 0.011007211171090603, + -0.013747564516961575, + 0.00072134641231969, + 0.01654898375272751, + -0.009824050590395927, + -0.006774549372494221, + -0.0345940925180912, + 0.008869889192283154, + 0.0004281801520846784, + 0.019648101180791855, + 0.000888324691914022, + -0.0037689395248889923, + -0.0182435754686594, + 0.006911948788911104, + -0.025189872831106186, + -0.005278423428535461, + -0.01972443424165249, + -0.033769696950912476, + 0.04033433273434639, + 0.013594898395240307, + 0.006423417944461107, + -0.002471279352903366, + -0.0006855652900412679, + 0.00945765245705843, + 0.019663367420434952, + -0.018457308411598206, + 0.0004372446855995804, + -0.014587227255105972, + 0.010953778401017189, + 0.016381051391363144, + 0.035907018929719925, + -0.0047631761990487576, + -0.05208960548043251, + -0.03892980515956879, + 0.02114422805607319, + -0.02857905626296997, + -0.002591503784060478, + 0.0057287877425551414, + 0.0031792675144970417, + 0.004732642788439989, + 0.005118124186992645, + -0.013205600902438164, + 0.0022670887410640717, + 0.02677759900689125, + 0.017464978620409966, + -0.02526620589196682, + -0.017281780019402504, + 0.009282086975872517, + -0.005068507976830006, + -0.0019846567884087563, + -0.013778097927570343, + -0.015205523930490017, + -0.06668446213006973, + -0.00530895683914423, + -5.814424002892338e-5, + 0.005805120803415775, + -0.016747448593378067, + 0.00015028049529064447, + -0.00672111613675952, + 0.0009818326216191053, + 0.004900575615465641, + 0.0035170407500118017, + -0.007369946222752333, + 0.0036906981840729713, + 0.0014675009297206998, + 0.043204449117183685, + -0.009969083592295647, + 0.011014845222234726, + -0.007308879867196083, + 0.010770579800009727, + 0.007618028670549393, + -0.003868172178044915, + 0.014587227255105972, + 0.004370061215013266, + 0.02578527107834816, + 0.009778250940144062, + 0.019938167184591293, + 0.03639554977416992, + -0.03227357193827629, + 0.02436547726392746, + -0.0009331703186035156, + -0.009846950881183147, + 0.00568680465221405, + -0.0034712408669292927, + -0.026716532185673714, + 0.010350747965276241, + 0.022304488345980644, + -0.00948055274784565, + 0.013022401370108128, + 0.0037403146270662546, + 0.031357575207948685, + 0.01569405384361744, + 0.012106405571103096, + 0.03828860819339752, + 0.0035819236654788256, + -0.0002628715883474797, + 0.0036506233736872673, + -0.014297161251306534, + 0.010068316012620926, + -0.018304642289876938, + -0.019693901762366295, + 0.01004541665315628, + 0.021205293014645576, + -0.030609512701630592, + 0.020869428291916847, + -0.017663445323705673, + 0.0091217877343297, + 0.001099194516427815, + 0.021861756220459938, + -0.007556962314993143, + 0.002135414397343993, + -0.017312312498688698, + 0.06955458223819733, + 0.001059119706042111, + -0.004179229028522968, + 0.01948016881942749, + -0.013747564516961575, + 0.016655849292874336, + 0.004900575615465641, + 0.015205523930490017, + 0.03380022943019867, + -0.00262394524179399, + -0.006411967799067497, + -0.012281971983611584, + 0.010694246739149094, + 0.046624165028333664, + 0.007118047680705786, + 0.014984157867729664, + 0.02161749079823494, + 0.016701649874448776, + 0.007793594151735306, + 0.0006512154941447079, + -0.002921643666923046, + 0.007946260273456573, + 0.012564403936266899, + -0.009709550999104977, + -0.020182432606816292, + -0.022777752950787544, + 0.02028929814696312, + -0.015068124048411846, + -0.014556693844497204, + -0.007442462723702192, + 0.028411123901605606, + 0.019067971035838127, + 0.02431967854499817, + 0.0336475633084774, + -0.0035552072804421186, + 0.022533487528562546, + 0.029281320050358772, + 0.004259378649294376, + -0.0024140295572578907, + -0.004423494450747967, + -0.0076027619652450085, + 0.004091446287930012, + 0.005217357072979212, + -0.028899654746055603, + 0.0037975641898810863, + 0.013243766501545906, + 0.012106405571103096, + 0.007625661790370941, + -0.012343037873506546, + -0.013014768250286579, + 0.012030073441565037, + -0.005446356255561113, + -0.017373379319906235, + -0.01139650959521532, + -0.004179229028522968, + -0.00026477992651052773, + -0.011365976184606552, + -0.02175489068031311, + -0.018609972670674324, + -0.02317468449473381, + -0.005438722670078278, + 0.03303690254688263, + 0.010824012570083141, + -0.03914353623986244, + -0.020915228873491287, + 0.020930495113134384, + -0.006789816077798605, + -0.005121941212564707, + -0.02682339958846569, + -0.0002028786693699658, + -0.013602531515061855, + -0.012175105512142181, + -0.013732298277318478, + -0.004534177482128143, + -0.0036735231988132, + 0.021739624440670013, + 0.03700621426105499, + -0.009541618637740612, + -0.0028930187691003084, + -0.030365247279405594, + -0.004641043487936258, + 0.019709168002009392, + -0.0004107666900381446, + 0.009106520563364029, + -0.00867142342031002, + 0.006793632637709379, + 0.014350594952702522, + 0.001915002940222621, + 0.00969428475946188, + -0.02427387796342373, + -0.010938512161374092, + -0.006224952172487974, + 0.019968699663877487, + -0.03425822779536247, + -0.02531200647354126, + -0.031693439930677414, + -0.0009875575779005885, + 0.003104842733591795, + 0.013274299912154675, + -0.004992174915969372, + -0.012778135947883129, + -0.006358535028994083, + 0.020457230508327484, + 0.002614403609186411, + 0.021205293014645576, + -0.0034693325869739056, + -0.01514445710927248, + 0.0067707328125834465, + -0.026609666645526886, + -0.024869276210665703, + 0.0030170599929988384, + -0.005148657597601414, + -0.002578145358711481, + -0.0046715764328837395, + -0.004175412468612194, + 0.001044807257130742, + -0.025296740233898163, + 0.003713598009198904, + 0.015510855242609978, + 0.026655467227101326, + -0.0023567797616124153, + -0.002236555563285947, + -0.002952176844701171, + 0.03492995724081993, + 0.020686229690909386, + 0.023098351433873177, + 0.009755350649356842, + 0.00484714237973094, + -0.028502723202109337, + -0.006690583191812038, + 0.011648408137261868, + 0.03212090581655502, + -0.022243421524763107, + -0.009259186685085297, + 0.01925116963684559, + 0.012831568717956543, + 0.029357653111219406, + -0.02531200647354126, + -0.010137015953660011, + -0.00990801677107811, + 0.002528528915718198, + -0.0005257431766949594, + 0.001159306732006371, + 0.008938588201999664, + 8.957194950198755e-5, + -0.004461660981178284, + -0.036517683416604996, + 0.01792297698557377, + 0.0170680470764637, + -0.022121289744973183, + -0.0002102734288200736, + 0.003864355618134141, + 0.0008616081904619932, + -0.02402961254119873, + 0.006064652930945158, + 0.007969159632921219, + -0.0006855652900412679, + -0.011259110644459724, + 0.004679210018366575, + -0.028227925300598145, + 0.01625891774892807, + -0.01438112836331129, + -0.007743977941572666, + -0.02972405031323433, + 0.008511124178767204, + -0.008587457239627838, + -0.006106636021286249, + -0.04283805191516876, + -0.02004503272473812, + 0.021968623623251915, + -0.011625508777797222, + 0.0045379940420389175, + -0.01402999646961689, + -0.014793326146900654, + 0.01700698211789131, + 0.010533947497606277, + 0.025815803557634354, + -0.012488070875406265, + 0.02677759900689125, + -0.019129037857055664, + -0.022396087646484375, + -0.003454066114500165, + -0.01691538095474243, + 0.01972443424165249, + 0.007885193452239037, + 0.022762486711144447, + -0.035387955605983734, + -0.008457690477371216, + 0.008274491876363754, + -0.017663445323705673, + 0.0017251246608793736, + -0.034716226160526276, + -0.0032823169603943825, + 0.028212659060955048, + 0.006419601384550333, + 0.005835654214024544, + 0.007144764065742493, + -7.836054282961413e-5, + 0.015602455474436283, + -0.0024999042507261038, + 0.0022212888579815626, + -0.0012747602304443717, + -0.00242357118986547, + -0.029281320050358772, + 0.015755120664834976, + -0.03563222289085388, + -0.004961641971021891, + -0.015106290578842163, + 0.007087514270097017, + -0.032395705580711365, + -0.013350632973015308, + 0.01601465232670307, + -0.013640698045492172, + -0.00037045334465801716, + 0.009411852806806564, + 0.018884772434830666, + 0.0025876869913190603, + -0.012686536647379398, + 0.0054768892005085945, + -0.007110414560884237, + 0.014060529880225658, + -0.022380821406841278, + -0.023281550034880638, + -0.02123582735657692, + -0.012014806270599365, + -0.02132742665708065, + 0.006919581908732653, + 0.018640507012605667, + 0.019067971035838127, + 0.019220637157559395, + 0.025770004838705063, + 0.0061906022019684315, + 0.011717108078300953, + -0.004595243837684393, + 0.03212090581655502, + 0.005999770015478134, + -0.007503529079258442, + 0.01130491029471159, + 0.009915649890899658, + 0.001929315272718668, + 0.02184648998081684, + 0.009625584818422794, + -0.021434292197227478, + -0.00507232453674078, + -0.010014883242547512, + -0.00024140295863617212, + -0.0004770809318870306, + 0.011388876475393772, + -0.0005080911796540022, + -0.009579785168170929, + 0.003375824773684144, + 0.0014484177809208632, + -0.0007251630304381251, + -0.010427081026136875, + -7.168141019064933e-5, + 0.006564633920788765, + 0.03100644424557686, + 0.0035475739277899265, + 0.003896797075867653, + -0.024289144203066826, + -0.009991982951760292, + -0.018854238092899323, + 0.0016029919497668743, + 0.005866187158972025, + -0.02644173428416252, + -0.00182435754686594, + 0.002692644950002432, + -0.02062516286969185, + 0.0063089183531701565, + -0.01691538095474243, + -0.025907402858138084, + 0.008427157998085022, + -0.0021392309572547674, + 0.016793249174952507, + 0.0023701381869614124, + -0.009656118229031563, + 0.020976295694708824, + -0.028517991304397583, + 0.011129343882203102, + 0.001195564866065979, + 0.023632680997252464, + 0.025678405538201332, + -0.027464596554636955, + -0.003150642616674304, + 0.022121289744973183, + 0.012938435189425945, + -0.0004844756913371384, + 0.008037859573960304, + 0.023327350616455078, + -0.020014500245451927, + -0.015457422472536564, + -0.003368191421031952, + -0.01049578096717596, + 0.01691538095474243, + 0.013594898395240307, + 0.028166858479380608, + 0.004404411185532808, + 0.02957138419151306, + -0.02896072156727314, + 0.0027899693232029676, + -0.0006302239489741623, + -0.008587457239627838, + -0.009327886626124382, + 0.004732642788439989, + 0.0007747794734314084, + 0.01828937418758869, + 0.01673218235373497, + -0.0072325472719967365, + -0.019831299781799316, + -0.029785117134451866, + 0.023541081696748734, + -0.006621883250772953, + 0.008518757298588753, + -0.0027327195275574923, + -0.009587418287992477, + -0.022716686129570007, + 0.005587571766227484, + 0.0022957134060561657, + 0.010106482543051243, + -0.007427196018397808, + -0.016762716695666313, + 0.01047288067638874, + -0.030746912583708763, + -0.00661043357104063, + -0.006274568382650614, + -0.0014999425038695335, + -0.01038128137588501, + 0.022686153650283813, + 0.008679056540131569, + -0.005179190542548895, + 0.006194418761879206, + 0.0049769082106649876, + 0.013243766501545906, + -0.014945991337299347, + -0.007766877766698599, + 0.009526352398097515, + -0.01583145372569561, + 0.04540283977985382, + -0.03051791340112686, + 0.016945915296673775, + -0.004251745529472828, + 0.011892673559486866, + 0.010511047206819057, + 0.0049883583560585976, + 0.006858515553176403, + 0.005557038821280003, + -0.00713331438601017, + 0.013259033672511578, + 0.0020705312490463257, + -0.008350824937224388, + -0.026945531368255615, + -0.00025810080114752054, + 0.031693439930677414, + -0.007831760682165623, + -0.010053049772977829, + -0.020579364150762558, + 0.005786037538200617, + 0.028517991304397583, + -0.0011507192393764853, + -0.008022593334317207, + -0.0033166666980832815, + 0.00044821755727753043, + 0.00341208279132843, + -0.0003136807063128799, + -0.024808209389448166, + 0.004900575615465641, + -0.0017251246608793736, + 0.003608640283346176, + -0.009793517179787159, + 0.03850233927369118, + -0.010343114845454693, + 0.009182853624224663, + 0.01059501338750124, + 0.003784205997362733, + 0.04103659465909004, + -0.007782144472002983, + 0.027846259996294975, + -0.01253387052565813, + 0.00032990146428346634, + -0.009999617002904415, + -0.00593488710001111, + 0.0005648638471029699, + 0.008182892575860023, + 0.01639631763100624, + -0.012037706561386585, + -0.029556117951869965, + 0.017083315178751945, + 0.0007948168786242604, + 0.005545588675886393, + 0.03019731491804123, + 0.0170680470764637, + -0.013923129998147488, + 0.042349521070718765, + -0.014587227255105972, + 0.0064959339797496796, + 0.014472727663815022, + -0.0027976026758551598, + 0.018884772434830666, + -0.022640353068709373, + -0.0011316359741613269, + -0.006591350305825472, + -0.00046730079338885844, + -0.011480475775897503, + 0.015625355765223503, + 0.002089614514261484, + -0.005232623778283596, + 0.022060222923755646, + -0.024563943967223167, + -0.01563298888504505, + -0.001860615680925548, + -0.009640851989388466, + 0.003057134570553899, + -0.043723512440919876, + 0.011213310062885284, + -0.01068661268800497, + 0.0030056098476052284, + -0.007266896776854992, + 0.008205791935324669, + -0.010633179917931557, + 0.0022880802862346172, + -0.009495818987488747, + -0.02735772915184498, + -0.014312428422272205, + 0.016381051391363144, + 0.03042631410062313, + 0.007450095843523741, + 0.008495857007801533, + 0.0046219602227211, + 0.010373648256063461, + 0.012304871343076229, + -0.008740122430026531, + 0.011953740380704403, + 0.0019102321239188313, + 0.009900383651256561, + 0.00673256628215313, + -0.025281473994255066, + -0.009419485926628113, + -0.013152167201042175, + 0.039326734840869904, + 0.006175335496664047, + -0.009373686276376247, + -0.021128959953784943, + -0.01424372848123312, + -0.0011898399097844958, + 0.01578565500676632, + -0.015480322763323784, + 0.01607571914792061, + 0.024304412305355072, + -0.00570970494300127, + 0.0005667721852660179, + 0.0029655350372195244, + 0.00568680465221405, + 0.010030149482190609, + 0.0069959149695932865, + -0.020869428291916847, + 0.006034119985997677, + 0.01790771074593067, + -0.0009117017034441233, + -0.0069272154942154884, + -0.00728598004207015, + 0.007724894676357508, + -0.009617951698601246, + 0.0008596998522989452, + -0.018365707248449326, + 0.0009923283942043781, + 0.015121557749807835, + 0.004568526986986399, + 0.0021411392372101545, + 0.005961603485047817, + 0.003789931070059538, + -0.022243421524763107, + -0.0019455361180007458, + -0.02071676217019558, + 0.006278385408222675, + -0.00485859252512455, + 0.008572190068662167, + 0.006866149138659239, + -0.01106827799230814, + -0.008305025286972523, + -0.00796152651309967, + 0.0017871451564133167, + 0.015449789352715015, + -0.009625584818422794, + -0.0056333718821406364, + -0.02929658629000187, + 0.08543183654546738, + -0.010724779218435287, + 0.009846950881183147, + -0.0017451620660722256, + 0.012052972801029682, + 0.0010533947497606277, + -0.007740161381661892, + 0.008992021903395653, + 0.02218235470354557, + 0.0058318376541137695, + -0.005950153339654207, + 0.00508377468213439, + 0.0036639815662056208, + -0.008541657589375973, + -0.02544940635561943, + -0.021648025140166283, + 0.011938473209738731, + -0.0008468186715617776, + 0.018838971853256226, + 0.025006674230098724, + 0.008923321962356567, + -0.01251097023487091, + -0.020533563569188118, + 0.01952596940100193, + -0.0045532602816820145, + 0.019877100363373756, + -0.017373379319906235, + -0.0026792865246534348, + 0.018503107130527496, + 0.018472574651241302, + -0.0027575278654694557, + -0.020182432606816292, + -0.009961450472474098, + -0.0031391927041113377, + 0.010129382833838463, + 0.014633026905357838, + -0.005377656314522028, + 0.023052550852298737, + -0.0031888089142739773, + 0.006614250130951405, + 0.009274453856050968, + -0.0018510740483179688, + 0.032395705580711365, + 0.025617338716983795, + -0.02583106979727745, + 0.00032322233892045915, + 0.004946375265717506, + -0.004900575615465641, + -0.0023167049512267113, + 0.00017043716798070818, + 0.007854660972952843, + -0.04042593017220497, + 0.008816455490887165, + 0.0033586497884243727, + 0.017358113080263138, + 0.01128201000392437, + 0.0066638668067753315, + -0.003480782499536872, + -0.0043509784154593945, + -0.004389144480228424, + -0.02825845777988434, + 0.011953740380704403, + -0.0011583524756133556, + -0.020274031907320023, + -0.006518833804875612, + 0.0032746836077421904, + -0.0004966412670910358, + 0.004152512643486261, + -0.01274760253727436, + -0.011251476593315601, + -0.020350364968180656, + -0.010411814786493778, + 0.009312620386481285, + -0.022243421524763107, + 0.0005920574767515063, + 0.023770080879330635, + -0.004274645354598761, + 0.040456462651491165, + 0.012900268658995628, + -0.0005849012522958219, + 0.01569405384361744, + 0.005312773399055004, + -0.003190717427060008, + -0.01016754936426878, + 0.011572075076401234, + -0.0006464446778409183, + 0.0032346087973564863, + -0.008488223887979984, + 0.004522727336734533, + -0.018518373370170593, + -0.02028929814696312, + -0.012564403936266899, + -0.0010314489481970668, + -0.010953778401017189, + -0.007614211644977331, + 0.002238463843241334, + 0.0017900076927617192, + -0.018976371735334396, + 0.006106636021286249, + 0.006961564999073744, + 0.01596885360777378, + 0.0005448264419101179, + -0.0033529249485582113, + -0.005885270424187183, + 0.011533908545970917, + 0.003681156551465392, + 0.02085416205227375, + 0.012946068309247494, + -0.02540360577404499, + -0.00841189082711935, + -0.004515094216912985, + -0.0146940927952528, + 0.003919696900993586, + 0.003289950080215931, + -0.017984043806791306, + 0.013480398803949356, + -0.0014760884223505855, + 0.005434906110167503, + -0.010518680326640606, + -0.0012928893556818366, + -0.001115415245294571, + -0.006007403135299683, + 0.001513300696387887, + -0.01763291098177433, + -0.0066524166613817215, + 0.017510779201984406, + -0.007831760682165623, + 0.005873820744454861, + 0.00013107799168210477, + 0.012999501079320908, + 0.019983965903520584, + 0.010984311811625957, + 0.02227395586669445, + -0.01948016881942749, + 0.002165947575122118, + -0.003568565472960472, + -0.01630471833050251, + 0.014976524747908115, + 0.01668638363480568, + -0.014320061542093754, + 0.024136479943990707, + -0.018045108765363693, + 0.016884848475456238, + 0.02369374781847, + 0.008182892575860023, + -0.011801074258983135, + 0.018121441826224327, + -0.022258687764406204, + 0.017617644742131233, + 0.0014856300549581647, + 0.03615128621459007, + -0.02076256275177002, + -0.008167625404894352, + -0.007404296193271875, + -0.007900460623204708, + 0.013014768250286579, + -0.013686497695744038, + 0.030869044363498688, + -0.03456356003880501, + -0.0014035721542313695, + -9.672815940575674e-5, + -0.012709436006844044, + -0.0028166859410703182, + 0.007606578525155783, + -0.013785731047391891, + 0.006129535846412182, + 0.004507460631430149, + 0.01343459915369749, + 0.012388837523758411, + -0.004663943313062191, + -0.008824089542031288, + -0.0007008318789303303, + 0.006186785642057657, + -0.012251438573002815, + 0.007785961031913757, + -0.0013453682186082006, + 0.009900383651256561, + 0.008511124178767204, + -0.010610280558466911, + 0.018228309229016304, + -0.01163314189761877, + 0.0034636077471077442, + 0.02132742665708065, + -0.0043280781246721745, + -0.005450172815471888, + -0.0038777138106524944, + 0.008717223070561886, + -0.005919620394706726, + 0.007763061206787825, + -0.004480744246393442, + 0.0008143771556206048, + 0.0043242615647614, + 0.010442347265779972, + -0.011060644872486591, + -0.011220944114029408, + -0.020594630390405655, + 0.021510625258088112, + 0.008373724296689034, + 0.012961335480213165, + -0.009617951698601246, + -0.022594552487134933, + -0.002999885007739067, + 0.002734628040343523, + 0.014984157867729664, + -0.006950115319341421, + -0.020258765667676926, + -0.017831377685070038, + -0.0018921029986813664, + -0.012762869708240032, + -0.002583870431408286, + -0.02544940635561943, + -0.02947978489100933, + 0.004022746346890926, + 0.02544940635561943, + -0.013419332914054394, + -0.0021411392372101545, + -0.014037629589438438, + 0.015800921246409416, + -0.004289912059903145, + 0.011335442773997784, + 0.01938856951892376, + 0.005545588675886393, + -0.014472727663815022, + -0.009915649890899658, + 0.022960951551795006, + -0.008144726045429707, + 0.010137015953660011, + 0.013503299094736576, + -0.0028930187691003084, + 0.00644631776958704, + 0.005198273807764053, + -0.004755542613565922, + 0.0018348533194512129, + 0.02578527107834816, + -0.0024770041927695274, + 0.03166290745139122, + 0.01182397361844778, + -0.0032059838995337486, + 0.013991829939186573, + 0.006950115319341421, + -0.0091217877343297, + -0.008098926395177841, + -0.015106290578842163, + -0.016274185851216316, + -0.001207968918606639, + -0.004167778883129358, + 0.001873019733466208, + 0.003450249321758747, + 0.009381319396197796, + -3.0369183150469325e-5, + -0.014564326964318752, + -0.007018814794719219, + -0.004213578999042511, + 0.002009464893490076, + 0.016274185851216316, + -0.0025228040758520365, + -0.013236133381724358, + 0.0064959339797496796, + -0.0152894901111722, + -0.028136326000094414, + -0.005953970365226269, + -0.00529750669375062, + -0.004690659698098898, + -0.016274185851216316, + 0.010556846857070923, + 0.012961335480213165, + -0.026228001341223717, + -0.0076447450555861, + 0.005866187158972025, + -0.007434829603880644, + 0.02738826349377632, + -0.004263195209205151, + -0.002017098246142268, + 0.014350594952702522, + -0.01564825512468815, + -0.0002688351087272167, + -0.007118047680705786, + -0.0062020523473620415, + -0.010885078459978104, + -0.021556425839662552, + 0.008763022720813751, + -0.0095950523391366, + 0.015816187486052513, + -0.010625546798110008, + -0.0010114115430042148, + -0.03520475700497627, + 0.01697644777595997, + 0.024228079244494438, + -0.004492193926125765, + 0.0119690066203475, + -0.005660088267177343, + -0.009198120795190334, + 0.0011287735542282462, + -0.03184610605239868, + 0.011625508777797222, + 0.022121289744973183, + 0.005224990658462048, + -0.0018310366431251168, + 0.01367886457592249, + -0.0002638257574290037, + -0.010075949132442474, + -0.016411583870649338, + 0.007499712519347668, + -0.01438112836331129, + 0.006606617011129856, + 0.012220905162394047, + 0.004938741680234671, + 7.341083255596459e-5, + -0.012839202769100666, + 0.004900575615465641, + -0.0003773710341192782, + -0.011014845222234726, + -0.0015476505504921079, + -0.01229723822325468, + -0.006335634738206863, + 0.004675393458455801, + 0.010083583183586597, + 0.022548753768205643, + -0.008495857007801533, + 0.005347123369574547, + -0.009320253506302834, + 0.01786191016435623, + 0.029128653928637505, + -0.007492078933864832, + 0.024396011605858803, + -0.017526045441627502, + 0.003816647455096245, + -0.009320253506302834, + -0.015129190869629383, + -0.01610625348985195, + 0.025815803557634354, + 0.0065455506555736065, + -0.012572037056088448, + 0.00337200821377337, + -0.0073394132778048515, + 0.0002728902909439057, + -0.007411929313093424, + -0.003931147046387196, + -0.01583145372569561, + -0.0026754699647426605, + -0.010991944931447506, + -0.008915688842535019, + 0.007350862957537174, + -0.006553183775395155, + -0.0004463092191144824, + 0.012785769067704678, + -0.011030111461877823, + -0.02835005708038807, + -0.0063203684985637665, + -0.006228768732398748, + -0.012923168949782848, + 0.01345749944448471, + 0.0177703108638525, + 0.013900230638682842, + 0.0002623945183586329, + -0.0018873321823775768, + 0.02943398617208004, + 0.01790771074593067, + 0.0007079881033860147, + -0.007679095026105642, + -0.0005763137596659362, + 0.01016754936426878, + -0.010488147847354412, + 0.014487993903458118, + 0.016426850110292435, + -0.01639631763100624, + 0.010549213737249374, + 0.012686536647379398, + -0.037708476185798645, + 0.0251135416328907, + -0.01083164568990469, + -0.0187168400734663, + -0.020060298964381218, + 0.0007084651733748615, + -0.022686153650283813, + 0.01734284684062004, + -0.012541503645479679, + 0.023251017555594444, + -0.01905270479619503, + -0.012724703177809715, + 0.01877790503203869, + 0.011663675308227539, + 0.0006951069226488471, + -0.005167740862816572, + -0.0011020569363608956, + 0.009648485109210014, + 0.018426774069666862, + 0.01644211821258068, + 0.022579286247491837, + -0.02184648998081684, + -0.0014827675186097622, + 0.001691729063168168, + 0.015304756350815296, + -0.0029827100224792957, + -0.008335557766258717, + 0.025937937200069427, + -0.02080836147069931, + 0.004534177482128143, + 0.0035094073973596096, + 0.0014512802008539438, + -0.008877522312104702, + -0.008381358347833157, + 0.01630471833050251, + -0.001500896643847227, + -0.002196480752900243, + -0.010824012570083141, + -0.005499789025634527, + 0.020014500245451927, + 0.017281780019402504, + -0.006702032871544361, + -0.009327886626124382, + 0.009228654205799103, + -0.018884772434830666, + -0.0013787639327347279, + 0.021083161234855652, + -0.0032040756195783615, + -0.008808822371065617, + -0.009862217120826244, + 0.008450057357549667, + -0.0168237816542387, + 0.014968891628086567, + -0.016945915296673775, + -0.0012804853031411767, + -0.0006984464707784355, + 0.0024922708980739117, + -0.015938319265842438, + 0.03541848808526993, + 0.004362428095191717, + -0.00477462587878108, + 0.000382857455406338, + 0.007350862957537174, + -0.02544940635561943, + -0.027281396090984344, + 0.007595128379762173, + -0.02080836147069931, + -0.0018825613660737872, + 0.02289988473057747, + -0.0033567415084689856, + -0.005953970365226269, + 0.006919581908732653, + -0.015098657459020615, + -0.011129343882203102, + -0.003289950080215931, + -0.00439677806571126, + 0.005537955556064844, + -0.001959848450496793, + 0.005110491067171097, + -0.001894965535029769, + -0.0008215333800762892, + -0.009289720095694065, + -0.008236325345933437, + -0.013717031106352806, + -0.004484560806304216, + 0.02384641394019127, + -0.023205216974020004, + -0.009114154614508152, + 0.00307430955581367, + -0.009633217938244343, + 0.016655849292874336, + -0.011136977933347225, + 0.0071027809754014015, + -0.007992059923708439, + 0.01367123145610094, + -0.0019560318905860186, + -0.004938741680234671, + 0.005675354972481728, + 0.01391549687832594, + 0.009846950881183147, + -0.015449789352715015, + 0.016610050573945045, + -0.005102857947349548, + 0.021602224558591843, + 0.0341360941529274, + -0.0030437763780355453, + 0.014320061542093754, + 0.027098197489976883, + -0.01838097535073757, + -0.012030073441565037, + -0.006736382842063904, + 0.0023796798195689917, + -0.005545588675886393, + 0.004713559523224831, + 0.001360634807497263, + -0.013449866324663162, + 0.0403037965297699, + -0.031159110367298126, + 0.01495362538844347, + 0.004641043487936258, + -0.0002268519892822951, + 0.006125719286501408, + 0.012220905162394047, + 0.030975911766290665, + 0.004308994859457016, + 0.007930994033813477, + -0.00031535050948150456, + -0.01905270479619503, + 0.031204910948872566, + -0.0035456656478345394, + 0.011144611053168774, + -0.0035800153855234385, + 0.0037021480966359377, + -0.00035399405169300735, + -0.003965497016906738, + -0.016579516232013702, + 0.020930495113134384, + -0.004675393458455801, + -0.007167663890868425, + 0.01357963215559721, + 0.013953663408756256, + 0.010030149482190609, + 0.0034311660565435886, + 0.0015905878972262144, + -0.02943398617208004, + -0.0006578945904038846, + -0.0003327639715280384, + 0.022258687764406204, + 0.011114077642560005, + -0.000757604546379298, + 0.000825827126391232, + 0.00713331438601017, + -0.0005577076226472855, + -0.03331169858574867, + -0.013778097927570343, + 0.0031239259988069534, + 0.008274491876363754, + -0.014304795302450657, + 0.015335289761424065, + -0.004198312293738127, + -0.007469179108738899, + -0.016182584688067436, + 0.007953893393278122, + 0.023876946419477463, + -0.013144534081220627, + -0.017739778384566307, + 0.0155184892937541, + 0.01540398970246315, + 0.01583145372569561, + 0.009709550999104977, + 0.02735772915184498, + -0.024823475629091263, + 0.022594552487134933, + 0.006358535028994083, + 0.004816608969122171, + -0.018884772434830666, + -0.00822105910629034, + -0.01654898375272751, + 0.00409907940775156, + 0.012457537464797497, + -0.008152359165251255, + -0.004022746346890926, + -0.01310636755079031, + 0.0040647294372320175, + 0.009762984700500965, + 0.0016707374015823007, + 0.012976601719856262, + -0.02876225672662258, + 0.013426966033875942, + 0.012213272042572498, + -0.003301400225609541, + 0.016426850110292435, + 0.0008215333800762892, + 0.009709550999104977, + 0.005885270424187183, + -0.010907978750765324, + -0.02085416205227375, + 0.010633179917931557, + 0.012701802887022495, + -0.01559482142329216, + 0.00046610808931291103, + 0.012190372683107853, + -0.022930419072508812, + -0.006873782258480787, + -0.014518527314066887, + -0.01578565500676632, + -0.008037859573960304, + -0.0074462792836129665, + -0.024854008108377457, + -0.004125795792788267, + 0.011251476593315601, + -0.01016754936426878, + 0.0037250479217618704, + -0.005774587858468294, + -0.018518373370170593, + -0.020075565204024315, + -0.011801074258983135, + 0.014686459675431252, + 0.0034368911292403936, + -0.004202128853648901, + 0.028411123901605606, + -0.02114422805607319, + 0.022151822224259377, + -0.01677798293530941, + -0.009503452107310295, + 0.0039960299618542194, + 0.019541235640645027, + 0.016319984570145607, + -0.0019407653016969562, + -0.006965381558984518, + -0.02972405031323433, + -0.011465209536254406, + -0.01720544695854187, + 0.012304871343076229, + 0.013999463059008121, + -0.0022575471084564924, + -0.004473111126571894, + 0.01650318317115307, + 0.00718293059617281, + -0.0014197928830981255, + 0.0016468834364786744, + 0.00529750669375062, + 0.004083812702447176, + -0.020869428291916847, + 0.00149898836389184, + -0.02431967854499817, + 0.017984043806791306, + 0.0015113924164324999, + 0.0015199799090623856, + -1.297063772653928e-5, + 0.027266129851341248, + -0.0028109608683735132, + 0.0010686613386496902, + 0.002955993404611945, + -0.0009627493564039469, + 0.0029388186521828175, + -0.01139650959521532, + -0.0033910912461578846, + 0.002889202209189534, + 0.0024770041927695274, + 0.014213195070624352, + -0.00144269282463938, + 0.012488070875406265, + 0.015984119847416878, + -0.01300713513046503, + -0.02231975458562374, + -0.01118277758359909, + 0.007030264940112829, + -0.0009012058726511896, + -0.0017193997045978904, + -0.0030227848328649998, + -0.01505285780876875, + -0.004381511360406876, + 0.004766992758959532, + -0.012755235657095909, + -0.0041143461130559444, + 0.01389259658753872, + -0.004725009668618441, + -0.011915573850274086, + 0.0023682299070060253, + 0.007938627153635025, + 0.0014083429705351591, + -0.003080034628510475, + 0.01277050282806158, + -0.020136632025241852, + -0.009075988084077835, + -0.0008282125345431268, + -0.006144802551716566, + 0.003120109438896179, + -0.002230830490589142, + 0.03441089391708374, + 0.0018882863223552704, + -0.04564710333943367, + -0.022457154467701912, + 0.0054654390551149845, + 0.01786191016435623, + -0.01450326107442379, + -0.01483149267733097, + -0.005545588675886393, + -0.0002640642924234271, + -0.013976563699543476, + 0.0022174722980707884, + 0.008442424237728119, + -0.0114957420155406, + -0.003215525532141328, + -6.530045357067138e-5, + -0.0021430475171655416, + 0.0232204832136631, + -0.007156214211136103, + 0.006354718003422022, + 0.012175105512142181, + -0.025083007290959358, + -0.004141062498092651, + 0.003755581099539995, + -0.0005071370396763086, + 0.0008334604208357632, + -1.4148431546345819e-5, + -0.027739394456148148, + 0.0048013427294790745, + -0.014220829121768475, + -0.0017547036986798048, + 0.0009837409015744925, + -0.012907901778817177, + -0.004496010951697826, + -0.020732030272483826, + -0.0175413116812706, + -0.014197928830981255, + 0.0034197161439806223, + 0.008167625404894352, + -0.020365631207823753, + -0.01725124754011631, + -0.0008129459456540644, + -0.025037208572030067, + 0.005156290717422962, + -0.012388837523758411, + 0.010648447088897228, + 0.004434944596141577, + -0.021739624440670013, + 0.005232623778283596, + 0.012968968600034714, + 0.011625508777797222, + -0.002690736437216401, + 0.02128162607550621, + -0.013014768250286579, + -0.003440707689151168, + 0.0072325472719967365, + -0.0001835568982642144, + -0.028548523783683777, + -0.03422769531607628, + 0.024915074929594994, + -0.01734284684062004, + 0.009159954264760017, + -0.0001848688698373735, + -0.00030318493372760713, + -0.021449558436870575, + 0.0012938434956595302, + -0.015571922063827515, + -0.0232204832136631, + -0.0063203684985637665, + 0.0013778097927570343, + -0.010671346448361874, + -0.006076103076338768, + 0.03511315584182739, + 0.002393038012087345, + -0.002576237078756094, + 0.012175105512142181, + -0.004190679173916578, + 0.00038595846854150295, + 0.003152550896629691, + 0.001929315272718668, + -0.01792297698557377, + 0.029220253229141235, + -0.007579862140119076, + -0.020915228873491287, + -0.020594630390405655, + -0.0017270330572500825, + 0.018029842525720596, + -0.02479294314980507, + -0.012572037056088448, + 0.011961373500525951, + -0.007301246747374535, + 0.02360214851796627, + -0.008541657589375973, + -0.016839049756526947, + 0.013419332914054394, + -0.0076829115860164165, + 0.01004541665315628, + 0.009511085227131844, + 0.0003392045618966222, + -0.019556501880288124, + 0.003518949029967189, + 0.00867142342031002, + 0.012808669358491898, + 0.024533409625291824, + 0.007774510886520147, + 0.003816647455096245, + -0.0006407197215594351, + 0.011259110644459724, + -0.010373648256063461, + -0.020396163687109947, + 0.001195564866065979, + 0.03483835980296135, + -0.011053010821342468, + 0.028029458597302437, + 0.006869965698570013, + -0.03340329974889755, + -0.0029292770195752382, + 0.0013587265275418758, + 0.006923398468643427, + -0.017846643924713135, + 0.017526045441627502, + 0.01877790503203869, + 0.0017155830282717943, + -0.024960875511169434, + -0.025892136618494987, + 0.011266743764281273, + -0.016945915296673775, + 0.008274491876363754, + 0.0155184892937541, + 0.014472727663815022, + 0.0053585730493068695, + 0.01891530491411686, + 0.028517991304397583, + -0.006953931879252195, + -0.008190525695681572, + -0.0040876297280192375, + 0.02573947049677372, + -0.011098811402916908, + -0.005328040104359388, + -0.011839240789413452, + -0.0091217877343297, + -0.006526467390358448, + -0.003954046871513128, + -0.02251822128891945, + -0.002955993404611945, + -0.02161749079823494, + -0.028991254046559334, + 0.01758711226284504, + -0.015068124048411846, + 0.012793402187526226, + 0.02781572751700878, + 0.006247851997613907, + -0.007438646163791418, + -0.024136479943990707, + 0.008312658406794071, + 0.002534253988415003, + -0.0043395282700657845, + -0.006179152522236109, + 0.006140985991805792, + -0.009915649890899658, + -0.01312926784157753, + 0.0013301016297191381, + -0.016625316813588142, + 0.01972443424165249, + 0.023770080879330635, + -0.01115987729281187, + -0.021724358201026917, + 0.002681194804608822, + 0.004545627161860466, + 0.010312581434845924, + -0.021113693714141846, + 0.006037936545908451, + -0.016610050573945045, + 0.005679171532392502, + -0.020655697211623192, + 0.008098926395177841, + 0.018472574651241302, + -0.011449942365288734, + -0.005377656314522028, + 0.015724588185548782, + 0.016518451273441315, + 0.011846873909235, + 0.008694322779774666, + -0.004484560806304216, + -0.002125872764736414, + 0.008228692226111889, + 0.005591388791799545, + 0.005156290717422962, + -0.01549558900296688, + -0.010824012570083141, + -7.734674727544188e-5, + -0.005591388791799545, + 0.008808822371065617, + -0.0028911104891449213, + 0.013808630406856537, + 0.006362351588904858, + -0.011106444522738457, + -0.009984349831938744, + -0.01986183412373066, + -0.03184610605239868, + -5.4029416787670925e-5, + 0.001382580609060824, + 0.025770004838705063, + 0.010106482543051243, + -0.02222815528512001, + -0.021403759717941284, + 0.01877790503203869, + -0.009366053156554699, + -0.014663559384644032, + 0.008778288960456848, + 0.00011855461343657225, + -0.006469217594712973, + -0.010640813037753105, + -0.005610472057014704, + 0.0007709627971053123, + -0.0004198312235530466, + -0.006682949606329203, + -0.005495972465723753, + 0.0006216364563442767, + -0.006583717186003923, + 0.010625546798110008, + 0.002080072881653905, + -0.007354679983109236, + -0.0008086521993391216, + -0.0031716341618448496, + 0.01635051891207695, + -0.010480513796210289, + -0.008243958465754986, + 0.034533027559518814, + -0.018640507012605667, + -0.003950230311602354, + 0.0184878408908844, + 0.018900038674473763, + 0.012220905162394047, + 0.009228654205799103, + 0.006973015144467354, + 0.007568411994725466, + -0.014373494312167168, + 0.03663981705904007, + 0.005766954272985458, + -0.0057020713575184345, + 0.008152359165251255, + 0.010564479976892471, + -0.006240218877792358, + -0.018090909346938133, + 0.0063089183531701565, + 0.0019264528527855873, + 0.011678941547870636, + -0.034441426396369934, + 0.0014713176060467958, + -0.018854238092899323, + 0.018411507830023766, + -0.020365631207823753, + -0.0026602032594382763, + 0.0010133199393749237, + 0.002270905300974846, + -0.0182435754686594, + 0.006942481733858585, + 0.0072325472719967365, + -0.016579516232013702, + 0.019312236458063126, + -0.008014960214495659, + -0.01934276893734932, + 0.007675278000533581, + 0.011228577233850956, + 0.009656118229031563, + 0.021785425022244453, + 0.016518451273441315, + 0.002688828157261014, + -0.006324185058474541, + -0.004469294100999832, + -0.0124422712251544, + 0.011877407319843769, + 0.005839470773935318, + 0.011785808019340038, + -0.021678557619452477, + -0.007999693043529987, + 0.015350556001067162, + -0.010846911929547787, + -0.0027518027927726507, + -0.0055036055855453014, + 0.0036277235485613346, + 0.022915150970220566, + -0.00786992721259594, + -0.0010734321549534798, + -0.02693026512861252, + -0.010961411520838737, + -0.010549213737249374, + -0.00010823774209711701, + -0.011083544231951237, + -0.01738864555954933, + 0.00370978144928813, + -0.008846988901495934, + 0.003749856259673834, + 0.016228385269641876, + 0.017526045441627502, + -0.005724971182644367, + 0.0019541236106306314, + 0.0022098389454185963, + -0.014091062359511852, + -0.019129037857055664, + -0.013068201020359993, + 0.005316589958965778, + -0.014442194253206253, + 0.010053049772977829, + -0.027327196672558784, + 0.018472574651241302, + -0.015014691278338432, + 0.004030379932373762, + -0.017464978620409966, + -0.025892136618494987, + 0.029540851712226868, + 0.008396624587476254, + 0.007091331295669079, + -0.021174760535359383, + 0.0061906022019684315, + -0.006099002901464701, + -0.005156290717422962, + -0.028685923665761948, + 0.01758711226284504, + -0.012396471574902534, + 0.0074844458140432835, + -0.013037667609751225, + 0.004389144480228424, + -0.008480590768158436, + -0.02303728461265564, + 0.011442309245467186, + 0.0018739739898592234, + -0.004660126753151417, + 0.009388952516019344, + 0.012999501079320908, + -0.02109842747449875, + -0.004308994859457016, + -0.019220637157559395, + -0.006492117419838905, + 0.00208579795435071, + -0.017266513779759407, + -0.01415212918072939, + 0.015312389470636845, + 0.024334944784641266, + -0.012617836706340313, + -0.012068239971995354, + 0.005850920453667641, + 0.015709321945905685, + -0.016808515414595604, + 0.00031940569169819355, + 0.021251093596220016, + -0.0015762754483148456, + 0.00599595345556736, + -0.007770694326609373, + -0.03679248318076134, + 0.010824012570083141, + 0.022670885547995567, + -0.0049998085014522076, + -0.024731876328587532, + -0.0022995301987975836, + -0.025464672595262527, + 0.005282239988446236, + 0.02819739282131195, + 0.0005281285848468542, + -0.000186896460945718, + 0.020411431789398193, + -0.0025228040758520365, + 0.013984196819365025, + 0.003526582382619381, + -0.013709397986531258, + 0.011587342247366905, + 0.014884925447404385, + 0.005221173632889986, + -0.022014422342181206, + -0.025983735918998718, + 0.0054768892005085945, + 0.01322086714208126, + -0.008228692226111889, + -0.0006011219811625779, + -0.011923206970095634, + -0.004938741680234671, + -0.0019941984210163355, + -0.006530283950269222, + 0.0055952053517103195, + 0.008228692226111889, + -0.005896720569580793, + 0.008388991467654705, + -0.002801419235765934, + 0.00822105910629034, + 0.007660011760890484, + -0.019205370917916298, + -0.007335596717894077, + 0.0049998085014522076, + -0.017174914479255676, + 0.03389183059334755, + -0.008778288960456848, + -0.017419179901480675, + -0.01061791367828846, + -0.00569825479760766, + -0.005305140279233456, + 0.0011488109594210982, + 0.0010037783067673445, + -0.010282048024237156, + 0.011251476593315601, + 0.02801419235765934, + 0.0029712601099163294, + 1.0257240319333505e-5, + 0.0015218881890177727, + 0.010075949132442474, + -0.022533487528562546, + 0.0015781837282702327, + 0.02204495668411255, + -0.011152244172990322, + 0.01867103949189186, + -0.010373648256063461, + 0.03612075373530388, + 0.0064272345043718815, + 0.018365707248449326, + 0.0030914845410734415, + 0.0071409475058317184, + 0.003102934453636408, + 0.0005992136429995298, + 0.0044196778908371925, + 0.010694246739149094, + -0.010388914495706558, + -0.0006197281181812286, + 0.027617260813713074, + -0.018518373370170593, + -0.00810655951499939, + -0.021815957501530647, + -0.0014799050986766815, + -0.011472842656075954, + 0.011686574667692184, + -0.005312773399055004, + 0.0044463942758738995, + -0.008419524878263474, + 0.021388493478298187, + -0.009961450472474098, + 0.005335673224180937, + 0.013060567900538445, + 0.017052780836820602, + -0.007969159632921219, + 0.01460249349474907, + 0.007923359982669353, + 0.008159992285072803, + -0.011335442773997784, + -0.010465247556567192, + -0.004766992758959532, + -0.005213540513068438, + -0.025006674230098724, + -0.013823897577822208, + 0.012503337115049362, + 0.003965497016906738, + 0.001726078800857067, + 0.008419524878263474, + -0.018304642289876938, + -0.013449866324663162, + -0.016671115532517433, + -0.01938856951892376, + -0.005453989375382662, + -0.017953509464859962, + 0.01569405384361744, + -0.014442194253206253, + 0.015480322763323784, + 0.0011698025045916438, + 0.020457230508327484, + -0.004423494450747967, + 0.00485859252512455, + -0.0034655160270631313, + -0.016365785151720047, + -0.013900230638682842, + 0.012152206152677536, + -0.001671691657975316, + -0.018045108765363693, + 0.013594898395240307, + 0.026487533003091812, + -0.00461051007732749, + -0.0032918585930019617, + 0.008388991467654705, + -0.006247851997613907, + 0.015129190869629383, + 0.013136900961399078, + -0.002578145358711481, + -0.0383802093565464, + 0.03157131001353264, + -0.028121059760451317, + 0.026151668280363083, + -0.003413991304114461, + 0.008892788551747799, + -0.004373878240585327, + 0.006247851997613907, + -0.013159800320863724, + -0.0031640008091926575, + 0.0002288795803906396, + 0.019174836575984955, + -0.0046219602227211, + -0.009205753915011883, + -0.01436586119234562, + 0.006339451763778925, + -0.009640851989388466, + -0.0007046485552564263, + -0.00031463487539440393, + -0.015098657459020615, + 0.015236057341098785, + -0.00614861911162734, + 0.013205600902438164, + -0.007098964415490627, + 0.01583145372569561, + -0.014655926264822483, + 0.005545588675886393, + -0.0033109416253864765, + 0.002658294979482889, + -0.009495818987488747, + 0.013350632973015308, + 0.0070340815000236034, + -0.01844204030930996, + 0.004713559523224831, + -0.021861756220459938, + 0.008503491058945656, + 0.007686728145927191, + -0.009846950881183147, + 0.01220563892275095, + 0.024060146883130074, + -0.011098811402916908, + -0.010480513796210289, + -0.01668638363480568, + -0.008602723479270935, + -0.011098811402916908, + 0.011885040439665318, + -0.011404142715036869, + 0.007953893393278122, + -0.02308308519423008, + -0.025525739416480064, + 0.0005338535993359983, + 0.00857982411980629, + -8.724617509869859e-5, + 0.020503031089901924, + -0.006205868907272816, + -0.03340329974889755, + 0.0021468643099069595, + 0.004828059114515781, + -0.0010056865867227316, + -0.01900690421462059, + 0.005682988092303276, + -0.008259225636720657, + 0.021556425839662552, + -0.016625316813588142, + -0.017174914479255676, + -0.005244073923677206, + 0.004263195209205151, + -0.01267890352755785, + -0.007415746338665485, + 0.005392923019826412, + 0.008663790300488472, + -0.009770617820322514, + 0.02654859982430935, + -0.018090909346938133, + 0.0036677983589470387, + -0.010999578051269054, + 0.0048700422048568726, + -0.006328001618385315, + 0.00967138446867466, + 0.01364833116531372, + 0.007415746338665485, + 0.01664058305323124, + -0.0023262465838342905, + 0.0034273494966328144, + 0.02265561930835247, + 0.010320214554667473, + -0.0291591864079237, + 0.008114192634820938, + 0.0074577294290065765, + 0.006591350305825472, + -0.008831722661852837, + 0.006591350305825472, + 0.01367886457592249, + -0.001982748508453369, + 0.008442424237728119, + -0.004793709143996239, + -0.013778097927570343, + -0.005221173632889986, + 0.007431012578308582, + 0.009411852806806564, + 0.024945607408881187, + -0.0022632719483226538, + -0.001629708451218903, + -0.002473187632858753, + -0.0025170790031552315, + 0.0017432537861168385, + 0.004018929786980152, + -0.02929658629000187, + -0.011709474958479404, + 0.002534253988415003, + -0.01514445710927248, + -0.006465401034802198, + -0.011892673559486866, + 0.017953509464859962, + -0.016319984570145607, + 0.019510701298713684, + 0.011350709944963455, + 0.006259302143007517, + 0.0039693135768175125, + -0.011236210353672504, + -0.011411775834858418, + -0.005637188442051411, + 0.01038128137588501, + -0.011785808019340038, + -0.01094614528119564, + 0.027266129851341248, + 0.029647717252373695, + 0.006366168148815632, + -0.011701840907335281, + 0.017693977802991867, + -0.023586882278323174, + 0.009770617820322514, + 0.01877790503203869, + -0.007053164765238762, + -0.005412006285041571, + 0.012625469826161861, + -0.018518373370170593, + -0.006473034154623747, + -0.03260943666100502, + 0.0022136555053293705, + 0.007003548089414835, + -0.0028605773113667965, + 0.005263156723231077, + 0.004060912877321243, + -0.009060720913112164, + -0.014549060724675655, + -0.02564787119626999, + 0.0073661296628415585, + 0.02199915610253811, + 0.053494133055210114, + 0.031693439930677414, + -0.005881453864276409, + 0.0026048619765788317, + 0.0014999425038695335, + -0.029647717252373695, + 0.013312466442584991, + -0.01483912579715252, + -0.018732106313109398, + 0.007076064590364695, + 0.017037514597177505, + 0.008740122430026531, + 0.01948016881942749, + 0.009801151230931282, + -0.011297276243567467, + 0.0078012277372181416, + -0.011449942365288734, + -0.00047994343913160264, + 0.008053126744925976, + 0.008129458874464035, + -0.006408151239156723, + -0.0008086521993391216, + -0.0038013809826225042, + 0.002167855855077505, + 0.022335020825266838, + 0.012289605103433132, + -0.006602800451219082, + -0.021296894177794456, + -0.011976639740169048, + -0.0022995301987975836, + 0.027372995391488075, + 0.0008616081904619932, + -0.02270141988992691, + -0.002160222502425313, + 0.0017518411623314023, + 0.01839624159038067, + 0.011640775017440319, + 0.015663521364331245, + -0.006369984708726406, + -0.004969275090843439, + -0.01810617558658123, + -0.011312543414533138, + 0.010518680326640606, + -0.026533333584666252, + -0.0074729956686496735, + 0.011656041257083416, + 0.001121140201576054, + -0.020014500245451927, + 0.010175182484090328, + -0.009213387034833431, + -0.003681156551465392, + 0.0070226313546299934, + -0.001977023435756564, + -0.001571504632011056, + -0.018304642289876938, + 0.03215143829584122, + 0.017266513779759407, + -0.03682301566004753, + -0.010549213737249374, + -4.3921263568336144e-5, + 0.0024369293823838234, + 0.0013749472564086318, + 0.01552612241357565, + 0.03038051351904869, + 0.0006488300859928131, + 0.02697606571018696, + -0.000465153920231387, + 0.0015524213667958975, + 0.0021735806949436665, + 0.010053049772977829, + 0.034624624997377396, + -0.018319908529520035, + -0.025983735918998718, + -0.006442501209676266, + -0.02407541312277317, + -0.012579670175909996, + 0.003677339991554618, + -0.030273647978901863, + -0.015457422472536564, + 0.01772451028227806, + 0.005060874857008457, + 0.001135452650487423, + 0.01810617558658123, + -0.0037364978343248367, + -0.0189611054956913, + 0.007824127562344074, + -0.009266819804906845, + 0.009442386217415333, + -0.00879355613142252, + -0.009587418287992477, + -0.005152474157512188, + 0.008709589950740337, + -0.010579747147858143, + 0.0036219984758645296, + 0.01448036078363657, + -0.011579708196222782, + -0.014327694661915302, + 0.01049578096717596, + 0.008511124178767204, + 0.017617644742131233, + -0.010404180735349655, + 0.018258841708302498, + -0.007068431470543146, + 0.014724626205861568, + 0.00031988276168704033, + -0.031785041093826294, + 0.029327118769288063, + 0.011022478342056274, + 0.0036544399335980415, + 0.03053317964076996, + -0.0055837552063167095, + 0.01610625348985195, + -0.000538624357432127, + 0.00287393550388515, + -0.008358458057045937, + 0.025189872831106186, + -0.006805082783102989, + 0.0035380322951823473, + 0.033342231065034866, + 0.027907326817512512, + -0.014778058975934982, + 0.023861680179834366, + 0.01819777488708496, + -0.013213234022259712, + 0.020503031089901924, + -0.012930802069604397, + 0.0025647871661931276, + 0.02920498698949814, + -0.0227472186088562, + -0.024396011605858803, + 0.0369756817817688, + 0.007041714619845152, + -0.023541081696748734, + 0.0015028049238026142, + 0.013923129998147488, + -0.005766954272985458, + -0.002967443550005555, + 0.00832029152661562, + -0.008961488492786884, + -0.010885078459978104, + -0.0010400364408269525, + 0.02427387796342373, + 0.03019731491804123, + -0.007560778874903917, + 0.00035494822077453136, + -0.0071027809754014015, + -0.006751649547368288, + 0.013114000670611858, + 0.004244111943989992, + -0.004438761156052351, + -0.002768977778032422, + -0.015800921246409416, + 0.004591426812112331, + 0.006515017244964838, + 0.0013367808423936367, + 0.004156329203397036, + -0.02607533521950245, + 0.009014921262860298, + 0.0038051975425332785, + -0.011404142715036869, + -0.0002218426379840821, + 0.0035494822077453136, + 0.01433532778173685, + 0.02227395586669445, + 0.0019560318905860186, + -0.01208350621163845, + -0.005259340163320303, + -0.01194610632956028, + 0.0027403528802096844, + 0.0012022439623251557, + -0.008457690477371216, + -0.004702109843492508, + 0.004362428095191717, + -0.004980725236237049, + -0.009915649890899658, + -0.015541388653218746, + -0.010549213737249374, + -0.02019769884645939, + -0.022304488345980644, + 0.007056981325149536, + 0.03474675863981247, + 0.011274376884102821, + 0.01972443424165249, + 0.010877445340156555, + 0.0025094456505030394, + 0.007014998234808445, + 0.00789282750338316, + 0.0043509784154593945, + 0.008037859573960304, + 0.005171557422727346, + 0.014747526496648788, + -0.0018014576053246856, + -0.004091446287930012, + -0.01630471833050251, + -0.013526198454201221, + 0.004156329203397036, + 0.009388952516019344, + 0.016472650691866875, + -0.03740314766764641, + 0.0015085299964994192, + -0.00168027903418988, + -0.014091062359511852, + 0.01377046387642622, + -0.008419524878263474 + ], + "fe100cbc-74d2-41bf-a40b-70d8170d7b31": [ + -0.010498540475964546, + -0.005249270237982273, + -0.015481043606996536, + -0.00558487931266427, + -0.02283862791955471, + -0.016565319150686264, + -0.00802449882030487, + 0.025970978662371635, + -0.022477202117443085, + 0.03519592434167862, + 0.01431932020932436, + 0.022786995396018028, + 0.009457291103899479, + -0.029000066220760345, + 0.00651856092736125, + 0.03865528106689453, + -0.01640181802213192, + 0.039894454181194305, + -0.0057784998789429665, + -0.013630891218781471, + 0.07620907574892044, + 0.01108370441943407, + -0.022769784554839134, + 0.01934485137462616, + 0.006492744665592909, + -0.015128224156796932, + -0.0020007463172078133, + 0.0008508550236001611, + -0.029585231095552444, + 0.02724457159638405, + 0.017813097685575485, + 0.03216683864593506, + 0.02598818950355053, + 0.003990735858678818, + 0.03679652139544487, + 0.00919052492827177, + -0.0006728316657245159, + 0.014104186557233334, + -0.026521721854805946, + -0.015377779491245747, + -0.03297574073076248, + 0.018226154148578644, + -0.01955137960612774, + -0.004186508245766163, + -0.04874076321721077, + 0.027812525629997253, + 0.012021688744425774, + -0.04746716842055321, + -0.018622001633048058, + 0.0071897790767252445, + 0.01590270735323429, + -0.04667547717690468, + -0.005520339123904705, + 0.030135974287986755, + 0.021083133295178413, + -0.006389480549842119, + -0.002107237698510289, + 0.03474844619631767, + -0.016014575958251953, + -0.02443922497332096, + 0.002020108513534069, + 0.0033539393916726112, + -0.003760542720556259, + -0.005098676308989525, + -0.01867363229393959, + -0.027778103947639465, + 0.014500033110380173, + -0.01308014802634716, + -0.04319890961050987, + -0.0030118762515485287, + -0.007512480020523071, + 0.026177506893873215, + -0.03519592434167862, + 0.004171448759734631, + -0.02851816639304161, + -0.019327640533447266, + 0.07868742197751999, + -0.015317542478442192, + 0.020463548600673676, + -0.00568814342841506, + -0.014981932938098907, + 0.011625842191278934, + 0.020067701116204262, + -0.01751190982758999, + 0.05207964405417442, + -0.0022373937536031008, + -0.02767484076321125, + -0.04550514742732048, + 0.01672021672129631, + -0.01019735261797905, + -0.005696748849004507, + -0.005722565110772848, + 0.02770926244556904, + 0.002506311284378171, + -0.008403134532272816, + 0.038207802921533585, + -0.0002144617319572717, + 0.002874190453439951, + 0.012787566520273685, + -0.009078655391931534, + 0.003472262993454933, + 0.052045222371816635, + -0.05152890086174011, + 0.02240835875272751, + -0.009681031107902527, + 0.009551950730383396, + 0.02523091807961464, + -0.04839655011892319, + -0.03144398704171181, + 0.062268391251564026, + 0.014861457981169224, + -0.03306179493665695, + 0.00610980624333024, + 0.013484600000083447, + -0.0338018573820591, + -0.06127016991376877, + 0.016307158395648003, + -0.029154961928725243, + -0.005795710254460573, + -0.03924044594168663, + 0.027227360755205154, + 0.03796685114502907, + -0.00704348785802722, + 0.02330331690609455, + -0.01779588684439659, + 0.006686365231871605, + 0.03634904325008392, + -0.026022611185908318, + 0.030755558982491493, + -0.008807586506009102, + -0.022150197997689247, + -0.035350821912288666, + -0.026470089331269264, + 0.02826000563800335, + -0.009689636528491974, + 0.004479090217500925, + 0.017640989273786545, + 0.046572212129831314, + -0.049566879868507385, + 0.06540074199438095, + -0.041615523397922516, + -0.05727728083729744, + -0.012056110426783562, + 0.012581037357449532, + -0.01663416251540184, + 0.018742475658655167, + -0.052045222371816635, + 0.06801677495241165, + -0.02438759244978428, + 0.024318749085068703, + -0.046572212129831314, + -0.03178820386528969, + 0.02068728767335415, + 0.0007631879416294396, + -0.01989559456706047, + -0.0029839088674634695, + -0.025162074714899063, + 0.008093342185020447, + 0.013708340004086494, + 0.013519021682441235, + 0.012288454920053482, + -0.05610695108771324, + 0.004806093871593475, + -0.0014177331468090415, + 0.031736571341753006, + 0.014672139659523964, + 0.036865364760160446, + 0.038414329290390015, + -0.04509209096431732, + 0.019534168764948845, + 0.0160231813788414, + -0.002039470477029681, + 0.01316620223224163, + -0.003287247847765684, + 0.02519649639725685, + -0.017090246081352234, + 0.02863864041864872, + 0.035092663019895554, + -0.011840976774692535, + -0.03889622911810875, + -0.013105964288115501, + -0.028328847140073776, + -0.010025245137512684, + -0.03251105174422264, + 0.022425569593906403, + 0.028948433697223663, + -0.002042697509750724, + -0.009724057279527187, + 0.017253749072551727, + 0.0004299991123843938, + -0.007241411134600639, + -0.001412354875355959, + -0.0005093297804705799, + 0.0030656596645712852, + -0.001673742663115263, + -0.02770926244556904, + 0.0010143568506464362, + 0.00524496752768755, + 0.004294075071811676, + 0.033251114189624786, + -0.017236538231372833, + -0.035935986787080765, + -0.06836098432540894, + 0.053009022027254105, + -0.016453450545668602, + -0.017985204234719276, + -0.013235044665634632, + -0.020136544480919838, + 0.04041077569127083, + -0.03481728956103325, + 0.05063394457101822, + -0.054695673286914825, + 0.017296774312853813, + -0.00027806073194369674, + -0.023475423455238342, + 0.011161153204739094, + -0.028208373114466667, + 0.02776089310646057, + 0.0002744303201325238, + -0.03927486762404442, + -0.012107742950320244, + -0.012882225215435028, + -0.0021319780498743057, + -0.028001844882965088, + -0.0153691740706563, + -0.014620508067309856, + 0.004599565174430609, + 0.026900358498096466, + -0.0279674232006073, + 0.0019405088387429714, + 0.04629684239625931, + 0.02586771361529827, + -0.013415757566690445, + -0.017047218978405, + -0.01913832314312458, + -0.01360507495701313, + -0.002184686018154025, + 0.030549030750989914, + 0.008325686678290367, + 0.009724057279527187, + 0.013639496639370918, + 0.027898579835891724, + 0.022305095568299294, + 0.015515465289354324, + 0.026607776060700417, + 0.0507027842104435, + 0.024335959926247597, + 0.0217027198523283, + 0.02426711656153202, + -0.028294425457715988, + 0.0025385813787579536, + 0.015601519495248795, + 0.018226154148578644, + -0.00726722739636898, + -0.009620793163776398, + 0.05517757311463356, + 0.0032937019132077694, + -0.03734726458787918, + -0.005094373598694801, + -0.046572212129831314, + -0.004917963873594999, + 0.006466928403824568, + 0.03982561081647873, + -0.00412196759134531, + 0.04354312643408775, + -0.036693260073661804, + 0.03061787411570549, + -0.02514486387372017, + 0.026676617562770844, + 0.055280838161706924, + -0.002919368678703904, + 0.015601519495248795, + 0.019327640533447266, + -0.02388848178088665, + -0.012813381850719452, + 0.0008836629567667842, + 0.019448114559054375, + -0.010059666819870472, + 0.003799266880378127, + -0.007404912728816271, + -0.00013714793021790683, + 0.018742475658655167, + 0.0209798701107502, + 0.015549886971712112, + -0.04240721836686134, + -0.01032643299549818, + -0.03507545217871666, + 0.010756701231002808, + -0.04529861733317375, + -0.005645116791129112, + -0.0065228636376559734, + 0.009655214846134186, + 0.018983425572514534, + 0.012494984082877636, + 0.04467903450131416, + 0.015283120796084404, + -0.006182951852679253, + -0.0025471867993474007, + -0.01896621473133564, + -0.0005225067725405097, + -0.05435146018862724, + -0.0069961585104465485, + 0.01640181802213192, + -0.03137514367699623, + -0.009121682494878769, + 0.00885491631925106, + 0.04061730206012726, + -0.001816806849092245, + -0.05521199479699135, + 0.012503589503467083, + 0.028328847140073776, + -0.009543345309793949, + -0.00692731561139226, + -0.023027945309877396, + -0.022305095568299294, + 0.0006142076454125345, + 0.031185828149318695, + 0.011324654333293438, + -0.009577766992151737, + -0.019499747082591057, + 0.02249441295862198, + 0.007787851616740227, + -0.05758707597851753, + 0.029464755207300186, + 0.035557352006435394, + -0.029051698744297028, + 0.03082440234720707, + -0.017038613557815552, + -0.04722622036933899, + -0.012107742950320244, + -0.01442258432507515, + -0.021547824144363403, + -0.021668298169970512, + -0.02190924808382988, + -0.01779588684439659, + -0.04991109296679497, + -0.04495440423488617, + -0.04419713467359543, + -0.012856408953666687, + -0.025041600689291954, + -0.002904309192672372, + -0.029619650915265083, + -0.021272452548146248, + -0.012968278490006924, + 0.029963865876197815, + 0.0037497859448194504, + -0.010343643836677074, + 0.016444845125079155, + -0.013097358867526054, + -0.013880446553230286, + 0.0011423616670072079, + -0.019757907837629318, + 0.01116975862532854, + 0.0026439970824867487, + 0.06471231579780579, + -0.010352249257266521, + 0.006040963344275951, + -0.004050973802804947, + 0.006466928403824568, + 0.010765306651592255, + 0.011927030049264431, + -0.019998857751488686, + -0.0515633225440979, + -0.016100630164146423, + 0.0014822734519839287, + -0.004922266583889723, + -0.03187425807118416, + -0.009947797283530235, + 0.011488156393170357, + 0.01812288910150528, + -0.019568590447306633, + 0.013673918321728706, + 0.0407894104719162, + -0.03481728956103325, + -0.02266651950776577, + -0.005808618385344744, + 0.051460057497024536, + -0.017933571711182594, + -0.035385243594646454, + 0.02674546092748642, + -0.0012316422071307898, + 0.02406058833003044, + 0.039343710988759995, + -0.00821381714195013, + 0.013673918321728706, + 0.038999494165182114, + -0.009724057279527187, + 0.013802998699247837, + -0.008278356865048409, + 0.01421605609357357, + -0.038001272827386856, + 0.026074243709445, + -0.02838047966361046, + 0.013226439245045185, + -0.018329419195652008, + 0.016995588317513466, + 0.0041284216567873955, + 0.014241872355341911, + 0.01487006340175867, + -0.0136911291629076, + -0.018071258440613747, + 0.007611441425979137, + -0.0010374838020652533, + 0.028741905465722084, + -0.015412201173603535, + -0.03390512242913246, + -0.011298839002847672, + -0.010472724214196205, + 0.017030008137226105, + 0.01681487448513508, + 0.008459069766104221, + 0.017141878604888916, + 0.01061901543289423, + 0.0006588479154743254, + 0.04646894708275795, + -0.01009408850222826, + 0.014697955921292305, + 0.011556999757885933, + -0.04416271299123764, + -0.04306122660636902, + 0.049016136676073074, + 0.07978890836238861, + -0.014207450672984123, + 0.02485228143632412, + 0.0012499286094680429, + 0.0364178866147995, + 0.04361196979880333, + 0.010059666819870472, + -0.033922333270311356, + -0.0477769635617733, + 0.005038438830524683, + 0.02729620411992073, + -0.01051575131714344, + -0.00885491631925106, + -0.012787566520273685, + -0.049773406237363815, + -0.01721932739019394, + 0.02683151513338089, + -0.026900358498096466, + 0.009534739889204502, + 0.02199530228972435, + 0.03192588686943054, + -0.026487300172448158, + -0.01091159787029028, + -0.039343710988759995, + -0.027278993278741837, + -0.06732834130525589, + 0.010085483081638813, + 0.0228730496019125, + -0.028414901345968246, + -0.028587007895112038, + 0.04168436676263809, + -0.04299238324165344, + 0.006398085504770279, + 0.016126446425914764, + -0.02077334001660347, + -0.002641845727339387, + -0.03249384090304375, + 0.01356204878538847, + -0.05435146018862724, + -0.034008387476205826, + -0.012159374542534351, + 0.008385923691093922, + -0.0032076481729745865, + 0.0247662290930748, + -0.016616951674222946, + -0.00814067106693983, + 0.03720958158373833, + 0.015971548855304718, + 0.0035755273420363665, + -0.02531697228550911, + -0.009078655391931534, + -0.03283805772662163, + 0.006978947669267654, + -0.010808332823216915, + 0.003657278371974826, + -0.013105964288115501, + -0.0007717933040112257, + 0.010412486270070076, + -0.026504511013627052, + -0.042751431465148926, + -0.022786995396018028, + -0.0019760059658437967, + 0.025454657152295113, + -0.0034507496748119593, + -0.01385463122278452, + 0.03397396579384804, + -0.03714073821902275, + 0.008837705478072166, + 0.005249270237982273, + 0.0498078279197216, + -0.007714706007391214, + 0.004089697729796171, + 0.0228730496019125, + 0.010765306651592255, + -0.030049920082092285, + -0.007602836471050978, + -0.010395275428891182, + -0.015274515375494957, + 0.0011402103118598461, + 0.006793932523578405, + -0.024800648912787437, + 0.005559063050895929, + 0.03163330629467964, + -0.015222882851958275, + -0.01587689109146595, + -0.016505081206560135, + -0.010971834883093834, + -0.006324940361082554, + -0.004896450322121382, + -0.020463548600673676, + -0.009724057279527187, + -0.00524496752768755, + 0.021341294050216675, + -0.013932079076766968, + -0.006299124099314213, + -0.01968906633555889, + 0.013415757566690445, + 0.023578688502311707, + 0.019379273056983948, + 0.0035368031822144985, + 0.008631177246570587, + -0.004896450322121382, + 0.003474414348602295, + -0.019878383725881577, + -0.02380242757499218, + 0.012099137529730797, + -0.01721932739019394, + -0.008484886027872562, + -0.007271529641002417, + -0.0037175158504396677, + 0.016117841005325317, + -0.008755954913794994, + 0.01108370441943407, + 0.02557513304054737, + 0.0037411805242300034, + -0.008708625100553036, + 0.0032356155570596457, + -0.0076200468465685844, + 0.03772590309381485, + -0.03975676745176315, + -0.0048491209745407104, + -0.0059376987628638744, + 0.007168265525251627, + -0.009999428875744343, + 0.039550237357616425, + 0.012933856807649136, + 0.018776897341012955, + -0.030290869995951653, + -0.0003643832460511476, + -0.026951989158988, + 0.01654810830950737, + -0.00023651296214666218, + -0.011402103118598461, + 0.014586086384952068, + -0.02977454848587513, + 0.0149303013458848, + -0.026108665391802788, + -0.025764450430870056, + -0.01497332751750946, + -0.013303888030350208, + 0.014362347312271595, + 0.014155818149447441, + 0.014147212728857994, + -0.003919741604477167, + -0.006720786914229393, + -0.0009223871165886521, + 0.009930586442351341, + -0.0027580182068049908, + 0.0014188088243827224, + 0.012942462228238583, + 0.010369460098445415, + 0.020463548600673676, + -0.0053224158473312855, + -0.012374509125947952, + 0.022236252203583717, + -0.005873158574104309, + 0.005731170065701008, + -0.014749588444828987, + -0.02077334001660347, + 0.027898579835891724, + -0.04003213718533516, + -0.006324940361082554, + -0.023096788674592972, + -0.0033324260730296373, + 0.0007007990498095751, + -0.008515004068613052, + -0.02295910194516182, + 0.025368602946400642, + 0.0298606026917696, + 0.011746317148208618, + 0.012176585383713245, + 0.010601804591715336, + 0.020842183381319046, + -0.03531640022993088, + 0.035522930324077606, + 0.007512480020523071, + 0.023441003635525703, + -0.004309134557843208, + -0.00029769170214422047, + 0.009835927747189999, + 0.040858253836631775, + 0.020962659269571304, + -0.01955137960612774, + -0.02523091807961464, + 0.025678396224975586, + -0.003784207394346595, + 0.006630430463701487, + 0.005141702946275473, + 0.023785216733813286, + -0.03478286787867546, + 0.016117841005325317, + 0.038035694509744644, + -0.03006713092327118, + 0.022993523627519608, + -0.00011832371092168614, + -0.012598248198628426, + 0.043336596339941025, + 0.005821526516228914, + -0.035935986787080765, + 0.023785216733813286, + -0.017933571711182594, + 0.052630387246608734, + -0.0343698114156723, + 0.011746317148208618, + 0.019482536241412163, + -0.01356204878538847, + -0.020618444308638573, + -0.027158519253134727, + -0.012520800344645977, + 0.02968849427998066, + -0.0006787478341720998, + 0.030480187386274338, + -0.03693420812487602, + -0.0015618730103597045, + 0.01820894330739975, + 0.024077799171209335, + 0.012494984082877636, + -0.01867363229393959, + -0.003967071417719126, + -0.03755379468202591, + 0.01337273046374321, + -0.015214277431368828, + 0.05004877969622612, + -0.0033991176169365644, + 0.008157881908118725, + -0.01968906633555889, + 0.02598818950355053, + 0.04003213718533516, + 0.014009526930749416, + -0.023475423455238342, + -0.023922903463244438, + -0.009500318206846714, + 0.02590213529765606, + -0.003541105892509222, + -0.03579830005764961, + -0.009500318206846714, + 0.016832085326313972, + 0.011849582195281982, + 0.014405373483896255, + 0.022029723972082138, + -0.0032076481729745865, + -0.000865376612637192, + 0.0053224158473312855, + -0.011591420508921146, + 0.023027945309877396, + -0.002080345991998911, + 0.0064282044768333435, + 0.011470945551991463, + 0.03385348990559578, + 0.006574495695531368, + 0.010343643836677074, + 0.028673062101006508, + 0.04564283415675163, + -0.007615744136273861, + -0.014568875543773174, + -0.002486949320882559, + -0.013235044665634632, + -0.0027730774600058794, + 0.0003210875147487968, + -0.016436239704489708, + -0.019189953804016113, + -0.018243364989757538, + 0.02531697228550911, + 0.010584593750536442, + -0.002041621832177043, + -0.02889680117368698, + 0.017967993393540382, + 0.0038530502934008837, + 0.010369460098445415, + 0.006793932523578405, + 0.006759510841220617, + 0.0015500405570492148, + -0.0062345839105546474, + -0.029034487903118134, + 0.004266107454895973, + -0.004180054180324078, + -0.015919918194413185, + 0.011582816019654274, + -0.006669154390692711, + -0.04419713467359543, + 0.016160868108272552, + -0.0022309396881610155, + -0.03418049216270447, + 0.004418852739036083, + 0.007021974306553602, + -0.03230452537536621, + -0.016505081206560135, + 0.016419028863310814, + -0.01066204160451889, + 0.012933856807649136, + 0.01567896641790867, + 0.00013782022870145738, + 0.0017931420588865876, + 0.01516264583915472, + 0.023320527747273445, + 0.007392005063593388, + -0.013415757566690445, + -0.02363032102584839, + 0.005503128282725811, + -0.009035629220306873, + 0.03893065080046654, + 0.007964261807501316, + -0.030394135043025017, + -0.03638346493244171, + 0.00263324030674994, + 0.00011462609109003097, + 0.01160863135010004, + 0.004840515553951263, + -0.0025966675020754337, + 0.046400103718042374, + -0.0018318662187084556, + -0.02733062580227852, + -0.0022180317901074886, + -0.01686650700867176, + -0.011075098998844624, + 0.007447939831763506, + 0.019017847254872322, + 0.036727678030729294, + -0.04003213718533516, + 0.026504511013627052, + 0.011625842191278934, + 0.01108370441943407, + 0.009646609425544739, + 0.02502438984811306, + 0.004935174249112606, + 0.018656421452760696, + 0.0006190481362864375, + 0.01648787036538124, + 0.018742475658655167, + 0.03590156510472298, + -0.03125467151403427, + 0.029808970168232918, + 0.035092663019895554, + -0.010214563459157944, + -0.00568814342841506, + 0.0013026364613324404, + -0.000634107505902648, + -0.012374509125947952, + 0.024835070595145226, + -1.3529913303500507e-5, + 0.0016285645542666316, + 0.00812776293605566, + -0.01838104985654354, + -0.003915439359843731, + -0.002573002828285098, + -0.009431475773453712, + 0.055452946573495865, + 0.031770993024110794, + -0.009577766992151737, + 0.025712817907333374, + 0.02960244193673134, + 0.023991744965314865, + 0.012994094751775265, + -0.018105678260326385, + -0.023854060098528862, + 0.03111698478460312, + -0.004190810490399599, + -0.05218290910124779, + -0.029550809413194656, + -0.0025988188572227955, + -0.020824972540140152, + -0.0009589598630554974, + -0.023458212614059448, + 0.010782517492771149, + -0.003704607719555497, + 0.023027945309877396, + 0.0035991922486573458, + 0.0022675124928355217, + -0.007865299470722675, + 0.007284437771886587, + 0.010188747197389603, + 0.015549886971712112, + 0.007478058338165283, + 0.0012606853852048516, + -0.021100344136357307, + 0.028156740590929985, + -0.042200688272714615, + 0.006316334940493107, + 0.013725550845265388, + 0.020463548600673676, + -0.026005400344729424, + 0.01177213340997696, + 0.03330274671316147, + -0.014198845252394676, + -0.009681031107902527, + -0.0027300508227199316, + 0.02846653386950493, + -0.0026762671768665314, + 0.019327640533447266, + -0.009448685683310032, + -0.0011574210366234183, + -0.017985204234719276, + 0.03789800778031349, + -0.014009526930749416, + 0.003840142162516713, + -0.0013090905267745256, + 0.011384892277419567, + -0.014938906766474247, + 0.0007405988872051239, + 0.009500318206846714, + 0.02388848178088665, + 0.019086690619587898, + 0.004188659135252237, + -0.029636861756443977, + -0.00663473317399621, + 0.008058920502662659, + -0.021840406581759453, + 0.023148421198129654, + -0.001995367929339409, + 0.022993523627519608, + -0.004143481142818928, + -0.00809764489531517, + 0.055246416479349136, + 0.0015134678687900305, + 0.019000636413693428, + -0.020170966163277626, + -0.009870348498225212, + -0.014259083196520805, + 0.031564462929964066, + -0.03087603487074375, + -0.02939591184258461, + -0.03006713092327118, + -0.03440423309803009, + -0.014207450672984123, + -0.03734726458787918, + 0.009827322326600552, + -0.013235044665634632, + 0.026797093451023102, + 0.008338594809174538, + 0.014474216848611832, + -0.005189032759517431, + -0.006484139245003462, + 0.003949860576540232, + -0.012254034169018269, + 0.022219041362404823, + -0.012228217907249928, + 0.03440423309803009, + -0.001228415290825069, + 0.0249039139598608, + 0.0022309396881610155, + 0.0018114284612238407, + -0.028363268822431564, + -0.02485228143632412, + 0.021978091448545456, + -0.021186398342251778, + -0.02662498690187931, + 0.011298839002847672, + -0.005318113137036562, + 0.008252540603280067, + -0.0034507496748119593, + -0.01308014802634716, + -0.00885491631925106, + 0.013992317020893097, + -0.0017651746748015285, + -0.014327925629913807, + -0.025557922199368477, + -0.019878383725881577, + -0.02826000563800335, + -0.027692051604390144, + 0.0042639560997486115, + 0.005292296875268221, + -0.020257018506526947, + -0.0209798701107502, + -0.04547072574496269, + -0.00675090542063117, + 0.01917274296283722, + -0.012701512314379215, + 0.012520800344645977, + -0.01858757995069027, + 0.008669900707900524, + 0.012658486142754555, + -0.029963865876197815, + -0.030652295798063278, + -0.012684301473200321, + -0.014465611428022385, + -0.01345878466963768, + -0.016066208481788635, + -0.02473180741071701, + -0.00033130639349110425, + -0.014147212728857994, + -0.026969200000166893, + -0.0364178866147995, + 0.01675463654100895, + 0.014336531050503254, + -0.03414607048034668, + 0.007964261807501316, + 0.030222026631236076, + -0.001965249190106988, + 0.006466928403824568, + 0.016040392220020294, + 0.00901841837912798, + -0.0018845739541575313, + -0.039550237357616425, + 0.023234473541378975, + 0.018260575830936432, + 0.00357983005233109, + -0.013321098871529102, + -0.008889338001608849, + -0.004917963873594999, + 0.011212784796953201, + 0.009302395395934582, + 0.004111211281269789, + 0.002560094930231571, + 0.005369745194911957, + -0.012142163701355457, + 0.012228217907249928, + -0.0006561587797477841, + 0.025007179006934166, + 0.004651197697967291, + -0.009181919507682323, + 0.017580751329660416, + 0.00663473317399621, + 0.0033023071009665728, + 0.020928237587213516, + 0.004608170595020056, + -0.023492634296417236, + 0.007400610484182835, + -0.026297982782125473, + -0.015541281551122665, + 0.00022857989824842662, + -0.0025321273133158684, + 0.007538295816630125, + -0.022821417078375816, + 0.020670076832175255, + 0.030222026631236076, + -0.0247662290930748, + 0.03807011619210243, + -0.013992317020893097, + 0.017030008137226105, + -0.0016984831308946013, + 0.01392347365617752, + -0.003347485326230526, + -0.028001844882965088, + 0.013071542605757713, + 0.045023247599601746, + -0.010352249257266521, + 0.014895879663527012, + 0.014981932938098907, + 0.0028957040049135685, + -0.00043026803177781403, + 0.005924791097640991, + 0.035092663019895554, + 0.00420371862128377, + -0.039928875863552094, + 0.002710688626393676, + -0.05163216590881348, + 0.0025299759581685066, + -0.02161666564643383, + 0.0073403725400567055, + -0.015721993520855904, + -0.023062366992235184, + -0.007400610484182835, + 0.00901841837912798, + -0.023750795051455498, + -0.003829385619610548, + -0.0008266524528153241, + -0.01739143393933773, + -0.02225346304476261, + 0.0031215946655720472, + 0.03070392645895481, + -0.012297060340642929, + -0.003829385619610548, + -0.014715166762471199, + -0.018931793048977852, + 0.004694224335253239, + -0.009130287915468216, + 0.002669813111424446, + 0.01066204160451889, + 0.0069961585104465485, + -0.01242614071816206, + -0.03734726458787918, + -0.00032619695411995053, + 0.008484886027872562, + 0.025798872113227844, + 0.008342897519469261, + -0.006010844372212887, + -0.020893815904855728, + -0.00944008119404316, + -0.028242794796824455, + -0.011281628161668777, + -0.002467587124556303, + -0.03356090560555458, + 0.030858824029564857, + 0.020153755322098732, + 0.0053052050061523914, + 0.004866331350058317, + -0.005055649671703577, + -0.0010520053328946233, + 0.031099773943424225, + -0.012692906893789768, + 0.00024000888515729457, + -0.014457006007432938, + -0.004255350679159164, + 0.014138607308268547, + 0.025798872113227844, + -0.005206243135035038, + -0.05218290910124779, + -0.021805984899401665, + 0.03590156510472298, + -0.02065286599099636, + 0.000831493001896888, + 0.005107281729578972, + -0.004223080817610025, + 0.0004418314783833921, + 0.007774943485856056, + -0.01803683675825596, + 0.013648102059960365, + 0.020807761698961258, + 0.007017671596258879, + -0.023441003635525703, + -0.01637600176036358, + -0.0028311635833233595, + 0.005627905949950218, + 0.005468706600368023, + -0.006303426809608936, + -0.0179163608700037, + -0.07765477895736694, + -0.004621078725904226, + 0.007004763465374708, + 0.016591135412454605, + -0.02208135649561882, + 0.0037175158504396677, + -0.004227383527904749, + 0.01252940483391285, + -0.01082554366439581, + 0.0074651506729424, + 0.0036787916906177998, + -0.006393783260136843, + 0.0004926568944938481, + 0.0311686173081398, + -0.011195573955774307, + 0.00600223895162344, + -2.141255754395388e-5, + 0.003347485326230526, + 0.00213735643774271, + 0.0059807258658111095, + 0.007228503003716469, + 0.014663535170257092, + 0.02073892019689083, + -0.0052105458453297615, + 0.007495269179344177, + 0.02514486387372017, + -0.02249441295862198, + 0.014345136471092701, + 0.0024245604872703552, + -0.018862951546907425, + -0.001576932379975915, + -0.010498540475964546, + -0.02027422934770584, + 0.005653722211718559, + 0.034249335527420044, + -0.004732948262244463, + 0.02001606859266758, + -0.00609689811244607, + 0.03297574073076248, + 0.0067164842039346695, + 0.0068756830878555775, + 0.02018817700445652, + -0.002874190453439951, + 0.007430728990584612, + -0.012271244078874588, + -0.024077799171209335, + 0.015205672942101955, + -0.025041600689291954, + -0.016832085326313972, + 0.009130287915468216, + 0.016100630164146423, + -0.023871270939707756, + -0.005597786977887154, + -0.028019053861498833, + 0.0027214454021304846, + 0.0004953460884280503, + 0.02266651950776577, + -0.018914582207798958, + -3.885858313878998e-5, + -0.0064109936356544495, + 0.07476337254047394, + 0.010782517492771149, + 0.0009616490569896996, + 0.005008319858461618, + -0.014723772183060646, + 0.022098567336797714, + -0.0014155817916616797, + 0.005929093807935715, + 0.03297574073076248, + -0.006703576073050499, + -0.007478058338165283, + -0.015618729405105114, + 0.006221675779670477, + 0.03356090560555458, + 0.008041709661483765, + 0.015403595753014088, + 0.002107237698510289, + 0.010550172068178654, + 0.008734441362321377, + -0.004436063580214977, + -0.0049308715388178825, + -0.0003756777732633054, + 0.015188462100923061, + -0.010524355806410313, + -0.009224946610629559, + -0.028535377234220505, + 0.0020824973471462727, + -0.004072486888617277, + -0.010076877661049366, + 0.00030791055178269744, + 0.03834548592567444, + 0.031564462929964066, + 0.030755558982491493, + 0.0288451686501503, + 0.004767369944602251, + 0.03968792408704758, + 0.01917274296283722, + 0.014654929749667645, + 0.005546154920011759, + -0.02051517926156521, + -0.0022481505293399096, + 0.003868109779432416, + 0.0018264878308400512, + -0.026797093451023102, + -0.004087546374648809, + 0.007284437771886587, + 0.016384607180953026, + 0.012434746138751507, + -0.019362062215805054, + -0.029154961928725243, + 0.010188747197389603, + 0.0013263012515380979, + -0.02115197665989399, + -0.011539788916707039, + -0.005748380906879902, + -0.0023686254862695932, + -0.0036121001467108727, + -0.037278421223163605, + -0.026779882609844208, + -0.018363839015364647, + -7.59019676479511e-5, + 0.033578116446733475, + 0.005223453976213932, + -0.04378407448530197, + -0.022219041362404823, + 0.01345878466963768, + -0.017761465162038803, + -0.0011929181637242436, + -0.03249384090304375, + 0.013648102059960365, + -0.015222882851958275, + -0.011470945551991463, + -0.018312208354473114, + -0.0027451100759208202, + -0.013148991391062737, + 0.012047505006194115, + 0.04134015366435051, + -0.021186398342251778, + -0.005417074542492628, + -0.028500955551862717, + -0.009465896524488926, + 0.014173028990626335, + 0.0023944417480379343, + 0.012142163701355457, + -0.008489188738167286, + 0.0028957040049135685, + 0.013424362987279892, + -0.004629684146493673, + -0.0034507496748119593, + -0.01545522827655077, + -0.01619528979063034, + -0.0023664741311222315, + 0.017107456922531128, + -0.029499176889657974, + -0.024542488157749176, + -0.03531640022993088, + 0.003500230610370636, + 0.010541566647589207, + 0.008261146023869514, + 0.0015586459776386619, + -0.010472724214196205, + 0.007228503003716469, + 0.02178877405822277, + -0.0034873224794864655, + 0.01989559456706047, + -0.007611441425979137, + -0.004978201352059841, + -0.0028397690039128065, + -0.03603925183415413, + -0.01698698289692402, + 0.0013101662043482065, + 0.0005641889874823391, + -0.008046012371778488, + -0.01177213340997696, + -0.012589642778038979, + 0.002710688626393676, + -0.013536232523620129, + 0.0003853588132187724, + 0.004393036477267742, + 0.025970978662371635, + -0.0013187715085223317, + 0.00726722739636898, + 0.00020195706747472286, + 0.032992951571941376, + 0.019757907837629318, + 0.018897371366620064, + -0.0008632252574898303, + 0.011126731522381306, + -0.02793300151824951, + -0.003618554212152958, + 0.018346630036830902, + 0.02636682614684105, + -0.023320527747273445, + -0.013123175129294395, + 0.008132065646350384, + 0.0024891006760299206, + 0.02956802025437355, + -0.01000803429633379, + -0.026521721854805946, + -0.02435317076742649, + 0.004866331350058317, + 0.0032097995281219482, + 0.012348692864179611, + 0.01905226893723011, + -0.003026935737580061, + -0.005180427338927984, + -0.052458278834819794, + 0.002631088951602578, + 0.016066208481788635, + -0.02048075944185257, + 0.0053224158473312855, + 0.007774943485856056, + 0.003648672951385379, + -0.02523091807961464, + 0.0038530502934008837, + 0.007899721153080463, + -0.004167146049439907, + -0.0016619103262200952, + 0.008510701358318329, + -0.028277214616537094, + 0.026504511013627052, + -0.010180141776800156, + -0.0018264878308400512, + -0.03362974897027016, + 0.01398371160030365, + 0.0026569052133709192, + -0.003190437564626336, + -0.06619243323802948, + -0.015945732593536377, + 0.02543744631111622, + 0.0035647707991302013, + -0.006329243071377277, + -0.007787851616740227, + -0.004702829755842686, + 0.01166886929422617, + -0.00013903036597184837, + 0.03872412443161011, + -0.005602089688181877, + 0.025557922199368477, + -0.02922380529344082, + -0.007757732644677162, + 0.00853651762008667, + -0.007951353676617146, + 0.0029860602226108313, + 0.0032141022384166718, + 0.016703005880117416, + -0.026263561099767685, + -0.011049283668398857, + 0.004995411727577448, + -0.011427919380366802, + 0.0025321273133158684, + -0.03528197854757309, + -0.007327464874833822, + 0.030428554862737656, + 0.015472439117729664, + 0.004317739978432655, + 0.004689921624958515, + -0.004393036477267742, + 0.03519592434167862, + 0.014964722096920013, + -0.0021739292424172163, + -0.003018330316990614, + -0.00094766536494717, + -0.02240835875272751, + 0.018054047599434853, + -0.017090246081352234, + -0.0025213707704097033, + -0.01332970429211855, + 0.012228217907249928, + -0.026022611185908318, + -0.0009998353198170662, + 0.009982218965888023, + -0.013303888030350208, + -0.005206243135035038, + 0.014895879663527012, + 0.014276293106377125, + 0.0032076481729745865, + -0.0074651506729424, + 0.004220929462462664, + 0.008691414259374142, + 0.009009812958538532, + -0.024077799171209335, + -0.03006713092327118, + -0.0057871052995324135, + -0.007947050966322422, + 0.0017748556565493345, + -0.0005359526257961988, + 0.01675463654100895, + 0.020497970283031464, + 0.014095581136643887, + 0.02237393893301487, + 0.01800241507589817, + 0.016384607180953026, + -0.01513682957738638, + 0.027605997398495674, + -0.004681316204369068, + 0.002792439656332135, + 0.0028268611058592796, + 0.012460562400519848, + 0.0008782846271060407, + 0.017167694866657257, + 0.006217373069375753, + -0.016582529991865158, + -0.013759971596300602, + -0.0019157684873789549, + -0.00027174115530215204, + 0.0017372071743011475, + -0.006195859983563423, + -0.007271529641002417, + -0.013725550845265388, + 0.010154325515031815, + -0.013054332695901394, + -0.004999714437872171, + -0.011703290976583958, + -0.0003460968437138945, + 0.005554760340601206, + 0.03617693856358528, + -0.00044720983714796603, + 0.0042725615203380585, + -0.019121112301945686, + -0.0029645469039678574, + -0.026642197743058205, + 0.009181919507682323, + 0.006811142899096012, + -0.02846653386950493, + -6.62881720927544e-5, + -0.004780278075486422, + -0.01545522827655077, + 0.008183698169887066, + -0.03889622911810875, + -0.027278993278741837, + 0.013467389158904552, + -0.0011864640982821584, + 0.018931793048977852, + 0.0040014926344156265, + -0.010438302531838417, + 0.022735362872481346, + -0.023062366992235184, + 0.0007115557673387229, + -0.005382653325796127, + 0.021771563217043877, + 0.035350821912288666, + -0.018639210611581802, + -0.0074608479626476765, + 0.005795710254460573, + 0.017434461042284966, + -0.0009514301782473922, + 0.0033496366813778877, + 0.0370030514895916, + -0.01762377843260765, + -0.021943669766187668, + -0.010653436183929443, + -0.007211292162537575, + 0.0018727416172623634, + 0.0211175549775362, + 0.03710631653666496, + 0.0010487783001735806, + 0.03493776544928551, + -0.02051517926156521, + -0.008295567706227303, + -0.010395275428891182, + -0.01730537973344326, + -0.003982130903750658, + 0.018725264817476273, + -0.0033969662617892027, + 0.009414264932274818, + 0.017262354493141174, + -0.021341294050216675, + -0.023182841017842293, + -0.020721709355711937, + 0.020222598686814308, + -0.017227932810783386, + 0.016505081206560135, + -0.01817452162504196, + -0.013622285798192024, + -0.014310714788734913, + 0.022597678005695343, + 0.003336728550493717, + -0.0012811231426894665, + 0.0012112045660614967, + -0.008764560334384441, + 0.005098676308989525, + -0.03590156510472298, + -0.01669440045952797, + -0.0038530502934008837, + -0.0024912520311772823, + -0.013820209540426731, + 0.012753144837915897, + -0.002177156275138259, + -0.007026277016848326, + -0.001991065451875329, + 0.009689636528491974, + 0.0044575766660273075, + -0.011823765933513641, + -3.032045060535893e-5, + 0.022511623799800873, + -0.0247662290930748, + 0.043921761214733124, + -0.03464518114924431, + 0.01455166470259428, + -0.009784295223653316, + 0.013011305592954159, + 0.010713674128055573, + 0.003007573541253805, + -0.010653436183929443, + -0.0028397690039128065, + -0.004565143957734108, + 0.01779588684439659, + 0.010687857866287231, + -0.019998857751488686, + -0.026521721854805946, + 0.011875397525727749, + 0.02788136899471283, + -0.014491427689790726, + -0.012778961099684238, + -0.021547824144363403, + 0.02240835875272751, + 0.030755558982491493, + -0.0030290870927274227, + -0.009104471653699875, + -0.004590959753841162, + -0.0010073650628328323, + 0.006458323448896408, + 0.004685618914663792, + -0.02400895580649376, + 0.002057756995782256, + -0.007013368885964155, + -0.009870348498225212, + 0.0047544618137180805, + 0.032407790422439575, + -0.004831910133361816, + 0.0001842085039243102, + 0.023785216733813286, + -0.001925449469126761, + 0.033750224858522415, + -0.015971548855304718, + 0.024508068338036537, + -0.027743682265281677, + 0.00865268986672163, + -0.009551950730383396, + 0.01085135992616415, + -0.0018716659396886826, + -0.003016178961843252, + 0.006690667942166328, + -0.005559063050895929, + -0.00977568980306387, + 0.011367681436240673, + 0.0012908041244372725, + -0.0008503171848133206, + 0.03151283040642738, + 0.014018132351338863, + -0.01143652480095625, + 0.026315193623304367, + -0.01692674495279789, + 0.0013854630524292588, + 0.01166886929422617, + -0.005606392398476601, + 0.009999428875744343, + -0.03419770300388336, + 0.0136911291629076, + 0.0018178824102506042, + 0.007607138715684414, + -0.012254034169018269, + 0.015919918194413185, + 0.00406388146802783, + 0.0017640989972278476, + 0.034335389733314514, + -0.015592914074659348, + -0.012830592691898346, + -0.011970057152211666, + -0.0012348692398518324, + -0.0012703663669526577, + -0.03986003249883652, + 0.014835641719400883, + -0.01608341932296753, + 0.005128794815391302, + -0.014431189745664597, + -0.006565890274941921, + -0.004801791161298752, + -0.011591420508921146, + -0.003300155745819211, + -0.028191162273287773, + -0.010145720094442368, + 0.013088753446936607, + 0.02514486387372017, + 0.0009987596422433853, + 0.007551203947514296, + -0.003444295609369874, + -0.0027128399815410376, + 0.02586771361529827, + -0.012486378662288189, + -0.0010084407404065132, + 0.003085021860897541, + 0.010877176187932491, + -0.0064368098974227905, + -0.028311636298894882, + -0.013914868235588074, + -0.012675696052610874, + 0.022029723972082138, + 0.001005751546472311, + -0.00022279817494563758, + -0.02313121035695076, + -0.020876605063676834, + -0.006294821389019489, + 0.012830592691898346, + -0.029361490160226822, + -0.00014561883290298283, + 0.009508923627436161, + -0.008811889216303825, + -0.009259368292987347, + 0.00236002029851079, + 0.0026074242778122425, + 0.0033991176169365644, + 0.015360568650066853, + -0.019035058096051216, + 0.0038358394522219896, + 0.012469167821109295, + -0.012236823327839375, + -0.008450464345514774, + -0.007318859454244375, + -0.0007072531152516603, + -0.030290869995951653, + 0.005029833409935236, + -0.013019911013543606, + 0.004999714437872171, + 0.019241586327552795, + 0.005610695108771324, + 0.012064715847373009, + 0.00020074693020433187, + 0.007783548906445503, + -0.015179856680333614, + -0.004270410165190697, + -0.019396483898162842, + -0.001096645719371736, + 0.008489188738167286, + 0.0034980792552232742, + 0.002497705863788724, + -0.00802449882030487, + -0.008179395459592342, + -0.008596755564212799, + 0.00034125635283999145, + 0.011307444423437119, + -0.010610410012304783, + -0.0044575766660273075, + -0.019775118678808212, + 0.09596697986125946, + 0.002334204036742449, + 0.007344675250351429, + 0.0002533203223720193, + 0.005580576602369547, + -0.00453072227537632, + -0.010842754505574703, + 0.009947797283530235, + 0.015489649027585983, + -0.002951638773083687, + 0.0007131692836992443, + 0.0007615744252689183, + 0.00882910005748272, + 0.0026052729226648808, + -0.02758878655731678, + -0.02350984513759613, + 0.011660263873636723, + 0.002798893488943577, + -0.004156389273703098, + 0.020893815904855728, + 0.003878866322338581, + -0.017899150028824806, + -0.014052554033696651, + 0.030962087213993073, + -0.009818716906011105, + 0.01838104985654354, + -0.005141702946275473, + -0.005511733703315258, + 0.016711611300706863, + 0.027726473286747932, + 0.008605360984802246, + -0.01888016238808632, + -0.004020854830741882, + -0.0007379096932709217, + 0.0010477026225998998, + 0.01783030666410923, + -0.002010427415370941, + 0.01680626906454563, + 0.001856606570072472, + 0.00018635984451975673, + 0.011049283668398857, + 0.006281913258135319, + 0.027915790677070618, + 0.017606567591428757, + -0.025643974542617798, + 0.00015126611106097698, + 0.0020480758976191282, + -0.008532214909791946, + -0.00025264802388846874, + -0.0003189361887052655, + 0.0007470528944395483, + -0.040273088961839676, + 0.005348231643438339, + 0.0052105458453297615, + 0.01261545903980732, + 0.005726867821067572, + 0.004814699292182922, + -0.01209053210914135, + -0.006626127753406763, + 0.0062345839105546474, + -0.0292754378169775, + 0.018862951546907425, + -0.011763527989387512, + -0.019568590447306633, + -0.01779588684439659, + -0.0011541940039023757, + -0.01209053210914135, + -0.0003442144370637834, + -0.008915153332054615, + -0.01943090371787548, + -0.020876605063676834, + -0.0017017100472003222, + 0.00485772592946887, + -0.029034487903118134, + -0.005102979019284248, + 0.02543744631111622, + -0.0013123175594955683, + 0.03347485512495041, + 0.0030807191506028175, + 0.005916185677051544, + 0.019069479778409004, + 0.006905802059918642, + -0.0015027110930532217, + -0.020222598686814308, + 0.0030290870927274227, + -0.0024030469357967377, + 0.010524355806410313, + -0.012107742950320244, + 0.014000922441482544, + -0.017864728346467018, + -0.012262638658285141, + -0.008790375664830208, + -0.006505652796477079, + -0.01715908944606781, + -0.0024202577769756317, + -0.0076544685289263725, + 0.0018781200051307678, + -0.013725550845265388, + 0.0019523411756381392, + 0.012839198112487793, + 0.014603297226130962, + 0.004352161195129156, + 0.001441397937014699, + 0.0014618356944993138, + 0.007744824513792992, + 0.005386956036090851, + 0.020084911957383156, + 0.005761289037764072, + -0.031065352261066437, + -0.013295282609760761, + -0.00956916157156229, + -0.0117979496717453, + 0.0018802713602781296, + 0.013975106179714203, + -0.01137628685683012, + 0.008553728461265564, + -0.0010374838020652533, + -0.00849349144846201, + -0.013957895338535309, + -0.006329243071377277, + -0.017761465162038803, + -0.0015780080575495958, + 0.0037261212710291147, + -0.01846710406243801, + 0.004205869976431131, + 0.010498540475964546, + -0.005120189860463142, + 0.00014158507110551, + -0.004917963873594999, + 0.01203029416501522, + 0.00809764489531517, + 0.010670647025108337, + 0.02354426681995392, + -0.007912629283964634, + -0.005197637714445591, + -0.009835927747189999, + -0.013570654205977917, + 0.011212784796953201, + 0.021478980779647827, + -0.01867363229393959, + 0.01695256121456623, + -0.01736561767756939, + 0.010687857866287231, + 0.022855838760733604, + 0.021668298169970512, + 0.010679252445697784, + 0.011763527989387512, + -0.01913832314312458, + 0.012873619794845581, + -0.006785327102988958, + 0.02552350051701069, + -0.02552350051701069, + 0.0023363553918898106, + -0.012606853619217873, + -0.007886813022196293, + 0.013527627103030682, + -0.011944240890443325, + 0.028827957808971405, + -0.031977519392967224, + 0.0023535662330687046, + -0.005511733703315258, + -0.012968278490006924, + -0.00840743724256754, + 0.00046576515887863934, + -0.013940684497356415, + 0.012486378662288189, + 0.016935350373387337, + 0.011014861986041069, + 0.009741268120706081, + -0.006923012901097536, + -0.012684301473200321, + -0.0011638751020655036, + -0.0007572717731818557, + -0.02793300151824951, + 0.019448114559054375, + 0.006208767648786306, + 0.003640067530795932, + -0.0020276380237191916, + -0.01963743381202221, + 0.0155843086540699, + -0.011823765933513641, + -0.004276864230632782, + 0.021134765818715096, + 0.0023169934283941984, + 0.008291264995932579, + -0.0059376987628638744, + 0.004750159103423357, + -0.0057698944583535194, + 0.007482361048460007, + -0.00220727501437068, + -0.0005813997122459114, + 0.002912914613261819, + 0.0009444383322261274, + -0.010102693922817707, + -0.02077334001660347, + -0.025213707238435745, + 0.019327640533447266, + 0.0008304173243232071, + 0.009405659511685371, + 0.000784163479693234, + -0.020721709355711937, + -0.001227339613251388, + 0.0023965928703546524, + 0.018105678260326385, + -0.013235044665634632, + -0.017933571711182594, + -0.015085197053849697, + -0.011729106307029724, + -0.009758478961884975, + -0.00216639949940145, + -0.017116062343120575, + -0.023647531867027283, + 0.00363361369818449, + 0.016496475785970688, + -0.015308937057852745, + 0.0004176289075985551, + 9.324715210823342e-5, + 0.013846025802195072, + 0.0006609992706216872, + 0.023854060098528862, + 0.018277786672115326, + 0.009930586442351341, + -0.008471977896988392, + 0.006053871475160122, + 0.008351502940058708, + -0.004767369944602251, + 0.005055649671703577, + 0.004896450322121382, + -0.002071740571409464, + 0.009113077074289322, + 0.003782056039199233, + 0.008355805650353432, + -0.010739490389823914, + 0.02834605798125267, + -0.00882910005748272, + 0.0335092730820179, + 0.006587403826415539, + -0.0018921036971732974, + -0.0011240752646699548, + 0.014586086384952068, + -0.015438017435371876, + -0.0024331656750291586, + -0.022184619680047035, + -0.012563826516270638, + -0.0014102035202085972, + -0.013321098871529102, + 0.0033539393916726112, + -0.0001380891480948776, + 0.007146751973778009, + -3.75139934476465e-5, + -0.022976312786340714, + -0.002813952974975109, + -0.008558031171560287, + 0.001480122096836567, + 0.015842469409108162, + 0.0011176211992278695, + -0.012572431936860085, + 0.0029172173235565424, + -0.014861457981169224, + -0.03006713092327118, + -0.0023148420732468367, + 0.007521085441112518, + -0.00152745156083256, + -0.014457006007432938, + 0.012494984082877636, + 0.01884574070572853, + -0.01946532540023327, + -0.00013755130930803716, + 0.006484139245003462, + -0.0036873971112072468, + 0.01808846928179264, + -0.0011746317613869905, + 0.006049568764865398, + 0.014663535170257092, + 0.003801418235525489, + -0.0017866879934445024, + -0.009853137657046318, + -0.010016639716923237, + -0.014000922441482544, + -0.020222598686814308, + 0.01669440045952797, + -0.02330331690609455, + 0.012701512314379215, + -0.006970342248678207, + -0.0010616864310577512, + -0.02708967588841915, + 0.003945557866245508, + 0.02283862791955471, + -0.007869602181017399, + 0.00462538143619895, + -0.008708625100553036, + -0.015283120796084404, + 0.008136368356645107, + -0.022804206237196922, + 0.022614888846874237, + 0.026969200000166893, + 0.0008917305385693908, + 0.001974930288270116, + 0.012271244078874588, + 0.001150966971181333, + -0.01634158007800579, + -0.01770983263850212, + 0.003921892959624529, + -0.011445130221545696, + 0.003134502563625574, + -0.01082554366439581, + 0.018776897341012955, + 0.007245713844895363, + -0.01674603298306465, + 0.006165741011500359, + -0.011686080135405064, + -0.0012821987038478255, + 0.009543345309793949, + -0.005554760340601206, + -0.009681031107902527, + -0.006557284854352474, + 0.006755208130925894, + 0.023165632039308548, + -0.008880732581019402, + 0.00025278248358517885, + -0.008136368356645107, + 0.013828814961016178, + 0.013200622983276844, + -0.0052191512659192085, + 0.005296599585562944, + -0.014784010127186775, + 0.007762035354971886, + -0.010593199171125889, + -0.007258621975779533, + -0.038792967796325684, + 0.026590565219521523, + 0.0003875101392623037, + -0.0062517947517335415, + -0.0048491209745407104, + -0.008471977896988392, + 0.009990823455154896, + -0.016221104189753532, + -0.013957895338535309, + -0.009156104177236557, + 0.001625337521545589, + -0.020257018506526947, + -0.006656246725469828, + 0.005916185677051544, + -0.0035152898635715246, + -8.504516881657764e-5, + 0.008975391276180744, + -0.012770355679094791, + -0.01808846928179264, + 0.00018945240299217403, + 0.009878953918814659, + -0.014310714788734913, + 0.004504906479269266, + 0.010636226274073124, + 0.015291726216673851, + -0.0029753034468740225, + 0.0015801594126969576, + 0.020377494394779205, + 0.016005970537662506, + 0.009896164759993553, + -0.013802998699247837, + -0.003926195669919252, + 0.013295282609760761, + -0.007891115732491016, + 0.0047544618137180805, + 0.011100915260612965, + -0.009474501945078373, + 0.00694882869720459, + 0.002960244193673134, + -0.0358327217400074, + 0.02535139210522175, + -0.004238140303641558, + -0.026401245966553688, + -0.03435260057449341, + 0.0056666298769414425, + -0.015007749199867249, + 0.015360568650066853, + -0.006355058867484331, + 0.022511623799800873, + -0.004500603768974543, + -0.002340658102184534, + 0.015842469409108162, + 0.01104067824780941, + 0.002184686018154025, + -0.01177213340997696, + 0.01402673777192831, + -0.0019781573209911585, + -0.000821811961941421, + 0.021582243964076042, + 0.00747375562787056, + -0.014164423570036888, + 0.0010745944455265999, + 0.0059549096040427685, + 0.007125238887965679, + -0.0042488970793783665, + -0.009724057279527187, + 0.02569560706615448, + -0.02910332940518856, + 0.015627335757017136, + -0.0024654357694089413, + 0.011918424628674984, + -0.0066132196225225925, + -0.007383399643003941, + 0.013553443364799023, + 0.0006238886853680015, + -0.0004195113433524966, + -0.013544837944209576, + 0.010963229462504387, + 0.017055824398994446, + 0.021943669766187668, + -0.003414176870137453, + 0.0015059381257742643, + 0.011393497698009014, + -0.016367396339774132, + -0.0016791210509836674, + 0.02717573009431362, + -0.0037003052420914173, + -0.01450863853096962, + -0.015945732593536377, + 0.0067078787833452225, + -0.006544376723468304, + 0.01000803429633379, + -0.010240379720926285, + 0.006570192985236645, + 0.00257515418343246, + 0.0006464777397923172, + -0.018329419195652008, + 0.036727678030729294, + 0.009457291103899479, + 0.004291923716664314, + -0.0019136171322315931, + 0.005214848555624485, + -0.02846653386950493, + -0.012778961099684238, + 0.001820033765397966, + -0.010593199171125889, + -0.005391258746385574, + 0.020842183381319046, + -0.005460101645439863, + -0.011109520681202412, + 0.019000636413693428, + -0.027605997398495674, + -0.0007255394593812525, + -0.004621078725904226, + -0.014990538358688354, + 0.005967817734926939, + 0.0021739292424172163, + 0.00026676617562770844, + 0.004053125157952309, + 0.006647641304880381, + 0.005012622568756342, + -0.009431475773453712, + -0.010145720094442368, + 0.009345421567559242, + 0.009121682494878769, + -0.0273822583258152, + -0.007835181429982185, + -0.0016909533878788352, + 0.004642592277377844, + 0.018140099942684174, + -0.009001207537949085, + -0.006342150736600161, + -0.009001207537949085, + 0.014999143779277802, + -0.0007196232909336686, + 0.00814067106693983, + 0.017176300287246704, + 0.020584022626280785, + 0.013045727275311947, + -0.009285184554755688, + 0.015610123984515667, + -0.0005028757732361555, + 0.007529690861701965, + 0.027278993278741837, + 0.0008029877208173275, + 0.005614997819066048, + 0.02161666564643383, + -0.00284407171420753, + -0.0020663621835410595, + 0.004119816701859236, + 0.002088951412588358, + -0.007538295816630125, + 0.001430641277693212, + -0.010963229462504387, + -0.011316049844026566, + 0.026797093451023102, + -0.024921124801039696, + 0.007753429934382439, + 0.012305665761232376, + -0.006449718028306961, + 0.015524070709943771, + 0.010403880849480629, + 0.02065286599099636, + 0.01526590995490551, + 0.00031570918508805335, + 0.008450464345514774, + -0.015188462100923061, + 0.01905226893723011, + 0.0024912520311772823, + 0.007749127224087715, + -0.0074651506729424, + 0.007435031700879335, + -0.0032937019132077694, + -0.008807586506009102, + -0.011927030049264431, + 0.014267688617110252, + -0.00601514708250761, + -0.007658771239221096, + 0.011453735642135143, + 0.016160868108272552, + 0.007925537414848804, + 0.008743046782910824, + -0.005008319858461618, + -0.025626763701438904, + -0.008355805650353432, + 0.005391258746385574, + 0.02036028355360031, + 0.006587403826415539, + -0.0034012687392532825, + 0.007073606364428997, + -0.014095581136643887, + -0.01419023983180523, + -0.03493776544928551, + -0.0038745636120438576, + 0.022322306409478188, + 0.016599740833044052, + -0.018054047599434853, + 0.0250588096678257, + 0.008321383967995644, + -0.0006599235930480063, + -0.013123175129294395, + 0.0028182556852698326, + 0.007731916848570108, + -0.014207450672984123, + -0.014138607308268547, + 0.02338937111198902, + 0.020635655149817467, + 0.028500955551862717, + 0.01648787036538124, + 0.035178713500499725, + -0.015859680250287056, + 0.019809540361166, + 0.0006943450425751507, + 0.01575641520321369, + -0.019757907837629318, + -0.007142449263483286, + -0.01846710406243801, + 0.005554760340601206, + 0.0037411805242300034, + 0.0036056460812687874, + -0.00737049151211977, + -0.025919346138834953, + -0.007439334411174059, + 0.021805984899401665, + 0.004788883496075869, + 0.019482536241412163, + -0.01896621473133564, + 0.010894387029111385, + -0.0005620376323349774, + -0.010111299343407154, + 0.022236252203583717, + -0.002807498909533024, + 0.0009627247345633805, + -0.005606392398476601, + -0.00589897483587265, + -0.014138607308268547, + 0.0028031961992383003, + 0.011815160512924194, + -0.01846710406243801, + -0.00463828956708312, + 0.008119157515466213, + -0.024921124801039696, + -0.009104471653699875, + -0.015222882851958275, + -0.007723311427980661, + -0.009534739889204502, + -0.0016393212135881186, + -0.016298552975058556, + -0.007478058338165283, + 0.0076458631083369255, + -0.01480122096836567, + 0.0013865387300029397, + -0.018140099942684174, + -0.016642767935991287, + -0.013028516434133053, + 0.000787928351201117, + 0.01308014802634716, + 0.0013886900851503015, + -0.0008928061579354107, + 0.030893245711922646, + -0.02523091807961464, + 0.019396483898162842, + -0.008691414259374142, + -0.003896077163517475, + 0.008678506128489971, + 0.014646324329078197, + 0.010481329634785652, + 0.0033539393916726112, + 0.001828639185987413, + -0.03531640022993088, + -0.006187254562973976, + -0.02225346304476261, + 0.0073661888018250465, + 0.01666858419775963, + 0.00284407171420753, + -0.006182951852679253, + 0.009078655391931534, + 0.008721533231437206, + 9.53312628553249e-5, + 0.0013693280052393675, + -0.005348231643438339, + 0.00919052492827177, + -0.024869492277503014, + -0.002710688626393676, + -0.008983996696770191, + 0.0080115906894207, + -0.010610410012304783, + -0.0026741158217191696, + 0.0038336883299052715, + 0.01628994755446911, + -0.012228217907249928, + 0.00040041818283498287, + 0.006458323448896408, + -0.007680284325033426, + 0.0007137071224860847, + -0.0005233135307207704, + -0.010481329634785652, + 0.00580431567505002, + -0.006871380377560854, + 0.011995872482657433, + -0.005275086034089327, + 0.019327640533447266, + 0.014465611428022385, + -0.017881939187645912, + -0.023113999515771866, + -0.01715908944606781, + 0.016057603061199188, + -0.003317366586998105, + 0.00045581519952975214, + 0.002147037535905838, + -0.016857901588082314, + -0.006781024392694235, + -9.176810272037983e-5, + -0.01444840058684349, + -0.004642592277377844, + 0.012297060340642929, + -0.009070049971342087, + -0.008373016491532326, + 0.0019458872266113758, + 0.002747261431068182, + -0.009121682494878769, + -0.010111299343407154, + 0.016823479905724525, + -0.01774425432085991, + -0.011255811899900436, + -0.0008309551631100476, + 0.0006819748668931425, + 0.008846310898661613, + -0.008682808838784695, + 0.03338880091905594, + 0.007594231050461531, + -0.03313063830137253, + -0.020962659269571304, + 0.009422870352864265, + 0.012899436056613922, + -0.007271529641002417, + -0.015567097812891006, + -0.003366847289726138, + -0.00011032341717509553, + -0.010868570767343044, + -0.005576273892074823, + 0.012598248198628426, + -0.003945557866245508, + -0.007796457037329674, + 0.01255522109568119, + 0.001402673777192831, + 0.02085939422249794, + -0.0022287883330136538, + -0.01072227954864502, + 0.006991855800151825, + -0.020618444308638573, + -0.0017974447691813111, + 0.0007691041100770235, + -0.0002233359991805628, + -0.015093802474439144, + -1.3538317034544889e-5, + -0.018363839015364647, + 0.002641845727339387, + -0.005606392398476601, + 0.0012520799646154046, + -0.007611441425979137, + -7.872560672694817e-5, + 0.00860966369509697, + -0.01718490570783615, + -0.023475423455238342, + -0.012899436056613922, + -0.005240664817392826, + 0.02056681178510189, + -0.02426711656153202, + -0.0173311959952116, + 0.0027343533001840115, + -0.019035058096051216, + 0.009655214846134186, + -0.010653436183929443, + 0.010834149084985256, + 0.003328123362734914, + -0.012839198112487793, + 0.0012886527692899108, + 0.005610695108771324, + 0.015119618736207485, + 0.002426711842417717, + 0.010653436183929443, + -0.004453274421393871, + 0.001567251281812787, + 0.0036443702410906553, + -0.006182951852679253, + -0.03720958158373833, + -0.020463548600673676, + 0.03275200352072716, + -0.017847517505288124, + 0.019620222970843315, + 0.008218119852244854, + 0.0021900644060224295, + -0.027313414961099625, + 0.008880732581019402, + -0.006238886620849371, + -0.022614888846874237, + -0.0010955700417980552, + -0.0052191512659192085, + -0.008355805650353432, + -0.011978662572801113, + 0.021100344136357307, + -0.004547933116555214, + -0.012572431936860085, + 0.013914868235588074, + -0.006561587564647198, + -0.003046297701075673, + -0.00037487101508304477, + 0.0042639560997486115, + -0.017529120668768883, + 0.01686650700867176, + -0.014990538358688354, + -0.022614888846874237, + -0.024198275059461594, + -0.0005130946519784629, + 0.018604790791869164, + -0.01721932739019394, + -0.004991109482944012, + 0.007426426280289888, + -0.01271872315555811, + 0.011875397525727749, + -0.007826576009392738, + -0.017554935067892075, + 0.014284898526966572, + -0.006135622039437294, + 0.015102407895028591, + 0.0001532829919597134, + 0.00220727501437068, + -0.009500318206846714, + 0.010076877661049366, + 0.008704322390258312, + 0.0012983337510377169, + 0.013148991391062737, + 0.01614365726709366, + 0.00944008119404316, + 0.0067164842039346695, + 0.012994094751775265, + -0.0015392838977277279, + -0.009620793163776398, + -0.004343555774539709, + 0.03541966527700424, + -0.0004020316991955042, + 0.01593712903559208, + -0.004177902825176716, + -0.022683730348944664, + -0.0016296402318403125, + 0.004793185740709305, + 0.00996500812470913, + -0.005554760340601206, + 0.009594976902008057, + 0.023458212614059448, + 0.00038831689744256437, + -0.011746317148208618, + -0.030376924201846123, + -0.0009433626546524465, + -0.007938445545732975, + -0.0059721204452216625, + 0.020807761698961258, + 0.019912805408239365, + 0.003812174778431654, + 0.03696862980723381, + 0.0015747810248285532, + -0.006269005127251148, + -0.01350181084126234, + 0.0026569052133709192, + 0.029378701001405716, + -0.015386384911835194, + 0.004167146049439907, + -0.01913832314312458, + -0.011350470595061779, + -0.014052554033696651, + -0.007774943485856056, + -0.01657392457127571, + 0.0034227822907269, + -0.024542488157749176, + -0.01913832314312458, + 0.021771563217043877, + -0.013837420381605625, + 0.01219379622489214, + 0.02199530228972435, + -0.008416042663156986, + -0.0028118016198277473, + -0.020429126918315887, + 0.005348231643438339, + 0.0023471121676266193, + -0.011625842191278934, + -0.006286215968430042, + -0.004431760869920254, + -0.009577766992151737, + -0.005589182022958994, + -0.002390139037743211, + -0.00601514708250761, + 0.01581665314733982, + 0.03170214965939522, + -0.010567382909357548, + -0.019379273056983948, + 0.007301648613065481, + 0.010920203290879726, + 0.0014844246907159686, + -0.021633876487612724, + 0.010257589630782604, + -0.006806840188801289, + 0.00558487931266427, + -0.014990538358688354, + 0.014052554033696651, + 0.02018817700445652, + -0.01166886929422617, + -0.012778961099684238, + 0.008923758752644062, + 0.013966500759124756, + 0.007813667878508568, + 0.01539499033242464, + 0.0012101288884878159, + 0.0023062366526573896, + 0.005821526516228914, + 0.006079687271267176, + 0.005890369415283203, + -0.004350009839981794, + -0.01665997877717018, + 0.014792615547776222, + -0.02001606859266758, + 0.021306872367858887, + -0.005008319858461618, + 0.01419023983180523, + 0.00875165220350027, + -0.008983996696770191, + -0.0023557175882160664, + -0.01221961248666048, + -0.015326147899031639, + -0.005589182022958994, + -0.005567668471485376, + 0.02922380529344082, + 0.013364125043153763, + -0.01741725020110607, + -0.009629398584365845, + 0.007714706007391214, + -0.00694882869720459, + -0.023458212614059448, + 0.004212324041873217, + 0.007899721153080463, + -0.012038899585604668, + -0.003973525483161211, + 0.0014629113720729947, + 0.00832998938858509, + 0.0024891006760299206, + -0.015377779491245747, + 0.003601343370974064, + 0.011634447611868382, + -0.00588606670498848, + 0.006970342248678207, + 0.002051302930340171, + -0.014078370295464993, + -0.0005391796585172415, + 0.00035712248063646257, + 0.019792329519987106, + -0.018949003890156746, + -0.016565319150686264, + 0.036486729979515076, + -0.02741668000817299, + -0.007693192455917597, + 0.01817452162504196, + 0.017090246081352234, + 0.009655214846134186, + 0.003087173216044903, + -0.0006771343178115785, + -0.00031920510809868574, + -0.007525388151407242, + 0.04171878844499588, + 0.012796171009540558, + -0.007495269179344177, + 0.021186398342251778, + 0.009138893336057663, + -0.007783548906445503, + -0.017055824398994446, + 0.00756841478869319, + -0.007577020209282637, + 0.009930586442351341, + -0.027485521510243416, + 0.004251048434525728, + -0.018277786672115326, + 0.02733062580227852, + -0.01360507495701313, + 0.0019587953574955463, + 0.0006852018414065242, + -0.007000461220741272, + -0.014663535170257092, + 0.014138607308268547, + -0.0019028603564947844, + -0.016350185498595238, + 0.004651197697967291, + -0.004724342841655016, + -0.019482536241412163, + 0.004668408073484898, + 0.0022997825872153044, + 0.0068842885084450245, + 0.02077334001660347, + 0.0052019404247403145, + -0.006462626159191132, + -0.013648102059960365, + -0.0017264505149796605, + -0.011204179376363754, + 0.02208135649561882, + 0.003715364495292306, + 0.02304515615105629, + -0.010119903832674026, + -0.018071258440613747, + 0.009887559339404106, + 0.001887800986878574, + 0.00315386475995183, + -0.0008148201159201562, + -0.0014930301113054156, + 0.020153755322098732, + -5.032119224779308e-5, + -0.01480122096836567, + -0.02313121035695076, + -0.006617522332817316, + -0.010395275428891182, + 0.007004763465374708, + -0.01209053210914135, + -0.020463548600673676, + 0.008661295287311077, + -0.005967817734926939, + -0.003510987153276801, + 0.015954338014125824, + -0.0008659144514240324, + -0.010739490389823914, + 0.00024995882995426655, + 0.001160648069344461, + -0.015919918194413185, + -0.019878383725881577, + -0.020222598686814308, + 0.009646609425544739, + -0.027726473286747932, + 0.01867363229393959, + -0.03190867602825165, + 0.010808332823216915, + -0.015894101932644844, + 0.003231313079595566, + -0.027227360755205154, + -0.02342379279434681, + 0.0298606026917696, + 0.018260575830936432, + -0.0014586086617782712, + -0.01295106764882803, + 0.016358790919184685, + 0.013071542605757713, + 0.00394770922139287, + -0.013579259626567364, + 0.011032072827219963, + -0.008743046782910824, + 0.019017847254872322, + -0.015257304534316063, + 0.003203345462679863, + -0.00654007401317358, + -0.019706275314092636, + 0.007237108424305916, + 0.016789058223366737, + 0.0011186968768015504, + 0.003609948791563511, + 0.008734441362321377, + -0.030256448313593864, + 0.0015661756042391062, + -0.018312208354473114, + -0.005171821918338537, + 0.01314038597047329, + -0.011539788916707039, + -0.025299761444330215, + 0.019448114559054375, + 0.019207164645195007, + -0.014233266934752464, + -0.0026655104011297226, + 0.0065228636376559734, + 0.01567896641790867, + -0.017864728346467018, + 0.00844616163522005, + 0.016711611300706863, + -0.011229995638132095, + -0.0056924461387097836, + -0.001875968649983406, + -0.0343698114156723, + 0.023165632039308548, + 0.022236252203583717, + -0.004317739978432655, + -0.017675410956144333, + 0.012546615675091743, + -0.019861172884702682, + 0.02060123346745968, + 0.02788136899471283, + 0.002349263522773981, + -0.004418852739036083, + 0.008734441362321377, + 0.002805347554385662, + 0.013071542605757713, + 0.004044519737362862, + -0.00692731561139226, + 0.014620508067309856, + 0.014181634411215782, + 0.0019803086761385202, + -0.0066218250431120396, + -0.020876605063676834, + -0.0037261212710291147, + 0.02595376782119274, + -0.002998968120664358, + -0.006441112607717514, + -0.004526419565081596, + -0.012710117734968662, + 0.0031302000861614943, + -0.013648102059960365, + 0.011686080135405064, + 0.010524355806410313, + 0.0026074242778122425, + 0.014181634411215782, + 0.0026461484376341105, + 0.016169473528862, + 0.008566636592149734, + -0.015541281551122665, + -0.009861743077635765, + 0.00630772951990366, + -0.011703290976583958, + 0.033165059983730316, + -0.0011143941665068269, + -0.01564454659819603, + -0.01614365726709366, + -0.0019781573209911585, + -0.004887844901531935, + 0.0025299759581685066, + -0.002583759604021907, + -0.010937413200736046, + 0.011496761813759804, + 0.030686715617775917, + 0.011763527989387512, + -0.005812921095639467, + -0.0036701862700283527, + 0.009698241949081421, + -0.01931042969226837, + 0.0015263758832588792, + 0.013157596811652184, + -0.003799266880378127, + 0.01800241507589817, + -0.012933856807649136, + 0.029757337644696236, + 0.002426711842417717, + 0.02283862791955471, + 0.0024503765162080526, + 0.006557284854352474, + -0.005735472775995731, + -0.0017490396276116371, + 0.0018135798163712025, + 0.014663535170257092, + -0.0025084626395255327, + 0.008063223212957382, + 0.02913775108754635, + -0.021857615560293198, + -0.0014618356944993138, + -0.02354426681995392, + -0.0003356090746819973, + -0.008390226401388645, + 0.008282659575343132, + 0.0020437731873244047, + 0.0066218250431120396, + -0.015257304534316063, + 0.008467675186693668, + -0.004440366290509701, + -0.0035991922486573458, + 0.018897371366620064, + 0.016832085326313972, + -0.006204464938491583, + 0.0055719711817801, + 0.008755954913794994, + 0.021582243964076042, + -0.00019483074720483273, + -0.015024960041046143, + 0.012606853619217873, + -0.0003501306055113673, + -0.013613680377602577, + -0.004436063580214977, + 0.007030579727143049, + 0.0027580182068049908, + 0.008553728461265564, + 0.009285184554755688, + -0.02863864041864872, + -0.01800241507589817, + -0.01549825444817543, + -0.027950212359428406, + -0.005348231643438339, + -0.013424362987279892, + 0.019000636413693428, + -0.007766338065266609, + 0.01127302274107933, + -0.008403134532272816, + 0.008897943422198296, + -0.015197067521512508, + 0.006978947669267654, + 0.0038229315541684628, + -0.006441112607717514, + -0.009973613545298576, + 0.016943955793976784, + 0.006269005127251148, + -0.01505938172340393, + 0.006854170002043247, + 0.02258046716451645, + 0.00632063765078783, + -0.00854942575097084, + 0.001209053210914135, + -0.0149303013458848, + 0.020790550857782364, + 0.015446622855961323, + 0.0005512809148058295, + -0.045987047255039215, + 0.023441003635525703, + -0.03658999502658844, + 0.021289663389325142, + -0.006127017084509134, + 0.009491712786257267, + 0.0027881369460374117, + 0.004642592277377844, + -0.006195859983563423, + 0.0012660636566579342, + 0.01032643299549818, + 0.007757732644677162, + -0.006010844372212887, + 0.0004555462801363319, + -0.010309222154319286, + 0.025334181264042854, + -0.010042455978691578, + -0.007774943485856056, + -0.0005001865793019533, + -0.011341865174472332, + 0.013381335884332657, + -0.014956116676330566, + 0.01757214590907097, + -0.00425319978967309, + 0.010885781608521938, + -0.02371637523174286, + 0.002545035444200039, + 9.761706314748153e-5, + 0.008428950794041157, + -0.0006287291762419045, + 0.008734441362321377, + 0.0062431893311440945, + -0.013286677189171314, + 0.005752683617174625, + -0.021014291793107986, + -0.0007341448217630386, + 0.009156104177236557, + -0.005128794815391302, + -0.0009186222450807691, + 0.01800241507589817, + -0.014586086384952068, + -0.00830417312681675, + -0.011453735642135143, + -0.01271872315555811, + -0.017881939187645912, + 0.004124118946492672, + -0.0020383947994560003, + 0.005283691454678774, + -0.014715166762471199, + -0.011341865174472332, + -0.004444669000804424, + 0.005709656979888678, + -0.004294075071811676, + 0.017038613557815552, + -0.007787851616740227, + -0.01884574070572853, + 0.007310254033654928, + -0.009405659511685371, + -0.009508923627436161, + -0.016909534111618996, + 0.003990735858678818, + -0.017374223098158836, + 0.017881939187645912, + -0.015868285670876503, + -0.016384607180953026, + -0.004646894987672567, + 0.01019735261797905, + -0.013295282609760761, + -0.0034206309355795383, + 0.005976423155516386, + 0.00811485480517149, + -0.017881939187645912, + 0.027829736471176147, + -0.026728250086307526, + -0.0065314690582454205, + -0.007125238887965679, + 0.009767084382474422, + -0.004233837593346834, + 0.024284327402710915, + 0.005589182022958994, + -0.001239171950146556, + 0.01858757995069027, + -0.011126731522381306, + 0.0062345839105546474, + 0.020033279433846474, + -0.0014015980996191502, + -0.018398260697722435, + 0.020911026746034622, + 0.0051933350041508675, + 0.009939191862940788, + -0.009405659511685371, + 0.008820494636893272, + 0.013725550845265388, + -0.006049568764865398, + 0.006415296345949173, + 0.004801791161298752, + -0.010180141776800156, + -0.016935350373387337, + 0.016616951674222946, + 0.010670647025108337, + 0.026848725974559784, + -0.0069875530898571014, + 0.00769749516621232, + -0.00971545185893774, + -0.012314271181821823, + 0.004500603768974543, + 0.0026095756329596043, + -0.02893122285604477, + -0.00895818043500185, + 0.005795710254460573, + -0.004982504062354565, + -0.006578798405826092, + -0.016246920451521873, + 0.018277786672115326, + -0.017675410956144333, + 0.01108370441943407, + 0.012710117734968662, + 0.014887274242937565, + -0.004724342841655016, + -0.011815160512924194, + -0.009164709597826004, + -0.003026935737580061, + 0.010360854677855968, + -0.00113052933011204, + -0.013131780549883842, + 0.027554364874958992, + 0.03199473023414612, + 0.006114108953624964, + -0.0017780826892703772, + 0.015463833697140217, + -0.012606853619217873, + 0.006092595402151346, + 0.011840976774692535, + 0.00032996179652400315, + -0.00996500812470913, + 0.014577480964362621, + -0.005911882966756821, + -0.006221675779670477, + -0.028001844882965088, + 0.0076286522671580315, + 0.005356837064027786, + -0.00683265645056963, + 0.005735472775995731, + -0.0053224158473312855, + -0.009405659511685371, + -0.020893815904855728, + -0.015782231464982033, + 0.0008599982247687876, + 0.011927030049264431, + 0.06546958535909653, + 0.033216692507267, + -0.006763813551515341, + -0.0031646215356886387, + 0.0004918501363135874, + -0.02724457159638405, + 0.007065001409500837, + -0.013157596811652184, + -0.015618729405105114, + 0.005133097525686026, + 0.014646324329078197, + 0.0038379908073693514, + 0.013906262814998627, + 0.013622285798192024, + -0.01358786504715681, + 0.0039434065110981464, + -0.005589182022958994, + -0.001102561829611659, + 0.005894672125577927, + -0.00037729128962382674, + -0.006781024392694235, + -0.005649419501423836, + 0.0057698944583535194, + 0.0019803086761385202, + 0.011591420508921146, + 0.018105678260326385, + -0.009655214846134186, + -0.02406058833003044, + -0.01628134213387966, + -0.003123746020719409, + 0.028070686385035515, + -0.008588150143623352, + -0.031065352261066437, + 0.013475994579494, + 0.010292011313140392, + 0.008588150143623352, + -0.001751190866343677, + 0.013846025802195072, + -0.014043948613107204, + -0.005012622568756342, + -0.01774425432085991, + -0.014233266934752464, + 0.009362632408738136, + -0.02400895580649376, + -0.01573059894144535, + 0.00944008119404316, + -0.0036228569224476814, + -0.009870348498225212, + 0.014439795166254044, + -0.007430728990584612, + -0.005029833409935236, + -0.010128509253263474, + -0.004119816701859236, + 0.00980150606483221, + -0.016771847382187843, + 0.03603925183415413, + 0.01408697571605444, + -0.0451609343290329, + 0.001102561829611659, + -0.008708625100553036, + 0.006303426809608936, + 7.643980643479154e-5, + 0.02120360918343067, + 0.02144455909729004, + -0.0034034200944006443, + 0.02872469462454319, + -0.008807586506009102, + -0.0016188834561035037, + -0.005589182022958994, + 0.025420235469937325, + 0.030015498399734497, + -0.0235958993434906, + -0.024749018251895905, + -0.005382653325796127, + -0.021478980779647827, + -0.017193511128425598, + 0.007417820859700441, + -0.030514609068632126, + -0.009990823455154896, + 0.011832371354103088, + 0.019189953804016113, + -0.01858757995069027, + 0.005029833409935236, + -0.008334292098879814, + -0.020962659269571304, + -0.0020835730247199535, + -0.014095581136643887, + 0.0062431893311440945, + 0.0007847013184800744, + -0.0064023882150650024, + -0.00901841837912798, + 0.004702829755842686, + -0.015747809782624245, + 0.0007669527549296618, + 0.011582816019654274, + -0.004102605860680342, + -0.011488156393170357, + 0.005236362107098103, + 0.00737049151211977, + 0.020119333639740944, + -0.00610980624333024, + 0.016763241961598396, + 0.007409215439110994, + 0.015231488272547722, + -0.009181919507682323, + -0.025041600689291954, + 0.02951638773083687, + 0.008101947605609894, + -0.004978201352059841, + 0.036486729979515076, + 0.0017070884350687265, + 0.016040392220020294, + 0.0033582421019673347, + 0.009526134468615055, + 0.003500230610370636, + 0.024284327402710915, + -0.009853137657046318, + -0.006363664288073778, + 0.0346623919904232, + 0.033216692507267, + -0.02237393893301487, + 0.028363268822431564, + 0.02149619162082672, + -0.011470945551991463, + 0.008708625100553036, + -0.0036056460812687874, + -0.0020642108283936977, + 0.03738168627023697, + -0.015308937057852745, + -0.026263561099767685, + 0.02860421873629093, + 0.005189032759517431, + -0.016453450545668602, + -0.013510416261851788, + 0.014233266934752464, + -0.009405659511685371, + -0.01169468555599451, + 0.014784010127186775, + -0.004375826101750135, + -0.012056110426783562, + -0.002437468385323882, + 0.022425569593906403, + 0.02464575320482254, + -0.008846310898661613, + 0.011952846311032772, + -0.003588435472920537, + -0.00015919917495921254, + 0.025592342019081116, + -0.0018028230406343937, + 0.003657278371974826, + 0.0014768950641155243, + -0.011488156393170357, + 0.012667090632021427, + 0.004788883496075869, + 0.0029236713889986277, + 0.008291264995932579, + -0.015360568650066853, + 0.014370952732861042, + 0.0012746690772473812, + -0.007323162164539099, + -0.0031495620496571064, + 0.005059951916337013, + 0.011100915260612965, + 0.024456435814499855, + -0.011445130221545696, + -0.00790832657366991, + 0.00046442056191153824, + -0.0038336883299052715, + 0.00321195088326931, + -0.004612473305314779, + -0.0044575766660273075, + -0.001982460031285882, + 0.0042897723615169525, + 0.008334292098879814, + -0.010317827574908733, + -0.006720786914229393, + -0.010248985141515732, + -0.015808047726750374, + -0.0203947052359581, + 0.006940223276615143, + 0.02430153824388981, + 0.011393497698009014, + 0.011410708539187908, + 0.0037648454308509827, + -0.015154040418565273, + 0.010111299343407154, + 0.0023729281965643167, + -0.00919052492827177, + 0.0019975192844867706, + 0.00150055973790586, + 0.014198845252394676, + -0.0024138037115335464, + 0.006781024392694235, + -0.01091159787029028, + -0.011849582195281982, + 0.0071553573943674564, + 0.0008271902916021645, + 0.006983250379562378, + -0.03309621661901474, + 0.003949860576540232, + -0.007142449263483286, + -0.009724057279527187, + 0.007293043192476034, + 0.0036723376251757145 + ], + "3e189d7a-020e-46d1-9904-2e908115d370": [ + -0.01012035645544529, + 0.0006157943862490356, + -0.014469600282609463, + 0.006808239500969648, + -0.022482246160507202, + -0.003793042618781328, + -0.006348223425447941, + 0.01564055122435093, + -0.04851079732179642, + 0.03579762578010559, + 0.025894729420542717, + 0.038139525800943375, + -0.01217788364738226, + -0.031080367043614388, + 0.0002718277391977608, + 0.03529578819870949, + -0.029474493116140366, + 0.024824146181344986, + -0.01360811572521925, + -0.022398605942726135, + 0.06453608721494675, + 0.009334146976470947, + -0.021662581712007523, + 0.009710523299872875, + 0.009158504195511341, + -0.018869027495384216, + -0.01007017306983471, + 0.005114543717354536, + -0.02338555082678795, + 0.025894729420542717, + 0.01600020006299019, + 0.022147689014673233, + 0.027400236576795578, + 0.015598731115460396, + 0.04285678267478943, + -0.01007017306983471, + 0.0031427470967173576, + 0.025158703327178955, + -0.012972456403076649, + -0.02591145783662796, + -0.034359026700258255, + 0.02101019397377968, + -0.01942104659974575, + 0.017313336953520775, + -0.03258587419986725, + 0.018634837120771408, + 0.008246836252510548, + -0.02663075551390648, + -0.006440226919949055, + -0.00029927189461886883, + 0.03139819577336311, + -0.051990192383527756, + 0.0009022590238600969, + 0.032903704792261124, + 0.003621581941843033, + -0.02059199847280979, + -0.004012595862150192, + 0.04178619757294655, + -0.010906565934419632, + -0.024472862482070923, + 0.006883515045046806, + 0.0007313212263397872, + -0.00718043465167284, + -0.002586545655503869, + -0.014569967053830624, + -0.03404119983315468, + 0.019772332161664963, + 0.010739287361502647, + -0.04161892086267471, + -0.003297479823231697, + 0.01089820172637701, + 0.026179103180766106, + -0.023669924587011337, + 0.0017010144656524062, + -0.012027332559227943, + -0.019722148776054382, + 0.06664380431175232, + -0.035529978573322296, + 0.0084308423101902, + -0.009074864909052849, + -0.0322011336684227, + 0.03777151182293892, + 0.005248366389423609, + -0.03419174998998642, + 0.056205615401268005, + -0.0173802487552166, + -0.02571072429418564, + -0.03539615496993065, + 0.004997448530048132, + -0.001685332041233778, + -0.00884067453444004, + -0.00884067453444004, + 0.0171209666877985, + 0.0006868878263048828, + -0.004445429425686598, + 0.036734383553266525, + 0.005089452024549246, + 0.012738266959786415, + 0.022749891504645348, + -0.018183184787631035, + 0.016602402552962303, + 0.044295378029346466, + -0.03767114505171776, + 0.012495712377130985, + 0.012495712377130985, + 0.000859393912833184, + 0.0070298840291798115, + -0.03133128583431244, + -0.013741938397288322, + 0.06470336765050888, + 0.017179513350129128, + -0.03285352140665054, + 0.006456954404711723, + 0.007172070909291506, + -0.02586127445101738, + -0.06650997698307037, + 0.023853931576013565, + -0.02982577681541443, + 0.00715534295886755, + -0.04068215936422348, + 0.02576090767979622, + 0.0436931736767292, + -0.011157483793795109, + 0.004131781868636608, + -0.013265194371342659, + 0.00016819342272356153, + 0.02576090767979622, + -0.018099546432495117, + 0.0322011336684227, + -0.016334757208824158, + -0.030628714710474014, + -0.013900852762162685, + -0.011333126574754715, + 0.021863315254449844, + -0.005771112162619829, + 0.001152131473645568, + 0.011450221762061119, + 0.0431913398206234, + -0.05486738681793213, + 0.046470001339912415, + -0.03713585436344147, + -0.048845354467630386, + -0.02000652253627777, + 0.0037365860771387815, + -0.017647894099354744, + 0.015573639422655106, + -0.058279868215322495, + 0.06423498690128326, + -0.023887386545538902, + 0.02930721454322338, + -0.04228803515434265, + -0.036533650010824203, + 0.02368665300309658, + -0.020324351266026497, + -0.014076495543122292, + -0.006565685849636793, + -0.029173390939831734, + -0.00016584106197115034, + 0.002751733176410198, + 0.01479579322040081, + 0.01406813133507967, + -0.05607179179787636, + -0.0010695377131924033, + 0.0031699298415333033, + 0.024707050994038582, + 0.01855119876563549, + 0.045934706926345825, + 0.053495701402425766, + -0.03442594036459923, + 0.02295062690973282, + 0.029323941096663475, + 0.005691654980182648, + 0.012846997939050198, + -0.0075693572871387005, + 0.012964093126356602, + -0.017999179661273956, + 0.034894321113824844, + 0.02514197677373886, + 0.001282817916944623, + -0.030160333961248398, + -0.019738877192139626, + -0.026095464825630188, + -0.008497754111886024, + -0.020374534651637077, + 0.03273642435669899, + 0.02445613406598568, + 0.005758566316217184, + 0.002730823354795575, + -0.007690634578466415, + -0.011040388606488705, + -0.01222806703299284, + 0.016752952709794044, + -0.0012838633265346289, + 0.0139928562566638, + 0.008501935750246048, + -0.020960010588169098, + -0.00733934948220849, + -0.005432372912764549, + 0.01409322302788496, + 0.02514197677373886, + -0.014243774116039276, + -0.0232517272233963, + -0.07085922360420227, + 0.03633291646838188, + -0.038340259343385696, + -0.004079507198184729, + -0.019136672839522362, + -0.02435576729476452, + 0.03439248353242874, + -0.037604231387376785, + 0.031247645616531372, + -0.04442920163273811, + 0.020742548629641533, + 0.0049765389412641525, + -0.033589545637369156, + 0.013164827600121498, + -0.038574449717998505, + 0.026614027097821236, + -0.0026660028379410505, + -0.019437775015830994, + -0.01811627484858036, + -0.0027830980252474546, + -0.014511420391499996, + -0.019939610734581947, + -0.031030183658003807, + -0.03255241736769676, + 0.0006403634324669838, + 0.011483676731586456, + -0.036834750324487686, + 0.007376987021416426, + 0.03606526926159859, + 0.024974698200821877, + -0.014561603777110577, + -0.02736678160727024, + -0.02348591759800911, + -0.020541813224554062, + -0.0026450930163264275, + 0.013934308663010597, + 0.012913908809423447, + -0.0022582614328712225, + 0.016577310860157013, + 0.03345572203397751, + 0.039444297552108765, + 0.008305382914841175, + 0.01821664161980152, + 0.02634638175368309, + 0.020709093660116196, + 0.03593144565820694, + 0.02499142475426197, + -0.031214190647006035, + -0.0109232934191823, + 0.005118725821375847, + 0.02935739792883396, + -0.016568947583436966, + -0.036533650010824203, + 0.057844944298267365, + 0.0024067210033535957, + -0.029123207554221153, + -0.010831290856003761, + -0.04161892086267471, + 0.004357608035206795, + 0.017087509855628014, + 0.044629935175180435, + 0.004729802720248699, + 0.03957812115550041, + -0.024389222264289856, + 0.02895592898130417, + -0.0324520505964756, + 0.01942104659974575, + 0.04001304507255554, + -0.011174211278557777, + 0.0031051093246787786, + 0.012119336053729057, + -0.020374534651637077, + -0.026212560012936592, + 0.0022540793288499117, + -0.005996938329190016, + 0.0016414214624091983, + 0.01365829911082983, + -0.006515501998364925, + -0.0015556911239400506, + 0.011943693272769451, + 0.025643812492489815, + 0.028654826804995537, + -0.03650019317865372, + -0.003272387897595763, + -0.0396115779876709, + 0.01612565852701664, + -0.05540267750620842, + -0.027567515149712563, + -0.010078536346554756, + 0.01014544814825058, + 0.02281680330634117, + 0.003337208414450288, + 0.028855562210083008, + 0.006615869235247374, + 0.0026325471699237823, + -0.0022122596856206656, + -0.007979189977049828, + 0.02412157692015171, + -0.06219419091939926, + -0.0026910947635769844, + 0.0159751083701849, + -0.030344340950250626, + -0.00720552634447813, + -0.011224395595490932, + 0.04901263490319252, + 0.0008829174330458045, + -0.05403099209070206, + 0.027400236576795578, + 0.03173275291919708, + -0.007452262565493584, + -0.010312726721167564, + -0.017714805901050568, + -0.01773153245449066, + -0.00437015388160944, + 0.02203059382736683, + 0.013649934902787209, + -0.016928596422076225, + -0.02034107968211174, + 0.03837371617555618, + 0.019939610734581947, + -0.05403099209070206, + 0.030260702595114708, + 0.023402279242873192, + -0.02701549604535103, + 0.022933898493647575, + -0.01288045383989811, + -0.04178619757294655, + -0.002977559342980385, + -0.023603012785315514, + -0.008305382914841175, + -0.02238187938928604, + -0.01574091799557209, + -0.013181555084884167, + -0.039343930780887604, + -0.036834750324487686, + -0.04513176903128624, + -0.03439248353242874, + -0.02422194369137287, + -0.01053018867969513, + -0.021913498640060425, + -0.021779675036668777, + -0.009559973143041134, + 0.0416523739695549, + 0.0026200013235211372, + -0.02373683638870716, + 0.022599341347813606, + -0.024690324440598488, + -0.005608015693724155, + 0.0010684921871870756, + -0.015883104875683784, + 0.026480205357074738, + 0.017179513350129128, + 0.07353568077087402, + -0.011734594590961933, + 0.014528147876262665, + 0.0017626984044909477, + 0.0068960608914494514, + -0.006072213873267174, + 0.019872698932886124, + -0.006519684102386236, + -0.0444626547396183, + -0.0069086067378520966, + 0.009844346903264523, + -0.00228753499686718, + -0.02711586467921734, + -0.009384330362081528, + 0.01409322302788496, + -0.007945734076201916, + -0.019019579514861107, + 0.009769070893526077, + 0.04924682527780533, + -0.02847081981599331, + -0.022147689014673233, + -0.0063691334798932076, + 0.05282658711075783, + -0.019002851098775864, + -0.038039159029722214, + 0.0347604975104332, + -0.010287635028362274, + 0.0038181343115866184, + 0.03700203076004982, + -0.010914930142462254, + 0.03452630713582039, + 0.03546306490898132, + -0.02649693377315998, + 0.019170129671692848, + -0.009819255210459232, + 0.026229286566376686, + -0.028203174471855164, + 0.007452262565493584, + -0.033154621720314026, + 0.0037407681811600924, + -0.02765115536749363, + 0.01295572891831398, + 0.011977149173617363, + 0.019605053588747978, + 0.022064048796892166, + -0.02154548652470112, + 0.011592407710850239, + 0.03134801238775253, + -0.0053738257847726345, + 0.02925702929496765, + -0.001515962416306138, + -0.027517331764101982, + -0.018082818016409874, + -0.008849038742482662, + 0.013792121782898903, + 0.014185226522386074, + -0.008798855356872082, + 0.016527127474546432, + 0.008100466802716255, + -0.026329655200242996, + 0.049815572798252106, + -0.01975560374557972, + 0.005336187779903412, + 0.0002718277391977608, + -0.035964902490377426, + -0.055871058255434036, + 0.03844062611460686, + 0.0802268236875534, + -0.01479579322040081, + 0.01537290494889021, + 0.0012483167229220271, + 0.027918800711631775, + 0.03994613513350487, + 0.024757234379649162, + -0.031130550429224968, + -0.02532598190009594, + -0.011040388606488705, + 0.024573229253292084, + -0.005248366389423609, + -0.00557037815451622, + -0.017831901088356972, + -0.027935529127717018, + 0.00046001619193702936, + 0.01768134906888008, + -0.03161565959453583, + -0.00848520826548338, + 0.030578531324863434, + 0.023653196170926094, + -0.030394524335861206, + -0.01510525867342949, + -0.030110150575637817, + -0.015439816750586033, + -0.05603833496570587, + 0.0006037712446413934, + 0.030545074492692947, + -0.025878002867102623, + -0.03850753605365753, + 0.025794362649321556, + -0.03897591680288315, + 0.02571072429418564, + 0.02509179338812828, + -0.02353610098361969, + -0.009936349466443062, + -0.037470411509275436, + 0.018333736807107925, + -0.05613870546221733, + -0.03777151182293892, + -0.01569073460996151, + -0.005917481146752834, + 0.011341489851474762, + 0.03874172642827034, + -0.01370848249644041, + 0.001664422219619155, + 0.03307098150253296, + 0.007903914898633957, + -0.002573999809101224, + -0.035663802176713943, + -0.0040209596045315266, + -0.03318807855248451, + 0.015858013182878494, + -0.01796572282910347, + -0.012345162220299244, + -0.013240102678537369, + -0.008414114825427532, + -0.002014661906287074, + -0.016117295250296593, + -0.03743695467710495, + -0.02833699807524681, + 0.004951447248458862, + 0.005875661503523588, + 0.0048719896003603935, + -0.002557271858677268, + 0.021294567734003067, + -0.05098652094602585, + 0.02987596020102501, + -0.0072180721908807755, + 0.036533650010824203, + -0.019688693806529045, + 0.011926965788006783, + 0.03216767683625221, + 0.009225415997207165, + -0.017564253881573677, + -0.00944287795573473, + -0.025008153170347214, + -0.02557690069079399, + -0.016217662021517754, + 0.009283963590860367, + -0.01479579322040081, + -2.293546640430577e-5, + 0.03282006457448006, + -0.015155442990362644, + -0.008648304268717766, + -0.0034459393937140703, + -0.0037114943843334913, + -0.009844346903264523, + -0.02233169600367546, + -0.020458174869418144, + 0.0024318129289895296, + -0.005729292519390583, + 0.024640141054987907, + -0.017346791923046112, + -0.007694816216826439, + -0.006728782318532467, + -0.006093123462051153, + 0.011241123080253601, + 0.017597710713744164, + 0.01300591230392456, + -0.001702059875242412, + 0.006670234724879265, + 0.002900192979723215, + -0.02179640345275402, + -0.01697041653096676, + 0.019939610734581947, + -0.021913498640060425, + 0.004880353808403015, + -0.01184332650154829, + 0.0037491319235414267, + 0.005432372912764549, + -0.010739287361502647, + 0.010622192174196243, + 0.013792121782898903, + 0.02552671730518341, + 0.002350264461711049, + 0.005319459829479456, + -0.0038975917268544436, + 0.058681339025497437, + -0.037470411509275436, + -0.002438085852190852, + -0.007422988768666983, + 0.004073234274983406, + -0.020039977505803108, + 0.03335535526275635, + 0.027667883783578873, + 0.030645443126559258, + -0.000867757829837501, + 0.005085269920527935, + -0.01729660853743553, + 0.00886576622724533, + -0.005156363360583782, + -0.010237451642751694, + 0.02233169600367546, + -0.026179103180766106, + 0.015347813256084919, + -0.034225206822156906, + -0.028303541243076324, + -0.02102692238986492, + -0.004675437230616808, + -0.0023816293105483055, + 0.006649325136095285, + 0.010806198231875896, + 0.0027538242284208536, + -0.010965113528072834, + -0.0029629224445670843, + 0.013399017043411732, + -0.0013476383173838258, + -0.006758056115359068, + -0.0017689713276922703, + 0.01339065283536911, + 0.018317008391022682, + -5.838415745529346e-5, + -0.013097915798425674, + 0.014737246558070183, + -0.0040084137581288815, + 0.010864745825529099, + 0.0028123718220740557, + 0.00978579930961132, + 0.02654711715877056, + -0.04586779698729515, + -0.004437065217643976, + 0.001681150053627789, + -0.005490920506417751, + 0.002636729273945093, + -0.02208077721297741, + -0.03007669560611248, + 0.016577310860157013, + 0.025894729420542717, + 0.010153812356293201, + 0.015565275214612484, + -0.0001311438245465979, + 0.015590366907417774, + -0.01114075630903244, + 0.032569147646427155, + 0.0164853073656559, + 0.012027332559227943, + -0.00489289965480566, + -0.008142286911606789, + 0.00012689651339314878, + 0.04335861653089523, + 0.028788650408387184, + -0.015255809761583805, + -0.01898612268269062, + 0.04764094948768616, + -0.017798444256186485, + 0.015406360849738121, + 0.00016440352192148566, + 0.024489589035511017, + -0.02795225754380226, + 0.011149119585752487, + 0.03971194475889206, + -0.03335535526275635, + 0.028537731617689133, + 0.0023209908977150917, + -0.003830680390819907, + 0.04392736405134201, + 0.004386881832033396, + -0.038474082946777344, + 0.006774784065783024, + -0.02251570113003254, + 0.06125742942094803, + -0.04844388738274574, + 0.004851080011576414, + 0.01630130037665367, + 0.00204079900868237, + -0.007197162602096796, + -0.025928186252713203, + 0.009024681523442268, + 0.03221786022186279, + -0.002701549557968974, + 0.012002240866422653, + -0.03800570219755173, + 0.01932067982852459, + 0.02343573421239853, + 0.029474493116140366, + 0.016694406047463417, + -0.017748260870575905, + 0.0057251108810305595, + -0.04760749265551567, + 0.007757545914500952, + -0.008966133929789066, + 0.045800887048244476, + -0.004805078264325857, + 0.009618520736694336, + -0.013449200429022312, + 0.02954140305519104, + 0.03312116488814354, + 0.0258110910654068, + -0.029123207554221153, + -0.013440837152302265, + 0.005311096087098122, + 0.026212560012936592, + -0.0012911817757412791, + -0.029809050261974335, + -0.012010605074465275, + 0.004246785771101713, + 0.009359238669276237, + 0.02877192199230194, + 0.025409622117877007, + -0.011023661121726036, + 0.008493571542203426, + 0.009191960096359253, + 0.0019822516478598118, + 0.015147078782320023, + 0.006151671055704355, + 0.004771622363477945, + 0.007506628055125475, + 0.021946953609585762, + 0.005633107386529446, + 0.017614439129829407, + 0.026513660326600075, + 0.039210107177495956, + -0.015121987089514732, + -0.004386881832033396, + -0.00035755804856307805, + -0.01358302403241396, + -0.005645653232932091, + -0.015331084839999676, + -0.007594448979943991, + -0.0077031804248690605, + -0.03539615496993065, + 0.01671113446354866, + 0.02174622006714344, + -0.011684411205351353, + -0.025292526930570602, + 0.022833531722426414, + 0.0002744414668995887, + 0.006277129985392094, + 0.022599341347813606, + 0.015305993147194386, + -9.461696754442528e-5, + -0.00235444656573236, + -0.01288045383989811, + 0.0068500591441988945, + 0.0005645653582178056, + -0.011174211278557777, + 0.013867396861314774, + -0.0028604643885046244, + -0.060320667922496796, + 0.0073518953286111355, + 0.002176712965592742, + -0.024339038878679276, + 0.00099478499032557, + 0.007811911404132843, + -0.031063638627529144, + -0.02199713885784149, + 0.01428559422492981, + -0.004232149105519056, + 0.01975560374557972, + 0.029558131471276283, + 0.011383309960365295, + 0.00978579930961132, + 0.008681760169565678, + 0.01334046944975853, + 0.002540543908253312, + 0.003958230372518301, + -0.028905745595693588, + -0.008706851862370968, + -0.011098936200141907, + 0.04208730161190033, + 0.009242143481969833, + -0.02852100506424904, + -0.036634016782045364, + 0.001629921025596559, + 0.022365150973200798, + 0.006812421604990959, + 0.003502395935356617, + -0.0007030929555185139, + 0.030444707721471786, + 0.002362810540944338, + -0.013850669376552105, + 0.0011908146552741528, + -0.009283963590860367, + -0.013917581178247929, + -0.006565685849636793, + 0.011768050491809845, + 0.023954298347234726, + -0.03486086428165436, + 0.012512440793216228, + 0.01617584191262722, + 0.019487958401441574, + 0.005762748420238495, + 0.01796572282910347, + 0.004457975272089243, + 0.0163514856249094, + 0.004750712774693966, + 0.014779065735638142, + 0.025459805503487587, + 0.03589799255132675, + -0.02959158644080162, + 0.020759277045726776, + 0.04024723544716835, + 0.0009085320052690804, + -0.01230334211140871, + -0.006093123462051153, + -0.002858373336493969, + 0.0005329392151907086, + 0.02062545344233513, + -0.008798855356872082, + -0.0011531769996508956, + 0.006059668026864529, + -0.040079955011606216, + 0.004934719298034906, + 0.0023105358704924583, + -0.0072473459877073765, + 0.032234590500593185, + 0.035429611802101135, + -0.03211749345064163, + 0.01220297534018755, + 0.04098325967788696, + 0.022800074890255928, + 0.022064048796892166, + -0.021578941494226456, + -0.009576700627803802, + 0.02731659822165966, + 0.0007428216049447656, + -0.046670734882354736, + -0.03700203076004982, + -0.008255199529230595, + -0.017831901088356972, + 0.013867396861314774, + -0.013440837152302265, + 0.016978779807686806, + 0.008008464239537716, + 0.020274167880415916, + 0.004378517623990774, + 0.009886166080832481, + 0.0008290746482089162, + 0.016292937099933624, + 0.002946194726973772, + 0.010471641086041927, + 0.0007940506911836565, + 0.010672375559806824, + -0.02146184630692005, + 0.016518764197826385, + -0.06142470985651016, + 0.013474292121827602, + 0.008368113078176975, + 0.014829249121248722, + -0.031013455241918564, + 0.02057527005672455, + 0.035228878259658813, + -0.0021098016295582056, + -0.0031051093246787786, + 0.004186147358268499, + 0.032084040343761444, + -0.016016928479075432, + 0.018852300941944122, + -0.017447160556912422, + -0.0013068642001599073, + -0.012529168277978897, + 0.03166584298014641, + -0.01591655984520912, + -0.0022708072792738676, + 0.010572008788585663, + 0.011299670673906803, + -0.012729902751743793, + 0.006988064385950565, + 0.0031657477375119925, + 0.0337233692407608, + 0.02561035566031933, + 0.015682369470596313, + -0.031465109437704086, + -0.02407139353454113, + 0.005833841860294342, + -0.014001220464706421, + 0.013859033584594727, + 0.015029983595013618, + 0.01426050253212452, + -0.006494592409580946, + -0.0009555791039019823, + 0.037905335426330566, + 0.012136063538491726, + 0.02591145783662796, + -0.015155442990362644, + -0.036098726093769073, + -0.03161565959453583, + 0.029993055388331413, + -0.033154621720314026, + -0.02430558390915394, + -0.04058179259300232, + -0.021679308265447617, + -0.011098936200141907, + -0.03365645930171013, + 0.008225926198065281, + -0.003130201017484069, + 0.03666747361421585, + -0.0014365051174536347, + 0.011425129137933254, + -0.0017083329148590565, + -0.010396366007626057, + 0.006891878787428141, + -0.006231128703802824, + 0.009727251715958118, + -0.01937086321413517, + 0.03409138321876526, + 0.011567316018044949, + 0.023669924587011337, + -0.014820885844528675, + 0.0011280851904302835, + -0.026998769491910934, + -0.03927702084183693, + 0.021612396463751793, + -0.03365645930171013, + -0.020709093660116196, + 0.0019665693398565054, + -0.007184616755694151, + 0.0014124588342383504, + -0.014854340814054012, + -0.012186246924102306, + 0.0020564815495163202, + 0.0008588711498305202, + -0.008543754927814007, + -0.014394325204193592, + -0.022147689014673233, + -0.0053738257847726345, + -0.022214600816369057, + -0.02203059382736683, + -0.00035886489786207676, + 0.0009038272546604276, + -0.01266299095004797, + 0.0005901798722334206, + -0.05747693404555321, + -0.00038813866558484733, + 0.02059199847280979, + -0.009242143481969833, + 0.013942672871053219, + -0.009166868403553963, + 0.016267845407128334, + 0.0031134732998907566, + -0.02561035566031933, + -0.03713585436344147, + -0.016527127474546432, + -0.012186246924102306, + -0.01298082061111927, + -0.011182575486600399, + -0.017714805901050568, + -0.012437164783477783, + -0.015071803703904152, + -0.022984081879258156, + -0.04212075471878052, + 0.012646263465285301, + 0.0009665567777119577, + -0.033773552626371384, + 0.0029420126229524612, + 0.01697041653096676, + 0.01125785056501627, + 0.00580038595944643, + 0.020508358255028725, + 0.02198041044175625, + -0.006001120433211327, + -0.04392736405134201, + 0.009702160023152828, + 0.007372804917395115, + 0.004750712774693966, + -0.011241123080253601, + -0.010162175633013248, + -0.004897081293165684, + -0.011199302971363068, + 0.0030340158846229315, + -0.004763258621096611, + 0.01259608007967472, + 0.0013528658309951425, + -0.010764379054307938, + 0.01084801834076643, + -0.0031406560447067022, + 0.0334724523127079, + 0.00193102250341326, + -0.004675437230616808, + 0.008481025695800781, + 0.020106889307498932, + 0.002176712965592742, + 0.019119946286082268, + -0.008000100031495094, + -0.0037031304091215134, + 0.005587105639278889, + -0.028705010190606117, + -0.015573639422655106, + 0.009325782768428326, + -0.01694532297551632, + 0.01022072322666645, + -0.03439248353242874, + 0.021378207951784134, + 0.01298082061111927, + -0.028052624315023422, + 0.027483876794576645, + -0.00036435373476706445, + 0.01053018867969513, + -0.002875101286917925, + 0.023569557815790176, + 0.0011354036396369338, + -0.031933486461639404, + -0.004181965254247189, + 0.03874172642827034, + -0.006214400753378868, + 0.008301201276481152, + 0.023452462628483772, + -0.009894530288875103, + -0.011776414699852467, + -0.011851689778268337, + 0.018183184787631035, + -0.0019289315678179264, + -0.04697183519601822, + 0.005281822290271521, + -0.055335767567157745, + -0.0006330450414679945, + -0.012830269522964954, + 0.0032075673807412386, + -0.016108930110931396, + -0.019303953275084496, + -0.004604343790560961, + 0.004963993094861507, + -0.008832311257719994, + -0.011115663684904575, + -0.002705731661990285, + -0.019069762900471687, + -0.015130351297557354, + 0.010856382548809052, + 0.03720276430249214, + -0.013507748022675514, + 0.010128720663487911, + -0.010597100481390953, + -0.006180944852530956, + 0.010287635028362274, + -0.010295999236404896, + 0.0036236729938536882, + 0.005549468100070953, + -0.003176202764734626, + -0.017664622515439987, + -0.03569725528359413, + 0.005340369883924723, + -0.006607505492866039, + 0.025928186252713203, + 0.007945734076201916, + -0.00025013380218297243, + -0.017212970182299614, + -0.005691654980182648, + -0.04713911563158035, + -0.002002116059884429, + -0.00681660370901227, + -0.04707220196723938, + 0.02445613406598568, + 0.02678130567073822, + 0.0037951336707919836, + -0.0038683179300278425, + 0.007431352511048317, + -0.009066500701010227, + 0.02803589589893818, + -0.006942062638700008, + 0.007807729300111532, + -0.0036362188402563334, + 0.0037951336707919836, + 0.0038223164156079292, + 0.03390737622976303, + 0.02430558390915394, + -0.06704527139663696, + -0.03563034534454346, + 0.021629124879837036, + -0.02014034613966942, + -0.0018411102937534451, + 0.013892489485442638, + -0.006565685849636793, + 0.007535901851952076, + 0.0059593007899820805, + -0.01970542035996914, + 0.015707463026046753, + 0.018417375162243843, + 0.00912504829466343, + -0.030678898096084595, + -0.009200324304401875, + -0.0002799303038045764, + -0.0029273757245391607, + 0.01472051814198494, + -0.021512029692530632, + -0.017129329964518547, + -0.07554302364587784, + -0.012478984892368317, + -0.0012044060276821256, + 0.02644674852490425, + -0.012504076585173607, + 0.007293347734957933, + 0.0029733774717897177, + 0.018133001402020454, + -0.0014239592710509896, + 0.005026722326874733, + -0.003874590853229165, + 0.0029921962413936853, + 0.00421123905107379, + 0.03395755961537361, + -0.014753974042832851, + 0.0027914620004594326, + -0.014661970548331738, + 0.001984342699870467, + -0.000529018638189882, + -0.00413387268781662, + 0.002264534356072545, + 0.01965523697435856, + 0.014779065735638142, + 0.00720552634447813, + 0.0139928562566638, + 0.018233370035886765, + -0.03394083306193352, + 0.01157568022608757, + -0.0024527227506041527, + -0.023669924587011337, + 0.007995917461812496, + -0.016384940594434738, + -0.01569073460996151, + 0.0020679819863289595, + 0.04566706344485283, + -0.0017480615060776472, + 0.020073434337973595, + -0.001134358113631606, + 0.03569725528359413, + 0.01157568022608757, + 0.011048752814531326, + 0.01758098229765892, + -0.0055327401496469975, + 0.011358218267560005, + -0.005139635410159826, + -0.02494124136865139, + 0.01748061552643776, + -0.017831901088356972, + -0.014787429943680763, + 0.0006581367924809456, + 0.02049162983894348, + -0.0190363060683012, + 0.0007187753217294812, + -0.014193590730428696, + -0.0034313027281314135, + -0.012537532486021519, + 0.024339038878679276, + -0.01222806703299284, + -0.005319459829479456, + -0.013482656329870224, + 0.06871805340051651, + 0.006862605456262827, + -0.0026492751203477383, + 0.005478374660015106, + -0.02586127445101738, + 0.005227456800639629, + -0.0008348248666152358, + 0.011224395595490932, + 0.03941084071993828, + 0.0027433692011982203, + -0.010329454205930233, + -0.011149119585752487, + 0.009743979200720787, + 0.022599341347813606, + 0.012320070527493954, + 0.00047099386574700475, + 0.01477070152759552, + 0.003337208414450288, + 0.017748260870575905, + 0.001147949486039579, + -0.00751917390152812, + 0.013825577683746815, + 0.00973561592400074, + -0.0010737195843830705, + -0.02519216015934944, + -0.03502814099192619, + -0.0070131560787558556, + -0.00978579930961132, + -0.00020674591360148042, + 0.005260912701487541, + 0.031113822013139725, + 0.030444707721471786, + 0.026998769491910934, + 0.0251754317432642, + -0.002760097151622176, + 0.04309097304940224, + 0.019337408244609833, + 0.01024581491947174, + 0.0019958429038524628, + -0.014904525130987167, + -0.002096210140734911, + 0.0024234489537775517, + 0.006097305566072464, + -0.02673112228512764, + 0.008326292969286442, + -0.003019378986209631, + 0.00981089100241661, + 0.02678130567073822, + -0.01661076582968235, + -0.021277839317917824, + 0.01089820172637701, + 0.00408159801736474, + -0.022599341347813606, + 0.0038474081084132195, + -0.009024681523442268, + -0.007017338182777166, + -0.010664011351764202, + -0.030879633501172066, + -0.015055075287818909, + -0.02519216015934944, + -0.0004759599396493286, + 0.03452630713582039, + -0.00582547765225172, + -0.03516196459531784, + -0.015724189579486847, + 0.010546917095780373, + -0.02179640345275402, + 0.004512340761721134, + -0.024238672107458115, + 0.010839654132723808, + -0.007368623279035091, + -0.011107300408184528, + -0.01681150123476982, + -0.0017836082261055708, + -0.0004093098687008023, + 0.017597710713744164, + 0.03459321707487106, + -0.02233169600367546, + 0.011885145679116249, + -0.02795225754380226, + -0.00608894182369113, + 0.013373925350606441, + 0.004416155628859997, + 0.011667683720588684, + -0.01714605838060379, + -0.0019216131186112761, + 0.007008973974734545, + -0.00254890788346529, + -0.012186246924102306, + -0.018434103578329086, + -0.005168909206986427, + -0.00015355653886217624, + 0.008393204770982265, + -0.03273642435669899, + -0.013691755011677742, + -0.03216767683625221, + -0.003958230372518301, + -0.014302321709692478, + 0.004083689302206039, + -0.011567316018044949, + -0.029374124482274055, + 0.006615869235247374, + 0.016619130969047546, + 0.0050058127380907536, + 0.012579351663589478, + -0.006331495475023985, + -0.0029963781125843525, + 0.006239492446184158, + -0.04232148826122284, + -0.008564664982259274, + -0.004424519371241331, + 0.010103628039360046, + -0.01980578899383545, + -0.00491380924358964, + -0.0028625554405152798, + -0.00941778626292944, + -0.0190363060683012, + -0.0078579131513834, + 0.01830027997493744, + 0.02823663130402565, + -0.011366581544280052, + 0.004449611064046621, + 0.005950936581939459, + 0.030645443126559258, + 0.018751932308077812, + 0.02576090767979622, + -0.013231738470494747, + 0.015874741598963737, + -0.03583107888698578, + -0.003945684526115656, + 0.008133922703564167, + 0.03462667390704155, + -0.009643612429499626, + -0.009007953107357025, + 0.012194611132144928, + 0.006030394230037928, + 0.022064048796892166, + -0.0002807144192047417, + -0.00944287795573473, + -0.02547653391957283, + -0.010229087434709072, + 0.005419827066361904, + 0.01397612877190113, + 0.019136672839522362, + -0.004449611064046621, + -0.0012974548153579235, + -0.045499783009290695, + 0.008489389903843403, + 0.017898812890052795, + -0.006615869235247374, + 0.01007017306983471, + -0.0027370962779968977, + -0.0013162735849618912, + -0.02387065812945366, + 0.004478884860873222, + 0.0034773042425513268, + -0.005465828813612461, + -0.016727861016988754, + 0.0027203685604035854, + -0.027768250554800034, + 0.02039126306772232, + -0.00439524557441473, + -0.008527027443051338, + -0.03328844532370567, + 0.015029983595013618, + 0.0053278240375220776, + 0.0037951336707919836, + -0.04921336844563484, + -0.027634426951408386, + 0.025359438732266426, + 0.01160077191889286, + -0.00523163890466094, + -0.0019163856049999595, + -0.014787429943680763, + 0.012412073090672493, + 0.00314902001991868, + 0.0488119013607502, + -0.0163514856249094, + 0.03012687899172306, + -0.022967353463172913, + -0.020123617723584175, + 0.006289675831794739, + 0.0029566495213657618, + 0.0051647271029651165, + 0.013959400355815887, + 0.0109232934191823, + -0.03606526926159859, + -0.009225415997207165, + 0.006352405529469252, + -0.007552629336714745, + -0.00042995830881409347, + -0.04643654450774193, + -0.005394735373556614, + 0.023904114961624146, + 0.016719497740268707, + 0.00816319603472948, + 0.00037114942097105086, + -0.021528758108615875, + 0.02378701977431774, + 0.003642491763457656, + 0.009275599382817745, + 0.006164216902107, + 0.0008484162390232086, + -0.012269886210560799, + 0.01477070152759552, + -0.0232517272233963, + 0.004403609782457352, + -0.004219603259116411, + 0.006536412052810192, + -0.0215956699103117, + -0.005821296013891697, + 0.0006889788201078773, + -0.02430558390915394, + 0.007535901851952076, + 0.00917523168027401, + 0.015138714574277401, + 0.008639940991997719, + -0.014971436001360416, + 0.003659219713881612, + 0.020642181858420372, + 0.006231128703802824, + -0.032518964260816574, + -0.02243206277489662, + -0.0008123467559926212, + 0.0008363930974155664, + 0.0010998569196090102, + 0.0015441906871274114, + 0.02121092937886715, + 0.014611787162721157, + 0.005030904430896044, + 0.014427781105041504, + 0.004792532417923212, + 0.023134632036089897, + -0.011425129137933254, + 0.02154548652470112, + 0.00356512563303113, + 0.0007417761371470988, + 0.0031615658663213253, + 0.027617700397968292, + 0.005181455053389072, + 0.01714605838060379, + -0.0020763457287102938, + -0.019136672839522362, + -0.006068031769245863, + 0.009509789757430553, + -0.00027470284840092063, + 0.008481025695800781, + -0.01684495620429516, + -0.010329454205930233, + -0.016108930110931396, + 0.012964093126356602, + -0.0048427158035337925, + -0.00976070761680603, + -0.006916970945894718, + -0.0025677266530692577, + 0.006084759719669819, + 0.017764989286661148, + 0.013440837152302265, + -0.006197672802954912, + -0.014578331261873245, + 0.00410878099501133, + -0.025643812492489815, + -0.00982761848717928, + 0.012863725423812866, + -0.019153401255607605, + 0.0007266164757311344, + -0.0027287325356155634, + -0.011308034881949425, + 0.00851029995828867, + -0.02519216015934944, + -0.011642592027783394, + 0.007464808411896229, + -0.006130761466920376, + 0.011918601579964161, + 0.009041409008204937, + -0.007163706701248884, + 0.016527127474546432, + -0.00881558284163475, + 0.003648764919489622, + -0.01339065283536911, + 0.02397102490067482, + 0.03860790655016899, + -0.015347813256084919, + -0.017330065369606018, + 0.022248055785894394, + 0.024088120087981224, + 0.007791001349687576, + 0.0029273757245391607, + 0.018367191776633263, + -0.008527027443051338, + -0.01363320741802454, + -0.002366992412135005, + -0.0005792021984234452, + 0.0018871119245886803, + 0.01125785056501627, + 0.03583107888698578, + 0.015147078782320023, + 0.031264372169971466, + -0.02504160813987255, + -0.010019988752901554, + -0.0006847968325018883, + -0.011993876658380032, + -0.003849499160423875, + 0.01288045383989811, + -0.011266214773058891, + 0.006101487670093775, + 0.024573229253292084, + -0.01193532906472683, + -0.008723580278456211, + -0.024422677233815193, + 0.018383920192718506, + -0.0109232934191823, + 0.030578531324863434, + -0.009066500701010227, + -0.013917581178247929, + -0.018768660724163055, + 0.010630556382238865, + -0.006005302537232637, + -0.0063398596830666065, + -0.0006163171492516994, + -0.004800896160304546, + 0.012579351663589478, + -0.03191675990819931, + -0.014620151370763779, + -0.0030047420877963305, + 0.005089452024549246, + -0.01120766717940569, + 0.021712765097618103, + 0.005737656727433205, + 0.001121812267228961, + 0.009936349466443062, + 0.005704200826585293, + 0.0053278240375220776, + -0.015598731115460396, + -0.006218582391738892, + 0.020508358255028725, + -0.020207256078720093, + 0.028203174471855164, + -0.033589545637369156, + 0.01089820172637701, + -0.012989184819161892, + 0.006431862711906433, + 0.008614848367869854, + 0.014084859751164913, + -0.013775394298136234, + -0.006410953123122454, + 0.0002511792990844697, + 0.011098936200141907, + -6.596396997338161e-5, + 0.0009080092422664165, + -0.02509179338812828, + 0.006022030021995306, + 0.034258659929037094, + -0.007393714971840382, + 0.0042154211550951, + -0.014728882350027561, + 0.013892489485442638, + 0.03951120749115944, + 0.0040376875549554825, + -0.004796714521944523, + -0.0017208787612617016, + -0.00738535076379776, + 0.006226946599781513, + 0.0010230132611468434, + -0.01768134906888008, + -0.009258871898055077, + -0.011441857554018497, + -0.010781106539070606, + -0.007502445951104164, + 0.03275315463542938, + 0.0007177297957241535, + 0.0009477378916926682, + 0.023335367441177368, + 0.003197112586349249, + 0.03563034534454346, + -0.02701549604535103, + 0.023904114961624146, + -0.02561035566031933, + -0.006900242995470762, + -0.012403709813952446, + -0.002486178418621421, + -0.008029373362660408, + -0.002726641483604908, + -0.0004310038057155907, + 0.006553140003234148, + -0.012754994444549084, + 0.0095181530341506, + -0.0022248055320233107, + 0.012002240866422653, + 0.01579110138118267, + 0.006870969198644161, + -0.010956749320030212, + 0.023887386545538902, + -0.01155058853328228, + 0.016359848901629448, + 0.004156873561441898, + -0.0019968885462731123, + 0.00917523168027401, + -0.020023250952363014, + 0.002540543908253312, + 0.006226946599781513, + 0.010346182622015476, + -0.007715726271271706, + 0.016794772818684578, + 0.006461136508733034, + 0.018032634630799294, + 0.023904114961624146, + 0.0006654552416875958, + 0.003937320318073034, + -0.014402688480913639, + -0.004033505450934172, + -0.010254179127514362, + -0.03502814099192619, + 0.02131129615008831, + -0.019303953275084496, + -0.0137335741892457, + -0.014193590730428696, + 0.006155853159725666, + -0.009969805367290974, + -0.012512440793216228, + -0.019688693806529045, + -0.02527579851448536, + -0.006929516792297363, + 0.012654627673327923, + 0.0316825695335865, + 0.004319970495998859, + 0.004470521118491888, + 0.0002697367744985968, + 0.0006717282230965793, + 0.029273757711052895, + -0.02562708407640457, + 0.0173802487552166, + 0.0033267533872276545, + 0.00793318822979927, + 0.0014595058746635914, + -0.02982577681541443, + -0.007895550690591335, + -0.008384840562939644, + 0.017547527328133583, + 0.0009592383285053074, + -0.0001806086365832016, + -0.014084859751164913, + -0.01786535605788231, + -0.006415134761482477, + 0.01058037206530571, + -0.03593144565820694, + 0.0028771921060979366, + 0.017497343942523003, + -0.00017394362657796592, + -0.01689513958990574, + -0.005737656727433205, + 0.005658199079334736, + 0.01046327780932188, + 0.003997958730906248, + -0.014979800209403038, + 0.009024681523442268, + 0.011400037445127964, + -0.00538637163117528, + -0.007878823205828667, + -0.013064459897577763, + 0.01729660853743553, + -0.016886776313185692, + -0.0010141265811398625, + -0.019203584641218185, + 0.005177273415029049, + 0.010454913601279259, + 0.004503976553678513, + 0.017279881983995438, + -0.0007093658787198365, + 0.005766930524259806, + -0.017714805901050568, + -0.0047590765170753, + -0.022917170077562332, + -0.0061767627485096455, + 0.007468990050256252, + 0.004278150852769613, + 0.01257098838686943, + -0.00954324472695589, + -0.0007381169125437737, + -0.005273458547890186, + -0.005691654980182648, + 0.00613912520930171, + -0.011943693272769451, + -0.00642768107354641, + -0.01147531345486641, + 0.10752669721841812, + -0.004280241671949625, + 0.008004281669855118, + 0.008656668476760387, + 0.010354546830058098, + -0.014820885844528675, + -0.018969394266605377, + 0.012713175266981125, + 0.025844546034932137, + -0.006289675831794739, + 0.001588101382367313, + 0.0026513661723583937, + 0.014168499037623405, + 0.0031615658663213253, + -0.01684495620429516, + -0.016167478635907173, + 0.009484697133302689, + 0.004725621081888676, + 0.006490410305559635, + 0.013407381251454353, + 0.016669314354658127, + -0.023218272253870964, + -0.014176862314343452, + 0.02532598190009594, + -0.0017229696968570352, + 0.02828681468963623, + -0.003201294457539916, + -0.007640450727194548, + 0.020073434337973595, + 0.023452462628483772, + 0.016267845407128334, + -0.012236431241035461, + 0.0014427780406549573, + -0.00011925135913770646, + 0.0037240402307361364, + 0.004261422902345657, + 9.481299639446661e-5, + 0.014578331261873245, + 0.0029712864197790623, + -0.0042154211550951, + 0.014845977537333965, + 0.00749408220872283, + 0.02343573421239853, + 0.014176862314343452, + -0.02144511789083481, + 0.008552119135856628, + 0.0019383409526199102, + -0.009367602877318859, + -0.006883515045046806, + -0.00013153588224668056, + -0.002025116700679064, + -0.03556343540549278, + 0.006097305566072464, + 0.005578741896897554, + 0.0016466488596051931, + 0.01089820172637701, + 0.004246785771101713, + -0.019538141787052155, + -0.0006367042078636587, + 0.0027120045851916075, + -0.023502646014094353, + 0.01300591230392456, + -0.016318028792738914, + -0.017831901088356972, + -0.019638510420918465, + 0.010086900554597378, + -0.016928596422076225, + -0.009166868403553963, + -0.0038641360588371754, + -0.01535617746412754, + -0.0164853073656559, + -0.005796203855425119, + 0.0041422368958592415, + -0.02489105798304081, + -0.005587105639278889, + 0.029675226658582687, + 0.001553600188344717, + 0.030812721699476242, + -0.0016759226564317942, + 0.005478374660015106, + 0.015314357355237007, + 0.008092103525996208, + -0.005085269920527935, + -0.017597710713744164, + 0.012604443356394768, + -0.012913908809423447, + 0.003830680390819907, + -0.020642181858420372, + 0.007368623279035091, + -0.011341489851474762, + -0.019922884181141853, + -0.0018306553829461336, + 0.00012049287761328742, + -0.0020502086263149977, + 0.00798755418509245, + -0.014561603777110577, + 0.0026325471699237823, + -0.010597100481390953, + 0.007343531120568514, + 0.009426150470972061, + 0.0019299770938232541, + 0.002573999809101224, + 0.013599751517176628, + -0.007071703672409058, + 0.01079783495515585, + 0.008121376857161522, + 0.021478574723005295, + 0.006314767990261316, + -0.02596164122223854, + -0.0204414464533329, + -0.014235409907996655, + -0.01888575591146946, + 0.002027207752689719, + 0.007669724524021149, + -0.015540183521807194, + 0.005323641933500767, + 0.0037763146683573723, + -0.00424260413274169, + -0.016284573823213577, + -0.00559546984732151, + -0.017179513350129128, + -0.007510809693485498, + 0.0033643911592662334, + -0.008631576783955097, + 0.0036257640458643436, + 0.008949406445026398, + -0.007636268623173237, + -0.005118725821375847, + -0.007159524597227573, + 0.009685431607067585, + 0.008849038742482662, + 0.016184207051992416, + 0.03260260075330734, + -0.009844346903264523, + 0.008054465055465698, + -0.013281921856105328, + -0.007573539391160011, + 0.007983371615409851, + 0.014319049194455147, + -0.024422677233815193, + 0.02295062690973282, + -0.014528147876262665, + 0.01511362288147211, + 0.0176311656832695, + 0.01681150123476982, + 0.007017338182777166, + 0.008823947049677372, + -0.012161155231297016, + 0.014753974042832851, + -0.010764379054307938, + 0.03676784038543701, + -0.021093834191560745, + 0.009919621981680393, + -0.01786535605788231, + 0.0013831850374117494, + 0.018082818016409874, + -0.023452462628483772, + 0.028353724628686905, + -0.0244059506803751, + -0.0019916610326617956, + -0.0013120915973559022, + -0.01692023128271103, + -0.006469500716775656, + 0.0015692824963480234, + -0.011659319512546062, + 0.005808750167489052, + 0.015832921490073204, + 0.023419005796313286, + 0.005465828813612461, + -0.004328334238380194, + -0.015590366907417774, + -0.008606485091149807, + 0.007962462492287159, + -0.025928186252713203, + 0.01952141523361206, + 0.007866277359426022, + 0.008092103525996208, + -0.006013666279613972, + -0.015046712011098862, + 0.01327355857938528, + -0.011366581544280052, + 9.88642786978744e-5, + 0.02813626267015934, + 0.006536412052810192, + -0.008547937497496605, + 0.0016727861948311329, + 0.022448791190981865, + -0.00946796964854002, + 0.004763258621096611, + -0.008849038742482662, + -0.001985388109460473, + -0.008221743628382683, + -0.0018317009089514613, + -0.01157568022608757, + -0.018049363046884537, + -0.026045281440019608, + 0.016443487256765366, + -0.0064987740479409695, + 0.007669724524021149, + -0.0016403759364038706, + -0.02693185769021511, + 0.009601792320609093, + 0.0008395295590162277, + 0.012052424252033234, + -0.01191023737192154, + -0.005110361613333225, + -0.016778044402599335, + -0.018685022369027138, + -0.015648914501070976, + 0.007945734076201916, + -0.027935529127717018, + -0.03593144565820694, + 0.010647283867001534, + 0.016953688114881516, + -0.012671355158090591, + 0.0005896571092307568, + -0.008681760169565678, + 0.020541813224554062, + -0.004060688428580761, + 0.009091592393815517, + 0.01009526476264, + 0.008941042236983776, + 0.0006304312846623361, + 0.0033016616944223642, + 0.012746630236506462, + -0.0048719896003603935, + -0.0008745535160414875, + 0.015297629870474339, + 0.0129055455327034, + 0.014862705022096634, + 0.016192570328712463, + -0.005260912701487541, + -0.008092103525996208, + 0.01883557252585888, + -0.015908196568489075, + 0.022398605942726135, + 0.00908322911709547, + -0.011032024398446083, + 0.010061808861792088, + 0.0041422368958592415, + -0.028972655534744263, + -0.004851080011576414, + -0.01724642515182495, + -0.00608894182369113, + 0.005904935300350189, + -0.006720418576151133, + -0.0032932977192103863, + -0.003577671479433775, + -0.003299570642411709, + -3.567739258869551e-5, + -0.023034265264868736, + 0.00030345385312102735, + -0.011441857554018497, + 0.007807729300111532, + 0.01477070152759552, + 0.0068960608914494514, + -0.007962462492287159, + -0.001871429500170052, + -0.016502035781741142, + -0.03136473894119263, + -0.006185126956552267, + 0.010546917095780373, + 0.002062754472717643, + -0.00543655501678586, + -0.00044982266263104975, + 0.019002851098775864, + -0.025928186252713203, + -0.00315947481431067, + 0.011057117022573948, + -0.007393714971840382, + 0.014879432506859303, + -0.001955068903043866, + 0.006193490698933601, + 0.009409422054886818, + -0.0013622752157971263, + 0.006247856188565493, + -0.013474292121827602, + -0.010045081377029419, + -0.0077324542216956615, + -0.00835556723177433, + 0.005812931805849075, + -0.014670334756374359, + 0.014302321709692478, + -0.004058597609400749, + 0.0026220923755317926, + -0.032284773886203766, + 0.009534881450235844, + 0.026747850701212883, + -0.00912504829466343, + 0.019789060577750206, + -0.003540033707395196, + -0.011885145679116249, + -0.004311606287956238, + -0.02430558390915394, + 0.01401794794946909, + 0.031030183658003807, + 0.006385860964655876, + -0.0040669613517820835, + 0.017447160556912422, + 0.005265094339847565, + -0.02164585329592228, + -0.019839243963360786, + -0.009618520736694336, + -0.009183595888316631, + 0.0052985502406954765, + -0.007075885310769081, + 0.020608725026249886, + 0.017948996275663376, + -0.013750302605330944, + 0.017179513350129128, + -0.006197672802954912, + -0.0016456034500151873, + 0.010329454205930233, + -0.0035755804274231195, + -0.006440226919949055, + -0.008606485091149807, + 0.0009592383285053074, + 0.022097505629062653, + -0.005035086534917355, + 0.013984492048621178, + -0.0007522310479544103, + 0.010831290856003761, + 0.01263789925724268, + -0.0048134420067071915, + 0.0029231938533484936, + -0.017112603411078453, + 0.005156363360583782, + -0.01116584800183773, + -0.0008353475714102387, + -0.04570051655173302, + 0.03007669560611248, + 0.010622192174196243, + 0.004570888355374336, + 0.005771112162619829, + -0.01012035645544529, + 0.019303953275084496, + -0.0062813120894134045, + -0.01225315872579813, + -0.002850009361281991, + 0.01729660853743553, + -0.017447160556912422, + -0.0019038397585973144, + -0.0026660028379410505, + -0.009275599382817745, + -0.0075986310839653015, + 0.02077600359916687, + -0.0073518953286111355, + -0.021629124879837036, + 0.005181455053389072, + 0.011592407710850239, + -0.004424519371241331, + -0.006774784065783024, + 0.001032422762364149, + 0.011023661121726036, + -0.00421123905107379, + -0.001553600188344717, + 0.012052424252033234, + 0.016393303871154785, + 0.009091592393815517, + -0.018567927181720734, + -0.002465268597006798, + 0.018802115693688393, + -0.008999589830636978, + -0.0037198581267148256, + 0.005842205602675676, + -0.006013666279613972, + -0.0011469039600342512, + 0.009710523299872875, + -0.03432557359337807, + 0.028019167482852936, + -0.004809260368347168, + -0.025058336555957794, + -0.024054665118455887, + -0.0009890347719192505, + -0.02102692238986492, + 0.010162175633013248, + -0.008656668476760387, + 0.020374534651637077, + -0.009041409008204937, + -0.00941778626292944, + 0.0380726121366024, + 0.007343531120568514, + 0.004144327715039253, + -0.009359238669276237, + 0.005302732344716787, + 0.005758566316217184, + 0.00879049114882946, + 0.01883557252585888, + 0.005700018722563982, + -0.006331495475023985, + -0.002787279896438122, + 0.005821296013891697, + 0.0018724750261753798, + 0.0013005912769585848, + -0.009911257773637772, + 0.02561035566031933, + -0.030779264867305756, + 0.013474292121827602, + 0.0031448379158973694, + 0.002147439168766141, + 0.0030089241918176413, + 0.004033505450934172, + 0.007632086984813213, + -0.004123418126255274, + -3.6200137401465327e-5, + -0.011425129137933254, + 0.0041694194078445435, + 0.018718477338552475, + 0.023619741201400757, + -0.003945684526115656, + -0.00527764018625021, + 0.009927986189723015, + -0.014486327767372131, + 0.007100977469235659, + 0.025024881586432457, + -0.006063849665224552, + -0.017413703724741936, + -0.00559546984732151, + 0.0016675586812198162, + -0.0031824756879359484, + 0.008234289474785328, + -0.008573029190301895, + 0.01055528037250042, + -0.0028123718220740557, + 0.008915950544178486, + -0.008000100031495094, + 0.0436931736767292, + 0.007259891834110022, + 0.006130761466920376, + -0.003912228625267744, + 0.015155442990362644, + -0.022749891504645348, + -0.02338555082678795, + 0.009802526794373989, + -0.018032634630799294, + -0.01602529175579548, + 0.01995633915066719, + -0.008798855356872082, + -0.005587105639278889, + 0.017212970182299614, + -0.02087637223303318, + -0.007389532867819071, + -0.0018306553829461336, + 0.001634103013202548, + 0.0012159064644947648, + -0.01009526476264, + 0.0025886367075145245, + 0.010672375559806824, + -0.0009843300795182586, + 0.0026743668131530285, + -0.007063339464366436, + -0.017764989286661148, + -0.004374335985630751, + 0.009267235174775124, + -0.03138146921992302, + -0.0069964281283319, + 0.011400037445127964, + -0.008238472044467926, + 0.011860053986310959, + -0.013181555084884167, + -0.01079783495515585, + -0.002827008720487356, + 0.006578231696039438, + -0.005248366389423609, + 0.008982861414551735, + 0.0176311656832695, + 0.01694532297551632, + 0.009476333856582642, + -0.010061808861792088, + 0.018032634630799294, + -0.00941778626292944, + 0.013415745459496975, + 0.019973067566752434, + -0.008054465055465698, + 0.004054415505379438, + 0.018852300941944122, + 0.004432883113622665, + 0.002967104548588395, + -0.006469500716775656, + -0.0009540108731016517, + -0.010613827966153622, + -0.005206546746194363, + -0.009660339914262295, + -0.00978579930961132, + 0.030879633501172066, + -0.012487349100410938, + 0.0036090360954403877, + 0.009752343408763409, + -0.005235820543020964, + 0.0070591578260064125, + 0.015138714574277401, + 0.029558131471276283, + 0.012311706319451332, + 0.004052324686199427, + 0.005465828813612461, + -0.012186246924102306, + 0.01162586361169815, + 0.012345162220299244, + 0.012219702824950218, + 0.0023565376177430153, + 0.016769681125879288, + -0.0036634018179029226, + -0.008493571542203426, + -0.007431352511048317, + 0.006456954404711723, + 0.012345162220299244, + 0.0023272638209164143, + 0.007949916645884514, + 0.012261522933840752, + 0.010270906612277031, + 0.015908196568489075, + -0.0053738257847726345, + -0.029524676501750946, + 0.008389022201299667, + -0.003701039357110858, + 0.026262743398547173, + 0.00944287795573473, + -0.0049472651444375515, + 0.00713025126606226, + -0.007159524597227573, + -0.007686452474445105, + -0.0388420931994915, + 0.004754894878715277, + 0.01653549075126648, + 0.006599141284823418, + -0.020943282172083855, + 0.019237041473388672, + 0.006055485922843218, + -0.001749107032082975, + -0.007949916645884514, + 0.000596975558437407, + 0.008832311257719994, + -0.008656668476760387, + -0.0038076795171946287, + 0.022833531722426414, + 0.027918800711631775, + 0.023452462628483772, + 0.023285184055566788, + 0.02847081981599331, + -0.01409322302788496, + 0.028119536116719246, + 0.007042429875582457, + -0.0006063850014470518, + -0.01128294225782156, + 0.003552579553797841, + -0.007460626307874918, + 0.0011709503596648574, + 0.008518663235008717, + 0.003468940267339349, + 0.0015044620959088206, + -0.020943282172083855, + 0.0009414649684913456, + 0.015180534683167934, + 0.0015473271487280726, + 0.020508358255028725, + -0.026647483929991722, + 0.00954324472695589, + 0.003983322065323591, + -0.0014866887358948588, + 0.021277839317917824, + -0.005737656727433205, + 0.005984392482787371, + -0.0031992036383599043, + -0.005863115657120943, + -0.011701139621436596, + 0.006189308594912291, + 0.015674006193876266, + -0.029524676501750946, + 0.003594399197027087, + 0.01640166901051998, + -0.02082618698477745, + -0.012044060043990612, + -0.007050793617963791, + -0.004495612811297178, + -0.0029817414470016956, + -0.006937880534678698, + -0.023184815421700478, + -0.013056095689535141, + 0.001147949486039579, + -0.016393303871154785, + 0.008723580278456211, + -0.01125785056501627, + -0.020642181858420372, + -0.011274578981101513, + -0.004629435949027538, + 0.009618520736694336, + 0.0010873109567910433, + 0.002168348990380764, + 0.03676784038543701, + -0.02223132736980915, + 0.026647483929991722, + -0.00946796964854002, + -0.00941778626292944, + -0.0018954757833853364, + 0.013925944454967976, + 0.008631576783955097, + 0.00047700543655082583, + 0.0011144938180223107, + -0.03158220276236534, + -0.007765909656882286, + -0.030879633501172066, + 0.01825009658932686, + 0.020357808098196983, + 0.004018868785351515, + -0.011742958799004555, + 0.008464298211038113, + 0.010764379054307938, + -0.009743979200720787, + -0.005035086534917355, + -0.0008583483868278563, + 0.015414724126458168, + -0.023954298347234726, + -0.012027332559227943, + -0.021629124879837036, + 0.008046101778745651, + -0.0137335741892457, + -0.0049179913476109505, + 0.001350774778984487, + 0.029993055388331413, + -0.02271643653512001, + -0.00037245629937388003, + 0.010270906612277031, + 0.0025635447818785906, + 0.0030883813742548227, + -0.006829149555414915, + -0.008832311257719994, + 0.0041694194078445435, + 0.001681150053627789, + 0.019889427348971367, + 0.006569867487996817, + 0.021946953609585762, + 0.017346791923046112, + -0.022448791190981865, + -0.018567927181720734, + 0.002143257297575474, + 0.01681150123476982, + -0.0024318129289895296, + -0.0020711184479296207, + 0.002155803143978119, + -0.02659730054438114, + -0.0014856432098895311, + -0.006164216902107, + -0.0049932668916881084, + -0.003065380733460188, + 0.014636878855526447, + -0.0008118240511976182, + -0.0018557471921667457, + 0.011015296913683414, + -0.008104649372398853, + -0.012027332559227943, + -0.017798444256186485, + 0.01995633915066719, + -0.02082618698477745, + -0.015205626375973225, + -0.0006795693770982325, + 0.0016205116407945752, + -0.0014406871050596237, + -0.010672375559806824, + 0.02499142475426197, + -0.0014385960530489683, + -0.03723622113466263, + -0.024673596024513245, + 0.0031824756879359484, + 0.010421457700431347, + -0.0053278240375220776, + -0.020893098786473274, + -0.003987504169344902, + 0.0037324042059481144, + -0.008849038742482662, + -0.007565175648778677, + 0.017263153567910194, + -0.006461136508733034, + -0.011742958799004555, + 0.01295572891831398, + 0.0013664572034031153, + 0.021394934505224228, + -0.004263513721525669, + -0.018199913203716278, + 0.0036383098922669888, + -0.012102607637643814, + -0.006180944852530956, + -0.0002820212976075709, + 0.001189769129268825, + -0.021378207951784134, + -1.2701086234301329e-5, + 0.0017470160964876413, + 0.013014276511967182, + -0.005762748420238495, + -0.0015891469083726406, + 0.005173091311007738, + -0.005101997870951891, + 0.008284473791718483, + -0.014436144381761551, + -0.03211749345064163, + -0.009861074388027191, + -0.001629921025596559, + 0.010747651569545269, + -0.02144511789083481, + -0.006845877505838871, + -0.002247806405648589, + -0.018802115693688393, + 0.0139928562566638, + -0.002053345087915659, + 0.009384330362081528, + -0.0036341280210763216, + -0.01303100399672985, + 0.009534881450235844, + -0.0005859978846274316, + 0.0036905845627188683, + -0.005361279472708702, + 0.01676131784915924, + -0.013775394298136234, + -0.009978169575333595, + 0.00915013998746872, + -0.0011929055908694863, + -0.039879221469163895, + -0.014879432506859303, + 0.026697667315602303, + -0.016184207051992416, + 0.0032849337439984083, + 0.010689103975892067, + -0.003721949178725481, + -0.012470620684325695, + 0.007870458997786045, + -0.008639940991997719, + -0.025509988889098167, + 0.004809260368347168, + 0.009601792320609093, + -0.005131271667778492, + -0.01022072322666645, + 0.02164585329592228, + 0.0005318937473930418, + -0.01220297534018755, + 0.024523045867681503, + 4.218721187498886e-6, + -0.007711544167250395, + 0.006921152584254742, + -0.0005031427135691047, + -0.020558541640639305, + 0.016568947583436966, + -0.009819255210459232, + -0.023419005796313286, + -0.020541813224554062, + -0.0020177983678877354, + 0.015807829797267914, + -0.014427781105041504, + -0.011324762366712093, + 0.0028395545668900013, + -0.00523163890466094, + 0.017179513350129128, + -0.002908556954935193, + -0.013424108736217022, + 0.015247445553541183, + -0.0070006102323532104, + 0.02169603668153286, + 0.012462257407605648, + 0.0029441036749631166, + -0.0030047420877963305, + 0.01053018867969513, + 0.009283963590860367, + 0.0051354533061385155, + 0.01707078330218792, + 0.03414156660437584, + 0.01007017306983471, + 0.010931657627224922, + 0.013181555084884167, + 0.014118315652012825, + -0.005470010917633772, + -0.011090571992099285, + 0.02935739792883396, + -0.0022373516112565994, + 0.00634404132142663, + -0.008941042236983776, + -0.02683149091899395, + -0.010705831460654736, + -0.0024234489537775517, + -0.00908322911709547, + -0.002594909630715847, + 0.005574559792876244, + 0.016853321343660355, + 0.0015358268283307552, + -0.019170129671692848, + -0.03128110244870186, + -0.0014166408218443394, + -0.016083838418126106, + -0.00269318581558764, + 0.02286698669195175, + 0.01773153245449066, + 0.007034065667539835, + 0.03235168382525444, + 0.002705731661990285, + -0.013549568131566048, + -0.00842247810214758, + 0.003640400944277644, + 0.025928186252713203, + -0.013072824105620384, + -0.001121812267228961, + -0.020223984494805336, + -0.008054465055465698, + -0.006820785813033581, + -0.0019822516478598118, + -0.01985597237944603, + 0.002371174283325672, + -0.018818844109773636, + -0.014603422954678535, + 0.00949306134134531, + -0.009409422054886818, + 0.00713025126606226, + 0.019872698932886124, + -0.018685022369027138, + -0.011993876658380032, + -0.02368665300309658, + 0.005101997870951891, + 0.006327313836663961, + -0.013800485990941525, + -0.001583919394761324, + -0.012127699330449104, + -0.012119336053729057, + -0.0095181530341506, + 0.008857402950525284, + -0.0012796814553439617, + 0.00816319603472948, + 0.04325824975967407, + -0.011993876658380032, + -0.023117905482649803, + 0.012537532486021519, + 0.006507138255983591, + 0.001224270323291421, + -0.00946796964854002, + 0.0062645841389894485, + -0.005787840113043785, + -0.001858883653767407, + -0.002400448080152273, + 0.007648814935237169, + 0.016334757208824158, + 0.0004662891442421824, + -0.008121376857161522, + 0.010638919658958912, + 0.03007669560611248, + 0.005700018722563982, + 0.01544818002730608, + -0.0095181530341506, + 0.006820785813033581, + -0.0002079220867017284, + 0.01189350988715887, + 0.008882494643330574, + 0.0015734644839540124, + -0.01160077191889286, + 0.012386981397867203, + -0.012796814553439617, + 0.02382047474384308, + 0.00442033726722002, + 0.013499384745955467, + 0.0095181530341506, + -0.007397896610200405, + 0.0016424668719992042, + -0.01077274326235056, + -0.013900852762162685, + 0.0022415334824472666, + -0.013649934902787209, + 0.03330517187714577, + 0.019487958401441574, + -0.016167478635907173, + -0.02557690069079399, + 0.008322111330926418, + -0.010806198231875896, + -0.030929816886782646, + 0.0027663700748234987, + -0.005147999618202448, + -0.016493672505021095, + -0.006097305566072464, + 0.001904885284602642, + 0.0015222354559227824, + 0.0010643101995810866, + -0.01985597237944603, + -0.0007266164757311344, + 0.004073234274983406, + -0.013566295616328716, + 0.0032326593063771725, + 0.011349854059517384, + -0.021294567734003067, + -0.008146468549966812, + 0.013900852762162685, + 0.016108930110931396, + -0.007314257323741913, + -0.014979800209403038, + 0.034693583846092224, + -0.013808850198984146, + -0.003234750358387828, + 0.023653196170926094, + 0.017748260870575905, + 0.005365461576730013, + 0.0035588524769991636, + 0.003918501548469067, + 0.011885145679116249, + -0.01120766717940569, + 0.025794362649321556, + 0.012964093126356602, + -0.014477964490652084, + 0.029407581314444542, + 0.011408401653170586, + -0.01162586361169815, + -0.014687062241137028, + 0.007937370799481869, + -0.003586035454645753, + 0.014544875361025333, + -0.04800896346569061, + 0.00179510866291821, + -0.017547527328133583, + 0.030478164553642273, + -0.015757646411657333, + 0.0034919411409646273, + 0.0014542784774675965, + 0.0006335677462629974, + -0.012110971845686436, + 0.017932267859578133, + -0.003107200376689434, + -0.010212359949946404, + 0.006490410305559635, + -0.0040962351486086845, + -0.011057117022573948, + 0.007050793617963791, + 0.010036717168986797, + 0.0019749330822378397, + 0.02509179338812828, + 0.007941552437841892, + -0.006758056115359068, + -0.022013865411281586, + 0.005976028740406036, + -0.011993876658380032, + 0.019839243963360786, + -0.006929516792297363, + 0.028303541243076324, + -0.014126678928732872, + -0.013440837152302265, + 0.016502035781741142, + -0.0010366046335548162, + 0.0001416640734532848, + 0.0055160121992230415, + 0.0025823635514825583, + 0.013800485990941525, + 0.001655012834817171, + -0.004146418534219265, + -0.02397102490067482, + 0.000982239143922925, + -0.011508768424391747, + -0.0027161864563822746, + -0.010990205220878124, + -0.015749281272292137, + -0.0035546706058084965, + -0.009727251715958118, + 0.004863625857979059, + 0.012654627673327923, + 0.007510809693485498, + -0.004466339014470577, + -0.0049179913476109505, + 0.003531669732183218, + -0.014026312157511711, + -0.02330191060900688, + -0.015648914501070976, + 0.009727251715958118, + -0.020307624712586403, + 0.01883557252585888, + -0.02407139353454113, + 0.017413703724741936, + -0.015565275214612484, + 0.00679151201620698, + -0.022649524733424187, + -0.012069151736795902, + 0.023887386545538902, + 0.01535617746412754, + 0.010321090929210186, + -0.012211338616907597, + 0.005700018722563982, + 0.008213380351662636, + 0.01501325611025095, + -0.030595259740948677, + 0.011542224325239658, + -0.005419827066361904, + 0.012018968351185322, + -0.007874640636146069, + -0.004374335985630751, + 0.0033351173624396324, + -0.025075064972043037, + 0.00793318822979927, + 0.01014544814825058, + -0.0021662581712007523, + -0.005578741896897554, + 0.0040962351486086845, + -0.022214600816369057, + -0.0014417326310649514, + -0.015239082276821136, + -0.0014459145022556186, + 0.005495102610439062, + -0.01694532297551632, + -0.019053034484386444, + 0.015289265662431717, + 0.020692365244030952, + -0.020893098786473274, + -0.0028897381853312254, + 0.009777435101568699, + 0.016309665516018867, + -0.022064048796892166, + 0.009727251715958118, + 0.015615458600223064, + -0.013900852762162685, + 0.0008060738327912986, + -0.0023607194889336824, + -0.024807419627904892, + 0.015264173969626427, + 0.02082618698477745, + 0.0013005912769585848, + -0.03417501971125603, + 0.00772409001365304, + -0.025459805503487587, + 0.02251570113003254, + 0.022197872400283813, + -0.009802526794373989, + 0.0017511979676783085, + 0.0016581492964178324, + 0.0032159313559532166, + 0.011408401653170586, + 0.006080577615648508, + -0.009944713674485683, + 0.014494691975414753, + 0.009526517242193222, + 0.005704200826585293, + -0.011098936200141907, + -0.021712765097618103, + -0.004378517623990774, + 0.01663585752248764, + -0.001609011203981936, + -0.003146928967908025, + -0.00561637943610549, + -0.005189819261431694, + 0.004221694078296423, + -0.005879843607544899, + 0.025108519941568375, + 0.005787840113043785, + 0.007636268623173237, + 0.002896011108532548, + -0.006072213873267174, + 0.0073811691254377365, + 0.011358218267560005, + -0.01186841819435358, + -0.014168499037623405, + -0.0063105858862400055, + -0.012018968351185322, + 0.017664622515439987, + -0.0076739066280424595, + -0.019605053588747978, + -0.018367191776633263, + -0.006373315118253231, + -0.006306403782218695, + -0.001224270323291421, + -0.002617910271510482, + -0.0063565876334905624, + 0.021528758108615875, + 0.03947775438427925, + 0.008004281669855118, + -0.0015588275855407119, + 0.014444508589804173, + 0.00686678709462285, + -0.021144017577171326, + -0.0011301761260256171, + 0.010061808861792088, + -0.012537532486021519, + 0.026814762502908707, + -0.0075986310839653015, + 0.03084617666900158, + 0.0029942872934043407, + 0.030729081481695175, + 0.003280751872807741, + 0.011885145679116249, + 0.0034752131905406713, + -0.0017208787612617016, + 0.00043152656871825457, + 0.01268808264285326, + -0.01472051814198494, + 0.0073811691254377365, + 0.03156547620892525, + -0.0125877158716321, + -0.005829659756273031, + -0.015280901454389095, + -0.010061808861792088, + -0.005511830560863018, + 0.000787777709774673, + -0.0012347252340987325, + 0.010254179127514362, + -0.014912888407707214, + 0.0006189309060573578, + 0.009158504195511341, + -0.012345162220299244, + 0.011132392100989819, + 0.0045792520977556705, + -0.01215279195457697, + 0.019538141787052155, + 0.00408787140622735, + 0.025677267462015152, + -0.005779476370662451, + -0.011734594590961933, + 0.007841184735298157, + -0.004280241671949625, + -0.004591797944158316, + -0.010028352960944176, + 0.010279270820319653, + 0.0007083204109221697, + 0.0039059557020664215, + 0.0095181530341506, + -0.013524476438760757, + -0.027918800711631775, + -0.019889427348971367, + -0.03161565959453583, + -0.006030394230037928, + -0.0049179913476109505, + 0.01549836341291666, + -0.00985271017998457, + 0.0045667062513530254, + -0.00769899832084775, + -0.002636729273945093, + -0.021963682025671005, + -2.2804779291618615e-5, + -0.0023523555137217045, + -0.004997448530048132, + -0.007222254294902086, + 0.009242143481969833, + -0.0005426100105978549, + -0.020023250952363014, + 0.0022728980984538794, + 0.017313336953520775, + -0.004955628886818886, + -0.008564664982259274, + 0.0014009583974257112, + -0.015883104875683784, + 0.012947364710271358, + 0.011734594590961933, + 0.0023899932857602835, + -0.039343930780887604, + 0.015832921490073204, + -0.038340259343385696, + 0.02241533435881138, + -0.007560993544757366, + 0.009559973143041134, + 4.1950341255869716e-5, + 0.0009796253871172667, + -0.010605464689433575, + 0.004805078264325857, + 0.009794162586331367, + -0.0006921152817085385, + 0.0005318937473930418, + -0.009409422054886818, + -0.006218582391738892, + 0.028939200565218925, + -0.014477964490652084, + -0.0012817723909392953, + 0.009041409008204937, + -0.013675026595592499, + 0.01962178200483322, + -0.018149729818105698, + 0.018735205754637718, + -0.010747651569545269, + 0.014436144381761551, + -0.019437775015830994, + 0.0029106480069458485, + 0.003243114100769162, + -0.003048652783036232, + 0.0012085880152881145, + 0.007807729300111532, + -0.00012591636914294213, + -0.019253768026828766, + -0.005055996123701334, + -0.0164853073656559, + 0.012478984892368317, + 0.008075375109910965, + 0.007841184735298157, + 0.006030394230037928, + 0.015339449048042297, + -0.007163706701248884, + -0.010162175633013248, + -0.020090162754058838, + -0.006172581110149622, + -0.02678130567073822, + 0.002049162983894348, + -0.0042007844895124435, + 0.019789060577750206, + -0.01668604277074337, + -0.00871521607041359, + -0.011533861048519611, + 0.005214910954236984, + -0.0074104429222643375, + 0.014628514647483826, + -0.0034145747777074575, + -0.008807219564914703, + -0.0016968324780464172, + -0.002565635833889246, + -0.003374846186488867, + -0.012470620684325695, + 0.008527027443051338, + -0.010622192174196243, + 0.01586637645959854, + -0.02368665300309658, + -0.004039778374135494, + -0.00032697743154130876, + 0.010128720663487911, + -0.011826598085463047, + -0.0015996018191799521, + -0.00876539945602417, + 0.00944287795573473, + -0.0023920841049402952, + 0.024623412638902664, + -0.016468578949570656, + -0.006599141284823418, + -0.008288655430078506, + 0.009844346903264523, + -0.007903914898633957, + 0.016778044402599335, + 0.015657277777791023, + -0.002065890934318304, + 0.017748260870575905, + 0.00261581945233047, + -0.004796714521944523, + 0.02935739792883396, + 0.006093123462051153, + -0.022348422557115555, + 0.010295999236404896, + 0.007364441175013781, + 0.005185637157410383, + -0.014879432506859303, + 0.004407791420817375, + 0.014201954938471317, + -0.013198282569646835, + -0.0006210218416526914, + -0.0013612296897917986, + -0.004855261649936438, + -0.0157158263027668, + 0.01433577761054039, + 0.008656668476760387, + 0.023552829399704933, + -0.0139928562566638, + -0.00013983447570353746, + -0.02537616528570652, + -0.006448590662330389, + 0.013106280006468296, + -0.0005980210262350738, + -0.031414926052093506, + -0.0007762773311696947, + 0.003701039357110858, + -0.021177472546696663, + -0.010521825402975082, + -0.0204414464533329, + 0.029039567336440086, + -0.014871069230139256, + 0.011667683720588684, + 0.013641571626067162, + 0.0073351673781871796, + -0.007970825769007206, + -0.016594039276242256, + -0.00978579930961132, + -0.006461136508733034, + 0.014871069230139256, + 0.0027078227140009403, + -0.006348223425447941, + 0.01285536214709282, + 0.035964902490377426, + -0.009794162586331367, + -0.011851689778268337, + 0.012110971845686436, + -0.027935529127717018, + 0.010413093492388725, + 0.008991225622594357, + -0.014026312157511711, + -0.005089452024549246, + 0.012412073090672493, + -0.015272537246346474, + -0.010839654132723808, + -0.028320269659161568, + 0.01196042075753212, + 0.007975008338689804, + -0.006473682355135679, + 0.005081087816506624, + -0.005340369883924723, + -0.002636729273945093, + -0.014486327767372131, + -0.022298239171504974, + 0.005833841860294342, + 0.005704200826585293, + 0.060989782214164734, + 0.04004650190472603, + -0.005127089563757181, + 0.006109851412475109, + 0.008083739317953587, + -0.03583107888698578, + 0.01077274326235056, + -0.012922273017466068, + -0.009342511184513569, + -0.010931657627224922, + 0.008731943555176258, + -0.0003421370347496122, + 0.013967764563858509, + 0.019738877192139626, + -0.016719497740268707, + 0.0004848466196563095, + 0.00369267538189888, + -0.014009583741426468, + 0.0023188998457044363, + 0.00718043465167284, + -0.00908322911709547, + -0.012336798012256622, + -0.007573539391160011, + 0.005198183003813028, + 0.009317418560385704, + 0.015230718068778515, + -0.0003128632961306721, + -0.01165095530450344, + -0.01893593929708004, + 0.001910112681798637, + 0.03713585436344147, + -0.003243114100769162, + -0.023853931576013565, + 0.01082292664796114, + -9.069637599168345e-5, + 0.010655648075044155, + 0.0012524985941126943, + 0.012002240866422653, + -0.006540593691170216, + -0.007586085237562656, + -0.022482246160507202, + -0.02330191060900688, + 0.009309055283665657, + -0.019337408244609833, + -0.016727861016988754, + 0.008999589830636978, + 0.00035886489786207676, + 0.0006053394754417241, + 0.004207057412713766, + -0.011742958799004555, + -0.005030904430896044, + -0.002837463514879346, + -0.0016612857580184937, + 0.004779986571520567, + -0.010086900554597378, + 0.030277429148554802, + 0.005553650204092264, + -0.04309097304940224, + -0.00559546984732151, + -0.006189308594912291, + 0.012027332559227943, + 0.008133922703564167, + 0.020608725026249886, + 0.003839044366031885, + -0.001410367782227695, + 0.02920684590935707, + -0.003830680390819907, + -0.005524376407265663, + 0.003370664082467556, + 0.013566295616328716, + 0.023318639025092125, + -0.02803589589893818, + -0.025108519941568375, + -0.0011207667412236333, + -0.02509179338812828, + -0.023753562942147255, + -0.006444408558309078, + -0.022013865411281586, + -0.004541614558547735, + 0.007837003096938133, + 0.018049363046884537, + -0.012562624178826809, + -0.0013863214990124106, + -0.009401057846844196, + -0.013465928845107555, + -0.005645653232932091, + -0.015548547729849815, + 0.007368623279035091, + -0.0011531769996508956, + -0.0012420436833053827, + -0.011784778907895088, + 0.006314767990261316, + -0.01840064860880375, + 0.0066325971856713295, + 0.005766930524259806, + -0.014076495543122292, + -0.00783282145857811, + 0.005754384212195873, + 0.006226946599781513, + 0.015213990584015846, + 0.0004759599396493286, + 0.0011960420524701476, + 0.0029399218037724495, + 0.024907786399126053, + -0.0008792582084424794, + -0.020324351266026497, + 0.02039126306772232, + 0.008656668476760387, + -0.005177273415029049, + 0.03670092672109604, + -0.007966644130647182, + 0.00613912520930171, + 0.002967104548588395, + 0.013875761069357395, + 0.0032033855095505714, + 0.0215956699103117, + -0.009961442090570927, + -0.020859643816947937, + 0.028972655534744263, + 0.03432557359337807, + -0.029240302741527557, + 0.022549157962203026, + 0.017614439129829407, + -0.007807729300111532, + 0.0035044869873672724, + -0.02106037735939026, + -0.0010737195843830705, + 0.03166584298014641, + -0.01022072322666645, + -0.025409622117877007, + 0.03021051734685898, + 0.01288045383989811, + -0.007715726271271706, + -0.013909216970205307, + 0.00908322911709547, + -0.010697467252612114, + 0.00227708020247519, + 0.01409322302788496, + 0.010254179127514362, + -0.015021619386970997, + -0.00663677928969264, + 0.03850753605365753, + 0.02141166292130947, + -0.010480005294084549, + 0.014076495543122292, + -0.00036513785016722977, + -0.00021354161435738206, + 0.023803746327757835, + 0.004115053918212652, + 0.006189308594912291, + 0.002607455477118492, + -0.008773763664066792, + 0.0051354533061385155, + 0.0075400834903120995, + 0.005260912701487541, + -0.00021301886590663344, + -0.013056095689535141, + 0.014059768058359623, + 0.005340369883924723, + -0.011082208715379238, + -0.011107300408184528, + 0.006958790589123964, + 0.0064527727663517, + 0.029039567336440086, + 0.0013727301266044378, + -0.011249487288296223, + -0.0081757428124547, + -0.0030883813742548227, + 0.0039812312461435795, + -0.0030925634782761335, + 0.0025384530890733004, + -0.0024924513418227434, + 0.0014124588342383504, + 0.00512290745973587, + -0.006030394230037928, + -0.005737656727433205, + -0.015966743230819702, + -0.01773153245449066, + -0.007707362063229084, + 0.006808239500969648, + 0.03342226892709732, + 0.01801590621471405, + 0.013323741964995861, + -0.004121326841413975, + -0.01426050253212452, + 0.006883515045046806, + -0.003726131282746792, + -0.004922173451632261, + 0.013716846704483032, + -0.006256220396608114, + 0.02198041044175625, + 0.0031239280942827463, + 0.007234800141304731, + -0.017162786796689034, + -0.00941778626292944, + 0.0015640550991520286, + 0.0038181343115866184, + 0.008179924450814724, + -0.028002440929412842, + 0.0004187192826066166, + -0.005143817514181137, + -0.007464808411896229, + 0.010404730215668678, + 0.004290696699172258 + ], + "0e75adab-8998-455f-b73c-4e13bcb189ab": [ + -0.03223711997270584, + -0.004458749666810036, + -0.011599934659898281, + -0.0011057060910388827, + -0.005532522220164537, + -0.03589353337883949, + -0.022577160969376564, + 0.029027778655290604, + -0.036755744367837906, + 0.04547365754842758, + 0.010713772848248482, + 0.014290353283286095, + -0.013978999108076096, + -0.03707508370280266, + -0.009739793837070465, + 0.03678767755627632, + -0.03321110084652901, + 0.038991108536720276, + 0.005452687852084637, + -0.0063707828521728516, + 0.07734353840351105, + 0.024557054042816162, + -0.04560139402747154, + 0.01947958767414093, + -0.012374327518045902, + -0.018425773829221725, + -0.005831900984048843, + -0.0037302609998732805, + -0.012150791473686695, + 0.022832630202174187, + 0.015216431580483913, + 0.028612639755010605, + 0.016861019656062126, + 0.01102512702345848, + 0.01302896998822689, + 0.003792132716625929, + -0.009340621531009674, + 0.01603074185550213, + 0.004127437248826027, + -0.019367819651961327, + -0.057832021266222, + 0.03420104458928108, + -0.023263735696673393, + 0.005141333676874638, + -0.04010878875851631, + 0.010043163783848286, + 0.02070903591811657, + -0.03353043645620346, + -0.009045234881341457, + 0.015120630152523518, + 0.02315196767449379, + -0.055564723908901215, + 0.005400795489549637, + 0.01089739240705967, + -0.001957938075065613, + -0.03618093952536583, + -0.009835595265030861, + 0.048986371606588364, + -0.002736323047429323, + -0.017882900312542915, + -0.00463039381429553, + 0.01276551652699709, + -0.0001390864490531385, + 0.026568880304694176, + -0.04202481359243393, + -0.009164986200630665, + 0.016382014378905296, + 0.022928431630134583, + -0.05396803840994835, + -0.004590476397424936, + 0.0020976481027901173, + 0.04649553820490837, + -0.0015687454724684358, + 0.032348889857530594, + -0.008614128455519676, + 0.001938977395184338, + 0.05649080127477646, + -0.013867231085896492, + 0.00936457235366106, + 0.017020689323544502, + -0.029634520411491394, + -0.0007479483028873801, + -0.008502360433340073, + -0.02267296239733696, + 0.05572439357638359, + -0.0028999836649745703, + -0.026249542832374573, + -0.04077939689159393, + -0.009580125100910664, + -0.0264092106372118, + -0.0025766543112695217, + 0.024125948548316956, + 0.025642801076173782, + 0.015304249711334705, + -0.006195147521793842, + 0.022992299869656563, + -0.014873144216835499, + 0.013316373340785503, + 0.033498503267765045, + -0.02098047360777855, + -2.1190413463045843e-5, + 0.057001743465662, + -0.035127125680446625, + 0.024876391515135765, + -0.01313275471329689, + 0.02302423305809498, + 0.002640521852299571, + -0.03816083073616028, + -0.012821400538086891, + 0.05227554962038994, + 0.025818437337875366, + -0.02565876767039299, + 0.0077040172182023525, + -0.0029179463163018227, + -0.03048076294362545, + -0.06064219027757645, + 0.014881127513945103, + -0.01797870174050331, + -0.010067114606499672, + -0.030848002061247826, + 0.03921464458107948, + 0.02910761348903179, + 0.008171048015356064, + 0.02605793997645378, + -0.01663748361170292, + -0.01385126356035471, + 0.009963329881429672, + -0.02150738053023815, + 0.023231802508234978, + -0.010562087409198284, + -0.03745828941464424, + -0.013356290757656097, + -0.029650487005710602, + -0.005624331533908844, + -0.024381417781114578, + -0.01716439053416252, + 0.01820223778486252, + 0.053999971598386765, + -0.0465594083070755, + 0.04633587226271629, + -0.045441724359989166, + -0.04148194193840027, + -0.008701946586370468, + -0.003353043692186475, + -0.033083364367485046, + -0.0012334410566836596, + -0.05633113533258438, + 0.06223887950181961, + 0.0032193211372941732, + 0.03822469711303711, + -0.02192251943051815, + -0.027478991076350212, + 0.024397384375333786, + 0.012829383835196495, + -0.030736234039068222, + 0.004865905269980431, + -0.030225293710827827, + 0.0162862129509449, + -0.009164986200630665, + -0.0161824282258749, + 0.006219097878783941, + -0.031135406345129013, + -0.010003247298300266, + 0.010649905540049076, + 0.019240083172917366, + 0.01167178526520729, + 0.024940257892012596, + 0.03902304172515869, + -0.03796922788023949, + 0.012430211529135704, + 0.023455338552594185, + -0.026105839759111404, + 0.003538658609613776, + 0.02559489943087101, + 0.02586633712053299, + -0.006973532494157553, + 0.03563806414604187, + 0.0528184212744236, + -0.00235112220980227, + -0.03400944173336029, + -0.030863968655467033, + -0.013859246857464314, + 0.0009684907272458076, + -0.02050146646797657, + 0.011560017243027687, + 0.025275561958551407, + 0.012510046362876892, + -0.004965697880834341, + -0.009380538947880268, + 0.0017992672510445118, + 0.001099718501791358, + -0.018952680751681328, + -0.02192251943051815, + 0.022768763825297356, + -0.029075678437948227, + -0.009476340375840664, + -0.001782302395440638, + -0.009212886914610863, + 0.034520383924245834, + 0.01334032416343689, + -0.02517976053059101, + -0.029506783932447433, + -0.028133632615208626, + 0.03630867227911949, + -0.02824540063738823, + -0.0008178033749572933, + -0.0008028344018384814, + -0.013068887405097485, + 0.04039619490504265, + -0.05004018545150757, + 0.05687400698661804, + -0.05457477644085884, + -0.009141035377979279, + 0.0015188489342108369, + -0.04480304941534996, + 0.002522766124457121, + -0.02789412997663021, + 0.018585441634058952, + 0.01222264301031828, + -0.04448371380567551, + -0.021427545696496964, + -0.007843727245926857, + -0.00027243478689342737, + -0.02321583591401577, + -0.021076275035738945, + -0.026233574375510216, + 0.0035486379638314247, + 0.02926728129386902, + -0.03503132238984108, + -0.0008287805831059813, + 0.04378116875886917, + 0.04122646898031235, + -0.007376695983111858, + -0.018585441634058952, + -0.007656116504222155, + -0.0012144803768023849, + -0.004865905269980431, + 0.018649309873580933, + 0.02837313711643219, + -0.031406842172145844, + 0.016541682183742523, + 0.040555860847234726, + 0.035669997334480286, + 0.02415788173675537, + 0.008294790983200073, + 0.01689295284450054, + 0.0252595953643322, + -0.0012084927875548601, + 0.024461252614855766, + -0.04812416061758995, + 0.00899733416736126, + -0.0021215984597802162, + 0.015455935150384903, + -0.03317916393280029, + -0.016861019656062126, + 0.046527471393346786, + 0.03448845073580742, + -0.01989472657442093, + -0.021076275035738945, + -0.04202481359243393, + -0.02056533470749855, + 0.008486393839120865, + 0.011049076914787292, + 0.011615901254117489, + 0.01327645592391491, + -0.02743109129369259, + 0.013739495538175106, + -0.029842087998986244, + 0.007221018895506859, + 0.04812416061758995, + -0.038799505680799484, + -0.005588406231254339, + -0.005301002413034439, + -0.033083364367485046, + -0.021906552836298943, + 0.011895321309566498, + 0.005400795489549637, + 0.006666169967502356, + 0.008869598619639874, + -0.0122146587818861, + -0.012853333726525307, + 0.009460372850298882, + -0.01100117713212967, + 0.02375870943069458, + -0.030512697994709015, + -0.03324303403496742, + 0.0006042463937774301, + -0.006466584280133247, + -0.0388314388692379, + -0.015855107456445694, + 0.0003981739282608032, + -0.008646062575280666, + 0.01460170652717352, + 0.011919272132217884, + 0.03752215579152107, + 0.005859842989593744, + -0.009484323672950268, + -0.021411579102277756, + -0.01900058053433895, + 0.016334112733602524, + -0.05952451005578041, + -0.0035725883208215237, + 0.03110347129404545, + -0.03969364985823631, + 0.01599082536995411, + -0.03171021491289139, + 0.04077939689159393, + -0.004861913155764341, + -0.04866703599691391, + 0.0131008205935359, + 0.02478059008717537, + 0.005991569720208645, + -0.020693069323897362, + -0.024892358109354973, + 0.0022872549016028643, + 0.0026744515635073185, + 0.02647307887673378, + 0.009779710322618484, + -0.010546120814979076, + -0.011959189549088478, + 0.04253575578331947, + 0.006825839169323444, + -0.08820101618766785, + 0.047357749193906784, + 0.013931098394095898, + -0.032476622611284256, + 0.01123269647359848, + -0.00875783059746027, + -0.04604846611618996, + -0.01793080009520054, + -0.0007883644429966807, + 0.010338551364839077, + -0.01710052229464054, + -0.014050849713385105, + 0.0015318220248445868, + -0.05850262939929962, + -0.03493552282452583, + -0.06124893203377724, + -0.014809275977313519, + -0.017595496028661728, + 0.006945590488612652, + -0.012549963779747486, + -0.022082187235355377, + 0.012965102680027485, + 0.03745828941464424, + 0.005029565654695034, + -0.030368994921445847, + 0.009612058289349079, + -0.014186568558216095, + -0.0007349752122536302, + 0.0010667868191376328, + -0.027718493714928627, + 0.017739197239279747, + 0.01770726405084133, + 0.037170883268117905, + -0.0150328129529953, + 0.017595496028661728, + 0.006087371148169041, + 0.013691594824194908, + -0.023183902725577354, + 0.011480183340609074, + 0.0142504358664155, + -0.03102363832294941, + -0.027782361954450607, + 0.00459845969453454, + 0.01805853471159935, + -0.005157300736755133, + 0.0004079037462361157, + 0.020277930423617363, + -0.003005764214321971, + -0.022704895585775375, + 0.011903305537998676, + 0.03535066172480583, + -0.017324058338999748, + -0.01751566119492054, + -0.012238609604537487, + 0.037841491401195526, + -0.033913642168045044, + -0.03365817293524742, + 0.023519206792116165, + -0.002496819943189621, + 0.03461618348956108, + 0.02137964591383934, + -0.03238082304596901, + 0.0277663953602314, + 0.03650027513504028, + -0.015431984327733517, + 0.010386452078819275, + 0.02580246888101101, + 0.02179478481411934, + -0.0257865022867918, + 0.0064546093344688416, + -0.033977508544921875, + -0.0018721161177381873, + -0.024014178663492203, + 0.041705477982759476, + 0.007157151587307453, + 0.0061432551592588425, + 0.021906552836298943, + -0.03493552282452583, + 0.0070294165052473545, + -0.005951652768999338, + 0.011583968065679073, + 0.017148423939943314, + 0.008837665431201458, + -0.040555860847234726, + -0.02220992185175419, + -0.012573913671076298, + 0.013052919879555702, + 0.0017633417155593634, + 0.007157151587307453, + 0.015799222514033318, + 0.004053590353578329, + 0.010226783342659473, + 0.02660081349313259, + -0.012605847790837288, + 0.014178584329783916, + 0.0005249109817668796, + -0.05795975401997566, + -0.04812416061758995, + 0.03265225887298584, + 0.07842928916215897, + -0.010418386198580265, + 0.05850262939929962, + 0.010330568067729473, + 0.017004720866680145, + 0.0450904555618763, + 0.010649905540049076, + -0.03461618348956108, + -0.02634534239768982, + -0.013356290757656097, + 0.03908690810203552, + -0.017435826361179352, + 0.006338849198073149, + -0.004602451808750629, + -0.032412756234407425, + -0.02118804305791855, + 0.03062446601688862, + -0.010697806254029274, + 0.020693069323897362, + 0.022976333275437355, + 0.02497219294309616, + 0.0015976853901520371, + 0.0012174742296338081, + -0.03576580062508583, + -0.020884672179818153, + -0.06457003951072693, + -0.0025966130197048187, + -0.005712149664759636, + -0.009484323672950268, + -0.01941571943461895, + 0.022976333275437355, + -0.04936957731842995, + 0.014960961416363716, + 0.025147827342152596, + -0.0019309938652440906, + -0.011615901254117489, + -0.04394083842635155, + -0.004374923650175333, + -0.039949119091033936, + -0.02632937580347061, + 0.009093135595321655, + 0.01711648888885975, + 0.0013651677872985601, + 0.013484025374054909, + -0.0323648564517498, + -0.0023910393938422203, + 0.005604372825473547, + 0.015080712735652924, + 0.008366642519831657, + -0.018633343279361725, + 0.014944994822144508, + -0.0524032823741436, + -0.009396505542099476, + 4.2380826926091686e-5, + 0.0034089277032762766, + 0.003179403953254223, + -0.0019609318114817142, + 0.004730186425149441, + -0.014505906030535698, + -0.030049657449126244, + -0.03752215579152107, + -0.015918973833322525, + 0.0029239340219646692, + -0.017148423939943314, + -0.008063271641731262, + 0.020341798663139343, + -0.03123120777308941, + 0.021890584379434586, + -0.01123269647359848, + 0.03212535008788109, + -0.005672232247889042, + -0.0033809856977313757, + 0.019128315150737762, + -0.0045585427433252335, + -0.026153741404414177, + -0.024557054042816162, + -0.016342096030712128, + -0.0319497175514698, + -0.019990528002381325, + 0.025946171954274178, + -0.02375870943069458, + -0.0004163861449342221, + 0.02327970415353775, + -0.01635007932782173, + -0.018633343279361725, + -0.025339430198073387, + -0.01248609647154808, + -0.014505906030535698, + -0.01900058053433895, + -0.013052919879555702, + 0.003953797277063131, + -0.006522468291223049, + -0.0002973830560222268, + -0.02444528602063656, + 0.003981739282608032, + -0.030640432611107826, + 0.009276754222810268, + 0.031933750957250595, + 0.0027702527586370707, + 0.002983809681609273, + 0.01730809174478054, + -0.0126297976821661, + 0.009931395761668682, + -0.027942031621932983, + -0.010330568067729473, + -0.010370485484600067, + -0.005628323182463646, + 0.020214064046740532, + -0.012302476912736893, + 0.004742161836475134, + 0.024221748113632202, + 0.00013060405035503209, + -0.012805433943867683, + 0.019511520862579346, + 0.00636679120361805, + 0.005141333676874638, + 0.014314303174614906, + 0.0006526460056193173, + 0.0674440786242485, + -0.009492306970059872, + -0.007480480708181858, + 0.006682137027382851, + -0.016749251633882523, + 0.005544497165828943, + 0.029011812061071396, + 0.0030816069338470697, + 0.014937011525034904, + -0.02327970415353775, + 0.0020417640917003155, + 7.952252053655684e-5, + 0.0058279093354940414, + -0.016813119873404503, + -0.017866933718323708, + 0.01395504828542471, + -0.03796922788023949, + 0.029379049316048622, + -0.03477585315704346, + -0.0008457453805021942, + -0.018026601523160934, + -0.02110820822417736, + 0.020309865474700928, + 0.013651678338646889, + 0.012430211529135704, + -0.02340743876993656, + -0.005867826286703348, + -0.029283247888088226, + 0.018617376685142517, + -0.0058239176869392395, + 0.005460671149194241, + 0.00813113059848547, + 0.02471672184765339, + 0.04317443072795868, + -0.011591951362788677, + -0.036883480846881866, + 0.01797870174050331, + -0.004606443457305431, + -0.0033091348595917225, + -0.02498815953731537, + -0.015240381471812725, + 0.042663488537073135, + -0.027846230193972588, + -0.011991122737526894, + -0.014521872624754906, + -0.013284440152347088, + -0.010817557573318481, + -0.011975156143307686, + -0.02905971184372902, + 0.017260191962122917, + 0.0352867916226387, + -0.00655041029676795, + 0.02715965360403061, + 0.02165108174085617, + 0.004638377111405134, + -0.022976333275437355, + 0.03388170897960663, + 0.008941450156271458, + 0.021331744268536568, + 0.007193076889961958, + 0.004171345848590136, + 0.007855702191591263, + 0.018856879323720932, + 0.017595496028661728, + -0.018840912729501724, + -0.018234170973300934, + 0.03209341689944267, + -0.018377872183918953, + 0.010953276418149471, + 0.0038719670847058296, + 0.02363097481429577, + -0.04189708083868027, + 0.021746883168816566, + 0.024684788659214973, + -0.0118474205955863, + 0.03311529755592346, + 0.024812523275613785, + 0.007576282136142254, + 0.03793729469180107, + 0.02762269414961338, + -0.012653748504817486, + 0.008262857794761658, + -0.0006167205283418298, + 0.04834769666194916, + -0.04141807183623314, + 0.01323653943836689, + 0.021076275035738945, + -0.030305128544569016, + -0.00694159884005785, + -0.03116733953356743, + -0.009580125100910664, + 0.031199272722005844, + 0.02166704833507538, + 0.013060903176665306, + -0.04400470852851868, + 0.02872440777719021, + 0.00738068763166666, + 0.031327009201049805, + 0.012310460209846497, + -0.03202955052256584, + -0.006917648483067751, + -0.03346657007932663, + 0.006278973538428545, + 0.005001623649150133, + 0.012110874056816101, + -0.01238231174647808, + 0.022385558113455772, + -0.023471305146813393, + 0.02417384833097458, + 0.02987402305006981, + 0.023998212069272995, + -0.015903007239103317, + -0.01140833180397749, + 0.022481359541416168, + 0.026425177231431007, + -0.002518774475902319, + -0.04023652523756027, + -0.0009515259298495948, + -0.0014140662970021367, + 0.012949135154485703, + 0.02171494998037815, + 0.0021295819897204638, + -0.012047006748616695, + 0.011280597187578678, + 0.01745179481804371, + -0.016070660203695297, + 0.033626239746809006, + 0.00439488235861063, + -0.01116084586828947, + 0.001040840637870133, + 0.008614128455519676, + -0.006590327713638544, + 0.015487868338823318, + 0.03384977579116821, + 0.03400944173336029, + -0.007823769003152847, + -0.0042152549140155315, + -0.007851710543036461, + -0.010051148012280464, + -0.007268919609487057, + -0.00987551175057888, + -0.021156109869480133, + 0.01615847647190094, + -0.02647307887673378, + 0.02530749700963497, + 0.020341798663139343, + -0.0017194327665492892, + -0.01609461009502411, + 0.04534592479467392, + -0.018505608662962914, + 0.013659661635756493, + 0.018298039212822914, + 0.0025966130197048187, + -0.011360431089997292, + 0.0017773127183318138, + -0.008606145158410072, + 0.009180952794849873, + -0.003622484626248479, + 0.008558244444429874, + 0.018505608662962914, + 0.0027682569343596697, + -0.05693787708878517, + 0.0005453685880638659, + -0.014817260205745697, + -0.048571232706308365, + 0.010817557573318481, + -0.005029565654695034, + -0.032827895134687424, + -0.02538732998073101, + -0.004678294062614441, + 0.00032133335480466485, + 0.009947363287210464, + 0.025483131408691406, + 0.008011379279196262, + 0.007731959223747253, + 0.018314005807042122, + 0.007500439416617155, + -0.003305142978206277, + 0.0042631556279957294, + -0.0039218636229634285, + -0.007225011009722948, + -0.0013761450536549091, + 0.00807923823595047, + -0.006067412439733744, + -0.04576106369495392, + -0.019096381962299347, + 0.004570517688989639, + 0.03238082304596901, + 0.0032113376073539257, + 0.014960961416363716, + -0.0048100207932293415, + 0.014657590538263321, + -0.004466733429580927, + -0.013212588615715504, + 0.0008033333579078317, + -0.0019898717291653156, + -0.0048938472755253315, + 0.009141035377979279, + 0.006897689774632454, + 0.020134229212999344, + -0.028660539537668228, + 0.01486515998840332, + -0.007336779031902552, + 0.032891761511564255, + 0.018920745700597763, + 0.019926659762859344, + 0.006945590488612652, + 0.02613777481019497, + 0.00831874180585146, + 0.01011501532047987, + 0.021683016791939735, + 0.038192763924598694, + -0.02150738053023815, + 0.042663488537073135, + 0.027095787227153778, + 0.0006995486910454929, + 0.010162916034460068, + 0.012166758999228477, + 0.015447950921952724, + -0.020038427785038948, + 0.0262016411870718, + 0.011352447792887688, + 0.010817557573318481, + 0.02471672184765339, + -0.030177393928170204, + 0.0011086998274549842, + -0.002049747621640563, + -0.0037003231700509787, + 0.0329875648021698, + 0.02858070656657219, + -0.008478410542011261, + 0.03768182545900345, + 0.01983085833489895, + 0.024125948548316956, + 0.003416911233216524, + -0.008135122247040272, + -0.010394435375928879, + 0.027031918987631798, + -0.017563562840223312, + -0.04770902171730995, + -0.007468505762517452, + -0.0019289980409666896, + -0.02409401349723339, + -0.007839735597372055, + -0.021267877891659737, + -0.0019988531712442636, + -0.0070294165052473545, + 0.03643640875816345, + 0.019256051629781723, + -0.00434298999607563, + 0.004053590353578329, + 0.009532224386930466, + 0.015879057347774506, + -0.01655764877796173, + 0.006678145378828049, + 0.0018850890919566154, + -0.011623884551227093, + 0.03956591710448265, + -0.04512238875031471, + -0.00787166878581047, + 0.019782958552241325, + 0.010466285981237888, + -0.035733867436647415, + 0.008175039663910866, + 0.041641607880592346, + -0.017611462622880936, + 0.0052131847478449345, + -0.0023650932125747204, + 0.03210938349366188, + 0.012366344220936298, + 0.013931098394095898, + -0.0019170228624716401, + 0.008709929883480072, + -0.025546999648213387, + 0.034456513822078705, + -0.010442336089909077, + -0.006989499554038048, + -0.02166704833507538, + 0.00821495708078146, + -0.0070932842791080475, + 0.005592397879809141, + -0.002147544641047716, + 0.030800100415945053, + 0.01730809174478054, + 0.0026305424980819225, + -0.016861019656062126, + -0.03915077820420265, + 0.020549368113279343, + -0.017084555700421333, + 0.010003247298300266, + 0.025626834481954575, + 0.011831454001367092, + -0.005073474254459143, + -0.006410700269043446, + 0.03305143117904663, + 0.011903305537998676, + 0.014026899822056293, + -0.0023092092014849186, + -0.008973383344709873, + -0.01636604592204094, + 0.03764989227056503, + -0.030241260305047035, + -0.018761077895760536, + -0.014042866416275501, + 0.0064386422745883465, + -0.005927702412009239, + -0.03394557535648346, + -0.0027303355745971203, + -0.0143542205914855, + 0.019240083172917366, + 0.00036374537739902735, + 0.0023850519210100174, + -0.017212290316820145, + -0.023136001080274582, + -0.008853632025420666, + -0.030927836894989014, + 0.010753690265119076, + -0.021938486024737358, + 0.03190181404352188, + -0.011456232517957687, + 0.030736234039068222, + -0.007819777354598045, + -0.005384828429669142, + -0.030113525688648224, + -0.032348889857530594, + 0.011472199112176895, + -0.015408034436404705, + -0.02064516954123974, + 0.007947511970996857, + -0.004091511480510235, + -0.020309865474700928, + -0.010394435375928879, + 0.007763892877846956, + 0.00670608738437295, + -0.0020657144486904144, + -0.0023910393938422203, + -0.013659661635756493, + -0.024732688441872597, + -0.019495554268360138, + -0.034392647445201874, + -0.020485499873757362, + -0.012589880265295506, + 0.0140907671302557, + 0.001210488728247583, + -0.023247769102454185, + -0.06457003951072693, + 0.0058239176869392395, + 0.00987551175057888, + -0.028357168659567833, + 0.011887338012456894, + -0.0042551723308861256, + 0.0038061037193983793, + 0.019495554268360138, + -0.003816083073616028, + -0.039342381060123444, + -0.03148667514324188, + 0.0015966874780133367, + 0.002486840821802616, + -0.023599041625857353, + -0.005472646094858646, + -0.014681541360914707, + -0.012039023451507092, + -0.03432878106832504, + -0.03142280876636505, + 0.0164937824010849, + 0.0017294121207669377, + -0.030496731400489807, + -0.0019130312139168382, + 0.018920745700597763, + -0.013971015810966492, + -0.002907966962084174, + 0.001675523933954537, + 0.014593723230063915, + -0.0017244224436581135, + -0.033626239746809006, + 0.018888812512159348, + 0.01839383877813816, + 0.014833226799964905, + 0.0005683209747076035, + -0.00889354944229126, + -0.024141915142536163, + -0.004802037496119738, + 0.008981366641819477, + -0.008845648728311062, + -0.0001536811760161072, + 0.010051148012280464, + -0.01772323064506054, + 0.0064586009830236435, + 0.002397027099505067, + 0.01605469174683094, + 0.015304249711334705, + 0.007548340130597353, + 0.013180655427277088, + 0.01622234471142292, + -0.0064825513400137424, + 0.037170883268117905, + 0.003947809804230928, + -0.005863834638148546, + -0.008478410542011261, + -0.04933764412999153, + -0.020469533279538155, + -0.02050146646797657, + -0.010170899331569672, + 0.018777044489979744, + -0.04311056062579155, + 0.021267877891659737, + 0.010594021528959274, + -0.027319323271512985, + 0.04148194193840027, + -0.0011396356858313084, + 0.0077040172182023525, + -0.0018282071687281132, + 0.01927201822400093, + 0.006474567577242851, + -0.017324058338999748, + 0.012278527021408081, + 0.037298619747161865, + -0.005875810049474239, + 0.020517434924840927, + 0.021411579102277756, + -0.004670310765504837, + -0.0007838737801648676, + -0.022752797231078148, + 0.006382758263498545, + 0.0009829606860876083, + -0.04410050809383392, + -0.0011935238726437092, + -0.027670593932271004, + -0.004470725078135729, + -0.014641623944044113, + -0.0022672961931675673, + -0.020341798663139343, + -0.039949119091033936, + -0.0077279675751924515, + 0.013915130868554115, + -0.027447057887911797, + -0.00018149845709558576, + -0.019048482179641724, + -0.012134824879467487, + -0.0025547000113874674, + 0.010466285981237888, + 0.019048482179641724, + -0.0008592174272052944, + -0.0031953707803040743, + -0.006981515791267157, + -0.03915077820420265, + 0.0035745841450989246, + -0.014306319877505302, + -0.008358659222722054, + 0.0007614203495904803, + 0.02198638580739498, + -0.009340621531009674, + -0.04624006897211075, + 2.9431128041323973e-6, + -0.012158774770796299, + 0.012438195757567883, + 0.016541682183742523, + -0.0029937890358269215, + -0.0334027037024498, + 0.010258717462420464, + -0.030193360522389412, + 0.011791536584496498, + -0.011831454001367092, + -0.03480778634548187, + 0.04074746370315552, + 0.008115164004266262, + 0.005161292385309935, + 0.012278527021408081, + -0.0019260043045505881, + 0.005404787138104439, + 0.025834403932094574, + 0.011448249220848083, + -0.003097573760896921, + 0.00229922984726727, + 0.0004338499275036156, + 0.021938486024737358, + 0.03266822546720505, + -0.008606145158410072, + -0.05221167951822281, + -0.031071538105607033, + 0.03305143117904663, + -0.0030875944066792727, + -0.011416315101087093, + 0.01154405064880848, + 0.004466733429580927, + 0.00930070411413908, + 0.012925185263156891, + -0.004442783072590828, + 0.0010153934126719832, + 0.017866933718323708, + 0.009380538947880268, + -0.014018915593624115, + -0.010985209606587887, + -0.00021817236847709864, + 0.00756829883903265, + -0.013787396252155304, + -0.022114122286438942, + -0.03448845073580742, + -0.067635677754879, + -0.01880897767841816, + -0.004602451808750629, + 0.015384083613753319, + -0.0011655818670988083, + -0.001695482525974512, + -0.015152564272284508, + 0.006071404088288546, + -0.004275130573660135, + 0.014130684547126293, + -0.0018741119420155883, + 0.014434054493904114, + 0.005025574006140232, + 0.027814295142889023, + -0.019974559545516968, + 0.012031040154397488, + -0.013507976196706295, + -0.005033557303249836, + -0.01068982295691967, + -0.005197217687964439, + -0.0005413768230937421, + 0.00730085326358676, + 0.012102890759706497, + 0.0013861242914572358, + 0.027878163382411003, + 0.016150493174791336, + -0.02137964591383934, + 0.02720755524933338, + -0.01805853471159935, + -0.015144580975174904, + 0.01805853471159935, + 0.0005101915448904037, + -0.02952275052666664, + 0.016525715589523315, + 0.024732688441872597, + 0.006530451588332653, + 0.010434352792799473, + -0.01839383877813816, + 0.0067340293899178505, + 0.004390890710055828, + 0.00408153235912323, + 0.004566526040434837, + -0.006606294307857752, + 0.023231802508234978, + -0.015048779547214508, + -0.02158721536397934, + 0.004331014584749937, + -0.02254522778093815, + 0.000654142873827368, + 0.008877581916749477, + 0.027942031621932983, + -0.002688422566279769, + -0.001016890280880034, + -0.026505012065172195, + 0.015695437788963318, + 0.006506501231342554, + 0.02803783118724823, + -0.0030875944066792727, + -0.005480629857629538, + -0.017212290316820145, + 0.06642220169305801, + 0.015918973833322525, + 0.0016874991124495864, + 0.02096450701355934, + -0.017276158556342125, + 0.010937308892607689, + 0.02246539294719696, + 0.009891479276120663, + 0.03634060546755791, + 0.002081681275740266, + -0.0017294121207669377, + -0.015008862130343914, + 0.02987402305006981, + 0.02918744646012783, + 0.00878976471722126, + 0.01839383877813816, + 0.02966645359992981, + 0.011480183340609074, + 0.012462145648896694, + 0.012837367132306099, + 0.008294790983200073, + 0.0012174742296338081, + 0.01874511130154133, + -0.019192183390259743, + -0.013156704604625702, + -0.020070360973477364, + 0.01083352416753769, + -0.02356710657477379, + -0.019463621079921722, + -0.010099048726260662, + 0.032205186784267426, + 0.011288580484688282, + 0.016413947567343712, + 0.032827895134687424, + 0.0012963106855750084, + 0.023391472175717354, + 0.018345938995480537, + 0.013994965702295303, + -0.009164986200630665, + -0.006510493345558643, + -0.01947958767414093, + -0.007149168290197849, + 0.0032133334316313267, + -0.026169707998633385, + 0.001712447265163064, + 0.008462443947792053, + 0.008877581916749477, + 0.009021284058690071, + -0.00803932175040245, + -0.017292125150561333, + 0.005177258979529142, + 0.01791483350098133, + -0.024205781519412994, + 0.0012683685636147857, + -0.011168829165399075, + -0.0012963106855750084, + -0.017834998667240143, + -0.04234415292739868, + -0.029219381511211395, + -0.00858219526708126, + -8.033333870116621e-5, + 0.02104433998465538, + 0.007296861615031958, + -0.04764515534043312, + -0.025834403932094574, + 0.008462443947792053, + -0.02321583591401577, + -0.010202832520008087, + -0.018441740423440933, + 0.02417384833097458, + -0.012062974274158478, + -0.014082783833146095, + -0.028133632615208626, + -0.002548712305724621, + -0.009651975706219673, + 0.012909218668937683, + 0.04358956962823868, + -0.0018661285284906626, + 0.010226783342659473, + -0.036755744367837906, + 0.001988873817026615, + 0.006546418648213148, + -0.01276551652699709, + 0.007951503619551659, + -0.02056533470749855, + 0.004279122222214937, + 0.019128315150737762, + 0.0030875944066792727, + -0.0005643292097374797, + -0.03239678964018822, + -0.009141035377979279, + -0.006977524142712355, + 0.01591099053621292, + -0.02232169173657894, + -0.03265225887298584, + -0.008206973783671856, + -0.0030836027581244707, + -0.014234469272196293, + 0.002810169942677021, + -0.009596091695129871, + -0.013619744218885899, + 0.003105557058006525, + 0.009939379058778286, + -0.002718360396102071, + 0.006326874252408743, + -0.0025527041871100664, + -0.020693069323897362, + 0.006231072824448347, + -0.020533401519060135, + -0.016318146139383316, + -0.018585441634058952, + -0.0016934867016971111, + -0.010937308892607689, + -0.007296861615031958, + 0.0019220125395804644, + 0.0004473219742067158, + -0.009715843014419079, + -0.010649905540049076, + 0.01642991416156292, + 0.012398278340697289, + -0.016861019656062126, + -0.007081308867782354, + -0.009053218178451061, + 0.02613777481019497, + 0.0132046053186059, + 0.018617376685142517, + -0.003053664695471525, + 0.023247769102454185, + -0.02118804305791855, + -0.01048225350677967, + 0.012166758999228477, + 0.025706667453050613, + -0.025818437337875366, + 0.005472646094858646, + 0.011591951362788677, + 0.0011935238726437092, + 0.02388644404709339, + -0.01737195998430252, + -0.032013583928346634, + -0.012565930373966694, + -0.024269649758934975, + -0.004115461837500334, + 0.006554401945322752, + -0.011104960925877094, + 0.009787694551050663, + -0.0017174369422718883, + -0.03950204700231552, + 0.003877954790368676, + 0.008486393839120865, + -0.013196622021496296, + 0.009324654936790466, + -0.0022094163578003645, + -0.001188534195534885, + -0.036149002611637115, + 0.0006546418881043792, + 0.006646211724728346, + -0.007185093592852354, + -0.015392066910862923, + -0.008973383344709873, + -0.02056533470749855, + 0.020469533279538155, + -0.007460521999746561, + -0.005129358731210232, + -0.018138369545340538, + 0.009779710322618484, + -0.0004657836689148098, + 0.017340026795864105, + -0.04330216348171234, + -0.026936117559671402, + 0.025898270308971405, + 0.0015437972033396363, + -0.0006940600578673184, + 0.00636679120361805, + -0.010234766639769077, + 0.010298633947968483, + -0.002145548816770315, + 0.026121806353330612, + -0.0006381760467775166, + 0.02403014712035656, + -0.02334357053041458, + -0.023375503718852997, + -0.007105259224772453, + -0.007739942520856857, + 0.010386452078819275, + 0.014641623944044113, + 0.010857474990189075, + -0.0268243495374918, + -0.025818437337875366, + 0.0010607992298901081, + -0.007983437739312649, + 0.007847718894481659, + -0.03998105600476265, + 0.0060993460938334465, + 0.028931977227330208, + 0.021012406796216965, + 0.005859842989593744, + 0.004961706232279539, + -0.007967470213770866, + 0.023678874596953392, + 0.004626402165740728, + 0.007260936312377453, + 0.013587810099124908, + 0.005676223896443844, + -0.011767586693167686, + 0.016006791964173317, + -0.03158247843384743, + -0.00946835707873106, + 0.011144878342747688, + 0.0014619670109823346, + -0.01995859295129776, + 0.005696182604879141, + 0.001369159552268684, + -0.023247769102454185, + 0.013428141362965107, + 0.00475413678213954, + 0.022098153829574585, + 0.008486393839120865, + -0.012941151857376099, + 0.0020138220861554146, + -0.0054886131547391415, + 0.011432282626628876, + -0.018154336139559746, + -0.03812889754772186, + -0.017435826361179352, + -0.00795549526810646, + 0.003424894530326128, + 0.002143552992492914, + 0.028468938544392586, + 0.020054394379258156, + 0.010194849222898483, + 0.03108750469982624, + -0.004670310765504837, + 0.016397980973124504, + 0.0036025261506438255, + 0.025036059319972992, + 0.018218204379081726, + -0.004327022936195135, + 0.01086545828729868, + 0.02152334712445736, + 0.002614575671032071, + 0.010059131309390068, + 0.012781483121216297, + -0.016102593392133713, + -0.0018591430271044374, + 0.0027682569343596697, + -0.0002456154325045645, + -0.006023503374308348, + 0.00182521331589669, + -0.012581896968185902, + -0.008885566145181656, + 0.003123519942164421, + 0.013124771416187286, + -0.002858070656657219, + -0.027335289865732193, + -0.002983809681609273, + 0.0020936564542353153, + 0.027989931404590607, + 0.0009390517952851951, + -0.005069482605904341, + -0.008877581916749477, + 0.006350824609398842, + -0.021619148552417755, + 0.002804182469844818, + 0.01642991416156292, + -0.008781781420111656, + 0.013923115096986294, + 0.0032073459587991238, + -0.012126841582357883, + 0.01353990938514471, + -0.029842087998986244, + -0.00800738763064146, + 0.013356290757656097, + -0.014170601032674313, + 0.024588987231254578, + -0.0013831305550411344, + -0.0005902753910049796, + 0.010274684056639671, + -0.02302423305809498, + 0.02015019580721855, + -0.010530154220759869, + 0.00624304823577404, + 0.029442917555570602, + -0.026153741404414177, + -0.011855404824018478, + 0.0007858696044422686, + 0.018154336139559746, + 0.005480629857629538, + 0.007803809829056263, + 0.04202481359243393, + -0.01463364064693451, + -0.026936117559671402, + -0.006155230104923248, + -0.016413947567343712, + 0.022353624925017357, + 0.007424596697092056, + 0.030161425471305847, + -0.004402865655720234, + 0.019192183390259743, + -0.03276402875781059, + -0.01048225350677967, + -0.008198990486562252, + -0.01826610416173935, + -0.012134824879467487, + 0.0070533668622374535, + 0.0064586009830236435, + 0.02050146646797657, + 0.023934345692396164, + -0.013013002462685108, + -0.010697806254029274, + -0.014697507955133915, + 0.00858219526708126, + -0.006746004801243544, + -0.00912506878376007, + -0.008206973783671856, + -0.0125260129570961, + -0.03260435909032822, + 0.010609988123178482, + -0.007101267576217651, + -0.0008796749752946198, + -0.014274385757744312, + -0.00940448883920908, + 0.0022453416604548693, + -0.04975278303027153, + -0.024796556681394577, + 0.00020744462381117046, + -2.571228105807677e-5, + 0.0005683209747076035, + -0.00011694488057401031, + 0.002616571495309472, + -0.0026445137336850166, + 0.011312530376017094, + 0.0005713147111237049, + 0.02476462349295616, + -0.002810169942677021, + -0.0031115447636693716, + 0.002550708130002022, + -0.006215105764567852, + 0.027335289865732193, + -0.031534578651189804, + 0.007672083098441362, + -0.002151536289602518, + 0.0030836027581244707, + 0.010769656859338284, + -0.0012124845525249839, + -0.0013861242914572358, + -0.006003544665873051, + 0.00699349120259285, + 0.011296563781797886, + 0.0067340293899178505, + -0.014106733724474907, + -0.02348727360367775, + 0.0026185675524175167, + 0.035797733813524246, + -0.014434054493904114, + 0.014681541360914707, + -0.011631867848336697, + 0.014298336580395699, + 0.01874511130154133, + 0.0017683313926681876, + -0.006901681423187256, + -0.0070533668622374535, + -0.013595793396234512, + -0.004985656589269638, + 0.0026984019204974174, + -0.015966875478625298, + -0.010490236803889275, + -0.00597560266032815, + -0.013348307460546494, + 0.00828680768609047, + 0.043876972049474716, + -0.008574211969971657, + 0.01981489174067974, + 0.025578932836651802, + 0.006506501231342554, + 0.033083364367485046, + -0.008238906972110271, + 0.03803309425711632, + -0.03416911140084267, + -0.00818302296102047, + -0.00025546998949721456, + -0.0036823605187237263, + 0.009484323672950268, + -0.014513889327645302, + 0.008270841091871262, + -0.0005907743470743299, + -0.024397384375333786, + 0.017675330862402916, + -0.01751566119492054, + -0.0032133334316313267, + 0.01995859295129776, + 0.0119512053206563, + -0.008741864003241062, + 0.03985331952571869, + -0.014338253065943718, + 0.0012084927875548601, + 0.010514186695218086, + 0.010282667353749275, + 0.022162022069096565, + -0.035063255578279495, + 0.024062080308794975, + 0.005951652768999338, + -0.0030676356982439756, + -0.009755760431289673, + 0.01847367361187935, + 0.01099319290369749, + -0.002059726743027568, + 0.023998212069272995, + -9.948111255653203e-5, + -0.009077168069779873, + -0.016254277899861336, + -0.014745408669114113, + -0.004450766369700432, + -0.02607390657067299, + 0.01632612943649292, + -0.009117085486650467, + -0.004845946561545134, + -0.01460170652717352, + -0.007608215790241957, + -0.003993714693933725, + -0.018856879323720932, + 0.006813863757997751, + -0.0128932511433959, + -0.03185391426086426, + 0.006582343950867653, + 0.01676521822810173, + -0.0067380210384726524, + 0.013963031582534313, + 0.005748074967414141, + -0.013005019165575504, + 0.0051493169739842415, + -0.013907147571444511, + 0.006199139170348644, + -0.0018601409392431378, + 0.027510924264788628, + -0.012909218668937683, + -0.043557632714509964, + -0.006510493345558643, + 0.007775867823511362, + 0.041992880403995514, + 0.010107032023370266, + 0.0023790644481778145, + -0.017771132290363312, + -0.01989472657442093, + 0.007775867823511362, + 0.005137342028319836, + -0.020820803940296173, + 0.0034308822359889746, + 0.017834998667240143, + 0.0038320499006658792, + -0.015152564272284508, + -0.011831454001367092, + 0.019719090312719345, + 0.005424745846539736, + 0.010298633947968483, + -0.01327645592391491, + -0.0057640415616333485, + 0.01021880004554987, + -0.0012923189206048846, + -0.005265077110379934, + -0.007600232493132353, + 0.016270244494080544, + -0.03102363832294941, + -0.006985507905483246, + -0.010202832520008087, + 0.009316671639680862, + 0.00997929647564888, + -0.003179403953254223, + -0.006973532494157553, + -0.002884016837924719, + 0.0005029565654695034, + -0.013124771416187286, + 0.010170899331569672, + -0.026457112282514572, + -0.01083352416753769, + 0.008047305047512054, + -0.0010228778701275587, + 0.010362501256167889, + -0.019990528002381325, + -0.002814161591231823, + -0.009691893123090267, + 0.001854153349995613, + 0.005293019115924835, + -0.009612058289349079, + -0.012877284549176693, + -0.02743109129369259, + 0.08922289311885834, + -0.006574360653758049, + 0.013388224877417088, + -0.0020657144486904144, + 0.00926078762859106, + -0.013523942790925503, + -0.0139869824051857, + 0.005600381176918745, + 0.018409807235002518, + -0.002151536289602518, + -0.00024324536207132041, + 0.0127335824072361, + 0.003915876150131226, + 0.0001415812730556354, + -0.026041973382234573, + -0.01955942064523697, + 0.019703123718500137, + -0.0027742444071918726, + 0.009939379058778286, + 0.027798328548669815, + 0.015623587183654308, + -0.022848598659038544, + -0.018026601523160934, + -0.0006461594603024423, + -0.010338551364839077, + 0.019128315150737762, + -0.012869301252067089, + 0.018170302733778954, + 0.02382257767021656, + 0.009133052080869675, + -0.0010094058234244585, + -0.0161824282258749, + -0.011504133231937885, + -0.0013362278696149588, + 0.011208745650947094, + 0.020198097452521324, + -0.002760273404419422, + 0.02897987700998783, + -0.010202832520008087, + 0.008486393839120865, + 0.01099319290369749, + -0.0017134452937170863, + 0.027670593932271004, + 0.028357168659567833, + -0.015360133722424507, + 0.014673558063805103, + 0.012478112243115902, + -0.00046777952229604125, + -0.01112891174852848, + 0.0067300377413630486, + -0.007963478565216064, + -0.030241260305047035, + 0.019846824929118156, + -0.002566675189882517, + 0.0011416315101087093, + -0.00818302296102047, + 0.0028460954781621695, + -0.0042352136224508286, + -0.003618492977693677, + 0.0045306007377803326, + -0.029538718983530998, + 0.019303951412439346, + -0.00644662557169795, + -0.027510924264788628, + -0.010881424881517887, + -0.019367819651961327, + -0.0016056688036769629, + -0.008015370927751064, + -0.009971313178539276, + -0.006334857549518347, + -0.020070360973477364, + -0.009053218178451061, + 0.004155379254370928, + -0.022369591519236565, + -0.010769656859338284, + 0.01690891943871975, + -0.00300376839004457, + 0.041034869849681854, + 0.0032811928540468216, + 0.026632746681571007, + 0.010649905540049076, + 0.0004151387547608465, + -0.005724124610424042, + -0.02260909415781498, + 0.009212886914610863, + -0.010306617245078087, + 0.004227229859679937, + -0.0271436870098114, + 0.00756829883903265, + -0.0250520259141922, + -0.011631867848336697, + -0.005768033675849438, + -0.004841954912990332, + 0.003201358485966921, + -0.0005114389350637794, + 0.0035047288984060287, + -0.00024012682843022048, + -0.020341798663139343, + 0.017739197239279747, + 0.00926078762859106, + 0.003903900971636176, + 0.002201432827860117, + 0.0035306750796735287, + -0.003398948349058628, + -0.0032153294887393713, + -0.003390965051949024, + 0.012901234440505505, + 0.01635007932782173, + -0.016749251633882523, + -0.00933263823390007, + -0.0004355963028501719, + -0.0017523644492030144, + 0.013499992899596691, + 0.009164986200630665, + -0.023806611075997353, + -0.010043163783848286, + 0.002003842731937766, + -0.001651573576964438, + -0.008107180707156658, + -0.00504154060035944, + -0.016006791964173317, + 0.0006546418881043792, + -0.0027942031156271696, + -0.02125190943479538, + -0.0008078240789473057, + 0.010777640156447887, + -0.010434352792799473, + -0.004203279968351126, + -0.003644439158961177, + 0.022896498441696167, + -0.007648133207112551, + 0.010202832520008087, + 0.019974559545516968, + -0.005249110050499439, + -0.002018811646848917, + -0.004147395491600037, + -0.00824689120054245, + 0.0133083900436759, + 0.03116733953356743, + -0.025946171954274178, + 0.030321095138788223, + -0.013971015810966492, + 0.014154634438455105, + 0.0142504358664155, + 0.0061392635107040405, + -0.008837665431201458, + -0.0008582195150665939, + -0.025004126131534576, + 0.01690891943871975, + -0.002395031275227666, + 0.03937431424856186, + -0.025036059319972992, + -0.006618269719183445, + -0.00875783059746027, + -0.014673558063805103, + -0.002175486646592617, + -0.009747777134180069, + 0.02023003064095974, + -0.03014545887708664, + 0.004323031287640333, + 0.005648281890898943, + -0.011480183340609074, + -0.00728089502081275, + 0.006322882603853941, + -0.013268472626805305, + -0.0039258552715182304, + 0.013859246857464314, + 0.016733285039663315, + 0.013076870702207088, + 0.002636530203744769, + -0.020277930423617363, + 0.002008832525461912, + 0.009428439661860466, + -0.01995859295129776, + -0.00402963999658823, + 0.0024529111105948687, + 0.01791483350098133, + -0.004442783072590828, + -0.0063947332091629505, + 0.01920814998447895, + -0.011017143726348877, + -0.01011501532047987, + -0.00019397257710807025, + 0.0014609689824283123, + -0.008238906972110271, + -0.015767289325594902, + 0.021762849763035774, + -0.008167056366801262, + 0.000556345796212554, + 9.99177063931711e-5, + -0.005364869721233845, + 0.0023391470313072205, + 0.001588704064488411, + -0.0007269917405210435, + -0.0042192465625703335, + -0.017563562840223312, + 0.013963031582534313, + 0.0035566212609410286, + -0.0005488613387569785, + -0.017228256911039352, + -0.018409807235002518, + 0.0011246667709201574, + 0.012062974274158478, + 0.010170899331569672, + -0.014258419163525105, + -0.012877284549176693, + -0.017403893172740936, + -0.012494079768657684, + -0.018904779106378555, + 0.00930070411413908, + -0.01603074185550213, + -0.033370766788721085, + 0.004438790958374739, + 0.008773798123002052, + -0.020118262618780136, + -0.0029997765086591244, + -0.009061201475560665, + 0.019511520862579346, + -0.004482700023800135, + 0.01140833180397749, + 0.0164937824010849, + 0.003446849063038826, + -0.0051932260394096375, + -0.012438195757567883, + 0.010290650650858879, + -0.0019359835423529148, + 0.027271421626210213, + 0.002010828349739313, + 0.0029458883218467236, + -7.141433889046311e-5, + 0.016669416800141335, + 0.0007629172177985311, + -0.005899760406464338, + 0.021491413936018944, + -0.009164986200630665, + 0.02749495767056942, + 0.00933263823390007, + -0.0067100790329277515, + 0.003566600615158677, + -0.004658335819840431, + -0.02252925932407379, + -0.005073474254459143, + -0.018361905589699745, + -0.006442633923143148, + 0.00842252653092146, + -0.017148423939943314, + -0.009891479276120663, + 0.01591099053621292, + 0.012597864493727684, + -3.16530822601635e-5, + -0.011112945154309273, + -0.017499694600701332, + -0.009141035377979279, + 0.0002933913201559335, + 0.030017724260687828, + -0.006833822466433048, + -0.014386153779923916, + 0.007205052301287651, + -0.008957416750490665, + -0.025403298437595367, + -0.019878758117556572, + 0.0007893623551353812, + -0.014809275977313519, + -0.003075619228184223, + 0.013076870702207088, + 0.018010634928941727, + -0.029123580083251, + 0.0042591639794409275, + 0.004646360408514738, + 0.004386899061501026, + 0.01058603823184967, + -0.0019439669558778405, + 0.00655041029676795, + 0.013683611527085304, + -0.0009550186805427074, + 0.0010697805555537343, + -0.005476638209074736, + -0.014753391966223717, + 0.006877731066197157, + -0.006598311010748148, + 0.003648430807515979, + -0.010458302684128284, + -0.000843250600155443, + -0.033434636890888214, + 0.004566526040434837, + -0.02396627888083458, + 0.007983437739312649, + 0.019303951412439346, + 0.0001184417778858915, + 0.013492009602487087, + 0.0015218427870422602, + -0.01463364064693451, + 0.010346534661948681, + -0.024588987231254578, + 0.0029379050247371197, + 0.027782361954450607, + 0.011831454001367092, + 0.002949880203232169, + -0.0008786770631559193, + -0.004191304557025433, + -0.008949433453381062, + -0.010234766639769077, + -0.004522617440670729, + -0.012973085977137089, + 0.009428439661860466, + 0.011959189549088478, + 0.018441740423440933, + 0.0032612341456115246, + -0.025978105142712593, + 0.013931098394095898, + 0.002440935932099819, + 2.193886029999703e-5, + 0.013356290757656097, + -0.011895321309566498, + -0.01839383877813816, + -0.000525908952113241, + -0.0036763728130608797, + 0.02632937580347061, + -0.013803362846374512, + 0.0036284723319113255, + 0.002247337717562914, + 0.01738792657852173, + 0.013715545646846294, + 0.00814310647547245, + 0.017324058338999748, + -0.007999404333531857, + 0.0022872549016028643, + -0.012949135154485703, + 0.00015804711438249797, + -0.028197500854730606, + 0.020006494596600533, + 0.01238231174647808, + -0.01908041536808014, + 0.00305566075257957, + -0.00312152411788702, + 0.0025946171954274178, + -0.023136001080274582, + -0.009180952794849873, + -0.0045186253264546394, + 0.0011595942778512836, + -0.005744083318859339, + 0.0051453253254294395, + -0.010665872134268284, + -0.015918973833322525, + -0.002007834380492568, + 0.00807923823595047, + -0.00029937890940345824, + -0.028804242610931396, + -0.014513889327645302, + 0.00722900265827775, + -0.006881723180413246, + -0.004410848952829838, + 0.00286006648093462, + 0.018617376685142517, + -0.0013731512008234859, + 0.010705789551138878, + 0.01563955470919609, + 0.02770252712070942, + 0.000473767111543566, + -0.011615901254117489, + 0.0018860871205106378, + 0.009212886914610863, + -0.0067539880983531475, + 0.003321110038086772, + 0.025962138548493385, + -0.00814310647547245, + 0.007712000515311956, + 0.0036304681561887264, + -0.03749022260308266, + 0.03137490898370743, + -0.006466584280133247, + -0.0162862129509449, + -0.023726776242256165, + -0.005776016972959042, + -0.015942923724651337, + 0.010825540870428085, + -0.0033590311650186777, + 0.019990528002381325, + -0.02524362877011299, + -0.00922885350883007, + 0.019032515585422516, + 0.00626300647854805, + -0.0023371512070298195, + -0.00886161532253027, + 0.011591951362788677, + 0.010122998617589474, + 0.025578932836651802, + 0.028117666020989418, + 0.005001623649150133, + -0.004426816012710333, + -0.0019260043045505881, + 0.0014968945179134607, + 0.005596389528363943, + -0.0013312381925061345, + 0.0003193375014234334, + 0.024940257892012596, + -0.009380538947880268, + 0.006989499554038048, + -0.0005403789109550416, + 0.018361905589699745, + -0.006350824609398842, + -0.0054646627977490425, + 0.02553103305399418, + 0.013507976196706295, + -0.018984613940119743, + -0.009819627739489079, + -0.002223387360572815, + 0.021970419213175774, + 0.03726668655872345, + -0.008781781420111656, + 0.00631489884108305, + 0.015408034436404705, + -0.022832630202174187, + 9.467858035350218e-5, + 0.024525118991732597, + -0.0013392216060310602, + -0.0013511967845261097, + -0.01479330938309431, + -0.006266998127102852, + -0.008198990486562252, + 0.0133083900436759, + -0.009420456364750862, + 0.014066816307604313, + 0.0037562071811407804, + -0.006031487137079239, + -0.020725002512335777, + 0.04132227227091789, + 0.0030476772226393223, + 0.001856149174273014, + -0.005568447522819042, + 0.00835067592561245, + -0.022146055474877357, + -0.028484905138611794, + -0.004410848952829838, + -0.014034883119165897, + -0.01317267119884491, + 0.027111753821372986, + -0.009396505542099476, + 0.003273209324106574, + 0.008566228672862053, + -0.018697209656238556, + -0.003740240354090929, + -0.013755462132394314, + -0.0033749982248991728, + 0.012198692187666893, + 0.007879653014242649, + 9.792184573598206e-5, + 0.010178882628679276, + -0.002317192731425166, + -0.006973532494157553, + -0.0244293175637722, + -0.010306617245078087, + -0.00896540004760027, + 0.018904779106378555, + -0.023710809648036957, + -0.011112945154309273, + 0.00814310647547245, + -0.01385126356035471, + 0.010027197189629078, + -0.008502360433340073, + -0.012981069274246693, + -0.008646062575280666, + -0.003540654433891177, + 0.006175188813358545, + -0.008693963289260864, + 0.029826121404767036, + 0.023455338552594185, + 0.0031394867692142725, + -0.016797151416540146, + 0.010474270209670067, + -0.003544646082445979, + 0.015431984327733517, + 0.023998212069272995, + 0.0009380538831464946, + 0.002075693802908063, + 0.02090063877403736, + -0.014801292680203915, + -0.0005673230043612421, + -0.010602004826068878, + 0.0005972608923912048, + 0.0067779384553432465, + -0.001867126440629363, + -0.009747777134180069, + -0.011663801968097687, + 0.024684788659214973, + -0.026568880304694176, + 0.004386899061501026, + 0.00933263823390007, + -0.001490906928665936, + 0.008813714608550072, + 0.029650487005710602, + 0.02206622064113617, + 0.003612505504861474, + -0.0010123996762558818, + 0.013396208174526691, + -0.0070733255706727505, + 0.014513889327645302, + 0.00429109763354063, + 0.004718211479485035, + -0.004714219830930233, + 0.008238906972110271, + -0.009204903617501259, + -0.003103561233729124, + -0.007951503619551659, + 0.03246065601706505, + 0.008103189058601856, + -0.002694410039111972, + 0.018505608662962914, + 0.013683611527085304, + 0.005676223896443844, + 0.0032652257941663265, + 0.0031175322365015745, + -0.020118262618780136, + -0.0054447040893137455, + 0.011823470704257488, + 0.016246294602751732, + 0.013795379549264908, + -0.0033370768651366234, + 0.005001623649150133, + -0.004422824364155531, + 0.00022752796940039843, + -0.020820803940296173, + 0.0025846378412097692, + 0.01935185305774212, + 0.001662550843320787, + -0.014505906030535698, + 0.01954345405101776, + -0.007165134884417057, + -0.0018731140298768878, + -0.01313275471329689, + 0.001434024889022112, + 0.013060903176665306, + -0.00730085326358676, + -0.016166459769010544, + 0.028117666020989418, + 0.02396627888083458, + 0.011240679770708084, + 0.0024050103966146708, + 0.03429684787988663, + -0.026840316131711006, + 0.02586633712053299, + 0.007420605048537254, + 0.009524241089820862, + -0.01486515998840332, + -0.0024269649293273687, + -0.0021136149298399687, + 0.016876986250281334, + 0.014258419163525105, + 0.0028740374837070704, + 0.0020437599159777164, + -0.02083677239716053, + 0.0018551512621343136, + 0.01655764877796173, + 0.0005768033443018794, + 0.014018915593624115, + -0.03094380348920822, + 0.010905375704169273, + 0.015815189108252525, + -0.015240381471812725, + 0.029363082721829414, + -0.015064746141433716, + -0.001647581928409636, + 0.003127511590719223, + -0.012565930373966694, + -0.02415788173675537, + 0.00795549526810646, + 0.007360729388892651, + -0.010059131309390068, + -0.0033749982248991728, + 0.005316969472914934, + -0.01578325591981411, + -0.009117085486650467, + -0.017675330862402916, + -0.002548712305724621, + -0.011168829165399075, + -0.016653450205922127, + -0.0241099800914526, + -0.008430509828031063, + 0.00787166878581047, + -0.024588987231254578, + -0.00045780022628605366, + -0.003971760161221027, + -0.02125190943479538, + -0.010697806254029274, + -0.009931395761668682, + 0.0038500125519931316, + 0.015503834933042526, + -0.006039470434188843, + 0.04173741117119789, + -0.01793080009520054, + 0.02137964591383934, + -0.01112891174852848, + -0.012589880265295506, + 0.008151089772582054, + 0.00459845969453454, + 0.004207271616905928, + 0.007244969252496958, + 0.005400795489549637, + -0.018298039212822914, + -0.012613831087946892, + -0.013843280263245106, + 0.023199869319796562, + 0.0023890435695648193, + 0.0019379793666303158, + 0.00748447235673666, + 0.00950827356427908, + 0.007153159938752651, + -0.011568000540137291, + -0.0028021864127367735, + 0.003836041549220681, + -0.00043659424409270287, + -0.027127720415592194, + -0.008055288344621658, + -0.022577160969376564, + 0.019032515585422516, + 0.0030017723329365253, + 0.012206675484776497, + -0.013723528943955898, + 0.0029658470302820206, + 0.01076167356222868, + -0.0031434784177690744, + 0.010985209606587887, + 0.0038001162465661764, + 0.005915727000683546, + -0.004338998347520828, + -0.008071254938840866, + 0.008741864003241062, + -0.00532894441857934, + 0.020070360973477364, + -0.013523942790925503, + 0.01812240295112133, + 0.011919272132217884, + -0.009340621531009674, + -0.022992299869656563, + -0.0027762402314692736, + -0.002223387360572815, + -0.011520099826157093, + -0.003243271494284272, + -0.004718211479485035, + -0.015056762844324112, + -0.006682137027382851, + -0.00292592984624207, + -0.0071172346360981464, + 0.011823470704257488, + 0.009396505542099476, + -0.01737195998430252, + -0.006518476642668247, + 0.00048274846631102264, + -0.0018421781715005636, + 0.007400646340101957, + -0.008949433453381062, + 0.016382014378905296, + -0.012541980482637882, + -0.00865404587239027, + -0.009117085486650467, + -0.009667942300438881, + -0.002315196907147765, + -0.00753636471927166, + 0.0488586351275444, + -0.013396208174526691, + -0.024668822064995766, + -0.02064516954123974, + -0.011280597187578678, + 0.0025826420169323683, + -0.022577160969376564, + -0.013547893613576889, + 0.006015520077198744, + 0.017419859766960144, + -0.006546418648213148, + 0.008262857794761658, + 0.01317267119884491, + -0.022928431630134583, + -0.007181101944297552, + 0.004307064227759838, + -0.004279122222214937, + 0.020740970969200134, + -0.0035047288984060287, + -0.011184795759618282, + 0.010578054934740067, + -0.03285982832312584, + -0.0016525714891031384, + 0.010721756145358086, + -0.000623706029728055, + -0.013691594824194908, + -1.450896161259152e-5, + 0.007288878317922354, + 0.0142504358664155, + -0.015216431580483913, + 0.0012094908161088824, + 0.004335006698966026, + -2.5244502467103302e-5, + 0.003933838568627834, + -0.018234170973300934, + -0.019463621079921722, + 0.00016565632540732622, + -0.014154634438455105, + -0.003470799420028925, + -0.01642991416156292, + -0.015966875478625298, + -0.004187312908470631, + -0.027878163382411003, + -0.0016575611662119627, + -0.017627429217100143, + 0.0055285305716097355, + 0.017419859766960144, + -0.01684505306184292, + -0.0007699027191847563, + 0.0124222282320261, + -0.0013162692775949836, + -0.00014731936971656978, + 0.015767289325594902, + 0.004698252771049738, + 0.007081308867782354, + -0.0007339773001149297, + -0.017052622511982918, + -0.03509519249200821, + -0.021826718002557755, + 0.02492429129779339, + -0.011791536584496498, + 0.005979594774544239, + -0.009085151366889477, + 0.0026544928550720215, + -0.0015926957130432129, + 0.006746004801243544, + -0.028085732832551003, + -0.027638660743832588, + 0.005700174253433943, + 0.006698104087263346, + -0.008358659222722054, + -0.0006132277776487172, + 0.036212872713804245, + -0.009308688342571259, + -0.008917499333620071, + 0.01737195998430252, + -0.004594468045979738, + 0.001651573576964438, + 0.006450617220252752, + 0.003987726755440235, + -0.020389698445796967, + 0.02492429129779339, + -0.015360133722424507, + -0.024876391515135765, + -0.011575983837246895, + 0.00566824059933424, + 0.01123269647359848, + -0.021235942840576172, + -0.003734252881258726, + 0.005436720792204142, + -0.018345938995480537, + 0.012941151857376099, + -0.006897689774632454, + -0.014777342788875103, + 0.0037781617138534784, + -0.0014559794217348099, + 0.00527705205604434, + 0.0014180580619722605, + 0.004985656589269638, + -0.022225890308618546, + -0.006378766614943743, + 0.005576430819928646, + 0.009053218178451061, + 0.01591099053621292, + 0.004666319116950035, + 0.013460075482726097, + 0.005732107907533646, + 0.010410401970148087, + -0.001999851083382964, + -0.01476137526333332, + -0.011264629662036896, + 0.028389103710651398, + -0.005033557303249836, + -0.001062795054167509, + -0.011328497901558876, + -0.030704300850629807, + -0.0048978389240801334, + -0.004722203128039837, + -0.0007210042094811797, + -0.009628025814890862, + -0.00263852602802217, + 0.02822943404316902, + 0.007017441559582949, + -0.01642991416156292, + -0.02958661876618862, + -0.002634534379467368, + -0.006969540845602751, + -0.003740240354090929, + 0.007113242521882057, + 0.016781184822320938, + -0.0007030414417386055, + 0.018489640206098557, + 0.020932571962475777, + 0.0021415571682155132, + -0.009931395761668682, + -0.004366940353065729, + 0.011679768562316895, + -0.003107552882283926, + 0.00042736338218674064, + -0.022353624925017357, + -0.02144351229071617, + 0.0030017723329365253, + 0.004462741315364838, + -0.02205025404691696, + -0.01140833180397749, + -0.021698983386158943, + -0.025499098002910614, + 0.021746883168816566, + -0.015839138999581337, + 0.027095787227153778, + 0.01718035712838173, + -0.006406708620488644, + -0.003333084983751178, + -0.024604953825473785, + 0.012078940868377686, + -0.0015158551977947354, + -0.011831454001367092, + -0.003448844887316227, + 0.0013003023341298103, + 0.0007220021216198802, + -0.007672083098441362, + -0.0006820849375799298, + -0.0028500871267169714, + 0.008470427244901657, + 0.030528664588928223, + -0.008406559936702251, + -0.03369010612368584, + 0.018154336139559746, + 0.010282667353749275, + -0.009292720817029476, + -0.010378468781709671, + 0.0012384307337924838, + -0.019160250201821327, + 0.0005209192750044167, + -0.007157151587307453, + 0.005372853484004736, + 0.009324654936790466, + -0.0146655747666955, + 0.006833822466433048, + 0.01123269647359848, + 0.017499694600701332, + 0.007815784774720669, + 0.01697278767824173, + -0.011903305537998676, + 0.008095205761492252, + 0.011687751859426498, + 0.013619744218885899, + 0.00038569982280023396, + -0.002634534379467368, + -0.010170899331569672, + -0.011432282626628876, + -0.018138369545340538, + 0.01109697762876749, + -0.0028800249565392733, + 0.0038540044333785772, + 0.010785623453557491, + 0.004957714583724737, + -0.0031933749560266733, + -0.005656265188008547, + -0.02308810129761696, + -0.0017004722030833364, + -0.0005713147111237049, + 0.015216431580483913, + 0.02423771657049656, + -0.022752797231078148, + -0.015487868338823318, + 0.017052622511982918, + 0.0035765799693763256, + -0.015695437788963318, + -0.0011725673684850335, + -0.014386153779923916, + -0.002810169942677021, + -0.028804242610931396, + 0.007400646340101957, + 0.008071254938840866, + 0.017531627789139748, + 0.0021196026355028152, + -0.004622410051524639, + -0.004267147276550531, + -0.00964399240911007, + -0.004857921507209539, + 0.001884091179817915, + -0.014234469272196293, + -0.0023650932125747204, + 0.012190708890557289, + 0.010051148012280464, + -0.028628606349229813, + -0.023471305146813393, + 0.03276402875781059, + 0.0013492009602487087, + -0.012278527021408081, + 0.01689295284450054, + 0.029889989644289017, + 0.0048499382100999355, + 0.014154634438455105, + -0.008733880706131458, + -0.011679768562316895, + -0.030512697994709015, + 0.026313409209251404, + 0.006474567577242851, + 0.0015877061523497105, + 0.0045585427433252335, + 0.010386452078819275, + 0.0006162215722724795, + -0.007983437739312649, + 0.0016914907610043883, + 0.005636306945234537, + -0.005664248950779438, + -0.029171479865908623, + -0.0026784432120621204, + -0.009316671639680862, + 0.027590759098529816, + -0.0045186253264546394, + 0.0014370187418535352, + 0.010298633947968483, + -0.006861764471977949, + 0.00309557793661952, + 0.016190411522984505, + 0.001317267189733684, + -0.007476489059627056, + 0.01208692416548729, + 0.01208692416548729, + -0.027654627338051796, + 0.013907147571444511, + 0.005301002413034439, + 0.008709929883480072, + 0.02920341305434704, + 0.011895321309566498, + -0.013771429657936096, + -0.01914428360760212, + -0.02280069701373577, + -0.01588704064488411, + 0.014410104602575302, + 0.002931917319074273, + 0.012366344220936298, + -0.024397384375333786, + -0.0009984286734834313, + 0.010378468781709671, + -0.00797545351088047, + 0.005285035353153944, + 0.006769954692572355, + 0.005919718649238348, + 0.009596091695129871, + -0.010570070706307888, + -0.009396505542099476, + -0.0281815342605114, + -0.008366642519831657, + -0.008175039663910866, + -0.0008512340136803687, + -0.0021295819897204638, + -0.009596091695129871, + 0.005979594774544239, + -0.014513889327645302, + -0.0064146919175982475, + 0.031933750957250595, + 0.020581301301717758, + -0.0004288602794986218, + -0.001306289923377335, + 0.005963627714663744, + -0.01960732229053974, + -0.019735056906938553, + -0.029363082721829414, + 0.005396803840994835, + -0.008614128455519676, + 0.015368117019534111, + -0.029554685577750206, + 0.017691297456622124, + -0.01887284591794014, + 0.007472497411072254, + -0.009109102189540863, + -0.014282369054853916, + 0.018681243062019348, + 0.008358659222722054, + 0.007276903372257948, + -0.004582493100315332, + 0.01547190174460411, + 0.007169126532971859, + 0.0039458139799535275, + -0.0244293175637722, + 0.0006721056415699422, + -0.013867231085896492, + 0.021762849763035774, + -0.015304249711334705, + 0.01995859295129776, + -0.01797870174050331, + -0.012805433943867683, + 0.02382257767021656, + 0.006538435351103544, + -0.002010828349739313, + 0.00818302296102047, + 0.005117383319884539, + -0.021954452618956566, + -0.007456530351191759, + -0.015895023941993713, + 0.004802037496119738, + 0.002686426742002368, + -0.007692041806876659, + -0.017547596246004105, + 0.015328199602663517, + 0.017898866906762123, + -0.008486393839120865, + -0.02104433998465538, + 0.012965102680027485, + 0.020932571962475777, + -0.009763743728399277, + -0.002177482470870018, + 0.017691297456622124, + -0.0010014224098995328, + -0.005312977358698845, + 0.00926078762859106, + -0.021698983386158943, + 0.014585739932954311, + 0.022625060752034187, + 0.0022832630202174187, + -0.023806611075997353, + 0.0070334081538021564, + -0.016102593392133713, + 0.007256944663822651, + 0.01797870174050331, + -0.0006286957068368793, + 0.0004842453636229038, + 0.02308810129761696, + 0.007676075212657452, + 0.03142280876636505, + 0.012605847790837288, + -0.0012613830622285604, + 0.0012743561528623104, + 0.005424745846539736, + -0.012653748504817486, + -0.023503240197896957, + -0.024141915142536163, + -0.005261084996163845, + 0.009891479276120663, + -0.007604224141687155, + -0.0004036625614389777, + -0.013420158065855503, + -0.004075544886291027, + 0.0011156853288412094, + -0.0259940717369318, + 0.00031384886824525893, + 0.008075246587395668, + 0.006981515791267157, + 0.009085151366889477, + -0.00397774763405323, + 0.011663801968097687, + 0.018138369545340538, + -0.011647835373878479, + -0.015336182899773121, + 0.0007544348482042551, + -0.005408778786659241, + 0.026648713275790215, + -0.008725897409021854, + -0.01900058053433895, + -0.009276754222810268, + -0.015016845427453518, + 0.01011501532047987, + -0.0016555653419345617, + -0.0045186253264546394, + 0.00023638458515051752, + 0.009739793837070465, + 0.017866933718323708, + 0.01662151701748371, + 0.0073287952691316605, + -0.0008522319258190691, + 0.017882900312542915, + -0.018505608662962914, + 0.0024149897508323193, + 0.007089292164891958, + -0.012039023451507092, + 0.012885267846286297, + -0.011104960925877094, + 0.02993788942694664, + 0.0005812940071336925, + 0.022768763825297356, + -0.00954020768404007, + 0.015447950921952724, + -0.018090469762682915, + -0.01079360768198967, + -0.007676075212657452, + 0.00899733416736126, + -0.006167205516248941, + -0.0030476772226393223, + 0.01960732229053974, + -0.014274385757744312, + 0.0033789898734539747, + -0.013148721307516098, + -0.0029917932115495205, + -0.0015817185631021857, + 0.0007599234231747687, + -0.006199139170348644, + 0.004035627469420433, + -0.009236836805939674, + 0.01344410888850689, + -0.0020048406440764666, + -0.004690269473940134, + 0.005768033675849438, + 0.005556472577154636, + -0.0052131847478449345, + 0.009524241089820862, + 0.012685681693255901, + 0.0009994265856221318, + -0.004845946561545134, + -0.02117207646369934, + 0.005241126753389835, + 0.0035326711367815733, + -0.006925631780177355, + -0.016605550423264503, + 0.006765963044017553, + -0.006929623428732157, + 0.001073772320523858, + 0.007751917466521263, + -0.016126543283462524, + -0.015615603886544704, + -0.012174742296338081, + 2.8207105060573667e-5, + -0.0036783688701689243, + -0.006530451588332653, + 0.007256944663822651, + -0.013939081691205502, + -0.006570369005203247, + 0.0032891761511564255, + 0.006003544665873051, + -0.0070733255706727505, + -0.006478559225797653, + 0.0032552466727793217, + -0.0004103985847905278, + 0.0018990602111443877, + -0.0021355694625526667, + -0.005037548951804638, + -0.024333517998456955, + 0.004750145133584738, + 0.0248444564640522, + -0.004933764226734638, + -0.007971461862325668, + 0.0054447040893137455, + -0.007676075212657452, + 0.0014120704727247357, + 0.02538732998073101, + -0.0027263439260423183, + -0.027670593932271004, + 0.024525118991732597, + -0.028213467448949814, + 0.017355993390083313, + -0.015623587183654308, + 0.016254277899861336, + -0.008709929883480072, + 0.015200464986264706, + -0.022082187235355377, + 0.01874511130154133, + 0.01144026592373848, + 0.013220571912825108, + -0.0061033377423882484, + -0.0024249691050499678, + 0.0033191139809787273, + 0.022082187235355377, + -0.008127138949930668, + 0.016310162842273712, + 0.012605847790837288, + -0.00875783059746027, + 0.0022353625390678644, + -0.004027644172310829, + 0.016318146139383316, + 0.0034807787742465734, + 0.007149168290197849, + -0.021603181958198547, + 0.007612207438796759, + -0.016653450205922127, + -0.0021894576493650675, + -0.0005967619363218546, + 0.011065044440329075, + 0.012685681693255901, + -0.005600381176918745, + 0.005348903127014637, + -0.023774676024913788, + 0.009252804331481457, + 0.0026245550252497196, + 0.00046678161015734076, + 0.016749251633882523, + 0.018154336139559746, + -0.0014310311526060104, + -0.0013013002462685108, + -0.0015847122995182872, + -0.008294790983200073, + -0.01832997240126133, + -0.001821221667341888, + -0.011783553287386894, + 0.011751620098948479, + -0.014849193394184113, + -0.008406559936702251, + -0.006306915543973446, + 0.011536067351698875, + 0.0018481657607480884, + 0.027191586792469025, + 0.002987801330164075, + -0.014992895536124706, + -0.006682137027382851, + -0.01642991416156292, + -0.017627429217100143, + -0.022992299869656563, + -0.008342691697180271, + 0.010162916034460068, + 0.007979446090757847, + -0.016797151416540146, + -0.0142504358664155, + -0.007883644662797451, + 0.0037063108757138252, + -0.011783553287386894, + -0.009548190981149673, + 0.0045106420293450356, + 0.008949433453381062, + -0.004323031287640333, + 0.01449792180210352, + -0.02707981877028942, + 0.008398575708270073, + -0.005995561368763447, + 0.012933168560266495, + -0.006909665185958147, + 0.008430509828031063, + 0.002987801330164075, + -0.007735950872302055, + 0.012829383835196495, + 0.00010004245268646628, + 0.003618492977693677, + 0.031390875577926636, + -0.00943642295897007, + -0.010107032023370266, + 0.01605469174683094, + 0.004614426754415035, + 0.010330568067729473, + -0.020549368113279343, + 0.0007684058509767056, + 0.020581301301717758, + 0.012677698396146297, + 0.0017703272169455886, + -0.0058279093354940414, + -0.00022178987273946404, + 0.005057507660239935, + 0.009707859717309475, + 0.010506203398108482, + 0.020134229212999344, + -0.022513292729854584, + -0.007320811972022057, + -0.007879653014242649, + -0.010649905540049076, + 0.0023371512070298195, + 0.0006561387563124299, + -0.03407331183552742, + -0.011248663067817688, + 0.008709929883480072, + -0.009612058289349079, + 0.001186538371257484, + -0.007209043949842453, + 0.02056533470749855, + -0.009380538947880268, + 0.015288282185792923, + 0.005500588566064835, + 0.0073886713944375515, + -0.008949433453381062, + -0.010250733233988285, + -0.009564157575368881, + 0.002512787003070116, + 0.012182725593447685, + 0.005660257302224636, + -0.004338998347520828, + 0.01730809174478054, + 0.03538259491324425, + 0.0011905301362276077, + -0.0009659959468990564, + 0.012645765207707882, + -0.02042163349688053, + 0.010562087409198284, + 0.018282070755958557, + -0.009556174278259277, + 1.607602280273568e-5, + 0.007444555405527353, + -0.025147827342152596, + -0.0002474865468684584, + -0.0369473472237587, + 0.01151211652904749, + 0.0009395508095622063, + 0.0018202237552031875, + 0.006793905049562454, + -0.006235064473003149, + 0.0008093209471553564, + -0.014402121305465698, + -0.008230923675000668, + -0.0006212111911736429, + 0.014913060702383518, + 0.05904550105333328, + 0.028053799644112587, + -0.006542426999658346, + -0.0012254576431587338, + 0.006722054444253445, + -0.02722352184355259, + 0.0119512053206563, + -0.020006494596600533, + -0.007979446090757847, + -0.015048779547214508, + 0.014346237294375896, + -0.007205052301287651, + 0.012957118451595306, + 0.03226905316114426, + -0.007444555405527353, + 0.01058603823184967, + -0.015096680261194706, + 0.008518327958881855, + 0.00018923240713775158, + 0.00809121411293745, + -0.0007684058509767056, + -0.016126543283462524, + -0.0018182278145104647, + 0.008542277850210667, + 0.013978999108076096, + 0.011280597187578678, + 0.0006960559403523803, + -0.00475413678213954, + -0.004171345848590136, + -0.002229374833405018, + 0.03276402875781059, + -0.00261257984675467, + -0.022593127563595772, + 0.009484323672950268, + 0.002516778651624918, + 0.03314723074436188, + 0.005740091670304537, + 0.009715843014419079, + -0.013108803890645504, + 0.002957863500341773, + -0.012613831087946892, + -0.021571246907114983, + 0.006594319362193346, + -0.02356710657477379, + -0.018505608662962914, + 0.0012414244702085853, + 0.005273060407489538, + 0.010003247298300266, + 0.0037542113568633795, + -0.00678592175245285, + 0.005883793346583843, + 0.022353624925017357, + -0.0027083810418844223, + 0.009164986200630665, + -0.016278229653835297, + 0.021331744268536568, + 0.010641922242939472, + -0.03806503117084503, + -0.009484323672950268, + -0.006610285956412554, + -0.005875810049474239, + 0.004726194776594639, + 0.010506203398108482, + 0.02517976053059101, + -0.00022628055012319237, + 0.033626239746809006, + -0.005033557303249836, + 0.004913805518299341, + 0.011104960925877094, + 0.005676223896443844, + 0.028836175799369812, + -0.017212290316820145, + -0.004466733429580927, + -0.0027922072913497686, + -0.012007089331746101, + -0.006622261367738247, + 0.002345134736970067, + -0.02104433998465538, + -0.011192779056727886, + 0.01772323064506054, + 0.012334411032497883, + -0.010067114606499672, + 0.015703421086072922, + -0.006562385708093643, + -0.01860140822827816, + 0.00842252653092146, + -0.007185093592852354, + 0.01395504828542471, + -0.00809121411293745, + -0.017052622511982918, + -0.02118804305791855, + 0.007376695983111858, + -0.0128932511433959, + -0.0012673706514760852, + 0.016940854489803314, + -0.01364369411021471, + -0.008981366641819477, + 0.0164937824010849, + 0.0019359835423529148, + 0.018505608662962914, + -0.002125590108335018, + 0.010099048726260662, + -0.002686426742002368, + 0.011719685979187489, + -0.007436572108417749, + -0.034392647445201874, + 0.01089739240705967, + 0.00940448883920908, + 0.009037250652909279, + 0.027654627338051796, + -0.01962328888475895, + 0.010418386198580265, + -0.002548712305724621, + 0.003594542620703578, + 0.004642368759959936, + 0.029746288433670998, + -0.0017034659394994378, + -0.011560017243027687, + 0.014569773338735104, + 0.025882303714752197, + -0.003412919584661722, + 0.012150791473686695, + 0.021746883168816566, + -0.006582343950867653, + 0.01684505306184292, + -0.007891627959907055, + -0.0004044109955430031, + 0.03223711997270584, + -0.011344464495778084, + -0.01676521822810173, + 0.01880897767841816, + -0.00660230265930295, + -0.015352150425314903, + -0.003494749777019024, + 0.005688199307769537, + 0.006494526285678148, + 0.012142808176577091, + 0.0162862129509449, + 0.008342691697180271, + -0.009069184772670269, + -0.00811117235571146, + 0.03175811469554901, + 0.022513292729854584, + -0.014513889327645302, + -0.005113391671329737, + -0.01327645592391491, + -0.003993714693933725, + 0.025626834481954575, + 0.009891479276120663, + -0.012310460209846497, + 0.005516555160284042, + -0.006390741560608149, + 0.006961557548493147, + 0.009324654936790466, + 0.0021814743522554636, + 0.0009575135190971196, + -0.00038819463225081563, + 0.03062446601688862, + 0.0045345923863351345, + -0.005153308622539043, + -0.0035566212609410286, + 0.01463364064693451, + 0.009420456364750862, + 0.03305143117904663, + 0.013755462132394314, + -0.014553806744515896, + -0.006318890489637852, + -0.014442037791013718, + 0.00728089502081275, + 0.0014719462487846613, + 0.00964399240911007, + -0.00047651142813265324, + 0.003592546796426177, + 0.011863388121128082, + -0.012078940868377686, + -0.010721756145358086, + -0.007823769003152847, + -0.017531627789139748, + -0.005712149664759636, + -0.0001251778012374416, + 0.012973085977137089, + 0.022848598659038544, + 0.00821495708078146, + 0.004726194776594639, + -0.004398874007165432, + 0.004175337962806225, + 0.0011705715442076325, + 0.006063420791178942, + 0.01879301108419895, + -0.001577726798132062, + 0.022177988663315773, + 0.023375503718852997, + -0.0021395611111074686, + -0.03260435909032822, + -0.008622112683951855, + 0.005815933924168348, + -0.0007000476471148431, + 0.011081011034548283, + -0.037905361503362656, + -0.0061392635107040405, + 0.00621111411601305, + -0.014553806744515896, + 0.008035330101847649, + -0.009628025814890862 + ], + "1e92140d-6f5e-46bb-9a95-f0f06f5746db": [ + -0.013412305153906345, + 0.004765271209180355, + -0.018067581579089165, + 0.007295158691704273, + -0.019855888560414314, + -0.026271086186170578, + -0.0038498283829540014, + 0.025717562064528465, + -0.04013756662607193, + 0.010637589730322361, + 0.02473825216293335, + 0.02287898026406765, + -0.018564334139227867, + -0.016123151406645775, + -0.0053613740019500256, + 0.023673782125115395, + -0.044963154941797256, + 0.03057153895497322, + -0.010055680759251118, + 0.007955129258334637, + 0.08833670616149902, + 0.016094766557216644, + -0.03673126548528671, + 0.025859491899609566, + -0.013532944954931736, + -0.014945140108466148, + 0.006720345467329025, + -0.0016925052041187882, + -0.03613516315817833, + 0.039144061505794525, + 0.042550358921289444, + -0.0013403435004875064, + 0.004655276425182819, + 0.044622525572776794, + 0.02469567209482193, + -0.011084667406976223, + -0.002393280388787389, + 0.031196027994155884, + 0.00017242174362763762, + -0.0414716973900795, + -0.02490856684744358, + 0.014391615986824036, + -0.008260277099907398, + 0.012553634122014046, + -0.03800862655043602, + 0.012610405683517456, + 0.020168133080005646, + -0.010829194448888302, + 0.0005757001345045865, + 0.03480102866888046, + 0.013064579106867313, + -0.05725422129034996, + -0.013021999970078468, + 0.01884819194674492, + 0.0017732273554429412, + -0.029407721012830734, + -0.003502101870253682, + 0.05086740851402283, + -0.015612207353115082, + 0.0015993642155081034, + -0.0008107703179121017, + -0.007046782411634922, + -0.0020491022150963545, + 0.019685573875904083, + -0.04155685752630234, + 1.7949048924492672e-5, + 0.03287079185247421, + 0.007586113177239895, + -0.06954528391361237, + -0.016747640445828438, + 0.01727277785539627, + 0.048397842794656754, + 0.00942409597337246, + 0.03392106667160988, + -0.016421202570199966, + 0.008231891319155693, + 0.02857033908367157, + -0.031139256432652473, + 0.030968941748142242, + 0.031565044075250626, + -0.018053388223052025, + 0.01052404660731554, + 0.002325864043086767, + -0.030855398625135422, + 0.04050657898187637, + -0.009913751855492592, + -0.033211421221494675, + -0.025916263461112976, + -0.02851356752216816, + -0.050555165857076645, + 0.014576124027371407, + 0.016548939049243927, + 0.03610677644610405, + -0.005670069716870785, + -0.016534745693206787, + 0.004708499647676945, + 0.005790709517896175, + 0.014789017848670483, + 0.03397784009575844, + -0.0285277608782053, + 0.005283312872052193, + 0.04396965354681015, + -0.039144061505794525, + 0.005070419050753117, + -0.001204623724333942, + -0.011744637973606586, + -0.009502156637609005, + -0.029152248054742813, + -0.020168133080005646, + 0.06704733520746231, + 0.012610405683517456, + -0.03465909883379936, + 0.011489165015518665, + 0.010566625744104385, + 0.004392707254737616, + -0.04993067681789398, + 0.004924941807985306, + -0.025064688175916672, + -0.0016658934764564037, + -0.019742345437407494, + 0.025987228378653526, + 0.035113271325826645, + -0.013901961036026478, + 0.004587859846651554, + -0.030883783474564552, + 0.0043607731349766254, + -0.0046446314081549644, + -0.0035091983154416084, + 0.005741034168750048, + 0.015101262368261814, + -0.05339374765753746, + -0.01423549372702837, + -0.03582291677594185, + -0.009161527268588543, + -0.035368744283914566, + -0.016676675528287888, + 0.02461051568388939, + 0.03809378668665886, + -0.0340346097946167, + 0.035226814448833466, + -0.042976148426532745, + -0.03281402215361595, + -0.015058683231472969, + -0.00358903338201344, + -0.03443201258778572, + -0.004559474065899849, + -0.035283587872982025, + 0.042550358921289444, + -0.004811398219317198, + 0.014561931602656841, + -0.01917462795972824, + -0.03199082985520363, + 0.03355205059051514, + 0.013611005619168282, + 0.0014042116235941648, + 0.008636388927698135, + -0.02875484712421894, + 0.002015393925830722, + 0.026001421734690666, + -0.002244254807010293, + 0.02453955076634884, + -0.03622031956911087, + -0.009005405008792877, + 0.022325456142425537, + 0.03077024035155773, + 0.013298762030899525, + 0.037242211401462555, + 0.027718763798475266, + -0.0456160306930542, + 0.008267372846603394, + 0.035510674118995667, + -0.03823571279644966, + 0.006028440780937672, + 0.01250395830720663, + 0.026299472898244858, + -0.02114744484424591, + 0.04059173911809921, + 0.03942791745066643, + -0.00474398210644722, + -0.05949670076370239, + 0.012305257841944695, + -0.04223811626434326, + 0.02679622359573841, + -0.0009349582833237946, + -0.018294667825102806, + 0.05154866725206375, + 0.024142149835824966, + -0.0024979531299322844, + 0.00756482407450676, + 6.891325756441802e-5, + 0.01342649757862091, + 0.007543534506112337, + -0.010126644745469093, + 0.018521754071116447, + -0.009197008796036243, + -0.023446695879101753, + 0.019728152081370354, + -0.035453904420137405, + 0.012787817046046257, + 0.019941046833992004, + -0.001766130910255015, + -0.01698892004787922, + -0.02259512059390545, + 0.02273705042898655, + -0.03565260395407677, + -0.0013509881682693958, + -0.014334844425320625, + 0.010715651325881481, + 0.028201323002576828, + -0.04967520385980606, + 0.02857033908367157, + -0.019912660121917725, + 0.011666576378047466, + -0.006550030317157507, + -0.025235002860426903, + 0.008061575703322887, + -0.006709700915962458, + 0.02866968885064125, + 0.031054098159074783, + -0.010247284546494484, + 0.007266772910952568, + -0.002840357134118676, + 0.02893935516476631, + -0.01713084802031517, + -0.04022272303700447, + -0.031309571117162704, + 0.010325346142053604, + 0.04334516450762749, + -0.03851957246661186, + -0.006507451646029949, + 0.044792842119932175, + -0.006209400482475758, + -0.0028545500244945288, + -0.04405480995774269, + -0.015271577052772045, + -0.0033974291291087866, + -0.0002375095646129921, + 0.0072419350035488605, + 0.022453192621469498, + -0.04138654097914696, + 0.019614608958363533, + 0.01338391937315464, + 0.03042961098253727, + 0.020593920722603798, + 0.007266772910952568, + 0.020338447764515877, + 0.016052186489105225, + 0.0004896555910818279, + 0.039200831204652786, + -0.031082484871149063, + 0.027491677552461624, + 0.0019958787597715855, + 0.0005703778006136417, + -0.05745292082428932, + -0.02324799634516239, + 0.04027949273586273, + 0.020267482846975327, + -0.030003823339939117, + -0.014618703164160252, + -0.029379334300756454, + -0.027222011238336563, + -0.0021076479461044073, + 0.02092035673558712, + -0.016790218651294708, + 0.03795185685157776, + -0.03244500607252121, + 0.017443092539906502, + -0.044764455407857895, + -0.007593209855258465, + 0.045161858201026917, + -0.04365740716457367, + -0.005120094399899244, + -0.015612207353115082, + -0.020082974806427956, + -0.011553033255040646, + 0.01742890104651451, + 0.017911458387970924, + -0.004424641374498606, + -0.00477591622620821, + -0.0014317103195935488, + 0.0007952468004077673, + -0.029833508655428886, + -0.007855778560042381, + 0.009189913049340248, + -0.043089691549539566, + -0.008785414509475231, + -0.023134451359510422, + -0.008615099824965, + -0.023347346112132072, + -0.016790218651294708, + 0.016179922968149185, + 0.0012835718225687742, + 0.017911458387970924, + 0.025859491899609566, + 0.021786125376820564, + 0.0051484801806509495, + 0.009828593581914902, + 0.004733337089419365, + -0.010765326209366322, + 0.023815711960196495, + -0.056118786334991455, + -0.013703259639441967, + 0.018124353140592575, + -0.01893334835767746, + -0.013547137379646301, + -0.03570937365293503, + 0.029152248054742813, + -0.01697472669184208, + -0.0381789430975914, + 0.008806703612208366, + -0.01435613352805376, + 0.012936842627823353, + -0.009445385076105595, + -0.025249196216464043, + -0.027832306921482086, + 0.029265791177749634, + 0.018436597660183907, + -0.0024553744588047266, + -0.02123260125517845, + -0.0004976391210220754, + 0.05367760732769966, + 0.017769530415534973, + -0.0639248937368393, + 0.02658333070576191, + -0.01562640070915222, + -0.03843441605567932, + 0.0036972544621676207, + -0.008033189922571182, + -0.047092095017433167, + -0.012880071066319942, + -0.00842349510639906, + 0.008636388927698135, + -0.01748567260801792, + 0.0002612383395899087, + 0.006525192875415087, + -0.041301384568214417, + -0.01324908621609211, + -0.0692046582698822, + -0.01879142038524151, + -0.027945850044488907, + -0.012872974388301373, + -0.00360854878090322, + -0.014789017848670483, + -0.0021981277968734503, + 0.024000220000743866, + -0.007628691848367453, + -0.04777335375547409, + 0.025164039805531502, + 0.004062721971422434, + -0.005279764533042908, + 0.0008289549732580781, + -0.00959441065788269, + 0.012028495781123638, + 0.020650692284107208, + 0.0378950834274292, + -0.014576124027371407, + 0.017755337059497833, + -0.01686118356883526, + 0.014874175190925598, + -0.03414815291762352, + -0.01528576947748661, + 0.0019249141914770007, + -0.04036465287208557, + -0.03025929629802704, + 0.010992413386702538, + 0.01046017836779356, + -0.012163328938186169, + 0.000970440567471087, + -0.0011398685164749622, + -0.007657078094780445, + -0.008913150988519192, + 0.012532344087958336, + 0.02114744484424591, + -0.03230307623744011, + -0.039144061505794525, + -0.021502267569303513, + 0.02875484712421894, + -0.02083520032465458, + -0.03426169604063034, + 0.010006004944443703, + -0.015158033929765224, + 0.02871226705610752, + 0.011240788735449314, + -0.060405049473047256, + 0.03979693353176117, + 0.01435613352805376, + -0.023432502523064613, + 0.0003415170358493924, + 0.033523667603731155, + -0.0002854106714949012, + -0.008217697963118553, + 0.034886185079813004, + -0.028996126726269722, + -0.0030124462209641933, + -0.01318521797657013, + 0.03792347013950348, + 0.015569628216326237, + 0.033324964344501495, + -0.003910148050636053, + -0.012525247409939766, + 0.014448387548327446, + 0.012716852128505707, + 0.014576124027371407, + 0.004523991607129574, + 0.011794312857091427, + -0.021928055211901665, + -0.01928817294538021, + -0.0028758395928889513, + 0.00862219650298357, + 0.034999728202819824, + -0.015739943832159042, + 0.01701730489730835, + -0.0029113218188285828, + 0.01320650801062584, + 0.04368579387664795, + -0.015101262368261814, + 0.0073519302532076836, + 0.014107758179306984, + -0.04351547732949257, + -0.031025713309645653, + 0.0287406537681818, + 0.03184890374541283, + 0.010644686408340931, + 0.0494765043258667, + 0.012816202826797962, + 0.009615699760615826, + 0.0457579605281353, + 0.016293466091156006, + -0.01881980523467064, + -0.02654075250029564, + 0.007976418361067772, + 0.03755445405840874, + -0.008189312182366848, + -0.009289262816309929, + 0.00624843081459403, + -0.022524157539010048, + -0.005496206693351269, + 0.01723019964993, + 0.014107758179306984, + -0.006702604237943888, + 0.01897592842578888, + 0.042834218591451645, + -0.004403351806104183, + 0.005655876826494932, + 0.0004958650097250938, + -0.03071346879005432, + -0.06227851286530495, + 0.007011300418525934, + 0.017968231812119484, + -0.006113598123192787, + 0.002050876384600997, + 0.016009608283638954, + -0.03377914056181908, + 0.018308861181139946, + 0.0073164477944374084, + -0.001947977696545422, + 0.019784923642873764, + -0.04706370830535889, + -0.014341941103339195, + 0.0034062997438013554, + -0.007983515039086342, + -0.010495660826563835, + -0.003473716089501977, + 0.012234292924404144, + 0.016648290678858757, + -0.04005240648984909, + -0.004690758418291807, + 0.015825100243091583, + 0.0048610735684633255, + -0.0017483897972851992, + -0.025618212297558784, + -0.010651783086359501, + -0.03077024035155773, + 0.004790109116584063, + -0.015654785558581352, + 0.003761122701689601, + 0.00335839856415987, + 0.0002517024986445904, + -0.008338337764143944, + 0.010878869332373142, + -0.023333152756094933, + -0.03752606734633446, + -0.020253289490938187, + 0.014476773329079151, + 0.0022424806375056505, + -0.00935313105583191, + 0.013738742098212242, + -0.03235984593629837, + 0.012809106148779392, + -0.002700202167034149, + 0.03851957246661186, + -0.003149053081870079, + 0.016676675528287888, + 0.023219609633088112, + 0.014831596985459328, + -0.02270866557955742, + -0.005574267357587814, + -0.018649490550160408, + -0.015413505956530571, + -0.004091107752174139, + 0.018209511414170265, + -0.04413996636867523, + -0.006620995234698057, + 0.021658388897776604, + -0.011865276843309402, + -0.02831486612558365, + -0.01707407645881176, + -0.035028114914894104, + -0.003014220390468836, + -0.012865877710282803, + -0.03264370560646057, + -0.0007908114930614829, + -0.005843932740390301, + 0.0038037013728171587, + -0.03355205059051514, + -0.019529452547430992, + -0.025490475818514824, + -0.0034293632488697767, + 0.015938643366098404, + -0.007043234072625637, + 0.012127846479415894, + 0.015981223434209824, + -0.012596212327480316, + 0.012858781032264233, + -0.03590807691216469, + -0.011872373521327972, + -0.015754135325551033, + -0.010885966010391712, + 0.02700911834836006, + -0.0307418555021286, + -0.021771932020783424, + 0.015001911669969559, + -0.011127245612442493, + -0.007983515039086342, + 0.012078170664608479, + 0.017939845100045204, + -0.004974616691470146, + 0.00570555217564106, + 0.021374531090259552, + 0.05583493039011955, + -0.012858781032264233, + 0.02268027886748314, + 0.003026639111340046, + -0.029521264135837555, + -0.007408701814711094, + 0.027945850044488907, + -0.019884275272488594, + 0.04337355121970177, + -0.020139746367931366, + 0.0027942301239818335, + -0.0020916808862239122, + 0.005471368785947561, + -0.019713958725333214, + -0.02458212897181511, + -0.009310552850365639, + -0.033381737768650055, + 0.04036465287208557, + -0.026100771501660347, + -0.004545281175523996, + -0.037469297647476196, + -0.00953763909637928, + 0.028201323002576828, + 0.028130358085036278, + 0.01879142038524151, + -0.012901360169053078, + 2.2883303245180286e-5, + -0.0056452322751283646, + 0.00854413490742445, + -0.005066870711743832, + 0.008409302681684494, + 0.020097168162465096, + 0.0009252007002942264, + 0.03772477060556412, + 0.0007455715676769614, + -0.04439543932676315, + 0.03400622680783272, + -0.010992413386702538, + 0.03397784009575844, + -0.006496807094663382, + -0.017812108621001244, + 0.033268194645643234, + -0.02126098796725273, + -0.012007206678390503, + -0.01339101605117321, + -0.017925651744008064, + 0.0017643568571656942, + -0.035425517708063126, + -0.010545335710048676, + 0.006823244038969278, + 0.037015125155448914, + 0.00768546387553215, + 0.025391126051545143, + 0.022126754745841026, + -0.012738141231238842, + 0.0058261919766664505, + 0.017982423305511475, + -0.023730553686618805, + 0.00762159563601017, + 0.029123863205313683, + 0.007359026465564966, + 0.005868770647794008, + 0.022325456142425537, + 0.008565424010157585, + -0.03670287877321243, + -0.024198921397328377, + 0.04209618642926216, + 0.008047383278608322, + 0.015867680311203003, + -0.013036192394793034, + 0.023546047508716583, + -0.02855614572763443, + 0.0025706917513161898, + 0.019486872479319572, + -0.004325291141867638, + 0.033268194645643234, + 0.021771932020783424, + -0.0009438288980163634, + 0.034999728202819824, + 0.03406299650669098, + -0.0021555491257458925, + -0.007266772910952568, + -0.003267918713390827, + 0.05523882806301117, + -0.05546591430902481, + 0.033097878098487854, + 0.007834489457309246, + -0.004889459349215031, + -0.010034391656517982, + -0.03641902282834053, + -0.008231891319155693, + 0.007337737362831831, + 0.0069580767303705215, + 0.016818605363368988, + -0.035226814448833466, + 0.023829905316233635, + -0.012063978239893913, + 0.03227468952536583, + 0.023645397275686264, + -0.03289917856454849, + -0.017854686826467514, + -0.01228396873921156, + 0.0005025179125368595, + 0.009807304479181767, + 0.027122661471366882, + -0.003934985958039761, + 0.005733937956392765, + -0.04729079455137253, + 0.006940335500985384, + 0.025149846449494362, + 0.02445439249277115, + -0.01899011991918087, + 0.003959823399782181, + 0.025717562064528465, + 0.01928817294538021, + -0.009558928199112415, + -0.015640592202544212, + -0.019728152081370354, + 0.002015393925830722, + 0.023333152756094933, + -0.010921448469161987, + -0.01931655779480934, + 0.0018645942909643054, + -0.012943939305841923, + 0.018464982509613037, + -0.01727277785539627, + 0.014533545821905136, + -0.01138981431722641, + -0.0038746658246964216, + 0.005584912374615669, + 0.009260877035558224, + -0.0018433048389852047, + -0.00762159563601017, + 0.02486598864197731, + 0.027051696553826332, + -0.0014680797467008233, + 0.005183962173759937, + 0.007770621217787266, + -0.021828703582286835, + -0.005780064966529608, + -0.008898957632482052, + -0.00953054241836071, + 0.010729843750596046, + -0.04186910018324852, + 0.0029006770346313715, + -0.00238440977409482, + -0.01141110435128212, + -0.001319941133260727, + 0.009275070391595364, + 0.0009296359494328499, + 0.0071425847709178925, + 0.012432994320988655, + -0.002893580589443445, + -0.010367924347519875, + -0.012099460698664188, + -0.007266772910952568, + 0.0068516298197209835, + 0.005957476329058409, + 0.016534745693206787, + 0.010793711990118027, + -0.01725858449935913, + -0.028002621605992317, + 0.0031135708559304476, + -0.008955729193985462, + 0.0009225395042449236, + -0.0024269884452223778, + -0.009189913049340248, + -0.02459632232785225, + -0.021587423980236053, + 0.0053613740019500256, + -0.006819695699959993, + -0.014050986617803574, + 0.019884275272488594, + 0.011694962158799171, + -0.0013403435004875064, + 0.012220100499689579, + -0.009835690259933472, + 0.0029130959883332253, + 0.016534745693206787, + 0.0014219527365639806, + -0.023915061727166176, + -0.002442955505102873, + 0.012979420833289623, + -0.015058683231472969, + -0.04970359057188034, + -0.021942246705293655, + -0.0022903818171471357, + 0.019430100917816162, + -0.01703149825334549, + 0.01917462795972824, + 0.0004351015668362379, + 0.005691359285265207, + -0.003910148050636053, + -0.0058936080895364285, + 0.008835089392960072, + 0.010573722422122955, + -0.00960860401391983, + 0.005372018553316593, + 0.007607402745634317, + 0.02876904048025608, + -0.037497684359550476, + 0.012014303356409073, + -0.01916043646633625, + 0.02492276020348072, + -0.010140838101506233, + 0.015810906887054443, + 0.023418311029672623, + 0.039002131670713425, + -0.004658824298530817, + 0.02110486477613449, + 0.009374421089887619, + 0.03605000674724579, + -0.010843387804925442, + 0.03602162003517151, + 0.019855888560414314, + 0.010949834249913692, + 0.009381516836583614, + 0.020139746367931366, + 0.013632295653223991, + -0.012354932725429535, + 0.037440910935401917, + 0.023134451359510422, + 0.03238823264837265, + 0.021402915939688683, + -0.023574432358145714, + -0.01046017836779356, + -0.02503630332648754, + -0.0062803649343550205, + 0.011957530863583088, + 0.031650200486183167, + -0.027094274759292603, + 0.03244500607252121, + 0.029805121943354607, + 0.012227196246385574, + 0.022112561389803886, + 0.004978165030479431, + -0.00025192424072884023, + -0.0015975900460034609, + 0.01710246317088604, + -0.016577325761318207, + 0.0046872105449438095, + -0.01887657679617405, + -0.025149846449494362, + -0.0012179295299574733, + -0.021743547171354294, + 0.00030270827119238675, + -0.0066742184571921825, + 0.046666305512189865, + 0.003810797818005085, + -0.012425897642970085, + -0.001233009505085647, + -0.0018699165666475892, + 0.010204706341028214, + -0.014349037781357765, + 0.008104154840111732, + 0.005031388718634844, + -0.01721600629389286, + 0.009644086472690105, + -0.031479887664318085, + -0.014547738246619701, + 0.0024110216181725264, + 0.005808450747281313, + -0.03616354987025261, + 0.015668978914618492, + 0.01046727504581213, + -0.005627491045743227, + 0.007458377163857222, + -0.01145368255674839, + 0.014079372398555279, + 0.020664885640144348, + 0.016690868884325027, + -0.01696053333580494, + -0.027534255757927895, + -0.005769419949501753, + 0.0341765396296978, + -0.023290574550628662, + -0.0040733665227890015, + -0.01887657679617405, + 0.0035500030498951674, + 0.019799116998910904, + 0.005297505762428045, + -0.002206998411566019, + 0.019699767231941223, + 0.02693815343081951, + -0.0016339593566954136, + -0.02696654014289379, + -0.021729353815317154, + 0.020451990887522697, + -0.017826301977038383, + 0.012731045484542847, + 0.03868988901376724, + 0.015342541970312595, + -0.013575523160398006, + -0.021984826773405075, + 0.03437524288892746, + 0.00762159563601017, + 0.03281402215361595, + -0.010545335710048676, + -0.006014247890561819, + -0.008941536769270897, + 0.048397842794656754, + -0.019415907561779022, + -0.02884000353515148, + -0.042976148426532745, + 0.0015346090076491237, + 0.027392325922846794, + -0.03414815291762352, + 0.0011123697040602565, + -0.013085868209600449, + -0.0007717397529631853, + 0.00430045323446393, + -0.008643485605716705, + -0.029052898287773132, + -0.015910258516669273, + -0.00948796421289444, + -0.011595611460506916, + 0.008579617366194725, + -0.03258693218231201, + 0.023943448439240456, + -0.03233146294951439, + 0.02676783874630928, + -0.0016472652787342668, + 0.006975817959755659, + -0.015853486955165863, + -0.0007371445535682142, + 0.0008573408122174442, + -0.004169168882071972, + -0.009942137636244297, + -0.025788526982069016, + -0.006251979153603315, + 0.008331241086125374, + 0.0012853458756580949, + 0.01723019964993, + 0.022297069430351257, + -0.007891261018812656, + -0.008011900819838047, + -0.046439219266176224, + -0.04411157965660095, + -0.006010699551552534, + -0.013724549673497677, + -0.017655987292528152, + -0.01343359425663948, + -0.0033921068534255028, + 0.017996616661548615, + -0.019444294273853302, + -0.059950873255729675, + -0.009842786937952042, + 0.013972925022244453, + 0.00017264351481571794, + 0.004194006323814392, + 0.00614198436960578, + 0.005531688686460257, + 0.004960423801094294, + -0.021913861855864525, + -0.02659752406179905, + -0.016108959913253784, + -0.008011900819838047, + 0.03037283942103386, + -0.01425678376108408, + -0.0022052242420613766, + -0.011134342290461063, + -0.010318249464035034, + -0.033637210726737976, + -0.025916263461112976, + 0.007990611717104912, + -0.008473170921206474, + -0.03627709299325943, + 0.018748842179775238, + 0.014022600837051868, + -0.018209511414170265, + 0.02490856684744358, + 0.018621105700731277, + 0.006347781512886286, + 0.008260277099907398, + -0.04800044000148773, + -0.0013651810586452484, + -0.006702604237943888, + 0.026171736419200897, + 0.0051449318416416645, + -0.011609804816544056, + -0.011702058836817741, + -0.0029592227656394243, + -0.0015984771307557821, + 0.025291774421930313, + 0.013007806614041328, + 0.008636388927698135, + -0.014902560971677303, + 0.0008857266511768103, + -0.017556635662913322, + 0.02087777853012085, + 0.0068480814807116985, + -0.006894208490848541, + -0.00867187138646841, + 0.009835690259933472, + -0.006308750715106726, + 0.05892898514866829, + -0.01718762144446373, + 0.008721546269953251, + -0.02087777853012085, + -0.03576614707708359, + -0.011801409535109997, + 0.010701457969844341, + -0.008246083743870258, + 0.010488564148545265, + -0.03613516315817833, + 0.03017413802444935, + -0.01443419512361288, + -0.021999018266797066, + 0.0248801801353693, + -0.005024292040616274, + -0.002799552632495761, + 0.008820896968245506, + 0.043004535138607025, + 0.0015053361421450973, + -0.012986517511308193, + 0.012539440765976906, + 0.05140674114227295, + -0.006876467727124691, + 0.014618703164160252, + -0.001744841574691236, + -0.026029806584119797, + -0.010233092121779919, + -0.025476282462477684, + 0.015427699312567711, + 0.0061029535718262196, + -0.06159725412726402, + 0.007437087595462799, + -0.03675965219736099, + -0.0073164477944374084, + -0.022211913019418716, + 0.017939845100045204, + -0.007976418361067772, + -0.027846500277519226, + -0.012660080567002296, + 0.008870571851730347, + -0.029265791177749634, + -0.0023400569334626198, + -0.012993614189326763, + -0.0015958158764988184, + 0.001104386174120009, + 0.001076887478120625, + 0.017585022374987602, + 0.006056826561689377, + -0.0064577762968838215, + -0.006589061114937067, + -0.018649490550160408, + 0.02631366439163685, + 0.016194116324186325, + 0.009104755707085133, + 0.0026576234959065914, + 0.016747640445828438, + -0.0010280993301421404, + -0.028172936290502548, + 0.015697363764047623, + -0.005925542209297419, + 0.022268684580922127, + 0.0025139201898127794, + -0.003984660841524601, + -0.020409412682056427, + 0.020168133080005646, + -0.023418311029672623, + 0.021771932020783424, + -0.009147333912551403, + -0.005563622806221247, + 0.022254491224884987, + 0.012234292924404144, + -0.02072165720164776, + 0.008636388927698135, + 0.0009872947121039033, + -0.007586113177239895, + 0.05546591430902481, + 0.006507451646029949, + -0.001529286615550518, + 0.010062777437269688, + 0.011198210529983044, + 0.017939845100045204, + 0.031735360622406006, + -0.001257847179658711, + -0.04362902045249939, + -0.027307169511914253, + 0.0096511822193861, + -0.01325618289411068, + -0.016321852803230286, + -0.010566625744104385, + 0.006510999985039234, + 0.010637589730322361, + 0.017684372141957283, + -0.011914952658116817, + 0.005577815696597099, + 0.029010318219661713, + 0.019515259191393852, + -0.014285169541835785, + -0.007050330750644207, + 0.01425678376108408, + -0.02090616524219513, + -0.0017359709599986672, + -0.0343184694647789, + -0.005833288189023733, + -0.06999945640563965, + -0.01432065200060606, + -0.012156232260167599, + 0.013752935454249382, + 0.010942737571895123, + 0.020054589956998825, + -0.0020703915506601334, + -0.0018237896729260683, + 0.024142149835824966, + -0.0029485782142728567, + -0.013050385750830173, + 0.004098204430192709, + -0.0020171680953353643, + 0.04172717034816742, + -0.027860693633556366, + -0.0035287137143313885, + -0.010985316708683968, + 0.01921720802783966, + 0.0007637562812305987, + -0.0193023644387722, + 0.0037220921367406845, + -0.0050384849309921265, + 0.028201323002576828, + 0.01745728589594364, + 0.021672582253813744, + 0.018365632742643356, + -0.0377531535923481, + 0.02456793747842312, + -0.0027924561873078346, + -0.005396855995059013, + 0.03562421724200249, + -0.01535673439502716, + -0.03023090958595276, + 0.011049184948205948, + 0.022140948101878166, + 0.002490856684744358, + 0.027605220675468445, + 0.002606174210086465, + 0.004069818649441004, + 0.015101262368261814, + 0.0026487528812140226, + 0.01517222635447979, + -0.0021182927303016186, + 0.013830996118485928, + -0.014519352465867996, + 0.002780037233605981, + -0.00180427439045161, + -0.039229217916727066, + -0.000728717481251806, + 0.02664010226726532, + 0.03190567344427109, + -0.011623998172581196, + 0.010793711990118027, + -0.01442709844559431, + 0.012880071066319942, + 0.01524319127202034, + 0.024440200999379158, + -0.007330640684813261, + -0.010176320560276508, + -0.013965828344225883, + 0.035311974585056305, + 0.016123151406645775, + -0.0004776802961714566, + 0.03613516315817833, + -0.0060000550001859665, + 0.015725750476121902, + 0.019359136000275612, + 0.012688466347754002, + 0.01879142038524151, + -0.0043607731349766254, + -0.008380916900932789, + -0.01535673439502716, + 0.025604018941521645, + 0.03287079185247421, + 0.00860090646892786, + 0.01920301467180252, + 0.03480102866888046, + 0.013171025551855564, + 0.020480377599596977, + 0.0016827475046738982, + 0.012042689137160778, + 0.0011496260995045304, + 0.020437797531485558, + -0.002774714957922697, + 0.005769419949501753, + -0.02073584869503975, + 0.004453027155250311, + -0.013795513659715652, + -0.006702604237943888, + -0.00941699929535389, + 0.02069327048957348, + 0.0007854891591705382, + 0.022424805909395218, + 0.02113325148820877, + -0.006259075831621885, + 0.0013971150619909167, + 0.010119548998773098, + 0.007720945868641138, + -0.006837436929345131, + -0.010445985943078995, + -0.01710246317088604, + 0.002799552632495761, + 0.005929090548306704, + -0.005134287290275097, + -0.0071390364319086075, + 0.02103389985859394, + 0.013241990469396114, + 0.007238386664539576, + -0.015527049079537392, + -0.016364431008696556, + -0.001894754241220653, + 0.018535947427153587, + -0.02855614572763443, + 0.00040383278974331915, + -0.009679568000137806, + -0.005127190612256527, + -0.02312025986611843, + -0.02644140087068081, + -0.018450789153575897, + -0.008884765207767487, + -0.007437087595462799, + 0.038945358246564865, + 0.0008883877890184522, + -0.05211638659238815, + -0.020409412682056427, + 0.023347346112132072, + -0.02496533840894699, + -0.00476881954818964, + -0.054330479353666306, + -0.010729843750596046, + -0.008827993646264076, + -0.0027498772833496332, + -0.006553578656166792, + -0.012851685285568237, + -0.00619875593110919, + 0.03400622680783272, + 0.02678203210234642, + -0.008238987065851688, + 0.0014148562913760543, + -0.03253016248345375, + -0.007571920286864042, + 0.01725858449935913, + -0.0018592718988656998, + 0.005858125630766153, + -0.008097058162093163, + -0.00014470120368059725, + 0.020409412682056427, + 0.006525192875415087, + -0.005652328487485647, + -0.04731918126344681, + 0.0005978765548206866, + 0.00781320035457611, + 0.016790218651294708, + 0.008898957632482052, + -0.009793112054467201, + -0.00011720243492163718, + -0.011006605811417103, + 0.01938752271234989, + 0.008331241086125374, + -0.01694634184241295, + -0.033154651522636414, + 0.007014848291873932, + 0.004165620543062687, + -0.010552432388067245, + 0.012021399103105068, + 0.005638135597109795, + -0.02289317175745964, + 0.0070680719800293446, + -0.01886238530278206, + -0.01876303367316723, + 0.007806103676557541, + -0.003945630509406328, + -0.017613407224416733, + 0.013930346816778183, + -0.000394740462070331, + -0.0054252417758107185, + 0.0016117829363793135, + -0.0018681425135582685, + 0.031082484871149063, + 0.013852285221219063, + -0.013958732597529888, + -0.0022265135776251554, + 0.005159124732017517, + 0.01721600629389286, + 0.0028545500244945288, + 0.016548939049243927, + -0.015342541970312595, + 0.01226267870515585, + -0.036901578307151794, + -0.003404525574296713, + 0.015640592202544212, + 0.02292155846953392, + -0.022481577470898628, + 0.016222503036260605, + 0.018280474469065666, + 0.0008990325150080025, + 0.010779519565403461, + -0.03968339040875435, + -0.02448277920484543, + -0.012887166813015938, + -0.02275124378502369, + -0.01696053333580494, + -0.00853703822940588, + 0.0006874693208374083, + 0.0008152055670507252, + 0.00011149200145155191, + -0.025121459737420082, + 0.020224904641509056, + 0.01531415618956089, + -0.020650692284107208, + 0.016123151406645775, + -0.010176320560276508, + 0.010304057039320469, + -0.03613516315817833, + -0.020068783313035965, + 0.00018151408585254103, + -0.014462580904364586, + -0.002175064291805029, + -0.002363120438531041, + -0.02878323197364807, + 0.01869206875562668, + -0.002150226617231965, + -0.0033654950093477964, + -0.008458977565169334, + 0.00033442056155763566, + -0.029407721012830734, + -0.003633386455476284, + -0.05166221037507057, + -0.03054315410554409, + 0.017797915264964104, + 0.005528140347450972, + -0.009246684610843658, + -0.008175118826329708, + -0.018748842179775238, + -0.0005442096153274179, + -0.003778863698244095, + -0.001494691357947886, + -0.018550140783190727, + 0.0152289979159832, + -0.01332714781165123, + -0.025348547846078873, + -0.017655987292528152, + -9.973849228117615e-5, + -0.005936186760663986, + 0.013014903292059898, + 0.007007752079516649, + -0.03769638389348984, + -0.02665429562330246, + 0.005169769283384085, + -0.014058082364499569, + 0.008075769059360027, + -0.03763961046934128, + -0.0035996781662106514, + 0.02260931394994259, + 0.0008963713189586997, + -0.016279274597764015, + 0.012184618040919304, + 0.015441891737282276, + 0.017897266894578934, + -0.010971123352646828, + 0.007330640684813261, + -0.004790109116584063, + 0.0153709277510643, + -0.013071674853563309, + 0.027505870908498764, + -0.03383591026067734, + -0.00037034638808108866, + 0.017712758854031563, + -0.00167298992164433, + -0.015867680311203003, + -0.011134342290461063, + -0.00012252478336449713, + -0.016336046159267426, + 0.002178612630814314, + -0.002849227748811245, + 0.010907255113124847, + 0.010041487403213978, + 0.0008267373195849359, + 0.02685299515724182, + -0.012532344087958336, + 0.004037884529680014, + -0.003956275060772896, + -0.01703149825334549, + -0.014483870007097721, + -0.01725858449935913, + 0.004885911010205746, + 0.004917845129966736, + 0.012773623690009117, + 0.0021555491257458925, + -0.0013376822462305427, + 0.03948469087481499, + 0.010453082621097565, + 0.014973525889217854, + 0.014036793261766434, + 0.024227306246757507, + 0.04008079320192337, + -0.004328839015215635, + 0.018621105700731277, + 0.02439762093126774, + -0.004790109116584063, + 0.0189475417137146, + 0.01237622182816267, + -0.011964627541601658, + 0.0005739260232076049, + -0.0032359848264604807, + -0.00023484839766751975, + 0.009452481754124165, + -0.002466019010171294, + 0.003785960143432021, + 0.0005175978876650333, + -0.011042088270187378, + 0.024213112890720367, + -0.00873573962599039, + -0.03051476739346981, + 0.0015558983432129025, + 0.018124353140592575, + 0.010715651325881481, + 0.012631694786250591, + -0.0007846021326258779, + -0.01718762144446373, + -0.01034663524478674, + -0.008345434442162514, + -0.008373820222914219, + 0.01535673439502716, + -0.009168623015284538, + -0.003555325325578451, + -0.027236204594373703, + 0.003977564629167318, + 0.010140838101506233, + -0.02861291728913784, + -0.024411814287304878, + 0.006904853507876396, + -0.008813800290226936, + 0.02462470903992653, + -0.007834489457309246, + 0.0030479286797344685, + 0.012134942226111889, + -0.01877722702920437, + 0.02855614572763443, + -0.005272667855024338, + 0.013568427413702011, + 0.03812216967344284, + -0.04141492769122124, + 0.001354536390863359, + -0.0060674711130559444, + 0.012149135582149029, + 0.006560675334185362, + 0.017755337059497833, + 0.01900431327521801, + -0.008913150988519192, + -0.014029696583747864, + 0.005989410448819399, + -0.01877722702920437, + 0.025305967777967453, + -0.0033317869529128075, + 0.027818113565444946, + 0.0008932666387408972, + 0.0031419566366821527, + -0.03068508394062519, + -0.004449478816241026, + -0.014391615986824036, + -0.013731645420193672, + -0.017968231812119484, + -0.00860090646892786, + 0.0009482641471549869, + -0.0013829221716150641, + 0.03042961098253727, + -0.014483870007097721, + -0.008927343413233757, + -0.02879742532968521, + 0.0063939085230231285, + 0.0018237896729260683, + -0.007373219355940819, + 0.004584311507642269, + -0.0028722912538796663, + -0.0285987239331007, + 0.0052549270913004875, + -0.008281566202640533, + 0.0077138496562838554, + -0.01734374277293682, + -0.025263389572501183, + 0.008373820222914219, + -0.03355205059051514, + -0.01727277785539627, + -0.005098804831504822, + 0.001435258542187512, + -0.0006896869745105505, + 0.01918882131576538, + 0.001769679132848978, + -0.007862875238060951, + 0.030968941748142242, + 0.0004621568077709526, + 0.027122661471366882, + -0.0011620449367910624, + -0.0010848710080608726, + 0.0003235541225876659, + -0.007206453010439873, + 0.02461051568388939, + -0.029492877423763275, + 0.013518751598894596, + -0.024312464520335197, + 0.010616300627589226, + 0.01330585777759552, + 0.018081774935126305, + -0.0036759651266038418, + 0.0032466293778270483, + -0.009573121555149555, + 0.014164529740810394, + 0.01244009006768465, + 0.0021431301720440388, + -0.02830067276954651, + -0.010438889265060425, + 0.037469297647476196, + -0.018436597660183907, + 0.02069327048957348, + -0.017443092539906502, + 0.0009526994545012712, + 0.00966537557542324, + 0.003934985958039761, + 0.005439434666186571, + 0.000873751356266439, + -0.017712758854031563, + 0.010453082621097565, + 0.002334734657779336, + -0.003523391205817461, + 0.01246138010174036, + -0.0033371092285960913, + -0.016421202570199966, + -0.005439434666186571, + 0.03568099066615105, + -0.02260931394994259, + -0.0001504670799477026, + 0.021857090294361115, + 0.013476173393428326, + 0.03071346879005432, + -0.017854686826467514, + 0.04027949273586273, + -0.009367324411869049, + -0.004055625759065151, + -0.016534745693206787, + -0.016747640445828438, + -0.0022318358533084393, + -0.015470277518033981, + 0.013965828344225883, + 0.010694362223148346, + -0.018464982509613037, + 0.014512255787849426, + -0.018124353140592575, + 0.020281676203012466, + 0.035453904420137405, + 0.015498663298785686, + -0.01138981431722641, + 0.04431028291583061, + -0.0029042253736406565, + 0.007256127893924713, + 0.01735793612897396, + -0.0028580983635038137, + 0.016733447089791298, + -0.01711665652692318, + 0.010275670327246189, + 0.00564168393611908, + -0.01928817294538021, + -0.002696653828024864, + 0.011886566877365112, + 0.005336536094546318, + 0.015470277518033981, + 0.012049784883856773, + -0.00843059178441763, + -0.011773023754358292, + -0.007252579554915428, + -0.025646599009633064, + -0.011560129933059216, + -0.029776737093925476, + 0.006968721281737089, + -0.010900159366428852, + 5.502526619238779e-5, + -0.042862605303525925, + 0.013632295653223991, + -0.001138981431722641, + -0.02277962863445282, + -0.008799607865512371, + -0.010105355642735958, + -0.007664174307137728, + 0.0032696928828954697, + 0.027363941073417664, + 0.005091708619147539, + -0.0016020253533497453, + -0.00020036405476275831, + -0.009133141487836838, + -0.0057836128398776054, + -0.014050986617803574, + 0.018308861181139946, + 0.0012445412576198578, + 0.013043289072811604, + 0.007969321683049202, + -0.03806539997458458, + -0.004385611042380333, + -0.012362029403448105, + 0.035567447543144226, + 0.0012755882926285267, + -0.002870517084375024, + 0.007060975302010775, + -0.016094766557216644, + 0.01126917451620102, + -0.009182816371321678, + -0.01735793612897396, + -0.0015727524878457189, + 0.025547247380018234, + -0.005780064966529608, + -0.0006763811106793582, + -0.00965827889740467, + 0.02664010226726532, + 0.012816202826797962, + -0.007642884738743305, + 0.011425296775996685, + 0.006056826561689377, + 0.017655987292528152, + -0.00335839856415987, + -0.0058190952986478806, + -0.006259075831621885, + 0.04047819599509239, + -0.013972925022244453, + 0.0076144989579916, + -0.022382227703928947, + 0.005961024668067694, + 0.009367324411869049, + 0.008522845804691315, + 0.004101752769201994, + 0.003342431504279375, + -0.004836236126720905, + -0.013100060634315014, + -0.0024234403390437365, + -0.013951635919511318, + 0.0020402316004037857, + -0.009956330060958862, + -0.010382117703557014, + 0.00012463153689168394, + -0.011886566877365112, + 0.0036369345616549253, + -0.012752334587275982, + 0.012234292924404144, + 0.013043289072811604, + -0.02092035673558712, + 0.0001949308207258582, + -0.03179213032126427, + 0.07079426199197769, + -0.017514057457447052, + 0.01897592842578888, + 0.00948796421289444, + 0.004169168882071972, + -0.01700311340391636, + -0.015583821572363377, + 0.003988209180533886, + 0.009317648597061634, + -0.0027197173330932856, + 0.011716251261532307, + -0.002441181568428874, + 0.0047546266578137875, + -0.009871172718703747, + -0.01923139952123165, + -0.012851685285568237, + 0.012092364020645618, + -0.006379715632647276, + 0.011205306276679039, + 0.03281402215361595, + 0.018550140783190727, + 0.006181014701724052, + -0.0170882698148489, + -0.005929090548306704, + -0.003974016290158033, + 0.022140948101878166, + -0.02317703142762184, + -0.011169824749231339, + 0.016336046159267426, + 0.008018997497856617, + 0.0033974291291087866, + 0.010651783086359501, + -0.0010733392555266619, + -0.0005863448022864759, + 0.016705062240362167, + 0.015101262368261814, + -0.0007238386897370219, + 0.025589827448129654, + -0.01239751186221838, + 0.0029485782142728567, + 0.020139746367931366, + -0.006539385765790939, + 0.024241499602794647, + 0.03125280141830444, + -0.007181615103036165, + 0.0033477540127933025, + 0.001398002146743238, + 0.00083161611109972, + -0.013625198975205421, + -0.004818494897335768, + -0.01153174415230751, + -0.016705062240362167, + 0.006975817959755659, + 0.012021399103105068, + 0.003988209180533886, + -0.0006963399355299771, + -0.021360337734222412, + -0.011780119501054287, + -0.00238440977409482, + 0.0011354332091286778, + -0.029833508655428886, + 0.017741143703460693, + -0.02262350730597973, + -0.02299252338707447, + -0.009764726273715496, + -0.012745237909257412, + -0.01245428342372179, + 0.0004433068388607353, + -0.023489275947213173, + -0.01039631012827158, + -0.011290464550256729, + -0.00331404572352767, + 0.0036653203424066305, + -0.027874885126948357, + -0.02875484712421894, + -0.0014707408845424652, + 0.0011629320215433836, + 0.03414815291762352, + 0.017670178785920143, + 0.018223702907562256, + 0.013987118378281593, + 0.0008799607749097049, + -0.011184017173945904, + -0.02114744484424591, + 0.003404525574296713, + -0.0006848081829957664, + 0.0029130959883332253, + -0.005872318986803293, + 0.010722748003900051, + -0.022339649498462677, + -0.01877722702920437, + -0.0025742400903254747, + -0.00287761352956295, + 0.016605710610747337, + 0.0020082974806427956, + 0.013972925022244453, + 0.009885365143418312, + -0.02462470903992653, + 0.020097168162465096, + 0.018748842179775238, + 0.003920793067663908, + 0.003966920077800751, + -0.005918445531278849, + 0.009168623015284538, + 0.009282167069613934, + -0.006741635035723448, + 0.010375021025538445, + 0.02463890053331852, + -0.02067907713353634, + 0.0006027554045431316, + -0.003927889280021191, + -0.01893334835767746, + 0.013809707015752792, + -0.01153174415230751, + -0.023205416277050972, + -0.007508052047342062, + 0.009033790789544582, + -0.007500955834984779, + -0.011993013322353363, + -0.012468475848436356, + -0.01684699021279812, + 0.0015647689579054713, + -0.005492658354341984, + -0.014483870007097721, + -0.009267973713576794, + 0.004807849880307913, + -0.009935040958225727, + -0.0016685546142980456, + 0.010822097770869732, + 0.012071074917912483, + 0.011914952658116817, + 0.0035748404916375875, + 0.012951035052537918, + -0.012716852128505707, + -0.0008223020122386515, + -0.011602708138525486, + -0.010261477902531624, + 0.00010073643352370709, + 0.031650200486183167, + -0.026157543063163757, + 0.031706973910331726, + -0.0037398331332951784, + 0.0032164694275707006, + 0.004481412936002016, + 0.002918418264016509, + -0.02445439249277115, + 0.0023169934283941984, + -0.022055789828300476, + 0.029350949451327324, + 0.0032253400422632694, + 0.041187841445207596, + -0.016477974131703377, + -0.012567826546728611, + -0.010318249464035034, + -0.008934440091252327, + -0.01042469684034586, + -0.010949834249913692, + 0.02062230557203293, + -0.029024511575698853, + -0.0008657678263261914, + -0.0025760142598301172, + -0.005439434666186571, + -0.029237406328320503, + -0.0038498283829540014, + -0.008891861885786057, + 0.009168623015284538, + 0.006599705666303635, + 0.01246138010174036, + 0.00033619467285461724, + -0.008572520688176155, + -0.01904689334332943, + -0.0075364382937550545, + 0.010765326209366322, + -0.013561330735683441, + -0.012574923224747181, + -0.004932038020342588, + 0.01927397958934307, + 0.0024926308542490005, + -0.01157432235777378, + 0.01899011991918087, + -0.003017768729478121, + 0.0014716279692947865, + 0.014732246287167072, + 0.010949834249913692, + -0.021601617336273193, + -0.019713958725333214, + 0.028272287920117378, + -0.018379826098680496, + 0.011134342290461063, + 0.020537149161100388, + -0.013064579106867313, + 0.012532344087958336, + 0.013653584755957127, + -0.00025769011699594557, + -0.0152289979159832, + 0.00038941812817938626, + 0.02847098745405674, + 0.025973035022616386, + -0.004488509614020586, + -0.01135433278977871, + -0.013149736449122429, + -0.00965827889740467, + -0.005528140347450972, + 0.016435395926237106, + -0.008721546269953251, + 0.0041798134334385395, + -0.002774714957922697, + -0.018748842179775238, + -0.007117746863514185, + 0.005354277323931456, + -0.02876904048025608, + -0.018280474469065666, + -8.621087181381881e-5, + 0.0011105956509709358, + -0.016520554199814796, + -0.0032732412219047546, + -0.008168023079633713, + 0.024355042725801468, + -0.009218298830091953, + -0.00016521441284567118, + 0.0211616363376379, + -0.004282712005078793, + -0.004247230011969805, + -0.015328348614275455, + 0.005936186760663986, + 0.0063974568620324135, + 0.02079262025654316, + 0.009984715841710567, + 0.00010960700456053019, + -0.0005521930870600045, + 0.012624598108232021, + 0.0018823354039341211, + -0.005244282074272633, + 0.0027498772833496332, + 0.009189913049340248, + 0.022240297868847847, + 0.008565424010157585, + -0.009984715841710567, + 0.018053388223052025, + 0.0017457285430282354, + -0.020182326436042786, + -0.002169742016121745, + 0.001095515675842762, + -0.013490365818142891, + 0.0019586223643273115, + -0.0051484801806509495, + -0.01157432235777378, + 0.013405208475887775, + 0.008054479956626892, + -2.5849401936284266e-5, + -0.008125443942844868, + -0.00955183245241642, + -0.023475082591176033, + -0.0041833617724478245, + 0.016094766557216644, + 0.0036688686814159155, + -0.013674873858690262, + -0.008984115906059742, + -0.023702168837189674, + -0.023872483521699905, + 0.0004118163196835667, + -0.012738141231238842, + -0.014547738246619701, + 0.001940881134942174, + -0.0018876577960327268, + 0.02835744433104992, + -0.04070528224110603, + 0.014533545821905136, + -0.01152464747428894, + 0.010382117703557014, + -0.0003863134188577533, + -0.001453886739909649, + 0.009935040958225727, + 0.001798065030016005, + 0.007050330750644207, + -0.008593810722231865, + -0.001492030220106244, + 0.00030270827119238675, + -0.01132594607770443, + -0.006968721281737089, + -0.0023045747075229883, + -0.0033601727336645126, + 0.013653584755957127, + -0.024411814287304878, + 0.004658824298530817, + -0.015995414927601814, + 0.014675474725663662, + 0.010502757504582405, + 0.0003803257714025676, + 0.006443583406507969, + 0.00853703822940588, + 0.003860472934320569, + -0.0075293416157364845, + -0.014590317383408546, + 0.013731645420193672, + 0.025064688175916672, + 0.02645559422671795, + 0.0067842137068510056, + -0.00572329293936491, + 0.0026789128314703703, + 0.0011771249119192362, + -0.01718762144446373, + 0.003271467052400112, + -0.016293466091156006, + 0.014100661501288414, + 0.021601617336273193, + 0.009126044809818268, + -0.0008231890969909728, + -0.010453082621097565, + 0.025220811367034912, + 0.0010147934081032872, + -0.005393307656049728, + 0.007898357696831226, + -0.025433704257011414, + -0.008565424010157585, + -0.008955729193985462, + 0.009218298830091953, + 0.021346144378185272, + -0.018166931346058846, + 0.0023223157040774822, + -0.007472570054233074, + -0.004587859846651554, + 0.016761833801865578, + 0.004438834264874458, + 0.025689177215099335, + -0.01435613352805376, + 0.008473170921206474, + -0.0030337355565279722, + -0.005077515263110399, + -0.013277471996843815, + 0.01438452024012804, + 0.020466184243559837, + -0.01512964814901352, + -0.009693761356174946, + -3.853154703392647e-5, + 0.0125110549852252, + 0.009516349993646145, + 0.0008631066884845495, + -0.015825100243091583, + 0.0020899067167192698, + -0.0045701186172664165, + -0.002462470903992653, + 0.00010705671593314037, + 0.0019337846897542477, + -0.015583821572363377, + 0.018464982509613037, + 0.006294557824730873, + -0.029265791177749634, + -0.01881980523467064, + -0.004914296790957451, + -0.0010369698284193873, + 0.0065748682245612144, + 0.01426388043910265, + -0.002379087498411536, + -0.024099569767713547, + 0.00335839856415987, + 0.023986026644706726, + 0.03971177712082863, + 0.0002301913482369855, + -0.0055387853644788265, + 0.020480377599596977, + 0.010367924347519875, + -0.0011709155514836311, + 0.001064468640834093, + 0.033154651522636414, + -0.014803211204707623, + 0.004790109116584063, + 0.003330012783408165, + -0.024227306246757507, + 0.02285059355199337, + -0.0008347208495251834, + -0.02287898026406765, + -0.007053879089653492, + 0.0066813151352107525, + -0.006170370150357485, + 0.008955729193985462, + -0.015143840573728085, + 0.001988782314583659, + -0.02472405880689621, + -0.006475517526268959, + 0.007905453443527222, + 0.013830996118485928, + -0.016137344762682915, + -0.011950435116887093, + -0.00843059178441763, + 0.005655876826494932, + 0.022481577470898628, + 0.015867680311203003, + 0.017982423305511475, + -0.021814510226249695, + 0.009317648597061634, + -0.002196353627368808, + 0.02087777853012085, + -0.016548939049243927, + -0.0013181669637560844, + 0.009374421089887619, + -0.0024944047909229994, + 0.007100006099790335, + 0.013476173393428326, + -0.002453600289300084, + -0.015399313531816006, + 0.008522845804691315, + 0.01913204975426197, + -0.004850429017096758, + -0.013227797113358974, + -0.001005035825073719, + -0.012766527011990547, + 0.02479502372443676, + 0.03471587225794792, + -0.009573121555149555, + -0.0005575154791586101, + 0.01219881046563387, + -0.02101970836520195, + -0.019472679123282433, + 0.003037283895537257, + -0.012468475848436356, + 0.0007371445535682142, + -0.00421174755319953, + 0.00526202330365777, + -0.0012188166147097945, + 0.012958131730556488, + 0.0015771876787766814, + 0.015683172270655632, + -0.014916754327714443, + 0.011169824749231339, + -0.01933075115084648, + 0.046723078936338425, + 0.003651127452030778, + -0.009140237234532833, + 0.01238331850618124, + 0.012723948806524277, + -0.042976148426532745, + -0.029691578820347786, + 0.00016199881792999804, + -0.019444294273853302, + -0.008451880887150764, + 0.017982423305511475, + 0.00109285453800112, + -0.0068480814807116985, + 0.004456575494259596, + 0.0023453792091459036, + -0.011482068337500095, + -0.01714504137635231, + -0.008898957632482052, + 0.014774825423955917, + 0.010609203949570656, + -0.007415798492729664, + 0.007827392779290676, + -0.022438999265432358, + -0.011091763153672218, + -0.006074567791074514, + 0.004474316723644733, + -0.020182326436042786, + 0.010502757504582405, + -0.013752935454249382, + 0.005702003836631775, + 0.010169223882257938, + -0.018237896263599396, + 0.0024606967344880104, + -0.007763524539768696, + 0.004154975991696119, + -0.0014308232348412275, + -0.0026381080970168114, + -0.010112452320754528, + -0.021786125376820564, + 0.025192424654960632, + 0.015981223434209824, + 0.009197008796036243, + -0.027108468115329742, + 0.011879470199346542, + -0.012099460698664188, + 0.017769530415534973, + 0.037355754524469376, + 0.016080573201179504, + 0.0123336436226964, + 0.02659752406179905, + -0.014632895588874817, + -0.009040887467563152, + -0.016591517254710197, + -0.008650582283735275, + -0.014661281369626522, + -0.011794312857091427, + -0.0012028495548292994, + -0.007025493308901787, + 0.027562642470002174, + -0.015143840573728085, + -0.005968120880424976, + 0.007593209855258465, + 0.006294557824730873, + -0.0047546266578137875, + 0.03062831237912178, + 0.027264591306447983, + 0.007092909421771765, + -0.00563458725810051, + 0.003924340941011906, + -0.013611005619168282, + 0.0305999256670475, + 0.003473716089501977, + 0.004985261708498001, + -0.007337737362831831, + 0.01139691099524498, + 0.0025192424654960632, + -0.005350728984922171, + -0.01324908621609211, + 0.017854686826467514, + 0.008026093244552612, + -0.001467192661948502, + 0.02111905813217163, + -0.006383263505995274, + -0.019898466765880585, + 0.00768546387553215, + 0.006078116130083799, + -0.031025713309645653, + 0.015001911669969559, + 0.004765271209180355, + 0.005471368785947561, + 3.473383549135178e-5, + -0.00523008918389678, + 0.004974616691470146, + 0.006024892441928387, + 0.01134723611176014, + -0.0265265591442585, + 0.006585512775927782, + 0.011815601959824562, + 0.005925542209297419, + 0.003949178848415613, + 0.01425678376108408, + 0.00031113531440496445, + 0.008210601285099983, + -0.0061100502498447895, + 0.0057552270591259, + 0.011084667406976223, + -0.007408701814711094, + -0.017769530415534973, + 0.014391615986824036, + 0.02104809321463108, + 1.6133353710756637e-5, + -0.011432393454015255, + 0.020565534010529518, + -0.037440910935401917, + 0.021786125376820564, + 0.012354932725429535, + -0.006315847393125296, + -0.0133697260171175, + 0.009580218233168125, + -0.0018876577960327268, + 0.014590317383408546, + 0.014405809342861176, + -0.0016641193069517612, + 0.005865222308784723, + -0.015328348614275455, + 0.004417544696480036, + 0.007742235437035561, + 0.011219499632716179, + 0.002655849326401949, + -0.03227468952536583, + 0.0270233117043972, + 0.01345488429069519, + -0.005244282074272633, + 0.017925651744008064, + 0.0032040507066994905, + -0.0014379197964444757, + -0.008515749126672745, + -0.02083520032465458, + -0.03409138321876526, + 0.011127245612442493, + 0.011382718570530415, + -0.007912550121545792, + -0.0016765381442382932, + 0.014391615986824036, + -0.01697472669184208, + -0.008054479956626892, + -0.003214695258066058, + -0.012752334587275982, + -0.003448878414928913, + -0.0288825836032629, + -0.029691578820347786, + -0.011233692988753319, + 0.012738141231238842, + 0.003014220390468836, + 0.010062777437269688, + -0.004917845129966736, + -0.016023801639676094, + -0.004633986856788397, + 0.0007060975185595453, + -0.00426851911470294, + 0.0022105465177446604, + -0.0029219663701951504, + 0.044622525572776794, + -0.01904689334332943, + 0.03071346879005432, + -0.020508762449026108, + -0.015668978914618492, + 0.008579617366194725, + 0.006968721281737089, + -0.0015097713330760598, + -0.004233037121593952, + -0.0084376884624362, + -0.0125110549852252, + -0.019430100917816162, + -0.020593920722603798, + 0.02101970836520195, + 0.017755337059497833, + -0.00471204798668623, + -0.0032732412219047546, + 0.011489165015518665, + 0.008175118826329708, + 0.004438834264874458, + -0.00467301718890667, + -0.000307365320622921, + -0.0012188166147097945, + -0.028967740014195442, + -0.007280965801328421, + -0.028201323002576828, + 0.009920847602188587, + 0.002315219258889556, + 0.013461980037391186, + -0.012560729868710041, + 0.011006605811417103, + 0.008253180421888828, + -0.0015017879195511341, + 0.006688411347568035, + 0.011290464550256729, + 0.006656477227807045, + -0.009090562351047993, + -0.014455484226346016, + 0.014845789410173893, + -0.00048255911679007113, + 0.017627600580453873, + -0.002387958113104105, + 0.009303456172347069, + 0.018323054537177086, + -0.0027605220675468445, + -0.01694634184241295, + 0.010665975511074066, + -0.010183417238295078, + -0.001005035825073719, + 0.010701457969844341, + -0.0009003630839288235, + -0.008636388927698135, + -0.002363120438531041, + -0.00619165925309062, + -0.010857580229640007, + -0.002026038710027933, + 0.008125443942844868, + -0.02312025986611843, + 0.010304057039320469, + 0.010751133784651756, + 0.00433238735422492, + 0.013405208475887775, + -0.020239097997546196, + 0.009303456172347069, + -0.0034595231991261244, + 0.005134287290275097, + 0.0003812128270510584, + -0.0026487528812140226, + -0.003560647601261735, + -0.002811971353366971, + 0.04754626750946045, + -0.007359026465564966, + -0.044594138860702515, + -0.019728152081370354, + -0.009218298830091953, + 0.00966537557542324, + -0.014512255787849426, + -0.020153939723968506, + -0.008636388927698135, + 0.008068672381341457, + -0.00717806676402688, + 0.00965827889740467, + -0.004790109116584063, + -0.03017413802444935, + 0.0009677794296294451, + 0.014292266219854355, + -0.003970467951148748, + 0.010978220030665398, + 0.0001437032624380663, + -0.016705062240362167, + 0.024241499602794647, + -0.03235984593629837, + 0.00470495130866766, + -0.011971724219620228, + 0.015058683231472969, + -0.01879142038524151, + -1.4220636330719572e-5, + 0.009374421089887619, + 0.02862711064517498, + -0.018280474469065666, + -0.011425296775996685, + 0.007202904671430588, + 0.0031561495270580053, + -0.0004909861600026488, + -0.015328348614275455, + -0.017655987292528152, + -0.003211147151887417, + 0.0045807636342942715, + -0.008643485605716705, + -0.01058081816881895, + -0.0039030518382787704, + -0.01132594607770443, + -0.03179213032126427, + 0.005733937956392765, + -0.010502757504582405, + -8.005691051948816e-5, + 0.008288662880659103, + -0.035198431462049484, + -0.006929690949618816, + 0.012759431265294552, + 0.0020774879958480597, + -0.0013696163659915328, + 0.025192424654960632, + -0.007479666266590357, + 0.00948086753487587, + 0.008785414509475231, + -0.001988782314583659, + -0.029322562739253044, + -0.03565260395407677, + 0.02075004205107689, + -0.011907855980098248, + -0.014405809342861176, + -0.009644086472690105, + 0.004172717221081257, + -0.018237896263599396, + 0.004946230910718441, + -0.018110159784555435, + -0.04167040064930916, + -0.0030230910051614046, + 0.014845789410173893, + -0.023645397275686264, + -0.005790709517896175, + 0.04027949273586273, + -0.0056026531383395195, + 0.013696162961423397, + 0.025902070105075836, + 0.005751679185777903, + -0.0030195426661521196, + 0.0021732901223003864, + 0.005858125630766153, + -0.010240188799798489, + 0.020310061052441597, + 0.015030297450721264, + -0.021984826773405075, + -0.0035748404916375875, + -0.008309951983392239, + 0.014888368546962738, + -0.017655987292528152, + 0.0003157923638354987, + 0.02124679461121559, + -0.003683061571791768, + 0.007522245403379202, + -0.02255254238843918, + -0.012234292924404144, + 0.011496261693537235, + -0.012149135582149029, + -0.01332005113363266, + 0.01060210820287466, + 0.0006967834196984768, + -0.013625198975205421, + 0.001389131648465991, + 0.004949779249727726, + 0.030117366462945938, + 0.015158033929765224, + 0.01035373192280531, + -0.014746438711881638, + -0.0009447159245610237, + 0.00717806676402688, + 0.0036688686814159155, + -0.010275670327246189, + 0.0005672730621881783, + 0.03934276103973389, + -0.0017421803204342723, + 0.0008089962066151202, + -0.006727442145347595, + -0.025263389572501183, + 0.0043075499124825, + 0.00855123158544302, + -0.011098859831690788, + -0.009715050458908081, + 0.008799607865512371, + 0.021445496007800102, + 0.00433238735422492, + -0.01126917451620102, + -0.02671106718480587, + 0.004328839015215635, + 0.01244718674570322, + -0.017868880182504654, + 0.0035677440464496613, + 0.004740433767437935, + -0.002533435355871916, + -0.005283312872052193, + 0.015683172270655632, + -0.010829194448888302, + -0.0031313118524849415, + -0.0152289979159832, + 0.011056280694901943, + 0.005638135597109795, + 0.004098204430192709, + -0.01524319127202034, + -0.01249686162918806, + -0.007749331649392843, + 0.013561330735683441, + -0.02476663701236248, + -0.01696053333580494, + -0.01704569160938263, + -0.03585130348801613, + 0.021814510226249695, + -0.00669195968657732, + 0.007962225936353207, + 0.010119548998773098, + -0.018606912344694138, + 0.003154375357553363, + -0.021544845774769783, + -0.0006005377508699894, + -0.00708936108276248, + 0.0096511822193861, + 0.012738141231238842, + -0.00048078500549308956, + -0.000319118844345212, + -0.009636989794671535, + 0.009793112054467201, + -0.016250887885689735, + 0.00019348935165908188, + 0.03468748554587364, + -0.006401004735380411, + -0.014412906020879745, + 0.017627600580453873, + -0.00215377495624125, + -0.002458922564983368, + 0.0032164694275707006, + -0.0044707683846354485, + -0.010112452320754528, + -0.006645832676440477, + -0.011361428536474705, + 0.0015363830607384443, + 0.01693214848637581, + -0.019870081916451454, + -0.007451280485838652, + 0.0014237267896533012, + 0.023191222921013832, + 0.01740051433444023, + 0.01158851571381092, + -0.025504669174551964, + 0.002363120438531041, + 0.01881980523467064, + 0.017443092539906502, + 0.006024892441928387, + -0.0004127033753320575, + -0.006766472477465868, + -0.020253289490938187, + 0.007664174307137728, + 0.026072384789586067, + 0.00862219650298357, + 0.029748350381851196, + 0.005978765431791544, + 0.011737541295588017, + 9.358453826280311e-5, + -0.01431355532258749, + -0.028215516358613968, + 0.009218298830091953, + 0.0002980512217618525, + 0.020451990887522697, + 0.016123151406645775, + -0.009218298830091953, + -0.0019249141914770007, + 0.025504669174551964, + 0.019657187163829803, + -0.018280474469065666, + 0.0030230910051614046, + 0.007188711781054735, + 0.002886484144255519, + -0.029322562739253044, + -0.011084667406976223, + -0.004612697288393974, + -0.003207598812878132, + -0.0011930919717997313, + -0.0004985261475667357, + 0.002533435355871916, + 0.0018486272310838103, + 0.00034683936974033713, + 0.006581964436918497, + -0.018365632742643356, + -0.0033601727336645126, + -0.0028084232471883297, + 0.0016845216741785407, + -0.014341941103339195, + -0.023134451359510422, + 0.03596484661102295, + 3.320920586702414e-5, + -0.0012605083175003529, + 0.023219609633088112, + 0.0016783121973276138, + 0.013909056782722473, + 0.011787216179072857, + 0.0020047493744641542, + 0.006209400482475758, + -0.025887878611683846, + 0.023617010563611984, + -0.010382117703557014, + 0.0066813151352107525, + 0.004566570743918419, + 0.0034275890793651342, + -0.015214805491268635, + -0.015030297450721264, + -0.0021200666669756174, + 0.008309951983392239, + 0.0026824609376490116, + -0.052315086126327515, + 0.0054323384538292885, + 0.0031987284310162067, + 0.01146077923476696, + -0.023986026644706726, + -0.0057161967270076275, + 0.003157923696562648, + 0.008047383278608322, + 0.0011744637740775943, + 0.005403952673077583, + 0.010240188799798489, + -0.004701403435319662, + 0.01339101605117321, + 0.0002181051968364045, + -0.019756538793444633, + 0.00022076636378187686, + 0.003789508482441306, + -0.0004521774244494736, + 0.015881871804594994, + 0.021686775609850883, + -0.0010715650860220194, + -0.015782522037625313, + -0.012305257841944695, + -0.00867187138646841, + 0.025050494819879532, + 0.009104755707085133, + 0.014079372398555279, + -0.016662482172250748, + 0.0011407556012272835, + 0.014270976185798645, + -0.009140237234532833, + -0.0020171680953353643, + 0.008934440091252327, + 0.0034790383651852608, + 0.015271577052772045, + -0.010233092121779919, + -0.0056026531383395195, + -0.019813310354948044, + -0.010225995443761349, + -0.002893580589443445, + -0.011553033255040646, + -0.02107647992670536, + -0.016250887885689735, + 0.002490856684744358, + -0.022339649498462677, + 0.011950435116887093, + 0.035368744283914566, + 0.019813310354948044, + -0.0053613740019500256, + -0.0141929155215621, + -0.007479666266590357, + -0.00165081350132823, + -0.018209511414170265, + -0.013674873858690262, + -0.0013137317728251219, + -0.007926743477582932, + 0.03204760327935219, + -0.013043289072811604, + 0.016350237652659416, + -0.018039194867014885, + 0.01886238530278206, + -0.014505159109830856, + -0.01686118356883526, + 0.002577788196504116, + 0.015683172270655632, + 0.016179922968149185, + -0.012794913724064827, + 0.014774825423955917, + 0.008998308330774307, + -0.005929090548306704, + -0.029322562739253044, + 0.024198921397328377, + -0.031139256432652473, + 0.006833888590335846, + -0.013241990469396114, + 0.00473688542842865, + -0.006333588622510433, + -0.025362739339470863, + 0.018351439386606216, + 0.004974616691470146, + 0.0008462526020593941, + 0.011872373521327972, + 0.013029096648097038, + -0.01923139952123165, + -0.011907855980098248, + -0.01870626211166382, + 0.0007380315801128745, + -0.0035730665549635887, + -0.01444129180163145, + -0.008288662880659103, + 0.010708554647862911, + 0.01701730489730835, + -0.005833288189023733, + -0.0270233117043972, + 0.01704569160938263, + 0.033097878098487854, + -0.013149736449122429, + 0.0031561495270580053, + 0.018294667825102806, + -0.008309951983392239, + 0.0022957040928304195, + 0.002458922564983368, + -0.034886185079813004, + 0.021459687501192093, + 0.01318521797657013, + -0.016421202570199966, + -0.031366344541311264, + 0.004325291141867638, + -0.037100281566381454, + 0.020097168162465096, + 0.0057161967270076275, + 0.01321360468864441, + -0.008175118826329708, + 0.020168133080005646, + 0.00016632322513032705, + 0.018464982509613037, + 0.012631694786250591, + 2.768588728940813e-6, + 0.003491457086056471, + 0.013646488077938557, + -0.006138436030596495, + -0.038860201835632324, + -0.022183526307344437, + -0.0010139064397662878, + 0.013994215056300163, + 0.003938533831387758, + -0.0008564537274651229, + -0.00849446002393961, + 0.00669195968657732, + 0.0012223648373037577, + -0.018138546496629715, + 0.00353226182051003, + -0.006053278222680092, + 0.0008267373195849359, + -4.18302915932145e-5, + 0.006099405232816935, + -0.001089306315407157, + 0.012113653123378754, + -0.006301654502749443, + -0.016421202570199966, + 0.0057091000489890575, + -0.003432911355048418, + 0.01432065200060606, + -0.018337246030569077, + -0.02458212897181511, + -0.005049129482358694, + -0.010296960361301899, + 0.014398712664842606, + 0.011425296775996685, + -0.006997107528150082, + -0.0003093612031079829, + 0.003227114211767912, + 0.02290736511349678, + 0.008650582283735275, + 0.0036404829006642103, + 0.022254491224884987, + 0.015016104094684124, + -0.03034445270895958, + 0.005517495796084404, + 0.013923250138759613, + -0.02470986545085907, + 0.00612779101356864, + -0.012227196246385574, + 0.033154651522636414, + -0.001704036956652999, + 0.017570829018950462, + 0.006542934104800224, + 0.012156232260167599, + -0.001223251922056079, + -0.0017643568571656942, + 0.002778263296931982, + 0.010736940428614616, + -0.01910366490483284, + -0.009814401157200336, + 0.0022052242420613766, + -0.02681041695177555, + 0.007163873873651028, + -0.005006550811231136, + 0.0032253400422632694, + -0.016619903966784477, + 0.002552950754761696, + -0.004208199214190245, + 0.00040272396290674806, + -0.0014192915987223387, + 0.009502156637609005, + -0.009736339561641216, + -0.003785960143432021, + -0.004254326224327087, + -0.006581964436918497, + 0.007955129258334637, + 0.020111361518502235, + 0.023574432358145714, + 0.008409302681684494, + -0.008146733045578003, + -0.01442709844559431, + -0.004378514364361763, + -0.00022575605544261634, + -0.015768328681588173, + -0.0026735905557870865, + 0.012553634122014046, + 0.0034027514047920704, + -0.012610405683517456, + 9.613482689019293e-5, + -0.013291665352880955, + -0.0012063977774232626, + -0.018436597660183907, + 0.007905453443527222, + -0.006919046398252249, + -0.002059746766462922, + -0.0030337355565279722, + 0.0022176429629325867, + 0.0006599705666303635, + 0.020579727366566658, + 0.024411814287304878, + -0.010247284546494484, + -0.015441891737282276, + 0.004424641374498606, + -0.001853949623182416, + 0.004240133333951235, + 0.00044618977699428797, + -0.021445496007800102, + -0.01881980523467064, + 0.007862875238060951, + 0.01924559287726879, + -0.0015700912335887551, + 0.0024979531299322844, + 0.007884164340794086, + -0.0024944047909229994, + -0.010091163218021393, + 0.01511545479297638, + 0.005872318986803293, + -0.009644086472690105, + 0.021786125376820564, + -0.024355042725801468, + 0.025178231298923492, + -0.005411048885434866, + 0.015569628216326237, + -0.016321852803230286, + -9.391718049300835e-5, + -0.012063978239893913, + 0.005208800081163645, + 0.002359572099521756, + -0.007933840155601501, + -0.0016091217985376716, + -0.015725750476121902, + -0.018025003373622894, + 0.01707407645881176, + -0.0035588734317570925, + 0.010076969861984253, + 0.009246684610843658, + -0.021544845774769783, + 0.013043289072811604, + 0.0008990325150080025, + 0.027108468115329742, + 0.00520525174215436, + -0.010793711990118027, + -0.0346023291349411, + 0.00953763909637928, + -0.010687265545129776, + -0.00943119265139103, + -0.009566024877130985, + 0.0014042116235941648, + -0.005109449382871389, + -0.00781320035457611, + 0.012553634122014046, + -0.0031259895768016577, + 0.0131923146545887, + -0.016279274597764015, + 0.010999509133398533, + 0.013178122229874134, + 0.02082100696861744, + 0.009310552850365639, + -0.0051378351636230946, + -0.007444184273481369, + -0.012652983888983727, + -0.020423606038093567, + -0.019501065835356712, + -0.0004297792329452932, + 0.004772367887198925, + -0.013100060634315014, + -0.01884819194674492, + 0.008615099824965, + 0.01511545479297638, + 0.008586714044213295, + 0.025547247380018234, + -0.0049284896813333035, + -0.025235002860426903, + -0.001304861158132553, + 0.0051378351636230946, + 0.008331241086125374, + -0.02096293680369854, + 0.010573722422122955, + 0.001697827479802072, + 0.008991211652755737, + -0.01140400767326355, + -0.0046446314081549644, + -0.006709700915962458, + -0.0014521126868203282, + 0.0031295379158109426, + 0.003580163000151515, + -0.003810797818005085, + 0.013589716516435146, + -0.0051520285196602345, + 0.016265081241726875, + -0.024241499602794647, + 0.014987718313932419, + 0.005017195828258991, + 0.009324745275080204, + -0.002577788196504116, + 0.014043889939785004, + 0.01748567260801792, + 0.002992931054905057, + 0.0061739180237054825, + 0.007933840155601501, + -0.006525192875415087, + 0.020082974806427956, + 0.010098258964717388, + -0.006422294303774834, + 0.012830395251512527, + 0.0012055108090862632, + 0.005897156428545713, + -0.010665975511074066, + -0.005968120880424976, + 0.012915552593767643, + 0.013909056782722473, + -0.0006098518497310579, + -0.004321742802858353, + 0.008466074243187904, + 0.00874283630400896, + 0.0015088843647390604, + 0.01698892004787922, + 0.009942137636244297, + -0.017514057457447052, + -0.005311698652803898, + -0.015569628216326237, + 0.009126044809818268, + -0.006525192875415087, + -0.0008032303303480148, + -0.016179922968149185, + 0.00013416740694083273, + 0.01053823996335268, + -0.02876904048025608, + -0.002260221866890788, + -0.004974616691470146, + 0.02073584869503975, + -0.0057091000489890575, + 0.008238987065851688, + 0.0019249141914770007, + -0.0021076479461044073, + -0.0029787381645292044, + -0.022169334813952446, + -0.003832087153568864, + -0.004282712005078793, + 0.014526449143886566, + 4.5489403419196606e-5, + -0.014221301302313805, + 0.02496533840894699, + 0.01531415618956089, + -0.0066777667962014675, + -0.011169824749231339, + 0.02121840789914131, + -0.026157543063163757, + 0.021530652418732643, + -0.0028829360380768776, + -0.013483270071446896, + -0.006979366298764944, + 0.010382117703557014, + -0.017840495333075523, + 0.003778863698244095, + -0.02297833003103733, + 0.012723948806524277, + 0.006081664469093084, + 0.0003510529058985412, + 0.0056026531383395195, + -0.0032306623179465532, + -0.006415197625756264, + -0.023418311029672623, + -0.011652383953332901, + 0.008047383278608322, + 0.006883563939481974, + 0.04223811626434326, + 0.03619193285703659, + -0.0015159808099269867, + -0.0007136375061236322, + -0.002059746766462922, + -0.02879742532968521, + 0.012908456847071648, + -0.0208068136125803, + -0.0021147443912923336, + -0.0045701186172664165, + 0.004066270310431719, + 0.008097058162093163, + 0.016790218651294708, + 0.03042961098253727, + -0.0032750151585787535, + 0.021970633417367935, + -0.009956330060958862, + 0.015399313531816006, + 0.011198210529983044, + 0.013000710867345333, + -0.004052077420055866, + -0.011780119501054287, + -0.003189857816323638, + 0.0056026531383395195, + 0.007962225936353207, + 0.000633358838967979, + -0.004197554662823677, + -0.004648179747164249, + -0.005631039384752512, + 0.002581336535513401, + 0.02287898026406765, + -0.004538184497505426, + -0.017528250813484192, + 0.0034240407403558493, + -0.01437742356210947, + 0.018663683906197548, + 0.009218298830091953, + 0.013667777180671692, + -0.005045581609010696, + -0.003732736688107252, + -0.01041760016232729, + -0.023602819070219994, + 0.011382718570530415, + -0.02076423540711403, + -0.016336046159267426, + 0.031650200486183167, + 0.003949178848415613, + 0.008380916900932789, + -0.0031029260717332363, + -0.002315219258889556, + -0.0032129213213920593, + 0.021857090294361115, + 0.00960150733590126, + -0.0070325895212590694, + -0.014327747747302055, + 0.022424805909395218, + 0.01907527819275856, + -0.035113271325826645, + -0.007820296101272106, + -0.00709645776078105, + -0.003133086021989584, + 0.0077138496562838554, + 0.0031792130321264267, + 0.01918882131576538, + 0.0015550112584605813, + 0.0304579958319664, + -0.002350701717659831, + 0.007465473376214504, + 0.007295158691704273, + 0.006915498059242964, + 0.024355042725801468, + -0.015143840573728085, + -0.008302855305373669, + -0.0015771876787766814, + -0.013767127878963947, + -0.009835690259933472, + -0.0035145205911248922, + -0.01524319127202034, + -0.02861291728913784, + 0.016747640445828438, + 0.0020491022150963545, + -0.011205306276679039, + 0.029407721012830734, + 0.0035091983154416084, + -0.014278072863817215, + 0.01535673439502716, + 0.007458377163857222, + 0.013901961036026478, + 0.0013846963411197066, + -0.0025760142598301172, + -0.019955238327383995, + 0.005687810946255922, + -0.006319395732134581, + -0.01240460854023695, + 0.023290574550628662, + -0.0026860092766582966, + -0.010027294978499413, + 0.020664885640144348, + 0.0058226436376571655, + 0.033069491386413574, + -0.0123336436226964, + 0.019841695204377174, + -0.017783723771572113, + 0.02273705042898655, + 0.0029201924335211515, + -0.041102681308984756, + 0.016463782638311386, + 0.006049730349332094, + -0.0015692042652517557, + 0.019898466765880585, + -0.02103389985859394, + 0.035368744283914566, + -0.012688466347754002, + 0.0036972544621676207, + -0.002034909324720502, + 0.016165731474757195, + -0.0017838720232248306, + 0.0014246138744056225, + 0.025561440736055374, + 0.0265265591442585, + -0.004431738052517176, + 0.005914897657930851, + 0.016690868884325027, + -0.006415197625756264, + -0.0009872947121039033, + -0.022254491224884987, + 0.00023285251518245786, + 0.037327367812395096, + -0.010566625744104385, + -0.01048146840184927, + 0.011155631393194199, + -0.016208309680223465, + -0.018564334139227867, + -0.007500955834984779, + 0.002540531801059842, + 0.01046727504581213, + 0.029861893504858017, + 0.009899558499455452, + 0.019430100917816162, + -0.02300671674311161, + -0.009715050458908081, + 0.029123863205313683, + 0.02256673574447632, + -0.024042798206210136, + -0.0020987773314118385, + -0.011098859831690788, + 0.0003295417409390211, + 0.015612207353115082, + -0.0011336591560393572, + -0.009331841953098774, + 0.020593920722603798, + -0.010332442820072174, + 0.007117746863514185, + 0.00024194485740736127, + -0.0010272122453898191, + 0.00860090646892786, + -0.006031989119946957, + 0.02445439249277115, + 0.0066671222448349, + -0.023262187838554382, + -0.005105901509523392, + 0.004123041871935129, + 0.0022211913019418716, + 0.026739452034235, + 0.021502267569303513, + -0.009204105474054813, + -0.017812108621001244, + -0.0170882698148489, + 0.005031388718634844, + -0.011751733720302582, + 0.0014255009591579437, + 0.0032821116037666798, + 0.0011620449367910624, + 0.004176265560090542, + -0.007593209855258465, + -0.004868169780820608, + -0.0027569737285375595, + -0.014349037781357765, + -0.025873685255646706, + 0.003408073913305998, + 0.040648508816957474, + 0.00967247225344181, + 0.011808505281805992, + 0.004311098251491785, + 0.01694634184241295, + 0.005662973038852215, + 0.0063868118450045586, + 0.013298762030899525, + 0.025305967777967453, + 0.010367924347519875, + 0.013660681433975697, + 0.006862274836748838, + 0.006124243140220642, + -0.019756538793444633, + -0.00564168393611908, + 0.006585512775927782, + 0.00010517171904211864, + 0.007848681882023811, + -0.03482941538095474, + -0.011425296775996685, + -0.0059929583221673965, + -0.004257874563336372, + 0.024042798206210136, + -0.004499154165387154 + ], + "43773776-973f-420d-ad88-aef356e711c9": [ + -0.004300605971366167, + -0.0016336480621248484, + -0.007997234351933002, + 0.008877730928361416, + -0.048900287598371506, + -0.009961978532373905, + 0.016387417912483215, + 0.01785733737051487, + -0.04025541618466377, + 0.0313485786318779, + 0.006771089043468237, + 0.03379359096288681, + -0.01074059959501028, + -0.02196146920323372, + -0.023096654564142227, + -0.0043697357177734375, + -0.04278775304555893, + 0.03743200749158859, + -0.018570467829704285, + -0.011526497080922127, + 0.08627407997846603, + 0.007749822456389666, + -0.03242554888129234, + -0.00015372301277238876, + -0.0015617894241586328, + -0.03571467474102974, + 0.00881223939359188, + 0.003039895324036479, + -0.029209190979599953, + 0.011199039407074451, + 0.02479943260550499, + 0.013862358406186104, + 0.006723789963871241, + 0.012625297531485558, + 0.02979133650660515, + -0.024508358910679817, + -0.016285542398691177, + 0.030300714075565338, + -0.012981862761080265, + -0.016125451773405075, + -0.041070420295000076, + 0.010857028886675835, + 0.0007026687962934375, + 0.002212155843153596, + -0.04610598832368851, + 0.026065601035952568, + 0.027782931923866272, + -0.02066619321703911, + 0.0020702576730400324, + 0.018439484760165215, + 0.014364459551870823, + -0.02814677357673645, + -0.0011506485752761364, + 0.02251450903713703, + 0.004358820617198944, + -0.00938710942864418, + 0.001315286848694086, + 0.03507431596517563, + -0.018977969884872437, + 2.9988494134158827e-5, + 0.011628372594714165, + 0.0014098855899646878, + 0.0026505847927182913, + -0.0005480361869558692, + -0.03137768432497978, + -0.030300714075565338, + 0.011220869608223438, + 0.012356054969131947, + -0.06915897876024246, + -0.022572722285985947, + 0.01746438816189766, + 0.02417362481355667, + -0.015339555218815804, + 0.01785733737051487, + -0.03108661249279976, + 0.0006872055237181485, + 0.042205605655908585, + -0.03519074246287346, + 0.0032090814784169197, + 0.010565955191850662, + -0.018410377204418182, + 0.020637085661292076, + 0.01915261335670948, + -0.021364768967032433, + 0.04820171371102333, + -0.004715384915471077, + -0.02405719645321369, + -0.028859902173280716, + -0.02443559095263481, + -0.03248376399278641, + 0.011730248108506203, + 0.0009314341004937887, + 0.019589222967624664, + -0.012094089761376381, + -0.03612217679619789, + 0.0010778802679851651, + 0.0413614958524704, + 0.010369480587542057, + 0.030620895326137543, + -0.032600194215774536, + 0.010274882428348064, + 0.03469591960310936, + -0.05381942540407181, + 0.017784569412469864, + -0.0020738961175084114, + -0.0025286979507654905, + 0.004475249908864498, + -0.03452127426862717, + -0.024901308119297028, + 0.05221852287650108, + 0.02156851999461651, + -0.03332787752151489, + 0.013018246740102768, + 0.003265477018430829, + -0.0027742909733206034, + -0.07032327353954315, + 0.019996725022792816, + -0.028961777687072754, + 0.007989957928657532, + -0.050937801599502563, + 0.040662918239831924, + 0.04919136315584183, + -0.014262584038078785, + -0.005064672790467739, + -0.027462752535939217, + -0.011257254518568516, + -0.005261147394776344, + -0.005417598877102137, + 0.017304299399256706, + -0.011148101650178432, + -0.03524895757436752, + -0.010180283337831497, + -0.011722970753908157, + 0.0047408537939190865, + -0.012239625677466393, + 0.002461387310177088, + 0.004384289495646954, + 0.05166548490524292, + -0.042758647352457047, + 0.03967326879501343, + -0.05050119012594223, + -0.02928195893764496, + 0.0005698666791431606, + 0.010616892948746681, + -0.01708599366247654, + 0.0014499081298708916, + -0.02661863900721073, + 0.035278066992759705, + 0.0024941330775618553, + 0.03242554888129234, + -0.025789080187678337, + -0.017115101218223572, + 0.02957303263247013, + -0.0125961909070611, + 0.00011148329213028774, + 0.014167985878884792, + -0.018716003745794296, + 0.002048427239060402, + 0.014371736906468868, + 0.002335862023755908, + -0.0013234731741249561, + -0.04386472329497337, + -0.005446706432849169, + 0.029223743826150894, + 0.03684986010193825, + 0.019851189106702805, + 0.04575669765472412, + 0.013855081982910633, + -0.04240935668349266, + 0.017260637134313583, + 0.029485709965229034, + -0.0031945279333740473, + 0.0222379881888628, + 0.00835379958152771, + 0.023096654564142227, + -0.016096346080303192, + 0.03344430401921272, + 0.020069492980837822, + 0.02018592320382595, + -0.05646819248795509, + -0.000899143167771399, + -0.03519074246287346, + 0.0005280248587951064, + -0.0007977223722264171, + -0.008659426122903824, + 0.04470883682370186, + 0.028234096243977547, + 0.01864323578774929, + -0.013207443989813328, + -0.004660808946937323, + 0.019734758883714676, + 0.010842475108802319, + -0.01106077991425991, + 0.03714093565940857, + -0.002148483647033572, + -0.010871581733226776, + 0.010827921330928802, + -0.01605268381536007, + 0.010325820185244083, + 0.0467754565179348, + -0.011897615157067776, + -0.03519074246287346, + -0.0385671928524971, + 0.017799122259020805, + -0.03367716446518898, + -0.004875475075095892, + -0.02196146920323372, + -0.020069492980837822, + 0.015572413802146912, + -0.055333007127046585, + 0.03367716446518898, + -0.031552329659461975, + 0.005588604602962732, + -0.005515836179256439, + -0.024348268285393715, + -0.0012916370760649443, + -0.014677363447844982, + 0.02995142713189125, + 0.01774090901017189, + 0.005639542359858751, + -0.014866560697555542, + 0.02108824998140335, + 0.025483453646302223, + -0.03082464635372162, + -0.0526842400431633, + -0.026691406965255737, + -0.014422674663364887, + 0.02995142713189125, + -0.05154905468225479, + 0.0035019738133996725, + 0.03551092371344566, + 0.015252233482897282, + 0.000208299228688702, + -0.04802706837654114, + -0.029980534687638283, + 0.0020884498953819275, + 0.016751259565353394, + 1.3935411516285967e-5, + 0.02532336488366127, + -0.042351141571998596, + 0.021495752036571503, + 0.02196146920323372, + 0.04738670960068703, + 0.009197911247611046, + 0.015063035301864147, + 0.027404537424445152, + 0.0011179028078913689, + 0.02364969253540039, + 0.029529370367527008, + -0.04101220518350601, + 0.021292001008987427, + 0.007997234351933002, + 0.007207698654383421, + -0.032571084797382355, + -0.027433644980192184, + 0.03664610907435417, + -0.006192581262439489, + -0.03431752324104309, + -0.004635340068489313, + -0.04191453382372856, + -0.0278993621468544, + 0.005315723363310099, + 0.03699539601802826, + -0.013578562065958977, + 0.04441776126623154, + -0.02686605229973793, + 0.012836325913667679, + -0.06025214120745659, + 0.00335643719881773, + 0.02610926143825054, + -0.0400516651570797, + -0.0035874766763299704, + -0.017406174913048744, + -0.027055248618125916, + -0.018483145162463188, + 0.009430769830942154, + -0.0015481453156098723, + -0.0010333097307011485, + 0.011461005546152592, + -2.7828184101963416e-5, + -0.0075751785188913345, + -0.009212465025484562, + -0.0021903254091739655, + 0.03944041207432747, + -0.01234150119125843, + -0.001479925005696714, + -0.005392129998654127, + 0.013607669621706009, + -0.03254197910428047, + -0.038508977741003036, + 0.005574050825089216, + -0.010871581733226776, + 0.04025541618466377, + 0.003223635023459792, + 0.04072113335132599, + 0.0009905582992359996, + 0.008251924067735672, + 0.00828103069216013, + -0.04147792235016823, + 0.028175881132483482, + -0.049657080322504044, + -0.014575487934052944, + 0.014495442621409893, + -0.017770016565918922, + -0.017449835315346718, + -0.015295893885195255, + 0.06322108954191208, + 0.025221489369869232, + -0.03341519832611084, + 0.016256434842944145, + 0.014037002809345722, + -0.0007849878747947514, + -0.014015172608196735, + -0.017435282468795776, + -0.01683858223259449, + 0.011053502559661865, + 0.02248540148139, + -0.00790263619273901, + -0.0011579253477975726, + -0.016663938760757446, + 0.03559824451804161, + 0.016038130968809128, + -0.05355745926499367, + 0.0233877282589674, + 0.00535938423126936, + -0.030504466965794563, + 0.008761301636695862, + -0.00745147280395031, + -0.04601866379380226, + -0.015645181760191917, + -0.011264530941843987, + -0.022165220230817795, + -0.02647310309112072, + -0.017828229814767838, + -0.014917499385774136, + -0.032716620713472366, + -0.03428841754794121, + -0.0691007673740387, + -0.013607669621706009, + -0.026516763493418694, + -0.020884498953819275, + 0.005901508033275604, + -0.008186432532966137, + 0.009816441684961319, + 0.028074005618691444, + -0.0037075441796332598, + -0.024246392771601677, + 0.027462752535939217, + -0.029616693034768105, + 0.007495133671909571, + 0.0008795866742730141, + -0.017915552482008934, + 0.0068766032345592976, + -0.002981680678203702, + 0.05422692745923996, + -0.0395568422973156, + -0.003780312603339553, + -0.023329513147473335, + 0.005486729089170694, + -0.008375629782676697, + 0.0034983353689312935, + -0.018686896190047264, + -0.051869235932826996, + -0.02816132642328739, + 0.005825101397931576, + 0.00514471810311079, + -0.013884189538657665, + -0.0043260748498141766, + 0.0026069239247590303, + 0.012676235288381577, + -0.014066110365092754, + 0.020607979968190193, + 0.03056268021464348, + -0.03524895757436752, + -0.020869944244623184, + -0.003021703101694584, + 0.033211447298526764, + -0.005221124738454819, + -0.028074005618691444, + 0.023183977231383324, + -0.013956957496702671, + -0.003070821752771735, + 0.015048481523990631, + -0.05131619796156883, + 0.03632592782378197, + 0.021684950217604637, + -0.012647128663957119, + 0.0008891375036910176, + 0.0074660261161625385, + 0.005552220158278942, + -0.013862358406186104, + 0.02813222073018551, + -0.03344430401921272, + -0.0012834506342187524, + -0.030242500826716423, + 0.019429132342338562, + 0.003936764318495989, + 0.023678800091147423, + 0.005097418557852507, + 0.0043624588288366795, + 0.007353235501796007, + -0.00854299683123827, + -0.0010178463999181986, + 0.01368043851107359, + 0.014946606010198593, + -0.025294257327914238, + -0.017784569412469864, + 0.007207698654383421, + 0.014895668253302574, + 0.028627043589949608, + -0.0038057814817875624, + 0.011970383115112782, + 0.01721697673201561, + 0.010245774872601032, + 0.05870945379137993, + -0.022310756146907806, + 0.018832432106137276, + -0.002288562711328268, + -0.06723789870738983, + -0.04834724962711334, + 0.02263093739748001, + 0.04101220518350601, + -0.010631446726620197, + 0.040692027658224106, + -0.007684331387281418, + 0.012174134142696857, + 0.06584074348211288, + 0.011672032997012138, + -0.02506139874458313, + -0.018061088398098946, + -0.00044365914072841406, + 0.005028288811445236, + -0.013614946976304054, + 0.005210209172219038, + -0.0028088558465242386, + -0.024624789133667946, + 0.011904891580343246, + -0.006352671422064304, + -0.01595080830156803, + -0.008055449463427067, + 0.02107369527220726, + 0.02968946099281311, + -0.002137568546459079, + -0.003070821752771735, + -0.008943222463130951, + -0.02507595159113407, + -0.06025214120745659, + 0.008921392261981964, + 0.025512561202049255, + -0.016154559329152107, + -0.009154250845313072, + 0.02453746646642685, + -0.04045916721224785, + 0.020491549745202065, + 0.0063162874430418015, + 0.0030526297632604837, + -0.004129600245505571, + -0.029747676104307175, + -0.011984936892986298, + 0.017144208773970604, + -0.009641798213124275, + -0.019356364384293556, + -0.005210209172219038, + -0.0007858974859118462, + 0.02890356443822384, + -0.057632483541965485, + -0.0036620639730244875, + 0.020491549745202065, + 0.0009705470292828977, + -0.010384034365415573, + -0.02491586096584797, + 0.0026032854802906513, + -0.024100856855511665, + 0.014298968948423862, + -0.007924466393887997, + 0.0018901563016697764, + -0.009001437574625015, + 0.007917189970612526, + 0.0026014663744717836, + -0.0017073259223252535, + -0.016096346080303192, + -0.044912587851285934, + -0.01374592911452055, + -0.011541050858795643, + 0.008099110797047615, + -0.011992214247584343, + 0.0073641506023705006, + -0.03460859879851341, + 0.008462951518595219, + 0.005814186297357082, + 0.049540650099515915, + -0.008193708956241608, + 0.02315486967563629, + 0.037985045462846756, + 0.008077279664576054, + -0.023591479286551476, + -0.00899416022002697, + -0.01565973460674286, + -0.029660353437066078, + -0.025541668757796288, + 0.010325820185244083, + -0.01734795980155468, + 0.010871581733226776, + 0.031552329659461975, + -0.00854299683123827, + -0.012989139184355736, + -0.03455038368701935, + -0.027579180896282196, + -0.00822281651198864, + -0.014633703045547009, + -0.03021339327096939, + -0.00016782186867203563, + 0.004391566384583712, + 0.010493187233805656, + -0.023489603772759438, + 0.004078662488609552, + -0.016416525468230247, + -0.0013007331872358918, + 0.028859902173280716, + -0.014240753836929798, + 0.0260947085916996, + 0.009365278296172619, + -0.009554476477205753, + 0.01825028657913208, + -0.02430460788309574, + -0.017318852245807648, + -0.004191453568637371, + -0.004155069123953581, + 0.029529370367527008, + -0.022674597799777985, + -0.00803361926227808, + 0.02814677357673645, + -0.010194837115705013, + 0.0038166965823620558, + 0.013796866871416569, + 0.014291691593825817, + -0.007822590880095959, + -0.0098892105743289, + 0.017115101218223572, + 0.060892503708601, + -0.023096654564142227, + 0.018788771703839302, + 0.002790663857012987, + -0.02143753692507744, + 0.0017873711185529828, + 0.03018428571522236, + -0.017260637134313583, + 0.04328257590532303, + -0.007003947626799345, + 0.003118121065199375, + -0.01951645500957966, + 0.025468900799751282, + -0.015572413802146912, + -0.010907966643571854, + 0.0004407029482536018, + -0.036820754408836365, + 0.017799122259020805, + -0.024755772203207016, + -0.02709891088306904, + -0.02944204956293106, + -0.006268987897783518, + 0.02312576211988926, + 0.020084047690033913, + 0.009154250845313072, + -0.014808346517384052, + -0.003944041207432747, + 0.0024868561886250973, + 0.012799941934645176, + 0.010769706219434738, + 0.0031072059646248817, + 0.00777165312319994, + 0.014764685183763504, + 0.04083756357431412, + 0.0022958393674343824, + -0.03225090354681015, + 0.044388655573129654, + 0.004533464089035988, + 0.028976332396268845, + -0.011162655428051949, + -0.008251924067735672, + 0.026298459619283676, + -0.023416835814714432, + -0.01323655154556036, + -0.03146500885486603, + 0.011024395935237408, + -0.0019047099631279707, + -0.039382196962833405, + -0.023867998272180557, + 0.008695810101926327, + 0.0220778975635767, + -0.0022594553884118795, + 0.025017736479640007, + 0.031843401491642, + -0.003425567178055644, + -0.013593115843832493, + 0.019472794607281685, + -0.0027852063067257404, + 0.007043970283120871, + 0.02018592320382595, + 0.003994978964328766, + -0.0024086302146315575, + 0.023998981341719627, + 0.027841147035360336, + -0.022543614730238914, + -0.0222379881888628, + 0.04692099243402481, + -0.0038603576831519604, + 0.007338681723922491, + -0.007174953352659941, + 0.015368662774562836, + -0.023737015202641487, + 0.011984936892986298, + 0.017115101218223572, + -0.019953064620494843, + 0.045290980488061905, + 0.024843093007802963, + -0.0068111116997897625, + 0.05067583546042442, + 0.014277137815952301, + -0.007011224515736103, + -0.0010078407358378172, + -0.027477305382490158, + 0.06741254031658173, + -0.029471157118678093, + 0.02247084677219391, + 0.0045953174121677876, + 0.011904891580343246, + -0.03588932007551193, + -0.0278993621468544, + -0.010296712629497051, + 0.0231403149664402, + 0.01565973460674286, + 0.028627043589949608, + -0.032716620713472366, + 0.03073732554912567, + -0.005450344644486904, + 0.035161636769771576, + 0.01736251264810562, + -0.024886755272746086, + -0.0021503029856830835, + -0.028816241770982742, + -0.013891465961933136, + -0.0040350016206502914, + 0.025920063257217407, + -0.009168804623186588, + 0.0032381888013333082, + -0.04430133476853371, + 0.007727992255240679, + 0.026793284341692924, + 0.0260947085916996, + -0.0531790629029274, + 0.0013580381637439132, + 0.01189033780246973, + 0.018672343343496323, + -0.014691917225718498, + -0.041215959936380386, + -0.02247084677219391, + 0.011955829337239265, + 0.0072404444217681885, + 0.0011042588157579303, + 0.007822590880095959, + -0.014553657732903957, + -0.016387417912483215, + 0.009059651754796505, + 0.005086503457278013, + 0.019589222967624664, + -0.0067092361859977245, + 0.00017327949171885848, + -0.0064836544916033745, + 0.0034237478394061327, + 0.0019720206037163734, + -0.02904910035431385, + 0.033968236297369, + 0.04395204409956932, + -0.0019138059578835964, + -0.007669777609407902, + 0.001794647891074419, + -0.03085375390946865, + -0.0009996542939916253, + -0.020273244008421898, + -0.005424875766038895, + -0.005246593616902828, + -0.05230584368109703, + -0.0018155687721446157, + 0.028044898062944412, + -0.010755152441561222, + 0.0010096599580720067, + 0.019691098481416702, + -0.009219742380082607, + 0.018861539661884308, + 0.017304299399256706, + 0.004820899106562138, + -0.02402808889746666, + -0.010449525900185108, + -0.01284360233694315, + 0.003914933651685715, + -0.004573486745357513, + 0.010784259997308254, + 0.022005129605531693, + -0.028874456882476807, + -0.03457948938012123, + 0.004351543728262186, + -0.011388236656785011, + -0.011999490670859814, + 0.005213847849518061, + 0.0014489985769614577, + -0.02210700511932373, + -0.031435899436473846, + 0.015470538288354874, + -0.010784259997308254, + 0.0016864050412550569, + 0.03711182624101639, + 0.01149011217057705, + 0.0222379881888628, + 0.00494460528716445, + -1.167561458714772e-5, + 0.008237370289862156, + 0.007851698435842991, + -0.01940002478659153, + -0.009670905768871307, + -0.010769706219434738, + 0.0336480550467968, + -0.01194127555936575, + -0.02992231957614422, + -0.041943639516830444, + -0.006640106439590454, + 0.0033800869714468718, + -0.009612690657377243, + 0.010602339170873165, + -0.0013098291819915175, + 0.03492877632379532, + 0.010558678768575191, + -0.0229802243411541, + 0.004795430228114128, + 0.00537029979750514, + -0.008150048553943634, + -0.010769706219434738, + -0.01143917441368103, + 0.023867998272180557, + -0.04293328896164894, + 0.003962233196943998, + -0.0018319416558369994, + 0.00849205907434225, + 0.0009750950266607106, + 0.03789772465825081, + 0.009641798213124275, + 0.007211337331682444, + -0.013331150636076927, + 0.03239644318819046, + 0.015325001440942287, + 0.036966290324926376, + -0.011897615157067776, + 0.03457948938012123, + 0.036820754408836365, + 0.004795430228114128, + 0.00011580390855669975, + -0.012996416538953781, + 0.010704214684665203, + -0.012436100281774998, + 0.029529370367527008, + 0.009918317198753357, + 0.028728919103741646, + 0.0005362113006412983, + -0.009074205532670021, + -0.005774163641035557, + -0.022543614730238914, + -0.03082464635372162, + 0.037344686686992645, + 0.03714093565940857, + -0.0195310078561306, + 0.029238298535346985, + 0.03588932007551193, + 0.02028779871761799, + 0.04191453382372856, + -0.007353235501796007, + -0.006090705748647451, + 0.013040076941251755, + 0.01234150119125843, + -0.03239644318819046, + -0.00989648699760437, + -0.01696956530213356, + -0.03123214840888977, + 0.00263239280320704, + -0.019851189106702805, + 0.017551710829138756, + 0.0075751785188913345, + 0.05117065832018852, + 0.0011297276942059398, + -0.02183048613369465, + -0.023300405591726303, + 0.0030962906312197447, + 0.0044861650094389915, + -0.0020684385672211647, + 0.0023140315897762775, + 0.01291637122631073, + 0.0028870818205177784, + 0.0006562789785675704, + -0.04127417132258415, + 0.00250686751678586, + -0.010282158851623535, + 0.008259200491011143, + -0.03297858685255051, + 0.0331532321870327, + 0.010100238025188446, + 0.018701449036598206, + -0.007989957928657532, + -0.008288308046758175, + 0.0015617894241586328, + 0.006916625890880823, + 0.016634831205010414, + -0.017639033496379852, + -0.02481398545205593, + -0.024333715438842773, + 0.03306591138243675, + -0.023096654564142227, + 0.0053521073423326015, + -0.008382907137274742, + 0.0030035111121833324, + 0.002736087655648589, + -0.007429642137140036, + -0.001560879754833877, + 0.03163965046405792, + 0.032338228076696396, + 0.014633703045547009, + -0.02391165867447853, + -0.0088631771504879, + 0.009452600963413715, + -0.02212155982851982, + 0.015907147899270058, + 0.03763575851917267, + -0.004329713061451912, + 0.005981553345918655, + -0.01747894287109375, + 0.024886755272746086, + 0.006065236870199442, + 0.03254197910428047, + -0.02405719645321369, + -0.014560934156179428, + -0.037577543407678604, + 0.04881296679377556, + -0.022936563938856125, + -0.03638414293527603, + -0.03353162854909897, + -0.015325001440942287, + 0.01387691218405962, + -0.02132110856473446, + 0.008120940998196602, + 0.00569048011675477, + 0.032862160354852676, + 0.019953064620494843, + -0.008317415602505207, + -0.0039404029957950115, + -0.0229802243411541, + 0.004617148078978062, + -0.021248340606689453, + 0.0133748110383749, + -0.024944968521595, + 0.03510342165827751, + 0.0009541741455905139, + 0.014895668253302574, + 0.0028252287302166224, + 0.007866252213716507, + -0.032949481159448624, + -0.018992522731423378, + 0.0004138696240261197, + 0.004417035263031721, + -0.001861048978753388, + -0.007127653807401657, + -0.014691917225718498, + 0.03344430401921272, + 0.0007736178813502192, + 0.019705653190612793, + -0.005836016498506069, + 0.016503848135471344, + -0.0206807479262352, + -0.03970237821340561, + -0.02328585274517536, + -0.01657661609351635, + -0.02300933189690113, + -0.01656206138432026, + -0.01708599366247654, + 0.001284360303543508, + 0.02340228110551834, + -0.005061034578830004, + -0.047503139823675156, + 0.008259200491011143, + 0.022587276995182037, + 0.0012215976603329182, + -0.010653276927769184, + 0.00963452085852623, + 0.015135804191231728, + -0.010835197754204273, + -0.01864323578774929, + -0.03391002118587494, + 0.010107515379786491, + -0.019589222967624664, + 0.005071949679404497, + -0.015965363010764122, + -0.008848623372614384, + -0.025265149772167206, + -0.0071895066648721695, + -0.037577543407678604, + -0.023358620703220367, + 0.023067547008395195, + 0.005515836179256439, + -0.04630973935127258, + 0.016038130968809128, + 0.02840873971581459, + -0.005330277141183615, + 0.03492877632379532, + 0.012268733233213425, + 0.02041878178715706, + -0.0060106604360044, + -0.029005439952015877, + 0.003596572671085596, + 0.005745056085288525, + 0.017391620203852654, + 0.002568720607087016, + -0.026298459619283676, + -0.017187869176268578, + -0.0010178463999181986, + -0.010704214684665203, + 0.023606032133102417, + 0.010333096608519554, + 0.014604595489799976, + -0.013214721344411373, + 0.011330022476613522, + -0.006516400258988142, + 0.02325674518942833, + 0.019210828468203545, + -0.007931743748486042, + 0.0007354145054705441, + 0.0009159708279184997, + -0.012006767094135284, + 0.04354454204440117, + -0.008724917657673359, + -0.0017428004648536444, + 0.0006603721994906664, + -0.03673342987895012, + -0.02673506923019886, + -0.011388236656785011, + -0.005006458144634962, + 0.005945168901234865, + -0.025003183633089066, + 0.018017427995800972, + -0.01215230394154787, + -0.03175608068704605, + 0.02493041567504406, + 0.006916625890880823, + 0.008550274185836315, + 0.010391311720013618, + 0.04409758374094963, + -0.0017646310152485967, + -0.016751259565353394, + -0.0067092361859977245, + 0.04625152423977852, + -0.004191453568637371, + 0.008462951518595219, + 0.015397769398987293, + -0.004820899106562138, + -0.008142771199345589, + -0.016358310356736183, + -0.006661936640739441, + 0.003476504934951663, + -0.06281358748674393, + -0.00220305984839797, + -0.05061762034893036, + -0.01233422476798296, + -0.021641287952661514, + 0.017944660037755966, + -0.008754025213420391, + -0.02557077631354332, + -0.008499336428940296, + -0.0008281940827146173, + -0.028612490743398666, + -0.013185613788664341, + -0.013607669621706009, + -0.011519219726324081, + 0.0021302916575223207, + 0.006210773251950741, + 0.02057887241244316, + -0.0039040185511112213, + -0.004948243498802185, + -0.014990267343819141, + -0.007793483790010214, + 0.019749313592910767, + -0.0018992522964254022, + 0.000805908755864948, + 0.017144208773970604, + 0.004984627477824688, + 0.0023886191193014383, + -0.03021339327096939, + -0.00036770725273527205, + -0.004256944637745619, + 0.020273244008421898, + -0.0103403739631176, + -0.021044589579105377, + -0.005675926338881254, + 0.0020648001227527857, + -0.02185959368944168, + 0.012872709892690182, + -0.0010051119606941938, + -0.0278993621468544, + 0.028219541534781456, + 0.011453728191554546, + -0.008070003241300583, + -0.005646819248795509, + 0.002643308136612177, + 0.013986065052449703, + 0.023096654564142227, + 0.0019447325030341744, + -0.00028174970066174865, + -0.002308574039489031, + 0.009336171671748161, + 0.0206807479262352, + 0.04124506562948227, + 0.006112535949796438, + -0.05434335768222809, + -0.04240935668349266, + 0.031843401491642, + -0.02890356443822384, + -0.020433334633708, + -0.004387927707284689, + 0.011744801886379719, + 0.007757099345326424, + 0.007582455407828093, + -0.006741981953382492, + 0.004165984690189362, + 0.035801999270915985, + 0.020389674231410027, + -0.015630628913640976, + 0.011140825226902962, + 0.0129236476495862, + -0.018730556592345238, + -0.004606232512742281, + -0.03664610907435417, + 0.002397715114057064, + -0.06042678654193878, + -0.016649384051561356, + 0.0017409812426194549, + 0.01877421885728836, + -0.0014617330161854625, + 0.003491058712825179, + -0.009052375331521034, + 0.003987702075392008, + 0.020200476050376892, + -0.0025996470358222723, + -0.007618839852511883, + -0.006985755637288094, + 0.011933999136090279, + 0.03880004957318306, + -0.01432807557284832, + 0.006079790648072958, + -0.008608488366007805, + 0.008193708956241608, + 0.013258381746709347, + -0.012676235288381577, + 0.00539576867595315, + 0.0010596881620585918, + 0.030795538797974586, + 0.010267605073750019, + 0.009947424754500389, + 0.038334332406520844, + -0.03638414293527603, + 0.033618949353694916, + -0.011839400045573711, + -0.014815622940659523, + 0.03070821799337864, + -0.012909093871712685, + -0.02645855024456978, + 0.008288308046758175, + 0.02286379598081112, + -0.009692735970020294, + 0.027855699881911278, + 0.005850570276379585, + 0.025541668757796288, + 0.01002019364386797, + 0.01291637122631073, + 0.013840528205037117, + -0.0019174444023519754, + -0.0032381888013333082, + 0.0009750950266607106, + -0.007393258158117533, + -0.0010569593869149685, + -0.021539412438869476, + -0.0005075588123872876, + 0.021161017939448357, + 0.02148119919002056, + -0.012101366184651852, + 0.032949481159448624, + -0.017042333260178566, + 0.015325001440942287, + 0.011424621567130089, + 0.028976332396268845, + -0.001506303553469479, + 0.002468664199113846, + -0.011155378073453903, + 0.03504520654678345, + 0.009321617893874645, + -0.01458276528865099, + 0.018293946981430054, + -0.008637595921754837, + 0.0094380471855402, + 0.014058833010494709, + 0.0251923818141222, + 0.02185959368944168, + 0.0037512052804231644, + -0.011737524531781673, + -0.00021011843637097627, + 0.019312703981995583, + 0.032047152519226074, + 0.012079535983502865, + 0.006148920394480228, + 0.025527115911245346, + 0.009532645344734192, + 0.002332223579287529, + 0.0005921519477851689, + 0.0009905582992359996, + -0.0018810601904988289, + 0.014917499385774136, + 0.008826793171465397, + -0.01503392867743969, + -0.026152921840548515, + 0.01825028657913208, + 0.005119249224662781, + -0.008200986310839653, + -0.004766322672367096, + 0.01966199092566967, + 0.004002255853265524, + 0.03169786557555199, + 0.030882861465215683, + -0.010238498449325562, + 0.015994468703866005, + 0.015194018371403217, + 0.009074205532670021, + 0.004759045783430338, + -0.00668740551918745, + -0.003129036398604512, + -0.0012716258643195033, + 0.009110589511692524, + -0.018352162092924118, + -0.006840219255536795, + 0.011970383115112782, + 0.014313521794974804, + 0.004198729991912842, + -0.012450654059648514, + -0.0160817913711071, + -0.0031945279333740473, + 0.014888391830027103, + -0.01621277444064617, + -0.0016654841601848602, + -0.018526805564761162, + 0.0019556477200239897, + -0.011235423386096954, + -0.022572722285985947, + -0.028728919103741646, + -0.016416525468230247, + -0.005272062495350838, + 0.03297858685255051, + -0.001195219112560153, + -0.04424311965703964, + -0.02801579050719738, + 0.02069530077278614, + -0.009423493407666683, + 0.004602594301104546, + -0.037461113184690475, + 0.0008573014056310058, + -0.014306245371699333, + 0.0013953319285064936, + -0.00938710942864418, + 0.0005011915927752852, + 0.0021048227790743113, + 0.02558532916009426, + 0.031173935160040855, + -0.020011279731988907, + 0.011082610115408897, + -0.028816241770982742, + -0.005708672106266022, + 0.020331459119915962, + -0.007939020171761513, + 0.008906838484108448, + -0.008557550609111786, + -0.005173825193196535, + 0.017187869176268578, + 0.0033582565374672413, + -0.0005976095562800765, + -0.04782331734895706, + -0.002332223579287529, + -0.005599519703537226, + 0.02414451725780964, + -0.00925612635910511, + -0.02143753692507744, + -0.007706161588430405, + -0.02247084677219391, + 0.005224762950092554, + 0.005323000252246857, + -0.019967617467045784, + -0.03356073424220085, + -0.00032018046476878226, + 0.0003624770324677229, + -0.01278538815677166, + 0.02351871132850647, + -0.003332787659019232, + -0.025541668757796288, + 0.008048173040151596, + -0.013360257260501385, + -0.014408120885491371, + -0.00020500191021710634, + -0.006632829550653696, + -0.020404227077960968, + 0.0007899907068349421, + 0.0025941894855350256, + -0.016489293426275253, + -0.010485909879207611, + -0.01162109524011612, + 0.03356073424220085, + 0.024872200563549995, + -0.02056431770324707, + -0.0015472357627004385, + 0.009612690657377243, + 0.013804144226014614, + 0.01028943620622158, + 0.014117048121988773, + -0.017260637134313583, + 0.009852826595306396, + -0.021277448162436485, + -0.021539412438869476, + 0.008579380810260773, + 0.024333715438842773, + -0.01669304445385933, + 0.00366024486720562, + 0.010638724081218243, + 0.0027197147719562054, + 0.021393876522779465, + -0.028947224840521812, + -0.028961777687072754, + -0.016372865065932274, + -0.008775855414569378, + -0.011679310351610184, + -0.0031654206104576588, + 0.015470538288354874, + -0.010464079678058624, + 0.0018737834179773927, + -0.029194636270403862, + 0.010238498449325562, + 0.019050737842917442, + -0.023314958438277245, + 0.013644053600728512, + 0.007888082414865494, + 0.01047863345593214, + -0.015965363010764122, + -0.0013462132774293423, + -0.0016254616202786565, + -0.009030544199049473, + -0.0035983917769044638, + 0.010042023845016956, + -0.02904910035431385, + 0.024522913619875908, + -0.006363586522638798, + -0.010871581733226776, + -0.022136112675070763, + -0.006825665477663279, + -0.00867397990077734, + -0.010631446726620197, + -0.04654259607195854, + -0.016532955691218376, + 0.017391620203852654, + -0.006334479432553053, + -0.005202932748943567, + -0.007233167998492718, + -0.017959212884306908, + -0.0030780986417084932, + -0.001218868768773973, + 0.01445178221911192, + -0.02941294200718403, + 0.02816132642328739, + -0.006621913984417915, + -0.02992231957614422, + -0.023096654564142227, + -0.0048645599745213985, + -0.0014781057834625244, + 0.0028197711799293756, + 0.016751259565353394, + -0.034230202436447144, + -0.026167476549744606, + -0.0009041459998115897, + -0.016256434842944145, + 0.008135494776070118, + -0.036820754408836365, + -0.008048173040151596, + 0.02120467834174633, + -0.00938710942864418, + -0.007447834126651287, + -0.0023922575637698174, + -0.008128217421472073, + 0.009146973490715027, + -0.006345394533127546, + 0.014895668253302574, + 0.0010260328417643905, + 0.006228965241461992, + -0.03137768432497978, + 0.021248340606689453, + -0.03172697499394417, + 0.002379522891715169, + 0.0031581437215209007, + -0.001857410534285009, + -0.02172861061990261, + -0.012181411497294903, + 0.0013534901663661003, + -0.013716822490096092, + 0.011555603705346584, + 0.007331404834985733, + 0.01980752870440483, + 0.012683512642979622, + -0.01464825589209795, + 0.01215230394154787, + -0.015965363010764122, + 4.579285450745374e-5, + -0.0070366933941841125, + -0.01875966414809227, + -0.008135494776070118, + -0.010238498449325562, + -0.012749004177749157, + 0.014480888843536377, + 0.03120304085314274, + 0.017275191843509674, + 0.014466335996985435, + 0.022019684314727783, + 0.003496516263112426, + 0.010100238025188446, + 0.00040477360016666353, + 0.0222379881888628, + 0.016227327287197113, + -0.005053757689893246, + 0.015004821121692657, + 0.013833251781761646, + -0.005985191557556391, + 0.019501900300383568, + 0.002332223579287529, + -0.00709490804001689, + -0.007327766623347998, + -0.007720715366303921, + -0.0001789645029930398, + -0.005093780346214771, + 0.0003795321099460125, + -0.003596572671085596, + -0.011955829337239265, + -0.00970728974789381, + 0.015703396871685982, + -0.018599573522806168, + -0.016416525468230247, + 0.0033382452093064785, + 0.010311266407370567, + 0.005919700022786856, + 0.01762447878718376, + -0.013614946976304054, + -0.02916553057730198, + -0.004744492471218109, + -0.014277137815952301, + -0.004475249908864498, + 0.010384034365415573, + -0.01760992594063282, + 0.0074150883592665195, + -0.012530699372291565, + -0.007269551977515221, + 0.010434972122311592, + -0.018585020676255226, + -0.019225381314754486, + 0.021553967148065567, + -0.004977351054549217, + 0.017260637134313583, + 0.009852826595306396, + -0.01387691218405962, + 0.012385162524878979, + -0.009096035733819008, + 0.017115101218223572, + -0.004187814891338348, + 0.010551401413977146, + 0.04060470312833786, + -0.028059450909495354, + -0.007567902095615864, + 0.004762684460729361, + 0.017187869176268578, + 0.008375629782676697, + 0.018701449036598206, + 0.02081173099577427, + -0.02146664448082447, + -0.006814749911427498, + 0.008775855414569378, + -0.014080663211643696, + 0.017406174913048744, + -0.0022394440602511168, + 0.03312412276864052, + -0.010216667316854, + 0.02327129803597927, + -0.023416835814714432, + -0.01170114055275917, + -0.017056886106729507, + -0.016285542398691177, + -0.01634375751018524, + 0.0044279503636062145, + 0.015499644912779331, + 0.014742854982614517, + 0.028554275631904602, + 0.0020029470324516296, + -0.00880496297031641, + -0.03332787752151489, + 0.011009842157363892, + -0.005657734349370003, + -0.0009760046377778053, + 0.0025941894855350256, + 0.0052938926964998245, + -0.024974076077342033, + 0.013389364816248417, + -0.0032563807908445597, + -0.0011661117896437645, + -0.01823573373258114, + -0.01721697673201561, + 0.009015990421175957, + -0.012872709892690182, + -0.0068547725677490234, + -0.015892593190073967, + -0.009496261365711689, + -0.016125451773405075, + 0.025468900799751282, + 0.010813367553055286, + 0.00790263619273901, + 0.019429132342338562, + -0.0017700885655358434, + 0.02057887241244316, + 0.0031035675201565027, + -0.008157324977219105, + 0.014066110365092754, + -0.026705961674451828, + 0.023620586842298508, + -0.03097018226981163, + 0.014109770767390728, + -0.008593934588134289, + 0.002455929759889841, + 0.010602339170873165, + 0.02289290353655815, + -0.01322927512228489, + 0.008215540088713169, + 0.004056831821799278, + 0.013265659101307392, + 0.004355181939899921, + 0.004366097040474415, + -0.026371227577328682, + -0.004642616957426071, + 0.039411306381225586, + -0.02276192046701908, + 0.005403045564889908, + -0.019501900300383568, + 0.008695810101926327, + 0.02493041567504406, + 0.0103403739631176, + -0.006887518335133791, + -0.0011770270066335797, + -0.007185868453234434, + 0.020986374467611313, + -0.016009023413062096, + -0.017027778550982475, + 0.013338427059352398, + 0.0024122686590999365, + -0.014437228441238403, + -0.004133238922804594, + 0.0490749329328537, + -0.020346013829112053, + 0.0016955011524260044, + 0.009627244435250759, + 0.002683330560103059, + 0.04383561760187149, + -0.027142571285367012, + 0.02287834882736206, + -0.008688533678650856, + 0.0032636576797813177, + -0.02803034521639347, + -0.017566265538334846, + -0.0032672961242496967, + -0.01170114055275917, + 0.00016179574595298618, + -0.006509123370051384, + -0.025628991425037384, + 0.01657661609351635, + -0.00469355471432209, + 0.031028397381305695, + 0.033968236297369, + 0.01618366688489914, + -0.010587785392999649, + 0.046833671629428864, + -0.008070003241300583, + 0.008593934588134289, + 0.010893412865698338, + -0.0009036911651492119, + 0.005348469130694866, + -0.0027106187772005796, + 0.001315286848694086, + 0.0014117048121988773, + -0.002623296808451414, + -0.013585839420557022, + 0.011606541462242603, + 0.01355673186480999, + 0.005712310783565044, + 0.005803270731121302, + -0.022034237161278725, + -0.005854208953678608, + -0.004515272099524736, + -0.013753206469118595, + -0.007382342591881752, + -0.025279702618718147, + 0.0046571702696383, + -0.011482835747301579, + -0.0021939638536423445, + -0.01798832044005394, + 0.010587785392999649, + -0.0010906147072091699, + -0.00944532360881567, + -0.00549036730080843, + -0.01685313507914543, + -0.01749349571764469, + 0.011388236656785011, + 0.03297858685255051, + 0.009794611483812332, + 0.003491058712825179, + -0.0067528970539569855, + 0.0018510433146730065, + 0.014429951086640358, + -0.012305117212235928, + 0.025163274258375168, + -0.001650930498726666, + 0.008419291116297245, + 0.015266786329448223, + -0.028190433979034424, + 0.005410321988165379, + -0.012690789066255093, + 0.036442358046770096, + 0.003118121065199375, + -0.0013071004068478942, + -0.006632829550653696, + -0.014022449031472206, + -0.012734450399875641, + -0.00433698995038867, + -0.007265913300216198, + 0.004999181255698204, + 0.02955847792327404, + -0.002113918773829937, + -0.0011770270066335797, + -0.009052375331521034, + 0.022150667384266853, + 0.0094380471855402, + -0.0037875892594456673, + 0.005119249224662781, + 0.008026341907680035, + 0.02143753692507744, + -0.004980989266186953, + -0.007167676463723183, + -0.006188943050801754, + 0.017653586342930794, + -0.01053684763610363, + 0.009168804623186588, + -0.027084356173872948, + 0.004307882394641638, + 0.015907147899270058, + 0.01567428931593895, + 0.004031362943351269, + -0.0001156333601102233, + -0.000437974144006148, + -0.00983827281743288, + 0.0010951627045869827, + -0.003181793261319399, + 0.004391566384583712, + -0.009561752900481224, + 0.003441940061748028, + 0.0070730773732066154, + -0.011009842157363892, + -0.0005557677941396832, + -0.006680128630250692, + 0.0044788881205022335, + 0.01020939089357853, + -0.012377886101603508, + 0.0043697357177734375, + -0.024115409702062607, + 0.06717967987060547, + -0.011053502559661865, + 0.018701449036598206, + 0.01368043851107359, + 0.013476686552166939, + -0.01336753461509943, + -0.0107915373519063, + 0.022048791870474815, + 0.014015172608196735, + -0.007495133671909571, + 0.010202113538980484, + -0.006520038470625877, + 0.007669777609407902, + -0.003585657337680459, + -0.03097018226981163, + -0.019341811537742615, + 0.007222252432256937, + -0.005959722679108381, + 0.01954556256532669, + 0.01902163028717041, + 0.01980752870440483, + -0.003203623928129673, + -0.018075643107295036, + 0.011031672358512878, + -0.007611562963575125, + 0.021379323676228523, + -0.017042333260178566, + -0.0032709345687180758, + 0.02119012549519539, + 0.013389364816248417, + 0.001891975523903966, + 0.007516964338719845, + -0.0011879423400387168, + -0.006629190873354673, + 0.005970637779682875, + 0.004551656544208527, + -0.014429951086640358, + 0.018162963911890984, + 0.00671287439763546, + -0.004809984005987644, + 0.007065800949931145, + -0.017260637134313583, + 0.02557077631354332, + 0.024581126868724823, + -0.025876402854919434, + 0.0008782222867012024, + -0.008703087456524372, + -0.0029216466937214136, + -0.012130473740398884, + 0.005781440529972315, + -0.0012834506342187524, + -0.024493806064128876, + -0.006174389272928238, + 0.013316596858203411, + 0.01849769800901413, + 0.0025050484109669924, + 0.0005598610150627792, + -0.00323091191239655, + -0.0019574668258428574, + -0.0065345922484993935, + -0.02251450903713703, + 0.0023777037858963013, + -0.013716822490096092, + -0.020084047690033913, + -0.020622532814741135, + -0.0009432589286006987, + -0.015616074204444885, + -0.005122887436300516, + -0.012836325913667679, + -0.009358001872897148, + -0.009481707587838173, + -0.004271498415619135, + -0.002519601956009865, + -0.022019684314727783, + -0.021801378577947617, + 0.006458185613155365, + -0.0005871491157449782, + 0.034899670630693436, + 0.01762447878718376, + 0.007873528636991978, + -0.006112535949796438, + -0.0043624588288366795, + -0.010391311720013618, + -0.006130728404968977, + 0.008302861824631691, + -0.009692735970020294, + 0.011242700740695, + -0.022558169439435005, + 0.003958594985306263, + -0.02414451725780964, + -0.02401353418827057, + -0.014437228441238403, + -0.0009173352154903114, + 0.013418472371995449, + -0.011089887470006943, + 0.013440302573144436, + 0.0020538850221782923, + -0.0047990684397518635, + 0.011366406455636024, + 0.0014944786671549082, + 0.005719587206840515, + 0.0018055631080642343, + -9.309224537901173e-7, + -0.00418053800240159, + 0.02366424724459648, + -0.001564518199302256, + 0.018424930050969124, + 0.0075242407619953156, + -0.019501900300383568, + -0.015703396871685982, + -0.004937328398227692, + -0.02107369527220726, + 0.010464079678058624, + 0.0033964598551392555, + -0.022048791870474815, + -0.002168494975194335, + 0.015630628913640976, + 0.006527315359562635, + -0.008142771199345589, + -0.010245774872601032, + -0.023227637633681297, + -0.004515272099524736, + -0.0121450275182724, + -0.022543614730238914, + -0.0035838382318615913, + 0.012290563434362411, + -0.008965052664279938, + -0.006312648765742779, + -0.002663319231942296, + 0.004307882394641638, + 0.019341811537742615, + 0.016649384051561356, + 0.03158143535256386, + -0.02276192046701908, + 0.011177209205925465, + -0.006068875081837177, + -0.011497389525175095, + 0.00013155142369214445, + 0.02069530077278614, + -0.019239936023950577, + 0.03679164499044418, + -0.017668141052126884, + 0.009612690657377243, + 0.019458239898085594, + -0.00533391535282135, + -0.018017427995800972, + 0.00822281651198864, + -0.02469755709171295, + 0.018192071467638016, + -0.010311266407370567, + 0.04025541618466377, + -0.03521985188126564, + 0.004402481485158205, + -0.02196146920323372, + -0.009146973490715027, + 0.0036074877716600895, + -0.02379523031413555, + 0.01723152957856655, + -0.02260182984173298, + 0.0017719077877700329, + 0.011220869608223438, + 0.0063890558667480946, + -0.022660044953227043, + 0.00013609943562187254, + -0.016998672857880592, + 0.0071822297759354115, + 0.0012152304407209158, + 0.016431080177426338, + -3.0898096156306565e-5, + -0.007597009185701609, + -0.01966199092566967, + -0.0015554222045466304, + 0.028859902173280716, + -0.016474740579724312, + -0.013280212879180908, + -0.0012125015491619706, + 0.017275191843509674, + 0.010092961601912975, + -0.015557860024273396, + 0.023227637633681297, + -0.002854336053133011, + -0.00019067565153818578, + 0.00963452085852623, + 0.0033073187805712223, + -0.017071440815925598, + -0.005363022908568382, + 0.025483453646302223, + -0.01708599366247654, + 0.015237679705023766, + 0.009852826595306396, + 0.0021430260967463255, + 0.017391620203852654, + 0.008557550609111786, + 0.005504921078681946, + -0.016634831205010414, + -0.007735269144177437, + 0.019065290689468384, + 0.023867998272180557, + 0.018031980842351913, + -0.008899561129510403, + -0.014633703045547009, + 0.0010778802679851651, + -0.004555294755846262, + 0.018075643107295036, + -0.0041441540233790874, + -0.002623296808451414, + -0.016140006482601166, + -0.019865741953253746, + 0.0015545125352218747, + 0.010114791803061962, + -0.008244646713137627, + -0.029500264674425125, + 0.010391311720013618, + 0.014415397308766842, + -0.011628372594714165, + -0.0032127199228852987, + -0.014371736906468868, + 0.02081173099577427, + 0.0035438155755400658, + 0.00546489842236042, + 0.006017937324941158, + -0.0039258492179214954, + -0.006905710324645042, + -0.007604286074638367, + 0.004162346012890339, + 0.0066000837832689285, + 0.0041077700443565845, + 0.004940966609865427, + 0.01413887832313776, + 0.0014453601324930787, + 0.010827921330928802, + -0.009197911247611046, + -0.0013134676264598966, + 0.0022558169439435005, + -0.005232039839029312, + 0.031930726021528244, + -0.0008304680814035237, + -0.012297840788960457, + 0.015077589079737663, + -0.006414524745196104, + -0.019196273759007454, + -0.002630573697388172, + -0.009336171671748161, + -0.016023576259613037, + -0.0012416088720783591, + -0.012050428427755833, + -0.003965871874243021, + 0.007727992255240679, + 0.009590860456228256, + -3.0386445359908976e-5, + -0.011148101650178432, + 0.0005935163353569806, + -0.011635649017989635, + 0.007167676463723183, + 0.015048481523990631, + -0.009794611483812332, + -0.013411195017397404, + 0.005384853109717369, + -0.015194018371403217, + -0.02597827836871147, + 0.005752332974225283, + -0.0065236771479249, + -0.0015153995482251048, + 0.00028015789575874805, + 0.009794611483812332, + 0.01940002478659153, + -0.042467571794986725, + 0.010682384483516216, + -0.0062216888181865215, + 0.00046571705024689436, + 0.015383215621113777, + -0.0005621350137516856, + 0.0029416580218821764, + 0.018352162092924118, + -0.008084557019174099, + -0.0028779858257621527, + 0.010907966643571854, + -0.006130728404968977, + -0.0098892105743289, + -0.005806909408420324, + 0.005843293387442827, + -0.006851134356111288, + 0.023591479286551476, + -0.007982681505382061, + 0.0044861650094389915, + -0.026909712702035904, + 0.014306245371699333, + 0.010187560692429543, + 0.004453419242054224, + 0.011504665948450565, + 0.00558496592566371, + 0.009110589511692524, + -0.0051701869815588, + -0.021946916356682777, + 0.01194127555936575, + 0.018148411065340042, + 0.010507741011679173, + -0.005494005512446165, + 0.015586967580020428, + -0.010915243066847324, + -0.0072549981996417046, + -0.010696938261389732, + -0.0076333931647241116, + -0.02161218225955963, + 0.021131910383701324, + 0.021044589579105377, + 0.014044279232621193, + 0.007142207585275173, + -0.0026105623692274094, + 0.028365079313516617, + -0.0012115919962525368, + -0.011395514011383057, + -0.0027087994385510683, + -0.017930105328559875, + -0.003025341546162963, + -0.013440302573144436, + 0.011446451768279076, + 0.0177263543009758, + -0.00338736386038363, + 0.006396332290023565, + -0.013018246740102768, + 0.007808037102222443, + 0.02233986370265484, + -0.005857847165316343, + 0.022048791870474815, + -0.014226200059056282, + 0.006825665477663279, + -0.0028161327354609966, + -0.0065236771479249, + -0.012399716302752495, + 0.025759974494576454, + 0.01418981608003378, + -0.0168240275233984, + 0.0010296712862327695, + -0.011461005546152592, + 0.015878040343523026, + 0.004351543728262186, + -0.006443631835281849, + -0.011330022476613522, + 0.0038530807942152023, + -0.007953573949635029, + -0.013767760246992111, + -0.002892539370805025, + 0.004082301165908575, + -0.003842165693640709, + 0.020869944244623184, + 0.0031545052770525217, + -0.02069530077278614, + -0.014699193648993969, + -0.0046571702696383, + -0.011359130032360554, + 0.005406683776527643, + 0.023460496217012405, + 0.00867397990077734, + -0.018061088398098946, + 0.00533391535282135, + 0.021553967148065567, + 0.025367025285959244, + 0.008906838484108448, + -0.014182539656758308, + -0.0003558823955245316, + 0.011555603705346584, + -0.006028852425515652, + -0.005861485376954079, + 0.01877421885728836, + -0.0021321107633411884, + -0.007444195915013552, + 0.01322927512228489, + -0.0288016889244318, + 0.023329513147473335, + -0.006520038470625877, + -0.030300714075565338, + -0.010100238025188446, + -0.003028979990631342, + -0.019851189106702805, + 0.01928359642624855, + -0.020462442189455032, + 0.014932052232325077, + -0.030882861465215683, + -0.0077425455674529076, + 0.024843093007802963, + 0.0060106604360044, + -0.0016018119640648365, + -0.0011151740327477455, + -0.017056886106729507, + 0.02276192046701908, + 0.02530881017446518, + 0.030155178159475327, + 0.018323054537177086, + -0.021161017939448357, + -0.008084557019174099, + 0.0038676345720887184, + 0.022572722285985947, + -0.009860103018581867, + -0.021044589579105377, + 0.014349906705319881, + -0.012174134142696857, + 0.011184485629200935, + 0.01503392867743969, + -0.0048136222176253796, + -0.019734758883714676, + 0.007116738706827164, + 0.008128217421472073, + 0.004977351054549217, + -0.005646819248795509, + -0.011613818816840649, + -0.010951627045869827, + 0.020011279731988907, + 0.025789080187678337, + -0.009052375331521034, + -0.0060979826375842094, + 0.0007104004034772515, + -0.01990940421819687, + -0.005166548304259777, + 0.027651948854327202, + -0.013141952455043793, + -0.008630318567156792, + -0.007447834126651287, + 0.013185613788664341, + -0.0002978951670229435, + 0.009998362511396408, + -0.0006708326400257647, + 0.012166857719421387, + -0.006982117425650358, + 0.00944532360881567, + -0.012487038038671017, + 0.044912587851285934, + 0.0011324564693495631, + 0.00044206733582541347, + 0.004482526332139969, + 0.008331969380378723, + -0.03961505740880966, + -0.03661700338125229, + 0.0084120137616992, + -0.02712801843881607, + -0.012043152004480362, + 0.026705961674451828, + -0.0005894231144338846, + 0.0024195455480366945, + 0.003138132393360138, + -0.004620786290615797, + -0.017799122259020805, + -0.019720206037163734, + -0.000618985272012651, + 0.018468592315912247, + -0.009518091566860676, + -0.0008218268631026149, + 0.003432844066992402, + -0.0115701574832201, + -0.009954702109098434, + -0.0074260039255023, + 0.007244083099067211, + -0.010122069157660007, + 0.017842784523963928, + -0.010689661838114262, + -0.0011624733451753855, + 0.0010132984025403857, + -0.02018592320382595, + 0.006279902998358011, + -0.02185959368944168, + 0.004948243498802185, + -0.003643871983513236, + 0.002741545205935836, + -0.00930706411600113, + -0.011992214247584343, + 0.016431080177426338, + 0.010034746490418911, + 0.01490294560790062, + -0.020840836688876152, + 0.011504665948450565, + -0.010755152441561222, + 0.026705961674451828, + 0.024624789133667946, + 0.000614892051089555, + 0.014888391830027103, + 0.019836634397506714, + -0.018934307619929314, + -0.006603721994906664, + -0.012487038038671017, + -0.00989648699760437, + -0.012763557955622673, + -0.007931743748486042, + -0.005253870505839586, + -0.015383215621113777, + 0.035161636769771576, + -0.019356364384293556, + 0.011577434837818146, + 0.008324692025780678, + 0.01670759916305542, + -0.007342320401221514, + 0.021524859592318535, + 0.040866669267416, + 0.005122887436300516, + -0.0016645746072754264, + 0.002339500468224287, + -0.008783132769167423, + 0.025774527341127396, + 0.0011433716863393784, + 0.008739471435546875, + -0.006418162956833839, + 0.00956903025507927, + 0.006199858151376247, + 0.0009405300952494144, + -0.01554330624639988, + 0.031668759882450104, + -0.0031836125999689102, + -0.001116993254981935, + 0.02311120741069317, + 0.0027651949785649776, + -0.0005048299790360034, + 0.006138004828244448, + 0.0051920171827077866, + -0.036442358046770096, + 0.022398078814148903, + 0.011730248108506203, + 0.016241881996393204, + 0.0029980535618960857, + -0.014095216989517212, + 0.0008477505762130022, + 0.005308446474373341, + 0.0038057814817875624, + -0.033880915492773056, + 0.001448088907636702, + 0.00046662663226015866, + 0.02366424724459648, + -0.010689661838114262, + 0.01052957121282816, + -0.007662500720471144, + -0.0019229019526392221, + -0.0009023267775774002, + 0.007975404150784016, + 0.015572413802146912, + -0.013673161156475544, + -0.02197602204978466, + 0.020215030759572983, + 0.022325310856103897, + 0.015295893885195255, + 0.004500718787312508, + 0.028219541534781456, + -0.029194636270403862, + 0.028859902173280716, + 0.011650202795863152, + -0.008455675095319748, + -0.018031980842351913, + 0.0017282468033954501, + -0.00822281651198864, + -0.0003456493723206222, + 0.007411450147628784, + 0.00010761747398646548, + -0.009052375331521034, + -0.017260637134313583, + 0.005424875766038895, + 0.0062726265750825405, + 0.010223944671452045, + 0.019108952954411507, + -0.03492877632379532, + 0.02324219048023224, + 8.828839781926945e-5, + -0.006905710324645042, + 0.02893267199397087, + -0.001545416540466249, + 0.003558369353413582, + -0.013010969385504723, + -0.012894540093839169, + -0.03690807521343231, + 0.008113663643598557, + 0.014895668253302574, + -0.012064982205629349, + 0.012254179455339909, + 0.0011078971438109875, + -0.02571631222963333, + -0.004384289495646954, + -0.008899561129510403, + -0.002626935252919793, + -0.0024122686590999365, + -0.018686896190047264, + -0.03699539601802826, + -0.010427695699036121, + 0.022194327786564827, + 0.005435790866613388, + 0.007888082414865494, + -0.005570412613451481, + -0.02212155982851982, + 0.0007895359303802252, + -0.0107915373519063, + 0.019472794607281685, + 0.007007586304098368, + 0.001456275349482894, + 0.034142881631851196, + -0.013804144226014614, + 0.0277392715215683, + -0.011897615157067776, + -0.014873838052153587, + 0.010245774872601032, + 0.022849243134260178, + 0.007393258158117533, + 0.001650930498726666, + -0.009903764352202415, + -0.027564628049731255, + -0.015339555218815804, + -0.01890520192682743, + 0.01787189207971096, + 0.016227327287197113, + -0.008841346949338913, + -0.01103894878178835, + 0.012188687920570374, + -0.003294584108516574, + -0.004515272099524736, + -0.0015808910829946399, + -0.00033155051642097533, + 0.0017200603615492582, + -0.030504466965794563, + 0.005530389957129955, + -0.018919754773378372, + 0.02276192046701908, + -0.0010260328417643905, + 0.01838126964867115, + -0.012385162524878979, + 0.025119611993432045, + 0.002339500468224287, + 0.0017455293564125896, + -0.0008413832983933389, + 0.011417344212532043, + -0.007931743748486042, + -0.012719896622002125, + -0.005817824508994818, + 0.012639851309359074, + 0.0049082208424806595, + 0.0186286810785532, + -0.0006103439955040812, + 0.004584402311593294, + 0.0188760943710804, + -0.010485909879207611, + -0.025934617966413498, + 0.009277956560254097, + -0.015616074204444885, + -0.0031563243828713894, + 0.005348469130694866, + -0.0039840638637542725, + -0.01695501059293747, + -0.0015781621914356947, + -0.0066582984291017056, + -0.014895668253302574, + -0.006370863411575556, + 0.013171060010790825, + -0.010711492039263248, + 0.004460696130990982, + 0.011024395935237408, + 0.003776674158871174, + 0.0005716858431696892, + -0.015528752468526363, + 0.021364768967032433, + -0.012064982205629349, + -0.007778930012136698, + 0.011075333692133427, + -0.007647946942597628, + 0.00019704288570210338, + -0.022179774940013885, + 0.03169786557555199, + -0.0015708854189142585, + -0.040284525603055954, + -0.024100856855511665, + -0.008331969380378723, + 0.02750641293823719, + -0.010857028886675835, + -0.015732504427433014, + -0.011679310351610184, + 0.012246903032064438, + -0.018293946981430054, + 0.0012552529806271195, + 0.000642634928226471, + -0.0160817913711071, + -0.013163783587515354, + 0.010107515379786491, + -0.0007872619316913188, + 0.02041878178715706, + -0.003632956650108099, + -0.013360257260501385, + 0.025381578132510185, + -0.020273244008421898, + -0.003243646351620555, + -0.0047917915508151054, + 0.017842784523963928, + -0.013192890211939812, + -1.2030928701278754e-5, + -0.0012670777505263686, + 0.026938820257782936, + -0.025789080187678337, + -0.002947115572169423, + 0.004020447842776775, + -0.013571285642683506, + 0.0006822026916779578, + -0.023416835814714432, + -0.01915261335670948, + 0.0010915242601186037, + 0.0033655331935733557, + 0.0044133965857326984, + -0.024843093007802963, + -0.022267095744609833, + 0.0002110280329361558, + -0.03513253107666969, + 0.0014271680265665054, + -0.002226709621027112, + 0.010434972122311592, + 0.004446142353117466, + -0.026196584105491638, + -0.0068620494566857815, + 0.011140825226902962, + 0.001888337079435587, + -0.0045953174121677876, + 0.03472502529621124, + -0.017537157982587814, + 0.0028943587094545364, + 0.0038057814817875624, + -0.001116993254981935, + -0.026123816147446632, + -0.022965671494603157, + 0.010114791803061962, + -0.0025923701468855143, + -0.010646000504493713, + 0.005730502773076296, + 0.00571594899520278, + -0.014837454073131084, + -0.00045025377767160535, + -0.01528134010732174, + -0.03379359096288681, + 0.0002708344836719334, + 0.016241881996393204, + -0.007171314675360918, + -0.004078662488609552, + 0.04834724962711334, + 0.003878549672663212, + 0.0009996542939916253, + 0.014117048121988773, + 0.005151994992047548, + -0.016096346080303192, + -0.0012170496629551053, + 0.0028270480688661337, + -0.009343448095023632, + 0.02351871132850647, + 0.00017100547847803682, + -0.02135021612048149, + -0.0012143207713961601, + 0.0019956703763455153, + 0.004504356998950243, + -0.019618330523371696, + -0.006192581262439489, + 0.010813367553055286, + -0.004118685144931078, + 0.020869944244623184, + -0.006771089043468237, + -0.020724408328533173, + 0.021364768967032433, + -0.0051338025368750095, + 0.005795994307845831, + 0.015426876954734325, + 0.005665011238306761, + -0.012130473740398884, + 0.005468536633998156, + 0.004518910776823759, + 0.01954556256532669, + 0.017406174913048744, + 0.007618839852511883, + -0.005806909408420324, + 0.00028857175493612885, + 0.006225327029824257, + -0.004955520387738943, + -0.011417344212532043, + -0.006363586522638798, + 0.032076261937618256, + -0.011068056337535381, + 0.0060106604360044, + -0.010733322240412235, + -0.02530881017446518, + 0.0049154977314174175, + 0.004679000936448574, + -0.005217486061155796, + -0.009037821553647518, + 0.020229583606123924, + 0.017900999635457993, + 0.0005785078974440694, + -0.011533773504197598, + -0.02209245227277279, + 0.009619968011975288, + 0.0048136222176253796, + -0.0004939147620461881, + 0.0042533064261078835, + 0.01696956530213356, + 0.009510815143585205, + -0.0015281339874491096, + 0.01621277444064617, + -0.008819516748189926, + -0.009932870976626873, + -0.0032800305634737015, + 0.01509214285761118, + 0.0005907875602133572, + -0.0038676345720887184, + -0.022907456383109093, + -0.01092252042144537, + -0.01039858814328909, + 0.008593934588134289, + -0.020768068730831146, + -0.0042096455581486225, + -0.0233877282589674, + -0.027593733742833138, + 0.0022321671713143587, + -0.009583583101630211, + -0.0003297312941867858, + 0.007655223831534386, + -0.009954702109098434, + -0.001062417053617537, + -0.028889009729027748, + 0.005246593616902828, + -0.009408939629793167, + 0.006090705748647451, + -0.002575997496023774, + 0.0048645599745213985, + -0.0006912987446412444, + -0.0028325056191533804, + 0.017828229814767838, + -0.02442103810608387, + 0.008019065484404564, + 0.03268751502037048, + -0.006312648765742779, + -0.019501900300383568, + 0.010420418344438076, + -0.000755425775423646, + 0.003391002304852009, + -0.0013498517218977213, + -0.007560625206679106, + -0.01669304445385933, + -0.0021521220915019512, + -0.00716403778642416, + -0.0031545052770525217, + 0.02493041567504406, + -0.021422984078526497, + -0.007939020171761513, + 0.0107915373519063, + 0.03073732554912567, + 0.01980752870440483, + 0.0018073823302984238, + -0.019298149272799492, + 0.001818297547288239, + 0.01239243894815445, + 0.01143189799040556, + 0.0029725844506174326, + -0.006407247856259346, + -0.011977660469710827, + -0.012057704851031303, + -0.0007959031499922276, + 0.020768068730831146, + 0.018148411065340042, + 0.021946916356682777, + 0.01260346733033657, + -0.007396896369755268, + -0.004584402311593294, + -0.017406174913048744, + -0.024246392771601677, + 0.011235423386096954, + 0.00440611969679594, + 0.02583274245262146, + 0.019341811537742615, + -0.007109461817890406, + -0.012305117212235928, + 0.014066110365092754, + 0.007844421081244946, + -0.022194327786564827, + -0.0044788881205022335, + 0.011817569844424725, + -0.0022649129386991262, + -0.015747057273983955, + -0.020346013829112053, + 0.0025559861678630114, + 0.004711746703833342, + -0.012210519053041935, + -0.007553348317742348, + -0.001463552238419652, + -0.00706943916156888, + 0.005552220158278942, + 0.019196273759007454, + -0.010187560692429543, + -0.0007167676230892539, + -0.002807036740705371, + 0.011482835747301579, + -0.013753206469118595, + -0.021175570785999298, + 0.033618949353694916, + -0.005210209172219038, + -0.008623042143881321, + 0.026967927813529968, + 0.0003499699814710766, + 0.007236806210130453, + 0.013986065052449703, + -0.004999181255698204, + 0.008521166630089283, + -0.013920573517680168, + 0.010420418344438076, + 0.0030035111121833324, + -0.016649384051561356, + 0.0046899160370230675, + 0.012887263670563698, + -0.00868125632405281, + -0.009750950150191784, + 0.0028252287302166224, + 0.007560625206679106, + 0.012567083351314068, + -0.03973148390650749, + 0.004875475075095892, + -0.008754025213420391, + 0.00835379958152771, + -0.03455038368701935, + -0.005330277141183615, + -0.01052957121282816, + 0.008251924067735672, + -0.0006499117589555681, + 0.005865124054253101, + 0.00854299683123827, + -0.004162346012890339, + 0.01669304445385933, + -0.003965871874243021, + -0.01593625545501709, + 0.0073568737134337425, + 0.011897615157067776, + 0.011904891580343246, + 0.022427186369895935, + 0.021495752036571503, + -0.0034983353689312935, + -0.01619822159409523, + -0.011264530941843987, + -0.007953573949635029, + 0.021161017939448357, + -0.0011142643634229898, + 0.018730556592345238, + -0.012086812406778336, + -0.009510815143585205, + 0.006014299113303423, + -0.01723152957856655, + -0.008885008282959461, + -0.002861612942069769, + 0.008914114907383919, + 0.014509996399283409, + -0.012807218357920647, + -0.006512761581689119, + -0.014480888843536377, + -0.016896795481443405, + -0.001946551725268364, + -0.008077279664576054, + -0.005319362040609121, + -0.015237679705023766, + -0.009954702109098434, + -0.007720715366303921, + 0.008419291116297245, + 0.013418472371995449, + 0.014146154746413231, + 0.006345394533127546, + -0.0036693408619612455, + -0.017842784523963928, + -0.0038603576831519604, + -0.018963415175676346, + -0.015761611983180046, + -0.0012152304407209158, + -0.013956957496702671, + 0.026938820257782936, + -0.023824337869882584, + 0.021670395508408546, + -0.016227327287197113, + 0.009467153809964657, + -0.023809783160686493, + -0.011009842157363892, + 0.011104440316557884, + 0.0034946969244629145, + 0.00828103069216013, + -0.019618330523371696, + 0.005908784922212362, + -0.0006822026916779578, + 0.0017855518963187933, + -0.035656459629535675, + 0.019996725022792816, + -0.016663938760757446, + 0.0016636649379506707, + -0.01579071767628193, + 0.007691607810556889, + 0.0053011695854365826, + -0.022834688425064087, + 0.025221489369869232, + 0.0013807782670482993, + 0.0021703140810132027, + 0.009721843525767326, + 0.011497389525175095, + -0.0163292046636343, + -0.012290563434362411, + -0.020506102591753006, + 0.00295803090557456, + -0.004744492471218109, + -0.02430460788309574, + -0.016241881996393204, + 0.008397459983825684, + 0.014073386788368225, + -0.010427695699036121, + -0.015455984510481358, + 0.018031980842351913, + 0.024581126868724823, + -0.007778930012136698, + -0.0025941894855350256, + 0.0238825511187315, + -0.0069639249704778194, + 0.017318852245807648, + -0.012516145594418049, + -0.03562735393643379, + 0.016547508537769318, + 0.01839582249522209, + -0.011264530941843987, + -0.029718568548560143, + -0.0030035111121833324, + -0.028699813410639763, + 0.00823009293526411, + 0.01419709250330925, + -0.0012925467453897, + -0.0034164711833000183, + 0.0197784211486578, + -0.010522294789552689, + 0.01672215200960636, + 0.022834688425064087, + -0.012217795476317406, + 0.008317415602505207, + 0.008331969380378723, + -0.0009255216573365033, + -0.026167476549744606, + -0.028714366257190704, + -0.011286361142992973, + 0.007837144657969475, + -0.0015808910829946399, + -0.0015017555560916662, + -0.007662500720471144, + -0.0032691152300685644, + 0.009721843525767326, + -0.0069275409914553165, + 0.002794302301481366, + 0.008390183560550213, + 0.0028852627146989107, + 0.0025414323899894953, + 0.0012370608747005463, + -0.0032600192353129387, + 0.010245774872601032, + -0.008208262734115124, + -0.009110589511692524, + 0.008099110797047615, + -0.005905146710574627, + 0.013993341475725174, + -0.009547199122607708, + -0.021030034869909286, + -0.006370863411575556, + -0.019720206037163734, + 0.001620003953576088, + 0.010857028886675835, + 0.004227837547659874, + -0.010194837115705013, + -0.0005621350137516856, + 0.032571084797382355, + 0.01156288105994463, + 0.003074460197240114, + 0.002697884337976575, + 0.008266477845609188, + -0.02941294200718403, + -0.0048645599745213985, + 0.007105823140591383, + -0.031173935160040855, + 0.01874511130154133, + -0.009729119949042797, + 0.030650002881884575, + 0.0023722462356090546, + 0.01291637122631073, + 0.007997234351933002, + 0.011337298899888992, + 0.015645181760191917, + -0.007662500720471144, + -0.0010387672809883952, + 0.01657661609351635, + -0.024115409702062607, + -0.004344266839325428, + 0.005665011238306761, + -0.008637595921754837, + -0.0064327167347073555, + -0.004937328398227692, + 0.0006567338132299483, + -0.006258072797209024, + 0.0052429549396038055, + 0.001678218599408865, + 0.004238752648234367, + 0.002324946690350771, + 0.013782314024865627, + 0.0008168240310624242, + -0.005286616273224354, + 0.008957776241004467, + -0.0023995342198759317, + 0.00754607142880559, + -5.411430720414501e-6, + 0.020258691161870956, + 0.007822590880095959, + -0.010871581733226776, + -0.014917499385774136, + -0.0004302425077185035, + -0.009030544199049473, + -0.014444504864513874, + -0.017770016565918922, + 0.006301733665168285, + 0.0029889573343098164, + -0.013287489302456379, + 0.011046226136386395, + -0.014932052232325077, + -0.012588913552463055, + -0.019734758883714676, + -0.015383215621113777, + 0.0014389929128810763, + 0.001576343085616827, + -0.003551092464476824, + -0.01322927512228489, + -0.0012625297531485558, + 0.018657788634300232, + 0.015441430732607841, + -0.017522603273391724, + -0.0023340429179370403, + -0.006101620849221945, + -0.00313085550442338, + -0.005497644189745188, + 0.00388582656159997, + -0.01418981608003378, + -0.02440648339688778, + 0.015295893885195255, + 0.016605723649263382, + -0.005836016498506069, + 0.005130164325237274, + 0.0017500773537904024, + 0.005577689036726952, + -0.005526751279830933, + 0.012574359774589539, + 0.01106077991425991, + -0.011031672358512878, + 0.023489603772759438, + -0.017770016565918922, + 0.028103113174438477, + -0.0005634994013234973, + 0.0067092361859977245, + -0.007429642137140036, + -0.003958594985306263, + -0.006807473488152027, + -0.00027765650884248316, + 0.009598136879503727, + 0.0027688334230333567, + 0.004664447158575058, + -0.012960031628608704, + -0.0169841181486845, + 0.011453728191554546, + -0.01554330624639988, + 0.0041077700443565845, + 0.020273244008421898, + -0.009496261365711689, + 0.023955320939421654, + -0.005570412613451481, + 0.01565973460674286, + -0.0009441685397177935, + 0.004729938693344593, + -0.012821772135794163, + 0.005668649449944496, + -0.008979606442153454, + 0.003472866490483284, + -0.005606796592473984, + 0.0011688405647873878, + -0.004507995210587978, + -0.017158761620521545, + -0.004999181255698204, + -0.013825974427163601, + 0.026836944743990898, + -0.005122887436300516, + 0.00277974852360785, + 0.013302043080329895, + 0.02517782710492611, + 0.0028252287302166224, + 1.2542580407171044e-5, + -0.025628991425037384, + -0.011555603705346584, + -0.007793483790010214, + 0.003647510427981615, + -0.014080663211643696, + 0.005472175311297178, + -0.009416216053068638, + -0.01672215200960636, + -0.003729374846443534, + 0.013898743316531181, + 0.009474431164562702, + 0.013149229809641838, + -0.009452600963413715, + -0.03329876810312271, + 0.006305372342467308, + 0.010180283337831497, + 0.01215230394154787, + -0.009379832074046135, + 0.009518091566860676, + -0.004890028852969408, + 0.019370917230844498, + -0.022674597799777985, + 0.002574178157374263, + -0.0051847402937710285, + -0.0002751550928223878, + -0.018846986815333366, + -0.0029762228950858116, + 0.0084120137616992, + 0.012836325913667679, + -0.0028943587094545364, + 0.020084047690033913, + -0.00418053800240159, + 0.013724098913371563, + -0.007502410560846329, + 5.426353891380131e-5, + -0.012428823858499527, + 0.008375629782676697, + 0.01567428931593895, + 0.002681511454284191, + 0.01685313507914543, + 0.01426986139267683, + -0.0027124378830194473, + 0.02004038728773594, + -0.002901635365560651, + -0.016372865065932274, + 0.01386963576078415, + -0.007385981269180775, + 0.014291691593825817, + -0.006993032526224852, + 0.012159581296145916, + 0.014699193648993969, + 0.003776674158871174, + 0.006065236870199442, + -0.023445941507816315, + 0.007669777609407902, + 0.006268987897783518, + -0.010274882428348064, + 0.004551656544208527, + 0.023998981341719627, + 0.013040076941251755, + -0.0029689462389796972, + -0.018861539661884308, + 0.015150357037782669, + -0.0036347759887576103, + 0.008521166630089283, + -0.01170114055275917, + -0.006505484692752361, + -0.0003285942948423326, + -0.03661700338125229, + -0.004628063179552555, + -0.008724917657673359, + 0.01823573373258114, + -0.008215540088713169, + 0.009212465025484562, + 0.008331969380378723, + 0.005781440529972315, + 0.00503920391201973, + -0.020244138315320015, + -0.007495133671909571, + -0.0021630374249070883, + 0.01260346733033657, + 0.00044570575118996203, + -0.022645490244030952, + 0.029776783660054207, + 0.0238825511187315, + -0.005439429543912411, + -0.007968127727508545, + 0.025134166702628136, + -0.018148411065340042, + 0.024624789133667946, + 0.004970074165612459, + -0.016154559329152107, + -0.0029725844506174326, + 0.01002019364386797, + -0.025119611993432045, + -0.007309574633836746, + -0.029733121395111084, + 0.006334479432553053, + 0.006610998883843422, + 0.0018119303276762366, + 0.006887518335133791, + -0.0077425455674529076, + -0.014204369857907295, + -0.010216667316854, + -0.023838890716433525, + 0.014946606010198593, + 0.011257254518568516, + 0.04779421165585518, + 0.04229293018579483, + 0.0047044698148965836, + 0.0024340993259102106, + 0.0006012480007484555, + -0.04008077457547188, + 0.002397715114057064, + -0.011839400045573711, + -0.005977914668619633, + -0.016518400982022285, + 0.0062216888181865215, + 0.0048500061966478825, + 0.014226200059056282, + 0.023707907646894455, + -0.013993341475725174, + 0.01746438816189766, + -0.006614637561142445, + 0.013280212879180908, + 0.003491058712825179, + 0.004071385599672794, + -0.0005966999451629817, + -0.012290563434362411, + -0.01432079914957285, + -0.0020702576730400324, + 0.01606723852455616, + 0.014677363447844982, + -0.0019574668258428574, + -0.014713747426867485, + -0.02107369527220726, + 0.005632265470921993, + 0.018934307619929314, + -0.006985755637288094, + -0.02004038728773594, + -0.0010560497175902128, + -0.009612690657377243, + 0.013964234851300716, + 0.018061088398098946, + 0.008841346949338913, + -0.0007190416217781603, + 0.0028361440636217594, + -0.001650930498726666, + -0.018570467829704285, + 0.012101366184651852, + -0.029980534687638283, + -0.015426876954734325, + 0.02597827836871147, + -0.0027051609940826893, + -0.004133238922804594, + -0.003596572671085596, + 0.00013439393660519272, + -0.0049082208424806595, + 0.010871581733226776, + 0.011955829337239265, + -0.010303989984095097, + -0.014204369857907295, + 0.03146500885486603, + 0.020215030759572983, + -0.03126125782728195, + -0.005530389957129955, + -0.016416525468230247, + 0.005577689036726952, + 0.010034746490418911, + 0.010194837115705013, + 0.024726664647459984, + -0.0038530807942152023, + 0.021233785897493362, + 0.0023922575637698174, + 0.009554476477205753, + 0.01189033780246973, + 0.0013607669388875365, + 0.03324055299162865, + -0.014255307614803314, + -0.014604595489799976, + -0.0012215976603329182, + -0.02456657402217388, + -0.015528752468526363, + -0.009692735970020294, + -0.01541232317686081, + -0.02466844953596592, + 0.02402808889746666, + 0.0030926521867513657, + -0.005952445790171623, + 0.0160817913711071, + 0.0012980042956769466, + -0.010180283337831497, + 0.000218987072003074, + 0.0024668448604643345, + 0.009583583101630211, + -0.011555603705346584, + -0.0002104595332639292, + -0.011330022476613522, + 0.013018246740102768, + -0.00983827281743288, + 0.004453419242054224, + 0.015106696635484695, + -0.009416216053068638, + -0.008797685615718365, + 0.006563699338585138, + 0.008150048553943634, + 0.015528752468526363, + -0.0072549981996417046, + 0.01644563302397728, + -0.0037439283914864063, + 0.025498008355498314, + -0.005355746019631624, + -0.03658789396286011, + 0.013811420649290085, + 0.0037584821693599224, + -0.003765758825466037, + 0.026778729632496834, + -0.006967563647776842, + 0.021684950217604637, + -0.004668085835874081, + 0.00018248922424390912, + -0.011599265038967133, + 0.014837454073131084, + 0.0006517309811897576, + -0.0020702576730400324, + 0.02169950306415558, + 0.02440648339688778, + -0.007939020171761513, + 0.01723152957856655, + 0.020724408328533173, + 0.0005121068097651005, + 0.016751259565353394, + -0.021641287952661514, + 0.007458749692887068, + 0.03332787752151489, + -0.002086630556732416, + -0.012516145594418049, + 0.024391930550336838, + -0.007396896369755268, + -0.00918335746973753, + 0.004675362259149551, + 0.0021812294144183397, + -0.003922210540622473, + 0.01710054837167263, + -0.003827611915767193, + 0.004169622901827097, + -0.014284415170550346, + -0.018017427995800972, + 0.010282158851623535, + 0.03169786557555199, + -0.019953064620494843, + -0.004184176679700613, + -0.009168804623186588, + -0.00938710942864418, + 0.02251450903713703, + 0.005006458144634962, + 0.00494460528716445, + 0.01215230394154787, + -0.014291691593825817, + -0.0028852627146989107, + 0.0027688334230333567, + -0.00290527381002903, + 0.009961978532373905, + -0.017391620203852654, + 0.023998981341719627, + 0.00016031763516366482, + -0.01162109524011612, + 0.002803398296236992, + 0.007458749692887068, + 0.0035765613429248333, + 0.014364459551870823, + 0.013891465961933136, + -0.016532955691218376, + -0.020011279731988907, + -0.0046571702696383, + -0.005050119012594223, + -0.012130473740398884, + -0.004438865464180708, + 0.0006107988301664591, + 0.006465462502092123, + -0.006716513074934483, + -0.0027779294177889824, + -0.00913241971284151, + -0.0036274990998208523, + -0.022645490244030952, + -0.0213356614112854, + 0.0020156814716756344, + 0.03722825646400452, + 0.012567083351314068, + 0.02196146920323372, + 0.011264530941843987, + 0.0025978279300034046, + 0.0027124378830194473, + -0.0005816915072500706, + 0.01445178221911192, + 0.00323091191239655, + 0.006829303689301014, + 0.010580508969724178, + 0.011657479219138622, + -0.008506612852215767, + -0.013920573517680168, + -0.011395514011383057, + -0.0031636012718081474, + 0.008208262734115124, + 0.029776783660054207, + -0.033618949353694916, + 0.00041978206718340516, + -0.01323655154556036, + -0.012661682441830635, + 0.01149011217057705, + -0.0011533773504197598 + ], + "2117b6f5-f483-45bf-ab97-a8379528a517": [ + 0.004644598811864853, + 0.005176685284823179, + -0.021461961790919304, + 0.019429733976721764, + -0.02118733525276184, + -0.017081689089536667, + 0.0005432430189102888, + 0.01914137788116932, + -0.016820793971419334, + 0.01007188018411398, + 0.022313298657536507, + 0.04866359010338783, + -0.018303770571947098, + -0.013209473341703415, + -0.014939611777663231, + 0.011438140645623207, + -0.027187896892428398, + 0.04558778554201126, + -0.014816030859947205, + -0.009632479399442673, + 0.0722813606262207, + 0.010936949402093887, + -0.03369651362299919, + 0.012337538413703442, + 0.0038413202855736017, + -0.01892167702317238, + 0.012385597452521324, + -0.002253643237054348, + -0.05184924229979515, + 0.004184601828455925, + 0.04361048340797424, + -0.004383705090731382, + -0.001762750674970448, + 0.023672694340348244, + 0.03789827972650528, + 0.004744150675833225, + -0.007984728552401066, + 0.016271544620394707, + -0.0167384073138237, + -0.03240577504038811, + -0.018427351489663124, + -0.002032226650044322, + -0.01440409291535616, + 0.02261538617312908, + -0.0367448553442955, + 0.01712288334965706, + 0.01240619458258152, + -0.03545411676168442, + -0.001970435958355665, + 0.03839260712265968, + 0.00959815178066492, + -0.03248816356062889, + -0.014541405253112316, + 0.012056047096848488, + 0.0052934009581804276, + -0.026460139080882072, + 0.0003228991699870676, + 0.018907945603132248, + -0.03204876184463501, + 0.0058563826605677605, + -0.004359675571322441, + -0.01956704631447792, + 0.008636963553726673, + 0.007730700075626373, + -0.023741349577903748, + -0.026501333341002464, + 0.017685864120721817, + 8.067116141319275e-5, + -0.053716693073511124, + -0.024496570229530334, + 0.009453972801566124, + 0.026954464614391327, + -0.012152166105806828, + 0.026569990441203117, + -0.034355614334344864, + -0.008932185359299183, + 0.032735325396060944, + -0.02099509723484516, + 0.004256690852344036, + 0.007600252982228994, + -0.012268881313502789, + 0.0029676686972379684, + 0.0007153128972277045, + -0.04168810695409775, + 0.041825421154499054, + -0.0021077485289424658, + -0.0011697318404912949, + -0.02214852347970009, + -0.027544910088181496, + -0.058989498764276505, + 0.005032507237046957, + -0.017246464267373085, + 0.03160936385393143, + -0.024153288453817368, + -0.019388539716601372, + 0.004270422272384167, + 0.034218303859233856, + 0.02400224469602108, + 0.03913409262895584, + -0.03872215747833252, + -0.011101724579930305, + 0.020871516317129135, + -0.04638420045375824, + 0.011802018620073795, + -0.02321956306695938, + 0.0007440627086907625, + 0.018221383914351463, + -0.020679278299212456, + -0.02438671886920929, + 0.04196273535490036, + 0.04253944754600525, + -0.03935379534959793, + 0.008321144618093967, + 0.001906928839161992, + 0.0014846925623714924, + -0.04374779760837555, + 0.0017172658117488027, + -0.03770604357123375, + -0.010195461101830006, + -0.036799781024456024, + 0.03007146157324314, + 0.04962477833032608, + -0.01974555291235447, + -0.020239878445863724, + -0.035893514752388, + -0.012021718546748161, + -0.016820793971419334, + -0.009268601424992085, + 0.02098136767745018, + 0.0019240929977968335, + -0.03792574256658554, + -0.004026692360639572, + -0.012440522201359272, + 0.007160852663218975, + -0.004404301755130291, + -0.01068978663533926, + 0.030565787106752396, + 0.030153848230838776, + -0.022464342415332794, + 0.055556681007146835, + -0.0633285790681839, + -0.019264958798885345, + -0.015502593480050564, + 0.0024956567212939262, + -0.040424831211566925, + -0.003298935480415821, + -0.03388875350356102, + 0.03993050754070282, + -0.008842932060360909, + 0.02743505872786045, + -0.022752700373530388, + -0.030483398586511612, + 0.04926776513457298, + -0.00012422500003594905, + -0.011568587273359299, + 0.014486480504274368, + -0.019251227378845215, + -0.003065503900870681, + 0.02680342085659504, + 0.01200112234801054, + 0.007813087664544582, + -0.04819672554731369, + -0.011870674788951874, + 0.01878436468541622, + 0.029522210359573364, + 0.009316660463809967, + 0.04421466216444969, + 0.01675213873386383, + -0.05066835135221481, + 0.012680819258093834, + 0.019512122496962547, + -0.03213115036487579, + 0.0027033421210944653, + 0.005317430943250656, + 0.052535805851221085, + -0.020198684185743332, + 0.03754126653075218, + 0.029082810506224632, + 0.021269723773002625, + -0.06426230072975159, + -0.012625894509255886, + -0.03707440569996834, + 0.004019826650619507, + -0.014349168166518211, + -0.0007466372917406261, + 0.04275914654135704, + 0.01772705838084221, + 0.016381394118070602, + 0.006869063246995211, + 0.00957068894058466, + 0.017617207020521164, + -0.009543226100504398, + -0.01634019985795021, + 0.02299986220896244, + -0.007634581066668034, + -0.02339806780219078, + 0.016601094976067543, + -0.023645231500267982, + 0.0012804401339963078, + 0.02946728654205799, + 0.006168769206851721, + -0.014870955608785152, + -0.051931630820035934, + 0.013978423550724983, + -0.01248858217149973, + 0.005602354649454355, + -0.01735631376504898, + 0.014829762279987335, + 0.03290010243654251, + -0.05701219663023949, + 0.03171921148896217, + -0.013449770398437977, + 0.01270141638815403, + -0.00649831909686327, + -0.008973378688097, + 0.004699524026364088, + -0.0073324935510754585, + 0.03732156753540039, + 0.00090025580720976, + -0.0025299848057329655, + -0.01180888433009386, + 0.020679278299212456, + 0.011856944300234318, + -0.02581476978957653, + -0.04336332157254219, + -0.0039134095422923565, + -0.010044417344033718, + 0.040644533932209015, + -0.04896567761898041, + -0.006034889258444309, + 0.05530951917171478, + -0.01893540844321251, + 0.0013757006963714957, + -0.04803195223212242, + 0.00705786794424057, + 0.018715709447860718, + -0.010078745894134045, + -0.013257532380521297, + 0.013545889407396317, + -0.039655882865190506, + 0.04698837548494339, + 0.033586665987968445, + 0.0253753699362278, + 0.023301949724555016, + 0.001069321995601058, + 0.022848818451166153, + 0.010435758158564568, + -0.0066871242597699165, + 0.03290010243654251, + -0.00760711869224906, + 0.02197001688182354, + -0.00360102322883904, + 0.0015576399164274335, + -0.030977724120020866, + -0.027888191863894463, + 0.023906124755740166, + 0.0049638510681688786, + -0.03732156753540039, + 0.0036662467755377293, + -0.024098362773656845, + -0.021654197946190834, + 0.019388539716601372, + 0.01834496483206749, + -0.02076166681945324, + 0.03825529292225838, + -0.01811153255403042, + 0.01248858217149973, + -0.029961612075567245, + 0.011705899611115456, + 0.040864232927560806, + -0.03817290440201759, + -0.010847696103155613, + -0.015461400151252747, + -0.015186774544417858, + 0.002341180108487606, + 0.004418033175170422, + 0.024112094193696976, + -0.010634861886501312, + 0.004387137945741415, + -0.0036628139205276966, + 0.0058563826605677605, + -0.03229592740535736, + -0.020720472559332848, + 0.0100924763828516, + -0.03833768144249916, + 0.02238195575773716, + -0.0046857926063239574, + 0.023961050435900688, + -0.013518426567316055, + -0.027352672070264816, + 0.0004969000001437962, + 0.014678717590868473, + 0.04328093305230141, + 0.017836907878518105, + 0.03704694285988808, + 0.006968615110963583, + 0.019470928236842155, + 0.023109711706638336, + -0.03246070072054863, + 0.01440409291535616, + -0.06113157421350479, + -0.014761105179786682, + 0.02883564867079258, + -0.011293962597846985, + -0.014994537457823753, + -0.04199019446969032, + 0.030593249946832657, + 0.009859045036137104, + -0.03622306510806084, + 0.011747093871235847, + -0.01634019985795021, + -0.004270422272384167, + -0.0017936460208147764, + -0.019278690218925476, + -0.018482277169823647, + 0.024125825613737106, + 0.035563964396715164, + -0.013463501818478107, + -0.0070166741497814655, + -0.030208773910999298, + 0.031911451369524, + 0.016779601573944092, + -0.03627799078822136, + 0.0015404758742079139, + -0.021626736968755722, + -0.03295502811670303, + 0.010827098973095417, + -0.003992364276200533, + -0.05077820271253586, + -0.027380134910345078, + -0.004095348529517651, + -0.014459017664194107, + -0.0233843382447958, + -0.019512122496962547, + 0.009646210819482803, + -0.0304559376090765, + -0.022272104397416115, + -0.06365812569856644, + -0.0026449840515851974, + -0.0230273250490427, + -0.009172482416033745, + -0.005722503177821636, + 0.015530056320130825, + -0.015310356393456459, + 0.03169174864888191, + -0.01756228320300579, + -0.034218303859233856, + 0.027078047394752502, + -0.0012581268092617393, + 0.011705899611115456, + 0.0007740998407825828, + -0.02220344915986061, + 0.012900520116090775, + -0.0014598047127947211, + 0.033943675458431244, + -0.02114614099264145, + 0.010916352272033691, + -0.021036291494965553, + 0.02460641972720623, + -0.025320446118712425, + -0.020528234541416168, + -0.033147264271974564, + -0.04959731549024582, + -0.02279389277100563, + 0.014156930148601532, + 0.03287263959646225, + -0.017864370718598366, + 0.005859815515577793, + -0.009646210819482803, + 0.010813368484377861, + -0.023150905966758728, + -0.0005132058868184686, + 0.013628276064991951, + -0.03454785421490669, + -0.021324647590517998, + 0.0009980910690501332, + 0.03182906284928322, + -0.016093038022518158, + -0.026775958016514778, + -0.002734237350523472, + -0.00835547223687172, + 0.006494886241853237, + 0.013593948446214199, + -0.05805576965212822, + 0.01896287128329277, + 0.03144458681344986, + -0.015324086882174015, + -0.0006410782225430012, + 0.020432116463780403, + -0.017493626102805138, + -0.018701978027820587, + 0.04119378328323364, + -0.03026369959115982, + 0.013923498801887035, + -0.02965952455997467, + 0.020734203979372978, + 0.02438671886920929, + 0.029137736186385155, + -0.0227801613509655, + -0.0011010754387825727, + -0.0012744326377287507, + -0.013909767381846905, + 0.021269723773002625, + 0.019470928236842155, + -0.0037005748599767685, + -0.02779207192361355, + -0.02802550420165062, + 0.008039653301239014, + 0.01919630356132984, + 0.036607541143894196, + 0.007023539859801531, + 0.017383776605129242, + -0.007002943195402622, + 0.02218971773982048, + 0.061625897884368896, + 0.01401275210082531, + 0.03210368752479553, + 0.014843492768704891, + -0.048526275902986526, + -0.026666108518838882, + 0.029329974204301834, + 0.03548157960176468, + 0.0035735606215894222, + 0.05915427207946777, + 0.010277848690748215, + 0.0013739842688664794, + 0.06003307178616524, + 0.014829762279987335, + -0.025622533634305, + -0.017685864120721817, + 0.00948830135166645, + 0.0355365052819252, + -0.019800478592514992, + -0.018221383914351463, + -0.011493065394461155, + -0.03515202924609184, + -0.000500761903822422, + -0.008822334930300713, + -0.0023205832112580538, + -0.015639906749129295, + 0.009659942239522934, + 0.0422922819852829, + -0.012873057276010513, + 0.03309233859181404, + 0.0205419659614563, + -0.01757601462304592, + -0.06629452854394913, + 0.01027098298072815, + 0.017809445038437843, + -0.0015284609980881214, + 0.011726496741175652, + 0.016848256811499596, + -0.02762729674577713, + 0.01522796880453825, + 0.012399328872561455, + -0.00244588078930974, + 0.022629117593169212, + -0.03622306510806084, + 0.004816239699721336, + 0.014802299439907074, + -0.005674443673342466, + -0.007593387272208929, + 0.00514235720038414, + 0.01340171042829752, + -0.0030809517484158278, + -0.06129634752869606, + -0.015530056320130825, + 0.02558133937418461, + -0.0013173428596928716, + -0.0009594718576408923, + -0.011994256637990475, + -0.0010075313039124012, + -0.019676897674798965, + 0.0076620434410870075, + 0.0025797607377171516, + -0.0015653637237846851, + -0.003587292041629553, + -0.0018708843272179365, + -0.009646210819482803, + 0.0011414110194891691, + -0.033806364983320236, + -0.027943115681409836, + -0.01978674717247486, + 0.011300827376544476, + 0.0011980525450780988, + 0.002538566943258047, + 0.004562211688607931, + -0.030373549088835716, + 0.018880484625697136, + 0.002176404930651188, + 0.052123866975307465, + -0.002739386633038521, + 0.013539023697376251, + 0.03388875350356102, + 0.018290039151906967, + -0.015873337164521217, + 0.004675494506955147, + -0.03086787462234497, + -0.024716269224882126, + -0.017040494829416275, + 0.017987951636314392, + -0.016999300569295883, + -0.0005882987170480192, + 0.021324647590517998, + -0.006137873511761427, + -0.012131568975746632, + -0.023247024044394493, + -0.033559203147888184, + -0.002576327882707119, + -0.026322826743125916, + -0.047263000160455704, + 0.004435197450220585, + -0.006371305324137211, + -0.00444206316024065, + -0.02059689164161682, + -0.007020107004791498, + -0.020033909007906914, + 0.004301317501813173, + 0.013593948446214199, + -0.011575452983379364, + 0.016875719651579857, + 0.015104386955499649, + -0.0016443184576928616, + 0.02457895688712597, + -0.026377752423286438, + -0.013868574053049088, + -0.02201121114194393, + -0.007408015429973602, + 0.017823176458477974, + -0.021667929366230965, + -0.02037719078361988, + 0.023864932358264923, + -0.02523805759847164, + 0.0029676686972379684, + 0.011493065394461155, + 0.007819953374564648, + -0.0033092338126152754, + -0.016079306602478027, + 0.020294804126024246, + 0.0536617673933506, + -0.023933587595820427, + 0.019306153059005737, + 0.007785624824464321, + -0.007689506281167269, + 0.010140536352992058, + 0.04275914654135704, + -0.042237360030412674, + 0.0410839319229126, + -0.02437298744916916, + -0.004366540815681219, + -0.004836836829781532, + 0.0233843382447958, + -0.015639906749129295, + -0.02402970753610134, + -0.0171640757471323, + -0.028561022132635117, + 0.016477514058351517, + -0.011321424506604671, + -0.004212064202874899, + -0.02217598631978035, + -0.0038790812250226736, + 0.0343281514942646, + 0.05033880099654198, + 0.013532157987356186, + 0.008135772310197353, + 0.009248004294931889, + 0.00796413142234087, + 0.014774836599826813, + -0.0020425249822437763, + 0.0012873057276010513, + 0.010277848690748215, + 0.019237495958805084, + 0.037211716175079346, + -0.01893540844321251, + -0.03243323788046837, + 0.041852883994579315, + -0.008540844544768333, + 0.040012896060943604, + -0.007456074934452772, + -0.017713326960802078, + 0.029549673199653625, + -0.005492504220455885, + -0.01412946730852127, + -0.018866753205657005, + 0.008698754012584686, + 0.0233843382447958, + -0.03644276782870293, + -0.007208912167698145, + 0.009145019575953484, + 0.01797422021627426, + -7.857928721932694e-5, + 0.01590080000460148, + 0.03592097759246826, + -0.005729368422180414, + 0.012536641210317612, + 0.031966377049684525, + -0.006865630391985178, + 0.008197562769055367, + 0.006264887750148773, + 0.006865630391985178, + 0.020706741139292717, + 0.03644276782870293, + -0.0049810148775577545, + -0.03696455433964729, + -0.02295866794884205, + 0.03611321747303009, + 0.02180524170398712, + 0.015337818302214146, + 0.0007187456940300763, + 0.008437859825789928, + -0.03251562640070915, + 0.010367101989686489, + 0.017246464267373085, + -0.017479894682765007, + 0.044461823999881744, + 0.022505536675453186, + -0.026569990441203117, + 0.030703099444508553, + 0.024359257891774178, + 0.024153288453817368, + 0.0013164846459403634, + -0.0078542809933424, + 0.04698837548494339, + -0.03152697533369064, + 0.03564635291695595, + 0.0175210889428854, + -0.001975585240870714, + -0.0314171239733696, + -0.02323329448699951, + 0.008712485432624817, + 0.008705619722604752, + 0.013429173268377781, + 0.03605829179286957, + -0.045834947377443314, + 0.005265938583761454, + -0.011156649328768253, + 0.03193891420960426, + 0.02943982370197773, + -0.033806364983320236, + -0.0005955934175290167, + -0.014802299439907074, + 0.00866442546248436, + 0.029549673199653625, + 0.019910328090190887, + -0.005269371438771486, + -0.003971767146140337, + -0.049487464129924774, + -0.007085330784320831, + 0.04138601943850517, + 0.03106011264026165, + -0.02460641972720623, + 0.016422588378190994, + 0.017301388084888458, + 0.02323329448699951, + -0.01977301575243473, + -0.021722855046391487, + -0.012413060292601585, + 0.011547990143299103, + 0.005197282414883375, + -0.008808603510260582, + -0.0027771475724875927, + -0.004912358708679676, + -0.029577136039733887, + 0.026748497039079666, + 0.016367662698030472, + 0.01241992600262165, + -0.00261923810467124, + 0.005568026099354029, + -0.006089814472943544, + 0.01433543674647808, + -0.0009646210819482803, + -0.031224887818098068, + 0.031554438173770905, + 0.025883426889777184, + -0.0005792875890620053, + -0.012790669687092304, + 0.02017122320830822, + -0.022464342415332794, + 0.022038673982024193, + -0.007456074934452772, + -0.022244643419981003, + 0.008321144618093967, + -0.03858484327793121, + 0.006639064755290747, + 0.007263836916536093, + -0.008623232133686543, + -0.00570190604776144, + 0.008039653301239014, + 0.0035049044527113438, + 0.020473310723900795, + 0.00554742943495512, + 0.02014376036822796, + -0.022052405402064323, + -0.011788287200033665, + 0.0034465466160327196, + 0.009035170078277588, + 0.008458456955850124, + 0.0010169715387746692, + 0.027956847101449966, + -0.012316941283643246, + -0.017809445038437843, + 0.006110411137342453, + -0.02260165475308895, + 0.002509387908503413, + 0.013861708343029022, + -0.006800407078117132, + -0.016903182491660118, + -0.013669470325112343, + 0.009385316632688046, + -0.008458456955850124, + -0.009103826247155666, + 0.03874962031841278, + -0.00027312335441820323, + 0.009673673659563065, + 0.013889170251786709, + 0.012145300395786762, + 0.003395054256543517, + -0.007373687345534563, + -0.012495447881519794, + -0.008623232133686543, + 0.0048986272886395454, + 0.025855964049696922, + -0.024716269224882126, + -0.040260057896375656, + -0.02678968943655491, + -0.008204428479075432, + -0.0029882655944675207, + -0.017878102138638496, + 0.006185933016240597, + 0.003197667421773076, + 0.021242260932922363, + 0.007826819084584713, + -0.015475131571292877, + 0.004902060143649578, + 0.004218929912894964, + -0.023878663778305054, + -0.00847905408591032, + -0.006893093232065439, + 0.020898979157209396, + -0.05097044259309769, + 0.018811827525496483, + -0.00701324176043272, + 0.018290039151906967, + 0.004826538264751434, + 0.03885946795344353, + 0.016436319798231125, + 0.04094662144780159, + -0.016450051218271255, + 0.03446546569466591, + 0.0050737010315060616, + 0.010682920925319195, + -0.012049181386828423, + 0.0398755818605423, + 0.03268039971590042, + -0.012577835470438004, + -0.0023840900976210833, + -0.0010058148764073849, + 0.009701135568320751, + -0.02136584185063839, + 0.029357435181736946, + 0.01632646843791008, + 0.01793302595615387, + -0.0007839691825211048, + -0.04501107335090637, + -0.007861146703362465, + -0.020335998386144638, + -0.014637524262070656, + 0.01695810817182064, + 0.026473870500922203, + -0.03446546569466591, + 0.030565787106752396, + 0.019072720780968666, + 0.014513942413032055, + 0.017630938440561295, + 0.008533978834748268, + -0.0011182395974174142, + 0.011060530319809914, + 0.018427351489663124, + -0.027297746390104294, + -0.015310356393456459, + -0.012516044080257416, + -0.021228529512882233, + -0.009014572948217392, + -0.015433937311172485, + 0.005235043354332447, + -0.0020682711619883776, + 0.045093461871147156, + 0.01231007557362318, + -0.012234553694725037, + -0.0023428963031619787, + 0.0032148314639925957, + 0.016065575182437897, + -0.006223693955689669, + 0.0038653500378131866, + -0.003525501349940896, + 0.00827308464795351, + 0.012447387911379337, + -0.030181311070919037, + 0.001343088923022151, + -0.006580706685781479, + 0.03281771391630173, + -0.03798066824674606, + 0.03644276782870293, + 0.016971837729215622, + -0.0005256498116068542, + 0.017424970865249634, + -0.002114614238962531, + -0.00788174383342266, + 0.016587363556027412, + 0.019072720780968666, + -0.014294242486357689, + -0.020830322057008743, + -0.019388539716601372, + 0.012694550678133965, + -0.03430068865418434, + -0.010010088793933392, + -0.03213115036487579, + -0.024922238662838936, + 0.014912149868905544, + -2.309104638698045e-5, + -0.0006745482096448541, + 0.024318063631653786, + 0.027132971212267876, + 0.0189766027033329, + -0.018056608736515045, + 0.0010530160507187247, + 0.0020236445125192404, + -0.0163127388805151, + 0.01955331489443779, + 0.03138966113328934, + -0.002627820009365678, + -0.010119939222931862, + -0.018674515187740326, + 0.02217598631978035, + 0.011561721563339233, + 0.020926441997289658, + -0.014005886390805244, + -0.013079025782644749, + -0.018248846754431725, + 0.04740031436085701, + -0.029494749382138252, + -0.03608575463294983, + -0.049295227974653244, + -0.01390290167182684, + 0.01934734731912613, + -0.011850078590214252, + -0.007401149719953537, + 0.0046411664225161076, + 0.004414600320160389, + 0.03767858073115349, + 0.010099342092871666, + -0.016463782638311386, + -0.012248285114765167, + -0.0006522348849102855, + -0.029989074915647507, + 0.00947456993162632, + -0.03515202924609184, + 0.02699565887451172, + -0.01218649372458458, + 0.022931205108761787, + 0.012440522201359272, + 0.004448928404599428, + -0.015983188524842262, + -0.015145581215620041, + 0.0012306643184274435, + 0.002722222590819001, + -0.0011062247212976217, + 0.0005625525955110788, + -0.004085049964487553, + 0.006244291085749865, + 0.017411239445209503, + 0.020898979157209396, + -0.0010264117736369371, + 0.008959648199379444, + -0.0149258803576231, + -0.03523441404104233, + -0.0422922819852829, + -0.019882865250110626, + -0.011328290216624737, + -0.014802299439907074, + -0.006433095782995224, + -0.014541405253112316, + 0.0304559376090765, + -0.014774836599826813, + -0.04240213334560394, + -0.006086381617933512, + 0.01371066365391016, + 0.006968615110963583, + 0.00695145083591342, + 0.003424233291298151, + 0.026528796181082726, + -0.02398851327598095, + -0.023247024044394493, + -0.02299986220896244, + -0.006889660377055407, + -0.01715034432709217, + 0.0185509342700243, + -0.004047289025038481, + -0.012969176284968853, + -0.01912764646112919, + -0.01443155575543642, + -0.04946000128984451, + -0.029000423848628998, + 0.022285835817456245, + 0.004699524026364088, + -0.05064089223742485, + 0.018029145896434784, + 0.01916884072124958, + -0.0052213119342923164, + 0.03567381575703621, + 0.008863529190421104, + 0.006361006759107113, + -0.005911307875066996, + -0.03586605191230774, + 0.005482206121087074, + -0.005029074382036924, + 0.03342188894748688, + 0.0006007426418364048, + -0.018235115334391594, + -0.02179151028394699, + 0.014143198728561401, + -0.02743505872786045, + 0.026515064761042595, + 0.016010649502277374, + 0.009302929043769836, + -0.022505536675453186, + 0.015873337164521217, + -0.00958442036062479, + 0.02117360383272171, + 0.008980244398117065, + -0.004291018936783075, + 0.0007951258448883891, + 0.006340409629046917, + 0.004490122199058533, + 0.04432450979948044, + -0.010696652345359325, + -0.004287586081773043, + -0.01694437675178051, + -0.03405352681875229, + -0.00919307954609394, + 0.0007256113458424807, + 0.013339919969439507, + -0.0012203658698126674, + -0.026762228459119797, + 0.022711506113409996, + -0.013950960710644722, + -0.03248816356062889, + 0.011005605570971966, + -0.005399818532168865, + 0.01301036961376667, + 0.015049462206661701, + 0.05844024568796158, + -0.005894143600016832, + -0.01655990071594715, + -0.00720204645767808, + 0.02842370979487896, + 0.00011693027045112103, + 0.015365281142294407, + -0.005032507237046957, + -0.01811153255403042, + -0.014816030859947205, + -0.03125235065817833, + 0.010669189505279064, + 0.006330111529678106, + -0.05805576965212822, + 0.010236655361950397, + -0.043857648968696594, + -0.02522432617843151, + -0.014637524262070656, + 0.012749475426971912, + -0.018001683056354523, + -0.02540283277630806, + -0.0011251051910221577, + -0.00423952704295516, + -0.04355556145310402, + 0.005777427926659584, + -0.009172482416033745, + -0.005979964043945074, + -0.005138924345374107, + -0.008039653301239014, + 0.016408856958150864, + -0.010360236279666424, + -0.0072295088320970535, + -0.013909767381846905, + -0.025759845972061157, + 0.027325209230184555, + 0.001276149065233767, + 0.01592826284468174, + 0.021722855046391487, + 0.008808603510260582, + 0.00579802505671978, + -0.019264958798885345, + 0.009948298335075378, + 0.0011233887635171413, + -0.0046480316668748856, + 0.003985498566180468, + -0.019429733976721764, + -0.007957265712320805, + 0.011170380748808384, + -0.009694269858300686, + 0.01038083340972662, + 0.010449489578604698, + -0.007449209224432707, + 0.026954464614391327, + 0.00878800731152296, + -0.026652377098798752, + 0.0010169715387746692, + 0.008616366423666477, + -0.002056256402283907, + 0.03644276782870293, + 0.01248858217149973, + 0.007112793158739805, + 0.0038550514727830887, + 0.012639625929296017, + 0.013971557840704918, + 0.02014376036822796, + -0.00847905408591032, + -0.047674939036369324, + -0.037184253334999084, + 0.011589184403419495, + 0.0015379012329503894, + -0.02236822433769703, + -0.00858203787356615, + 0.01440409291535616, + 0.014362898655235767, + 0.011067396029829979, + -0.0015473414678126574, + 0.00463086785748601, + 0.029714448377490044, + 0.016408856958150864, + -0.0286434106528759, + 0.010833964683115482, + 0.026515064761042595, + -0.011232171207666397, + -0.0069274213165044785, + -0.026460139080882072, + 0.0005119185661897063, + -0.06310887634754181, + -0.01877063326537609, + 0.007408015429973602, + 0.003697142004966736, + -0.005811756011098623, + 0.003659381065517664, + -0.003480874700471759, + 0.005197282414883375, + 0.013353651389479637, + 0.0015336101641878486, + -0.011774556711316109, + -0.017507357522845268, + -0.00788174383342266, + 0.03776096925139427, + -0.016450051218271255, + -0.00959815178066492, + -0.014884687028825283, + 0.01893540844321251, + 0.0005209296941757202, + -0.00564354844391346, + 0.011451872065663338, + -0.006278619170188904, + 0.03254308924078941, + 0.017397508025169373, + 0.017013031989336014, + 0.038612306118011475, + -0.020500773563981056, + 0.037431418895721436, + 0.004418033175170422, + -0.01713661290705204, + 0.019924059510231018, + -0.0075727906078100204, + -0.014843492768704891, + 0.007195180747658014, + 0.01934734731912613, + -0.004472958389669657, + 0.029494749382138252, + 0.003944304771721363, + 0.015406474471092224, + 0.015186774544417858, + -0.010682920925319195, + 0.010559340007603168, + 0.0019240929977968335, + 0.031197424978017807, + -0.0044454955495893955, + -0.0009654792957007885, + 0.004706389736384153, + -0.014074542559683323, + 0.002965952269732952, + 0.019676897674798965, + 0.021242260932922363, + -0.028698336333036423, + 0.03042847476899624, + -0.008430994115769863, + 0.000476732209790498, + 0.019882865250110626, + 0.025732383131980896, + -0.014610061421990395, + -0.008410396985709667, + -0.012831863015890121, + 0.022230911999940872, + 0.02217598631978035, + -0.017054226249456406, + 0.025759845972061157, + -0.006137873511761427, + 0.016244081780314445, + 0.011884406208992004, + 0.005605787504464388, + 0.02158554270863533, + -0.013593948446214199, + -0.006453692447394133, + -0.012584700249135494, + 0.027105508372187614, + 0.03130727633833885, + 0.01522796880453825, + 0.007826819084584713, + 0.017685864120721817, + 0.018853021785616875, + 0.0010899188928306103, + 0.003369308076798916, + -0.007483537308871746, + -0.011362618766725063, + 0.02437298744916916, + 0.004606837872415781, + -0.0040404233150184155, + -0.008376069366931915, + -0.0005715637234970927, + 0.017232732847332954, + -0.0026569990441203117, + -0.0005964516312815249, + 0.0021987182553857565, + 0.016202887520194054, + 0.029577136039733887, + 0.008636963553726673, + -0.0177682526409626, + 0.008643828332424164, + 0.017713326960802078, + 0.010154267773032188, + 0.00905576627701521, + -0.017219001427292824, + -0.004266989417374134, + -0.00023793701257091016, + 0.009646210819482803, + -0.002581477165222168, + -0.015653638169169426, + 0.027462521567940712, + 0.004208631347864866, + -0.003360726172104478, + -0.018811827525496483, + -0.0051114619709551334, + -0.006803839933127165, + 0.010916352272033691, + -0.030373549088835716, + -0.010682920925319195, + -0.0197592843323946, + 0.005657279398292303, + -0.016244081780314445, + -0.023452993482351303, + -0.010964412242174149, + -0.009556957520544529, + -0.010792771354317665, + 0.031142499297857285, + -0.011712765321135521, + -0.040397368371486664, + -0.04056214541196823, + 0.017466163262724876, + -0.025073282420635223, + -0.008575172163546085, + -0.03292756527662277, + -0.018866753205657005, + -0.01231007557362318, + -0.0021163306664675474, + -0.0056366827338933945, + -0.0027891623321920633, + 0.0042360941879451275, + 0.02724282257258892, + 0.02619924582540989, + -0.013779320754110813, + -0.008554575964808464, + -0.01592826284468174, + 0.0012074927799403667, + 0.010621130466461182, + -0.00795040000230074, + 0.003153040772303939, + -0.006491453852504492, + -0.013182010501623154, + 0.013243800960481167, + -0.0034225168637931347, + 0.00043940034811384976, + -0.04926776513457298, + 0.0031461750622838736, + 0.012330672703683376, + 0.027929384261369705, + -0.005585190374404192, + -0.02419448271393776, + -0.002686177846044302, + 0.00625115679576993, + 0.004805941134691238, + 0.013751857914030552, + 0.007833684794604778, + -0.027174165472388268, + 0.010065014474093914, + 0.0005977389519102871, + -0.008128906600177288, + 0.011012471280992031, + 0.0075727906078100204, + -0.012323806993663311, + -0.00958442036062479, + -0.015173043124377728, + -0.01511811837553978, + 0.01390290167182684, + 0.007737565785646439, + -0.014053945429623127, + 0.011424409225583076, + 0.004829971119761467, + -0.017301388084888458, + 0.011342021636664867, + 0.00529683381319046, + 0.034190841019153595, + 0.012694550678133965, + -0.02282135561108589, + 0.005351759027689695, + -0.006361006759107113, + 0.007353090215474367, + 0.008753678761422634, + 0.01240619458258152, + -0.01915510930120945, + 0.03292756527662277, + -0.01812526397407055, + -0.002248493954539299, + 0.006165336351841688, + 0.0189766027033329, + -0.02497716434299946, + 0.004510719329118729, + 0.018866753205657005, + 0.012804401107132435, + 0.022244643419981003, + -0.0464116632938385, + -0.013847976922988892, + -0.01422558631747961, + -0.0039134095422923565, + -0.020734203979372978, + -0.028313860297203064, + -0.004218929912894964, + 0.021077485755085945, + 0.008959648199379444, + -0.009962029755115509, + 0.017836907878518105, + 0.008348606526851654, + -0.003697142004966736, + 0.004006095230579376, + -0.0035804263316094875, + -0.007504133973270655, + -0.018248846754431725, + -0.008959648199379444, + 0.0055062356404960155, + -0.014294242486357689, + -0.001684654038399458, + 0.0010676055680960417, + -0.029192660003900528, + 0.026460139080882072, + -0.003165055764839053, + 0.0018571530235931277, + -0.012481716461479664, + -0.0003138880420010537, + -0.020116297528147697, + -0.003379606641829014, + -0.05640802159905434, + -0.013518426567316055, + 0.02456522546708584, + -0.020226147025823593, + -0.02398851327598095, + -0.009330391883850098, + -0.03193891420960426, + -0.009117557667195797, + 0.011300827376544476, + 0.00012079218868166208, + -0.002552298130467534, + 0.027338940650224686, + -0.0012821564450860023, + -0.0031427424401044846, + -0.008698754012584686, + -0.00257117860019207, + -0.0029882655944675207, + 0.009529494680464268, + 0.014939611777663231, + -0.019855404272675514, + -0.03550904244184494, + -0.015653638169169426, + -0.024922238662838936, + 0.003683410817757249, + -0.031142499297857285, + 0.0001394581195199862, + 0.011829481460154057, + 0.005056536756455898, + -0.009330391883850098, + 0.01070351805537939, + -0.0003149608091916889, + 0.020088834688067436, + 0.012275747023522854, + 0.010717249475419521, + 0.012907384894788265, + 0.002705058315768838, + -0.032323386520147324, + 0.02780580334365368, + -0.026721034198999405, + 0.0024784926790744066, + -0.003288636915385723, + -0.01362141128629446, + -0.04251198470592499, + -0.01590080000460148, + -0.004775045905262232, + -0.017411239445209503, + 0.005513101350516081, + 0.009014572948217392, + 0.014074542559683323, + -0.003268040018156171, + 0.006625333335250616, + 0.017644669860601425, + -0.0207891296595335, + 0.015379012562334538, + -0.00807398185133934, + -0.01421185489743948, + -0.014500211924314499, + -0.02621297724545002, + -0.006996077485382557, + -0.004905492998659611, + 0.015955725684762, + 0.013017235323786736, + 0.009701135568320751, + 0.03243323788046837, + 0.005519967060536146, + 0.0004775904235430062, + 0.01289365440607071, + 0.024716269224882126, + 0.02543029561638832, + 0.0050016120076179504, + 0.0006668243440799415, + 0.010662323795258999, + -0.005942203104496002, + 0.008190697059035301, + -0.00905576627701521, + -0.020651817321777344, + -0.02256046235561371, + -0.01148619968444109, + -0.00016692063945811242, + 0.006134440656751394, + 0.001281298347748816, + -0.0021317782811820507, + -0.007394284009933472, + 3.400632704142481e-5, + 0.013003503903746605, + -0.015173043124377728, + -0.024881044402718544, + 0.00827308464795351, + 0.01914137788116932, + 0.019484659656882286, + 0.012227687984704971, + -0.009962029755115509, + -0.027119239792227745, + -0.006645930465310812, + -0.008671291172504425, + -0.0002924329601228237, + 0.009831583127379417, + -0.01008561160415411, + -0.002421851269900799, + -0.006453692447394133, + -0.003563262289389968, + 0.015310356393456459, + -0.025334175676107407, + -0.014445286244153976, + 0.012351268902420998, + -0.013518426567316055, + 0.019333615899086, + 0.0023840900976210833, + 0.0006805556477047503, + 0.012049181386828423, + -0.02056942880153656, + 0.028094159439206123, + -0.006779809948056936, + -0.0050839995965361595, + 0.018619589507579803, + -0.026158051565289497, + -0.005876979790627956, + 0.0036250529810786247, + 0.0019464062061160803, + 0.011046799831092358, + 0.0046686287969350815, + 0.021324647590517998, + 0.0030878172256052494, + -0.03064817376434803, + 0.010373967699706554, + -0.016903182491660118, + 0.027078047394752502, + -0.012680819258093834, + 0.03825529292225838, + 0.0009671957232058048, + 0.01017486397176981, + -0.040671996772289276, + -0.022738968953490257, + -0.01916884072124958, + -0.01877063326537609, + -0.011149783618748188, + -0.006920555606484413, + 0.0014143198495730758, + 0.01573602482676506, + 0.026707302778959274, + 0.00380355934612453, + -0.023658962920308113, + -0.03957349434494972, + 0.008492784574627876, + 0.008218159899115562, + -0.008101443760097027, + 0.024524031206965446, + 0.0011293962597846985, + -0.01362141128629446, + 0.006182500161230564, + 0.00011929032916668802, + -0.005149222910404205, + -0.013854842633008957, + -0.014774836599826813, + 0.010531877167522907, + -0.02422194369137287, + 0.001738720922730863, + -0.02117360383272171, + -0.009158750995993614, + -0.0048814634792506695, + 0.023247024044394493, + 0.012564104050397873, + -0.014651255682110786, + 0.025938352569937706, + 0.01370379887521267, + 0.026899540796875954, + -0.0070098089054226875, + -0.0023343143984675407, + -0.005224744789302349, + -0.01713661290705204, + 0.0346851646900177, + -0.039189018309116364, + 0.019525853917002678, + 0.0014263347256928682, + 0.018001683056354523, + 0.01331932283937931, + 0.009948298335075378, + 0.0001780772872734815, + 0.007208912167698145, + 0.00720204645767808, + 0.010325908660888672, + 0.005760264117270708, + 0.008794873021543026, + -0.013374248519539833, + -0.010195461101830006, + 0.04341824725270271, + -0.016051843762397766, + 0.016408856958150864, + -0.022299567237496376, + 0.0032525924034416676, + 0.012474850751459599, + 0.0034877401776611805, + -0.009110691957175732, + -0.016683481633663177, + -0.007909206673502922, + 0.01090262085199356, + -0.0004063594969920814, + -0.011554855853319168, + 0.008527113124728203, + 0.00815636944025755, + -0.01049754861742258, + -0.002933340612798929, + 0.03410845249891281, + -0.022848818451166153, + 0.0006337835220620036, + 0.016820793971419334, + 0.0025488652754575014, + 0.035426653921604156, + -0.01978674717247486, + 0.03685470297932625, + -0.0015962590696290135, + -0.005286535248160362, + -0.016175424680113792, + -0.01856466569006443, + -0.02321956306695938, + -0.014033348299562931, + -0.0037863953039050102, + -0.007195180747658014, + -0.02140703611075878, + 0.01379305124282837, + 0.0003645220713224262, + 0.027778340503573418, + 0.03133473917841911, + 0.012976041994988918, + -0.031115038320422173, + 0.03633291646838188, + -0.008794873021543026, + 0.020102566108107567, + 0.026927003636956215, + 0.005519967060536146, + 0.010717249475419521, + -0.00514235720038414, + 0.006457125302404165, + 0.00317878695204854, + -0.022711506113409996, + -0.005808323621749878, + 0.013573351316154003, + 0.002095733769237995, + 0.007840549573302269, + 0.01936107873916626, + -0.015159311704337597, + -0.009611882269382477, + 0.00013999450311530381, + -0.011342021636664867, + -0.020926441997289658, + -0.021846435964107513, + -0.0016262962017208338, + -0.02176404930651188, + 0.01421185489743948, + -0.008300547488033772, + 0.0021678227931261063, + 0.006007426884025335, + -0.001352529157884419, + -0.016889451071619987, + -0.0107859056442976, + -0.003240577643737197, + 0.01513184979557991, + 0.025498950853943825, + 0.01522796880453825, + -0.0026569990441203117, + -0.003129011020064354, + -0.01857839524745941, + 0.003268040018156171, + -0.024922238662838936, + 0.010861427523195744, + 0.019264958798885345, + 0.011239036917686462, + 0.011218439787626266, + -0.02883564867079258, + -0.024167019873857498, + -0.014459017664194107, + 0.033971138298511505, + 0.002566029317677021, + -0.0037143060471862555, + -0.004146840889006853, + -0.0037143060471862555, + -0.003971767146140337, + -0.008149503730237484, + -0.009714866988360882, + 0.008005324751138687, + 0.023741349577903748, + -0.01128709688782692, + -0.009817851707339287, + -0.0063644396141171455, + 0.03306487575173378, + 0.0004222362767904997, + -0.004349377006292343, + 0.0077924905344843864, + 0.0020236445125192404, + 0.008149503730237484, + -0.01432170532643795, + -0.004280720837414265, + -0.0020202116575092077, + 0.015200505964457989, + -0.01655990071594715, + 0.011328290216624737, + -0.01953958347439766, + 0.0017267060466110706, + 0.014184392988681793, + 0.013058429583907127, + 0.012056047096848488, + 0.011898137629032135, + -0.006817570887506008, + -0.016381394118070602, + 0.012062912806868553, + -0.016051843762397766, + 0.005962800234556198, + -0.007298165000975132, + 0.0032148314639925957, + 0.002880132058635354, + -0.005241909064352512, + -0.0003853335219901055, + -0.006982346065342426, + 0.005362057592719793, + 0.007991594262421131, + -0.007716968655586243, + -0.0005604070611298084, + -0.02543029561638832, + 0.039820656180381775, + -0.007586521562188864, + 0.025649994611740112, + 0.014829762279987335, + 0.0033984871115535498, + -0.012159031815826893, + -0.0175210889428854, + 0.009419645182788372, + 0.0071471212431788445, + 0.0015765203861519694, + 0.016161693260073662, + -0.00968053936958313, + 0.0035220684949308634, + -0.009433376602828503, + -0.01731511950492859, + -0.018262576311826706, + 0.012722013518214226, + 0.005063402466475964, + 0.018798096105456352, + 0.03213115036487579, + 0.010765308514237404, + 0.010662323795258999, + -0.022944936528801918, + 0.006680258549749851, + 0.0005737092578783631, + 0.01399902068078518, + -0.021050022915005684, + -0.022862549871206284, + 0.009728598408401012, + 0.015873337164521217, + 0.006549811456352472, + 0.01028471440076828, + -0.002205583732575178, + -0.005990262608975172, + 0.025540145114064217, + 0.008019056171178818, + -0.0028852811083197594, + 0.013250666670501232, + 0.009810985997319221, + 0.0023583441507071257, + 0.016051843762397766, + -0.014143198728561401, + 0.018399890512228012, + 0.0197592843323946, + -0.022835087031126022, + -0.0007878310861997306, + -0.014362898655235767, + 0.003621620126068592, + -0.01896287128329277, + 6.286342977546155e-5, + -0.012783803977072239, + -0.018701978027820587, + 0.00249394029378891, + 0.010209192521870136, + 0.014102005399763584, + -0.004373406525701284, + -0.0014598047127947211, + -0.0046411664225161076, + 0.0004181598196737468, + 0.004404301755130291, + -0.02880818583071232, + 0.0037829624488949776, + -0.00989337358623743, + -0.014040214009582996, + -0.0100924763828516, + -0.009268601424992085, + -0.0238100066781044, + -0.0024012543726712465, + -0.0053963856771588326, + -0.011911869049072266, + -0.014802299439907074, + 0.0020579728297889233, + 0.01896287128329277, + -0.022134792059659958, + -0.01857839524745941, + 0.0051011634059250355, + -0.013614545576274395, + 0.03611321747303009, + 0.017054226249456406, + 0.013353651389479637, + -0.003134160302579403, + -0.0047887773253023624, + -0.01421185489743948, + -0.016463782638311386, + -0.004644598811864853, + -0.005928472150117159, + 0.0072569712065160275, + -0.002310284646227956, + 0.0070372712798416615, + -0.03210368752479553, + -0.0116921691223979, + -0.0046789273619651794, + 0.001748161157593131, + 0.009522629901766777, + -0.0004063594969920814, + 0.013394844718277454, + 0.011451872065663338, + -0.011534259654581547, + 0.014568868093192577, + 0.006858764681965113, + 0.011712765321135521, + -0.0021369275636970997, + 0.002437298884615302, + 0.018839290365576744, + 0.006683691404759884, + -0.009014572948217392, + 0.018193921074271202, + 0.025965815410017967, + -0.024441644549369812, + 0.004472958389669657, + 0.00027998900623060763, + -0.013429173268377781, + 0.010044417344033718, + -0.006185933016240597, + -0.012481716461479664, + -0.015104386955499649, + 0.02321956306695938, + -0.005465041846036911, + -0.006923988461494446, + 0.00022613670444115996, + -0.01833123341202736, + 0.003964901436120272, + 0.0019515554886311293, + -0.027119239792227745, + -0.008403531275689602, + 0.016244081780314445, + -0.00034263788256794214, + -0.002512820763513446, + 0.014239317737519741, + 0.0015542070614174008, + 0.019869133830070496, + 0.017246464267373085, + 0.014390361495316029, + -0.006488020997494459, + 0.0130241010338068, + -0.008314278908073902, + -0.012955444864928722, + -0.006192798726260662, + 0.028533561155200005, + -0.02965952455997467, + 0.030181311070919037, + -0.014184392988681793, + 0.008973378688097, + 0.007785624824464321, + 0.0035134863574057817, + -0.029686985537409782, + 0.018070340156555176, + -0.031142499297857285, + 0.01934734731912613, + 7.743948117422406e-6, + 0.032598014920949936, + -0.017644669860601425, + 0.003649082500487566, + -0.021077485755085945, + -0.013051563873887062, + -0.013374248519539833, + -0.03391621634364128, + -0.004273855127394199, + -0.029000423848628998, + 0.0021781213581562042, + 0.006669959984719753, + 0.009296063333749771, + -0.01997898519039154, + -0.005362057592719793, + -0.016051843762397766, + 0.027970578521490097, + 0.0042429594323039055, + 0.014019617810845375, + -0.005259072873741388, + -0.0060692173428833485, + -0.011451872065663338, + -0.008183831349015236, + 0.013545889407396317, + -0.019676897674798965, + -0.005543996579945087, + -0.004527883138507605, + 0.0139303645119071, + 0.012268881313502789, + -0.016642289236187935, + 0.019690629094839096, + -0.007771893870085478, + 0.00013570347800850868, + 0.012818132527172565, + -0.0009105542558245361, + 0.0009320093668065965, + -0.012921116314828396, + 0.03586605191230774, + -0.018207652494311333, + 0.016065575182437897, + 0.017466163262724876, + -0.0033538604620844126, + 0.015282893553376198, + 0.009749195538461208, + 0.005087431985884905, + -0.006082948762923479, + -0.007675774861127138, + 0.02462015114724636, + 0.02720162831246853, + 0.010621130466461182, + -0.014513942413032055, + -0.027737148106098175, + -0.002461328636854887, + 0.008135772310197353, + 0.01831750199198723, + -0.007236374542117119, + -0.0032628909684717655, + -0.004555345978587866, + -0.021667929366230965, + -0.006206530146300793, + 0.006378170568495989, + -0.024949701502919197, + -0.025059551000595093, + -0.0016571915475651622, + 0.004586241208016872, + -0.0020614054519683123, + -0.00479907589033246, + 0.005317430943250656, + 0.01676587015390396, + -0.012756341136991978, + 0.0004617136437445879, + 0.01210410613566637, + -0.012955444864928722, + -0.006460558157414198, + -0.014239317737519741, + -0.002336030825972557, + -0.013765589334070683, + 0.009309794753789902, + -0.0047510163858532906, + 0.014253049157559872, + -0.0077924905344843864, + -0.01077217422425747, + -0.008437859825789928, + 0.0130241010338068, + 0.016642289236187935, + 0.008527113124728203, + 0.03204876184463501, + -0.0015979754971340299, + -0.01039456482976675, + 0.021310916170477867, + -0.0050908648408949375, + -0.02260165475308895, + 0.012522909790277481, + -0.0053929528221488, + -0.027078047394752502, + 0.005554295144975185, + -0.010264117270708084, + -0.014239317737519741, + -0.006615034770220518, + 0.012934847734868526, + -2.7261379727860913e-5, + -0.010113073512911797, + -0.0027754311449825764, + -0.03303741291165352, + 0.006055485922843218, + 0.012344403192400932, + -0.010113073512911797, + -0.008341740816831589, + 0.001213500159792602, + -0.0062614548951387405, + -0.020844053477048874, + -0.0015387594467028975, + -0.00948830135166645, + -0.011362618766725063, + 0.002526551950722933, + 0.0058392188511788845, + 0.02503208816051483, + -0.02462015114724636, + 0.018070340156555176, + -0.0061619034968316555, + -0.002411552704870701, + 0.008115175180137157, + -0.01110859028995037, + 0.0032371447887271643, + 0.016889451071619987, + -0.0011783138616010547, + -0.024345526471734047, + 0.01310648862272501, + -0.013937230221927166, + -0.010833964683115482, + -0.005080566741526127, + 0.010236655361950397, + -0.007641446776688099, + 0.006996077485382557, + -0.014486480504274368, + -0.005990262608975172, + -0.018001683056354523, + 0.007538462057709694, + -0.006028023548424244, + 0.004661763086915016, + -0.0011757392203435302, + -0.0020202116575092077, + 0.002856102306395769, + 0.008698754012584686, + -0.026569990441203117, + 0.023329412564635277, + 0.01937481015920639, + 0.026281634345650673, + -0.00171383295673877, + 0.006137873511761427, + -0.010518145747482777, + 0.004895194433629513, + -0.005217879079282284, + 0.00045055701048113406, + -0.012193359434604645, + 0.01151366252452135, + 0.023713888600468636, + 0.018413620069622993, + -0.00023965341097209603, + 0.0007007234380580485, + 0.015090655535459518, + 0.007408015429973602, + -0.017205270007252693, + 2.1830559489899315e-5, + -0.027929384261369705, + -0.01291425060480833, + -0.0069068241864442825, + 0.010648593306541443, + 0.018798096105456352, + -0.007895475253462791, + -0.005104596260935068, + -0.0001787209475878626, + -0.009103826247155666, + 0.026734765619039536, + -0.00705786794424057, + 0.032186076045036316, + 0.003038041526451707, + 0.008485918864607811, + 0.000640649173874408, + -0.007861146703362465, + -0.020075103268027306, + 0.007051002699881792, + 0.016216618940234184, + -0.027750877663493156, + -0.0017884967382997274, + 0.0008603493333794177, + 0.012886788696050644, + -0.008108309470117092, + -0.0016168559668585658, + -0.0128112668171525, + -0.0005144932074472308, + -0.0034345316234976053, + -0.02902788482606411, + 0.009577554650604725, + 0.015241699293255806, + -0.01650497503578663, + 0.020734203979372978, + 0.003501471597701311, + -0.021132411435246468, + -0.008492784574627876, + -0.0032422940712422132, + -0.014582599513232708, + 0.018207652494311333, + 0.01856466569006443, + 0.014623792842030525, + -0.029165199026465416, + 0.011637243442237377, + 0.021242260932922363, + 0.034602776169776917, + -0.006669959984719753, + -0.005458176136016846, + 0.019484659656882286, + 0.011472468264400959, + -0.0041434080339968204, + -0.002296553459018469, + 0.020720472559332848, + -0.0119050033390522, + 0.004579375497996807, + 0.0045381817035377026, + -0.02095390483736992, + 0.0233843382447958, + 0.009653076529502869, + -0.01996525377035141, + -0.0050016120076179504, + 0.016779601573944092, + -0.008279950357973576, + 0.015653638169169426, + -0.016903182491660118, + 0.00498788058757782, + -0.034163378179073334, + -0.0006998652243055403, + 0.012557238340377808, + 0.004809373989701271, + -0.010325908660888672, + -0.004956985358148813, + -0.00554742943495512, + 0.012399328872561455, + 0.003673112252727151, + 0.006137873511761427, + 0.009804120287299156, + -0.04031498357653618, + 0.015090655535459518, + 0.01038083340972662, + 0.026171782985329628, + -0.019924059510231018, + -0.014486480504274368, + 0.017067957669496536, + -0.0040404233150184155, + 0.002114614238962531, + -0.004016393795609474, + -0.0030260265339165926, + -0.023892393335700035, + 0.00394087191671133, + 0.008101443760097027, + 0.0009114124695770442, + -0.028286397457122803, + -0.006436528638005257, + -0.011554855853319168, + 0.022052405402064323, + 0.04034244641661644, + -0.0130241010338068, + 0.003269756445661187, + 0.016285276040434837, + -0.01590080000460148, + -0.005169819574803114, + 0.016985569149255753, + -0.019718090072274208, + -0.008533978834748268, + 0.0007196039077825844, + 0.026116859167814255, + 0.005087431985884905, + 0.010229789651930332, + -0.014884687028825283, + 0.015859605744481087, + -0.002432149602100253, + 0.013566485606133938, + -0.013408576138317585, + 0.03726664185523987, + 0.01351156085729599, + 0.006131007801741362, + 0.009591286070644855, + 0.00867815688252449, + -0.03561889007687569, + -0.04133109375834465, + 0.006168769206851721, + -0.020734203979372978, + 0.006841600872576237, + 0.018907945603132248, + 0.002880132058635354, + 0.004387137945741415, + 0.00847905408591032, + 0.009199945256114006, + -0.011836347170174122, + -0.005053103901445866, + -0.0017593178199604154, + 0.020116297528147697, + 0.012763206847012043, + -0.005811756011098623, + -0.0005694182473234832, + -0.018811827525496483, + -0.018042877316474915, + -0.014623792842030525, + 0.017589746043086052, + -0.018290039151906967, + 0.013559619896113873, + -0.01169903390109539, + -0.006450260058045387, + -0.008485918864607811, + -0.016093038022518158, + 0.006621900480240583, + -0.017177807167172432, + -0.005320863798260689, + 0.003086100798100233, + -0.0019532719161361456, + -0.0015250281430780888, + -0.0205419659614563, + 0.017013031989336014, + 0.018413620069622993, + 0.00806025043129921, + -0.01934734731912613, + 0.012522909790277481, + -0.01419812347739935, + 0.0157085619866848, + 0.02941236086189747, + 0.008334875106811523, + -0.0012778654927387834, + 0.024235675111413002, + -0.01852347142994404, + -5.1411770982667804e-5, + -0.006800407078117132, + -0.00720204645767808, + -0.0100924763828516, + -0.003371024504303932, + -0.006659661419689655, + -0.014088273979723454, + 0.03243323788046837, + -0.01291425060480833, + 0.0036696793977171183, + 0.011218439787626266, + 0.015433937311172485, + 0.004922657273709774, + 0.021104948595166206, + 0.036580078303813934, + -0.007112793158739805, + -0.01341544184833765, + -0.0001740008156048134, + -0.021860167384147644, + 0.04503853619098663, + -0.009124423377215862, + -0.0035134863574057817, + -0.010133670642971992, + 0.002392672235146165, + 0.003704007714986801, + 0.00570190604776144, + -0.019704358652234077, + 0.021860167384147644, + -0.01997898519039154, + 0.0002400825178483501, + 0.023947319015860558, + 0.0008431852329522371, + -0.008183831349015236, + -0.01057993620634079, + 0.014870955608785152, + -0.04440689831972122, + 0.008781141601502895, + 0.005921606440097094, + -0.0005436721257865429, + 0.004775045905262232, + -0.015104386955499649, + 0.015887068584561348, + 0.008472188375890255, + 0.010779039934277534, + -0.024318063631653786, + 0.006639064755290747, + 0.000784827396273613, + 0.035179492086172104, + -0.0038928124122321606, + 0.008019056171178818, + -0.018001683056354523, + 0.002464761259034276, + 0.0010658891405910254, + 0.017081689089536667, + 0.016903182491660118, + -0.005231610499322414, + -0.02360403724014759, + 0.008403531275689602, + 0.01691691391170025, + 0.010058148764073849, + -0.0029539375100284815, + 0.0177682526409626, + -0.03026369959115982, + 0.029165199026465416, + 0.009948298335075378, + -0.01772705838084221, + -0.024304332211613655, + -0.00695145083591342, + 0.006446827203035355, + 0.010222923941910267, + 0.004682360216975212, + -0.003166771959513426, + -0.012722013518214226, + -0.016573632135987282, + 0.002701625693589449, + 0.01774078980088234, + 0.009248004294931889, + 0.022024942561984062, + -0.0367448553442955, + 0.037623655050992966, + 0.0035598294343799353, + -0.003861917182803154, + 0.026556259021162987, + 0.0005402392707765102, + 0.007641446776688099, + -0.014912149868905544, + -0.02117360383272171, + -0.0268308836966753, + 0.009090094827115536, + 0.012735744938254356, + 0.002823490649461746, + 0.024139557033777237, + 0.003947737626731396, + -0.02299986220896244, + -0.00264841690659523, + -0.0003149608091916889, + -0.006285484880208969, + -0.0012452537193894386, + -0.01655990071594715, + -0.0283962469547987, + -0.012948579154908657, + 0.018084071576595306, + -0.002480209106579423, + 0.009872776456177235, + 0.0010264117736369371, + -0.01401275210082531, + 0.005444445181638002, + -0.002013346180319786, + -0.004819672554731369, + 0.0008526254678145051, + 0.006566975731402636, + 0.028725797310471535, + -0.018715709447860718, + 0.023315681144595146, + -0.010840830393135548, + -0.0005252207047306001, + -0.005379221402108669, + 0.014156930148601532, + 0.0008710768888704479, + -3.449576979619451e-6, + -0.004956985358148813, + -0.019594509154558182, + -0.02481238916516304, + -0.017260195687413216, + 0.011074261739850044, + 0.006034889258444309, + -0.009076363407075405, + -0.002301702508702874, + 0.010991874150931835, + 0.0016589079750701785, + -0.0025162536185234785, + -0.004847134929150343, + 0.006017724983394146, + 0.005375788547098637, + -0.04053468257188797, + 0.009708001278340816, + -0.020610623061656952, + 0.020857784897089005, + -0.009859045036137104, + 0.017864370718598366, + -0.019910328090190887, + 0.0052934009581804276, + 0.013271263800561428, + 0.002325732260942459, + -0.00806025043129921, + 0.014610061421990395, + 0.0003115279832854867, + -0.001776481862179935, + -0.014568868093192577, + 0.013037832453846931, + -0.00676264613866806, + 0.022546730935573578, + 0.0032972190529108047, + 0.0013851409312337637, + 0.017109151929616928, + -0.009639345109462738, + -0.023631500080227852, + 0.0005071984487585723, + -0.013346785679459572, + 0.009453972801566124, + 0.002032226650044322, + -0.013573351316154003, + -0.002157524460926652, + 0.006275186315178871, + 0.008252487517893314, + -0.0006771227926947176, + -0.001930958591401577, + 0.015777219086885452, + -0.030318623408675194, + 0.00534489331766963, + 0.004421466030180454, + -0.0002932911447715014, + 5.605143815046176e-5, + -0.007847415283322334, + 0.021489422768354416, + -0.013058429583907127, + 0.003115279832854867, + 0.006738616153597832, + -0.005372355692088604, + 0.008218159899115562, + -0.0088841263204813, + 0.05020149052143097, + 0.0013036115560680628, + -0.0331198014318943, + -0.015873337164521217, + -0.005375788547098637, + 0.011300827376544476, + -0.01312022004276514, + -0.008636963553726673, + -0.014761105179786682, + 0.013381114229559898, + -0.008389800786972046, + 0.004950119648128748, + -0.004854000639170408, + -0.016834525391459465, + -0.0038550514727830887, + 0.005633249878883362, + 0.007723834365606308, + 0.015337818302214146, + -0.009941432625055313, + -0.01713661290705204, + 0.022862549871206284, + -0.015433937311172485, + 0.0048608663491904736, + -0.013463501818478107, + 0.01912764646112919, + -0.011911869049072266, + -1.1391314728825819e-5, + -0.005053103901445866, + 0.024881044402718544, + -0.033751439303159714, + -0.0013825662899762392, + -0.005664145108312368, + -0.005156088620424271, + 0.006131007801741362, + -0.014376630075275898, + -0.0100924763828516, + -0.0049707163125276566, + 0.01098500844091177, + 0.0050016120076179504, + -0.008547710254788399, + -0.026171782985329628, + -0.010518145747482777, + -0.03726664185523987, + -0.000799416855443269, + -0.007771893870085478, + 0.005870114080607891, + -0.002832072554156184, + -0.020033909007906914, + -0.008211294189095497, + 0.026775958016514778, + 0.020198684185743332, + 0.003125578397884965, + 0.027915652841329575, + -0.01834496483206749, + 0.009673673659563065, + 0.00011521386477397755, + 0.0075521934777498245, + -0.023919856175780296, + -0.018207652494311333, + 0.01310648862272501, + -0.003424233291298151, + -0.016656018793582916, + -0.0001911649014800787, + 0.0015911099035292864, + -0.019251227378845215, + 0.010655458085238934, + -0.009996358305215836, + -0.03649769350886345, + -0.005942203104496002, + -0.0005951643688604236, + -0.0029968477319926023, + 0.003999229986220598, + 0.036799781024456024, + -0.002109464956447482, + 0.007819953374564648, + 0.012584700249135494, + 0.0034310987684875727, + 0.0015173043357208371, + 0.009234272874891758, + 0.015296624973416328, + 0.0021643899381160736, + 0.01411573588848114, + -0.023356875404715538, + -0.006144739221781492, + 0.011259634047746658, + -0.0071196588687598705, + 0.009515764191746712, + -0.026144320145249367, + -0.001665773568674922, + 0.007428612094372511, + -0.003072369610890746, + 0.01047695241868496, + -0.022656580433249474, + -0.00634384248405695, + 0.020116297528147697, + -0.010167999193072319, + -0.0030603548511862755, + 0.011740228161215782, + 0.002221031580120325, + -0.010003224015235901, + 0.003389904974028468, + 0.006086381617933512, + 0.011705899611115456, + 0.014253049157559872, + 0.015049462206661701, + 0.00020178516570013016, + -0.011554855853319168, + 0.007291299756616354, + -0.00412967661395669, + -0.006113843992352486, + -0.002210733015090227, + 0.04174303263425827, + 0.0076826405711472034, + 0.025114476680755615, + -0.017191538587212563, + -0.01576348766684532, + -0.003374457359313965, + -0.0007032980211079121, + -0.008231891319155693, + 0.01877063326537609, + 0.01732885092496872, + 0.017205270007252693, + 0.00503594009205699, + -0.014170661568641663, + -0.022697774693369865, + 0.005835785996168852, + 0.0022999863140285015, + 0.0013585366541519761, + -0.005475340411067009, + 0.002778863999992609, + 0.005005044396966696, + -0.008362337946891785, + -0.0001977087085833773, + -0.006793541368097067, + -0.008012190461158752, + 0.0020545399747788906, + 0.019072720780968666, + -0.0016820795135572553, + -0.002018495462834835, + -0.02740759775042534, + -0.012536641210317612, + -0.008211294189095497, + 0.00681070564314723, + -0.02076166681945324, + -0.015845874324440956, + -0.023425530642271042, + -0.027956847101449966, + 0.0023909558076411486, + -0.024304332211613655, + 0.013161413371562958, + 0.003964901436120272, + -0.008417262695729733, + 0.0027376702055335045, + -0.01712288334965706, + 0.0026999092660844326, + -0.016875719651579857, + 0.0074423435144126415, + 0.011863809078931808, + 0.01919630356132984, + -0.0005831494927406311, + -0.007751296740025282, + 0.0048334039747715, + 3.7305046134861186e-5, + -0.0031118469778448343, + 0.02619924582540989, + -0.02319210022687912, + -0.010332773439586163, + 0.012756341136991978, + -0.003590724663808942, + -0.0042154970578849316, + -0.013353651389479637, + -0.006865630391985178, + -0.007771893870085478, + -0.0013782753376290202, + -0.005362057592719793, + -0.005492504220455885, + 0.02014376036822796, + -0.03839260712265968, + -0.00919307954609394, + 0.0015061476733535528, + 0.008170099928975105, + 0.02261538617312908, + 0.005784293636679649, + -0.023260755464434624, + -0.005228177644312382, + 0.012550372630357742, + 0.013655738905072212, + -0.00342766591347754, + -4.8568970669293776e-5, + -0.011747093871235847, + -0.015818413347005844, + 0.003197667421773076, + 0.012564104050397873, + 0.026336558163166046, + 0.03405352681875229, + 0.011239036917686462, + 0.007600252982228994, + -0.00463086785748601, + -0.00473728496581316, + -0.026968196034431458, + 0.015818413347005844, + 0.010305311530828476, + 0.024263137951493263, + 0.016601094976067543, + -0.0012873057276010513, + -0.0100924763828516, + 0.015063193626701832, + 0.025965815410017967, + -0.022244643419981003, + 0.00015866043395362794, + 0.018880484625697136, + 0.006395334843546152, + -0.029989074915647507, + -0.01038083340972662, + -3.7251407775329426e-5, + 0.002686177846044302, + -0.0062820520251989365, + -0.008094578050076962, + 0.004606837872415781, + 0.011431274935603142, + 0.005138924345374107, + 0.00579802505671978, + -0.0027616999577730894, + -0.011939331889152527, + -7.600467506563291e-5, + 0.005235043354332447, + -0.024743732064962387, + -0.02867087349295616, + 0.0343281514942646, + -0.00021680373174604028, + 0.0006702571990899742, + 0.028107890859246254, + -0.010614264756441116, + 0.016051843762397766, + 0.02905534766614437, + -0.0028766992036253214, + 0.012007988058030605, + -0.006103545427322388, + 0.015516324900090694, + 0.0005788584821857512, + -0.009900239296257496, + -0.0026467004790902138, + 0.002344612730666995, + -0.017013031989336014, + -0.019264958798885345, + 0.002581477165222168, + 0.008726215921342373, + 0.010971277952194214, + -0.040452294051647186, + -0.0019361077575013041, + -0.0033452785573899746, + 0.008499650284647942, + -0.022903744131326675, + -0.0030998322181403637, + -0.011932466179132462, + 0.005705338902771473, + -0.010346504859626293, + 0.004064453300088644, + -0.004061020445078611, + 0.005059969611465931, + 0.023672694340348244, + 0.0029007289558649063, + -0.020487042143940926, + 0.003961468581110239, + 0.007936668582260609, + 0.006275186315178871, + 0.017823176458477974, + 0.011376350186765194, + -0.006755780428647995, + -0.01419812347739935, + -0.010202326811850071, + 0.007929802872240543, + 0.03896931931376457, + -0.006532647181302309, + 0.009653076529502869, + -0.0077650281600654125, + -0.0006088956142775714, + -0.0025591638404875994, + -0.011266499757766724, + -0.0014065960422158241, + 0.009241138584911823, + -0.0015808114549145103, + 0.021036291494965553, + -0.018221383914351463, + -0.016985569149255753, + -0.005598921794444323, + -0.0215718112885952, + 0.0030105789192020893, + -0.015571249648928642, + -0.01120470929890871, + -0.03331203758716583, + -0.0012984623899683356, + -0.015406474471092224, + 0.006930854171514511, + 0.026487601920962334, + 0.014568868093192577, + 0.0076551781967282295, + 0.0015087223146110773, + -0.023755080997943878, + 0.0030946829356253147, + -0.03342188894748688, + -0.007085330784320831, + -0.0076826405711472034, + -0.010806502774357796, + 0.03353174030780792, + -0.017040494829416275, + 0.00817696563899517, + -0.010119939222931862, + 0.01159605011343956, + -0.02339806780219078, + -0.010133670642971992, + 0.004524450283497572, + 0.016614826396107674, + 0.014912149868905544, + -0.028698336333036423, + 0.00015587126836180687, + -0.0016391692915931344, + 0.01329872664064169, + -0.02379627525806427, + 0.015626175329089165, + -0.026913272216916084, + -0.0010899188928306103, + -0.010964412242174149, + 0.005214446224272251, + -0.010538742877542973, + -0.0322684645652771, + 0.015983188524842262, + 0.004414600320160389, + -0.006419364362955093, + 0.01632646843791008, + 0.016463782638311386, + -0.016202887520194054, + -0.001377417123876512, + -0.008115175180137157, + 0.0008873827173374593, + -0.0005857240757904947, + -0.015186774544417858, + -0.0043356455862522125, + 0.008300547488033772, + 0.007435477804392576, + -0.009453972801566124, + -0.01612050086259842, + 0.013593948446214199, + 0.016587363556027412, + 0.006783242803066969, + 0.002581477165222168, + 0.018468545749783516, + -0.011431274935603142, + 0.016463782638311386, + 0.0044557941146194935, + -0.04794956371188164, + 0.029384898021817207, + 0.030153848230838776, + -0.01892167702317238, + -0.030483398586511612, + -0.0028784156311303377, + -0.030346086248755455, + 0.022546730935573578, + 0.01937481015920639, + -0.004098781384527683, + -0.014253049157559872, + 0.014747374691069126, + -0.001237529912032187, + 0.018413620069622993, + 0.023961050435900688, + -0.0139303645119071, + 0.005530265159904957, + 0.01090262085199356, + -0.00033620133763179183, + -0.030565787106752396, + -0.010167999193072319, + -0.010936949402093887, + 0.005743099842220545, + 0.008733081631362438, + 0.0003126007504761219, + 0.004198333248496056, + 0.0012263732496649027, + 0.004757882095873356, + -0.007428612094372511, + 0.0004245963355060667, + 0.0009457406122237444, + -0.012268881313502789, + 0.0031890852842479944, + 0.0026261035818606615, + 0.005341460462659597, + 0.00045956813846714795, + -0.00847905408591032, + -0.006302648689597845, + 0.01594199426472187, + 0.008657559752464294, + 0.01734258234500885, + -0.008739947341382504, + -0.019086452201008797, + 0.002293120604008436, + -0.00959815178066492, + 0.004047289025038481, + 0.00786801241338253, + -0.005372355692088604, + -0.01139008067548275, + 0.0009706285200081766, + 0.03166428953409195, + 0.007874878123402596, + 0.005162954330444336, + 0.010936949402093887, + 0.02137957327067852, + -0.03366905078291893, + 0.004321914166212082, + 0.009323526173830032, + -0.033586665987968445, + 0.028121622279286385, + -0.0051011634059250355, + 0.021255992352962494, + -0.00016831522225402296, + 0.010504414327442646, + 0.005564593710005283, + 0.012385597452521324, + 0.016230350360274315, + -0.006367872469127178, + 0.0026707302313297987, + 0.021228529512882233, + -0.029165199026465416, + 0.006779809948056936, + 0.014362898655235767, + -0.013085891492664814, + 0.007071599364280701, + -0.013133951462805271, + 0.007977862842381, + -0.012124703265726566, + 0.00010352083336329088, + 9.080868767341599e-5, + 0.00716771837323904, + 0.00375549984164536, + 0.016161693260073662, + -0.0047784787602722645, + -0.0026552826166152954, + -0.00048402693937532604, + 0.006374737713485956, + 0.0043631079606711864, + 0.0027084911707788706, + 0.01059366762638092, + -0.004160572309046984, + -0.008019056171178818, + -0.014774836599826813, + -0.00654637860134244, + -0.0005672727129422128, + -0.01912764646112919, + -0.005358624737709761, + 0.007943534292280674, + -0.003062071278691292, + -0.006354141049087048, + 0.012831863015890121, + -0.007318762131035328, + -0.011685303412377834, + -0.0207891296595335, + 0.0022896877489984035, + -0.0010435758158564568, + 0.0058563826605677605, + -0.0043184817768633366, + -0.0035701277665793896, + -0.005822054576128721, + 0.012042315676808357, + 0.025704920291900635, + -0.010930083692073822, + -0.0016185723943635821, + -0.010724115185439587, + -0.0017146911704912782, + -0.0021266289986670017, + 0.0005904442514292896, + -0.010236655361950397, + -0.00827308464795351, + 0.008939051069319248, + 0.014349168166518211, + -0.015090655535459518, + -0.006783242803066969, + -0.010531877167522907, + -0.004795643035322428, + -0.0020871516317129135, + 0.02076166681945324, + 0.006529214791953564, + -0.016779601573944092, + 0.014678717590868473, + -0.014074542559683323, + 0.028588484972715378, + -0.0024424479342997074, + -3.285311549916514e-6, + -0.019457196816802025, + 0.00403699092566967, + -0.006168769206851721, + 0.0034791582729667425, + 0.004146840889006853, + -0.006752347573637962, + 0.0014606629265472293, + -0.015475131571292877, + -0.02117360383272171, + 0.013182010501623154, + -0.010779039934277534, + 0.007929802872240543, + 0.009323526173830032, + -0.013545889407396317, + 0.014074542559683323, + -0.0017275642603635788, + 0.03300995007157326, + 0.005145790055394173, + -0.017452431842684746, + -0.01430797390639782, + 0.002547148847952485, + -0.00715398695319891, + 0.0014048796147108078, + 0.003954603336751461, + 0.0006865630275569856, + 0.001795362331904471, + -0.018262576311826706, + 0.01774078980088234, + -0.017699595540761948, + 0.017232732847332954, + -0.010325908660888672, + -0.004692658316344023, + 0.010833964683115482, + 0.02400224469602108, + -0.007847415283322334, + -0.013188876211643219, + -0.013175144791603088, + -0.013532157987356186, + -0.014280511066317558, + 0.0021128978114575148, + 0.0012624177616089582, + 0.0034843075554817915, + -0.005430713761597872, + -0.014568868093192577, + 0.007387418299913406, + 0.006652796175330877, + 0.01289365440607071, + 0.025306714698672295, + -0.005005044396966696, + -0.024057168513536453, + 0.004572509787976742, + 0.01856466569006443, + -0.0014855507761240005, + -0.014472749084234238, + 0.007977862842381, + -0.0008418979123234749, + 0.023274486884474754, + -0.004212064202874899, + 0.0018674514722079039, + -0.00033341217203997076, + -0.0056160856038331985, + -0.006851899437606335, + 0.0029934148769825697, + 0.0026123723946511745, + 0.01260529737919569, + -0.0013516710605472326, + 0.019882865250110626, + -0.002552298130467534, + 0.014637524262070656, + 0.01797422021627426, + -0.0012976041762158275, + -0.001901779673062265, + 0.009103826247155666, + 0.02279389277100563, + 0.005770562216639519, + 0.008472188375890255, + 0.009790388867259026, + -0.0013224920257925987, + -0.005585190374404192, + -0.0049638510681688786, + -0.012598431669175625, + 0.013037832453846931, + -0.011843212880194187, + 0.010559340007603168, + -0.010154267773032188, + 0.003202816704288125, + 0.014870955608785152, + 0.002099166624248028, + -0.006851899437606335, + -0.01047695241868496, + 0.0069274213165044785, + 0.019690629094839096, + -0.016820793971419334, + 0.010325908660888672, + 0.009790388867259026, + 0.005897576455026865, + 0.0027119240257889032, + -0.016861988231539726, + 0.01371066365391016, + 0.00380355934612453, + 0.006089814472943544, + -0.007318762131035328, + -0.0031908017117530107, + 0.0009989492828026414, + -0.031993839889764786, + -9.284692350775003e-5, + 0.006292350124567747, + 0.027503715828061104, + -0.0028629680164158344, + 0.0010040984489023685, + 0.009172482416033745, + 0.004792210180312395, + -0.0045759426429867744, + -0.020116297528147697, + -0.005859815515577793, + -0.0072501059621572495, + 0.009790388867259026, + -0.0019515554886311293, + -0.019924059510231018, + 0.036415304988622665, + 0.02220344915986061, + -0.009666807949543, + -0.009254870004951954, + 0.02784699760377407, + -0.015626175329089165, + 0.016697213053703308, + 0.0010744711617007852, + -0.00898711010813713, + -0.009364720433950424, + 0.012653357349336147, + -0.02218971773982048, + 0.004170870408415794, + -0.02319210022687912, + 0.014239317737519741, + -0.0016391692915931344, + -0.006731750909239054, + 0.0034637106582522392, + -0.012330672703683376, + -0.014047079719603062, + -0.0189766027033329, + -0.023480456322431564, + 0.012193359434604645, + 0.011822615750133991, + 0.04028752073645592, + 0.04168810695409775, + -0.002191852545365691, + 0.00355296372435987, + 0.005530265159904957, + -0.03690962865948677, + 0.0018880483694374561, + -0.007668909151107073, + -0.02175031788647175, + -3.491816823952831e-5, + 0.00866442546248436, + 0.011719631031155586, + 0.01894913986325264, + 0.015983188524842262, + -0.01399902068078518, + 0.008238757029175758, + -0.018084071576595306, + 0.02260165475308895, + 0.005574891809374094, + 0.017205270007252693, + 8.887773583410308e-5, + -0.0058563826605677605, + -0.0011534258956089616, + 0.0051114619709551334, + 0.007346224505454302, + 0.024935970082879066, + -0.005241909064352512, + -0.007902340963482857, + -0.01008561160415411, + 0.012660223059356213, + 0.00523847620934248, + -0.014596330001950264, + -0.015488862060010433, + -0.005722503177821636, + -0.0004655755765270442, + 0.021214798092842102, + 0.0005840077064931393, + 0.01513184979557991, + 0.009529494680464268, + 0.005454743281006813, + 0.007668909151107073, + -0.0070166741497814655, + 0.012021718546748161, + -0.031774137169122696, + -0.001468386733904481, + 0.034987252205610275, + 0.0014889836311340332, + 0.006148172076791525, + -0.0014512226916849613, + 0.005207580514252186, + -0.007936668582260609, + 0.008945916779339314, + 0.02442791312932968, + -0.011850078590214252, + -0.009852179326117039, + 0.02218971773982048, + 0.01894913986325264, + -0.022519268095493317, + -0.010119939222931862, + -0.008080846630036831, + -0.0012598432367667556, + 0.007476671598851681, + 0.011156649328768253, + 0.030401011928915977, + -0.00045913903159089386, + 0.018482277169823647, + 0.007943534292280674, + -0.0014932745834812522, + 0.0036181872710585594, + 0.005925039295107126, + 0.026281634345650673, + -0.023329412564635277, + -0.017507357522845268, + 0.007806221954524517, + -0.02260165475308895, + 0.006649363320320845, + -0.005489071365445852, + -0.011836347170174122, + -0.04056214541196823, + 0.02295866794884205, + -0.004054154735058546, + 0.008142638020217419, + 0.03523441404104233, + 0.011424409225583076, + -0.015145581215620041, + 0.002632969291880727, + -2.5598610591259785e-5, + 0.0036284856032580137, + -0.009131288155913353, + 0.007277568336576223, + -0.004071319010108709, + 0.008362337946891785, + -0.009007707238197327, + -0.0034293823409825563, + 0.004328779876232147, + 0.0037005748599767685, + -0.012921116314828396, + 0.012275747023522854, + 0.0018090936355292797, + 0.02905534766614437, + -0.0010873442515730858, + 0.02218971773982048, + -0.0059593673795461655, + 0.017603477463126183, + -0.005578324664384127, + -0.033147264271974564, + 0.02861594781279564, + 0.005866681225597858, + -0.002526551950722933, + 0.027160434052348137, + 0.008122040890157223, + 0.02661118470132351, + -0.011547990143299103, + -0.0007359097944572568, + -0.0008526254678145051, + 0.014486480504274368, + -0.00545131042599678, + 0.008781141601502895, + 0.01654616929590702, + 0.02256046235561371, + -0.0035357996821403503, + 0.02014376036822796, + 0.0006779810064472258, + 0.00347572541795671, + 0.015324086882174015, + -0.011994256637990475, + 0.006055485922843218, + 0.02059689164161682, + -0.0035220684949308634, + -0.007565924897789955, + 0.017301388084888458, + -0.015790950506925583, + -0.020335998386144638, + 0.004850567784160376, + 0.004366540815681219, + -0.00815636944025755, + 0.022876281291246414, + 0.003635351313278079, + 0.006752347573637962, + -0.02034972794353962, + -0.013518426567316055, + -0.0043631079606711864, + 0.025059551000595093, + -0.023878663778305054, + 0.003728037467226386, + -0.02014376036822796, + -0.01399902068078518, + 0.010978142730891705, + 0.0050839995965361595, + 0.0034465466160327196, + 0.015186774544417858, + -0.00019878146122209728, + -0.007325627841055393, + 0.0011886123102158308, + -0.00423952704295516, + 0.017713326960802078, + -0.021654197946190834, + 0.023260755464434624, + -0.008115175180137157, + -0.020500773563981056, + 0.0016039828769862652, + 0.015406474471092224, + 0.006779809948056936, + 0.015145581215620041, + 0.014747374691069126, + -0.0007277568220160902, + -0.010724115185439587, + -0.0100924763828516, + -0.005465041846036911, + -0.011293962597846985, + -0.0072501059621572495, + -0.0006312088808044791, + -0.006326678674668074, + -0.008444725535809994, + 0.005811756011098623, + -0.0009320093668065965, + 0.0032079657539725304, + -0.025526413694024086, + -0.03817290440201759, + -0.001656333333812654, + 0.03954603150486946, + 0.010573070496320724, + 0.014527673833072186, + 2.8401182134984992e-5, + 0.017411239445209503, + -0.0014460734091699123, + -0.004459226969629526, + 0.008925319649279118, + -0.004229228477925062, + 0.002229613484814763, + 0.0005861531826667488, + 0.007353090215474367, + 0.005609219893813133, + -0.020706741139292717, + -0.006244291085749865, + 0.002171255648136139, + 0.012474850751459599, + 0.026103127747774124, + -0.03847499191761017, + 0.00620309729129076, + -0.010291580110788345, + -0.010710383765399456, + 0.005921606440097094, + -0.012982907705008984 + ], + "58074a32-3c79-41fd-b1f4-33e803d124af": [ + -0.023710180073976517, + 0.003803868545219302, + -0.008711039088666439, + 0.01678749918937683, + -0.021373774856328964, + 0.020782463252544403, + -0.016902878880500793, + 0.010686887428164482, + -0.022051621228456497, + 0.012626680545508862, + 0.011883934959769249, + 0.025815829634666443, + 0.016657698899507523, + -0.018503747880458832, + 0.027301320806145668, + 0.025844672694802284, + -0.0239120926707983, + 0.012489669024944305, + -0.009129284881055355, + 0.014515995047986507, + 0.07153436541557312, + 0.03325771167874336, + -0.037440162152051926, + 0.019686372950673103, + 0.028065700083971024, + -0.015503919683396816, + -0.015460653230547905, + 0.009273507632315159, + -0.045660845935344696, + 0.013362215831875801, + 0.010881587862968445, + 0.0014990126946941018, + 0.02060939557850361, + 0.009929719381034374, + 0.011638756841421127, + -0.03764207288622856, + 0.007925027050077915, + 0.03772860765457153, + -0.00819183886051178, + 0.0075067817233502865, + -0.01189835648983717, + 0.004207691643387079, + -0.02313329093158245, + -0.0023273907136172056, + -0.0597081184387207, + 0.0007030847482383251, + -0.01137915626168251, + -0.01959983818233013, + -0.009338407777249813, + 0.0005521018174476922, + 0.032940421253442764, + -0.04465128853917122, + -0.0008522648713551462, + 0.022469867020845413, + 0.009215818718075752, + 0.0015476878033950925, + -0.0034811708610504866, + 0.03755554184317589, + -0.018272992223501205, + -0.01419149525463581, + -0.0016288129845634103, + -0.008509128354489803, + -0.04739151522517204, + -0.0009031934314407408, + -0.019109481945633888, + -0.033690378069877625, + 0.028195500373840332, + 0.0014278028393164277, + -0.03914199024438858, + -0.015518342144787312, + 0.01527316402643919, + 0.045603156089782715, + -0.01230217982083559, + -0.00914370734244585, + 0.007629370782524347, + -0.040007323026657104, + 0.08024540543556213, + -0.00868940632790327, + 0.029435813426971436, + -0.008242316544055939, + -0.019614260643720627, + 0.032565440982580185, + 0.013643449172377586, + -0.023147713392972946, + 0.04329559579491615, + -0.010917644016444683, + -0.021243974566459656, + -0.043382130563259125, + 0.01710478961467743, + -0.026508096605539322, + 0.01978732831776142, + 0.020926686003804207, + -0.009446574375033379, + 0.004568248055875301, + -0.005765294656157494, + 0.028368568047881126, + 0.00522085465490818, + 0.016051964834332466, + -0.005635494366288185, + -0.010903221555054188, + -0.011083499528467655, + 0.01544623076915741, + -0.01694614440202713, + 0.0066126021556556225, + -0.004813426174223423, + -0.0019614261109381914, + 0.0022823212202638388, + 0.0030322782695293427, + -0.034382645040750504, + 0.060111939907073975, + -0.013996794819831848, + -0.051170144230127335, + -0.0001128991789300926, + 0.009360040538012981, + -0.061611857265233994, + -0.03954581171274185, + 0.012655525468289852, + -0.0265802089124918, + 0.007824070751667023, + -0.0265802089124918, + -0.015330852940678596, + 0.04724729433655739, + 0.014631373807787895, + -0.011739712208509445, + -0.023162133991718292, + 0.02307560108602047, + 0.010607565753161907, + -0.03865163400769234, + 0.0022282376885414124, + -0.02066708542406559, + -0.02257082238793373, + 0.007867338135838509, + -0.017393235117197037, + 0.010138842277228832, + -0.01944119483232498, + 0.01333337090909481, + 0.03086361661553383, + 0.01208584662526846, + -0.0603426992893219, + 0.02733016572892666, + -0.03279619663953781, + -0.04029576852917671, + -0.028757968917489052, + 0.003048503305763006, + -0.014047272503376007, + -0.011422422714531422, + -0.04906449839472771, + 0.053045038133859634, + 0.001968637341633439, + 0.025282206013798714, + -0.02013346180319786, + -0.027445543557405472, + 0.004737709183245897, + -0.01882103644311428, + 0.016124077141284943, + 0.0146169513463974, + -0.03504607081413269, + 0.008069249801337719, + 0.03683442994952202, + 0.04906449839472771, + 0.013117036782205105, + -0.04701653867959976, + -0.004744920413941145, + 0.04730498418211937, + 0.060573454946279526, + 0.020306529477238655, + 0.018835458904504776, + 0.026810964569449425, + -0.03530567139387131, + 0.023565957322716713, + 0.010499398224055767, + -0.041853372007608414, + 0.014566473662853241, + -0.01561929751187563, + 0.009013907052576542, + -0.014422250911593437, + 0.03418073430657387, + 0.05287197232246399, + 0.024157270789146423, + -0.05509299784898758, + 0.019643105566501617, + -0.027863789349794388, + -0.0036704628728330135, + -0.014249184168875217, + 0.03270966559648514, + 0.012806958518922329, + 0.0002866422291845083, + 0.006987580563873053, + 0.012230068445205688, + -0.006064556539058685, + -0.0010870771948248148, + 0.02463320456445217, + -0.012605046853423119, + 0.01152337808161974, + -0.025037027895450592, + -0.009814341552555561, + 0.014811651781201363, + -0.031123217195272446, + -0.005152348894625902, + 0.014198705554008484, + -0.006371029186993837, + -0.0412764810025692, + -0.035161446779966354, + 0.01388141606003046, + -0.028440678492188454, + 0.0009735019411891699, + -0.03322886675596237, + -0.02872912399470806, + 0.03723825141787529, + -0.015604875050485134, + 0.021301664412021637, + -0.05480455234646797, + 0.010254220105707645, + 0.011999312788248062, + -0.007099352777004242, + 0.014609740115702152, + -0.027993589639663696, + 0.031152062118053436, + 0.033776912838220596, + -0.03092130646109581, + 0.0026681164745241404, + -0.017566300928592682, + 0.017998969182372093, + -0.0007769987569190562, + -0.05114130303263664, + -0.0021885766182094812, + -0.010326331481337547, + 0.027402276173233986, + -0.02663789689540863, + 0.009460996836423874, + 0.039978478103876114, + 0.0139895835891366, + -0.025253361091017723, + -0.041507236659526825, + -0.015374119393527508, + 0.0027510442305356264, + -0.025527384132146835, + 0.021503575146198273, + 0.027589766308665276, + -0.01600869931280613, + 0.01528758555650711, + 0.02591678500175476, + 0.027214787900447845, + 0.020349794998764992, + -0.010102787055075169, + 0.027647454291582108, + 0.04055536910891533, + 0.01175413466989994, + 0.016470210626721382, + -0.03804589807987213, + -5.1717288442887366e-5, + 0.013261259533464909, + 0.0353345163166523, + -0.018619125708937645, + -0.03123859502375126, + 0.03195970878005028, + -0.015359696932137012, + -0.04727613925933838, + 0.014703485183417797, + -0.024460136890411377, + 0.0197007954120636, + 0.03236353024840355, + 0.053016193211078644, + -0.010304697789251804, + 0.023724602535367012, + -0.022657355293631554, + 0.052670061588287354, + -0.01635483279824257, + -0.001636925502680242, + 0.038161274045705795, + -0.010917644016444683, + 0.011025810614228249, + 0.013016081415116787, + 0.006583757698535919, + -0.03605562821030617, + 0.005440793931484222, + 0.04245910793542862, + -0.03458455577492714, + -0.013910260982811451, + 0.0006179033080115914, + -0.03268082067370415, + -0.004654781427234411, + 0.008992273360490799, + 0.010023464448750019, + -0.04609351232647896, + -0.002687946893274784, + -0.048256851732730865, + -0.0027798889204859734, + -0.06311176717281342, + -0.011840667575597763, + 0.010218164883553982, + 0.026219651103019714, + 0.032248154282569885, + 0.005148743744939566, + 0.011638756841421127, + 0.00291149178519845, + -0.02125839702785015, + 0.00461872573941946, + -0.058294739574193954, + 0.016398098319768906, + -0.04035345837473869, + 0.009078807197511196, + -0.013794883154332638, + -0.0116459671407938, + 0.005155954509973526, + -0.001195244025439024, + 0.03051748313009739, + 0.018994104117155075, + -0.043785952031612396, + 0.013059347867965698, + -0.01283580344170332, + -0.017422078177332878, + -0.009179762564599514, + 0.01316030416637659, + -0.00276366388425231, + 0.012035368010401726, + 0.003684885101392865, + 0.014263605698943138, + -0.028628168627619743, + -0.01675865612924099, + 0.0207968857139349, + 0.008509128354489803, + -0.042314883321523666, + 0.006201568059623241, + 0.004867509473115206, + -0.06795764714479446, + 0.03807474300265312, + -0.022715045139193535, + -0.009554740972816944, + -0.03389228880405426, + -0.011891146190464497, + 0.010456131771206856, + -0.04718960449099541, + -0.007441881578415632, + -0.029031990095973015, + -0.05636215582489967, + -0.02272946760058403, + -0.04442053288221359, + -0.0010987952118739486, + -0.044507067650556564, + -0.007788015529513359, + -0.022282376885414124, + -0.025974472984671593, + -0.029940592125058174, + 0.03902661055326462, + 0.0030899671837687492, + -0.0275176540017128, + 0.016744233667850494, + -0.005599438678473234, + 0.0011051049223169684, + 0.0009410518687218428, + 0.014941452071070671, + 0.057919759303331375, + 0.021517997607588768, + 0.058294739574193954, + -0.027056142687797546, + 0.027344588190317154, + -0.023551534861326218, + 0.010946488007903099, + 0.0018586675869300961, + 0.009179762564599514, + -0.04791071638464928, + -0.009872030466794968, + -0.014342928305268288, + 0.00902111828327179, + -0.0051667713560163975, + -0.0264215636998415, + -0.017797058448195457, + -0.020191151648759842, + -0.0004908072296530008, + -0.013946316204965115, + 0.014126595109701157, + 0.012641103006899357, + -0.019397927448153496, + 0.00015256037295330316, + -0.012915126048028469, + 0.05070863291621208, + -0.015518342144787312, + -0.05587179958820343, + 0.0029277168214321136, + -0.033748067915439606, + -0.0010735562536865473, + 0.016715388745069504, + 0.014090538956224918, + 0.03279619663953781, + 0.019989239051938057, + -0.018172036856412888, + 0.0013998596696183085, + 0.013080981560051441, + 0.008386539295315742, + -0.04326675087213516, + 0.01978732831776142, + -0.02535431645810604, + 0.005967206321656704, + -0.04517048969864845, + 0.009086018428206444, + 0.00032562739215791225, + 0.018590280786156654, + 0.011797401122748852, + 0.0065909684635698795, + -0.019989239051938057, + 0.01884988136589527, + -0.01444388460367918, + 0.009352829307317734, + 0.02010461688041687, + -0.02026326209306717, + -0.022931378334760666, + -0.022642934694886208, + 0.028209922835230827, + 0.011891146190464497, + 0.014076116494834423, + 0.006136667914688587, + 0.0010906826937571168, + -0.0023291935212910175, + 0.020580552518367767, + 0.0011799203930422664, + -0.001830724417231977, + 0.013499226421117783, + -0.005292966030538082, + -0.0368921160697937, + 0.05145858973264694, + 0.0569102019071579, + -0.027445543557405472, + -0.0024770216550678015, + 0.0409591905772686, + 0.00902111828327179, + 0.03204623982310295, + 0.02195066586136818, + -0.021056486293673515, + -0.01769610121846199, + -0.003699307329952717, + 0.04589160159230232, + 0.012496880255639553, + -0.01044170930981636, + -0.00342708732932806, + -0.0544007308781147, + 0.0082062603905797, + 0.03207508474588394, + -0.004878326319158077, + -0.011004176922142506, + 0.012215646915137768, + -0.00948984082788229, + -0.01625387743115425, + 0.014761174097657204, + -0.014725117944180965, + -0.010535454377532005, + -0.04358404129743576, + 0.03020019270479679, + 0.014703485183417797, + 0.0021182680502533913, + 0.02551296167075634, + 0.03495953604578972, + -0.04211297258734703, + -0.003919246606528759, + 0.013311737217009068, + -0.0038218963891267776, + 0.010232587344944477, + -0.02197951078414917, + 0.02267177775502205, + -0.053766150027513504, + -0.023017913103103638, + -0.0018036827677860856, + -0.006075373385101557, + -0.011458477936685085, + 0.022037198767066002, + -0.008415383286774158, + -0.0023273907136172056, + 0.025960052385926247, + 0.01408332772552967, + 0.023032333701848984, + 0.005044182296842337, + -0.034094199538230896, + 0.014768384397029877, + 0.028786811977624893, + -0.00536147179082036, + -0.01825856976211071, + -0.022181421518325806, + 0.015907742083072662, + 0.0019470038823783398, + -0.007160647306591272, + -0.017797058448195457, + -0.019282549619674683, + 0.006515251938253641, + 0.03579602763056755, + 0.017436500638723373, + -0.02288811281323433, + 0.007824070751667023, + -0.046728093177080154, + 0.006291707046329975, + 0.005343443714082241, + 0.016268298029899597, + 0.004806214943528175, + 0.03418073430657387, + 0.03637291491031647, + 0.01069409865885973, + -0.003991357982158661, + 0.016051964834332466, + -0.015388541854918003, + 0.016023119911551476, + -0.023811135441064835, + 0.0038255020044744015, + -0.04776649549603462, + -0.00581577280536294, + 0.01691729947924614, + 0.002129084663465619, + -0.003991357982158661, + 0.006756824441254139, + 0.005819378420710564, + -0.012915126048028469, + -0.029003147035837173, + -0.032594285905361176, + -0.03170010820031166, + -0.022094888612627983, + 0.03172895312309265, + 0.0039985692128539085, + -0.0059563894756138325, + -0.02125839702785015, + 0.005859039258211851, + 0.008653350174427032, + 0.009583585895597935, + 0.009129284881055355, + 0.003937274683266878, + -0.0021705487743020058, + 0.004077891353517771, + 0.026349451392889023, + 0.014826074242591858, + -0.0016252073692157865, + -0.01458810642361641, + -0.022873690351843834, + -0.03389228880405426, + -0.010874377563595772, + 0.010838321410119534, + -0.016470210626721382, + -0.00019267226161900908, + 0.003657843451946974, + 0.0077447486110031605, + 0.0011438648216426373, + 0.019426772370934486, + 0.007564470637589693, + 0.03726709634065628, + -0.0390843003988266, + 0.02594562992453575, + 0.004640359431505203, + -0.04842991754412651, + 0.002464402001351118, + 0.008516338653862476, + 0.011970467865467072, + 0.043757110834121704, + -0.01175413466989994, + 0.022037198767066002, + -0.025613917037844658, + -0.021676642820239067, + -0.006659474223852158, + 0.00372815178707242, + 0.0031170090660452843, + -0.05353539437055588, + 0.02363806962966919, + 0.02425822615623474, + -0.014220339246094227, + -0.01212911307811737, + -0.0181287694722414, + -0.003239598125219345, + -0.0012394122313708067, + 0.017566300928592682, + 0.00736977020278573, + -0.003315314883366227, + -0.0042725917883217335, + 0.004067074507474899, + 0.013196359388530254, + 0.006280890200287104, + -0.0006548603414557874, + 0.0010483174119144678, + 0.0021182680502533913, + 0.008336060680449009, + -0.0022282376885414124, + -1.0182898222410586e-5, + 0.006598179694265127, + 0.011076288297772408, + 0.008025982417166233, + 0.005566988606005907, + 0.027748411521315575, + -0.032536596059799194, + -0.0019073426956310868, + 0.013931894674897194, + 0.0006751416367478669, + 0.01267715822905302, + -0.031152062118053436, + 0.0014755765441805124, + 0.02088341861963272, + 0.003969724755734205, + 0.009655697271227837, + 0.017191322520375252, + -0.031440507620573044, + 0.005923939403146505, + -0.0011727092787623405, + 0.038190118968486786, + -0.0030088420026004314, + 0.013679505325853825, + 0.004279803019016981, + 0.013520860113203526, + 0.006089795380830765, + 0.0447089783847332, + 0.018330680206418037, + -0.011595489457249641, + -0.007658215239644051, + 0.04067074880003929, + -0.015013563446700573, + 0.001194342621602118, + 0.00986481923609972, + 0.03351731225848198, + -0.029334858059883118, + 0.019772905856370926, + 0.021157441660761833, + -0.031152062118053436, + 0.028527211397886276, + -0.00358392926864326, + 0.019657528027892113, + 0.004218508489429951, + 0.005408343859016895, + -0.007315686903893948, + 0.006991186179220676, + -0.014725117944180965, + 0.05056441202759743, + -0.03325771167874336, + 0.013174725696444511, + -0.009799919091165066, + 0.003948091063648462, + -0.0034216789063066244, + -0.02463320456445217, + -0.011040233075618744, + 0.010254220105707645, + -0.006518857553601265, + 0.010571509599685669, + -0.033690378069877625, + 0.026378296315670013, + 0.01042728777974844, + 0.010758998803794384, + 0.03847856447100639, + -0.03605562821030617, + -0.002311165677383542, + -0.003616379341110587, + -0.014169861562550068, + 0.0082062603905797, + 0.030632860958576202, + 0.0017360784113407135, + 0.020840153098106384, + 0.012042579241096973, + 0.04136301577091217, + 0.021590109914541245, + 0.02045075222849846, + -0.006713557988405228, + -0.009432151913642883, + -0.007391403429210186, + 0.03674789518117905, + 0.011862301267683506, + -0.017393235117197037, + 0.0034108622930943966, + 0.012496880255639553, + 0.019296972081065178, + -7.00831224094145e-5, + 0.011710867285728455, + -3.388665572856553e-5, + 0.004063469357788563, + 0.010831110179424286, + -0.022830422967672348, + 0.021662220358848572, + 0.002098437398672104, + -0.003205345245078206, + -0.013030503876507282, + 0.03086361661553383, + -0.008011559955775738, + -0.024287071079015732, + 0.026565786451101303, + 0.02639271877706051, + -0.001531462767161429, + 0.018272992223501205, + 0.011718078516423702, + 0.0009086017962545156, + -0.007030847482383251, + -0.013744405470788479, + 0.015734676271677017, + -0.03210392966866493, + -0.030315570533275604, + 0.017335545271635056, + -0.01906621642410755, + -0.004369942005723715, + -0.012273335829377174, + 0.018056657165288925, + -0.007463514804840088, + 0.017176900058984756, + 0.006987580563873053, + 0.009158128872513771, + -0.0012412149226292968, + -0.02066708542406559, + -0.011307044886052608, + -0.005707605741918087, + -0.00046692037722095847, + -0.01994597353041172, + 0.007809648755937815, + -0.00977107509970665, + -0.024748582392930984, + 0.004899959545582533, + 0.016527898609638214, + -0.006832541432231665, + 0.0043410975486040115, + 0.00989366415888071, + -0.019268127158284187, + -0.02832530066370964, + -0.014970296062529087, + 0.008126938715577126, + 0.006846963427960873, + 0.03057517111301422, + 0.010751787573099136, + -0.01011720858514309, + -0.012424768880009651, + 0.015460653230547905, + -0.01788359135389328, + 0.011934412643313408, + -0.01408332772552967, + -0.002422938123345375, + 0.007816859520971775, + 0.03095014952123165, + -0.0023976992815732956, + -0.03461340069770813, + 0.0017658243887126446, + 0.02272946760058403, + 0.004867509473115206, + 0.019801750779151917, + 0.014054483734071255, + -0.0028087333776056767, + 0.01788359135389328, + -0.008775939233601093, + -0.0017090367618948221, + 0.008754306472837925, + -0.013376637361943722, + -0.005123504437506199, + -0.016513478010892868, + 0.03432495519518852, + 0.045574311167001724, + -0.014826074242591858, + 0.002433754736557603, + 0.016210610046982765, + 0.011876723729074001, + -0.0044456589967012405, + 0.002275109989568591, + 0.01747976802289486, + 0.013044926337897778, + 0.005188404582440853, + 0.01975848339498043, + 0.012388713657855988, + 0.04981445521116257, + -0.03767091780900955, + 0.010917644016444683, + 0.0004899058258160949, + -0.02125839702785015, + -0.004092313814908266, + 0.011451266705989838, + -0.0066811079159379005, + -0.0356518030166626, + 0.051227834075689316, + 0.029378125444054604, + 0.02454667165875435, + 0.0038723743055015802, + -0.023248668760061264, + -0.0152443191036582, + -0.005123504437506199, + 0.0018235133029520512, + 0.04920871928334236, + 0.026998452842235565, + -0.026594631373882294, + 0.014371773228049278, + 0.03175779804587364, + 0.024690892547369003, + 0.005725633352994919, + -0.006893835961818695, + -0.0026338635943830013, + -0.0001063077652361244, + 0.005570594221353531, + -0.05261237174272537, + -0.023652492091059685, + -0.017739368602633476, + -0.03357499837875366, + -0.015229896642267704, + 0.013463171198964119, + 0.006587362848222256, + -0.03207508474588394, + 0.019960395991802216, + 0.008617294952273369, + -0.0139895835891366, + -0.0105498768389225, + 0.036719050258398056, + -0.0009843186708167195, + 0.030286727473139763, + 0.022628512233495712, + 0.00041509041329845786, + -0.027690721675753593, + 0.022772734984755516, + -0.028628168627619743, + 0.007312081288546324, + 0.01841721497476101, + -0.005325416103005409, + -0.014653006568551064, + 0.021618954837322235, + 0.011386367492377758, + 0.0027366220019757748, + -0.010030675679445267, + -0.01486934069544077, + 0.028339723125100136, + -0.029536768794059753, + 0.014523206278681755, + -0.041478391736745834, + -0.010571509599685669, + 0.0035298459697514772, + 0.026623474434018135, + -0.02072477526962757, + 0.006533279549330473, + 0.013794883154332638, + -0.010881587862968445, + 0.000745450088288635, + 0.0012475247494876385, + -0.02813781052827835, + 0.00590230617672205, + 0.0007274223025888205, + -0.005978023167699575, + -0.03735363110899925, + -0.018172036856412888, + 0.013917472213506699, + -0.013650660403072834, + 0.013124248012900352, + -0.0008518141694366932, + -0.011321467347443104, + 0.0261042732745409, + -0.015936587005853653, + 0.053131572902202606, + -0.021517997607588768, + 0.021965088322758675, + -0.017090367153286934, + -0.02601774036884308, + -0.024272648617625237, + 0.04854529723525047, + -0.044939734041690826, + -0.038536254316568375, + -0.0368921160697937, + -0.02714267559349537, + 0.020393062382936478, + -0.01544623076915741, + -0.0036722656805068254, + -0.010823898948729038, + 0.03654598444700241, + 0.018503747880458832, + 0.011292622424662113, + -0.007759171072393656, + -0.0012998053571209311, + 0.0006206074613146484, + -0.014227550476789474, + 0.030748238787055016, + -0.03054632805287838, + 0.021719910204410553, + -0.005022549070417881, + 0.012093056924641132, + 0.011018599383533001, + 0.02570045180618763, + -0.039661191403865814, + -0.003800263162702322, + 0.0018199078040197492, + -0.03576718270778656, + 0.004510559141635895, + -0.017422078177332878, + 0.010001830756664276, + 0.020219996571540833, + 0.011638756841421127, + -0.026003317907452583, + -0.0024878382682800293, + -0.0032954842317849398, + 0.009619641117751598, + -0.021157441660761833, + -0.02829645574092865, + -0.012201224453747272, + -0.02551296167075634, + -0.017926856875419617, + 0.00567515566945076, + 0.006497223861515522, + 0.019268127158284187, + 0.009958564303815365, + -0.057919759303331375, + -0.0020353400614112616, + 0.02867143414914608, + 0.012244490906596184, + 0.022152576595544815, + -0.0013349596410989761, + 0.008696617558598518, + 0.010787843726575375, + -0.01678749918937683, + -0.031123217195272446, + -0.014227550476789474, + 0.004308647476136684, + 0.011537800543010235, + -0.018748925998806953, + -0.015042407438158989, + -0.0017432895256206393, + -0.012770903296768665, + -0.017566300928592682, + -0.004917987622320652, + -0.009504263289272785, + 0.016513478010892868, + -0.05203548073768616, + -0.00868940632790327, + 0.022426599636673927, + -0.012331024743616581, + 0.0019470038823783398, + 0.01125656720250845, + 0.01421312801539898, + 0.00010151912283618003, + -0.029003147035837173, + 0.019455617293715477, + 0.00498649338260293, + 0.005722028203308582, + -0.017205744981765747, + 0.006702741142362356, + 0.007333714514970779, + 0.011581066995859146, + 0.011545011773705482, + -0.001385437441058457, + 0.02350826933979988, + 0.0008702927152626216, + 0.00021216482855379581, + 0.01471069548279047, + -0.012431980110704899, + 0.008501917123794556, + -0.011458477936685085, + -0.019109481945633888, + -0.028181077912449837, + 0.019643105566501617, + 0.021460309624671936, + 0.017984546720981598, + -0.010607565753161907, + 0.011617123149335384, + -0.022902533411979675, + -0.029940592125058174, + 0.009179762564599514, + 0.011364733800292015, + -0.03830549865961075, + 0.008934584446251392, + -0.007809648755937815, + 0.005455216392874718, + -0.024142848327755928, + -0.0033243289217352867, + 0.05036250129342079, + -0.011674812063574791, + 0.017494190484285355, + -0.0005489469040185213, + 0.01600869931280613, + 0.01416265033185482, + -0.03164241835474968, + -0.004903565160930157, + 0.01737881265580654, + -0.010196531191468239, + -0.011811823584139347, + 0.012648314237594604, + -0.002190379425883293, + -0.01421312801539898, + -0.017797058448195457, + 0.02663789689540863, + 0.0015720253577455878, + -0.060169629752635956, + 0.008076460100710392, + -0.034411489963531494, + 0.009814341552555561, + 0.014314084313809872, + 0.01453762874007225, + -0.00014568727056030184, + -0.025974472984671593, + -0.02835414558649063, + -0.0015828419709578156, + -0.006608996540307999, + -0.022657355293631554, + 0.009778286330401897, + 0.012496880255639553, + -0.028743546456098557, + -0.0034937902819365263, + 0.03493069112300873, + -0.025815829634666443, + -0.0144583061337471, + -0.0152443191036582, + -0.014278028160333633, + -0.00013565929839387536, + -0.008263949304819107, + 0.008227894082665443, + -0.017148056998848915, + 0.01210026815533638, + -1.7781339920475148e-6, + -0.04724729433655739, + 0.008271160535514355, + 0.014552051201462746, + 0.015590453520417213, + 0.01791243627667427, + 0.022441022098064423, + -0.016095232218503952, + -0.005192010197788477, + -0.04545893520116806, + -0.022340066730976105, + -0.022066043689846992, + -0.032276999205350876, + 0.02147473208606243, + 0.023594802245497704, + -0.011415211483836174, + -0.0012511302484199405, + -0.017277857288718224, + 0.005199221428483725, + 0.017797058448195457, + -0.016239454969763756, + -0.01175413466989994, + 0.01424197293817997, + -0.007139014080166817, + 0.008718250319361687, + 0.028902189806103706, + 0.00022726312454324216, + -0.05667944625020027, + -0.017681678757071495, + 0.0152443191036582, + -0.022743890061974525, + 0.011357522569596767, + -0.0005309191183187068, + -0.020551707595586777, + 0.004535797983407974, + 0.00972059741616249, + -0.010492187924683094, + 0.004766554106026888, + 0.013080981560051441, + 0.00044483630335889757, + -0.015922164544463158, + -0.004211297258734703, + 0.010787843726575375, + 0.002267898991703987, + 0.012273335829377174, + -0.014472728595137596, + -0.013419904746115208, + -0.07291889935731888, + -0.013347793370485306, + -0.006259256973862648, + 0.031902018934488297, + -0.030257882550358772, + 0.022657355293631554, + 0.004351914394646883, + 0.02435918152332306, + 0.011263777501881123, + 0.017681678757071495, + -0.008999484591186047, + 0.012713214382529259, + 0.009244662709534168, + 0.027532076463103294, + -0.026536941528320312, + 0.006295312661677599, + -0.007322897668927908, + 0.01675865612924099, + 0.010456131771206856, + -0.014429462142288685, + -0.006078978534787893, + 0.03974772244691849, + 0.02307560108602047, + 0.014653006568551064, + 0.013924683444201946, + -0.00011808217823272571, + -0.03948812186717987, + 0.014184284023940563, + 0.00840817205607891, + -0.028772389516234398, + 0.0035244375467300415, + -0.006169117987155914, + -0.003396440064534545, + -0.01729227788746357, + 0.04058421403169632, + -0.001496308483183384, + 0.012136324308812618, + -0.0012367080198600888, + 0.014544839970767498, + 0.008848050609230995, + 0.005887883715331554, + 0.015100096352398396, + -0.014826074242591858, + -0.003059319918975234, + -0.0027059747371822596, + -0.004081496968865395, + 0.0008883205009624362, + -0.027099410071969032, + -0.02013346180319786, + 0.00038895008037798107, + 0.02792147733271122, + -0.02010461688041687, + -0.007903393357992172, + -0.01678749918937683, + -0.012821380980312824, + 0.00567515566945076, + 0.002168745966628194, + -0.007593315094709396, + -0.0137588270008564, + -0.014999140985310078, + 0.04586275666952133, + 0.011739712208509445, + 0.0032918788492679596, + 0.011855090036988258, + 0.004020202439278364, + -0.0018514564726501703, + 0.03308464214205742, + 0.00047908915439620614, + 0.044189777225255966, + -0.018301837146282196, + -0.006226806901395321, + -0.01697498932480812, + 0.0008531662751920521, + 0.017436500638723373, + 0.01707594469189644, + 0.012871858663856983, + 0.025412006303668022, + 0.010766210034489632, + 0.010405654087662697, + 0.02526778355240822, + 0.0015756308566778898, + 0.0026284551713615656, + -0.0020623819436877966, + 0.028411833569407463, + -0.006331367883831263, + -0.009446574375033379, + 0.002938533667474985, + -0.007997138425707817, + -0.015258741565048695, + 0.0005642705364152789, + 0.022715045139193535, + 0.020176729187369347, + 0.037036340683698654, + 0.018085502088069916, + 0.021907398477196693, + 0.010578720830380917, + 0.010513820685446262, + -0.0020299318712204695, + 0.0072471811436116695, + -0.005923939403146505, + -0.011206088587641716, + -0.0023057572543621063, + 0.017681678757071495, + -0.020393062382936478, + 0.01195604633539915, + 0.008963428437709808, + -0.011249355971813202, + 0.007391403429210186, + -0.02259966731071472, + -0.018676815554499626, + 0.005505694076418877, + 0.01804223656654358, + -0.002469810424372554, + 0.011170033365488052, + 0.0052713328041136265, + -0.021561264991760254, + -0.02711383067071438, + -0.010593143291771412, + 0.005725633352994919, + -0.003540662582963705, + 0.008480283431708813, + 0.03715171664953232, + 0.01125656720250845, + -0.03452686965465546, + 0.02213815413415432, + 0.0116459671407938, + -0.008545183576643467, + 0.002154323738068342, + -0.016470210626721382, + 0.0025509356055408716, + -0.0025220911484211683, + -0.006093400996178389, + -0.010391231626272202, + 0.0009581783087924123, + -0.007189492229372263, + 0.03057517111301422, + 0.04104572534561157, + -8.86179695953615e-5, + 0.010203742422163486, + -0.03155588358640671, + -0.013939104974269867, + 0.007586103864014149, + 0.017739368602633476, + 0.01619618758559227, + -0.01978732831776142, + 0.011393577791750431, + 0.015835631638765335, + 0.0004245550080668181, + -0.001674783881753683, + -0.0024031074717640877, + 0.019268127158284187, + 0.013888627290725708, + 0.015864476561546326, + -0.0026771302800625563, + 0.0082062603905797, + -0.020176729187369347, + -0.003919246606528759, + 0.023580379784107208, + 0.0021795625798404217, + -0.010867166332900524, + 0.0018478508573025465, + 0.007593315094709396, + 0.004546614363789558, + 0.011408000253140926, + 0.010203742422163486, + -0.007816859520971775, + 0.016369255259633064, + -0.0011321466881781816, + -0.021402619779109955, + -0.027878209948539734, + 0.01959983818233013, + 0.0074851480312645435, + -0.013477593660354614, + -0.03135397285223007, + 0.012482457794249058, + -0.0024860354606062174, + -0.022974645718932152, + 0.001190737122669816, + 0.015604875050485134, + 0.018056657165288925, + -0.013268470764160156, + -0.007492359261959791, + 0.0007350841187871993, + 0.02342173457145691, + 0.015013563446700573, + 0.0325077548623085, + -0.022022776305675507, + -0.007867338135838509, + 0.0015882503939792514, + -0.014854918234050274, + 0.010571509599685669, + 0.03911314532160759, + -0.005747267045080662, + -0.025585072115063667, + 0.03279619663953781, + -0.015143363736569881, + 0.030459793284535408, + 0.006810907740145922, + -0.00866056140512228, + -0.03827665373682976, + -0.001419690321199596, + -0.0038543464615941048, + 0.020364217460155487, + 0.018489325419068336, + -0.016643278300762177, + 0.0068505690433084965, + -0.014898184686899185, + 0.007679848466068506, + 0.012201224453747272, + -0.006893835961818695, + 0.024287071079015732, + -0.002828564029186964, + 0.02757534384727478, + -0.024315914139151573, + -0.00216514035128057, + 0.012511302717030048, + -0.015201052650809288, + -0.020277684554457664, + -0.009648486040532589, + -0.024474559351801872, + 0.030084814876317978, + 0.012547357939183712, + -0.02526778355240822, + -0.026724431663751602, + 0.010686887428164482, + -0.0022606877610087395, + -0.005779717117547989, + -0.05295850336551666, + -0.020191151648759842, + 0.022628512233495712, + -0.0017973730573430657, + -0.008235105313360691, + 0.006655868608504534, + -0.031873174011707306, + -0.011170033365488052, + -0.0016973186284303665, + 0.03790167346596718, + -0.010636409744620323, + 0.005657128058373928, + -0.0013520859647542238, + -0.013693926855921745, + -0.001454844605177641, + -0.01127098873257637, + 0.006518857553601265, + 0.02883007936179638, + 0.02229679934680462, + -0.053794994950294495, + -0.00928792916238308, + -0.0011844272958114743, + -0.00047187801101244986, + 0.0077447486110031605, + -0.009540318511426449, + -0.016023119911551476, + 0.004528586752712727, + 0.01713363453745842, + -0.011480111628770828, + 0.017681678757071495, + -0.005329021718353033, + 0.031902018934488297, + 0.03011365979909897, + -0.00845864973962307, + 0.0013169317971915007, + 0.01246082503348589, + 0.02144588716328144, + 0.000671536079607904, + -0.023465001955628395, + -0.0035262403544038534, + -0.0062484401278197765, + 0.016499055549502373, + -0.012410346418619156, + 0.024373603984713554, + 0.011343100108206272, + -0.010420076549053192, + 0.005036971066147089, + 0.011408000253140926, + -0.019123904407024384, + 0.007449092343449593, + -0.003167486749589443, + -0.00493240961804986, + 0.023003490641713142, + -0.021128596737980843, + -0.0009410518687218428, + -0.017926856875419617, + -0.0016612630570307374, + 0.014479939825832844, + 0.0046006981283426285, + 0.0007526612025685608, + -0.018806615844368935, + 0.03305579721927643, + -0.011004176922142506, + 0.016239454969763756, + 0.012395924888551235, + 0.0032576259691268206, + 0.015172207728028297, + 0.02826761081814766, + 0.014018427580595016, + -0.004687231499701738, + 0.016902878880500793, + 0.014552051201462746, + -0.004499742295593023, + 0.0032990898471325636, + 0.014840495772659779, + -0.0182874146848917, + -0.007751959841698408, + 0.0008729968685656786, + -0.00017610919894650578, + 0.006464773789048195, + -0.02013346180319786, + 0.008905739523470402, + -0.008617294952273369, + 0.00641790172085166, + -0.023580379784107208, + -0.01333337090909481, + -0.02082573063671589, + 0.016340410336852074, + 0.04219950735569, + 0.02620523050427437, + 0.003585732076317072, + -0.006172723136842251, + -0.014595317654311657, + -0.018676815554499626, + -0.031007839366793633, + 0.004283408634364605, + 0.0346999354660511, + -0.04519933462142944, + -0.007236364297568798, + -0.005859039258211851, + 0.003358581569045782, + 0.006374634802341461, + -0.029536768794059753, + -0.020421907305717468, + 0.012922336347401142, + -0.011739712208509445, + 0.01766725815832615, + -0.0009446574258618057, + -0.008343271911144257, + 0.020378639921545982, + -0.02757534384727478, + -0.011119555681943893, + -0.007651004008948803, + 0.0004849481920246035, + 0.03651713952422142, + -0.008415383286774158, + 0.007658215239644051, + -0.011234933510422707, + 0.005155954509973526, + -0.0007882661302573979, + 0.02454667165875435, + 0.013715560548007488, + 0.010621987283229828, + -0.0031458535231649876, + -0.007449092343449593, + 0.008177416399121284, + -0.0034937902819365263, + 0.031902018934488297, + 0.017710523679852486, + 0.012806958518922329, + -0.002046156907454133, + -0.015316430479288101, + -0.02872912399470806, + -0.013030503876507282, + -0.013398271054029465, + 0.013484804891049862, + 0.013095404021441936, + -0.005657128058373928, + -0.0006296213832683861, + 0.012951181270182133, + -0.016614433377981186, + -0.017566300928592682, + -0.021647797897458076, + 0.026623474434018135, + -0.005264121573418379, + 0.007441881578415632, + 0.014321294613182545, + -0.005985233932733536, + -0.009259085170924664, + -0.003327934304252267, + 0.007185886614024639, + -0.016470210626721382, + -0.007903393357992172, + -0.021460309624671936, + -0.010016253218054771, + -0.02519567310810089, + -0.0018226118991151452, + -0.017551878467202187, + 0.008848050609230995, + 0.0012096662539988756, + 0.010355176404118538, + -0.011855090036988258, + -0.0004561036766972393, + 0.005484060849994421, + -0.01895083673298359, + 0.007084930781275034, + -0.011321467347443104, + 0.005372288636863232, + 0.01246082503348589, + -0.017984546720981598, + 0.018777770921587944, + -0.03392113372683525, + -0.005559777840971947, + -0.008177416399121284, + 0.017898013815283775, + 0.010751787573099136, + 0.009799919091165066, + -0.031036684289574623, + 0.00018726391135714948, + -0.006169117987155914, + 0.019296972081065178, + -0.0016279115807265043, + 0.003050306113436818, + 0.0037533908616751432, + 0.003023264231160283, + 0.018965259194374084, + -0.013340582139790058, + -0.01563371904194355, + -0.015013563446700573, + 0.014393405988812447, + 0.019051793962717056, + 0.011206088587641716, + -0.009958564303815365, + -0.00372815178707242, + 0.014386194758117199, + -0.002904280787333846, + 0.0025869912933558226, + -0.009951353073120117, + 0.01788359135389328, + -0.016297142952680588, + -0.0032215702813118696, + -0.02232564426958561, + 0.014378984458744526, + -0.01691729947924614, + -0.0033008926548063755, + 0.011335888877511024, + -0.00033419058308936656, + 0.03172895312309265, + -0.01988828368484974, + 0.03014250472187996, + -0.026508096605539322, + 0.009980197995901108, + -0.004964859690517187, + 0.0006179033080115914, + -0.01421312801539898, + -0.01879219338297844, + 0.006810907740145922, + 4.4590669858735055e-5, + -0.020739195868372917, + 0.029911749064922333, + -0.008235105313360691, + -0.008797572925686836, + 0.02936370298266411, + 0.0037389686331152916, + 0.003028672654181719, + 0.006161906756460667, + -0.0024067130871117115, + 0.007658215239644051, + 0.006486407481133938, + -0.009280718863010406, + 0.0015431807842105627, + -0.022974645718932152, + 0.022585244849324226, + -0.012648314237594604, + 0.0028592112939804792, + -0.013513648882508278, + 0.008811995387077332, + 0.003933669067919254, + 0.02192182093858719, + 0.03236353024840355, + -0.0025491327978670597, + -0.014061694964766502, + -0.0036452237982302904, + -0.023969780653715134, + -0.01255456916987896, + -0.025152405723929405, + 0.02973868139088154, + -0.01011720858514309, + -0.014220339246094227, + -0.011876723729074001, + 0.0005002718535251915, + 0.01948446035385132, + -0.014645795337855816, + 0.008509128354489803, + 0.0014854918699711561, + 0.0029187030158936977, + 0.011364733800292015, + 0.016830766573548317, + -0.00017374305753037333, + 0.006843357812613249, + -0.0060248952358961105, + -0.007041663862764835, + 0.045285869389772415, + -0.01694614440202713, + 0.01014605350792408, + 0.0007909703417681158, + 0.018691236153244972, + 0.02163337543606758, + -0.03400766849517822, + -0.024460136890411377, + -0.01606638729572296, + 0.012713214382529259, + -0.017984546720981598, + -0.00956916343420744, + -0.003940879832953215, + -0.02323424629867077, + 0.008711039088666439, + 0.01341269351541996, + -0.043728265911340714, + 0.008278371766209602, + 0.009266296401619911, + -0.0037930519320070744, + -0.020955530926585197, + -0.012547357939183712, + 0.00959800835698843, + 0.012403136119246483, + -0.010088364593684673, + -0.015100096352398396, + 0.002805127762258053, + -0.007157042156904936, + -0.01491260714828968, + -0.014126595109701157, + -0.0001553772162878886, + 0.0012592427665367723, + -0.0063890572637319565, + -0.004571853671222925, + -0.020753618329763412, + 0.0223544891923666, + -0.0015179419424384832, + 0.001493604388087988, + 0.020768040791153908, + 0.00372815178707242, + -0.020032506436109543, + -0.005404738709330559, + -0.01544623076915741, + -0.020306529477238655, + 0.0012511302484199405, + -0.004539403598755598, + 0.0061438786797225475, + -0.000429737992817536, + 0.0069695524871349335, + 0.008422594517469406, + -0.024863960221409798, + -0.0048242430202662945, + -0.0026609052438288927, + -0.02072477526962757, + 0.016657698899507523, + -0.02216699905693531, + 0.07309196889400482, + 0.0009293337934650481, + 0.012936758808791637, + 0.008682195097208023, + 0.02141704224050045, + -0.006356607191264629, + -0.001000543707050383, + -0.005329021718353033, + 0.017998969182372093, + -0.002684341510757804, + 0.00268073589541018, + -0.007658215239644051, + 0.021056486293673515, + 0.010037886910140514, + -0.006828935816884041, + 0.00034072567359544337, + 0.0103191202506423, + 0.005869856104254723, + -0.016960566863417625, + 0.03155588358640671, + 0.031440507620573044, + -0.004633148200809956, + -0.014011216349899769, + 0.02435918152332306, + -0.0037858409341424704, + 0.022051621228456497, + -0.0008887712028808892, + -0.013549705035984516, + 0.029565613716840744, + 0.01566256396472454, + 0.011335888877511024, + -0.007607737090438604, + -0.010614776983857155, + -0.002275109989568591, + 0.010492187924683094, + 0.01644136570394039, + 0.007953871041536331, + 0.01210026815533638, + -0.008552394807338715, + 0.017840323969721794, + 0.01975848339498043, + -0.022152576595544815, + 0.017710523679852486, + 0.005812167190015316, + -0.01184787880629301, + -0.0007377882720902562, + 0.009792707860469818, + -0.010881587862968445, + -0.0037858409341424704, + 0.004806214943528175, + -0.01217959076166153, + -0.03247890993952751, + -0.0025184855330735445, + 0.005264121573418379, + 0.008343271911144257, + 0.0008297301246784627, + -0.014501573517918587, + -0.01935466006398201, + -0.0010690493509173393, + 0.0031260228715837, + -0.023940935730934143, + 0.001384536037221551, + -0.032565440982580185, + -0.011025810614228249, + -0.02813781052827835, + -0.004488925449550152, + -0.014148227870464325, + 0.005253304727375507, + 0.0001847850944614038, + 0.002639272017404437, + 0.011033021844923496, + -0.006958736106753349, + 0.01152337808161974, + -0.025094715878367424, + -0.010578720830380917, + 0.01458810642361641, + 0.020998796448111534, + 0.02554180659353733, + 0.004424025304615498, + 0.02072477526962757, + 0.02510913833975792, + 0.012972814962267876, + -0.0018135980935767293, + -0.008602872490882874, + 0.0004966662381775677, + -0.019686372950673103, + -0.0009189678239636123, + 0.012417557649314404, + 0.0032558231614530087, + -0.016210610046982765, + -0.023551534861326218, + -0.006082584150135517, + -0.0018352314364165068, + -0.0035586904268711805, + 0.011617123149335384, + 0.00395530229434371, + 0.0034595374017953873, + -0.005368683021515608, + 0.014479939825832844, + 0.0021362958941608667, + 0.013802094385027885, + 0.013405482284724712, + -0.005704000126570463, + 0.020032506436109543, + 0.005444399546831846, + -0.0033008926548063755, + 0.008328849449753761, + 0.010283065028488636, + -0.023147713392972946, + 0.0068794135004282, + -0.019498882815241814, + -0.02554180659353733, + 0.010766210034489632, + -0.008379328064620495, + -0.01766725815832615, + -0.0008500114199705422, + -0.007499570492655039, + -0.0017180506838485599, + 0.012136324308812618, + -0.014660217799246311, + -0.010614776983857155, + -0.02147473208606243, + 0.0019722427241504192, + -0.01763841323554516, + 0.0063890572637319565, + 0.0007504077511839569, + -0.005260515958070755, + 0.005192010197788477, + 0.013852572068572044, + -0.011206088587641716, + 0.01822972483932972, + -0.0009221226791851223, + 0.031498197466135025, + -0.0054948776960372925, + 0.00036055626696906984, + -0.01672981120646, + -0.013153092935681343, + 0.004113947041332722, + 0.014314084313809872, + -0.02479184977710247, + 0.018172036856412888, + 0.008804784156382084, + -0.001598165719769895, + 0.01566256396472454, + 0.01857585832476616, + 0.011840667575597763, + 0.0019361871527507901, + -0.021301664412021637, + 0.014076116494834423, + -0.014097750186920166, + 0.011869512498378754, + -0.01804223656654358, + -0.009158128872513771, + -0.014544839970767498, + -0.012518513947725296, + 0.013917472213506699, + -0.009468208067119122, + 0.03767091780900955, + -0.031036684289574623, + -0.006673896685242653, + -0.029709836468100548, + -0.006172723136842251, + -0.008220682851970196, + -0.006785668898373842, + -0.01600869931280613, + 0.015951009467244148, + -0.01882103644311428, + 0.024142848327755928, + 0.01278532575815916, + -0.013838149607181549, + -0.034382645040750504, + -0.016268298029899597, + -0.0007012819405645132, + -0.023407313972711563, + 0.02117186412215233, + -0.01097533293068409, + 1.1309635738143697e-5, + 0.0032017396297305822, + -0.01419149525463581, + 0.01788359135389328, + -0.014941452071070671, + 0.0007616751245222986, + 0.02313329093158245, + 0.008711039088666439, + -0.01106907706707716, + -0.00811251625418663, + 0.002870027907192707, + -0.010283065028488636, + 0.013254048302769661, + -0.0021362958941608667, + -0.016152920201420784, + 0.0061294566839933395, + 0.005029759835451841, + 0.0013962541706860065, + -0.013405482284724712, + -0.006078978534787893, + 0.004373547621071339, + 0.013838149607181549, + 0.013355004601180553, + -4.157664443482645e-5, + -0.018691236153244972, + 0.01972963847219944, + -0.0005173982353881001, + 0.02069593034684658, + -0.0007310278597287834, + 0.00619075121358037, + -0.0103191202506423, + -0.012561780400574207, + -0.004067074507474899, + 0.008963428437709808, + -0.05558335408568382, + -0.021373774856328964, + 0.010073942132294178, + 0.007542837411165237, + -0.00994414184242487, + -0.0035622960422188044, + 0.005368683021515608, + 0.020623818039894104, + -0.0007373375701718032, + -0.006295312661677599, + 0.02735901065170765, + 0.0010293881641700864, + -0.00939609669148922, + -0.017090367153286934, + 0.01436456199735403, + 0.013355004601180553, + 0.010182108730077744, + 0.003879585536196828, + 0.0018676815088838339, + -0.007045269478112459, + 0.01638367772102356, + -0.012331024743616581, + -0.008011559955775738, + 0.009980197995901108, + -0.010593143291771412, + 0.01587889902293682, + 0.01433571707457304, + -0.013528071343898773, + 0.009049962274730206, + 0.006915469188243151, + -0.011999312788248062, + -0.0018442453583702445, + -0.014061694964766502, + 0.0026230469811707735, + 0.008386539295315742, + 0.006497223861515522, + -0.002601413521915674, + 0.0062484401278197765, + -0.000896883720997721, + -2.6816373065230437e-5, + -0.020364217460155487, + 0.00013430720719043165, + 0.002302151871845126, + 0.017652835696935654, + 0.01675865612924099, + 0.015143363736569881, + 0.009590797126293182, + -0.011617123149335384, + -0.01769610121846199, + -0.021085331216454506, + 0.002345418557524681, + -0.012655525468289852, + -0.0031548673287034035, + -0.001300706760957837, + 0.012042579241096973, + 0.005909517407417297, + -0.01959983818233013, + 0.012309391051530838, + -0.0009464602335356176, + -0.012799747288227081, + 0.008985062129795551, + -0.0010221770498901606, + 0.0074851480312645435, + -0.0028501972556114197, + 0.005040576681494713, + 0.007751959841698408, + 0.012994447723031044, + 0.010247008875012398, + -0.002882647328078747, + -0.007672637235373259, + -0.005278544034808874, + -0.013080981560051441, + 0.01670096628367901, + -0.009223029017448425, + 0.00961242988705635, + -0.01511451881378889, + 0.002085817977786064, + 0.015157785266637802, + 0.012821380980312824, + 0.012266124598681927, + 0.0007346334168687463, + -0.020494017750024796, + 0.0261042732745409, + -0.01822972483932972, + 0.015402964316308498, + 0.023118868470191956, + 0.004124763887375593, + 0.012698791921138763, + 0.005029759835451841, + 0.012266124598681927, + 0.0060248952358961105, + -0.026738852262496948, + 0.0006012275698594749, + -0.01528758555650711, + -0.017840323969721794, + 0.0025202883407473564, + 0.02182086557149887, + 0.015143363736569881, + -0.018503747880458832, + 0.007117380853742361, + 0.009735018946230412, + -0.0046692038886249065, + 0.008934584446251392, + -0.007672637235373259, + 0.0033784122206270695, + -0.017840323969721794, + 0.016181765124201775, + 0.016715388745069504, + 0.0062340181320905685, + -0.0016973186284303665, + -0.004716075956821442, + 0.0027113831602036953, + 0.011033021844923496, + 0.0033063010778278112, + 0.009100439958274364, + 0.0039084297604858875, + 0.0066955299116671085, + -0.009843186475336552, + 0.01208584662526846, + -0.019744060933589935, + 0.02770514413714409, + 0.012064212933182716, + -0.0002936280216090381, + -0.004982887767255306, + -0.008682195097208023, + -0.0008495607180520892, + -0.0016612630570307374, + -0.007578892633318901, + -0.013621815480291843, + 0.002422938123345375, + -0.01882103644311428, + 0.009302351623773575, + -0.002990814158692956, + 0.0037569962441921234, + -0.019744060933589935, + 0.0484587624669075, + -0.010081153362989426, + -0.014826074242591858, + -0.0020659873262047768, + -0.0018126966897398233, + 0.02353711426258087, + 0.0137588270008564, + 0.01321078184992075, + -0.007290447596460581, + -0.02182086557149887, + -0.001081668771803379, + 0.02704172022640705, + 0.027863789349794388, + -0.01338384859263897, + -0.005631888750940561, + -0.005700394511222839, + 0.006720768753439188, + -0.017782635986804962, + 0.010715732350945473, + 0.004961254075169563, + -0.023032333701848984, + 0.014927029609680176, + 0.0047196815721690655, + -0.021517997607588768, + -0.001005952013656497, + 0.003135036677122116, + -0.009251873940229416, + -0.04214181751012802, + -0.0032323868945240974, + -0.018301837146282196, + -0.003349567763507366, + -0.011667600832879543, + 0.011602700687944889, + -0.024186113849282265, + 0.005036971066147089, + 0.03420957922935486, + 0.012626680545508862, + -0.0016441366169601679, + -0.01341269351541996, + -0.007002002559602261, + -0.013145881704986095, + 0.005617466755211353, + 0.00816299393773079, + -0.005141532514244318, + -0.012713214382529259, + -0.00011740613263100386, + 0.0181287694722414, + 0.0068145133554935455, + -0.005401133093982935, + -0.005621072370558977, + 0.009821552783250809, + -0.01975848339498043, + 0.029219480231404305, + 0.0077303266152739525, + 0.005689578130841255, + 0.0075212037190794945, + -0.0009545727516524494, + 0.017840323969721794, + -0.018878726288676262, + 0.0012709609000012279, + -0.001678389497101307, + 0.0009293337934650481, + 0.019311394542455673, + 0.016499055549502373, + -0.01507125236093998, + -0.015157785266637802, + 0.024964915588498116, + -0.01175413466989994, + 0.0011727092787623405, + 0.02676769718527794, + -0.013650660403072834, + -0.007012819405645132, + 0.014429462142288685, + -0.0010978938080370426, + 0.00042320293141528964, + 0.026681164279580116, + -0.021618954837322235, + -0.003016053233295679, + -0.01295839250087738, + 0.018056657165288925, + -0.013701138086616993, + 0.04609351232647896, + -0.0034469179809093475, + -0.017176900058984756, + 0.007301264442503452, + 0.005109082441776991, + -0.040411148220300674, + -0.020046928897500038, + 0.010384020395576954, + -0.029998281970620155, + 0.0015603072242811322, + 0.005101871211081743, + 0.0028844501357525587, + 0.0098503977060318, + 0.01597985439002514, + -0.027993589639663696, + -0.010484976693987846, + -0.0014241972239688039, + -0.0015900532016530633, + 0.0009293337934650481, + 0.004766554106026888, + 0.000748154241591692, + -0.010672465898096561, + 0.011840667575597763, + 0.0018370342440903187, + 0.012439191341400146, + -0.010968121699988842, + 0.006226806901395321, + 0.023522691801190376, + -0.031469352543354034, + -0.01566256396472454, + -0.00038173896609805524, + 0.017551878467202187, + 0.011105133220553398, + -0.009511474519968033, + -0.0006003261660225689, + 0.005321810487657785, + 0.011364733800292015, + 0.004283408634364605, + 0.0076942709274590015, + -0.0005651719402521849, + 0.0034559317864477634, + 0.011891146190464497, + -0.01694614440202713, + 0.004514164291322231, + -0.01625387743115425, + 0.008501917123794556, + 0.03960350155830383, + 0.0020966348238289356, + 0.015922164544463158, + 0.02147473208606243, + -0.018301837146282196, + -0.00438436446711421, + -0.01424197293817997, + -0.003580323653295636, + -0.017436500638723373, + 0.014234761707484722, + 0.0002767269324976951, + -0.007665426470339298, + 0.021662220358848572, + -0.0065765464678406715, + -0.009006695821881294, + 0.009958564303815365, + -0.0009464602335356176, + 0.014256395399570465, + 0.023436157032847404, + 0.006562124006450176, + 0.01726343482732773, + 0.008105305023491383, + -0.012843014672398567, + -0.007550048176199198, + 0.02267177775502205, + 0.02138819731771946, + 0.01444388460367918, + -0.005015337839722633, + 0.0017577118705958128, + 0.012201224453747272, + -0.022642934694886208, + 0.011653178371489048, + -0.0003118811873719096, + 0.008783150464296341, + -0.014624162577092648, + 0.008429805748164654, + 0.00028641687822528183, + -0.0031873174011707306, + 0.016152920201420784, + 0.007607737090438604, + -0.014371773228049278, + 0.010131631046533585, + -0.000671085377689451, + 0.01675865612924099, + 0.01338384859263897, + -0.019960395991802216, + 0.014429462142288685, + -0.0010690493509173393, + -0.015345274470746517, + -0.017551878467202187, + -0.011696445755660534, + 0.017869168892502785, + 0.016051964834332466, + -0.004982887767255306, + 0.007171464152634144, + 0.01217959076166153, + 0.018402792513370514, + -0.015994276851415634, + -0.00017419374489691108, + 0.007499570492655039, + -0.010326331481337547, + -0.004124763887375593, + 0.010960910469293594, + 0.01700383424758911, + 0.012720425613224506, + 0.008797572925686836, + 0.03132512792944908, + -0.022022776305675507, + 0.01941234990954399, + -0.0010537257185205817, + 0.011415211483836174, + -0.004139185883104801, + 0.00276726926676929, + -0.031123217195272446, + -0.0026284551713615656, + -0.011004176922142506, + -0.004395180847495794, + 0.005462427623569965, + -0.02976752631366253, + -0.013549705035984516, + 0.010758998803794384, + 0.012172379530966282, + 0.019715216010808945, + -0.0018352314364165068, + 0.018056657165288925, + 0.014097750186920166, + -0.0013304526219144464, + 0.02270062267780304, + -0.006572940852493048, + 0.002350826980546117, + -0.01951330527663231, + 0.004629542585462332, + -0.01763841323554516, + 0.010809477418661118, + 0.0004894551238976419, + -0.009497052058577538, + -5.78016770305112e-5, + 0.00972059741616249, + -0.020768040791153908, + -0.01283580344170332, + 0.003843529848381877, + 0.0013944513630121946, + -0.005754478275775909, + -0.001758613158017397, + -0.026089852675795555, + -0.01660001091659069, + 0.01644136570394039, + -0.017811479046940804, + 0.011941623874008656, + 0.00424374733120203, + -0.020551707595586777, + -0.005808561574667692, + -0.011011388152837753, + 0.003317117691040039, + 0.02091226354241371, + -0.011480111628770828, + 0.021489154547452927, + -0.009634063579142094, + 0.031786639243364334, + -0.0016234045615419745, + -0.007434670347720385, + 6.34917087154463e-5, + -0.002129084663465619, + 0.012540146708488464, + -0.012359868735074997, + -0.005970811937004328, + -0.021993933245539665, + -0.016484633088111877, + -0.026219651103019714, + -0.003580323653295636, + 0.0016846992075443268, + -0.005693183746188879, + -0.004225719720125198, + 0.010715732350945473, + 0.03833434358239174, + 0.00903553981333971, + -0.003962513525038958, + -0.016297142952680588, + 0.0006918173166923225, + -0.004954043310135603, + -0.026551363989710808, + -0.0027384248096495867, + 0.01616734266281128, + -0.00611142860725522, + 0.012388713657855988, + 0.01350643765181303, + 0.0164125207811594, + -0.015576031059026718, + -0.0014485347783192992, + -0.004160819575190544, + 0.008220682851970196, + -0.006205173209309578, + 0.005844617262482643, + -0.0025509356055408716, + 0.004146397113800049, + 0.005642705596983433, + 0.01600869931280613, + -0.009590797126293182, + 0.012143535539507866, + 0.0017784438095986843, + -0.00783128198236227, + -0.013982372358441353, + 0.004218508489429951, + -0.002639272017404437, + 0.005487666465342045, + -0.002493246691301465, + 0.004106735810637474, + -0.006670291069895029, + 0.015475074760615826, + -0.010304697789251804, + -0.012244490906596184, + -0.0015161391347646713, + 0.012403136119246483, + -0.01436456199735403, + 0.0037497852463275194, + 0.01737881265580654, + -0.012770903296768665, + -0.007845704443752766, + -0.01972963847219944, + 0.014047272503376007, + -0.025051450356841087, + -0.005029759835451841, + -0.012280546128749847, + 0.0036326043773442507, + -0.0003731757460627705, + -0.005628283601254225, + 0.04124763607978821, + -0.00679288012906909, + -0.030286727473139763, + -0.0017306701047345996, + 0.009028328582644463, + 0.027748411521315575, + -0.00919418502599001, + -0.01897968165576458, + 0.013542493805289268, + -0.007802437525242567, + -0.025037027895450592, + -0.0034252845216542482, + -0.008170205168426037, + -0.001079866080544889, + -0.017220167443156242, + 0.0030430948827415705, + -0.004629542585462332, + 0.007925027050077915, + -0.004946832079440355, + 0.001458450104109943, + 0.011775767430663109, + -0.019772905856370926, + -0.0032918788492679596, + -0.003239598125219345, + 0.011220511049032211, + -0.028195500373840332, + -1.3901134479965549e-5, + 0.002527499571442604, + 0.00034072567359544337, + 0.016152920201420784, + 0.001081668771803379, + -0.009561952203512192, + 0.008321639150381088, + -0.006226806901395321, + -0.0013277484104037285, + -0.011638756841421127, + -0.009936930611729622, + 0.012662735767662525, + -0.004045441281050444, + -0.028397411108016968, + -0.011869512498378754, + -0.0014205917250365019, + -0.02101321890950203, + 0.0029547587037086487, + 0.0043771532364189625, + -0.01235265750437975, + -0.011516166850924492, + -0.01600869931280613, + 0.016527898609638214, + -0.001718951971270144, + -0.005040576681494713, + -0.0029763919301331043, + -0.0023670520167797804, + -0.011170033365488052, + -0.0071930973790585995, + -0.0020966348238289356, + -0.009381674230098724, + -0.03242122009396553, + 0.004849481862038374, + 0.005603044293820858, + -0.03020019270479679, + -0.0017505006399005651, + 0.0020353400614112616, + -0.00498649338260293, + -0.022989068180322647, + 0.013845360837876797, + -0.006147484295070171, + -0.03992079198360443, + -0.0023670520167797804, + 0.008985062129795551, + -0.011242144741117954, + -0.009475418366491795, + 0.0048386650159955025, + -0.010362387634813786, + 0.018431637436151505, + 0.026306185871362686, + 0.005393921863287687, + -0.01507125236093998, + -0.003021461656317115, + 0.002154323738068342, + -0.008501917123794556, + 0.01897968165576458, + 0.005091054365038872, + -0.021243974566459656, + -0.023782292380928993, + 0.005444399546831846, + 0.02032095193862915, + -0.00791060458868742, + -0.014580895192921162, + -1.8605267541715875e-5, + -0.019527727738022804, + 0.016484633088111877, + -0.01785474643111229, + -0.02623407356441021, + 0.01566256396472454, + -0.010787843726575375, + 0.009323985315859318, + 0.003275653813034296, + -0.008646138943731785, + 0.0015458849957212806, + 0.01152337808161974, + 0.011314256116747856, + -0.000447765807621181, + 0.005603044293820858, + 0.03265197575092316, + 0.009338407777249813, + -0.004178847186267376, + 0.00027109324582852423, + -0.006511646322906017, + -0.018734503537416458, + 9.366012818645686e-6, + 0.025094715878367424, + 0.015374119393527508, + 0.011537800543010235, + -0.0197007954120636, + -0.020335374400019646, + -0.006428718101233244, + -0.007012819405645132, + 0.0035677042324095964, + -0.013895838521420956, + 0.00902111828327179, + 0.02669558674097061, + 0.004726892802864313, + -0.00424374733120203, + -0.015720253810286522, + -0.0030827561859041452, + -0.0032594287768006325, + -0.01436456199735403, + 0.005581411067396402, + -0.007319292519241571, + -0.000673338829074055, + 0.023839980363845825, + 0.002608624519780278, + -0.011408000253140926, + -0.022816000506281853, + -0.006846963427960873, + 0.03758438676595688, + 0.0016441366169601679, + 0.004225719720125198, + -0.0014602529117837548, + -0.00914370734244585, + -0.034498024731874466, + 0.004395180847495794, + -0.013174725696444511, + -0.008054827339947224, + -0.0038651633076369762, + -0.031036684289574623, + 0.008054827339947224, + -0.01106907706707716, + 0.008711039088666439, + 0.021056486293673515, + -0.0006287199794314802, + -0.012857436202466488, + -0.023061178624629974, + -0.007607737090438604, + -0.01913832686841488, + -0.005372288636863232, + 0.022311221808195114, + 0.00573645019903779, + 0.00013915218005422503, + 0.0027546498458832502, + 0.006926286034286022, + -0.013427115976810455, + -0.009677330031991005, + 0.030661705881357193, + -0.01172528974711895, + -0.01137915626168251, + 0.005855433642864227, + 0.005437188781797886, + -0.006360212806612253, + 0.000895982317160815, + -0.0015900532016530633, + -0.0003835417446680367, + 0.014177072793245316, + -0.0026609052438288927, + 0.013773249462246895, + 0.01022537611424923, + -0.0005128912744112313, + -0.014097750186920166, + 0.01622503250837326, + 0.013809305615723133, + 0.005610255524516106, + 0.01957099512219429, + -0.027690721675753593, + 0.00021284086687956005, + 0.014725117944180965, + 0.006670291069895029, + 8.597013220423833e-5, + 0.0055778054520487785, + -0.010384020395576954, + 0.0010627396404743195, + -0.006212384440004826, + 0.016470210626721382, + 0.00455743120983243, + 0.033690378069877625, + 0.021431464701890945, + -0.025527384132146835, + 0.010730154812335968, + -0.007113775238394737, + -0.01579236425459385, + 0.008516338653862476, + -0.015345274470746517, + 0.017710523679852486, + 0.008307216688990593, + -0.026219651103019714, + -0.015345274470746517, + 0.009186973795294762, + -0.014681851491332054, + -0.01985943876206875, + -0.005556172225624323, + -0.006345790345221758, + -0.010290276259183884, + -0.013153092935681343, + 0.0009077003924176097, + -0.00047908915439620614, + -0.017623990774154663, + -0.0028213527984917164, + 0.021618954837322235, + 0.028440678492188454, + -0.01416265033185482, + 0.011595489457249641, + 0.006511646322906017, + -0.01469627395272255, + -0.0023706573992967606, + -0.012244490906596184, + 0.008653350174427032, + -0.011581066995859146, + 0.010045098140835762, + 0.026349451392889023, + -0.03095014952123165, + 0.0031656839419156313, + 0.012605046853423119, + 0.020176729187369347, + 0.013117036782205105, + 0.013239625841379166, + 0.009446574375033379, + 0.007012819405645132, + -0.021431464701890945, + 0.030257882550358772, + -0.006021289620548487, + 0.004139185883104801, + 0.015720253810286522, + 0.008848050609230995, + 0.006648657843470573, + 0.00581577280536294, + -0.014148227870464325, + -0.015749098733067513, + 0.0011808217968791723, + -0.05872740596532822, + 0.0031260228715837, + -0.0164125207811594, + 0.026089852675795555, + -0.01732112281024456, + 0.0164125207811594, + -0.014681851491332054, + 0.010059519670903683, + -0.006998397409915924, + 0.006684713065624237, + 0.006580152083188295, + -0.02069593034684658, + 0.00522085465490818, + -0.013895838521420956, + -0.00536147179082036, + 0.002799719339236617, + 0.013571337796747684, + 0.010932066477835178, + 0.011653178371489048, + 0.004088708199560642, + 0.011696445755660534, + -0.01366508286446333, + -0.001598165719769895, + -0.0030863615684211254, + 0.003976935520768166, + 0.006926286034286022, + 0.013477593660354614, + -0.0178259015083313, + -0.023436157032847404, + 0.0013863388448953629, + -0.0047881873324513435, + -0.023522691801190376, + 0.001419690321199596, + -0.005779717117547989, + 0.01838837005198002, + 0.013391059823334217, + 0.01039844285696745, + -0.0034451151732355356, + -0.007809648755937815, + 0.010946488007903099, + -0.019080637022852898, + -0.009511474519968033, + -0.015330852940678596, + 0.01287906989455223, + -0.016297142952680588, + 0.014552051201462746, + 0.015013563446700573, + 0.013088192790746689, + 0.004319464322179556, + -0.007268814370036125, + -0.008559606038033962, + -0.016080809757113457, + -0.027185942977666855, + -0.019657528027892113, + 0.024272648617625237, + -0.023998625576496124, + 0.034382645040750504, + -0.01769610121846199, + 0.028397411108016968, + -0.00886247307062149, + 0.006435929331928492, + -0.00753562618046999, + -0.01606638729572296, + 0.013693926855921745, + 0.02107090875506401, + 0.0182874146848917, + -0.017249012365937233, + 0.015864476561546326, + 0.004928804002702236, + 0.01732112281024456, + -0.014689062722027302, + 0.02323424629867077, + -0.026003317907452583, + -0.0007170562748797238, + 0.011162822134792805, + -0.0039012187626212835, + 0.01217959076166153, + -0.012316602282226086, + 0.01838837005198002, + 0.00040337233804166317, + -0.005581411067396402, + 0.000635931093711406, + 0.02254197746515274, + -0.013167515397071838, + 0.008025982417166233, + -0.027056142687797546, + 0.005545355379581451, + 0.010391231626272202, + -0.017018256708979607, + -0.004701653961092234, + 0.010852743871510029, + 0.03570949286222458, + -0.011840667575597763, + 0.010513820685446262, + 0.025960052385926247, + 0.029031990095973015, + -0.009460996836423874, + 0.0225131344050169, + 0.020522862672805786, + -0.010275853797793388, + -0.008552394807338715, + 0.0002458543167449534, + -0.0462665818631649, + 0.0275176540017128, + 0.005909517407417297, + -0.008379328064620495, + -0.02845510095357895, + 0.0014611543156206608, + -0.019715216010808945, + 0.007737537380307913, + 0.008956218138337135, + -0.008090882562100887, + -0.02232564426958561, + 0.01978732831776142, + 0.0031656839419156313, + 0.01576351933181286, + 0.00029250126681290567, + -0.010953699238598347, + -0.001263749785721302, + -0.002120070857927203, + -0.017061522230505943, + -0.028195500373840332, + -0.02369575761258602, + -0.0073084756731987, + 0.023493846878409386, + 0.0005656226421706378, + -0.008905739523470402, + -0.008220682851970196, + -0.01838837005198002, + 0.013398271054029465, + -0.020768040791153908, + 0.019989239051938057, + -0.009994619525969028, + 0.016556743532419205, + 0.005289360415190458, + 0.011537800543010235, + 0.008927373215556145, + 0.03464224562048912, + -0.021489154547452927, + -0.0016549532301723957, + 0.004081496968865395, + -0.0008121529826894403, + 0.029190635308623314, + -0.006414296105504036, + -0.02460435964167118, + -0.018460480496287346, + -0.002233646111562848, + 0.0010266839526593685, + 0.015345274470746517, + -0.0003281061945017427, + -0.013982372358441353, + 0.019051793962717056, + 0.03732478618621826, + 0.015777941793203354, + -0.010016253218054771, + 0.026738852262496948, + 0.005999656394124031, + -0.014314084313809872, + 0.008501917123794556, + -0.013102615252137184, + -0.00911486241966486, + 0.01691729947924614, + 0.0025905969087034464, + 0.020623818039894104, + -0.002271504607051611, + 0.024936072528362274, + 0.011371945030987263, + 0.023162133991718292, + -0.010283065028488636, + 0.012936758808791637, + 0.004730498418211937, + 0.008884106762707233, + -0.02435918152332306, + 0.00438436446711421, + 0.017681678757071495, + -0.020407484844326973, + -0.005307388491928577, + -0.010528243146836758, + 0.006464773789048195, + -0.027315743267536163, + 0.007759171072393656, + 0.0035622960422188044, + 0.0006030303775332868, + -0.016484633088111877, + 0.012886281125247478, + 0.0008833628380671144, + 0.015258741565048695, + 0.012273335829377174, + -0.003720940789207816, + -0.0006161005003377795, + 0.007120986469089985, + -0.005671550054103136, + 0.02476300485432148, + -0.003915640991181135, + 0.005188404582440853, + 0.0002348122652620077, + -0.004124763887375593, + -0.027993589639663696, + 0.006021289620548487, + 0.026349451392889023, + 0.006461168173700571, + 0.0065657296217978, + 0.01097533293068409, + -0.01879219338297844, + -0.026032162830233574, + -0.023003490641713142, + -0.03193086385726929, + 0.004539403598755598, + -0.007063297554850578, + 0.009086018428206444, + 0.0020768041722476482, + -0.003962513525038958, + -0.00261042732745409, + 0.03270966559648514, + -0.0027113831602036953, + 0.0033892288338392973, + 0.016931721940636635, + -0.006140273064374924, + -0.009107651188969612, + 0.0049251988530159, + -0.007824070751667023, + -0.013001658953726292, + 0.0006422408623620868, + 0.003140445100143552, + 0.015835631638765335, + 0.00664505222812295, + 0.011862301267683506, + 0.0022498711477965117, + 0.010030675679445267, + 0.023940935730934143, + 0.010585932061076164, + -0.01844605803489685, + 0.028036855161190033, + -0.020652662962675095, + 0.025657184422016144, + -0.0006683811661787331, + 0.022152576595544815, + -0.0031206144485622644, + -0.002943941857665777, + -0.007348136976361275, + -0.008011559955775738, + -0.003362187184393406, + 0.008480283431708813, + -0.005978023167699575, + 0.016455788165330887, + -0.009468208067119122, + 0.014090538956224918, + -0.0025238939560949802, + -0.014955874532461166, + -0.008790361694991589, + -0.016095232218503952, + 0.017494190484285355, + -0.011422422714531422, + 0.029623303562402725, + 0.0008698420133441687, + -0.0029655753169208765, + -0.017797058448195457, + 0.012042579241096973, + 0.011999312788248062, + 0.010513820685446262, + -0.006399873644113541, + -9.684316319180652e-5, + -0.0005259614554233849, + -0.008480283431708813, + 0.007041663862764835, + -0.022974645718932152, + -0.0036398156080394983, + -0.004424025304615498, + -0.0022066044621169567, + -0.0012078635627403855, + 0.024157270789146423, + -0.011984890326857567, + -0.007499570492655039, + -0.0026735246647149324, + -0.01338384859263897, + -0.011343100108206272, + 0.003308103885501623, + 0.0022174210753291845, + 0.00745630357414484, + -0.0006589166005142033, + -0.013636237941682339, + -0.011667600832879543, + -0.008134149014949799, + -0.0181287694722414, + 0.026536941528320312, + 0.009980197995901108, + -0.009013907052576542, + 0.016888456419110298, + -0.004928804002702236, + -0.012388713657855988, + -0.01625387743115425, + 0.02332077920436859, + -0.014227550476789474, + 0.015503919683396816, + -0.030286727473139763, + -0.02154684253036976, + -0.007975504733622074, + -0.017710523679852486, + -0.019383504986763, + 0.015720253810286522, + 0.00011019501107512042, + -0.0011014994233846664, + -0.0225131344050169, + 0.030373260378837585, + -0.020046928897500038, + 0.010499398224055767, + -0.020378639921545982, + 0.003553282003849745, + -0.0065080407075583935, + 0.01670096628367901, + -0.00941051822155714, + 0.002197590423747897, + 0.008134149014949799, + -0.001901934272609651, + -0.007319292519241571, + 0.008674983866512775, + 0.0024121215101331472, + -0.007665426470339298, + 0.024373603984713554, + 0.0021399015095084906, + 0.002722199773415923, + -0.015085674822330475, + -0.019296972081065178, + 0.013261259533464909, + -0.008473072201013565, + 0.017220167443156242, + 0.003576718270778656, + -0.0035208319313824177, + 0.0004556529747787863, + 0.027532076463103294, + -0.001079866080544889, + 0.02526778355240822, + 0.007207519840449095, + 0.008480283431708813, + -0.02620523050427437, + -0.008610083721578121, + 0.011617123149335384, + -0.014970296062529087, + -0.037757452577352524, + -0.0035262403544038534, + 0.025931207463145256, + -0.021431464701890945, + -0.016902878880500793, + 0.005491272080689669, + 0.018503747880458832, + -0.020090196281671524, + 0.02395535819232464, + 0.017494190484285355, + 0.014068905264139175, + -0.0013088192790746689, + -0.025686029344797134, + 0.010434498079121113, + 0.007600526325404644, + 0.019960395991802216, + -0.002805127762258053, + 0.018518170341849327, + 0.021777598187327385, + 0.03201739862561226, + 0.006490013096481562, + -0.005996050778776407, + -0.008004349656403065, + -0.002120070857927203, + -0.0003145853406749666, + 0.0019938761834055185, + -0.012367079965770245, + 0.004633148200809956, + 0.010037886910140514, + -0.0036488294135779142, + -0.0036001543048769236, + -0.003174697980284691, + 0.004982887767255306, + 0.01713363453745842, + -0.0037173351738601923, + 0.007665426470339298, + -0.015532764606177807, + -0.015201052650809288, + -0.007816859520971775, + -0.019744060933589935, + 0.020003661513328552, + 0.004070680122822523, + 0.04323790967464447, + 0.02163337543606758, + -0.010506609454751015, + -0.014826074242591858, + 0.008256739005446434, + -0.04237257316708565, + 0.008588450029492378, + -0.003688490716740489, + 0.010384020395576954, + -0.009388885460793972, + -0.010232587344944477, + 0.009965775534510612, + 0.0052857547998428345, + -0.001380029134452343, + -0.020984375849366188, + -0.0045646424405276775, + 0.005758083425462246, + -0.007564470637589693, + 0.0152443191036582, + 0.024777427315711975, + 8.044912101468071e-5, + -0.014371773228049278, + 0.0055778054520487785, + 0.006702741142362356, + 0.008624506182968616, + 0.008949006907641888, + 0.005779717117547989, + -0.009230240248143673, + -0.002915097400546074, + -0.0118046123534441, + 0.019340237602591515, + 0.002985405968502164, + -0.018330680206418037, + 0.017277857288718224, + -0.013254048302769661, + 0.008696617558598518, + -0.005112688057124615, + 0.005137926898896694, + 0.022397754713892937, + -0.015475074760615826, + -0.010758998803794384, + -0.004424025304615498, + 0.030402105301618576, + -0.006846963427960873, + -0.016455788165330887, + 0.012706003151834011, + 0.0030412920750677586, + 5.197080554353306e-6, + -0.0007860126788727939, + -0.019527727738022804, + 0.0034451151732355356, + -0.017494190484285355, + -0.010744577273726463, + 0.00012067367788404226, + -0.026277340948581696, + 0.018272992223501205, + 0.002835775027051568, + -0.030978994444012642, + -0.004773764871060848, + 0.004690837115049362, + -0.0024121215101331472, + 0.008307216688990593, + 0.008927373215556145, + 0.009915297850966454, + 0.0023742630146443844, + 0.028339723125100136, + -0.0025581468362361193, + -0.0018190064001828432, + 0.002130887471139431, + 0.006893835961818695, + 0.01258341409265995, + -0.02870027907192707, + -0.015518342144787312, + 0.0009662908269092441, + -0.01267715822905302, + -0.022239111363887787, + -0.005891489330679178, + -0.028397411108016968, + -0.013167515397071838, + 0.01263389177620411, + 0.015388541854918003, + -0.02066708542406559, + 0.009958564303815365, + -0.0005557073745876551, + -0.0038940077647566795, + 0.007214731071144342, + 0.007304870057851076, + 0.007088536396622658, + 0.014169861562550068, + 0.0054732440039515495, + -0.005934756249189377, + -0.006316945888102055, + -0.025426428765058517, + 0.005808561574667692, + 0.028873346745967865, + 0.0009131087572313845, + -0.006926286034286022, + 0.006133062299340963, + 0.00989366415888071, + 0.023378469049930573, + -0.006399873644113541, + 0.01769610121846199, + -0.011862301267683506, + 0.017768213525414467, + 0.014595317654311657, + -0.01453762874007225, + 0.020494017750024796, + -0.00845864973962307, + -0.014321294613182545, + 0.02254197746515274, + -0.022181421518325806, + 0.016340410336852074, + 0.007099352777004242, + -0.006515251938253641, + -0.004150002729147673, + 0.007629370782524347, + 0.005267727188766003, + -0.010052308440208435, + 0.02510913833975792, + 0.02682538703083992, + -0.003391031641513109, + 0.006291707046329975, + 0.027647454291582108, + -0.023868825286626816, + -0.0009518685401417315, + -0.007997138425707817, + 0.006021289620548487, + 0.01287906989455223, + -0.013261259533464909, + -0.008336060680449009, + 0.016023119911551476, + -0.002547329990193248, + -0.006075373385101557, + 0.015705831348896027, + -0.01807107962667942, + -0.019123904407024384, + 0.0018081896705552936, + -0.020407484844326973, + 0.0027798889204859734, + -0.01587889902293682, + 0.002651891438290477, + 0.011581066995859146, + 0.018936416134238243, + 0.00453219236806035, + 0.012547357939183712, + 0.006973158102482557, + 0.005848222877830267, + 0.013903049752116203, + 0.0007918716873973608, + 0.009468208067119122, + 0.00010580073285382241, + -0.010845532640814781, + 5.18017950525973e-5, + 0.01769610121846199, + 0.004009385593235493, + -0.004124763887375593, + -0.019715216010808945, + 0.009879241697490215, + -0.009107651188969612, + -0.0031945286318659782, + -0.0013574943877756596, + 0.0058374060317873955, + 0.011465689167380333, + 0.04136301577091217, + -0.0015188433462753892, + -0.012057001702487469, + -0.0030430948827415705, + 0.003098981222137809, + 0.0005187503411434591, + -0.003362187184393406, + 0.01906621642410755, + -0.007041663862764835, + -0.013117036782205105, + -0.0011997510446235538, + -0.0011105133453384042, + -0.01278532575815916, + 0.003628998761996627, + -0.0036596462596207857, + -0.022441022098064423, + 0.014999140985310078, + 0.030084814876317978, + -0.005855433642864227, + 0.022340066730976105, + -0.005202827043831348, + -0.005797744728624821, + 0.010968121699988842, + 0.0015882503939792514, + 0.000391428911825642, + -0.00019977071497123688, + -0.01801339164376259, + 0.01135031133890152, + 0.004009385593235493, + 0.004957648925483227, + 0.00515956012532115, + -0.004936015233397484, + -0.006446746177971363, + 0.012201224453747272, + -0.0020768041722476482, + -0.03132512792944908, + -0.012850225903093815, + 0.009078807197511196, + 0.012900703586637974, + 0.01433571707457304, + -0.00017047551227733493 + ], + "a33e930e-3141-491d-bb88-4cc2fde13111": [ + -0.03373655676841736, + -0.014317748136818409, + -0.011600564233958721, + 0.02485317550599575, + -0.013817786239087582, + 0.0006951462128199637, + -0.030954159796237946, + 0.0020958546083420515, + -0.016216153278946877, + -0.006365456152707338, + 0.018839141353964806, + 0.031707726418972015, + -0.002048756694421172, + -0.043127141892910004, + 0.012723666615784168, + 0.027084888890385628, + -0.0209549218416214, + 0.01360041182488203, + 0.007745785638689995, + -0.005006864201277494, + 0.06585004925727844, + 0.005318434908986092, + -0.03257722407579422, + -0.0006928819348104298, + 0.03959118202328682, + -0.02649073116481304, + -0.01712912693619728, + -0.0043112654238939285, + -0.03825794905424118, + 0.011723742820322514, + 0.008267484605312347, + 0.026867514476180077, + 0.018650749698281288, + 0.016448020935058594, + -0.0020614368841052055, + -0.024432918056845665, + 0.0030124513432383537, + 0.028823887929320335, + -0.037127602845430374, + 0.012325146235525608, + -0.009651437401771545, + 0.0007703216397203505, + -0.02351994439959526, + -0.0026121195405721664, + -0.07535656541585922, + 0.02472275123000145, + 0.019679658114910126, + -0.030722294002771378, + 0.003677255706861615, + -0.0013558748178184032, + 0.012180229648947716, + -0.02001296542584896, + 0.014056898653507233, + 0.02254900336265564, + 0.024867666885256767, + -0.0177957434207201, + -0.006485012359917164, + 0.028374645859003067, + -0.013354053720831871, + -0.005130043253302574, + -0.0009754690108820796, + 0.02259247936308384, + -0.015535046346485615, + 0.0010234726360067725, + -0.015926320105791092, + -0.0350697860121727, + 0.03222942352294922, + -0.007528410758823156, + -0.04695293679833412, + -0.0357653871178627, + -0.010216611437499523, + 0.03927236422896385, + -0.03851880133152008, + -0.014759743586182594, + 0.002461768686771393, + -0.039794065058231354, + 0.06874837726354599, + -0.009006558917462826, + 0.020925939083099365, + 0.008354434743523598, + -0.04675005376338959, + 0.03825794905424118, + 0.032548241317272186, + -0.024041643366217613, + 0.03741743415594101, + 0.02009991556406021, + -0.000915238109882921, + -0.030258560553193092, + 0.019954998046159744, + -0.02059263177216053, + 0.006307489704340696, + 0.0008581772563047707, + 0.0011294428259134293, + -0.02046220749616623, + -0.009318129159510136, + 0.007861718535423279, + 0.0004696199612226337, + 0.017940659075975418, + 0.008955838158726692, + -0.024664783850312233, + -0.010260086506605148, + 0.03347570449113846, + -0.029664402827620506, + -0.00017876806668937206, + -0.011593318544328213, + 0.005651742685586214, + 0.013839523307979107, + 0.0027153724804520607, + -0.04361985996365547, + 0.07477690279483795, + 0.0028059452306479216, + -0.04333002492785454, + 0.012303409166634083, + 0.0038076804485172033, + -0.05428571254014969, + -0.05153229832649231, + 0.0173175185918808, + -0.03840286657214165, + 0.0034852412063628435, + -0.045474790036678314, + -0.01407139003276825, + 0.06289374828338623, + 0.029403552412986755, + 0.010904964990913868, + -0.006231408566236496, + 0.0054452368058264256, + 0.016723360866308212, + -0.026200899854302406, + 0.012332391925156116, + -0.01930287480354309, + -0.009115246124565601, + -0.01596979610621929, + -0.019607199355959892, + 0.007419723551720381, + -0.006463274825364351, + 0.020085424184799194, + 0.033533673733472824, + 0.03393943980336189, + -0.041706960648298264, + 0.02698344737291336, + -0.03857676684856415, + -0.04643123969435692, + -0.011057127267122269, + 0.021070856600999832, + 0.0054452368058264256, + -0.014766989275813103, + -0.04193883016705513, + 0.03367858752608299, + 0.002597627928480506, + 0.020983906462788582, + -0.023896727710962296, + -0.006474143825471401, + 0.029794827103614807, + -0.0025450955145061016, + 0.011194798164069653, + 0.02170848846435547, + -0.019563725218176842, + 0.016578445211052895, + 0.015129280276596546, + 0.048894818872213364, + 0.02347646839916706, + -0.035707421600818634, + -0.010129661299288273, + 0.025505300611257553, + 0.03301197290420532, + 0.021404163911938667, + 0.04104034602642059, + 0.03591030463576317, + -0.027809472754597664, + 0.017433451488614082, + -0.003025131532922387, + -0.008137060329318047, + 0.02343299426138401, + -0.0026374799199402332, + 0.03547555208206177, + 0.0075139193795621395, + 0.04040271416306496, + 0.025722675025463104, + 0.04370680823922157, + -0.03895355015993118, + 0.01925940066576004, + -0.026621157303452492, + -0.022577987983822823, + -0.018563801422715187, + 0.03263518959283829, + 0.02175196260213852, + 0.004314888268709183, + 0.005372778512537479, + -0.02067958191037178, + -0.013296086341142654, + 0.0010642303386703134, + 0.01615818776190281, + 0.004640950355678797, + 0.013020745478570461, + -0.013506215997040272, + -0.013839523307979107, + 0.021027380600571632, + -0.038315918296575546, + 0.019824573770165443, + 0.03083822689950466, + 0.002048756694421172, + -0.025751657783985138, + -0.027592096477746964, + 0.03225840628147125, + -0.022737395018339157, + -0.0033856111112982035, + -0.016723360866308212, + -0.014984363690018654, + 0.025461824610829353, + -0.023809777572751045, + 0.048170238733291626, + -0.04756158962845802, + 0.019186941906809807, + 0.0064958808943629265, + -0.015520554967224598, + -0.0006996748852543533, + -0.030519410967826843, + 0.039736099541187286, + 0.03860574960708618, + -0.019897032529115677, + -0.004659064579755068, + -0.004651818890124559, + -0.01254252064973116, + -0.01708565279841423, + -0.054923344403505325, + -0.001348629011772573, + -0.006296620704233646, + 0.011158568784594536, + -0.04544580727815628, + 0.005188009701669216, + 0.05889405682682991, + 0.006662535015493631, + -0.02223018743097782, + -0.033272821456193924, + -0.003432709025219083, + 0.031359925866127014, + -0.024693768471479416, + 0.0010597017826512456, + 0.018071085214614868, + -0.017433451488614082, + 0.014911905862390995, + 0.02472275123000145, + 0.017911676317453384, + 0.025128517299890518, + -0.017694301903247833, + 0.020824497565627098, + 0.02188238874077797, + 0.027765996754169464, + 0.013419265858829021, + -0.021679505705833435, + -0.0024508999194949865, + 0.005430744960904121, + 0.05121348425745964, + -0.0209983978420496, + -0.0006634457386098802, + 0.02999771013855934, + -0.029939744621515274, + -0.059415753930807114, + 0.0032280145678669214, + -0.01660742796957493, + 0.011723742820322514, + 0.03976508229970932, + 0.054923344403505325, + -0.013991685584187508, + 0.0060430169105529785, + -0.02502707578241825, + 0.03753336891531944, + -0.04561970755457878, + 0.024795209988951683, + 0.034953854978084564, + -0.015346654690802097, + 0.003414594568312168, + -0.008079093880951405, + -0.010513690300285816, + -0.02538936771452427, + 0.01904202438890934, + 0.02765006385743618, + -0.01757836900651455, + -0.008615284226834774, + -0.0003342136333230883, + -0.012730912305414677, + 0.009977499023079872, + 0.009636946022510529, + 0.01824498362839222, + -0.02294027805328369, + -0.010549919679760933, + -0.04744565486907959, + 0.021766453981399536, + -0.05188009887933731, + -0.011926625855267048, + 0.014585843309760094, + -0.0060140336863696575, + 0.04837312176823616, + -0.011404926888644695, + 0.04617039114236832, + -0.011216535232961178, + 0.008948592469096184, + 0.011470139026641846, + -0.04350392520427704, + 0.010470215231180191, + -0.04419952630996704, + 0.0006281223613768816, + 0.004064907319843769, + -0.02076653204858303, + 0.008289222605526447, + 0.0014699965249747038, + 0.030374493449926376, + 0.02409961074590683, + -0.03098314255475998, + -0.006202425342053175, + -0.0024508999194949865, + 0.0029725993517786264, + -0.007111776154488325, + 0.00827473122626543, + 0.00030840036924928427, + 0.002066871151328087, + -0.022404087707400322, + 0.0036899358965456486, + 0.003314964473247528, + -0.04254747927188873, + 0.009963007643818855, + -0.0022172220051288605, + -0.023679353296756744, + 0.007955914363265038, + 0.016766836866736412, + -0.05747387558221817, + 0.03782320022583008, + -0.02254900336265564, + -0.016766836866736412, + -0.04318511113524437, + -0.012738157995045185, + 0.0012100526364520192, + -0.02867897041141987, + 0.0027769620064646006, + -0.020433222874999046, + -0.04101136326789856, + -0.022708412259817123, + -0.05364808067679405, + 0.00441632978618145, + -0.02738921344280243, + -0.01730302721261978, + 0.009702158160507679, + -0.01695522852241993, + -0.013317824341356754, + 0.03388147056102753, + -0.005169895477592945, + 0.003242506179958582, + 0.012086033821105957, + -0.033794522285461426, + 0.0026429141871631145, + 0.0008826319244690239, + 0.0018277590861544013, + 0.054575543850660324, + 0.003999694716185331, + 0.06834261119365692, + -0.012187475338578224, + 0.007919685915112495, + -0.00694512203335762, + 0.014665547758340836, + -0.009955761954188347, + 0.03651895374059677, + -0.046489205211400986, + -0.021157804876565933, + -0.012281671166419983, + 0.0177957434207201, + -0.0007965877884998918, + -0.05176416411995888, + -0.003840286750346422, + 0.012585995718836784, + 0.003342136275023222, + -0.024157576262950897, + 0.01669437810778618, + 0.021578064188361168, + -0.014774234965443611, + -0.02183891274034977, + 0.016317594796419144, + 0.03741743415594101, + -0.011122339405119419, + -0.049329567700624466, + 0.020867973566055298, + -0.006267637480050325, + -0.011288993991911411, + 0.0074849361553788185, + 0.006709632929414511, + 0.02956296131014824, + 0.018882617354393005, + -0.004644573200494051, + 0.025954540818929672, + 0.012709175236523151, + 0.009912286885082722, + -0.046228356659412384, + 0.011796201579272747, + -0.034374188631772995, + 0.023230111226439476, + -0.04854701831936836, + 0.026476239785552025, + -0.01169476006180048, + 0.008426893502473831, + 0.009774615988135338, + 0.0019871671684086323, + 0.005767675582319498, + -0.010397757403552532, + 0.003153744852170348, + 0.01200633030384779, + 0.01583937183022499, + -0.03675081953406334, + -0.020563649013638496, + -0.016679886728525162, + 0.022577987983822823, + 0.011332468129694462, + 0.0035794370342046022, + 0.008361680433154106, + 0.010520935989916325, + 0.023490961641073227, + 0.04275036230683327, + -0.013064220547676086, + 0.02720082364976406, + 0.0141583401709795, + -0.035446569323539734, + -0.029055753722786903, + 0.04785142093896866, + 0.06092288717627525, + -0.030548393726348877, + 0.024201052263379097, + 0.04017084836959839, + 0.01184692233800888, + 0.061270687729120255, + 0.014665547758340836, + -0.013317824341356754, + -0.014165585860610008, + -0.014020669274032116, + 0.024172067642211914, + 0.009890549816191196, + -0.012571504339575768, + 0.004688047803938389, + -0.06579208374023438, + -0.012375866994261742, + 0.019781099632382393, + -0.014455419033765793, + -0.013085957616567612, + 0.0285775288939476, + -0.00503947027027607, + -0.029939744621515274, + 0.02973686158657074, + -0.008550072088837624, + -0.024244526401162148, + -0.022606970742344856, + 0.029852794483304024, + 0.011260010302066803, + -0.005829265341162682, + 0.005169895477592945, + 0.04040271416306496, + -0.030200593173503876, + 0.012528029270470142, + 0.01158607192337513, + 0.0031609905418008566, + -0.010999160818755627, + -0.033040955662727356, + 0.01311494130641222, + -0.015824878588318825, + -0.026519715785980225, + 0.007111776154488325, + -0.007774768862873316, + -0.004271413199603558, + 0.012680191546678543, + -0.0358523353934288, + 0.0024237281177192926, + 0.04043169692158699, + 0.009970253333449364, + 0.004336625803261995, + -0.026968955993652344, + -0.019360842183232307, + -0.030519410967826843, + 0.012049805372953415, + 0.004275036044418812, + -0.029939744621515274, + -0.033301807940006256, + -0.015723437070846558, + -0.0018241361249238253, + -0.026215391233563423, + -0.0348958894610405, + -0.011419418267905712, + -0.004390969406813383, + 0.010441232472658157, + 0.015187246724963188, + -0.028012355789542198, + 0.006753107998520136, + -0.03999694809317589, + 0.005564792547374964, + -0.03959118202328682, + 0.028389137238264084, + -0.007637098431587219, + 0.03373655676841736, + 0.028722446411848068, + 0.012201967649161816, + -0.022404087707400322, + 0.014593088999390602, + -0.028113797307014465, + 0.0030758522916585207, + -0.03825794905424118, + 0.030461443588137627, + -0.032374341040849686, + -0.004778620786964893, + 0.003952596802264452, + 0.008760200813412666, + -0.006608191411942244, + -0.0017489606980234385, + -0.008260238915681839, + -0.010173136368393898, + -0.028592020273208618, + -0.06028525531291962, + -0.005742315202951431, + -0.007220463361591101, + 0.0358523353934288, + 0.00014797330368310213, + -0.02041873149573803, + -0.012933795340359211, + 0.029968727380037308, + 0.02089695632457733, + -0.005977804772555828, + 0.019027533009648323, + 0.015433604829013348, + -0.003177293809130788, + 0.00735451141372323, + -0.0039852033369243145, + -0.010383266024291515, + -0.010984668508172035, + -0.005731446668505669, + -0.012738157995045185, + -0.03066432662308216, + -0.004046792630106211, + 0.014259781688451767, + -0.02325909398496151, + 0.003599362913519144, + 0.01620166189968586, + -0.005887231789529324, + 0.0015786838484928012, + 0.0030323772225528955, + -0.006119098048657179, + 0.052923496812582016, + -0.03677980229258537, + 0.025809625163674355, + 0.022751886397600174, + -0.00812256895005703, + 0.012100526131689548, + 0.02091144770383835, + -0.008492105640470982, + 0.03709861636161804, + 0.008535580709576607, + 0.0349828377366066, + -0.029490502551198006, + 0.014426435343921185, + -0.019418807700276375, + -0.002856665989384055, + 0.005495957564562559, + -0.0490107536315918, + 0.024302493780851364, + -0.003407348645851016, + -0.01734650321304798, + 0.016853787004947662, + -0.027708031237125397, + -0.008115322329103947, + 0.0019726755563169718, + 0.013651132583618164, + -0.006166195962578058, + -0.007336396723985672, + 0.012448325753211975, + 0.008600792847573757, + 0.012839599512517452, + 0.0008323640213347971, + 0.012912058271467686, + -0.0024237281177192926, + 0.006387193687260151, + -0.006930630654096603, + 0.007227709516882896, + 0.00960796233266592, + -0.0063400957733392715, + 0.011375943198800087, + -0.015143771655857563, + 0.010289070196449757, + 0.02272290363907814, + -0.03753336891531944, + 0.008368926122784615, + -0.0047532604075968266, + 0.0033674966543912888, + 0.00505033927038312, + -0.01757836900651455, + -0.024085119366645813, + 0.015926320105791092, + 0.00115118024405092, + 0.011991838924586773, + 0.022027304396033287, + -0.007176988758146763, + -0.018839141353964806, + -0.03138890862464905, + 0.045561742037534714, + 0.009021050296723843, + 0.017418960109353065, + -0.009760124608874321, + 0.016129203140735626, + 0.01397719420492649, + 0.03176569193601608, + 0.03321485593914986, + -0.0019418807933107018, + -0.016317594796419144, + 0.030722294002771378, + -0.019723132252693176, + -0.01996949128806591, + 0.011730988509953022, + 0.020853480324149132, + -0.0421706959605217, + 0.02973686158657074, + 0.0284036286175251, + -0.01850583404302597, + 0.03750438243150711, + 0.024432918056845665, + 0.02928761951625347, + 0.0033910456113517284, + -0.0007947763078846037, + -0.0025396612472832203, + 0.012759895995259285, + -0.03785218298435211, + 0.0692700743675232, + -0.035794369876384735, + 0.01660742796957493, + -0.00889787171036005, + 0.003506978740915656, + -0.007260315585881472, + -0.02459232695400715, + 0.004941652063280344, + 0.024882158264517784, + -0.005550301168113947, + 0.020534664392471313, + -0.0419098436832428, + 0.037040650844573975, + 0.024519868195056915, + 0.038721684366464615, + 0.038315918296575546, + -0.03799710050225258, + 0.008144306018948555, + 0.011499122716486454, + -0.018259476870298386, + 0.009492029435932636, + 0.05303943157196045, + -0.004166348837316036, + 0.024534359574317932, + -0.01071657333523035, + 0.0346350371837616, + 0.04037373140454292, + 0.01009343285113573, + -0.03509877249598503, + 0.005992296151816845, + 0.006198802497237921, + 0.03706963360309601, + 0.010933947749435902, + -0.015955304726958275, + -0.010013728402554989, + 0.011173060163855553, + 0.030461443588137627, + 0.003146498929709196, + 0.022346120327711105, + -0.009926778264343739, + -0.003117515705525875, + -0.01183243002742529, + -0.0031229499727487564, + 0.019331857562065125, + -0.018360918387770653, + -0.00720234913751483, + 0.01240485068410635, + 0.024824192747473717, + 0.0070610553957521915, + -0.021273739635944366, + 0.022650444880127907, + 0.034287240356206894, + 0.004633704200387001, + 0.0006063848850317299, + 0.013071466237306595, + -0.0049380287528038025, + 0.0012363187270238996, + -0.01695522852241993, + 0.023534435778856277, + -0.0212592463940382, + -0.01867973431944847, + 0.03176569193601608, + -0.02162153832614422, + -0.0038801387418061495, + -0.00292369001545012, + 0.03895355015993118, + -0.011390435509383678, + 0.026505224406719208, + 0.003108458360657096, + 0.007100907154381275, + -0.011999084614217281, + -0.022751886397600174, + -0.008723972365260124, + -0.011680267751216888, + -0.011854168027639389, + -0.017723284661769867, + 0.02237510494887829, + 0.005829265341162682, + -0.029852794483304024, + 0.0214331466704607, + 0.013230874203145504, + -0.01453512255102396, + 0.012926549650728703, + 0.006966859567910433, + -0.02276637777686119, + -0.01873769983649254, + 0.0021991075482219458, + -0.00577129889279604, + 0.020940430462360382, + 0.03347570449113846, + -0.0020070932805538177, + -0.0011946551967412233, + 0.010238349437713623, + 0.03249027580022812, + -0.016143696382641792, + 0.017853710800409317, + -0.029186177998781204, + -0.004992372822016478, + 0.004202577751129866, + 0.02427350915968418, + -4.567557880363893e-6, + -0.0420837439596653, + -0.02209976315498352, + 0.0017254118574783206, + -0.006028525531291962, + 0.02014338970184326, + 0.0007472255965694785, + 0.003343947697430849, + 0.02041873149573803, + 0.004064907319843769, + -0.009035542607307434, + 0.006702387239784002, + -0.011658530682325363, + -0.010846998542547226, + -0.018607275560498238, + 0.0077820150181651115, + 0.023766301572322845, + -0.02041873149573803, + 0.013448248617351055, + 0.004742391873151064, + 0.016810311004519463, + 0.013013499788939953, + 0.017824726179242134, + -0.007586377672851086, + 0.021505605429410934, + -0.006590076722204685, + 0.018491342663764954, + 0.02489665150642395, + 0.04608343914151192, + -0.03501182049512863, + 0.038460832089185715, + 0.0007377154543064535, + -0.026968955993652344, + -0.0009088980150409043, + 0.0012345071882009506, + -0.01294104102998972, + -0.03791015222668648, + 0.04559072479605675, + 0.013556936755776405, + 0.013325070030987263, + -0.0044815419241786, + -0.035388603806495667, + 0.002682766178622842, + -0.005405384581536055, + -0.010151399299502373, + 0.0497063510119915, + 0.029881777241826057, + 0.0060538859106600285, + 0.020940430462360382, + 0.014042406342923641, + 0.027708031237125397, + 0.026084965094923973, + -0.0023567043244838715, + -0.0014826767146587372, + 0.03625810146331787, + -0.006213293876498938, + -0.04802532121539116, + -0.021360687911510468, + -0.01620166189968586, + -0.027302265167236328, + -0.0051481579430401325, + -0.025635724887251854, + 0.043127141892910004, + -0.0074559529311954975, + 0.0346350371837616, + 0.01788269355893135, + 0.005861871410161257, + -0.00734364241361618, + 0.03283807262778282, + 0.026287848129868507, + 0.005079322494566441, + 0.012999008409678936, + -0.004688047803938389, + -0.01182518433779478, + 0.022520020604133606, + -0.022969260811805725, + 0.017723284661769867, + 0.010347036644816399, + -0.009492029435932636, + -0.025287924334406853, + 0.04211272671818733, + 0.01540462113916874, + -0.0056589883752167225, + -0.015288688242435455, + 0.00383304082788527, + 0.009419570676982403, + -0.01575242169201374, + 0.01549157127737999, + -0.03124399296939373, + -0.012564258649945259, + 0.0023530812468379736, + 0.005727823823690414, + -0.009506520815193653, + -0.003278735326603055, + 0.002407425083220005, + 0.0018621766939759254, + -0.005466973874717951, + 0.017360994592308998, + -0.01620166189968586, + 0.005796659272164106, + 0.00694512203335762, + 0.015143771655857563, + -0.014411943964660168, + -0.029548469930887222, + 0.014911905862390995, + -0.020607123151421547, + 0.02063610590994358, + 0.011144077405333519, + -0.010745557025074959, + 0.009484783746302128, + -0.007169742602854967, + 0.054604530334472656, + -0.010694836266338825, + 0.011615055613219738, + -0.05028601735830307, + -0.007311036344617605, + -0.016230644658207893, + 0.04425749182701111, + -0.023998169228434563, + -0.0355045385658741, + -0.01533216331154108, + -0.021099839359521866, + 0.00694512203335762, + -0.0014536933740600944, + -0.0044271983206272125, + 0.007963160052895546, + 0.03535962104797363, + 0.0209549218416214, + 0.036866750568151474, + -0.009593470953404903, + -0.01324536558240652, + 0.0014337673783302307, + -0.013506215997040272, + 0.033040955662727356, + -0.035794369876384735, + 0.026244373992085457, + 0.007426969241350889, + 0.02383876033127308, + -0.007883456535637379, + 0.03547555208206177, + -0.03553352132439613, + -0.030548393726348877, + 0.019375333562493324, + 0.0005457011284306645, + -0.007731294259428978, + -0.014564106240868568, + 0.012115017510950565, + 0.028780411928892136, + -0.002237148117274046, + -0.003938105423003435, + -0.012745404615998268, + 0.031620774418115616, + -0.011158568784594536, + -0.01712912693619728, + -0.014571351930499077, + -0.008825413882732391, + -0.013441002927720547, + -0.019418807700276375, + 0.00905727967619896, + 0.00037497139419429004, + 0.02795438840985298, + 0.005365532357245684, + -0.06776294112205505, + -0.005825642496347427, + 0.0245053768157959, + 0.008839905261993408, + 0.007133513689041138, + -0.0006335567450150847, + 0.002373007358983159, + 0.0019418807933107018, + -0.006430668756365776, + -0.02707039751112461, + -0.009680421091616154, + -0.005104682873934507, + -0.009528258815407753, + -0.03324383869767189, + -0.011745480820536613, + 0.005046716425567865, + -0.01407139003276825, + -0.010202120058238506, + -0.01717260293662548, + 0.022447561845183372, + 0.018476851284503937, + -0.05912592262029648, + -0.00976737029850483, + 0.02351994439959526, + -0.007372625637799501, + 0.005666234064847231, + 0.001751677948050201, + 0.02409961074590683, + -0.007205971982330084, + -0.04324307665228844, + 0.01912897452712059, + 0.027128364890813828, + 0.01925940066576004, + 0.0016049499390646815, + -0.019723132252693176, + 0.005495957564562559, + 0.002952673239633441, + 0.018216000869870186, + -0.004669933579862118, + 0.023853251710534096, + -0.006778468377888203, + -0.01318015344440937, + 0.024172067642211914, + -0.0015832125209271908, + 0.021636029705405235, + -0.004191709216684103, + -0.013151170685887337, + -0.008390664122998714, + 0.0007105435943230987, + 0.003414594568312168, + 0.010774539783596992, + -0.0024871290661394596, + 0.017998626455664635, + -0.007162496913224459, + -0.04002593085169792, + -0.004235183820128441, + -0.010731064714491367, + -0.014723514206707478, + 0.0020867972634732723, + -0.010731064714491367, + 0.010194874368607998, + -0.013730836100876331, + -0.01912897452712059, + 0.03066432662308216, + -0.003503355896100402, + 0.013194644823670387, + 0.012216459028422832, + 0.02964991144835949, + 0.019230416044592857, + -0.012999008409678936, + -0.014853938482701778, + 0.02991076000034809, + -0.008484859950840473, + -0.0004082568921148777, + 0.02543284185230732, + 0.016100220382213593, + -0.016882769763469696, + -0.027316756546497345, + 0.021809929981827736, + 0.0009057279676198959, + -0.050315000116825104, + 0.016056746244430542, + -0.0492716021835804, + 0.017940659075975418, + 0.013484477996826172, + 0.02054915577173233, + 0.002075928496196866, + -0.019404316321015358, + -0.022433070465922356, + -0.0068219429813325405, + 0.008535580709576607, + -0.03605521842837334, + -0.004883685149252415, + 0.0004936217446811497, + -0.01073831133544445, + -0.0003029660147149116, + 0.040141865611076355, + -0.008716725744307041, + -0.011615055613219738, + -0.041388146579265594, + -0.017143620178103447, + 0.0031048355158418417, + -0.010680343955755234, + 0.008339943364262581, + -0.005195255856961012, + 0.0015478890854865313, + 0.009665928781032562, + -0.02378079481422901, + -0.004177217371761799, + 0.007753031328320503, + 0.0053908927366137505, + 0.017694301903247833, + -0.009644191712141037, + -0.017013194039463997, + -0.014984363690018654, + -0.026780564337968826, + -0.016085729002952576, + -0.020273815840482712, + -0.024519868195056915, + 0.02259247936308384, + 0.011796201579272747, + -0.01637556217610836, + 0.0026809547562152147, + 0.008021127432584763, + 0.011557089164853096, + -0.008796430192887783, + -0.003956219647079706, + -0.0017679809825494885, + -0.0003899158909916878, + -0.0026392913423478603, + 0.015100296586751938, + 0.022882312536239624, + -0.0016783139435574412, + -0.05043093487620354, + -0.030026694759726524, + 0.01725955307483673, + -0.029128212481737137, + -0.003017885610461235, + -0.002077739918604493, + -0.0026103081181645393, + 0.004912668373435736, + 0.00200347020290792, + -0.0052459766156971455, + -0.007753031328320503, + 0.0281427800655365, + -0.0075139193795621395, + -0.034721989184617996, + 0.006521241273730993, + 0.0025469071697443724, + -0.005372778512537479, + 0.00727843027561903, + -0.02743268944323063, + -0.009173212572932243, + -0.07408130168914795, + -0.013687361031770706, + 0.006198802497237921, + 0.01867973431944847, + -0.04043169692158699, + 0.003822172060608864, + -0.006952368188649416, + 0.016491495072841644, + 0.018621766939759254, + 0.01198459230363369, + -0.0030124513432383537, + 0.000941957114264369, + -0.003088532481342554, + 0.04257646203041077, + -0.020534664392471313, + 0.017433451488614082, + 0.00687990989536047, + 0.007955914363265038, + 0.004445313010364771, + -0.010216611437499523, + -0.002655594376847148, + 0.0174914188683033, + 0.002635668497532606, + 6.481615855591372e-5, + 0.020070932805538177, + 0.0052459766156971455, + -0.03573640435934067, + 0.02134619653224945, + -0.0030269429553300142, + -0.013035236857831478, + 0.0009193139267154038, + 0.005597399082034826, + 0.0015958927106112242, + 0.006209671031683683, + 0.030374493449926376, + -0.0035269048530608416, + 0.010390511713922024, + 0.004785866476595402, + 0.007622606586664915, + -0.008999313227832317, + 0.003148310352116823, + 0.022201204672455788, + -0.0010008293902501464, + -0.008571810089051723, + -0.006321981083601713, + -0.008129814639687538, + 0.005365532357245684, + -0.026128441095352173, + -0.002793265040963888, + 0.002863911911845207, + 0.02588208205997944, + -0.024940125644207, + 0.011578826233744621, + -0.01579589582979679, + -0.00991953257471323, + 0.005151780787855387, + 0.01673785224556923, + -0.0012607733951881528, + 0.0039018760435283184, + 0.0030975895933806896, + 0.060343220829963684, + 0.01654946245253086, + -0.015593012794852257, + 0.01391198206692934, + -0.022070780396461487, + 0.0025577759370207787, + 0.015520554967224598, + 0.011180305853486061, + 0.04019983112812042, + -0.024780716747045517, + -0.0077820150181651115, + 3.3653454011073336e-5, + 0.004622835665941238, + 0.03933033347129822, + 0.005492334254086018, + 0.01917245052754879, + 0.014911905862390995, + 0.009390587918460369, + 0.0011638604337349534, + 0.018042100593447685, + -0.004543131683021784, + -0.017520401626825333, + 0.01142666395753622, + 0.02280985377728939, + -0.003869269974529743, + -0.029881777241826057, + 0.012397604994475842, + -0.009955761954188347, + 0.00347256101667881, + 0.0005108306067995727, + 0.02720082364976406, + 0.01682480238378048, + 0.03886659815907478, + 0.016766836866736412, + -0.013035236857831478, + 0.005510448943823576, + 0.028925329446792603, + 0.0008454970666207373, + 0.006209671031683683, + 0.005974181927740574, + 0.0005506825982593, + -0.0026320454198867083, + 0.012839599512517452, + -0.03309892490506172, + 0.008426893502473831, + 0.03272214159369469, + -0.019056517630815506, + 0.011180305853486061, + -0.021056363359093666, + -0.006811074446886778, + 0.01142666395753622, + 0.001575061003677547, + -0.0179261676967144, + 0.009955761954188347, + -0.01557852141559124, + -0.006398062687367201, + -0.029229653999209404, + -0.016346579417586327, + -0.008303713984787464, + -0.014339485205709934, + -0.0024527113419026136, + 0.010955685749650002, + 0.010506444610655308, + -0.03883761540055275, + -0.00595969008281827, + 0.008716725744307041, + 0.002014338970184326, + 0.015129280276596546, + -0.0015823068097233772, + 0.01089771930128336, + 0.005673480220139027, + -0.010868735611438751, + -0.008325451985001564, + 0.0007119022193364799, + -0.009926778264343739, + 0.037881165742874146, + 0.05069178342819214, + -0.016361070796847343, + 0.0075718858279287815, + -0.01962169073522091, + -0.0031030240934342146, + 0.012883074581623077, + 0.011687513440847397, + 0.02707039751112461, + -0.012194721959531307, + -0.007448706775903702, + 0.022288154810667038, + -0.0040721530094742775, + -0.001247187377884984, + -0.010361528024077415, + 0.01682480238378048, + 0.011904888786375523, + 0.02551979199051857, + -0.008361680433154106, + -0.0015977041330188513, + -0.007234955206513405, + -0.0070030889473855495, + 0.014440926723182201, + 0.0029418044723570347, + -0.0038765156641602516, + -0.007271184120327234, + 0.01602776162326336, + 0.006698763929307461, + -0.002889272291213274, + 0.0108035234734416, + 0.009419570676982403, + -0.0043692318722605705, + -0.0068038287572562695, + -0.031359925866127014, + -0.025229958817362785, + 0.008484859950840473, + 0.0026247997302562, + -0.027534130960702896, + -0.022027304396033287, + 0.009680421091616154, + -0.017375485971570015, + -0.0358523353934288, + -0.004314888268709183, + 0.022925786674022675, + 0.002499809255823493, + -0.014853938482701778, + -0.01324536558240652, + -0.014911905862390995, + 0.022244678810238838, + 0.01511478889733553, + 0.024867666885256767, + -0.01908550038933754, + 0.00044901465298607945, + -0.016679886728525162, + -0.016013270244002342, + 0.0008024749695323408, + 0.027968879789114, + -0.013375790789723396, + -0.00976737029850483, + 0.0246358010917902, + -0.010600640438497066, + 0.044315457344055176, + 0.004119250923395157, + -0.014969872310757637, + -0.016621919348835945, + -0.001916520413942635, + 0.005517695099115372, + 0.011441156268119812, + 0.019013041630387306, + 0.0028439857997000217, + 0.005673480220139027, + -0.018781175836920738, + -0.0020270191598683596, + 0.019114483147859573, + -0.027621081098914146, + 0.015737930312752724, + -0.01921592466533184, + 0.026505224406719208, + -0.004898176994174719, + 0.003148310352116823, + 0.0062241628766059875, + -0.008079093880951405, + -0.035040803253650665, + 0.0011421230155974627, + -0.03243230655789375, + 0.0209549218416214, + -0.0044851647689938545, + -0.016853787004947662, + -0.042895276099443436, + -0.0014799595810472965, + 0.012658454477787018, + -0.004756883252412081, + -0.03701166808605194, + -0.009578979574143887, + 0.024867666885256767, + -0.010948440060019493, + 0.0038185492157936096, + 0.006702387239784002, + -0.020317289978265762, + -0.011499122716486454, + 0.010694836266338825, + 0.052662648260593414, + -0.02104187197983265, + -0.005024978891015053, + -0.001851308043114841, + -0.021693997085094452, + -0.009876057505607605, + -0.007528410758823156, + 0.0012308843433856964, + 0.014143847860395908, + 0.014390205964446068, + -0.04396766051650047, + -0.012426587752997875, + -0.006720501463860273, + -0.0015297745121642947, + 0.015274196863174438, + -0.03677980229258537, + -0.01575242169201374, + 0.020563649013638496, + 0.013230874203145504, + -0.014926397241652012, + 0.005434367805719376, + -0.02578064054250717, + 0.03773625195026398, + 0.016433527693152428, + -0.0019726755563169718, + 0.00810083094984293, + 0.006582831032574177, + 0.006499504204839468, + 0.009513766504824162, + -0.020969415083527565, + 0.01557852141559124, + -0.01947677507996559, + 0.006571962032467127, + -0.00947753805667162, + 0.017563877627253532, + -0.0008183252066373825, + -0.016520477831363678, + -0.00389463035389781, + 0.01678132824599743, + 0.014665547758340836, + 0.001007169485092163, + 0.009832583367824554, + -0.011252764612436295, + 0.011332468129694462, + -0.0023150406777858734, + -0.001298813964240253, + -0.026664631441235542, + 0.009839829057455063, + 0.006390816532075405, + 0.007039317861199379, + 0.0010461157653480768, + 0.007463198620826006, + 0.03321485593914986, + -0.004919914528727531, + 0.027751505374908447, + 0.00675673084333539, + 0.01296277903020382, + 0.010839752852916718, + 0.01970864087343216, + 0.02138967253267765, + -0.00803561881184578, + 0.009832583367824554, + 0.010455723851919174, + -0.004988749511539936, + -0.0089848218485713, + -0.01200633030384779, + -0.0016420847969129682, + -0.005046716425567865, + 0.014513385482132435, + -0.0001882782089523971, + 0.005278582684695721, + -0.0011674833949655294, + 0.005608267616480589, + -0.008789184503257275, + 0.017679810523986816, + -0.01811455935239792, + -0.005477842874825001, + -0.024259017780423164, + 0.012049805372953415, + 0.01462207268923521, + 0.01859278418123722, + -0.0007436026935465634, + -0.016274120658636093, + -0.00505033927038312, + -0.009948516264557838, + -0.04411257430911064, + 0.004474296234548092, + 0.022693920880556107, + -0.032200440764427185, + 0.01624513790011406, + 0.013252612203359604, + -0.011615055613219738, + 0.0034200288355350494, + -0.03147586062550545, + -0.006148081738501787, + 0.023317061364650726, + -0.004608343821018934, + 0.0244619008153677, + 0.009281900711357594, + -0.0032026541884988546, + 0.02024483121931553, + -0.0022244679275900126, + 0.0038113032933324575, + -0.004865570925176144, + 0.008615284226834774, + 0.025751657783985138, + -0.007753031328320503, + 0.013100449927151203, + 0.012368621304631233, + 0.004579360596835613, + -0.010883226990699768, + 0.008934101089835167, + 0.015129280276596546, + 0.009926778264343739, + -0.02418656088411808, + 0.0004736957489512861, + 0.015346654690802097, + 0.0056879715994000435, + 0.02379528619349003, + 0.011013652198016644, + 0.007115398999303579, + 0.006510372739285231, + -0.015679962933063507, + -0.027881929650902748, + -0.009883304126560688, + -0.025012584403157234, + 0.004959766287356615, + 0.0012499046279117465, + 0.0053908927366137505, + 0.013897489756345749, + 0.016129203140735626, + -0.012759895995259285, + -0.018534816801548004, + -0.025056058540940285, + 0.009129738435149193, + -0.005242353770881891, + 0.012730912305414677, + 0.0008201366872526705, + 0.005256845150142908, + -0.01811455935239792, + -0.0044815419241786, + 0.006137212738394737, + -0.018563801422715187, + 0.009702158160507679, + -0.010129661299288273, + 0.00695599103346467, + -0.028476087376475334, + -0.005887231789529324, + -0.00038606656016781926, + -0.00032447706325910985, + 0.013259857892990112, + 0.008216763846576214, + 0.010049957782030106, + -0.009347112849354744, + 0.008455876260995865, + -0.004358362872153521, + 0.0075429026037454605, + -0.015723437070846558, + 0.006724124308675528, + 0.013143924064934254, + -0.03382350504398346, + 0.022969260811805725, + -0.010622377507388592, + 0.0075139193795621395, + -0.003851155284792185, + 0.017984135076403618, + 0.01624513790011406, + 0.016143696382641792, + -0.009202196262776852, + -0.009963007643818855, + -0.010303561575710773, + 0.016723360866308212, + -0.005456105340272188, + -0.008441384881734848, + 0.008289222605526447, + -0.0009809033945202827, + 0.003898253198713064, + -0.004046792630106211, + 0.006137212738394737, + -0.0071298908442258835, + 0.006716878619045019, + 0.02534589171409607, + 0.015940813347697258, + -0.019360842183232307, + 0.0031664250418543816, + 0.008687742985785007, + 0.0024889404885470867, + 0.003188162576407194, + -0.00936160422861576, + 0.0048510790802538395, + -0.011716497130692005, + 0.006593699567019939, + -0.005655365530401468, + 0.04703988879919052, + -0.019824573770165443, + -0.006398062687367201, + 0.005434367805719376, + -0.00595969008281827, + 0.02396918460726738, + -0.020969415083527565, + 0.03411334007978439, + -0.015230721794068813, + 0.01336129941046238, + -0.024954617023468018, + 0.0074849361553788185, + -0.005231484770774841, + -0.025186482816934586, + -0.006126344203948975, + -0.011194798164069653, + -0.023737318813800812, + 0.025041567161679268, + 0.007350888103246689, + -0.024447409436106682, + 0.015520554967224598, + -0.009100754745304585, + 0.0047242771834135056, + 0.020259322598576546, + -0.006713255774229765, + 0.006213293876498938, + 0.022346120327711105, + -0.0024436539970338345, + 0.015303179621696472, + -0.026751581579446793, + 0.013788802549242973, + 0.00023345138470176607, + -0.010528181679546833, + -0.02033178135752678, + 0.015564030036330223, + 0.005441613495349884, + 0.005010487046092749, + 0.012701929546892643, + -0.018897108733654022, + -0.013969948515295982, + -0.00936884991824627, + -0.014230797998607159, + -0.0211722981184721, + -0.04077949747443199, + 0.01859278418123722, + -0.013607657514512539, + -0.01198459230363369, + 0.018969567492604256, + 0.010491953231394291, + 0.018216000869870186, + -0.025186482816934586, + -0.0018105502240359783, + -0.008042864501476288, + -0.0027660932391881943, + 0.005101060029119253, + 0.015201738104224205, + -0.0014437304344028234, + 0.015143771655857563, + 0.0023494584020227194, + 0.007492181845009327, + 0.030635343864560127, + -0.02166501246392727, + 0.02366486005485058, + 0.02702692337334156, + 0.02449088543653488, + 0.009926778264343739, + -0.017563877627253532, + -0.007839981466531754, + -0.00801388081163168, + 0.021273739635944366, + -0.009586225263774395, + -0.0010461157653480768, + -0.015679962933063507, + -0.010390511713922024, + -0.011216535232961178, + 0.01566547155380249, + -0.027794979512691498, + 0.006405308376997709, + 0.0124700628221035, + 0.003977957181632519, + -0.02508504129946232, + -0.000840515538584441, + 0.013680115342140198, + -0.0007467727409675717, + -0.011564334854483604, + -0.013151170685887337, + 0.004575737752020359, + 0.0016620107926428318, + -0.01540462113916874, + -0.0004408631066326052, + -0.015143771655857563, + -0.0030559261795133352, + -0.012035313062369823, + 0.0011058938689529896, + -0.024128593504428864, + 0.007695064879953861, + -0.00204151077196002, + -0.0005891760811209679, + 0.013056974858045578, + 0.007434215396642685, + -0.016433527693152428, + 0.00012816050730179995, + 0.0010397756705060601, + 0.004963389132171869, + 0.011484630405902863, + -0.001018943963572383, + 0.021375181153416634, + 0.002496186411008239, + -0.006611814256757498, + -0.008354434743523598, + -0.014267027378082275, + -0.0015669093700125813, + -0.007195102982223034, + -0.007868965156376362, + 0.001974486978724599, + -0.018042100593447685, + 0.07274807244539261, + 0.0041011362336575985, + 0.009042788296937943, + 0.026171915233135223, + 0.02928761951625347, + -0.01152085978537798, + -0.01104988157749176, + 0.01009343285113573, + 0.017100144177675247, + -0.006068377289921045, + -0.001228167093358934, + 0.008448630571365356, + 0.015911828726530075, + 0.007039317861199379, + -0.033446721732616425, + -0.006778468377888203, + 0.01238311268389225, + 0.003840286750346422, + -0.015593012794852257, + 0.025403859093785286, + 0.021911371499300003, + -0.02760658971965313, + -0.028418121859431267, + 0.023012736812233925, + -0.006778468377888203, + 0.02928761951625347, + -0.0008948592585511506, + -0.020882464945316315, + 0.04150407761335373, + 0.010042712092399597, + 0.010839752852916718, + -0.010209365747869015, + 0.006923384498804808, + 0.002472637454047799, + 0.007550148293375969, + 0.016969719901680946, + 0.008361680433154106, + 0.011658530682325363, + 0.007426969241350889, + -0.0018694225000217557, + -0.0038439095951616764, + -0.015694454312324524, + 0.014955380000174046, + 0.00727843027561903, + -0.02618640661239624, + 0.015013347379863262, + 0.0016448020469397306, + -0.009868811815977097, + -0.0072458237409591675, + 0.00849935133010149, + -0.007369002792984247, + -0.04738768935203552, + -0.003188162576407194, + 0.005144535098224878, + 0.007564640138298273, + -0.0021139690652489662, + 0.0034562579821795225, + -0.015911828726530075, + 0.003351193619892001, + 0.012730912305414677, + -0.00936884991824627, + 0.0041301194578409195, + -0.016520477831363678, + -0.004597475286573172, + -0.03709861636161804, + 0.009847074747085571, + -0.017766760662198067, + -0.005742315202951431, + 0.002566833049058914, + -0.005966935772448778, + -0.0007449612603522837, + 0.0008907834417186677, + 0.010180382058024406, + -0.017027685418725014, + -0.0007626229780726135, + 0.01979559101164341, + 0.01717260293662548, + 0.018360918387770653, + 0.008332697674632072, + -0.0015986098442226648, + 0.012578750029206276, + 0.010665852576494217, + -0.008934101089835167, + -0.014882922172546387, + 0.005756807047873735, + -0.01089771930128336, + 0.015766913071274757, + -0.009376095607876778, + 0.005749561358243227, + -0.012201967649161816, + -0.0106296231970191, + -0.018071085214614868, + -0.004894554149359465, + -0.000721412361599505, + 0.0002902858250308782, + 0.0024798831436783075, + -0.0038765156641602516, + -0.007767523173242807, + 0.015853863209486008, + -0.003566756844520569, + 0.007463198620826006, + 0.008970329537987709, + -0.003923613578081131, + 0.009412324987351894, + 0.009890549816191196, + -0.009897795505821705, + 0.004858324769884348, + 0.014759743586182594, + -0.04275036230683327, + -0.00719148013740778, + -0.02685302309691906, + -0.03275112435221672, + -0.0021864273585379124, + -0.00583651103079319, + -0.02063610590994358, + -0.007115398999303579, + 0.006713255774229765, + -0.007097284309566021, + -0.0041591026820242405, + -0.01295553334057331, + -0.0035196589305996895, + 0.00994127057492733, + 8.072300988715142e-5, + -0.00867325160652399, + -0.0003380629641469568, + 0.017100144177675247, + -0.0024219166953116655, + -0.0060140336863696575, + 0.008521088398993015, + 4.263290065864567e-6, + 0.013216382823884487, + 0.009028296917676926, + 0.03785218298435211, + 0.0006575584993697703, + 0.01602776162326336, + -0.004409083630889654, + -0.010383266024291515, + 0.0012933795806020498, + 0.01938982494175434, + -0.01925940066576004, + 0.028389137238264084, + -0.004677179269492626, + 0.01397719420492649, + 0.01770879328250885, + 0.00976737029850483, + -0.008028373122215271, + 0.010528181679546833, + -0.020070932805538177, + 0.024244526401162148, + -0.021447638049721718, + 0.015477079898118973, + -0.01326710358262062, + -0.010731064714491367, + -0.009419570676982403, + -0.004919914528727531, + 0.006006787996739149, + -0.01031805295497179, + 0.03240332379937172, + -0.0346350371837616, + 0.003412783145904541, + -0.01598428748548031, + 0.006003165151923895, + -0.014477156102657318, + 0.005311188753694296, + -0.007419723551720381, + 0.018230492249131203, + 0.006818320136517286, + 0.02233162894845009, + 0.009934024885296822, + -0.007169742602854967, + -0.012817862443625927, + -0.01009343285113573, + 0.003541396465152502, + -0.027287771925330162, + 0.00929639209061861, + -0.01198459230363369, + -0.0008699517347849905, + 0.007948668673634529, + -0.016477003693580627, + 0.010347036644816399, + -0.02943253703415394, + -0.005720578134059906, + 0.009716649539768696, + -0.012723666615784168, + 0.0005438896478153765, + -0.0029707876965403557, + 0.012433833442628384, + -0.009028296917676926, + 0.009223933331668377, + -0.006427045911550522, + -0.010064449161291122, + 0.007948668673634529, + 0.01033979095518589, + 0.0015986098442226648, + -0.00849935133010149, + -0.017071161419153214, + 0.01805659383535385, + 0.016882769763469696, + 0.016621919348835945, + -0.004376477561891079, + -0.011999084614217281, + 0.02218671329319477, + 0.009984745644032955, + 0.013868506997823715, + 0.0031591791193932295, + 0.008847150951623917, + 0.004992372822016478, + -0.017549386247992516, + -0.00647052051499486, + 0.015158263966441154, + -0.03214247524738312, + -0.019636182114481926, + 0.004220692440867424, + 0.022838836535811424, + -0.0035106015857309103, + -0.003008828265592456, + -0.007140759378671646, + 0.009223933331668377, + -0.0009392399224452674, + -0.010513690300285816, + 0.024954617023468018, + -0.004090267699211836, + -0.0023240980226546526, + -0.013948210515081882, + 0.011107848025858402, + 0.004358362872153521, + 0.007890702225267887, + -0.011948363855481148, + 0.01397719420492649, + -0.005173518322408199, + 0.01154259778559208, + -0.012825108133256435, + -0.0034580694045871496, + 0.02312866970896721, + -0.014542368240654469, + 0.02091144770383835, + 0.0033602507319301367, + -0.01265120878815651, + 0.004275036044418812, + 0.008557317778468132, + -0.017158111557364464, + -0.003224391723051667, + -0.02379528619349003, + -0.0027334869373589754, + 0.003280546749010682, + -0.009825336746871471, + -0.003019697032868862, + 0.002269754419103265, + -0.002166501246392727, + -2.9351247576414607e-5, + -0.032200440764427185, + -0.0059560672380030155, + 0.0010153211187571287, + 0.007448706775903702, + 0.010999160818755627, + 0.002101288875564933, + 0.011339714750647545, + 0.00810083094984293, + -0.006423423066735268, + -0.012180229648947716, + 0.006296620704233646, + 0.004184463061392307, + -0.010383266024291515, + -0.002820436842739582, + 0.014853938482701778, + -0.0051771411672234535, + -0.032113492488861084, + 0.009042788296937943, + 0.010673098266124725, + -0.015868354588747025, + 0.02973686158657074, + -0.006318358238786459, + 0.015520554967224598, + 0.01682480238378048, + 0.011651284992694855, + 0.005253222305327654, + 0.006814697291702032, + -0.005282205529510975, + 0.0006974105490371585, + 0.01511478889733553, + -0.0057169548235833645, + -0.006017656531184912, + 0.01820150949060917, + -0.015361147001385689, + 0.0003228920395486057, + -0.02267942950129509, + 0.0044670505449175835, + -0.004304019268602133, + 0.015187246724963188, + 0.020578140392899513, + 0.006503127049654722, + -0.011477384716272354, + 0.0007748503121547401, + -0.03214247524738312, + 0.014426435343921185, + 0.02543284185230732, + 0.0037497137673199177, + -0.0020070932805538177, + 0.006999465636909008, + -0.009006558917462826, + 0.01557852141559124, + -0.02231713756918907, + 0.0005167177878320217, + -0.008361680433154106, + -0.001103176735341549, + 0.008926855400204659, + 0.03582335263490677, + 0.007227709516882896, + -0.011557089164853096, + 0.015129280276596546, + 0.004640950355678797, + -0.009252917021512985, + 0.013571428135037422, + -0.0061118523590266705, + -0.01102814357727766, + -0.005256845150142908, + 0.01770879328250885, + 0.018984058871865273, + 0.0036917473189532757, + -0.003702616086229682, + -0.0033910456113517284, + 0.0179261676967144, + 0.011165814474225044, + -0.0019581839442253113, + 0.018085576593875885, + 0.012571504339575768, + 0.018389901146292686, + -0.0035269048530608416, + 0.021491114050149918, + -0.03417130559682846, + 0.021201280876994133, + 0.0027117496356368065, + -0.012948287650942802, + 0.00028100211056880653, + -0.01660742796957493, + 0.004593852441757917, + -0.017230568453669548, + -0.01191938016563654, + -0.017288535833358765, + -0.00369537016376853, + -0.020172374323010445, + 0.002664651721715927, + -0.007260315585881472, + 0.0003620647476054728, + -0.010049957782030106, + 0.029171686619520187, + -0.00544885965064168, + -0.01996949128806591, + -0.008803675882518291, + 0.008006635122001171, + 0.00512642040848732, + 0.018404392525553703, + 0.012977270409464836, + -0.006927007809281349, + -0.014274273067712784, + 0.00441632978618145, + 0.012209213338792324, + 0.03066432662308216, + -0.01223095040768385, + 0.004963389132171869, + -0.010245595127344131, + 0.006506749894469976, + -0.017389977350831032, + 0.0088326595723629, + 0.010745557025074959, + -0.017114635556936264, + -0.005173518322408199, + 0.008115322329103947, + -0.0248097013682127, + -0.0014727136585861444, + 0.003439954947680235, + -0.015506062656641006, + -0.026418274268507957, + -0.0016375562408939004, + -0.01000648271292448, + 0.013723590411245823, + -0.024259017780423164, + 0.03222942352294922, + -0.01468728482723236, + 0.007053809706121683, + 0.04153306409716606, + -0.0014355788007378578, + -0.00994127057492733, + -0.013462740927934647, + -0.0027497902046889067, + 0.0012127697700634599, + 0.003217145800590515, + 0.016013270244002342, + -0.008506597019731998, + 0.0015497006243094802, + -0.011455647647380829, + 0.015810387209057808, + 0.004271413199603558, + -0.009216687642037868, + -0.017563877627253532, + 0.024302493780851364, + -0.022795362398028374, + 0.004796735476702452, + 0.008383418433368206, + 0.008202272467315197, + -0.008260238915681839, + 0.001880291267298162, + 0.027447180822491646, + -0.010760048404335976, + -0.01734650321304798, + -0.014281518757343292, + -0.010752802714705467, + 0.014339485205709934, + 0.02885287068784237, + -0.016839293763041496, + -0.0020632483065128326, + 0.015766913071274757, + -0.003253374947234988, + 0.003566756844520569, + 0.020737547427415848, + -0.008557317778468132, + -0.007622606586664915, + -0.0017643581377342343, + 0.011796201579272747, + 0.008622530847787857, + 0.01511478889733553, + -0.02338952012360096, + -0.0019889785908162594, + -0.002329532289877534, + 0.010332545265555382, + -0.012274425476789474, + 0.04451834037899971, + 0.012194721959531307, + -0.0068907784298062325, + -0.005412630271166563, + 0.01129623968154192, + -0.03431622311472893, + -0.02498359978199005, + 0.008202272467315197, + -0.01278163306415081, + -0.013498970307409763, + 0.01223095040768385, + 0.005753184203058481, + 0.008752955123782158, + 0.022215696051716805, + -0.022621462121605873, + -0.013709099031984806, + 0.00544885965064168, + 0.005322057753801346, + 0.013165662065148354, + 0.0018087388016283512, + 0.006517618428915739, + -0.013585919514298439, + 0.006651666481047869, + -0.0011086110025644302, + 0.01549157127737999, + -0.0108035234734416, + 0.008463121950626373, + 0.01549157127737999, + -0.02991076000034809, + -0.017563877627253532, + 0.0036446494050323963, + -0.008006635122001171, + 0.01886812597513199, + -0.022302646189928055, + -0.0006634457386098802, + 0.004162725992500782, + 0.013962702825665474, + 0.006412554066628218, + 0.006318358238786459, + 0.0003641026560217142, + 0.01637556217610836, + 0.0071298908442258835, + -0.010846998542547226, + 0.017563877627253532, + -0.032867055386304855, + 0.004785866476595402, + 0.03214247524738312, + -0.0018060215516015887, + 0.004390969406813383, + 0.023940201848745346, + -0.006655289325863123, + -0.0002712655405048281, + -0.0068038287572562695, + -0.0071298908442258835, + -0.012368621304631233, + 0.00920944195240736, + -0.0037786972243338823, + -0.002432785462588072, + 0.031012125313282013, + -0.010796277783811092, + -0.012600488029420376, + 0.0026628402993083, + 0.005318434908986092, + 0.004557623062282801, + 0.01962169073522091, + 0.017737776041030884, + 0.024244526401162148, + -0.002200918970629573, + -0.0002726241364143789, + -0.0039054991211742163, + 0.02849057875573635, + 0.00841240119189024, + 0.0015913640381768346, + -0.0014328616671264172, + 0.006731370463967323, + 0.003641026560217142, + -0.014745251275599003, + 0.00967317447066307, + 0.01620166189968586, + 0.011615055613219738, + -0.006818320136517286, + 0.02018686570227146, + 0.014629318378865719, + 0.008325451985001564, + 0.013933719135820866, + 0.007861718535423279, + -0.01549157127737999, + 0.0044380673207342625, + -0.0061698188073933125, + 0.02108534798026085, + 0.004354740027338266, + -0.01583937183022499, + 0.012455571442842484, + -0.009709403850138187, + -0.007285675965249538, + -0.020302798599004745, + -0.005466973874717951, + 0.016969719901680946, + 0.019071009010076523, + -0.020838988944888115, + 0.006553847808390856, + -0.0009754690108820796, + 0.017332009971141815, + -0.004959766287356615, + 0.01659293659031391, + 0.010781785473227501, + -0.009050033986568451, + -0.008050110191106796, + 0.011883150786161423, + 0.019462283700704575, + 0.01225268840789795, + -0.0006018562708050013, + 0.0214766226708889, + -0.02231713756918907, + 0.022650444880127907, + 0.01000648271292448, + 0.032287392765283585, + -0.01280337106436491, + -0.0012562447227537632, + -0.020476698875427246, + -0.0031410646624863148, + -0.01278163306415081, + 0.008419646881520748, + -0.007673327345401049, + -0.03191060945391655, + 0.0034870526287704706, + 0.014368468895554543, + 0.030954159796237946, + 0.0361131876707077, + -0.00019710905326064676, + 0.011252764612436295, + -0.0038076804485172033, + 0.0005058490787632763, + 0.01615818776190281, + -0.015317671932280064, + -0.0026700859889388084, + -0.003461692249402404, + 0.004655441734939814, + -0.011310731060802937, + 0.005322057753801346, + -0.010455723851919174, + 0.0037714513018727303, + 0.008905117399990559, + 0.0025106780230998993, + -0.01575242169201374, + -0.0177957434207201, + 0.0075139193795621395, + 0.00584738003090024, + -0.0025414726696908474, + -0.0013821409083902836, + -0.024911142885684967, + -0.018563801422715187, + 0.006908893119543791, + -0.01136145181953907, + 0.011390435509383678, + -0.01142666395753622, + -0.024447409436106682, + 0.0008636116399429739, + -0.011390435509383678, + 0.01102814357727766, + 0.010296315886080265, + -0.010289070196449757, + 0.015955304726958275, + -0.008890626020729542, + 0.023186637088656425, + -0.013223628513514996, + -0.018129050731658936, + -0.003724353387951851, + 1.627479946364474e-6, + 0.014723514206707478, + -0.0035812484566122293, + -0.0005466068396344781, + -0.02454885095357895, + -0.01271642092615366, + -0.025795133784413338, + 0.005948821548372507, + 5.93817894696258e-5, + -0.0067639765329658985, + -0.011499122716486454, + -0.0005135477404110134, + 0.014426435343921185, + 0.0033203987404704094, + -0.01511478889733553, + -0.006927007809281349, + 0.005090191029012203, + -0.011687513440847397, + -0.008723972365260124, + 0.006608191411942244, + 0.016882769763469696, + -0.0018313819309696555, + 0.017476927489042282, + 0.0014564106240868568, + 0.02405613474547863, + -0.010448478162288666, + 0.019679658114910126, + 0.009289146400988102, + -0.0021864273585379124, + -0.004195332061499357, + 0.0064958808943629265, + -0.004249675665050745, + 0.010970177128911018, + 0.001458222046494484, + 0.01669437810778618, + -0.003930859267711639, + 0.023114178329706192, + -0.0011692948173731565, + -0.016969719901680946, + -0.016984211280941963, + 0.010977422818541527, + 0.0022190336603671312, + 0.007042940706014633, + 0.0022516397293657064, + -0.0027497902046889067, + -0.014122110791504383, + 0.012122263200581074, + -0.011281747370958328, + -0.017114635556936264, + -0.00576042989268899, + 0.015911828726530075, + -0.003209899878129363, + -0.011955609545111656, + 0.005485088564455509, + -0.013230874203145504, + -0.0038439095951616764, + -0.009760124608874321, + 0.030867209658026695, + -0.034779954701662064, + 0.002338589634746313, + 0.003054114757105708, + -0.004923537373542786, + 0.010571656748652458, + -0.009339867159724236, + 0.035446569323539734, + 0.010680343955755234, + -0.021853404119610786, + -0.005035847425460815, + -0.01113683171570301, + 0.03350469097495079, + -0.01540462113916874, + -0.01598428748548031, + 0.014680039137601852, + -0.0017734153661876917, + -0.027099382132291794, + 0.0007467727409675717, + 0.007426969241350889, + -0.006064754445105791, + -0.027331247925758362, + -0.0028711576014757156, + 0.0041409884579479694, + 0.013122186996042728, + -0.004579360596835613, + 0.005691594444215298, + 0.022969260811805725, + -0.012723666615784168, + 0.01073831133544445, + -0.013658378273248672, + -0.0027950764633715153, + -0.02431698516011238, + -1.2404228073137347e-5, + -0.005097437184303999, + 0.006021279841661453, + -0.006336472928524017, + -0.0029997711535543203, + -0.011093356646597385, + -0.0011040824465453625, + -0.00389463035389781, + -0.02033178135752678, + -0.013839523307979107, + -0.013346807099878788, + -0.004709785338491201, + 0.01669437810778618, + -0.027708031237125397, + 0.002787830773741007, + 0.0018947829958051443, + -0.014853938482701778, + 0.0016493306029587984, + 0.01566547155380249, + 0.0004182198899798095, + -0.01837540976703167, + -0.011955609545111656, + 0.021505605429410934, + 0.00029707877547480166, + -0.00027534129912965, + -0.004854701925069094, + -0.0005651742685586214, + -0.005796659272164106, + -0.016665395349264145, + -0.0016194416675716639, + -0.01820150949060917, + -0.022664936259388924, + -0.005992296151816845, + 0.021867895498871803, + -0.013368545100092888, + -0.001104988157749176, + -0.002072305651381612, + -0.008209518156945705, + -0.026838531717658043, + 0.012991761788725853, + -0.0015741551760584116, + -0.03333079069852829, + -0.005166272632777691, + 0.002818625420331955, + 0.0016275931848213077, + -0.01815803535282612, + 0.01957821659743786, + -0.010115169920027256, + 0.009354358538985252, + 0.0030939667485654354, + -0.0028331170324236155, + -0.023853251710534096, + 0.0009002936421893537, + -0.0014962626155465841, + -0.010520935989916325, + 0.029548469930887222, + -0.005941575393080711, + -0.024447409436106682, + -0.028215238824486732, + 0.010332545265555382, + 0.009310883469879627, + -0.014969872310757637, + -0.023360535502433777, + 0.001623064512386918, + -0.01389024406671524, + 0.02778048813343048, + -0.012129508890211582, + -0.006974105257540941, + 0.011745480820536613, + -0.01975211501121521, + 0.012665700167417526, + 0.016969719901680946, + -0.009050033986568451, + 0.0078109982423484325, + 0.007977652363479137, + 0.014281518757343292, + -0.005430744960904121, + 0.014056898653507233, + 0.019404316321015358, + 0.009810845367610455, + 0.005546678323298693, + 0.005785790272057056, + -0.008245747536420822, + -0.012339637614786625, + -0.004934405907988548, + 0.018578292801976204, + 0.007528410758823156, + 0.012346884235739708, + -0.012564258649945259, + -0.01154259778559208, + 0.0034001029562205076, + -0.001849496504291892, + -0.005068453960120678, + -0.006662535015493631, + 0.012100526131689548, + 0.01899855025112629, + 0.0035740025341510773, + -0.002037887927144766, + -0.02423003502190113, + -0.001327797188423574, + -0.014969872310757637, + -0.005822019651532173, + 0.004749637562781572, + -0.008535580709576607, + 0.00047052567242644727, + 0.011788954958319664, + 0.006075623445212841, + -0.012926549650728703, + -0.023592403158545494, + 0.005075699649751186, + 0.029635420069098473, + 0.009752878919243813, + 0.02054915577173233, + -0.021505605429410934, + 0.00936160422861576, + -0.03156280890107155, + -0.00453950883820653, + -0.011020897887647152, + 0.009963007643818855, + -0.008129814639687538, + -0.011796201579272747, + -0.0002839457301888615, + -0.0038366636727005243, + 0.009064525365829468, + 0.025983523577451706, + -0.01104988157749176, + -0.009050033986568451, + -0.024476392194628716, + -3.107779048150405e-5, + -0.011339714750647545, + -0.0018585538491606712, + 0.007564640138298273, + 0.004177217371761799, + 0.0061698188073933125, + -0.006398062687367201, + -0.009071771055459976, + -0.015621996484696865, + -0.004970635287463665, + 0.02680954895913601, + -0.020259322598576546, + -0.012455571442842484, + -0.0038113032933324575, + 0.016795819625258446, + 0.0009664117824286222, + 0.006658912170678377, + -0.004673556424677372, + -0.005492334254086018, + 0.006564716342836618, + -0.012491799890995026, + -0.002175558591261506, + 0.014455419033765793, + -0.01757836900651455, + -0.01607123762369156, + 0.0176653191447258, + 0.01957821659743786, + 0.0020650597289204597, + 0.012672945857048035, + -0.028505070134997368, + -0.0007010334520600736, + 0.013259857892990112, + 0.013441002927720547, + 0.0008848962606862187, + 0.004506902303546667, + -0.011093356646597385, + 0.003796811681240797, + -0.020882464945316315, + 0.0104991989210248, + 0.01524521317332983, + 0.02743268944323063, + 0.022491037845611572, + -0.027925405651330948, + -0.0011484631104394794, + -0.01096293143928051, + -0.019375333562493324, + 0.008079093880951405, + -0.021679505705833435, + 0.024201052263379097, + 0.008383418433368206, + -0.016230644658207893, + -0.007137136533856392, + 0.019404316321015358, + -0.014491647481918335, + -0.0348089374601841, + -0.00715525122359395, + 0.003887384431436658, + -0.01770879328250885, + -0.0043112654238939285, + -0.0007553771138191223, + 0.003050491912290454, + -0.025287924334406853, + -0.01324536558240652, + 0.011375943198800087, + 0.02209976315498352, + -0.0214331466704607, + -0.0003104382776655257, + 0.010636869817972183, + 0.002664651721715927, + -0.0019038402242586017, + -0.005851002875715494, + 0.004463427700102329, + -0.022925786674022675, + -0.012100526131689548, + 0.03767828270792961, + -0.01486843079328537, + -0.01152085978537798, + 0.013716344721615314, + 0.02578064054250717, + 0.003436331870034337, + 0.0008925949223339558, + 0.007847227156162262, + 0.008137060329318047, + -0.00584738003090024, + 0.031881626695394516, + 0.009151475504040718, + 0.000438372342614457, + 0.015448096208274364, + 0.01908550038933754, + 0.009376095607876778, + -0.011470139026641846, + 0.0013441003393381834, + -0.007832735776901245, + 0.012636716477572918, + -0.03591030463576317, + 0.006640797480940819, + -0.015621996484696865, + 0.022998245432972908, + -0.012796125374734402, + 0.010571656748652458, + 0.008687742985785007, + 0.011194798164069653, + -0.016534969210624695, + 0.016404544934630394, + -0.006231408566236496, + -0.003461692249402404, + 0.015650980174541473, + -0.0069922199472785, + -0.02338952012360096, + 0.013969948515295982, + 0.007890702225267887, + 0.017100144177675247, + 0.023679353296756744, + -0.0013187399599701166, + 0.010904964990913868, + -0.017462436109781265, + -0.011462893337011337, + -0.01611471176147461, + 0.010948440060019493, + -0.0052495994605124, + 0.006988597102463245, + -0.02267942950129509, + -0.021650521084666252, + -0.0030070168431848288, + -0.017056670039892197, + -0.029302110895514488, + -0.0021864273585379124, + 0.003948973957449198, + 0.014839447103440762, + 0.007329151034355164, + 0.011788954958319664, + -0.0015705323312431574, + -0.009991991333663464, + -0.00210310029797256, + -0.013288840651512146, + -0.002653782954439521, + -0.021534588187932968, + 0.009325374849140644, + -0.006553847808390856, + 0.015056821517646313, + 0.025867590680718422, + 0.010665852576494217, + 0.009267408400774002, + 0.0020505681168287992, + -0.00834718905389309, + -0.00727843027561903, + -0.014498893171548843, + -0.014564106240868568, + 0.0052459766156971455, + -0.016679886728525162, + 0.023534435778856277, + -0.02924414537847042, + 0.029084736481308937, + -0.002787830773741007, + 0.0074849361553788185, + -0.01620166189968586, + -0.00452863983809948, + 0.01455686055123806, + 0.006727747619152069, + 0.016636410728096962, + -0.011912134476006031, + 0.0026175538077950478, + 0.012680191546678543, + 0.00584738003090024, + -0.017998626455664635, + 0.011332468129694462, + -0.016390053555369377, + 0.0034888642840087414, + -0.004974258132278919, + 0.011151323094964027, + 0.016752345487475395, + -0.020491190254688263, + 0.014955380000174046, + 0.002735298592597246, + 0.009781862609088421, + 0.002755224471911788, + 0.004630081355571747, + -0.018071085214614868, + 0.020027456805109978, + -0.027968879789114, + -0.002979845041409135, + 0.001317834248766303, + -0.018143542110919952, + -0.02188238874077797, + 0.015143771655857563, + 0.010368773713707924, + -0.015810387209057808, + 0.0038439095951616764, + 0.02667912282049656, + 0.02343299426138401, + -0.015940813347697258, + 0.01360041182488203, + 0.01944779045879841, + -0.005068453960120678, + -0.012738157995045185, + 0.007010334637016058, + -0.036634884774684906, + 0.02188238874077797, + -0.0035576994996517897, + -0.003083097981289029, + -0.019375333562493324, + 0.009448554366827011, + -0.020737547427415848, + 0.005945198703557253, + 0.032287392765283585, + -0.013687361031770706, + -0.004843833390623331, + 0.012738157995045185, + -0.0034816183615475893, + 0.012194721959531307, + -0.0011502745328471065, + 0.0024237281177192926, + 0.005006864201277494, + 0.0034580694045871496, + -0.01360041182488203, + -0.017360994592308998, + -0.03364960476756096, + -0.01908550038933754, + 0.004619212821125984, + -0.008716725744307041, + -0.009680421091616154, + 0.00017808876873459667, + -0.016491495072841644, + 0.010303561575710773, + -0.007434215396642685, + 0.02459232695400715, + -0.004698916804045439, + 0.0038004345260560513, + 0.012216459028422832, + 0.00543799065053463, + 0.016940735280513763, + 0.021636029705405235, + -0.0209549218416214, + -0.00048682879423722625, + 0.0003194955352228135, + 0.0006557470769621432, + 0.017230568453669548, + 0.0006616343162022531, + -0.005416253115981817, + -0.011962855234742165, + -0.002889272291213274, + -0.001248998916707933, + 0.0039163678884506226, + 0.010520935989916325, + -0.00923117995262146, + 0.01891160011291504, + 0.03666386753320694, + 0.024085119366645813, + -0.006238654255867004, + 0.016303103417158127, + 0.006716878619045019, + -0.014607581309974194, + 0.004919914528727531, + 0.003206277033314109, + -0.021331705152988434, + 0.015636488795280457, + -0.019853556528687477, + 0.026041490957140923, + 0.006854549515992403, + 0.024737242609262466, + -0.00827473122626543, + 0.01660742796957493, + 0.002398367738351226, + 0.0009981122566387057, + -0.01470902282744646, + 0.021186789497733116, + -0.030084660276770592, + 0.011122339405119419, + 0.017360994592308998, + -0.00960796233266592, + -0.00503947027027607, + -0.01686827838420868, + -0.003735222155228257, + -0.007890702225267887, + -0.006245899945497513, + 0.007289298810064793, + 0.0004945274558849633, + -0.019679658114910126, + 0.005434367805719376, + 0.004785866476595402, + 0.004622835665941238, + 0.017114635556936264, + 0.00473876902833581, + -0.013854015618562698, + 0.001803304417990148, + -0.001604044227860868, + 0.016433527693152428, + -0.004630081355571747, + 0.0020560026168823242, + 0.0021230264101177454, + -0.009665928781032562, + -0.028476087376475334, + -0.018259476870298386, + 0.020650597289204597, + -0.0017109201289713383, + 0.0018350048922002316, + 0.011796201579272747, + -0.012723666615784168, + -0.021418655291199684, + -0.017462436109781265, + -0.0359392873942852, + 0.002311417832970619, + -0.0033874227665364742, + 0.01579589582979679, + -0.015998778864741325, + 0.009883304126560688, + 0.011267255991697311, + 0.019288383424282074, + 0.004843833390623331, + -0.0015986098442226648, + 0.004445313010364771, + -0.016042254865169525, + 0.000377915013814345, + 0.0071878572925925255, + -0.004829341545701027, + -0.012614979408681393, + 0.0076008690521121025, + 0.0038366636727005243, + 0.008723972365260124, + -0.002950861817225814, + 0.0039018760435283184, + -0.006778468377888203, + 0.016216153278946877, + 0.015027838759124279, + 0.018346425145864487, + -0.017737776041030884, + 0.031215008348226547, + -0.020737547427415848, + 0.016853787004947662, + 0.0006910704541951418, + 0.022215696051716805, + -0.005213370081037283, + -0.00923117995262146, + -0.013962702825665474, + -0.0003142876084893942, + 0.007905193604528904, + 0.005756807047873735, + -0.0014075012877583504, + -0.005698840599507093, + -0.015766913071274757, + 0.015462588518857956, + -0.024070626124739647, + -0.0009252011077478528, + 3.271942478022538e-5, + -0.005774921737611294, + 0.019099991768598557, + -0.010890473611652851, + 0.019027533009648323, + -0.0029019524808973074, + 0.007868965156376362, + -0.014766989275813103, + 0.0060828691348433495, + 0.0030994012486189604, + 0.009006558917462826, + -0.0018621766939759254, + -0.00018578745948616415, + -0.007796506397426128, + -0.015520554967224598, + -0.010115169920027256, + -0.02738921344280243, + -0.0006670686416327953, + -0.00025564173120073974, + 0.002327720867469907, + 0.01016589067876339, + 0.01846235990524292, + -0.011796201579272747, + -0.016129203140735626, + -0.01215849258005619, + -0.01873769983649254, + -0.013919227756559849, + -0.0017915299395099282, + -0.01397719420492649, + 0.019911523908376694, + -0.001408406998962164, + -0.023722827434539795, + -0.01007894054055214, + -0.011404926888644695, + -0.016665395349264145, + 0.016940735280513763, + 0.0004635062941815704, + -0.026737090200185776, + 0.011491877026855946, + -0.008644267916679382, + -0.016969719901680946, + -0.02454885095357895, + 0.013281594961881638, + -0.009564487263560295, + 0.018984058871865273, + -0.03147586062550545, + -0.01194111816585064, + 0.0010850621620193124, + -0.012107771821320057, + -0.02209976315498352, + 0.0009383342112414539, + 0.004785866476595402, + 0.021230263635516167, + -0.011970100924372673, + 0.036953702569007874, + -0.008600792847573757, + 0.011339714750647545, + -0.020215848460793495, + 0.006064754445105791, + -0.005753184203058481, + 0.02276637777686119, + -0.009586225263774395, + -0.0013522518565878272, + 0.005539432168006897, + 0.009557241573929787, + -0.001594081288203597, + 0.009281900711357594, + 0.0012879451969638467, + -0.021940354257822037, + 0.014955380000174046, + 0.0019002172630280256, + 0.0014699965249747038, + -0.011948363855481148, + -0.014680039137601852, + 0.015071313828229904, + -0.016940735280513763, + 0.008847150951623917, + -0.016187170520424843, + -0.003731599310413003, + 0.003760582534596324, + 0.011817938648164272, + 0.0007436026935465634, + 0.02108534798026085, + 0.005691594444215298, + 0.016563953831791878, + -0.021288231015205383, + -0.009593470953404903, + -0.0018277590861544013, + -0.0044380673207342625, + -0.028968803584575653, + -0.009876057505607605, + 0.018940582871437073, + -0.022737395018339157, + -0.005604644771665335, + 0.006151704583317041, + 0.023404011502861977, + -0.01695522852241993, + 0.022491037845611572, + 0.017100144177675247, + 0.010151399299502373, + -0.00029821094358339906, + -0.03272214159369469, + -0.005872740410268307, + -0.000941957114264369, + 0.0141583401709795, + -0.008767446503043175, + -0.001068759011104703, + 0.03234535828232765, + 0.02885287068784237, + 0.0026157423853874207, + -0.0007857190212234855, + 0.01420181430876255, + -0.019781099632382393, + 0.005793035961687565, + 0.008760200813412666, + -0.014042406342923641, + -0.0017697925213724375, + 0.01367286965250969, + -0.0009953950066119432, + -0.009977499023079872, + -0.013846768997609615, + 0.005343795288354158, + -0.003724353387951851, + -0.0037080503534525633, + 0.008999313227832317, + -0.012593241408467293, + -0.013143924064934254, + -0.013564182445406914, + -0.018926091492176056, + 0.010600640438497066, + 0.0066770268604159355, + 0.0423445962369442, + 0.025809625163674355, + 0.003988826181739569, + -0.0019962245132774115, + 0.009506520815193653, + -0.049416519701480865, + 0.011839676648378372, + -0.004608343821018934, + 0.0077820150181651115, + -0.005452482495456934, + -0.009615208022296429, + 0.005090191029012203, + 0.004242429975420237, + 0.006104606669396162, + -0.02693997323513031, + 0.002503432100638747, + -0.0068038287572562695, + -0.008702234365046024, + 0.011767217889428139, + 0.01846235990524292, + 0.00460472097620368, + -0.014324993826448917, + -0.007984898053109646, + 0.008876134641468525, + 0.0016529535641893744, + 0.011767217889428139, + 0.006383570842444897, + -0.01336129941046238, + -0.02227366343140602, + 0.0001760508748702705, + 0.017592860385775566, + -0.002374818781390786, + -0.019520249217748642, + 0.020694073289632797, + -0.00914422981441021, + 0.0019328235648572445, + -0.0011439344380050898, + 0.009818091057240963, + 0.019114483147859573, + 0.004333002492785454, + -0.006267637480050325, + -0.005992296151816845, + 0.028128288686275482, + -0.018520325422286987, + -0.007934177294373512, + 0.004470673389732838, + 0.015810387209057808, + -0.010180382058024406, + 0.0005475125508382916, + -0.008173289708793163, + -0.003016074188053608, + -0.00945580005645752, + 2.295454396517016e-5, + -0.003668198361992836, + -0.02308519557118416, + 0.026215391233563423, + 0.013216382823884487, + -0.02836015447974205, + -0.008839905261993408, + -0.017462436109781265, + -0.0006059320294298232, + 0.011231026612222195, + 0.005293074529618025, + 0.010035466402769089, + 0.012593241408467293, + 0.03718556836247444, + 0.0007798317819833755, + 0.004054038319736719, + 0.004637327045202255, + 0.005441613495349884, + 0.011252764612436295, + -0.03706963360309601, + -0.0281427800655365, + -0.0013930096756666899, + -0.029591944068670273, + -0.016129203140735626, + 0.00668064970523119, + -0.024128593504428864, + -0.024708259850740433, + 0.021491114050149918, + 0.01867973431944847, + -0.014477156102657318, + 0.0013857638696208596, + 0.003541396465152502, + -0.007285675965249538, + 0.004039546940475702, + -0.0021248378325253725, + -0.0013368545332923532, + 0.015187246724963188, + -0.0008051921613514423, + 0.006898024119436741, + 0.0024454656522721052, + -0.013788802549242973, + 0.016172679141163826, + 0.0211288221180439, + 0.0028385515324771404, + 0.0031229499727487564, + 0.008021127432584763, + 0.004275036044418812, + 0.021867895498871803, + -0.004597475286573172, + 0.012883074581623077, + 0.006713255774229765, + 0.008339943364262581, + 0.00849935133010149, + -0.02538936771452427, + 0.02659217268228531, + -0.009665928781032562, + -0.011086110956966877, + 0.023143161088228226, + -0.023824268952012062, + 0.00927465409040451, + 0.0031591791193932295, + -0.0030341886449605227, + -0.010013728402554989, + 0.010180382058024406, + 0.0013151169987395406, + 0.008093585260212421, + 0.021954845637083054, + 0.026824040338397026, + -0.005111928563565016, + 0.008615284226834774, + 0.02138967253267765, + -0.0027660932391881943, + 0.007731294259428978, + -0.0009464857284910977, + -0.005753184203058481, + 0.009876057505607605, + -0.010448478162288666, + -0.021114330738782883, + 0.027592096477746964, + 0.004278658889234066, + -0.0036174776032567024, + 0.0036374034825712442, + -0.0019038402242586017, + -0.006753107998520136, + -0.0049380287528038025, + -0.020404240116477013, + -0.0074559529311954975, + -0.019027533009648323, + -0.0007734916871413589, + 0.021012889221310616, + 0.025635724887251854, + 0.0010597017826512456, + 0.023534435778856277, + -0.00668064970523119, + 0.0005995919345878065, + 0.012129508890211582, + -0.011933871544897556, + 0.012462817132472992, + -0.005322057753801346, + -0.005669857375323772, + -0.0027860193513333797, + 0.005035847425460815, + 0.006329227238893509, + 0.004970635287463665, + -0.011644039303064346, + 0.015187246724963188, + -0.010723819024860859, + 0.0007472255965694785, + -0.000401011056965217, + -0.009151475504040718, + 0.01160780992358923, + 0.03660590201616287, + -0.007637098431587219, + -0.010926702059805393, + -0.0025505300145596266, + -0.007180611602962017, + -0.005756807047873735, + -0.00936884991824627, + 0.011600564233958721, + -0.00907901767641306, + 0.0008894248749129474, + -0.00333489035256207, + 0.005144535098224878, + -0.011020897887647152, + -0.0037859429139643908, + -0.007955914363265038, + -0.01988254114985466, + 0.007825490087270737, + 0.022867819294333458, + 0.007307413499802351, + 0.023461977019906044, + -0.005224239081144333, + 0.0024436539970338345, + 0.005673480220139027, + 0.005072076804935932, + -0.004376477561891079, + -0.004195332061499357, + -0.006347341928631067, + 0.009847074747085571, + 0.024172067642211914, + 0.007419723551720381, + -0.012549767270684242, + -0.004807604011148214, + -0.0022280907724052668, + 0.011310731060802937, + 0.015027838759124279, + -0.027084888890385628, + -0.004390969406813383, + -0.004608343821018934, + 0.002699069445952773, + 0.0026791433338075876, + -0.0005457011284306645 + ], + "5e5d5c28-e238-485a-88b0-46cea135634e": [ + -0.025735095143318176, + -0.017162101343274117, + -0.015188056975603104, + 0.012295478023588657, + -0.008073439821600914, + -0.005176831036806107, + -0.02433312125504017, + 0.0007735032122582197, + -0.017774458974599838, + 0.010667897760868073, + 0.009620445780456066, + 0.02073955349624157, + 0.0027435191441327333, + -0.046668026596307755, + 0.03208426758646965, + 0.026685860008001328, + -0.028571274131536484, + 0.003106098622083664, + 0.014777134172618389, + -0.009974968619644642, + 0.06729477643966675, + 0.0009578145109117031, + -0.03338955342769623, + -0.003859458491206169, + 0.023253438994288445, + 0.004798137117177248, + -0.019514840096235275, + -0.007316051051020622, + -0.03600012883543968, + 0.0017363535007461905, + 0.021867578849196434, + 0.02509051002562046, + 0.013850541785359383, + 0.0013858599122613668, + 0.006389458663761616, + -0.020836241543293, + 0.014744904823601246, + 0.03176197409629822, + -0.040447771549224854, + 0.013391274027526379, + -0.018080636858940125, + -0.021964266896247864, + -0.0025763295125216246, + 0.0053661782294511795, + -0.05085783451795578, + 0.02169031836092472, + 0.017564967274665833, + -0.024864904582500458, + -0.01062761154025793, + -0.0006949442904442549, + 0.010071655735373497, + -0.008371560834348202, + -9.725442941999063e-5, + 0.009410955011844635, + 0.027137070894241333, + -0.019418152049183846, + 0.0017766400706022978, + 0.012682229280471802, + 0.007324108388274908, + -0.02193203754723072, + 0.0006229319260455668, + 0.02164197526872158, + 0.01580847054719925, + 0.009523757733404636, + -0.01609853468835354, + -0.040866751223802567, + 0.009330382570624352, + -0.00591407623142004, + -0.03815948963165283, + -0.02911917120218277, + -0.020127197727560997, + 0.05472534894943237, + -0.03738598898053169, + 0.004109235480427742, + 0.005922133568674326, + -0.039158597588539124, + 0.0732894241809845, + 0.0013939172495156527, + -0.002618630649521947, + 0.011965127661824226, + -0.03031165525317192, + 0.04947197437286377, + 0.03371184691786766, + -0.00647808937355876, + 0.04798942804336548, + 0.031149618327617645, + -0.003696297761052847, + -0.03587121143937111, + 0.03251936286687851, + -0.032100383192300797, + 0.006945414002984762, + -0.000474626780487597, + 0.010369776748120785, + -0.02773331291973591, + -0.016235509887337685, + 0.010216687805950642, + -0.005221146624535322, + 0.017871147021651268, + -0.010144172236323357, + -0.04028662294149399, + -0.03271273896098137, + 0.03006993606686592, + -0.03237432986497879, + 0.0025602150708436966, + -0.006582834292203188, + 0.0027394904755055904, + 0.023334013298153877, + -0.011111050844192505, + -0.029038598760962486, + 0.1048741415143013, + 0.01192484050989151, + -0.031197961419820786, + -0.009161178022623062, + 0.011102993972599506, + -0.06439413875341415, + -0.04918191209435463, + 0.0017595182871446013, + -0.023350127041339874, + -0.0005272512207739055, + -0.038675159215927124, + -0.012932006269693375, + 0.05253375694155693, + 0.0330350324511528, + 0.01032143272459507, + -0.008581050671637058, + -0.008991974405944347, + 0.015897102653980255, + -0.02183534950017929, + 0.018257897347211838, + -0.014881879091262817, + -0.021819235756993294, + -0.019482610747218132, + 0.004117292817682028, + -0.0039118314161896706, + 0.0049351113848388195, + 0.008709968067705631, + 0.040061019361019135, + 0.05166356638073921, + -0.02744324877858162, + 0.03796611353754997, + -0.0373537577688694, + -0.0469258613884449, + -0.01417283434420824, + 0.026701973751187325, + 0.013173726387321949, + -0.009999140165746212, + -0.050213247537612915, + 0.045185476541519165, + -0.018934713676571846, + 0.015212229453027248, + -0.026879236102104187, + -0.012198789976537228, + 0.04473426938056946, + 0.017258789390325546, + 0.012206846848130226, + 0.016485286876559258, + -0.01503496803343296, + 0.0349687896668911, + -0.007465111557394266, + 0.026540828868746758, + 0.010152229107916355, + -0.06239592283964157, + -0.006171911023557186, + 0.006079251412302256, + 0.026041273027658463, + 0.0017595182871446013, + 0.04914968088269234, + 0.01945038139820099, + -0.043412867933511734, + 0.02778165601193905, + -0.0019962021615356207, + -0.012649999931454659, + 0.01695261150598526, + 0.018660765141248703, + 0.021819235756993294, + 0.008855000138282776, + 0.02494547702372074, + 0.015719840303063393, + 0.02902248501777649, + -0.01887025497853756, + 0.01563926786184311, + -0.021222993731498718, + -0.012255190871655941, + -0.0068285828456282616, + 0.018370701000094414, + 0.02969929948449135, + 0.003841329598799348, + 0.01510748453438282, + -0.009781592525541782, + 0.004572531674057245, + -0.001032344764098525, + -0.011296369135379791, + -0.008149984292685986, + 0.011312483809888363, + -0.003651982406154275, + -0.010337547399103642, + -0.012674172408878803, + -0.025267770513892174, + 0.02183534950017929, + 0.017500510439276695, + 0.006590891629457474, + -0.038288407027721405, + -0.046764712780714035, + 0.0248971339315176, + 0.00041948448051698506, + -0.0020012380555272102, + -0.013874713331460953, + 0.001069609890691936, + 0.012488853186368942, + -0.04373515769839287, + 0.027620509266853333, + -0.050503313541412354, + 0.0075094266794621944, + -0.012513025663793087, + -0.0227538850158453, + 0.007034044712781906, + -0.02331789769232273, + 0.043026115745306015, + 0.0167592354118824, + -0.012069872580468655, + -0.018064523115754128, + 0.002009295392781496, + -0.003367961850017309, + -0.035420000553131104, + -0.038578473031520844, + -0.00225000805221498, + 0.007666544523090124, + 0.022786114364862442, + -0.04653910920023918, + 0.009346497245132923, + 0.04918191209435463, + -0.005084171891212463, + -0.014535414054989815, + -0.020836241543293, + 0.0021936066914349794, + 0.03970649838447571, + -0.0014472969342023134, + 0.012440509162843227, + 0.019144203513860703, + -0.006135652773082256, + 0.01858019083738327, + 0.03983541578054428, + 0.012464681640267372, + -0.0007191162439994514, + 0.003041640156880021, + 0.015937387943267822, + 0.01925700716674328, + 0.04325171932578087, + 0.025316115468740463, + -0.007872005924582481, + -0.005720700602978468, + 0.007291879039257765, + 0.03567783534526825, + -0.022721655666828156, + 0.0024051114451140165, + 0.02117464877665043, + -0.01649334467947483, + -0.05008433014154434, + 0.0005013166810385883, + -0.04067337512969971, + 0.019514840096235275, + 0.032390445470809937, + 0.04199477657675743, + -0.012513025663793087, + 0.015075255185365677, + -0.04895630478858948, + 0.04524993523955345, + -0.015043025836348534, + 0.028555158525705338, + 0.0608166866004467, + -0.0067882961593568325, + 0.005978534929454327, + -0.0038050715811550617, + -0.026605287566781044, + -0.0018179338658228517, + 0.0025017992593348026, + 0.017033183947205544, + -0.012988408096134663, + -0.01010388508439064, + 0.0022983518429100513, + -0.01629996858537197, + 0.014712675474584103, + 0.002491727704182267, + 0.005539410747587681, + -0.01814509555697441, + 0.012609713710844517, + -0.0373537577688694, + 0.02183534950017929, + -0.04495987296104431, + -0.023350127041339874, + 0.003255159128457308, + -0.02011108212172985, + 0.041736941784620285, + -0.01264194305986166, + 0.040737833827733994, + -0.022351019084453583, + 0.005849617999047041, + 0.010708184912800789, + -0.050632230937480927, + 0.012440509162843227, + -0.03342178463935852, + -0.026589171960949898, + 0.004697420168668032, + -0.015051082707941532, + 0.0013868670212104917, + 0.006925270892679691, + 0.030376113951206207, + 0.00890334416180849, + -0.03155248239636421, + -0.009974968619644642, + 0.014132548123598099, + -0.0025279857218265533, + 2.1858641048311256e-5, + -0.017307134345173836, + 0.0034747214522212744, + 0.009225636720657349, + -0.021948153153061867, + -0.022770000621676445, + 0.0009059454896487296, + -0.03764382004737854, + 0.0025682724080979824, + 0.0014513256028294563, + -0.016380541026592255, + 0.015897102653980255, + 0.016823694109916687, + -0.05401630699634552, + 0.032019808888435364, + -3.5534059861674905e-5, + -0.016138821840286255, + -0.050632230937480927, + -0.03529108315706253, + -0.01991770789027214, + -0.026266878470778465, + -0.018950827419757843, + -0.03616127371788025, + -0.03777273744344711, + -0.018451273441314697, + -0.05962420254945755, + -0.006707722786813974, + -0.030875667929649353, + -0.018692994490265846, + 0.0034163056407123804, + -0.023382356390357018, + -0.0007186126313172281, + 0.04002878814935684, + 0.00097141123842448, + 0.008967802859842777, + 0.011715350672602654, + -0.02217375859618187, + -0.025251656770706177, + 0.0011088893515989184, + -0.020127197727560997, + 0.05546662583947182, + -0.000906449044123292, + 0.04534662514925003, + -0.0029550238978117704, + 0.0041334074921905994, + -0.0146079296246171, + 0.007150875870138407, + -0.0011693192645907402, + 0.03529108315706253, + -0.04615235701203346, + -0.014656273648142815, + 0.0005509195616468787, + 0.016050191596150398, + 0.0068487259559333324, + -0.04463757947087288, + -0.003617738839238882, + 0.016823694109916687, + 0.006764124147593975, + -0.025203311815857887, + 0.020078852772712708, + 0.01310120988637209, + 0.003106098622083664, + -0.016171051189303398, + -0.0004625408037099987, + 0.056111209094524384, + 0.0007870999397709966, + -0.03235821798443794, + 0.010780700482428074, + -0.006377372425049543, + -0.017887260764837265, + 0.021803120151162148, + -0.0028684076387435198, + 0.027314331382513046, + 0.012714458629488945, + 0.011014362797141075, + 0.03770827874541283, + 0.013181783258914948, + -0.0015218271873891354, + -0.06774598360061646, + 0.015969617292284966, + -0.03250324726104736, + 0.02265719696879387, + -0.063233882188797, + 0.018999172374606133, + -0.0034263774286955595, + 0.012915891595184803, + 0.023156750947237015, + -0.026605287566781044, + 0.010385891422629356, + -0.012577484361827374, + 0.011102993972599506, + -0.0042341239750385284, + 0.005084171891212463, + -0.01685592345893383, + -0.024365350604057312, + -0.021480828523635864, + 0.017033183947205544, + 0.007505398243665695, + 0.0011239968007430434, + -0.008339331485331059, + 0.010901560075581074, + 0.04486318305134773, + 0.04257490485906601, + -0.010579267516732216, + 0.03935197368264198, + 0.01115939486771822, + -0.03935197368264198, + -0.03380853682756424, + 0.043219491839408875, + 0.08031541109085083, + -0.008879171684384346, + 0.0359034389257431, + 0.03300280123949051, + 0.011868439614772797, + 0.06497427076101303, + 0.008057325147092342, + -0.03935197368264198, + 0.0038957165088504553, + 0.010434235446155071, + 0.04041554033756256, + 0.0047941082157194614, + -0.01795171946287155, + -0.0072072772309184074, + -0.056723568588495255, + -0.030633948743343353, + -0.00931426789611578, + -0.018741337582468987, + -0.01032143272459507, + 0.026331337168812752, + 0.0009940724121406674, + -0.018306242302060127, + 0.0006632185541093349, + -0.023962484672665596, + -0.035226624459028244, + -0.03348624333739281, + 0.006308885291218758, + -0.010313375853002071, + 0.008983917534351349, + 0.00012205588427605107, + 0.04911745339632034, + -0.023060062900185585, + 0.0007563813705928624, + 0.011328598484396935, + 0.0042502386495471, + -0.013246241956949234, + -0.033163949847221375, + 0.03683808818459511, + -0.002098933095112443, + -0.025992929935455322, + 0.006772181484848261, + -0.01331070065498352, + -0.015365318395197392, + 0.007755175232887268, + -0.04315503314137459, + -0.005849617999047041, + 0.023156750947237015, + 0.008709968067705631, + -0.004290525335818529, + -0.0289741400629282, + -0.007477197330445051, + -0.05965643376111984, + -0.0043146973475813866, + -0.0008329259580932558, + -0.02984433062374592, + -0.035710062831640244, + -0.019579298794269562, + 0.015333089046180248, + -0.04483095556497574, + -0.04028662294149399, + -0.000599767139647156, + -0.015099426731467247, + 0.01767777092754841, + 0.008855000138282776, + -0.0017987977480515838, + -0.0075094266794621944, + -0.02945758029818535, + 0.0065868631936609745, + -0.03764382004737854, + 0.03467872738838196, + -0.01634025387465954, + 0.03361516073346138, + 0.020610636100172997, + 0.00025745670427568257, + -0.03535554185509682, + -0.00025884155184030533, + -0.03348624333739281, + 0.003968232311308384, + -0.035742294043302536, + 0.03703146427869797, + -0.028667962178587914, + -0.01426952239125967, + 0.0022197929210960865, + 0.0031584713142365217, + -0.0017353463917970657, + -0.020368916913866997, + -0.007682659197598696, + 0.016316082328557968, + -0.01719433069229126, + -0.048440635204315186, + -0.010410063900053501, + 0.0006445859908126295, + 0.024300891906023026, + -0.0037950000260025263, + 0.007839777506887913, + -0.0124485669657588, + 0.018370701000094414, + 0.010990191251039505, + -0.0036358677316457033, + 0.013036751188337803, + 0.009032261557877064, + -0.021754777058959007, + 0.014744904823601246, + 0.008182213641703129, + -0.0019438295857980847, + -0.0005091222119517624, + -0.003688240423798561, + 0.0028502787463366985, + -0.029763758182525635, + -0.011360827833414078, + 0.024735987186431885, + -0.02839401364326477, + 0.008653567172586918, + 0.007364395074546337, + -0.02202872559428215, + 0.016453057527542114, + -0.003917874302715063, + -0.01748439483344555, + 0.03250324726104736, + -0.02647637017071247, + 0.014809363521635532, + 0.018370701000094414, + -0.0017212460516020656, + 0.026879236102104187, + 0.03912637010216713, + -0.011731465347111225, + 0.03567783534526825, + 0.021384140476584435, + 0.004596703685820103, + -0.03293834254145622, + 0.02283445931971073, + -0.018886368721723557, + 0.007203248329460621, + 0.0085004772990942, + -0.041446879506111145, + 0.01753273978829384, + 0.0025602150708436966, + -0.025896241888403893, + -0.002376910764724016, + -0.01039394922554493, + 0.009934681467711926, + 0.023769108578562737, + 0.007686688099056482, + -0.022254331037402153, + -0.011538089253008366, + 0.003718455322086811, + 0.022109299898147583, + -0.013044808991253376, + -0.011207738891243935, + 0.005072086118161678, + 0.002109004883095622, + 2.0237734133843333e-5, + -0.0027838058304041624, + -0.010522866621613503, + 0.0046450477093458176, + 0.0005307762767188251, + 0.020127197727560997, + -0.01062761154025793, + 0.004914968274533749, + 0.029296433553099632, + -0.04447643458843231, + -0.012069872580468655, + -0.0027294186875224113, + -0.01780668832361698, + 0.014696560800075531, + -0.02615407668054104, + -0.008339331485331059, + -0.002812006277963519, + -0.0013274442171677947, + 0.011078821495175362, + 0.009322324767708778, + 0.017307134345173836, + -0.004238152876496315, + -0.03409859910607338, + 0.052888281643390656, + 0.011973184533417225, + 0.018789680674672127, + 0.002507842378690839, + 0.012851432897150517, + 0.02073955349624157, + 0.029135286808013916, + 0.03751490265130997, + -0.017403822392225266, + -0.02093292959034443, + 0.020352803170681, + -0.0287324208766222, + -0.010611496865749359, + 0.01954706944525242, + 0.022351019084453583, + -0.014930223114788532, + 0.012222961522638798, + 0.024590956047177315, + -0.02011108212172985, + 0.053371720016002655, + 0.02054617926478386, + 0.03764382004737854, + -0.0035754379350692034, + 0.006280684843659401, + 0.012206846848130226, + 0.01211821660399437, + -0.04151133820414543, + 0.059108536690473557, + -0.023527389392256737, + 0.024639299139380455, + 0.009273980744183064, + -0.003498893231153488, + 0.001344566117040813, + -0.012488853186368942, + 0.01819343864917755, + 0.0050640287809073925, + -0.0027797771617770195, + 0.03648356720805168, + -0.042832739651203156, + 0.04209146648645401, + 0.01617910899221897, + 0.03240656107664108, + 0.019144203513860703, + -0.02763662487268448, + 0.013729681260883808, + 0.00647808937355876, + -0.0008077468373812735, + 0.006349171977490187, + 0.04273604974150658, + -0.006615063641220331, + 0.014285637065768242, + -0.004310668911784887, + 0.028941910713911057, + 0.0517280250787735, + 0.0002151557564502582, + -0.03980318456888199, + 0.006055079400539398, + 0.008266814984381199, + 0.030295541509985924, + 0.011771751567721367, + -0.033067259937524796, + 0.00690915621817112, + 0.02547726035118103, + 0.02418808825314045, + 0.02212541364133358, + 0.017355477437376976, + -0.011965127661824226, + -0.003964203875511885, + 0.0066472929902374744, + 0.010450350120663643, + 0.010522866621613503, + -0.0033437898382544518, + 0.012085987254977226, + 0.005474952049553394, + 0.01084515918046236, + 0.0029630812350660563, + -0.008540764451026917, + 0.011393057182431221, + 0.025461146607995033, + -0.023301783949136734, + -0.01748439483344555, + 0.0016396655701100826, + 0.0074489968828856945, + 0.00601076427847147, + -0.010788758285343647, + 0.010877388529479504, + -0.009499586187303066, + -0.019144203513860703, + 0.03580675274133682, + -0.0021553344558924437, + 0.0023366243112832308, + -0.01597767509520054, + 0.04728038236498833, + 0.004153551068156958, + 0.012206846848130226, + 0.0037909713573753834, + -0.0001655528467381373, + -0.016968725249171257, + -0.020820127800107002, + -0.012674172408878803, + -0.020352803170681, + -0.015462006442248821, + -0.0373537577688694, + 0.02538057416677475, + 0.015236400999128819, + -0.049020763486623764, + 0.02375299297273159, + 0.006961528677493334, + -0.009096719324588776, + 0.008178184740245342, + 0.0024876990355551243, + -0.019514840096235275, + -0.02802337519824505, + 0.03036000020802021, + -0.0022822371684014797, + 0.014430669136345387, + 0.025654522702097893, + -0.013367101550102234, + 0.0031624999828636646, + -0.0013465804513543844, + 0.023027833551168442, + -0.005801273975521326, + 0.006482117809355259, + -0.019192548468708992, + 0.0018763495609164238, + 0.001842105877585709, + 0.027991145849227905, + 0.00986216589808464, + -0.05624012649059296, + -0.022399362176656723, + -0.010240860283374786, + -0.0027133042458444834, + 0.021222993731498718, + -0.015937387943267822, + 0.006731894798576832, + 0.03045668825507164, + 0.011844267137348652, + 0.005906018894165754, + 0.004516130778938532, + -0.02044949121773243, + 0.0062967995181679726, + -0.036612484604120255, + 0.019224777817726135, + 0.030102165415883064, + -0.024349234998226166, + 0.0063572293147444725, + 0.015212229453027248, + 0.016066305339336395, + -0.0008591122459620237, + 0.019240891560912132, + -0.010353662073612213, + 0.011086879298090935, + -0.0003953124978579581, + 0.015002738684415817, + 0.01161060482263565, + 0.04151133820414543, + -0.03103681467473507, + 0.03218095377087593, + 0.00955598708242178, + -0.027459362521767616, + 0.021513057872653008, + -0.0011934912763535976, + -0.01595350354909897, + -0.030875667929649353, + 0.030617835000157356, + 0.007364395074546337, + -0.0043428982608020306, + -0.00019790804071817547, + -0.036999236792325974, + 0.016791464760899544, + -0.0036419108510017395, + -0.01977267488837242, + 0.030198853462934494, + 0.03703146427869797, + -0.005769044626504183, + 0.0246554147452116, + -0.002755605150014162, + 0.027459362521767616, + 0.015188056975603104, + 0.0056965285912156105, + 0.024494268000125885, + 0.03912637010216713, + -0.012706400826573372, + -0.042445987462997437, + -0.029812101274728775, + -0.023043949156999588, + -0.040963441133499146, + -0.0002988764026667923, + -0.029812101274728775, + 0.04018993675708771, + -0.006683550775051117, + 0.033163949847221375, + 0.013592706993222237, + -0.019514840096235275, + 0.0018894426757469773, + 0.028426241129636765, + 0.02020777016878128, + 0.013826369307935238, + 0.0005841560778208077, + -0.0031927148811519146, + -0.012537197209894657, + 0.024123631417751312, + -0.01573595590889454, + -0.016356369480490685, + 0.00933843944221735, + -0.002759633818641305, + -0.030102165415883064, + 0.02916751615703106, + 0.017403822392225266, + -0.008460191078484058, + -0.03706369549036026, + -0.0006848726188763976, + -0.0026649602223187685, + -0.010385891422629356, + 0.0083796177059412, + -0.024300891906023026, + 0.0015459991991519928, + 0.012392166070640087, + -0.009644618257880211, + 0.01381831243634224, + -0.008021066896617413, + 0.0042341239750385284, + 0.008863057009875774, + -0.006474060472100973, + 0.018306242302060127, + -0.008887229487299919, + 0.006635207217186689, + -0.007956608198583126, + -0.0016940525965765119, + -0.009419012814760208, + -0.027088725939393044, + 0.027991145849227905, + -0.02931254729628563, + 0.0397387258708477, + 0.007529570255428553, + -0.0070582167245447636, + 0.004902882035821676, + -0.006699665449559689, + 0.048634011298418045, + 0.009684904478490353, + 0.019804904237389565, + -0.03851401433348656, + -0.014809363521635532, + -0.017274904996156693, + 0.030327770859003067, + -0.014551528729498386, + -0.03951312229037285, + -0.014970509335398674, + -0.013536306098103523, + 0.0038796018343418837, + 0.005954362917691469, + 0.0008399761281907558, + 0.013834427110850811, + 0.02982821688055992, + 0.030005477368831635, + 0.04334840923547745, + -0.009781592525541782, + -0.0054346658289432526, + 0.00976547785103321, + -0.0027314331382513046, + 0.03358292952179909, + -0.010893503203988075, + 0.03516216576099396, + 0.006945414002984762, + 0.03587121143937111, + 0.002199649577960372, + 0.031536370515823364, + -0.02858738787472248, + -0.03786942735314369, + 0.016936495900154114, + 0.021384140476584435, + -0.011336656287312508, + -0.034936562180519104, + 0.018016178160905838, + 0.01738770678639412, + -0.0015772213228046894, + -0.006159824784845114, + -0.00409312080591917, + 0.018983056768774986, + -0.0008661624160595238, + -0.03748267516493797, + 0.004548359662294388, + -0.010998248122632504, + -0.01795171946287155, + -0.016461115330457687, + 0.013576592318713665, + 0.021464712917804718, + 0.029151400551199913, + -0.0009160171030089259, + -0.07219363003969193, + -0.007481226231902838, + 0.014978567138314247, + -0.012456623837351799, + 0.011191624216735363, + 0.0012780932011082768, + 0.0020364888478070498, + 0.00931426789611578, + -0.022334905341267586, + -0.011739522218704224, + -0.012311592698097229, + -0.000996086746454239, + -0.022915031760931015, + -0.0325515940785408, + 0.004850509576499462, + 0.009684904478490353, + -0.021609745919704437, + -0.013866656459867954, + -0.01585681550204754, + 0.024349234998226166, + 0.016380541026592255, + -0.05121235549449921, + -0.005120430141687393, + 0.015695668756961823, + 0.012045701034367085, + -0.00866968184709549, + 0.008871114812791348, + 0.02768496796488762, + -0.022286560386419296, + -0.028861338272690773, + 0.03861070051789284, + 0.0392552874982357, + 0.02360796183347702, + 0.011449459008872509, + -0.021158535033464432, + 0.011151337996125221, + 0.0012861504219472408, + 0.009636560454964638, + -0.011102993972599506, + 0.026492483913898468, + -0.013592706993222237, + -0.022479936480522156, + 0.02586401253938675, + -0.008863057009875774, + 0.022286560386419296, + 0.004105207044631243, + -0.0060671656392514706, + 0.010313375853002071, + -0.0017554896185174584, + -0.016581974923610687, + 0.023736879229545593, + 0.011304426938295364, + 0.002235907595604658, + -0.009572101756930351, + -0.043509554117918015, + 0.0005161723820492625, + -0.009805764071643353, + -0.0036318390630185604, + 0.0030174681451171637, + -0.007013901136815548, + 0.0014664331683889031, + -0.008250700309872627, + -0.00847630575299263, + 0.004689362831413746, + -0.0051043154671788216, + 0.024171974509954453, + 0.009620445780456066, + 0.016050191596150398, + 0.013326815329492092, + -0.031052930280566216, + -0.005603869445621967, + 0.031342994421720505, + -0.013914999552071095, + 0.005176831036806107, + 0.0029993392527103424, + 0.03500102087855339, + -0.006264570169150829, + -0.023978598415851593, + 0.007811576593667269, + -0.003974275663495064, + -0.05166356638073921, + 0.016888152807950974, + -0.03269662335515022, + 0.014970509335398674, + 0.004508073441684246, + 0.019708216190338135, + -0.008250700309872627, + -0.017226560041308403, + 0.0026327308733016253, + -0.004254267551004887, + 0.0227538850158453, + -0.025412801653146744, + -0.0009804756846278906, + 0.0004784036718774587, + -0.017178216949105263, + 0.006510318256914616, + 0.04776382073760033, + -0.02734656073153019, + -0.01680758036673069, + -0.04673248529434204, + -0.030569490045309067, + -0.008887229487299919, + -0.016267739236354828, + 0.0009366640006192029, + -0.0005086186574772, + -0.00505194254219532, + 0.002789848716929555, + -0.03235821798443794, + -0.007312022149562836, + -0.005374235566705465, + 0.00406290590763092, + 0.004044777248054743, + -0.007009872701019049, + -0.023575732484459877, + -0.020433375611901283, + -0.025171082466840744, + -0.023495160043239594, + -0.016872039064764977, + -0.0033437898382544518, + 0.0378371961414814, + 0.0008460191311314702, + -0.01580847054719925, + 0.006425716448575258, + 0.004979426972568035, + 0.018064523115754128, + 0.002763662487268448, + 0.0025984873063862324, + -0.021287452429533005, + 0.0012287420686334372, + -0.008830827660858631, + 0.007795461919158697, + 0.01372162438929081, + -0.013157611712813377, + -0.05624012649059296, + -0.03767605125904083, + 0.014406496658921242, + -0.006824553944170475, + -0.014035860076546669, + -0.01020057313144207, + 0.015051082707941532, + 0.010111942887306213, + -0.0006042993627488613, + 0.0032732882536947727, + 0.013326815329492092, + 0.011868439614772797, + -0.013697451911866665, + -0.026234649121761322, + -0.0017927547451108694, + 0.007863949052989483, + -0.002035481622442603, + 0.0029993392527103424, + -0.0388040766119957, + 0.001166297821328044, + -0.08121783286333084, + -0.0167592354118824, + 0.01833847165107727, + 0.02140025421977043, + -0.04080229252576828, + -0.016920382156968117, + 0.005559554323554039, + 0.01556675136089325, + 0.013463789597153664, + 0.010587324388325214, + 0.006607006303966045, + 0.010869331657886505, + 0.009878280572593212, + 0.04083452373743057, + -0.024494268000125885, + 0.010071655735373497, + 0.008210414089262486, + 0.00295703811571002, + 0.01690426841378212, + -0.002636759541928768, + 0.006236369255930185, + 0.017162101343274117, + 0.004540302325040102, + -2.189011502196081e-5, + 0.012392166070640087, + 0.022431591525673866, + -0.025557834655046463, + 0.026492483913898468, + -0.0032027866691350937, + -0.01729101873934269, + -0.005934219807386398, + 0.016388598829507828, + -0.01568761095404625, + 0.0022379220463335514, + 0.022238217294216156, + -0.012231019325554371, + 0.015945445746183395, + -0.0007231449126265943, + 0.005603869445621967, + -0.012698343954980373, + 0.0019116003531962633, + 0.016678662970662117, + -0.007287850137799978, + -0.00400650454685092, + 0.0026589171029627323, + 0.002429283456876874, + 0.007581942714750767, + -0.01340738870203495, + -0.00036308320704847574, + -0.00011859375081257895, + 0.009547930210828781, + -0.006897069979459047, + 0.013858598656952381, + -0.018805796280503273, + -0.011755636893212795, + 0.009330382570624352, + 0.021239107474684715, + -0.0045443312264978886, + 0.0007729995995759964, + 0.005120430141687393, + 0.0871480256319046, + 0.009837993420660496, + -0.006280684843659401, + 0.0082587581127882, + -0.019240891560912132, + 0.005664299242198467, + 0.009789649397134781, + 0.01704929955303669, + 0.038191720843315125, + -0.013294585980474949, + -0.0007342237513512373, + 0.005144601687788963, + -0.007626257836818695, + 0.03425974398851395, + -0.003684211755171418, + 0.005869761109352112, + 0.004254267551004887, + 0.004326783586293459, + 0.007642372511327267, + 0.020562293007969856, + 0.003811114700511098, + -0.017871147021651268, + 0.010957961902022362, + 0.02183534950017929, + -0.011441401205956936, + -0.022770000621676445, + 0.0006899084546603262, + 0.005833503324538469, + -0.013890828005969524, + 0.0018521775491535664, + 0.021158535033464432, + 0.015623153187334538, + 0.03221318498253822, + 0.012988408096134663, + -0.022334905341267586, + 0.030972355976700783, + 0.027217643335461617, + 0.005402436479926109, + 0.001648730132728815, + -0.014446783810853958, + 0.006264570169150829, + -0.003980318550020456, + 0.00520906038582325, + -0.034549809992313385, + 0.004479872528463602, + 0.025799553841352463, + -0.009523757733404636, + 0.014857706613838673, + -0.018499618396162987, + -0.006925270892679691, + 0.013947228901088238, + -0.019949937239289284, + -0.0165175162255764, + 0.008508535102009773, + -0.0225121658295393, + -0.0035452230367809534, + -0.01719433069229126, + -0.012198789976537228, + -0.01945038139820099, + -0.012521082535386086, + 0.0011330613633617759, + 0.0053258915431797504, + -0.008540764451026917, + -0.027233757078647614, + -0.013874713331460953, + -0.00010562649549683556, + -0.010047484189271927, + 0.02355961874127388, + 0.0005836524651385844, + 0.0102972611784935, + 0.01106270682066679, + -0.012827261351048946, + -0.0065868631936609745, + -0.008516591973602772, + -0.005140573251992464, + 0.025928471237421036, + 0.04521770775318146, + -0.017790572717785835, + 0.00671578012406826, + -0.03487210348248482, + -0.011876496486365795, + 0.018741337582468987, + 0.008206385187804699, + 0.02064286544919014, + -0.015937387943267822, + -0.004427500069141388, + 0.01882191002368927, + -0.002886536531150341, + -0.001808869419619441, + -0.011723407544195652, + 0.007714888546615839, + 0.006510318256914616, + 0.021915923804044724, + -0.016267739236354828, + -0.0033337180502712727, + -0.016211338341236115, + -0.00557969743385911, + 0.00438318494707346, + 0.005728757940232754, + 0.012682229280471802, + -0.020562293007969856, + 0.006735923700034618, + 0.0053661782294511795, + 0.005515238735824823, + 0.0010454378789290786, + 0.004475844092667103, + -0.006260541267693043, + 0.00036409037420526147, + -0.03922305628657341, + -0.01578429900109768, + -0.0016779379220679402, + -0.00197303737513721, + -0.030666178092360497, + -0.014019745402038097, + 0.0051043154671788216, + -0.011981242336332798, + -0.028232866898179054, + -0.011787866242229939, + 0.025074394419789314, + -0.008556879125535488, + -0.010788758285343647, + 0.008444076403975487, + -0.011385000310838223, + 0.023027833551168442, + 0.0044436147436499596, + 0.024462038651108742, + -0.013729681260883808, + -0.003954132087528706, + -0.007654458750039339, + -0.007126703858375549, + 0.002262094058096409, + 0.026444140821695328, + -0.01576012745499611, + -0.0075497133657336235, + 0.011763694696128368, + 0.007924378849565983, + 0.053081657737493515, + 0.008154013194143772, + -0.030617835000157356, + -0.02480044588446617, + -0.0024715843610465527, + 0.006707722786813974, + 0.011006305925548077, + 0.009741305373609066, + 0.00687289796769619, + -0.010998248122632504, + -0.022254331037402153, + -0.008540764451026917, + 0.00977353472262621, + -0.010410063900053501, + 0.010498694144189358, + -0.017033183947205544, + 0.028571274131536484, + -0.003472707001492381, + 0.004596703685820103, + 0.010659840889275074, + -0.012029586359858513, + -0.03745044767856598, + 0.008548821322619915, + -0.02792668715119362, + 0.015848757699131966, + -0.007259649690240622, + -0.014769076369702816, + -0.050599999725818634, + 0.0012488852953538299, + 0.007662516087293625, + -0.002596472855657339, + -0.03300280123949051, + -0.003301488934084773, + 0.017419936135411263, + -0.007352308835834265, + 0.002536043059080839, + 0.01782280206680298, + -0.025638407096266747, + -0.006337086204439402, + 0.0076383440755307674, + 0.05272713303565979, + -0.008266814984381199, + 0.010031369514763355, + -0.0017665685154497623, + -0.006860812194645405, + -0.0047739651054143906, + 0.0014372252626344562, + 0.0013647093437612057, + 0.017113758251070976, + 0.0020949044264853, + -0.03774050995707512, + -0.014003630727529526, + -0.002904665656387806, + -0.014301751740276814, + 0.019482610747218132, + -0.03006993606686592, + -0.015188056975603104, + 0.017774458974599838, + 0.011852324940264225, + 0.004524188116192818, + -1.4478005141427275e-6, + -0.02015942707657814, + 0.041350189596414566, + 0.029941018670797348, + 0.005092229228466749, + 0.009837993420660496, + 0.011288312263786793, + 0.0017998049734160304, + 0.0066472929902374744, + -0.01704929955303669, + 0.003257173579186201, + -0.013906942680478096, + 0.0021231051068753004, + -0.003996433224529028, + 0.012754744850099087, + 0.000512647267896682, + -0.008158041164278984, + 0.0032712738029658794, + 0.022802229970693588, + 0.022060954943299294, + 0.010957961902022362, + 0.017129871994256973, + -0.02112630568444729, + 0.008685796521604061, + -0.0057972450740635395, + 0.0077793472446501255, + -0.03722484037280083, + 0.0022963376250118017, + 0.016066305339336395, + 0.011658948846161366, + 0.0042623248882591724, + 0.011248025111854076, + 0.0232212096452713, + -0.03214872628450394, + 0.03748267516493797, + 0.006997786462306976, + 0.01032143272459507, + 0.0014362181536853313, + 0.011755636893212795, + 0.009701019152998924, + -0.024784332141280174, + 0.003045668825507164, + 0.008290987461805344, + -0.003766799345612526, + -0.004918996710330248, + -0.03931974619626999, + -0.025251656770706177, + 0.010837102308869362, + -9.709706318972167e-6, + -0.00022182823158800602, + -0.005918105132877827, + -0.005192945711314678, + 7.18234950909391e-5, + -0.013350986875593662, + -0.007573885377496481, + -0.01010388508439064, + -0.0036942835431545973, + -0.008879171684384346, + 0.01318984106183052, + 0.009056433103978634, + -0.0062847132794559, + -0.015671497210860252, + -0.03055337630212307, + -0.008190270513296127, + -0.0016185151180252433, + -0.04650687798857689, + 0.027040382847189903, + 0.016461115330457687, + -0.03219706937670708, + 0.018902484327554703, + 0.02102961763739586, + -0.006373343989253044, + 0.002830135403200984, + -0.02666974440217018, + 0.0051043154671788216, + 0.019079744815826416, + -0.004729649517685175, + 0.018322356045246124, + 0.01532503217458725, + 0.0002648845547810197, + 0.015518407337367535, + 0.008927515707910061, + -0.002090875757858157, + 0.0001387370575685054, + 0.00976547785103321, + 0.014696560800075531, + -0.0076383440755307674, + 0.0011391042498871684, + 0.015897102653980255, + -0.011723407544195652, + -0.01149780210107565, + 0.0008812699234113097, + 0.011151337996125221, + 0.011658948846161366, + -0.033550702035427094, + 0.004165636841207743, + 0.012746687978506088, + 0.007835748605430126, + 0.022641083225607872, + 0.010547038167715073, + 0.011473630554974079, + 0.007823662832379341, + -0.0085004772990942, + -0.024365350604057312, + -0.012037643231451511, + -0.015502292662858963, + 0.00042678642785176635, + 0.011481688357889652, + 0.005112372804433107, + 0.02882910892367363, + 0.0165175162255764, + -0.007694745436310768, + -0.020675094798207283, + -0.0392875149846077, + 0.0146079296246171, + -0.008403790183365345, + 0.00348479300737381, + -0.0005841560778208077, + 0.005301719531416893, + -0.009354554116725922, + 0.011425286531448364, + 0.006470032036304474, + -0.01340738870203495, + 1.502093073213473e-5, + -0.005281576421111822, + 0.003732555778697133, + -0.040737833827733994, + 0.0054064649157226086, + -0.0030436543747782707, + 0.0030255254823714495, + 0.0029550238978117704, + 0.011014362797141075, + 0.0008273865678347647, + -0.014615987427532673, + 0.006083280313760042, + 0.0015238415217027068, + 0.002759633818641305, + -0.01554257981479168, + 0.01307703834027052, + 0.016984840855002403, + -0.033067259937524796, + 0.029038598760962486, + -0.018451273441314697, + 0.01211821660399437, + -0.014889935962855816, + 0.0028784791938960552, + 0.0057368152774870396, + 0.02073955349624157, + -0.011562260799109936, + -0.02676643244922161, + -0.025541719049215317, + 0.008214442990720272, + -0.0033941480796784163, + -0.020530063658952713, + -0.011231910437345505, + 0.009137006476521492, + -0.004018590785562992, + -0.009797707200050354, + 0.00514863058924675, + -0.005474952049553394, + 0.010829044505953789, + 0.023398471996188164, + 0.018886368721723557, + -0.02863573282957077, + -0.001701102708466351, + 0.00481425179168582, + -0.0077511463314294815, + 0.002243964932858944, + -0.016114650294184685, + 0.010982133448123932, + -0.00953181553632021, + 0.005942277144640684, + 0.0007568849250674248, + 0.042155925184488297, + -0.009829936549067497, + -0.015341146849095821, + 0.001214641728438437, + 0.00795257929712534, + 0.03535554185509682, + -0.02413974516093731, + 0.02844235673546791, + -0.01996605098247528, + 0.009088662452995777, + -0.02892579697072506, + 0.00900003220885992, + -0.004290525335818529, + -0.02481655962765217, + -0.01364910788834095, + -0.02494547702372074, + -0.017017070204019547, + 0.01590515859425068, + 0.0044919587671756744, + -0.019708216190338135, + -0.007372452411800623, + -0.0028724363073706627, + -0.003436448983848095, + 0.02355961874127388, + -0.02188369445502758, + -0.0003031568485312164, + 0.00847630575299263, + 0.00477799354121089, + 0.014213120564818382, + -0.01996605098247528, + 0.009797707200050354, + -0.006897069979459047, + -0.01000719703733921, + -0.023011719807982445, + 0.021964266896247864, + 0.016581974923610687, + 0.009354554116725922, + 0.0032450875733047724, + -0.014342037960886955, + -0.009813821874558926, + -0.006663407664746046, + 0.003978304099291563, + -0.031391337513923645, + -0.03016662411391735, + -0.00164973724167794, + -0.003726512659341097, + -0.006562691181898117, + 0.0032491162419319153, + 0.0012871576473116875, + 0.02088458649814129, + -0.021061846986413002, + -0.005591783672571182, + -0.003651982406154275, + -0.014309808611869812, + -0.0006284713163040578, + 0.006840668618679047, + 0.00292682321742177, + 0.01733936369419098, + -0.012504967860877514, + 0.0016557802446186543, + 0.012094044126570225, + -0.015139712952077389, + 0.022915031760931015, + 0.031101273372769356, + 0.024059172719717026, + 0.010152229107916355, + -0.021754777058959007, + -0.011401114985346794, + -0.015478121116757393, + 0.004169665742665529, + -0.00977353472262621, + 0.00357342348434031, + -0.016533629968762398, + -0.022882802411913872, + -0.008444076403975487, + -0.003994418773800135, + -0.029038598760962486, + 0.006204139906913042, + 0.009580159559845924, + 0.00718310521915555, + -0.020272228866815567, + 0.00647808937355876, + 0.023769108578562737, + -0.012513025663793087, + -0.004145493730902672, + -0.003517022356390953, + -0.003517022356390953, + 0.0007357344729825854, + -0.01632414013147354, + -7.301950972760096e-5, + -0.011288312263786793, + -0.0045644743368029594, + -0.011086879298090935, + -0.003428391646593809, + -0.009539872407913208, + 0.0016870023682713509, + 0.019369808956980705, + -0.0020868470892310143, + 0.011513916775584221, + 0.008077467791736126, + -0.013914999552071095, + -0.004107221495360136, + -0.0040729776956140995, + 0.00653851917013526, + 0.011731465347111225, + -0.006768153049051762, + 0.01583264395594597, + 0.0059261624701321125, + -0.009282038547098637, + -0.0008626373601146042, + -0.01767777092754841, + 0.005116401240229607, + 0.001392910024151206, + -0.020030509680509567, + 0.007162961643189192, + -0.01714598760008812, + 0.07863949239253998, + 0.0047336784191429615, + 0.0005358121125027537, + 0.024155860766768456, + 0.030617835000157356, + -0.006453917361795902, + -0.015985732898116112, + 0.001990159275010228, + 0.023688534274697304, + -0.002393025439232588, + -0.006292770616710186, + -0.0038232007063925266, + 0.02193203754723072, + 0.00995885394513607, + -0.035516686737537384, + -0.010458407923579216, + 0.010410063900053501, + 0.010256974957883358, + -0.010337547399103642, + 0.028265096247196198, + 0.012521082535386086, + -0.007424824871122837, + -0.019756561145186424, + 0.01571178436279297, + -0.010329490527510643, + 0.01733936369419098, + 0.0020707324147224426, + -0.009419012814760208, + 0.04051223024725914, + 0.009410955011844635, + 0.02260885387659073, + -0.010917674750089645, + -0.0025763295125216246, + -0.006308885291218758, + 0.004918996710330248, + 0.012585541233420372, + 0.001196512719616294, + 1.4202609008862055e-6, + 0.005313805770128965, + 0.006147739011794329, + -0.004209952428936958, + -0.01872522383928299, + 0.013318757526576519, + 0.01446289848536253, + -0.01646917127072811, + 0.010087770409882069, + -0.009386783465743065, + -0.005922133568674326, + -0.002944952342659235, + 0.006949442904442549, + -0.010426178574562073, + -0.04280050843954086, + 0.005350063554942608, + -0.0076504298485815525, + 0.009991082362830639, + -0.007767261005938053, + 0.0030174681451171637, + -0.016775351017713547, + 0.0018753423355519772, + 0.009684904478490353, + -0.013415445573627949, + -0.004983455408364534, + -0.005370207130908966, + -0.011183567345142365, + -0.03625796362757683, + -0.005523296073079109, + -0.011747580021619797, + -0.0019780732691287994, + -8.529433398507535e-5, + 0.0036116959527134895, + 0.006103423424065113, + 0.0051244585774838924, + 0.013326815329492092, + -0.02355961874127388, + -0.017033183947205544, + 0.0075094266794621944, + 0.014632102102041245, + 0.020191656425595284, + 0.007001815363764763, + 0.0022641082759946585, + 0.013890828005969524, + 0.021722547709941864, + -0.003990390338003635, + -0.012923949398100376, + -0.0025642437394708395, + -0.01149780210107565, + 0.01795171946287155, + -0.020288344472646713, + 0.007038073148578405, + -0.01858019083738327, + -0.008266814984381199, + -0.01666254736483097, + 0.002177492016926408, + 0.0022238215897232294, + -0.005398407578468323, + -0.005700557492673397, + 0.0019518869230523705, + -0.002944952342659235, + 0.016211338341236115, + -0.008895286358892918, + 0.00042552745435386896, + 0.004107221495360136, + 0.01161060482263565, + 0.015180000104010105, + 0.00286639342084527, + -0.006034936290234327, + 0.003692269092425704, + 0.009233694523572922, + -0.03195535019040108, + 0.0012096058344468474, + -0.023253438994288445, + -0.023140637204051018, + 0.003599609946832061, + 0.007074331399053335, + -0.02049783430993557, + -0.0032813455909490585, + 0.006731894798576832, + -0.002463527023792267, + 0.0021372053306549788, + -0.004786050878465176, + -0.016533629968762398, + 0.021915923804044724, + -0.0029872532468289137, + -0.01170729286968708, + 0.003124227747321129, + 0.01772611401975155, + -0.0019962021615356207, + -0.005229203961789608, + 0.0035411943681538105, + -0.007162961643189192, + 0.006079251412302256, + 0.007142818532884121, + 0.03467872738838196, + -0.006183996796607971, + 0.003384076524525881, + 0.004371098708361387, + -0.004761878866702318, + -0.0009311246103607118, + 0.009475413709878922, + -0.01039394922554493, + 0.02720152959227562, + -0.02011108212172985, + 0.014752961695194244, + 0.012263248674571514, + 0.016646433621644974, + -0.0017393749440088868, + 0.00891140103340149, + -0.013278471305966377, + 0.02528388611972332, + -0.020820127800107002, + 0.0019569227006286383, + -0.018451273441314697, + -0.007819633930921555, + -0.0060147931799292564, + -0.00231043784879148, + 2.8169162760605104e-5, + -0.013931114226579666, + 0.03006993606686592, + -0.024268662557005882, + -0.0006556648295372725, + -0.010482579469680786, + 0.0006244426476769149, + -0.011755636893212795, + -0.006768153049051762, + -0.020320573821663857, + 0.010136114433407784, + 0.006147739011794329, + 0.023688534274697304, + 0.019853249192237854, + -0.0009180314373224974, + -0.009072547778487206, + 0.005120430141687393, + 0.01704929955303669, + -0.03319617733359337, + -0.007992866449058056, + -0.009950796142220497, + -7.648163591511548e-5, + 0.005470923613756895, + -0.012658057734370232, + 0.001452332828193903, + -0.015768185257911682, + -0.00681246817111969, + 0.012174617499113083, + -0.009805764071643353, + 0.004145493730902672, + -0.002491727704182267, + 0.0073079937137663364, + -0.00044239748967811465, + 0.009644618257880211, + -0.007602085825055838, + -0.013278471305966377, + 0.008822770789265633, + 0.01493827998638153, + 0.013222070410847664, + -0.009443184360861778, + -0.011521974578499794, + 0.014519299380481243, + 0.0165175162255764, + 0.018983056768774986, + -0.002795891836285591, + -0.0013435588916763663, + 0.010095828212797642, + 0.005809331312775612, + 0.0016749163623899221, + 0.00751748401671648, + -0.005076114553958178, + -0.0031927148811519146, + -0.0010968033457174897, + -0.004729649517685175, + 0.018161209300160408, + -0.040737833827733994, + -0.02125522308051586, + 0.004020605236291885, + 0.01298035029321909, + -0.007847834378480911, + 0.007505398243665695, + -0.007062245160341263, + 0.016888152807950974, + 0.002908694325014949, + 0.004181751515716314, + 0.011312483809888363, + 0.003220915561541915, + -0.002979195909574628, + -0.015582866035401821, + -0.0017857046332210302, + 0.0030577548313885927, + -0.008951688185334206, + 0.0005428622826002538, + 0.022254331037402153, + 0.000275711587164551, + 0.0042502386495471, + 0.003662054194137454, + -0.004367070272564888, + 0.01644499972462654, + -0.01991770789027214, + 0.014027802273631096, + 0.0053540924564003944, + -0.003160485764965415, + -0.005269490648061037, + 0.0070179300382733345, + -0.017774458974599838, + 0.014245349913835526, + -0.022673312574625015, + -0.010563152842223644, + -0.0051244585774838924, + -0.01360076479613781, + -0.016195222735404968, + -0.0009109812672249973, + -0.000448440492618829, + -3.0466759199043736e-5, + -0.026750318706035614, + 0.004987484309822321, + -0.007916321977972984, + 0.0066593787632882595, + 0.006131624337285757, + -0.0008893272024579346, + 0.006856783293187618, + 0.014777134172618389, + 0.0006244426476769149, + -0.014454840682446957, + 0.00638140132650733, + 0.007316051051020622, + -0.0020334674045443535, + 0.0013304657768458128, + 0.011481688357889652, + -0.0073200794868171215, + -0.03126242011785507, + 0.008774426765739918, + 0.005962420254945755, + -0.009829936549067497, + 0.023817451670765877, + -0.006957499776035547, + 0.006079251412302256, + 0.013689395040273666, + 0.006111480761319399, + 0.003335732501000166, + 0.011723407544195652, + -0.0019216720247641206, + 0.005172802601009607, + 0.016267739236354828, + -0.007364395074546337, + -0.010732356458902359, + 0.0102972611784935, + -0.005257404409348965, + 0.0004980433732271194, + -0.025122739374637604, + 0.003702340880408883, + -0.0008817734778858721, + 0.005942277144640684, + 0.008975859731435776, + 0.0018451274372637272, + -0.0036721257492899895, + -0.010095828212797642, + -0.02853904478251934, + 0.011932898312807083, + 0.013874713331460953, + 0.0036539968568831682, + -0.01072429958730936, + 0.007428853306919336, + -0.0066875796765089035, + 0.012480796314775944, + -0.017967835068702698, + -0.007364395074546337, + -0.0006642257212661207, + -0.0033035031519830227, + 0.008419904857873917, + 0.027797771617770195, + 0.010877388529479504, + -0.009991082362830639, + 0.0025884155184030533, + 0.008943630382418633, + -0.011932898312807083, + 0.008798598311841488, + -0.01649334467947483, + -0.016332197934389114, + -0.0009547930094413459, + 0.010426178574562073, + 0.016727006062865257, + 0.002789848716929555, + -0.003476735670119524, + 0.013125382363796234, + 0.017419936135411263, + 0.010780700482428074, + 0.005229203961789608, + 0.011102993972599506, + 0.011433344334363937, + 0.01501079648733139, + -0.012690287083387375, + 0.01247273851186037, + -0.033550702035427094, + 0.027120955288410187, + 0.005942277144640684, + -0.021303566172719002, + 0.0016235510120168328, + -0.0077108596451580524, + -0.00289660831913352, + -0.0227538850158453, + -0.012287420220673084, + -0.01515582762658596, + 0.0008480334654450417, + -0.02720152959227562, + -0.00391585985198617, + -0.0005534375086426735, + -0.012891720049083233, + -0.002600501524284482, + 0.012013471685349941, + -0.010667897760868073, + -0.013874713331460953, + 0.007811576593667269, + 0.014245349913835526, + 0.004451672080904245, + 0.006208168808370829, + -0.0011431329185143113, + 0.005168773699551821, + -0.011175509542226791, + 0.0067882961593568325, + 0.010885445401072502, + 0.01680758036673069, + -0.01597767509520054, + 0.002109004883095622, + -0.003617738839238882, + 0.01525251567363739, + -0.017403822392225266, + 0.0046732486225664616, + 0.003970246762037277, + -0.018886368721723557, + 0.012077930383384228, + 0.0037647851277142763, + -0.022141529247164726, + -0.011771751567721367, + -0.005011655855923891, + -0.0063975160010159016, + -0.020513949915766716, + -0.002175477799028158, + -0.005845589097589254, + 0.004520159214735031, + -0.025735095143318176, + 0.02763662487268448, + -0.005644156131893396, + 0.009725190699100494, + 0.037611592561006546, + 0.002129147993400693, + -0.006333057302981615, + -0.015002738684415817, + 0.0038272293750196695, + 0.002276194281876087, + 0.013592706993222237, + 0.029683183878660202, + -0.0005484016728587449, + 0.014205063693225384, + -0.01480130571871996, + 0.015453948639333248, + -0.0058657326735556126, + -0.00804926734417677, + -0.01920866221189499, + 0.02992490492761135, + -0.014648216776549816, + 0.0020949044264853, + 0.00438318494707346, + -0.0061678821220994, + -0.009410955011844635, + -0.010901560075581074, + 0.028958026319742203, + -0.014100318774580956, + -0.011223853565752506, + -0.019240891560912132, + 0.002425254788249731, + 0.0014624044997617602, + 0.03108515962958336, + 0.0014462898252531886, + -0.0005128990742377937, + 0.012891720049083233, + -0.0033256609458476305, + 0.0020213813986629248, + 0.021319681778550148, + 0.003863487159833312, + -0.008347388356924057, + -0.0009719147928990424, + 0.026411911472678185, + 0.007166990544646978, + 0.010804872959852219, + -0.023253438994288445, + 0.015381433069705963, + 0.002540071727707982, + 0.009137006476521492, + -0.007803519256412983, + 0.04102789983153343, + 0.009427069686353207, + -0.004242181312292814, + -0.012553311884403229, + 0.006498232483863831, + -0.030907897278666496, + -0.01534920372068882, + 0.0019297292456030846, + -0.016404712572693825, + -0.007763232570141554, + 0.015067197382450104, + 0.0008142933947965503, + 0.021996496245265007, + 0.023237325251102448, + -0.014624044299125671, + -0.00955598708242178, + 0.007682659197598696, + -0.00048570561921224, + 0.006171911023557186, + 0.007872005924582481, + -0.0017685828497633338, + -0.0004713535017799586, + 0.005370207130908966, + -0.007896178402006626, + 0.021319681778550148, + -0.005789187736809254, + 0.0015792356571182609, + -0.002685103565454483, + -0.02724987268447876, + -0.01608242094516754, + 0.001828005537390709, + -0.01563926786184311, + 0.011538089253008366, + -0.021899808198213577, + -0.011747580021619797, + -0.0018018193077296019, + 0.020320573821663857, + 0.018596306443214417, + 0.011505859903991222, + 0.007138789631426334, + 0.015115541405975819, + 0.010152229107916355, + 0.00020193670934531838, + 0.01082098763436079, + -0.02217375859618187, + 0.002419211668893695, + 0.020191656425595284, + 0.007646401412785053, + -0.0036741402000188828, + 0.027362674474716187, + -0.006836640182882547, + 0.0005353084998205304, + -0.011457515880465508, + -0.016968725249171257, + -0.011570318602025509, + 0.005599840544164181, + -0.004850509576499462, + -0.00329746026545763, + 0.03155248239636421, + -0.0014684475027024746, + -0.016235509887337685, + -0.00514863058924675, + -0.006913184653967619, + 0.019498726353049278, + 0.0051043154671788216, + 0.009918566793203354, + 0.02049783430993557, + -0.005072086118161678, + 0.006880955304950476, + 0.0016970740398392081, + 0.026653630658984184, + 0.004786050878465176, + -0.01027308963239193, + -0.004119307268410921, + 0.0011652905959635973, + 0.0021170619875192642, + -0.005213089287281036, + 0.014027802273631096, + 0.010329490527510643, + 0.0029328663367778063, + -0.006453917361795902, + 0.02078789845108986, + 0.016235509887337685, + 0.0014422611566260457, + 0.019692102447152138, + 0.004927054047584534, + -0.014615987427532673, + 0.0005786166293546557, + -0.008210414089262486, + 0.027233757078647614, + 0.0007790426025167108, + -0.009298153221607208, + 0.004222038201987743, + -0.006123567000031471, + -0.01935369335114956, + -0.022157642990350723, + 0.0034203343093395233, + 0.012376051396131516, + 0.018950827419757843, + -0.027427133172750473, + 0.01829012669622898, + 0.012682229280471802, + 0.016477229073643684, + -0.013512133620679379, + 0.004790079779922962, + 0.012126273475587368, + -0.008822770789265633, + -0.01020057313144207, + 0.024107515811920166, + 0.012488853186368942, + 0.0227538850158453, + -3.119065877399407e-5, + 0.010232802480459213, + -0.01135277096182108, + 0.017323248088359833, + 0.0040024761110544205, + 0.005084171891212463, + 0.007775318343192339, + -0.0055555254220962524, + -0.009966910816729069, + -0.004375127609819174, + -0.0025320143904536963, + 0.015236400999128819, + -0.01600184664130211, + -0.027652738615870476, + 0.001470461837016046, + 0.017661655321717262, + 0.023640191182494164, + 0.03587121143937111, + -0.002521942602470517, + 0.0017091600457206368, + -0.005748901050537825, + -0.008516591973602772, + 0.019659873098134995, + 0.0007201234111562371, + -0.0026730175595730543, + 0.000502323848195374, + 0.0005725736264139414, + -0.011143280193209648, + 0.002102961763739586, + -0.01758108288049698, + -0.010232802480459213, + 0.010998248122632504, + 0.005994649603962898, + -0.008085525594651699, + -0.0018914570100605488, + 0.005958391819149256, + 0.00751748401671648, + 0.003309546271339059, + 0.004628933034837246, + -0.024784332141280174, + -0.020868470892310143, + 0.0013103224337100983, + -0.02270554192364216, + 0.005414522252976894, + -0.009539872407913208, + -0.01833847165107727, + -4.979174991603941e-5, + -0.014108375646173954, + 0.01719433069229126, + 0.00828292965888977, + -0.009153121151030064, + 0.005692500155419111, + -0.001211620168760419, + 0.03500102087855339, + -0.012633885256946087, + -0.02317286655306816, + 0.001883399672806263, + -0.005386321805417538, + 0.0054950956255197525, + -0.0010484594386070967, + 0.0014875836204737425, + -0.02207707054913044, + -0.008709968067705631, + -0.013181783258914948, + 0.005358120892196894, + 0.008347388356924057, + -0.005144601687788963, + 0.002904665656387806, + 0.0011380971409380436, + 0.001864263555034995, + -0.0074489968828856945, + -0.005241289734840393, + -0.013608821667730808, + 0.005982563830912113, + 0.0005655235145241022, + 0.01074847113341093, + 0.007316051051020622, + 0.01809675246477127, + -0.00740065285935998, + 0.011215795762836933, + -0.007876034826040268, + 0.030827324837446213, + -0.014277579262852669, + 0.013882771134376526, + 0.005084171891212463, + -0.001377802575007081, + -0.007658487185835838, + 0.006663407664746046, + -0.005769044626504183, + 0.015800414606928825, + 0.007992866449058056, + 0.020675094798207283, + 0.005092229228466749, + 0.016461115330457687, + -0.005213089287281036, + -0.01051480881869793, + -0.02629910781979561, + 0.012231019325554371, + 0.0037869426887482405, + -0.006038965191692114, + -0.0014724761713296175, + -0.0011048606829717755, + -0.004419442731887102, + 0.006304856855422258, + 0.003599609946832061, + -0.0041293790563941, + 0.0023043949622660875, + 0.009934681467711926, + 0.005507181398570538, + -0.012102101929485798, + 0.00025808619102463126, + -0.013874713331460953, + 0.0025118710473179817, + -0.005273519083857536, + 0.02015942707657814, + -0.02481655962765217, + 0.0017474322812631726, + 0.01996605098247528, + -0.0165175162255764, + 0.01724267564713955, + -0.00845213420689106, + 0.030134394764900208, + -0.0003013943205587566, + -0.005390350241214037, + -0.010434235446155071, + -0.005769044626504183, + 0.018016178160905838, + -0.026685860008001328, + -0.01877356693148613, + 0.01544589176774025, + 0.015316974371671677, + -0.027088725939393044, + -0.0028764649759978056, + 0.0058657326735556126, + -0.0010837102308869362, + -0.0019116003531962633, + -0.010144172236323357, + 0.005076114553958178, + 0.018612420186400414, + -0.00859716534614563, + -0.0019095860188826919, + 0.02312452159821987, + -0.010587324388325214, + 0.009298153221607208, + -0.0046933917328715324, + -0.00175750395283103, + -0.01896694302558899, + -1.2259093637112528e-5, + -0.008246672339737415, + 0.006981671787798405, + -0.013802197761833668, + -0.0165175162255764, + -0.014873821288347244, + 0.005974506493657827, + -0.004721592180430889, + -0.020949045196175575, + -0.020175540819764137, + -0.013866656459867954, + -0.006510318256914616, + 0.010949904099106789, + -0.014446783810853958, + -0.020368916913866997, + 0.006808439269661903, + -0.014100318774580956, + -0.0009205493843182921, + 0.008516591973602772, + 0.002423240337520838, + 0.002423240337520838, + -0.00450001610442996, + 0.005744872614741325, + 0.011908725835382938, + 0.015453948639333248, + -0.0085004772990942, + -0.0017675756243988872, + -0.0030073965899646282, + -0.009169235825538635, + 0.0036539968568831682, + -0.015180000104010105, + -0.015300859697163105, + -0.010039426386356354, + 0.024317005649209023, + -0.021480828523635864, + 0.005301719531416893, + 0.0033176036085933447, + -0.021045733243227005, + -0.026041273027658463, + 0.01522834412753582, + -0.003702340880408883, + -0.035548917949199677, + 0.0037426273338496685, + 0.004959283396601677, + 0.00505194254219532, + -0.009491528384387493, + 0.02140025421977043, + -0.00671578012406826, + -0.003992404323071241, + 0.0123357642441988, + -0.004943168722093105, + -0.01656585931777954, + -0.0011834196047857404, + 0.0033478185068815947, + -0.022479936480522156, + 0.034936562180519104, + -0.01573595590889454, + -0.02936089225113392, + -0.01872522383928299, + 0.00702598737552762, + 0.016888152807950974, + -0.018564077094197273, + -0.02749159187078476, + 0.006623120978474617, + -0.006405573338270187, + 0.025928471237421036, + -0.00931426789611578, + -0.0013365087797865272, + 0.01556675136089325, + -0.017742229625582695, + 0.01853184774518013, + 0.014503184705972672, + -0.008029123768210411, + 0.008887229487299919, + 0.014865764416754246, + 0.009290095418691635, + 0.0015883001033216715, + 0.009797707200050354, + 0.007324108388274908, + 0.012504967860877514, + 0.0017021098174154758, + 0.006385429762303829, + -0.006055079400539398, + -0.008967802859842777, + 0.00354320858605206, + 0.018886368721723557, + 0.007545684929937124, + 0.00902420375496149, + -0.015059140510857105, + -0.017548853531479836, + 0.0009704040712676942, + -0.005039856769144535, + -0.007130732294172049, + -0.01704929955303669, + 0.009330382570624352, + 0.021706433966755867, + -0.004330812022089958, + -0.0007271735812537372, + -0.03290611505508423, + 0.0006949442904442549, + -0.02724987268447876, + -0.0008757304749451578, + 0.0009633539011701941, + 0.0021372053306549788, + -0.006675493437796831, + 0.023156750947237015, + 0.0014573686057701707, + -0.014865764416754246, + -0.02207707054913044, + 0.0038211862556636333, + 0.02810394950211048, + 0.0062283119186758995, + 0.01967598684132099, + -0.005599840544164181, + 0.010152229107916355, + -0.028071720153093338, + -0.01590515859425068, + -0.015147770754992962, + 0.013173726387321949, + -0.013753853738307953, + -0.00329746026545763, + 0.0014664331683889031, + -0.00924175139516592, + 0.010023311711847782, + 0.02351127378642559, + -0.03500102087855339, + -0.012053757905960083, + -0.01964375749230385, + 0.001004647696390748, + -0.00659894896671176, + -0.009265923872590065, + 0.0022238215897232294, + -0.0016094506718218327, + 0.004882738925516605, + -0.01372162438929081, + -0.006079251412302256, + -0.021706433966755867, + -0.008230557665228844, + 0.022093184292316437, + -0.0170009545981884, + -0.017516624182462692, + -0.0030617835000157356, + 0.015655381605029106, + 0.008210414089262486, + 0.0013546377886086702, + -0.00687289796769619, + 0.0004157076182309538, + 0.015550636686384678, + -0.018419044092297554, + 0.008564935997128487, + 0.012319649569690228, + -0.02265719696879387, + -0.02413974516093731, + 0.010313375853002071, + 0.0186768788844347, + 0.0004688355838879943, + 0.010498694144189358, + -0.02958649769425392, + -0.006699665449559689, + 0.017887260764837265, + 0.006820525508373976, + 0.009717133827507496, + 0.018886368721723557, + -0.016791464760899544, + 0.00022887838713359088, + -0.0359034389257431, + -0.00650226091966033, + 0.018709108233451843, + 0.01307703834027052, + 0.01406003162264824, + -0.04012547805905342, + -0.006272627506405115, + -0.006006735842674971, + -0.013165668584406376, + 0.014108375646173954, + -0.02671808935701847, + 0.02127133682370186, + 0.01084515918046236, + -0.004107221495360136, + -0.01493827998638153, + 0.00671578012406826, + 0.0014422611566260457, + -0.026556942611932755, + -0.01074847113341093, + 0.0038916878402233124, + -0.01964375749230385, + -0.013882771134376526, + 0.00520906038582325, + 0.016968725249171257, + -0.009725190699100494, + -0.008605223149061203, + 0.011981242336332798, + 0.023301783949136734, + -0.019692102447152138, + -0.013423503376543522, + 0.008774426765739918, + 0.004145493730902672, + 0.005019713193178177, + -0.0027878344990313053, + 0.0023386385291814804, + -0.04238152876496315, + -0.016130764037370682, + 0.02260885387659073, + -0.006615063641220331, + -0.02207707054913044, + 0.009451242163777351, + 0.012384108267724514, + 0.011521974578499794, + 0.007336194161325693, + 0.003952117636799812, + 0.0042139808647334576, + -0.012110158801078796, + 0.032068151980638504, + 0.004467786755412817, + -0.0042744106613099575, + 0.01580847054719925, + 0.009733248502016068, + 0.0044033280573785305, + -0.013117324560880661, + -0.0005131508805789053, + 0.0007322094170376658, + 0.009966910816729069, + -0.02916751615703106, + 0.003980318550020456, + -0.017065413296222687, + 0.0076383440755307674, + -0.017081528902053833, + 0.0060147931799292564, + 0.0023426671978086233, + 0.0077511463314294815, + -0.010248917154967785, + 0.01935369335114956, + -0.0026246735360473394, + -0.013931114226579666, + 0.017307134345173836, + 0.014479013159871101, + -0.015091369859874249, + 0.010893503203988075, + 3.248108987463638e-5, + 0.015913216397166252, + 0.026025159284472466, + 0.003577452152967453, + 0.00357342348434031, + -0.01862853579223156, + -0.015631210058927536, + -0.002332595642656088, + 0.019708216190338135, + -0.0021895780228078365, + 0.010498694144189358, + -0.0232212096452713, + -0.02481655962765217, + -0.0024856848176568747, + -0.012649999931454659, + -0.026444140821695328, + 0.0025682724080979824, + 0.0037063693162053823, + 0.008556879125535488, + 0.003851401386782527, + 0.01470461767166853, + 0.008951688185334206, + -0.008182213641703129, + 0.0028140207286924124, + -0.012940064072608948, + 8.586086914874613e-5, + -0.01940203830599785, + 0.006091337651014328, + 0.008323216810822487, + 0.005990621168166399, + 0.022093184292316437, + 0.012529140338301659, + -0.00013244227739050984, + 0.01182815246284008, + 0.004020605236291885, + -0.013802197761833668, + -0.018886368721723557, + -0.010087770409882069, + 0.009354554116725922, + -0.01940203830599785, + 0.02169031836092472, + -0.024784332141280174, + 0.02149694226682186, + -0.003432420315220952, + 0.0006450895452871919, + -0.017919490113854408, + -0.010063598863780499, + 0.009096719324588776, + 0.00032732883119024336, + 0.010555095970630646, + -0.006893041543662548, + 0.013447674922645092, + 0.028265096247196198, + 0.0017826830735430121, + 0.002425254788249731, + 0.004999570082873106, + -0.023785222321748734, + 0.012915891595184803, + -0.014777134172618389, + 0.012964235618710518, + 0.016171051189303398, + -0.01824178360402584, + 0.015462006442248821, + 0.01622745208442211, + 0.007150875870138407, + -0.00995885394513607, + 0.002076775534078479, + -0.024220317602157593, + 0.02202872559428215, + -0.020513949915766716, + 0.011521974578499794, + -0.002900636987760663, + -0.01321401260793209, + -0.02418808825314045, + 0.020030509680509567, + 0.005958391819149256, + -0.02433312125504017, + 0.006929299328476191, + 0.026556942611932755, + 0.016187164932489395, + -0.010547038167715073, + 0.017758343368768692, + 0.010087770409882069, + -0.003966218326240778, + -0.0030597690492868423, + 0.007477197330445051, + -0.03361516073346138, + 0.02734656073153019, + 0.01298035029321909, + 0.0014382324879989028, + -0.03219706937670708, + 0.011344713158905506, + -0.02270554192364216, + 0.0022278502583503723, + 0.018934713676571846, + -2.5651248506619595e-5, + -0.001087738899514079, + 0.009362611919641495, + -0.010063598863780499, + 0.009878280572593212, + -0.00034772392245940864, + -0.00477799354121089, + 0.004350955598056316, + 0.0022016640286892653, + -0.004242181312292814, + -0.016453057527542114, + -0.021915923804044724, + -0.01578429900109768, + 0.0029872532468289137, + -0.010063598863780499, + -0.008218470960855484, + -0.0032793311402201653, + -0.015163885429501534, + 0.008021066896617413, + -0.013367101550102234, + 0.026250764727592468, + 0.005301719531416893, + 0.011940955184400082, + 0.01838681474328041, + 0.0036942835431545973, + 0.012496910989284515, + 0.009185350500047207, + -0.010281146503984928, + 0.002199649577960372, + 0.014140604995191097, + -0.0008898308151401579, + 0.015421719290316105, + 0.00900003220885992, + -0.0068769268691539764, + -0.0146079296246171, + -0.004540302325040102, + 0.0011229896917939186, + 0.0007437918102368712, + 0.004790079779922962, + -0.007654458750039339, + 0.020997388288378716, + 0.03535554185509682, + 0.031214077025651932, + 0.007634315174072981, + 0.01439038198441267, + -0.005140573251992464, + -0.02509051002562046, + -0.0026569028850644827, + 0.013052865862846375, + -0.026782548055052757, + 0.00857299380004406, + -0.019756561145186424, + 0.01982101984322071, + 0.009789649397134781, + 0.023301783949136734, + -0.0016477229073643684, + 0.016581974923610687, + -0.005946305580437183, + -0.006453917361795902, + -0.009298153221607208, + 0.017258789390325546, + -0.0289741400629282, + 0.018177324905991554, + 0.022060954943299294, + 0.011505859903991222, + -0.00890334416180849, + -0.00876636989414692, + -0.007473168894648552, + 0.002870422089472413, + -0.00857299380004406, + 0.009169235825538635, + -0.01084515918046236, + -0.021045733243227005, + 0.008468247950077057, + 0.0008591122459620237, + 0.002900636987760663, + 0.021222993731498718, + 0.006389458663761616, + -0.0010172373149544, + 0.0006153782014735043, + -0.014632102102041245, + 0.016114650294184685, + -0.0005529338959604502, + -0.007827690802514553, + -0.000599767139647156, + -0.008444076403975487, + -0.022786114364862442, + -0.024026943370699883, + 0.018564077094197273, + 0.006679522339254618, + 0.01972433179616928, + 0.008117754943668842, + -0.019595414400100708, + -0.02098127454519272, + -0.016477229073643684, + -0.04089898243546486, + -0.011538089253008366, + -0.00548300938680768, + 0.016872039064764977, + -0.015300859697163105, + 0.014116433449089527, + 0.01096601877361536, + 0.017307134345173836, + 0.012553311884403229, + -0.002822078065946698, + 0.0011652905959635973, + -0.0068769268691539764, + 0.007291879039257765, + 0.013673280365765095, + 0.00471756374463439, + -0.009370668791234493, + 0.008178184740245342, + 0.0013193869963288307, + 0.011844267137348652, + -0.007477197330445051, + 0.005180859938263893, + -0.012069872580468655, + 0.01406003162264824, + 0.015389490872621536, + -0.0009039311553351581, + -0.01597767509520054, + 0.014624044299125671, + -0.020465604960918427, + 0.0029953105840831995, + 0.0011209753574803472, + 0.011199681088328362, + -0.010885445401072502, + -0.000241467947489582, + -0.005470923613756895, + 0.007972722873091698, + 0.0015943431062623858, + -0.0012136345030739903, + -0.00945929903537035, + -0.010651783086359501, + -0.010402006097137928, + 0.012851432897150517, + -0.013471847400069237, + -0.007819633930921555, + 0.0010645739967003465, + 0.0054064649157226086, + 0.009467356838285923, + -0.013294585980474949, + 0.03135911002755165, + -0.005869761109352112, + -0.00115521892439574, + -0.0024836703669279814, + 0.00702598737552762, + 0.005221146624535322, + 0.021722547709941864, + 0.010925732553005219, + -0.002890565199777484, + -0.013302643783390522, + -0.010772643610835075, + -0.00029232981614768505, + -0.019144203513860703, + -0.0002714311413001269, + -0.00890334416180849, + 0.002644816879183054, + 0.0040125478990375996, + 0.01982101984322071, + -0.009829936549067497, + -0.027088725939393044, + -0.00588990468531847, + -0.02217375859618187, + -0.015051082707941532, + 0.004914968274533749, + -0.015848757699131966, + 0.02270554192364216, + -0.0008540764101780951, + -0.01925700716674328, + -0.017113758251070976, + -0.01972433179616928, + -0.005511210300028324, + 0.019837133586406708, + -0.0012791003100574017, + -0.031052930280566216, + -0.0025682724080979824, + -0.00955598708242178, + -0.02480044588446617, + -0.023301783949136734, + 0.008182213641703129, + -0.005728757940232754, + 0.007336194161325693, + -0.030778981745243073, + -0.010974076576530933, + -0.0017836902989074588, + -0.008057325147092342, + -0.02438146434724331, + -0.0012005413882434368, + -0.0004489440761972219, + 0.017307134345173836, + -0.003960174974054098, + 0.03247101977467537, + -0.0017393749440088868, + 0.026927579194307327, + -0.023495160043239594, + 0.024929363280534744, + -0.0007276771357282996, + 0.020658981055021286, + -0.01602601818740368, + -0.004218009766191244, + 0.018209554255008698, + 0.009612388908863068, + 0.003656011074781418, + 0.008718025870621204, + -0.0027717198245227337, + -0.015526465140283108, + 0.016549745574593544, + 0.0012811146443709731, + 0.010917674750089645, + -0.002165406011044979, + -0.0056844428181648254, + 0.012835318222641945, + -0.015180000104010105, + 0.012343822047114372, + -0.012730573303997517, + 0.014003630727529526, + 0.011739522218704224, + 0.017693884670734406, + -0.0012186703970655799, + 0.03050503134727478, + 0.005192945711314678, + 0.014309808611869812, + -0.03812726214528084, + -0.002934880554676056, + 0.008701911196112633, + -0.010643726214766502, + -0.027507707476615906, + -0.01096601877361536, + 0.013979458250105381, + -0.013713566586375237, + 0.006760095711797476, + 0.0036056528333574533, + 0.02724987268447876, + -0.01719433069229126, + 0.01393917202949524, + 0.010458407923579216, + 0.009999140165746212, + -0.010684012435376644, + -0.03295445814728737, + -0.017323248088359833, + 0.001091767568141222, + 0.0019478582544252276, + -0.003666082862764597, + -0.02317286655306816, + 0.04624904319643974, + 0.021077962592244148, + 0.0039017596282064915, + -0.0019398009171709418, + 0.01637248322367668, + -0.03487210348248482, + 0.00038448546547442675, + 0.0033155891578644514, + -0.008846942335367203, + -0.00462087569758296, + 0.0085004772990942, + 0.0029429378919303417, + 0.008492420427501202, + -0.021674204617738724, + -0.005184888374060392, + -0.009781592525541782, + -0.00010638186358846724, + 0.008919458836317062, + 0.0007125696865841746, + -0.017855031415820122, + -0.01493827998638153, + -0.018451273441314697, + 0.006780238822102547, + 0.0020828184206038713, + 0.06104229390621185, + 0.0368703193962574, + 0.011957069858908653, + 0.0072475639171898365, + 0.009950796142220497, + -0.042639363557100296, + 0.0026911464519798756, + 0.0024171974509954453, + -0.003873558947816491, + -0.008363503031432629, + 0.00367011153139174, + 0.0028784791938960552, + 0.011530031450092793, + 0.011916783638298512, + -0.022157642990350723, + -0.006474060472100973, + -0.013068980537354946, + -0.00172728905454278, + -0.0049351113848388195, + 0.011425286531448364, + -0.0017635469557717443, + -0.01872522383928299, + -0.004548359662294388, + -0.0023084236308932304, + 0.0015329060843214393, + 0.005503152962774038, + 0.009370668791234493, + -0.013890828005969524, + -0.018257897347211838, + 0.002975167240947485, + 0.01547006331384182, + -0.003954132087528706, + -0.018902484327554703, + 0.017613312229514122, + -0.009668789803981781, + 0.0032632164657115936, + -0.00953181553632021, + 0.01738770678639412, + 0.009733248502016068, + 0.010498694144189358, + -0.013729681260883808, + -0.019224777817726135, + 0.01525251567363739, + -0.017258789390325546, + -0.0033820620737969875, + 0.002165406011044979, + 0.015550636686384678, + -0.00551926763728261, + -0.009169235825538635, + -0.007062245160341263, + -0.014100318774580956, + -0.0049753980711102486, + 0.0007387559744529426, + 0.005136544816195965, + 0.0026569028850644827, + 0.014873821288347244, + 0.02140025421977043, + -0.014213120564818382, + -0.002332595642656088, + -0.005837531760334969, + 0.0001678189728409052, + 0.007126703858375549, + 0.0024474123492836952, + 0.013536306098103523, + 0.005982563830912113, + 0.04099566861987114, + 0.004451672080904245, + 0.002671003108844161, + -0.003079912392422557, + 0.007916321977972984, + 0.016936495900154114, + -0.03989987447857857, + -0.029667070135474205, + -0.011441401205956936, + -0.03221318498253822, + -0.019031401723623276, + -0.005821417085826397, + -0.028748534619808197, + -0.021964266896247864, + 0.016694776713848114, + 0.01384248398244381, + -0.017307134345173836, + -0.0015510349767282605, + -0.0026528742164373398, + -0.01364910788834095, + -0.010031369514763355, + -0.006204139906913042, + -0.009016146883368492, + 0.015824586153030396, + -0.002179506467655301, + 0.0035452230367809534, + 0.0010897532338276505, + -0.010345605202019215, + 0.012069872580468655, + 0.017838917672634125, + -0.010716241784393787, + -0.0051043154671788216, + 0.010474522598087788, + 0.005744872614741325, + 0.019418152049183846, + -0.004318726249039173, + 0.012110158801078796, + 0.030247196555137634, + 0.00013760400179307908, + -0.007283821702003479, + -0.02824898064136505, + 0.012915891595184803, + -0.0047941082157194614, + -0.015840699896216393, + 0.019514840096235275, + -0.005192945711314678, + 0.007295907475054264, + -0.0012287420686334372, + 0.003577452152967453, + -0.0067762103863060474, + 0.01602601818740368, + -0.0003708887379616499, + 0.011892611160874367, + 0.018805796280503273, + 0.01620328053832054, + -0.01583264395594597, + 0.011892611160874367, + 0.024977706372737885, + -0.00225000805221498, + 0.010909617878496647, + 0.007082388736307621, + 0.001682973699644208, + 0.014116433449089527, + -0.0018582205520942807, + -0.015244458802044392, + 0.02792668715119362, + -0.003521051025018096, + -0.0009789649629965425, + 0.0012549282982945442, + 0.00010707429464673623, + -0.009112833999097347, + -0.007811576593667269, + -0.014736847020685673, + -0.005591783672571182, + -0.021996496245265007, + -0.006780238822102547, + 0.01896694302558899, + 0.019853249192237854, + -0.004725621081888676, + 0.0184351596981287, + 0.0066593787632882595, + -0.008935573510825634, + 0.015607038512825966, + -0.014897993765771389, + 0.008403790183365345, + -0.0029550238978117704, + -0.009547930210828781, + -0.009137006476521492, + 0.00286639342084527, + 0.008093582466244698, + 0.007690716534852982, + -0.0019105931278318167, + 0.009725190699100494, + -0.008363503031432629, + 0.00792840775102377, + -0.0007664530421607196, + -0.003510979237034917, + 0.006925270892679691, + 0.022963376715779305, + -0.0012801075354218483, + -0.011868439614772797, + 0.0018028264166787267, + 0.00012085986963938922, + -0.009564044885337353, + 0.004395270720124245, + 0.0016688733594492078, + -0.0016769306967034936, + 0.004689362831413746, + -0.004902882035821676, + 0.0028402069583535194, + -0.00650226091966033, + -0.0068487259559333324, + -0.003253144910559058, + -0.025590064004063606, + -0.006723837461322546, + 0.017871147021651268, + 0.010144172236323357, + 0.019337579607963562, + -0.00017512092017568648, + 0.00400650454685092, + -0.0020254100672900677, + -0.0009819865226745605, + -0.00271128979511559, + -0.005092229228466749, + -0.012932006269693375, + 0.01266611460596323, + 0.029473694041371346, + -0.0010857245652005076, + -0.013802197761833668, + 0.0028180493973195553, + 0.005172802601009607, + 0.014333981089293957, + 0.011513916775584221, + -0.014277579262852669, + 0.014156719669699669, + -0.0028623647522181273, + 0.010506751947104931, + 0.004983455408364534, + -0.006337086204439402 + ], + "845f2b9d-770b-4274-9e68-8c56039832e4": [ + -0.023768238723278046, + -0.010194401256740093, + -0.004546815063804388, + 0.022015418857336044, + -0.033934593200683594, + -0.02051500417292118, + -0.01469564251601696, + 0.01210146863013506, + -0.04170309379696846, + 0.03009241260588169, + 0.0012208390980958939, + 0.014723687432706356, + 0.002850085264071822, + -0.04820955917239189, + 0.010061186738312244, + 0.04032888263463974, + -0.04652685299515724, + 0.016490530222654343, + -0.005198863800615072, + 0.014415191486477852, + 0.062316253781318665, + 0.006471411325037479, + -0.046022042632102966, + 0.006236533634364605, + 0.0034144932869821787, + -0.0006178690236993134, + -0.009549363516271114, + -0.009465227834880352, + -0.04030083492398262, + 0.03270060941576958, + 0.042880985885858536, + 0.001666055410169065, + 0.007908723317086697, + 0.024076735600829124, + 0.005363629199564457, + -0.011645736172795296, + 0.02634838968515396, + 0.04520873352885246, + 0.009794757701456547, + -0.017556244507431984, + -0.05222001299262047, + 0.038449857383966446, + -0.022422073408961296, + -0.010965641587972641, + -0.042572490870952606, + 0.007873667404055595, + -0.002578398212790489, + -0.03242015838623047, + -0.0006353972130455077, + 0.0035599772818386555, + 0.004774681758135557, + -0.03486008197069168, + -0.011884119361639023, + 0.0019982147496193647, + -0.0006152397836558521, + -0.01571928896009922, + -0.021426470950245857, + 0.04173113778233528, + -0.019393200054764748, + -0.01570526696741581, + 0.009675566107034683, + -0.0076843625865876675, + -0.014155774377286434, + 0.019337110221385956, + -0.05939956381917, + -0.00428389199078083, + 0.024721773341298103, + 0.018664026632905006, + -0.0701688900589943, + -0.02428707294166088, + 0.030569180846214294, + 0.0688227191567421, + 0.000709015701431781, + 0.003223435953259468, + -0.009374081157147884, + -0.025170493870973587, + 0.030653314664959908, + -0.0008707133238203824, + 0.023726170882582664, + 0.007263686042279005, + -0.02908278815448284, + -0.001866753213107586, + -0.0012848170008510351, + -0.020921658724546432, + 0.05544520169496536, + -0.018607936799526215, + -0.029840007424354553, + -0.024357186630368233, + 0.012416976504027843, + -0.03045699931681156, + 0.013454645872116089, + 0.006138375494629145, + 0.004343487787991762, + 0.008778122253715992, + -0.020963726565241814, + 0.02288481779396534, + 0.007305753417313099, + 0.009479250758886337, + 0.01368601806461811, + -0.027470193803310394, + -0.016897184774279594, + 0.04655489698052406, + -0.01738797314465046, + 0.01981387659907341, + 0.009850848466157913, + 0.016967296600341797, + -0.0021770023740828037, + -0.017556244507431984, + -0.014260943047702312, + 0.09254889190196991, + -0.009023517370223999, + -0.01839759759604931, + 0.026895269751548767, + 0.01978583261370659, + -0.02766651101410389, + -0.05474407225847244, + 0.005318055860698223, + -0.015803424641489983, + -0.009563385508954525, + -0.029194969683885574, + 0.026432525366544724, + 0.043273620307445526, + -0.0057422383688390255, + 0.009956017136573792, + -0.03923512250185013, + 0.006804447155445814, + 0.003898271592333913, + -0.045657455921173096, + 0.01599973998963833, + 0.0075721824541687965, + -0.03752436861395836, + -0.008076994679868221, + -0.017626358196139336, + 0.012928799726068974, + -0.02459556981921196, + 0.005265471059828997, + 0.014569439925253391, + 0.04403083771467209, + -0.05393076315522194, + 0.016616733744740486, + -0.03438331559300423, + -0.03859008476138115, + -0.01713556796312332, + -0.0020823501981794834, + 0.014239909127354622, + -0.008862257935106754, + -0.02833959273993969, + 0.07398302853107452, + -0.006380264647305012, + 0.023305494338274002, + -0.02395053207874298, + -0.03348587080836296, + 0.04055324196815491, + -0.002147204475477338, + -0.0037720685359090567, + -0.0009395115193910897, + -0.03441135957837105, + -0.0005679136957041919, + 0.01008923165500164, + 0.017219703644514084, + 0.02598380297422409, + -0.0436382070183754, + -0.006769390776753426, + 0.04035692662000656, + 0.044171061366796494, + 0.018621958792209625, + 0.0005223403568379581, + 0.031298354268074036, + -0.038449857383966446, + 0.025703351944684982, + 0.039066851139068604, + -0.046695124357938766, + -0.0036563824396580458, + -0.0035073927138000727, + 0.018972523510456085, + -0.016897184774279594, + 0.027540307492017746, + 0.03721587359905243, + 0.021103952080011368, + -0.04776083678007126, + 0.00017155725799966604, + -0.010488874278962612, + 0.0019000568427145481, + 0.0160277858376503, + -0.0001474559830967337, + 0.03968384489417076, + 0.016855116933584213, + -0.004476702306419611, + 0.009682577103376389, + -0.02667090855538845, + -0.003838675795122981, + 0.00622251071035862, + -0.024777863174676895, + 0.020991772413253784, + -0.026152074337005615, + -0.01908470317721367, + 0.020585117861628532, + -0.025422900915145874, + -0.00973165687173605, + -0.006219005212187767, + -0.015410793013870716, + -0.04375038668513298, + -0.027540307492017746, + 0.041534822434186935, + -0.032924968749284744, + 0.01125310454517603, + -0.02489004284143448, + 0.01979985460639, + 0.03289692476391792, + -0.034719858318567276, + 0.026516661047935486, + -0.03976798057556152, + 0.013763142749667168, + -0.004364521708339453, + -0.02045891433954239, + 0.011344251222908497, + -0.03802918270230293, + 0.011533555574715137, + 0.02696538157761097, + -0.04018865525722504, + -0.002382082398980856, + -0.028802337124943733, + -0.003884249133989215, + -0.006751862354576588, + -0.03679519519209862, + -0.0062856124714016914, + 0.01143539696931839, + 0.02284274995326996, + -0.04708775505423546, + 0.017303839325904846, + 0.05883866176009178, + 0.0273439921438694, + -0.016995342448353767, + -0.03180316463112831, + 0.0069551896303892136, + 0.007354832720011473, + -0.011344251222908497, + 0.04302121326327324, + 0.016462484374642372, + -0.036683015525341034, + 0.010762314312160015, + 0.038814444094896317, + 0.018201282247900963, + 0.019351132214069366, + 0.017864741384983063, + 0.024343162775039673, + 0.04260053485631943, + 0.01265535969287157, + 0.020416846498847008, + -0.04349797964096069, + 0.02045891433954239, + 0.02561921626329422, + 0.005721204448491335, + -0.053425952792167664, + -0.028577975928783417, + 0.05435144156217575, + 0.004942952189594507, + -0.03418700024485588, + -0.004276880528777838, + -0.046274445950984955, + -0.012087446637451649, + 0.007705396506935358, + 0.03755241632461548, + -0.028942562639713287, + 0.013272352516651154, + -0.024539479985833168, + 0.0212161336094141, + -0.01574733480811119, + -0.0047992211766541, + 0.037384144961833954, + -0.0256612841039896, + 0.004122632555663586, + -0.008672953583300114, + -0.017289815470576286, + -0.03306519612669945, + 0.009051562286913395, + 0.023670081049203873, + -0.017542222514748573, + 0.0006936785066500306, + -0.011168968863785267, + -0.03867422044277191, + -0.007677351590245962, + -0.004956974647939205, + 0.02500222437083721, + -0.05022880807518959, + -0.0008027915610000491, + -0.015929628163576126, + -0.009766712784767151, + -0.028171323239803314, + -0.01197526603937149, + -0.005181335844099522, + 0.009927972219884396, + 0.017219703644514084, + 0.018257372081279755, + 0.02761041931807995, + 0.011225058697164059, + -0.03373827785253525, + 0.003730000928044319, + -0.0239084642380476, + 0.030204594135284424, + -0.05606219172477722, + 0.008168141357600689, + 0.02191726118326187, + -0.024034667760133743, + -0.015438837930560112, + -0.014934025704860687, + 0.041478730738162994, + 0.011645736172795296, + -0.039852116256952286, + -0.006471411325037479, + 0.002147204475477338, + 0.0013207498705014586, + -0.013363499194383621, + -0.009766712784767151, + -0.0022681490518152714, + 0.018341507762670517, + 0.0001493183517595753, + -0.012171581387519836, + -0.029475420713424683, + -0.007077887188643217, + 0.0327286534011364, + 0.0077544753439724445, + -0.049387454986572266, + 0.007291730958968401, + 0.009317991323769093, + -0.051350612193346024, + 0.014653574675321579, + -0.0021068896166980267, + -0.019617561250925064, + -0.0076002273708581924, + -0.03679519519209862, + -0.001290951855480671, + -0.024329140782356262, + -0.0026169600896537304, + 0.002531072124838829, + -0.0691031739115715, + 0.012430999428033829, + -0.03965579718351364, + -0.01741601899266243, + -0.031186172738671303, + -0.021987373009324074, + -0.032560382038354874, + -0.023487787693738937, + -0.005808845162391663, + 0.030232638120651245, + 0.0010779842268675566, + -0.041170235723257065, + 0.017331883311271667, + -0.0006906110793352127, + -0.03040090948343277, + 0.0007708025514148176, + -0.004837783053517342, + 0.02427305094897747, + 0.044900234788656235, + 0.04074955731630325, + -0.019547447562217712, + 0.015579063445329666, + -0.019729740917682648, + 0.02148256078362465, + -0.027077563107013702, + 0.034691814333200455, + -0.02498820051550865, + -0.007726430427283049, + -0.029952187091112137, + 0.009002483449876308, + 0.002161226933822036, + -0.009864870458841324, + -0.015284590423107147, + 0.018243350088596344, + 0.011575623415410519, + 0.019547447562217712, + 0.01449932623654604, + 0.00470106303691864, + -0.0043399822898209095, + -0.017261771485209465, + -0.026124028488993645, + 0.03208361566066742, + -0.03278474509716034, + -0.05695963650941849, + 0.010425773449242115, + -0.03859008476138115, + 0.011126901023089886, + 0.038113318383693695, + -0.018187260255217552, + 0.04282489791512489, + 0.017850717529654503, + 0.0021734966430813074, + 0.01779462769627571, + 0.023165268823504448, + 0.004550320561975241, + -0.03045699931681156, + 0.037384144961833954, + -0.033654142171144485, + 0.004466185346245766, + -0.03763655200600624, + 0.025801509618759155, + 0.005240931641310453, + 0.021664854139089584, + 0.02662884071469307, + -0.018860341981053352, + 0.017682448029518127, + 0.020374778658151627, + 0.01772451587021351, + 0.011519532650709152, + 0.020262598991394043, + -0.032924968749284744, + -0.02015041746199131, + -0.023810306563973427, + 0.02190323732793331, + 0.0031270307954400778, + -0.0047992211766541, + -0.024791885167360306, + -0.01574733480811119, + -0.0037580460775643587, + 0.02352985553443432, + -0.014779778197407722, + -0.002063069026917219, + -0.00337943690828979, + -0.046302493661642075, + -0.040104519575834274, + 0.03239211440086365, + 0.05407099053263664, + 0.005409202538430691, + 0.024833953008055687, + 0.041534822434186935, + 0.015985717996954918, + 0.02941933088004589, + 0.011659758165478706, + -0.02085154689848423, + -0.009205810725688934, + 0.02351583167910576, + 0.05222001299262047, + 0.019996169954538345, + -0.01231881882995367, + -0.008855246007442474, + -0.037720683962106705, + -0.025507036596536636, + 0.012746506370604038, + 0.014267954044044018, + -0.0032427168916910887, + 0.03558925539255142, + 0.009738667868077755, + 0.01073426939547062, + 0.005219897720962763, + -0.013784175738692284, + -0.023081133142113686, + -0.042179860174655914, + 0.009899927303195, + 0.0021980362944304943, + 0.020627185702323914, + -0.023403652012348175, + 0.049331363290548325, + -0.04209572449326515, + 0.023417674005031586, + 0.004932435229420662, + -0.015565041452646255, + 0.024735795333981514, + -0.04344189167022705, + 0.01553699653595686, + -0.04212376847863197, + -0.03564534708857536, + -0.01244502142071724, + 0.005815856624394655, + 0.022660456597805023, + 0.031186172738671303, + -0.028451774269342422, + -0.009339024312794209, + 0.01817323826253414, + 0.0035827639512717724, + 0.02421696111559868, + -0.0007226000307127833, + -0.022968953475356102, + -0.026530683040618896, + 0.011477464810013771, + -0.006078779697418213, + 0.003540696343407035, + -0.007607238832861185, + -0.009878893382847309, + 0.001712505123578012, + 0.0003948227094952017, + -0.014709665440022945, + -0.022394027560949326, + -0.00874306634068489, + 0.003712472738698125, + -0.01330039743334055, + -0.011617690324783325, + 0.013798198662698269, + -0.03477594628930092, + 0.013125116005539894, + -0.00727069703862071, + 0.005595001392066479, + -0.018004966899752617, + 0.02361399121582508, + 0.022295869886875153, + 0.018888387829065323, + -0.010888517834246159, + -0.004981514532119036, + 0.0019982147496193647, + -0.015046206302940845, + -0.021398426964879036, + 0.02798902988433838, + -0.03968384489417076, + -0.01815921440720558, + 0.008273310028016567, + -0.01911274902522564, + -0.01671489141881466, + -0.033037152141332626, + -0.036402564495801926, + -0.009261900559067726, + -0.014274965971708298, + -0.0255911722779274, + -0.0036949445493519306, + 0.0004903514054603875, + 0.002024507150053978, + -0.031634893268346786, + -0.02902669832110405, + -0.03631842881441116, + -0.003423257265239954, + -2.7387811769585824e-6, + -0.008834213018417358, + 0.01435208972543478, + 0.014709665440022945, + -0.002932467730715871, + 0.00891133677214384, + 0.005486326292157173, + -0.003198896534740925, + -0.0015696502523496747, + -0.023137222975492477, + 0.015522973611950874, + -0.028535908088088036, + -0.01710752211511135, + -0.007077887188643217, + 0.006166420411318541, + -0.022408049553632736, + -0.003246222622692585, + 0.02632034383714199, + -0.003137547755613923, + 0.0029079283121973276, + 0.021328313276171684, + 0.05496843531727791, + -0.025675306096673012, + 0.0110778221860528, + 0.026418501511216164, + -0.032336022704839706, + 0.00761424982920289, + 0.004199756775051355, + -0.00013463848154060543, + 0.044956326484680176, + -0.010594043880701065, + 0.0031463117338716984, + 0.008322388865053654, + -0.009226844646036625, + -0.016967296600341797, + -0.011365284211933613, + -0.002879883162677288, + -0.05084580183029175, + 0.044647831469774246, + 0.00921282172203064, + -0.018720116466283798, + -0.02763846516609192, + 0.0021139008458703756, + 0.018888387829065323, + 0.014050604775547981, + 0.012739495374262333, + -0.011842051520943642, + -0.010776337236166, + -0.01670086942613125, + 0.011197013780474663, + 0.014597484841942787, + 0.0021524629555642605, + 0.003968384582549334, + 0.005388168618083, + 0.03544903174042702, + -0.004893873352557421, + -0.016280191019177437, + 0.006264578551054001, + -0.0151864318177104, + 0.023389630019664764, + 0.0013645703438669443, + -0.00955637451261282, + 0.04100196436047554, + -0.020360756665468216, + 0.0031498174648731947, + -0.013405567035079002, + 0.0032637508120387793, + 0.014295999892055988, + -0.025549104437232018, + -0.010362671688199043, + 0.01914079487323761, + 0.019898012280464172, + 0.024343162775039673, + 0.0160277858376503, + 0.01566319912672043, + -0.019645605236291885, + -0.0006805323646403849, + 0.03819745406508446, + -0.006229522172361612, + -0.00011930130858672783, + 0.014190830290317535, + 0.026755044236779213, + -5.7678731536725536e-5, + 0.04198354482650757, + 0.007207595743238926, + -0.013293386436998844, + -0.014120717532932758, + 0.02695135958492756, + -0.02184714749455452, + 0.017640380188822746, + 0.020416846498847008, + 0.019210906699299812, + -0.03351391851902008, + 0.015929628163576126, + 0.008953404612839222, + -0.008679964579641819, + 0.028073163703083992, + 0.011049777269363403, + 0.006117341574281454, + 0.024483388289809227, + 0.028858426958322525, + -0.01566319912672043, + -0.003905282821506262, + -0.0026344885118305683, + 0.05533302202820778, + -0.037356097251176834, + 0.023403652012348175, + 0.0022541263606399298, + -0.014976093545556068, + 0.0005639698356389999, + -0.03070940636098385, + 0.006520490162074566, + 0.0002786983677651733, + 0.0242450051009655, + 0.006138375494629145, + -0.03457963094115257, + 0.03438331559300423, + 0.003293548710644245, + 0.02874624729156494, + 0.03236406669020653, + -0.027554329484701157, + -0.025829555466771126, + -0.014976093545556068, + -0.003947350662201643, + 0.01264133770018816, + 0.021959329023957253, + -0.005693159066140652, + 0.023375606164336205, + -0.0008702751365490258, + 0.023389630019664764, + 0.00804894883185625, + 0.02765248715877533, + -0.025170493870973587, + 0.009296957403421402, + 0.015130341984331608, + 0.03045699931681156, + 0.010369682684540749, + -0.024497412145137787, + -0.00624354463070631, + 0.011470453813672066, + 0.015607109293341637, + 0.0007353079854510725, + -0.012416976504027843, + -0.0059140147641301155, + -0.0026905785780400038, + 0.03306519612669945, + -0.02692331373691559, + 0.018874365836381912, + -0.01381923258304596, + -0.006916627753525972, + -0.010096242651343346, + 0.015887560322880745, + -0.007333798799663782, + -0.005079672206193209, + 0.03079354017972946, + 0.01639237254858017, + 0.010285547934472561, + -0.00041147449519485235, + 0.009717633947730064, + -0.01058002095669508, + -0.028185345232486725, + -0.03929121047258377, + 0.004900884814560413, + -0.017934853211045265, + -0.03258842974901199, + 0.004227801691740751, + 0.0005495090736076236, + -0.011049777269363403, + 0.00497099757194519, + 0.011302183382213116, + 0.0026888258289545774, + 0.027806736528873444, + 0.022660456597805023, + 0.001206816523335874, + -0.009654532186686993, + -0.028886472806334496, + -0.014359100721776485, + 0.0009771970799192786, + -0.012732484377920628, + 0.006979729048907757, + 0.007467012852430344, + 0.017836695536971092, + -0.013735096901655197, + -0.005889474879950285, + -0.005973610561341047, + 0.008848235011100769, + 0.01705143228173256, + -0.010832427069544792, + -0.021286245435476303, + -0.04232008382678032, + 0.0028816359117627144, + -0.012059401720762253, + -0.013791187666356564, + 0.014225887134671211, + -0.007333798799663782, + -0.00889030285179615, + 0.007803554646670818, + 0.0029868052806705236, + -0.0021699911449104548, + 0.003223435953259468, + 0.010727258399128914, + -0.008091016672551632, + -0.01315316092222929, + 0.021384403109550476, + 0.017275793477892876, + -0.046246401965618134, + -0.008644907735288143, + 0.0051252455450594425, + 0.010804382152855396, + 0.004045508336275816, + -0.0006117341690696776, + 0.0012716709170490503, + 0.010594043880701065, + 0.01180699560791254, + -0.0021682383958250284, + 0.008967426605522633, + -0.009696600027382374, + -0.01521447766572237, + -0.016841094940900803, + 0.02905474416911602, + 0.03373827785253525, + -0.04481609910726547, + -0.001829944085329771, + -0.0063697476871311665, + 0.021777035668492317, + 0.009542351588606834, + 0.0031393005046993494, + 0.021047862246632576, + 0.043582115322351456, + 6.415594725694973e-6, + 0.007579193450510502, + 0.023361584171652794, + 0.056847456842660904, + -0.029251059517264366, + 0.024188915267586708, + 0.014597484841942787, + -0.014092672616243362, + 0.012494100257754326, + -0.003193638054654002, + -0.01635030470788479, + -0.026446547359228134, + 0.025156471878290176, + 0.03830963373184204, + 0.03306519612669945, + 0.032644517719745636, + -0.0181171465665102, + -0.020318688824772835, + -0.020052259787917137, + -0.00923385564237833, + 0.029643690213561058, + 0.024399254471063614, + -0.01978583261370659, + 0.02420293726027012, + 0.03006436862051487, + 0.02664286270737648, + 0.0021594741847366095, + -0.006723817437887192, + 0.008658930659294128, + 0.011968255043029785, + -0.0008549379417672753, + -0.03682324290275574, + 0.004823760595172644, + -0.008069982752203941, + -0.0262642540037632, + -0.013622916303575039, + 0.002772961277514696, + -0.0066116368398070335, + 0.012613292783498764, + 0.0160978976637125, + 0.003447796916589141, + -0.016841094940900803, + 0.002317227888852358, + 0.021734967827796936, + 0.02389444224536419, + -0.007712407968938351, + -0.011849062517285347, + 0.015410793013870716, + -0.020753389224410057, + 0.024861998856067657, + -0.03696346655488014, + -0.0015985717764124274, + 0.00921282172203064, + -0.01747210882604122, + -0.03323346748948097, + 0.007978836074471474, + 0.0040665422566235065, + -0.009787746705114841, + -0.04293707758188248, + 8.544997399440035e-5, + 0.03300910443067551, + -0.00015413860091939569, + 0.026081960648298264, + 0.0018842814024537802, + -0.01245203334838152, + -0.016322258859872818, + 0.02936323918402195, + -0.01606985367834568, + -0.002846579533070326, + -0.00045923882862553, + 0.025086360052227974, + 0.005149784963577986, + -0.010516920126974583, + -0.0012865698663517833, + 0.021356359124183655, + -0.001034163753502071, + 0.00022479916515294462, + -0.03558925539255142, + -0.04330166429281235, + 0.021678877994418144, + -0.01909872703254223, + 0.012536168098449707, + 0.026039892807602882, + 0.010762314312160015, + -0.00195965263992548, + -0.011007709428668022, + 0.0389266274869442, + -0.007929757237434387, + 0.029223013669252396, + 0.009479250758886337, + -0.00973165687173605, + -0.021720945835113525, + 0.03174707666039467, + -0.027806736528873444, + -0.032924968749284744, + -0.0444515123963356, + -0.004876344930380583, + 0.03216775134205818, + -0.016476508229970932, + 0.015803424641489983, + -0.016574665904045105, + 0.010748292319476604, + -0.015579063445329666, + 0.01469564251601696, + 0.002843074034899473, + -0.02082350105047226, + -0.0032357056625187397, + -0.03317737579345703, + 0.021314291283488274, + -0.01521447766572237, + 0.016322258859872818, + -0.008588817901909351, + 0.033261511474847794, + 0.01877620816230774, + 0.030653314664959908, + -0.0335419625043869, + -0.03281278908252716, + 0.004809738136827946, + -0.015466883778572083, + -0.01640639454126358, + -0.02327744849026203, + 0.013314420357346535, + 0.00047457599430345, + -0.008112050592899323, + -0.013847277499735355, + 0.011330228298902512, + -0.01912677101790905, + 0.005353112239390612, + -0.04574158787727356, + -0.048293694853782654, + -0.018874365836381912, + 0.0027904894668608904, + 0.0033180881291627884, + -0.0020402823574841022, + -0.00019631582836154848, + 0.015340680256485939, + 0.0034775948151946068, + -0.043918658047914505, + 0.01741601899266243, + 0.029138879850506783, + 0.013882334344089031, + -0.0022225757129490376, + 0.0008041061810217798, + 0.013363499194383621, + 0.021314291283488274, + -0.018004966899752617, + -0.02669895440340042, + -0.01985594443976879, + -0.003821147605776787, + 0.019589515402913094, + -0.007719418965280056, + -0.011491487734019756, + -0.005318055860698223, + -0.009002483449876308, + -0.02455350197851658, + -0.005679136607795954, + -0.003751034615561366, + -0.007361843716353178, + -0.04030083492398262, + -0.003481100546196103, + 0.021791057661175728, + -0.012928799726068974, + -0.014001525938510895, + 0.00801389291882515, + 0.011302183382213116, + 0.009507295675575733, + -0.04128241539001465, + 0.0045958939008414745, + 0.012613292783498764, + 0.019210906699299812, + -0.006495950743556023, + 0.0030306256376206875, + -0.0025328248739242554, + 0.020767411217093468, + 0.03413090854883194, + -0.014962071552872658, + 0.01815921440720558, + -0.006085790693759918, + -0.006155903916805983, + 0.009885904379189014, + 0.004729108419269323, + 0.021959329023957253, + 0.02459556981921196, + -0.025549104437232018, + -0.0021103951148688793, + 0.00761424982920289, + 0.004876344930380583, + 0.02051500417292118, + -0.016280191019177437, + 0.00519535830244422, + -0.010895528830587864, + -0.0464707612991333, + 0.001891292748041451, + -0.013777164742350578, + -0.01817323826253414, + 0.012136525474488735, + -0.022744592279195786, + 0.013896356336772442, + 0.0016309989150613546, + -0.018930455669760704, + 0.04097392037510872, + -0.00903753936290741, + 0.0020332711283117533, + -0.010362671688199043, + 0.010075208730995655, + 0.0067133004777133465, + -0.013398556038737297, + 0.011659758165478706, + 0.028942562639713287, + -0.006366242188960314, + 0.0009693094179965556, + 0.014920003712177277, + -0.025142449885606766, + 0.008441580459475517, + -0.03236406669020653, + 0.0023224863689392805, + -0.004063036758452654, + -0.04913504794239998, + 0.007014785427600145, + -0.020290642976760864, + 0.015438837930560112, + -0.0004403960192576051, + 0.021356359124183655, + 0.00367391062900424, + -0.02939128503203392, + -0.0028132761362940073, + 0.0027221294585615396, + -0.0049534691497683525, + -0.022702524438500404, + 0.003034131368622184, + -0.0007690497441217303, + -0.0007773756515234709, + -0.0262642540037632, + 0.046919483691453934, + -0.0009132191771641374, + -0.0048518055118620396, + -0.006152397952973843, + -0.018860341981053352, + 0.025521058589220047, + 0.015901582315564156, + 0.004192745313048363, + 6.343016866594553e-5, + 0.022323915734887123, + -0.01075530331581831, + -0.04635858163237572, + 0.012234683148562908, + 0.011547577567398548, + 0.004771175794303417, + -0.003393459366634488, + 0.009661543183028698, + -0.01299891248345375, + 0.013749119825661182, + -0.022982975468039513, + 0.010201412253081799, + -0.015046206302940845, + -0.028087187558412552, + 0.005956082139164209, + 0.016574665904045105, + -0.02490406669676304, + -0.00012050637451466173, + -0.011926187202334404, + 0.003603797871619463, + 0.03901075944304466, + -0.001097265281714499, + 0.0049534691497683525, + 0.0062821065075695515, + -0.01300592441111803, + 0.031943392008543015, + -0.008834213018417358, + -0.000989466905593872, + -0.05191151425242424, + -0.02114601992070675, + 0.00889030285179615, + -0.022954929620027542, + -0.009871882386505604, + -0.023768238723278046, + -0.005181335844099522, + 0.013559815473854542, + 0.013468668796122074, + -0.0029307149816304445, + -0.0032953014597296715, + 0.013875322416424751, + 0.019561471417546272, + -0.024104779586195946, + -0.014905980788171291, + 0.0070042684674263, + -0.011982277035713196, + -0.012241694144904613, + -0.03491617366671562, + -0.011617690324783325, + -0.06736437976360321, + -0.018257372081279755, + -0.012360886670649052, + 0.01642041653394699, + -0.002676556119695306, + -0.0020981254056096077, + -0.007950791157782078, + 0.011961243115365505, + 0.01315316092222929, + 0.004210273735225201, + -0.011547577567398548, + 0.02355789951980114, + -0.003353144507855177, + 0.025394855067133904, + -0.022660456597805023, + 0.00852571614086628, + -0.021089930087327957, + 0.012311807833611965, + -0.0023154751397669315, + -0.02496015653014183, + -0.00870099849998951, + 0.026769066229462624, + 0.029503464698791504, + 0.012634326703846455, + 0.042544446885585785, + 0.003680921858176589, + -0.04857414588332176, + 0.026152074337005615, + 0.00854675006121397, + -0.013146149925887585, + 0.0018159215105697513, + -0.012508123181760311, + -0.017023388296365738, + -0.008686975575983524, + 0.03561730310320854, + -0.0078456224873662, + 0.027442149817943573, + -0.015789402648806572, + 0.011680792085826397, + 0.024876020848751068, + -0.0017081230180338025, + 0.012010321952402592, + -0.013833255507051945, + 0.005076166708022356, + -0.0031708513852208853, + -0.011091845110058784, + 0.012935811653733253, + -0.038842491805553436, + -0.014471281319856644, + 0.010657145641744137, + 0.02086556889116764, + -0.0020367768593132496, + -0.004623939283192158, + -0.012858686968684196, + -0.01075530331581831, + -0.009591430425643921, + 0.01912677101790905, + -0.00016728475748095661, + 0.005079672206193209, + -0.013055003248155117, + 0.04097392037510872, + 0.00030126594356261194, + 0.002203294774517417, + 0.03547707572579384, + -0.025535080581903458, + 0.013636939227581024, + 0.028199367225170135, + 0.001400503097102046, + 0.021061884239315987, + -0.015649177134037018, + -0.004676523618400097, + -0.02797500602900982, + 0.020052259787917137, + 0.018257372081279755, + 0.015298612415790558, + 0.019729740917682648, + 0.028437750414013863, + 0.019295042380690575, + 0.007025302387773991, + 0.0136719960719347, + 0.015831470489501953, + 0.004122632555663586, + 0.03239211440086365, + 0.007291730958968401, + -0.0006020936416462064, + -0.007221618201583624, + 0.006015677936375141, + -0.004161194432526827, + -0.014737710356712341, + -0.0006450377404689789, + 0.009437182918190956, + 0.023081133142113686, + -0.0010324110044166446, + 0.022450117394328117, + -0.00555994501337409, + 0.010019118897616863, + 0.009514306671917439, + -0.00247498182579875, + 0.0016870892141014338, + -0.0013969974825158715, + -0.017233725637197495, + -0.0023242393508553505, + 0.020360756665468216, + -0.01111989002674818, + 0.0019140794174745679, + 0.018607936799526215, + 0.006499456241726875, + 0.02456752397119999, + -0.0027343991678208113, + -0.028269480913877487, + 0.009114664047956467, + 0.014324044808745384, + -0.02561921626329422, + 0.007021796889603138, + 0.003276020521298051, + -0.018593914806842804, + -0.008105039596557617, + -0.04159091040492058, + -0.015144364908337593, + -0.0017151343636214733, + -0.006460894364863634, + 0.04170309379696846, + 0.019042635336518288, + -0.03441135957837105, + -0.0017808651318773627, + 0.009822802618145943, + -0.01300592441111803, + 0.004536298103630543, + -0.03314933180809021, + 0.008862257935106754, + -0.0009395115193910897, + -1.546042039990425e-5, + -0.005829879082739353, + -0.00384568702429533, + -0.0034916172735393047, + 0.027806736528873444, + 0.0021997890435159206, + -0.007726430427283049, + -0.0002145013422705233, + -0.02870417945086956, + -0.014359100721776485, + 0.023137222975492477, + -0.0026572749484330416, + 0.012480078265070915, + -0.0019018097082152963, + 0.007712407968938351, + 0.017275793477892876, + 0.024062711745500565, + -0.010005095973610878, + -0.021384403109550476, + 0.012550191022455692, + -0.008946392685174942, + -0.007319776341319084, + -0.015901582315564156, + -0.004087576176971197, + -0.009759701788425446, + 0.0026344885118305683, + -0.004676523618400097, + 0.017528198659420013, + -0.006818469613790512, + -0.009871882386505604, + 0.005346100777387619, + 0.0004662501160055399, + 0.011091845110058784, + 0.008006881922483444, + -0.004406589549034834, + 0.00571068748831749, + 0.0019088209373876452, + -0.017626358196139336, + -0.02563323825597763, + 0.009570397436618805, + 0.0076703401282429695, + -0.024160869419574738, + -0.01771049201488495, + -0.003926316741853952, + -0.010138310492038727, + -0.009226844646036625, + -0.0066256592981517315, + 0.021328313276171684, + -0.0010297817643731833, + -0.03289692476391792, + -0.013545792549848557, + 0.006888582371175289, + 0.008427558466792107, + 0.006022689398378134, + 0.01539677008986473, + -0.005545922555029392, + 0.006601119879633188, + -0.017247747629880905, + -0.02972782589495182, + 0.020641207695007324, + 0.01703741028904915, + -0.010657145641744137, + -0.0014022559626027942, + 0.013608894310891628, + -0.008876279927790165, + 0.01841162145137787, + -0.026909291744232178, + -0.02533876523375511, + -0.01469564251601696, + -0.023810306563973427, + -0.027596397325396538, + 0.004322453867644072, + -0.013160171918570995, + -0.010643122717738152, + -0.0019368660869076848, + -0.03755241632461548, + 0.003432021476328373, + 0.026572750881314278, + -0.029475420713424683, + 0.027820758521556854, + -0.005202369764447212, + 0.02975587174296379, + -0.029587600380182266, + -0.005048121325671673, + 0.009360058233141899, + -0.017864741384983063, + -0.024104779586195946, + -0.006979729048907757, + -0.01555101852864027, + 0.031017901375889778, + 0.012725472450256348, + 0.004588882438838482, + -0.010208423249423504, + 0.020010191947221756, + -0.014387146569788456, + -0.00908661913126707, + -0.06085791066288948, + -0.017640380188822746, + 0.020613161846995354, + 0.00445566838607192, + -0.013798198662698269, + -0.004031485877931118, + -0.0404130183160305, + 0.006506467703729868, + -0.003461819374933839, + 0.014317033812403679, + -0.02498820051550865, + 0.010383705608546734, + -0.0027361519169062376, + -0.008539739064872265, + -0.02216966636478901, + 0.005829879082739353, + 0.01883229799568653, + 0.026530683040618896, + 0.000743633892852813, + -0.035364896059036255, + -0.022982975468039513, + 0.0041822283528745174, + -0.008497671224176884, + 0.012192615307867527, + -0.01678500324487686, + -0.009205810725688934, + 0.01670086942613125, + 0.013356488198041916, + -0.014976093545556068, + 0.013868311420083046, + -0.002022754168137908, + 0.01985594443976879, + -0.017500154674053192, + -0.01848173327744007, + 0.007775509264320135, + 0.01599973998963833, + 0.002771208295598626, + 0.010425773449242115, + -0.028830382972955704, + -7.246815221151337e-5, + 0.02180507965385914, + 0.0022628905717283487, + -0.011996299959719181, + 0.019898012280464172, + 0.01093058567494154, + -0.007922746241092682, + 0.003838675795122981, + 0.018215304240584373, + -0.010916562750935555, + 0.02223978005349636, + -0.0044416459277272224, + 0.004396072588860989, + 0.005104211624711752, + -0.0034197517670691013, + -0.013097071088850498, + -0.022001396864652634, + -0.007852633483707905, + -0.0009430171339772642, + 0.0023084639105945826, + -0.004119127057492733, + 0.005149784963577986, + 0.011792972683906555, + -0.0002797938941512257, + 0.03270060941576958, + 0.00091847765725106, + -0.004122632555663586, + 0.005111223086714745, + 0.018047034740447998, + 0.03289692476391792, + -0.0078806784003973, + 0.01880425214767456, + 0.022323915734887123, + -0.008637896738946438, + 0.008820190094411373, + 0.024146847426891327, + -0.016630755737423897, + -0.004708074498921633, + 0.000258760032011196, + -0.00015107117360457778, + -0.004115621093660593, + -0.011905153281986713, + -0.0016748195048421621, + -0.01212951447814703, + 0.005030593369156122, + 0.012732484377920628, + -0.015593086369335651, + -0.01908470317721367, + 0.009956017136573792, + 0.027231810614466667, + 0.04206768050789833, + 0.0052128867246210575, + -0.007775509264320135, + -0.02086556889116764, + -0.02114601992070675, + -0.018271395936608315, + -0.01501816138625145, + 0.03696346655488014, + -0.026516661047935486, + -0.014155774377286434, + -0.00803492683917284, + 0.007035819347947836, + 0.01772451587021351, + -0.02838166058063507, + -0.013090059161186218, + -0.017275793477892876, + -0.00573172140866518, + 0.007049841806292534, + -0.00034552463330328465, + 0.004448656924068928, + 0.007162022404372692, + -0.027049517259001732, + 0.006618648301810026, + -0.0038632152136415243, + 0.006979729048907757, + 0.044255197048187256, + -0.026067938655614853, + -0.004297914449125528, + -0.007298742420971394, + 0.0030323786195367575, + -0.0029149395413696766, + 0.0005933295469731092, + -0.0007107685087248683, + 0.019575493410229683, + -0.019266996532678604, + 0.0009658038034103811, + -0.010033141821622849, + 0.01041175052523613, + 0.0119542321190238, + 0.02531071938574314, + 0.0014723687199875712, + -0.0012243447126820683, + -0.019547447562217712, + -0.0065134791657328606, + 0.013693029060959816, + -0.011344251222908497, + 0.0061839488334953785, + 0.0003641483490355313, + -0.009135697968304157, + -0.0017151343636214733, + 0.01092357374727726, + -0.020220531150698662, + -0.012409965507686138, + -0.018383575603365898, + 0.01850977912545204, + -0.013426600955426693, + -0.002164732664823532, + -0.004315442871302366, + 0.01640639454126358, + -0.017668426036834717, + 0.006187454331666231, + -0.009051562286913395, + -0.008953404612839222, + 0.0017370445420965552, + -0.025493012741208076, + -0.0017563255969434977, + -0.045629408210515976, + -0.009191787801682949, + -0.005836890544742346, + 0.021636810153722763, + 0.002511790953576565, + 0.023151246830821037, + 0.0014460764359682798, + -0.003961373120546341, + 0.029251059517264366, + -0.01909872703254223, + 0.009451204910874367, + -0.0027975006960332394, + 0.005072660744190216, + -0.003730000928044319, + -0.035701435059309006, + 0.030877675861120224, + -0.03222384303808212, + -0.0006665097898803651, + -0.01144240889698267, + 0.011105867102742195, + 0.015789402648806572, + 0.022351959720253944, + 0.003891260363161564, + -0.005493337754160166, + -0.027736622840166092, + 0.0018527306383475661, + -0.002064822008833289, + -7.415249910991406e-6, + -0.010776337236166, + -0.01416278537362814, + 0.034046776592731476, + -0.010159344412386417, + 0.0071585169062018394, + -0.0029166925232857466, + 0.008981449529528618, + 0.016294214874505997, + 0.010797371156513691, + -0.0013838513987138867, + -0.009009494446218014, + -0.0059140147641301155, + 0.010271525010466576, + -0.004382049664855003, + -0.012059401720762253, + 0.02319331280887127, + -0.030541134998202324, + -0.014036581851541996, + -0.020767411217093468, + 0.020963726565241814, + -0.030933767557144165, + -0.0032970544416457415, + 0.004564343020319939, + 0.005714192986488342, + 0.04077760502696037, + -0.021987373009324074, + 0.04170309379696846, + -0.012921788729727268, + -0.011021732352674007, + -0.0037019557785242796, + 0.0010096243349835277, + 0.005766777787357569, + -0.008602839894592762, + 0.0076002273708581924, + -0.011449419893324375, + -0.0283536147326231, + 0.012753518298268318, + -0.015957672148942947, + -0.010951618663966656, + 0.03076549619436264, + 0.021959329023957253, + -0.0011340745259076357, + 0.02395053207874298, + -0.005812351126223803, + 0.0021927778143435717, + -0.005093694664537907, + -0.0005034975474700332, + 0.019533425569534302, + -0.02627827599644661, + -0.0030236144084483385, + 0.0140085369348526, + -0.015158386901021004, + -0.0039824070408940315, + 0.008581806905567646, + 0.016490530222654343, + 0.023698125034570694, + 0.013636939227581024, + -0.010951618663966656, + -0.00362483155913651, + -0.0151864318177104, + -0.019631583243608475, + -0.006015677936375141, + -0.021959329023957253, + 0.003712472738698125, + -0.004006946459412575, + 0.0024767345748841763, + -0.027147674933075905, + -0.0006152397836558521, + 0.01347567979246378, + -0.020080305635929108, + -0.00160383025649935, + 0.004308431409299374, + 0.010110265575349331, + 0.02425902895629406, + -0.0011069057509303093, + -0.00027322082314640284, + -0.0005249695968814194, + -0.011617690324783325, + 0.001982439309358597, + 0.019954102113842964, + -0.01109885610640049, + 0.019968124106526375, + -0.001689718454144895, + 0.03309324011206627, + 0.0037650573067367077, + -0.03494421765208244, + -0.009289945475757122, + -0.0026660391595214605, + 0.025212561711668968, + -0.013251318596303463, + -0.0013996267225593328, + -0.01197526603937149, + -0.02702147327363491, + 0.017528198659420013, + 0.01384026650339365, + -0.040441062301397324, + 0.0074109225533902645, + 0.007971825078129768, + -0.012010321952402592, + -0.010678179562091827, + -0.02494613453745842, + 0.01713556796312332, + 0.008168141357600689, + -0.0006428467459045351, + -0.018678048625588417, + 0.005626552272588015, + -0.0037650573067367077, + 0.004150677472352982, + 0.002203294774517417, + 0.005184841342270374, + 0.035028353333473206, + -0.013167183846235275, + 0.004220790229737759, + -0.009801769629120827, + 0.0174440648406744, + 0.005472303833812475, + 0.00041651385254226625, + 0.02019248530268669, + 0.014681619592010975, + -0.006219005212187767, + -0.009563385508954525, + 0.012164570391178131, + -0.023810306563973427, + 0.005833385046571493, + -0.008616862818598747, + 0.002879883162677288, + 0.0047851987183094025, + -0.011295171454548836, + 0.009177764877676964, + -0.01984192244708538, + 0.012725472450256348, + 0.007621261291205883, + -0.027946962043642998, + 0.004196250811219215, + -0.01635030470788479, + 0.08643505722284317, + 0.007663328666239977, + 0.0075932159088552, + -0.00029031079611741006, + 0.025563126429915428, + -0.010573009960353374, + -0.007263686042279005, + -0.003239211393520236, + 0.008806167170405388, + -0.0019158321665599942, + -0.009198798798024654, + -0.010418761521577835, + 0.004150677472352982, + 0.0068710544146597385, + -0.00724966311827302, + -0.021664854139089584, + 0.010811393149197102, + 0.002499521244317293, + 0.009682577103376389, + 0.029110834002494812, + 0.006580085959285498, + -0.013693029060959816, + -0.0076002273708581924, + -0.009303968399763107, + -0.001843966543674469, + 0.015354703180491924, + -0.008771111257374287, + 0.0016748195048421621, + 0.02975587174296379, + 0.014807823114097118, + 0.017976921051740646, + -0.007642295211553574, + 0.0010061186039820313, + -0.015130341984331608, + 0.012613292783498764, + 0.023319516330957413, + 0.010664156638085842, + 0.009682577103376389, + -0.005353112239390612, + -0.0035599772818386555, + 0.018033010885119438, + -0.008904325775802135, + 0.030288729816675186, + 0.019729740917682648, + 0.004013957921415567, + 0.01060806680470705, + 0.014471281319856644, + -0.008238254114985466, + 0.010208423249423504, + 0.008406524546444416, + -0.02016444131731987, + -0.022674478590488434, + 0.008238254114985466, + -0.000766420504078269, + -0.008771111257374287, + -0.00536713469773531, + -0.011014720425009727, + -0.014597484841942787, + -0.002201541792601347, + 0.003137547755613923, + -0.01635030470788479, + 0.011232070624828339, + -0.026726998388767242, + -0.014807823114097118, + -0.025450944900512695, + -0.0016388866351917386, + -0.013202239759266376, + 0.01180699560791254, + -0.01815921440720558, + 0.007144493982195854, + -0.007088403683155775, + -0.014267954044044018, + 0.014443236403167248, + -0.02395053207874298, + -0.020080305635929108, + 0.0034372799564152956, + -0.0017107522580772638, + 0.03177512064576149, + 0.02078143320977688, + 0.02079545520246029, + 0.028563953936100006, + 0.006509973201900721, + 0.007112943567335606, + -0.02352985553443432, + -0.0016353810206055641, + -0.01843966543674469, + -0.017331883311271667, + -0.0008693987037986517, + 0.014990116469562054, + -0.03342978283762932, + -0.021748989820480347, + -0.005812351126223803, + 0.00443463446572423, + -0.007908723317086697, + -0.0016756958793848753, + 0.0059245312586426735, + -0.011666770093142986, + -0.024525456130504608, + 0.03278474509716034, + 0.006359230726957321, + 0.016616733744740486, + 0.007263686042279005, + -0.010306580923497677, + 0.010495886206626892, + 0.0009018258424475789, + -0.008301354944705963, + 0.006478422787040472, + 0.00972464494407177, + -0.016588687896728516, + 0.021650832146406174, + -0.007354832720011473, + -0.02500222437083721, + 0.011828029528260231, + -0.0017133814981207252, + -0.01982789859175682, + -0.003852698253467679, + -0.0007138359360396862, + 0.009717633947730064, + -0.0063697476871311665, + -0.004294408950954676, + -0.020262598991394043, + -0.007375866174697876, + 0.0020122372079640627, + -0.005956082139164209, + -0.003884249133989215, + 0.003610809100791812, + -0.006636176258325577, + -0.002583656692877412, + 0.010937596671283245, + 0.0014995374949648976, + 0.012634326703846455, + -6.003408270771615e-5, + 0.009275923483073711, + -0.020669253543019295, + -0.0018650004640221596, + -0.011337239295244217, + -0.008623873814940453, + 0.0034372799564152956, + 0.011582634411752224, + -0.02528267540037632, + 0.0074109225533902645, + 0.011771938763558865, + 0.007151505444198847, + 0.01671489141881466, + 0.006520490162074566, + -0.0016362573951482773, + 0.005917520262300968, + -0.017584290355443954, + 0.008946392685174942, + 0.010271525010466576, + 0.026025870814919472, + -0.019659629091620445, + 0.0023224863689392805, + -0.00624354463070631, + 0.006180443335324526, + 0.008483648300170898, + -0.011309194378554821, + 0.028914518654346466, + -0.04736820608377457, + 0.013370510190725327, + -0.02221173420548439, + -0.022015418857336044, + -0.003730000928044319, + 0.007162022404372692, + -0.017023388296365738, + -0.004592388402670622, + -0.00955637451261282, + 0.02257632091641426, + 0.029896097257733345, + -0.00761424982920289, + -0.026516661047935486, + -0.00891133677214384, + -0.0025398361030966043, + -0.008252276107668877, + 0.0050376043654978275, + -0.005335583817213774, + 0.019617561250925064, + 0.010110265575349331, + -0.016518576070666313, + 0.01675695925951004, + 0.010727258399128914, + 0.0005801834049634635, + 0.021777035668492317, + 0.00115160271525383, + -0.01640639454126358, + -0.01469564251601696, + 0.02289883978664875, + -0.0076563176698982716, + 0.014471281319856644, + 0.006555546540766954, + -0.010012107901275158, + 0.016125943511724472, + 0.010299569927155972, + -0.004003440961241722, + -0.022071508690714836, + -0.007649306207895279, + 0.010811393149197102, + 0.012893743813037872, + -0.0026397467590868473, + -0.006380264647305012, + -0.03143857792019844, + -0.0009088371298275888, + 0.005058638285845518, + 0.02323538064956665, + 0.012178593315184116, + 0.004553826060146093, + -0.01705143228173256, + -0.017626358196139336, + -0.020052259787917137, + 0.011561600491404533, + -0.0410861000418663, + -0.018299439921975136, + 0.006331185810267925, + -0.0036002921406179667, + -0.01608387567102909, + 0.012571224942803383, + -0.014169796369969845, + 0.010460829362273216, + -0.010727258399128914, + 0.00785964448004961, + 0.014190830290317535, + -0.011091845110058784, + -0.0033882008865475655, + -0.019954102113842964, + 0.013805209659039974, + 0.001805404550395906, + 0.006937661208212376, + 0.01090253982692957, + -0.0016248640604317188, + 0.002001720480620861, + 0.020767411217093468, + 0.0006989369867369533, + -0.008490660227835178, + 0.012802597135305405, + 0.003947350662201643, + 0.03006436862051487, + 0.009612464345991611, + -0.0036563824396580458, + 0.016210079193115234, + 0.012886731885373592, + -0.031017901375889778, + -0.010278536006808281, + -0.005093694664537907, + -0.019042635336518288, + -0.004164700396358967, + -0.012480078265070915, + -0.0087220324203372, + -0.00785964448004961, + 0.021398426964879036, + -3.1632924219593406e-5, + -0.011596656404435635, + -0.006387276109308004, + -0.013622916303575039, + 0.0036984500475227833, + 0.009339024312794209, + 0.01670086942613125, + -0.0004011766577605158, + -0.010867483913898468, + -0.03012045845389366, + -0.024188915267586708, + -0.016813049092888832, + -0.010509908199310303, + -0.0012970868265256286, + -0.009815791621804237, + 0.010839438997209072, + 0.024062711745500565, + -0.017009364441037178, + 0.023067111149430275, + 0.006962201092392206, + 0.006201476790010929, + 0.00992096122354269, + 0.015172409825026989, + 0.010860472917556763, + -0.0002025602589128539, + 0.01420485321432352, + 0.002872871933504939, + 0.002063069026917219, + 0.01006819773465395, + -0.004343487787991762, + -0.008434569463133812, + -0.0006673862226307392, + -0.017514176666736603, + 0.004602905362844467, + -0.01979985460639, + 0.010895528830587864, + -0.020080305635929108, + 0.009759701788425446, + 0.008974438533186913, + 0.008855246007442474, + 0.016125943511724472, + 0.0035371906124055386, + -0.010895528830587864, + 0.02561921626329422, + -0.03208361566066742, + 0.010334626771509647, + 0.01642041653394699, + -0.002757185837253928, + -0.00047501421067863703, + -0.007964814081788063, + 0.01178596168756485, + 0.00692714424803853, + -0.02186117134988308, + -0.00362483155913651, + -0.006047228816896677, + 0.003726495197042823, + 0.004995536990463734, + 0.0048518055118620396, + 0.0020280126482248306, + -0.01776658371090889, + 0.005510866176337004, + -0.00316033442504704, + -0.01055898703634739, + 0.019323086366057396, + -0.02257632091641426, + -0.006383770145475864, + -0.006387276109308004, + 0.012774552218616009, + 0.02630632184445858, + -0.0013663232093676925, + 0.006233027670532465, + -0.005577472969889641, + 0.004813243634998798, + 0.008069982752203941, + -0.0029307149816304445, + 0.023319516330957413, + -0.006573074962943792, + 0.0018246856052428484, + -0.014415191486477852, + 0.009977051056921482, + -0.010061186738312244, + 0.013924402184784412, + 0.014513349160552025, + -0.014807823114097118, + -0.010033141821622849, + -0.0019438773160800338, + 0.0035266736522316933, + -0.003964878618717194, + -0.007810565643012524, + -0.0031410532537847757, + 0.003737012157216668, + -0.015466883778572083, + 0.006408309563994408, + 0.0027659498155117035, + -0.008161129429936409, + -0.009535340592265129, + 0.03494421765208244, + -0.014141751453280449, + -0.02324940450489521, + -0.005188347306102514, + 0.00519535830244422, + 0.012213649228215218, + -0.0046800291165709496, + 0.01706545427441597, + -0.0002056276862276718, + -0.021454516798257828, + -0.01214353647083044, + 0.019056659191846848, + 0.04436738044023514, + -0.015565041452646255, + -0.004494230262935162, + 0.004585376940667629, + 0.012248706072568893, + -0.012395942583680153, + 0.0157613568007946, + 0.029475420713424683, + -0.025086360052227974, + 0.023123200982809067, + -0.003936833702027798, + -0.02696538157761097, + 0.03079354017972946, + -0.010509908199310303, + -0.010362671688199043, + -0.005861429963260889, + 0.004546815063804388, + -0.007112943567335606, + -0.004978008568286896, + -0.0010236469097435474, + 0.005696665029972792, + -0.015284590423107147, + -0.015943650156259537, + 0.026726998388767242, + 0.0065239956602454185, + -0.007782520726323128, + -0.011673781089484692, + 0.005335583817213774, + 0.012900754809379578, + 0.03460767865180969, + 0.010285547934472561, + 0.02256229892373085, + -0.010075208730995655, + -0.0028272985946387053, + 0.005353112239390612, + 0.005104211624711752, + -0.015508950687944889, + 0.017205679789185524, + 0.0035687414929270744, + -0.00856778398156166, + 0.012381920590996742, + 0.006450377404689789, + 0.011645736172795296, + -0.0025959264021366835, + 0.004574859980493784, + 0.009661543183028698, + -0.021987373009324074, + -0.008539739064872265, + -0.011126901023089886, + 0.007095415145158768, + 0.006387276109308004, + 0.02012237347662449, + -0.014962071552872658, + -0.004722096957266331, + 0.005454775877296925, + -0.011926187202334404, + -0.016153989359736443, + 0.0071585169062018394, + -0.013566826470196247, + 0.0015854256926104426, + -0.01707947812974453, + 0.009661543183028698, + -0.005419719498604536, + 0.024006621912121773, + -0.010692201554775238, + 0.014155774377286434, + -0.006481928285211325, + 0.0023487787693738937, + -0.006751862354576588, + 0.059287380427122116, + 0.0014977846294641495, + -0.016139965504407883, + -0.003065682016313076, + 0.010439795441925526, + -0.033654142171144485, + -0.007971825078129768, + 0.004932435229420662, + -0.026390457525849342, + -0.006120847072452307, + 0.02561921626329422, + -0.011877108365297318, + 0.017696470022201538, + 0.0023014526814222336, + -0.009696600027382374, + -0.011379307135939598, + -0.011498498730361462, + -0.014765755273401737, + 5.169449650566094e-6, + 0.004343487787991762, + 0.002140193246304989, + 0.0035056399647146463, + -0.01058002095669508, + -0.006688761059194803, + 0.00032142337295226753, + -0.011870096437633038, + 0.007186561822891235, + 0.02664286270737648, + -0.02800305187702179, + -0.005672125611454248, + -0.007018290925770998, + 0.005949071142822504, + 0.0047676702961325645, + -0.0047957152128219604, + -0.011007709428668022, + -0.0009596689487807453, + 0.00683599803596735, + -0.013356488198041916, + -0.00024298466451000422, + 0.009542351588606834, + 0.021398426964879036, + 0.011337239295244217, + -0.015046206302940845, + 0.01214353647083044, + -0.01296385657042265, + 0.015971696004271507, + 0.031662940979003906, + 0.010439795441925526, + 0.013377522118389606, + 0.014443236403167248, + -0.01709350012242794, + -0.009998084977269173, + -0.008574794977903366, + -0.0003109064418822527, + -0.006411815527826548, + 0.0057387324050068855, + 0.003230447182431817, + -0.0013347724452614784, + 0.017864741384983063, + -0.022716546431183815, + 0.004006946459412575, + 0.0035389435943216085, + -0.005696665029972792, + 0.022323915734887123, + 0.012206638231873512, + 0.013146149925887585, + 0.017696470022201538, + 0.023389630019664764, + -0.007049841806292534, + 0.001354929874651134, + 0.011372296139597893, + -0.0005556439282372594, + 0.025212561711668968, + -0.004581871442496777, + -0.0021296762861311436, + 0.004802726674824953, + -0.010369682684540749, + -0.009009494446218014, + 0.003821147605776787, + 0.016196057200431824, + -0.0067974356934428215, + 0.009612464345991611, + -0.0022453623823821545, + 0.0001253266236744821, + 0.01707947812974453, + 0.01334246527403593, + -0.011771938763558865, + 0.0017449322622269392, + 0.00097982631996274, + 0.033037152141332626, + 0.00891133677214384, + -0.0072286296635866165, + 0.016490530222654343, + 0.001626616925932467, + 0.0004522275412455201, + -0.020388802513480186, + -0.0032549866009503603, + 0.014807823114097118, + 0.01025750208646059, + -0.016827071085572243, + 0.015340680256485939, + 0.009829814545810223, + 0.018692072480916977, + -0.010769326239824295, + 0.00166517891921103, + 0.010285547934472561, + -0.009885904379189014, + -0.013742108829319477, + 0.018523801118135452, + 0.014962071552872658, + 0.015004138462245464, + -0.0017168871127068996, + 0.021258199587464333, + -0.03141053393483162, + 0.0140085369348526, + -0.0006187454564496875, + 0.008196186274290085, + 0.008027915842831135, + 0.009023517370223999, + -0.008119061589241028, + 0.004816749133169651, + -0.003074446227401495, + 0.004932435229420662, + 0.012038367800414562, + -0.00942315999418497, + -0.008336411789059639, + -0.0018018989358097315, + 0.0034758420661091805, + 0.019757786765694618, + -0.012949833646416664, + 0.0001979591033887118, + 0.009479250758886337, + -0.01158964540809393, + 0.011926187202334404, + -0.005219897720962763, + -0.00038671589572913945, + 0.0087220324203372, + -0.012255717068910599, + -0.030961811542510986, + 0.013903368264436722, + -0.0032567395828664303, + -0.01846771128475666, + -0.01843966543674469, + 0.00727069703862071, + -0.010706224478781223, + -0.0026572749484330416, + -0.005265471059828997, + 0.008981449529528618, + -0.018720116466283798, + -0.015901582315564156, + -0.02146853879094124, + -0.007084898184984922, + 0.011232070624828339, + -0.01538274809718132, + 0.00367391062900424, + 0.009437182918190956, + -0.026446547359228134, + -0.011365284211933613, + -0.01884631998836994, + 0.006138375494629145, + 0.0058263735845685005, + -0.007887689396739006, + 0.028591999784111977, + -0.004658995661884546, + 0.03253233805298805, + -0.020753389224410057, + -0.017976921051740646, + 0.013076037168502808, + 0.009682577103376389, + 0.009759701788425446, + -0.01212951447814703, + -0.0017791122663766146, + -0.022660456597805023, + -0.01212951447814703, + -0.013756130822002888, + 0.0004290026845410466, + 0.001649403595365584, + -0.008483648300170898, + 0.002499521244317293, + 0.012865698896348476, + 0.01644846238195896, + 0.01212250255048275, + 0.0028974113520234823, + -0.006141880992799997, + 0.005784305743873119, + -0.01008923165500164, + -0.017948877066373825, + -0.024455344304442406, + 0.01810312457382679, + -0.0004233060171827674, + 0.015579063445329666, + -0.004830771591514349, + 0.02250620909035206, + -0.004350499249994755, + 0.006236533634364605, + 0.010657145641744137, + 0.01454139407724142, + -0.005696665029972792, + 0.0002231558901257813, + -0.009507295675575733, + -0.0035827639512717724, + -0.0031726041343063116, + 0.01745808683335781, + -0.006443365942686796, + 8.802442607702687e-5, + 0.011182991787791252, + 0.0023838351480662823, + -0.024749817326664925, + 0.014807823114097118, + 0.009801769629120827, + -0.004108610097318888, + 0.0050551327876746655, + -0.006562558002769947, + 0.007873667404055595, + 0.0020139901898801327, + 0.0015126835787668824, + -0.012164570391178131, + -0.008210208266973495, + 0.016322258859872818, + -0.002481993054971099, + -0.004690546076744795, + 0.012627314776182175, + 0.007263686042279005, + -0.005563450511544943, + -0.025885645300149918, + -0.004876344930380583, + -0.01402957085520029, + 0.005020076408982277, + -0.0010166355641558766, + 0.0051427739672362804, + -0.0031620871741324663, + 0.0127955861389637, + 0.031550757586956024, + -0.0156912449747324, + -0.02285677194595337, + -0.012816619127988815, + 0.0044977362267673016, + 0.027820758521556854, + -0.019912034273147583, + -0.0218191035091877, + 0.006029700860381126, + -0.002241856651380658, + -0.02223978005349636, + -0.002508285455405712, + -0.011947221122682095, + -0.02460959181189537, + -0.010832427069544792, + -0.0010569504229351878, + 0.0021524629555642605, + 0.007214606739580631, + 0.007551148533821106, + -0.007782520726323128, + 0.015957672148942947, + -0.029643690213561058, + -0.002115653594955802, + 0.007789531722664833, + 0.015032184310257435, + -0.020697297528386116, + -9.120140930463094e-6, + 0.006390781607478857, + 0.013693029060959816, + 0.008336411789059639, + -0.007021796889603138, + -0.013980492018163204, + 0.008329400792717934, + 0.008350434713065624, + -0.01043278444558382, + -0.024861998856067657, + -0.009009494446218014, + 0.01094460766762495, + 0.002075338736176491, + -0.01574733480811119, + -0.009121675044298172, + -0.003446043934673071, + -0.024188915267586708, + 0.001105153001844883, + -0.016616733744740486, + 0.006219005212187767, + -0.007831599563360214, + -0.012157559394836426, + 0.005093694664537907, + 0.012711450457572937, + 0.0030709404963999987, + 0.0034740890841931105, + 0.008532727137207985, + -0.010783348232507706, + -0.005069155246019363, + 0.01026451401412487, + -0.014099683612585068, + -0.038113318383693695, + -0.024329140782356262, + 0.01605583168566227, + -0.014555417001247406, + 0.011708837002515793, + -0.002942984690889716, + 0.0023487787693738937, + -0.01874816231429577, + 0.029868051409721375, + -0.00021132435358595103, + -0.04293707758188248, + 0.004280386492609978, + -0.0008172523230314255, + -0.020360756665468216, + 0.004343487787991762, + 0.02288481779396534, + -0.01043278444558382, + 0.01437312364578247, + 0.02871820144355297, + -0.006902604829519987, + -0.0002056276862276718, + 0.002771208295598626, + 0.002511790953576565, + -0.012872709892690182, + 0.028620043769478798, + 0.026053916662931442, + -0.020613161846995354, + -0.016490530222654343, + 0.0026905785780400038, + 0.024174893274903297, + -0.022029440850019455, + 0.005798328202217817, + 0.005822868086397648, + -0.01506022922694683, + 0.016462484374642372, + -0.01740199699997902, + -0.014169796369969845, + 0.0044241175055503845, + -0.0075932159088552, + 0.004862322472035885, + 0.009219832718372345, + -0.003034131368622184, + -0.006601119879633188, + 0.002531072124838829, + 0.012718461453914642, + 0.014120717532932758, + 0.006331185810267925, + 0.01522849965840578, + 0.003929822240024805, + 0.008168141357600689, + 0.011323217302560806, + -0.002928962232545018, + -0.011982277035713196, + 0.0043540047481656075, + 0.04203963279724121, + -0.003852698253467679, + 0.005202369764447212, + -0.007438967935740948, + -0.021636810153722763, + 0.0019964620005339384, + 0.001486391294747591, + -0.006793930195271969, + -0.02285677194595337, + 0.008708009496331215, + 0.03612211346626282, + 0.0037931024562567472, + -0.012304795905947685, + -0.023361584171652794, + 0.00183695531450212, + 0.004942952189594507, + -0.006506467703729868, + 0.01808910258114338, + 0.017850717529654503, + 0.01145643088966608, + 0.009759701788425446, + 0.0016862128395587206, + -0.0127955861389637, + -0.014281976968050003, + -0.006036711856722832, + 0.03070940636098385, + -0.004311936907470226, + -0.00666071567684412, + 0.011042765341699123, + -0.001861494849435985, + -0.03662692755460739, + -0.0012260975781828165, + -0.027217788621783257, + -0.013791187666356564, + -0.011407352052628994, + -0.028087187558412552, + 0.009927972219884396, + -0.012529157102108002, + 0.02087959088385105, + 0.012802597135305405, + 0.011863085441291332, + -0.0074109225533902645, + -0.021973351016640663, + 0.00031024913187138736, + -0.007733441889286041, + 0.015368725173175335, + 0.0163643267005682, + -0.0005236549768596888, + 0.009303968399763107, + -0.013244307599961758, + 0.009843836538493633, + -0.012739495374262333, + -0.005437247455120087, + 0.030288729816675186, + -0.010096242651343346, + -0.029447374865412712, + 0.002934220712631941, + 0.010250491090118885, + -0.023039065301418304, + 0.00546529283747077, + 0.009773723781108856, + -1.603556302143261e-5, + -0.013580849394202232, + -0.013903368264436722, + 0.02866211161017418, + 0.002418891526758671, + -0.00247498182579875, + -0.013707051984965801, + 0.008820190094411373, + 0.014218875207006931, + 0.01384026650339365, + 0.01985594443976879, + -0.002709859749302268, + 0.012634326703846455, + 0.01386130042374134, + 0.0023645542096346617, + -0.0015468635829165578, + 0.0034442911855876446, + -0.008806167170405388, + -0.0029990749899297953, + -0.003659888170659542, + 0.029503464698791504, + 0.0006914874538779259, + 0.028493842110037804, + 0.004630950279533863, + -0.005475809331983328, + 0.00639779306948185, + -0.014359100721776485, + -0.011477464810013771, + 0.0007453867001459002, + -0.010061186738312244, + 0.014359100721776485, + 0.01381923258304596, + -0.005412708036601543, + -0.004378544166684151, + 0.017668426036834717, + -0.0040840706788003445, + -0.015845492482185364, + 0.004073553718626499, + -0.009822802618145943, + -0.003712472738698125, + -0.01179998368024826, + -0.0030726934783160686, + -0.012634326703846455, + 0.002778219524770975, + -0.012374908663332462, + -0.0004684411396738142, + 0.012045378796756268, + -0.006057745777070522, + 0.009332013316452503, + 0.015438837930560112, + -0.014976093545556068, + -0.012178593315184116, + -0.003176109865307808, + 0.0024714760947972536, + -0.003011344699189067, + 0.0020052259787917137, + 0.04167504608631134, + -0.012802597135305405, + 0.006204982753843069, + 0.020304666832089424, + 0.020977748557925224, + 0.005307538900524378, + 0.013721074908971786, + 0.00607527419924736, + -0.006545029580593109, + -0.04007647559046745, + 0.027091585099697113, + -0.008076994679868221, + -0.00039504180313088, + 0.016308236867189407, + 0.005083177704364061, + -0.005240931641310453, + -0.015971696004271507, + -0.004406589549034834, + -0.021664854139089584, + -0.0013558062491938472, + -0.05306136608123779, + -0.006176937371492386, + -0.005437247455120087, + 0.034663766622543335, + -0.024427298456430435, + -0.01278857421129942, + -0.01176492776721716, + 0.01506022922694683, + -0.008483648300170898, + 0.004234813153743744, + -0.002336509060114622, + -0.021650832146406174, + 0.011940209195017815, + -0.007642295211553574, + -0.009584419429302216, + 0.006646693218499422, + -0.0008220725576393306, + -0.004203262273222208, + 0.01210848055779934, + 0.017570266500115395, + -0.006043723318725824, + -0.010537954047322273, + -0.009878893382847309, + -0.0037545403465628624, + 0.01775255985558033, + 0.006552041042596102, + 0.026390457525849342, + -0.028830382972955704, + -0.006446871906518936, + 0.012543180026113987, + -0.009416148997843266, + -0.008995472453534603, + -0.0036002921406179667, + 1.2242351658642292e-5, + 0.017247747629880905, + 0.008595828898251057, + 0.0039087883196771145, + -0.011477464810013771, + -0.007049841806292534, + -0.003775574266910553, + -0.010229457169771194, + -0.010194401256740093, + -0.0017721009207889438, + -0.0005166436894796789, + -0.012003310956060886, + -0.007007773965597153, + 0.03413090854883194, + 0.022646434605121613, + 0.005268977023661137, + -0.0026502637192606926, + 0.002311969641596079, + -0.010439795441925526, + -0.020725343376398087, + -0.01782267354428768, + 0.007565170992165804, + -0.014015547931194305, + 0.021636810153722763, + -0.012858686968684196, + 0.018313463777303696, + -0.019631583243608475, + 0.0050411103293299675, + -0.012010321952402592, + -0.012543180026113987, + 0.010159344412386417, + 0.005545922555029392, + 0.014190830290317535, + -0.004473196342587471, + 0.02054305002093315, + 0.0148498909547925, + 0.014106694608926773, + -0.02288481779396534, + 0.01178596168756485, + -0.03769263997673988, + 0.011835040524601936, + 0.0012550191022455692, + -0.007642295211553574, + -0.00043579484918154776, + -0.010292558930814266, + 0.018033010885119438, + 0.005605518352240324, + 0.004417106509208679, + 0.0012734236661344767, + 0.0025626227725297213, + -0.01599973998963833, + 0.0062680840492248535, + -0.018257372081279755, + -0.004241824150085449, + 0.005184841342270374, + -0.0019666641019284725, + -0.009247878566384315, + 0.018958501517772675, + 0.03317737579345703, + -0.01280960813164711, + -0.004269869532436132, + 0.02016444131731987, + 0.03146662563085556, + -0.020753389224410057, + 0.009949006140232086, + 0.021706921979784966, + -0.0119542321190238, + -0.011126901023089886, + -0.001711628632619977, + -0.042572490870952606, + 0.01330039743334055, + 0.004736119415611029, + -0.010026129893958569, + -0.04299316927790642, + -0.00906558521091938, + -0.0095984423533082, + -0.001952641410753131, + -0.004105104133486748, + 0.0019035624573007226, + -0.005675631109625101, + 0.024090757593512535, + 0.004539803601801395, + 0.015817446634173393, + 0.006390781607478857, + -0.0015941897872835398, + 0.013167183846235275, + 0.010180378332734108, + -0.013188217766582966, + -0.032924968749284744, + -0.019000567495822906, + 7.805526547599584e-5, + 0.02393651008605957, + 0.0033443805295974016, + -0.005272482521831989, + -0.017009364441037178, + -0.006604625377804041, + -0.01398750301450491, + -0.01806105673313141, + 0.0056405747309327126, + -0.006562558002769947, + 0.008708009496331215, + 0.018187260255217552, + 0.004056025296449661, + 0.005181335844099522, + 0.019968124106526375, + -0.020234553143382072, + -0.01197526603937149, + 0.008364456705749035, + 0.003933328203856945, + 0.029699781909585, + -0.02156669646501541, + -0.013146149925887585, + -0.015635153278708458, + -0.01158964540809393, + 0.015256544575095177, + 0.019351132214069366, + -0.0005963969742879272, + -0.00294123194180429, + 0.0075932159088552, + 0.028914518654346466, + 0.009240866638720036, + 0.0027431631460785866, + 0.01163171324878931, + 0.00938109215348959, + -0.02867613360285759, + 0.007105932105332613, + 0.008448592387139797, + -0.02123015560209751, + 0.02633436769247055, + -0.010173367336392403, + 0.014583461917936802, + -0.0027046012692153454, + 0.028914518654346466, + 0.002862354973331094, + 0.00803492683917284, + -0.022394027560949326, + -0.0005635315901599824, + -0.008539739064872265, + -0.009346036240458488, + -0.033317603170871735, + -0.006807952653616667, + 0.009051562286913395, + -0.024483388289809227, + 0.0026432524900883436, + -0.008441580459475517, + 0.010874494910240173, + -0.024469366297125816, + 0.0021033838856965303, + 0.0035617302637547255, + -0.009023517370223999, + -2.6935913410852663e-5, + 0.019547447562217712, + -0.006085790693759918, + 0.01060806680470705, + 0.009268911555409431, + -0.005980621557682753, + -0.00043185101822018623, + 0.016518576070666313, + -0.01437312364578247, + 0.017317861318588257, + 0.006422332488000393, + -0.0020367768593132496, + -0.013047991320490837, + 0.0038877546321600676, + -0.021664854139089584, + -0.009850848466157913, + 0.01880425214767456, + 0.0016248640604317188, + -0.012409965507686138, + 0.0019105738028883934, + -0.01317419484257698, + -0.011926187202334404, + -0.026474593207240105, + -0.004757153335958719, + -0.00776849826797843, + -0.003021861659362912, + 0.015074251219630241, + 0.0022593848407268524, + 0.010853460989892483, + 0.006502962205559015, + 0.02050098218023777, + -8.91747185960412e-5, + 0.003461819374933839, + 0.006601119879633188, + -0.013594871386885643, + -0.013363499194383621, + 0.01454139407724142, + -0.0191968847066164, + -0.003957867622375488, + 0.0022208229638636112, + 0.013160171918570995, + 0.019645605236291885, + -0.016518576070666313, + 0.007628272287547588, + 0.0012278503272682428, + 0.014555417001247406, + 0.016574665904045105, + -0.007852633483707905, + -0.01521447766572237, + 0.03278474509716034, + -0.02120210975408554, + 0.0003161648928653449, + 0.006236533634364605, + 0.029952187091112137, + -0.011842051520943642, + 0.011470453813672066, + -0.0157613568007946, + 0.004932435229420662, + -0.0019649111200124025, + 0.006352219730615616, + -0.000739690032787621, + -0.009247878566384315, + 0.007256674580276012, + 0.02020650915801525, + -0.007382877636700869, + 0.0014565933961421251, + 0.0057562608271837234, + -0.015873538330197334, + 0.003901777323335409, + -0.015130341984331608, + 0.03309324011206627, + 0.006005160976201296, + 0.002382082398980856, + -0.01677098125219345, + 0.0054968432523310184, + -0.010474852286279202, + 0.0012234683381393552, + -0.0010096243349835277, + -0.0030236144084483385, + 0.003151570213958621, + -0.011821017600595951, + 0.0033566502388566732, + -0.01848173327744007, + 0.010306580923497677, + 0.002779972506687045, + -0.0010131299495697021, + 0.007992858998477459, + 0.020767411217093468, + -0.004732613917440176, + -0.007530114613473415, + -0.0008317130850628018, + 0.0020665747579187155, + -0.016897184774279594, + 0.001237490912899375, + 0.003975395578891039, + 0.008813179098069668, + -0.009002483449876308, + -0.008027915842831135, + -0.00871502049267292, + 0.011561600491404533, + -0.010383705608546734, + 0.026110006496310234, + 0.01175791583955288, + -0.021931283175945282, + 0.008616862818598747, + -0.010467840358614922, + -0.010110265575349331, + -0.009857859462499619, + 0.019954102113842964, + 0.005304033402353525, + 0.0037580460775643587, + -0.03415895625948906, + -0.019869966432452202, + -0.01539677008986473, + -0.0077544753439724445, + 0.0007055100286379457, + 0.008750077337026596, + -0.001416278537362814, + 0.013370510190725327, + -0.001829944085329771, + 0.01677098125219345, + -0.026025870814919472, + 0.020753389224410057, + -0.0075932159088552, + 0.010103254579007626, + 0.0023084639105945826, + 0.0015994482673704624, + -0.012438010424375534, + -0.004459173884242773, + 0.013545792549848557, + 0.006036711856722832, + -0.008883291855454445, + 0.015242522582411766, + -0.0017002354143187404, + -0.03171902894973755, + 0.02223978005349636, + -0.011659758165478706, + -0.005318055860698223, + -0.007467012852430344, + -0.022127598524093628, + 0.012515134178102016, + 0.00648893928155303, + 0.013959458097815514, + 0.003884249133989215, + 0.002320733619853854, + 0.0028290513437241316, + 0.014555417001247406, + -0.00027212529676035047, + 0.014274965971708298, + -0.012648348696529865, + 0.004988525528460741, + -0.02800305187702179, + -0.012599269859492779, + 0.005107717588543892, + -0.002492510015144944, + -0.0451245978474617, + -0.014415191486477852, + 0.014513349160552025, + -0.025450944900512695, + 0.0014346831012517214, + 0.00546178687363863, + 0.036402564495801926, + -0.005952576640993357, + -0.0012550191022455692, + 0.00874306634068489, + 0.014751732349395752, + -0.0027151182293891907, + -0.02489004284143448, + -0.018383575603365898, + -0.013728085905313492, + 0.02118808776140213, + 0.0011735130101442337, + 0.009072596207261086, + 0.019631583243608475, + 0.03211166337132454, + 0.018692072480916977, + -0.007123460527509451, + 0.0015416051028296351, + -0.00401746341958642, + 0.0003120019391644746, + 0.008336411789059639, + -0.00940913800150156, + -0.0024504424072802067, + 0.009640510194003582, + -0.0009412643266841769, + -0.0010604560375213623, + -0.02050098218023777, + 0.0011717601446434855, + 0.0035231681540608406, + -0.011386318132281303, + 0.00903753936290741, + -0.00546178687363863, + -0.017836695536971092, + -0.00639779306948185, + -0.009479250758886337, + 0.007256674580276012, + 0.013426600955426693, + 0.040132567286491394, + 0.04002038389444351, + -0.0045958939008414745, + 0.0033145826309919357, + 0.00605073431506753, + -0.034018728882074356, + 0.004574859980493784, + -0.009170753881335258, + -0.01782267354428768, + 0.010502897202968597, + 0.0017265276983380318, + -0.004210273735225201, + 0.009640510194003582, + 0.014751732349395752, + -0.022814704105257988, + 0.008301354944705963, + -0.012262728065252304, + 0.014211864210665226, + 0.0015205712988972664, + 0.021356359124183655, + 0.0008536233217455447, + -0.03337369114160538, + 0.004494230262935162, + -0.004736119415611029, + 0.0011314452858641744, + -0.006317163351923227, + 0.006506467703729868, + 0.0028711191844195127, + -0.015284590423107147, + -0.015200454741716385, + 0.025773463770747185, + -0.011161957867443562, + -0.012781563214957714, + 0.010748292319476604, + -0.01264133770018816, + 0.02864808961749077, + 0.0003527550143189728, + 0.009479250758886337, + 0.007025302387773991, + -0.01298489049077034, + -0.01197526603937149, + -0.024469366297125816, + 0.010187389329075813, + -0.007936769165098667, + -0.00837146770209074, + 0.012781563214957714, + 0.014401168562471867, + 0.011084833182394505, + -0.00889030285179615, + -0.019982147961854935, + 0.0044241175055503845, + 0.011835040524601936, + -0.01606985367834568, + 0.009970040060579777, + -0.03107399307191372, + 0.023151246830821037, + 0.006236533634364605, + -0.03822549805045128, + -0.016883160918951035, + -0.0015827964525669813, + -0.011519532650709152, + 0.010250491090118885, + 0.00786665640771389, + 0.025072336196899414, + 0.004178722854703665, + 0.03149466961622238, + -0.003642359981313348, + -0.008020903915166855, + 0.010692201554775238, + -0.0003187941329088062, + 0.014793800190091133, + -0.014155774377286434, + -0.0014609753852710128, + -0.002380329417064786, + -0.02359996736049652, + -0.003447796916589141, + 0.009451204910874367, + -0.025703351944684982, + -0.0110778221860528, + 0.014064627699553967, + 0.0061979712918400764, + -0.0057387324050068855, + 0.020290642976760864, + -0.007077887188643217, + -0.006643187720328569, + 0.010355660691857338, + 0.006807952653616667, + 0.0148498909547925, + -0.00010440233745612204, + -0.01539677008986473, + -0.0037685628049075603, + -0.0043399822898209095, + -0.01670086942613125, + -0.0032269414514303207, + 0.032560382038354874, + -0.01738797314465046, + -0.009668555110692978, + 0.01782267354428768, + 0.0005543293082155287, + 0.015326657332479954, + -0.010488874278962612, + 0.00018656576867215335, + -0.006120847072452307, + 0.01437312364578247, + 0.012879720889031887, + -0.03438331559300423, + 0.01566319912672043, + 0.002329497830942273, + -0.017149589955806732, + 0.020683275535702705, + -0.023025043308734894, + 0.02317929081618786, + -0.004666006658226252, + 0.0027817252557724714, + 0.00303588411770761, + 0.01709350012242794, + 0.014751732349395752, + 0.0026414997410029173, + 0.017976921051740646, + 0.03783286735415459, + -0.0010376693680882454, + 0.004578365944325924, + 0.01601376384496689, + -0.01163171324878931, + 0.00230320543050766, + -0.02082350105047226, + 0.003416246036067605, + 0.025422900915145874, + 0.0039824070408940315, + -0.006951684132218361, + 0.021412448957562447, + -0.010523931123316288, + -0.00504461582750082, + 0.006597614381462336, + -0.02428707294166088, + -0.005672125611454248, + 0.019393200054764748, + -1.2666862858168315e-5, + 0.01126712653785944, + -0.010019118897616863, + 0.01399451494216919, + 0.0037966079544276, + 0.022422073408961296, + -0.005956082139164209, + 0.004644972737878561, + -0.006790424697101116, + 0.0029990749899297953, + 0.022071508690714836, + -0.009808780625462532, + -0.0012629068223759532, + 0.010993686504662037, + -0.0033286050893366337, + 0.007649306207895279, + 0.0021033838856965303, + 6.58950739307329e-5, + 0.0018316968344151974, + -0.0075932159088552, + 0.021103952080011368, + 0.0004051205178257078, + -0.007509080693125725, + -0.011147934943437576, + 0.0078456224873662, + 0.009009494446218014, + 0.02463763765990734, + 0.017275793477892876, + -0.009717633947730064, + -0.01741601899266243, + -0.0047676702961325645, + 0.010671167634427547, + -0.0034758420661091805, + 0.009114664047956467, + -0.008778122253715992, + -0.004452162887901068, + 0.005759766325354576, + 0.006650198716670275, + -0.013433611951768398, + -0.007165527902543545, + -0.009128686040639877, + -0.01416278537362814, + 0.011358273215591908, + 0.03645865619182587, + 0.009801769629120827, + 0.008406524546444416, + 0.014653574675321579, + 0.007165527902543545, + 0.006941167172044516, + 0.014078649692237377, + 0.0044241175055503845, + 0.015410793013870716, + -0.0067834132350981236, + 0.010446807369589806, + 0.009268911555409431, + 0.008995472453534603, + -0.003926316741853952, + -0.009416148997843266, + 0.010713235475122929, + 0.0031550759449601173, + -0.006881571374833584, + -0.03665497153997421, + -0.016308236867189407, + -0.008434569463133812, + 0.007256674580276012, + -0.004315442871302366, + 0.006348713766783476 + ], + "cb58775b-b524-407b-b9fc-2ab8eeb52c4c": [ + -0.033463407307863235, + 0.009208587929606438, + -0.0048934081569314, + 0.006846465170383453, + 0.0022667767480015755, + -0.036416057497262955, + -0.019622841849923134, + 0.01653485931456089, + -0.03457064926624298, + 0.013545298017561436, + 0.009085561148822308, + 0.012856345623731613, + -0.014861688949167728, + -0.06264546513557434, + 0.019216852262616158, + 0.037670936435461044, + -0.03585013374686241, + 0.02082850970327854, + 0.022600101307034492, + -0.009091712534427643, + 0.09010513871908188, + -0.006166739854961634, + -0.038679759949445724, + 0.0030187806114554405, + -0.011453835293650627, + -0.0014278847957029939, + -0.0028265505097806454, + -0.007043308578431606, + -0.05036734789609909, + 0.03176562860608101, + 0.012216603383421898, + 0.016670189797878265, + -0.007707655895501375, + 0.014221947640180588, + 0.005606966093182564, + 0.010697217658162117, + 0.01951211877167225, + 0.034423019737005234, + 0.02458084002137184, + -0.011226234026253223, + -0.05413198098540306, + 0.02379346638917923, + -0.016091961413621902, + 0.0058591715060174465, + -0.03525960445404053, + 0.009454642422497272, + 0.03673592954874039, + -0.0142588559538126, + -0.02180042490363121, + 0.026401642709970474, + 0.007799926213920116, + -0.05856095999479294, + -0.0005359373753890395, + 0.010211260057985783, + 0.00016416446305811405, + -0.04325637221336365, + -0.015612155199050903, + 0.05713384598493576, + -0.003149497089907527, + -0.014775569550693035, + 0.006846465170383453, + 0.010703369043767452, + -0.01491090003401041, + 0.028148628771305084, + -0.05713384598493576, + 0.0003963783383369446, + 0.03402933105826378, + 0.009719151072204113, + -0.06239940971136093, + -0.05491935461759567, + 0.007547720335423946, + 0.05782279744744301, + -0.003278675489127636, + 0.015870511531829834, + -0.0009073258261196315, + -0.0182818453758955, + 0.002508217701688409, + -0.007190941367298365, + 0.0077507151290774345, + -0.012112030759453773, + -0.04488033428788185, + -0.014837083406746387, + 0.0112569909542799, + -0.015870511531829834, + 0.04428980126976967, + -0.008187461644411087, + 0.01648564822971821, + -0.00951000489294529, + -0.007055611349642277, + -0.040205296128988266, + -0.009706848300993443, + 0.02982180006802082, + 0.02381807193160057, + -0.010783336125314236, + 0.013299243524670601, + 0.005022586323320866, + -0.029501929879188538, + 0.013938984833657742, + 0.029206663370132446, + -0.029452718794345856, + 0.007258606608957052, + 0.05693700164556503, + -0.002093000803142786, + 0.02883758209645748, + -0.011595316231250763, + 0.02630322054028511, + -0.014554120600223541, + -0.05762595310807228, + 0.004567385651171207, + 0.08424904197454453, + 0.01065415795892477, + -0.028419289737939835, + 0.0062005724757909775, + -0.0024605444632470608, + -0.023104513064026833, + -0.04830048978328705, + -0.01340996753424406, + -0.008784144185483456, + -0.005077948793768883, + -0.044757306575775146, + -0.00401683896780014, + 0.018884679302573204, + 0.011712191626429558, + 0.024851499125361443, + -0.012333479709923267, + -0.03550565615296364, + -0.0027373558841645718, + -0.04864496737718582, + 0.04586454853415489, + -0.003995309118181467, + -0.046184420585632324, + -0.03137194365262985, + -0.020151859149336815, + -0.006920281331986189, + -0.05806885287165642, + -0.022366350516676903, + 0.04699639976024628, + 0.04089425131678581, + -0.04579073563218117, + 0.049210891127586365, + -0.017457563430070877, + -0.026401642709970474, + -0.028493106365203857, + 0.005339381750673056, + -0.002086849417537451, + 0.004472039639949799, + -0.04030371829867363, + 0.05206512287259102, + 0.0054593333043158054, + 0.009319312870502472, + -0.014972413890063763, + -0.00013955900794826448, + 0.03358643129467964, + 0.01707617938518524, + -0.014714056625962257, + 0.04662732034921646, + -0.025417424738407135, + -0.005450106225907803, + -0.005690009333193302, + -0.003973779268562794, + 0.02928047999739647, + -0.03304511308670044, + -0.022919971495866776, + 0.02205878123641014, + 0.03799080848693848, + 0.008759538643062115, + 0.00606524245813489, + 0.02529439702630043, + -0.02257549576461315, + 0.002814247738569975, + 0.023448988795280457, + -0.04785759001970291, + -0.0008335094898939133, + 0.02405182272195816, + 0.03589934483170509, + -0.028419289737939835, + 0.029501929879188538, + 0.0017039270605891943, + 0.015181560069322586, + -0.041214119642972946, + 0.005280943587422371, + -0.008673419244587421, + -0.005766901187598705, + -0.014615634456276894, + -0.021677397191524506, + 0.04559389129281044, + 0.02328905463218689, + -0.00862420815974474, + -0.013668324798345566, + -0.005886852741241455, + -0.0017362217186018825, + -0.00425674207508564, + -0.02984640561044216, + 0.029969433322548866, + -0.020090345293283463, + -0.009694545529782772, + 0.015267678536474705, + -0.024162547662854195, + 0.017949672415852547, + -0.005025662016123533, + 0.018220331519842148, + -0.020102648064494133, + -0.00619749678298831, + 0.018675532191991806, + -0.029403507709503174, + 0.0004659656260628253, + -0.021148379892110825, + 0.0002821937086991966, + 0.028862187638878822, + -0.03646526858210564, + 0.028197839856147766, + -0.01802348904311657, + 0.014689451083540916, + -0.000259702792391181, + -0.03917187079787254, + 0.016079658642411232, + -0.013213124126195908, + 0.023116815835237503, + 0.029895616695284843, + -0.025442030280828476, + -0.014221947640180588, + -0.0010026718955487013, + -0.017605196684598923, + -0.001899232855066657, + -0.021492857486009598, + -0.022932274267077446, + 0.0242855753749609, + 0.019425999373197556, + -0.03808923065662384, + 0.01289325300604105, + 0.0451509915292263, + 0.018380267545580864, + -0.011589164845645428, + -0.015735182911157608, + 0.007473904173821211, + 0.0420261025428772, + -0.03375867009162903, + 0.024728473275899887, + 0.016916243359446526, + -0.039983849972486496, + -0.00037792426883243024, + 0.04175544157624245, + 0.046233631670475006, + -0.0008611906087026, + 0.0007289363420568407, + 0.001477864570915699, + 0.03053535707294941, + -0.017851250246167183, + 0.0330205075442791, + -0.029674166813492775, + 0.005631571169942617, + 0.0003104515199083835, + 0.0019284518202766776, + -0.057478319853544235, + -0.025909533724188805, + 0.0446096733212471, + 0.019216852262616158, + -0.012684106826782227, + -0.014517213217914104, + -0.03461986035108566, + -0.016350317746400833, + -0.013668324798345566, + 0.024999132379889488, + -0.02225562557578087, + 0.001850021886639297, + -0.021222196519374847, + 0.005462408997118473, + -0.029649561271071434, + 0.002864996436983347, + 0.04035292938351631, + -0.059249911457300186, + -0.004988754168152809, + -0.0008904095739126205, + -0.03233155608177185, + -0.03476749360561371, + 0.03174102306365967, + 0.035973161458969116, + -0.009792967699468136, + 0.00021933448442723602, + -0.006864919327199459, + -0.025983350351452827, + -0.022587798535823822, + -0.005022586323320866, + 0.021357527002692223, + -0.026155589148402214, + -0.02305530197918415, + -0.009965205565094948, + -0.01141077559441328, + -0.022427864372730255, + -0.002626631408929825, + 0.002921896753832698, + -0.027213621884584427, + 0.011576862074434757, + 0.032897479832172394, + 0.025835717096924782, + -0.026696909219026566, + -0.014960111118853092, + -0.019143035635352135, + -0.01728532463312149, + 0.0062467074021697044, + -0.030929045751690865, + 0.0012656425824388862, + 0.015858208760619164, + -0.0012771764304488897, + 0.02657388150691986, + -0.007043308578431606, + 0.013200821354985237, + 0.016227291896939278, + -0.04830048978328705, + 0.009995962493121624, + 0.02276003733277321, + 0.012721015140414238, + -0.02984640561044216, + -0.0075046606361866, + -0.005354760214686394, + 0.03134733811020851, + -0.007154033053666353, + 0.0036108491476625204, + -0.022932274267077446, + 0.0008150553912855685, + 0.029132846742868423, + 0.026942962780594826, + -0.05413198098540306, + 0.016473345458507538, + 0.0029434263706207275, + -0.029723377898335457, + 0.02652467042207718, + -0.009079409763216972, + -0.029182057827711105, + -0.02353510819375515, + -0.03161799907684326, + 0.015144651755690575, + 0.00040752769564278424, + 0.0003790776536334306, + -0.012979372404515743, + -0.04456046223640442, + 0.0012133560376241803, + -0.05186827853322029, + -0.015599852427840233, + 0.0011802924564108253, + 0.007104822434484959, + -0.03826146945357323, + -0.019942713901400566, + 0.007295514456927776, + 0.04566770792007446, + 0.010248168371617794, + -0.04704561084508896, + 0.01001441664993763, + -0.0101620489731431, + -0.018650928512215614, + 0.0006543510826304555, + 0.0048595755361020565, + 0.013114701956510544, + 0.057478319853544235, + 0.028197839856147766, + 0.0011833681492134929, + 0.02253858745098114, + -0.0028757613617926836, + 0.011976700276136398, + -0.05078563839197159, + 0.036981984972953796, + -0.012573382817208767, + -0.02777954749763012, + -0.034915126860141754, + 1.7781278074835427e-5, + 0.044954147189855576, + -0.0037215736228972673, + -0.007584628649055958, + 0.020631665363907814, + -0.004939543083310127, + 0.014037407003343105, + 0.016867032274603844, + 0.022956879809498787, + -0.00853808969259262, + -0.022846156731247902, + -0.02403951995074749, + 0.0056715551763772964, + -0.030682990327477455, + -0.05477172136306763, + 0.015267678536474705, + -0.012247360311448574, + 0.03004324808716774, + 0.005277867894619703, + -0.03651447966694832, + 0.044954147189855576, + 0.013692930340766907, + 0.000400991877540946, + 0.0376463308930397, + 0.03781856968998909, + 0.004838045686483383, + -0.016362620517611504, + 0.007098671048879623, + -0.028591526672244072, + -0.026746118441224098, + -0.028886793181300163, + 0.029206663370132446, + 0.013016280718147755, + 0.01974586956202984, + 0.017211509868502617, + -0.05383671447634697, + 0.020397914573550224, + -0.010820244438946247, + 0.006329750642180443, + 0.0012610290432348847, + 0.02328905463218689, + -0.038655154407024384, + -0.013299243524670601, + 0.003807692788541317, + 0.01905691809952259, + -0.006342053413391113, + 0.006080620922148228, + 0.01908152364194393, + -0.006717286538332701, + 0.03715422376990318, + 0.024101033806800842, + -0.03407854214310646, + 0.00900559313595295, + -0.01874934881925583, + -0.029600350186228752, + -0.031002860516309738, + 0.025195976719260216, + 0.06855077296495438, + 0.002997250761836767, + 0.06633628159761429, + 0.03658829629421234, + -0.002372887684032321, + 0.008144402876496315, + -0.0036262276116758585, + -0.007787623442709446, + -0.0024420905392616987, + -0.004552007187157869, + 0.06092308461666107, + -0.0031710267066955566, + -0.02454393170773983, + 0.01974586956202984, + -0.02979719452559948, + -0.009313161484897137, + 0.02278464287519455, + 0.02124680206179619, + 0.03474288806319237, + 0.019696658477187157, + -0.020348703488707542, + 0.00714173074811697, + 0.012308874167501926, + -0.0285177119076252, + -0.03530881553888321, + -0.03383248671889305, + -0.0023436686024069786, + -0.0010541895171627402, + 0.01251802034676075, + -0.028616132214665413, + 0.026500064879655838, + -0.043428611010313034, + 0.02406412549316883, + 0.0021499008871614933, + 0.007658444810658693, + 0.006292842794209719, + -0.03828607127070427, + -0.011429229751229286, + -0.03139654919505119, + 0.0028188612777739763, + 0.002280617132782936, + -0.0023621227592229843, + 0.01676861196756363, + -0.0008973298245109618, + -0.011053996160626411, + 0.019450604915618896, + 0.022169506177306175, + 0.011909035965800285, + 0.031002860516309738, + -0.018650928512215614, + 0.012173543684184551, + -0.027853364124894142, + 0.00925779901444912, + 0.0004282885347492993, + -0.022673917934298515, + 0.007357028312981129, + 0.006477383431047201, + 0.013963590376079082, + 0.006760346237570047, + -0.013323849067091942, + -0.024174850434064865, + -0.00863651093095541, + 0.0022652389016002417, + -0.03489052131772041, + 0.0007481593056581914, + 0.015329192392528057, + -0.02451932616531849, + 0.023190632462501526, + -0.0240764282643795, + 0.02026258409023285, + -0.041927680373191833, + 0.00474885106086731, + 0.020988445729017258, + -0.0022590875159949064, + -0.017223812639713287, + 0.010488071478903294, + -0.0075231147930026054, + -0.04276426509022713, + -0.017199207097291946, + 0.010278924368321896, + -0.042690448462963104, + -0.0005478556267917156, + -0.002211414510384202, + -0.010248168371617794, + -0.02004113607108593, + -0.03587473928928375, + -0.04687337204813957, + -0.0054747117683291435, + 0.01376674696803093, + -0.023252146318554878, + 0.004146017599850893, + -0.011367715895175934, + -0.01454181782901287, + -0.014615634456276894, + -0.020717784762382507, + -0.05314776301383972, + 0.015685971826314926, + 0.009737605229020119, + 0.0008873338811099529, + 0.0028680721297860146, + 0.025909533724188805, + -0.029452718794345856, + -0.004914937540888786, + -0.00595759367570281, + 0.015070835128426552, + -0.02152976393699646, + -0.020213373005390167, + 0.025934139266610146, + -0.007289363071322441, + 0.0034386110492050648, + 0.013323849067091942, + 0.00044059124775230885, + -0.007455450017005205, + -0.00939312856644392, + -0.0034755191300064325, + 0.005367062985897064, + -0.00638511311262846, + 0.03907344862818718, + 0.04155859723687172, + 0.0043305582366883755, + 0.017900461331009865, + 0.03233155608177185, + -0.02581111155450344, + 0.015612155199050903, + 0.01275792345404625, + -0.01539070624858141, + 0.02529439702630043, + -0.04399453476071358, + -0.006643470376729965, + 0.014849386177957058, + -0.02181272767484188, + -0.02728743851184845, + -0.016141172498464584, + -0.006581956520676613, + -0.02556505799293518, + 0.03213471174240112, + -0.003334037959575653, + -0.0026220178697258234, + -0.019093826413154602, + -0.012105879373848438, + 0.016091961413621902, + 0.010303529910743237, + 0.029944827780127525, + -0.017900461331009865, + 0.0032325403299182653, + -0.013705233111977577, + 0.01202591136097908, + 0.015550641342997551, + 0.00791065115481615, + 0.003497048979625106, + 0.002448241924867034, + 0.026401642709970474, + 0.010783336125314236, + -0.021172985434532166, + 0.0035001246724277735, + -0.015230771154165268, + 0.019401393830776215, + -0.02156667225062847, + -0.028443895280361176, + 0.03585013374686241, + -0.0026143286377191544, + -0.0003721573739312589, + 0.0035677896812558174, + -0.002703523263335228, + -0.018380267545580864, + -0.022107992321252823, + 0.007984466850757599, + -0.0016024296637624502, + 0.023707346990704536, + 0.018909284844994545, + 0.01852790080010891, + 0.026746118441224098, + -0.011693738400936127, + -0.033438801765441895, + 0.02883758209645748, + 0.005047191865742207, + -0.00788604561239481, + 0.011478439904749393, + 0.013323849067091942, + 0.014652542769908905, + 0.027730336412787437, + 0.008058283478021622, + -0.021665094420313835, + -0.02932969108223915, + 0.027385860681533813, + -0.007443147245794535, + -0.008119797334074974, + -0.014098919928073883, + 0.00962072890251875, + -0.039713189005851746, + 0.013250032439827919, + 0.00714173074811697, + 0.0029741832986474037, + 0.03176562860608101, + 0.011995154432952404, + 0.006840313784778118, + 0.016719400882720947, + 0.030486145988106728, + -0.0035001246724277735, + -0.0009849867783486843, + 0.0029372749850153923, + 0.04859575629234314, + -0.042715054005384445, + 0.03274984657764435, + -0.013938984833657742, + -0.03033851459622383, + 0.019462907686829567, + -0.022600101307034492, + -0.006025258451700211, + 0.008673419244587421, + 0.04283808171749115, + 0.0007481593056581914, + -0.0257865060120821, + 0.04854654520750046, + 0.00791065115481615, + 0.033168140798807144, + 0.014369579963386059, + -0.027508888393640518, + -0.03550565615296364, + -0.025663480162620544, + 0.0010411179391667247, + 0.005714614875614643, + 0.005926836747676134, + -0.004413601942360401, + 0.027213621884584427, + -0.012573382817208767, + 0.012979372404515743, + 0.01900770701467991, + 0.02229253388941288, + -0.02883758209645748, + 0.007615385577082634, + 0.017334535717964172, + 0.022403258830308914, + 0.020656270906329155, + -0.018724743276834488, + 0.008495029993355274, + 0.0036385301500558853, + 0.01850329525768757, + -0.005016435403376818, + 0.0010664922883734107, + -0.010229714214801788, + 0.0020130330231040716, + 0.02357201650738716, + -0.025466635823249817, + 0.02652467042207718, + -0.002379039069637656, + -0.024605445563793182, + 0.012856345623731613, + -0.005213278811424971, + 0.00013052420399617404, + 0.015292284078896046, + 0.026180194690823555, + -0.0047949859872460365, + 0.01014974620193243, + -0.00639741588383913, + 0.002872685668990016, + 0.007498509716242552, + -0.03607158362865448, + -0.018183425068855286, + 0.0075046606361866, + 0.013606810942292213, + -0.02600795589387417, + 0.018958495929837227, + -0.0014678685693070292, + 0.0024051822256296873, + 0.0205332450568676, + 0.031913261860609055, + -0.00862420815974474, + 0.022600101307034492, + 0.003318659495562315, + -3.092500628554262e-5, + -0.010032870806753635, + -0.010875606909394264, + 0.016079658642411232, + 0.0014217334100976586, + -0.012124333530664444, + 0.027902575209736824, + 0.020447125658392906, + 0.020459428429603577, + 0.0016424134373664856, + 0.0018807786982506514, + -0.008199764415621758, + -0.004638126585632563, + 0.01852790080010891, + -0.0034017027355730534, + -0.02753349393606186, + -0.0380646251142025, + 0.007418541703373194, + 0.0044966451823711395, + -0.007307817228138447, + 0.0028573074378073215, + -0.005530073773115873, + -0.004751926753669977, + -0.0015147727681323886, + 0.017937369644641876, + 0.0003971472615376115, + 0.00197458709590137, + 0.0308306235820055, + -0.007270908914506435, + -0.012075122445821762, + 0.00482881860807538, + -0.0005005670245736837, + -0.056444890797138214, + 0.009694545529782772, + 0.00268814479932189, + 0.028985215350985527, + -0.00663731899112463, + 0.016350317746400833, + 0.002457468770444393, + -0.019610540941357613, + -0.015452220104634762, + 0.004213682375848293, + -0.007098671048879623, + -0.001580899814143777, + -0.020890023559331894, + -0.0067357406951487064, + 0.01387747097760439, + 0.01701466552913189, + -0.05688779056072235, + -0.015193862840533257, + -0.008833355270326138, + 0.026623092591762543, + 0.017469866201281548, + 0.003000326454639435, + 0.0245562344789505, + 0.042468998581171036, + -0.0027681125793606043, + 0.0059637450613081455, + 0.01100478507578373, + 0.06372810155153275, + -0.03513657674193382, + 0.03786778077483177, + 0.02526979334652424, + -0.0009350069449283183, + 0.008605754934251308, + 0.002498990623280406, + 0.009276253171265125, + -0.00029834103770554066, + 0.03137194365262985, + 0.04709482192993164, + 0.015981236472725868, + 0.03459525480866432, + -0.026450853794813156, + -0.005840717814862728, + 0.00613290723413229, + -0.006434324197471142, + 0.02478998713195324, + 0.01977047510445118, + -0.019647447392344475, + 0.032159317284822464, + 0.019659750163555145, + 0.007430844474583864, + -0.013742141425609589, + 0.005603890400379896, + 0.007836834527552128, + 0.03850752115249634, + 0.008599603548645973, + -0.04677495360374451, + 0.0045366291888058186, + -0.01775282807648182, + -0.021911149844527245, + -0.009995962493121624, + -0.015353797934949398, + -0.014197342097759247, + 0.009196285158395767, + 0.02581111155450344, + 0.029969433322548866, + -0.0034478381276130676, + 0.0038538279477506876, + 0.022735431790351868, + 0.038409098982810974, + -0.03909805417060852, + -0.00887641403824091, + 0.011121661402285099, + -0.025909533724188805, + 0.01980738341808319, + -0.028739159926772118, + -0.012179695069789886, + -0.004179850220680237, + -0.008353549055755138, + -0.04136175289750099, + 0.012807134538888931, + 0.021837333217263222, + 0.0007154802442528307, + -0.014308066107332706, + 0.015624457970261574, + 0.012056668289005756, + 0.011503045447170734, + -0.002712750341743231, + 0.010445011779665947, + -0.004075277131050825, + -0.013643719255924225, + -0.00241440930403769, + -0.00418907729908824, + -0.006852616555988789, + -0.020939234644174576, + 0.009165528230369091, + 0.01041425485163927, + -0.017863553017377853, + 0.01648564822971821, + 0.0010434247087687254, + 0.006415870040655136, + -0.010321984067559242, + -0.023928795009851456, + -0.03309432417154312, + 0.012075122445821762, + -0.016953151673078537, + 0.004321331158280373, + 0.013373059220612049, + 0.00964533444494009, + -0.015304586850106716, + -0.001799273188225925, + 0.04057437926530838, + -0.015378403477370739, + 0.023424383252859116, + -0.004001460503786802, + -0.006043712608516216, + -0.02431018091738224, + 0.04062359035015106, + -0.025183673948049545, + -0.017371444031596184, + -0.029157452285289764, + 0.004364390857517719, + 0.018146516755223274, + -4.404470746521838e-5, + -0.0009411582723259926, + -0.008052132092416286, + 0.018896982073783875, + -0.034644465893507004, + 0.008372003212571144, + -0.007375482469797134, + -0.013508389703929424, + -0.013557600788772106, + -0.021123774349689484, + 0.014615634456276894, + -2.72966663033003e-5, + 0.010740277357399464, + -0.005717690568417311, + 0.0376463308930397, + 0.019118431955575943, + 0.026746118441224098, + -0.025909533724188805, + -0.03658829629421234, + 0.025097554549574852, + 0.007424693088978529, + -0.002861920977011323, + -0.0018392570782452822, + 0.006508140359073877, + -0.0052225058898329735, + -0.0007016396266408265, + 0.01275792345404625, + 0.0345214381814003, + -0.02007804438471794, + -0.0019238382810726762, + -0.018208028748631477, + -0.019204549491405487, + -0.021628186106681824, + -0.005077948793768883, + -0.007363179698586464, + -0.004656580742448568, + -0.00197458709590137, + 0.021222196519374847, + -0.002846542512997985, + -0.05477172136306763, + 0.004435131326317787, + 0.030412331223487854, + 0.0009703772375360131, + 0.004462812561541796, + 0.0036785141564905643, + -0.016940848901867867, + 0.006612713448703289, + -0.0013279251288622618, + -0.03634224459528923, + -0.024986829608678818, + -0.0203240979462862, + 0.013988195918500423, + 0.004146017599850893, + -0.014554120600223541, + -0.0020714709535241127, + -0.003014167072251439, + -0.022723129019141197, + -0.009183982387185097, + -0.0019991924054920673, + -0.02458084002137184, + -0.013200821354985237, + 0.016239594668149948, + 0.021185288205742836, + -0.02928047999739647, + -0.022489376366138458, + -0.0034908975940197706, + 0.0016716324025765061, + -0.013496086932718754, + -0.03028930351138115, + 0.014554120600223541, + 0.027681125327944756, + 0.03931950032711029, + 0.030461542308330536, + -0.0010265083983540535, + -0.007867591455578804, + 0.014197342097759247, + 0.022600101307034492, + -0.0021898846607655287, + -0.0034755191300064325, + -0.0011856749188154936, + -0.019905805587768555, + 0.010684914886951447, + -0.010272773914039135, + 0.023854980245232582, + 0.014135828241705894, + -0.01041425485163927, + 0.008974836207926273, + 0.021172985434532166, + 0.001799273188225925, + 0.05260644108057022, + -0.010235865600407124, + -0.002623555716127157, + -0.008550392463803291, + -0.04305952787399292, + -0.0015186173841357231, + 0.0023836526088416576, + -0.0210130512714386, + 0.019647447392344475, + -0.018454084172844887, + -0.0023544335272163153, + -0.00282039912417531, + -0.025638874620199203, + 0.023399777710437775, + -0.0027065989561378956, + 0.01476326771080494, + -0.000611676019616425, + 0.020890023559331894, + 0.014246553182601929, + 0.005354760214686394, + 0.016596373170614243, + 0.02133292146027088, + 0.010660309344530106, + -0.001056496286764741, + 0.037424881011247635, + -0.020680876448750496, + 0.012979372404515743, + -0.03776935860514641, + -0.004195228219032288, + 0.0010403490159660578, + -0.028197839856147766, + 0.011730645783245564, + -0.008611906319856644, + 0.018724743276834488, + -0.012450355105102062, + 0.010358892381191254, + 0.005831490736454725, + -0.039713189005851746, + 0.002549739321693778, + -0.006532745901495218, + -0.0005782279768027365, + -0.017420655116438866, + -0.006422021426260471, + -0.007061762735247612, + 0.00911631714552641, + -0.02028718963265419, + 0.034176964312791824, + -0.006852616555988789, + -0.005782279651612043, + -0.014000498689711094, + -0.029009820893406868, + 0.019930411130189896, + 0.0012318100780248642, + 0.000869648705702275, + -0.0016670189797878265, + 0.012444203719496727, + -0.009356220252811909, + -0.011669132858514786, + 0.0010864841751754284, + -0.012081273831427097, + 0.012148939073085785, + -0.00911631714552641, + -0.013139307498931885, + -0.02632782608270645, + 0.012259663082659245, + -0.022390956059098244, + 0.010469617322087288, + -0.03954095020890236, + 0.01625189743936062, + 0.006606562063097954, + -0.003924568649381399, + -0.041706230491399765, + 0.018675532191991806, + -0.007547720335423946, + 0.013090097345411777, + 0.029477324336767197, + -0.007320119999349117, + -0.0019453680142760277, + -0.012419598177075386, + -0.003515502903610468, + 0.019401393830776215, + -0.015919722616672516, + -0.011798311024904251, + -0.05388592556118965, + -0.04357624426484108, + -0.001200284343212843, + -0.007670747581869364, + -0.0005117163527756929, + -0.015341495163738728, + 0.015304586850106716, + 0.004862651228904724, + 0.021197590976953506, + 0.0003956094151362777, + -0.0007743026362732053, + 0.015095440670847893, + 0.01541531179100275, + -0.010180503129959106, + -0.02556505799293518, + 0.01726071909070015, + -0.0285177119076252, + -0.022477073594927788, + -0.044462040066719055, + -0.02104995772242546, + -0.05452566593885422, + -0.015107743442058563, + -0.025220582261681557, + 0.006483534816652536, + -0.006864919327199459, + -0.0012064357288181782, + -0.017654407769441605, + 0.007086368277668953, + 0.005763825494796038, + 0.018970798701047897, + -0.0054347277618944645, + 0.012807134538888931, + -0.0030372347682714462, + 0.01651025377213955, + -0.02681993506848812, + 0.02605716697871685, + 0.005539300851523876, + -0.0018469461938366294, + -0.001149535644799471, + -0.02556505799293518, + 0.006323599256575108, + 0.0020407140254974365, + -0.0040937308222055435, + 0.007117125205695629, + 0.04539704695343971, + -0.01427115872502327, + -0.037400275468826294, + 0.03813844174146652, + 0.003457064973190427, + -0.016387226060032845, + 0.011798311024904251, + -9.707616845844314e-5, + -0.018109608441591263, + 0.01701466552913189, + 0.01930297166109085, + 0.013213124126195908, + 0.007560023106634617, + 0.0011133963707834482, + -0.0024866878520697355, + 0.017199207097291946, + -0.016436437144875526, + 0.013237729668617249, + -0.009159376844763756, + 0.025909533724188805, + -0.022919971495866776, + -0.009073258377611637, + 0.0025389743968844414, + -0.041189514100551605, + -0.00663731899112463, + 0.0192414578050375, + 0.023399777710437775, + -0.003810768248513341, + -0.0077753206714987755, + -0.011380018666386604, + -0.011822916567325592, + -0.005862247198820114, + 0.005087175872176886, + 0.018896982073783875, + 0.008581149391829967, + -0.021702002733945847, + 0.031002860516309738, + 0.008698024787008762, + 0.01454181782901287, + 0.03826146945357323, + -0.011822916567325592, + 0.01241344679147005, + 0.014824780635535717, + -0.001521692960523069, + 0.023707346990704536, + -0.0010680301347747445, + -0.01680551841855049, + -0.017211509868502617, + 0.02282155118882656, + 0.026352431625127792, + -0.0006766497390344739, + 0.03238076716661453, + 0.023375174030661583, + -0.005588511936366558, + 0.027607310563325882, + 0.01831875368952751, + 0.01574748568236828, + -0.007307817228138447, + 0.02154206670820713, + -0.015083137899637222, + -0.0037031194660812616, + -0.006729589309543371, + 0.005914533976465464, + -0.034964337944984436, + -0.008175158873200417, + -0.00644047511741519, + 0.00875338725745678, + 0.005173294804990292, + -0.009589971974492073, + 0.020471731200814247, + -0.005385516677051783, + 0.002143749501556158, + 0.02881297655403614, + -0.002152976579964161, + -0.0011987464968115091, + 0.007166335824877024, + -0.01289325300604105, + -0.005117932800203562, + -0.0002991099318023771, + -0.0017669785302132368, + 0.00021010743512306362, + 0.014160433784127235, + -0.002252936130389571, + 0.007529266178607941, + -0.005357835907489061, + 0.002695834031328559, + -0.0015516808489337564, + 0.016153475269675255, + -0.02306760475039482, + 0.012930161319673061, + -0.03004324808716774, + -0.008968684822320938, + -0.016165778040885925, + -0.023424383252859116, + -0.0210130512714386, + 0.005087175872176886, + -0.006858767941594124, + 0.021382132545113564, + 0.009811420924961567, + -0.033168140798807144, + -0.02026258409023285, + 0.009516156278550625, + 0.0023836526088416576, + 0.007320119999349117, + -0.019672052934765816, + -0.0004882643115706742, + 0.0019038463942706585, + 0.01090636383742094, + -0.02130831591784954, + 0.002511293161660433, + -0.003758481703698635, + 0.032429978251457214, + 0.026352431625127792, + -0.0022083388175815344, + 0.013742141425609589, + -0.018085002899169922, + -0.012733317911624908, + -0.005576209165155888, + 0.0024420905392616987, + 0.006612713448703289, + -0.00824897550046444, + 0.007055611349642277, + 0.02055784873664379, + 0.015944328159093857, + -0.0011941330740228295, + -0.05113011598587036, + 0.0067357406951487064, + -0.003589319298043847, + -0.0044966451823711395, + -0.009343917481601238, + -0.0063728103414177895, + -0.02133292146027088, + 0.007375482469797134, + 0.004265969153493643, + 0.01488629449158907, + 0.006071393843740225, + 0.004487418103963137, + 0.007560023106634617, + -0.0024097957648336887, + -0.00625285878777504, + -0.002763499040156603, + 0.013040886260569096, + -0.007147881668061018, + 0.01781434193253517, + -0.03213471174240112, + -0.017592893913388252, + -0.011318504810333252, + 0.004318255465477705, + -0.03297129645943642, + -0.00021760440722573549, + -0.007135579362511635, + -0.011872127652168274, + -0.008236672729253769, + -0.0016454891301691532, + 0.01930297166109085, + -0.0035862436052411795, + -0.02228023111820221, + -0.012671804055571556, + -0.00927010178565979, + 0.020225675776600838, + -0.013582206331193447, + 0.013446875847876072, + 0.00018367580196354538, + 0.011306202039122581, + -0.012844042852520943, + -0.012431900948286057, + -0.012524171732366085, + 0.003909190185368061, + -0.006514291744679213, + 0.01427115872502327, + -0.003177178092300892, + -0.00015512964455410838, + 0.01675630919635296, + -0.02230483666062355, + -0.030658384785056114, + -0.007781472057104111, + -0.024986829608678818, + -0.031002860516309738, + 0.009356220252811909, + -0.012425749562680721, + 0.0024866878520697355, + -0.005951442290097475, + -0.01830645091831684, + -0.011626073159277439, + 0.016362620517611504, + -0.008390456438064575, + 0.03134733811020851, + 0.0006839545094408095, + -0.002932661445811391, + -0.03489052131772041, + -0.00576074980199337, + 0.021357527002692223, + -0.021197590976953506, + -0.023448988795280457, + -0.0200534388422966, + -0.013299243524670601, + 0.0285177119076252, + 0.00925779901444912, + -0.023854980245232582, + -0.01187827903777361, + 0.015378403477370739, + -0.014787872321903706, + 0.0022083388175815344, + -0.016916243359446526, + -0.014529515989124775, + 0.013434573076665401, + 0.01327463798224926, + 0.015279981307685375, + 0.004954921547323465, + -0.02026258409023285, + 0.00925779901444912, + 0.004505872260779142, + -0.005877625662833452, + -0.0208039041608572, + 0.008052132092416286, + -0.011909035965800285, + -0.007929104380309582, + -0.0020714709535241127, + 0.01229042001068592, + 0.015206165611743927, + 0.016091961413621902, + 0.003807692788541317, + -0.038458310067653656, + 0.000443282478954643, + -0.0017100784461945295, + -0.018380267545580864, + 0.009417734108865261, + -0.02802560292184353, + 0.007818380370736122, + 0.020127253606915474, + 0.015378403477370739, + -0.0038722818717360497, + 0.008974836207926273, + -0.023916492238640785, + 0.02004113607108593, + -0.017445260658860207, + -0.007584628649055958, + 0.007781472057104111, + 0.012585685588419437, + -0.008199764415621758, + 0.00837815459817648, + -0.015144651755690575, + -0.012364236637949944, + 0.01376674696803093, + 0.0014909362653270364, + -0.007092519663274288, + 0.011435381136834621, + -0.006532745901495218, + -0.02807481400668621, + 0.004109109286218882, + 0.022723129019141197, + -0.0025912609416991472, + 0.017236115410923958, + -0.008058283478021622, + -0.010574189946055412, + -0.000287191680399701, + 0.008316640742123127, + 0.007067914120852947, + -0.014627937227487564, + -0.02282155118882656, + 0.0018792408518493176, + 0.011484591290354729, + -0.013225426897406578, + 0.009565367363393307, + 0.009553064592182636, + -0.006335902027785778, + 0.035210393369197845, + -0.007098671048879623, + 0.008408910594880581, + 0.00875338725745678, + 0.013594508171081543, + 0.0390242375433445, + -0.0027142881881445646, + 0.03909805417060852, + 0.015882814303040504, + 0.008679570630192757, + 0.008864111267030239, + -4.868225732934661e-5, + -0.002440552692860365, + 0.00033505697501823306, + 0.003604697762057185, + -0.00014763267245143652, + -0.01951211877167225, + -0.005579284857958555, + 0.014615634456276894, + -0.017875855788588524, + -0.0035954706836491823, + 0.03149497136473656, + 0.0011841370724141598, + -0.023141421377658844, + 0.00045750749995931983, + 0.01387747097760439, + 0.022944577038288116, + 0.0024051822256296873, + -0.017322232946753502, + -0.011090904474258423, + -0.02000422775745392, + -0.006723437923938036, + -0.013680627569556236, + 0.01728532463312149, + -0.0170515738427639, + -0.001765440683811903, + -0.008587300777435303, + -0.004170623142272234, + 0.008476575836539268, + -0.011798311024904251, + -0.0029418885242193937, + -0.0031141266226768494, + -0.00028834506520070136, + 0.001393283368088305, + -0.005751522723585367, + 0.00040329861803911626, + 0.0023175254464149475, + -0.01903231255710125, + 0.02151746116578579, + -0.004210606683045626, + -0.0031048995442688465, + 0.032676029950380325, + -0.03688356280326843, + 0.008212067186832428, + -0.005729992873966694, + 0.025368213653564453, + 0.0030280076898634434, + -0.010168200358748436, + 0.0059698959812521935, + 0.009454642422497272, + -0.018614020198583603, + -0.010500374250113964, + -0.02731204405426979, + 0.01491090003401041, + 0.005225581582635641, + 0.013631416484713554, + -0.0014455699129030108, + -0.0012817899696528912, + -0.019339879974722862, + -0.0021099168807268143, + -0.00011543413711478934, + -0.007375482469797134, + -0.004336709622293711, + -0.02280924841761589, + -0.018663231283426285, + 0.0014501834521070123, + 0.005256338510662317, + -0.00645277788862586, + 0.01492320280522108, + -0.016940848901867867, + 0.009325464256107807, + -0.015649063512682915, + 0.0016947000985965133, + 0.010838698595762253, + 0.003810768248513341, + -0.03402933105826378, + 0.012844042852520943, + -0.017629802227020264, + -0.007037157192826271, + -0.01954902708530426, + -0.011318504810333252, + 0.0020730087999254465, + -0.06239940971136093, + -0.022710826247930527, + 0.0030787563882768154, + 0.019450604915618896, + -0.0061605884693562984, + -0.0014078927924856544, + 0.005902231205254793, + -0.01438188273459673, + 0.009466945193707943, + -0.007295514456927776, + 0.01492320280522108, + 0.0040722014382481575, + 0.014726359397172928, + 0.005105630028992891, + -0.020902326330542564, + 0.011226234026253223, + -0.022686220705509186, + 0.014677148312330246, + -0.008089040406048298, + 0.014369579963386059, + 0.013250032439827919, + 0.02758270502090454, + 0.01653485931456089, + 0.0006289766752161086, + -0.0316426046192646, + -0.007867591455578804, + -0.010900212451815605, + -0.009639183059334755, + -0.00890101958066225, + 0.016128869727253914, + 0.0187616515904665, + -0.002440552692860365, + 0.025614269077777863, + 0.007277060300111771, + 0.00644047511741519, + 0.015046229586005211, + 0.017088482156395912, + 0.0030356969218701124, + -0.0014155820244923234, + -0.024753078818321228, + 0.00862420815974474, + 0.002342130756005645, + -0.004625823814421892, + -0.0013909765984863043, + -0.026918357238173485, + -0.010986331850290298, + -0.0067972540855407715, + 0.03306971862912178, + -0.021923452615737915, + 0.007695353124290705, + 0.010297378525137901, + 0.002372887684032321, + 0.03580092266201973, + -0.0067357406951487064, + 0.0496537871658802, + -0.02133292146027088, + -0.01951211877167225, + -0.015243072994053364, + -0.00813825149089098, + 0.025737296789884567, + -0.025195976719260216, + -0.005699236411601305, + -0.0018976950086653233, + -0.03272524103522301, + 0.014640239998698235, + -0.02255089022219181, + -0.008759538643062115, + 0.0395655557513237, + 0.010432709008455276, + 0.0036846655420958996, + 0.03134733811020851, + 0.00639741588383913, + -0.0007835296564735472, + 0.003429383970797062, + -0.002112992573529482, + 0.030953649431467056, + -0.04259202629327774, + 0.015070835128426552, + 0.01014974620193243, + -0.02232944220304489, + -0.012671804055571556, + 0.014738662168383598, + 0.005643873941153288, + 0.02331366017460823, + 0.017469866201281548, + -0.011884430423378944, + -0.012105879373848438, + -0.00914092268794775, + -0.02156667225062847, + 0.00890101958066225, + -0.01488629449158907, + -0.009454642422497272, + -0.018970798701047897, + -0.009011744521558285, + -0.01855250634253025, + -0.007375482469797134, + 0.005788431037217379, + -0.006920281331986189, + 0.0017100784461945295, + -0.01153380237519741, + -0.0077138072811067104, + 0.00625285878777504, + -0.002271390287205577, + -0.006631167605519295, + 0.01438188273459673, + -0.013040886260569096, + 0.0031525727827101946, + 0.0009503853507339954, + -0.0004901866195723414, + 0.011140115559101105, + -0.010186654515564442, + 0.04089425131678581, + -0.016473345458507538, + -0.02930508553981781, + -0.01090636383742094, + 0.005834566429257393, + 0.03936871141195297, + 0.018121911212801933, + -0.0021314467303454876, + -0.00014599871065001935, + -0.018860073760151863, + 0.026352431625127792, + 0.012358085252344608, + -0.021406738087534904, + 0.025442030280828476, + 0.025909533724188805, + -0.008685722015798092, + -0.006203647702932358, + -0.01908152364194393, + 0.03208550065755844, + -0.007836834527552128, + 0.008408910594880581, + -0.0032325403299182653, + -0.0006324368296191096, + 0.018478689715266228, + -0.0004355932760518044, + 0.006163664162158966, + -0.007683050353080034, + 0.02301839366555214, + -0.008519635535776615, + -0.0023098362144082785, + -0.005413197912275791, + 0.004979527089744806, + 0.00046135211596265435, + 0.006056015379726887, + -0.00488110538572073, + 0.016916243359446526, + -0.0007147113210521638, + -0.0025312851648777723, + 0.0033125081099569798, + -0.023707346990704536, + 0.0005424731643870473, + -0.0016993135213851929, + 0.011453835293650627, + 0.010980180464684963, + -0.031913261860609055, + 0.002156052039936185, + -0.023387476801872253, + 0.012511868961155415, + 0.00462889950722456, + -0.011318504810333252, + 9.102092735702172e-5, + -0.021222196519374847, + 0.04830048978328705, + -0.004262893460690975, + -0.00023086827422957867, + 0.009208587929606438, + 0.02229253388941288, + -0.02075469307601452, + -0.005028737708926201, + 0.007836834527552128, + -0.002931123599410057, + -0.0005774590536020696, + -0.007547720335423946, + 0.00911631714552641, + 0.0018853922374546528, + -0.0036323789972811937, + -0.025491241365671158, + -0.006969492416828871, + 0.026893751695752144, + -0.018331056460738182, + -0.013422270305454731, + 0.03503815457224846, + 0.02079160138964653, + -0.009466945193707943, + -0.011121661402285099, + -0.020619362592697144, + -0.0076645961962640285, + -0.0031956322491168976, + -0.0075046606361866, + 0.0028342397417873144, + 0.024236364290118217, + 0.0034017027355730534, + 0.01001441664993763, + -0.007676898967474699, + -0.011324656195938587, + -0.017937369644641876, + 0.014677148312330246, + 0.014246553182601929, + 0.0008819514187052846, + 0.009805270470678806, + 0.0033494161907583475, + 0.014997019432485104, + 0.004650429356843233, + -0.007363179698586464, + 0.013840562663972378, + 0.005994501523673534, + 0.007473904173821211, + 0.020434822887182236, + 0.011872127652168274, + -0.004718094132840633, + 0.007098671048879623, + 0.014566423371434212, + -0.020361006259918213, + -0.0354810506105423, + 0.01390207652002573, + -0.007553871721029282, + -0.005723841954022646, + -0.01288095023483038, + -0.00776916928589344, + -0.007652293425053358, + -0.003463216358795762, + -0.0036600599996745586, + -0.014172736555337906, + 0.01781434193253517, + -0.008058283478021622, + -0.019635144621133804, + -0.034447625279426575, + -0.008255126886069775, + 0.0025374365504831076, + -0.0066004106774926186, + 0.010045172646641731, + 0.004192152991890907, + -0.022218717262148857, + 0.012696409597992897, + 0.017420655116438866, + -0.019093826413154602, + -0.01675630919635296, + 0.0010403490159660578, + -0.0038538279477506876, + 0.04232136532664299, + 0.015636760741472244, + 0.024088731035590172, + 0.02026258409023285, + 0.0018777030054479837, + 0.0028680721297860146, + -0.02328905463218689, + 0.0062620858661830425, + -0.009386977180838585, + -0.014037407003343105, + 0.0007466214592568576, + 0.01328694075345993, + -0.023399777710437775, + -0.013729838654398918, + -0.013840562663972378, + 0.0006239787326194346, + 0.00799676962196827, + 0.011693738400936127, + 0.009663788601756096, + -0.014960111118853092, + -0.012185846455395222, + 0.03712961822748184, + -0.0058991555124521255, + 0.011361564509570599, + 0.005360911600291729, + -0.007480055559426546, + 0.011792159639298916, + -0.006809556856751442, + -0.01290555577725172, + 0.006834162399172783, + 0.010580341331660748, + -0.008790295571088791, + 0.019389091059565544, + -0.0034601406659930944, + -0.01277022622525692, + 0.02354741096496582, + -0.0006308989832177758, + -0.03557947278022766, + -0.0033986270427703857, + -0.0060098799876868725, + 0.004152168985456228, + -0.01288095023483038, + -0.01577209122478962, + -0.019118431955575943, + -0.004988754168152809, + 0.004090655129402876, + -0.015046229586005211, + 0.011576862074434757, + 0.005662328097969294, + -0.0054593333043158054, + 0.000954998831730336, + 0.018146516755223274, + 0.02303069643676281, + -0.013545298017561436, + 0.0017500623362138867, + 0.008568846620619297, + -0.010789487510919571, + -0.0047949859872460365, + -0.0017669785302132368, + 0.006907979026436806, + -9.068452345672995e-5, + 0.018835468217730522, + -0.02733664959669113, + 0.0233259629458189, + 0.009319312870502472, + 0.006557350978255272, + 0.00888871680945158, + 0.014849386177957058, + -0.004459736868739128, + 0.00020164930901955813, + -0.0036631356924772263, + 0.019413696601986885, + -0.006760346237570047, + 0.021431343629956245, + -0.02025028131902218, + -0.0195736326277256, + -0.0007050997810438275, + -0.003512427443638444, + -0.009060955606400967, + -0.010297378525137901, + 0.026401642709970474, + -0.040475957095623016, + 0.028173234313726425, + 0.010494222864508629, + -0.01277022622525692, + 0.00260048802010715, + 0.017420655116438866, + -0.00890101958066225, + -0.008322792127728462, + 0.007037157192826271, + 0.016387226060032845, + 0.018085002899169922, + -0.009700696915388107, + -0.023744255304336548, + -0.02303069643676281, + 0.012173543684184551, + -0.004416677635163069, + -0.014086617156863213, + 0.009719151072204113, + 0.034423019737005234, + 0.012198149226605892, + -0.01857711188495159, + 0.011792159639298916, + 0.004499720875173807, + 0.0027065989561378956, + 0.011035542003810406, + 0.002761961193755269, + -0.008679570630192757, + -0.014726359397172928, + 0.024248667061328888, + -0.011472288519144058, + 0.010851001366972923, + 0.015464522875845432, + -0.019942713901400566, + 0.014787872321903706, + 0.01488629449158907, + -0.009073258377611637, + -0.010358892381191254, + -0.01823263429105282, + 0.023608924821019173, + 0.011263142339885235, + 0.008685722015798092, + -0.01652255654335022, + -0.009054804220795631, + -0.006089847534894943, + 0.006046788301318884, + 0.01577209122478962, + -0.010358892381191254, + -0.009737605229020119, + -0.006680378224700689, + -0.004665807820856571, + -0.029477324336767197, + 0.010795638896524906, + -0.023707346990704536, + -0.011742948554456234, + -0.004555082879960537, + 0.005105630028992891, + -0.007744563743472099, + 0.008618057705461979, + -0.02151746116578579, + 0.012087425217032433, + -0.011921338737010956, + 0.01152149960398674, + 0.02124680206179619, + 0.008704176172614098, + 0.0010203570127487183, + -0.019659750163555145, + 0.028222445398569107, + -0.0011141652939841151, + 0.02405182272195816, + 0.00282039912417531, + 0.0029280479066073895, + -0.0023021469824016094, + 0.005234808661043644, + 0.001012667897157371, + 0.012118182145059109, + 0.011865976266562939, + 0.003074142849072814, + 0.015464522875845432, + 0.020668573677539825, + -0.01603044755756855, + 0.02004113607108593, + 0.014947808347642422, + -0.025909533724188805, + -0.0024959149304777384, + -0.01076488196849823, + -0.011183175258338451, + 0.009479247964918613, + -0.006803405471146107, + -0.005028737708926201, + -0.0018361813854426146, + 0.014627937227487564, + -2.0893003238597885e-5, + -0.010272773914039135, + -0.006191345397382975, + -0.029428113251924515, + -0.0013163912808522582, + 0.021837333217263222, + 0.007812228985130787, + 0.0033986270427703857, + 0.005407046526670456, + -0.007646142039448023, + -0.021111471578478813, + -0.02652467042207718, + -0.012708712369203568, + -0.011238536797463894, + 0.00714173074811697, + 0.011207780800759792, + 0.012087425217032433, + -0.03198707848787308, + 0.02104995772242546, + 0.011527650989592075, + 0.01250571757555008, + 0.008642662316560745, + 0.009411582723259926, + 0.0053086248226463795, + 0.024113336578011513, + 0.006329750642180443, + -0.008974836207926273, + 0.003613924840465188, + -0.00788604561239481, + 0.004361315164715052, + -0.00036715937312692404, + 0.00334634049795568, + 0.006551200058311224, + -0.00562849547713995, + -0.03912265971302986, + 0.012271965853869915, + -0.015624457970261574, + 0.00964533444494009, + 0.0097868163138628, + -0.00812594871968031, + 0.006471232045441866, + 0.0033125081099569798, + 0.0034847462084144354, + 0.012179695069789886, + -0.03338959068059921, + -0.003555486910045147, + 0.0024728472344577312, + 0.005800733808428049, + -0.004736548289656639, + -0.025171371176838875, + -0.011583013460040092, + 0.016620978713035583, + -0.013040886260569096, + 0.0036446815356612206, + -0.008187461644411087, + 0.003244843101128936, + 0.018946193158626556, + 0.003749254858121276, + -0.013668324798345566, + -0.00799676962196827, + 0.0150093212723732, + 0.007812228985130787, + -0.021394435316324234, + 0.03225773945450783, + -0.025737296789884567, + -0.014566423371434212, + -0.01202591136097908, + 0.012093576602637768, + 0.021677397191524506, + -0.0054747117683291435, + 0.011909035965800285, + 0.006668075919151306, + 0.015095440670847893, + 0.027877969667315483, + 0.008587300777435303, + 0.025737296789884567, + -0.0005609272629953921, + 0.007258606608957052, + -0.013422270305454731, + 0.009319312870502472, + -0.01539070624858141, + 0.014578726142644882, + 0.013360756449401379, + -0.012210451997816563, + -0.013938984833657742, + -0.00469656428322196, + 0.007203244138509035, + -0.014677148312330246, + -0.009233193472027779, + -0.02228023111820221, + -0.003512427443638444, + 0.0025974123273044825, + 0.0058376421220600605, + -0.0006820322014391422, + -0.020607059821486473, + -0.005121008493006229, + 0.015870511531829834, + -0.005588511936366558, + -0.025712691247463226, + -0.005277867894619703, + 0.003244843101128936, + 0.008845658041536808, + -0.014185039326548576, + 0.0016516405157744884, + 0.015144651755690575, + -0.008445818908512592, + 0.01552603580057621, + 0.015944328159093857, + 0.04126333072781563, + 0.0006235942710191011, + 0.012173543684184551, + 0.01750677451491356, + 0.01250571757555008, + -0.024162547662854195, + 0.013717535883188248, + 0.026992173865437508, + -0.016879335045814514, + 0.001149535644799471, + -0.0142588559538126, + -0.027484282851219177, + 0.02657388150691986, + -0.005379365291446447, + -0.008507332764565945, + -0.004029141739010811, + -0.010740277357399464, + 0.002980334684252739, + 0.013532995246350765, + 0.0006366659072227776, + 0.01651025377213955, + -0.023485897108912468, + -0.0002612406387925148, + 0.02303069643676281, + 0.003835373790934682, + -0.013434573076665401, + -0.00720939552411437, + 0.009300858713686466, + 0.007861440069973469, + 0.02881297655403614, + 0.010715671814978123, + 0.01851559802889824, + -0.0006112915580160916, + 0.011552256532013416, + -0.007695353124290705, + 0.004259817767888308, + -0.014431093819439411, + 0.011220083571970463, + 0.0073262713849544525, + -0.0062866914086043835, + 0.011952094733715057, + 0.008593452163040638, + 0.0067972540855407715, + 0.0008881028043106198, + -0.012358085252344608, + 0.015353797934949398, + -0.013606810942292213, + -0.017629802227020264, + -0.01551373302936554, + -0.0010503449011594057, + 0.01726071909070015, + 0.009719151072204113, + -0.020939234644174576, + -0.00952230766415596, + 0.005766901187598705, + -0.01502162404358387, + -0.007633839268237352, + 0.005822263658046722, + -0.014332671649754047, + -0.006259010173380375, + -0.013139307498931885, + -0.0075046606361866, + 0.004462812561541796, + 0.02027488686144352, + -0.023707346990704536, + 0.01290555577725172, + -0.008372003212571144, + 0.009848329238593578, + -0.013496086932718754, + 0.0526556521654129, + 0.009817572310566902, + -0.01977047510445118, + -0.008365851826965809, + 0.011675284244120121, + -0.030682990327477455, + -0.025638874620199203, + -0.004352088086307049, + -0.03028930351138115, + -0.018921587616205215, + 0.022464770823717117, + -0.007738412357866764, + 0.02057015150785446, + -0.0022329441271722317, + 0.002594336634501815, + -0.007147881668061018, + -0.017383746802806854, + -0.020643968135118484, + 0.0028911398258060217, + 0.024371692910790443, + -0.0008596527623012662, + 0.007836834527552128, + -0.01878625713288784, + -0.006748043466359377, + -0.013926682062447071, + -0.001934603089466691, + -0.017666710540652275, + 0.01979508064687252, + -0.030978254973888397, + -0.009337766095995903, + -0.003410929813981056, + -0.0071294279769063, + -0.012148939073085785, + 0.0031002862378954887, + -0.007646142039448023, + -0.006581956520676613, + -0.004487418103963137, + -0.008593452163040638, + -0.009706848300993443, + 0.026967568323016167, + 0.012136636301875114, + 0.007627687882632017, + -0.013250032439827919, + 0.018171122297644615, + -0.013102400116622448, + 0.010912515223026276, + 0.03513657674193382, + 0.016584070399403572, + 0.0036754384636878967, + 0.008544241078197956, + -0.029747983440756798, + -0.007812228985130787, + -0.003819995326921344, + -0.012991675175726414, + 0.004192152991890907, + -0.0010803327895700932, + -0.005874549970030785, + -0.008593452163040638, + 0.014714056625962257, + -0.027213621884584427, + -0.005093327257782221, + -0.0022068009711802006, + -0.0055085439234972, + -0.008107494562864304, + 0.017949672415852547, + 0.012241208925843239, + 0.01253032311797142, + 0.009977508336305618, + -0.011718343012034893, + -0.002179119735956192, + 0.023658135905861855, + 0.004813440144062042, + 0.0060959989205002785, + -0.0006232098094187677, + 0.0023759633768349886, + 0.0010157435899600387, + -0.005991425830870867, + -0.00939312856644392, + 0.017186904326081276, + 0.01825723983347416, + 0.0006916436832398176, + 0.01755598559975624, + 0.0004663500876631588, + 0.0001341765746474266, + 0.014714056625962257, + 0.0049456944689154625, + -0.011152418330311775, + 0.007369331084191799, + -0.006545048672705889, + 0.024716170504689217, + 0.0062620858661830425, + -0.010740277357399464, + 0.011995154432952404, + -0.00019299896666780114, + -0.0007404701318591833, + -0.01201360858976841, + -0.0037031194660812616, + 0.023916492238640785, + 0.009682242758572102, + -0.02383037470281124, + 0.01604275032877922, + -0.006016031373292208, + 0.013336151838302612, + -0.015378403477370739, + 0.023166026920080185, + 0.00791065115481615, + -0.012708712369203568, + -0.015255375765264034, + 0.018109608441591263, + 0.00876569002866745, + -0.0010526516707614064, + -0.0073508769273757935, + 0.04382229968905449, + -0.03279905766248703, + 0.01728532463312149, + 0.01075257919728756, + -0.0010019029723480344, + -0.01251802034676075, + 0.01604275032877922, + 0.006428172811865807, + 0.014308066107332706, + 0.007639990653842688, + 0.0022913820575922728, + 0.0069571896456182, + -0.011847522109746933, + -0.0015762863913550973, + -0.02199726738035679, + 0.011349261738359928, + 0.018650928512215614, + -0.02805020846426487, + 0.0010934044839814305, + 0.019918108358979225, + 0.0014824781101197004, + 0.015587549656629562, + -0.009516156278550625, + 0.009331615641713142, + 0.008279732428491116, + -0.005886852741241455, + -0.014148131012916565, + 0.005062570329755545, + 3.0444432923104614e-5, + -0.0023605849128216505, + -0.01830645091831684, + 0.005914533976465464, + 0.0018454084638506174, + -0.011078601703047752, + 0.006329750642180443, + -0.006778800394386053, + -0.012419598177075386, + -0.01729762740433216, + -0.022489376366138458, + -0.008784144185483456, + 0.005717690568417311, + -0.01931527443230152, + 0.004619672428816557, + 0.014738662168383598, + -0.027361255139112473, + -0.014972413890063763, + -0.011466137133538723, + -0.0062221018597483635, + 0.008027526549994946, + -0.014443396590650082, + 0.022157203406095505, + -0.002669690875336528, + 0.016596373170614243, + -0.0300186425447464, + -0.016670189797878265, + 0.01776513084769249, + -0.009596123360097408, + -0.001780819147825241, + -0.012819437310099602, + -0.008015223778784275, + -0.0016085810493677855, + -0.008993290364742279, + -0.020459428429603577, + 0.008968684822320938, + 0.010500374250113964, + -0.00626516155898571, + 0.0004236750246491283, + -0.0014394185272976756, + 0.0020038059446960688, + 0.009319312870502472, + 0.004874954000115395, + 0.0033647946547716856, + 0.0042198337614536285, + 0.0014917050721123815, + -0.021419040858745575, + -0.03183944523334503, + 0.016953151673078537, + 0.0004471270658541471, + 0.012831740081310272, + 0.004524326417595148, + -0.0005028737941756845, + -0.0011810613796114922, + -0.0021898846607655287, + 0.026893751695752144, + 0.008802598342299461, + 0.016608675941824913, + 0.012659501284360886, + -0.005656176712363958, + 0.01649795100092888, + -0.00852578692138195, + -0.0033002053387463093, + 0.00022125677787698805, + 0.00670498376712203, + 0.015341495163738728, + -0.00018502141756471246, + -0.020385611802339554, + 0.021222196519374847, + 0.013360756449401379, + -0.026229403913021088, + -0.00890101958066225, + -0.019229155033826828, + -0.010549584403634071, + -0.013422270305454731, + 0.009614577516913414, + -0.008169007487595081, + -0.010623401030898094, + 0.009669939987361431, + 0.0009726840071380138, + -0.008864111267030239, + 0.0016347243217751384, + 0.0071970927529037, + 0.0060959989205002785, + -0.009024047292768955, + -0.007172487210482359, + -0.02728743851184845, + 0.010672612115740776, + -0.003933795727789402, + -0.013090097345411777, + -0.005044116172939539, + -0.003260221565142274, + 0.053196974098682404, + -0.02355971373617649, + -0.022181808948516846, + -0.012284268625080585, + -0.02375655807554722, + -0.0039460984990000725, + -0.021382132545113564, + -0.017654407769441605, + 0.012370388023555279, + -0.0021099168807268143, + -0.015932025387883186, + 0.01551373302936554, + 0.004462812561541796, + -0.025368213653564453, + -0.01601814478635788, + -0.0031894808635115623, + 0.0014040481764823198, + 0.016411831602454185, + 0.0012133560376241803, + 0.005293246358633041, + 0.025122160091996193, + -0.029182057827711105, + 0.01492320280522108, + -0.012671804055571556, + 0.005766901187598705, + -0.007012552116066217, + -1.3792505342280492e-5, + 0.023166026920080185, + 0.02605716697871685, + -0.011097055859863758, + -0.0046227481216192245, + -0.007929104380309582, + 0.008507332764565945, + 0.015366100706160069, + -0.014320368878543377, + -0.022710826247930527, + -0.0010680301347747445, + -0.004539704881608486, + -0.011244688183069229, + -0.001613194472156465, + -0.008851809427142143, + -0.0009826800087466836, + -0.014861688949167728, + -0.0012402682332322001, + -0.01290555577725172, + 0.0023667362984269857, + -0.0030864456202834845, + -0.00037100398913025856, + 0.009386977180838585, + 0.01802348904311657, + 0.010543433018028736, + -0.0002921896521002054, + 0.003435535356402397, + 0.006588107906281948, + 0.009639183059334755, + 0.02025028131902218, + -0.007683050353080034, + -0.028468500822782516, + -0.02600795589387417, + 0.016239594668149948, + 0.0006339746760204434, + 0.00564079824835062, + -0.01076488196849823, + -0.0009019433637149632, + -0.009669939987361431, + 0.022883065044879913, + -0.016128869727253914, + -0.033414196223020554, + -0.008322792127728462, + 0.003278675489127636, + -0.029501929879188538, + -0.003201783634722233, + 0.026155589148402214, + -0.018921587616205215, + 0.0005424731643870473, + 0.0275580994784832, + -0.013803655281662941, + 0.0006581956404261291, + 0.0007446992094628513, + 0.0010449625551700592, + -0.021086866036057472, + 0.03203628957271576, + 0.009626880288124084, + -0.025934139266610146, + -0.024371692910790443, + 0.015919722616672516, + 0.026746118441224098, + -0.02207108400762081, + 0.00837815459817648, + 0.015267678536474705, + -0.018589414656162262, + 0.018208028748631477, + 0.00023221388983074576, + -0.005437803454697132, + -0.0028588452842086554, + 0.003241767408326268, + -0.0013548373244702816, + 0.015218468382954597, + 0.004142941907048225, + -0.004675034433603287, + -0.01488629449158907, + -0.0022575496695935726, + 0.011250839568674564, + 0.016928546130657196, + 0.013090097345411777, + 0.013237729668617249, + 0.011429229751229286, + 0.009712999686598778, + -0.010248168371617794, + -0.010069778189063072, + 0.019475210458040237, + 0.03781856968998909, + -0.00928240455687046, + 0.002196036046370864, + -0.015366100706160069, + -0.021234499290585518, + 0.001986889634281397, + 0.0016700945561751723, + -0.015882814303040504, + -0.025688085705041885, + -0.00018790486501529813, + 0.026106378063559532, + 0.0010949423303827643, + -0.014062011614441872, + -0.017199207097291946, + 0.002069933107122779, + -0.0024943770840764046, + -0.011324656195938587, + 0.004013763274997473, + 0.0054593333043158054, + -6.968338857404888e-5, + 0.009651485830545425, + 0.019204549491405487, + -0.021677397191524506, + -0.0018392570782452822, + 0.012007457204163074, + 0.02124680206179619, + -0.005868398584425449, + 0.004527402110397816, + 0.00751696340739727, + -0.00576074980199337, + 0.0010503449011594057, + 0.0014909362653270364, + -0.032429978251457214, + -0.010691066272556782, + 0.0009819110855460167, + -0.02726283296942711, + 0.017974277958273888, + 0.00038984252023510635, + 0.04328097775578499, + 0.022895367816090584, + -0.008667267858982086, + -0.005729992873966694, + -0.02701677940785885, + 0.010383497923612595, + -0.00789834838360548, + -0.00048365077236667275, + 0.009725302457809448, + -0.007221698295325041, + 0.008144402876496315, + -0.007922952994704247, + -0.003370946040377021, + 0.00016464502550661564, + -0.007098671048879623, + 0.03149497136473656, + -0.009473096579313278, + -0.014947808347642422, + 0.010248168371617794, + 0.004484342411160469, + -0.012647198513150215, + -0.009940600022673607, + 0.0049703000113368034, + -0.017629802227020264, + -0.0019407544750720263, + -0.0205332450568676, + 0.023990308865904808, + -0.005087175872176886, + -0.012733317911624908, + 0.003810768248513341, + 0.01488629449158907, + 0.03540723770856857, + 0.002252936130389571, + 0.02529439702630043, + -0.019425999373197556, + 0.00862420815974474, + 0.012647198513150215, + 0.016830123960971832, + 0.019327577203512192, + 0.009725302457809448, + -0.002645085332915187, + -0.015316889621317387, + -0.010063626803457737, + 0.02054554782807827, + 0.0033248108811676502, + -0.002623555716127157, + -0.0007577708456665277, + 0.013803655281662941, + -0.004558158572763205, + -0.021911149844527245, + -0.008519635535776615, + 0.008218218572437763, + -0.004548931494355202, + 0.00501335971057415, + 0.019659750163555145, + -0.016178080812096596, + 0.001951519399881363, + 0.022587798535823822, + -0.002017646562308073, + -0.009903691709041595, + -0.005179446190595627, + -0.030166275799274445, + -0.008673419244587421, + -0.010297378525137901, + 0.007080216892063618, + -0.010118989273905754, + 0.0008265891810879111, + -0.002068395260721445, + -0.002771188272163272, + 0.010930969379842281, + 0.007104822434484959, + -0.013803655281662941, + 0.017100784927606583, + -0.024371692910790443, + -0.007609234191477299, + -9.664365643402562e-5, + -0.010820244438946247, + -0.006618864834308624, + -0.016903940588235855, + 0.017162298783659935, + 0.018847770988941193, + -0.009706848300993443, + 0.011195478029549122, + 0.022144900634884834, + -0.0027219774201512337, + 0.010727974586188793, + -0.008698024787008762, + -0.0029065182898193598, + -0.04027911275625229, + 0.033684853464365005, + 0.00533323036506772, + 0.011435381136834621, + 0.017986580729484558, + -0.0010441936319693923, + -0.0101620489731431, + -0.009073258377611637, + 0.0009634569869376719, + -0.007855288684368134, + -0.006883373484015465, + -0.036711324006319046, + -0.0027496584225445986, + -0.014234250411391258, + 0.020336400717496872, + -0.00851348415017128, + -0.006206723395735025, + 0.005794582422822714, + 0.00432440685108304, + 0.004822667222470045, + 0.009940600022673607, + -0.012967069633305073, + -0.021726608276367188, + 0.020705481991171837, + 0.009860632009804249, + -0.00990984309464693, + 0.0059698959812521935, + -0.007270908914506435, + -0.00965763721615076, + 0.021111471578478813, + 0.0029511156026273966, + 0.003570865374058485, + -0.021160682663321495, + -0.016079658642411232, + -0.01390207652002573, + 0.017211509868502617, + 0.00401683896780014, + 0.019905805587768555, + -0.03326656296849251, + 0.0014455699129030108, + 0.017149996012449265, + -0.016670189797878265, + -0.016325712203979492, + 0.014997019432485104, + -0.006105225998908281, + 0.013139307498931885, + -0.014148131012916565, + 0.0229937881231308, + -0.008784144185483456, + -0.005437803454697132, + -0.012179695069789886, + -0.02025028131902218, + -0.010930969379842281, + -0.02127140760421753, + 0.0033955515827983618, + 0.0005774590536020696, + -0.006563502363860607, + 0.027410466223955154, + 0.02282155118882656, + -0.005702312104403973, + -0.003561638295650482, + 0.013569903559982777, + -0.01226581446826458, + -0.010297378525137901, + -0.012136636301875114, + -0.00266661518253386, + -0.007357028312981129, + 0.007135579362511635, + -0.007818380370736122, + 0.019438302144408226, + -0.023153724148869514, + 0.0068772220984101295, + 0.009934448637068272, + -0.010383497923612595, + 0.01575978845357895, + 0.00287422351539135, + 0.0005390130099840462, + 0.009079409763216972, + 0.027927180752158165, + 0.039663977921009064, + -0.010617249645292759, + -0.03225773945450783, + 0.0037800115533173084, + -0.03080601803958416, + 0.0003473596880212426, + -0.002897291211411357, + 0.01491090003401041, + -0.004702715668827295, + -0.007959861308336258, + 0.010949423536658287, + 0.005779203958809376, + 0.003029545536264777, + -0.0026543124113231897, + 0.00824897550046444, + -0.00977451354265213, + 0.005483938846737146, + -0.018355662003159523, + 0.0074123903177678585, + -0.0016239593969658017, + 0.01799888350069523, + -0.0142588559538126, + 0.016928546130657196, + 0.02252628467977047, + -0.02576190046966076, + -0.010451163165271282, + 0.019389091059565544, + 0.024876104667782784, + -0.02031179517507553, + 0.0014048170996829867, + 0.013250032439827919, + 0.0003216008481103927, + -0.0011964397272095084, + 0.013520692475140095, + -0.027361255139112473, + -0.0027911802753806114, + 0.027902575209736824, + -0.007806077599525452, + -0.022612404078245163, + -0.010020568035542965, + -0.016079658642411232, + -0.012124333530664444, + 0.0058991555124521255, + 0.0011087828315794468, + 0.01066646073013544, + 0.031691811978816986, + -0.0018284921534359455, + 0.026106378063559532, + 0.0022790792863816023, + 0.009337766095995903, + 0.002542050089687109, + -0.01013744343072176, + -0.001994578866288066, + -0.03380788117647171, + -0.02777954749763012, + 0.0025974123273044825, + 0.030387725681066513, + -0.007781472057104111, + -0.01881086267530918, + -0.017666710540652275, + 0.0018223407678306103, + 0.0007043308578431606, + -0.014517213217914104, + 0.008328943513333797, + 0.004013763274997473, + 0.011964397504925728, + 0.017334535717964172, + 0.00789834838360548, + 0.006969492416828871, + 0.006477383431047201, + -0.03129812702536583, + -0.009959054179489613, + 0.008913322351872921, + 0.004675034433603287, + 0.02400261163711548, + -0.01881086267530918, + -0.0046073696576058865, + -0.003540108446031809, + -0.009626880288124084, + 0.026647698134183884, + 0.0056715551763772964, + 0.007480055559426546, + 0.00476115383207798, + 0.01427115872502327, + 0.014677148312330246, + 0.01776513084769249, + 0.007498509716242552, + 0.005576209165155888, + -0.007486206945031881, + -0.02357201650738716, + -0.0001887699036160484, + 0.0108817582949996, + -0.03612079471349716, + 0.02207108400762081, + -0.0014940118417143822, + 0.026918357238173485, + -0.013754444196820259, + 0.01706387661397457, + -0.0073877847753465176, + 0.012056668289005756, + -0.023461291566491127, + -0.0053486088290810585, + -0.00017723609926179051, + -0.011423078365623951, + -0.022390956059098244, + -0.000722400494851172, + 0.017149996012449265, + -0.029452718794345856, + -0.0014993943041190505, + -0.012296571396291256, + -0.005791506730020046, + -0.002846542512997985, + -0.002076084492728114, + -0.008587300777435303, + -0.005465484689921141, + 0.003767708782106638, + 0.01899540424346924, + 0.0023252146784216166, + 0.0008358162012882531, + 0.0036170005332678556, + -0.013483784161508083, + 0.0016823973273858428, + 0.0150093212723732, + 0.0007012552232481539, + -0.0002996866242028773, + 0.006422021426260471, + -0.01648564822971821, + -0.0114968940615654, + 0.005194824654608965, + -0.004767305217683315, + -0.01749447174370289, + 0.012745620682835579, + 0.013016280718147755, + 0.006203647702932358, + 0.005976047366857529, + -0.011613770388066769, + 0.007916801609098911, + -0.014750964939594269, + 0.00426904484629631, + -0.004585839807987213, + -0.0028588452842086554, + 0.004186001606285572, + 0.001620883704163134, + 0.003453989513218403, + 0.016694795340299606, + 0.008587300777435303, + 0.0005847637658007443, + 0.0014747888781130314, + 0.005305549129843712, + -0.014591028913855553, + 0.01229042001068592, + 0.013988195918500423, + -0.006289767101407051, + -0.023621227592229843, + 0.006298994179815054, + 0.023129118606448174, + 0.020151859149336815, + -0.005151764955371618, + 0.010186654515564442, + -0.00851348415017128, + -0.004195228219032288, + 0.014185039326548576, + 0.0035677896812558174, + -0.00925779901444912, + 0.035973161458969116, + -0.009528459049761295, + 0.005145613569766283, + -0.015599852427840233, + 0.03481670469045639, + -0.01328694075345993, + 0.013594508171081543, + -0.023104513064026833, + 0.011035542003810406, + -0.00787374284118414, + 0.0008965609013102949, + -0.013040886260569096, + -0.013483784161508083, + 0.007289363071322441, + 0.01229042001068592, + -0.007947558537125587, + 0.007498509716242552, + 0.02600795589387417, + -0.015329192392528057, + 0.006883373484015465, + -0.007227849680930376, + 0.035604078322649, + 0.013508389703929424, + 0.006575805135071278, + -0.017420655116438866, + -0.006255934480577707, + -0.015353797934949398, + -0.012185846455395222, + 0.000582841516006738, + 0.008310489356517792, + 0.01649795100092888, + -0.02150515839457512, + 0.011380018666386604, + -0.008242824114859104, + 0.015169257298111916, + 0.00048249741666950285, + -0.0017362217186018825, + 0.012807134538888931, + 0.013852865435183048, + -0.005625419784337282, + -0.01825723983347416, + -0.0021222196519374847, + -0.004364390857517719, + -0.014148131012916565, + -0.001966897863894701, + 0.0027650368865579367, + 0.011263142339885235, + 0.0058591715060174465, + -0.010518827475607395, + 0.009054804220795631, + 0.0033647946547716856, + -0.013040886260569096, + 0.037966202944517136, + 0.012474960647523403, + -0.0180111862719059, + -0.0034509138204157352, + -0.00901789590716362, + 0.004874954000115395, + -0.029895616695284843, + 0.002592798788100481, + 0.005357835907489061, + 0.0038015414029359818, + -0.05176985636353493, + -0.014566423371434212, + -0.008544241078197956, + 0.0057730525732040405, + -0.0021083790343254805, + 0.006240556016564369, + 0.009952902793884277, + 0.027139807119965553, + -0.006594259291887283, + 0.020730087533593178, + -0.017863553017377853, + 0.024617748335003853, + 9.851789945969358e-5, + 0.01328694075345993, + 0.008495029993355274, + 0.0018715517362579703, + -0.007147881668061018, + -0.01600584201514721, + 0.0029280479066073895, + 0.010604946874082088, + 0.005053343251347542, + 0.011952094733715057, + -0.002609715098515153, + -0.015193862840533257, + 0.006569653749465942, + -0.014431093819439411, + -0.003983006346970797, + -0.00851348415017128, + -0.037670936435461044, + -0.00020164930901955813, + 0.01438188273459673, + 0.01278252899646759, + -0.004173698835074902, + 0.006932584103196859, + 0.00025451258989050984, + -0.007252455223351717, + -0.004259817767888308, + 0.013926682062447071, + -0.013053189031779766, + -0.009651485830545425, + -0.009528459049761295, + -0.006022182758897543, + 0.005425500683486462, + 0.004767305217683315, + -0.02229253388941288, + -0.012136636301875114, + 0.013508389703929424, + -0.008568846620619297, + 0.005330154672265053, + 0.006655773147940636, + 0.00915322545915842, + -0.01750677451491356, + 0.0064589292742311954, + -0.0042198337614536285, + 0.004392072092741728, + -0.005517771001905203, + -0.02177581936120987, + -0.016670189797878265, + -0.015956630930304527, + 0.007080216892063618, + 0.004610445350408554, + 0.006071393843740225, + 0.041952285915613174, + 0.023153724148869514, + 0.019487513229250908, + -0.016325712203979492, + 0.014861688949167728, + -0.009036350063979626, + -0.0008027526782825589, + 0.017088482156395912, + -0.009614577516913414, + -0.0023667362984269857, + 0.0027219774201512337, + -0.023399777710437775, + -0.0013248494360595942, + -0.02726283296942711, + 0.010672612115740776, + -0.006606562063097954, + -0.014086617156863213, + 0.009922145865857601, + -0.0033248108811676502, + -0.0010941734071820974, + -0.010992482304573059, + -0.007763017900288105, + 0.0002948808833025396, + -0.0004828818782698363, + 0.022415561601519585, + 0.03986082226037979, + -0.01428346149623394, + -0.005084100179374218, + 0.0012041289592161775, + -0.02758270502090454, + 0.01676861196756363, + -0.012407295405864716, + -0.017949672415852547, + 0.02057015150785446, + 0.000666653795633465, + -0.011792159639298916, + 0.0016747080953791738, + 0.024347087368369102, + -0.01678091287612915, + 0.013852865435183048, + -0.01649795100092888, + 0.004567385651171207, + -0.004515099339187145, + 0.01654716208577156, + 0.00912861991673708, + -0.04483112320303917, + -0.00038580570253543556, + 0.01906922087073326, + 0.01075257919728756, + -0.0026035637129098177, + 0.011570710688829422, + 0.0054347277618944645, + -0.003410929813981056, + 0.0011964397272095084, + 0.016596373170614243, + -0.0026819936465471983, + -0.003924568649381399, + 0.007904499769210815, + -0.013496086932718754, + 0.018835468217730522, + 0.004933391697704792, + 0.004438207019120455, + -0.0033494161907583475, + 0.016362620517611504, + -0.017149996012449265, + -0.02903442643582821, + -0.0013909765984863043, + 0.003147959243506193, + -0.019635144621133804, + 0.007566174492239952, + 0.016104264184832573, + 0.017346838489174843, + 0.00670498376712203, + -0.009436188265681267, + 0.007221698295325041, + 0.02132061868906021, + -0.02001653052866459, + 0.00915322545915842, + -0.020619362592697144, + 0.016091961413621902, + 0.015464522875845432, + -0.03885199874639511, + -0.01873704604804516, + 0.011263142339885235, + -0.019425999373197556, + 0.009386977180838585, + 0.0037461791653186083, + 0.029108241200447083, + 0.01066646073013544, + 0.040697406977415085, + 0.00787374284118414, + 0.002814247738569975, + 0.024925315752625465, + 0.014135828241705894, + 0.026377037167549133, + -0.0028157855849713087, + 0.008445818908512592, + -0.003700043773278594, + -0.011226234026253223, + -0.018638625741004944, + -0.00266661518253386, + -0.0210130512714386, + -0.01979508064687252, + -0.0002364429528824985, + 0.0075231147930026054, + -0.008218218572437763, + 0.019475210458040237, + -0.00042021487024612725, + -0.012481112033128738, + 0.025934139266610146, + -0.002989561529830098, + 0.00016752848750911653, + -0.004979527089744806, + -0.019598238170146942, + -0.011459985747933388, + -0.014185039326548576, + 0.0038630550261586905, + -0.011693738400936127, + 0.02753349393606186, + -0.015710577368736267, + -0.01025431975722313, + 0.017482168972492218, + -0.004770380910485983, + 0.02581111155450344, + -0.01428346149623394, + 0.008999441750347614, + 0.007166335824877024, + 0.005025662016123533, + 0.007031005807220936, + -0.03612079471349716, + -0.006951038260012865, + 0.009245496243238449, + -0.012431900948286057, + 0.00963303167372942, + -0.01979508064687252, + 0.027631916105747223, + -0.0023267525248229504, + 0.010887909680604935, + -0.00025470482069067657, + 0.022600101307034492, + -0.0033371136523783207, + -0.005367062985897064, + 0.014025104232132435, + 0.024863801896572113, + 0.004524326417595148, + -0.0045212507247924805, + 0.016608675941824913, + 0.0008719554753042758, + 0.010998633690178394, + -0.0030172427650541067, + 0.0006581956404261291, + 0.027164412662386894, + -0.008113645948469639, + -0.015919722616672516, + 0.022637009620666504, + -0.018601717427372932, + -0.005234808661043644, + 0.001966897863894701, + 0.0013486859388649464, + -0.0012056668056175113, + 0.019684355705976486, + -0.0018208029214292765, + 0.00108110171277076, + -0.010512677021324635, + 0.013311546295881271, + 0.006043712608516216, + 0.01652255654335022, + -0.029698772355914116, + -0.0017946596490219235, + -0.01278252899646759, + -0.0015509119257330894, + 0.010063626803457737, + -0.02026258409023285, + -0.008101343177258968, + 0.007301665842533112, + -0.005643873941153288, + -0.0076030828058719635, + 0.011453835293650627, + -0.000667422718834132, + 0.006668075919151306, + 0.015378403477370739, + 0.03171641752123833, + 0.0023974929936230183, + -0.0066865296103060246, + -0.005117932800203562, + 0.0010019029723480344, + 0.016596373170614243, + 0.031224310398101807, + 0.0220341756939888, + -0.010832547210156918, + -0.010438860394060612, + -0.011656830087304115, + 0.009989811107516289, + 0.007037157192826271, + -0.004776532296091318, + -0.007037157192826271, + 0.0043305582366883755, + -0.0004894176963716745, + -0.0012802521232515574, + -0.008759538643062115, + -0.012844042852520943, + -0.007258606608957052, + -0.010371195152401924, + 0.006643470376729965, + 0.017125390470027924, + 0.011127812787890434, + -0.006766497623175383, + 0.000853501376695931, + 0.007609234191477299, + 0.011859824880957603, + 0.0114968940615654, + 0.010875606909394264, + 0.01751907728612423, + 0.01251802034676075, + 0.014947808347642422, + 0.01807270012795925, + 0.015698274597525597, + -0.0178020391613245, + 2.5662709958851337e-5, + -0.00488110538572073, + 0.0010787949431687593, + -0.0003064147022087127, + -0.023350568488240242, + -0.025195976719260216, + -0.004530477803200483, + -0.0017008513677865267, + 0.004555082879960537, + -0.008599603548645973 + ], + "d6693392-0548-4317-8f58-471434dd9e7c": [ + -0.04917987808585167, + -0.00373750738799572, + -0.0031928797252476215, + 0.0022908400278538465, + -0.01816333271563053, + -0.02284713089466095, + 0.0007977944333106279, + 0.010007533244788647, + -0.03275935351848602, + 0.017632320523262024, + 0.013241260312497616, + 0.012662593275308609, + 0.002815044252201915, + -0.044632237404584885, + -0.014773025177419186, + 0.01691068895161152, + -0.040547531098127365, + 0.020423537120223045, + -0.004608911462128162, + -0.02294244058430195, + 0.09002695232629776, + 0.012928099371492863, + -0.03294997289776802, + 0.01036154106259346, + 0.0055620102211833, + -0.016856227070093155, + -0.0009743729024194181, + 0.0060385591350495815, + -0.039703357964754105, + 0.02821171283721924, + 0.02597874030470848, + 0.010647471062839031, + 0.006511704530566931, + 0.013520381413400173, + 0.004537429194897413, + -0.02166256494820118, + 0.00513992365449667, + 0.03747038170695305, + 0.011144443415105343, + -0.0023214754182845354, + -0.062523253262043, + 0.03559141606092453, + -0.039267655462026596, + -0.00698484992608428, + -0.053890906274318695, + 0.007270779460668564, + 0.02377299778163433, + -0.023650456219911575, + 0.0015955888666212559, + -4.903776425635442e-5, + 0.010729164816439152, + -0.04977896809577942, + 0.007509053684771061, + 0.018966658040881157, + 0.004020032938569784, + -0.0067397672683000565, + -0.009313132613897324, + 0.0492888018488884, + -0.008822968229651451, + -0.007141430396586657, + -0.011307831853628159, + 0.014350938610732555, + -0.012996177189052105, + 0.022139115259051323, + -0.04996958747506142, + -0.02878357283771038, + 0.01031388621777296, + -0.002886526519432664, + -0.08572439104318619, + -0.031561173498630524, + 0.002641444094479084, + 0.03474724665284157, + -0.0058207083493471146, + 0.003075444372370839, + -0.011464412324130535, + -0.008053681813180447, + 0.03855963796377182, + -0.0005761139327660203, + 0.019429592415690422, + -0.006862308364361525, + -0.04280773550271988, + 0.016447754576802254, + 0.006698920391499996, + -0.005391813814640045, + 0.03510125353932381, + 0.011961384676396847, + -0.006164504215121269, + -0.026986300945281982, + 0.0006637649494223297, + -0.017727630212903023, + 0.011532491073012352, + 0.023459836840629578, + 0.022125499323010445, + -0.014718562364578247, + 0.0026244246400892735, + 0.02242504432797432, + 0.008428113535046577, + 0.0053816018626093864, + 0.022139115259051323, + -0.035782039165496826, + 0.0024542284663766623, + 0.051249463111162186, + -0.030199604108929634, + 0.01706046238541603, + -0.012540051713585854, + 0.013819927349686623, + 0.010252615436911583, + -0.028157250955700874, + -0.01270344015210867, + 0.09275008738040924, + -0.018653497099876404, + -0.03831455484032631, + 0.020273765549063683, + -0.0011258474551141262, + -0.030771462246775627, + -0.05568818002939224, + 0.01929343491792679, + -0.009285901673138142, + -9.020395373227075e-5, + -0.04882587119936943, + 0.011028709821403027, + 0.034257080405950546, + 0.007080159615725279, + 0.012206467799842358, + -0.010633855126798153, + -0.0016474986914545298, + 0.01443263329565525, + -0.05871086195111275, + 0.02913757972419262, + -0.005371390376240015, + -0.04016628861427307, + -0.004792723339051008, + -0.01507257018238306, + 0.0161345936357975, + -0.04645673930644989, + -0.00749543821439147, + 0.02446739748120308, + 0.0545172281563282, + -0.06344912201166153, + 0.053536899387836456, + -0.025760889053344727, + -0.0376882329583168, + -0.025856198742985725, + 0.0076520186848938465, + -0.0083668427541852, + -0.0034039230085909367, + -0.060780446976423264, + 0.04898925870656967, + -0.00424809567630291, + 0.015276805497705936, + -0.017210233956575394, + -0.03354906290769577, + 0.036653440445661545, + 0.00036145406193099916, + -0.012730672024190426, + 0.04212694987654686, + -0.018476493656635284, + -0.013574844226241112, + 0.01554911956191063, + 0.01910281553864479, + 0.012689824216067791, + -0.05394537001848221, + 0.011866074986755848, + 0.027966629713773727, + 0.04542194679379463, + 0.021676180884242058, + 0.017700398340821266, + 0.023555146530270576, + -0.0420997180044651, + 0.01606651581823826, + 0.04305281490087509, + -0.038423482328653336, + 0.0067261517979204655, + -0.0023010519798845053, + 0.015780586749315262, + -0.009551407769322395, + 0.03959443047642708, + 0.03510125353932381, + 0.015317653305828571, + -0.06459283828735352, + 0.0029869424179196358, + -0.024903099983930588, + -0.010851706378161907, + -0.009687564335763454, + -0.0056437039747834206, + 0.03379414603114128, + 0.02685014344751835, + 0.0016704751178622246, + -0.0037817582488059998, + -0.014677715487778187, + -0.0038634524680674076, + -0.0008624689653515816, + -0.013935660012066364, + 0.025583883747458458, + -0.03531910479068756, + -0.009707988239824772, + 0.008114952594041824, + -0.020151223987340927, + 0.013867582194507122, + 0.0027605814393609762, + -0.02241142839193344, + -0.03275935351848602, + -0.04264434427022934, + 0.025515805929899216, + -0.038695793598890305, + -0.003921319264918566, + -0.008891046978533268, + -0.007100583054125309, + 0.02318752184510231, + -0.04264434427022934, + 0.03771546483039856, + -0.03771546483039856, + 0.026809297502040863, + 0.0005893041379749775, + -0.02081839181482792, + -0.005088864825665951, + -0.020192069932818413, + 0.026713985949754715, + 0.02889249660074711, + -0.007992411032319069, + -0.021689796820282936, + -0.008795736357569695, + 0.010647471062839031, + -0.0032728719525039196, + -0.02343260496854782, + -0.00891146995127201, + 0.010661086067557335, + 0.009959878399968147, + -0.04618442431092262, + 0.016012053936719894, + 0.058220695704221725, + 0.022901592776179314, + -0.009190591983497143, + -0.019552133977413177, + -0.010817666538059711, + 0.019592979922890663, + -0.013711001724004745, + 0.03796054795384407, + 0.03608158230781555, + -0.038178399205207825, + -0.00602834764868021, + 0.0378788523375988, + 0.04433269053697586, + -0.0012764710700139403, + 0.016080131754279137, + -0.00896593276411295, + 0.03177902474999428, + 0.01851734146475792, + 0.030934851616621017, + -0.04169124737381935, + 0.010735972784459591, + 0.018231410533189774, + 0.01372461672872305, + -0.058656398206949234, + -0.021431097760796547, + 0.0547078475356102, + 0.009551407769322395, + -0.020232917740941048, + -0.01799994334578514, + -0.05097714811563492, + -0.0029392873402684927, + -0.01731915958225727, + 0.043434057384729385, + -0.01587589643895626, + 0.033494602888822556, + -0.025257108733057976, + 0.029246505349874496, + -0.038668565452098846, + -0.008986356668174267, + 0.028484025970101357, + -0.03883195295929909, + -0.0006437668926082551, + 0.003119695233181119, + -0.0368712916970253, + -0.038777489215135574, + 0.037661001086235046, + 0.02793939970433712, + -0.020872855558991432, + 0.002619318664073944, + -0.014487096108496189, + -0.026945453137159348, + -0.014827487990260124, + -0.00985095277428627, + 0.027626238763332367, + -0.03676236793398857, + -0.013942467980086803, + -0.008523423224687576, + -0.0004633589996956289, + -0.04640227556228638, + -0.0018023771699517965, + -0.0012032866943627596, + -0.011416757479310036, + 0.019892524927854538, + 0.025883428752422333, + 0.024835022166371346, + -0.010552161373198032, + -0.009837336838245392, + 0.005459892097860575, + -0.037252530455589294, + 0.009748835116624832, + -0.04915264621376991, + 0.004581680055707693, + 0.009197399951517582, + -0.008571078069508076, + 0.007617979310452938, + -0.006464049685746431, + 0.04795446619391441, + 0.017605088651180267, + -0.05045975372195244, + -0.0024848636239767075, + 0.03262319788336754, + 0.019075583666563034, + -0.038695793598890305, + 0.002508691279217601, + -0.0028490833938121796, + 0.01741446927189827, + -0.019170893356204033, + -0.005704974755644798, + -0.0084144975990057, + -0.015195111744105816, + 0.022996902465820312, + 0.01996060460805893, + -0.05631450191140175, + 0.02283351495862007, + 0.01918450929224491, + -0.04724644869565964, + 0.041745711117982864, + -0.006290449295192957, + -0.011239753104746342, + -0.013384224846959114, + -0.03387584164738655, + 0.012846404686570168, + -0.012968946248292923, + -0.018721576780080795, + -0.005793476942926645, + -0.05002405121922493, + -0.015344884246587753, + -0.0455036424100399, + -0.019565748050808907, + -0.024412935599684715, + -0.02581535093486309, + -0.026795681565999985, + -0.023895539343357086, + -0.004482966382056475, + 0.040220752358436584, + 0.016611143946647644, + -0.02090008743107319, + 0.006283641792833805, + -0.030608074739575386, + -0.016243519261479378, + 0.0007565218838863075, + 0.010436427779495716, + 0.018326720222830772, + 0.02252035401761532, + 0.05315566062927246, + -0.010327502153813839, + 0.029954520985484123, + -0.014650484547019005, + 0.013356992974877357, + -0.012083926238119602, + 0.05190301686525345, + -0.016338830813765526, + -0.02649613656103611, + -0.02472609654068947, + -0.005980692338198423, + 0.017387237399816513, + -0.020927317440509796, + -0.009449290111660957, + 0.010170921683311462, + -0.009530983865261078, + -0.018667113035917282, + 0.009871376678347588, + 0.03747038170695305, + -0.01537211611866951, + -0.03357629477977753, + -0.023745765909552574, + 0.038096703588962555, + -0.013336570002138615, + -0.05438107252120972, + 0.021608103066682816, + -0.0262510534375906, + 0.012247314676642418, + 0.03294997289776802, + -0.03251427039504051, + 0.049043722450733185, + 0.03515571728348732, + 0.002284032292664051, + 0.02260204777121544, + 0.027667084708809853, + 0.02599235437810421, + -0.03322228789329529, + 0.024698864668607712, + -0.030934851616621017, + -0.02427677810192108, + -0.027476465329527855, + 0.027122458443045616, + 0.008230685256421566, + 0.01834033615887165, + 0.009707988239824772, + -0.024222316220402718, + 0.011566529981791973, + 0.003179264022037387, + 0.011089980602264404, + 0.0015930358786135912, + 0.01507257018238306, + -0.04231756925582886, + -0.007713289465755224, + -0.017959097400307655, + 0.01554911956191063, + -0.0004591041069943458, + 0.008223877288401127, + -0.005007170606404543, + 0.009088474325835705, + 0.0007063139928504825, + 0.034965094178915024, + -0.022030189633369446, + 0.009245054796338081, + 0.008775313384830952, + -0.031806256622076035, + -0.04822678118944168, + 0.034774474799633026, + 0.0825655534863472, + -0.007999219000339508, + 0.03213303163647652, + 0.018068023025989532, + 0.0066887084394693375, + 0.034965094178915024, + 0.010599816218018532, + -0.022956056520342827, + -0.016447754576802254, + -0.00509226880967617, + 0.02471248060464859, + -0.0011837141355499625, + -0.026210205629467964, + -0.0023078597150743008, + -0.04498624429106712, + 0.013404648751020432, + 0.016543066129088402, + -0.0011249964591115713, + 0.004241287708282471, + 0.009435674175620079, + 0.01545380987226963, + 0.00925186276435852, + 7.781154999975115e-5, + -0.016706453636288643, + -0.04365190863609314, + -0.04032967984676361, + 0.009435674175620079, + -0.004612315446138382, + 0.007284394931048155, + -0.015263190492987633, + 0.03561864793300629, + -0.036653440445661545, + 0.02317390777170658, + -0.014868334867060184, + -0.0020542675629258156, + 0.0015002790605649352, + -0.052883345633745193, + -0.008053681813180447, + -0.045231327414512634, + -0.018490109592676163, + -0.017264697700738907, + -0.0005565413739532232, + 0.001675581093877554, + 0.012546859681606293, + -0.02268374152481556, + -0.002232973463833332, + 0.026046818122267723, + 0.014827487990260124, + 0.008040065877139568, + 0.0005833472823724151, + -0.0018704556860029697, + -0.009653525426983833, + 0.009932647459208965, + -0.010089226998388767, + -0.01595759019255638, + -0.0038940878584980965, + 0.012131581082940102, + 0.021471945568919182, + 0.0035979466047137976, + -0.019497670233249664, + -0.022356964647769928, + -0.01672006957232952, + 0.01952490210533142, + -0.01612097956240177, + -0.015004492364823818, + 0.015235958620905876, + -0.04915264621376991, + 0.0031452246475964785, + -0.006855500862002373, + 0.03915872797369957, + -0.02750369720160961, + 0.021608103066682816, + 0.015903128311038017, + 0.014228397980332375, + -0.032922741025686264, + 0.0008603415335528553, + -0.0028490833938121796, + -0.0324598103761673, + -0.008332802914083004, + 0.01868072897195816, + -0.040710918605327606, + -0.0018619458423927426, + 0.010974247008562088, + 0.00151219277177006, + -0.01647498644888401, + -0.027476465329527855, + -0.026986300945281982, + -0.006576378829777241, + 0.015644429251551628, + -0.027490081265568733, + -0.009612678550183773, + -0.009946262463927269, + 0.008373650722205639, + -0.010565776377916336, + -0.010041572153568268, + -0.037334226071834564, + 0.0013258280232548714, + 0.013799503445625305, + -0.011695879511535168, + -0.002750369720160961, + 0.028347870334982872, + -0.005208001937717199, + 0.007638402748852968, + 0.013377416878938675, + -0.003087358083575964, + -0.011546106077730656, + -0.012730672024190426, + 0.0026908009313046932, + -0.01563081331551075, + -0.0094220582395792, + 0.012090734206140041, + -0.00899997167289257, + -0.005653915926814079, + 0.006253006402403116, + 0.007284394931048155, + 0.011396333575248718, + 0.016012053936719894, + 0.004663374274969101, + 0.06072598323225975, + -0.00896593276411295, + 0.0028678050730377436, + 0.014677715487778187, + -0.03117993287742138, + 0.010906169191002846, + 0.014582405798137188, + -0.006188331637531519, + 0.02378661371767521, + -0.03224195912480354, + -0.012894059531390667, + -0.007134622428566217, + -0.006998465396463871, + -0.02080477587878704, + -0.009776066988706589, + 0.0053679863922297955, + -0.05078652873635292, + 0.025325186550617218, + 0.012853212654590607, + -0.018313104286789894, + -0.011620992794632912, + -0.023936385288834572, + 0.010096034966409206, + 0.01130102388560772, + 0.016583912074565887, + -0.032269187271595, + -0.0037749505136162043, + 0.0048573981039226055, + 0.0021785106509923935, + 0.02480779029428959, + 0.012771518900990486, + 0.004928880371153355, + 0.008128567598760128, + 0.02351429872214794, + 0.013145950622856617, + -0.012730672024190426, + 0.018639881163835526, + -0.010729164816439152, + 0.013016601093113422, + -0.008945509791374207, + -0.006419798359274864, + 0.030199604108929634, + -0.025325186550617218, + 0.001187969115562737, + -0.008945509791374207, + 0.005504143424332142, + -0.012580898590385914, + -0.02020568586885929, + -0.00793794821947813, + 0.014922797679901123, + 0.02540688030421734, + 0.01655668020248413, + 0.011947769671678543, + 0.020409921184182167, + -0.01460963673889637, + -0.018735190853476524, + 0.031561173498630524, + -0.00789710134267807, + 0.004986747168004513, + -0.005221617873758078, + 0.006467453669756651, + 0.007175469305366278, + 0.02531157061457634, + 0.01354080531746149, + 0.001361569156870246, + -0.023133059963583946, + 0.021785106509923935, + -0.022615663707256317, + -0.010388772934675217, + -0.01091978419572115, + 0.010477274656295776, + -0.03158840537071228, + 0.02181233838200569, + 0.011512067168951035, + -0.010674702003598213, + 0.036735136061906815, + 0.012941714376211166, + 0.008577886037528515, + 0.035809267312288284, + 0.007556708995252848, + -0.010518121533095837, + 0.011151251383125782, + -0.0111240204423666, + 0.06301341950893402, + -0.026387210935354233, + 0.015603582374751568, + -0.006314277183264494, + -0.040384139865636826, + -0.002141067525371909, + -0.030853157863020897, + -0.007182277273386717, + 0.02132217213511467, + 0.020110376179218292, + 0.013220836408436298, + -0.031234396621584892, + 0.048962026834487915, + 0.005636896472424269, + 0.019987834617495537, + 0.018748806789517403, + -0.03804224357008934, + -0.01835395209491253, + -0.039621662348508835, + -0.00840768963098526, + -0.018122484907507896, + 0.01367696188390255, + -0.009503752924501896, + 0.021471945568919182, + -0.01460963673889637, + 0.03131609037518501, + 0.005388409830629826, + 0.015508272685110569, + -0.036816831678152084, + -0.005579029675573111, + 0.011055941693484783, + 0.020600540563464165, + 0.007121006492525339, + -0.023990849032998085, + 0.000873106240760535, + 0.020614156499505043, + 0.018108868971467018, + -0.01706046238541603, + 0.009142937138676643, + -0.010620239190757275, + 0.005517758894711733, + 0.02472609654068947, + -0.03014514036476612, + 0.04092876985669136, + -0.0015615496085956693, + -0.021172400563955307, + 0.0030039618723094463, + 0.009707988239824772, + 0.0006901453598402441, + -0.0010152199538424611, + 0.028810802847146988, + 0.031234396621584892, + 0.002033843891695142, + -0.010667894035577774, + 0.004115342628210783, + -0.011103596538305283, + -0.03117993287742138, + -0.013479534536600113, + 0.0019147066632285714, + 0.0040098209865391254, + -0.026809297502040863, + -0.004305962473154068, + 0.012083926238119602, + -0.00807410478591919, + 0.003340950235724449, + 0.025515805929899216, + -0.0022976479958742857, + 0.014228397980332375, + -0.0008594905375503004, + -0.00462933536618948, + -0.01210435014218092, + -0.02607404999434948, + -0.019647443667054176, + 0.004336597863584757, + -0.011015094816684723, + 0.013683769851922989, + 0.017455317080020905, + -0.0012883847812190652, + -0.020246533676981926, + -0.00014594319509342313, + -0.0026584637816995382, + 0.006287045776844025, + 0.002467844169586897, + 0.01842202991247177, + -0.024930331856012344, + -0.03270488977432251, + -0.0037851622328162193, + -0.0035775229334831238, + -0.0005965374875813723, + 0.018040791153907776, + -0.0026278283912688494, + 0.006348316092044115, + -0.013002985157072544, + 0.01740085333585739, + 0.0009079964365810156, + -0.01439178641885519, + -0.0020746910013258457, + 0.008625540882349014, + -0.026128511875867844, + 0.029600514099001884, + 0.00473826052621007, + -0.04822678118944168, + -0.001928322366438806, + 0.017645936459302902, + 0.009578638710081577, + 0.006426606327295303, + 0.016951536759734154, + -0.0005705825751647353, + -0.00104585534427315, + -0.0046667782589793205, + -0.012921291403472424, + -0.007216316647827625, + -0.003361373906955123, + -0.0009165062219835818, + -0.02411339059472084, + 0.018299490213394165, + 0.038859184831380844, + -0.06105276197195053, + -0.005531374830752611, + -7.972625462571159e-5, + 0.008884239010512829, + 0.00705292820930481, + 0.019429592415690422, + 0.01801355928182602, + 0.021703412756323814, + 0.004088111221790314, + 0.017945481464266777, + 0.010899361222982407, + 0.055660948157310486, + -0.04460500553250313, + 0.02284713089466095, + 0.02292882464826107, + 0.007229932118207216, + -0.006971233990043402, + -0.0028729108162224293, + 0.010395580902695656, + -0.016611143946647644, + 0.033167824149131775, + 0.03488340228796005, + 0.007209508679807186, + 0.031969644129276276, + -0.016080131754279137, + -0.019429592415690422, + -0.005225021857768297, + 0.004169805441051722, + 0.03798777982592583, + 0.035809267312288284, + -0.017373623326420784, + 0.030444687232375145, + 0.026523366570472717, + 0.01162780076265335, + 0.01621628925204277, + -0.0003327334707137197, + 0.013888005167245865, + 0.038695793598890305, + 0.0073456657119095325, + -0.054735079407691956, + -0.00878892932087183, + 0.0017113222274929285, + -0.02709522657096386, + -0.008298764005303383, + -0.01460963673889637, + 0.007406936027109623, + 0.012315393425524235, + 0.037252530455589294, + 0.0019623616244643927, + -0.01545380987226963, + 0.007209508679807186, + 0.041418932378292084, + 0.0366806723177433, + -0.0007701375288888812, + -0.013404648751020432, + 0.013200413435697556, + -0.03305890038609505, + 0.02548857405781746, + -0.05582433566451073, + 0.015235958620905876, + 0.010490890592336655, + -0.0194432083517313, + -0.039975669234991074, + 0.011729918420314789, + 0.017959097400307655, + 0.004043860360980034, + -0.005861555226147175, + -0.005599453113973141, + 0.035809267312288284, + 0.015848664566874504, + 0.0028167462442070246, + -0.007216316647827625, + -0.0059738848358392715, + -0.019729137420654297, + 0.020178453996777534, + -0.009129321202635765, + 0.0007833277340978384, + -0.011382718570530415, + 0.006304065231233835, + -0.004357021301984787, + -0.025788119062781334, + -0.006630841642618179, + 0.010851706378161907, + 0.011940961703658104, + -0.0005518610123544931, + -0.02521626092493534, + -0.030117910355329514, + 0.022969672456383705, + -0.02412700466811657, + 0.019497670233249664, + 0.013520381413400173, + 0.009442482143640518, + -0.006144080776721239, + 0.007583940401673317, + 0.04833570495247841, + -0.004152785986661911, + 0.018884964287281036, + -0.025611115619540215, + -0.012254122644662857, + -0.02038269117474556, + 0.051930248737335205, + -0.0232556015253067, + -0.024058926850557327, + -0.032323651015758514, + -0.0011088278843089938, + 0.00509226880967617, + -0.01757785864174366, + 0.01902112178504467, + -0.0027146285865455866, + 0.03229641914367676, + -0.006297257263213396, + 0.00562328053638339, + -0.014133088290691376, + -0.01499087642878294, + -0.013527189381420612, + -0.025243492797017097, + 0.021540023386478424, + -0.013336570002138615, + 0.023813843727111816, + -0.0032864876557141542, + 0.04117385298013687, + 0.015058955177664757, + 0.04016628861427307, + -0.01499087642878294, + -0.016665605828166008, + 0.009047627449035645, + -0.011491643264889717, + -0.0123222004622221, + -0.01439178641885519, + -0.002141067525371909, + 0.0026074049528688192, + -0.008686811663210392, + -0.005514354910701513, + 0.0034277504310011864, + -0.011845652014017105, + -0.0003214579774066806, + -0.016543066129088402, + -0.011532491073012352, + -0.019579363986849785, + -0.022996902465820312, + -0.009279093705117702, + -0.0011207415955141187, + 0.006443626247346401, + 0.015780586749315262, + -0.003860048484057188, + -0.052529338747262955, + 0.0032439385540783405, + 0.023977233096957207, + 0.0075158616527915, + 0.005054825451225042, + -0.0045646606013178825, + 0.005555202253162861, + 0.009183784015476704, + -0.0060249436646699905, + -0.024930331856012344, + -0.011484836228191853, + -0.020927317440509796, + 0.002253396902233362, + -0.023323679342865944, + -0.019647443667054176, + -0.016338830813765526, + -0.009565023705363274, + -0.008087720721960068, + -0.010518121533095837, + 0.011430373415350914, + -0.01952490210533142, + -0.029600514099001884, + 0.002387851942330599, + 0.02360960841178894, + -0.02599235437810421, + 0.006426606327295303, + 0.008087720721960068, + 0.004064283799380064, + -0.021036243066191673, + -0.030444687232375145, + 0.0035298680886626244, + 0.02020568586885929, + 0.01902112178504467, + 0.00985095277428627, + 0.00018030154751613736, + 0.0032456405460834503, + 0.012117965146899223, + 0.014078625477850437, + -0.010157305747270584, + 0.002467844169586897, + 0.01315956562757492, + -0.013479534536600113, + 0.022288886830210686, + -0.001187118119560182, + 0.02845679596066475, + 0.0034600875806063414, + -0.005847939755767584, + 0.011464412324130535, + 0.02005591429769993, + 0.0014985770685598254, + 0.038532406091690063, + -0.01163460873067379, + -0.0017598281847313046, + -0.01637967675924301, + -0.038178399205207825, + 0.002466142177581787, + -0.01410585641860962, + -0.01629798300564289, + -0.007318434305489063, + -0.0216489490121603, + 0.015603582374751568, + 0.011185290291905403, + -0.030254065990447998, + 0.033249519765377045, + -0.005013978574424982, + 0.01210435014218092, + 0.004241287708282471, + 0.016583912074565887, + 0.03142501786351204, + -0.018068023025989532, + 0.005895594600588083, + 0.024358471855521202, + -0.0010586200514808297, + -0.009932647459208965, + 0.02970943972468376, + -0.015399347059428692, + 0.015290421433746815, + -0.0222480408847332, + 0.002927373629063368, + 0.009211014956235886, + -0.058384086936712265, + -0.0007173767662607133, + -0.025774504989385605, + 0.024304009974002838, + -0.0018159928731620312, + 0.01401054672896862, + -0.006886135786771774, + -0.035890962928533554, + -0.008857007138431072, + -0.00025869812816381454, + 0.014868334867060184, + -0.017632320523262024, + -0.010456850752234459, + -0.009435674175620079, + -0.014214782044291496, + -0.010048380121588707, + 0.03442046791315079, + 0.008775313384830952, + -0.012941714376211166, + -0.026210205629467964, + -0.020954549312591553, + 0.009748835116624832, + 0.0035775229334831238, + 0.017087692394852638, + 0.004779107868671417, + 0.004169805441051722, + 9.722454706206918e-5, + -0.02302413433790207, + -0.016611143946647644, + -0.011498451232910156, + 0.01549465674906969, + -0.006593398749828339, + -0.023718534037470818, + -0.003655813168734312, + 0.00422767223790288, + -0.03098931349813938, + 0.004448927007615566, + -0.025611115619540215, + -0.011375910602509975, + 0.035455260425806046, + 0.006566167343407869, + -0.022302502766251564, + 0.0019657653756439686, + 0.004544237162917852, + 0.01091978419572115, + 0.03363075852394104, + -0.0018755615456029773, + -0.015045339241623878, + -0.011035517789423466, + -0.012036271393299103, + 0.02317390777170658, + 0.0028695070650428534, + -0.013533997349441051, + -0.06530085951089859, + -0.04084707424044609, + 0.01265578530728817, + -0.02540688030421734, + -0.011655031703412533, + -0.009701180271804333, + 0.022533969953656197, + 0.0062291789799928665, + 0.019579363986849785, + 0.004687201697379351, + -0.0022585028782486916, + 0.009095282293856144, + 0.01359526813030243, + -0.028511257842183113, + 0.0035094444174319506, + 0.020518846809864044, + -0.03439323604106903, + -0.0074477833695709705, + -0.03455662354826927, + -0.030444687232375145, + -0.05487123876810074, + -0.014446248300373554, + -0.01808163896203041, + 0.023133059963583946, + -0.011158059351146221, + 0.00616110023111105, + -0.012410703115165234, + 0.01171630248427391, + 0.012444742023944855, + 0.01311871875077486, + -0.01079043559730053, + 0.02115878462791443, + -0.006576378829777241, + 0.027040762826800346, + -0.030444687232375145, + 0.004278731066733599, + -0.010143689811229706, + 0.003594542620703578, + 0.007645210716873407, + -0.021635333076119423, + 0.01490918267518282, + 0.027993861585855484, + 0.005813900381326675, + 0.008931893855333328, + 0.02845679596066475, + 0.0034362601581960917, + -0.03891364485025406, + 0.021294942125678062, + -0.005150135140866041, + -0.010252615436911583, + 0.010075611993670464, + -0.009061242453753948, + -0.004724645055830479, + 0.005044613499194384, + 0.0336579903960228, + 0.002723138313740492, + 0.016965150833129883, + 0.0016066515818238258, + 0.0067908260971307755, + 0.008176222443580627, + 0.0008616179693490267, + 0.016611143946647644, + 0.0006573825958184898, + -0.004401272162795067, + -0.011552914045751095, + -0.024344855919480324, + 0.005864959210157394, + -0.03237811475992203, + -0.015916744247078896, + 0.010974247008562088, + 0.01647498644888401, + -0.008700426667928696, + 0.0051637510769069195, + -0.01595759019255638, + 0.0023027537390589714, + -0.012049887329339981, + 0.009333556517958641, + 0.006239390466362238, + 0.0014849613653495908, + -0.020668620243668556, + 0.04136447235941887, + -0.003405624767765403, + 0.008857007138431072, + 0.018217794597148895, + -0.01612097956240177, + 0.005898998584598303, + 0.01691068895161152, + 0.021090706810355186, + 0.031288858503103256, + -0.013847158290445805, + -0.01715577207505703, + -0.02302413433790207, + 0.018149716779589653, + 0.02674121782183647, + 0.01311871875077486, + 0.04406037926673889, + 0.02352791465818882, + 0.009088474325835705, + 0.006253006402403116, + 0.01919812522828579, + 0.019266203045845032, + -0.0012841299176216125, + 0.021853184327483177, + 0.006263218354433775, + -0.004312770441174507, + -0.018381183966994286, + -0.0005454786587506533, + -0.016434140503406525, + -0.003914511296898127, + 0.0014534750953316689, + 0.016189057379961014, + 0.014037777669727802, + 0.0026550597976893187, + 0.034856170415878296, + -0.0006790826446376741, + -0.0005412237369455397, + 0.026863759383559227, + -0.020178453996777534, + -0.012996177189052105, + -0.0030924640595912933, + -0.011287407949566841, + -0.007481822744011879, + -0.009149745106697083, + -0.02685014344751835, + -0.00700527336448431, + 0.002500181319192052, + 0.0010518121998757124, + 0.006937195081263781, + -0.003523060120642185, + -0.018149716779589653, + 0.005327139515429735, + 0.017605088651180267, + -0.020178453996777534, + 0.006035155151039362, + -0.014214782044291496, + -0.0217442587018013, + -0.015998438000679016, + -0.02192126400768757, + -0.02913757972419262, + -0.0234462209045887, + -0.01270344015210867, + 0.02420870028436184, + 0.01171630248427391, + -0.038777489215135574, + -0.008353226818144321, + 0.010558968409895897, + -0.0003754952340386808, + 0.0011632906971499324, + -0.02419508434832096, + 0.011416757479310036, + 0.0016100555658340454, + 0.0028082362841814756, + 0.00035336974542587996, + -0.0023844479583203793, + 0.0003142246278002858, + 0.041064925491809845, + 0.027490081265568733, + 0.00794475618749857, + 0.008332802914083004, + -0.04762768745422363, + -0.00853703822940588, + 0.007733712904155254, + 0.011396333575248718, + 0.020832007750868797, + -0.017904633656144142, + 0.0021870203781872988, + 0.023418989032506943, + 0.026536982506513596, + 0.007134622428566217, + -0.037497613579034805, + 0.006722747813910246, + -0.005306715611368418, + 0.007059736177325249, + -0.008639155887067318, + -0.011219330132007599, + -0.024766942486166954, + -0.0019759773276746273, + -0.000807155214715749, + 0.029872827231884003, + 0.002181914635002613, + 0.0010943611850962043, + 0.005208001937717199, + 6.696154741803184e-5, + 0.011076364666223526, + 0.009231438860297203, + 0.0029529030434787273, + -0.00371367996558547, + 0.010558968409895897, + -0.045231327414512634, + -0.025883428752422333, + 0.008509807288646698, + -0.006913367193192244, + -0.032732121646404266, + -0.021853184327483177, + 0.012301777489483356, + -0.005068441387265921, + -0.017945481464266777, + 0.005143327638506889, + 0.017795708030462265, + 0.01133506279438734, + -0.011845652014017105, + -0.010484082624316216, + -0.005027594044804573, + 0.024562707170844078, + 0.005956864915788174, + 0.019429592415690422, + -0.00019264075672253966, + 0.005242041312158108, + -0.013411455787718296, + -0.014500711113214493, + 0.010089226998388767, + 0.03311336040496826, + -0.013561229221522808, + -0.007406936027109623, + 0.01126017700880766, + -0.010511313565075397, + 0.021703412756323814, + -0.015099802054464817, + -0.02573365718126297, + -0.014800257049500942, + -0.022983286529779434, + -0.01363611500710249, + 0.012832789681851864, + -0.00420384481549263, + -0.006756786722689867, + -0.007066544145345688, + -0.024521861225366592, + 0.002517201006412506, + 0.013343377970159054, + -0.012887252494692802, + 0.022207193076610565, + -0.00515694310888648, + 0.00464635482057929, + -0.01851734146475792, + 0.003805585904046893, + 0.01549465674906969, + -0.011825228109955788, + -0.012281353585422039, + -0.02002868242561817, + -0.010776819661259651, + 0.029954520985484123, + 0.006882732268422842, + -0.024167852476239204, + -0.022533969953656197, + 0.026346363127231598, + -0.005245445296168327, + -0.015058955177664757, + -0.03820563107728958, + -0.022016573697328568, + 0.015780586749315262, + 0.007236740086227655, + -0.005817304365336895, + -0.013527189381420612, + -0.028511257842183113, + 0.006658073049038649, + -0.002740158000960946, + 0.025366032496094704, + -0.02208465151488781, + 0.01834033615887165, + -0.018735190853476524, + -0.005933037493377924, + -0.00609642593190074, + 0.0076656341552734375, + 0.009605870582163334, + 0.0189394261687994, + 0.017114924266934395, + -0.04574872553348541, + -0.002629530383273959, + 0.024181468412280083, + -0.00415959395468235, + 0.006746575236320496, + -0.035455260425806046, + -0.012356240302324295, + 0.022779051214456558, + 0.010252615436911583, + 0.0033749896101653576, + 0.00882977619767189, + -0.007699673529714346, + 0.01665198989212513, + -0.02081839181482792, + 0.0029529030434787273, + 0.002328283153474331, + 0.00942886620759964, + -0.005534778814762831, + 0.0111240204423666, + -0.016107363626360893, + -0.0060760024935007095, + 0.006593398749828339, + -0.0013760358560830355, + -0.00882977619767189, + 0.0103206941857934, + 0.015576351433992386, + -0.012553667649626732, + -7.329071377171203e-5, + 0.01647498644888401, + -0.016243519261479378, + 0.020246533676981926, + -0.004894840996712446, + -0.014201166108250618, + 0.003412432735785842, + -0.0001422201603418216, + -0.020423537120223045, + -0.022397812455892563, + -0.012914483435451984, + 3.610019803090836e-6, + 0.004094919189810753, + -0.0022414831910282373, + 0.0130302170291543, + 0.009626293554902077, + 0.0020661812741309404, + 0.02719053626060486, + 0.0005059080431237817, + -0.0014585809549316764, + 0.0011403141543269157, + 0.028048325330018997, + 0.008251109160482883, + -0.01273747906088829, + 0.020437153056263924, + 0.017523394897580147, + -0.00038421779754571617, + 0.010899361222982407, + -0.00021827656019013375, + -0.013452303595840931, + -0.008203454315662384, + -0.016842611134052277, + -0.00019795939442701638, + -0.005221617873758078, + -0.0031520326156169176, + 0.006416394840925932, + -0.017986329272389412, + 0.004983343183994293, + 0.016583912074565887, + -0.003968974109739065, + -0.027408387511968613, + 0.0053679863922297955, + 0.024317625910043716, + 0.024753326550126076, + 0.017223849892616272, + -0.019320666790008545, + 0.0006480218144133687, + -0.013234452344477177, + -0.028484025970101357, + -0.021199632436037064, + 0.011416757479310036, + -0.01637967675924301, + 0.008155799470841885, + -0.008332802914083004, + -0.009789681993424892, + 0.013479534536600113, + -0.025447728112339973, + -0.015154264867305756, + 0.010055188089609146, + -0.01260813046246767, + -0.00789710134267807, + -0.0005310119595378637, + -0.007583940401673317, + 0.017986329272389412, + -0.022193577140569687, + 0.005289696156978607, + -0.009728411212563515, + 0.0022755225654691458, + 0.02555665373802185, + -0.01410585641860962, + 0.021281326189637184, + -0.0002965667808894068, + 0.022901592776179314, + 0.0017496163491159678, + 0.004700817633420229, + 0.01903473772108555, + -0.0028082362841814756, + -0.011314639821648598, + -0.008305571973323822, + -0.0024508244823664427, + 0.016243519261479378, + 0.022792667150497437, + 0.004537429194897413, + -0.0068929437547922134, + 0.009993917308747768, + -0.022275270894169807, + -0.006889539770781994, + 0.010381964966654778, + -0.004445523489266634, + -0.008952316828072071, + 0.0009590552654117346, + -0.0010739376302808523, + 0.0020763929933309555, + 0.013663346879184246, + -0.0168289951980114, + -0.020600540563464165, + -0.018558187410235405, + 0.005527970846742392, + -0.01588951237499714, + 0.00900677964091301, + 0.011239753104746342, + 0.0004142148536629975, + -0.026182975620031357, + 0.012485588900744915, + -0.015535503625869751, + 0.002944393316283822, + -0.013220836408436298, + -0.022901592776179314, + 0.0031128874979913235, + -0.06453837454319, + -0.02013760805130005, + -0.010347926057875156, + 0.006886135786771774, + -0.00473485654219985, + 0.00651510851457715, + 0.004118746612221003, + -0.002420189091935754, + 0.008387265726923943, + -0.0011113808723166585, + 0.017809323966503143, + -0.015508272685110569, + 0.0017887614667415619, + -0.0033069110941141844, + -0.025788119062781334, + 0.017714014276862144, + -0.024494629353284836, + 0.018544571474194527, + 0.002020228188484907, + 0.001463686814531684, + 0.011532491073012352, + 0.00980329792946577, + 0.003917915280908346, + -0.004261711612343788, + -0.029001422226428986, + 0.003938338719308376, + -0.002500181319192052, + -0.01558996643871069, + -0.010354733094573021, + 0.013819927349686623, + 0.03183348849415779, + -0.00471443310379982, + 0.004632738884538412, + -0.0018449261551722884, + 0.005122903734445572, + 0.026959069073200226, + 0.009394827298820019, + 0.006576378829777241, + 0.0012254122411832213, + 0.003451577853411436, + -0.0026959069073200226, + 0.0035502915270626545, + -0.012213275767862797, + 0.005058229435235262, + -0.018871348351240158, + -0.010157305747270584, + -0.011355486698448658, + 0.03199687600135803, + -0.03390307351946831, + -0.0009045925107784569, + 0.0027469657361507416, + -0.007645210716873407, + 0.04408761113882065, + -0.013288915157318115, + 0.04299835488200188, + -0.013717809692025185, + -0.0014798555057495832, + -0.016747301444411278, + -0.009435674175620079, + 0.01167545560747385, + -0.024426551535725594, + 0.006477665156126022, + -0.006324488669633865, + -0.0207366980612278, + 0.01665198989212513, + -0.018612651154398918, + -0.011981808580458164, + 0.03556418791413307, + 0.004057476297020912, + 0.0032728719525039196, + 0.027462849393486977, + -0.0007292904774658382, + -0.021077090874314308, + 0.016420524567365646, + -0.01606651581823826, + 0.027721548452973366, + -0.042943891137838364, + 0.010810859501361847, + 0.019130047410726547, + -0.022452276200056076, + -0.025189029052853584, + 0.01311871875077486, + 0.01545380987226963, + 0.01595759019255638, + 0.008822968229651451, + -0.025352418422698975, + -0.00934036448597908, + 0.002374236239120364, + -0.01868072897195816, + 0.005721994210034609, + -0.03804224357008934, + -0.0036081583239138126, + -0.01621628925204277, + -0.001136059290729463, + 0.0016738791018724442, + 0.010620239190757275, + 0.004421696066856384, + -0.0017496163491159678, + -0.0007888591499067843, + -0.0012909377692267299, + -0.004942495841532946, + 0.007236740086227655, + -0.003965570125728846, + 0.003533272072672844, + 0.009544599801301956, + -0.012465165928006172, + 0.003717083716765046, + 0.0071550458669662476, + -0.0037443151231855154, + -0.0012415809324011207, + -0.0038702604360878468, + 0.020600540563464165, + 0.0016534555470570922, + -0.04520409554243088, + -0.014160319231450558, + -0.006290449295192957, + 0.03216026350855827, + -0.008925085887312889, + -0.010810859501361847, + -0.0056096650660037994, + -0.02198934182524681, + 0.012165619991719723, + 0.014868334867060184, + -0.028810802847146988, + 0.012914483435451984, + 0.015167880803346634, + -0.005994308274239302, + -0.005548394285142422, + -0.018027175217866898, + 0.010341118089854717, + -0.0018108870135620236, + -0.0007526924600824714, + -0.010170921683311462, + 0.007202700711786747, + -0.00013668877363670617, + -0.004728049039840698, + -0.004680394195020199, + -0.004391060676425695, + 0.017223849892616272, + -0.007624787278473377, + -0.0010194749338552356, + -0.011328255757689476, + 0.0045272172428667545, + 0.004469350911676884, + 0.009816913865506649, + 0.006266621872782707, + 0.004033648408949375, + 0.00044421193888410926, + -0.005926229525357485, + 0.0012841299176216125, + -0.014677715487778187, + -0.001075639622285962, + 0.00011881818500114605, + 0.009142937138676643, + 0.003553695511072874, + -0.01936151273548603, + 0.009973494336009026, + -0.018231410533189774, + 0.010885745286941528, + 0.005194386467337608, + -0.021717028692364693, + 0.008734466508030891, + -0.02870187722146511, + 0.06301341950893402, + 0.013179989531636238, + 0.0033562679309397936, + 0.02090008743107319, + 0.010987862944602966, + -0.004128958564251661, + -0.00980329792946577, + 0.005374794360250235, + 0.0022397811990231276, + -0.0012526436476036906, + -0.00700527336448431, + 0.012533243745565414, + 0.0045136017724871635, + 0.0014968750765547156, + -0.022615663707256317, + -0.005715186707675457, + 0.013840350322425365, + 0.005895594600588083, + 0.010096034966409206, + 0.02650975063443184, + 0.015739738941192627, + -0.015045339241623878, + -0.017972713336348534, + -0.00925186276435852, + -0.013690577819943428, + 0.013533997349441051, + -0.001127549447119236, + 0.00174621248152107, + 0.034447699785232544, + 0.02377299778163433, + 0.013779079541563988, + -0.009156552143394947, + -0.00255804811604321, + -0.004040456376969814, + 0.0167336855083704, + 0.006906559690833092, + 0.0050752488896250725, + 0.01325487531721592, + -0.0014798555057495832, + 0.011382718570530415, + 0.005633492488414049, + -0.017278311774134636, + 0.035972658544778824, + 0.021512793377041817, + -0.009306325577199459, + 0.01023219246417284, + 0.013139142654836178, + -0.006276833824813366, + 0.0025376244448125362, + 0.011035517789423466, + -0.003109483513981104, + -0.03875025734305382, + 0.00700527336448431, + -0.002489969599992037, + -0.005912614054977894, + -0.005402025766670704, + -0.005051421467214823, + -0.005895594600588083, + -0.009170168079435825, + -0.003211601171642542, + -0.018653497099876404, + 0.017904633656144142, + -0.011539299041032791, + -0.019824447110295296, + -0.023228369653224945, + 0.003546887543052435, + 0.004632738884538412, + -0.0002806108968798071, + -0.007325242273509502, + -0.004465946927666664, + -0.006409586872905493, + -0.006222371011972427, + 0.0061781201511621475, + -0.02497117780148983, + -0.02181233838200569, + 0.012349432334303856, + 0.005276080686599016, + 0.03858686983585358, + 0.01952490210533142, + 0.015671661123633385, + 0.025120951235294342, + 0.00895912479609251, + 0.0012858319096267223, + -0.019824447110295296, + 0.0036694288719445467, + -0.009353980422019958, + -0.009047627449035645, + -0.005892190616577864, + 0.009544599801301956, + -0.0332767516374588, + -0.02352791465818882, + -0.00981010589748621, + -0.0037443151231855154, + -0.0032762757036834955, + 0.001930024242028594, + 0.007679250091314316, + 0.008257917128503323, + -0.013098294846713543, + 0.01725108176469803, + 0.003587734652683139, + 0.015045339241623878, + 0.011035517789423466, + -0.014977260492742062, + 0.00749543821439147, + 0.00896593276411295, + -0.008251109160482883, + 0.016447754576802254, + 0.013881197199225426, + -0.01799994334578514, + 0.006147484760731459, + -0.011409949511289597, + -0.015099802054464817, + 0.015753354877233505, + -0.004101727157831192, + -0.0368712916970253, + -0.006801038049161434, + -0.007304818369448185, + -0.0034311541821807623, + -0.011518875136971474, + -0.013690577819943428, + -0.019130047410726547, + -0.016760915517807007, + -0.00028529128758236766, + -0.018626265227794647, + 0.00041995898936875165, + 0.00972160417586565, + -0.008945509791374207, + 0.0013964594108983874, + 0.007434167433530092, + 0.020695852115750313, + 0.015617198310792446, + 0.003982589580118656, + 0.01158695388585329, + -0.02970943972468376, + 0.006719343829900026, + -0.0011752044083550572, + 0.0027895148377865553, + 0.0006539786700159311, + 0.022479506209492683, + -0.032051339745521545, + 0.025965124368667603, + -0.0006756787188351154, + 0.005286292172968388, + 0.01655668020248413, + 0.015399347059428692, + 0.004517005756497383, + 0.01655668020248413, + -0.01558996643871069, + 0.0290558859705925, + -0.014596021734178066, + 0.03275935351848602, + -0.023037750273942947, + -0.00947652105242014, + -0.007066544145345688, + -0.004860802087932825, + 0.011062749661505222, + -0.014459864236414433, + 0.03450216352939606, + -0.042671576142311096, + 0.0034600875806063414, + -0.004020032938569784, + -0.003788566216826439, + -0.009694372303783894, + 0.016161825507879257, + -0.02810278721153736, + 0.006011327728629112, + -0.002546134404838085, + 0.02591066062450409, + 0.013833542354404926, + -0.013220836408436298, + -0.017114924266934395, + -0.012941714376211166, + -4.9463254981674254e-5, + -0.009959878399968147, + -0.006797634065151215, + -0.004169805441051722, + 0.020341843366622925, + 0.012853212654590607, + -0.013527189381420612, + 0.018027175217866898, + 0.005534778814762831, + -0.004101727157831192, + 0.022615663707256317, + -0.007794983219355345, + -0.00700527336448431, + -0.0033188248053193092, + 0.020532462745904922, + -0.018993889912962914, + -0.0011028710287064314, + 0.0054190452210605145, + -0.004728049039840698, + -0.0008509807521477342, + 0.0083668427541852, + -0.018490109592676163, + -0.009190591983497143, + -0.012900867499411106, + 0.019170893356204033, + 0.0037511230912059546, + 0.014173935167491436, + -0.0033460562117397785, + -0.012771518900990486, + 0.009646717458963394, + 0.005293100140988827, + 0.01219285186380148, + -0.0032779776956886053, + 0.00037613348104059696, + -0.015617198310792446, + -0.010627047158777714, + -0.019048351794481277, + 0.0023997656535357237, + -0.022969672456383705, + -0.01757785864174366, + 0.006552551407366991, + 0.013717809692025185, + -0.0012832789216190577, + -0.0045510451309382915, + -0.01756424270570278, + 0.009170168079435825, + -0.007366089150309563, + 0.006062386557459831, + 0.024780558422207832, + -0.006780614610761404, + -0.012281353585422039, + -0.006157696712762117, + 0.026373594999313354, + -0.005306715611368418, + 0.021335788071155548, + 0.006181524135172367, + 0.015984822064638138, + 0.008080912753939629, + 0.009687564335763454, + -0.0035979466047137976, + 0.0021614909637719393, + 0.00929951760917902, + 0.0018125888891518116, + 0.015617198310792446, + 0.016338830813765526, + -0.02005591429769993, + 0.006201947573572397, + 0.014446248300373554, + -0.019592979922890663, + -0.0030311932787299156, + -0.017768478021025658, + -0.019252587109804153, + 0.005888786632567644, + -0.007699673529714346, + -0.00660701422020793, + -0.010021149180829525, + 0.01499087642878294, + -2.615436096675694e-5, + -0.006314277183264494, + -0.005977288819849491, + -0.015086186118423939, + -0.006719343829900026, + 0.02699991688132286, + -0.005388409830629826, + -0.003587734652683139, + -0.0037545268423855305, + -0.02294244058430195, + -0.02156725525856018, + -0.01714215613901615, + -0.0013964594108983874, + -0.012342624366283417, + 0.002883122768253088, + 0.007774559780955315, + 0.011273792944848537, + -0.030335761606693268, + 0.01252643670886755, + 0.002406573388725519, + -0.000676104158628732, + 0.018027175217866898, + 0.00558243365958333, + 0.0013590161688625813, + 0.011866074986755848, + 0.0004854844883084297, + -0.0043229819275438786, + 0.007168661803007126, + -0.002876314800232649, + -0.005824111867696047, + -0.0041868253611028194, + 0.0057832649908959866, + -0.009483329020440578, + 0.017877403646707535, + -0.00981010589748621, + 0.005909210070967674, + -0.023037750273942947, + 0.017605088651180267, + 0.015603582374751568, + -0.008598309010267258, + 0.01937512867152691, + -0.0024218910839408636, + 0.00011966916645178571, + 0.009558215737342834, + -0.03474724665284157, + -0.0001464750530431047, + 0.01410585641860962, + -0.0052148099057376385, + -0.001907898811623454, + -0.0030124718323349953, + 0.005592645145952702, + 0.009183784015476704, + -0.020913701504468918, + 0.002001506742089987, + -0.00473826052621007, + -0.0015172986313700676, + 0.013377416878938675, + 0.022057419642806053, + 0.0004876119492109865, + -0.0131255267187953, + 0.0033341425005346537, + 0.0021070283837616444, + -0.009129321202635765, + 0.013438687659800053, + -0.017782093957066536, + -0.010484082624316216, + -0.018040791153907776, + 0.01827225834131241, + 0.018789654597640038, + -0.0017955693183466792, + 0.015943974256515503, + -0.007406936027109623, + 0.014977260492742062, + 0.023310063406825066, + 0.009605870582163334, + 0.02599235437810421, + -0.003340950235724449, + 0.012594514526426792, + -0.0010594710474833846, + 0.005395217798650265, + -0.02377299778163433, + 0.0244537815451622, + 0.015140648931264877, + -0.00993945449590683, + -0.017645936459302902, + -0.011198906227946281, + 0.009319940581917763, + -0.012294969521462917, + 0.002103624399751425, + -0.00900677964091301, + 0.0017921654507517815, + 0.00037826094194315374, + 0.008645963855087757, + -0.00028529128758236766, + -0.008257917128503323, + -0.003798777936026454, + 0.03270488977432251, + -0.00844853650778532, + -0.026768449693918228, + -0.007577132433652878, + -0.0009667141130194068, + 0.00745459133759141, + -0.0020661812741309404, + 0.021717028692364693, + 0.0167336855083704, + -0.009238246828317642, + -0.010198152624070644, + 0.031969644129276276, + 0.040629222989082336, + 0.0011403141543269157, + -0.0011224435875192285, + -0.005800284445285797, + 0.0013266789028421044, + -0.011178482323884964, + 0.012471973896026611, + 0.02250673808157444, + -0.02480779029428959, + 0.005725398194044828, + 0.006715939845889807, + -0.014773025177419186, + 0.013071063905954361, + -0.0032558522652834654, + -0.0055620102211833, + -0.016338830813765526, + -0.001107976888306439, + -0.010599816218018532, + 0.013581652194261551, + -0.004122150596231222, + 0.01321402844041586, + -0.019987834617495537, + 0.0008620434673503041, + 0.03640836104750633, + 0.005786668974906206, + -0.00702569680288434, + -0.013302531093358994, + 0.010722356848418713, + 0.01569889299571514, + 0.02970943972468376, + 0.014378170482814312, + 0.019851678982377052, + -0.00705292820930481, + 0.002517201006412506, + 0.0036592171527445316, + 0.009156552143394947, + -0.010477274656295776, + 0.0037443151231855154, + 0.020069530233740807, + -0.02039630524814129, + 0.011464412324130535, + 0.009027203544974327, + 0.013983314856886864, + 0.00034507267992012203, + -0.0021904243621975183, + 0.016175441443920135, + -0.023732149973511696, + -0.012417511083185673, + -0.023677688091993332, + 0.0036013503558933735, + 0.0032030914444476366, + 0.01252643670886755, + -0.01791824959218502, + -0.00981010589748621, + 0.007509053684771061, + -0.02998175285756588, + -0.006477665156126022, + 0.020232917740941048, + -0.004118746612221003, + -0.01401054672896862, + -0.011954577639698982, + 0.0010841494658961892, + -0.012009039521217346, + 0.02522987686097622, + -0.01853095553815365, + 0.0020934126805514097, + -0.008428113535046577, + 0.005756033584475517, + -0.013472726568579674, + 0.04950665310025215, + 0.006004519760608673, + -0.018816886469721794, + 0.0010484082158654928, + 0.008693618699908257, + -0.029110347852110863, + -0.02954605035483837, + 0.0030005581211298704, + -0.026441672816872597, + -0.004581680055707693, + 0.027884935960173607, + 2.1473965716722887e-6, + 0.019579363986849785, + 0.015426578931510448, + -0.009040819481015205, + -0.016202673316001892, + -0.015440193936228752, + -0.00882977619767189, + 0.0015726123237982392, + 0.010681509971618652, + 0.0031656483188271523, + 0.01257409155368805, + -0.006991657428443432, + -0.01040238793939352, + -0.01036154106259346, + -0.016502218320965767, + -0.011307831853628159, + 0.029927290976047516, + -0.02946435660123825, + -0.019007505849003792, + 0.0005910061299800873, + -0.010518121533095837, + -0.00028529128758236766, + -7.140260095184203e-6, + 0.0016406908398494124, + -0.01078362762928009, + 0.0055211628787219524, + -0.01027984730899334, + -0.006664881017059088, + 0.023473452776670456, + 0.023160291835665703, + -0.00025678344536572695, + -0.015467425808310509, + 0.014732178300619125, + -0.01083128247410059, + 0.020586926490068436, + 0.03760654106736183, + 0.007468206807971001, + 0.004574872553348541, + 0.022629279643297195, + -0.014242012985050678, + -0.007134622428566217, + -0.012512820772826672, + -0.009946262463927269, + 0.0047042216174304485, + -0.014350938610732555, + -0.004659970290958881, + -0.013745040632784367, + 0.011015094816684723, + -0.030608074739575386, + 0.004911860916763544, + -0.003689852310344577, + 0.005572221707552671, + -0.0005484570865519345, + 0.01723746582865715, + 0.011328255757689476, + 0.010218576528131962, + 0.011552914045751095, + -0.009306325577199459, + -0.009088474325835705, + 0.02173064462840557, + 0.005003766622394323, + 0.010804051533341408, + -0.005473508033901453, + 0.005476912017911673, + 0.010123266838490963, + -0.015658045187592506, + -0.016012053936719894, + 0.016325214877724648, + 0.00976245105266571, + 0.005633492488414049, + 0.005810496397316456, + 0.00785625446587801, + -0.0029512010514736176, + 0.007604363840073347, + 0.015399347059428692, + -0.018667113035917282, + 0.010858514346182346, + -0.0031128874979913235, + 0.034611087292432785, + 0.0030226835515350103, + -0.00257847155444324, + 0.011042325757443905, + 0.004305962473154068, + -0.010102842934429646, + -0.01499087642878294, + -0.00938801933079958, + 0.008298764005303383, + -0.0031213972251862288, + -0.032732121646404266, + 0.016107363626360893, + 0.013016601093113422, + 0.010000725276768208, + -0.006620630156248808, + 0.012683016248047352, + 0.011219330132007599, + -0.004772299900650978, + -0.014677715487778187, + 0.022356964647769928, + 0.015222343616187572, + 0.013302531093358994, + 0.005504143424332142, + 0.0312616266310215, + -0.03311336040496826, + 0.017428085207939148, + 0.01130102388560772, + 0.014242012985050678, + -0.000751415966078639, + 0.006763594690710306, + -0.01834033615887165, + 0.014759409241378307, + 0.004840378183871508, + -0.009993917308747768, + 0.0017206830671057105, + -0.01843564584851265, + -0.00745459133759141, + -0.016338830813765526, + 0.008564270101487637, + 0.02072308212518692, + -0.016366060823202133, + 0.007332049775868654, + 0.003921319264918566, + 0.0015879300190135837, + 0.022969672456383705, + -0.011103596538305283, + 0.01134187076240778, + 0.0037715465296059847, + -0.010770011693239212, + -0.021866800263524055, + 0.006702324375510216, + -0.00749543821439147, + -0.020260149613022804, + -0.011729918420314789, + -0.005289696156978607, + -0.015644429251551628, + -0.019579363986849785, + -0.0074477833695709705, + -0.0046021039597690105, + -0.0028405736666172743, + -0.012751094996929169, + -0.028647415339946747, + -0.009408443234860897, + 0.009571830742061138, + -0.018626265227794647, + 0.004340001847594976, + -0.006338104605674744, + -0.03305890038609505, + -0.009374403394758701, + -0.003951954655349255, + 0.013840350322425365, + 0.023310063406825066, + -0.0013590161688625813, + 0.025692809373140335, + -0.009510560892522335, + 0.023214753717184067, + -0.013751848600804806, + -0.020586926490068436, + 0.021444713696837425, + -0.0016134594334289432, + 0.0077405208721756935, + -0.01065427903085947, + -0.000593559059780091, + -0.022983286529779434, + -0.016951536759734154, + -0.02198934182524681, + 0.016788147389888763, + -0.005235233344137669, + -0.008707234635949135, + 0.005337351001799107, + 0.004496582318097353, + 0.0047688959166407585, + 0.007270779460668564, + -0.004888033494353294, + -0.005718590691685677, + 0.013132334686815739, + -0.007127814460545778, + -0.018313104286789894, + -0.019225357100367546, + 0.01648860238492489, + 0.01629798300564289, + 0.012417511083185673, + 0.004731453023850918, + 0.006021539680659771, + -0.002273820573464036, + 0.0006646159454248846, + 0.017387237399816513, + 0.008632348850369453, + 0.007481822744011879, + -0.0072435480542480946, + -0.006266621872782707, + 0.005313523579388857, + 0.005759437568485737, + 0.010674702003598213, + -0.0003140118787996471, + 0.01571250893175602, + 0.025856198742985725, + 0.0007731160148978233, + -0.023228369653224945, + 0.01256728358566761, + 0.009558215737342834, + -0.013275299221277237, + -0.000903741514775902, + -0.013792695477604866, + -0.00513651967048645, + 0.007971987128257751, + 0.012928099371492863, + -0.012199659831821918, + -0.006055579055100679, + 0.01817694865167141, + -0.013139142654836178, + -0.018721576780080795, + 0.005858151242136955, + 0.004152785986661911, + -0.006664881017059088, + -0.01452794298529625, + 0.013486342504620552, + -0.025924276560544968, + 0.01158695388585329, + -0.009401635266840458, + -0.018108868971467018, + 0.010667894035577774, + 0.005779861006885767, + 0.05707697942852974, + -0.006821461487561464, + -0.032732121646404266, + 0.0036524091847240925, + -0.004956111777573824, + 0.022738205268979073, + -0.017632320523262024, + -0.01563081331551075, + 0.012717056088149548, + -0.006355124060064554, + -0.006062386557459831, + 0.005361178424209356, + 0.00028592953458428383, + -0.026605062186717987, + -0.017087692394852638, + 0.003788566216826439, + 0.0017011105082929134, + 0.017727630212903023, + 0.007372897118330002, + 0.01443263329565525, + 0.017945481464266777, + -0.019511286169290543, + -0.001878965413197875, + -0.010518121533095837, + 0.005691359285265207, + -0.012397087179124355, + -1.2678283383138478e-5, + 0.010347926057875156, + 0.0168289951980114, + -0.009551407769322395, + 0.0017189810751006007, + -0.0060760024935007095, + 0.005813900381326675, + 0.012281353585422039, + -0.022288886830210686, + -0.03014514036476612, + 0.0018551379907876253, + 0.0031741580460220575, + 0.0053816018626093864, + -0.02497117780148983, + -0.016774531453847885, + 0.011266984976828098, + -0.018217794597148895, + -0.0017402556259185076, + -0.003914511296898127, + 0.0008722552447579801, + -0.0006033453391864896, + -0.007583940401673317, + 0.014963645488023758, + 0.019633827731013298, + -0.004169805441051722, + -0.006167908199131489, + 0.011879690922796726, + -0.00981010589748621, + 0.005847939755767584, + 0.018190564587712288, + 0.004258307628333569, + -0.02990005910396576, + -0.015562735497951508, + 0.01549465674906969, + -0.007018888834863901, + 0.011484836228191853, + -0.0038974916096776724, + 0.0073456657119095325, + -0.016080131754279137, + 0.012580898590385914, + -0.013935660012066364, + -0.03202410787343979, + -0.002733350032940507, + 0.006889539770781994, + -0.02207103557884693, + -0.004659970290958881, + 0.02727223001420498, + -0.0036592171527445316, + 0.014364554546773434, + 0.03572757542133331, + -0.010735972784459591, + -0.0004893139121122658, + -0.00611344538629055, + -0.005286292172968388, + -0.017877403646707535, + 0.033004436641931534, + 0.017387237399816513, + -0.028429564088582993, + -0.007890293374657631, + 0.004445523489266634, + 0.017441701143980026, + -0.009034011512994766, + 0.0017938673263415694, + 0.013615692034363747, + -0.018898580223321915, + 0.020341843366622925, + -0.000868425820954144, + -0.004006417468190193, + 0.002124047838151455, + -0.006348316092044115, + 0.0003661344526335597, + 0.007086967583745718, + 0.00651851249858737, + -0.0049731312319636345, + -0.0016823889454826713, + 0.007713289465755224, + 0.0044250995852053165, + 0.011287407949566841, + 0.015603582374751568, + 0.021417483687400818, + 0.010456850752234459, + 0.014664099551737309, + -0.01750977896153927, + -0.017632320523262024, + -0.003495828714221716, + 0.032323651015758514, + -0.012662593275308609, + 0.010109650902450085, + -0.01223369874060154, + -0.028974192216992378, + -0.0030822521075606346, + 0.010048380121588707, + -0.0005242041079327464, + -0.023405373096466064, + 0.008462152443826199, + 0.032269187271595, + 0.007481822744011879, + -0.010416003875434399, + -0.01499087642878294, + 0.010000725276768208, + -0.0013156161876395345, + 0.007284394931048155, + 0.013465918600559235, + 0.01549465674906969, + 0.013193605467677116, + 0.029246505349874496, + 0.026455288752913475, + -0.01723746582865715, + -0.0062802378088235855, + 0.012996177189052105, + 0.023133059963583946, + 0.005459892097860575, + 0.0055620102211833, + -0.005425853189080954, + -0.008768505416810513, + -0.032269187271595, + 0.006719343829900026, + -0.026196589693427086, + -0.0027282442897558212, + -0.008625540882349014, + -0.024167852476239204, + 0.01962021179497242, + -0.0017325967783108354, + 0.029083117842674255, + 0.020001450553536415, + -0.0016211182810366154, + -0.010061996057629585, + -0.028647415339946747, + 0.015167880803346634, + -0.01621628925204277, + 0.006338104605674744, + 0.01595759019255638, + -0.004724645055830479, + 0.006722747813910246, + -0.0018704556860029697, + 0.017537010833621025, + -0.008271533064544201, + 0.006715939845889807, + 0.03738868981599808, + -0.01537211611866951, + -0.022710973396897316, + 0.004479562398046255, + 0.007468206807971001, + -0.0064334142953157425, + -0.009830528870224953, + 0.006086213979870081, + -0.017850171774625778, + -0.004976535215973854, + -0.014827487990260124, + 0.012941714376211166, + 0.013152757659554482, + -0.009367595426738262, + -0.007318434305489063, + 0.012410703115165234, + 0.039022572338581085, + 0.012281353585422039, + 0.010715548880398273, + -0.0179318655282259, + 0.01396969985216856, + 0.0188441164791584, + 0.020069530233740807, + 0.0007395022548735142, + 0.011015094816684723, + -0.010463658720254898, + -0.01023219246417284, + 0.00039570603985339403, + 0.010715548880398273, + 0.003053318941965699, + 0.027149688452482224, + 0.005085460841655731, + -0.0022312714718282223, + -0.0025665578432381153, + -0.020954549312591553, + -0.018476493656635284, + 0.00794475618749857, + -0.0014934712089598179, + 0.020872855558991432, + 0.016529450193047523, + -0.018313104286789894, + -0.006440222263336182, + 0.02250673808157444, + -0.003169052302837372, + -0.01549465674906969, + -0.0015275103505700827, + -0.016883457079529762, + -0.01074278075248003, + -0.0014185848413035274, + 0.004067687783390284, + -0.006715939845889807, + -0.000695676717441529, + -0.0019232163904234767, + -0.0002831638266798109, + 0.0084144975990057, + -0.004241287708282471, + -0.0026839931961148977, + 0.007597555872052908, + -0.024086158722639084, + -0.004612315446138382, + 0.00473826052621007, + 0.0009352278430014849, + -0.014133088290691376, + 0.0033171228133141994, + 0.026101280003786087, + -0.008605116978287697, + -0.012179235927760601, + 0.016965150833129883, + 0.019388744607567787, + -0.0033256327733397484, + 0.010708741843700409, + -0.004523813724517822, + -0.00280142854899168, + -0.021131552755832672, + 0.04212694987654686, + 0.009333556517958641, + -0.002750369720160961, + 0.0177412461489439, + 0.005681147333234549, + 0.002387851942330599, + 0.0034362601581960917, + -0.00035315699642524123, + -0.012982562184333801, + -0.0013156161876395345, + -0.042862195521593094, + 0.00657978281378746, + -0.021458329632878304, + 0.022438660264015198, + -0.01918450929224491, + -0.003543483791872859, + -0.005340754985809326, + 0.008734466508030891, + -0.014269244857132435, + 0.009919031523168087, + 0.001532616326585412, + -0.02369130402803421, + 0.003354565938934684, + 0.008428113535046577, + -0.018735190853476524, + 0.011049133725464344, + 0.006552551407366991, + 0.00019742752192541957, + 0.027653468772768974, + 0.008993164636194706, + 0.008734466508030891, + -0.015290421433746815, + -0.00891146995127201, + -0.017945481464266777, + 0.016434140503406525, + 0.006419798359274864, + 0.022874362766742706, + -0.028756340965628624, + -0.011117212474346161, + 0.02173064462840557, + -0.0067397672683000565, + -0.014269244857132435, + 0.009054434485733509, + -0.004251499660313129, + 0.015562735497951508, + 0.004833570681512356, + 0.012083926238119602, + -0.011797997169196606, + -0.005967076867818832, + -0.007209508679807186, + -0.013091487810015678, + -0.015739738941192627, + -0.010021149180829525, + 0.007100583054125309, + -0.004748472478240728, + 0.00702569680288434, + 0.028647415339946747, + 0.015766970813274384, + -0.0037919702008366585, + 0.0045510451309382915, + -0.002791216829791665, + -0.013322954066097736, + -0.018217794597148895, + -0.009415250271558762, + 0.005337351001799107, + -0.015031723305583, + 0.012642169371247292, + -0.026278285309672356, + 0.029682207852602005, + -0.02028737962245941, + -0.007018888834863901, + -0.011620992794632912, + -0.011328255757689476, + 0.024508245289325714, + 0.00802644994109869, + 0.005272676702588797, + 0.0021887223701924086, + 0.026455288752913475, + 0.025624731555581093, + -0.0018840712727978826, + -0.028674647212028503, + 0.011409949511289597, + -0.018462877720594406, + 0.005977288819849491, + -0.0021682989317923784, + 0.013819927349686623, + -0.002083200728520751, + -0.015358500182628632, + 0.01409224048256874, + 0.004853994119912386, + -0.007202700711786747, + -0.0034073267597705126, + 0.010150497779250145, + -0.007291202899068594, + -0.002261906862258911, + -0.025243492797017097, + 0.007522669620811939, + 0.009047627449035645, + -0.007400128524750471, + -0.010838090442121029, + 0.010286655277013779, + 0.018313104286789894, + -0.01962021179497242, + -0.005589241161942482, + 0.0041493820026516914, + 0.02369130402803421, + -0.023936385288834572, + 0.004050668329000473, + 0.030281297862529755, + -0.004557852633297443, + -0.005756033584475517, + 0.012492396868765354, + -0.037415921688079834, + 0.007774559780955315, + 0.01733277551829815, + -0.003635389730334282, + -0.014704947359859943, + -0.007216316647827625, + -0.02200295776128769, + -0.009245054796338081, + -0.0008160904981195927, + -0.008237493224442005, + -0.004489774350076914, + 0.019838063046336174, + -0.011546106077730656, + 0.027326693758368492, + 0.0053679863922297955, + -0.0023946596775203943, + 0.001695153652690351, + -0.008673195727169514, + -0.0094697130843997, + -0.038695793598890305, + -0.027408387511968613, + 0.0009582042694091797, + 0.01083128247410059, + -0.004353617317974567, + -0.006409586872905493, + -0.020763929933309555, + -0.004571468569338322, + 0.0006071747629903257, + -0.004173209425061941, + 0.0064844731241464615, + 0.005756033584475517, + 0.011661839671432972, + 0.017972713336348534, + 0.011777573265135288, + 0.0066240341402590275, + 0.0049220724031329155, + -0.01648860238492489, + -0.00041123642586171627, + 0.015821432694792747, + -0.007209508679807186, + 0.02693183720111847, + -0.00566753139719367, + -0.01680176332592964, + -0.006698920391499996, + -0.019157277420163155, + 0.020096760243177414, + 0.006253006402403116, + 0.001229667104780674, + 0.0014058201340958476, + -0.0013981612864881754, + 0.027244998142123222, + 0.020777545869350433, + -0.000965012121014297, + 0.002796322572976351, + 0.010327502153813839, + -0.015821432694792747, + 0.004680394195020199, + 0.007229932118207216, + -0.019334282726049423, + 0.01714215613901615, + -0.009238246828317642, + 0.029409894719719887, + 0.009919031523168087, + 0.02283351495862007, + 0.0029597110114991665, + 0.013261683285236359, + -0.015018107369542122, + 0.0018159928731620312, + 0.0019164085388183594, + -0.004826762713491917, + -0.028157250955700874, + -0.0029205658938735723, + 0.011777573265135288, + -0.030390223488211632, + -0.011668647639453411, + -0.018231410533189774, + 0.003965570125728846, + -0.007059736177325249, + -0.002946095308288932, + -0.0028678050730377436, + 0.008986356668174267, + 0.0006926982896402478, + 0.019851678982377052, + -0.004278731066733599, + 0.010538545437157154, + 0.0033579699229449034, + -0.0040847077034413815, + 0.00887743104249239, + 0.007250355556607246, + -0.002741859992966056, + -0.0027180323377251625, + -0.005238637328147888, + -0.003015875583514571, + 0.0002665697247721255, + 0.0020934126805514097, + -0.015644429251551628, + -0.01801355928182602, + 0.021417483687400818, + 0.009742027148604393, + -0.011954577639698982, + 0.01074958872050047, + -0.015603582374751568, + -0.011266984976828098, + -0.02232973463833332, + -0.02039630524814129, + 0.002316369442269206, + -0.006712535861879587, + 0.008979548700153828, + -0.008482575416564941, + 0.009353980422019958, + 0.01672006957232952, + 0.018367568030953407, + -0.00141177698969841, + -0.0026669735088944435, + 0.002784408861771226, + -0.011743534356355667, + 0.005888786632567644, + 0.003645601449534297, + -0.013697385787963867, + -0.007543093059211969, + 0.010245807468891144, + 0.02521626092493534, + 0.01672006957232952, + -0.006106637883931398, + 0.014282860793173313, + 0.0028184482362121344, + 0.009884991683065891, + 0.017264697700738907, + 0.0028916324954479933, + -0.019742753356695175, + 0.03507402166724205, + -0.020600540563464165, + 0.013779079541563988, + -0.003150330623611808, + 0.020246533676981926, + -0.00022423341579269618, + 0.0030328952707350254, + -0.0074613988399505615, + 0.0020883067045360804, + -0.008155799470841885, + 0.010967439971864223, + -0.00929270964115858, + -0.011239753104746342, + 0.0015649535926058888, + 0.012124773114919662, + -0.007488630246371031, + -6.701473466819152e-5, + 0.01579420268535614, + -0.004605507478117943, + 0.01689707301557064, + -0.003928127232939005, + 0.03847794607281685, + 0.006641053594648838, + 0.016434140503406525, + -0.01018453761935234, + -0.002733350032940507, + -0.014555173926055431, + -0.00883658416569233, + -0.0020253341645002365, + 0.010048380121588707, + 0.0056096650660037994, + -0.02004229836165905, + 0.000993945519439876, + -0.012676209211349487, + 0.011661839671432972, + 0.002103624399751425, + 0.004299154505133629, + 0.01163460873067379, + 0.02360960841178894, + -0.012397087179124355, + -0.010797243565320969, + -0.007468206807971001, + -0.007202700711786747, + -0.008795736357569695, + 0.00934036448597908, + -0.014732178300619125, + 0.0065729753114283085, + -0.0024116793647408485, + -0.011661839671432972, + 0.0008394924807362258, + 0.009864568710327148, + -0.02130855806171894, + 0.024344855919480324, + 0.01121252216398716, + -0.017087692394852638, + 0.007039312738925219, + -0.002631232375279069, + 0.0013471024576574564, + -0.016352444887161255, + 0.00520119396969676, + -0.006753383204340935, + 0.010014341212809086, + -0.0334673710167408, + -0.024521861225366592, + -0.007597555872052908, + -0.007080159615725279, + -0.009687564335763454, + 0.004636142868548632, + 0.005653915926814079, + 0.0194432083517313, + -0.009639909490942955, + 0.01672006957232952, + -0.016529450193047523, + 0.018490109592676163, + -0.0007382257608696818, + 0.005779861006885767, + -0.006099829915910959, + -0.0007292904774658382, + -0.011471220292150974, + -0.008332802914083004, + 0.012900867499411106, + 0.015208727680146694, + -0.013179989531636238, + 0.007086967583745718, + 0.004040456376969814, + -0.018789654597640038, + 0.01580781862139702, + -0.007692865561693907, + 0.007638402748852968, + -0.004493178334087133, + -0.013513573445379734, + 0.006188331637531519, + 0.0032830836717039347, + 0.018707960844039917, + -0.0003574119182303548, + -0.011614184826612473, + -0.0009888395434245467, + 0.007100583054125309, + 0.0040472643449902534, + 0.030635306611657143, + -0.008332802914083004, + 0.0009667141130194068, + -0.007298010867089033, + -0.009707988239824772, + -0.0005225021741352975, + -0.005133115686476231, + -0.03387584164738655, + -0.00887062307447195, + 0.007175469305366278, + -0.006896347738802433, + -0.0010926591930910945, + -0.004860802087932825, + 0.009823721833527088, + -0.016447754576802254, + 0.016502218320965767, + 0.009946262463927269, + 0.0077405208721756935, + 0.0008463003323413432, + -0.01588951237499714, + -0.005245445296168327, + -0.001982785062864423, + 0.001930024242028594, + -0.0010279846610501409, + 0.0029529030434787273, + 0.03398476541042328, + 0.026305515319108963, + 0.0041834213770926, + -0.016434140503406525, + 0.0035673112142831087, + -0.014201166108250618, + 0.0007063139928504825, + 0.009374403394758701, + -0.010490890592336655, + 0.005293100140988827, + 0.005439468659460545, + -0.0013326357584446669, + -0.002743561752140522, + -0.021458329632878304, + -0.0014228398213163018, + -0.00602834764868021, + -0.0022074440494179726, + 0.007971987128257751, + -0.00280313054099679, + -0.007971987128257751, + -0.002164894947782159, + -0.019429592415690422, + 0.010899361222982407, + 0.011471220292150974, + 0.038940876722335815, + 0.03975781798362732, + -0.00925186276435852, + -0.006869116332381964, + 0.002629530383273959, + -0.027626238763332367, + 0.011375910602509975, + -0.0217442587018013, + -0.01801355928182602, + 0.002653357805684209, + 0.007434167433530092, + 0.006838480941951275, + 0.008183030411601067, + 0.006647861562669277, + -0.014745794236660004, + 0.010048380121588707, + -0.001747914357110858, + -0.0015606986125931144, + -0.001341145602054894, + 0.022697357460856438, + 0.0020917106885463, + -0.035890962928533554, + 0.010538545437157154, + 0.0027673894073814154, + 0.021376635879278183, + 0.0034890209790319204, + 0.013064255937933922, + -0.004387656692415476, + -0.011403141543269157, + -0.0025052872952073812, + 0.02641444094479084, + -0.006450433749705553, + -0.015848664566874504, + 0.001412627985700965, + -0.012049887329339981, + 0.016161825507879257, + 0.010960632003843784, + 0.003979186061769724, + 0.006372143514454365, + -0.010123266838490963, + -0.00566753139719367, + -0.02438570372760296, + 0.01622990518808365, + -0.013663346879184246, + -0.020532462745904922, + 0.009530983865261078, + 0.011995424516499043, + -0.005415641237050295, + 0.0083191879093647, + -0.01181161217391491, + 0.00607259850949049, + 0.004843782167881727, + -0.013002985157072544, + 0.0020968164317309856, + -0.026863759383559227, + 0.02572004124522209, + 0.00655935937538743, + -0.0432978980243206, + -0.0007271630456671119, + -0.0030822521075606346, + -0.011620992794632912, + 0.010177729651331902, + 0.013983314856886864, + 0.025161797180771828, + 0.004598699975758791, + 0.0378788523375988, + 0.012206467799842358, + 0.011015094816684723, + 0.013152757659554482, + -0.0006612120196223259, + 0.0260604340583086, + -0.010620239190757275, + -0.006385759450495243, + 0.0015062359161674976, + -0.007842638529837132, + -0.01180480420589447, + 0.002244887175038457, + -0.023841075599193573, + -0.019320666790008545, + 0.015440193936228752, + 0.011614184826612473, + -0.006715939845889807, + 0.023310063406825066, + -0.006630841642618179, + -0.02249312214553356, + 0.016515834257006645, + -0.009755643084645271, + 0.005510951392352581, + -0.005878574680536985, + -0.004656566306948662, + -0.006430010311305523, + 0.00424809567630291, + -0.00840768963098526, + 0.002832063939422369, + 0.03913149610161781, + -0.02149917744100094, + -0.0030550207011401653, + 0.012764710932970047, + -0.003526464104652405, + 0.013928852044045925, + -0.015385731123387814, + 0.004534025210887194, + 0.0026227226480841637, + 0.01549465674906969, + 0.002265310613438487, + -0.030008984729647636, + 0.00789710134267807, + -8.600224100518972e-5, + -0.006896347738802433, + 0.021363019943237305, + -0.027667084708809853, + 0.0314522460103035, + 0.011362294666469097, + -0.0013156161876395345, + -0.009742027148604393, + 0.025447728112339973, + 0.0033664796501398087, + -0.0019538516644388437, + 0.01801355928182602, + 0.01210435014218092, + -0.007556708995252848, + 0.00566753139719367, + 0.02020568586885929, + -0.011525683104991913, + 0.007713289465755224, + -0.015058955177664757, + 0.00258017354644835, + 0.02973666973412037, + -0.01134187076240778, + -0.017482547089457512, + 0.02472609654068947, + -0.0003567736712284386, + -0.004074495751410723, + 0.008632348850369453, + -0.004370636772364378, + -0.005476912017911673, + 0.005490527488291264, + -0.009231438860297203, + 0.004557852633297443, + -0.018217794597148895, + 0.008891046978533268, + 0.01749616302549839, + 0.03591819480061531, + -0.013445495627820492, + 0.0027146285865455866, + -0.005619876552373171, + -0.0036694288719445467, + 0.011478028260171413, + -0.006460645701736212, + -0.0046531627885997295, + -0.0032949973829090595, + -0.008863815106451511, + 0.002033843891695142, + 0.005327139515429735, + 0.005997712258249521, + 0.01655668020248413, + -0.0030550207011401653, + 0.026182975620031357, + 0.0005986649193800986, + -0.010082419961690903, + 0.001005859230645001, + 0.0009088474325835705, + 0.020668620243668556, + 0.03880472108721733, + 0.00887743104249239, + -0.009673948399722576, + -0.008502999320626259, + -0.012260930612683296, + -0.003209899179637432, + 0.0017819536151364446, + 0.008734466508030891, + -0.005555202253162861, + 0.0014270946849137545, + 0.0030448089819401503, + -0.01091978419572115, + -0.01927981898188591, + -0.008809352293610573, + -0.015739738941192627, + -0.003553695511072874, + 0.016461370512843132, + 0.022642895579338074, + 0.005340754985809326, + 0.011906921863555908, + -0.001116486731916666, + 0.0030907620675861835, + 0.004547641146928072, + 0.005167155060917139, + 0.010116458870470524, + -0.00012466867337934673, + -0.0003391158243175596, + 0.020872855558991432, + 0.008339610882103443, + 0.010245807468891144, + -0.010538545437157154, + 0.0025444324128329754, + -0.001014369074255228, + 0.012853212654590607, + 0.01572612300515175, + -0.03700745105743408, + -0.015821432694792747, + -0.0023623225279152393, + -0.008421305567026138, + -0.00025742166326381266, + -0.006154292728751898 + ], + "18dcc255-3559-4715-b452-baedecc77545": [ + -0.037210699170827866, + -0.03497696667909622, + -0.0066705490462481976, + 0.003236527321860194, + -0.008131328038871288, + -0.007634186651557684, + 0.02078459970653057, + 0.02408071607351303, + -0.03293392062187195, + -0.006735245697200298, + 0.001990268472582102, + 0.016235414892435074, + 0.022991091012954712, + -0.023127295076847076, + -0.03001917339861393, + 0.020226167514920235, + -0.01593576744198799, + 0.01694367080926895, + -0.013497731648385525, + -0.019381707534193993, + 0.09572356939315796, + -0.0015578235033899546, + -0.015636121854186058, + -0.01008584350347519, + 0.0023784474469721317, + -0.012217422015964985, + 0.012374055571854115, + 0.011727090924978256, + -0.032715994864702225, + 0.037864476442337036, + 0.018237601965665817, + 0.002826215233653784, + 0.012299144640564919, + 0.008430974557995796, + 0.003960106521844864, + -0.03808239847421646, + -0.011073315516114235, + 0.04175988584756851, + -0.0045389700680971146, + -0.027172528207302094, + -0.032443590462207794, + 0.03625727817416191, + -0.03159913048148155, + -0.013879100792109966, + -0.04660871624946594, + -0.03356045484542847, + -0.015894906595349312, + -0.010310578159987926, + -0.011488735675811768, + 0.011563647538423538, + 0.010814529843628407, + -0.034105267375707626, + 0.010644275695085526, + 0.03010089509189129, + 0.007191526237875223, + -0.013129983097314835, + 0.03037330135703087, + 0.04685388132929802, + -0.019831178709864616, + 0.021846985444426537, + -0.0006801644922234118, + 0.02575601451098919, + -0.021738022565841675, + 0.011693039909005165, + -0.034922488033771515, + -0.05824046581983566, + 0.02206490933895111, + -0.011502356268465519, + -0.05992938578128815, + -0.030890874564647675, + -0.0018404449801892042, + 0.011515975929796696, + -0.014342191629111767, + 0.0013305344618856907, + -0.006142762023955584, + -0.014941485598683357, + 0.048733487725257874, + 0.014791661873459816, + 0.033260807394981384, + -0.011788382194936275, + -0.038572732359170914, + 0.0053868344984948635, + -0.006061039865016937, + -0.026845639571547508, + 0.041324034333229065, + 0.0038579541724175215, + 0.019749457016587257, + -0.020539434626698494, + 0.0060269893147051334, + -0.021765263751149178, + 0.0009151148842647672, + 0.025415508076548576, + -0.0007563530816696584, + 0.019027579575777054, + 0.004961199592798948, + 0.012088029645383358, + 0.014941485598683357, + 0.006316421087831259, + 0.004358500707894564, + -0.044974278658628464, + -0.0173795223236084, + 0.05053136870265007, + -0.005475366488099098, + 0.017856232821941376, + -0.009493359364569187, + -0.0027853543870151043, + 0.008035985752940178, + -0.027199769392609596, + -0.014274089597165585, + 0.0769275352358818, + -0.020716499537229538, + -0.04156919941306114, + 0.01729780063033104, + -0.0043550957925617695, + -0.054317817091941833, + -0.025742394849658012, + 0.024257780984044075, + -0.0052472264505922794, + -0.001681257621385157, + -0.03998924419283867, + 0.011808812618255615, + 0.03173533454537392, + 0.0034050787799060345, + -0.005686481483280659, + -0.009479738771915436, + 0.023481423035264015, + 0.014110646210610867, + -0.024053476750850677, + 0.008104086853563786, + -0.0076069459319114685, + -0.03691105172038078, + 0.00216222507879138, + -0.009391207247972488, + 0.003646839177235961, + -0.02408071607351303, + -0.013238945975899696, + 0.007906592451035976, + 0.022514380514621735, + -0.04982311278581619, + 0.039853040128946304, + -0.040779221802949905, + -0.04102438688278198, + -0.01008584350347519, + -0.008573988452553749, + -0.007661426905542612, + 0.004521944560110569, + -0.04440222680568695, + 0.051866158843040466, + -0.009663613513112068, + 0.013858670368790627, + -0.011747521348297596, + -0.03658416494727135, + 0.03173533454537392, + -0.011863294057548046, + 0.006633093114942312, + 0.023644866421818733, + -0.031081559136509895, + -0.009506979957222939, + 0.017011772841215134, + 0.03865445405244827, + 0.028166810050606728, + -0.044974278658628464, + 0.024761732667684555, + 0.018469147384166718, + 0.03366941958665848, + 0.040316130965948105, + 0.02145199663937092, + 0.020811840891838074, + -0.03663864731788635, + 0.02435312233865261, + 0.02936539798974991, + -0.026246346533298492, + -0.0008827666752040386, + 0.00459685642272234, + 0.005015681032091379, + -0.007484362926334143, + 0.04156919941306114, + 0.041514720767736435, + -0.005509417504072189, + -0.03173533454537392, + -0.007961073890328407, + -0.03432319313287735, + -0.0008261572220362723, + -0.00393627118319273, + -0.019572392106056213, + 0.036665886640548706, + 3.0246676033129916e-5, + -0.0056626456789672375, + 0.018169499933719635, + -0.03402354568243027, + 0.024257780984044075, + -0.0013254268560558558, + -0.024870695546269417, + 0.022514380514621735, + -0.02687288075685501, + -0.005036111455410719, + 0.027281491085886955, + -0.030046414583921432, + -0.006398142781108618, + 0.004933958873152733, + -0.017352281138300896, + -0.03184429556131363, + -0.048733487725257874, + 0.007845301181077957, + -0.016344377771019936, + 0.014110646210610867, + 0.006074660457670689, + -0.01710711605846882, + 0.035303857177495956, + -0.010937112383544445, + 0.01908206008374691, + -0.04753489792346954, + 0.026695817708969116, + -0.012326384894549847, + -0.01597663015127182, + 0.004464058205485344, + -0.015949388965964317, + 0.015568019822239876, + 0.012714563868939877, + -0.014846143312752247, + 0.0034731803461909294, + 0.026791159063577652, + 0.03315184637904167, + 0.007375400513410568, + -0.016902809962630272, + -0.016357997432351112, + -0.011631748639047146, + -0.010964353568851948, + -0.04475635290145874, + 0.014328571036458015, + 0.026859261095523834, + 0.0068510184064507484, + -0.028330255299806595, + -0.009227762930095196, + -0.013906341046094894, + 0.01857811026275158, + -0.021165968850255013, + 0.04034337401390076, + 0.05998386815190315, + -0.019803937524557114, + -0.017706409096717834, + 0.047562140971422195, + 0.03402354568243027, + -0.0076069459319114685, + 0.042958471924066544, + -0.011795192956924438, + 0.030318820849061012, + -0.010678326711058617, + 0.015499917790293694, + -0.05216580629348755, + 0.020539434626698494, + 0.014451153576374054, + 0.009152851998806, + -0.05320094898343086, + -0.04017992690205574, + 0.03974407911300659, + 0.021492857486009598, + -0.028248533606529236, + 0.010494452901184559, + -0.03260703384876251, + 0.02838473580777645, + 0.026614096015691757, + 0.04565529525279999, + -0.03138120472431183, + 0.01962687447667122, + -0.009220953099429607, + 0.015486298128962517, + -0.013538592495024204, + -0.02028064802289009, + -0.005822684615850449, + -0.034459397196769714, + -0.0005482176784425974, + 0.024693630635738373, + -0.01725693792104721, + -0.044538430869579315, + 0.043149158358573914, + 0.02710442617535591, + -0.020226167514920235, + 0.006142762023955584, + -0.023590385913848877, + -0.02536102570593357, + -0.018278462812304497, + 0.0037217510398477316, + 0.0045389700680971146, + -0.029447119683027267, + -0.008839583955705166, + -0.017352281138300896, + -0.02764923870563507, + -0.038954101502895355, + -0.002312048338353634, + -0.010514883324503899, + 0.008717001415789127, + 0.045982182025909424, + 0.029038511216640472, + 0.00853312760591507, + -0.015336474403738976, + 0.01857811026275158, + 0.015568019822239876, + -0.04606390371918678, + 0.0048011611215770245, + -0.029583323746919632, + -0.008982597850263119, + 0.0007716759573668242, + 0.00034221040550619364, + 0.0027700315695255995, + 0.02760837785899639, + 0.03413251042366028, + -0.0002209044760093093, + -0.030318820849061012, + 0.020689258351922035, + 0.034105267375707626, + 0.007749958895146847, + -0.03257979452610016, + -0.020702878013253212, + 0.001525475294329226, + 0.007307298947125673, + -0.01950429007411003, + 0.016889190301299095, + -0.04374844953417778, + -0.005162099376320839, + 0.016194554045796394, + 0.037292420864105225, + -0.04317639768123627, + 0.021860605105757713, + 0.010555744171142578, + -0.04821591451764107, + 0.02202404849231243, + -0.01643971912562847, + 0.013443251140415668, + -0.010685136541724205, + -0.024966036900877953, + 0.021574579179286957, + -0.018741553649306297, + -0.010392299853265285, + -0.008825964294373989, + -0.05230201035737991, + -0.029583323746919632, + -0.032280147075653076, + -0.011624938808381557, + -0.030727429315447807, + -0.04293123260140419, + -0.03206222131848335, + -0.018469147384166718, + -0.01780175231397152, + 0.024530187249183655, + 0.001147511531598866, + -0.031190520152449608, + 0.01977669633924961, + -0.033723898231983185, + -0.003694510320201516, + 0.0008095574448816478, + 0.010269717313349247, + 0.03819136321544647, + 0.01570422202348709, + 0.02892954833805561, + -0.017965195700526237, + 0.037755511701107025, + -0.007096183951944113, + 0.010746428743004799, + -0.007600135635584593, + 0.0576956532895565, + -0.02474811114370823, + -0.047643862664699554, + -0.016235414892435074, + -0.008880444802343845, + 0.00026261669700033963, + -0.018183119595050812, + -0.040425095707178116, + -0.011161847971379757, + -0.009752145037055016, + -0.037401385605335236, + 0.01679384894669056, + 0.038027919828891754, + -0.010671516880393028, + -0.030455023050308228, + -0.014151507057249546, + 0.044456709176301956, + -0.012251473031938076, + -0.056333620101213455, + 0.009520599618554115, + -0.03851824998855591, + 0.021846985444426537, + 0.038300324231386185, + -0.015009586699306965, + 0.03315184637904167, + 0.04001648351550102, + -0.0007950858562253416, + 0.031245002523064613, + 0.05467194318771362, + 0.030781911686062813, + -0.041868846863508224, + 0.04047957435250282, + -0.025728775188326836, + -0.037483107298612595, + -0.010405920445919037, + -0.00876467302441597, + 0.03819136321544647, + 0.025306545197963715, + 0.0160174909979105, + -0.013225325383245945, + 0.003943081013858318, + 0.028030607849359512, + 0.016112832352519035, + -0.011250380426645279, + 0.010351439006626606, + -0.01776088960468769, + -0.03407802805304527, + -0.016140073537826538, + 0.014995967037975788, + -0.009180092252790928, + 0.02606928162276745, + 0.0038545490242540836, + -0.00042201695032417774, + -0.004644527565687895, + 0.013749707490205765, + -0.039853040128946304, + 0.014641838148236275, + 0.021860605105757713, + -0.019572392106056213, + -0.031708091497421265, + 0.048924170434474945, + 0.05971146002411842, + -0.016657644882798195, + 0.024285022169351578, + 0.009200522676110268, + 0.0062108635902404785, + 0.011624938808381557, + 0.014846143312752247, + -0.018918616697192192, + -0.03911754488945007, + 0.0013552213786169887, + 0.0017340363701805472, + 0.008471835404634476, + -0.012013117782771587, + -0.003629813902080059, + -0.039226505905389786, + 0.021383894607424736, + 0.018986718729138374, + 0.010460401885211468, + -0.030318820849061012, + 0.0006737799267284572, + 0.011781572364270687, + 0.0025776445399969816, + 0.0005924836732447147, + 0.0025980749633163214, + -0.032988402992486954, + -0.037946198135614395, + 0.011223139241337776, + 0.017733650282025337, + 0.00932991597801447, + -0.0025282709393650293, + 0.03952615335583687, + -0.020879942923784256, + 0.0023784474469721317, + -0.009466119110584259, + -0.011127796955406666, + 0.008873634971678257, + -0.03889961913228035, + 0.006939550396054983, + -0.03159913048148155, + -0.023181775584816933, + -0.013926771469414234, + 0.011345721781253815, + 0.0026372333522886038, + 0.02718614786863327, + -0.02028064802289009, + -0.010392299853265285, + 0.025837738066911697, + 0.004395956639200449, + 0.034377675503492355, + 0.0011636856943368912, + -0.04366672784090042, + 0.001116014551371336, + 0.0005486432928591967, + -0.010215235874056816, + 0.004954389296472073, + -0.026014801114797592, + 0.014560116454958916, + 0.021996809169650078, + 0.003748991759493947, + -0.023549525067210197, + -0.012224232777953148, + -0.010814529843628407, + 0.029147474095225334, + -0.017828991636633873, + -0.027281491085886955, + 0.01671212539076805, + -0.06521406769752502, + -0.007613755762577057, + 0.009071129374206066, + 0.03650244325399399, + -0.013225325383245945, + 0.028330255299806595, + -0.007395830936729908, + 0.030346062034368515, + -0.02521120198071003, + -0.015200271271169186, + -0.014587356708943844, + -0.016357997432351112, + 0.006054230034351349, + 0.007715908344835043, + -0.010106273926794529, + -0.020730119198560715, + 0.011590887792408466, + 0.013123173266649246, + 0.0033386796712875366, + -0.021547337993979454, + -0.002380149904638529, + -0.00818580947816372, + 0.009772575460374355, + -0.03715622052550316, + -0.0032739832531660795, + -0.021234070882201195, + 0.009105180390179157, + 0.010984783992171288, + -0.003302926430478692, + -0.013702036812901497, + -0.004879477899521589, + -0.004089499358087778, + -0.020798221230506897, + -0.017502104863524437, + 0.016698505729436874, + 0.014192367903888226, + 0.029583323746919632, + 0.04775282368063927, + -7.725272007519379e-5, + -0.012285524047911167, + -0.004845426883548498, + 0.01748848333954811, + -0.019790317863225937, + -0.007293678354471922, + 0.006146166939288378, + -0.021397514268755913, + -0.019109301269054413, + -0.004750084597617388, + 0.014955105260014534, + 0.017202457413077354, + 0.020839082077145576, + 0.021261312067508698, + 0.022718684747815132, + -0.04075198248028755, + -0.004760299809277058, + 0.02808508835732937, + 0.007300488650798798, + 0.0032773881684988737, + 0.015568019822239876, + 0.00433466536924243, + 0.018210360780358315, + -0.016412479802966118, + 0.010194805450737476, + 0.008158568292856216, + -0.025415508076548576, + -0.012190181761980057, + -0.017788130789995193, + 0.017147976905107498, + -0.03415974974632263, + 0.019708596169948578, + 0.01733866147696972, + -0.0157859455794096, + -0.002720657968893647, + -0.007947453297674656, + -0.003987347241491079, + 0.03307012468576431, + 0.024216920137405396, + -0.010732808150351048, + -0.003325059311464429, + 0.016889190301299095, + 0.012190181761980057, + -0.004620691761374474, + 0.020648397505283356, + 0.011141417548060417, + -0.005495796911418438, + 0.046908363699913025, + -0.011604508385062218, + 0.013198085129261017, + 0.03037330135703087, + -0.02749941498041153, + 0.004174626432359219, + 0.003745586611330509, + 0.009357156231999397, + 0.025878598913550377, + -0.013218515552580357, + 0.010283337906002998, + 0.010024551302194595, + 0.009268623776733875, + 0.005952077452093363, + -0.007654617074877024, + -0.008635279722511768, + 0.012694133445620537, + -0.006973600946366787, + 0.018673451617360115, + 0.01834656484425068, + 0.009077940136194229, + -0.008083656430244446, + -0.027158908545970917, + 0.03192601725459099, + -0.021574579179286957, + 0.020021863281726837, + 0.0036604595370590687, + 0.0032058816868811846, + 0.02353590354323387, + 0.02082546055316925, + 0.006888474337756634, + 0.020103584975004196, + -0.02835749462246895, + 0.0343504324555397, + 0.010834960266947746, + 0.016657644882798195, + -0.006905499380081892, + 0.006377712357789278, + -0.027758201584219933, + 0.010766859166324139, + 0.033805619925260544, + -0.017856232821941376, + 0.017434002831578255, + 0.019654113799333572, + -0.0012249770807102323, + 0.04963242635130882, + -0.0059146215207874775, + -0.011039265431463718, + 0.018877755850553513, + -0.008730622008442879, + 0.06924568116664886, + -0.007300488650798798, + 0.005465151276439428, + -0.008696570992469788, + -0.018823275342583656, + 0.003997562453150749, + -0.03214394301176071, + 0.008424164727330208, + 0.00853312760591507, + -0.0018779009114950895, + -0.0009525707573629916, + -0.04592769965529442, + 0.05464470386505127, + 0.012660082429647446, + 0.014069785363972187, + 0.023917272686958313, + -0.0329611599445343, + -0.0017050931928679347, + -0.03623003885149956, + -0.03456835821270943, + -0.014764421619474888, + 0.009084749966859818, + -0.009432068094611168, + 0.005553683266043663, + 0.006786321755498648, + 0.02051219344139099, + 0.0027019300032407045, + 0.02439398318529129, + -0.03334252908825874, + 0.0005524739972315729, + -0.0075388443656265736, + 0.01865983195602894, + 0.008757862262427807, + -0.020525814965367317, + 0.011148227378726006, + 0.021806124597787857, + 0.014532876200973988, + 0.004123550374060869, + -0.0068510184064507484, + -0.017134355381131172, + 0.009888348169624805, + 0.017815371975302696, + -0.02555171027779579, + 0.027799062430858612, + -0.021492857486009598, + -0.026477891951799393, + 0.0011662394972518086, + 0.029038511216640472, + -0.0003881789743900299, + -0.020035482943058014, + 0.020716499537229538, + 0.028984030708670616, + -0.013538592495024204, + -0.01865983195602894, + 0.02854817919433117, + -0.024802593514323235, + -0.025919459760189056, + -0.014301330782473087, + 0.013531782664358616, + -0.005560493562370539, + -0.021846985444426537, + -0.0030441402923315763, + 0.010848580859601498, + -0.020212547853589058, + -0.013988063670694828, + 0.008798723109066486, + 0.013749707490205765, + 0.004297209437936544, + -0.020457712933421135, + -0.0016318840207532048, + -0.01904119923710823, + -0.015908528119325638, + -0.006987221539020538, + 0.009847487322986126, + -0.02074373885989189, + 0.026232726871967316, + -0.007198336534202099, + 0.0035514971241354942, + -0.022160252556204796, + 0.0023358839098364115, + 0.008247100748121738, + 0.04175988584756851, + -0.012782664969563484, + 0.013817809522151947, + -0.030591227114200592, + -0.0466904379427433, + -0.002940285485237837, + -0.009520599618554115, + -0.0008929818868637085, + 0.019749457016587257, + -0.02536102570593357, + 0.026968223974108696, + -0.0012930786469951272, + 0.017161596566438675, + -0.032634273171424866, + 0.017393141984939575, + -0.01981755718588829, + 0.030073655769228935, + -0.013749707490205765, + 0.03102707676589489, + 0.032252904027700424, + -0.05235648900270462, + -0.01973583549261093, + 0.010971163399517536, + 0.023644866421818733, + 0.01912292279303074, + 0.006769296247512102, + 0.008219859562814236, + -0.011475115083158016, + -0.0019187618745490909, + -0.015608880668878555, + -0.0035378767643123865, + -0.012190181761980057, + -0.005029301159083843, + -0.03448663651943207, + 0.02733597159385681, + 0.0343504324555397, + -0.059003204107284546, + -0.00866933073848486, + 0.017774511128664017, + 6.613301229663193e-5, + 0.008390113711357117, + 0.012251473031938076, + -0.0005869504529982805, + 0.02680477872490883, + 0.013266186229884624, + -0.010290147736668587, + 0.008601228706538677, + 0.016548682004213333, + -0.044538430869579315, + 0.058077022433280945, + 0.0007708246703259647, + 0.001722969813272357, + -0.006959980819374323, + 0.0013441548217087984, + -0.006575206760317087, + -0.023985374718904495, + 0.02733597159385681, + 0.029910210520029068, + 0.019477050751447678, + -0.0039907521568238735, + -0.021533718332648277, + -0.01977669633924961, + -0.00969766452908516, + 0.027022704482078552, + 0.0425771027803421, + 0.03138120472431183, + -0.03889961913228035, + 0.027635619044303894, + 0.006616068072617054, + 0.02939263917505741, + 0.014137886464595795, + 0.010862201452255249, + 0.02873886376619339, + 0.01985841803252697, + 0.006425383500754833, + -0.0389268584549427, + -0.017937954515218735, + 3.4981861972482875e-5, + -0.010256096720695496, + 0.001665083458647132, + -0.0044947038404643536, + 0.0009704474359750748, + 0.00853312760591507, + 0.042250216007232666, + -0.014355812221765518, + -0.019286366179585457, + 0.014995967037975788, + 0.046990085393190384, + 0.012115269899368286, + 0.02955608256161213, + 0.017502104863524437, + -0.0060848756693303585, + -0.007055323105305433, + 0.013238945975899696, + -0.025647053495049477, + 0.013034640811383724, + 0.009806626476347446, + -0.015350094996392727, + -0.005723937414586544, + 0.008873634971678257, + -0.0018915212713181973, + -0.014178747311234474, + -0.0173795223236084, + 0.0007278355769813061, + 0.036611407995224, + 0.011086936108767986, + 0.015064068138599396, + -0.020062724128365517, + -0.018046917393803596, + -0.006163192447274923, + -0.0011985877063125372, + -0.00919371284544468, + -0.0031650206074118614, + 0.004777325317263603, + -0.004824996460229158, + 0.009929209016263485, + -0.03454111889004707, + -0.03334252908825874, + -0.014832522720098495, + 0.002102636033669114, + -0.010834960266947746, + -0.015595260076224804, + -0.013804188929498196, + 0.02210577018558979, + -0.0020702879410237074, + 0.022487139329314232, + -0.0019936736207455397, + 0.00446065329015255, + -0.01744762249290943, + 0.0030134946573525667, + 0.039771318435668945, + 0.002700227312743664, + 0.006776106543838978, + -0.0315718911588192, + -0.004845426883548498, + -0.028684383258223534, + 0.04203229025006294, + -0.014573737047612667, + -0.005635405424982309, + -0.05096721649169922, + -0.008975787088274956, + 0.010909872129559517, + -0.017733650282025337, + 0.02284126728773117, + -0.011304860934615135, + 0.014709940180182457, + 0.023317979648709297, + 0.022119391709566116, + -0.003687700256705284, + -0.004443627782166004, + -0.013586264103651047, + 0.0023375866003334522, + 0.019054820761084557, + -0.023222636431455612, + 0.023590385913848877, + -0.00800874549895525, + 0.014900624752044678, + -0.0037353713996708393, + 0.026900121942162514, + -0.006183622870594263, + -0.018441906198859215, + 0.0008895767969079316, + -0.003561712335795164, + -0.0029760387260466814, + -0.02403985522687435, + 0.013136793859302998, + 0.007293678354471922, + -0.011720281094312668, + -0.007627376355230808, + 0.02059391513466835, + -0.014655458740890026, + 0.008853204548358917, + -0.004348285496234894, + -0.005935051944106817, + -0.007920213043689728, + -0.004668362904340029, + -0.006452624220401049, + 0.00837649405002594, + 0.004842021968215704, + 0.015227511525154114, + 0.00034348730696365237, + -0.055325720459222794, + -0.003389755729585886, + 0.013150413520634174, + -0.003691105404868722, + 0.010303768329322338, + -0.010610225610435009, + 0.008642089553177357, + -0.007927022874355316, + -0.02179250307381153, + -0.013974443078041077, + 0.000390945584513247, + -0.010358249768614769, + 0.030237099155783653, + -0.010787289589643478, + -0.014396673068404198, + 0.005206365138292313, + -0.003166723297908902, + -0.012687323614954948, + 0.011570457369089127, + -0.0044947038404643536, + -0.017788130789995193, + -0.04320363700389862, + -0.002987956628203392, + 0.015922147780656815, + -0.021070627495646477, + 0.011876914650201797, + 0.014165127649903297, + 0.006708004977554083, + -0.016644025221467018, + -0.004968009889125824, + -0.007409451063722372, + 0.01885051652789116, + 0.011304860934615135, + 0.014519255608320236, + -0.005475366488099098, + 0.03176257386803627, + 0.03843652829527855, + 0.011713470332324505, + 0.006061039865016937, + -0.00040435310802422464, + 0.013620315119624138, + -0.007211956661194563, + 0.010773668996989727, + 0.004385741427540779, + 0.042604345828294754, + 0.021043386310338974, + -0.003314844099804759, + 0.007211956661194563, + 0.024557428434491158, + 0.015350094996392727, + 0.030346062034368515, + 0.0025827521458268166, + 0.0071847159415483475, + -0.02730873040854931, + -0.029964692890644073, + 0.01849638670682907, + -0.009111990220844746, + -0.03146292641758919, + -0.014696319587528706, + -0.007927022874355316, + 0.023317979648709297, + -0.011434254236519337, + -0.019368087872862816, + 0.008104086853563786, + 0.004038423299789429, + 0.022623343393206596, + 0.02710442617535591, + -0.0021434971131384373, + 0.02420329861342907, + -0.03715622052550316, + -0.020021863281726837, + 0.03048226423561573, + 0.008206239901483059, + -0.036202795803546906, + 0.0059827230870723724, + -0.0044129821471869946, + 0.006537751294672489, + 0.007818060927093029, + -0.0035276615526527166, + 0.011461494490504265, + -0.044266022741794586, + -0.001502490951679647, + -0.0315718911588192, + -0.0001414171711076051, + -0.0030884062871336937, + 0.012660082429647446, + -0.0008355212048627436, + -0.044429466128349304, + -0.004191651940345764, + -0.01566336117684841, + 0.011938205920159817, + -0.012305954471230507, + -0.01780175231397152, + -0.012060788460075855, + -0.02451656572520733, + 0.0029062347020953894, + 0.012088029645383358, + 0.01008584350347519, + -0.006816967390477657, + -0.018196741119027138, + -0.011754332110285759, + 0.020689258351922035, + 0.011046075262129307, + 0.03350597620010376, + -0.001693175407126546, + 0.009888348169624805, + -0.020798221230506897, + -0.04235918074846268, + -0.021302172914147377, + -0.01826484128832817, + 0.012741804122924805, + 0.015459056943655014, + -0.018210360780358315, + 0.012959729880094528, + -0.02726786956191063, + -0.027799062430858612, + -0.004692198242992163, + 0.00016003870405256748, + -0.01628989726305008, + 0.024230539798736572, + -0.004212082363665104, + -0.022241974249482155, + -0.004297209437936544, + 0.015581640414893627, + -0.0014871681341901422, + 0.03110879845917225, + -0.007177906110882759, + -0.014859762974083424, + -0.005655835848301649, + -0.011393393389880657, + 0.009636372327804565, + 0.000843182613607496, + -0.02575601451098919, + -0.059548016637563705, + -0.022487139329314232, + 0.010235666297376156, + -0.014492015354335308, + -0.005199555307626724, + -0.015241132117807865, + 0.004807970952242613, + 0.008717001415789127, + 0.024298641830682755, + 0.01687557063996792, + -0.0067386506125330925, + 0.017079874873161316, + 0.020294269546866417, + -0.01904119923710823, + 0.025143101811408997, + 0.011059695854783058, + -0.020948044955730438, + -0.010290147736668587, + -0.012544309720396996, + -0.024829834699630737, + -0.05742324888706207, + -0.0014931269688531756, + -0.0007337944698520005, + 0.008982597850263119, + -0.009547840803861618, + -0.010106273926794529, + 9.119226160692051e-5, + -0.002935177879408002, + 0.01872793212532997, + 0.009956450201570988, + -0.012612411752343178, + 0.013177654705941677, + 0.004453842993825674, + 0.003376135602593422, + -0.026750298216938972, + -0.013041451573371887, + -0.005737557541579008, + 0.015676982700824738, + 0.0058771660551428795, + -0.01861897110939026, + 0.0009500169544480741, + 0.03266151621937752, + 0.02892954833805561, + 0.015336474403738976, + 0.022814027965068817, + 0.0007904038648121059, + -0.024598289281129837, + 0.004321044776588678, + -0.004273373633623123, + 9.427811892237514e-5, + 0.010875821113586426, + -0.0071847159415483475, + 6.384522566804662e-5, + -0.026791159063577652, + 0.018932238221168518, + -0.0022456494625657797, + 0.013797379098832607, + 0.0008223265176638961, + -0.0030969190411269665, + -0.020144445821642876, + 0.00035646918695420027, + 0.014927865006029606, + -0.010964353568851948, + -0.015581640414893627, + -0.009214143268764019, + -0.013048261404037476, + 0.0052744667045772076, + -0.03731966391205788, + -0.013422819785773754, + 0.024652769789099693, + 0.02939263917505741, + -0.019640494138002396, + 0.003507231129333377, + -0.016698505729436874, + -0.002868778770789504, + -0.005822684615850449, + 0.032252904027700424, + -0.0016804063925519586, + -0.0006031245575286448, + -0.022282835096120834, + 0.02241903729736805, + 0.011822433210909367, + 0.012517069466412067, + 0.009418447501957417, + -0.035194892436265945, + -0.0009295864729210734, + 0.007647806778550148, + 0.012251473031938076, + 0.03407802805304527, + -0.017270559445023537, + 0.0057069119065999985, + -0.012551120482385159, + 0.019531531259417534, + 0.012816715985536575, + 3.165658927173354e-5, + 0.05224752798676491, + 0.023127295076847076, + 0.012789475731551647, + 0.007130234967917204, + 0.01916378363966942, + 0.0006099347374401987, + -0.004402766935527325, + 0.024843454360961914, + 0.015077688731253147, + -0.01609921269118786, + -0.02090718410909176, + -0.016780227422714233, + -0.019681354984641075, + -0.02361762523651123, + -0.006677359342575073, + 0.0035923579707741737, + 0.010508072562515736, + 0.025742394849658012, + 0.016589542850852013, + -0.006585421971976757, + -0.005509417504072189, + 0.002085610758513212, + -0.019844798371195793, + -0.015608880668878555, + -0.020498573780059814, + 0.003922650590538979, + -9.3373644631356e-5, + -0.005907811690121889, + -0.04312191531062126, + 0.004419791977852583, + 0.003963511437177658, + -0.0015544184716418386, + 0.010113083757460117, + -0.00432445015758276, + -0.014396673068404198, + -0.03642072156071663, + 0.017910713329911232, + -0.010950732976198196, + 0.02338607981801033, + -0.010412730276584625, + -0.016412479802966118, + -0.02579687535762787, + -0.010637465864419937, + 0.002933475188910961, + -0.02408071607351303, + -0.007831680588424206, + 0.030264340341091156, + 0.004726249258965254, + -0.0370744951069355, + -0.010821339674293995, + 0.02256886102259159, + 0.009479738771915436, + -0.0003547666419763118, + -0.022269215434789658, + -0.00033242080826312304, + -0.01566336117684841, + 0.008308392018079758, + 0.009493359364569187, + 0.0017102007986977696, + -0.00471262913197279, + 0.037755511701107025, + 0.021206829696893692, + 0.018986718729138374, + 0.0032739832531660795, + -0.03497696667909622, + 0.0012275308836251497, + 0.005114428233355284, + 0.018973099067807198, + 0.051675476133823395, + -0.013552213087677956, + 0.004961199592798948, + 0.011257190257310867, + 0.015854045748710632, + 0.011856484226882458, + -0.001054723164997995, + 0.004389146342873573, + -0.014995967037975788, + 0.024720871821045876, + -0.006421978585422039, + -0.006956575904041529, + -0.01748848333954811, + -0.016357997432351112, + -0.003582142759114504, + 0.013810998760163784, + 0.02745855413377285, + -0.0007418814930133522, + -0.0003468923969194293, + 0.014532876200973988, + 0.006571801844984293, + 0.0020924208220094442, + -0.0010504667880013585, + -0.00018642806389834732, + -0.0007916808244772255, + -0.061019010841846466, + -0.01628989726305008, + -0.006827182602137327, + 0.004024803172796965, + -0.008430974557995796, + -0.011795192956924438, + -0.0009048996726050973, + -0.009765765629708767, + -0.012878007255494595, + 0.007572894915938377, + 0.028956789523363113, + 0.020335130393505096, + -0.016916431486606598, + -0.012591981329023838, + 0.003575332695618272, + 0.00981343723833561, + 0.00261339801363647, + 0.015009586699306965, + -0.0042291078716516495, + -0.005012275651097298, + -0.016821088269352913, + 0.009180092252790928, + 0.01895947754383087, + 0.01767916791141033, + -0.036366239190101624, + -0.03168085217475891, + 0.011958636343479156, + -0.011189088225364685, + 0.032034981995821, + -0.020348750054836273, + -0.020988905802369118, + -0.008492265827953815, + -0.026205485686659813, + -0.0029743362683802843, + 0.027022704482078552, + 0.0037353713996708393, + -0.0009244788670912385, + 0.0007265586755238473, + -0.019940141588449478, + 0.010208426043391228, + 0.014437533915042877, + -0.012728184461593628, + 0.009758955799043179, + -0.017624687403440475, + 0.012033548206090927, + -0.021901465952396393, + -0.0021554147824645042, + 0.005635405424982309, + -0.023522283881902695, + -0.0049748201854527, + -0.013245755806565285, + -0.02993745170533657, + 0.028139570727944374, + 0.008621659129858017, + -0.0017672358080744743, + -0.02152009680867195, + 0.031789813190698624, + 0.0008878742810338736, + -0.016807468608021736, + -0.05058584734797478, + -0.018755173310637474, + -7.948730490170419e-5, + 0.011461494490504265, + -0.009970070794224739, + -0.01744762249290943, + -0.018782414495944977, + -0.006357281934469938, + 0.009806626476347446, + 0.021315792575478554, + -0.03339701145887375, + -0.008485455997288227, + -0.019844798371195793, + -0.011781572364270687, + 0.0004588343435898423, + 0.00014194921823218465, + 0.013804188929498196, + 0.004181436728686094, + -0.0010121596278622746, + -0.03642072156071663, + 0.003321654163300991, + 0.02630082704126835, + -0.0062108635902404785, + 0.009282244369387627, + -0.027254249900579453, + -0.02985573001205921, + 0.0018727933056652546, + 7.193228520918638e-5, + -0.023413321003317833, + 0.015472677536308765, + -0.010848580859601498, + 0.033914584666490555, + -0.0012113567208871245, + 0.0006337702507153153, + 0.008294771425426006, + 0.017052633687853813, + 0.0030288174748420715, + 0.0012564740609377623, + -0.02082546055316925, + -0.007927022874355316, + -0.0007946602418087423, + 0.02882058545947075, + -0.011427444405853748, + 0.02617824450135231, + 0.023821931332349777, + -0.0017238210421055555, + -0.007000841666013002, + 0.015717843547463417, + -0.016861949115991592, + 0.007974694482982159, + -0.011488735675811768, + -0.0066705490462481976, + 0.021193210035562515, + -0.0067386506125330925, + -0.019872039556503296, + -0.021506477147340775, + -0.011120987124741077, + 0.009772575460374355, + -0.002160522388294339, + -0.013817809522151947, + 0.014587356708943844, + 0.003449344774708152, + 0.0023035358171910048, + 0.03710173815488815, + 0.020648397505283356, + 0.015513538382947445, + 0.003949891310185194, + 0.02497965656220913, + 0.028139570727944374, + -0.0004452140419743955, + 0.014383052475750446, + 0.0005626892670989037, + 0.004671767819672823, + 0.016194554045796394, + 0.01834656484425068, + -0.020430471748113632, + -0.019191022962331772, + -0.012837146408855915, + -0.00022281984274741262, + -0.008914495818316936, + 0.0008287110249511898, + 0.009976880624890327, + -0.0062108635902404785, + -0.007586515508592129, + 0.0022047883830964565, + 0.001555269700475037, + -0.036311760544776917, + 0.0007474147714674473, + 0.02101614512503147, + 0.016535062342882156, + 0.015281992964446545, + 0.006095090880990028, + -0.007545654196292162, + -0.011475115083158016, + -0.01946342922747135, + -0.0011338911717757583, + 0.0013271294301375747, + -0.02609652280807495, + 0.0007921064388938248, + -0.01861897110939026, + 0.001086220145225525, + -0.0008836179040372372, + -0.020757360383868217, + -0.013381958939135075, + 0.0061529772356152534, + -0.035657983273267746, + -0.005495796911418438, + -0.012619221583008766, + 0.006888474337756634, + 0.02710442617535591, + -0.010617035441100597, + -0.013817809522151947, + -0.006115521304309368, + 0.000816793239209801, + 0.013170843943953514, + -0.010501262731850147, + 0.024639150127768517, + -0.01872793212532997, + 0.020934423431754112, + 0.004569615703076124, + 0.0013790568336844444, + 0.01977669633924961, + -0.007334539666771889, + 0.009316295385360718, + -0.016357997432351112, + 0.009282244369387627, + 0.007497983518987894, + 0.02974676713347435, + 0.013865480199456215, + -0.019408948719501495, + -0.0021451995708048344, + -0.016453340649604797, + -0.000495013315230608, + 0.0015186651144176722, + -0.013334288261830807, + 4.3973399442620575e-5, + -0.004191651940345764, + -0.006112116388976574, + 0.010276527144014835, + 0.013463681563735008, + -0.012026738375425339, + -0.021629059687256813, + -0.022950230166316032, + 0.017229698598384857, + -0.001920464332215488, + 0.00027964208857156336, + 0.007572894915938377, + 0.008015555329620838, + -0.016262656077742577, + 0.012939299456775188, + -0.0020124015863984823, + 0.009854298084974289, + -0.021302172914147377, + -0.016126452013850212, + -0.00014205562183633447, + -0.07801716029644012, + -0.014927865006029606, + -0.011822433210909367, + -0.007995124906301498, + -0.0014769529225304723, + 0.00917328242212534, + 0.010671516880393028, + -0.015554399229586124, + 0.007954264059662819, + -0.0027104427572339773, + 0.005883975885808468, + -0.02128855139017105, + 0.012217422015964985, + 0.008635279722511768, + -0.009268623776733875, + 0.02613738365471363, + -0.02827577292919159, + 0.015336474403738976, + 0.002732575638219714, + 0.0024022830184549093, + 0.0045491852797567844, + 0.019872039556503296, + -0.024067096412181854, + -0.005264251492917538, + -0.008832774125039577, + -0.0034731803461909294, + -0.007552464492619038, + 0.0017672358080744743, + -0.004474273417145014, + 0.012700943276286125, + 0.03598487004637718, + -0.0030305199325084686, + 0.0078929727897048, + 0.011495545506477356, + -0.007123424671590328, + 0.02101614512503147, + 0.016807468608021736, + 0.004235917702317238, + 0.005049731582403183, + -0.0008563773008063436, + -0.00047202903078868985, + 0.0014778041513636708, + -0.031708091497421265, + 0.0015084499027580023, + -0.02113872766494751, + -0.020416852086782455, + -0.014042544178664684, + 0.002999874297529459, + -0.0315718911588192, + 0.0019323821179568768, + 0.023222636431455612, + 0.009636372327804565, + 0.045546334236860275, + -0.009670423343777657, + 0.032034981995821, + -0.020430471748113632, + 0.0021877631079405546, + -0.03642072156071663, + -0.0009389504557475448, + -0.014137886464595795, + -0.004293804056942463, + 0.00958189181983471, + -0.008928116410970688, + -0.021274931728839874, + 0.015200271271169186, + -0.010603414848446846, + -0.023672107607126236, + 0.047180771827697754, + 0.0008533978252671659, + 0.0006380266277119517, + 0.020948044955730438, + -0.020648397505283356, + -0.017733650282025337, + 0.014955105260014534, + -0.02726786956191063, + 0.027894403785467148, + -0.042876750230789185, + 0.019844798371195793, + 0.007559274788945913, + -0.026505133137106895, + -0.026123763993382454, + 0.012884818017482758, + 0.002085610758513212, + 0.014859762974083424, + -0.006033799611032009, + -0.020893562585115433, + -0.008335632272064686, + 0.006898689549416304, + -0.011509166099131107, + 0.02307281270623207, + -0.02416243776679039, + 0.0042427279986441135, + -0.005618379916995764, + -0.0007495429599657655, + 0.011733900755643845, + -0.001782558741979301, + 0.025061380118131638, + 0.013906341046094894, + 0.016357997432351112, + 0.008022365160286427, + 0.02252800017595291, + 0.017869852483272552, + -0.005165504291653633, + -0.002688309643417597, + 0.004399361554533243, + -0.009295864962041378, + 0.0051110233180224895, + 0.00814494863152504, + 0.00826072134077549, + 0.015227511525154114, + 0.010753238573670387, + 0.014927865006029606, + 0.01652144268155098, + -0.05393644794821739, + -0.00040903507033362985, + -0.012517069466412067, + 0.02202404849231243, + -0.019449809566140175, + -0.018046917393803596, + -0.020525814965367317, + -0.005529847927391529, + 0.012843957170844078, + -0.005233605857938528, + -0.029882971197366714, + 0.012312764301896095, + 0.017747269943356514, + -0.014723559841513634, + 0.005740962456911802, + -0.008519507013261318, + -0.004167816136032343, + 0.002564024180173874, + -0.004644527565687895, + -0.009084749966859818, + -0.0034833955578505993, + -0.019654113799333572, + -0.014314950443804264, + -0.00793383363634348, + -0.00011651753447949886, + 0.013225325383245945, + -0.0052370112389326096, + -0.010365059599280357, + -0.012809906154870987, + 0.015799565240740776, + 0.0014548199251294136, + 0.01675298810005188, + 0.0006439855205826461, + 0.006561586633324623, + 0.0059146215207874775, + -0.0035923579707741737, + -0.00866933073848486, + -0.004807970952242613, + 0.011761141940951347, + 0.0035583071876317263, + 0.021356653422117233, + 0.008812343701720238, + -0.011556836776435375, + 0.008601228706538677, + -0.020621156319975853, + -0.0015722950920462608, + -0.006387927569448948, + -0.01799243502318859, + -0.001920464332215488, + -0.02676391787827015, + 0.03672036901116371, + 0.0009083047625608742, + 0.0005699250614270568, + 0.020879942923784256, + 0.018237601965665817, + -0.008349252864718437, + -0.018060537055134773, + -0.0007520967628806829, + 0.000864038709551096, + -0.0012590278638526797, + -0.0014812091831117868, + 0.010446781292557716, + 0.010739617981016636, + -0.005104213021695614, + -0.02668219618499279, + 0.003912435378879309, + 0.005781823769211769, + 0.018373804166913033, + -0.008390113711357117, + 0.014927865006029606, + 0.006135951727628708, + -0.014056164771318436, + -0.014028924517333508, + -0.0031514002475887537, + -0.008070036768913269, + 0.019640494138002396, + 0.0028943167999386787, + -0.010167565196752548, + 0.03432319313287735, + 0.02032150886952877, + 0.011189088225364685, + -0.021547337993979454, + -0.01803329586982727, + -0.007749958895146847, + 0.028520939871668816, + -0.002228623954579234, + 0.010194805450737476, + 0.011556836776435375, + -0.004889693111181259, + -0.0002702781348489225, + 0.009384396485984325, + -0.018755173310637474, + 0.029501602053642273, + 0.006299395579844713, + -0.012305954471230507, + -0.011127796955406666, + 0.005315328016877174, + -0.005202960222959518, + 0.0023324789945036173, + -0.000715492176823318, + -0.017052633687853813, + -0.01853724755346775, + -0.0054106698371469975, + -0.008151758462190628, + -0.0005009722081013024, + 0.005563898477703333, + -0.0038000678177922964, + -0.0027291704900562763, + -0.014600977301597595, + -0.0009346940787509084, + -0.012367245741188526, + 0.0035276615526527166, + -0.008778292685747147, + -0.013715657405555248, + -0.002085610758513212, + 0.003313141642138362, + 0.0038375237490981817, + -0.0034135913010686636, + -0.0004284014576114714, + 0.0018710907315835357, + 0.007075753528624773, + -0.012210612185299397, + -0.0006192986620590091, + -0.03012813627719879, + -0.018673451617360115, + 0.007375400513410568, + -0.00024708101409487426, + 0.03266151621937752, + 0.015145789831876755, + 0.007681857328861952, + 0.03350597620010376, + 0.005975913256406784, + 0.009207332506775856, + -0.01582680642604828, + -0.010637465864419937, + -0.004790945909917355, + 0.0025129481218755245, + 0.006500295363366604, + 0.015241132117807865, + -0.030700189992785454, + -0.006816967390477657, + -0.013429630547761917, + -0.003040735376998782, + 8.898427950043697e-6, + 0.007477552630007267, + 0.002977741416543722, + 0.011379772797226906, + -0.007320919074118137, + 0.019068440422415733, + 0.013443251140415668, + 0.011046075262129307, + 0.015336474403738976, + -0.006564991548657417, + 0.005083782598376274, + 0.018332943320274353, + 0.013988063670694828, + 0.026736678555607796, + 0.013286616653203964, + -0.0029028295539319515, + 0.004307424649596214, + -0.006946360692381859, + -0.01780175231397152, + -0.007211956661194563, + -0.012578360736370087, + -0.017325039952993393, + -0.006578612141311169, + -0.0049850353971123695, + -0.013810998760163784, + -0.0046070716343820095, + -0.005076972302049398, + -0.01838742569088936, + -0.017188837751746178, + -0.006268749944865704, + -0.04154196009039879, + -0.0037319662515074015, + 0.02028064802289009, + -0.010957542806863785, + -0.0007125127012841403, + 0.00010624909918988124, + 0.012258282862603664, + 0.04309467598795891, + -0.002490815008059144, + 0.020335130393505096, + -0.017093494534492493, + 0.008219859562814236, + -0.020294269546866417, + 0.023413321003317833, + -0.01822398044168949, + 0.018019676208496094, + -0.02741769328713417, + 0.02536102570593357, + 0.0011917775264009833, + -0.005380024202167988, + 0.02955608256161213, + 0.007525223772972822, + 0.012353625148534775, + 0.0099496403709054, + -0.012973349541425705, + 0.028684383258223534, + 0.004099714569747448, + 0.03285219892859459, + -0.026614096015691757, + -0.00561497500166297, + -0.0036604595370590687, + -0.010548933409154415, + 0.008914495818316936, + -0.013804188929498196, + 0.02132941223680973, + -0.03925374895334244, + -0.007457122206687927, + -0.00864890031516552, + 0.0075388443656265736, + -0.022092150524258614, + 0.014587356708943844, + -0.002870481228455901, + 0.020934423431754112, + 0.0018557679140940309, + 0.026505133137106895, + 0.013776948675513268, + -0.016548682004213333, + -0.021356653422117233, + -0.01958601176738739, + -0.007300488650798798, + -0.009690853767096996, + 0.005509417504072189, + -0.003626408753916621, + 0.01586766727268696, + 0.005740962456911802, + -0.007627376355230808, + 0.019708596169948578, + 0.005240416154265404, + 0.011992687359452248, + 0.01586766727268696, + -0.0048965029418468475, + -0.007327729370445013, + 0.001722969813272357, + 0.028439218178391457, + -0.017665548250079155, + 0.0037421814631670713, + 0.007879352197051048, + 0.002606587717309594, + -0.0030203047208487988, + 0.010371869429945946, + -0.03320632874965668, + -0.009479738771915436, + -0.020879942923784256, + 0.007518413942307234, + -0.0007631632615812123, + 0.013606694526970387, + 0.0018319323426112533, + -0.006272154860198498, + 0.011822433210909367, + -0.0002287787210661918, + 0.007307298947125673, + -0.006810157559812069, + 0.003500420833006501, + -0.007055323105305433, + -0.0064628394320607185, + -0.013075502589344978, + -0.013667985796928406, + -0.017461244016885757, + -0.010535313747823238, + 0.009227762930095196, + 0.0030986214987933636, + -0.005843115039169788, + -0.012605600990355015, + -0.012564740143716335, + 0.006187027785927057, + -0.016044730320572853, + 0.003994157537817955, + 0.016112832352519035, + 0.0055128224194049835, + -0.0025146505795419216, + -0.007906592451035976, + 0.028330255299806595, + 0.0027291704900562763, + 0.021901465952396393, + 0.003248444991186261, + 0.022446278482675552, + 0.013027830980718136, + 0.008539937436580658, + -0.0071029942482709885, + 0.00019281258573755622, + -0.00025495525915175676, + 0.007327729370445013, + 0.013960822485387325, + 0.024652769789099693, + -0.004297209437936544, + -0.005506012123078108, + 0.00841735489666462, + -0.010024551302194595, + -0.0032126917503774166, + -0.016970911994576454, + -0.004508323967456818, + 0.004321044776588678, + 0.012442157603800297, + -0.009418447501957417, + -0.010113083757460117, + 0.014723559841513634, + -2.3183796656667255e-5, + -0.020798221230506897, + 0.006193838082253933, + -0.029229195788502693, + -0.013381958939135075, + 0.02920195460319519, + -0.0011389987776055932, + -0.0018847110914066434, + -0.004692198242992163, + -0.01620817370712757, + -0.021846985444426537, + -0.015336474403738976, + -0.008723811246454716, + -0.006510510575026274, + -0.013770137913525105, + 0.009370776824653149, + -0.0029079371597617865, + -0.014805282466113567, + 0.019218264147639275, + 0.004052043426781893, + -0.012857576832175255, + 0.02028064802289009, + 0.012360435910522938, + -0.007300488650798798, + 0.002548701362684369, + -0.0039090304635465145, + -0.013776948675513268, + -0.0014743991196155548, + 0.0004418089520186186, + -0.01072599831968546, + -0.0016395454294979572, + 0.021261312067508698, + -0.012169751338660717, + 0.02571515366435051, + -0.024734491482377052, + 0.002085610758513212, + -0.015254752710461617, + 0.009316295385360718, + 0.011400203220546246, + -0.009261813946068287, + 0.021206829696893692, + -0.001847255160100758, + 0.005448125768452883, + 0.012196991592645645, + -0.026437031105160713, + 0.006449218839406967, + 0.02164267934858799, + 0.0020702879410237074, + -0.00814494863152504, + 0.00866933073848486, + 0.011366153135895729, + 0.011624938808381557, + -0.01849638670682907, + -0.008226670324802399, + -0.015922147780656815, + 0.004358500707894564, + 0.005209770519286394, + 0.0384637676179409, + 0.010317387990653515, + -0.008601228706538677, + 0.013266186229884624, + -0.008240289986133575, + -0.0010964353568851948, + 0.012714563868939877, + -0.012231042608618736, + -4.711245492217131e-5, + -0.005768203176558018, + 0.02202404849231243, + 0.026545993983745575, + 0.003073083469644189, + 0.009772575460374355, + -0.0010555743938311934, + -0.0007772092358209193, + 0.008866825141012669, + 0.021942326799035072, + 0.01706625521183014, + 0.005945267621427774, + 0.015581640414893627, + 0.012265093624591827, + 0.0004439371405169368, + -0.017556585371494293, + 0.029256436973810196, + -0.005427695345133543, + 0.0007912551518529654, + -0.013524972833693027, + -0.015717843547463417, + -0.006020179018378258, + -0.0007116614724509418, + -0.0015093011315912008, + -0.00037370738573372364, + 0.001184116117656231, + 0.001444604597054422, + 0.011999497190117836, + -0.0015476082917302847, + 0.00928905513137579, + -0.010630656033754349, + 0.03603935241699219, + -0.002625315682962537, + -0.02621910534799099, + -0.011958636343479156, + -0.0050531369633972645, + 0.010508072562515736, + -0.005162099376320839, + 0.00890087615698576, + 0.006980411242693663, + -0.0077567691914737225, + -0.007954264059662819, + 0.01900033839046955, + 0.021656300872564316, + -0.009895158931612968, + -0.010535313747823238, + -0.015132170170545578, + -0.001499085919931531, + -0.012217422015964985, + -0.003388053271919489, + 0.007246007677167654, + -0.018237601965665817, + 0.015854045748710632, + -0.002153712324798107, + -0.010596605017781258, + 0.0020243192557245493, + -0.007463932503014803, + 0.012544309720396996, + -0.015554399229586124, + 0.0032007740810513496, + -0.021261312067508698, + 0.0032263121102005243, + -0.008178998716175556, + 0.008914495818316936, + -0.015132170170545578, + 0.003323356853798032, + 0.019708596169948578, + -0.007654617074877024, + 0.007416261360049248, + 0.005812469404190779, + 0.022350937128067017, + 0.005737557541579008, + 0.01675298810005188, + 0.016970911994576454, + 0.00421889265999198, + -0.017474863678216934, + 0.012408106587827206, + -0.0008802128140814602, + 0.010324198752641678, + -0.018796034157276154, + -0.0008542491123080254, + 0.021656300872564316, + -0.015758704394102097, + 0.016616784036159515, + 0.008757862262427807, + 0.005322137847542763, + 0.0017272261902689934, + 0.00023537606466561556, + 0.02008996345102787, + -0.009077940136194229, + -0.004382336512207985, + -0.01628989726305008, + 0.001964730443432927, + 0.002102636033669114, + 0.0036604595370590687, + -0.01811501942574978, + 0.006037204526364803, + 0.009159661829471588, + -0.016453340649604797, + -0.01981755718588829, + 0.011120987124741077, + -0.010126704350113869, + -0.014478394761681557, + -0.009111990220844746, + 0.014955105260014534, + -0.004521944560110569, + 0.03386010229587555, + -0.030781911686062813, + 0.008642089553177357, + -0.024285022169351578, + 0.012156130746006966, + 0.0014267279766499996, + 0.03917202353477478, + 0.005073567386716604, + -0.019722215831279755, + 0.012605600990355015, + 0.001850660308264196, + -0.02105700597167015, + -0.027444934472441673, + -0.003110539400950074, + -0.030182616785168648, + -0.008928116410970688, + 0.006343661807477474, + -0.0007401789771392941, + 0.027567517012357712, + 0.016303516924381256, + -0.01985841803252697, + -0.013919961638748646, + -0.010487642139196396, + -0.006044014822691679, + -0.010474022477865219, + 0.021302172914147377, + 0.014873383566737175, + 0.0057647982612252235, + -0.014778041280806065, + -0.0011756033636629581, + -0.018591729924082756, + -0.00864890031516552, + -0.01985841803252697, + 0.015077688731253147, + -0.018700692802667618, + -0.011972256936132908, + -0.0024823022540658712, + 0.018060537055134773, + -0.0027649239636957645, + -0.011713470332324505, + -0.011897345073521137, + -0.0010777073912322521, + 0.009261813946068287, + -0.003571927547454834, + 0.0033540024887770414, + 0.038572732359170914, + 0.016126452013850212, + 0.0018097993452101946, + -0.015636121854186058, + 0.002604885259643197, + -0.011767951771616936, + 0.014137886464595795, + 0.02323625609278679, + 0.010596605017781258, + 0.018414665013551712, + 0.02792164497077465, + -0.018510008230805397, + 0.0099496403709054, + -0.009711284190416336, + -0.004678578115999699, + 0.005924836732447147, + -0.017965195700526237, + -0.013470491394400597, + -0.015431816689670086, + 0.021438375115394592, + -0.015009586699306965, + -0.0017723434139043093, + -0.012803096324205399, + -0.007007651962339878, + 0.024557428434491158, + 0.019027579575777054, + -0.005935051944106817, + -0.008853204548358917, + 0.008294771425426006, + -0.016684886068105698, + 0.0008108343463391066, + 0.0343504324555397, + 0.014560116454958916, + 0.0033505973406136036, + -0.007525223772972822, + -0.014968725852668285, + 0.011311671696603298, + -0.021343033760786057, + -0.027594758197665215, + -0.001651463215239346, + 0.0011466603027656674, + -0.011468305252492428, + 0.002657664008438587, + 0.012850767001509666, + -0.0026593664661049843, + 0.0042427279986441135, + 0.020294269546866417, + -0.02252800017595291, + 0.01931360550224781, + 0.0022150035947561264, + 0.026900121942162514, + -9.326723375124857e-5, + -0.011441064067184925, + 0.005070162005722523, + 0.014927865006029606, + -0.006949765607714653, + -0.013409200124442577, + -0.0016157098580151796, + 0.0021945731714367867, + 0.005202960222959518, + -0.03609383478760719, + 0.018006056547164917, + 0.0034765852615237236, + 0.011468305252492428, + -0.0007410302641801536, + -0.0030798937659710646, + 0.026396170258522034, + -0.005819279700517654, + -0.0013569238362833858, + 0.01923188380897045, + 0.026164624840021133, + 0.010494452901184559, + 0.00928905513137579, + 0.01656230352818966, + -0.029065752401947975, + 0.009139231406152248, + -0.0017272261902689934, + 0.0011449577286839485, + 0.000801044749096036, + 0.0042291078716516495, + -0.022773167118430138, + 0.01084177102893591, + -0.0030832986813038588, + 0.002107743639498949, + -0.007661426905542612, + -0.029229195788502693, + -0.006496889982372522, + -0.009275434538722038, + -0.004385741427540779, + 0.02703632414340973, + -0.008478646166622639, + 0.013109552673995495, + 0.0028755890671163797, + 0.012374055571854115, + 0.014410292729735374, + -0.020539434626698494, + 0.008975787088274956, + -0.008580798283219337, + -0.0032263121102005243, + -0.015540779568254948, + 0.012013117782771587, + -0.000857228587847203, + 0.0022814027033746243, + -0.01609921269118786, + -0.02657323330640793, + -0.021002525463700294, + -0.010528502985835075, + -0.009146041236817837, + 0.0006656929035671055, + 0.008996217511594296, + -0.012496639043092728, + -0.02443484403192997, + -0.027199769392609596, + 0.010133514180779457, + -0.015404576435685158, + 0.012299144640564919, + 2.3024183974484913e-5, + -0.033642176538705826, + -0.00903707928955555, + 0.0029487982392311096, + 0.02164267934858799, + 0.022160252556204796, + 0.0016982830129563808, + 0.024843454360961914, + 0.013116363435983658, + 0.018673451617360115, + -0.004331259988248348, + -0.032797716557979584, + -0.002102636033669114, + 0.006769296247512102, + 0.020117204636335373, + -0.007620566058903933, + 0.005025896243751049, + -0.019749457016587257, + -0.00798831507563591, + -0.021819744259119034, + 0.011359342373907566, + -0.011999497190117836, + -0.013742897659540176, + 0.011243569664657116, + -0.001560377306304872, + 0.019872039556503296, + 0.0009295864729210734, + 0.020375991240143776, + -0.001784261199645698, + 0.006837397813796997, + -0.012796285562217236, + -0.014641838148236275, + -0.024802593514323235, + 0.014260469935834408, + 5.392261300585233e-5, + 0.003701320616528392, + 0.0005903555429540575, + 0.004239323083311319, + 0.015159410424530506, + -0.0008333930163644254, + 0.012803096324205399, + 0.014900624752044678, + 0.0024414414074271917, + -0.0014556711539626122, + 0.007661426905542612, + 0.012619221583008766, + -0.012060788460075855, + 0.013164034113287926, + -0.005717127118259668, + 0.02202404849231243, + 0.013490921817719936, + -0.0026542588602751493, + -0.012156130746006966, + -0.014641838148236275, + 0.023018332198262215, + -0.013729277066886425, + 0.007409451063722372, + 0.007068943232297897, + -0.003820498241111636, + 0.02288212813436985, + 0.0046751732006669044, + -0.006197242997586727, + -0.005359593778848648, + 0.0219559483230114, + -0.0005499201943166554, + -0.007981504313647747, + 0.009071129374206066, + 0.0009398017427884042, + -0.0025963725056499243, + -0.021356653422117233, + 0.0038749794475734234, + -0.0032007740810513496, + -0.005540063139051199, + -0.012857576832175255, + -0.011304860934615135, + 0.0027172528207302094, + 0.006476459559053183, + 0.04862452298402786, + -0.006183622870594263, + -0.02117959037423134, + -0.00223543425090611, + 5.2193470764905214e-5, + 0.03048226423561573, + -0.015227511525154114, + -0.016153693199157715, + 0.011264000087976456, + -0.008219859562814236, + -0.013443251140415668, + 0.006667144130915403, + -0.008866825141012669, + -0.007593325339257717, + -0.003371027996763587, + 0.005860140547156334, + -0.003514041192829609, + 0.00409290473908186, + -0.004395956639200449, + 0.016412479802966118, + 0.007007651962339878, + -0.01950429007411003, + -0.015281992964446545, + -0.004239323083311319, + -0.0021928707137703896, + -0.011488735675811768, + -1.6639662135276012e-5, + -0.008628468960523605, + 0.003001576755195856, + -0.0026287208311259747, + 0.011658989824354649, + 4.280290158931166e-5, + 0.016970911994576454, + -0.0009517194703221321, + -0.021315792575478554, + -0.038954101502895355, + -0.0037932577542960644, + 0.014628218486905098, + 0.0030952165834605694, + -0.020484954118728638, + -0.02865714207291603, + 0.013000590726733208, + -0.01566336117684841, + -0.001964730443432927, + 0.0004728803178295493, + 0.01072599831968546, + -0.005219985730946064, + -6.512212712550536e-5, + 0.018360184505581856, + 0.004351690411567688, + -0.000990026630461216, + 0.004668362904340029, + 0.015227511525154114, + -0.010331008583307266, + -0.0005707762902602553, + 0.006537751294672489, + 0.024380363523960114, + -0.028875067830085754, + -0.01973583549261093, + 0.004627502057701349, + -0.018482767045497894, + 0.013960822485387325, + -0.013327478431165218, + 0.013157224282622337, + -0.0338873416185379, + 0.018510008230805397, + -0.020158065482974052, + -0.02726786956191063, + 0.000925330154132098, + 0.013279806822538376, + -0.019054820761084557, + -0.0021213639993220568, + 0.02330435812473297, + -0.011917775496840477, + 0.013606694526970387, + 0.03778275474905968, + 0.0020124015863984823, + -0.005628595128655434, + -0.004634311888366938, + 0.0048147812485694885, + -0.0023273713886737823, + 0.02447570487856865, + 0.019408948719501495, + 0.003561712335795164, + -0.0030117921996861696, + -0.0017689383821561933, + 0.023917272686958313, + -0.012959729880094528, + -0.015050447545945644, + 0.011270810849964619, + -0.011536406353116035, + 0.01912292279303074, + -0.002807487500831485, + -0.004419791977852583, + 0.012346815317869186, + -0.010657896287739277, + -0.008097277022898197, + 0.0049850353971123695, + 0.006708004977554083, + -0.011073315516114235, + 0.008226670324802399, + 0.009139231406152248, + -0.009799816645681858, + 0.005121238529682159, + 0.01733866147696972, + 0.02559257112443447, + 0.007681857328861952, + 0.010869011282920837, + 0.0031479953322559595, + -0.021506477147340775, + -0.011972256936132908, + 0.02078459970653057, + -0.022582482546567917, + -0.0026474487967789173, + -0.007749958895146847, + -0.02695460245013237, + -0.007457122206687927, + 0.009003028273582458, + -0.0033999711740761995, + -0.007484362926334143, + 0.021629059687256813, + 0.03712897747755051, + 0.004855642095208168, + -0.013872290961444378, + -0.01849638670682907, + 0.017120735719799995, + 0.01822398044168949, + 0.0012547714868560433, + 0.013048261404037476, + 0.007777199614793062, + 0.027254249900579453, + 0.034186989068984985, + 0.02063477598130703, + -0.012231042608618736, + -0.011733900755643845, + 0.0005384280811995268, + 0.01717521622776985, + 0.010024551302194595, + 0.005635405424982309, + 0.004147385712713003, + -0.027172528207302094, + -0.030237099155783653, + -0.0005690737743861973, + -0.008076846599578857, + 0.011264000087976456, + -0.009105180390179157, + -0.0071029942482709885, + 0.016317136585712433, + -0.010637465864419937, + 0.027513036504387856, + 0.031054317951202393, + 0.009615941904485226, + -0.007886162027716637, + -0.011182278394699097, + 0.0012062491150572896, + -0.019340846687555313, + 0.006837397813796997, + 0.011876914650201797, + 0.0034544523805379868, + -0.013654365204274654, + -0.0071029942482709885, + 0.010262907482683659, + -0.010024551302194595, + -0.003136077430099249, + 0.026586854830384254, + -0.012694133445620537, + -0.023181775584816933, + 0.006479864940047264, + 0.003524256404489279, + -0.004624096676707268, + -0.02481621317565441, + -0.007075753528624773, + -0.0026542588602751493, + 0.003497015917673707, + 0.0015178138855844736, + 0.016085591167211533, + 0.002947095548734069, + -0.006667144130915403, + -0.006476459559053183, + 0.007484362926334143, + 0.010235666297376156, + 0.014124266803264618, + 0.010331008583307266, + -0.016684886068105698, + 0.03413251042366028, + 0.015799565240740776, + 0.020212547853589058, + -0.009724904783070087, + 0.014396673068404198, + -0.006176812574267387, + -0.013879100792109966, + 0.012544309720396996, + 0.00016376300482079387, + -0.0032280145678669214, + 0.03688381239771843, + 0.013075502589344978, + -0.021547337993979454, + 0.013531782664358616, + 0.001623371266759932, + -0.010235666297376156, + 0.004140575882047415, + 0.0041610063053667545, + 0.014314950443804264, + 0.006313015706837177, + -0.018210360780358315, + -0.003687700256705284, + 0.020076343789696693, + 0.0017399952048435807, + -0.004426602274179459, + -0.008621659129858017, + -0.027976127341389656, + -0.016644025221467018, + -0.009758955799043179, + -0.0046309069730341434, + -0.005029301159083843, + -0.003830713452771306, + -0.007729528471827507, + 0.0026610689237713814, + 0.0051927450112998486, + -0.017815371975302696, + -0.01628989726305008, + -0.019013959914445877, + -0.012680512852966785, + -0.013218515552580357, + -0.003892004955559969, + 0.010365059599280357, + -0.012312764301896095, + 0.004406171850860119, + 0.019204644486308098, + -0.012769045308232307, + -0.0001961112575372681, + 0.003762611886486411, + 0.0089213065803051, + -0.007940643467009068, + 0.007096183951944113, + -0.007457122206687927, + -0.00031986457179300487, + -0.013708846643567085, + 0.04963242635130882, + 0.011441064067184925, + -0.0052608465775847435, + 0.012408106587827206, + 0.010651086457073689, + 0.024952417239546776, + 0.017583826556801796, + -0.004263158421963453, + -0.005475366488099098, + -0.004947579465806484, + -0.05627914145588875, + 0.02783992327749729, + -0.014342191629111767, + 0.020730119198560715, + -0.008601228706538677, + -0.014846143312752247, + -0.006994031835347414, + -0.009772575460374355, + -0.02403985522687435, + 0.014914244413375854, + 0.015636121854186058, + -0.028602661564946175, + 0.0006852720980532467, + -0.014110646210610867, + -0.0198992807418108, + 0.020702878013253212, + 0.006159787531942129, + 0.012544309720396996, + 0.023018332198262215, + 0.010358249768614769, + 0.014246849343180656, + -0.012047168798744678, + -0.011686230078339577, + 0.0038613593205809593, + 0.007334539666771889, + 0.006248319521546364, + 0.022950230166316032, + -0.011638559401035309, + -0.003071381011977792, + 0.023454181849956512, + 0.0005690737743861973, + -0.007845301181077957, + 0.011795192956924438, + -0.015636121854186058, + 0.012435347773134708, + 0.012414917349815369, + 0.011114177294075489, + 0.0016455042641609907, + 0.0019545152317732573, + 0.012912058271467686, + -0.011529596522450447, + 0.0020004836842417717, + -0.020580295473337173, + 0.0024005805607885122, + -0.02086632139980793, + 0.013790568336844444, + 0.018741553649306297, + 0.014968725852668285, + -0.003325059311464429, + -0.010446781292557716, + -0.008015555329620838, + -0.004276779014617205, + -0.033097364008426666, + -0.012666893191635609, + 0.0014880193630233407, + -0.015595260076224804, + 0.007429881487041712, + -0.02653237245976925, + 0.013504542410373688, + -0.009302674792706966, + -0.015472677536308765, + -0.0051791248843073845, + -0.008274341002106667, + 0.025197582319378853, + 0.007974694482982159, + 0.013497731648385525, + -0.007225576788187027, + 0.021111488342285156, + 0.022991091012954712, + 0.0054311007261276245, + -0.012231042608618736, + -0.003922650590538979, + -0.0032075841445475817, + -0.004395956639200449, + -0.005437910556793213, + -0.0047568948939442635, + -0.0024022830184549093, + -0.007511603645980358, + -0.003437426872551441, + 0.018823275342583656, + -0.003497015917673707, + -0.006095090880990028, + 0.015377335250377655, + 0.0021979783196002245, + -0.004426602274179459, + -0.02311367355287075, + 0.020498573780059814, + 0.017583826556801796, + -0.001586766680702567, + 0.0030083870515227318, + 0.0038068778812885284, + 0.022868508473038673, + -0.017869852483272552, + 0.007511603645980358, + 0.010773668996989727, + 0.004743274766951799, + -0.013988063670694828, + 0.012850767001509666, + 0.03350597620010376, + -0.003190558636561036, + -0.005999748595058918, + 0.003687700256705284, + -0.03917202353477478, + 0.022950230166316032, + 0.015881286934018135, + 0.011883724480867386, + -0.011917775496840477, + -0.009357156231999397, + -0.025197582319378853, + 2.8145102987764403e-5, + 0.004579830914735794, + -0.002751303603872657, + -0.024734491482377052, + 0.018632590770721436, + -0.012224232777953148, + 0.0038579541724175215, + 0.002359719481319189, + 0.0020055912900716066, + -0.014968725852668285, + -0.00942525826394558, + -0.013504542410373688, + -0.0315718911588192, + -0.024571048095822334, + 0.008853204548358917, + 0.006643308326601982, + -0.009472928941249847, + 0.0035889530554413795, + -0.016970911994576454, + -0.012653272598981857, + 0.002558916574344039, + 0.005390239413827658, + 0.0069089047610759735, + 0.0014463071711361408, + 0.0030066845938563347, + 0.009799816645681858, + 0.002809189958497882, + -0.002415903378278017, + 0.020348750054836273, + -0.009302674792706966, + 0.010848580859601498, + 0.01694367080926895, + -0.005434505641460419, + 0.02668219618499279, + -0.002443143865093589, + -0.02105700597167015, + -0.010528502985835075, + -0.014083405025303364, + 0.020975284278392792, + 0.010276527144014835, + 0.009248193353414536, + -0.014165127649903297, + 0.006987221539020538, + 0.02754027582705021, + 0.007463932503014803, + -0.007681857328861952, + 0.0012615816667675972, + 0.00917328242212534, + -0.024571048095822334, + 0.013416009955108166, + 0.007586515508592129, + -0.01058979518711567, + 0.016889190301299095, + -0.005301707424223423, + 0.04061577841639519, + 0.0036740798968821764, + 0.019218264147639275, + 0.00025687061133794487, + 0.0009491656674072146, + -0.01927274465560913, + 0.0025350810028612614, + 0.016821088269352913, + 0.001105799339711666, + -0.03173533454537392, + -0.008492265827953815, + 0.015377335250377655, + -0.024053476750850677, + -0.013082312420010567, + -0.011945015750825405, + -0.004283588845282793, + -0.017965195700526237, + 0.013055072166025639, + 0.0034050787799060345, + -0.00793383363634348, + -0.009166471660137177, + 0.020961664617061615, + -0.02865714207291603, + 0.0061529772356152534, + 0.0012351922923699021, + -0.005233605857938528, + 0.009595511481165886, + 0.0016455042641609907, + -0.008723811246454716, + -0.010964353568851948, + -0.006132546812295914, + 0.014805282466113567, + 0.006425383500754833, + -0.0030747861601412296, + -0.003997562453150749, + -0.005979318171739578, + 0.006384522654116154, + 0.010358249768614769, + -0.00818580947816372, + -0.007416261360049248, + -4.9912337090063374e-6, + -0.030073655769228935, + -0.024761732667684555, + -0.012612411752343178, + 0.003970321733504534, + -0.014587356708943844, + -0.011379772797226906, + 0.010555744171142578, + 0.005400454625487328, + 0.004944174084812403, + 0.011945015750825405, + 0.002300130669027567, + -0.010923492722213268, + 0.004314234480261803, + -0.0009678936330601573, + -0.014737180434167385, + 0.01008584350347519, + -0.0056251902133226395, + -0.016126452013850212, + 0.009772575460374355, + 0.015295613557100296, + 0.009568271227180958, + -0.010753238573670387, + 0.009214143268764019, + 0.010691947303712368, + 0.010671516880393028, + 0.03402354568243027, + 0.01084177102893591, + -0.008996217511594296, + 0.02792164497077465, + -0.024176059290766716, + 0.024966036900877953, + -0.003565117483958602, + 0.022133011370897293, + -0.013497731648385525, + 0.008642089553177357, + -0.005015681032091379, + 0.002363124629482627, + -0.0016097509069368243, + 0.006673954427242279, + 0.016807468608021736, + -0.001780856167897582, + -0.010773668996989727, + 0.0026934172492474318, + -0.0023443966638296843, + -0.0109779741615057, + -0.0007214510696940124, + 0.0032841984648257494, + 0.014328571036458015, + 0.0002381426893407479, + 0.022473519667983055, + 0.00047713666572235525, + 0.018591729924082756, + -0.010113083757460117, + 0.003697915468364954, + -0.018210360780358315, + -0.007028082385659218, + -0.011904154904186726, + -0.0012002902803942561, + 0.00030305201653391123, + -0.024966036900877953, + 0.0030747861601412296, + -0.03102707676589489, + 0.011965446174144745, + -9.37460717977956e-5, + 0.007409451063722372, + -0.004886287730187178, + 0.02563343197107315, + 0.008812343701720238, + -0.005979318171739578, + -0.0037115358281880617, + -0.023944513872265816, + -0.016494201496243477, + 0.033451493829488754, + -0.0059725078754127026, + 0.001362882787361741, + 0.011761141940951347, + -0.02777182124555111, + 0.015118549577891827, + -0.003626408753916621, + -0.027281491085886955, + 0.01679384894669056, + 0.010732808150351048, + -0.03652968257665634, + 0.015104928985238075, + 0.00798831507563591, + -0.003365920390933752, + -0.0037421814631670713, + 0.014628218486905098, + -0.024843454360961914, + 0.020975284278392792, + -0.02552446909248829, + -0.020961664617061615, + -0.014655458740890026, + -0.021574579179286957, + 0.00030007257009856403, + -0.005839710123836994, + -0.015050447545945644, + 0.014437533915042877, + -0.003124159760773182, + 0.02160181850194931, + -0.015268373303115368, + 0.022596102207899094, + 0.0005677968729287386, + 2.085610685753636e-5, + -0.0005009722081013024, + -0.019926520064473152, + -0.022950230166316032, + 0.006200648378580809, + 0.001308401464484632, + -0.002977741416543722, + -0.02051219344139099, + 0.007130234967917204, + 0.012510258704423904, + -0.014151507057249546, + 0.008444595150649548, + 0.004821591544896364, + 0.0029794438742101192, + -0.0004664957814384252, + -0.005461746361106634, + 0.013851860538125038, + 0.0036059783305972815, + 0.0044810837134718895, + 0.0005490689654834569, + -0.02416243776679039, + -0.007150665391236544, + 0.014573737047612667, + 0.002531676087528467, + 0.029501602053642273, + -0.00878510344773531, + 0.0003458283026702702, + -0.012966539710760117, + -0.011148227378726006, + 0.004467463120818138, + -0.004852237179875374, + -0.03176257386803627, + 0.0048147812485694885, + 0.023508664220571518, + -0.006919119972735643, + 6.90060478518717e-5, + -0.007402641233056784, + 0.005509417504072189, + -0.028875067830085754, + 0.027948886156082153, + 0.030999835580587387, + 0.012816715985536575, + 0.002443143865093589, + -0.016807468608021736, + 0.011427444405853748, + -0.006578612141311169, + 0.0013824619818478823, + -0.016821088269352913, + 0.008662519976496696, + 0.018046917393803596, + 0.013838239945471287, + 0.002419308526441455, + -0.009139231406152248, + 0.0062346989288926125, + -0.015145789831876755, + 0.0049850353971123695, + -0.009146041236817837, + -0.015377335250377655, + 0.0020822056103497744, + 0.00843778531998396, + -0.0017306312220171094, + 0.0017434002365916967, + -0.012013117782771587, + 0.000832541729323566, + 0.011931396089494228, + 0.003171830903738737, + 0.00804960634559393, + 0.015213891863822937, + -0.005768203176558018, + 0.0006078065489418805, + -0.029174713417887688, + 0.030318820849061012, + -0.011808812618255615, + 0.035276614129543304, + 0.044075340032577515, + -0.0001822781196096912, + -0.020621156319975853, + -0.010140324011445045, + -0.009043889120221138, + 0.010290147736668587, + -0.016684886068105698, + 0.0005192745011299849, + -0.01729780063033104, + 0.010514883324503899, + 0.016126452013850212, + 0.014587356708943844, + 0.018973099067807198, + -0.008778292685747147, + 0.010494452901184559, + -0.006098495796322823, + -0.006915715057402849, + 0.002094123512506485, + 0.015431816689670086, + 0.004790945909917355, + -0.026777539402246475, + 0.01822398044168949, + 0.010119893588125706, + 0.02901127003133297, + 0.003949891310185194, + 0.014151507057249546, + -0.012905248440802097, + -0.004273373633623123, + -0.01767916791141033, + 0.010215235874056816, + -0.015104928985238075, + -0.028411976993083954, + 0.012231042608618736, + -1.7623942767386325e-6, + 0.01570422202348709, + 0.007463932503014803, + 0.0031616154592484236, + 0.009629562497138977, + -0.010147134773433208, + -0.012312764301896095, + -0.017039014026522636, + 0.01717521622776985, + 0.0018693881575018167, + -0.007920213043689728, + 0.020158065482974052, + 0.025306545197963715, + 0.010548933409154415, + 0.016140073537826538, + -0.011332102119922638, + -0.012305954471230507, + 0.008076846599578857, + -0.007041702512651682, + 0.0014820605283603072, + -0.03255255147814751, + 0.032824959605932236, + -0.005543468054383993, + -0.03361493721604347, + -0.008035985752940178, + 0.002548701362684369, + -0.010508072562515736, + 0.0015033422969281673, + 0.015077688731253147, + 0.021302172914147377, + 0.007157475221902132, + 0.02412157692015171, + 0.007831680588424206, + -0.005264251492917538, + 0.0071029942482709885, + 0.0055809239856898785, + 0.010610225610435009, + 0.001087922602891922, + 0.0056830765679478645, + 0.006207458674907684, + -0.0021417944226413965, + -0.015581640414893627, + -0.004266563802957535, + -0.030046414583921432, + -0.015636121854186058, + 0.0032893060706555843, + 0.01811501942574978, + -0.0026082901749759912, + 0.014492015354335308, + -0.012013117782771587, + -0.024557428434491158, + 0.006221078801900148, + -0.00839692447334528, + 0.009888348169624805, + -0.003045842982828617, + 0.0020192116498947144, + -0.009874728508293629, + 0.0018983313348144293, + -0.016657644882798195, + 0.006878259126096964, + 0.026246346533298492, + -0.010678326711058617, + -0.003057760652154684, + 0.019191022962331772, + -0.0030798937659710646, + 0.008226670324802399, + -0.013926771469414234, + 0.0005635404959321022, + -0.011216329410672188, + 0.014205988496541977, + 0.016194554045796394, + -0.025224823504686356, + 0.014887004159390926, + 0.0019953760784119368, + 0.006660333834588528, + 0.015336474403738976, + -0.012591981329023838, + 0.03206222131848335, + 0.007491173222661018, + -0.00804960634559393, + -0.02059391513466835, + 0.014778041280806065, + 0.00408268952742219, + -0.00037285612779669464, + 0.016357997432351112, + -0.0020209141075611115, + 0.00837649405002594, + 0.0024022830184549093, + 0.016630403697490692, + -0.017774511128664017, + 0.01954515092074871, + -0.028303014114499092, + 0.0006861233850941062, + 0.03102707676589489, + -0.006479864940047264, + 0.006946360692381859, + 0.020062724128365517, + -0.0038000678177922964, + -0.008962167426943779, + 0.019109301269054413, + -0.009220953099429607, + -0.01609921269118786, + 0.004392551723867655, + 0.001499085919931531, + -0.006122331600636244, + -0.005584328901022673, + 0.0021775478962808847, + 0.002301833126693964, + 0.02808508835732937, + -0.007804440334439278, + 0.013027830980718136, + -0.010576174594461918, + -0.012183371931314468, + 0.017202457413077354, + -0.005941862240433693, + -0.00903707928955555, + -0.001850660308264196, + -0.010800909250974655, + -0.001780856167897582, + 0.014791661873459816, + 0.0011355937458574772, + 0.022323695942759514, + -0.009357156231999397, + 0.014532876200973988, + -0.010671516880393028, + -0.022814027965068817, + 0.017079874873161316, + 0.0017008368158712983, + 0.013695226050913334, + 0.03451387584209442, + 0.007954264059662819, + 0.00210944632999599, + -0.02051219344139099, + 0.0024465490132570267, + -0.008213049732148647, + -0.0039090304635465145, + 0.0071847159415483475, + -0.025973940268158913, + -0.006118926219642162, + -0.0028245127759873867, + -0.013524972833693027, + 0.00045032164780423045, + 0.00025687061133794487, + -0.02218749187886715, + -0.00880553387105465, + 0.007947453297674656, + 0.035739704966545105, + 0.011658989824354649, + 0.011454684659838676, + 0.013715657405555248, + 0.0005967400502413511, + -0.0068510184064507484, + 0.011604508385062218, + 0.016385238617658615, + 0.007668237201869488, + 0.003253552597016096, + 0.03334252908825874, + -0.0032024765387177467, + 0.028439218178391457, + 0.005676266271620989, + -0.006067850161343813, + 0.013988063670694828, + 0.021533718332648277, + 0.010719187557697296, + -0.029447119683027267, + -0.001086220145225525, + -0.012694133445620537, + 0.009261813946068287, + -0.003119052154943347, + 0.004447032697498798 + ], + "bce02060-3326-43af-870e-a03cad701b05": [ + -0.03382033109664917, + -0.021681195124983788, + -0.009498289786279202, + 0.0071237171068787575, + -0.014721618965268135, + -0.030552102252840996, + 0.0037150566931813955, + 0.021243486553430557, + -0.04855654016137123, + 0.0051905014552176, + 0.011927575804293156, + 0.014013989828526974, + -0.005383823066949844, + -0.03326589986681938, + -0.028626181185245514, + 0.02295055240392685, + -0.03090226836502552, + 0.0313691571354866, + 0.010001654736697674, + -0.03133997693657875, + 0.08573263883590698, + 0.0035509157460182905, + -0.013109390623867512, + 0.000525251030921936, + 0.007083593867719173, + -0.011956756003201008, + 0.002128361025825143, + -0.003415955463424325, + -0.020966270938515663, + 0.026641899719834328, + 0.021827097982168198, + 0.021141353994607925, + 0.011781672015786171, + 0.004515700042247772, + 0.01054149679839611, + -0.015217689797282219, + 0.008812544867396355, + 0.04563847929239273, + 0.011176174506545067, + -0.020265934988856316, + -0.0393354669213295, + 0.024599255993962288, + -0.03364524617791176, + 0.0072550298646092415, + -0.04724341258406639, + -0.006536457221955061, + 0.019711503759026527, + -0.029676683247089386, + -0.0014134359080344439, + 0.015071786940097809, + -0.0006260153604671359, + -0.03539608418941498, + 0.00976091530174017, + 0.013620051555335522, + 0.01828165352344513, + -0.011373143643140793, + 0.015349002555012703, + 0.04388764128088951, + -0.0006720660021528602, + -0.006937690544873476, + 0.004103523679077625, + 0.03192359209060669, + -0.008214342407882214, + 0.020528560504317284, + -0.02947241999208927, + -0.036680031567811966, + 0.005183206405490637, + -0.01530523132532835, + -0.05278772860765457, + -0.02652517706155777, + 0.002870642812922597, + 0.0069340430200099945, + -0.034637387841939926, + -0.0033211184199899435, + -0.007565074134618044, + -0.00010087829286931083, + 0.039014481008052826, + -0.008513444103300571, + 0.024891063570976257, + -0.026043696328997612, + -0.03808069974184036, + 0.00793712679296732, + 0.015071786940097809, + -0.012934306636452675, + 0.03632986173033714, + 0.002547832205891609, + -0.006076862569898367, + -0.03452066332101822, + -0.0011471628677099943, + -0.023081865161657333, + 0.007039823103696108, + 0.016983116045594215, + 0.0236800666898489, + -0.010191328823566437, + -0.014159892685711384, + 0.015669988468289375, + 0.026423044502735138, + 0.0007887884275987744, + 0.0171436108648777, + -0.042486973106861115, + -0.01587425358593464, + 0.05672711133956909, + -0.01879231445491314, + 0.006102395709604025, + -0.02324235811829567, + 0.030727185308933258, + 0.018763134256005287, + -0.04286631941795349, + -0.021622834727168083, + 0.08917595446109772, + 0.010694694705307484, + -0.029209794476628304, + 0.0073462193831801414, + -0.014262024313211441, + -0.05801105871796608, + -0.06110420450568199, + 0.027210921049118042, + -0.01065092347562313, + 0.0033265899401158094, + -0.029778815805912018, + 0.022965142503380775, + 0.025080736726522446, + 0.0035782726481556892, + 0.020922498777508736, + -0.00483303889632225, + 0.013430377468466759, + 0.007127364631742239, + -0.026145828887820244, + 0.020295117050409317, + 0.015232279896736145, + -0.053867410868406296, + -0.02553303726017475, + -0.02185627818107605, + 0.002987365238368511, + -0.024059414863586426, + -0.012073478661477566, + 0.01251118816435337, + 0.05135788023471832, + -0.05354642495512962, + 0.05083262920379639, + -0.03262392431497574, + -0.053575605154037476, + 0.004420862998813391, + -0.008163276128470898, + -0.016808032989501953, + -0.003921144641935825, + -0.055180538445711136, + 0.0758112296462059, + 0.005048246122896671, + 0.013868086040019989, + -0.009148121811449528, + -0.02521204948425293, + 0.03711773827672005, + -0.0014645019546151161, + -0.00743376137688756, + 0.03749708831310272, + -0.01976986601948738, + 0.00609145313501358, + 0.00915541686117649, + 0.029778815805912018, + 0.02849486842751503, + -0.0473601333796978, + 0.003012898378074169, + 0.009162712842226028, + 0.03632986173033714, + 0.037818074226379395, + 0.022775467485189438, + 0.03090226836502552, + -0.04636799544095993, + 0.018325425684452057, + 0.032419659197330475, + -0.037555448710918427, + -0.0027229159604758024, + 0.021841688081622124, + 0.009286729618906975, + 0.003375832224264741, + 0.03309081494808197, + 0.029691273346543312, + 0.007893355563282967, + -0.030581282451748848, + -0.014955064281821251, + -0.038693491369485855, + -0.024278270080685616, + -0.0214915219694376, + -0.0009638721239753067, + 0.043800100684165955, + 0.014612192288041115, + -0.015407363884150982, + 0.0016322905430570245, + -0.02553303726017475, + 0.005354642402380705, + -0.013102095574140549, + -0.026641899719834328, + 0.014429813250899315, + -0.026072878390550613, + -0.005642801057547331, + 0.006981461774557829, + -0.010753056034445763, + 0.009170007891952991, + 0.007269620429724455, + -0.01315316092222929, + -0.04266205430030823, + -0.05815696343779564, + 0.022600384429097176, + -0.020149212330579758, + 0.006346783135086298, + 0.018777724355459213, + -0.015115557238459587, + 0.02988094836473465, + -0.04003579914569855, + 0.03347016125917435, + -0.060695674270391464, + 0.019944949075579643, + -0.003888316685333848, + -0.0334993451833725, + -0.00542759383097291, + -0.024876471608877182, + 0.029676683247089386, + 0.01337201613932848, + -0.02144774980843067, + -0.020820368081331253, + 0.02086413837969303, + 0.012255857698619366, + -0.009242959320545197, + -0.004300492815673351, + -0.03425803780555725, + -0.01966773346066475, + 0.01479457039386034, + -0.033032454550266266, + 0.0164140947163105, + 0.04111548513174057, + 0.015100967139005661, + -0.01791689544916153, + -0.014291205443441868, + -0.013459557667374611, + 0.008622870780527592, + -0.017391644418239594, + 0.033440981060266495, + 0.04852735996246338, + -0.02319858781993389, + 0.011869214475154877, + 0.038576770573854446, + 0.0349583737552166, + 0.0032809951808303595, + 0.03991907835006714, + 0.011044861748814583, + 0.034929193556308746, + 0.002429286018013954, + 0.01726033166050911, + -0.043362390249967575, + 0.015217689797282219, + 0.010782236233353615, + 0.015611628070473671, + -0.05769007280468941, + -0.027896666899323463, + 0.04984048753976822, + 0.007951716892421246, + -0.011103223077952862, + -0.010278871282935143, + -0.051387060433626175, + -0.006401496939361095, + -0.0024347573053091764, + 0.043216489255428314, + -0.006937690544873476, + 0.006127928849309683, + -0.022760877385735512, + 0.0070252325385808945, + -0.01984281651675701, + -0.019419698044657707, + 0.03816824033856392, + -0.032273758202791214, + 0.0006975990254431963, + 0.001474532880820334, + -0.02130184695124626, + -0.026802392676472664, + 0.02090790867805481, + 0.02419072762131691, + -0.010300756432116032, + 0.0035436206962913275, + -0.026393864303827286, + -0.004377091769129038, + -0.0078058140352368355, + -0.02273169718682766, + 0.005183206405490637, + -0.036359041929244995, + -0.03174850717186928, + -0.017902305349707603, + -0.01816493086516857, + -0.02068905532360077, + -0.00445004366338253, + -0.002693735295906663, + 0.008185162208974361, + 0.04035678878426552, + 0.04528830945491791, + 0.023548753932118416, + -0.0013906385283917189, + 0.0096660777926445, + 0.023227768018841743, + -0.04041514918208122, + 0.02273169718682766, + -0.03177768737077713, + -0.01464866753667593, + 0.013598165474832058, + -0.01351791899651289, + 0.006226413417607546, + -0.009549355134367943, + 0.03603805601596832, + 0.01597638614475727, + -0.03367442637681961, + 0.0101986238732934, + 0.04120302572846413, + 0.02137479931116104, + -0.0459011048078537, + -0.004136351868510246, + -0.010184033773839474, + 0.01546572521328926, + 0.01148986630141735, + -0.014612192288041115, + -0.03384951129555702, + -0.02567894011735916, + 0.0357462503015995, + 0.04531749337911606, + -0.060403868556022644, + 0.04534667357802391, + 0.02305268496274948, + -0.03600887581706047, + 0.035366903990507126, + -0.003177039325237274, + -0.012635204941034317, + 0.0035235590767115355, + -0.014130711555480957, + 0.02319858781993389, + -0.011409619823098183, + -0.009914113208651543, + -0.0171436108648777, + -0.04776866361498833, + -0.02217726595699787, + -0.050774265080690384, + -0.016618359833955765, + -0.04009416326880455, + -0.02937028743326664, + -0.020222164690494537, + -0.007054413203150034, + -0.0018365548457950354, + 0.040327608585357666, + 0.0035910392180085182, + -0.019025759771466255, + 0.030260296538472176, + -0.021593652665615082, + -0.022629564628005028, + 0.0009228368871845305, + -0.0063176024705171585, + 0.004927875939756632, + 0.013955628499388695, + 0.04727259278297424, + -0.0266273096203804, + 0.022133495658636093, + -0.004329673480242491, + 0.01718738116323948, + -0.02013462223112583, + 0.026802392676472664, + -0.01583048328757286, + -0.0451715886592865, + -0.022571204230189323, + 0.0011535461526364088, + 0.02163742482662201, + -0.011139699257910252, + -0.0320986732840538, + 0.004428158048540354, + 0.016516227275133133, + -0.035483624786138535, + 0.01545113418251276, + 0.04210762307047844, + -0.011292897164821625, + -0.03469574823975563, + -0.028582410886883736, + 0.04114466533064842, + -0.005828827619552612, + -0.04353747516870499, + 0.014714323915541172, + -0.029166022315621376, + 0.019171662628650665, + 0.060695674270391464, + -0.0247743409126997, + 0.04312894493341446, + 0.044266991317272186, + 0.005113902501761913, + 0.02451171539723873, + 0.023592526093125343, + 0.01718738116323948, + -0.03682593256235123, + 0.03743872791528702, + -0.041874177753925323, + -0.003950325306504965, + -0.040911220014095306, + 0.01733328402042389, + 0.015597037971019745, + 0.009461813606321812, + 0.01682262308895588, + -0.027590269222855568, + -0.002370924688875675, + 0.01974068395793438, + 0.0101986238732934, + 0.017099838703870773, + 0.017493776977062225, + -0.017172791063785553, + -0.019434288144111633, + -0.01682262308895588, + 0.01852968893945217, + 0.008513444103300571, + 0.013080209493637085, + -0.0001625451259315014, + -0.0034341933205723763, + 0.019390517845749855, + 0.04286631941795349, + -0.0437125563621521, + 0.03195277228951454, + 0.0052342722192406654, + -0.05290445312857628, + -0.04009416326880455, + 0.027882074937224388, + 0.08520738780498505, + -0.020120032131671906, + 0.06291340291500092, + 0.005642801057547331, + -0.01121994573622942, + 0.03729282319545746, + -0.0021520701702684164, + -0.023840561509132385, + -0.04406272619962692, + 0.014583011157810688, + 0.009717144072055817, + -5.5511558457510546e-5, + -0.00600026361644268, + -0.010475840419530869, + -0.04237024858593941, + -0.007696386892348528, + 0.017304103821516037, + -0.006299364846199751, + -0.004946114029735327, + 0.017566729336977005, + 0.008761478587985039, + 0.008659346960484982, + -0.0027338587678968906, + -0.025708120316267014, + -0.041640736162662506, + -0.05681465193629265, + 0.015699170529842377, + 0.010723874904215336, + -0.0037934796418994665, + -0.00955665111541748, + 0.038664311170578, + -0.029238974675536156, + 0.02214808575809002, + -0.0006191761349327862, + 0.0021848983597010374, + -0.010008949786424637, + -0.0386059507727623, + 0.0004988061264157295, + -0.024351220577955246, + -0.00371688068844378, + -0.014984244480729103, + 0.00922836922109127, + 0.007244087290018797, + 0.014313090592622757, + -0.03953973203897476, + 0.0018857971299439669, + 0.033149175345897675, + 0.013503328897058964, + 0.020820368081331253, + -0.0004370252718217671, + -0.01930297538638115, + -0.030873088166117668, + -0.006842853967100382, + -0.007094536442309618, + 0.0016550879226997495, + -0.01631196215748787, + 0.002192193642258644, + 0.006904862355440855, + -0.006281126756221056, + -0.031690146774053574, + -0.024467943236231804, + -0.015407363884150982, + 0.020163804292678833, + -0.033032454550266266, + -0.008841725997626781, + 0.011066747829318047, + -0.0342872217297554, + 0.0008339271880686283, + 0.01787312515079975, + 0.048439815640449524, + -0.014736209996044636, + 0.018806904554367065, + -0.0027685107197612524, + 0.03075636550784111, + -0.020776595920324326, + -0.015100967139005661, + -0.021024631336331367, + -0.0386059507727623, + -0.01937592774629593, + 0.021681195124983788, + -0.009753620252013206, + -0.007499417755752802, + 0.028246833011507988, + 0.003975858446210623, + -0.008476967923343182, + -0.033295080065727234, + -0.015713760629296303, + -0.03160260245203972, + -0.00806114450097084, + -0.044675517827272415, + 0.005967435427010059, + -0.013255293481051922, + 0.002004343317821622, + -0.01813575066626072, + -0.017785582691431046, + -0.027809124439954758, + 0.02064528316259384, + -0.0019058587495237589, + -0.01181814819574356, + -0.004895047750324011, + 0.012416350655257702, + 0.002653612056747079, + 0.01670590043067932, + 0.003645752789452672, + -0.01772722229361534, + -0.020076261833310127, + -0.002575189108029008, + 0.007659910712391138, + -0.03335344046354294, + 0.003113206708803773, + 0.015553266741335392, + -0.0011307487729936838, + -0.009264844469726086, + 0.014334975741803646, + 0.005270748399198055, + 0.0029910127632319927, + 0.030056031420826912, + 0.015918023884296417, + 0.034754108637571335, + -0.018981989473104477, + -0.004238483961671591, + 0.014619487337768078, + 0.006321250461041927, + 0.015407363884150982, + 0.03078554756939411, + -0.0032153388019651175, + 0.016618359833955765, + -0.004103523679077625, + 0.004344263579696417, + -0.0074775321409106255, + -0.015626218169927597, + -0.008834430947899818, + -0.02608746849000454, + 0.01780017465353012, + -0.04108630120754242, + 0.01998871937394142, + -0.005376528017222881, + -0.0010003478964790702, + -0.014663257636129856, + -0.0009784623980522156, + 0.01755213923752308, + 0.03875185549259186, + 0.016574587672948837, + -0.01435686182230711, + 0.0009032311500050128, + 0.0052816909737885, + 0.023519573733210564, + 0.0034797880798578262, + 0.015918023884296417, + 0.017347874119877815, + 0.010249690152704716, + 0.04056105017662048, + 0.003421426983550191, + -0.0063176024705171585, + 0.028363555669784546, + -0.011052156798541546, + 0.006350431125611067, + -0.02312563546001911, + -0.007856880314648151, + 0.032711468636989594, + -0.026204191148281097, + 0.0036877000238746405, + -0.004555823281407356, + 0.008418606594204903, + -0.001681532827205956, + -0.011664950288832188, + -0.009644192643463612, + 0.014393337070941925, + 0.008425901643931866, + 0.01667672023177147, + 0.01864641159772873, + 0.02013462223112583, + -0.0036293386947363615, + -0.03685511276125908, + 0.03659248724579811, + -0.005839770194143057, + 0.018631821498274803, + 0.0068683866411447525, + 0.010716579854488373, + 0.0027320347726345062, + 0.018909037113189697, + 0.00817057117819786, + -0.006857444066554308, + -0.02958914078772068, + 0.027896666899323463, + -0.001790048205293715, + 0.014779980294406414, + 0.009454518556594849, + 0.011949460953474045, + -0.023475803434848785, + 0.015319821424782276, + 0.03711773827672005, + -0.012343399226665497, + 0.04566765949130058, + 0.035337723791599274, + -0.012664386071264744, + 0.03813906013965607, + -0.0061206333339214325, + -0.002679144963622093, + 0.005887188483029604, + -0.013714888133108616, + 0.06227142736315727, + -0.01130748726427555, + 0.012613319791853428, + 0.010898958891630173, + -0.027196330949664116, + -0.008790659718215466, + -0.04126138612627983, + -0.0028305193409323692, + 0.026948295533657074, + -0.0011398677015677094, + 0.013306359760463238, + -0.04943195730447769, + 0.04344993084669113, + 0.009563946165144444, + 0.016735080629587173, + 0.024074004963040352, + -0.029851766303181648, + -0.014488174580037594, + -0.05512217804789543, + -0.009622307494282722, + -0.0076234349980950356, + 0.017858535051345825, + -0.013649231754243374, + 0.004843981936573982, + -0.015188508667051792, + 0.013401196338236332, + 0.01718738116323948, + 0.016297372058033943, + -0.037380363792181015, + -0.004957056604325771, + -8.611700468463823e-5, + 0.02451171539723873, + 0.01663294993340969, + -0.039423007518053055, + -0.0028268718160688877, + 0.007944421842694283, + 0.008192457258701324, + 0.00868123210966587, + 0.012606024742126465, + -0.02305268496274948, + 0.0017918719677254558, + 0.01552408654242754, + -0.010840597562491894, + 0.038664311170578, + -0.013408491387963295, + -0.01801902800798416, + 0.00015673181042075157, + 0.016136879101395607, + -0.0014435284538194537, + -0.002431109780445695, + 0.029238974675536156, + 0.03437476232647896, + -0.004964351654052734, + -0.022775467485189438, + 0.019492648541927338, + -0.02813011035323143, + -0.012263152748346329, + -0.020441019907593727, + -0.005507840774953365, + 0.007696386892348528, + -0.018369195982813835, + 0.009775505401194096, + 0.012854060158133507, + -0.005872598383575678, + 0.005113902501761913, + 0.02611664868891239, + -0.0013176870997995138, + 0.003383127273991704, + -0.0017544843722134829, + -0.013087504543364048, + -0.015349002555012703, + -0.0027083256281912327, + -0.01005272101610899, + 0.01707065850496292, + -0.022644154727458954, + 0.019054939970374107, + 0.0011964051518589258, + 0.014984244480729103, + -0.028173882514238358, + 0.005019065458327532, + -0.0012857707915827632, + 0.010950025171041489, + -0.011701425537467003, + 0.00659481855109334, + -0.027050428092479706, + -0.0364757664501667, + 0.011555522680282593, + 0.0019751626532524824, + 0.0072623249143362045, + 0.037234462797641754, + -0.008768774569034576, + 0.013875381089746952, + 0.014400632120668888, + 0.01545113418251276, + -0.01707065850496292, + 0.0028396383859217167, + -0.00900951400399208, + 0.0062191179022192955, + -0.004672545474022627, + 0.012044297531247139, + 0.0034706692676991224, + -0.058390405029058456, + -0.018296243622899055, + 0.01355439517647028, + 0.02856782078742981, + 0.007820404134690762, + 0.00024735130136832595, + -0.00038003188092261553, + -0.001204612199217081, + -0.0072477348148822784, + -0.011088632978498936, + 0.002496766159310937, + -0.00441356748342514, + -0.006521867122501135, + -0.006963223684579134, + 0.011066747829318047, + 0.022308578714728355, + -0.042341068387031555, + 0.006335840560495853, + 0.004730906803160906, + 0.011686835438013077, + 0.016574587672948837, + 0.02688993513584137, + 0.0028943519573658705, + 0.04067777469754219, + 0.013897267170250416, + 0.019536420702934265, + 0.01692475564777851, + 0.021360209211707115, + -0.03653412684798241, + 0.040619414299726486, + 0.01842755638062954, + -0.002489471109583974, + 0.010753056034445763, + -0.00584706524387002, + -0.0062847742810845375, + -0.020411837846040726, + 0.019944949075579643, + 0.020659873262047768, + 0.006872034166008234, + 0.019127892330288887, + -0.01750836707651615, + -0.003855488495901227, + -0.0240448247641325, + 0.005478660110384226, + 0.0430414043366909, + 0.029384877532720566, + -0.02090790867805481, + 0.031573422253131866, + -0.004384387284517288, + 0.037380363792181015, + 0.009286729618906975, + -0.0021447751205414534, + 0.007265972439199686, + 0.03918956220149994, + -0.004008686635643244, + -0.031135713681578636, + -0.0014316737651824951, + 0.005475012585520744, + -0.024526305496692657, + -0.02597074583172798, + -0.028100930154323578, + 0.009673372842371464, + 0.007718272041529417, + 0.0583028644323349, + -0.007667206227779388, + -0.015232279896736145, + 0.009695258922874928, + 0.03352852538228035, + 0.030581282451748848, + -0.0038445456884801388, + 0.007036175113171339, + -0.007929831743240356, + -0.005620915442705154, + 0.020222164690494537, + -0.044500432908535004, + -0.00010230312909698114, + 0.006478095892816782, + -0.006135223899036646, + -0.027210921049118042, + 0.013123980723321438, + 0.005748580675572157, + -0.006288422271609306, + -0.040619414299726486, + 0.014145302586257458, + 0.04738931357860565, + 0.03311999514698982, + 0.016078516840934753, + -0.007185725960880518, + -0.009308615699410439, + -0.01901116967201233, + 0.01580130122601986, + -0.016136879101395607, + -0.0055953823029994965, + -0.015845073387026787, + 0.010621743276715279, + -0.012518483214080334, + -0.019434288144111633, + -0.03466656804084778, + 0.006634941790252924, + 0.0061534615233540535, + -0.007535893470048904, + -0.0203972477465868, + -0.03872267156839371, + 0.013014553114771843, + -0.016735080629587173, + 0.032594744116067886, + 0.009447223506867886, + -0.0020116386003792286, + -0.013889972120523453, + 0.0015456605469807982, + 0.04543421417474747, + 0.0031223255209624767, + 0.013145865872502327, + -0.02217726595699787, + 0.002680968726053834, + -0.01801902800798416, + 0.0452299490571022, + -0.011599293909966946, + -0.003983153495937586, + -0.03180686756968498, + -0.00868123210966587, + -0.006580228451639414, + -0.03481247276067734, + 0.01609310880303383, + -0.00017257596482522786, + 0.023008912801742554, + 0.005164968315511942, + 0.017012298107147217, + -0.018471328541636467, + -0.01879231445491314, + -0.01468514371663332, + -0.01249659713357687, + 0.020601512864232063, + -0.023286128416657448, + 0.026393864303827286, + -0.0062446510419249535, + 0.026291731745004654, + -0.016516227275133133, + 0.009118941612541676, + -0.02630632184445858, + -0.031281616538763046, + 0.01645786501467228, + 0.003284642705693841, + -0.018442146480083466, + -0.022352349013090134, + 0.021068401634693146, + -0.0019934005104005337, + -0.010388297960162163, + 0.0028286955785006285, + 0.028319785371422768, + -0.00386278354562819, + 0.0028615237679332495, + -0.026875345036387444, + 0.001024969038553536, + -0.00970255397260189, + -0.0070325275883078575, + -0.02258579432964325, + -0.00021406715677585453, + 0.009775505401194096, + 0.009950589388608932, + -0.018806904554367065, + -0.0641389861702919, + -0.01017673872411251, + 0.029778815805912018, + -0.01107404287904501, + -0.005475012585520744, + 0.0009260285296477377, + 0.00453393766656518, + -0.002234140643849969, + -0.025926975533366203, + -0.030639642849564552, + -0.00038185567245818675, + -0.014772685244679451, + -0.001976986415684223, + -0.009206483140587807, + -0.005985673051327467, + -0.0266273096203804, + -0.00808302965015173, + -0.029910128563642502, + -0.0009766386356204748, + -0.0037460611201822758, + -0.020747415721416473, + -0.038401685655117035, + 0.012460121884942055, + 0.00900951400399208, + -0.015349002555012703, + 0.004800210706889629, + -0.007572369184345007, + 0.016472455114126205, + -0.00859369058161974, + -0.0182087030261755, + 0.0008147774497047067, + 0.02181250788271427, + 0.026641899719834328, + 0.009177302941679955, + -0.004242131486535072, + -0.0035436206962913275, + 0.01835460588335991, + -0.00011079513933509588, + -0.012948896735906601, + -0.005223329644650221, + 0.009950589388608932, + -0.0002108755288645625, + 0.01838378608226776, + -0.004490166902542114, + 0.030698005110025406, + 0.011570112779736519, + -0.00593825476244092, + 0.022016773000359535, + 0.018471328541636467, + 0.008476967923343182, + 0.03816824033856392, + 0.0027885723393410444, + -0.012795698828995228, + -0.0189673975110054, + -0.03945218771696091, + -0.012846765108406544, + -0.02535795234143734, + -0.019127892330288887, + -0.0033320612274110317, + -0.015640808269381523, + 0.023446623235940933, + -0.009461813606321812, + -0.014035874977707863, + 0.041173845529556274, + 0.004202008247375488, + 0.02166660502552986, + 0.007499417755752802, + 0.004654307849705219, + -0.00019856495782732964, + -0.01974068395793438, + 0.0035837439354509115, + 0.043946001678705215, + 0.0008412223542109132, + -0.018763134256005287, + 0.032419659197330475, + 0.0007541364757344127, + 0.02834896557033062, + -0.0015821363776922226, + 0.002812281483784318, + -0.0037004665937274694, + -0.05296281352639198, + 0.010804122313857079, + -0.05010311305522919, + -0.005022712983191013, + -0.016472455114126205, + 0.010205918923020363, + -0.0031588012352585793, + -0.03673839196562767, + -0.0028414621483534575, + 0.0068027302622795105, + 0.004165532533079386, + -0.002385515021160245, + -0.012124544940888882, + -0.014984244480729103, + -0.0059893205761909485, + 0.0017727222293615341, + 0.025518445298075676, + 0.005124845076352358, + -0.012190201319754124, + -0.022162675857543945, + -0.02878667414188385, + 0.013393901288509369, + 0.003964915871620178, + 0.018398376181721687, + -0.002194017404690385, + -0.0002610296942293644, + -0.013196932151913643, + -0.031223256140947342, + -0.00802466832101345, + -0.016983116045594215, + 0.006025796756148338, + 0.00551878334954381, + -0.02385515160858631, + -0.0026627308689057827, + -0.009286729618906975, + -0.00386278354562819, + 0.008097619749605656, + -0.00010942729568341747, + -0.02144774980843067, + 0.04099876061081886, + 0.006510924082249403, + -0.02319858781993389, + 0.011657655239105225, + 0.003308352082967758, + 0.01842755638062954, + 0.03469574823975563, + -0.0009611364221200347, + -0.01911330223083496, + 0.004103523679077625, + 0.0029946602880954742, + 0.00868123210966587, + 0.0073279812932014465, + -0.021797917783260345, + -0.050774265080690384, + -0.036388225853443146, + 0.027663221582770348, + -0.03580461069941521, + -0.010950025171041489, + -0.00955665111541748, + 0.0229797326028347, + 0.012015117332339287, + 0.009593126364052296, + 0.013036439195275307, + 0.0010687399189919233, + 0.01893821731209755, + 0.022498251870274544, + -0.01889444701373577, + 0.017464596778154373, + 0.014531944878399372, + -0.014021284878253937, + -0.006288422271609306, + -0.020484790205955505, + -0.00888549629598856, + -0.06308848410844803, + -0.016063926741480827, + 0.0062191179022192955, + 0.00784228928387165, + -0.008112210780382156, + -0.0025715415831655264, + -0.009264844469726086, + -0.0012830350315198302, + 0.011190764605998993, + 0.015378182753920555, + -0.004774677567183971, + 0.010913548991084099, + -0.0023016207851469517, + 0.02115594409406185, + -0.01772722229361534, + 0.0007646232261322439, + -0.008907382376492023, + 0.00808302965015173, + 0.0030931448563933372, + -0.014240139164030552, + 0.0066385893151164055, + 0.012037002481520176, + 0.02885962650179863, + 0.00011809029092546552, + 0.02820306271314621, + 0.009841161780059338, + -0.027955027297139168, + 0.01648704707622528, + 0.005843417719006538, + -0.013576280325651169, + 0.009731734171509743, + 0.004428158048540354, + -0.012233971618115902, + 0.005799646954983473, + 0.022118903696537018, + 0.0025040614418685436, + 0.026831572875380516, + 0.006558342836797237, + 0.0005585351609624922, + -0.0005945549928583205, + -0.0015319822123274207, + 0.013955628499388695, + -0.00784228928387165, + -0.0021776033099740744, + -0.0052342722192406654, + -0.01552408654242754, + 0.007791223470121622, + -0.030493739992380142, + -0.01101568154990673, + 0.012489302083849907, + 0.023621706292033195, + -0.023008912801742554, + 0.013415786437690258, + -0.023008912801742554, + 0.0014262024778872728, + -0.006857444066554308, + 0.03393705189228058, + 0.007291505578905344, + 0.0022706163581460714, + -0.02637927420437336, + 0.053108714520931244, + 0.009184597991406918, + 0.005194148980081081, + 0.012336104176938534, + -0.033324260264635086, + 0.012394465506076813, + -0.002345391782000661, + 0.01575753092765808, + 0.02827601321041584, + -0.006642236839979887, + 0.0023034445475786924, + -0.014816456474363804, + 0.034053776413202286, + 0.030406199395656586, + 0.003943030256778002, + 0.03487083315849304, + 0.014437108300626278, + 0.00196969136595726, + 0.004709021188318729, + 0.008783364668488503, + 0.02049938030540943, + -0.0035837439354509115, + 0.027925847098231316, + -0.0013377487193793058, + -0.025926975533366203, + -0.021695785224437714, + 0.0032992330379784107, + -0.02214808575809002, + -0.029414057731628418, + -0.006748016923666, + 0.0069668712094426155, + 0.0055953823029994965, + 0.024672208353877068, + 0.022352349013090134, + -0.010366412810981274, + 0.006711541209369898, + 0.017172791063785553, + -0.013780544511973858, + -0.0024347573053091764, + -0.0033648894168436527, + -0.005639153532683849, + 0.0013158632209524512, + -0.005485955160111189, + -0.044967323541641235, + 0.0010888016549870372, + 0.010308051481842995, + -0.0026098410598933697, + -0.005212387070059776, + -0.020805776119232178, + -0.0070580607280135155, + -0.015363592654466629, + -0.0006374139920808375, + -0.01590343378484249, + 0.008987628854811192, + -0.031252436339855194, + -0.00024370371829718351, + -0.015028015710413456, + -0.024234499782323837, + -0.009841161780059338, + -0.008542624302208424, + -0.011081337928771973, + 0.02856782078742981, + 0.007083593867719173, + -0.0510077103972435, + -0.02648140676319599, + 0.019332155585289, + -0.008345655165612698, + 0.00028223125264048576, + -0.027167150750756264, + 0.0038190127816051245, + -0.00501541793346405, + -0.0016204359708353877, + 0.0014736209996044636, + -0.0038773738779127598, + -0.0015711935702711344, + 0.03323671966791153, + 0.03002685122191906, + -0.0059564923867583275, + 0.01667672023177147, + -0.033732786774635315, + 0.00033056162646971643, + 0.0016094931634142995, + 0.01685180328786373, + 0.033616065979003906, + -0.01726033166050911, + -0.0016514402814209461, + 0.01068739965558052, + 0.0007135571795515716, + 0.014021284878253937, + -0.027342233806848526, + 0.004606889095157385, + -0.00888549629598856, + 0.02032429724931717, + -0.03813906013965607, + -0.01583048328757286, + -0.02098086103796959, + -0.005624562967568636, + -0.003910202067345381, + 0.018806904554367065, + 0.020951680839061737, + -0.00937427207827568, + 0.002323506399989128, + 0.016005566343665123, + 0.0037460611201822758, + 0.008754183538258076, + -0.006718836259096861, + -0.01777099259197712, + -0.0010869777761399746, + -0.03347016125917435, + -0.025124507024884224, + -0.019828226417303085, + -0.002232316881418228, + -0.007871470414102077, + 0.004880457650870085, + 0.004464633762836456, + -0.008630165830254555, + -0.015290641225874424, + 0.008134095929563046, + 0.025007784366607666, + 0.023256948217749596, + -0.0071492502465844154, + -0.01645786501467228, + -0.014911293052136898, + 0.024730568751692772, + 0.01163576915860176, + 0.02419072762131691, + -0.005004474893212318, + 0.0005448567681014538, + -0.025708120316267014, + 0.0066568274050951, + 0.02017839439213276, + 0.024176137521862984, + -0.0371469184756279, + -0.020368067547678947, + 0.017347874119877815, + 0.0061789946630597115, + 0.02546008490025997, + -0.03335344046354294, + -0.013693002983927727, + -0.00849885307252407, + -0.021652014926075935, + -0.007783928420394659, + 0.013868086040019989, + -0.005752228200435638, + 0.005602677818387747, + -0.002540537156164646, + -0.030143573880195618, + 0.013671116903424263, + 0.018004437908530235, + -0.027225511148571968, + 0.0021393036004155874, + -0.0020389952696859837, + 0.002398281591013074, + -0.013634641654789448, + 0.0032208100892603397, + 0.005113902501761913, + -0.025474674999713898, + -0.01597638614475727, + -0.002784924814477563, + -0.040298424661159515, + 0.02492024376988411, + -0.005482307635247707, + -0.008768774569034576, + -0.02907848171889782, + 0.019974129274487495, + 0.00367128592915833, + -0.010789531283080578, + -0.03670921176671982, + -0.028334375470876694, + 0.004628774709999561, + 0.004428158048540354, + 0.002062704646959901, + -0.00791524164378643, + -0.024934833869338036, + 0.007054413203150034, + 0.012073478661477566, + 0.017172791063785553, + -0.012037002481520176, + 0.00534369982779026, + -0.017712632194161415, + -0.007371752522885799, + -0.007783928420394659, + -0.014933179132640362, + 0.010789531283080578, + 0.01809198036789894, + 0.0016404975904151797, + -0.03253638371825218, + -0.013904562219977379, + 0.022410711273550987, + -0.014955064281821251, + 0.01173060666769743, + -0.0335577055811882, + -0.008797954767942429, + 0.014677848666906357, + 0.005033655557781458, + 0.0012511187233030796, + 0.013860790990293026, + -0.013379311189055443, + 0.032127853482961655, + -0.012613319791853428, + -0.00016642067930661142, + 0.003964915871620178, + 0.0036238674074411392, + -0.019463468343019485, + 0.01772722229361534, + -0.03262392431497574, + -0.005383823066949844, + -0.0021174182184040546, + 0.01750836707651615, + -0.029122252017259598, + 0.014181777834892273, + 0.01838378608226776, + -0.012248562648892403, + -0.009082465432584286, + 0.013160456903278828, + 0.00739728519693017, + -0.0028998234774917364, + -0.02010544203221798, + -0.0027940436266362667, + -0.00046073453268036246, + 0.013539804145693779, + -0.0134814428165555, + -0.018296243622899055, + -0.014714323915541172, + 0.002037171507254243, + -0.010906253941357136, + 0.0033448277972638607, + 0.02232316881418228, + 0.010898958891630173, + -0.0059893205761909485, + 0.03279900923371315, + 0.019127892330288887, + 0.011716015636920929, + 0.0096660777926445, + 0.034462302923202515, + 0.01546572521328926, + -0.0067954352125525475, + 0.011716015636920929, + 0.006558342836797237, + -0.005438536871224642, + 0.010782236233353615, + -0.00020289645181037486, + -0.02586861327290535, + -0.006168052088469267, + -0.010008949786424637, + -0.00023572464124299586, + 0.0034506074152886868, + 0.011825443245470524, + 0.00990681815892458, + -0.00560997286811471, + -0.007966306991875172, + 0.0021064754109829664, + 0.0018274359172210097, + -0.028363555669784546, + 0.0028323433361947536, + 0.003067611949518323, + 0.01915707252919674, + 0.0076161399483680725, + -0.004971646703779697, + -0.018340015783905983, + -0.01864641159772873, + -0.029311925172805786, + -0.007112774532288313, + 0.011292897164821625, + -0.02436581254005432, + 0.009914113208651543, + 0.00844778772443533, + -0.010103787295520306, + 0.002411048160865903, + -0.018909037113189697, + -0.004264017101377249, + 0.012518483214080334, + -0.009177302941679955, + -0.0005726695526391268, + -0.011351258493959904, + 0.0016423213528469205, + 0.01167224533855915, + -0.011745196767151356, + 0.003935735207051039, + -0.005077426787465811, + -0.0024675854947417974, + 0.023256948217749596, + -0.020659873262047768, + 0.011176174506545067, + -0.011716015636920929, + 0.010016245767474174, + 0.004096228629350662, + 0.004293197765946388, + 0.023446623235940933, + -0.01068739965558052, + 0.004982589744031429, + -0.011154289357364178, + -0.015582446940243244, + 0.022673336789011955, + 0.021403979510068893, + 0.01626819185912609, + -0.018325425684452057, + 3.6703739169752225e-5, + -0.03306163474917412, + 0.005423946306109428, + -0.001504625310190022, + -0.02309645526111126, + -0.01068739965558052, + -0.0016122289234772325, + 0.002290678210556507, + 0.018340015783905983, + 0.01097920536994934, + -0.004982589744031429, + -0.02436581254005432, + -0.021768737584352493, + 0.021987590938806534, + -0.00954206008464098, + -0.0012201144127175212, + -0.00853532925248146, + 0.002567893825471401, + -0.0174791868776083, + 0.003151506185531616, + 0.005092016886919737, + 0.0098484568297863, + -0.004034219775348902, + -0.007856880314648151, + -0.002810457721352577, + -0.06297176331281662, + -0.013984808698296547, + -0.001310391933657229, + 0.00017006826237775385, + -0.00021771472529508173, + 0.011110518127679825, + 0.011533637531101704, + -0.01696852594614029, + 0.021462339907884598, + 0.0007646232261322439, + 0.017683451995253563, + -0.01337201613932848, + 0.0023618058767169714, + 0.014984244480729103, + -0.024351220577955246, + 0.03320753574371338, + -0.026072878390550613, + 0.01464866753667593, + 0.007094536442309618, + 0.0013158632209524512, + 0.005839770194143057, + 0.012263152748346329, + -0.006215470377355814, + -0.005201444029808044, + -0.004676192998886108, + 0.006390554364770651, + -0.0003472036914899945, + -0.003341180272400379, + -0.002881585620343685, + 0.0016021979972720146, + 0.030289476737380028, + -0.00426766462624073, + 0.005748580675572157, + -0.00020403631788212806, + -2.5390552764292806e-5, + 0.013612755574285984, + 0.010723874904215336, + -0.002980070188641548, + 0.0020517618395388126, + -0.0035545635037124157, + 0.010928139090538025, + -0.002586131915450096, + -0.018179520964622498, + 0.007028880063444376, + -0.012212086468935013, + -0.007572369184345007, + 0.0012055240804329515, + 0.025153689086437225, + -0.023038093000650406, + 0.00906787533313036, + 0.01173060666769743, + 0.004446395672857761, + 0.05287526920437813, + -0.0034852593671530485, + 0.03481247276067734, + -0.015888843685388565, + 0.0017608676571398973, + -0.019434288144111633, + -5.308933759806678e-5, + 0.0009739029337652028, + -0.00220678374171257, + 0.0013368368381634355, + -0.014969654381275177, + -0.01616605930030346, + 0.015480315312743187, + -0.01050502061843872, + -0.002613488584756851, + 0.025751890614628792, + 0.01594720408320427, + -0.017245741561055183, + 0.03711773827672005, + -0.012905126437544823, + -0.01828165352344513, + 0.008148686029016972, + -0.005934607237577438, + 0.028669951483607292, + -0.04633881151676178, + 0.012037002481520176, + 0.009943293407559395, + -0.012832175008952618, + -0.012175610288977623, + 0.01911330223083496, + -0.00396856339648366, + 0.00710547948256135, + 0.009461813606321812, + -0.022994322702288628, + -0.004048809874802828, + -0.008382131345570087, + -0.009140826761722565, + 0.008316474966704845, + -0.034024596214294434, + 0.0015857839025557041, + -0.01545113418251276, + 0.005124845076352358, + -0.004460986237972975, + 0.0037059378810226917, + 0.011212650686502457, + 0.0012055240804329515, + -0.0016623830888420343, + -0.01850050874054432, + -0.005117550026625395, + 0.015553266741335392, + 0.01118346955627203, + 0.0023362727370113134, + 0.010081902146339417, + -0.0012812112690880895, + -0.002651788294315338, + 0.007973602041602135, + -0.010789531283080578, + 0.017085248604416847, + 0.012175610288977623, + 0.029063889756798744, + 0.004340616054832935, + -0.029180612415075302, + -0.00047692065709270537, + -0.0094836987555027, + 0.0364757664501667, + -0.009753620252013206, + -0.005547964014112949, + -0.01667672023177147, + -0.0013842553598806262, + 0.003487083362415433, + 0.0015812244964763522, + -0.01587425358593464, + 0.020586922764778137, + 0.015407363884150982, + -0.00441356748342514, + 0.0013778720749542117, + -0.0032335766591131687, + 0.009315910749137402, + 0.00038117176154628396, + 0.002711973153054714, + -0.013561690226197243, + -0.0008845373522490263, + 0.0006862003356218338, + -0.009841161780059338, + 0.003789832117035985, + -0.006718836259096861, + 0.013948333449661732, + -0.019244614988565445, + 0.0017864006804302335, + -0.017347874119877815, + 0.014626782387495041, + 0.0054312413558363914, + 0.009892228059470654, + 0.0067042456939816475, + 0.002323506399989128, + 0.004683488514274359, + -0.005748580675572157, + 0.0009237487684004009, + -0.009695258922874928, + 0.017026888206601143, + 0.013247998431324959, + 0.004902342800050974, + 0.002752096625044942, + -0.011781672015786171, + -0.004092581104487181, + -0.014626782387495041, + 0.01249659713357687, + -0.002456642920151353, + -0.01101568154990673, + 0.004796563182026148, + -0.031719326972961426, + 0.06822427362203598, + -0.003217162564396858, + 0.007269620429724455, + 0.018923627212643623, + 0.016370324417948723, + -0.010067311115562916, + -0.015582446940243244, + 0.0002489470934960991, + 0.01205888856202364, + -2.7107478217658354e-6, + -0.008068439550697803, + 0.009593126364052296, + 0.006718836259096861, + -0.0031350920908153057, + -0.02302350290119648, + -1.9847946532536298e-5, + 0.02105381153523922, + 0.008141390979290009, + 0.00226696883328259, + 0.029939308762550354, + 0.010278871282935143, + -0.015626218169927597, + -0.025153689086437225, + 0.0035417969338595867, + -0.005558906588703394, + 0.02032429724931717, + -0.01546572521328926, + -0.011650359258055687, + 0.02516827918589115, + 0.018077390268445015, + 0.009600421413779259, + -0.015742940828204155, + -0.00988493300974369, + -0.0016979469219222665, + 0.017610499635338783, + 0.0069595761597156525, + -0.0008453258778899908, + 0.01930297538638115, + -0.00014168555208016187, + -0.000620999897364527, + 0.012956191785633564, + -0.001595814828760922, + 0.03408295661211014, + 0.02280464954674244, + -0.012292332947254181, + 0.006138871423900127, + 0.01667672023177147, + -0.005121197551488876, + -0.005201444029808044, + 0.0103810029104352, + -0.0076817963272333145, + -0.029311925172805786, + -0.0036019820254296064, + -0.007827699184417725, + 0.013379311189055443, + 0.004552175756543875, + 0.007521302904933691, + -0.004067047964781523, + -0.007193021010607481, + -0.002509532729163766, + -0.012686271220445633, + 0.002153893932700157, + -0.00987034197896719, + -0.022600384429097176, + -0.001976986415684223, + 0.004479223862290382, + 0.012999963015317917, + -0.008666642010211945, + -0.0142109589651227, + 0.0021848983597010374, + -0.014254729263484478, + -0.005879893433302641, + 0.010716579854488373, + -0.025693530216813087, + -0.014546535909175873, + 0.013379311189055443, + -0.015611628070473671, + 0.030231114476919174, + 0.007061708252876997, + 0.006102395709604025, + 0.01616605930030346, + 0.006551047787070274, + -0.006996051874011755, + -0.015699170529842377, + -0.002843285910785198, + -0.003848193446174264, + -0.0036019820254296064, + -0.008287293836474419, + 0.003895611735060811, + -0.031690146774053574, + -0.020732825621962547, + -0.010738465934991837, + -0.0021648367401212454, + -0.0024730570148676634, + -0.0018310834420844913, + 0.004048809874802828, + 0.006149813998490572, + -0.013145865872502327, + 0.018442146480083466, + 0.004614184610545635, + 0.0023271539248526096, + 0.0033521228469908237, + -0.013568985275924206, + -0.0026335502043366432, + 0.002779453294351697, + -0.0010979205835610628, + 0.024832701310515404, + 0.017858535051345825, + -0.012846765108406544, + -0.0024055768735706806, + -0.004081638064235449, + -0.013364721089601517, + 0.009921408258378506, + -0.010132967494428158, + -0.03075636550784111, + -0.0061133382841944695, + 0.006872034166008234, + -0.008309179916977882, + 0.002442052587866783, + 0.0005133964004926383, + -0.008768774569034576, + 0.005146730691194534, + -0.009979769587516785, + -0.019098710268735886, + -0.003698642598465085, + 0.021068401634693146, + -0.00952017493546009, + -0.0017617795383557677, + 0.006160757038742304, + 0.011358553543686867, + 0.032740648835897446, + 0.00990681815892458, + 0.004544880241155624, + -0.01721656136214733, + 0.012277742847800255, + -0.0055625541135668755, + 0.004869514610618353, + -0.008790659718215466, + 0.021827097982168198, + -0.018442146480083466, + 0.029326515272259712, + -0.014013989828526974, + 0.012438235804438591, + 0.028757493942975998, + 0.007856880314648151, + -0.001241999794729054, + 0.014371451921761036, + -0.023548753932118416, + 0.030260296538472176, + -0.006164404563605785, + 0.04619291052222252, + -0.03160260245203972, + -0.014057760126888752, + -0.008856316097080708, + -0.009636897593736649, + 0.015480315312743187, + -0.01008919719606638, + 0.03233211860060692, + -0.03513345867395401, + -0.004555823281407356, + 0.00037456053541973233, + -0.0017435416812077165, + -0.008250818587839603, + 0.01733328402042389, + -0.011154289357364178, + 0.013094800524413586, + 0.017274923622608185, + 0.02236693911254406, + 0.01886526681482792, + -0.00793712679296732, + -0.013612755574285984, + -0.011993232183158398, + -0.0033028805628418922, + -0.00955665111541748, + 0.01597638614475727, + -0.0020718234591186047, + 0.0072805630043148994, + 0.014232844114303589, + -0.008134095929563046, + 0.016589177772402763, + 0.002449347637593746, + 0.004610536620020866, + 0.01831083372235298, + -0.0070580607280135155, + -0.002350863069295883, + -0.0034524311777204275, + 0.023840561509132385, + -0.012029707431793213, + 0.00776204327121377, + 0.008287293836474419, + 0.0011936693917959929, + -0.0019532772712409496, + 0.016297372058033943, + -0.01755213923752308, + -0.007094536442309618, + -0.013627346605062485, + 0.024453353136777878, + 0.009301320649683475, + 0.013510623946785927, + -0.014437108300626278, + -0.01852968893945217, + 0.009607716463506222, + 0.007521302904933691, + 0.017683451995253563, + -0.00988493300974369, + -0.0013724006712436676, + -0.009170007891952991, + -0.013926447369158268, + -0.018879856914281845, + -0.0025788366328924894, + -0.011329373344779015, + -0.021316437050700188, + -0.0016268191393464804, + 0.021243486553430557, + -0.012970782816410065, + -0.012598729692399502, + -0.02815929241478443, + 0.00915541686117649, + -0.015028015710413456, + 0.006354078650474548, + 0.01397021859884262, + 0.007298800628632307, + -0.0036603431217372417, + -0.0076817963272333145, + 0.02173955738544464, + -0.00791524164378643, + 0.020382657647132874, + 0.009512879885733128, + 0.011030271649360657, + 0.010556086897850037, + -0.003964915871620178, + 0.003855488495901227, + -0.004738201852887869, + 0.010723874904215336, + -0.006773549597710371, + 0.018981989473104477, + 0.01937592774629593, + -0.0009884932078421116, + 0.002724739722907543, + 0.005544316489249468, + -0.006813673302531242, + -0.008309179916977882, + -0.020674463361501694, + -0.012730042450129986, + 0.0067297788336873055, + -0.00468713603913784, + -0.006445267703384161, + 0.0008024668786674738, + 0.011022976599633694, + -2.4934606699389406e-5, + -0.016034746542572975, + 0.0014800041681155562, + -0.02119971439242363, + -0.0005836122436448932, + 0.03320753574371338, + -0.014612192288041115, + -0.0076234349980950356, + 0.01265709102153778, + -0.012248562648892403, + -0.025401724502444267, + -0.006303012371063232, + -0.004774677567183971, + -0.01238717045634985, + -0.01136584859341383, + 0.0075504835695028305, + 0.015480315312743187, + -0.018909037113189697, + 0.003917497117072344, + 0.006649532355368137, + -0.008272703737020493, + 0.024394992738962173, + 0.0028524049557745457, + -0.0037934796418994665, + 0.0034962021745741367, + -0.005336404778063297, + -0.01253307331353426, + -0.0016423213528469205, + -0.001911330153234303, + -0.012547663412988186, + -0.003924792632460594, + 0.016837213188409805, + -0.010402888059616089, + 0.01380972471088171, + -0.014415223151445389, + 0.0006985109066590667, + -0.02764863148331642, + 0.010658218525350094, + 0.019346745684742928, + 0.0009150857804343104, + 0.02502237632870674, + 5.831135695189005e-6, + 0.0056938668712973595, + -0.0012821231503039598, + -0.033324260264635086, + 0.011584702879190445, + 0.017960667610168457, + 0.0016696782549843192, + -0.008746888488531113, + 0.009170007891952991, + 0.0059893205761909485, + 0.0005161321023479104, + -0.015334412455558777, + -0.004139999393373728, + -0.015057195909321308, + 0.005861655808985233, + 0.008659346960484982, + 0.02188546024262905, + 0.0009857575641945004, + -0.009600421413779259, + 0.0189673975110054, + 0.0102132149040699, + -0.005102959461510181, + 0.010337231680750847, + -0.016574587672948837, + -0.005205092020332813, + 0.0013085680548101664, + 0.00925025437027216, + 0.021287256851792336, + -0.00471631670370698, + 0.014429813250899315, + 0.0032043959945440292, + 0.011745196767151356, + 0.015772121027112007, + 0.00915541686117649, + 0.026568947359919548, + 0.005526078399270773, + 0.009505584836006165, + 0.003782537067309022, + -0.008841725997626781, + -0.013911857269704342, + 0.03215703368186951, + 0.0013651055051013827, + -0.018763134256005287, + -0.012927011586725712, + -0.0107457609847188, + -0.008287293836474419, + -0.0036676384042948484, + 0.00295453704893589, + -0.015203099697828293, + 0.0001750836818246171, + -0.00019320756837259978, + 0.00015285625704564154, + -0.009709849022328854, + -0.005770466290414333, + -0.0020444667898118496, + 0.020703645423054695, + -0.011825443245470524, + -0.03816824033856392, + -0.0203972477465868, + -0.003711409168317914, + -0.002356334589421749, + -0.001093361061066389, + 0.021724965423345566, + 0.011956756003201008, + -0.009979769587516785, + 0.002161189215257764, + 0.008134095929563046, + 0.02035347744822502, + -0.004555823281407356, + -0.011081337928771973, + -0.004424510523676872, + 0.005376528017222881, + -0.010329936631023884, + 0.005329109262675047, + 0.026641899719834328, + -0.014597601257264614, + 0.007718272041529417, + 0.00012869105557911098, + -0.021797917783260345, + 0.009658782742917538, + -0.0069340430200099945, + -0.004650660324841738, + -0.009950589388608932, + 0.0029581845737993717, + -0.021126763895154, + 0.011643064208328724, + -0.009746324270963669, + 0.018631821498274803, + -0.010723874904215336, + -0.0025952507276088, + 0.02648140676319599, + -0.004154589958488941, + 0.0013167751021683216, + 0.0022049599792808294, + 0.01750836707651615, + 0.009469108656048775, + 0.023869741708040237, + 0.024788931012153625, + 0.010351822711527348, + -0.014531944878399372, + 0.021608244627714157, + -0.002586131915450096, + 0.009060580283403397, + -0.012394465506076813, + 0.0020845900289714336, + 0.021870870143175125, + -0.008907382376492023, + 0.014838341623544693, + 0.01689557544887066, + 0.0003221266088075936, + -0.005124845076352358, + -0.0063759637996554375, + 0.02363629639148712, + -0.017274923622608185, + -0.006098748184740543, + -0.017304103821516037, + 0.0029600083362311125, + 0.0073790475726127625, + 0.02090790867805481, + -0.016136879101395607, + -0.0035308541264384985, + 0.00743376137688756, + -0.013138570822775364, + -0.0010851540137082338, + 0.016224421560764313, + -0.0060476819053292274, + -0.013817020691931248, + -0.01187650952488184, + 0.012095363810658455, + -0.005226977169513702, + 0.02273169718682766, + -0.031077353283762932, + 0.014619487337768078, + -0.018223293125629425, + 0.004792915657162666, + -0.029020119458436966, + 0.03352852538228035, + 0.010847892612218857, + -0.008323770016431808, + 0.005391118116676807, + 0.0103810029104352, + -0.018661001697182655, + -0.028611591085791588, + 0.0007441056077368557, + -0.022571204230189323, + -0.012576844543218613, + 0.025241229683160782, + -0.007783928420394659, + 0.017391644418239594, + 0.01163576915860176, + -0.005865303333848715, + -0.00849885307252407, + -0.0038591360207647085, + -0.011519046500325203, + -0.002396457828581333, + 0.005803294479846954, + 0.0058908360078930855, + 0.0069267479702830315, + -0.011664950288832188, + -0.0027210921980440617, + -0.01546572521328926, + -0.014845636673271656, + -0.012343399226665497, + 0.01755213923752308, + -0.02217726595699787, + -0.015582446940243244, + 0.0017006825655698776, + -0.004008686635643244, + 0.004110818728804588, + -0.010767646133899689, + -0.0160493366420269, + -0.0067699020728468895, + 0.006930395495146513, + -0.000540297303814441, + -0.010672809556126595, + 0.030406199395656586, + 0.025051556527614594, + -0.0029581845737993717, + -0.014517354778945446, + 0.013539804145693779, + -0.0028943519573658705, + 0.01136584859341383, + 0.030581282451748848, + 0.006073215045034885, + -0.0005238832090981305, + 0.023286128416657448, + -0.017450006678700447, + -0.0008152333903126419, + 0.0018055504187941551, + -0.0021393036004155874, + 0.0020189336501061916, + -0.008039258420467377, + -0.013109390623867512, + -0.02725469321012497, + 0.034637387841939926, + -0.022118903696537018, + 0.010490430518984795, + -4.6791567001491785e-5, + -0.006138871423900127, + 0.016545407474040985, + 0.01623901166021824, + 0.012708157300949097, + -0.0023417442571371794, + -0.0010286165634170175, + 0.0026773212011903524, + -0.000775110034737736, + 0.03659248724579811, + 0.014247434213757515, + 0.006149813998490572, + 0.004037867300212383, + -0.016107698902487755, + 0.006182642187923193, + -0.01940510794520378, + -0.0203972477465868, + 0.01068739965558052, + -0.007951716892421246, + -0.006879329681396484, + 0.013765954412519932, + 0.008870906196534634, + 0.003979505971074104, + 0.002770334482192993, + 0.015480315312743187, + -0.03805151954293251, + 0.0035180875565856695, + 0.006149813998490572, + 0.03119407594203949, + 0.006748016923666, + -0.005256157834082842, + -0.0011954932706430554, + 0.006116985809057951, + 0.0016341143054887652, + -0.017595909535884857, + -0.006230060942471027, + 0.011482571251690388, + 0.012854060158133507, + -0.03180686756968498, + 0.030552102252840996, + 0.003957620821893215, + 0.008768774569034576, + -0.012343399226665497, + 0.0023472155444324017, + 0.019434288144111633, + 0.004351559095084667, + -0.0013833434786647558, + 0.01879231445491314, + 0.020513970404863358, + 0.018194112926721573, + 0.00231256359256804, + 0.027663221582770348, + -0.040006618946790695, + 0.011234535835683346, + 0.009490994736552238, + 0.004869514610618353, + -0.01017673872411251, + 0.007886060513556004, + -0.014050465077161789, + 0.007856880314648151, + 0.01565539836883545, + 0.0030949688516557217, + -0.01032264158129692, + -0.029457828029990196, + 0.00543488934636116, + 0.005795999430119991, + 0.007951716892421246, + 0.020703645423054695, + -0.019682323560118675, + 0.002750272862613201, + 0.01911330223083496, + 0.00014248346269596368, + 0.024730568751692772, + -0.003749708877876401, + 0.006365021225064993, + 0.0009766386356204748, + -0.01871936395764351, + -0.01930297538638115, + 0.010337231680750847, + 0.0031296208035200834, + -0.0003595142625272274, + -0.0020134623628109694, + -0.0023745724465698004, + -0.012102658860385418, + 0.0009994360152631998, + -0.019215432927012444, + -0.008316474966704845, + -0.003800774924457073, + -0.007455646526068449, + -0.032565563917160034, + -0.01351791899651289, + 0.00841131154447794, + -0.02287760004401207, + 0.010118377394974232, + -0.010111082345247269, + -0.027152560651302338, + -0.012817583978176117, + -0.00044705611071549356, + 0.02268792688846588, + 0.00990681815892458, + -0.0016021979972720146, + 0.027809124439954758, + -0.007951716892421246, + 0.018150340765714645, + -0.020382657647132874, + -0.015699170529842377, + 0.008528034202754498, + 0.007317038718611002, + 0.01085518766194582, + -0.0030913210939615965, + 0.00844778772443533, + -0.026831572875380516, + -0.014291205443441868, + -0.020732825621962547, + 0.018909037113189697, + 0.0064416201785206795, + -0.01831083372235298, + 0.004986237268894911, + 0.009279434569180012, + 0.01167224533855915, + 0.003757003927603364, + 0.009016809053719044, + 0.004555823281407356, + 0.005030008032917976, + -0.0064999815076589584, + -0.008279998786747456, + -0.006886624731123447, + 0.01173060666769743, + 0.008404016494750977, + -0.0022304931189864874, + -0.009403452277183533, + 0.0019022112246602774, + 0.021476931869983673, + 0.0036621668841689825, + 0.012131839990615845, + 0.012948896735906601, + 0.008812544867396355, + -0.013744068332016468, + 0.0052816909737885, + 0.012153725139796734, + 0.0033667131792753935, + 0.007499417755752802, + -0.0031606252305209637, + 0.01930297538638115, + 0.01772722229361534, + -0.0016404975904151797, + -0.02181250788271427, + -0.005201444029808044, + 0.008834430947899818, + -0.02166660502552986, + 0.006558342836797237, + -0.0021976649295538664, + -0.011285602115094662, + 0.010439364239573479, + -9.609084372641519e-5, + -0.009841161780059338, + 0.004694431088864803, + 0.01631196215748787, + 0.0034378410782665014, + -0.011949460953474045, + 0.004657955374568701, + -0.0017006825655698776, + -0.014524649828672409, + -0.014013989828526974, + 0.015086377039551735, + -0.019346745684742928, + 0.0036421052645891905, + -0.0009967002552002668, + -0.005194148980081081, + 0.0009574888390488923, + -0.005712104961276054, + 0.029939308762550354, + -0.011971346102654934, + -0.019200842827558517, + -0.0033995413687080145, + -0.0068683866411447525, + 0.020893318578600883, + -0.016370324417948723, + -0.005803294479846954, + 0.0026900877710431814, + 0.013466852717101574, + -0.004530290141701698, + 0.001457206904888153, + 0.002192193642258644, + -0.016647540032863617, + -3.8214064261410385e-5, + 0.0015146562363952398, + 0.004282254725694656, + 0.028903396800160408, + -0.008476967923343182, + 0.0027229159604758024, + 0.015363592654466629, + -0.014655962586402893, + -0.007174783386290073, + -0.005197796504944563, + -0.00820704735815525, + -0.010986500419676304, + -1.4355208804772701e-5, + -0.024818111211061478, + 0.009031400084495544, + -0.01874854415655136, + 0.015363592654466629, + -0.0019350394140928984, + 0.008455082774162292, + 0.009498289786279202, + -0.030231114476919174, + -0.03046455979347229, + -0.0038080699741840363, + 0.0050993119366467, + -0.001070563681423664, + -0.018558869138360023, + -0.028319785371422768, + -0.004964351654052734, + -0.02163742482662201, + -0.0009711672901175916, + -0.00635772617533803, + 0.012365284375846386, + 0.001956924796104431, + 0.0015265108086168766, + 0.0103810029104352, + 0.013656526803970337, + 0.01587425358593464, + 0.0020061670802533627, + 0.01835460588335991, + -0.0053655849769711494, + 0.004311435390263796, + -0.00477103004232049, + -0.0007810373208485544, + -0.023227768018841743, + -0.01995953917503357, + 0.02324235811829567, + -0.02360711619257927, + 0.004730906803160906, + -0.008272703737020493, + 0.0037934796418994665, + -0.03662166744470596, + 0.008199752308428288, + -0.02546008490025997, + -0.033761970698833466, + 0.006842853967100382, + 0.01205888856202364, + -0.02222103625535965, + 0.0032591097988188267, + 0.04470469802618027, + -0.007973602041602135, + 0.002706501865759492, + 0.03195277228951454, + 0.002146598882973194, + 0.002055409364402294, + -0.004636069759726524, + 0.0020207574125379324, + -0.017450006678700447, + 0.029049299657344818, + 0.00226696883328259, + -0.019755274057388306, + -0.013240703381597996, + 0.003118677996098995, + 0.01930297538638115, + -0.0284219179302454, + -0.010096492245793343, + 0.01151175145059824, + -0.024715978652238846, + 0.008659346960484982, + -0.011373143643140793, + -0.00922836922109127, + -0.0004887752584181726, + -0.01005272101610899, + 0.01101568154990673, + 0.011117813177406788, + 0.009987064637243748, + -0.007112774532288313, + 0.00808302965015173, + 0.009746324270963669, + 0.005124845076352358, + 0.00906787533313036, + 0.00641243951395154, + 0.01765426993370056, + 0.0006588435498997569, + 0.01648704707622528, + -0.0013979336945340037, + -0.01530523132532835, + -0.005898131523281336, + 0.02567894011735916, + -0.004307787865400314, + 0.00698510929942131, + -0.007601549848914146, + -0.035075098276138306, + -0.0032262816093862057, + 0.009075170382857323, + 0.011978641152381897, + -0.014925883151590824, + 0.012212086468935013, + 0.024570075795054436, + 0.013795134611427784, + -0.017012298107147217, + -0.021652014926075935, + 0.015494905412197113, + -0.006025796756148338, + 0.0002701486519072205, + 0.013962923549115658, + 0.008549919351935387, + 0.020703645423054695, + 0.021316437050700188, + 0.026992067694664, + -0.007667206227779388, + -0.018777724355459213, + -0.001995224505662918, + 0.024745158851146698, + 0.002192193642258644, + -0.0070981839671730995, + -0.004227541387081146, + -0.021403979510068893, + -0.020995451137423515, + 0.00047783253830857575, + -0.011205355636775494, + -0.00976091530174017, + -0.0064999815076589584, + -0.02246907167136669, + 0.013357426039874554, + -0.0019751626532524824, + 0.026510586962103844, + 0.023183997720479965, + -0.0028597000055015087, + -0.001237440388649702, + -0.021112173795700073, + -0.004333321005105972, + -0.0038591360207647085, + 0.0008517091628164053, + 0.0034433123655617237, + -0.002494942396879196, + -0.01772722229361534, + -0.00877606961876154, + 0.007966306991875172, + -0.015436544083058834, + 0.014035874977707863, + 0.03268228471279144, + -0.013109390623867512, + -0.02243989147245884, + 0.016574587672948837, + 0.005369232967495918, + -0.0005133964004926383, + -0.02232316881418228, + 1.8579843526822515e-5, + -0.0025843079201877117, + 0.004563118331134319, + -0.011686835438013077, + 0.0013523390516638756, + 0.004676192998886108, + -0.01486752275377512, + -0.007368104998022318, + 0.008294588886201382, + 0.019755274057388306, + 0.017741812393069267, + 0.017099838703870773, + -0.015261461026966572, + 0.012088068760931492, + 0.014692438766360283, + 0.012153725139796734, + -0.0017517487285658717, + 0.002711973153054714, + -0.021039221435785294, + -0.005555259063839912, + 0.0003565506194718182, + 0.012627909891307354, + 0.005329109262675047, + 0.019419698044657707, + 0.0055297259241342545, + -0.015203099697828293, + -0.007218554150313139, + -0.006288422271609306, + -0.02152070216834545, + -0.0038846691604703665, + 0.015597037971019745, + 0.028436508029699326, + 0.00933779589831829, + -0.022819239646196365, + -0.007050765678286552, + 0.01653081737458706, + -0.0006638589547947049, + -0.012365284375846386, + 0.004238483961671591, + -0.01867559179663658, + -0.014159892685711384, + -0.014845636673271656, + -0.011263716965913773, + -0.00020004677935503423, + 0.0024457001127302647, + -0.001353250932879746, + -0.0054640695452690125, + -0.005467717535793781, + -0.009768210351467133, + -0.00844778772443533, + -0.0033028805628418922, + -0.00743376137688756, + 0.005092016886919737, + -0.007167487870901823, + 0.015786711126565933, + -0.011664950288832188, + -0.004811153747141361, + 0.034608207643032074, + -0.001845673774369061, + -0.013802429661154747, + 0.004949761554598808, + 0.0171436108648777, + 0.0014736209996044636, + 0.0064087919890880585, + -0.0011152465594932437, + -0.011446095071732998, + -0.016443274915218353, + 0.0408528596162796, + 0.008943857625126839, + -0.0053327567875385284, + -0.002496766159310937, + 0.008148686029016972, + 0.004096228629350662, + -0.0021776033099740744, + -0.006569285411387682, + -0.0023034445475786924, + 0.00855721440166235, + -0.03904366120696068, + 0.008309179916977882, + -0.0226149745285511, + 0.034024596214294434, + -0.012635204941034317, + -0.010643628425896168, + -0.00757966423407197, + 0.008010078221559525, + -0.01835460588335991, + 0.02071823552250862, + 0.011570112779736519, + -0.02195841073989868, + 0.008010078221559525, + -0.0032554620411247015, + -0.022702516987919807, + 0.0174791868776083, + 0.005376528017222881, + 0.019857406616210938, + 0.023665476590394974, + 0.002024404937401414, + 0.00386278354562819, + -0.014583011157810688, + -0.011540932580828667, + -0.013277178630232811, + 0.017756402492523193, + -0.0004069327551405877, + 0.014590306207537651, + -0.01648704707622528, + -0.0038372506387531757, + 0.01286135520786047, + 0.00016015140863601118, + 0.0026426692493259907, + 0.013685707934200764, + 0.0067954352125525475, + 0.02302350290119648, + 0.0038518409710377455, + 0.007776633370667696, + -0.011256420984864235, + 0.0026864402461797, + -0.0028998234774917364, + 0.0019861054606735706, + 0.006303012371063232, + -0.025124507024884224, + 0.008491558022797108, + -0.007980898022651672, + 0.004253074526786804, + 0.027225511148571968, + 0.020513970404863358, + 0.010461249388754368, + 0.0028961757197976112, + -0.00035381491761654615, + -0.014342271722853184, + -0.026729442179203033, + -0.02079118601977825, + -0.007240439765155315, + -0.01886526681482792, + 0.005591734778136015, + -0.03218621760606766, + 0.015130148269236088, + -0.02378219924867153, + -0.0006743457051925361, + -0.01707065850496292, + -0.02079118601977825, + 0.027444366365671158, + 0.0031588012352585793, + 0.0052671004086732864, + -0.01103756669908762, + 0.019711503759026527, + 0.017274923622608185, + 0.0025587750133126974, + -0.016209829598665237, + -0.00023572464124299586, + -0.005391118116676807, + 0.005314519163221121, + -0.005456774495542049, + 0.009286729618906975, + 0.0022432596888393164, + -0.01816493086516857, + 0.00871770828962326, + 0.008703118190169334, + -0.0074592940509319305, + 0.00033512109075672925, + 0.015115557238459587, + -0.010643628425896168, + -0.001851145178079605, + -0.023111045360565186, + 0.01648704707622528, + 0.014707028865814209, + -0.006241003517061472, + -0.0019751626532524824, + 0.009133531711995602, + 0.029253564774990082, + -0.0065328096970915794, + -0.00036065414315089583, + 0.005588087253272533, + 0.017668861895799637, + -0.011752491816878319, + 0.009257549419999123, + 0.021170534193515778, + -0.004986237268894911, + 0.0003891508386004716, + 0.0014581187861040235, + -0.029749635607004166, + 0.022308578714728355, + 0.014167187735438347, + 0.01864641159772873, + -0.026072878390550613, + 0.0015009777853265405, + -0.023067275062203407, + 0.004172827582806349, + 0.02287760004401207, + 0.0015128323575481772, + -0.00787876546382904, + 0.017391644418239594, + -0.01083330251276493, + 0.01696852594614029, + 0.010599857196211815, + 0.0027338587678968906, + -0.0022760878782719374, + -0.0035983342677354813, + -0.010461249388754368, + -0.030989810824394226, + -0.03306163474917412, + 0.007594254333525896, + 0.009345090948045254, + -0.016297372058033943, + 0.001605845638550818, + -0.018369195982813835, + -0.01787312515079975, + -0.0038846691604703665, + -0.0038919642101973295, + 0.008929267525672913, + -0.005033655557781458, + -0.00626653665676713, + 0.0038992594927549362, + -0.0010997443459928036, + 0.007422818336635828, + 0.017304103821516037, + -0.016764262691140175, + -0.0027083256281912327, + 0.0075504835695028305, + 0.0019496297463774681, + 0.03218621760606766, + -0.00296912738122046, + -0.011424209922552109, + -0.012131839990615845, + -0.012467416934669018, + 0.017683451995253563, + 0.004577708430588245, + 0.0017763698706403375, + -0.0025569512508809566, + 0.0160493366420269, + 0.02947241999208927, + 0.004723611753433943, + 0.003822660306468606, + -0.006062272470444441, + 0.010774941183626652, + -0.024132367223501205, + 0.01050502061843872, + 0.014984244480729103, + -0.019171662628650665, + 0.006073215045034885, + -0.011212650686502457, + 0.04108630120754242, + 0.0009077906142920256, + 0.020601512864232063, + -0.002560598775744438, + -0.005934607237577438, + -0.023519573733210564, + 0.005066483747214079, + 0.008031963370740414, + 0.003186158137395978, + -0.02553303726017475, + 5.1351038564462215e-5, + 0.00892197247594595, + -0.015436544083058834, + -0.012336104176938534, + -0.01806280016899109, + 0.002325330162420869, + -0.014750800095498562, + 0.015436544083058834, + -0.005008122883737087, + 0.005941902287304401, + -0.00824352353811264, + 0.03632986173033714, + -0.02528500184416771, + 0.005821532104164362, + -0.001504625310190022, + 0.0030511978548020124, + 0.01251118816435337, + 0.0029271801467984915, + -0.011146994307637215, + 0.0007048941915854812, + -0.012883240357041359, + -0.009111646562814713, + -0.00477103004232049, + -0.001355986576527357, + -0.005405708681792021, + -0.018442146480083466, + -0.005066483747214079, + 0.008374836295843124, + -0.0021046516485512257, + 0.004814801272004843, + -0.0009675197070464492, + -0.023227768018841743, + -0.020265934988856316, + -0.004304140340536833, + -0.008010078221559525, + -0.013204227201640606, + 0.006616704165935516, + -0.008418606594204903, + 0.00041172021883539855, + -3.6703739169752225e-5, + 0.016209829598665237, + 0.0028651715256273746, + -0.00739728519693017, + -0.015990976244211197, + -0.006864739116281271, + -0.0032664048485457897, + 0.01397021859884262, + -0.004486519377678633, + -0.015042605809867382, + 0.00853532925248146, + 0.0237092487514019, + 0.011438800022006035, + -0.016078516840934753, + 0.013568985275924206, + 0.0008717708406038582, + 0.010738465934991837, + 0.022235626354813576, + 0.011438800022006035, + -0.023913512006402016, + 0.03443312272429466, + -0.012635204941034317, + 0.02236693911254406, + -0.014393337070941925, + 0.0058507127687335014, + -0.016793442890048027, + 0.014955064281821251, + -0.006036739330738783, + 0.0031715678051114082, + -0.004023277200758457, + 0.015611628070473671, + 0.005799646954983473, + -0.00871770828962326, + -0.005898131523281336, + 0.012584139592945576, + -0.01801902800798416, + -0.006912157870829105, + -0.001017673872411251, + -0.009126236662268639, + 0.010344527661800385, + -0.0034670215100049973, + 0.02980799600481987, + 0.012037002481520176, + 0.01816493086516857, + -0.007929831743240356, + 0.0038117174990475178, + -0.018471328541636467, + -0.009111646562814713, + -0.015888843685388565, + 0.005055541172623634, + 0.009257549419999123, + -0.02776535414159298, + -0.005259805358946323, + -0.026714852079749107, + 0.0207620058208704, + 0.009177302941679955, + 0.0034232507459819317, + 0.011949460953474045, + 0.024497125297784805, + -0.00039507815381512046, + -0.003494378412142396, + -0.0033776559866964817, + -0.018806904554367065, + -0.00806114450097084, + 0.020513970404863358, + -0.009410747326910496, + 0.005383823066949844, + -0.0052999285981059074, + -0.02312563546001911, + 0.0028068101964890957, + -0.002451171400025487, + -0.006255594082176685, + 0.025708120316267014, + -0.0037533564027398825, + -0.032448843121528625, + 0.015363592654466629, + 0.01014026254415512, + -0.002423814730718732, + -0.017347874119877815, + 0.003277347655966878, + -0.012890535406768322, + 0.01634114235639572, + -0.024818111211061478, + -0.010169443674385548, + -0.002062704646959901, + 0.002981893951073289, + -0.01151175145059824, + -0.0021958411671221256, + 0.0018365548457950354, + 0.013306359760463238, + -0.008856316097080708, + 0.03889775648713112, + -0.01769804209470749, + 0.012905126437544823, + 0.00017177805420942605, + 0.00674072140827775, + -0.0006779932882636786, + -0.005350994877517223, + -0.01364193670451641, + -0.00617534713819623, + 0.005653743632137775, + 0.00429684529080987, + -0.010373707860708237, + 0.00922836922109127, + 0.007462941575795412, + -0.02287760004401207, + 0.01736246421933174, + -0.0005165880429558456, + 0.0004397609445732087, + 0.001231968984939158, + -0.004993532318621874, + 0.01692475564777851, + 0.00776204327121377, + 0.01838378608226776, + -0.007973602041602135, + -0.01835460588335991, + 0.005030008032917976, + 0.006955928634852171, + 0.00817057117819786, + 0.02567894011735916, + -0.011154289357364178, + -0.012117249891161919, + -0.010993795469403267, + -0.007944421842694283, + -0.0017772817518562078, + -0.0010331760859116912, + -0.03761380910873413, + -0.003191629657521844, + 0.006157109513878822, + -0.014247434213757515, + 0.003961268346756697, + -0.0012638852931559086, + 0.010300756432116032, + -0.01911330223083496, + 0.016472455114126205, + 0.0171144288033247, + 0.02144774980843067, + 0.0009333236957900226, + -0.01925920508801937, + -0.0023928103037178516, + -0.009753620252013206, + 0.005974730476737022, + -0.007594254333525896, + -0.007466589566320181, + 0.021593652665615082, + 0.015071786940097809, + 0.0011353081790730357, + -0.011059451848268509, + 0.00806114450097084, + -0.021331027150154114, + 0.007448351476341486, + 0.003133268328383565, + -0.003724175738170743, + -0.0076088448986411095, + 0.0017590437782928348, + -0.0102132149040699, + -0.0008115858072414994, + -0.026831572875380516, + 0.002049938077107072, + -0.004336968529969454, + -0.0077547477558255196, + 0.007638025563210249, + 0.012452826835215092, + 0.0007067179540172219, + -0.017902305349707603, + -0.024030234664678574, + 0.0033265899401158094, + 0.005059188697487116, + 0.04733095318078995, + 0.03676757216453552, + 0.007302448619157076, + -0.0024931186344474554, + -0.0032536382786929607, + -0.027342233806848526, + 0.013437672518193722, + -0.015786711126565933, + -0.017391644418239594, + -0.007820404134690762, + 0.011168879456818104, + -0.0011608412023633718, + 0.0034469598904252052, + 0.012321514077484608, + -0.012044297531247139, + 0.01446628849953413, + -0.002881585620343685, + -0.003355770604684949, + -0.004847629461437464, + 0.00892197247594595, + 0.0014271143591031432, + -0.013138570822775364, + 0.010993795469403267, + 0.005361937452107668, + 0.020411837846040726, + 0.0067954352125525475, + 0.004019629210233688, + -0.012992667965590954, + -0.008528034202754498, + -0.0033320612274110317, + 0.019609371200203896, + -0.00841131154447794, + -0.02079118601977825, + 0.00015923951286822557, + -0.0005945549928583205, + 0.02907848171889782, + -0.00581788457930088, + 0.009075170382857323, + 0.005442184396088123, + 4.445483864401467e-5, + -0.019434288144111633, + -0.01151175145059824, + 0.011613884009420872, + -0.010475840419530869, + -0.01655999757349491, + 0.015597037971019745, + 0.009717144072055817, + 0.0004196992958895862, + 0.011212650686502457, + -0.010468544438481331, + -0.008637461811304092, + 0.00972443912178278, + -0.00933779589831829, + 0.010658218525350094, + -0.012875945307314396, + 0.03338262066245079, + 0.004884105175733566, + -0.029049299657344818, + -0.012598729692399502, + -0.012073478661477566, + -0.011329373344779015, + 0.00882713496685028, + 0.003085849806666374, + 0.03980235755443573, + 0.008192457258701324, + 0.030143573880195618, + 0.005051893647760153, + -0.000618720194324851, + 0.004964351654052734, + 0.0059163691475987434, + 0.021097583696246147, + -0.009563946165144444, + 0.00047965632984414697, + 0.002487647347152233, + -0.01587425358593464, + -0.007127364631742239, + 0.0005758611368946731, + -0.036942657083272934, + -0.015713760629296303, + 0.01696852594614029, + 0.013284473679959774, + -0.008476967923343182, + 0.02327153831720352, + -0.006536457221955061, + -0.020017899572849274, + 0.005226977169513702, + -0.01364193670451641, + 0.0036311624571681023, + -0.002168484264984727, + -0.011767081916332245, + -0.004005039110779762, + 0.014568421058356762, + -0.015509495511651039, + 0.010570676997303963, + 0.026072878390550613, + -0.0001291470107389614, + -0.009775505401194096, + 0.02068905532360077, + -0.0016432332340627909, + 0.014035874977707863, + -0.010220509953796864, + 0.026612719520926476, + -0.012978077866137028, + 0.003570977598428726, + 0.008506149053573608, + -0.03396623209118843, + 0.022863009944558144, + 0.010986500419676304, + 0.008476967923343182, + 0.026919115334749222, + -0.01882149465382099, + 0.029997671023011208, + 0.004501109477132559, + -0.003224457846954465, + -0.0164140947163105, + 0.016793442890048027, + 0.00037000104202888906, + 0.0011188940843567252, + 0.01806280016899109, + 0.015057195909321308, + 0.002835990861058235, + 0.010607153177261353, + 0.017377054318785667, + -0.0067370738834142685, + 0.01959478110074997, + -0.004012334160506725, + 0.0036603431217372417, + 0.03370360657572746, + -0.015217689797282219, + -0.002423814730718732, + 0.017683451995253563, + -0.0008594602695666254, + -0.002494942396879196, + 0.016866393387317657, + 0.003764298977330327, + -0.007791223470121622, + 0.009206483140587807, + 0.00444274814799428, + -0.009235664270818233, + -0.008462377823889256, + 0.00806114450097084, + 0.008097619749605656, + 0.037701353430747986, + -0.013182342052459717, + 0.015713760629296303, + -0.012627909891307354, + -0.014969654381275177, + 0.017595909535884857, + -0.003426898270845413, + -0.02163742482662201, + -0.009892228059470654, + -0.00820704735815525, + 0.004840333946049213, + 0.01721656136214733, + 0.006138871423900127, + 0.003558211028575897, + -0.00773286260664463, + 0.030873088166117668, + 0.0009939646115526557, + -0.02419072762131691, + 0.0032700523734092712, + 0.003494378412142396, + 0.01882149465382099, + 0.02528500184416771, + 0.011898394674062729, + -0.010928139090538025, + -0.013605460524559021, + -0.00904599018394947, + 0.009184597991406918, + -0.0003734206547960639, + 0.0008020109380595386, + -0.006941338535398245, + -0.0069595761597156525, + -0.001792783965356648, + -0.008382131345570087, + -0.016866393387317657, + -0.0028542287182062864, + -0.014940474182367325, + -0.016545407474040985, + 0.0014863874530419707, + 0.030085211619734764, + 0.014998835511505604, + 0.007349866908043623, + 0.00623735599219799, + 0.005208739545196295, + 0.002639021724462509, + 0.010388297960162163, + 0.0019131539156660438, + 0.005314519163221121, + 0.008309179916977882, + 0.022746287286281586, + 0.0009036870906129479, + 0.007959011942148209, + -0.010599857196211815, + -0.002934475429356098, + 0.008600985631346703, + 0.004289550241082907, + 0.022454481571912766, + -0.037234462797641754, + -0.0008708589011803269, + -0.013087504543364048, + -0.003724175738170743, + 0.005887188483029604, + 4.7959932999219745e-5 + ], + "e3dd77e5-4225-4b6f-921e-9db7edc76117": [ + -0.023242434486746788, + -0.007592246402055025, + -0.004935665987432003, + 0.015523180365562439, + -0.036775827407836914, + -0.021577220410108566, + -0.006674967706203461, + 0.016101771965622902, + -0.037622544914484024, + 0.014401278458535671, + -0.006830199621617794, + 0.025458017364144325, + -0.018811272457242012, + -0.04352135583758354, + -0.010075955651700497, + 9.419472917215899e-6, + -0.05720997601747513, + 0.031526170670986176, + -0.007930934429168701, + 0.009426804259419441, + 0.06931805610656738, + -0.0010557527421042323, + -0.043606024235486984, + 0.02228282019495964, + 0.0033551238011568785, + -0.021464325487613678, + -0.0012224505189806223, + 9.57795691647334e-6, + -0.015156269073486328, + 0.017442410811781883, + 0.04484787955880165, + 0.014104926958680153, + 0.008199062198400497, + -0.002358464989811182, + 0.02026480622589588, + -0.026897437870502472, + -0.002564852824434638, + 0.047980740666389465, + 0.005676545202732086, + -0.023891586810350418, + -0.044904328882694244, + 0.04628730192780495, + 0.0016802079044282436, + -0.027165565639734268, + -0.06017349287867546, + 0.00034089258406311274, + 0.011049682274460793, + -0.025302784517407417, + 0.0023549371398985386, + -0.0017110778717324138, + 0.0019245216390118003, + -0.025740256533026695, + 0.0018980616005137563, + 0.02475241757929325, + 0.014845805242657661, + -0.008798820897936821, + 0.007592246402055025, + 0.04857344552874565, + -0.016426347196102142, + -0.013561614789068699, + 0.016031213104724884, + 0.011282529681921005, + -0.00023372970463242382, + 0.011317810043692589, + -0.027165565639734268, + -0.034997716546058655, + 0.000612107221968472, + 0.016934379935264587, + -0.06186693161725998, + -0.00997011549770832, + 0.02300253137946129, + 0.03934420645236969, + -0.016115883365273476, + -0.0022420412860810757, + -0.009066948667168617, + -0.027871165424585342, + 0.050774913281202316, + 0.001449124189093709, + 0.02603660710155964, + -0.0068725356832146645, + -0.03883617743849754, + 0.011324865743517876, + 0.0020056655630469322, + -0.019389864057302475, + 0.039654672145843506, + 0.006350392010062933, + -0.03056655451655388, + -0.028774332255125046, + -0.03355829417705536, + -0.02846386842429638, + 0.010668658651411533, + 0.009081060998141766, + 0.010838002897799015, + -0.0013424023054540157, + -0.037058066576719284, + 0.01152243372052908, + 0.03765076771378517, + 0.015861868858337402, + 0.025006433948874474, + -0.026756318286061287, + -0.02722201496362686, + 0.04123521223664284, + -0.011966961435973644, + 0.017301291227340698, + 0.019460424780845642, + 0.018091561272740364, + 0.014747021719813347, + -0.04117876663804054, + -0.012665504589676857, + 0.06626986712217331, + 0.00897522084414959, + -0.022028805688023567, + 0.020307142287492752, + -0.012136304751038551, + -0.0364653617143631, + -0.056306809186935425, + 0.022819075733423233, + -0.0240609310567379, + -0.009610259905457497, + -0.03776366636157036, + 0.05083136260509491, + 0.05229900777339935, + -0.007599302567541599, + 0.020758725702762604, + -0.01569252461194992, + -0.003104636212810874, + -0.00017937652592081577, + -0.03290914371609688, + 0.0021538413129746914, + -0.007712198421359062, + -0.018867719918489456, + 0.007352342829108238, + -0.006466816179454327, + 0.005157929845154285, + -0.012326817028224468, + 0.002010957570746541, + -0.012369153089821339, + 0.035449299961328506, + -0.03553397208452225, + 0.025782592594623566, + -0.020772838965058327, + -0.0317801833152771, + 0.01336404774338007, + -0.01892416924238205, + 0.00638920022174716, + -0.009419748559594154, + -0.012665504589676857, + 0.058536503463983536, + 0.0031205122359097004, + 0.031441498547792435, + -0.03161083906888962, + -0.012404432520270348, + 0.031243929639458656, + -0.01247499231249094, + 0.002317893086001277, + 0.01807744987308979, + -0.032852694392204285, + 0.014281325973570347, + 0.02963516302406788, + 0.01697671413421631, + 0.014831693843007088, + -0.04225127398967743, + 0.0114448182284832, + 0.04233594611287117, + 0.04693645238876343, + 0.017456522211432457, + 0.010210019536316395, + 0.0067808073945343494, + -0.029183579608798027, + 0.02952226810157299, + 0.02397625893354416, + -0.03838459402322769, + 0.016934379935264587, + 0.01953098364174366, + -0.005281409248709679, + -0.00905989296734333, + 0.02514755353331566, + 0.047218695282936096, + 0.019347527995705605, + -0.033501844853162766, + -0.0014323662035167217, + -0.02705267071723938, + -0.021520772948861122, + -0.0021167974919080734, + -0.013413439504802227, + 0.02729257382452488, + 0.01766820251941681, + 0.012954800389707088, + 0.007020711433142424, + -0.0161299966275692, + 0.004060722887516022, + -0.005373137537389994, + -0.012503216974437237, + 0.04131988435983658, + -0.045384135097265244, + -0.0019986096303910017, + 0.02442784234881401, + -0.022734403610229492, + -0.002429025014862418, + 0.017781097441911697, + -0.016313452273607254, + -0.05661727488040924, + -0.03979578986763954, + 0.02414560131728649, + -0.03917486220598221, + 0.024004481732845306, + -0.012905407696962357, + 0.005030921660363674, + 0.02328477054834366, + -0.046682439744472504, + 0.031074585393071175, + -0.03813057765364647, + -0.0026071888860315084, + -0.014422446489334106, + -0.024554850533604622, + 0.0034944796934723854, + -0.025161664932966232, + 0.03801768273115158, + 0.038920849561691284, + -0.027927612885832787, + -0.010033619590103626, + -0.0006341572152450681, + 0.0009243348613381386, + -0.0035385796800255775, + -0.04755738005042076, + -0.01811978593468666, + -0.006611463613808155, + -0.008255509659647942, + -0.05074669048190117, + 0.012813679873943329, + 0.05224255844950676, + 0.0364089161157608, + -0.019926119595766068, + -0.02401859499514103, + -0.0040324991568923, + 0.01373095903545618, + 0.0016996118938550353, + 0.02414560131728649, + 0.03398165479302406, + -0.039654672145843506, + 0.010908562690019608, + 0.057802680879831314, + 0.044057611376047134, + 0.010202963836491108, + 0.021337317302823067, + 0.007003071252256632, + 0.025500351563096046, + 0.019347527995705605, + 0.0027077365666627884, + -0.05196031928062439, + 0.029127132147550583, + 0.016327563673257828, + 0.0015099821612238884, + -0.050210434943437576, + -0.03183663263916969, + 0.07411613315343857, + 0.007077159360051155, + -0.025006433948874474, + -0.006258664187043905, + -0.03367118909955025, + -0.009941891767084599, + -0.0059199766255915165, + 0.026784542948007584, + -0.025570912286639214, + 0.011734113097190857, + 0.002748308703303337, + 0.009391524828970432, + -0.04637197405099869, + 0.0017481218092143536, + 0.00521790562197566, + -0.050690241158008575, + 0.0022261652629822493, + 0.00044827593956142664, + -0.030397210270166397, + -0.03719918429851532, + 0.018133897334337234, + 0.02527455985546112, + 0.0022790851071476936, + 0.016962602734565735, + -0.010259411297738552, + -0.03344539925456047, + -0.009546755813062191, + -0.012446768581867218, + 0.030792346224188805, + -0.013237039558589458, + -0.0070524634793400764, + -0.0048262979835271835, + -0.018218569457530975, + -0.0397111177444458, + -0.03073589876294136, + -0.000485981407109648, + -0.007853318005800247, + 0.03367118909955025, + 0.00985016394406557, + 0.014422446489334106, + 0.009243348613381386, + -0.018176233395934105, + -0.0034803675953298807, + -0.0313003771007061, + 0.024187937378883362, + -0.05221433565020561, + 0.008121445775032043, + 0.022353380918502808, + -0.023792803287506104, + 0.003757315455004573, + -0.0012833083746954799, + 0.04936371371150017, + 0.024554850533604622, + -0.04665421321988106, + -0.010830946266651154, + 0.029042460024356842, + 0.011635329574346542, + -0.025133440271019936, + -0.0011757045285776258, + -0.010732162743806839, + 0.002718320582062006, + 0.0033463039435446262, + -0.005126177798956633, + -0.033134933561086655, + -0.009116340428590775, + 0.03945710137486458, + 0.01210808102041483, + -0.06034283712506294, + 0.02308720350265503, + 0.005105009768158197, + -0.05540364235639572, + 0.015156269073486328, + -0.0020868093706667423, + -0.015043373219668865, + -0.00843190960586071, + -0.04230772331357002, + -0.008333126083016396, + -0.036945171654224396, + -8.996389078674838e-5, + -0.009257460944354534, + -0.05754866451025009, + -0.010873282328248024, + -0.04549703001976013, + -0.016045324504375458, + -0.03262690454721451, + -0.023185987025499344, + 0.006205744110047817, + -0.03355829417705536, + 0.0072747268714010715, + 0.030058523640036583, + 0.007592246402055025, + -0.011578882113099098, + 0.04047316685318947, + -0.03327605500817299, + -0.01819034479558468, + 0.0008952288771979511, + -0.009709044359624386, + 0.036013778299093246, + 0.02818162925541401, + 0.03632424399256706, + -0.027066782116889954, + 0.018895944580435753, + -0.007465238682925701, + 0.010181795805692673, + -0.02482297644019127, + 0.013752127066254616, + -0.02106918953359127, + -0.019516872242093086, + -0.018895944580435753, + 0.0050062257796525955, + 0.009631427936255932, + 0.002501348964869976, + -0.026459967717528343, + 0.02907068468630314, + -0.0010469326516613364, + -0.00015203456860035658, + 0.027828829362988472, + 0.014874029904603958, + 0.007472294848412275, + -0.042646411806344986, + -0.012143361382186413, + 0.03446146100759506, + -0.019559208303689957, + -0.0383281446993351, + 0.020405927672982216, + -0.039936911314725876, + -9.630325803300366e-5, + 0.025062881410121918, + -0.013723903335630894, + 0.044706761837005615, + 0.037227410823106766, + 0.006082264706492424, + -0.0004643724241759628, + 0.0075075747445225716, + 0.011508321389555931, + -0.035167060792446136, + 0.04973062500357628, + -0.03561864420771599, + -0.0021044493187218904, + -0.03810235112905502, + 0.027490142732858658, + 0.005443697329610586, + 0.004981529898941517, + 0.019192297011613846, + -0.01560785248875618, + 0.010957954451441765, + 0.020250694826245308, + 0.020123686641454697, + 0.005270825698971748, + 0.03533640503883362, + -0.01835968904197216, + -0.024371393024921417, + -0.00972315575927496, + 0.014147262088954449, + -0.016807371750473976, + 0.0014191363006830215, + -0.004914497956633568, + -0.009814883582293987, + 0.00017298203601967543, + 0.018783049657940865, + -0.04154567793011665, + 0.012587888166308403, + 0.0022667371667921543, + -0.0794222354888916, + -0.03889262303709984, + 0.060794420540332794, + 0.0690922662615776, + -0.015763085335493088, + 0.03446146100759506, + 0.0008101160055957735, + 0.017527082934975624, + 0.04445274546742439, + 0.0014614722458645701, + -0.013702735304832458, + -0.026177728548645973, + 0.004692234098911285, + 0.008029717952013016, + 0.01855725795030594, + -0.014443614520132542, + -0.002187357284128666, + -0.04445274546742439, + -0.0054930890910327435, + -0.0025807288475334644, + 2.3111128029995598e-5, + -0.01047109067440033, + 0.02111152559518814, + 0.016877930611371994, + 0.010083011351525784, + 0.010322915390133858, + -0.01043581124395132, + -0.024089153856039047, + -0.04354957863688469, + 0.011614161543548107, + 0.005122649483382702, + 0.011832897551357746, + -0.02061760611832142, + 0.04659776762127876, + -0.03533640503883362, + 0.015269164927303791, + 0.001966857584193349, + 0.019234633073210716, + -0.007789814379066229, + -0.030538329854607582, + 0.012665504589676857, + -0.018571369349956512, + -0.04374714568257332, + -0.005828248802572489, + 0.014147262088954449, + 0.0077474783174693584, + 0.025006433948874474, + -0.058649398386478424, + 0.012157472781836987, + 0.01929108053445816, + -0.0016043559880927205, + 0.02236749231815338, + -0.00544722517952323, + -0.002561324741691351, + -0.021450214087963104, + -0.022974306717514992, + 0.0054895612411201, + -0.002794172614812851, + -0.010337026789784431, + 0.007281783036887646, + -0.003171668155118823, + 0.0014253102708607912, + -0.017936330288648605, + -0.015382060781121254, + -0.01227036863565445, + -0.0014050243189558387, + -0.015057485550642014, + -0.006876063533127308, + 0.0027571285609155893, + -0.037791889160871506, + -0.0026177726686000824, + 0.012439712882041931, + 0.02636118419468403, + 0.003905491204932332, + 0.04024737328290939, + 0.014246046543121338, + 0.0289577879011631, + -0.01795044168829918, + -0.015212717466056347, + 0.0008903779089450836, + -0.035082388669252396, + -0.04250529035925865, + 0.029014235362410545, + -0.02061760611832142, + -0.009730212390422821, + 0.022635620087385178, + -0.005073257721960545, + -0.0006451822118833661, + -0.03595733270049095, + -0.023157764226198196, + -0.008396629244089127, + -0.006943095475435257, + -0.04417050629854202, + 0.029098907485604286, + -0.0071194954216480255, + -4.217057357891463e-5, + -0.0303689856082201, + 0.012228032574057579, + -0.021238533779978752, + 0.0015867160400375724, + 0.015494956634938717, + -0.015537292696535587, + 0.019022952765226364, + 0.009377412497997284, + 0.009617316536605358, + 0.02668575942516327, + 0.004431162495166063, + -0.015918316319584846, + -0.0011959904804825783, + -0.0002454161876812577, + 0.023835139349102974, + -0.018021002411842346, + -0.0254721287637949, + 0.011007346212863922, + 0.01002656389027834, + -0.022127589210867882, + -0.001696965890005231, + 0.02143610082566738, + -0.0045511145144701, + 0.016031213104724884, + 0.03841281682252884, + 0.050210434943437576, + -0.03437678888440132, + 0.0024360809475183487, + 0.017978666350245476, + -0.01597476378083229, + 0.00249252887442708, + 0.01071805041283369, + -0.01447889395058155, + 0.034348566085100174, + -0.004417050629854202, + 0.005344913341104984, + -0.007782758213579655, + -0.013420495204627514, + -0.0029811563435941935, + -0.0133217116817832, + -0.0020374173764139414, + -0.03889262303709984, + 0.0388079509139061, + -0.0006337162340059876, + -0.010866226628422737, + -0.01629933901131153, + 0.0032210599165409803, + 0.013533391058444977, + 0.013681567274034023, + 0.030256090685725212, + -0.032090649008750916, + 0.005330801475793123, + -0.018910055980086327, + 0.015480845235288143, + 0.01883949711918831, + 0.011811729520559311, + 0.0022296933457255363, + 0.011903457343578339, + 0.055939897894859314, + -0.00588469672948122, + -0.007578134536743164, + 0.027193790301680565, + -0.004893329925835133, + 0.016398124396800995, + -0.004198314622044563, + 0.005228489637374878, + 0.03175196051597595, + -0.010943842120468616, + 0.0026424687821418047, + -0.015071596950292587, + 0.011790561489760876, + 0.00728883920237422, + -0.028703773394227028, + -0.02770182117819786, + -0.008072054013609886, + 0.016355788335204124, + 0.012439712882041931, + 0.021040966734290123, + -0.0015655480092391372, + -0.015297388657927513, + -0.011211969889700413, + 0.046033285558223724, + 0.0016590399900451303, + 0.0004568754229694605, + 0.026332959532737732, + 0.025782592594623566, + -0.006466816179454327, + 0.034320343285799026, + 0.020490597933530807, + -0.0011571826180443168, + -0.02535923197865486, + 0.043126218020915985, + -0.005471921060234308, + 0.02074461430311203, + -0.0006182812503539026, + 0.015494956634938717, + -0.033050261437892914, + 0.016595691442489624, + 0.02300253137946129, + -0.005807080771774054, + 0.03940065577626228, + 0.023355331271886826, + 0.014189598150551319, + 0.03194952756166458, + -0.004928609821945429, + -0.0036038474645465612, + -0.0006712011527270079, + -0.004335906822234392, + 0.061810482293367386, + -0.02341177873313427, + 0.010576930828392506, + 0.0010786846978589892, + -0.011353090405464172, + -0.009963059797883034, + -0.03403810039162636, + -0.0013715083478018641, + 0.003168140072375536, + 0.0027095007244497538, + 0.01723073050379753, + -0.04916614666581154, + 0.06412485241889954, + 0.005697712767869234, + 0.008241398259997368, + 0.02802639827132225, + -0.025105217471718788, + -0.013004192151129246, + -0.02248038910329342, + -0.031723737716674805, + 0.014189598150551319, + 0.013540447689592838, + -0.0021167974919080734, + 0.006699663586914539, + -0.008114390075206757, + 0.006424480117857456, + 0.0010460506891831756, + 0.03429211676120758, + -0.042279500514268875, + 0.0072323912754654884, + 0.023030756041407585, + 0.025500351563096046, + 0.02215581201016903, + -0.027518365532159805, + -0.01677914708852768, + 0.010548707097768784, + 0.015988877043128014, + 0.0020127214957028627, + -0.0025278087705373764, + -0.012277425266802311, + -0.002448428887873888, + 0.02846386842429638, + -0.01641223579645157, + 0.022099364548921585, + -0.0036726435646414757, + -0.010217075236141682, + -0.007302951067686081, + 0.009716100059449673, + -0.0007091271108947694, + -0.023185987025499344, + 0.03465902805328369, + 0.02401859499514103, + 0.004350018687546253, + -0.004604034125804901, + 0.005514257121831179, + -0.03307848796248436, + -0.022353380918502808, + -0.04298510029911995, + 0.0048121861182153225, + -0.019629767164587975, + -0.03299381583929062, + 0.006022288464009762, + 0.027405470609664917, + -0.017371850088238716, + 0.003374527906998992, + 0.013667454943060875, + -0.001502926112152636, + 0.009193956851959229, + 0.008453077636659145, + -0.01251732837408781, + -0.02252272330224514, + -0.01701905019581318, + -0.007500518579035997, + -0.010118291713297367, + -0.011832897551357746, + 0.018811272457242012, + 0.009462084621191025, + 0.0021220892667770386, + -0.024244386702775955, + -0.0074934628792107105, + -0.008869380690157413, + 0.0016413999255746603, + -0.00588469672948122, + 0.009201012551784515, + -0.019827336072921753, + -0.04363425076007843, + 0.002660108730196953, + -0.034235671162605286, + 0.0017295998986810446, + 0.03166728839278221, + -0.0034891876857727766, + 0.0138932466506958, + 0.007221807260066271, + -0.0006368032190948725, + -0.019037064164876938, + 0.017047274857759476, + -0.004519362468272448, + 0.0060258167795836926, + -0.007564022671431303, + 0.013046528212726116, + 0.008728261105716228, + -0.059947703033685684, + -0.02826630137860775, + 0.014330718666315079, + 0.026713982224464417, + -0.007345287129282951, + -0.0027606566436588764, + -0.002501348964869976, + 0.010329971089959145, + 0.005860000848770142, + -0.024329058825969696, + 0.01427427027374506, + -0.007578134536743164, + 0.005154401529580355, + -0.023440003395080566, + 0.012404432520270348, + 0.035477522760629654, + -0.04196903482079506, + -0.011578882113099098, + -0.01002656389027834, + 0.020194247364997864, + 0.0044664423912763596, + 0.011585937812924385, + 0.011063794605433941, + 0.022409828379750252, + -0.0073876227252185345, + 0.009998339228332043, + 0.016045324504375458, + 0.04702112451195717, + -0.03482837229967117, + 0.030707674100995064, + 0.01859959214925766, + 0.021619556471705437, + -0.015819532796740532, + 0.0008696509175933897, + 0.0014111982891336083, + -0.01803511381149292, + 0.021323205903172493, + 0.028040509670972824, + 0.034235671162605286, + 0.01219275314360857, + -0.013328767381608486, + -0.0116847213357687, + -0.01227036863565445, + -0.017964553087949753, + 0.05627858638763428, + 0.03609845042228699, + -0.011296642012894154, + 0.02397625893354416, + -0.0013018304016441107, + 0.024879425764083862, + 0.032005976885557175, + -0.010901506058871746, + 0.004794545937329531, + 0.019474536180496216, + -0.0023231850937008858, + -0.04465031251311302, + 0.0021661892533302307, + -0.012700784020125866, + -0.03533640503883362, + -0.029324699193239212, + -0.002944112289696932, + 0.006600880064070225, + 0.014450670219957829, + 0.03477192670106888, + 0.0008387809502892196, + -0.021450214087963104, + 0.002457248978316784, + 0.018529033288359642, + 0.009963059797883034, + -0.020123686641454697, + -0.004300626460462809, + 0.009038724936544895, + 0.005203793756663799, + 0.013914414681494236, + -0.03561864420771599, + 0.017766986042261124, + 0.006530319806188345, + -0.01912173628807068, + -0.0303689856082201, + 0.03429211676120758, + 0.006258664187043905, + -0.0051720417104661465, + -0.035759761929512024, + 0.003118748078122735, + 0.018698377534747124, + 0.012531440705060959, + 0.0266434233635664, + -0.02208525314927101, + -0.01936163939535618, + -0.02135142870247364, + 0.00944091659039259, + -0.011896401643753052, + 0.003990163095295429, + 0.0017260718159377575, + 0.017400074750185013, + 0.0017172518419101834, + -0.026615198701620102, + -0.01900884136557579, + -0.0016043559880927205, + 0.0116847213357687, + 0.011748225428164005, + -0.021125636994838715, + -0.03299381583929062, + 0.021845348179340363, + -0.008093222044408321, + 0.037707217037677765, + 0.03000207431614399, + -0.008206117898225784, + 0.00948325265198946, + -0.008022662252187729, + 0.035477522760629654, + -0.003792595351114869, + 0.03505416586995125, + -0.018627816811203957, + -0.006533848121762276, + -0.053879547864198685, + 0.029324699193239212, + -0.01243265625089407, + -0.026996223255991936, + -0.03482837229967117, + -0.0049391938373446465, + 0.012086912989616394, + -0.025006433948874474, + 0.005295521579682827, + -0.01518449280411005, + 0.027687709778547287, + -0.013977918773889542, + 0.015015149489045143, + 0.01819034479558468, + -0.017823433503508568, + -0.004639314487576485, + -0.01453534234315157, + 0.026502303779125214, + -0.01879716105759144, + 0.029494043439626694, + 0.010358194820582867, + 0.012877183966338634, + -0.010908562690019608, + 0.012912464328110218, + -0.017893994227051735, + -0.03917486220598221, + 0.013963806442916393, + -0.015212717466056347, + -0.015861868858337402, + -0.013441663235425949, + 0.010823890566825867, + 0.012362096458673477, + -0.010922674089670181, + 0.010788610205054283, + 0.029860954731702805, + -0.007796870544552803, + -0.0175129696726799, + -0.029211804270744324, + -0.026417631655931473, + -0.01522682886570692, + -0.00761341443285346, + 0.0036832273472100496, + -0.0051720417104661465, + 0.0072465031407773495, + 0.013110031373798847, + -0.00047231040662154555, + -0.07061635702848434, + 0.024131489917635918, + 0.021930020302534103, + -0.011331922374665737, + -0.006219856441020966, + 0.0045052506029605865, + 0.004988586064428091, + 0.005902336910367012, + -0.0034309758339077234, + -0.013441663235425949, + -0.00016713878721930087, + -0.009144565090537071, + 0.014563566073775291, + -0.01699082739651203, + -0.003266924060881138, + -0.005157929845154285, + -0.006181048229336739, + -0.020645830780267715, + 0.0010548706632107496, + -0.008488357067108154, + -0.008601252920925617, + -0.047500934451818466, + 0.004540530499070883, + 0.01694849133491516, + -0.03093346580862999, + 0.008481301367282867, + -0.0017851657466962934, + 0.012799568474292755, + -0.01892416924238205, + -0.029268251731991768, + 0.016144108027219772, + -0.0004189494939055294, + 0.017498858273029327, + 0.001989789539948106, + -0.015311500988900661, + -0.003909019287675619, + 0.00650915177538991, + 0.026050720363855362, + 0.009045780636370182, + 0.006583239883184433, + 0.0163416750729084, + -0.01447889395058155, + 0.0022526253014802933, + 0.0081708375364542, + 0.03824347257614136, + 0.025048768147826195, + -0.0217183418571949, + 0.0007201521075330675, + 0.015212717466056347, + -0.0025666167493909597, + 0.027363134548068047, + -0.008424853906035423, + 0.00901755690574646, + -0.022452164441347122, + -0.05475449189543724, + -0.027645373716950417, + -0.01747063361108303, + -0.0015408521285280585, + 0.0015964179765433073, + -0.02154899761080742, + 0.015156269073486328, + -0.013625118881464005, + -0.034066326916217804, + 0.03773543983697891, + 0.009320964105427265, + 0.015212717466056347, + 0.005658905021846294, + 0.007782758213579655, + 0.006809031590819359, + -0.013787406496703625, + 0.0010275287786498666, + 0.043775368481874466, + -0.004748682025820017, + 3.1421212042914703e-5, + 0.027447806671261787, + -0.01669447496533394, + 0.0075075747445225716, + -0.024357281625270844, + -0.01352633535861969, + 0.008601252920925617, + -0.058254264295101166, + 0.007444070652127266, + -0.0196156557649374, + -0.0022843771148473024, + -0.007726310286670923, + 0.003916074987500906, + -0.009984227828681469, + -0.02466774545609951, + 0.0010337027488276362, + -0.01673681102693081, + 0.012228032574057579, + -0.020081350579857826, + -0.010047731921076775, + -0.01035113912075758, + -0.006251608487218618, + 0.004409994464367628, + 0.027165565639734268, + -0.007549910806119442, + -0.005524841137230396, + 0.011000290513038635, + -0.02211347594857216, + 0.02013779990375042, + 0.004755738191306591, + 0.014020254835486412, + -0.00017948677123058587, + 0.019686216488480568, + -0.001016944763250649, + -0.043323785066604614, + -0.010449922643601894, + -0.010344083420932293, + 0.024329058825969696, + -0.018910055980086327, + -0.03821524977684021, + -0.02057527005672455, + 0.007860374636948109, + -0.020561158657073975, + 0.0012974203564226627, + -0.004868634045124054, + -0.03400987759232521, + 0.031526170670986176, + 0.011480097658932209, + -0.012136304751038551, + 0.00017121803830377758, + -0.014429502189159393, + 0.018627816811203957, + 0.017004938796162605, + -0.008128502406179905, + -0.006809031590819359, + 0.02386336214840412, + 0.0004138779768254608, + 0.004445274360477924, + 0.005295521579682827, + -0.005284937564283609, + -0.042477067559957504, + -0.012510272674262524, + 0.018740713596343994, + -0.026347070932388306, + -0.013053583912551403, + -0.019276967272162437, + 0.01573486067354679, + 0.0098078278824687, + 0.009490308351814747, + 0.0019403975456953049, + -0.005150873679667711, + 0.010915618389844894, + 0.02677043154835701, + -0.02559913694858551, + 0.0019245216390118003, + -0.0012656684266403317, + -0.020349478349089622, + -0.012877183966338634, + -0.028901340439915657, + -0.012482048943638802, + -0.06739883124828339, + -0.008869380690157413, + 0.005711825098842382, + 0.022748515009880066, + -0.0036691154818981886, + -0.005955256521701813, + -0.013434607535600662, + 0.008022662252187729, + 0.018331466242671013, + 0.00838957354426384, + -0.013194703496992588, + 0.03110281005501747, + 0.00929979607462883, + 0.005796496756374836, + -0.01710372231900692, + 0.015763085335493088, + -0.015339724719524384, + 0.003993690945208073, + 0.01977088674902916, + -0.012298592366278172, + -0.0014782301150262356, + 0.027165565639734268, + 0.029042460024356842, + 0.009800772182643414, + 0.026897437870502472, + 0.027687709778547287, + -0.04024737328290939, + 0.02935292385518551, + -0.0011122006690129638, + -0.007394678890705109, + 0.010181795805692673, + 0.0034627276472747326, + -0.017541194334626198, + -0.007768646348267794, + 0.028520315885543823, + 0.005690657068043947, + 0.015015149489045143, + -0.000479366397485137, + 0.01105673797428608, + 0.011296642012894154, + 0.005440169479697943, + 0.010548707097768784, + -0.0016854999121278524, + -0.012002240866422653, + 0.006301000248640776, + -0.0020233055111020803, + 0.008022662252187729, + -0.04278752952814102, + -0.008093222044408321, + 0.005267297383397818, + 0.02397625893354416, + -0.005362553521990776, + 0.008784709498286247, + -0.01840202510356903, + -0.002515460830181837, + -0.008403685875236988, + 0.016877930611371994, + 0.0018116257851943374, + 0.013138256035745144, + -0.006297472398728132, + 0.0317801833152771, + -0.0014861681265756488, + 0.007810982409864664, + 0.011515378020703793, + -0.021577220410108566, + -0.0011854065814986825, + 0.018345577642321587, + 0.012213921174407005, + 0.029832731932401657, + -0.004925081972032785, + -0.007952102459967136, + -0.028986012563109398, + 0.032175321131944656, + 0.023990370333194733, + 0.015410284511744976, + 0.01457767840474844, + 0.034913044422864914, + 0.015466732904314995, + 0.001669623889029026, + 0.009313908405601978, + 0.011416593566536903, + -0.002002137480303645, + 0.03138504922389984, + 0.005055617541074753, + -0.011804673820734024, + -0.03271157667040825, + -0.001125430571846664, + -0.013639231212437153, + -0.0069466233253479, + -0.010217075236141682, + 0.017287177965044975, + 0.006233968306332827, + 0.010823890566825867, + 0.015551405027508736, + -0.013695678673684597, + 0.010619266889989376, + 0.011656497605144978, + -0.01071805041283369, + -0.00024343169934581965, + 0.0032475199550390244, + -0.007017183117568493, + -0.002358464989811182, + 0.006142240483313799, + -0.035449299961328506, + -0.0014826401602476835, + 0.008304901421070099, + 6.17950499872677e-5, + 0.013138256035745144, + 0.00506620155647397, + -0.026474079117178917, + 0.004141866695135832, + 0.013618063181638718, + -0.016398124396800995, + 0.032739799469709396, + -0.022212261334061623, + -0.006036400329321623, + -0.017696425318717957, + -0.016835594549775124, + -0.024286722764372826, + -0.015424396842718124, + -0.0008308429969474673, + 0.020801061764359474, + 0.015678413212299347, + -0.02835097350180149, + -0.027391357347369194, + 0.020278919488191605, + 0.006304528098553419, + 0.0004222569696139544, + -0.008142613805830479, + 0.004159506876021624, + -0.015001037158071995, + 0.01006889995187521, + -0.0006831081700511277, + 0.008721205405890942, + 0.0025313368532806635, + 0.024695970118045807, + 0.026149503886699677, + -0.003591499524191022, + 0.012524384073913097, + -0.028449757024645805, + -0.011388369835913181, + 0.00638920022174716, + 0.006844311486929655, + 0.01977088674902916, + -0.003028784180060029, + 0.008382517844438553, + 0.00834723748266697, + 0.0029864483512938023, + 0.008685925044119358, + -0.021012742072343826, + 0.012157472781836987, + -0.010534594766795635, + 0.016609802842140198, + -0.017696425318717957, + -0.008565973490476608, + -0.006604407913982868, + -0.01701905019581318, + -0.023115428164601326, + 0.014373053796589375, + -0.007401735056191683, + -0.009511476382613182, + 0.002944112289696932, + 0.012587888166308403, + -0.003374527906998992, + 0.012947743758559227, + -0.014775245450437069, + -0.014161374419927597, + 0.00929979607462883, + -0.02757481299340725, + -0.023750467225909233, + -0.0015514360275119543, + 0.0007951220031827688, + -0.011776449158787727, + -0.022028805688023567, + 0.0072747268714010715, + -0.014634125865995884, + -0.0184443611651659, + -0.003302203956991434, + 0.032655127346515656, + 0.010725107043981552, + -0.024329058825969696, + -0.019714439287781715, + 0.011656497605144978, + 0.0007444070652127266, + 0.011473041959106922, + 0.0011809965362772346, + -0.011825840920209885, + 0.010915618389844894, + -0.008784709498286247, + -0.019883783534169197, + 0.018472585827112198, + 0.019107624888420105, + -0.013977918773889542, + -0.0005102363647893071, + 0.026347070932388306, + -0.015904204919934273, + 0.032655127346515656, + -0.030877018347382545, + -0.0186842642724514, + -0.017117835581302643, + -0.012171585112810135, + -0.01905117556452751, + 0.030030298978090286, + -0.003388639772310853, + -0.013667454943060875, + -0.005468393210321665, + -0.020405927672982216, + 0.003834931179881096, + 0.02082928642630577, + -0.027151454240083694, + 0.02130909450352192, + 0.01528327725827694, + 0.015875980257987976, + -0.026276512071490288, + -0.0037361474242061377, + -0.014090814627707005, + -0.023228323087096214, + -0.019107624888420105, + -0.008213173598051071, + -0.02332710660994053, + 0.024173825979232788, + 0.0073876227252185345, + -0.0012480284785851836, + -0.026502303779125214, + 0.007592246402055025, + -0.007239446975290775, + -0.0080649983137846, + -0.046484868973493576, + -0.017089610919356346, + 0.015085709281265736, + -0.0022402771282941103, + 0.0010954426834359765, + -0.0007399970781989396, + -0.01518449280411005, + -0.0023055451456457376, + -0.01406964659690857, + 0.022861411795020103, + -0.02935292385518551, + 0.010915618389844894, + -1.0136096534552053e-5, + -0.02074461430311203, + -0.02332710660994053, + -0.013512223027646542, + 0.01536794938147068, + 0.006657327990978956, + 0.008664757013320923, + -0.03567509353160858, + -0.03251400962471962, + 0.006205744110047817, + -0.007338230963796377, + 0.018910055980086327, + -0.031526170670986176, + -0.01188934501260519, + 0.017400074750185013, + 0.0062269121408462524, + -0.022734403610229492, + 0.009419748559594154, + -0.014916365966200829, + 0.01916407234966755, + -0.010915618389844894, + 0.001093678642064333, + 0.013766239397227764, + 0.010160627774894238, + -0.008057941682636738, + 0.01322292722761631, + -0.03398165479302406, + 0.011106130667030811, + 0.01227036863565445, + 0.011211969889700413, + -0.003919603303074837, + 0.019686216488480568, + 0.021859461441636086, + -0.0058670565485954285, + 0.009370356798171997, + 0.013498111627995968, + -0.014676461927592754, + 0.014090814627707005, + -0.027560701593756676, + 0.0016793259419500828, + -0.0024413729552179575, + -0.004103058949112892, + -0.012848960235714912, + -0.0210268534719944, + -0.003522703656926751, + 0.006212800275534391, + -0.009045780636370182, + 0.00588469672948122, + 0.02709500677883625, + 0.021492550149559975, + -0.00871414877474308, + 0.023312995210289955, + 0.01457767840474844, + 0.00780392624437809, + 0.005743576679378748, + 0.027109118178486824, + 0.022903747856616974, + -0.008283733390271664, + 0.00901755690574646, + 0.00913750845938921, + -0.016144108027219772, + 0.016115883365273476, + 0.00897522084414959, + -0.021210309118032455, + -0.009532644413411617, + -0.003510355716571212, + -0.00020330074767116457, + -0.008989333175122738, + -0.009426804259419441, + 0.0030305483378469944, + -0.013173535466194153, + -0.0062798322178423405, + 0.00929979607462883, + -0.008770597167313099, + -0.019996678456664085, + -0.0022667371667921543, + 0.025909600779414177, + 0.014803470112383366, + 0.009730212390422821, + -0.0069466233253479, + -0.026093056425452232, + 0.0017066679429262877, + -0.02308720350265503, + -0.003856099210679531, + 0.021167973056435585, + -0.027193790301680565, + -0.01573486067354679, + 0.008657701313495636, + -0.006699663586914539, + 0.015523180365562439, + -0.02887311577796936, + -0.020772838965058327, + 0.005115593783557415, + -0.016369899734854698, + 0.004833354149013758, + -0.011875233612954617, + -0.01118374615907669, + -0.005080313887447119, + 0.0015091000823304057, + 0.013427551835775375, + -0.004540530499070883, + -0.006569128017872572, + 0.02878844365477562, + -0.02503465674817562, + 0.01301830355077982, + -0.006491512060165405, + 0.012002240866422653, + -0.0035297595895826817, + 0.0017666438361629844, + 0.01235504075884819, + -0.0010672187199816108, + 0.006491512060165405, + 0.003176960162818432, + 0.005852944683283567, + -0.0009260988445021212, + 0.003926659002900124, + 0.01061221119016409, + -0.014704685658216476, + 0.0016369899967685342, + -0.025062881410121918, + 0.006283360067754984, + 0.01219275314360857, + -0.009673763997852802, + 0.0061669363640248775, + -0.0007977680070325732, + 0.001732245902530849, + 0.00501328194513917, + 0.01089445035904646, + -0.005284937564283609, + -0.006682023871690035, + -0.034320343285799026, + 0.002649524714797735, + -0.011367201805114746, + 0.0012965383939445019, + -0.009779604151844978, + 0.015438509173691273, + -0.017639977857470512, + 0.010217075236141682, + -0.0008132029906846583, + -0.012968911789357662, + 0.006054040510207415, + -0.01972855068743229, + 0.009546755813062191, + -0.05754866451025009, + -0.021040966734290123, + -0.005073257721960545, + 0.009596148505806923, + -0.007945045828819275, + 0.01673681102693081, + 0.009892500005662441, + -0.004364130552858114, + 0.02243805304169655, + -0.011113186366856098, + 0.021944133564829826, + 0.0037467314396053553, + -0.00010589499288471416, + 0.006177520379424095, + -0.03638068959116936, + 0.029578715562820435, + -0.02332710660994053, + 0.011614161543548107, + 0.011204914189875126, + 0.004621674306690693, + 0.008939940482378006, + 0.02924002707004547, + -0.013639231212437153, + -0.01267961598932743, + -0.00850952509790659, + 0.011896401643753052, + 0.0020850454457104206, + 0.005274353548884392, + -0.008827044628560543, + -0.007556966505944729, + 0.050408001989126205, + -0.006438591983169317, + -0.004674594383686781, + -0.003406279720366001, + 0.007158303167670965, + 0.018430249765515327, + 0.012806624174118042, + -0.009624372236430645, + -0.009941891767084599, + -0.004843938164412975, + 0.01239737682044506, + -0.001552318106405437, + -0.008319013752043247, + 0.013547503389418125, + -0.015819532796740532, + -0.010097123682498932, + -0.006255136337131262, + 0.021887684240937233, + -0.01888183318078518, + 0.006350392010062933, + -0.0032422279473394156, + 0.0013926762621849775, + 0.05599634721875191, + -0.02794172614812851, + 0.03429211676120758, + -0.02046237513422966, + -0.004240650683641434, + -0.02479475364089012, + -0.013540447689592838, + 0.010224130935966969, + -0.004752210341393948, + -0.012750175781548023, + -0.020730502903461456, + -0.022028805688023567, + 0.02211347594857216, + -0.025542687624692917, + -0.00018665302195586264, + 0.04100942239165306, + 0.020998630672693253, + -0.0055601210333406925, + 0.024681856855750084, + -0.004293570760637522, + -0.012453824281692505, + 0.006258664187043905, + 0.001629051985219121, + 0.012531440705060959, + -0.021930020302534103, + 0.003640891518443823, + 0.01994023099541664, + -0.0045793382450938225, + -0.019827336072921753, + 0.008128502406179905, + 0.002471360843628645, + 0.014972813427448273, + 0.009130452759563923, + -0.013921470381319523, + -0.001687263953499496, + -0.006851367652416229, + -0.029014235362410545, + -0.0030887601897120476, + -0.024738306179642677, + 0.011049682274460793, + -0.015875980257987976, + -0.01282073650509119, + -0.0025542688090354204, + -0.001678443979471922, + 0.016849707812070847, + -0.012771343812346458, + 0.015706636011600494, + -0.009744323790073395, + 0.009779604151844978, + 0.03138504922389984, + 0.006392728071659803, + 0.011755281127989292, + 0.008248453959822655, + -0.005609513260424137, + 0.011113186366856098, + 0.022353380918502808, + -0.005542481318116188, + 0.018373800441622734, + 0.0015867160400375724, + 0.025218112394213676, + 0.02373635396361351, + -0.04242061823606491, + -0.0014570622006431222, + 0.001367980265058577, + 0.03155439347028732, + -0.0035597477108240128, + -0.008946997113525867, + -0.021097414195537567, + -0.012185696512460709, + 0.002776532666757703, + 0.006498567759990692, + -0.010788610205054283, + 0.019742663949728012, + 0.012362096458673477, + -0.00768397469073534, + -0.00307817617431283, + -0.020518822595477104, + 0.019276967272162437, + 0.007239446975290775, + -0.010710994713008404, + -0.008079109713435173, + -0.000990484724752605, + 0.003501535626128316, + 0.013124143704771996, + 0.0025101688224822283, + 0.002776532666757703, + 0.02806873247027397, + -0.00678433571010828, + 0.003958411049097776, + -0.01888183318078518, + 0.022790851071476936, + -0.002480180934071541, + 0.0121504170820117, + -0.0005031803739257157, + 0.0054895612411201, + 0.002093865303322673, + -0.010696882382035255, + 0.0021132694091647863, + -0.0061387126334011555, + 0.013046528212726116, + -0.002802992472425103, + 0.013349935412406921, + 0.012291536666452885, + -0.006897231563925743, + -0.0005971132777631283, + -0.02042003907263279, + 0.0054190014488995075, + 0.010950898751616478, + -0.02276262827217579, + -0.005235545337200165, + -0.02555680088698864, + 0.07981737703084946, + 0.001845141756348312, + 0.008643588982522488, + 0.002321421168744564, + 0.0163416750729084, + -0.027066782116889954, + -0.01227036863565445, + -0.00034927157685160637, + 0.01231270469725132, + 0.001935105654411018, + -0.02414560131728649, + 0.00121539446990937, + 0.01136014610528946, + -0.006600880064070225, + -0.010139459744095802, + -0.00800854992121458, + 0.018345577642321587, + 0.010753330774605274, + 0.00913750845938921, + 0.010823890566825867, + 0.015904204919934273, + -0.022296931594610214, + -0.008735316805541515, + -0.0068866475485265255, + -0.013159424066543579, + 0.01775287464261055, + -0.0011986364843323827, + -0.001885713660158217, + 0.0429568737745285, + 0.02176067791879177, + 0.003979579079896212, + -0.010202963836491108, + -0.008262565359473228, + -0.013999086804687977, + 0.022819075733423233, + 0.004455858375877142, + 0.0015549641102552414, + 0.0193757526576519, + -0.0027959365397691727, + -0.01188934501260519, + 0.01855725795030594, + -0.013032415881752968, + 0.024230273440480232, + 0.01136014610528946, + -0.0015805420698598027, + 0.0050591458566486835, + 0.008417797274887562, + -0.004233594983816147, + -0.008678869344294071, + 0.02353878691792488, + -0.01723073050379753, + -0.024851201102137566, + 0.0009834287920966744, + 0.002974100410938263, + -0.004999169614166021, + -0.008100277744233608, + 0.0022296933457255363, + -0.0026530527975410223, + -0.0036073755472898483, + -0.00623749615624547, + -0.015198605135083199, + -0.003743203356862068, + -0.02503465674817562, + -0.01522682886570692, + -0.028111068531870842, + -0.004522890318185091, + -0.01662391610443592, + -0.0022473332937806845, + -0.01067571435123682, + 0.0017040219390764832, + -0.00615635234862566, + -0.005394305102527142, + 0.005909392610192299, + -0.02750425413250923, + -0.01528327725827694, + 0.005478977225720882, + -0.0013662163401022553, + 0.030679449439048767, + 0.025091104209423065, + 0.011536546051502228, + 0.01662391610443592, + 0.004067779053002596, + -0.005514257121831179, + -0.02761714905500412, + -0.0011995185632258654, + -0.007415846921503544, + -0.006861951667815447, + -0.01223508920520544, + -0.00038697701529599726, + -0.03234466537833214, + -0.018458472564816475, + -0.017597641795873642, + -0.0026001327205449343, + 0.010950898751616478, + -0.0030940521974116564, + -0.0010425227228552103, + -0.0028153404127806425, + -0.012037521228194237, + 0.03271157667040825, + 0.0037149793934077024, + 0.01840202510356903, + 0.010929730720818043, + -0.012785456143319607, + -0.006643215660005808, + 0.0036161956377327442, + 0.0021362013649195433, + 0.013766239397227764, + 0.009582036174833775, + -0.009066948667168617, + 0.015678413212299347, + -0.0019950815476477146, + -0.033304277807474136, + 0.0035085915587842464, + -3.966238728025928e-5, + -0.03533640503883362, + -0.0161299966275692, + 0.003729091491550207, + 0.005154401529580355, + -0.010464034974575043, + -0.003947827033698559, + -0.017654089257121086, + 0.0022914332803338766, + 0.004692234098911285, + -0.012009297497570515, + -0.010908562690019608, + 0.009631427936255932, + -0.007909766398370266, + -0.0048792180605232716, + 0.001170412520878017, + 0.0012850724160671234, + 0.02746191807091236, + 0.010280579328536987, + 0.012228032574057579, + -0.017216619104146957, + 0.0067596398293972015, + -0.013399327173829079, + 0.001192462514154613, + -0.001966857584193349, + 0.010633379220962524, + -0.022296931594610214, + 0.020998630672693253, + -0.004544058348983526, + 0.009709044359624386, + 0.009772547520697117, + -0.005482505075633526, + -0.011811729520559311, + 0.0009340368560515344, + -0.028294524177908897, + 0.016144108027219772, + 0.0030005602166056633, + 0.025824928656220436, + -0.029381148517131805, + -0.012757232412695885, + -0.00968081969767809, + -0.003859627293422818, + 0.01827501691877842, + -0.013829742558300495, + 0.013455775566399097, + -0.04388826712965965, + 0.004787490237504244, + -0.012834847904741764, + -0.007712198421359062, + -0.013180592097342014, + 0.007302951067686081, + -0.014605902135372162, + 0.00186278170440346, + 0.012623168528079987, + 0.0121504170820117, + 0.01965799182653427, + -0.004374714568257332, + -0.022988419979810715, + -0.013004192151129246, + 0.0004138779768254608, + -0.01172705739736557, + -0.011148465797305107, + -0.0008692099363543093, + 0.017865769565105438, + 0.012891296297311783, + -0.023877473548054695, + 0.026332959532737732, + 0.002727140672504902, + 0.0001222670980496332, + 0.013166479766368866, + -0.013836799189448357, + -0.016440460458397865, + -0.00380670721642673, + 0.032570455223321915, + -0.019135847687721252, + 0.01953098364174366, + 0.004667538218200207, + -0.006537375971674919, + 0.010633379220962524, + 0.010548707097768784, + -0.007782758213579655, + -0.009116340428590775, + 0.001066336641088128, + 0.0086365332826972, + 0.01235504075884819, + 0.020024903118610382, + -0.012524384073913097, + -0.015678413212299347, + 0.016045324504375458, + 0.010040675289928913, + 0.01605943590402603, + 0.00985016394406557, + 0.0010548706632107496, + -0.01701905019581318, + -0.011190801858901978, + -0.019389864057302475, + -0.004469970241189003, + -0.013244095258414745, + -0.01686381921172142, + 0.011981072835624218, + 0.0016625679563730955, + -0.00705599132925272, + -0.004332378506660461, + -0.017329514026641846, + 0.0035791515838354826, + -0.014217822812497616, + 0.004893329925835133, + 0.009462084621191025, + 0.0024131489917635918, + 0.0025630888994783163, + -0.025585023686289787, + 0.019022952765226364, + 0.009165733121335506, + 0.006315112113952637, + 0.00745112681761384, + 0.009490308351814747, + 0.0015408521285280585, + 0.002930000424385071, + -0.0005322863580659032, + -0.02033536694943905, + -0.000492596416734159, + -0.003293383866548538, + 0.026939773932099342, + 0.006480928044766188, + -0.008862324990332127, + 0.009144565090537071, + -0.0005777092883363366, + -0.022381603717803955, + -0.009024612605571747, + -0.005962312687188387, + -0.00831195805221796, + 0.0068478393368422985, + -0.004498194437474012, + -0.01282073650509119, + 0.004198314622044563, + 0.02147843688726425, + -2.440656317048706e-5, + -0.0105134267359972, + 0.0031751960050314665, + 0.0024378448724746704, + -0.00047142841503955424, + 0.010739218443632126, + -0.0050203376449644566, + 0.005732993129640818, + 0.0010116527555510402, + -0.01301830355077982, + -0.02098451741039753, + -0.008537749759852886, + -0.0020215415861457586, + -0.017371850088238716, + -0.012256257236003876, + 0.013095919974148273, + 0.014309550635516644, + -0.03158261626958847, + 0.021817125380039215, + -0.011691777966916561, + -0.0028153404127806425, + 0.018331466242671013, + -0.0002864291600417346, + 0.0015964179765433073, + 0.01755530573427677, + 0.010802722536027431, + -0.004875689744949341, + 0.020532933995127678, + -0.011656497605144978, + -0.0029793924186378717, + -0.0007620470714755356, + -0.006466816179454327, + -0.014083758927881718, + 0.005083841737359762, + -0.021139750257134438, + -0.0053801932372152805, + -0.03846926614642143, + 0.013533391058444977, + 0.017301291227340698, + 0.013046528212726116, + 0.02191590890288353, + 0.009151620790362358, + 0.004311210475862026, + 0.010880338959395885, + -0.0257120318710804, + -0.003572095651179552, + 0.007902709767222404, + 0.008954052813351154, + -0.004417050629854202, + 0.0013750363141298294, + 0.005535425152629614, + 0.0021803013514727354, + -0.01130369771271944, + -0.009518532082438469, + -0.017823433503508568, + 0.01198812946677208, + 0.011162578128278255, + 0.01653924398124218, + 0.010379362851381302, + -0.021746564656496048, + 0.030961690470576286, + -0.00038874102756381035, + -0.01263727992773056, + 0.01580541953444481, + -0.015142157673835754, + -0.006914871279150248, + -0.0022914332803338766, + 0.015833644196391106, + 0.029183579608798027, + -0.002263209316879511, + 0.011917569674551487, + -0.006809031590819359, + 0.010118291713297367, + 0.021040966734290123, + 0.004282986745238304, + 0.023708131164312363, + 0.004268874879926443, + 0.0019368695793673396, + -0.0022914332803338766, + 0.011755281127989292, + -0.006209272425621748, + 0.03725563362240791, + 0.013110031373798847, + -0.01263727992773056, + -0.010407587513327599, + -0.00997011549770832, + 0.0026848046109080315, + -0.0008048239978961647, + -0.016426347196102142, + -0.004766322206705809, + 0.008424853906035423, + 0.0004471734573598951, + 0.0008035009959712625, + -0.003909019287675619, + -0.011974017135798931, + -0.0016413999255746603, + 0.0331631600856781, + -0.0028065205551683903, + -0.025824928656220436, + -0.0008498059469275177, + 0.0010292927036061883, + 0.010929730720818043, + -0.007980326190590858, + 0.017611755058169365, + 0.00380670721642673, + -0.0205470472574234, + -0.005112065467983484, + 0.012658447958528996, + 0.03626779466867447, + -0.0013697443064302206, + -0.014309550635516644, + -0.009963059797883034, + 0.01597476378083229, + -0.016369899734854698, + 0.008996388874948025, + 0.02705267071723938, + -0.00419478677213192, + 0.012990079820156097, + 0.007825094275176525, + -0.042081933468580246, + 0.013865022920072079, + -0.017541194334626198, + -0.009328020736575127, + -0.004367658402770758, + -0.012228032574057579, + -0.014521230012178421, + -0.002339061116799712, + -0.0011774685699492693, + 0.020151911303400993, + -0.010887394659221172, + -0.012721952050924301, + 0.024484289810061455, + -0.011995185166597366, + -0.00027915264945477247, + -0.013244095258414745, + 0.007253558840602636, + 0.028082845732569695, + 0.03400987759232521, + 0.01629933901131153, + 0.02208525314927101, + -0.003909019287675619, + 0.0019051176495850086, + 0.0017851657466962934, + 0.009779604151844978, + -0.013448718935251236, + -0.0031981279607862234, + 0.01518449280411005, + -0.0066537996754050255, + 0.008537749759852886, + 0.01013240311294794, + 0.01198812946677208, + -0.009306852705776691, + 0.007472294848412275, + 0.018063338473439217, + -0.007465238682925701, + 0.005461337044835091, + -0.012340928427875042, + -0.003383347764611244, + 0.009574980475008488, + 0.012453824281692505, + -0.016468683257699013, + 0.004103058949112892, + 0.007853318005800247, + -0.011275473982095718, + -0.014344830065965652, + 0.009151620790362358, + -0.021139750257134438, + -0.006096376571804285, + -0.010167683474719524, + 0.008220230229198933, + -0.011705889366567135, + 0.030256090685725212, + -0.018670152872800827, + 0.010421698912978172, + -0.002695388626307249, + 0.0040783630684018135, + -0.0018927697092294693, + 0.056222137063741684, + -0.004088947083801031, + -0.013258207589387894, + 0.002083281520754099, + 0.015918316319584846, + -0.02648819051682949, + -0.01645457185804844, + 0.010668658651411533, + -0.034433238208293915, + -0.005486033391207457, + 0.03355829417705536, + -0.01114141009747982, + 0.02425849810242653, + 0.0026036608032882214, + -0.013773295097053051, + -0.014464782550930977, + -0.01641223579645157, + 9.440144822292496e-6, + 0.0029317643493413925, + -0.011338978074491024, + 0.00023703720944467932, + 0.01043581124395132, + -0.003545635612681508, + -0.0161299966275692, + -0.002079753438010812, + -0.0020268335938453674, + -0.008234341628849506, + 0.017498858273029327, + -0.02272029221057892, + -1.8590882973512635e-5, + -0.0026618726551532745, + 0.003983106929808855, + 0.004018386825919151, + -0.01649690791964531, + -0.019107624888420105, + 0.0028735524974763393, + 0.004187730606645346, + -0.005662432871758938, + -0.006336280144751072, + 0.021210309118032455, + 0.017315402626991272, + 0.004487610422074795, + -0.01970032788813114, + 0.0054895612411201, + -0.012729008682072163, + 0.014260157942771912, + 0.01888183318078518, + 0.014133150689303875, + 0.013448718935251236, + 0.022579172626137733, + -0.016271116212010384, + 0.0016255240188911557, + -0.002852384466677904, + 0.004448802676051855, + -0.0014641181332990527, + -0.006516207940876484, + 0.0022191093303263187, + -0.006770223844796419, + 0.0116847213357687, + -0.015551405027508736, + 0.008537749759852886, + 0.00968787632882595, + 0.00196156557649374, + 0.022466275840997696, + 0.015438509173691273, + 0.019276967272162437, + 0.004533474333584309, + 0.006135184317827225, + 0.003432739758864045, + -0.0016343439929187298, + 0.017865769565105438, + 0.008925829082727432, + 0.003325135912746191, + -0.009518532082438469, + -0.007500518579035997, + -0.000841426954139024, + -0.013399327173829079, + -0.00885526929050684, + 0.012877183966338634, + 0.00682314345613122, + -0.0219582449644804, + 0.010238243266940117, + -0.0014014962362125516, + 0.0019245216390118003, + 0.008206117898225784, + 0.01617233268916607, + -0.020194247364997864, + 0.010372307151556015, + 0.007130078971385956, + 0.0388079509139061, + 0.002002137480303645, + -0.012051633559167385, + 0.013815631158649921, + 0.01957331970334053, + 0.00917984452098608, + -0.018006889149546623, + -0.008072054013609886, + 0.0016167040448635817, + 0.008904661051928997, + -0.023750467225909233, + 0.011367201805114746, + 0.012390321120619774, + 0.008192005567252636, + -0.00036294254823587835, + -0.00592350447550416, + 0.01336404774338007, + 0.0009799008257687092, + -0.005789441056549549, + 0.009659651666879654, + 0.016849707812070847, + 0.013907358981668949, + 0.001322998316027224, + 0.026544639840722084, + -0.035562194883823395, + 0.02050471119582653, + 0.00992777943611145, + 0.01105673797428608, + 0.004367658402770758, + 0.008798820897936821, + -0.016031213104724884, + 0.008580085821449757, + -0.002811812562867999, + -0.0028506205417215824, + 0.005507201422005892, + -0.016962602734565735, + 0.0026530527975410223, + -0.004487610422074795, + 0.020815175026655197, + 0.020081350579857826, + -0.011995185166597366, + -0.0014111982891336083, + 0.014224878512322903, + -0.0061387126334011555, + 0.021577220410108566, + -0.018176233395934105, + -0.008728261105716228, + 0.007197110913693905, + -0.01373095903545618, + -0.027447806671261787, + 0.00663263164460659, + -0.0013009484391659498, + 0.008989333175122738, + -0.010965010151267052, + 0.0021750093437731266, + -0.024004481732845306, + -0.0015584920765832067, + -0.005591873079538345, + 0.011825840920209885, + 0.002402564976364374, + -0.009497364051640034, + -0.022917859256267548, + -0.008883493021130562, + 0.01957331970334053, + -0.008417797274887562, + 0.0014835221227258444, + 0.003125804243609309, + -0.02050471119582653, + 0.0011007346911355853, + -0.02200058102607727, + 0.023708131164312363, + 0.012347985059022903, + -0.0006804621662013233, + 0.032570455223321915, + -0.0031116921454668045, + 0.030623001977801323, + -0.019234633073210716, + -0.0373685285449028, + 0.009320964105427265, + 0.010873282328248024, + 0.015057485550642014, + -0.007437014952301979, + -0.017611755058169365, + -0.027151454240083694, + -0.01953098364174366, + -0.011818785220384598, + 0.00423712283372879, + -0.005394305102527142, + -0.00780392624437809, + -0.004060722887516022, + 0.013293487951159477, + 0.0007148600998334587, + -0.0011183746391907334, + 0.009596148505806923, + -0.00041409849654883146, + 0.0032228240743279457, + -0.0026160087436437607, + -0.004614618141204119, + -0.017357738688588142, + 0.0287178847938776, + 0.012743120081722736, + 0.03141327202320099, + -0.008142613805830479, + 0.02717967890202999, + 0.009130452759563923, + 0.003351595951244235, + 0.014140206389129162, + 0.020815175026655197, + -0.006756111513823271, + -0.008079109713435173, + 0.0008528929320164025, + 0.006840783637017012, + -0.0006099022575654089, + 0.015960652381181717, + -0.013738014735281467, + 0.007705142255872488, + 0.001530268113128841, + -0.0006332751945592463, + -0.0289577879011631, + 0.008276677690446377, + 0.003037604270502925, + -0.011317810043692589, + 0.010442866943776608, + -0.005168513394892216, + 0.01210808102041483, + -0.0037784832529723644, + 7.304053724510595e-5, + -0.01035113912075758, + 0.0017013759352266788, + 0.012242144905030727, + -0.009631427936255932, + 0.002951168455183506, + 0.014775245450437069, + 0.0002844446571543813, + -0.01494458969682455, + -0.024286722764372826, + 0.005870584864169359, + -0.018529033288359642, + -0.001071628648787737, + -0.0015664300881326199, + 9.784675057744607e-5, + -0.004808658268302679, + -0.011331922374665737, + 0.02204291708767414, + -0.019954344257712364, + -0.029183579608798027, + -0.01605943590402603, + -0.009370356798171997, + 0.025542687624692917, + -0.016877930611371994, + -0.013088864274322987, + -0.0010901506757363677, + 0.011042626574635506, + -0.026347070932388306, + 0.0001686822943156585, + -0.004462914541363716, + -0.013378159143030643, + 5.58139945496805e-5, + -0.002312601078301668, + 0.0030852321069687605, + 0.010167683474719524, + 0.0012489104410633445, + -0.004575810395181179, + 0.016807371750473976, + -0.023905698210000992, + -0.0028964844532310963, + -0.012058689258992672, + 0.011741169728338718, + -0.017541194334626198, + -1.488373163738288e-5, + 0.007359398994594812, + 0.007444070652127266, + -0.01905117556452751, + 0.01251732837408781, + -0.0001509320572949946, + 0.012101025320589542, + -0.0013803283218294382, + -0.01621466875076294, + -0.03420744463801384, + -0.0029229444917291403, + 0.014662349596619606, + -0.0044135223142802715, + -0.02709500677883625, + -0.024187937378883362, + -0.0036109036300331354, + -0.027913501486182213, + 0.004720458295196295, + -0.000165926045156084, + 0.005426057148724794, + -0.004409994464367628, + -0.0016749158967286348, + 0.020434150472283363, + 0.016750922426581383, + 0.00013946607941761613, + -0.0004229184705764055, + 0.02750425413250923, + -0.008904661051928997, + -0.01140248216688633, + 0.001227742526680231, + -0.01415431872010231, + -0.030481882393360138, + -0.020885733887553215, + 0.0046181464567780495, + -0.008424853906035423, + 0.004201842937618494, + -0.0001638312969589606, + 0.0010195907671004534, + -0.03056655451655388, + 0.014676461927592754, + 0.0010778026189655066, + -0.03084879368543625, + 0.0007135370979085565, + 0.015678413212299347, + -0.022395716980099678, + 6.741779361618683e-5, + 0.04338023439049721, + -0.0038737391587346792, + 0.008248453959822655, + 0.022833187133073807, + -0.007253558840602636, + 0.000541988352779299, + -0.001188052585348487, + 0.0053519695065915585, + -0.003690283512696624, + 0.03505416586995125, + 0.016158219426870346, + -0.021972356364130974, + -0.006773751694709063, + 0.004914497956633568, + 0.017781097441911697, + -0.01941808871924877, + -0.0018610176630318165, + 0.001619350048713386, + -0.01597476378083229, + 0.01775287464261055, + -0.006766695529222488, + -0.015678413212299347, + 0.017654089257121086, + -0.010901506058871746, + 0.001696965890005231, + 0.007571078836917877, + 0.004582866560667753, + -0.004187730606645346, + 0.012792511843144894, + 0.019149960950016975, + -0.008220230229198933, + -0.00855186115950346, + 0.0061528244987130165, + -0.006502096075564623, + 0.005941144656389952, + 0.015988877043128014, + 0.006957207340747118, + -0.015678413212299347, + -0.012298592366278172, + 0.031639065593481064, + -0.012002240866422653, + -0.0049533057026565075, + -0.008036773651838303, + -0.03398165479302406, + -0.0005005343700759113, + -0.010012451559305191, + -0.004762793891131878, + -0.021083302795886993, + 0.014055534265935421, + 0.029183579608798027, + 0.0032686879858374596, + -0.021125636994838715, + -0.020067239180207253, + -0.0009146328666247427, + -0.0059340884909033775, + 0.0036655873991549015, + 0.012164529412984848, + 0.008573029190301895, + 0.02022247016429901, + 0.00968787632882595, + 0.012446768581867218, + -0.010365251451730728, + -0.024173825979232788, + 0.003393931780010462, + 0.02211347594857216, + 0.003919603303074837, + -0.01093678642064333, + -0.005027393810451031, + -0.0059728967025876045, + -0.026982109993696213, + -0.007331174798309803, + -0.015579628758132458, + -0.01093678642064333, + -0.0003545635554473847, + -0.017414186149835587, + 0.00972315575927496, + -0.006981903221458197, + 0.029973851516842842, + -0.0012718423968181014, + 0.0028506205417215824, + -0.00599406473338604, + -0.014147262088954449, + -0.00939858052879572, + -0.01340638380497694, + 0.006057568360120058, + 0.001305358367972076, + 0.003136388026177883, + -0.001723425812087953, + -0.009716100059449673, + 0.015918316319584846, + -0.016271116212010384, + 0.005669489037245512, + 0.01605943590402603, + -0.012651392258703709, + -0.03417922183871269, + 0.008700037375092506, + 0.00584236066788435, + -0.002866496564820409, + 0.004300626460462809, + -0.007980326190590858, + -0.01573486067354679, + -0.007740422617644072, + -0.01453534234315157, + 0.005944672506302595, + 0.003284564008936286, + -0.0012409724295139313, + -0.015678413212299347, + 0.0053131612949073315, + 0.030340762808918953, + 0.017456522211432457, + 0.01360395085066557, + -0.01924874447286129, + 0.015156269073486328, + 0.019093511626124382, + 0.005648321006447077, + -0.0012894824612885714, + 0.013462831266224384, + -0.01920640841126442, + -0.010915618389844894, + 0.0010195907671004534, + 0.01888183318078518, + 0.006766695529222488, + 0.018416136503219604, + 0.006918399594724178, + -0.013618063181638718, + 0.01130369771271944, + -0.008057941682636738, + -0.012298592366278172, + 0.005521313287317753, + -0.008827044628560543, + 0.01423193421214819, + 0.012086912989616394, + -0.011628273874521255, + -0.010358194820582867, + 0.01457767840474844, + -0.0038031793665140867, + -0.0011668845545500517, + 0.002645996632054448, + -0.003325135912746191, + -0.011219026520848274, + -0.019545095041394234, + -0.014916365966200829, + 0.001426192233338952, + 0.008573029190301895, + -0.01023118756711483, + -0.007669862359762192, + 0.014373053796589375, + -0.01152243372052908, + -0.004635786172002554, + 0.0034168637357652187, + -0.010781554505228996, + 0.005436641164124012, + -0.016849707812070847, + 0.01771053858101368, + 0.0011077906237915158, + -0.005609513260424137, + 0.04030382260680199, + -0.0076204705983400345, + -0.0029000123031437397, + 0.03353007137775421, + 0.019389864057302475, + -0.004833354149013758, + 0.017216619104146957, + -0.0013282903237268329, + -0.008664757013320923, + -0.026586975902318954, + 0.022677956148982048, + -0.0010592807084321976, + -0.021238533779978752, + 0.0003075971326325089, + 0.014732909388840199, + 0.006449175998568535, + -0.011578882113099098, + -0.004293570760637522, + -0.027193790301680565, + -0.0013759182766079903, + -0.051621630787849426, + 0.003145208116620779, + -0.002668928587809205, + 0.03542107716202736, + -0.021167973056435585, + -0.004251234699040651, + -0.0001741947780828923, + 0.014351886697113514, + -0.019135847687721252, + 0.016482796519994736, + -9.591738489689305e-5, + -0.028125181794166565, + 0.006533848121762276, + -0.007472294848412275, + -0.001026646699756384, + 0.01457767840474844, + 0.003838459262624383, + 0.007549910806119442, + 0.023919809609651566, + 0.011981072835624218, + -0.0012877184199169278, + -0.018133897334337234, + -0.02126675844192505, + -0.005863528698682785, + 0.021252645179629326, + 0.014464782550930977, + 0.021887684240937233, + -0.019883783534169197, + -0.006396255921572447, + 0.016511019319295883, + -0.011113186366856098, + -0.023228323087096214, + -0.002672456670552492, + 0.0018169177928939462, + 0.016327563673257828, + 0.00209739338606596, + 0.013173535466194153, + 0.00131417834199965, + -0.007818038575351238, + 0.0022790851071476936, + -0.007832149975001812, + 0.0030658282339572906, + -0.012750175781548023, + -0.006787863560020924, + -0.011148465797305107, + -0.00020109575416427106, + 0.020772838965058327, + 0.017781097441911697, + 0.01030880305916071, + -0.001965093659237027, + -0.0020815173629671335, + -0.018176233395934105, + -0.02588137611746788, + -0.01831735298037529, + 0.0014967521419748664, + -0.011197858490049839, + 0.010252355597913265, + -0.013618063181638718, + 0.031159257516264915, + -0.0116847213357687, + 0.0038807950913906097, + -0.008770597167313099, + -0.019065288826823235, + 0.012580832466483116, + 0.005207321606576443, + 0.016285227611660957, + 0.0009419748093932867, + 0.016892043873667717, + 0.01762586645781994, + 0.016934379935264587, + -0.026262398809194565, + 0.0063327522948384285, + -0.022423939779400826, + 0.009109284728765488, + -0.01443655788898468, + -8.84755136212334e-5, + 0.0027341966051608324, + -0.012750175781548023, + 0.018938280642032623, + 0.007733366452157497, + 0.0020726975053548813, + 0.0015673120506107807, + 0.01102145854383707, + -0.00036404505954124033, + -0.011487153358757496, + -0.014161374419927597, + 0.005475449375808239, + 0.0076063587330281734, + -0.009906611405313015, + -0.02393392287194729, + 0.0029899762012064457, + 0.022677956148982048, + -0.018754824995994568, + -0.0067067197524011135, + 0.022226372733712196, + 0.031243929639458656, + -0.015706636011600494, + 0.010054787620902061, + 0.018895944580435753, + -0.004050138872116804, + -0.002298489212989807, + 0.005486033391207457, + -0.04148922860622406, + 0.004727513995021582, + 0.00034243607660755515, + 0.012877183966338634, + -0.025542687624692917, + -0.0072323912754654884, + -0.022057028487324715, + -0.007324119098484516, + 0.01597476378083229, + 0.0033798199146986008, + -0.00540841743350029, + 0.017527082934975624, + 0.005881168879568577, + 0.026657534763216972, + 0.009716100059449673, + -0.002236749278381467, + 0.011705889366567135, + 0.010485203005373478, + -0.017597641795873642, + -0.033784087747335434, + -0.022381603717803955, + -0.00014927831944078207, + -0.0024995848070830107, + -0.00630805641412735, + 0.004512306302785873, + -0.02535923197865486, + -0.024808865040540695, + 0.001129840617068112, + -0.007281783036887646, + 0.009412691928446293, + -0.008819988928735256, + 0.004198314622044563, + 0.012319760397076607, + -0.0007139781373552978, + -0.010506371036171913, + 0.01423193421214819, + -0.006731415633112192, + -0.01494458969682455, + 0.01556551642715931, + -0.0076063587330281734, + 0.023835139349102974, + -0.015678413212299347, + -0.006054040510207415, + -0.01742829754948616, + -0.014133150689303875, + 0.016271116212010384, + 0.01047109067440033, + 0.006593823898583651, + -0.006262192036956549, + 0.005147345829755068, + 0.030792346224188805, + 0.006036400329321623, + 0.0031064001377671957, + -0.01560785248875618, + 0.0072323912754654884, + -0.025331009179353714, + 0.006794919725507498, + 0.009038724936544895, + -0.017696425318717957, + 0.018571369349956512, + -0.006071680691093206, + 0.02616361528635025, + 0.012284480966627598, + 0.029550490900874138, + 0.00327574391849339, + -0.0032369359396398067, + -0.01872660033404827, + 0.0052002654410898685, + 0.005009753629565239, + 0.0010566347045823932, + -0.02681276760995388, + -0.00728883920237422, + -0.0004021915083285421, + -0.020603494718670845, + -0.004596978425979614, + -0.003919603303074837, + -0.0013168243458494544, + -0.02126675844192505, + 0.011219026520848274, + -0.0010310567449778318, + -0.00972315575927496, + -0.0024766528513282537, + 0.016722699627280235, + -0.008911716751754284, + 0.00927862897515297, + 0.01577719673514366, + -0.009596148505806923, + -0.0023143652360886335, + 0.010224130935966969, + -0.016638027504086494, + 0.009201012551784515, + -0.0030975802801549435, + 0.006054040510207415, + -0.0032104761339724064, + -0.005443697329610586, + -0.012658447958528996, + -0.012884239666163921, + 0.01239737682044506, + 0.001080448622815311, + -0.01864192821085453, + 0.0044664423912763596, + 0.005743576679378748, + -0.017329514026641846, + -0.019686216488480568, + -0.006050512660294771, + -0.011219026520848274, + -0.0031734320800751448, + 0.0060258167795836926, + 0.0007929170387797058, + -0.0028859004378318787, + 0.018585480749607086, + 0.016750922426581383, + -0.002520752837881446, + -0.012644336558878422, + 0.0001869837724370882, + -0.011042626574635506, + -0.004057195037603378, + 0.004748682025820017, + -0.02980450727045536, + -0.006371560040861368, + 0.019714439287781715, + 0.018500808626413345, + 0.011070850305259228, + -0.010322915390133858, + 0.01006889995187521, + 0.009673763997852802, + 0.011035569943487644, + 0.027927612885832787, + 0.0027730045840144157, + -0.006452703848481178, + 0.03132859990000725, + -0.010739218443632126, + 0.007221807260066271, + -0.009694932028651237, + 0.025458017364144325, + -0.015706636011600494, + 0.01453534234315157, + -0.017414186149835587, + 0.009264516644179821, + 0.0013291724026203156, + 0.01625700481235981, + 0.007782758213579655, + -0.009539700113236904, + 0.004572282545268536, + -0.0030852321069687605, + -0.02046237513422966, + -0.004688706248998642, + 0.005708296783268452, + -0.010153571143746376, + 0.01273606438189745, + -0.006607935763895512, + 0.0128560159355402, + 0.011501265689730644, + 0.004332378506660461, + -0.017160171642899513, + 0.01231270469725132, + -0.026149503886699677, + -0.0013194703496992588, + -0.014605902135372162, + -0.0061140162870287895, + 0.003505063708871603, + -0.01662391610443592, + -0.012122193351387978, + -0.010845058597624302, + 0.019460424780845642, + 0.007338230963796377, + -0.004378242418169975, + 0.010986178182065487, + 0.022254597395658493, + 0.002721848664805293, + -0.0006046102498658001, + -0.003455671714618802, + -0.014380110427737236, + -0.011353090405464172, + 0.006981903221458197, + 0.00034794857492670417, + 0.00992777943611145, + 0.008438965305685997, + -0.010104179382324219, + -0.00025842568720690906, + 0.016002988442778587, + 0.004928609821945429, + 0.026177728548645973, + 0.0023461170494556427, + -0.018712488934397697, + 0.006734943483024836, + -0.005849416833370924, + 0.002718320582062006, + -0.01645457185804844, + 0.013385215774178505, + 0.0047980742529034615, + 0.00847424566745758, + -0.02924002707004547, + -0.021125636994838715, + -0.0008378989878110588, + -0.005034449975937605, + -0.01560785248875618, + 0.005034449975937605, + -0.004886273760348558, + 0.01394969504326582, + 0.01273606438189745, + 0.017597641795873642, + -0.01876893639564514, + 0.014690574258565903, + -0.010499315336346626, + 0.000742643082048744, + -0.007479350548237562, + 0.004364130552858114, + -0.011790561489760876, + 0.0024378448724746704, + 0.0102735236287117, + 0.013180592097342014, + -0.0029952682089060545, + 0.021803012117743492, + -0.0019739135168492794, + -0.02644585445523262, + 0.019996678456664085, + -0.00234964513219893, + 0.0011042626574635506, + -0.004918025806546211, + 0.010104179382324219, + 0.020448261871933937, + 0.008163781836628914, + 0.014041422866284847, + -0.0007977680070325732, + -0.008911716751754284, + 0.0018363217823207378, + 0.0014067882439121604, + -0.0011492446064949036, + 0.02147843688726425, + -0.01766820251941681, + -0.007197110913693905, + -0.028844892978668213, + 0.002790644532069564, + -0.006519735790789127, + -0.006431535817682743, + -0.04044494032859802, + -0.00032744210329838097, + 0.026135392487049103, + -0.014831693843007088, + -0.0007907120161689818, + -0.01102145854383707, + 0.023750467225909233, + -0.010534594766795635, + 0.011571825481951237, + 0.012707840651273727, + 0.02442784234881401, + 0.004614618141204119, + -0.02471008151769638, + -0.003369235899299383, + -0.006600880064070225, + 0.016242891550064087, + 0.006163408514112234, + -0.00557070504873991, + 0.033586516976356506, + 0.032739799469709396, + 0.0038278752472251654, + -0.005147345829755068, + 0.0060469843447208405, + -0.016609802842140198, + 0.0059870085678994656, + 0.0015778960660099983, + -0.01981322281062603, + 0.002231457270681858, + -0.0010645727161318064, + -0.0020321256015449762, + -0.0004363689513411373, + -0.031639065593481064, + 4.2143008613493294e-5, + -0.009941891767084599, + -0.0027253765147179365, + 0.009878387674689293, + 0.0005768272676505148, + -0.004960361868143082, + -0.0031310960184782743, + -0.01518449280411005, + 0.009786659851670265, + 0.013554559089243412, + 0.04165857285261154, + 0.037227410823106766, + 0.0081708375364542, + -0.005870584864169359, + -0.0019104096572846174, + -0.029296476393938065, + 0.006110488437116146, + -0.0025595608167350292, + -0.015015149489045143, + -0.008220230229198933, + 0.003743203356862068, + 0.010379362851381302, + 0.010033619590103626, + 0.0080649983137846, + -0.01577719673514366, + 0.0024643049109727144, + -0.0015417340910062194, + 0.007437014952301979, + -0.0015787780284881592, + 0.010880338959395885, + 0.010830946266651154, + -0.019686216488480568, + -0.006674967706203461, + 0.00207798951305449, + 0.01645457185804844, + -0.0018380857072770596, + 5.8211928262608126e-5, + -0.005161457695066929, + -0.018627816811203957, + -0.021930020302534103, + 0.025909600779414177, + -0.009638483636081219, + -0.009631427936255932, + 0.005665961187332869, + -0.01059809885919094, + 0.018952392041683197, + 0.00047451540012843907, + 0.010781554505228996, + 0.01030880305916071, + -0.006449175998568535, + -0.002550740959122777, + -0.01811978593468666, + 0.02750425413250923, + -0.006999543402343988, + -0.00607520854100585, + 0.013582782819867134, + 0.015819532796740532, + 0.01907940022647381, + -0.008424853906035423, + -0.0163416750729084, + 0.0004507014527916908, + 0.012538496404886246, + -0.012863071635365486, + -9.327138104708865e-5, + -0.02490764856338501, + 0.02575436793267727, + 0.006191632244735956, + -0.03587266057729721, + -0.01888183318078518, + -0.004106586799025536, + -0.010887394659221172, + 0.007535798475146294, + 0.01447889395058155, + 0.01641223579645157, + 0.007655750494450331, + 0.02725023776292801, + -0.005083841737359762, + -0.007705142255872488, + 0.015255053527653217, + -0.003887851256877184, + 0.011219026520848274, + -0.024456065148115158, + 0.0050062257796525955, + 0.00674199964851141, + -0.018783049657940865, + -0.009751379489898682, + -0.009074004366993904, + -0.027645373716950417, + -0.011465986259281635, + 0.010428755544126034, + 0.0011227845679968596, + 0.0012409724295139313, + 0.023764578625559807, + -0.004036027006804943, + -0.005087369587272406, + 0.00784626230597496, + -0.002965280320495367, + 0.012602000497281551, + -0.00650915177538991, + -0.011600049212574959, + -0.0008925828733481467, + -0.002069169422611594, + -0.018246794119477272, + 0.005630680825561285, + 0.024921761825680733, + -0.01905117556452751, + 0.0009455028339289129, + 0.018303241580724716, + 0.0002612921816762537, + 0.006558544002473354, + -0.012799568474292755, + 0.009751379489898682, + -0.010534594766795635, + 0.009045780636370182, + 0.005824720952659845, + -0.03494126722216606, + 0.0036479474510997534, + 0.0025542688090354204, + -0.0051191216334700584, + 0.01662391610443592, + -0.034800149500370026, + 0.024808865040540695, + -0.0018892416264861822, + -0.0025630888994783163, + -0.003767899237573147, + 0.01528327725827694, + 0.01597476378083229, + 0.011917569674551487, + 0.0021626614034175873, + 0.020250694826245308, + 0.0012568484526127577, + -0.009186900220811367, + 0.021252645179629326, + -0.008043830282986164, + 0.011839953251183033, + -0.032090649008750916, + 0.007486406713724136, + 0.023468226194381714, + -0.0037326193414628506, + 0.0013256443198770285, + 0.01929108053445816, + -0.00650915177538991, + 5.21619676874252e-6, + 0.0035826796665787697, + -0.013921470381319523, + 0.005126177798956633, + 0.033868759870529175, + 0.002750072628259659, + -0.0011862885439768434, + -0.011120242066681385, + -0.0017093138303607702, + 0.011839953251183033, + 0.028492093086242676, + -0.016158219426870346, + -0.0034503797069191933, + -0.009920723736286163, + -0.010005395859479904, + 0.022776739671826363, + -0.00927862897515297, + -0.002190885366871953, + 0.000435486959759146, + -0.01694849133491516, + -0.0013582783285528421, + 0.007105383090674877, + 0.004882745910435915, + 0.008869380690157413, + 0.013843854889273643, + 0.03240111097693443, + -0.011317810043692589, + -0.0066926078870892525, + 0.0020762253552675247, + 0.003409807803109288, + 0.020405927672982216, + 0.023891586810350418, + 0.00568007305264473, + -0.0045652263797819614, + -0.014775245450437069, + -0.0008564209565520287, + -0.0019315775716677308, + 0.0014817581977695227, + 0.010746275074779987, + -0.002048001391813159, + -0.0034909516107290983, + -0.0023514090571552515, + 0.006734943483024836, + -0.01059809885919094, + -0.010527539066970348, + -0.02009546384215355, + -0.011910513043403625, + -0.0002661431790329516, + 0.03254223242402077, + 0.015720749273896217, + 0.024230273440480232, + 0.007945045828819275, + 0.010633379220962524, + 0.008939940482378006, + 0.007592246402055025, + 0.01641223579645157, + 0.00796621385961771, + 0.0011413065949454904, + 0.010682770982384682, + 0.01816212199628353, + -0.0006063742330297828, + -0.006212800275534391, + -0.010153571143746376, + 0.008925829082727432, + 0.008333126083016396, + 0.0184443611651659, + -0.021012742072343826, + -0.003856099210679531, + -0.013794463127851486, + 0.007182999048382044, + 0.013815631158649921, + 0.005736520979553461 + ], + "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e": [ + -0.007839253172278404, + -0.004071979317814112, + -0.010830910876393318, + 0.024265673011541367, + -0.013559414073824883, + -0.023157652467489243, + -0.012963852845132351, + 0.007153664715588093, + -0.022091180086135864, + 0.013469387777149677, + 0.01567850634455681, + 0.005117674823850393, + -0.0005661298055201769, + -0.03736802935600281, + 0.004570588935166597, + 0.0025172866880893707, + -0.034653376787900925, + 0.02717423066496849, + -0.014722837135195732, + 0.007915429770946503, + 0.06121819466352463, + 0.011980483308434486, + -0.042187921702861786, + 0.019528880715370178, + -0.001700986293144524, + -0.006017942447215319, + -0.010775510221719742, + -0.013905671425163746, + -0.029196368530392647, + 0.03193872421979904, + 0.04329594597220421, + 0.006831645965576172, + 0.0007405566284433007, + 0.0251797903329134, + 0.003853837726637721, + -0.019390378147363663, + 0.01803305186331272, + 0.0505811870098114, + 0.014695136807858944, + -0.01072010863572359, + -0.054930172860622406, + 0.006516552064567804, + -0.007673049811273813, + -0.01551230251789093, + -0.055982790887355804, + 0.007011699490249157, + 0.01613556407392025, + -0.04409926012158394, + 0.015249147079885006, + 0.029611878097057343, + 0.001643853960558772, + -0.05750632286071777, + 0.013552489690482616, + -0.00012595090083777905, + 0.022077331319451332, + -0.001241330406628549, + -0.003715334925800562, + 0.0410521999001503, + -0.012617596425116062, + -0.02409946918487549, + -0.010318451561033726, + 0.0074860709719359875, + 0.001090708770789206, + 0.02734043262898922, + -0.045401185750961304, + -0.016246367245912552, + 0.03620460629463196, + 0.00900960061699152, + -0.08709049969911575, + -0.033296048641204834, + 0.021647972986102104, + 0.06980536133050919, + -0.00865641888231039, + 0.0017745658988133073, + -0.010650857351720333, + 0.003156130202114582, + 0.04121840372681618, + 0.0005007738363929093, + 0.030276689678430557, + 0.01511064451187849, + -0.017105083912611008, + -0.0005812785238958895, + 0.010914012789726257, + -0.011814280413091183, + 0.031523216515779495, + 0.02706342749297619, + -0.028046797960996628, + -0.03185562044382095, + -0.009605162777006626, + -0.02144021727144718, + 0.006118356715887785, + 0.02053995057940483, + 0.024791983887553215, + 0.004691779147833586, + -0.016274066641926765, + 0.013268559239804745, + 0.01695273071527481, + 0.010657782666385174, + 0.018600912764668465, + -0.030138187110424042, + -0.01596936210989952, + 0.04789423570036888, + -0.023919416591525078, + 0.025429096072912216, + -0.012513719499111176, + 0.0017234929837286472, + 0.013954146765172482, + -0.02969498001039028, + -0.01115639228373766, + 0.08177199214696884, + 0.010955563746392727, + -0.016744976863265038, + 0.011828131042420864, + 0.02162027172744274, + -0.02445957623422146, + -0.046453807502985, + 0.02914096787571907, + -0.004456324502825737, + -0.00686280895024538, + -0.025775352492928505, + 0.012361366301774979, + 0.03504118323326111, + 0.009155028499662876, + 0.007756151258945465, + -0.032409630715847015, + -0.012042810209095478, + 0.000221496113226749, + -0.032603535801172256, + 0.017534442245960236, + 0.007368343882262707, + -0.03235423192381859, + 0.002977808006107807, + -0.010858612135052681, + -0.015623104758560658, + -0.04096909984946251, + 0.005495094694197178, + -0.0033240648917853832, + 0.030525995418429375, + -0.07440365105867386, + 0.02178647555410862, + -0.02144021727144718, + -0.03866995498538017, + 0.00502418540418148, + -0.008684119209647179, + -0.004477099981158972, + -0.020304495468735695, + -0.021038560196757317, + 0.047395624220371246, + 0.0037187975831329823, + 0.0014508158201351762, + -0.023282304406166077, + -0.029113268479704857, + 0.026398614048957825, + 0.011668852530419827, + -0.015567703172564507, + 0.016163265332579613, + -0.04221562296152115, + 0.0057166991755366325, + 0.023794764652848244, + 0.0011790042044594884, + 0.0025155553594231606, + -0.02933487296104431, + 0.012825350277125835, + 0.04589979350566864, + 0.0696391612291336, + 0.016260217875242233, + 0.015983210876584053, + 0.01911337301135063, + -0.03559519350528717, + 0.023711662739515305, + 0.04401616007089615, + -0.04914075881242752, + -0.002074077958241105, + 0.0012101673055440187, + 0.007032474502921104, + -0.022811394184827805, + 0.0311077069491148, + 0.033683858811855316, + 0.0031890247482806444, + -0.04049818962812424, + -0.01447353232651949, + -0.03678631782531738, + 0.010505429469048977, + 0.019057972356677055, + -0.00029604951851069927, + 0.020567651838064194, + 0.0001645801676204428, + -0.009175803512334824, + -0.007686899974942207, + -0.016841929405927658, + -0.007839253172278404, + -0.015096794813871384, + -0.03130161017179489, + 0.015290698036551476, + -0.029251771047711372, + 0.0013893551658838987, + 0.006679292768239975, + -0.020775405690073967, + 0.002290488453581929, + 0.008095483295619488, + -0.024002518504858017, + -0.05601049214601517, + -0.029916582629084587, + 0.02537369541823864, + -0.027368133887648582, + 0.00824783556163311, + -0.015346099622547626, + 6.789878534618765e-5, + 0.037617333233356476, + -0.05722931772470474, + 0.054930172860622406, + -0.05049808323383331, + -0.007797702215611935, + -0.019251875579357147, + -0.040664393454790115, + 0.0008587167249061167, + -0.01908567175269127, + 0.0351242832839489, + 0.037534233182668686, + -0.04144001007080078, + 0.008420964702963829, + 0.005567808635532856, + 0.008407114073634148, + 0.014085724949836731, + -0.027866743505001068, + -1.5500399968004785e-5, + -0.0010656052036210895, + 0.028032947331666946, + -0.0480327382683754, + -0.025304444134235382, + 0.05301883444190025, + 0.02072000503540039, + -0.03157861530780792, + -0.03919626399874687, + -0.006627354305237532, + 0.012610671110451221, + 0.0009946224745362997, + 0.02394711785018444, + 0.03803284093737602, + -0.048642147332429886, + 0.0002876095240935683, + 0.022797545418143272, + 0.02160642109811306, + 0.028005246073007584, + 0.023434657603502274, + 0.01331010926514864, + 0.03794974088668823, + 0.009279681369662285, + 0.008268611505627632, + -0.031606316566467285, + 0.010242274962365627, + 0.019418079406023026, + 0.017963800579309464, + -0.041910916566848755, + -0.039030060172080994, + 0.041467707604169846, + 0.005817113444209099, + -0.0457058921456337, + 0.003902313532307744, + -0.03343455120921135, + 0.00012400319974403828, + 0.00686280895024538, + 0.027478935196995735, + -0.011357221752405167, + 0.02394711785018444, + -0.006578878499567509, + 0.024182571098208427, + -0.025622999295592308, + -0.016246367245912552, + 0.02886396273970604, + -0.028185300529003143, + -0.0034764178562909365, + -0.0240163691341877, + -0.015346099622547626, + -0.03365615755319595, + 0.014418131671845913, + 0.028032947331666946, + -0.008358637802302837, + -0.010664707981050014, + -0.005661298055201769, + -0.031163107603788376, + 0.0021918052807450294, + -0.006353811360895634, + 0.023019149899482727, + -0.02448727749288082, + -0.013095430098474026, + -0.007458370644599199, + -0.017589842900633812, + -0.027008026838302612, + -0.001464666100218892, + 0.006440375465899706, + 0.0042000943794846535, + 0.02196652814745903, + 0.010020670481026173, + 0.03271433711051941, + 0.010380777530372143, + -0.029030166566371918, + -0.003178637009114027, + -0.02725733071565628, + 0.02016599290072918, + -0.04778343066573143, + 0.011287970468401909, + 0.005900214891880751, + -0.00820628460496664, + 0.0045948270708322525, + -0.017063532024621964, + 0.05049808323383331, + 0.024348774924874306, + -0.05085819214582443, + -0.022575940936803818, + -0.004252032842487097, + 0.0047090919688344, + -0.013933371752500534, + -0.010145322419703007, + 0.013330885209143162, + 0.019071821123361588, + 0.02832380309700966, + -0.012118986807763577, + -0.03523508831858635, + -0.0015192015562206507, + 0.02027679607272148, + 0.014542783610522747, + -0.061993807554244995, + 0.03794974088668823, + 0.0008725670049898326, + -0.03933476656675339, + 0.02563684992492199, + 0.00176417815964669, + 0.003043596865609288, + -0.015913959592580795, + -0.030692199245095253, + -0.0011539006372913718, + -0.02009674161672592, + -0.013566339388489723, + -0.0007756151026114821, + -0.06354504078626633, + -0.022465137764811516, + -0.038143642246723175, + -0.02240973711013794, + -0.052132416516542435, + -0.008884948678314686, + -0.012153612449765205, + -0.018171554431319237, + 0.0032028749119490385, + 0.02383631467819214, + -0.006793557666242123, + -0.035733696073293686, + 0.009141177870333195, + -0.0005189523217268288, + -0.014778237789869308, + 0.0008418367360718548, + -0.008829547092318535, + 0.021564871072769165, + 0.04329594597220421, + 0.056259796023368835, + -0.017340539023280144, + 0.022298935800790787, + -0.008303237147629261, + 0.01855936273932457, + -0.006073343567550182, + 0.021814174950122833, + -0.006630816962569952, + -0.001506216824054718, + -0.015913959592580795, + -0.0018819054821506143, + 0.007901579141616821, + 0.0037638109643012285, + 0.00968826375901699, + 0.0104500288143754, + -0.005342741496860981, + -0.01577545702457428, + 0.012783799320459366, + 0.017534442245960236, + 0.00024237972684204578, + -0.02850385569036007, + -0.01847626082599163, + 0.03346225246787071, + -0.040913697332143784, + -0.03700792044401169, + 0.013898746110498905, + -0.03119080886244774, + 0.01900256983935833, + 0.030719898641109467, + -0.030525995418429375, + 0.0012932689860463142, + 0.04986097291111946, + 0.006447300780564547, + -0.003249619621783495, + 0.02743738517165184, + 0.022271234542131424, + -0.020027490332722664, + 0.04833744093775749, + -0.024958187714219093, + 0.0011322596110403538, + -0.03684172034263611, + 0.03263123705983162, + 0.0020567651372402906, + 0.022395886480808258, + 0.009591312147676945, + -0.028005246073007584, + 0.015221446752548218, + 0.016717275604605675, + 0.031218508258461952, + -0.0019061433849856257, + 0.010512354783713818, + -0.03443177044391632, + -0.01403032336384058, + -0.021301714703440666, + 0.006170295178890228, + 0.007181365042924881, + 0.011004040017724037, + -0.011052515357732773, + -0.015706205740571022, + -0.004830281715840101, + 0.020041340962052345, + -0.04243722930550575, + 0.0009946224745362997, + 0.006672367453575134, + -0.050165679305791855, + -0.043268244713544846, + 0.04149540886282921, + 0.03933476656675339, + -0.04794963449239731, + 0.03789433836936951, + 0.021052410826086998, + 0.014875190332531929, + 0.05191081389784813, + -0.01367021631449461, + -0.028448455035686493, + -0.02969498001039028, + 0.010733959265053272, + 0.02519364096224308, + 0.009632863104343414, + 0.00562320975586772, + -0.003975027706474066, + -0.036980222910642624, + -0.006253397092223167, + 0.008067782036960125, + -0.0004856250889133662, + 0.0002445438294671476, + 0.01079628523439169, + 0.03736802935600281, + 0.0005682939081452787, + 0.008787996135652065, + 0.002293950878083706, + -0.007645349018275738, + -0.04274193197488785, + 0.0014187870547175407, + -0.012749173678457737, + 0.023379255086183548, + 0.016467971727252007, + 0.03675861656665802, + -0.032852839678525925, + 0.01721588522195816, + 0.012028959579765797, + 0.013864120468497276, + -0.011869681067764759, + -0.04498567804694176, + 0.015900110825896263, + -0.014681286178529263, + -0.05049808323383331, + -0.00450480030849576, + 0.016440270468592644, + -0.0029501074459403753, + 0.00773537578061223, + -0.04365605115890503, + 0.005817113444209099, + -0.0029587638564407825, + 0.0017814909806475043, + 0.010235349647700787, + 0.014612034894526005, + -0.011786580085754395, + -0.011904307641088963, + -0.02016599290072918, + 0.013552489690482616, + 0.019307276234030724, + -0.0018836366944015026, + 0.020747704431414604, + 0.013213157653808594, + 0.010373852215707302, + -0.02430722489953041, + -0.035816799849271774, + -0.02609390951693058, + -0.005619747098535299, + 0.02206348069012165, + -0.019653532654047012, + -0.006194533314555883, + -0.02481968328356743, + 0.013905671425163746, + -0.01810230314731598, + 0.016606474295258522, + -0.008053932338953018, + 0.027395835146307945, + 0.011024815030395985, + 0.02734043262898922, + -0.009605162777006626, + -0.01702198199927807, + 0.0004527307173702866, + -0.017700646072626114, + -0.03177252039313316, + 0.026315513998270035, + -0.034930381923913956, + -0.0037707360461354256, + 0.019695084542036057, + -0.020913908258080482, + -0.01053313072770834, + -0.04734022170305252, + -0.005110749509185553, + -0.006274172570556402, + -0.0121951624751091, + -0.05495787039399147, + -0.000628023175522685, + 0.020595351234078407, + -0.0032167253084480762, + -0.00869796983897686, + -0.006786632351577282, + -0.03553979471325874, + 0.013635590672492981, + 0.014404281042516232, + -0.01998594030737877, + 0.024708881974220276, + 0.014805939048528671, + -0.009148103184998035, + 0.026107758283615112, + 0.005820576101541519, + -0.013635590672492981, + 0.0008093751384876668, + -0.006062955595552921, + 0.01121179386973381, + -0.01837930828332901, + -0.006727768573909998, + 0.0024809297174215317, + 0.004414773546159267, + -0.0002999449206981808, + 0.01151649933308363, + 0.012880750931799412, + -0.006402287166565657, + 0.02142636850476265, + 0.015082944184541702, + 0.04376685246825218, + -0.035096585750579834, + 0.0023770525585860014, + 0.023088401183485985, + -0.04490257427096367, + 0.02188342623412609, + 0.00024259614292532206, + -0.013427836820483208, + 0.023877866566181183, + -0.01721588522195816, + 0.0021831488702446222, + -0.007839253172278404, + 0.004335134755820036, + -0.01043617818504572, + -0.013836420141160488, + -0.001507082488387823, + -0.045927494764328, + 0.02581690438091755, + 0.00048605792107991874, + 0.0010032790014520288, + -0.0018628613324835896, + -0.011952782981097698, + 0.017991501837968826, + 0.012402917258441448, + 0.01434887945652008, + -0.0075345467776060104, + -0.01336551085114479, + -0.013413986191153526, + 0.00019000838801730424, + 0.027492785826325417, + 0.004591364413499832, + -0.002603850793093443, + 0.014570483937859535, + 0.036176905035972595, + -0.0037499605678021908, + -0.010865536518394947, + 0.014515083283185959, + -0.01447353232651949, + 0.029528776183724403, + -0.005571271292865276, + 0.0004579245578497648, + 0.02969498001039028, + -0.011828131042420864, + 0.0004986097337678075, + -0.012153612449765205, + -0.00801930669695139, + -0.00900267530232668, + -0.01340706180781126, + -0.010914012789726257, + 0.018268506973981857, + 0.014889040030539036, + 0.008047007024288177, + 0.030553696677088737, + 0.015359949320554733, + -0.026481715962290764, + 0.0025882693007588387, + 0.02409946918487549, + -0.002596925711259246, + 0.002899900311604142, + 0.013268559239804745, + 0.020816955715417862, + 0.0019251875346526504, + 0.036537013947963715, + 0.013919521123170853, + -0.013247783295810223, + -0.018171554431319237, + 0.0317448191344738, + -0.01739593967795372, + 0.020027490332722664, + 0.019944388419389725, + 0.00670353090390563, + -0.04149540886282921, + 0.02601080760359764, + 0.009196579456329346, + -0.011010964401066303, + 0.04512418061494827, + 0.00865641888231039, + 0.01191815733909607, + 0.02501358836889267, + 0.0158724095672369, + -0.02897476591169834, + 0.0121951624751091, + -0.002437647432088852, + 0.05529027804732323, + -0.012735323049128056, + 0.025512197986245155, + -0.012790724635124207, + -0.019251875579357147, + -0.0065407902002334595, + -0.03839294984936714, + 0.004629452712833881, + 0.013033104129135609, + 0.014722837135195732, + 0.017880698665976524, + -0.044708672910928726, + 0.043268244713544846, + -0.0231161005795002, + 0.0052631027065217495, + 0.03434867039322853, + -0.035733696073293686, + -0.016744976863265038, + -0.011239494197070599, + -0.027492785826325417, + 0.013247783295810223, + 0.01973663456737995, + 0.002238549990579486, + 0.01972278393805027, + -0.0008517915848642588, + 0.03351765498518944, + 0.013026178814470768, + 0.036453910171985626, + -0.019653532654047012, + 0.017991501837968826, + 0.013656366616487503, + 0.022922197356820107, + -0.004837207030504942, + -0.043988458812236786, + -0.013836420141160488, + 0.004684853833168745, + 0.011848906055092812, + -0.006260321941226721, + -0.005972928833216429, + -0.012028959579765797, + 0.010346151888370514, + 0.0232269037514925, + -0.029168669134378433, + 0.023185351863503456, + -0.0037291853222995996, + -0.02447342686355114, + -0.0348195806145668, + -0.008815697394311428, + -0.008407114073634148, + -0.02186957746744156, + 0.04005498066544533, + 0.027548186480998993, + 0.009383558295667171, + -0.003774198703467846, + 0.013227008283138275, + -0.008940349332988262, + -0.03529048711061478, + -0.03263123705983162, + -0.015650805085897446, + -0.008067782036960125, + -0.02581690438091755, + 0.005945228505879641, + 0.01854551210999489, + -0.019141072407364845, + 0.008912649005651474, + 0.007763076573610306, + -0.01079628523439169, + 0.017063532024621964, + 0.014625885523855686, + 0.008587167598307133, + -0.016010912135243416, + -0.017243586480617523, + -0.02634321339428425, + -0.012486018240451813, + -0.012790724635124207, + -0.005948691163212061, + 0.00027008025790564716, + 0.006637741811573505, + -0.02196652814745903, + -0.0019632757175713778, + -0.021661821752786636, + 0.0027319658547639847, + 0.011197943240404129, + -0.003434866899624467, + -0.023268453776836395, + -0.03570599481463432, + -0.0023510833270847797, + -0.006045642774552107, + -0.0067104557529091835, + 0.007832327857613564, + -0.001736477599479258, + -0.01973663456737995, + 0.011336445808410645, + -0.0052042389288544655, + -0.02053995057940483, + 0.004065054468810558, + -0.0024359163362532854, + -0.01649567112326622, + -0.020941607654094696, + 0.0035456691402941942, + 0.0009504748159088194, + -0.03426556661725044, + -0.010630082339048386, + 0.02725733071565628, + 0.026066208258271217, + 0.002719846786931157, + 0.01049850508570671, + -0.0012032422237098217, + 0.022035779431462288, + 0.00506227370351553, + -0.015359949320554733, + 0.009238130412995815, + 0.001040501520037651, + 0.00125604635104537, + -0.01677267625927925, + 0.009342007339000702, + 0.036814019083976746, + -0.041633911430835724, + -0.005917527712881565, + 0.0025571060832589865, + 0.004795656073838472, + -0.0059937043115496635, + 0.0044251615181565285, + 0.01811615377664566, + 0.027008026838302612, + 0.01434887945652008, + -0.005242327228188515, + 0.030165888369083405, + 0.05515177547931671, + -0.016841929405927658, + 0.023185351863503456, + 0.01614941470324993, + -0.005526257678866386, + 0.005173075944185257, + 0.006824720650911331, + 0.007562247570604086, + -0.024805834516882896, + 0.015346099622547626, + 0.02599695697426796, + 0.035013481974601746, + 0.01828235574066639, + -0.0019632757175713778, + -0.032326530665159225, + -0.014515083283185959, + -0.003673784201964736, + 0.04005498066544533, + 0.027575887739658356, + -0.02933487296104431, + 0.025429096072912216, + 0.015304548665881157, + 0.009071926586329937, + 0.011066365987062454, + 0.0013893551658838987, + -0.01331010926514864, + 0.012666071765124798, + 0.0010586800053715706, + -0.04484717547893524, + -0.003043596865609288, + -0.0033032894134521484, + -0.011287970468401909, + -0.030498294159770012, + 0.007188290357589722, + -0.006402287166565657, + -0.0023718588054180145, + 0.04509647935628891, + 0.012035884894430637, + -0.015609254129230976, + 0.011724254116415977, + 0.015941660851240158, + 0.015262997709214687, + -0.004037353675812483, + 0.004068516660481691, + -0.00032007109257392585, + -0.01614941470324993, + 0.02897476591169834, + -0.03229882940649986, + 0.00019509403500705957, + 0.022174281999468803, + -0.010076071135699749, + -0.03828214481472969, + 0.010581606067717075, + -0.0059937043115496635, + 0.00388846336863935, + -0.025706101208925247, + -0.0028358427807688713, + 0.018947169184684753, + 0.030858401209115982, + 0.032132625579833984, + -0.003263469785451889, + -0.023157652467489243, + -0.03598300367593765, + 0.017977651208639145, + -0.0026886838022619486, + 0.005086511839181185, + -0.007333718240261078, + 0.016897330060601234, + -0.008822621777653694, + -0.009224279783666134, + -0.01017302367836237, + 0.012049734592437744, + 0.006236084271222353, + -0.004231257364153862, + -0.027326583862304688, + -0.02556759864091873, + 0.022825244814157486, + -0.015609254129230976, + 0.03412706404924393, + 0.032603535801172256, + -0.004774880595505238, + 0.00521808909252286, + -0.001549498992972076, + 0.01837930828332901, + -0.026606369763612747, + 0.04130150377750397, + 0.009522060863673687, + -0.020913908258080482, + -0.028005246073007584, + 0.04481947422027588, + -0.030276689678430557, + -0.02491663582623005, + -0.021634122356772423, + -0.012963852845132351, + 0.017063532024621964, + -0.0304705947637558, + 0.0008067782619036734, + -0.025249041616916656, + 0.016925029456615448, + -0.01232674065977335, + -0.008137033320963383, + 0.001362520270049572, + -0.023019149899482727, + -0.003746498143300414, + -0.0196258332580328, + 0.018074601888656616, + -0.024639630690217018, + 0.01963968388736248, + 0.009625937789678574, + 0.029611878097057343, + 0.004085829481482506, + 0.015359949320554733, + -0.034210167825222015, + -0.03794974088668823, + -0.011239494197070599, + -0.016481822356581688, + 0.006914747413247824, + -0.031883321702480316, + -0.007361418567597866, + -0.012139761820435524, + -0.018074601888656616, + -0.0029068253934383392, + 0.005443156231194735, + -0.009965269826352596, + 0.00968133844435215, + -0.025886155664920807, + -0.031218508258461952, + -0.0322711281478405, + 0.01367021631449461, + -0.02087235637009144, + -0.00418970687314868, + 0.0008037484949454665, + 0.003523162566125393, + -0.021177062764763832, + -0.05218781903386116, + 0.02698032557964325, + 0.02087235637009144, + 0.004754105117172003, + -0.004837207030504942, + 0.002396096708253026, + -0.007202140521258116, + 0.017714494839310646, + 0.0011686165817081928, + -0.03498578071594238, + -0.015817008912563324, + 0.004764493089169264, + 0.01300540380179882, + -0.03157861530780792, + 0.00414469325914979, + -0.0030158963054418564, + -0.0004090158035978675, + -0.003971565049141645, + 0.004944546613842249, + -0.009639788419008255, + -0.006256859749555588, + -0.05487477034330368, + 0.0007686900207772851, + 0.01801920123398304, + -0.02574765309691429, + -0.005100362002849579, + -0.013282408937811852, + -0.005387755110859871, + -0.002834111452102661, + -0.03880845755338669, + 0.018434708938002586, + 0.009909868240356445, + 0.011232568882405758, + -0.010096847079694271, + -0.004916845820844173, + -0.013337810523808002, + 0.0025951943825930357, + 0.019681233912706375, + -0.015913959592580795, + 0.006049105431884527, + 0.01890561915934086, + -0.0031907560769468546, + 0.00040014294791035354, + 0.014999842271208763, + 0.0155538534745574, + 0.008483290672302246, + -0.04149540886282921, + -0.008462514728307724, + 0.0025138240307569504, + 0.010159173049032688, + 0.031218508258461952, + 0.0008119720732793212, + 0.018088452517986298, + 0.003315408481284976, + -0.04858674854040146, + -0.026149310171604156, + -0.01908567175269127, + -0.015415350906550884, + 0.01043617818504572, + -0.031523216515779495, + -0.0193626768887043, + -0.0047125546261668205, + -0.03030439093708992, + 0.04955626651644707, + -0.006263784598559141, + 0.015221446752548218, + -0.0013876239536330104, + -0.016384869813919067, + 0.02347620762884617, + -0.03454257547855377, + 0.0054293060675263405, + 0.026121608912944794, + -0.004567126743495464, + -0.002525943098589778, + 0.014542783610522747, + -0.01044310349971056, + -0.009951419197022915, + -0.023891715332865715, + 0.012735323049128056, + -0.0001386109070153907, + -0.058337338268756866, + 0.00629494758322835, + -0.04534578323364258, + 0.008137033320963383, + -0.007749225944280624, + 0.0032028749119490385, + 0.010830910876393318, + -0.02501358836889267, + -0.018600912764668465, + 0.008185509592294693, + 0.0003588085528463125, + -0.014321179129183292, + 0.003680709283798933, + -0.0008807906415313482, + -0.009750589728355408, + 0.011087140999734402, + 0.020512249320745468, + -0.009840616956353188, + -0.016828078776597977, + -0.0015486333286389709, + -0.04246492683887482, + 0.019611982628703117, + -0.011904307641088963, + -0.0005431902827695012, + 0.006194533314555883, + 0.014224227517843246, + 0.004383610561490059, + -0.06271402537822723, + 0.004639840684831142, + 0.0013088504783809185, + 0.009432033635675907, + -0.005533182993531227, + 0.0017546560848131776, + -0.03282513841986656, + 0.02590000443160534, + -0.021897276863455772, + 0.016301767900586128, + -0.008836472406983376, + -0.04055359214544296, + 0.038337547332048416, + 0.014321179129183292, + -0.006485389079898596, + 0.020318346098065376, + -0.007153664715588093, + 0.022201983258128166, + 0.03927936777472496, + 0.007084412965923548, + 0.00430050864815712, + -0.0011106185847893357, + -0.0026003881357610226, + 0.009591312147676945, + 0.014736687764525414, + -0.0152352973818779, + -0.0475064255297184, + -0.017340539023280144, + 0.018780967220664024, + -0.006011017132550478, + -0.01088631246238947, + -0.012202087789773941, + 0.02009674161672592, + 0.007513771764934063, + 0.013289334252476692, + 0.0010439640609547496, + -0.01821310445666313, + 0.0019563506357371807, + 0.006125282030552626, + -0.016010912135243416, + -0.0009063270408660173, + -0.005616284441202879, + -0.006073343567550182, + -0.006893971934914589, + -0.013455537147819996, + -0.02053995057940483, + -0.05794953182339668, + -0.009494360536336899, + -0.008843397721648216, + 0.025055138394236565, + -0.004168931394815445, + 0.005186926107853651, + -0.011364147067070007, + 0.004390535410493612, + 0.017520591616630554, + -0.004224332515150309, + -0.022298935800790787, + 0.026052357628941536, + 0.004255495499819517, + 0.026135459542274475, + -0.025484496727585793, + 0.017728345468640327, + -0.025429096072912216, + 0.02894706465303898, + 0.007250616326928139, + -0.017160484567284584, + 0.006229158956557512, + 0.01828235574066639, + 0.03337915241718292, + 0.014625885523855686, + 0.04099680110812187, + 0.019847437739372253, + -0.03066449798643589, + 0.04961166903376579, + -0.012790724635124207, + -0.011717328801751137, + 0.006887046620249748, + -0.0007405566284433007, + -0.01821310445666313, + -0.00757609773427248, + 0.012846125289797783, + 0.003975027706474066, + 0.009625937789678574, + -0.011343371123075485, + 0.00941125862300396, + 0.027755942195653915, + 0.006177220493555069, + 0.012167462147772312, + -0.014667436480522156, + 0.014376580715179443, + -0.005131524987518787, + -0.006932060234248638, + 0.011599601246416569, + -0.0351242832839489, + -0.013192382641136646, + 0.016107864677906036, + 0.022354336455464363, + -0.014722837135195732, + 0.002418603515252471, + -0.017714494839310646, + -0.006073343567550182, + -0.01331010926514864, + 0.011689627543091774, + 0.0017096427036449313, + 0.0002988628693856299, + -0.011530349962413311, + 0.053378939628601074, + 0.0014889040030539036, + 0.005256177391856909, + 0.02645401656627655, + -0.009148103184998035, + -0.003601070260629058, + 0.025429096072912216, + 0.0016351975500583649, + 0.023088401183485985, + -0.010346151888370514, + 0.004619065206497908, + -0.029971985146403313, + 0.037174124270677567, + 0.03398856148123741, + 0.0032980956602841616, + 0.017326688393950462, + 0.04124610498547554, + 0.013455537147819996, + 0.011945857666432858, + 0.01448738295584917, + 0.010581606067717075, + -0.00043347018072381616, + 0.01981973648071289, + 0.00398887787014246, + -0.0016603011172264814, + -0.005869051907211542, + 0.0058725145645439625, + -0.0025951943825930357, + -0.0016481821658089757, + -0.01223671343177557, + 0.01367021631449461, + 0.018961019814014435, + -0.002361471066251397, + 0.03074759989976883, + 0.004830281715840101, + 0.03487497940659523, + 0.022520538419485092, + -0.011994333937764168, + -0.002293950878083706, + 0.02152331918478012, + -0.01739593967795372, + -0.0043178219348192215, + 0.007458370644599199, + -0.03022128902375698, + -0.002245475072413683, + 0.02511053904891014, + 0.009584386833012104, + 0.009750589728355408, + 0.010789360851049423, + -0.03772813454270363, + 0.0006907822098582983, + 0.01999979093670845, + -0.006021405104547739, + 0.008095483295619488, + -0.00773537578061223, + -0.022354336455464363, + -0.007306017447263002, + -0.026121608912944794, + -0.014542783610522747, + 0.00705671263858676, + -0.009203504770994186, + 0.025789203122258186, + 0.023240752518177032, + -0.04426546394824982, + -0.015540002845227718, + 0.009889093227684498, + -0.01152342464774847, + -0.0018420859705656767, + -0.009695189073681831, + 0.011066365987062454, + -0.006869733799248934, + -0.003434866899624467, + -0.020124442875385284, + -0.001255180686712265, + -0.0012456587282940745, + 0.028351502493023872, + 0.01926572620868683, + 0.007153664715588093, + -0.0042485701851546764, + -0.018974870443344116, + 0.0005830097943544388, + 0.014805939048528671, + 0.0008665075292810798, + 0.010914012789726257, + -0.009245055727660656, + 0.01659262366592884, + 0.006256859749555588, + 0.014404281042516232, + -0.00670353090390563, + -0.02314380183815956, + 0.014251927845180035, + -0.011994333937764168, + -0.0052250144071877, + -0.014944441616535187, + -0.021800324320793152, + -0.004058129154145718, + -0.006786632351577282, + -0.00773537578061223, + 0.012118986807763577, + -0.007029012311249971, + 0.007679974660277367, + 0.0006245606346055865, + 0.015429200604557991, + 0.006745081394910812, + 0.0034971931017935276, + -0.009203504770994186, + -0.0010526205878704786, + 0.006623891647905111, + -0.015913959592580795, + -0.023891715332865715, + -0.007998530752956867, + 0.0018974869744852185, + -0.0005998898413963616, + -0.019528880715370178, + -0.0034539110492914915, + -0.014092650264501572, + -0.01693888008594513, + -0.012174387462437153, + 0.023656262084841728, + 0.00829631183296442, + -0.04670311138033867, + -0.019708935171365738, + -0.020941607654094696, + 0.01865631341934204, + 0.024251822382211685, + 0.01988898776471615, + 0.0007301689474843442, + -0.001880174153484404, + -0.010526205413043499, + -0.0065407902002334595, + 0.014210376888513565, + 0.019487330690026283, + -0.0031890247482806444, + 0.0023043386172503233, + 0.018226955085992813, + -0.021897276863455772, + 0.013123131357133389, + -0.03664781525731087, + -0.01767294481396675, + -0.011668852530419827, + -0.019141072407364845, + -0.0072229159995913506, + 0.005907140206545591, + 0.008324012160301208, + -0.0030314777977764606, + -0.005377367604523897, + -0.030858401209115982, + 0.01605246402323246, + 0.016094014048576355, + -0.013060804456472397, + 0.020816955715417862, + -0.025803053751587868, + 0.015124495141208172, + -0.03963947296142578, + 0.0062672472558915615, + -0.014335029758512974, + -0.011945857666432858, + -0.019348828122019768, + -0.00670353090390563, + -0.021315565332770348, + 0.02724348194897175, + 0.00037352446815930307, + 0.010553905740380287, + -0.011668852530419827, + 0.0032375005539506674, + -0.01703583262860775, + -0.007970830425620079, + -0.047755733132362366, + -0.021661821752786636, + 0.02304684929549694, + -0.013476313091814518, + -0.014445831999182701, + 0.00040750092011876404, + -0.01675882749259472, + 0.00343140447512269, + 0.0006197995971888304, + 0.010657782666385174, + -0.016371019184589386, + 0.009542835876345634, + -0.015817008912563324, + -0.016301767900586128, + -0.02709112875163555, + -0.018490111455321312, + 0.016481822356581688, + 0.017465190961956978, + 0.015290698036551476, + -0.035096585750579834, + -0.02144021727144718, + -0.0007310345536097884, + -0.01623251661658287, + 0.006537327542901039, + -0.010900162160396576, + -0.020429149270057678, + 0.0252905935049057, + 0.0029864644166082144, + -0.015540002845227718, + 0.00896804966032505, + -0.01227826438844204, + 0.031523216515779495, + -0.013642515987157822, + 0.005512407515197992, + 0.01792224869132042, + 0.0019061433849856257, + 0.011682703159749508, + 0.01757599227130413, + -0.039307065308094025, + 0.009570536203682423, + 0.04132920503616333, + 0.019251875579357147, + -0.012084360234439373, + 0.013053879141807556, + 0.008441739715635777, + -0.0026592519134283066, + 0.0007873012800700963, + 0.0071051884442567825, + 0.009889093227684498, + 0.023877866566181183, + -0.009168879128992558, + -0.002482660813257098, + -0.014695136807858944, + -0.00864949356764555, + -0.002920675789937377, + -0.022298935800790787, + -0.0031959498301148415, + 0.0022991448640823364, + 0.00502072274684906, + 0.017991501837968826, + 0.004781805910170078, + 0.006384974345564842, + 0.00414469325914979, + 0.014293478801846504, + -0.011405697092413902, + 0.011938933283090591, + 0.00036703216028399765, + 0.02966727875173092, + 0.008746445178985596, + -0.012299040332436562, + 0.018407009541988373, + 0.022714443504810333, + -0.011239494197070599, + -0.0009963538032025099, + 0.01603861339390278, + -0.002491317456588149, + -0.005851739086210728, + -0.014515083283185959, + -0.0001510545116616413, + -0.022963747382164, + -0.012146687135100365, + 0.006388437002897263, + -0.005259640049189329, + -0.0039854152128100395, + -0.0006449032225646079, + -0.021107811480760574, + -0.03282513841986656, + 0.010664707981050014, + 0.014875190332531929, + 0.034210167825222015, + 0.003808824345469475, + -0.00629494758322835, + -0.015720056369900703, + 0.0017702376935631037, + -0.021412517875432968, + -0.005972928833216429, + 0.021564871072769165, + -0.029168669134378433, + -0.006516552064567804, + -0.004421698860824108, + 0.0020827343687415123, + 0.01792224869132042, + -0.03578909859061241, + -0.02098315954208374, + -0.003398509928956628, + 0.004002728033810854, + 0.0037361104041337967, + -0.0008712685666978359, + -0.008794921450316906, + 0.012659146450459957, + -0.018531661480665207, + 0.004563664086163044, + -0.003853837726637721, + -0.0035266249906271696, + 0.010366926901042461, + -0.013739467598497868, + -0.020512249320745468, + -0.0011097529204562306, + 0.00022030585387255996, + 0.006717381067574024, + 0.014238078147172928, + 0.0012742248363792896, + 0.002261056564748287, + -0.008047007024288177, + 0.0013789675431326032, + 0.005557420663535595, + -0.0007950920844450593, + 0.029030166566371918, + 0.02250668965280056, + 0.0017182991141453385, + 0.0038261371664702892, + -0.022894496098160744, + -0.014210376888513565, + -0.004920308478176594, + -0.008836472406983376, + 0.018517810851335526, + -0.016911180689930916, + 0.0026852211449295282, + -0.002309532603248954, + 0.020456848666071892, + 0.008628718554973602, + -0.015581553801894188, + -0.014944441616535187, + 0.019390378147363663, + -0.005740936845541, + 0.0018836366944015026, + -0.002877393737435341, + 0.003964639734476805, + -0.03817134350538254, + 0.0074860709719359875, + -0.005557420663535595, + 0.0034677614457905293, + -0.011765804141759872, + -0.021274015307426453, + -0.003279051510617137, + -0.053378939628601074, + -0.008490215986967087, + -0.003028015373274684, + -0.0020273332484066486, + 0.012804574333131313, + 0.0032097999937832355, + 0.009085777215659618, + 0.001304522273130715, + 0.022963747382164, + -0.015706205740571022, + 0.022963747382164, + -0.004767955280840397, + -0.00012714114564005286, + -0.003509312169626355, + 0.002358008408918977, + 0.03484727814793587, + -0.012769948691129684, + -0.002195267705246806, + 0.00737526873126626, + 0.016107864677906036, + 0.017520591616630554, + 0.020041340962052345, + 0.0031613241881132126, + -0.005173075944185257, + -0.011641152203083038, + 0.016454121097922325, + -0.00042935836245305836, + -0.007333718240261078, + -0.033573053777217865, + -0.0017070458270609379, + 0.035456690937280655, + -0.010713184252381325, + -0.01079628523439169, + -0.022451287135481834, + 0.014972141943871975, + 0.01937652751803398, + 0.0026644456665962934, + 0.007963905110955238, + 0.009217354469001293, + -0.011232568882405758, + 0.004016578197479248, + -0.00018687044212128967, + -0.011357221752405167, + 0.018323907628655434, + -0.004716016817837954, + -0.00802623201161623, + -0.012472168542444706, + 0.03709102421998978, + -0.015387650579214096, + 0.011502649635076523, + -0.010200724005699158, + 0.003774198703467846, + 0.05049808323383331, + -0.017811447381973267, + 0.03254813328385353, + -0.01639872044324875, + -0.0008271207916550338, + -0.007022086996585131, + -0.0039854152128100395, + 0.010775510221719742, + -0.02123246341943741, + 0.015304548665881157, + -0.0031301609706133604, + -0.04448706656694412, + 0.020692303776741028, + -0.008940349332988262, + -0.006132206879556179, + 0.034376371651887894, + 0.009030376560986042, + 0.005848276428878307, + 0.027575887739658356, + -0.002311263931915164, + 0.013102355413138866, + 0.007492996286600828, + 0.005571271292865276, + 0.007908504456281662, + -0.03365615755319595, + 0.004393998067826033, + -0.005654372740536928, + -0.018407009541988373, + -0.01183505542576313, + 0.012215938419103622, + 0.013254708610475063, + 0.0049895597621798515, + 0.030803000554442406, + -0.00802623201161623, + -0.00834478810429573, + -0.0062187714502215385, + -0.02403021790087223, + -0.001004144549369812, + -0.010581606067717075, + 0.012181312777101994, + -0.005273490212857723, + -0.007520696613937616, + -0.011281045153737068, + -0.010214574635028839, + 0.012991553172469139, + -0.017894549295306206, + 0.02144021727144718, + 0.005834426265209913, + -0.0007513771415688097, + 0.03432096913456917, + -0.001857667462900281, + -0.00614259485155344, + 0.00546739436686039, + -0.008282461203634739, + 0.008047007024288177, + 0.009030376560986042, + 0.001039635855704546, + 0.018947169184684753, + -0.002541524590924382, + 0.0294179730117321, + -0.002115628682076931, + -0.04177241399884224, + -0.02268674224615097, + -0.0046433028765022755, + 0.03379466012120247, + -0.01151649933308363, + -0.0013227007584646344, + -0.019168773666024208, + -0.02160642109811306, + 0.010353077203035355, + 0.009840616956353188, + -0.019681233912706375, + 0.00654425285756588, + 0.0038573001511394978, + -0.0023735901340842247, + -0.007472220808267593, + -0.02116321213543415, + 0.026841823011636734, + 0.00046528250095434487, + 0.003607995342463255, + -0.02278369478881359, + -0.01267992239445448, + 0.0067208437249064445, + 0.0174097903072834, + 0.018573211506009102, + 0.008919574320316315, + 0.028642358258366585, + -0.014930590987205505, + 0.004574051592499018, + -0.0028306490276008844, + 0.012513719499111176, + 0.003350034123286605, + 0.00558165879920125, + 0.009425109252333641, + 0.01089323777705431, + -0.006973611190915108, + -0.0181992556899786, + 0.006578878499567509, + -0.003434866899624467, + 0.008386338129639626, + 0.007763076573610306, + 0.011502649635076523, + 0.01567850634455681, + -0.005134987644851208, + 0.007132889237254858, + -0.025055138394236565, + -0.0014733225107192993, + 0.013781018555164337, + -0.028753161430358887, + 0.0006938119768165052, + -0.030553696677088737, + 0.07207680493593216, + -0.004767955280840397, + 0.0059313783422112465, + 0.00017161350115202367, + 0.02412717044353485, + 0.005688998382538557, + -0.012659146450459957, + -0.0003841285943053663, + 0.028102198615670204, + 0.00837941374629736, + -0.011828131042420864, + -0.0019494255539029837, + 0.0125898951664567, + -0.00860794261097908, + -0.021370965987443924, + -0.023462356999516487, + 0.012084360234439373, + -0.0036564713809639215, + 0.022617490962147713, + 0.02655096724629402, + 0.0029310635291039944, + -0.012354440987110138, + -0.010290750302374363, + -0.0023129950277507305, + -0.008781070820987225, + 0.026287812739610672, + -0.003580294782295823, + 0.011281045153737068, + 0.03166171908378601, + 0.011578826233744621, + -0.00011383190576452762, + -0.013247783295810223, + -0.0016464508371427655, + -0.015013692900538445, + -0.0038919257931411266, + 0.0166618749499321, + 0.0007193484343588352, + 0.02563684992492199, + -0.013843345455825329, + -0.0009859660640358925, + 0.025345994159579277, + -0.02966727875173092, + 0.02491663582623005, + 0.02716038003563881, + 0.00031357878469862044, + 0.005342741496860981, + 0.011945857666432858, + -0.003251350950449705, + -0.014985992573201656, + 0.005495094694197178, + -0.011945857666432858, + -0.019958239048719406, + 0.014501232653856277, + -0.01731283776462078, + -0.011329521425068378, + -0.01197355892509222, + 0.00027202797355130315, + -0.0017849535215646029, + -0.00654425285756588, + 0.005093436688184738, + -0.023019149899482727, + 0.005962541326880455, + -0.018490111455321312, + -0.01623251661658287, + -0.016094014048576355, + -0.00542584341019392, + -0.015803158283233643, + 0.0026644456665962934, + -0.014279628172516823, + 0.016564922407269478, + 0.0076522743329405785, + -0.015082944184541702, + -0.0014594722306355834, + -0.01900256983935833, + -0.012001259252429008, + 0.0020273332484066486, + -0.0021052411757409573, + 0.04534578323364258, + 0.01988898776471615, + 0.007032474502921104, + 0.0231161005795002, + 0.0017520592082291842, + 0.01839315891265869, + -0.013462462462484837, + 0.010145322419703007, + -0.010630082339048386, + -0.017077382653951645, + -0.001657704240642488, + 0.011004040017724037, + -0.03271433711051941, + -0.015706205740571022, + -0.014092650264501572, + 0.009570536203682423, + -0.0009894287213683128, + -0.005744399502873421, + 0.007589947897940874, + -0.0055366456508636475, + -0.02789444476366043, + 0.022922197356820107, + -0.00378804886713624, + 0.014612034894526005, + 0.014196527190506458, + -0.008400188758969307, + -0.003299826756119728, + 0.008663344196975231, + -0.007721525616943836, + 0.010387702845036983, + 0.02797754481434822, + -0.010713184252381325, + 0.008912649005651474, + 0.0012179581681266427, + -0.009445884265005589, + 0.019611982628703117, + 0.002146791899576783, + -0.032686635851860046, + -0.002963957842439413, + -0.00022766381152905524, + 0.0015754682244732976, + -0.003192487172782421, + -0.0035768323577940464, + -0.004113530274480581, + -0.009196579456329346, + -0.006980536039918661, + -0.014861339703202248, + -0.00896804966032505, + 0.006810870487242937, + -0.00681433267891407, + -0.0009210429852828383, + 0.01749289035797119, + 0.009404333308339119, + 0.009750589728355408, + 0.009542835876345634, + 0.030276689678430557, + -0.014058024622499943, + -0.007853102870285511, + -0.015900110825896263, + -0.00614259485155344, + 0.010110696777701378, + 0.01008992176502943, + -0.00761764869093895, + 0.016634173691272736, + 0.011890457011759281, + 0.003012433648109436, + 0.01161345187574625, + 0.009528986178338528, + -0.004207019694149494, + -0.008400188758969307, + -0.03191102296113968, + 0.013123131357133389, + 0.013732543215155602, + 0.01721588522195816, + -0.02331000380218029, + -0.004470174666494131, + -0.013150831684470177, + 0.002146791899576783, + 0.012901526875793934, + -0.011786580085754395, + 0.02547064609825611, + -0.05252022296190262, + 0.011447248049080372, + 8.953983342507854e-5, + -0.017866848036646843, + -0.002010020427405834, + 0.005959078669548035, + -0.005734011996537447, + 0.0022402810864150524, + -0.008199360221624374, + 0.011100991629064083, + 0.009847542271018028, + 0.0028825874906033278, + -0.022257383912801743, + -0.012105136178433895, + 0.003846912644803524, + -0.014085724949836731, + -0.0014845757978037, + 8.239828457590193e-5, + 0.008774146437644958, + 0.006384974345564842, + -0.013060804456472397, + 0.02142636850476265, + -0.0013850269606336951, + -0.005117674823850393, + 0.008414039388298988, + 0.002705996623262763, + -0.006689680274575949, + -0.011308745481073856, + 0.011821205727756023, + -0.009355857037007809, + 0.011087140999734402, + 0.001765043823979795, + -0.007067100144922733, + 0.018503960222005844, + 0.014861339703202248, + 0.009965269826352596, + -0.013607890345156193, + 0.0003010269720107317, + 0.006727768573909998, + 0.0014889040030539036, + 0.004965321626514196, + -0.021495619788765907, + -0.012853050604462624, + 0.010595456697046757, + 0.02114936336874962, + 0.015484602190554142, + 0.0053219664841890335, + -0.0014153245138004422, + -0.02930717170238495, + -0.011648077517747879, + -0.010789360851049423, + 0.0013001940678805113, + -0.027492785826325417, + -0.026758721098303795, + 0.011191017925739288, + 0.001643853960558772, + -0.016980431973934174, + -0.016911180689930916, + -0.01614941470324993, + -0.0021571796387434006, + -0.005567808635532856, + -0.001125334412790835, + 0.01079628523439169, + -0.005238864570856094, + -0.010159173049032688, + -0.025429096072912216, + 0.023240752518177032, + 0.003220187732949853, + 0.016980431973934174, + 0.004310896620154381, + 3.495029159239493e-5, + -0.0056093595921993256, + 0.010865536518394947, + -0.0022333560045808554, + -0.018974870443344116, + 0.008137033320963383, + -0.002491317456588149, + 0.024584230035543442, + 0.006679292768239975, + -0.020318346098065376, + 0.018503960222005844, + 0.006475001107901335, + -0.009383558295667171, + -0.006526939570903778, + -0.005640522576868534, + -0.0006838570698164403, + 0.017963800579309464, + -0.0003280782839283347, + -0.0019251875346526504, + 0.005910602863878012, + 0.009882167913019657, + -2.711893648665864e-5, + -0.01380179449915886, + -0.0118766063824296, + -0.00761764869093895, + 0.007825402542948723, + 0.023697812110185623, + 0.0045463512651622295, + -0.00016934119048528373, + -0.0008184643811546266, + -0.02108011022210121, + -0.016454121097922325, + -0.01519374642521143, + -0.009134253486990929, + -0.024154871702194214, + -0.0012759561650454998, + 0.009155028499662876, + 0.012984627857804298, + -0.019431928172707558, + 0.02027679607272148, + 0.005959078669548035, + -0.0007396909641101956, + 0.02242358773946762, + 0.006308798212558031, + 0.003121504560112953, + 0.00837941374629736, + 0.01448738295584917, + 0.005775562487542629, + 0.009522060863673687, + 0.00434898491948843, + 0.015373799949884415, + -0.012908452190458775, + -0.002546718344092369, + -0.013656366616487503, + 0.0023735901340842247, + -0.017866848036646843, + 0.007035937160253525, + -0.026966476812958717, + 0.008725670166313648, + 0.0027077277190983295, + 0.00824783556163311, + 0.013663291931152344, + 0.0075345467776060104, + -0.014681286178529263, + 0.020761555060744286, + -0.018628614023327827, + 0.002210849430412054, + 0.02779749222099781, + 0.02626011148095131, + 0.0001652294013183564, + -0.008843397721648216, + 0.006222233641892672, + -0.006509626749902964, + -0.008483290672302246, + -0.0024584229104220867, + -0.011281045153737068, + 0.008317086845636368, + 0.00645768828690052, + -0.0007440192275680602, + 0.00251036137342453, + -0.019515030086040497, + 0.017008131369948387, + 0.007749225944280624, + -0.010782435536384583, + 0.01668957620859146, + -0.017908399924635887, + -0.009258905425667763, + -0.005688998382538557, + 0.005682073533535004, + 0.02196652814745903, + -0.004324746783822775, + -0.003372540697455406, + -0.004847594536840916, + 0.02753433771431446, + 0.016454121097922325, + -0.00041940348455682397, + 0.021467918530106544, + -3.24345201079268e-5, + 0.005637059919536114, + -0.003975027706474066, + -0.004764493089169264, + -0.01088631246238947, + 0.031218508258461952, + 0.004608677234500647, + -0.012042810209095478, + -0.003112848149612546, + -0.00721599068492651, + -0.010006819851696491, + -0.001097633852623403, + -0.018587062135338783, + -0.0017693720292299986, + -0.008635643869638443, + -0.003774198703467846, + 0.006665442604571581, + -0.007583023048937321, + -0.00900267530232668, + -0.004456324502825737, + 0.034570273011922836, + -0.0029362572822719812, + -0.02969498001039028, + -0.011100991629064083, + -0.0015399769181385636, + 0.0009409527410753071, + -0.006125282030552626, + 0.016177115961909294, + 0.0014473532792180777, + -0.0006310529424808919, + -0.0011305282823741436, + 0.026218561455607414, + 0.040027279406785965, + -0.007915429770946503, + -0.008760295808315277, + 0.0028756624087691307, + 0.00865641888231039, + -0.009999895468354225, + 0.01667572557926178, + 0.029833482578396797, + -0.004716016817837954, + 0.019071821123361588, + 0.0018351607723161578, + -0.038060542196035385, + 0.024791983887553215, + -0.017437489703297615, + -0.0237532127648592, + -0.021717224270105362, + -0.008947274647653103, + -0.012084360234439373, + -0.0013954146998003125, + 0.0024774670600891113, + 0.009826766327023506, + -0.02177262492477894, + -0.013642515987157822, + 0.01483363937586546, + 0.005927915684878826, + -0.0019044121727347374, + -0.0090996278449893, + 0.012028959579765797, + 0.008420964702963829, + 0.04096909984946251, + 0.014092650264501572, + 0.010353077203035355, + -0.0016551072476431727, + -0.006274172570556402, + 0.0090996278449893, + 0.013684066943824291, + -0.011405697092413902, + 0.008372488431632519, + 0.011287970468401909, + -0.01192508265376091, + 0.013469387777149677, + 0.010920938104391098, + 0.016731126233935356, + 0.0038573001511394978, + -0.007506846450269222, + 0.021564871072769165, + -0.0029224068857729435, + -0.00629841024056077, + -0.02601080760359764, + 0.0010933056473731995, + 0.02053995057940483, + 0.02339310571551323, + -0.010920938104391098, + 0.002238549990579486, + 0.019418079406023026, + -0.016537223011255264, + -0.012797649949789047, + 0.01873941533267498, + -0.024501128122210503, + 0.008905723690986633, + -0.015456901863217354, + 0.017617544159293175, + -0.009896017611026764, + 0.024902785196900368, + -0.011724254116415977, + 0.007236766163259745, + -0.0012603745562955737, + -0.0024047531187534332, + -0.008995750918984413, + 0.04393305629491806, + 0.00598331680521369, + -0.01551230251789093, + 0.003112848149612546, + 0.013282408937811852, + -0.01569235697388649, + -0.0011634227121248841, + 0.003014164976775646, + -0.03382236137986183, + -0.0012300771195441484, + 0.021454067900776863, + -0.0037845862098038197, + 0.005668222904205322, + -0.0013746393378823996, + -0.01756214164197445, + -0.01081013586372137, + -0.005502020008862019, + -0.015221446752548218, + 0.0008569854544475675, + 0.0020463773980736732, + 0.0018039976712316275, + 0.0028046797960996628, + 0.0007907638791948557, + -0.002003095345571637, + 0.007382194045931101, + -0.010235349647700787, + 0.006211846135556698, + 0.027742091566324234, + -0.03083070181310177, + -0.0053219664841890335, + -0.016786526888608932, + -0.011066365987062454, + 0.004172394052147865, + -0.009591312147676945, + -0.01412035059183836, + -0.0021138975862413645, + 0.015664655715227127, + -0.003646083641797304, + -0.014335029758512974, + 0.019030271098017693, + 0.02655096724629402, + 0.007236766163259745, + -0.016107864677906036, + 0.0021225539967417717, + -0.001140050357207656, + 0.015359949320554733, + 0.03578909859061241, + 0.005162687972187996, + 0.01595551148056984, + 0.02260364033281803, + -0.020595351234078407, + 0.0008046141592785716, + -0.005027648061513901, + -0.0005553092923946679, + 0.00793620478361845, + 0.005474319215863943, + 0.0030938039999455214, + -0.0026921462267637253, + 0.01088631246238947, + -0.012527569197118282, + 0.0032825139351189137, + 0.004477099981158972, + -0.005290803033858538, + 0.012749173678457737, + 0.01839315891265869, + 0.00932815670967102, + 0.005654372740536928, + 0.012382141314446926, + -0.0008353444281965494, + -0.004570588935166597, + 0.01367714162915945, + -0.009397407993674278, + 0.018337758257985115, + -0.007555322255939245, + 0.003415822982788086, + 0.0011339908232912421, + -0.00450826296582818, + -0.024501128122210503, + 0.0155538534745574, + 0.015997061505913734, + -0.018877917900681496, + 0.016107864677906036, + 0.010616231709718704, + -0.01004144549369812, + 0.02134326659142971, + 0.012811499647796154, + -0.012804574333131313, + 0.011641152203083038, + 0.0034989244304597378, + 0.025484496727585793, + 0.00932123139500618, + -0.01749289035797119, + 0.004227795172482729, + 0.004916845820844173, + 0.001211898634210229, + -0.004806043580174446, + -0.012022034265100956, + -0.0059348405338823795, + 0.010311526246368885, + -0.018684014678001404, + 0.004331672098487616, + 0.009757515043020248, + 0.006049105431884527, + -0.010283825919032097, + 0.010360002517700195, + 0.010096847079694271, + -0.003235769458115101, + -0.01603861339390278, + 0.014044173993170261, + 0.025512197986245155, + 0.011308745481073856, + -0.011537275277078152, + 0.02063690312206745, + -0.01595551148056984, + 0.020401448011398315, + 0.0023857089690864086, + 0.004871832672506571, + -0.007119039073586464, + -0.0018524735933169723, + -0.02231278456747532, + 0.019168773666024208, + -0.0010881118942052126, + 0.0031890247482806444, + 0.014972141943871975, + -0.018600912764668465, + -0.006468076258897781, + 0.0001183765270980075, + 0.009999895468354225, + 0.010263049975037575, + -0.02268674224615097, + 0.0054916320368647575, + 0.013781018555164337, + -0.01704968325793743, + 0.009854467585682869, + -0.01973663456737995, + -0.007756151258945465, + 0.013524788431823254, + -0.008407114073634148, + -0.03058139607310295, + 0.0023493519984185696, + 0.003846912644803524, + -0.007589947897940874, + -0.02142636850476265, + 0.0072713918052613735, + -0.009245055727660656, + 0.005844813771545887, + -0.0058725145645439625, + 0.00352835631929338, + -0.008005456067621708, + -0.009632863104343414, + -0.020664602518081665, + -0.017229735851287842, + 0.004047741647809744, + -0.012458317913115025, + 0.005238864570856094, + 0.010339226573705673, + -0.017423639073967934, + -0.013372436165809631, + -0.01475053746253252, + 0.00629494758322835, + 0.008171658962965012, + -0.0087048951536417, + 0.017465190961956978, + -0.01224363874644041, + 0.02914096787571907, + -0.015900110825896263, + -0.032243430614471436, + 0.004456324502825737, + 0.01008299645036459, + 0.01659262366592884, + -0.008580242283642292, + -0.010076071135699749, + -0.012943077832460403, + -0.019473480060696602, + -0.009508210234344006, + 0.007763076573610306, + -0.005083049181848764, + -0.008794921450316906, + 0.010159173049032688, + 0.011682703159749508, + -0.0015875871758908033, + -0.0006098446901887655, + 0.006949373055249453, + -0.006786632351577282, + -0.0066619799472391605, + -0.01124641951173544, + -0.015124495141208172, + -0.024695031344890594, + 0.022700592875480652, + 0.009258905425667763, + 0.02150947041809559, + -0.007402969524264336, + 0.027935994789004326, + 0.009660563431680202, + -0.014092650264501572, + 0.0020256019197404385, + 0.013781018555164337, + -0.007880804128944874, + -0.009106552228331566, + -0.006049105431884527, + -0.004736792296171188, + 0.0028877812437713146, + 0.027409683912992477, + -0.01371176727116108, + 0.003459105035290122, + -0.008725670166313648, + -0.008303237147629261, + -0.024057919159531593, + 0.0025726875755935907, + 0.00972288940101862, + -0.002423797268420458, + -0.001958081964403391, + -0.005134987644851208, + 0.012340590357780457, + -0.004106604959815741, + 0.0015287235146388412, + -0.014542783610522747, + 0.0008613136596977711, + 0.02312995120882988, + -0.010512354783713818, + -0.0010508892592042685, + 0.008185509592294693, + 0.004359372425824404, + 0.008033156394958496, + -0.021274015307426453, + 0.009473584592342377, + -0.0231161005795002, + -0.004556738771498203, + -0.009037300944328308, + -0.008372488431632519, + -0.001233539660461247, + 0.004168931394815445, + 0.03324064984917641, + -0.014805939048528671, + -0.023434657603502274, + -0.016177115961909294, + -0.01632946915924549, + 0.027118828147649765, + -0.03468107804656029, + -0.016994280740618706, + 0.005121137481182814, + 0.0042000943794846535, + -0.014175751246511936, + -0.006049105431884527, + 0.010470803827047348, + -0.0353458896279335, + -0.004529038444161415, + -0.006021405104547739, + -0.003135354956611991, + 0.00829631183296442, + -0.005058811046183109, + 0.00972981471568346, + 0.015913959592580795, + -0.026564817875623703, + -0.013109280727803707, + 0.004217407200485468, + 0.010477729141712189, + -0.022617490962147713, + -1.2091934877389576e-5, + -0.006693142931908369, + 0.013753318227827549, + -0.013130055740475655, + 0.0036980221047997475, + 0.0002186827769037336, + 0.0017330150585621595, + -0.0029968521557748318, + -0.005972928833216429, + -0.015332248993217945, + -0.004747180268168449, + 0.0039057761896401644, + 0.0003010269720107317, + -0.018060753121972084, + -0.026107758283615112, + 0.009085777215659618, + -0.015359949320554733, + 0.004684853833168745, + -0.010387702845036983, + 0.007832327857613564, + 0.002733697183430195, + -0.006277634762227535, + 0.003916163928806782, + 0.002754472428932786, + -0.0014317716704681516, + -0.015927810221910477, + 0.013732543215155602, + -0.007991605438292027, + -0.012305964715778828, + 0.007541472092270851, + -0.014695136807858944, + -0.025622999295592308, + -0.03038749285042286, + 0.021121662110090256, + -0.007167514879256487, + 0.015567703172564507, + -0.006229158956557512, + -0.0006539924652315676, + -0.03360075503587723, + 0.010366926901042461, + -0.010830910876393318, + -0.03855915367603302, + 0.018254656344652176, + 0.005031110718846321, + -0.009674414061009884, + 0.0013382823672145605, + 0.03553979471325874, + -0.007686899974942207, + 0.02294989675283432, + 0.02466733194887638, + 0.0014187870547175407, + -0.007506846450269222, + -0.0030799538362771273, + 0.004677928518503904, + -0.014958291314542294, + 0.03684172034263611, + 0.013206232339143753, + -0.027312733232975006, + -0.003471223870292306, + 0.007548397406935692, + 0.01981973648071289, + -0.022617490962147713, + -0.0019182624528184533, + 0.006305335555225611, + -0.028919363394379616, + 0.01864246279001236, + -0.022977598011493683, + -0.01764524355530739, + 0.0008175987750291824, + -0.011710403487086296, + -0.007202140521258116, + 0.009501284919679165, + -0.0077769267372787, + -0.0118766063824296, + 0.0002969151537399739, + 0.022368187084794044, + 0.0043178219348192215, + 0.013123131357133389, + -0.0006384109146893024, + 0.002925869543105364, + 0.0030505219474434853, + 0.010110696777701378, + -0.0008427024004049599, + -0.016343317925930023, + -0.0056093595921993256, + 0.03119080886244774, + -0.01443198136985302, + 0.010740884579718113, + -0.013164681382477283, + -0.023656262084841728, + 0.005190388765186071, + -0.004788730759173632, + 0.010353077203035355, + -0.027562037110328674, + 0.013150831684470177, + 0.03523508831858635, + 0.004355909768491983, + -0.022271234542131424, + -0.016467971727252007, + -0.003356959205120802, + 0.007035937160253525, + -0.0019927076064050198, + 0.022437438368797302, + 0.01152342464774847, + -0.005446618888527155, + 0.01200818456709385, + 0.0036287708207964897, + -0.003424479393288493, + -0.008324012160301208, + -0.0031318922992795706, + 0.02760358899831772, + 0.004400923382490873, + -0.007347568403929472, + -0.0026228949427604675, + -0.018891768530011177, + -0.017700646072626114, + 9.462548041483387e-5, + -0.027298882603645325, + -0.012659146450459957, + -0.002216043183580041, + -0.03324064984917641, + 0.020387597382068634, + -0.017077382653951645, + 0.03177252039313316, + 0.006270709913223982, + 0.022936047986149788, + -0.0026800271589308977, + -0.019168773666024208, + 0.004023503512144089, + -0.018420860171318054, + 0.0101314727216959, + 0.017008131369948387, + -0.004193169064819813, + -0.0010465610539540648, + -0.014224227517843246, + -0.002898168982937932, + -0.010685482993721962, + -0.002496511209756136, + 0.0304705947637558, + -0.020401448011398315, + -0.03490268066525459, + 0.009563611820340157, + 0.00035751008545048535, + -0.010699333623051643, + -0.011731178499758244, + 0.002039452316239476, + -0.023365406319499016, + -0.00801930669695139, + -0.006284560076892376, + 0.0006033523823134601, + 1.4100494354352122e-6, + -0.002534599509090185, + -0.009258905425667763, + 0.026911074295639992, + 0.014944441616535187, + 0.012929227203130722, + 0.00788772851228714, + -0.009279681369662285, + 0.0036183830816298723, + 0.0237532127648592, + 0.0008145690080709755, + -0.0058725145645439625, + 0.00645768828690052, + -0.003950789570808411, + -0.012430617585778236, + 0.004785268101841211, + 0.015706205740571022, + 0.007402969524264336, + 0.027866743505001068, + 0.010948638431727886, + -0.0008366428664885461, + 0.008781070820987225, + -0.016343317925930023, + -0.013753318227827549, + -0.0026021194644272327, + -0.00038131524343043566, + 0.016537223011255264, + 0.008711819536983967, + -0.008427889086306095, + -0.018226955085992813, + 0.028531556949019432, + -0.0046536908484995365, + -0.01829620636999607, + -0.005553958471864462, + -0.004293583799153566, + 0.008427889086306095, + -0.016564922407269478, + -0.0029102880507707596, + -0.0012681653024628758, + 0.001125334412790835, + 0.004986097104847431, + -0.004245107993483543, + 0.011682703159749508, + -0.007389118894934654, + -0.008178584277629852, + 0.016523372381925583, + -0.018767116591334343, + -0.0023043386172503233, + -0.007236766163259745, + 0.01117024291306734, + -0.01551230251789093, + 0.007991605438292027, + 0.03144011273980141, + -0.014044173993170261, + -0.003909238614141941, + 0.01659262366592884, + 0.03191102296113968, + 0.0019563506357371807, + 0.013462462462484837, + -0.010235349647700787, + -0.008552541956305504, + -0.03135701268911362, + 0.0317448191344738, + -0.00042870914330706, + -0.007797702215611935, + 0.006797019857913256, + 0.010242274962365627, + 0.005238864570856094, + -0.006949373055249453, + -0.014556634239852428, + -0.025262892246246338, + -0.005339279305189848, + -0.045872095972299576, + -0.0027285031974315643, + -0.008303237147629261, + 0.02016599290072918, + -0.0179360993206501, + -0.011447248049080372, + -0.0026713707484304905, + 0.015636954456567764, + -0.003336183726787567, + -0.0003285110869910568, + -0.0004211347841192037, + -0.021315565332770348, + 0.00046225276309996843, + 0.003258276032283902, + -0.020456848666071892, + 0.009833691641688347, + 0.009155028499662876, + -0.0039854152128100395, + 0.015733906999230385, + 0.021135512739419937, + 0.00577902514487505, + -0.00013558115460909903, + -0.01200818456709385, + -0.005744399502873421, + 0.023074550554156303, + 0.012541419826447964, + 0.00649923924356699, + -0.014528932981193066, + 0.00450133765116334, + 0.007679974660277367, + -0.00896112434566021, + -0.011218719184398651, + -0.014023398980498314, + 0.002638476435095072, + 0.015262997709214687, + 0.004134305752813816, + 0.003819212084636092, + -0.008864172734320164, + -0.019071821123361588, + 0.0014577409019693732, + -0.01890561915934086, + -0.015526153147220612, + -0.004110067617148161, + 0.006911284755915403, + -0.015429200604557991, + -0.00040858297143131495, + 0.025803053751587868, + 0.028116049244999886, + 0.012991553172469139, + -0.008517916314303875, + 0.005366979632526636, + -0.020055191591382027, + -0.03127390891313553, + -0.014064949005842209, + 0.00307129742577672, + 0.004574051592499018, + 0.011592675931751728, + -0.014584334567189217, + 0.013379360549151897, + -0.026024658232927322, + 0.016343317925930023, + -0.007402969524264336, + -0.022021928802132607, + 0.01511064451187849, + 0.015747757628560066, + 0.00792927946895361, + -0.010941713117063046, + 0.023296155035495758, + -0.0027942920569330454, + 0.003978489898145199, + -0.037617333233356476, + 0.008178584277629852, + -0.03703562170267105, + 0.0037568858824670315, + 0.005924453027546406, + 0.004972246941179037, + -0.015720056369900703, + -0.013607890345156193, + 0.02053995057940483, + 0.006938985548913479, + -0.0013313571689650416, + -0.0037845862098038197, + 0.0076037985272705555, + -0.008171658962965012, + -0.009639788419008255, + -0.02294989675283432, + 0.009397407993674278, + 0.004999947734177113, + -0.014985992573201656, + -0.013220082968473434, + 0.008303237147629261, + 0.02824070118367672, + -0.010207649320363998, + -0.00526656536385417, + 0.015346099622547626, + 0.027312733232975006, + -0.023891715332865715, + 0.011052515357732773, + 0.02789444476366043, + 0.005391217768192291, + -0.015747757628560066, + 0.002165836049243808, + -0.0415785126388073, + 0.007125963922590017, + 0.0172989871352911, + 0.004293583799153566, + -0.02958417683839798, + -0.008774146437644958, + -0.009868317283689976, + -0.005875977221876383, + 0.010948638431727886, + 0.0014655317645519972, + -0.007950055412948132, + 0.035013481974601746, + 0.011010964401066303, + 0.02358701080083847, + 0.0034192854072898626, + -0.011710403487086296, + -0.005394680425524712, + 0.017091233283281326, + -0.016024762764573097, + -0.03750653192400932, + -0.015498451888561249, + -0.007596873212605715, + 0.00892649870365858, + 0.0021935366094112396, + 0.003760348306968808, + -0.016966581344604492, + -0.012534494511783123, + -0.0034850742667913437, + -0.014612034894526005, + -0.0010162636172026396, + 0.0038573001511394978, + -0.007749225944280624, + 0.01362866535782814, + -0.010706258937716484, + 0.005751324817538261, + 0.03695252165198326, + -0.021689523011446, + -0.015498451888561249, + 0.009570536203682423, + -0.008898798376321793, + 0.023780914023518562, + -0.014279628172516823, + -0.01335858553647995, + -0.017617544159293175, + -0.030248990282416344, + 0.01260374579578638, + 0.005238864570856094, + -0.00038542706170119345, + 0.00043390298378653824, + -0.0019113372545689344, + 0.023656262084841728, + 0.01785299740731716, + 0.00789465382695198, + 0.004754105117172003, + 0.015844708308577538, + -0.02385016530752182, + 0.001283746911212802, + 0.010858612135052681, + -0.006748544052243233, + 0.01918262429535389, + -0.00665851728990674, + 0.016911180689930916, + 0.007562247570604086, + 0.031689416617155075, + 0.004068516660481691, + -0.003874612972140312, + -0.004563664086163044, + -0.00215025432407856, + -0.021204764023423195, + -0.0027752479072660208, + -0.009397407993674278, + -0.00562320975586772, + 0.002503436291590333, + -0.021121662110090256, + -0.0005605031037703156, + -0.007770001422613859, + 0.010754735209047794, + -0.026467865332961082, + 0.021135512739419937, + 0.0004570589226204902, + 0.0017529248725622892, + 3.906209167325869e-5, + 0.027409683912992477, + -0.013656366616487503, + 0.01443198136985302, + 0.009030376560986042, + 0.0040927547961473465, + 5.7078261306742206e-5, + 0.020484549924731255, + -0.0008855516207404435, + -0.01362866535782814, + -0.004207019694149494, + 0.006689680274575949, + -0.001642988296225667, + 0.00014142424333840609, + -0.027188079431653023, + -0.012936152517795563, + 0.02178647555410862, + -0.0007656602538190782, + -0.020193694159388542, + 0.0044874874874949455, + -0.01988898776471615, + -0.008414039388298988, + -0.019404228776693344, + -0.01873941533267498, + -0.011779654771089554, + -0.00900960061699152, + 0.013123131357133389, + -0.014058024622499943, + -0.006166832987219095, + 0.010186873376369476, + 0.03362845629453659, + 0.00013201039109844714, + -0.007527621928602457, + 0.007742301095277071, + -0.010346151888370514, + -0.006405749823898077, + 0.01519374642521143, + -0.016301767900586128, + -0.005605896934866905, + 0.019695084542036057, + 0.012721473351120949, + 0.012714548036456108, + -0.005512407515197992, + 0.013504013419151306, + 0.0037776611279696226, + 0.009168879128992558, + 0.028185300529003143, + -0.01829620636999607, + -0.025415245443582535, + 0.039030060172080994, + -0.022174281999468803, + -0.005747862160205841, + -0.008171658962965012, + 0.029030166566371918, + -0.0035491317976266146, + 0.0165095217525959, + -0.009528986178338528, + 0.005616284441202879, + 0.009473584592342377, + 0.016481822356581688, + -0.0039854152128100395, + -0.011848906055092812, + 0.01111484132707119, + 0.01040155254304409, + -0.005439693573862314, + 0.011142542585730553, + 0.01693888008594513, + -0.01702198199927807, + -0.00016176683129742742, + -0.004269345663487911, + 0.0064819264225661755, + 0.005959078669548035, + 0.00205157115124166, + -0.007693825289607048, + 0.006211846135556698, + -0.015650805085897446, + 0.002032527234405279, + -0.0026159698609262705, + 5.7673390983836725e-5, + 0.013566339388489723, + -0.008767221122980118, + -0.004054666496813297, + -0.022575940936803818, + 0.003642620984464884, + 0.004584439564496279, + -1.4810591892455705e-5, + 0.018794815987348557, + 0.021315565332770348, + 0.0004055532335769385, + 0.008891873061656952, + 0.001534783048555255, + 0.0016975237522274256, + -0.02617701143026352, + -0.009653638117015362, + -0.0017234929837286472, + -0.0004648496978916228, + -0.0004635512304957956, + -0.009175803512334824, + -0.0020775406155735254, + 0.016841929405927658, + 0.002072346629574895, + 0.02286679670214653, + 0.009826766327023506, + -0.016010912135243416, + 0.014009548351168633, + -0.014064949005842209, + -0.010055296123027802, + -0.014335029758512974, + 0.01259682048112154, + 0.008261686190962791, + 0.01569235697388649, + -0.02445957623422146, + -0.026426315307617188, + -0.019570432603359222, + -0.017146633937954903, + -0.00670006824657321, + 0.008420964702963829, + -0.003365615615621209, + 0.0037395728286355734, + -0.011281045153737068, + 0.013282408937811852, + -0.025886155664920807, + 0.020747704431414604, + -0.004262420814484358, + -0.002072346629574895, + -0.004359372425824404, + 0.0039057761896401644, + -0.002886050147935748, + -0.004037353675812483, + 0.013600965030491352, + -4.528389035840519e-5, + -0.006364199332892895, + 0.010242274962365627, + -0.000814136175904423, + -0.021121662110090256, + 0.01300540380179882, + 0.0002616402634885162, + 0.002505167620256543, + -0.015913959592580795, + -0.009501284919679165, + 0.02761743776500225, + 0.024902785196900368, + 0.019958239048719406, + 0.009494360536336899, + 0.000609411858022213, + 0.015761608257889748, + 0.01008992176502943, + 0.002596925711259246, + 0.024611929431557655, + -0.01783914864063263, + -0.011343371123075485, + -0.026038506999611855, + -0.01667572557926178, + -0.0007669586921110749, + -0.004113530274480581, + -0.045484285801649094, + -0.014238078147172928, + 0.0029397199396044016, + -0.01944577880203724, + 0.002186611294746399, + -0.008185509592294693, + 0.02574765309691429, + -0.009397407993674278, + 0.019251875579357147, + 0.011980483308434486, + 0.016883479431271553, + -0.00065269396873191, + -0.024695031344890594, + 0.001039635855704546, + -0.01614941470324993, + 0.02850385569036007, + -0.007479145657271147, + 0.014570483937859535, + 0.012001259252429008, + 0.03487497940659523, + 0.0020186768379062414, + 0.006613504141569138, + -0.0036910970229655504, + -0.005595508962869644, + 0.005141912959516048, + 0.005668222904205322, + -0.019210325554013252, + -0.002338964259251952, + 2.0153224795649294e-6, + -0.009189654141664505, + 0.0006033523823134601, + -0.021717224270105362, + 0.012908452190458775, + -0.010339226573705673, + -0.00271292170509696, + 0.006963223218917847, + -0.0018282356904819608, + -0.01439043041318655, + -0.011703478172421455, + -0.008171658962965012, + 0.015623104758560658, + 0.01519374642521143, + 0.04005498066544533, + 0.02815759927034378, + -0.0008639105944894254, + -0.005522795021533966, + 0.007763076573610306, + -0.03135701268911362, + 0.008275536820292473, + -0.014889040030539036, + -0.004241645336151123, + -0.007396044209599495, + 0.01300540380179882, + 0.0029137504752725363, + 0.01821310445666313, + 0.016204815357923508, + -0.01801920123398304, + 0.013864120468497276, + -0.012700697407126427, + 0.016080163419246674, + 0.012887676246464252, + 0.013143906369805336, + -0.0037187975831329823, + -0.024695031344890594, + 0.004203557036817074, + 0.005512407515197992, + 0.023448508232831955, + -0.008053932338953018, + 0.002752741100266576, + 0.0014309060061350465, + -0.016523372381925583, + -0.012444467283785343, + 0.027146529406309128, + 0.004075441975146532, + -0.011738103814423084, + 0.017340539023280144, + 0.0013278946280479431, + 0.019473480060696602, + 0.009632863104343414, + 0.00900267530232668, + 0.015498451888561249, + -0.00286873709410429, + -0.011384922079741955, + -0.02481968328356743, + 0.010941713117063046, + 0.0008409710717387497, + -0.007326792925596237, + 0.002475735731422901, + 0.02599695697426796, + 0.005391217768192291, + -0.0009608624968677759, + -0.00977136567234993, + 0.010727033950388432, + 0.007679974660277367, + -0.01299847848713398, + 0.015013692900538445, + -0.037700437009334564, + 0.028891663998365402, + 0.011578826233744621, + -0.028199149295687675, + -0.02126016467809677, + -0.008884948678314686, + 0.00430050864815712, + -0.0005159225547686219, + 0.007382194045931101, + 0.03553979471325874, + 0.007790776900947094, + 0.03418246656656265, + -0.0019269188633188605, + -0.0047125546261668205, + 0.021287865936756134, + -0.005875977221876383, + 0.011959708295762539, + -0.012922301888465881, + 0.003794973948970437, + 0.009134253486990929, + -0.014404281042516232, + -1.6568927094340324e-5, + 0.0019182624528184533, + -0.02778364159166813, + -0.010650857351720333, + 0.007728450931608677, + 0.0026609832420945168, + 0.013587115332484245, + 0.022617490962147713, + -0.0009002675651572645, + -0.002281832043081522, + 0.02966727875173092, + -0.0029604951851069927, + 0.01412035059183836, + -0.005328891333192587, + -0.010699333623051643, + 0.0019321127329021692, + -0.010560831055045128, + -0.01901642046868801, + 0.007880804128944874, + 0.031412411481142044, + -0.010325375944375992, + -0.00649923924356699, + 0.02276984415948391, + -0.0010578143410384655, + 0.007479145657271147, + -0.003781123785302043, + -0.00026531924959272146, + -0.022035779431462288, + 0.012105136178433895, + 0.005114212166517973, + -0.03584449738264084, + 0.020761555060744286, + -0.008358637802302837, + -0.0006570221739821136, + 0.02358701080083847, + -0.024681180715560913, + 0.026564817875623703, + -0.0005267430678941309, + -0.0028081422206014395, + -0.006416137795895338, + 0.018961019814014435, + 0.017285136505961418, + 0.021412517875432968, + 0.019210325554013252, + 0.030442893505096436, + 0.0054223807528615, + -0.011897382326424122, + 0.015526153147220612, + -0.01331703457981348, + 0.02062305249273777, + -0.016384869813919067, + 0.0037395728286355734, + 0.019764335826039314, + 0.0034989244304597378, + -0.005228477064520121, + 0.017174335196614265, + -0.0030886102467775345, + -0.0074999211356043816, + -0.005474319215863943, + -0.0039854152128100395, + 0.0027215781155973673, + 0.01605246402323246, + 0.006398824974894524, + -0.0006868868367746472, + -0.016800377517938614, + 0.002877393737435341, + -0.0009859660640358925, + 0.017465190961956978, + -0.011391847394406796, + 0.013746392913162708, + -0.012188238091766834, + -0.001075992826372385, + 0.024514978751540184, + 0.0034556423779577017, + -0.0007388253579847515, + 0.009293531067669392, + -0.013974922709167004, + 0.0023216514382511377, + 0.004130843095481396, + 0.0033673469442874193, + -0.013206232339143753, + -0.008400188758969307, + 0.023739362135529518, + 0.004037353675812483, + -0.008878023363649845, + 0.0014049367746338248, + 0.010263049975037575, + 0.010062221437692642, + 0.028753161430358887, + 0.0013677141396328807, + -0.009598237462341785, + -0.014556634239852428, + -0.014999842271208763, + 0.007382194045931101, + -0.007146739400923252, + 0.007922354154288769, + -0.012077435851097107, + -0.004553276114165783, + -0.008164734579622746, + 0.00047350610839203, + -0.01484749000519514, + -0.009598237462341785, + -0.018130004405975342, + -0.008240911178290844, + 0.012769948691129684, + 0.026578668504953384, + 0.012929227203130722, + 0.010900162160396576, + 0.018407009541988373, + 0.012943077832460403, + -0.002562300069257617, + 0.00825476087629795, + 0.013843345455825329, + -0.0008028828306123614, + -0.005190388765186071, + 0.011938933283090591, + 0.025664551183581352, + -0.0018836366944015026, + -0.018240805715322495, + -0.0010803210316225886, + 0.014335029758512974, + 0.004657153505831957, + 0.012202087789773941, + -0.04401616007089615, + -0.0014404280809685588, + 0.0026713707484304905, + 0.014224227517843246, + 0.0016758827259764075, + 0.00900960061699152 + ], + "d195d40c-58be-4647-a367-c03fec0b3b70": [ + -0.00999792292714119, + -0.01563498191535473, + -0.003674669424071908, + 0.0279095321893692, + 0.0046943421475589275, + -0.022189103066921234, + 0.011440855450928211, + 0.005024613346904516, + -0.011838464066386223, + -0.00699662184342742, + 0.02171453833580017, + 0.007509665098041296, + 0.00387347349897027, + -0.02052171528339386, + 0.0009026348125189543, + -0.0006773769273422658, + 0.0032257570419460535, + 0.016148023307323456, + -0.008689663372933865, + -0.002850594464689493, + 0.06269383430480957, + 0.0029868714045733213, + -0.04055603966116905, + 0.0078495554625988, + -0.01650715433061123, + -0.009760640561580658, + -0.01020313985645771, + -0.024985186755657196, + -0.034604739397764206, + 0.017764108255505562, + 0.03445082902908325, + 0.017507588490843773, + 0.021201496943831444, + 0.022766277194023132, + -0.010139009915292263, + -0.039606910198926926, + 0.02442084066569805, + 0.03994038701057434, + 0.012473355047404766, + 0.006842709146440029, + -0.05071428790688515, + -0.017225414514541626, + -0.009747814387083054, + 0.010389117524027824, + -0.04976515844464302, + -0.004405755549669266, + 0.013480201363563538, + -0.01717410981655121, + 0.00493483105674386, + 0.035707782953977585, + 0.007189013063907623, + -0.05802514776587486, + 0.012697811238467693, + -0.025767577812075615, + 0.012216833420097828, + 0.000567152863368392, + -0.007124882657080889, + 0.05068863555788994, + -0.012171941809356213, + -0.007669990882277489, + -0.01909802109003067, + 0.01528867706656456, + 0.01854649931192398, + 0.026344750076532364, + -0.04981646314263344, + -0.011928246356546879, + 0.027165619656443596, + -0.004319179803133011, + -0.08557555079460144, + -0.04450646787881851, + 0.00850368570536375, + 0.07018426060676575, + -0.0006204611854627728, + -0.00218363874591887, + -0.013005636632442474, + 0.031372569501399994, + 0.026549968868494034, + 0.003485484980046749, + 0.022573886439204216, + 0.01575041562318802, + -0.008317707106471062, + -0.00539977615699172, + 0.008811511099338531, + -0.002637360943481326, + 0.03465604409575462, + 0.007868794724345207, + 0.004559668246656656, + -0.01923910714685917, + -0.001086207921616733, + -0.010241618379950523, + -0.021239973604679108, + 0.0444808155298233, + 0.015314329415559769, + -0.0047745052725076675, + -0.019688019528985023, + -0.0023006766568869352, + -0.016494328156113625, + 0.002209290862083435, + 0.012826071120798588, + -0.012511832639575005, + 0.002756002126261592, + 0.03273213282227516, + -0.03560517355799675, + 0.026729533448815346, + -0.024202797561883926, + -0.01778976060450077, + -0.009760640561580658, + -0.03144952654838562, + 0.02011127956211567, + 0.05510080233216286, + 0.018674761056900024, + -0.008856402710080147, + 0.013403244316577911, + 0.030423441901803017, + -0.0098119443282485, + -0.025331491604447365, + 0.017879543825984, + 0.020136931911110878, + 0.003459832863882184, + -0.03321952372789383, + -0.025074969977140427, + 0.010709770023822784, + 0.038965605199337006, + 0.0010357053251937032, + -0.0059673297218978405, + -0.016301937401294708, + -0.007124882657080889, + -0.02229171246290207, + 0.02991039864718914, + 0.0002775641914922744, + -0.014147156849503517, + -0.00736216502264142, + 0.005223417654633522, + -0.03496387228369713, + -0.052509937435388565, + 0.004126788582652807, + 0.006345699075609446, + 0.03937603905797005, + -0.07926512509584427, + 0.03101344034075737, + -0.035476915538311005, + -0.03760604187846184, + -0.025151927024126053, + 0.0013138706563040614, + -0.006403416395187378, + -0.03334778547286987, + -0.02449779585003853, + 0.003655430395156145, + -0.006842709146440029, + 0.0018084760522469878, + -0.01549389399588108, + -0.015109112486243248, + 0.011216399259865284, + 0.053818196058273315, + 0.0035592347849160433, + 0.01142161712050438, + -0.0433008186519146, + 0.010568683035671711, + 0.014224112965166569, + -0.003382876282557845, + -0.00048137849080376327, + -0.03827299922704697, + 0.016058241948485374, + 0.032603874802589417, + 0.03586169704794884, + 0.012524658814072609, + 0.0020008671563118696, + 0.017597369849681854, + -0.01682780496776104, + 0.014275417663156986, + 0.052304718643426895, + -0.01575041562318802, + -0.012422050349414349, + 0.0035752675030380487, + 0.008824337273836136, + -0.018508020788431168, + 0.05315123870968819, + 0.0009194689919240773, + 0.013941939920186996, + -0.04037647321820259, + -0.0019383400212973356, + -0.028243009001016617, + 0.02174019068479538, + 0.008798684924840927, + -0.005871134344488382, + 0.02621649019420147, + -0.019110847264528275, + -0.004075484350323677, + -0.008914119563996792, + -0.005242656916379929, + -0.03929908201098442, + -0.03119300678372383, + 0.0012785990256816149, + 0.012056507170200348, + 0.004947657231241465, + -0.0017251066165044904, + 0.0010333004174754024, + -0.02540844865143299, + 0.005156080704182386, + -0.0023471710737794638, + -0.014108678326010704, + -0.03080822341144085, + -0.020098453387618065, + 0.02345888502895832, + -0.018790194764733315, + 0.0043063536286354065, + -0.0036650500260293484, + -0.0026325511280447245, + 0.016981719061732292, + -0.05935905873775482, + 0.06623383611440659, + -0.028473878279328346, + 0.010036401450634003, + -0.03278343752026558, + -0.053818196058273315, + 0.008016294799745083, + -0.00326583837158978, + 0.00731086079031229, + 0.03303996101021767, + -0.030679963529109955, + 0.021560626104474068, + 0.02217627689242363, + -0.009446402080357075, + 0.008773032575845718, + -0.005419015418738127, + 0.010735421441495419, + 0.003161626635119319, + 0.041633427143096924, + -0.02711431495845318, + -0.04440385848283768, + 0.03470734879374504, + -0.0018132858676835895, + -0.01671237125992775, + -0.02601127326488495, + -0.0035143436398357153, + 0.020688453689217567, + -0.019393019378185272, + 0.01113303005695343, + 0.030731268227100372, + -0.06110340356826782, + -0.008016294799745083, + 0.008593467995524406, + -4.033198274555616e-5, + 0.023959102109074593, + 0.023766711354255676, + -0.011152269318699837, + 0.004469885956496, + -0.02261236496269703, + 0.011043247766792774, + -0.0017026610439643264, + -0.014134330675005913, + 0.0241258405148983, + 0.012159115634858608, + -0.03268083184957504, + -0.02444649301469326, + 0.014134330675005913, + 0.009978683665394783, + -0.057358190417289734, + 0.01988041028380394, + -0.011575529351830482, + 0.001899861847050488, + 0.02063714899122715, + 0.015763241797685623, + 0.0031968983821570873, + 0.03360430896282196, + -0.0383756048977375, + 0.02816605381667614, + -0.014044548384845257, + -0.023933449760079384, + 0.031757354736328125, + -0.019495628774166107, + -0.016148023307323456, + 0.006429068278521299, + -0.01146650779992342, + -0.03609256446361542, + 0.03470734879374504, + -0.002438556868582964, + -0.031295616179704666, + -0.01997019350528717, + 0.01289020199328661, + -0.026780838146805763, + -0.004287114366889, + -0.00019589820294640958, + 0.023407580330967903, + -0.026242142543196678, + 0.0006705630803480744, + 0.007471186574548483, + -0.014826938509941101, + -0.03316822275519371, + -0.0031696429941803217, + 0.0055376566015183926, + -0.017430631443858147, + 0.023099754005670547, + 0.017571717500686646, + 0.027653010562062263, + 0.0005499178078025579, + -0.023638449609279633, + -0.007131295744329691, + -0.04827733337879181, + 0.00493483105674386, + -0.01767432689666748, + -0.00646113371476531, + -0.0009892107918858528, + 0.0015230959979817271, + 0.0035432022996246815, + -0.01033140067011118, + 0.04132560268044472, + 0.0203421488404274, + -0.03845256194472313, + -0.017982153221964836, + 0.0033219524193555117, + 0.0054093957878649235, + 0.0010485313832759857, + -0.006111623253673315, + 0.04124864563345909, + 0.029756486415863037, + 0.005941677838563919, + -0.013813679106533527, + -0.05746079981327057, + 0.02284323424100876, + 0.01636606641113758, + 0.026049751788377762, + -0.06341210007667542, + 0.022368669509887695, + 0.0016609762096777558, + -0.008061186410486698, + 0.043326471000909805, + -0.023997580632567406, + 0.009516945108771324, + -0.022214755415916443, + -0.020649975165724754, + -0.014275417663156986, + 0.00043087583617307246, + -0.029628224670886993, + -0.0024561926256865263, + -0.04722559452056885, + -0.041171688586473465, + -0.0232536680996418, + -0.01281965896487236, + -0.042864732444286346, + -0.005483145359903574, + -0.02747344598174095, + -0.020213888958096504, + -0.007586621213704348, + 0.01119074784219265, + -0.007599447388201952, + -0.05438254401087761, + -0.001477403100579977, + 0.007381404284387827, + -0.011447268538177013, + 0.0006958143785595894, + -0.0029163279104977846, + 0.03337343782186508, + 0.04060734435915947, + 0.06238601356744766, + -0.008580641821026802, + 0.005306787323206663, + -0.001497443881817162, + 0.007054339163005352, + 0.004562874790281057, + 0.031808655709028244, + -0.01668671891093254, + -0.014108678326010704, + 0.0017106772866100073, + 0.011184334754943848, + 0.02465170994400978, + -0.012479767203330994, + 0.021150192245841026, + 0.008638359606266022, + -0.014211287721991539, + -0.048149071633815765, + -0.005576134659349918, + 0.017135631293058395, + -0.01260161492973566, + -0.030218224972486496, + -0.0039023321587592363, + 0.017148457467556, + -0.02174019068479538, + -0.028037792071700096, + 0.019393019378185272, + -0.006566948723047972, + 0.03881169110536575, + 0.025972794741392136, + -0.01964954100549221, + -0.006656731013208628, + 0.027832575142383575, + -0.00867683719843626, + 0.007028687279671431, + 0.025600839406251907, + 0.0294999647885561, + -0.022535407915711403, + 0.03970951586961746, + 0.0006140481564216316, + -0.02775561809539795, + -0.015737589448690414, + 0.04147951677441597, + 0.0023263287730515003, + 0.04255690425634384, + -0.008946185000240803, + -0.030885180458426476, + 0.025305839255452156, + 0.015647808089852333, + 0.03827299922704697, + -0.022304538637399673, + 0.0047264075838029385, + -0.029782138764858246, + -0.007945751771330833, + -0.0020120900589972734, + -0.013031288981437683, + 0.01871323771774769, + 0.02061149664223194, + -0.016494328156113625, + 0.0007787830545566976, + 0.012537484988570213, + 0.007381404284387827, + -0.01857215166091919, + 0.014172809198498726, + 0.009221945889294147, + -0.012954331934452057, + -0.04876472428441048, + 0.03468169644474983, + 0.02685779333114624, + -0.05504949763417244, + 0.03188561275601387, + 0.021547799929976463, + -0.002545975148677826, + 0.04306994751095772, + -0.01097270380705595, + -0.012550311163067818, + -0.012608028016984463, + -0.0073236869648098946, + 0.02793518453836441, + -0.020996280014514923, + 0.02973083406686783, + 0.010427596047520638, + -0.02279192954301834, + 0.004995754919946194, + 0.01049172692000866, + 0.002707904437556863, + 0.00943357590585947, + 0.0006108416710048914, + 0.04455777257680893, + -0.01485259085893631, + 0.011543464846909046, + 0.015109112486243248, + -0.0030013008508831263, + -0.011825637891888618, + -0.013467375189065933, + -0.024510622024536133, + 0.02458757907152176, + 0.013813679106533527, + 0.027858227491378784, + -0.004091516602784395, + 0.011274117045104504, + 0.0005924041615799069, + 0.01020313985645771, + -0.02185562625527382, + -0.05025254935026169, + 0.003610539250075817, + -0.018828673288226128, + -0.044198643416166306, + 0.004556461703032255, + 0.01682780496776104, + -0.0021435571834445, + 0.008067598566412926, + -0.0563834123313427, + -0.005082330666482449, + -0.006332872901111841, + 0.0187517162412405, + 0.0014749981928616762, + 0.023202363401651382, + -0.0012096589198336005, + -0.028448225930333138, + -0.013390419073402882, + 0.004139614757150412, + 0.012107811868190765, + 0.007952163927257061, + 0.017097152769565582, + 0.006643904838711023, + -0.00803553406149149, + -0.026755185797810555, + -0.057973843067884445, + -0.02752474881708622, + -0.02476714365184307, + 0.033065613359212875, + -0.028012139722704887, + -0.01820019632577896, + -0.03452778607606888, + 0.03193691745400429, + -0.03822169452905655, + 0.024613231420516968, + -0.02116301842033863, + 0.009279662743210793, + -0.003466245951130986, + 0.014737156219780445, + -0.016006937250494957, + -0.013941939920186996, + 0.0022766278125345707, + -0.008067598566412926, + -0.015147590078413486, + 0.016096720471978188, + -0.0433008186519146, + -0.005470319651067257, + 3.0537074053427204e-5, + 0.017186935991048813, + -0.0033219524193555117, + -0.022804755717515945, + -0.001837334712035954, + 0.004812983330339193, + -0.006082764361053705, + -0.03319387137889862, + -0.017392152920365334, + 0.008683250285685062, + -0.004543635994195938, + -0.0025796436239033937, + -0.005989775527268648, + -0.04458342492580414, + 0.013210853561758995, + 0.011184334754943848, + -0.03150083124637604, + 0.017084326595067978, + 0.0209321491420269, + -0.014378026127815247, + 0.03886299580335617, + 0.037195608019828796, + 0.015250199474394321, + -0.014673026278614998, + -0.012569550424814224, + 0.00012565542419906706, + -0.007214665412902832, + 0.013711070641875267, + 0.011492160148918629, + -0.019867584109306335, + 0.0012513436377048492, + 0.03303996101021767, + 0.013416070491075516, + 0.00808042474091053, + 0.014634547755122185, + 0.0018710031872615218, + 0.028114749118685722, + -0.02726822905242443, + -0.00836901180446148, + 0.03955560550093651, + -0.05050906911492348, + 0.03298865631222725, + -0.014493460766971111, + -0.014006069861352444, + 0.010908573865890503, + -0.02793518453836441, + -0.0007054339512251318, + -0.01909802109003067, + 0.0035912999883294106, + -0.034579090774059296, + -0.005845481995493174, + 0.018059108406305313, + -0.043326471000909805, + -0.007920099422335625, + -0.0018822259735316038, + -0.0021708125714212656, + 0.023651275783777237, + -0.03622082620859146, + -0.002900295425206423, + 0.0056723300367593765, + 0.009593901224434376, + 0.006983796134591103, + -0.01451911311596632, + -0.008272816427052021, + -0.004258255939930677, + 0.010145423002541065, + 0.008817924186587334, + -0.003623365191742778, + -0.004024180117994547, + 0.04673820361495018, + -0.000377166667021811, + -0.02424127608537674, + 0.016558459028601646, + -0.03165474534034729, + 0.013005636632442474, + -0.011299769394099712, + 0.0009892107918858528, + 0.02127845212817192, + -0.004793744068592787, + -0.010895747691392899, + -0.009074445813894272, + -0.011344660073518753, + -0.02383084036409855, + -0.01095987856388092, + -0.02490823157131672, + 0.013826505281031132, + 0.007079991512000561, + 0.012280963361263275, + 0.034835610538721085, + 0.023997580632567406, + -0.030038660392165184, + 0.004492331761866808, + 0.01973932422697544, + -0.022856060415506363, + 0.00953618437051773, + -0.006211025174707174, + 0.008298467844724655, + 0.01982910744845867, + 0.015763241797685623, + 0.02575475163757801, + -0.015429764054715633, + 0.0019832313992083073, + 0.021316930651664734, + -0.028550835326313972, + 0.024626057595014572, + -0.0014180825091898441, + -0.015224547125399113, + -0.03578474000096321, + 0.02212497405707836, + 0.020701279863715172, + -0.024728665128350258, + 0.025357143953442574, + 0.0037163542583584785, + 0.034194305539131165, + 0.017186935991048813, + 0.03555386886000633, + -0.03793951869010925, + 0.035733435302972794, + -0.012139876373112202, + 0.05235602334141731, + 0.001829318469390273, + 0.02421562373638153, + -0.017289545387029648, + -0.0058775474317371845, + -0.01618650183081627, + -0.022920189425349236, + -0.006675970274955034, + -0.010504552163183689, + 0.024074535816907883, + 0.009844009764492512, + -0.038349952548742294, + 0.03965821489691734, + -0.028473878279328346, + 0.02511344850063324, + 0.03537430614233017, + -0.04153082147240639, + -0.02944866009056568, + -0.0011631643865257502, + -0.018238672986626625, + -0.0016377290012314916, + 0.004793744068592787, + -0.006294394843280315, + 0.009164228104054928, + -0.002552388235926628, + 0.02435670979321003, + 0.031116049736738205, + 0.028448225930333138, + -0.021637583151459694, + 0.009279662743210793, + -6.134344403108116e-6, + 0.009818357415497303, + -0.017533238977193832, + -0.023471711203455925, + 0.01222324650734663, + 0.0033957024570554495, + 0.004139614757150412, + -0.03016692027449608, + 0.007984229363501072, + -0.016096720471978188, + 0.013788026757538319, + 0.028679095208644867, + -0.02926909551024437, + 0.01758454367518425, + 0.0022525787353515625, + -0.009844009764492512, + -0.018764542415738106, + -0.0068106441758573055, + -0.01944432407617569, + -0.03119300678372383, + 0.03355300426483154, + 0.008381837978959084, + 0.002555594779551029, + 0.006804231088608503, + 0.0180206298828125, + 0.0013876205775886774, + -0.03565647825598717, + -0.011460094712674618, + -0.0023038832005113363, + 0.009805531240999699, + -0.017199762165546417, + 0.003934397362172604, + -0.009555423632264137, + -0.027165619656443596, + -0.0009892107918858528, + 0.011966724880039692, + -0.003815756179392338, + 0.0013122675009071827, + -0.003674669424071908, + 0.006236677523702383, + -0.02883300930261612, + -0.022804755717515945, + -0.04055603966116905, + -0.02109888754785061, + -0.02435670979321003, + -0.01761019602417946, + -0.008599881082773209, + 0.018995411694049835, + -0.03293735161423683, + 0.028550835326313972, + -0.01907236874103546, + -0.0018325250130146742, + 0.018174543976783752, + 0.0024690188001841307, + -0.0255751870572567, + -0.04253125190734863, + -0.003475865349173546, + 0.0019399432931095362, + 0.005553688853979111, + -0.013416070491075516, + 0.013877809047698975, + -0.007554556243121624, + 0.00973498821258545, + 0.00042526444303803146, + -0.02525453455746174, + -0.008696076460182667, + 0.003921571187674999, + 0.004277494736015797, + -0.026203664019703865, + 0.006429068278521299, + 0.011748681776225567, + -0.0369134321808815, + 0.004713581409305334, + 0.0203421488404274, + 0.013826505281031132, + 0.012370745651423931, + 0.021996712312102318, + 0.0044410270638763905, + 0.02706301026046276, + -0.004078690893948078, + 0.0035977130755782127, + -0.004578907508403063, + 0.02522888220846653, + -0.0006260726368054748, + -0.023099754005670547, + -0.014788460917770863, + 0.042479947209358215, + -0.031808655709028244, + -0.008157381787896156, + -0.005088743753731251, + -0.0055793412029743195, + -0.004027386661618948, + -0.003161626635119319, + 0.03493821993470192, + 0.02793518453836441, + 0.020136931911110878, + -0.005194558762013912, + 0.030500398948788643, + 0.04891863837838173, + 0.0021451604552567005, + 0.046584293246269226, + 0.006887600291520357, + -0.012614441104233265, + 0.023843666538596153, + 0.004264668561518192, + 0.012159115634858608, + -0.012300202623009682, + 0.021791495382785797, + 0.020598670467734337, + 0.01918780244886875, + 0.012806832790374756, + -0.004126788582652807, + -0.04955993965268135, + -0.010337813757359982, + -0.011909007094800472, + 0.017392152920365334, + 0.03609256446361542, + -0.027191272005438805, + 0.031321268528699875, + 0.010190313681960106, + -0.0026133120991289616, + -0.007516077719628811, + 0.0015776067739352584, + 7.259756966959685e-5, + 0.011325420811772346, + -0.0010389117524027824, + -0.03098778799176216, + 0.003312333021312952, + 0.006419448647648096, + 0.024510622024536133, + -0.003430974204093218, + 0.004598146770149469, + -0.0012296995846554637, + 0.00808042474091053, + 0.03945299610495567, + 0.011068900115787983, + -0.02552388235926628, + 0.01281965896487236, + 0.019572585821151733, + 0.020803887397050858, + -0.002855404280126095, + 0.007830317132174969, + -0.017135631293058395, + -0.022227581590414047, + 0.023676928132772446, + -0.013467375189065933, + -0.012999223545193672, + 0.017751283943653107, + -0.012563137337565422, + -0.030526049435138702, + 0.00720825232565403, + 0.01097270380705595, + 0.002268611453473568, + -0.01049172692000866, + 0.004966896027326584, + -0.00018357315275352448, + 0.040504734963178635, + 0.013903461396694183, + 0.018123239278793335, + -0.016968892887234688, + -0.02988474629819393, + 0.008247164078056812, + -0.0034181480295956135, + 0.004950863774865866, + -0.024549100548028946, + -0.01110096462070942, + 0.02906387858092785, + -0.0348869152367115, + 0.02345888502895832, + 0.011344660073518753, + 0.0055440692231059074, + -0.006913252640515566, + -0.029346052557229996, + -0.003677875967696309, + 0.024292578920722008, + -0.007676403969526291, + 0.022214755415916443, + 0.021560626104474068, + 0.005226624198257923, + -0.0017683946061879396, + -0.006073144730180502, + 0.007099230773746967, + -0.004123582039028406, + 0.03473300114274025, + 0.0012721859384328127, + -0.03581039234995842, + -0.013736722990870476, + 0.052099503576755524, + -0.01990606263279915, + -0.01528867706656456, + -0.013082592748105526, + -0.010369879193603992, + 0.0024914643727242947, + -0.004723201040178537, + 0.011165095493197441, + -0.013903461396694183, + 0.02279192954301834, + 0.0002801695081871003, + -0.003331572050228715, + -0.0034277676604688168, + -0.03486126288771629, + 0.001488625886850059, + -0.014942373149096966, + 0.019611062481999397, + -0.02433105744421482, + 0.023215189576148987, + 0.007952163927257061, + 0.028243009001016617, + 0.004312766715884209, + 0.028243009001016617, + -0.026319099590182304, + -0.015378459356725216, + -0.019752150401473045, + 0.006550916004925966, + 0.001976818311959505, + -0.04173603653907776, + -0.01744345761835575, + -0.012127050198614597, + -0.03206517919898033, + -0.0023840460926294327, + -0.01604541577398777, + -0.007079991512000561, + 0.007900860160589218, + 0.008131729438900948, + -0.004963689483702183, + -0.038349952548742294, + 0.026703881099820137, + -0.029961703345179558, + 0.0042261905036866665, + 0.020573018118739128, + 0.00910009816288948, + -0.01616084948182106, + -0.0485338531434536, + 0.012883788906037807, + 0.01645584963262081, + -0.0027640184853225946, + -0.017725631594657898, + -0.024895405396819115, + -0.018815847113728523, + 0.01262726727873087, + -0.005040646065026522, + -0.052330370992422104, + -0.019623888656497, + 0.01761019602417946, + 0.014506286941468716, + -0.04499385878443718, + 0.0200599767267704, + 0.015442590229213238, + 0.0012633680598810315, + 0.005422221962362528, + -0.01563498191535473, + -0.002305486472323537, + -0.01495519932359457, + -0.04653298854827881, + 0.012114224955439568, + 0.03078257106244564, + -0.005124015733599663, + 0.0068106441758573055, + 0.016661066561937332, + -0.01385215763002634, + 0.005839068908244371, + -0.030038660392165184, + 0.02063714899122715, + 0.013569983653724194, + 0.019226280972361565, + 0.004851461388170719, + -0.008593467995524406, + 0.009741401299834251, + 0.01721258834004402, + 0.0071954261511564255, + -0.012563137337565422, + 0.021021930500864983, + 0.01923910714685917, + 0.006538089830428362, + -0.0029371704440563917, + 0.038349952548742294, + -0.017623022198677063, + 0.015352807939052582, + -0.02947431243956089, + -0.01206292025744915, + 0.009125749580562115, + 0.024292578920722008, + 0.04165907949209213, + 0.012947918847203255, + 0.02212497405707836, + 0.010805965401232243, + -0.030885180458426476, + -0.015442590229213238, + -0.005162493791431189, + -0.03032083250582218, + 0.003623365191742778, + -0.03737517073750496, + -0.03598995506763458, + 0.001139917061664164, + -0.01342889666557312, + 0.021586278453469276, + -0.0045243967324495316, + 0.011319007724523544, + 0.020354975014925003, + -0.0022814373951405287, + 0.03450213372707367, + -0.03537430614233017, + -0.010979116894304752, + 0.025369970127940178, + -0.0038895062170922756, + -0.012319441884756088, + -0.0026726326905190945, + 0.0027720346115529537, + -0.007265969645231962, + -0.006506024859845638, + -0.010299335233867168, + -0.005662710405886173, + -0.040735602378845215, + 0.018854325637221336, + -0.05545993521809578, + 0.02118867076933384, + 0.0011351073626428843, + 0.002712714020162821, + -0.00666314410045743, + -0.020829539746046066, + -0.017546065151691437, + 0.020393453538417816, + 0.0036842890549451113, + -0.029525617137551308, + 0.0004982126993127167, + -0.004059451632201672, + -0.0017475523054599762, + -0.0032482026144862175, + 0.028345618396997452, + -0.007278795819729567, + -0.015673458576202393, + -0.00571080856025219, + -0.036118216812610626, + 0.012377158738672733, + -0.021470842882990837, + -0.005925645120441914, + 0.018597804009914398, + 0.014172809198498726, + 0.020419105887413025, + -0.04845689982175827, + 0.013390419073402882, + -0.020714106038212776, + 0.008773032575845718, + -0.01399324368685484, + 0.005595373921096325, + -0.02883300930261612, + 0.02901257388293743, + -0.032193440943956375, + 0.02049606293439865, + -0.04129995033144951, + -0.013685418292880058, + 0.027678662911057472, + -0.0007294827955774963, + -0.0061372751370072365, + 0.027370836585760117, + 0.01650715433061123, + 0.020278019830584526, + 0.023086929693818092, + 0.00666314410045743, + 0.01746910996735096, + -0.00787520781159401, + -0.0008288848912343383, + 0.01103042159229517, + 0.0076186866499483585, + -0.032167788594961166, + -0.0395299531519413, + -0.017430631443858147, + 0.010453248396515846, + 0.01746910996735096, + -0.012197594158351421, + 0.002024916000664234, + 0.014172809198498726, + 0.0015735987108200788, + 0.019726498052477837, + 0.007221078500151634, + -0.010748247615993023, + -0.004745646379888058, + -0.009298902004957199, + -0.028243009001016617, + 0.00769564276561141, + -0.0025219263043254614, + 0.008619120344519615, + -0.014390852302312851, + -0.024164319038391113, + -0.012697811238467693, + -0.04540429264307022, + -0.008817924186587334, + -0.019623888656497, + 0.028422575443983078, + -0.006746513769030571, + -0.006573361810296774, + -0.025369970127940178, + -0.00023547865566797554, + 0.004736026749014854, + -0.01825149916112423, + -0.018418239429593086, + -0.0068555353209376335, + 0.008811511099338531, + 0.04153082147240639, + -0.037041693925857544, + 0.004861081019043922, + -0.015134764835238457, + 0.017430631443858147, + -0.021086061373353004, + -0.030654311180114746, + 0.013736722990870476, + 0.007503252010792494, + 0.04435255378484726, + 0.022009538486599922, + 0.030449094250798225, + 0.02279192954301834, + -0.02708866260945797, + 0.054279934614896774, + -0.02665257640182972, + 0.0016016557347029448, + 0.029115183278918266, + -0.010991943068802357, + 0.0003691503661684692, + 0.006028253585100174, + 0.009177054278552532, + -0.001755568548105657, + 0.0026549967005848885, + -0.02901257388293743, + 0.018328456208109856, + 0.021611930802464485, + 0.0023616005200892687, + 0.015878677368164062, + -0.02389497123658657, + 0.026344750076532364, + 1.896354660857469e-5, + -0.0004801760660484433, + 0.010158248245716095, + -0.02798648737370968, + 0.004719994496554136, + 0.018418239429593086, + 0.018854325637221336, + -0.015558024868369102, + 0.0004276693216525018, + -0.012665745802223682, + 0.005210591480135918, + -0.0018902423325926065, + -0.003806136781349778, + 0.0034918980672955513, + -0.007278795819729567, + 0.006352112162858248, + 0.039837777614593506, + -0.008901293389499187, + 0.008163794875144958, + 0.031346917152404785, + -0.006124448962509632, + 0.00850368570536375, + 0.032424308359622955, + -0.010517378337681293, + 0.01677650213241577, + -0.005742873530834913, + 0.005730047356337309, + -0.021637583151459694, + 0.023176711052656174, + 0.04440385848283768, + -0.014018896035850048, + 0.019726498052477837, + 0.030859528109431267, + -0.00018257110787089914, + 0.008984663523733616, + 0.014429330825805664, + -0.004501950927078724, + -0.007888033986091614, + 0.01645584963262081, + -0.006005807779729366, + 0.005338852293789387, + 0.007920099422335625, + 0.003010920248925686, + 0.008670424111187458, + 0.005140047986060381, + -0.002098666038364172, + 0.0031439908780157566, + 0.0016721991123631597, + -0.007888033986091614, + 0.0334247425198555, + 0.00568194966763258, + 0.03280908986926079, + 0.022445624694228172, + -0.01732802204787731, + -0.017251066863536835, + 0.023792361840605736, + -0.015570851042866707, + -0.001556764473207295, + -0.014685851521790028, + -0.02563931792974472, + 1.9965584215242416e-5, + 0.024254100397229195, + 0.0031744528096169233, + 0.021676061674952507, + -0.0008008278673514724, + -0.020483236759901047, + -0.034835610538721085, + 0.02883300930261612, + -0.004511570557951927, + 0.004995754919946194, + -0.006323253270238638, + -0.02043193206191063, + -0.0015495497500523925, + -0.02993605099618435, + 0.0002960016718134284, + 0.018520846962928772, + -0.005435047671198845, + 0.005043852608650923, + 0.012422050349414349, + -0.06053905934095383, + -0.025100622326135635, + -0.012300202623009682, + -0.014608895406126976, + -0.006255916319787502, + -0.006364937871694565, + 0.01985475793480873, + -0.0009699716465547681, + -0.011389551684260368, + -0.008221511729061604, + 6.262730312300846e-5, + 0.006076351273804903, + 0.026036925613880157, + 0.02247127704322338, + 0.009587488137185574, + -0.002073013922199607, + -0.019264759495854378, + 0.009715748950839043, + 0.020329322665929794, + -0.010876508429646492, + 0.005614612717181444, + -0.009472053498029709, + 0.00498613528907299, + 0.006695209536701441, + 0.00797781627625227, + -0.005771732423454523, + -0.038991257548332214, + 0.011639660224318504, + -0.01281965896487236, + -0.0074455346912145615, + -0.017918022349476814, + -0.024946710094809532, + 0.004450646694749594, + -0.016468675807118416, + 0.0058422754518687725, + 0.010158248245716095, + -0.005091950297355652, + 0.005441460758447647, + -0.004187712445855141, + -0.001060555805452168, + 0.004627005197107792, + -0.0012529469095170498, + -0.005656297784298658, + 0.001324291923083365, + 0.0132236797362566, + -0.029320400208234787, + -0.011408790946006775, + -0.017635848373174667, + 0.008548576384782791, + -0.012806832790374756, + -0.000279367872281, + -0.019662367179989815, + -0.01528867706656456, + -0.008285642601549625, + -0.029987355694174767, + 0.017879543825984, + -0.0031776591204106808, + -0.04142821207642555, + 0.002331138588488102, + -0.04132560268044472, + 0.0380677804350853, + 0.01886715181171894, + 0.03311691805720329, + 0.013018462806940079, + -0.0020890464074909687, + -0.014826938509941101, + 0.012056507170200348, + 0.00754173006862402, + 0.006063525099307299, + 0.005483145359903574, + 0.008048360235989094, + 0.008420315571129322, + -0.010568683035671711, + 0.01152422558516264, + -0.03191126510500908, + -0.025588013231754303, + 0.011504986323416233, + -0.022458450868725777, + -0.004607766401022673, + -0.00048338258056901395, + 0.04045343026518822, + 0.0020120900589972734, + -0.0011904197745025158, + -0.03316822275519371, + -0.004745646379888058, + 0.0043512447737157345, + -0.0012826072052121162, + 0.018354108557105064, + -0.057973843067884445, + 0.0039055387023836374, + -0.030859528109431267, + 0.012620854191482067, + -0.007580208126455545, + -0.003057414898648858, + -0.013274984434247017, + -0.013146723620593548, + -0.013941939920186996, + 0.009844009764492512, + 0.0021756223868578672, + 0.00989531446248293, + -0.00506629841402173, + 0.0006308823940344155, + -0.011665311641991138, + -0.0007162559195421636, + -0.019110847264528275, + -0.018905630335211754, + 0.022971494123339653, + -0.008657597936689854, + -0.014788460917770863, + 0.009215532802045345, + -0.01408302690833807, + 0.018597804009914398, + 0.0014180825091898441, + 0.004777711816132069, + -0.02256106026470661, + 0.014801286160945892, + -0.03057735413312912, + -0.02642170712351799, + -0.01790519617497921, + -0.0014309085672721267, + 0.024946710094809532, + 0.010292922146618366, + 0.009414336644113064, + -0.026178011670708656, + -0.010145423002541065, + 0.00976705364882946, + -0.04558385908603668, + 0.006525264121592045, + -0.00956183671951294, + -0.02215062640607357, + 0.01950845494866371, + -0.00850368570536375, + -0.014044548384845257, + 0.004893146455287933, + -0.020021498203277588, + 0.03693908452987671, + -0.009151401929557323, + 0.015673458576202393, + 0.010940639302134514, + 0.008670424111187458, + 0.023523015901446342, + 0.015686284750699997, + -0.027396488934755325, + 0.005098363384604454, + 0.05961558222770691, + 0.012152702547609806, + -0.013493027538061142, + 0.015583677217364311, + 0.0033027133904397488, + -0.008330533280968666, + 0.0023471710737794638, + 0.007182599976658821, + 0.021329756826162338, + 0.01781541295349598, + -0.0025283393915742636, + 0.005258689168840647, + -0.027422141283750534, + -0.02453627437353134, + 0.0023295353166759014, + -0.010414769873023033, + -0.012037267908453941, + 0.004880320280790329, + 0.01682780496776104, + 0.014249765314161777, + -0.014801286160945892, + 0.004149233922362328, + 0.0012785990256816149, + 0.029397355392575264, + -0.014224112965166569, + 0.018995411694049835, + -0.010337813757359982, + 0.02449779585003853, + 0.009061619639396667, + 0.00017976541130337864, + 0.0386577807366848, + 0.028268661350011826, + -0.011761507950723171, + -0.0028826596681028605, + -0.00028598131029866636, + 0.0034181480295956135, + -0.0027271434664726257, + -0.013634114526212215, + -0.00018297192582394928, + -0.03275778517127037, + -0.0022141006775200367, + 0.01516041625291109, + 0.005184939596801996, + -0.004187712445855141, + 0.007304447703063488, + -0.021842800080776215, + -0.03578474000096321, + 0.013595636002719402, + -0.000998028670437634, + 0.015532372519373894, + 0.0043512447737157345, + -0.016263458877801895, + 0.007022274192422628, + 0.004123582039028406, + -0.004517983645200729, + -0.008484446443617344, + 0.00901031494140625, + -0.02711431495845318, + -0.009125749580562115, + 0.005213798023760319, + 0.007009448017925024, + 0.017084326595067978, + -0.027396488934755325, + -0.014647373929619789, + -0.009549010545015335, + 0.006791404914110899, + 0.006057112477719784, + 0.0038382019847631454, + -0.020970627665519714, + 0.009427162818610668, + -0.010126183740794659, + -0.009978683665394783, + -0.005964123178273439, + -0.0019527693511918187, + 0.006566948723047972, + -0.015776067972183228, + -0.022650841623544693, + -0.004165266640484333, + 0.006733687594532967, + 0.012364332564175129, + 0.0026020891964435577, + 0.018969759345054626, + -0.005460700020194054, + -0.007855968549847603, + 0.0024994807317852974, + 0.016301937401294708, + -0.014031722210347652, + 0.030449094250798225, + 0.021701712161302567, + 0.00906803272664547, + 0.0035688544157892466, + -0.02258671261370182, + -0.019021064043045044, + -0.007631512358784676, + -0.014031722210347652, + -0.0025283393915742636, + -0.026960402727127075, + 0.0006853931699879467, + 0.01156911626458168, + 0.02665257640182972, + 0.008548576384782791, + -0.012441289611160755, + 0.000990012427791953, + 0.0023295353166759014, + -0.0005835862830281258, + 4.757169881486334e-5, + -0.0011976343812420964, + 0.0004653459182009101, + -0.025793230161070824, + -0.004851461388170719, + -0.013634114526212215, + 0.0004082297964487225, + -0.024305405095219612, + 0.0008553386433050036, + -0.017084326595067978, + -0.07403208315372467, + -0.010119770653545856, + 0.013518678955733776, + 0.002140350639820099, + 0.024805622175335884, + -0.007650751620531082, + 0.0026886651758104563, + -0.028243009001016617, + 0.009747814387083054, + 0.003161626635119319, + 0.01912367343902588, + -0.008497272618114948, + -0.002784860786050558, + 0.005431841127574444, + 0.01822584681212902, + 0.019162150099873543, + 0.0008344962843693793, + -0.0047264075838029385, + -0.006009014323353767, + 0.010004336014389992, + 0.01988041028380394, + 0.006599013693630695, + 0.014685851521790028, + 0.011453681625425816, + -0.013262158259749413, + 0.0101710744202137, + 0.004790537524968386, + -0.02203519083559513, + -0.031962569802999496, + 0.0156991109251976, + 0.004043418914079666, + -0.023099754005670547, + 0.0139547660946846, + -0.015044981613755226, + 0.017841065302491188, + 0.029782138764858246, + 0.007022274192422628, + 0.009407923556864262, + 0.020470410585403442, + -0.006364937871694565, + 0.007939338684082031, + -0.003269044915214181, + -0.018700411543250084, + 0.02447214536368847, + 0.014878243207931519, + 0.00036995200207456946, + -0.0045692878775298595, + 0.04822602868080139, + 0.006114829797297716, + 0.019700845703482628, + 0.005617819260805845, + -0.004437820985913277, + 0.0406842976808548, + -0.006701622158288956, + 0.01866193488240242, + -0.027165619656443596, + 0.009132162667810917, + 0.002342361258342862, + -0.001165569294244051, + 0.0032145341392606497, + -0.015352807939052582, + 0.028319966048002243, + -0.004594940226525068, + -0.03824734687805176, + 0.010703356936573982, + -0.006178960204124451, + 0.0007639529067091644, + 0.03668256476521492, + 0.001891845604404807, + 0.003283474361523986, + 0.01584019884467125, + -0.008394664153456688, + 0.013377592898905277, + 0.02522888220846653, + 0.0006288783042691648, + 0.005919232033193111, + -0.029576921835541725, + 0.021522147580981255, + 0.0055472757667303085, + -0.02595996856689453, + -0.014352373778820038, + 0.013089005835354328, + 0.024869753047823906, + 0.005143254529684782, + 0.029397355392575264, + -0.017302369698882103, + -0.01767432689666748, + 0.005781351588666439, + -0.022099321708083153, + 0.004267875105142593, + 0.0024962741881608963, + 0.0057973843067884445, + 0.0035624413285404444, + -0.017520414665341377, + -0.0071056438609957695, + -0.020124105736613274, + 0.00545108038932085, + -0.001675405539572239, + 0.030910832807421684, + -0.0019527693511918187, + -0.03529734909534454, + 0.0225225817412138, + -0.005694775842130184, + -0.014339547604322433, + 0.007137708831578493, + 0.003014126792550087, + -0.015211720950901508, + -0.0023840460926294327, + -0.003028556238859892, + 0.014236939139664173, + 0.008356185629963875, + -0.0009707732824608684, + -0.010780313052237034, + -0.032449960708618164, + -0.028345618396997452, + 0.012518245726823807, + 0.03414300084114075, + 0.0036393979098647833, + -0.0010381101164966822, + -0.016083894297480583, + -0.0401199534535408, + 0.008131729438900948, + -0.0049893418326973915, + -0.024741491302847862, + 0.00803553406149149, + 0.017764108255505562, + 0.007727708201855421, + -0.0022205135319381952, + -0.014762808568775654, + 0.023612797260284424, + -0.002855404280126095, + 0.0039023321587592363, + -0.025241708382964134, + -0.02334344945847988, + 0.0036842890549451113, + 0.007067165337502956, + 0.020970627665519714, + 0.011011182330548763, + 0.019085194915533066, + -0.014878243207931519, + -0.01604541577398777, + 0.001970405224710703, + -0.013736722990870476, + 0.001829318469390273, + -0.006403416395187378, + -0.0008176620467565954, + 0.006708035245537758, + -0.013775200583040714, + -0.011947485618293285, + 0.0015359220560640097, + -0.006374557502567768, + -0.01601976342499256, + 0.010408356785774231, + 0.026267794892191887, + 0.009247597306966782, + -0.006752926856279373, + 0.020970627665519714, + -0.03301430866122246, + -0.007669990882277489, + 0.00335722416639328, + -0.0121334632858634, + -0.011716616339981556, + -0.028756052255630493, + 0.017853891476988792, + -0.00619819900020957, + 0.007381404284387827, + 0.0030045071616768837, + 0.004088310524821281, + 0.0011928246822208166, + -0.015211720950901508, + 0.003533582668751478, + 0.02226606011390686, + 0.0032963003031909466, + -0.006566948723047972, + 0.0022301331628113985, + 0.019226280972361565, + 0.007047926541417837, + -0.036605607718229294, + -0.0202010627835989, + -0.005649884697049856, + 0.0032177406828850508, + 0.010773899964988232, + 0.032655179500579834, + 0.012845310382544994, + -0.0032995068468153477, + -0.023702580481767654, + -0.004149233922362328, + -0.0048322225920856, + 0.01781541295349598, + 0.0006348905153572559, + -0.008702489547431469, + 0.03126996383070946, + -0.005669123493134975, + 0.0041011362336575985, + -0.009741401299834251, + -0.01994454115629196, + -0.016725197434425354, + -0.010106944479048252, + 0.012704224325716496, + 0.009760640561580658, + 0.027576053515076637, + -0.028499530628323555, + 0.012159115634858608, + 0.016763675957918167, + -0.03786256164312363, + 0.02819170616567135, + 0.024048883467912674, + -0.0034149414859712124, + -0.001874209730885923, + 0.001590432832017541, + -0.003161626635119319, + -0.004081897437572479, + 0.011921833269298077, + -0.016879109665751457, + -0.010671291500329971, + 0.012768354266881943, + -0.010177487507462502, + -0.002239752793684602, + -0.00994020514190197, + 0.0066054267808794975, + -0.008048360235989094, + -0.01222324650734663, + 0.005883960518985987, + -0.021983886137604713, + 0.002007280243560672, + -0.004873907193541527, + -0.013037702068686485, + -0.0065124379470944405, + 0.0023471710737794638, + -0.00731086079031229, + -0.011665311641991138, + -0.001369984820485115, + 0.012967158108949661, + 0.011581942439079285, + -0.02176584303379059, + 0.001539930235594511, + -0.011646073311567307, + -0.008336946368217468, + 0.002052171388641, + 0.0021387473680078983, + 0.04055603966116905, + 0.012024441733956337, + 0.005691569298505783, + 0.01767432689666748, + 0.0035688544157892466, + 0.020213888958096504, + -0.006938904523849487, + 0.004998961463570595, + -0.013364766724407673, + -0.0027688283007591963, + -0.0021531768143177032, + 0.006053905934095383, + -0.02685779333114624, + 0.0004881923377979547, + -0.023651275783777237, + 0.015275850892066956, + 0.002061791019514203, + -0.002121111610904336, + 0.0035912999883294106, + 0.006624666042625904, + -0.028704747557640076, + 0.0075353169813752174, + -0.01843106560409069, + 0.01584019884467125, + 0.0100299883633852, + 0.0015551612013950944, + 0.007772599346935749, + 0.012678571976721287, + -0.008612707257270813, + 0.017045849934220314, + 0.013467375189065933, + -0.026152359321713448, + -0.015506720170378685, + -0.0016609762096777558, + -0.0032706481870263815, + 0.022419972345232964, + 0.0066118398681283, + -0.02479279600083828, + 0.015442590229213238, + -0.0029644258320331573, + -0.01399324368685484, + 0.0020233127288520336, + 0.002529942663386464, + -0.018764542415738106, + -0.005556895397603512, + -0.014057374559342861, + -0.011370312422513962, + 0.00841390248388052, + 0.014826938509941101, + -0.019546933472156525, + 0.0035688544157892466, + 0.025280186906456947, + 0.016378892585635185, + -0.0071056438609957695, + -0.0011583545710891485, + 0.04324951395392418, + -0.010459661483764648, + -0.004364070948213339, + -0.01625063270330429, + -0.005954503547400236, + 0.015827372670173645, + 0.011876942589879036, + -0.004947657231241465, + 0.00844596792012453, + 0.013621288351714611, + -0.000535889295861125, + 0.010318574495613575, + 0.007791838608682156, + -0.014929546974599361, + -0.020008672028779984, + -0.02667822875082493, + 0.02752474881708622, + 0.0025539915077388287, + 0.023523015901446342, + -0.015250199474394321, + 0.002954806201159954, + -0.004274288192391396, + 0.0023215189576148987, + 0.011928246356546879, + -0.016301937401294708, + 0.021060409024357796, + -0.042916037142276764, + 0.012537484988570213, + 0.02150932140648365, + -0.005191352684050798, + -0.011594768613576889, + -0.00013707863399758935, + 0.003818962723016739, + 0.006313633639365435, + -0.009254010394215584, + 0.016558459028601646, + 0.005742873530834913, + 0.012813245877623558, + -0.025883011519908905, + -0.004931624513119459, + 0.016635414212942123, + -0.017841065302491188, + -0.015609328635036945, + -0.005175319965928793, + -0.0003893915272783488, + 0.012870962731540203, + 0.003504724008962512, + 0.009183467365801334, + -0.00568194966763258, + -0.007855968549847603, + 0.009773466736078262, + -0.0008457190706394613, + 0.010357053019106388, + -0.028063444420695305, + 0.014378026127815247, + -0.016289111226797104, + -0.010337813757359982, + 0.006339285988360643, + -0.009658032096922398, + 0.026203664019703865, + 0.01169737707823515, + 0.0055376566015183926, + 0.002552388235926628, + -0.011434442363679409, + 0.00817020796239376, + 0.002847387921065092, + 0.007779012434184551, + -0.013287809677422047, + -0.007233904208987951, + 0.004505157470703125, + 0.0064803725108504295, + 0.013403244316577911, + -0.015455416403710842, + -0.012883788906037807, + -0.0180206298828125, + 0.007702055852860212, + 0.012101398780941963, + 0.003017333336174488, + -0.013480201363563538, + -0.01712280511856079, + 0.0025091003626585007, + 0.002948393113911152, + -0.0218043215572834, + -0.00032425913377664983, + -0.009914553724229336, + -0.003269044915214181, + 0.0012938299914821982, + -0.0030750506557524204, + 0.012447702698409557, + 0.004588527139276266, + -0.019918888807296753, + -0.013377592898905277, + 0.013505853712558746, + 0.008433141745626926, + 0.025062143802642822, + 0.0021435571834445, + 0.016289111226797104, + -0.018187370151281357, + 0.027037357911467552, + -0.0033668437972664833, + -0.01935454271733761, + -0.004348038230091333, + 0.0012000392889603972, + 0.023997580632567406, + 0.004094723146408796, + -0.030423441901803017, + 0.019546933472156525, + -0.004489125218242407, + -0.015044981613755226, + 0.005848688539117575, + -0.007182599976658821, + 0.004873907193541527, + 0.017148457467556, + 0.006643904838711023, + 0.005293961148709059, + -0.002985268132761121, + -0.002461002441123128, + -2.1506215489353053e-5, + -0.009125749580562115, + -0.01650715433061123, + -0.015506720170378685, + 0.0013900254853069782, + 0.02540844865143299, + 0.016378892585635185, + 0.003079860471189022, + -0.006887600291520357, + -0.023189537227153778, + 0.0005527235334739089, + -0.015686284750699997, + -0.020278019830584526, + -0.03683647885918617, + 0.0061853728257119656, + 0.024510622024536133, + 0.012813245877623558, + -0.0143138961866498, + 0.022689320147037506, + 0.014647373929619789, + 0.0027287467382848263, + 0.014070200733840466, + 0.004030593205243349, + 0.004197332076728344, + 0.007227491121739149, + 0.010882921516895294, + 0.006842709146440029, + -0.0009587488602846861, + 0.0032161374110728502, + 0.01845671609044075, + -0.0006421051803044975, + 0.007124882657080889, + -0.005146461073309183, + 0.0002515112573746592, + -0.017918022349476814, + -0.0019655954092741013, + -0.011787159368395805, + 0.0019158944487571716, + 0.0014076613588258624, + -0.00531961303204298, + 0.002948393113911152, + 0.007484012749046087, + -0.007599447388201952, + 0.0005419015069492161, + -0.010209552943706512, + -0.005124015733599663, + 0.02947431243956089, + 0.02662692405283451, + -0.005986568983644247, + -0.014647373929619789, + 0.008580641821026802, + -0.00676575256511569, + -0.008202272467315197, + -0.018700411543250084, + -0.012800419703125954, + 0.004633418284356594, + 0.003774071577936411, + 0.005172113422304392, + 0.0123515073210001, + -0.015224547125399113, + 0.009882488287985325, + 0.008914119563996792, + -0.011389551684260368, + 0.02706301026046276, + -0.019226280972361565, + -0.012723462656140327, + -0.012633680365979671, + 0.02272779867053032, + 0.018123239278793335, + -0.0031552135478705168, + -0.0024770351592451334, + -0.004995754919946194, + 0.0209321491420269, + 0.015570851042866707, + 0.017635848373174667, + 0.018495194613933563, + 0.00800988171249628, + 0.007522490806877613, + -0.0005419015069492161, + -0.0008497272501699626, + -0.016212154179811478, + 0.016532806679606438, + 0.012306615710258484, + -0.007336513139307499, + -0.004912385251373053, + -0.009414336644113064, + -0.010459661483764648, + -0.013685418292880058, + -0.018059108406305313, + -0.0003110322286374867, + -0.016353242099285126, + -0.000748721940908581, + 0.00044811086263507605, + -0.007387817371636629, + -0.006675970274955034, + -0.0017924434505403042, + 0.031321268528699875, + 0.011812811717391014, + -0.01229378953576088, + -0.0006236677290871739, + -0.005730047356337309, + -0.009427162818610668, + -0.015878677368164062, + 0.0061725471168756485, + -0.00627836212515831, + -0.0034021155443042517, + 0.010074879042804241, + 0.02711431495845318, + 0.031064745038747787, + -0.008567815646529198, + 0.0074904258362948895, + 0.007817490957677364, + 0.008959011174738407, + -0.007714882027357817, + 0.002246165880933404, + 0.02449779585003853, + 0.010094118304550648, + 0.02226606011390686, + 0.004072277806699276, + -0.032860394567251205, + 0.008773032575845718, + -0.005880753975361586, + -0.02747344598174095, + -0.032193440943956375, + -0.025062143802642822, + -0.01428824383765459, + 0.017879543825984, + 0.00769564276561141, + 0.0019752150401473045, + -0.02403605729341507, + -0.010164661332964897, + 0.004113962408155203, + 0.008529337123036385, + -0.006483579054474831, + 0.0024593991693109274, + 0.006631079129874706, + 0.0020906496793031693, + 0.039837777614593506, + 0.018148891627788544, + -0.004617385566234589, + 0.004242223221808672, + -0.009042380377650261, + -0.0005370917497202754, + 0.006297600921243429, + -0.009221945889294147, + -0.0021820354741066694, + 0.003132767975330353, + -0.005633851978927851, + 0.012877375818789005, + 0.018059108406305313, + 0.009395097382366657, + 0.010882921516895294, + -0.019085194915533066, + 0.013877809047698975, + 0.007355751935392618, + -0.010934226214885712, + -0.018623456358909607, + 0.007060752250254154, + 0.015570851042866707, + 0.02029084600508213, + -0.016404544934630394, + 0.002962822560220957, + 0.02159910462796688, + -0.011761507950723171, + -0.023304972797632217, + 0.01973932422697544, + 0.00023006765695754439, + 0.0011896181385964155, + -0.016532806679606438, + 0.01921345479786396, + 0.0016200931277126074, + 0.025857361033558846, + -0.007176186889410019, + 0.009286075830459595, + 0.007099230773746967, + -0.0029932844918221235, + 0.006134068593382835, + 0.039632562547922134, + 0.014878243207931519, + -0.016289111226797104, + 0.026806488633155823, + 0.007997055537998676, + -0.01889280416071415, + -0.010280095972120762, + -0.006733687594532967, + -0.03421995788812637, + -0.010382705368101597, + 0.01717410981655121, + 0.005053472239524126, + 0.004203745163977146, + 0.003607332706451416, + -0.011928246356546879, + -0.019162150099873543, + -0.016866283491253853, + -0.001763584790751338, + 0.008054773323237896, + 0.01232585497200489, + 0.0035239632707089186, + -0.0013170771999284625, + -0.00640982948243618, + -0.006108416710048914, + 0.015416937880218029, + 0.007997055537998676, + 0.004402549006044865, + 0.018828673288226128, + -0.025947142392396927, + -0.0009371048654429615, + -0.0223814956843853, + -0.017186935991048813, + -0.009818357415497303, + -0.011229225434362888, + 0.0017988565377891064, + 0.0006673565367236733, + 0.020483236759901047, + -0.005444667302072048, + -0.007221078500151634, + 0.03057735413312912, + 0.036810826510190964, + 0.003992114681750536, + -0.014737156219780445, + 0.003915158566087484, + 0.0002276627637911588, + 0.013903461396694183, + 0.04255690425634384, + 0.011408790946006775, + 0.021983886137604713, + 0.02610105648636818, + -0.014390852302312851, + -0.0045660813339054585, + -0.02261236496269703, + -0.011107377707958221, + 0.007560969330370426, + -0.007381404284387827, + -0.007913686335086823, + -0.010017162188887596, + 0.009029554203152657, + -0.004165266640484333, + -0.008959011174738407, + -0.005957710091024637, + -0.0047712987288832664, + 0.005640265066176653, + 0.0162762850522995, + -0.00021082855528220534, + -0.004822602961212397, + 0.01539128553122282, + -0.010241618379950523, + -0.00824075099080801, + 0.013249332085251808, + 0.0024626057129353285, + 0.007439121603965759, + -0.005354885011911392, + 0.010459661483764648, + 0.009696509689092636, + 0.009286075830459595, + -0.030218224972486496, + 0.011575529351830482, + 0.013351940549910069, + 0.003725973889231682, + 0.018508020788431168, + 0.012107811868190765, + -0.0021980679593980312, + 0.015968458727002144, + 0.013582809828221798, + -0.011710203252732754, + 0.023523015901446342, + 0.007227491121739149, + 0.009202706627547741, + 0.0027832575142383575, + -0.0203421488404274, + 0.004902765620499849, + -0.007189013063907623, + -0.004825809504836798, + -0.003309126477688551, + -0.007727708201855421, + -0.00933096744120121, + -0.011222812347114086, + -0.017404979094862938, + 0.00619819900020957, + 0.013300635851919651, + -0.0026790457777678967, + -0.0028201325330883265, + 0.012280963361263275, + 0.01898258551955223, + -0.01305052824318409, + -0.014275417663156986, + 0.02208649553358555, + 0.028268661350011826, + -0.003434180747717619, + -0.006643904838711023, + 0.018956933170557022, + -0.0050695049576461315, + 0.02587018720805645, + 0.015327155590057373, + -0.0018870357889682055, + -0.017109978944063187, + -0.0024946709163486958, + -0.004149233922362328, + 0.031372569501399994, + -0.00021784281125292182, + 0.002029725816100836, + 0.012377158738672733, + -0.008381837978959084, + -0.011094551533460617, + -0.015416937880218029, + 0.005781351588666439, + 0.001230501220561564, + -0.032449960708618164, + 0.009286075830459595, + -0.0018581771291792393, + 0.0011054470669478178, + 0.008208685554564, + -0.0218043215572834, + -0.006294394843280315, + 0.012101398780941963, + 0.0039311908185482025, + -0.03060300648212433, + -0.007612273562699556, + 0.010908573865890503, + 0.010459661483764648, + -0.011254877783358097, + 0.0017844272078946233, + 0.009157815016806126, + -0.014326722361147404, + -0.013505853712558746, + -0.00025311450008302927, + -0.00731086079031229, + -0.014801286160945892, + -0.0014581639552488923, + -0.0303721372038126, + -0.0015615741722285748, + -0.008272816427052021, + 0.008914119563996792, + 0.021458018571138382, + -0.01918780244886875, + -0.012813245877623558, + -0.016058241948485374, + -0.001715487102046609, + 0.0019463563803583384, + -0.005242656916379929, + 0.02433105744421482, + -0.012550311163067818, + 0.019546933472156525, + -0.02224040776491165, + -0.02438236214220524, + 0.008824337273836136, + 0.0005491161718964577, + 0.0017202968010678887, + -0.006384177133440971, + -0.002497877459973097, + 0.0006240685470402241, + -0.015942806378006935, + -0.0116268340498209, + 0.002555594779551029, + -0.007086404599249363, + -0.021086061373353004, + 0.01825149916112423, + -0.005598580464720726, + -0.014916720800101757, + -0.005823036655783653, + 0.005858308169990778, + -0.017186935991048813, + -0.0050149941816926, + -0.020919322967529297, + 0.01010053139179945, + -0.017366500571370125, + 0.020444758236408234, + -0.002137144096195698, + 0.02534431777894497, + -0.015853025019168854, + 0.03421995788812637, + 0.01355715747922659, + -0.017417805269360542, + 0.008593467995524406, + 0.012633680365979671, + -0.0007551349699497223, + 0.004341625142842531, + -0.01229378953576088, + -0.010145423002541065, + 0.018379760906100273, + 0.024664536118507385, + -0.008292055688798428, + 0.017507588490843773, + -0.009132162667810917, + -0.007464773487299681, + -0.018084760755300522, + -0.00316483317874372, + 0.008349772542715073, + -0.020803887397050858, + -0.0024882578290998936, + -0.010401943698525429, + -0.004848254844546318, + 0.01668671891093254, + -0.00877944566309452, + -0.019585411995649338, + -0.010010749101638794, + 0.013249332085251808, + -0.014801286160945892, + -0.0020281225442886353, + -0.003636191366240382, + -0.00026533936033956707, + 0.032449960708618164, + -0.006473959423601627, + 0.02667822875082493, + -0.012896615080535412, + 0.013185201212763786, + -0.006887600291520357, + -0.018738890066742897, + 0.0035432022996246815, + -0.0023872526362538338, + 0.0447629913687706, + -0.008914119563996792, + -0.008054773323237896, + -0.004662277176976204, + -0.021791495382785797, + 0.018187370151281357, + -0.04627646505832672, + -0.009298902004957199, + 0.024959534406661987, + 0.0022766278125345707, + -0.0023183124139904976, + 0.008773032575845718, + 0.02327932044863701, + -0.02993605099618435, + -0.011312595568597317, + -0.002504290547221899, + -0.011479333974421024, + 0.017225414514541626, + -0.01342889666557312, + 0.015481068752706051, + 0.011819224804639816, + -0.014262591488659382, + -0.011537051759660244, + 0.00200247042812407, + 0.009125749580562115, + -0.034014742821455, + -1.465478908357909e-5, + -0.009254010394215584, + 0.021560626104474068, + -0.009523358196020126, + -0.0025171164888888597, + -0.0030237464234232903, + -0.00423581013455987, + -0.0006004204624332488, + -0.004713581409305334, + -0.01398041844367981, + 0.0019191009923815727, + -0.0012112620752304792, + 0.009048793464899063, + -0.019777802750468254, + -0.037246912717819214, + 0.006951730698347092, + 0.00599618861451745, + 0.006784991826862097, + -0.005659503862261772, + 0.00818303320556879, + 0.008567815646529198, + -0.013582809828221798, + -0.007734121289104223, + -0.006037873215973377, + 0.005823036655783653, + -0.03165474534034729, + 0.019713671877980232, + -0.02061149664223194, + -0.00671444833278656, + -0.002098666038364172, + -0.004158853553235531, + -0.015776067972183228, + -0.017199762165546417, + 0.02217627689242363, + -0.0008858005749061704, + 0.010280095972120762, + -0.012383571825921535, + 0.0057043954730033875, + -0.013788026757538319, + -0.002461002441123128, + -0.02621649019420147, + -0.038760386407375336, + 0.005024613346904516, + 0.01026085764169693, + -0.0076635777950286865, + -0.006829882971942425, + 0.02906387858092785, + -0.01219118107110262, + -1.1905450264748652e-5, + 0.011703790165483952, + 0.005932058207690716, + -0.023792361840605736, + -0.0011134633095934987, + 0.014596069231629372, + -0.02601127326488495, + 0.03673386946320534, + -0.0019639921374619007, + -0.03522039204835892, + -0.0064803725108504295, + -0.0016152834286913276, + 0.03532300144433975, + -0.025010839104652405, + -0.0123515073210001, + 0.011286943219602108, + -0.02642170712351799, + 0.02203519083559513, + -0.022881710901856422, + -0.020162584260106087, + 0.007144121918827295, + -0.0006865956238470972, + -0.016673892736434937, + 0.00910009816288948, + -0.004075484350323677, + -0.00994020514190197, + -0.0016834218986332417, + 0.028089096769690514, + 0.005643471609801054, + 0.00850368570536375, + 0.0009122543269768357, + 0.01242846343666315, + 0.009882488287985325, + 0.011549877002835274, + -0.00999792292714119, + -0.026755185797810555, + -0.019957367330789566, + 0.02368975430727005, + -0.015327155590057373, + -0.0047712987288832664, + -0.022048017010092735, + -0.011447268538177013, + 0.004348038230091333, + -0.005277928430587053, + 0.004787330981343985, + -0.01575041562318802, + 0.001412471174262464, + 0.03432256728410721, + 0.007086404599249363, + -0.015327155590057373, + -0.018969759345054626, + 0.016199328005313873, + -0.007484012749046087, + -0.01226813718676567, + 0.017687153071165085, + 0.015673458576202393, + -0.0170073714107275, + 0.03673386946320534, + 0.0033476047683507204, + -0.010677704587578773, + -0.003960049711167812, + -0.0033476047683507204, + 0.005075918044894934, + 0.014916720800101757, + 0.007682817056775093, + 0.0022365462500602007, + -0.014198461547493935, + -0.001528707449324429, + 0.02479279600083828, + -0.020534541457891464, + 0.004088310524821281, + -0.003677875967696309, + -0.030013008043169975, + 0.016083894297480583, + -0.027678662911057472, + 0.037452127784490585, + 0.0020088835153728724, + 0.01793084852397442, + -0.0006445100880227983, + -0.009555423632264137, + 0.012114224955439568, + -0.02755040116608143, + 0.022689320147037506, + 0.02022671513259411, + -0.01462172158062458, + -0.0034726588055491447, + -0.00880509801208973, + -0.007785425521433353, + -0.003453419776633382, + -0.0180206298828125, + 0.029166486114263535, + -0.023625623434782028, + -0.025741925463080406, + 0.005736460443586111, + -0.0005932057974860072, + 0.006983796134591103, + -0.015558024868369102, + -0.004585320595651865, + -0.028473878279328346, + 0.0028361650183796883, + -0.003655430395156145, + -0.015429764054715633, + 0.004912385251373053, + -0.013313462026417255, + 0.003969669342041016, + 0.0241258405148983, + 0.0101710744202137, + 0.005386949982494116, + 0.007407056167721748, + -0.012717049568891525, + 0.0005350876599550247, + 0.020585844293236732, + 0.019021064043045044, + -0.002582850167527795, + 0.01880302093923092, + 0.005723634269088507, + -0.026703881099820137, + 0.004643037915229797, + 0.0011383139062672853, + 0.005970536265522242, + 0.00917064119130373, + 0.011806398630142212, + 0.008439554832875729, + -0.003382876282557845, + -0.01767432689666748, + -0.02662692405283451, + -0.003453419776633382, + -0.01889280416071415, + 0.0065156444907188416, + 0.012345094233751297, + 0.007079991512000561, + -0.020816713571548462, + 0.030705615878105164, + 0.0018469543429091573, + -0.016224980354309082, + -0.02453627437353134, + -0.006964556872844696, + 0.009856835938990116, + -0.020701279863715172, + -0.002515513217076659, + 6.863952148705721e-5, + 0.009311728179454803, + 0.020855192095041275, + 0.0007811879040673375, + -0.0041011362336575985, + 0.006050699390470982, + -0.02040627971291542, + 0.021983886137604713, + -0.012248897925019264, + -0.002018502913415432, + 0.004745646379888058, + 0.006211025174707174, + -0.02747344598174095, + 0.005056678783148527, + 0.01677650213241577, + -0.01613519713282585, + -0.005960916634649038, + -0.0017459490336477757, + 0.01979062892496586, + 0.00687477458268404, + 0.00490597216412425, + -0.01886715181171894, + 0.0012200800701975822, + -0.02026519365608692, + 0.03688778355717659, + 0.009702922776341438, + 0.0009483276517130435, + 0.007015861105173826, + 0.0116268340498209, + 0.009350205771625042, + 0.00934379268437624, + -0.0066054267808794975, + -0.019598238170146942, + -0.004736026749014854, + -0.04327516630291939, + -0.004707168322056532, + -0.015545198693871498, + 0.0007178591913543642, + -0.012717049568891525, + -0.002279834123328328, + -0.001789237023331225, + 0.007913686335086823, + 0.004841842222958803, + -0.014031722210347652, + 0.01682780496776104, + -0.007169773802161217, + 0.0010789933148771524, + 0.0020409487187862396, + -0.03126996383070946, + -0.002061791019514203, + 0.015365634113550186, + 0.0036650500260293484, + 0.02040627971291542, + 0.020944975316524506, + 0.00687477458268404, + -0.01004281360656023, + -0.023471711203455925, + -0.009080858901143074, + 0.02290736325085163, + -0.0020601877477020025, + 0.011678137816488743, + -0.012383571825921535, + 0.012986397370696068, + 0.009927378967404366, + -0.025934316217899323, + -7.480204658349976e-5, + -0.02383084036409855, + -0.005928851664066315, + 0.00638097058981657, + -0.00395363662391901, + 0.00320491474121809, + 0.0008272816194221377, + -0.026165185496211052, + -0.00013186804426368326, + -0.027653010562062263, + -0.013005636632442474, + 0.0075353169813752174, + 0.0059673297218978405, + -0.01691758818924427, + 0.00021122935868334025, + 0.022997146472334862, + 0.01799497753381729, + 0.013172375038266182, + -0.0023551874328404665, + -0.00019419474119786173, + -0.01309541892260313, + -0.021983886137604713, + -0.006784991826862097, + 0.008593467995524406, + 0.011594768613576889, + 0.014339547604322433, + 0.005701188929378986, + 0.010953465476632118, + -0.037888213992118835, + 0.02011127956211567, + -0.010312161408364773, + -0.00867683719843626, + 0.019405845552682877, + 0.007496838923543692, + 0.008247164078056812, + -0.0066054267808794975, + 0.01601976342499256, + 0.008657597936689854, + 0.007868794724345207, + -0.034399524331092834, + 0.009414336644113064, + -0.019174976274371147, + -0.0021195083390921354, + 0.009529771283268929, + 0.012608028016984463, + -0.016353242099285126, + -0.00382216926664114, + 0.022856060415506363, + 0.010081292130053043, + 0.0037676584906876087, + -0.0074455346912145615, + 0.013877809047698975, + 0.0012016425607725978, + -0.014275417663156986, + -0.015352807939052582, + 0.03519473969936371, + 0.0022269266191869974, + -0.013518678955733776, + -0.008304880931973457, + 0.01472433004528284, + 0.020675627514719963, + -0.010010749101638794, + 0.009959444403648376, + -0.0005627438658848405, + 0.0023776330053806305, + -0.026024099439382553, + 0.0013916287571191788, + 0.0427364706993103, + 0.0016128785209730268, + -0.015109112486243248, + -0.004877113737165928, + -0.010543030686676502, + 0.008003468625247478, + 0.025588013231754303, + 0.013646939769387245, + -0.012306615710258484, + -0.010106944479048252, + -0.01082520466297865, + 0.008099664002656937, + 0.004829016048461199, + -0.00834335945546627, + -0.010562269948422909, + 0.04112038388848305, + -0.003774071577936411, + 0.034194305539131165, + -0.0033892893698066473, + -0.0030670342966914177, + -0.0303721372038126, + 5.7567016483517364e-5, + -0.0033251589629799128, + -0.03291169926524162, + -0.017738457769155502, + -0.010254444554448128, + 0.007041513454169035, + 0.000578375649638474, + 0.0012553517008200288, + -0.004546842537820339, + -0.009914553724229336, + -0.0018934487598016858, + -0.016289111226797104, + -0.006829882971942425, + 0.00824075099080801, + 0.0030670342966914177, + 0.01049172692000866, + -0.012569550424814224, + 0.02066280134022236, + 0.01758454367518425, + -0.016840631142258644, + -0.018700411543250084, + -0.004556461703032255, + -0.011665311641991138, + 0.020072802901268005, + -0.008561402559280396, + -0.014929546974599361, + -0.012486180290579796, + -0.027627358213067055, + 0.01994454115629196, + -0.004636624827980995, + -0.010106944479048252, + -0.0010188710875809193, + -0.0016465468797832727, + 0.01625063270330429, + 0.012409224174916744, + -0.006140481680631638, + 0.0312443096190691, + 0.013877809047698975, + -0.01278759352862835, + -0.0003519153397064656, + -0.007689229678362608, + -0.009177054278552532, + 0.017302369698882103, + 0.00037977195461280644, + 0.002945186570286751, + 0.007759773172438145, + 0.013236505910754204, + 0.003430974204093218, + -8.607496420154348e-5, + 0.006964556872844696, + -0.005236243829131126, + -0.03391213342547417, + 0.0011182731250301003, + 0.0004038208571728319, + -0.009651619009673595, + 0.010652052238583565, + -0.010940639302134514, + 0.007843142375349998, + 0.0019816281273961067, + -0.008388251066207886, + -0.00834335945546627, + 0.01682780496776104, + 0.00269988807849586, + 0.0007078388007357717, + -0.0019784215837717056, + 0.0316803976893425, + 0.0004825809446629137, + 0.004197332076728344, + -0.0034726588055491447, + 0.016212154179811478, + 0.015711937099695206, + 0.018187370151281357, + -0.002645377302542329, + -0.022779103368520737, + -0.000125455015222542, + 0.013839331455528736, + 0.0061372751370072365, + -0.007246730383485556, + -0.03909386694431305, + -0.00293236062861979, + 0.023009972646832466, + 0.008792271837592125, + -0.01749476231634617, + 0.0032594255171716213, + -0.016673892736434937, + -0.0020281225442886353, + -0.02357431873679161, + -0.028345618396997452, + 0.0029018986970186234, + -0.009183467365801334, + 0.0015022535808384418, + -0.016956066712737083, + -0.00021864443260710686, + 0.006406622938811779, + 0.030859528109431267, + -0.007580208126455545, + -0.009151401929557323, + 0.0011904197745025158, + 0.011883355677127838, + 0.0020056769717484713, + 0.007009448017925024, + -0.0025940730702131987, + -0.02229171246290207, + 0.02206084318459034, + 0.002618121914565563, + 0.011383138597011566, + -0.0007403048221021891, + -0.00191108463332057, + 0.004277494736015797, + 0.008022707886993885, + 0.015275850892066956, + -0.01528867706656456, + -0.015853025019168854, + 0.022432798519730568, + -0.029115183278918266, + -0.00362977827899158, + 0.005617819260805845, + 0.018213022500276566, + 0.009414336644113064, + 0.012479767203330994, + -0.006669557187706232, + -0.001381207606755197, + 0.011511399410665035, + -0.007516077719628811, + -0.0019287205068394542, + -0.0021852420177310705, + 0.00676575256511569, + 0.016840631142258644, + 0.001602457370609045, + 0.024921057745814323, + 0.03142387419939041, + -0.009279662743210793, + 0.0010821997420862317, + -0.005220211111009121, + 0.011306182481348515, + -0.003309126477688551, + 0.010401943698525429, + -0.0046911356039345264, + -0.0008521321578882635, + -0.0156991109251976, + 0.001641737180761993, + 0.008760207332670689, + 0.00547993928194046, + 0.011825637891888618, + -0.010619986802339554, + 0.001165569294244051, + -0.027345184236764908, + -0.019200628623366356, + -0.012127050198614597, + 0.010613574646413326, + 0.02130410447716713, + 0.008939771912992, + 0.01020313985645771, + 0.005088743753731251, + -0.008394664153456688, + -0.0010044417576864362, + -0.04807211458683014, + -0.011036834679543972, + -0.013916287571191788, + 0.001434916746802628, + 0.0024850512854754925, + -0.015609328635036945, + 0.006156514398753643, + 0.007394230458885431, + -0.0011968327453359962, + 0.012845310382544994, + 0.008029120974242687, + -0.02513910084962845, + 0.010818791575729847, + -0.007477599661797285, + -0.020508889108896255, + -0.02176584303379059, + -0.00586472125723958, + 0.0018822259735316038, + 0.00917064119130373, + -0.03011561557650566, + -0.015109112486243248, + -0.01004281360656023, + -0.014147156849503517, + -0.009690096601843834, + -0.0015559628373011947, + -0.006538089830428362, + 0.008696076460182667, + -0.008317707106471062, + 0.013736722990870476, + -0.011684550903737545, + 0.034630391746759415, + -0.013210853561758995, + -0.0001007548053166829, + -0.0008192653185687959, + -0.004203745163977146, + 0.004514777101576328, + -0.0032113275956362486, + 0.01265933271497488, + -0.00171869364567101, + -0.0071569480933249, + 0.012473355047404766, + 0.010357053019106388, + -0.009484879672527313, + 0.0077405343763530254, + -0.007272382732480764, + -0.003459832863882184, + -0.02383084036409855, + -0.029115183278918266, + 0.0264473594725132, + 0.020714106038212776, + 0.018328456208109856, + 0.004251842852681875, + 0.016417371109128, + 0.023971928283572197, + 0.004097929690033197, + 0.002114698523655534, + 0.021586278453469276, + -0.008554989472031593, + -0.011504986323416233, + -0.024228449910879135, + -0.012851723469793797, + 0.00860629417002201, + -0.004966896027326584, + -0.034835610538721085, + -0.013056940399110317, + -0.009202706627547741, + -0.01516041625291109, + 0.00834335945546627, + -0.014339547604322433, + 0.007952163927257061, + -0.007503252010792494, + 0.018674761056900024, + 0.014147156849503517, + 0.0047392332926392555, + -0.0008481239783577621, + -0.017546065151691437, + -0.0028682302217930555, + -0.003337985137477517, + 0.025908663868904114, + -0.00831129401922226, + 0.007265969645231962, + 0.01793084852397442, + 0.012537484988570213, + -0.005588960833847523, + 0.012146289460361004, + 0.0031520070042461157, + -0.00841390248388052, + -0.0009194689919240773, + -0.0008809908176772296, + -0.027883879840373993, + 0.001624902943149209, + -0.007894447073340416, + -0.009587488137185574, + 0.011530638672411442, + -0.017571717500686646, + 0.017135631293058395, + -0.019162150099873543, + -0.011158682405948639, + 0.008016294799745083, + 0.005271515343338251, + -0.015788894146680832, + -0.017289545387029648, + -0.0035175501834601164, + 0.012229659594595432, + 0.009228358045220375, + 0.026934750378131866, + 0.03870908543467522, + -0.0156991109251976, + 0.002412904752418399, + -0.00036955118412151933, + -0.03622082620859146, + 0.003911952022463083, + -0.031346917152404785, + 0.0002994085953105241, + -0.012595201842486858, + 0.017084326595067978, + -0.010882921516895294, + 0.022881710901856422, + 0.012845310382544994, + -0.010985529981553555, + 0.01967519335448742, + -0.02336910180747509, + 0.001329903258010745, + 0.0046462444588541985, + 0.004556461703032255, + -0.021239973604679108, + -0.030423441901803017, + 0.007022274192422628, + 0.017751283943653107, + 0.022099321708083153, + -0.005951297003775835, + 0.010786726139485836, + 0.008279229514300823, + -0.0193288903683424, + 0.0026245350018143654, + 0.022573886439204216, + -0.002217307221144438, + -0.006153307855129242, + 0.008721728809177876, + -0.0007423089118674397, + 0.01245411578565836, + 0.00219486141577363, + 0.001088612829335034, + 0.018790194764733315, + 0.0048995595425367355, + -0.002792877145111561, + -0.022997146472334862, + 0.010921400040388107, + 0.00023106970184016973, + -0.006323253270238638, + 0.0035464088432490826, + 0.033296480774879456, + -0.00013216865772847086, + -0.003354017622768879, + 0.0001643340365262702, + 0.0025058938190340996, + 0.0062495032325387, + -0.003533582668751478, + 0.01634041592478752, + -0.03409169986844063, + 0.019918888807296753, + 0.00989531446248293, + -0.01953410729765892, + -0.01262726727873087, + 0.0003533182025421411, + 0.0037195608019828796, + 0.004158853553235531, + -0.0006196596077643335, + 0.031141702085733414, + 0.0054093957878649235, + 0.031167354434728622, + 0.00619819900020957, + 0.010652052238583565, + 0.018097586929798126, + 0.005425428040325642, + 0.0020906496793031693, + -0.006894013378769159, + 0.003783691208809614, + 0.01319802738726139, + -0.0044762990437448025, + 0.009760640561580658, + 0.00037155527388677, + -0.02226606011390686, + -0.01575041562318802, + -0.00011633647955022752, + 0.01087009534239769, + 0.010658465325832367, + -0.002339154714718461, + 0.01120357308536768, + -0.020470410585403442, + 0.021791495382785797, + -0.011460094712674618, + 0.008664011023938656, + -0.0034053220879286528, + 0.0015263025416061282, + -0.003434180747717619, + 0.0018213021103292704, + -0.01139596477150917, + 0.0058775474317371845, + 0.019816281273961067, + -0.0009114526910707355, + -0.019893236458301544, + 0.02561366558074951, + 0.00046374264638870955, + 0.011678137816488743, + -0.005553688853979111, + 0.0008272816194221377, + -0.0030942896846681833, + 0.006336079444736242, + 0.002850594464689493, + -0.04353168606758118, + 0.009728575125336647, + -0.014814112335443497, + 0.002799290232360363, + 0.017982153221964836, + -0.01990606263279915, + 0.021906930953264236, + -0.00627836212515831, + -0.0009635586175136268, + -0.01528867706656456, + 0.012274550274014473, + 0.0059224385768175125, + 0.014698677696287632, + 0.019264759495854378, + 0.004457059781998396, + 0.006669557187706232, + -0.017148457467556, + 0.017289545387029648, + -0.0025219263043254614, + 0.015327155590057373, + 0.005040646065026522, + -0.001287416904233396, + 0.017712805420160294, + 0.004364070948213339, + -0.006284775212407112, + 0.01082520466297865, + 0.00671444833278656, + -0.0061725471168756485, + 0.012255311012268066, + -0.009452815167605877, + 0.0063424925319850445, + 0.01516041625291109, + 0.0032337734010070562, + 0.0039632562547922134, + -0.007862381637096405, + 0.00989531446248293, + -0.01575041562318802, + 0.02447214536368847, + -0.010068465955555439, + 0.021983886137604713, + -0.017020197585225105, + -0.0035592347849160433, + 0.03188561275601387, + 0.0068106441758573055, + -0.003501517465338111, + 0.008625533431768417, + 0.008952598087489605, + 0.0035848869010806084, + 0.0015735987108200788, + 0.005059885326772928, + -0.012678571976721287, + -0.02043193206191063, + 0.017533238977193832, + 0.019162150099873543, + -0.0028457846492528915, + -0.006361731328070164, + 0.002523529576137662, + 0.0014180825091898441, + 0.019380193203687668, + 0.0036939086858183146, + -0.011780746281147003, + -0.01673802360892296, + -0.019662367179989815, + -0.015404111705720425, + -0.00233594817109406, + 0.004758472554385662, + -0.012422050349414349, + -0.004322386346757412, + -0.01239639800041914, + -0.007419882342219353, + 0.0015856231329962611, + -0.0004817793087568134, + -0.0151860686019063, + -0.013236505910754204, + 0.013813679106533527, + 0.010863682255148888, + 0.00498613528907299, + -0.007676403969526291, + 0.012806832790374756, + 0.014685851521790028, + -0.009286075830459595, + 0.0098119443282485, + 0.014006069861352444, + -0.0006036270060576499, + -0.004258255939930677, + 0.014172809198498726, + 0.021316930651664734, + 0.004793744068592787, + -0.026498664170503616, + 0.00901031494140625, + 0.00671444833278656, + 0.002052171388641, + -0.0033764634281396866, + -0.060179926455020905, + -0.0019976606126874685, + 0.0063873836770653725, + 0.00462059210985899, + -0.010773899964988232, + 0.002435350324958563 + ], + "85311773-cc40-40c8-9184-15ff45fba6dd": [ + -0.009544942528009415, + -0.0055080014280974865, + -0.006406229455024004, + 0.008921267464756966, + -0.006667223758995533, + -0.009348349645733833, + 0.017191743478178978, + 0.005213111639022827, + -0.04051177203655243, + -0.009619512595236301, + 0.01383609976619482, + 0.0352783240377903, + -0.014751275070011616, + -0.022723471745848656, + -0.018859397619962692, + 0.009036512114107609, + -0.019239025190472603, + 0.019672885537147522, + -0.009456814266741276, + -0.01563255488872528, + 0.07402753829956055, + -0.0007469697156921029, + -0.05453090742230415, + -0.004081005230545998, + -0.01241927221417427, + -0.019645769149065018, + -3.0029199479031377e-5, + -0.010419444181025028, + -0.045284245163202286, + 0.026451963931322098, + 0.03704088553786278, + 0.006152013782411814, + 0.01658162660896778, + 0.01941528171300888, + 0.004816535394638777, + -0.02534019574522972, + 0.008297592401504517, + 0.06518761813640594, + -0.0011499011889100075, + -0.00010751195077318698, + -0.05255141854286194, + -0.01618843898177147, + 9.247087291441858e-5, + 0.0242691021412611, + -0.04235568270087242, + -0.008765348233282566, + 0.023618310689926147, + -0.024865660816431046, + 0.01997116580605507, + 0.033624228090047836, + -0.0009812716161832213, + -0.051331184804439545, + 0.0024692793376743793, + -0.014466553926467896, + 0.01386999525129795, + 0.007375637535005808, + -0.010358432307839394, + 0.0554528646171093, + -0.01689346320927143, + 0.014154716394841671, + -0.010249966755509377, + 0.01304294727742672, + 0.014575019478797913, + 0.029638132080435753, + -0.05219890549778938, + -0.009633070789277554, + 0.02432333491742611, + 0.005162268411368132, + -0.09474439918994904, + -0.037773024290800095, + 0.015659671276807785, + 0.06589264422655106, + -0.006674002856016159, + 0.0020727033261209726, + -0.009375466033816338, + 0.03394962474703789, + 0.01300905179232359, + -0.0031692192424088717, + 0.012331143952906132, + 0.014317413792014122, + -0.0152800427749753, + -0.0080399876460433, + 0.0033081902656704187, + -0.015035996213555336, + 0.04645024612545967, + 0.008236580528318882, + 3.0029199479031377e-5, + -0.026262151077389717, + 0.00691804988309741, + -0.02262856438755989, + -0.001252434798516333, + 0.04569099098443985, + 0.023225123062729836, + -0.021137166768312454, + -0.03188878670334816, + 0.005670699290931225, + 0.0006732472684234381, + 0.0027641693595796824, + 0.012378597632050514, + -0.0019354269606992602, + 0.002077787648886442, + 0.03647144138813019, + -0.04083716869354248, + 0.018195046111941338, + -0.027509501203894615, + -0.010914316400885582, + -0.01068382803350687, + -0.03131934255361557, + 0.015225810930132866, + 0.05981858819723129, + 0.020635515451431274, + -0.012087097391486168, + 0.02231672592461109, + 0.04485038295388222, + -0.004636889789253473, + -0.04051177203655243, + 0.020703306421637535, + 0.015524090267717838, + 0.011327840387821198, + -0.03950846940279007, + -0.011158362962305546, + 0.019306816160678864, + 0.026682453230023384, + 0.0017845924012362957, + -0.004196249879896641, + -0.030614318326115608, + -0.008900930173695087, + -0.012595527805387974, + 0.02974659763276577, + 0.015456299297511578, + -0.02942120097577572, + -0.012615865096449852, + -0.002918393351137638, + -0.017693394795060158, + -0.03750186413526535, + 0.017815418541431427, + 0.005548676010221243, + 0.04753489792346954, + -0.058083146810531616, + 0.01997116580605507, + -0.03232264518737793, + -0.021191399544477463, + -0.03145492449402809, + 0.002416741568595171, + -0.006209636107087135, + -0.022140471264719963, + -0.03408520668745041, + 0.003235315205529332, + 0.002009996911510825, + 0.011605782434344292, + -0.0242691021412611, + -0.005524949170649052, + 0.01663585938513279, + 0.04007791355252266, + 0.015239369124174118, + 0.018886512145400047, + -0.031210878863930702, + 0.004135238006711006, + 0.013666622340679169, + -0.009321233257651329, + 0.0015388508327305317, + -0.0535547211766243, + 0.01389711070805788, + 0.03202436864376068, + 0.029095806181430817, + 0.006368944421410561, + 0.004138627555221319, + 0.009761873632669449, + -0.023740332573652267, + 0.01998472400009632, + 0.03839670121669769, + -0.013531041331589222, + 0.0007058715564198792, + 0.0059960950165987015, + 0.002925172448158264, + -0.010744839906692505, + 0.05602230504155159, + -0.006189298816025257, + 0.01506311260163784, + -0.03161762282252312, + -0.0021235463209450245, + -0.0217337254434824, + 0.029204269871115685, + 0.018059466034173965, + -0.009592396207153797, + 0.02477075345814228, + -0.015795253217220306, + 0.000494872743729502, + -0.01563255488872528, + -0.011483759619295597, + -0.024092845618724823, + -0.022235378623008728, + 0.005535117816179991, + 0.019455956295132637, + 0.006270647514611483, + -0.0008592482190579176, + 0.008772127330303192, + -0.007409533020108938, + 0.01979490928351879, + 0.009104302152991295, + 0.0012981935869902372, + -0.0359020009636879, + -0.039996564388275146, + 0.02155747078359127, + -0.037908606231212616, + -0.00427081948146224, + -0.009700861759483814, + 0.012182003818452358, + 0.016934137791395187, + -0.07109897583723068, + 0.07782382518053055, + -0.029068689793348312, + 0.006802805233746767, + -0.041569311171770096, + -0.05802891403436661, + 0.010561804287135601, + -0.00510464608669281, + 0.008934825658798218, + 0.01941528171300888, + -0.03899326175451279, + 0.012873469851911068, + 0.01746290735900402, + 0.004352168645709753, + -0.00797219667583704, + -0.022099796682596207, + 0.02028300240635872, + 0.0014549597399309278, + 0.03156339004635811, + -0.036010466516017914, + -0.0353054404258728, + 0.05531728267669678, + 0.004731796681880951, + -0.002242180285975337, + -0.026316383853554726, + -0.005033466033637524, + -0.00012742549006361514, + 0.00459960475564003, + 0.009219546802341938, + 0.018886512145400047, + -0.07451563328504562, + -0.009944908320903778, + 0.0026895995251834393, + 0.013632726855576038, + 0.013951343484222889, + 0.030993947759270668, + -0.0007639174000360072, + 0.009375466033816338, + 0.0020659242291003466, + 0.008887371979653835, + -0.02074398100376129, + -0.014127600006759167, + 0.025611359626054764, + 0.012039643712341785, + -0.029638132080435753, + -0.022411633282899857, + 0.025313079357147217, + -0.0018913629464805126, + -0.057703517377376556, + -0.008894151076674461, + -0.027441710233688354, + -0.0017523918068036437, + 0.003948813304305077, + 0.019184792414307594, + 0.0026370615232735872, + 0.03826111927628517, + -0.0340309739112854, + 0.02760440856218338, + -0.010853304527699947, + -0.02085244655609131, + 0.03549525514245033, + -0.042382799088954926, + -0.010548246093094349, + -0.009626291692256927, + -0.018642466515302658, + -0.04021349549293518, + 0.02414707839488983, + -0.0009702556417323649, + -0.02388947270810604, + -0.013090400956571102, + 0.001523597864434123, + -0.022398075088858604, + -0.008995837531983852, + -0.005267343949526548, + 0.03188878670334816, + -0.016988370567560196, + 0.015130903571844101, + 0.001232097507454455, + 0.002694683847948909, + -0.027170546352863312, + -0.0170154869556427, + -0.0022337064146995544, + -0.012527736835181713, + 0.012927702628076077, + 0.021476121619343758, + 0.033678460866212845, + 0.013273435644805431, + -0.023035308346152306, + -0.005931693594902754, + -0.037149351090192795, + 0.009592396207153797, + -0.03031603991985321, + -0.00099652458447963, + 0.00398609833791852, + 0.009592396207153797, + 0.006511304993182421, + -0.008941604755818844, + 0.04959573969244957, + 0.01879160664975643, + -0.049622856080532074, + -0.014819066040217876, + 0.007362079340964556, + 0.021204957738518715, + -0.008568755351006985, + -0.0007122269598767161, + 0.030044876039028168, + 0.02822808362543583, + 0.013592052273452282, + -0.021720167249441147, + -0.039996564388275146, + 0.01587660238146782, + 0.016662975773215294, + 0.011565107852220535, + -0.059710122644901276, + 0.010826188139617443, + 0.013537820428609848, + -0.01891362853348255, + 0.04165066033601761, + -0.007450207602232695, + 0.0025218173395842314, + -0.02866194397211075, + -0.022045563906431198, + -0.00970764085650444, + -0.005813059862703085, + -0.03511562570929527, + -0.010710944421589375, + -0.04460633546113968, + -0.03346153348684311, + -0.033678460866212845, + -0.008616209030151367, + -0.04091851785778999, + 0.002006607363000512, + -0.01789676770567894, + -0.032105717808008194, + -0.0050232973881065845, + 0.00955172162503004, + -0.005270733498036861, + -0.029041573405265808, + -0.007606126368045807, + -0.0027421372942626476, + -0.016839230433106422, + 0.0006931608077138662, + -0.009260221384465694, + 0.02413352020084858, + 0.03232264518737793, + 0.0636148750782013, + -0.036146048456430435, + -0.0005474105710163713, + -0.016405370086431503, + 0.008941604755818844, + -0.014480112120509148, + 0.026628220453858376, + -0.007416312117129564, + -0.0144936703145504, + -0.00155918812379241, + -0.007145148701965809, + 0.028634827584028244, + -0.006470630411058664, + 0.02527240477502346, + -0.005341914016753435, + -0.00930089596658945, + -0.034573301672935486, + 0.007734928745776415, + 0.022669238969683647, + -0.017476465553045273, + -0.028255200013518333, + -0.0160799752920866, + 0.01083296723663807, + -0.026858709752559662, + -0.017178185284137726, + 0.01833062805235386, + -0.006860427558422089, + 0.023469170555472374, + 0.016229113563895226, + -0.0353054404258728, + 0.014819066040217876, + 0.02703496627509594, + -4.6818011469440535e-5, + 0.004101342521607876, + 0.024730078876018524, + 0.028851758688688278, + -0.01820860430598259, + 0.03430213779211044, + -0.012663318775594234, + -0.021137166768312454, + -0.012961598113179207, + 0.036444325000047684, + -0.005589350126683712, + 0.019239025190472603, + -0.014059809036552906, + -0.025258846580982208, + 0.03232264518737793, + 0.020133864134550095, + 0.027129871770739555, + -0.024526705965399742, + 0.014249622821807861, + -0.03289208933711052, + -0.005968978628516197, + -0.012839575298130512, + -0.01979490928351879, + 0.02817385084927082, + 0.0176527202129364, + -0.026329942047595978, + 0.007762045133858919, + 0.005457158200442791, + 0.023984380066394806, + -0.011239712126553059, + 0.020635515451431274, + -0.0007033293950371444, + -0.030397389084100723, + -0.04992113634943962, + 0.024608055129647255, + 0.03660702332854271, + -0.03346153348684311, + 0.029150038957595825, + 0.016595184803009033, + 0.012839575298130512, + 0.06594687700271606, + 0.01071772351861, + -0.026045219972729683, + -0.0026404510717839003, + -0.01477839145809412, + 0.00901617482304573, + -0.016283346340060234, + 0.032539576292037964, + -0.00800609216094017, + -0.01872381567955017, + -0.006867206655442715, + 0.0012049812357872725, + 0.001543087768368423, + 0.004972454160451889, + 0.0005537659744732082, + 0.04555540904402733, + -0.007328183855861425, + -0.005531728267669678, + 0.026858709752559662, + 0.003364117816090584, + -0.027929803356528282, + -0.008582313545048237, + -0.010792293585836887, + 0.007592568174004555, + 0.004752133972942829, + 0.04132526367902756, + -0.006684171501547098, + 0.020594840869307518, + -0.005362251307815313, + 0.006687561050057411, + -0.036905303597450256, + -0.03826111927628517, + -0.0006321491091512144, + -0.0055147805251181126, + -0.040105029940605164, + -0.005311408080160618, + 0.020838888362050056, + -0.004345389548689127, + 0.01814081519842148, + -0.05634770169854164, + 0.001426996081136167, + -0.008033208549022675, + 0.015266485512256622, + -0.017937442287802696, + 0.028309432789683342, + 0.0036607023794203997, + -0.043196290731430054, + -0.010907537303864956, + 0.00579611212015152, + 0.020784655585885048, + -0.0033370014280080795, + 0.006562148220837116, + 0.0067146774381399155, + -0.015483415685594082, + -0.023170890286564827, + -0.05764928460121155, + -0.009985582903027534, + -0.03159050643444061, + 0.03316325321793556, + -0.018249278888106346, + -0.012832796201109886, + -0.03554948791861534, + 0.018859397619962692, + -0.030993947759270668, + 0.02275058813393116, + -0.020784655585885048, + 0.008622988127171993, + 0.009755094535648823, + 0.007978975772857666, + -0.02993641048669815, + -0.005494443234056234, + 0.010738060809671879, + -0.019320374354720116, + -0.01361238956451416, + 0.009877117350697517, + -0.02955678291618824, + 0.01808658242225647, + -0.007667137775570154, + 0.01620199717581272, + -0.0035420686472207308, + -0.021259190514683723, + -0.0025760498829185963, + 0.005799501668661833, + -0.008446731604635715, + -0.03940000385046005, + -0.01632402092218399, + 0.0049216109327971935, + 0.00040166042163036764, + -0.012561632320284843, + -0.011727806180715561, + -0.03668837249279022, + 0.021693050861358643, + 0.01288702804595232, + -0.03940000385046005, + 0.021516796201467514, + 0.020960910245776176, + -0.014222507365047932, + 0.034654650837183, + 0.02515038102865219, + -0.003758999053388834, + -0.014195390976965427, + -0.01570034585893154, + 0.014737716875970364, + -0.009138197638094425, + -0.0004389453388284892, + 0.010758398100733757, + -0.02250654064118862, + -0.004850430879741907, + 0.020120305940508842, + 0.02275058813393116, + -0.0019439008319750428, + 0.009158534929156303, + -0.0034268242307007313, + 0.0472637377679348, + -0.03332595154643059, + -0.016351137310266495, + 0.030722783878445625, + -0.046097733080387115, + 0.038532283157110214, + -0.009436476975679398, + -0.017856093123555183, + 0.018750932067632675, + -0.0327836237847805, + 0.0032403995282948017, + -0.018073024228215218, + 0.014330971986055374, + -0.03245822712779045, + -0.0038979703094810247, + 0.016608742997050285, + -0.04807722568511963, + 0.005253785755485296, + -0.0028031489346176386, + -0.021218515932559967, + 0.015849485993385315, + -0.01997116580605507, + -9.447016964259092e-6, + -0.0019354269606992602, + -0.001235487055964768, + -0.009463593363761902, + -0.006162182427942753, + -0.013992018066346645, + -0.003925086464732885, + 0.014819066040217876, + 0.01231758575886488, + 0.0059927054680883884, + -0.004230144899338484, + 0.04303359240293503, + 0.006033380050212145, + -0.026641778647899628, + 0.02553001046180725, + -0.015239369124174118, + 0.026994291692972183, + 0.0010516045149415731, + 0.003092954633757472, + 0.026180801913142204, + -0.011673573404550552, + -0.01658162660896778, + -0.005209722090512514, + -0.004667395725846291, + -0.029882177710533142, + -0.017354441806674004, + -0.030288923531770706, + 0.006250310689210892, + 0.0029455097392201424, + 0.005030076485127211, + 0.028065385296940804, + 0.01833062805235386, + -0.03159050643444061, + 0.012751447036862373, + 0.01083296723663807, + -0.009470372460782528, + -0.00047411181731149554, + -0.0014939394313842058, + 0.0034336033277213573, + 0.01216844655573368, + 0.020825330168008804, + 0.02727901190519333, + -0.016405370086431503, + -0.023916589096188545, + 0.021028701215982437, + -0.027902686968445778, + 0.02269635535776615, + -0.012263352982699871, + -0.014968205243349075, + -0.03370557725429535, + 0.012107434682548046, + 0.02218114584684372, + -0.03373269364237785, + 0.03961693495512009, + 0.02010674774646759, + 0.01631046272814274, + 0.016296904534101486, + 0.03427502140402794, + -0.03883056342601776, + 0.01839841902256012, + -0.021137166768312454, + 0.05276834964752197, + -0.010473676025867462, + 0.02155747078359127, + -0.014520786702632904, + -0.0031522714998573065, + -0.024906335398554802, + -0.02054060809314251, + -0.014263181015849113, + 0.0003972116392105818, + 0.03069566749036312, + 0.0022642123512923717, + -0.04406401142477989, + 0.03858651593327522, + -0.03232264518737793, + 0.02760440856218338, + 0.03698665276169777, + -0.031102413311600685, + -0.027821337804198265, + -0.0031793878879398108, + -0.011029561050236225, + -0.0019811857491731644, + -0.003921696916222572, + -0.006402839906513691, + 0.006406229455024004, + -0.014358088374137878, + 0.022018447518348694, + 0.02980083040893078, + 0.03893902897834778, + -0.032349761575460434, + 0.007775603327900171, + 0.005453768651932478, + 0.010500792413949966, + -0.02432333491742611, + -0.02999064326286316, + 0.002335392637178302, + -0.0020388078410178423, + -0.0037183247040957212, + -0.02458093874156475, + 0.010541466996073723, + -0.017815418541431427, + 0.006436734925955534, + 0.029041573405265808, + -0.019198350608348846, + 0.018059466034173965, + 0.005955420434474945, + -0.0033725916873663664, + -0.02010674774646759, + -0.0013888637768104672, + -0.032241299748420715, + -0.028200967237353325, + 0.032105717808008194, + 0.026506196707487106, + 0.006277426611632109, + 0.001507497625425458, + 0.012446388602256775, + -0.008772127330303192, + -0.038288235664367676, + -0.016527393832802773, + -0.002089651068672538, + 0.008365383371710777, + -0.031102413311600685, + 0.012059981003403664, + 0.01304294727742672, + -0.022574331611394882, + -0.0038471270818263292, + 0.0019947439432144165, + -0.011009223759174347, + 0.004175912588834763, + 0.009721199050545692, + -0.0076942541636526585, + -0.030288923531770706, + -0.019076326861977577, + -0.04297935962677002, + -0.011110910214483738, + -0.005335134919732809, + -0.01708327792584896, + 0.009111081250011921, + 0.012900586239993572, + -0.03365134447813034, + 0.011585445143282413, + -0.012141330167651176, + -0.006148624233901501, + 0.025990987196564674, + 0.01820860430598259, + -0.0186017919331789, + -0.032756507396698, + 0.002060839906334877, + 0.00033175115822814405, + -0.0009711030288599432, + 6.96974020684138e-5, + 0.014425879344344139, + 0.0008325555827468634, + 0.009097523055970669, + -0.005118204280734062, + -0.01744934916496277, + -0.002516733016818762, + 0.006257089786231518, + 0.0023980990517884493, + -0.03508850932121277, + 0.012907365337014198, + 0.004389453213661909, + -0.029963526874780655, + -0.0076942541636526585, + 0.011293944902718067, + 0.010982107371091843, + -0.001003303681500256, + 0.02356407791376114, + 0.0038810225669294596, + 0.027401035651564598, + -0.01197863183915615, + 0.0007647647871635854, + -0.002626892877742648, + 0.02280482091009617, + -0.008399278856813908, + -0.01739511638879776, + -0.021503238007426262, + 0.03793572261929512, + -0.03926442191004753, + -0.008094219490885735, + -0.007382416632026434, + -0.004274209029972553, + 0.00785017292946577, + -5.989951387164183e-5, + 0.02387591451406479, + 0.02338782139122486, + -0.007456986699253321, + 0.0005465632420964539, + 0.032295528799295425, + 0.05065327510237694, + -0.007029904518276453, + 0.03731204941868782, + 0.012819238007068634, + -0.00797219667583704, + 0.011178700253367424, + 0.00518260570243001, + 0.018669582903385162, + 0.0028031489346176386, + 0.011192258447408676, + 0.02218114584684372, + 0.016229113563895226, + 0.018167931586503983, + 0.004362337291240692, + -0.041569311171770096, + -0.021787958219647408, + -0.012656539678573608, + 0.021950656548142433, + 0.033569999039173126, + -0.030261807143688202, + 0.03489869832992554, + 0.009382245130836964, + 0.001869330881163478, + -0.0006270647863857448, + -0.003014995250850916, + 0.01039910688996315, + 0.01017539668828249, + -0.002193031832575798, + -0.03037027269601822, + -0.005294460337609053, + 0.011748143471777439, + 0.009178872220218182, + -0.004158964846283197, + 0.003691208316013217, + 0.005158878862857819, + 0.018357744440436363, + 0.04512154683470726, + -0.0024625002406537533, + -0.02199133113026619, + 0.00383695843629539, + 0.004101342521607876, + 0.018818723037838936, + -0.01380220428109169, + -0.00560968741774559, + -0.008670441806316376, + -0.021462563425302505, + 0.032241299748420715, + -0.022655680775642395, + -0.011232933029532433, + 0.014249622821807861, + -0.01744934916496277, + -0.03723070025444031, + 0.017747627571225166, + 0.0008761959034018219, + 0.006684171501547098, + -0.016676533967256546, + -0.007843393832445145, + 0.005236838012933731, + 0.04240991547703743, + 0.01420894917100668, + 0.0144936703145504, + -0.00955172162503004, + -0.04102698341012001, + 0.016229113563895226, + -0.008724674582481384, + 0.013178529217839241, + -0.03427502140402794, + -0.0030810912139713764, + 0.020838888362050056, + -0.03850516676902771, + 0.015388508327305317, + 0.03378692641854286, + 0.00829081330448389, + 0.0031082076020538807, + -0.038152653723955154, + -0.004541982896625996, + 0.028445014730095863, + -0.02123207412660122, + 0.021571028977632523, + 0.021571028977632523, + -0.0011888808803632855, + -0.009734757244586945, + 0.0016210471512749791, + 0.006996009033173323, + 0.007192602381110191, + 0.03883056342601776, + -0.005135152023285627, + -0.040972750633955, + -0.019523747265338898, + 0.05016518011689186, + -0.01052790880203247, + -0.028905991464853287, + -0.013456471264362335, + -0.01625622995197773, + 0.00485382042825222, + -0.0030777016654610634, + 0.011721027083694935, + -0.010656711645424366, + 0.017788302153348923, + 0.0036607023794203997, + -0.004189470782876015, + -0.01121937483549118, + -0.04078293591737747, + -0.001850688480772078, + -0.013707296922802925, + 0.033868275582790375, + -0.024038612842559814, + 0.036200281232595444, + 0.019998282194137573, + 0.02727901190519333, + 0.0018710256554186344, + 0.02219470404088497, + -0.030017759650945663, + -0.015713904052972794, + -0.026357058435678482, + -0.007511219009757042, + 0.005843565799295902, + -0.032295528799295425, + -0.01746290735900402, + -0.00333191710524261, + -0.026858709752559662, + -0.0006135065923444927, + -0.027875570580363274, + -0.006996009033173323, + 0.0025607969146221876, + -0.021516796201467514, + -0.01827639527618885, + -0.025868963450193405, + 0.017178185284137726, + -0.013992018066346645, + -0.0004876699822489172, + 0.024486031383275986, + 0.01670365035533905, + -0.00409456342458725, + -0.05100578814744949, + 0.004840262234210968, + 0.02432333491742611, + -0.0014159800484776497, + -0.027956919744610786, + -0.00423692399635911, + -0.012202341109514236, + 0.010405885986983776, + -0.00781627744436264, + -0.04631466418504715, + -0.016676533967256546, + -0.0006931608077138662, + 0.006175740621984005, + -0.04544694349169731, + 0.017530696466565132, + 0.017029045149683952, + -0.006531642284244299, + -0.0045623197220265865, + -0.018574675545096397, + 0.008412836119532585, + -0.008589092642068863, + -0.04392842948436737, + 0.0192119088023901, + 0.030858365818858147, + -0.008284034207463264, + 0.01618843898177147, + 0.015903718769550323, + -0.0003861956356558949, + 0.002238790737465024, + -0.033814042806625366, + 0.020906679332256317, + 0.0002898056118283421, + 0.013829320669174194, + -0.005124983377754688, + -0.009273779578506947, + 0.017856093123555183, + 0.01706971973180771, + 0.011971852742135525, + -0.012019306421279907, + 0.020310118794441223, + 0.008162010461091995, + -0.008046766743063927, + -0.003745440859347582, + 0.03606469929218292, + 0.000989745487459004, + 0.015130903571844101, + -0.025041917338967323, + -0.009951687417924404, + 0.0022133691236376762, + 0.016378253698349, + 0.04167777672410011, + 0.002184558194130659, + 0.009653408080339432, + 0.0039386446587741375, + -0.04235568270087242, + -0.011110910214483738, + -0.02299463376402855, + -0.030261807143688202, + 0.006633328273892403, + -0.0403219610452652, + -0.020513491705060005, + -0.00383695843629539, + -0.02508259005844593, + 0.02325223945081234, + -0.0017879819497466087, + -0.0015905413310974836, + 0.020581282675266266, + 0.0118159344419837, + 0.02186930738389492, + -0.025163939222693443, + -0.004416569601744413, + 0.03940000385046005, + -0.006243531592190266, + -0.005877461284399033, + -0.0029522888362407684, + -0.004247092641890049, + -0.005331745371222496, + -0.011965073645114899, + -0.015429182909429073, + -0.005053803324699402, + -0.04569099098443985, + 0.0233200304210186, + -0.05013806372880936, + 0.010602478869259357, + 0.00016396895807702094, + 0.006836700718849897, + 0.00038513640174642205, + -0.019618652760982513, + -0.01991693302989006, + 0.021001584827899933, + -0.0016540951328352094, + -0.03156339004635811, + 0.012934481725096703, + -0.006389281712472439, + 0.0025082591455429792, + -0.011741364374756813, + 0.023916589096188545, + -0.00999236200004816, + -0.0029810997657477856, + 0.0036505337338894606, + -0.02608589455485344, + 0.01948307268321514, + -0.00907040759921074, + -0.007734928745776415, + 0.021842190995812416, + 0.012446388602256775, + 0.01620199717581272, + -0.04555540904402733, + 0.013700517825782299, + -0.013212423771619797, + 0.018818723037838936, + -0.01213455107063055, + 0.0005482579581439495, + -0.015158019959926605, + 0.03668837249279022, + -0.029394084587693214, + 0.024187752977013588, + -0.042626846581697464, + -0.016269788146018982, + 0.015727462247014046, + -0.004464023280888796, + -0.005565623752772808, + 0.024974126368761063, + 0.017801860347390175, + 0.020093189552426338, + 0.0321599505841732, + 0.007409533020108938, + 0.01020929217338562, + -0.015659671276807785, + -0.0089822793379426, + 0.014575019478797913, + 0.006996009033173323, + -0.028824642300605774, + -0.0422201007604599, + -0.024241985753178596, + 0.017991675063967705, + -0.0005486816517077386, + -0.012487063184380531, + 0.001151595963165164, + 0.017978116869926453, + 0.005006349645555019, + 0.02269635535776615, + 0.014954647049307823, + -0.004226755350828171, + 0.003545458195731044, + -0.008534859865903854, + -0.03159050643444061, + 0.001989659620448947, + -0.0009194125304929912, + 0.003697987413033843, + -0.02269635535776615, + -0.03880344703793526, + -0.0020015230402350426, + -0.03264804184436798, + -0.02073042280972004, + -0.0064943572506308556, + 0.02174728363752365, + -0.0013575104530900717, + -0.013354784809052944, + -0.02879752591252327, + -0.00938902422785759, + 0.007057020906358957, + -0.004118290264159441, + -0.016662975773215294, + 0.009578838013112545, + 0.004765692166984081, + 0.04387419670820236, + -0.038722097873687744, + 0.020649073645472527, + -0.025882521644234657, + 0.015361391939222813, + -0.013571714982390404, + -0.023021750152111053, + 0.013022609986364841, + 0.004460633732378483, + 0.0384238176047802, + 0.0189000703394413, + 0.03359711542725563, + 0.01959153637290001, + -0.042572613805532455, + 0.06572994589805603, + -0.02515038102865219, + -0.0014117431128397584, + 0.03188878670334816, + -0.013436133973300457, + -0.011680352501571178, + 0.006643496919423342, + 0.0173273254185915, + 0.0017913714982569218, + 0.009660187177360058, + -0.02753661759197712, + 0.023482728749513626, + 0.031671855598688126, + 0.003704766510054469, + 0.016269788146018982, + -0.017923884093761444, + 0.007755266036838293, + 0.011266828514635563, + -0.012914144434034824, + 0.014222507365047932, + -0.029963526874780655, + 0.010161838494241238, + 0.019130559638142586, + 0.014127600006759167, + -0.019130559638142586, + 0.00945003516972065, + -0.014412321150302887, + 0.005826618056744337, + -0.0052809021435678005, + 0.00412845890969038, + 0.010622816160321236, + 0.0026879047509282827, + 0.0012244710233062506, + 0.04807722568511963, + -0.007328183855861425, + 0.0024692793376743793, + 0.027048524469137192, + -0.007131590507924557, + 0.009294116869568825, + 0.025692708790302277, + -0.003958981949836016, + 0.014751275070011616, + -0.006701119244098663, + -0.0033793707843869925, + -0.012724330648779869, + 0.018411977216601372, + 0.034437719732522964, + -0.013571714982390404, + 0.02054060809314251, + 0.03817977011203766, + -0.004863989073783159, + 0.004057278390973806, + 0.014046250842511654, + -0.0052741230465471745, + -0.0028624660335481167, + 0.017191743478178978, + -0.008412836119532585, + 0.00735530024394393, + -0.0029336463194340467, + 0.020052514970302582, + 0.004240313544869423, + 0.0015125819481909275, + -0.0033624230418354273, + 0.0035624057054519653, + 0.015239369124174118, + -0.009307675063610077, + 0.038667865097522736, + 0.008609429933130741, + 0.03164473921060562, + 0.02546221949160099, + -0.011585445143282413, + 0.0023438665084540844, + 0.02022877149283886, + -0.007836614735424519, + 0.0008384872926399112, + -0.010568583384156227, + -0.0201609805226326, + -0.0026065558195114136, + 0.020093189552426338, + 0.0019489851547405124, + 0.027333244681358337, + 0.0075654517859220505, + -0.023523403331637383, + -0.011449864134192467, + 0.021774400025606155, + 9.400675480719656e-6, + 0.00565375154837966, + -0.009104302152991295, + -0.012202341109514236, + -0.002111682901158929, + -0.02993641048669815, + -0.013849657960236073, + 0.007097695488482714, + -0.0050199078395962715, + 0.01763916201889515, + 0.01184304989874363, + -0.05244295299053192, + -0.026384174823760986, + -0.005945251788944006, + -0.009443256072700024, + 0.003238704754039645, + -0.008209464140236378, + 0.01563255488872528, + -0.0013558156788349152, + -0.010344874113798141, + -0.011883724480867386, + -0.001986270071938634, + 0.005521559622138739, + 0.023211564868688583, + 0.021015143021941185, + 0.014181832782924175, + -0.004114900715649128, + -0.01389711070805788, + 0.008324708789587021, + 0.025218171998858452, + -0.018547559157013893, + 0.007314625661820173, + -0.0051453206688165665, + 0.0029166985768824816, + 0.012304027564823627, + 0.017734069377183914, + -0.01263620238751173, + -0.04208451882004738, + 0.01036521140486002, + -0.007823056541383266, + -0.008853476494550705, + -0.026113010942935944, + -0.025950312614440918, + 0.00694855535402894, + -0.019320374354720116, + 0.010975328274071217, + 0.007185823284089565, + -0.0047826399095356464, + 0.0022048952523618937, + -0.010297420434653759, + -0.008399278856813908, + 0.0061350660398602486, + 0.004138627555221319, + -0.01292092353105545, + -0.01068382803350687, + 0.01658162660896778, + -0.03156339004635811, + -0.017042603343725204, + -0.02230316773056984, + 0.018439093604683876, + -0.02148967981338501, + 0.00046309581375680864, + -0.01348358765244484, + -0.01782897673547268, + -0.005691036581993103, + -0.019388165324926376, + 0.01613420620560646, + 0.009124639444053173, + -0.030424505472183228, + 0.004619942046701908, + -0.029773714020848274, + 0.020960910245776176, + 0.01140918955206871, + 0.035576604306697845, + 0.01727309264242649, + 0.0036234175786376, + -0.016974812373518944, + 0.004687733016908169, + 0.0027556954883038998, + 0.021530354395508766, + -0.004494529217481613, + 0.012737888842821121, + 0.0021015142556279898, + -0.010575362481176853, + 0.01137529406696558, + -0.036444325000047684, + -0.013117517344653606, + -0.0017303598579019308, + -0.020933793857693672, + -0.010548246093094349, + -0.003674260573461652, + 0.020703306421637535, + 0.0042979358695447445, + 0.006199467461556196, + -0.026113010942935944, + 0.006704508792608976, + 0.014263181015849113, + 0.0015473247040063143, + 0.020527049899101257, + -0.050897322595119476, + 0.00206422945484519, + -0.017232418060302734, + 0.010975328274071217, + 0.009239884093403816, + 0.0018744152039289474, + -0.027767106890678406, + -0.023523403331637383, + -0.012331143952906132, + 0.007050241809338331, + -0.0015473247040063143, + 0.004226755350828171, + -0.020147422328591347, + -0.012276911176741123, + -0.013348005712032318, + -0.0004914831952191889, + -0.02974659763276577, + -0.0061248973943293095, + 0.021096492186188698, + -0.0045250351540744305, + -0.011449864134192467, + -0.0003700953093357384, + -0.013978459872305393, + 0.018696699291467667, + -0.004596215207129717, + 0.01115158386528492, + -0.02073042280972004, + 0.015442741103470325, + -0.025502894073724747, + -0.029773714020848274, + -0.028689060360193253, + -0.002293023280799389, + 0.014398762956261635, + 0.02281837910413742, + 0.011822713539004326, + -0.020811771973967552, + -0.014398762956261635, + 0.005897798575460911, + -0.03232264518737793, + 0.007023125421255827, + -0.016784999519586563, + -0.02085244655609131, + 0.021815074607729912, + -0.003069227794185281, + -0.009463593363761902, + 0.008684000000357628, + -0.007768824230879545, + 0.0305600855499506, + -0.0080399876460433, + 0.01727309264242649, + 0.004494529217481613, + 0.00742309121415019, + 0.01872381567955017, + 0.010195733979344368, + -0.03758321329951286, + -0.003389539197087288, + 0.05317509174346924, + 0.0081891268491745, + -0.008765348233282566, + 0.004497918765991926, + 0.004260650835931301, + -0.01782897673547268, + 0.010860083624720573, + 0.011260049417614937, + 0.015618996694684029, + 0.012493842281401157, + -0.006897712592035532, + 0.011809155344963074, + -0.021204957738518715, + -0.006040159147232771, + -0.004450465086847544, + -0.005206332542002201, + -0.014669925905764103, + -0.0006266410928219557, + 0.013280214741826057, + 0.018113698810338974, + 0.0005664767813868821, + 0.0030065213795751333, + 0.012324364855885506, + 0.025285962969064713, + -0.0024997852742671967, + 0.025557126849889755, + -0.016473161056637764, + 0.01902209408581257, + 0.0036064698360860348, + 0.007517998106777668, + 0.027821337804198265, + 0.030993947759270668, + -0.011178700253367424, + 0.004979233257472515, + 0.0016447739908471704, + 0.0028743292205035686, + -0.007517998106777668, + -0.012595527805387974, + -0.00021968451619613916, + -0.021896423771977425, + 0.0006901949527673423, + 0.011721027083694935, + 0.0016778219724074006, + -0.0032302308827638626, + 0.01670365035533905, + -0.029909294098615646, + -0.028119618073105812, + 0.018167931586503983, + -0.006904491689056158, + 0.01744934916496277, + 0.016595184803009033, + -0.01708327792584896, + 0.004243703093379736, + 0.015442741103470325, + -0.010541466996073723, + -0.007741707842797041, + -0.0002194726694142446, + -0.028309432789683342, + 0.002957373159006238, + -0.0018032349180430174, + 0.012873469851911068, + 0.01801879145205021, + -0.0233200304210186, + -0.01720530167222023, + -0.014344530180096626, + 0.005806280765682459, + -0.0004516561166383326, + 0.004596215207129717, + -0.017856093123555183, + 0.009558500722050667, + -0.0005897798109799623, + 0.00710447458550334, + -0.00891448836773634, + -0.0008516217349097133, + 0.012493842281401157, + -0.03259380906820297, + -0.021381214261054993, + 0.008304371498525143, + 0.009050070308148861, + 0.005185995250940323, + 0.0027743380051106215, + 0.01777474395930767, + -0.005155489314347506, + -0.0029234776739031076, + 0.0028217914514243603, + 0.005111425183713436, + -0.0099245710298419, + 0.021272748708724976, + 0.015618996694684029, + 0.00028260285034775734, + 0.012358260340988636, + -0.02715698815882206, + -0.013415796682238579, + 0.0026472301688045263, + -0.01115158386528492, + -0.00471145985648036, + -0.015374950133264065, + 0.008284034207463264, + 0.011666794307529926, + 0.022547215223312378, + 0.005267343949526548, + -0.00710447458550334, + -0.011266828514635563, + 0.007002788130193949, + 0.01336156390607357, + -0.0037183247040957212, + -0.014927530661225319, + 0.011721027083694935, + -0.02691294252872467, + -0.006677392404526472, + -0.007450207602232695, + -0.005060582421720028, + -0.016622301191091537, + -0.010744839906692505, + -0.00869755819439888, + -0.05160234495997429, + -0.014724158681929111, + 0.018303511664271355, + -0.002487921854481101, + 0.019944049417972565, + 0.013015830889344215, + 0.013598831370472908, + -0.02382168173789978, + 0.01708327792584896, + -0.0033793707843869925, + 0.02218114584684372, + -0.002445552498102188, + 0.0016185049898922443, + 0.0003402250004000962, + 0.0001295439578825608, + 0.015008879825472832, + -0.0028184019029140472, + 0.006457072217017412, + -0.009056849405169487, + 0.0245673805475235, + 0.0173273254185915, + 0.00677568931132555, + 0.004399621859192848, + 0.004114900715649128, + -0.006080833729356527, + 0.013659843243658543, + 0.010127943009138107, + -0.012595527805387974, + -0.03579353541135788, + 0.024364007636904716, + 0.021449005231261253, + -0.016744324937462807, + 0.010643153451383114, + -0.0031353237573057413, + 0.014791949652135372, + 0.03202436864376068, + 0.011680352501571178, + -0.0003211588482372463, + 0.01776118576526642, + -0.011070235632359982, + 0.0035963011905550957, + -0.0017506970325484872, + -0.02734680287539959, + 0.03413943946361542, + 0.02047281712293625, + -0.006240142043679953, + -0.020391467958688736, + 0.06225905939936638, + -0.018574675545096397, + 0.020757539197802544, + 0.002047281712293625, + 0.0007770519005134702, + 0.04493173211812973, + -0.00793830119073391, + 0.03031603991985321, + -0.023265797644853592, + 0.010995665565133095, + -0.007809498347342014, + 0.006928218528628349, + -0.0015134293353185058, + -0.028634827584028244, + 0.02672312781214714, + -0.010704165324568748, + -0.03516985848546028, + 0.00894838385283947, + -0.009633070789277554, + 0.009612733498215675, + 0.036579906940460205, + 0.0035081731621176004, + 0.0038064527325332165, + 0.029963526874780655, + 0.0035759638994932175, + 0.012588748708367348, + 0.019808467477560043, + 0.0033370014280080795, + 0.01210065558552742, + -0.023279355838894844, + 0.01784253492951393, + 0.008941604755818844, + -0.020933793857693672, + 0.0015066502382978797, + 0.018547559157013893, + 0.02364542707800865, + 0.013273435644805431, + 0.02482498623430729, + -0.019523747265338898, + -0.006470630411058664, + 0.012832796201109886, + -0.022709913551807404, + -0.0033505596220493317, + -0.010019478388130665, + -0.0019388165092095733, + 0.00938902422785759, + -0.01043300237506628, + -0.020527049899101257, + -0.016690092161297798, + 0.01477839145809412, + -0.0026573988143354654, + 0.021720167249441147, + -0.0070841372944414616, + -0.019320374354720116, + 0.0186017919331789, + -0.005853734444826841, + -0.013937785290181637, + 0.006470630411058664, + 0.005158878862857819, + 0.0028455182909965515, + -0.002965846797451377, + -0.01121937483549118, + 0.005294460337609053, + 0.01118547935038805, + 0.007877289317548275, + -0.010954990983009338, + -0.024241985753178596, + -0.021720167249441147, + 0.008209464140236378, + 0.029827946797013283, + -0.003911528270691633, + -0.005965589080005884, + -0.012087097391486168, + -0.03413943946361542, + 0.0057723852805793285, + -0.0036064698360860348, + -0.019577978178858757, + 0.003218367462977767, + 0.028580594807863235, + 0.00963984988629818, + -0.0008304371149279177, + -0.008934825658798218, + 0.023455612361431122, + 0.0032200622372329235, + -0.004725017584860325, + -0.020405026152729988, + -0.014520786702632904, + 0.008446731604635715, + 0.005748658441007137, + 0.025407986715435982, + -0.0021506627090275288, + 0.01833062805235386, + -0.011754922568798065, + -0.00806710310280323, + 0.003548847744241357, + -0.009897454641759396, + 0.008419615216553211, + -0.002918393351137638, + -0.004331831354647875, + 0.007633242756128311, + -0.006026600953191519, + -0.008853476494550705, + -0.0011524433502927423, + -0.0006715524941682816, + -0.015103787183761597, + 0.01049401331692934, + 0.024282660335302353, + 0.0017964558210223913, + -0.017218859866261482, + 0.01689346320927143, + -0.021598145365715027, + 0.00015750766033306718, + 0.003338696202263236, + -0.01784253492951393, + -0.007633242756128311, + -0.02582828886806965, + 0.0352783240377903, + -0.006307932548224926, + 0.007260393351316452, + 0.009822884574532509, + 0.02142188884317875, + -0.005626635160297155, + -0.013632726855576038, + 0.0015159714967012405, + 0.0226827971637249, + 0.005067361053079367, + -0.006704508792608976, + -0.004694512113928795, + 0.014764833264052868, + 0.014954647049307823, + -0.033434417098760605, + -0.030451621860265732, + -0.0039352551102638245, + -0.001776118646375835, + 0.01017539668828249, + 0.03243111073970795, + 0.012236236594617367, + -0.009436476975679398, + -0.017408674582839012, + -0.007375637535005808, + -0.0025082591455429792, + 0.01589016057550907, + -0.0006740946555510163, + -0.0009270390146411955, + 0.03492581471800804, + -0.0028590764850378036, + 0.00038937333738431334, + 0.0009067017817869782, + -0.010792293585836887, + -0.016242671757936478, + -0.006894323043525219, + 0.01430385559797287, + 0.0044267382472753525, + 0.026614662259817123, + -0.017178185284137726, + 0.00304211163893342, + 0.01144308503717184, + -0.033624228090047836, + 0.02729257009923458, + 0.018574675545096397, + -0.008717895485460758, + 0.0046538375318050385, + 0.004280988126993179, + -0.00040356701356358826, + -0.019076326861977577, + 0.013388680294156075, + -0.00862976722419262, + -0.009768652729690075, + 0.018737373873591423, + -0.0034217399079352617, + -0.00040314331999979913, + -0.0044267382472753525, + 0.007260393351316452, + -0.009951687417924404, + -0.014398762956261635, + 0.010988886468112469, + -0.024540264159440994, + -0.0063553862273693085, + -0.007877289317548275, + -0.015659671276807785, + -0.010053373873233795, + 0.006277426611632109, + -0.009416140615940094, + -0.0015846096212044358, + -0.0064875781536102295, + 0.006782467942684889, + -0.0007592568290419877, + -0.028065385296940804, + 0.00041712517850100994, + -0.014507228508591652, + -0.021123608574271202, + 0.003035332541912794, + 0.010283862240612507, + 0.04007791355252266, + 0.01927969977259636, + 0.006019821856170893, + 0.014114041812717915, + 0.0024540263693779707, + 0.014507228508591652, + -0.0035420686472207308, + 0.006175740621984005, + -0.012466725893318653, + -0.001384626841172576, + -0.007070579100400209, + 0.007321404758840799, + -0.022655680775642395, + 3.453093086136505e-5, + -0.022398075088858604, + 0.003338696202263236, + 0.007646800484508276, + 0.00023832698934711516, + -0.00106770487036556, + -0.0053791990503668785, + -0.03018045797944069, + 0.004125069361180067, + -0.01782897673547268, + 0.011998969130218029, + -0.0004652142815757543, + -0.0015557985752820969, + -0.003704766510054469, + 0.016364695504307747, + 4.8512782086618245e-5, + 0.022791262716054916, + 0.009843221865594387, + -0.022723471745848656, + -0.018832281231880188, + 0.0009668660932220519, + -0.004667395725846291, + 0.018886512145400047, + 0.009151755832135677, + -0.02357763610780239, + 0.011890503577888012, + -0.0009694082546047866, + -0.008582313545048237, + -0.004403011407703161, + 0.0018015401437878609, + -0.024174194782972336, + 0.0021032090298831463, + -0.021882865577936172, + -0.011734585277736187, + 0.0013405628269538283, + 0.02589607983827591, + -0.01677144132554531, + 0.0012126077199354768, + 0.02161170355975628, + 0.013727634213864803, + -0.004972454160451889, + 0.005426652263849974, + 0.04278954491019249, + -0.023157332092523575, + -0.002911614254117012, + -0.010609257966279984, + -0.009748315438628197, + 0.018493326380848885, + 0.018100140616297722, + -0.0037251038011163473, + 0.021313423290848732, + -0.002759085036814213, + 0.005162268411368132, + 0.014154716394841671, + 0.009490709751844406, + -0.018683141097426414, + -0.004013214726001024, + -0.026370616629719734, + 0.027319686487317085, + -0.0027641693595796824, + 0.031726088374853134, + -0.024418240413069725, + 0.0032370099797844887, + 0.0048877159133553505, + 0.01027708314359188, + 0.021204957738518715, + -0.02369965799152851, + 0.01580881141126156, + -0.044091127812862396, + 0.008480627089738846, + 0.02433689311146736, + -0.0026573988143354654, + -0.017123952507972717, + 0.012710772454738617, + -0.001568509265780449, + 0.0058706821873784065, + -0.012331143952906132, + 0.008609429933130741, + 0.0034149608109146357, + 0.014046250842511654, + -0.020201655104756355, + -0.004586046561598778, + 0.022831937298178673, + -0.020825330168008804, + -0.016744324937462807, + -0.0038844121154397726, + 0.006274037063121796, + 0.016242671757936478, + 0.0019405112834647298, + 0.0073349629528820515, + 0.0003897970309481025, + -0.004355558194220066, + 0.014290297403931618, + -0.0006969739915803075, + 0.009124639444053173, + -0.02269635535776615, + 0.022208262234926224, + -0.008989058434963226, + 0.0031692192424088717, + 0.006013042759150267, + -0.005582571029663086, + 0.021516796201467514, + 0.009592396207153797, + 0.015293600969016552, + 0.01187694538384676, + -0.01288702804595232, + 0.004823314491659403, + 0.0011117688845843077, + 0.004806366749107838, + -0.008080661296844482, + -0.009382245130836964, + -0.0019388165092095733, + 0.009748315438628197, + 0.01776118576526642, + -0.0020201653242111206, + -0.008195905946195126, + -0.02646552212536335, + -0.00532496627420187, + 0.0062231943011283875, + 0.006894323043525219, + -0.01465636771172285, + -0.02318444848060608, + 0.007843393832445145, + 0.0035691848024725914, + -0.016717208549380302, + 0.0015659671043977141, + -0.013164971023797989, + 0.0016973117599263787, + -0.005250396206974983, + -0.003011605702340603, + 0.0014871603343635798, + -0.0012727719731628895, + -0.014412321150302887, + -0.007226497866213322, + 0.019564419984817505, + 0.0027895907405763865, + 0.013714076019823551, + -0.009009395726025105, + 0.01380220428109169, + -0.016107091680169106, + 0.026262151077389717, + -0.0030709225684404373, + -0.016161322593688965, + -0.0022472646087408066, + -0.00010454610310262069, + 0.03489869832992554, + 0.010880420915782452, + -0.029638132080435753, + 0.020323676988482475, + -0.006463851314038038, + -0.023930147290229797, + 0.0013109042774885893, + -0.007287509739398956, + 0.00647740950807929, + 0.007775603327900171, + -0.0014685179339721799, + -0.0007906100363470614, + 0.008073882199823856, + 0.0074705444276332855, + -2.6282170438207686e-5, + -0.000378569180611521, + -0.01594439335167408, + -0.0063519966788589954, + -0.0015125819481909275, + 0.017029045149683952, + 0.01408692542463541, + 0.016934137791395187, + -0.0007821362232789397, + -0.011097352020442486, + -0.008975500240921974, + -0.01344969216734171, + -0.016229113563895226, + -0.027767106890678406, + 0.0003315393114462495, + 0.017910325899720192, + 0.008270476013422012, + -0.029285619035363197, + 0.024404682219028473, + 0.012581969611346722, + -0.00012064641487086192, + 0.015646113082766533, + 0.007714591454714537, + 0.0009109387174248695, + 0.011727806180715561, + 0.008846697397530079, + -0.0006749420426785946, + 0.002406572923064232, + 0.003928476013243198, + 0.010609257966279984, + -0.0011541381245478988, + 0.021815074607729912, + -0.006934997625648975, + 0.00035081731039099395, + -0.016283346340060234, + -0.001404116628691554, + -0.01965932734310627, + 0.007660358678549528, + 0.005355472210794687, + -0.004308104515075684, + 0.0030980389565229416, + 0.009511047042906284, + 0.003484446322545409, + -0.0027285791002213955, + -0.019944049417972565, + -0.0019913543947041035, + 0.02627570927143097, + 0.030831249430775642, + 0.0007211244665086269, + -0.004575877916067839, + -0.0029980475082993507, + 0.004691122565418482, + -0.01090075820684433, + -0.011510875076055527, + -0.008839918300509453, + 0.010575362481176853, + 0.022642122581601143, + 0.012914144434034824, + 0.010100827552378178, + -0.01948307268321514, + 0.012697214260697365, + 0.00800609216094017, + -0.004619942046701908, + 0.012114213779568672, + -0.026140127331018448, + -0.016500277444720268, + -0.0179645586758852, + 0.014941088855266571, + 0.014981763437390327, + -0.004257261287420988, + 0.0022133691236376762, + -0.01490041520446539, + 0.02506903186440468, + 0.023333588615059853, + 0.015049554407596588, + 0.01744934916496277, + -0.0012439609272405505, + 0.0152800427749753, + -0.0009634765447117388, + 0.008419615216553211, + -0.010839746333658695, + 0.024160636588931084, + 0.01884583942592144, + -0.012439609505236149, + -0.0031692192424088717, + -0.0023591192439198494, + 0.004311494063585997, + -0.008650104515254498, + -0.017123952507972717, + -0.002853992162272334, + -0.010643153451383114, + -0.0035285104531794786, + -0.009314454160630703, + -0.005301239434629679, + -0.00822302233427763, + -0.0030844807624816895, + 0.033868275582790375, + 0.004518256057053804, + -0.014330971986055374, + -0.004850430879741907, + -0.0057723852805793285, + -0.016337579116225243, + -0.014330971986055374, + 0.019577978178858757, + -0.0008736537420190871, + 0.004694512113928795, + 0.009538163430988789, + 0.033244602382183075, + 0.025041917338967323, + -0.002894666511565447, + 0.009104302152991295, + 0.0065858750604093075, + 0.02243874967098236, + -0.004704680759459734, + -0.0015676618786528707, + 0.022398075088858604, + 0.0035827429965138435, + 0.019523747265338898, + -0.00013303941523190588, + -0.020689748227596283, + 0.0186017919331789, + -0.007843393832445145, + -0.02546221949160099, + -0.029204269871115685, + -0.021760841831564903, + -0.014859740622341633, + 0.01231758575886488, + 0.007240056060254574, + 0.007558672688901424, + -0.01389711070805788, + -0.007124811410903931, + 0.001986270071938634, + 0.005172437056899071, + -0.011436305940151215, + -0.002730273874476552, + 0.0009846611646935344, + 0.014981763437390327, + 0.027902686968445778, + 0.017123952507972717, + 0.002416741568595171, + -0.0026777361053973436, + -0.009904233738780022, + 0.01357849407941103, + 0.01203286461532116, + -0.009863559156656265, + -0.004081005230545998, + -0.002293023280799389, + -0.0018642466748133302, + 0.013537820428609848, + 0.020432142540812492, + 0.01064993254840374, + 0.005846955347806215, + -0.012785342521965504, + 0.006284205708652735, + -0.004057278390973806, + -0.012046422809362411, + -0.02035079337656498, + 0.0018134035635739565, + 0.024418240413069725, + 0.02394370548427105, + -0.011599003337323666, + 0.002409962471574545, + 0.020825330168008804, + -0.013341226615011692, + -0.02306242473423481, + 0.0173273254185915, + 0.0013049726840108633, + -0.002306581474840641, + -0.011260049417614937, + 0.01696125417947769, + 0.007219718769192696, + 0.008677220903337002, + -0.013463250361382961, + 0.002296412829309702, + -0.009151755832135677, + -0.004274209029972553, + 0.006148624233901501, + 0.043006476014852524, + 0.00728073064237833, + -0.0020625346805900335, + 0.02665533684194088, + 0.010127943009138107, + -0.022221820428967476, + -0.008595871739089489, + -0.005121593829244375, + -0.03289208933711052, + -0.012222678400576115, + 0.02641129121184349, + 0.013863216154277325, + -0.011300723999738693, + 0.012249794788658619, + -0.013992018066346645, + -0.021652376279234886, + -0.0135513786226511, + -0.0005355472094379365, + 0.010229629464447498, + 0.009395803324878216, + -0.0044131800532341, + 0.006894323043525219, + -0.014764833264052868, + -0.00938902422785759, + 0.00753155630081892, + 0.002504869597032666, + 0.001523597864434123, + 0.019184792414307594, + -0.02855347841978073, + -0.004640279337763786, + -0.01670365035533905, + -0.02116428315639496, + -0.003133628983050585, + -0.01499532163143158, + 0.007179044187068939, + -0.000763493706472218, + 0.018981419503688812, + -0.010351653210818768, + -0.004948727320879698, + 0.024689404293894768, + 0.036010466516017914, + -0.00012795510701835155, + -0.01408692542463541, + 0.009470372460782528, + 0.0044233486987650394, + 0.01865602470934391, + 0.04072870314121246, + 0.003775946795940399, + 0.00767391687259078, + 0.015198694542050362, + -0.02570626698434353, + -0.013388680294156075, + -0.021069375798106194, + -0.006053717341274023, + 0.004816535394638777, + -0.013103959150612354, + -0.006826532073318958, + -0.015673229470849037, + 0.014547903090715408, + -0.007748486939817667, + -0.000585542933549732, + -0.005114814732223749, + -0.00126768765039742, + 0.0008041681721806526, + 0.007992533966898918, + 0.008182347752153873, + -0.007450207602232695, + 0.012337923049926758, + -0.008033208549022675, + -0.013022609986364841, + 0.0078027197159826756, + -0.0037928945384919643, + 0.008277255110442638, + -0.0029488992877304554, + 0.017557812854647636, + 0.007633242756128311, + 0.006036769598722458, + -0.026940058916807175, + 0.01465636771172285, + 0.013029389083385468, + 0.00764002138748765, + 0.016337579116225243, + 0.011788818053901196, + 0.004874157719314098, + 0.016473161056637764, + 0.016378253698349, + -0.010419444181025028, + 0.025611359626054764, + 0.00825691781938076, + 0.015741020441055298, + 0.00030294008320197463, + -0.02368609979748726, + -0.0007787466747686267, + -0.006467240862548351, + 0.00195406936109066, + -0.012412493117153645, + -0.005097866989672184, + -0.0012278605718165636, + -0.008365383371710777, + -0.017029045149683952, + 0.0017659500008448958, + -6.874409154988825e-5, + -0.00554528646171093, + 0.0010117774363607168, + 0.012290469370782375, + 0.01739511638879776, + -0.010229629464447498, + -0.02753661759197712, + 0.015402066521346569, + 0.04075581952929497, + 0.007538335397839546, + -0.010127943009138107, + 0.011388852261006832, + -0.010168617591261864, + 0.023591194301843643, + 0.014412321150302887, + -0.001633757958188653, + -0.015374950133264065, + -0.0021099881269037724, + 0.004453854635357857, + 0.022479424253106117, + -0.0027540007140487432, + 0.008548418059945107, + 0.00256927078589797, + -0.011300723999738693, + -0.009877117350697517, + -0.013137854635715485, + 0.016405370086431503, + -0.0026862099766731262, + -0.03611893206834793, + 0.004196249879896641, + -0.00011471471952972934, + -0.010371990501880646, + 0.016690092161297798, + -0.023225123062729836, + -0.0033827603328973055, + 0.01632402092218399, + -0.004125069361180067, + -0.028011152520775795, + 0.0005236838478595018, + 0.007016346324235201, + 0.002043892163783312, + -0.005074140150099993, + 0.001329546794295311, + -0.005097866989672184, + -0.009280558675527573, + -0.008446731604635715, + 0.0012541295727714896, + -0.010195733979344368, + -0.012053201906383038, + -0.015903718769550323, + -0.02344205416738987, + 0.001012624823488295, + -0.0005495290388353169, + 0.00662993872538209, + 0.024214869365096092, + -0.012758226133883, + -0.007599347271025181, + -0.012120992876589298, + -0.004765692166984081, + 0.0020523660350590944, + -0.001126174465753138, + 0.02582828886806965, + -0.004867378622293472, + 0.018737373873591423, + -0.027089199051260948, + -0.02496056817471981, + 0.010975328274071217, + -0.0035319000016897917, + 0.0013414102140814066, + -0.006345217581838369, + -0.00390813872218132, + -0.0006368096801452339, + -0.016974812373518944, + -0.005724932067096233, + 0.016527393832802773, + -0.000918565143365413, + -0.013849657960236073, + 0.004813145846128464, + -0.007728149648755789, + -0.005257175303995609, + -0.006545200478285551, + 0.003281074110418558, + -0.010121164843440056, + -0.0012126077199354768, + -0.021286306902766228, + 0.011741364374756813, + -0.02458093874156475, + 0.013842878863215446, + 0.0029302567709237337, + 0.027211220934987068, + -0.022221820428967476, + 0.03435637056827545, + 0.006528252735733986, + -0.018574675545096397, + 0.012120992876589298, + 0.012331143952906132, + -0.00217438954859972, + -0.0017422231612727046, + -0.021625259891152382, + -0.0012507400242611766, + 0.011022781953215599, + 0.030614318326115608, + -0.0045589301735162735, + 0.018384860828518867, + -0.005399536341428757, + -0.0003662820963654667, + -0.019076326861977577, + -0.0005558844422921538, + -0.001543087768368423, + -0.019320374354720116, + 0.0033946235198527575, + -0.01332766842097044, + -0.0058639030903577805, + 0.008087440393865108, + -0.004186081234365702, + -0.01852044276893139, + -0.008555197156965733, + 0.015022438019514084, + -0.007667137775570154, + -0.0017540865810588002, + -0.004596215207129717, + -0.0031980304047465324, + 0.018628908321261406, + -0.008534859865903854, + 0.02364542707800865, + -0.015957951545715332, + 0.0038572957273572683, + 0.0030166900251060724, + -0.01430385559797287, + 0.004579267464578152, + 0.00315057672560215, + 0.03874921426177025, + -0.012615865096449852, + -0.013558156788349152, + -0.010466896928846836, + -0.015551206655800343, + 0.020825330168008804, + -0.03874921426177025, + -0.022574331611394882, + 0.013829320669174194, + -0.0003158627077937126, + -0.0004622484266292304, + 0.016540952026844025, + 0.02306242473423481, + -0.02261500619351864, + -0.017110394313931465, + 0.0028828030917793512, + -0.008433173410594463, + 0.02753661759197712, + -0.016784999519586563, + 0.0024438579566776752, + 0.01319886650890112, + -0.015307159163057804, + -0.00608422327786684, + 0.0024625002406537533, + 0.0076942541636526585, + -0.018439093604683876, + -1.3154325642972253e-5, + -0.017286650836467743, + 0.02243874967098236, + -0.018411977216601372, + -0.00355223729275167, + -0.0078027197159826756, + -0.006009653210639954, + -0.007958638481795788, + -0.0063011534512043, + -0.0041691334918141365, + 0.004626721143722534, + -1.8337937035539653e-6, + 0.008229801431298256, + -0.02496056817471981, + -0.027590850368142128, + 0.006968892645090818, + -0.007836614735424519, + 0.010338095016777515, + -0.005674088839441538, + 0.006260479334741831, + 0.006240142043679953, + -0.013937785290181637, + 0.00554528646171093, + -0.004623331595212221, + 0.0007702728034928441, + -0.02470296248793602, + 0.023658985272049904, + -0.018249278888106346, + -0.002513343468308449, + 0.00220659002661705, + -0.00431488361209631, + -0.010480455122888088, + -0.01219556201249361, + 0.025868963450193405, + -0.005857123993337154, + 0.0057656061835587025, + -0.0075722308829426765, + 0.00532496627420187, + -0.009382245130836964, + -0.00011270218237768859, + -0.02313021570444107, + -0.040294844657182693, + 0.0006118118180893362, + 0.011348177678883076, + -0.001517666270956397, + 0.005853734444826841, + 0.026628220453858376, + -0.003072617342695594, + -0.00015411811182275414, + 0.010161838494241238, + 0.0007812888361513615, + -0.019361048936843872, + -0.0021506627090275288, + 0.007199381478130817, + -0.02961101569235325, + 0.040050797164440155, + -0.005535117816179991, + -0.0346817672252655, + -0.0013905585510656238, + 0.0017320546321570873, + 0.024092845618724823, + -0.03788148984313011, + -0.01884583942592144, + 0.015008879825472832, + -0.018303511664271355, + 0.02748238481581211, + -0.021638818085193634, + -0.016690092161297798, + 0.004894494544714689, + -0.00797219667583704, + -0.010426223278045654, + 0.011449864134192467, + -0.009544942528009415, + -0.008907709270715714, + -0.0012837880058214068, + 0.025448661297559738, + 0.009144976735115051, + -0.00024044544261414558, + 0.006572316866368055, + 0.00579611212015152, + 0.010161838494241238, + 0.007741707842797041, + -0.008297592401504517, + -0.023536961525678635, + -0.012961598113179207, + 0.02746882662177086, + -0.013178529217839241, + 0.004291156772524118, + -0.017734069377183914, + -0.007707812357693911, + 0.009727978147566319, + 0.0013117516646161675, + -0.0021167672239243984, + -0.021326981484889984, + 0.006535031832754612, + 0.026058778166770935, + 0.0035657952539622784, + -0.012026085518300533, + -0.025001242756843567, + 0.02136765606701374, + 0.0008168789790943265, + -0.0020269444212317467, + 0.018859397619962692, + 0.013368343003094196, + -0.009463593363761902, + 0.03769167885184288, + 0.005911356769502163, + -0.015483415685594082, + -0.0033793707843869925, + 0.005535117816179991, + 0.01263620238751173, + 0.013741192407906055, + -0.002381151309236884, + 0.00036225700750947, + -0.010026257485151291, + -6.922074680915102e-5, + 0.02570626698434353, + -0.021774400025606155, + 0.008263696916401386, + -0.002989573637023568, + -0.028878875076770782, + 0.012765005230903625, + -0.014059809036552906, + 0.02463517151772976, + -0.0022760755382478237, + 0.011924399062991142, + -0.002370982663705945, + -0.018059466034173965, + 0.007253614254295826, + -0.018167931586503983, + 0.022357400506734848, + 0.018073024228215218, + -0.015646113082766533, + -0.008263696916401386, + -0.01105667743831873, + 0.0006122355116531253, + -0.007877289317548275, + -0.009117860347032547, + 0.03093971498310566, + -0.0207982137799263, + -0.023482728749513626, + 0.006545200478285551, + 0.001284635392948985, + -0.00020517305529210716, + -0.010636374354362488, + -0.009334791451692581, + -0.03508850932121277, + -0.0019032263662666082, + -0.007233276963233948, + -0.014358088374137878, + 0.014859740622341633, + -0.00850774347782135, + 0.003969150595366955, + 0.023550519719719887, + 0.009090744890272617, + 0.015551206655800343, + 0.0009007700718939304, + -0.010446560569107533, + -0.000572408433072269, + 0.02936696819961071, + 0.010344874113798141, + -0.000993135035969317, + 0.006399450358003378, + 0.008419615216553211, + -0.02893310785293579, + 0.0024421631824225187, + 0.0028861926402896643, + 0.010704165324568748, + 0.01580881141126156, + 0.0057351007126271725, + 0.011131247505545616, + -0.006707898341119289, + -0.023333588615059853, + -0.02407928742468357, + -0.0019371217349544168, + -0.01632402092218399, + 0.007782382424920797, + 0.014886857010424137, + 0.0014744496438652277, + -0.018669582903385162, + 0.028716176748275757, + 0.0025794394314289093, + -0.029665248468518257, + -0.01631046272814274, + -0.004769081715494394, + 0.0021557470317929983, + -0.013015830889344215, + -0.014330971986055374, + -0.0002510377671569586, + 0.004328441806137562, + 0.008148452267050743, + -0.008175568655133247, + -0.0017159542767331004, + 0.004131848458200693, + -0.007395974826067686, + 0.023455612361431122, + -0.002776032779365778, + -0.006101170554757118, + 0.007456986699253321, + 0.00926700048148632, + -0.017218859866261482, + -0.003677650121971965, + 0.02779422141611576, + -0.00565375154837966, + -0.005657141096889973, + 0.0017845924012362957, + 0.02036435157060623, + -0.002972625894472003, + 0.007192602381110191, + -0.00540292588993907, + -0.002157441806048155, + -0.02407928742468357, + 0.022330284118652344, + 0.008080661296844482, + -0.006057106889784336, + 0.00601643230766058, + 0.011531212367117405, + 0.0008079814142547548, + 0.0014676705468446016, + -0.0057622166350483894, + -0.013978459872305393, + -0.003170914016664028, + -0.04249126464128494, + -0.007836614735424519, + -0.015551206655800343, + 0.004321662709116936, + -0.011917619965970516, + -0.0035691848024725914, + 0.0034641092643141747, + 0.012819238007068634, + 0.005497832782566547, + -0.01267009787261486, + 0.014534344896674156, + -0.012798900716006756, + 0.009382245130836964, + 0.0024963957257568836, + -0.028824642300605774, + 0.0004614010395016521, + 0.013978459872305393, + 0.011951515451073647, + 0.015591881237924099, + 0.020771097391843796, + 0.0026811256539076567, + -0.009504267945885658, + -0.022669238969683647, + -0.013497145846486092, + 0.02651975490152836, + -0.005677478387951851, + 0.016649417579174042, + -0.01739511638879776, + 0.018683141097426414, + 0.010880420915782452, + -0.02368609979748726, + -0.004277598578482866, + -0.030261807143688202, + -0.002682820428162813, + 0.007090916391462088, + -0.0023862356320023537, + 0.005911356769502163, + -0.0015337665099650621, + -0.02601810358464718, + -0.0005529185873456299, + -0.022343842312693596, + -0.011022781953215599, + 0.0078027197159826756, + 0.010338095016777515, + -0.014425879344344139, + -0.007057020906358957, + 0.026614662259817123, + 0.017815418541431427, + 0.0040742261335253716, + -0.006955334451049566, + 0.0005766453687101603, + -0.021896423771977425, + -0.025367312133312225, + -0.0036030802875757217, + 0.004748744424432516, + 0.01506311260163784, + 0.014832624234259129, + 0.0016532477457076311, + 0.016649417579174042, + -0.03492581471800804, + 0.010466896928846836, + -0.004494529217481613, + -0.007185823284089565, + 0.019252583384513855, + -0.0008812802261672914, + 0.013510704040527344, + -0.004992791451513767, + 0.02836366556584835, + 0.009748315438628197, + -0.0010634679347276688, + -0.03723070025444031, + 0.011260049417614937, + -0.02942120097577572, + 0.007226497866213322, + 0.002296412829309702, + 0.010778735391795635, + -0.0160799752920866, + -0.012703993357717991, + 0.029285619035363197, + 0.0065926541574299335, + 0.006409619003534317, + -0.00800609216094017, + 0.0118159344419837, + -0.007009567227214575, + -0.013185308314859867, + -0.0144936703145504, + 0.02855347841978073, + -0.0011541381245478988, + -0.011178700253367424, + -0.012975156307220459, + 0.011402410455048084, + 0.027712874114513397, + -0.015618996694684029, + -0.00815523136407137, + 0.009307675063610077, + 0.010595699772238731, + -0.028960224241018295, + 0.0020591451320797205, + 0.03327171877026558, + 0.008162010461091995, + -0.019076326861977577, + -0.013056505471467972, + -0.008894151076674461, + 0.0016329105710610747, + 0.016540952026844025, + 0.007877289317548275, + -0.023903030902147293, + -0.006029990501701832, + -0.008785685524344444, + 0.007416312117129564, + 0.013937785290181637, + -0.0070773581974208355, + 0.00031268500606529415, + 0.03587488457560539, + -0.006785857491195202, + 0.029638132080435753, + 0.004494529217481613, + -0.010893979109823704, + -0.013470029458403587, + 0.005108035635203123, + -0.007538335397839546, + -0.026329942047595978, + -0.02306242473423481, + -9.533078991807997e-5, + 0.0028522973880171776, + -0.0030641434714198112, + -0.0009372076019644737, + -0.01162611972540617, + -0.012554853223264217, + 0.002943814964964986, + -0.009863559156656265, + -0.00916531402617693, + 0.017734069377183914, + 0.007172265090048313, + 0.0014541123528033495, + -0.006074054632335901, + 0.022926844656467438, + 0.016717208549380302, + -0.022967519238591194, + -0.02955678291618824, + -0.007009567227214575, + -0.00989067554473877, + 0.01744934916496277, + -0.010155059397220612, + -0.025123264640569687, + -0.008717895485460758, + -0.030831249430775642, + 0.019672885537147522, + -0.003921696916222572, + -0.003999656531959772, + -0.005457158200442791, + -0.00869755819439888, + 0.011226153932511806, + 0.018954303115606308, + 0.004135238006711006, + 0.03088548220694065, + 0.012093876488506794, + -0.02280482091009617, + -0.0008350977441295981, + 0.003428519004955888, + -0.01865602470934391, + 0.023862356320023537, + -0.004419959150254726, + 0.00688415439799428, + 0.013225981965661049, + 0.011463422328233719, + 0.007978975772857666, + 0.00041754887206479907, + 0.011429526843130589, + -0.003962371498346329, + -0.026492638513445854, + 0.003626807127147913, + -0.010710944421589375, + -0.003235315205529332, + 0.011063456535339355, + -0.0036030802875757217, + -0.0022201482206583023, + 0.00025273251230828464, + -0.001354968291707337, + -0.002218453446403146, + 0.01178203895688057, + 0.004213197156786919, + 0.009972024708986282, + -0.00437928456813097, + 0.029773714020848274, + 0.006707898341119289, + 0.009585617110133171, + 0.011273607611656189, + 0.020120305940508842, + 0.006674002856016159, + 0.01525292731821537, + -0.00031437978032045066, + -0.015456299297511578, + 0.0013456471497192979, + 0.009931350126862526, + 0.010636374354362488, + -0.007029904518276453, + -0.03649855777621269, + -0.009382245130836964, + 0.02250654064118862, + 0.00289805606007576, + -0.018818723037838936, + 0.009443256072700024, + -0.01140918955206871, + -0.0009151755948550999, + -0.01546985749155283, + -0.02698073349893093, + 0.006551979575306177, + -0.006548590026795864, + 0.014642809517681599, + -0.0160799752920866, + -6.275944178923965e-5, + 0.005463937297463417, + 0.028200967237353325, + -0.008894151076674461, + -0.008582313545048237, + -0.0014608914498239756, + 0.008968721143901348, + -0.007775603327900171, + 0.009944908320903778, + -0.009314454160630703, + -0.023930147290229797, + 0.024052171036601067, + 0.005785943474620581, + 0.012575190514326096, + 0.0017947610467672348, + 0.00764002138748765, + 0.001265145605430007, + 0.009192430414259434, + 0.009721199050545692, + -0.014791949652135372, + -0.01656806841492653, + 0.031237993389368057, + -0.02715698815882206, + 0.0009888981003314257, + 0.0022472646087408066, + 0.019076326861977577, + 0.004938558675348759, + 0.017245976254343987, + -0.01250740047544241, + -0.0011253270786255598, + 0.006389281712472439, + -0.004335220903158188, + 0.0007872204878367484, + -0.0008050155593082309, + 0.007002788130193949, + 0.01570034585893154, + -0.0007007872336544096, + 0.034573301672935486, + 0.02123207412660122, + -0.013693738728761673, + 0.0030099109280854464, + -0.003911528270691633, + 0.010555025190114975, + -0.0031590505968779325, + 0.0160799752920866, + -0.0063553862273693085, + 0.0005618161521852016, + -0.016242671757936478, + 0.006094391457736492, + 0.0063519966788589954, + 0.006701119244098663, + 0.0051453206688165665, + -0.009314454160630703, + 0.0012219289783388376, + -0.020459258928894997, + -0.006070665083825588, + -0.009748315438628197, + 0.018561117351055145, + 0.013632726855576038, + 0.01256841141730547, + 0.0034912254195660353, + 0.010514350607991219, + -0.01506311260163784, + 3.0982508178567514e-5, + -0.0447419174015522, + -0.010507571510970592, + -0.016866346821188927, + 0.004060667939484119, + -0.011992190033197403, + -0.020757539197802544, + 0.006429956294596195, + 0.013693738728761673, + 0.0041725230403244495, + 0.007287509739398956, + 0.003772557247430086, + -0.033434417098760605, + 0.005884240381419659, + -0.0088263601064682, + -0.012724330648779869, + -0.01940172351896763, + -0.0045284247025847435, + 0.0044233486987650394, + -0.003962371498346329, + -0.025380870327353477, + -0.013334447517991066, + -0.00916531402617693, + -0.0058639030903577805, + -0.016812114045023918, + 0.003826789790764451, + -0.009456814266741276, + 0.013741192407906055, + 0.0013575104530900717, + 0.0073349629528820515, + -0.007999313063919544, + 0.024689404293894768, + -0.007416312117129564, + -0.007789161521941423, + -0.008229801431298256, + -0.0027082418091595173, + 0.006921439431607723, + -0.005301239434629679, + 0.013815762475132942, + 0.011951515451073647, + -0.00611472874879837, + 0.02262856438755989, + -0.0035420686472207308, + -0.010758398100733757, + 0.010168617591261864, + -0.010019478388130665, + -0.0028099280316382647, + -0.027373919263482094, + -0.02313021570444107, + 0.02243874967098236, + 0.02205912210047245, + 0.02269635535776615, + 0.0015574933495372534, + 0.01471060048788786, + 0.026357058435678482, + 0.0031556610483676195, + 0.00434877909719944, + 0.0204863753169775, + -0.0035420686472207308, + -0.01213455107063055, + -0.027048524469137192, + -0.011402410455048084, + 0.0018710256554186344, + -0.0017168016638606787, + -0.034437719732522964, + -0.009585617110133171, + -0.007416312117129564, + -0.026750244200229645, + 0.0020693137776106596, + -0.009056849405169487, + 0.002918393351137638, + -0.009843221865594387, + 0.009490709751844406, + 0.008907709270715714, + 0.0008350977441295981, + -0.0035386790987104177, + -0.023713216185569763, + -0.008073882199823856, + -0.003086175536736846, + 0.019510189071297646, + -0.01499532163143158, + -0.007429870311170816, + 0.01471060048788786, + 0.021326981484889984, + -0.010568583384156227, + 0.004575877916067839, + -0.0005995247629471123, + -0.006331659387797117, + 0.0077959406189620495, + -0.008270476013422012, + -0.01644604466855526, + 0.0011770175769925117, + -0.015496973879635334, + -0.007823056541383266, + 0.00879246462136507, + -0.019252583384513855, + 0.016337579116225243, + -0.021828632801771164, + -0.005785943474620581, + 0.008317929692566395, + -0.0018456041580066085, + -0.018981419503688812, + -0.01187694538384676, + -0.008765348233282566, + 0.01125327032059431, + 0.009341570548713207, + 0.0384509339928627, + 0.0453655943274498, + -0.016744324937462807, + 0.0118159344419837, + 0.0035081731621176004, + -0.04403689503669739, + 0.011239712126553059, + -0.01872381567955017, + -0.0029065299313515425, + -0.0070773581974208355, + 0.014751275070011616, + -0.0077959406189620495, + 0.02515038102865219, + 0.020269444212317467, + -0.01348358765244484, + 0.01613420620560646, + -0.01795100048184395, + 0.0030844807624816895, + 0.004979233257472515, + 0.005965589080005884, + -0.018940744921565056, + -0.03050585463643074, + 0.0007190059986896813, + 0.003335306653752923, + 0.01971356011927128, + -5.926397716393694e-5, + 0.0024930061772465706, + 0.005430041812360287, + -0.027143429964780807, + -0.005497832782566547, + 0.01803234964609146, + -0.010738060809671879, + -0.010405885986983776, + 0.0057317111641168594, + -0.00485382042825222, + 0.015293600969016552, + 0.010344874113798141, + -0.002594692399725318, + 0.018167931586503983, + 0.0022048952523618937, + 0.007002788130193949, + -0.021787958219647408, + 0.004338610451668501, + -0.010975328274071217, + -0.012459946796298027, + 0.0077010332606732845, + 0.03188878670334816, + -0.002542154397815466, + -0.0023794565349817276, + 0.008521301671862602, + -0.0005202942993491888, + 0.014222507365047932, + -0.008751790039241314, + 0.011205816641449928, + -0.031021064147353172, + 0.016378253698349, + 0.020567724481225014, + -0.028282316401600838, + -0.012575190514326096, + -0.005169047508388758, + 0.0035386790987104177, + 0.003681039670482278, + 0.007897626608610153, + 0.027143429964780807, + 0.004589436110109091, + 0.03660702332854271, + 0.007456986699253321, + 0.012222678400576115, + 0.014547903090715408, + -0.0016642637783661485, + 0.009050070308148861, + -0.017856093123555183, + -0.0017523918068036437, + 0.00785017292946577, + -0.01625622995197773, + 0.006901102140545845, + -0.007036683615297079, + -0.018235720694065094, + -0.010914316400885582, + 0.006772299762815237, + 0.0038742434699088335, + 0.008168789558112621, + -0.0017947610467672348, + 0.007999313063919544, + -0.021340539678931236, + 0.016798557713627815, + -0.0033624230418354273, + 0.011727806180715561, + -0.004752133972942829, + -0.0024828375317156315, + 0.001776118646375835, + 0.0035657952539622784, + -0.012059981003403664, + 0.012344702146947384, + 0.02167949266731739, + -0.011205816641449928, + -0.015320717357099056, + 0.024214869365096092, + -4.12040863011498e-5, + 0.01589016057550907, + -0.014425879344344139, + 0.004250482190400362, + -0.006396060809493065, + 0.004196249879896641, + 0.0023116657976061106, + -0.04927034303545952, + 0.005494443234056234, + -0.012059981003403664, + -0.0005147862830199301, + 0.018167931586503983, + -0.020147422328591347, + 0.018303511664271355, + -0.006962113548070192, + 0.0039386446587741375, + -0.0170154869556427, + 0.015212252736091614, + 0.005074140150099993, + 0.018994977697730064, + 0.017001928761601448, + 0.008250138722360134, + 0.001598167815245688, + -0.01708327792584896, + 0.01373441331088543, + -0.0010931264841929078, + 0.020716864615678787, + 0.002652314491569996, + -0.0005419026128947735, + 0.028282316401600838, + 0.0018489937065169215, + -0.016378253698349, + 0.014602134935557842, + -0.008331487886607647, + -0.00492839002981782, + 0.0091314185410738, + -0.011612561531364918, + -0.00038746671634726226, + 0.024296218529343605, + 0.009361907839775085, + 0.016432486474514008, + -0.015659671276807785, + 0.000472417043056339, + -0.0198491420596838, + 0.032729391008615494, + -0.005196163896471262, + 0.01902209408581257, + -0.005677478387951851, + -0.010338095016777515, + 0.023862356320023537, + 0.015293600969016552, + 0.004484360571950674, + 0.0046606166288256645, + 0.006768910214304924, + 0.005524949170649052, + -0.001119395368732512, + 0.0012642982183024287, + -0.01789676770567894, + -0.017788302153348923, + 0.028065385296940804, + 0.0152800427749753, + -0.008297592401504517, + -0.014263181015849113, + 0.006280816160142422, + 0.004494529217481613, + 0.016174880787730217, + 0.009965245611965656, + -0.019144117832183838, + -0.009850000962615013, + -0.014764833264052868, + -0.0009160229819826782, + -0.001484618172980845, + 0.0044335173442959785, + -0.0022794650867581367, + -0.003281074110418558, + -0.007294288370758295, + -0.002601471496745944, + -0.007978975772857666, + -0.0026675674598664045, + -0.020255886018276215, + -0.008209464140236378, + 0.017693394795060158, + 0.01518513634800911, + 0.009436476975679398, + 0.001717649050988257, + 0.010819409042596817, + 0.012426051311194897, + -0.002406572923064232, + 0.010690607130527496, + 0.0189000703394413, + 0.002611640142276883, + -0.008934825658798218, + 0.002921782899647951, + 0.030668551102280617, + -0.003630196675658226, + -0.029855061322450638, + 0.004416569601744413, + 0.02200488932430744, + 0.008650104515254498, + 0.01256841141730547, + -0.06290984898805618, + -0.001617657602764666, + -0.0034980045165866613, + 0.007592568174004555, + -0.01694769598543644, + -0.0019422060577198863 + ], + "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995": [ + -0.038668811321258545, + -0.021554023027420044, + -0.011286546476185322, + 0.021484222263097763, + -0.006658852566033602, + -0.012801190838217735, + -0.019474003463983536, + -0.008564373478293419, + -0.02515566535294056, + -0.00684382114559412, + 0.024806668981909752, + 0.011153927072882652, + -0.004739372059702873, + -0.04277300834655762, + -0.016905389726161957, + 0.020116157829761505, + -0.016542432829737663, + 0.014546173624694347, + 0.010749091394245625, + -0.02334088459610939, + 0.09135331958532333, + 0.004753332119435072, + -0.052433229982852936, + -0.0031357333064079285, + 0.005709582474082708, + -0.0034166756086051464, + -0.008983169682323933, + -0.0160957183688879, + -0.04869198799133301, + 0.02493230812251568, + 0.03277774900197983, + 0.023061687126755714, + 0.019222725182771683, + 0.021958857774734497, + 0.008606253191828728, + -0.04514618590474129, + 0.03556971997022629, + 0.04950166121125221, + -0.011844940483570099, + -0.019208766520023346, + -0.055643998086452484, + -0.007105568423867226, + -0.01472765114158392, + 0.0021027037873864174, + -0.0481894351541996, + 0.005538573954254389, + 0.029539061710238457, + -0.0365748293697834, + 0.02824079431593418, + 0.024918347597122192, + 0.009883579798042774, + -0.04520202428102493, + 0.007936179637908936, + -0.012598772533237934, + 0.010658352635800838, + 0.00472192233428359, + -0.01606779731810093, + 0.0324985533952713, + -0.02504398673772812, + -0.018943529576063156, + -0.024192435666918755, + 0.022000737488269806, + -0.0037412422243505716, + 0.02914818562567234, + -0.05335457995533943, + -0.010002238675951958, + 0.028101196512579918, + 0.009632302448153496, + -0.07627666741609573, + -0.03928304463624954, + 0.013904019258916378, + 0.04997629672288895, + -0.01859453320503235, + -0.0011813531164079905, + -0.017366064712405205, + 0.010714191943407059, + 0.03185639902949333, + -0.0025668691378086805, + 0.001231085043400526, + 0.013617842458188534, + -0.032526470720767975, + 0.0003627382102422416, + 0.024834590032696724, + 0.0004912125295959413, + 0.02861771173775196, + 0.007971079088747501, + -0.022461412474513054, + -0.03794289752840996, + 0.006254016887396574, + -0.007922220043838024, + 0.002547674346715212, + 0.03258231282234192, + 0.022028658539056778, + -0.018803929910063744, + -0.02085603028535843, + 0.02141442336142063, + -0.01975320093333721, + 0.015006848610937595, + 0.018078017979860306, + -0.017100827768445015, + -0.0011508158640936017, + 0.043722279369831085, + -0.0351509265601635, + 0.006913620047271252, + -0.03615603595972061, + -0.012326555326581001, + -0.012417295016348362, + -0.03174471855163574, + 0.0010426270309835672, + 0.08381499350070953, + -0.008655112236738205, + -0.009688141755759716, + 0.01837117411196232, + 0.017100827768445015, + -0.03085128776729107, + -0.04321972280740738, + 0.012417295016348362, + 0.0036190934479236603, + 0.005039508920162916, + -0.02398303709924221, + -0.004086748696863651, + 0.01881789043545723, + 0.014448454603552818, + -0.011063188314437866, + -0.0024708949495106936, + -0.03202391788363457, + -0.010518753901124, + -0.03182847797870636, + 0.03517884388566017, + -0.013827240094542503, + -0.03355950117111206, + -0.016346994787454605, + -0.02364800125360489, + -0.01144708413630724, + -0.03043249249458313, + -0.007398725487291813, + 0.01553732343018055, + 0.03559764102101326, + -0.07303798198699951, + 0.02149818278849125, + -0.01877601072192192, + -0.027919718995690346, + -0.02070247009396553, + -0.013003609143197536, + -0.02349444292485714, + -0.00774772185832262, + -0.04101406782865524, + 0.02613285556435585, + -0.002362706232815981, + 0.021819259971380234, + -0.027124006301164627, + -0.01072815153747797, + 0.012975689023733139, + 0.02945530228316784, + -0.0017851169686764479, + 0.01549544371664524, + -0.03838961198925972, + 0.0005614481051452458, + 0.011921719647943974, + 0.0028774759266525507, + 0.0066274432465434074, + -0.034257493913173676, + 0.01682163029909134, + 0.03665858879685402, + 0.024722909554839134, + 0.028450192883610725, + 0.018873728811740875, + 0.009471764788031578, + -0.024541432037949562, + 0.022014698013663292, + 0.040176473557949066, + -0.03900384530425072, + 0.0033049965277314186, + 0.016123637557029724, + 0.008347995579242706, + 0.006599523592740297, + 0.027821999043226242, + 0.020311595872044563, + 0.004899910651147366, + -0.0406511090695858, + 0.000977190094999969, + -0.028366433456540108, + 0.00446715485304594, + -0.010344255715608597, + -0.007559263613075018, + 0.02300584688782692, + 0.0003123518545180559, + -0.0013349115615710616, + -0.02881314978003502, + -0.02081415057182312, + -0.017282305285334587, + -0.007887320592999458, + -0.02650977298617363, + 0.009660222567617893, + -0.004547424148768187, + 0.009911499917507172, + -9.951852553058416e-5, + -0.013024548068642616, + 0.016193436458706856, + -0.0060899886302649975, + -0.008780751377344131, + -0.03755202144384384, + -0.030404573306441307, + 0.011977558955550194, + -0.011621582321822643, + 0.00733590591698885, + -0.01057459320873022, + -0.0362677127122879, + 0.014532213099300861, + -0.05698414519429207, + 0.059413161128759384, + -0.03428541496396065, + 0.016528472304344177, + -0.013904019258916378, + -0.05614655464887619, + -0.003315466456115246, + -0.001853171270340681, + 0.019097087904810905, + 0.03054417110979557, + -0.02914818562567234, + 0.004896420519798994, + 0.01704498752951622, + 0.005573473870754242, + 0.008662092499434948, + -0.018999367952346802, + -0.020953748375177383, + 0.00801295880228281, + 0.03883632645010948, + -0.049082864075899124, + -0.011761181056499481, + 0.06427118927240372, + 0.0003581576456781477, + -0.005664212629199028, + -0.02850603312253952, + -0.011642522178590298, + 0.010958489030599594, + -0.02606305666267872, + 0.019320445135235786, + 0.033196546137332916, + -0.04056734964251518, + -0.011775141581892967, + 0.019557762891054153, + 0.025546541437506676, + 0.00490340031683445, + 0.025630300864577293, + -0.009792841039597988, + 0.01979508064687252, + -0.014615972526371479, + 0.004812661558389664, + -0.02025575563311577, + 0.007684902288019657, + 0.016500553116202354, + 0.030264973640441895, + -0.047491442412137985, + -0.031353842467069626, + 0.035541802644729614, + -0.005475754849612713, + -0.051344361156225204, + -0.009018069133162498, + -0.019320445135235786, + -0.0007027916726656258, + 0.008327055722475052, + 0.03847337141633034, + 0.007650002837181091, + 0.026677289977669716, + -0.027403203770518303, + -0.0016786730848252773, + -0.0018566612852737308, + -0.011509903706610203, + 0.025853658095002174, + -0.02329900488257408, + -0.0070252991281449795, + -0.01613759621977806, + -0.025672180578112602, + -0.0447273887693882, + 0.04525786265730858, + 0.009639282710850239, + -0.027207765728235245, + -0.02130274474620819, + 0.002814656589180231, + -0.013066427782177925, + -0.005510654300451279, + 0.008075778372585773, + 0.01866433210670948, + -0.02537902444601059, + -0.016053838655352592, + -0.005908510182052851, + 0.006194687448441982, + -0.048021916300058365, + 0.010595533065497875, + 0.006962479557842016, + -0.019278565421700478, + 0.0230756476521492, + -0.007859400473535061, + 0.05343833938241005, + -0.0050848787650465965, + 0.001443100394681096, + 0.004345006309449673, + -0.04241005331277847, + 0.009408945217728615, + -0.0273054838180542, + 0.0046102432534098625, + 0.015607122331857681, + 0.01057459320873022, + 0.004243797156959772, + 0.000552286917809397, + 0.051791075617074966, + 0.029985778033733368, + -0.06633725017309189, + -0.013457303866744041, + 0.0022318323608487844, + 0.018189696595072746, + -0.022754570469260216, + -0.006986909545958042, + 0.017058948054909706, + 0.018496813252568245, + -0.008997129276394844, + -0.02303376793861389, + -0.029818259179592133, + -0.0004593666235450655, + 0.03065584972500801, + 0.01457409281283617, + -0.043080125004053116, + 0.020981667563319206, + 0.03771954029798508, + -0.035960596054792404, + 0.04185165837407112, + -0.0061877076514065266, + -0.002589553827419877, + -0.013750460930168629, + -0.011558763682842255, + 0.003554529044777155, + -0.01549544371664524, + -0.018831849098205566, + -0.0026261985767632723, + -0.059859875589609146, + -0.021623821929097176, + -0.03244271129369736, + -0.010441974736750126, + -0.04160038009285927, + -0.014643891714513302, + -0.010176736861467361, + -0.0038878207560628653, + -0.003481239778921008, + 0.027584681287407875, + -0.005475754849612713, + -0.03665858879685402, + 0.014588052406907082, + 0.003170632990077138, + -0.019739240407943726, + 0.0008166517363861203, + -0.006072538904845715, + 0.019292525947093964, + 0.024010958150029182, + 0.0690733790397644, + -0.026035137474536896, + 0.0138551602140069, + -0.02107938751578331, + 0.00863417237997055, + -0.029985778033733368, + 0.04196333512663841, + -0.007224227301776409, + -0.006407575216144323, + -0.004585813730955124, + 0.01005109865218401, + 0.030348733067512512, + -0.03255439177155495, + 0.007761681452393532, + -0.011146947741508484, + -0.016989149153232574, + -0.022000737488269806, + -0.01689142920076847, + 0.0021410933695733547, + -0.027389243245124817, + -0.027654480189085007, + -0.011433124542236328, + 0.044587790966033936, + -0.02533714473247528, + -0.04506242647767067, + 0.02130274474620819, + -0.015942158177495003, + -0.002603513654321432, + 0.041237425059080124, + -0.016109677031636238, + 0.03213559463620186, + 0.02130274474620819, + 0.01633303426206112, + 0.0024726400151848793, + 0.04280092939734459, + 0.02590949833393097, + -0.015327924862504005, + 0.021288784220814705, + -0.012061318382620811, + -0.008473634719848633, + -0.026523731648921967, + 0.04916662350296974, + 0.00500460946932435, + 0.011810041032731533, + 3.879859286826104e-5, + -0.04514618590474129, + 0.033922456204891205, + 0.01866433210670948, + 0.022000737488269806, + -0.028645630925893784, + 0.005594413727521896, + -0.03978559747338295, + -0.021470263600349426, + -0.015676921233534813, + 0.014825370162725449, + 0.010197676718235016, + 0.014546173624694347, + -0.004313596524298191, + 0.006568113807588816, + 0.029204025864601135, + 0.009094848297536373, + -0.012689512223005295, + 0.010895670391619205, + 0.009513643570244312, + -0.00774772185832262, + -0.0574587807059288, + 0.017617342993617058, + 0.05829637125134468, + -0.03741242364048958, + 0.031465522944927216, + 0.02232181467115879, + 0.011223726905882359, + 0.04246589168906212, + 0.007971079088747501, + -0.01722646690905094, + -0.008103698492050171, + -0.004536954220384359, + 0.017882579937577248, + -0.009227466769516468, + 0.01598403789103031, + 0.005727032199501991, + -0.03127008303999901, + -0.005590923596173525, + 0.020381394773721695, + 0.009367065504193306, + 0.020046357065439224, + 0.008306115865707397, + 0.009771901182830334, + 0.00048161513404920697, + 0.011970579624176025, + -4.749623985844664e-5, + 0.0054827346466481686, + -0.021316705271601677, + -0.0029193556401878595, + -0.010888690128922462, + 0.022656850516796112, + 0.009702102281153202, + 0.030488332733511925, + -0.027877839282155037, + 0.0024028406478464603, + -0.010155797936022282, + 0.003339896211400628, + -0.024681031703948975, + -0.039757680147886276, + -0.0028914357535541058, + -0.013792340643703938, + -0.037691619247198105, + 0.0032666069455444813, + 0.005123268347233534, + 0.002854791237041354, + -0.006295896600931883, + -0.04606753587722778, + 0.016584312543272972, + 0.009325185790657997, + 0.012843070551753044, + -0.0032351973932236433, + 0.01813385635614395, + -0.01915292628109455, + -0.030488332733511925, + 0.02130274474620819, + 0.012570853345096111, + 0.010853790678083897, + -0.010797951370477676, + 0.014713691547513008, + 0.004878970794379711, + -0.014964968897402287, + -0.02074434980750084, + -0.03573723882436752, + -0.017449824139475822, + 0.007887320592999458, + 0.008627193048596382, + -0.005999249406158924, + -0.0066030132584273815, + -0.03805457428097725, + 0.029204025864601135, + -0.026872728019952774, + 0.02553258277475834, + -0.0131432069465518, + 0.019278565421700478, + -0.003891310654580593, + -0.001795586897060275, + -0.019334405660629272, + -0.010595533065497875, + -0.0019474003929644823, + -0.006704222410917282, + -0.011516883969306946, + 0.02149818278849125, + -0.05502976477146149, + -0.011216746643185616, + -0.010476874187588692, + 0.0006216499605216086, + -0.012228836305439472, + -0.040595270693302155, + 0.017338145524263382, + -0.019487963989377022, + -0.014232076704502106, + -0.032861508429050446, + -0.012459173798561096, + 0.009450824931263924, + 0.021288784220814705, + -0.02130274474620819, + -0.0022737120743840933, + -0.03998103737831116, + 0.0059748198837041855, + 0.014713691547513008, + -0.020939787849783897, + 0.013464284129440784, + 0.020618712529540062, + -0.013303745537996292, + 0.013185086660087109, + 0.01088170986622572, + 0.00908786803483963, + -0.026788970455527306, + -0.022503292188048363, + -0.011307485401630402, + -0.01276629138737917, + 0.0066728126257658005, + 0.010595533065497875, + -0.03073960915207863, + 0.010421034879982471, + 0.026830848306417465, + 0.021163146942853928, + 0.006379655562341213, + 0.02835247293114662, + -0.007301006466150284, + 0.03637939319014549, + -0.008347995579242706, + -0.008941289968788624, + 0.027835959568619728, + -0.044029396027326584, + 0.02967865951359272, + 0.0014675301499664783, + -0.010204656980931759, + 0.024038877338171005, + -0.03099088743329048, + 0.009660222567617893, + -0.019027287140488625, + -0.001046989462338388, + -0.011977558955550194, + 5.916580994380638e-5, + 0.009813780896365643, + -0.03816625475883484, + -0.0012781996047124267, + 0.0021009587217122316, + 0.004770781844854355, + 0.008759811520576477, + -0.02861771173775196, + 0.008117658086121082, + 0.00814557820558548, + 0.026495812460780144, + 0.002303376793861389, + -0.016081757843494415, + 0.011789101175963879, + 0.013890059664845467, + 0.01435073558241129, + 0.015635041519999504, + 0.01328978594392538, + -0.012857030145823956, + 0.0014675301499664783, + -0.0010853790445253253, + -0.0223636943846941, + 0.021512143313884735, + -0.02089790813624859, + 0.019543802365660667, + -0.012584812939167023, + -0.0020625691395252943, + 0.040483590215444565, + -0.008899410255253315, + 0.00045631290413439274, + -0.000580206629820168, + -0.019962597638368607, + -0.019055208191275597, + -0.016835590824484825, + -0.012794210575520992, + 0.01602591760456562, + 0.017170626670122147, + 0.019850919023156166, + 0.013199047185480595, + 0.02391323819756508, + -0.028101196512579918, + -0.004568364005535841, + 0.008347995579242706, + -0.010777011513710022, + 0.004386885557323694, + 0.02123294584453106, + 0.02632829360663891, + 0.005932940170168877, + 0.03152136132121086, + 0.045229941606521606, + -0.00032631171052344143, + -0.02469499036669731, + 0.020493073388934135, + -0.016388874500989914, + -0.005664212629199028, + -0.0022597522474825382, + -0.000777389679569751, + -0.03816625475883484, + 0.030795449391007423, + 0.0351509265601635, + -0.03269398957490921, + 0.05234947055578232, + 0.02764052152633667, + 0.021470263600349426, + 0.005960859823971987, + 0.014225096441805363, + -0.03450877219438553, + 0.02775220014154911, + -0.008264236152172089, + 0.069687619805336, + -0.039645999670028687, + 0.02387135848402977, + -0.027249645441770554, + -0.022684771567583084, + -0.0021585430949926376, + -0.025030028074979782, + 0.00023579075059387833, + 0.01225675642490387, + 0.024387873709201813, + 0.0064354948699474335, + -0.048021916300058365, + 0.027696359902620316, + -0.0177290216088295, + 0.04422483220696449, + 0.040064796805381775, + -0.03702154755592346, + -0.013226966373622417, + -0.0026070037856698036, + -0.010804930701851845, + -0.003859901102259755, + 0.0035388243850320578, + -0.012905890122056007, + 0.017128746956586838, + -0.006149318069219589, + 0.0146718118339777, + 0.012689512223005295, + 0.024862509220838547, + -0.020828109234571457, + 0.004086748696863651, + 0.00311653851531446, + 0.022042617201805115, + 0.0033067415934056044, + -0.038445450365543365, + 0.0007691009668633342, + 0.028645630925893784, + 0.004683532752096653, + -0.015258125960826874, + 0.012019438669085503, + -0.020646631717681885, + 0.018789971247315407, + 0.017031028866767883, + -0.023857399821281433, + 0.022866249084472656, + -0.0029245903715491295, + -0.009346125647425652, + -0.027514882385730743, + 0.005077898968011141, + -0.0065332138910889626, + -0.008361955173313618, + 0.0062051573768258095, + 0.034899648278951645, + 0.013848179951310158, + -0.012689512223005295, + 0.015746720135211945, + 0.016109677031636238, + -0.023480482399463654, + -0.03434125334024429, + 0.0054827346466481686, + 0.012298636138439178, + -0.018734131008386612, + 0.0011368560371920466, + -0.00995337963104248, + -0.028045356273651123, + 0.0021306234411895275, + 0.0331127867102623, + -0.012738371267914772, + 0.01731022447347641, + 0.006875230465084314, + -0.0025947887916117907, + -0.014029658399522305, + -0.014057578518986702, + -0.04841279238462448, + -0.02167966030538082, + -0.02757072076201439, + -0.020534953102469444, + -0.0007211139891296625, + 0.0021323685068637133, + -0.018189696595072746, + 0.027626561000943184, + 0.0032160026021301746, + -0.01968340203166008, + 0.008306115865707397, + 0.008264236152172089, + -0.022265974432229996, + -0.02967865951359272, + 0.0007664834847673774, + -0.01174722146242857, + 0.01633303426206112, + 0.001968340016901493, + -7.42162810638547e-5, + -0.007273086812347174, + 0.002605258719995618, + 0.01719854585826397, + -0.013638782314956188, + -0.0016149812145158648, + 0.009457804262638092, + 0.009283306077122688, + -0.01246615406125784, + 0.026426013559103012, + -0.005957369692623615, + -0.023815520107746124, + -0.010874730534851551, + 0.007894299924373627, + 0.004261246882379055, + 0.027347363531589508, + 0.007287046406418085, + -0.0038529210723936558, + 0.02695648744702339, + -0.02251725271344185, + -0.0032334523275494576, + -0.0016664582071825862, + -0.002249282319098711, + 0.007782621309161186, + -0.026300374418497086, + -0.001074909116141498, + 0.039310961961746216, + -0.03476005047559738, + 0.010441974736750126, + -0.005165148060768843, + -0.01598403789103031, + 0.022991888225078583, + 0.014797450974583626, + 0.004194937646389008, + 0.025630300864577293, + 0.030823368579149246, + 0.00630636652931571, + 0.024750830605626106, + 0.026118896901607513, + -0.025630300864577293, + 0.0563419908285141, + 0.007552283816039562, + -0.017505662515759468, + 0.013722541742026806, + -0.011419164948165417, + 0.010490833781659603, + -0.023368803784251213, + 0.031242163851857185, + 0.01926460489630699, + 0.019055208191275597, + 0.002901905681937933, + -0.006686772685497999, + -0.02420639619231224, + -0.021205026656389236, + -0.01483932975679636, + 0.04051151126623154, + 0.030488332733511925, + -0.014923089183866978, + 0.019250646233558655, + 0.006267976947128773, + 0.01757546328008175, + -0.0007232952048070729, + -0.003043249249458313, + 0.0024010958150029182, + 0.024750830605626106, + -0.011244666762650013, + -0.04902702569961548, + 9.602856152923778e-5, + 0.007196307182312012, + -0.004226347431540489, + -0.013282805681228638, + -0.001966595184057951, + 0.005042999051511288, + 0.011167887598276138, + 0.050702206790447235, + 0.014532213099300861, + -0.031158406287431717, + 0.004006479401141405, + 0.019487963989377022, + 0.017296265810728073, + 0.008703972212970257, + -0.0025249894242733717, + -0.018789971247315407, + -0.015970079228281975, + 0.02741716243326664, + -0.021749461069703102, + -0.00043864495819434524, + 0.012298636138439178, + -0.028380393981933594, + -0.04497866705060005, + 0.007482484448701143, + 0.009464784525334835, + 0.002080019097775221, + -0.014336775057017803, + -0.00544085493311286, + 0.020688511431217194, + 0.021163146942853928, + 0.030600011348724365, + -0.0018287415150552988, + -0.00518608745187521, + -0.025686141103506088, + 0.010058078914880753, + -0.0058526708744466305, + 0.01088170986622572, + -0.01912500709295273, + -0.009827740490436554, + 0.009569483809173107, + -0.012221856974065304, + 0.0032474121544510126, + 0.01606779731810093, + 0.0019072657451033592, + 0.010155797936022282, + -0.024611230939626694, + -0.01952984370291233, + 0.035206764936447144, + -0.02417847514152527, + 0.0233827643096447, + 0.004488094709813595, + -0.010532713495194912, + -0.026900649070739746, + -0.011488963849842548, + 0.03406205773353577, + 0.0005706092342734337, + 0.018748091533780098, + 0.007831481285393238, + -0.038864247500896454, + -0.010379155166447163, + 0.054890166968107224, + -0.01779882051050663, + -0.023801559582352638, + -0.022991888225078583, + -0.003029289422556758, + -0.0037726520095020533, + -0.019781120121479034, + 0.000146905702422373, + -0.011251646094024181, + 0.030488332733511925, + 0.010044118389487267, + -0.0011926954612135887, + -0.019474003463983536, + -0.017449824139475822, + -0.011726281605660915, + -0.009695122018456459, + 0.020939787849783897, + -0.02590949833393097, + 0.03760785982012749, + 0.005053468979895115, + 0.0403439924120903, + -0.004351986106485128, + 0.02417847514152527, + -0.04335932061076164, + -0.006491334643214941, + -0.00682637095451355, + -0.023354845121502876, + -0.0009169882396236062, + -0.024806668981909752, + -0.030795449391007423, + 0.0030781489331275225, + -0.035988517105579376, + 0.00882263109087944, + -0.011572723276913166, + -0.0035143946297466755, + 0.0032212375663220882, + -0.01735210418701172, + -0.00234700134024024, + -0.021735500544309616, + -0.0035423142835497856, + -0.0032631170470267534, + 0.006697242613881826, + 0.01549544371664524, + 0.0008406452834606171, + -0.006505294237285852, + -0.05863140895962715, + 0.002495324704796076, + 0.03336406499147415, + -0.0040518492460250854, + -0.015216246247291565, + -0.004463664721697569, + -0.017547542229294777, + 0.016947269439697266, + -0.01923668570816517, + -0.04000895470380783, + -0.007342885714024305, + 0.005311726592481136, + 0.003692382713779807, + -0.04581625759601593, + 0.006400595419108868, + -0.001090614008717239, + -0.01308736763894558, + -0.008347995579242706, + -0.024485593661665916, + 0.009073908440768719, + -0.00012007659825030714, + -0.03442501276731491, + 0.004289166536182165, + 0.02824079431593418, + 0.009394985623657703, + -0.013757441192865372, + 0.012396355159580708, + 0.015090608038008213, + 0.0023888808209449053, + -0.0316888801753521, + 0.010790971107780933, + 0.020185956731438637, + 0.02036743424832821, + -0.009157667867839336, + -0.009855660609900951, + 0.015300005674362183, + 0.0013401465257629752, + 0.023103566840291023, + -0.009436864405870438, + 0.013136227615177631, + 0.01220091711729765, + -0.008871490135788918, + 0.019334405660629272, + 0.007782621309161186, + -0.010986409150063992, + 0.02254517190158367, + -0.02504398673772812, + 0.005489714443683624, + -0.0006177237373776734, + 0.013226966373622417, + 0.036491069942712784, + 0.005650253035128117, + 0.01327582634985447, + 0.00579683156684041, + -0.05762629956007004, + -0.011056208051741123, + -0.014615972526371479, + -0.020576832816004753, + 0.010211637243628502, + -0.04045567288994789, + -0.015970079228281975, + 0.004048359114676714, + -0.020995628088712692, + 0.015858400613069534, + -0.006138848140835762, + -0.005786361638456583, + -0.0032875468023121357, + 0.01451825350522995, + 0.015286046080291271, + -0.038445450365543365, + -0.01400871854275465, + 0.032861508429050446, + -0.009757941588759422, + -0.012626692652702332, + 0.007615102920681238, + 0.003437615232542157, + -0.007046238984912634, + -0.004268227145075798, + -0.001090614008717239, + -0.006819391157478094, + -0.05067428946495056, + 0.016654111444950104, + -0.04536954313516617, + 0.017100827768445015, + -0.009792841039597988, + 0.006599523592740297, + -0.007510404102504253, + -0.017058948054909706, + -0.0032055326737463474, + 0.005510654300451279, + 0.00030995250563137233, + -0.01417623646557331, + 0.00300311460159719, + -0.013317705132067204, + 0.0010129623115062714, + 0.003507414599880576, + 0.037914976477622986, + -0.009325185790657997, + -0.015286046080291271, + -0.02163778245449066, + -0.028841068968176842, + 0.010134858079254627, + -0.019222725182771683, + 0.01195661909878254, + 0.02318732626736164, + 0.009764921851456165, + -0.012487093918025494, + -0.049752939492464066, + 0.01598403789103031, + -0.0004358093428891152, + 0.016388874500989914, + -0.005810791160911322, + 0.004484604578465223, + -0.016905389726161957, + 0.018720170482993126, + -0.024820629507303238, + -0.0020329044200479984, + -0.034843809902668, + -0.0240947175770998, + 0.028841068968176842, + 0.0023243166506290436, + -0.017854658886790276, + 0.03099088743329048, + 0.007454564794898033, + 0.031102566048502922, + 0.016947269439697266, + -0.010065058246254921, + 0.010414054617285728, + -0.011810041032731533, + -0.00248834490776062, + 0.022977927699685097, + 0.008347995579242706, + -0.035960596054792404, + -0.04581625759601593, + -0.03288942947983742, + 0.03685402870178223, + -0.013066427782177925, + -0.0043799057602882385, + -0.0020433743484318256, + 0.016305115073919296, + 0.008703972212970257, + 0.018720170482993126, + -0.006704222410917282, + -0.006397105287760496, + 0.0057898517698049545, + 0.005311726592481136, + -0.037691619247198105, + -0.0003620838397182524, + 0.005116288550198078, + 0.006498314440250397, + -0.007873360067605972, + -0.02945530228316784, + -0.024862509220838547, + -0.04927830398082733, + -0.015160406939685345, + -0.011300506070256233, + 0.02748696319758892, + -0.01548148412257433, + 0.0002349182468606159, + -0.006411065347492695, + 0.006585563533008099, + 0.0019177356734871864, + 0.002434250432997942, + -0.01361086219549179, + 0.006536704022437334, + 0.01435073558241129, + 0.02620265632867813, + -0.03777537867426872, + 0.013520123437047005, + -0.017254386097192764, + 0.005336156114935875, + -0.008606253191828728, + -0.030153295025229454, + 0.004114668350666761, + 0.010832850821316242, + 0.02473687008023262, + 0.010567612946033478, + 0.02575594000518322, + 0.0038529210723936558, + -0.029092347249388695, + 0.05301954597234726, + -0.015369804576039314, + -0.0006548046367242932, + 0.007817520759999752, + -0.0034201655071228743, + -0.018343254923820496, + 0.015621081925928593, + 0.008983169682323933, + -0.0016333034727722406, + 0.017296265810728073, + -0.015006848610937595, + 0.004885950591415167, + 0.010441974736750126, + -0.005001119337975979, + 0.037161145359277725, + -0.00124417245388031, + 0.018315335735678673, + -0.014420534484088421, + -0.005001119337975979, + 0.010127877816557884, + -0.038864247500896454, + 0.013834220357239246, + 0.012982669286429882, + 0.014588052406907082, + -0.019585682079195976, + 0.007782621309161186, + -0.014699731953442097, + 0.008075778372585773, + -0.004568364005535841, + 0.008222357369959354, + 0.02172154001891613, + -0.002477874979376793, + -0.01210319809615612, + 0.0566491074860096, + -0.004177487920969725, + 0.0005173872923478484, + 0.02010219730436802, + -0.012682531960308552, + 0.0023592161014676094, + 0.02537902444601059, + 0.0016725655877962708, + 0.02493230812251568, + -0.010511773638427258, + -0.0030362694524228573, + -0.006240056827664375, + 0.028785228729248047, + 0.02602117694914341, + -0.0036993627436459064, + 0.01779882051050663, + 0.02160986140370369, + 0.002655863296240568, + 0.011844940483570099, + 0.006777511443942785, + 0.0054303850047290325, + -0.010030158795416355, + 0.017631301656365395, + 0.0032055326737463474, + 0.0025965338572859764, + 7.699734851485118e-5, + 0.024276195093989372, + -0.0196136012673378, + -0.010637412779033184, + -0.005489714443683624, + 0.006819391157478094, + 0.00995337963104248, + -0.004980179946869612, + 0.024541432037949562, + 0.006397105287760496, + 0.015160406939685345, + 0.036491069942712784, + 0.007636042777448893, + 0.006536704022437334, + 0.016458673402667046, + -0.008724912069737911, + 0.0016655856743454933, + 8.479523967253044e-5, + -0.033056944608688354, + 0.0061353580094873905, + 0.017505662515759468, + 0.00018180535698775202, + 0.017477743327617645, + 0.0013340390287339687, + -0.017519623041152954, + -0.0015696116024628282, + 0.017212506383657455, + -0.016640152782201767, + 0.009848680347204208, + 0.000184095639269799, + -0.009353105910122395, + -0.003891310654580593, + -0.03238687291741371, + -0.003748222254216671, + 0.004840581212192774, + -0.00387386092916131, + 0.009122767485678196, + 0.008445714600384235, + -0.05335457995533943, + -0.01123768649995327, + -0.0034411053638905287, + -0.008347995579242706, + 0.010888690128922462, + -0.00040134595474228263, + -0.005946899764239788, + 0.007217247039079666, + -0.020828109234571457, + -0.017100827768445015, + -0.003891310654580593, + -0.010400095023214817, + 0.04763104021549225, + 0.03154928237199783, + -0.007656982634216547, + 0.0003727718722075224, + -0.020353473722934723, + 0.010190697386860847, + 0.008857530541718006, + -0.010483854450285435, + 0.023173365741968155, + -0.012605752795934677, + 0.019474003463983536, + 0.010595533065497875, + 0.015118527226150036, + -0.013401464559137821, + -0.023103566840291023, + 0.003720302367582917, + -0.012891929596662521, + 0.00342191057279706, + -0.015090608038008213, + -0.02043723315000534, + -0.01257783267647028, + -0.011509903706610203, + 0.0008000744273886085, + 0.014204156585037708, + 0.005556024145334959, + 0.005022059194743633, + 0.0038319812156260014, + -0.010888690128922462, + 0.00741966487839818, + 0.0014640402514487505, + -0.00046940025640651584, + 0.0018269965657964349, + 0.006069048773497343, + -0.03216351568698883, + -0.01591423898935318, + -0.007663962431252003, + 0.00846665445715189, + -0.025434862822294235, + -0.01719854585826397, + -0.005332665983587503, + -0.004763802047818899, + -0.02405283786356449, + -0.02349444292485714, + 0.020353473722934723, + -0.00407278910279274, + -0.018050096929073334, + -0.005325686186552048, + -0.028031397610902786, + 0.03383869677782059, + 0.004261246882379055, + 0.02292208932340145, + -0.0032160026021301746, + -0.000699301715940237, + -0.021554023027420044, + -0.0052174972370266914, + 0.003238687291741371, + 0.03590475767850876, + -0.0008074906072579324, + -0.005196557380259037, + 0.01134936511516571, + -0.006009719334542751, + 0.014392614364624023, + -0.027068166062235832, + -0.01148198451846838, + -0.0037307722959667444, + -0.023131486028432846, + -0.020716430619359016, + -0.0016516258474439383, + 0.011153927072882652, + 0.004812661558389664, + -0.005398975685238838, + -0.026104936376214027, + -0.002334786346182227, + 0.00774772185832262, + 0.007852421142160892, + 0.026384133845567703, + -0.030935047194361687, + 0.013624822720885277, + -0.01779882051050663, + 0.01379932090640068, + 0.017938418313860893, + -0.001584443962201476, + -0.0153837651014328, + -0.01400871854275465, + -0.012584812939167023, + 0.018008219078183174, + 3.937116343877278e-5, + -0.0011665207566693425, + -0.015607122331857681, + 0.0100092189386487, + -0.010441974736750126, + -0.005894550587981939, + -0.04241005331277847, + -0.0018427013419568539, + 0.023689880967140198, + -0.00623307703062892, + -0.01779882051050663, + 0.015830479562282562, + -0.028045356273651123, + 0.0035178845282644033, + -0.0022440473549067974, + 0.031772639602422714, + -0.017072908580303192, + 0.030572092160582542, + -0.02085603028535843, + -0.024904388934373856, + 0.001896795816719532, + -0.015300005674362183, + 0.017435863614082336, + -0.00658905366435647, + 0.004460175056010485, + -0.03623979538679123, + -0.007643023040145636, + 0.011830980889499187, + -0.022070536389946938, + 0.0021986777428537607, + -0.021693620830774307, + -0.014336775057017803, + 0.017994258552789688, + 0.015467523597180843, + -0.011132987216114998, + 0.0037133225705474615, + -0.011879839934408665, + 0.034229572862386703, + -0.012242796830832958, + 0.010434994474053383, + 0.012850049883127213, + -0.013317705132067204, + 0.02187509834766388, + 0.027849918231368065, + -0.025839699432253838, + -0.021400464698672295, + 0.02278248965740204, + 0.004561383742839098, + -0.01735210418701172, + 0.018259495496749878, + 0.010434994474053383, + -0.020828109234571457, + 0.007412685081362724, + 0.007998999208211899, + 0.009827740490436554, + 0.023843439295887947, + 0.0016219611279666424, + 0.006976439617574215, + -0.007398725487291813, + -0.015132486820220947, + 0.0038459412753582, + -0.028450192883610725, + -0.0012241051299497485, + -0.0010871239937841892, + 0.01543960440903902, + 0.010176736861467361, + -0.0019002858316525817, + -0.005702602211385965, + 0.0035353342536836863, + 0.01968340203166008, + -0.0011106813326478004, + 0.012291655875742435, + -0.008264236152172089, + 0.02225201576948166, + 0.02130274474620819, + -0.008620212785899639, + 0.023592161014676094, + 0.013429384678602219, + 0.00015410376363433897, + 0.005524614360183477, + 0.004090238828212023, + 0.0033608360681682825, + -0.0013244416331872344, + 0.0015347120352089405, + -0.00015268595598172396, + -0.025574462488293648, + -0.0010347745846956968, + 0.007412685081362724, + -0.0022562621161341667, + 0.0011551782954484224, + 0.006383145693689585, + -0.02006031759083271, + -0.02881314978003502, + 0.022070536389946938, + -0.016109677031636238, + 0.03408997505903244, + 0.0048650107346475124, + -0.01837117411196232, + -0.008857530541718006, + -0.008585313335061073, + -0.017701100558042526, + -0.013185086660087109, + 0.021540062502026558, + -0.03699362650513649, + 0.007615102920681238, + -0.011321445927023888, + -0.016542432829737663, + 0.02726360410451889, + -0.034676291048526764, + -0.01802217774093151, + -0.005318706389516592, + 0.004296146798878908, + -0.0011202787281945348, + -0.001398603431880474, + 0.0018653861479833722, + 0.011244666762650013, + -0.00959740299731493, + 0.0013951134169474244, + -0.005646762903779745, + 0.009367065504193306, + 0.0025372044183313847, + -0.020534953102469444, + -0.01738002523779869, + 0.001159540843218565, + 0.009297266602516174, + -0.004927830304950476, + 0.0027919718995690346, + 0.027207765728235245, + 0.0007176240324042737, + -0.007817520759999752, + -0.005709582474082708, + -0.008389875292778015, + 0.0030746590346097946, + 0.029008587822318077, + 0.009401964955031872, + -0.004250776953995228, + 0.0006172875291667879, + -0.019278565421700478, + -0.009702102281153202, + 0.0004364637134131044, + -0.02858979068696499, + 0.002617473481222987, + -0.0022475372534245253, + -0.007405705284327269, + 0.012487093918025494, + 0.017407944425940514, + 0.011377285234630108, + -0.0036295633763074875, + -0.01881789043545723, + 0.02794763818383217, + -0.015020808205008507, + -0.0014893424231559038, + -0.0021428384352475405, + 0.000265455455519259, + -0.026802929118275642, + 0.0009091358515433967, + -0.01400871854275465, + 0.00014581509458366781, + -0.018427014350891113, + -0.01647263392806053, + 0.0007538323989138007, + -0.06443870812654495, + -0.015048728324472904, + -0.008424774743616581, + -0.009164647199213505, + -0.004079768899828196, + -0.004690512549132109, + 0.007552283816039562, + -0.009632302448153496, + 0.019515883177518845, + 0.007761681452393532, + 0.03294526785612106, + -0.014490333385765553, + 0.009827740490436554, + 9.564685024088249e-5, + -0.018999367952346802, + 0.024611230939626694, + -0.008320076391100883, + 0.020088236778974533, + 0.0026209636125713587, + 0.004034399054944515, + 0.010058078914880753, + 0.006864760536700487, + 0.016123637557029724, + -0.010190697386860847, + -0.016542432829737663, + 0.005161657929420471, + 0.011363325640559196, + -0.005416425410658121, + -0.022070536389946938, + 0.017031028866767883, + 0.01293380931019783, + -0.0036609729286283255, + 0.013883079402148724, + -0.012982669286429882, + 0.008215377107262611, + 0.00984170101583004, + 0.013268846087157726, + 0.0033590910024940968, + 0.0287293903529644, + -0.0103163355961442, + -0.008424774743616581, + 0.005549043882638216, + -0.011817020364105701, + 0.01606779731810093, + 0.003936680033802986, + -0.020241795107722282, + -4.2506679164944217e-5, + 0.056286152452230453, + -0.009646262973546982, + 0.005398975685238838, + 0.003554529044777155, + 0.007328926119953394, + 0.03534636273980141, + -0.008717931807041168, + 0.030488332733511925, + -0.01210319809615612, + 0.00831309612840414, + -0.013422404415905476, + 0.004505544435232878, + 0.011328425258398056, + -0.02775220014154911, + 0.021442344412207603, + -0.0046800426207482815, + -0.03160512074828148, + 0.01272441167384386, + -0.0009134982828982174, + 0.006924089975655079, + 0.02613285556435585, + 0.04098614677786827, + 0.001289541949518025, + 0.030711689963936806, + 7.39981624064967e-5, + 0.010511773638427258, + 0.010756071656942368, + -0.0011656482238322496, + 0.011810041032731533, + -0.03417373448610306, + 0.014825370162725449, + 0.000883397355210036, + -0.0052698468789458275, + -0.017896538600325584, + 0.010651372373104095, + 0.015258125960826874, + 0.010853790678083897, + 0.03247063234448433, + -0.011642522178590298, + -0.009136728011071682, + 0.012542933225631714, + -0.017617342993617058, + 0.009073908440768719, + -0.022824369370937347, + 0.0005487969610840082, + -0.02006031759083271, + -0.01374348159879446, + -0.009555523283779621, + -0.02469499036669731, + 0.009094848297536373, + -0.008040878921747208, + 0.0053396462462842464, + 0.002093978924676776, + -0.02054891176521778, + 0.012089237570762634, + 0.010441974736750126, + -0.006470394786447287, + 0.022126376628875732, + -0.0002562942972872406, + -0.0025825740303844213, + 0.017896538600325584, + -0.012396355159580708, + 0.008773771114647388, + 0.013240925967693329, + 0.025392983108758926, + -0.008843570947647095, + -0.021484222263097763, + -0.030683770775794983, + 0.010686271823942661, + 0.026970447972416878, + 0.004812661558389664, + -0.0032770768739283085, + -0.008717931807041168, + -0.021470263600349426, + 0.009004109539091587, + 0.005018569529056549, + -0.025295265018939972, + 0.01655639335513115, + 0.027096087113022804, + 0.019334405660629272, + -0.006613483186811209, + -0.010623453184962273, + 0.008738871663808823, + -0.005329176317900419, + 0.0007189327152445912, + -0.017338145524263382, + -0.009667202830314636, + -0.0012659847270697355, + 0.003482984844595194, + 0.0110282888635993, + 0.00051040732068941, + 0.01214507780969143, + -0.01950192265212536, + -0.0058352211490273476, + 0.0031496931333094835, + 0.004037889186292887, + 0.0020765289664268494, + -0.004739372059702873, + 0.0023382764775305986, + 0.009862640872597694, + -0.007405705284327269, + -0.014050598256289959, + 0.003975070081651211, + 0.005894550587981939, + -0.002111428650096059, + 0.003324191551655531, + 0.010302376002073288, + 0.004568364005535841, + -0.012242796830832958, + 0.013268846087157726, + -0.030153295025229454, + 0.0023592161014676094, + 0.002973449882119894, + -0.019208766520023346, + -0.0022300875280052423, + -0.036491069942712784, + 0.045425381511449814, + -0.002123643644154072, + -0.0024708949495106936, + 0.009576463140547276, + 0.021889058873057365, + -0.009932439774274826, + -0.0290365070104599, + 0.006781001575291157, + 0.01753358356654644, + 0.006948519963771105, + -0.006568113807588816, + 0.009618342854082584, + 0.013883079402148724, + 0.0072381868958473206, + -0.035123005509376526, + -0.018050096929073334, + 0.0017737746238708496, + 0.011091108433902264, + 0.015732761472463608, + 0.03152136132121086, + 0.0011865879641845822, + -0.018343254923820496, + -0.03850129246711731, + 0.006808921229094267, + -0.007161407731473446, + 0.03087920881807804, + -0.012382394634187222, + 0.0010024923831224442, + 0.03894800692796707, + -0.007754701655358076, + 0.003936680033802986, + -0.012996628880500793, + 0.001528604538179934, + -0.009681162424385548, + -0.0073777856305241585, + 0.02176341973245144, + -0.005754951853305101, + 0.022377654910087585, + -0.007810540962964296, + 0.013827240094542503, + 0.010707211680710316, + -0.023815520107746124, + 0.015258125960826874, + 0.029929937794804573, + -0.008040878921747208, + 0.00178162707015872, + 0.007021808996796608, + -0.0006613483419641852, + -0.014434494078159332, + 0.011935679242014885, + -0.011174866929650307, + -0.01795237883925438, + 0.005036019254475832, + -0.005747972056269646, + 0.01282213069498539, + -0.006679792422801256, + 6.500059680547565e-5, + -0.015970079228281975, + -0.006316836457699537, + 0.0051476978696882725, + -0.033810779452323914, + 0.005828241351991892, + -0.009213507175445557, + -0.01107016857713461, + -0.02688668854534626, + -0.008229336701333523, + -0.008641152642667294, + -0.0002955563832074404, + -0.015621081925928593, + 0.004568364005535841, + -0.011146947741508484, + -0.03099088743329048, + 0.003526609390974045, + -0.021400464698672295, + -0.028575832024216652, + 0.0025668691378086805, + 0.0061353580094873905, + 0.03989727795124054, + 0.008299136534333229, + 0.016751831397414207, + 0.014867249876260757, + 0.009045988321304321, + 0.006938050035387278, + -0.0193064846098423, + 0.0032055326737463474, + -0.022112416103482246, + -0.0021131737157702446, + -0.006728651933372021, + 0.004955749958753586, + -0.02726360410451889, + 0.006093478295952082, + -0.022461412474513054, + 0.006110928487032652, + 0.0043101063929498196, + 0.0031043237540870905, + 0.0029263354372233152, + 0.008396855555474758, + -0.019850919023156166, + 0.012487093918025494, + -0.004707962274551392, + 0.018496813252568245, + 0.009122767485678196, + 0.003940170165151358, + 0.0153837651014328, + 0.0025651240721344948, + -0.004104198422282934, + 0.01370858121663332, + 0.010134858079254627, + -0.020688511431217194, + -0.017617342993617058, + 0.005556024145334959, + -0.005772401578724384, + 0.026537692174315453, + 0.007789601571857929, + -0.02251725271344185, + -0.004812661558389664, + -0.006781001575291157, + -0.004763802047818899, + -0.0028949258849024773, + -0.00741966487839818, + -0.025392983108758926, + 0.0016786730848252773, + -0.005964349955320358, + -0.008648132905364037, + 0.0037133225705474615, + 0.016919348388910294, + -0.00545830512419343, + -0.00013981670781504363, + 0.017254386097192764, + 0.019055208191275597, + -0.02828267402946949, + 0.007936179637908936, + 0.03347574174404144, + -0.033280305564403534, + 0.004191447515040636, + -0.017100827768445015, + -0.014420534484088421, + 0.01644471473991871, + 0.02417847514152527, + -0.017031028866767883, + 0.021595902740955353, + -0.004899910651147366, + 0.002655863296240568, + 0.02515566535294056, + 0.0007691009668633342, + -0.006931070238351822, + -0.005018569529056549, + -0.030264973640441895, + 0.018189696595072746, + -0.002804186660796404, + 0.02311752736568451, + -0.016235316172242165, + -0.011077147908508778, + -0.007018319331109524, + 0.0044497051276266575, + 0.015565242618322372, + -0.014057578518986702, + 0.026649370789527893, + -0.0334199033677578, + 0.005283806473016739, + 0.009757941588759422, + -0.005011589266359806, + 0.00038694983231835067, + 0.007356845773756504, + -0.008152557536959648, + 0.007817520759999752, + -0.002872240962460637, + 0.01633303426206112, + 0.018413053825497627, + -0.0013942408841103315, + -0.01994863897562027, + -0.014071538113057613, + 0.005074408836662769, + -0.020297635346651077, + -0.0009335655486211181, + -0.010358215309679508, + 0.007259126752614975, + 0.022419532760977745, + -0.004233327228575945, + -0.00554206408560276, + -0.013638782314956188, + -0.0067181820049881935, + 0.014699731953442097, + 0.0040448689833283424, + 0.00664489297196269, + -0.0046625928953289986, + 0.002647138200700283, + -0.018524732440710068, + -0.003043249249458313, + 0.0021061936859041452, + -0.0018008218612521887, + 0.012131117284297943, + 0.017282305285334587, + 0.011328425258398056, + -0.003849431173875928, + -0.024569351226091385, + 0.01580256037414074, + 0.009199547581374645, + 0.020674550905823708, + -0.01964152231812477, + -0.004529974423348904, + 0.019334405660629272, + 0.0028338513802736998, + 0.018036138266324997, + -0.009394985623657703, + -0.0019037757301703095, + -0.001984044909477234, + -0.013408444821834564, + 0.002376666059717536, + -0.0037342621944844723, + -0.02183322049677372, + -0.008299136534333229, + 0.008061818778514862, + 0.011670442298054695, + -0.017017068341374397, + -0.0026576081290841103, + -0.015774641185998917, + 0.006330796051770449, + -0.005814281292259693, + -0.004767291713505983, + 0.026788970455527306, + 0.0013523614034056664, + -0.01952984370291233, + -0.0025773390661925077, + 0.022028658539056778, + 0.0032788219396024942, + 0.01779882051050663, + 0.007587183266878128, + 0.014085497707128525, + -0.0007437987369485199, + 0.016528472304344177, + 0.006400595419108868, + -0.016011958941817284, + 0.0021131737157702446, + -0.004090238828212023, + 0.01624927669763565, + -0.0006438985001295805, + -0.015788599848747253, + 0.011251646094024181, + -0.004819641355425119, + -0.015662962570786476, + -0.0007385637727566063, + -0.021916978061199188, + -0.005800321232527494, + 0.00628891633823514, + -0.004194937646389008, + -0.0143646951764822, + 0.010358215309679508, + -0.0018496813718229532, + -2.977376243507024e-5, + -0.014755571261048317, + -0.012738371267914772, + -0.003594663692638278, + 0.012898909859359264, + 0.024080757051706314, + 0.002800696762278676, + 0.0008707462111487985, + 0.006634423043578863, + -0.011963599361479282, + -0.008759811520576477, + -0.011719301342964172, + -0.00548622477799654, + -0.02163778245449066, + 0.006721672136336565, + 0.023396722972393036, + 0.011705341748893261, + -0.019474003463983536, + 0.016654111444950104, + 0.020046357065439224, + -0.007259126752614975, + 0.009771901182830334, + 0.012961729429662228, + 0.013359584845602512, + 0.013478243723511696, + 0.006948519963771105, + 0.0029612351208925247, + -0.004285676870495081, + -0.014881209470331669, + 0.0025267344899475574, + -0.003524864325299859, + 0.016542432829737663, + -0.014141337014734745, + 0.009164647199213505, + -0.01994863897562027, + 0.003127008443698287, + -0.020451193675398827, + 0.007971079088747501, + 0.007964099757373333, + -0.010693252086639404, + 0.02303376793861389, + 0.008927329443395138, + -0.004707962274551392, + 0.00876679178327322, + -0.0334199033677578, + 0.003284056903794408, + 0.028785228729248047, + 0.012947768904268742, + 0.0018653861479833722, + -0.013966838829219341, + 0.006882210727781057, + 0.00863417237997055, + -0.015523362904787064, + -0.0071230181492865086, + -0.012326555326581001, + 0.005283806473016739, + 0.008990149013698101, + 0.0200184378772974, + 0.02176341973245144, + -0.005545554216951132, + 0.018985407426953316, + 0.005395485553890467, + -0.01271045207977295, + 0.012340515851974487, + -0.028087235987186432, + -0.011370304971933365, + -0.0048021916300058365, + 0.006428515072911978, + 0.013659722171723843, + -0.0039297002367675304, + 0.012354475446045399, + -0.015146447345614433, + 0.025392983108758926, + 0.015942158177495003, + 0.01123768649995327, + 0.021205026656389236, + 0.00924142636358738, + 0.01576068066060543, + -0.0023661961313337088, + 0.013199047185480595, + -0.02579781971871853, + 0.02688668854534626, + 0.007063688710331917, + -0.019487963989377022, + 0.0064878445118665695, + -0.008361955173313618, + -0.0035492940805852413, + -0.008396855555474758, + -0.01950192265212536, + -0.0020329044200479984, + -0.008264236152172089, + -0.0034445952624082565, + 0.007259126752614975, + 0.01410643756389618, + -0.010693252086639404, + 0.008913369849324226, + 0.018496813252568245, + -0.0033887557219713926, + -0.012459173798561096, + -0.011963599361479282, + 0.0011159161804243922, + -0.005405955482274294, + -0.011202787049114704, + 0.012354475446045399, + 0.0029542550910264254, + 0.006711202207952738, + -0.0015216246247291565, + 0.030711689963936806, + 0.037803299725055695, + -0.016695991158485413, + 0.006777511443942785, + 0.004938300233334303, + 0.01779882051050663, + -0.013317705132067204, + 0.011195806786417961, + 0.022754570469260216, + -0.004767291713505983, + 0.003413185477256775, + 0.00012629310367628932, + -0.02643997222185135, + 0.005056959111243486, + -0.003380030859261751, + -0.022684771567583084, + -0.032638151198625565, + -0.011684401892125607, + -0.014769530855119228, + 0.0037307722959667444, + -0.00544085493311286, + 0.014141337014734745, + -0.028492072597146034, + -0.00012629310367628932, + 0.020786229521036148, + 0.002336531411856413, + -0.002559889107942581, + -0.009346125647425652, + 0.007517383899539709, + 0.01613759621977806, + 0.021805299445986748, + 0.018147816881537437, + 0.011544803157448769, + 0.006592543330043554, + -0.014057578518986702, + 0.004812661558389664, + 0.0017720295581966639, + -0.007985039614140987, + 0.003992519807070494, + 0.012207896448671818, + -0.016458673402667046, + 0.002148073399439454, + 0.017366064712405205, + 0.007915239781141281, + -0.004819641355425119, + -0.0038564109709113836, + 0.016528472304344177, + -0.011223726905882359, + -0.022279934957623482, + -0.01837117411196232, + -0.007273086812347174, + 0.012179977260529995, + 0.0262864138931036, + -0.014448454603552818, + -0.011984539218246937, + 0.017561502754688263, + -0.01784070022404194, + -0.010134858079254627, + 0.011454064399003983, + -0.0036470131017267704, + 0.007587183266878128, + -0.026802929118275642, + 0.011893799528479576, + -0.001133366022258997, + 0.016682032495737076, + -0.01813385635614395, + 0.014797450974583626, + -0.012501053512096405, + 0.01010693795979023, + 0.0029402952641248703, + 0.06203761324286461, + 0.00790128018707037, + 0.0012851795181632042, + 0.006931070238351822, + -0.0030083495657891035, + -0.030907128006219864, + -0.02775220014154911, + -0.00274311238899827, + -0.03573723882436752, + -0.0013628312153741717, + 0.029176104813814163, + 0.0005544681334868073, + 0.006972949486225843, + 0.01543960440903902, + -0.027500921860337257, + -0.030572092160582542, + -0.022293895483016968, + -0.016039878129959106, + 0.002111428650096059, + 0.01870621182024479, + 0.0019125007092952728, + -0.012110177427530289, + -0.012515014037489891, + -0.004453195258975029, + 0.009785860776901245, + -0.008599272929131985, + 0.008431755006313324, + 0.036602750420570374, + -0.03431333228945732, + -0.010763050988316536, + -0.013876100070774555, + -0.010169757530093193, + -0.0016080013010650873, + -0.010309356264770031, + -0.0027117026038467884, + 0.0028495562728494406, + 0.01888768933713436, + 0.0038878207560628653, + -0.006714692339301109, + 0.02606305666267872, + 0.030264973640441895, + 0.0005357096088118851, + -0.018245534971356392, + 0.002052099211141467, + -0.011021308600902557, + 0.013534083031117916, + 0.03495548665523529, + -0.002444720361381769, + 0.029427383095026016, + 0.024569351226091385, + -0.019222725182771683, + -0.004034399054944515, + -0.010365195572376251, + -0.0032753320410847664, + -0.001839211443439126, + -0.007601143326610327, + -0.0010923589579761028, + -0.018259495496749878, + 0.01276629138737917, + -0.008843570947647095, + 0.004041379317641258, + -0.011488963849842548, + -0.003338151378557086, + -0.01093754917383194, + 0.026942528784275055, + 0.017240425571799278, + 0.006683282554149628, + 6.783619028283283e-5, + -0.006892680190503597, + -0.013073408044874668, + 0.0076081231236457825, + 0.002647138200700283, + 0.0060376389883458614, + -0.0024848550092428923, + -0.0007800071034580469, + -1.1737733075278811e-5, + -0.0022248525638133287, + -0.022656850516796112, + 0.014148317277431488, + 0.019711321219801903, + 0.00938800536096096, + 0.01795237883925438, + 0.008710952475667, + 0.0013637037482112646, + 0.007964099757373333, + 0.021135225892066956, + -0.03127008303999901, + 0.008955249562859535, + -0.0021166636142879725, + 0.019013328477740288, + 0.022656850516796112, + -0.009967339225113392, + 0.0013357839779928327, + -0.002221362665295601, + 0.008683032356202602, + -0.01355502288788557, + -0.008773771114647388, + 0.008557393215596676, + 0.012270716018974781, + -0.018720170482993126, + 0.01795237883925438, + 0.01056063361465931, + 0.010127877816557884, + -0.0022876719012856483, + 0.03294526785612106, + 0.018245534971356392, + -0.007314966060221195, + 9.461075933359098e-6, + 0.015467523597180843, + 0.022670811042189598, + 0.01802217774093151, + -0.003779631806537509, + 0.02695648744702339, + -0.02156798169016838, + 0.024373913183808327, + 0.005029039457440376, + 0.0017336399760097265, + -0.005576963536441326, + 0.011272585950791836, + 0.004861521068960428, + 0.01323394663631916, + 0.01215903740376234, + -0.0036016437225043774, + 0.006212137173861265, + -0.02639809437096119, + -0.007796581368893385, + -0.001203165389597416, + 0.005706092342734337, + 0.006309856195002794, + -0.023173365741968155, + 0.010002238675951958, + 0.0141622768715024, + -0.01870621182024479, + 0.018999367952346802, + -0.024569351226091385, + 0.006009719334542751, + 0.00959740299731493, + 0.00545830512419343, + -0.026761049404740334, + 0.010476874187588692, + 0.005510654300451279, + -0.008696991950273514, + -0.018985407426953316, + 0.008250276558101177, + -0.005301256664097309, + -0.011195806786417961, + 0.0010120897786691785, + 0.00031693241908214986, + -0.0028530461713671684, + -0.006337775848805904, + -0.008801691234111786, + -0.021037507802248, + -0.005255886819213629, + -0.010700232349336147, + 0.00804785918444395, + 0.027096087113022804, + -0.031158406287431717, + -0.010016199201345444, + -0.014392614364624023, + 0.004561383742839098, + 0.013282805681228638, + 0.00010660752013791353, + 0.022936047986149788, + -0.011440104804933071, + 0.01749170385301113, + -0.01746378280222416, + -0.016598273068666458, + 0.011209766380488873, + -0.0043275561183691025, + 0.0054827346466481686, + -0.007978059351444244, + -0.008983169682323933, + -0.018831849098205566, + -0.003296271665021777, + -0.011782120913267136, + 0.018343254923820496, + 0.004180977586656809, + -0.005999249406158924, + 0.006383145693689585, + 0.001994514837861061, + 0.007650002837181091, + -0.007405705284327269, + 0.007301006466150284, + -0.009764921851456165, + 0.01349918358027935, + -0.01791049912571907, + 0.0004942662781104445, + -0.0051023284904658794, + 0.02959490194916725, + 0.004899910651147366, + 0.02006031759083271, + 0.0019002858316525817, + 0.027068166062235832, + 0.0024237805046141148, + -0.001924715586937964, + 0.009855660609900951, + 0.009785860776901245, + 0.01370858121663332, + 0.004700982477515936, + -0.0146718118339777, + 0.004048359114676714, + 0.000658294593449682, + 0.013520123437047005, + -0.010323315858840942, + 0.02959490194916725, + 0.0071823475882411, + -0.003315466456115246, + -0.02322920598089695, + 0.003083383897319436, + 0.01990675926208496, + -0.01622135564684868, + 0.0018025668105110526, + -0.0033625811338424683, + -0.007698862347751856, + 0.0050848787650465965, + 0.005601393524557352, + -0.01587235927581787, + -0.0015600142069160938, + 0.01952984370291233, + -0.009813780896365643, + -0.012884950265288353, + 0.01057459320873022, + -0.0057828715071082115, + 0.015076647512614727, + -0.022880209609866142, + 0.0277103204280138, + -0.02620265632867813, + 0.0023557262029498816, + -0.008138597942888737, + -0.00715442793443799, + 0.012375415302813053, + -0.004781251773238182, + 0.0412653423845768, + -0.004090238828212023, + -0.01934836432337761, + -0.008347995579242706, + -0.021665701642632484, + 0.026049096137285233, + -0.022559132426977158, + -0.013562003150582314, + 0.008620212785899639, + 0.0006761807017028332, + -0.010113918222486973, + 0.009716061875224113, + 0.017673181369900703, + -0.019362324848771095, + -0.0108258705586195, + 0.0018078017747029662, + -0.012284675613045692, + 0.016053838655352592, + -0.006128378212451935, + 0.007740742061287165, + 0.015327924862504005, + -0.0280174370855093, + -0.008899410255253315, + 0.0016516258474439383, + 0.004899910651147366, + -0.013904019258916378, + -1.1717283996404149e-5, + -0.008327055722475052, + 0.01478349044919014, + 0.0018566612852737308, + 0.006229586899280548, + -0.01266857236623764, + 0.003720302367582917, + -0.005025549326092005, + -0.01606779731810093, + -0.014657852239906788, + -0.006917110178619623, + -0.00942988507449627, + 0.007831481285393238, + -0.015313965268433094, + -0.027514882385730743, + 0.011544803157448769, + -0.017701100558042526, + 0.011307485401630402, + -0.003779631806537509, + 0.013945898972451687, + 0.006829861085861921, + -0.0029490201268345118, + -0.005528104025870562, + -0.0013410189421847463, + -0.004460175056010485, + -0.005001119337975979, + 0.0019002858316525817, + -0.0035196293611079454, + -0.005720052402466536, + -0.004153057932853699, + -0.01697518862783909, + -0.02025575563311577, + -0.011384265497326851, + 0.024653110653162003, + -0.011600642465054989, + 0.012968708761036396, + -0.0013392739929258823, + 0.01323394663631916, + -0.03174471855163574, + 0.013254886493086815, + -0.017031028866767883, + -0.044029396027326584, + 0.011342385783791542, + -0.005531594157218933, + -0.008131617680191994, + 0.0035702339373528957, + 0.030041616410017014, + -0.012717431411147118, + -0.0004920850042253733, + 0.013764421455562115, + 0.0026384133379906416, + -0.018636411055922508, + -0.003807551460340619, + 0.006484354380518198, + -0.0182874146848917, + 0.03439709171652794, + 0.004924340173602104, + -0.03766369819641113, + -0.006299386266618967, + 0.004568364005535841, + 0.01848285272717476, + -0.02190301939845085, + -0.018050096929073334, + 0.017938418313860893, + -0.015006848610937595, + 0.027919718995690346, + -0.02167966030538082, + -0.009764921851456165, + 0.0009396729874424636, + 0.00025956612080335617, + 0.0007036641472950578, + 0.002886200789362192, + -0.010309356264770031, + 2.6283796614734456e-5, + -0.0036156035494059324, + 0.009702102281153202, + 0.003608623519539833, + -0.0033276814501732588, + 0.010651372373104095, + 0.017407944425940514, + 0.006484354380518198, + 0.003968089818954468, + -0.002081763930618763, + -0.015048728324472904, + -0.007670942693948746, + 0.03621187433600426, + -0.00015246783732436597, + 0.014588052406907082, + -0.019543802365660667, + -0.012207896448671818, + -0.011907760053873062, + 0.00545830512419343, + 0.004550914280116558, + -0.01908312737941742, + 0.011007349006831646, + 0.03537428379058838, + 0.0058526708744466305, + -0.020395353436470032, + -0.021972818300127983, + 0.02025575563311577, + -0.006243546959012747, + -0.007838460616767406, + 0.014204156585037708, + 0.013136227615177631, + -0.0005217497237026691, + 0.038557130843400955, + 0.020116157829761505, + -0.027124006301164627, + 0.006920600309967995, + -0.0033765409607440233, + 0.02553258277475834, + 0.0005553406663239002, + 0.007943159900605679, + -0.004289166536182165, + -0.006236567161977291, + -0.00965324230492115, + 0.0028687510639429092, + -0.027054207399487495, + 0.004624203313142061, + -0.006236567161977291, + -0.012193936854600906, + 0.010790971107780933, + -0.01855265349149704, + 0.0287293903529644, + 0.00965324230492115, + 0.0024272704031318426, + -0.007356845773756504, + -0.028575832024216652, + -0.0015617592725902796, + -0.017812781035900116, + 0.010448954068124294, + 0.011558763682842255, + -0.0007276576361618936, + 0.009904519654810429, + -0.0070950984954833984, + -0.005343135911971331, + -0.014155297540128231, + -0.0010347745846956968, + 0.029092347249388695, + -0.008997129276394844, + -0.018650371581315994, + 0.019362324848771095, + 0.010930569842457771, + 0.0006556771113537252, + -0.007342885714024305, + -0.004742862191051245, + -0.019850919023156166, + -0.007936179637908936, + -0.01598403789103031, + -0.0036574830301105976, + 0.009171627461910248, + 0.003479494946077466, + -0.005901530385017395, + 0.019208766520023346, + 0.021372543647885323, + 0.0007097715861164033, + 0.013876100070774555, + -0.00984170101583004, + -0.012857030145823956, + 0.020939787849783897, + 0.006149318069219589, + -0.005060448776930571, + 0.0003191136638633907, + 0.003055464243516326, + -0.01715666614472866, + -0.009632302448153496, + 0.0064424751326441765, + -0.004233327228575945, + 0.028101196512579918, + 0.007217247039079666, + 0.004767291713505983, + -0.01689142920076847, + -0.017393983900547028, + -0.026104936376214027, + 0.008124638348817825, + -0.009730021469295025, + 0.006585563533008099, + 0.01779882051050663, + -0.01559316273778677, + -0.025630300864577293, + 0.03601643815636635, + -0.008690012618899345, + -0.015327924862504005, + 0.0016490083653479815, + -0.014259995892643929, + 0.015188327059149742, + 0.010386135429143906, + -0.00500460946932435, + 0.0012354474747553468, + -0.009555523283779621, + 8.899410022422671e-5, + -0.0027623071800917387, + -0.004135608207434416, + -0.006547173950821161, + -0.010197676718235016, + 0.03012537583708763, + -0.011824000626802444, + -0.00015584874199703336, + -0.001430885517038405, + 0.0141622768715024, + -0.016598273068666458, + -0.010532713495194912, + 0.022684771567583084, + -0.004481114912778139, + -0.016919348388910294, + 0.004345006309449673, + 0.030907128006219864, + 0.0019421654287725687, + 0.009227466769516468, + -0.003793591633439064, + 0.007503424305468798, + -0.03194015845656395, + 0.04858031123876572, + 0.0071823475882411, + -0.001257259864360094, + 0.011844940483570099, + 0.01892956905066967, + 0.006913620047271252, + -0.001683035516180098, + -0.018692251294851303, + -0.015858400613069534, + 0.006191197317093611, + -0.040930308401584625, + 0.003947149962186813, + -0.003891310654580593, + 0.003509159665554762, + -0.010644392110407352, + 0.017324184998869896, + 0.010330296121537685, + -0.005971329752355814, + -0.015816520899534225, + -0.012661592103540897, + 0.006358715705573559, + -0.011991518549621105, + -0.0054827346466481686, + 0.0009536328725516796, + -0.04090238735079765, + 0.008222357369959354, + 0.025783859193325043, + 0.01946004293859005, + 0.013680662028491497, + 0.01622135564684868, + 0.01435073558241129, + -0.012019438669085503, + -0.01129352580755949, + -0.016123637557029724, + 0.033280305564403534, + -0.00016817267169244587, + 0.01957172155380249, + -0.015160406939685345, + 0.0010356470011174679, + 0.011796080507338047, + -0.01276629138737917, + -0.006767041515558958, + -0.017449824139475822, + -0.0042647370137274265, + 0.008180477656424046, + 0.01225675642490387, + 0.0071823475882411, + -0.009527604095637798, + -0.020339515060186386, + 0.005559513811022043, + -0.016151556745171547, + -0.013324685394763947, + 0.00017100827244576067, + 0.0033172115217894316, + -0.010295395739376545, + -0.0059050205163657665, + 0.03604435548186302, + 0.019055208191275597, + 0.004788231570273638, + -0.010002238675951958, + 0.0009798075770959258, + -0.025686141103506088, + -0.022489333525300026, + -0.011775141581892967, + 0.007803561165928841, + -0.0032369422260671854, + 0.01261273305863142, + -0.02119106613099575, + 0.032861508429050446, + -0.04073486849665642, + 0.01112600788474083, + -0.006781001575291157, + -0.015621081925928593, + 0.022503292188048363, + 0.017240425571799278, + 0.0076918825507164, + -0.00816651713103056, + 0.025839699432253838, + 0.015579203143715858, + -0.002549419179558754, + -0.031242163851857185, + 0.010763050988316536, + -0.009367065504193306, + 0.0001510500442236662, + -0.009290286339819431, + 0.01298964861780405, + -0.0005418170476332307, + -0.013296766206622124, + 0.026035137474536896, + 0.0072381868958473206, + -0.005008099600672722, + -0.011251646094024181, + 0.006041129119694233, + -0.015132486820220947, + -0.004624203313142061, + -0.016542432829737663, + 0.01817573606967926, + -0.00494877016171813, + -0.015788599848747253, + -0.02172154001891613, + 0.0010696741519495845, + 0.02579781971871853, + -0.00903202872723341, + -0.014085497707128525, + 0.018580572679638863, + 0.02232181467115879, + -0.03674234822392464, + 0.011216746643185616, + 0.03073960915207863, + -0.0016053838189691305, + -0.012982669286429882, + -0.006152807734906673, + -0.025895537808537483, + 0.011935679242014885, + 0.019557762891054153, + 0.0025563992094248533, + -0.02646789327263832, + 0.0018688761629164219, + -0.0011761181522160769, + 0.0048021916300058365, + 0.011363325640559196, + -0.009339145384728909, + 0.0001999095402425155, + 0.024569351226091385, + -0.005636292975395918, + 0.02824079431593418, + -0.003992519807070494, + -0.0023679411970078945, + -0.0022737120743840933, + 0.005165148060768843, + -0.004837091080844402, + -0.03811041638255119, + -0.028143076226115227, + 0.0012686022091656923, + 0.01915292628109455, + -0.004160038195550442, + -0.008536454290151596, + -0.016863510012626648, + -0.008794710971415043, + -0.0036574830301105976, + -0.0001658823894103989, + 0.009688141755759716, + 0.007950140163302422, + 0.01606779731810093, + 0.015467523597180843, + -0.0027623071800917387, + 0.005908510182052851, + 0.01164950244128704, + -0.02511378563940525, + -0.009220486506819725, + -0.01462993212044239, + -0.00441131554543972, + 0.02353632263839245, + -0.013603882864117622, + -0.007670942693948746, + -0.010707211680710316, + -0.0200184378772974, + 0.016919348388910294, + -0.005524614360183477, + -0.01412039715796709, + -0.0008764173835515976, + 0.009052968584001064, + 0.020185956731438637, + 0.017184587195515633, + 0.017547542229294777, + 0.018078017979860306, + 0.008710952475667, + -0.02006031759083271, + 0.0014832350425422192, + -0.002928080502897501, + -0.010749091394245625, + 0.034229572862386703, + -0.010763050988316536, + 0.01768714189529419, + 0.00771980220451951, + 0.015202286653220654, + -0.002107938751578331, + 0.0051581677980721, + 0.0011639032745733857, + -0.0025651240721344948, + -0.024722909554839134, + -0.005887570790946484, + -0.01027445588260889, + 0.0021166636142879725, + 0.007067178841680288, + -0.01140520442277193, + 0.0008406452834606171, + -0.012815150432288647, + 0.00110282888635993, + -0.000480742659419775, + 0.009625323116779327, + 0.0024272704031318426, + 0.0038948007859289646, + -0.009408945217728615, + 0.03032081387937069, + -0.0007747721974737942, + 0.009576463140547276, + 0.00020852539455518126, + 0.006404085550457239, + 0.014148317277431488, + 0.014602012932300568, + -0.0035702339373528957, + 0.00035793951246887445, + -0.01081889122724533, + -0.004278696607798338, + -0.007328926119953394, + -0.005378035828471184, + -0.013303745537996292, + -0.03149344027042389, + 0.025016067549586296, + 0.0043101063929498196, + -0.010058078914880753, + 0.010330296121537685, + -0.02160986140370369, + -0.002376666059717536, + -0.019711321219801903, + -0.016305115073919296, + -0.01462993212044239, + -0.019711321219801903, + 0.008836590684950352, + -0.007915239781141281, + 0.019850919023156166, + 0.006697242613881826, + 0.023438602685928345, + 0.0006761807017028332, + -0.005461794789880514, + -0.005653742700815201, + -0.0012633672449737787, + 0.01050479430705309, + 0.01010693795979023, + 0.0034027155488729477, + -0.013715561479330063, + 0.019013328477740288, + 0.013987778685986996, + 0.011174866929650307, + 0.006117908284068108, + 0.0066274432465434074, + -0.0026261985767632723, + 0.003985539544373751, + 0.01697518862783909, + -0.02518358640372753, + -0.013931939378380775, + 0.0362677127122879, + -0.03191223740577698, + 0.0017039752565324306, + -0.024038877338171005, + 0.017938418313860893, + -0.0008895047940313816, + 0.00630636652931571, + -0.012961729429662228, + 0.0034986897371709347, + 0.009792841039597988, + -0.0023417663760483265, + -0.004173997789621353, + -0.009702102281153202, + -0.007859400473535061, + 0.01802217774093151, + -0.004247287288308144, + 0.007119528017938137, + 0.020381394773721695, + -0.005248907022178173, + 0.0022300875280052423, + -0.018831849098205566, + 0.014825370162725449, + -0.002252772217616439, + 0.002303376793861389, + -0.007978059351444244, + 0.013485223986208439, + -0.015132486820220947, + -0.008424774743616581, + 0.008710952475667, + 0.007517383899539709, + 0.00804785918444395, + -0.01704498752951622, + -0.0028268713504076004, + -0.01700310781598091, + 0.00892035011202097, + -0.0012799445539712906, + 0.012291655875742435, + 0.004861521068960428, + 0.015746720135211945, + -0.00065742211882025, + -0.0026680780574679375, + -0.007663962431252003, + -0.003254392184317112, + -0.02643997222185135, + -0.006781001575291157, + -0.01231259573251009, + 0.005049978848546743, + 0.0010722916340455413, + -0.018468894064426422, + 0.00472192233428359, + 0.00418446771800518, + -0.004858030937612057, + 0.021540062502026558, + 0.0064424751326441765, + -0.014148317277431488, + -0.005636292975395918, + -0.00607951870188117, + -0.015341885387897491, + -0.02511378563940525, + -0.003776141908019781, + -0.009611362591385841, + 0.0108258705586195, + -0.03163304179906845, + -0.023843439295887947, + -0.01764526218175888, + -0.011132987216114998, + -0.006145827937871218, + 0.010337275452911854, + 0.0029402952641248703, + 0.0108258705586195, + -0.005720052402466536, + 0.03375494107604027, + -0.007922220043838024, + 0.022489333525300026, + -0.01553732343018055, + 0.00033634534338489175, + -0.00582475122064352, + 0.0015495443949475884, + -0.010797951370477676, + -0.0027239175979048014, + 0.01813385635614395, + 0.002490089973434806, + -0.009045988321304321, + 0.009988279081881046, + 0.0108258705586195, + -0.013247906230390072, + 0.010113918222486973, + -0.0021986777428537607, + 0.007091608364135027, + -0.025630300864577293, + -0.013785360381007195, + 0.02066059224307537, + 0.018762050196528435, + 0.02006031759083271, + 0.01689142920076847, + 0.0004611116019077599, + 0.018427014350891113, + 0.0052698468789458275, + -0.0008375915349461138, + 0.015997998416423798, + -0.006093478295952082, + 0.00965324230492115, + -0.031465522944927216, + -0.025239424780011177, + -0.0028792209923267365, + 0.0027815019711852074, + -0.037384502589702606, + -0.009681162424385548, + -0.005744481924921274, + -0.009674182161688805, + 0.015048728324472904, + -0.010295395739376545, + 0.010742111131548882, + -0.020269716158509254, + 0.021805299445986748, + 0.0027657970786094666, + 0.02006031759083271, + -0.001669075689278543, + -0.024555392563343048, + -0.0004641653213184327, + -0.006850800942629576, + 0.015509403310716152, + -0.01746378280222416, + 0.0019177356734871864, + 0.031158406287431717, + 0.027207765728235245, + 0.003463790053501725, + 0.011139967478811741, + -7.088990969350561e-5, + -0.010141837410628796, + 0.0014666577335447073, + -0.007203287445008755, + -0.02726360410451889, + -0.002336531411856413, + -0.0013148442376405, + -0.011998498812317848, + 0.0004942662781104445, + -0.025700099766254425, + 0.011119027622044086, + -0.005367565900087357, + -0.006889190524816513, + 0.010476874187588692, + 0.000742926262319088, + -0.012026418931782246, + 0.00028748586191795766, + -0.017254386097192764, + 0.014853290282189846, + 0.00959740299731493, + 0.043303482234478, + 0.029846178367733955, + -0.004023929592221975, + -0.00014297949383035302, + 0.002380155958235264, + -0.04397355765104294, + 0.004774271976202726, + -0.019432123750448227, + 0.0024255255702883005, + -0.010846810415387154, + 0.018762050196528435, + -0.01148198451846838, + 0.006669322494417429, + 0.01957172155380249, + -0.013296766206622124, + 0.021107306703925133, + -0.0172683447599411, + -0.007503424305468798, + -0.0047952113673090935, + 0.017212506383657455, + -0.010860770009458065, + -0.03300110623240471, + 0.010651372373104095, + 0.017882579937577248, + 0.02232181467115879, + 0.004767291713505983, + 0.012089237570762634, + -0.005758441984653473, + -0.018915608525276184, + -0.0032020427752286196, + 0.01832929439842701, + -0.0007826245855540037, + -0.013938919641077518, + 0.016528472304344177, + -0.009618342854082584, + 0.006445964798331261, + 0.003453320125117898, + 0.006990399211645126, + 0.01025351695716381, + 0.002713447669520974, + -0.0032055326737463474, + -0.02925986424088478, + 0.017338145524263382, + 0.0019194806227460504, + -0.03001369722187519, + -0.009318205527961254, + 0.0240947175770998, + -0.006868250668048859, + 0.0164028350263834, + -0.007102078292518854, + -0.007677922490984201, + -0.006013209465891123, + -0.023745721206068993, + 0.015006848610937595, + -0.025616342201828957, + 0.017114786431193352, + 0.01629115641117096, + -0.033699098974466324, + -0.011412184685468674, + 0.006599523592740297, + 0.0024115657433867455, + 0.005252397153526545, + 0.007768661715090275, + 0.017924459651112556, + 0.0035318443551659584, + 0.02322920598089695, + 0.01027445588260889, + 0.011754201725125313, + 0.026635410264134407, + 0.007084628567099571, + 0.026858769357204437, + -0.02096770890057087, + -0.005912000313401222, + 0.00984170101583004, + -0.022014698013663292, + 0.001599276321940124, + 0.009716061875224113, + -0.02745904214680195, + -0.02145630307495594, + 0.011614602990448475, + 0.020339515060186386, + -0.001963105285540223, + 1.5445821190951392e-5, + 0.0014404829125851393, + -0.023620082065463066, + 0.018496813252568245, + -0.00605159904807806, + 0.013101328164339066, + -0.0019282054854556918, + -0.008780751377344131, + 0.019166886806488037, + 0.0029193556401878595, + -0.0055699837394058704, + 0.013541063293814659, + 0.01897144876420498, + -0.008292156271636486, + 0.0007381275645457208, + 0.02764052152633667, + -0.0024551902897655964, + 0.017477743327617645, + -0.010079017840325832, + 0.0070811384357512, + -0.002430760534480214, + 0.011754201725125313, + 0.00048641383182257414, + -0.035653479397296906, + 0.005856161005795002, + -0.017407944425940514, + 0.007224227301776409, + 0.029762418940663338, + -0.014853290282189846, + 0.031884316354990005, + 0.0055001843720674515, + -0.002575594000518322, + -0.02070247009396553, + 0.020227836444973946, + 0.017547542229294777, + 0.007880340330302715, + 0.014811410568654537, + 0.01252199336886406, + -0.003751712152734399, + -0.010679292492568493, + 0.00989754032343626, + -0.009834720753133297, + 0.013520123437047005, + 0.004833601415157318, + -0.0011534333461895585, + 0.021260865032672882, + -0.0002558580308686942, + -0.0035196293611079454, + 0.015006848610937595, + -0.006739121861755848, + -0.006316836457699537, + 0.008724912069737911, + -0.005224477034062147, + -0.0007848058012314141, + 0.006152807734906673, + 0.007342885714024305, + -0.018245534971356392, + -0.024918347597122192, + 0.00545830512419343, + 0.01328978594392538, + 0.033699098974466324, + -0.011286546476185322, + 0.030795449391007423, + -0.008096718229353428, + -0.004823131486773491, + 0.028087235987186432, + 0.0042821867391467094, + 0.0017214250983670354, + 0.004236817359924316, + 0.002278947038576007, + -0.006076028570532799, + 0.00044933296157978475, + 0.006665832828730345, + -0.004292656667530537, + -0.026426013559103012, + 0.027849918231368065, + 0.021163146942853928, + -0.004837091080844402, + -0.007049728650599718, + -0.0040274192579090595, + 0.00774772185832262, + 0.024764789268374443, + 0.004285676870495081, + -0.020604752004146576, + -0.004885950591415167, + -0.021037507802248, + -0.0038948007859289646, + 0.007032278925180435, + 0.009939420036971569, + -0.00801295880228281, + -0.013478243723511696, + -0.006693752482533455, + -0.0010129623115062714, + -0.01150292344391346, + -0.00300311460159719, + -0.019557762891054153, + -0.005814281292259693, + 0.008138597942888737, + 0.021023547276854515, + 0.008669072762131691, + 0.003456810023635626, + 0.0067879813723266125, + 0.018413053825497627, + -0.0016778005519881845, + 0.003268352011218667, + -0.002502304734662175, + -8.048731251619756e-5, + -0.003270097076892853, + 0.0006901405286043882, + 0.01866433210670948, + 0.0056851524859666824, + -0.020004477351903915, + 0.005098838359117508, + 0.011007349006831646, + 0.0020259246230125427, + 0.019069166854023933, + -0.04014855623245239, + 0.00463816337287426, + 0.005995759274810553, + -3.211858347640373e-5, + -0.00021299690706655383, + -0.0063203261233866215 + ], + "48346ec0-5a70-4849-95c6-46a53791dbda": [ + 0.0011698724702000618, + -0.009851557202637196, + -0.012564525008201599, + 0.01677796058356762, + -0.04192216694355011, + -0.012087102979421616, + 0.018248116597533226, + -0.005861676763743162, + -0.035677794367074966, + 0.01879374124109745, + 0.0028910532128065825, + 0.0518343485891819, + -0.013549680821597576, + -0.021794676780700684, + -0.011549056507647038, + 0.017247803509235382, + -0.041952479630708694, + 0.043771229684352875, + -0.0021086123306304216, + 0.014913742430508137, + 0.05844246968626976, + -0.012526634149253368, + -0.04380154237151146, + 0.015065304934978485, + -0.010450229048728943, + -0.017247803509235382, + 0.0063428874127566814, + -0.0019305263413116336, + -0.04528685286641121, + 0.0065437075681984425, + 0.03005482815206051, + -0.008540542796254158, + 0.005509294103831053, + 0.003669705241918564, + 0.03200998529791832, + -0.0334346704185009, + -0.033343732357025146, + 0.07741808891296387, + -0.03149467334151268, + -0.005172067787498236, + -0.020036552101373672, + -0.007585699204355478, + 0.02863014116883278, + 0.02617483027279377, + -0.06771808862686157, + 0.03776935487985611, + 0.0039027323946356773, + -0.03558685630559921, + 0.02747826837003231, + 0.007210582494735718, + 0.0038345293141901493, + -0.04125529155135155, + -0.01483796164393425, + 0.019339365884661674, + 0.02371951937675476, + 0.009321088902652264, + 0.011708197183907032, + 0.0548049733042717, + -0.016929522156715393, + -0.00014303703210316598, + 0.004239958710968494, + -0.01677796058356762, + -0.009449916891753674, + 0.018808897584676743, + -0.001378270797431469, + -0.012746400199830532, + 0.019809208810329437, + -0.007479605730623007, + -0.05147060006856918, + -0.01574733667075634, + 0.01490616425871849, + 0.0530165359377861, + -0.01709624193608761, + 0.006513395346701145, + -0.013019212521612644, + 0.008229839615523815, + 0.04380154237151146, + -0.01379975862801075, + 0.008351089432835579, + -0.012632728554308414, + 0.0028948422987014055, + 0.00894218310713768, + -0.00022710682242177427, + -0.0039747245609760284, + 0.044741228222846985, + -0.00290052592754364, + -0.06420184671878815, + -0.055502161383628845, + -0.003434783546254039, + -0.025902017951011658, + 0.014390852302312851, + -0.01357999350875616, + 0.02249186299741268, + -0.044801853597164154, + -0.007987339980900288, + 0.012124993838369846, + 0.07759996503591537, + -0.01088218204677105, + -0.005903356242924929, + -0.0223554577678442, + -0.01001069787889719, + 0.0050280834548175335, + -0.05726028233766556, + 0.008055542595684528, + -0.008616323582828045, + -0.01192038506269455, + 0.008866402320563793, + -0.019096866250038147, + -0.014474211260676384, + 0.10075870156288147, + 0.03446529433131218, + -0.0020669326186180115, + -0.0011073530185967684, + 0.05034903809428215, + -0.03825435787439346, + -0.08069183677434921, + -0.004634021315723658, + -0.025447331368923187, + 0.03689029440283775, + -0.033919669687747955, + 0.004660544451326132, + 0.05941247195005417, + 0.01982436515390873, + -0.00018933461979031563, + -0.007381089963018894, + 0.01561092957854271, + -0.01243569701910019, + -0.00571769243106246, + 0.005050817970186472, + 0.03973966836929321, + -0.02546248771250248, + 0.015178976580500603, + -0.007472027558833361, + 0.03137342259287834, + 0.0007606539293192327, + 0.015376008115708828, + 0.027447955682873726, + 0.05735122039914131, + -0.04537779092788696, + 0.03707217052578926, + -0.048439349979162216, + -0.026584049686789513, + -0.05131903663277626, + 0.0035655060783028603, + -0.029327329248189926, + 0.004224802367389202, + -0.03258592262864113, + 0.06156465783715248, + -0.0029251547530293465, + -0.011223197914659977, + -0.035344358533620834, + -0.02009717747569084, + 0.051925286650657654, + 0.01347390003502369, + 0.03331341966986656, + 0.014360539615154266, + -0.017156867310404778, + 0.017005303874611855, + 0.025902017951011658, + 0.01620202325284481, + 0.02397717535495758, + -0.059260908514261246, + 0.015959523618221283, + 0.0005044186837039888, + 0.03843623027205467, + 0.005592653527855873, + 0.03131279721856117, + 0.02253733202815056, + -0.043255917727947235, + 0.02255248837172985, + 0.02338608168065548, + -0.011314135044813156, + 0.002760330680757761, + -0.007051441818475723, + 0.025053268298506737, + -0.04164935275912285, + 0.02494717575609684, + 0.013701243326067924, + 0.006592965684831142, + -0.040921855717897415, + 0.0028436901047825813, + -0.034253109246492386, + -0.00756675424054265, + -0.020263895392417908, + 0.002709178254008293, + 0.029751703143119812, + 0.02105202153325081, + -0.005766950082033873, + 0.020703427493572235, + 0.025507956743240356, + 0.008040386252105236, + 0.0032453304156661034, + 0.008752729743719101, + 0.019278740510344505, + -0.003802322316914797, + -0.03364685922861099, + 0.007362144999206066, + 0.017520615831017494, + -0.02002139575779438, + 0.01689920946955681, + 0.002783064963296056, + -0.041103728115558624, + -0.053107473999261856, + 0.04968216270208359, + -0.029145454987883568, + 0.001975995022803545, + -0.015050148591399193, + 0.007028707303106785, + 0.04067935422062874, + -0.04686310142278671, + 0.04749966412782669, + -0.025902017951011658, + 0.02856951765716076, + -0.03595060855150223, + -0.030085140839219093, + 0.014815227128565311, + -0.014474211260676384, + 0.016505148261785507, + 0.011844603344798088, + -0.01367093063890934, + -0.006172379944473505, + -0.004804528784006834, + 0.022400926798582077, + -0.03313154727220535, + -0.011890072375535965, + 0.0017477042274549603, + -0.056411534547805786, + 0.029903266578912735, + -0.0075932773761451244, + 0.005149333272129297, + 0.06893058866262436, + -0.0015866691246628761, + -0.0135042117908597, + -0.007775152567774057, + -0.024022644385695457, + 0.007244683802127838, + 0.020976239815354347, + 0.030812641605734825, + -0.023795301094651222, + -0.04231622815132141, + 0.005259216297417879, + 0.009950073435902596, + 0.0024344713892787695, + -0.005141755100339651, + 0.04528685286641121, + 0.025219988077878952, + 0.0014265812933444977, + 0.043892476707696915, + 0.04155841842293739, + -0.029251547530293465, + -0.0011736615560948849, + 0.012071947567164898, + -0.005194802302867174, + -0.01905139721930027, + -0.04225560277700424, + 0.054198723286390305, + -0.005819997284561396, + -0.034313734620809555, + -0.0027716979384422302, + -0.03907279297709465, + -0.004251325968652964, + 0.001663397648371756, + 0.0326465480029583, + 0.006418668664991856, + 0.02766014263033867, + -0.017657022923231125, + 0.033010296523571014, + -0.041497793048620224, + 0.0068619889207184315, + 0.048045288771390915, + -0.03149467334151268, + -0.021158114075660706, + -0.02035483345389366, + -0.017899522557854652, + -0.02279498800635338, + -0.00028015367570333183, + 0.05386528745293617, + 0.0031430257949978113, + 0.01709624193608761, + -0.0010903022484853864, + -0.0016946573741734028, + -0.024507643654942513, + -0.0026826548855751753, + 0.0210671778768301, + -0.02403780072927475, + 0.011223197914659977, + -0.013663352467119694, + 0.007437925785779953, + -0.040073104202747345, + -0.027250923216342926, + -0.008714839816093445, + 0.0021957606077194214, + 0.015110773965716362, + 0.025750456377863884, + 0.01568671129643917, + -0.0017884366679936647, + -0.005221325438469648, + -0.013148040510714054, + -0.01020015124231577, + -0.002957361750304699, + -0.040012478828430176, + 0.006384567357599735, + 0.001966522540897131, + -0.023871082812547684, + 0.013792180456221104, + -0.01121561974287033, + 0.03064592182636261, + 0.05447153374552727, + -0.019399991258978844, + -0.024325769394636154, + 0.03137342259287834, + 0.0006735055358149111, + 0.00894218310713768, + -0.007919136434793472, + -0.006846832577139139, + 0.018051084131002426, + 0.022840457037091255, + -0.009722729213535786, + -0.024583425372838974, + -7.696529064560309e-5, + 0.018157178536057472, + 0.010829134844243526, + -0.0601399689912796, + 0.010836713016033173, + 0.013307181186974049, + -0.033010296523571014, + 0.031979672610759735, + 0.0005257321754470468, + -0.01996077224612236, + -0.020203271880745888, + -0.012700931169092655, + -0.016626397147774696, + -0.005698747001588345, + -0.040467169135808945, + -0.030827797949314117, + -0.05462309718132019, + -0.03143404796719551, + -0.025219988077878952, + 0.017247803509235382, + -0.05398653447628021, + -0.020657958462834358, + 0.00803280808031559, + -0.023340612649917603, + 0.0030615609139204025, + 0.016762804239988327, + -0.013958899304270744, + -0.029509203508496284, + 0.03558685630559921, + -0.014133196324110031, + 0.0027205455116927624, + 0.0009576850570738316, + -0.01062452606856823, + 0.01847545988857746, + 0.008449604734778404, + 0.05765434727072716, + -0.027508581057190895, + -0.018839210271835327, + -0.042922478169202805, + 0.024795612320303917, + 0.0034082599449902773, + -0.008479917421936989, + -0.014133196324110031, + -0.02396201901137829, + -0.03103998489677906, + -0.009866713546216488, + 0.01756608486175537, + -0.020945927128195763, + -0.01101101003587246, + 0.025113893672823906, + 0.02170373871922493, + -0.004520349204540253, + 0.020521553233265877, + 0.02837248519062996, + -0.029918422922492027, + -0.029842641204595566, + -0.009017963893711567, + 0.05428966134786606, + -0.02014264650642872, + -0.033525608479976654, + 0.013534524478018284, + -0.020627645775675774, + 0.03240404650568962, + -0.008381402119994164, + -0.008911870419979095, + 0.02650826796889305, + 0.01279944647103548, + -0.00674073863774538, + -0.013019212521612644, + -0.002171131782233715, + 0.004808317869901657, + -0.03895154222846031, + 0.03555654361844063, + -0.03367717191576958, + -0.006509606260806322, + -0.030039671808481216, + 0.011154994368553162, + 0.0024174207355827093, + 0.008464761078357697, + -0.0014227922074496746, + 0.01580796018242836, + 0.0017723330529406667, + 0.003448045114055276, + 0.01588374190032482, + 0.03752685710787773, + 0.026584049686789513, + -0.03667810559272766, + 0.0014190032379701734, + -0.016095928847789764, + -0.016308117657899857, + 0.03267686069011688, + -0.005956403445452452, + 0.009722729213535786, + -0.012655462138354778, + 0.015823116526007652, + 0.053168099373579025, + 0.01348147727549076, + 0.03943654149770737, + 0.01126866601407528, + -0.008616323582828045, + -0.02267373912036419, + 0.024447018280625343, + 0.02035483345389366, + -0.00019430776592344046, + 0.045256540179252625, + 0.004543083719909191, + 0.02378014475107193, + 0.052774038165807724, + 0.019794052466750145, + -0.04170997813344002, + -0.015838272869586945, + 0.010488119907677174, + 0.013269290328025818, + -0.020657958462834358, + -0.012875228188931942, + -0.0244318637996912, + -0.0364052951335907, + -0.015732180327177048, + -0.01905139721930027, + -0.003588240360841155, + -0.0011234565172344446, + 0.010025854222476482, + 0.029494047164916992, + 0.016186866909265518, + 0.004793161526322365, + -0.027099361643195152, + -0.028993891552090645, + -0.028099672868847847, + 0.0011064057471230626, + 0.0014995207311585546, + -0.011639994569122791, + -0.0008331197313964367, + 0.02565951831638813, + -0.044468414038419724, + 0.012253821827471256, + -0.0008350142161361873, + -0.00864663626998663, + 0.01950608380138874, + -0.025113893672823906, + 0.0037360137794166803, + -0.01912717893719673, + -0.0028474789578467607, + -0.011852181516587734, + 0.02728123590350151, + 7.222896965686232e-5, + 0.022067489102482796, + -0.024734986945986748, + -0.013201086781919003, + 0.006373200099915266, + -6.299313099589199e-5, + -0.02675076760351658, + -0.015914054587483406, + 0.0025405650958418846, + -0.019354522228240967, + 0.020248740911483765, + -0.010215307585895061, + 0.01467124279588461, + 0.005532028619199991, + 0.01730842888355255, + 0.02320420742034912, + -0.005710114259272814, + 0.006634645164012909, + -0.011829447001218796, + -0.016217179596424103, + -0.00923772994428873, + 0.051349349319934845, + -0.010988275520503521, + 0.014049836434423923, + -0.022779831662774086, + -0.006426246836781502, + -0.011776400730013847, + 0.026720454916357994, + -0.0011395600158721209, + 0.02955467253923416, + 0.022855613380670547, + 0.010654838755726814, + -0.012420540675520897, + 0.02429545670747757, + -0.019278740510344505, + -0.01982436515390873, + 0.004156599286943674, + -0.0022450184915214777, + -0.03328310698270798, + 0.03188873454928398, + 0.003703806782141328, + 0.007502340245991945, + -0.010912494733929634, + -0.0180056169629097, + -0.006956715136766434, + -0.012700931169092655, + -0.008017652668058872, + -0.007767574395984411, + -0.006020817440003157, + -0.016171710565686226, + -0.011783978901803493, + -0.005854098591953516, + -0.017156867310404778, + -0.03595060855150223, + 0.0180056169629097, + 0.0270084235817194, + 0.0007360250456258655, + 0.01679311692714691, + -0.009593901224434376, + -0.03282842040061951, + 0.019733427092432976, + 0.018763428553938866, + -0.007733472622931004, + 0.0037094904109835625, + -0.0006133542046882212, + -0.014428743161261082, + -0.028266392648220062, + -0.010556322522461414, + 0.013655774295330048, + 0.006843043491244316, + 0.007021129131317139, + 0.03337404504418373, + -0.010450229048728943, + -0.018096553161740303, + 0.0360112339258194, + 0.012890384532511234, + 0.05059153586626053, + -0.0454990416765213, + 0.01885436475276947, + -0.01685374230146408, + -0.023537645116448402, + 0.008464761078357697, + 0.024992644786834717, + -0.01665670983493328, + 0.049469973891973495, + -0.015307804569602013, + 0.011101948097348213, + -0.03931529447436333, + 0.03131279721856117, + -0.006161012686789036, + -0.006267106160521507, + -0.024780455976724625, + -0.04631747677922249, + 0.006418668664991856, + -0.00036280255881138146, + -0.039103105664253235, + -0.02435608208179474, + 0.002855057129636407, + 0.012382649816572666, + 0.02318905107676983, + 0.00932866707444191, + -0.022779831662774086, + -0.006244372110813856, + -0.014004368335008621, + 0.018157178536057472, + 0.014436321333050728, + 0.015285070985555649, + -0.004027771297842264, + -0.012943430803716183, + 0.03498060628771782, + 0.005084919277578592, + -0.03943654149770737, + 0.011677884496748447, + 0.010465385392308235, + 0.020263895392417908, + -0.002163553610444069, + -0.02249186299741268, + 0.006096598692238331, + -0.021158114075660706, + -0.00014528678730130196, + -0.021718895062804222, + 0.006418668664991856, + 0.004330896306782961, + -0.03928498178720474, + -0.015376008115708828, + 0.0019153701141476631, + 0.019202958792448044, + 0.005823786370456219, + 0.020233584567904472, + -0.004323318134993315, + -0.006123121827840805, + -0.019066553562879562, + 0.014716711826622486, + -0.011708197183907032, + -0.007206793408840895, + -0.007850933820009232, + -0.015959523618221283, + 0.01007132325321436, + 0.03367717191576958, + 0.031070297583937645, + -0.03364685922861099, + -0.00913163647055626, + 0.025507956743240356, + 0.004054294899106026, + 0.011647572740912437, + 0.004603708628565073, + 0.011685462668538094, + -0.02767529897391796, + -0.01633843034505844, + 0.01962733455002308, + -0.02981232851743698, + 0.012253821827471256, + -0.012875228188931942, + -0.013860384002327919, + 0.0476815402507782, + 0.033464983105659485, + -0.028721079230308533, + -0.0004130075976718217, + -0.01574733667075634, + 0.038133107125759125, + -0.0039747245609760284, + 0.027296392247080803, + 0.01782374083995819, + 0.01182186882942915, + -0.029842641204595566, + -0.03331341966986656, + -0.0180056169629097, + -0.005202380008995533, + -0.005244059953838587, + 0.01069272868335247, + -0.030236704275012016, + 0.005240270867943764, + -0.002669393317773938, + 0.008858824148774147, + 0.007449293043464422, + 0.010222885757684708, + -0.026523424312472343, + -0.013049525208771229, + 0.006392145063728094, + 0.002862635301426053, + 0.017869209870696068, + -0.006585387513041496, + 0.017975304275751114, + -0.030630765482783318, + 0.012329603545367718, + 0.02702357992529869, + 0.009389292448759079, + -0.019354522228240967, + 0.013420852832496166, + -0.009374136105179787, + 0.017838897183537483, + -0.018505772575736046, + -0.030418578535318375, + 0.0004359787853900343, + -0.00382316205650568, + 0.02041545882821083, + -0.008548120968043804, + 0.034495607018470764, + -0.021082334220409393, + -0.010935229249298573, + 0.009760620072484016, + 0.005467614624649286, + 0.02359827049076557, + 0.01697499118745327, + 0.014716711826622486, + -0.022522175684571266, + 0.031403735280036926, + -0.020900458097457886, + -0.017535772174596786, + 0.023037489503622055, + 0.01010921411216259, + -0.0008752730209380388, + -0.014125618152320385, + 0.013489055447280407, + -0.00533120846375823, + -0.006331520155072212, + -0.02417420595884323, + -0.015156242065131664, + -0.027523735538125038, + -0.034950293600559235, + 0.03122185915708542, + 0.038133107125759125, + -0.00988186988979578, + -0.0016094035236164927, + 0.004296794533729553, + -0.005766950082033873, + -0.013034368865191936, + 0.012155306525528431, + -0.0043612089939415455, + -0.0023151161149144173, + 0.01806624047458172, + -0.00615343451499939, + 0.005899567622691393, + 0.0041300761513412, + -0.010260776616632938, + 0.023886237293481827, + -0.01535327360033989, + -0.012655462138354778, + -0.005691168829798698, + 0.013231399469077587, + -0.01464850828051567, + 0.024719830602407455, + 0.01964249089360237, + -0.007987339980900288, + -0.029175767675042152, + 0.005759372375905514, + 0.005770739167928696, + -0.009995541535317898, + 0.012011322192847729, + 0.009662104770541191, + 0.0014587882906198502, + -0.003213123418390751, + -0.007699371315538883, + -0.003851580200716853, + 0.008601167239248753, + -0.021809833124279976, + -0.013292024843394756, + -0.017778271809220314, + 0.04486247897148132, + -0.0006242477102205157, + -0.03219185769557953, + -0.028978735208511353, + -0.00421343557536602, + 0.003251014044508338, + -0.00901038572192192, + 0.026720454916357994, + -0.0048954663798213005, + 0.031979672610759735, + -0.0066649578511714935, + -0.0044256229884922504, + -2.9779648684780113e-5, + -0.00907101109623909, + -0.029054516926407814, + -0.012193197384476662, + 0.012231087312102318, + 0.025826238095760345, + -0.027190299704670906, + 0.0010173628106713295, + -0.019324209541082382, + 0.025902017951011658, + -0.03252529725432396, + 0.023992331698536873, + 0.013163196854293346, + 0.02766014263033867, + -0.004421833902597427, + 0.0068127308040857315, + 0.037102483212947845, + 0.06511121988296509, + -0.02249186299741268, + 0.007881246507167816, + 0.014246867969632149, + -0.002334061311557889, + 0.003485935740172863, + 0.013337492942810059, + 0.0012001849245280027, + -0.01134444773197174, + 0.007676636800169945, + 0.023370925337076187, + 0.017444835975766182, + 0.002112401183694601, + 0.011912806890904903, + -0.01665670983493328, + -0.044165290892124176, + -0.027296392247080803, + 0.002927049295976758, + 0.03419248387217522, + -0.01182186882942915, + 0.0069301920011639595, + 0.04101279377937317, + 0.020885301753878593, + 0.017475146800279617, + 0.0054789818823337555, + -8.044353307923302e-6, + 0.0024988853838294744, + -0.01865733414888382, + -0.07408371567726135, + 0.003451834199950099, + -0.00691882474347949, + -0.02365889400243759, + -0.01568671129643917, + -0.031070297583937645, + 0.006653590593487024, + -0.0045127710327506065, + 0.04771185293793678, + -0.016308117657899857, + -0.025417018681764603, + -0.002896736841648817, + -0.008798198774456978, + 0.023871082812547684, + -0.013193509541451931, + -0.006293629761785269, + 0.002961150836199522, + -0.007994918152689934, + 0.006051129661500454, + -0.014898586086928844, + -0.02540186233818531, + 0.0050962865352630615, + -0.008101011626422405, + -0.03310123458504677, + 0.021688582375645638, + -0.004899255465716124, + 0.013595149852335453, + -0.040406543761491776, + -0.01796014793217182, + 0.012617572210729122, + 0.01367093063890934, + 0.015315382741391659, + 0.004527927376329899, + 0.0029706235509365797, + -0.024962332099676132, + 0.033343732357025146, + -0.0018234854796901345, + -0.012458431534469128, + -0.019415145739912987, + -0.013102571479976177, + 0.013110149651765823, + -0.016020148992538452, + 0.0009524751221761107, + 0.02391654998064041, + -0.006039762869477272, + 0.016171710565686226, + -0.038193732500076294, + 1.7183981981361285e-5, + 0.03964873030781746, + -0.023749832063913345, + 0.01936967857182026, + 0.035010918974876404, + -0.020824676379561424, + 0.005607809871435165, + -0.021233895793557167, + 0.008116167970001698, + -0.007888824678957462, + 0.030297329649329185, + -0.002129452070221305, + 0.012397806160151958, + -0.03595060855150223, + 0.04067935422062874, + -0.0011916595976799726, + -0.03328310698270798, + -0.00901038572192192, + -0.023477019742131233, + 0.009593901224434376, + -0.012761556543409824, + 0.006358043756335974, + -0.03137342259287834, + 0.003933045081794262, + 0.009904604405164719, + 0.012890384532511234, + -0.019809208810329437, + -0.005941247101873159, + 0.009889448061585426, + -0.030949046835303307, + 0.03213123232126236, + -0.01659608632326126, + 0.004486247897148132, + -0.01723264716565609, + 0.022309988737106323, + 0.02209780178964138, + 0.01911202259361744, + -0.01182186882942915, + -0.015429055318236351, + -0.009730307385325432, + -0.01658092997968197, + -0.01302679069340229, + 0.009298354387283325, + -0.007475816644728184, + 0.02352248877286911, + 0.0023738464806228876, + -0.020779209211468697, + -0.011420228518545628, + 0.015701867640018463, + -0.011101948097348213, + -0.04316497966647148, + -0.026523424312472343, + -0.013443587347865105, + 0.009707572869956493, + -0.029312172904610634, + 0.0057442160323262215, + 0.003673494327813387, + 0.02041545882821083, + -0.010541167110204697, + -0.05016716197133064, + 0.0017675968119874597, + 0.02832701802253723, + -0.0031676546204835176, + -0.01121561974287033, + -0.004842419642955065, + 0.0019437881419435143, + -0.004023982211947441, + -0.0263112373650074, + -0.038314979523420334, + -0.007858511991798878, + -0.011154994368553162, + -0.016050461679697037, + -0.03455623239278793, + -0.010215307585895061, + -0.003703806782141328, + -0.0021313466131687164, + -0.023249676451086998, + -0.02371951937675476, + -0.02449248731136322, + 0.010927651077508926, + -0.030115453526377678, + 0.013132884167134762, + 0.009343823418021202, + 0.0024553113617002964, + 0.033070921897888184, + 0.017702491953969002, + 0.002845584414899349, + 0.005645700264722109, + -0.022112958133220673, + 0.01677796058356762, + 0.0016889737453311682, + 0.021885614842176437, + -0.004315739963203669, + 0.0021483972668647766, + -0.020430615171790123, + 0.02437123842537403, + -0.012753978371620178, + -0.0032737483270466328, + 0.0290848296135664, + 0.007748628966510296, + -0.01156421285122633, + 0.0003630393766798079, + 0.01567155495285988, + 0.0025443541817367077, + -0.009889448061585426, + -0.01477733626961708, + -0.003110818797722459, + 0.004766638390719891, + -0.019324209541082382, + 0.04167966544628143, + -0.01788436621427536, + -0.0022544909734278917, + 0.0035636115353554487, + -0.02903936058282852, + -0.019733427092432976, + -0.020430615171790123, + -0.008335933089256287, + 0.0405581034719944, + -0.019915303215384483, + 0.006721793673932552, + -0.013420852832496166, + 0.008676948957145214, + 0.0447109155356884, + 0.011579369194805622, + 7.246578752528876e-5, + -0.0010088373674079776, + 0.004455935209989548, + -0.00829804316163063, + -0.015989836305379868, + -0.0025822448078542948, + 0.030918734148144722, + -0.017838897183537483, + 0.01930905319750309, + -0.004690857138484716, + 0.0016813956899568439, + 0.002076405333355069, + -0.011261087842285633, + 0.020324520766735077, + -0.006736950017511845, + -0.037284355610609055, + 0.009480229578912258, + -0.04122497886419296, + 0.009381714276969433, + -0.009699995629489422, + -0.002968729007989168, + -0.020324520766735077, + -0.019005928188562393, + -0.016489991918206215, + 0.015186554752290249, + 0.002159764524549246, + -0.013845227658748627, + -0.005338786635547876, + 0.0010344135807827115, + -0.004903044551610947, + -0.02344670705497265, + 0.021809833124279976, + -0.03143404796719551, + -0.01664155349135399, + -0.0011490326141938567, + -0.017975304275751114, + 0.02688717469573021, + 0.002167342696338892, + -0.01996077224612236, + -0.017202334478497505, + -0.01126866601407528, + 0.026856862008571625, + -0.030373109504580498, + 0.016626397147774696, + 0.0165203046053648, + 0.01774795912206173, + -0.012390227988362312, + -0.006395934149622917, + -0.011041322723031044, + -0.011586947366595268, + -0.018778584897518158, + -0.0004163230478297919, + -0.005687380209565163, + -0.01847545988857746, + 0.01703561656177044, + 0.014989524148404598, + 0.033343732357025146, + 0.01007132325321436, + 0.0026144518051296473, + -0.0046302322298288345, + 0.01705077290534973, + -0.007680425886064768, + -0.01865733414888382, + -0.016944678500294685, + -0.009593901224434376, + 0.019839521497488022, + 0.011124681681394577, + 0.002072616247460246, + -0.041952479630708694, + -0.030600452795624733, + 0.008995230309665203, + -0.02791779860854149, + -0.02403780072927475, + -0.014133196324110031, + 0.014208977110683918, + 0.002832322847098112, + 0.01422413345426321, + 0.008184370584785938, + 0.009768198244273663, + 0.007498551160097122, + 0.019339365884661674, + -0.031706858426332474, + -0.012390227988362312, + 0.0010183100821450353, + -0.006539918482303619, + -0.009245308116078377, + -0.02215842716395855, + 0.008896714076399803, + -0.0789337083697319, + -0.03822404518723488, + 0.0027584361378103495, + 0.018611865118145943, + 0.0041300761513412, + 0.006884722970426083, + -0.005926090758293867, + -0.00738866813480854, + 0.0006635592435486615, + 0.00029128402820788324, + 0.004781794734299183, + -0.0039065214805305, + -0.005471403710544109, + 0.03913341835141182, + -0.0015298331854864955, + 0.012223509140312672, + -0.02534123696386814, + 0.011890072375535965, + 0.008040386252105236, + -0.018566397950053215, + 0.007422769907861948, + -0.0029062095563858747, + 0.06359559297561646, + 0.0037739044055342674, + 0.013701243326067924, + 0.04943966120481491, + -0.03901216760277748, + 0.03507154434919357, + 0.013398118317127228, + -0.022643426433205605, + 0.014807648956775665, + -0.01689920946955681, + -0.0050962865352630615, + 0.003110818797722459, + 0.020976239815354347, + -0.021415770053863525, + 0.007691793143749237, + -0.01464850828051567, + 0.03173717111349106, + 0.03110061027109623, + 0.008290464989840984, + 0.0027489634230732918, + -0.011253509670495987, + -0.010344135574996471, + -0.007203004322946072, + -0.019854677841067314, + 0.005406989715993404, + -0.020476084202528, + 0.00451656011864543, + 0.004967458546161652, + 0.002500779926776886, + -0.017247803509235382, + 0.01160210371017456, + -0.025932330638170242, + -0.005039450712502003, + 0.004315739963203669, + 0.004141443409025669, + -0.005122810136526823, + -0.008949761278927326, + 0.003230174072086811, + 0.08026745915412903, + 0.02791779860854149, + -0.004918200895190239, + 0.010836713016033173, + 0.012708509340882301, + -0.0008203316247090697, + -0.006320152897387743, + 0.015762493014335632, + 0.03613248094916344, + -0.010768510401248932, + -0.00968483928591013, + 5.183316534385085e-5, + -0.012231087312102318, + 0.03025186061859131, + 0.009912182576954365, + -0.011935541406273842, + 0.037557169795036316, + 0.008828511461615562, + 0.007574332412332296, + 0.0010012593120336533, + -0.010003119707107544, + 0.008805776946246624, + -0.006073864176869392, + -0.027690455317497253, + -0.020961083471775055, + -0.019581865519285202, + 0.019839521497488022, + 0.0004115867195650935, + -0.024007488042116165, + -0.009806089103221893, + 0.003997459076344967, + 0.020809520035982132, + 0.020294208079576492, + 0.01879374124109745, + -0.009169526398181915, + 0.0028152719605714083, + 0.0012560735922306776, + 3.584806472645141e-5, + 0.008957339450716972, + -0.0038799981120973825, + -0.00881335511803627, + -0.010639682412147522, + 0.00459991954267025, + -0.015732180327177048, + -0.014754601754248142, + 0.010927651077508926, + -0.005054607056081295, + 0.015550305135548115, + -0.025295767933130264, + 0.007525074295699596, + 0.0020404092501848936, + 0.009252886287868023, + -0.004183122888207436, + 0.007210582494735718, + -0.007957027293741703, + 0.006073864176869392, + -0.002798221306875348, + -0.016353584825992584, + -0.02241608314216137, + 0.005115231964737177, + -0.011844603344798088, + 0.0244318637996912, + -0.006585387513041496, + -0.05147060006856918, + -0.001267440733499825, + 0.011314135044813156, + -0.010942807421088219, + -0.02227967604994774, + -0.014034681022167206, + -0.006725582759827375, + -0.023310301825404167, + -0.00236437376588583, + -0.021476395428180695, + 0.008714839816093445, + 0.002140819327905774, + 0.028402797877788544, + 0.029190922155976295, + -0.008593589067459106, + 0.012079525738954544, + -0.030570141971111298, + -0.01247358787804842, + 0.021036865189671516, + 0.005926090758293867, + 0.005194802302867174, + -0.012913119047880173, + 0.014474211260676384, + 0.0038383184000849724, + 0.005353942513465881, + -0.009972807951271534, + -0.01723264716565609, + -0.0020801941864192486, + 0.03731466829776764, + 0.019490927457809448, + -0.016702178865671158, + -0.017399366945028305, + -0.011708197183907032, + -0.011677884496748447, + 0.014292337000370026, + 0.000793808198068291, + 0.011132259853184223, + 0.004501404240727425, + 0.0011490326141938567, + 0.02825123630464077, + 0.005903356242924929, + 0.013398118317127228, + -0.028751391917467117, + -0.021294521167874336, + 0.009449916891753674, + -0.023689206689596176, + -0.011488432064652443, + 0.009518120437860489, + -0.006369411014020443, + -0.003190389135852456, + -0.009358979761600494, + 0.004838630557060242, + -0.01846030354499817, + -0.011336869560182095, + -0.0030141978058964014, + 0.00025978745543397963, + 0.02597779966890812, + -0.018354209139943123, + 0.005103864707052708, + -0.010169838555157185, + 0.015042570419609547, + 0.019809208810329437, + 0.02591717429459095, + 0.014974367804825306, + 0.006820308975875378, + -0.004501404240727425, + -0.0062140594236552715, + 0.01467124279588461, + 0.003660232527181506, + -0.018808897584676743, + 0.017399366945028305, + 0.03401060774922371, + 0.004910622723400593, + 0.01522444561123848, + -0.03428342193365097, + -0.02111264504492283, + -0.017187178134918213, + -0.01768733561038971, + -0.01066241692751646, + -0.003055877285078168, + -0.005289528518915176, + -0.0011319818440824747, + 0.003135447623208165, + -0.019778896123170853, + 0.024916863068938255, + 0.013905852101743221, + -0.023931706324219704, + -0.004690857138484716, + -0.010412338189780712, + 0.002273436402902007, + -0.013951321132481098, + 0.009336245246231556, + 0.00936655793339014, + -0.019687959924340248, + -0.025129050016403198, + -0.017338741570711136, + -0.025871705263853073, + 0.01139749400317669, + -0.0007417086162604392, + 0.02785717323422432, + -0.029842641204595566, + 0.000669716449920088, + 0.0021521863527595997, + -0.005475192796438932, + -0.0300699844956398, + -0.019672803580760956, + 0.011450541205704212, + -0.008669370785355568, + 0.005050817970186472, + -0.003895154222846031, + -0.015535148791968822, + -0.01345116551965475, + 0.00597534840926528, + 0.0012721770908683538, + -0.01130655687302351, + 0.014496945776045322, + -0.015489679761230946, + -0.020369989797472954, + -0.03980029374361038, + -0.021021708846092224, + 0.02397717535495758, + 0.015201711095869541, + -0.009836401790380478, + -0.02268889546394348, + -0.030085140839219093, + 0.016186866909265518, + -0.02500779926776886, + -0.0025746666360646486, + -0.02152186445891857, + -0.030873265117406845, + 0.021006552502512932, + 0.014466633088886738, + 0.0024155261926352978, + 0.006206481251865625, + -0.0014341594651341438, + 0.03319217264652252, + 0.001351747428998351, + -0.0005678854649886489, + 0.006301207933574915, + 0.00945749506354332, + -0.03361654654145241, + 0.015732180327177048, + -0.03337404504418373, + -0.010594213381409645, + -0.007051441818475723, + 0.017187178134918213, + -0.015580616891384125, + -0.001334696658886969, + 0.017399366945028305, + -0.009821245446801186, + 0.014171087183058262, + 0.027811704203486443, + 0.011230776086449623, + 0.007286363746970892, + -0.026477955281734467, + 0.007138590328395367, + -0.014201398938894272, + -0.01445147767663002, + -0.01588374190032482, + 0.003648865269497037, + -0.006524762604385614, + -0.006384567357599735, + -0.009987963363528252, + 0.02209780178964138, + -0.003546560648828745, + 0.02370436303317547, + 0.007509917952120304, + 0.026144517585635185, + 0.0018149600364267826, + 0.019718270748853683, + 0.0016112980665639043, + 0.02318905107676983, + 0.0005124704330228269, + -0.008820933289825916, + -0.0017420205986127257, + 0.001131034572608769, + 0.016489991918206215, + 0.019687959924340248, + 0.0020082020200788975, + -0.006301207933574915, + -0.01529264822602272, + -0.015504836104810238, + -0.00019904409418813884, + 0.019869834184646606, + 0.00890429224818945, + 0.0021862878929823637, + -0.013648196123540401, + -0.007699371315538883, + 0.009487807750701904, + -0.009662104770541191, + -0.03046404756605625, + 0.01250389963388443, + 0.03361654654145241, + 0.04401372745633125, + 0.011321713216602802, + 0.011071635410189629, + -0.02061248943209648, + -0.0029725180938839912, + -0.027326704934239388, + 0.010594213381409645, + 0.004702224396169186, + -0.02040030248463154, + 0.004588552284985781, + -0.01943030208349228, + 0.0028057994786649942, + 0.004751482047140598, + -0.023492176085710526, + -0.0065474966540932655, + 0.009427182376384735, + -0.022961707785725594, + -0.01755092851817608, + 0.0050924974493682384, + -0.0016112980665639043, + 0.004346052650362253, + -0.01859670877456665, + 0.019657647237181664, + -0.004664333537220955, + -0.0002747068938333541, + 0.04170997813344002, + -0.019293896853923798, + -0.008661792613565922, + 0.0031070297118276358, + 0.01645967923104763, + -0.006384567357599735, + 0.017854053527116776, + 0.0027148618828505278, + 0.007919136434793472, + 0.0025803502649068832, + -0.005528239533305168, + -0.013723977841436863, + 0.0033400568645447493, + 0.01588374190032482, + 0.03746623173356056, + -0.01964249089360237, + 0.026781080290675163, + -0.029175767675042152, + -0.012102259323000908, + -0.0006886617629788816, + 0.006134489085525274, + -0.01976373977959156, + 0.015277492813766003, + 0.01685374230146408, + 0.0027451743371784687, + 0.010116792283952236, + 0.008040386252105236, + -0.007775152567774057, + -0.009616635739803314, + -0.004133865237236023, + -0.00730530871078372, + -0.005979137495160103, + -0.004224802367389202, + -0.0013337493874132633, + 0.007790308445692062, + 0.008207105100154877, + 0.018748272210359573, + 0.01796014793217182, + 0.0029706235509365797, + -0.00842687115073204, + 0.003527615452185273, + -0.026674985885620117, + -0.006854410748928785, + 0.0036545488983392715, + 0.002017674734815955, + 0.00790398009121418, + 0.028524048626422882, + 0.010404760017991066, + -0.009154370054602623, + -0.005289528518915176, + -0.011314135044813156, + 0.015823116526007652, + 0.0008302779169753194, + -0.015398742631077766, + 0.02144608274102211, + -0.029630454257130623, + 0.017838897183537483, + -0.015595773234963417, + -0.0004996823845431209, + -0.017672179266810417, + 0.01709624193608761, + -0.003527615452185273, + 0.003618552815169096, + -0.020839832723140717, + 0.001344169257208705, + -0.011526321992278099, + 0.024841081351041794, + 0.0145424148067832, + -0.009859135374426842, + -0.0217643640935421, + 0.012428118847310543, + 0.02643248625099659, + 0.0019418935989961028, + -0.015792803838849068, + 0.019021084532141685, + 0.012200775556266308, + 0.029251547530293465, + 0.012663040310144424, + -0.0008681685430929065, + 0.004224802367389202, + -0.004418044816702604, + -0.0006223532254807651, + -0.009654526598751545, + -0.009843979962170124, + 0.012693352997303009, + 0.011086791753768921, + -0.0007601802935823798, + -0.02902420423924923, + 0.027751080691814423, + -0.009101323783397675, + 0.005039450712502003, + -0.00391788873821497, + -0.015201711095869541, + 0.04971247538924217, + -0.006195113994181156, + 0.02126420848071575, + 0.004702224396169186, + 0.008449604734778404, + -0.018581552430987358, + -0.006301207933574915, + -0.0034120490308851004, + 0.0034082599449902773, + 0.00657780934125185, + -0.014997102320194244, + -0.033404357731342316, + 0.02008202113211155, + -0.01924842782318592, + 0.01260241586714983, + 0.03607185557484627, + 0.0223554577678442, + -0.021233895793557167, + 0.025871705263853073, + -0.012700931169092655, + -0.0036791779566556215, + 0.02059733308851719, + -0.018702803179621696, + 0.014678820967674255, + -0.009487807750701904, + 0.011746088042855263, + 0.002030936535447836, + 0.0009681049850769341, + -0.015732180327177048, + 0.014133196324110031, + -0.008479917421936989, + 0.013845227658748627, + 0.025811081752181053, + -0.02637186273932457, + -0.006263317074626684, + -0.005729059688746929, + -0.00657780934125185, + -0.004899255465716124, + -0.029463736340403557, + -0.0046264431439340115, + 0.0047135911881923676, + 0.008010074496269226, + -0.014822805300354958, + -0.003963357303291559, + -0.008078277111053467, + 0.001079882262274623, + -0.008411714807152748, + -0.018551241606473923, + -0.0035295099951326847, + 0.003383631119504571, + 0.013519368134438992, + 0.0028493735007941723, + -0.015535148791968822, + -0.008313198573887348, + 0.009336245246231556, + 0.02073374018073082, + -0.022173583507537842, + 0.002811482874676585, + -0.0202790517359972, + 0.015853429213166237, + 0.01600499264895916, + -0.030115453526377678, + -0.0178085844963789, + -0.002330272225663066, + 0.029009047895669937, + -0.00975304190069437, + -0.015027414076030254, + -0.009343823418021202, + -0.026068737730383873, + 0.009472651407122612, + 0.02009717747569084, + 0.0041793338023126125, + 0.00894218310713768, + 0.014693977311253548, + -0.006877145264297724, + -0.009230151772499084, + 0.0037189628928899765, + 0.019415145739912987, + 0.004077029414474964, + -0.01001069787889719, + -0.0040467167273163795, + 0.004012615419924259, + 0.015444210730493069, + -0.012913119047880173, + 0.004588552284985781, + 0.0018310635350644588, + 0.015959523618221283, + -0.012867650017142296, + 0.0019684170838445425, + -0.009396870620548725, + 0.006922613829374313, + 0.01723264716565609, + 0.014299915172159672, + 0.006600543390959501, + 0.006850621663033962, + -0.0016586612910032272, + -0.022128114476799965, + -0.003715174039825797, + -0.013405696488916874, + 0.017278116196393967, + -0.0014824699610471725, + 0.007949449121952057, + -0.002559510525316, + -0.008502651937305927, + -0.003933045081794262, + -0.010935229249298573, + 0.008586011826992035, + 0.009609057568013668, + -0.01930905319750309, + 0.015489679761230946, + -0.03019123524427414, + 0.07850933820009232, + -0.008593589067459106, + 0.012844915501773357, + -0.0014047942822799087, + 0.014997102320194244, + 0.0067975749261677265, + 0.004300583619624376, + 0.0013337493874132633, + 0.03531404584646225, + 0.00367728341370821, + -0.0025708775501698256, + -0.021673426032066345, + 0.03116123378276825, + 0.0007170797325670719, + -0.020657958462834358, + -0.0150349922478199, + 0.009412026964128017, + -0.0024894129019230604, + 0.009154370054602623, + 0.022264519706368446, + 0.0210671778768301, + -0.002709178254008293, + -0.0060587078332901, + -0.0011566107859835029, + 0.00090890092542395, + 0.0015459366841241717, + -0.0082601523026824, + -0.017444835975766182, + 0.027629829943180084, + 0.014928898774087429, + -0.006467926315963268, + -0.007161324378103018, + -0.010041010566055775, + -0.006361832842230797, + -0.0036621270701289177, + 0.019036240875720978, + 0.0002429735177429393, + 0.022128114476799965, + -0.009616635739803314, + 0.01156421285122633, + 0.0016141398809850216, + -0.014792492613196373, + 0.03234342113137245, + 0.025932330638170242, + -0.020627645775675774, + -0.003341951407492161, + -0.013390540145337582, + -0.008820933289825916, + -0.009214995428919792, + 0.006104176864027977, + -0.0012598626781255007, + -0.01709624193608761, + -0.011026166379451752, + 0.0056153880432248116, + 0.028266392648220062, + 0.009904604405164719, + 0.021006552502512932, + 0.000631352246273309, + -0.0004968405701220036, + -0.0008298042812384665, + -0.008305621333420277, + -0.010889760218560696, + -0.0021237684413790703, + -0.02118842676281929, + -0.01677796058356762, + 0.007699371315538883, + -0.016247492283582687, + 0.0009699995280243456, + -0.011109525337815285, + 0.00832835491746664, + -0.0044256229884922504, + -0.016732491552829742, + 0.02255248837172985, + -0.03122185915708542, + -0.013125305995345116, + 0.0011130365310236812, + 0.004660544451326132, + 0.028463423252105713, + 0.015580616891384125, + -0.017596397548913956, + 0.006805153097957373, + 0.005365309771150351, + -0.012632728554308414, + -0.012087102979421616, + -0.0015771965263411403, + -0.009972807951271534, + 0.011200463399291039, + -0.0015648819971829653, + -0.005713903345167637, + -0.024265144020318985, + -0.019778896123170853, + -0.01345116551965475, + 0.0029630453791469336, + 0.000443793716840446, + -0.0013924797531217337, + -0.01567155495285988, + -0.008722417987883091, + -0.006502028089016676, + -0.0014133196091279387, + -0.00384779111482203, + 0.007767574395984411, + -0.005823786370456219, + 0.00913163647055626, + -0.0056305439211428165, + 0.0025443541817367077, + 0.015209289267659187, + 0.014216555282473564, + 0.012185619212687016, + -0.02825123630464077, + 0.009290776215493679, + 0.004160388372838497, + -0.008010074496269226, + -0.007206793408840895, + -0.00369433406740427, + -0.014421164989471436, + -0.004721169359982014, + 0.0044256229884922504, + 0.004183122888207436, + -0.003059666370972991, + -0.017975304275751114, + 0.00851780828088522, + 0.00032278060098178685, + -0.01944545842707157, + -0.0066763246431946754, + -0.020369989797472954, + 0.007805464789271355, + -0.01267061848193407, + 0.0030388266313821077, + 0.006539918482303619, + 0.010798823088407516, + 0.02378014475107193, + 0.015239601954817772, + 0.0036659161560237408, + -0.004421833902597427, + -0.0015459366841241717, + -0.012647883966565132, + -0.026099050417542458, + 0.03246467188000679, + 0.007540230639278889, + -0.02215842716395855, + 0.013322337530553341, + 0.0041755447164177895, + 0.007320465054363012, + 0.01796014793217182, + 0.020824676379561424, + 0.004039138555526733, + 0.005217536352574825, + -0.01990014687180519, + 0.025704987347126007, + 0.002184393350034952, + 0.023931706324219704, + -0.02599295601248741, + -0.009760620072484016, + -0.008987652137875557, + -0.0053615206852555275, + 0.004221013747155666, + -0.01143538486212492, + 0.02093077078461647, + -0.03149467334151268, + -0.0005063132266514003, + -0.007578121032565832, + -0.012466009706258774, + -0.01292827446013689, + 0.00855569913983345, + 0.0001527465065009892, + 0.019096866250038147, + 0.012071947567164898, + -0.0001988072763197124, + 0.014822805300354958, + -0.006304997019469738, + -0.018429990857839584, + -0.0006592965219169855, + 0.016095928847789764, + -0.019021084532141685, + -0.0022336512338370085, + 0.008919448591768742, + -0.00023918444640003145, + 0.011912806890904903, + -0.010230463929474354, + 0.004743903875350952, + 0.012359915301203728, + 0.007407613564282656, + 0.031024828553199768, + 0.013807336799800396, + 0.012011322192847729, + -0.013549680821597576, + 0.013625461608171463, + -0.005122810136526823, + 0.027887485921382904, + 0.002487518358975649, + -0.012162884697318077, + 0.010700306855142117, + 0.0042475368827581406, + -0.004675700794905424, + 0.0025879284366965294, + -0.009548433125019073, + 0.024280300363898277, + 0.018248116597533226, + 0.010215307585895061, + 0.0011878705117851496, + -0.02702357992529869, + -0.017581241205334663, + 0.017732804641127586, + 0.01742967963218689, + 0.0036280255299061537, + -0.023674050346016884, + -0.01664155349135399, + -4.965741482010344e-6, + -0.0030179868917912245, + 0.0006862935842946172, + -0.040982481092214584, + -0.012996478006243706, + 0.014466633088886738, + 0.006475504487752914, + -0.017126554623246193, + 0.008358667604625225, + 0.0020214638207107782, + 0.02170373871922493, + -0.003745486494153738, + 0.008335933089256287, + 0.00838898029178381, + 0.007115855813026428, + -0.005979137495160103, + -0.008548120968043804, + 0.009518120437860489, + -0.015118352137506008, + -0.006592965684831142, + 0.005899567622691393, + 0.006956715136766434, + -0.01104890089482069, + 0.022067489102482796, + -0.018763428553938866, + -0.009283198975026608, + 0.031009672209620476, + 0.0020025186240673065, + 0.03952747955918312, + 0.015762493014335632, + -0.014064992778003216, + 0.013019212521612644, + 0.01568671129643917, + -0.011890072375535965, + 0.014133196324110031, + -0.006668746471405029, + -0.010760932229459286, + 0.00016387687355745584, + -0.01079124491661787, + 0.00877546425908804, + 0.010230463929474354, + 0.01030624471604824, + -3.15261677314993e-5, + 0.0025500378105789423, + -0.008570855483412743, + -0.016020148992538452, + 0.008479917421936989, + 0.020567020401358604, + 0.022567644715309143, + 0.00691882474347949, + 0.009669682942330837, + -0.006115543656051159, + -0.0360112339258194, + 0.006460348144173622, + 0.006433825008571148, + -0.006736950017511845, + -0.006721793673932552, + -0.00030999252339825034, + -0.0012134466087445617, + -0.026402173563838005, + 0.012814602814614773, + -0.013125305995345116, + -0.001378270797431469, + 0.012761556543409824, + 0.013814914971590042, + 0.0010107319103553891, + 0.0054297237657010555, + -0.0072712074033916, + -0.0010884077055379748, + 0.0075288633815944195, + 0.0025841393508017063, + -0.0178085844963789, + -0.0034461505711078644, + 0.004615075886249542, + -0.011291400529444218, + 0.006274684332311153, + -0.004921989981085062, + -0.0005437302170321345, + -0.00988186988979578, + -0.00014883904077578336, + 0.016732491552829742, + 0.00013912956637796015, + 0.005532028619199991, + -0.009480229578912258, + -0.004016404040157795, + -0.0033097444102168083, + -0.012041634880006313, + 0.015595773234963417, + 0.009055854752659798, + 0.014049836434423923, + -0.0071272230707108974, + 0.021597646176815033, + -0.01139749400317669, + -5.3342868341133e-5, + -0.0017211807426065207, + 0.012655462138354778, + -0.02105202153325081, + -0.001472050091251731, + -0.0021313466131687164, + -0.005963981617242098, + 0.0006578756729140878, + -0.010382026433944702, + 0.010632104240357876, + -0.007479605730623007, + -0.0015430949861183763, + -0.011723353527486324, + -0.022643426433205605, + -0.009518120437860489, + -0.021294521167874336, + 0.011503588408231735, + 0.025932330638170242, + -0.006138278171420097, + 0.00472874753177166, + -0.02008202113211155, + 0.00932866707444191, + 0.023249676451086998, + -0.012844915501773357, + 0.024856237694621086, + -0.015762493014335632, + -0.00499019306153059, + -0.007657691370695829, + -0.01962733455002308, + -0.0064110904932022095, + 0.0013072259025648236, + 0.013163196854293346, + -0.012708509340882301, + -0.008540542796254158, + -0.006373200099915266, + 0.016929522156715393, + -0.009465073235332966, + -0.010510854423046112, + -0.026659831404685974, + 0.009184682741761208, + -0.03276779502630234, + -0.0059488252736628056, + -0.0010723042069002986, + -0.00907101109623909, + -0.0004535031912382692, + 0.020779209211468697, + -0.009639370255172253, + -0.013951321132481098, + -0.0025708775501698256, + 0.0021048232447355986, + -0.024022644385695457, + -0.00524784903973341, + 0.03549591824412346, + 0.0135042117908597, + -0.008123746141791344, + 0.010836713016033173, + 0.012632728554308414, + 0.029979048296809196, + -0.009677261114120483, + -0.007733472622931004, + 0.009510542266070843, + 0.01847545988857746, + -0.0060587078332901, + 0.0012598626781255007, + 0.004008826334029436, + -0.019657647237181664, + 0.031524986028671265, + 0.004986403975635767, + -0.032373733818531036, + 0.03279810771346092, + -0.01289796270430088, + -0.026932643726468086, + -0.009631792083382607, + 0.008692105300724506, + -0.008767886087298393, + 0.024340925738215446, + 0.006513395346701145, + -0.004596130456775427, + -0.0014739446341991425, + -0.008707261644303799, + 0.0033893147483468056, + -0.00014990470663178712, + -0.011965853162109852, + -0.010609369724988937, + 0.012291712686419487, + 0.011223197914659977, + 0.025689831003546715, + 0.01705077290534973, + 0.01664155349135399, + -0.016959834843873978, + 0.002057459903880954, + 0.017338741570711136, + 0.015330539084970951, + -0.004092185292392969, + -0.007642535492777824, + -0.009434760548174381, + -0.015626085922122, + 0.023886237293481827, + 0.005607809871435165, + 0.003114607883617282, + -0.0018850576598197222, + -0.008767886087298393, + 0.009040698409080505, + -0.01551999244838953, + -0.006096598692238331, + -0.007168902549892664, + -0.013254133984446526, + 0.021627958863973618, + 0.02137030102312565, + 0.0025064635556191206, + -0.010154682211577892, + 0.007472027558833361, + -0.010260776616632938, + -0.013170775026082993, + 0.016308117657899857, + -0.011981009505689144, + -0.0135042117908597, + -0.00036469707265496254, + 0.01004858873784542, + -0.01136718224734068, + 0.008184370584785938, + -0.006581598427146673, + 0.003379842033609748, + 0.008351089432835579, + 0.007051441818475723, + -0.01730842888355255, + 0.031524986028671265, + -0.006490660831332207, + -0.007187847979366779, + 0.009184682741761208, + 0.01561092957854271, + -0.03282842040061951, + -0.013420852832496166, + 0.004330896306782961, + -0.026599206030368805, + -0.002495096530765295, + 0.010942807421088219, + 0.0198849905282259, + 0.0027735924813896418, + 0.010844291187822819, + -0.017869209870696068, + 0.004834841471165419, + -0.008411714807152748, + 0.002345428569242358, + 0.0032017561607062817, + -0.0029516781214624643, + -0.010328979231417179, + -0.009252886287868023, + -0.017020460218191147, + -0.02378014475107193, + -0.000772494706325233, + -0.006051129661500454, + 0.0004577658837661147, + 0.0024382604751735926, + -0.008176792412996292, + -0.018126865848898888, + -0.0002285277150804177, + -0.004543083719909191, + 0.006896090228110552, + -0.011336869560182095, + 0.01088218204677105, + 0.002334061311557889, + 0.006922613829374313, + -0.012193197384476662, + 0.007604644633829594, + 0.015277492813766003, + 0.012064369395375252, + 0.010450229048728943, + -0.009571166709065437, + 0.019096866250038147, + -0.0026220299769192934, + 0.013921008445322514, + 0.038981854915618896, + 0.010344135574996471, + 0.012140150181949139, + 0.02468951977789402, + -0.022340301424264908, + -0.003360896836966276, + 0.0009775776416063309, + -0.007085543591529131, + -0.009222573600709438, + -0.009260464459657669, + -0.00485757552087307, + -0.006509606260806322, + 0.026159673929214478, + -0.016489991918206215, + -0.005050817970186472, + 0.0032699592411518097, + -0.0016359268920496106, + 0.010813979431986809, + 0.02035483345389366, + 0.020703427493572235, + 0.005532028619199991, + -0.004615075886249542, + 0.00020579335978254676, + -0.016747647896409035, + 0.014330226927995682, + -0.004993981681764126, + -0.010207729414105415, + -0.006035973783582449, + 0.013405696488916874, + 0.0014171086950227618, + -0.013625461608171463, + -0.010283510200679302, + 0.012352338060736656, + -0.008654214441776276, + -0.0033968929201364517, + 0.008949761278927326, + 0.0013905852101743221, + -0.007138590328395367, + 0.0065474966540932655, + -0.009207417257130146, + -0.028554361313581467, + 0.014148352667689323, + -0.0010003120405599475, + 0.015194132924079895, + -0.007320465054363012, + -0.010601791553199291, + 0.025902017951011658, + -0.0020119911059737206, + 0.006509606260806322, + -0.013170775026082993, + -0.004058083985000849, + 0.010313822887837887, + 0.00800249632447958, + -0.003571189707145095, + 0.00016991568554658443, + 0.005782106425613165, + -0.009404448792338371, + -0.014784914441406727, + -0.019005928188562393, + 0.010609369724988937, + -0.00223554577678442, + -0.03810279443860054, + 0.006619488820433617, + 0.014678820967674255, + 0.003925466910004616, + 0.0022488075774163008, + 0.03843623027205467, + -0.03200998529791832, + 0.022067489102482796, + 0.01402710285037756, + -0.0002900999679695815, + -0.010389604605734348, + -0.01448178943246603, + 0.003612869419157505, + -0.001706971786916256, + 0.00971515104174614, + -0.00031117661274038255, + 0.00045208228402771056, + -0.014686399139463902, + -0.003463201457634568, + 0.00140858325175941, + 0.021885614842176437, + 0.018884677439928055, + -0.022249363362789154, + 0.013746712356805801, + -0.021597646176815033, + -0.0007005025981925428, + 0.007926714606583118, + 0.01768733561038971, + 0.005592653527855873, + -0.010116792283952236, + -0.008434449322521687, + -0.02227967604994774, + 0.006634645164012909, + 0.015065304934978485, + 0.003874314483255148, + 0.023310301825404167, + -0.013686086982488632, + -0.013777024112641811, + 0.0020631435327231884, + -0.006911246571689844, + -0.019536396488547325, + -0.01964249089360237, + -0.001800751080736518, + -0.017778271809220314, + -0.0063466764986515045, + 0.01897561550140381, + -0.006267106160521507, + 0.011329291388392448, + -0.006350465584546328, + -0.003421521745622158, + -0.008661792613565922, + 0.0014881535898894072, + 0.025568580254912376, + 0.004679489880800247, + 0.0038875762838870287, + 0.027644986286759377, + -0.011586947366595268, + 0.02229483239352703, + -0.009927338920533657, + 0.001254179049283266, + 0.004937145859003067, + 0.0025822448078542948, + 0.00903312023729086, + -0.009487807750701904, + 0.009055854752659798, + -0.01814202219247818, + -0.02597779966890812, + -0.01853608526289463, + 0.006657379679381847, + 0.007525074295699596, + -0.012071947567164898, + -0.02229483239352703, + 0.014845539815723896, + -0.0035901349037885666, + 0.014459054917097092, + -0.012238665483891964, + -0.004815896041691303, + 0.004016404040157795, + -0.007051441818475723, + 0.01774795912206173, + 0.0032983773853629827, + 0.0165203046053648, + -0.004281638655811548, + 0.025280611589550972, + -0.015565461479127407, + 0.023810457438230515, + -0.0011319818440824747, + -0.010488119907677174, + 0.006896090228110552, + 0.004095974378287792, + -0.015535148791968822, + -0.01665670983493328, + -0.01049569807946682, + 0.007657691370695829, + 0.012632728554308414, + 0.019460614770650864, + -0.0029024204704910517, + 0.00971515104174614, + 0.0026390806306153536, + -0.009154370054602623, + -0.015550305135548115, + -0.005865465849637985, + -0.007521285209804773, + 0.014428743161261082, + 0.015626085922122, + -0.0042437477968633175, + -0.01658092997968197, + 0.005100075621157885, + -0.0021218738984316587, + -0.015535148791968822, + -0.019991083070635796, + -0.003179021878167987, + -0.011223197914659977, + 0.00945749506354332, + -0.015057726763188839, + 0.015580616891384125, + -0.006505817174911499, + 0.0013706926256418228, + -0.008116167970001698, + -0.028812017291784286, + -6.42364175291732e-5, + 0.023764988407492638, + 0.0013034368166700006, + -0.010889760218560696, + -3.954832209274173e-5, + 0.03828466683626175, + 0.0068619889207184315, + -0.03940622881054878, + 0.0003848264750558883, + 0.010116792283952236, + 0.028887799009680748, + -0.012011322192847729, + 0.002851268043741584, + -0.005838942248374224, + 0.0028474789578467607, + 0.0019475771114230156, + -0.002836111932992935, + 0.012390227988362312, + -0.0036886504385620356, + -0.009654526598751545, + 0.008866402320563793, + -0.007688004057854414, + 0.01273124385625124, + -0.0007800728781148791, + -0.006858199834823608, + 0.01936967857182026, + -0.011617260053753853, + -0.006816519889980555, + 0.0031847055070102215, + 0.0034120490308851004, + -0.026296081021428108, + -1.2033227903884836e-5, + -0.021203583106398582, + 0.012094681151211262, + -0.02922123484313488, + 0.0029289438389241695, + 0.0016330850776284933, + 0.0030786118004471064, + -0.013701243326067924, + 0.0004513718595262617, + -0.015656398609280586, + 0.017596397548913956, + 0.0033097444102168083, + 0.0032055452466011047, + -0.021794676780700684, + -0.017838897183537483, + 0.008267730474472046, + -0.020263895392417908, + 0.008669370785355568, + 0.001275966176763177, + -0.009169526398181915, + -0.002981990808621049, + -0.016050461679697037, + 0.015580616891384125, + 0.020885301753878593, + 0.002044198103249073, + 0.0009415815584361553, + 0.02437123842537403, + -0.014330226927995682, + 0.005255427211523056, + 0.004622654058039188, + -0.017475146800279617, + -0.012678196653723717, + -0.019278740510344505, + 0.0021540808957070112, + -0.014686399139463902, + 0.013201086781919003, + 0.010526010766625404, + -0.010480541735887527, + -0.012253821827471256, + 0.000759233022108674, + -0.0018282217206433415, + -0.030115453526377678, + 0.0020460926461964846, + 0.002508358098566532, + -0.00845718290656805, + 0.0070628090761601925, + 0.036708418279886246, + 0.005956403445452452, + -0.004395310301333666, + 0.003989880904555321, + 0.0039027323946356773, + -0.010541167110204697, + 0.004872731864452362, + 0.006968082394450903, + -0.011806712485849857, + 0.03698123246431351, + -0.011655150912702084, + -0.01847545988857746, + -0.012996478006243706, + 0.0026826548855751753, + 0.005285739433020353, + -0.011389915831387043, + -0.01069272868335247, + 0.0011509271571412683, + -0.022643426433205605, + 0.019354522228240967, + -0.01762671023607254, + -0.018172334879636765, + 0.014936476945877075, + -0.017444835975766182, + 0.020915614441037178, + 0.008063120767474174, + -0.011488432064652443, + -0.010760932229459286, + 0.007055230904370546, + 0.035344358533620834, + 0.01470913365483284, + 0.011882494203746319, + -0.00568359112367034, + -0.001979784108698368, + -0.015580616891384125, + 0.0005787790287286043, + -0.0028740025591105223, + -0.017702491953969002, + 0.007585699204355478, + 0.029145454987883568, + 0.008964917622506618, + 0.004433201160281897, + -0.004239958710968494, + -0.01847545988857746, + 0.02650826796889305, + -0.016535460948944092, + 0.003067244542762637, + -0.0012361810076981783, + 0.007589488290250301, + 0.030994515866041183, + 0.005209958180785179, + -0.011185307055711746, + -0.017444835975766182, + -0.0033893147483468056, + -0.009139214642345905, + 0.01079124491661787, + 0.025098737329244614, + 0.008631479926407337, + 0.007767574395984411, + 0.017020460218191147, + 0.01088218204677105, + 0.0031165024265646935, + -0.024310613051056862, + -0.0038421074859797955, + 0.010351713746786118, + 0.008995230309665203, + -0.01705077290534973, + -0.005380466114729643, + -0.010889760218560696, + -0.025477644056081772, + 0.005766950082033873, + -0.021915927529335022, + -0.0073318323120474815, + -0.007248472888022661, + -0.027432799339294434, + 0.02370436303317547, + -0.020779209211468697, + 0.00028157455381006, + -0.0037132794968783855, + 0.006763473153114319, + 0.0014625773765146732, + 0.003921677824109793, + -0.011442963033914566, + -0.018445147201418877, + 0.012488744221627712, + 0.0023871082812547684, + -0.010738197714090347, + -0.014504523947834969, + -0.006475504487752914, + 0.004755271133035421, + 0.0010865131625905633, + 0.0015753019833937287, + 0.01445147767663002, + -0.016217179596424103, + -0.027432799339294434, + 0.0036071857903152704, + -0.00028465318609960377, + 0.010344135574996471, + -0.009184682741761208, + -0.010275932028889656, + -0.015762493014335632, + 0.004149021580815315, + -0.010677573271095753, + 0.002078299643471837, + 0.015338117256760597, + -0.005869254935532808, + -0.005198591388761997, + 0.007278785575181246, + 0.019581865519285202, + 0.019096866250038147, + 0.01600499264895916, + -0.016990147531032562, + -0.007036285474896431, + 0.009965229779481888, + -0.0025746666360646486, + 0.008373823948204517, + -0.011064057238399982, + -0.00011532953067217022, + 0.005342575255781412, + -0.004853786434978247, + 0.02676592394709587, + 0.017793428152799606, + 0.021991707384586334, + -0.0038724199403077364, + -0.013072258792817593, + -0.0016349796205759048, + -0.022400926798582077, + -0.01794499158859253, + 0.006903668399900198, + 0.005766950082033873, + 0.019718270748853683, + 0.011124681681394577, + -0.010450229048728943, + -0.022961707785725594, + 0.010548744350671768, + -0.009275620803236961, + -0.0217643640935421, + -0.0002526829775888473, + -0.0046984353102743626, + -0.01004858873784542, + -0.01370882149785757, + -0.006915035657584667, + 0.018248116597533226, + -0.014459054917097092, + 0.0004651071794796735, + 0.00472874753177166, + 0.016444522887468338, + 0.007896401919424534, + 0.020263895392417908, + 0.010867025703191757, + -0.009790932759642601, + 0.011518744751811028, + 0.001028729951940477, + 0.008502651937305927, + -0.006126910913735628, + 0.0068809338845312595, + 0.029948735609650612, + -0.015914054587483406, + 0.003715174039825797, + 0.006335309240967035, + 0.011511166580021381, + 0.01448178943246603, + 0.016489991918206215, + -0.010162260383367538, + -0.007979761809110641, + -0.004918200895190239, + 0.019081709906458855, + -0.009298354387283325, + -0.00807069893926382, + 0.0006673483294434845, + -0.0013498528860509396, + -0.0019040029728785157, + -0.007574332412332296, + -0.006551285739988089, + -0.00790398009121418, + 0.010632104240357876, + -0.04749966412782669, + -0.02326483279466629, + -0.013223821297287941, + 0.009662104770541191, + -0.02929701656103134, + -0.012352338060736656, + -0.00796460546553135, + 0.0041111307218670845, + -0.002385213738307357, + 0.01234475988894701, + 0.00025007801013998687, + -0.016884054988622665, + 0.010419916361570358, + 0.0012901751324534416, + -0.012261399999260902, + 0.0017571768257766962, + 0.007775152567774057, + 0.004399099387228489, + -0.0007961763767525554, + 0.012466009706258774, + 0.01139749400317669, + -0.00016813956608530134, + -0.009222573600709438, + -0.017535772174596786, + 0.006505817174911499, + 0.006524762604385614, + 0.009275620803236961, + -0.010601791553199291, + -0.00807069893926382, + -0.0015980362659320235, + -0.02281014434993267, + -0.01473944541066885, + -0.0010988275753334165, + 0.005850309506058693, + 0.018869521096348763, + -0.0038913653697818518, + -0.003626130986958742, + -0.005857887677848339, + -0.016277804970741272, + 0.005736637860536575, + 0.005316052120178938, + 0.0056949579156935215, + -0.012496322393417358, + 0.012322025373578072, + -0.013936164788901806, + -0.005891989450901747, + 0.010776088573038578, + 0.0020934559870511293, + 0.006092809606343508, + -0.012723665684461594, + 0.002644764259457588, + -0.010601791553199291, + -0.02579592540860176, + 0.0033987874630838633, + 0.004266482312232256, + -0.015421477146446705, + 0.019672803580760956, + -0.01645967923104763, + 0.025902017951011658, + -0.013769445940852165, + -0.0014644719194620848, + -0.03358623385429382, + -0.017338741570711136, + 0.018369365483522415, + 0.019036240875720978, + 0.025189675390720367, + -0.011079213581979275, + 0.01703561656177044, + 1.9670553228934295e-5, + 0.002027147449553013, + -0.020976239815354347, + 0.023749832063913345, + -0.0169143658131361, + 0.015027414076030254, + -0.007343199569731951, + -0.008911870419979095, + 0.009283198975026608, + -0.011609681881964207, + -0.013701243326067924, + 0.005539606790989637, + 0.005520661361515522, + -0.008047964423894882, + 0.018157178536057472, + -0.01950608380138874, + -2.8210741220391355e-5, + -0.01477733626961708, + -0.008138902485370636, + -0.0016861319309100509, + -0.0217643640935421, + -0.013094993308186531, + 0.00013403802586253732, + 0.028524048626422882, + -0.016808273270726204, + -0.010041010566055775, + 0.014080149121582508, + 0.03849685564637184, + -0.015777649357914925, + -0.0017638077260926366, + 0.01529264822602272, + -0.023310301825404167, + 0.005967770703136921, + -0.019278740510344505, + -0.03537467122077942, + 0.0208701454102993, + 0.026872018352150917, + -0.004008826334029436, + -0.03931529447436333, + -0.0042475368827581406, + -0.009381714276969433, + 0.00546003645285964, + 0.010677573271095753, + 0.009699995629489422, + -0.011981009505689144, + 0.036829669028520584, + 0.010836713016033173, + 0.01846030354499817, + 0.005528239533305168, + -0.011147416196763515, + -0.01276913471519947, + -0.00225259643048048, + 0.00615343451499939, + -0.0360112339258194, + -0.01918780244886875, + 0.0005849362351000309, + -0.0023359558545053005, + 0.003376052947714925, + -0.006339098326861858, + -0.0031638655345886946, + -0.029751703143119812, + -0.007051441818475723, + -0.0007175533683039248, + 0.003055877285078168, + 0.014845539815723896, + 0.0056267548352479935, + 0.014011946506798267, + 0.0022904870565980673, + 0.001131034572608769, + 0.01185975968837738, + -0.008434449322521687, + -0.013867962174117565, + 0.008820933289825916, + -0.01402710285037756, + 0.034253109246492386, + 0.0070665981620550156, + -0.04061872884631157, + -0.010465385392308235, + -0.00958632305264473, + 0.006263317074626684, + 0.013519368134438992, + -0.0022071278654038906, + -0.02247670851647854, + -0.005698747001588345, + 0.026280924677848816, + 0.008639058098196983, + -0.0025197253562510014, + 0.0022810145746916533, + 0.015307804569602013, + -0.028978735208511353, + -0.0026826548855751753, + 0.00816921517252922, + -0.01588374190032482, + 0.018869521096348763, + -0.00855569913983345, + 0.015360851772129536, + -0.00881335511803627, + 0.007017340511083603, + 0.0057442160323262215, + 0.010003119707107544, + 0.010336557403206825, + -0.008737573400139809, + -0.0051644896157085896, + 0.016353584825992584, + -0.010131947696208954, + 0.015792803838849068, + 0.005698747001588345, + -0.019005928188562393, + 0.002072616247460246, + -0.011147416196763515, + 0.01101101003587246, + -0.008176792412996292, + 0.013989211991429329, + 0.012791868299245834, + 0.00877546425908804, + -0.01467124279588461, + 0.010897338390350342, + -0.010147104039788246, + 0.02126420848071575, + 0.005592653527855873, + 0.010707885026931763, + 0.0039065214805305, + 0.008502651937305927, + 0.011639994569122791, + 0.006672535557299852, + 0.0037739044055342674, + 0.007191637065261602, + 0.01049569807946682, + -0.006778629496693611, + -0.0379815436899662, + 0.0007748628850094974, + 0.006831676233559847, + 0.010632104240357876, + 0.0073280432261526585, + 0.00018696645565796643, + -0.022658582776784897, + -0.004846208728849888, + -0.013034368865191936, + -0.011124681681394577, + -0.002635291777551174, + -0.011450541205704212, + 0.006354254670441151, + 0.008335933089256287, + 0.011033744551241398, + 0.009230151772499084, + 0.033010296523571014, + -0.0022147060371935368, + 0.009283198975026608, + -0.016292961314320564, + -0.022901082411408424, + -0.02806936204433441, + 0.010867025703191757, + -0.010844291187822819, + -0.013019212521612644, + 0.015762493014335632, + 0.005819997284561396, + -0.0003673020692076534, + 0.010867025703191757, + 0.020460927858948708, + -0.010579057037830353, + 0.006047340575605631, + 0.00945749506354332, + 0.0016946573741734028, + -0.018399678170681, + 0.03643560782074928, + 0.004050505813211203, + 0.0210671778768301, + 0.0020290419925004244, + -0.005702536087483168, + 0.007104488555341959, + 0.02033967711031437, + -0.005710114259272814, + -0.003285115584731102, + -0.004133865237236023, + -0.009214995428919792, + 0.01379975862801075, + -0.01736905425786972, + -0.0055623408406972885, + 0.02767529897391796, + -0.007422769907861948, + 0.02268889546394348, + -0.0011926068691536784, + -0.011579369194805622, + 0.03128248453140259, + -0.015368429943919182, + 0.027963267639279366, + -0.004774216562509537, + 0.021627958863973618, + -0.015595773234963417, + 0.007297730538994074, + -0.0034063654020428658, + 0.0383756048977375, + -0.017005303874611855, + 0.012753978371620178, + 0.017702491953969002, + 0.016353584825992584, + 0.002174920868128538, + -0.01311772782355547, + -0.005933668930083513, + -0.007911558263003826, + -0.010723041370511055, + 0.01130655687302351, + 0.020657958462834358, + 0.007422769907861948, + 0.006161012686789036, + -0.010025854222476482, + -0.00567222386598587, + 0.0006436666590161622, + -0.005240270867943764, + -0.017854053527116776, + 0.008889135904610157, + -0.017520615831017494, + -0.02896357886493206, + -0.014830383472144604, + 0.014754601754248142, + 0.009851557202637196, + 0.006104176864027977, + -0.011556634679436684, + -0.032949671149253845, + 0.0007203951245173812, + -0.002224178519099951, + 0.01185975968837738, + -0.004747692961245775, + 0.01160210371017456, + 0.000503471412230283, + 0.008123746141791344, + -0.022992020472884178, + -0.01871795952320099, + 0.007509917952120304, + 0.0011736615560948849, + -0.012958587147295475, + 0.0007459713378921151, + 5.698391873920627e-7, + 0.0029024204704910517, + -0.008222261443734169, + 0.02864529751241207, + -0.0023132215719670057, + 0.012132572010159492, + -0.0012807025341317058, + -0.005365309771150351, + -0.008472339250147343, + 0.00800249632447958, + 0.007002184167504311, + -0.00877546425908804, + 0.019915303215384483, + -0.014231711626052856, + 0.0052251145243644714, + 0.010063745081424713, + -0.004436989780515432, + -0.01923327147960663, + 0.023279989138245583, + -0.013208664953708649, + 0.01897561550140381, + -0.00903312023729086, + 0.0008676949073560536, + 0.015466945245862007, + 0.004008826334029436, + -0.0033059553243219852, + 0.0033817365765571594, + -0.003021775744855404, + 0.020551864057779312, + 0.000814648054074496, + 0.00888155773282051, + 0.02340123802423477, + -0.008063120767474174, + 0.002563299611210823, + -0.0244318637996912, + 0.010616947896778584, + -0.013170775026082993, + 0.006915035657584667, + -0.016414210200309753, + 0.0037170685827732086, + 0.0003964304632972926, + -0.01930905319750309, + -0.016732491552829742, + -0.01606561616063118, + 0.003444256028160453, + -0.020779209211468697, + -0.0030729281716048717, + 0.010442650876939297, + 0.019066553562879562, + 0.010950385592877865, + -0.010033432394266129, + -0.017641866579651833, + 0.005486559588462114, + 0.01717202365398407, + -0.01561092957854271, + -0.010859447531402111, + 0.021461239084601402, + 0.027069048956036568, + -0.003186600049957633, + -0.010397182777523994, + 0.008010074496269226, + -4.466947211767547e-5, + -0.003425310831516981, + 0.0001860191987361759, + -0.010616947896778584, + 0.007775152567774057, + 0.0048954663798213005, + -0.018187491223216057, + -0.004224802367389202, + -0.019005928188562393, + -0.009048276580870152, + -0.014913742430508137, + -0.014534836634993553, + 0.008487495593726635, + 0.008123746141791344, + -0.01665670983493328, + -0.010904916562139988, + -0.0122159318998456, + 0.009631792083382607, + 0.02196139469742775, + 0.05113716050982475, + 0.041952479630708694, + 0.004690857138484716, + 0.010669995099306107, + 0.007005973253399134, + -0.04101279377937317, + -0.0022544909734278917, + 0.008676948957145214, + -0.011389915831387043, + -0.003036932088434696, + -0.0013365910854190588, + -0.011738509871065617, + 0.017596397548913956, + 0.011230776086449623, + -0.004077029414474964, + 0.006217848509550095, + -0.016368741169571877, + 0.005740426946431398, + 0.003986091818660498, + 0.013898273929953575, + -0.01435296144336462, + -0.00024889392079785466, + -0.004952302202582359, + -0.013163196854293346, + 0.0050697629339993, + -0.007896401919424534, + -0.0016823429614305496, + -0.01729327253997326, + -0.0027546470519155264, + 0.00251783081330359, + 0.015125930309295654, + -0.017929835245013237, + -0.007089332211762667, + -0.00503566162660718, + -0.01026835385710001, + 0.022658582776784897, + 0.011981009505689144, + 0.003592029446735978, + 0.005691168829798698, + -0.014019524678587914, + -0.0029156820382922888, + -0.003787166206166148, + 0.015194132924079895, + -0.027887485921382904, + 0.00025552476290613413, + 0.025022955611348152, + 0.0002685496583580971, + -0.0069301920011639595, + -0.0026978112291544676, + 0.0064792935736477375, + 0.0007194479112513363, + 0.009760620072484016, + -0.006896090228110552, + 0.0008710102993063629, + -0.01461061742156744, + 0.023113269358873367, + 0.034253109246492386, + -0.037041857838630676, + -0.002102928701788187, + -0.006206481251865625, + 0.012155306525528431, + -0.012329603545367718, + 0.00350677571259439, + 0.02806936204433441, + 0.00787366833537817, + 0.02838764153420925, + 0.009518120437860489, + 0.012951008975505829, + 0.01664155349135399, + -0.009525698609650135, + 0.032494984567165375, + -0.018414834514260292, + -0.011382337659597397, + 0.007036285474896431, + -0.027705611661076546, + -0.016095928847789764, + -0.015110773965716362, + 0.000362565740942955, + -0.018369365483522415, + 0.01814202219247818, + 0.009154370054602623, + -0.020445771515369415, + 0.0248259250074625, + 0.0020157801918685436, + -0.005456247366964817, + -0.00751749612390995, + -0.003285115584731102, + -0.011533900164067745, + -0.013329915702342987, + -0.001045780722051859, + -0.011374760419130325, + 0.010844291187822819, + -0.008911870419979095, + 0.014277180656790733, + 0.010215307585895061, + -0.0017884366679936647, + -0.017020460218191147, + -0.002453416818752885, + 0.011586947366595268, + 0.01806624047458172, + -0.015269914641976357, + 0.013049525208771229, + -0.012844915501773357, + -0.00803280808031559, + 0.0049636694602668285, + -0.049469973891973495, + 0.01458030566573143, + 0.012617572210729122, + 0.0016330850776284933, + 0.02785717323422432, + -0.008184370584785938, + 0.021461239084601402, + -7.288021151907742e-5, + -0.002440155018121004, + 0.003315428039059043, + 0.005012927111238241, + 0.000887587433680892, + 0.016687022522091866, + 0.02979717217385769, + 0.003821267746388912, + -0.013958899304270744, + 0.0026485533453524113, + -0.006839254405349493, + 0.00031733381911180913, + 0.0020063077099621296, + 0.005539606790989637, + 0.006471715401858091, + 0.02591717429459095, + -0.0037227519787847996, + -0.02953951619565487, + 0.03695091977715492, + -0.006168590858578682, + -0.0014587882906198502, + 0.025250300765037537, + 0.002174920868128538, + -0.01124593149870634, + 0.005926090758293867, + -0.0065437075681984425, + -0.003468885086476803, + -0.01348147727549076, + -0.005141755100339651, + -0.002658026060089469, + 0.018551241606473923, + -0.009722729213535786, + -0.008548120968043804, + 0.004080818500369787, + -0.009548433125019073, + 0.0005318893818184733, + 0.018672490492463112, + -0.005782106425613165, + 0.0038648417685180902, + -0.017611553892493248, + 0.004914411809295416, + 0.0012816498056054115, + -0.0023283776827156544, + 0.007957027293741703, + -0.011253509670495987, + 0.03358623385429382, + 0.004319529049098492, + -0.018566397950053215, + -0.005607809871435165, + 0.011943118646740913, + 0.006520973518490791, + 0.005713903345167637, + 0.006498239003121853, + -0.0023738464806228876, + -0.016732491552829742, + -0.00319986161775887, + 0.0015042570885270834, + -0.0029175765812397003, + -0.004668122623115778, + -0.0037435919512063265, + 0.003940623253583908, + -0.008699683472514153, + 0.005842731334269047, + -0.012549368664622307, + 0.0016264542937278748, + -0.010526010766625404, + -0.012496322393417358, + 0.008828511461615562, + 0.03970935568213463, + 0.022067489102482796, + 0.013951321132481098, + 0.003933045081794262, + 0.007312886882573366, + 0.009593901224434376, + 0.008244995959103107, + 0.008411714807152748, + -0.0005735690356232226, + 0.012397806160151958, + 0.0007388668018393219, + -0.0013233294012024999, + 0.0076652695424854755, + -0.005850309506058693, + -0.01561092957854271, + 0.019854677841067314, + -0.0035939239896833897, + 0.00614206725731492, + -0.03491998091340065, + 0.0029289438389241695, + -0.014148352667689323, + -0.005797262769192457, + -0.010131947696208954, + -0.005687380209565163 + ], + "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7": [ + 0.00041980837704613805, + 0.006635633762925863, + -0.01396812591701746, + 0.007057619746774435, + -0.048098668456077576, + -0.004696046467870474, + -0.0018689336720854044, + 0.005764561705291271, + -0.032148368656635284, + 0.015779955312609673, + 0.005447104573249817, + 0.05221787095069885, + -0.014711440540850163, + -0.0206424742937088, + -0.000950920395553112, + 0.019589444622397423, + -0.04147077724337578, + 0.03824974596500397, + -0.006577562540769577, + 0.019790759310126305, + 0.05906256288290024, + -0.005439361557364464, + -0.037847116589546204, + 0.012001438066363335, + -0.016027728095650673, + -0.0324271135032177, + 0.016260012984275818, + -0.011343294754624367, + -0.041532717645168304, + 0.02429710514843464, + 0.028509223833680153, + -0.01754532754421234, + 0.010538036935031414, + 0.0063452767208218575, + 0.02002304419875145, + -0.04577580839395523, + -0.032272253185510635, + 0.06411091238260269, + -0.029995853081345558, + -0.014246868900954723, + -0.013085438869893551, + 0.0042701889760792255, + 0.01430106908082962, + 0.02672836370766163, + -0.057699818164110184, + 0.03899306058883667, + -0.0034475098364055157, + -0.03688700124621391, + 0.023894475772976875, + 0.014603040181100368, + -0.0025222378317266703, + -0.05506724491715431, + -0.013790039345622063, + 0.031931567937135696, + 0.014812097884714603, + 0.024653276428580284, + 0.022051675245165825, + 0.054974328726530075, + -0.01579544134438038, + -0.009810208342969418, + 0.003350724233314395, + -0.026867736130952835, + -0.004998018499463797, + 0.02270207554101944, + -0.0037843245081603527, + -0.0017556942766532302, + 0.017777614295482635, + 0.002777752233669162, + -0.04574483633041382, + -0.016771042719483376, + 0.018582871183753014, + 0.07402177155017853, + -0.01884612999856472, + 0.00017881175153888762, + -0.023089218884706497, + 0.007704149000346661, + 0.028323393315076828, + -0.008973978459835052, + 0.018753215670585632, + -0.0022996303159743547, + 0.0017760193441063166, + 0.018195729702711105, + 0.009159807115793228, + -0.007990635000169277, + 0.03756837174296379, + 0.010034751147031784, + -0.05432393029332161, + -0.04326711967587471, + 0.005787790287286043, + -0.02604699321091175, + 0.014324297197163105, + -0.012032410129904747, + 0.007475734688341618, + -0.037258658558130264, + -0.009546950459480286, + 0.012272438034415245, + 0.07439342886209488, + -0.0022802732419222593, + -0.0010636758524924517, + -0.02626379206776619, + -0.024513905867934227, + 0.012001438066363335, + -0.06962382793426514, + -0.00441730348393321, + 0.004970918409526348, + -0.01847447268664837, + -0.0031726383604109287, + -0.02206716127693653, + -0.006643376778811216, + 0.09328601509332657, + 0.03673214465379715, + -0.009856665506958961, + 0.011343294754624367, + 0.03540037199854851, + -0.0397983193397522, + -0.07005742937326431, + 0.005292247049510479, + -0.03221031278371811, + 0.03756837174296379, + -0.043081291019916534, + 0.005176104139536619, + 0.048315469175577164, + 0.017684699967503548, + -0.008308092132210732, + -0.0024564233608543873, + 0.012024667114019394, + -0.024312591180205345, + -0.013147382065653801, + 0.0056251902133226395, + 0.04543512314558029, + -0.027069050818681717, + 0.012860896065831184, + -0.008261634968221188, + 0.02248527482151985, + 0.00482767540961504, + 0.014192668721079826, + 0.024188704788684845, + 0.04088231921195984, + -0.03790906071662903, + 0.03437831252813339, + -0.03744448721408844, + -0.04134688898921013, + -0.05358061566948891, + 0.014440440572798252, + -0.0179324708878994, + 0.01759178563952446, + -0.03747545927762985, + 0.042864490300416946, + -0.002589987823739648, + -0.017374984920024872, + -0.03135859593749046, + -0.008943007327616215, + 0.05612027272582054, + 0.021184474229812622, + 0.029175108298659325, + 0.006422705017030239, + -0.020425673574209213, + 0.009206264279782772, + 0.027115507051348686, + 0.00965535081923008, + 0.01914035901427269, + -0.0484083816409111, + 0.016151612624526024, + 0.007212477270513773, + 0.043669749051332474, + 0.01663167029619217, + 0.04360780492424965, + 0.011931752786040306, + -0.042957406491041183, + 0.024823620915412903, + 0.008571350015699863, + -0.015346354804933071, + 0.006341405212879181, + -0.013650667853653431, + 0.023600246757268906, + -0.05125775560736656, + 0.01776212826371193, + 0.007495091762393713, + 0.0090901218354702, + -0.031637340784072876, + 0.0019057122990489006, + -0.04930655285716057, + 0.005764561705291271, + -0.010367694310843945, + 0.0007786417263559997, + 0.024513905867934227, + 0.016383899375796318, + -0.012489238753914833, + 0.018613843247294426, + 0.02970162406563759, + 0.015981270000338554, + 0.0103212371468544, + 0.019372643902897835, + 0.022593675181269646, + -0.008648778311908245, + -0.025814706459641457, + -0.005478075705468655, + 0.009454036131501198, + -0.002026694593951106, + 0.008044835180044174, + 0.006925991270691156, + -0.03694894537329674, + -0.04097523167729378, + 0.03920986130833626, + -0.01918681524693966, + -0.013526782393455505, + -0.005408389959484339, + 0.0004193244385533035, + 0.029298994690179825, + -0.05076221376657486, + 0.038094889372587204, + -0.03437831252813339, + 0.03236516937613487, + -0.028385337442159653, + -0.02651156485080719, + 0.009794722311198711, + -0.0026596735697239637, + 0.023507332429289818, + 0.024188704788684845, + -0.025985049083828926, + 0.013302239589393139, + 0.0001972010504687205, + 0.014951469376683235, + -0.029035737738013268, + -0.026000535115599632, + 0.0001495340547990054, + -0.04246186092495918, + 0.022934360429644585, + -0.025102363899350166, + 0.0010491579305380583, + 0.050111811608076096, + -0.003846267471089959, + -0.0015505084302276373, + -0.02341441810131073, + -0.029686138033866882, + -0.0023518947418779135, + 0.019078414887189865, + 0.005299990065395832, + -0.018567387014627457, + -0.03592688590288162, + 0.022516246885061264, + 0.012659581378102303, + 0.010003779083490372, + 0.006813719868659973, + 0.030677225440740585, + 0.026945164427161217, + 0.005977490451186895, + 0.048811011016368866, + 0.03769225999712944, + -0.042121175676584244, + -0.005400647409260273, + 0.01277572475373745, + 0.0011924009304493666, + -0.02161807380616665, + -0.04196631908416748, + 0.05599638819694519, + -0.009159807115793228, + -0.024870077148079872, + 0.009407578967511654, + -0.03766128793358803, + -0.0014701761538162827, + -0.015903841704130173, + 0.017576299607753754, + -0.023445390164852142, + 0.041532717645168304, + -0.012899610213935375, + 0.02559790574014187, + -0.04995695501565933, + 0.0025938593316823244, + 0.04227603226900101, + -0.02194327488541603, + -0.01108003780245781, + -0.034749969840049744, + -0.014812097884714603, + -0.015965783968567848, + 0.0019860444590449333, + 0.04174951836466789, + 0.02734779380261898, + 0.014146211557090282, + -0.001219501020386815, + 0.0006349147879518569, + -0.019403615966439247, + -0.01680201292037964, + 0.007789320778101683, + -0.036422427743673325, + -0.0024293232709169388, + -0.00269645219668746, + 0.008013864047825336, + -0.035121627151966095, + -0.037382543087005615, + -0.011296837590634823, + -0.003060366725549102, + 0.025892134755849838, + 0.016321955248713493, + 0.016894927248358727, + -0.010344465263187885, + 0.007584134582430124, + -0.016105156391859055, + -0.00703826267272234, + 0.0013414510758593678, + -0.04933752492070198, + 0.0016850406536832452, + 0.02521076239645481, + -0.02140127494931221, + 0.026480592787265778, + -0.011544609442353249, + 0.039519574493169785, + 0.05420004203915596, + -0.024049334228038788, + -0.02596956305205822, + 0.018242185935378075, + -0.0021931659430265427, + 0.0021989732049405575, + -0.02294984646141529, + -0.007049877196550369, + 0.016306471079587936, + 0.023213105276226997, + -0.015965783968567848, + -0.030630767345428467, + 0.004812189377844334, + 0.03255099803209305, + 0.01214855257421732, + -0.060920849442481995, + 0.0052186897955834866, + 0.0028067880775779486, + -0.04134688898921013, + 0.036917973309755325, + 0.0038288459181785583, + -0.015462498180568218, + -0.018629329279065132, + -0.019573958590626717, + -0.013395153917372227, + 0.001884419354610145, + -0.03211739659309387, + -0.036546315997838974, + -0.048098668456077576, + -0.019496530294418335, + -0.029469337314367294, + -0.0052651469595730305, + -0.033573053777217865, + -0.025892134755849838, + 0.011467180214822292, + -0.03437831252813339, + -0.0078048063442111015, + 0.012225980870425701, + -0.02442099153995514, + -0.02747168019413948, + 0.013743582181632519, + -0.010414151474833488, + -0.004394074901938438, + 0.0009180132183246315, + -0.020456645637750626, + 0.012551181949675083, + 0.011885295622050762, + 0.05444781482219696, + -0.03694894537329674, + -0.023755105212330818, + -0.03849751502275467, + 0.029252538457512856, + -0.010538036935031414, + -0.014750154688954353, + -0.022392360493540764, + -0.022392360493540764, + -0.03828071802854538, + -0.009136578999459743, + 0.007723506074398756, + -0.02688322216272354, + -0.004057260230183601, + 0.02538110688328743, + 0.01980624534189701, + -0.011792381294071674, + 0.016492299735546112, + 0.04159466177225113, + -0.025644363835453987, + -0.023755105212330818, + 0.0024331947788596153, + 0.04311226308345795, + -0.029546767473220825, + -0.03211739659309387, + 0.005574861541390419, + -0.005869090557098389, + 0.023383447900414467, + -0.010545779950916767, + -0.03530745580792427, + 0.025474021211266518, + -0.0005081254057586193, + -0.007135048508644104, + -0.036670200526714325, + 0.006314305122941732, + 0.0003094725834671408, + -0.032148368656635284, + 0.028849909082055092, + -0.03354208543896675, + -0.008215177804231644, + -0.02304276078939438, + 0.016647156327962875, + -0.008006121031939983, + 0.002431259024888277, + 4.355360579211265e-5, + 0.010584494099020958, + -0.004843160975724459, + -0.0021854231599718332, + 0.02466876246035099, + 0.022314932197332382, + 0.023569276556372643, + -0.032148368656635284, + 0.012767981737852097, + -0.005195461213588715, + -0.01298478152602911, + 0.05323993042111397, + -0.022640133276581764, + 0.017653727903962135, + -0.008973978459835052, + 0.001919262227602303, + 0.05029764026403427, + -0.008137749508023262, + 0.023445390164852142, + 0.020766358822584152, + -0.019496530294418335, + -0.02572179213166237, + 0.028385337442159653, + 0.027672993019223213, + 0.013240296393632889, + 0.056770674884319305, + -0.0068021053448319435, + 0.017498871311545372, + 0.0668363943696022, + 0.021076073870062828, + -0.04051066190004349, + -0.013371924869716167, + 0.010599980130791664, + 0.007344105746597052, + -0.009740522131323814, + -0.010538036935031414, + -0.004123074933886528, + -0.02994939498603344, + -0.010166379623115063, + -0.03766128793358803, + 0.00283775944262743, + -0.0006291076424531639, + 0.025071391835808754, + 0.03896208852529526, + 0.012675067409873009, + 0.008710721507668495, + -0.01520698331296444, + -0.022469788789749146, + -0.029748080298304558, + 0.0014295261353254318, + 0.01304672472178936, + -0.014053297229111195, + 0.0022280090488493443, + 0.028137564659118652, + -0.029252538457512856, + 0.013999097049236298, + -0.008943007327616215, + -0.030352024361491203, + 0.017824072390794754, + -0.03862140327692032, + -0.011134237982332706, + 0.0055477614514529705, + -0.006558205466717482, + -0.003495902754366398, + 0.027409736067056656, + 0.004297289066016674, + 0.01838155835866928, + -0.0366082563996315, + -0.02567533403635025, + 0.004192760679870844, + 0.0017353692092001438, + -0.018319614231586456, + -0.005083189811557531, + -0.01384423952549696, + -0.026604479178786278, + 0.00024450512137264013, + -0.029840994626283646, + 0.00992635078728199, + 0.0047076609916985035, + 0.009740522131323814, + 0.008648778311908245, + -0.005145132541656494, + -0.005814890377223492, + -0.006600791122764349, + -0.020719902589917183, + -0.005903933197259903, + 0.041192032396793365, + -0.008408749476075172, + 0.012760238721966743, + -0.009748265147209167, + 0.0005695843719877303, + -0.023724133148789406, + 0.03862140327692032, + -0.012326638214290142, + 0.023398933932185173, + 0.01717367023229599, + 0.004498603753745556, + -0.03053785301744938, + 0.015524441376328468, + -0.01746789924800396, + -0.0090901218354702, + -0.00013320145080797374, + 0.014517868869006634, + -0.01997658796608448, + 0.02233041822910309, + 0.005861347541213036, + 0.02378607541322708, + -0.02068893052637577, + -0.012551181949675083, + -0.009562436491250992, + -0.0013801653403788805, + -0.006202033720910549, + -0.021060587838292122, + 0.007944177836179733, + -0.010003779083490372, + -0.004572161007672548, + -0.014037811197340488, + -0.016321955248713493, + -0.026077963411808014, + 0.005872962065041065, + 0.0127137815579772, + -0.01221049576997757, + 0.007359591778367758, + 0.0011091651394963264, + -0.021633559837937355, + 0.01567155495285988, + 0.01440946850925684, + -0.005245789885520935, + -0.004301160573959351, + 0.01783955655992031, + -0.015663811936974525, + -0.035493284463882446, + -0.00754929194226861, + 0.018520928919315338, + 0.0031978024635463953, + 0.009717293083667755, + 0.023553790524601936, + -0.012667324393987656, + -0.025443049147725105, + 0.019496530294418335, + 0.014548840001225471, + 0.057947590947151184, + -0.024993963539600372, + 0.028911851346492767, + -0.01340289693325758, + -0.023863505572080612, + 0.01306995376944542, + 0.022671103477478027, + -0.03351111337542534, + 0.04735535383224487, + -0.008114520460367203, + 0.0035655885003507137, + -0.029933908954262733, + 0.019326187670230865, + -0.00227253045886755, + -0.007220220286399126, + -0.010328980162739754, + -0.043917521834373474, + 0.012783467769622803, + -0.004719275049865246, + -0.031219225376844406, + -0.026743849739432335, + 0.01822669990360737, + 0.011211666278541088, + 0.028199508786201477, + 0.020766358822584152, + -0.021292874589562416, + 0.004181146156042814, + -0.01855190098285675, + 0.013542268425226212, + 0.00850166380405426, + 0.01373584009706974, + 0.0059387763030827045, + -0.015183755196630955, + 0.02722390741109848, + 0.007982891984283924, + -0.022794989868998528, + 0.018737729638814926, + 0.008354549296200275, + 0.036298543214797974, + -0.0046302322298288345, + -0.022686589509248734, + 0.018071843311190605, + -0.03289168328046799, + -0.0021583230700343847, + -0.005118032917380333, + 0.0058845761232078075, + 0.005745204631239176, + -0.03574105724692345, + -0.01174592413008213, + 0.008532635867595673, + 0.0271464791148901, + 0.008803635835647583, + 0.013178353197872639, + 0.0059310332871973515, + -0.012404067441821098, + -0.01168398093432188, + 0.029562251642346382, + -0.015222469344735146, + -0.008842349983751774, + 0.002955838106572628, + -0.01712721399962902, + 0.013642924837768078, + 0.0358649417757988, + 0.009368864819407463, + -0.04125397652387619, + -0.008122263476252556, + 0.03140505403280258, + 0.013000267557799816, + 0.009763751178979874, + -0.011807866394519806, + 0.01712721399962902, + -0.0025106235407292843, + -0.0026209591887891293, + 0.014726926572620869, + -0.009577921591699123, + 0.014796611852943897, + -0.010646437294781208, + -0.01783955655992031, + 0.04292643442749977, + 0.038683343678712845, + -0.0238325335085392, + 0.007398305926471949, + -0.012373095378279686, + 0.051908157765865326, + -0.016074184328317642, + 0.022918876260519028, + 0.004696046467870474, + 0.009438550099730492, + -0.04125397652387619, + -0.035833973437547684, + -0.012094352394342422, + 0.0008512310450896621, + -0.02181938849389553, + 0.012907353229820728, + -0.03766128793358803, + 0.03186962381005287, + -0.012195009738206863, + 0.02073538862168789, + 0.01241955254226923, + 0.0013443547068163753, + -0.019202301278710365, + -0.01562509872019291, + 0.009895379655063152, + 0.016972357407212257, + 0.030398482456803322, + -0.0034281527623534203, + 0.010739351622760296, + -0.039891231805086136, + 0.00902817863970995, + 0.03036751039326191, + 0.013031238690018654, + -0.03360402584075928, + 0.0026829021517187357, + 0.0061904191970825195, + 0.02245430462062359, + -0.008927521295845509, + -0.028509223833680153, + -0.0040727462619543076, + -0.024343563243746758, + 0.01876870170235634, + -0.00795966386795044, + 0.04351489245891571, + -0.01621355675160885, + -0.01599675603210926, + 0.00788610614836216, + 0.016275499016046524, + 0.019945615902543068, + 0.016151612624526024, + 0.013658410869538784, + -0.015594126656651497, + 0.04150174930691719, + -0.024575848132371902, + -0.019171329215168953, + 0.008199692703783512, + 0.014827582985162735, + -0.0021641303319483995, + -0.016182584688067436, + 0.015044383704662323, + -0.009291435591876507, + -0.0027893665246665478, + -0.0331704281270504, + -0.013913925737142563, + -0.027332307770848274, + -0.029856480658054352, + 0.029159624129533768, + 0.036298543214797974, + -0.002406094688922167, + -0.010228322818875313, + -0.0029480953235179186, + 0.008455206640064716, + -0.01591932773590088, + 0.007692534942179918, + -0.0037765817251056433, + -0.011792381294071674, + 0.015803184360265732, + -0.022020703181624413, + 0.007909335196018219, + -0.0040727462619543076, + -0.009306921623647213, + 0.019914643839001656, + -0.013170610181987286, + -0.007429277524352074, + 0.0019579764921218157, + 0.004351489245891571, + -0.018025385215878487, + 0.027672993019223213, + 0.029453853145241737, + -0.005149004049599171, + -0.029964881017804146, + 0.014107497408986092, + 0.007514448836445808, + -0.015191498212516308, + 0.014161696657538414, + 0.008238406851887703, + 0.007402177434414625, + 0.0003406859759707004, + -0.018040871247649193, + 0.010166379623115063, + -0.005234175827354193, + -0.022516246885061264, + -0.012558924034237862, + -0.02194327488541603, + 0.04007706046104431, + -0.011474923230707645, + -0.031683795154094696, + -0.03437831252813339, + 0.008416492491960526, + 0.01599675603210926, + -0.014819840900599957, + 0.025814706459641457, + -0.0038714315742254257, + 0.024064820259809494, + 0.009670835919678211, + -0.012767981737852097, + 0.0017566621536388993, + -0.006914377212524414, + -0.02400287613272667, + -0.001848608604632318, + 0.0036062386352568865, + 0.010174122639000416, + -0.035833973437547684, + 0.005152875557541847, + -0.026991622522473335, + 0.027781393378973007, + -0.01709624193608761, + 0.024777162820100784, + 0.011227152310311794, + 0.027440708130598068, + -0.006906634196639061, + 0.014726926572620869, + 0.03261294215917587, + 0.07309263199567795, + -0.01670909859240055, + 0.013712611049413681, + 0.006871791090816259, + -0.0068253339268267155, + 0.010646437294781208, + 0.014781125821173191, + 0.005919419229030609, + -0.021060587838292122, + 0.027084536850452423, + 0.023507332429289818, + 0.015416041016578674, + 0.003983702976256609, + 0.008176463656127453, + -0.010793551802635193, + -0.04382460564374924, + -0.02491653524339199, + 0.0029771309345960617, + 0.029763566330075264, + -0.01536958385258913, + 0.007347977254539728, + 0.04512540623545647, + 0.016771042719483376, + 0.017916986718773842, + 0.022314932197332382, + 0.004080488812178373, + 0.003457188606262207, + -0.0008638132130727172, + -0.06284108012914658, + 0.006093633361160755, + -0.012280181050300598, + -0.019961101934313774, + -0.010940666310489178, + -0.03626757115125656, + -0.002332537667825818, + -0.0031455382704734802, + 0.045837752521038055, + -0.015903841704130173, + -0.02333698980510235, + 0.0027796879876405, + 0.002109930384904146, + 0.028586652129888535, + -0.012690553441643715, + 0.002295759040862322, + 0.006674348376691341, + -0.004386331886053085, + -0.009074635803699493, + -0.0197752732783556, + -0.03282973915338516, + -0.002425451995804906, + 0.005447104573249817, + -0.041068147867918015, + 0.01906292885541916, + -0.014270097017288208, + 0.004645717795938253, + -0.02575276419520378, + -0.0049438183195889, + -0.002417708979919553, + 0.013588725589215755, + 0.014270097017288208, + -0.004955432377755642, + -0.010228322818875313, + -0.017080755904316902, + 0.02810659445822239, + -0.008509406819939613, + -0.002274466212838888, + -0.02034824527800083, + -0.01015863660722971, + 0.006616276688873768, + -0.010545779950916767, + 0.014316554181277752, + 0.01570252701640129, + -0.0052728899754583836, + 0.011939494870603085, + -0.031900595873594284, + -0.0056561618112027645, + 0.05339478701353073, + -0.02688322216272354, + 0.02144773118197918, + 0.034780941903591156, + -0.008981721475720406, + 0.004099846351891756, + -0.0324271135032177, + 0.007762220688164234, + -0.013821011409163475, + 0.03908597305417061, + -0.011552352458238602, + 0.010127665475010872, + -0.038311686366796494, + 0.044877637177705765, + -0.009229493327438831, + -0.03992220386862755, + -0.009477265179157257, + -0.009198521263897419, + 0.009701807983219624, + -0.013526782393455505, + 0.015787698328495026, + -0.03270585462450981, + -0.010630951263010502, + 0.008555863983929157, + 0.006097504869103432, + -0.01746789924800396, + -0.009562436491250992, + 0.004169532097876072, + -0.03886917233467102, + 0.02157161757349968, + -0.03697991371154785, + 0.008780406787991524, + -0.00046626554103568196, + 0.013898439705371857, + 0.024560362100601196, + -0.002710002241656184, + -0.00826937798410654, + -0.020038530230522156, + -0.004641846753656864, + -0.014393983408808708, + -0.009779236279428005, + -0.0023577020037919283, + -0.001483726198785007, + 0.024560362100601196, + 0.00826937798410654, + -0.02500944957137108, + 0.0004019030020572245, + 0.021927788853645325, + -0.0058845761232078075, + -0.03998414799571037, + -0.030382996425032616, + -0.022051675245165825, + 0.0040959748439490795, + -0.03103339672088623, + -0.0051606185734272, + -0.0014198475982993841, + 0.033232368528842926, + -0.024637790396809578, + -0.04658106714487076, + -0.009183036163449287, + 0.015950297936797142, + -0.016012242063879967, + -0.004301160573959351, + -0.0020208873320370913, + 0.0033023313153535128, + 0.000606846937444061, + -0.021587103605270386, + -0.044536951929330826, + -0.007502834778279066, + -0.019341671839356422, + -0.003867560299113393, + -0.032860711216926575, + -0.001824412145651877, + -0.008199692703783512, + -0.00207315175794065, + -0.03186962381005287, + -0.027951736003160477, + -0.030398482456803322, + 0.008068063296377659, + -0.05444781482219696, + 0.007026648614555597, + 0.003391374135389924, + 0.005145132541656494, + 0.03230322524905205, + 0.01608967036008835, + 0.009748265147209167, + 0.0033894383814185858, + -0.024684248492121696, + 0.011095522902905941, + -0.010135408490896225, + 0.028540194034576416, + -0.001260151038877666, + -0.0009112382540479302, + -0.01683298498392105, + 0.020084988325834274, + 0.00016356799460481852, + 0.010027008131146431, + 0.023104704916477203, + 0.012729267589747906, + -0.0127137815579772, + -0.013286753557622433, + 0.020472131669521332, + 0.03019716776907444, + -0.014424954541027546, + -0.013480325229465961, + -0.006395604927092791, + 0.011196180246770382, + -0.013325467705726624, + 0.04252380505204201, + -0.008238406851887703, + 0.007975148968398571, + 0.0006654023309238255, + -0.03883820399641991, + -0.02002304419875145, + -0.027192935347557068, + 0.01608967036008835, + 0.027874307706952095, + -0.029128652065992355, + 0.00021631624258589, + -0.008393263444304466, + -0.0046302322298288345, + 0.04552803561091423, + 0.0016695549711585045, + 0.0006291076424531639, + -0.004258574917912483, + 0.029128652065992355, + 5.584086466114968e-6, + -0.018458986654877663, + -0.00471153249964118, + 0.02403384819626808, + -0.01867578737437725, + 0.01951201632618904, + -0.001754726399667561, + 0.0012746688444167376, + -0.009004950523376465, + -0.020069502294063568, + 0.0164613276720047, + -0.0002777752233669162, + -0.05348769947886467, + 0.011838838458061218, + -0.04289546236395836, + 0.01162203773856163, + -0.00771576352417469, + 0.00286292377859354, + -0.009051407687366009, + -0.02412676252424717, + -0.017328528687357903, + 0.00499414699152112, + -0.008068063296377659, + -0.01298478152602911, + -0.007738992106169462, + 0.005141261499375105, + 0.005594218615442514, + -0.0050367326475679874, + 0.019589444622397423, + -0.026650935411453247, + -0.01440946850925684, + -0.002226073294878006, + -0.0016211620531976223, + 0.026077963411808014, + 0.006790491286665201, + -0.00799837801605463, + -0.00351913133636117, + 0.0013511296128854156, + 0.044041406363248825, + -0.0334181971848011, + 0.021385788917541504, + 0.013426125049591064, + 0.017390470951795578, + -0.002791302278637886, + -0.006442062556743622, + -0.0004882843350060284, + -0.0016395513666793704, + -0.02002304419875145, + -0.014688211493194103, + -0.010328980162739754, + -0.0035655885003507137, + 0.01680201292037964, + 0.018040871247649193, + 0.023755105212330818, + 0.006844691000878811, + 0.020967673510313034, + 0.00441730348393321, + 0.030924996361136436, + -0.0012746688444167376, + -0.025148820132017136, + -0.009725036099553108, + -0.0049360753037035465, + 0.01189303770661354, + 0.030506880953907967, + 0.0007263773586601019, + -0.04258574917912483, + -0.026325736194849014, + -0.004796703811734915, + -0.028710536658763885, + -0.022020703181624413, + -0.026372192427515984, + 0.01808732934296131, + 0.001301768934354186, + 0.014920497313141823, + 0.011970466934144497, + 0.0025512734428048134, + 0.014525611884891987, + 0.025024933740496635, + -0.024529391899704933, + -0.012767981737852097, + 0.005087061319500208, + 0.00019828989752568305, + 9.90844564512372e-5, + -0.03174573928117752, + 0.008021606132388115, + -0.08349903672933578, + -0.034997742623090744, + 0.006976319942623377, + 0.008873321115970612, + 0.004517960827797651, + 0.006693705450743437, + -0.0021060588769614697, + -0.007301520090550184, + 0.012822181917726994, + 0.0006465290789492428, + -0.0026712878607213497, + -0.005559375975281, + 7.41621115594171e-5, + 0.04032483324408531, + -0.01189303770661354, + 0.007363463286310434, + -0.01901647262275219, + 0.015423784032464027, + 0.0035481671802699566, + -0.03159088268876076, + 0.010592237114906311, + -0.010855494067072868, + 0.06135445088148117, + 0.002218330278992653, + 0.019713331013917923, + 0.056863587349653244, + -0.03753740340471268, + 0.030847568064928055, + 0.0003552038688212633, + -0.018025385215878487, + 0.019279729574918747, + -0.009616636671125889, + -0.006271719466894865, + 0.005164490081369877, + 0.014835326001048088, + -0.014270097017288208, + 0.01985270157456398, + -0.00753767741844058, + 0.02525722049176693, + 0.02102961763739586, + -0.0020750872790813446, + 0.01331772468984127, + -0.011064551770687103, + -0.006283333525061607, + -0.003836588701233268, + -0.014432697556912899, + 0.011753666214644909, + -0.013519039377570152, + 0.002909380942583084, + 0.011900780722498894, + 0.010042494162917137, + -0.02174196019768715, + 0.016136126592755318, + -0.018985500559210777, + -0.010088951326906681, + 0.02027081698179245, + 0.011482666246592999, + -0.011033580638468266, + -0.012171781621873379, + -0.006720805540680885, + 0.09167550504207611, + 0.015315383672714233, + -0.014479154720902443, + 0.009214007295668125, + 0.017452413216233253, + 0.009515979327261448, + 0.0014450119342654943, + 0.020952187478542328, + 0.034285400062799454, + -0.0037843245081603527, + -0.013542268425226212, + -0.006353019271045923, + -0.004796703811734915, + 0.04016997665166855, + -0.003939181566238403, + -0.008517149835824966, + 0.03648437187075615, + 0.00799837801605463, + 0.009407578967511654, + -0.011397494934499264, + -0.018582871183753014, + 0.010646437294781208, + 0.002878409344702959, + -0.02466876246035099, + -0.019419101998209953, + -0.02044115960597992, + 0.022810475900769234, + -0.011219409294426441, + -0.029810024425387383, + 0.004277931991964579, + -0.002500944770872593, + 0.013263524509966373, + 0.011529123410582542, + 0.01670909859240055, + -0.017065271735191345, + 0.01906292885541916, + 0.005629061721265316, + 0.0007283131126314402, + 0.01653875596821308, + 0.006263976451009512, + -0.0071079484187066555, + -0.010739351622760296, + 0.016074184328317642, + -0.0073712058365345, + -0.0011924009304493666, + 0.02169550396502018, + -0.0019415230490267277, + 0.007831905968487263, + -0.016027728095650673, + -0.0026983879506587982, + -0.0017498871311545372, + 0.003027459606528282, + 0.0023344734217971563, + -0.0065504624508321285, + -0.005942647811025381, + 0.003250066889449954, + 0.0011275544529780746, + -0.022222017869353294, + -0.022051675245165825, + -0.002802916569635272, + -0.00243900204077363, + 0.023398933932185173, + -0.01298478152602911, + -0.04825352504849434, + -0.009314664639532566, + 0.017065271735191345, + -0.01476564072072506, + -0.013728097081184387, + -0.007723506074398756, + -0.006058790720999241, + -0.00820743478834629, + 0.0021292874589562416, + -0.018149271607398987, + 0.0043708463199436665, + 0.0016589084407314658, + 0.023321503773331642, + 0.02191230282187462, + -0.01463401224464178, + -0.008478435687720776, + -0.0334181971848011, + -0.013124153017997742, + 0.006941476836800575, + 0.0049593038856983185, + 0.014982440508902073, + -0.0015814797952771187, + 0.01254343893378973, + 0.00932240765541792, + 0.002431259024888277, + -0.005238046869635582, + -0.037506431341171265, + -0.0023518947418779135, + 0.034533169120550156, + 0.025396591052412987, + -0.004339874722063541, + -0.017947956919670105, + -0.008648778311908245, + -0.00938435085117817, + 0.013348696753382683, + 0.00938435085117817, + 0.0052419183775782585, + -0.009275950491428375, + 0.003672052873298526, + 0.011924009770154953, + -0.002349958987906575, + 0.006023947615176439, + -0.019233273342251778, + -0.03248905390501022, + 0.002243494614958763, + -0.017622757703065872, + -0.018412528559565544, + 0.0015969655942171812, + -0.0024525520857423544, + -0.006751776672899723, + -0.00753767741844058, + 0.00883460696786642, + -0.003693345934152603, + -0.007789320778101683, + 0.010228322818875313, + 0.011072294786572456, + 0.022299446165561676, + -0.020998645573854446, + 0.0026228949427604675, + -0.012195009738206863, + 0.008222920820116997, + 0.014316554181277752, + 0.020054016262292862, + 0.016616184264421463, + 0.012404067441821098, + -0.008888807147741318, + 0.001895065768621862, + 0.014401725493371487, + 0.008517149835824966, + -0.028865395113825798, + 0.021138016134500504, + 0.02852470800280571, + 0.0014556583482772112, + 0.016600698232650757, + -0.034780941903591156, + -0.009368864819407463, + -0.020704416558146477, + -0.014626269228756428, + -0.015834156423807144, + -0.008006121031939983, + -0.004382460843771696, + -0.0021738088689744473, + 0.007355720270425081, + -0.002955838106572628, + 0.025272706523537636, + 0.00833132117986679, + -0.01742144301533699, + -0.0005816826014779508, + -0.008509406819939613, + 0.0025474021676927805, + -0.01997658796608448, + 0.011877552606165409, + -0.0020325016230344772, + -0.007541548926383257, + -0.012907353229820728, + -0.01337966788560152, + -0.02500944957137108, + 0.014726926572620869, + -0.0007592845358885825, + 0.007417663000524044, + -0.02894282341003418, + -0.0014740476617589593, + -0.014486897736787796, + 0.0012707974528893828, + -0.03378985449671745, + -0.019279729574918747, + 0.02044115960597992, + -0.008664264343678951, + 0.011846580542623997, + -0.020379217341542244, + -0.003896595910191536, + -0.0098876366391778, + 0.008842349983751774, + 0.0025977306067943573, + -0.011544609442353249, + 0.011304580606520176, + -0.01847447268664837, + -0.02132384665310383, + -0.04156368970870972, + -0.018908072263002396, + 0.02216007560491562, + 0.020255330950021744, + 0.005543890409171581, + -0.020874759182333946, + -0.03162185475230217, + 0.014610783196985722, + -0.026294764131307602, + 0.0009838276309892535, + -0.018118299543857574, + -0.011738181114196777, + 0.024390019476413727, + 0.014889526180922985, + -0.001495340489782393, + 0.011947237886488438, + 0.0071931201964616776, + 0.030723681673407555, + -0.009136578999459743, + 0.000232527861953713, + 0.011041322723031044, + 0.009616636671125889, + -0.03515259921550751, + 0.02823047898709774, + -0.03078562393784523, + -0.0022822089958935976, + -0.011653009802103043, + 0.012009181082248688, + -0.025195278227329254, + -0.007196991704404354, + 0.019713331013917923, + -0.003567524254322052, + 0.01722012832760811, + 0.017065271735191345, + 0.010840008966624737, + 0.006062662228941917, + -0.02459133416414261, + 0.006647248286753893, + -0.0019037765450775623, + -0.004564417991787195, + -0.010592237114906311, + 0.006736291106790304, + -0.007591877598315477, + 0.005493561737239361, + -0.012860896065831184, + 0.018397042527794838, + 0.00938435085117817, + 0.026991622522473335, + 0.010770322754979134, + 0.023213105276226997, + -0.013697125017642975, + 0.023398933932185173, + 0.006724677048623562, + 0.015106326900422573, + 0.001842801459133625, + -0.00787449162453413, + 0.005183847155421972, + 0.005431618541479111, + 0.018830643966794014, + 0.007495091762393713, + 0.0023770590778440237, + -0.00698406295850873, + -0.012845410034060478, + -0.017808586359024048, + -0.0002545466413721442, + 0.022856932133436203, + 0.004521832335740328, + 0.0029887452255934477, + -0.013642924837768078, + -0.0031784453894943, + 0.01624452695250511, + -0.01015863660722971, + -0.0326748825609684, + 0.0026654808316379786, + 0.031606368720531464, + 0.030924996361136436, + 0.01507535483688116, + 0.009035921655595303, + -0.014982440508902073, + -0.0010210900800302625, + -0.019883673638105392, + 0.011792381294071674, + -0.003958539105951786, + -0.02717745117843151, + 0.0013298367848619819, + -0.0011575580574572086, + -0.0010936794569715858, + 0.00144791544880718, + -0.02282596193253994, + -0.015292155556380749, + 0.008075806312263012, + -0.021834874525666237, + -0.0035346171353012323, + 0.009183036163449287, + -0.002661609323695302, + -0.004049517679959536, + -0.019573958590626717, + 0.013666153885424137, + -0.003397181397303939, + 0.002088637324050069, + 0.036205630749464035, + -0.023848019540309906, + -0.016569728031754494, + 0.011513637378811836, + 0.013975868001580238, + -0.001354033243842423, + 0.023615732789039612, + 0.011041322723031044, + 0.004328260663896799, + -0.0043785893358290195, + 0.002202844712883234, + -0.0028880881145596504, + 0.00653497688472271, + -0.003027459606528282, + 0.03546231612563133, + -0.01306995376944542, + 0.037041857838630676, + -0.03509065508842468, + -0.013921668753027916, + -0.01776212826371193, + -0.008346806280314922, + -0.02459133416414261, + 0.00986440759152174, + 0.01847447268664837, + 0.0029287380166351795, + 0.009469522163271904, + 0.007704149000346661, + -0.01231115311384201, + -0.01972881518304348, + 0.0033255598973482847, + -0.00048223522026091814, + -0.013836496509611607, + 0.009438550099730492, + -0.004703789483755827, + -4.48541650257539e-5, + 0.01025929395109415, + 0.018691271543502808, + 0.013821011409163475, + -0.011660751886665821, + 0.0009422096773050725, + 0.011761409230530262, + -0.017622757703065872, + 0.0006707255379296839, + 0.004374717827886343, + 0.003530745627358556, + 0.011211666278541088, + 0.03329431265592575, + 0.01388295367360115, + -0.012195009738206863, + -0.001606644131243229, + -0.009035921655595303, + 0.014657240360975266, + 0.004978660959750414, + -0.011482666246592999, + 0.007440891582518816, + -0.021292874589562416, + 0.0334181971848011, + -0.016863957047462463, + -0.007173763122409582, + -0.017746642231941223, + 0.01729755662381649, + 0.00036875385558232665, + 8.51714939926751e-5, + -0.011196180246770382, + 0.008184206672012806, + -0.012380838394165039, + 0.02248527482151985, + 0.004696046467870474, + -0.005528404377400875, + -0.019620416685938835, + 0.00509867537766695, + 0.031110825017094612, + -0.003310074098408222, + -0.010298008099198341, + 0.01201692409813404, + 0.011265866458415985, + 0.027626536786556244, + 0.006488519720733166, + -0.0005458718515001237, + -0.0059620048850774765, + -0.002831952180713415, + -0.005660033319145441, + -0.01457206904888153, + -0.010569008067250252, + 0.017282070592045784, + 0.005942647811025381, + 0.0017769871046766639, + -0.020162416622042656, + 0.022733047604560852, + -0.016445841640233994, + 0.010894209146499634, + -0.01835058629512787, + 0.0002305921516381204, + 0.04577580839395523, + -0.005253532901406288, + 0.040603574365377426, + 0.0030526239424943924, + 0.011544609442353249, + -0.026898708194494247, + -0.00965535081923008, + -0.009430808015167713, + 0.016368413344025612, + 0.005934904795140028, + -0.0039236960001289845, + -0.038590431213378906, + 0.020750874653458595, + -0.00820743478834629, + 0.025566935539245605, + 0.04134688898921013, + 0.011761409230530262, + -0.022206531837582588, + 0.023739619180560112, + -0.0036062386352568865, + 0.004757989663630724, + 0.01407652534544468, + -0.019837215542793274, + 0.013666153885424137, + -0.00668983394280076, + 0.02115350216627121, + 0.0018592550186440349, + -0.015950297936797142, + -0.007096334360539913, + 0.016894927248358727, + -0.00197152653709054, + 0.009237236343324184, + 0.02592310681939125, + -0.02257818914949894, + -0.014719183556735516, + -0.005772304721176624, + -0.01931070163846016, + -0.00340298842638731, + -0.027998194098472595, + -0.0049825324676930904, + 0.003720445791259408, + 0.002096380339935422, + 0.0038482029922306538, + -0.0029790666885674, + 0.0008788150153122842, + -0.002102187369018793, + 0.00326168118044734, + -0.02994939498603344, + -0.0032481311354786158, + -0.004301160573959351, + 0.015416041016578674, + -0.003555909963324666, + -0.01692589931190014, + -0.0038830460980534554, + 0.004281803499907255, + 0.005249661393463612, + -0.030352024361491203, + -0.0003798842371907085, + -0.018025385215878487, + 0.018753215670585632, + 0.002973259426653385, + -0.02403384819626808, + -0.01951201632618904, + -0.0012495046248659492, + 0.03766128793358803, + -0.004289546515792608, + -0.012117581441998482, + -0.010731608606874943, + -0.023104704916477203, + 0.011769152246415615, + 0.014386240392923355, + 0.011560095474123955, + 0.004688303917646408, + 0.021958760917186737, + -0.008447463624179363, + -0.012164038605988026, + 0.0004933655727654696, + 0.027796879410743713, + 0.004591518081724644, + -0.01396812591701746, + -0.009283693507313728, + 0.007196991704404354, + 0.01712721399962902, + -0.02144773118197918, + -0.004243089351803064, + 0.0029035736806690693, + 0.023228589445352554, + -0.01411523949354887, + 0.0015650262357667089, + -0.01680201292037964, + 0.011815609410405159, + 0.017498871311545372, + 0.01158332359045744, + 0.010267036966979504, + 0.006279462017118931, + -0.0011749794939532876, + -0.020874759182333946, + -0.012589896097779274, + -0.01838155835866928, + 0.012667324393987656, + -0.0033778240904212, + 0.003155216807499528, + -0.003691410180181265, + -0.0018437693361192942, + -0.0055709900334477425, + -0.00889655016362667, + 0.011567837558686733, + 0.016430355608463287, + -0.02078184485435486, + 0.005617447197437286, + -0.029748080298304558, + 0.07526063174009323, + -0.020239844918251038, + 0.006705319508910179, + 0.003950796090066433, + 0.007375077344477177, + 0.0061826761811971664, + 0.014517868869006634, + 0.004274060484021902, + 0.039055004715919495, + 0.010561265982687473, + -0.011753666214644909, + -0.01884612999856472, + 0.02872602269053459, + -0.0003206029359716922, + -0.014587554149329662, + -0.0127137815579772, + 0.0098876366391778, + 0.002154451794922352, + 0.020890245214104652, + 0.02521076239645481, + 0.009353378787636757, + -0.010747094638645649, + -0.012737010605633259, + 0.001088840188458562, + -0.0050135040655732155, + 0.011374265886843204, + -0.0068872771225869656, + -0.021416760981082916, + 0.023306019604206085, + 0.013356439769268036, + 0.004126945976167917, + 0.0031242454424500465, + -0.005640675779432058, + -0.00856360699981451, + -0.006647248286753893, + 0.02093670330941677, + 0.011250380426645279, + 0.029035737738013268, + -0.007870621047914028, + 0.002874538069590926, + 0.012396324425935745, + -0.027502650395035744, + 0.02717745117843151, + 0.023770591244101524, + -0.023476362228393555, + 0.0029790666885674, + -0.01695687137544155, + -0.008184206672012806, + -0.010328980162739754, + -0.0007268612971529365, + 0.003668181598186493, + -0.017018813639879227, + -0.008641035296022892, + 0.014463668689131737, + 0.02110704593360424, + 0.0077506061643362045, + 0.015176012180745602, + -0.0041463035158813, + -0.0017740835901349783, + 0.002394480397924781, + -0.017235614359378815, + -0.0075454204343259335, + -0.002171873115003109, + -0.027409736067056656, + -0.015485726296901703, + 0.010298008099198341, + -0.020750874653458595, + 0.013201582245528698, + -0.007448634598404169, + 0.0029635808896273375, + 0.004394074901938438, + -0.023445390164852142, + 0.025582419708371162, + -0.02894282341003418, + -0.0035713957622647285, + 0.006047176197171211, + 0.004320517648011446, + 0.02169550396502018, + 0.03165282681584358, + -0.019589444622397423, + 0.006198162212967873, + 0.008284864015877247, + -0.010677408427000046, + -0.008842349983751774, + 0.006484648212790489, + -0.005787790287286043, + 0.01670909859240055, + -0.010932923294603825, + -0.002026694593951106, + -0.01985270157456398, + -0.021261902526021004, + -0.006256233435124159, + -0.00012158715253463015, + -0.004215989261865616, + -0.00499414699152112, + -0.007042134180665016, + -0.00037843245081603527, + -0.014161696657538414, + -0.002344151958823204, + -0.006968576926738024, + 0.01082452293485403, + -0.0035926885902881622, + 0.0008018703083507717, + -0.006205905228853226, + 0.006562076508998871, + 0.011544609442353249, + 0.01926424354314804, + 0.01118069514632225, + -0.027038078755140305, + 0.018412528559565544, + 0.00504834670573473, + -0.014417211525142193, + 0.010027008131146431, + -0.005315475631505251, + -0.01918681524693966, + 0.0009030114160850644, + -4.173887282377109e-5, + 0.0064730336889624596, + -0.016848471015691757, + -0.012845410034060478, + 0.016275499016046524, + 0.0007602524128742516, + -0.012458267621695995, + -0.007061491254717112, + -0.021726474165916443, + 0.008594578132033348, + -0.002642252016812563, + -0.002237687585875392, + 0.009817950427532196, + -0.0018640944035723805, + 0.022671103477478027, + 0.018288644030690193, + 0.007584134582430124, + -0.011482666246592999, + 0.00852489285171032, + -0.0045760320499539375, + -0.03233419731259346, + 0.01526892650872469, + 0.02027081698179245, + -0.02366219088435173, + 0.016368413344025612, + -0.0019086158135905862, + 0.007533805910497904, + 0.02090573124587536, + 0.015694784000515938, + -0.006747905630618334, + 0.003703024471178651, + -0.022237503901124, + 0.025737278163433075, + 0.0031648953445255756, + 0.021308360621333122, + -0.025985049083828926, + -0.002378994831815362, + -0.010212836787104607, + 5.5228392739081755e-5, + 0.002644187770783901, + -0.016523269936442375, + 0.027487164363265038, + -0.034657057374715805, + 0.000994957983493805, + -0.0035346171353012323, + -0.007328620180487633, + -0.008764921687543392, + 0.00932240765541792, + -0.010909694246947765, + 0.026186363771557808, + 0.016012242063879967, + 0.0060394336469471455, + 0.010615465231239796, + -0.007015034090727568, + -0.003999189008027315, + -0.0011827223934233189, + 0.016105156391859055, + -0.018335100263357162, + -0.005021247081458569, + 0.006515619345009327, + 0.0012698295759037137, + 0.016260012984275818, + -0.007785449270159006, + 0.004223731812089682, + 0.00499414699152112, + 0.001848608604632318, + 0.025582419708371162, + 0.010677408427000046, + -0.0015882548177614808, + -0.025535963475704193, + 0.020007558166980743, + -0.015857383608818054, + 0.019047444686293602, + 0.0039314390160143375, + -0.012272438034415245, + 0.006995677016675472, + 0.012078867293894291, + -0.0019579764921218157, + 0.0037940030451864004, + -0.0030003595165908337, + 0.0331704281270504, + 0.02479264885187149, + 0.004421174991875887, + -0.0038540102541446686, + -0.018660301342606544, + -0.014347526244819164, + 0.020286301150918007, + 0.012798952870070934, + 0.007386691868305206, + -0.020054016262292862, + -0.021494189277291298, + -0.011002608574926853, + -0.011567837558686733, + -0.001354033243842423, + -0.034780941903591156, + -0.013232553377747536, + 0.008672007359564304, + 0.00982569344341755, + -0.015067611820995808, + 0.014153954572975636, + 0.0019241014961153269, + 0.01763824187219143, + -0.003867560299113393, + -0.0033023313153535128, + 0.002535787643864751, + 0.004285675007849932, + -0.0029480953235179186, + -0.019666872918605804, + 0.0109948655590415, + -0.008191949687898159, + -0.003327495651319623, + -0.00397983193397522, + -0.012435038574039936, + -0.008780406787991524, + 0.014184925705194473, + -0.014788868837058544, + 0.004734761081635952, + 0.021261902526021004, + -0.0018757086945697665, + 0.029500309377908707, + 0.011111008934676647, + -0.014386240392923355, + 0.010739351622760296, + 0.007061491254717112, + -0.010545779950916767, + 0.009934093803167343, + -0.005780047737061977, + -0.02010047249495983, + -0.007514448836445808, + -0.003948860336095095, + 0.005598090123385191, + 0.01742144301533699, + 0.009709550999104977, + -3.218127676518634e-5, + -0.002531916368752718, + -0.007111819926649332, + -0.022098131477832794, + 0.004692175425589085, + 0.020162416622042656, + 0.01327901054173708, + 0.005129646975547075, + 0.005311604123562574, + -0.008153235539793968, + -0.025783734396100044, + 0.013619696721434593, + -0.0005226432695053518, + -0.011064551770687103, + -0.005760690197348595, + 0.00975600816309452, + -0.003962410148233175, + -0.034409284591674805, + 0.005075446795672178, + -0.009268207475543022, + 0.006047176197171211, + 0.012791209854185581, + 0.006809848360717297, + -0.0016376156127080321, + 0.004440532065927982, + -0.001554379821754992, + -0.0022454303689301014, + 0.003751417389139533, + 0.006383990868926048, + -0.017142700031399727, + -0.005234175827354193, + -0.00403016060590744, + -0.008176463656127453, + 0.0077428631484508514, + -0.0016221299301832914, + -0.003937245812267065, + -0.011219409294426441, + 0.01582641340792179, + 0.00348622421734035, + 0.00035471993032842875, + 0.007049877196550369, + -0.0029403523076325655, + -0.003503645770251751, + -0.0028764738235622644, + -0.009585664607584476, + 0.0025067520327866077, + 0.02135481685400009, + 0.01800990104675293, + -0.007669306360185146, + 0.020069502294063568, + -0.015485726296901703, + -0.005745204631239176, + -0.011753666214644909, + 0.010019265115261078, + -0.021896816790103912, + -0.00011160611757077277, + 0.0071931201964616776, + 0.0028590522706508636, + 0.0011740116169676185, + -0.0163374412804842, + 0.016383899375796318, + -0.002278337487950921, + -0.003143602516502142, + -0.019248757511377335, + -0.022005217149853706, + -0.0050367326475679874, + -0.017436929047107697, + 0.013464839197695255, + 0.017855042591691017, + -0.01334095373749733, + 0.004475375171750784, + -0.019542986527085304, + 0.005787790287286043, + 0.019930129870772362, + -0.01423912588506937, + 0.022887904196977615, + -0.016492299735546112, + -0.0026112806517630816, + 0.006426576524972916, + -0.013999097049236298, + 2.3258835426531732e-5, + 0.004169532097876072, + 0.016972357407212257, + -0.011281351558864117, + -0.010336722247302532, + 0.00090688286582008, + 0.019000986590981483, + -0.011165209114551544, + -0.0011294902069494128, + -0.022624647244811058, + 0.0007892881403677166, + -0.029593223705887794, + -0.013286753557622433, + -0.008478435687720776, + -0.009941836819052696, + -0.003778517246246338, + 0.025985049083828926, + -0.008238406851887703, + -0.008160977624356747, + -0.0026325734797865152, + -0.00036585028283298016, + -0.025241734459996223, + 0.007460248656570911, + 0.033108483999967575, + 0.02102961763739586, + -0.015129555016756058, + 0.0025977306067943573, + 0.018784185871481895, + 0.024281619116663933, + 0.0017808586126193404, + -0.005811018869280815, + 0.01174592413008213, + 0.020084988325834274, + -0.002820337889716029, + 0.006155576556921005, + 0.002427387749776244, + -0.021385788917541504, + 0.031172767281532288, + 0.010855494067072868, + -0.023104704916477203, + 0.019450072199106216, + 0.0006499165901914239, + -0.03375888615846634, + -0.012218238785862923, + 0.0007617041701450944, + -0.00795966386795044, + 0.023677676916122437, + 0.007928691804409027, + -0.003929503262042999, + 0.005056089721620083, + -0.015392811968922615, + 0.0005836183554492891, + 0.0031707026064395905, + -0.007166020106524229, + -0.017653727903962135, + 0.0052419183775782585, + 0.009136578999459743, + 0.022299446165561676, + 0.017777614295482635, + 0.025164306163787842, + -0.01918681524693966, + 0.003550102934241295, + 0.02496299147605896, + 0.02479264885187149, + -0.004924461245536804, + -0.008780406787991524, + 0.0009804400615394115, + -0.011653009802103043, + 0.01734401471912861, + 0.015462498180568218, + -0.0001916358742164448, + -8.6139356426429e-5, + -0.01591932773590088, + 0.013999097049236298, + -0.00994957983493805, + -0.010483836755156517, + -0.011962723918259144, + -0.012218238785862923, + 0.023398933932185173, + 0.015888355672359467, + 0.0005589379579760134, + -0.010576751083135605, + 0.009105606935918331, + -0.013116410933434963, + -0.013813268393278122, + 0.01334095373749733, + -0.013488068245351315, + -0.005896190647035837, + 0.0011440080124884844, + 0.0155399264767766, + -0.010073465295135975, + 0.004835417959839106, + -0.002394480397924781, + 0.0034533170983195305, + 0.008493920788168907, + 0.005834247451275587, + -0.006364633794873953, + 0.032148368656635284, + -0.005071575287729502, + -0.006105247884988785, + 0.017653727903962135, + 0.014293326064944267, + -0.034068599343299866, + -0.023894475772976875, + 0.003255874151363969, + -0.029329966753721237, + -0.009647607803344727, + 0.01444818265736103, + 0.010561265982687473, + 0.004688303917646408, + 0.006027819123119116, + -0.00754929194226861, + 0.001542765530757606, + -0.005954261869192123, + -0.004998018499463797, + 0.010019265115261078, + 0.0029945524875074625, + -0.015028897672891617, + -0.010166379623115063, + -0.01972881518304348, + -0.023151161149144173, + -0.005586476065218449, + -0.0064962622709572315, + -0.0029810024425387383, + 0.0019047444220632315, + -0.0032578096725046635, + -0.015477984212338924, + 0.0026925806887447834, + -0.005954261869192123, + 0.010181865654885769, + 0.0032094167545437813, + 0.014997926540672779, + 0.00708859134465456, + 0.010243807919323444, + -0.004556674975901842, + -0.006658862344920635, + 0.012179523706436157, + 0.011141980066895485, + 0.011188437230885029, + -0.003598495852202177, + 0.009105606935918331, + 0.0010849686805158854, + 0.01579544134438038, + 0.036298543214797974, + 0.0058845761232078075, + 0.016136126592755318, + 0.016894927248358727, + -0.02378607541322708, + -0.005532275885343552, + -0.0004544092807918787, + -0.0016879441682249308, + -0.014014583081007004, + -0.017560813575983047, + -0.006233004853129387, + -0.01168398093432188, + 0.029500309377908707, + -0.02102961763739586, + -0.006194290705025196, + 0.0093998359516263, + -0.007042134180665016, + -9.872150985756889e-5, + 0.018489956855773926, + 0.024219676852226257, + 0.004475375171750784, + -0.003811424598097801, + 0.009802465327084064, + -0.026077963411808014, + 0.02349184826016426, + -0.009097864851355553, + -0.0025067520327866077, + -0.008679749444127083, + 0.020534073933959007, + -0.0007820291793905199, + -0.006898891180753708, + -0.00572584755718708, + 0.019837215542793274, + -0.002042180160060525, + -0.010561265982687473, + 0.018164757639169693, + 0.00015340547543019056, + -0.007417663000524044, + 0.001101422356441617, + -0.013170610181987286, + -0.028617622330784798, + 0.0139448968693614, + -0.007990635000169277, + 0.010019265115261078, + -0.01334095373749733, + -0.005292247049510479, + 0.029004765674471855, + 0.004061131738126278, + 0.01624452695250511, + -0.020503101870417595, + 0.0003772226336877793, + 0.013294496573507786, + 0.009802465327084064, + -0.007301520090550184, + 0.0002964064769912511, + -0.0006842755246907473, + -0.00012436974793672562, + -0.018443500623106956, + -0.013720354065299034, + 0.011296837590634823, + -0.008323578163981438, + -0.03756837174296379, + 0.009260464459657669, + 0.004591518081724644, + 0.007169891614466906, + -0.008277120999991894, + 0.03375888615846634, + -0.03086305409669876, + 0.01663167029619217, + 0.014935983344912529, + -0.011234894394874573, + -0.012125324457883835, + -0.019883673638105392, + 0.0002564823371358216, + 0.0011672367108985782, + 0.00766543485224247, + -0.00015086485655047, + 0.007173763122409582, + -0.017947956919670105, + 0.0015853513032197952, + 0.008610064163804054, + 0.019031958654522896, + 0.028849909082055092, + -0.021726474165916443, + 0.016678128391504288, + -0.021509675309062004, + 0.0020983158610761166, + 0.010638694278895855, + 0.023693161085247993, + 0.005818761885166168, + 0.005586476065218449, + -0.004978660959750414, + -0.029810024425387383, + 0.008997207507491112, + 0.0187996719032526, + 0.002402223413810134, + 0.024575848132371902, + -0.003097145352512598, + -0.0068563055247068405, + -0.008439721539616585, + -0.009260464459657669, + -0.026356706395745277, + -0.009523722343146801, + -0.001896033645607531, + -0.018505442887544632, + -0.01101809460669756, + 0.011831095442175865, + -0.005172232631593943, + 0.008826863951981068, + -0.008493920788168907, + 0.0020363731309771538, + -0.007982891984283924, + 0.004343746230006218, + 0.021834874525666237, + 0.006395604927092791, + 0.006465291138738394, + 0.014626269228756428, + -0.009678578935563564, + 0.015044383704662323, + -0.021958760917186737, + -0.008145492523908615, + 0.004626360721886158, + 0.005733590107411146, + 0.014881783165037632, + -0.007762220688164234, + 0.0056561618112027645, + -0.01470369752496481, + -0.02508687786757946, + -0.014750154688954353, + 0.0036894744262099266, + 0.01423912588506937, + -0.00850166380405426, + -0.015640584751963615, + 0.012922839261591434, + 0.0003019716823473573, + 0.008277120999991894, + -0.00346105988137424, + -0.009012692607939243, + -0.004870261065661907, + -0.0035888170823454857, + 0.01788601465523243, + -0.0062446193769574165, + 0.018536414951086044, + -0.007278291508555412, + 0.023104704916477203, + -0.016058698296546936, + 0.026650935411453247, + -0.0071389200165867805, + -0.012977039441466331, + 0.0009078507428057492, + 0.00026228948263451457, + -0.0033294311724603176, + -0.011258123442530632, + -0.009608893655240536, + 0.008362292312085629, + 0.010236065834760666, + 0.025319162756204605, + -0.0014643690083175898, + 0.0127137815579772, + 0.0025977306067943573, + -0.011405237950384617, + -0.02697613649070263, + -0.0010298008564859629, + -0.014424954541027546, + 0.011838838458061218, + 0.015803184360265732, + -0.011467180214822292, + -0.014215896837413311, + 0.0037591601721942425, + -0.003613981418311596, + -0.014378497377038002, + -0.012558924034237862, + 0.0010869044344872236, + -0.004912846721708775, + 0.019155843183398247, + -0.0002828564902301878, + -0.0012088544899597764, + -0.0008681685430929065, + 7.198443199740723e-5, + -0.0019502337090671062, + -0.02488556317985058, + 0.008633292280137539, + 0.01926424354314804, + -0.0037707744631916285, + -0.0036410815082490444, + -0.006713062524795532, + 0.03852848708629608, + 0.00567551888525486, + -0.041192032396793365, + -0.012466009706258774, + 0.002560951979830861, + 0.026898708194494247, + -0.013170610181987286, + -0.0010046365205198526, + -0.013495811261236668, + 0.004026289097964764, + -0.00594651885330677, + -0.009004950523376465, + 0.003137795487418771, + -0.009546950459480286, + -0.01599675603210926, + 0.011405237950384617, + 0.0018147336086258292, + 0.011699466966092587, + -0.008594578132033348, + -0.008439721539616585, + 0.021556131541728973, + -0.010189608670771122, + -0.002030565869063139, + -0.008540377952158451, + -0.0003014877438545227, + -0.008153235539793968, + -1.2317504115344491e-5, + -0.01692589931190014, + 0.01599675603210926, + -0.01822669990360737, + -0.0030081025324761868, + -0.002137030242010951, + -0.0018060228321701288, + -0.0073905629105865955, + -0.00850166380405426, + -0.0026480592787265778, + 0.006968576926738024, + 0.006759519688785076, + 0.008075806312263012, + -0.021215446293354034, + -0.01914035901427269, + -0.0028242093976587057, + -0.019542986527085304, + 0.005927161779254675, + 0.0008173559908755124, + -0.008540377952158451, + -0.0027854950167238712, + -0.02906670980155468, + 0.015508955344557762, + 0.0223613902926445, + 0.007456377614289522, + 0.0004587646690197289, + 0.01864481531083584, + -0.009345635771751404, + 0.004467632155865431, + 0.005540018901228905, + -0.01909390091896057, + -0.012280181050300598, + -0.015733499079942703, + 0.012760238721966743, + -0.023352475836873055, + -0.001118843792937696, + 0.004866389557719231, + -0.010901951231062412, + -0.025938592851161957, + 0.0018795800860971212, + -0.013356439769268036, + -0.019326187670230865, + -0.0002823725517373532, + 0.006178805138915777, + -0.005687132943421602, + 0.0011875616619363427, + 0.032396141439676285, + 0.010909694246947765, + -0.0006629826966673136, + 0.006511748302727938, + 0.0024932019878178835, + -0.004289546515792608, + 0.010545779950916767, + 0.008989464491605759, + -0.01337966788560152, + 0.0371038019657135, + -0.016786526888608932, + -0.017901500687003136, + -0.010057979263365269, + 0.002595794852823019, + 0.004529574885964394, + -0.021726474165916443, + -0.006732419598847628, + 0.0007268612971529365, + -0.01776212826371193, + 0.024049334228038788, + -0.01509858388453722, + -0.015106326900422573, + 0.015501212328672409, + -0.012558924034237862, + 0.02613990753889084, + 0.005896190647035837, + -0.011877552606165409, + -0.012466009706258774, + 0.012295667082071304, + 0.03490482643246651, + 0.013960382901132107, + 0.01526892650872469, + -0.003168766852468252, + -0.002142837503924966, + -0.0053193471394479275, + 0.0013811332173645496, + -0.000777189910877496, + -0.014107497408986092, + 0.014092011377215385, + 0.03775420039892197, + 0.001995722996070981, + 0.019155843183398247, + -0.00625236239284277, + -0.014215896837413311, + 0.019713331013917923, + -0.012729267589747906, + -0.0019492658320814371, + -0.0025861163157969713, + 0.005900061689317226, + 0.02675933577120304, + 0.010065722279250622, + -0.011544609442353249, + -0.010592237114906311, + 0.0008434882038272917, + -0.014990183524787426, + 0.003714638762176037, + 0.02403384819626808, + 0.009237236343324184, + 0.00806032121181488, + 0.00625236239284277, + 0.02274853177368641, + 0.00748734874650836, + -0.018830643966794014, + 0.0009073668043129146, + 0.02894282341003418, + 0.005942647811025381, + -0.006500133778899908, + -0.01174592413008213, + -0.004185017663985491, + -0.016678128391504288, + 0.0040417746640741825, + -0.018861616030335426, + -0.001466304762288928, + -0.010476093739271164, + -0.03626757115125656, + 0.013836496509611607, + -0.017870528623461723, + -1.3028275134274736e-5, + 0.003433960024267435, + 0.0035423599183559418, + 0.006031690631061792, + -0.001407265430316329, + -0.003861753037199378, + -0.010646437294781208, + 0.009647607803344727, + 0.0055787330493330956, + -0.0061904191970825195, + -0.0078048063442111015, + -0.009415321983397007, + 0.006763391196727753, + -0.006747905630618334, + -0.0018795800860971212, + 0.019450072199106216, + -0.02073538862168789, + -0.03533842787146568, + 0.009500493295490742, + -0.01072386559098959, + 0.011738181114196777, + 0.004881875589489937, + -0.0197752732783556, + -0.020162416622042656, + -0.004781218245625496, + -0.012721524573862553, + -0.004804446827620268, + 0.013480325229465961, + -0.007429277524352074, + 0.003296524053439498, + 0.005176104139536619, + 0.02329053357243538, + 0.0238325335085392, + 0.008431978523731232, + -0.02294984646141529, + -3.487313006189652e-5, + 0.009794722311198711, + 0.0009562436025589705, + 0.017018813639879227, + -0.006987934000790119, + -0.0002509171608835459, + 0.004746375139802694, + -0.0032113525085151196, + 0.013929410837590694, + 0.013503553345799446, + 0.025489505380392075, + -0.01337966788560152, + -0.013821011409163475, + -0.006929862778633833, + -0.03279877081513405, + -0.021292874589562416, + 0.00783577747642994, + 0.002673223614692688, + 0.022051675245165825, + 0.0179324708878994, + -0.009763751178979874, + -0.020766358822584152, + 0.007351848762482405, + -0.004154046066105366, + -0.015400554984807968, + 0.0018050550715997815, + -0.005671647377312183, + -0.009500493295490742, + -0.021261902526021004, + -0.011498152278363705, + 0.01396812591701746, + -0.014610783196985722, + 0.003615917172282934, + 0.00022744660964235663, + 0.008052578195929527, + 0.0018728050636127591, + 0.021463217213749886, + 0.006999548524618149, + -0.008052578195929527, + 0.013495811261236668, + -0.0034126669634133577, + 0.016476813703775406, + -0.008710721507668495, + 0.00013114474131725729, + 0.03530745580792427, + -0.017731158062815666, + 0.007642206270247698, + 0.010971637442708015, + -0.0023867376148700714, + 0.014479154720902443, + 0.014262354001402855, + -0.002930673770606518, + -0.0029945524875074625, + -0.004831546917557716, + 0.014030068181455135, + -0.0074679916724562645, + -0.009314664639532566, + -0.005934904795140028, + 0.0005482914857566357, + -0.008981721475720406, + -0.006554333958774805, + -0.006368505302816629, + -0.004053389187902212, + -0.0008720399928279221, + -0.03828071802854538, + -0.012032410129904747, + -0.011885295622050762, + 0.01574898324906826, + -0.03694894537329674, + -0.01221049576997757, + -0.00795966386795044, + 0.01533086970448494, + -0.013867468573153019, + 0.00963212177157402, + 0.004792832303792238, + 0.005857476033270359, + 0.008377778343856335, + 0.005168361123651266, + -0.01451012585312128, + -0.006647248286753893, + 0.004363103304058313, + 0.0008434882038272917, + 0.002667416352778673, + 0.002013144548982382, + 0.007808677852153778, + -0.0011943366844207048, + -0.021091559901833534, + -0.018118299543857574, + 0.008021606132388115, + 0.011714952066540718, + 0.007003420032560825, + -0.011103265918791294, + -0.0056329332292079926, + -0.0035171955823898315, + -0.01997658796608448, + -0.020239844918251038, + -0.008540377952158451, + 0.006991805508732796, + 0.004506346303969622, + -0.005780047737061977, + -0.00090688286582008, + -0.006186547689139843, + -0.019620416685938835, + 0.0004401333862915635, + -0.00153115123976022, + -0.0007636399241164327, + -0.013426125049591064, + 0.012698295526206493, + -0.006763391196727753, + 0.0004640878760255873, + 0.01872224360704422, + 0.008757178671658039, + -0.0005661968607455492, + -0.01022057980298996, + 0.0004181146214250475, + -0.004548932425677776, + -0.023600246757268906, + 0.009523722343146801, + -0.010870980098843575, + -0.015152784064412117, + 0.01867578737437725, + -0.004301160573959351, + 0.01088646613061428, + -0.012729267589747906, + 0.0027951737865805626, + -0.023275047540664673, + -0.015447012148797512, + 0.018149271607398987, + 0.009879893623292446, + 0.026356706395745277, + -0.011474923230707645, + 0.014254611916840076, + -0.004517960827797651, + -0.006031690631061792, + -0.021896816790103912, + 0.014231382869184017, + -0.02559790574014187, + 0.01520698331296444, + -0.01195498090237379, + 0.0041463035158813, + -0.005594218615442514, + -0.019279729574918747, + -8.087662718025967e-5, + -0.0001541313686175272, + 0.01417718268930912, + -0.0005236111464910209, + 0.01855190098285675, + -0.010336722247302532, + -0.00043384230230003595, + -0.017374984920024872, + -0.0036081743892282248, + -0.007572520524263382, + -0.01855190098285675, + -0.018319614231586456, + 0.011203923262655735, + 0.02324407547712326, + -0.01717367023229599, + -0.013704868033528328, + 0.006248490884900093, + 0.03694894537329674, + -0.010630951263010502, + -0.004320517648011446, + 0.016445841640233994, + -0.014835326001048088, + 0.0026228949427604675, + -0.009957321919500828, + -0.029717110097408295, + 0.016678128391504288, + 0.03375888615846634, + -0.009639864787459373, + -0.040944263339042664, + 0.00027874307124875486, + -0.0206424742937088, + 0.014308811165392399, + 0.009833436459302902, + 0.01763824187219143, + -0.003792067291215062, + 0.03697991371154785, + 0.007611234672367573, + 0.0010627079755067825, + 0.0014934047358110547, + -0.007111819926649332, + -0.011041322723031044, + 0.0011352973524481058, + 0.01599675603210926, + -0.042152147740125656, + -0.02567533403635025, + 0.0026480592787265778, + -0.0011120687704533339, + 0.007301520090550184, + -0.008850092999637127, + -0.002961645135655999, + -0.021710988134145737, + -0.006844691000878811, + -0.00879589281976223, + 0.0030119738075882196, + 0.016105156391859055, + 0.0004086779954377562, + -0.002067344496026635, + 0.0008149363566190004, + 0.002154451794922352, + 0.014657240360975266, + -0.010112179443240166, + -0.011482666246592999, + 0.005563247483223677, + -0.008114520460367203, + 0.028431793674826622, + -0.0012466009939089417, + -0.04301935061812401, + -0.007812549360096455, + -0.005613576155155897, + 0.005474204197525978, + 0.01621355675160885, + 6.841545837232843e-5, + -0.02316664718091488, + -0.0163374412804842, + 0.026960650458931923, + 0.009725036099553108, + 0.0032752312254160643, + 0.010925180278718472, + 0.027425222098827362, + -0.021138016134500504, + -0.0031416667625308037, + 0.011924009770154953, + -0.02408030442893505, + 0.01985270157456398, + -0.006809848360717297, + 0.015485726296901703, + -0.004777346737682819, + 0.014502382837235928, + 0.0011343294754624367, + 0.003811424598097801, + 0.018040871247649193, + -0.00038496547495014966, + -0.0016860085306689143, + 0.019573958590626717, + -0.018582871183753014, + 0.013077695854008198, + 0.013371924869716167, + -0.009260464459657669, + -0.004800575319677591, + -0.006883405614644289, + 0.010948408395051956, + -0.009918607771396637, + 0.013813268393278122, + 0.009918607771396637, + -0.002218330278992653, + -0.003391374135389924, + 0.005292247049510479, + -0.017514357343316078, + 0.016012242063879967, + 0.0025415949057787657, + 0.00820743478834629, + -0.005249661393463612, + 0.0011440080124884844, + 0.01722012832760811, + -0.00019236176740378141, + -0.00703826267272234, + 0.0007529934518970549, + -5.9886209783144295e-5, + -0.0009615668677724898, + -0.028710536658763885, + 0.0018495764816179872, + 0.010375437326729298, + 0.012094352394342422, + 0.00028938951436430216, + -0.004614746663719416, + -0.01766921393573284, + -0.0003939181624446064, + -0.0029577738605439663, + -0.024281619116663933, + -0.001324997516348958, + -0.006000719033181667, + 0.0064730336889624596, + -0.0019173265900462866, + 0.0068795341067016125, + 0.002860988024622202, + 0.034997742623090744, + -0.005385161377489567, + 0.006515619345009327, + -0.012613124214112759, + -0.021540645509958267, + -0.021927788853645325, + 0.0026887094136327505, + -0.012783467769622803, + -0.009810208342969418, + 0.020874759182333946, + 0.009004950523376465, + -0.0033875026274472475, + 0.014293326064944267, + 0.015439269132912159, + -0.014030068181455135, + 0.0007341202581301332, + 0.003414602717384696, + 0.0075454204343259335, + -0.018908072263002396, + 0.0321793407201767, + 0.003472674172371626, + 0.01692589931190014, + 0.00275452365167439, + 0.0019995945040136576, + -0.006469162181019783, + 0.012837667018175125, + -0.005400647409260273, + 0.0017944085411727428, + -0.0029480953235179186, + -0.010313494130969048, + 0.012225980870425701, + -0.013991354033350945, + -0.010228322818875313, + 0.02245430462062359, + -0.006442062556743622, + 0.01779310032725334, + 0.00048271912964992225, + -0.006023947615176439, + 0.02626379206776619, + -0.004866389557719231, + 0.021432245150208473, + 0.005760690197348595, + 0.012303410097956657, + -0.011087780818343163, + -0.0038191673811525106, + -0.01612064242362976, + 0.026155391708016396, + -0.023739619180560112, + 0.006705319508910179, + 0.013085438869893551, + 0.01847447268664837, + 0.00431277509778738, + -0.015021154657006264, + 0.0033352384343743324, + -0.012334381230175495, + -0.009175293147563934, + 0.017947956919670105, + 0.015718013048171997, + 0.002733230823650956, + 0.010716122575104237, + -0.01241955254226923, + -0.009260464459657669, + -0.008377778343856335, + -0.01118069514632225, + -0.012357610277831554, + 0.009934093803167343, + -0.012125324457883835, + -0.03552425652742386, + -0.014928240329027176, + 0.022764017805457115, + 0.016600698232650757, + 0.013712611049413681, + -0.013371924869716167, + -0.03129665553569794, + 0.007762220688164234, + -0.002589987823739648, + 0.00680597685277462, + -0.009872150607407093, + 0.01009669341146946, + 0.0014092011842876673, + 0.011807866394519806, + -0.015741242095828056, + -0.01776212826371193, + 0.006515619345009327, + 0.0012824117438867688, + -0.011358780786395073, + 0.008943007327616215, + -0.004142432007938623, + 0.008478435687720776, + -0.011529123410582542, + 0.02420419082045555, + -0.011072294786572456, + 0.014920497313141823, + -0.0013821010943502188, + 0.005152875557541847, + -0.0050135040655732155, + 0.011838838458061218, + 0.009283693507313728, + -0.0030874668154865503, + 0.024606820195913315, + -0.008664264343678951, + 0.00442891800776124, + 0.011041322723031044, + -0.006658862344920635, + -0.021246416494250298, + 0.01265183836221695, + -0.012318895198404789, + 0.014386240392923355, + -0.01783955655992031, + -0.002855180762708187, + 0.015152784064412117, + 0.005485818721354008, + 0.0034242812544107437, + -0.0037339958362281322, + -0.0013569367583841085, + 0.014223639853298664, + 0.005230304319411516, + 0.007046005688607693, + 0.008393263444304466, + -0.013356439769268036, + -0.004692175425589085, + -0.016430355608463287, + 0.015400554984807968, + -0.013604210689663887, + 0.016987841576337814, + -0.022005217149853706, + 0.012721524573862553, + -0.002713873516768217, + -0.022640133276581764, + -0.01520698331296444, + -0.016399385407567024, + 0.017235614359378815, + -0.012326638214290142, + -0.0031474740244448185, + 0.007731249090284109, + 0.014726926572620869, + 0.009670835919678211, + -0.006469162181019783, + -0.01562509872019291, + -0.0060162050649523735, + 0.020115958526730537, + -0.01897001452744007, + -0.010081208311021328, + 0.024978477507829666, + 0.01825767196714878, + -0.00963212177157402, + -0.02333698980510235, + 0.012411810457706451, + -0.014579812064766884, + 0.007766092196106911, + 0.011776895262300968, + -0.007378948852419853, + 0.008981721475720406, + 0.00862555019557476, + -0.019279729574918747, + -0.010344465263187885, + -0.02140127494931221, + -0.005872962065041065, + -0.007843520492315292, + -0.0036875386722385883, + 0.009848922491073608, + 0.002526109106838703, + -0.011637523770332336, + -0.01847447268664837, + -0.0016860085306689143, + 0.012969296425580978, + 0.014943726360797882, + 0.05395227298140526, + 0.031900595873594284, + -0.008788149803876877, + 0.0056793903931975365, + 0.010979380458593369, + -0.03794002905488014, + 0.008006121031939983, + 0.004901232663542032, + -0.008447463624179363, + -0.009608893655240536, + 0.0037998103071004152, + -0.011505895294249058, + 0.015516698360443115, + 0.017700185999274254, + -0.004289546515792608, + 0.015377326868474483, + -0.0163374412804842, + 0.006941476836800575, + 0.006786619778722525, + 0.0077738347463309765, + -0.004452146589756012, + 0.002791302278637886, + -0.0051606185734272, + -0.005555504467338324, + 0.015493469312787056, + -0.007808677852153778, + -0.0034939670003950596, + -0.01453335490077734, + -0.010267036966979504, + 0.010940666310489178, + 0.024513905867934227, + -0.01334095373749733, + -0.00975600816309452, + -0.007529934868216515, + -0.00799837801605463, + 0.016987841576337814, + 0.01530764065682888, + 0.007200862746685743, + 0.00566390436142683, + -0.012435038574039936, + -0.013805525377392769, + -0.00986440759152174, + 0.009771493263542652, + -0.029717110097408295, + 0.005660033319145441, + 0.020704416558146477, + -0.004165660589933395, + -0.0016289048362523317, + 0.0020867015700787306, + 0.007309263106435537, + -0.005439361557364464, + 0.011900780722498894, + -0.00975600816309452, + 0.0016027727397158742, + -0.0165852140635252, + 0.01931070163846016, + 0.026496078819036484, + -0.023383447900414467, + -0.007541548926383257, + 0.00048489682376384735, + 0.008029349148273468, + -0.01344161108136177, + 0.0031106953974813223, + 0.021246416494250298, + 0.00852489285171032, + 0.030104253441095352, + 0.011637523770332336, + 0.01327901054173708, + 0.015741242095828056, + -0.0036294672172516584, + 0.02668190747499466, + -0.01709624193608761, + -0.01084775198251009, + 0.005028989631682634, + -0.028369851410388947, + -0.014455925673246384, + -0.008803635835647583, + 0.00509867537766695, + -0.03166831284761429, + 0.015632841736078262, + 0.005292247049510479, + -0.015756726264953613, + 0.029840994626283646, + 0.005803276319056749, + -0.006349147763103247, + 0.011405237950384617, + -0.005636804737150669, + -0.013975868001580238, + -0.0139448968693614, + 0.001465336885303259, + -0.01629098504781723, + 0.009229493327438831, + -0.0032520026434212923, + -0.0006494326516985893, + 0.010336722247302532, + -0.0045450609177351, + -0.02164904586970806, + 0.009020435623824596, + 0.010189608670771122, + 0.01754532754421234, + -0.016771042719483376, + 0.01599675603210926, + -0.005996847525238991, + 0.0014062975533306599, + 0.003716574516147375, + -0.040231917053461075, + 0.022206531837582588, + 0.0023983519058674574, + 0.0014082333073019981, + 0.023925447836518288, + -0.014548840001225471, + 0.020363731309771538, + -0.006585305090993643, + -0.007429277524352074, + 0.012109838426113129, + 0.0034533170983195305, + -0.005284504033625126, + 0.022856932133436203, + 0.03496677055954933, + 0.012884125113487244, + -0.011776895262300968, + 0.0012872510123997927, + 0.008346806280314922, + 0.0059387763030827045, + 0.007406048942357302, + 0.004239217843860388, + -0.003157152561470866, + 0.016430355608463287, + -0.006333662196993828, + -0.02710002101957798, + 0.033696942031383514, + -0.002667416352778673, + -0.00986440759152174, + 0.019109386950731277, + 0.001742144231684506, + -0.014130725525319576, + 0.006480776704847813, + -0.007398305926471949, + -0.00023531046463176608, + -0.024637790396809578, + -0.009678578935563564, + -0.004351489245891571, + 0.018397042527794838, + 0.001118843792937696, + -0.0027293593157082796, + 0.008997207507491112, + -0.008641035296022892, + 0.009175293147563934, + 0.019372643902897835, + -0.0011111008934676647, + 0.012032410129904747, + -0.010042494162917137, + -0.007065362762659788, + -0.005087061319500208, + -0.0022105874959379435, + 0.006809848360717297, + -0.013828754425048828, + 0.03024362400174141, + -0.000759768474381417, + -0.020208872854709625, + -0.013248039409518242, + 0.010460608638823032, + 0.005927161779254675, + 0.006020076107233763, + 0.003716574516147375, + 0.006360762286931276, + -0.009872150607407093, + 0.004897361155599356, + 0.002286080503836274, + -0.007475734688341618, + -0.0032055454794317484, + -0.005721976049244404, + 0.00033633061684668064, + -0.017731158062815666, + 0.007502834778279066, + -0.008579093031585217, + 0.0027409736067056656, + -0.017436929047107697, + -0.012605381198227406, + 0.006414962466806173, + 0.03360402584075928, + 0.01722012832760811, + 0.016445841640233994, + 0.0034184742253273726, + 0.011258123442530632, + 0.0033642740454524755, + 0.005764561705291271, + 0.008470692671835423, + 0.00765382032841444, + 0.010205093771219254, + -0.004812189377844334, + 0.002324794651940465, + -0.003550102934241295, + -0.009237236343324184, + -0.01407652534544468, + 0.018195729702711105, + 0.0002564823371358216, + 0.018149271607398987, + -0.035493284463882446, + -0.005210947245359421, + -0.013271267525851727, + -0.0035288098733872175, + -0.0029790666885674, + -0.005199332721531391 + ], + "0655b0e4-6783-4fd6-a9a8-d6eee5b45921": [ + -0.011727056466042995, + 0.014297045767307281, + -0.01412307657301426, + 0.004831579048186541, + -0.04048720747232437, + -0.008809130638837814, + 0.020876215770840645, + 0.013427202589809895, + -0.03428760543465614, + 0.015111533924937248, + 0.007393660023808479, + 0.03751393035054207, + -0.009955741465091705, + -0.033623360097408295, + -0.017238693311810493, + 0.010572538711130619, + -0.03384477645158768, + 0.029369041323661804, + 0.00010903918882831931, + -0.011901024729013443, + 0.053424134850502014, + -0.009860849007964134, + -0.04627561196684837, + 0.023944387212395668, + -0.010137617588043213, + -0.011149797588586807, + 0.020053820684552193, + -0.010359032079577446, + -0.04118308052420616, + 0.012375484220683575, + 0.030191438272595406, + 0.0021311137825250626, + 0.0254942886531353, + 0.0028922257479280233, + 0.020781325176358223, + -0.030665896832942963, + 0.0010813722619786859, + 0.05301293730735779, + -0.02633250132203102, + 0.0029001336079090834, + -0.002261590212583542, + -0.006508002523332834, + 0.013427202589809895, + 0.014795227907598019, + -0.04893258586525917, + 0.02136649191379547, + 0.008223963901400566, + -0.03539467602968216, + 0.022868946194648743, + 0.010699060745537281, + -8.414241892751306e-5, + -0.05060901120305061, + -0.016179068014025688, + 0.02057572640478611, + -0.010928383097052574, + 0.013197881169617176, + -0.0052111465483903885, + 0.05086205527186394, + 0.0052151004783809185, + -0.0012434792006388307, + 0.0029673485551029444, + -0.021445568650960922, + -0.002724188147112727, + 0.02062317170202732, + -0.014178430661559105, + -0.02343829721212387, + 0.0032460936345160007, + 0.005914927925914526, + -0.05253847688436508, + -0.023106176406145096, + 0.022932207211852074, + 0.04823671281337738, + -0.03242139890789986, + -0.010533000342547894, + -0.036628272384405136, + 0.011655887588858604, + 0.0567769818007946, + -0.017507554963231087, + 0.017159616574645042, + -0.003809514222666621, + -0.03953829035162926, + 0.006994323339313269, + 0.0005999935092404485, + 0.005653975531458855, + 0.03605892136693001, + 0.010003186762332916, + -0.04627561196684837, + -0.05045085772871971, + 9.112340194405988e-5, + -0.02487749233841896, + -0.0009148171520791948, + -0.004641795065253973, + 0.030033284798264503, + -0.04048720747232437, + -0.02974860928952694, + 0.005582806654274464, + 0.07654612511396408, + 0.015071995556354523, + 0.011497734114527702, + -0.025952933356165886, + -0.0073066758923232555, + 0.007887888699769974, + -0.07256066799163818, + 0.007286906708031893, + -0.01023250911384821, + -0.023121992126107216, + 0.013743509538471699, + -0.010841398499906063, + -0.030207252129912376, + 0.09432253986597061, + 0.018092721700668335, + 0.002866525901481509, + 0.0065396330319345, + 0.018203428015112877, + -0.03039703704416752, + -0.09046360850334167, + 0.014660798013210297, + -0.023722972720861435, + 0.01130795106291771, + -0.03539467602968216, + 0.02339085191488266, + 0.04463082179427147, + 0.02131904475390911, + -0.005566990934312344, + -0.014154707081615925, + 0.01588648371398449, + -0.005669790785759687, + 0.002024360466748476, + -0.004372934810817242, + 0.01031158585101366, + -0.02706000581383705, + -0.006286588031798601, + -0.017270324751734734, + 0.0059544662944972515, + -0.003928129095584154, + 0.020971108227968216, + 0.008983098901808262, + 0.03593239560723305, + -0.0427013523876667, + 0.022489378228783607, + -0.032959118485450745, + -0.041467756032943726, + -0.03044448234140873, + -0.0039301058277487755, + -0.023928573355078697, + 0.010113894008100033, + -0.02555754967033863, + 0.051304884254932404, + 0.007907657884061337, + 0.004155474249273539, + -0.02913181111216545, + -0.004799948073923588, + 0.04969172179698944, + 0.005831897724419832, + 0.0046101645566523075, + -0.002868502866476774, + -0.007409475278109312, + 0.0039380136877298355, + 0.019531914964318275, + 0.004653656855225563, + 0.018804410472512245, + -0.024418847635388374, + 0.022299595177173615, + -0.001673458144068718, + 0.015151072293519974, + 0.021002739667892456, + 0.027803324162960052, + 0.0269809290766716, + -0.040866777300834656, + 0.018029460683465004, + 0.01774478331208229, + -0.0066977860406041145, + 0.01840902678668499, + -0.00846119411289692, + 0.01492174994200468, + -0.020006373524665833, + 0.037197623401880264, + 0.02767680212855339, + 0.02622179314494133, + -0.040107641369104385, + 0.00549186859279871, + -0.0352681539952755, + -0.013522095046937466, + -0.007579490076750517, + 0.011655887588858604, + 0.05317109078168869, + 0.025083091109991074, + -0.016780050471425056, + 0.018029460683465004, + 0.011173520237207413, + 0.0072315530851483345, + 0.00924405176192522, + 0.02976442314684391, + 0.029637901112437248, + -0.0098924795165658, + -0.02688603661954403, + 0.045042019337415695, + 0.0023722974583506584, + -0.006104711908847094, + 0.02405509538948536, + 0.0023189205676317215, + -0.040012747049331665, + -0.047192901372909546, + 0.03555282950401306, + -0.0005841781967319548, + 0.010390662588179111, + 0.008500732481479645, + 0.007413429208099842, + 0.03343357890844345, + -0.04469408094882965, + 0.02837267704308033, + -0.03182041645050049, + 0.027281420305371284, + -0.040012747049331665, + -0.020749693736433983, + -0.0008278329041786492, + -0.03760882094502449, + 0.012541545554995537, + 0.027328865602612495, + -0.018946748226881027, + 0.018867671489715576, + -0.009425927884876728, + 0.013767232187092304, + -0.031519923359155655, + -0.019405392929911613, + 0.010216694325208664, + -0.03327542543411255, + 0.012588990852236748, + -0.027993109077215195, + -0.003366685239598155, + 0.06028798222541809, + -0.0027360497042536736, + -0.020101265981793404, + -0.01104699820280075, + -0.021524645388126373, + -0.013292772695422173, + -0.011576810851693153, + 0.015459471382200718, + 0.0035782151389867067, + -0.03340194746851921, + 0.011798225343227386, + -0.005333715118467808, + 0.0071643381379544735, + 0.001828645821660757, + 0.0410565584897995, + 0.03479369357228279, + -0.011418658308684826, + 0.047192901372909546, + 0.030998019501566887, + -0.029574640095233917, + 0.018187612295150757, + 0.018108535557985306, + 0.008073718287050724, + -0.002358458936214447, + -0.02470352314412594, + 0.05623926222324371, + -0.015704607591032982, + -0.0397280715405941, + -0.0066226632334291935, + -0.05168445035815239, + -0.017254509031772614, + 0.0026826728135347366, + 0.020765509456396103, + -0.022457748651504517, + 0.02826196886599064, + -0.03552119806408882, + 0.012636437080800533, + -0.039348505437374115, + 0.0073738908395171165, + 0.041531018912792206, + -0.011632164940237999, + -0.0060968040488660336, + -0.013253234326839447, + -0.033591728657484055, + -0.01062789186835289, + -0.0016615965869277716, + 0.042827874422073364, + -0.004238504450768232, + 0.02120833843946457, + 0.007951149716973305, + 0.003174924524500966, + -0.02612690068781376, + -0.018820226192474365, + 0.0074687828309834, + -0.051494669169187546, + -0.003030609805136919, + -0.015759961679577827, + 0.011624257080256939, + -0.053455766290426254, + -0.042100369930267334, + -0.005934697110205889, + -0.021714428439736366, + 0.028135446831583977, + 0.001757476944476366, + 0.019642621278762817, + -0.007136661093682051, + 0.00706944614648819, + -0.0034319234546273947, + -0.007963011041283607, + 0.0011011413298547268, + -0.05117836222052574, + 0.003979528788477182, + 0.015443655662238598, + -0.00991620309650898, + -0.005622344557195902, + -0.007955104112625122, + 0.04127797484397888, + 0.03922198340296745, + -0.03602728992700577, + -0.0016517119947820902, + 0.027313049882650375, + 0.013672340661287308, + 0.01201963983476162, + -0.020765509456396103, + -0.009228236973285675, + -0.004262227565050125, + 0.025035643950104713, + -0.006057265680283308, + -0.0190416406840086, + -0.0030444483272731304, + 0.040866777300834656, + 0.00791161134839058, + -0.04263808950781822, + 0.0170489102602005, + 0.023137805983424187, + -0.03207346051931381, + 0.040044378489255905, + -0.003267839550971985, + -0.037861865013837814, + -0.007077353540807962, + -0.008745869621634483, + -0.02136649191379547, + -0.00620355736464262, + -0.03634359687566757, + -0.00843747053295374, + -0.03346520662307739, + -0.020749693736433983, + -0.03188367560505867, + 0.011213058605790138, + -0.0199431125074625, + -0.021572090685367584, + 0.02898947335779667, + -0.021556274965405464, + -0.005760728847235441, + 0.006602894514799118, + -0.011853579431772232, + -0.02690185233950615, + 0.0031729477923363447, + -0.0327693335711956, + -0.012636437080800533, + 0.000889611488673836, + -0.0024652122519910336, + -0.0023663665633648634, + 0.00514788506552577, + 0.04330233484506607, + -0.011126074939966202, + -0.00843747053295374, + -0.05016618221998215, + 0.03123524785041809, + -0.007041769102215767, + 0.00846119411289692, + -0.011141889728605747, + -0.021714428439736366, + -0.031013833358883858, + 0.001600312301889062, + -0.0010289839701727033, + -0.02419743314385414, + 0.0067017399705946445, + 0.007053630892187357, + 0.02334340661764145, + -0.011774502694606781, + 0.032279059290885925, + 0.029321596026420593, + -0.031029649078845978, + -0.030792418867349625, + -0.003151201643049717, + 0.04178406298160553, + -0.025035643950104713, + -0.028562460094690323, + 0.01103118248283863, + -0.025225428864359856, + 0.01633722148835659, + -0.003754160599783063, + -0.037165991961956024, + 0.026759514585137367, + 0.020385941490530968, + -0.004637841135263443, + -0.01687494106590748, + 0.001492570387199521, + 0.0007828581146895885, + -0.025652442127466202, + 0.0227582398802042, + -0.035679351538419724, + 0.0016793888062238693, + -0.008674700744450092, + 0.033686622977256775, + 0.008421655744314194, + 0.01379886269569397, + 0.0019403415499255061, + 0.010272047482430935, + 0.005092531442642212, + -0.004736687056720257, + 0.004452011547982693, + 0.02490912191569805, + 0.02280568517744541, + -0.027186527848243713, + 0.009125437587499619, + -0.025083091109991074, + -0.006337987724691629, + 0.041531018912792206, + -0.01627396047115326, + 0.024403031915426254, + -0.01526177953928709, + -0.003851029323413968, + 0.051304884254932404, + -0.006808493286371231, + 0.040866777300834656, + 0.0241658017039299, + -0.0382414348423481, + -0.03694457560777664, + 0.005705375224351883, + 0.04437777400016785, + -0.006092850584536791, + 0.04108818992972374, + 0.01519851852208376, + 0.021081816405057907, + 0.056998398154973984, + 0.006377526093274355, + -0.03697620704770088, + -0.020781325176358223, + 0.00031853033578954637, + 0.004989732056856155, + -0.010082263499498367, + -0.013221603818237782, + -0.0021726288832724094, + -0.03811490908265114, + -0.024529553949832916, + -0.010026910342276096, + 0.00916497502475977, + -0.00886448472738266, + 0.03340194746851921, + 0.04583278298377991, + 0.016606081277132034, + 0.01379095483571291, + -0.008279317989945412, + -0.004034882411360741, + -0.032927487045526505, + 0.008390025235712528, + 0.008706331253051758, + -0.0016052545979619026, + 0.00022858072770759463, + 0.043017659336328506, + -0.03346520662307739, + -0.005468145478516817, + -0.0016082199290394783, + -0.03133014217019081, + -0.004452011547982693, + -0.03346520662307739, + -0.008342579007148743, + 0.007674382068216801, + -0.020132897421717644, + -0.01714380271732807, + 0.026727883145213127, + -0.012233146466314793, + 0.005060900934040546, + -0.02057572640478611, + -0.007528090383857489, + 0.01840902678668499, + 0.002910017967224121, + -0.016099991276860237, + -0.006666155532002449, + 0.0026886037085205317, + -0.03248465806245804, + 0.0018919071881100535, + -0.015926022082567215, + -9.785726433619857e-5, + -0.008390025235712528, + -0.003076078835874796, + 0.006523817777633667, + -0.012921112589538097, + -0.028151262551546097, + -0.026095271110534668, + -0.018994193524122238, + 0.004839486442506313, + 0.02770843356847763, + -0.019658436998724937, + 0.023596450686454773, + -0.009046360850334167, + -0.011908932588994503, + -0.0072315530851483345, + 0.037355776876211166, + -0.006804539356380701, + 0.006883616093546152, + 0.03624870255589485, + -0.01314252708107233, + -0.016479559242725372, + 0.007836489006876945, + -0.025652442127466202, + -0.011861486360430717, + -0.01587066985666752, + 0.01690657250583172, + -0.04099329933524132, + 0.016542820259928703, + 0.010936290957033634, + 0.01696983352303505, + -0.015862761065363884, + -0.01975332945585251, + -0.010011094622313976, + -0.014913843013346195, + -0.023944387212395668, + -0.02551010437309742, + -0.011647979728877544, + 0.0074411057867109776, + -0.009386389516294003, + -0.011727056466042995, + -0.007449013646692038, + -0.03142503276467323, + 0.00568560604006052, + 0.008160702884197235, + -0.018930932506918907, + 0.005167654249817133, + 0.0037857911083847284, + 0.003445761976763606, + 0.02762935683131218, + 0.010200878605246544, + -0.024450477212667465, + -0.0014658820582553744, + 0.009014730341732502, + -0.003590076696127653, + -0.031013833358883858, + -0.002166698221117258, + 0.005630252417176962, + 0.01625814475119114, + 0.008152795024216175, + 0.021508829668164253, + -0.012976466678082943, + -0.02778751030564308, + 0.023754604160785675, + 0.005871436093002558, + 0.057061657309532166, + -0.027471203356981277, + 0.009402205236256123, + -0.00023858886561356485, + -0.018962563946843147, + 0.017570815980434418, + 0.0337815135717392, + -0.03779860585927963, + 0.050672270357608795, + -0.018061090260744095, + 0.00024686718825250864, + -0.017222879454493523, + 0.024529553949832916, + -0.005365345627069473, + -0.01103909034281969, + 0.0017673615366220474, + -0.04251156747341156, + 0.010090171359479427, + -0.007203876506537199, + -0.047034747898578644, + -0.010145525448024273, + 0.0016487466637045145, + 0.00495414761826396, + 0.008397932164371014, + 0.013585356064140797, + -0.020196158438920975, + 0.003657291643321514, + -0.012675975449383259, + 0.0113791199401021, + 0.013031819835305214, + 0.004337350372225046, + -0.0002509445766918361, + -0.000783846597187221, + 0.027154896408319473, + -0.006911293137818575, + -0.01983240619301796, + 0.024529553949832916, + -0.005606529302895069, + 0.01981659047305584, + 0.014668704941868782, + -0.026553915813565254, + 0.033623360097408295, + -0.02683859132230282, + 0.005535360425710678, + -0.011402842588722706, + -0.010050632990896702, + -0.004594349302351475, + -0.024276509881019592, + -0.028151262551546097, + 0.0034516926389187574, + 0.01701727882027626, + 0.018851855769753456, + 0.03397129848599434, + 0.020006373524665833, + 0.0017258463194593787, + -0.02688603661954403, + 0.018171798437833786, + -0.01309508178383112, + 0.006571263540536165, + 0.01203545555472374, + -0.03321216255426407, + 0.004246412310749292, + 0.023833680897951126, + 0.01703309454023838, + -0.038557738065719604, + -0.0036276380997151136, + 0.028578275814652443, + 0.009228236973285675, + -0.002720234217122197, + -8.581044676247984e-5, + 0.009718511253595352, + -0.04194221645593643, + 0.006511956453323364, + 0.028688982129096985, + -0.025668257847428322, + 0.022331226617097855, + 0.0016190928872674704, + 0.009457558393478394, + 0.03207346051931381, + 0.02123996801674366, + -0.020401757210493088, + 0.01387003157287836, + -0.01766570843756199, + 0.05440468713641167, + -0.015404117293655872, + 0.029274148866534233, + 0.0019690068438649178, + 0.0032856317702680826, + -0.03311727195978165, + -0.03982296586036682, + -0.02117670699954033, + 0.02755028009414673, + -0.007243414409458637, + 0.022868946194648743, + -0.05108346790075302, + 0.015799500048160553, + 0.0004794017586391419, + 0.020385941490530968, + 0.00999527983367443, + -0.03042866662144661, + -0.0326111800968647, + -0.02133486047387123, + -0.01236757729202509, + 0.007619028445333242, + 0.028657352551817894, + -0.0029001336079090834, + 0.0020144758746027946, + -0.042068738490343094, + 0.017539184540510178, + 0.023596450686454773, + 0.012462468817830086, + -0.028657352551817894, + 0.014075631275773048, + 0.008342579007148743, + 0.025257058441638947, + -0.012849943712353706, + -0.0427013523876667, + -0.005531406495720148, + -0.007876027375459671, + 0.02411835640668869, + 0.005495822057127953, + 0.015467378310859203, + 0.0020777371246367693, + -0.025320319458842278, + 0.0006563356146216393, + 0.01560971699655056, + 0.03343357890844345, + -0.01023250911384821, + -0.012936928309500217, + -0.022141441702842712, + 0.023153621703386307, + -0.01832995004951954, + -0.02562081068754196, + 0.009852942079305649, + 0.03283259645104408, + 0.006266818847507238, + -0.018836040049791336, + 0.023675527423620224, + -0.004792040679603815, + -0.010746506974101067, + -0.02766098640859127, + -0.02065480314195156, + -0.016155345365405083, + -0.03254792094230652, + 0.017950383946299553, + 0.05234869569540024, + -0.016574451699852943, + -0.008753777481615543, + 0.0008821981027722359, + 0.0004752008244395256, + -0.008935653604567051, + 0.008038134314119816, + -0.013957016170024872, + -0.002619411563500762, + -0.0073027219623327255, + -0.016574451699852943, + 0.009686880744993687, + 0.0006672086310572922, + 0.010596261359751225, + 0.02414998784661293, + -0.01520642638206482, + -0.017301956191658974, + -0.011410750448703766, + -0.015332948416471481, + -0.025098906829953194, + 0.010754414834082127, + 0.016795864328742027, + -0.012494099326431751, + -0.029606271535158157, + 0.021587906405329704, + -0.004017089959233999, + -0.004649702925235033, + 0.011205150745809078, + 0.015443655662238598, + 0.021461382508277893, + 0.006136342417448759, + -0.008077672682702541, + 0.0029732794500887394, + -0.0028823413886129856, + -0.008563993498682976, + -0.008666792884469032, + -0.01976914517581463, + 0.04754083976149559, + 0.019010009244084358, + -0.028799690306186676, + -0.036406856030225754, + 2.7012682039639913e-5, + -0.009465466253459454, + -0.033686622977256775, + 0.02614271640777588, + -0.005321853794157505, + 0.024355586618185043, + -0.0046813334338366985, + -0.01379095483571291, + -0.00746087497100234, + -0.02622179314494133, + -0.014842674136161804, + -0.005302084609866142, + -0.001925514661706984, + 0.010351124219596386, + -0.041341233998537064, + 0.008706331253051758, + -0.0248300451785326, + 0.027945661917328835, + -0.016700973734259605, + 0.020370125770568848, + 0.010058540850877762, + 0.026727883145213127, + -0.01624232903122902, + 0.015546455048024654, + 0.017301956191658974, + 0.05883297324180603, + -0.023201068863272667, + 0.033686622977256775, + 0.010469739325344563, + -0.0183773972094059, + -0.005566990934312344, + 0.010011094622313976, + 0.0031571323052048683, + -0.015767870470881462, + 0.02334340661764145, + 0.0016487466637045145, + 0.009077991358935833, + 0.006171926856040955, + 0.012715513817965984, + -0.011782410554587841, + -0.04595930874347687, + -0.0318678617477417, + 0.027866587042808533, + 0.024007650092244148, + -0.014059815555810928, + 0.01235176157206297, + 0.04045557603240013, + 0.015846947208046913, + 0.009797587990760803, + 0.008279317989945412, + -0.002388112712651491, + 0.016527004539966583, + -0.0084453783929348, + -0.06629780679941177, + 0.0015489124925807118, + -0.0023683435283601284, + -0.03131432458758354, + -0.0015113510889932513, + -0.02619016356766224, + 0.009734326973557472, + 0.0012701675295829773, + 0.04542158544063568, + 0.0005258592427708209, + -0.012691791169345379, + -0.0025126582477241755, + -9.408876940142363e-5, + 0.024450477212667465, + -0.016084175556898117, + 0.002858618274331093, + 0.0073027219623327255, + -0.006725463084876537, + 0.001273132860660553, + -0.014376121573150158, + -0.00958408135920763, + 0.004973916802555323, + -0.0035960073582828045, + -0.03814654052257538, + 0.005831897724419832, + -0.006464510224759579, + -0.005721190478652716, + -0.025035643950104713, + -0.013308588415384293, + 0.018582995980978012, + 0.005606529302895069, + 0.013767232187092304, + -0.013830493204295635, + -0.01024832483381033, + -0.010714876465499401, + 0.02683859132230282, + -0.000989939901046455, + 0.008706331253051758, + -0.007358075585216284, + 9.303853585151955e-5, + -0.013996554538607597, + -0.006124481093138456, + 0.012573176063597202, + 0.01981659047305584, + -0.0073738908395171165, + 0.014352398924529552, + -0.04048720747232437, + -0.03428760543465614, + 0.03117198683321476, + -0.035110000520944595, + 0.03419271111488342, + 0.030001653358340263, + 0.004337350372225046, + -0.01315043494105339, + -0.009141252376139164, + 0.02332759089767933, + 0.00168433110229671, + 0.03257954865694046, + -0.02408672496676445, + 0.009425927884876728, + -0.029622085392475128, + 0.03994948789477348, + 0.00039958383422344923, + -0.0170489102602005, + -0.03110872581601143, + -0.014447290450334549, + -0.005693513434380293, + -0.013348126783967018, + 0.005934697110205889, + -0.027898216620087624, + 0.0005401918897405267, + 0.0053534843027591705, + -0.0029475793708115816, + 0.0022714748047292233, + -0.0011100374395027757, + 0.012913205660879612, + -0.0425431989133358, + 0.03482532501220703, + -0.03139340132474899, + 0.0297169778496027, + -0.016099991276860237, + 0.012794590555131435, + 0.006164019461721182, + 0.022457748651504517, + -0.010153432376682758, + -0.04102492704987526, + 0.00850863941013813, + -0.0035505383275449276, + -0.009465466253459454, + 0.0005023833946324885, + -0.018741149455308914, + 0.02494075335562229, + 0.002362412866204977, + -0.012074993923306465, + -0.0029732794500887394, + 0.03384477645158768, + 0.007563674822449684, + -0.03501510992646217, + -0.01905745454132557, + -0.022347040474414825, + 0.022410301491618156, + -0.012984374538064003, + -0.004776225425302982, + -0.010192970745265484, + 0.020022189244627953, + 0.0020124989096075296, + -0.05721981078386307, + -0.01708054170012474, + 0.026601361110806465, + -0.015649255365133286, + -0.019674252718687057, + -0.0052111465483903885, + -0.010809767991304398, + -0.018266689032316208, + -0.029384857043623924, + -0.019690068438649178, + -0.004353165626525879, + -0.008951468393206596, + 0.003949875012040138, + -0.04187895730137825, + -0.020812954753637314, + -0.014969196170568466, + -0.0018444611923769116, + -0.014376121573150158, + -0.004491549450904131, + 0.006401249207556248, + 0.002283336129039526, + -0.05608110874891281, + 0.0025106812827289104, + 0.020749693736433983, + -0.0041475663892924786, + 0.01695401780307293, + 0.022536825388669968, + -0.0011940563563257456, + 0.025858040899038315, + -0.021461382508277893, + 0.02411835640668869, + 0.006689878646284342, + 0.028499199077486992, + -0.007516228593885899, + 0.00015926516789477319, + -0.025810595601797104, + 0.016179068014025688, + -0.0018078882712870836, + -0.003797652665525675, + 0.020797140896320343, + 0.017207063734531403, + -0.007053630892187357, + 0.005646067671477795, + 0.011260504834353924, + 0.008421655744314194, + 0.002858618274331093, + -0.005385114811360836, + 0.0005125150782987475, + 0.009647342376410961, + -0.01774478331208229, + 0.04545321688055992, + -0.006116573233157396, + 0.007188060786575079, + 0.0014856512425467372, + -0.04263808950781822, + -0.028119631111621857, + -0.01847228780388832, + 0.020939478650689125, + 0.03212090581655502, + -0.005440468434244394, + 0.009734326973557472, + -0.008904023095965385, + -0.0011495758080855012, + 0.047793883830308914, + 0.01700146496295929, + -0.006800585892051458, + 0.00851654727011919, + 0.02917925827205181, + -0.007219691760838032, + -0.027091635391116142, + -0.006428925786167383, + 0.025209613144397736, + -0.003192716743797064, + 0.022995468229055405, + 0.004048720933496952, + 0.01908908598124981, + 0.006674063391983509, + -0.015056180767714977, + -0.00033731103758327663, + -0.0070180464535951614, + -0.031013833358883858, + -0.0041475663892924786, + -0.03180459886789322, + 0.01774478331208229, + -0.012834128923714161, + 0.014811042696237564, + -0.002991071669384837, + -0.025098906829953194, + -0.012541545554995537, + -0.007773227524012327, + -0.018772779032588005, + -0.014803135767579079, + -0.018061090260744095, + -0.005899112671613693, + -0.007172245532274246, + -0.006685924716293812, + 0.01693820394575596, + -0.03479369357228279, + -0.011916840448975563, + -0.014644982293248177, + -0.005594667978584766, + 0.029511379078030586, + -0.003034563735127449, + -0.020812954753637314, + 0.010691153816878796, + -0.0021746058482676744, + 0.015926022082567215, + -0.03555282950401306, + 0.0009415055392310023, + 0.007709966506808996, + 0.011821948923170567, + -0.0015093742404133081, + -0.013276957906782627, + -0.012003825046122074, + -0.001178240985609591, + -0.016811680048704147, + -0.012454560957849026, + -0.0010116859339177608, + -0.025763148441910744, + 0.010944198817014694, + 0.015712516382336617, + 0.019595175981521606, + 0.0032362090423703194, + 0.009291497990489006, + 0.004191058687865734, + 0.023011283949017525, + 0.018266689032316208, + -0.005910974461585283, + -0.021445568650960922, + -0.006583125330507755, + 0.03115617111325264, + 0.03700783848762512, + -0.0177131537348032, + -0.031061280518770218, + -0.03669153153896332, + 0.022900577634572983, + -0.012161977589130402, + -0.01687494106590748, + -0.018140166997909546, + 0.007452967576682568, + 0.003706714604049921, + 0.027328865602612495, + 0.007401567883789539, + 0.010588353499770164, + 0.019547730684280396, + 0.021587906405329704, + -0.03044448234140873, + -0.01591811515390873, + 0.0006785758887417614, + -0.0019294684752821922, + -0.007081307470798492, + -0.02691766805946827, + 0.012177793309092522, + -0.06190114468336105, + -0.033686622977256775, + 0.0065514943562448025, + 0.005582806654274464, + -0.002795357024297118, + -0.004926471039652824, + 0.008342579007148743, + -0.0006039473810233176, + 0.00023401725047733635, + -0.015846947208046913, + 0.007619028445333242, + 0.009362666867673397, + -0.01973751373589039, + 0.04051883891224861, + -0.011434473097324371, + 0.014352398924529552, + -0.01419424545019865, + 0.008888207376003265, + 0.0077574122697114944, + -0.019690068438649178, + 0.0025858040899038315, + 0.003076078835874796, + 0.0526333712041378, + -0.0016121737426146865, + 0.034382496029138565, + 0.03770371153950691, + -0.040866777300834656, + 0.030776605010032654, + -0.010746506974101067, + 0.005646067671477795, + 0.000800156150944531, + -0.0023762511555105448, + -0.01130795106291771, + 0.0029376947786659002, + 0.015910208225250244, + -0.012921112589538097, + 0.02120833843946457, + -0.0058912052772939205, + 0.018915116786956787, + 0.016052545979619026, + 0.01308717392385006, + 0.0072987680323421955, + -0.0030128175858408213, + -0.0028526876121759415, + -0.0064210183918476105, + -0.00347146182321012, + -0.0005233880947344005, + -0.029558824375271797, + 0.0012078947620466352, + 0.013506279326975346, + 0.009750141762197018, + -0.028673166409134865, + 0.011758686974644661, + -0.0219358429312706, + 0.013767232187092304, + 0.0020164528395980597, + 0.0065594022162258625, + 0.0023643895983695984, + 0.009505004622042179, + -0.0025106812827289104, + 0.08976773172616959, + 0.017254509031772614, + -0.00423059705644846, + 0.01760244555771351, + 0.008093487471342087, + 0.0058832974173128605, + -0.0027063959278166294, + 0.020433388650417328, + 0.02468770742416382, + -0.005001593381166458, + -0.011861486360430717, + 0.0024711431469768286, + 0.006594986654818058, + 0.020892031490802765, + 0.004143612924963236, + 0.001897837850265205, + 0.0219358429312706, + 0.0038648678455501795, + 0.0064763715490698814, + -0.006618709769099951, + -0.01714380271732807, + -0.0016487466637045145, + -0.008310948498547077, + -0.025146352127194405, + -0.012929020449519157, + -0.01640048250555992, + 0.03495184704661369, + 0.0013363942271098495, + -0.017333585768938065, + 0.0011713218409568071, + 0.02560499683022499, + 0.010351124219596386, + 0.010098079219460487, + 0.014447290450334549, + -0.016020914539694786, + 0.0021054139360785484, + 0.028119631111621857, + 0.015530640259385109, + 0.0034062236081808805, + 0.00780485849827528, + -0.0065514943562448025, + -0.0019482491770759225, + -0.0029218795243650675, + -0.017934568226337433, + 0.010691153816878796, + 0.026506468653678894, + 0.027360495179891586, + 0.006958738900721073, + -0.013031819835305214, + -0.004827625118196011, + 0.0037620682269334793, + -0.013443018309772015, + -0.00038722812314517796, + -0.010936290957033634, + -0.013379757292568684, + 0.006855939514935017, + 0.005590714048594236, + -0.02131904475390911, + -0.019373761489987373, + -0.010873029939830303, + -0.018298320472240448, + 0.026822775602340698, + -0.0017268348019570112, + -0.0508304238319397, + -0.008405840024352074, + 0.0029218795243650675, + -0.007508321199566126, + -0.008397932164371014, + -0.025968749076128006, + 0.002910017967224121, + -0.015499009750783443, + -0.014581721276044846, + -0.01976914517581463, + 0.00346750789321959, + -0.005653975531458855, + 0.02761354111135006, + 0.020370125770568848, + -0.017507554963231087, + -7.567875582026318e-5, + -0.02054409496486187, + -0.016859127208590508, + 0.02837267704308033, + 0.0058912052772939205, + 0.009805495850741863, + -0.01485058106482029, + 0.007128753699362278, + 0.009077991358935833, + 0.005725144408643246, + 0.013316495344042778, + -0.03830469399690628, + -0.0020619218703359365, + 0.01981659047305584, + 0.004934378433972597, + -0.018076905980706215, + -0.01307135820388794, + -0.014051907695829868, + -0.0026589499320834875, + 0.011450288817286491, + 0.013174157589673996, + 0.010422293096780777, + -0.020955292508006096, + -0.004922517109662294, + 0.008753777481615543, + -0.006460556294769049, + 0.013996554538607597, + -0.011339581571519375, + -0.029305780306458473, + 0.01065161544829607, + -0.024339770898222923, + -0.027977293357253075, + -0.0012780751567333937, + 0.015926022082567215, + -0.001686308067291975, + -0.0011248643277212977, + 0.009362666867673397, + -0.0022536825854331255, + -0.004293858073651791, + 0.017207063734531403, + 0.011663795448839664, + 0.026822775602340698, + -0.011236782185733318, + 0.004060582257807255, + 0.003853006288409233, + -0.0002115298411808908, + 0.0030998019501566887, + 0.017333585768938065, + 0.003459600266069174, + 0.009655250236392021, + -0.004784132819622755, + -0.01316625066101551, + 0.01419424545019865, + 0.01031158585101366, + -0.005997958593070507, + 0.002649065339937806, + 0.023770419880747795, + 0.0034220388624817133, + 0.01559390127658844, + -0.0382414348423481, + -0.026648806408047676, + -0.008073718287050724, + -0.013696063309907913, + -0.005788405425846577, + -0.007010138593614101, + -0.0070931692607700825, + 0.011742872186005116, + 0.0010428223758935928, + -0.0305393747985363, + 0.026664622128009796, + 0.010714876465499401, + -0.027360495179891586, + 0.003665199503302574, + 0.005246730986982584, + -0.0011831832816824317, + -0.020892031490802765, + -0.0006474395049735904, + 0.0006953796837478876, + -0.0197849590331316, + -0.024956567212939262, + 0.013458834029734135, + -0.029495563358068466, + 0.008967284113168716, + -0.00248102773912251, + 0.011616349220275879, + -0.031583186239004135, + -0.011505641974508762, + -0.0032757471781224012, + 0.00746482890099287, + -0.030317960307002068, + -0.002137044444680214, + 0.024972382932901382, + -0.014028185047209263, + 0.0030108406208455563, + -0.014660798013210297, + -0.020117081701755524, + -0.0029495563358068466, + -0.004305719863623381, + 0.013008097186684608, + -0.02974860928952694, + 0.013545817695558071, + -0.017254509031772614, + -0.021398121491074562, + -0.038621000945568085, + -0.017159616574645042, + 0.032215796411037445, + 0.002595688682049513, + 0.006175880786031485, + -0.014320768415927887, + -0.027803324162960052, + 0.014621259644627571, + -0.03536304458975792, + 0.005440468434244394, + -0.025004014372825623, + -0.01022460125386715, + 0.01485058106482029, + 0.01698564924299717, + -0.014779412187635899, + 0.0013067404506728053, + -0.006753139663487673, + 0.022347040474414825, + -0.007852303795516491, + 0.006725463084876537, + -0.006962692830711603, + -0.001538039417937398, + -0.026822775602340698, + 0.0044678268022835255, + -0.044978756457567215, + -0.010888844728469849, + -0.02206236496567726, + 0.009070083498954773, + -0.02837267704308033, + -0.012849943712353706, + 0.006144250277429819, + -0.0009350805194117129, + 0.0031610862351953983, + 0.010453923605382442, + 0.01972169801592827, + 0.013110896572470665, + -0.02481422945857048, + 0.01766570843756199, + -0.019690068438649178, + 0.006148203741759062, + -0.02057572640478611, + -0.009694788604974747, + -0.012201515957713127, + -0.01495338138192892, + -0.01593393087387085, + 0.01695401780307293, + 0.018582995980978012, + 0.008991006761789322, + 0.015032457187771797, + 0.018171798437833786, + -0.006326126400381327, + 0.029954208061099052, + -0.00706944614648819, + 0.01341929566115141, + 0.014668704941868782, + -0.006836170330643654, + 0.007864166051149368, + 0.01306345034390688, + 0.0007477679173462093, + 0.022236334159970284, + 0.001901791663840413, + -0.006278680171817541, + -0.008983098901808262, + -0.02261590212583542, + -0.0002569988719187677, + 0.024988198652863503, + 0.018045274540781975, + -0.0031116632744669914, + -0.012921112589538097, + 0.00956826563924551, + 0.0007937311311252415, + -0.014059815555810928, + -0.020038004964590073, + 0.005776544101536274, + 0.02494075335562229, + 0.027439571917057037, + 0.014605443924665451, + 0.003267839550971985, + -0.003823352511972189, + 0.016606081277132034, + -0.022283779457211494, + 0.00998737197369337, + -0.0028329184278845787, + -0.008492824621498585, + 0.020164526998996735, + -0.004060582257807255, + -0.0051360237412154675, + 0.009157068096101284, + -0.02486167661845684, + -0.024577001109719276, + 0.008595624007284641, + -0.023928573355078697, + 0.008690515533089638, + 0.0149375656619668, + -0.0058753895573318005, + 0.006254957523196936, + -0.028135446831583977, + 0.021556274965405464, + 2.304340887349099e-5, + 0.01981659047305584, + 0.03178878501057625, + -0.0303812213242054, + 0.0006993334973230958, + 0.0019195838831365108, + 0.019437022507190704, + -0.008737961761653423, + 0.015404117293655872, + 0.012699698098003864, + -0.008674700744450092, + -0.007429244462400675, + 0.009663158096373081, + -0.009694788604974747, + 0.00780485849827528, + 0.008556085638701916, + 0.0318678617477417, + -0.01064370758831501, + 0.037355776876211166, + -0.03254792094230652, + -0.0018573111156001687, + -0.002789426362141967, + -0.004811809863895178, + -0.01848810352385044, + 0.025668257847428322, + 0.013949108310043812, + 0.010722784325480461, + 0.016590265557169914, + 0.010793953202664852, + -0.02328014373779297, + -0.021398121491074562, + 0.011774502694606781, + -0.011853579431772232, + -0.008991006761789322, + -0.0002713315188884735, + 0.004036859143525362, + -0.01777641475200653, + 0.015459471382200718, + 0.017396846786141396, + 0.007848350331187248, + -0.0005456283688545227, + 0.0013986669946461916, + 0.0015419932315126061, + -0.027154896408319473, + 0.0014026208082213998, + -0.004728779196739197, + 0.008342579007148743, + -0.0029535102657973766, + 0.032990749925374985, + 0.009734326973557472, + -0.00673337047919631, + 0.01703309454023838, + -0.007745550945401192, + 0.015633439645171165, + -0.008611439727246761, + 0.0006133377319201827, + 0.016527004539966583, + -0.0297169778496027, + 0.03387640789151192, + -0.005657928995788097, + -0.00010341734014218673, + -0.016432112082839012, + 0.025019830092787743, + 0.0008688538800925016, + -0.001333428779616952, + -0.018693702295422554, + -0.007658566813915968, + -0.015325040556490421, + 0.01780804619193077, + 0.011323765851557255, + 0.005175562109798193, + -0.025209613144397736, + 0.005187423434108496, + 0.022521009668707848, + 0.0034971616696566343, + -0.012573176063597202, + 0.0034259927924722433, + 0.02052827924489975, + 0.017982013523578644, + 0.020306864753365517, + 0.006278680171817541, + 0.029527194797992706, + 0.005365345627069473, + -0.001143645029515028, + -0.02261590212583542, + -0.019579360261559486, + 0.010422293096780777, + 0.009845034219324589, + -0.001964064547792077, + -0.00957617349922657, + 0.03773534297943115, + -0.0199431125074625, + 0.0033627315424382687, + -0.02185676619410515, + -0.005622344557195902, + 0.030744973570108414, + -0.005009501241147518, + 0.028499199077486992, + 0.004578534048050642, + 0.009623619727790356, + -0.02539939619600773, + -0.010540908202528954, + 0.012494099326431751, + 0.006322172470390797, + 0.0005258592427708209, + -0.0342559739947319, + -0.029432302340865135, + 0.01419424545019865, + -0.007931380532681942, + 0.011869394220411777, + 0.040139272809028625, + 0.021145077422261238, + -0.008038134314119816, + 0.04045557603240013, + -0.01316625066101551, + 0.021034369245171547, + 0.015119441784918308, + -0.0033825007267296314, + 0.01635303720831871, + -0.018108535557985306, + 0.007658566813915968, + -0.0011100374395027757, + -0.016068359836935997, + -0.01562553271651268, + 0.014597536064684391, + 0.00600586598739028, + 0.007413429208099842, + -9.483011672273278e-5, + -0.037165991961956024, + -0.009362666867673397, + -0.009441743604838848, + -0.021635351702570915, + 0.00016828483785502613, + -0.038621000945568085, + -0.005056947004050016, + -0.0007067469414323568, + 0.013901662081480026, + 0.007512275129556656, + 0.0177131537348032, + 0.0003494196280371398, + 0.01031949371099472, + -0.010540908202528954, + -0.03482532501220703, + -0.010074355639517307, + 0.003924175165593624, + 0.014731966890394688, + -0.01103118248283863, + -0.016155345365405083, + -0.009734326973557472, + 0.010667430236935616, + 0.009781773202121258, + -0.029305780306458473, + 0.006452648900449276, + -0.008053949102759361, + 0.005444422364234924, + 0.012707605957984924, + -0.025873856619000435, + -0.010659522376954556, + 0.0005752820870839059, + 0.03254792094230652, + -0.022173073142766953, + -0.0034042466431856155, + -0.0084453783929348, + -0.015744145959615707, + 0.00957617349922657, + 0.005313945934176445, + 0.00747273676097393, + 0.009220329113304615, + 0.02628505416214466, + -0.009884572587907314, + -0.012225238606333733, + -0.012565268203616142, + 0.018045274540781975, + 0.009204513393342495, + -0.007662520278245211, + -0.015087811276316643, + 0.00780485849827528, + 0.02492493763566017, + -0.013996554538607597, + -0.009663158096373081, + -0.011821948923170567, + 0.008263502269983292, + -0.01233594585210085, + 0.0059584202244877815, + -0.007049676962196827, + 0.011553088203072548, + 0.024276509881019592, + 0.018266689032316208, + 0.00924405176192522, + 0.007729735691100359, + -0.0003622695803642273, + -0.012778774835169315, + -0.005638159811496735, + 0.002619411563500762, + 0.011410750448703766, + -0.002328805159777403, + 0.008429563604295254, + -0.002455327659845352, + -0.009955741465091705, + 0.0049462397582829, + -0.016511188820004463, + 0.013672340661287308, + 0.016123713925480843, + -0.018662072718143463, + 0.0022932207211852074, + -0.03107709437608719, + 0.10241998732089996, + -0.010287863202393055, + -0.0030246791429817677, + 0.009686880744993687, + 0.029400670900940895, + -0.001057649264112115, + 0.005313945934176445, + -0.0031848091166466475, + 0.02492493763566017, + -0.004653656855225563, + -0.013118804432451725, + -0.009038452990353107, + 0.035046741366386414, + 0.0095208203420043, + -0.015317133627831936, + -0.01696983352303505, + 0.016716789454221725, + -0.010438107885420322, + 0.02562081068754196, + 0.020670616999268532, + 0.025668257847428322, + -0.01593393087387085, + -0.011157705448567867, + 0.0071603842079639435, + 0.0012780751567333937, + 0.005175562109798193, + -0.019705884158611298, + -0.02555754967033863, + 0.03460391238331795, + 0.015000826679170132, + -0.0038174218498170376, + 0.002196351997554302, + 0.004115935880690813, + -0.015064088627696037, + -0.006258910987526178, + 0.019690068438649178, + 0.004187104757875204, + 0.021413937211036682, + -0.0012375484220683575, + -0.0014490783214569092, + 0.0033745928667485714, + -0.01768152229487896, + 0.030064914375543594, + 0.01590229943394661, + -0.03060263581573963, + 0.0030661942437291145, + -0.021113445982336998, + -0.004693194758147001, + -0.014075631275773048, + 0.003936036489903927, + 0.0002481027622707188, + -0.0324530266225338, + -0.017301956191658974, + 0.003803583327680826, + 0.02843593806028366, + 0.016558635979890823, + 0.004586441442370415, + -0.002724188147112727, + 0.0016724696615710855, + 0.0024928890634328127, + -0.027249788865447044, + -0.0064842794090509415, + 0.005432561039924622, + -0.006721509154886007, + -0.02835686132311821, + 0.012248962186276913, + -0.019705884158611298, + 0.009860849007964134, + -0.018298320472240448, + 0.0014846627600491047, + -0.005369299557060003, + -0.004554810933768749, + 0.005796313285827637, + -0.022362856194376945, + -0.00957617349922657, + -0.00884866900742054, + 0.0072394609451293945, + 0.0327693335711956, + 0.022837316617369652, + -0.01832995004951954, + 0.008674700744450092, + 0.00516370078548789, + -0.009346851147711277, + -0.017997829243540764, + -0.013245326466858387, + -0.008769592270255089, + 0.009109621867537498, + -0.016780050471425056, + -0.00019534386228770018, + -0.018598811700940132, + -0.024513740092515945, + -0.008603531867265701, + 0.004487595986574888, + 0.0005797301419079304, + -0.017159616574645042, + -0.0003847569751087576, + -0.004388750065118074, + -0.027977293357253075, + -0.007354121655225754, + 0.0016774119576439261, + 0.023580634966492653, + 0.006361710838973522, + 0.0035485613625496626, + 0.0017485808348283172, + 0.009473374113440514, + 0.006836170330643654, + 0.020211974158883095, + -0.002334736054763198, + -0.029637901112437248, + -0.000460373965324834, + 0.0037620682269334793, + 0.007528090383857489, + 0.0031867860816419125, + -0.00799068808555603, + -0.01632140576839447, + 0.001993718324229121, + -0.00601772777736187, + 0.010786045342683792, + -0.023896941915154457, + -0.022995468229055405, + 0.0018592880805954337, + -0.008303040638566017, + -0.012778774835169315, + -0.01845647394657135, + -0.020971108227968216, + 0.012114531360566616, + -0.004151520319283009, + -0.008069764822721481, + 0.01526968739926815, + 0.008714239113032818, + 0.020227788016200066, + 0.0023386897519230843, + 0.007409475278109312, + -0.01782386004924774, + 0.014494736678898335, + -0.0030424713622778654, + -0.0206073559820652, + -0.0023762511555105448, + 0.018314136192202568, + -0.013506279326975346, + 0.02135067619383335, + -0.003853006288409233, + 0.009607804007828236, + 0.01983240619301796, + 0.008318856358528137, + -0.01772896945476532, + 0.007907657884061337, + -0.014644982293248177, + 0.011972193606197834, + -0.0058832974173128605, + 0.026585545390844345, + -0.03283259645104408, + -0.007385752629488707, + -0.011252596974372864, + 0.008081626147031784, + 0.011608441360294819, + -0.0067017399705946445, + 0.026047825813293457, + -0.04463082179427147, + 0.005768636241555214, + 0.0033113316167145967, + -0.008991006761789322, + -0.02258427068591118, + 0.008160702884197235, + -0.01061998400837183, + 0.012161977589130402, + 0.0030839864630252123, + 0.011545180343091488, + 0.007433198392391205, + 0.005725144408643246, + -0.015245964750647545, + 1.1521704436745495e-5, + 0.020370125770568848, + -0.01519851852208376, + -0.02267916314303875, + 0.006148203741759062, + 0.00027059015701524913, + 0.020117081701755524, + -0.012304315343499184, + 0.005306038539856672, + 0.008801222778856754, + -0.0021113445982337, + 0.01708054170012474, + 0.004135705064982176, + 0.003473438788205385, + -0.021666983142495155, + 0.009497096762061119, + -0.016447927802801132, + 0.02910018153488636, + -0.0045271338894963264, + -0.007045723032206297, + 0.014660798013210297, + 0.010414385236799717, + -0.005112300626933575, + -0.0005560072022490203, + -0.013055543415248394, + 0.03953829035162926, + 0.016700973734259605, + 0.0013581402599811554, + -4.633393109543249e-5, + -0.01766570843756199, + -0.0076901973225176334, + 0.02185676619410515, + 0.017381031066179276, + 0.004372934810817242, + -0.01621069945394993, + -0.022995468229055405, + -0.01701727882027626, + 0.0058793434873223305, + -0.010390662588179111, + -0.027819139882922173, + -0.012881574220955372, + 0.010612077079713345, + 0.0067017399705946445, + -0.005907020531594753, + 0.0053613921627402306, + -0.004795994609594345, + 0.017191248014569283, + -0.002386135747656226, + 0.011798225343227386, + 0.00389452138915658, + -0.0006454625981859863, + -0.004867163486778736, + -0.018851855769753456, + 0.01421006117016077, + -0.012604806572198868, + 0.0003382994909770787, + -0.009489189833402634, + 0.005468145478516817, + 0.002783495467156172, + 0.006749185733497143, + 0.004293858073651791, + 0.00422664312645793, + 0.019500283524394035, + 0.006318218540400267, + 0.040740251541137695, + 0.006128435023128986, + -0.012114531360566616, + 0.01519851852208376, + 0.0076901973225176334, + -0.01582322269678116, + -0.009315220639109612, + -0.01625814475119114, + -0.007128753699362278, + -0.013506279326975346, + -0.004278042819350958, + 0.002095529343932867, + 0.011877302080392838, + 0.013917477801442146, + -3.518290031934157e-5, + -0.00999527983367443, + -0.004376888740807772, + -0.0003229783906135708, + -0.0029199025593698025, + 0.01916816271841526, + 0.0019650529138743877, + 0.0012187677202746272, + 0.00257987342774868, + -0.015127349644899368, + -0.0312826931476593, + -0.007029907777905464, + 0.0015073972754180431, + -0.004210827872157097, + -0.0134904645383358, + 0.008627254515886307, + 0.010469739325344563, + -0.03412945196032524, + 0.011387026868760586, + -0.010058540850877762, + 0.00846119411289692, + 0.005234869662672281, + 0.008563993498682976, + -0.0059623741544783115, + 0.005298130679875612, + 0.005630252417176962, + 0.0059544662944972515, + -0.0024256741162389517, + 0.005559083539992571, + -0.005377207417041063, + -0.012897389940917492, + -0.005547221750020981, + -0.014992918819189072, + 0.008287225849926472, + -0.0047485483810305595, + -0.010406477376818657, + -0.015079903416335583, + 0.008484916761517525, + 0.011766594834625721, + 0.0007714908570051193, + 0.011972193606197834, + -0.00820024125277996, + -0.0003753666242118925, + -0.009307313710451126, + -0.028894580900669098, + 0.0007808812079019845, + 0.01309508178383112, + 0.01714380271732807, + -0.012778774835169315, + 0.008477008901536465, + -0.014431475661695004, + 0.00012973500997759402, + -0.010786045342683792, + 0.003736368380486965, + -0.014731966890394688, + 0.009876664727926254, + -0.011853579431772232, + 0.015158980153501034, + -0.0013492441503331065, + -0.018614627420902252, + 0.006235188338905573, + -0.0074411057867109776, + 0.0034299464896321297, + -0.009054267778992653, + -0.023612266406416893, + -0.0070931692607700825, + -0.004835532978177071, + 0.02052827924489975, + 0.024292325600981712, + -0.004064536187797785, + -0.000798179185949266, + -0.016107898205518723, + 0.008983098901808262, + 0.015056180767714977, + -0.011078628711402416, + 0.024229062721133232, + -0.02612690068781376, + 0.008832854218780994, + 0.00037932046689093113, + -0.009765957482159138, + 0.00018718908540904522, + 0.008872391656041145, + 0.008793315850198269, + -0.018693702295422554, + 0.008255594410002232, + -0.008492824621498585, + 0.019452838227152824, + -0.020670616999268532, + 0.0006355780060403049, + -0.012051270343363285, + 0.0018424842273816466, + -0.014613351784646511, + -0.020053820684552193, + -0.005412791855633259, + -0.0008485905127599835, + 0.004926471039652824, + 0.02269497886300087, + -0.02136649191379547, + -0.010857214219868183, + 0.008334671147167683, + 0.0050727627240121365, + -0.02555754967033863, + -0.0024118355941027403, + 0.035774245858192444, + 0.005930743180215359, + -0.010572538711130619, + -0.004669472109526396, + 0.013664432801306248, + 0.03142503276467323, + -0.004966008942574263, + -0.004665518179535866, + 0.02187258191406727, + 0.023802049458026886, + -0.014289137907326221, + -0.00021387742890510708, + 0.014368214644491673, + -0.021619535982608795, + 0.018314136192202568, + 0.010548815131187439, + -0.04485223442316055, + 0.030191438272595406, + -0.022868946194648743, + -0.01836158148944378, + -0.00423059705644846, + 0.003975574858486652, + -0.006962692830711603, + 0.021793505176901817, + 0.0030167715158313513, + 0.002360435901209712, + -0.027487019076943398, + 0.0016665388830006123, + 0.005333715118467808, + 0.011268412694334984, + 0.003082009730860591, + -0.011458195745944977, + 0.008927745744585991, + 0.00820814911276102, + 0.024972382932901382, + 0.00958408135920763, + 0.01972169801592827, + -0.02263171598315239, + -0.002722211182117462, + 0.012130347080528736, + 0.012003825046122074, + 0.0005228938534855843, + -0.010936290957033634, + 0.009425927884876728, + -0.005796313285827637, + 0.010572538711130619, + 0.00997946411371231, + -0.00916497502475977, + -0.0037422990426421165, + -0.010461831465363503, + 0.017396846786141396, + -0.02554173395037651, + -0.006855939514935017, + -0.00780090456828475, + -0.007543905638158321, + 0.016447927802801132, + 0.01907327026128769, + -0.0084453783929348, + -0.0007102065137587488, + 0.005788405425846577, + -0.009006822481751442, + -0.014716151170432568, + 0.021461382508277893, + -0.0022536825854331255, + -0.011600534431636333, + -0.006179834716022015, + 0.016511188820004463, + -0.007437152322381735, + 0.0013017981545999646, + -0.009315220639109612, + -0.00693106185644865, + 0.003295516362413764, + 0.002532427432015538, + -0.006911293137818575, + 0.036406856030225754, + 0.005052993539720774, + 0.010786045342683792, + 0.005839805118739605, + 0.02691766805946827, + -0.03548956662416458, + -0.024972382932901382, + 0.014890119433403015, + -0.02046501822769642, + -0.00673337047919631, + 0.01627396047115326, + 0.0005258592427708209, + 0.009307313710451126, + 0.0212715994566679, + -0.0024157895240932703, + 0.00547605287283659, + -0.007737643085420132, + -0.013711879029870033, + 0.01201963983476162, + -0.0014965242007747293, + -0.008053949102759361, + -0.007033861707895994, + -0.020733878016471863, + -0.023628082126379013, + -0.0032836548052728176, + -0.008271410129964352, + 0.004499457310885191, + 0.0071603842079639435, + -0.012059178203344345, + -0.00043195582111366093, + -0.0020619218703359365, + -0.011189335957169533, + 0.021777689456939697, + -0.008548177778720856, + 0.0005421687965281308, + -0.002714303554967046, + 0.007409475278109312, + -0.018314136192202568, + 0.00395580567419529, + 0.015166888013482094, + 0.025162167847156525, + 0.004780179355293512, + -0.015372486785054207, + 0.02204654924571514, + 0.0003405235183890909, + 0.017997829243540764, + 0.04611746221780777, + -0.003321216208860278, + 0.02332759089767933, + 0.004187104757875204, + -0.01902582496404648, + 0.0013887824025005102, + 0.00811325665563345, + -0.005713282618671656, + -0.004815763793885708, + -0.01315834280103445, + -0.00853236299008131, + -0.016527004539966583, + 0.02824615314602852, + -0.014391937293112278, + -0.0023663665633648634, + -0.0009602861828170717, + 0.0006904373876750469, + 0.0022022826597094536, + 0.027154896408319473, + 0.021524645388126373, + 0.014368214644491673, + 0.0010408454108983278, + -0.007330399006605148, + -0.014059815555810928, + 0.020101265981793404, + -0.015016642399132252, + 0.0018088767537847161, + -0.015245964750647545, + 0.018029460683465004, + 0.008358394727110863, + -0.0037126452662050724, + -0.00990829523652792, + 0.015522732399404049, + -0.00959198921918869, + -0.0004057617043145001, + 0.008010457269847393, + 0.01414680015295744, + -0.0040724435821175575, + -0.0023011283483356237, + -0.007547859568148851, + -0.03406618908047676, + 0.019563546404242516, + -0.0020164528395980597, + 0.02414998784661293, + 0.005523499101400375, + -0.0027301188092678785, + 0.011877302080392838, + -0.0010368915973231196, + 0.018788594752550125, + -0.02267916314303875, + 0.00956826563924551, + 0.0018197497120127082, + 0.008046042174100876, + -0.0031709708273410797, + 0.011458195745944977, + 0.00442433450371027, + -0.0010507300030440092, + -0.0029693255200982094, + -0.0029535102657973766, + 0.0035703075118362904, + -0.012802498415112495, + -0.03760882094502449, + 0.013719785958528519, + 0.022252149879932404, + 0.021034369245171547, + 0.0023070592433214188, + 0.017966197803616524, + -0.029543010517954826, + 0.026775330305099487, + 0.009528727270662785, + -0.0022477516904473305, + -0.0058042206801474094, + -0.008057903498411179, + -0.005238823127001524, + 0.0022497286554425955, + 0.005907020531594753, + 0.00990829523652792, + -0.003123524831607938, + -0.014818950556218624, + 0.001432274468243122, + -0.0016764234751462936, + 0.010493461973965168, + 0.016748419031500816, + -0.01851973496377468, + 0.010770229622721672, + -0.008026272989809513, + -0.006140296347439289, + 0.018946748226881027, + 0.005705375224351883, + 8.327751856995746e-5, + 0.0029930484015494585, + -0.00547605287283659, + -0.01847228780388832, + 0.00620751129463315, + 0.00747669069096446, + -0.0027518649585545063, + 0.01097582932561636, + -0.00917288288474083, + -0.02622179314494133, + -0.006077034864574671, + 0.001708054100163281, + -0.008057903498411179, + -0.022979654371738434, + -0.00033607546356506646, + -0.01776059903204441, + -0.005614437162876129, + 0.009125437587499619, + -0.005618391092866659, + 0.006231234408915043, + -0.005060900934040546, + -0.004772271495312452, + -0.020765509456396103, + 7.913835725048557e-5, + 0.018187612295150757, + -0.001287959748879075, + 0.005721190478652716, + 0.030286328867077827, + 1.3197448424762115e-5, + 0.011845671571791172, + -0.01698564924299717, + -0.003340985393151641, + 0.012161977589130402, + 0.013972830958664417, + 0.010153432376682758, + -0.011450288817286491, + 0.005784451495856047, + -0.02204654924571514, + -0.018788594752550125, + -0.016005098819732666, + 0.014882211573421955, + 0.007203876506537199, + -0.002700465265661478, + -0.009402205236256123, + 0.018155982717871666, + 0.0037165991961956024, + 0.011893117800354958, + -0.0021014600060880184, + 0.007326445076614618, + -0.0007191026234067976, + -0.016479559242725372, + 0.024529553949832916, + -0.00496205547824502, + 0.018677888438105583, + -0.0026431346777826548, + -0.0031156172044575214, + -0.015973469242453575, + 0.028783874586224556, + 0.00034348887857049704, + 0.00495810154825449, + 0.010580446571111679, + 0.003993367310613394, + -0.00390242924913764, + -0.006966646760702133, + -0.018851855769753456, + 0.003056309651583433, + 0.013585356064140797, + 0.03994948789477348, + -0.006954784970730543, + 0.016732603311538696, + 0.01062789186835289, + 0.002388112712651491, + -0.017570815980434418, + -0.0030227021779865026, + -0.004653656855225563, + 0.013688155449926853, + 0.004823671188205481, + -0.009291497990489006, + -0.025367766618728638, + 0.01485848892480135, + 0.0070892153307795525, + -0.015064088627696037, + -0.004519226495176554, + 0.002429627813398838, + -0.005867482163012028, + -0.004034882411360741, + -0.008287225849926472, + 0.002520565874874592, + -0.0016665388830006123, + -0.015775777399539948, + -0.00010798895527841523, + -0.019674252718687057, + -0.0024395124055445194, + 0.013672340661287308, + 0.014415659941732883, + -0.0046734255738556385, + -0.0017406732076779008, + 0.028720613569021225, + 0.006757093593478203, + -0.047287795692682266, + -0.007512275129556656, + 0.0037679988890886307, + 0.027170712128281593, + -0.020132897421717644, + -0.021556274965405464, + -0.013616986572742462, + 0.003983482718467712, + -0.018899302929639816, + -0.005448376294225454, + 0.020765509456396103, + -0.022837316617369652, + -0.018962563946843147, + 0.0014629167271777987, + -0.0072236452251672745, + 0.018646256998181343, + -0.0032757471781224012, + -0.0054206992499530315, + 0.01905745454132557, + -0.011995917186141014, + 0.006662201602011919, + -0.009077991358935833, + 0.003868821542710066, + -0.01774478331208229, + -9.55251289269654e-6, + -0.020433388650417328, + 0.012177793309092522, + -0.023849496617913246, + 0.007611120585352182, + -0.004807855933904648, + -0.002722211182117462, + -0.0029772331472486258, + -0.008374209515750408, + -0.007243414409458637, + 0.006136342417448759, + 0.006848031654953957, + 0.027170712128281593, + -0.017333585768938065, + -0.01975332945585251, + 0.0041475663892924786, + -0.018171798437833786, + 0.004503411240875721, + -0.0027755878400057554, + -0.009623619727790356, + 0.0036434533540159464, + -0.025794779881834984, + 0.006689878646284342, + 0.016036730259656906, + 0.005092531442642212, + 5.880548087588977e-6, + 0.017159616574645042, + -0.008085580542683601, + -0.002738026436418295, + 0.005800267215818167, + -0.013703971169888973, + -0.01632140576839447, + -0.020828770473599434, + 0.01695401780307293, + -0.02331177517771721, + 0.0006474395049735904, + 0.0007670428021810949, + -0.010398570448160172, + -0.01842484250664711, + 0.00422664312645793, + -0.014328676275908947, + -0.03764045238494873, + -0.013949108310043812, + 0.004034882411360741, + -0.013395572081208229, + 0.006772908847779036, + 0.022932207211852074, + 0.003192716743797064, + 0.01693820394575596, + 0.0022754285018891096, + -0.01380677055567503, + -0.004693194758147001, + 0.004187104757875204, + -0.0012523753102868795, + -0.018756965175271034, + 0.03036540560424328, + -0.017333585768938065, + -0.020338496193289757, + -0.011774502694606781, + -0.00951291248202324, + 0.009070083498954773, + -0.022378671914339066, + -0.01591811515390873, + 0.01273923646658659, + -0.013102988712489605, + 0.029495563358068466, + -0.0022299594711512327, + -0.007452967576682568, + 0.008350486867129803, + -0.009085899218916893, + 0.004969962872564793, + 0.020148711279034615, + -0.012391299940645695, + -0.009433835744857788, + 0.014597536064684391, + 0.01918397843837738, + 0.016163252294063568, + 0.018235059455037117, + -0.002552196616306901, + 0.014376121573150158, + 0.0014965242007747293, + 0.009331036359071732, + -0.011402842588722706, + -0.007721827831119299, + 0.0008891173056326807, + 0.0452001728117466, + 0.004839486442506313, + 0.02063898742198944, + -0.0084453783929348, + -0.0183773972094059, + 0.019484469667077065, + 0.0008649000665172935, + -0.01518270280212164, + -0.00693896971642971, + 0.006887570023536682, + 0.02278986945748329, + -0.0005742936627939343, + -0.018851855769753456, + -0.015483194030821323, + 0.0044599189423024654, + -0.011734964326024055, + 0.006140296347439289, + 0.010699060745537281, + 0.009528727270662785, + 0.014605443924665451, + 0.009283590130507946, + 0.005705375224351883, + 0.0008555097156204283, + -0.008571901358664036, + -0.003702760674059391, + 0.029210887849330902, + 0.011964286677539349, + -0.010272047482430935, + -0.016590265557169914, + -0.008627254515886307, + -0.015087811276316643, + -0.00043961635674349964, + -0.025668257847428322, + -0.009022637270390987, + -0.008397932164371014, + -0.02277405373752117, + 0.009639434516429901, + -0.017982013523578644, + 0.006614755839109421, + 0.004155474249273539, + -0.0007378833252005279, + 0.0013907593674957752, + -0.013458834029734135, + -0.003441808046773076, + 0.0014876280911266804, + 0.014992918819189072, + -0.0026431346777826548, + -0.013443018309772015, + 0.005555129610002041, + -0.006290541961789131, + -0.007136661093682051, + -0.010936290957033634, + -0.011323765851557255, + 0.007528090383857489, + -0.008619346655905247, + -0.016685158014297485, + 0.004661564249545336, + -0.0026886037085205317, + -0.0006113608251325786, + -0.006270772777497768, + -0.011228874325752258, + -0.017934568226337433, + -0.006278680171817541, + -0.004705056548118591, + -0.00025774023379199207, + 0.029210887849330902, + -0.004404565319418907, + -0.007947196252644062, + 0.01559390127658844, + 0.029416486620903015, + 0.012644344940781593, + 0.008065811358392239, + -0.02339085191488266, + -0.003030609805136919, + 0.006428925786167383, + -0.0007749504875391722, + 0.01235966943204403, + -0.0006429914501495659, + 0.004788086749613285, + 0.002457304624840617, + -0.0020322680938988924, + 0.01201173197478056, + 0.009528727270662785, + 0.01273923646658659, + -0.0045271338894963264, + -0.0053534843027591705, + -0.006179834716022015, + -0.01772896945476532, + -0.019278869032859802, + -0.004570626188069582, + -0.00694292364642024, + 0.012549453414976597, + 0.013648617081344128, + -0.016637712717056274, + -0.0038193988148123026, + 0.019342131912708282, + -0.002915948862209916, + -0.026111086830496788, + -0.005381161347031593, + -0.005499775987118483, + -0.015404117293655872, + -0.007120845839381218, + -0.01851973496377468, + 0.017902936786413193, + -0.022536825388669968, + -0.01983240619301796, + -0.0020579679403454065, + 0.012707605957984924, + 0.006077034864574671, + 0.013340218923985958, + 0.02187258191406727, + 0.004918563179671764, + -0.008144887164235115, + -0.002670811489224434, + 0.005049039609730244, + -0.023090360686182976, + 0.004997639916837215, + 0.035679351538419724, + -0.006816401146352291, + -0.0006583125214092433, + 0.007654612883925438, + 0.014890119433403015, + 0.013830493204295635, + 0.006911293137818575, + -0.002334736054763198, + -0.0029080412350594997, + -0.014249599538743496, + 0.023564821109175682, + 0.008769592270255089, + -0.012952743098139763, + 0.002910017967224121, + 0.011553088203072548, + -0.016479559242725372, + -0.010999551974236965, + 0.0058872513473033905, + -0.0010022956412285566, + -0.0038193988148123026, + -0.03757718950510025, + 0.002170652151107788, + -0.01567297801375389, + 0.00257987342774868, + -0.025952933356165886, + -0.012699698098003864, + -0.008295132778584957, + 0.015720423310995102, + -0.013854216784238815, + 0.005638159811496735, + -0.0003276735660620034, + -0.013498371466994286, + 0.012557360343635082, + 0.009141252376139164, + -0.023770419880747795, + 0.015127349644899368, + 0.0031887630466371775, + 0.003445761976763606, + 0.012929020449519157, + 0.0023742741905152798, + 0.004135705064982176, + -0.0015696700429543853, + -0.008326763287186623, + -0.013838401064276695, + 0.015412025153636932, + 0.004637841135263443, + 0.004293858073651791, + -0.018677888438105583, + -0.010509277693927288, + 0.005064854864031076, + -0.023707158863544464, + -0.018582995980978012, + -0.003457623301073909, + 0.006879662163555622, + 0.009702696464955807, + -0.0017456155037507415, + -0.004724825732409954, + -0.014818950556218624, + -0.009085899218916893, + -0.006191696040332317, + 0.00495414761826396, + -0.011545180343091488, + -0.01915234699845314, + 0.004898793995380402, + -0.011339581571519375, + -0.005515591241419315, + 0.010928383097052574, + 0.013055543415248394, + -0.007860211655497551, + -0.0006919200532138348, + 0.005183469504117966, + -0.004266181495040655, + -0.029258333146572113, + -0.002241821028292179, + -0.0016586312558501959, + -0.008026272989809513, + 0.018203428015112877, + -0.016115806996822357, + 0.01389375515282154, + -0.013988646678626537, + -0.007128753699362278, + -0.031504109501838684, + -0.0326111800968647, + 0.02551010437309742, + 0.013110896572470665, + 0.016574451699852943, + -0.005772590171545744, + 0.01848810352385044, + -0.002500796690583229, + -0.017555000260472298, + -0.023928573355078697, + 0.01902582496404648, + -0.023833680897951126, + 0.015783684328198433, + -0.005128115881234407, + 0.0034516926389187574, + -0.003722529858350754, + -0.024355586618185043, + 0.0035505383275449276, + 0.005614437162876129, + -0.007282952778041363, + 0.0021469290368258953, + 0.012541545554995537, + -0.012873667292296886, + 0.00693106185644865, + -0.018836040049791336, + -0.008951468393206596, + -0.007496459409594536, + -0.03114035725593567, + -0.02120833843946457, + 4.716794501291588e-5, + 0.024577001109719276, + -0.015941837802529335, + -0.014589629136025906, + 0.004475734196603298, + 0.03129851073026657, + -0.015151072293519974, + 0.01275505218654871, + 0.014589629136025906, + -0.013102988712489605, + 0.006812447216361761, + -0.012549453414976597, + -0.03688131645321846, + 0.02683859132230282, + 0.017159616574645042, + 0.0005762705695815384, + -0.0339396670460701, + -0.005598621908575296, + -0.0212715994566679, + 0.013735601678490639, + 0.017982013523578644, + 0.008144887164235115, + -0.0014955358346924186, + 0.022410301491618156, + 0.0060335430316627026, + 0.004894840065389872, + 0.00028714683139696717, + -0.008168610744178295, + 0.006266818847507238, + -0.0010190993780270219, + 0.010754414834082127, + -0.025257058441638947, + -0.028562460094690323, + -0.013640710152685642, + -0.0012741213431581855, + -0.0047485483810305595, + -0.005717236548662186, + -0.008951468393206596, + -0.02774006314575672, + 0.0014480898389592767, + 0.005464191548526287, + -0.0004149049345869571, + 0.013079266063869, + 0.017159616574645042, + -0.004574580118060112, + 0.0008836807683110237, + 0.00039266463136300445, + 0.01696983352303505, + -0.013561633415520191, + -0.004416427109390497, + 0.000794719613622874, + -0.01102327462285757, + 0.017286140471696854, + -0.013348126783967018, + -0.04333396628499031, + -0.015973469242453575, + 0.000933597853872925, + -0.007820673286914825, + 0.004582487512379885, + 0.003228301415219903, + -0.01763407699763775, + -0.006195649970322847, + 0.00957617349922657, + 0.014233783818781376, + -0.004119889810681343, + 0.008991006761789322, + 0.01032740157097578, + -0.022932207211852074, + -0.003629614831879735, + 0.005642113741487265, + -0.012826221063733101, + 0.023185253143310547, + -0.02410254068672657, + 0.018582995980978012, + 0.002354505006223917, + 0.01203545555472374, + 0.0051360237412154675, + 0.005784451495856047, + 0.005408837925642729, + -0.012264776974916458, + -0.008595624007284641, + 0.017254509031772614, + -0.023691343143582344, + 0.01640048250555992, + 0.02119252271950245, + -0.020022189244627953, + 0.0028981566429138184, + -0.020227788016200066, + 0.0053574382327497005, + -0.009797587990760803, + 0.0072275991551578045, + -0.002429627813398838, + 0.0006232222658582032, + -0.00015073972463142127, + 0.009101714007556438, + -0.010991644114255905, + 0.010145525448024273, + 0.007955104112625122, + 0.00997946411371231, + -0.004242458380758762, + 0.007674382068216801, + 0.021556274965405464, + 3.0055278330110013e-5, + -0.00231298990547657, + 0.009765957482159138, + 0.007887888699769974, + 0.005709329154342413, + -0.022220518440008163, + -0.01598137617111206, + 0.011861486360430717, + 0.01022460125386715, + -0.011402842588722706, + 0.004202920012176037, + -0.022331226617097855, + -0.010596261359751225, + -0.02048083394765854, + -0.021160893142223358, + -0.009038452990353107, + -0.00423455098643899, + 0.006175880786031485, + -0.00326586258597672, + 0.023074544966220856, + 0.010351124219596386, + 0.02343829721212387, + -0.013435110449790955, + 0.015680884942412376, + -0.014281230047345161, + -0.03343357890844345, + -0.00846119411289692, + 0.006037496961653233, + -0.009014730341732502, + -0.018567180261015892, + 0.02687022089958191, + 0.013632802292704582, + 8.44513124320656e-5, + 0.010730691254138947, + 0.018582995980978012, + -0.005393022671341896, + 0.007781135383993387, + 0.012533637695014477, + 0.009038452990353107, + -0.017491739243268967, + 0.03412945196032524, + -0.01782386004924774, + 0.026538100093603134, + 0.011798225343227386, + 0.010738599114120007, + -0.011560996063053608, + 0.011442380957305431, + -0.002384158782660961, + 0.008603531867265701, + 0.004246412310749292, + -0.014471014030277729, + 0.001432274468243122, + -0.009077991358935833, + -0.011814041063189507, + 0.022932207211852074, + -0.02057572640478611, + 0.014621259644627571, + -0.014890119433403015, + 0.0012929020449519157, + 0.021540459245443344, + 0.0012118485756218433, + 0.010113894008100033, + -0.001046776189468801, + 0.01098373718559742, + -0.012525729835033417, + 0.008231871761381626, + -0.008382117375731468, + 0.013656524941325188, + -0.008477008901536465, + 0.011466103605926037, + 0.023501558229327202, + 0.008611439727246761, + 0.003922198433429003, + -0.012169885449111462, + 0.0011031182948499918, + -5.056576628703624e-5, + -0.0059623741544783115, + 0.005440468434244394, + 0.01980077475309372, + 0.0003064217453356832, + 0.0064921872690320015, + -0.005823989864438772, + -0.027344681322574615, + -0.001744627021253109, + 0.003605891950428486, + -0.017428478226065636, + 0.00727504538372159, + -0.022378671914339066, + -0.026759514585137367, + -0.00956826563924551, + 0.022853130474686623, + 0.010675338096916676, + -0.00030716307810507715, + -0.007112938445061445, + -0.04241667687892914, + 0.005551175680011511, + -0.007108984515070915, + -0.0034082005731761456, + -0.0033568006474524736, + 0.005566990934312344, + -0.0023485743440687656, + 0.004969962872564793, + -0.01413889229297638, + -0.0017802114598453045, + 0.00018447083130013198, + -0.0014016323257237673, + 0.0011159682180732489, + 0.005270454101264477, + 0.004641795065253973, + 0.014668704941868782, + -0.0014154707314446568, + 0.024260694161057472, + -0.01632140576839447, + 0.0004354154225438833, + -0.003872775472700596, + 0.0019205723656341434, + -0.003271793480962515, + 0.013601171784102917, + 0.020038004964590073, + 0.0073027219623327255, + 0.018851855769753456, + -0.0021291368175297976, + -0.0035722844768315554, + 0.012652252800762653, + 0.005895158741623163, + -0.027961477637290955, + 0.01850391924381256, + -0.005966327618807554, + 0.007203876506537199, + -0.014826858416199684, + 0.0024197432212531567, + 0.006361710838973522, + -0.005396976601332426, + 0.008801222778856754, + 0.0021607675589621067, + 0.007255276199430227, + 0.013403479941189289, + 0.00919660646468401, + 0.015878576785326004, + 0.007658566813915968, + 0.0028230338357388973, + -0.00012312470062170178, + -0.018298320472240448, + 0.011964286677539349, + -0.012581083923578262, + 0.011489827185869217, + -0.02188839763402939, + -0.008255594410002232, + 0.00012071534001734108, + -0.023027099668979645, + -0.017570815980434418, + -0.008919837884604931, + 0.019278869032859802, + -0.006080988794565201, + 0.005899112671613693, + 0.006523817777633667, + 0.01633722148835659, + 0.013229511678218842, + -0.01419424545019865, + -0.025367766618728638, + -0.009299405850470066, + 0.014668704941868782, + -0.01910490170121193, + -0.015127349644899368, + 0.030776605010032654, + 0.027898216620087624, + 0.003121547866612673, + -0.00791161134839058, + 0.005472099408507347, + -0.021508829668164253, + 0.008943561464548111, + 0.008144887164235115, + -0.01128422748297453, + -0.00640520267188549, + 0.004191058687865734, + -0.0054246531799435616, + -0.008706331253051758, + -0.03416108340024948, + -0.006365664768964052, + -0.0073699369095265865, + -0.003805560292676091, + 0.008429563604295254, + 0.0027577956207096577, + -0.02706000581383705, + -0.0006143261562101543, + -0.020338496193289757, + 0.006923154462128878, + 0.013688155449926853, + 0.05883297324180603, + 0.0327693335711956, + 0.0051399776712059975, + -0.0028783874586224556, + 0.008571901358664036, + -0.04659191891551018, + 0.007397613953799009, + -0.005800267215818167, + -0.010762322694063187, + -0.006796631962060928, + 0.001729800133034587, + -0.001781199942342937, + 0.018646256998181343, + 0.007781135383993387, + -0.0016032776329666376, + 0.02272660844027996, + -0.019278869032859802, + 0.009932017885148525, + 0.01388584729284048, + 0.009528727270662785, + 0.0043966579250991344, + 0.0014006438432261348, + -0.0015706585254520178, + -0.008231871761381626, + 0.013719785958528519, + -0.01024041697382927, + -0.003226324450224638, + -0.013901662081480026, + -0.012154069729149342, + 0.011505641974508762, + 0.010904660448431969, + -0.01774478331208229, + -0.012375484220683575, + -0.010335308499634266, + -0.014890119433403015, + 0.01844065822660923, + -0.0022912437561899424, + 0.005926789715886116, + 0.0052071926183998585, + -0.00846119411289692, + -0.005934697110205889, + -0.010944198817014694, + 0.016621896997094154, + -0.03609054908156395, + -0.004266181495040655, + 0.020132897421717644, + -0.003295516362413764, + -0.01063579972833395, + -0.0003812973736785352, + -0.01692238822579384, + 0.006721509154886007, + 0.0014866397250443697, + 0.007571582216769457, + -0.004317581187933683, + -0.022853130474686623, + 0.021572090685367584, + 0.03466717153787613, + -0.026427391916513443, + -0.007713920436799526, + -0.009963649325072765, + 0.011110259220004082, + -0.014890119433403015, + -0.0024138125590980053, + 0.021445568650960922, + 0.012241054326295853, + 0.032864224165678024, + 0.013901662081480026, + 0.010398570448160172, + 0.012462468817830086, + 0.0031136402394622564, + 0.03133014217019081, + -0.013735601678490639, + -0.025952933356165886, + 0.008105349726974964, + -0.03665990009903908, + -0.007484598085284233, + -0.007354121655225754, + -0.017333585768938065, + -0.0177131537348032, + 0.023264329880475998, + 0.017871307209134102, + -0.0022042596247047186, + 0.03520489111542702, + -0.00495019368827343, + -0.01690657250583172, + 6.529995880555362e-5, + -0.0052744075655937195, + -0.0029218795243650675, + -0.0020085449796169996, + 0.006361710838973522, + -0.007255276199430227, + 0.0145263671875, + -0.024561185389757156, + 0.00320457830093801, + 0.0204492025077343, + -0.0011100374395027757, + -0.01972169801592827, + -0.0027301188092678785, + 0.006073081400245428, + 0.025146352127194405, + -0.02199910394847393, + 0.0204492025077343, + -0.0029732794500887394, + 0.008635162375867367, + -0.007686243392527103, + -0.04561137035489082, + 0.020006373524665833, + 0.006061219610273838, + -0.005907020531594753, + 0.040076009929180145, + -0.006879662163555622, + 0.013348126783967018, + 0.006310311146080494, + 0.002935718046501279, + 0.003082009730860591, + 0.017301956191658974, + -0.007630889769643545, + 0.01839321292936802, + 0.03767208009958267, + 0.016669342294335365, + -0.00852445513010025, + 0.015570178627967834, + 0.012114531360566616, + 0.007006184663623571, + 0.025004014372825623, + -0.005092531442642212, + 0.00694687757641077, + 0.038684263825416565, + -0.013711879029870033, + -0.023849496617913246, + 0.03745066747069359, + 0.004400611389428377, + -0.00620751129463315, + 0.009876664727926254, + 0.010714876465499401, + -0.009109621867537498, + -0.0070852614007890224, + 0.0005540302954614162, + 0.0051518389955163, + -0.0177131537348032, + -0.011853579431772232, + 0.010113894008100033, + 0.023517373949289322, + -0.013332311064004898, + -0.0002878881641663611, + 0.005238823127001524, + -0.012122439220547676, + 0.00852445513010025, + 0.005460237618535757, + -0.006899431347846985, + 0.006970600225031376, + -0.02187258191406727, + 0.008991006761789322, + -0.003605891950428486, + -0.0014678590232506394, + -0.0004991709138266742, + -0.0134904645383358, + 0.02685440517961979, + 0.0032619088888168335, + -0.021034369245171547, + -0.00442038057371974, + 0.0036553149111568928, + 0.004709010012447834, + -0.0035248384810984135, + 0.013189973309636116, + 0.00462202588096261, + -0.012138254940509796, + -0.005820035934448242, + -0.0023011283483356237, + -0.004278042819350958, + -0.0028546645771712065, + 0.006800585892051458, + -0.00812116451561451, + -0.012683883309364319, + 0.000933597853872925, + -0.019294684752821922, + -0.011173520237207413, + -0.027154896408319473, + -0.027961477637290955, + 0.0014767551328986883, + 0.03400292992591858, + 0.026032010093331337, + 0.02057572640478611, + 0.004388750065118074, + 0.009932017885148525, + -0.011647979728877544, + 0.02335922047495842, + 0.011149797588586807, + 0.015483194030821323, + 0.009125437587499619, + -0.007049676962196827, + 0.006527771707624197, + 0.001729800133034587, + -0.011766594834625721, + -0.02117670699954033, + 0.01842484250664711, + -0.0035564692225307226, + 0.01527759525924921, + -0.03741903603076935, + 0.002362412866204977, + -0.021603722125291824, + -0.004788086749613285, + 0.0015390279004350305, + 0.002356481971219182 + ], + "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef": [ + 0.00010233692592009902, + 0.00781970750540495, + -0.01599651761353016, + 0.0005995650426484644, + -0.0367814376950264, + -0.010542606003582478, + 0.0238770954310894, + 0.011305504478514194, + -0.02150724083185196, + 0.03713854029774666, + 0.020468400791287422, + 0.013358836993575096, + 0.0010215939255431294, + -0.02462376095354557, + -0.002302897861227393, + 0.033113032579422, + -0.026165788993239403, + 0.03251245617866516, + 0.0055147809907794, + -0.010542606003582478, + 0.06112925708293915, + 0.011776228435337543, + -0.035060860216617584, + 0.02903883159160614, + -0.005579708609730005, + -0.009544345550239086, + 0.004346085712313652, + -0.01475477870553732, + -0.03434665873646736, + 0.015201155096292496, + 0.022935645654797554, + 0.017871299758553505, + 0.020192457363009453, + -0.003930144011974335, + 0.03189564496278763, + -0.024201732128858566, + -0.006931012496352196, + 0.05658433213829994, + -0.02231883443892002, + 0.0010753619717434049, + -0.019640574231743813, + 0.0027594196144491434, + 0.005924636032432318, + 0.0018118835287168622, + -0.04970201477408409, + 0.01894260384142399, + -7.044382073218003e-5, + -0.03246375918388367, + 0.020322313532233238, + 0.0077831861563026905, + 0.0055918823927640915, + -0.05028636381030083, + -0.01089159119874239, + 0.01199535932391882, + 0.005267244763672352, + 0.001025144592858851, + 0.004873621743172407, + 0.06551186740398407, + -0.0010794199770316482, + -0.006001737434417009, + 0.019429558888077736, + -0.015964053571224213, + -0.014925213530659676, + 0.019072458148002625, + -0.0034918831661343575, + -0.040482308715581894, + 0.006208694074302912, + -0.00491825956851244, + -0.04768926277756691, + -0.01809854619204998, + 0.005928693804889917, + 0.03418433666229248, + -0.04090433567762375, + 0.007702026981860399, + -0.028649266809225082, + 0.0075356499291956425, + 0.07875707745552063, + -0.02746433950960636, + 0.016832459717988968, + 0.0064237662591040134, + -0.027691585943102837, + 0.017043473199009895, + 0.0060869548469781876, + -0.001160579384304583, + 0.03603477403521538, + 0.019689269363880157, + -0.04207303002476692, + -0.049929261207580566, + 0.009722895920276642, + -0.026668978855013847, + -0.0023434776812791824, + -0.005169853568077087, + 0.0330968014895916, + -0.022010428830981255, + -0.030710715800523758, + 0.02812984772026539, + 0.04885795712471008, + -0.002613332588225603, + -0.005900288000702858, + -0.046650420874357224, + -0.006444056052714586, + 0.01912115328013897, + -0.07018664479255676, + -0.012522894889116287, + 0.0045124622993171215, + -0.01069680880755186, + 0.005831302609294653, + -0.009722895920276642, + -0.02657158672809601, + 0.09998837858438492, + 0.00991767831146717, + -0.019088691100478172, + 0.008310722187161446, + 0.022481152787804604, + -0.036164626479148865, + -0.09219707548618317, + 0.017124632373452187, + -0.027788978070020676, + 0.01213333010673523, + -0.037982597947120667, + 0.007706084754317999, + 0.0542469397187233, + 0.011151301674544811, + 0.006488693878054619, + -0.021020283922553062, + 0.023763472214341164, + 0.00900057703256607, + -0.023584920912981033, + 0.0002731521090026945, + -0.0022501442581415176, + -0.029184918850660324, + -0.01618318445980549, + -0.0238933265209198, + 0.009893330745398998, + -0.014048691838979721, + 0.027318254113197327, + 0.009682316333055496, + 0.03814491629600525, + -0.05541563779115677, + 0.046455640345811844, + -0.04522201791405678, + -0.04528694227337837, + -0.012628402560949326, + 0.004236520733684301, + 0.0018981153843924403, + 0.014129851013422012, + -0.04200810566544533, + 0.0753808468580246, + 0.006188404280692339, + 0.0032626078464090824, + -0.02517564594745636, + -0.016670139506459236, + 0.059311289340257645, + 0.0026397095061838627, + 0.005506664980202913, + 0.009795939549803734, + -0.019786661490797997, + 0.006188404280692339, + 0.01728695258498192, + 0.009674199856817722, + 0.026782602071762085, + -0.029266078025102615, + 0.016402313485741615, + 0.01055883802473545, + 0.03163593262434006, + 0.0275779627263546, + 0.016386082395911217, + 0.03200926631689072, + -0.0459686815738678, + 0.015006372705101967, + 0.024737384170293808, + -0.0055147809907794, + 0.024299124255776405, + -0.007685794960707426, + 0.009219707921147346, + -0.02399071864783764, + 0.01701100915670395, + 0.040839407593011856, + 0.010510141961276531, + -0.04528694227337837, + -0.0020320285111665726, + -0.018228400498628616, + -0.02077680639922619, + -0.008903185836970806, + 0.030889267101883888, + 0.0533054918050766, + 0.018634198233485222, + -0.02040347270667553, + 0.014714199118316174, + 0.010794200003147125, + 0.003993042279034853, + 0.02123129926621914, + 0.011686952784657478, + 0.025971006602048874, + -0.0035852163564413786, + -0.021523471921682358, + 0.021442312747240067, + -0.006878259126096964, + -0.01305043138563633, + 0.023731008172035217, + -0.01774144358932972, + -0.03408694639801979, + -0.0358724519610405, + 0.04262491688132286, + 0.007231302093714476, + -0.001931593636982143, + 0.003652172861620784, + -0.006009853444993496, + 0.04077447950839996, + -0.04833853617310524, + 0.04382607340812683, + -0.04421563819050789, + 0.03079187497496605, + -0.026117093861103058, + -0.020419703796505928, + -0.008959997445344925, + -0.025792457163333893, + 0.028876513242721558, + 0.028373325243592262, + -0.014917097054421902, + 0.005206375382840633, + -0.00137869524769485, + 0.011727533303201199, + -0.027350716292858124, + 0.006074781063944101, + -0.002028984948992729, + -0.016613328829407692, + 0.01617506705224514, + -0.0367489755153656, + -0.014616807922720909, + 0.043988391757011414, + 0.017708981409668922, + -0.008225505240261555, + -0.017157096415758133, + -0.01827709563076496, + -0.017595358192920685, + -0.026863761246204376, + 0.03655419126152992, + -0.0022237675730139017, + -0.0005970288184471428, + 0.00991767831146717, + -0.0004681882855948061, + 0.02139361761510372, + 0.007507244125008583, + 0.04012520611286163, + 0.03424926474690437, + -0.000502681010402739, + 0.019543182104825974, + 0.03254491835832596, + -0.04343650862574577, + 0.006784925702959299, + 0.029736803844571114, + -0.0017621733713895082, + -0.0016799995210021734, + -0.024023180827498436, + 0.050318825989961624, + -0.014422024600207806, + -0.02874665893614292, + 0.014503184705972672, + -0.055902592837810516, + -0.007478838320821524, + -0.0028852166142314672, + 0.025419123470783234, + -0.011581446044147015, + 0.01865042932331562, + -0.02519187703728676, + 0.018504342064261436, + -0.027334485203027725, + -0.0012569561367854476, + 0.05447418615221977, + 0.009942025877535343, + -0.005429563578218222, + -0.019543182104825974, + -0.027448108419775963, + -0.013959416188299656, + -0.0027573904953897, + 0.031457383185625076, + -0.009357678703963757, + 0.01029912754893303, + 0.0007486954564228654, + 0.012555358931422234, + 0.008789562620222569, + -0.016597095876932144, + 0.0033295643515884876, + -0.05483128875494003, + -0.014422024600207806, + -0.023747239261865616, + 0.0033944917377084494, + -0.04889041930437088, + -0.01912115328013897, + -0.010177388787269592, + -0.010282895527780056, + 0.028259702026844025, + 0.011467822827398777, + 0.03379477187991142, + -0.020176226273179054, + 0.0072881137020885944, + -0.0015917386626824737, + -0.0048695639707148075, + 0.007089273538440466, + -0.07492635399103165, + 0.0006239128415472806, + 0.014771010726690292, + -0.02765912190079689, + -0.008391881361603737, + 0.006699708290398121, + 0.03454143926501274, + 0.03590491786599159, + -0.048371002078056335, + 0.0013218836393207312, + 0.032382600009441376, + 0.013391301035881042, + 0.015233619138598442, + -0.003713042475283146, + -0.00456927390769124, + -0.0028486947994679213, + 0.017984922975301743, + 0.006103186868131161, + -0.0156150683760643, + -0.007726374547928572, + 0.03885911777615547, + 0.018066082149744034, + -0.05690896883606911, + 0.0367489755153656, + 0.031084049493074417, + -0.01679999567568302, + 0.04652056843042374, + -0.009576808661222458, + -0.04178085923194885, + -0.007592461537569761, + -0.00996637437492609, + -0.01736811175942421, + 0.004962896928191185, + -0.04603360965847969, + 0.003942317795008421, + -0.03347013518214226, + -0.036716509610414505, + -0.011792460456490517, + -0.02067941427230835, + -0.04145621880888939, + -0.01847187802195549, + 0.02812984772026539, + -0.032755933701992035, + -0.017627820372581482, + 0.019445791840553284, + -0.02131245844066143, + -0.01598028466105461, + 0.0070243459194898605, + -0.02058202400803566, + -0.021296225488185883, + 0.0009865938918665051, + -0.016313038766384125, + 0.024201732128858566, + -0.01543651707470417, + 0.037430714815855026, + -0.0015136228175833821, + 0.0007065940299071372, + -0.027448108419775963, + 0.025516513735055923, + 0.005819128826260567, + 0.014860285446047783, + -0.02233506552875042, + -0.025208108127117157, + -0.031100280582904816, + 0.004528694320470095, + -0.0003396013635210693, + -0.018780285492539406, + -0.009154779836535454, + 0.024851007387042046, + 0.03077564388513565, + -0.026214485988020897, + 0.02913622371852398, + 0.0395408570766449, + -0.018504342064261436, + -0.025776224210858345, + -0.016978545114398003, + 0.05294838920235634, + -0.005096809938549995, + -0.03746317699551582, + 0.019884051755070686, + -0.011849272064864635, + 0.037073612213134766, + 0.007637099362909794, + -0.02361738495528698, + 0.03632694482803345, + 0.043046943843364716, + 0.008010432124137878, + -0.007357099559158087, + 0.001074347528629005, + -0.008976229466497898, + -0.02535419538617134, + 0.02149100787937641, + -0.032934483140707016, + 0.01148405484855175, + -0.022481152787804604, + 0.024786079302430153, + -0.0015755067579448223, + 0.00913854781538248, + 0.020517095923423767, + -0.011126953177154064, + -0.018958834931254387, + 0.011240576393902302, + 0.0035973903723061085, + 0.035255640745162964, + 0.018358254805207253, + -0.02876289002597332, + -0.002692463109269738, + -0.03720346838235855, + 0.0021872457582503557, + 0.0449947714805603, + -0.0009734055493026972, + 0.03148984536528587, + -0.0014760865597054362, + -0.016946082934737206, + 0.04703998565673828, + -0.03006144054234028, + 0.019526951014995575, + 0.031213903799653053, + -0.043598826974630356, + -0.04853332042694092, + 0.01920231431722641, + 0.053240563720464706, + -0.02801622450351715, + 0.04291708767414093, + 0.00839999783784151, + 0.010980866849422455, + 0.05151998624205589, + 0.0024307239800691605, + -0.01994897983968258, + -0.01957564614713192, + 0.025110717862844467, + 0.01572057604789734, + -0.023130428045988083, + -0.02030608057975769, + -0.00905738864094019, + -0.019072458148002625, + -0.02822723798453808, + 0.014641155488789082, + -0.002152753062546253, + 0.0017976806266233325, + 0.0450272336602211, + 0.036164626479148865, + 0.014073039405047894, + -0.0003969201643485576, + -0.04145621880888939, + -0.022627240046858788, + -0.045708972960710526, + 0.01793622598052025, + -0.0004768114595208317, + 0.006460288073867559, + -0.01616695150732994, + 0.03889158368110657, + -0.0321553535759449, + 0.0023739123716950417, + -0.00613565044477582, + -0.022205211222171783, + -0.003680578665807843, + -0.04905274137854576, + -0.0005731882411055267, + -0.015972169116139412, + -0.02030608057975769, + -0.019153617322444916, + 0.01949448697268963, + -0.0046179695054888725, + 0.013164054602384567, + -0.015119995921850204, + -0.017384342849254608, + 0.015339125879108906, + 0.0021689848508685827, + -0.014762894250452518, + -0.02598723955452442, + 0.0022318833507597446, + -0.027691585943102837, + 0.007596519775688648, + -0.02188057266175747, + -0.010185504332184792, + 0.008253910578787327, + -0.0001618115493329242, + 0.02314666099846363, + -0.024737384170293808, + -0.029996512457728386, + -0.025224341079592705, + -0.014162315055727959, + 0.018309559673070908, + 0.02527303621172905, + -0.03353506326675415, + 0.017627820372581482, + -0.01213333010673523, + -0.02178318239748478, + 0.010185504332184792, + 0.03251245617866516, + -0.024607529863715172, + 0.0044434769079089165, + 0.023406369611620903, + 0.003650143975391984, + -0.021913036704063416, + 0.008103765547275543, + -0.017855066806077957, + -0.004581448156386614, + -0.013699706643819809, + 0.021523471921682358, + -0.04609853774309158, + 0.019056227058172226, + 0.02223767526447773, + 0.006659128703176975, + -0.017530430108308792, + -0.0031023179180920124, + -0.011841156519949436, + -0.017757676541805267, + -0.012685214169323444, + -0.013074778951704502, + -0.025289269164204597, + 0.023114196956157684, + -0.01671883650124073, + -0.011191881261765957, + -0.0063872444443404675, + -0.03447651118040085, + 0.011264923959970474, + 0.01299361977726221, + -0.009203475899994373, + 0.006249273661524057, + 0.007986084558069706, + -0.0030962310265749693, + 0.026961151510477066, + 0.007405795156955719, + -0.0238770954310894, + 0.008375650271773338, + 0.010128692723810673, + -0.007170432712882757, + -0.033957090228796005, + -0.0023089847527444363, + 0.004439419135451317, + 0.010542606003582478, + -0.00413101352751255, + 0.03444404900074005, + -0.001981303794309497, + -0.017855066806077957, + 0.01488463394343853, + 0.006022027228027582, + 0.05262375250458717, + -0.021653328090906143, + 0.0022866660729050636, + -0.003177390433847904, + -0.01845564693212509, + 0.013277677819132805, + 0.037917669862508774, + -0.0045936219394207, + 0.03843709081411362, + -0.025305500254034996, + -0.003510143840685487, + -0.019981443881988525, + 0.01791999489068985, + -0.010031301528215408, + 0.0014081154949963093, + 0.007279998157173395, + -0.04087187349796295, + 0.005879998207092285, + -0.008943765424191952, + -0.03609969839453697, + -0.00260927458293736, + 0.009089852683246136, + 0.01313970610499382, + 0.011045794002711773, + 0.026328109204769135, + -0.009211591444909573, + -0.007470722310245037, + -0.01373216975480318, + 0.022383762523531914, + 0.01024231594055891, + -0.013545503839850426, + 0.005786665249615908, + 0.008740867488086224, + 0.027594195678830147, + -0.0002632607938721776, + -0.011581446044147015, + 0.023373905569314957, + -0.009666084311902523, + 0.011784344911575317, + 0.004492172505706549, + -0.019981443881988525, + 0.02176695130765438, + -0.0385669469833374, + 0.007592461537569761, + -0.020468400791287422, + -0.009382026270031929, + -0.0013634779024869204, + -0.02252984791994095, + -0.015274198725819588, + 0.0174492709338665, + 0.018423182889819145, + 0.03179825097322464, + 0.014259706251323223, + 0.02214028313755989, + 0.011500286869704723, + -0.03226897493004799, + 0.027626659721136093, + -0.007766954135149717, + 0.004816810134798288, + 0.0033559410367161036, + -0.021539704874157906, + 0.008391881361603737, + 0.0376904234290123, + 0.016929849982261658, + -0.021653328090906143, + -0.0017408690182492137, + 0.018504342064261436, + -0.000943478022236377, + 0.0067037660628557205, + 0.015777386724948883, + 0.00795362051576376, + -0.03158723935484886, + 0.018617965281009674, + 0.021166371181607246, + -0.005177969578653574, + 0.016296807676553726, + 0.0065982588566839695, + 0.0016130430158227682, + 0.024136804044246674, + 0.018049849197268486, + -0.03372984379529953, + 0.014284053817391396, + -0.010307243093848228, + 0.05557795614004135, + 0.009487533941864967, + 0.03246375918388367, + 0.00886260624974966, + 0.002799999201670289, + -0.028925208374857903, + -0.0440857857465744, + -0.009625504724681377, + 0.032122887670993805, + -0.004118839278817177, + 0.031928107142448425, + -0.034703757613897324, + 0.007600577548146248, + 0.013350720517337322, + 0.02223767526447773, + 0.007036519702523947, + -0.014227242209017277, + -0.022107819095253944, + -0.04061216115951538, + 0.0007329708314500749, + -0.006168114021420479, + 0.0238933265209198, + -0.00023206515470519662, + 0.006172172259539366, + -0.01671883650124073, + 0.01673506759107113, + 0.03577506169676781, + -0.0013634779024869204, + -0.04694259539246559, + 0.01599651761353016, + -0.007142026908695698, + 0.034866075962781906, + -0.001211303984746337, + -0.05359766632318497, + -0.00366231775842607, + 0.0002594564575701952, + 0.018877675756812096, + 0.011086373589932919, + 0.01817970536649227, + -0.008233620785176754, + -0.008201156742870808, + 0.014933329075574875, + 0.008976229466497898, + 0.02803245559334755, + -0.017351878806948662, + 0.0005366665427573025, + -0.008343186229467392, + 0.019267240539193153, + -0.01135419961065054, + -0.012141445651650429, + 0.025305500254034996, + 0.027139702811837196, + -0.008748983033001423, + -0.02233506552875042, + 0.031019121408462524, + -0.006342607084661722, + -0.015322893857955933, + -0.02093912474811077, + -0.028779122978448868, + -0.013853909447789192, + -0.02123129926621914, + 0.013675358146429062, + 0.04850085452198982, + -0.008107824251055717, + -0.0024571006651967764, + 0.003625796176493168, + -0.008156519383192062, + 0.0005949998158030212, + 0.011045794002711773, + -0.0072028967551887035, + 0.01790376380085945, + -0.008152461610734463, + -0.014146083034574986, + 0.002359709469601512, + -0.021361153572797775, + 0.005871882196515799, + 0.023227820172905922, + -0.013074778951704502, + -0.02564636990427971, + 0.003575071459636092, + -0.015282314270734787, + -0.020435936748981476, + -0.002067535649985075, + 0.010542606003582478, + -0.01663767732679844, + -0.028259702026844025, + 0.020890429615974426, + 0.00047782596084289253, + -0.0024976804852485657, + 0.008838258683681488, + 0.006788983475416899, + 0.0015988401137292385, + 0.004788404330611229, + -0.0024063761811703444, + 0.004370433744043112, + -0.017530430108308792, + -0.014949561096727848, + -0.012506662867963314, + -0.008773330599069595, + 0.05340288206934929, + 0.018893906846642494, + -0.026685209944844246, + -0.030808107927441597, + -0.005113041959702969, + 0.0036399990785866976, + -0.025565210729837418, + 0.004017390310764313, + -0.007892751134932041, + 0.04041738063097, + -0.01116753276437521, + -0.003782027866691351, + 0.0017033328767865896, + -0.01811477728188038, + -0.01793622598052025, + 0.013204634189605713, + 0.00932521466165781, + 0.014738546684384346, + -0.03200926631689072, + 0.022464921697974205, + -0.010607533156871796, + 0.027431875467300415, + -0.015939705073833466, + 0.025143181905150414, + 0.007413911167532206, + 0.005267244763672352, + 0.008176809176802635, + 0.020468400791287422, + 0.02416926808655262, + 0.04619592800736427, + -0.02426666021347046, + 0.031213903799653053, + 0.016475357115268707, + -0.016329269856214523, + 0.0015257967170327902, + -0.0006918838480487466, + 0.002402318175882101, + -0.02288695052266121, + 0.007223186548799276, + 0.001167680835351348, + 0.012506662867963314, + 0.006577969063073397, + 0.017027242109179497, + -0.013983763754367828, + -0.02507825382053852, + -0.035969845950603485, + 0.03967071324586868, + 0.021913036704063416, + -0.010493909940123558, + 0.005457969382405281, + 0.048825494945049286, + 0.027999991551041603, + 0.004828984383493662, + 0.005466085392981768, + -0.006346664857119322, + 0.028551876544952393, + -0.005388983990997076, + -0.04918259382247925, + 0.016102025285363197, + -0.007669562939554453, + -0.018877675756812096, + -0.002980578923597932, + -0.025759993121027946, + 0.011922315694391727, + 0.011833040043711662, + 0.029282310977578163, + -0.00041797090671025217, + -0.015395937487483025, + -0.014852169901132584, + 0.008424345403909683, + 0.03272346779704094, + -0.006022027228027582, + 0.0019072458380833268, + 0.006736230105161667, + -0.012230721302330494, + -0.006476520095020533, + 0.000633043295238167, + -0.0026031876914203167, + 0.01643477752804756, + 0.003656230866909027, + -0.046910133212804794, + -0.004995360970497131, + 0.006415650248527527, + 0.002390144160017371, + -0.018958834931254387, + -0.009349562227725983, + 0.022221442312002182, + 0.0137808658182621, + 0.016142604872584343, + -0.007762896362692118, + -0.009560576640069485, + -0.003544636769220233, + 0.03538549691438675, + -0.004707245156168938, + -0.0045165205374360085, + 0.0055594188161194324, + 0.006188404280692339, + -0.0019701444543898106, + -0.008562316186726093, + 0.005754201207309961, + 0.011086373589932919, + 0.000850144715514034, + -0.0058394186198711395, + -0.04262491688132286, + -0.027918832376599312, + 0.024023180827498436, + -0.021020283922553062, + 0.034866075962781906, + 0.033405207097530365, + 0.011475938372313976, + 0.0021811588667333126, + -0.011743764393031597, + 0.024672456085681915, + 0.0028405790217220783, + 0.036164626479148865, + -0.009414490312337875, + 0.013837677426636219, + -0.02949332445859909, + 0.034866075962781906, + -0.0009688403224572539, + -0.010323475115001202, + -0.016588980332016945, + -0.012847532518208027, + -0.009406373836100101, + -0.029996512457728386, + 0.010745503939688206, + -0.015217387117445469, + 0.014121735468506813, + -0.0007801447063684464, + 0.007048693485558033, + 0.0038510134909301996, + -0.0032565207220613956, + 0.012847532518208027, + -0.03298318013548851, + 0.046455640345811844, + -0.0266365148127079, + 0.02968810684978962, + -0.0037536220625042915, + 0.034411583095788956, + 0.0018139125313609838, + 0.017481734976172447, + -0.001955941552296281, + -0.03911883011460304, + 0.005685215815901756, + -0.00030637672170996666, + -0.009528113529086113, + -0.012644634582102299, + 0.0006249273428693414, + 0.009771591052412987, + -0.003546665655449033, + -0.015761155635118484, + -0.012774488888680935, + 0.014941444620490074, + 0.0058028968051075935, + -0.02326028421521187, + -0.0067768096923828125, + -0.01663767732679844, + 0.015452749095857143, + -0.012238836847245693, + 0.0026721730828285217, + -0.01129738800227642, + 0.0032686947379261255, + -0.02223767526447773, + -0.059213895350694656, + -0.015331010334193707, + 0.027724049985408783, + -0.0033356512431055307, + -0.010599417611956596, + -0.009804055094718933, + 0.0020401442889124155, + 0.00567304203286767, + -0.04220288619399071, + -0.040742017328739166, + -0.015201155096292496, + -0.014592459425330162, + -0.0165402851998806, + -0.0413263663649559, + -0.021344920620322227, + -0.020549559965729713, + -0.010088113136589527, + -0.006192462053149939, + 0.0049385493621230125, + 0.001092608436010778, + 0.007478838320821524, + -0.038079988211393356, + 0.0026985500007867813, + 0.01856927014887333, + 0.011508402414619923, + 0.009333331137895584, + 0.00873275101184845, + 0.004285216331481934, + 0.014600575901567936, + -0.022221442312002182, + 0.005847534630447626, + 0.033859699964523315, + 0.024104341864585876, + -0.007633041124790907, + 0.009868983179330826, + -0.029477093368768692, + 0.02249738574028015, + -0.007137969136238098, + -0.00686608487740159, + 0.01673506759107113, + 0.011727533303201199, + -0.0023942021653056145, + 0.0036968104541301727, + -0.0007563041290268302, + 0.004047825001180172, + -0.009682316333055496, + 0.0005295650917105377, + 0.011532749980688095, + 0.004784346558153629, + -0.017595358192920685, + 0.03343767300248146, + -0.011516518890857697, + 0.014608691446483135, + 0.020208690315485, + -0.040027815848588943, + -0.025143181905150414, + -0.012888112105429173, + -0.005031882785260677, + 0.021020283922553062, + -0.008830142207443714, + 0.019981443881988525, + -0.007243476342409849, + 0.001185941742733121, + 0.046066075563430786, + 0.014771010726690292, + -0.002696520881727338, + 0.01516869105398655, + 0.006058549042791128, + -0.008700286969542503, + -0.026506658643484116, + 0.002613332588225603, + 0.022578544914722443, + -0.007519418373703957, + 0.01679999567568302, + 0.02537042833864689, + 0.02059825509786606, + 0.012482315301895142, + 0.0006974635762162507, + 0.01084289513528347, + -0.006046375259757042, + -0.0432092621922493, + -0.012961155734956264, + -0.05567534640431404, + 0.009820287115871906, + -0.00873275101184845, + 0.018342023715376854, + -0.014405793510377407, + -0.03079187497496605, + -0.011532749980688095, + 0.010777967981994152, + -0.018780285492539406, + -0.0049060857854783535, + -0.024656224995851517, + -0.013391301035881042, + -0.017481734976172447, + 0.0013837676960974932, + 0.012311880476772785, + -0.02876289002597332, + -0.00845680944621563, + -0.025565210729837418, + -0.00822144653648138, + 0.021896805614233017, + 0.00886260624974966, + -0.019867820665240288, + 0.0037089844699949026, + -0.013886372558772564, + 0.010339707136154175, + -0.03179825097322464, + 0.001241738791577518, + 0.0007045650272630155, + -0.006699708290398121, + -0.0049020275473594666, + -0.009089852683246136, + -0.007121737115085125, + 0.008310722187161446, + -0.022546080872416496, + -0.02121506631374359, + 0.004208114929497242, + -0.021442312747240067, + 0.030012745410203934, + 0.017773907631635666, + 0.012230721302330494, + 0.00839999783784151, + -0.00597333163022995, + 0.007405795156955719, + 0.023860862478613853, + -0.00023599631094839424, + -0.00229681096971035, + -0.008797679096460342, + 0.0017997096292674541, + 0.035515353083610535, + 0.02894144132733345, + -0.021620864048600197, + -0.0450272336602211, + -0.02619825303554535, + 0.019997674971818924, + -0.016702603548765182, + -0.020468400791287422, + -0.0055594188161194324, + 0.004841158166527748, + -0.0007557969074696302, + -0.0010571011807769537, + -0.001570434309542179, + 0.018910139799118042, + 0.01291246060281992, + 0.016337387263774872, + -0.020987819880247116, + -0.004812752362340689, + -0.0034736222587525845, + 0.006460288073867559, + -0.0038591292686760426, + -0.010226083919405937, + 0.007142026908695698, + -0.06810896843671799, + -0.02600347064435482, + 0.011581446044147015, + 0.006095070857554674, + -0.013586083427071571, + 0.01359419897198677, + 0.01396753266453743, + 0.004601737949997187, + -0.0036846366710960865, + -0.004102607723325491, + 0.01515245996415615, + 0.006253331433981657, + -0.008959997445344925, + 0.04473505914211273, + -0.023763472214341164, + 0.011126953177154064, + -0.022351298481225967, + 0.0174655020236969, + 0.0044069550931453705, + -0.00813622958958149, + 0.002714781789109111, + 0.0128718800842762, + 0.0533054918050766, + 0.006959418300539255, + 0.04106665402650833, + 0.031197672709822655, + -0.03343767300248146, + 0.029379701241850853, + -0.0017804342787712812, + -0.015249851159751415, + -0.01024231594055891, + -0.010307243093848228, + -0.009674199856817722, + -0.0030150716193020344, + 0.02334144338965416, + -0.022805791348218918, + 0.020046371966600418, + -0.00858666468411684, + 0.017952458932995796, + 0.02243245765566826, + 0.010307243093848228, + 0.014219126664102077, + -0.006139708217233419, + 0.012847532518208027, + -0.016288690268993378, + -0.008310722187161446, + 0.005384926218539476, + -0.023471297696232796, + -0.009990721940994263, + 0.023325210437178612, + 0.007247534114867449, + -0.0321553535759449, + 0.010396518744528294, + -0.018358254805207253, + 0.00033807961153797805, + -0.007093331310898066, + 0.01489274948835373, + -0.0005039491225033998, + 0.010761735960841179, + -0.010006953962147236, + 0.08395127952098846, + 0.00840811338275671, + -0.015331010334193707, + 0.011062026023864746, + -0.003136810613796115, + 0.017303183674812317, + -0.0027776802890002728, + 0.01162202563136816, + 0.025500282645225525, + -0.0010824634227901697, + -0.004455650690943003, + 0.00397478137165308, + 0.007462606765329838, + 0.030548397451639175, + 0.0023617383558303118, + 0.010339707136154175, + 0.03528810665011406, + 0.0030881150159984827, + 0.0045855059288442135, + -0.0009952171240001917, + -0.015769271180033684, + 0.0019224631832912564, + 0.00610724464058876, + -0.022919414564967155, + -0.02231883443892002, + -0.011686952784657478, + 0.010209851898252964, + 0.007133910898119211, + -0.019526951014995575, + -0.0022075355518609285, + 0.02608462981879711, + 0.02241622470319271, + 0.027431875467300415, + 0.027496803551912308, + -0.004849274177104235, + 0.014600575901567936, + 0.02231883443892002, + -0.0031084048096090555, + -0.0030028976034373045, + 0.0005376809858717024, + -0.005750143434852362, + 0.009804055094718933, + -0.00043496364378370345, + -0.024120572954416275, + 0.006224925629794598, + 0.023373905569314957, + 0.027821442112326622, + 0.002657970180734992, + -0.018488110974431038, + -0.00043699261732399464, + 0.005413332022726536, + -0.013553619384765625, + -0.0036298539489507675, + -0.014162315055727959, + -0.007681737188249826, + -0.013691590167582035, + 0.00012731880997307599, + -0.026717673987150192, + -0.01736811175942421, + -0.011962895281612873, + -0.0064278244972229, + 0.031359992921352386, + 0.0009181156638078392, + -0.03609969839453697, + 0.0018727531423792243, + 0.006675360258668661, + -0.012612170539796352, + -0.0033052165526896715, + -0.0192834734916687, + 0.011362316086888313, + -0.031457383185625076, + 0.001595796667970717, + -0.013383184559643269, + -0.003236230928450823, + -0.012035938911139965, + 0.038469552993774414, + 0.026798833161592484, + -0.011321735568344593, + -0.001178840291686356, + -0.016686372458934784, + -0.012092750519514084, + 0.023016804829239845, + 0.010006953962147236, + 0.012928691692650318, + -0.019169850274920464, + 0.007539708167314529, + 0.007908983156085014, + 0.0044069550931453705, + 0.003465506248176098, + -0.0358724519610405, + 0.0065292734652757645, + 0.001018043141812086, + 0.005928693804889917, + -0.03343767300248146, + -0.01673506759107113, + -0.03246375918388367, + 0.01075362041592598, + 0.004062027670443058, + 0.02149100787937641, + 0.011654489673674107, + -0.020354777574539185, + 0.0005082607385702431, + 0.03343767300248146, + -0.003575071459636092, + 0.018260864540934563, + -0.009795939549803734, + -0.017579125240445137, + 0.002670144196599722, + -0.027269557118415833, + -0.03114897757768631, + 0.009519997052848339, + 0.008505504578351974, + 0.011735648848116398, + 0.007933330722153187, + -4.707879270426929e-6, + 0.001657680724747479, + -0.008854490704834461, + 0.01949448697268963, + 0.005206375382840633, + 0.02353622578084469, + -0.006805215496569872, + 0.0028344918973743916, + 0.0017489850288257003, + 0.0072881137020885944, + 0.012108982540667057, + 0.028519412502646446, + 0.021458543837070465, + 0.007791302166879177, + -0.002173042856156826, + -0.008164634928107262, + 0.009552461095154285, + -0.00028481875779107213, + -0.015696227550506592, + -0.018520575016736984, + 0.01681622676551342, + 0.0037231873720884323, + 0.022367529571056366, + -0.037722889333963394, + -0.016134487465023994, + -0.009804055094718933, + 0.004325795918703079, + -0.009300867095589638, + -0.002402318175882101, + 0.003919999115169048, + 0.00010290757927577943, + -0.00291768042370677, + -0.03359999135136604, + 0.021831877529621124, + 0.025013325735926628, + -0.02929854206740856, + 0.00900057703256607, + 0.009812171570956707, + 0.0021405790466815233, + -0.020744342356920242, + 0.003276810748502612, + 0.004544926341623068, + -0.006050433032214642, + -0.02563013695180416, + 0.004682897124439478, + -0.03730085864663124, + 0.013147822581231594, + -0.004240578506141901, + -0.0012711590388789773, + -0.03778781369328499, + 0.004264926537871361, + 0.0067078243009746075, + -0.002116231247782707, + -0.037333324551582336, + -0.0062655056826770306, + 0.010047533549368382, + -0.00426898431032896, + 7.380432361969724e-5, + 0.0007081157527863979, + -0.01727071963250637, + 0.0016282603610306978, + 0.005656810011714697, + 0.02231883443892002, + -0.024282891303300858, + 0.01116753276437521, + -0.025062022730708122, + -0.01570434309542179, + -0.02095535583794117, + -0.010502026416361332, + 0.026668978855013847, + -0.0014882604591548443, + 0.008193041197955608, + -0.01774144358932972, + -0.014300285838544369, + 0.013448111712932587, + -0.032122887670993805, + -0.002682317979633808, + -0.020841732621192932, + -0.007803475949913263, + 0.008010432124137878, + 0.009860866703093052, + 0.009414490312337875, + 0.006046375259757042, + -0.014422024600207806, + 0.024120572954416275, + 0.004792462568730116, + 0.0020340573973953724, + 1.778532168827951e-5, + -0.009593040682375431, + -0.024510137736797333, + -0.0007319563301280141, + -0.026035934686660767, + -0.016588980332016945, + -0.013228981755673885, + 0.0183744877576828, + -0.03171709179878235, + -0.0006365940207615495, + 0.00858666468411684, + -0.007385505363345146, + 0.0029968107119202614, + 0.01135419961065054, + 0.015136227943003178, + 0.01801738701760769, + -0.0165321696549654, + 0.003867245279252529, + -0.01346434373408556, + 0.0011930431937798858, + -0.022107819095253944, + -0.018715357407927513, + -0.009593040682375431, + -0.004674781113862991, + -0.014154198579490185, + 0.019624343141913414, + 0.007328693754971027, + 0.013691590167582035, + 0.010818547569215298, + 0.020825501531362534, + 0.0011342025827616453, + 0.016126371920108795, + -0.0007405795040540397, + 0.026863761246204376, + 0.005356520414352417, + -0.011321735568344593, + 0.017433037981390953, + 0.011524634435772896, + 0.003615651046857238, + 0.01024231594055891, + -0.003694781567901373, + -0.008757098577916622, + -0.0013218836393207312, + -0.014137967489659786, + -0.000229655735893175, + 0.009633620269596577, + 0.00964985229074955, + 0.0025747818872332573, + -0.002588984789326787, + 0.007872461341321468, + -0.010226083919405937, + -0.003538549644872546, + -0.012108982540667057, + -0.0036765206605196, + 0.010851011611521244, + 0.02840578928589821, + 0.0006173186702653766, + 0.003483767155557871, + -0.0004402897320687771, + -0.0025565209798514843, + -0.03163593262434006, + 0.007779128383845091, + 0.01019361987709999, + -0.011646373197436333, + 0.010688692331314087, + -0.008968112990260124, + -0.017124632373452187, + -0.005762317217886448, + -0.028697963804006577, + -0.01579361967742443, + 0.014316517859697342, + -0.025613905861973763, + -0.0014334778534248471, + 0.010956518352031708, + -0.007474780548363924, + 0.00840811338275671, + -0.04492984339594841, + 0.014081155881285667, + -0.0032199991401284933, + 0.01817970536649227, + 0.031571004539728165, + -0.02188057266175747, + -0.007227244321256876, + -0.0027675353921949863, + 0.01983535662293434, + -0.002633622381836176, + 0.011889851652085781, + 0.011110721156001091, + -0.010136809200048447, + -0.017108401283621788, + -0.013042314909398556, + -0.011979127302765846, + 0.009146664291620255, + 0.021977964788675308, + 0.02765912190079689, + -0.014219126664102077, + 0.027155933901667595, + -0.02600347064435482, + -0.004873621743172407, + -0.0028973903972655535, + -0.01894260384142399, + -0.00822144653648138, + 0.02139361761510372, + -0.008059128187596798, + 0.010639997199177742, + 0.008006374351680279, + 0.005100868176668882, + -0.020354777574539185, + -0.01902376301586628, + 0.014097386971116066, + -0.013586083427071571, + 0.007446374744176865, + 0.0049020275473594666, + 0.003670433769002557, + -0.02287071757018566, + 0.024104341864585876, + 0.016410430893301964, + 0.002066521206870675, + 0.00047148537123575807, + -0.0006188403931446373, + -0.011638257652521133, + -0.04109911993145943, + 0.008927533403038979, + -0.005425505805760622, + 0.014413909055292606, + -0.0028913035057485104, + 0.021426081657409668, + 0.010063765570521355, + -0.007702026981860399, + 0.008383765816688538, + -0.002428694861009717, + 0.016767531633377075, + 0.0025626078713685274, + -0.005863766651600599, + 0.01766028441488743, + -0.026230717077851295, + 0.03905390202999115, + -0.01643477752804756, + -0.01051825750619173, + -0.01213333010673523, + 0.008391881361603737, + 0.00214869505725801, + 0.005319998599588871, + -0.008578548207879066, + -0.003782027866691351, + -0.01800115406513214, + 0.021474776789546013, + 0.017124632373452187, + 0.0006168114487081766, + -0.017059706151485443, + 0.008822026662528515, + 0.018975067883729935, + 0.002781738294288516, + -0.016832459717988968, + 0.006399418693035841, + 0.0220428928732872, + 0.02176695130765438, + 0.013521155342459679, + -5.072462272437406e-7, + 0.03259361535310745, + 0.006967534311115742, + 0.006375070661306381, + -0.004398839548230171, + -0.017140865325927734, + 0.010972750373184681, + 0.009942025877535343, + 0.001887970487587154, + -0.0012528982479125261, + 0.018520575016736984, + -0.002365796361118555, + 0.005904346238821745, + -0.014795358292758465, + 0.00859478022903204, + 0.035255640745162964, + -0.005287534557282925, + 0.0303049199283123, + -0.0020452167373150587, + 0.017254488542675972, + -0.016207531094551086, + -0.013302025385200977, + 0.008895070292055607, + 0.008026664145290852, + 0.008554200641810894, + -0.023016804829239845, + -0.03290202096104622, + 0.016515936702489853, + 0.00445970892906189, + -0.0012884053867310286, + 0.01985158771276474, + 0.010226083919405937, + 0.0015247821575030684, + 0.040579698979854584, + -0.02038723975419998, + 0.003276810748502612, + 0.02188057266175747, + -0.009682316333055496, + 0.013366952538490295, + -0.029428398236632347, + -0.003323477227240801, + -0.0029907238204032183, + -0.01790376380085945, + -0.022091588005423546, + 0.011475938372313976, + 0.011062026023864746, + 0.015095648355782032, + 0.004419129341840744, + -0.03434665873646736, + -0.025013325735926628, + -0.014852169901132584, + -0.010063765570521355, + 0.004208114929497242, + -0.05372752249240875, + 0.007255650125443935, + -0.01456811185926199, + 0.016394197940826416, + 0.0045976797118783, + 0.006833621300756931, + -0.011735648848116398, + 0.00705275172367692, + -0.016142604872584343, + -0.04262491688132286, + -0.019056227058172226, + 0.009795939549803734, + 0.018877675756812096, + 0.0038895641919225454, + 0.0023820283822715282, + -0.00038322454201988876, + 0.013935068622231483, + -0.001943767536431551, + -0.023666080087423325, + 0.010672460310161114, + 0.0015217387117445469, + 0.014178547076880932, + 0.0024104341864585876, + -0.026328109204769135, + -0.020841732621192932, + -0.01606956124305725, + 0.029542021453380585, + -0.014600575901567936, + -0.019916515797376633, + -0.01345622818917036, + -0.0005818114150315523, + 0.0012092749821022153, + 0.012652750127017498, + -0.005303766578435898, + 0.00613565044477582, + 0.018504342064261436, + -0.008700286969542503, + -0.007093331310898066, + -0.0032463758252561092, + 0.015688112005591393, + 0.0006761592230759561, + 0.00553912902250886, + -0.027350716292858124, + 0.010039417073130608, + 0.01985158771276474, + -0.013350720517337322, + -0.0128718800842762, + -0.009982605464756489, + 0.007312461733818054, + -0.019251009449362755, + 0.009106084704399109, + -0.006926954723894596, + 0.001056086621247232, + 0.014073039405047894, + 0.0066023170948028564, + 0.008708403445780277, + 0.0055594188161194324, + -0.002061448758468032, + -0.021361153572797775, + -0.012474199756979942, + -0.012604054063558578, + 0.00799825880676508, + -0.007064925506711006, + 0.017481734976172447, + -0.00415941933169961, + -0.008968112990260124, + -0.00413101352751255, + -0.013042314909398556, + 0.01226318534463644, + 0.0069513022899627686, + -0.010201736353337765, + 0.0020523183047771454, + -0.040742017328739166, + 0.09966374188661575, + -0.023584920912981033, + -0.0073530413210392, + 0.003098259912803769, + 0.02342260256409645, + 0.008757098577916622, + 0.004500288516283035, + -0.0024002892896533012, + 0.02334144338965416, + 0.004305506125092506, + -0.013935068622231483, + -0.004910143557935953, + 0.032025497406721115, + 0.006237099878489971, + -0.015947822481393814, + -0.016045212745666504, + 0.017433037981390953, + 0.0021507239434868097, + 0.017059706151485443, + 0.016288690268993378, + 0.0014557966496795416, + -0.011922315694391727, + -0.012068402022123337, + 0.014308401383459568, + 0.004208114929497242, + 0.009073620662093163, + -0.01313970610499382, + -0.01801738701760769, + 0.02968810684978962, + 0.019039994105696678, + 0.00443130312487483, + -0.01135419961065054, + -0.0017773908330127597, + -0.016864921897649765, + -0.004999418742954731, + 0.026490427553653717, + 0.006391302682459354, + 0.020906660705804825, + 0.0005346375401131809, + 0.007689852733165026, + 0.006200578063726425, + -0.010234200395643711, + 0.025695065036416054, + 0.025208108127117157, + -0.026425499469041824, + 0.0006792027270421386, + -0.00900057703256607, + -0.005319998599588871, + -0.0005635505658574402, + 0.00337825994938612, + 0.005092752166092396, + -0.03463882952928543, + -0.0057663749903440475, + 0.0017682603793218732, + 0.018601734191179276, + 0.01272579375654459, + 0.0011534779332578182, + -0.0082782581448555, + -0.0029968107119202614, + 0.005985505413264036, + -0.02038723975419998, + -0.0012255068868398666, + 0.005900288000702858, + -0.010453330352902412, + -0.017627820372581482, + 0.008424345403909683, + -0.005271303001791239, + 0.006983766332268715, + -0.01222260482609272, + 0.00748695433139801, + -0.00983651913702488, + -0.0013868112582713366, + 0.009471301920711994, + -0.02160463109612465, + -0.004561158362776041, + -0.0003172825090587139, + -0.005356520414352417, + 0.03434665873646736, + 0.01121622882783413, + -0.021848110482096672, + 0.01736811175942421, + 0.004104636609554291, + 0.005263186991214752, + -0.007275939919054508, + -0.0014537677634507418, + -0.00629796925932169, + 0.004128984175622463, + -0.003171303542330861, + 0.0015227531548589468, + -0.025727529078722, + -0.023179123178124428, + -0.006797099485993385, + 0.0073936209082603455, + -0.010177388787269592, + -0.01213333010673523, + 0.005494491197168827, + -0.013943184167146683, + -0.023130428045988083, + -0.01075362041592598, + -0.0008902171393856406, + 0.014665503054857254, + 0.009568693116307259, + 0.0006036230479367077, + 0.0025971007999032736, + 0.006452172063291073, + -0.0011108692269772291, + 0.01281506847590208, + -0.0006259418441914022, + -0.023763472214341164, + -0.0010170286986976862, + 0.004841158166527748, + 0.004995360970497131, + -0.005445795599371195, + -0.004475940950214863, + -0.012888112105429173, + -0.009162896312773228, + -0.012660865671932697, + 0.007292171940207481, + -0.022919414564967155, + -0.01882898062467575, + 0.008225505240261555, + -0.016199415549635887, + -0.008014490827918053, + -0.020744342356920242, + -0.012198257260024548, + 0.015582604333758354, + 0.012125213630497456, + -0.005656810011714697, + 0.013699706643819809, + 0.015923473984003067, + 0.019234776496887207, + 0.00521449139341712, + 0.005303766578435898, + -0.004191882908344269, + 0.012360576540231705, + -0.0003142390341963619, + -0.02444520965218544, + -0.0038226076867431402, + 0.010550721548497677, + -0.0064927516505122185, + 0.01134608406573534, + -0.00519014336168766, + 0.010372171178460121, + 0.018358254805207253, + 0.027870137244462967, + -0.0006528259254992008, + 0.008805794641375542, + -0.01300173532217741, + 0.016515936702489853, + -0.010047533549368382, + 0.020159995183348656, + -0.026214485988020897, + -0.0055107232183218, + -0.019348399713635445, + -0.00011273547715973109, + 0.015087531879544258, + -0.013074778951704502, + 0.03778781369328499, + -0.04366375505924225, + 0.00290550640784204, + -0.005445795599371195, + -0.01207651849836111, + -0.0211339071393013, + 0.011183764785528183, + -0.012052170932292938, + 0.011784344911575317, + 0.001961014000698924, + 0.011540866456925869, + 0.014624923467636108, + 0.0028913035057485104, + -0.021750718355178833, + -0.0074991281144320965, + 0.018439415842294693, + -0.017595358192920685, + -0.007588403765112162, + 0.0034431873355060816, + 0.014121735468506813, + 0.01029101200401783, + -0.02132868953049183, + 0.0028223181143403053, + 0.008675939403474331, + 0.00808347575366497, + 0.02442897856235504, + 0.009438837878406048, + 0.0031936222221702337, + -0.015314778313040733, + -0.008854490704834461, + -0.012790720909833908, + 0.02123129926621914, + -0.0023799992632120848, + -0.014470720663666725, + 0.0043379697017371655, + 0.007077099289745092, + -0.007020287681370974, + -0.017043473199009895, + -0.010217968374490738, + 0.03538549691438675, + 0.018634198233485222, + 0.0058028968051075935, + -0.002875071717426181, + -0.020078834146261215, + -0.0016536227194592357, + 0.017952458932995796, + 0.028422020375728607, + -0.0016252169152721763, + -0.018342023715376854, + -0.02087419666349888, + -0.011467822827398777, + 0.005612172186374664, + -0.00983651913702488, + -0.0248023122549057, + -0.021831877529621124, + 0.001490289461798966, + 0.01365101058036089, + -0.01057506911456585, + 0.005652752239257097, + -0.012360576540231705, + 0.015558256767690182, + -0.003978839609771967, + 0.01790376380085945, + 0.006468404084444046, + 0.009690431877970695, + -0.013026082888245583, + -0.010096228681504726, + 0.009455069899559021, + -0.014827822335064411, + -0.004650433547794819, + -0.0011575359385460615, + 0.00964985229074955, + 0.006046375259757042, + 0.004768114537000656, + 0.0019204342970624566, + 0.001900144387036562, + 0.02491593547165394, + 0.0012813039356842637, + 0.036619119346141815, + 0.012003474868834019, + -0.00831883866339922, + 0.016304923221468925, + 0.019591879099607468, + -0.007779128383845091, + -0.014316517859697342, + -0.018488110974431038, + -0.017416806891560555, + -0.00794144719839096, + -0.014348981902003288, + 0.014308401383459568, + 0.0030028976034373045, + 0.0016343473689630628, + -3.610959174693562e-5, + -0.022627240046858788, + 0.002568694995716214, + -0.003278839634731412, + 0.0003915941051673144, + 0.02040347270667553, + 0.0005361592629924417, + -0.005851592402905226, + 0.010493909940123558, + -0.013545503839850426, + -0.03161970153450966, + -0.006618548650294542, + 0.005652752239257097, + -0.013228981755673885, + -0.013155938126146793, + 0.006484635639935732, + 0.01580985076725483, + -0.03626202046871185, + -0.0012397097889333963, + 0.0003817027900367975, + 0.009260287508368492, + 0.025678833946585655, + 0.016028981655836105, + -0.011118837632238865, + 0.008343186229467392, + -0.0033620279282331467, + 0.010144924744963646, + -0.005173911806195974, + 0.0007750722579658031, + -0.0009896374540403485, + -0.02243245765566826, + 0.0014791300054639578, + -0.018812747672200203, + 0.014219126664102077, + -0.01025043148547411, + 0.010136809200048447, + -0.020241154357790947, + 0.0015105792554095387, + 0.021458543837070465, + 0.0012985503999516368, + 0.015574488788843155, + -0.0023982601705938578, + -0.013837677426636219, + -0.004329853691160679, + -0.028275934979319572, + 0.005457969382405281, + 0.03160347044467926, + 0.01055883802473545, + -0.012441735714673996, + 0.009162896312773228, + -0.011094490066170692, + -0.014397677034139633, + -0.01305043138563633, + 0.009885214269161224, + -0.01615883596241474, + 0.00537681020796299, + -0.006699708290398121, + 0.0018433327786624432, + -0.00839999783784151, + -0.019039994105696678, + 9.377714741276577e-5, + -0.004634201526641846, + -0.0037597091868519783, + -0.0011402895906940103, + -0.01625622808933258, + -0.008172751404345036, + -0.0015947821084409952, + 0.021653328090906143, + 0.022838253527879715, + -0.006184346042573452, + -0.013837677426636219, + -0.010550721548497677, + 0.018406951799988747, + 0.015834199264645576, + -0.011751880869269371, + 0.01819593645632267, + -0.024834776297211647, + 0.011475938372313976, + -0.01438144501298666, + -0.012758256867527962, + -0.014933329075574875, + 0.022757094353437424, + 0.005007534753531218, + -0.013943184167146683, + 0.0007304345490410924, + -0.010997097939252853, + 0.006991881877183914, + -0.014486952684819698, + -0.009868983179330826, + -0.014616807922720909, + 0.005149563774466515, + -0.010875359177589417, + -0.009414490312337875, + 0.0011260866886004806, + -0.010453330352902412, + 0.00045373174361884594, + 0.023649848997592926, + -0.02996405027806759, + -0.017124632373452187, + -0.0024611586704850197, + 0.0101124607026577, + -0.02499709464609623, + 0.009365794248878956, + 0.024656224995851517, + 0.008513621054589748, + -0.01600463315844536, + 0.007762896362692118, + 0.013204634189605713, + 0.033664919435977936, + -0.0009307968430221081, + -0.010161156766116619, + 0.015915358439087868, + 0.025062022730708122, + -0.008225505240261555, + 0.00645623030140996, + 0.029980281367897987, + -0.024299124255776405, + 0.01772521249949932, + 0.011378547176718712, + -0.043501436710357666, + 0.028357094153761864, + -0.017595358192920685, + -0.01793622598052025, + -0.012490430846810341, + -0.001104782335460186, + -0.004934491589665413, + 0.019981443881988525, + -0.0025179702788591385, + 0.011524634435772896, + -0.012173909693956375, + -0.012238836847245693, + 0.002266376279294491, + 0.013772749342024326, + 0.0008313765865750611, + -0.007738548330962658, + 0.012255068868398666, + 0.006164056248962879, + 0.02636057138442993, + 0.015477096661925316, + 0.020728109404444695, + -0.01782260276377201, + -0.00491825956851244, + 0.005445795599371195, + 0.006549563258886337, + 0.005863766651600599, + -0.005526954773813486, + 0.020354777574539185, + -0.013999995775520802, + 0.008383765816688538, + 0.004910143557935953, + 0.0007096374756656587, + -0.008383765816688538, + -0.01061564963310957, + 0.018764052540063858, + -0.02371477521955967, + 0.005892172455787659, + -0.006898548919707537, + -0.001862608129158616, + 0.015176807530224323, + 0.020452167838811874, + -0.008359418250620365, + -0.013228981755673885, + 0.00443536089733243, + -0.0019934778101742268, + -0.00039894916699267924, + 0.021166371181607246, + -0.00702840369194746, + -0.004682897124439478, + -0.011419126763939857, + 0.017514197155833244, + -0.0165402851998806, + 0.0030597092118114233, + -0.008119997568428516, + -0.008943765424191952, + -0.008992461487650871, + 0.004751882515847683, + -0.004557100124657154, + 0.032674774527549744, + 0.006663186475634575, + 0.0026620281860232353, + 0.0031814484391361475, + 0.02038723975419998, + -0.021572167053818703, + -0.016045212745666504, + 0.006050433032214642, + -0.013975648209452629, + -0.005563476588577032, + 0.02259477600455284, + 0.0025991296861320734, + 0.009308982640504837, + 0.022010428830981255, + 0.001565361861139536, + 0.003197680227458477, + -0.0069147804751992226, + -0.018260864540934563, + 0.008018548600375652, + 0.00047224623267538846, + -0.0027614485006779432, + -0.01515245996415615, + -0.009235939010977745, + -0.014982025139033794, + 0.003140868619084358, + -0.01709216833114624, + 0.006610433105379343, + 0.012571590952575207, + -0.024980861693620682, + -0.0026802890934050083, + 0.0012244924437254667, + -0.0007791302050463855, + 0.021279994398355484, + -0.006366954650729895, + 0.0031084048096090555, + -0.010964634828269482, + 0.01774144358932972, + -0.01827709563076496, + 0.0016881154151633382, + 0.01939709670841694, + 0.01938086375594139, + 0.0003426448383834213, + -0.006476520095020533, + 0.024023180827498436, + -0.0018950719386339188, + 0.011873619630932808, + 0.0422678142786026, + 0.0037110133562237024, + 0.024639993906021118, + 0.009292750619351864, + -0.0076086935587227345, + -0.006241157650947571, + 0.008992461487650871, + -0.011411011219024658, + -0.011987242847681046, + -0.016564633697271347, + -0.0045124622993171215, + -0.02058202400803566, + 0.02261100895702839, + -0.021523471921682358, + -0.0030434774234890938, + -0.0031185499392449856, + 0.001931593636982143, + 0.019315937533974648, + 0.024932166561484337, + 0.022464921697974205, + 0.005453911609947681, + 0.009414490312337875, + -0.002714781789109111, + -0.00983651913702488, + 0.03244752809405327, + -0.0036055061500519514, + 0.009130432270467281, + -0.0005868839216418564, + 0.00629391148686409, + 0.004979128949344158, + -0.014738546684384346, + -0.014535647816956043, + 0.0005397099885158241, + -0.009657968766987324, + -0.00610724464058876, + 0.012344344519078732, + 0.01419477816671133, + 0.0014365212991833687, + 0.0063872444443404675, + -0.01259593851864338, + -0.028714194893836975, + 0.01764405332505703, + -0.008903185836970806, + 0.02407187782227993, + 0.008854490704834461, + 0.006042317021638155, + 0.005246954970061779, + -0.009747243486344814, + 0.013862024992704391, + -0.024607529863715172, + -0.005206375382840633, + 0.009487533941864967, + 0.018666662275791168, + -0.009909562766551971, + 0.016653908416628838, + 0.013017967343330383, + 0.0007360142772085965, + -0.012165794149041176, + -0.011573330499231815, + -0.005928693804889917, + -0.012709561735391617, + -0.02812984772026539, + 0.011678837239742279, + 0.013228981755673885, + 0.019137386232614517, + 0.007681737188249826, + 0.025062022730708122, + -0.022010428830981255, + 0.024867238476872444, + 0.009844634681940079, + 0.00932521466165781, + -0.007775070145726204, + -0.011110721156001091, + -0.012433619238436222, + 0.008489272557199001, + 0.0014750720001757145, + -0.0009744199924170971, + -0.0036440568510442972, + -0.019056227058172226, + 0.004179709125310183, + 0.010631880722939968, + 0.013699706643819809, + 0.0238770954310894, + -0.015517677180469036, + 0.005462027620524168, + -0.005259128753095865, + -0.003538549644872546, + 0.008351301774382591, + 0.010177388787269592, + 0.006375070661306381, + 0.0013442025519907475, + -0.0019295646343380213, + -0.0146979670971632, + 0.002793912310153246, + 0.004922317340970039, + -0.011370431631803513, + 0.005961157847195864, + -0.0011342025827616453, + -0.015850430354475975, + -0.00022192022879607975, + -0.006557679269462824, + -0.015290430746972561, + -0.024055644869804382, + -0.0010226083686575294, + -0.019088691100478172, + -0.010307243093848228, + 0.0022501442581415176, + -0.01534724235534668, + 0.006484635639935732, + -0.009560576640069485, + -0.015079416334629059, + -0.02434781938791275, + 0.01084289513528347, + 0.008225505240261555, + -0.0034776802640408278, + -0.004043766763061285, + 0.02415303699672222, + -0.003339709248393774, + 0.022124052047729492, + -0.010153040289878845, + 0.01503072027117014, + 0.007454490754753351, + 0.012052170932292938, + 0.012904344126582146, + -0.010461445897817612, + 0.007990142330527306, + -0.02582492120563984, + -0.011451590806245804, + -0.012936808168888092, + 0.01207651849836111, + 0.0066713024862110615, + -0.004743766970932484, + -0.002793912310153246, + 0.02231883443892002, + 0.010680576786398888, + 0.010550721548497677, + 0.008797679096460342, + 0.002942028222605586, + -0.0033315932378172874, + -0.01615883596241474, + 0.019234776496887207, + -0.011110721156001091, + 0.010550721548497677, + -0.0019214487401768565, + -0.005993621423840523, + -0.01115941721946001, + 0.022399993613362312, + -0.01025043148547411, + -0.0018453617813065648, + 0.005096809938549995, + 0.0019346370827406645, + -0.0030028976034373045, + -0.008716518990695477, + -0.003159129526466131, + 0.008298547938466072, + 0.0031814484391361475, + 0.02434781938791275, + -0.010607533156871796, + 0.02407187782227993, + 0.0031611586455255747, + -0.01438144501298666, + -0.018666662275791168, + -0.00751536013558507, + 0.0015815937658771873, + 0.004309563897550106, + 0.005827244836837053, + -0.006399418693035841, + -0.018066082149744034, + 0.0012346373405307531, + 0.010769852437078953, + -0.014486952684819698, + -0.011370431631803513, + 0.008846374228596687, + -0.0033133323304355145, + -0.011013329960405827, + -0.006306085269898176, + 0.0027776802890002728, + -0.007592461537569761, + -0.012344344519078732, + 0.012936808168888092, + -0.018617965281009674, + -0.004281158093363047, + 0.006561737507581711, + 0.011102605611085892, + -0.003323477227240801, + -0.0028040572069585323, + 0.032950714230537415, + 0.009114200249314308, + -0.04035245254635811, + -0.006695650517940521, + 0.006906664930284023, + 0.016767531633377075, + -0.014673619531095028, + -0.013293908908963203, + -0.0012457967968657613, + 0.001024130149744451, + -0.018585501238703728, + -0.010591301135718822, + 0.01588289439678192, + -0.007146085146814585, + -0.0077466643415391445, + -0.007937389425933361, + -0.015103763900697231, + 0.026961151510477066, + -0.009495649486780167, + 0.00260927458293736, + 0.0069878241047263145, + -0.009609272703528404, + 0.0011899996316060424, + -0.0003134781727567315, + 0.002773622516542673, + -0.019916515797376633, + -8.599408829468302e-6, + -0.029282310977578163, + 0.007296229712665081, + -0.024753617122769356, + -0.0015968111110851169, + -0.004370433744043112, + -0.011548982001841068, + 0.0034776802640408278, + -0.008034780621528625, + -0.016483474522829056, + 0.002302897861227393, + 0.006062606815248728, + 0.01845564693212509, + -0.009244055487215519, + -0.023568689823150635, + 0.0055107232183218, + -0.017757676541805267, + 0.007296229712665081, + -0.006764635909348726, + -0.006793041713535786, + -0.00037054336280561984, + -0.014081155881285667, + 0.00535246217623353, + 0.019900284707546234, + 0.001962028443813324, + -0.005583766382187605, + 0.015038836747407913, + -0.007328693754971027, + 0.002818260109052062, + 0.00010030794510385022, + -0.0101124607026577, + -0.028697963804006577, + -0.029623180627822876, + 0.02343883365392685, + -0.018585501238703728, + 0.00732463551685214, + -0.004228404723107815, + -0.00872463546693325, + -0.023373905569314957, + -0.004504346754401922, + -0.00997448991984129, + -0.031749557703733444, + -0.008505504578351974, + 0.0021405790466815233, + -0.015249851159751415, + 0.0023373905569314957, + 0.02645796351134777, + -0.0010773909743875265, + 0.007689852733165026, + 0.013991880230605602, + -0.01272579375654459, + -0.014868401922285557, + 2.593296449049376e-5, + -0.0012681155931204557, + -0.021198835223913193, + 0.03298318013548851, + -0.004715361166745424, + -0.010875359177589417, + -0.019315937533974648, + -0.00038144917925819755, + 0.01894260384142399, + -0.0229681096971035, + -0.012798837386071682, + 0.009601157158613205, + -0.01910492219030857, + 0.020241154357790947, + -0.00021025356545578688, + -0.017708981409668922, + 0.008282316848635674, + -0.010282895527780056, + 0.015006372705101967, + 0.0220428928732872, + -0.003713042475283146, + -0.013082894496619701, + 0.004346085712313652, + 0.017692748457193375, + 0.004475940950214863, + 0.02728579007089138, + 0.0038469554856419563, + 0.009584925137460232, + -0.015201155096292496, + 0.010834779590368271, + -0.017757676541805267, + -0.010786083526909351, + 0.003502028062939644, + 0.04820868372917175, + 0.0018149269744753838, + 0.024461442604660988, + 0.0026397095061838627, + -0.0312301367521286, + 0.014681735076010227, + 0.0037718829698860645, + -0.008424345403909683, + -0.01149217039346695, + 0.016580864787101746, + 0.028357094153761864, + 0.00599767966195941, + -0.012490430846810341, + -0.019234776496887207, + 0.008878838270902634, + -0.007986084558069706, + 0.001502463361248374, + 0.02840578928589821, + 0.00937391072511673, + 0.010047533549368382, + 0.01764405332505703, + 0.01134608406573534, + 0.0013624633429571986, + -0.01874782145023346, + -0.000943478022236377, + 0.016832459717988968, + -0.0030089847277849913, + -0.015590719878673553, + -0.003447245340794325, + -0.004910143557935953, + -0.02316289208829403, + 0.004043766763061285, + -0.0257112979888916, + -0.013488692231476307, + -0.00629796925932169, + -0.02030608057975769, + 0.012522894889116287, + -0.005896230228245258, + 0.002233912469819188, + 0.015371589921414852, + 0.0031428977381438017, + 0.004252752289175987, + -0.010777967981994152, + 0.006285795476287603, + -0.001701303874142468, + 0.005599998403340578, + -0.006715940311551094, + -0.006679418496787548, + -0.009690431877970695, + -0.010534489527344704, + -0.0024733326863497496, + -0.0211501382291317, + -0.0015623184153810143, + 0.02168579027056694, + -0.014657387509942055, + -0.01856927014887333, + 0.008038838393986225, + 0.001092608436010778, + -0.0018463763408362865, + -0.023357674479484558, + -0.005965215619653463, + -0.009560576640069485, + 0.0015866662142798305, + -0.017254488542675972, + -0.005019708536565304, + 0.008257968351244926, + -0.009568693116307259, + -0.00567304203286767, + 0.01056695356965065, + 0.025337964296340942, + 0.012685214169323444, + 0.020630719140172005, + -0.009008693508803844, + -0.010656229220330715, + 0.007576229982078075, + -0.0046585495583713055, + 0.0022826080676168203, + 0.00046615928295068443, + -0.002254202263429761, + 0.017124632373452187, + -0.0007481881766580045, + 0.017140865325927734, + 0.004589563701301813, + 0.005640577990561724, + -0.0049020275473594666, + -0.010006953962147236, + -0.007146085146814585, + -0.016751300543546677, + -0.018066082149744034, + -0.010672460310161114, + -0.011337967589497566, + 0.020273618400096893, + 0.009495649486780167, + -0.026798833161592484, + -0.01392695214599371, + 0.016597095876932144, + -0.01663767732679844, + -0.025857383385300636, + -0.005750143434852362, + -0.00900057703256607, + -0.010826664045453072, + -0.007219128310680389, + -0.008740867488086224, + 0.021929269656538963, + -0.011532749980688095, + -0.017676517367362976, + 0.0006614490994252264, + 0.01607767678797245, + 0.006541447248309851, + 0.0020330429542809725, + 0.016929849982261658, + -0.0010215939255431294, + -0.007507244125008583, + 0.003995071165263653, + 0.005210433155298233, + -0.020646950230002403, + 0.013545503839850426, + 0.03437912091612816, + -0.021523471921682358, + -0.01299361977726221, + 0.0069513022899627686, + 0.013764633797109127, + 0.02241622470319271, + 0.010015069507062435, + 0.0016942024230957031, + 2.3317476006923243e-5, + -0.009455069899559021, + 0.027399413287639618, + 0.006906664930284023, + -0.0073489835485816, + 0.014503184705972672, + -0.000232826016144827, + -0.014267821796238422, + -0.009885214269161224, + 0.005226665176451206, + -0.00023663036699872464, + 0.005283476784825325, + -0.035158250480890274, + 0.00016586952551733702, + -0.02619825303554535, + 0.000714202702511102, + -0.02225390635430813, + -0.008030721917748451, + -0.00821738876402378, + 0.011086373589932919, + -0.026766369119286537, + 0.008700286969542503, + 0.003991013392806053, + -0.020809270441532135, + 0.005035940557718277, + 0.0008699272875674069, + -0.02261100895702839, + 0.018033618107438087, + 0.008213330991566181, + -0.0013259416446089745, + 0.023195356130599976, + 0.013342604972422123, + 0.007137969136238098, + -0.00040503611671738327, + -0.00845680944621563, + -0.012953040190041065, + 0.009406373836100101, + 0.0064278244972229, + 0.00397275248542428, + -0.015761155635118484, + -0.017497966066002846, + 0.012336228042840958, + -0.009495649486780167, + -0.009990721940994263, + -0.001701303874142468, + 0.001073333085514605, + 0.015866661444306374, + 0.005360578186810017, + 0.00013581517850980163, + -0.012668982148170471, + -0.0045855059288442135, + -0.011833040043711662, + -0.0029136224184185266, + -0.006375070661306381, + -0.013837677426636219, + 0.009041156619787216, + -0.0054173897951841354, + -0.0029318833258002996, + 0.01503072027117014, + 0.010355939157307148, + -0.019169850274920464, + 0.003222028026357293, + 0.0029318833258002996, + -0.0049060857854783535, + -0.022546080872416496, + 0.00046971000847406685, + -0.0001626992307137698, + -0.015769271180033684, + 0.024201732128858566, + -0.023373905569314957, + 0.01717332936823368, + -0.014990140683948994, + -0.005737969186156988, + -0.0376579612493515, + -0.02894144132733345, + 0.029899122193455696, + 0.00610724464058876, + 0.009219707921147346, + -0.013293908908963203, + 0.018244633451104164, + -0.009106084704399109, + 0.00030130427330732346, + -0.015834199264645576, + 0.020841732621192932, + -0.010834779590368271, + 0.013147822581231594, + -0.004930433351546526, + -0.0024510137736797333, + -0.0015734778717160225, + -0.011906083673238754, + 0.001731738680973649, + 0.005255070980638266, + -0.007559997960925102, + -0.0017165212193503976, + 0.012287532910704613, + -0.012847532518208027, + 0.01373216975480318, + -0.02525680512189865, + 0.002006666036322713, + -0.0010976808844134212, + -0.024461442604660988, + -0.005060288589447737, + 0.012636518105864525, + 0.02251361683011055, + -0.010355939157307148, + 0.003191593335941434, + -0.009179127402603626, + 0.021799413487315178, + -0.006586085073649883, + 0.0036602888721972704, + 0.020062603056430817, + -0.0055959406308829784, + 0.004946665372699499, + -0.0027249266859143972, + -0.044799987226724625, + 0.02397448569536209, + 0.02361738495528698, + -0.0082782581448555, + -0.03363245353102684, + -0.002862897701561451, + -0.01811477728188038, + -0.0009673185413703322, + 0.022903181612491608, + 0.007194780744612217, + -0.002688405103981495, + 0.016588980332016945, + 0.008383765816688538, + 0.008197098970413208, + 0.0001800724130589515, + -0.0043014478869736195, + -0.004329853691160679, + 0.002069564536213875, + -0.0011565213790163398, + -0.023666080087423325, + -0.016223764047026634, + -0.009471301920711994, + 0.016215648502111435, + -0.0014984053559601307, + -0.005437679588794708, + -0.010810432024300098, + -0.01957564614713192, + -0.003049564315006137, + 0.006557679269462824, + 0.010088113136589527, + 0.015834199264645576, + 0.008529853075742722, + 0.004088404588401318, + -0.0076086935587227345, + 0.011841156519949436, + 0.010031301528215408, + -0.015193039551377296, + -0.010039417073130608, + 0.003171303542330861, + -0.0074301427230238914, + 0.025759993121027946, + -0.01511187944561243, + -0.03243129700422287, + -0.02105274796485901, + -0.004086375702172518, + 0.0010702895233407617, + 0.0046220277436077595, + 0.0005234781419858336, + -0.01570434309542179, + 0.002252173377200961, + 0.015509560704231262, + 0.01019361987709999, + -0.007198838517069817, + 0.00426898431032896, + 0.006801157724112272, + -0.02030608057975769, + 0.0018889849307015538, + 0.010469562374055386, + -0.006403476465493441, + 0.01579361967742443, + -0.021020283922553062, + 0.021296225488185883, + -0.00840811338275671, + 0.0211339071393013, + 0.0011402895906940103, + 0.0046950713731348515, + -0.0013573908945545554, + -0.011654489673674107, + -0.003006955608725548, + 0.013797097839415073, + -0.016394197940826416, + 0.01679999567568302, + 0.022854486480355263, + -0.024948399513959885, + 0.004650433547794819, + -0.02186434157192707, + 0.004626085516065359, + -0.008473041467368603, + 0.01464927103370428, + -0.012035938911139965, + 0.0022927529644221067, + -0.007158258929848671, + 0.014722314663231373, + -0.01865042932331562, + 0.009795939549803734, + -0.002402318175882101, + 0.005307824816554785, + -0.00845680944621563, + 0.01055883802473545, + 0.011987242847681046, + 0.010867243632674217, + -0.0015257967170327902, + 0.01162202563136816, + 0.009341446682810783, + 0.0043379697017371655, + -0.020890429615974426, + -0.013797097839415073, + 0.00399912940338254, + 0.009016809053719044, + -0.002519999397918582, + 0.005900288000702858, + -0.027431875467300415, + -0.01516869105398655, + -0.028178542852401733, + -0.02077680639922619, + -0.011962895281612873, + -0.013756518252193928, + 0.010761735960841179, + -0.01253912691026926, + 0.024104341864585876, + 0.0009952171240001917, + 0.019251009449362755, + -0.007848113775253296, + 0.011727533303201199, + -0.010851011611521244, + -0.036619119346141815, + 0.002842607907950878, + 0.00831883866339922, + 0.00456927390769124, + -0.01709216833114624, + 0.020062603056430817, + 0.015404053963720798, + 0.003848984371870756, + 0.00043673900654539466, + 0.010307243093848228, + -0.0032626078464090824, + 0.008562316186726093, + 0.021653328090906143, + -0.003483767155557871, + -0.035417962819337845, + 0.04246259853243828, + -0.02765912190079689, + 0.017708981409668922, + 0.008578548207879066, + 0.005287534557282925, + 0.002193332649767399, + 0.009073620662093163, + -0.0056973895989358425, + 0.010315359570086002, + 0.008684055879712105, + -0.003982897382229567, + 0.0014365212991833687, + -0.011727533303201199, + -0.014600575901567936, + 0.021296225488185883, + -0.02454260177910328, + 0.014584343880414963, + -0.009398258291184902, + -0.010153040289878845, + 0.00822144653648138, + -0.006172172259539366, + 0.022448688745498657, + 0.0003139854234177619, + 0.015663763508200645, + -0.011922315694391727, + 0.007206954527646303, + 0.00382463657297194, + 0.011500286869704723, + -0.013837677426636219, + 0.010826664045453072, + 0.029282310977578163, + -0.009682316333055496, + 0.003763766959309578, + -0.007413911167532206, + -0.001979274908080697, + 3.0307963243103586e-5, + -0.007012172136455774, + 0.0008151446818374097, + 0.02636057138442993, + -0.010956518352031708, + -0.00130463729146868, + -4.115034971619025e-5, + -0.011727533303201199, + 0.00176420237403363, + 0.003700868459418416, + -0.009739127941429615, + 0.006399418693035841, + -0.026587817817926407, + -0.01793622598052025, + -0.010315359570086002, + 0.009446953423321247, + 0.003506086068227887, + 0.013310140930116177, + -0.007973911240696907, + -0.03428173065185547, + 0.009219707921147346, + -0.011427243240177631, + -0.007965794764459133, + -0.009633620269596577, + 0.011776228435337543, + -0.005263186991214752, + 0.016962314024567604, + -0.01423535868525505, + -0.0005305795348249376, + -0.001565361861139536, + 0.008513621054589748, + -0.00613565044477582, + -0.007568113971501589, + 0.008992461487650871, + 0.007823766209185123, + -0.014819705858826637, + 0.031035354360938072, + -0.015331010334193707, + 0.0044434769079089165, + -0.001502463361248374, + 0.009576808661222458, + -0.005429563578218222, + 0.01213333010673523, + 0.00445970892906189, + 0.008351301774382591, + 0.02140984870493412, + -0.006549563258886337, + 0.0025544920936226845, + -0.001725651673041284, + 0.00913854781538248, + -0.02895767241716385, + 0.008197098970413208, + 0.000950072193518281, + 0.005303766578435898, + -0.010972750373184681, + 0.0021588399540632963, + 0.011378547176718712, + -0.0032869556453078985, + 0.00853796862065792, + 0.010542606003582478, + 0.0047965203411877155, + 0.00799825880676508, + 0.0063872444443404675, + 0.0128718800842762, + 0.019429558888077736, + -0.005612172186374664, + 0.010907823219895363, + -0.018877675756812096, + -0.001490289461798966, + -0.0049385493621230125, + 0.005336230155080557, + -0.02415303699672222, + -0.00010550721344770864, + 0.000558985339011997, + -0.026668978855013847, + -0.008692171424627304, + -0.008391881361603737, + 0.025776224210858345, + -0.013959416188299656, + 0.018228400498628616, + 0.007726374547928572, + 0.023503761738538742, + 0.01222260482609272, + -0.015460865572094917, + -0.021296225488185883, + -0.010493909940123558, + 0.011402895674109459, + -0.009958257898688316, + -0.015184923075139523, + 0.033664919435977936, + 0.036716509610414505, + 0.00041797090671025217, + -0.003291013650596142, + 0.01121622882783413, + -0.0211339071393013, + 0.002586955903097987, + 0.008838258683681488, + -0.00864347629249096, + -0.010510141961276531, + 0.010258547961711884, + -0.007495070341974497, + -0.009576808661222458, + -0.019510719925165176, + -0.002718839794397354, + -0.011784344911575317, + -0.0006452171946875751, + 0.010153040289878845, + 0.0023069558665156364, + -0.0229843407869339, + -0.015460865572094917, + -0.03262607753276825, + 0.004747824743390083, + 0.010672460310161114, + 0.056746650487184525, + 0.03509332239627838, + 0.006371012888848782, + 0.003991013392806053, + 0.0018230429850518703, + -0.043241728097200394, + 0.004577389918267727, + -0.013991880230605602, + -0.017351878806948662, + 0.011565214022994041, + 0.0029379702173173428, + -0.002404347062110901, + 0.006139708217233419, + -0.00018146734510082752, + -0.01088347565382719, + 0.018715357407927513, + -0.012149562127888203, + 0.00878144707530737, + 0.002925796201452613, + 0.011557098478078842, + 0.0021568110678344965, + 0.004634201526641846, + -0.0011321735801175237, + 0.004057969897985458, + 0.021004052832722664, + -0.0024692746810615063, + -0.004532752558588982, + -0.009544345550239086, + -0.012563474476337433, + 0.012344344519078732, + 0.022383762523531914, + -0.00812811404466629, + -0.005693331826478243, + -0.0024489848874509335, + -0.007369273342192173, + 0.009308982640504837, + -0.0010134780313819647, + 0.012742025777697563, + 0.0011260866886004806, + -0.010477677918970585, + -0.016686372458934784, + -0.004979128949344158, + 0.009503765031695366, + -0.025516513735055923, + -0.015241734683513641, + 0.016483474522829056, + -0.0036663757637143135, + -0.011630142107605934, + 0.007977969013154507, + -0.007170432712882757, + -0.001316811190918088, + 0.010412750765681267, + 0.006784925702959299, + 0.005108984187245369, + -0.019153617322444916, + 0.02408810891211033, + 0.03114897757768631, + -0.0303049199283123, + -0.012750141322612762, + -0.0016769560752436519, + 0.01305043138563633, + -0.006577969063073397, + 0.0015724633121863008, + 0.034216802567243576, + 0.009365794248878956, + 0.025208108127117157, + -0.0001638405374251306, + 0.005271303001791239, + -0.008359418250620365, + 0.006281737238168716, + 0.024786079302430153, + -0.01790376380085945, + -0.029558252543210983, + 0.0049060857854783535, + -0.030093904584646225, + -0.008578548207879066, + -0.008822026662528515, + -0.024477673694491386, + -0.014641155488789082, + 0.024380283430218697, + 0.019997674971818924, + -0.0003649636637419462, + 0.018861444666981697, + -0.006508983671665192, + -0.024217965081334114, + 0.003798259887844324, + -0.011735648848116398, + -0.0005427534924820065, + 0.000528043310623616, + 0.002011738484725356, + -0.004199998918920755, + 0.00656985305249691, + -0.0192997045814991, + -0.00383681058883667, + 0.030434774234890938, + 0.006979708094149828, + -0.007523476146161556, + 0.005681158043444157, + 0.008757098577916622, + 0.020435936748981476, + -0.01489274948835373, + 0.022302603349089622, + -0.0049020275473594666, + 0.017400573939085007, + 0.00045931147178635, + -0.04915013164281845, + 0.02793506532907486, + 0.003670433769002557, + 0.0022643471602350473, + 0.034411583095788956, + -0.005169853568077087, + 0.013602315448224545, + 0.01024231594055891, + 0.0029156513046473265, + -0.005535070784389973, + 0.01346434373408556, + -0.009657968766987324, + 0.01443014107644558, + 0.04061216115951538, + 0.02636057138442993, + -0.01782260276377201, + 0.014641155488789082, + 0.029055064544081688, + -0.002353622578084469, + 0.023503761738538742, + -0.0017611589282751083, + 0.008700286969542503, + 0.03334027901291847, + -0.016337387263774872, + -0.018991298973560333, + 0.027821442112326622, + 0.005259128753095865, + -0.00244492688216269, + 0.00426898431032896, + 0.01589912548661232, + -0.01029101200401783, + -0.008359418250620365, + 0.011703184805810452, + -0.00845680944621563, + -0.0022765211760997772, + -0.00983651913702488, + 0.026522891595959663, + 0.01874782145023346, + -0.011273040436208248, + 0.003952462691813707, + -0.0009034055401571095, + -0.014486952684819698, + 0.01671883650124073, + -0.008497389033436775, + -0.005616230424493551, + 0.003761738073080778, + -0.024964630603790283, + 0.013277677819132805, + 0.001627245917916298, + -0.005246954970061779, + -0.005863766651600599, + -0.02399071864783764, + 0.024380283430218697, + 0.006472461856901646, + -0.02105274796485901, + -0.010177388787269592, + 0.01029101200401783, + 0.01516057550907135, + 0.015404053963720798, + 0.004820868372917175, + 0.000782680930569768, + -0.009593040682375431, + 0.000981521443463862, + 0.010226083919405937, + -0.003924056887626648, + -0.002856810810044408, + 0.0018798545934259892, + 0.003658259753137827, + -0.014527532272040844, + -0.0046544913202524185, + -0.021296225488185883, + 0.000528043310623616, + -0.013017967343330383, + -0.022919414564967155, + -0.002272463170811534, + 0.021458543837070465, + 0.029655644670128822, + 0.01865042932331562, + 0.001831158879213035, + 0.0036765206605196, + -0.008018548600375652, + 0.01985158771276474, + 0.005616230424493551, + 0.018325792625546455, + 0.007194780744612217, + -0.004573332145810127, + -0.0029907238204032183, + -0.005039998795837164, + -0.006537389475852251, + -0.02066318318247795, + 0.014308401383459568, + -0.00853796862065792, + 0.015558256767690182, + -0.03538549691438675, + 0.0033052165526896715, + -0.013618546538054943, + -0.011321735568344593, + 0.005104925949126482, + 0.0018656516913324594 + ], + "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180": [ + -0.012726955115795135, + 0.005401001777499914, + -0.01867680624127388, + -0.005949851591140032, + -0.02973334863781929, + -0.0051703257486224174, + 0.007532766554504633, + 0.010022477246820927, + -0.02400621958076954, + 0.03240600973367691, + 0.00013609390589408576, + 0.024228941649198532, + -0.012345146387815475, + -0.030353788286447525, + 0.005480545107275248, + 0.022144902497529984, + -0.03617636859416962, + 0.04362164065241814, + 0.00953726191073656, + 0.002090004738420248, + 0.053898654878139496, + 0.013458754867315292, + -0.03639909252524376, + 0.014445094391703606, + 0.008109456859529018, + -0.010412240400910378, + -0.000241116140387021, + -0.015797333791851997, + -0.0522441528737545, + 0.017085937783122063, + 0.009553170762956142, + 0.0015630292473360896, + 0.014357596635818481, + 0.00948953628540039, + 0.029701530933380127, + -0.0251675546169281, + -0.0003539684403222054, + 0.04705791547894478, + -0.02457893267273903, + 0.006335637532174587, + -0.0075725382193923, + -0.009250905364751816, + -0.013904199004173279, + 0.005456681828945875, + -0.041108064353466034, + 0.024563023820519447, + 0.009402038529515266, + -0.03652636334300041, + 0.01629050262272358, + 0.015240528620779514, + 0.007540720980614424, + -0.046262484043836594, + -0.01048382930457592, + 0.024324392899870872, + 0.00011446802818682045, + 0.002209319965913892, + 0.009004320949316025, + 0.038562674075365067, + 0.00457772659137845, + 0.008375927805900574, + 0.013522390276193619, + -0.006757217925041914, + -0.004883969202637672, + 0.027092505246400833, + -0.017992733046412468, + -0.03862630948424339, + 0.022908519953489304, + 0.000316682446282357, + -0.048553332686424255, + -0.02982880175113678, + 0.009616805240511894, + 0.06112120300531387, + -0.026472067460417747, + -0.004080580081790686, + -0.024626659229397774, + 0.005826559383422136, + 0.04381254315376282, + -0.013737156987190247, + 0.005826559383422136, + 0.0035098555963486433, + -0.012122425250709057, + 0.02192218042910099, + 0.019981319084763527, + -0.005691335070878267, + 0.04839424788951874, + 0.003585421945899725, + -0.04142623767256737, + -0.03833995386958122, + -0.007087323348969221, + -0.02352895773947239, + 0.016735946759581566, + -0.015367798507213593, + 0.02154037170112133, + -0.015988238155841827, + -0.01080995798110962, + 0.02010858990252018, + 0.04728063941001892, + 0.013705340214073658, + 0.0019478207686915994, + -0.03639909252524376, + -0.00574303837493062, + 0.027697036042809486, + -0.06073939427733421, + 0.023306237533688545, + -0.02069721184670925, + -0.001111619989387691, + 0.012448552995920181, + -0.0205699410289526, + -0.015009853057563305, + 0.09214315563440323, + 0.01764274202287197, + -0.021667640656232834, + -0.010277016088366508, + 0.03633545711636543, + -0.029399266466498375, + -0.08463425189256668, + -0.014238281175494194, + -0.03872176259756088, + 0.012122425250709057, + -0.047980621457099915, + 0.0010599166853353381, + 0.04015354439616203, + 0.016608675941824913, + -0.0011165915057063103, + -0.028333384543657303, + -0.0006572279380634427, + 0.00793446134775877, + -0.007333907764405012, + 0.015518930740654469, + 0.022256262600421906, + -0.02936744876205921, + -0.01819954626262188, + -0.020474489778280258, + 0.019790414720773697, + -0.01238491851836443, + 0.022542620077729225, + 0.02077675424516201, + 0.055903151631355286, + -0.04887150973081589, + 0.04008990898728371, + -0.061153020709753036, + -0.04705791547894478, + -0.024563023820519447, + 0.012663320638239384, + -0.006514610256999731, + 0.012917859479784966, + -0.037671785801649094, + 0.05965760350227356, + 0.0037206457927823067, + 0.011016770265996456, + -0.030131066218018532, + -0.016028009355068207, + 0.06513019651174545, + 0.01024519931524992, + -0.016942759975790977, + -0.003563547506928444, + -0.005758947227150202, + 0.005985646042972803, + 0.019376790151000023, + 0.0005088296602480114, + 0.021699458360671997, + -0.045021604746580124, + 0.022176720201969147, + 0.0049277180805802345, + 0.03221510723233223, + 0.02658342756330967, + 0.030369697138667107, + 0.012997402809560299, + -0.036367274820804596, + 0.01905861496925354, + 0.018947254866361618, + -0.027951575815677643, + 0.026249345391988754, + -0.0053850929252803326, + 0.02449938841164112, + -0.022701706737279892, + 0.029494719579815865, + 0.016799580305814743, + 0.02457893267273903, + -0.04537159577012062, + 0.011271310038864613, + -0.050366926938295364, + -0.022351715713739395, + 0.011342898942530155, + 0.030067430809140205, + 0.052753228694200516, + 0.011080405674874783, + -0.02772885374724865, + 0.01080995798110962, + 0.02734704501926899, + 0.013323531486093998, + 0.01571778953075409, + 0.019106341525912285, + 0.020219950005412102, + 0.0077713970094919205, + -0.03114922344684601, + 0.03347189351916313, + 0.019663145765662193, + -0.00454988656565547, + 0.010992907918989658, + -0.0016485383966937661, + -0.04333528131246567, + -0.04753517732024193, + 0.03496731072664261, + 0.003068389371037483, + 0.00419591786339879, + -0.002326646586880088, + -0.008845234289765358, + 0.03977173566818237, + -0.04441707208752632, + 0.03199238330125809, + -0.05431228131055832, + 0.04199895262718201, + -0.030385605990886688, + -0.02249489352107048, + -0.002774078631773591, + -0.013848518021404743, + 0.01972678117454052, + 0.025088010355830193, + -0.02238353341817856, + 0.0038837098982185125, + -0.0026826034300029278, + 0.0013582047540694475, + -0.0283811092376709, + -0.0005538213881663978, + -0.005687358323484659, + -0.01585301384329796, + 0.023481233045458794, + -0.03624000400304794, + 0.002438007388263941, + 0.05291231721639633, + 0.006848692893981934, + -0.013928061351180077, + -0.03525366634130478, + -0.027887940406799316, + -0.011501985602080822, + -0.0004844694340135902, + 0.01668822020292282, + -0.013689431361854076, + -0.011446305550634861, + 0.0229562446475029, + 0.021110836416482925, + 0.01999722793698311, + -0.004291370045393705, + 0.06236208230257034, + 0.029510626569390297, + 0.015805287286639214, + 0.014126920141279697, + 0.02031540311872959, + -0.05211688205599785, + 0.004720904864370823, + 0.021365376189351082, + 0.00021190877305343747, + -0.03164239227771759, + -0.031960565596818924, + 0.04008990898728371, + -0.02763340063393116, + -0.029399266466498375, + 0.0038101321551948786, + -0.053803201764822006, + -0.009012275375425816, + -0.01320421602576971, + 0.019281337037682533, + -0.009505445137619972, + 0.030321970582008362, + -0.0331537202000618, + 0.009688395075500011, + -0.02734704501926899, + 0.0014755313750356436, + 0.046453386545181274, + -0.011891748756170273, + -0.009449764154851437, + -0.008837279863655567, + -0.007377656642347574, + -0.0060970070771873, + 0.00022868748055770993, + 0.03643091022968292, + -0.006268025375902653, + 0.015789378434419632, + -0.00011869377340190113, + 0.01457236334681511, + 0.004247621167451143, + -0.022256262600421906, + 0.006705514620989561, + -0.08247067034244537, + 0.006725400220602751, + -0.005937919951975346, + 0.024706201627850533, + -0.042635299265384674, + -0.02812657132744789, + -0.015129167586565018, + -0.025501636788249016, + 0.043780725449323654, + 0.00243005296215415, + 0.042730752378702164, + 0.004026888404041529, + 0.006419158075004816, + 0.0038896757178008556, + 0.004042796790599823, + 0.010364513844251633, + -0.05800309777259827, + 0.006264048162847757, + 0.03347189351916313, + -0.02220853604376316, + 0.0019498092588037252, + 0.006964030675590038, + 0.0455624982714653, + 0.03840358555316925, + -0.04091716185212135, + 0.0007670973427593708, + 0.02002904564142227, + 0.02161991596221924, + 0.0013413017150014639, + -0.009569079615175724, + -0.006164618767797947, + 0.020601758733391762, + 0.020538123324513435, + -0.020824480801820755, + -0.0262970719486475, + -0.024658475071191788, + 0.04479888081550598, + 0.01963132806122303, + -0.033217351883649826, + 0.010770185850560665, + 0.014103056862950325, + -0.027506131678819656, + 0.03582637757062912, + 0.008029913529753685, + -0.024181215092539787, + -0.01955178566277027, + -0.01596437394618988, + -0.03286736086010933, + -0.006534495856612921, + -0.04336709901690483, + -0.012917859479784966, + -0.04117169976234436, + -0.00987134501338005, + -0.03041742369532585, + -0.02144492045044899, + -0.021460827440023422, + -0.018819985911250114, + 0.034076422452926636, + -0.01770637556910515, + -0.01916997693479061, + 0.0337582491338253, + -0.0020800617057830095, + -0.029510626569390297, + 0.013116718269884586, + -0.014230326749384403, + -0.018565446138381958, + 0.0009838532423600554, + -0.011454259976744652, + -0.006936190649867058, + 0.014325778931379318, + 0.024547114968299866, + -0.019217701628804207, + -3.507991277729161e-5, + -0.02982880175113678, + 0.014715542085468769, + -0.020904023200273514, + 0.0008739838958717883, + -0.027697036042809486, + -0.03700362145900726, + -0.0385308563709259, + -0.008662284351885319, + -0.004426593892276287, + -0.018247272819280624, + 0.01062700804322958, + 0.016035962849855423, + 0.006916304584592581, + -0.019679054617881775, + 0.029812892898917198, + 0.043398916721343994, + -0.013800792396068573, + -0.02507210150361061, + -0.0035874105524271727, + 0.04833061248064041, + -0.01400760468095541, + -0.044448889791965485, + 0.010889501310884953, + 0.003917515743523836, + 0.025581179186701775, + 0.003130035474896431, + -0.026917509734630585, + 0.025326641276478767, + 0.02971743978559971, + 0.008463425561785698, + -0.009934979490935802, + -0.0014715541619807482, + 0.006419158075004816, + -0.01923361048102379, + 0.03620818629860878, + -0.028556106612086296, + 0.009091818705201149, + -0.022351715713739395, + 0.02020404115319252, + 0.01043610367923975, + 0.0045459093526005745, + 0.008248657919466496, + -0.009306586347520351, + -0.007321976590901613, + 0.0006060217856429517, + 0.0012329238234087825, + 0.030003797262907028, + 0.013737156987190247, + -0.03716270998120308, + -0.013689431361854076, + -0.03894448280334473, + -0.009600896388292313, + 0.05138508230447769, + -0.007254364434629679, + 0.018438177183270454, + -0.008829325437545776, + -0.006184504833072424, + 0.05472590774297714, + -0.019885867834091187, + 0.025103919208049774, + 0.030146975070238113, + -0.026535701006650925, + -0.04619884863495827, + 0.025088010355830193, + 0.05984850600361824, + -0.00024260758073069155, + 0.03299463167786598, + 0.004096488934010267, + 0.018819985911250114, + 0.0602303147315979, + 0.008185023441910744, + -0.029765166342258453, + -0.020410854369401932, + 0.03079923242330551, + 0.01905861496925354, + -0.01885180175304413, + -0.006590176373720169, + -0.003939390182495117, + -0.02811066247522831, + -0.02391076646745205, + 0.002972937189042568, + -0.014230326749384403, + -0.009131590835750103, + 0.028556106612086296, + 0.0468670129776001, + 0.012257648631930351, + 0.000257521984167397, + -0.02268579788506031, + -0.02268579788506031, + -0.054471369832754135, + 0.0067850579507648945, + 0.008085593581199646, + -0.004454434383660555, + -0.011501985602080822, + 0.02343350648880005, + -0.047885168343782425, + 0.014333733357489109, + -0.00647881580516696, + -0.021206289529800415, + 0.0015202745562419295, + -0.030926501378417015, + -0.006665742956101894, + -0.00748106325045228, + 0.004446479957550764, + -0.00813332013785839, + 0.016560951247811317, + -0.004712950438261032, + -1.7027274225256406e-5, + -0.019010890275239944, + -0.025278914719820023, + 0.011764478869736195, + 0.00262095732614398, + -0.026853876188397408, + -0.010261107236146927, + -0.010746322572231293, + -0.01714957132935524, + 0.007246410008519888, + -0.03060832805931568, + 0.00678903516381979, + 0.01714957132935524, + -0.0029550399631261826, + 0.00967248622328043, + -0.01129517238587141, + -0.024260757490992546, + -0.029590170830488205, + -0.008161160163581371, + 0.016942759975790977, + 0.014492820017039776, + -0.022638071328401566, + 0.027522040531039238, + -0.004462388809770346, + -0.005222028587013483, + -0.018994981423020363, + 0.044257987290620804, + -0.03040151484310627, + -0.003879732685163617, + 0.028747010976076126, + -0.010619053617119789, + -0.03353552520275116, + 0.0002928194007836282, + -0.01810409314930439, + -0.0028814622201025486, + -0.008789553306996822, + 0.025660723447799683, + -0.03394915163516998, + 0.0294629018753767, + 0.012225830927491188, + 0.002097958931699395, + -0.036367274820804596, + -0.0032215104438364506, + -0.026058441027998924, + -0.024356210604310036, + -0.023083515465259552, + -0.019583601504564285, + 0.0004886952228844166, + 0.021317649632692337, + 0.005842467769980431, + -0.017595015466213226, + -0.008077639155089855, + -0.025978896766901016, + 0.008006050251424313, + -0.0013542275410145521, + -0.008045822381973267, + 0.008924777619540691, + 0.0008948640315793455, + -0.0010907398536801338, + 0.012711046263575554, + 0.0014914401108399034, + -0.021938089281320572, + -0.013808746822178364, + 0.006176550406962633, + 0.004018933977931738, + -0.0232585109770298, + 0.001780779450200498, + -0.00020258728181943297, + -0.004605567082762718, + 0.00445841159671545, + 0.022924428805708885, + -0.0073895882815122604, + -0.017785919830203056, + 0.01621095836162567, + -0.0008033890626393259, + 0.043653454631567, + -0.02917654439806938, + 0.0164018627256155, + -0.006717446260154247, + -0.006693582981824875, + 0.021572189405560493, + 0.04005809128284454, + -0.01585301384329796, + 0.030831048265099525, + -0.013832609169185162, + 0.006375409197062254, + -0.02534255012869835, + 0.01840635947883129, + 0.002149662235751748, + -0.018151819705963135, + 0.002648797584697604, + -0.040821708738803864, + 0.02411757968366146, + -0.006037349347025156, + -0.035699110478162766, + -0.020824480801820755, + 0.020458580926060677, + 0.02448347955942154, + 0.03095831908285618, + 0.01743592880666256, + -0.006439044140279293, + 0.002795953070744872, + -0.007807191461324692, + 0.03372643142938614, + 0.0070913005620241165, + -0.0009664531680755317, + 0.008932732045650482, + 0.004732836503535509, + 0.02963789738714695, + -0.015654154121875763, + -0.01334739476442337, + 0.02115856297314167, + -0.00454988656565547, + 0.025469819083809853, + 0.01473145093768835, + -0.02469029277563095, + 0.02990834414958954, + -0.03420369327068329, + 0.0002900850959122181, + -0.01648140698671341, + 0.012416735291481018, + 0.006172573193907738, + -0.023178966715931892, + -0.020363127812743187, + 0.011040633544325829, + 0.021842636168003082, + 0.033694613724946976, + 0.012321283109486103, + 0.025485727936029434, + -0.0006179533083923161, + -0.013848518021404743, + 0.030656052753329277, + -0.015988238155841827, + -0.01687912456691265, + 0.005492476746439934, + -0.027331136167049408, + -0.005456681828945875, + 0.04241257905960083, + 0.021683549508452415, + -0.018247272819280624, + -0.014707587659358978, + 0.01085768360644579, + -0.013928061351180077, + 0.017754102125763893, + 0.0027144209016114473, + 0.007850940339267254, + -0.03192874789237976, + 0.022463075816631317, + 0.03049696609377861, + -0.020267676562070847, + 0.029860619455575943, + -0.006618016865104437, + -0.012599685229361057, + 0.036749083548784256, + 0.006836761254817247, + -0.01262354850769043, + 0.007123117800801992, + -0.022431258112192154, + 0.04928513243794441, + -0.010531555861234665, + 0.027331136167049408, + -0.0011603403836488724, + 0.011501985602080822, + -0.022908519953489304, + -0.028365202248096466, + -0.0033229284454137087, + 0.02402212843298912, + 0.010587235912680626, + 0.02933563105762005, + -0.032803725451231, + 0.013792837969958782, + -0.008002073504030704, + 0.025708450004458427, + 0.028937915340065956, + -0.014126920141279697, + -0.0028874280396848917, + -0.02181082032620907, + -0.010945181362330914, + -0.005369184073060751, + 0.03240600973367691, + -0.00017511991609353572, + 0.005687358323484659, + -0.027601584792137146, + 0.01200310979038477, + 0.02631298080086708, + -0.0062521169893443584, + -0.03833995386958122, + 0.005655540619045496, + -0.0052260058000683784, + 0.025772083550691605, + -0.007994119077920914, + -0.03802178055047989, + -0.002019409788772464, + -0.009513398632407188, + 0.004939649719744921, + 0.004070637281984091, + 0.01276672724634409, + 7.345342601183802e-5, + -0.01792909763753414, + 0.0032016246113926172, + -0.002805895870551467, + 0.019854050129652023, + -0.0010370479431003332, + 0.013331485912203789, + -0.012217877432703972, + 0.020251767709851265, + -0.0007521829684264958, + -0.01067473366856575, + 0.01867680624127388, + 0.021763093769550323, + -0.0026348773390054703, + -0.01630641147494316, + 0.022415349259972572, + -0.005993600469082594, + -0.017133664339780807, + -0.03097422793507576, + -0.015208711847662926, + -0.008447516709566116, + -0.02602662332355976, + 0.010332697071135044, + 0.03344007581472397, + -0.012591731734573841, + -0.007039597257971764, + 0.005544180050492287, + 0.005492476746439934, + -0.008367973379790783, + 0.011255401186645031, + -0.017499564215540886, + 0.008686146698892117, + 5.490363764693029e-5, + -0.0218267273157835, + 0.0019249520264565945, + -0.00046682075480930507, + -0.0025871514808386564, + 0.02449938841164112, + -0.014254190027713776, + -0.00796230137348175, + -0.0005856388015672565, + 0.0016684243455529213, + -0.02335396222770214, + 0.009688395075500011, + 0.013061038218438625, + -0.013705340214073658, + -0.02469029277563095, + 0.021079018712043762, + -0.003857858246192336, + 0.0020919933449476957, + 0.008041844703257084, + 0.000876469595823437, + -0.0023445438127964735, + 0.002155628055334091, + 0.0009003326413221657, + 0.007508903741836548, + -0.01936088129878044, + -0.021779002621769905, + -0.0053612301126122475, + -0.019774505868554115, + 0.04619884863495827, + 0.009807709604501724, + -0.030528783798217773, + -0.034935493022203445, + -0.0029828802216798067, + 0.013220124877989292, + -0.02782430499792099, + 0.008686146698892117, + -0.0034979241900146008, + 0.03067196160554886, + -0.0016733957454562187, + -0.019583601504564285, + 0.0022152855526655912, + -0.020092681050300598, + -0.013625796884298325, + 0.0015391662018373609, + 0.008558877743780613, + 0.019504059106111526, + -0.0294629018753767, + 0.014278053306043148, + -0.004223758354783058, + 0.01582915149629116, + -0.0025493681896477938, + 0.01905861496925354, + 0.008932732045650482, + 0.01566210947930813, + 0.0011752548161894083, + 0.02820611372590065, + 0.022526711225509644, + 0.061312105506658554, + -0.022510802373290062, + 0.02133355848491192, + 0.023847132921218872, + -0.009465673007071018, + 0.0010847740340977907, + -0.010404285974800587, + 0.0027581697795540094, + -0.0218267273157835, + 0.017372293397784233, + 0.013991696760058403, + 0.004390799440443516, + 0.0037047371733933687, + 0.0051186224445700645, + -0.015375752933323383, + -0.009584988467395306, + -0.039803553372621536, + 0.032803725451231, + 0.033503711223602295, + -0.02257443591952324, + 0.01810409314930439, + 0.032803725451231, + 0.009123636409640312, + 0.01438941340893507, + 0.011700844392180443, + -0.006534495856612921, + 0.023226693272590637, + 0.0027641355991363525, + -0.06987098604440689, + 0.019313154742121696, + 0.005850422196090221, + -0.02297215349972248, + 0.00454988656565547, + -0.0143416877835989, + 0.016258684918284416, + 0.006824829615652561, + 0.042635299265384674, + 0.011541757732629776, + -0.014246235601603985, + -0.008678192272782326, + 0.008646375499665737, + 0.030846957117319107, + -0.013936015777289867, + 0.002451927401125431, + -0.0007894689333625138, + -0.014779176563024521, + 0.006435066927224398, + -0.023465324193239212, + -0.005126576870679855, + 0.011796296574175358, + 0.006983916740864515, + -0.05071691796183586, + 0.012520141899585724, + 0.007385611068457365, + -0.011661073192954063, + -0.0218267273157835, + -0.0033030426129698753, + 0.014866674318909645, + 0.02324260212481022, + 0.005822582170367241, + -2.9300583264557645e-5, + -0.012742863968014717, + -0.004983398597687483, + 0.03802178055047989, + -0.0047169276513159275, + -0.0015878864796832204, + -0.0030882752034813166, + -7.3290298132633325e-6, + 0.0027144209016114473, + -0.02201763167977333, + 0.012981493957340717, + 0.02841292694211006, + 0.00809752568602562, + 0.031196948140859604, + -0.03573092818260193, + -0.0178336463868618, + 0.027601584792137146, + -0.036080919206142426, + 0.0337582491338253, + 0.027808398008346558, + 0.009855436161160469, + 0.0009594931034371257, + -0.022447166964411736, + 0.03138785436749458, + 0.001825522631406784, + 0.02839701808989048, + -0.0031996360048651695, + 0.005687358323484659, + -0.031578756868839264, + 0.05023965612053871, + 0.003269236534833908, + -0.031849205493927, + -0.017770010977983475, + -0.01166902668774128, + 0.0017489620950073004, + -0.025278914719820023, + 0.018947254866361618, + -0.025501636788249016, + 0.014739405363798141, + 0.010332697071135044, + -0.004593635443598032, + 0.004732836503535509, + -0.012034927494823933, + 0.005826559383422136, + -0.026758423075079918, + 0.028285657986998558, + -0.03429914265871048, + 0.02650388516485691, + 0.004390799440443516, + 0.026933418586850166, + 0.01615527831017971, + 0.00858274009078741, + -0.017133664339780807, + -0.04276257008314133, + -0.010173609480261803, + -0.01472349651157856, + 6.413192022591829e-5, + 0.0019458321621641517, + 0.0025354481767863035, + 0.005977691616863012, + 0.0027661242056638002, + -0.017292750999331474, + -0.00512259965762496, + 0.010547463782131672, + 0.006240185350179672, + -0.036271821707487106, + -0.015288255177438259, + -0.02344941534101963, + 0.004152168985456228, + -0.011159949004650116, + 0.009624759666621685, + -0.0013442846247926354, + 0.019567694514989853, + -0.005719175562262535, + -0.05526680126786232, + 0.0018294998444616795, + 0.0350627601146698, + -0.009250905364751816, + -0.004804425407201052, + -0.012917859479784966, + 0.010300879366695881, + -0.0026925464626401663, + -0.03337644040584564, + -0.027585675939917564, + -0.012146287597715855, + -0.024626659229397774, + -0.00476067652925849, + -0.030146975070238113, + -0.013936015777289867, + -0.016465498134493828, + -0.011422442272305489, + -0.019297245889902115, + -0.027760671451687813, + 0.0013830621028319001, + 0.011525848880410194, + -0.047026097774505615, + 0.02076084539294243, + 0.019201792776584625, + 0.016051871702075005, + 0.009513398632407188, + 0.008439562283456326, + 0.0013343417085707188, + 0.0004976438358426094, + -0.029510626569390297, + 0.014993944205343723, + 0.01613936945796013, + 0.029796984046697617, + -0.006828806828707457, + -0.00368087412789464, + -0.0224789846688509, + 0.02181082032620907, + -0.006037349347025156, + -0.0022212513722479343, + 0.011979246512055397, + 0.0015660120407119393, + -0.012154242023825645, + 0.007886734791100025, + 0.006443020887672901, + 0.023417597636580467, + -0.0027482269797474146, + -0.00987134501338005, + 0.004394776653498411, + 0.0005408956203609705, + -0.013991696760058403, + 0.043685272336006165, + -0.014437139965593815, + -0.0016137381317093968, + 0.021985815837979317, + -0.03183329850435257, + -0.020410854369401932, + -0.03649454563856125, + -0.0029550399631261826, + 0.007870825938880444, + -0.012790589593350887, + 0.020426763221621513, + -0.004876014776527882, + -0.016990484669804573, + 0.029971979558467865, + 0.014405322261154652, + 0.006991871166974306, + 0.0102849705144763, + 0.02753794938325882, + -0.005106690805405378, + -0.030003797262907028, + 0.0010549452854320407, + 0.038562674075365067, + -0.0036212163977324963, + 0.02249489352107048, + 0.014651907607913017, + 0.005949851591140032, + 0.004490228835493326, + -0.00602541770786047, + 0.02526300586760044, + -0.007103231735527515, + -0.05243505537509918, + 0.00709925452247262, + -0.047694265842437744, + 0.011422442272305489, + -0.018613172695040703, + 0.01972678117454052, + -0.016354138031601906, + -0.032549187541007996, + -0.002231194404885173, + -0.002163582481443882, + -0.010603144764900208, + 0.007576515432447195, + -0.014278053306043148, + -0.01148607674986124, + -0.01010202057659626, + -0.004402731079608202, + 0.027617493644356728, + -0.02095174975693226, + -0.0056277005933225155, + -0.016417771577835083, + -0.007819123566150665, + 0.03611273691058159, + -0.003165830159559846, + -0.024817563593387604, + 0.0070077795535326, + -0.027522040531039238, + 0.0031101496424525976, + -0.03872176259756088, + 0.005766901653259993, + 0.007266296073794365, + 0.006120869889855385, + 6.394549563992769e-5, + -0.002121821977198124, + -0.00686062453314662, + -0.0011016770731657743, + -0.007294136099517345, + -0.012361055240035057, + -0.012591731734573841, + -0.019408605992794037, + 0.005822582170367241, + 0.012639457359910011, + 0.0017221161397174, + 0.008590694516897202, + 0.007035620044916868, + 0.016012100502848625, + 0.019472241401672363, + 0.008853187784552574, + 0.005520316772162914, + -0.030131066218018532, + -0.013745111413300037, + 0.041489873081445694, + 0.03547638654708862, + -0.016465498134493828, + -0.045976124703884125, + -0.018533628433942795, + 0.007922529242932796, + -0.028365202248096466, + -0.01353034470230341, + -0.028715193271636963, + 0.011772433295845985, + 0.0035158214159309864, + 0.0071867527440190315, + 0.004661247134208679, + 0.012854225002229214, + 0.018358632922172546, + 0.015439387410879135, + -0.029606079682707787, + -0.00600553210824728, + 0.002280909102410078, + -0.005770878866314888, + 0.004728859290480614, + -0.030131066218018532, + 0.0014745370717719197, + -0.07216183841228485, + -0.018358632922172546, + 0.017563197761774063, + 0.01301331166177988, + -0.0013671533670276403, + -0.0026448203716427088, + 0.0006090046954341233, + -0.0007790288655087352, + 0.0023604524321854115, + -0.0017917166696861386, + 0.01716548018157482, + 0.012146287597715855, + -0.008081616833806038, + 0.026042532175779343, + -0.01091336365789175, + 0.006053258199244738, + -0.021413102746009827, + 0.01128721795976162, + 0.008280475623905659, + -0.005015215836465359, + 0.004657270386815071, + 0.004788517020642757, + 0.05564860999584198, + -0.0010067221010103822, + 0.03468095138669014, + 0.0337582491338253, + -0.027569767087697983, + 0.04384436085820198, + -0.010324742645025253, + -0.0019339006394147873, + 0.0011742605129256845, + -0.00929067749530077, + -0.021699458360671997, + -0.0018802087288349867, + 0.01534393522888422, + -0.018565446138381958, + 0.018358632922172546, + -0.007811168674379587, + 0.01762683317065239, + 0.016083689406514168, + 0.006268025375902653, + 0.015447341836988926, + 0.0019348949426785111, + -0.0011006827699020505, + -0.0016316354740411043, + -0.010380422696471214, + 0.015049624256789684, + -0.005273731891065836, + -0.008694101125001907, + 0.015328026376664639, + 0.010555418208241463, + -0.03480822220444679, + 0.013896244578063488, + -0.020617667585611343, + -0.00796230137348175, + 0.0034203692339360714, + 0.018613172695040703, + 0.005174302961677313, + -0.0024996534921228886, + -0.001678367261774838, + 0.07362543791532516, + 0.014103056862950325, + -0.006272002588957548, + 0.022924428805708885, + -0.0063913180492818356, + 0.010730413720011711, + -0.005969737656414509, + 0.010444057174026966, + 0.024801654741168022, + -0.006439044140279293, + -0.014079194515943527, + 0.00876569002866745, + 0.004008990712463856, + 0.025660723447799683, + -0.006272002588957548, + 0.0060970070771873, + 0.034458231180906296, + -0.0007651087362319231, + -0.003054469358175993, + -0.010229290463030338, + -0.012225830927491188, + -0.0005229983362369239, + 0.007882758043706417, + -0.012217877432703972, + -0.0076003787107765675, + -0.024165306240320206, + 0.019599510356783867, + -0.00010657581879058853, + -0.018247272819280624, + -0.0015948466025292873, + 0.026424340903759003, + 0.028253840282559395, + 0.013617842458188534, + 0.024228941649198532, + -0.014596226625144482, + 0.02698114514350891, + 0.028349293395876884, + 0.017117755487561226, + 0.013506481423974037, + -0.009513398632407188, + -0.0014079194515943527, + 0.0006577250896953046, + -0.0017400133656337857, + -0.009417946450412273, + 0.0009485558839514852, + 0.018931346014142036, + 0.02002904564142227, + -0.006562336347997189, + -0.014675769954919815, + -0.016624584794044495, + 0.006693582981824875, + -0.01530416402965784, + -0.012504233978688717, + -0.004008990712463856, + -0.008797507733106613, + -0.0017330533592030406, + 0.01091336365789175, + -0.03573092818260193, + -0.026042532175779343, + -0.005281686317175627, + -0.005297595169395208, + 0.028556106612086296, + 0.006546427495777607, + -0.04594430699944496, + -0.014739405363798141, + 0.0017718308372423053, + -0.0034183806274086237, + -0.0003770857583731413, + -0.029860619455575943, + -0.007886734791100025, + -0.028476562350988388, + -0.003328894264996052, + -0.01420646347105503, + 0.006522564683109522, + -0.005858376622200012, + 0.03442641347646713, + 0.02190627157688141, + -0.01802455075085163, + -0.0034879811573773623, + -0.025278914719820023, + -0.02610616758465767, + 0.013697385787963867, + 0.007858894765377045, + 0.010070202872157097, + -0.008789553306996822, + 0.006876532919704914, + 0.01596437394618988, + 0.0050032841973006725, + -0.002744249766692519, + -0.03086286596953869, + 0.0010648882016539574, + 0.016529133543372154, + 0.0065185874700546265, + -0.019885867834091187, + -0.01315649040043354, + -0.026344796642661095, + 0.0016236810479313135, + 0.004661247134208679, + 0.017324568703770638, + 0.00790662132203579, + -0.027999302372336388, + -0.00820093136280775, + 0.026376614347100258, + -0.0014984001172706485, + 0.01629050262272358, + -0.01363375037908554, + -0.024642566218972206, + 0.008606603369116783, + -0.0205699410289526, + -0.02744249813258648, + 0.01005429495126009, + 0.00018618143803905696, + 0.0005023667472414672, + -0.0009018240962177515, + -0.0009823618456721306, + 0.0007173826452344656, + -0.008312292397022247, + 0.008161160163581371, + 0.01104858797043562, + 0.01821545511484146, + -0.006721423007547855, + 0.013673522509634495, + -0.008694101125001907, + 0.017197297886013985, + 0.01047587487846613, + 0.022367624565958977, + 0.00913954433053732, + 0.013538298197090626, + -0.013355348259210587, + -0.018342724069952965, + 0.011756524443626404, + -0.0005945874145254493, + -0.020713118836283684, + 0.0022132969461381435, + 0.018756350502371788, + 0.00014715541328769177, + 0.011780387721955776, + -0.04584885761141777, + -0.028158389031887054, + -0.002913279691711068, + 0.004673178773373365, + -0.018756350502371788, + -0.010762231424450874, + -0.0043550049886107445, + 0.00300276605412364, + -0.0024340301752090454, + -0.01772228442132473, + 0.020983567461371422, + 0.00838388130068779, + -0.027887940406799316, + 0.007127095013856888, + 0.0013462732313200831, + -0.0019189862068742514, + -0.020792663097381592, + 0.00853501446545124, + -0.019106341525912285, + -0.010611099191009998, + -0.024467570707201958, + 0.0011842034291476011, + -0.024610750377178192, + 0.018835892900824547, + -0.007329930551350117, + -0.008980457670986652, + -0.03353552520275116, + -0.004030865151435137, + -0.010149747133255005, + -0.015216666273772717, + -0.032453734427690506, + -0.005381115712225437, + 0.023019880056381226, + -0.007075391709804535, + -0.005190211348235607, + 0.0044504571706056595, + -0.010165655054152012, + 0.002495676279067993, + 0.006291888654232025, + 0.01754728890955448, + -0.019519967958331108, + 0.0175313800573349, + -0.029001548886299133, + -0.019790414720773697, + -0.02925608865916729, + -0.01476326771080494, + 0.01840635947883129, + 0.00400501349940896, + 0.006061212625354528, + -0.012711046263575554, + -0.01827908866107464, + -0.0019348949426785111, + -0.026090258732438087, + 0.008093548007309437, + -0.0256448145955801, + -0.008304337970912457, + 0.024801654741168022, + 0.017181389033794403, + 0.005500431172549725, + 0.0023505096323788166, + -0.00428739283233881, + 0.024753928184509277, + -0.0028536219615489244, + 0.0010837797308340669, + 0.0014447083231061697, + -0.0028297589160501957, + -0.024038037285208702, + 0.01878816820681095, + -0.0275538582354784, + -0.01300535723567009, + -0.02572435885667801, + 0.002760158386081457, + -0.024531206116080284, + 0.000522501184605062, + 0.00628791144117713, + -0.004366936627775431, + -0.003943367395550013, + 0.0032215104438364506, + 0.014031467959284782, + 0.010539509356021881, + -0.014850765466690063, + 0.017754102125763893, + -0.0077713970094919205, + 0.0040885345079004765, + -0.015256437472999096, + -0.01613936945796013, + -0.004454434383660555, + -0.010992907918989658, + -0.017610924318432808, + 0.012711046263575554, + 0.011947428807616234, + 0.012464461848139763, + 0.025676632300019264, + 0.025867536664009094, + 0.0007830060203559697, + 0.014182601124048233, + 0.00857478566467762, + 0.021985815837979317, + 0.0018394427606835961, + -0.010078157298266888, + 0.01010202057659626, + 0.012456507422029972, + 0.013864426873624325, + 0.009648622944951057, + -0.0037803035229444504, + -0.010603144764900208, + -0.01764274202287197, + -0.01577346958220005, + -0.0002064401633106172, + -0.0019458321621641517, + 0.007632195949554443, + 0.006443020887672901, + -0.01649731583893299, + 0.005428841803222895, + 0.006725400220602751, + -0.0076441275887191296, + -0.02049039863049984, + 0.0032016246113926172, + 0.00872591882944107, + 0.052944134920835495, + 0.006522564683109522, + 0.0036331480368971825, + -0.0051305536180734634, + 0.009895207360386848, + -0.02849247120320797, + 0.00428739283233881, + 0.0018473970703780651, + -0.017292750999331474, + 0.012114470824599266, + -0.003468095324933529, + -0.001803648192435503, + -0.0005264783394522965, + -0.024435754865407944, + -0.028285657986998558, + 0.012870133854448795, + -0.019854050129652023, + 0.0029192452784627676, + 0.014468957670032978, + -0.007799237035214901, + 0.007059482857584953, + -0.018819985911250114, + 0.014365551061928272, + -0.0031121382489800453, + -3.346418816363439e-5, + 0.012551959604024887, + -0.03401278704404831, + -0.005484522320330143, + -0.010579281486570835, + 0.0020581872668117285, + -0.00040169453131966293, + 0.012178105302155018, + 0.027299318462610245, + 0.002959017176181078, + -0.01563824713230133, + 0.0052697546780109406, + -0.008360018953680992, + 0.0006532507250085473, + 0.01320421602576971, + 0.036844536662101746, + -0.01025315374135971, + 0.042158037424087524, + -0.025867536664009094, + -0.013140581548213959, + -0.014978035353124142, + -0.025565272197127342, + -0.00438682222738862, + 0.019313154742121696, + 0.017467746511101723, + 0.007194706704467535, + 0.011422442272305489, + -0.0029112910851836205, + -0.03595364838838577, + -0.017976824194192886, + 0.0097202118486166, + -0.021492645144462585, + 0.010444057174026966, + -0.0036192277912050486, + 0.005611791741102934, + -0.017404111102223396, + 0.016433680430054665, + 0.015821196138858795, + 0.013363302685320377, + 0.0007864860817790031, + 0.0017260933527722955, + -0.0037743377033621073, + -0.0356672927737236, + 0.008686146698892117, + -0.005731107201427221, + 0.0012349124299362302, + -0.017595015466213226, + 0.038053594529628754, + 0.0024399959947913885, + -0.009115681983530521, + 0.022272171452641487, + 0.0016952701844274998, + 0.017324568703770638, + -0.017372293397784233, + 0.0024340301752090454, + 0.01897907257080078, + -0.044257987290620804, + 0.047312457114458084, + -0.02896973118185997, + -0.0024260757490992546, + -0.0003054966509807855, + 0.017117755487561226, + 0.004303301684558392, + -0.0064668841660022736, + -0.01333944033831358, + -0.00929067749530077, + -0.011756524443626404, + 0.019981319084763527, + 0.006673697382211685, + -0.01770637556910515, + -0.013745111413300037, + 0.007194706704467535, + 0.03519003093242645, + 0.003468095324933529, + -0.011844023130834103, + 0.004311256110668182, + 0.02161991596221924, + 0.03452186658978462, + 0.010746322572231293, + -0.0028894166462123394, + 0.00872591882944107, + -0.0031240698881447315, + -0.00187026581261307, + -0.008487287908792496, + -0.005615768954157829, + 0.004625452682375908, + 0.009187270887196064, + -0.005472590681165457, + -0.022351715713739395, + 0.022844884544610977, + -0.017881372943520546, + 0.019885867834091187, + -0.01224173977971077, + -0.0013234044890850782, + 0.03620818629860878, + -0.008829325437545776, + 0.019201792776584625, + -0.0065424502827227116, + 0.012138333171606064, + -0.02725159376859665, + -0.0005558099946938455, + 0.005476567894220352, + 0.011159949004650116, + 0.018915437161922455, + -0.018040459603071213, + -0.02391076646745205, + 0.009600896388292313, + -0.003527752822265029, + 0.004864083137363195, + 0.03748088330030441, + 0.01734047569334507, + 0.003277190960943699, + 0.0379263274371624, + -0.011875839903950691, + 0.00790662132203579, + 0.024547114968299866, + -0.012146287597715855, + 0.009759983979165554, + -0.026997053995728493, + -0.0062123448587954044, + -0.0019557750783860683, + -0.00987134501338005, + -0.006415180861949921, + 0.00909977313131094, + 0.00767196761444211, + 0.0009028183994814754, + 0.025692541152238846, + -0.03030606172978878, + -0.014970080927014351, + -0.022335806861519814, + -0.0072623188607394695, + -0.00012801527918782085, + -0.039199020713567734, + -0.0035476386547088623, + -0.006347568705677986, + 0.011971292085945606, + -0.006112915463745594, + 0.006053258199244738, + -0.011263355612754822, + 0.00814525131136179, + -0.01754728890955448, + -0.03744906559586525, + -0.013943970203399658, + 0.013236033730208874, + 0.009879299439489841, + -0.004072625655680895, + -0.004012967925518751, + -0.005575997289270163, + 0.024944832548499107, + 0.005830536596477032, + -0.024913014844059944, + 0.009799755178391933, + -0.006840738467872143, + 0.027108414098620415, + 0.009131590835750103, + -0.030910592526197433, + -0.020044954493641853, + -0.0062004136852920055, + 0.023608502000570297, + -0.008264566771686077, + -0.003865812672302127, + -0.01548711396753788, + -0.005890193860977888, + -0.0015421489952132106, + 0.00021675595780834556, + -0.005090781953185797, + 0.021381285041570663, + 0.017308659851551056, + -0.00014330253179650754, + -0.01596437394618988, + 0.00027193923597224057, + 0.01867680624127388, + 0.001457634149119258, + -0.004868060350418091, + -0.01743592880666256, + 0.006745286285877228, + 0.021413102746009827, + -0.022892611101269722, + -0.007306067738682032, + 0.0021456850226968527, + 0.013243988156318665, + -0.024531206116080284, + 0.00262095732614398, + -0.00896454881876707, + 0.004331142175942659, + 0.010579281486570835, + 0.014739405363798141, + 0.010976999066770077, + 0.00933840312063694, + 0.0019706895109266043, + -0.02601071447134018, + -0.006208367645740509, + -0.01530416402965784, + 0.004780562594532967, + 0.003893652930855751, + 0.019408605992794037, + -0.007560607045888901, + -0.01200310979038477, + 0.00021625880617648363, + -0.009974751621484756, + 0.015590520575642586, + 0.007083346135914326, + -0.01295763161033392, + 0.0049078320153057575, + -0.04123533517122269, + 0.06961644440889359, + -0.022335806861519814, + -0.0030942410230636597, + 0.0029550399631261826, + 0.02020404115319252, + -0.0033169626258313656, + 0.0028894166462123394, + -0.002097958931699395, + 0.01961541920900345, + 0.0053214579820632935, + -0.01100086234509945, + -0.014111011289060116, + 0.03649454563856125, + -0.0024320415686815977, + -0.01812000200152397, + -0.020442672073841095, + 0.02286079339683056, + -0.0008207891951315105, + 0.022622162476181984, + 0.01735638454556465, + 0.006932213436812162, + -0.0218267273157835, + -0.011144040152430534, + 0.008053776808083057, + -0.009449764154851437, + 0.011740616522729397, + -0.01773819327354431, + -0.01819954626262188, + 0.028174297884106636, + 0.02286079339683056, + 0.004732836503535509, + -0.004720904864370823, + -0.009497490711510181, + -0.015574611723423004, + -0.0037942235358059406, + 0.012862179428339005, + 0.004434548318386078, + 0.015900740399956703, + 0.005850422196090221, + 0.012400827370584011, + 0.009791800752282143, + -0.01119176670908928, + 0.01839045062661171, + 0.01659276708960533, + -0.01859726384282112, + 0.013379211537539959, + -0.0026527747977524996, + -0.002702489495277405, + -0.0005806673434562981, + 0.012209923006594181, + -0.0006527535733766854, + -0.031117405742406845, + 0.006637902464717627, + -0.002754192566499114, + 0.015009853057563305, + 0.016067780554294586, + 0.0059896232560276985, + -0.010515647009015083, + -0.004466366022825241, + 0.010563372634351254, + -0.017690468579530716, + -0.0023902812972664833, + -0.004876014776527882, + -0.014071240089833736, + -0.022224444895982742, + -0.0024559046141803265, + -0.01510530523955822, + 0.004899877589195967, + -0.002346532419323921, + -0.007178798317909241, + -0.008137296885251999, + -0.009441809728741646, + 0.01848590187728405, + -0.02515164576470852, + -0.008542968891561031, + 0.008447516709566116, + 0.0054169101640582085, + 0.04069443792104721, + 0.022542620077729225, + -0.025899354368448257, + 0.0017280818428844213, + 0.00018307426944375038, + 0.006892441771924496, + -0.013140581548213959, + 0.0001641826966078952, + -0.011557666584849358, + 0.013084900565445423, + -0.004231712780892849, + -0.001185197732411325, + -0.031228765845298767, + -0.012233785353600979, + -0.01789727993309498, + -9.67571759247221e-5, + -0.012504233978688717, + -0.016123460605740547, + 0.0035257642157375813, + -0.001914014806970954, + -0.011597437784075737, + -0.002473801840096712, + -0.006944145075976849, + 0.01982223242521286, + -0.002768112812191248, + 0.008638421073555946, + 0.0010052305879071355, + 0.008550923317670822, + -0.005862353835254908, + 0.01907452382147312, + 0.0010927284602075815, + -0.019567694514989853, + 0.009775892831385136, + 0.0044305711053311825, + 0.0030942410230636597, + 0.012146287597715855, + -0.0006060217856429517, + -0.009887252934277058, + 0.0030425377190113068, + -0.0026110142935067415, + 0.0039950706996023655, + -0.015797333791851997, + -0.011684935539960861, + 0.0016177153447642922, + -0.0034024720080196857, + -0.015837104991078377, + -0.024053946137428284, + -0.009497490711510181, + 0.007846963591873646, + 0.007966278120875359, + 0.0015868921764194965, + 0.011207674629986286, + 0.017117755487561226, + 0.014659861102700233, + 0.013832609169185162, + 0.01547915954142809, + -0.0038021779619157314, + 0.004152168985456228, + -0.0003954801941290498, + -0.021779002621769905, + 0.008256612345576286, + 0.017467746511101723, + -0.02077675424516201, + 0.02219262905418873, + -0.017563197761774063, + 0.006164618767797947, + 0.015168939717113972, + 0.02648797631263733, + -0.00495158089324832, + 0.006069166585803032, + -0.018454084172844887, + 0.021953998133540154, + -0.004144215025007725, + 0.01961541920900345, + -0.017022302374243736, + -0.009394084103405476, + -0.01770637556910515, + -0.002436018781736493, + 0.0037783149164170027, + -0.01840635947883129, + 0.02257443591952324, + -0.04028081148862839, + -0.003283156780526042, + -0.007230501621961594, + -0.005281686317175627, + -0.01619505137205124, + 0.012106516398489475, + -0.02209717594087124, + 0.027490222826600075, + 0.013434892520308495, + 0.010324742645025253, + 0.014437139965593815, + 0.005397024564445019, + -0.025406183674931526, + 0.00017661135643720627, + 0.02163582481443882, + -0.0283811092376709, + 0.0097202118486166, + 0.009855436161160469, + 0.005731107201427221, + 0.017022302374243736, + -0.020076772198081017, + 0.00631575146690011, + 0.008710009977221489, + 0.009386129677295685, + 0.028540197759866714, + 0.009839527308940887, + -0.0026746492367237806, + -0.009378175251185894, + -0.0005801701918244362, + -0.0170541200786829, + 0.029128819704055786, + -0.006749263498932123, + -0.003672919701784849, + 0.017101846635341644, + 0.015288255177438259, + 0.008813416585326195, + -0.010109975002706051, + -0.006144733168184757, + 0.03499912843108177, + 0.021126745268702507, + 0.009457718580961227, + -0.007369702681899071, + -0.016163233667612076, + 0.003947344608604908, + 0.018629081547260284, + 0.02286079339683056, + -0.0034144034143537283, + -0.018629081547260284, + -0.02467438392341137, + -0.006745286285877228, + 0.006331660319119692, + -0.002392269903793931, + -0.024181215092539787, + -0.018629081547260284, + 0.012408781796693802, + 0.005575997289270163, + -0.01915406808257103, + 0.0036053077783435583, + -0.006061212625354528, + 0.025772083550691605, + -0.0003688828437589109, + 0.01590869389474392, + 0.008065707981586456, + 0.005941897165030241, + -0.0170541200786829, + -0.007059482857584953, + 0.010324742645025253, + -0.005655540619045496, + -0.009123636409640312, + -0.0018275112379342318, + 0.009394084103405476, + 0.0012498267460614443, + 0.01573369838297367, + 0.0026229459326714277, + 0.0001329867372987792, + 0.010396331548690796, + -0.00419591786339879, + 0.026137983426451683, + 0.015399616211652756, + -0.01167698111385107, + 0.016656402498483658, + 0.013832609169185162, + -0.011358807794749737, + 0.010778140276670456, + -0.020426763221621513, + -0.014866674318909645, + -0.013251942582428455, + -0.01009406615048647, + 0.0012259637005627155, + 0.009958842769265175, + 0.012480370700359344, + -3.504884080030024e-5, + -0.01867680624127388, + 0.0030803207773715258, + -0.00776344258338213, + -0.004891923628747463, + 0.01762683317065239, + 0.0020561986602842808, + -0.009227042086422443, + 0.010634961538016796, + -0.008813416585326195, + -0.034744586795568466, + -0.00042605469934642315, + 0.00012633739970624447, + -0.011342898942530155, + -0.011653118766844273, + 0.014715542085468769, + 0.00890886876732111, + -0.03477640450000763, + 0.006621994078159332, + -0.00555213401094079, + -0.0013741134898737073, + 0.020410854369401932, + 0.016203004866838455, + -0.00797423254698515, + 0.0075804926455020905, + 0.005186234135180712, + -0.0025076079182326794, + -0.012130378745496273, + -0.001472548465244472, + -0.018422268331050873, + -0.016107553616166115, + 0.010531555861234665, + -0.026758423075079918, + 0.013355348259210587, + -0.01858135499060154, + -0.0003571998968254775, + -0.024658475071191788, + 0.014103056862950325, + 0.01810409314930439, + 0.0005876274080947042, + 0.016608675941824913, + -0.004728859290480614, + -0.006228253711014986, + -0.013482618145644665, + -0.0337582491338253, + 0.013363302685320377, + 0.031037861481308937, + 0.012504233978688717, + -0.01553483959287405, + 0.014683724381029606, + -0.018151819705963135, + -0.011987200938165188, + -0.013713294640183449, + 0.011358807794749737, + -0.00853501446545124, + 0.0018971117679029703, + -0.002141708042472601, + -0.0038558696396648884, + -0.0012408781331032515, + -0.022828975692391396, + 0.005166348535567522, + -0.01006224937736988, + -0.005977691616863012, + -0.0010057277977466583, + -0.011462214402854443, + -0.012917859479784966, + -0.019679054617881775, + 0.016895033419132233, + 0.027887940406799316, + 0.004617498256266117, + -0.010889501310884953, + -0.008892959915101528, + 0.004756699316203594, + 0.028142480179667473, + -0.009855436161160469, + 0.022606253623962402, + -0.018151819705963135, + 0.019758598878979683, + -0.002392269903793931, + -0.009314540773630142, + -0.01244059856981039, + 0.018374541774392128, + 0.015606428496539593, + -0.015837104991078377, + 4.418391108629294e-5, + -0.007317999377846718, + 0.010706551373004913, + -0.013466709293425083, + -0.0035357072483748198, + -0.013331485912203789, + -0.009123636409640312, + -0.01791318878531456, + -0.015670062974095345, + -0.003511844202876091, + -0.007397542707622051, + -0.00600553210824728, + 0.02658342756330967, + -0.02344941534101963, + -0.01372124906629324, + -0.003913538530468941, + 0.004732836503535509, + -0.02402212843298912, + 0.005210097413510084, + 0.034744586795568466, + 0.01296558603644371, + -0.020426763221621513, + 0.005591906141489744, + 0.020840389654040337, + 0.017992733046412468, + 0.002290851902216673, + -0.006152687594294548, + 0.022319898009300232, + 0.027044780552387238, + -0.015916649252176285, + 0.0029112910851836205, + 0.01964723691344261, + -0.030242428183555603, + 0.013220124877989292, + 0.0017012360040098429, + -0.03795814514160156, + 0.03067196160554886, + -0.00495953531935811, + -0.013983742333948612, + -0.016895033419132233, + 0.010125883854925632, + -0.007687876466661692, + 0.026822058483958244, + 0.004136260598897934, + 0.0034641181118786335, + -0.00895659439265728, + -0.01789727993309498, + 0.010984953492879868, + 0.01575756072998047, + -0.0008446522406302392, + -0.019949503242969513, + 0.01009406615048647, + 0.0035138328094035387, + 0.024610750377178192, + 0.01224969420582056, + 0.024801654741168022, + -0.021667640656232834, + -0.0036550224758684635, + 0.00933044869452715, + 0.016815489158034325, + 0.004899877589195967, + -0.005862353835254908, + 0.02106311172246933, + -0.013212170451879501, + 0.020347218960523605, + 0.015423478558659554, + -0.0020522214472293854, + -0.002099947538226843, + 0.0028814622201025486, + 0.017420019954442978, + -0.021397193893790245, + 0.0017270875396206975, + -0.006733354646712542, + 0.0009470644290558994, + 0.025103919208049774, + 0.02400621958076954, + -0.005488499533385038, + -0.01277468167245388, + 0.006685628555715084, + -0.008256612345576286, + -0.006848692893981934, + 0.02593117207288742, + -0.011875839903950691, + -0.010189518332481384, + -0.008248657919466496, + 0.013490572571754456, + -0.01529620960354805, + 0.0022550574503839016, + -0.013904199004173279, + -0.005981668829917908, + 0.0012786613078787923, + 0.007759465370327234, + -0.01238491851836443, + 0.042158037424087524, + 0.002953051356598735, + 0.005520316772162914, + 0.017610924318432808, + 0.01808818429708481, + -0.03977173566818237, + -0.02209717594087124, + 0.005500431172549725, + -0.01802455075085163, + -0.0053612301126122475, + 0.004939649719744921, + 0.014293961226940155, + 0.0025374367833137512, + 0.017324568703770638, + -0.012615594081580639, + 0.002577208448201418, + -0.002784021431580186, + -0.017006393522024155, + 0.013912152498960495, + 0.0006423135055229068, + -0.010555418208241463, + -0.013625796884298325, + -0.006920281797647476, + -0.01963132806122303, + -0.0033308828715234995, + -0.007938438095152378, + 0.005257823504507542, + 0.007902643643319607, + -0.020840389654040337, + -0.008224794641137123, + -0.00164953269995749, + -0.006737331859767437, + 0.005011238623410463, + 0.0026706720236688852, + 0.0033627001103013754, + -0.006244162563234568, + 0.007139026653021574, + -0.010412240400910378, + 0.0034700839314609766, + 0.021126745268702507, + 0.01143039669841528, + 0.0021894341334700584, + -0.006618016865104437, + 0.017197297886013985, + -0.012217877432703972, + 0.02526300586760044, + 0.04320801421999931, + 0.007958324626088142, + 0.019758598878979683, + 0.011891748756170273, + -0.010046340525150299, + -0.021763093769550323, + 0.007612309884279966, + -0.010006568394601345, + -0.011167903430759907, + -0.013936015777289867, + -0.008487287908792496, + -0.023767588660120964, + 0.025294823572039604, + -0.015837104991078377, + -0.007397542707622051, + 0.001987592549994588, + 0.0035516158677637577, + 0.015272346325218678, + 0.021763093769550323, + 0.024085761979222298, + 0.0077713970094919205, + 0.00139897083863616, + 0.005397024564445019, + -0.013212170451879501, + 0.029701530933380127, + -0.006057235412299633, + 0.01081791240721941, + -0.015232574194669724, + 0.011112222447991371, + 0.0019716836977750063, + -0.004510114900767803, + -0.018072277307510376, + 0.011032679118216038, + -0.011915612034499645, + -0.004191940650343895, + 0.01859726384282112, + 0.0097202118486166, + -0.0037902463227510452, + 0.0020114555954933167, + -0.012981493957340717, + -0.035221848636865616, + 0.005941897165030241, + 0.00306242355145514, + 0.011358807794749737, + 0.0026845920365303755, + -0.00203134142793715, + 0.016370046883821487, + 0.0006731366156600416, + 0.007787305861711502, + -0.025040283799171448, + -0.0013959879288449883, + 0.015184848569333553, + 0.017181389033794403, + -0.005575997289270163, + 0.013880335725843906, + 0.0034979241900146008, + -0.0019160032970830798, + -0.008169114589691162, + -0.0049078320153057575, + 0.01372124906629324, + -0.013983742333948612, + -0.026822058483958244, + 0.02002904564142227, + 0.0218267273157835, + 0.010945181362330914, + 0.012130378745496273, + 0.027887940406799316, + -0.026949327439069748, + 0.027585675939917564, + 0.005206120200455189, + 0.00395728787407279, + -0.011756524443626404, + -0.006705514620989561, + -0.00034427407081238925, + 0.00021389736502896994, + 0.006717446260154247, + -0.010976999066770077, + -0.009998613968491554, + -0.015240528620779514, + 0.00359536474570632, + 0.0048322658985853195, + 0.01009406615048647, + 0.02927199751138687, + -0.01676776260137558, + 0.00697993952780962, + -0.0034561636857688427, + -0.011136085726320744, + 0.010332697071135044, + 0.011088360100984573, + 0.010149747133255005, + 0.0014397368067875504, + 0.009179316461086273, + -0.013124672695994377, + 0.004879991989582777, + -0.0006955082062631845, + -0.0035536044742912054, + 0.016608675941824913, + -0.007608333136886358, + -0.019376790151000023, + -0.0035874105524271727, + -0.00512259965762496, + -0.007445268798619509, + -0.009433855302631855, + 0.0003141967172268778, + -0.021429011598229408, + -0.01182015985250473, + 0.016338229179382324, + -0.008240703493356705, + 0.0011126142926514149, + -0.0021198333706706762, + -0.008590694516897202, + -0.010531555861234665, + 0.007556629832834005, + 0.01604391820728779, + -0.0027860100381076336, + -0.0029470855370163918, + 0.02069721184670925, + -0.0056277005933225155, + 0.02419712394475937, + -0.002046255860477686, + -0.0021317650098353624, + 0.011772433295845985, + 0.011549712158739567, + 0.009624759666621685, + -0.00612484710291028, + 0.0056078145280480385, + -0.028937915340065956, + -0.014111011289060116, + -0.018374541774392128, + 0.0070515284314751625, + 0.006884487345814705, + -0.00583451334387064, + -0.008121388033032417, + 0.019567694514989853, + 0.008837279863655567, + 0.011764478869736195, + 0.0063714319840073586, + 0.005802696105092764, + -0.0017678536241874099, + -0.014023513533174992, + 0.019679054617881775, + -0.010125883854925632, + 0.018947254866361618, + 0.000610993301961571, + -0.009449764154851437, + -0.00776344258338213, + 0.02688569203019142, + -0.011573574505746365, + 0.002939131110906601, + -0.0003186710237059742, + -9.079141455003992e-5, + -0.0064668841660022736, + -0.01495417207479477, + -0.014564409852027893, + 0.011995155364274979, + 0.004283416084945202, + 0.019663145765662193, + -0.009656577371060848, + 0.01802455075085163, + -0.0003835486713796854, + -0.004327164962887764, + -0.010746322572231293, + -7.181439286796376e-6, + 0.009759983979165554, + 0.009203179739415646, + 0.007127095013856888, + -0.009266814216971397, + -0.014333733357489109, + -0.0001173887649201788, + 0.016354138031601906, + -0.009553170762956142, + -0.00593394273892045, + 0.0073895882815122604, + -0.011995155364274979, + 0.0013422960182651877, + 0.003030606312677264, + -0.0002759164199233055, + -0.01991768553853035, + -0.017865464091300964, + 0.010141792707145214, + -0.016035962849855423, + -0.0026806150563061237, + 0.01553483959287405, + 0.013323531486093998, + -0.007640150375664234, + 0.0035098555963486433, + 0.029192453250288963, + 0.005528271198272705, + -0.044067081063985825, + -0.007492994889616966, + -0.0006119875470176339, + 0.022813066840171814, + -0.005699289496988058, + -0.016656402498483658, + -0.0024280643556267023, + -0.001626663957722485, + -0.012496279552578926, + -0.011016770265996456, + 0.007827077060937881, + -0.011319035664200783, + -0.005090781953185797, + -0.0021079019643366337, + 0.003541673067957163, + 0.022463075816631317, + -9.371215128339827e-5, + -0.007314022164791822, + 0.018056368455290794, + -0.00464931596070528, + -0.003748486051335931, + -0.005448727868497372, + 0.009704302996397018, + -0.018708623945713043, + -9.71766439761268e-6, + -0.02744249813258648, + 0.0121940141543746, + -0.009982705116271973, + -0.004038819577544928, + -0.005568042863160372, + -0.005134530831128359, + 0.006713469047099352, + -0.010706551373004913, + -0.01086563803255558, + -0.005786787252873182, + 0.006367454770952463, + 0.024944832548499107, + -0.019106341525912285, + -0.019519967958331108, + 0.001465588458813727, + -0.024801654741168022, + 0.01629050262272358, + -0.0047407909296453, + -0.0053214579820632935, + 0.008924777619540691, + -0.022431258112192154, + 0.0021695480681955814, + 0.022272171452641487, + 0.002636865945532918, + 0.001766859320923686, + 0.015518930740654469, + -0.013355348259210587, + -0.0074532232247292995, + 0.004613521043211222, + -0.009067955426871777, + -0.020442672073841095, + -0.029621988534927368, + 0.0164018627256155, + -0.021174471825361252, + 0.0022152855526655912, + 0.006343591958284378, + -0.0031101496424525976, + -0.03258100524544716, + 0.003585421945899725, + -0.0028695305809378624, + -0.023592593148350716, + -0.006069166585803032, + -0.007489017676562071, + -0.014787130989134312, + 8.780853386269882e-5, + 0.041203517466783524, + 0.006395294796675444, + 0.004307278897613287, + 0.013554207049310207, + -0.005202142987400293, + -0.013896244578063488, + 0.00929863192141056, + 0.002929188311100006, + -0.027506131678819656, + 0.023672137409448624, + -0.012870133854448795, + -0.01827908866107464, + -0.008662284351885319, + -0.0037723490968346596, + 0.006590176373720169, + -0.024515297263860703, + -0.02181082032620907, + 0.007823100313544273, + -0.006625971291214228, + 0.019694963470101357, + -0.014691678807139397, + -0.01334739476442337, + 0.005639632232487202, + -0.006952099502086639, + 0.009887252934277058, + 0.016322320327162743, + -0.012480370700359344, + -0.01201106421649456, + 0.01262354850769043, + 0.017674559727311134, + 0.006761195138096809, + 0.01955178566277027, + 0.0012756783980876207, + 0.0052896407432854176, + 0.005496453959494829, + 0.0042396667413413525, + -0.008972503244876862, + -0.004677155986428261, + 0.00838388130068779, + 0.047980621457099915, + 0.01878816820681095, + 0.026933418586850166, + -0.007218569982796907, + -0.026822058483958244, + 0.010714505799114704, + -0.0030007774475961924, + 0.003484003944322467, + -0.006089052651077509, + 0.0051504396833479404, + 0.03487185761332512, + 0.0076003787107765675, + -0.007532766554504633, + -0.01276672724634409, + 0.007958324626088142, + -0.007759465370327234, + 0.006737331859767437, + 0.026933418586850166, + 0.009553170762956142, + 0.013236033730208874, + 0.01687912456691265, + 0.009322494268417358, + 0.007441291585564613, + -0.010881546884775162, + 0.00717084389179945, + 0.027124322950839996, + -0.014437139965593815, + -0.009934979490935802, + -0.01167698111385107, + -0.0030206632800400257, + -0.02648797631263733, + -0.005575997289270163, + -0.026615245267748833, + -0.0076242415234446526, + -0.015558702871203423, + -0.023226693272590637, + 0.011334944516420364, + -0.005369184073060751, + 0.007536743767559528, + 0.012989448383450508, + 0.004697042051702738, + 0.0031041838228702545, + -0.009457718580961227, + -0.0029271997045725584, + -0.013737156987190247, + 0.011509940028190613, + -0.0021755138877779245, + -0.0029868572019040585, + -0.00755265261977911, + -0.012162196449935436, + -0.006379386410117149, + -0.006192459259182215, + 0.003935412969440222, + 0.01846999302506447, + -0.0033686659298837185, + -0.01858135499060154, + 0.005830536596477032, + 0.0011275287251919508, + 0.000393988739233464, + -0.015996191650629044, + 0.0016733957454562187, + -0.019138159230351448, + 0.0039413790218532085, + -0.015582566149532795, + -0.0016008123056963086, + 0.011088360100984573, + -0.013061038218438625, + -0.010332697071135044, + 0.01638595573604107, + 0.022240353748202324, + 0.01915406808257103, + 0.0124326441437006, + -0.01792909763753414, + -0.01600414700806141, + 0.01764274202287197, + -0.0045459093526005745, + 0.006983916740864515, + -0.004844197537750006, + -0.010603144764900208, + 0.0063515459187328815, + 0.003804166568443179, + 0.019090432673692703, + 0.014850765466690063, + 0.02201763167977333, + -0.0005916045629419386, + -0.003953310661017895, + -0.008606603369116783, + -0.0208722073584795, + -0.015057578682899475, + 0.0010957112535834312, + -0.016417771577835083, + 0.02286079339683056, + 0.01224173977971077, + -0.02287670224905014, + -0.011151994578540325, + 0.01695866696536541, + -0.0038459268398582935, + -0.025867536664009094, + -0.007922529242932796, + -0.0008874068153090775, + -0.00647881580516696, + -0.008741827681660652, + -0.01182015985250473, + 0.016529133543372154, + -0.01687912456691265, + -0.011883794330060482, + -9.36810829443857e-6, + 0.006399272009730339, + 0.0012349124299362302, + 0.007922529242932796, + 0.01381670031696558, + -0.006339614745229483, + -0.0077912830747663975, + -0.010762231424450874, + 0.020267676562070847, + 0.0030664007645100355, + 0.00223914859816432, + 0.04075807332992554, + -0.022065358236432076, + -0.011509940028190613, + 0.013299668207764626, + 0.020904023200273514, + 0.02049039863049984, + 0.017515473067760468, + 0.0017509505851194263, + -0.011223583482205868, + -0.010794049128890038, + 0.031960565596818924, + -0.0007392571424134076, + -0.012217877432703972, + 0.015081441961228848, + 0.013601933605968952, + -0.015574611723423004, + -0.01529620960354805, + -0.006383363623172045, + -0.0003611770807765424, + -0.0014626055490225554, + -0.03202420100569725, + -0.00987134501338005, + -0.013506481423974037, + 0.014134874567389488, + -0.02276534028351307, + -0.010794049128890038, + -0.005878262221813202, + 0.01607573591172695, + -0.01553483959287405, + 0.002795953070744872, + 0.004096488934010267, + -0.018167728558182716, + 0.009449764154851437, + 0.009282723069190979, + -0.01615527831017971, + 0.007890712469816208, + 0.015328026376664639, + 0.00310816103592515, + 0.004390799440443516, + 0.004378868266940117, + 0.009656577371060848, + -0.007397542707622051, + -0.005039078649133444, + -0.01205083541572094, + 0.017229115590453148, + 0.004581703804433346, + 0.00774355698376894, + -0.013609888032078743, + -0.005094759166240692, + 0.005401001777499914, + -0.016051871702075005, + -0.011088360100984573, + -0.013474663719534874, + 0.002877485007047653, + 0.00913954433053732, + 0.00032488536089658737, + -0.001714161830022931, + -0.01353034470230341, + -0.01320421602576971, + 0.002017421182245016, + -7.450985867762938e-5, + -0.01810409314930439, + -0.0028098730836063623, + 0.012806498445570469, + -0.000596576021052897, + -0.013880335725843906, + 0.011700844392180443, + 0.004816357046365738, + -0.015503021888434887, + -0.0030783324036747217, + -0.0017042187973856926, + -0.008304337970912457, + -0.014055331237614155, + 0.005754970014095306, + -0.0032075904309749603, + -0.018724532797932625, + 0.023099424317479134, + -0.009060001000761986, + 0.0046413615345954895, + -0.008264566771686077, + -0.008089571259915829, + -0.03324916958808899, + -0.03859449177980423, + 0.02230398915708065, + 0.013856472447514534, + 0.01695866696536541, + -0.012671275064349174, + 0.011334944516420364, + 0.005731107201427221, + 0.00397717347368598, + -0.02050630748271942, + 0.021667640656232834, + -0.02478574588894844, + 0.003394517581909895, + 0.00041387462988495827, + -0.008471379987895489, + 0.002901348052546382, + -0.019408605992794037, + 0.01754728890955448, + 0.010547463782131672, + -0.010125883854925632, + 0.002591128461062908, + 0.019599510356783867, + -0.02039494551718235, + -0.005671449471265078, + -0.014087148942053318, + 0.001384056406095624, + -0.01281445287168026, + -0.013140581548213959, + -0.015725744888186455, + 0.02115856297314167, + 0.029399266466498375, + -0.02782430499792099, + -0.012321283109486103, + 0.0008401778759434819, + 0.0243880283087492, + -0.012313329614698887, + -0.009417946450412273, + 0.025708450004458427, + -0.003724623005837202, + 0.0014128908514976501, + -0.00495158089324832, + -0.05023965612053871, + 0.03227873891592026, + 0.024133488535881042, + -0.009736120700836182, + -0.028094753623008728, + 0.0040686484426259995, + -0.028078844770789146, + 0.007679922040551901, + 0.02354486659169197, + 0.0035078669898211956, + 0.0008048805175349116, + 0.018724532797932625, + 0.004482274409383535, + 0.02239944040775299, + 0.00438682222738862, + -0.004156146198511124, + 0.006530519109219313, + 0.008049799129366875, + 0.004772608168423176, + -0.03105377033352852, + -0.022701706737279892, + 0.004868060350418091, + 0.004872037563472986, + -0.006474838592112064, + -0.01569392718374729, + -0.012313329614698887, + -0.011366762220859528, + -0.002744249766692519, + 0.007862872444093227, + 0.0064032492227852345, + 0.009394084103405476, + 0.006236208137124777, + 0.005675426684319973, + -0.0007591429748572409, + 0.011422442272305489, + 0.010444057174026966, + -0.021079018712043762, + -0.0017937052762135863, + -0.003310997039079666, + -0.007902643643319607, + 0.0205699410289526, + -0.00952930748462677, + -0.03145148977637291, + -0.003629170823842287, + -0.0003723628760781139, + -0.00650665583088994, + -0.0006890452932566404, + -0.004533977713435888, + -0.01282240729779005, + -0.005615768954157829, + 0.022558528929948807, + 0.021269923076033592, + -0.002163582481443882, + -0.0016912930877879262, + 0.005556111223995686, + -0.0205699410289526, + -0.0052896407432854176, + 0.016815489158034325, + -0.021779002621769905, + 0.02106311172246933, + -0.02496074140071869, + 0.021269923076033592, + 0.0009505444904789329, + 0.022606253623962402, + 0.0022868746891617775, + 0.010730413720011711, + 0.001067871111445129, + -0.00746117765083909, + -0.010794049128890038, + 0.0020283584017306566, + -0.01630641147494316, + 0.00914749875664711, + 0.021492645144462585, + -0.02333805337548256, + 0.006538473069667816, + -0.018915437161922455, + 0.008646375499665737, + -0.005719175562262535, + 0.01238491851836443, + 0.0030365718994289637, + 0.006586199160665274, + -0.0018414313672110438, + 0.004963512532413006, + -0.0017211218364536762, + 0.0062521169893443584, + -0.0026448203716427088, + 0.004935672506690025, + -0.020649485290050507, + 0.010929272510111332, + 0.008710009977221489, + 0.014118965715169907, + -0.0033388370648026466, + 0.013275804929435253, + 0.009012275375425816, + 0.003040549112483859, + -0.023688046261668205, + -0.006574267987161875, + 0.01596437394618988, + -5.2231473091524094e-5, + -0.0030445263255387545, + 0.010802003554999828, + -0.019488150253891945, + -0.014118965715169907, + -0.02125401608645916, + -0.029971979558467865, + -0.0062322309240698814, + -0.006379386410117149, + 0.01091336365789175, + -0.01983814127743244, + 0.016338229179382324, + -0.0026010714937001467, + 0.03328098729252815, + -0.0003032594686374068, + 0.004967489745467901, + -0.011311081238090992, + -0.03153103217482567, + -0.007564583793282509, + 0.007333907764405012, + 0.0004864580405410379, + -0.0002915765217039734, + 0.015685971826314926, + 0.02278124913573265, + 0.006912327371537685, + 0.002245114417746663, + 0.010396331548690796, + -0.01530416402965784, + 0.006848692893981934, + 0.013538298197090626, + -0.009744075126945972, + -0.03614455461502075, + 0.03945356234908104, + -0.023513048887252808, + 0.01205878984183073, + 0.0028695305809378624, + 0.0022729546763002872, + -0.010515647009015083, + 0.004247621167451143, + -0.00719868391752243, + 0.007516857702285051, + 0.004370913840830326, + -0.0006050275405868888, + 0.003979162313044071, + -0.018565446138381958, + -0.02037903666496277, + 0.016608675941824913, + -0.022128993645310402, + 0.01602005399763584, + 0.006590176373720169, + -0.005591906141489744, + 0.01357807032763958, + 0.0014258166775107384, + 0.029558353126049042, + 0.00128064991440624, + 0.007604355923831463, + -0.01846999302506447, + 0.0013015300501137972, + -0.0021476736292243004, + 0.016051871702075005, + -0.008431607857346535, + 0.0047368137165904045, + 0.01552688516676426, + -0.00815320573747158, + 3.302918412373401e-5, + -0.012456507422029972, + -0.0004653292999137193, + 0.008550923317670822, + -0.004072625655680895, + 0.008177069015800953, + 0.023465324193239212, + 0.0072623188607394695, + 0.0021695480681955814, + -0.0013631762703880668, + -0.0067850579507648945, + 0.0011692889966070652, + -0.0026706720236688852, + -0.013061038218438625, + 0.003157875733450055, + -0.029303815215826035, + -0.01619505137205124, + -0.011215629056096077, + 0.014675769954919815, + 0.005568042863160372, + 0.01754728890955448, + -0.008566832169890404, + -0.026551609858870506, + 0.012925813905894756, + -0.011366762220859528, + -0.009577034041285515, + -0.006685628555715084, + 0.002716409508138895, + -0.01604391820728779, + 0.024038037285208702, + -0.019981319084763527, + -0.009569079615175724, + -0.0011275287251919508, + 0.008033890277147293, + -0.00813332013785839, + 0.003030606312677264, + 0.004852151498198509, + 0.006248139776289463, + -0.01062700804322958, + 0.022272171452641487, + -0.01301331166177988, + 0.007298113312572241, + -0.008081616833806038, + 0.009577034041285515, + -0.0034641181118786335, + 0.0013452789280563593, + 0.012520141899585724, + 0.005599860101938248, + 0.016465498134493828, + -0.004589658230543137, + 0.004494206048548222, + 0.008590694516897202, + 0.011072451248764992, + -0.03270827606320381, + 0.004152168985456228, + -0.0034501980990171432, + 0.015614382922649384, + -0.009823618456721306, + 0.006168595980852842, + 0.011175857856869698, + -0.005794741678982973, + 0.02058584988117218, + 0.013172398321330547, + -0.00382604100741446, + 0.015765516087412834, + 0.006077121011912823, + 0.010006568394601345, + 0.018517719581723213, + -0.00833615567535162, + 0.011390624567866325, + -0.01724502444267273, + -0.005158394109457731, + -0.005488499533385038, + 0.012376964092254639, + -0.01571778953075409, + 0.005842467769980431, + -0.002465847646817565, + -0.02371986210346222, + -0.011740616522729397, + -0.009656577371060848, + 0.02822202257812023, + -0.010786094702780247, + 0.006832784041762352, + 0.00291725667193532, + 0.018342724069952965, + 0.013928061351180077, + -0.021842636168003082, + -0.023656228557229042, + -0.010579281486570835, + 0.016815489158034325, + -0.008797507733106613, + -0.027410680428147316, + 0.03270827606320381, + 0.029956070706248283, + 0.0019279348198324442, + -0.013665568083524704, + 0.01897907257080078, + -0.011120176874101162, + 0.004541932139545679, + 0.01372124906629324, + 0.006677674129605293, + -0.007302090525627136, + 0.007576515432447195, + -0.015821196138858795, + -0.008550923317670822, + -0.016218913719058037, + -0.001966712297871709, + -0.00971225742250681, + -0.0038339952006936073, + 0.007210615556687117, + -0.0121940141543746, + -0.02012449875473976, + -0.012504233978688717, + -0.02876291796565056, + 0.005138508044183254, + 0.020076772198081017, + 0.05377138406038284, + 0.037417247891426086, + -0.007234478835016489, + 0.0061049615032970905, + 0.005420887377113104, + -0.039962638169527054, + 0.006733354646712542, + 0.0006815881351940334, + -0.007401519920676947, + 0.01182015985250473, + 0.005528271198272705, + -0.00581462774425745, + 0.01205083541572094, + 0.010722460225224495, + -0.01621095836162567, + 0.019185885787010193, + -0.01734047569334507, + 0.013657613657414913, + 0.009020229801535606, + 0.01791318878531456, + -0.006677674129605293, + 0.004331142175942659, + -0.009553170762956142, + -0.005687358323484659, + 0.01571778953075409, + -0.001817568321712315, + -0.013832609169185162, + -0.0077196937054395676, + -0.010372468270361423, + 0.012066744267940521, + 0.023990310728549957, + -0.009322494268417358, + -0.01714957132935524, + 0.011780387721955776, + -0.012933768332004547, + 0.005357252899557352, + 0.002996800234541297, + 0.005667472258210182, + -0.003179750172421336, + -0.013522390276193619, + -0.01085768360644579, + -0.01611550711095333, + 0.011128131300210953, + -0.031849205493927, + 0.0038101321551948786, + 0.021508553996682167, + -0.012703091837465763, + -0.01353034470230341, + 0.008638421073555946, + -0.003370654536411166, + -0.022272171452641487, + 0.002436018781736493, + 0.008185023441910744, + -0.0035874105524271727, + -0.02534255012869835, + 0.025708450004458427, + 0.0151450764387846, + -0.03655817732214928, + -0.00022669888858217746, + 0.00456977216526866, + 0.0028675422072410583, + -0.003931436222046614, + 0.004772608168423176, + 0.0373217947781086, + 0.009688395075500011, + 0.02448347955942154, + 0.0022252285853028297, + 0.0016366068739444017, + 0.00853501446545124, + 0.006108938716351986, + 0.02908109314739704, + -0.025088010355830193, + -0.02725159376859665, + 0.006264048162847757, + -0.03001970611512661, + -0.015646200627088547, + -0.004732836503535509, + -0.009767938405275345, + -0.023656228557229042, + 0.010125883854925632, + 0.012719000689685345, + -0.008646375499665737, + 0.02936744876205921, + 0.002038301434367895, + -0.01457236334681511, + 0.005754970014095306, + -0.012448552995920181, + -0.002078073099255562, + -0.010030431672930717, + -0.006419158075004816, + 0.00213375361636281, + 0.01697457581758499, + -0.010722460225224495, + -0.006136778742074966, + 0.019583601504564285, + -0.0007412456907331944, + -0.01993359439074993, + -0.004788517020642757, + 0.013068991713225842, + 0.022892611101269722, + -0.01533598080277443, + 0.021492645144462585, + -0.006514610256999731, + 0.024626659229397774, + 0.005695312283933163, + -0.04619884863495827, + 0.018835892900824547, + -0.0013522390509024262, + 0.001257781172171235, + 0.02419712394475937, + -0.009060001000761986, + 0.017579106613993645, + -0.0021675594616681337, + 0.0008973497897386551, + -0.000515043968334794, + 0.010491783730685711, + -0.0014178623678162694, + 0.02163582481443882, + 0.039135389029979706, + 0.021301740780472755, + -0.01143835112452507, + 0.009131590835750103, + 0.019281337037682533, + 0.006610062438994646, + 0.01800864189863205, + -0.0052140746265649796, + 0.009505445137619972, + 0.03114922344684601, + -0.013084900565445423, + -0.01533598080277443, + 0.040439900010824203, + -0.0029271997045725584, + -0.0038956415373831987, + 0.008264566771686077, + 0.001575954956933856, + -0.016433680430054665, + 0.002362441038712859, + 0.00018257711781188846, + -0.0031280468683689833, + -0.011303126811981201, + -0.0030206632800400257, + 0.006486769765615463, + 0.01829499751329422, + -0.012742863968014717, + 0.005349298473447561, + -0.004339096136391163, + -0.010324742645025253, + 0.010300879366695881, + 0.0007427371456287801, + 0.0027044781018048525, + -0.002040290040895343, + -0.019694963470101357, + 0.002245114417746663, + -0.0024678362533450127, + -0.00895659439265728, + 0.003517810022458434, + -0.015860967338085175, + 0.037289977073669434, + 0.013116718269884586, + -0.011159949004650116, + -0.0020860275253653526, + 0.01005429495126009, + 0.016123460605740547, + 0.011748570948839188, + 0.001495417207479477, + -0.002805895870551467, + -0.009060001000761986, + -0.006089052651077509, + 0.008495242334902287, + 0.006176550406962633, + 0.0027343067340552807, + 0.005178279709070921, + 0.00776344258338213, + -0.025517545640468597, + 0.011175857856869698, + -0.025088010355830193, + -0.011175857856869698, + -0.02841292694211006, + -0.022813066840171814, + 0.005349298473447561, + 0.03097422793507576, + 0.025756176561117172, + 0.01534393522888422, + 0.0012677240883931518, + 0.005544180050492287, + 0.0018951231613755226, + 0.008216840215027332, + 0.0053850929252803326, + 0.00853501446545124, + 0.0022053427528589964, + -0.01395987905561924, + 0.0015431432984769344, + 0.007512880954891443, + -0.010523601435124874, + -0.013864426873624325, + 0.00681687518954277, + -0.0034561636857688427, + 0.017006393522024155, + -0.025517545640468597, + -0.006343591958284378, + -0.01905861496925354, + -0.0051305536180734634, + -0.001994552556425333, + -0.018899528309702873 + ], + "db03df28-87cf-49a7-8db2-91abd8f871eb": [ + -0.009894928894937038, + 0.00852263905107975, + -0.0216677263379097, + -0.00371962646022439, + -0.045473337173461914, + 0.00143819535151124, + 0.014820724725723267, + 0.007182851433753967, + -0.03472614288330078, + 0.028355831280350685, + -0.01999208889901638, + 0.04295988008379936, + -0.01196780800819397, + -0.0012576309964060783, + -0.009981599636375904, + 0.006991453003138304, + -0.05223366618156433, + 0.03917524963617325, + -0.01825867034494877, + -0.003643789328634739, + 0.048593487590551376, + 0.002464703982695937, + -0.03333940729498863, + 0.01519629918038845, + 0.0024827602319419384, + -0.02549569122493267, + -0.0011267217341810465, + -0.005290536675602198, + -0.040504202246665955, + 0.013867344707250595, + 0.009858815930783749, + -0.01413458026945591, + 0.010934979654848576, + 0.00729841273277998, + 0.025149008259177208, + -0.04226651042699814, + -0.009519354440271854, + 0.05656721070408821, + -0.01260339468717575, + 0.014669050462543964, + -0.012430052272975445, + -0.005705834832042456, + 0.016164124011993408, + 0.0032953000627458096, + -0.025827929377555847, + 0.024975666776299477, + 0.014546266756951809, + -0.010566627606749535, + 0.017854206264019012, + -0.005066636949777603, + -0.006088631227612495, + -0.01850423775613308, + -0.01768086478114128, + 0.03068150021135807, + 0.0008044143323786557, + 0.016770821064710617, + -0.002645268337801099, + 0.04535777494311333, + 0.010516069829463959, + 0.0033675257582217455, + 0.016323020681738853, + -0.011707794852554798, + 0.02062767557799816, + 0.01590411178767681, + -0.002204691059887409, + -0.036950696259737015, + 0.02361782267689705, + 0.010848307982087135, + -0.045617785304784775, + -0.03894412890076637, + 0.019732076674699783, + 0.04712008312344551, + -0.013513438403606415, + -0.016034116968512535, + -0.020020978525280952, + 0.01438014768064022, + 0.05393819510936737, + -0.031692661345005035, + 0.0020349605474621058, + 0.00697700772434473, + -0.020512115210294724, + 0.023068906739354134, + -0.011512785218656063, + -0.007778713945299387, + 0.03475503250956535, + 0.015282969921827316, + -0.03752850368618965, + -0.028890302404761314, + -0.03189489245414734, + -0.03368609398603439, + 0.0329638347029686, + -0.00975047703832388, + 0.02904919907450676, + -0.02201440930366516, + -0.0011492923367768526, + -0.003172516357153654, + 0.07488366216421127, + 0.0283413864672184, + 0.014921841211616993, + -0.0283413864672184, + -0.01118776947259903, + 0.025770150125026703, + -0.051973652094602585, + 0.034003887325525284, + -0.0014806280378252268, + -0.014372925274074078, + 0.002881807740777731, + -0.029699230566620827, + -0.013809564523398876, + 0.07182128727436066, + 0.03270382061600685, + -0.014647383242845535, + 0.012141149491071701, + 0.03128819540143013, + -0.019573180004954338, + -0.07089680433273315, + -0.016380801796913147, + -0.030912622809410095, + 0.014791835099458694, + -0.06107409670948982, + 0.00196273485198617, + 0.056191638112068176, + 0.01336898747831583, + -0.016814155504107475, + -0.021653281524777412, + -0.011852246709167957, + -0.0013298566918820143, + 0.017478633671998978, + 0.008854877203702927, + 0.019197605550289154, + -0.012393939308822155, + 0.008327629417181015, + -0.010501625016331673, + -0.0037593506276607513, + -0.01104331761598587, + 0.017016388475894928, + 0.0029757011216133833, + 0.03853966295719147, + -0.04787123203277588, + 0.044693298637866974, + -0.058329518884420395, + -0.008074839599430561, + -0.031230416148900986, + 0.010414954274892807, + -0.020468778908252716, + 0.016886381432414055, + -0.016453027725219727, + 0.039926398545503616, + 0.0037521279882639647, + 0.007677597925066948, + -0.03440834954380989, + -0.0030768171418458223, + 0.046715617179870605, + 0.0008630977827124298, + -0.0031165413092821836, + -0.0016783459577709436, + -0.0018345342250540853, + -0.0032122405245900154, + 0.0283413864672184, + 0.002881807740777731, + 0.0016440387116745114, + -0.03637288883328438, + 0.032010454684495926, + 0.015008511953055859, + 0.01329676155000925, + 0.022317757830023766, + 0.03723959997296333, + 0.0005069345352239907, + -0.01441626064479351, + 0.021898848935961723, + 0.007684820331633091, + -0.017001943662762642, + 0.02176884189248085, + -0.002453870140016079, + 0.019948754459619522, + -0.02067101188004017, + 0.029959242790937424, + 0.016770821064710617, + 0.0303925983607769, + -0.05191587284207344, + 0.0017559886910021305, + -0.05737613886594772, + -0.013303983956575394, + 0.017276400700211525, + 0.01750752329826355, + 0.0502113439142704, + 0.026232393458485603, + -0.0021126032806932926, + 0.006496706511825323, + 0.020728791132569313, + 0.02993035316467285, + 0.023285582661628723, + 0.021783288568258286, + 0.031230416148900986, + -0.0018444652669131756, + -0.03752850368618965, + 0.017074167728424072, + 0.01477016694843769, + 0.003961582668125629, + 0.02887585759162903, + 0.0014761139173060656, + -0.05177142098546028, + -0.04541555419564247, + 0.023805608972907066, + -0.01109387632459402, + 0.0052399784326553345, + -0.01525407936424017, + -0.01189558207988739, + 0.03253047913312912, + -0.05099138244986534, + 0.025307904928922653, + -0.03331051766872406, + 0.029496997594833374, + -0.0352172777056694, + -0.036950696259737015, + 0.003972416743636131, + 0.0007290287176147103, + 0.018735360354185104, + 0.04605114087462425, + -0.00033381840330548584, + 0.018345341086387634, + -0.006027239374816418, + 0.008999329060316086, + -0.022895565256476402, + -0.03715292736887932, + -0.00663032429292798, + -0.027749134227633476, + 0.012141149491071701, + -0.028673624619841576, + 0.0023960894905030727, + 0.05194476246833801, + 0.007605371996760368, + -0.015109628438949585, + -0.03735516220331192, + -0.016568588092923164, + -0.023733383044600487, + 0.010321060195565224, + -0.00624030502513051, + -0.005066636949777603, + -0.028009148314595222, + 0.013029525987803936, + 0.015152963809669018, + 0.020945468917489052, + -0.008688758127391338, + 0.044548846781253815, + 0.028182489797472954, + -0.014163470827043056, + 0.022519990801811218, + 0.025365686044096947, + -0.05500713363289833, + 0.005601107142865658, + 0.014199583791196346, + 0.0063161421567201614, + -0.03651734068989754, + -0.03019036538898945, + 0.04553111642599106, + -0.029525889083743095, + -0.01821533590555191, + -0.015918556600809097, + -0.03186600282788277, + -0.004174648784101009, + 0.0035444789100438356, + 0.006922838743776083, + -0.0012377689126878977, + 0.05518047511577606, + -0.01768086478114128, + 0.015124073252081871, + -0.0566827729344368, + 0.0018525905907154083, + 0.031172635033726692, + -0.023978950455784798, + -0.022967789322137833, + -0.009331567212939262, + -0.02020876668393612, + -0.015672989189624786, + -0.026319066062569618, + 0.028428057208657265, + -0.012986190617084503, + 0.02709910273551941, + -0.008616532199084759, + 0.0030479268170893192, + -0.0009768533054739237, + -0.02486010454595089, + 0.009974377229809761, + -0.04758232831954956, + 0.008392632938921452, + 0.003972416743636131, + 0.01557187270373106, + -0.06009182706475258, + -0.06165190413594246, + -0.008435968309640884, + -0.032299358397722244, + 0.03469725325703621, + 0.008862100541591644, + 0.03134597837924957, + 0.004290210083127022, + 0.010364395566284657, + 0.010342728346586227, + 0.003013619687408209, + 0.01899537444114685, + -0.039724163711071014, + 0.004217984154820442, + 0.024368969723582268, + -0.031172635033726692, + -0.0030172308906912804, + -0.007096180226653814, + 0.04801568016409874, + 0.0435376837849617, + -0.03255936875939369, + -0.011346666142344475, + 0.0137590067461133, + 0.004322711378335953, + -0.0009308094158768654, + -0.002990146167576313, + 0.0014011797029525042, + 0.016453027725219727, + 0.02929476648569107, + -0.01223504263907671, + -0.012011143378913403, + -0.019703185185790062, + 0.03374387323856354, + 0.01034995075315237, + -0.039117470383644104, + -0.027084657922387123, + 0.008717648684978485, + -0.04740898683667183, + 0.01694416254758835, + 0.029525889083743095, + -0.022780003026127815, + -0.017449742183089256, + -0.012466165237128735, + -0.025770150125026703, + -0.013968461193144321, + -0.021494384855031967, + -0.025149008259177208, + -0.03738405182957649, + -0.0055288816802203655, + -0.05078915134072304, + -0.019515398889780045, + -0.01044384390115738, + -0.028355831280350685, + 0.03926192224025726, + 0.00298292376101017, + 0.003976027946919203, + 0.033223848789930344, + 0.010667744092643261, + -0.017103059217333794, + 0.02624684013426304, + -0.02325669303536415, + -0.012444498017430305, + 0.0007931290892884135, + -0.01438014768064022, + 0.00335127511061728, + 0.01814310997724533, + 0.04087977856397629, + -0.0176086388528347, + -0.018518684431910515, + -0.021581055596470833, + 0.008298738859593868, + -0.02332891896367073, + -0.011483894661068916, + -0.03562174364924431, + -0.029641449451446533, + -0.027720244601368904, + -0.018793141469359398, + -0.004654949996620417, + -0.030305927619338036, + -0.00039769307477399707, + 0.014336812309920788, + -0.00778593635186553, + -0.01402624137699604, + 0.023068906739354134, + 0.045328885316848755, + -0.026160169392824173, + -0.03732626885175705, + -0.006388368085026741, + 0.04772678017616272, + -0.01736307144165039, + -0.019298721104860306, + 0.00497996574267745, + 0.00936045777052641, + 0.012711732648313046, + -0.015297414734959602, + -0.04922907426953316, + 0.016424136236310005, + 0.00971436407417059, + 0.005853897426277399, + -0.016597477719187737, + -0.014921841211616993, + 0.00919433869421482, + -0.01626523956656456, + 0.038799677044153214, + -0.022808892652392387, + 0.013202868402004242, + -0.024383414536714554, + 0.022202197462320328, + 0.008074839599430561, + 0.00887654535472393, + -0.014242919161915779, + 0.0024213683791458607, + 0.009064332582056522, + -0.003983250353485346, + -0.009085999801754951, + 0.012502278201282024, + 0.030017023906111717, + -0.04385547712445259, + -0.01811421848833561, + -0.013650667853653431, + -0.008378187194466591, + 0.04844903573393822, + -0.010826640762388706, + 0.01655414327979088, + -0.014921841211616993, + -0.02325669303536415, + 0.050298016518354416, + -0.02276555821299553, + 0.03319495543837547, + 0.037095148116350174, + -0.05191587284207344, + -0.0324438102543354, + 0.020656565204262733, + 0.04217984154820442, + -0.0071395160630345345, + 0.02873140573501587, + 0.005994737613946199, + 0.039146360009908676, + 0.05159807950258255, + 0.017030833289027214, + -0.03455280140042305, + -0.01518185343593359, + 0.012827293947339058, + 0.00561194121837616, + -0.011642791330814362, + -0.017204174771904945, + 0.002257054904475808, + -0.04336434230208397, + -0.0022624717094004154, + -0.010393286123871803, + -0.00666643725708127, + -0.021191036328673363, + 0.0361417680978775, + 0.040504202246665955, + 0.010682188905775547, + -0.002067462308332324, + 0.0018227974651381373, + -0.009093222208321095, + -0.04229540377855301, + 0.008399855345487595, + -0.0019988478161394596, + -0.004828291945159435, + -0.007858161814510822, + 0.0031833501998335123, + -0.04431772232055664, + 0.02904919907450676, + -0.0014472235925495625, + -0.008602087385952473, + -0.009389348328113556, + -0.03206823393702507, + -0.003558924188837409, + 0.024123402312397957, + -0.007265910971909761, + -0.015716323629021645, + 0.025871265679597855, + -0.0252067893743515, + 0.0012458942364901304, + -0.03487059473991394, + 3.718497828231193e-5, + 0.016886381432414055, + -0.003446974093094468, + -0.029814790934324265, + -0.010963869281113148, + 0.004503275733441114, + -0.0033837766386568546, + -0.0017289039678871632, + -0.01580299437046051, + 0.023906724527478218, + 0.006742274388670921, + -0.00291250366717577, + -0.003976027946919203, + 0.002596515929326415, + -0.010544960387051105, + -0.03796185553073883, + -0.009223229251801968, + 0.0014950730837881565, + 0.031172635033726692, + -0.009974377229809761, + 0.014965176582336426, + 0.01044384390115738, + -0.013657890260219574, + -0.020959913730621338, + 0.050760261714458466, + -0.008334851823747158, + 0.0025333184748888016, + 0.03273271396756172, + -0.014445151202380657, + -0.027705799788236618, + 0.011837800964713097, + -0.009649360552430153, + -0.01297896821051836, + -0.01191724929958582, + 0.019833192229270935, + -0.02186995930969715, + 0.025827929377555847, + 0.013173977844417095, + 0.01294285524636507, + -0.034639474004507065, + -0.012083368375897408, + -0.0179697684943676, + -0.00582500733435154, + -0.010465512052178383, + -0.018128665164113045, + 0.02805248275399208, + 0.03302161395549774, + 0.0029702840838581324, + -0.020468778908252716, + -0.00781482644379139, + -0.01368678081780672, + 0.0027788858860731125, + 0.01711750403046608, + -0.008551529608666897, + 0.018128665164113045, + -0.010003266856074333, + 0.004181871190667152, + 0.02052656002342701, + 0.009100445546209812, + -0.022245531901717186, + -0.016669703647494316, + 0.011765575967729092, + 0.011888359673321247, + -0.027315780520439148, + -0.016467472538352013, + 0.003026259131729603, + -0.0012558252783492208, + 0.0073670269921422005, + 0.0071214595809578896, + -0.015080737881362438, + 0.002907086629420519, + 0.012242265045642853, + 0.004640504717826843, + 0.04590668901801109, + -0.028312496840953827, + 0.014430705457925797, + -0.013318429701030254, + -0.03097040392458439, + 0.027749134227633476, + 0.021422158926725388, + -0.03926192224025726, + 0.029395882040262222, + -0.010523292236030102, + 0.0028962527867406607, + -0.013383432291448116, + 0.025293460115790367, + -0.0015086154453456402, + -0.011765575967729092, + -0.0019049543188884854, + -0.05159807950258255, + 0.0006608656840398908, + -0.011252772994339466, + -0.04972020909190178, + -0.013181200250983238, + 0.02418118342757225, + 0.01846090331673622, + 0.0269546527415514, + 0.007525923661887646, + -0.010342728346586227, + 0.019226495176553726, + -0.010667744092643261, + 0.02179773338139057, + 0.014156248420476913, + -0.009829925373196602, + 0.0069264499470591545, + 0.007395917549729347, + 0.02681020088493824, + -0.015788549557328224, + -0.028110263869166374, + 0.026059051975607872, + 0.006355866324156523, + 0.03920413926243782, + 0.020049870014190674, + -0.014199583791196346, + 0.027720244601368904, + -0.025481246411800385, + -0.009671028703451157, + -0.022664442658424377, + 0.016958607360720634, + -0.004878849722445011, + -0.029424773529171944, + -0.026189059019088745, + 0.0027373561169952154, + 0.0156585443764925, + 0.02507678233087063, + 0.00933879055082798, + 0.035101715475320816, + -0.020974358543753624, + -0.003340441267937422, + 0.025149008259177208, + -0.03284827247262001, + -0.027778025716543198, + 0.016467472538352013, + -0.017478633671998978, + -0.018056439235806465, + 0.03177933394908905, + 0.030421487987041473, + -0.014264586381614208, + -0.0058683427050709724, + 0.005770837888121605, + -0.0137590067461133, + 0.01963096112012863, + -0.0016629979945719242, + 0.006157245486974716, + -0.03250158950686455, + 0.013982906006276608, + 0.02585682086646557, + -0.02673797495663166, + 0.024383414536714554, + -0.006893948186188936, + -0.002674158662557602, + 0.035563960671424866, + -0.0023997006937861443, + -0.00855875201523304, + 0.018980927765369415, + -0.02500455640256405, + 0.05286925286054611, + -0.013896235264837742, + 0.02454231120646, + -0.00631253095343709, + 0.010436621494591236, + -0.027185773476958275, + -0.022418875247240067, + -0.01643858104944229, + -0.007067290134727955, + 0.0023563653230667114, + 0.02887585759162903, + -0.03281938284635544, + 0.02865917980670929, + -0.0019410671666264534, + 0.03747072070837021, + 0.024730099365115166, + -0.021682171151041985, + 0.008782652206718922, + -0.011671681888401508, + -0.02883252128958702, + -0.0018191862618550658, + 0.03423500806093216, + -0.0016295935492962599, + -0.0063847568817436695, + -0.03458169102668762, + 0.004864404443651438, + 0.02887585759162903, + 0.015167408622801304, + -0.0435376837849617, + -0.0025333184748888016, + 0.011729463003575802, + 0.01694416254758835, + -0.010024935007095337, + -0.04044642299413681, + -0.02023765631020069, + -0.015326305292546749, + 0.009497687220573425, + -0.0033783596009016037, + -0.003389193443581462, + -0.008645422756671906, + -0.03264604136347771, + -0.0008563266019336879, + 0.015080737881362438, + 0.01619301363825798, + 0.0017884902190417051, + 0.015759659931063652, + -0.015268524177372456, + 0.01402624137699604, + 0.004311877768486738, + -0.015788549557328224, + 0.006352255120873451, + 0.007988168857991695, + 0.0038785231299698353, + -0.020223211497068405, + 0.010559405200183392, + -0.018793141469359398, + -0.009281009435653687, + -0.038973018527030945, + -0.018952038139104843, + -0.009952709078788757, + -0.0324438102543354, + 0.015817441046237946, + 0.03146154060959816, + -0.015080737881362438, + -0.00988770555704832, + 0.0036474005319178104, + 0.010487179271876812, + 0.0009777561062946916, + 0.01981874741613865, + -0.015369640663266182, + -0.009143780916929245, + 0.0016729290364310145, + -0.0154274208471179, + -0.004152981098741293, + -0.0007335428381338716, + 0.0012061700690537691, + 0.030132584273815155, + -0.01963096112012863, + -0.013282316736876965, + -0.009837147779762745, + -0.018013102933764458, + -0.014661828055977821, + 0.0076559302397072315, + 0.019732076674699783, + -0.016467472538352013, + -0.02435452491044998, + 0.0137590067461133, + -0.018619799986481667, + 0.005564994644373655, + -0.00026475253980606794, + 0.01906759850680828, + -0.004524943418800831, + -0.013065638951957226, + 0.005344705656170845, + 9.259567741537467e-5, + -0.002990146167576313, + -0.02990146353840828, + -0.009634915739297867, + -0.02617461420595646, + 0.04151536524295807, + 0.011707794852554798, + -0.02464342676103115, + -0.037557393312454224, + -0.005008856300264597, + 0.006691716145724058, + -0.034957267343997955, + 0.027301335707306862, + -0.0028800019063055515, + 0.026362400501966476, + -0.00196273485198617, + -0.030565939843654633, + 0.0006455176626332104, + -0.017406407743692398, + -0.01228560134768486, + -0.011101098731160164, + -0.002298584673553705, + 0.009829925373196602, + -0.02179773338139057, + 0.008378187194466591, + 0.006810888648033142, + 0.01042217668145895, + -0.016640814021229744, + 0.04489552974700928, + 0.014004574157297611, + 0.023458926007151604, + -0.0022498322650790215, + 0.03050815872848034, + 0.0260301623493433, + 0.06667881458997726, + -0.01864868961274624, + 0.021812178194522858, + 0.014069576747715473, + -5.151727600605227e-5, + -0.008825987577438354, + -0.0070853466168046, + 0.015138518065214157, + -0.014647383242845535, + 0.010176609270274639, + 0.012798403389751911, + -0.008854877203702927, + 0.017059722915291786, + -0.005095527041703463, + -0.014322367496788502, + -0.018663134425878525, + -0.019009819254279137, + 0.016886381432414055, + 0.03504393622279167, + -0.030479269102215767, + 0.027229109779000282, + 0.018908701837062836, + -0.003340441267937422, + 0.02159550040960312, + 0.006175301969051361, + 0.0031237639486789703, + 0.013007858768105507, + -0.008443190716207027, + -0.05795394629240036, + 0.015586317516863346, + 0.009649360552430153, + -0.03394610434770584, + 0.015528537333011627, + -0.02091657929122448, + 0.012292823754251003, + 0.005063025280833244, + 0.05284036323428154, + 0.011462227441370487, + -0.010046602226793766, + -0.003817131044343114, + -0.007901497185230255, + 0.00932434480637312, + -0.026290174573659897, + -0.0003554861468728632, + 0.006301697343587875, + -0.005304981488734484, + 0.0008355617173947394, + -0.028572509065270424, + -0.01580299437046051, + -0.013282316736876965, + -0.002881807740777731, + -0.0424109622836113, + 0.038684114813804626, + 0.006420869845896959, + 0.009526576846837997, + -0.020584341138601303, + -0.012321713380515575, + 0.010804972611367702, + 0.0033675257582217455, + 0.013535106554627419, + -0.003268215339630842, + -0.0008495554211549461, + -0.0068578352220356464, + 0.028182489797472954, + -0.0032429364509880543, + 0.008710426278412342, + 0.01406235434114933, + -0.0022552493028342724, + -0.005438599269837141, + -0.009967153891921043, + 0.022101081907749176, + 0.025221234187483788, + 0.011339443735778332, + 0.03143264725804329, + -0.04079310595989227, + -0.0055288816802203655, + 0.026319066062569618, + -0.033859435468912125, + 0.029872572049498558, + 0.030103694647550583, + 0.005478323437273502, + -0.0070528448559343815, + -0.02364671230316162, + 0.028254715725779533, + -0.010414954274892807, + 0.033079396933317184, + -0.02230331301689148, + -0.0022678887471556664, + -0.03770184516906738, + 0.04194871708750725, + 0.00827707163989544, + -0.03021925687789917, + -0.0260301623493433, + -0.025582361966371536, + 0.006760330870747566, + -0.006066963542252779, + 0.028846966102719307, + -0.019616514444351196, + 0.01711750403046608, + -0.0036347610875964165, + 0.0007470851414836943, + 0.011404446326196194, + -0.012538391165435314, + 0.003262798534706235, + -0.01495073176920414, + 0.009244896471500397, + -0.028139153495430946, + 0.025120116770267487, + 0.012401161715388298, + 0.023820053786039352, + 0.015774104744195938, + 0.0070528448559343815, + 0.0033603033516556025, + -0.04059087485074997, + -0.0023256693966686726, + -0.005532492883503437, + 0.0024213683791458607, + -0.014683496206998825, + -0.00774982338771224, + 0.019082045182585716, + 0.006012794096022844, + 0.00022818824800197035, + 0.004752454813569784, + 0.016207460314035416, + -0.002365393564105034, + -0.040648654103279114, + -0.03270382061600685, + -0.03270382061600685, + 0.00505219167098403, + -0.014221251010894775, + 0.0059694587253034115, + 0.0002751349820755422, + 0.02108992077410221, + 0.0011366527760401368, + -0.03856855258345604, + -0.005770837888121605, + 0.025669032707810402, + -0.006810888648033142, + -0.008862100541591644, + 0.0049871886149048805, + 0.01189558207988739, + -0.015860775485634804, + -0.025163453072309494, + -0.04165981709957123, + 0.006774775683879852, + -0.023632267490029335, + -0.0026669360231608152, + -0.036170657724142075, + -0.016005227342247963, + -0.032299358397722244, + -0.006200580857694149, + -0.020295437425374985, + -0.02727244421839714, + 0.008854877203702927, + 0.013831231743097305, + -0.05220477655529976, + 0.02478787861764431, + 0.02198551967740059, + 0.0030461212154477835, + 0.01609189808368683, + 0.018330896273255348, + 0.007533146068453789, + 0.010588295757770538, + -0.018374232575297356, + 0.01399012841284275, + 0.0017993241781368852, + 0.022996680811047554, + -0.0009407404577359557, + -0.009902151301503181, + -0.027619129046797752, + 0.0004297432315070182, + -0.00921600591391325, + 0.022823339328169823, + 0.022649995982646942, + 0.01228560134768486, + -0.010241611860692501, + 0.011108321137726307, + 0.027619129046797752, + 0.025582361966371536, + 0.00045457083615474403, + -0.01146944984793663, + -0.010934979654848576, + -0.0013145087286829948, + -0.026001272723078728, + 0.04012862965464592, + -0.01557187270373106, + 0.015138518065214157, + 0.004412993788719177, + -0.03579508513212204, + -0.026044607162475586, + -0.042699865996837616, + -0.00010388094960944727, + 0.01525407936424017, + -0.02276555821299553, + 0.00919433869421482, + -0.014820724725723267, + -0.013513438403606415, + 0.031085964292287827, + 0.015615208074450493, + 0.008212068118155003, + 0.023054461926221848, + 0.031548209488391876, + -0.024672318249940872, + -0.023848945274949074, + -0.0051208059303462505, + 0.03966638445854187, + -0.005543326493352652, + 0.020049870014190674, + 0.017449742183089256, + 0.019515398889780045, + -0.010270502418279648, + -0.01570187881588936, + 0.004041031002998352, + -0.0008937937091104686, + -0.05890732631087303, + 0.024383414536714554, + -0.03628621995449066, + -0.0007186462753452361, + -0.010501625016331673, + 0.01694416254758835, + -0.015672989189624786, + -0.007258688565343618, + -0.009295454248785973, + -0.014690718613564968, + -0.0030984848272055387, + -0.006973396521061659, + -0.009577135555446148, + -0.010848307982087135, + -0.0019699574913829565, + -0.008139842189848423, + 0.018403122201561928, + -0.020252101123332977, + -0.009114890359342098, + -0.003483087057247758, + -0.0036040651611983776, + 0.038799677044153214, + -0.011418892070651054, + -0.023733383044600487, + 0.018273115158081055, + -0.028962528333067894, + 0.015210743993520737, + -0.027936922386288643, + -0.006420869845896959, + 0.007395917549729347, + 0.01872091554105282, + -0.019096489995718002, + -0.010024935007095337, + -0.011592233553528786, + -0.021147701889276505, + -0.012401161715388298, + -0.008435968309640884, + -0.010696634650230408, + -0.008602087385952473, + 0.02237553894519806, + 0.011317775584757328, + 0.004268541932106018, + -0.0004694673989433795, + 0.004120479337871075, + 0.003961582668125629, + 0.020425444468855858, + 0.012220597825944424, + 0.006160856690257788, + -0.034928373992443085, + -0.0020457946229726076, + 0.024686763063073158, + 0.03299272432923317, + -0.0013226341689005494, + -0.039579715579748154, + -0.02016543038189411, + 0.0036582346074283123, + -0.04397103935480118, + -0.026896871626377106, + -0.025929046794772148, + 0.01136111095547676, + 0.0016548726707696915, + 0.013889012858271599, + 0.005283313803374767, + 0.011707794852554798, + 0.029251430183649063, + 0.021826623007655144, + -0.03212601691484451, + -0.006821722723543644, + 0.013484548777341843, + -0.005633608903735876, + -0.007377861067652702, + -0.03328162804245949, + 0.001093317405320704, + -0.05809839814901352, + -0.01807088404893875, + 0.014112912118434906, + 0.012227820232510567, + 0.006724217906594276, + -0.01368678081780672, + 0.004124090541154146, + 0.0009678251226432621, + 0.005593884736299515, + 0.0024033118970692158, + 0.013997351750731468, + 0.014979621395468712, + -0.00930267758667469, + 0.022433320060372353, + -0.01636635698378086, + 0.011382779106497765, + -0.017478633671998978, + 0.0037810183130204678, + 0.010747192427515984, + -0.008479303680360317, + -0.0003812165523413569, + -0.0018923147581517696, + 0.041457582265138626, + 0.007793158758431673, + 0.009454350918531418, + 0.04177537560462952, + -0.03747072070837021, + 0.04414438083767891, + -0.01104331761598587, + 0.011996697634458542, + 0.02737356163561344, + -0.003595036920160055, + -0.01782531663775444, + -0.006662826053798199, + 0.0036474005319178104, + -0.009757699444890022, + 0.011772798374295235, + 0.004954686854034662, + 0.015470757149159908, + 0.013397878035902977, + 0.01757974922657013, + 0.008818764239549637, + 0.005666110664606094, + -0.011209437623620033, + -0.0012802014825865626, + -0.00747536588460207, + 0.01765197515487671, + -0.02155216597020626, + -0.0002573042584117502, + 0.024903440847992897, + 0.010581073351204395, + -0.022953344509005547, + 0.017478633671998978, + -0.008421523496508598, + -0.002518873196095228, + 0.025539027526974678, + 0.010638853535056114, + 0.01076163724064827, + -0.00919433869421482, + -0.00014704711793456227, + 0.056451648473739624, + 0.015470757149159908, + -0.012877851724624634, + 0.01604856364428997, + 0.0036365666892379522, + -0.007771491073071957, + 0.0017397379269823432, + 0.016525253653526306, + 0.025669032707810402, + -0.007511478383094072, + -0.014156248420476913, + 0.008103730157017708, + 0.0011835995828732848, + 0.024730099365115166, + -0.0005137056577950716, + 0.011462227441370487, + 0.03747072070837021, + 0.004116868134588003, + -0.006796443369239569, + -0.011390001513063908, + -0.012834516353905201, + 0.004142147023230791, + 0.0048246802762150764, + -0.004564667586237192, + -0.01626523956656456, + -0.0359395369887352, + 0.028789186850190163, + 0.00855875201523304, + -0.028456946834921837, + 0.002959450241178274, + 0.011888359673321247, + 0.008298738859593868, + 0.01658303290605545, + 0.019414283335208893, + -0.026059051975607872, + 0.02737356163561344, + 0.027229109779000282, + 0.018619799986481667, + 0.010270502418279648, + 0.005001633428037167, + 0.006435314659029245, + -0.0019356502452865243, + -0.009057109244167805, + -0.016539698466658592, + 0.006644769571721554, + 0.009418238885700703, + 0.02457120269536972, + 0.004831903148442507, + -0.0011619317810982466, + -0.013506215997040272, + 0.014112912118434906, + -0.008732093498110771, + -0.009223229251801968, + -0.0018047410994768143, + -0.024137847125530243, + 5.1489063480403274e-5, + -0.00814706552773714, + -0.012357826344668865, + -0.017709754407405853, + -0.019154271110892296, + 0.000755210523493588, + 0.026087943464517593, + -0.0044527179561555386, + -0.0465133860707283, + -0.025047892704606056, + 0.0020060704555362463, + 0.00016634493658784777, + -0.017464186996221542, + -0.013824009336531162, + -0.0027915253303945065, + -0.015282969921827316, + 0.014539044350385666, + -0.004564667586237192, + 0.009815480560064316, + -0.007533146068453789, + 0.016611924394965172, + 0.01950095407664776, + -0.024267854169011116, + 0.010595518164336681, + -0.02943921834230423, + -0.01811421848833561, + 0.023025570437312126, + 0.005485546309500933, + 0.004106034059077501, + -0.009504909627139568, + 0.01729084551334381, + 0.01107943058013916, + -0.005763615481555462, + -0.0028872245457023382, + -0.0424109622836113, + 0.006272806786000729, + 0.02059878595173359, + 0.017810871824622154, + -0.010819418355822563, + -0.016279684379696846, + -0.008862100541591644, + -4.2489056795602664e-5, + 0.007424807641655207, + 0.005911678075790405, + 0.0027138828299939632, + -0.03796185553073883, + -0.013108974322676659, + 0.009584357962012291, + 0.010089937597513199, + 0.012068923562765121, + -0.018171999603509903, + -0.02776358090341091, + 0.020252101123332977, + -0.00841430015861988, + -0.011960584670305252, + 0.001960929250344634, + 0.003929080907255411, + -0.0077570462599396706, + -0.010869976133108139, + -0.008789874613285065, + -0.014625715091824532, + -0.01609189808368683, + -0.006897559389472008, + 0.021364377811551094, + -0.007096180226653814, + -0.009634915739297867, + 0.0012738817604258657, + -0.011837800964713097, + 0.005373596213757992, + 0.011259995400905609, + 0.0003344955330248922, + 0.011158878915011883, + 0.011086652986705303, + -0.014177915640175343, + -0.016323020681738853, + 0.015918556600809097, + 0.003065983299165964, + -0.007872607558965683, + 0.010219944640994072, + 0.02493233047425747, + -0.009374902583658695, + 0.020396552979946136, + -0.040706437081098557, + -0.021046584472060204, + -0.006540042348206043, + 0.006431703455746174, + -0.00813261978328228, + -0.003405444324016571, + -0.010581073351204395, + 0.005250812508165836, + 0.006135577801615, + -0.010039379820227623, + 0.03305050730705261, + -0.0019410671666264534, + -0.037904076278209686, + 0.010566627606749535, + 0.008818764239549637, + 0.0020187098998576403, + -0.0252067893743515, + -0.005796116776764393, + -0.017810871824622154, + -0.008392632938921452, + -0.02435452491044998, + 0.017160840332508087, + -0.015066292136907578, + 0.022505545988678932, + -0.001754182972945273, + -0.0063919792883098125, + -0.02656463347375393, + -0.011180547066032887, + -0.005388041492551565, + -0.003849632805213332, + -0.024484530091285706, + -0.009562689810991287, + 0.023848945274949074, + -0.0017270983662456274, + 0.003340441267937422, + -0.001717167324386537, + -0.01487850584089756, + -0.005890010390430689, + -0.004044642206281424, + 0.02727244421839714, + -0.02244776487350464, + 0.028890302404761314, + -0.016250794753432274, + -0.022895565256476402, + -0.04307543858885765, + -0.011288885958492756, + 0.012119481340050697, + 0.0009876871481537819, + 0.009201561100780964, + -0.011635568924248219, + -0.02055544964969158, + 6.325395952444524e-5, + -0.02454231120646, + 0.01196780800819397, + -0.042526524513959885, + -0.005409709177911282, + 0.03738405182957649, + 0.0026290174573659897, + -0.011281662620604038, + 0.004658561199903488, + -0.004084366373717785, + 0.00880431942641735, + -0.012538391165435314, + 0.01342676766216755, + 0.0048246802762150764, + 0.0014941702829673886, + -0.01487850584089756, + 0.02293889969587326, + -0.031692661345005035, + -0.011462227441370487, + 3.272729372838512e-5, + 0.005890010390430689, + -0.025697924196720123, + -0.011686127632856369, + 0.010154941119253635, + -0.01867758110165596, + 0.002751801162958145, + 0.007117848377674818, + 0.009057109244167805, + -0.007323691621422768, + -0.012473387643694878, + 0.026969097554683685, + -0.0012693676399067044, + -0.007233409211039543, + -0.0046910629607737064, + -0.009476019069552422, + -0.019472064450383186, + -0.018316451460123062, + -0.0144523736089468, + 0.02191329374909401, + 0.010566627606749535, + 0.018128665164113045, + 0.027778025716543198, + 0.02702687680721283, + 0.0027843029238283634, + 0.006186136044561863, + 0.006146411877125502, + 0.014401815831661224, + 0.009107667952775955, + -0.012328936718404293, + 0.019876528531312943, + 0.008652645163238049, + 0.001652164151892066, + 0.01750752329826355, + -0.01811421848833561, + -0.016987496986985207, + -0.017146393656730652, + -0.012769513763487339, + -0.0002275111328344792, + -0.009281009435653687, + 0.0056624989956617355, + 0.008789874613285065, + -0.012025588192045689, + -0.0011854051845148206, + 0.02795136719942093, + -0.01960206963121891, + -0.021003250032663345, + -0.0034289176110178232, + 0.01640969142317772, + 0.0352172777056694, + 0.027575792744755745, + 0.013433990068733692, + -0.014163470827043056, + 0.01340510044246912, + -0.013982906006276608, + 0.009779367595911026, + -0.006088631227612495, + -0.021783288568258286, + 0.020020978525280952, + 0.0013885401422157884, + -0.0002751349820755422, + 0.002520678797736764, + -0.019472064450383186, + -0.0283413864672184, + 0.019515398889780045, + -0.026651304215192795, + 0.01301508117467165, + 0.016424136236310005, + -0.008327629417181015, + -0.001628690748475492, + -0.004680228885263205, + 0.027546903118491173, + -0.005149696487933397, + -0.007735378574579954, + 0.016539698466658592, + -0.04946019873023033, + -0.010696634650230408, + 0.00012131669791415334, + 0.014820724725723267, + -0.005564994644373655, + 0.026434626430273056, + 0.030334817245602608, + 0.0009606025414541364, + 0.002217330737039447, + -0.0007051039137877524, + -0.005146085284650326, + 0.0005164141766726971, + -0.006623101886361837, + 0.021725507453083992, + -0.010508847422897816, + 0.0433354526758194, + -0.030565939843654633, + -0.015311860479414463, + -0.010176609270274639, + -0.013679558411240578, + -0.004716341849416494, + 0.025683479383587837, + 0.025553472340106964, + 0.011996697634458542, + 0.008833209984004498, + -0.0029738955199718475, + -0.01974652148783207, + -0.02787914127111435, + 0.003499337937682867, + -0.019399838522076607, + -0.004528554622083902, + -0.007482588291168213, + 0.008602087385952473, + -0.02272222191095352, + 0.014242919161915779, + 0.010638853535056114, + 0.007424807641655207, + 0.004701896570622921, + -0.00247192638926208, + -0.01038606371730566, + -0.02578459493815899, + 0.00553971529006958, + -0.009403793141245842, + 0.013852899894118309, + -0.013470103032886982, + 0.0428154282271862, + 0.014994067139923573, + 0.0007362512988038361, + 0.0214077141135931, + -0.003802685998380184, + 0.017781980335712433, + -0.013231758028268814, + 0.007446475327014923, + 0.013101751916110516, + -0.048246804624795914, + 0.041919827461242676, + -0.024990111589431763, + -0.0063847568817436695, + -0.008782652206718922, + 0.025264568626880646, + 0.00022423839254770428, + 0.008197623305022717, + -0.02400784008204937, + -0.0030569550581276417, + -0.005034135188907385, + 0.027503566816449165, + 0.01518185343593359, + -0.018807586282491684, + -0.027388006448745728, + 0.003571563633158803, + 0.03579508513212204, + -0.002733744913712144, + -0.017074167728424072, + 0.005225533153861761, + 0.014264586381614208, + 0.026059051975607872, + 0.020685456693172455, + 0.0027427731547504663, + 0.016611924394965172, + 0.003929080907255411, + -0.014199583791196346, + -0.017247511073946953, + 0.0005927025922574103, + 0.013679558411240578, + 0.018836477771401405, + -0.011808911338448524, + -0.020497668534517288, + 0.032790493220090866, + -0.018692025914788246, + 0.015138518065214157, + -0.0148640600964427, + -0.012928410433232784, + 0.0333683006465435, + -0.023040015250444412, + 0.01378067396581173, + -0.0005322135402821004, + -0.0035029491409659386, + -0.03657512366771698, + -0.014849615283310413, + -0.004124090541154146, + 0.011556120589375496, + 0.014019018970429897, + -0.011837800964713097, + -0.03146154060959816, + 0.012133927084505558, + -0.011259995400905609, + 0.021422158926725388, + 0.03995528817176819, + 0.019862081855535507, + -0.009273787029087543, + 0.04151536524295807, + -0.005247201304882765, + 0.012964523397386074, + 0.015672989189624786, + -0.0021144088823348284, + 0.005525270476937294, + -0.005478323437273502, + 0.012097814120352268, + 0.00015020699356682599, + -0.004629671107977629, + -0.01580299437046051, + 0.01629413105547428, + 0.015225188806653023, + 0.00540609797462821, + 0.006493095308542252, + -0.021711062639951706, + -0.012487833388149738, + -0.025770150125026703, + -0.01154167577624321, + -0.004051865078508854, + -0.0202809926122427, + 0.0007561133825220168, + -0.0021649671252816916, + 0.006937283556908369, + 0.00424326304346323, + 0.016626369208097458, + 0.005821395665407181, + 0.0014896561624482274, + -0.006467816419899464, + -0.027994703501462936, + -0.022881118580698967, + 0.008045949041843414, + 0.0054277656599879265, + -0.0009922012686729431, + -0.006168079562485218, + -0.007334525231271982, + 0.023054461926221848, + 0.007197296712547541, + -0.032154906541109085, + 0.010400508530437946, + -0.008854877203702927, + 0.021682171151041985, + 0.018013102933764458, + -0.043479904532432556, + -0.008587642572820187, + -0.007525923661887646, + 0.02876029536128044, + -0.0004272604710422456, + -0.008190400898456573, + -0.012408385053277016, + -0.02247665449976921, + -0.0063919792883098125, + -0.006778386887162924, + 0.012458942830562592, + 0.010414954274892807, + 0.028240270912647247, + 0.006883114576339722, + -0.01262506190687418, + -0.014084022492170334, + 0.023675601929426193, + 0.0069336723536252975, + -0.012596171349287033, + -0.0029106978327035904, + 0.010133273899555206, + 0.03579508513212204, + -0.018056439235806465, + -0.012726178392767906, + 0.0062764179892838, + 0.027229109779000282, + -0.014921841211616993, + 0.005059414077550173, + -0.023430034518241882, + 0.0019573180470615625, + 0.012820071540772915, + 0.019616514444351196, + 0.00043177459156140685, + 0.011137211695313454, + -0.007424807641655207, + -0.02091657929122448, + 0.0037593506276607513, + -0.007453697733581066, + 0.007692042738199234, + -0.00042816330096684396, + 0.014748498797416687, + -0.003674485255032778, + -0.01258894894272089, + 0.0038315763231366873, + -0.01658303290605545, + 0.012523946352303028, + -0.0019807913340628147, + -0.017059722915291786, + 0.006085020024329424, + -0.04295988008379936, + 0.06454093754291534, + -0.009822702966630459, + 0.007612594403326511, + -0.00335127511061728, + 0.011281662620604038, + -0.013925125822424889, + 0.0014950730837881565, + 0.009382125921547413, + 0.03576619550585747, + 0.00023473369947168976, + -0.024340080097317696, + -0.018200891092419624, + 0.02954033389687538, + 0.0015131295658648014, + -0.03097040392458439, + -0.018475348129868507, + 0.014445151202380657, + -0.009042664431035519, + 0.01636635698378086, + 0.0026759642641991377, + 0.013419545255601406, + -0.017550857737660408, + -0.015716323629021645, + -0.00261457241140306, + -0.0020548226311802864, + 0.011946139857172966, + -0.026752419769763947, + -0.022202197462320328, + 0.02819693461060524, + 0.03099929355084896, + 0.0019807913340628147, + 0.007417585235089064, + 0.000570583448279649, + -0.014445151202380657, + -0.002157744485884905, + 0.005250812508165836, + -0.002228164579719305, + 0.01609189808368683, + -0.000252564437687397, + 0.012466165237128735, + 0.015918556600809097, + -0.0208443533629179, + 0.017175285145640373, + 0.009042664431035519, + -0.02330002933740616, + 0.008825987577438354, + -0.010198276489973068, + 0.0016440387116745114, + -0.0008649034425616264, + 0.011910026893019676, + 0.002116214716807008, + -0.0202809926122427, + -0.005131640005856752, + -0.010299392975866795, + 0.01942872814834118, + 0.021898848935961723, + 0.02088768780231476, + -0.007385083474218845, + -0.00578889437019825, + 0.007612594403326511, + 0.0007145835552364588, + -0.004561056382954121, + -0.004506886936724186, + -0.012560058385133743, + -0.027142439037561417, + 0.007233409211039543, + -0.0193565022200346, + 0.002038571983575821, + -0.00554693816229701, + -0.011707794852554798, + 0.0015474368119612336, + -0.005532492883503437, + 0.019573180004954338, + -0.023054461926221848, + 0.0019591236487030983, + 0.0007042011129669845, + -0.0010906088864430785, + 0.03489948436617851, + 0.028326941654086113, + -0.03036370687186718, + -0.003199600847437978, + -0.002793331164866686, + -0.009649360552430153, + -0.011346666142344475, + 0.003037092974409461, + -0.01864868961274624, + 0.01736307144165039, + -0.016640814021229744, + -0.011324997991323471, + -0.019934307783842087, + -0.017767535522580147, + -0.0176086388528347, + -6.223828677320853e-5, + -0.01363622210919857, + -0.016496362164616585, + 0.0007989974110387266, + 0.002771663246676326, + -0.008407077752053738, + 0.013318429701030254, + -0.01335454173386097, + 0.011722239665687084, + 0.002484566066414118, + 0.01294285524636507, + 0.007648707367479801, + 0.01010438334196806, + 0.006785609759390354, + 0.021046584472060204, + 0.00781482644379139, + -0.014546266756951809, + 0.000885216926690191, + 0.0031418204307556152, + -0.012487833388149738, + 0.004178259987384081, + -0.011281662620604038, + -0.023978950455784798, + 0.001011160551570356, + 0.001092414604499936, + 0.011982252821326256, + -0.02198551967740059, + -0.017911987379193306, + 0.0016765403561294079, + -0.011231104843318462, + -0.025019001215696335, + -0.01651080697774887, + -0.009779367595911026, + -0.0029865349642932415, + 0.0026651304215192795, + -0.0023220579605549574, + 0.006355866324156523, + 0.020829908549785614, + 0.019370947033166885, + 0.018244225531816483, + 0.022462209686636925, + -0.013303983956575394, + 0.006890336982905865, + 0.003809908637776971, + -0.01665525883436203, + 0.020410997793078423, + 0.019862081855535507, + -0.011729463003575802, + 0.03920413926243782, + -0.017666419968008995, + -0.009281009435653687, + 0.013867344707250595, + 0.014676273800432682, + -0.015152963809669018, + 0.008154287934303284, + -0.020801017060875893, + 0.025510136038064957, + -0.004337156657129526, + 0.026839090511202812, + -0.014654605649411678, + -0.002092741196975112, + -0.009367680177092552, + -0.004199927672743797, + 0.0015086154453456402, + -0.018692025914788246, + 0.023632267490029335, + -0.03440834954380989, + -0.0013325652107596397, + 0.001688276999630034, + -0.0008960507693700492, + -0.020324327051639557, + 0.010559405200183392, + -0.030132584273815155, + 0.023848945274949074, + 0.012668397277593613, + 0.0013740949798375368, + 0.013275093398988247, + -0.006446148734539747, + -0.014611270278692245, + 0.000252790137892589, + 0.016164124011993408, + -0.022780003026127815, + -0.0011014427291229367, + 0.010357173159718513, + 0.010884420946240425, + 0.021783288568258286, + -0.01583188585937023, + 0.014084022492170334, + -0.0008003516704775393, + 0.0065039293840527534, + 0.020714346319437027, + 0.0008901824476197362, + -0.010364395566284657, + -0.004109645262360573, + 0.010602740570902824, + -0.02585682086646557, + 0.021465495228767395, + -0.013108974322676659, + 0.009237674064934254, + 0.026506852358579636, + 0.02155216597020626, + 0.014177915640175343, + 0.0018868978368118405, + 0.00371962646022439, + 0.02670908346772194, + 0.014293476939201355, + 0.020728791132569313, + 0.0009840759448707104, + -0.008818764239549637, + 0.004496053326874971, + 0.010624408721923828, + 0.020959913730621338, + 0.013462880626320839, + -0.019486509263515472, + -0.02088768780231476, + -0.003961582668125629, + 0.015152963809669018, + 0.0021776065696030855, + -0.02507678233087063, + -0.009136557579040527, + 0.012812849134206772, + -2.8424785341485403e-5, + -0.010609962977468967, + 0.00884043239057064, + -0.009793812409043312, + 0.014372925274074078, + -0.0029811181593686342, + 0.0004552479658741504, + 0.004152981098741293, + 0.011671681888401508, + -0.01146944984793663, + -0.01340510044246912, + 0.013600110076367855, + 0.004951075650751591, + -0.0012215180322527885, + -0.01459682546555996, + 0.0032050178851932287, + -0.0017343208892270923, + 0.016597477719187737, + -0.003625732846558094, + -0.008580420166254044, + -0.0015357001684606075, + -0.0030027858447283506, + 0.02887585759162903, + 0.0184320118278265, + -0.006615879014134407, + 0.011447782628238201, + 0.00781482644379139, + -0.015109628438949585, + 0.007417585235089064, + -0.010472734458744526, + -0.012610617093741894, + -0.003540867706760764, + -0.001978985732421279, + -0.0003678999491967261, + 0.0075692590326070786, + 0.015846330672502518, + -2.9510993044823408e-5, + -0.006121132522821426, + 0.008811541832983494, + -0.005734724923968315, + -0.008089284412562847, + 0.009952709078788757, + -0.009136557579040527, + -0.005936956964433193, + 0.006150023080408573, + -0.010154941119253635, + -0.036315109580755234, + -0.0006021822337061167, + 0.0020656567066907883, + -0.01799865812063217, + -0.0035155885852873325, + 0.00589362159371376, + 0.004969132132828236, + -0.038828566670417786, + 0.006381145678460598, + -0.016713039949536324, + 0.014921841211616993, + 0.020078759640455246, + 0.00889821257442236, + 0.002323863562196493, + 0.015138518065214157, + 0.008342075161635876, + -0.008248181082308292, + 0.0017632112139835954, + -0.0020584340672940016, + -0.02152327448129654, + 0.005864731501787901, + -0.001670220633968711, + -0.017810871824622154, + 0.011476672254502773, + -0.012184484861791134, + -0.013520661741495132, + -0.02802359312772751, + 0.015340750105679035, + 0.003316967748105526, + 0.0011547092581167817, + 0.009728808887302876, + -0.005279702600091696, + 0.011845024302601814, + -0.01889425702393055, + -0.03313717618584633, + 0.013058416545391083, + 0.02624684013426304, + 0.014271808788180351, + -0.022433320060372353, + 0.020439889281988144, + -0.020512115210294724, + -0.005445822142064571, + -0.017911987379193306, + 0.005319426767528057, + -0.014741276390850544, + -0.0002627211797516793, + 0.014214028604328632, + 0.008818764239549637, + 0.0026723528280854225, + -0.00809650681912899, + 0.016323020681738853, + -0.011368334293365479, + -0.0032068234868347645, + -0.012090591713786125, + -0.018735360354185104, + -0.011671681888401508, + -0.01736307144165039, + 0.018403122201561928, + 0.027359116822481155, + 0.018865367397665977, + -0.012971745803952217, + -0.012885075062513351, + -0.00704923365265131, + 0.02147994004189968, + -0.0022335813846439123, + 0.027388006448745728, + -0.01597633771598339, + 0.01874980516731739, + 0.004203538876026869, + -0.0027806914877146482, + 0.004940241575241089, + 0.01344121340662241, + 0.015846330672502518, + -0.020020978525280952, + -0.0028095818124711514, + -0.01697305217385292, + 0.010176609270274639, + -0.0022678887471556664, + 0.0032718267757445574, + -0.01519629918038845, + -0.0013099946081638336, + -0.0020114872604608536, + -0.020584341138601303, + 0.0005845772102475166, + -3.803137587965466e-5, + -0.0022949734702706337, + 0.018099773675203323, + -0.014307921752333641, + -0.019226495176553726, + 0.0037593506276607513, + 0.00427937600761652, + -0.01690082624554634, + 0.0009922012686729431, + 0.02897697314620018, + 0.009721586480736732, + -0.01188113633543253, + -0.00554693816229701, + 0.02088768780231476, + 0.012321713380515575, + 0.004976354539394379, + -0.007193685043603182, + 0.014965176582336426, + 0.033397190272808075, + -0.015037402510643005, + -0.009158225730061531, + 0.012596171349287033, + -0.013773451559245586, + 0.01122388243675232, + 0.010956646874547005, + -0.03374387323856354, + 0.029959242790937424, + -0.012119481340050697, + -0.021754397079348564, + 0.007525923661887646, + 0.010017712600529194, + -0.008862100541591644, + 0.021884404122829437, + 0.0007755240658298135, + -0.0027427731547504663, + -0.005164141301065683, + -0.01609189808368683, + 0.0054277656599879265, + -0.0002663324703462422, + 0.004965520463883877, + -0.017478633671998978, + 0.006529208272695541, + 0.02077212743461132, + 0.021104365587234497, + 0.013896235264837742, + 0.03582397475838661, + -0.02795136719942093, + -0.008219290524721146, + 0.017594194039702415, + 0.0176086388528347, + -0.002775274682790041, + -0.0058755651116371155, + 0.015037402510643005, + -0.014242919161915779, + 0.013224535621702671, + 0.021436603739857674, + -0.013007858768105507, + -0.0014038881054148078, + -0.0022949734702706337, + 0.013628999702632427, + -0.014567934907972813, + 0.0028420835733413696, + -0.011621124111115932, + 0.0009976181900128722, + 0.02581348456442356, + 0.022491099312901497, + -0.0013226341689005494, + -0.00863097794353962, + 0.003452391130849719, + -0.011411669664084911, + -0.013000636361539364, + 0.025279013440012932, + -0.014835170470178127, + -0.010638853535056114, + -0.013145087286829948, + 0.02461453713476658, + -0.007735378574579954, + 0.01456071250140667, + -0.005388041492551565, + -0.008847654797136784, + -0.0015907722990959883, + 0.010747192427515984, + 0.0073742493987083435, + 0.04385547712445259, + -0.0010653298813849688, + 0.011231104843318462, + 0.008674313314259052, + 0.030941514298319817, + -0.04899795353412628, + -0.026896871626377106, + 0.012545613572001457, + -0.02191329374909401, + -0.005593884736299515, + 0.0144523736089468, + 0.01076163724064827, + 0.006460594013333321, + 0.013520661741495132, + -0.00291250366717577, + -0.006789220962673426, + -0.010039379820227623, + -0.004864404443651438, + 0.015441866591572762, + -0.008862100541591644, + -0.012148371897637844, + -0.006670048460364342, + -0.017305290326476097, + -0.023603376001119614, + 0.0021487162448465824, + -2.5645786081440747e-5, + -0.011317775584757328, + 0.004322711378335953, + -0.010118828155100346, + -0.009122112765908241, + -0.00936045777052641, + -0.007302023936063051, + 0.0057816714979708195, + -0.01112998928874731, + 0.00891265831887722, + 0.0002573042584117502, + 3.080879832850769e-5, + -0.003947137389332056, + 0.0023527538869529963, + 0.003674485255032778, + 0.000950671499595046, + 0.009461574256420135, + -0.008847654797136784, + 0.01003215741366148, + -0.01305119413882494, + 0.02205774560570717, + 0.03241492062807083, + -0.0019338446436449885, + 0.02627572976052761, + 0.011671681888401508, + -0.013065638951957226, + -0.009208783507347107, + 0.0069192275404930115, + -0.013484548777341843, + -0.003065983299165964, + -0.003495726501569152, + -0.003864077851176262, + -0.016597477719187737, + 0.020107651129364967, + -0.015759659931063652, + 0.004788567777723074, + 0.0007416682201437652, + 0.006912004668265581, + 0.004719953052699566, + 0.02748912200331688, + 0.013325652107596397, + 0.0089848842471838, + -3.560504046618007e-5, + 0.006749496795237064, + -0.009945486672222614, + 0.029208095744252205, + -0.010804972611367702, + 0.004550222773104906, + -0.00818317849189043, + 0.0179697684943676, + -0.001919399481266737, + -0.009028219617903233, + -0.012025588192045689, + 0.026607967913150787, + -0.007728155702352524, + -0.004611614625900984, + 0.02116214670240879, + -0.0001423073117621243, + -0.0018336313078179955, + 3.0470240744762123e-5, + -7.465208909707144e-5, + -0.03544840216636658, + 0.029988134279847145, + 0.002007876057177782, + 0.011765575967729092, + -0.004929407965391874, + -0.008212068118155003, + 0.014271808788180351, + 0.002681381069123745, + 0.01690082624554634, + -0.021754397079348564, + 0.005745558999478817, + -0.0027644408401101828, + 0.014546266756951809, + -0.006930061150342226, + 0.0103716179728508, + 0.0022859452292323112, + 0.004770511295646429, + -0.002276916988193989, + -0.009974377229809761, + 0.01629413105547428, + -0.017030833289027214, + -0.03348385915160179, + 0.011982252821326256, + 0.018099773675203323, + 0.019096489995718002, + 0.003042510012164712, + 0.024368969723582268, + -0.029699230566620827, + 0.024773433804512024, + 0.0014607659541070461, + -0.007879829965531826, + -0.007858161814510822, + -0.0035517015494406223, + -0.0018977316794916987, + 0.008378187194466591, + 0.013007858768105507, + -0.010234389454126358, + 0.0008161510340869427, + -0.015210743993520737, + 0.012986190617084503, + -0.01006827037781477, + 0.0207432359457016, + 0.029988134279847145, + -0.013997351750731468, + 0.013498993590474129, + -0.016250794753432274, + -0.009757699444890022, + 0.015326305292546749, + 0.004290210083127022, + 0.010024935007095337, + 0.0012332547921687365, + -0.0026344344951212406, + -0.0227944478392601, + 0.012762291356921196, + -0.007016731891781092, + 0.008746539242565632, + 0.013152309693396091, + -0.00387491169385612, + -0.027388006448745728, + -0.016756374388933182, + -0.0075692590326070786, + -0.002746384358033538, + -0.009627693332731724, + -0.0014345840318128467, + -0.03859744220972061, + -0.008782652206718922, + 0.026189059019088745, + -0.0020457946229726076, + 0.008349297568202019, + -0.006962562911212444, + 0.009541022591292858, + -0.0015375057701021433, + -0.010321060195565224, + 0.018619799986481667, + 0.010205498896539211, + 0.00631253095343709, + 0.026694638654589653, + -0.005994737613946199, + 0.017594194039702415, + -0.01290674228221178, + -0.010862753726541996, + 0.00820484571158886, + 0.018634244799613953, + 0.005261646118015051, + -0.012596171349287033, + 0.005622774828225374, + -0.025452356785535812, + -0.022216642275452614, + -0.01079775020480156, + 0.005922512151300907, + -0.003407249925658107, + -0.005900844000279903, + -0.007966500706970692, + 0.009151003323495388, + -0.0009515743004158139, + 0.00743925292044878, + 0.002025932539254427, + 0.014921841211616993, + -0.013065638951957226, + -0.010552182793617249, + 0.015008511953055859, + -0.013628999702632427, + 0.01811421848833561, + 0.004387714434415102, + 0.012921188026666641, + -0.01640969142317772, + 0.039753057062625885, + -0.008724871091544628, + 0.005138862412422895, + -0.003434334648773074, + 0.00921600591391325, + -0.008551529608666897, + -0.008038726635277271, + -0.006597822532057762, + 0.014047909528017044, + 0.006381145678460598, + 0.024672318249940872, + -0.0012765902793034911, + 0.01230726856738329, + -0.0013479131739586592, + -0.002625406254082918, + -0.015586317516863346, + 0.007395917549729347, + -0.007424807641655207, + -0.0009371291962452233, + 0.0060958536341786385, + -0.005709446035325527, + -0.017940877005457878, + 0.0012151983100920916, + 0.011108321137726307, + -0.005900844000279903, + -0.008573196828365326, + 0.00020934184431098402, + -0.0035932313185185194, + 0.0031382089946419, + 0.011317775584757328, + -0.004152981098741293, + -0.0103716179728508, + -0.022953344509005547, + 0.014084022492170334, + -0.020959913730621338, + 0.0065797665156424046, + 0.018345341086387634, + 0.004575501661747694, + -0.010039379820227623, + -0.005760003812611103, + 0.012596171349287033, + 0.0058430638164281845, + -0.04616670310497284, + -0.009707141667604446, + -0.004709119442850351, + 0.033570531755685806, + -0.018793141469359398, + -0.01165001466870308, + -0.009432683698832989, + 0.004582724068313837, + -0.014712386764585972, + -0.014120135456323624, + 0.003080428345128894, + -0.01580299437046051, + -0.00690839346498251, + 0.0007154864142648876, + 0.0026669360231608152, + 0.01694416254758835, + 0.001746960449963808, + -0.010848307982087135, + 0.017030833289027214, + -0.004553833976387978, + -5.541069549508393e-5, + -0.012473387643694878, + 0.002816804451867938, + -0.006431703455746174, + -1.160972624347778e-5, + -0.01872091554105282, + 0.005312204360961914, + -0.01821533590555191, + -0.005424153991043568, + 0.005615552421659231, + 0.0031472372356802225, + -0.007417585235089064, + -0.012711732648313046, + -0.016785265877842903, + 0.0019230106845498085, + 0.00889821257442236, + 0.009548244997859001, + -0.013484548777341843, + -0.015514092519879341, + 0.006139189004898071, + -0.016785265877842903, + 0.008768206462264061, + 0.012668397277593613, + -0.00028732308419421315, + 0.00965658389031887, + -0.021884404122829437, + 0.00371962646022439, + 0.019370947033166885, + 0.003112930105999112, + 0.002334697637706995, + 0.021321043372154236, + -0.014199583791196346, + -0.01609189808368683, + 0.008407077752053738, + 0.002211913699284196, + -0.018200891092419624, + -0.02159550040960312, + -0.0031039018649607897, + -0.025019001215696335, + -0.005803339648991823, + 0.01150556281208992, + -0.007327302824705839, + -0.028139153495430946, + 0.006012794096022844, + -0.015557427890598774, + -0.0297281201928854, + -0.009671028703451157, + -0.006572543643414974, + -0.010631631128489971, + -0.002298584673553705, + 0.04258430376648903, + 0.008515416644513607, + -0.007518701255321503, + 0.0036094821989536285, + -0.0058683427050709724, + -0.011570566333830357, + -0.0019844025373458862, + -0.0038785231299698353, + -0.02098880521953106, + 0.030305927619338036, + -0.015109628438949585, + -0.030565939843654633, + -0.003470447612926364, + -0.0015122267650440335, + 0.006673659663647413, + -0.024065621197223663, + -0.027604684233665466, + 0.012321713380515575, + -0.007887052372097969, + 0.026535741984844208, + -0.01452459953725338, + -0.02532234974205494, + 0.011447782628238201, + -0.005767226684838533, + 0.0014553489163517952, + 0.024701207876205444, + -0.01679971069097519, + -0.007103403098881245, + 0.014336812309920788, + 0.027575792744755745, + 0.008659868501126766, + 0.01633746549487114, + -0.007302023936063051, + 0.012928410433232784, + 0.009736032225191593, + -0.0035805918741971254, + -0.007323691621422768, + -0.0013903457438573241, + 0.0066375466994941235, + 0.0474378764629364, + 0.006883114576339722, + 0.025986826047301292, + -0.004362435545772314, + -0.025697924196720123, + 0.003929080907255411, + -0.0027211052365601063, + -0.002134270966053009, + -0.0032248799689114094, + 0.0003173419099766761, + 0.00827707163989544, + -0.0022263589780777693, + -0.005731113720685244, + 0.0035787862725555897, + 0.009374902583658695, + -0.010544960387051105, + 0.01420680619776249, + 0.017074167728424072, + 0.007482588291168213, + 0.013433990068733692, + -0.0025062337517738342, + 0.0065183741971850395, + -0.008746539242565632, + 0.0058755651116371155, + 0.012892297469079494, + 0.013267870992422104, + -0.006323365028947592, + -0.011021650396287441, + -0.02205774560570717, + 0.002417757175862789, + -0.022216642275452614, + 0.007269522175192833, + -0.02069990150630474, + 0.005727502517402172, + -0.01874980516731739, + -0.014192360453307629, + 0.003024453530088067, + -0.017709754407405853, + 0.0024809546303004026, + 0.007424807641655207, + 0.0008685147040523589, + -0.00257845944724977, + -0.010674966499209404, + -0.006558098364621401, + -0.020266547799110413, + 0.014625715091824532, + -0.005286925472319126, + -0.009454350918531418, + -0.004044642206281424, + -0.008392632938921452, + 0.0017857818165794015, + -0.01044384390115738, + -0.00403019692748785, + 0.013701225630939007, + 0.0010129662696272135, + -0.019587624818086624, + -2.2119136701803654e-5, + -0.007778713945299387, + 0.002186634810641408, + -0.008508194237947464, + -0.0059622363187372684, + -0.02673797495663166, + -0.007088957820087671, + -0.008587642572820187, + -0.01118776947259903, + 0.02883252128958702, + -0.019197605550289154, + -0.00550360232591629, + 0.01757974922657013, + 0.030594829469919205, + 0.01977541111409664, + 0.0025044281501322985, + -0.019645405933260918, + -0.013116196729242802, + 0.01772420108318329, + -0.0044924421235919, + 0.014835170470178127, + 0.0040626986883580685, + -0.00196273485198617, + 0.004568278789520264, + 0.014835170470178127, + 0.01068941131234169, + 0.015167408622801304, + 0.016525253653526306, + -0.0003245644911658019, + -0.00645337114110589, + -0.002004264621064067, + -0.02837027609348297, + -0.013506215997040272, + 0.008002613671123981, + -0.01690082624554634, + 0.021321043372154236, + 0.008537083864212036, + -0.015456311404705048, + -0.017955321818590164, + 0.013831231743097305, + -0.0003821193822659552, + -0.03365720063447952, + -0.004680228885263205, + 0.008089284412562847, + 0.002347337082028389, + -0.0024520643055438995, + -0.007074512541294098, + 0.00936045777052641, + -0.014741276390850544, + -0.019414283335208893, + -0.005048580467700958, + 0.0034632249735295773, + 0.008378187194466591, + 0.0016973052406683564, + 0.013607332482933998, + 0.0006373922806233168, + -0.01027772482484579, + -0.011534453369677067, + 0.00019297818653285503, + -0.007309246342629194, + -0.002800553571432829, + 0.03931970149278641, + -0.008053171448409557, + -0.0073598045855760574, + 0.02332891896367073, + 0.012292823754251003, + 0.007377861067652702, + 0.01248061005026102, + 0.0016648037126287818, + -0.004849959630519152, + -0.0252067893743515, + 0.013137864880263805, + -0.007179240230470896, + -0.02517789788544178, + 0.007944833487272263, + 0.0184320118278265, + -0.015456311404705048, + -0.014293476939201355, + -0.007901497185230255, + -0.004730787128210068, + -0.008500971831381321, + -0.04183315858244896, + 0.0029630616772919893, + -0.007966500706970692, + 0.005037746392190456, + -0.0289047472178936, + -0.013101751916110516, + -0.005301370285451412, + 0.014423483051359653, + -0.004344379063695669, + 0.009439906105399132, + -0.00030018828692846, + -0.011837800964713097, + 0.01874980516731739, + 0.012682843022048473, + -0.010516069829463959, + 0.006507540587335825, + 0.01573077030479908, + 0.003405444324016571, + 0.014791835099458694, + 0.0020782961510121822, + 0.0046043917536735535, + -0.0066122678108513355, + -0.0115777887403965, + -0.003073205938562751, + 0.01640969142317772, + 0.007778713945299387, + 0.01682860031723976, + -0.013246203772723675, + 0.006594211328774691, + 0.00031011932878755033, + -0.029872572049498558, + -0.012632284313440323, + -0.022418875247240067, + 0.00988770555704832, + 0.0076559302397072315, + 0.0017325152875855565, + 0.007143127266317606, + 0.0018191862618550658, + -0.019717631861567497, + -0.00037286547012627125, + -0.001765016932040453, + -0.009071554988622665, + -0.014762944541871548, + 0.006684493739157915, + -0.0006468719220720232, + -0.0046910629607737064, + 0.002464703982695937, + 0.005438599269837141, + -0.013506215997040272, + -0.010804972611367702, + 5.794988464913331e-5, + -0.014669050462543964, + -0.008428745903074741, + 0.005514436401426792, + 0.0006721509271301329, + -0.0037124038208276033, + 0.016106342896819115, + 0.0027355505153536797, + 0.015514092519879341, + 0.0028384721372276545, + -0.009454350918531418, + -0.0350150465965271, + -0.02478787861764431, + 0.022361094132065773, + -0.0012765902793034911, + 0.021725507453083992, + -0.013462880626320839, + 0.0069336723536252975, + 0.00250803935341537, + -0.005709446035325527, + -0.03212601691484451, + 0.01629413105547428, + -0.023805608972907066, + 0.010985537432134151, + -0.006745885591953993, + -0.0007412168197333813, + 0.012668397277593613, + -0.019977644085884094, + 0.014156248420476913, + -0.0018291173037141562, + 0.0014038881054148078, + 0.0006265584379434586, + 0.029569223523139954, + -0.012105036526918411, + -0.0025405408814549446, + -0.0037304603029042482, + -0.0021360768005251884, + -0.017839761450886726, + -0.014517377130687237, + -0.019009819254279137, + 0.01076163724064827, + 0.021422158926725388, + -0.023198911920189857, + -0.010682188905775547, + 0.009382125921547413, + 0.023632267490029335, + -0.015326305292546749, + -0.012718955054879189, + 0.016886381432414055, + -0.009967153891921043, + 0.017305290326476097, + -0.005055802874267101, + -0.044693298637866974, + 0.017030833289027214, + 0.01718972995877266, + -0.0050124675035476685, + -0.03125930577516556, + -0.006828945130109787, + -0.02478787861764431, + 0.0011926278239116073, + 0.01583188585937023, + 0.009208783507347107, + -0.007067290134727955, + 0.018518684431910515, + -0.004008529242128134, + 0.020931024104356766, + 0.010696634650230408, + 0.002935976954177022, + 0.010176609270274639, + -0.0035697580315172672, + 0.007338136900216341, + -0.02773468941450119, + -0.01838867738842964, + 0.006370311602950096, + 0.004423827398568392, + 0.0016593866748735309, + -0.01045828964561224, + -0.02106102928519249, + -0.010934979654848576, + 0.0013054804876446724, + 0.005330260843038559, + 0.0020114872604608536, + 0.008378187194466591, + 0.017767535522580147, + -0.0008870225283317268, + 0.0071539608761668205, + -0.0026759642641991377, + 0.016135234385728836, + -0.013065638951957226, + -0.001467988477088511, + -0.00017582457803655416, + -0.009100445546209812, + 0.004004918038845062, + -0.0007529535214416683, + -0.031981565058231354, + -0.0007732670055702329, + -0.005153307691216469, + 0.0048066237941384315, + 0.010270502418279648, + -0.006576154846698046, + -0.016843046993017197, + -0.015124073252081871, + 0.02194218523800373, + 0.0074681430123746395, + 0.0006446148618124425, + -0.008782652206718922, + 0.008385410532355309, + -0.0308548416942358, + -0.008869322948157787, + 0.007540368940681219, + -0.019443172961473465, + 0.028933636844158173, + -0.0202809926122427, + 0.013852899894118309, + 0.005879176314920187, + 0.019197605550289154, + -0.000612113275565207, + 0.007771491073071957, + 0.006590600125491619, + -0.007800381630659103, + -0.01860535517334938, + -0.005081081762909889, + -0.01604856364428997, + -0.00031689050956629217, + 0.01495073176920414, + -0.011693350039422512, + 0.012740623205900192, + -0.019255386665463448, + 0.0075620366260409355, + 0.000534922000952065, + 0.007222575601190329, + 0.008067617192864418, + 0.005301370285451412, + 0.004712730646133423, + 0.010046602226793766, + -0.00045253950520418584, + 0.01308730710297823, + 0.0010906088864430785, + 0.006323365028947592, + -0.015384085476398468, + 0.018706470727920532, + 0.015716323629021645, + 0.011715017259120941, + -0.011209437623620033, + 0.012798403389751911, + 0.01399012841284275, + 0.0029757011216133833, + -0.015514092519879341, + -0.01107943058013916, + 0.019544288516044617, + 0.0051208059303462505, + -0.01273340079933405, + 0.0037593506276607513, + -0.011274440214037895, + -0.002453870140016079, + -0.014697941020131111, + -0.03258826211094856, + 0.004008529242128134, + 0.00827707163989544, + 0.010357173159718513, + -0.01726195588707924, + 0.009497687220573425, + 0.008269849233329296, + 0.0333683006465435, + -0.0034740588162094355, + 0.00029454566538333893, + -0.012393939308822155, + -0.015860775485634804, + -0.007518701255321503, + 0.004640504717826843, + -0.01729084551334381, + -0.014546266756951809, + 0.01906759850680828, + 0.015990782529115677, + -0.005615552421659231, + 0.017839761450886726, + 0.008638200350105762, + -0.008789874613285065, + -0.008652645163238049, + 0.010400508530437946, + -0.0005927025922574103, + -0.012841739691793919, + 0.029959242790937424, + -0.025365686044096947, + 0.006225860211998224, + 0.009801034815609455, + 0.003481281455606222, + -0.011447782628238201, + 0.005453044548630714, + -0.014712386764585972, + 0.007915942929685116, + 0.008602087385952473, + -0.00027852057246491313, + 0.0051208059303462505, + -0.007648707367479801, + -0.01655414327979088, + 0.018403122201561928, + -0.02233220264315605, + 0.01807088404893875, + 0.009663806296885014, + -0.0055613829754292965, + 0.02340114489197731, + -0.0019392615649849176, + 0.01409846730530262, + -0.0023365032393485308, + 0.004055476281791925, + -0.01668415032327175, + 0.0029395881574600935, + -0.012393939308822155, + 0.02269333228468895, + -0.009707141667604446, + 0.008681535720825195, + 0.008645422756671906, + -0.0032826606184244156, + -0.0015970920212566853, + -0.010711079463362694, + 0.01480627991259098, + 0.00785093940794468, + 0.002860139822587371, + 0.020020978525280952, + 0.019760966300964355, + 0.016351910308003426, + 0.006597822532057762, + -0.015817441046237946, + -0.00845041312277317, + 0.007980945520102978, + -0.0012260321527719498, + -0.006633935496211052, + 0.008746539242565632, + -0.015124073252081871, + -0.023155577480793, + -0.016351910308003426, + 0.01721861958503723, + 0.011715017259120941, + 0.009085999801754951, + -0.005543326493352652, + -0.03128819540143013, + 0.010017712600529194, + -0.0031941840425133705, + 0.014264586381614208, + -0.01860535517334938, + 0.0017812676960602403, + -0.010877198539674282, + 0.02208663523197174, + -0.009013773873448372, + -0.007728155702352524, + -0.002697631949558854, + 0.0014526405138894916, + -0.0018155749421566725, + 0.006280029192566872, + 0.00925211887806654, + 0.011440559290349483, + 0.00610668770968914, + 0.011245549656450748, + -0.0016593866748735309, + 0.007211741525679827, + -0.008515416644513607, + -0.009100445546209812, + -0.003418083768337965, + 0.0020728791132569313, + 0.013108974322676659, + 0.002834860933944583, + 0.004831903148442507, + 0.02244776487350464, + 0.005337483249604702, + 0.005998348817229271, + 0.011982252821326256, + -0.01984763704240322, + 0.0033783596009016037, + -0.0027915253303945065, + 0.02052656002342701, + -0.012668397277593613, + 0.006749496795237064, + 0.009187116287648678, + -0.0005850286106579006, + 0.026506852358579636, + -0.0014481263933703303, + -0.010321060195565224, + 0.01694416254758835, + 0.0018336313078179955, + 0.0016178569057956338, + 0.020122095942497253, + -0.007096180226653814, + -0.0024990111123770475, + -0.012986190617084503, + 0.012328936718404293, + 0.00035638894769363105, + 0.010602740570902824, + -0.015066292136907578, + 0.004546611104160547, + -0.000175260312971659, + -0.03489948436617851, + -0.012892297469079494, + -0.013621777296066284, + 0.014459596015512943, + -0.011339443735778332, + 0.0014463207917287946, + 0.0007931290892884135, + 0.017103059217333794, + 0.007377861067652702, + -0.026232393458485603, + -0.013751783408224583, + 0.003914636094123125, + 0.012646730057895184, + -0.002645268337801099, + -0.030334817245602608, + 0.032299358397722244, + 0.016525253653526306, + -0.002892641583457589, + -0.015860775485634804, + 0.018952038139104843, + -0.0148640600964427, + 0.011621124111115932, + 7.747340714558959e-5, + -0.011036095209419727, + 0.007728155702352524, + -0.0016837628791108727, + -0.018865367397665977, + -0.01273340079933405, + -0.020223211497068405, + -0.010082715190947056, + 0.0013163143303245306, + -0.010790527798235416, + 0.007070901338011026, + -0.01999208889901638, + -0.0144523736089468, + -0.008074839599430561, + -0.018229780718684196, + 0.020035425201058388, + 0.02052656002342701, + 0.043942149728536606, + 0.033223848789930344, + 0.010017712600529194, + 0.002432202221825719, + -0.0009068846120499074, + -0.03827964887022972, + 0.0025820706505328417, + 0.008681535720825195, + 0.0010391480755060911, + -0.0034036387223750353, + 0.0016295935492962599, + -0.001705430680885911, + 0.025726813822984695, + 0.021321043372154236, + -0.014011796563863754, + 0.011180547066032887, + -0.01580299437046051, + 0.01072552427649498, + 0.0035462845116853714, + 0.002773469081148505, + 0.002453870140016079, + 0.004272153601050377, + -0.010869976133108139, + -0.004582724068313837, + 0.018229780718684196, + -0.001592577900737524, + -0.014264586381614208, + -0.007251465693116188, + -0.01687193661928177, + 0.025437910109758377, + 0.020122095942497253, + -0.010328282602131367, + -0.010523292236030102, + -0.0011312358547002077, + -0.016164124011993408, + 0.0033657201565802097, + 0.015759659931063652, + -0.0006215929170139134, + 0.005315815564244986, + -0.013195645064115524, + -0.0019266220042482018, + -0.013145087286829948, + 0.015961891040205956, + -0.03380165249109268, + -0.0013533300952985883, + 0.02876029536128044, + -0.003019036492332816, + -0.012401161715388298, + 0.0021126032806932926, + -0.00030537950806319714, + -0.005882787983864546, + 0.014748498797416687, + 0.013303983956575394, + -0.002739161718636751, + -0.014676273800432682, + 0.022115526720881462, + 0.008291516453027725, + -0.034957267343997955, + -0.006193358451128006, + -0.001989819575101137, + 0.009613247588276863, + -0.0026705472264438868, + 0.0034921152982860804, + 0.023603376001119614, + 0.011231104843318462, + 0.01989097334444523, + 0.00866709090769291, + 0.005261646118015051, + 0.020931024104356766, + -0.004647727124392986, + 0.030565939843654633, + -0.034928373992443085, + -0.031172635033726692, + 0.003929080907255411, + -0.031114855781197548, + -0.03114374540746212, + -0.002948616398498416, + -0.0034596137702465057, + -0.024744544178247452, + 0.0055541605688631535, + -0.006998675875365734, + -0.005250812508165836, + 0.029135869815945625, + 0.005182197783142328, + -0.013824009336531162, + 0.0016268851468339562, + -0.00740313995629549, + -0.00589362159371376, + -0.021739952266216278, + 0.006865058094263077, + 0.0006432606605812907, + 0.011238327249884605, + -0.0032248799689114094, + 0.0005191226373426616, + 0.010609962977468967, + -0.02179773338139057, + -0.01775309070944786, + 0.003096679225564003, + 0.010718301869928837, + 0.00816873274743557, + -0.014604047872126102, + 0.013289539143443108, + -0.0003999501059297472, + 0.025683479383587837, + -0.0017921015387400985, + -0.04428883269429207, + 0.009873260743916035, + 0.0005064831348136067, + -0.004008529242128134, + 0.027388006448745728, + -0.005543326493352652, + 0.007525923661887646, + 9.409097401658073e-6, + -0.005200254265218973, + 0.002443036064505577, + 0.013549551367759705, + -0.0018390483455732465, + 0.02369004860520363, + 0.026319066062569618, + 0.02344447933137417, + -0.011837800964713097, + 0.0019699574913829565, + 0.020541004836559296, + 0.010682188905775547, + 0.023560041561722755, + -0.006243916694074869, + 0.006619490683078766, + 0.027431340888142586, + -0.01193169504404068, + -0.011570566333830357, + 0.03290605545043945, + -0.0010806778445839882, + -0.006720606703311205, + 0.01850423775613308, + -0.01441626064479351, + -0.008125397376716137, + 0.01928427629172802, + -0.008963216096162796, + 0.003226685570552945, + -0.013484548777341843, + -0.004333545453846455, + 0.017276400700211525, + 0.014300699345767498, + -0.02410895749926567, + -0.00726229976862669, + -0.0044527179561555386, + -0.00557582825422287, + 0.009974377229809761, + 0.003558924188837409, + 0.010111605748534203, + 0.004506886936724186, + -0.01811421848833561, + 0.0027012431528419256, + -0.003185155801475048, + -0.0024502587039023638, + 0.0020710735116153955, + -0.009237674064934254, + 0.03443723917007446, + 0.011455005034804344, + -0.017319737002253532, + 0.001563687575981021, + 0.00466217240318656, + 0.00697700772434473, + 0.008269849233329296, + 0.00522914482280612, + -0.006215026136487722, + -0.013448435813188553, + -0.0066122678108513355, + -0.0001240251585841179, + -0.0008477498195134103, + 0.0011204020120203495, + 0.008746539242565632, + -0.002145105041563511, + -0.023978950455784798, + 0.008248181082308292, + -0.02383449859917164, + -0.009382125921547413, + -0.025091227144002914, + -0.014625715091824532, + -0.001783073297701776, + 0.02702687680721283, + 0.029164759442210197, + 0.014589602127671242, + 0.008927103132009506, + 0.01821533590555191, + -0.0025116505566984415, + 0.006366700399667025, + 0.006406424567103386, + -0.0008463955600745976, + -0.0006306210998445749, + -0.012393939308822155, + 0.008269849233329296, + 0.004795790184289217, + -0.011635568924248219, + -0.01896648295223713, + 0.003013619687408209, + 0.0039001908153295517, + 0.02013654075562954, + -0.019862081855535507, + -0.010241611860692501, + -0.005911678075790405, + -0.008703203871846199, + 0.0019428727682679892, + -0.009259342215955257 + ], + "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a": [ + -0.009907557629048824, + 0.011217711493372917, + -0.018683265894651413, + -0.010589768178761005, + -0.04037446156144142, + -0.020559344440698624, + 0.0336453840136528, + 0.018838314339518547, + -0.015210193581879139, + 0.01733434945344925, + -0.02198578417301178, + 0.022916072979569435, + -0.018373170867562294, + -0.02404792234301567, + -0.01634204387664795, + -0.006981029640883207, + -0.0346376895904541, + 0.055600158870220184, + -0.017861511558294296, + -0.00855864118784666, + 0.06685663014650345, + -0.006170904263854027, + -0.04902613162994385, + 0.0030001758132129908, + -0.004004110582172871, + -0.019768601283431053, + -0.0017229692311957479, + -0.014264401979744434, + -0.042142003774642944, + -0.007035295944660902, + 0.00463205436244607, + -0.010116872377693653, + 0.027800079435110092, + 0.0008614846155978739, + 0.015512537211179733, + -0.0028102423530071974, + -0.011651845648884773, + 0.06347659230232239, + -0.005104950629174709, + 0.012853466905653477, + -0.023691311478614807, + 0.01614048145711422, + 0.0034362480510026217, + -0.00031009569647721946, + -0.04884007200598717, + 0.017597930505871773, + 0.034606680274009705, + -0.020450811833143234, + 0.011861160397529602, + 0.011279731057584286, + -0.005275503266602755, + -0.02119504101574421, + -0.008046983741223812, + 0.02206330932676792, + -0.008853232488036156, + 0.013713981956243515, + -0.005887941922992468, + 0.03978527709841728, + 0.004934397991746664, + -0.014527983032166958, + -0.0053181410767138, + -0.021427612751722336, + 0.028156690299510956, + 0.0038587532471865416, + 0.0021512890234589577, + -0.04821988195180893, + -0.003197861835360527, + -0.01158982701599598, + -0.06555423140525818, + -0.009628470987081528, + 0.0060003516264259815, + 0.027303926646709442, + -0.009186585433781147, + 0.011892169713973999, + -0.016311034560203552, + -0.0022966463584452868, + 0.039165087044239044, + -0.018652256578207016, + -0.020636869594454765, + 0.011062663979828358, + -0.024280494078993797, + 0.008163269609212875, + -0.023381216451525688, + -0.006612790748476982, + 0.05172396078705788, + -0.0042870729230344296, + -0.03891700878739357, + -0.041428785771131516, + -0.029257528483867645, + -0.041831910610198975, + 0.004717330913990736, + 0.01276819035410881, + 0.0336453840136528, + -0.0252572949975729, + -0.02347424440085888, + 0.009023784659802914, + 0.06056169047951698, + 0.0035370290279388428, + 0.0075198207050561905, + -0.04080859571695328, + -0.01841968484222889, + 0.013086038641631603, + -0.05932130664587021, + 0.040343448519706726, + 0.011551064439117908, + -0.004666940309107304, + 0.004608797375112772, + -0.01772196963429451, + -0.02586198039352894, + 0.06356962025165558, + 0.017070768401026726, + -0.01421013567596674, + 0.00041354168206453323, + 0.025272799655795097, + -0.010031595826148987, + -0.08825323730707169, + 0.0168226920068264, + -0.0376456193625927, + 0.00961296632885933, + -0.04828190058469772, + 0.043723493814468384, + 0.04446772485971451, + 0.012543370947241783, + -0.0034226812422275543, + 0.0031280904076993465, + -0.0023392844013869762, + 0.002005931455641985, + 0.010620777495205402, + 0.0017161858268082142, + 0.015969928354024887, + -0.007345391903072596, + -0.014419450424611568, + -0.012241027317941189, + 0.007155458442866802, + -0.004089387133717537, + 0.027986137196421623, + -0.013768249191343784, + 0.04279320687055588, + -0.050235502421855927, + 0.07640758156776428, + -0.06660855561494827, + -0.01083784457296133, + -0.010016091167926788, + -0.009364889934659004, + -0.01595442369580269, + 0.024714626371860504, + -0.04285522550344467, + 0.04226604476571083, + -0.00821753591299057, + 0.023520758375525475, + -0.030730484053492546, + -0.018497208133339882, + 0.05020449310541153, + 0.016264518722891808, + -0.0016250952612608671, + 0.014931107871234417, + 0.0014903974952176213, + -0.009589709341526031, + 0.041335757821798325, + 0.008333821780979633, + -0.005647617857903242, + -0.04037446156144142, + 0.017846006900072098, + -0.0055894749239087105, + 0.009915309958159924, + 0.011101425625383854, + 0.033521346747875214, + 0.014411697164177895, + -0.034885767847299576, + 0.021024487912654877, + 0.04285522550344467, + -0.01415586844086647, + 0.01770646497607231, + 0.01840418018400669, + 0.014442707411944866, + -0.04403359070420265, + 0.02691630646586418, + 0.0040389965288341045, + 0.01400082092732191, + -0.04220402613282204, + -0.009341632947325706, + -0.04908815026283264, + -0.026218591257929802, + 0.004442120902240276, + 0.0019390671513974667, + 0.0445607528090477, + 0.0155900614336133, + -0.00861290842294693, + 0.004852997604757547, + 0.009923062287271023, + 0.0037405292969197035, + -0.017582425847649574, + 0.0064151049591600895, + 0.02228037640452385, + -0.013101543299853802, + -0.024869674816727638, + 0.0055584656074643135, + -0.007263991516083479, + -0.005163093563169241, + 0.04111868888139725, + -0.005802665837109089, + -0.0435684472322464, + -0.06220519542694092, + 0.04211099445819855, + -0.03060644492506981, + 0.014217888005077839, + 0.0006521700415760279, + 0.014923355542123318, + 0.02496270462870598, + -0.049956418573856354, + 0.04012638330459595, + -0.05829799175262451, + 0.04604921117424965, + -0.034699708223342896, + -0.006845362484455109, + -0.0036746340338140726, + -0.014481469057500362, + 0.012899980880320072, + 0.007566335145384073, + 0.003947905730456114, + -0.00827180314809084, + -0.0042328061535954475, + 0.029474595561623573, + -0.03581605479121208, + -0.026513181626796722, + -0.012644152157008648, + -0.03209490329027176, + 0.013791506178677082, + -0.0385759063065052, + 0.0064151049591600895, + 0.04716555401682854, + 0.017877016216516495, + 0.005391789134591818, + -0.035195861011743546, + -0.01576061360538006, + 0.004434368573129177, + 0.01415586844086647, + 0.019380981102585793, + 0.0007776618585921824, + -0.030637454241514206, + 0.027862098067998886, + 0.03299418091773987, + 0.012140247039496899, + -0.008302812464535236, + 0.044498734176158905, + 0.021241554990410805, + -0.032715097069740295, + 0.004694073460996151, + 0.024016911163926125, + -0.039661239832639694, + 0.01869877055287361, + 0.0022966463584452868, + -0.005678627640008926, + -0.026606211438775063, + -0.025226285681128502, + 0.02911798655986786, + 0.0016871143598109484, + -0.03922710567712784, + -0.011992950923740864, + -0.04567709565162659, + -0.006841486319899559, + -0.014132611453533173, + 0.004670816473662853, + -0.0058065420016646385, + 0.0465143546462059, + -0.03000175952911377, + -0.006229047197848558, + -0.06908932328224182, + 0.024683617055416107, + 0.030745988711714745, + -0.011171197518706322, + -0.004372349474579096, + -0.017396368086338043, + -0.01831115037202835, + -0.025086741894483566, + -0.001964262453839183, + 0.009132318198680878, + 0.004290949087589979, + 0.018652256578207016, + 0.013977563939988613, + -0.009349385276436806, + -0.010194395668804646, + -0.030932046473026276, + 0.023319195955991745, + -0.03277711570262909, + 0.01713278703391552, + 0.008628413081169128, + 0.011109177954494953, + -0.02750548906624317, + -0.0366223007440567, + -0.0010300991125404835, + -0.02652868628501892, + 0.0416148416697979, + 0.02496270462870598, + 0.031056083738803864, + 0.013093790970742702, + 0.003434309968724847, + -0.002577670384198427, + -0.010070357471704483, + 0.0058608087711036205, + -0.03547494858503342, + -0.0063918475061655045, + 0.024404531344771385, + -0.027009334415197372, + -0.006779467221349478, + -0.021753212437033653, + 0.03287014365196228, + 0.02207881398499012, + -0.03482374548912048, + 0.009039289318025112, + 0.025582894682884216, + -0.007515944540500641, + 0.008923003450036049, + -0.016155986115336418, + -0.00752757303416729, + -0.016714157536625862, + 0.026001524180173874, + -0.018776293843984604, + -0.0013372877147048712, + -0.006950019858777523, + 0.020652374252676964, + -0.005620484706014395, + -0.06778691709041595, + 0.006698067300021648, + 0.026265105232596397, + -0.04077758267521858, + 0.04270017892122269, + 0.003052504500374198, + -0.03373841196298599, + -0.006194161716848612, + -0.011830151081085205, + -0.04021941125392914, + -0.008891994133591652, + -0.03426557406783104, + -0.009426909498870373, + -0.049956418573856354, + -0.013737239874899387, + -0.04121171683073044, + -0.011566569097340107, + -0.01124096941202879, + -0.029738176614046097, + 0.012543370947241783, + 0.0006880248547531664, + -0.000525709125213325, + 0.012558875605463982, + 0.013605448417365551, + -0.002277265302836895, + 0.02632712572813034, + -0.017287835478782654, + -0.020156219601631165, + 0.0009104216005653143, + -0.01576061360538006, + -0.001110530225560069, + -0.009985081851482391, + 0.03745955973863602, + -0.0054499320685863495, + -0.013256590813398361, + -0.02614106796681881, + 0.01989263854920864, + 0.01326434314250946, + -0.01632653921842575, + -0.015427260659635067, + -0.03246701881289482, + -0.025815466418862343, + -0.011636340990662575, + -0.010411462746560574, + -0.0058608087711036205, + -0.020636869594454765, + 0.025892991572618484, + 0.021055497229099274, + -0.035288888961076736, + 0.004833616781979799, + 0.028249718248844147, + -0.04586315527558327, + -0.0311801228672266, + 0.002907147165387869, + 0.05485592782497406, + -0.003131966572254896, + 0.006957772187888622, + 0.011450283229351044, + -0.004542902112007141, + 0.004934397991746664, + -0.023489749059081078, + -0.044591762125492096, + 0.0015591998817399144, + 0.02555188536643982, + -0.0037851056549698114, + -0.005349150858819485, + 0.012341808527708054, + 0.012473599053919315, + -0.01223327498883009, + 0.010403710417449474, + -0.03621917590498924, + -0.014458212070167065, + -0.011465788818895817, + 0.023024605587124825, + 0.017752978950738907, + 0.02415645495057106, + 0.014047334901988506, + -0.0024439417757093906, + -0.008341574110090733, + -0.00752757303416729, + -0.026699239388108253, + 0.030420387163758278, + 0.014117106795310974, + -0.01576061360538006, + -0.007667116355150938, + -0.011458036489784718, + -0.004422740079462528, + 0.030730484053492546, + -0.00629106629639864, + 0.029180005192756653, + -0.005201855208724737, + -0.02068338356912136, + 0.059042222797870636, + -0.00860515609383583, + 0.03745955973863602, + 0.017504902556538582, + -0.05894919112324715, + -0.03125764802098274, + 0.010124624706804752, + 0.03485475480556488, + -0.014814822003245354, + 0.040653545409440994, + -0.012372818775475025, + 0.015698594972491264, + 0.03742855042219162, + 0.02542784810066223, + -0.0475376695394516, + -0.01451247837394476, + -0.006818229332566261, + 0.008349326439201832, + -0.014233392663300037, + -0.009760262444615364, + -0.009845538064837456, + -0.03978527709841728, + -0.002011745935305953, + -0.007837668992578983, + 0.0017559168627485633, + 0.009566452354192734, + 0.0037192103918641806, + 0.036870379000902176, + 0.0032656954135745764, + -0.0006822105497121811, + 0.00455840677022934, + -0.020466316491365433, + -0.03206389397382736, + 0.018187113106250763, + 0.016760673373937607, + -0.012558875605463982, + -0.0047328355722129345, + 0.02404792234301567, + -0.03845186531543732, + 0.013713981956243515, + 0.007977211847901344, + -0.019427495077252388, + 0.010047100484371185, + -0.030559930950403214, + -0.0027113992255181074, + 0.01731884479522705, + -0.016000937670469284, + -0.01989263854920864, + 0.03987830504775047, + -0.021660184487700462, + 0.020667878910899162, + -0.0534915067255497, + -0.011961941607296467, + 0.01099289208650589, + -0.004682444967329502, + -0.024823160842061043, + -0.022233862429857254, + -0.005721265450119972, + -0.049057140946388245, + 0.002250131918117404, + -0.0227610245347023, + -0.00015044485917314887, + -0.008791212923824787, + 0.00891525112092495, + 0.002442003693431616, + -0.01401632558554411, + -0.03491677716374397, + -0.03811076283454895, + -0.028931928798556328, + -0.0007844452047720551, + 0.014938860200345516, + -0.015031889081001282, + -0.009372642263770103, + -0.01623350940644741, + -0.029676157981157303, + -0.019923647865653038, + 0.06195712089538574, + -0.005717389285564423, + 0.0012229399289935827, + 0.014434955082833767, + 0.00876795593649149, + -0.024280494078993797, + -0.0026009276043623686, + -0.01282245758920908, + -0.03209490329027176, + -0.004868502262979746, + 0.020915955305099487, + -0.01969107612967491, + 0.006496504880487919, + 0.014287658967077732, + 0.015427260659635067, + -0.03345932438969612, + -0.02228037640452385, + -0.021830737590789795, + 0.004798730835318565, + -0.013287601061165333, + -0.02010970562696457, + 0.002878075698390603, + 0.00820978358387947, + -0.00870593637228012, + -0.019675571471452713, + 0.012054970487952232, + -0.022900566458702087, + 0.004116520285606384, + 0.029567625373601913, + -0.023226168006658554, + -0.011613084003329277, + 0.020171724259853363, + -0.00093174068024382, + 0.017365358769893646, + -0.004794854670763016, + -0.021846242249011993, + 0.0042676921002566814, + 0.004186291713267565, + 0.003087390214204788, + -0.011202206835150719, + -0.018636751919984818, + 0.006523638032376766, + 0.0066941906698048115, + 0.009372642263770103, + 0.01555129885673523, + -0.008132259361445904, + -0.013109295628964901, + 0.022823043167591095, + 0.02702484093606472, + 0.05594126507639885, + -0.008116754703223705, + 0.024078931659460068, + -0.012217770330607891, + -0.030932046473026276, + 0.003922710660845041, + 0.03504081442952156, + -0.026482172310352325, + 0.019536029547452927, + -0.019675571471452713, + 0.01227203756570816, + -0.01643507182598114, + 0.030854521319270134, + -0.010101367719471455, + 0.0025117751210927963, + -0.0018818932585418224, + -0.04276219755411148, + -0.0023935511708259583, + 0.0021067126654088497, + -0.04304128140211105, + -0.01643507182598114, + 0.013078286312520504, + 0.015574556775391102, + 0.019939152523875237, + 0.004655311815440655, + -0.02662171609699726, + 0.009783519431948662, + -0.012093732133507729, + 0.007085686549544334, + -0.001789833651855588, + -0.01702425442636013, + -0.0039847297593951225, + 0.023923883214592934, + 0.048654016107320786, + -0.012868971563875675, + -0.025474362075328827, + 0.042514119297266006, + -0.011721617542207241, + 0.014194631017744541, + -0.008155517280101776, + -0.023412225767970085, + 0.013962059281766415, + -0.03175380080938339, + -0.021319080144166946, + -0.014636516571044922, + 0.01634204387664795, + -0.011969693936407566, + -0.02852880395948887, + -0.030466903001070023, + 0.008690431714057922, + 0.03448264300823212, + 0.018543722108006477, + 0.03981628641486168, + 0.03702542558312416, + -0.004163034725934267, + -0.02604803815484047, + 0.03919609636068344, + -0.029443586245179176, + -9.127231169259176e-5, + 0.007337639573961496, + -0.0035835434682667255, + -0.010876606218516827, + 0.043537437915802, + 0.019349971786141396, + -0.028234213590621948, + -0.009868795983493328, + 0.022947082296013832, + 0.0035273386165499687, + 0.020636869594454765, + -0.016853701323270798, + 0.022202851250767708, + -0.031226636841893196, + 0.007593468297272921, + 0.019660066813230515, + -0.007655487395823002, + 0.01505514606833458, + -0.01711728237569332, + 0.004663064144551754, + 0.05435977503657341, + 0.006015856750309467, + -0.015132670290768147, + 0.021613670513033867, + -0.010039348155260086, + 0.044901855289936066, + 0.002131907967850566, + 0.026001524180173874, + 0.01832665503025055, + -0.015907909721136093, + -0.021753212437033653, + -0.029257528483867645, + -0.02900945208966732, + 0.027877602726221085, + 0.009705995209515095, + 0.030714979395270348, + -0.03349033370614052, + 0.014520230703055859, + 0.011093673296272755, + 0.027893107384443283, + 0.012465846724808216, + -0.021954774856567383, + -0.03206389397382736, + -0.024094436317682266, + -0.0020640743896365166, + 0.01812509447336197, + -0.0021726079285144806, + -0.009543195366859436, + -0.0030660713091492653, + -0.029629644006490707, + -0.008643917739391327, + 0.03547494858503342, + 0.02386186458170414, + -0.05355352535843849, + 0.010675044730305672, + 0.0055584656074643135, + 0.011396016925573349, + -0.018776293843984604, + -0.0505145899951458, + -0.00648875255137682, + -0.0016328477067872882, + 0.00930287130177021, + 0.014714040793478489, + 0.003306395374238491, + -0.018047569319605827, + -0.015109413303434849, + 0.011985198594629765, + 0.027365945279598236, + 0.02257496677339077, + 0.011830151081085205, + -0.004217301495373249, + -0.004581663757562637, + 0.012047218158841133, + -0.020218240097165108, + -0.02048182114958763, + 0.02832724153995514, + 0.032932162284851074, + 0.0106517868116498, + -0.02048182114958763, + -0.0041785393841564655, + -0.010899864137172699, + 0.005116579122841358, + -0.014334173873066902, + -0.014117106795310974, + 0.0017345978412777185, + -0.02187725156545639, + 0.002868385287001729, + 0.04564608633518219, + -0.010861101560294628, + 0.002961413934826851, + -0.00876795593649149, + -0.009271861054003239, + -0.005744522903114557, + -0.003599048126488924, + -0.0067484574392437935, + -0.01208597980439663, + 0.01020214892923832, + 0.013024019077420235, + -0.000222517890506424, + -0.0017501026159152389, + 0.015171431936323643, + 0.03079250268638134, + -0.02831173688173294, + -0.015869148075580597, + 0.0006570152472704649, + -0.007275620475411415, + -0.024109940975904465, + 0.019039876759052277, + 0.009674985893070698, + -0.016652138903737068, + -0.023877369239926338, + -0.0008910406031645834, + -0.01277594268321991, + 0.00551970349624753, + -0.00621354253962636, + 0.004535149782896042, + 0.012806951999664307, + 0.026575202122330666, + -0.007833792828023434, + 0.0017016500933095813, + -0.002033064840361476, + -0.033707402646541595, + -0.007577963639050722, + -0.0316917821764946, + 0.0168381966650486, + 0.004849121440201998, + -0.04561507701873779, + -0.03376942127943039, + -0.019675571471452713, + 0.0050894455052912235, + -0.02259047143161297, + 0.023520758375525475, + 0.00017043150728568435, + 0.037366531789302826, + -0.00579103734344244, + -0.013295353390276432, + 0.004442120902240276, + -0.010682797059416771, + -0.008380336686968803, + -0.005651494022458792, + -0.008194278925657272, + 0.014334173873066902, + -0.027071354910731316, + 0.02288506180047989, + -0.02575344778597355, + -0.0027482230216264725, + -0.029769187793135643, + 0.05615833029150963, + 0.01978410594165325, + 0.028559813275933266, + -0.02049732580780983, + 0.030451398342847824, + 0.04186291992664337, + 0.03457567095756531, + -0.014078345149755478, + 0.03671533241868019, + 0.024621598422527313, + 0.0026997707318514585, + -0.004752216394990683, + -0.013915544375777245, + 0.010062605142593384, + -0.021830737590789795, + 0.02612556330859661, + 0.0045700352638959885, + 0.00682985782623291, + 0.0062523046508431435, + -0.0017791740829125047, + -0.017846006900072098, + -0.030513416975736618, + -0.026497676968574524, + 0.011473541148006916, + 0.02711786888539791, + -0.025598399341106415, + 0.0035040813963860273, + 0.01614048145711422, + 0.006946143694221973, + 0.008853232488036156, + -0.007422915659844875, + -0.010357196442782879, + 0.005473189055919647, + 0.0051437122747302055, + -0.049553293734788895, + 0.0035932338796555996, + -0.015086155384778976, + -0.05001843720674515, + -0.007291125133633614, + -0.018047569319605827, + 0.0079268217086792, + -0.006170904263854027, + 0.04977035894989967, + -0.0003808362816926092, + -0.029738176614046097, + -0.0057522752322256565, + -0.009713747538626194, + 0.015582309104502201, + -0.009380394592881203, + -0.0012006517499685287, + 0.005337522365152836, + -0.026389144361019135, + 0.014341926202178001, + -0.030854521319270134, + -0.019380981102585793, + -0.01762893982231617, + 0.017349854111671448, + -0.03404850885272026, + 0.021861746907234192, + 0.011070416308939457, + -1.7185479009640403e-5, + -0.03283913433551788, + -0.005771656055003405, + 0.017442883923649788, + 0.011302988044917583, + 0.019380981102585793, + -0.003161038039252162, + -0.011961941607296467, + -0.017768483608961105, + 0.04828190058469772, + 0.011907674372196198, + 0.010318434797227383, + 0.005314264912158251, + -0.009504432789981365, + 0.0018751099705696106, + -0.026885297149419785, + 0.022543957456946373, + 0.04418863728642464, + 0.01663663424551487, + 0.028792385011911392, + -0.02059035375714302, + -0.015132670290768147, + -0.0015979618765413761, + -0.014186877757310867, + 0.037769656628370285, + 0.025877486914396286, + 0.0028761376161128283, + 0.002370293950662017, + -0.023210663348436356, + 0.03138168528676033, + 0.01421013567596674, + 0.0385759063065052, + -0.025396836921572685, + 0.012566627934575081, + -0.03345932438969612, + 0.036777351051568985, + -0.0017617312259972095, + -0.028652843087911606, + -0.025071237236261368, + -0.02545885741710663, + 0.019768601283431053, + -0.02555188536643982, + 0.0026745754294097424, + -0.021039992570877075, + 0.021133022382855415, + 0.009380394592881203, + -0.008442355319857597, + 0.022931577637791634, + -0.005922827869653702, + -0.002009807853028178, + -0.027257412672042847, + 0.03206389397382736, + -0.010434720665216446, + 0.018760789185762405, + 0.010419215075671673, + 0.02553638070821762, + 0.021815232932567596, + 0.02197027951478958, + -0.013644210994243622, + -0.020373286679387093, + -0.011171197518706322, + 0.010225405916571617, + 0.003162976121529937, + 0.003323838347569108, + -0.010318434797227383, + 0.021505136042833328, + 0.004143653903156519, + 0.01505514606833458, + -0.009326128289103508, + 0.0017384740058332682, + -0.005283255595713854, + -0.01948951557278633, + -0.018187113106250763, + -0.013039523735642433, + -0.009147822856903076, + -0.007000410463660955, + -0.010279672220349312, + 0.013675220310688019, + 0.01158982701599598, + -0.01538849901407957, + -0.04009537398815155, + 0.0178305022418499, + 0.017008749768137932, + 0.0034730718471109867, + -0.011458036489784718, + -0.00926410872489214, + 0.007058553397655487, + -0.016791682690382004, + -0.03011029213666916, + -0.026699239388108253, + -0.014791565015912056, + -0.014248897321522236, + 8.739611075725406e-5, + -0.0405915267765522, + -0.012132493779063225, + -0.03318024054169655, + -0.00876020360738039, + -0.02296258695423603, + -0.022792033851146698, + 0.004918892867863178, + -0.0030641332268714905, + -0.031428199261426926, + 0.028978442773222923, + 0.03159875050187111, + -0.01595442369580269, + 0.027257412672042847, + 0.032932162284851074, + -0.006221294868737459, + 0.011992950923740864, + -0.01890033297240734, + 0.006930639035999775, + -0.0031668522860854864, + 0.0227765291929245, + 0.0067174481227993965, + -0.006845362484455109, + -0.030932046473026276, + 0.004275444429367781, + 0.007504316046833992, + -0.004868502262979746, + 0.012853466905653477, + 0.01862124726176262, + -0.004818112123757601, + 0.02000117301940918, + 0.006015856750309467, + 0.010194395668804646, + -0.001984612550586462, + -0.0015398189425468445, + 0.010326187126338482, + 0.005717389285564423, + -0.020760906860232353, + 0.04189392924308777, + -0.017086273059248924, + -0.005511951167136431, + -0.0023199033457785845, + -0.03128865733742714, + -0.004159158561378717, + -0.009434661827981472, + 0.014024077914655209, + 0.012465846724808216, + -0.016373053193092346, + 0.02228037640452385, + -0.0035816053859889507, + -0.013287601061165333, + 0.047072526067495346, + 0.027583012357354164, + 0.00012573412095662206, + 0.02099347859621048, + 0.02544335275888443, + -0.018497208133339882, + -0.036002110689878464, + -0.010388205759227276, + 0.03652927279472351, + -0.0005886973231099546, + 0.005977094639092684, + 0.0008343512308783829, + -0.00745392544195056, + -0.004779350012540817, + -0.013729486614465714, + 0.013186819851398468, + 0.008814469911158085, + -0.04682445153594017, + -0.008667174726724625, + -0.031009569764137268, + 0.010209901258349419, + -0.0077989068813622, + 0.01832665503025055, + -0.0178149975836277, + -0.013093790970742702, + -0.0106440344825387, + -0.023009100928902626, + -0.012504609301686287, + 0.008860984817147255, + -0.029769187793135643, + -0.006399599835276604, + -0.006864743307232857, + 0.008651670068502426, + -0.003577729221433401, + -0.020419802516698837, + -0.01603194698691368, + -0.00752369686961174, + -0.015907909721136093, + 0.029257528483867645, + -0.02384635992348194, + -0.01020214892923832, + -0.0001684934104559943, + -0.009892052970826626, + 0.012589884921908379, + -0.022621480748057365, + -0.0022171842865645885, + 0.01703975908458233, + -0.003170728450641036, + -0.0076593635603785515, + -0.022342395037412643, + 0.004686321131885052, + -0.014148116111755371, + -0.0016842072363942862, + -0.0002277265302836895, + -0.0021067126654088497, + -0.007376401219516993, + 0.049863386899232864, + -0.002759851748123765, + 0.027676040306687355, + 0.008985023014247417, + -0.0027385326102375984, + -0.006535266991704702, + 0.030870025977492332, + -0.0018208432011306286, + -0.0006541081238538027, + 0.011706112883985043, + 0.005077817011624575, + 0.01941199041903019, + 0.04735161364078522, + -0.0016628882149234414, + -0.034606680274009705, + -0.024404531344771385, + 0.023985901847481728, + -0.012349560856819153, + -0.03646725416183472, + -0.01365971565246582, + 0.008985023014247417, + -0.008116754703223705, + 0.01724132150411606, + 0.022450927644968033, + -0.0030001758132129908, + 0.023536263033747673, + 0.010868853889405727, + -0.016404062509536743, + 0.007097315508872271, + 0.0023005225230008364, + -0.012551123276352882, + -0.011899922043085098, + -0.03513384237885475, + 0.0009559668833389878, + -0.046762432903051376, + -0.020233744755387306, + 0.01520244125276804, + 0.0227765291929245, + 0.001693897764198482, + -0.009783519431948662, + -0.007000410463660955, + 0.0027540375012904406, + -0.005155340768396854, + -0.029459090903401375, + 0.022249367088079453, + -0.01034944411367178, + -0.0021241556387394667, + 0.03575403243303299, + 0.0003580636403057724, + 0.0040389965288341045, + -0.005647617857903242, + -0.004756092559546232, + 0.012310799211263657, + -0.014520230703055859, + 0.022109823301434517, + 0.0005140805151313543, + 0.05439078435301781, + -0.0029652900993824005, + 0.014621011912822723, + 0.0395992211997509, + -0.030342863872647285, + 0.023381216451525688, + -0.02386186458170414, + -0.011427026242017746, + 0.015528041869401932, + -0.016171490773558617, + -0.013396134600043297, + 0.011419273912906647, + 0.014117106795310974, + -0.013279848732054234, + 0.023815348744392395, + 0.001802431303076446, + 0.0316762737929821, + 0.0038858866319060326, + 0.02494719810783863, + 0.009969576261937618, + 0.004872378893196583, + 0.014318669214844704, + 0.00621354253962636, + -0.014489221386611462, + -0.0030718855559825897, + -0.02832724153995514, + 0.0014429140137508512, + 0.009830033406615257, + 0.019954659044742584, + -0.021350089460611343, + 0.012031713500618935, + -0.021799728274345398, + 0.01989263854920864, + 0.013737239874899387, + 0.029148995876312256, + -0.00910130888223648, + 0.005616608541458845, + -0.009543195366859436, + 0.06908932328224182, + -0.001065953983925283, + -0.00036363565595820546, + 0.01790802739560604, + 9.751056495588273e-5, + 0.007643858902156353, + 0.010946378111839294, + 0.014272154308855534, + 0.024001406505703926, + -0.0043762256391346455, + -0.023505253717303276, + -0.01801656000316143, + 0.008899746462702751, + 0.020326772704720497, + -0.0004273506347090006, + 0.004984788130968809, + 0.024978209286928177, + 0.004663064144551754, + 0.006050742231309414, + 0.00011325760715408251, + -0.009845538064837456, + 0.004566159099340439, + -0.0021454745437949896, + -0.014458212070167065, + -0.0013644210994243622, + -0.025660419836640358, + 0.014628764241933823, + 0.012713924050331116, + -0.01891583763062954, + 0.01030292920768261, + 0.015907909721136093, + 0.007674868684262037, + 0.03011029213666916, + 0.03018781542778015, + -0.02189275622367859, + 0.02009420096874237, + 0.006574028637260199, + 0.01014788169413805, + 0.0015136545989662409, + 0.008512127213180065, + 0.005349150858819485, + 0.0025641038082540035, + -0.002238503424450755, + -0.020636869594454765, + -0.012465846724808216, + 0.004089387133717537, + 0.007050801068544388, + -0.01104715932160616, + -0.01820261776447296, + -0.01821812242269516, + -0.0006347271264530718, + -0.01083784457296133, + -0.006124389823526144, + -0.019551534205675125, + -0.018993360921740532, + -0.010008338838815689, + -0.013884535059332848, + -0.026497676968574524, + -0.017504902556538582, + -0.0096439765766263, + 0.0077989068813622, + 0.020528335124254227, + -0.011512302793562412, + -0.03640523552894592, + -0.01643507182598114, + 0.001575673813931644, + -0.0006783343269489706, + -0.022792033851146698, + -0.022543957456946373, + 0.024528570473194122, + -0.02424948289990425, + 0.003345157252624631, + -0.0017268453957512975, + 0.006729076616466045, + -0.008923003450036049, + 0.01049673929810524, + 0.017783988267183304, + -0.014590002596378326, + 0.016652138903737068, + -0.041335757821798325, + -0.01133399736136198, + 0.027288421988487244, + 0.0046785688027739525, + 0.01381476316601038, + -0.008077993057668209, + 0.0037831675726920366, + 0.009209842421114445, + 0.004434368573129177, + 0.015411756001412868, + -0.04800281301140785, + -0.015907909721136093, + -0.0009981205221265554, + 0.0008067333255894482, + 0.006527514662593603, + -0.017287835478782654, + -0.01840418018400669, + -0.013605448417365551, + 0.0027365945279598236, + 0.008798965252935886, + -0.011403769254684448, + -0.023412225767970085, + -0.010256415233016014, + 0.03009478747844696, + -0.0014041521353647113, + 0.016481585800647736, + -0.020156219601631165, + -0.026792269200086594, + 0.017892520874738693, + -0.029086977243423462, + -0.011442530900239944, + -0.004790978506207466, + -0.0037114578299224377, + -0.003333528758957982, + 0.020373286679387093, + -0.018497208133339882, + 0.0021551651880145073, + -0.006810477003455162, + 0.009124565869569778, + 0.020233744755387306, + 0.004166910890489817, + 0.002294708276167512, + 0.012659656815230846, + -0.0077911545522511005, + 0.013923296704888344, + -0.010070357471704483, + 0.0052328649908304214, + 0.012303046882152557, + 0.007756268605589867, + -0.013574439100921154, + -0.008403593674302101, + 0.005085569340735674, + 0.0029555996879935265, + -0.0014380688080564141, + -0.0037599103525280952, + 0.00628719013184309, + 0.011271978728473186, + 0.00905479397624731, + -0.017070768401026726, + -0.030652958899736404, + -0.015349737368524075, + 0.004779350012540817, + 0.0022171842865645885, + -0.006077875848859549, + -0.012504609301686287, + 0.00578716117888689, + -0.003913020249456167, + -0.0302033219486475, + 0.028683852404356003, + 0.012644152157008648, + -0.01565208099782467, + 0.014760555699467659, + 0.010535500943660736, + -0.006558523979038, + -0.01860574260354042, + -0.006085628177970648, + -0.0014768308028578758, + -0.014985374175012112, + -0.022652490064501762, + -0.0008585774921812117, + -0.014768308028578758, + 0.01540400367230177, + -1.700378197710961e-5, + -0.011551064439117908, + -0.03584706410765648, + 0.001016532420180738, + 0.0024923940654844046, + 0.001593116670846939, + -0.04704151675105095, + -0.004449873231351376, + 0.02662171609699726, + -0.002785047050565481, + 0.005744522903114557, + -0.0071089440025389194, + 0.0019681386183947325, + 0.018776293843984604, + -0.0118844173848629, + 0.012845714576542377, + -0.029676157981157303, + 0.0395992211997509, + -0.025071237236261368, + -0.007690373342484236, + -0.04518094286322594, + -0.015512537211179733, + 0.01862124726176262, + 0.018559226766228676, + 0.012194513343274593, + -0.015124917961657047, + -0.03752157837152481, + 0.001740412088111043, + -0.01193093229085207, + 0.0022268746979534626, + -0.030265340581536293, + -0.01352017279714346, + 0.018683265894651413, + 0.001474892720580101, + 0.007593468297272921, + 0.00435684435069561, + -0.0027559755835682154, + 0.015272213146090508, + -0.00801597349345684, + 0.01882280968129635, + 0.0017811121651902795, + 0.019427495077252388, + -0.028745871037244797, + 0.021861746907234192, + -0.01634204387664795, + -0.017768483608961105, + -0.006938391365110874, + -0.0031765426974743605, + -0.03090103715658188, + -0.01871427521109581, + 0.002013684017583728, + -0.01643507182598114, + 0.009744757786393166, + 0.013155809603631496, + 0.010093615390360355, + -0.011264226399362087, + -0.01069054938852787, + 0.010085862129926682, + -0.0009632347500883043, + 0.003670757869258523, + -0.005814294330775738, + -0.0024478179402649403, + -0.01721031218767166, + -0.01604745164513588, + -0.025117751210927963, + 0.00717483926564455, + 0.022156337276101112, + 0.002304398687556386, + 0.017644444480538368, + 0.028079165145754814, + 0.00926410872489214, + 0.017877016216516495, + 0.0011638279538601637, + 0.02079191617667675, + 0.008527631871402264, + -0.0034207431599497795, + 0.0007258177502080798, + 0.00027884385781362653, + 0.0002991938963532448, + 0.010318434797227383, + -0.0017607621848583221, + -0.019055381417274475, + -0.0131248002871871, + -0.027583012357354164, + -0.0002488033496774733, + 0.0054499320685863495, + 0.008628413081169128, + -0.0053065125830471516, + -0.007764020934700966, + 0.008667174726724625, + 0.01603194698691368, + -0.005166969727724791, + -0.00552357966080308, + -0.004197920672595501, + 0.028978442773222923, + 0.006077875848859549, + 0.013008514419198036, + 0.006341456901282072, + -0.00945791881531477, + 0.009473423473536968, + -0.010713806375861168, + 0.010326187126338482, + 0.014241144992411137, + -0.02583097107708454, + 0.013915544375777245, + -0.0040700058452785015, + -0.012341808527708054, + -0.0030079283751547337, + -0.029862215742468834, + -0.03308721259236336, + 0.017473893240094185, + -0.02989322505891323, + 0.026311619207262993, + 0.012241027317941189, + -0.00621354253962636, + -0.008101250045001507, + -0.017101777717471123, + 0.02090045064687729, + 0.000867783441208303, + -0.000835804792586714, + 0.027458973228931427, + -0.039041049778461456, + -0.017659949138760567, + -0.012512361630797386, + 0.010605272836983204, + 0.0034575669560581446, + 0.044219646602869034, + 0.029288537800312042, + -0.0052522458136081696, + -0.012605390511453152, + -0.00837258342653513, + -0.0028005517087876797, + 0.014621011912822723, + 0.016373053193092346, + 0.01138826459646225, + -0.01034169178456068, + 0.040157392621040344, + -0.032715097069740295, + -0.019660066813230515, + -0.014171373099088669, + 0.01000058650970459, + -0.020264754071831703, + 0.029877720400691032, + 0.021737707778811455, + 0.022001290693879128, + 0.012310799211263657, + 0.019241437315940857, + -0.011465788818895817, + -0.033614374697208405, + -0.004023491870611906, + -0.015365242026746273, + -0.02139660343527794, + 0.0021454745437949896, + 0.007508192211389542, + -0.022730015218257904, + 0.012783695012331009, + 0.009364889934659004, + -0.0007219415274448693, + -0.002833499340340495, + -0.006643800530582666, + 0.009233099408447742, + -0.03127315267920494, + 0.010085862129926682, + -0.016900215297937393, + 0.008077993057668209, + 0.0022152462042868137, + 0.02792411856353283, + 0.008636165410280228, + -0.007608973421156406, + 0.0032017379999160767, + 0.006318199913948774, + 0.014256649650633335, + 0.006019732914865017, + -0.013357372023165226, + 0.01293099019676447, + -0.0227765291929245, + 0.029350558295845985, + -0.028869910165667534, + -0.00862066075205803, + -0.004775473847985268, + 0.007651611231267452, + 0.004535149782896042, + -0.0030273091979324818, + -0.024094436317682266, + -0.0024284368846565485, + -0.016466081142425537, + 0.04502589628100395, + 0.010582015849649906, + -0.015698594972491264, + -0.028761375695466995, + -0.004244434647262096, + 0.030575435608625412, + -0.017659949138760567, + -0.005977094639092684, + -0.0057522752322256565, + 0.023815348744392395, + 0.028249718248844147, + 0.0015194689622148871, + 0.007678744848817587, + 0.006384095177054405, + 0.009411404840648174, + 0.0020020552910864353, + -0.012132493779063225, + -0.001316937617957592, + 0.005872437264770269, + 0.019520524889230728, + -0.0024710751604288816, + 0.006019732914865017, + 0.0395682118833065, + -0.01702425442636013, + 0.009961823932826519, + 0.007961707189679146, + -0.011271978728473186, + 0.023815348744392395, + -0.01282245758920908, + 0.013287601061165333, + -0.0022171842865645885, + 0.008093497715890408, + -0.030234331265091896, + -0.013938801363110542, + -0.017287835478782654, + 0.008093497715890408, + 4.690802961704321e-5, + -0.038637924939394, + -0.0013770187506452203, + 0.01643507182598114, + -0.014055087231099606, + 0.0212880689650774, + 0.03801773115992546, + 0.01049673929810524, + -0.022931577637791634, + 0.039537202566862106, + -0.01593891903758049, + -0.0019836435094475746, + 0.022652490064501762, + -0.004670816473662853, + 0.008659422397613525, + -0.012155751697719097, + 0.0035641624126583338, + -0.0019410052336752415, + -0.02358277700841427, + -0.022357899695634842, + 0.013985316269099712, + 0.0013140304945409298, + 0.00025655573699623346, + 0.0038858866319060326, + -0.02811017446219921, + -0.0038645677268505096, + -0.02207881398499012, + -0.03823480010032654, + -0.018264636397361755, + -0.032715097069740295, + -0.01227978989481926, + 0.0008319286280311644, + 0.005895694252103567, + -0.0025214655324816704, + 0.022249367088079453, + 0.005760027561336756, + 0.0054460559040308, + 0.006570152472704649, + -0.02535032294690609, + -0.019629057496786118, + 0.013155809603631496, + 0.022125327959656715, + -0.0030757617205381393, + 0.00012476506526581943, + -0.02485417015850544, + 0.012946495786309242, + 0.004372349474579096, + -0.020032182335853577, + 0.00551582733169198, + -0.009372642263770103, + 0.009589709341526031, + 0.026466667652130127, + -0.02325717732310295, + -0.020652374252676964, + 0.005670875310897827, + 0.03522687032818794, + -0.008822222240269184, + -0.0036746340338140726, + -0.025319313630461693, + -0.017303340137004852, + -0.006984905805438757, + -0.008039231412112713, + -0.0013682972639799118, + 0.006775591056793928, + 0.015582309104502201, + -0.007930697873234749, + -0.009907557629048824, + -0.015140422619879246, + 0.015582309104502201, + -0.0010601396206766367, + -0.0015417570248246193, + 0.009140070527791977, + 0.005201855208724737, + 0.021629175171256065, + 0.004027368035167456, + -0.005845304112881422, + 0.0004559375811368227, + 0.012318551540374756, + -0.02307111956179142, + 0.001191930379718542, + -0.025009218603372574, + -0.0041785393841564655, + 0.017690960317850113, + 0.013962059281766415, + -0.005015797913074493, + 0.0010010276455432177, + 0.005492569878697395, + -0.005376284010708332, + -0.0008081868872977793, + -0.009667233563959599, + -0.005949961021542549, + 0.00030040519777685404, + 0.0014903974952176213, + -0.006077875848859549, + -0.007364772725850344, + -0.002961413934826851, + -0.010101367719471455, + 0.01293099019676447, + 0.023722320795059204, + -0.014915603213012218, + -0.001179332728497684, + -0.03594009205698967, + 0.061833083629608154, + -0.011116931214928627, + 0.0012810828629881144, + 0.006046866066753864, + 0.015372994355857372, + -0.019039876759052277, + -0.005682503804564476, + 0.005632113199681044, + 0.020156219601631165, + -0.012791447341442108, + -0.01484583131968975, + -0.017365358769893646, + 0.02683878317475319, + 0.0038587532471865416, + -0.028885414823889732, + -0.004756092559546232, + 0.00039561427547596395, + -0.0038219294510781765, + 0.022156337276101112, + 0.004837492946535349, + 0.00047822570195421576, + -0.00023378308105748147, + -0.008938508108258247, + -0.004810359328985214, + 0.002385798841714859, + 0.016574615612626076, + -0.004000234417617321, + -0.019474009051918983, + 0.02832724153995514, + 0.014396192505955696, + -0.00015105052443686873, + -0.006186409387737513, + -0.0019652314949780703, + -0.021815232932567596, + 0.0006453866953961551, + 0.008690431714057922, + -0.004403358791023493, + 0.023489749059081078, + -0.010861101560294628, + -0.0011870850576087832, + 0.010744815692305565, + -0.01490009855479002, + 0.030947551131248474, + 0.02158266119658947, + -0.04077758267521858, + 0.0030292472802102566, + -0.013279848732054234, + -0.004236682318150997, + 0.0055894749239087105, + 0.025629408657550812, + 0.013442648574709892, + -0.033924467861652374, + 0.002661008620634675, + 0.010054852813482285, + 0.025009218603372574, + 0.0008435571799054742, + 0.014047334901988506, + -0.0013363186735659838, + 0.01015563402324915, + -0.00930287130177021, + -0.013148057274520397, + 0.0072484868578612804, + 0.001561138080433011, + -0.01055100653320551, + -0.03136618062853813, + -0.007430667988955975, + -0.009155575186014175, + -0.01258213259279728, + -0.0010863039642572403, + 0.0028993948362767696, + -0.0031920475885272026, + -0.005411169957369566, + 0.010830092243850231, + -0.025877486914396286, + -0.008969518356025219, + 0.004298701416701078, + 0.006837610155344009, + 0.02750548906624317, + 0.028544308617711067, + -0.007116696331650019, + -0.007930697873234749, + -0.0024458798579871655, + -0.008380336686968803, + -0.0155978137627244, + 0.0017384740058332682, + -0.008698184043169022, + 0.015039641410112381, + -0.026110058650374413, + -0.008504374884068966, + -0.028931928798556328, + -0.026001524180173874, + -0.008930755779147148, + 0.005550712812691927, + 0.002405179664492607, + -0.01663663424551487, + 0.015086155384778976, + -0.0035002052318304777, + -0.012140247039496899, + -0.009985081851482391, + 0.0063918475061655045, + 0.025381332263350487, + 0.005225112661719322, + -0.0012103422777727246, + -1.9456688278296497e-6, + 0.003546719439327717, + 0.007050801068544388, + 0.016869205981492996, + 0.0022288127802312374, + -0.016280023381114006, + -0.005825922824442387, + 0.0003428010968491435, + -0.00807024072855711, + 0.006845362484455109, + -0.009016032330691814, + -0.019551534205675125, + -0.012837962247431278, + 0.005368531681597233, + 0.005271627102047205, + -0.02108650840818882, + -0.02206330932676792, + -0.016218004748225212, + -0.005934456363320351, + -0.009566452354192734, + -0.016357548534870148, + -0.0070197912864387035, + -0.0005949961487203836, + 0.000901215651538223, + -0.0012461970327422023, + -0.0008643917390145361, + 0.00788030680269003, + 0.01612497679889202, + 0.007070181891322136, + 0.010783578269183636, + -0.012721676379442215, + 0.007232982199639082, + 0.005147588439285755, + -0.008884241804480553, + 0.00455453060567379, + 0.019148409366607666, + -0.01961355283856392, + 0.03755258768796921, + -0.010457977652549744, + -0.0009026692132465541, + 0.013365124352276325, + 0.006872496102005243, + -0.007891935296356678, + -0.002267574891448021, + -0.016962233930826187, + 0.02642015367746353, + 0.0155978137627244, + 0.02286955714225769, + -0.0326530784368515, + 0.0027462849393486977, + -0.00806248839944601, + 0.0020291886758059263, + 0.00594220869243145, + -0.020838430151343346, + 0.024931693449616432, + -0.027350440621376038, + -0.004473130218684673, + 0.006849238649010658, + 0.0029575377702713013, + -0.023319195955991745, + 0.014644268900156021, + -0.018543722108006477, + 0.017055263742804527, + 0.001110530225560069, + 0.019179418683052063, + 0.019567038863897324, + -0.005225112661719322, + -0.018481703475117683, + 0.007690373342484236, + 0.01623350940644741, + -0.019722087308764458, + -0.02435801737010479, + -0.0025912371929734945, + 0.01989263854920864, + 0.012884476222097874, + -0.006120513658970594, + 0.013713981956243515, + 0.0029381567146629095, + -0.005046807695180178, + 0.012543370947241783, + 0.0012248780112713575, + -0.014233392663300037, + -0.019241437315940857, + 0.011427026242017746, + -0.017163796350359917, + 0.017008749768137932, + -0.006341456901282072, + -0.008504374884068966, + 0.025226285681128502, + 0.007860925979912281, + -0.00276178983040154, + 0.006167028099298477, + 0.0009239882929250598, + 0.024109940975904465, + 0.007992716506123543, + 0.016295528039336205, + 0.002494332380592823, + 0.0066941906698048115, + 0.0011677041184157133, + 0.01941199041903019, + 0.01891583763062954, + 0.0017772360006347299, + -0.016466081142425537, + -0.028265222907066345, + -0.008853232488036156, + 0.001802431303076446, + -0.010085862129926682, + -0.004240558482706547, + -0.018047569319605827, + 0.007531449198722839, + 0.007213601376861334, + -0.015303222462534904, + 0.0005155340768396854, + -0.004907264374196529, + 0.014714040793478489, + -0.005732894409447908, + 0.012318551540374756, + 0.01049673929810524, + -0.0006594379083253443, + -0.010744815692305565, + -0.031645264476537704, + 0.00200399337336421, + 0.01118670217692852, + -0.0003146986709907651, + -0.007477182429283857, + 0.019272448495030403, + -0.002907147165387869, + 0.017799492925405502, + -0.011985198594629765, + -0.001903212396427989, + 0.005829798988997936, + 0.004775473847985268, + 0.042017966508865356, + 0.019551534205675125, + -0.021443117409944534, + 0.003124214243143797, + 0.0006841486319899559, + -0.01643507182598114, + 0.018342159688472748, + -0.02156715653836727, + -0.0028218708466738462, + -0.008535384200513363, + -0.005988723132759333, + 0.012256532907485962, + -0.009589709341526031, + -0.0008236917201429605, + -3.3341344533255324e-5, + -0.006240676157176495, + -0.00413590157404542, + -0.0038917011115700006, + 0.004387854132801294, + 0.0060546183958649635, + -0.009543195366859436, + -0.014233392663300037, + 0.011078168638050556, + -0.019458504393696785, + -0.021536145359277725, + -0.009674985893070698, + 0.0014390378491953015, + -0.00036460469709709287, + -0.011938684619963169, + 0.009271861054003239, + 0.007585715968161821, + -0.022357899695634842, + 0.003955658059567213, + -0.010078109800815582, + 0.019737591966986656, + 0.007593468297272921, + 0.00961296632885933, + 0.0006579842884093523, + -0.0020272505935281515, + 0.005674751475453377, + 0.0038761962205171585, + 0.020373286679387093, + -0.0008939477265812457, + -0.0030583187472075224, + -0.0021706698462367058, + -0.005054560024291277, + -0.008039231412112713, + -0.0015146236401051283, + -0.020559344440698624, + -0.014969869516789913, + -0.019923647865653038, + 0.022543957456946373, + 0.013597696088254452, + 0.006124389823526144, + 0.006798848044127226, + -0.01421013567596674, + 0.004666940309107304, + -0.008085745386779308, + -0.003149409545585513, + 0.008457859978079796, + 0.007434544153511524, + 0.006042989902198315, + -0.00979902409017086, + 0.028590822592377663, + -0.00910130888223648, + -0.003316085785627365, + -0.0023509131278842688, + -0.005825922824442387, + -0.01832665503025055, + 0.0054499320685863495, + 0.018063073977828026, + -0.003288952400907874, + -0.014241144992411137, + -0.017086273059248924, + 0.019349971786141396, + -0.010047100484371185, + -0.014442707411944866, + -0.0060003516264259815, + -0.00648100022226572, + -0.005256121978163719, + -0.01731884479522705, + 0.01841968484222889, + 0.03693239763379097, + 0.0020001172088086605, + -0.009760262444615364, + -0.021505136042833328, + -0.002597051439806819, + 0.03029634989798069, + 0.008116754703223705, + 0.032529037445783615, + -0.021536145359277725, + 0.002622246742248535, + -0.006515885703265667, + -0.013093790970742702, + -0.002887766109779477, + 0.011155692860484123, + 0.000970018096268177, + -0.021551651880145073, + -0.01959804818034172, + -0.0077136303298175335, + 0.027955127879977226, + 0.0017278144368901849, + -0.001986550632864237, + -0.018078578636050224, + -0.0039847297593951225, + -0.0168226920068264, + -0.017489397898316383, + -0.009969576261937618, + 0.00046005603508092463, + -0.008512127213180065, + 0.016388557851314545, + -0.009295118972659111, + -0.01573735661804676, + 0.0057522752322256565, + 0.008992775343358517, + -0.017768483608961105, + 0.003944029565900564, + 0.03919609636068344, + 0.00821753591299057, + -0.030963055789470673, + 0.0007311475346796215, + 0.025629408657550812, + 0.01277594268321991, + 0.01346590556204319, + -0.019039876759052277, + -0.0009123596828430891, + 0.011744874529540539, + -0.006527514662593603, + -0.009047041647136211, + 0.020016677677631378, + 0.00013397102884482592, + 0.006996534299105406, + 0.013396134600043297, + -0.027071354910731316, + 0.014613259583711624, + -0.011372759938240051, + -0.021660184487700462, + 0.0031532857101410627, + 0.017970046028494835, + -0.014489221386611462, + 0.029242023825645447, + 0.0007917130715213716, + 0.0005198948201723397, + -0.01941199041903019, + -0.006240676157176495, + 0.012186761014163494, + 0.010938625782728195, + -0.0014312854036688805, + -0.022326890379190445, + 0.013047276064753532, + 0.01851271279156208, + 0.023520758375525475, + 0.027396954596042633, + 0.02632712572813034, + -0.010318434797227383, + 0.0032734477426856756, + 0.013938801363110542, + 0.01821812242269516, + -0.004523520823568106, + -0.004453749395906925, + 0.009411404840648174, + -0.014465964399278164, + 0.009217594750225544, + 0.006318199913948774, + -0.014093849807977676, + -0.0076826210133731365, + -0.004934397991746664, + 0.00682985782623291, + -0.007717506494373083, + 0.0045932927168905735, + -0.023737825453281403, + 0.007577963639050722, + 0.01242708507925272, + 0.030575435608625412, + 0.0004389792156871408, + -0.0096517289057374, + 0.0020931458566337824, + -0.0056437416933476925, + -0.0008983084699138999, + 0.020373286679387093, + -0.013396134600043297, + -0.014124859124422073, + -0.0045157684944570065, + 0.012442589737474918, + -0.001986550632864237, + 0.022512948140501976, + -0.010752568021416664, + 0.0066941906698048115, + 0.011163445189595222, + -0.001786926412023604, + -0.011427026242017746, + 0.025505371391773224, + -0.00206795078702271, + -0.0024710751604288816, + 0.003281200071796775, + 0.011907674372196198, + -0.03745955973863602, + -0.02514876052737236, + 0.002461384516209364, + -0.023117633536458015, + -0.0012239089701324701, + 0.021055497229099274, + -0.008651670068502426, + 0.010426967404782772, + -0.009713747538626194, + 0.004395606461912394, + 0.0017607621848583221, + -0.002207493642345071, + -0.01158207468688488, + 0.014427202753722668, + -0.013024019077420235, + -0.004488635342568159, + 0.00961296632885933, + -0.019070886075496674, + -0.01634204387664795, + 0.00132953526917845, + -0.011178949847817421, + -0.007221353705972433, + 0.0028102423530071974, + -0.014652022160589695, + -0.0036106768529862165, + -0.002893580589443445, + -0.008310564793646336, + 0.009186585433781147, + -0.018776293843984604, + 0.008946260437369347, + 0.0033025192096829414, + 0.005511951167136431, + -0.012806951999664307, + -0.0046475594863295555, + 0.008279555477201939, + 0.018931342288851738, + 0.0061437711119651794, + -0.013194572180509567, + 0.015528041869401932, + -0.0020350029226392508, + 0.030963055789470673, + 0.035288888961076736, + 0.015892405062913895, + 0.020574849098920822, + 0.017675455659627914, + -0.016559110954403877, + 0.007709754165261984, + -0.003736653132364154, + -0.01939648576080799, + -0.005310388747602701, + -0.010194395668804646, + -0.0060546183958649635, + -0.02801714651286602, + 0.024528570473194122, + -0.018993360921740532, + 0.0069345152005553246, + -0.0006788188475184143, + 0.013628706336021423, + 0.004779350012540817, + 0.01711728237569332, + 0.021939270198345184, + 0.0019293766235932708, + -5.7143610320053995e-5, + 0.015024136751890182, + -0.013915544375777245, + 0.03090103715658188, + -0.015876900404691696, + 0.008543136529624462, + -0.009295118972659111, + 0.017675455659627914, + 0.002924590138718486, + -0.00860515609383583, + -0.02533481828868389, + 0.022528452798724174, + -0.007593468297272921, + -0.004290949087589979, + 0.009667233563959599, + 0.0024206845555454493, + -0.008791212923824787, + 0.0037211484741419554, + 0.0053413985297083855, + -0.03158324584364891, + 0.018295645713806152, + -0.006244552321732044, + 0.026699239388108253, + -0.0022733891382813454, + -0.0020272505935281515, + 0.006798848044127226, + 0.009581957012414932, + 0.005228988826274872, + -0.012496856972575188, + 0.003397485939785838, + -0.01020214892923832, + 0.01020214892923832, + -0.009985081851482391, + 0.007279496639966965, + -0.00039343390380963683, + -0.012535618618130684, + -0.007539201527833939, + -0.010969635099172592, + 0.007744640111923218, + -0.00017927408043760806, + -0.03634321689605713, + 0.017504902556538582, + 0.02040429785847664, + 0.02397039718925953, + -0.000249287870246917, + 0.04660738259553909, + -0.024513065814971924, + 0.020574849098920822, + -0.006438361946493387, + 0.001056263456121087, + -0.006329828407615423, + -0.006701943464577198, + -0.0213035736232996, + 0.02218734659254551, + 0.006058494560420513, + -0.007969459518790245, + -0.005701884627342224, + -0.019923647865653038, + 0.00017055263742804527, + -0.002033064840361476, + 0.017194805666804314, + 0.02842027135193348, + -0.023443235084414482, + 0.01762893982231617, + -0.0011221588356420398, + -0.01662112958729267, + 0.026683734729886055, + 0.01801656000316143, + 0.006946143694221973, + -0.006046866066753864, + -0.017799492925405502, + -0.03009478747844696, + -0.001312092412263155, + 0.01624901406466961, + -0.00042468574247322977, + 0.0118766650557518, + 0.0030757617205381393, + -0.025474362075328827, + -0.00482974061742425, + -0.00752369686961174, + -0.0038994534406811, + -0.011791388504207134, + -0.01823362708091736, + -0.03274610638618469, + 0.0021822985727339983, + 0.009690490551292896, + -0.005104950629174709, + 0.002742408774793148, + -0.018466198816895485, + -0.0023528512101620436, + -0.007314382120966911, + -0.010659540072083473, + 0.00463205436244607, + -0.005872437264770269, + -0.00026915338821709156, + 0.0406225360929966, + -0.010465729981660843, + 0.02555188536643982, + -0.01921042799949646, + -0.005508075002580881, + 0.007705878000706434, + 0.026885297149419785, + 0.0028722614515572786, + -0.011116931214928627, + 0.0005882128025405109, + -0.02851329930126667, + -0.02792411856353283, + -0.012458094395697117, + 0.0062833139672875404, + 0.0143574308604002, + -0.0047328355722129345, + -0.008574145846068859, + 0.008977270685136318, + -0.01731884479522705, + 0.013489162549376488, + -0.005166969727724791, + 0.0059693423099815845, + -0.004426616244018078, + -0.012016207911074162, + 0.012179008685052395, + -0.02545885741710663, + 0.024032415822148323, + -0.004887883551418781, + -0.004946026485413313, + -0.014807069674134254, + 0.023350205272436142, + -0.00559722725301981, + 0.008496622554957867, + 0.007802783045917749, + 0.0006400569109246135, + -0.0018654194427654147, + -0.0022365651093423367, + -0.009039289318025112, + 0.008512127213180065, + 0.01316356286406517, + 0.023892873898148537, + 0.0014341926435008645, + 0.003825805615633726, + 0.006686438340693712, + 0.0011861160164698958, + -0.03522687032818794, + -0.01614048145711422, + -0.01634204387664795, + -0.017489397898316383, + 0.015907909721136093, + -0.0008401655359193683, + -0.016667643561959267, + 0.005511951167136431, + -0.0024749513249844313, + -0.0030718855559825897, + -0.005391789134591818, + 0.005403417628258467, + -0.012303046882152557, + -0.0025078989565372467, + 0.00337810511700809, + 0.0011551064671948552, + -0.002897456753998995, + -0.024094436317682266, + 0.011101425625383854, + -0.021768718957901, + 0.0012142184423282743, + 0.01733434945344925, + -0.009830033406615257, + -0.006496504880487919, + -0.016512595117092133, + 0.03206389397382736, + 0.0005368531565181911, + -0.045708104968070984, + 0.006512009538710117, + 0.002798613626509905, + 0.025629408657550812, + -0.004445997066795826, + -0.0026299990713596344, + 0.0034284954890608788, + 0.009155575186014175, + -0.009698242880403996, + -0.011721617542207241, + -6.377554382197559e-5, + -0.018171608448028564, + -0.011427026242017746, + 0.009581957012414932, + -0.004062253516167402, + 0.02268350124359131, + -0.0010136252967640758, + -0.023784339427947998, + 0.01326434314250946, + -0.011000645346939564, + -0.010605272836983204, + 0.005011921748518944, + 0.01103940699249506, + -0.008194278925657272, + -1.1976841051364318e-5, + 0.003131966572254896, + 0.015613318420946598, + -0.025086741894483566, + -0.006709695793688297, + -0.0030214949510991573, + -0.0012820519041270018, + 0.013109295628964901, + -0.009620718657970428, + -0.014667526818811893, + 0.0014119044644758105, + 0.011861160397529602, + 0.018295645713806152, + -0.02483866550028324, + -0.028544308617711067, + 0.0030738236382603645, + -0.016295528039336205, + -0.003224995220080018, + 0.008946260437369347, + -0.013016266748309135, + 0.009388146921992302, + -0.018171608448028564, + 0.0002657617151271552, + 0.010256415233016014, + -0.0010804897174239159, + -0.007833792828023434, + 0.029660653322935104, + -0.016078462824225426, + 0.0024749513249844313, + 0.006294942460954189, + 0.010434720665216446, + -0.009233099408447742, + -0.03256004676222801, + -0.00262418482452631, + -0.013698477298021317, + -0.0002783593372441828, + 0.010047100484371185, + 0.0051979790441691875, + -0.022357899695634842, + -0.010248662903904915, + -0.01772196963429451, + -0.015062898397445679, + -0.008132259361445904, + 0.01801656000316143, + -0.015078403055667877, + 0.005725141614675522, + 0.0366223007440567, + 0.004244434647262096, + -0.009426909498870373, + 0.007209725212305784, + -0.010519996285438538, + -0.01969107612967491, + 0.006628295406699181, + 0.018156103789806366, + -0.0049809119664132595, + 0.03324225917458534, + -0.004725083243101835, + -0.025272799655795097, + -0.006876372266560793, + 0.004721207078546286, + 0.013241086155176163, + -0.010605272836983204, + -0.00822528824210167, + 0.022636985406279564, + -0.022807538509368896, + 0.01674516685307026, + -0.003523462451994419, + -0.020714392885565758, + 0.018373170867562294, + -0.014403944835066795, + 0.0016522286459803581, + 0.01030292920768261, + -0.006531390827149153, + -0.014225640334188938, + 0.006895753089338541, + 0.01345815323293209, + 0.025226285681128502, + 0.009147822856903076, + -0.010419215075671673, + 0.01291548553854227, + -0.004535149782896042, + -0.0051785982213914394, + -0.008884241804480553, + -0.009388146921992302, + 0.005337522365152836, + 0.037366531789302826, + -0.009062547236680984, + 0.003349033650010824, + -0.012845714576542377, + -0.03274610638618469, + 0.008860984817147255, + -0.012512361630797386, + -0.0002456539368722588, + -0.00435296818614006, + -0.003352909814566374, + 0.021458622068166733, + 0.001548540429212153, + -0.028280727565288544, + -0.010582015849649906, + 0.01034944411367178, + -0.012372818775475025, + 0.007709754165261984, + 0.00620966637507081, + 0.020621363073587418, + 0.01713278703391552, + 0.015869148075580597, + 0.016280023381114006, + -0.008543136529624462, + -0.003852939000353217, + 0.00324437627568841, + 0.01563657633960247, + 0.007457801606506109, + -0.01366746798157692, + -0.01672966219484806, + -0.016776178032159805, + -0.0076826210133731365, + 0.004721207078546286, + -0.015907909721136093, + -0.008085745386779308, + -0.012109236791729927, + -0.025660419836640358, + 0.020140714943408966, + -0.022233862429857254, + -0.00041354168206453323, + 0.006550771649926901, + -0.008985023014247417, + 0.006872496102005243, + -0.005124331451952457, + 0.003973101265728474, + -0.021954774856567383, + 0.01562882401049137, + 0.010248662903904915, + -0.001471985480748117, + -0.013357372023165226, + 0.0011366945691406727, + 0.013535677455365658, + -0.011396016925573349, + 0.0025989895220845938, + 0.02040429785847664, + -0.009977329522371292, + -0.021117517724633217, + 0.020264754071831703, + -0.01262864749878645, + 0.023412225767970085, + -0.011752626858651638, + -0.006182532757520676, + -0.011163445189595222, + 0.002166793681681156, + -0.007783402223140001, + -0.002224936615675688, + 0.019427495077252388, + -0.020342277362942696, + -0.00032196653774008155, + 0.0009467609343118966, + 0.028575317934155464, + 0.026854287832975388, + -0.0019322838634252548, + -0.006294942460954189, + -0.0007713630329817533, + -0.002033064840361476, + 0.0016241262201219797, + 0.021939270198345184, + -0.004612673539668322, + -0.0075740874744951725, + -0.006275561638176441, + -0.004364597145467997, + 0.019334467127919197, + 0.0031397189013659954, + 0.01327209547162056, + -0.003442062297835946, + -0.008233040571212769, + -0.003426557406783104, + -0.015117165632545948, + -0.021753212437033653, + -0.004589416552335024, + 0.002304398687556386, + 0.012047218158841133, + 0.023939387872815132, + -0.019086390733718872, + -0.0055894749239087105, + 0.006919010076671839, + 0.008512127213180065, + -0.013729486614465714, + 0.001230692258104682, + 0.003734715050086379, + -0.009419157169759274, + -0.013721734285354614, + -0.013496914878487587, + -0.005655370187014341, + 0.0018915837863460183, + -0.003827743697911501, + -0.009760262444615364, + 0.0036242434289306402, + 0.006872496102005243, + 0.007310505956411362, + 0.002705584978684783, + -0.004465377889573574, + -0.007833792828023434, + -0.007147705648094416, + 0.008628413081169128, + -0.01258213259279728, + 0.00413202540948987, + 0.02466811239719391, + -0.011822398751974106, + -0.013047276064753532, + 0.011458036489784718, + 0.010093615390360355, + 0.014776060357689857, + 0.02018723078072071, + -0.013349619694054127, + -0.004050625022500753, + -0.009768014773726463, + 0.02189275622367859, + -0.0014167496701702476, + -0.018683265894651413, + -0.0003910113009624183, + 0.009031536988914013, + -0.017148291692137718, + -0.0032501905225217342, + 0.004290949087589979, + -0.005616608541458845, + -0.006461618933826685, + -0.024078931659460068, + -0.004027368035167456, + -0.012830209918320179, + 0.008178774267435074, + -0.01703975908458233, + -0.014372935518622398, + -0.003308333456516266, + 0.004744464065879583, + 0.008388089016079903, + 0.015264460816979408, + -0.0006478092982433736, + -0.02246643416583538, + -0.0036126149352639914, + 0.004058377351611853, + -0.00891525112092495, + 0.007314382120966911, + 0.015303222462534904, + 0.004414987284690142, + 0.011450283229351044, + 0.011892169713973999, + -0.0015902095474302769, + -0.00036097076372243464, + -0.008969518356025219, + -0.007961707189679146, + 0.022016795352101326, + 0.00820978358387947, + 0.012706170789897442, + -0.011163445189595222, + 0.007705878000706434, + 0.0017820812063291669, + -0.014140363782644272, + -0.004112644121050835, + 0.0020931458566337824, + 0.007984964177012444, + 0.019939152523875237, + -0.008310564793646336, + -0.012946495786309242, + -0.00018181782797910273, + -0.014776060357689857, + 0.001462295069359243, + 0.011814646422863007, + -0.006864743307232857, + -0.0037560341879725456, + 0.0030176187865436077, + -0.002839313820004463, + -0.00022106431424617767, + 0.0006667057750746608, + 0.0031532857101410627, + -0.012179008685052395, + 0.00024686523829586804, + -0.0030389379244297743, + -0.01223327498883009, + -0.016078462824225426, + 0.0022268746979534626, + -0.00428319675847888, + -0.016977738589048386, + 0.01742737740278244, + -0.009171079844236374, + 0.03237399086356163, + -0.008923003450036049, + 0.003335466841235757, + -0.05128983035683632, + -0.016652138903737068, + 0.02643565833568573, + -0.0001619523245608434, + 0.01872977986931801, + -0.007802783045917749, + 0.018838314339518547, + 0.016062956303358078, + -9.963035699911416e-5, + -0.020156219601631165, + 0.013396134600043297, + -0.022745519876480103, + 0.0036513768136501312, + -0.022947082296013832, + -0.004349092021584511, + 0.0029362186323851347, + -0.02068338356912136, + 0.017644444480538368, + 0.005240617319941521, + 0.004194044508039951, + 0.009287365712225437, + 0.024513065814971924, + -0.01950502023100853, + -0.0030854521319270134, + -0.01803206466138363, + 0.003442062297835946, + -0.002666823100298643, + -0.015318727120757103, + -0.0193034578114748, + 0.0001684934104559943, + 0.018667761236429214, + -0.014124859124422073, + -0.014496973715722561, + 0.006186409387737513, + 0.014636516571044922, + -0.014644268900156021, + -0.016977738589048386, + 0.02117953635752201, + -0.008171021938323975, + 0.023985901847481728, + 0.0028993948362767696, + -0.028466785326600075, + 0.019970163702964783, + 0.025396836921572685, + 0.004500263836234808, + -0.024311503395438194, + -0.009698242880403996, + -0.021319080144166946, + 0.01539625134319067, + 0.001982674468308687, + 0.02079191617667675, + 0.004860749933868647, + 0.008240792900323868, + 0.005267750471830368, + 0.02542784810066223, + 0.017675455659627914, + -0.002040817402303219, + 0.003461443120613694, + -0.00861290842294693, + 0.003973101265728474, + -0.02890091948211193, + -0.014729545451700687, + -0.004616549704223871, + 0.006093380507081747, + 0.00925635639578104, + 0.00517084589228034, + -0.014776060357689857, + -0.018435189500451088, + 0.0007214570068754256, + -0.0007984964177012444, + 0.007190343923866749, + 0.013434896245598793, + 0.015124917961657047, + -0.0027385326102375984, + 0.009295118972659111, + -0.004585539922118187, + 0.010008338838815689, + -0.004818112123757601, + -0.0020253125112503767, + -0.0030854521319270134, + -0.010031595826148987, + 0.026404649019241333, + -0.013907792046666145, + -0.034885767847299576, + -0.011427026242017746, + -0.010450225323438644, + -0.006837610155344009, + 0.018435189500451088, + 0.005484817549586296, + -0.013504667207598686, + -0.023195158690214157, + 0.01852821744978428, + 0.009209842421114445, + 0.008326069451868534, + -0.006097256671637297, + 0.013558934442698956, + -0.02604803815484047, + -0.01014788169413805, + 0.0014109354233369231, + -0.033614374697208405, + 0.02753649838268757, + -0.02020273543894291, + 0.013132552616298199, + 0.011628588661551476, + 0.01872977986931801, + 0.00648100022226572, + 0.009186585433781147, + 0.007337639573961496, + -0.009078051894903183, + 0.0020350029226392508, + 8.454953058389947e-5, + -0.010868853889405727, + 0.005659246351569891, + 0.009233099408447742, + -0.006449990440160036, + 0.0019255004590377212, + -0.011427026242017746, + 0.010178891010582447, + 0.0007941356743685901, + 0.012713924050331116, + -0.0023819226771593094, + 0.002631937153637409, + -0.009737004525959492, + 0.009380394592881203, + -0.01276819035410881, + 0.003478886093944311, + 0.0045157684944570065, + 0.0036106768529862165, + 0.0022365651093423367, + 0.01153555978089571, + 0.024513065814971924, + 0.0038393724244087934, + 0.0003752642369363457, + 0.009349385276436806, + 0.0016018380410969257, + -0.0015446641482412815, + -0.017489397898316383, + -0.010333939455449581, + 0.005779408384114504, + 0.0029904854018241167, + -0.01490785088390112, + 0.0073221344500780106, + -0.013690724968910217, + -0.010814587585628033, + -0.012396075762808323, + -0.0050041694194078445, + -0.009737004525959492, + 0.006221294868737459, + 0.008519879542291164, + -0.011628588661551476, + -0.010264167562127113, + 0.017070768401026726, + 0.024482054635882378, + -0.001784988329745829, + -0.0035583481658250093, + -0.026869792491197586, + -0.019520524889230728, + -0.00544217973947525, + 0.004868502262979746, + -0.006787219550460577, + -0.009512185119092464, + 0.00980677641928196, + 0.01614048145711422, + -0.003614553017541766, + 0.00822528824210167, + 0.018342159688472748, + -0.011954189278185368, + 0.00862066075205803, + 0.011434778571128845, + 0.0019313148222863674, + -0.021830737590789795, + 0.010481234639883041, + -0.02435801737010479, + 0.01733434945344925, + 0.0029459090437740088, + -0.0006226139958016574, + -0.012760438024997711, + 0.009380394592881203, + -0.0030854521319270134, + 0.016884710639715195, + 0.012597638182342052, + -0.003833558177575469, + 0.011744874529540539, + -0.007306629791855812, + -0.016884710639715195, + 0.020512830466032028, + -0.02919550985097885, + 0.0061980378814041615, + 0.021024487912654877, + -0.005314264912158251, + 0.036002110689878464, + -0.009574204683303833, + 0.022838547825813293, + 0.0026571324560791254, + -0.007884182967245579, + -0.006624419242143631, + -0.0041242726147174835, + -0.0106440344825387, + 0.014954364858567715, + -0.019861629232764244, + 0.005496446043252945, + 0.015086155384778976, + -0.00806248839944601, + 0.0012219708878546953, + -0.013070533983409405, + 0.014396192505955696, + -0.010830092243850231, + 0.003480824176222086, + 0.020233744755387306, + 0.02038879133760929, + 0.010364948771893978, + -0.0057522752322256565, + 0.0042056730017066, + -0.014062839560210705, + 0.006477124057710171, + -0.003924648743122816, + -0.013233333826065063, + 0.004872378893196583, + -0.022218355908989906, + -0.002060198225080967, + -0.011682855896651745, + 0.013148057274520397, + 0.008876489475369453, + 0.01455124095082283, + -0.005473189055919647, + -0.0317072868347168, + 0.00015650142449885607, + -7.607034785905853e-5, + 0.004500263836234808, + -0.014465964399278164, + -0.006535266991704702, + -0.01812509447336197, + 0.009744757786393166, + 0.00025752477813512087, + -0.001531097455881536, + 0.0021086507476866245, + 0.003542843274772167, + -0.009822281077504158, + -0.0033819812815636396, + 0.012054970487952232, + 0.01869877055287361, + -0.0031804190948605537, + 0.019163914024829865, + -0.00836483109742403, + 0.0023102129343897104, + 0.009318375959992409, + -0.003976977430284023, + -0.006519761867821217, + 0.005465436726808548, + 0.008550888858735561, + 0.005039054900407791, + 0.005465436726808548, + 0.010016091167926788, + -0.005980970803648233, + 0.006732952781021595, + -0.009737004525959492, + -0.023815348744392395, + 0.01643507182598114, + -0.01258213259279728, + 0.012450342066586018, + -0.01939648576080799, + 0.00772525928914547, + 0.003781229490414262, + -0.002286955714225769, + 0.002567979972809553, + -0.013109295628964901, + 0.009395899251103401, + 0.007705878000706434, + -0.003953719977289438, + -0.0005576877156272531, + 0.01593891903758049, + 0.0012597637251019478, + 0.00030040519777685404, + -0.014869088307023048, + 0.011442530900239944, + -0.001780143124051392, + 0.013962059281766415, + -0.006256180815398693, + -0.008845480158925056, + 0.0038471247535198927, + -0.011318492703139782, + -0.010923121124505997, + -0.010876606218516827, + 0.005263874307274818, + -0.01207822747528553, + 0.0027947374619543552, + 0.0012994947610422969, + 0.006097256671637297, + 0.013419391587376595, + -0.007969459518790245, + -0.01773747429251671, + 0.002104774583131075, + 0.009930814616382122, + -0.0033819812815636396, + -0.014272154308855534, + 0.0346686989068985, + 0.026203086599707603, + -2.0410596334841102e-5, + -0.011985198594629765, + 0.006721324287354946, + -0.019039876759052277, + 0.001324690063484013, + -0.0014632641104981303, + -0.01891583763062954, + -0.0064461142756044865, + 0.0034381861332803965, + -0.017644444480538368, + -0.014171373099088669, + -0.02645116299390793, + -0.003426557406783104, + -0.01595442369580269, + -0.002651318209245801, + 0.004112644121050835, + 0.002013684017583728, + -0.008295060135424137, + -0.00482198828831315, + -0.0035932338796555996, + 0.00802372582256794, + 0.027862098067998886, + 0.058266982436180115, + 0.0316607691347599, + 0.006407352164387703, + 0.004849121440201998, + 0.000862938177306205, + -0.03739754110574722, + 0.004876255057752132, + -0.008946260437369347, + -0.022745519876480103, + -0.004213425330817699, + -0.00011228855873923749, + -0.006399599835276604, + 0.016373053193092346, + 0.019458504393696785, + -0.006899629253894091, + 0.02268350124359131, + -0.009434661827981472, + 0.008124507032334805, + 0.0022559461649507284, + -0.014109354466199875, + 0.005015797913074493, + 0.008171021938323975, + -0.001097932574339211, + -0.01486133597791195, + 0.0217842236161232, + -0.0007379308808594942, + -0.013915544375777245, + -0.0212725643068552, + 0.0035002052318304777, + 0.017256826162338257, + 0.023784339427947998, + -0.02852880395948887, + -0.017396368086338043, + -0.00551970349624753, + -0.022900566458702087, + 0.024714626371860504, + 0.009473423473536968, + 0.016559110954403877, + 0.011946436949074268, + -0.014031830243766308, + -0.005670875310897827, + -0.0024730132427066565, + 0.0037153339944779873, + -0.04378551244735718, + 0.005546836648136377, + 0.0178149975836277, + 0.0033916716929525137, + -0.006318199913948774, + -0.0009113906417042017, + -0.008814469911158085, + 0.007698125671595335, + -0.005612731911242008, + 0.006946143694221973, + -0.011217711493372917, + -0.01612497679889202, + 0.0168226920068264, + 0.02119504101574421, + -0.034792736172676086, + -0.002370293950662017, + -0.0006894784164614975, + 0.01524120382964611, + -0.01519468892365694, + 0.006992658134549856, + 0.02228037640452385, + 0.009070299565792084, + 0.019954659044742584, + -0.0020001172088086605, + 0.009194337762892246, + 0.013248838484287262, + -0.005988723132759333, + 0.0296916626393795, + -0.03296317160129547, + -0.03049791231751442, + -0.0014777998439967632, + -0.024714626371860504, + -0.018078578636050224, + -0.010403710417449474, + -0.014520230703055859, + -0.02593950554728508, + 0.020047686994075775, + -6.957469395274529e-6, + -0.005267750471830368, + 0.008674927055835724, + 0.005418922286480665, + -0.019179418683052063, + 0.005736770574003458, + -0.0058065420016646385, + -0.014915603213012218, + -0.01257438026368618, + 0.008256297558546066, + -0.01722581684589386, + 0.015706347301602364, + -0.024978209286928177, + -0.016171490773558617, + 0.00752369686961174, + -0.01227203756570816, + -0.017442883923649788, + -0.0034672576002776623, + 0.012039465829730034, + 0.008643917739391327, + -0.006620543077588081, + 0.041521813720464706, + -0.006070123519748449, + 0.017551416531205177, + -0.01138051226735115, + -0.041831910610198975, + 0.0037599103525280952, + -0.00490338820964098, + -0.0024090560618788004, + 0.0336763933300972, + -0.007419039495289326, + 0.014667526818811893, + 0.005407293792814016, + -0.004027368035167456, + 0.0006715509807690978, + 0.002434251131489873, + -0.0005072971689514816, + 0.020838430151343346, + 0.02445104531943798, + 0.009372642263770103, + -0.019334467127919197, + 0.011853408068418503, + 0.018652256578207016, + 0.002304398687556386, + 0.01415586844086647, + -0.01691571995615959, + 0.002066012704744935, + 0.04759968817234039, + -0.00018399818509351462, + -0.022823043167591095, + 0.018481703475117683, + 0.0045157684944570065, + 0.00049542635679245, + 0.01721031218767166, + -1.5989309758879244e-5, + 0.000572223449125886, + 0.0011589826317504048, + 0.01172936987131834, + 0.023040110245347023, + -0.004546778276562691, + -0.010977387428283691, + 0.015435012988746166, + 0.023040110245347023, + -0.026280609890818596, + -0.002021436346694827, + -0.0070197912864387035, + -0.019768601283431053, + -0.0005150495562702417, + -0.0009913372341543436, + -0.0063375807367265224, + 0.001016532420180738, + -0.008783460594713688, + 0.0024904559832066298, + -0.008302812464535236, + -0.010357196442782879, + 0.0061631519347429276, + -0.014574497938156128, + 0.02485417015850544, + 0.00032463142997585237, + -0.018357666209340096, + -0.002998237730935216, + 0.003552533918991685, + 0.0013227519812062383, + 0.002959475852549076, + 0.01351242046803236, + 0.0025796086993068457, + -0.010729311034083366, + -0.0032463143579661846, + -0.005779408384114504, + -0.008581898175179958, + -0.008302812464535236, + 0.00821753591299057, + 0.008636165410280228, + -0.016155986115336418, + 0.006926762871444225, + -0.013783753849565983, + -0.003426557406783104, + -0.017892520874738693, + -0.025598399341106415, + -0.00042274766019545496, + 0.02268350124359131, + 0.02384635992348194, + 0.010124624706804752, + -0.003190109506249428, + -0.0005780377541668713, + -0.005884065758436918, + 0.011861160397529602, + 0.0118844173848629, + 0.0019729838240891695, + 0.011566569097340107, + -0.007337639573961496, + 0.013620954006910324, + -0.012473599053919315, + -0.013729486614465714, + 0.0032734477426856756, + 0.008891994133591652, + -0.00227920338511467, + 0.006744581274688244, + -0.03395547717809677, + 0.011837903410196304, + -0.019923647865653038, + -0.012806951999664307, + 0.001471985480748117, + -0.0019022433552891016 + ], + "e3dc24c2-7188-4e06-8c16-95b620d60c9c": [ + -0.007820766419172287, + -0.0038136467337608337, + -0.011005626060068607, + 0.007519395090639591, + -0.03902197629213333, + -0.020046759396791458, + 0.018126914277672768, + 0.006038583815097809, + -0.034527454525232315, + 0.02058253064751625, + -0.010492178611457348, + 0.04655253142118454, + -0.014674168080091476, + -0.022487493231892586, + -0.02208566479384899, + -0.015254586935043335, + -0.039617277681827545, + 0.03485487028956413, + -0.009584344923496246, + 0.0025114258751273155, + 0.06274472177028656, + -0.018781743943691254, + -0.04833843559026718, + 0.018141796812415123, + -0.00787285529077053, + -0.012233434244990349, + 0.0014138397527858615, + -0.01763579063117504, + -0.04443921521306038, + 0.00010877032036660239, + 0.029154863208532333, + -0.009390871971845627, + 0.013825864531099796, + 0.0030825426802039146, + 0.016474952921271324, + -0.025047287344932556, + -0.018722213804721832, + 0.062447067350149155, + -0.02160942368209362, + 0.0007292436202988029, + -0.019094277173280716, + 0.01899009943008423, + 0.01646007038652897, + 0.007478468120098114, + -0.043040256947278976, + 0.02035929262638092, + 0.025047287344932556, + -0.01014988124370575, + 0.019406810402870178, + 0.022963734343647957, + -0.004974483512341976, + -0.013118944130837917, + -0.013074296526610851, + 0.027621963992714882, + -0.003543900791555643, + -0.0007706356700509787, + -0.0020630897488445044, + 0.060780227184295654, + 0.0011254908749833703, + 0.002327254507690668, + 0.006187409162521362, + -0.024883579462766647, + 0.00772402947768569, + 0.015894535928964615, + -0.006295307539403439, + -0.02330603078007698, + -0.013520772568881512, + 0.0009408545447513461, + -0.05792278051376343, + -0.03053893893957138, + -0.002766289049759507, + 0.04187941923737526, + -0.008780688978731632, + 0.0026658319402486086, + -0.03330708667635918, + 0.0057334923185408115, + 0.04446898028254509, + -0.024824049323797226, + -0.010462413541972637, + 0.016802368685603142, + -0.03265225514769554, + 0.00742637924849987, + -0.00985967181622982, + -0.009591786190867424, + 0.04905279725790024, + -0.0037150499410927296, + -0.04536193236708641, + -0.025330055505037308, + -0.050600580871105194, + -0.04771336913108826, + 0.010544267483055592, + 0.0025430512614548206, + 0.025984885171055794, + -0.043873678892850876, + -0.02750290371477604, + 0.01607312448322773, + 0.059113383293151855, + 0.004758686758577824, + -0.004141062032431364, + -0.04161153361201286, + -0.0062506599351763725, + 0.017397670075297356, + -0.06965021044015884, + 0.031104473397135735, + 0.02324650064110756, + -0.00713989045470953, + 0.009576903656125069, + -0.03649194911122322, + -0.014339311048388481, + 0.04920162260532379, + 0.03294990584254265, + -0.02519611269235611, + 0.009152752347290516, + 0.0056888447143137455, + -0.027383843436837196, + -0.08024656772613525, + 0.014264898374676704, + -0.037950433790683746, + 0.031104473397135735, + -0.04018281400203705, + 0.04229613021016121, + 0.0658998116850853, + 0.0030118506401777267, + 0.0056888447143137455, + 0.00035927342833019793, + -0.024690106511116028, + -0.014428606256842613, + 0.01593918167054653, + 0.008996485732495785, + 0.017144666984677315, + -0.02282979153096676, + 0.0011078178649768233, + -0.010968419723212719, + 0.007370569743216038, + -0.004148503299802542, + 0.024124570190906525, + 0.012255758047103882, + 0.03759325295686722, + -0.028767917305231094, + 0.06167317554354668, + -0.046790651977062225, + -0.019585400819778442, + -0.010462413541972637, + -0.003752256277948618, + -0.030687762424349785, + 0.02375250682234764, + -0.033604737371206284, + 0.04396297410130501, + -0.008929514326155186, + 0.009048574604094028, + -0.023767389357089996, + -0.015299233607947826, + 0.04958856850862503, + -0.004531728569418192, + 0.02394597977399826, + 0.007091522216796875, + -0.017174432054162025, + 0.006421808619052172, + 0.033664267510175705, + 0.0013784937327727675, + 0.004580096807330847, + -0.031164003536105156, + 0.022041017189621925, + 0.004092693794518709, + 0.018365032970905304, + 0.0066785323433578014, + 0.0444987453520298, + 0.005260971840471029, + -0.034051213413476944, + 0.02099923975765705, + 0.04571911320090294, + -0.009532256051898003, + 0.014264898374676704, + 0.007151052355766296, + 0.024273395538330078, + -0.03547993674874306, + 0.02439245581626892, + 0.0035718055441975594, + 0.016504717990756035, + -0.050600580871105194, + -0.003287177300080657, + -0.047653838992118835, + -0.00204448658041656, + -0.011548838578164577, + -0.009807582944631577, + 0.03149142116308212, + 0.026103945448994637, + 0.023425091058015823, + -0.009331341832876205, + 0.02416921779513359, + 0.01827573962509632, + -0.002070531016215682, + 0.021401068195700645, + 0.031997423619031906, + -0.02407992258667946, + -0.025091934949159622, + 0.004338255617767572, + -0.0032406693790107965, + -0.007571483962237835, + 0.03443815931677818, + -0.01125118788331747, + -0.03890291601419449, + -0.051880475133657455, + 0.04140318185091019, + -0.016088007017970085, + 0.007415217347443104, + -0.0010594496270641685, + 0.011511632241308689, + 0.010574032552540302, + -0.05676194280385971, + 0.03515252098441124, + -0.021118300035595894, + 0.02961622178554535, + -0.03607523813843727, + -0.034944165498018265, + 0.01024661771953106, + 0.006135320290923119, + 0.021282007917761803, + 0.030390113592147827, + 0.00739661417901516, + -0.005900920368731022, + 0.005606990773230791, + 0.02736896090209484, + -0.03723607212305069, + -0.026431361213326454, + -0.014651844277977943, + -0.028604209423065186, + 0.011310718022286892, + -0.04039116948843002, + 0.013520772568881512, + 0.04536193236708641, + -0.0005548390909098089, + 0.007753794547170401, + -0.03437862917780876, + -0.010209411382675171, + 0.003969913348555565, + 0.01197298988699913, + 4.6798559196759015e-5, + -0.006414367817342281, + -0.04220683500170708, + 0.02939298376441002, + 0.01024661771953106, + 0.018260857090353966, + -0.004412668291479349, + 0.03434886410832405, + 0.011340483091771603, + -0.023038147017359734, + 0.031610481441020966, + 0.02875303477048874, + -0.023573916405439377, + 0.006384602747857571, + 0.01030614785850048, + 0.005964171141386032, + -0.029958520084619522, + -0.03205695375800133, + 0.04411179944872856, + -0.003287177300080657, + -0.033277321606874466, + -0.02366321161389351, + -0.031134238466620445, + -0.007999355904757977, + -0.014741139486432076, + -0.0015570840332657099, + -0.0166833084076643, + 0.04262354597449303, + -0.013729128055274487, + -0.0017235822742804885, + -0.06268519163131714, + 0.009145311079919338, + 0.0430997870862484, + -0.025538410991430283, + -0.015254586935043335, + -0.027845202013850212, + -0.02346973866224289, + -0.029497161507606506, + 0.006049745716154575, + 0.011682780459523201, + -0.00033229883410967886, + 0.015023907646536827, + 0.011072597466409206, + -0.013796099461615086, + -0.02461569383740425, + -0.01971934363245964, + 0.03402144834399223, + -0.0364324189722538, + 0.01479322835803032, + 0.0024984036572277546, + 0.016474952921271324, + -0.03598594292998314, + -0.05420215055346489, + -0.0096661988645792, + -0.027711259201169014, + 0.0478324294090271, + 0.014220250770449638, + 0.016757721081376076, + -0.009755494073033333, + 0.02227913774549961, + 0.005659079644829035, + -0.00280535570345819, + -0.00010964234388666227, + -0.05801207572221756, + -0.013275210745632648, + 0.02480916678905487, + -0.02778567187488079, + -0.008483038283884525, + -0.01952587068080902, + 0.0350334607064724, + 0.023023264482617378, + -0.024124570190906525, + -0.0012575732544064522, + 0.02775590680539608, + 0.004870305769145489, + -0.0020110008772462606, + -0.025240760296583176, + -0.021058769896626472, + 0.01283617690205574, + 0.016058241948485374, + -0.029735282063484192, + -0.010090351104736328, + -0.006697135511785746, + 0.027354078367352486, + -0.003190441057085991, + -0.0692334994673729, + 0.005785581190139055, + 0.017531612887978554, + -0.04068882018327713, + 0.03717654198408127, + 0.011824164539575577, + -0.04667159169912338, + -0.01058147381991148, + -0.015522471629083157, + -0.028321441262960434, + -0.019317515194416046, + -0.027889849618077278, + -0.010417765937745571, + -0.03815878927707672, + -0.030077580362558365, + -0.05750606954097748, + -0.0015970808453857899, + -0.010663327760994434, + -0.02558305859565735, + 0.03464651480317116, + -0.012784088030457497, + -0.0009362037526443601, + 0.021371303126215935, + -0.01827573962509632, + -0.037414662539958954, + 0.023990627378225327, + -0.01657913066446781, + -0.007657058071345091, + 0.0009287624852731824, + -0.015790358185768127, + 0.020835531875491142, + 0.014339311048388481, + 0.059053853154182434, + -0.027130840346217155, + -0.018960334360599518, + -0.03470604494214058, + 0.02074623852968216, + -0.009450402110815048, + -0.011005626060068607, + -0.021282007917761803, + -0.03595617786049843, + -0.030628232285380363, + -0.0005743723595514894, + -0.0005939056864008307, + -0.00928669422864914, + -0.0006013469537720084, + 0.029273923486471176, + 0.000933878356590867, + -0.03050917387008667, + 0.01693631149828434, + 0.03339638188481331, + -0.03461674973368645, + -0.04321884736418724, + 0.016192184761166573, + 0.05750606954097748, + -0.014101190492510796, + -0.0026025811675935984, + 0.005473047960549593, + -0.0194663405418396, + 0.014644403010606766, + -0.002217496046796441, + -0.05241624638438225, + 0.029363218694925308, + 0.011385130695998669, + 0.00849792081862688, + -0.00392154511064291, + -0.007258950732648373, + 0.0043829032219946384, + -0.012769205495715141, + 0.013126385398209095, + -0.01927286759018898, + -0.005499092396348715, + -0.02759219892323017, + 0.033664267510175705, + 0.006823637057095766, + 0.022561905905604362, + -0.0021877309773117304, + 0.0016910267295315862, + -0.007039433345198631, + -0.005975333042442799, + -0.0038955004420131445, + 0.03887315094470978, + 0.02113318257033825, + -0.021088534966111183, + -0.012136697769165039, + -0.008267241530120373, + -0.006719459313899279, + 0.025716999545693398, + -0.014369076117873192, + 0.017248844727873802, + -0.007433820515871048, + 0.0033839137759059668, + 0.057416774332523346, + -0.011035391129553318, + 0.020403940230607986, + 0.02631230093538761, + -0.0492313876748085, + -0.03470604494214058, + -0.0032443900126963854, + 0.02727966569364071, + -0.010953537188470364, + 0.03729560226202011, + -0.007154772989451885, + 0.0019086836837232113, + 0.05708935856819153, + 0.028514914214611053, + -0.04375461861491203, + -0.00872115883976221, + -0.006384602747857571, + 0.004423830192536116, + -0.010313589125871658, + -0.007746353279799223, + -0.004781010560691357, + -0.02522587776184082, + -0.009815024212002754, + -0.03125330060720444, + -0.0015896395780146122, + -0.013453801162540913, + 0.006991065572947264, + 0.04179012402892113, + -0.0006483199540525675, + -0.004758686758577824, + 0.00039671227568760514, + -0.03265225514769554, + -0.044320154935121536, + 0.009428078308701515, + 0.004680553451180458, + -0.011459543369710445, + 0.0018258995842188597, + -0.0023867846466600895, + -0.0389326810836792, + 0.023707859218120575, + 0.0019849566742777824, + -0.007132449187338352, + 0.013394271023571491, + -0.04390344396233559, + 0.00027788462466560304, + 0.03315826132893562, + -0.00793982669711113, + -0.012672469019889832, + 0.02455616369843483, + 0.00280535570345819, + 0.035866882652044296, + -0.05958962440490723, + -0.010544267483055592, + 0.004397785756736994, + -0.0018779884558171034, + -0.025434233248233795, + -0.03476557508111, + 0.015128085389733315, + -0.04140318185091019, + -0.0023384164087474346, + -0.019421692937612534, + -0.005052616819739342, + -0.0007483118679374456, + 0.011199099011719227, + -0.008185387589037418, + -0.0057706986553967, + -0.02970551699399948, + -0.01805250160396099, + -0.028827447444200516, + -0.011213981546461582, + 0.031967658549547195, + 0.006358558312058449, + -0.011772075667977333, + -0.015983829274773598, + -0.01963004842400551, + -0.015433176420629025, + 0.04348673298954964, + 0.007991914637386799, + 0.022710731253027916, + 0.015388528816401958, + 0.01687678135931492, + -0.0316997766494751, + 0.006440411787480116, + -0.021029004827141762, + -0.02285955660045147, + -0.006898049730807543, + 0.023216737434267998, + -0.017397670075297356, + -0.001411979435943067, + 0.018424563109874725, + 0.02474963665008545, + -0.025181230157613754, + -0.034586984664201736, + -0.009264370426535606, + 0.008892307989299297, + -0.017725085839629173, + -0.013051972724497318, + 0.01058147381991148, + 0.0035122756380587816, + -0.007575204595923424, + -0.009755494073033333, + -0.002716060495004058, + -0.028604209423065186, + 0.015009025111794472, + 0.026818307116627693, + -0.024050157517194748, + 0.011102362535893917, + 0.010194528847932816, + -0.003331824904307723, + 0.02250237576663494, + 0.005997656844556332, + -0.015671297907829285, + -0.017204197123646736, + 0.009718287736177444, + 0.01030614785850048, + -0.03422980383038521, + -0.014190485700964928, + 0.010075468569993973, + -0.01352821383625269, + 0.015983829274773598, + 0.005793022457510233, + 0.015009025111794472, + -0.012106932699680328, + 0.007407776080071926, + 0.012813853099942207, + 0.05970868468284607, + -0.017948323860764503, + 0.03292014077305794, + -0.01544805895537138, + -0.022904204204678535, + 0.00846815574914217, + 0.04110553115606308, + -0.037414662539958954, + 0.04446898028254509, + 0.004952159710228443, + 0.00038834084989503026, + -0.01802273653447628, + 0.03431909903883934, + -0.005022851750254631, + -0.018618036061525345, + -0.00726639200001955, + -0.05512486770749092, + 0.025702117010951042, + 0.007121287286281586, + -0.038783855736255646, + -0.02839585393667221, + 0.011481867171823978, + 0.03149142116308212, + 0.019153807312250137, + 0.0009241116931661963, + -0.024050157517194748, + 0.005640476476401091, + -0.012218551710247993, + 0.01924310252070427, + 0.005045175552368164, + 0.0008920212276279926, + -0.007526836358010769, + 0.008483038283884525, + 0.032771315425634384, + -0.007277553901076317, + -0.052297186106443405, + 0.04024234414100647, + 0.0024723592214286327, + 0.03595617786049843, + -0.0011413035681471229, + -0.013424036093056202, + 0.014904847368597984, + -0.02174336649477482, + -0.01109492126852274, + -0.029497161507606506, + 0.008445831947028637, + -0.006157644093036652, + -0.040867410600185394, + -0.023841802030801773, + -0.0030230125412344933, + 0.025955120101571083, + 0.011303276754915714, + 0.03723607212305069, + 0.03545017167925835, + -0.008349095471203327, + -0.013200798071920872, + 0.028678622096776962, + -0.024928227066993713, + -0.0011394432513043284, + 0.00499308668076992, + 0.0011729288380593061, + -0.008713717572391033, + 0.03268202021718025, + 0.028738152235746384, + -0.026118827983736992, + 0.0009775958023965359, + 0.02346973866224289, + 0.004241519141942263, + 0.01378121692687273, + -0.016251714900135994, + 0.006953859236091375, + -0.03012222796678543, + -0.0028518636245280504, + 0.018737096339464188, + -0.019987229257822037, + 0.025434233248233795, + 0.005956729874014854, + -0.0006013469537720084, + 0.04777289927005768, + 0.018305504694581032, + -0.01635589264333248, + 0.0073073189705610275, + -0.02528540790081024, + 0.050183869898319244, + -0.016281479969620705, + 0.02653553895652294, + 0.014019337482750416, + 0.007932385429739952, + -0.0187668614089489, + -0.0278154369443655, + -0.023707859218120575, + 0.0048517026007175446, + -0.0012333891354501247, + 0.032384369522333145, + -0.051017291843891144, + 0.020225349813699722, + -0.004758686758577824, + 0.018677566200494766, + 0.025761647149920464, + -0.01270967535674572, + -0.01815667934715748, + -0.009323900565505028, + -0.011519073508679867, + 0.013409153558313847, + 0.029244158416986465, + -0.010923772118985653, + 0.0036704023368656635, + -0.04461780562996864, + -0.0055288574658334255, + 0.031908128410577774, + 0.024273395538330078, + -0.04452851042151451, + 0.016311245039105415, + 0.014190485700964928, + 0.018171561881899834, + -0.0186329185962677, + -0.037950433790683746, + -0.010254058986902237, + 0.002751406515017152, + 0.012784088030457497, + -3.595640737330541e-5, + 0.009249487891793251, + -0.002459337003529072, + -0.02461569383740425, + 0.01206972636282444, + 0.02547888085246086, + 0.01415327936410904, + 0.008996485732495785, + -0.004840540699660778, + -0.009532256051898003, + 0.01991281658411026, + -0.018513858318328857, + -0.039617277681827545, + 0.016638660803437233, + 0.029467396438121796, + 0.007798442151397467, + -0.02528540790081024, + 0.001823109108954668, + -0.014049102552235126, + 0.00480333436280489, + -0.0300329327583313, + -0.02263631857931614, + -0.008810454048216343, + -0.0175167303532362, + 0.003582967445254326, + 0.039617277681827545, + -0.004036884289234877, + 0.003858294105157256, + -0.007281274534761906, + -0.0038768972735852003, + 0.0017338140169158578, + -0.0010278242407366633, + -0.00259327981621027, + -0.012449230998754501, + 0.013513331301510334, + -0.014555107802152634, + -0.00047205504961311817, + 0.0020686706993728876, + 0.022621436044573784, + 0.02992875501513481, + -0.020061641931533813, + -0.01093121338635683, + -0.005956729874014854, + -0.00039671227568760514, + -0.027101075276732445, + 0.02461569383740425, + 0.017933441326022148, + -0.013386829756200314, + -0.01629636250436306, + 0.012776646763086319, + -0.007738912012428045, + -0.0015366205479949713, + 0.008951838128268719, + -0.0012901287991553545, + 0.012769205495715141, + 0.015299233607947826, + -0.0005506533780135214, + 0.0042675635777413845, + 0.00976293534040451, + -0.03985539823770523, + -0.02166895382106304, + -0.022576788440346718, + 0.026877837255597115, + -0.0015524332411587238, + -0.03717654198408127, + -0.04065905511379242, + -0.017918558791279793, + 0.00019905375665985048, + -0.028261911123991013, + 0.026714129373431206, + -0.008966720663011074, + 0.028232146054506302, + -0.00739661417901516, + -0.013096620328724384, + 0.0074226586148142815, + -0.008363978005945683, + -0.010767505504190922, + -0.021654071286320686, + -0.004572655539959669, + 0.00755660142749548, + -0.026386713609099388, + 0.010172205045819283, + -0.01314126793295145, + 0.015284351073205471, + -0.04122459143400192, + 0.06125646457076073, + 0.0040182811208069324, + 0.013037090189754963, + -0.021088534966111183, + 0.025597941130399704, + 0.03857550024986267, + 0.05125541239976883, + -0.001637077541090548, + 0.03289037570357323, + 0.027235018089413643, + 0.008996485732495785, + -0.00561071140691638, + -0.016400540247559547, + 0.006414367817342281, + -0.010410324670374393, + 0.029720399528741837, + 0.005934406071901321, + 0.0068608433939516544, + 0.009792700409889221, + 0.0012324589770287275, + -0.0036611007526516914, + -0.029348336160182953, + -0.04351649805903435, + 0.01744231767952442, + 0.03342614695429802, + -0.02708619274199009, + 0.015299233607947826, + 0.026044415310025215, + 0.0058860378339886665, + 0.02385668456554413, + -0.004297328647226095, + 0.0007250579656101763, + 0.0002869536401703954, + 0.010268941521644592, + -0.03339638188481331, + 0.006086952053010464, + -0.013595185242593288, + -0.03562876209616661, + -0.0032071839086711407, + -0.03640265390276909, + 0.011920901015400887, + 0.005930685438215733, + 0.05542251840233803, + 0.002176569076254964, + -0.031967658549547195, + -0.0004781010502483696, + -0.004487080965191126, + 0.008743482641875744, + -0.026163475587964058, + -0.0007059897179715335, + -0.0020556484814733267, + -0.0055511812679469585, + 0.00048368200077675283, + -0.02750290371477604, + -0.021698718890547752, + -0.03131283074617386, + 0.006968741770833731, + -0.050630345940589905, + 0.030137110501527786, + 0.0005920453695580363, + -0.0009278323268517852, + -0.02948227897286415, + -0.010648445226252079, + 0.005685124080628157, + 0.019987229257822037, + 0.015180174261331558, + -0.01045497227460146, + -0.00645901495590806, + -0.015187615528702736, + 0.0291995108127594, + -0.009748052805662155, + 0.013967248611152172, + 0.005975333042442799, + -0.009264370426535606, + 0.013357064686715603, + -0.02964598685503006, + -0.004948439076542854, + 0.027666611596941948, + 0.007017110008746386, + 0.02314232476055622, + -0.025761647149920464, + -0.013081737793982029, + 0.013706804253160954, + -0.01971934363245964, + 0.033723797649145126, + 0.03303920105099678, + -0.011295835487544537, + -0.017472082749009132, + -0.03089611791074276, + 0.01626659743487835, + -0.00022567951236851513, + 0.035420406609773636, + -0.03050917387008667, + -0.003995957318693399, + -0.03824808448553085, + 0.035420406609773636, + 0.016147537156939507, + -0.029601339250802994, + -0.028797682374715805, + -0.00824491772800684, + 0.015760593116283417, + -0.023380443453788757, + 0.014443488791584969, + -0.00613159965723753, + 0.018722213804721832, + 0.004911232739686966, + 0.00016824227350298315, + -0.0002523052680771798, + -0.02221960760653019, + 0.0034453042317181826, + -0.028440501540899277, + 0.010670769028365612, + -0.02049323543906212, + 0.025910472497344017, + -0.007508233189582825, + 0.01879662647843361, + 0.012828735634684563, + 0.010142439976334572, + -0.0031476537697017193, + -0.025702117010951042, + 0.004862864501774311, + 0.0029318570159375668, + -0.008966720663011074, + -0.006414367817342281, + -0.023633446544408798, + 0.026431361213326454, + 0.0003364845470059663, + 0.018528740853071213, + 0.01298500131815672, + -0.0017672996036708355, + -0.01526946946978569, + -0.02983945980668068, + -0.027934497222304344, + -0.021892191842198372, + -0.010507061146199703, + -0.011630691587924957, + -0.002928136382251978, + 0.00891463179141283, + 0.01754649542272091, + -0.014495577663183212, + -0.040420934557914734, + 0.008319330401718616, + 0.01721907965838909, + -0.0023067910224199295, + -0.01613265462219715, + 0.002969063352793455, + 0.0028704667929559946, + -0.018945451825857162, + -0.022621436044573784, + -0.0291995108127594, + -0.0014649983495473862, + -0.01991281658411026, + 0.006038583815097809, + -0.02544911578297615, + -0.0005720470217056572, + -0.018365032970905304, + -0.00408897316083312, + -0.020731355994939804, + -0.03610500320792198, + -0.0057706986553967, + 0.015388528816401958, + -0.04053999483585358, + 0.02199636958539486, + 0.017338139936327934, + -0.00346948835067451, + 0.04027210921049118, + 0.02820238098502159, + 0.0005734422011300921, + 0.007084080949425697, + -0.02272561378777027, + 0.030717527493834496, + -0.0074673062190413475, + 0.019600283354520798, + 0.011839047074317932, + -0.011533956043422222, + -0.031997423619031906, + -0.01901986449956894, + 0.002663971623405814, + 0.019317515194416046, + 0.025434233248233795, + 0.005856272764503956, + -0.004103855695575476, + 0.0007692404324188828, + 0.008847660385072231, + 0.01061123888939619, + 0.009160193614661694, + -0.01390771847218275, + 0.0016035919543355703, + -0.0015245284885168076, + -0.034944165498018265, + 0.042921196669340134, + 0.0003071845858357847, + 0.0028611652087420225, + -0.014101190492510796, + -0.03092588298022747, + -0.03031570091843605, + -0.02285955660045147, + 0.022427963092923164, + 0.0180822666734457, + -0.029988285154104233, + 0.013706804253160954, + -0.005774419289082289, + -0.023320913314819336, + 0.0461655892431736, + 0.021073652431368828, + 0.011519073508679867, + 0.02119271270930767, + 0.03354520723223686, + -0.016028476879000664, + -0.017918558791279793, + -0.014778345823287964, + 0.03556923195719719, + -0.003274155082181096, + 0.024124570190906525, + -0.0019365883199498057, + 0.009100663475692272, + -0.010752622969448566, + -0.008892307989299297, + 0.0058637140318751335, + 0.00434569688513875, + -0.05604758486151695, + -0.0013524492969736457, + -0.039974458515644073, + -0.004100135061889887, + -0.012828735634684563, + 0.011280952952802181, + -0.018751978874206543, + -0.011072597466409206, + 0.00535398768261075, + -0.02967575192451477, + -0.013624950312077999, + 0.005696285981684923, + -0.01991281658411026, + -0.015009025111794472, + 5.918128590565175e-5, + -0.014026778750121593, + 0.01197298988699913, + -0.009621551260352135, + -0.024481751024723053, + -0.013357064686715603, + -0.012136697769165039, + 0.020850414410233498, + -0.012523643672466278, + -0.019362162798643112, + 0.013371947221457958, + -0.01613265462219715, + 0.021252242848277092, + -0.03905174136161804, + 0.006786430720239878, + 0.00687572592869401, + 0.015567119233310223, + -0.0028574445750564337, + -0.032830845564603806, + -0.0009934084955602884, + -0.012955236248672009, + -0.004996807314455509, + -0.0074449824169278145, + 0.00023486482677981257, + 0.0010101512307301164, + 0.030777057632803917, + -0.0010780527954921126, + 0.01607312448322773, + 0.003569945227354765, + 0.015775475651025772, + 0.012501319870352745, + 0.02113318257033825, + 0.0007176166982389987, + -0.007013389375060797, + 0.0008376070181839168, + 0.01760602556169033, + 0.028827447444200516, + 0.036997951567173004, + -0.0007948197890073061, + -0.02747313864529133, + -0.02480916678905487, + 0.004810775630176067, + -0.03425956889986992, + -0.028261911123991013, + -0.015775475651025772, + 0.015187615528702736, + 0.0042452397756278515, + 0.015314116142690182, + 0.009361106902360916, + 0.0032220662105828524, + 0.035747822374105453, + 0.015195056796073914, + -0.024243630468845367, + -0.0025021242909133434, + 0.011950666084885597, + -0.0033522883895784616, + -0.007028271909803152, + -0.04577864333987236, + 0.01216646283864975, + -0.05461886152625084, + -0.02477940171957016, + 0.002208194462582469, + 0.012478996068239212, + 0.006965021137148142, + -0.005629314575344324, + -0.006112996488809586, + -0.004840540699660778, + 0.0013524492969736457, + -0.012285523116588593, + 0.02449663355946541, + -0.014659285545349121, + 0.0011217702412977815, + 0.03390238806605339, + 0.0035066946875303984, + -0.00557722570374608, + -0.007776118349283934, + 0.006358558312058449, + 0.008936955593526363, + -0.010521943680942059, + 0.008698835037648678, + -0.007065477780997753, + 0.05750606954097748, + 0.0017198616405948997, + 0.008743482641875744, + 0.05098752677440643, + -0.026014650240540504, + 0.02797914482653141, + -0.013959807343780994, + 0.006961300503462553, + 0.025702117010951042, + -0.01061123888939619, + -0.009026250801980495, + 0.016311245039105415, + 0.01241946592926979, + -0.02119271270930767, + 0.03402144834399223, + 0.009614109992980957, + 0.03333685174584389, + 0.017903676256537437, + 0.015284351073205471, + -0.005380032118409872, + 0.004888908937573433, + 0.0027048985939472914, + 0.006667370442301035, + 0.0013831445248797536, + -0.0005115867243148386, + -0.018528740853071213, + 0.016177302226424217, + 0.010536826215684414, + 0.01017964631319046, + -0.023201854899525642, + 0.0339321531355381, + -0.017650673165917397, + 0.0006097183795645833, + 0.004903791472315788, + 0.016281479969620705, + -0.006864564027637243, + 0.005316781345754862, + -0.005074940621852875, + 0.059917040169239044, + 0.004338255617767572, + -0.0016249854816123843, + 0.010365677997469902, + 0.01283617690205574, + 0.0015049951616674662, + 0.00424896040931344, + 0.014316987246274948, + 0.01754649542272091, + 4.746711056213826e-5, + -0.027443373575806618, + -0.01696607656776905, + 0.00324625032953918, + 0.02983945980668068, + 0.011199099011719227, + 0.0048665851354599, + 0.0230827946215868, + 0.011132127605378628, + -0.0028667461592704058, + -0.012092050164937973, + -0.009681081399321556, + -0.005789301823824644, + -0.006191129796206951, + -0.012545967474579811, + -0.005223765503615141, + -0.021981487050652504, + 0.023425091058015823, + 0.008922073058784008, + -0.008475597016513348, + 0.003835970303043723, + 0.012791529297828674, + -0.001283617690205574, + 0.022398198023438454, + 0.018037619069218636, + -0.0193323977291584, + 0.013193356804549694, + 0.015128085389733315, + 0.015254586935043335, + 0.0012017637491226196, + 0.0008836498018354177, + 0.003242529695853591, + -0.007225465029478073, + -0.0009934084955602884, + -0.0014882523100823164, + -0.0013115223264321685, + 0.008110974915325642, + 0.005993936210870743, + 0.011199099011719227, + -0.006671091075986624, + -0.0030769617296755314, + -8.970208727987483e-5, + 0.005878596566617489, + -0.015968946740031242, + -0.00824491772800684, + -0.021535011008381844, + 0.008200270123779774, + -0.0069724624045193195, + -0.01421280950307846, + -0.011600927449762821, + -0.011132127605378628, + 0.003560643643140793, + 0.020091407001018524, + -0.019570518285036087, + -0.04184965416789055, + -0.024347808212041855, + 0.010328471660614014, + 0.0014547666069120169, + -0.023841802030801773, + -0.02119271270930767, + 0.006782710086554289, + -0.012717116624116898, + 0.010648445226252079, + -0.00793982669711113, + 0.006217174232006073, + 0.0013264048611745238, + 0.018067384138703346, + 0.012233434244990349, + -0.009532256051898003, + 0.00772402947768569, + -0.028604209423065186, + -0.009591786190867424, + 0.026743894442915916, + 0.011511632241308689, + 0.01882639154791832, + -0.005342825781553984, + 0.005599549505859613, + 0.01526946946978569, + -0.0053242226131260395, + 0.008081209845840931, + -0.05241624638438225, + -0.010477296076714993, + 0.0053465464152395725, + 0.01687678135931492, + 0.008304447866976261, + -0.022160077467560768, + -0.0029169744811952114, + -0.022130312398076057, + 0.0074226586148142815, + 0.0006957579753361642, + -4.3891817767871544e-5, + -0.025940237566828728, + -0.012672469019889832, + 0.011853929609060287, + -0.0029392982833087444, + 0.020433705300092697, + -0.015641532838344574, + -0.026565304026007652, + 0.013602626509964466, + -0.01968957856297493, + -0.015805240720510483, + 0.003962472081184387, + 0.0019217057852074504, + -0.006570633966475725, + 0.009368548169732094, + -0.01024661771953106, + -0.003305780468508601, + -0.001176649471744895, + 0.001893801148980856, + 0.025821177288889885, + 0.008989044465124607, + -0.013810981996357441, + -0.005882317200303078, + -0.0027458255644887686, + 0.00019196129869669676, + 0.001270595472306013, + 0.0012110653333365917, + 0.006332513876259327, + 0.02074623852968216, + -0.014986701309680939, + -0.006961300503462553, + 0.0014649983495473862, + 0.007311039604246616, + -0.0049223946407437325, + 0.018915686756372452, + 0.015180174261331558, + 0.0020593691151589155, + 0.02366321161389351, + -0.03863503038883209, + -0.024675223976373672, + -0.010291265323758125, + -0.00114223372656852, + -0.004066649358719587, + -0.0074003348127007484, + -0.0036313356831669807, + -0.002766289049759507, + 0.0058748759329319, + -0.010194528847932816, + 0.029318571090698242, + 0.014056543819606304, + -0.021460598334670067, + 0.008096092380583286, + -0.00043205826659686863, + 0.005923244170844555, + -0.015150409191846848, + -0.0069501386024057865, + -0.007977032102644444, + -0.01030614785850048, + -0.004304769914597273, + 0.0019347280031070113, + -0.017248844727873802, + 0.013476124964654446, + -0.0063659995794296265, + 0.003415539162233472, + -0.04107576608657837, + -0.0066785323433578014, + -0.01835015043616295, + -0.005580946337431669, + -0.044736865907907486, + -0.01773996837437153, + 0.027994027361273766, + 0.0023774830624461174, + 0.00652226572856307, + -0.011801840737462044, + -0.003515996038913727, + 0.0009571322589181364, + -0.008185387589037418, + 0.01125118788331747, + -0.02375250682234764, + 0.022517258301377296, + -0.009941525757312775, + -0.025181230157613754, + -0.04372485354542732, + -0.011883694678544998, + 0.029913872480392456, + -0.004103855695575476, + 0.006979903671890497, + -0.009688522666692734, + -0.032324839383363724, + 0.00597161240875721, + -0.01907939463853836, + 0.017338139936327934, + -0.030330583453178406, + -0.01368448045104742, + 0.021713601425290108, + 0.005934406071901321, + -0.01203996129333973, + 0.012300405651330948, + 0.001243620878085494, + 0.0175167303532362, + -0.009212281554937363, + 0.010633562691509724, + -0.0053465464152395725, + 0.017695320770144463, + -0.03089611791074276, + 0.01921333745121956, + -0.036611009389162064, + -0.013580302707850933, + -0.010469854809343815, + -0.007351966574788094, + -0.019778873771429062, + -0.017814381048083305, + 0.008907190524041653, + -0.020418822765350342, + 0.0040852525271475315, + 0.011772075667977333, + 0.020642060786485672, + -0.009465284645557404, + -0.019957464188337326, + 0.0283660888671875, + -0.012702234089374542, + -0.008416066877543926, + -0.006979903671890497, + -0.005793022457510233, + -0.024675223976373672, + -0.00960666872560978, + -0.012970118783414364, + 0.015671297907829285, + 0.03089611791074276, + 0.011712545529007912, + 0.014294663444161415, + 0.02961622178554535, + -0.009361106902360916, + 0.023633446544408798, + 0.006570633966475725, + 0.017620908096432686, + 0.012702234089374542, + -0.003354148706421256, + 0.0028704667929559946, + -0.004952159710228443, + 0.007798442151397467, + 0.0107079753652215, + -0.011080038733780384, + -0.01216646283864975, + -0.01384818833321333, + -0.01288826484233141, + -0.00018556645954959095, + 0.01604335941374302, + 0.00352157698944211, + -0.003318802686408162, + -0.00795470830053091, + -0.0053465464152395725, + 0.020314645022153854, + -0.012650145217776299, + -0.0046247439458966255, + 0.010417765937745571, + 0.03464651480317116, + 0.01112468633800745, + 0.02970551699399948, + 0.012940353713929653, + -0.013185915537178516, + 0.01090144831687212, + -0.008311889134347439, + 0.012077167630195618, + -0.005793022457510233, + -0.011496749706566334, + 0.010127557441592216, + -0.016177302226424217, + 0.004341976251453161, + 0.01087168324738741, + -0.020210467278957367, + -0.02439245581626892, + 0.023841802030801773, + -0.032324839383363724, + 0.01099818479269743, + 0.00781332515180111, + -0.0055511812679469585, + -0.007456144317984581, + -0.010767505504190922, + 0.03146165609359741, + -0.012307846918702126, + 0.004208033438771963, + 0.02861909195780754, + -0.02775590680539608, + -0.013081737793982029, + 0.007649616803973913, + 0.01482299342751503, + -0.004528007935732603, + 0.029988285154104233, + 0.016341010108590126, + -0.0021002960857003927, + -0.003344847122207284, + -0.001008290913887322, + -0.012002754956483841, + 0.012493878602981567, + 0.0036871451884508133, + 0.013922601006925106, + -0.009085780940949917, + 0.026743894442915916, + -0.03649194911122322, + -0.026773659512400627, + -0.009294135496020317, + -0.007716588210314512, + -0.014302104711532593, + 0.020210467278957367, + 0.016162419691681862, + 0.010201970115303993, + 0.02669924683868885, + 0.01080471184104681, + -0.008289565332233906, + -0.02803867496550083, + 0.00030416157096624374, + -0.011213981546461582, + -0.014190485700964928, + -0.008058886043727398, + 0.007887737825512886, + -0.015730828046798706, + 0.01593918167054653, + -0.0009673640015535057, + -0.002239819848909974, + 0.0009701544768176973, + -0.00554746063426137, + 0.00043182572699151933, + -0.03131283074617386, + 0.00496332161128521, + -0.00025625844136811793, + 0.012404583394527435, + 0.0009887577034533024, + 0.028023792430758476, + 0.02199636958539486, + -0.009212281554937363, + 0.012337611988186836, + 0.0060460250824689865, + 0.011928342282772064, + 0.0034267010632902384, + -0.015790358185768127, + 0.0047624073922634125, + -0.025627706199884415, + 0.021311772987246513, + -0.023767389357089996, + 0.0001455696765333414, + -0.014525342732667923, + 0.017040489241480827, + -0.00030602188780903816, + 0.0036387769505381584, + -0.011898577213287354, + -0.008334212936460972, + -0.011280952952802181, + 0.03175930678844452, + 0.008401184342801571, + 0.002291908720508218, + -0.03250342980027199, + -0.011400013230741024, + 0.032354604452848434, + -0.016311245039105415, + -0.011920901015400887, + 0.006596678402274847, + 0.010477296076714993, + 0.03187836334109306, + 0.013885394670069218, + 0.012508761137723923, + 0.004940997809171677, + 0.003947589546442032, + 0.014651844277977943, + -0.019391927868127823, + 0.003255551913753152, + 0.006146482191979885, + 0.02269584871828556, + -0.011883694678544998, + 0.01157116238027811, + 0.04229613021016121, + -0.021564776077866554, + 0.005205162335187197, + 0.008222593925893307, + -0.010030820965766907, + 0.0364324189722538, + -0.02138618566095829, + 0.0314318910241127, + -0.008736041374504566, + 0.012077167630195618, + -0.0322653092443943, + -0.018588270992040634, + -0.004416388925164938, + -0.0030806823633611202, + -0.0017403251258656383, + -0.02772614173591137, + -0.01651960052549839, + 0.013855629600584507, + -0.018945451825857162, + 0.04030187427997589, + 0.02166895382106304, + 0.026550421491265297, + -0.017591143026947975, + 0.0330987311899662, + -0.010566591285169125, + -0.0018519440200179815, + 0.02010628953576088, + -0.007437541149556637, + -0.0005301898927427828, + -0.0030230125412344933, + 0.003525297623127699, + 0.007404055446386337, + -0.02122247777879238, + -0.01390771847218275, + 0.018498975783586502, + -0.0022826071362942457, + 0.008319330401718616, + 0.004070369992405176, + -0.024675223976373672, + 0.003752256277948618, + -0.008862542919814587, + -0.023573916405439377, + -0.015522471629083157, + -0.02778567187488079, + -0.006537148263305426, + 0.0010120115475729108, + 0.0035122756380587816, + -0.014860199764370918, + 0.0076868231408298016, + 0.002663971623405814, + -0.007798442151397467, + 0.0026695525739341974, + -0.02958645671606064, + -0.02157965861260891, + 0.01219622790813446, + 0.01757626049220562, + 0.0022230769973248243, + -0.012687351554632187, + -0.01058147381991148, + 0.022651201114058495, + 0.00405920809134841, + -0.025508645921945572, + 0.0038434115704149008, + -0.004461036529392004, + 0.0042898873798549175, + 0.021951721981167793, + -0.03396191820502281, + -0.011504190973937511, + -0.0028332604561001062, + 0.04274260625243187, + -0.005759536754339933, + -0.003437862964347005, + -0.016341010108590126, + -0.025493763387203217, + -0.009472725912928581, + -0.007560322061181068, + 0.007791000884026289, + 0.005986494943499565, + 0.019153807312250137, + -0.0070580365136265755, + -0.005037734284996986, + -0.003553202375769615, + 0.02244284562766552, + 0.015730828046798706, + 0.0026118827518075705, + 0.006217174232006073, + 0.0025653750635683537, + 0.031223533675074577, + -0.0022826071362942457, + 0.0017868329305201769, + 0.0017775313463062048, + 0.01629636250436306, + -0.013922601006925106, + -0.00048368200077675283, + -0.02442222088575363, + 0.0016110331052914262, + 0.015328998677432537, + 0.019391927868127823, + 0.001407328643836081, + -0.0027588477823883295, + 0.0069278148002922535, + -0.007188258692622185, + -0.003865735372528434, + 0.0017989249899983406, + -6.458782445406541e-5, + 0.0033876344095915556, + 0.007024551276117563, + -0.0038545734714716673, + 0.0005594898830167949, + -0.011593486182391644, + -0.006726900581270456, + 0.014011896215379238, + 0.016564248129725456, + -0.014785787090659142, + 0.0021207595709711313, + -0.027205253019928932, + 0.05887526273727417, + -0.024764519184827805, + 0.004468477796763182, + 0.010187087580561638, + 0.004487080965191126, + -0.023097677156329155, + -0.0032629931811243296, + 0.0021077373530715704, + 0.022011252120137215, + -0.0057706986553967, + -0.010224293917417526, + -0.016192184761166573, + 0.029214393347501755, + 0.0034769296180456877, + -0.02285955660045147, + -0.01526946946978569, + 0.007541718892753124, + 0.002827679505571723, + 0.02208566479384899, + 0.014264898374676704, + 0.015924299135804176, + -0.004193150904029608, + -0.007999355904757977, + -0.005380032118409872, + 0.005778139922767878, + 0.01565641537308693, + -0.012374818325042725, + -0.023291148245334625, + 0.02122247777879238, + 0.018737096339464188, + -0.0003111377591267228, + 0.00508982315659523, + -0.002468638587743044, + -0.011243746615946293, + 0.003579246811568737, + 0.01294779498130083, + 0.0029318570159375668, + 0.021282007917761803, + -0.007694264408200979, + 0.007709146942943335, + 0.0070580365136265755, + -0.013185915537178516, + 0.03294990584254265, + 0.021043887361884117, + -0.04027210921049118, + 0.003925265744328499, + -0.024868696928024292, + -0.0010241036070510745, + -0.0006715738563798368, + 0.004066649358719587, + 0.009695963934063911, + -0.020642060786485672, + -0.001979375723749399, + 0.015128085389733315, + 0.023350678384304047, + 0.003402516944333911, + 0.014346752315759659, + -0.005878596566617489, + 0.0010473575675860047, + -0.0015031348448246717, + -0.012672469019889832, + -0.003662961069494486, + -1.5391204215120524e-5, + -0.017070254310965538, + -0.023201854899525642, + -0.0015208078548312187, + -0.01866268366575241, + -0.004903791472315788, + -0.010187087580561638, + -0.010700534097850323, + -0.008483038283884525, + -0.007526836358010769, + 0.015090879052877426, + -0.023365560919046402, + -0.008319330401718616, + -0.00011894392082467675, + 0.0008701625629328191, + 0.031104473397135735, + 0.026714129373431206, + -0.00866162870079279, + -0.0023812036961317062, + -0.001185951055958867, + -0.021817779168486595, + -0.009033692069351673, + 0.0010734020033851266, + -0.00665248790755868, + 0.020895062014460564, + -0.024184100329875946, + -0.01109492126852274, + -0.014592314139008522, + -0.020820649340748787, + -0.012553408741950989, + 0.01125118788331747, + 0.003973633982241154, + -0.018900804221630096, + -0.00041229240014217794, + 0.007374290376901627, + -0.009420637041330338, + -0.0018817090895026922, + -0.007162214256823063, + 0.015373646281659603, + -0.0008273752755485475, + 0.002676993841305375, + -0.002941158600151539, + -0.001513366587460041, + 0.008483038283884525, + 0.020656943321228027, + 0.01087168324738741, + -0.015671297907829285, + -0.004725201055407524, + 0.0015859189443290234, + -0.016951194033026695, + 0.0011385130928829312, + -0.013855629600584507, + -0.02119271270930767, + -0.0021337817888706923, + 0.01629636250436306, + 0.015031348913908005, + -0.025716999545693398, + -0.015165291726589203, + -0.013342182151973248, + 0.009495049715042114, + -0.017888793721795082, + -0.012531084939837456, + -0.01921333745121956, + 0.0058190664276480675, + -0.005681403446942568, + -0.005536298733204603, + 0.0036313356831669807, + 0.012144139036536217, + 0.030419878661632538, + 0.015053672716021538, + 0.01693631149828434, + -0.011548838578164577, + 0.01447325386106968, + 0.007087801583111286, + -0.009375989437103271, + 0.009204840287566185, + 0.013736569322645664, + -0.017427435144782066, + 0.02597000263631344, + -0.018112031742930412, + -0.0035866880789399147, + 0.0115413973107934, + -0.0017198616405948997, + -0.023990627378225327, + 0.0014036080101504922, + -0.02135642059147358, + 0.024481751024723053, + 0.0026211843360215425, + 0.02378227189183235, + -0.030687762424349785, + 0.0007045944803394377, + -0.0035234373062849045, + 0.0017114902148023248, + 0.0038694560062140226, + -0.024184100329875946, + 0.006946417968720198, + -0.024318043142557144, + 0.006935256067663431, + 0.011355365626513958, + 0.012151580303907394, + -0.02541935071349144, + 0.006012539379298687, + -0.026356948539614677, + 0.0250324048101902, + 0.006626443471759558, + 0.008044003508985043, + 0.00043252334580756724, + -0.003774580080062151, + -0.004847981967031956, + -0.001478020567446947, + 0.022145194932818413, + -0.01523970440030098, + -0.02378227189183235, + 0.004621023312211037, + 0.006857122760266066, + 0.01526946946978569, + -0.00795470830053091, + 0.01437651738524437, + 0.003116028383374214, + -0.005993936210870743, + 0.01802273653447628, + 0.0037113293074071407, + -0.013446359895169735, + -0.022115429863333702, + 0.0117497518658638, + -0.018751978874206543, + 0.01623683236539364, + -0.00024463149020448327, + -0.0027811715845018625, + 0.021594541147351265, + 0.015596884302794933, + -0.004431271459907293, + 0.004847981967031956, + -0.005796743091195822, + 0.025136582553386688, + 0.013721686787903309, + 0.014272339642047882, + -0.003344847122207284, + -0.006965021137148142, + -0.012010196223855019, + 0.017263727262616158, + 0.01177951693534851, + 0.01291802991181612, + -0.013178474269807339, + -0.012092050164937973, + -0.015611766837537289, + -0.00041229240014217794, + -0.0073296427726745605, + -0.018454328179359436, + -0.01206972636282444, + 0.01494949497282505, + 0.0012203669175505638, + -0.016817251220345497, + 0.006224615499377251, + 0.0002904417342506349, + 0.01526946946978569, + -0.005443282891064882, + 0.006339955143630505, + -0.0022286579478532076, + -0.006477618124336004, + -0.002743965247645974, + -0.013535655103623867, + 0.005659079644829035, + -0.00453916983678937, + -0.003999677952378988, + -0.003123469650745392, + 0.0003709003794938326, + -0.007322201505303383, + 0.011757193133234978, + -0.010760064236819744, + -0.009152752347290516, + 0.01326776947826147, + 0.005967891775071621, + 0.035003695636987686, + 0.003408097894862294, + -0.009896878153085709, + 0.006771548185497522, + -0.0034136788453906775, + -0.018900804221630096, + 0.01430954597890377, + -0.013148709200322628, + -0.01440628245472908, + -0.0030062696896493435, + -0.003685284871608019, + 0.0023235338740050793, + -0.001986816991120577, + -0.0008971370989456773, + -3.0753340979572386e-5, + -0.009643875062465668, + 0.0010743321618065238, + -0.005588387604802847, + 0.0040629287250339985, + 0.006685973610728979, + -0.008125857450067997, + -0.00048507723840884864, + 0.006414367817342281, + -0.012173904106020927, + -0.016400540247559547, + 0.0037057483568787575, + 0.005402355920523405, + 0.004048046190291643, + 0.001327335019595921, + 0.00772402947768569, + 0.007601249031722546, + -0.030003167688846588, + 0.006016260012984276, + -0.021118300035595894, + 0.011712545529007912, + 0.011303276754915714, + 0.007887737825512886, + -0.0006483199540525675, + -0.00033160121529363096, + 0.0018696170300245285, + 0.002226797631010413, + 0.012412024661898613, + -0.004736362956464291, + -0.01994258165359497, + -0.006295307539403439, + -0.0071250079199671745, + -0.0021561055909842253, + 0.008363978005945683, + -0.014205368235707283, + -0.014979260042309761, + -0.014889964833855629, + 0.02119271270930767, + 0.007895179092884064, + -0.0044052270241081715, + 0.0023923655971884727, + -0.00338949472643435, + 0.011065156199038029, + -0.01715954951941967, + -0.007526836358010769, + 0.011764634400606155, + 0.011437219567596912, + 0.023484621196985245, + -0.01930263265967369, + 0.02263631857931614, + -0.011243746615946293, + 0.0007771467790007591, + -0.004211754072457552, + 0.005167956463992596, + -0.013572861440479755, + 0.01629636250436306, + 0.02413945272564888, + 0.010819594375789165, + 0.0007092452724464238, + -0.008252358995378017, + 0.02144571579992771, + -0.0034322820138186216, + -0.006663649808615446, + -0.010797270573675632, + -0.0107749467715621, + -0.005517695564776659, + -0.012404583394527435, + 0.023350678384304047, + 0.026803424581885338, + 0.006756665650755167, + -0.005197721067816019, + -0.01835015043616295, + 0.0023923655971884727, + 0.021654071286320686, + 0.0031699775718152523, + 0.03009246289730072, + -0.01131815928965807, + 0.011429778300225735, + 0.0006232056766748428, + -0.008609539829194546, + 0.003380193142220378, + 0.004743804223835468, + 0.016281479969620705, + -0.023588798940181732, + -0.01526946946978569, + -0.012464113533496857, + 0.02669924683868885, + -0.002654670039191842, + 0.0014677888248115778, + -0.01390771847218275, + -0.007355687208473682, + -0.013424036093056202, + -0.029660869389772415, + 0.0022584230173379183, + -0.0013691921485587955, + -0.00891463179141283, + 0.007151052355766296, + -0.007072919048368931, + -0.012307846918702126, + 0.002898371545597911, + -0.0016659124521538615, + -0.025374703109264374, + -0.00023428347776643932, + 0.0316997766494751, + 0.00824491772800684, + -0.020567648112773895, + 0.003129050601273775, + 0.014450930058956146, + 0.01629636250436306, + 0.018305504694581032, + -0.00846815574914217, + -0.0005608851206488907, + 0.010879124514758587, + -0.0047847311943769455, + -0.0033467074390500784, + 0.01710001938045025, + -0.001375703257508576, + 0.020597413182258606, + 0.01298500131815672, + -0.03488463535904884, + 0.021951721981167793, + -0.006377161480486393, + -0.040004223585128784, + 0.010209411382675171, + 0.0021393627393990755, + -0.016608895733952522, + 0.016594013199210167, + -0.004687994718551636, + 0.0017338140169158578, + -0.0038210877683013678, + -0.012121815234422684, + 0.0011264210334047675, + -0.0024798004887998104, + 0.001885429723188281, + -0.01904962956905365, + 0.010134998708963394, + 0.02692248485982418, + 0.031908128410577774, + 0.021341538056731224, + 0.02852979674935341, + -0.021177830174565315, + 0.0006729690940119326, + 0.014927171170711517, + 0.018320387229323387, + -0.001044567092321813, + -0.010827035643160343, + 0.011697662994265556, + -0.016504717990756035, + 0.013230563141405582, + 0.0028202382382005453, + -0.022517258301377296, + -0.008483038283884525, + 0.0010631702607497573, + 0.0008766736718825996, + -0.010737740434706211, + -0.0018556646537035704, + -0.016698190942406654, + 0.001132932142354548, + 0.009948967024683952, + 0.029407866299152374, + 0.0021840103436261415, + -0.016921428963541985, + -6.809045316913398e-6, + -0.006503662560135126, + -0.0006315771024674177, + 0.006473897490650415, + -0.020597413182258606, + -0.012932912446558475, + -0.0024667782709002495, + 0.021460598334670067, + -0.000767845194786787, + 0.011824164539575577, + -0.008966720663011074, + 0.010633562691509724, + -0.004598699510097504, + 0.0074896300211548805, + -0.004148503299802542, + 0.030107345432043076, + -0.004230357240885496, + 0.004453595262020826, + 0.01131815928965807, + 0.008200270123779774, + -0.042087774723768234, + -0.014056543819606304, + 0.009867113083600998, + -0.03034546598792076, + -0.009993614628911018, + 0.021892191842198372, + -0.0047177597880363464, + 0.0055065336637198925, + 0.005670241545885801, + -0.007050595246255398, + -0.015983829274773598, + -0.014592314139008522, + -0.005435841623693705, + 0.021029004827141762, + -0.005923244170844555, + -0.006339955143630505, + 0.006920373532921076, + -0.018037619069218636, + -0.02010628953576088, + -0.00011278162128292024, + -0.0017775313463062048, + -0.02132665552198887, + -0.0033746121916919947, + -0.013379388488829136, + 0.0005506533780135214, + 0.005826507695019245, + -0.014346752315759659, + 0.015284351073205471, + -0.013773775659501553, + 0.022353550419211388, + 0.006202291697263718, + 0.004792172461748123, + -0.013178474269807339, + -0.003729932475835085, + 0.016847016289830208, + 0.014808110892772675, + 0.01690654642879963, + -0.018424563109874725, + 0.012828735634684563, + -0.01048473734408617, + 0.022532140836119652, + 0.026267653331160545, + 0.014882523566484451, + 0.019228219985961914, + 0.02010628953576088, + -0.014339311048388481, + 0.007441261783242226, + -0.0024444544687867165, + -0.014904847368597984, + -0.004691715352237225, + -0.013379388488829136, + -0.003640637267380953, + -0.024288278073072433, + 0.02416921779513359, + -0.011600927449762821, + 0.003917824476957321, + 0.005949288606643677, + 0.017665555700659752, + -0.00891463179141283, + 0.019406810402870178, + 0.020597413182258606, + 0.005499092396348715, + -0.008862542919814587, + 0.017248844727873802, + -0.016385657712817192, + 0.025731882080435753, + 0.0008255149587057531, + -0.0005125168827362359, + -0.0074449824169278145, + 0.026818307116627693, + -0.0009971290128305554, + -0.005629314575344324, + -0.01131815928965807, + 0.020924827083945274, + -0.0062283361330628395, + -0.009495049715042114, + 0.013178474269807339, + -0.0014649983495473862, + 0.004241519141942263, + 0.0057372129522264, + 0.008096092380583286, + -0.03482510522007942, + 0.019451458007097244, + 0.004635905846953392, + 0.02324650064110756, + -0.00726639200001955, + -0.003460186766460538, + 0.01523970440030098, + 0.0024444544687867165, + 0.013319858349859715, + -0.018290622159838676, + -0.0009087640792131424, + -0.0016082426300272346, + 0.0215498935431242, + 0.0035457611083984375, + 0.004048046190291643, + 0.004501963499933481, + -0.003992236685007811, + -0.007519395090639591, + -0.0073296427726745605, + 0.016088007017970085, + -0.006269263103604317, + -0.028544679284095764, + 0.0074449824169278145, + 0.016504717990756035, + 0.013617509044706821, + -0.005406076554208994, + 0.03229507431387901, + -0.030196640640497208, + 0.021148065105080605, + 0.004297328647226095, + -0.00944296084344387, + -0.012345053255558014, + -0.009562021121382713, + -0.006912932265549898, + 0.015790358185768127, + 0.006377161480486393, + -0.008475597016513348, + -0.005376311484724283, + -0.02138618566095829, + 0.002288188086822629, + 0.00041461779619567096, + 0.021073652431368828, + 0.025568176060914993, + -0.025553293526172638, + 0.018126914277672768, + -0.004974483512341976, + -0.009361106902360916, + 0.019004981964826584, + 0.01574571058154106, + 0.0016603315016254783, + -0.0038731766398996115, + -0.01773996837437153, + -0.03720630705356598, + 0.0075119538232684135, + 0.013543096370995045, + -0.0038545734714716673, + 0.018558505922555923, + -0.013200798071920872, + -0.018960334360599518, + 0.0046024201437830925, + -0.01326776947826147, + -0.008289565332233906, + -0.007132449187338352, + -0.0187668614089489, + -0.026684364303946495, + -0.002317952923476696, + 0.01623683236539364, + 0.008125857450067997, + 0.001553363399580121, + -0.01974910870194435, + -0.0058748759329319, + -0.0027365239802747965, + -0.015165291726589203, + 0.01776973344385624, + -0.0009617830510251224, + 0.005100985057651997, + 0.03172954171895981, + 0.0007111055892892182, + 0.019094277173280716, + -0.01843944564461708, + -0.006764106918126345, + 0.003300199517980218, + 0.024957992136478424, + -0.0005929755279794335, + -0.009204840287566185, + -0.009070898406207561, + -0.024600811302661896, + -0.03297967091202736, + -0.0035513420589268208, + 0.006072069518268108, + 0.015128085389733315, + -0.002956041134893894, + -0.010886565782129765, + 0.010216852650046349, + -0.010105233639478683, + 0.005305619444698095, + -0.005606990773230791, + 0.011407454498112202, + -0.003473208984360099, + -0.02026999741792679, + 0.01757626049220562, + -0.020954592153429985, + 0.030419878661632538, + -0.005956729874014854, + 0.021014122292399406, + -0.018394798040390015, + 0.028455384075641632, + 0.007962149567902088, + -0.009569462388753891, + 0.0048293787986040115, + 0.0028332604561001062, + -0.0026081621181219816, + -0.016668425872921944, + -0.006957579869776964, + 0.010856800712645054, + 0.016534483060240746, + 0.0330987311899662, + 0.003981074783951044, + 0.0006799452821724117, + 0.0010557289933785796, + -0.007132449187338352, + -0.03205695375800133, + -0.0018835694063454866, + -0.02672901190817356, + 0.0021226198878139257, + 0.009800141677260399, + -0.005837669596076012, + -0.016088007017970085, + 0.011586044915020466, + -0.008550009690225124, + -0.01008290983736515, + -0.015403411351144314, + 0.004483360331505537, + -0.011853929609060287, + 0.004684274084866047, + 0.007359407842159271, + 0.001979375723749399, + -0.0014482556143775582, + -0.015671297907829285, + 0.016921428963541985, + -0.01907939463853836, + 0.01122142281383276, + 0.015968946740031242, + -0.010261500254273415, + 0.002423990983515978, + -0.016221949830651283, + 0.02019558474421501, + -0.0022472611162811518, + -0.03303920105099678, + -0.012114373967051506, + 0.004483360331505537, + 0.028261911123991013, + -0.01693631149828434, + -0.003209044225513935, + -0.005900920368731022, + 0.012322729453444481, + -0.015983829274773598, + -0.01037311926484108, + -0.006261821836233139, + -0.01397468987852335, + -0.009822465479373932, + 0.01235993579030037, + -0.0004453129949979484, + 0.015537354163825512, + 0.0010789829539135098, + -0.019138924777507782, + 0.016341010108590126, + -0.013379388488829136, + -0.003402516944333911, + -0.0054395622573792934, + 0.0030918442644178867, + -0.011206540279090405, + -1.177230842586141e-5, + -0.003966192714869976, + 0.02099923975765705, + -0.023127442225813866, + -0.004368020687252283, + 0.004420109558850527, + -0.009018809534609318, + 0.0012417605612426996, + -0.009703405201435089, + -0.02269584871828556, + 0.00444243336096406, + 0.006429249886423349, + 0.008066327311098576, + -0.021907074376940727, + -0.030330583453178406, + -0.003110447432845831, + -0.015552236698567867, + 0.010239176452159882, + 0.012352494522929192, + -0.005357708316296339, + 0.00019079860066995025, + -0.027011780068278313, + 0.006499941926449537, + 0.02090994454920292, + 0.005785581190139055, + -0.012501319870352745, + 0.028901860117912292, + -0.01485275849699974, + -0.0033039201516658068, + 0.008416066877543926, + -0.001079913112334907, + -0.009368548169732094, + -0.03268202021718025, + 0.012538526207208633, + -0.014450930058956146, + -0.00018812439520843327, + 0.018677566200494766, + 0.0030676601454615593, + -0.019391927868127823, + -0.004100135061889887, + -0.009026250801980495, + -0.02144571579992771, + -0.011184216476976871, + 0.018781743943691254, + -0.010789829306304455, + -0.003694586455821991, + 0.04080788046121597, + 0.0021709881257265806, + -0.015165291726589203, + 0.0019775154069066048, + -0.0023830640129745007, + -0.005294457543641329, + 0.0022733055520802736, + 0.0034099582117050886, + -0.006232056766748428, + 0.03175930678844452, + -0.01574571058154106, + -0.021118300035595894, + 0.0017449759179726243, + 0.005231206770986319, + 0.010105233639478683, + -0.026937367394566536, + -0.009271811693906784, + 0.005856272764503956, + -0.010038262233138084, + 0.023871567100286484, + -0.001730093383230269, + -0.005071219988167286, + 0.02071647346019745, + -0.014034220017492771, + 0.010633562691509724, + 0.02049323543906212, + -0.012590615078806877, + -0.015068555250763893, + 0.004498242866247892, + 0.013773775659501553, + 0.020820649340748787, + 0.016028476879000664, + -0.012129256501793861, + 0.004487080965191126, + 0.0042898873798549175, + -0.00781332515180111, + -0.00206122943200171, + 0.00014998792903497815, + -0.006284145638346672, + 0.03434886410832405, + -0.004226636607199907, + 0.011928342282772064, + -0.005845110863447189, + -0.023573916405439377, + 0.0021077373530715704, + -0.013982131145894527, + -0.007392893545329571, + -0.005900920368731022, + 0.0051493532955646515, + 0.009919201955199242, + 0.0007483118679374456, + -0.02026999741792679, + -0.019094277173280716, + 0.0031941616907715797, + -0.013766334392130375, + 0.00795470830053091, + 0.006485059391707182, + 0.017427435144782066, + 0.0053911940194666386, + 0.006261821836233139, + 0.02026999741792679, + -0.00846815574914217, + -0.002159826224669814, + 0.0014836015179753304, + 0.017680438235402107, + 0.002561654429882765, + -0.01024661771953106, + -0.011638132855296135, + -0.006455294322222471, + -0.00846815574914217, + -0.004680553451180458, + -0.017650673165917397, + -0.006124158389866352, + -0.012426907196640968, + -0.03009246289730072, + 0.013617509044706821, + -0.021698718890547752, + 0.0026732732076197863, + -0.0046024201437830925, + -0.014956936240196228, + 0.003884338540956378, + -0.0016389378579333425, + 0.001588709419593215, + -0.019585400819778442, + 0.02196660451591015, + 0.0062729837372899055, + -0.008252358995378017, + -0.012412024661898613, + -0.0029039522632956505, + 0.009941525757312775, + -0.013930042274296284, + 0.007091522216796875, + 0.017010724171996117, + -0.01384818833321333, + -0.024005509912967682, + 0.011385130695998669, + -0.011816723272204399, + 0.016221949830651283, + 0.004434992093592882, + -0.013260328210890293, + -0.022130312398076057, + 0.007865414023399353, + -0.007776118349283934, + -0.0076644993387162685, + 0.02413945272564888, + -0.01674283854663372, + -0.0069278148002922535, + 0.0005776279140263796, + 0.02750290371477604, + 0.020790884271264076, + -0.0008683022460900247, + -0.0125831738114357, + -0.0010910750133916736, + 0.003582967445254326, + 0.006656208541244268, + 0.0114744259044528, + 0.0074226586148142815, + -0.008550009690225124, + -0.005458165425807238, + 0.010321030393242836, + 0.014569990336894989, + 0.0074673062190413475, + 0.011288394220173359, + -0.0007008738466538489, + -0.007679381873458624, + 0.001216646283864975, + -0.023588798940181732, + -0.02500263974070549, + 0.013438918627798557, + -0.011392571963369846, + 0.016564248129725456, + 0.023350678384304047, + -0.00402572238817811, + -0.007932385429739952, + 0.006979903671890497, + 0.003515996038913727, + -0.017591143026947975, + -0.0027365239802747965, + 0.0074449824169278145, + -0.007366849109530449, + -0.012367377057671547, + -0.02597000263631344, + 0.00888486672192812, + -0.00742637924849987, + -0.007984473370015621, + -0.003460186766460538, + -0.0027867525350302458, + 0.004308490548282862, + 0.01352821383625269, + 0.004501963499933481, + 0.0015673157759010792, + 0.004163385834544897, + -0.00934622436761856, + 0.008535127155482769, + -0.010983302257955074, + -0.005197721067816019, + 0.028410736471414566, + -0.007850531488656998, + -0.0018798487726598978, + 0.016817251220345497, + -0.0019979786593466997, + 0.011481867171823978, + 0.016385657712817192, + -0.00881789531558752, + -0.003793183248490095, + -0.01387795340269804, + 0.014584872871637344, + 0.00025695606018416584, + -0.020225349813699722, + 0.0031923013739287853, + 0.015157850459218025, + -0.016028476879000664, + -0.006574354600161314, + -0.003597849979996681, + -0.006239498034119606, + 0.00204448658041656, + -0.03348567709326744, + 0.002654670039191842, + -0.008103533647954464, + 0.005212603602558374, + -0.023186972364783287, + -0.008133298717439175, + -0.005074940621852875, + 0.01027638278901577, + 0.0011803701054304838, + 0.012531084939837456, + -0.0035718055441975594, + 0.0025430512614548206, + 0.010015938431024551, + 0.003943868912756443, + -0.013342182151973248, + 0.004650788381695747, + 0.022457728162407875, + 0.01949610561132431, + 0.014480695128440857, + 0.015165291726589203, + -0.0018575249705463648, + -0.004758686758577824, + 0.0011236305581405759, + -0.004598699510097504, + 0.018424563109874725, + 0.012449230998754501, + 0.012129256501793861, + -0.014703933149576187, + -0.0008417927310802042, + -0.003800624515861273, + -0.025463998317718506, + -0.006072069518268108, + -0.009576903656125069, + 0.008170505054295063, + 0.004676832817494869, + -0.010023379698395729, + -0.0065855165012180805, + -0.005793022457510233, + -0.01491972990334034, + 0.011184216476976871, + 0.0005539089324884117, + -0.00018824066501110792, + -0.009227164089679718, + 0.001699398155324161, + -0.015894535928964615, + 0.005603270139545202, + 0.011690221726894379, + 0.011117245070636272, + 0.0018649662379175425, + -0.00805144477635622, + -0.009807582944631577, + -0.007132449187338352, + -0.023201854899525642, + 0.002544911578297615, + -0.009048574604094028, + -0.007337084040045738, + 0.011809282004833221, + -0.0010724718449637294, + 0.026788542047142982, + -0.002978364937007427, + -0.0008896958315744996, + -0.05167211964726448, + -0.011504190973937511, + 0.009673640131950378, + -0.0038731766398996115, + 0.018528740853071213, + -0.012278081849217415, + 0.014123514294624329, + 0.009584344923496246, + -0.0023960862308740616, + -0.024764519184827805, + 0.011236305348575115, + -0.03381309285759926, + 0.016445187851786613, + -0.027458256110548973, + 0.006857122760266066, + 0.009301576763391495, + -0.0283660888671875, + 0.007214303128421307, + 0.010938654653728008, + 0.0012147859670221806, + 0.0030955648981034756, + 0.017144666984677315, + -0.015820123255252838, + -0.006101834587752819, + -0.01541829388588667, + -0.002712339861318469, + -0.008453273214399815, + -0.02122247777879238, + -0.01421280950307846, + -0.002531889360398054, + 0.027220135554671288, + -0.017933441326022148, + -0.02352926880121231, + 0.015537354163825512, + 0.024347808212041855, + -0.011057714931666851, + -0.017204197123646736, + 0.02088017947971821, + -0.018588270992040634, + 0.025106817483901978, + -0.006823637057095766, + -0.028380971401929855, + 0.017144666984677315, + 0.02366321161389351, + -0.006432970520108938, + -0.02619324065744877, + -0.011087480001151562, + -0.021951721981167793, + 0.006187409162521362, + 0.0114744259044528, + 0.020642060786485672, + -0.0026528097223490477, + 0.026743894442915916, + -0.0058190664276480675, + 0.01565641537308693, + 0.01248643733561039, + -0.00522748613730073, + 0.0064106471836566925, + -0.0002869536401703954, + -0.00408897316083312, + -0.029214393347501755, + -0.02157965861260891, + -0.007701705675572157, + 0.0029002318624407053, + 0.015254586935043335, + -0.0003090449026785791, + -0.016757721081376076, + -0.0058860378339886665, + 0.003443443914875388, + -0.0028425620403140783, + 0.0010278242407366633, + 0.010068027302622795, + 0.011853929609060287, + -0.004751245491206646, + 0.007333363406360149, + -0.01291802991181612, + 0.0017114902148023248, + -0.014011896215379238, + -0.012367377057671547, + 0.0017896234057843685, + -0.0013710524654015899, + 0.016951194033026695, + -0.009420637041330338, + -0.023484621196985245, + -0.005517695564776659, + -0.008974161930382252, + -9.458541171625257e-5, + 0.01125118788331747, + -0.001128281350247562, + -0.0115413973107934, + -0.020031876862049103, + 0.0250324048101902, + 0.005785581190139055, + 0.00222121668048203, + 0.005145632661879063, + 0.016251714900135994, + -0.03348567709326744, + -0.015343881212174892, + 0.006552030798047781, + -0.013357064686715603, + 0.03464651480317116, + -0.020121172070503235, + 0.0097331702709198, + 0.0069054909981787205, + 0.011600927449762821, + -0.0028555842582136393, + 0.0031662569381296635, + 0.01860315352678299, + -0.010507061146199703, + -0.003995957318693399, + 0.010001055896282196, + -0.019183572381734848, + 0.009353665634989738, + 0.0032406693790107965, + -0.013863070867955685, + 0.006979903671890497, + -0.011132127605378628, + 0.004844261333346367, + -0.00019800732843577862, + 0.00470659788697958, + -0.004940997809171677, + 0.0019458899041637778, + -0.019198454916477203, + -0.005015410482883453, + -0.006626443471759558, + 0.006094393320381641, + 0.008773247711360455, + 0.0028220985550433397, + -0.005313060712069273, + 0.007694264408200979, + 0.02842561900615692, + -0.0002902091946452856, + -0.009688522666692734, + -0.0020091405604034662, + 0.00907833967357874, + 0.00316067598760128, + -0.01626659743487835, + -0.005822787061333656, + 0.0011096781818196177, + 0.009844789281487465, + -0.011370248161256313, + -0.002770009683445096, + -0.011228864081203938, + -0.0036090118810534477, + -0.007385452277958393, + -0.020731355994939804, + -0.0030992855317890644, + -0.0029746443033218384, + -0.0006859913119114935, + -0.0067901513539254665, + -0.0006897119455970824, + 0.015135526657104492, + 0.026907602325081825, + -0.00837141927331686, + 0.004810775630176067, + -0.026996897533535957, + -0.015805240720510483, + -0.013572861440479755, + -0.0031755585223436356, + -0.011906018480658531, + -0.010499619878828526, + 0.02605929784476757, + 0.018811509013175964, + -0.009487608447670937, + 0.009725729003548622, + 0.010782388038933277, + -0.015968946740031242, + -0.006693414878100157, + 0.0024853814393281937, + 0.009130428545176983, + -0.004479639697819948, + 0.012255758047103882, + -0.018305504694581032, + 0.018707331269979477, + -0.000740870600566268, + -0.0039550308138132095, + -0.010782388038933277, + 0.006187409162521362, + -0.007452423684298992, + 0.013185915537178516, + 0.014584872871637344, + -0.007545439526438713, + 0.011355365626513958, + -0.016594013199210167, + -0.018171561881899834, + 0.02388644963502884, + -0.01206972636282444, + 0.012025078758597374, + 0.010916330851614475, + -0.0012957097496837378, + 0.031580716371536255, + -0.009703405201435089, + 0.02055276557803154, + -0.0025821179151535034, + -0.0006952928961254656, + -0.01607312448322773, + -0.003716910257935524, + -0.007910061627626419, + 0.01782926358282566, + -0.011883694678544998, + 0.0006329723400995135, + 0.006920373532921076, + 0.00827468279749155, + 0.009197399020195007, + -0.017367905005812645, + 0.005216324236243963, + -0.009428078308701515, + 0.0018500837031751871, + 0.018677566200494766, + 0.02019558474421501, + 0.010380560532212257, + -0.003402516944333911, + -0.0062060123309493065, + -0.00655575143173337, + -0.002911393530666828, + -0.006406926549971104, + -0.012665027752518654, + 0.011526514776051044, + -0.01837991550564766, + -0.013595185242593288, + -0.013543096370995045, + 0.01715954951941967, + 0.018484093248844147, + 0.008140739984810352, + -0.013007325120270252, + -0.03128306567668915, + 0.012121815234422684, + 0.005580946337431669, + 0.020820649340748787, + -0.010588915087282658, + -0.00502657238394022, + -0.004423830192536116, + 0.0010371258249506354, + -0.02833632379770279, + 0.00033090359647758305, + 0.013074296526610851, + -0.004237798508256674, + -0.006120437756180763, + -0.0015942903701215982, + 0.003925265744328499, + 0.017918558791279793, + 0.0015961506869643927, + 0.012627821415662766, + -0.003268574131652713, + 0.0034415835980325937, + 0.0032276471611112356, + -0.007355687208473682, + -0.001725442591123283, + 0.0032016029581427574, + 0.015373646281659603, + 0.011504190973937511, + 0.007738912012428045, + 0.013669597916305065, + -0.007258950732648373, + 0.01860315352678299, + 0.0033950756769627333, + -0.014316987246274948, + 0.018722213804721832, + -0.006306469440460205, + 0.02144571579992771, + -0.0241989828646183, + 0.019585400819778442, + 0.011243746615946293, + 0.0022156357299536467, + 0.003216485260054469, + -0.0005743723595514894, + 0.008401184342801571, + 0.024258513003587723, + -0.01408630795776844, + -0.0031123077496886253, + 0.018320387229323387, + 0.0013198937522247434, + 0.002007280243560672, + -0.011533956043422222, + 0.01693631149828434, + -0.010187087580561638, + 0.012687351554632187, + -0.006615281570702791, + 0.0033522883895784616, + -0.0027681493666023016, + -0.028485149145126343, + -0.008096092380583286, + -0.013476124964654446, + 0.014235133305191994, + -0.0056665209122002125, + -0.0028797683771699667, + -0.003508555004373193, + 0.002827679505571723, + 0.01568618044257164, + -0.017308374866843224, + -0.021371303126215935, + 0.0017366044921800494, + 0.013736569322645664, + -0.010172205045819283, + -0.02138618566095829, + 0.03387262299656868, + 0.016787486150860786, + -0.009591786190867424, + -0.0029002318624407053, + 0.015254586935043335, + -0.01732325740158558, + 0.01203996129333973, + -0.009688522666692734, + -0.018112031742930412, + 0.0026528097223490477, + 0.010574032552540302, + -0.011995313689112663, + -0.01971934363245964, + -0.03854573518037796, + -0.005454444792121649, + -0.007910061627626419, + 0.0032276471611112356, + 0.010105233639478683, + -0.002397946547716856, + -0.013022207655012608, + -0.0016073124716058373, + -0.002314232289791107, + 0.007634734734892845, + 0.017725085839629173, + 0.04655253142118454, + 0.03896244615316391, + 0.005067499354481697, + 0.004900070838630199, + 0.0011189797660335898, + -0.0550653375685215, + -0.0022602833341807127, + -0.016698190942406654, + -0.015968946740031242, + -0.012999883852899075, + 0.0002460267278365791, + 0.0035811071284115314, + 0.012240875512361526, + 0.02119271270930767, + -0.003515996038913727, + 0.017531612887978554, + -0.01646007038652897, + 0.011496749706566334, + 0.004115017596632242, + -0.006548310164362192, + -0.0011478145606815815, + 0.013498448766767979, + -0.005789301823824644, + -0.0067678275518119335, + 0.015954064205288887, + -0.006544589530676603, + -0.005208882968872786, + -0.019094277173280716, + -0.015730828046798706, + 0.03050917387008667, + 0.02497287467122078, + -0.02282979153096676, + -0.0166833084076643, + -0.011139568872749805, + -0.0046693915501236916, + 0.019451458007097244, + 0.009562021121382713, + 0.003947589546442032, + 0.002074251649901271, + -0.008096092380583286, + 0.006139040924608707, + -0.014718815684318542, + 0.015217380598187447, + -0.04018281400203705, + 0.0037373737432062626, + 0.014428606256842613, + -0.007962149567902088, + -0.0040182811208069324, + -0.001189671689644456, + 0.0087583651766181, + -0.004118738230317831, + 0.013513331301510334, + 0.006942697335034609, + -0.016847016289830208, + -0.01027638278901577, + 0.0194663405418396, + 0.02372274175286293, + -0.02430316060781479, + -0.0073296427726745605, + -0.0032853169832378626, + 0.010268941521644592, + -0.009204840287566185, + 0.010395442135632038, + 0.016147537156939507, + 0.011072597466409206, + 0.02663971669971943, + 0.010536826215684414, + 0.009003926999866962, + 0.021118300035595894, + -0.008847660385072231, + 0.027770789340138435, + -0.016147537156939507, + -0.03220577910542488, + 0.0015347602311521769, + -0.0223833154886961, + -0.010402883403003216, + -0.012672469019889832, + -0.00418570963665843, + -0.02900603786110878, + 0.018365032970905304, + -0.0010268940823152661, + -0.001667772768996656, + 0.012345053255558014, + 0.00772402947768569, + -0.01134792435914278, + -0.002818377921357751, + -0.00392154511064291, + -0.011519073508679867, + -0.020225349813699722, + 0.009681081399321556, + -0.017978088930249214, + 0.016400540247559547, + -0.009018809534609318, + 0.007924944162368774, + 0.00567396217957139, + -0.012456672266125679, + -0.013736569322645664, + 0.0038731766398996115, + 0.004788451828062534, + 0.011080038733780384, + -0.004554052371531725, + 0.02391621470451355, + -0.0038694560062140226, + 0.007136169821023941, + -0.013037090189754963, + -0.042117539793252945, + 0.005774419289082289, + 0.01157116238027811, + -0.0076644993387162685, + 0.03381309285759926, + -0.005313060712069273, + 0.006641326006501913, + -0.0035457611083984375, + -0.006481338758021593, + 0.0010334051912650466, + 0.004628464579582214, + -0.013639832846820354, + 0.020403940230607986, + 0.016802368685603142, + 0.013171033002436161, + -0.00704315397888422, + 0.013446359895169735, + 0.016847016289830208, + 0.008088651113212109, + 0.009934084489941597, + -0.01301476638764143, + 0.0028872096445411444, + 0.041284121572971344, + -0.003328104270622134, + -0.005487930495291948, + 0.022993499413132668, + 0.0070580365136265755, + 0.0018128773663192987, + 0.016802368685603142, + 0.0004655439406633377, + 0.002889069961383939, + 0.01264270395040512, + 0.0023923655971884727, + 0.006834798958152533, + -0.00866162870079279, + -0.0061613647267222404, + 0.009777817875146866, + 0.027770789340138435, + -0.019377045333385468, + -0.0019533312879502773, + 0.0015096459537744522, + -0.01601359434425831, + 0.010700534097850323, + 0.006604119669646025, + -0.007932385429739952, + 0.020210467278957367, + -0.016162419691681862, + -0.0010166623396798968, + -0.0012175764422863722, + -0.00898160319775343, + 0.0066785323433578014, + -0.010663327760994434, + 0.028247028589248657, + 0.002941158600151539, + -0.015328998677432537, + -0.01824597455561161, + 0.006671091075986624, + -0.002827679505571723, + -0.004475919064134359, + 0.004181989002972841, + 0.0033615899737924337, + -0.01197298988699913, + -0.011913459748029709, + -0.0087583651766181, + -0.006295307539403439, + -0.00795470830053091, + 0.005815345793962479, + 0.004237798508256674, + -0.012084608897566795, + 0.009033692069351673, + -0.0062283361330628395, + -0.00048647247604094446, + -0.027294548228383064, + -0.029125098139047623, + -0.002256562700495124, + 0.03646218404173851, + 0.02602953277528286, + 0.019704461097717285, + 0.003004409372806549, + 0.009450402110815048, + -0.0015012745279818773, + 0.0030099903233349323, + 0.012017637491226196, + 0.0020649500656872988, + 0.008029120974242687, + -0.007902620360255241, + 0.01674283854663372, + -0.007225465029478073, + -0.00581162516027689, + -0.003977354150265455, + 0.014689050614833832, + 0.004825658164918423, + 0.021490363404154778, + -0.023797154426574707, + 0.004911232739686966, + -0.01815667934715748, + -0.011266070418059826, + 0.0028258191887289286, + -0.004795893095433712 + ], + "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1": [ + -0.007777151186019182, + 0.007504405453801155, + -0.009429211728274822, + -0.010715012438595295, + -0.05317763611674309, + -0.012850222177803516, + 0.015460789203643799, + 0.017128435894846916, + -0.05476735159754753, + 0.03512965515255928, + -0.0028248669113963842, + 0.03397633135318756, + 0.01531272754073143, + -0.027773313224315643, + -0.016208892688155174, + 0.014852955937385559, + -0.0392753928899765, + 0.017066093161702156, + -0.008392777293920517, + -0.009499345906078815, + 0.06015992537140846, + -0.02401721477508545, + -0.04332761466503143, + 0.03503614291548729, + 0.0022443081252276897, + -0.015156872570514679, + 0.01406588964164257, + 0.002885260619223118, + -0.04809676855802536, + 0.007110872305929661, + 0.030828066170215607, + 0.00021064741304144263, + 0.018515542149543762, + -0.00789793860167265, + 0.018001221120357513, + -0.040927451103925705, + -0.025217294692993164, + 0.03946241736412048, + -0.01814149133861065, + 0.003097612876445055, + -0.03899485245347023, + 0.024344509467482567, + 0.011026722379028797, + 0.010434473864734173, + -0.03911953791975975, + 0.03609595447778702, + 0.025045854970812798, + -0.004667849279940128, + 0.022349568083882332, + 0.012935942970216274, + 0.005369195714592934, + -0.014907505363225937, + -0.003625570796430111, + 0.015569888055324554, + 0.006627722643315792, + 0.009647407568991184, + -0.0051665841601789, + 0.04781623184680939, + 0.00878241378813982, + -0.005883516278117895, + 0.018453199416399002, + -0.010598122142255306, + -0.003939228132367134, + 0.010255241766571999, + -0.011205955408513546, + -0.028942223638296127, + 0.0064095258712768555, + 0.02152353897690773, + -0.06324584782123566, + -0.019232474267482758, + -0.005150998942553997, + 0.03550370782613754, + -0.03394516184926033, + -0.016473844647407532, + -0.013917827978730202, + 0.003284638514742255, + 0.04279771074652672, + -0.013465848751366138, + 0.002205344382673502, + 0.02075985074043274, + -0.042143117636442184, + 0.011946265585720539, + 0.007188799325376749, + -0.004605507478117943, + 0.08110680431127548, + 0.011244919151067734, + -0.04666290804743767, + -0.03528551012277603, + -0.02880195528268814, + -0.02794475294649601, + -0.007231659721583128, + 0.0007797607104294002, + 0.027695385739207268, + -0.022941816598176956, + -0.0373116210103035, + -0.0017299875617027283, + 0.04837730899453163, + 0.006234189495444298, + 0.011081271804869175, + -0.019622109830379486, + 0.0022189817391335964, + 0.029300689697265625, + -0.0634952187538147, + 0.0018916868139058352, + 0.034319210797548294, + -0.008104446344077587, + 0.004870460368692875, + -0.03266715258359909, + -0.038277920335531235, + 0.06982292234897614, + 0.0161309652030468, + -0.023082084953784943, + 0.023939287289977074, + 0.0024741939269006252, + -0.035971272736787796, + -0.08796440809965134, + 0.006156262010335922, + -0.03752981871366501, + 0.032168418169021606, + -0.034599751234054565, + 0.03606478497385979, + 0.047598034143447876, + 0.0044067925773561, + -0.0018429822521284223, + -0.013333371840417385, + 0.0007481027278117836, + 0.0005615640548057854, + 0.0027917479164898396, + -0.002854089718312025, + 0.026744671165943146, + -0.029752667993307114, + -0.01330220140516758, + -0.0017933035269379616, + 0.012172254733741283, + 0.010831903666257858, + 0.03107743337750435, + 0.004527579993009567, + 0.04815911129117012, + -0.042236633598804474, + 0.04323410242795944, + -0.03600244224071503, + -0.048720188438892365, + -0.011283882893621922, + 0.002967084525153041, + -0.01667645573616028, + 0.019528597593307495, + -0.04136384651064873, + 0.06764095276594162, + 0.00246640108525753, + 0.019435085356235504, + -0.020011747255921364, + -0.012686574831604958, + 0.024578291922807693, + 0.0002345126704312861, + 0.020416969433426857, + 0.016629699617624283, + -0.015375069342553616, + 0.011174784041941166, + 0.021570295095443726, + 0.0030625455547124147, + 0.010753976181149483, + -0.043701667338609695, + 0.008408362977206707, + 0.0026982349809259176, + 0.030313745141029358, + 0.018032392486929893, + 0.02746160328388214, + 0.020868947729468346, + -0.05230484902858734, + 0.03341525420546532, + 0.023892531171441078, + 0.0016705679008737206, + 0.019170131534337997, + 0.00525230448693037, + 0.007348550483584404, + -0.022115785628557205, + 0.042143117636442184, + 0.020603995770215988, + 0.015016603283584118, + -0.061780814081430435, + -0.003910005558282137, + -0.03416335582733154, + -0.01603745110332966, + 0.004839289467781782, + 0.00688877934589982, + 0.04145735874772072, + 0.01999616250395775, + 0.005361402872949839, + -0.0005732532008551061, + -0.0023943183477967978, + 0.00648355670273304, + 0.00785507820546627, + 0.0067173391580581665, + 0.034412723034620285, + -0.01488412730395794, + -0.022941816598176956, + 6.48380009806715e-5, + -0.01625564880669117, + -0.0007247244939208031, + 0.0045042019337415695, + -0.009172051213681698, + -0.029020151123404503, + -0.06268477439880371, + 0.055328428745269775, + -0.02852141670882702, + 0.0052133407443761826, + -0.0032359338365495205, + -0.0032086593564599752, + 0.02395487204194069, + -0.06433683633804321, + 0.028240878134965897, + -0.0416443832218647, + 0.02688494138419628, + -0.033384084701538086, + -0.014821784570813179, + 0.0014475007774308324, + -0.01595173217356205, + 0.014330842532217503, + 0.026526475325226784, + -0.024765316396951675, + -0.012328109703958035, + 0.017206361517310143, + 0.01341129932552576, + -0.04148852825164795, + -0.03001762181520462, + -0.011354017071425915, + -0.03924421966075897, + 0.005221133586019278, + -0.046101830899715424, + -0.005193858873099089, + 0.046008314937353134, + -0.00787066388875246, + 0.00020565518934745342, + -0.03986763954162598, + -0.019045447930693626, + -0.0055250502191483974, + 0.010263034142553806, + 0.022505423054099083, + -0.000518216984346509, + -0.02493675798177719, + 0.011922886595129967, + 0.015562094748020172, + 0.03043842874467373, + 0.008985024876892567, + 0.04301590472459793, + 0.025856299325823784, + -0.012094327248632908, + 0.0456654354929924, + 0.018889592960476875, + -0.039524760097265244, + -0.006171847227960825, + 0.009444796480238438, + 0.0023573029320687056, + -0.02334703877568245, + -0.025341980159282684, + 0.0440133772790432, + -0.0022754790261387825, + -0.021149486303329468, + -0.01842202991247177, + -0.0459771454334259, + -0.017549242824316025, + -0.0028385042678564787, + 0.014346428215503693, + -0.0035905034746974707, + 0.03266715258359909, + -0.017892122268676758, + 0.017486900091171265, + -0.056793462485075, + -0.00018252049630973488, + 0.046351198107004166, + -0.026713501662015915, + -0.016723211854696274, + -0.015928354114294052, + -0.024126311764121056, + -0.023799017071723938, + 0.006152365356683731, + 0.0074264779686927795, + 0.0017757698660716414, + 0.024999098852276802, + 0.002139106160029769, + -0.003767788177356124, + -0.012265766970813274, + -0.023035328835248947, + 0.04192492365837097, + -0.027835655957460403, + -0.005867930594831705, + -0.008899305015802383, + 0.009701956994831562, + -0.04058457165956497, + -0.031015092507004738, + -0.007636881899088621, + -0.01756482757627964, + 0.031950220465660095, + 0.008073274977505207, + 0.024001628160476685, + 0.005622459575533867, + 0.0034891976974904537, + -0.0038574046920984983, + -0.0117514468729496, + 0.013130760751664639, + -0.05090215429663658, + -0.0021410544868558645, + 0.014112645760178566, + -0.02755511738359928, + -0.003232037415727973, + -0.018281759694218636, + 0.04722398519515991, + 0.010325375944375992, + -0.03821558132767677, + 0.00913308747112751, + 0.028505830094218254, + 0.008891512639820576, + -0.016473844647407532, + -0.014284086413681507, + -0.0036314153112471104, + -0.0020144223235547543, + 0.01842202991247177, + -0.010356547310948372, + -0.00852525420486927, + -0.010037044994533062, + 0.023549649864435196, + 0.002185862511396408, + -0.06084568798542023, + -0.004999040625989437, + 0.021352097392082214, + -0.030266989022493362, + 0.04722398519515991, + -0.0039041610434651375, + -0.03357110917568207, + -0.0065420023165643215, + -0.016021866351366043, + -0.01935715787112713, + -0.016645286232233047, + -0.026869356632232666, + -0.010551365092396736, + -0.043795179575681686, + -0.031919047236442566, + -0.037218108773231506, + -0.015523131005465984, + -0.012554098851978779, + -0.028942223638296127, + 0.008540838956832886, + -0.008556424640119076, + 0.0036898606922477484, + 0.00586013775318861, + 0.004013259429484606, + -0.018406443297863007, + 0.014221744611859322, + -0.03774801641702652, + -0.022209299728274345, + 0.0009448693017475307, + -0.0114163588732481, + 0.03781035915017128, + -0.006678375415503979, + 0.05582716315984726, + -0.015702364966273308, + -0.003004099940881133, + -0.03017347678542137, + 0.003534005954861641, + 0.008556424640119076, + 0.006183536257594824, + -0.020806606858968735, + -0.038184408098459244, + -0.025092611089348793, + 0.0012283300748094916, + -0.0011153353843837976, + -0.011268297210335732, + -0.005174377001821995, + 0.035908930003643036, + 0.005034107714891434, + -0.039524760097265244, + 0.006779680959880352, + 0.052678897976875305, + -0.038620803505182266, + -0.03541019558906555, + -0.0020319561008363962, + 0.05214899405837059, + -0.011689105071127415, + -0.012273560278117657, + 0.014611381106078625, + -0.017518071457743645, + 0.019871478900313377, + 0.004640574567019939, + -0.038433775305747986, + 0.03765450417995453, + 0.027352506294846535, + 0.005209444556385279, + -0.01301387045532465, + 0.007539472542703152, + 0.002400162862613797, + -0.028349975124001503, + 0.02749277465045452, + -0.025980982929468155, + -0.005786106921732426, + -0.03943124786019325, + 0.02599656954407692, + 0.0013452211860567331, + 0.011198162101209164, + 0.008392777293920517, + -0.0064095258712768555, + -0.013380128890275955, + 0.009499345906078815, + -0.008922683075070381, + 0.03488028794527054, + 0.024796487763524055, + -0.033197056502103806, + 0.0020572824869304895, + -0.011829374358057976, + -0.00820575188845396, + 0.02225605584681034, + -0.020167602226138115, + 0.0013335320400074124, + -0.003101509064435959, + -0.019918235018849373, + 0.04912541061639786, + -0.016816725954413414, + 0.03534785285592079, + 0.01941949874162674, + -0.0523671880364418, + -0.04856433346867561, + -0.007952488027513027, + 0.041207991540431976, + -0.008572010323405266, + 0.042330145835876465, + -0.004870460368692875, + 0.004605507478117943, + 0.06237306445837021, + 0.015032188966870308, + -0.05327114835381508, + -0.02465621940791607, + -0.0006287764408625662, + -0.0012117705773562193, + -0.013403506949543953, + 0.006039370782673359, + -0.023050915449857712, + -0.021274171769618988, + -0.0033216539304703474, + -0.008548632264137268, + -0.013278823345899582, + -0.032106075435876846, + 0.03184112161397934, + 0.023175599053502083, + 0.025731615722179413, + 0.008447326719760895, + -0.017673926427960396, + -0.022754790261387825, + -0.02493675798177719, + 0.01345805637538433, + 0.012445000000298023, + -0.00913308747112751, + -0.01932598650455475, + 0.02091570571064949, + -0.035846587270498276, + 0.009795470163226128, + 0.010738391429185867, + -0.015975110232830048, + -0.011852752417325974, + -0.035815417766571045, + -0.005318542942404747, + 0.0014387340052053332, + -0.0132710300385952, + -0.008836963213980198, + 0.016271233558654785, + -0.016551772132515907, + 0.027601873502135277, + -0.04161321371793747, + -0.013052834197878838, + 0.00838498491793871, + 0.0026319967582821846, + -0.02580954320728779, + -0.017003750428557396, + 0.005692594218999147, + -0.03397633135318756, + -0.003134628292173147, + -0.0017835625912994146, + -0.013738594949245453, + -0.0009020092547871172, + 0.0074342708103358746, + 0.00033800993696786463, + -0.013816521503031254, + -0.03746747598052025, + -0.04136384651064873, + -0.026464132592082024, + -0.016115378588438034, + 0.025404321029782295, + -0.0002854089834727347, + 0.00472629489377141, + -0.025793958455324173, + -0.007632985711097717, + -0.006113402079790831, + 0.04058457165956497, + 4.2525207391008735e-5, + 0.011564421467483044, + 0.0241730697453022, + 0.0013617806835100055, + -0.020775435492396355, + -0.007960280403494835, + -0.027227820828557014, + -0.025980982929468155, + -0.014237329363822937, + 0.021289756521582603, + -0.02782006934285164, + 0.013169724494218826, + 0.007391410879790783, + 0.01641150377690792, + -0.002967084525153041, + -0.012608647346496582, + -0.022972987964749336, + -0.0001780153252184391, + -0.011439736932516098, + -0.012195632793009281, + 0.005104242358356714, + -0.0013958739582449198, + -0.0012000814313068986, + -0.009616237133741379, + 0.009429211728274822, + -0.036033615469932556, + 0.01929481513798237, + 0.016598528251051903, + -0.021165072917938232, + 0.00846291147172451, + 0.010239656083285809, + -0.007831700146198273, + 0.007874560542404652, + 0.007477130740880966, + -0.018125904724001884, + 5.6771303206915036e-5, + 0.012741124257445335, + 0.009140879847109318, + -0.02587188594043255, + 0.0009901645826175809, + 0.010068215429782867, + -0.022598935291171074, + -0.003230089321732521, + 0.018157076090574265, + -0.012304730713367462, + -0.0077109127305448055, + 0.0136061180382967, + -0.006658893544226885, + 0.0645238608121872, + -0.027726557105779648, + 0.021243000403046608, + -0.01004483737051487, + -0.022084616124629974, + 0.0017679771408438683, + 0.03687522932887077, + -0.025684859603643417, + 0.02947212941944599, + -0.006238085683435202, + 0.01039551105350256, + -0.03397633135318756, + 0.019653281196951866, + -0.0002518027904443443, + -0.008603180758655071, + 2.4519724320271052e-5, + -0.060565147548913956, + 0.009966909885406494, + -0.01111244224011898, + -0.038620803505182266, + -0.030921578407287598, + 0.008408362977206707, + 0.013255445286631584, + 0.01781419664621353, + 0.007403099909424782, + -0.02953447215259075, + 0.01069942768663168, + -0.026308279484510422, + 0.011961850337684155, + 0.012858015485107899, + 0.0006380302947945893, + 0.0059926146641373634, + 0.016364747658371925, + 0.03883899748325348, + 0.00301384087651968, + -0.03388281911611557, + 0.019341573119163513, + -0.009429211728274822, + 0.023752260953187943, + 0.0030761826783418655, + -0.012413829565048218, + 0.02621476538479328, + -0.04145735874772072, + -0.004200284834951162, + -0.02660440281033516, + 0.0033119129948318005, + -0.017549242824316025, + -0.05055927485227585, + -0.02280154637992382, + 0.007391410879790783, + 0.032168418169021606, + -0.004889942239969969, + 0.03254246711730957, + 0.018702568486332893, + -0.003629466984421015, + -0.021757321432232857, + 0.02746160328388214, + -0.011938472278416157, + 0.005918583367019892, + 0.006132883485406637, + -0.006058852653950453, + 2.0075429347343743e-5, + 0.0253575649112463, + 0.02411072701215744, + -0.02471856027841568, + -0.0044808234088122845, + 0.026136837899684906, + -0.021476782858371735, + 0.0006161132478155196, + -0.003931435756385326, + 0.020962461829185486, + -0.001101698144339025, + 0.006966706365346909, + 0.018764909356832504, + -0.013364543206989765, + 0.03893251344561577, + 0.016551772132515907, + -0.005127620883285999, + 0.04588363319635391, + 0.017237532883882523, + -0.023331454023718834, + 0.008221336640417576, + -0.027508359402418137, + 0.06140676513314247, + -0.013535983860492706, + 0.02529522217810154, + -0.0019813033286482096, + 0.010941002517938614, + -0.03219958767294884, + -0.042236633598804474, + -0.021180657669901848, + 0.03472443297505379, + -0.006658893544226885, + 0.025310808792710304, + -0.04800325632095337, + 0.020557239651679993, + -0.0040327413007617, + 0.007675845641642809, + 0.007477130740880966, + -0.021071558818221092, + -0.0012078741565346718, + -0.047629207372665405, + -0.004282108973711729, + -0.007820011116564274, + 0.011868338100612164, + -0.012008607387542725, + 0.013964584097266197, + -0.03425687178969383, + 0.014876333996653557, + 0.028755197301506996, + 0.022318396717309952, + -0.03812206909060478, + 0.01016952097415924, + 0.010917623527348042, + 0.027477189898490906, + -0.006736820563673973, + -0.04819028452038765, + -0.013917827978730202, + 0.0021780699025839567, + 0.004282108973711729, + 0.005521154031157494, + 0.021274171769618988, + -0.011946265585720539, + -0.015897182747721672, + 0.015608851797878742, + 0.015499752946197987, + 0.03148265555500984, + 0.003043063683435321, + -0.0019189614104107022, + -0.006565380375832319, + 0.01893634907901287, + -0.015562094748020172, + -0.014969847165048122, + 0.03244895488023758, + 0.033165886998176575, + 0.004231455735862255, + -0.016645286232233047, + 0.021352097392082214, + -0.016847897320985794, + -0.015476374886929989, + -0.03235544264316559, + -0.005930272396653891, + -0.01068384200334549, + -0.035721905529499054, + 0.008751243352890015, + 0.030220232903957367, + -0.008774621412158012, + -0.010707220062613487, + 0.013684045523405075, + -0.014985432848334312, + 0.00308982003480196, + 0.0032067110296338797, + -0.006830333732068539, + -0.012367072515189648, + 0.0016286819009110332, + -0.008712279610335827, + 0.01772068254649639, + -0.0016432933043688536, + 0.005384780932217836, + 0.03662586212158203, + -0.0336022786796093, + -0.03059428371489048, + -0.0074537526816129684, + -0.012008607387542725, + -0.02666674368083477, + 0.015445203520357609, + 0.029612399637699127, + -0.011642348021268845, + -0.022630106657743454, + 0.0001970101147890091, + -0.015476374886929989, + 0.013021662831306458, + 0.00819016620516777, + -0.0007646622834727168, + 0.021694978699088097, + 0.017938880249857903, + 0.0008562269504182041, + -0.0017543397843837738, + 0.012577476911246777, + -0.020619580522179604, + 0.0016004332574084401, + -0.01740897260606289, + 0.04656939208507538, + 0.004683434497565031, + -0.03238661214709282, + -0.041114479303359985, + 0.002205344382673502, + 0.024578291922807693, + -0.023456137627363205, + -0.004137943033128977, + -0.004582128953188658, + 0.04167555645108223, + -0.004511994309723377, + -0.011844960041344166, + 0.003025529906153679, + -0.008603180758655071, + -0.019138960167765617, + -0.012608647346496582, + 0.007921316660940647, + 0.017923293635249138, + -0.038277920335531235, + 0.00410287594422698, + -0.012203425168991089, + 0.0206663366407156, + -0.008899305015802383, + 0.03802855312824249, + 0.014642552472651005, + 0.021850833669304848, + -0.011385188437998295, + 0.024796487763524055, + 0.038558460772037506, + 0.04915658384561539, + -0.024282166734337807, + 0.028973395004868507, + 0.03335291147232056, + -0.007255037780851126, + -0.004531476181000471, + -0.009359076619148254, + 0.0049055274575948715, + -0.015071152709424496, + 0.025606932118535042, + 0.011961850337684155, + 0.004523683805018663, + 0.0017592102522030473, + 0.002006629714742303, + -0.005018522497266531, + -0.03516082838177681, + -0.03516082838177681, + 0.02925393357872963, + 0.04663173481822014, + -0.012896979227662086, + 0.00908633042126894, + 0.037093427032232285, + 0.022723620757460594, + 0.020416969433426857, + -0.010605914518237114, + 0.007734291255474091, + 0.015546509064733982, + -0.0016257596435025334, + -0.04775388911366463, + 0.0033684102818369865, + -0.0031774884555488825, + -0.04460562393069267, + -0.00712256133556366, + -0.024391265586018562, + 0.011673519387841225, + 0.008299264125525951, + 0.038340263068675995, + -0.007652467116713524, + -0.022661278024315834, + 0.001300412928685546, + -0.007348550483584404, + 0.019170131534337997, + -0.0059497542679309845, + -0.001543935970403254, + 0.004589921794831753, + -0.0132710300385952, + 0.006280945613980293, + -0.04737984016537666, + -0.026619987562298775, + -0.006935535464435816, + -0.006518624257296324, + -0.03821558132767677, + 0.018593469634652138, + 0.012873601168394089, + -0.0034054259303957224, + -0.02280154637992382, + -0.012398243881762028, + 0.018157076090574265, + 0.013863278552889824, + 0.01037992537021637, + -0.008836963213980198, + -0.014167195186018944, + -0.023908115923404694, + 0.030796894803643227, + -0.002148847095668316, + 0.012593062594532967, + 0.0010529935825616121, + 0.005470501258969307, + -0.009974703192710876, + -0.010146142914891243, + 0.0021702770609408617, + 0.03986763954162598, + 0.007266726810485125, + 0.01634916104376316, + -0.043576981872320175, + -0.022785961627960205, + 0.020448140799999237, + -0.02008967474102974, + 0.027664214372634888, + 0.03883899748325348, + 0.01095658726990223, + 0.0027936960104852915, + -0.015110116451978683, + 0.03481794521212578, + 0.01438539195805788, + 0.03681288659572601, + -0.0268537700176239, + -0.008221336640417576, + -0.033290572464466095, + 0.03749864920973778, + 0.010598122142255306, + -0.038620803505182266, + -0.026339448988437653, + -0.008096653036773205, + 0.0005303931538946927, + -0.01561664417386055, + 0.02094687521457672, + -0.0016812828835099936, + 0.025529004633426666, + 0.005115931387990713, + -0.005291268229484558, + -0.004897735081613064, + -0.007816114462912083, + 0.0014806200051680207, + -0.03531668335199356, + 0.02797592431306839, + -0.012912564910948277, + 0.029378617182374, + -0.004173010587692261, + 0.016582943499088287, + 0.02453153394162655, + -0.009055159986019135, + -0.020323457196354866, + -0.022630106657743454, + 0.0062419818714261055, + -0.009078538045287132, + -0.0046210926957428455, + 0.002645634114742279, + -0.0030956645496189594, + 0.009951324202120304, + -0.014572417363524437, + 0.004601610824465752, + -0.021850833669304848, + 0.016941409558057785, + -0.013535983860492706, + -0.030048793181777, + -0.016941409558057785, + -0.017938880249857903, + -0.012421621941030025, + -0.0225210078060627, + 0.004749672953039408, + 0.011057892814278603, + 0.009172051213681698, + -0.00269433856010437, + -0.044886164367198944, + -0.0011893664486706257, + 0.02012084610760212, + -0.005712076090276241, + -0.006167951039969921, + 0.003109301906079054, + -0.004375621676445007, + 0.005521154031157494, + -0.02624593675136566, + -0.025622518733143806, + -0.007005670107901096, + -0.016816725954413414, + -0.010208484716713428, + -0.03531668335199356, + -0.0030411153566092253, + -0.015491960570216179, + -0.005217236932367086, + -0.028708441182971, + -0.019403913989663124, + -0.0007398229208774865, + 0.008907098323106766, + -0.05221133679151535, + 0.015788083896040916, + 0.010559158399701118, + 0.004422377794981003, + 0.015608851797878742, + 0.031794365495443344, + 0.011969643644988537, + -0.0006419266574084759, + -0.01406588964164257, + 0.019123375415802002, + 0.009982495568692684, + 0.02858375757932663, + -0.011268297210335732, + -0.003997673746198416, + -0.022053444758057594, + 0.007071908563375473, + -0.009639615193009377, + 0.0075784362852573395, + 0.015265971422195435, + -0.0020494896452873945, + -0.0011221540626138449, + 0.009701956994831562, + 0.0068692974746227264, + 0.014089267700910568, + 0.017221948131918907, + 0.006203018128871918, + 0.00604326743632555, + 0.026417376473546028, + -0.021539123728871346, + 0.05604536086320877, + -0.004835393279790878, + 0.010738391429185867, + -0.004831496626138687, + -0.03771684691309929, + -0.017206361517310143, + -0.031435899436473846, + -0.00011549079499673098, + 0.01871815323829651, + -0.010356547310948372, + 0.015523131005465984, + -0.00804989691823721, + -0.010886453092098236, + 0.03915070742368698, + 0.023175599053502083, + 0.0015322468243539333, + 0.020931290462613106, + 0.02484324388206005, + 0.007636881899088621, + -0.017268704250454903, + 0.008104446344077587, + 0.04946829006075859, + -0.008517460897564888, + 0.012413829565048218, + 0.021289756521582603, + 0.008073274977505207, + 0.005458811763674021, + -0.005287371575832367, + -0.015172458253800869, + -0.0018137594452127814, + -0.05841435492038727, + -0.01312296837568283, + -0.04903189837932587, + 0.008688901551067829, + 0.0055406359024345875, + -0.0031385247129946947, + -0.009343490935862064, + -0.021959932520985603, + -0.00972533505409956, + -0.007153732236474752, + -0.011478700675070286, + -0.01130726095288992, + -0.023175599053502083, + -0.003522316925227642, + -0.009460382163524628, + 0.008314849808812141, + 0.026292692869901657, + -0.012787880375981331, + -0.017159605398774147, + -0.015663400292396545, + -0.011057892814278603, + 0.016660870984196663, + -0.009943531826138496, + -0.006861504632979631, + -0.00019652307673823088, + -0.01130726095288992, + -0.0007821959443390369, + -0.037623330950737, + 0.010091593489050865, + 0.009444796480238438, + 0.0169569943100214, + -0.0019345468608662486, + -0.018094735220074654, + -0.008252508006989956, + 0.0037853217218071222, + -0.02347172237932682, + -0.007827803492546082, + -0.009927946142852306, + -0.01896752044558525, + 0.039618272334337234, + 0.01082411129027605, + 0.010146142914891243, + 0.006144572980701923, + 0.005108139012008905, + 0.00815899483859539, + 0.011969643644988537, + -0.00688877934589982, + -0.013325579464435577, + 0.011089064180850983, + 0.01006042305380106, + 0.04027286171913147, + 0.04292239248752594, + -0.002776162466034293, + -0.04454328119754791, + -0.025092611089348793, + 0.019232474267482758, + -0.01750248670578003, + -0.026744671165943146, + -0.01143194455653429, + 0.01775185391306877, + 0.005260097328573465, + 0.006238085683435202, + -0.002741095144301653, + 0.0011971591738983989, + 0.011572213843464851, + 0.007508301641792059, + -0.02091570571064949, + -0.005801692605018616, + -0.0011708586243912578, + -0.005595184862613678, + -0.0032476228661835194, + -0.030454015359282494, + -0.01069942768663168, + -0.07674287259578705, + -0.02478090301156044, + -0.0018127853982150555, + 0.01839085854589939, + 0.007987555116415024, + -0.000485097843920812, + -0.006479660514742136, + -0.006845918949693441, + 0.006771888118237257, + -0.0024060073774307966, + 0.003522316925227642, + -0.009733128361403942, + 0.0036957054398953915, + 0.042486000806093216, + -0.010566950775682926, + 2.010586831602268e-5, + -0.0040327413007617, + 0.0035905034746974707, + 0.013115175999701023, + -0.019684452563524246, + 0.0013520397478714585, + 0.004270419478416443, + 0.04413805902004242, + 0.0006862478912808001, + 0.01902986317873001, + 0.04145735874772072, + -0.0480344295501709, + 0.023830188438296318, + -0.007960280403494835, + -0.007671948987990618, + 0.016816725954413414, + -0.004893838427960873, + -0.01454903930425644, + 0.0025482247583568096, + 0.008260300382971764, + -0.013372335582971573, + 0.023674333468079567, + -0.0017845366382971406, + 0.022178128361701965, + 0.024219825863838196, + 0.017970049753785133, + 0.008938268758356571, + 0.004702916368842125, + -0.007539472542703152, + 0.0007744032191112638, + -0.01264761108905077, + -0.009187636896967888, + -0.01765834167599678, + 0.0018157076556235552, + 0.010270826518535614, + 0.025435492396354675, + -0.023799017071723938, + 0.0225210078060627, + -0.01887400820851326, + 0.005006833467632532, + -0.004243145231157541, + -0.0007802477339282632, + -0.021211829036474228, + 0.015094530768692493, + -0.019372742623090744, + 0.055172573775053024, + -0.002166380872949958, + -0.007032944820821285, + 0.012476171366870403, + -0.0009453563834540546, + 0.007130354177206755, + 0.004586025606840849, + 0.011424152180552483, + 0.025606932118535042, + -0.009039574302732944, + -0.012491757050156593, + 0.0012224855599924922, + 0.007200488820672035, + 0.018453199416399002, + 0.0015780291287228465, + 0.009904568083584309, + 0.030313745141029358, + 0.006771888118237257, + 0.006203018128871918, + -0.0012955424608662724, + -0.011244919151067734, + -0.001203977852128446, + -0.0011426099808886647, + -0.014946469105780125, + -0.0216482225805521, + -0.02104038931429386, + 0.013543776236474514, + 0.006066645495593548, + -0.013871070928871632, + -0.00010495842434465885, + 0.02487441524863243, + 0.016785554587841034, + 0.016536187380552292, + 0.02322235517203808, + -0.015203628689050674, + 0.029394201934337616, + 0.012748916633427143, + 0.0016355005791410804, + -0.01079293992370367, + -0.006432903930544853, + -0.011229333467781544, + -0.0009555843425914645, + 0.004414585418999195, + -0.023050915449857712, + -0.002487831050530076, + 0.005415951833128929, + 0.015188043937087059, + 0.00012565788347274065, + -0.01744014397263527, + -0.010637085884809494, + -0.0047964295372366905, + 0.001422174391336739, + -0.004730191081762314, + -0.007695327512919903, + -0.01312296837568283, + -0.000526983814779669, + -0.009561687707901001, + -0.030422843992710114, + -0.0228327177464962, + -0.0225210078060627, + -0.0058250706642866135, + 0.025606932118535042, + -0.00013564231630880386, + -0.0373116210103035, + -0.013497020117938519, + 0.006230292841792107, + -0.010411095805466175, + -0.020416969433426857, + -0.01606862246990204, + 0.008704486303031445, + -0.012787880375981331, + -0.006148469168692827, + -0.012421621941030025, + 0.0067017534747719765, + -0.016240062192082405, + 0.016660870984196663, + 0.02520170994102955, + -0.024328922852873802, + 0.008361605927348137, + -0.04713046923279762, + -0.004005466587841511, + 0.022271640598773956, + 0.0030742345843464136, + 0.007492716424167156, + -0.013294409029185772, + -0.0007461545174010098, + 0.013364543206989765, + -0.0022754790261387825, + 0.013886656612157822, + -0.04245482757687569, + -0.009172051213681698, + 0.0005303931538946927, + 0.017066093161702156, + -0.027087552472949028, + -0.017860952764749527, + -0.032012563198804855, + -0.017237532883882523, + -0.004617196507751942, + 4.49908766313456e-5, + -0.0058250706642866135, + -0.025949813425540924, + 0.005914687179028988, + 0.024375680834054947, + -0.010317583568394184, + 0.02085336297750473, + -0.015273763798177242, + -0.03219958767294884, + 0.007858974859118462, + -0.013995754532516003, + -0.022178128361701965, + -0.006203018128871918, + 0.0106682563200593, + 0.008073274977505207, + 0.013684045523405075, + -0.002384577412158251, + -0.004305487032979727, + -0.017580414190888405, + 0.011883922852575779, + 0.015577680431306362, + 0.01778302527964115, + -0.008010933175683022, + 0.008026518858969212, + 0.0019822772592306137, + -0.001517635420896113, + 0.005263993516564369, + 0.007114768493920565, + 0.008907098323106766, + 0.006584862247109413, + -0.012951528653502464, + -0.005922480020672083, + 0.004098979290574789, + 0.020806606858968735, + -0.0014192521339282393, + 0.0011172835947945714, + 0.007734291255474091, + -0.004348346963524818, + 0.016302404925227165, + -0.04080276936292648, + -0.027352506294846535, + 0.001280931057408452, + -0.014572417363524437, + -0.009242185391485691, + 0.0034132185392081738, + -4.523439929471351e-5, + -0.001950132311321795, + 0.0027625251095741987, + -0.027103137224912643, + 0.022411910817027092, + 0.014424355700612068, + -0.019809136167168617, + 0.0019423395860940218, + 0.012265766970813274, + -0.004804221913218498, + -0.01140077318996191, + 0.005610770545899868, + 0.007921316660940647, + 0.003335291286930442, + -0.019746795296669006, + 0.006479660514742136, + -0.022848304361104965, + 0.003261260222643614, + -0.0038379228208214045, + -0.003269053064286709, + -0.0392753928899765, + 0.003222296480089426, + 0.0010140298400074244, + 0.009670786559581757, + -0.04949946328997612, + -0.006604344118386507, + 0.01768951117992401, + -0.0169569943100214, + 0.005739350337535143, + -0.009662993252277374, + -0.007352447137236595, + 0.006674478761851788, + -0.009998081251978874, + 0.012858015485107899, + -0.02493675798177719, + 0.01999616250395775, + -0.01034875400364399, + -0.0365946926176548, + -0.032012563198804855, + -0.016598528251051903, + 0.025092611089348793, + 0.012670990079641342, + 0.019949406385421753, + -0.02100921794772148, + -0.033041201531887054, + 0.01609979383647442, + -0.009842226281762123, + 0.01595173217356205, + -0.021180657669901848, + -0.016910238191485405, + 0.01580367051064968, + 0.020292285829782486, + -0.003411270445212722, + 0.004632781725376844, + 0.008922683075070381, + 0.02197551727294922, + -0.013543776236474514, + 0.016364747658371925, + -0.005158791784197092, + 0.008610974065959454, + -0.034381553530693054, + 0.0007174187921918929, + -0.031825534999370575, + -0.022146956995129585, + -0.005887412466108799, + 0.01878049597144127, + -0.01932598650455475, + -0.01582704856991768, + 0.007773254532366991, + -0.010224070399999619, + 0.01993381977081299, + 0.01006042305380106, + 0.00604326743632555, + 0.0038671456277370453, + -0.03693757206201553, + 0.007099182810634375, + -0.004457445349544287, + -0.0017260911408811808, + -0.019887063652276993, + -0.01667645573616028, + -0.009569480083882809, + 0.002485882956534624, + -0.016910238191485405, + 0.01357494667172432, + 0.017845366150140762, + 0.01576470583677292, + 0.01114361360669136, + 0.02008967474102974, + 0.002854089718312025, + 0.012445000000298023, + -0.007204385008662939, + 0.016567358747124672, + 0.0037833736278116703, + -0.0007895016460679471, + 0.01330220140516758, + 0.014408770017325878, + 0.009413626044988632, + 0.01874932460486889, + -0.011408566497266293, + -0.0278824120759964, + -0.009218807332217693, + -0.00687319366261363, + -0.0002077251410810277, + 0.01673879846930504, + 0.014362013898789883, + -0.006479660514742136, + -0.007847285829484463, + -0.0022170336451381445, + 0.006647204514592886, + -0.0043210722506046295, + -0.021710563451051712, + 0.004605507478117943, + 0.011315053328871727, + 0.0027060278225690126, + 0.021570295095443726, + 0.006982292048633099, + -0.02404838427901268, + 0.023004157468676567, + -0.011844960041344166, + 0.008501875214278698, + 0.0035047833807766438, + -0.012296938337385654, + -0.0015049722278490663, + 0.008127824403345585, + -0.005201651714742184, + 0.007964177057147026, + -0.02088453434407711, + -0.031311213970184326, + 0.012203425168991089, + -0.024344509467482567, + 0.010761769488453865, + 0.006448489613831043, + -0.010278619825839996, + 0.006604344118386507, + -0.01039551105350256, + 0.009670786559581757, + -0.00850966852158308, + 0.002392370020970702, + 0.030002035200595856, + -0.021710563451051712, + -0.0046210926957428455, + 0.01173586118966341, + 0.02520170994102955, + 0.006121194455772638, + 0.018125904724001884, + 0.012000814080238342, + -0.0059731327928602695, + -0.002439126605167985, + -0.006943328306078911, + -0.011221541091799736, + 0.01037992537021637, + 0.006148469168692827, + 0.015694571658968925, + -0.009553895331919193, + 0.041052136570215225, + -0.03235544264316559, + -0.01999616250395775, + -0.016879066824913025, + -0.019372742623090744, + -0.01670762710273266, + 0.013769765384495258, + 0.020993633195757866, + 0.009982495568692684, + 0.008626559749245644, + 0.008914890699088573, + -0.0038574046920984983, + -0.024422436952590942, + 0.0049561806954443455, + -0.013707423582673073, + -0.005392573773860931, + -0.00725893396884203, + -0.001555625000037253, + -0.008603180758655071, + 0.012460585683584213, + -0.0071342503651976585, + -0.008790207095444202, + -0.010730598121881485, + -0.010239656083285809, + 0.001996888779103756, + -0.022941816598176956, + 0.006277049425989389, + 0.0013140501687303185, + 0.006327702198177576, + -0.010418889112770557, + 0.02334703877568245, + 0.013325579464435577, + -0.002476142020896077, + 0.008003140799701214, + -0.005719868466258049, + 0.019403913989663124, + 0.005291268229484558, + -0.006035474594682455, + 0.014502283185720444, + -0.03146706894040108, + 0.019809136167168617, + -0.015663400292396545, + 0.004297694191336632, + -0.010761769488453865, + -0.013224273920059204, + 0.0028248669113963842, + 0.010496816597878933, + -0.01899869181215763, + -0.012561891227960587, + -0.004098979290574789, + 0.019279230386018753, + 0.010676048696041107, + -0.0010296152904629707, + -0.027290163561701775, + -0.0068498156033456326, + 0.020806606858968735, + -0.014182780869305134, + -0.0031716437079012394, + 0.008603180758655071, + 0.024126311764121056, + 0.01004483737051487, + -0.0002759115886874497, + 0.007878456264734268, + 0.01765834167599678, + 0.006756302434951067, + -0.004753569141030312, + -0.013045040890574455, + -0.01488412730395794, + 0.015125702135264874, + 0.001969614066183567, + -0.009078538045287132, + -0.012561891227960587, + 0.03375813364982605, + -0.008844755589962006, + 0.008657730184495449, + -0.003360617673024535, + -0.0023573029320687056, + 0.050216395407915115, + -0.0169569943100214, + 0.02953447215259075, + 0.002807333366945386, + 0.011650141328573227, + -0.027009624987840652, + -0.012437207624316216, + -0.00801872555166483, + 0.00557180680334568, + 0.003419063286855817, + -0.02331586740911007, + -0.029425373300909996, + 0.015289349481463432, + -0.017611585557460785, + 0.022910645231604576, + 0.015195836313068867, + 0.017221948131918907, + -0.013699631206691265, + 0.048751361668109894, + -0.01884283684194088, + -0.007699223700910807, + 0.01299828477203846, + -0.004960076883435249, + 0.007979761809110641, + -0.009475967846810818, + 0.012733331881463528, + -0.0009175947052426636, + -0.006086127366870642, + -0.012655404396355152, + 0.01239045150578022, + 0.012483963742852211, + 0.009647407568991184, + 0.00882917083799839, + -0.03634532168507576, + -0.0038496118504554033, + -0.008720071986317635, + -0.03491146117448807, + 0.0006901442538946867, + -0.029020151123404503, + 0.0015527027426287532, + 0.004847082309424877, + 0.005735454149544239, + -0.002503416733816266, + 0.007722601760178804, + 0.008985024876892567, + 0.004274316132068634, + 0.011665727011859417, + -0.03503614291548729, + -0.010013666935265064, + 0.01077735424041748, + 0.01363728940486908, + 0.01532831322401762, + -0.0005148076452314854, + -0.009016196243464947, + 0.009888982400298119, + 0.011650141328573227, + -0.029004566371440887, + 0.002723561367020011, + -0.014985432848334312, + -0.004079497419297695, + 0.007590125314891338, + -0.03378930687904358, + -0.002854089718312025, + -0.007371929008513689, + 0.035753075033426285, + -0.010340961627662182, + 0.00356128066778183, + -0.016754383221268654, + -0.02347172237932682, + -0.001027667080052197, + 0.0014728271635249257, + -0.00766415661200881, + 0.011837166734039783, + 0.010122764855623245, + -0.004714605864137411, + -0.002873571589589119, + -0.0018955831183120608, + 0.02577837184071541, + 0.007173214107751846, + -0.0025560175999999046, + -0.009818848222494125, + 0.0039606583304703236, + 0.01744014397263527, + -0.010559158399701118, + -0.006604344118386507, + -0.0013267133617773652, + 0.0018420080887153745, + -0.010933209210634232, + 0.002109883353114128, + -0.012211218476295471, + 0.002721613273024559, + 0.02197551727294922, + 0.017362216487526894, + 0.0017407025443390012, + -0.0016501119825989008, + 0.01004483737051487, + 0.0001503754610894248, + 0.0044808234088122845, + -0.011852752417325974, + 0.013387921266257763, + -0.003091768128797412, + 0.00038866273825988173, + -0.00342880398966372, + -0.010013666935265064, + 0.0012322264956310391, + -0.011813788674771786, + 0.00833822786808014, + 0.017362216487526894, + -0.009242185391485691, + 0.004745776765048504, + -0.028318805620074272, + 0.07774034142494202, + -0.012203425168991089, + 0.003251519287005067, + 0.017097264528274536, + 0.011876130476593971, + -0.011587799526751041, + -0.0006433877861127257, + 0.0028774680104106665, + 0.02727457880973816, + -0.013512604869902134, + -0.007905730977654457, + -0.012850222177803516, + 0.01740897260606289, + 0.012943735346198082, + -0.013450263068079948, + -0.018499957397580147, + 0.011486493982374668, + 0.012593062594532967, + 0.020588409155607224, + 0.009733128361403942, + 0.011392980813980103, + -0.011603385210037231, + -0.0150243965908885, + 0.008361605927348137, + 0.004831496626138687, + 0.01496205385774374, + -0.018437614664435387, + -0.01020069234073162, + 0.02484324388206005, + 0.024484777823090553, + 0.01006042305380106, + -0.0031404728069901466, + 0.0014465267304331064, + -0.007948591373860836, + -0.00133742846082896, + 0.016489431262016296, + 0.0003852534282486886, + 0.025949813425540924, + -0.009008403867483139, + -0.0031794365495443344, + 0.006471867673099041, + -0.010527987033128738, + 0.04307824745774269, + 0.019123375415802002, + -0.03930656239390373, + 0.00619522575289011, + -0.0056809051893651485, + -0.00719269597902894, + -0.003212555544450879, + 0.014720479026436806, + 0.005135413259267807, + -0.029690327122807503, + 0.008026518858969212, + 0.012047571130096912, + 0.022318396717309952, + -9.399988630320877e-5, + 0.01606862246990204, + -0.007036841008812189, + 0.0007247244939208031, + -0.0005396470078267157, + -0.022380739450454712, + -0.008283679373562336, + 0.0004906989051960409, + -0.012935942970216274, + -0.016551772132515907, + 0.0034599751234054565, + -0.01438539195805788, + -0.006608240772038698, + -0.013793143443763256, + -0.009896775707602501, + -0.004889942239969969, + -0.01127608958631754, + 0.0043561398051679134, + -0.02273920550942421, + -0.00788235291838646, + 0.01359053235501051, + 0.0005338024348020554, + 0.023783432319760323, + 0.025108197703957558, + -0.008852548897266388, + 0.01006042305380106, + 0.0011523509165272117, + -0.013684045523405075, + -0.01683231070637703, + -0.0023105463478714228, + -0.005961443297564983, + 0.02940978854894638, + -0.02219371311366558, + -0.00457433657720685, + -0.020837778225541115, + -0.01938832923769951, + -0.008891512639820576, + 0.010870867408812046, + 0.014393184334039688, + -0.017705097794532776, + 0.0026066703721880913, + -0.007290104869753122, + -0.012078741565346718, + -0.002817074302583933, + -0.004286005161702633, + 0.007262830622494221, + -0.007894041948020458, + -0.003832078306004405, + -0.0025949813425540924, + 0.004995143972337246, + 0.012756709940731525, + 0.023487308993935585, + 9.850505739450455e-5, + -0.017767438665032387, + -0.0034424413461238146, + 0.010738391429185867, + -0.011665727011859417, + -0.0018488267669454217, + 0.002702131401747465, + -0.027477189898490906, + -0.0023689919617027044, + -0.005115931387990713, + 0.008743450045585632, + -0.016520600765943527, + -0.017159605398774147, + -0.009288942441344261, + -0.009218807332217693, + -0.02008967474102974, + -0.007621296215802431, + -0.013855485245585442, + 0.011868338100612164, + -0.0031677475199103355, + -0.0027742141392081976, + 0.001968640135601163, + 0.016551772132515907, + 0.019154546782374382, + 0.02213137224316597, + 0.007964177057147026, + -0.01676996983587742, + 0.02082219161093235, + 0.002969032619148493, + -0.016941409558057785, + 0.015468582510948181, + 0.013917827978730202, + -0.022380739450454712, + 0.026401791721582413, + -0.008229129947721958, + 0.01082411129027605, + 0.0235028937458992, + 0.003606088925153017, + -0.006136780139058828, + 0.013278823345899582, + -0.03248012438416481, + 0.022785961627960205, + -0.00025448156520724297, + 0.028287634253501892, + -0.027897996827960014, + 0.004145735874772072, + -0.013995754532516003, + -0.0007963202660903335, + 0.017954465001821518, + -0.020074089989066124, + 0.02462504804134369, + -0.028879880905151367, + 0.0028307116590440273, + 0.009226599708199501, + -0.0039879330433905125, + -0.02669791504740715, + 0.013309993781149387, + -0.02797592431306839, + 0.02292623184621334, + -0.0021137797739356756, + 0.01868698187172413, + 0.010816317982971668, + 0.012499549426138401, + -0.017486900091171265, + 0.0028579861391335726, + 0.017892122268676758, + -0.02325352653861046, + -0.016754383221268654, + 0.013902242295444012, + 0.010512401349842548, + 0.018250588327646255, + -0.010153936222195625, + 0.021788490936160088, + 8.10322817414999e-5, + -0.005478293634951115, + 0.01935715787112713, + 0.00010386257054051384, + -0.014595795422792435, + -0.019045447930693626, + 0.017985636368393898, + -0.00815899483859539, + 0.006199121940881014, + -0.0012322264956310391, + -0.004149632062762976, + 0.007535576354712248, + 0.012507341802120209, + -0.0049483878538012505, + -0.011837166734039783, + -0.014019133523106575, + 0.025341980159282684, + 0.006627722643315792, + 0.01999616250395775, + -0.0029086389113217592, + -0.01680113933980465, + -0.008751243352890015, + 0.016582943499088287, + 0.02880195528268814, + 0.00261835940182209, + -0.010660463944077492, + -0.026012154296040535, + -0.02021435834467411, + 0.006199121940881014, + 0.0030079963617026806, + -0.02277037687599659, + -0.018281759694218636, + 0.008501875214278698, + 0.01440097764134407, + -0.016473844647407532, + 0.008112238720059395, + -0.00975650642067194, + 0.010995551012456417, + 0.004192492458969355, + 0.011346224695444107, + 0.007625192869454622, + 0.005096449516713619, + -0.002176121575757861, + -0.014447733759880066, + 0.005408158991485834, + 0.005431537516415119, + -0.007968072779476643, + -0.00246640108525753, + -0.0031599546782672405, + -0.005731557961553335, + 0.015530924312770367, + 0.0038106481079012156, + -0.017798610031604767, + 0.017611585557460785, + 0.0013393765548244119, + 0.03260480985045433, + 0.01573353447020054, + -0.000287357164779678, + 0.015484167262911797, + 0.005836759693920612, + -0.014525661244988441, + -0.0014611381338909268, + -0.012561891227960587, + -0.003286586608737707, + -0.006951121147722006, + -0.013785351067781448, + 0.003869093721732497, + -0.0007281338330358267, + -0.0006487453356385231, + -3.512819603201933e-5, + -0.0007997296052053571, + -0.008307057432830334, + 0.010481230914592743, + -0.009624029509723186, + 0.023082084953784943, + -0.006806955207139254, + -0.015624436549842358, + 0.009818848222494125, + -0.00817458052188158, + -0.02130534127354622, + 0.0028014888521283865, + -0.0024625046644359827, + 0.001100724097341299, + -0.00416911393404007, + 0.005895205307751894, + 0.011580006219446659, + -0.03787269815802574, + 0.005217236932367086, + -0.014642552472651005, + 0.009023988619446754, + 0.01389444898813963, + 0.010122764855623245, + -0.00401715561747551, + 0.0041885958053171635, + 0.0004821755865123123, + 0.0027274577878415585, + 0.008572010323405266, + -0.012078741565346718, + 0.0006789421895518899, + -0.012725538574159145, + -0.00557180680334568, + -0.012367072515189648, + 0.011844960041344166, + -0.00766415661200881, + -0.005719868466258049, + -0.014307464472949505, + 0.014276293106377125, + 0.02008967474102974, + 0.001027667080052197, + 0.011899508535861969, + 0.0026339448522776365, + -0.00205143797211349, + -0.009764298796653748, + -0.01363728940486908, + 0.0020007851999253035, + 0.019138960167765617, + 0.006900468375533819, + -0.013380128890275955, + 0.014681515283882618, + -0.009062952362000942, + -0.006471867673099041, + -0.007523887325078249, + 0.0036216743756085634, + -0.02651089057326317, + 0.008657730184495449, + 0.016146549955010414, + 0.023191183805465698, + -0.002817074302583933, + -0.02258335053920746, + 0.02465621940791607, + -0.0022443081252276897, + 0.008790207095444202, + -0.008135616779327393, + -0.022022273391485214, + -0.006210810970515013, + -0.0220066886395216, + 0.02146119624376297, + 0.027866825461387634, + -0.007173214107751846, + -0.0023047018330544233, + -0.018437614664435387, + 0.01239045150578022, + 0.022411910817027092, + -0.0012234596069902182, + 0.02810060791671276, + -0.020837778225541115, + 0.005774417892098427, + -0.004823703784495592, + -0.00025253338390029967, + -0.0031619027722626925, + 0.017642755061388016, + 0.010107179172337055, + -0.018531126901507378, + -0.0034989386331290007, + -0.02088453434407711, + 0.019824722781777382, + -0.001338402507826686, + -0.004640574567019939, + -0.01453345362097025, + 0.0015049722278490663, + -0.012515135109424591, + -0.019855892285704613, + -0.004679538309574127, + -0.0035671251825988293, + 0.005427640862762928, + 0.02222488448023796, + -0.004219766706228256, + -0.02983059547841549, + 0.0006560510373674333, + 0.00815899483859539, + -0.023237939924001694, + -0.002910587005317211, + 0.02398604340851307, + 0.01079293992370367, + -0.01269436813890934, + -0.00472629489377141, + 0.023393794894218445, + 0.020806606858968735, + 0.006136780139058828, + -0.015569888055324554, + 0.002195603447034955, + 0.03168526664376259, + -0.007987555116415024, + -0.003853508271276951, + 0.009842226281762123, + -0.015756912529468536, + 0.026199180632829666, + 0.009257771074771881, + -0.045135531574487686, + 0.025435492396354675, + -0.019918235018849373, + -0.02213137224316597, + -0.009249978698790073, + -0.003853508271276951, + -0.013699631206691265, + 0.011478700675070286, + -0.011244919151067734, + 0.010356547310948372, + -0.0225210078060627, + -0.013333371840417385, + 0.01052019465714693, + 0.0020144223235547543, + 0.012078741565346718, + -0.01935715787112713, + 0.000932206108700484, + 0.014455526135861874, + 0.02490558661520481, + 0.0143542205914855, + 0.025762787088751793, + -0.0216482225805521, + -0.000752973195631057, + 0.008260300382971764, + 0.015382861718535423, + 0.0059926146641373634, + -0.01941949874162674, + 0.01832851581275463, + -0.020463725551962852, + 0.015421825461089611, + 0.0037911662366241217, + -0.005595184862613678, + 0.0007091390434652567, + -0.00023049453739076853, + 0.007562851067632437, + -0.009959117509424686, + 0.002070919843390584, + -0.017128435894846916, + 0.0018614899599924684, + 0.008307057432830334, + 0.02456270530819893, + -0.005193858873099089, + -0.008985024876892567, + -0.004683434497565031, + -0.009483760222792625, + 0.002119624288752675, + 0.018858423456549644, + 0.005848448723554611, + -0.009943531826138496, + 0.003411270445212722, + 0.005926376208662987, + -0.007504405453801155, + 0.002205344382673502, + -0.0077459802851080894, + 0.004219766706228256, + 0.0004283569869585335, + 0.00038866273825988173, + -0.005291268229484558, + 0.03743630647659302, + -0.013497020117938519, + 0.0025209502782672644, + 0.0013121020747348666, + 0.0024722456000745296, + -0.027664214372634888, + -0.024453608319163322, + 0.017206361517310143, + -0.027477189898490906, + -0.01421395130455494, + 0.015936145558953285, + 0.0014923090348020196, + 0.0038749382365494967, + 0.012483963742852211, + -0.008610974065959454, + -0.008891512639820576, + -0.011533250100910664, + 0.006795266177505255, + 0.013964584097266197, + -0.01451786793768406, + -0.0012497601564973593, + -0.0023573029320687056, + -0.006943328306078911, + -0.026495303958654404, + -0.0017280393512919545, + -0.005828966852277517, + -0.01689465343952179, + 0.0028482452034950256, + -0.028085023164749146, + -0.0006979369791224599, + 0.006845918949693441, + -0.01957535371184349, + 0.02365874871611595, + -0.025622518733143806, + 0.008930476382374763, + 7.04390331520699e-5, + 0.009249978698790073, + -0.010753976181149483, + -0.004753569141030312, + 0.008743450045585632, + 0.012351487763226032, + 0.01016952097415924, + -0.008026518858969212, + 0.013863278552889824, + -0.005092553328722715, + 0.024360094219446182, + 0.03622063994407654, + -0.0043288650922477245, + 0.0261835940182209, + 0.021866418421268463, + -0.025762787088751793, + 0.0031034573912620544, + -0.003795062657445669, + -0.01239045150578022, + 0.002308598253875971, + -0.014782821759581566, + 0.00029831568826921284, + -0.024640632793307304, + 0.018157076090574265, + -0.019824722781777382, + 0.004769154824316502, + 0.0034054259303957224, + 0.004340554121881723, + -0.004776947665959597, + 0.009631822817027569, + 0.02203785814344883, + 0.001203977852128446, + 0.005762728862464428, + 0.0060822307132184505, + -0.009062952362000942, + 0.025030270218849182, + 0.008057689294219017, + 0.007449856027960777, + 0.008127824403345585, + 0.017424559220671654, + -0.006904364563524723, + -0.016333576291799545, + -0.011151405982673168, + 0.01708167791366577, + -0.0032242448069155216, + -0.0019764327444136143, + 0.009857811965048313, + 0.011891716159880161, + 0.0030313744209706783, + 0.006830333732068539, + -0.0015682881930842996, + -0.028178535401821136, + 0.011556628160178661, + 0.006058852653950453, + 0.02867726981639862, + -0.00852525420486927, + -0.006923846434801817, + 0.01804797723889351, + 0.006845918949693441, + 0.007835596799850464, + -0.026947282254695892, + 0.0017445988487452269, + -0.004122357815504074, + 0.008003140799701214, + -0.007181006949394941, + 0.02453153394162655, + 0.0019092204747721553, + 0.004227559547871351, + -0.010559158399701118, + -0.015289349481463432, + 0.012819051742553711, + -0.015866011381149292, + -0.023705504834651947, + 0.00269433856010437, + 0.018312931060791016, + 0.022427495568990707, + 0.006503038574010134, + 0.020479312166571617, + -0.03177877888083458, + 0.02027670107781887, + 0.018219418823719025, + 0.002918379846960306, + 0.004176906775683165, + -0.005369195714592934, + -0.003185281064361334, + 0.01376197300851345, + 0.006491349544376135, + 0.002082608873024583, + -0.009826640598475933, + -0.015047774650156498, + -0.002711872337386012, + -0.005458811763674021, + 0.015523131005465984, + 0.014969847165048122, + -0.017221948131918907, + 0.0034891976974904537, + -0.007219970226287842, + -0.006600447930395603, + 0.02609008178114891, + 0.01097217295318842, + 0.007695327512919903, + -0.005108139012008905, + -0.013738594949245453, + -0.031732022762298584, + 0.0030313744209706783, + 0.021507952362298965, + -0.0068692974746227264, + 0.007500508800148964, + -0.00764857092872262, + -0.013068418949842453, + -0.009795470163226128, + -0.0228327177464962, + -0.012452793307602406, + -0.024391265586018562, + -0.01129167526960373, + -0.02526405267417431, + 0.0036138815339654684, + 0.006506935227662325, + -0.009398040361702442, + 0.0020144223235547543, + -0.021383268758654594, + -0.009974703192710876, + -0.006144572980701923, + 0.0013608066365122795, + 0.015484167262911797, + 0.0058757234364748, + 0.003834026399999857, + 0.031435899436473846, + -0.007414788939058781, + 0.023549649864435196, + -0.03297886252403259, + 0.00045441396650858223, + 0.01202419213950634, + 0.022941816598176956, + 0.0016910238191485405, + -0.00986560434103012, + 0.0036489488556981087, + -0.038527291268110275, + -0.0272122360765934, + -0.007157628424465656, + 0.007231659721583128, + 0.005361402872949839, + -0.009273356758058071, + -0.008603180758655071, + 0.01683231070637703, + 0.0009107760852202773, + 0.0016286819009110332, + -0.00010605427087284625, + 0.006039370782673359, + -0.011439736932516098, + -0.015195836313068867, + 0.01606862246990204, + -0.023331454023718834, + 0.0132710300385952, + -0.001505946391262114, + 0.005528946407139301, + -0.019840307533740997, + 0.025529004633426666, + -0.007157628424465656, + -0.011283882893621922, + 0.004091186914592981, + 0.001177677302621305, + -0.006078334525227547, + -0.006608240772038698, + -0.0025092612486332655, + 0.004737983923405409, + 0.005513361189514399, + 0.028240878134965897, + -0.005727661307901144, + 0.015406239777803421, + 0.005743246991187334, + -0.01126050390303135, + -0.026168009266257286, + 0.0016452415147796273, + -0.017985636368393898, + -0.014058096334338188, + 0.011073478497564793, + 0.0021800179965794086, + -0.0228327177464962, + 0.010231862775981426, + -0.002287168288603425, + -0.00803431123495102, + -0.01561664417386055, + 0.01002925168722868, + -0.0005406211130321026, + -0.0021878108382225037, + 0.006421214900910854, + -0.007356343325227499, + -0.004383414518088102, + -0.015234800055623055, + 0.011860544793307781, + -0.02161705121397972, + 0.01269436813890934, + 0.007227763067930937, + 0.009748713113367558, + -0.007734291255474091, + -0.009460382163524628, + 0.021165072917938232, + 0.003989880904555321, + -0.03656351938843727, + -0.018063563853502274, + 0.0016890756087377667, + 0.01929481513798237, + -0.010925416834652424, + -0.010107179172337055, + -0.00418469961732626, + 0.005801692605018616, + -0.00977209210395813, + -0.008236922323703766, + 0.007461545057594776, + -0.00850966852158308, + -0.009039574302732944, + 0.009624029509723186, + -0.0033956849947571754, + 0.021149486303329468, + 0.00649914238601923, + -0.018733737990260124, + 0.017860952764749527, + -0.01692582294344902, + -0.0016695938538759947, + 0.00010672396456357092, + 0.002731354208663106, + -0.008517460897564888, + -1.0791113709274214e-5, + -0.006070541683584452, + 0.008260300382971764, + -0.015468582510948181, + -0.00849408283829689, + -0.00017509305325802416, + -0.01497763954102993, + -0.004441859666258097, + -0.010372132062911987, + -0.02545107714831829, + 0.00572376511991024, + 0.0008596362313255668, + 0.0058328635059297085, + -0.02222488448023796, + -0.019762380048632622, + 0.0002222147595603019, + -0.02143002487719059, + 0.0029144834261387587, + 0.00879799947142601, + 0.0027722660452127457, + 0.00533412816002965, + -0.026074497029185295, + 0.0005518231773748994, + 0.014728272333741188, + 0.0019559769425541162, + -0.015406239777803421, + 0.03062545508146286, + -0.006799162831157446, + -0.00246640108525753, + 0.00022197123325895518, + -0.005119828041642904, + -0.025373149663209915, + -0.025716030970215797, + 0.007477130740880966, + -0.023799017071723938, + 0.009374662302434444, + 0.005353610031306744, + -0.003923642914742231, + -0.0007977813947945833, + 0.002713820431381464, + -0.015562094748020172, + -0.02842790260910988, + -0.005758832208812237, + 0.021850833669304848, + -0.005493879318237305, + 0.009382454678416252, + 0.03790387138724327, + 0.004192492458969355, + -0.0008635325939394534, + 0.004258730448782444, + -0.013886656612157822, + -0.0011367654660716653, + 0.002082608873024583, + 0.003448285860940814, + -0.01951301284134388, + 0.03168526664376259, + -0.014058096334338188, + -0.022115785628557205, + -0.008556424640119076, + -0.0013744438765570521, + 0.004804221913218498, + -0.021196244284510612, + -0.010403303429484367, + 0.0068420227617025375, + -0.006580966059118509, + 0.02219371311366558, + -0.00803431123495102, + -0.011587799526751041, + 0.021243000403046608, + -0.012483963742852211, + 0.01203977782279253, + 0.0188116654753685, + 0.004215870518237352, + -0.012335902079939842, + 0.007652467116713524, + 0.019310401752591133, + 0.019855892285704613, + 0.021726150065660477, + -0.0015205576783046126, + 0.013520398177206516, + 0.006736820563673973, + 0.0024274373427033424, + -0.010450059548020363, + -0.013169724494218826, + -0.010746183805167675, + 0.03410101681947708, + -0.015530924312770367, + 0.0029164317529648542, + -0.008556424640119076, + -0.01804797723889351, + 0.005112035199999809, + -0.006561484187841415, + -0.0017465470591560006, + -0.014011340215802193, + 0.006573173217475414, + 0.016333576291799545, + 0.002296909224241972, + -0.02008967474102974, + -0.016754383221268654, + 0.013232066296041012, + -0.01811031997203827, + 0.02471856027841568, + 0.015382861718535423, + 0.014736064709722996, + 0.007625192869454622, + 0.024422436952590942, + 0.013691837899386883, + -0.018250588327646255, + -0.01641150377690792, + 0.0005381858791224658, + 0.02660440281033516, + -0.003917798399925232, + -0.011034514755010605, + 0.0003026991034857929, + -0.01143194455653429, + -0.011221541091799736, + 0.0064017330296337605, + -0.012858015485107899, + -0.0033567212522029877, + -0.014813992194831371, + -0.02356523461639881, + 0.0038184409495443106, + -0.02258335053920746, + 0.00820575188845396, + 0.01711284928023815, + -0.006580966059118509, + 0.001148454612120986, + -0.018063563853502274, + 0.0033021720591932535, + -0.0103331683203578, + 0.015756912529468536, + 0.0004210512852296233, + -0.017315460368990898, + -0.011922886595129967, + -0.005727661307901144, + 0.014455526135861874, + -0.01993381977081299, + 0.008314849808812141, + 0.017829781398177147, + -0.009764298796653748, + -0.03223075717687607, + 0.013886656612157822, + 0.0056731123477220535, + 0.013232066296041012, + -0.009164257906377316, + -0.0020319561008363962, + -0.028911052271723747, + 0.001215666881762445, + -0.012031985446810722, + 4.331665695644915e-5, + 0.034412723034620285, + -0.017362216487526894, + -0.001657904707826674, + 0.0010023406939581037, + 0.02280154637992382, + 0.017128435894846916, + 0.003025529906153679, + -0.012437207624316216, + 0.0014153558295220137, + 0.013348957523703575, + -0.0022170336451381445, + 0.012943735346198082, + -0.01310738269239664, + -0.010317583568394184, + -0.0023573029320687056, + -0.006269256584346294, + 0.01111244224011898, + 0.0012974906712770462, + 0.00457433657720685, + 0.003239830257371068, + -0.013816521503031254, + -0.007469337899237871, + -0.03017347678542137, + -0.031919047236442566, + 0.006144572980701923, + -0.005864034406840801, + 0.018609054386615753, + 0.025684859603643417, + -0.012896979227662086, + -0.010621500201523304, + 0.015071152709424496, + -0.00416911393404007, + -0.02255217917263508, + -0.0004841237678192556, + 0.0024917274713516235, + -0.015686778351664543, + -0.0150243965908885, + -0.020105259492993355, + 0.004847082309424877, + -0.0005966313765384257, + -0.013972376473248005, + -0.010909831151366234, + -0.0018907127669081092, + -0.005189962685108185, + 0.013645081780850887, + 0.012858015485107899, + -0.006538106128573418, + -0.0025326393079012632, + 0.008977232500910759, + 0.017331046983599663, + -0.013886656612157822, + 0.0027177168522030115, + 0.030983921140432358, + -0.015359483659267426, + -0.005338024348020554, + 0.02203785814344883, + 0.011244919151067734, + 0.0074264779686927795, + 0.01376197300851345, + -0.0068264370784163475, + 0.0015225058887153864, + -0.00748102692887187, + 0.026261521503329277, + 0.002573551144450903, + -0.024360094219446182, + 0.012834637425839901, + 0.0084784971550107, + -0.012437207624316216, + -0.010543572716414928, + -0.003925591241568327, + -0.009382454678416252, + 0.0005352636217139661, + -0.028926638886332512, + -0.0043366579338908195, + -0.02002733387053013, + 0.009249978698790073, + -0.02139885537326336, + -0.011026722379028797, + -0.007325172424316406, + 0.01146311592310667, + 6.183201548992656e-6, + 0.00882917083799839, + 0.009195429272949696, + -0.010964380577206612, + 0.006047163624316454, + 0.005439330358058214, + -0.006319909356534481, + 0.009296734817326069, + 0.01676996983587742, + 0.012429415248334408, + 0.007636881899088621, + 0.015632228925824165, + -0.0038164928555488586, + -0.012187840417027473, + -0.006974499206990004, + -0.018577884882688522, + 0.016629699617624283, + 0.0053730919025838375, + 0.006919950246810913, + -0.016723211854696274, + -0.009288942441344261, + 0.012593062594532967, + -0.014478904195129871, + -0.011634555645287037, + 0.002910587005317211, + 0.01069942768663168, + 0.003982088528573513, + -0.0035262133460491896, + -0.0010325375478714705, + -0.012530720792710781, + -0.013582739979028702, + -0.007332965265959501, + 0.012670990079641342, + -0.00043468858348205686, + -0.00367232714779675, + -0.0014708790695294738, + -0.004874356556683779, + -0.0047730510123074055, + 0.016879066824913025, + 0.01095658726990223, + 0.007465441711246967, + 0.0038749382365494967, + -0.000348724948707968, + -0.016333576291799545, + -0.025856299325823784, + -0.009140879847109318, + -0.002119624288752675, + -0.016084209084510803, + 0.016053037717938423, + -0.004289901349693537, + 0.021118316799402237, + -0.01176703255623579, + 0.003989880904555321, + -0.028926638886332512, + -0.019980575889348984, + 0.020962461829185486, + 0.009608443826436996, + 0.015156872570514679, + -0.006627722643315792, + 0.010099386796355247, + 0.0017913553165271878, + 0.00027566804783418775, + -0.019045447930693626, + 0.012141083367168903, + -0.02222488448023796, + 0.020494896918535233, + -0.019466256722807884, + 0.00710697565227747, + 0.01408147532492876, + -0.019559768959879875, + 0.008517460897564888, + 0.0044808234088122845, + 0.003756099147722125, + 0.0034541303757578135, + 0.018515542149543762, + -0.011330639012157917, + -0.003193073906004429, + -0.019310401752591133, + -0.005692594218999147, + 0.0005021444521844387, + -0.025045854970812798, + -0.014923090115189552, + 0.0044808234088122845, + 0.022333983331918716, + -0.012273560278117657, + -0.01436980627477169, + 0.007952488027513027, + 0.025139369070529938, + -0.01778302527964115, + 0.0030177372973412275, + 0.028178535401821136, + -0.004870460368692875, + 0.01807914860546589, + -0.006210810970515013, + -0.023939287289977074, + 0.017907708883285522, + 0.01683231070637703, + -0.005318542942404747, + -0.029456544667482376, + 0.0024566601496189833, + -0.02426658198237419, + -0.0028151259757578373, + 0.012109912931919098, + 0.009631822817027569, + 0.005528946407139301, + 0.016847897320985794, + 0.0035281614400446415, + 0.01585821807384491, + 0.01377755869179964, + -0.007095286622643471, + -0.00278590340167284, + -0.003286586608737707, + -0.0011055944487452507, + -0.027103137224912643, + -0.025638103485107422, + -0.003812596434727311, + 0.019762380048632622, + -0.012406036257743835, + 0.0015858218539506197, + -0.0120865348726511, + -0.015990694984793663, + -0.008377191610634327, + 0.011922886595129967, + 0.003910005558282137, + 0.007375825196504593, + 0.008727865293622017, + -0.0026319967582821846, + 0.006588758900761604, + -0.003551539732143283, + 0.0020202670712023973, + -0.02040138468146324, + -0.013333371840417385, + 0.006253670901060104, + -0.005462708417326212, + 0.026526475325226784, + -0.006144572980701923, + -0.026230351999402046, + -0.014377598650753498, + -0.010894245468080044, + 0.004539269022643566, + 0.011050100438296795, + 0.004850978497415781, + -0.016660870984196663, + -0.012367072515189648, + 0.021726150065660477, + 0.008377191610634327, + -0.004866564180701971, + -0.0017728476086631417, + 0.010255241766571999, + -0.02688494138419628, + 0.0027742141392081976, + 0.00749661261215806, + -0.01929481513798237, + 0.02471856027841568, + -0.020603995770215988, + 0.026947282254695892, + -0.001138713676482439, + 0.012491757050156593, + 0.008135616779327393, + 0.0010666308226063848, + 0.005174377001821995, + -0.013660667464137077, + -0.0033430838957428932, + 0.010995551012456417, + -0.023876944556832314, + 0.00586013775318861, + 0.017128435894846916, + -0.010613706894218922, + -0.00367232714779675, + -0.01018510665744543, + -0.00670564966276288, + -0.0009307449799962342, + 0.008252508006989956, + 0.00804989691823721, + 0.012530720792710781, + -0.005458811763674021, + 0.007488819770514965, + -0.009662993252277374, + 0.008579802699387074, + 0.005443226546049118, + 0.006538106128573418, + -0.0033469803165644407, + 0.011182577349245548, + 0.016333576291799545, + 0.012491757050156593, + -0.004769154824316502, + -0.009795470163226128, + 0.010247448459267616, + -0.00018398163956589997, + -0.020042918622493744, + -0.016536187380552292, + 0.008283679373562336, + 0.004632781725376844, + -0.011026722379028797, + 0.004430170636624098, + -0.024219825863838196, + -0.01941949874162674, + -0.0061095054261386395, + -0.025030270218849182, + -0.0008844755939207971, + -0.010621500201523304, + 0.007804425898939371, + -0.013504812493920326, + 0.010964380577206612, + 0.013707423582673073, + 0.025716030970215797, + 0.00046464192564599216, + 0.015320519916713238, + -0.02621476538479328, + -0.023487308993935585, + -0.010403303429484367, + 0.005848448723554611, + -0.015265971422195435, + -0.017673926427960396, + 0.020292285829782486, + 0.010122764855623245, + 0.001601407420821488, + 0.010590328834950924, + 0.009483760222792625, + -0.00655369134619832, + 0.004675642121583223, + 0.01408147532492876, + 0.007360239513218403, + -0.006592655088752508, + 0.029425373300909996, + -0.01820383220911026, + 0.02037021331489086, + 0.0019355209078639746, + 0.006156262010335922, + -0.010068215429782867, + 0.01887400820851326, + -0.008883719332516193, + 0.007734291255474091, + 0.00943700410425663, + 0.0055328430607914925, + 0.007952488027513027, + -0.003970399498939514, + -0.014408770017325878, + 0.022910645231604576, + -0.009008403867483139, + 0.01176703255623579, + 0.005092553328722715, + -0.00801872555166483, + 0.03269832208752632, + 0.004192492458969355, + 0.01603745110332966, + -0.003193073906004429, + 0.011104649864137173, + -0.008922683075070381, + -0.005291268229484558, + -0.005466604605317116, + 0.013512604869902134, + -0.015047774650156498, + 0.007555058225989342, + 0.015234800055623055, + 0.003534005954861641, + -0.0003523777995724231, + -0.015437411144375801, + 0.004671745467931032, + -0.006767991930246353, + -0.0021975517738610506, + 0.011961850337684155, + 0.02002733387053013, + -0.004936698824167252, + 0.00044126372085884213, + -0.01068384200334549, + -0.008805792778730392, + -0.0025014684069901705, + 0.0027527841739356518, + -0.01628682017326355, + 0.0026612195651978254, + -0.017736269161105156, + -0.01406588964164257, + -0.014019133523106575, + 0.019824722781777382, + 0.008696693927049637, + 0.00401715561747551, + -0.021959932520985603, + -0.03238661214709282, + 0.008665523491799831, + -0.009998081251978874, + 0.011930679902434349, + -0.0110033443197608, + -0.007130354177206755, + 0.001100724097341299, + 0.004126254003494978, + -0.01890517957508564, + -0.011330639012157917, + 0.00070670380955562, + -0.0028872089460492134, + -0.01631798967719078, + -0.008197958581149578, + -0.0002781032817438245, + 0.015943938866257668, + 0.0007149835582822561, + 0.03612712770700455, + -0.009974703192710876, + 0.0065575879998505116, + -0.0029378617182374, + 0.0037327208556234837, + -0.01497763954102993, + -0.0028599342331290245, + 0.010676048696041107, + 0.0021254688035696745, + 0.024328922852873802, + -0.0016520601930096745, + 0.00026446598349139094, + 0.01775185391306877, + -0.0025579656939953566, + -0.02548224851489067, + 0.02325352653861046, + -0.0182973463088274, + 0.006740717217326164, + -0.012047571130096912, + 0.007091390434652567, + 0.012795673683285713, + -0.009577273391187191, + 0.015640022233128548, + 0.0034697160590440035, + 0.009920153766870499, + 0.013676253147423267, + 0.0019062982173636556, + -0.007820011116564274, + 0.027165479958057404, + 0.0038009071722626686, + -0.002497571986168623, + -0.018609054386615753, + 0.014463319443166256, + -0.010715012438595295, + 0.012304730713367462, + -0.02867726981639862, + -0.0019433136330917478, + -0.010878660716116428, + -0.033134717494249344, + -0.008213544264435768, + -0.023752260953187943, + 0.014642552472651005, + -0.005727661307901144, + 0.0052406154572963715, + 0.005809484981000423, + 0.025591347366571426, + 0.004936698824167252, + -0.020868947729468346, + -0.01826617494225502, + 0.003228141227737069, + 0.014362013898789883, + -0.0030567010398954153, + -0.019653281196951866, + 0.022443082183599472, + 0.029176006093621254, + -0.004874356556683779, + -0.008408362977206707, + 0.021320927888154984, + -0.017845366150140762, + 0.01778302527964115, + -0.0014280190225690603, + -0.010356547310948372, + -0.007508301641792059, + -0.0031287837773561478, + -0.026994040235877037, + -0.01698816567659378, + -0.037249282002449036, + -0.004009362775832415, + 0.00197545881383121, + -0.00250731292180717, + 0.009281149134039879, + 0.0050886571407318115, + -0.0027371987234801054, + -0.0067017534747719765, + -0.01874932460486889, + 0.00975650642067194, + 0.016536187380552292, + 0.05626355856657028, + 0.04286004975438118, + 0.009491553530097008, + 0.004001570399850607, + 0.0036957054398953915, + -0.05221133679151535, + 0.008618766441941261, + -0.021133901551365852, + -0.03014230541884899, + -0.019248059019446373, + 0.006904364563524723, + -0.011891716159880161, + 0.017611585557460785, + 0.019809136167168617, + -0.012483963742852211, + 0.018281759694218636, + -0.014330842532217503, + -0.0031404728069901466, + 0.000362849299563095, + 0.007449856027960777, + 0.0018517490243539214, + 0.009990287944674492, + -0.011509872041642666, + -0.002928120782598853, + 0.015608851797878742, + -0.006503038574010134, + -0.008548632264137268, + -0.0157958772033453, + -0.0117514468729496, + 0.00986560434103012, + 0.023830188438296318, + -0.016536187380552292, + -0.02331586740911007, + -0.006931639276444912, + -0.007469337899237871, + 0.02474973164498806, + 0.004091186914592981, + 0.016302404925227165, + 0.006510831415653229, + -0.012515135109424591, + -0.007979761809110641, + -0.008595388382673264, + 0.010387717746198177, + -0.03282300755381584, + -0.007909627631306648, + 0.014463319443166256, + 0.0017368061235174537, + 0.0030722864903509617, + -0.011237125843763351, + -0.012008607387542725, + -0.001883894088678062, + 0.012429415248334408, + -0.004009362775832415, + 0.0042041814886033535, + -0.005314646288752556, + 0.019902648404240608, + 0.023549649864435196, + -0.024344509467482567, + -0.0027566805947571993, + -0.01676996983587742, + 0.004048326518386602, + -0.003477508667856455, + 0.002333924639970064, + 0.02079102210700512, + 0.0021605361253023148, + 0.02956564351916313, + 0.01488412730395794, + 0.0007885275408625603, + 0.014821784570813179, + -0.006245878525078297, + 0.020900119096040726, + -0.013793143443763256, + -0.02407955564558506, + 0.00022343237651512027, + -0.024188654497265816, + -0.007414788939058781, + -0.011704690754413605, + -0.023611992597579956, + -0.024890000000596046, + 0.0216482225805521, + 0.006760199088603258, + -0.0036567416973412037, + 0.013886656612157822, + 0.0002824866969604045, + -0.021804077550768852, + 0.001977406907826662, + -0.005614666733890772, + -0.006982292048633099, + -0.007652467116713524, + 0.0009901645826175809, + -0.019824722781777382, + 0.01644267328083515, + -0.016582943499088287, + 0.004741880111396313, + 0.018281759694218636, + -0.008275886066257954, + -0.011541042476892471, + 0.0018790236208587885, + 0.009811054915189743, + 0.016598528251051903, + -0.0028696751687675714, + 0.03223075717687607, + 0.0009823718573898077, + 0.017237532883882523, + -0.004582128953188658, + -0.04170672595500946, + 0.0043366579338908195, + 0.0053652990609407425, + -0.0018575935391709208, + 0.04058457165956497, + -0.014346428215503693, + 0.011805996298789978, + 0.004897735081613064, + 0.0009648381965234876, + -0.004800325725227594, + 0.02037021331489086, + -0.0006955017452128232, + 0.016692042350769043, + 0.019045447930693626, + 0.015032188966870308, + -0.019014276564121246, + 0.013497020117938519, + 0.011712483130395412, + 0.0012312523322179914, + 0.02577837184071541, + -0.007629089057445526, + 0.0032632085494697094, + 0.03693757206201553, + -0.006187432911247015, + -0.006378354970365763, + 0.02912924997508526, + -0.000583968183491379, + -0.003456078702583909, + 0.018250588327646255, + 0.007796633057296276, + -0.005782210733741522, + 0.009390247985720634, + 0.002008577808737755, + -8.541569695807993e-5, + -0.010691634379327297, + -0.014572417363524437, + 0.007114768493920565, + 0.033259399235248566, + -0.006413422059267759, + -0.012148876674473286, + -0.008595388382673264, + -0.012117705307900906, + 0.012242388911545277, + 0.013785351067781448, + -0.007212177850306034, + 0.001893635024316609, + -0.017190776765346527, + 0.013224273920059204, + -0.005178273655474186, + -0.0063822511583566666, + 0.0013871070696040988, + -0.00943700410425663, + 0.030952749773859978, + 0.004730191081762314, + -0.014510075561702251, + -0.017767438665032387, + 0.01528155617415905, + 0.0016364746261388063, + 0.009296734817326069, + 0.011704690754413605, + -0.007313483394682407, + -0.008727865293622017, + 0.0037522027269005775, + -0.0002744504308793694, + -0.00525230448693037, + -0.0012283300748094916, + 0.00801872555166483, + 0.0025482247583568096, + -0.0005386729026213288, + 0.0007992425234988332, + -0.01068384200334549, + -0.007952488027513027, + -0.02368992008268833, + -0.025575760751962662, + -0.0007403100025840104, + 0.031825534999370575, + 0.02526405267417431, + 0.021819662302732468, + -0.0031599546782672405, + -0.007208281196653843, + 0.009242185391485691, + 0.0007437192834913731, + 0.005602977704256773, + 0.005026314873248339, + 0.005186066031455994, + 0.006230292841792107, + 0.013045040890574455, + -0.012094327248632908, + -0.010325375944375992, + -0.011782617308199406, + 0.014174987562000751, + -0.002158588031306863, + 0.015063359402120113, + -0.0336022786796093, + -0.001949158264324069, + -0.003985984716564417, + -0.00719269597902894, + 0.0025969294365495443, + -0.006390043999999762 + ], + "c7cc85c8-d045-4646-a3cf-ecb33f0e261b": [ + -0.003302135271951556, + -0.004764059092849493, + -0.01722784712910652, + -0.003349421313032508, + -0.04006695747375488, + -0.010584170930087566, + 0.02537679113447666, + 0.010899410583078861, + -0.0473489947617054, + 0.03540141135454178, + -0.002210617996752262, + 0.00560338469222188, + 0.002334743505343795, + -0.029947767034173012, + -0.03442417085170746, + 0.03297406807541847, + -0.029537955299019814, + 0.020569385960698128, + -0.007215047255158424, + -0.0186937116086483, + 0.06185001879930496, + -0.021121056750416756, + -0.043597642332315445, + 0.03461331129074097, + -0.0062535665929317474, + -0.007293857168406248, + 0.01721208542585373, + 0.0003204115491826087, + -0.04498469829559326, + 0.02340654283761978, + 0.029916241765022278, + 0.002427345374599099, + 0.014918716624379158, + -0.01722784712910652, + 0.013768091797828674, + -0.016392461955547333, + -0.003375034546479583, + 0.047033753246068954, + -0.004704951774328947, + -0.009685738012194633, + -0.03905819356441498, + 0.023059779778122902, + 0.009252283722162247, + 0.012278583832085133, + -0.04255735129117966, + 0.029837433248758316, + 0.009709381498396397, + -0.014012401923537254, + 0.00551669392734766, + 0.005556098651140928, + 0.006919510196894407, + -0.04990243539214134, + -0.011230411939322948, + 0.018236612901091576, + -0.0018973485566675663, + 0.002443107310682535, + 0.0006166875828057528, + 0.05809866636991501, + 0.007676085457205772, + 0.005327550228685141, + 0.016833797097206116, + -0.022886397317051888, + -0.01954485848546028, + 0.0172751322388649, + -0.011514128185808659, + -0.010686623863875866, + 0.004224211443215609, + 0.01621907949447632, + -0.05258197337388992, + -0.023800592869520187, + -0.015218193642795086, + 0.04630870372056961, + -0.027772612869739532, + -0.011947582475841045, + -0.024368025362491608, + -0.01896166428923607, + 0.06232287734746933, + -0.024840883910655975, + 0.0035819103941321373, + -0.006170816253870726, + -0.033699117600917816, + 0.000614224758464843, + 0.0029139965772628784, + -0.015927482396364212, + 0.07969257980585098, + 0.006391483824700117, + -0.03013690933585167, + -0.04161163419485092, + -0.0018283899407833815, + -0.03015267290174961, + -0.017874088138341904, + -0.012168250046670437, + 0.032847970724105835, + -0.013129731640219688, + -0.038112472742795944, + 0.02930152416229248, + 0.04567822441458702, + 0.005004429258406162, + 0.020191099494695663, + -0.0024037023540586233, + -0.01826813817024231, + 0.028340043500065804, + -0.05532455816864967, + -0.008479946292936802, + 0.03168158605694771, + -0.004232092294842005, + -0.0035957021173089743, + -0.020490577444434166, + -0.031445153057575226, + 0.04993395879864693, + 0.022996732965111732, + -0.01847304403781891, + 0.016754986718297005, + 0.02093191258609295, + -0.04618260636925697, + -0.07691847532987595, + 0.012648990377783775, + -0.044732507318258286, + 0.039247334003448486, + -0.03042062558233738, + 0.028513425961136818, + 0.047821853309869766, + -8.558263652957976e-5, + -0.010954577475786209, + -0.014036045409739017, + 0.003849864238873124, + 0.008795185945928097, + -0.006895867176353931, + -0.0005782677326351404, + 0.018867092207074165, + -0.03049943596124649, + -0.013303113169968128, + -0.01057629007846117, + 0.006939212791621685, + 0.003313956782221794, + 0.012247060425579548, + 0.026685036718845367, + 0.02852918766438961, + -0.058981336653232574, + 0.05390597879886627, + -0.029206953942775726, + -0.05816171318292618, + -0.018504567444324493, + -0.005808290559798479, + -0.027709564194083214, + 0.005260561592876911, + -0.028434615582227707, + 0.07326169312000275, + -0.01743275299668312, + 0.007092892192304134, + -0.029411857947707176, + -0.01897742599248886, + 0.04567822441458702, + 0.01331887487322092, + 0.021672725677490234, + 0.01599053107202053, + -0.03297406807541847, + -0.0010659040417522192, + 0.025455601513385773, + 0.0072386902756989, + 0.02170424908399582, + -0.03265882655978203, + 0.01602993533015251, + 0.0034183799289166927, + 0.0386168546974659, + 0.022255918011069298, + 0.030026575550436974, + 0.015620124526321888, + -0.05128949135541916, + 0.0243837870657444, + 0.027520421892404556, + -0.0234695915132761, + 0.013610471971333027, + 0.0015466444892808795, + 0.005961969960480928, + -0.038963619619607925, + 0.024494120851159096, + 0.02473055012524128, + 0.01770070567727089, + -0.04299868643283844, + -0.026858417317271233, + -0.03153972700238228, + -0.007817943580448627, + -0.00720322597771883, + 0.016565842553973198, + 0.05740514025092125, + 0.020128050819039345, + 0.007609096821397543, + 0.03508617356419563, + -0.003853804664686322, + -0.007518465630710125, + 0.005193572957068682, + 0.007049546577036381, + 0.002153480891138315, + -0.013752329163253307, + -0.02564474567770958, + 0.010245288722217083, + -0.011198888532817364, + -0.011726914905011654, + 0.006643675733357668, + -0.004176925402134657, + -0.02938033454120159, + -0.06043143942952156, + 0.050974249839782715, + -0.002043146872892976, + -0.0046300822868943214, + 0.008708495646715164, + -0.010229526087641716, + 0.037135228514671326, + -0.06689385324716568, + 0.051825396716594696, + -0.03836466372013092, + 0.013003635220229626, + -0.024194642901420593, + -0.020490577444434166, + 0.0008649387746118009, + -0.025487124919891357, + 0.032627303153276443, + 0.013563185930252075, + -0.042904116213321686, + -0.005150227807462215, + 0.024289214983582497, + 0.03303711488842964, + -0.039247334003448486, + -0.029175428673624992, + -0.016849558800458908, + -0.039373431354761124, + 0.02052210085093975, + -0.022287443280220032, + -0.0010619634995236993, + 0.05169930309057236, + -0.02501426637172699, + -0.004354247823357582, + -0.02389516495168209, + -0.022965207695961, + -0.01904047466814518, + -0.0168653205037117, + 0.026590464636683464, + -0.02123139053583145, + -0.004527629353106022, + 0.014390690252184868, + 0.011821486987173557, + 0.017684943974018097, + 0.009323212318122387, + 0.037135228514671326, + 0.034392643719911575, + 0.016345174983143806, + 0.045362986624240875, + 0.014792620204389095, + -0.0238794032484293, + -0.017401227727532387, + 0.004149341955780983, + 0.007747014053165913, + -0.019150808453559875, + -0.037418946623802185, + 0.04019305482506752, + 0.012775086797773838, + -0.017085988074541092, + -0.003398677334189415, + -0.035023123025894165, + -0.006241744849830866, + -0.0016796361887827516, + 0.02543983981013298, + 0.019560620188713074, + 0.014642881229519844, + -0.024462595582008362, + -0.0008885817369446158, + -0.04047676920890808, + -0.0166604146361351, + 0.034045882523059845, + -0.03335235267877579, + -0.004031126853078604, + -0.012648990377783775, + -0.025755079463124275, + -0.01694413088262081, + 0.00466948701068759, + 0.033762164413928986, + -0.003948376514017582, + 0.02747313492000103, + 0.002535708947107196, + -0.02227168157696724, + -0.01335039921104908, + -0.016329413279891014, + 0.038900572806596756, + -0.04025610163807869, + -0.008606042712926865, + 0.0034538444597274065, + 0.00453156977891922, + -0.026732321828603745, + -0.024415310472249985, + -0.0014560130657628179, + 0.006458471994847059, + 0.03990934044122696, + 0.02718941867351532, + 0.025424078106880188, + -0.0021889451891183853, + -0.009015853516757488, + -0.005634908564388752, + -0.010497480630874634, + 0.012633228674530983, + -0.05847695469856262, + 0.010245288722217083, + 0.01100186351686716, + -0.014800501056015491, + -0.0024647798854857683, + -0.01881980709731579, + 0.04098115488886833, + 0.023595687001943588, + -0.05163625255227089, + 0.011057030409574509, + 0.039531052112579346, + 0.006344197783619165, + -0.006923450622707605, + -0.01867794804275036, + -0.022791827097535133, + -0.0026893881149590015, + 0.038175519555807114, + -0.0172751322388649, + -0.02395821362733841, + -0.0068998076021671295, + 0.025818126276135445, + 0.0023721782490611076, + -0.07521618157625198, + 0.0021278676576912403, + 0.017527325078845024, + -0.02572355419397354, + 0.043030209839344025, + 0.003176039317622781, + -0.03328930586576462, + -0.0005147272604517639, + -0.017511561512947083, + -0.014603476971387863, + -0.013074563816189766, + -0.028072090819478035, + -0.009204997681081295, + -0.04955567046999931, + -0.02381635457277298, + -0.035464461892843246, + -0.004976845812052488, + -0.00829080305993557, + -0.01770070567727089, + 0.004137520212680101, + 0.0032528790179640055, + 0.010481717996299267, + 0.011261936277151108, + -0.0008363701635971665, + -0.03540141135454178, + 0.01959214359521866, + -0.027142133563756943, + -0.024415310472249985, + 0.000999900745227933, + -0.013760210946202278, + 0.03146091476082802, + -0.001128952018916607, + 0.05677466094493866, + -0.013366160914301872, + -0.0017594313248991966, + -0.035874269902706146, + 0.004815285559743643, + -0.0005969851044937968, + 0.00561914686113596, + -0.018110517412424088, + -0.041422490030527115, + -0.021184103563427925, + -0.018536090850830078, + 0.025692030787467957, + -0.00022756362159270793, + -0.015265479683876038, + 0.031098391860723495, + 0.02127867564558983, + -0.02901780977845192, + 0.004732535220682621, + 0.04192687198519707, + -0.047191374003887177, + -0.034266550093889236, + -0.0009343900019302964, + 0.056900754570961, + -0.03166582062840462, + -0.042273636907339096, + 0.01605357974767685, + -0.01629788987338543, + 0.021136818453669548, + 0.007664263714104891, + -0.035306841135025024, + 0.04139096662402153, + 0.03577969968318939, + 0.004559153225272894, + -0.023847879841923714, + 0.010174359194934368, + 0.009764548391103745, + -0.052455876022577286, + 0.020884625613689423, + -0.028403092175722122, + -0.01324794627726078, + -0.030436387285590172, + 0.009204997681081295, + 0.01342132780700922, + 0.00614717323333025, + 0.02080581709742546, + -0.017243608832359314, + -0.023075541481375694, + 0.0063757216557860374, + -0.0059974342584609985, + 0.0300738625228405, + 0.0191035233438015, + -0.020222622901201248, + -0.00030686610261909664, + -0.026732321828603745, + -0.005225097294896841, + 0.03155548870563507, + -0.02212982252240181, + 0.01938723772764206, + -0.0054457648657262325, + -0.006415126845240593, + 0.05579741671681404, + -0.008314445614814758, + 0.027630755677819252, + 0.023343496024608612, + -0.042841069400310516, + -0.03533836454153061, + 0.002780019538477063, + 0.051541682332754135, + -0.011183126829564571, + 0.054221220314502716, + 0.0003255834453739226, + 0.020853102207183838, + 0.06052601337432861, + 0.013768091797828674, + -0.04161163419485092, + -0.011506247334182262, + -0.006781592965126038, + -0.0012333751656115055, + -0.017480038106441498, + -0.0024391666520386934, + -0.029474906623363495, + -0.028765616938471794, + -0.004838928580284119, + 0.007073189597576857, + -0.0016756957629695535, + -0.024762073531746864, + 0.020821578800678253, + 0.0074514769949018955, + 0.021656963974237442, + -0.0032765220385044813, + -0.044291168451309204, + -0.009441426955163479, + -0.029348811134696007, + 0.004125698935240507, + 0.009480832144618034, + -0.02627522498369217, + -0.02607031911611557, + 0.025802364572882652, + -0.04117029905319214, + -0.0089922109618783, + 0.021546630188822746, + -0.022933684289455414, + -0.004440938588231802, + -0.025896936655044556, + 0.013035159558057785, + -0.01940299943089485, + -0.020427528768777847, + -0.01324794627726078, + 0.005114763043820858, + -0.03135058283805847, + 0.03956257551908493, + -0.018504567444324493, + -0.004996548406779766, + 0.010726029053330421, + 0.007585453800857067, + -0.005359074100852013, + -0.028213948011398315, + -0.011711153201758862, + -0.025660507380962372, + -0.009039497002959251, + -0.0023958212696015835, + 0.0005767900147475302, + 0.0014235039707273245, + 0.00829080305993557, + -0.00906313955783844, + -0.022224394604563713, + -0.02038024365901947, + -0.019434524700045586, + -0.011222531087696552, + -0.02127867564558983, + 0.011687509715557098, + -0.011041268706321716, + 0.027094846591353416, + -0.0181893277913332, + 0.005875278729945421, + -0.0008644462213851511, + 0.04277801886200905, + -0.011569295078516006, + 0.008353850804269314, + 0.019828572869300842, + 0.0006890941876918077, + -0.0037296791560947895, + -0.007995265536010265, + -0.009985215961933136, + -0.027930231764912605, + 0.0007880991324782372, + 0.010907291434705257, + -0.03823857009410858, + -0.000352181785274297, + 0.00892128236591816, + 0.0012767205480486155, + -0.017543086782097816, + -0.013153374195098877, + -0.008708495646715164, + -0.0011644164333119988, + -0.0234695915132761, + -0.013334636576473713, + 0.007006200961768627, + -0.009898524731397629, + 0.0069313314743340015, + -0.004220270551741123, + 0.0007954875472933054, + -0.04094963148236275, + 0.03160277381539345, + 0.005158108659088612, + -0.009007972665131092, + 0.003617374924942851, + 0.009457189589738846, + -0.018441518768668175, + 0.010024621151387691, + 0.0020470875315368176, + -0.0008964627631939948, + -0.005875278729945421, + -0.009283807128667831, + -0.008267159573733807, + -0.021199865266680717, + 0.0028233651537448168, + 0.02402126044034958, + -0.0037237682845443487, + -0.005169930402189493, + 0.02038024365901947, + -0.0034971898421645164, + -0.021247152239084244, + 0.031003819778561592, + -0.005887100473046303, + 0.06241745129227638, + -0.03259577974677086, + 0.013665638864040375, + -0.013090326450765133, + -0.017590371891856194, + 0.007573632523417473, + 0.03549598529934883, + -0.015612243674695492, + 0.021058008074760437, + -0.02564474567770958, + 0.014043926261365414, + -0.023311972618103027, + 0.007632739841938019, + -0.007349024061113596, + -0.010631456971168518, + -0.007234749849885702, + -0.05951724573969841, + 0.005792528390884399, + -0.00618263753131032, + -0.020427528768777847, + -0.0327218733727932, + -0.0015564957866445184, + 0.016613129526376724, + 0.021593915298581123, + 0.018031707033514977, + -0.02521917223930359, + 0.007148059085011482, + -0.022019488736987114, + 0.009969453327357769, + 0.0062535665929317474, + 0.0015023138839751482, + 0.012136726640164852, + 0.006155054084956646, + 0.034960076212882996, + 0.0002316272584721446, + -0.022287443280220032, + 0.01694413088262081, + -0.022460823878645897, + 0.02157815359532833, + 0.00042187931830994785, + -0.025329506024718285, + 0.022177109494805336, + -0.03180767968297005, + -0.0014658643631264567, + -0.014524666592478752, + 0.0152891231700778, + -0.018772520124912262, + -0.029632527381181717, + -0.03013690933585167, + 0.024998504668474197, + 0.03141362965106964, + 0.007963741198182106, + 0.030657054856419563, + 0.012357394210994244, + -0.006765830796211958, + -0.023217400535941124, + 0.02901780977845192, + -0.004062650725245476, + 0.01553343329578638, + 0.00046891896636225283, + -0.013752329163253307, + 0.0021180163603276014, + 0.023564163595438004, + 0.009961572475731373, + -0.03269034996628761, + -0.01064721867442131, + 0.028797142207622528, + -0.012853896245360374, + 0.007439655717462301, + 0.012168250046670437, + 0.023201636970043182, + -0.025124600157141685, + 0.01025316957384348, + 0.021373247727751732, + -0.025975747033953667, + 0.03470788523554802, + 0.010292574763298035, + -0.012412561103701591, + 0.05024920031428337, + 0.008700613863766193, + -0.028718331828713417, + 0.01243620365858078, + -0.005016251001507044, + 0.058067142963409424, + -0.016881082206964493, + 0.02971133589744568, + 0.01183724869042635, + -0.000986109022051096, + -0.03198106214404106, + -0.04252582788467407, + -0.024131594225764275, + 0.03571665287017822, + -0.000445029727416113, + 0.012184012681245804, + -0.04561517760157585, + 0.01897742599248886, + 0.0034656657371670008, + 0.0045433915220201015, + 0.029270000755786896, + -0.01883556880056858, + -0.00785340741276741, + -0.06506546586751938, + 0.008810947649180889, + -0.0004583288973663002, + 0.017196321859955788, + -0.004965024534612894, + 0.022287443280220032, + -0.02690570428967476, + 0.0034577848855406046, + 0.04378678649663925, + 0.03477093204855919, + -0.019056236371397972, + 0.011845129542052746, + 0.007538168225437403, + 0.0300738625228405, + -0.00959116593003273, + -0.04630870372056961, + -0.013303113169968128, + -0.005229037720710039, + 0.020679721608757973, + 0.025912698358297348, + 0.02094767428934574, + -0.013011516071856022, + -0.02066395804286003, + 0.01924538053572178, + 0.0014629089273512363, + 0.03823857009410858, + 0.006336316931992769, + 0.004263616167008877, + -0.012105202302336693, + 0.023658735677599907, + -0.003049943596124649, + -0.010655100457370281, + 0.027457373216748238, + 0.03612646460533142, + 0.006529401056468487, + -0.016896845772862434, + 0.014808381907641888, + -0.006158994510769844, + -0.004500045906752348, + -0.034108929336071014, + -0.008732138201594353, + -0.025471363216638565, + -0.02706332318484783, + 0.013831139542162418, + 0.016849558800458908, + -0.01183724869042635, + -0.012412561103701591, + 0.002582994755357504, + -0.02156239189207554, + 0.009386260062456131, + 0.0048310477286577225, + -0.016565842553973198, + -0.0077430736273527145, + 0.0007363801123574376, + -0.001660918933339417, + 0.01461135782301426, + 0.0011062941048294306, + -0.0006196429021656513, + 0.019150808453559875, + -0.020916150882840157, + -0.028087852522730827, + -2.4258675693999976e-5, + 0.006415126845240593, + -0.024084309116005898, + 0.011080673895776272, + 0.01587231643497944, + -0.022019488736987114, + -0.01643974706530571, + -0.00955176167190075, + -0.023973975330591202, + 0.013673519715666771, + 0.011427436955273151, + -0.004033097065985203, + 0.005099001340568066, + 0.020128050819039345, + 0.01064721867442131, + -0.014004521071910858, + 0.01820508949458599, + -0.0077115497551858425, + -0.0045394510962069035, + -0.0010816659778356552, + 0.05557674914598465, + 0.012105202302336693, + -0.0392158105969429, + -0.02600727044045925, + 1.517706459708279e-5, + 0.020742768421769142, + -0.02599150873720646, + 0.0028962641954421997, + -0.0017239667940884829, + 0.04589889198541641, + -0.010844243690371513, + -0.013153374195098877, + -0.0004920694045722485, + -0.024572931230068207, + -0.00916559249162674, + 0.0017200263682752848, + 0.024336500093340874, + 0.023280447348952293, + -0.0333208292722702, + 0.009819715283811092, + -0.03188649192452431, + 0.014075450599193573, + -0.004259675741195679, + 0.04180077835917473, + 0.01244408544152975, + 0.033699117600917816, + 0.0006757950177416205, + 0.019371476024389267, + 0.026401320472359657, + 0.05311787873506546, + -0.015029050409793854, + 0.029537955299019814, + 0.02515612356364727, + -0.022713016718626022, + -0.0023386841639876366, + -0.008495707996189594, + -0.010529004037380219, + -0.01183724869042635, + 0.01729089394211769, + 0.005757064092904329, + 0.0010452164569869637, + 0.005229037720710039, + -0.009110425598919392, + 0.001573242829181254, + -0.02662198804318905, + -0.02241353876888752, + 0.03328930586576462, + 0.0312875360250473, + -0.004062650725245476, + -0.007849466986954212, + 0.029553717002272606, + 0.02290216088294983, + 7.690123311476782e-5, + -0.01790561154484749, + -0.007542108651250601, + 0.01694413088262081, + -0.0015072395326569676, + -0.049429576843976974, + 0.0012461816659197211, + -0.016770748421549797, + -0.031003819778561592, + -0.009204997681081295, + -0.024257691577076912, + 0.007829764857888222, + -0.00223032059147954, + 0.02607031911611557, + -0.0032922839745879173, + -0.019623667001724243, + -0.006151113659143448, + -0.011711153201758862, + 0.026748083531856537, + -0.004102055914700031, + -0.009535999037325382, + 0.004764059092849493, + -0.01528124138712883, + 0.003893209621310234, + -0.03202834725379944, + -0.022571157664060593, + -0.010820601135492325, + -0.010757552459836006, + -0.040792010724544525, + -0.0004721206205431372, + 0.0026421023067086935, + 0.0023899106308817863, + -0.03808094933629036, + -0.00684858113527298, + 0.025455601513385773, + 0.016975654289126396, + 0.01637670025229454, + 0.00825927872210741, + -0.0045473319478333, + -0.0298689566552639, + 0.041769251227378845, + 0.005761004518717527, + -0.005634908564388752, + -0.005366954952478409, + -0.004767999518662691, + -0.005910743493586779, + -0.0015929453074932098, + 0.017653420567512512, + 0.034108929336071014, + 0.0018973485566675663, + 0.01833118498325348, + -0.034045882523059845, + -0.022965207695961, + 0.030798913910984993, + -0.022035250440239906, + 0.030830437317490578, + 0.03603189066052437, + -0.0016077221371233463, + 0.012247060425579548, + -0.020553624257445335, + 0.03106686659157276, + 0.00933897402137518, + 0.030830437317490578, + -0.013397685252130032, + -0.0017584461020305753, + -0.016818035393953323, + 0.03335235267877579, + 0.001843166770413518, + -0.028497664257884026, + -0.01553343329578638, + -0.013839020393788815, + -0.014091212302446365, + -0.014469499699771404, + 0.017543086782097816, + -0.0026263403706252575, + 0.015438861213624477, + 0.002803662559017539, + 0.006864343304187059, + 0.0018628692487254739, + 0.0004563586553558707, + -0.01556495763361454, + -0.04094963148236275, + 0.0319022536277771, + -0.01578562520444393, + 0.03401435911655426, + -0.02950643002986908, + 0.02149934321641922, + 0.01700717955827713, + -0.003993692342191935, + -0.019418762996792793, + -0.02887595072388649, + 0.015509790740907192, + -0.013665638864040375, + 0.006178697105497122, + -0.010875768028199673, + -0.0073923696763813496, + 0.002253963379189372, + -0.02424192801117897, + -0.0005782677326351404, + -0.014958120882511139, + 0.01680227369070053, + -0.00029652228113263845, + -0.03275340050458908, + -0.020616672933101654, + -0.017811039462685585, + 0.006954974494874477, + -0.031508203595876694, + 0.009606928564608097, + 0.00948871299624443, + -0.006119589786976576, + -0.014130617491900921, + -0.049177385866642, + -0.0052447994239628315, + 0.018709473311901093, + -0.0026578642427921295, + -0.003585851052775979, + -0.007049546577036381, + 0.002579054329544306, + 0.010450194589793682, + -0.0414540134370327, + -0.04265192523598671, + -0.01694413088262081, + -0.0048349881544709206, + -0.01120676938444376, + -0.029065094888210297, + -0.0074830008670687675, + -0.023343496024608612, + -0.004169044084846973, + -0.025124600157141685, + -0.01538369432091713, + -0.002259874250739813, + 0.01741699129343033, + -0.03808094933629036, + 0.008440541103482246, + 0.017196321859955788, + 0.0001707958581391722, + 0.007297797594219446, + 0.020884625613689423, + 0.005662492010742426, + 0.011821486987173557, + -0.005827993154525757, + 0.020112289115786552, + 0.015856554731726646, + 0.027788374572992325, + -0.02031719498336315, + 0.007423893548548222, + -0.0170702263712883, + 0.014351285062730312, + -0.004413355141878128, + 0.007817943580448627, + 0.01450890488922596, + 0.008306564763188362, + -0.007077130023390055, + 0.008645446971058846, + 0.00808589719235897, + 0.009575404226779938, + 0.013208541087806225, + 0.008078016340732574, + 0.008066194131970406, + 0.02572355419397354, + -0.012483489699661732, + 0.04980786517262459, + -0.0006403305451385677, + 0.011876653879880905, + -0.00662397313863039, + -0.0363786555826664, + -0.00449610548093915, + -0.009141949936747551, + 0.002811543643474579, + 0.02460445463657379, + -0.006702783051878214, + 0.010127073153853416, + -0.013736567460000515, + 0.008952805772423744, + 0.04523688927292824, + 0.016045697033405304, + 0.013476494699716568, + 0.00022571651788894087, + 0.008196230977773666, + 0.005177811253815889, + -0.022996732965111732, + 0.010828481987118721, + 0.04123334586620331, + -0.0021869749762117863, + 0.012609586119651794, + 0.01940299943089485, + 0.0071914042346179485, + 0.025030028074979782, + -0.009110425598919392, + 0.0046655465848743916, + -0.00077479996252805, + -0.03505465015769005, + -0.02060091122984886, + -0.02261844463646412, + 0.004527629353106022, + -0.012940587475895882, + -0.01170327141880989, + -0.015257598832249641, + -0.0414540134370327, + -0.021530868485569954, + -0.009031616151332855, + -0.009701499715447426, + -0.0002018272498389706, + 0.002994776703417301, + 0.004456700291484594, + -0.007490882184356451, + -0.0073411432094872, + 0.031791917979717255, + -0.019781287759542465, + -0.015683172270655632, + -0.0017663271864876151, + -0.01735394261777401, + 0.012168250046670437, + -0.006214161403477192, + -0.015068454667925835, + -0.005611265543848276, + -0.0010072891600430012, + -0.001021573436446488, + -0.033699117600917816, + 0.030972294509410858, + 0.013035159558057785, + 0.011112197302281857, + -0.0014638941502198577, + -0.023359257727861404, + -0.005761004518717527, + 0.011616581119596958, + -0.023926688358187675, + -0.021042246371507645, + -0.012901182286441326, + -0.033762164413928986, + 0.025628983974456787, + 0.012712039053440094, + 0.01637670025229454, + 0.01651855744421482, + -0.005288145039230585, + 0.00029430576250888407, + 0.025896936655044556, + -0.01078119594603777, + -0.0023623271845281124, + 0.000454880966572091, + 0.008905519731342793, + 0.038900572806596756, + 0.03209139406681061, + -0.0025731436908245087, + -0.03076738864183426, + -0.03388826176524162, + 0.0074199531227350235, + -0.01113584078848362, + -0.019434524700045586, + -0.0166604146361351, + 0.031082628294825554, + -0.003095259191468358, + 0.01405180711299181, + -0.0015683171804994345, + 0.0020845220424234867, + 0.010450194589793682, + 0.010986101813614368, + -0.027441611513495445, + -0.006292971316725016, + 0.00906313955783844, + 0.004070532042533159, + -0.009126187302172184, + -0.021830344572663307, + -0.017968660220503807, + -0.10043535381555557, + -0.030326053500175476, + -0.004913798067718744, + 0.016045697033405304, + 0.005623087286949158, + -0.00021795865905005485, + -0.0018421816639602184, + -0.009173473343253136, + -0.0010058115003630519, + 0.009780310094356537, + -0.007455417420715094, + -0.010560528375208378, + -0.005985612981021404, + 0.034108929336071014, + -0.02156239189207554, + 2.5767147235455923e-5, + 0.0009353751083835959, + -0.0016638742526993155, + 0.0057334210723638535, + -0.01820508949458599, + 0.0029376393649727106, + 0.006513639353215694, + 0.03886904940009117, + 0.01599053107202053, + 0.013098207302391529, + 0.02241353876888752, + -0.03625255823135376, + 0.01692836917936802, + 0.01064721867442131, + -0.02324892394244671, + 0.010844243690371513, + 0.006663377862423658, + -0.018504567444324493, + 0.007754895370453596, + 0.00023556775704491884, + -0.018772520124912262, + 0.01352378074079752, + -0.009559642523527145, + 0.023926688358187675, + 0.02761499211192131, + 0.01664465293288231, + -0.003587821265682578, + 0.006966796237975359, + -0.0031445154454559088, + 0.0016215139767155051, + -0.010757552459836006, + -0.01601417362689972, + -0.01476109679788351, + -0.009197116829454899, + 0.02670079842209816, + 0.019150808453559875, + -0.02127867564558983, + 0.0057373614981770515, + -0.019702477380633354, + 0.009370498359203339, + 0.004775880835950375, + -0.006998320110142231, + -0.005335431080311537, + 0.008850352838635445, + -0.006895867176353931, + 0.05860304832458496, + -0.005615205969661474, + -0.018520329147577286, + 0.010875768028199673, + -0.014942359179258347, + 0.0181893277913332, + 0.008227754384279251, + 0.0067776525393128395, + 0.02901780977845192, + -0.009930049069225788, + -0.008542994037270546, + -0.0016106775728985667, + 0.013279469683766365, + 0.021136818453669548, + -0.0020214742980897427, + 0.006497877184301615, + 0.02649589255452156, + 0.001442221342585981, + 0.010670862160623074, + -0.007049546577036381, + -0.009236522018909454, + 0.004098115488886833, + 0.0013131701853126287, + -0.028513425961136818, + -0.03420350328087807, + -0.020742768421769142, + 0.015620124526321888, + 0.00018421816639602184, + -0.026716560125350952, + 0.004267556592822075, + 0.018236612901091576, + 0.019339952617883682, + 0.01735394261777401, + 0.025487124919891357, + -0.022082537412643433, + 0.014895073138177395, + 0.01279084850102663, + 0.024620216339826584, + -0.014690167270600796, + 0.0020648196805268526, + -0.01316913589835167, + 0.006206280551850796, + 0.005958029069006443, + -0.024494120851159096, + 0.0013210511533543468, + 0.006040779873728752, + 0.004232092294842005, + -0.008606042712926865, + -0.031996823847293854, + -0.010134954936802387, + 0.01588807813823223, + -0.010923054069280624, + -0.00836173165589571, + 0.0017751932609826326, + -0.02178305946290493, + 0.004117818083614111, + -0.006021077279001474, + -0.029916241765022278, + -0.01904047466814518, + -0.01609298400580883, + -0.012609586119651794, + 0.020396005362272263, + -0.007640620693564415, + -0.0363786555826664, + -0.014847787097096443, + 0.009937929920852184, + -0.011916058138012886, + -0.01792137324810028, + -0.014847787097096443, + 0.0020589090418070555, + -0.033762164413928986, + -0.01402028277516365, + -0.013586828485131264, + 0.005496991332620382, + -0.006592449266463518, + 0.011892415583133698, + 0.01729089394211769, + -0.023138590157032013, + 0.008850352838635445, + -0.03915276378393173, + -0.007467239163815975, + 0.021940678358078003, + 0.006828879006206989, + 0.0018224791856482625, + -0.018457280471920967, + -0.007140177767723799, + 0.008338088169693947, + 0.007057427428662777, + 0.00017867684073280543, + -0.04123334586620331, + -0.01268839556723833, + 0.006265387870371342, + 0.011931820772588253, + -0.03076738864183426, + -0.014981764368712902, + -0.04372373968362808, + -0.00308343768119812, + 0.0043109022080898285, + -0.002992806490510702, + -0.0026657453272491693, + -0.01587231643497944, + 0.012940587475895882, + 0.021121056750416756, + -0.010458075441420078, + 0.014359165914356709, + -0.008487827144563198, + -0.001962366746738553, + 0.0023308030795305967, + -0.01394935417920351, + -0.018504567444324493, + -0.0025475304573774338, + 0.002190915634855628, + 0.012585942633450031, + 0.009039497002959251, + -0.014162140898406506, + -0.005918624345213175, + -0.00449610548093915, + 0.011868773028254509, + 0.006438769865781069, + 0.03310016170144081, + 0.004677368327975273, + -0.005575801245868206, + -0.0032312064431607723, + 0.0026243701577186584, + 0.0059659103862941265, + 0.00881882943212986, + 0.014926597476005554, + 0.006513639353215694, + -0.008298683911561966, + 0.006478174589574337, + -0.0035385650116950274, + 0.023422306403517723, + -0.014603476971387863, + -0.011356508359313011, + 0.015155145898461342, + 0.0009270015871152282, + 0.009126187302172184, + -0.04110724851489067, + -0.018299661576747894, + 0.002496303990483284, + -0.018299661576747894, + -0.006174756679683924, + 0.008196230977773666, + -0.00618263753131032, + 0.002210617996752262, + -0.008803066797554493, + -0.01967095397412777, + 0.03297406807541847, + 0.01721208542585373, + -0.019797049462795258, + -0.004870452452450991, + 0.009118306450545788, + -0.0019800991285592318, + -0.002198796486482024, + -0.00332971871830523, + 0.010773315094411373, + -0.006304793059825897, + -0.016408223658800125, + 0.015155145898461342, + -0.02480936050415039, + 0.015801386907696724, + -0.007313559763133526, + 0.021656963974237442, + -0.02507731318473816, + 0.013925711624324322, + 0.011214650236070156, + 0.008235636167228222, + -0.049082811921834946, + -0.016187556087970734, + 0.021672725677490234, + -0.01834694668650627, + 0.00881882943212986, + 0.002277606399729848, + -0.009039497002959251, + 0.014248832128942013, + -0.0013289321213960648, + 0.010347741656005383, + -0.016345174983143806, + 0.025187646970152855, + -0.0046616061590611935, + -0.02629098668694496, + -0.030972294509410858, + -0.013547423295676708, + 0.02923847734928131, + -0.005067477468401194, + 0.00987488217651844, + -0.027157895267009735, + -0.03183920308947563, + 0.0181893277913332, + -0.027299752458930016, + -0.0005299966433085501, + -0.0152891231700778, + -0.0012077619321644306, + 0.0074514769949018955, + 0.032627303153276443, + 0.006210220977663994, + 0.012562300078570843, + -0.008369612507522106, + 0.027299752458930016, + 0.0065806275233626366, + 0.011616581119596958, + 0.0060959467664361, + 0.004165103659033775, + -0.027945995330810547, + -0.0004019305342808366, + -0.03177615627646446, + -0.024431072175502777, + -0.015675291419029236, + 0.019450286403298378, + -0.022397777065634727, + -0.02001771703362465, + 0.012491370551288128, + -0.015052692964673042, + 0.016423985362052917, + 0.004563093651086092, + 0.004641903564333916, + 0.01156141422688961, + -0.0505959615111351, + -0.0010747701162472367, + -0.005169930402189493, + -0.00029036527848802507, + -0.01784256473183632, + -0.021199865266680717, + -0.013933592475950718, + -0.007014082279056311, + -0.017164798453450203, + -0.008022848516702652, + 0.014532547444105148, + 0.017795277759432793, + 0.01959214359521866, + 0.016896845772862434, + 0.004980786237865686, + 0.011624461971223354, + 0.007412072271108627, + 0.017038702964782715, + 0.014800501056015491, + -0.003069645958021283, + 0.0011919998796656728, + 0.004760118667036295, + 0.016676176339387894, + 0.01651855744421482, + 0.01651855744421482, + -0.013444971293210983, + -0.011876653879880905, + 0.007518465630710125, + -0.00024640411720611155, + 0.017747992649674416, + 0.013665638864040375, + -0.0011240263702347875, + -0.010071906261146069, + -0.006903748027980328, + 0.006482115015387535, + -0.011261936277151108, + -0.02430497668683529, + -0.009512356482446194, + -0.0023642973974347115, + 0.025250695645809174, + 0.013263707980513573, + 0.003603583201766014, + -0.019513333216309547, + 0.008826710283756256, + -0.010371384210884571, + 0.009015853516757488, + -0.0009304495179094374, + -0.013287351466715336, + -0.0003605553356464952, + -0.0004972412716597319, + -0.008598160929977894, + 0.0010885619558393955, + -0.032564256340265274, + -0.03090924769639969, + 0.005879219155758619, + -0.01599053107202053, + -0.011435317806899548, + 0.005686135031282902, + -0.005914683919399977, + 0.003059794893488288, + -0.02298096939921379, + 0.011120078153908253, + -0.006103827618062496, + 0.010560528375208378, + 0.022713016718626022, + -0.013547423295676708, + -0.002529798075556755, + 0.006296911742538214, + 0.019781287759542465, + 0.005102941766381264, + 0.019734002649784088, + 0.01067874301224947, + 0.0007304693572223186, + -0.010213764384388924, + -0.009007972665131092, + -0.01722784712910652, + 0.02121562883257866, + -5.3165906138019636e-5, + 0.035464461892843246, + -0.01812627911567688, + 0.039026666432619095, + -0.03603189066052437, + -0.016912607476115227, + -0.010465956293046474, + -0.017669182270765305, + -0.018567614257335663, + 0.013224302791059017, + 0.0013456792803481221, + 0.010954577475786209, + -0.003642988158389926, + 0.018094755709171295, + -0.01011919230222702, + -0.024336500093340874, + 0.018851330503821373, + -0.012877539731562138, + -0.008018908090889454, + 0.001258003176189959, + -0.005433943588286638, + -0.004472462460398674, + 0.011222531087696552, + -0.0038577450904995203, + 0.007301738485693932, + -0.0067776525393128395, + -0.01054476574063301, + 0.007821884006261826, + -0.035369887948036194, + 0.009748785756528378, + -0.0017239667940884829, + 0.018094755709171295, + -0.0023170113563537598, + 0.028560711070895195, + -0.0002551470824982971, + -0.0034735468216240406, + 0.0024529583752155304, + -0.007538168225437403, + 0.016975654289126396, + 0.009961572475731373, + 0.004145401529967785, + 0.024431072175502777, + -0.02186186984181404, + 0.03543293476104736, + -0.011466842144727707, + 0.007514525204896927, + 0.0008294743020087481, + -0.0008521321578882635, + -0.001987979980185628, + -0.003020389936864376, + -0.014776858501136303, + -0.005079298745840788, + -0.00395231693983078, + 0.021877631545066833, + 0.011041268706321716, + -0.00022510081180371344, + -0.020994961261749268, + 0.002043146872892976, + 0.01450890488922596, + -0.0005629982915706933, + -0.01264110952615738, + 0.008976449258625507, + 0.012885420583188534, + -0.0038341020699590445, + 0.012412561103701591, + 0.0003632644366007298, + 0.022854873910546303, + 0.013224302791059017, + -0.008369612507522106, + -0.020632434636354446, + -0.024399548768997192, + 0.010938815772533417, + 0.00497290538623929, + -0.02052210085093975, + -0.008747899904847145, + 0.029900480061769485, + -0.00944930873811245, + 0.008968567475676537, + 0.0010875767329707742, + 0.0073608458042144775, + 0.03458178788423538, + -0.0029829551931470633, + 0.01692836917936802, + -0.0003731156757567078, + 0.01546250469982624, + -0.006651556584984064, + -0.011474722996354103, + -0.017795277759432793, + 0.012727800756692886, + -0.003132693935185671, + -0.02369025908410549, + -0.019702477380633354, + 0.01025316957384348, + -0.0005807305569760501, + 0.01875675842165947, + 0.024982741102576256, + 0.031114153563976288, + -0.005331490654498339, + 0.0345502644777298, + -0.01503693126142025, + 0.009157711640000343, + 0.02212982252240181, + -0.00020490576571319252, + 0.008929163217544556, + -0.019639430567622185, + 0.020994961261749268, + -0.011640223674476147, + 0.01030045561492443, + -0.006474234163761139, + 0.012168250046670437, + 0.002795781707391143, + 0.013586828485131264, + 0.015856554731726646, + -0.02938033454120159, + -0.009567523375153542, + -0.018283899873495102, + -0.03056248277425766, + 0.006887986324727535, + -0.024431072175502777, + -0.005922564771026373, + 0.009535999037325382, + 0.0037671136669814587, + 0.0024785716086626053, + 0.000420647906139493, + 0.0030026575550436974, + 0.004767999518662691, + 0.004878333304077387, + -0.019229618832468987, + -0.001007781713269651, + 0.0037474113050848246, + 0.01067874301224947, + 0.006099887192249298, + -0.0011565354652702808, + -0.005347252357751131, + -0.005315728485584259, + 0.011884534731507301, + -0.018220851197838783, + 0.007553929928690195, + -0.018252374604344368, + 0.0027386443689465523, + -0.00616687536239624, + -0.0282454714179039, + -0.003889269195497036, + -0.0032489385921508074, + 0.03243815898895264, + -0.002506155287846923, + -0.0009132098639383912, + -0.016676176339387894, + -0.02501426637172699, + -0.0032331766560673714, + 0.0181893277913332, + 0.000976257782895118, + 0.01450890488922596, + 0.01911928504705429, + -0.004239973146468401, + -0.009654213674366474, + 0.0007989354780875146, + 0.01974976435303688, + 0.0014294147258624434, + -0.005087179597467184, + -0.01692836917936802, + 0.004228151869028807, + 0.017243608832359314, + -0.013444971293210983, + -0.0014412362361326814, + -0.006612151395529509, + -0.001248151995241642, + -0.010268931277096272, + -0.002169242827221751, + -0.01643974706530571, + 0.004039008170366287, + 0.02662198804318905, + 0.008251397870481014, + 0.008385374210774899, + 0.0005625057383440435, + 0.014162140898406506, + -0.004216330125927925, + 0.004188746679574251, + -0.01959214359521866, + 0.004716773051768541, + 0.00924440287053585, + 0.0037651434540748596, + 7.530040602432564e-5, + -0.007880991324782372, + 0.002841097302734852, + -0.015399456955492496, + 0.013035159558057785, + 0.014193665236234665, + -0.0049847266636788845, + -0.0035031004808843136, + -0.03325778245925903, + 0.09583285450935364, + -0.0014835966285318136, + 0.02080581709742546, + 0.011151602491736412, + 0.01362623367458582, + -0.012775086797773838, + 0.00861392356455326, + 0.0006999305333010852, + 0.02298096939921379, + 0.001242241240106523, + -0.004559153225272894, + -0.007613037247210741, + 0.020269909873604774, + 0.0022007666993886232, + -0.011049149557948112, + -0.01580926775932312, + 0.02101072296500206, + 0.013050921261310577, + 0.022965207695961, + 0.02410007081925869, + 0.010986101813614368, + -0.010134954936802387, + -0.0015210312558338046, + 0.0009595106821507215, + 0.005035953130573034, + 0.005804350133985281, + -0.010599932633340359, + -0.0247935988008976, + 0.02627522498369217, + 0.012956349179148674, + 0.0021889451891183853, + -0.009764548391103745, + 0.001119100721552968, + -0.0023662676103413105, + 0.00401733536273241, + 0.021325962617993355, + 0.0016382610192522407, + 0.020569385960698128, + -0.009906405583024025, + 0.005284204613417387, + 0.001117130508646369, + -0.01588807813823223, + 0.034108929336071014, + 0.013397685252130032, + -0.03577969968318939, + 0.004500045906752348, + -0.0007925321697257459, + -0.005958029069006443, + -0.008984330110251904, + 0.00931533146649599, + 0.005319668911397457, + -0.02507731318473816, + 0.004275437910109758, + 0.007309619337320328, + 0.022445062175393105, + 0.0012530776439234614, + 0.012412561103701591, + -0.008282921276986599, + 0.001962366746738553, + -0.00031056031002663076, + -0.025250695645809174, + -0.011726914905011654, + 0.0023879404179751873, + -0.007656382862478495, + -0.016613129526376724, + 0.009039497002959251, + -0.00676189037039876, + 0.010166478343307972, + -0.011537770740687847, + -0.007530286908149719, + -0.00948871299624443, + -0.010726029053330421, + 0.01387842558324337, + -0.015170907601714134, + -0.005918624345213175, + 0.017180560156702995, + 0.008117420598864555, + 0.02143629640340805, + 0.00391685264185071, + -0.002732733730226755, + 0.01201063022017479, + 0.00028346938779577613, + -0.004326663911342621, + -0.021404771134257317, + -0.009212878532707691, + -0.008724257349967957, + 0.020080765709280968, + -0.01226282212883234, + 0.000573342083953321, + -0.030121147632598877, + -0.00853511318564415, + -0.007088951300829649, + 0.021735774353146553, + 0.009386260062456131, + -0.01721208542585373, + 0.0032115038484334946, + -0.0035228030756115913, + -0.008905519731342793, + 0.006072303745895624, + -0.004098115488886833, + 0.014548310078680515, + 0.0001807702356018126, + -0.0008506544982083142, + 0.0071914042346179485, + 0.003087378339841962, + 0.00507535832002759, + 0.01700717955827713, + 0.00793615821748972, + -0.02460445463657379, + -0.01279084850102663, + 0.003377004759386182, + -0.004263616167008877, + 0.004224211443215609, + 0.007498763035982847, + -0.01611662656068802, + -0.0006772726774215698, + -0.004563093651086092, + 0.007195345126092434, + -0.01891437917947769, + -0.01130922231823206, + -0.010056144557893276, + 0.0029711336828768253, + -0.008842471987009048, + -0.017369704321026802, + -0.0035346245858818293, + 0.011979106813669205, + -0.004846809431910515, + -0.0039877817034721375, + 0.009433546103537083, + 0.01268839556723833, + 0.02353264018893242, + 0.018031707033514977, + 0.005508812610059977, + -0.009614809416234493, + 0.016565842553973198, + 0.0020983139984309673, + -0.025692030787467957, + 0.009149830788373947, + 0.012656872160732746, + -0.023438068106770515, + 0.022114060819149017, + 0.006911629345268011, + 0.00997733511030674, + 0.018567614257335663, + 0.012475608848035336, + 0.009882763028144836, + 0.015793506056070328, + -0.032627303153276443, + 0.012373155914247036, + -0.004216330125927925, + 0.029317287728190422, + -0.029916241765022278, + -0.006229923572391272, + -0.006537281908094883, + -0.0020332958083599806, + 0.012546537443995476, + -0.015683172270655632, + 0.026448605582118034, + -0.02797751873731613, + 0.010182240977883339, + 0.005508812610059977, + -0.008377493359148502, + -0.010040382854640484, + 0.01538369432091713, + -0.020128050819039345, + 0.02755194529891014, + 0.0005442809779196978, + 0.018646424636244774, + 0.013854782097041607, + 0.013681400567293167, + -0.017385466024279594, + 0.006951034069061279, + 0.022508110851049423, + -0.011860891245305538, + -0.012814491987228394, + -0.0020332958083599806, + 0.006249626167118549, + 0.016676176339387894, + -0.0073608458042144775, + 0.01345285214483738, + -0.009740904904901981, + 0.006151113659143448, + 0.015297004021704197, + 0.007589394226670265, + 0.007266273722052574, + -0.024210404604673386, + 0.007144118659198284, + 0.0007989354780875146, + 0.010702385567128658, + -0.003069645958021283, + -0.001529897446744144, + 0.010465956293046474, + 0.004586736671626568, + -0.000993989990092814, + -0.005197513848543167, + -0.012909063138067722, + 0.02324892394244671, + 0.016896845772862434, + 0.004417295567691326, + 0.002320951782166958, + -0.026889942586421967, + -0.009212878532707691, + 0.021609677001833916, + 0.02015957608819008, + -0.005749183241277933, + -0.011876653879880905, + -0.01699141599237919, + 0.0004046396352350712, + 0.003118902212008834, + -0.0014786709798499942, + -0.025770841166377068, + -0.024131594225764275, + 0.0001960396475624293, + 0.016266366466879845, + -0.014217307791113853, + 0.010387145914137363, + -0.003983840811997652, + 0.009756666608154774, + 0.007447536569088697, + 0.00275046587921679, + 0.013760210946202278, + 0.009047377854585648, + -0.003408528631553054, + -0.01743275299668312, + 0.011821486987173557, + -0.0034006477799266577, + -0.00674612820148468, + -0.0021239269990473986, + 0.002192885847762227, + 0.0046616061590611935, + 0.0017614015378057957, + -0.00769578805193305, + -0.024115832522511482, + 0.027725325897336006, + -0.0030578244477510452, + 0.039468005299568176, + 0.014311879873275757, + -0.012184012681245804, + 0.024620216339826584, + 0.018252374604344368, + -0.005591563414782286, + -0.00790463387966156, + -0.005981672089546919, + -0.001827404834330082, + -0.003849864238873124, + -0.022571157664060593, + 0.005642789416015148, + 0.008046492002904415, + -0.00027238676557317376, + -3.300165190012194e-5, + -0.01060781441628933, + -0.00962269026786089, + -0.0007028859108686447, + -0.006186577957123518, + 0.02480936050415039, + 0.0009205982787534595, + -0.015840793028473854, + 0.009930049069225788, + -0.010032502003014088, + -0.024588692933321, + 0.0007930247229523957, + -0.00035759995807893574, + 0.003311986569315195, + -0.01450890488922596, + -0.002295338548719883, + 0.013972997665405273, + -0.01324794627726078, + -0.0015830941265448928, + 0.011403794400393963, + 0.011750557459890842, + 0.017684943974018097, + 0.013279469683766365, + -0.010174359194934368, + 0.00800708681344986, + -0.010592051781713963, + -0.003853804664686322, + -0.002516006352379918, + -0.009969453327357769, + -0.0062535665929317474, + -0.02523493394255638, + -0.006359959952533245, + -0.0076445615850389, + -0.00029159666155464947, + -0.002498274203389883, + -0.0029435502365231514, + -0.007431774400174618, + 0.009937929920852184, + 0.024415310472249985, + -0.0008994181407615542, + 0.010339860804378986, + -0.004275437910109758, + -0.017448514699935913, + 0.00041252063238061965, + -0.017543086782097816, + 0.012585942633450031, + 0.015147265046834946, + 0.0014885221607983112, + -0.012869658879935741, + 0.016912607476115227, + -0.004980786237865686, + 0.0070968326181173325, + -0.0021554511040449142, + 0.005930445622652769, + -0.015959007665514946, + 0.005891040898859501, + -0.006876164581626654, + 0.015438861213624477, + -0.00546546746045351, + -0.01500540692359209, + 0.006190518382936716, + 0.0027012096252292395, + 0.006631853990256786, + 0.002466750331223011, + -0.02889171428978443, + -0.008117420598864555, + -0.006683080457150936, + 0.0144773805513978, + 0.022145584225654602, + -0.008424779400229454, + -0.00038469088030979037, + -0.022996732965111732, + 0.01430399902164936, + 0.01261746697127819, + -0.007380548398941755, + 0.03625255823135376, + -0.017527325078845024, + 0.003270611399784684, + -0.010458075441420078, + -0.012168250046670437, + -0.01699141599237919, + 0.013027278706431389, + 0.0015564957866445184, + -0.01216036919504404, + 0.0007147073629312217, + -0.027425849810242653, + 0.017747992649674416, + -0.009906405583024025, + -0.006663377862423658, + -0.01658160611987114, + 0.0053827171213924885, + -0.02058514952659607, + -0.01847304403781891, + 0.0046655465848743916, + -0.010662981308996677, + 0.005922564771026373, + 0.01637670025229454, + -0.013043040409684181, + -0.03808094933629036, + 0.002279576612636447, + 0.008511470630764961, + -0.01721208542585373, + -0.0011279669124633074, + 0.025818126276135445, + 0.021467819809913635, + -0.005713718477636576, + -0.002815484069287777, + 0.013106088154017925, + 0.0243837870657444, + -0.002517976565286517, + -0.017543086782097816, + 0.004992607980966568, + 0.02769380249083042, + -0.0007521421066485345, + 0.0039897519163787365, + 0.013728686608374119, + -0.011490484699606895, + 0.03001081384718418, + 0.0037828758358955383, + -0.04180077835917473, + 0.02889171428978443, + -0.011506247334182262, + -0.021546630188822746, + -0.009512356482446194, + -0.000696482602506876, + -0.006155054084956646, + 0.010071906261146069, + -0.0029061154928058386, + 0.004622201435267925, + -0.009535999037325382, + -0.007309619337320328, + 0.00366269052028656, + 0.009102544747292995, + 0.007908574305474758, + -0.013106088154017925, + 0.012381036765873432, + 0.0006595404702238739, + 0.02662198804318905, + 0.030121147632598877, + 0.017606133595108986, + -0.015722576528787613, + -0.0033888262696564198, + 0.003377004759386182, + 0.00808589719235897, + 0.00048320327186957, + -0.010789076797664165, + 0.009614809416234493, + -0.006631853990256786, + 0.012065797112882137, + 0.007041665725409985, + -0.00614717323333025, + 0.0018943932373076677, + -0.010686623863875866, + 0.010875768028199673, + -0.0111752450466156, + 0.0008738049073144794, + -0.007447536569088697, + 0.00400354340672493, + 0.00916559249162674, + 0.026385558769106865, + -0.01806323230266571, + -0.010796957649290562, + -0.008440541103482246, + -0.00818835012614727, + -0.0010698445839807391, + 0.01930842734873295, + -0.010426551103591919, + -0.002549500670284033, + 0.003063735319301486, + 0.009307450614869595, + -0.005390597973018885, + 0.0054418244399130344, + -0.01587231643497944, + 0.004255735315382481, + -0.008440541103482246, + -0.00019948759290855378, + -0.020348718389868736, + 0.02781989797949791, + -0.011577175930142403, + -0.006643675733357668, + 0.007668204139918089, + 0.012987873516976833, + -0.01932419091463089, + -0.028686808422207832, + 0.017180560156702995, + -0.019686715677380562, + -0.0068367598578333855, + 0.014445857144892216, + 0.005449705291539431, + -0.0015170908300206065, + 0.0186937116086483, + -0.01904047466814518, + 0.0001674710656516254, + -0.011868773028254509, + -0.004417295567691326, + 0.012404680252075195, + -0.0073411432094872, + -0.007944039069116116, + -0.0077115497551858425, + -0.01201063022017479, + -0.013815377838909626, + 0.003327748505398631, + -0.008369612507522106, + -0.006265387870371342, + 0.004909857641905546, + -0.03442417085170746, + -0.007613037247210741, + 0.007735192775726318, + -0.008913400582969189, + 0.03543293476104736, + -0.020916150882840157, + 0.007270214147865772, + -0.00041843135841190815, + 0.01093093492090702, + -0.004527629353106022, + -0.0011772230500355363, + 0.014288237318396568, + 0.019513333216309547, + 0.008755780756473541, + -0.013200660236179829, + 0.009331093169748783, + 0.0006659437785856426, + 0.020364481955766678, + 0.038679905235767365, + -0.008042551577091217, + 0.013563185930252075, + 0.01812627911567688, + -0.018252374604344368, + 0.0007856363081373274, + -0.0048310477286577225, + -0.0019170510349795222, + -0.005453645717352629, + -0.002811543643474579, + 0.005855576600879431, + -0.016423985362052917, + 0.016085103154182434, + -0.009409903548657894, + 0.0032922839745879173, + -0.006616091821342707, + -0.0032331766560673714, + 0.007002260535955429, + 0.015959007665514946, + 0.018047470599412918, + -0.006229923572391272, + 0.00941778440028429, + 0.0009989156387746334, + -0.01342132780700922, + 0.035874269902706146, + 0.0015939304139465094, + 8.176528353942558e-5, + 0.0023544461000710726, + 0.023453829810023308, + -0.0011102346470579505, + -0.024982741102576256, + -0.009236522018909454, + 0.015588600188493729, + -0.003546446096152067, + -0.0040508294478058815, + 0.0046300822868943214, + 0.0026046675629913807, + -0.005575801245868206, + 0.0014077420346438885, + 0.008322326466441154, + -0.03395130857825279, + 0.005272382870316505, + -0.0024135534185916185, + 0.024052785709500313, + 0.0020707303192466497, + 0.003118902212008834, + 0.008062253706157207, + 0.012869658879935741, + 0.003924733493477106, + -0.034171976149082184, + 0.008156825788319111, + -0.0021869749762117863, + 0.013240065425634384, + -0.015470385551452637, + 0.018788283690810204, + 0.005575801245868206, + 0.0058240522630512714, + -0.011585056781768799, + -0.0031996823381632566, + 0.00924440287053585, + -0.01432764157652855, + -0.02172001078724861, + 0.010339860804378986, + 0.008763662539422512, + 0.009583285078406334, + 0.006415126845240593, + 0.041989922523498535, + -0.0323120653629303, + 0.028072090819478035, + 0.014776858501136303, + 0.0020766411907970905, + -0.004468522034585476, + -0.010536884889006615, + -0.010978220961987972, + 0.015052692964673042, + 0.015588600188493729, + -0.0009964528726413846, + -0.016423985362052917, + -0.011064911261200905, + -0.002466750331223011, + -0.005981672089546919, + 0.018157804384827614, + 0.01282237283885479, + -0.021956441923975945, + 0.015722576528787613, + -0.00608018459752202, + -0.009307450614869595, + 0.023485353216528893, + 0.01040290854871273, + 0.0114826038479805, + -0.006403305102139711, + -0.01664465293288231, + -0.014501024037599564, + 0.012412561103701591, + 0.019907383248209953, + -0.003646928584203124, + 0.007372667081654072, + -0.02291792258620262, + -0.014737453311681747, + -0.001962366746738553, + -0.016282128170132637, + -0.011490484699606895, + -0.02017533779144287, + -0.01834694668650627, + -0.00032115037902258337, + -0.005296025890856981, + 0.004764059092849493, + -0.01637670025229454, + 0.012578061781823635, + -0.017306655645370483, + -0.0024529583752155304, + -0.009756666608154774, + 0.0020372362341731787, + 0.008338088169693947, + 0.010489598847925663, + 0.008011027239263058, + 0.029805907979607582, + -0.0032784922514110804, + 0.008803066797554493, + -0.013665638864040375, + -0.003979900386184454, + 0.004882274195551872, + 0.01792137324810028, + 0.000974287511780858, + -0.008771543391048908, + 0.00493744108825922, + -0.02860799804329872, + -0.02578660286962986, + -0.014114854857325554, + 0.020742768421769142, + 0.0015013287775218487, + -0.005032012704759836, + -0.0020145783200860023, + 0.019024712964892387, + 0.006525460630655289, + 0.014382808469235897, + -0.004850749857723713, + -0.0035543269477784634, + 0.0011397883063182235, + -0.03153972700238228, + 0.0009028660715557635, + -0.017747992649674416, + 0.027457373216748238, + -1.5307901776395738e-5, + 0.0028982344083487988, + -0.011088554747402668, + 0.019828572869300842, + -0.0076800258830189705, + -0.00500836968421936, + 0.0074514769949018955, + -0.006202340126037598, + -0.0010333949467167258, + -0.0068367598578333855, + 0.001676680869422853, + 0.007057427428662777, + -0.005977731663733721, + 0.03458178788423538, + -0.008487827144563198, + 0.011655986309051514, + 0.005749183241277933, + -0.029427621513605118, + -0.025550173595547676, + 0.004015365149825811, + -0.006395424250513315, + -0.015360051766037941, + 0.009149830788373947, + -0.0012097321450710297, + -0.02220863290131092, + -0.01113584078848362, + -0.00017547518655192107, + -0.009236522018909454, + -0.010954577475786209, + 0.008771543391048908, + -0.009819715283811092, + -0.00604472029954195, + 0.004354247823357582, + -0.0027248526457697153, + -0.008669090457260609, + -0.0004204016295261681, + 0.006324495188891888, + -0.022649968042969704, + 0.0015190610429272056, + -0.0006373751675710082, + 0.00405476987361908, + -0.004933500662446022, + -0.007230809424072504, + 0.0333208292722702, + -0.0020924031268805265, + -0.042967163026332855, + -0.013027278706431389, + 0.003875477472320199, + 0.008141064085066319, + -0.012215536087751389, + -0.004417295567691326, + 0.001799821387976408, + 0.0014569982886314392, + -0.01573045738041401, + -0.0029652228113263845, + 0.007735192775726318, + -0.0046931300312280655, + 0.0012924826005473733, + 0.007404190953820944, + -0.008038611151278019, + 0.028970522806048393, + 0.003075556829571724, + -0.009859119541943073, + 0.020049242302775383, + -0.008834591135382652, + -0.003605553414672613, + 0.0031583071686327457, + -0.0018047469202429056, + -0.009323212318122387, + -1.4114978512225207e-5, + -0.017889849841594696, + 0.009228640235960484, + 0.0009146875236183405, + 0.0035208328627049923, + 0.0031957419123500586, + -0.0057373614981770515, + -0.0022007666993886232, + 0.0017269222298637033, + -0.0191035233438015, + 0.007234749849885702, + 0.004125698935240507, + 0.009851238690316677, + -0.02290216088294983, + -0.02767804078757763, + -0.00012221693759784102, + -0.00430696178227663, + 0.0034459633752703667, + -0.0035444756504148245, + -0.0029770443215966225, + 0.0081804683431983, + -0.018283899873495102, + -0.004618261009454727, + 0.01282237283885479, + 0.011332864873111248, + -0.008125301450490952, + 0.02192491665482521, + 0.004259675741195679, + 0.0032765220385044813, + -0.008929163217544556, + -0.014658643864095211, + -0.02241353876888752, + -0.027220943942666054, + 0.009504475630819798, + -0.02480936050415039, + 0.01050536148250103, + 0.002571173245087266, + -0.00790463387966156, + -0.0020510279573500156, + 0.006781592965126038, + -0.024257691577076912, + -0.035023123025894165, + -0.013090326450765133, + 0.004704951774328947, + -0.0045473319478333, + 0.0008905520080588758, + 0.038742952048778534, + -0.003384885611012578, + 0.0071283564902842045, + -0.0038715368136763573, + -0.009102544747292995, + -0.005883160047233105, + 0.0035287137143313885, + -0.0024608394596725702, + -0.01918233186006546, + 0.028355805203318596, + -0.012152488343417645, + -0.014792620204389095, + -0.012207655236124992, + 0.0026558940298855305, + 0.0029770443215966225, + -0.023989737033843994, + -0.00256329239346087, + 0.00604472029954195, + -0.01960790529847145, + 0.014012401923537254, + -0.00626932829618454, + -0.017621895298361778, + 0.016707701608538628, + -0.01987585984170437, + 0.0122943464666605, + 0.016818035393953323, + 0.010095549747347832, + -0.01587231643497944, + 0.005717658903449774, + 0.01503693126142025, + 0.02269725501537323, + 0.019008951261639595, + -0.005165989510715008, + 0.013799615204334259, + -0.008937044069170952, + 0.005055655725300312, + -0.011782081797719002, + -0.0179844219237566, + -0.006533341482281685, + 0.03647322580218315, + -0.012168250046670437, + 0.003390796482563019, + -0.005682194605469704, + -0.02192491665482521, + 0.013184898532927036, + 0.0010186181170865893, + -0.0019613816402852535, + -0.012530775740742683, + 0.003270611399784684, + 0.02558169700205326, + 0.003715887200087309, + -0.02584965154528618, + -0.023438068106770515, + 0.010087668895721436, + -0.0175746101886034, + 0.011372270062565804, + 0.010363503359258175, + 0.014146379195153713, + 0.014461618848145008, + 0.029900480061769485, + 0.0225553959608078, + -0.017968660220503807, + -0.019938906654715538, + -0.004271497018635273, + 0.025045789778232574, + -0.0010964429238811135, + -0.004673427902162075, + -0.005579741671681404, + -0.0073884292505681515, + -0.01475321501493454, + -0.0018579436000436544, + -0.0146822864189744, + -0.0060250177048146725, + -0.015470385551452637, + -0.03157125040888786, + 0.018047470599412918, + -0.03064129315316677, + 0.004775880835950375, + 0.01763765886425972, + 0.007790359668433666, + -0.0032449981663376093, + -0.0017495800275355577, + -0.0012373155914247036, + -0.01840999536216259, + 0.014958120882511139, + 0.003059794893488288, + -0.006336316931992769, + -0.002246082527562976, + -0.003881388111039996, + -0.00033641982008703053, + -0.020427528768777847, + -0.003973989747464657, + 0.018520329147577286, + -0.010529004037380219, + -0.020222622901201248, + 0.017448514699935913, + -0.00657274667173624, + 0.00863756611943245, + -0.009843357838690281, + -0.004795582965016365, + -0.013381922617554665, + 0.005938326939940453, + -0.01432764157652855, + 0.0011575205717235804, + 0.02206677570939064, + -0.013807496055960655, + 0.015430980361998081, + -0.00036227930104359984, + 0.008984330110251904, + 0.01721208542585373, + 0.017606133595108986, + -0.005004429258406162, + -0.0076445615850389, + 0.01299575436860323, + -0.019513333216309547, + 0.020742768421769142, + -0.012727800756692886, + -0.016313651576638222, + 0.002803662559017539, + -0.01123829372227192, + 0.009000091813504696, + 0.0020589090418070555, + 0.00032607599860057235, + 0.005627027712762356, + -0.0022027369122952223, + -0.010860005393624306, + -0.02058514952659607, + -0.023359257727861404, + -0.013657758012413979, + -0.0015446742763742805, + 0.013381922617554665, + 0.021247152239084244, + -0.023989737033843994, + -0.007790359668433666, + 0.022429300472140312, + -0.005650670733302832, + -0.013689281418919563, + 0.002764257602393627, + -0.002789870835840702, + -0.012239179573953152, + -0.01510785985738039, + -0.01007978804409504, + 0.008243517018854618, + 0.002807602984830737, + -0.013129731640219688, + -0.003351391525939107, + 0.0029553717467933893, + -0.0024529583752155304, + 0.015572838485240936, + 0.005701897200196981, + -0.005560039076954126, + 0.00555215822532773, + -0.0007398280431516469, + 0.025959985330700874, + -0.020222622901201248, + 0.008866115473210812, + 0.04574127122759819, + -0.01398087851703167, + -0.00885823369026184, + 0.0019131106091663241, + 0.009149830788373947, + 0.007088951300829649, + 0.01244408544152975, + -0.01897742599248886, + -0.012735681608319283, + -0.015147265046834946, + 0.027031799778342247, + 0.011963344179093838, + -0.00934685580432415, + 0.007561810780316591, + 0.010261050425469875, + -0.008542994037270546, + -0.0048310477286577225, + -0.00036400326644070446, + -0.010536884889006615, + -0.002238201443105936, + -0.0307831522077322, + -0.009039497002959251, + -0.014335522428154945, + 0.016912607476115227, + -0.01867794804275036, + -0.003660720307379961, + -0.005252680741250515, + 0.0035957021173089743, + -0.013381922617554665, + 0.0179844219237566, + -0.0018520329613238573, + -0.017038702964782715, + 0.011474722996354103, + -0.003367153462022543, + -0.020490577444434166, + 0.014004521071910858, + 0.01932419091463089, + 0.00550093175843358, + 0.010836362838745117, + 0.01637670025229454, + -0.0008358776103705168, + -0.008582399226725101, + 0.0009811833733692765, + -0.012940587475895882, + 0.013429208658635616, + -0.003912912216037512, + 0.005713718477636576, + -0.027457373216748238, + -0.001083636307157576, + 0.007258392870426178, + -0.010347741656005383, + -0.007601215969771147, + 0.01615603268146515, + 0.0018205089727416635, + 0.014768977649509907, + -0.0016934279119595885, + 0.002847007941454649, + -0.012806610204279423, + -0.01216036919504404, + -0.011916058138012886, + 0.017527325078845024, + 0.011971225962042809, + -0.01651855744421482, + -0.004787702113389969, + -0.011041268706321716, + -0.004216330125927925, + 0.0280405655503273, + 0.01193970162421465, + -0.0024312858004122972, + 0.005623087286949158, + 0.0012451965594664216, + -0.01777951605618, + -0.027110610157251358, + -0.002872621174901724, + 0.00453156977891922, + -0.011498366482555866, + 0.015683172270655632, + -0.009141949936747551, + 0.015596481040120125, + -0.01432764157652855, + 0.0065451632253825665, + -0.03194953873753548, + -0.020821578800678253, + 0.018441518768668175, + 0.020128050819039345, + 0.015155145898461342, + -0.005863457452505827, + 0.013705043122172356, + -0.002537679160013795, + -0.011411675252020359, + -0.014887192286550999, + 0.00773125234991312, + -0.01883556880056858, + 0.02558169700205326, + -0.013791734352707863, + 0.011041268706321716, + -0.004200568422675133, + -0.01924538053572178, + 0.004176925402134657, + -0.0009747800650075078, + 7.302231097128242e-5, + -0.0034203501418232918, + 0.01918233186006546, + -0.01692836917936802, + 0.006261447444558144, + -0.013342518359422684, + -0.015170907601714134, + 0.00669490173459053, + -0.018536090850830078, + -0.007798240520060062, + 0.007404190953820944, + 0.031082628294825554, + -0.007975563406944275, + -0.01678651198744774, + 0.009677857160568237, + 0.0314924418926239, + -0.014808381907641888, + 0.007313559763133526, + 0.01617179438471794, + -0.0068998076021671295, + 0.0053551336750388145, + -0.00944930873811245, + -0.026590464636683464, + 0.026227938011288643, + 0.018709473311901093, + -0.0059343865141272545, + -0.026811132207512856, + 0.005607325118035078, + -0.012853896245360374, + -0.0074830008670687675, + 0.016959892585873604, + 0.00881882943212986, + -0.0038695666007697582, + 0.0163609366863966, + 0.010867887176573277, + 0.020459052175283432, + 0.00671066390350461, + -0.0009900495642796159, + 0.003558267606422305, + -0.0019367535132914782, + 0.01166386716067791, + -0.03213868290185928, + -0.027016038075089455, + 0.007045606151223183, + 0.0227603018283844, + -0.012735681608319283, + -0.0009797057136893272, + -0.01834694668650627, + -0.027804136276245117, + -0.01067874301224947, + 0.002770168473944068, + 0.00038222805596888065, + 0.004228151869028807, + 0.010182240977883339, + -0.005745242349803448, + -0.0025987569242715836, + -0.0014796560863032937, + 0.009118306450545788, + -0.023311972618103027, + -0.00916559249162674, + 0.013539542444050312, + -0.011592937633395195, + 0.03398283198475838, + -0.007668204139918089, + -0.029742861166596413, + -0.017527325078845024, + -0.0048625716008245945, + -0.000624075997620821, + 0.014674405567348003, + -0.0012471668887883425, + -0.01621907949447632, + -0.0016697850078344345, + 0.02058514952659607, + -0.004169044084846973, + -0.00776671664789319, + 0.0006073288968764246, + 0.011829367838799953, + -0.02797751873731613, + 0.0020924031268805265, + 0.012901182286441326, + -0.02186186984181404, + 0.028213948011398315, + -0.019355714321136475, + 0.021877631545066833, + 0.0065806275233626366, + 0.02452564425766468, + 0.00275834696367383, + 0.009197116829454899, + -0.0049532027915120125, + -0.009465070441365242, + 0.0007265288732014596, + 0.011340746656060219, + -0.019198093563318253, + 0.0009659139905124903, + 0.023138590157032013, + -0.013208541087806225, + 0.006107768043875694, + -0.018110517412424088, + 0.0010856065200641751, + -0.008211992681026459, + 0.004381831269711256, + -0.0016264395089820027, + 0.006344197783619165, + -0.016282128170132637, + 0.01834694668650627, + -0.010552647523581982, + 0.007195345126092434, + -0.0018608990358188748, + 0.010710267350077629, + 0.002029355149716139, + 0.002521917223930359, + 0.007944039069116116, + 0.011324984021484852, + 0.008377493359148502, + -0.014571952633559704, + 0.00371391698718071, + 0.010599932633340359, + -0.020884625613689423, + -0.00843266025185585, + 0.0037493815179914236, + 0.012775086797773838, + 4.097499549970962e-5, + 0.003985811490565538, + -0.02537679113447666, + -0.015241837128996849, + -0.013508019037544727, + -0.010631456971168518, + -0.011009744368493557, + -0.015943245962262154, + 0.0034459633752703667, + -0.0012451965594664216, + 0.009496593847870827, + 0.010986101813614368, + 0.03240663558244705, + -0.010899410583078861, + 0.010962458327412605, + -0.018804045394062996, + -0.029033571481704712, + -0.01040290854871273, + 0.007384488824754953, + -0.01528124138712883, + -0.014217307791113853, + 0.006994379684329033, + 0.015541314147412777, + 0.006395424250513315, + 0.0016658444656059146, + 0.010355622507631779, + -0.00977242924273014, + 0.010615695267915726, + 0.009378379210829735, + 0.00035341319744475186, + -0.025030028074979782, + 0.024289214983582497, + -0.01940299943089485, + 0.0298689566552639, + -0.005918624345213175, + 0.0024332560133188963, + -0.0071874638088047504, + 0.02655893936753273, + -0.001436310587450862, + 0.0055363960564136505, + 0.012948468327522278, + 0.010426551103591919, + -0.002212588209658861, + -0.008409017696976662, + -0.01040290854871273, + 0.0286552831530571, + -0.010363503359258175, + 0.002523887436836958, + 0.0007092892192304134, + -0.006592449266463518, + 0.022224394604563713, + -0.009543879888951778, + 0.007104713469743729, + -1.434586647519609e-5, + 0.013673519715666771, + -0.0035405352246016264, + -0.00020933883206453174, + -0.004350306931883097, + 0.02093191258609295, + -0.011829367838799953, + 0.009898524731397629, + 0.021530868485569954, + -0.0031937716994434595, + 0.013634114526212215, + -0.025833887979388237, + -0.0006152098649181426, + 0.010371384210884571, + -0.001510194968432188, + 0.011159483343362808, + 0.015777744352817535, + -0.008771543391048908, + 0.00435818824917078, + -0.012712039053440094, + -0.01025316957384348, + -0.004905916750431061, + 0.0020864924881607294, + -0.018536090850830078, + 0.008227754384279251, + -0.021751536056399345, + -0.008937044069170952, + -0.01422518864274025, + 0.015367932617664337, + 0.011214650236070156, + -0.001670770114287734, + -0.016565842553973198, + -0.019339952617883682, + 0.0002136487455572933, + -0.017795277759432793, + -0.011112197302281857, + -0.007041665725409985, + 0.0021061948500573635, + 0.0009506445494480431, + 0.01032409816980362, + -0.012428322806954384, + -0.009275926277041435, + -0.0015032991068437696, + 0.005260561592876911, + -0.008078016340732574, + -0.006690961308777332, + 0.0032784922514110804, + 0.008881877176463604, + 0.003284403122961521, + 0.0333208292722702, + -0.019844336435198784, + 0.004397592972964048, + -0.005512753501534462, + 0.003863655962049961, + -0.0025869354140013456, + -0.0010067966068163514, + 0.009425665251910686, + 0.003369123674929142, + 0.023847879841923714, + -0.014469499699771404, + 0.00892128236591816, + 0.013768091797828674, + 0.0004204016295261681, + -0.020884625613689423, + 0.0186937116086483, + -0.008298683911561966, + 0.010213764384388924, + -0.016408223658800125, + -1.4776858733966947e-5, + 0.00730567891150713, + -0.009638451971113682, + 0.008472065441310406, + 0.006387543398886919, + 0.006773711647838354, + 0.0111752450466156, + 0.007120475638657808, + -0.005583682097494602, + 0.019860098138451576, + -0.008011027239263058, + -0.00825927872210741, + -0.023501114919781685, + 0.00803467072546482, + -0.005146287381649017, + 0.010450194589793682, + -0.02767804078757763, + -0.006754009518772364, + -0.00139690563082695, + -0.01926114223897457, + -0.0121918935328722, + -0.01883556880056858, + 0.013799615204334259, + -0.010631456971168518, + 0.0031267832964658737, + 0.004031126853078604, + 0.024762073531746864, + 0.008873996324837208, + -0.016266366466879845, + -0.027583468705415726, + -0.00810953974723816, + 0.015438861213624477, + -0.0021219567861407995, + -0.011372270062565804, + 0.03606341406702995, + 0.02030143328011036, + 0.003656779881566763, + -0.001843166770413518, + 0.017511561512947083, + -0.020065004006028175, + 0.005571860820055008, + 0.0028647403232753277, + -0.012987873516976833, + -0.00941778440028429, + 0.0007122445967979729, + -0.01699141599237919, + -0.02038024365901947, + -0.030515197664499283, + -0.007624858990311623, + 0.0005452660843729973, + -0.009882763028144836, + 0.007928277365863323, + 0.01785832643508911, + -0.0034912789706140757, + -0.0172751322388649, + -0.01369716227054596, + 0.01282237283885479, + 0.019434524700045586, + 0.0573105663061142, + 0.037135228514671326, + 0.007892812602221966, + 0.01394935417920351, + 0.0012767205480486155, + -0.03732437267899513, + 0.011782081797719002, + -0.029411857947707176, + -0.03420350328087807, + -0.006986498832702637, + 0.006556984502822161, + -0.021452058106660843, + 0.0071874638088047504, + 0.0121918935328722, + -0.013043040409684181, + 0.0144773805513978, + -0.005875278729945421, + 0.0045433915220201015, + 0.004275437910109758, + 0.005256621167063713, + 0.003920793067663908, + 0.0026204294990748167, + -0.00626932829618454, + 0.006884045898914337, + 0.015367932617664337, + -0.009890643879771233, + -0.00500836968421936, + -0.015155145898461342, + -0.008629685267806053, + 0.00493744108825922, + 0.022649968042969704, + -0.015801386907696724, + -0.026952989399433136, + -0.01531276572495699, + 0.0012333751656115055, + 0.0243837870657444, + -0.009378379210829735, + 0.012625347822904587, + -0.0011348627740517259, + -0.006158994510769844, + -0.005047774873673916, + 0.0010412759147584438, + 0.0175746101886034, + -0.02369025908410549, + -0.01960790529847145, + 0.006052601151168346, + 0.006430888548493385, + -0.005859517026692629, + -0.005623087286949158, + -0.022602682933211327, + 0.0057334210723638535, + 0.010458075441420078, + -0.007778538390994072, + 0.011348627507686615, + 0.0024371964391320944, + 0.02172001078724861, + 0.03694608807563782, + -0.021751536056399345, + 0.0009747800650075078, + -0.011608700267970562, + 0.005410300567746162, + -0.011860891245305538, + 0.0043739499524235725, + 0.021262913942337036, + 0.0026716559659689665, + 0.040508292615413666, + 0.00020219667931087315, + -0.007230809424072504, + 0.014130617491900921, + 0.00011729131074389443, + 0.026527415961027145, + -0.013815377838909626, + -0.021136818453669548, + 0.015226074494421482, + -0.026322510093450546, + -0.004456700291484594, + -0.00825927872210741, + -0.0122943464666605, + -0.0146822864189744, + 0.026432843878865242, + 0.009480832144618034, + -0.007774597965180874, + 0.026149127632379532, + -0.008148944936692715, + -0.021262913942337036, + 0.003958227578550577, + -0.010536884889006615, + -0.005248740315437317, + 0.0004635007935576141, + 0.007199285551905632, + -0.01784256473183632, + 0.022602682933211327, + -0.006690961308777332, + 0.018788283690810204, + 0.014311879873275757, + -0.0004797553410753608, + -0.015943245962262154, + -0.000839325541164726, + 0.005761004518717527, + 0.014516785740852356, + -0.012609586119651794, + 0.02570779249072075, + -0.0031898310407996178, + 0.002734703943133354, + -0.0010944725945591927, + -0.03801790252327919, + 0.012105202302336693, + 0.016739225015044212, + 0.003899120260030031, + 0.04265192523598671, + -0.0074790604412555695, + 0.025770841166377068, + 0.004716773051768541, + -0.003958227578550577, + -0.00041670739301480353, + 0.013161255046725273, + -0.004701011348515749, + 0.0016816065181046724, + 0.023658735677599907, + 0.01989162154495716, + -0.020711245015263557, + 0.019166570156812668, + 0.005422121845185757, + 0.004472462460398674, + 0.020679721608757973, + 0.005607325118035078, + -0.0009102544863708317, + 0.039594098925590515, + -0.012727800756692886, + -0.018599139526486397, + 0.02810361422598362, + 0.0015890048816800117, + -0.007896753028035164, + 0.02015957608819008, + 0.009669976308941841, + -0.005402419250458479, + 0.0029691634699702263, + -0.004626141861081123, + -0.00829080305993557, + -0.01749579980969429, + -0.012310108169913292, + 0.013003635220229626, + 0.03163429722189903, + -0.0025908758398145437, + -0.0025475304573774338, + -0.011324984021484852, + -0.00672642607241869, + 0.007900693453848362, + 0.007246571127325296, + -0.007092892192304134, + 0.017968660220503807, + -0.014493142254650593, + 0.01812627911567688, + -4.981032543582842e-5, + -0.0035503865219652653, + -0.0009806908201426268, + -0.011868773028254509, + 0.030452148988842964, + 0.008952805772423744, + -0.018725235015153885, + -0.003688303753733635, + 0.009402022697031498, + 0.009599046781659126, + 0.01714903675019741, + 0.011608700267970562, + -0.007786419242620468, + -0.012105202302336693, + 0.0009506445494480431, + 0.006344197783619165, + -0.0059974342584609985, + 0.0037887864746153355, + -0.003899120260030031, + 0.0005487140151672065, + -0.009717262350022793, + 0.0013259768020361662, + -0.019828572869300842, + -0.012310108169913292, + -0.019718239083886147, + -0.022665729746222496, + 0.003339570015668869, + 0.03269034996628761, + 0.020774291828274727, + 0.01430399902164936, + -0.010773315094411373, + -0.011443198658525944, + -0.002772138686850667, + 0.0052132755517959595, + 0.010292574763298035, + 0.0046931300312280655, + 0.010710267350077629, + 0.004567034542560577, + 0.012247060425579548, + -0.005134465638548136, + -0.0038104592822492123, + -0.0145798334851861, + 0.015438861213624477, + -0.011269817128777504, + 0.012522894889116287, + -0.04183230176568031, + -0.005016251001507044, + -0.001523986691609025, + -0.008409017696976662, + 0.00672642607241869, + -0.011230411939322948 + ], + "31bffcaa-ca8d-4ffe-890b-a31409513851": [ + 0.01197575032711029, + 0.011029076762497425, + -0.016126548871397972, + 0.013822756707668304, + -0.017106324434280396, + -0.0012396126985549927, + 0.020072126761078835, + 0.025196079164743423, + -0.012525218538939953, + 0.03887319192290306, + 0.007149701938033104, + 0.017304927110671997, + 0.031061481684446335, + 0.006984199397265911, + 0.00451159430667758, + 0.020178047940135002, + 0.013087926432490349, + 0.05256354808807373, + -0.0007009024848230183, + -0.02282608486711979, + 0.04522848501801491, + -0.004885629750788212, + -0.04734691604971886, + -0.01635163277387619, + -0.024322226643562317, + -0.017980176955461502, + -0.018364140763878822, + 0.010585530661046505, + -0.0532255582511425, + -0.01705336384475231, + 0.0175035297870636, + 0.004445393104106188, + 0.00019353431707713753, + 0.03328583389520645, + 0.0022409018129110336, + -0.034874655306339264, + -0.0065307230688631535, + 0.04207731783390045, + -0.014881972223520279, + -0.020045645534992218, + -0.024732671678066254, + -0.005282835103571415, + 0.0022028363309800625, + -0.01257155928760767, + -0.023898540064692497, + -0.0013728420017287135, + 0.0024659850168973207, + -0.009374053217470646, + -0.008586262352764606, + -0.02012508735060692, + 0.006732636131346226, + 0.0044023627415299416, + -0.0030551734380424023, + 0.00034652056638151407, + 0.025076916441321373, + -0.03551018610596657, + 0.029763944447040558, + 0.05544991046190262, + -0.021316703408956528, + -0.02753959223628044, + 0.015398339368402958, + -0.037655096501111984, + -0.0029178066179156303, + 0.008824585936963558, + 0.014617168344557285, + -0.02020452730357647, + -0.021766869351267815, + 0.014511247165501118, + -0.001468005939386785, + -0.0013306390028446913, + -0.01943659596145153, + 0.02675842121243477, + -0.021925752982497215, + 0.046102337539196014, + -0.0011287260567769408, + -0.01661643758416176, + 0.04708211123943329, + -0.004140868782997131, + 0.014802530407905579, + 0.008632603101432323, + -0.009201930835843086, + -0.007460846100002527, + -0.017556490376591682, + 0.022468600422143936, + 0.023117369040846825, + 0.008625983260571957, + -0.014550967141985893, + -0.03778749704360962, + -0.03513946011662483, + -0.027830876410007477, + -0.021197542548179626, + 0.010578910820186138, + -0.014100801199674606, + -0.014021359384059906, + 0.017755093052983284, + -0.04374558478593826, + 0.03204125538468361, + 0.005835613235831261, + 0.02054877206683159, + 0.023382173851132393, + 0.02171390876173973, + 0.011677846312522888, + -0.014180242083966732, + 0.001800665631890297, + 0.014656889252364635, + -0.025169597938656807, + -0.011717567220330238, + -0.006745876278728247, + -0.011710946448147297, + 0.022124355658888817, + 0.002110155066475272, + -0.02891657128930092, + 0.00026749318931251764, + 0.011618265882134438, + -0.03725789114832878, + -0.030796678736805916, + -0.031802933663129807, + -0.01870838738977909, + 0.007679309230297804, + -0.009248271584510803, + 0.005362276453524828, + -0.008169196546077728, + 0.028042718768119812, + -0.003515270072966814, + -0.0242560263723135, + -0.009758018888533115, + -0.018575984984636307, + 0.016417833045125008, + 0.051001206040382385, + 0.025288760662078857, + 0.007831571623682976, + -0.030399473384022713, + 0.00735492492094636, + -0.015822025015950203, + -0.005511228460818529, + 0.039588164538145065, + 0.012697340920567513, + 0.03108796291053295, + -0.02151530608534813, + 0.03741677477955818, + -0.055555831640958786, + 0.0006446316838264465, + -0.03897911682724953, + 0.01635163277387619, + -0.007527047302573919, + -0.004173969384282827, + -0.005706521216779947, + 0.06360586732625961, + -0.04782355949282646, + 0.026665739715099335, + -0.03818470239639282, + 0.011366701684892178, + -0.016722358763217926, + -0.007824951782822609, + 0.04626121744513512, + -0.01432588417083025, + -0.017569730058312416, + 0.007262243423610926, + 0.036225154995918274, + 0.017304927110671997, + 0.03016114979982376, + -0.04901517927646637, + -0.016325153410434723, + -0.008387659676373005, + 0.05423181131482124, + 0.016589956358075142, + 0.053119637072086334, + 0.02109162136912346, + -0.03243846073746681, + 0.0068120770156383514, + 0.013478511944413185, + 0.003710562828928232, + 0.03058483637869358, + -0.0011742392089217901, + 0.04453999549150467, + -0.024997476488351822, + 0.01828470081090927, + -0.0014886937569826841, + 0.03797286003828049, + -0.04623473808169365, + -0.028175121173262596, + -0.0009408809128217399, + 0.04157419130206108, + -0.030743718147277832, + -0.015795545652508736, + 0.012293514795601368, + -0.014656889252364635, + -0.014895211905241013, + -0.011995610781013966, + 0.033603597432374954, + -0.0013413965934887528, + -0.024269266054034233, + -0.009460114873945713, + 0.00022115252795629203, + 0.0032190207857638597, + -0.03323287516832352, + -0.0009988066740334034, + 0.008136095479130745, + -0.017172524705529213, + 0.017304927110671997, + -0.00762634864076972, + -0.023355692625045776, + 0.012723821215331554, + 0.020191287621855736, + -0.030320031568408012, + 0.03903207555413246, + -0.0221773162484169, + -0.01608682982623577, + 0.031829413026571274, + 0.002378268865868449, + 0.04522848501801491, + -0.032411981374025345, + 0.01881430856883526, + -0.007732270285487175, + -0.04056793823838234, + 0.01746380887925625, + -0.018258219584822655, + 0.013134267181158066, + -0.007738890126347542, + -0.041786033660173416, + 0.03513946011662483, + 0.01719900406897068, + -0.004653926473110914, + -0.013511612080037594, + -0.01288270391523838, + 0.011902929283678532, + -0.03627811744809151, + 0.007341684773564339, + -0.026321494951844215, + -0.030108189210295677, + 0.02052229270339012, + -0.01828470081090927, + 0.007818331010639668, + 0.010254526510834694, + 0.03400080278515816, + 0.004034947603940964, + 0.018072856590151787, + 0.004587725270539522, + -0.017066603526473045, + -0.018986430019140244, + -0.027486631646752357, + 0.014630408026278019, + -0.009102629497647285, + -0.0019727880135178566, + -0.017913974821567535, + 0.02653333730995655, + -0.01639135368168354, + 0.021104861050844193, + 0.02318357117474079, + 0.016484035179018974, + -0.003472239477559924, + 0.011181339621543884, + -0.008857686072587967, + 0.010029442608356476, + -0.015835264697670937, + 0.032411981374025345, + 0.022627482190728188, + -0.05942196771502495, + 0.009327712468802929, + -0.001161826541647315, + 0.027407189831137657, + 0.012366335839033127, + -0.02379261888563633, + -0.010194945149123669, + 0.023779379203915596, + -0.011154859326779842, + 0.03625163808465004, + -0.04046201705932617, + 0.020601732656359673, + 0.0441957488656044, + -0.021104861050844193, + -0.04570513218641281, + -0.01631191186606884, + 0.017728611826896667, + 0.010347207076847553, + -0.004898869898170233, + 0.01693420112133026, + 0.021912511438131332, + 0.004356021992862225, + 0.011783767491579056, + -0.015610182657837868, + 0.01136008184403181, + -0.010353827849030495, + 0.029472660273313522, + -0.02232295833528042, + 0.016748838126659393, + -0.019542519003152847, + 0.0021300152875483036, + -0.0008515096269547939, + 0.012022091075778008, + 0.017251966521143913, + -0.022124355658888817, + 0.013504992239177227, + -0.014815771020948887, + 0.011538824066519737, + 0.03254438191652298, + -0.024361947551369667, + -0.007785230875015259, + 0.017516769468784332, + -0.0007497256738133729, + -0.028704728931188583, + 0.035536665469408035, + -0.03246494382619858, + -0.03447744995355606, + -0.0174240879714489, + -0.02405742183327675, + 0.0003607951512094587, + 0.0349276177585125, + -0.05211338400840759, + 0.045916974544525146, + 0.024997476488351822, + 0.015067334286868572, + -0.00802355445921421, + -0.011062177829444408, + -0.014087560586631298, + -0.02421630546450615, + -0.03201477602124214, + -0.011869829148054123, + -0.022548040375113487, + -0.023620495572686195, + 0.009148970246315002, + -0.00840752013027668, + -0.060216378420591354, + -0.006447971798479557, + 0.04199787974357605, + -0.012783401645720005, + 0.04337485879659653, + -0.008222157135605812, + -0.04160067439079285, + 0.009043049067258835, + -0.045678649097681046, + 0.012558318674564362, + -0.00981760025024414, + 0.0011221059830859303, + -0.05388756841421127, + -0.01132036093622446, + -0.028413444757461548, + -0.03352415934205055, + 0.01445828564465046, + -0.03235902264714241, + 6.620094063691795e-5, + 0.01619275100529194, + 0.02992282621562481, + -0.006060696206986904, + -0.016404593363404274, + -0.016960682347416878, + 0.005703211296349764, + 0.039852969348430634, + -0.003644361859187484, + -0.020998939871788025, + 0.0008411657181568444, + 0.012392816133797169, + 0.015146776102483273, + 0.011154859326779842, + 0.07546907663345337, + -0.02298496663570404, + -0.03625163808465004, + -0.012379576452076435, + 0.0177021324634552, + -0.017225485295057297, + -0.005504608619958162, + -0.06016341596841812, + -0.0032256408594548702, + -0.015623422339558601, + -0.008890786208212376, + 0.02695702388882637, + 0.018152298405766487, + -0.010638491250574589, + -0.006500932388007641, + -0.004667166620492935, + -0.030902599915862083, + 0.00981760025024414, + -0.024044182151556015, + -0.0708085298538208, + 0.007646209094673395, + -0.031035002321004868, + 0.0176226906478405, + -0.0354837067425251, + 0.013068065978586674, + 0.013637394644320011, + -0.013081306591629982, + 0.011810247786343098, + -0.014590688049793243, + -0.03694012761116028, + -0.010188325308263302, + -0.0011651365784928203, + -0.021356424316763878, + -0.014219962991774082, + -0.010559050366282463, + 0.017212245613336563, + -0.0018403861904516816, + 0.014617168344557285, + -0.012876083143055439, + -0.006183167919516563, + 0.017556490376591682, + 0.009685197845101357, + 0.024322226643562317, + -0.005762792192399502, + -0.012214073911309242, + -0.009486595168709755, + -0.0021680807694792747, + -0.00429975101724267, + -0.006454592105001211, + 0.022044913843274117, + 0.00647776247933507, + -0.03328583389520645, + -0.004922040272504091, + -0.0014018049696460366, + 0.011955889873206615, + 0.020641453564167023, + 0.01635163277387619, + 0.010559050366282463, + -0.005322556011378765, + 0.007388025056570768, + 0.040859222412109375, + 0.04292469099164009, + -0.016550235450267792, + 0.0574624203145504, + -0.009076149202883244, + 0.019489558413624763, + 0.017344646155834198, + 0.021184301003813744, + 0.010108884423971176, + 0.016205990687012672, + 0.01070469245314598, + -0.007275483570992947, + 0.0073152040131390095, + 0.02838696353137493, + 9.112973202718422e-5, + -0.030796678736805916, + 0.013968398794531822, + 0.06567133218050003, + -0.009360813535749912, + -0.026136131957173347, + -0.02915489487349987, + -0.01739760860800743, + -0.003985296934843063, + -0.008010313846170902, + -0.009625617414712906, + 0.00906290952116251, + 0.001374497078359127, + 0.01623247191309929, + -0.003076688852161169, + -0.00578596256673336, + -0.012869463302195072, + 0.013677114620804787, + -0.042871732264757156, + -0.010340587235987186, + 0.009479975327849388, + -0.02483859471976757, + -0.009618996642529964, + -0.010578910820186138, + -0.06879601627588272, + -0.030452433973550797, + 0.02595076896250248, + -0.017675651237368584, + 0.016020627692341805, + -0.012326615862548351, + 0.04766467958688736, + -0.0482737272977829, + 0.006514173001050949, + 0.0010931430151686072, + 0.04951830580830574, + -0.03344471752643585, + 0.030876120552420616, + -0.005541019141674042, + -0.0074873268604278564, + -0.00183873123023659, + -0.0074078855104744434, + 0.01588822714984417, + -0.03852894902229309, + -0.006898138206452131, + -0.029710983857512474, + 0.029472660273313522, + 0.020257487893104553, + -0.007149701938033104, + -0.024269266054034233, + -0.014206722378730774, + -0.0016409559175372124, + 0.0175035297870636, + -0.0285723265260458, + 0.022614242509007454, + -0.0024328846484422684, + -0.017728611826896667, + 0.044910721480846405, + 0.0014059424865990877, + -0.02618909254670143, + -0.049915511161088943, + 0.012233934365212917, + -0.007659449242055416, + 0.01559694204479456, + 0.038502469658851624, + -0.0481942854821682, + 0.02132994309067726, + 0.00863922294229269, + -0.018231740221381187, + -0.010188325308263302, + -0.058521632105112076, + 0.00029355980223044753, + 0.013650634326040745, + 0.017304927110671997, + -0.02671870030462742, + 0.01701364293694496, + 0.014127281494438648, + -0.0073019638657569885, + 0.0032620513811707497, + 0.00963885709643364, + 0.047452837228775024, + -0.0087517648935318, + -0.005243114661425352, + -0.024653231725096703, + 0.012578179128468037, + -0.04072682186961174, + 0.0004327886563260108, + -0.0008386832196265459, + 0.008692183531820774, + 0.01935715600848198, + -0.02328949235379696, + 0.02772495523095131, + -0.010234666056931019, + -0.03357711806893349, + 0.013246809132397175, + -0.008758384734392166, + -0.026480376720428467, + -0.008122855797410011, + 0.00995000172406435, + -0.015517501160502434, + -0.027910318225622177, + 0.02167418785393238, + -0.022693682461977005, + -0.02213759534060955, + 0.0019727880135178566, + -0.028360484167933464, + 0.013822756707668304, + 0.005488058086484671, + 0.009473354555666447, + 0.005418546963483095, + 0.025858087465167046, + 0.0285723265260458, + -0.006702845450490713, + -0.013677114620804787, + 0.03903207555413246, + 0.01959547959268093, + -0.001558204647153616, + -0.00891064666211605, + 0.015358618460595608, + 0.01839062198996544, + 0.013511612080037594, + -0.03686068579554558, + 0.03717844933271408, + -0.009433634579181671, + 0.007785230875015259, + -0.036039792001247406, + -0.013743315823376179, + -0.025249039754271507, + -0.04252748563885689, + 0.006732636131346226, + 0.0197014007717371, + 0.004882319364696741, + -0.02306440845131874, + -0.01723872497677803, + 0.02147558517754078, + 0.00315778492949903, + 0.03161757066845894, + -0.006378460675477982, + -0.02753959223628044, + -0.019145313650369644, + 0.058521632105112076, + -0.014246443286538124, + 0.012617900036275387, + 0.03921743854880333, + -0.025593284517526627, + 0.03397432342171669, + 0.019847042858600616, + -0.02433546632528305, + 0.038237664848566055, + 0.0175035297870636, + -0.0023716487921774387, + 0.012114772573113441, + -0.024745913222432137, + 0.012783401645720005, + 0.01291580405086279, + -0.0010716277174651623, + -0.016166269779205322, + 0.010525950230658054, + 0.018602464348077774, + -0.011134998872876167, + -0.0004108595894649625, + -0.01205519214272499, + 0.024547310546040535, + -0.00022591071319766343, + 0.04586401209235191, + -0.007474086247384548, + -0.001999268541112542, + -0.024388426914811134, + 0.03357711806893349, + 0.02506367675960064, + -0.0036542920861393213, + 0.001375324558466673, + -0.02244211919605732, + 0.044672396034002304, + 0.031114444136619568, + 0.014352364465594292, + 0.014061080291867256, + -0.016669398173689842, + -0.004958450794219971, + 0.027089426293969154, + 0.03119388408958912, + -0.0019595478661358356, + 0.031114444136619568, + 0.008175816386938095, + -0.011889689601957798, + 0.03675476461648941, + -0.037469733506441116, + -0.0019777531269937754, + -0.011022456921637058, + 0.020760616287589073, + 0.03826414421200752, + 0.006818697322160006, + 0.022389158606529236, + 0.02661277912557125, + -0.03286214917898178, + 0.04358670115470886, + -0.007017299998551607, + 0.03694012761116028, + 0.022203795611858368, + -0.011836729012429714, + -0.015822025015950203, + 0.0026331425178796053, + -0.03209421783685684, + -0.012584798969328403, + -0.01559694204479456, + -0.023037929087877274, + -0.030372992157936096, + -0.020694414153695107, + -0.028122160583734512, + -0.0032802566420286894, + 0.021316703408956528, + 0.014921692200005054, + -0.044831279665231705, + 0.034345049411058426, + -0.007666069082915783, + 0.04665842279791832, + 0.021065140143036842, + -0.006865037605166435, + 0.05121304839849472, + -0.016801798716187477, + 0.017251966521143913, + 0.01816553808748722, + 0.02352781593799591, + -0.0016566786216571927, + -0.006755806040018797, + 0.006368530914187431, + 0.007116601336747408, + 0.008215537294745445, + -0.011002596467733383, + -0.005984565243124962, + -0.006454592105001211, + 0.03535130247473717, + -0.0031015141867101192, + 0.003060138551518321, + -0.019754361361265182, + 0.014272923581302166, + -0.016682637855410576, + 0.034954097121953964, + -0.0003196264151483774, + 0.014299403876066208, + 0.0020406441763043404, + -0.016364872455596924, + 0.012717201374471188, + -0.017304927110671997, + -0.01792721450328827, + 0.03895263373851776, + -0.028095679357647896, + 0.0019049320835620165, + -0.010367067530751228, + 0.016100069507956505, + -0.018748106434941292, + -0.015557222068309784, + -0.026467137038707733, + -0.01723872497677803, + -0.05190153792500496, + -0.02336893230676651, + 0.00802355445921421, + -0.03050539456307888, + -6.832143844803795e-5, + -0.021581508219242096, + 0.010314106941223145, + -0.031220365315675735, + 0.017477048560976982, + -0.014617168344557285, + 0.018218498677015305, + 0.008261878043413162, + 0.002974077360704541, + 0.005726381670683622, + -0.003809864167124033, + 0.01905263215303421, + -0.03439800813794136, + 0.010439888574182987, + -0.0024328846484422684, + -0.015345378778874874, + -0.003348112804815173, + 0.005342415999621153, + -0.03686068579554558, + 0.01839062198996544, + 0.02413686364889145, + -0.01235971599817276, + -0.005329175852239132, + 0.00020118879911024123, + 0.011710946448147297, + -0.008645842783153057, + -0.010843714699149132, + 0.010598771274089813, + 0.005196773912757635, + -0.0017774953739717603, + 0.021925752982497215, + -0.018072856590151787, + 0.030982041731476784, + -0.03574850782752037, + 0.02764551341533661, + -0.015861745923757553, + -0.009519695304334164, + -0.0053391060791909695, + -0.00425341073423624, + -0.023620495572686195, + -0.004399052821099758, + -0.011187959462404251, + -0.023646976798772812, + 0.03312695026397705, + 0.0028532606083899736, + 0.025752166286110878, + -0.006686295382678509, + 0.031035002321004868, + 0.004759847652167082, + -0.00293601187877357, + -0.04596993327140808, + -0.011849968694150448, + 0.0157028641551733, + 0.006305639632046223, + -0.02317032963037491, + -0.0033812131732702255, + -0.019608719274401665, + -0.0049319700337946415, + -0.04107106477022171, + 0.03331231325864792, + -0.00898346770554781, + 0.04056793823838234, + 0.00037900041206739843, + -0.008963607251644135, + -0.0019165172707289457, + 0.04933294281363487, + -0.02024424821138382, + 0.05942196771502495, + 0.0314057283103466, + -0.0219787135720253, + 0.00240971427410841, + 0.0016608161386102438, + -0.017384367063641548, + -0.01619275100529194, + 0.03137924522161484, + -0.006375150755047798, + 0.00735492492094636, + -0.00946673471480608, + 0.000515126099344343, + 0.024229545146226883, + 0.04268636927008629, + 0.009109249338507652, + -0.004200449679046869, + 0.012902563437819481, + -0.003929025959223509, + 0.04337485879659653, + 0.028095679357647896, + -0.011029076762497425, + 0.019886763766407967, + -0.008698804304003716, + -0.04655250161886215, + 0.019463077187538147, + -0.00714308163151145, + -0.01604710891842842, + -0.009135730564594269, + -0.01284298300743103, + -0.037734538316726685, + -0.0005333313602022827, + 0.003631121711805463, + 0.01677531935274601, + -0.027168866246938705, + 0.0485914908349514, + -0.004677096847444773, + -0.014259682968258858, + -0.0016533685848116875, + 0.014206722378730774, + -0.01525269728153944, + -0.024441387504339218, + 0.03709900751709938, + 0.024534069001674652, + -0.025553563609719276, + 0.0006715258350595832, + 0.010612010955810547, + -0.028122160583734512, + 0.01006254367530346, + 0.015305657871067524, + -0.03593387082219124, + 0.05025975778698921, + 0.031246844679117203, + 0.015570461750030518, + -0.00016736425459384918, + -0.004306371323764324, + -0.00929461233317852, + -0.005329175852239132, + 0.007778611034154892, + 0.01490845251828432, + 0.0020505741704255342, + -0.00478301802650094, + 0.04083274304866791, + -0.014339123852550983, + 0.0001763634500093758, + -0.010698072612285614, + -0.02256128191947937, + 0.06058710440993309, + 0.0445135124027729, + -0.007911012507975101, + 0.0011601715814322233, + 0.015093814581632614, + 0.019079111516475677, + 0.00973815843462944, + -0.02016480639576912, + 0.03161757066845894, + -0.0006628369446843863, + 0.0022111115977168083, + -0.01693420112133026, + -0.01715928502380848, + -0.012154493480920792, + -0.006328810006380081, + -0.005243114661425352, + -0.002805264899507165, + 0.03410672768950462, + 0.006166617851704359, + 0.0034358289558440447, + -0.026824621483683586, + 0.02891657128930092, + 0.009287992492318153, + -0.035695549100637436, + -0.01572934351861477, + -0.026281774044036865, + -0.012267034500837326, + -0.005534398835152388, + -0.014855491928756237, + 0.01889374852180481, + 0.018271461129188538, + 0.054814379662275314, + 0.031564608216285706, + 0.026122892275452614, + -0.008076515048742294, + 0.03799934312701225, + -0.034424491226673126, + 0.009076149202883244, + 0.024467868730425835, + 0.009612376801669598, + -0.04133586958050728, + 0.011942650191485882, + 0.043983906507492065, + 0.009274751879274845, + -0.0287312101572752, + -0.014948172494769096, + 0.004048187751322985, + -0.024348706007003784, + 0.00494521064683795, + 0.013465272262692451, + -0.009923521429300308, + 0.031749971210956573, + 0.015649903565645218, + -0.015742585062980652, + 0.00933433324098587, + 0.0013074686285108328, + -0.012564939446747303, + -0.0219787135720253, + -0.0014704884961247444, + 0.002897946396842599, + -0.029048973694443703, + 0.010499469935894012, + -0.003995226696133614, + 0.005709831137210131, + 0.03593387082219124, + -0.01546454057097435, + -0.01191616989672184, + 0.0017112944042310119, + -0.0031594401225447655, + -0.014312643557786942, + 0.010803993791341782, + -0.009499835781753063, + 0.012770161963999271, + 0.005180223844945431, + -0.01627219095826149, + -0.022005192935466766, + -0.02626853436231613, + 0.01091653574258089, + 0.0018900369759649038, + -0.004852529149502516, + -0.011816868558526039, + 0.03521890193223953, + 0.00840752013027668, + -0.02248184010386467, + -0.021568266674876213, + -0.031299807131290436, + 0.009274751879274845, + -0.028281042352318764, + 0.00871204398572445, + 0.0038628249894827604, + 0.03288862854242325, + 0.012214073911309242, + 0.02405742183327675, + -0.01270396076142788, + 0.0110489372164011, + -0.0143656050786376, + 0.03694012761116028, + -0.0013504992239177227, + 0.005918364506214857, + -0.044910721480846405, + -0.021303463727235794, + 0.010168464854359627, + 0.015345378778874874, + 0.009228411130607128, + 0.038926154375076294, + -0.017675651237368584, + 0.013405690900981426, + 0.017410848289728165, + -0.010492849163711071, + -0.018337661400437355, + -0.02610965259373188, + 0.035112980753183365, + -0.012591419741511345, + -0.018033137544989586, + 0.003740353276953101, + -0.01546454057097435, + -0.0011974095832556486, + 0.005425167270004749, + -0.03357711806893349, + 0.001242922735400498, + 0.012677480466663837, + -0.016563475131988525, + 0.03169701248407364, + 0.031988296657800674, + 0.032650306820869446, + 0.004885629750788212, + -0.012346476316452026, + 0.004723437130451202, + 0.004279891029000282, + 0.007474086247384548, + 0.011082038283348083, + 0.02252156101167202, + -0.008745144121348858, + -0.002578526735305786, + -0.029393218457698822, + -0.0022409018129110336, + 0.02761903405189514, + 0.003664222313091159, + 0.003260396420955658, + 0.026705460622906685, + -0.004988241009414196, + -0.004746607504785061, + -0.011995610781013966, + -0.029631542041897774, + 0.01376979611814022, + 0.01673559844493866, + -0.015093814581632614, + 0.02340865321457386, + 0.016404593363404274, + 0.017146043479442596, + -0.03196181356906891, + -0.029552100226283073, + -0.013690355233848095, + -6.1384566834021825e-6, + -0.025580044835805893, + 0.028492886573076248, + -0.0073350644670426846, + -0.028042718768119812, + -0.03410672768950462, + -0.009354193694889545, + -0.01854950375854969, + -0.02236267924308777, + 0.034186165779829025, + -0.024891555309295654, + -0.01993972435593605, + -0.028201602399349213, + -0.022534800693392754, + -0.007705789990723133, + 0.015742585062980652, + 0.0050047910772264, + -0.007004059851169586, + 0.0002983179874718189, + 0.018880508840084076, + -0.022455360740423203, + 0.006626714486628771, + 0.015822025015950203, + 0.031140923500061035, + -0.015716103836894035, + -0.02822808176279068, + -0.05153081566095352, + -0.006328810006380081, + -0.025434402748942375, + -0.03286214917898178, + 0.011240920051932335, + -0.009539555758237839, + 0.05166321620345116, + -0.0023385484237223864, + 0.014484765939414501, + -0.004418912809342146, + -0.018337661400437355, + -0.006732636131346226, + 0.003584780963137746, + -0.02711590565741062, + -0.0007240728009492159, + -0.010552430525422096, + 0.013485131785273552, + 0.021647708490490913, + 0.02691730298101902, + 0.04520200565457344, + 0.005074302200227976, + -0.03937632218003273, + 0.047373395413160324, + -0.012558318674564362, + 0.014272923581302166, + -0.0028449855744838715, + 0.008758384734392166, + -0.027274789288640022, + 0.014445045962929726, + 0.02679814212024212, + 0.016987161710858345, + 0.014934932813048363, + -0.027195347473025322, + -0.0244546290487051, + -0.020813576877117157, + -0.005835613235831261, + 0.0004145833954680711, + -0.015835264697670937, + 0.01529241818934679, + -0.012472257949411869, + -0.06318218261003494, + -0.03008170798420906, + -0.003348112804815173, + -0.009453495033085346, + 0.013140887022018433, + -0.014219962991774082, + -0.0005440890090540051, + 0.02433546632528305, + -0.012697340920567513, + 0.026599539443850517, + 0.017066603526473045, + -0.026281774044036865, + 0.03272974491119385, + 0.025474123656749725, + 0.016126548871397972, + 0.004071358125656843, + -0.0020571942441165447, + -0.00863922294229269, + 0.023421892896294594, + -0.042209722101688385, + -0.00705702044069767, + 0.008553162217140198, + 0.04244804382324219, + -0.0019347225315868855, + -0.016166269779205322, + 0.037496212869882584, + -0.005557569209486246, + 0.01270396076142788, + -0.020919498056173325, + -0.021766869351267815, + 0.015477780252695084, + -0.0050577521324157715, + -0.007930872961878777, + -0.01796693541109562, + 0.011353462003171444, + 0.013849237002432346, + 0.0015002788277342916, + -0.011022456921637058, + 0.029896344989538193, + 0.01816553808748722, + 0.007103361189365387, + 0.0047896383330225945, + -0.0007803436019457877, + -0.03243846073746681, + -0.012247174046933651, + -0.00041603154386393726, + 0.01580878533422947, + -0.014418565668165684, + 0.009301232174038887, + 0.01156530436128378, + 0.0017179144779220223, + 0.016325153410434723, + -0.014961413107812405, + -0.011505723930895329, + 0.008857686072587967, + 0.011955889873206615, + -0.008374419063329697, + 0.003192540490999818, + 0.009797739796340466, + 0.030849639326334, + 0.01754325069487095, + 0.028625287115573883, + 0.024891555309295654, + -0.015093814581632614, + -0.019542519003152847, + 0.0010459749028086662, + -0.003273636568337679, + 0.0035649207420647144, + 0.02915489487349987, + -0.020151566714048386, + 0.01191616989672184, + -0.025288760662078857, + 0.003260396420955658, + 0.018523024395108223, + -0.000778688583523035, + 0.001175066689029336, + 0.03278270736336708, + 0.016219230368733406, + 0.004653926473110914, + 0.00039803318213671446, + -0.01411404088139534, + -0.003588091116398573, + -0.025037197396159172, + 0.0024312296882271767, + 0.0001632266939850524, + -0.011174718849360943, + -0.016603196039795876, + -0.012353096157312393, + 0.002264072187244892, + 0.010797373950481415, + 0.029605060815811157, + 0.009268132038414478, + 0.027751434594392776, + 0.02024424821138382, + -0.00792425312101841, + 0.02691730298101902, + -0.006335430312901735, + -0.01812581904232502, + 0.00902318861335516, + 0.024123623967170715, + -0.00842737965285778, + -0.02891657128930092, + -0.016417833045125008, + -0.033100470900535583, + -0.008725284598767757, + -0.011909550055861473, + -0.008943747729063034, + 0.008109615184366703, + -0.012180973775684834, + -0.005266285035759211, + 0.007288723718374968, + 0.016219230368733406, + -0.04096514359116554, + 0.022031674161553383, + -0.010022822767496109, + 0.02722182869911194, + 0.0044950442388653755, + -0.009916901588439941, + -0.019674919545650482, + 0.02159474790096283, + 0.008063274435698986, + 0.031485170125961304, + -0.011750667355954647, + -0.027777915820479393, + -0.0018122508190572262, + -0.01665615662932396, + -0.0242560263723135, + -0.015583702363073826, + -0.011293880641460419, + 0.026520097628235817, + -0.012214073911309242, + 0.009307852946221828, + -0.01939687691628933, + -0.0002687344385776669, + -0.008314838632941246, + 0.009393913671374321, + 0.00011243816697970033, + -0.025619765743613243, + 0.01921151392161846, + -0.01974112167954445, + 0.021766869351267815, + -0.011869829148054123, + 0.024004461243748665, + -0.0073946453630924225, + -0.016603196039795876, + 0.02090625837445259, + -0.02738071046769619, + -0.007500567007809877, + -0.010439888574182987, + 0.015861745923757553, + -0.031114444136619568, + 0.02973746322095394, + 0.040859222412109375, + 0.027248308062553406, + 0.0035483704414218664, + 0.00017077774100471288, + 0.0003247983695473522, + 0.012478877790272236, + 0.00481942854821682, + 0.017026882618665695, + -0.01263113971799612, + 0.01917179301381111, + -0.01164474617689848, + -0.00381317432038486, + -0.006064006593078375, + -0.023117369040846825, + -0.006898138206452131, + 0.002199526410549879, + -0.02340865321457386, + -0.0023650287184864283, + -0.015610182657837868, + 0.016550235450267792, + 0.008387659676373005, + 0.009963242337107658, + -0.025858087465167046, + 0.007805091328918934, + -0.013418931514024734, + -0.018523024395108223, + 0.0087517648935318, + 0.006196408066898584, + -0.014643648639321327, + 0.03707252815365791, + -0.006871657911688089, + -0.002060504397377372, + -0.00779847102239728, + -0.0043758824467659, + 0.0005627080099657178, + -0.003442449029535055, + 0.012253794819116592, + 0.01584850624203682, + 0.011346841230988503, + -0.02448110841214657, + 0.004961760714650154, + 0.005663490854203701, + -0.0068120770156383514, + -0.01673559844493866, + 0.020641453564167023, + 0.005819062702357769, + -0.010532570071518421, + -0.022243516519665718, + 0.0006276677013374865, + -0.007871292531490326, + 0.034450970590114594, + -0.01056567020714283, + -0.003975366707891226, + 0.003816484473645687, + -0.03651643916964531, + 0.01661643758416176, + 0.005742931738495827, + -0.0026794832665473223, + -0.010420028120279312, + -0.01050608977675438, + 0.011108518578112125, + -0.008242017589509487, + -0.004465253558009863, + -0.0023186879698187113, + 0.010307487100362778, + -0.0157028641551733, + 0.004312991630285978, + -0.02298496663570404, + 0.01913207210600376, + -0.013928678818047047, + 0.0307701975107193, + 0.0030717237386852503, + 0.0027274787425994873, + -0.010373687371611595, + 0.026811381801962852, + -0.026427416130900383, + 0.005299385637044907, + -0.015610182657837868, + 0.0060441461391747, + -0.014696609228849411, + -0.0034457591827958822, + 0.0050709922797977924, + -0.00025094294687733054, + 0.001263610552996397, + 0.032835666090250015, + -0.027354229241609573, + -0.003889305517077446, + 0.0073615447618067265, + -0.013385830447077751, + -0.019582238048315048, + -0.02356753498315811, + 0.010863575153052807, + 0.028201602399349213, + -0.004802878480404615, + -0.001936377608217299, + -0.015901466831564903, + 0.0003941024770028889, + 0.018946709111332893, + 0.005633700173348188, + -0.0044288430362939835, + -0.011174718849360943, + 0.0031296496745198965, + -0.0016699187690392137, + -0.03151164948940277, + 0.051583774387836456, + -0.0143656050786376, + 0.019304195418953896, + 0.03220013901591301, + 0.0018950019730255008, + 0.017265206202864647, + 0.012909184210002422, + -0.0286517683416605, + 0.010201564989984035, + -0.010962876491248608, + 0.003068413818255067, + 0.019290953874588013, + 0.03635755926370621, + -0.01572934351861477, + 0.013504992239177227, + -0.032491423189640045, + -0.02669222094118595, + -0.01858922466635704, + 0.00102942471858114, + 0.009069529362022877, + -0.01607358828186989, + -0.01060539111495018, + 0.004630756098777056, + 0.03694012761116028, + -0.014842251315712929, + 0.00754028744995594, + -0.021806590259075165, + 0.01592794619500637, + -0.007328444626182318, + 0.012498738244175911, + 0.006838557310402393, + -0.013478511944413185, + 0.04064738005399704, + -0.012333235703408718, + 0.029790423810482025, + 0.012856222689151764, + 0.017953695729374886, + -0.010651731863617897, + 0.004928660113364458, + 0.004746607504785061, + 0.030876120552420616, + 0.0031395796686410904, + 0.006924618501216173, + -0.006702845450490713, + 0.009691817685961723, + 0.018059616908431053, + -0.006851797457784414, + -0.02379261888563633, + 0.003425898728892207, + -0.00016467484238091856, + 0.011525584384799004, + -0.013650634326040745, + 0.0009979791939258575, + 0.006318880245089531, + 0.01311440672725439, + 0.004044877830892801, + -0.03328583389520645, + -0.0353248231112957, + -0.0012007196201011539, + 0.025699205696582794, + 0.020111845806241035, + -0.004564554896205664, + 0.025791887193918228, + -0.031564608216285706, + -0.002350133378058672, + -0.01935715600848198, + 0.009115870110690594, + 0.004749917890876532, + -0.029869865626096725, + -0.01705336384475231, + -0.027274789288640022, + -0.0021862860303372145, + 0.015557222068309784, + 0.018615705892443657, + -0.014352364465594292, + 0.01647079549729824, + -0.009930141270160675, + -0.01700040139257908, + 0.003869445063173771, + -0.01212801318615675, + -0.014431805349886417, + -0.01905263215303421, + -0.020985698327422142, + 0.0023716487921774387, + 0.014723089523613453, + 0.013571193441748619, + -0.021528545767068863, + -0.02240239828824997, + 0.009089389815926552, + 0.05857459455728531, + 0.02163446880877018, + 0.027433671057224274, + 0.02187279239296913, + -0.005120642948895693, + 9.454321843804792e-5, + 0.011777147650718689, + -0.008381039835512638, + -0.004640686325728893, + 0.014246443286538124, + 0.018840787932276726, + 0.008553162217140198, + 0.009870560839772224, + -0.022455360740423203, + -0.03153812885284424, + -0.014789290726184845, + 0.014603927731513977, + 0.030134668573737144, + 0.029366739094257355, + -0.02070765569806099, + 0.01070469245314598, + 0.022614242509007454, + -0.00569659098982811, + -0.008361179381608963, + -0.016126548871397972, + -0.005931604653596878, + 0.0009971517138183117, + -0.017437327653169632, + 0.002350133378058672, + 0.00857964251190424, + 0.010228045284748077, + 0.0015201391652226448, + 0.023223290219902992, + -0.0120882922783494, + -0.00381317432038486, + 0.018271461129188538, + 0.00925489142537117, + -0.027592552825808525, + -0.015954427421092987, + -0.007249003276228905, + 0.008434000425040722, + -0.015504260547459126, + 0.006262609269469976, + 0.017331406474113464, + -0.018139058724045753, + -0.03159109130501747, + 0.005627080332487822, + -0.0017990106716752052, + 0.019952964037656784, + -0.00027432016213424504, + 0.002808575052767992, + -0.037734538316726685, + -0.009632237255573273, + -0.025010716170072556, + -0.004865769296884537, + -0.0175035297870636, + 0.016907721757888794, + 0.003205780638381839, + -0.0037502835039049387, + -0.030399473384022713, + 0.038820233196020126, + 0.006428111344575882, + 0.025050437077879906, + -0.0023435133043676615, + 0.0024875004310160875, + 0.0026827931869775057, + 0.024706192314624786, + 0.016868000850081444, + 0.015491020865738392, + -0.04141531139612198, + -0.007282103877514601, + 0.013624154031276703, + 0.015054094605147839, + 0.01033396739512682, + -0.027327749878168106, + -0.01766241155564785, + -0.004607585724443197, + 0.007745510432869196, + 0.005501298233866692, + 0.003601331263780594, + -0.00012123047781642526, + 0.001650886028073728, + 0.004458633717149496, + 0.010519329458475113, + 0.00041603154386393726, + 0.003485479624941945, + 0.011797008104622364, + -0.005852163303643465, + -0.005117333028465509, + 0.043560221791267395, + -0.02891657128930092, + 0.002591766882687807, + -0.026281774044036865, + -0.008990088477730751, + -0.03447744995355606, + 0.0026016971096396446, + 0.017251966521143913, + -0.009215171448886395, + -0.028334002941846848, + 0.016536995768547058, + -0.026599539443850517, + 0.03201477602124214, + -0.013028346002101898, + 0.026215573772788048, + 0.01800665631890297, + 5.171948578208685e-5, + 0.0034225888084620237, + -0.004627445712685585, + 0.0027721645310521126, + -0.023779379203915596, + 0.014074320904910564, + 0.002891326090320945, + -0.00805665459483862, + -0.026427416130900383, + 0.04628770053386688, + -0.007136461790651083, + 0.017212245613336563, + -0.02405742183327675, + 0.007652828935533762, + -0.01153220422565937, + 0.011095277965068817, + 0.04149474948644638, + -0.024957755580544472, + -0.016020627692341805, + -0.003561610821634531, + 0.014511247165501118, + 0.01253183837980032, + -0.00016477829194627702, + -0.0012520253658294678, + 0.03235902264714241, + -0.021607987582683563, + -0.024772392585873604, + -0.0019943034276366234, + 0.025633005425333977, + -0.005885263904929161, + 0.03860839083790779, + 0.008334699086844921, + 0.01073779258877039, + 0.01786101423203945, + -0.006302329711616039, + -0.0355631448328495, + 0.009109249338507652, + -0.009327712468802929, + 0.007533667143434286, + 0.0350865013897419, + -0.027910318225622177, + -0.009705058299005032, + 0.009281372651457787, + 0.008520061150193214, + 0.013835997320711613, + -0.017450569197535515, + 0.003439138876274228, + -0.0012578179594129324, + 0.025090157985687256, + 0.006398321129381657, + -0.007752130273729563, + -0.02356753498315811, + -0.024732671678066254, + 0.0023848889395594597, + 0.007824951782822609, + 0.007791851181536913, + 0.015861745923757553, + 0.022548040375113487, + 0.00792425312101841, + 0.0035252002999186516, + -0.028863610699772835, + 0.01608682982623577, + -0.026943784207105637, + -0.004759847652167082, + -0.021184301003813744, + 0.012498738244175911, + -0.0016608161386102438, + -0.005107402801513672, + -0.012929043732583523, + -0.00503127183765173, + 0.0027854046784341335, + -0.00010188738815486431, + -0.009916901588439941, + -0.012432537041604519, + 0.0011866518761962652, + 0.0013769796350970864, + 0.006107036955654621, + 0.010042683221399784, + -0.01604710891842842, + -0.014683369547128677, + 0.007871292531490326, + -0.001957892905920744, + 0.018099337816238403, + -0.008612742647528648, + 0.015755824744701385, + 0.008381039835512638, + 0.014061080291867256, + 0.003955506253987551, + -0.0012528528459370136, + -0.00022363505559042096, + 0.0003065931086894125, + 0.002060504397377372, + -0.0025603214744478464, + 0.0019049320835620165, + -0.014762810431420803, + 0.056826889514923096, + -0.0023733037523925304, + 0.008559782058000565, + -0.011141618713736534, + 0.01160502526909113, + -0.011962510645389557, + 0.010843714699149132, + 0.028678247705101967, + 0.01512029580771923, + -0.002753959270194173, + 0.009168830700218678, + -0.028413444757461548, + 0.0034821697045117617, + 0.0021912511438131332, + -0.02391177974641323, + 0.004230240359902382, + 0.0132269486784935, + -0.013213708065450191, + 0.007970593869686127, + 0.002510670805349946, + 0.017026882618665695, + 0.010717933066189289, + 0.001999268541112542, + 0.008175816386938095, + -0.007950733415782452, + 0.007242382969707251, + -0.001997613348066807, + 0.017953695729374886, + -0.013134267181158066, + 0.015543981455266476, + 7.876877498347312e-5, + 0.005190154071897268, + -0.047532275319099426, + -0.015332138165831566, + 0.005944844800978899, + 0.0037635236512869596, + 0.0032239858992397785, + 0.008010313846170902, + -0.015822025015950203, + 0.02171390876173973, + -0.01592794619500637, + -0.020773855969309807, + 0.019608719274401665, + 0.009863940067589283, + -0.008149336092174053, + -0.013253428973257542, + -0.003518580226227641, + -0.004786328412592411, + -0.013379210606217384, + 0.0016128204297274351, + -0.023382173851132393, + -0.007838191464543343, + 0.0178212933242321, + -0.005286145489662886, + 0.008844446390867233, + -0.0017212245147675276, + -0.004587725270539522, + -0.010201564989984035, + -0.0015987528022378683, + 0.012651000171899796, + -0.010214805603027344, + 0.007831571623682976, + -0.007911012507975101, + -0.0025553563609719276, + -0.010770893655717373, + -0.008242017589509487, + -0.0014208377106115222, + -0.020085366442799568, + 0.015358618460595608, + 0.003303427016362548, + 0.003348112804815173, + 0.03259734436869621, + 0.006567133590579033, + -0.023474853485822678, + -0.0007381404866464436, + -0.012564939446747303, + 0.020098606124520302, + 0.008837825618684292, + -0.0003376248059794307, + 0.0007286241161637008, + -0.0041673495434224606, + -0.0035252002999186516, + -0.010188325308263302, + -0.03421264886856079, + 0.00726886373013258, + -0.0061235870234668255, + 0.0011891344329342246, + -0.017688892781734467, + 0.0050709922797977924, + -0.016669398173689842, + -0.00902318861335516, + 0.0024295744951814413, + -0.012723821215331554, + 0.009440254420042038, + 0.010234666056931019, + 0.010022822767496109, + -0.016444314271211624, + 0.00850682146847248, + -0.011313741095364094, + -0.004630756098777056, + -0.009969862177968025, + 0.005987875163555145, + -0.004879009444266558, + 0.004346091765910387, + -0.0030948941130191088, + -0.019079111516475677, + 0.018906990066170692, + 0.014881972223520279, + -0.024653231725096703, + 0.009519695304334164, + 0.0005838095676153898, + -0.003617881564423442, + 0.004726747516542673, + 0.0030667586252093315, + -0.006507552694529295, + -0.002469295170158148, + 0.008798105642199516, + 0.004981621168553829, + -0.024534069001674652, + -0.028439925983548164, + -0.012604659423232079, + -0.00490880012512207, + 0.011988990940153599, + -0.010962876491248608, + -0.00481942854821682, + -0.013968398794531822, + 0.007864671759307384, + -0.008189056999981403, + -0.01800665631890297, + 0.0014688334194943309, + 0.0018337661167606711, + 0.011657985858619213, + -0.0033861782867461443, + 0.013743315823376179, + -0.003038623370230198, + -0.003238881239667535, + 0.01136008184403181, + 0.012419297359883785, + 0.00923503190279007, + -0.03415968641638756, + 0.012909184210002422, + 0.029048973694443703, + -0.006911378353834152, + 0.018178779631853104, + 0.011558684520423412, + 0.01643107458949089, + -0.0024146793875843287, + -0.0068915183655917645, + -0.00026790692936629057, + 0.022839324548840523, + 0.03302102908492088, + 0.0020191287621855736, + 0.010168464854359627, + 0.0040680477395653725, + -0.008175816386938095, + 0.012763542123138905, + -0.0242957454174757, + -0.004177279304713011, + 0.00032790153636597097, + -0.011611645109951496, + -0.004266650881618261, + 0.0003111444239038974, + -0.014352364465594292, + 0.0004745780024677515, + -0.011558684520423412, + 0.009129109792411327, + 0.0142861632630229, + 0.02201843447983265, + 0.013213708065450191, + 0.007891152054071426, + -0.015610182657837868, + 0.009771259501576424, + 0.0032322609331458807, + -0.028757689520716667, + 0.0244546290487051, + -0.0022193866316229105, + -0.009665337391197681, + -0.002204491291195154, + -0.004802878480404615, + -0.0007625521393492818, + -0.007169561926275492, + -0.005084232427179813, + 0.013193847611546516, + -0.015941187739372253, + -0.01070469245314598, + -0.007705789990723133, + -0.012452397495508194, + -0.006454592105001211, + 0.0178212933242321, + -0.008877546526491642, + -0.004882319364696741, + 0.02028396911919117, + 0.00867894385010004, + -0.0011370012070983648, + 0.0029293918050825596, + -0.011710946448147297, + -0.003063448704779148, + 0.008937126956880093, + -0.018642185255885124, + 0.0029310467652976513, + -0.01143290288746357, + 0.005213324446231127, + -5.127987242303789e-5, + -0.01054581068456173, + -0.009618996642529964, + 0.0011287260567769408, + -0.001944652758538723, + -0.025791887193918228, + 0.00912248995155096, + 0.005491368006914854, + -0.05206042155623436, + -0.0014746260130777955, + 0.02324977144598961, + -0.0003076275170315057, + -0.0055277785286307335, + 0.018178779631853104, + 0.023302732035517693, + 0.020681174471974373, + 0.0354837067425251, + 0.01398163940757513, + -0.0029806974343955517, + 0.004948520567268133, + 0.0035947111900895834, + -0.004779708106070757, + 0.004567865282297134, + -0.004816118627786636, + -0.005931604653596878, + -0.0014440080849453807, + 0.010274386033415794, + -0.02248184010386467, + 0.022892287001013756, + -0.00041934160981327295, + -0.01174404751509428, + 0.004607585724443197, + 0.006904758512973785, + 0.01739760860800743, + 0.01835090108215809, + -0.008917267434298992, + 0.019873522222042084, + -0.01727844588458538, + 0.011598405428230762, + -0.014815771020948887, + -0.010307487100362778, + 0.019410116598010063, + 0.009327712468802929, + 0.007209282834082842, + 0.004792948253452778, + -0.006467832252383232, + -0.005706521216779947, + -2.3868542484706268e-5, + -0.00402832729741931, + -0.005534398835152388, + -0.005229874514043331, + 0.021965472027659416, + 0.02576540783047676, + 0.036463480442762375, + -0.0025255659129470587, + -0.0008184091420844197, + 0.024534069001674652, + -0.03513946011662483, + -0.017728611826896667, + -0.008288358338177204, + 0.0025388060603290796, + 0.014312643557786942, + 0.0003860342549160123, + 0.027751434594392776, + -0.014008119702339172, + 0.009135730564594269, + 0.0037900039460510015, + 0.00038706863415427506, + 0.0077124098315835, + 0.022495079785585403, + 0.0009011603542603552, + 0.006209648679941893, + -0.0025719066616147757, + -0.0015590322436764836, + 0.003584780963137746, + -0.01778157241642475, + -0.004799568559974432, + 0.015239456668496132, + -0.01711956411600113, + -0.0023733037523925304, + -0.006116967182606459, + -0.02187279239296913, + 0.0014920037938281894, + -0.01291580405086279, + -0.008301598019897938, + -0.00022404881019610912, + -0.005544329062104225, + -0.009930141270160675, + -0.007480706553906202, + -0.01204857137054205, + -0.004200449679046869, + 0.0032951519824564457, + -0.007858051918447018, + 0.004620825871825218, + -0.0004298923595342785, + 0.005008101463317871, + 0.011578544974327087, + 0.007897772826254368, + 0.011889689601957798, + -0.006447971798479557, + 0.00363443186506629, + -0.0067855967208743095, + -0.0045082843862473965, + -0.004518214147537947, + 0.002038988983258605, + 0.003965436480939388, + -0.003341492498293519, + 0.012578179128468037, + 0.011353462003171444, + 0.0024179895408451557, + 3.7722900287917582e-6, + -0.004365952219814062, + 0.006596923805773258, + -0.012763542123138905, + -0.008301598019897938, + 0.019290953874588013, + 0.0059216744266450405, + -0.00635198038071394, + -0.008248637430369854, + 0.02187279239296913, + 0.009612376801669598, + 0.019449837505817413, + -0.004544694907963276, + 0.002336893230676651, + 0.0197014007717371, + 0.030743718147277832, + 0.00933433324098587, + -0.009102629497647285, + -0.0009566036169417202, + -0.009367433376610279, + -0.006712775677442551, + -0.01778157241642475, + 0.00028880161698907614, + 0.017212245613336563, + -0.005464887712150812, + -0.008996708318591118, + -0.03254438191652298, + -0.0012363026617094874, + -0.01091653574258089, + 0.0008755074813961983, + -0.01345865149050951, + 0.01201547123491764, + 0.00020491260511334985, + 0.02941969968378544, + -0.001997613348066807, + 0.0003924474585801363, + 0.013021725229918957, + 0.01966167986392975, + 0.011638125404715538, + 0.007162942085415125, + 0.0015896501718088984, + -0.011406422592699528, + -0.0059680151753127575, + -0.01064511202275753, + -0.022044913843274117, + 0.014723089523613453, + -0.002464330056682229, + -0.0008506821468472481, + -0.0047300574369728565, + 0.005971325095742941, + -0.01284298300743103, + -0.009427014738321304, + -0.0032107457518577576, + -0.0036576020065695047, + 0.01305482629686594, + 0.03312695026397705, + -0.025805126875638962, + 0.009791119024157524, + 0.003192540490999818, + -0.0037072529084980488, + -0.01345865149050951, + 0.0003707252908498049, + -0.002881396096199751, + 0.012207454070448875, + 0.020389890298247337, + 0.008434000425040722, + -0.006226198747754097, + -0.0022326267790049314, + 0.0040879081934690475, + -0.019582238048315048, + -0.01963520050048828, + -0.0010947980917990208, + 0.03108796291053295, + 0.01245901733636856, + 0.0064380415715277195, + 0.024229545146226883, + 0.013160747475922108, + -0.018827548250555992, + 0.0031561299692839384, + 0.008149336092174053, + 0.020270729437470436, + 0.007421125657856464, + -0.014061080291867256, + -0.0131475068628788, + -0.000527952506672591, + 0.02475915290415287, + 0.005709831137210131, + -0.0004898869665339589, + 0.0026182474102824926, + -0.020694414153695107, + -0.0030568286310881376, + 0.016669398173689842, + -0.016497274860739708, + 0.001898312009871006, + 0.009453495033085346, + 0.023051168769598007, + 0.03720492869615555, + -0.002226006705313921, + 0.008182436227798462, + 0.013273289427161217, + -0.018695145845413208, + 0.01619275100529194, + -0.006917998660355806, + -0.007725649978965521, + 0.024692952632904053, + 0.008877546526491642, + 0.003048553364351392, + -0.003336527617648244, + 0.012664240784943104, + 0.010016202926635742, + -0.0011303811334073544, + 0.02105190046131611, + -0.002863190835341811, + -0.0142861632630229, + 0.024150103330612183, + -0.005537708755582571, + -0.008784865029156208, + 0.026983505114912987, + 0.004303061403334141, + -0.006676365155726671, + 0.01090991497039795, + -0.009287992492318153, + -0.028334002941846848, + -0.0014373880112543702, + 0.03204125538468361, + -0.024388426914811134, + -0.012233934365212917, + -0.008347938768565655, + -0.010552430525422096, + 0.012154493480920792, + 0.01870838738977909, + 0.03437152877449989, + 0.00218794122338295, + 0.0022756573744118214, + 0.008738524280488491, + 0.005944844800978899, + -0.004882319364696741, + -0.0087517648935318, + 0.0010972806485369802, + 0.017265206202864647, + -0.007864671759307384, + -0.007546907290816307, + -0.020456090569496155, + -0.03278270736336708, + 0.010281006805598736, + 0.01122105959802866, + 0.0038197943940758705, + -0.0036112614907324314, + -0.0003792072820942849, + -0.004640686325728893, + 0.0011593439849093556, + -0.011657985858619213, + -0.004306371323764324, + 0.021157821640372276, + 0.009168830700218678, + 0.02695702388882637, + 0.00013829790987074375, + 0.0043229213915765285, + -0.006322190165519714, + -0.011168099008500576, + 0.01739760860800743, + -0.0010145294945687056, + 0.0036410519387573004, + -0.009996342472732067, + -0.01707984320819378, + 0.0020737445447593927, + -0.008374419063329697, + -0.00516698369756341, + -0.02321005053818226, + -0.00014171139628160745, + -0.010943016037344933, + 0.012022091075778008, + 0.00908276904374361, + 0.006004425697028637, + -0.025116637349128723, + 0.01008240319788456, + 0.015239456668496132, + 0.008321458473801613, + 0.010214805603027344, + 0.0033514227252453566, + -0.02248184010386467, + -0.0034920996986329556, + 0.00421368982642889, + -0.007990453392267227, + 0.0010186670115217566, + 0.009513075463473797, + 0.002125050174072385, + 0.0031544750090688467, + 0.005276215262711048, + -0.0014315954176709056, + -0.010856954380869865, + 0.0021382905542850494, + 0.005001481156796217, + 0.008347938768565655, + -0.017649171873927116, + 0.008990088477730751, + 0.00521663436666131, + -0.002047264249995351, + 0.012333235703408718, + -0.0009797739330679178, + 0.006087176501750946, + 0.019952964037656784, + -0.00832807831466198, + 0.005067682359367609, + 0.006755806040018797, + -0.00754028744995594, + 0.019449837505817413, + -0.003740353276953101, + 0.012392816133797169, + -0.013319630175828934, + -0.011181339621543884, + 0.004488423932343721, + 0.0021680807694792747, + 0.019727880135178566, + 0.0034656194038689137, + -0.0004716817056760192, + -0.009135730564594269, + 0.013888957910239697, + -0.01897319033741951, + 0.01604710891842842, + -0.007162942085415125, + -0.004081288352608681, + -0.013266668654978275, + -0.0031015141867101192, + 0.01486873161047697, + 0.004667166620492935, + 0.03373600170016289, + 0.007103361189365387, + 0.011426283046603203, + -0.010075783357024193, + 0.014246443286538124, + -0.017304927110671997, + -0.010042683221399784, + -0.023938260972499847, + -0.02109162136912346, + -0.024745913222432137, + -0.008943747729063034, + 0.004746607504785061, + -0.0059084342792630196, + -0.0016963991802185774, + 0.043825022876262665, + 0.009632237255573273, + 0.0003932749677915126, + -0.020575253292918205, + 0.01222731452435255, + -0.017940456047654152, + -0.017384367063641548, + 0.01697392202913761, + 0.0022111115977168083, + -0.005186843685805798, + 0.007043780293315649, + 0.022203795611858368, + -0.02344837412238121, + 0.007308584172278643, + 0.018734866753220558, + 0.006825317163020372, + -0.0009425359312444925, + -0.003948886413127184, + -0.016404593363404274, + -0.015358618460595608, + -0.003442449029535055, + -0.004551314748823643, + 0.011869829148054123, + 0.010532570071518421, + -0.028545847162604332, + 0.006520792841911316, + 0.0021432554349303246, + -0.004958450794219971, + 0.010214805603027344, + -0.011009217239916325, + 0.004544694907963276, + 0.011406422592699528, + -0.009076149202883244, + 0.007652828935533762, + 0.009347572922706604, + 0.008573021739721298, + 0.007282103877514601, + -0.0027092734817415476, + 0.0014704884961247444, + -0.004571175202727318, + 0.006411561276763678, + -0.015557222068309784, + 0.005478127859532833, + -0.011982371099293232, + -0.01766241155564785, + -0.0017857704078778625, + 0.005196773912757635, + -0.02082681655883789, + -0.009228411130607128, + 0.008943747729063034, + -0.005994495470076799, + 0.006358600687235594, + -0.0020886396523565054, + -0.0002732857537921518, + 0.01843034289777279, + -0.009420393966138363, + -0.002889671130105853, + -0.015398339368402958, + -0.015054094605147839, + -0.010969496332108974, + -0.008791484870016575, + 0.002672862960025668, + -0.0025172908790409565, + -0.020456090569496155, + 0.03474225476384163, + -0.007474086247384548, + 0.01538509875535965, + 0.007209282834082842, + -0.02078709565103054, + 0.006716085597872734, + 0.014762810431420803, + 0.014193481765687466, + 0.013531472533941269, + -0.013677114620804787, + 0.012200834229588509, + -0.0087517648935318, + 0.009599137119948864, + -0.011373322457075119, + 0.016033869236707687, + 0.0041673495434224606, + 0.0015126914950087667, + -0.021886032074689865, + -0.01170432660728693, + -0.005825683008879423, + -0.022548040375113487, + 0.011995610781013966, + -0.008990088477730751, + 0.010380308143794537, + 0.016417833045125008, + -0.010135364718735218, + -0.014934932813048363, + -0.007202662527561188, + -0.015742585062980652, + -0.005881953984498978, + 0.011830108240246773, + -0.024587029591202736, + -0.019886763766407967, + 0.003349767765030265, + -0.00963885709643364, + -0.006600234191864729, + -0.01611330918967724, + 0.004478493705391884, + 0.005928294267505407, + 0.015504260547459126, + 0.025513842701911926, + -0.011115138418972492, + 0.019105592742562294, + -0.006540653295814991, + 0.013034965842962265, + -0.00017677720461506397, + 0.00915559008717537, + 0.007493946701288223, + 0.002975732320919633, + -0.028863610699772835, + 0.010274386033415794, + 0.0008705424261279404, + -1.2322168004175182e-5, + -0.0010492849396541715, + -0.009930141270160675, + 0.010049303062260151, + -0.020959218963980675, + 0.026308255270123482, + 0.0019264474976807833, + -0.013663874939084053, + -0.010598771274089813, + 0.020257487893104553, + 0.0008498546085320413, + -0.02105190046131611, + 0.00726886373013258, + 0.006656504701822996, + -0.027777915820479393, + -0.00830821879208088, + -1.7170868886751123e-5, + 0.01758296974003315, + -0.006911378353834152, + -0.002000923501327634, + -0.019158553332090378, + 0.01432588417083025, + -0.018695145845413208, + -0.02066793479025364, + -0.009168830700218678, + 0.0034325188025832176, + 0.02221703715622425, + -0.002638107631355524, + -0.03482169657945633, + -0.008076515048742294, + -0.022164076566696167, + -0.012452397495508194, + -0.010856954380869865, + -0.010036063380539417, + -0.007805091328918934, + 0.00015671004075556993, + -0.0015739274676889181, + -0.018840787932276726, + 0.02232295833528042, + 0.008182436227798462, + 0.001497796387411654, + -0.007010679692029953, + 0.010870194993913174, + 0.00825525727123022, + 0.0021515307016670704, + 0.01380951702594757, + -0.004660546313971281, + -0.023580776527523994, + -0.02548736333847046, + -0.014987893402576447, + -0.0010840403847396374, + 0.011399802751839161, + -0.007613108493387699, + 0.008268497884273529, + -0.0074277459643781185, + 0.003131304634734988, + -0.005322556011378765, + 0.0049551404081285, + -0.01504085399210453, + 0.01804637722671032, + -0.011115138418972492, + 0.016589956358075142, + 0.006679675076156855, + 0.01328652910888195, + -0.015623422339558601, + 0.013101167045533657, + -0.006087176501750946, + 0.003710562828928232, + 0.007639588788151741, + -0.006087176501750946, + 0.001630198210477829, + 0.0034159687347710133, + -0.029048973694443703, + -0.010135364718735218, + -0.006702845450490713, + 0.012180973775684834, + 0.00225579715333879, + -0.00745422625914216, + -0.01307468581944704, + 0.01257155928760767, + -0.01600738801062107, + 0.017251966521143913, + -0.0028102300129830837, + -0.007215902674943209, + 0.016497274860739708, + -0.013313009403645992, + -0.008354558609426022, + -0.016920961439609528, + -0.0005933259380981326, + 0.0023484784178435802, + 0.005951464641839266, + 0.01778157241642475, + -0.011869829148054123, + 0.012280275113880634, + -0.026586297899484634, + 0.026043450459837914, + -0.022746644914150238, + 0.001693916623480618, + 0.0050047910772264, + -0.004700266756117344, + 0.004749917890876532, + 0.010863575153052807, + 0.017675651237368584, + -0.022839324548840523, + -0.008109615184366703, + 0.002940976992249489, + -0.010724552907049656, + -0.010360447689890862, + 0.00552446860820055, + 0.0197014007717371, + 0.006024285685271025, + 0.02411038428544998, + -0.012214073911309242, + -0.0016666087321937084, + -0.014180242083966732, + -0.017530009150505066, + -0.032570865005254745, + -0.020840056240558624, + 0.012022091075778008, + 0.005001481156796217, + 0.01885402947664261, + 0.0038495848421007395, + -0.0002784577081911266, + 0.02244211919605732, + -0.01525269728153944, + 0.013743315823376179, + 0.015861745923757553, + 0.0029591822531074286, + 0.010612010955810547, + -0.01147262379527092, + -0.03897911682724953, + 0.009393913671374321, + 0.014206722378730774, + 0.004389122594147921, + 0.012783401645720005, + 0.0007588283042423427, + -0.0016566786216571927, + 0.024269266054034233, + -0.013584433123469353, + 0.0019926484674215317, + 0.004991550929844379, + 0.00456124497577548, + 0.00416403915733099, + 0.008619362488389015, + -0.0026331425178796053, + -0.01723872497677803, + -0.009897041134536266, + 0.0024411596823483706, + 0.006226198747754097, + 0.005570809356868267, + 0.0037502835039049387, + -0.003425898728892207, + -0.00028362966259010136, + -0.008745144121348858, + 0.0029426319524645805, + -0.0073814052157104015, + 0.0019562379457056522, + -0.010519329458475113, + -0.006570443511009216, + -0.005342415999621153, + 0.014299403876066208, + -0.0018139058956876397, + -0.0016608161386102438, + 0.013571193441748619, + 0.01153220422565937, + 0.04215675964951515, + 0.02306440845131874, + -0.009870560839772224, + -0.00714308163151145, + 0.009360813535749912, + 0.004653926473110914, + 0.018112577497959137, + 0.026665739715099335, + -0.03455689176917076, + 0.02117106132209301, + -0.011446143500506878, + -0.007249003276228905, + 0.011366701684892178, + -0.012372956611216068, + 0.013637394644320011, + -0.0314057283103466, + 0.004885629750788212, + 0.013213708065450191, + 0.013041585683822632, + -0.0027589243836700916, + 0.015279177576303482, + -0.0022375918924808502, + 0.008354558609426022, + -0.0003376248059794307, + 0.019489558413624763, + 0.007639588788151741, + 0.014378844760358334, + 0.006689605303108692, + 0.0013910472625866532, + 0.019224753603339195, + 0.0022193866316229105, + 0.024587029591202736, + -0.026347976177930832, + 0.008884166367352009, + 0.00906290952116251, + 0.006388390902429819, + -0.0199000034481287, + -0.0032537763472646475, + 0.0012859533308073878, + -0.01164474617689848, + 0.018377382308244705, + 0.00842737965285778, + -0.001974443206563592, + 0.027168866246938705, + -0.0026629329659044743, + -0.01432588417083025, + 0.00846710056066513, + -0.0197808425873518, + -0.0065505835227668285, + 0.001110520795919001, + 0.0029525619465857744, + -0.003468929324299097, + 4.2384119296912104e-5, + 0.024269266054034233, + -0.007692549377679825, + -0.0051040928810834885, + 0.02213759534060955, + 0.027023224160075188, + 0.005749552045017481, + 0.02491803467273712, + 0.0018801067490130663, + -0.025328481569886208, + -0.006623404566198587, + 0.014617168344557285, + -0.008970228023827076, + -0.006964339409023523, + -0.0032455013133585453, + 0.01214787270873785, + 0.01854950375854969, + -0.0022193866316229105, + -0.011101897805929184, + -0.028837131336331367, + -0.027049705386161804, + -0.039005596190690994, + -0.008963607251644135, + 0.0011866518761962652, + 0.018112577497959137, + 0.005613840185105801, + -0.005448337644338608, + 0.005991185549646616, + -0.009903660975396633, + 0.0055277785286307335, + 0.016033869236707687, + 0.007652828935533762, + -0.013220327906310558, + -0.007824951782822609, + -0.006299019791185856, + -0.0017758402973413467, + 0.008884166367352009, + 0.007421125657856464, + -0.00867894385010004, + -0.007725649978965521, + -0.0032802566420286894, + -0.007262243423610926, + 0.01280326209962368, + 0.0005767756956629455, + -0.0021929063368588686, + 0.017331406474113464, + 0.007103361189365387, + -0.0022740024141967297, + 0.006957719102501869, + -0.011730806902050972, + -0.02772495523095131, + 0.0022458669263869524, + -0.01723872497677803, + 0.01939687691628933, + -0.007070260588079691, + 0.04231564328074455, + -0.00963885709643364, + 0.014762810431420803, + -0.0005453302874229848, + -0.006937858648598194, + 0.024269266054034233, + -0.013531472533941269, + 0.005630390252918005, + 0.005262975115329027, + 0.012948904186487198, + -0.011187959462404251, + -0.008884166367352009, + 0.013279909268021584, + -0.012061811983585358, + 0.011042317375540733, + -0.024613510817289352, + -0.011326981708407402, + -0.027566073462367058, + -0.012776781804859638, + 0.007275483570992947, + -0.00538875674828887, + -0.027566073462367058, + 0.009374053217470646, + -0.012551698833703995, + 0.005683350842446089, + 0.011909550055861473, + 0.02048257179558277, + -0.011419662274420261, + -0.007672689389437437, + 0.0008031001780182123, + -0.009003328159451485, + -0.011783767491579056, + -0.013637394644320011, + 0.039349839091300964, + 0.03024059161543846, + 0.024428147822618484, + -0.02078709565103054, + 0.0038661351427435875, + -0.023699937388300896, + 0.02048257179558277, + -0.014021359384059906, + -0.014577447436749935, + -0.00046919917804189026, + -0.007162942085415125, + 0.004859148990362883, + -0.0013413965934887528, + 0.00247757020406425, + -0.004468563478440046, + -0.008725284598767757, + 0.001787425484508276, + -0.0016657812520861626, + -0.021422624588012695, + 0.003412658581510186, + 0.00028673282940872014, + -0.010400168597698212, + -0.019992684945464134, + 0.020932737737894058, + 0.01993972435593605, + -0.00836779922246933, + 0.0001034389715641737, + 0.015742585062980652, + 0.005368896294385195, + -0.011969130486249924, + -0.0040680477395653725, + 0.015570461750030518, + -0.0039058555848896503, + 0.004048187751322985, + -0.0047896383330225945, + -0.0030237280298024416, + 0.020800337195396423, + 0.03167052939534187, + 0.009830839931964874, + -0.0287312101572752, + -0.021104861050844193, + -0.0174240879714489, + 0.03116740472614765, + 0.03034651279449463, + 0.042130280286073685, + 0.012869463302195072, + -0.00850682146847248, + 0.02105190046131611, + 0.0005817408091388643, + -0.008559782058000565, + -0.00792425312101841, + -0.00891064666211605, + -0.003664222313091159, + -0.023051168769598007, + -0.0026364526711404324, + -0.018456822261214256, + -0.03370951861143112, + 0.01596766710281372, + 0.005881953984498978, + 0.008208916522562504, + 0.00784481130540371, + -0.01508057489991188, + -0.007474086247384548, + -0.026321494951844215, + 0.01746380887925625, + 0.006898138206452131, + -0.0036907026078552008, + 0.011777147650718689, + 0.012346476316452026, + -0.007017299998551607, + 0.024957755580544472, + -0.011168099008500576, + -0.00421368982642889, + 0.012214073911309242, + -0.006931238807737827, + 0.017251966521143913, + -0.005987875163555145, + -0.03222661837935448, + -0.018443582579493523, + 0.005898504052311182, + 0.009791119024157524, + 0.047373395413160324, + 0.01529241818934679, + 0.002681138226762414, + -0.021806590259075165, + 0.02244211919605732, + 0.0005345726385712624, + -0.003975366707891226, + 0.012922423891723156, + -0.0016666087321937084, + -0.008440620265901089, + 0.0035218901466578245, + -0.009572656825184822, + 0.003174335230141878, + 0.03778749704360962, + 0.013783036731183529, + -0.02282608486711979, + 0.005461577791720629, + 0.010671592317521572, + -0.001966167939826846, + 0.008963607251644135, + -0.008361179381608963, + -0.01187644898891449, + -0.000506437208969146, + 0.002052229130640626, + -0.0077124098315835, + 0.009857320226728916, + 0.01568962261080742, + -0.002252487000077963, + 0.003952196333557367, + -0.008109615184366703, + 0.0005937397363595665, + -0.00697095924988389, + 0.02005888521671295, + -0.011830108240246773, + -0.0009011603542603552, + -0.01877458766102791, + -0.02185955084860325, + -0.010281006805598736, + 0.01116147916764021, + 0.002153185661882162, + 0.028281042352318764, + -0.0056204600259661674, + -0.0017841154476627707, + 0.010049303062260151, + 0.013716835528612137, + 0.001757635036483407, + -0.011095277965068817, + 0.003081653965637088, + -0.0006678019999526441, + 0.0071828025393188, + 0.00032541900873184204, + -0.004720127210021019, + 0.028625287115573883, + 0.013028346002101898, + -0.00853992160409689, + 0.005027961451560259, + 0.0019479627953842282, + 0.003485479624941945, + 0.0002941804414149374, + -0.004670476540923119, + 0.0004298923595342785, + -0.006745876278728247, + 0.002356753684580326, + -0.0021382905542850494, + 0.01201547123491764, + 0.020919498056173325, + -0.0005904296413064003, + 0.005395377054810524, + -0.0029128415044397116, + -0.007063640747219324, + -0.00923503190279007, + -0.005491368006914854, + 0.01398163940757513, + -0.031035002321004868, + 0.01800665631890297, + -0.024308986961841583, + 0.012968764640390873, + 0.013293148949742317, + 0.007911012507975101, + 0.010559050366282463, + -0.009943381883203983, + 0.004064737819135189, + 0.011955889873206615, + 0.001213132287375629, + -0.0020869846921414137, + 0.013140887022018433, + 0.011108518578112125, + 0.03066427633166313, + 0.014127281494438648, + 0.013597673736512661, + 0.007288723718374968, + 0.004839289002120495, + -0.003902545664459467, + -0.006626714486628771, + 0.007937492802739143, + 0.012101531960070133, + 0.012214073911309242, + 0.01043326873332262, + 0.001179204322397709, + -0.0068120770156383514, + 0.0016914340667426586, + 0.00031735075754113495, + -0.00315778492949903, + 0.010347207076847553, + -0.029869865626096725, + 0.022349437698721886, + 0.018258219584822655, + -0.0098109794780612, + 0.01538509875535965, + -0.002307102782651782, + 0.01361091434955597, + 0.026440655812621117, + -0.015782304108142853, + 0.0006632506847381592, + 0.011187959462404251, + 0.005203394219279289, + 0.009003328159451485, + -0.048459090292453766, + 0.0017824603710323572, + -0.012114772573113441, + 0.0007352442480623722, + 0.0017328097019344568, + 0.005501298233866692, + -0.020085366442799568, + 0.030955560505390167, + -0.025460882112383842, + -0.014895211905241013, + 0.00490880012512207, + -0.026361215859651566, + 0.0023385484237223864, + -0.011247539892792702, + 0.004091218113899231, + -0.0028582257218658924, + -0.00666312500834465, + 0.0001455386372981593, + 0.02282608486711979, + 0.013637394644320011, + -0.00583230284973979, + -0.012730441056191921, + 0.004984931088984013, + 0.006520792841911316, + 0.016179511323571205, + -0.015901466831564903, + 0.0052464245818555355, + 0.01808609813451767, + -0.007010679692029953, + -0.02236267924308777, + 0.0022144215181469917, + 0.02587132900953293, + -0.025169597938656807, + -0.01083709392696619, + 0.015583702363073826, + -0.0174240879714489, + -0.017490288242697716, + -0.012895943596959114, + 0.013756555505096912, + 0.007864671759307384, + -0.025196079164743423, + -0.016033869236707687, + -0.024163344874978065, + -0.006239438895136118, + 0.013193847611546516, + -0.008877546526491642, + -0.008619362488389015, + 0.01854950375854969, + 0.009400533512234688, + 0.011763907968997955, + 0.023342452943325043, + 0.0015673072775825858, + -0.013273289427161217, + 0.019065871834754944, + -0.005375516600906849, + 0.02094597928225994, + -0.027486631646752357, + -0.01758296974003315, + 0.020429611206054688, + 0.018231740221381187, + -0.009301232174038887, + 0.007692549377679825, + 0.018920229747891426, + -0.010638491250574589, + 0.021925752982497215, + -0.007904392667114735, + -0.015914706513285637, + -0.016576716676354408, + 0.006673055235296488, + -0.010380308143794537, + 0.004610895644873381, + -0.007374784909188747, + -0.006898138206452131, + -0.0006123587372712791, + -0.01126078050583601, + 0.013485131785273552, + 0.001706329290755093, + 0.0044487034901976585, + -0.017185764387249947, + 0.01576906442642212, + -0.02032369002699852, + -0.004634066019207239, + -0.007685929536819458, + -1.4015980923431925e-5, + 0.015438060276210308, + 0.001404287526383996, + -0.008142716251313686, + 0.0061103468760848045, + 0.00802355445921421, + -0.010426648892462254, + 0.0058753336779773235, + -0.02132994309067726, + 0.001259472919628024, + 0.018099337816238403, + 0.0037800739519298077, + -0.0015780649846419692, + -0.013041585683822632, + 0.0007522082305513322, + 0.006292399484664202, + -0.019582238048315048, + 0.0044487034901976585, + 0.025249039754271507, + -0.00635198038071394, + -0.00923503190279007, + -0.01635163277387619, + 0.0036708423867821693, + -0.014034599997103214, + 0.0002079123369185254, + 0.006755806040018797, + 0.03733733296394348, + 0.002581836888566613, + -0.02907545492053032, + -0.005931604653596878, + 0.022971726953983307, + -0.0008407519781030715, + 0.03439800813794136, + 0.015014373697340488, + 0.012194213457405567, + -0.026347976177930832, + 0.01108865812420845, + -0.013293148949742317, + 0.01380951702594757, + 0.010658351704478264, + -0.00850020069628954, + -0.0065505835227668285, + -0.02125050313770771, + -0.0026827931869775057, + -0.004792948253452778, + 0.006461211945861578, + 0.00228062248788774, + 0.0015722723910585046, + -0.004594345577061176, + -0.017371127381920815, + -0.020429611206054688, + -0.0025851468089967966, + -0.006481072399765253, + -0.001997613348066807, + -0.014511247165501118, + -0.009182070381939411, + 0.005355656147003174, + 0.0006599406478926539, + 0.013213708065450191, + -0.00867894385010004, + -0.010188325308263302, + -0.029260816052556038, + 0.004349402152001858, + -0.013478511944413185, + -0.008824585936963558, + -0.009804359637200832, + 0.008996708318591118, + 0.004703577142208815, + 0.010108884423971176, + -0.0029343566857278347, + 0.0049650706350803375, + -0.003076688852161169, + -0.021118100732564926, + -0.001263610552996397, + 0.0002863190893549472, + 0.014127281494438648, + 0.02310412935912609, + -0.0017344646621495485, + 0.005140503402799368, + 0.03267678618431091, + -0.02603021077811718, + -0.0053722066804766655, + 0.01731816679239273, + 0.01627219095826149, + -0.004849219229072332, + -0.005332485772669315, + 0.016219230368733406, + 0.0021002248395234346, + 0.022548040375113487, + -0.00963885709643364, + -0.026559818536043167, + -0.002720858668908477, + 0.013452031649649143, + -0.0007646208978258073, + 0.003038623370230198, + 0.0131475068628788, + 0.001324018812738359, + 0.021925752982497215, + 0.026321494951844215, + -0.0010236321249976754, + 0.0006996612064540386, + -0.008036794140934944, + 0.03394784405827522, + 0.004074668046087027, + -0.035616107285022736, + 0.011790388263761997, + 0.007374784909188747, + -0.010956255719065666, + -0.007765370421111584, + 0.003455689176917076, + -0.04308357462286949, + -0.014008119702339172, + 0.013531472533941269, + -0.01615303009748459, + 0.0035218901466578245, + -0.0019595478661358356, + -0.0065638236701488495, + -0.006858417764306068, + -0.0034325188025832176, + 0.010340587235987186, + -0.0005217461730353534, + 0.0393233597278595, + 0.01792721450328827, + 0.009559416212141514, + -0.007467466406524181, + 0.0007323479512706399, + 0.0074409861117601395, + 0.0025437711738049984, + -0.01963520050048828, + -0.0017477049259468913, + 0.013756555505096912, + 0.008526681922376156, + -0.008923887275159359, + -0.002922771731391549, + -0.011002596467733383, + -0.00595808494836092, + 0.00016777800919953734, + -0.023223290219902992, + -0.017635930329561234, + -0.010168464854359627, + -0.0036840825341641903, + 0.006937858648598194, + -0.009685197845101357, + 0.0062361289747059345, + -0.017688892781734467, + 0.009744779206812382, + 0.02814864180982113, + 0.007023919839411974, + -0.008745144121348858, + -0.009658717550337315, + 0.00036886337329633534, + 0.0010716277174651623, + -0.008798105642199516, + 0.00802355445921421, + 0.010002962313592434, + 0.004842598922550678, + -0.011750667355954647, + 0.003796624019742012, + 0.013001864776015282, + 0.010214805603027344, + -0.004726747516542673, + 0.00011274847929598764, + -0.003889305517077446, + -0.0007741372683085501, + -0.0030121428426355124, + -0.006414871197193861, + -0.021237263455986977, + -0.01039354782551527, + -0.007249003276228905, + -0.008804725483059883, + 0.012253794819116592, + 0.002285587601363659, + -0.021356424316763878, + 0.023660216480493546, + -0.004703577142208815, + -0.0005304350634105504, + 0.01043326873332262, + 0.0021978712175041437, + 0.001447318121790886, + -0.004144179169088602, + 0.0073946453630924225, + 0.014603927731513977, + 0.006984199397265911, + -0.002111810026690364, + 0.007904392667114735, + -0.00016953647718764842, + -0.0005010584136471152, + 0.022627482190728188, + 0.005014721304178238, + 0.01600738801062107, + 0.020919498056173325, + 0.022044913843274117, + 0.006560513284057379, + 0.002838365500792861, + -0.011379942297935486, + 0.010049303062260151, + -0.0018254909664392471, + -0.011042317375540733, + -0.01701364293694496, + 0.02595076896250248, + -0.019264474511146545, + -0.006308950018137693, + -0.0015275867190212011, + -0.014802530407905579, + -0.011797008104622364, + 0.0002540461136959493, + 0.004806188400834799, + 0.01091653574258089, + -0.00047250924399122596, + -0.006494312547147274, + -0.0067988368682563305, + -0.013253428973257542, + 0.008778245188295841, + 0.023580776527523994, + 0.005878643598407507, + -0.003412658581510186, + -0.01792721450328827, + 0.024904794991016388, + -0.007692549377679825, + 0.014789290726184845, + -0.012306755408644676, + 0.003333217464387417, + 0.006348670460283756, + -0.002848295494914055, + -0.0010410097893327475, + -0.012267034500837326, + -0.019290953874588013, + 0.00960575696080923, + 0.013835997320711613, + -0.00600773561745882, + -0.02695702388882637, + -0.01394191849976778, + 0.02117106132209301, + -0.0031644050031900406, + -0.019449837505817413, + -0.006931238807737827 + ], + "08459d71-4c98-469d-a923-2c7913612f4a": [ + -0.0035350352991372347, + 0.015548464842140675, + -0.01896258443593979, + 0.019432025030255318, + -0.028123801574110985, + -0.002256518928334117, + 0.013130131177604198, + 0.023557418957352638, + -0.016956789419054985, + 0.039916735142469406, + 0.010235242545604706, + 0.013848518952727318, + 0.02388460375368595, + 0.018820328637957573, + -0.013172807171940804, + 0.008457056246697903, + 0.003435456892475486, + 0.045578483492136, + -0.007333242334425449, + -0.03306004777550697, + 0.05195150524377823, + -0.0038622217252850533, + -0.04281873628497124, + -0.021124858409166336, + -0.031040027737617493, + -0.021224437281489372, + -0.01769651472568512, + 0.006963379215449095, + -0.04566383734345436, + 0.004477474372833967, + 0.024553202092647552, + -0.0059782639145851135, + -0.006387246772646904, + 0.023770799860358238, + 0.016316641122102737, + -0.04284718632698059, + -0.004918464459478855, + 0.04714328795671463, + -0.008535296656191349, + -0.006895808037370443, + -0.021679652854800224, + -0.005779107101261616, + 0.011558214202523232, + 0.0013185255229473114, + -0.01668650470674038, + -0.01853581890463829, + -0.004121836740523577, + -0.015349308028817177, + 0.0012216143077239394, + -0.011102997697889805, + -0.0014003220712766051, + 0.004555714316666126, + -0.021295564249157906, + 0.011003419756889343, + 0.03186510503292084, + -0.025136448442935944, + 0.025933075696229935, + 0.048594288527965546, + -0.01909061335027218, + -0.01917596533894539, + 0.0020555839873850346, + -0.05456899479031563, + -0.0029713499825447798, + 0.010477076284587383, + -0.0023454283364117146, + -0.031068479642271996, + -0.017454681918025017, + 0.021096408367156982, + 0.008208109997212887, + -0.013002101331949234, + -0.03399893268942833, + 0.02313065342605114, + -0.02624603733420372, + 0.045578483492136, + -0.007230107206851244, + -0.018109053373336792, + 0.04537932574748993, + -0.009360374882817268, + 0.011593777686357498, + 0.015619592741131783, + 0.007738668937236071, + -0.0018937689019367099, + -0.014851415529847145, + 0.022988397628068924, + 0.02173655480146408, + 0.017468906939029694, + -0.02944677323102951, + -0.047001034021377563, + -0.028891978785395622, + -0.020570063963532448, + -0.024169115349650383, + 0.013066116720438004, + -0.021850358694791794, + -0.026971537619829178, + 0.02246205508708954, + -0.0337144210934639, + 0.028877753764390945, + 0.004228528123348951, + 0.020484711974859238, + 0.010391723364591599, + 0.03416963666677475, + 0.015406209975481033, + -0.009324811398983002, + 0.006031609605997801, + 0.005345229525119066, + -0.03576289117336273, + -0.016288191080093384, + -0.00318651064299047, + -0.00637302128598094, + 0.02645941823720932, + 0.027483655139803886, + -0.03374287113547325, + -0.0010411283001303673, + -0.001918663503602147, + -0.034738656133413315, + -0.01705636829137802, + -0.02781084179878235, + -0.023144878447055817, + 0.009459953755140305, + -0.00610984954982996, + -0.004552158061414957, + -0.002793531399220228, + 0.03544992953538895, + -0.008613537065684795, + -0.013478655368089676, + 0.0013265273300930858, + -0.016714954748749733, + 0.026302939280867577, + 0.048935700207948685, + 0.02813802659511566, + 0.0030673721339553595, + -0.010092987678945065, + 0.008371703326702118, + -0.009943620301783085, + -0.018137505277991295, + 0.04668807238340378, + 0.008065855130553246, + 0.03951842337846756, + -0.019232867285609245, + 0.03581979498267174, + -0.06885138899087906, + 0.008144095540046692, + -0.04791146516799927, + 0.015832975506782532, + 0.007532399147748947, + 0.007475497201085091, + -0.017170172184705734, + 0.06788405776023865, + -0.041566893458366394, + 0.03715699166059494, + -0.03655951842665672, + -0.0019524490926414728, + -0.008684664033353329, + -0.008357477374374866, + 0.0481959730386734, + -0.03906320780515671, + -0.01857849583029747, + 0.010327708907425404, + 0.030072694644331932, + 0.03257638216018677, + 0.029645929113030434, + -0.05368701368570328, + -0.01827975921332836, + -0.018265534192323685, + 0.03872179612517357, + 0.023998407647013664, + 0.05815381929278374, + 0.030357204377651215, + -0.01984456367790699, + 0.008940722793340683, + 0.008585086092352867, + -0.000556572456844151, + 0.023415163159370422, + 0.0078026833944022655, + 0.03909165784716606, + -0.02667280100286007, + 0.03226342052221298, + -0.012440194375813007, + 0.022063741460442543, + -0.03707163780927658, + -0.026644350960850716, + -0.010100101120769978, + 0.033771321177482605, + -0.037896715104579926, + -0.023031074553728104, + 0.009175444021821022, + -0.019275544211268425, + -0.016544248908758163, + 0.002802422270178795, + 0.012653577141463757, + -0.002578370738774538, + -0.010413061827421188, + -0.013208371587097645, + 0.009716012515127659, + -0.003501249710097909, + -0.027583232149481773, + 0.005846678279340267, + 0.007888036780059338, + -0.00305492477491498, + 0.030641714110970497, + 0.011344831436872482, + -0.0265020951628685, + 0.0006437036208808422, + 0.033771321177482605, + -0.028251830488443375, + 0.036246560513973236, + -0.01748313196003437, + -0.02022865228354931, + 0.03869334235787392, + 0.008222335949540138, + 0.047001034021377563, + -0.01975921168923378, + 0.02364277094602585, + -0.00459127826616168, + -0.0363888144493103, + 0.017283976078033447, + -0.00024027748440857977, + 0.026729702949523926, + -0.007411482278257608, + -0.04660271853208542, + 0.049191758036613464, + 0.026089556515216827, + -0.000819299544673413, + -0.01459535676985979, + -0.021580073982477188, + 0.007902261801064014, + -0.040599558502435684, + 0.011423071846365929, + -0.039916735142469406, + -0.028934655711054802, + 0.029845086857676506, + -0.025164898484945297, + 0.0025143560487776995, + 0.0067428844049572945, + 0.02772548794746399, + -0.005629739258438349, + 0.017582710832357407, + -0.0027561895549297333, + -0.02478080987930298, + -0.01992991752922535, + -0.011472861282527447, + 0.014879866503179073, + 0.00011041428660973907, + 0.005832452792674303, + -0.012454420328140259, + 0.035535283386707306, + -0.022049516439437866, + 0.03695783391594887, + 0.015406209975481033, + 0.027028439566493034, + -0.002670836402103305, + 0.001483007799834013, + -0.010270806960761547, + 0.0107260225340724, + -0.013428866863250732, + 0.0275974590331316, + 0.025918850675225258, + -0.05502421036362648, + 0.005060719326138496, + -0.002811313373968005, + 0.028322959318757057, + 0.017966799437999725, + -0.018208632245659828, + -0.02362854592502117, + 0.03197890892624855, + -0.006266330368816853, + 0.029091134667396545, + -0.03362906724214554, + 0.020925702527165413, + 0.030954675748944283, + -0.021964162588119507, + -0.02553476206958294, + -0.014737611636519432, + 0.030072694644331932, + 0.0040933857671916485, + 0.004513037856668234, + -0.001555024296976626, + 0.009701786562800407, + -0.014410425908863544, + 0.01108166016638279, + -0.01443176344037056, + 0.018564268946647644, + -0.000305848108837381, + 0.01815173029899597, + -0.025221800431609154, + 0.02055583894252777, + -0.006486825179308653, + 0.0053736804984509945, + -0.00819388497620821, + 0.013144356198608875, + 0.01735510304570198, + -0.013770278543233871, + 0.012817170470952988, + -0.011650679633021355, + 0.014040562324225903, + 0.011956527829170227, + -0.018478916957974434, + -0.01617438718676567, + 0.014524229802191257, + 0.004274760838598013, + -0.028792399913072586, + 0.03530767560005188, + -0.018464691936969757, + -0.04426973685622215, + 0.006717989686876535, + -0.0258334968239069, + 0.008563747629523277, + 0.030698616057634354, + -0.04751314967870712, + 0.02641674317419529, + 0.020612740889191628, + 0.015249730087816715, + -0.016871435567736626, + -0.023984182626008987, + -0.0060671730898320675, + -0.028109576553106308, + -0.03232032433152199, + -0.01563381776213646, + -0.02448207512497902, + -0.014965219423174858, + 0.0016839428571984172, + -0.011807160452008247, + -0.049106404185295105, + 0.006870913784950972, + 0.053061094135046005, + -0.01685721054673195, + 0.03795361891388893, + -0.007062957622110844, + -0.04418438300490379, + 0.015192828141152859, + -0.04512326791882515, + 0.01702791638672352, + -0.010420174337923527, + -0.0016083698719739914, + -0.04873654246330261, + -0.005651077721267939, + -0.02725604735314846, + -0.029674381017684937, + 0.013158582150936127, + -0.04313169792294502, + 7.168315642047673e-5, + 0.016060583293437958, + 0.01748313196003437, + 0.004111167974770069, + -0.029332969337701797, + -0.011465747840702534, + 0.0032220743596553802, + 0.018251309171319008, + -0.0065828473307192326, + -0.031751301139593124, + 0.0009602208738215268, + 0.014033449813723564, + 0.03525077551603317, + -0.010277919471263885, + 0.06680291891098022, + -0.030527910217642784, + -0.044298186898231506, + -0.026089556515216827, + 0.015406209975481033, + -0.0341980867087841, + -0.008784242905676365, + -0.06555107980966568, + -0.0067962296307086945, + -0.012852733954787254, + 0.0024450067430734634, + 0.01643044501543045, + 0.017938347533345222, + -0.005245651118457317, + -0.006611298304051161, + -0.016444671899080276, + -0.022732339799404144, + 0.01445310190320015, + -0.007418595254421234, + -0.05565013363957405, + -0.008378815837204456, + -0.028507890179753304, + 0.010612218640744686, + -0.030983125790953636, + 0.0040933857671916485, + 0.024254467338323593, + -0.012831395491957664, + 0.012603787705302238, + -0.007795570883899927, + -0.030641714110970497, + -0.01668650470674038, + 0.0010900284396484494, + -0.016487346962094307, + -0.015548464842140675, + -0.0059533691965043545, + 0.01709904335439205, + -0.008428605273365974, + 0.019517377018928528, + -0.025136448442935944, + 0.011679130606353283, + 0.006113406270742416, + 0.006806898862123489, + 0.018308211117982864, + -0.022760789841413498, + 0.0012722925748676062, + -0.025221800431609154, + 0.011131448671221733, + -0.0023169773630797863, + -0.019915692508220673, + 0.025292929261922836, + 0.003163394285365939, + -0.02877817489206791, + -0.013379077427089214, + -0.007731555961072445, + 0.009886718355119228, + 0.01975921168923378, + 0.009459953755140305, + 0.010171228088438511, + -0.0032362998463213444, + 0.010811375454068184, + 0.03323075547814369, + 0.025136448442935944, + -0.012276601046323776, + 0.04617595300078392, + 0.0012722925748676062, + 0.0037448613438755274, + 0.01806637831032276, + 0.03778291121125221, + -0.009623547084629536, + 0.01950315199792385, + 0.02330135926604271, + 0.0007250556373037398, + -0.0036595084238797426, + 0.03576289117336273, + 0.011956527829170227, + -0.02658744901418686, + 0.017767641693353653, + 0.06959111988544464, + -0.0003476355050224811, + -0.028579017147421837, + -0.014623807743191719, + -0.021935712546110153, + -0.005917805712670088, + -0.0031473906710743904, + -0.0049860356375575066, + 0.010014748200774193, + 0.0013318618293851614, + 0.02633138932287693, + -0.012105895206332207, + -0.01088961586356163, + -0.016800308600068092, + 0.024069536477327347, + -0.047712307423353195, + 0.003961800131946802, + 0.008186771534383297, + -0.01447444036602974, + -0.004527263343334198, + -0.009367487393319607, + -0.06082821264863014, + -0.014147253707051277, + 0.03618965670466423, + -0.010896728374063969, + 0.025933075696229935, + -0.024368271231651306, + 0.04170914739370346, + -0.042790286242961884, + 0.0017097265226766467, + 0.020498936995863914, + 0.04808216914534569, + -0.03829503059387207, + 0.03727079555392265, + -0.015349308028817177, + -0.00880558043718338, + 0.0005939143593423069, + -0.019474701955914497, + 0.013770278543233871, + -0.038522638380527496, + -0.01832243613898754, + -0.023557418957352638, + 0.03826658055186272, + 0.005345229525119066, + 0.006223653443157673, + -0.022220222279429436, + -0.029731282964348793, + -0.004221415147185326, + 0.011195464059710503, + -0.02367122285068035, + 0.024581653997302055, + 0.0018777651712298393, + -0.03311695158481598, + 0.047712307423353195, + -0.008144095540046692, + -0.02792464569211006, + -0.044639602303504944, + -0.0014732277486473322, + -0.005014486610889435, + 0.025051094591617584, + 0.03673022612929344, + -0.04091252014040947, + 0.013599572703242302, + 0.01261801365762949, + -0.025776594877243042, + -0.014381974935531616, + -0.06947731226682663, + -0.005142515990883112, + 0.0061809769831597805, + 0.023685447871685028, + -0.01476606260985136, + 0.01584720052778721, + 0.015576915815472603, + -0.010569541715085506, + 0.007560850121080875, + 0.0054874843917787075, + 0.05516646429896355, + -0.006145413499325514, + -0.01512170024216175, + -0.028678596019744873, + 0.013820067048072815, + -0.03260483220219612, + 0.007194543723016977, + -0.0040044765919446945, + 0.012582449242472649, + 0.01702791638672352, + -0.024154888466000557, + 0.023585868999361992, + -0.007411482278257608, + -0.02304529957473278, + 0.01053397823125124, + -0.003855108981952071, + -0.031665951013565063, + -0.013514219783246517, + 0.00834325235337019, + -0.010747360996901989, + -0.027839291840791702, + 0.017511583864688873, + -0.023102201521396637, + -0.02186458371579647, + 0.015221279114484787, + -0.027284497395157814, + 0.022049516439437866, + 0.001241174410097301, + 0.031239185482263565, + 0.009758688509464264, + 0.013158582150936127, + 0.02190726064145565, + 0.004360113758593798, + -0.011366169899702072, + 0.04045730456709862, + 0.016629602760076523, + -0.007603526581078768, + 0.002057362115010619, + 0.01997259445488453, + 0.008627762086689472, + 0.019531603902578354, + -0.03240567445755005, + 0.03968912735581398, + -0.00014725609798915684, + 0.0061809769831597805, + -0.03801051899790764, + -0.0033358782529830933, + -0.02944677323102951, + -0.035336125642061234, + -0.011963640339672565, + 0.012810057029128075, + -0.005302553065121174, + -0.017981024459004402, + -0.023955732583999634, + 0.017924122512340546, + 0.009915169328451157, + 0.04230662062764168, + 0.00018393118807580322, + -0.0328608900308609, + -0.01958850584924221, + 0.055763937532901764, + -0.0251933503895998, + 0.01617438718676567, + 0.04498101398348808, + -0.040969423949718475, + 0.03960377722978592, + 0.0030531466472893953, + -0.01546311192214489, + 0.03240567445755005, + 0.020840348675847054, + 0.002443228615447879, + 0.005284770857542753, + -0.030727067962288857, + 0.024069536477327347, + 0.016586925834417343, + -0.0010811375686898828, + -0.014965219423174858, + 0.01933244615793228, + 0.021295564249157906, + -0.011359057389199734, + -0.0034141186624765396, + -0.016871435567736626, + 0.026018429547548294, + 0.01228371448814869, + 0.04085562005639076, + -0.012127233669161797, + 0.0023969956673681736, + -0.02388460375368595, + 0.03436879441142082, + 0.022305574268102646, + 0.006348126567900181, + 0.0153350830078125, + -0.01887723058462143, + 0.049732327461242676, + 0.03084087185561657, + 0.00298024108633399, + 0.023358261212706566, + -0.020001044496893883, + 0.004946915432810783, + 0.030385656282305717, + 0.02894888073205948, + -0.016544248908758163, + 0.044127482920885086, + 0.015249730087816715, + -0.011593777686357498, + 0.03721389174461365, + -0.02291727066040039, + -0.00247523607686162, + -0.01449577882885933, + 0.010292145423591137, + 0.04802526906132698, + 0.011259478516876698, + 0.027526330202817917, + 0.01593255251646042, + -0.03795361891388893, + 0.039831385016441345, + 0.0001818196033127606, + 0.031751301139593124, + 0.01613171026110649, + -0.019858790561556816, + -0.017340878024697304, + 0.0003711964818648994, + -0.03445414826273918, + -0.010747360996901989, + -0.014680709689855576, + -0.01430373452603817, + -0.03138143941760063, + -0.021636975929141045, + -0.027825066819787025, + 0.003940461669117212, + 0.016017906367778778, + 0.015918327495455742, + -0.05092727020382881, + 0.02894888073205948, + -0.002350762952119112, + 0.039205461740493774, + 0.04984613135457039, + -0.006316119339317083, + 0.04913485795259476, + -0.005981820169836283, + 0.02123866230249405, + 0.018635397776961327, + 0.03340145945549011, + 0.0016617155633866787, + 0.006451261695474386, + 0.01344309188425541, + 0.006376577541232109, + -0.0010704684536904097, + -0.011650679633021355, + -0.00012658466584980488, + 0.004217858891934156, + 0.03630346059799194, + -0.01463803369551897, + 0.004513037856668234, + -0.022390928119421005, + 0.01946047507226467, + -0.015875650569796562, + 0.02978818491101265, + 0.00263349455781281, + 0.010377498343586922, + 0.00456993980333209, + -0.01358534675091505, + 0.014822964556515217, + -0.019446250051259995, + -0.02295994758605957, + 0.02502264454960823, + -0.02852211520075798, + 0.007244332693517208, + -0.013030552305281162, + 0.026743927970528603, + -0.008990512229502201, + -0.013279498554766178, + -0.034653302282094955, + -0.02295994758605957, + -0.05431293696165085, + -0.025648565962910652, + 0.006892251782119274, + -0.027825066819787025, + 0.001959561835974455, + -0.014410425908863544, + 0.024282919242978096, + -0.024723907932639122, + 0.012845621444284916, + -0.013507106341421604, + 0.009303472936153412, + 0.004047153051942587, + 0.013827180489897728, + -0.0029055571649223566, + -0.01512170024216175, + 0.01228371448814869, + -0.03783981502056122, + 0.0036346137057989836, + -0.006629080045968294, + -0.011067434214055538, + 0.0019435581052675843, + 0.009751575998961926, + -0.035876695066690445, + 0.020328231155872345, + 0.014367748983204365, + -0.013144356198608875, + -0.0061027370393276215, + 0.01803792640566826, + 0.01358534675091505, + -0.007959163747727871, + -0.019062161445617676, + 0.012689140625298023, + 0.01698523946106434, + -0.007895149290561676, + 0.021039506420493126, + -0.012831395491957664, + 0.025563212111592293, + -0.03226342052221298, + 0.019531603902578354, + -0.010640669614076614, + -0.004022258333861828, + 0.009886718355119228, + -0.003110048593953252, + -0.031210733577609062, + -0.006920702755451202, + -0.010021860711276531, + -0.023898830637335777, + 0.02456742897629738, + -1.3350292647373863e-5, + 0.025164898484945297, + -0.003280754666775465, + 0.02944677323102951, + 0.0023205336183309555, + -0.010263693518936634, + -0.0320073626935482, + -0.0026690582744777203, + 0.022604310885071754, + 0.015420435927808285, + -0.013720489107072353, + 0.001455445890314877, + -0.01921864226460457, + -0.014339298009872437, + -0.026943085715174675, + 0.03559218719601631, + -0.003954687155783176, + 0.03906320780515671, + -0.0034212314058095217, + -0.01879187859594822, + 0.00562262674793601, + 0.051923055201768875, + -0.018934132531285286, + 0.059007350355386734, + 0.011657792143523693, + -0.027355624362826347, + -0.0034372350201010704, + 0.013784503564238548, + -0.014865641482174397, + -0.013699150644242764, + 0.03613275662064552, + -0.006920702755451202, + 0.011771596036851406, + -0.009986297227442265, + -0.0020449147559702396, + 0.012703366577625275, + 0.03843728452920914, + 0.006913590244948864, + 0.002978462725877762, + 0.021053731441497803, + 0.0022903045173734426, + 0.04549312964081764, + 0.03610430285334587, + -0.014040562324225903, + 0.020797671750187874, + -0.006234322674572468, + -0.042790286242961884, + 0.011302155442535877, + -0.003986694850027561, + -0.014865641482174397, + 0.002955346368253231, + -0.01874920167028904, + -0.037982068955898285, + -0.003504806198179722, + -0.0005352342268452048, + 0.021850358694791794, + -0.024866163730621338, + 0.059007350355386734, + -0.0003656396584119648, + -0.0014545568265020847, + 0.012781606055796146, + 0.019744986668229103, + -0.01625973917543888, + -0.028621694073081017, + 0.030613264068961143, + 0.022732339799404144, + -0.035279225558042526, + 0.001285628997720778, + 0.012297939509153366, + -0.02590462565422058, + 0.01571917161345482, + 0.02132401615381241, + -0.02721337042748928, + 0.04882189631462097, + 0.027910418808460236, + 0.014083239249885082, + 0.002350762952119112, + -0.002663723658770323, + -0.0026815056335181, + -0.001690166536718607, + 0.006159638985991478, + 0.010562429204583168, + 0.00449881237000227, + 0.00425342284142971, + 0.03655951842665672, + -0.024581653997302055, + -0.005814670585095882, + -0.016074808314442635, + -0.022518957033753395, + 0.06811166554689407, + 0.0407133623957634, + -0.0032523036934435368, + 0.005483928136527538, + 0.01714172028005123, + 0.020498936995863914, + 0.02022865228354931, + -0.01580452360212803, + 0.030613264068961143, + -0.0064797126688063145, + 0.010519753210246563, + -0.013037665747106075, + -0.02039935812354088, + -0.016416219994425774, + -0.004964697640389204, + -0.021935712546110153, + -0.004072047770023346, + 0.025221800431609154, + 0.007752894423902035, + 0.006262773647904396, + -0.02422601729631424, + 0.041481539607048035, + 0.007930712774395943, + -0.02667280100286007, + -0.019289769232273102, + -0.026601674035191536, + -0.004744202364236116, + 0.0022725227754563093, + 0.0012776271905750036, + 0.009516855701804161, + 0.008898046799004078, + 0.046830326318740845, + 0.032718636095523834, + 0.021124858409166336, + -0.011849836446344852, + 0.03294624388217926, + -0.024083761498332024, + 0.014189930632710457, + 0.003307427279651165, + 0.0030709286220371723, + -0.03906320780515671, + 0.012810057029128075, + 0.030072694644331932, + 0.007030950393527746, + -0.03294624388217926, + -0.011138562113046646, + 0.007080739829689264, + -0.0258334968239069, + 0.007503948174417019, + 0.017938347533345222, + -0.0014323294162750244, + 0.025307154282927513, + 0.007468384224921465, + -0.04108322784304619, + 0.0038586652372032404, + -0.011999203823506832, + -0.006437036208808422, + -0.020299779251217842, + -0.016231289133429527, + 0.012902523390948772, + -0.02611800655722618, + 0.009694674052298069, + -0.021167535334825516, + 0.01744045503437519, + 0.020541613921523094, + -0.02001526951789856, + -0.02261853590607643, + 0.0036452829372137785, + 0.0027988660149276257, + -0.019773436710238457, + 0.006145413499325514, + -0.012319277971982956, + 0.001770184957422316, + 0.0028522114735096693, + -0.03519387170672417, + -0.02944677323102951, + -0.019275544211268425, + 0.005764881614595652, + 0.009154105558991432, + -0.010654894635081291, + -0.015178602188825607, + 0.04739934578537941, + 0.008940722793340683, + -0.02489461377263069, + -0.015491562895476818, + -0.025164898484945297, + 0.01274604257196188, + -0.03277553990483284, + -0.006074286065995693, + 0.01845046505331993, + 0.04259112849831581, + 0.014922543428838253, + 0.03567753732204437, + -0.007930712774395943, + 0.0001672606886131689, + -0.018094828352332115, + 0.03778291121125221, + -0.011430184356868267, + 0.010996307246387005, + -0.041566893458366394, + -0.02173655480146408, + 0.010142777115106583, + 0.005832452792674303, + 0.0058893547393381596, + 0.033344559371471405, + -0.005693754181265831, + 0.01158666517585516, + 0.011629341170191765, + -0.01853581890463829, + -0.012177023105323315, + -0.0271706935018301, + 0.018606945872306824, + -0.020996829494833946, + -0.025634340941905975, + 0.0058751292526721954, + -0.018393563106656075, + -0.022789241746068, + 0.015221279114484787, + -0.029930438846349716, + -0.007454158738255501, + 0.0031580596696585417, + -0.011181238107383251, + 0.025762369856238365, + 0.03266173601150513, + 0.033685971051454544, + 0.007745781447738409, + -0.005992489401251078, + 0.0013229709584265947, + 0.0008090749615803361, + -0.011423071846365929, + 0.011579551734030247, + 0.017212847247719765, + -0.010092987678945065, + 0.0011593777453526855, + -0.030015792697668076, + -0.007091408595442772, + 0.025634340941905975, + -0.0015159042086452246, + -0.006138300523161888, + 0.01655847579240799, + -0.0007761784945614636, + -0.009829816408455372, + -0.014751837588846684, + -0.029091134667396545, + 0.016373543068766594, + 0.022348251193761826, + -0.011700469069182873, + 0.004989591892808676, + 0.012177023105323315, + 0.019702309742569923, + -0.023955732583999634, + -0.018848780542612076, + -0.016743406653404236, + -0.001849314197897911, + -0.020954152569174767, + 0.03673022612929344, + -0.01278871949762106, + -0.023585868999361992, + -0.0337144210934639, + -0.011479973793029785, + -0.019730759784579277, + -0.02590462565422058, + 0.03997363895177841, + -0.020498936995863914, + -0.010896728374063969, + -0.024425173178315163, + -0.011344831436872482, + -0.007052288856357336, + 0.016672279685735703, + -0.0018653179286047816, + -0.0050856140442192554, + 0.005640408489853144, + 0.014794513583183289, + -0.022646985948085785, + 0.012205474078655243, + 0.009068752638995647, + 0.03829503059387207, + -0.0037484175991266966, + -0.03348681330680847, + -0.042192816734313965, + -0.009623547084629536, + -0.026345614343881607, + -0.03471020609140396, + 0.014268170110881329, + -0.004367226734757423, + 0.0429040901362896, + 0.0019239981193095446, + 0.010761586017906666, + -0.0010028972756117582, + -0.011295042000710964, + -0.009964958764612675, + -0.006166751496493816, + -0.027483655139803886, + 0.003380333073437214, + -0.02076922170817852, + 0.010420174337923527, + 0.015818748623132706, + 0.037441499531269073, + 0.05084191635251045, + -0.0041609569452703, + -0.04207901284098625, + 0.03792516887187958, + -0.008577972650527954, + 0.015320857055485249, + -0.0141330286860466, + -0.006038722116500139, + -0.01761116087436676, + 0.011273704469203949, + 0.0350516177713871, + 0.021793456748127937, + 0.022390928119421005, + -0.022888820618391037, + -0.012340616434812546, + -0.015861425548791885, + -0.01088961586356163, + 0.022049516439437866, + -0.011785821989178658, + 0.005018042866140604, + -0.012568224221467972, + -0.0556216835975647, + -0.02785351686179638, + -0.0057506561279296875, + 0.008165434002876282, + 0.007909374311566353, + -0.0013007436646148562, + 0.007297678384929895, + 0.019161740317940712, + -0.01204899325966835, + 0.025392506271600723, + 0.022405153140425682, + -0.027654360979795456, + 0.01358534675091505, + 0.022262897342443466, + 0.019062161445617676, + -0.0010277919936925173, + -0.007952051237225533, + -0.008371703326702118, + 0.030641714110970497, + -0.03670177608728409, + -0.005149628967046738, + 0.008777129463851452, + 0.04879344627261162, + 0.00030807085568085313, + -0.016842985525727272, + 0.03636036440730095, + -0.0036523956805467606, + 0.015989454463124275, + -0.012781606055796146, + -0.021295564249157906, + 0.01920441724359989, + -0.012233925051987171, + -0.007375918794423342, + -0.017212847247719765, + 0.004957584664225578, + 0.017070593312382698, + 0.005213643424212933, + -0.010270806960761547, + 0.02497996762394905, + 0.016103260219097137, + -0.0003258527140133083, + 0.0007575075724162161, + 0.010377498343586922, + -0.03402738273143768, + -0.005106952507048845, + -0.0005419024382717907, + 0.02456742897629738, + -0.01808060333132744, + 0.019318221136927605, + 0.00646548718214035, + 0.006589960306882858, + 0.01295231282711029, + -0.010157003067433834, + -0.01660115085542202, + 0.0013532001757994294, + 0.00027539668371900916, + 0.0076888795010745525, + -0.00047610950423404574, + 0.01617438718676567, + 0.02405530959367752, + 0.050870366394519806, + 0.032206520438194275, + 0.013144356198608875, + -0.02136669121682644, + -0.023016849532723427, + 0.013300837017595768, + -0.01000763475894928, + 0.010349047370254993, + 0.021921485662460327, + -0.00990094430744648, + 0.010484188795089722, + -0.026516320183873177, + 0.006081398576498032, + 0.02051316201686859, + -0.0033785549458116293, + 0.01310168020427227, + 0.03354371339082718, + 0.015093249268829823, + -0.00027184031205251813, + -0.004200077150017023, + -0.028792399913072586, + 0.005352342035621405, + -0.0186211708933115, + 0.008770016953349113, + -0.002864658832550049, + -0.022760789841413498, + -0.020954152569174767, + -0.02064119279384613, + -0.005964038427919149, + 0.005579950287938118, + 0.025634340941905975, + 0.010157003067433834, + 0.020242877304553986, + 0.018052151426672935, + -0.0129309743642807, + 0.03519387170672417, + -0.0016412663972005248, + -0.01221969909965992, + 0.020868800580501556, + 0.03186510503292084, + -0.01630241610109806, + -0.025691242888569832, + -0.005039381328970194, + -0.02190726064145565, + -0.005935587454587221, + -0.005775550380349159, + -0.005402131471782923, + 0.01799524948000908, + -0.0049967048689723015, + -8.15187522675842e-5, + 0.003321652766317129, + 0.027227595448493958, + -0.04014434292912483, + 0.025122223421931267, + -0.01255399826914072, + 0.02287459373474121, + -0.0031580596696585417, + -0.007788457907736301, + -0.01705636829137802, + 0.02688618376851082, + 0.007745781447738409, + 0.027654360979795456, + -0.01584720052778721, + -0.02721337042748928, + -0.009324811398983002, + -0.0110603217035532, + -0.020797671750187874, + -0.015662269666790962, + -0.016914112493395805, + 0.020584290847182274, + -0.007262114901095629, + 0.007511060684919357, + -0.01808060333132744, + 0.004655292723327875, + -0.0020858130883425474, + 0.012333502992987633, + -0.0016394881531596184, + -0.02489461377263069, + 0.012959425337612629, + -0.017198622226715088, + 0.024581653997302055, + -0.02089725062251091, + 0.031665951013565063, + 0.0009344371501356363, + -0.014652258716523647, + 0.01705636829137802, + -0.023785026744008064, + -0.011472861282527447, + -0.01443176344037056, + 0.004740646108984947, + -0.01963118091225624, + 0.021722329780459404, + 0.030186498537659645, + 0.03510851785540581, + 0.0014741168124601245, + 0.002402330283075571, + -0.00029184488812461495, + 0.014666484668850899, + -0.005992489401251078, + 0.001012677326798439, + -0.014168592169880867, + 0.023358261212706566, + -0.010569541715085506, + 0.0029126699082553387, + -0.0010589101584628224, + -0.03180820494890213, + 0.0008837588247843087, + 0.0010571320308372378, + -0.030869321897625923, + -0.005562168080359697, + -0.006159638985991478, + 0.017796093598008156, + 0.0035759336315095425, + 0.01803792640566826, + -0.01638776995241642, + 0.008336139842867851, + -0.0011495976941660047, + -0.011977866291999817, + 0.004662405699491501, + 0.006700207944959402, + -0.017810318619012833, + 0.030869321897625923, + -0.0004641067353077233, + 0.00500381737947464, + 0.0006170308333821595, + -0.0110603217035532, + 3.845329047180712e-5, + 0.0037128538824617863, + 0.012802944518625736, + 0.021096408367156982, + 0.007130528800189495, + -0.018293986096978188, + -0.0018937689019367099, + 0.009730237536132336, + -0.010825601406395435, + -0.0034372350201010704, + 0.019915692508220673, + 0.0075395116582512856, + -0.012098782695829868, + -0.01808060333132744, + 0.010597992688417435, + -0.003912010695785284, + 0.029987340793013573, + -0.01950315199792385, + 0.005743543151766062, + 0.009573757648468018, + -0.04347310960292816, + 0.022817691788077354, + 0.010320596396923065, + 0.002900222549214959, + -0.018606945872306824, + -0.011970752850174904, + 0.020740769803524017, + -0.016316641122102737, + 0.006106293294578791, + -0.0037875378038734198, + 0.014275283552706242, + -0.020157525315880775, + 0.008485507220029831, + -0.01980188861489296, + 0.023400938138365746, + -0.006547283846884966, + 0.03320230171084404, + 0.006412141490727663, + -0.0025801490992307663, + -0.012959425337612629, + 0.029645929113030434, + -0.014965219423174858, + 0.01529240608215332, + -0.008016065694391727, + 0.005057163070887327, + -0.006760666146874428, + 0.000725944759324193, + -0.0035901591181755066, + -0.004385008476674557, + 0.002388104796409607, + 0.02426869235932827, + -0.03655951842665672, + -0.003791094059124589, + 0.0023489848244935274, + -0.016501573845744133, + -0.02607533149421215, + -0.013343513011932373, + -0.0024236685130745173, + 0.024211790412664413, + -0.0070594013668596745, + -0.00106424477417022, + -0.013165694661438465, + -0.004537932574748993, + 0.01596100442111492, + 0.014225494116544724, + -0.00586801627650857, + -0.01343597937375307, + -0.009651998057961464, + -0.0025908180978149176, + -0.022134868428111076, + 0.05058585852384567, + -0.013706263154745102, + 0.01853581890463829, + 0.02772548794746399, + -0.006148969754576683, + 0.030186498537659645, + 0.02671547792851925, + -0.02746942825615406, + 0.013862743973731995, + -0.008023178204894066, + 0.01007165014743805, + 0.015989454463124275, + 0.037811364978551865, + -0.005437694955617189, + 0.0005881352699361742, + -0.023230232298374176, + -0.029389871284365654, + -0.02111063338816166, + -0.0056368522346019745, + 0.007681766990572214, + -0.0098582673817873, + -0.017710739746689796, + 0.005405687727034092, + 0.034141186624765396, + -0.011935189366340637, + -0.001296298112720251, + -0.014246832579374313, + 0.023358261212706566, + -0.005700866691768169, + 0.00026183799491263926, + -0.0016225954750552773, + -0.01141595933586359, + 0.022433605045080185, + -0.017753416672348976, + 0.022021064534783363, + 0.015619592741131783, + 0.021352466195821762, + -0.009644884616136551, + 0.006454817950725555, + 0.0074257077649235725, + 0.022234447300434113, + -0.0032825327944010496, + 0.009587982669472694, + -0.00968756154179573, + 0.01202765479683876, + 0.020484711974859238, + -0.0017648503417149186, + -0.017554258927702904, + -0.002004016423597932, + -0.0001885989331640303, + 0.014894092455506325, + -0.01795257441699505, + 4.8927919124253094e-5, + 0.0032469690777361393, + 0.016743406653404236, + 0.00024027748440857977, + -0.029674381017684937, + -0.02431136928498745, + -0.003197179874405265, + 0.02566279098391533, + 0.018678072839975357, + 0.007190987467765808, + 0.024880388751626015, + -0.02995889075100422, + -0.008229448460042477, + -0.032462578266859055, + 0.003997363615781069, + 0.003716410370543599, + -0.02927606739103794, + -0.014581131748855114, + -0.02987353689968586, + -0.012646464630961418, + 0.015022121369838715, + 0.013542670756578445, + -0.02257585898041725, + 0.012987876310944557, + -0.009225232526659966, + -0.01963118091225624, + 0.005178079940378666, + -0.013741827569901943, + -0.0110603217035532, + -0.0166438277810812, + -0.016757631674408913, + -0.001071357517503202, + 0.016458896920084953, + 0.01765383780002594, + -0.02224867232143879, + -0.016458896920084953, + 0.01613171026110649, + 0.0560484454035759, + 0.012063219211995602, + 0.024823486804962158, + 0.03101157769560814, + -0.002329424722120166, + -0.003936905413866043, + 0.011380394920706749, + -0.008954948745667934, + -0.004409903194755316, + 0.006714433431625366, + 0.012269488535821438, + -0.00037942061317153275, + 0.006991830188781023, + -0.02295994758605957, + -0.026829281821846962, + -0.015036347322165966, + 0.010882503353059292, + 0.026786604896187782, + 0.025420958176255226, + -0.028593244031071663, + -0.006515276152640581, + 0.02064119279384613, + -0.018478916957974434, + -0.0026459419168531895, + -0.004729976877570152, + -0.007888036780059338, + 0.0006481490563601255, + -0.013521332293748856, + 0.009075865149497986, + 0.0027828621678054333, + 0.009644884616136551, + -0.005985376425087452, + 0.02936141937971115, + -0.009787139482796192, + -0.004303211811929941, + 0.019645407795906067, + 0.02160852588713169, + -0.04153844341635704, + -0.013898307457566261, + -0.0086562130600214, + 0.010733135044574738, + -0.018137505277991295, + -0.0017150611383840442, + 0.005234981887042522, + -0.015591141767799854, + -0.030556362122297287, + -0.003840883495286107, + -0.0044703613966703415, + 0.007760006934404373, + 0.014965219423174858, + 0.005555055569857359, + -0.02456742897629738, + -0.008912271820008755, + -0.03522232174873352, + -0.009972071275115013, + -0.01790989749133587, + 0.024453625082969666, + -0.0030709286220371723, + -0.00867755152285099, + -0.0324341282248497, + 0.026217585429549217, + 0.016017906367778778, + 0.018422015011310577, + 4.1565115679986775e-5, + -0.0067322151735424995, + 0.0005619070143438876, + 0.032291870564222336, + 0.014175704680383205, + 0.016074808314442635, + -0.034311890602111816, + -0.00935326237231493, + 0.010000522248446941, + 0.012006317265331745, + 0.00766754150390625, + -0.021594300866127014, + -0.02093992754817009, + -0.004360113758593798, + 0.009730237536132336, + 0.011238140054047108, + 0.0021853914950042963, + -0.008947836235165596, + -0.0010491302236914635, + 0.0003498582518659532, + -3.51747585227713e-5, + -0.0005347896949388087, + 0.0012625126400962472, + 0.019787661731243134, + 0.001970230834558606, + -0.00918255653232336, + 0.04853738471865654, + -0.018308211117982864, + 0.004463248886168003, + -0.02237670309841633, + -0.0067428844049572945, + -0.029304517433047295, + -0.0006934928242117167, + 0.009452841244637966, + -0.00355992978438735, + -0.02165120281279087, + 0.011600890196859837, + -0.02680083177983761, + 0.028337184339761734, + -0.00850684568285942, + 0.020712319761514664, + 0.020242877304553986, + -0.00880558043718338, + -0.000245389761403203, + -0.005010930355638266, + 0.01000763475894928, + -0.009694674052298069, + 0.01123102754354477, + -0.0030086920596659184, + -0.011643567122519016, + -0.024282919242978096, + 0.05126868188381195, + 0.00025761479628272355, + 0.006497494410723448, + -0.0160036813467741, + 0.01187828741967678, + -0.0095239682123065, + 0.01967385783791542, + 0.032121166586875916, + -0.03269018605351448, + -0.023557418957352638, + -0.0012678471393883228, + 0.011465747840702534, + 0.012874072417616844, + 0.003387445816770196, + -0.003504806198179722, + 0.020840348675847054, + -0.01874920167028904, + -0.03496626392006874, + -0.013151469640433788, + 0.021309789270162582, + -0.011785821989178658, + 0.03274708613753319, + 0.01782454364001751, + 0.007745781447738409, + 0.018678072839975357, + -0.006511719897389412, + -0.03283243998885155, + 0.008770016953349113, + -0.006966935936361551, + 0.004175182431936264, + 0.03644571453332901, + -0.02431136928498745, + -0.0015701389638707042, + 0.023201780393719673, + 0.0019222198752686381, + 0.01373471412807703, + -0.01984456367790699, + 0.004594834521412849, + 0.004694412928074598, + 0.026601674035191536, + -0.0005943589494563639, + -0.0049860356375575066, + -0.014054788276553154, + -0.02018597535789013, + -4.695524330600165e-5, + -0.009474178776144981, + 0.012881184928119183, + 0.015391984954476357, + 0.03004424273967743, + 0.000518341432325542, + 0.00766754150390625, + -0.02401263453066349, + 0.013791616074740887, + -0.029219165444374084, + -0.00913987960666418, + -0.03613275662064552, + 0.0015799188986420631, + 0.005871572531759739, + 0.0015319079393520951, + -0.01689988747239113, + 4.2982108425349e-5, + 0.003951130900532007, + 9.09098016563803e-5, + -0.00968756154179573, + -0.01954582892358303, + 0.011999203823506832, + 0.0004703303857240826, + 0.0034888023510575294, + 0.00884825736284256, + -0.015704944729804993, + -0.013820067048072815, + 0.0006317008519545197, + -0.0004890013369731605, + 0.017554258927702904, + -0.01459535676985979, + 0.011657792143523693, + 0.013805842027068138, + 0.015022121369838715, + -0.0015461334260180593, + 0.008876708336174488, + -0.005882241763174534, + 0.001838645082898438, + 0.013642248697578907, + -0.006230766419321299, + 0.0032434125896543264, + -0.019432025030255318, + 0.06281977891921997, + -0.007745781447738409, + 0.0030300302896648645, + -0.018692299723625183, + 0.005921361967921257, + -0.026829281821846962, + 0.013848518952727318, + 0.03559218719601631, + 0.020527387037873268, + -0.0014981223503127694, + 0.009964958764612675, + -0.029418321326375008, + 0.00466596195474267, + 0.002775749424472451, + -0.019275544211268425, + 0.0019791219383478165, + 0.009232345968484879, + -0.007710217963904142, + 0.022547408938407898, + -0.004139618948101997, + 0.01377739105373621, + 0.014566905796527863, + -0.0043458882719278336, + 0.005366567522287369, + -0.007105634082108736, + 0.007681766990572214, + -0.006038722116500139, + 0.02152317203581333, + -0.014581131748855114, + 0.019659632816910744, + 0.009587982669472694, + 0.006415697745978832, + -0.0341980867087841, + -0.009943620301783085, + -0.0022067297250032425, + 0.010000522248446941, + 0.00399025110527873, + 0.013407528400421143, + -0.012354841455817223, + 0.015349308028817177, + -0.01432507298886776, + -0.017852995544672012, + 0.019474701955914497, + -0.0021320460364222527, + -0.005448364187031984, + -0.016060583293437958, + -0.00044988124864175916, + -0.005124734248965979, + -0.021011054515838623, + -0.0037626430857926607, + -0.024169115349650383, + -0.013912533409893513, + 0.011259478516876698, + -0.0013380855089053512, + 0.0173124261200428, + -0.0012971872929483652, + 0.0030638158787041903, + -0.02068386785686016, + 0.0023134208749979734, + 0.013955209404230118, + -0.01171469409018755, + 0.011707581579685211, + -0.007180318236351013, + -0.016103260219097137, + -0.009154105558991432, + -0.013521332293748856, + -0.007624865043908358, + -0.021039506420493126, + 0.01406901329755783, + 0.0018208632245659828, + 0.007183874491602182, + 0.028493665158748627, + 0.007080739829689264, + -0.019432025030255318, + 0.004200077150017023, + -0.011935189366340637, + 0.027412526309490204, + 0.005964038427919149, + -0.007255001924932003, + 0.0023098646197468042, + 0.0017257302533835173, + -0.0023045300040394068, + -0.016871435567736626, + -0.03129608556628227, + 0.006717989686876535, + -0.0008895379141904414, + 0.0014429985312744975, + -0.02229134924709797, + 0.00024027748440857977, + -0.020328231155872345, + -0.009431502781808376, + 0.002405886771157384, + -0.012561111710965633, + 0.010619331151247025, + 0.0026317164301872253, + 0.00950262974947691, + -0.02072654478251934, + 0.005149628967046738, + -0.007418595254421234, + -0.004886457230895758, + -0.004968253895640373, + 0.011046095751225948, + 0.004089829511940479, + 0.00880558043718338, + -0.008684664033353329, + -0.023941505700349808, + 0.017042141407728195, + 0.0037448613438755274, + -0.026274487376213074, + 0.0019364453619346023, + 0.000687713734805584, + -0.004104054998606443, + 0.005782663356512785, + 0.009509743191301823, + 0.0002291638229507953, + 0.0012971872929483652, + 0.008755791932344437, + -0.00119583064224571, + -0.028209155425429344, + -0.032462578266859055, + -0.0028682153206318617, + -0.007230107206851244, + 0.010896728374063969, + -0.017170172184705734, + -0.008905159309506416, + -0.016103260219097137, + -0.0007446156814694405, + -0.008094306103885174, + -0.02059851586818695, + -0.0033518821001052856, + -0.002985575469210744, + 0.006262773647904396, + -0.004395677708089352, + 0.019389348104596138, + -0.006010271143168211, + -0.008136983029544353, + 0.016501573845744133, + 0.003944018390029669, + 0.02186458371579647, + -0.011515537276864052, + 0.014609582722187042, + 0.01546311192214489, + -0.006124075036495924, + 0.016359318047761917, + 0.012269488535821438, + 0.010612218640744686, + -0.0019097726326435804, + -0.0029980228282511234, + -0.008713115006685257, + 0.02025710418820381, + 0.03109692968428135, + -0.0026494981721043587, + 0.01694256253540516, + 0.0020413585007190704, + 0.0026868402492254972, + 0.007187430746853352, + -0.025250252336263657, + 0.012440194375813007, + -0.003976025618612766, + -0.001033126492984593, + -0.004029371310025454, + -0.008706002496182919, + -0.01761116087436676, + -0.002775749424472451, + -0.007973389700055122, + 0.005028712097555399, + 0.016501573845744133, + 0.019104838371276855, + 0.013343513011932373, + 0.016017906367778778, + -0.011814272962510586, + 0.010021860711276531, + -0.000978002673946321, + -0.028835076838731766, + 0.023528967052698135, + 0.003117161337286234, + 0.002011129166930914, + -0.004648180212825537, + -0.009047414176166058, + 0.00629833759739995, + -0.009367487393319607, + -0.004370782990008593, + 0.010569541715085506, + -0.013137243688106537, + -0.0203851331025362, + -0.014531342312693596, + -0.007603526581078768, + -0.006650418508797884, + 0.016103260219097137, + 0.0007779566803947091, + -0.007439933251589537, + 0.019289769232273102, + 0.009964958764612675, + 0.0018848779145628214, + -0.0006521500181406736, + -0.006383690517395735, + -0.0008544187294319272, + 0.010092987678945065, + -0.011451522819697857, + -0.001911550760269165, + -0.008905159309506416, + 0.01322970911860466, + -0.0024805704597383738, + -0.005160298198461533, + -0.012098782695829868, + 0.006575734820216894, + -0.012859846465289593, + -0.01883455365896225, + 0.003117161337286234, + 0.010654894635081291, + -0.055593229830265045, + 0.0011638231808319688, + 0.023941505700349808, + -0.01152264978736639, + -0.0068993647582829, + 0.01815173029899597, + 0.013578234240412712, + 0.017852995544672012, + 0.03627501055598259, + 0.013407528400421143, + -0.0026139344554394484, + 0.007760006934404373, + 0.0002647275396157056, + -0.0037661995738744736, + 0.00830057542771101, + -0.008499733172357082, + 0.0007717330590821803, + 0.0024912396911531687, + 0.007944938726723194, + -0.019033711403608322, + 0.024624330922961235, + -0.0032291871029883623, + -0.012418855912983418, + 0.005914248991757631, + 0.01308034174144268, + 0.011131448671221733, + 0.020840348675847054, + -0.011124336160719395, + 0.012810057029128075, + -0.026103781536221504, + 0.0017088374588638544, + -0.008577972650527954, + -0.004925577435642481, + 0.01447444036602974, + 0.0026210471987724304, + 0.00033652185811661184, + 0.008478394709527493, + -0.006454817950725555, + -0.007589301094412804, + -2.5964305677916855e-5, + -0.0016154826153069735, + 0.0014670040691271424, + -0.005078501533716917, + 0.025008419528603554, + 0.023656995967030525, + 0.03303159773349762, + 0.005227868910878897, + -0.0015488006174564362, + 0.024923065677285194, + -0.03712853789329529, + -0.021267114207148552, + -0.014246832579374313, + 0.010754473507404327, + 0.003110048593953252, + 0.0024307812564074993, + 0.028536340221762657, + -0.018379338085651398, + 0.008393041789531708, + -0.0030158048029989004, + 0.0016812755493447185, + 0.010541090741753578, + 0.0214804969727993, + 0.003310983767732978, + 0.008222335949540138, + -0.004285430070012808, + -0.0012180579360574484, + -0.0029322300106287003, + -0.018208632245659828, + -0.007397256791591644, + 0.016743406653404236, + -0.01173603255301714, + -0.004865118768066168, + 0.0003574155271053314, + -0.020129073411226273, + 0.0046446239575743675, + -0.018934132531285286, + -0.00024049976491369307, + -0.0008739787735976279, + -0.00939593929797411, + -0.004385008476674557, + -0.015079023316502571, + -0.004150287713855505, + -0.00800184067338705, + 0.0038764472119510174, + -0.00950262974947691, + 0.00916121806949377, + -0.003047812031581998, + -0.0019542272202670574, + 0.01342175342142582, + 0.0037128538824617863, + 0.008734453469514847, + -0.01358534675091505, + 0.005935587454587221, + -0.006668200250715017, + -0.011558214202523232, + -0.00613118801265955, + 0.0008855370106175542, + 0.005996045656502247, + -0.0024485632311552763, + 0.0210252795368433, + 0.013521332293748856, + -0.003783981315791607, + 0.006351683288812637, + -0.0017203956376761198, + 0.0001791523100109771, + -0.006397916004061699, + -0.0013994330074638128, + 0.017668062821030617, + 0.008741565980017185, + 0.0019328889902681112, + -0.013542670756578445, + 0.016658052802085876, + -0.005832452792674303, + 0.017625387758016586, + -0.010989193804562092, + 0.006116962525993586, + 0.014552680775523186, + 0.037640657275915146, + 0.002117820316925645, + -0.005782663356512785, + -0.00012502876052167267, + -0.009189669042825699, + 0.0020964820869266987, + -0.01529240608215332, + 0.005515935365110636, + 0.020200202241539955, + -0.006437036208808422, + -0.007582188118249178, + -0.02330135926604271, + -0.005018042866140604, + -0.012689140625298023, + -0.0013336400734260678, + -0.012141459621489048, + 0.00904030166566372, + -0.0001332528772763908, + 0.026018429547548294, + -0.002011129166930914, + -0.001226948807016015, + 0.015520013868808746, + 0.009602208621799946, + 0.013279498554766178, + 0.002733072964474559, + 0.0074257077649235725, + -0.014367748983204365, + -0.01034193392843008, + -0.006579291075468063, + -0.013549783267080784, + 0.00847128126770258, + 0.0010286810575053096, + 0.00048722318024374545, + 0.002955346368253231, + 0.001219836063683033, + -0.008784242905676365, + -0.011792934499680996, + -0.00738303130492568, + 0.006291224621236324, + 0.008314801380038261, + 0.0376691073179245, + -0.01604635640978813, + 0.008890933357179165, + 0.002409443026408553, + 0.001316747278906405, + -0.017511583864688873, + -0.006607742048799992, + -0.009516855701804161, + 0.009787139482796192, + 0.013884082436561584, + 0.007073626853525639, + 0.007077183108776808, + -0.009196781553328037, + -0.009459953755140305, + -0.027881968766450882, + -0.01604635640978813, + -0.007283452898263931, + 0.027625909075140953, + 0.012497096322476864, + 0.009004738181829453, + 0.024908840656280518, + 0.004655292723327875, + -0.016444671899080276, + 0.005092727020382881, + 0.012561111710965633, + 0.011330606415867805, + 0.0019097726326435804, + -0.02093992754817009, + -0.008585086092352867, + 0.0017203956376761198, + 0.02068386785686016, + 0.007752894423902035, + -0.009317698888480663, + -0.0030335865449160337, + -0.016629602760076523, + 0.006924259476363659, + 0.022732339799404144, + -0.0151074742898345, + -0.0074257077649235725, + 0.00509983953088522, + 0.030527910217642784, + 0.0320073626935482, + -0.0002607266360428184, + -0.002087591215968132, + 0.009957846254110336, + -0.017298201099038124, + 0.01617438718676567, + -0.0021853914950042963, + -0.0035297006834298372, + 0.018436240032315254, + 0.004555714316666126, + 0.00869888998568058, + 0.007582188118249178, + 0.009950732812285423, + 0.015363533981144428, + -0.0041609569452703, + 0.01342175342142582, + -0.002827316988259554, + -0.006163195241242647, + 0.024026859551668167, + -0.001721284817904234, + -0.012568224221467972, + 0.027867743745446205, + 0.0006454818067140877, + -0.014609582722187042, + 0.019659632816910744, + -0.017155945301055908, + -0.022817691788077354, + -0.0013985439436510205, + 0.02549208514392376, + -0.01836511306464672, + -0.017412004992365837, + 0.0017648503417149186, + -0.013151469640433788, + 0.023315584287047386, + 0.01396232284605503, + 0.032462578266859055, + 0.010562429204583168, + 0.01221969909965992, + 0.014346410520374775, + 0.007016724906861782, + -0.015491562895476818, + 0.00010646893497323617, + -0.009516855701804161, + 0.01705636829137802, + 0.001489231362938881, + -0.00851395819336176, + -0.022561633959412575, + -0.017426230013370514, + 0.00723722018301487, + 0.017283976078033447, + 0.007774232421070337, + -0.005764881614595652, + 0.011430184356868267, + 0.0008224113844335079, + 0.0016839428571984172, + -0.01823708415031433, + -0.008250786922872066, + 0.024297144263982773, + -0.00048544499441049993, + 0.018806103616952896, + -0.006902921013534069, + 0.008819806389510632, + -0.002329424722120166, + -0.015918327495455742, + 0.010619331151247025, + -0.007201656233519316, + -0.00046366220340132713, + -0.0034834679681807756, + -0.008101418614387512, + -0.0037484175991266966, + 0.0043458882719278336, + -0.005747099407017231, + -0.01992991752922535, + -0.004228528123348951, + -0.014104577712714672, + 0.005544386338442564, + 0.0071980999782681465, + 0.015306632034480572, + -0.024211790412664413, + 0.008464168757200241, + 0.024994192644953728, + 0.004385008476674557, + 0.010135664604604244, + -0.0011211467208340764, + -0.015576915815472603, + -0.004008032847195864, + 0.0020929258316755295, + -0.0014065457507967949, + 0.006244991905987263, + 0.005281214602291584, + 0.0015221278881654143, + 0.004374339245259762, + 0.003629279090091586, + 0.0007375029381364584, + -0.017412004992365837, + 0.003307427279651165, + 0.007952051237225533, + 0.0015745843993499875, + -0.01055531669408083, + 0.012468645349144936, + 0.00601382739841938, + 0.00062547717243433, + 0.012098782695829868, + -0.007126972544938326, + -0.0021693878807127476, + 0.022646985948085785, + -0.010171228088438511, + 0.007390144281089306, + 0.008748678490519524, + -0.001565693411976099, + 0.014445989392697811, + -0.00032096271752379835, + 0.008257899433374405, + -0.011864062398672104, + -0.0011460413224995136, + 0.0011851615272462368, + -0.00013114127796143293, + 0.008585086092352867, + 0.004815329797565937, + 0.0033821112010627985, + -0.014922543428838253, + 0.013236822560429573, + -0.020413583144545555, + 0.011928076855838299, + -0.008791355416178703, + -0.005981820169836283, + -0.007190987467765808, + -0.0009059861768037081, + 0.01735510304570198, + -0.002948233624920249, + 0.02873549796640873, + -0.002603265456855297, + 0.005967594683170319, + -0.01917596533894539, + 0.011657792143523693, + -0.027455203235149384, + -0.01356400828808546, + -0.017298201099038124, + -0.018308211117982864, + -0.018123280256986618, + -0.004683743696659803, + 0.01879187859594822, + -0.007077183108776808, + -0.0009202116634696722, + 0.04082716628909111, + 0.005352342035621405, + 0.002925117267295718, + -0.020584290847182274, + 0.005053606815636158, + -0.01137328241020441, + -0.015477337874472141, + 0.02224867232143879, + -0.008834031410515308, + -0.002516134176403284, + 0.012824282981455326, + 0.02414066344499588, + -0.024880388751626015, + 0.005092727020382881, + 0.018606945872306824, + 0.012568224221467972, + -0.008257899433374405, + 0.0036417264491319656, + -0.01158666517585516, + -0.017255524173378944, + -0.0017026137793436646, + -0.011010532267391682, + 0.014851415529847145, + 0.015832975506782532, + -0.027782389894127846, + 0.004249866586178541, + 0.010526865720748901, + -0.005761324893683195, + 0.005583506543189287, + -0.01305900327861309, + -0.0031918452586978674, + 0.01173603255301714, + -0.005850234534591436, + 0.012660689651966095, + -0.004192964173853397, + 0.006842462811619043, + 0.011942301876842976, + 0.00500381737947464, + 0.001589698949828744, + -0.00983692891895771, + 0.013713376596570015, + -0.017497356981039047, + 0.0011318158358335495, + -0.017710739746689796, + -0.014723386615514755, + 0.001838645082898438, + 0.007447046227753162, + -0.008208109997212887, + -0.002775749424472451, + 0.005903580226004124, + -0.007247889414429665, + 0.01053397823125124, + -0.006184533704072237, + -0.0008415268966928124, + 0.02098260447382927, + -0.0032096270006150007, + -0.0005765770329162478, + -0.014367748983204365, + -0.015818748623132706, + -0.010171228088438511, + -0.002987353829666972, + -0.004865118768066168, + -0.0016581591917201877, + -0.020669642835855484, + 0.02645941823720932, + -0.0037270793691277504, + 0.00950262974947691, + -0.001904438016936183, + -0.013805842027068138, + 0.003302092896774411, + 0.020570063963532448, + 0.021850358694791794, + 0.014481552876532078, + -0.027796614915132523, + 0.013066116720438004, + 0.002432559384033084, + 0.011344831436872482, + -0.009865379892289639, + 0.015491562895476818, + 0.0006205872050486505, + 0.0037626430857926607, + -0.025164898484945297, + -0.011743145063519478, + -0.0051460727117955685, + -0.01689988747239113, + 0.016160162165760994, + -0.002402330283075571, + -0.0020538056269288063, + 0.017369328066706657, + -0.011408845894038677, + -0.010277919471263885, + -0.007091408595442772, + -0.011295042000710964, + -0.00011191463272552937, + 0.011117223650217056, + -0.026402516290545464, + -0.020314006134867668, + -0.0018261978402733803, + -0.01604635640978813, + -0.00016881660849321634, + -0.019119063392281532, + 0.00221206434071064, + 0.014524229802191257, + 0.014559793286025524, + 0.029418321326375008, + -0.004858006257563829, + 0.018393563106656075, + -0.0031207178253680468, + 0.02224867232143879, + -0.002028911141678691, + 0.009886718355119228, + 0.002749076811596751, + 0.01202765479683876, + -0.02856479212641716, + 0.005551498848944902, + -0.0015683607198297977, + -0.0006699318764731288, + -0.002592596225440502, + -0.013670699670910835, + 0.011785821989178658, + -0.02396995760500431, + 0.021850358694791794, + 0.0004434353322722018, + -0.004925577435642481, + -0.013706263154745102, + 0.005569281056523323, + 0.003680846653878689, + -0.02637406624853611, + 0.007247889414429665, + 0.007468384224921465, + -0.028749722987413406, + -0.013194145634770393, + -1.69761260622181e-5, + 0.015349308028817177, + -0.007937825284898281, + -0.005818227306008339, + -0.016572700813412666, + 0.014865641482174397, + -0.023685447871685028, + -0.02680083177983761, + -0.00867755152285099, + 0.006693094968795776, + 0.02603265456855297, + 0.004562827292829752, + -0.0363888144493103, + -0.007909374311566353, + -0.012525547295808792, + -0.010413061827421188, + -0.008115644566714764, + -0.010263693518936634, + -0.007560850121080875, + 0.00046677401405759156, + -0.0019133290043100715, + -0.011494198814034462, + 0.02987353689968586, + 0.00358126824721694, + 0.004904238972812891, + -0.0018848779145628214, + 0.016700729727745056, + 0.00037897605216130614, + -0.0017808540724217892, + 0.01630241610109806, + -0.002094703959301114, + -0.02396995760500431, + -0.016032131388783455, + -0.011110111139714718, + -0.0015185715164989233, + 0.014012111350893974, + -0.004527263343334198, + 0.00680334260687232, + -0.008215222507715225, + 0.00391912367194891, + -0.004641067236661911, + 0.007432820741087198, + -0.011963640339672565, + 0.024453625082969666, + -0.01124525349587202, + 0.006099180784076452, + 0.002240515314042568, + 0.00886959582567215, + -0.0009602208738215268, + 0.017198622226715088, + -0.0003549705434124917, + -0.0031064923387020826, + 0.005558611825108528, + -0.0030051355715841055, + 0.006472599692642689, + 0.009004738181829453, + -0.03627501055598259, + -0.009403051808476448, + -0.005547942593693733, + 0.009637772105634212, + -0.0018261978402733803, + -0.012376179918646812, + -0.016629602760076523, + 0.013492881320416927, + -0.012475757859647274, + 0.016999466344714165, + -0.00535945501178503, + -0.00939593929797411, + 0.0110603217035532, + -0.010839826427400112, + -0.008549521677196026, + -0.014837190508842468, + -0.007432820741087198, + 0.0033056491520255804, + 0.010277919471263885, + 0.01685721054673195, + -0.0203851331025362, + 0.011394620873034, + -0.024951515719294548, + 0.028835076838731766, + -0.024624330922961235, + 0.004089829511940479, + 0.012105895206332207, + -0.00798050221055746, + 0.010057424195110798, + 0.014623807743191719, + 0.019119063392281532, + -0.018692299723625183, + 0.004331662785261869, + -7.151644967962056e-5, + -0.007752894423902035, + -0.007439933251589537, + -0.0014332184800878167, + 0.019289769232273102, + 0.0009148771059699357, + 0.02261853590607643, + -0.01377739105373621, + -0.0021444931626319885, + -0.019901465624570847, + -0.01638776995241642, + -0.02270388789474964, + -0.02776816487312317, + 0.015818748623132706, + 0.004893569741398096, + 0.022903045639395714, + -0.0004254311788827181, + 0.0042071896605193615, + 0.018976809456944466, + -0.0008997624972835183, + 0.0046090600080788136, + 0.016786083579063416, + 0.0032540818210691214, + 0.01257533673197031, + -0.008841144852340221, + -0.036502618342638016, + 0.007525286171585321, + 0.01584720052778721, + 0.0025072433054447174, + 0.008549521677196026, + -4.064823951921426e-5, + -0.0016608263831585646, + 0.01815173029899597, + -0.01344309188425541, + 0.0017897449433803558, + -0.007297678384929895, + 0.003255859948694706, + 0.011558214202523232, + 0.014310847036540508, + -0.007030950393527746, + -0.006600629072636366, + 0.0001519238285254687, + 0.00886959582567215, + 0.0009130989201366901, + 0.006522389128804207, + -0.004459692165255547, + 0.0024805704597383738, + -0.0018884342862293124, + -0.002412999514490366, + 0.009431502781808376, + 0.002934008138254285, + 0.007902261801064014, + -0.003922679927200079, + -0.010349047370254993, + -0.017070593312382698, + 0.012489983811974525, + -0.007205212954431772, + -0.003519031684845686, + 0.007340354844927788, + 0.0061027370393276215, + 0.03451104834675789, + 0.014993670396506786, + -0.015391984954476357, + -0.013620910234749317, + 0.007930712774395943, + 0.0069349282421171665, + 0.01608903333544731, + 0.020370908081531525, + -0.035962048918008804, + 0.016672279685735703, + -0.008087193593382835, + -0.007290565874427557, + 0.012127233669161797, + -0.004754871595650911, + 0.015420435927808285, + -0.03146679326891899, + 0.009680449031293392, + 0.006074286065995693, + 0.016145935282111168, + -0.0010953630553558469, + 0.016017906367778778, + 0.005409243982285261, + 0.007375918794423342, + -0.002167609753087163, + 0.021124858409166336, + 0.007888036780059338, + 0.021423593163490295, + -0.005227868910878897, + 0.006739327684044838, + 0.028237605467438698, + 0.00983692891895771, + 0.023201780393719673, + -0.035336125642061234, + 0.0020929258316755295, + 0.015448886901140213, + 0.005921361967921257, + -0.024752359837293625, + 0.004481030628085136, + -0.006376577541232109, + -0.01406901329755783, + 0.0184077899903059, + 0.008385928347706795, + -0.0003467464121058583, + 0.012959425337612629, + 0.0019275544909760356, + -0.01660115085542202, + 0.0028522114735096693, + -0.013300837017595768, + -0.010313482955098152, + -0.00014514449867419899, + 0.005910692736506462, + -0.00738303130492568, + -0.007674654014408588, + 0.006835349835455418, + -0.022533182054758072, + -0.012326390482485294, + 0.02039935812354088, + 0.01946047507226467, + 0.0032060707453638315, + 0.021921485662460327, + 0.0007375029381364584, + -0.017241299152374268, + -0.008208109997212887, + 0.016842985525727272, + -0.0010838048765435815, + -0.012881184928119183, + -0.003383889328688383, + 0.00847128126770258, + 0.012447306886315346, + -0.005213643424212933, + -0.01135194394737482, + -0.025719692930579185, + -0.021039506420493126, + -0.038323480635881424, + -0.003065594006329775, + 0.004385008476674557, + 0.018934132531285286, + 0.003094044979661703, + -0.006760666146874428, + 0.01141595933586359, + -0.009118542075157166, + 0.004008032847195864, + 0.014538454823195934, + 0.007279896643012762, + -0.012212586589157581, + -0.010541090741753578, + 0.011259478516876698, + -0.00970890000462532, + 0.004637510981410742, + 0.010313482955098152, + -0.006870913784950972, + -0.0007539512007497251, + 0.005964038427919149, + -0.011423071846365929, + 0.008762904442846775, + -0.00562262674793601, + 0.006188089959323406, + 0.01617438718676567, + -0.006351683288812637, + 0.010854052379727364, + 0.00904030166566372, + -0.012169910594820976, + -0.02903423272073269, + -0.0002491684281267226, + -0.01021390501409769, + 0.01726974919438362, + 0.002487683203071356, + 0.031409889459609985, + -0.005355898290872574, + 0.011337718926370144, + -0.005533717107027769, + 0.00302825216203928, + 0.015349308028817177, + -0.005427026189863682, + -0.002966015599668026, + 0.009175444021821022, + 0.015391984954476357, + -0.003197179874405265, + -0.012013429775834084, + 0.004680187441408634, + -0.012973650358617306, + 0.0005836897762492299, + -0.025634340941905975, + -0.004932689946144819, + -0.018336661159992218, + -0.00646548718214035, + 0.011344831436872482, + -0.0031473906710743904, + -0.021750779822468758, + 0.007116303313523531, + -0.017924122512340546, + 0.006376577541232109, + 0.010982081294059753, + 0.01782454364001751, + -0.017241299152374268, + -0.017895672470331192, + 0.0031118267215788364, + -0.00672865891829133, + -0.007880923338234425, + -0.009068752638995647, + 0.03519387170672417, + 0.02536405622959137, + 0.025463635101914406, + -0.015349308028817177, + 0.0059889331459999084, + -0.018763426691293716, + 0.02182190865278244, + -0.019047936424613, + -0.008670439012348652, + 0.007258558180183172, + -0.005149628967046738, + 0.0010144555708393455, + 0.0019328889902681112, + 0.00509628327563405, + -0.01103898324072361, + 0.003259416436776519, + 0.0006232544546946883, + -0.0041182804852724075, + -0.01718439720571041, + 0.007617752067744732, + -0.006291224621236324, + -0.013371963985264301, + -0.014908317476511002, + 0.029005782678723335, + 0.01677185669541359, + -0.011529763229191303, + 0.003079819492995739, + 0.01463803369551897, + -0.0011264813365414739, + -0.018464691936969757, + -0.00526698911562562, + 0.014467327855527401, + 4.674686351791024e-6, + 0.0045841652899980545, + -0.0025463635101914406, + -0.0026868402492254972, + 0.01546311192214489, + 0.035962048918008804, + -0.002398774027824402, + -0.03379977494478226, + -0.015207053162157536, + -0.014652258716523647, + 0.0402866005897522, + 0.020484711974859238, + 0.04193675518035889, + 0.01672918163239956, + -0.018934132531285286, + 0.019261319190263748, + 0.0015399097464978695, + -0.012710479088127613, + -0.0023169773630797863, + -0.006145413499325514, + -0.003328765509650111, + -0.012902523390948772, + -0.008727340959012508, + -0.01958850584924221, + -0.024709682911634445, + 0.017881445586681366, + 0.015150151215493679, + 0.006220097187906504, + -0.0013700928539037704, + -0.015207053162157536, + -0.006977604702115059, + -0.03169440105557442, + 0.02165120281279087, + -0.0005316778551787138, + 0.001642155461013317, + 0.010797150433063507, + 0.006518832873553038, + -0.007262114901095629, + 0.019232867285609245, + -0.005202974658459425, + -0.00738303130492568, + 0.0066184112802147865, + -0.011003419756889343, + 0.016700729727745056, + -0.006259217392653227, + -0.02961747907102108, + -0.030783969908952713, + 0.01647312194108963, + 0.016629602760076523, + 0.040684912353754044, + 0.017255524173378944, + -0.005334560293704271, + -0.014737611636519432, + 0.02708534151315689, + 0.009844042360782623, + -0.01038461085408926, + 0.019190192222595215, + 0.001596811693161726, + -0.020584290847182274, + 0.005672415718436241, + -0.006173864472657442, + -0.0030976012349128723, + 0.03960377722978592, + 0.0057506561279296875, + -0.015818748623132706, + 0.011835611425340176, + 0.013485768809914589, + 0.0010624666465446353, + 0.005515935365110636, + -0.0029375646263360977, + -0.009495517238974571, + 0.0013078564079478383, + -0.0042071896605193615, + -0.005042937584221363, + 0.013499993830919266, + 0.011508424766361713, + 0.00029917992651462555, + 0.013770278543233871, + -0.005427026189863682, + 0.0009397717076353729, + -0.004818886052817106, + 0.024254467338323593, + -0.01242596935480833, + -0.004025815054774284, + -0.022476280108094215, + -0.01660115085542202, + -0.013315062038600445, + 0.011223915033042431, + 0.0021551623940467834, + 0.03434034436941147, + -0.008947836235165596, + 0.004737089388072491, + 0.01815173029899597, + 0.021722329780459404, + -0.006095624063163996, + -0.0035759336315095425, + 0.004744202364236116, + -0.0069455974735319614, + 0.002640607301145792, + 0.009175444021821022, + -0.011053209193050861, + 0.02064119279384613, + 0.006074286065995693, + -0.01373471412807703, + -0.0038728907238692045, + 0.006714433431625366, + -0.002194282365962863, + -0.0016883882926777005, + -0.0018902125302702188, + 0.005804001819342375, + -0.00613118801265955, + 0.004705082159489393, + -0.00156924978364259, + 0.014332185499370098, + 0.010256581008434296, + -0.00740436976775527, + -0.0026975092478096485, + 0.0048224423080682755, + -0.0063659087754786015, + -0.011864062398672104, + -0.0050856140442192554, + 0.008535296656191349, + -0.031210733577609062, + 0.02903423272073269, + -0.024339821189641953, + 0.006412141490727663, + 0.012440194375813007, + 0.002043136628344655, + 0.010775811970233917, + -0.006077842321246862, + 0.004221415147185326, + 0.005316778551787138, + -0.003038921160623431, + -0.005850234534591436, + 0.0019435581052675843, + 0.009082977660000324, + 0.012959425337612629, + 0.016885660588741302, + 0.017468906939029694, + 0.01668650470674038, + 0.013386189937591553, + 0.011686243116855621, + -0.006888695526868105, + 0.005505266133695841, + 0.0083219138905406, + 0.014894092455506325, + 0.003003357443958521, + 0.009716012515127659, + -0.002208507852628827, + 0.004541488830000162, + -0.003680846653878689, + -0.002244071802124381, + 0.005060719326138496, + -0.030186498537659645, + 0.03049946017563343, + 0.01933244615793228, + -0.004669518209993839, + 0.0018208632245659828, + 0.0016848319210112095, + 0.013905420899391174, + 0.03320230171084404, + -0.009175444021821022, + 0.0025143560487776995, + 0.01786722056567669, + 0.001631486346013844, + 0.003494136966764927, + -0.047968365252017975, + 0.00863487459719181, + -0.008158320561051369, + 0.006938484963029623, + -0.006280555855482817, + 0.004274760838598013, + -0.016956789419054985, + 0.03855108842253685, + -0.025933075696229935, + -0.006828237324953079, + 0.006280555855482817, + -0.022063741460442543, + 0.009531080722808838, + -0.008293462917208672, + 0.0038871162105351686, + -0.007375918794423342, + -0.009346149861812592, + -0.006675313226878643, + 0.020925702527165413, + 0.009431502781808376, + -0.009275021962821484, + -0.009730237536132336, + -0.001911550760269165, + 0.011110111139714718, + 0.007290565874427557, + -0.016615377739071846, + 0.0073119038715958595, + 0.01765383780002594, + -0.006077842321246862, + -0.031324539333581924, + 0.0013354182010516524, + 0.02802422270178795, + -0.012226812541484833, + -0.010505527257919312, + 0.0086562130600214, + -0.012361953966319561, + -0.0019915690645575523, + -0.012177023105323315, + 0.010242355987429619, + -0.0079876147210598, + -0.02241937816143036, + -0.01394809689372778, + -0.02456742897629738, + -0.0023223119787871838, + 0.012845621444284916, + -0.013805842027068138, + -0.0026068217121064663, + 0.01806637831032276, + 0.00931058544665575, + 0.010526865720748901, + 0.022547408938407898, + 0.016928337514400482, + -0.009467066265642643, + 0.020314006134867668, + -0.000191821891348809, + 0.017155945301055908, + -0.030471008270978928, + -0.011401733383536339, + 0.012859846465289593, + 0.012874072417616844, + -0.014083239249885082, + 0.005683084949851036, + 0.010939405299723148, + -0.01038461085408926, + 0.01891990751028061, + -0.00970890000462532, + -0.009289247915148735, + -0.006806898862123489, + 0.0016839428571984172, + -0.0086562130600214, + 0.0025837053544819355, + -0.009175444021821022, + 0.0015443551819771528, + -0.012717591598629951, + -0.003515475196763873, + 0.010221017524600029, + 0.0009202116634696722, + 0.00620231544598937, + -0.02544940821826458, + 0.014339298009872437, + -0.02072654478251934, + -0.004075604025274515, + 0.00022938608890399337, + 0.006309006828814745, + 0.00918255653232336, + -0.00456993980333209, + -0.009943620301783085, + 0.003837327007204294, + 0.004491699859499931, + -0.005782663356512785, + 0.004370782990008593, + -0.007888036780059338, + -0.0015719170914962888, + 0.011536875739693642, + 0.006042278837412596, + -0.0027739712968468666, + -0.015064798295497894, + -0.006227210164070129, + 0.0042320843786001205, + -0.010078762657940388, + -0.0036559519357979298, + 0.03192200884222984, + 0.0008753124275244772, + -0.011558214202523232, + -0.016032131388783455, + 0.009886718355119228, + -0.003101157722994685, + 0.0047690970823168755, + 0.008798467926681042, + 0.03630346059799194, + 0.00064637087052688, + -0.03303159773349762, + -0.0026850621215999126, + 0.024837711825966835, + -0.005825339816510677, + 0.04190830513834953, + 0.011693356558680534, + 0.019830338656902313, + -0.02633138932287693, + 0.012105895206332207, + -0.0045841652899980545, + 0.009225232526659966, + 0.007240776438266039, + -0.0017444011755287647, + -0.007102077826857567, + -0.013898307457566261, + -0.006024496629834175, + -0.0005681306938640773, + 0.003218518104404211, + 0.007091408595442772, + 0.009388825856149197, + 0.0002520579728297889, + -0.012810057029128075, + -0.008947836235165596, + -0.0022102862130850554, + -0.007176761981099844, + -0.0004469917039386928, + -0.014666484668850899, + -0.007240776438266039, + 0.0047690970823168755, + -0.0016839428571984172, + 0.0186211708933115, + -0.0065935165621340275, + -0.014140141196548939, + -0.015576915815472603, + 0.0008944279397837818, + -0.010612218640744686, + -0.0078026833944022655, + -0.0053487857803702354, + 0.011046095751225948, + 0.013613797724246979, + 0.013364851474761963, + -0.003600828116759658, + 0.007052288856357336, + -0.009723125025629997, + -0.02287459373474121, + -0.0073119038715958595, + -0.0001226948807016015, + 0.008350364863872528, + 0.020612740889191628, + -0.0006401472492143512, + 0.00817254651337862, + 0.030186498537659645, + -0.023415163159370422, + 0.0015292406314983964, + 0.021295564249157906, + 0.011423071846365929, + 0.002489461563527584, + -0.012497096322476864, + 0.00451659457758069, + -0.0035990499891340733, + 0.01765383780002594, + -0.01497944537550211, + -0.021508947014808655, + 0.001911550760269165, + 0.008777129463851452, + 0.0043281065300107, + 0.006917146500200033, + 0.0040151458233594894, + 0.0034852460958063602, + 0.019047936424613, + 0.017383553087711334, + 0.007916487753391266, + -0.0041182804852724075, + -0.002596152713522315, + 0.02910536155104637, + -0.004975366406142712, + -0.04372916743159294, + 0.013023439794778824, + 0.0007939604111015797, + -0.004342332016676664, + -0.014922543428838253, + 0.0063552395440638065, + -0.034397244453430176, + -0.013222596608102322, + 0.019019486382603645, + -0.0064192540012300014, + 0.00852818414568901, + -0.0016874992288649082, + -0.01550578884780407, + -0.0005370124126784503, + -0.006550840102136135, + 0.007123416289687157, + -0.0005090059712529182, + 0.04031505063176155, + 0.008663325570523739, + -0.0010224573779851198, + -0.022945722565054893, + -0.009765801951289177, + 0.01120968908071518, + 0.004655292723327875, + -0.02115331031382084, + -0.0014945659786462784, + 0.01228371448814869, + 0.0177391916513443, + -0.0065828473307192326, + 0.0002378324861638248, + -0.008094306103885174, + 0.0007192765478976071, + -0.0010517974151298404, + -0.020584290847182274, + -0.019744986668229103, + -0.009744463488459587, + -0.0005370124126784503, + 0.0042676483280956745, + -0.002969571854919195, + 0.017767641693353653, + -0.008762904442846775, + 0.009573757648468018, + 0.02633138932287693, + 0.013016327284276485, + -0.017127495259046555, + -0.006874470040202141, + 0.004473918117582798, + 0.0045308200642466545, + -0.009097203612327576, + 0.01057665515691042, + 0.020669642835855484, + 0.005213643424212933, + -0.0058644600212574005, + 0.0029357862658798695, + 0.010519753210246563, + 0.007767119910567999, + -0.010142777115106583, + -0.016487346962094307, + -0.00755373714491725, + -0.011977866291999817, + -0.00830057542771101, + -0.00740436976775527, + -0.01449577882885933, + -0.015875650569796562, + -0.0024983524344861507, + -0.0095239682123065, + 0.012226812541484833, + -0.005590619053691626, + -0.019944142550230026, + 0.037185441702604294, + -0.006262773647904396, + 0.005441251676529646, + 0.015036347322165966, + 0.00022627426369581372, + -0.0011798269115388393, + -0.005007374100387096, + 0.010469963774085045, + 0.01322970911860466, + 0.00250190868973732, + 0.0013878747122362256, + 0.002318755490705371, + -0.004726420622318983, + 0.00010830268729478121, + 0.01937512308359146, + 0.016615377739071846, + 0.007496835198253393, + 0.019531603902578354, + 0.014694935642182827, + -0.000746393867302686, + 0.010078762657940388, + -0.010640669614076614, + 0.0029571244958788157, + 0.004317437298595905, + -0.013137243688106537, + -0.01647312194108963, + 0.029589027166366577, + -0.012333502992987633, + -0.004754871595650911, + -0.0006032498786225915, + -0.008784242905676365, + -0.007251445669680834, + -0.0041182804852724075, + 0.010242355987429619, + 0.008350364863872528, + 0.0028290951158851385, + -0.013315062038600445, + -0.010306370444595814, + -0.008784242905676365, + 0.01621706411242485, + 0.02186458371579647, + 0.006917146500200033, + -0.0017986359307542443, + -0.01068334560841322, + 0.01571917161345482, + -0.004683743696659803, + 0.012340616434812546, + -0.0011433741310611367, + 1.705253339423507e-6, + 0.007703104987740517, + 0.004260535351932049, + 0.00184575782623142, + -0.010967856273055077, + -0.019787661731243134, + 0.01593255251646042, + 0.01074024848639965, + 0.005352342035621405, + -0.02480926178395748, + -0.015434660948812962, + 0.01756848581135273, + -0.004726420622318983, + -0.026971537619829178, + -0.004534376319497824 + ], + "2260fb63-9f1d-43ec-b992-7857a3a39610": [ + -0.0014034354826435447, + -0.01476527564227581, + -0.004115186631679535, + 0.0022378202993422747, + -0.008417274802923203, + 0.0036846438888460398, + 0.02859603986144066, + 0.02851593866944313, + -0.030518462881445885, + 0.059915512800216675, + -0.0055069406516849995, + 0.01060002576559782, + 0.04221320152282715, + -0.020172089338302612, + 0.011841590516269207, + 0.04776686802506447, + -0.01660759747028351, + 0.01130758412182331, + 0.01735520549118519, + -0.02966405265033245, + 0.04328121617436409, + -0.021760758012533188, + -0.04896838217973709, + 0.0011422729585319757, + 0.01714160293340683, + -0.003978347405791283, + 0.0003149803087580949, + 0.012068543583154678, + -0.01293630339205265, + -0.009271685034036636, + 0.02662021666765213, + 0.014031017199158669, + 0.009819041937589645, + 0.008824454620480537, + 0.015526234172284603, + -0.018877124413847923, + 0.0021577193401753902, + -0.02682046964764595, + -0.047045961022377014, + 0.022441616281867027, + 0.012842852622270584, + 0.03377590328454971, + 0.01855672150850296, + -0.018743623048067093, + -0.031266070902347565, + 0.019945137202739716, + -0.010426473803818226, + -0.014591723680496216, + 0.014164518564939499, + -0.001496052136644721, + 0.027661528438329697, + -0.001977492356672883, + 0.021854210644960403, + 0.00010742705489974469, + 0.02913004718720913, + -0.022908871993422508, + 0.045283738523721695, + -0.009398511610925198, + 0.022601818665862083, + -0.05617746710777283, + 0.019023975357413292, + -0.023015674203634262, + 0.02073279581964016, + -0.008050145581364632, + 0.026433315128087997, + 0.01694135181605816, + -0.004435590002685785, + 0.01266930066049099, + -0.02261516824364662, + 0.004986284300684929, + 0.03778094798326492, + 0.026646917685866356, + -0.03067866526544094, + 0.0372469425201416, + 0.014458222314715385, + -0.018543370068073273, + 0.03767414763569832, + 0.04448273032903671, + 0.01188831590116024, + -0.011114006862044334, + 0.015873339027166367, + 0.0019257604144513607, + 0.023549679666757584, + -0.0015744843985885382, + 0.05959510803222656, + 0.018930524587631226, + -0.02627311274409294, + -0.04992959275841713, + 0.021800808608531952, + -0.030571863055229187, + -0.00897798128426075, + 0.02362978085875511, + -0.01381741464138031, + 0.003848183201625943, + -0.0010187840089201927, + -0.004632505122572184, + 0.041625794023275375, + -0.007436038460582495, + 0.009698890149593353, + -0.01128088403493166, + 0.035137616097927094, + 0.009945868514478207, + 0.010312997736036777, + 0.005627091974020004, + 0.00029599806293845177, + -0.022855471819639206, + 0.030732065439224243, + 0.0001770982053130865, + -0.01692800037562847, + 0.010353048332035542, + 0.007322561927139759, + -0.013470309786498547, + 0.0020826247055083513, + 0.011474461294710636, + -0.06616338342428207, + -0.02803533338010311, + -0.046164847910404205, + -0.019277628511190414, + -2.0546729501802474e-5, + -0.03599202632904053, + 0.03147967532277107, + -0.027821730822324753, + -0.02031894214451313, + -0.0028769592754542828, + -0.03689983859658241, + 0.021373603492975235, + 0.008337174542248249, + 0.02384338341653347, + 0.023683181032538414, + 0.036873139441013336, + -0.015285931527614594, + 0.005219912156462669, + 0.0009562051272951066, + 0.005573691334575415, + 0.036606136709451675, + 0.008437300100922585, + 0.005864057224243879, + 0.0510777086019516, + -0.008330498822033405, + 0.003494404023513198, + -0.06589638441801071, + -0.006301274988800287, + -0.04002377763390541, + 0.01124750915914774, + 0.009565388783812523, + -0.023950185626745224, + -0.016153691336512566, + 0.03609883040189743, + -0.038234855979681015, + 0.0029870979487895966, + -0.07395987957715988, + -0.023055724799633026, + -0.06210493668913841, + -0.003087224205955863, + 0.01787586323916912, + -0.028702842071652412, + -0.01035972312092781, + 0.022027762606739998, + 0.010826978832483292, + 0.07518809288740158, + 0.028809642419219017, + -0.06028931587934494, + 0.017328506335616112, + 0.0341230072081089, + 0.0644545629620552, + 0.0071022845804691315, + 0.05745908245444298, + -0.00897798128426075, + -0.030384961515665054, + 0.01639399491250515, + 0.01632724329829216, + -0.02085294760763645, + 0.024777894839644432, + 0.004529041238129139, + -0.017702311277389526, + -0.015152430161833763, + 0.022922221571207047, + 0.04274720698595047, + -0.005446864757686853, + -0.028302336111664772, + -0.007302536629140377, + -0.017448658123612404, + 0.04960918799042702, + 0.0017538771498948336, + 0.0006341325351968408, + 0.03940966725349426, + 0.028569338843226433, + 0.00799674540758133, + -0.005787293892353773, + 0.000945358129683882, + 0.0050597102381289005, + -0.008630877360701561, + -0.02979755401611328, + -0.007836543023586273, + -0.021413654088974, + -0.05484245344996452, + -0.006030934397131205, + 0.007489439100027084, + -0.00120652059558779, + 0.02317587472498417, + -0.016647648066282272, + -0.040130577981472015, + -0.004742643795907497, + 0.032067082822322845, + -0.029370348900556564, + 0.028435837477445602, + -0.04314771294593811, + -0.018276367336511612, + 0.04125199094414711, + -0.038448456674814224, + 0.0204657930880785, + -0.04755326360464096, + -0.013670562766492367, + -0.026473363861441612, + -0.0029487162828445435, + 0.00921160914003849, + -0.013016404584050179, + 0.012168670073151588, + 0.003978347405791283, + -0.036472633481025696, + 0.021787459030747414, + 0.02186756022274494, + -0.004615817219018936, + -0.028088733553886414, + -0.03802125155925751, + -0.029904356226325035, + -0.02742122672498226, + 0.03385600075125694, + -0.017929263412952423, + 0.01836981810629368, + 0.00031185135594569147, + 0.007669666316360235, + -0.0036245679948478937, + 0.021013149991631508, + -0.00847067590802908, + 0.029290247708559036, + 0.03596532717347145, + 0.00120652059558779, + -0.00998591911047697, + 0.018102815374732018, + -0.009238310158252716, + 0.010993856005370617, + 0.00250649219378829, + -0.007322561927139759, + -0.0016687698662281036, + 0.03521771728992462, + -0.0006053462857380509, + 0.04816737398505211, + 0.014257969334721565, + -0.005590378772467375, + 0.010246247053146362, + 0.03001115657389164, + 0.019557982683181763, + 0.003597867675125599, + -0.020692745223641396, + 0.06450796872377396, + 0.04272050783038139, + -0.02663356624543667, + -0.01266262587159872, + 0.014738575555384159, + -0.002967072883620858, + 0.042587004601955414, + 0.020625995472073555, + 0.0124623728916049, + 0.008804429322481155, + -0.024537591263651848, + 0.04838097468018532, + -0.019557982683181763, + 0.0037113442085683346, + 0.01557963527739048, + 0.049208685755729675, + 0.02268191985785961, + 0.0015544591005891562, + 0.030598564073443413, + 0.01395091600716114, + 0.006104359868913889, + 0.031266070902347565, + 0.010159471072256565, + 0.012395622208714485, + 0.013083155266940594, + 0.005854044575244188, + -0.037433844059705734, + 0.005490252748131752, + 0.016273843124508858, + 0.0145249729976058, + -0.0029136722441762686, + -0.035191018134355545, + -0.02269526943564415, + -0.04240010306239128, + -0.011688063852488995, + 0.007442713249474764, + 0.023002322763204575, + -0.004839432425796986, + 0.007662991061806679, + -0.008403925225138664, + 0.025084948167204857, + -0.016567546874284744, + -0.0063980636186897755, + -0.006521552335470915, + 0.02864944003522396, + 0.0024664418306201696, + 0.011407710611820221, + 0.01720835454761982, + -0.02417713776230812, + 0.007229111157357693, + -0.008524076081812382, + 0.028222234919667244, + 0.06007571518421173, + -0.028569338843226433, + 0.03353559970855713, + 0.016153691336512566, + -0.05257292464375496, + -0.0283824373036623, + -0.027140872552990913, + 0.00594415795058012, + 0.014565023593604565, + 0.0017555458471179008, + -0.001425129477865994, + -0.03388270363211632, + -0.03772754967212677, + 0.014458222314715385, + -0.0073092118836939335, + -0.04990289360284805, + 0.02309577539563179, + 0.0267670676112175, + -0.021827509626746178, + 0.032894790172576904, + -0.000892791838850826, + -0.040397580713033676, + 0.016554197296500206, + -0.04827417433261871, + -0.009471938014030457, + -0.00941853690892458, + 0.0002465607540216297, + -0.021453704684972763, + -0.03700663894414902, + -0.053480736911296844, + -0.021587206050753593, + 0.030705364421010017, + -0.014658474363386631, + -0.008203672245144844, + -0.04763336479663849, + 0.042106401175260544, + -0.015499534085392952, + 0.0027217636816203594, + -0.025165049359202385, + -0.023416178300976753, + 0.04314771294593811, + -0.018249666318297386, + 0.01371061336249113, + 0.000801843882072717, + -0.010319672524929047, + 0.025966059416532516, + 0.005136473570019007, + 0.03500411659479141, + 0.013497010804712772, + -0.026179661974310875, + -0.02324262633919716, + 0.03962327167391777, + 0.000508140423335135, + 0.01654084585607052, + -0.013663887046277523, + 0.007295861840248108, + -0.005363426171243191, + -0.0249247457832098, + -0.006935407407581806, + -0.01938443072140217, + -0.013897514902055264, + -0.019397780299186707, + 0.005917457863688469, + 0.004749319050461054, + 0.004962921608239412, + -0.034176405519247055, + -0.04063788428902626, + -0.001006268197670579, + -0.012749401852488518, + 0.034443408250808716, + -0.021854210644960403, + -0.024217188358306885, + 0.014578373171389103, + 0.01033302303403616, + -0.031533073633909225, + 0.011734789237380028, + 0.03163987770676613, + -0.001633725711144507, + -0.00044723032624460757, + 0.011975092813372612, + -0.01290292851626873, + -0.023883434012532234, + 0.01219537016004324, + -0.0014793644659221172, + -0.012816152535378933, + -0.016313893720507622, + -0.008003420196473598, + 0.022668570280075073, + -0.005493590142577887, + 0.001967479707673192, + -0.012295495718717575, + 0.013844114728271961, + 0.00773641699925065, + -0.0007384306518360972, + -0.04199960082769394, + 0.0004660039849113673, + 0.0016312225488945842, + 0.02507159858942032, + -0.037353742867708206, + -0.009772316552698612, + 0.005403476767241955, + 0.012415647506713867, + -0.013897514902055264, + -0.021413654088974, + 0.01814286597073078, + -0.01592673920094967, + 0.03625903278589249, + 0.03700663894414902, + 0.016634298488497734, + -0.023416178300976753, + 0.05858049541711807, + -0.0028152146842330694, + 0.003798120189458132, + 0.04950238764286041, + 0.0014084416907280684, + 0.023015674203634262, + 0.006351338233798742, + -0.0006111869588494301, + 0.038047950714826584, + -0.006381375715136528, + -0.015125730074942112, + -0.016580896452069283, + -0.010066019371151924, + 0.020759496837854385, + 0.04776686802506447, + -0.012976353988051414, + 0.02066604606807232, + -0.02561895363032818, + -0.009792341850697994, + -0.022161263972520828, + -0.05078400298953056, + 0.025685705244541168, + -0.003295820439234376, + -0.02763482928276062, + 0.005500265397131443, + -3.256056743339286e-6, + 0.0020358990877866745, + -0.03940966725349426, + 0.014858726412057877, + -0.028462538495659828, + 0.01754210889339447, + 0.02073279581964016, + -0.05262632668018341, + 0.007636290974915028, + 0.012756076641380787, + -0.05324043333530426, + -0.03150637447834015, + 0.00894460640847683, + -0.02891644462943077, + -0.002060930710285902, + 0.024831295013427734, + 0.04843437671661377, + -0.05996891111135483, + 0.018810372799634933, + -0.04069128260016441, + 0.006738492753356695, + 0.0027601453475654125, + 0.04368171840906143, + 0.007602915167808533, + 0.02038569189608097, + 0.0003485642955638468, + 0.0046558678150177, + 0.025832556188106537, + -0.004018398001790047, + -0.02485799603164196, + -0.012422322295606136, + 0.03719354048371315, + 0.020692745223641396, + -0.004922871012240648, + -2.196779132646043e-5, + 0.009431887418031693, + 0.012015142478048801, + -0.02864944003522396, + 0.012175344862043858, + -0.013236681930720806, + 0.02316252514719963, + -0.0211333017796278, + 0.004001710098236799, + 0.0145249729976058, + -0.011087306775152683, + -0.022641869261860847, + 0.038715459406375885, + -0.035591524094343185, + -0.0239768847823143, + 0.0026950633618980646, + 0.012642600573599339, + -0.021840859204530716, + -0.015232531353831291, + -0.033642400056123734, + -0.006307949777692556, + -0.00884447991847992, + 0.003352558705955744, + 0.011260858736932278, + -0.007342587225139141, + 0.0020358990877866745, + -0.0003560737532097846, + -0.009111483581364155, + -0.05115780979394913, + 0.03727364167571068, + -0.02214791253209114, + 0.04450942948460579, + -0.021934309974312782, + -0.005707192700356245, + -0.03644593432545662, + 0.03174667805433273, + -0.04098498821258545, + 0.001038809190504253, + -0.00064581393962726, + 0.017248405143618584, + -0.0020292240660637617, + -0.023269327357411385, + 0.0555366612970829, + -0.00680524343624711, + 0.0011564574670046568, + -0.018303068354725838, + -0.030999068170785904, + -0.017528757452964783, + -0.006274574436247349, + 0.017582159489393234, + -0.003637918271124363, + -0.022067813202738762, + 0.00702885864302516, + -0.016100291162729263, + -0.000629543443210423, + 0.02918344736099243, + -0.011374334804713726, + 0.012615899555385113, + 0.006751842796802521, + -0.0021727383136749268, + 0.008550777100026608, + 0.029824255034327507, + 0.03439000993967056, + -0.018036063760519028, + -0.07855233550071716, + 0.028542639687657356, + -0.012408972717821598, + 0.0018106153002008796, + -0.025311900302767754, + 0.01720835454761982, + 0.011107332073152065, + 0.02310912497341633, + -0.02099980041384697, + 0.018436569720506668, + -0.03460361063480377, + 0.02723432332277298, + -0.002741788746789098, + -0.006658391561359167, + -0.006491514854133129, + -0.04402882233262062, + 0.0031940254848450422, + -0.007662991061806679, + -0.008864505216479301, + -0.03182677924633026, + -0.021774109452962875, + 0.027474626898765564, + 0.0018106153002008796, + -0.010246247053146362, + -0.0097589660435915, + 0.0020959749817848206, + -0.032067082822322845, + 0.016167042776942253, + 0.023683181032538414, + 0.037834350019693375, + 0.03377590328454971, + 0.0029487162828445435, + 0.017702311277389526, + 0.013116531074047089, + -0.0061677731573581696, + 0.03257438540458679, + -0.004699255805462599, + 0.0014284669887274504, + -0.022241365164518356, + -0.024163788184523582, + 0.02600611001253128, + 0.018249666318297386, + -0.008343849331140518, + 0.0024964797776192427, + -0.008250397630035877, + -0.006027596537023783, + -0.0041185240261256695, + 0.002553217811509967, + 0.005677155219018459, + -0.010786928236484528, + 0.007476089056581259, + 0.021493755280971527, + -0.01740860752761364, + 0.008170297369360924, + -0.012355571612715721, + 0.017328506335616112, + 0.008116896264255047, + 0.026112910360097885, + 0.008831130340695381, + 0.0061911363154649734, + 0.030999068170785904, + 0.017368556931614876, + 0.008564126677811146, + 0.010746877640485764, + -0.03115927055478096, + 0.027180923148989677, + 0.004859457723796368, + 0.007569539826363325, + 0.016647648066282272, + 0.02153380587697029, + -0.04119858890771866, + -0.021560506895184517, + 0.037834350019693375, + -0.02595270797610283, + 0.006020921748131514, + -0.0001579073432367295, + 0.01094045490026474, + 0.020038587972521782, + 0.01009272038936615, + 0.0072691612876951694, + 0.0223615150898695, + -0.019744884222745895, + 0.04621824994683266, + -0.009845742024481297, + 0.001281615230254829, + 0.030198058113455772, + -0.017648909240961075, + -0.0038815585430711508, + -0.01828971691429615, + -0.00014507868036162108, + -0.0031840128358453512, + -0.013336808420717716, + 0.0010212871711701155, + -0.00036149725201539695, + -0.015659736469388008, + 0.003934959415346384, + 0.018997276201844215, + 0.017008101567626, + 0.0016404007328674197, + -0.011574587784707546, + 0.002491473453119397, + 0.00018773660121951252, + 0.004025072790682316, + 0.07849892973899841, + -0.013076480478048325, + 0.02099980041384697, + -0.007282511796802282, + 0.012315521016716957, + 0.03163987770676613, + 0.011541211977601051, + -0.011421061120927334, + -0.011314259842038155, + -0.0025715744122862816, + 0.02431063912808895, + 0.007375962566584349, + -0.02296227216720581, + -0.00511311087757349, + 0.00023404497187584639, + -0.01747535727918148, + 0.010479874908924103, + 0.05203891918063164, + -0.028809642419219017, + 0.014605073258280754, + 0.010519925504922867, + 0.01782246120274067, + -0.009925843216478825, + 0.0154728339985013, + 0.0024530915543437004, + 0.012495748698711395, + 0.03142627328634262, + 0.007022183388471603, + -0.008110221475362778, + 0.016300544142723083, + -0.0025148361455649137, + -0.03441670909523964, + -0.0009620458004064858, + 0.014498271979391575, + 0.0056738173589110374, + 0.0032190571073442698, + -0.014284669421613216, + -0.0019524607341736555, + -0.04341471567749977, + -0.04469633102416992, + 0.03273458778858185, + -0.026112910360097885, + -0.002813545987010002, + -0.016287192702293396, + -0.013964265584945679, + 0.016207093372941017, + -0.012856203131377697, + -0.021026499569416046, + 0.008383899927139282, + 0.006364688277244568, + 0.021760758012533188, + 0.0031372872181236744, + 0.009538688696920872, + 0.015152430161833763, + -0.02695397101342678, + 0.010513249784708023, + -0.0035411296412348747, + -0.030438361689448357, + -0.02723432332277298, + -0.012675975449383259, + -0.02316252514719963, + -0.0015119054587557912, + 0.00587406987324357, + -0.017088202759623528, + -0.023763282224535942, + -0.00887118000537157, + -0.00812357198446989, + 0.008991331793367863, + 0.022187963128089905, + -0.003255769843235612, + 0.02261516824364662, + 0.024150436744093895, + 0.015099029056727886, + -0.011814890429377556, + 0.037220243364572525, + -0.01253579929471016, + 0.036419231444597244, + 0.006578290835022926, + 0.0037280318792909384, + -0.00372469425201416, + -0.006988808047026396, + -0.030438361689448357, + -0.01680785045027733, + -0.015512884594500065, + -0.012335546314716339, + 0.022868821397423744, + -0.011260858736932278, + 0.05126461014151573, + -0.009612114168703556, + 0.015566284768283367, + 0.0070822592824697495, + 0.007055558729916811, + -0.029023244976997375, + -0.011093981564044952, + -0.004208637401461601, + -0.004625829868018627, + -0.015205830335617065, + 0.01815621554851532, + -0.015526234172284603, + 0.008136921562254429, + -0.035244420170784, + -0.004228662699460983, + -0.001400932320393622, + 0.04157239571213722, + 0.030598564073443413, + -0.024016935378313065, + -0.038848962634801865, + 0.016647648066282272, + -0.029850954189896584, + 0.003399284090846777, + -0.002927022287622094, + -0.01347698550671339, + 0.03639253228902817, + 0.012689325958490372, + 0.000579063140321523, + -0.02480459399521351, + 0.035591524094343185, + -0.015486184507608414, + 0.0315597765147686, + 0.004579104483127594, + -0.010019293986260891, + -0.023803332820534706, + -0.013296757824718952, + 0.005560341291129589, + 0.016100291162729263, + 0.008524076081812382, + -0.009865767322480679, + 0.041145190596580505, + 0.041011687368154526, + 0.034042906016111374, + 0.005697180051356554, + -0.009018031880259514, + 0.006868656724691391, + 0.019090726971626282, + -0.05681827664375305, + -0.041278690099716187, + 0.008891205303370953, + -0.026873869821429253, + -0.024497540667653084, + 0.0402640774846077, + -0.004926208406686783, + 0.015806587412953377, + -0.031052468344569206, + 0.03812805190682411, + -0.017034802585840225, + -0.025859257206320763, + -0.007950019091367722, + 0.026980670168995857, + -0.014912127517163754, + -0.010426473803818226, + 0.02201441116631031, + 0.017114903777837753, + -0.021707357838749886, + -0.019811635836958885, + 0.0005498596583493054, + 0.0009937523864209652, + 0.023522980511188507, + 0.031613174825906754, + -0.001748870825394988, + 0.0236965324729681, + 0.04499003663659096, + 0.018596770241856575, + -0.020091988146305084, + -0.01489877700805664, + -0.011154057458043098, + -0.04370842128992081, + 0.022588469088077545, + -0.005006309598684311, + 0.02045244351029396, + -0.03246758505702019, + 0.033161792904138565, + -0.03868876025080681, + 0.0059608458541333675, + 0.025912657380104065, + 0.01917082816362381, + 0.030918966978788376, + 0.006528227590024471, + -0.03209378197789192, + 0.010513249784708023, + 0.007976720109581947, + 0.0037680822424590588, + 0.01313655637204647, + 0.008243722841143608, + 0.014338070526719093, + 0.011841590516269207, + -0.0007075584144331515, + 0.01161463838070631, + -0.022868821397423744, + 0.02214791253209114, + -0.01882372424006462, + 0.02824893593788147, + 0.0018439906416460872, + 0.02803533338010311, + -0.00023133322247304022, + -0.014311370439827442, + -0.037487246096134186, + 0.011227483861148357, + -0.004722618497908115, + -0.03676633536815643, + 0.005824006628245115, + -0.002811877289786935, + -0.018129516392946243, + -0.0015094022965058684, + 0.024364039301872253, + 0.00951866339892149, + 0.030918966978788376, + 0.04864797741174698, + 0.01198844239115715, + -0.030438361689448357, + 0.031185971572995186, + 0.03035826049745083, + -0.006498189643025398, + 0.013663887046277523, + 0.018716922029852867, + 0.018316417932510376, + 0.0022778708953410387, + -0.006628353614360094, + 0.030091257765889168, + 0.013470309786498547, + -0.03508421778678894, + 0.013777364045381546, + -0.022001061588525772, + 0.003931621555238962, + -0.004265375901013613, + 0.0283824373036623, + -0.011033906601369381, + -0.003908258862793446, + -0.008650902658700943, + 0.0030838865786790848, + 0.013550410978496075, + 0.04878148064017296, + 0.012655950151383877, + 0.008330498822033405, + -0.005597054027020931, + -0.012415647506713867, + -0.010106069967150688, + -0.001975823426619172, + 0.0003581597120501101, + -0.0033225207589566708, + 0.018102815374732018, + 0.023055724799633026, + -0.01991843618452549, + -0.018076114356517792, + 0.003854858223348856, + 0.008564126677811146, + -0.0003817311080638319, + 0.02289552241563797, + 0.012148644775152206, + 0.015058979392051697, + 0.00074093381408602, + -0.020372342318296432, + -0.03137287124991417, + 0.027341125532984734, + 0.017595509067177773, + 0.015152430161833763, + -0.0008222863543778658, + 0.0027334450278431177, + 0.003621230600401759, + -0.017288455739617348, + -0.011427735909819603, + -0.015953440219163895, + 0.04336131364107132, + -0.04066458344459534, + 0.01754210889339447, + 0.021160000935196877, + 0.001576987444423139, + -0.006511539686471224, + -0.005306688137352467, + -0.01327673252671957, + -0.004796044435352087, + -0.029770852997899055, + 0.03115927055478096, + 0.009391836822032928, + 0.007235785946249962, + -0.017462007701396942, + 0.00792331900447607, + -0.0027200947515666485, + 0.015406083315610886, + -0.0024964797776192427, + 0.026700317859649658, + 0.020399043336510658, + -0.011374334804713726, + 0.004208637401461601, + -0.037487246096134186, + -0.007816517725586891, + 0.000724663317669183, + 0.005557003431022167, + -0.011915016919374466, + -0.008190322667360306, + -0.027074120938777924, + -0.00042365893023088574, + 0.018209615722298622, + -0.022388216108083725, + -0.03062526322901249, + 0.002908665919676423, + -0.0072891865856945515, + 0.016220442950725555, + 0.00883780512958765, + 0.0056638047099113464, + 0.03318849578499794, + -0.007022183388471603, + -0.020292241126298904, + -0.012869552709162235, + 0.03922276571393013, + 0.02527184970676899, + -0.0035745049826800823, + -0.0066250162199139595, + -0.011728114448487759, + -0.0036345806438475847, + -0.01679449900984764, + -0.0075561897829174995, + 0.020706096664071083, + 0.02241491712629795, + 0.009839067235589027, + -0.019210878759622574, + -0.01395091600716114, + 0.00214937562122941, + 0.004008385352790356, + -0.0035678299609571695, + 0.024684444069862366, + -0.009138183668255806, + -0.019090726971626282, + 0.02337612770497799, + -0.020439092069864273, + -0.015739837661385536, + -0.022374866530299187, + -0.009592088870704174, + -0.004719281103461981, + -0.008657578378915787, + -0.012388947419822216, + 0.0045624165795743465, + 0.002563230460509658, + -0.02336277812719345, + -0.024203836917877197, + 0.0028252273332327604, + -0.022721970453858376, + -0.04872807860374451, + 0.0315597765147686, + -0.030224759131669998, + 0.01572648622095585, + -0.03815475478768349, + -0.02154715545475483, + -0.03185347840189934, + -0.027074120938777924, + 0.021707357838749886, + -0.027327774092555046, + -0.021920960396528244, + 0.01114070788025856, + -0.000935345480684191, + -0.001263258745893836, + 0.01476527564227581, + 0.016086941584944725, + -0.0176756102591753, + -0.0059408205561339855, + -0.011741464957594872, + 4.135420385864563e-5, + -0.03500411659479141, + -0.017034802585840225, + 0.002953722607344389, + -0.027314424514770508, + 0.01782246120274067, + 0.04130538925528526, + 0.019824985414743423, + 0.0011247508227825165, + -0.0421597994863987, + -0.037700846791267395, + 0.02168065682053566, + -0.027314424514770508, + -0.022935573011636734, + -0.018530020490288734, + -0.019424481317400932, + 0.006334650330245495, + 0.024884695187211037, + 0.016220442950725555, + -0.01848996989428997, + 0.007149009965360165, + 0.028889743611216545, + -0.00697545800358057, + -0.008290448226034641, + 0.007809842936694622, + -0.012929628603160381, + -0.009011357091367245, + 0.02628646232187748, + 0.000546522147487849, + 0.00859750248491764, + 0.01997183822095394, + 0.008584151975810528, + -0.04178599640727043, + -0.025445401668548584, + -0.008477350696921349, + -0.027261024340987206, + 0.017421957105398178, + 0.018236316740512848, + -0.026433315128087997, + -0.06952762603759766, + -0.004695918411016464, + -0.024217188358306885, + 0.019878385588526726, + 0.012141969054937363, + -0.007115634623914957, + 0.009391836822032928, + 0.01348366029560566, + -0.019010625779628754, + -0.0015419432893395424, + 0.028489239513874054, + -0.011461110785603523, + 0.004165249411016703, + 0.018102815374732018, + 0.013089830987155437, + -0.013023079372942448, + 0.0027501326985657215, + -0.011354310438036919, + 0.005937483161687851, + -0.005500265397131443, + -0.0031956941820681095, + 0.008984657004475594, + 0.041892796754837036, + -0.005894095171242952, + -0.00965216476470232, + 0.015112379565834999, + -0.016580896452069283, + -0.011214133352041245, + -0.009725590236485004, + -0.029103346168994904, + 0.013310108333826065, + 0.009625464677810669, + -0.015673086047172546, + -0.027928531169891357, + -0.02268191985785961, + 0.023950185626745224, + 0.007382637821137905, + -0.03348219767212868, + 0.02013203874230385, + 0.0005544487503357232, + 0.018983924761414528, + -0.004502341151237488, + -0.026606867089867592, + -0.004675893113017082, + -0.021213402971625328, + -0.005223249550908804, + 0.009852416813373566, + -0.019691484048962593, + 0.009665515273809433, + 0.008617527782917023, + 0.011654688976705074, + -0.000653740600682795, + -0.038501858711242676, + -0.021013149991631508, + -0.0057572559453547, + 0.026873869821429253, + -0.010720177553594112, + -0.028142133727669716, + 0.017381906509399414, + 0.0031940254848450422, + 0.030518462881445885, + 0.013403559103608131, + 0.02758142724633217, + -0.010593350976705551, + -0.009491962380707264, + 0.020973099395632744, + 0.018196266144514084, + 0.009511987678706646, + 0.01836981810629368, + -0.0028419150039553642, + 0.010513249784708023, + 0.008490701206028461, + -0.02424388751387596, + 0.0009728927980177104, + 0.012021818198263645, + 0.0075361644849181175, + 0.004125198815017939, + 0.024297289550304413, + 0.009258335456252098, + -0.010753552429378033, + -0.03348219767212868, + 0.008564126677811146, + -0.0045624165795743465, + -0.019184177741408348, + -0.008998006582260132, + -0.0022878835443407297, + 0.010406448505818844, + -0.028542639687657356, + 0.019491231068968773, + -0.0020275553688406944, + 0.02364313043653965, + 0.012742726132273674, + 0.023336077108979225, + 0.01780911162495613, + -0.016834549605846405, + 0.045337140560150146, + -0.02655346505343914, + 0.029904356226325035, + -0.014257969334721565, + -0.00802344549447298, + 0.006374700926244259, + -0.023669831454753876, + 0.014591723680496216, + -0.011027230881154537, + 0.002706744708120823, + -0.0003982101916335523, + -0.0035110916942358017, + -0.012882903218269348, + -0.01381741464138031, + -0.010693477466702461, + 0.014498271979391575, + 0.0005582034937106073, + -0.030598564073443413, + 0.023656481876969337, + -0.004268713295459747, + 0.005259962752461433, + 0.008851155638694763, + -0.007629615720361471, + -0.004862795118242502, + -0.007255811244249344, + -0.006207823753356934, + 0.045337140560150146, + -0.00038861477514728904, + -0.0248713456094265, + 0.00839724950492382, + -0.0003909093211404979, + -0.010893729515373707, + -0.01938443072140217, + 0.004408889915794134, + 0.02872954122722149, + -0.0073292371816933155, + 0.00621449900791049, + -0.0063980636186897755, + 0.003494404023513198, + 0.003295820439234376, + 0.007602915167808533, + 0.03948976844549179, + 0.0017622209852561355, + 0.02256176806986332, + -0.020091988146305084, + 0.01694135181605816, + -0.0043154386803507805, + -0.009839067235589027, + 0.014351421035826206, + -0.014698524959385395, + -0.00823037326335907, + -0.012442347593605518, + -0.00860417727380991, + -0.012862877920269966, + 0.02228141576051712, + -0.00545354001224041, + 0.005740568041801453, + 0.007048883941024542, + 0.007582890335470438, + -0.012602549977600574, + -0.04031747952103615, + -0.00042845666757784784, + 0.021146651357412338, + -0.009532012976706028, + -0.0033692463766783476, + -0.003988360054790974, + 0.0036813062615692616, + 0.009144858457148075, + 0.009405186399817467, + 0.022374866530299187, + 0.002077618381008506, + -0.02445749007165432, + -0.0145249729976058, + 0.0016929670237004757, + 0.01060002576559782, + 0.014671824872493744, + -0.01740860752761364, + -0.0033792590256780386, + -0.012482398189604282, + -0.013897514902055264, + -0.01674109883606434, + -0.0033125081099569798, + -0.012882903218269348, + 0.006171111017465591, + 0.0059508332051336765, + -0.02134690433740616, + 0.028008632361888885, + -0.013089830987155437, + 0.011567912064492702, + 0.0075161391869187355, + 0.02763482928276062, + 0.008076845668256283, + 0.009665515273809433, + -0.010693477466702461, + 0.004322113934904337, + 0.01720835454761982, + 0.015352682210505009, + 0.006888682022690773, + -0.008156946860253811, + 0.005790631286799908, + -0.002650006441399455, + 0.02276202104985714, + 0.025031547993421555, + -0.037567347288131714, + -0.008050145581364632, + -0.014124467968940735, + -0.021026499569416046, + 0.014511622488498688, + -0.0010763565078377724, + -0.012862877920269966, + 0.0123221967369318, + -0.029370348900556564, + 0.020345641300082207, + 0.0007221601554192603, + -0.023282676935195923, + -0.00893793161958456, + 0.006151085719466209, + 0.012829502113163471, + -0.0036512683145701885, + 0.013777364045381546, + 0.008590826764702797, + 0.013236681930720806, + -0.015179130248725414, + 0.002337946556508541, + -0.03292149305343628, + 0.040077175945043564, + 0.004615817219018936, + 0.02431063912808895, + -0.014965527690947056, + -0.0027134197298437357, + 0.027474626898765564, + 0.011948391795158386, + -0.021653957664966583, + -0.008924581110477448, + -0.00674183014780283, + 0.01141438540071249, + 0.003267451422289014, + 0.0016429038951173425, + -0.013016404584050179, + -0.01476527564227581, + 0.003474378725513816, + 0.03196027874946594, + -0.015606335364282131, + 0.021213402971625328, + 0.008584151975810528, + -0.00594415795058012, + -0.010660101659595966, + -0.028889743611216545, + 0.012762751430273056, + 0.018102815374732018, + 0.015325982123613358, + -0.035671625286340714, + -0.021106600761413574, + 0.002725101076066494, + 0.015299282036721706, + 0.0005640442250296474, + -0.004228662699460983, + -0.017715660855174065, + -0.013416909612715244, + -0.00413521146401763, + 0.006715130060911179, + 0.0028936469461768866, + 0.009024707600474358, + 0.02005193755030632, + -0.0025148361455649137, + -0.018076114356517792, + -0.021440355107188225, + 0.0016220442485064268, + -0.0473930649459362, + 0.012716026045382023, + -0.016073592007160187, + -0.004405552521348, + 0.008156946860253811, + 0.02974415384232998, + -0.022521717473864555, + -0.0036813062615692616, + 0.005199886858463287, + -0.009291710332036018, + -0.0004192784253973514, + 0.011407710611820221, + 0.00921160914003849, + -0.020065288990736008, + -0.028409138321876526, + 0.025992758572101593, + 0.016340594738721848, + -0.01855672150850296, + 0.005904107820242643, + -0.024230537936091423, + 0.021160000935196877, + 0.016313893720507622, + -0.00018012284999713302, + 0.00325910747051239, + -0.010005944408476353, + 0.018983924761414528, + 0.005360088776797056, + 0.0007542839739471674, + 0.00907143298536539, + 0.02600611001253128, + 0.003601205302402377, + 0.022187963128089905, + 0.001974154729396105, + 0.011781514622271061, + 0.0050797355361282825, + -9.611071436665952e-5, + 0.014284669421613216, + 0.021854210644960403, + -0.001129757147282362, + -0.028489239513874054, + 0.0018540032906457782, + -0.012235420756042004, + -0.00016917154425755143, + 0.01013277005404234, + -0.024230537936091423, + 0.002409703563898802, + 0.006601653527468443, + -0.006902032066136599, + 0.012609224766492844, + -0.016767799854278564, + -0.032814688980579376, + 0.006070984527468681, + 0.03447011113166809, + 0.02913004718720913, + -0.01963808387517929, + 0.0068219308741390705, + -0.022121213376522064, + -8.307344978675246e-5, + 0.0033692463766783476, + 0.02085294760763645, + 0.019250929355621338, + -0.0473930649459362, + -0.02288217283785343, + -0.016634298488497734, + 0.004922871012240648, + -0.0007826530491001904, + 0.0031189308501780033, + -0.014498271979391575, + 0.040611181408166885, + 0.014952178113162518, + 0.007976720109581947, + 0.006354675628244877, + 0.003269120119512081, + 0.0002119337732437998, + 0.00372469425201416, + -0.014124467968940735, + -0.006444789003580809, + 0.032013680785894394, + 0.017982663586735725, + -0.017288455739617348, + -0.009805691428482533, + -0.011407710611820221, + 0.012402296997606754, + -0.0019240916008129716, + 0.014711874537169933, + 0.017996013164520264, + -0.013123205862939358, + 0.011527862399816513, + 0.012422322295606136, + -0.005430176854133606, + -0.00978566613048315, + 0.005780618637800217, + 0.041625794023275375, + 0.00030642785714007914, + 0.01080027874559164, + -0.022748669609427452, + -0.035671625286340714, + -0.029023244976997375, + -0.014858726412057877, + 0.010032644495368004, + 0.03561822324991226, + -0.011808215640485287, + -0.004425577819347382, + 0.008650902658700943, + -0.014391470700502396, + -0.005707192700356245, + -0.023616431280970573, + 0.012716026045382023, + 0.0026383250951766968, + -0.022441616281867027, + 0.0016938013723120093, + -0.018676871433854103, + 0.012415647506713867, + 0.002745126374065876, + 0.008724329061806202, + 0.009138183668255806, + -0.020212139934301376, + -0.006768530234694481, + -0.0154728339985013, + 0.019664783030748367, + -0.02086629718542099, + -0.012255446054041386, + -0.01747535727918148, + 0.0016203755512833595, + -0.0012190364068374038, + -0.00419862475246191, + -0.00129579973872751, + -0.022655218839645386, + -0.030785465613007545, + 0.034016203135252, + 0.00604428444057703, + 0.0007388478261418641, + 0.002491473453119397, + -0.043040912598371506, + 0.011120682582259178, + -0.03548472002148628, + -0.026393264532089233, + -0.00859750248491764, + 0.008751029148697853, + -0.01476527564227581, + 0.04296081140637398, + -0.01694135181605816, + 0.016434045508503914, + 0.017782410606741905, + 0.029423749074339867, + 0.011214133352041245, + -0.016367293894290924, + -0.015633035451173782, + 0.004662543069571257, + -0.001965810777619481, + -0.001649579033255577, + -0.02336277812719345, + 0.0024046972393989563, + -0.01209524367004633, + 0.037140142172575, + 0.00267670676112175, + 0.007409337908029556, + -0.016474096104502678, + -0.0016887950478121638, + -0.010339697822928429, + -0.0012098581064492464, + -0.02364313043653965, + 0.012896253727376461, + -0.018209615722298622, + 0.0043054260313510895, + -0.0016245474107563496, + -0.015432783402502537, + 0.006117710378021002, + -0.011901666410267353, + 0.023015674203634262, + -0.001095547340810299, + 0.04288071021437645, + -0.02093304879963398, + -0.009879117831587791, + -0.011334285140037537, + 0.0072624864988029, + 0.000312685762764886, + -0.01877032406628132, + -0.01632724329829216, + -0.00401172274723649, + -0.020025238394737244, + 0.007743092253804207, + -0.0030922305304557085, + 0.021920960396528244, + -0.02296227216720581, + 0.014177868142724037, + 0.01489877700805664, + 0.03358899801969528, + -0.015526234172284603, + 0.015512884594500065, + 0.004919533617794514, + 0.0073092118836939335, + 0.01371061336249113, + -0.021427005529403687, + -0.021106600761413574, + -0.01760885864496231, + 0.016647648066282272, + -0.006491514854133129, + 0.0258726067841053, + -0.012942979112267494, + 0.010479874908924103, + -0.0066150035709142685, + 0.009491962380707264, + 0.04469633102416992, + -0.023589730262756348, + -0.019144127145409584, + -0.013216657564043999, + -0.003961659502238035, + -0.011761490255594254, + 0.007676341105252504, + -0.0025215111672878265, + 0.026980670168995857, + -0.016100291162729263, + -0.008063496090471745, + -0.00394830945879221, + -0.0057038553059101105, + -0.017795762047171593, + 0.00633131293579936, + -0.013290083035826683, + 0.0035511422902345657, + 0.030091257765889168, + 0.021213402971625328, + -0.022975623607635498, + 0.04069128260016441, + -0.006371363066136837, + 0.003951646853238344, + 0.038848962634801865, + -0.020679395645856857, + 0.011441086418926716, + -0.030198058113455772, + 0.00803012028336525, + 0.010112744756042957, + -0.020505843684077263, + -0.012756076641380787, + -0.013443609699606895, + -0.0050396849401295185, + 0.00334421475417912, + 0.008457325398921967, + -0.022668570280075073, + -0.037487246096134186, + -0.00744938850402832, + 0.01869022287428379, + -0.01405771728605032, + -0.01152118667960167, + 0.0031606501433998346, + -0.0035478046629577875, + -0.006711792200803757, + -0.0179559625685215, + 0.008664253167808056, + 6.111869879532605e-5, + 0.01998518779873848, + 0.002478123176842928, + -0.009665515273809433, + 0.017101554200053215, + -0.014938827604055405, + -0.012776101939380169, + 0.007209085859358311, + -0.02276202104985714, + 0.01162131316959858, + -0.012449023313820362, + -0.017248405143618584, + -0.002014205092564225, + 0.008410600014030933, + -0.0032841390930116177, + 0.0010780253214761615, + -0.023336077108979225, + 0.0035778426099568605, + -0.0035578173119574785, + 0.0023129149340093136, + 0.008350524120032787, + 0.010373073630034924, + 0.029957756400108337, + -0.0028769592754542828, + 0.01130758412182331, + 0.012268795631825924, + -0.025485452264547348, + -0.0025048234965652227, + 0.0011038912925869226, + 0.0012131956173107028, + -0.012876228429377079, + 0.017488708719611168, + 0.006234524305909872, + 0.06237194314599037, + -0.009151534177362919, + -0.003571167355403304, + -0.01679449900984764, + 0.015633035451173782, + -0.008884530514478683, + 0.017915913835167885, + 0.009865767322480679, + 0.017782410606741905, + 0.009124833159148693, + 0.0038715461269021034, + -0.03548472002148628, + -0.002688388107344508, + 0.01747535727918148, + -0.0249247457832098, + 0.0036245679948478937, + 0.0115145118907094, + 0.02417713776230812, + 0.007729741744697094, + 0.020812897011637688, + 0.01727510616183281, + -0.01564638689160347, + 0.007629615720361471, + 0.019424481317400932, + -0.007275836542248726, + 0.009972568601369858, + -0.006274574436247349, + 0.0038047952111810446, + 0.005820669233798981, + 0.02262851968407631, + -0.005670479964464903, + -0.00518319895491004, + -0.014751925133168697, + 0.011714763939380646, + 0.001785583677701652, + 0.014738575555384159, + -0.009151534177362919, + 0.015392732806503773, + -0.001880703610368073, + 0.03142627328634262, + -0.01138101052492857, + -0.007255811244249344, + 0.030571863055229187, + 0.02702072076499462, + -0.0041585746221244335, + -0.009431887418031693, + -0.007629615720361471, + -0.004902845714241266, + -0.0009119827300310135, + 0.007416013162583113, + -0.032120481133461, + -0.009585414081811905, + 0.011454435996711254, + -0.006107697729021311, + 0.010439824312925339, + -0.008791079744696617, + 0.010172820650041103, + -0.01788921281695366, + -0.024537591263651848, + 0.008377224206924438, + -1.941248592629563e-5, + 0.002034230390563607, + -0.01991843618452549, + -0.002755139023065567, + 0.014364770613610744, + -0.01443152129650116, + -0.007636290974915028, + 0.0049796090461313725, + 0.002821889705955982, + 0.005643779411911964, + -0.004085148684680462, + 0.015619685873389244, + -0.0027100821025669575, + -0.029503850266337395, + -0.0009745616116560996, + 0.016767799854278564, + 0.011494486592710018, + 0.01405771728605032, + -0.0024948108475655317, + 0.0009278360521420836, + -0.007175710517913103, + 0.0006045118789188564, + 0.011674713343381882, + -0.013089830987155437, + -0.00442223995923996, + -0.014378121122717857, + 0.007929994724690914, + -0.018102815374732018, + 0.003721356624737382, + -0.023389477282762527, + -0.012722700834274292, + 0.006671741604804993, + -0.006121047772467136, + -0.004529041238129139, + 0.001633725711144507, + -0.0057138679549098015, + -0.013663887046277523, + 0.0019224229035899043, + 0.007182385306805372, + -0.009198259562253952, + 0.01324335765093565, + 0.009979243390262127, + -0.0011572919320315123, + -0.0029704102780669928, + 0.011260858736932278, + -0.013790713623166084, + 0.021320203319191933, + 0.005546990782022476, + -0.028569338843226433, + -0.007048883941024542, + -0.0028519276529550552, + 0.002119337674230337, + -0.015152430161833763, + -0.005580366123467684, + -0.015873339027166367, + 0.01632724329829216, + 0.02058594487607479, + 0.0015085679478943348, + 0.004151899367570877, + -0.01903732679784298, + -0.01990508660674095, + 0.0009670521249063313, + -0.014791975729167461, + -0.003105580573901534, + -0.003828157903626561, + -0.00884447991847992, + -0.002449754159897566, + 0.0008043470443226397, + -0.017835812643170357, + 0.0035778426099568605, + 0.016554197296500206, + 9.85617152764462e-5, + 0.012015142478048801, + -0.0019624733831733465, + 0.017301805317401886, + -0.012388947419822216, + 0.011981767602264881, + 0.009839067235589027, + 0.02776833064854145, + -0.0072691612876951694, + 0.004055110737681389, + 0.03284139186143875, + 2.559214954089839e-5, + 0.011234158650040627, + 0.0145249729976058, + 0.03447011113166809, + -0.00907143298536539, + -0.03147967532277107, + 0.024016935378313065, + 0.010666776448488235, + 0.021026499569416046, + -0.01712825335562229, + 0.006488176994025707, + -0.024497540667653084, + 0.02194766141474247, + -0.003504416672512889, + -0.002334608929231763, + 0.01997183822095394, + -0.0015027272747829556, + 0.0034309907350689173, + -0.003340877126902342, + 0.0013800726737827063, + -0.0059708585031330585, + -0.013270057737827301, + -0.007275836542248726, + 0.01127420924603939, + 0.020906347781419754, + 0.013557085767388344, + 0.010820304043591022, + -0.016981402412056923, + -0.010853678919374943, + 0.009912492707371712, + -0.0032607761677354574, + -0.027661528438329697, + 0.005830681882798672, + 0.0038014575839042664, + -0.01443152129650116, + 0.0035277793649584055, + -0.029103346168994904, + 0.011861615814268589, + 0.009305060841143131, + -0.0185700710862875, + 0.006371363066136837, + 0.008637553080916405, + 0.013216657564043999, + -0.018249666318297386, + 0.017368556931614876, + -0.01877032406628132, + 0.006488176994025707, + -0.004318776540458202, + -0.012262120842933655, + 0.020158739760518074, + -0.006144410464912653, + -0.0023496279027312994, + -0.009598763659596443, + -0.011260858736932278, + 0.002317921258509159, + 0.02505824714899063, + -0.009545363485813141, + -0.014404821209609509, + -0.012922953814268112, + -0.010306322947144508, + 0.0035444670356810093, + -0.0003617058682721108, + 0.012402296997606754, + -0.03273458778858185, + -0.012509098276495934, + -0.008504050783813, + -0.002224470255896449, + -0.0025315238162875175, + -0.039863575249910355, + -0.02031894214451313, + 0.022815421223640442, + 0.0013517035404220223, + -0.009638814255595207, + 0.001728845527395606, + 0.014017666690051556, + 0.011214133352041245, + 0.023883434012532234, + 0.009224959649145603, + 0.0022161263041198254, + 0.013723962940275669, + 0.012522448785603046, + -0.003277464071288705, + -0.009431887418031693, + -0.0010655095102265477, + 0.0066650668159127235, + 0.012182019650936127, + 0.01084032841026783, + -0.016220442950725555, + 0.034523509442806244, + 0.015966789796948433, + -0.023589730262756348, + 0.008857830427587032, + 5.819834768772125e-5, + 0.034176405519247055, + 0.00792331900447607, + -0.014858726412057877, + 0.01256249938160181, + -0.007723066955804825, + 0.013263382948935032, + -0.013256707228720188, + -0.0201854407787323, + 0.013089830987155437, + 0.013790713623166084, + 0.016340594738721848, + 0.007295861840248108, + -0.010206196457147598, + -0.003163987537845969, + -2.3180256903287955e-5, + -0.01293630339205265, + -0.002202776260674, + -0.02214791253209114, + 0.030117958784103394, + 0.011741464957594872, + 0.015366032719612122, + -0.00014236693095881492, + -0.0008911230834200978, + -0.0061577605083584785, + -0.01850331947207451, + -0.0023779969196766615, + 0.01680785045027733, + 0.020425742492079735, + -0.003647930920124054, + -1.4732108866155613e-5, + 0.007042208686470985, + -0.01060002576559782, + 0.010393098928034306, + -0.011027230881154537, + 0.0048027196899056435, + -0.008090196177363396, + 0.003978347405791283, + 0.005223249550908804, + 0.013096505776047707, + -0.02128015272319317, + -0.008243722841143608, + 0.010399773716926575, + -0.006451464258134365, + -0.002374659525230527, + 0.006451464258134365, + -0.014284669421613216, + -0.005219912156462669, + -0.006962107960134745, + -0.016100291162729263, + 0.001813952811062336, + 0.0003721356624737382, + -0.015072328969836235, + 0.023563029244542122, + -0.012308846227824688, + -0.004425577819347382, + 0.005420164205133915, + -0.006047621835023165, + 0.013897514902055264, + -0.01965143345296383, + -0.00040571967838332057, + 0.012068543583154678, + -0.011901666410267353, + 0.014698524959385395, + 0.028142133727669716, + 0.004201962612569332, + -0.007609590422362089, + 0.01206186879426241, + -0.006955432705581188, + -0.018049415200948715, + 0.0004263706796336919, + 0.0021443692967295647, + 0.0015594654250890017, + -0.0008752697613090277, + -0.00023675672127865255, + -0.010266272351145744, + -0.017021453008055687, + -0.006781880743801594, + 0.00870430376380682, + -0.014618423767387867, + 0.010973830707371235, + -0.02790183201432228, + 0.006658391561359167, + 0.024030284956097603, + -0.0031790065113455057, + -0.005390126723796129, + -0.004141886718571186, + 0.010393098928034306, + -0.010746877640485764, + 0.005847369320690632, + 0.003721356624737382, + 0.023015674203634262, + 0.012916278094053268, + 0.01945118047297001, + -0.004488990642130375, + -0.01338353380560875, + 0.012929628603160381, + -0.017181653529405594, + 0.004238675348460674, + 0.012869552709162235, + -0.009852416813373566, + 0.012442347593605518, + -0.020625995472073555, + -0.0012240427313372493, + -0.00847067590802908, + 0.0023896784987300634, + -0.031212670728564262, + 0.01327673252671957, + -0.0018306404817849398, + 0.005767268594354391, + 0.009618788957595825, + 0.017902562394738197, + -0.009431887418031693, + -0.0021410316694527864, + -0.0005169014330022037, + 0.019945137202739716, + 0.014231269247829914, + 0.0007284180610440671, + 0.014818675816059113, + -0.014658474363386631, + -0.0028435837011784315, + -0.011908341199159622, + 0.018102815374732018, + 0.014017666690051556, + -0.01680785045027733, + -0.008283773437142372, + -0.01419121865183115, + 0.009258335456252098, + -0.013630512170493603, + -0.010620051063597202, + -0.006711792200803757, + -0.0008160284487530589, + -0.0052666375413537025, + 0.016153691336512566, + -0.02593935839831829, + 0.010486549697816372, + -0.008223697543144226, + -0.02872954122722149, + -0.01674109883606434, + -0.005296675488352776, + -0.018583420664072037, + 0.011060606688261032, + 0.008143596351146698, + -0.008217022754251957, + -0.008984657004475594, + -0.004275388550013304, + 0.026513414457440376, + 0.01774236001074314, + -0.020399043336510658, + -0.011841590516269207, + 0.01950458250939846, + 0.006908707320690155, + 0.020839598029851913, + 0.035911925137043, + 0.004992959555238485, + -0.013577111065387726, + -0.021053200587630272, + -0.009171559475362301, + -0.008690953254699707, + 0.0012949653901159763, + 0.004145224113017321, + -0.020639345049858093, + -0.010660101659595966, + 0.03049176186323166, + 0.0009053076501004398, + 0.002099312376230955, + 0.020011888816952705, + -0.007723066955804825, + 0.008644227869808674, + 0.015592985786497593, + 0.02539200149476528, + -0.0138574643060565, + -0.003798120189458132, + 0.02188090980052948, + -0.012115268968045712, + -0.003591192653402686, + 0.009325086139142513, + 0.014685174450278282, + -0.01045984961092472, + 0.01310985628515482, + 0.0033859340474009514, + 0.00545354001224041, + 0.014778626151382923, + 0.0022545079700648785, + 0.023683181032538414, + -0.0018890474457293749, + 0.018276367336511612, + 0.00562375457957387, + -0.0011956735979765654, + 0.007936669513583183, + 0.006294599734246731, + -0.015806587412953377, + 0.02005193755030632, + 0.004382189363241196, + -0.01080027874559164, + 0.015125730074942112, + -0.005223249550908804, + -0.018263017758727074, + -0.015018928796052933, + 0.015966789796948433, + -0.014418171718716621, + 0.007569539826363325, + 0.01624714396893978, + -0.013189956545829773, + 0.012482398189604282, + 0.002307908609509468, + -0.033909402787685394, + -0.006277912296354771, + 0.02269526943564415, + 0.0030538488645106554, + 0.009959218092262745, + -0.00021965183259453624, + -0.0026633567176759243, + 0.0138574643060565, + -0.0017972651403397322, + -0.007242461200803518, + -0.007002158090472221, + 0.03177337720990181, + 0.003182344138622284, + -0.012956328690052032, + -0.0015920064179226756, + -0.023082423955202103, + 0.005423502065241337, + 0.015099029056727886, + 0.02864944003522396, + -0.022067813202738762, + -0.004021735396236181, + -0.013790713623166084, + -0.02412373758852482, + 0.0036546059418469667, + -0.008050145581364632, + -0.003968334756791592, + 0.001229048939421773, + 0.025298550724983215, + -0.008664253167808056, + 0.0018389843171462417, + -0.013310108333826065, + 0.0026266437489539385, + 0.006895356811583042, + -0.009959218092262745, + 0.014832026325166225, + -0.0009361798875033855, + 0.0035311169922351837, + 0.01842321828007698, + 0.01592673920094967, + -0.01419121865183115, + -0.008577477186918259, + 0.005610404070466757, + -0.005330050829797983, + 0.019664783030748367, + 0.023736583068966866, + 0.020278891548514366, + -2.627008689159993e-5, + 0.0009011357324197888, + 0.021160000935196877, + 0.0036145555786788464, + 0.0016654323553666472, + 0.006461476907134056, + 0.007402663119137287, + -0.00506638502702117, + 0.0037947825621813536, + -0.001633725711144507, + -0.00022048621030990034, + 0.015232531353831291, + 0.004255363252013922, + -0.0007630449836142361, + 0.0004134377231821418, + -0.006511539686471224, + 0.014338070526719093, + 0.02716757357120514, + 0.00018439906125422567, + -0.0037480569444596767, + -0.0008819448412396014, + 0.009471938014030457, + 0.006524890195578337, + 0.009325086139142513, + 0.0014234606642276049, + 0.005590378772467375, + -0.011114006862044334, + 0.024230537936091423, + 0.0023963535204529762, + 0.011561237275600433, + 0.006371363066136837, + 0.004862795118242502, + 0.013270057737827301, + 0.003200700506567955, + -0.01666099764406681, + -0.013537060469388962, + -0.01280280202627182, + 0.0012223739176988602, + -0.011901666410267353, + 0.019491231068968773, + 0.02357638068497181, + 0.017168303951621056, + 0.014725225046277046, + -0.0001919085334520787, + -0.012629250064492226, + 0.014978878200054169, + -0.004332126583904028, + -0.004839432425796986, + 0.016781149432063103, + 0.012922953814268112, + 0.00011764827650040388, + 0.006601653527468443, + 0.030117958784103394, + 0.019424481317400932, + -0.0043454766273498535, + 0.00750278914347291, + 0.001319996896199882, + 0.005610404070466757, + -0.003978347405791283, + -0.038101352751255035, + -0.010199521668255329, + 0.007956694811582565, + 0.017288455739617348, + 0.003985022194683552, + 0.004936221055686474, + 0.0004518194473348558, + 0.0353512205183506, + 0.012702676467597485, + 0.014164518564939499, + -0.02444414049386978, + -0.017101554200053215, + 0.0011773171136155725, + -0.009745615534484386, + 0.007976720109581947, + 0.006371363066136837, + -0.009251659736037254, + -0.008690953254699707, + -0.007729741744697094, + -0.018049415200948715, + 0.00558704137802124, + 0.038234855979681015, + 0.017488708719611168, + 0.0034710413310676813, + 0.00788994412869215, + -0.021053200587630272, + -0.0038114702329039574, + -0.013804064132273197, + 0.005977533757686615, + -0.013804064132273197, + -0.011908341199159622, + -0.012041843496263027, + -0.0015494527760893106, + 0.020212139934301376, + -0.014751925133168697, + 0.008484025485813618, + -0.007689691614359617, + -0.016887951642274857, + -0.0024147098883986473, + -0.006888682022690773, + 0.01660759747028351, + 0.0105666508898139, + -0.013910865411162376, + 0.012963004410266876, + -0.005670479964464903, + 0.017969314008951187, + -0.027047421783208847, + -0.012315521016716957, + 0.008644227869808674, + 0.0013149906881153584, + 0.007115634623914957, + -0.004892833065241575, + 0.011527862399816513, + -0.013103180564939976, + -0.02459099143743515, + 0.005854044575244188, + 0.00413521146401763, + 0.0010571656748652458, + 0.00022507533140014857, + -0.006297937594354153, + 0.00907143298536539, + 0.0061677731573581696, + -0.011915016919374466, + -0.003601205302402377, + -0.007222435902804136, + -0.006962107960134745, + -0.0017638896824792027, + 0.004729293752461672, + 0.009331760928034782, + 0.0033759213984012604, + -0.018810372799634933, + 0.02241491712629795, + -0.005790631286799908, + 0.04611144959926605, + -0.01572648622095585, + -0.020826248452067375, + -0.02317587472498417, + -0.0075561897829174995, + 0.012702676467597485, + 0.010326347313821316, + 0.00261496240273118, + -0.012729376554489136, + 0.007275836542248726, + 0.0003496072895359248, + -0.007195735350251198, + 0.001738858176395297, + 0.00985909253358841, + 0.0026283124461770058, + -0.005770605988800526, + -0.004742643795907497, + 0.003734706901013851, + -0.01293630339205265, + -0.0037847699131816626, + 0.010292972438037395, + -0.03340209648013115, + 0.003611217951402068, + -0.012375596910715103, + -0.010239571332931519, + -0.011874966323375702, + 0.012729376554489136, + 0.009084782563149929, + 0.012068543583154678, + 0.018596770241856575, + 0.00232793390750885, + 0.00351442932151258, + -0.011821565218269825, + -0.009678864851593971, + -0.017328506335616112, + 0.010426473803818226, + -0.008103546686470509, + -0.01654084585607052, + 0.00927836075425148, + -0.017568808048963547, + 0.0052566248923540115, + -0.027341125532984734, + -0.02750132605433464, + -0.04167919605970383, + -0.008430625312030315, + 0.010479874908924103, + 0.005787293892353773, + -0.03332199528813362, + 0.016086941584944725, + 0.012989704497158527, + -0.009645489975810051, + -0.02859603986144066, + -0.009932518005371094, + 0.014751925133168697, + -0.009325086139142513, + 0.012489073909819126, + -0.006207823753356934, + -0.02059929445385933, + -0.006244536954909563, + -0.0065649403259158134, + 0.010473199188709259, + -0.03916936740279198, + -0.012415647506713867, + 0.030091257765889168, + -0.008484025485813618, + -0.0064481268636882305, + -1.308289483858971e-5, + 0.006982132792472839, + 0.0018473282689228654, + -0.0043855272233486176, + 0.006641704123467207, + -0.007115634623914957, + -0.04106508940458298, + -0.010319672524929047, + 0.00212601269595325, + -0.03001115657389164, + 0.012642600573599339, + 0.015272581949830055, + -0.0167277492582798, + -0.009164883755147457, + -0.019250929355621338, + 0.0037280318792909384, + -0.015072328969836235, + -0.009979243390262127, + 0.005483577493578196, + -0.018543370068073273, + 0.014645123854279518, + -0.002336277859285474, + 0.0009870773646980524, + -0.008517401292920113, + -0.007662991061806679, + 0.00014872911560814828, + 0.0005214905831962824, + -0.0034510160330682993, + -0.006151085719466209, + -0.016287192702293396, + -0.013450284488499165, + -0.023336077108979225, + 0.021520456299185753, + -0.01719500496983528, + -0.013103180564939976, + 0.020746147260069847, + 0.0011164069874212146, + 0.0022912209387868643, + 0.0007680513081140816, + 0.007843217812478542, + -0.011167407967150211, + -0.016020189970731735, + -0.009198259562253952, + 0.0248713456094265, + 0.001324168872088194, + 0.013056455180048943, + 0.008857830427587032, + 0.010286297649145126, + -0.007743092253804207, + 0.006935407407581806, + 0.0019357730634510517, + -0.015072328969836235, + -0.003255769843235612, + -0.0018289717845618725, + 0.005370101425796747, + 0.002803533338010311, + -0.016767799854278564, + -0.02058594487607479, + -0.015673086047172546, + 0.01162131316959858, + 0.005420164205133915, + -0.00036942391307093203, + 0.00110555998980999, + -0.0066049909219145775, + -0.02607285976409912, + 0.007649641018360853, + -0.0011239164741709828, + -0.02412373758852482, + 0.011694738641381264, + -0.01138101052492857, + -0.0011506167938932776, + -0.00039967038901522756, + 0.026166310533881187, + -0.01104058139026165, + 0.012395622208714485, + 0.012101918458938599, + 0.01639399491250515, + 0.006207823753356934, + -0.022454967722296715, + 0.010292972438037395, + -0.009244984947144985, + 0.009511987678706646, + 0.009038057178258896, + -0.017849162220954895, + -0.0032541011460125446, + 0.00028473386191762984, + 0.009959218092262745, + -0.01828971691429615, + 0.004358826670795679, + -0.003269120119512081, + -0.01712825335562229, + -0.03308169171214104, + 0.0036145555786788464, + 0.007903293706476688, + -0.001815621624700725, + 0.009325086139142513, + -0.00991916749626398, + 0.005513615440577269, + -0.017101554200053215, + 0.008824454620480537, + -0.012762751430273056, + -0.012315521016716957, + 0.014978878200054169, + -0.000662084436044097, + 0.029103346168994904, + 0.00826374813914299, + 0.008490701206028461, + 0.014658474363386631, + -0.02133355289697647, + -0.012889578007161617, + 0.019958486780524254, + 0.0025231800973415375, + 0.015459483489394188, + -0.0018256341572850943, + -0.013870814815163612, + 0.002765151672065258, + -0.004869470372796059, + -0.004425577819347382, + -0.0008919574902392924, + -0.010613376274704933, + -0.0037380445282906294, + 0.0314529724419117, + -0.004215312656015158, + 0.005269974935799837, + 0.010880379006266594, + 0.007849893532693386, + 0.0016629291931167245, + 0.018409868702292442, + -0.020492494106292725, + -0.00360788032412529, + 0.021961010992527008, + -0.018583420664072037, + 0.007382637821137905, + -0.016968050971627235, + 0.009171559475362301, + 0.011314259842038155, + -0.008297123946249485, + 0.014124467968940735, + 0.006311287637799978, + -0.008644227869808674, + -0.02425723895430565, + -0.000546522147487849, + 0.009451912716031075, + -0.016407344490289688, + -0.004525703843683004, + -0.01184826623648405, + -0.005259962752461433, + 0.007529489696025848, + 0.010373073630034924, + 0.024404089897871017, + -0.004632505122572184, + -0.008550777100026608, + -0.004635842517018318, + 0.00020463290275074542, + -0.003362571122124791, + 0.01692800037562847, + 0.013283408246934414, + -0.02336277812719345, + 0.01938443072140217, + 0.01883707381784916, + 0.004178599454462528, + -0.002563230460509658, + -0.029957756400108337, + 0.031079169362783432, + -0.026326512917876244, + 0.002306239912286401, + 0.009405186399817467, + 0.003457691054791212, + 0.016821200028061867, + 0.014444871805608273, + -0.017769061028957367, + 0.01863682083785534, + -0.006671741604804993, + 0.007529489696025848, + 0.015205830335617065, + -0.014031017199158669, + -0.0032240634318441153, + 0.02899654395878315, + 0.02608620934188366, + -0.0050597102381289005, + 0.0075561897829174995, + -0.012021818198263645, + 0.009231634438037872, + 0.019878385588526726, + -0.004869470372796059, + 0.011527862399816513, + -0.011007205583155155, + -0.008951281197369099, + -0.017635559663176537, + 0.008584151975810528, + 0.008010094985365868, + 0.008484025485813618, + 0.0024213851429522038, + 0.001182323438115418, + 0.014952178113162518, + 0.018863774836063385, + -0.011574587784707546, + 0.012242095544934273, + 0.005189874209463596, + 0.005857381969690323, + -0.006241199094802141, + -0.008650902658700943, + 0.009638814255595207, + -0.015152430161833763, + 0.019250929355621338, + 0.015819938853383064, + 0.006434776354581118, + 0.0070822592824697495, + 0.019731534644961357, + -0.021587206050753593, + -0.011641338467597961, + -0.017782410606741905, + 0.013804064132273197, + -0.0052866628393530846, + -0.004382189363241196, + -0.009425211697816849, + 0.010072695091366768, + 0.016153691336512566, + -0.01768895983695984, + -0.014311370439827442, + -0.012856203131377697, + -0.004665880464017391, + -0.043388016521930695, + -0.020198790356516838, + 0.007002158090472221, + 0.003627905622124672, + -0.003891571192070842, + -0.008150272071361542, + -0.0026099560782313347, + -0.007783142384141684, + 0.003908258862793446, + 0.00278517697006464, + 0.007963369600474834, + -0.013223332352936268, + -0.00860417727380991, + -0.03855525702238083, + -0.00587406987324357, + 0.02716757357120514, + -0.003315845737233758, + 0.011668038554489613, + -0.02798193320631981, + -0.009371811524033546, + 0.004992959555238485, + -0.008630877360701561, + -0.017568808048963547, + -0.0179559625685215, + 0.009632139466702938, + 0.0029553913045674562, + 0.002868615323677659, + 0.0022261389531195164, + -0.012268795631825924, + -0.009038057178258896, + -0.006144410464912653, + -0.019731534644961357, + -0.0025348614435642958, + 0.006327975075691938, + 0.0372469425201416, + 0.009438562206923962, + -0.008250397630035877, + 0.0043054260313510895, + -0.01978493481874466, + 0.013196632266044617, + -0.010239571332931519, + -0.00826374813914299, + -0.012782776728272438, + 0.014725225046277046, + -0.01983833499252796, + 0.003734706901013851, + 0.022775370627641678, + 0.005239937454462051, + 0.020038587972521782, + 0.0028802966699004173, + 0.0004317942075431347, + -0.015953440219163895, + -0.007950019091367722, + 0.0010229558683931828, + 0.002698400756344199, + -0.02153380587697029, + 0.014404821209609509, + -0.014111117459833622, + -0.002459766808897257, + -0.006227849051356316, + 0.0032240634318441153, + -0.0017505395226180553, + -0.035671625286340714, + -0.003400953020900488, + 0.015272581949830055, + -0.012989704497158527, + -0.0009044732432812452, + 0.023963535204529762, + 0.01164801325649023, + 0.015032278373837471, + -0.026713667437434196, + -0.010106069967150688, + -0.01714160293340683, + 0.03150637447834015, + 0.004569091834127903, + -0.024070335552096367, + 0.009345111437141895, + 0.0013775695115327835, + 0.005526965484023094, + 0.002706744708120823, + 0.006247874349355698, + -0.003010460874065757, + 0.012375596910715103, + 0.0013517035404220223, + -0.010439824312925339, + 0.00016938013141043484, + -0.022815421223640442, + 0.000779315538238734, + -0.006364688277244568, + -0.0034510160330682993, + 0.022708620876073837, + 0.0220811627805233, + -0.0059107826091349125, + -0.018530020490288734, + 0.010032644495368004, + 0.014978878200054169, + -0.01242899801582098, + -0.006731817498803139, + 0.0003014215617440641, + -0.013670562766492367, + -0.002983760554343462, + -0.006995483301579952, + -0.013209981843829155, + 0.029423749074339867, + 0.019250929355621338, + 0.0035778426099568605, + -0.027447925880551338, + -0.00894460640847683, + -0.005263300146907568, + 0.02878294140100479, + 0.02248166687786579, + 0.024150436744093895, + 0.01036639790982008, + 0.007509464398026466, + 0.008964631706476212, + 0.018116164952516556, + 0.003474378725513816, + -0.015392732806503773, + 0.004398877266794443, + 0.007803167682141066, + 0.007235785946249962, + -0.015259231440722942, + -0.004976271651685238, + -0.03481721505522728, + 0.009899143129587173, + -0.0038515208289027214, + -0.006778542883694172, + -0.003457691054791212, + -0.009672190062701702, + -0.007209085859358311, + -0.017008101567626, + 0.0066450415179133415, + -0.0021343566477298737, + 0.011167407967150211, + 0.008624202571809292, + 0.01266930066049099, + -0.008764378726482391, + 0.025845907628536224, + -0.012989704497158527, + -0.002508161123842001, + 0.0022645206190645695, + 0.0045624165795743465, + 0.01371061336249113, + 0.009965893812477589, + -0.04167919605970383, + -0.024697793647646904, + 0.013964265584945679, + -0.009592088870704174, + 0.008490701206028461, + -0.001860678312368691, + -0.015272581949830055, + -0.0016796168638393283, + 0.01915747858583927, + 0.002005861373618245, + 0.0031406248454004526, + 0.00599755859002471, + -0.0024147098883986473, + -0.009632139466702938, + 0.00027785016573034227, + -0.009819041937589645, + -0.010266272351145744, + 0.0014868739526718855, + 0.005480240099132061, + 0.0015327651053667068, + -0.004095161333680153, + 0.02357638068497181, + 0.011160732246935368, + 0.013410234823822975, + -0.019531281664967537, + -0.022067813202738762, + 0.01033302303403616, + 0.02405698597431183, + -0.0070822592824697495, + 0.01114070788025856, + 0.012141969054937363, + -0.013790713623166084, + -0.002357971854507923, + -6.476912676589563e-5, + 0.0014543329598382115, + -0.0021243439987301826, + 0.016514146700501442, + -0.00139258848503232, + -0.021587206050753593, + -0.017088202759623528, + -0.022201314568519592, + -0.014151168055832386, + 0.0014785301173105836, + 0.023202575743198395, + 0.02234816551208496, + -0.013363508507609367, + 0.009525338187813759, + 0.015406083315610886, + 0.009899143129587173, + 0.010012619197368622, + -0.0035311169922351837, + 0.0014651799574494362, + -0.00043012542300857604, + -0.0036913189105689526, + -0.00849737599492073, + 0.004338801372796297, + 0.012595875188708305, + 0.0013475316809490323, + -0.0006049290532246232, + -0.005603729281574488, + -0.00241304119117558, + 0.006751842796802521, + -0.0027951893862336874, + 0.018383167684078217, + 0.01572648622095585, + -0.00640140101313591, + 0.016220442950725555, + 0.020412392914295197, + 0.005143148824572563, + 0.014217918738722801, + -0.012161994352936745, + 0.0049996343441307545, + 0.0036879812832921743, + 0.008190322667360306, + -0.02013203874230385, + 0.017221704125404358, + 0.020412392914295197, + -0.014738575555384159, + -0.0013817413710057735, + -0.007088934071362019, + 0.015940088778734207, + 0.008136921562254429, + 0.004786031786352396, + 0.01768895983695984, + 0.019517932087183, + 0.007155685219913721, + 0.02242826670408249, + -0.003921608906239271, + 0.02173405885696411, + -0.008110221475362778, + 0.017235055565834045, + 0.041091788560152054, + 0.018263017758727074, + 0.007836543023586273, + 0.007002158090472221, + -0.010646751150488853, + -0.013436934910714626, + -0.005660467315465212, + -0.005146486219018698, + -0.008984657004475594, + -0.003477716352790594, + -0.0007167366566136479, + 0.009718915447592735, + -0.005279987584799528, + -0.009058082476258278, + -0.0005194045952521265, + -0.011915016919374466, + 0.011714763939380646, + -0.020612645894289017, + 0.012155319564044476, + 0.009772316552698612, + -0.01405771728605032, + 0.001633725711144507, + 0.0007542839739471674, + 0.015552935190498829, + 0.02249501831829548, + -0.022121213376522064, + 0.001334181521087885, + 0.00989246740937233, + -0.013256707228720188, + -0.016634298488497734, + -0.01692800037562847, + -0.014271319843828678, + 0.005987546406686306, + 0.005880745127797127, + 0.004649192560464144, + 0.01023289654403925, + 0.005043022334575653, + 0.0034443410113453865, + -0.022655218839645386, + -0.008257073350250721, + -0.022107861936092377, + -0.01381741464138031, + -0.028088733553886414, + 0.01141438540071249, + 0.00031393731478601694, + -0.022775370627641678, + -0.014484922401607037, + 0.010139445774257183, + 0.014031017199158669, + 0.005420164205133915, + -0.009391836822032928, + -0.03609883040189743, + -0.004499003291130066, + 0.0055169533006846905, + 0.0043154386803507805, + -0.0043154386803507805, + -0.0002661687904037535, + -0.002367984503507614, + -0.007042208686470985, + -0.025178398936986923, + 0.007022183388471603, + 0.013203307054936886, + -0.024404089897871017, + -0.025912657380104065, + 0.00429875124245882, + 0.013777364045381546, + -0.03163987770676613, + -0.0002015039644902572, + 0.006534902844578028, + 0.010820304043591022, + 0.010473199188709259, + -0.018196266144514084, + -0.011661363765597343, + -0.009678864851593971, + 0.022935573011636734, + -0.005633766762912273, + -0.0011714764405041933, + 0.04410892352461815, + -0.002830233657732606, + 0.0073893130756914616, + 0.03171997889876366, + -0.0018773660995066166, + -0.00528332544490695, + 0.019064025953412056, + 0.004789369646459818, + 0.009331760928034782, + -0.010526600293815136, + 0.0009395173983648419, + 0.018396519124507904, + 0.00402841018512845, + 0.019531281664967537, + -0.019731534644961357, + -0.0022645206190645695, + -0.013316783122718334, + 0.013223332352936268, + -0.01300305500626564, + 0.010793603025376797, + -0.022588469088077545, + -0.00907810777425766, + -0.021493755280971527, + 0.002269526943564415, + 0.000757204310502857, + -0.011975092813372612, + -0.005877407267689705, + -0.004882820416241884, + 0.0014593391679227352, + 0.00799674540758133, + -0.005239937454462051, + 0.0012524117482826114, + 0.024537591263651848, + -0.011013881303369999, + 0.002801864640787244, + 0.002648337744176388, + 0.024484191089868546, + -0.01679449900984764, + -0.02419048734009266, + -0.00628458708524704, + -0.009491962380707264, + 0.0005290000117383897, + -0.029957756400108337, + -0.0006971285911276937, + 0.004221987910568714, + 0.003143962472677231, + 0.023015674203634262, + -0.0030538488645106554, + 0.0036813062615692616, + -0.007903293706476688, + 0.004672555718570948, + -0.006458139047026634, + -0.010533275082707405, + 0.003103911876678467, + 0.011467786505818367, + -0.017662260681390762, + 0.010820304043591022, + -0.015966789796948433, + -0.0012565837241709232, + -0.003524441970512271, + -0.0019875047728419304, + 0.007929994724690914, + 0.011527862399816513, + -0.00697545800358057, + 0.005924133118242025, + -0.01599349081516266, + -0.00716236000880599, + 0.011814890429377556, + 0.035538122057914734, + 0.013737313449382782, + 0.02330937795341015, + -0.032547686249017715, + -0.005273312795907259, + -0.022641869261860847, + -0.014458222314715385, + -0.008196997456252575, + -0.016287192702293396, + 0.0041485619731247425, + 0.004442265257239342, + 0.008897881023585796, + -0.009224959649145603, + 0.009471938014030457, + -0.012242095544934273, + 0.01310985628515482, + 0.0052866628393530846, + -0.006775205489248037, + -0.007616265676915646, + 0.029370348900556564, + -0.015966789796948433, + 0.016767799854278564, + -0.006261224392801523, + -0.014204569160938263, + 0.012075218372046947, + -0.007696366403251886, + 0.018383167684078217, + -0.005026334896683693, + 0.0007075584144331515, + -0.002698400756344199, + 0.005073060281574726, + -0.0045624165795743465, + -0.023402828723192215, + 0.019798286259174347, + 0.019931787624955177, + -0.004445602651685476, + 0.005737230647355318, + 0.009058082476258278, + 0.0032707888167351484, + -0.007048883941024542, + -0.03115927055478096, + -0.011701414361596107, + 0.017488708719611168, + 0.007876593619585037, + -0.01084032841026783, + 0.012168670073151588, + -0.0036846438888460398, + 0.022121213376522064, + -0.004946233704686165, + -0.00883780512958765, + 0.004452277906239033, + -0.0020642683375626802, + -0.014017666690051556, + 0.006902032066136599, + -0.007656315807253122, + 0.025432052090764046, + 0.005219912156462669, + -0.011527862399816513, + -0.014137818478047848, + 0.012749401852488518, + 4.729267857328523e-6, + 0.002584924455732107, + 0.007142334710806608, + 0.016887951642274857, + -0.0009086451609618962, + -0.00017772398132365197, + -0.005373438820242882, + 0.01585998944938183, + -0.0037580695934593678, + 0.009265010245144367, + 0.025485452264547348, + -0.0018289717845618725, + -0.023055724799633026, + -0.019931787624955177, + -0.018036063760519028, + -0.011674713343381882, + -0.01524588093161583, + -0.02750132605433464, + -0.02154715545475483, + 0.007088934071362019, + 0.0026283124461770058, + -0.0017338518518954515, + -0.008076845668256283, + -0.01654084585607052, + 0.0124623728916049, + -0.01869022287428379, + -0.0007768123759888113, + -0.0015920064179226756, + 0.020946398377418518, + 0.0059107826091349125, + -0.009438562206923962, + 0.0050797355361282825, + -0.004398877266794443, + 0.016954701393842697, + 0.0026717004366219044, + -0.012542474083602428, + -0.008650902658700943, + -0.0025999434292316437, + 0.02160055749118328, + 0.017582159489393234, + 0.010212871246039867, + -0.0018840411212295294, + 0.0007492776494473219, + -0.004388864617794752, + -0.010973830707371235, + -0.02322927676141262, + 0.002937034936621785, + -0.006461476907134056, + -0.01358378678560257, + 0.01046652439981699, + -0.006781880743801594, + 0.021707357838749886, + -0.006591640878468752, + 0.014124467968940735, + 0.03081216663122177, + 0.012589199468493462, + 0.023215925320982933, + 0.012001792900264263, + 0.025926008820533752, + 0.0033458834514021873, + -0.010426473803818226, + 0.004218650050461292, + 0.016287192702293396, + -0.006731817498803139, + 0.0006374701042659581, + 0.007048883941024542, + 0.009265010245144367, + 0.019424481317400932, + 0.007202410604804754, + 0.0015119054587557912, + -0.0005123123410157859, + -0.0239768847823143, + 0.0026933944318443537, + 0.006618340965360403, + 0.01487207692116499, + -0.013176606968045235, + 0.003077211556956172, + -0.0003861116128973663, + 0.01735520549118519, + -0.008076845668256283, + -0.00907810777425766, + 0.021987712010741234, + 0.015285931527614594, + 0.0012098581064492464, + 0.006117710378021002, + -0.0008794416789896786, + -0.016153691336512566, + -0.002299564890563488, + 0.020692745223641396, + -0.0019975174218416214, + -0.0009044732432812452, + -0.01971818506717682, + -0.0007826530491001904, + 0.008377224206924438, + -0.008610852062702179, + 0.012048518285155296, + -0.0016353944083675742, + -0.0004182354314252734, + -0.00266836304217577, + 0.014845376834273338, + 0.007589565124362707, + -0.003257438773289323, + -0.003751394571736455, + -0.0026233061216771603, + 0.004986284300684929, + -0.008984657004475594, + -0.010319672524929047, + 0.003791445167735219, + -0.006815256085246801, + -0.0033091704826802015, + -0.010880379006266594, + 0.016367293894290924, + -0.002326265210285783, + 0.004559079185128212, + 0.001994180027395487, + 0.010740202851593494, + 0.0020175427198410034, + 0.0025131674483418465, + -0.013597136363387108, + 0.0007380134775303304, + 0.006411413662135601, + 0.00944523699581623, + 0.038101352751255035, + -0.0003074708511121571, + 0.0077631170861423016, + 0.025218449532985687, + -0.0027401200495660305, + 0.0007400994072668254, + 0.008891205303370953, + 0.0010187840089201927, + 0.0127694271504879, + 0.008143596351146698, + 0.0037080065812915564, + -0.013410234823822975, + -0.01500557828694582, + 0.024817945435643196, + -0.016153691336512566, + -0.025018196552991867, + -0.03948976844549179, + 0.007629615720361471, + 0.011434410698711872, + -0.005006309598684311, + -0.02525850012898445, + 0.00557035394012928 + ], + "2537259a-f63b-444c-82c0-039bc9586ed9": [ + -0.0040450263768434525, + -0.011789558455348015, + -0.008090052753686905, + -0.00037365886964835227, + -0.016277827322483063, + 0.0037134666927158833, + 0.041127342730760574, + 0.03959169611334801, + -0.022029513493180275, + 0.04456160217523575, + 0.0011342825600877404, + 0.011133420281112194, + 0.021568819880485535, + -0.018343966454267502, + 0.019000105559825897, + 0.04506417363882065, + -0.0020696294959634542, + -0.002282525645568967, + -0.004373095463961363, + -0.027474069967865944, + 0.03914496302604675, + -0.005078095942735672, + -0.04559466987848282, + 0.00708490377292037, + 0.018260205164551735, + 0.010910053737461567, + 0.007796884048730135, + 0.0050955465994775295, + -0.03286278247833252, + -0.003964753821492195, + 0.03244397044181824, + 0.0118803009390831, + 0.01657099649310112, + -0.012026885524392128, + 0.01273188553750515, + -0.02098248340189457, + 0.00805515144020319, + -0.02208535373210907, + -0.052714474499225616, + 0.006121635902673006, + 0.014658421277999878, + 0.028186049312353134, + 0.008822973817586899, + -0.02780911885201931, + -0.043081797659397125, + 0.024235256016254425, + -0.015300599858164787, + 0.013241440057754517, + -0.003668095450848341, + -0.008585646748542786, + 0.00970945879817009, + -0.014407133683562279, + 0.026552682742476463, + -0.003846090519800782, + 0.03210892155766487, + -0.016417432576417923, + 0.02976357564330101, + 0.006421784404665232, + 0.012669064104557037, + -0.06444121152162552, + 0.023662880063056946, + -0.022448325529694557, + 0.017380699515342712, + -0.004523170180618763, + 0.019656244665384293, + 0.022141195833683014, + -0.007964408956468105, + 0.004086907487362623, + -0.047772493213415146, + 0.005304952617734671, + 0.042551301419734955, + 0.036464568227529526, + -0.014079064130783081, + 0.03523605316877365, + -0.013723074458539486, + -0.004558071028441191, + 0.04928021505475044, + 0.04953150451183319, + 0.015188916586339474, + -0.012375895865261555, + 0.008885795250535011, + -0.01824624463915825, + 0.04218833148479462, + 0.001494635478593409, + 0.07041626423597336, + 0.007259408477693796, + -0.02482159249484539, + -0.05472477152943611, + 0.02364891953766346, + -0.027041297405958176, + 0.0022703101858496666, + 0.024081692099571228, + -0.012257232330739498, + 0.005744704976677895, + -0.013129756785929203, + -0.00011179227294633165, + 0.05695843696594238, + -0.012026885524392128, + -0.008704310283064842, + -0.0015548396622762084, + 0.03297446668148041, + 0.021610701456665993, + 0.010979855433106422, + -0.0003243612009100616, + 0.0013585215201601386, + -0.020577631890773773, + 0.03459387272596359, + -0.009842082858085632, + -0.01567753031849861, + 0.011887281201779842, + -0.0010234719375148416, + -0.006435744930058718, + 0.017645947635173798, + 0.00839020125567913, + -0.06176081299781799, + -0.025184564292430878, + -0.033225756138563156, + -0.02642703987658024, + 0.0045196800492703915, + -0.03249981254339218, + 0.03987090662121773, + -0.01927931420505047, + -0.027292585000395775, + -0.006704482715576887, + -0.03872615098953247, + 0.0237606018781662, + 0.005231660325080156, + 0.014895748347043991, + 0.006627700291574001, + 0.038028132170438766, + -0.011000796221196651, + -0.014937628991901875, + 0.002352327574044466, + 0.0023505825083702803, + 0.04623684659600258, + 0.014449015259742737, + -0.004481288604438305, + 0.04467328265309334, + -0.010114310309290886, + 0.009144063107669353, + -0.060085564851760864, + -0.02105228416621685, + -0.028493179008364677, + 0.009046340361237526, + 0.010958914645016193, + -0.009185943752527237, + -0.013848718255758286, + 0.028227930888533592, + -0.026273474097251892, + 0.0017258545849472284, + -0.07717309892177582, + -0.0271669402718544, + -0.04001050814986229, + -0.01273188553750515, + 0.022127235308289528, + -0.032304368913173676, + -0.010421439073979855, + 0.0017729708924889565, + 0.023983968421816826, + 0.054389722645282745, + 0.025519613176584244, + -0.06170497462153435, + 0.008117972873151302, + 0.026790009811520576, + 0.05564615875482559, + 0.017897233366966248, + 0.06081150844693184, + 0.007399012800306082, + -0.020396146923303604, + 0.01920951157808304, + 0.007789903786033392, + -0.017659908160567284, + 0.026259513571858406, + 0.0015216837637126446, + -0.02151297777891159, + -0.014141886495053768, + 0.017408620566129684, + 0.055143583565950394, + 0.007580497767776251, + -0.022378522902727127, + -0.0033871422056108713, + -0.004812848288565874, + 0.04495249316096306, + 0.014602579176425934, + -0.015398322604596615, + 0.028786346316337585, + 0.0327790230512619, + -0.012878470122814178, + 0.005769135896116495, + 0.0022005082573741674, + 0.013171638362109661, + -0.011747677810490131, + -0.022210998460650444, + -0.0029334293212741613, + -0.030601199716329575, + -0.05338457226753235, + 0.0013681192649528384, + 0.011726737022399902, + 0.003598293289542198, + 0.025044959038496017, + -0.014672381803393364, + -0.03551525995135307, + -0.004725595936179161, + 0.037385955452919006, + -0.02808832749724388, + 0.03596199303865433, + -0.03205307945609093, + -0.0002488877798896283, + 0.036687932908535004, + -0.05667923018336296, + 0.009576834738254547, + -0.05064833536744118, + -0.011726737022399902, + -0.013101836666464806, + -0.008606587536633015, + 0.00405549630522728, + -0.003418553154915571, + 0.009486092254519463, + -0.0015295364428311586, + -0.04238377884030342, + 0.011601093225181103, + 0.008815993554890156, + -0.001931770471855998, + -0.027711397036910057, + -0.04375189542770386, + -0.039703380316495895, + -0.04324932396411896, + 0.03445427119731903, + -0.029037633910775185, + 0.019335156306624413, + 0.016082381829619408, + -0.018511492758989334, + 0.005475967191159725, + -0.0028182559181004763, + -0.010442379862070084, + 0.016906045377254486, + 0.03129921853542328, + -0.009660597890615463, + -0.017380699515342712, + 0.010260894894599915, + -0.00913708284497261, + 0.010958914645016193, + 0.009562875144183636, + 0.009534954093396664, + -0.011370746418833733, + 0.03464971482753754, + 0.0118803009390831, + 0.04391942173242569, + 0.005500398110598326, + -0.015886936336755753, + 0.011566191911697388, + 0.04003842920064926, + 0.011063617654144764, + 0.01050520222634077, + -0.02397000789642334, + 0.0670657679438591, + 0.04051308333873749, + -0.034258823841810226, + -0.0026123400311917067, + -0.0005889544263482094, + -0.009458172135055065, + 0.03830733895301819, + 0.03129921853542328, + 0.008815993554890156, + 0.023244068026542664, + -0.0243609007447958, + 0.04003842920064926, + -0.02852110005915165, + 0.016375551000237465, + 0.023160304874181747, + 0.03959169611334801, + 0.03934041038155556, + -0.013667232356965542, + 0.009897924028337002, + 0.011531291529536247, + -0.0009641402284614742, + 0.023634959012269974, + 0.008404161781072617, + 0.004760496784001589, + 0.0188465416431427, + -0.011370746418833733, + -0.015188916586339474, + -0.0009693753672763705, + 0.0038495806511491537, + 0.00012913371028844267, + -0.014700301922857761, + -0.03587822988629341, + -0.0193491168320179, + -0.04844259098172188, + 0.002041708678007126, + 0.012780747376382351, + 0.005102526396512985, + 0.0029630952049046755, + 0.0031672660261392593, + -0.008997478522360325, + 0.03691130131483078, + -0.015691490843892097, + -0.0007813461706973612, + 0.012187429703772068, + 0.03342119976878166, + -0.007280349265784025, + 0.00060335110174492, + 0.0070465123280882835, + -0.012976192869246006, + 0.013255400583148003, + -0.010540102608501911, + 0.03118753619492054, + 0.04548298567533493, + -0.012543420307338238, + 0.01169881597161293, + 0.015803173184394836, + -0.05265863239765167, + -0.02304862253367901, + -0.01624990627169609, + 0.011000796221196651, + 0.001611553831025958, + 0.0022895056754350662, + 0.007011611480265856, + -0.033616647124290466, + -0.03861447051167488, + 0.008850893937051296, + -0.023062583059072495, + -0.056344177573919296, + 0.031020011752843857, + 0.03442635014653206, + -0.009751340374350548, + 0.04419862851500511, + -0.01449089590460062, + -0.05045288801193237, + 0.009004458785057068, + -0.04104357957839966, + -0.017645947635173798, + -0.007622378878295422, + -0.002851411933079362, + -0.018720898777246475, + -0.04604140296578407, + -0.03894951939582825, + -0.027460109442472458, + 0.015356441028416157, + -0.008557725697755814, + -0.010184112936258316, + -0.021638622507452965, + 0.02859090082347393, + -0.019265353679656982, + -0.003155050566419959, + -0.007461834233254194, + -0.013499707914888859, + 0.02990317903459072, + -0.016584957018494606, + -0.0012669063871726394, + 0.0009178963955491781, + -0.009165002964437008, + 0.02176426537334919, + 0.00521769979968667, + 0.033337436616420746, + 0.009095201268792152, + -0.01771574839949608, + -0.026217633858323097, + 0.04149031266570091, + -0.010637825354933739, + 0.014197727665305138, + -0.013262380845844746, + 0.0019736518152058125, + -0.0007032551802694798, + -0.022462286055088043, + -0.023676840588450432, + -0.017841393128037453, + -0.01937703602015972, + -0.026231594383716583, + 0.01792515441775322, + 0.0018986145732924342, + 0.0018881442956626415, + -0.0327790230512619, + -0.04863803833723068, + -0.01033069659024477, + -0.013785895891487598, + 0.03464971482753754, + -0.015035351738333702, + -0.01955852285027504, + 0.01597069948911667, + 0.021931789815425873, + -0.026692286133766174, + -0.0036506447941064835, + 0.012278173118829727, + 0.0016211515758186579, + -0.007210547104477882, + 0.0070465123280882835, + -0.018651096150279045, + -0.010484261438250542, + 0.006732403300702572, + -0.0022458794992417097, + 0.007336190901696682, + -0.01449089590460062, + 0.005311932414770126, + 0.025017037987709045, + -0.0045790113508701324, + 0.005660942755639553, + -0.003488355316221714, + 0.016208026558160782, + 0.012257232330739498, + -0.024081692099571228, + -0.025826742872595787, + -0.006889457814395428, + -0.0017808236880227923, + 0.023453474044799805, + -0.03585030883550644, + 0.01107757817953825, + -0.005727254785597324, + 0.01960040256381035, + -0.019251393154263496, + -0.024947237223386765, + 0.006645150948315859, + 0.008683369494974613, + 0.015286639332771301, + 0.04417070746421814, + 0.0027990604285150766, + -0.02176426537334919, + 0.06159329041838646, + -0.009500052779912949, + 0.006788244936615229, + 0.03403545916080475, + 0.0017267271177843213, + 0.010184112936258316, + -0.004648813512176275, + -0.004268392454832792, + 0.04051308333873749, + -0.010107330046594143, + -0.003411573125049472, + -0.030629120767116547, + -0.02155485935509205, + 0.011070597916841507, + 0.048163384199142456, + 0.0036157439462840557, + 0.017506342381238937, + -0.02454238571226597, + -0.00484425900503993, + -0.02371872216463089, + -0.03953585773706436, + 0.020033175125718117, + -0.018302086740732193, + -0.036297041922807693, + 0.023802483454346657, + -0.013395004905760288, + -0.0011168321361765265, + -0.04028971865773201, + -0.005109506659209728, + -0.04129486531019211, + 0.009304607287049294, + 0.009381389245390892, + -0.03934041038155556, + 0.0018829090986400843, + 0.021848028525710106, + -0.05210021510720253, + -0.03210892155766487, + 0.0046139126643538475, + -0.03674377501010895, + -0.0060239131562411785, + 0.03297446668148041, + 0.030601199716329575, + -0.056455861777067184, + 0.002676906995475292, + -0.036827538162469864, + 0.018008917570114136, + 0.0008062131819315255, + 0.031913477927446365, + 0.01507723331451416, + 0.01255040057003498, + -0.0008808140410110354, + 0.008501884527504444, + 0.016906045377254486, + -0.011405647732317448, + -0.016808323562145233, + 0.0006818783585913479, + 0.019684165716171265, + 0.016794363036751747, + -0.011105499230325222, + -0.021778225898742676, + 0.01678040251135826, + 0.0016298767877742648, + -0.025366049259901047, + -0.00565396249294281, + -0.0086205480620265, + 0.01927931420505047, + -0.013737034983932972, + -0.005284011829644442, + -1.5909949070191942e-5, + -0.004760496784001589, + -0.023844365030527115, + 0.025882583111524582, + -0.01717129349708557, + -0.016836244612932205, + 0.010707627981901169, + 0.007259408477693796, + -0.006833616178482771, + -0.02047990821301937, + -0.041657835245132446, + -0.0064043342135846615, + -0.011356785893440247, + -0.0030014861840754747, + 0.007594458293169737, + -0.022001592442393303, + -0.006882477551698685, + -0.008822973817586899, + -0.01948872022330761, + -0.043975263833999634, + 0.03596199303865433, + -0.0102748554199934, + 0.037469714879989624, + -0.010232973843812943, + -0.004589481744915247, + -0.03252773359417915, + 0.02542188949882984, + -0.026217633858323097, + 0.008955596946179867, + -0.010393518954515457, + 0.01271094474941492, + -0.00528052169829607, + -0.023481395095586777, + 0.05014576017856598, + -0.005968071520328522, + -0.0070534925907850266, + -0.013241440057754517, + -0.030210308730602264, + -0.02183406800031662, + -0.030573278665542603, + 0.005140917841345072, + -0.007133765146136284, + -0.030629120767116547, + 0.019321195781230927, + -0.010519161820411682, + 0.0014222158351913095, + 0.024011889472603798, + -0.007748022675514221, + 0.009437231346964836, + 0.017506342381238937, + -0.009290646761655807, + 0.004086907487362623, + 0.026622485369443893, + 0.027892882004380226, + -0.007580497767776251, + -0.0837065652012825, + 0.03587822988629341, + -0.008899755775928497, + 0.008439062163233757, + -0.0185952540487051, + 0.016598917543888092, + -0.009039360098540783, + 0.031634267419576645, + -0.020759116858243942, + 0.020814958959817886, + -0.029651891440153122, + 0.031020011752843857, + 0.007392032537609339, + -0.0041462392546236515, + -0.008131933398544788, + -0.03691130131483078, + 0.02034030482172966, + -0.00594015046954155, + -0.01650119386613369, + -0.025240404531359673, + -0.013625351712107658, + 0.0254637710750103, + 0.0036646053194999695, + -0.008878814987838268, + -0.0005763028166256845, + 0.008899755775928497, + -0.028074366971850395, + 0.011245103552937508, + 0.009946785867214203, + 0.03160634636878967, + 0.023676840588450432, + 0.0008188647916540504, + 0.01525871828198433, + 0.01306693535298109, + 0.010421439073979855, + 0.03880991414189339, + -0.022713571786880493, + 0.0012590537080541253, + -0.014630500227212906, + -0.014853866770863533, + 0.032806944102048874, + 0.01331822294741869, + -0.006460175383836031, + 0.008662428706884384, + -0.011126440018415451, + 0.015663569793105125, + 0.0002768085687421262, + -0.006160026881843805, + -0.0007215782534331083, + -0.0036157439462840557, + 0.003919382579624653, + 0.02443070150911808, + -0.017841393128037453, + 0.008222675882279873, + -0.002912488766014576, + 0.019251393154263496, + 0.006777774542570114, + 0.02297881990671158, + 0.023425552994012833, + 0.00789460726082325, + 0.01564960926771164, + 0.02293693833053112, + 0.0033539864234626293, + 0.008138913661241531, + -0.02813020907342434, + 0.017659908160567284, + 0.015984660014510155, + 0.020396146923303604, + -0.007098863832652569, + 0.02289505861699581, + -0.029679812490940094, + -0.02151297777891159, + 0.04509209468960762, + -0.018944263458251953, + 0.0025512631982564926, + 0.002678652061149478, + 0.02098248340189457, + 0.009102181531488895, + 0.007524656131863594, + 0.006502056960016489, + 0.022839216515421867, + -0.01624990627169609, + 0.05715388059616089, + -0.010679706931114197, + 0.021778225898742676, + 0.01912575028836727, + -0.01778555102646351, + -0.017241096124053, + -0.007056982722133398, + -0.013911539688706398, + -0.002662946470081806, + -0.02976357564330101, + -0.0005640874733217061, + -0.00730826985090971, + -0.007803864311426878, + 0.006613740231841803, + 0.024277137592434883, + 0.008041190914809704, + 4.676189200836234e-5, + -0.02279733493924141, + -0.010728567838668823, + 0.003100953996181488, + 0.01324842032045126, + 0.07862497866153717, + -0.010868172161281109, + 0.020396146923303604, + -0.011217182502150536, + 0.006324061658233404, + 0.020368225872516632, + 0.015035351738333702, + -0.005824977532029152, + -0.008585646748542786, + -0.003552922047674656, + 0.02450050413608551, + 0.004264902323484421, + -0.026901692152023315, + 0.005626041442155838, + -0.01004450861364603, + -0.01597069948911667, + 0.008718270808458328, + 0.05600912868976593, + -0.021680502220988274, + 0.011608073487877846, + 0.0028304713778197765, + 0.024947237223386765, + -0.011321885511279106, + 0.022141195833683014, + -0.00451618991792202, + 0.013967380858957767, + 0.040066350251436234, + 0.0010487751569598913, + -0.008878814987838268, + 0.014644460752606392, + -0.005444556474685669, + -0.029009712859988213, + 0.005640001967549324, + -0.008278517983853817, + 0.00551086850464344, + 0.005332873202860355, + -0.012368915602564812, + -0.003434258745983243, + -0.034230902791023254, + -0.038530707359313965, + 0.037218429148197174, + -0.019223472103476524, + -0.00821569561958313, + -0.020689314231276512, + -0.016403472051024437, + 0.01962832361459732, + -0.028465257957577705, + -0.0271669402718544, + -0.003922872710973024, + 0.0027990604285150766, + 0.028925951570272446, + 0.00534334359690547, + 0.009081240743398666, + 0.019153669476509094, + -0.008969557471573353, + 0.008920696564018726, + -0.00851584505289793, + -0.033784169703722, + -0.027906842529773712, + -0.01559376809746027, + -0.04121110588312149, + 0.002142921555787325, + 0.005626041442155838, + -0.01863713562488556, + -0.023313870653510094, + -0.005503888241946697, + -0.004404506646096706, + 0.0007809099624864757, + 0.016096342355012894, + 0.00037802147562615573, + 0.025966346263885498, + 0.0252124834805727, + 0.023383671417832375, + -0.014127925969660282, + 0.02087079919874668, + -0.01017015241086483, + 0.03897744044661522, + 0.00019893571152351797, + 0.015021391212940216, + 0.00913708284497261, + 0.000498211826197803, + -0.0288701094686985, + -0.012250252068042755, + 0.0046872044913470745, + -0.013932480476796627, + 0.02204347401857376, + -0.008222675882279873, + 0.05098338425159454, + 0.0011648209765553474, + 0.00482680881395936, + 0.004289333242923021, + 0.006065794266760349, + -0.01495158951729536, + -0.014260550029575825, + 0.004184630233794451, + 0.011894261464476585, + -0.020144859328866005, + 0.006271710153669119, + -0.02350931614637375, + 0.007203566841781139, + -0.022560007870197296, + 0.0008288988028652966, + -0.01749238185584545, + 0.04238377884030342, + 0.030712882056832314, + -0.032695259898900986, + -0.04403110593557358, + 0.025561494752764702, + -0.02328594960272312, + 0.031159615144133568, + -0.011656935326755047, + -0.0342867448925972, + 0.03171803057193756, + 0.026161791756749153, + 0.01778555102646351, + -0.021038323640823364, + 0.03414713963866234, + -0.01999129354953766, + 0.03445427119731903, + -0.0009536698926240206, + 0.007287329528480768, + -0.01944683864712715, + -0.026622485369443893, + 0.0036750754807144403, + 0.019014066085219383, + 0.0028653722256422043, + 0.002921213861554861, + 0.025966346263885498, + 0.03263941779732704, + 0.03043367527425289, + 0.008934657089412212, + -0.006739383563399315, + 0.015872975811362267, + 0.011566191911697388, + -0.055953286588191986, + -0.03590615093708038, + 0.002950879745185375, + -0.03001486323773861, + -0.03473347797989845, + 0.040624767541885376, + -0.011168320663273335, + 0.009946785867214203, + -0.02695753425359726, + 0.03635288402438164, + -0.023062583059072495, + -0.023997928947210312, + -0.013820797204971313, + 0.016529114916920662, + -0.01376495510339737, + -0.012759806588292122, + 0.017227135598659515, + 0.006243789568543434, + -0.02688773162662983, + -0.01930723525583744, + 0.02034030482172966, + 0.010302776470780373, + 0.028493179008364677, + 0.03406338021159172, + -0.019251393154263496, + 0.03445427119731903, + 0.02709713764488697, + 0.011998964473605156, + -0.021359413862228394, + -0.018441690132021904, + -0.0135834701359272, + -0.03464971482753754, + 0.01960040256381035, + 0.0014850376173853874, + 0.012152529321610928, + -0.020954562351107597, + 0.0327790230512619, + -0.03155050799250603, + 0.009967726655304432, + 0.010156191885471344, + 0.020647432655096054, + 0.045538827776908875, + 0.003612253814935684, + -0.019041987136006355, + 0.015635648742318153, + 0.014079064130783081, + -0.007622378878295422, + 0.0041532195173203945, + -0.002268565120175481, + 0.01721317507326603, + 0.009611736051738262, + 0.0056434920988976955, + 0.007266388740390539, + -0.0428025908768177, + 0.02684585191309452, + -0.007803864311426878, + 0.026357237249612808, + 0.013395004905760288, + 0.02806040644645691, + -0.015188916586339474, + -0.009897924028337002, + -0.028213970363140106, + 0.015984660014510155, + -0.009625696577131748, + -0.043863579630851746, + 0.013429906219244003, + -0.008299458771944046, + -0.023565156385302544, + -0.0018113619880750775, + 0.017827432602643967, + 0.009765300899744034, + 0.02638515830039978, + 0.06349190324544907, + 0.016096342355012894, + -0.02479367144405842, + 0.03129921853542328, + 0.036185361444950104, + -0.014309410937130451, + 0.01792515441775322, + 0.0003171628632117063, + 0.022532086819410324, + 0.0018654585583135486, + -0.006798715330660343, + 0.036576252430677414, + 0.01136376615613699, + -0.03286278247833252, + 0.013960401527583599, + -0.01746446266770363, + -0.02645496092736721, + -0.008690349757671356, + 0.01905594766139984, + -0.006379903294146061, + 0.0008699074969626963, + -0.007699161302298307, + 0.002167352242395282, + -0.0030730331782251596, + 0.04336100444197655, + 0.016850203275680542, + -0.0054410663433372974, + -0.01564960926771164, + 0.00017995829693973064, + -0.023676840588450432, + -0.00014320317131932825, + -0.0036087636835873127, + -0.005297972355037928, + -0.0022703101858496666, + 0.027069218456745148, + -0.024011889472603798, + -0.027334464713931084, + 0.00289852824062109, + 0.005238640587776899, + -0.01393946073949337, + 0.02109416574239731, + 0.002446560189127922, + 0.01756218448281288, + -0.0019125749822705984, + -0.02748803049325943, + -0.02496119774878025, + 0.022811295464634895, + 0.0029718203004449606, + 0.004526659846305847, + -0.00017319622565992177, + 0.0006417421973310411, + 0.006725423038005829, + -0.02247624658048153, + -0.012166489847004414, + -0.016626838594675064, + 0.037497635930776596, + -0.039172884076833725, + 0.008138913661241531, + 0.026147831231355667, + 0.013199559412896633, + 0.002868862356990576, + -0.0028723524883389473, + 0.0008943381835706532, + -0.006896438077092171, + -0.02454238571226597, + 0.03051743656396866, + 0.017045650631189346, + 0.013967380858957767, + -0.030573278665542603, + 0.010323716327548027, + -0.005092056468129158, + 0.02468198910355568, + 0.0031882065813988447, + 0.0185952540487051, + 0.013199559412896633, + 0.001215427415445447, + -0.0054480466060340405, + -0.04305387660861015, + -0.009158022701740265, + -0.007015101611614227, + 0.013164658099412918, + -0.003853070782497525, + -0.007001141086220741, + -0.01564960926771164, + -0.002921213861554861, + 0.030740803107619286, + -0.017869314178824425, + -0.035543181002140045, + -0.008201736025512218, + -0.011559211649000645, + 0.01585901528596878, + -0.0028374516405165195, + 0.008048171177506447, + 0.041406549513339996, + -0.007147725205868483, + -0.012669064104557037, + 0.007001141086220741, + 0.026399118825793266, + 0.028423376381397247, + -0.006069284398108721, + -0.013632331974804401, + -0.010079409927129745, + 0.0011334100272506475, + 0.0008738338365219533, + -0.019781887531280518, + 0.01410000491887331, + 0.02461218647658825, + 0.006509037222713232, + -0.015482084825634956, + -0.003114914521574974, + 0.012292132712900639, + 0.0016455822624266148, + 0.01827416568994522, + 0.02187594771385193, + -0.004027575720101595, + -0.027222782373428345, + 0.005301462486386299, + -0.01285752933472395, + -0.0031882065813988447, + -0.019753968343138695, + -0.002149901818484068, + -0.010930994525551796, + 0.00376930832862854, + -0.021778225898742676, + 0.0193491168320179, + -0.006379903294146061, + -0.030601199716329575, + -0.016850203275680542, + 0.007866686210036278, + -0.020926641300320625, + -0.028898030519485474, + 0.025338128209114075, + -0.0342867448925972, + 0.016584957018494606, + -0.02066139318048954, + -0.011440549045801163, + -0.03467763587832451, + -0.014323371462523937, + 0.025226444005966187, + -0.03855862841010094, + -0.00019620907551143318, + 0.00048643272020854056, + -0.005605101119726896, + -0.0074129728600382805, + 0.012850549072027206, + 0.014407133683562279, + -0.0008895393111743033, + -0.010421439073979855, + 0.0008267175289802253, + -0.0029089986346662045, + -0.025058919563889503, + 0.0024884415324777365, + 0.005713294260203838, + -0.013450846076011658, + 0.024528425186872482, + 0.056344177573919296, + 0.02631535567343235, + 0.010602924972772598, + -0.03894951939582825, + -0.04556674882769585, + 0.033197835087776184, + -0.025617336854338646, + -0.033979617059230804, + -0.0023087013978511095, + -0.021205849945545197, + 0.01443505473434925, + 0.023802483454346657, + -0.002849666867405176, + -0.02353723533451557, + 0.008097033016383648, + 0.021150007843971252, + -0.002655966207385063, + -0.009967726655304432, + -0.006976710632443428, + -0.0037274269852787256, + -0.010484261438250542, + 0.01806475967168808, + -0.0029543698765337467, + 0.002209233585745096, + 0.01678040251135826, + 0.004938492085784674, + -0.03079664520919323, + -0.022308720275759697, + -0.012417776510119438, + -0.03051743656396866, + 0.018008917570114136, + 0.01461653970181942, + -0.027013376355171204, + -0.08264557272195816, + -0.01951664127409458, + -0.03752555698156357, + 0.029400603845715523, + 0.018302086740732193, + -0.012878470122814178, + 0.011761638335883617, + 0.010309755802154541, + -0.01461653970181942, + -0.0003518457233440131, + 0.024723870679736137, + -0.016933966428041458, + 0.004767477046698332, + 0.02801852487027645, + 0.02307654358446598, + -0.008627528324723244, + 0.0005745577509514987, + -0.007685200776904821, + 0.0049873534590005875, + -0.01810663938522339, + -0.002622810425236821, + 0.017045650631189346, + 0.03844694420695305, + -0.009960746392607689, + -0.018748817965388298, + 0.023886246606707573, + -0.01760406605899334, + -0.007182626519352198, + -0.0008214823319576681, + -0.02656664326786995, + 0.004565051291137934, + 0.018930304795503616, + -0.014120945706963539, + -0.029540209099650383, + -0.009953766129910946, + 0.02328594960272312, + -0.004704655148088932, + -0.03127129748463631, + 0.021959710866212845, + -2.17176948353881e-5, + 0.02236456237733364, + -0.002989270957186818, + -0.011349806562066078, + -0.004261412657797337, + -0.016235945746302605, + -0.0050536650232970715, + 0.007971389219164848, + -0.026762088760733604, + 0.01534248050302267, + 0.024835553020238876, + 0.013618371449410915, + -0.0028391964733600616, + -0.024165453389286995, + -0.019195551052689552, + 0.0010269619524478912, + 0.02297881990671158, + -0.0005592885427176952, + -0.014295450411736965, + 0.021275650709867477, + 0.00892767682671547, + 0.03693922236561775, + 0.015663569793105125, + 0.025659216567873955, + -0.014798025600612164, + -0.008062131702899933, + 0.016864163801074028, + 0.020354265347123146, + 0.022783374413847923, + 0.018399808555841446, + 0.004261412657797337, + 0.010798370465636253, + 0.009716439060866833, + -0.015091193839907646, + 0.005346833728253841, + 0.0008066494483500719, + 0.01618010550737381, + 0.006086735054850578, + 0.011838420294225216, + 0.021205849945545197, + -0.0046941847540438175, + -0.029456445947289467, + 0.013911539688706398, + -0.007357131224125624, + -0.01870693825185299, + -0.0033225754741579294, + 0.0025948896072804928, + 0.025868622586131096, + -0.03233228996396065, + 0.019977334886789322, + 0.004195100627839565, + 0.02282525599002838, + 0.006240299437195063, + 0.032025158405303955, + 0.01571941189467907, + -0.021568819880485535, + 0.05422219634056091, + -0.021219810470938683, + 0.033197835087776184, + -0.023271989077329636, + -0.011524311266839504, + 0.005235150456428528, + -0.02667832560837269, + 0.021596740931272507, + -0.012983173131942749, + 0.003559902310371399, + 0.007182626519352198, + -0.0014501366531476378, + -0.006631190422922373, + -0.021820107474923134, + -0.0046139126643538475, + 0.016096342355012894, + -0.011810499243438244, + -0.033616647124290466, + 0.01449089590460062, + -0.0059959921054542065, + 0.0002768085687421262, + -0.0007176518556661904, + -0.01781347207725048, + -0.007224507629871368, + -0.0022179586812853813, + 0.0006683542160317302, + 0.04629268869757652, + 0.009500052779912949, + -0.007629359140992165, + 0.0025722039863467216, + 0.0005950620980001986, + -0.003779778489843011, + -0.01604050025343895, + 0.016920005902647972, + 0.01877673901617527, + -0.00878109224140644, + 0.00906728021800518, + -0.009185943752527237, + 0.004289333242923021, + -0.007755002938210964, + 0.01208970695734024, + 0.03705090284347534, + 0.008250596933066845, + 0.014644460752606392, + -0.026971494778990746, + 0.0016368570504710078, + -0.006875497754663229, + -0.0011325374944135547, + 0.024165453389286995, + -0.005057155154645443, + -0.001611553831025958, + -0.012257232330739498, + -0.003559902310371399, + -0.005800546612590551, + 0.01449089590460062, + -0.00548643758520484, + 0.011629014275968075, + 0.012794707901775837, + 0.0047221058048307896, + -0.014993471093475819, + -0.03090832754969597, + -0.002868862356990576, + 0.02112208679318428, + -0.005140917841345072, + -0.00528052169829607, + -0.00635547237470746, + -0.008383220992982388, + 0.01520287711173296, + 0.006777774542570114, + 0.03135506063699722, + 0.008508864790201187, + -0.015370401553809643, + -0.011105499230325222, + -0.0120548065751791, + 0.004236981738358736, + 0.004254432395100594, + -0.013904559426009655, + -0.0024570305831730366, + -0.017799511551856995, + -0.008557725697755814, + -0.020144859328866005, + 0.014714262448251247, + -0.0011002541286870837, + 0.013143717311322689, + -0.004456858150660992, + -0.014784065075218678, + 0.025449810549616814, + -0.016263866797089577, + 0.011887281201779842, + -0.0008245361968874931, + 0.021108126267790794, + -0.00043778945109806955, + 0.011000796221196651, + -0.0003874011163134128, + 0.005207229405641556, + 0.014337331987917423, + 0.0237606018781662, + -0.004547600634396076, + -0.0004851239500567317, + 0.0030747782438993454, + -0.008187775500118732, + 0.02507288008928299, + 0.036324962973594666, + -0.023607037961483, + -0.009828122332692146, + -0.006449705455452204, + -0.03155050799250603, + -0.0019736518152058125, + 0.01232005376368761, + -0.004474308341741562, + 0.011859361082315445, + -0.035152290016412735, + 0.008774111978709698, + -0.00240118894726038, + -0.017478421330451965, + -0.0028287263121455908, + -0.00043604441452771425, + 0.010749508626759052, + -0.007088393438607454, + 0.011566191911697388, + 0.012536440044641495, + 0.008613567799329758, + -0.011789558455348015, + -0.0018829090986400843, + -0.033616647124290466, + 0.03559902310371399, + 0.005783095955848694, + 0.022001592442393303, + -0.012592282146215439, + 0.009171983227133751, + 0.029931100085377693, + 0.0041462392546236515, + -0.030182387679815292, + -0.015510005876421928, + 0.0038042094092816114, + 0.0012119372840970755, + 0.015370401553809643, + 0.002922958927229047, + -0.007137255277484655, + -0.01703169010579586, + -0.0008720888290554285, + 0.03196932002902031, + -0.023956047371029854, + 0.013625351712107658, + -0.006173987407237291, + -0.007887626998126507, + -0.02962397038936615, + -0.033867932856082916, + 0.002181312767788768, + 0.007378072012215853, + 0.023732682690024376, + -0.03872615098953247, + -0.024095652624964714, + 0.0022703101858496666, + 0.006536957807838917, + 0.01567753031849861, + -0.007901586592197418, + -0.016082381829619408, + 0.0014771849382668734, + 0.0037099765613675117, + 0.0009667577687650919, + 0.00015149216051213443, + 0.018553372472524643, + 0.018036838620901108, + -0.004676734562963247, + -0.030182387679815292, + -0.01567753031849861, + 0.00834133941680193, + -0.047353681176900864, + 0.01650119386613369, + -0.02140129543840885, + -0.011524311266839504, + 0.0051688384264707565, + 0.02813020907342434, + -0.018399808555841446, + -0.009863023646175861, + 2.7798103474196978e-5, + -0.009081240743398666, + -0.0009589050314389169, + 0.007454853970557451, + 0.010030548088252544, + -0.02140129543840885, + -0.03196932002902031, + 0.029540209099650383, + 0.0241096131503582, + -0.01902802661061287, + 0.005817997269332409, + -0.027934761717915535, + 0.014253569766879082, + 0.009576834738254547, + -0.0041113379411399364, + 0.003402847796678543, + -0.011266043409705162, + 0.02674812823534012, + -0.000615130178630352, + 0.005524828564375639, + 0.013862677849829197, + 0.02553357370197773, + -0.001604573568329215, + 0.014770104549825191, + 0.003968243952840567, + 0.00851584505289793, + 0.0037099765613675117, + 0.009786240756511688, + 0.0023069563321769238, + 0.024514464661478996, + -0.005378244444727898, + -0.042300015687942505, + -0.00017570474301464856, + -0.013597430661320686, + -0.00023863560636527836, + 0.01817644201219082, + -0.01449089590460062, + -0.0023418571799993515, + -0.004313764162361622, + 0.00376930832862854, + 0.00465928390622139, + -0.011531291529536247, + -0.03978714346885681, + -0.003287674393504858, + 0.029847336933016777, + 0.029400603845715523, + -0.003278949297964573, + 0.020116938278079033, + -0.033309515565633774, + -0.003558157244697213, + 0.0041113379411399364, + 0.023481395095586777, + 0.016375551000237465, + -0.03693922236561775, + -0.01269698515534401, + -0.019865650683641434, + 0.009220845066010952, + 0.0017886763671413064, + 0.002804295625537634, + -0.01611030288040638, + 0.055674079805612564, + 0.0029334293212741613, + 0.015007431618869305, + 0.011049657128751278, + 0.005748195108026266, + 0.0005156623083166778, + 0.003926362842321396, + -0.011838420294225216, + -0.005025744438171387, + 0.04408694803714752, + -0.00029098711092956364, + -0.02187594771385193, + -0.00465928390622139, + -0.0014396663755178452, + 0.004292823374271393, + -0.00878109224140644, + 0.021610701456665993, + 0.03364456817507744, + -0.006086735054850578, + 0.016738520935177803, + 0.01927931420505047, + 0.0030939739663153887, + -0.00012913371028844267, + 0.006306611001491547, + 0.03624119982123375, + -0.0005963708972558379, + 0.021708423271775246, + -0.018762778490781784, + -0.024207334965467453, + -0.024193374440073967, + -0.010658766143023968, + 0.010114310309290886, + 0.033728327602148056, + -0.011189261451363564, + -0.005681883078068495, + 0.006442725192755461, + -0.006421784404665232, + 0.004006634932011366, + -0.029065554961562157, + 0.01456069853156805, + 0.008027230389416218, + -0.02962397038936615, + 0.0011351550929248333, + -0.013443865813314915, + 0.008466983214020729, + -0.001028707018122077, + 0.006160026881843805, + 0.010672726668417454, + -0.012892430648207664, + -0.0008930293843150139, + -0.006746363826096058, + 0.008669408969581127, + -0.019432878121733665, + -0.015286639332771301, + -0.015705451369285583, + 0.014700301922857761, + 0.003908912185579538, + 0.001260798773728311, + 0.0024744810070842505, + -0.014232628978788853, + -0.031634267419576645, + 0.027795158326625824, + 0.004683714359998703, + 0.0047151255421340466, + -0.006610250100493431, + -0.03967545926570892, + 0.018623175099492073, + -0.033700406551361084, + -0.030210308730602264, + -0.007957428693771362, + 0.012997133657336235, + -0.012431737035512924, + 0.0388936772942543, + -0.005898269359022379, + 0.009988667443394661, + 0.012662083841860294, + 0.037888526916503906, + 0.015956738963723183, + -0.008913716301321983, + -0.019851690158247948, + 0.0064915865659713745, + -0.0011508605675771832, + -0.007095373701304197, + -0.03205307945609093, + -0.004833789076656103, + -0.0063973539508879185, + 0.038028132170438766, + -0.00186894868966192, + 0.011545252054929733, + -0.00967455841600895, + 0.0069802007637917995, + -0.015886936336755753, + -0.006955769844353199, + -0.01456069853156805, + 0.012794707901775837, + -0.013304262422025204, + -0.005022254306823015, + 0.0002805168041959405, + -0.006327551789581776, + 0.00947911199182272, + -0.017506342381238937, + 0.008083072490990162, + 0.005214209668338299, + 0.035682786256074905, + -0.016794363036751747, + -0.003929852973669767, + -0.010658766143023968, + 0.015244757756590843, + 0.00291074370034039, + -0.01976792886853218, + -0.016096342355012894, + 0.004945471882820129, + -0.027180900797247887, + 0.00042775541078299284, + 2.4894230591598898e-5, + 0.01574733294546604, + -0.015105154365301132, + 0.02041010558605194, + 0.020312383770942688, + 0.022169116884469986, + -0.01974000781774521, + 0.0325835756957531, + -0.0023104464635252953, + 0.01870693825185299, + 0.018218323588371277, + -0.01788327470421791, + -0.01321351993829012, + -0.02392812818288803, + 0.018972184509038925, + -0.018232284113764763, + 0.00623331917449832, + -0.014700301922857761, + 0.00476398691534996, + -0.004673244431614876, + 0.017897233366966248, + 0.04539922624826431, + -0.0154122831299901, + -0.01306693535298109, + -0.020354265347123146, + -0.00640084408223629, + -0.00821569561958313, + 0.001956201158463955, + -0.004418467171490192, + 0.02424921654164791, + -0.019335156306624413, + -0.014218668453395367, + -0.0008908481104299426, + -0.0002477971138432622, + -0.01507723331451416, + 0.00431027403101325, + -0.011866341345012188, + 0.0012581811752170324, + 0.02762763388454914, + 0.02247624658048153, + -0.025128722190856934, + 0.030964169651269913, + -0.009304607287049294, + 0.005434086080640554, + 0.04149031266570091, + -0.014728222973644733, + 0.010477281175553799, + -0.020647432655096054, + 0.011894261464476585, + 0.026259513571858406, + -0.02197367139160633, + -0.00496990280225873, + -0.011559211649000645, + 0.015482084825634956, + -0.0013855698052793741, + 0.007768962997943163, + -0.018232284113764763, + -0.04324932396411896, + -0.0022005082573741674, + 0.007566537242382765, + -0.01721317507326603, + -0.007957428693771362, + 0.007056982722133398, + -0.0006495949346572161, + -0.012641143053770065, + -0.015300599858164787, + 0.002750199055299163, + 0.0016010835533961654, + 0.005877329036593437, + 0.005943640600889921, + -0.013702133670449257, + 0.014700301922857761, + -0.01778555102646351, + -0.0036750754807144403, + -0.0031358550768345594, + -0.017799511551856995, + 0.006805695593357086, + -0.011684855446219444, + -0.007964408956468105, + -0.0018078719731420279, + 0.02008901722729206, + 0.0008703437633812428, + 0.0015670550055801868, + -0.03314199298620224, + 0.0007569154840894043, + -0.00030821948894299567, + 0.0024901865981519222, + 0.007992330007255077, + 0.014630500227212906, + 0.036715853959321976, + 0.006819656118750572, + 0.00399965513497591, + 0.00730826985090971, + -0.022113274782896042, + -0.010658766143023968, + -0.00399965513497591, + 0.0064636655151844025, + -0.02098248340189457, + 0.013744015246629715, + 0.020172780379652977, + 0.07845745235681534, + -0.011740697547793388, + -0.006299631204456091, + -0.016473272815346718, + 0.017450502142310143, + -0.010749508626759052, + 0.013750995509326458, + 0.0026926123537123203, + 0.01428148988634348, + 0.003929852973669767, + -0.0046208929270505905, + -0.032025158405303955, + 0.006948789581656456, + 0.009597775526344776, + -0.015035351738333702, + -0.005852898117154837, + 0.006502056960016489, + 0.03816773742437363, + 6.751162436557934e-5, + 0.019265353679656982, + 0.013032034039497375, + -0.0193491168320179, + 0.008083072490990162, + 0.013562529347836971, + -0.004683714359998703, + 0.017017729580402374, + -0.003832129994407296, + -0.005381734576076269, + 0.008829954080283642, + 0.018232284113764763, + -0.011286984197795391, + -0.006767304614186287, + -0.005573689937591553, + 0.007077923510223627, + 0.0014518817188218236, + 0.020368225872516632, + -0.009681537747383118, + 0.013890598900616169, + 0.0008197373244911432, + 0.02826981246471405, + -0.006369432900100946, + -0.01852545142173767, + 0.036464568227529526, + 0.030880406498908997, + 0.0012721415841951966, + -0.01386965811252594, + 0.0021202359348535538, + -0.0005867730942554772, + -0.00021834939252585173, + 0.005172328557819128, + -0.020954562351107597, + -0.004449877887964249, + 0.0101003497838974, + -0.009262725710868835, + 0.002970075234770775, + -8.850676385918632e-5, + 0.018441690132021904, + -0.020005254074931145, + -0.024835553020238876, + 0.0017747159581631422, + -0.0054620071314275265, + -0.002048688940703869, + -0.019935453310608864, + -0.014462975785136223, + 0.003380162175744772, + -0.018553372472524643, + -0.018553372472524643, + -0.0016926986863836646, + 0.0026908672880381346, + 0.0029072535689920187, + -0.007095373701304197, + 0.011028717271983624, + 0.0028409415390342474, + -0.03456595167517662, + -0.0018497532000765204, + 0.018734857439994812, + 0.01507723331451416, + 0.011524311266839504, + 0.008229656144976616, + -0.0028304713778197765, + 0.0023191715590655804, + 0.005678392946720123, + 0.00983510259538889, + -0.02236456237733364, + -0.009269705973565578, + -0.00753861665725708, + 0.010735548101365566, + -0.020382186397910118, + 0.004641833249479532, + -0.023411592468619347, + -0.016012579202651978, + 0.009332528337836266, + 0.004729086067527533, + 0.0009440721478313208, + -0.003326065605506301, + -0.004366115666925907, + -0.019265353679656982, + -0.008774111978709698, + -0.004875670187175274, + -0.00633802218362689, + 0.018762778490781784, + 0.012068767100572586, + -0.0029857808258384466, + -0.006798715330660343, + 0.011622034013271332, + -0.013918519951403141, + 0.012194409966468811, + 0.004097377881407738, + -0.011845400556921959, + -0.0018619685433804989, + -0.003776288591325283, + -0.00324055808596313, + -0.00730826985090971, + -0.0009274941403418779, + -0.02730654366314411, + 0.018162481486797333, + 0.010288815945386887, + 0.004893120378255844, + 0.0006469773361459374, + -0.01682228408753872, + -0.020856838673353195, + 0.002710062777623534, + -0.0074199531227350235, + -0.0012677789200097322, + 0.0029613501392304897, + -0.0025966346729546785, + 0.000712416716851294, + -0.0024866964668035507, + -0.020228620618581772, + 0.002408169209957123, + 0.024444662034511566, + 0.006599779706448317, + 0.0065648783929646015, + -0.011426588520407677, + 0.01905594766139984, + -0.014127925969660282, + -0.006631190422922373, + 0.008383220992982388, + 0.030321991071105003, + -0.008425101637840271, + 0.01208970695734024, + 0.032304368913173676, + 0.0028950381092727184, + 0.007461834233254194, + 0.00631359126418829, + 0.03492892533540726, + -0.011747677810490131, + -0.03146674484014511, + 0.02148505672812462, + 0.007845745421946049, + 0.018078720197081566, + -0.017687827348709106, + 0.0015277913771569729, + -0.016557035967707634, + 0.024235256016254425, + 0.0013340908335521817, + -0.00625076936557889, + 0.02318822592496872, + -0.0010164916748180985, + 0.005852898117154837, + -0.002849666867405176, + 0.010219013318419456, + -0.0101003497838974, + -0.0043207439593970776, + -0.006788244936615229, + 0.006533467676490545, + 0.02482159249484539, + 0.016836244612932205, + 0.01820436306297779, + -0.022671692073345184, + -0.012145549058914185, + 0.00890673603862524, + 0.003456944366917014, + -0.030992090702056885, + -0.001097636530175805, + -0.00012847931066062301, + -0.010281835682690144, + 0.006774284411221743, + -0.0258127823472023, + 0.006847576703876257, + 0.0017363248625770211, + -0.02464010752737522, + 0.010526142083108425, + 0.009590795263648033, + 0.018804660066962242, + -0.022769413888454437, + 0.021345453336834908, + -0.0221551563590765, + 0.008843913674354553, + 0.0003808571782428771, + -0.015845054760575294, + 0.030768724158406258, + -0.007203566841781139, + -0.00302242673933506, + -0.004034555982798338, + -0.009283666498959064, + 0.007817824371159077, + 0.022280801087617874, + -0.0034796299878507853, + -0.020954562351107597, + -0.004879160318523645, + -0.006742873694747686, + 0.008369260467588902, + -0.007503715809434652, + 0.011140400543808937, + -0.024011889472603798, + -0.007385052274912596, + -0.010030548088252544, + -0.005451536737382412, + -0.009444211609661579, + -0.047102391719818115, + -0.01468634232878685, + 0.015482084825634956, + -0.0037239370867609978, + -0.011426588520407677, + -0.00030996452551335096, + 0.019293274730443954, + 0.01806475967168808, + 0.014756144024431705, + 0.005838937591761351, + 0.003413317957893014, + 0.00885787419974804, + 0.008913716301321983, + -0.0023645430337637663, + -0.01622198522090912, + -0.0055213384330272675, + 0.0060169328935444355, + 0.008166834712028503, + 0.015635648742318153, + 0.0008031593170017004, + 0.03090832754969597, + 0.012012924998998642, + -0.011217182502150536, + 0.01824624463915825, + -0.00521769979968667, + 0.044366154819726944, + 0.0017398149939253926, + -0.006167007144540548, + 0.009807181544601917, + -0.007831784896552563, + 0.01020505279302597, + -0.0154122831299901, + -0.010107330046594143, + 0.006257749628275633, + 0.010323716327548027, + 0.016473272815346718, + 0.005723764654248953, + -0.01198500394821167, + 0.0022231938783079386, + -2.0586137907230295e-5, + -0.00892767682671547, + -0.011496390216052532, + -0.019265353679656982, + 0.02838149480521679, + 0.012166489847004414, + 0.014120945706963539, + 0.0017816962208598852, + -0.0028549020644277334, + -0.013101836666464806, + -0.012012924998998642, + -0.0038809916004538536, + 0.018818620592355728, + 0.018832581117749214, + -0.010875152423977852, + -0.0035023156087845564, + 0.01306693535298109, + -0.019614363089203835, + 0.008362280204892159, + -0.004072946961969137, + 0.007496735546737909, + -0.009199904277920723, + -0.0017956566298380494, + -0.006076264660805464, + 0.015482084825634956, + -0.016194066032767296, + -0.00975832063704729, + 0.014895748347043991, + 0.00017908576410263777, + -0.007517675869166851, + -0.0029962509870529175, + -0.006006462499499321, + -0.0038495806511491537, + -0.00011899060336872935, + -0.02328594960272312, + -0.004010125063359737, + -0.0029247039929032326, + -0.0029177237302064896, + 0.017701787874102592, + 0.007971389219164848, + -0.0019457308808341622, + 0.0104004992172122, + -0.007664259988814592, + 0.012354955077171326, + -0.01980980858206749, + 0.001999827567487955, + 0.013290301896631718, + -0.01296223234385252, + 0.006069284398108721, + 0.03247189149260521, + 0.0059959921054542065, + 0.006550918333232403, + 0.010533122345805168, + -0.0006574476137757301, + -0.013206539675593376, + 0.010798370465636253, + 0.012033865787088871, + 0.00815985444933176, + 0.0034360038116574287, + -0.00610767537727952, + -0.009081240743398666, + -0.018008917570114136, + 0.0045929718762636185, + 0.014190747402608395, + -0.023230107501149178, + 0.0063973539508879185, + -0.028758427128195763, + 0.009367428719997406, + 0.01813456043601036, + -0.005465497262775898, + -0.0041532195173203945, + -0.008704310283064842, + -0.0042404718697071075, + -0.006599779706448317, + 0.012990153394639492, + 0.0024203844368457794, + 0.015551886521279812, + 0.007029062137007713, + 0.010707627981901169, + -0.009751340374350548, + -0.014658421277999878, + 0.019572481513023376, + -0.02429109811782837, + 0.006529977545142174, + 0.0025355578400194645, + -0.0033766720443964005, + 0.02457030676305294, + -0.01749238185584545, + 0.004784927703440189, + -0.01146846916526556, + 0.008362280204892159, + -0.029177239164710045, + 0.015049312263727188, + -0.0045859916135668755, + 0.006746363826096058, + 0.007385052274912596, + 0.017310896888375282, + -0.012634162791073322, + 0.006219358649104834, + 0.008592627011239529, + 0.016724560409784317, + 0.01974000781774521, + 0.0033138501457870007, + 0.012927331030368805, + -0.01643139123916626, + -0.004446387756615877, + -0.007454853970557451, + 0.015063272789120674, + 0.01974000781774521, + -0.009060299955308437, + -0.009597775526344776, + -0.006187947932630777, + 0.005022254306823015, + -0.011070597916841507, + -0.015398322604596615, + -0.004777947440743446, + -0.0074269333854317665, + -0.004341684747487307, + 0.01703169010579586, + -0.029707733541727066, + 0.010491241700947285, + -0.021024364978075027, + -0.036324962973594666, + -0.015705451369285583, + -0.005842427723109722, + -0.008739210665225983, + 0.014407133683562279, + 0.005092056468129158, + -0.003294654656201601, + -0.0030049763154238462, + -0.006795225199311972, + 0.019321195781230927, + 0.031634267419576645, + -0.01941891759634018, + -0.00983510259538889, + 0.01468634232878685, + 0.010700647719204426, + 0.005852898117154837, + 0.028004564344882965, + 0.009109161794185638, + -0.020047135651111603, + -0.019712086766958237, + 0.0012503283796831965, + -0.0031428353395313025, + 0.015286639332771301, + 0.0004153219342697412, + -0.01902802661061287, + -0.01221535075455904, + 0.024556346237659454, + -0.0006932211690582335, + 0.005737724713981152, + 0.01583109423518181, + -0.005758665502071381, + 0.007943468168377876, + 0.012948271818459034, + 0.02461218647658825, + -0.01930723525583744, + 0.004526659846305847, + 0.017911193892359734, + -0.00521769979968667, + -0.015579807572066784, + 0.01234099455177784, + 0.0074269333854317665, + -0.008739210665225983, + 0.005772626027464867, + 0.006920868996530771, + 0.0035686276387423277, + 0.012543420307338238, + 0.0030346421990543604, + 0.018734857439994812, + -0.0009571600239723921, + 0.013080895878374577, + 0.004449877887964249, + 0.009493072517216206, + 0.00221446854993701, + 0.0008616184932179749, + -0.01410000491887331, + 0.024905355647206306, + 0.0004986480926163495, + -0.007018591742962599, + 0.013276341371238232, + -0.00753861665725708, + -0.014239609241485596, + -0.012787727639079094, + 0.021568819880485535, + -0.013723074458539486, + 0.0086205480620265, + 0.01891634427011013, + -0.020535750314593315, + 0.015579807572066784, + 0.0051758186891674995, + -0.03149466589093208, + -0.008843913674354553, + 0.016124263405799866, + 0.0021516468841582537, + 0.009716439060866833, + -0.00431027403101325, + -0.006341512314975262, + 0.018218323588371277, + 0.0029002733062952757, + -0.005709804128855467, + -0.0006648640846833587, + 0.017841393128037453, + 0.005811017006635666, + -0.014365253038704395, + -0.01146846916526556, + -0.006540447939187288, + 0.009576834738254547, + 0.017366738989949226, + 0.033700406551361084, + -0.033197835087776184, + -0.0007822187035344541, + -0.010142231360077858, + -0.018357926979660988, + 0.01004450861364603, + -0.014518816955387592, + -0.007678220514208078, + 0.005392204970121384, + 0.02346743457019329, + -0.007517675869166851, + 0.01624990627169609, + -0.004757006652653217, + 0.0005073733045719564, + 0.009793221019208431, + -0.0086205480620265, + 0.029847336933016777, + -0.006055323872715235, + 0.0037972291465848684, + 0.016892084851861, + 0.015872975811362267, + -0.008243616670370102, + -0.008843913674354553, + 0.003668095450848341, + -0.009681537747383118, + 0.008152874186635017, + 0.02208535373210907, + 0.02479367144405842, + -0.0046872044913470745, + -0.005029234569519758, + 0.014134906232357025, + 0.00602740328758955, + -0.0004737811104860157, + 0.002509382087737322, + 0.005004803650081158, + 0.00803421065211296, + 0.007915547117590904, + -0.008662428706884384, + 0.0017494127387180924, + 0.008473963476717472, + 0.0027746297419071198, + -0.0060378736816346645, + 0.0008873579790815711, + -0.00027506353217177093, + 0.00633802218362689, + 0.030712882056832314, + 0.0032056570053100586, + -0.001722364453598857, + -0.006697502452880144, + 0.007378072012215853, + 0.01461653970181942, + 0.009325548075139523, + 0.001994592370465398, + -0.0020556689705699682, + -0.008704310283064842, + 0.023676840588450432, + -0.012997133657336235, + 0.016305748373270035, + 0.011622034013271332, + -0.00027397286612540483, + 0.01097287517040968, + -0.007294309791177511, + -0.011014756746590137, + -0.00792950764298439, + -0.01169881597161293, + -0.006540447939187288, + -0.0023854835890233517, + 0.01955852285027504, + 0.019865650683641434, + 0.015705451369285583, + 0.017548223957419395, + 0.0025983797386288643, + -0.004760496784001589, + 0.005838937591761351, + -0.005444556474685669, + 0.004774457309395075, + 0.02094060182571411, + 0.01742258109152317, + -0.001043539959937334, + 0.004086907487362623, + 0.01987961120903492, + 0.017045650631189346, + -0.0006343257264234126, + 0.013464806601405144, + -4.4716911361319944e-5, + -0.00037627643905580044, + -0.0042474521324038506, + -0.04056892544031143, + -0.005912229884415865, + 0.0049873534590005875, + 0.025729019194841385, + 0.005978541914373636, + 0.011091538704931736, + -0.0018811640329658985, + 0.02560337632894516, + 0.014937628991901875, + 0.012480598874390125, + -0.023983968421816826, + -0.007573517505079508, + 0.003451709169894457, + -0.005378244444727898, + 0.008348319679498672, + 0.002935174386948347, + -0.010149211622774601, + -0.006512526888400316, + -0.0035808428656309843, + -0.012508518993854523, + 0.003982204478234053, + 0.04352853074669838, + 0.018720898777246475, + 0.0009789731120690703, + 0.018218323588371277, + -0.02585466206073761, + -0.002415149472653866, + -0.012334014289081097, + 0.01567753031849861, + -0.01678040251135826, + -0.01629178784787655, + -0.02144317701458931, + -0.006446215324103832, + 0.019642284139990807, + -0.011370746418833733, + 0.006296141073107719, + -0.01157317217439413, + -0.027222782373428345, + -9.924972982844338e-5, + -0.005524828564375639, + 0.002975310431793332, + 0.00983510259538889, + -0.011503370478749275, + 0.017450502142310143, + -0.013269361108541489, + 0.02392812818288803, + -0.032834865152835846, + -0.010944954119622707, + 0.012843568809330463, + -0.0006085862405598164, + 0.007580497767776251, + -0.011908221989870071, + 0.00839020125567913, + -0.00903237983584404, + -0.012759806588292122, + 0.005430595949292183, + -0.003444728907197714, + 0.0056504723615944386, + 0.0023017211351543665, + -0.007238468155264854, + 0.014379213564097881, + 0.010093370452523232, + -0.014393173158168793, + -0.00737109174951911, + -0.007287329528480768, + -0.015216837637126446, + -0.005884308833628893, + 0.01045634038746357, + 0.0006256004562601447, + -0.003456944366917014, + -0.026873772963881493, + 0.017366738989949226, + -0.00434866501018405, + 0.03903328254818916, + -0.01456069853156805, + -0.020368225872516632, + -0.01234099455177784, + -0.008725251071155071, + 0.017045650631189346, + 0.01399530190974474, + 0.008529804646968842, + -0.012243271805346012, + 0.008243616670370102, + 0.0059227002784609795, + -0.012431737035512924, + -0.010833270847797394, + 0.00459646200761199, + 0.0023034662008285522, + -0.0052002496086061, + -0.009737379848957062, + 0.011461488902568817, + -0.016305748373270035, + 0.0007481902721337974, + 0.009430251084268093, + -0.03434258699417114, + 0.0019963374361395836, + -0.014009262435138226, + -0.0038740113377571106, + -0.0020923151168972254, + 0.010009607300162315, + 0.012822628021240234, + 0.007852725684642792, + 0.027264663949608803, + -0.0068720076233148575, + 0.002046943875029683, + -0.01443505473434925, + -0.018330005928874016, + -0.011517331004142761, + 0.011049657128751278, + -0.009199904277920723, + -0.01246663834899664, + 0.006121635902673006, + -0.016305748373270035, + 0.021429216489195824, + -0.019530601799488068, + -0.032806944102048874, + -0.041657835245132446, + -0.00737109174951911, + -0.001433558645658195, + 0.005301462486386299, + -0.02674812823534012, + 0.01962832361459732, + 0.0042334916070103645, + -0.002891547977924347, + -0.030238227918744087, + -0.010735548101365566, + 0.013073915615677834, + -0.012794707901775837, + 0.02165258303284645, + -0.00428584311157465, + -0.015300599858164787, + -0.000327196903526783, + -0.0029875258915126324, + 0.01781347207725048, + -0.03434258699417114, + -0.0018253223970532417, + 0.03587822988629341, + -0.00190035963896662, + -0.009681537747383118, + -1.8445725800120272e-5, + 0.008843913674354553, + 0.01091703400015831, + -0.003130619879812002, + 0.0015077233547344804, + -0.013255400583148003, + -0.029959021136164665, + -0.00983510259538889, + 0.0009833357762545347, + -0.023244068026542664, + 0.016612878069281578, + 0.012494559399783611, + -0.010554063133895397, + -0.01006544940173626, + -0.023565156385302544, + 0.007978369481861591, + -0.01951664127409458, + -0.0017485402058809996, + 0.0021778226364403963, + -0.021429216489195824, + 0.00855074543505907, + 0.001785186235792935, + 0.0064636655151844025, + -0.0077131218276917934, + -0.001745922607369721, + -0.0024971668608486652, + -0.0021307063288986683, + 0.008871834725141525, + 0.0036401746328920126, + -0.019684165716171265, + -0.024486543610692024, + -0.013806836679577827, + 0.01618010550737381, + -0.013555549085140228, + -0.019586442038416862, + 0.013792876154184341, + -0.011615053750574589, + 0.007629359140992165, + -0.0033382808323949575, + 0.004072946961969137, + -0.0045859916135668755, + -0.01785535365343094, + -0.009730399586260319, + 0.02015881985425949, + 0.0010557553032413125, + 0.012780747376382351, + 0.0018532432150095701, + -0.0033696917816996574, + -0.00033657654421404004, + 0.013988321647047997, + -0.0004999568918719888, + -0.01120322197675705, + -0.00030582002364099026, + 0.0019335155375301838, + -0.0023976988159120083, + 0.004544110503047705, + -0.026259513571858406, + -0.016738520935177803, + -0.014937628991901875, + 0.009925845079123974, + 0.005311932414770126, + 0.002127216197550297, + 0.002235409338027239, + -0.006086735054850578, + -0.02856297977268696, + 0.012026885524392128, + -0.005905249621719122, + -0.014037183485925198, + 0.014260550029575825, + -0.01611030288040638, + -0.0020312382839620113, + -7.4055562436115e-5, + 0.026608524844050407, + -0.011705796234309673, + 0.00983510259538889, + 0.014504856429994106, + 0.018734857439994812, + 0.0050676255486905575, + -0.016808323562145233, + 0.01983772963285446, + -0.01120322197675705, + 0.011943123303353786, + 0.0030555827543139458, + -0.0029561149422079325, + -0.0010269619524478912, + 0.007880646735429764, + 0.006282180547714233, + -0.01246663834899664, + 0.006816165987402201, + -0.019935453310608864, + -0.012473618611693382, + -0.02799060381948948, + 0.00453364010900259, + 0.0028147657867521048, + -0.0029491346795111895, + 0.008543765172362328, + -0.0029020183719694614, + 0.0014771849382668734, + -0.018413769081234932, + 0.004345174878835678, + -0.019474759697914124, + -0.014630500227212906, + 0.0121804503723979, + 0.0027938252314925194, + 0.02098248340189457, + 0.0009292392060160637, + 0.015119113959372044, + 0.012717925012111664, + -0.015105154365301132, + -0.014979510568082333, + 0.018888423219323158, + 0.006146066356450319, + 0.010784409940242767, + -0.009493072517216206, + -0.020214660093188286, + -0.0034953353460878134, + -0.008278517983853817, + -0.006746363826096058, + 0.004174159839749336, + -0.016808323562145233, + 0.0013698643306270242, + 0.032667338848114014, + -0.0042474521324038506, + 0.00238199345767498, + 0.012012924998998642, + 0.00459646200761199, + -0.00260012480430305, + 0.010393518954515457, + -0.01960040256381035, + 0.007032552268356085, + 0.03194139897823334, + -0.021345453336834908, + 0.009981687180697918, + -0.019781887531280518, + 0.014148866757750511, + 0.010903073474764824, + -0.0015635648742318153, + 0.022099314257502556, + 0.005500398110598326, + -0.009241785854101181, + -0.018623175099492073, + 0.013011094182729721, + 0.009332528337836266, + -0.01234099455177784, + -0.00028836954152211547, + -0.0291213970631361, + -0.0055213384330272675, + 0.008843913674354553, + 0.0118803009390831, + 0.017380699515342712, + -0.0031131694559007883, + -0.002875842619687319, + -0.015496045351028442, + -0.00590175949037075, + -0.004910571034997702, + 0.01120322197675705, + 0.0015635648742318153, + -0.021596740931272507, + 0.024919316172599792, + 0.012662083841860294, + 0.005339853465557098, + -0.003090483834967017, + -0.03693922236561775, + 0.01657099649310112, + -0.025729019194841385, + -0.004202080890536308, + 0.007018591742962599, + -0.008076092228293419, + 0.020689314231276512, + 0.00724544795230031, + -0.015510005876421928, + 0.011677875183522701, + -0.011601093225181103, + 0.009890943765640259, + 0.0069173788651824, + -0.015007431618869305, + -0.00095017981948331, + 0.033784169703722, + 0.016347629949450493, + 0.005126957315951586, + 0.017827432602643967, + -0.017980996519327164, + 0.006439235061407089, + 0.010540102608501911, + 0.004076437093317509, + -0.003692526137456298, + -0.00590175949037075, + -0.005664432886987925, + -0.02001921460032463, + 0.002809530822560191, + 0.0025338127743452787, + 0.013080895878374577, + -0.0032614986412227154, + -0.0013192578917369246, + 0.009981687180697918, + 0.02314634434878826, + 0.0007372836698777974, + 0.013429906219244003, + -0.009500052779912949, + 0.01004450861364603, + -0.018357926979660988, + -0.009772281162440777, + 0.018078720197081566, + -0.009639657102525234, + 0.016333669424057007, + 0.014770104549825191, + 0.012061786837875843, + 0.0030520926229655743, + 0.009946785867214203, + -0.01461653970181942, + -0.014700301922857761, + -0.005517848767340183, + 0.023230107501149178, + -0.0064043342135846615, + 0.0050955465994775295, + -0.01091703400015831, + 0.009025399573147297, + 0.007838765159249306, + -0.007468814495950937, + -0.012431737035512924, + -0.014407133683562279, + -0.01182445976883173, + -0.03252773359417915, + -0.0004155400674790144, + 0.0019457308808341622, + -0.004777947440743446, + -0.01732485741376877, + -0.005025744438171387, + 0.0017572655342519283, + -0.00445336801931262, + 0.010135251097381115, + 0.005765645764768124, + 0.007454853970557451, + -0.009123122319579124, + -0.011000796221196651, + -0.03470555692911148, + -0.002280780579894781, + 0.035152290016412735, + -0.008969557471573353, + 0.018581293523311615, + -0.015691490843892097, + -0.010281835682690144, + -0.005270051304250956, + 0.003961263690143824, + -0.022238919511437416, + -0.01927931420505047, + 0.010219013318419456, + -0.002221448812633753, + 0.0102259935811162, + -0.0008101395214907825, + -0.0046139126643538475, + -0.015496045351028442, + 0.00393683323636651, + -0.017980996519327164, + -0.004938492085784674, + -0.010498221963644028, + 0.031382981687784195, + 0.015942778438329697, + -0.011559211649000645, + 0.00633802218362689, + -0.019893571734428406, + 0.01756218448281288, + -0.0026437509804964066, + -0.01597069948911667, + -0.014232628978788853, + 0.00782480463385582, + -0.020745156332850456, + 0.0104004992172122, + 0.029400603845715523, + 0.005877329036593437, + 0.009946785867214203, + -0.0021621170453727245, + 0.0017625006148591638, + -0.01638951152563095, + -0.014825945720076561, + -0.008264557458460331, + -0.0068720076233148575, + -0.02247624658048153, + 0.00965361762791872, + -0.01285752933472395, + 0.008767131716012955, + -0.010896093212068081, + 0.0018654585583135486, + -0.006310101132839918, + -0.029316842555999756, + -0.0016918261535465717, + 0.01520287711173296, + -0.0018078719731420279, + -0.0038216598331928253, + 0.029177239164710045, + 0.006411314010620117, + 0.008822973817586899, + -0.025729019194841385, + -0.004006634932011366, + -0.03252773359417915, + 0.023886246606707573, + -0.004407996777445078, + -0.025407930836081505, + 0.01250153873115778, + -0.011957083828747272, + 0.005552749615162611, + 0.003109679324552417, + 0.007322230376303196, + -0.0034325136803090572, + 0.011147379875183105, + 0.0015051057562232018, + -0.011908221989870071, + -0.008104013279080391, + -0.013032034039497375, + -0.0010068939300253987, + -0.013080895878374577, + -0.011217182502150536, + 0.021024364978075027, + 0.022713571786880493, + -0.010588964447379112, + -0.012536440044641495, + 0.007336190901696682, + 0.021610701456665993, + -0.001324493088759482, + -0.004341684747487307, + -0.0017267271177843213, + -0.012012924998998642, + 0.004404506646096706, + -0.007594458293169737, + -0.01622198522090912, + 0.030182387679815292, + 0.014267530292272568, + 0.006282180547714233, + -0.023132383823394775, + -0.01157317217439413, + -0.006631190422922373, + 0.02574297972023487, + 0.03001486323773861, + 0.027222782373428345, + 0.011524311266839504, + 0.007734062150120735, + 0.011056637391448021, + 0.025017037987709045, + -0.002915978664532304, + -0.014023222960531712, + -0.0008350064745172858, + 0.0029875258915126324, + 0.008788072504103184, + -0.00548643758520484, + -0.0016255142400041223, + -0.033477041870355606, + 0.008613567799329758, + -0.002694357419386506, + -0.01838584803044796, + -0.00662421016022563, + -0.022141195833683014, + -0.007130275014787912, + -0.020856838673353195, + 0.009095201268792152, + -0.009151043370366096, + 0.01767386868596077, + 0.002968330169096589, + 0.01599862053990364, + -0.009151043370366096, + 0.026036148890852928, + -0.014630500227212906, + -0.007482775021344423, + -0.002202253323048353, + -0.0018113619880750775, + 0.0118035189807415, + 0.01255040057003498, + -0.04609724506735802, + -0.025547534227371216, + 0.008473963476717472, + -0.01597069948911667, + 0.013897579163312912, + 0.013925500214099884, + -0.017799511551856995, + 0.009130102582275867, + 0.020633472129702568, + 0.013101836666464806, + 0.00252508744597435, + 0.006474135909229517, + -0.005587650462985039, + -0.01624990627169609, + -0.002905508503317833, + -0.014504856429994106, + -0.006700992584228516, + 0.0026908672880381346, + 0.010833270847797394, + 0.0065648783929646015, + -0.00023034661717247218, + 0.033477041870355606, + 0.003751857904717326, + 0.005723764654248953, + -0.020507829263806343, + -0.010602924972772598, + 0.003692526137456298, + 0.027152979746460915, + -0.003929852973669767, + 0.024444662034511566, + 0.027334464713931084, + -0.010232973843812943, + -0.0065055470913648605, + -0.010093370452523232, + 0.009751340374350548, + -0.008557725697755814, + 0.015803173184394836, + 0.003894951893016696, + -0.004865199793130159, + -0.016082381829619408, + -0.010993815958499908, + -0.022448325529694557, + 0.001627259305678308, + 0.03238813206553459, + 0.024011889472603798, + -0.011559211649000645, + 0.005427105817943811, + 0.023704761639237404, + 0.015733372420072556, + 0.0012747591827064753, + -0.013499707914888859, + 0.008264557458460331, + -0.00023689055524300784, + -0.0016726305475458503, + -0.010337676852941513, + 0.004638343118131161, + 0.010281835682690144, + -0.006114655639976263, + -0.0007695670938119292, + -0.009409310296177864, + -0.006666091736406088, + 0.014421094208955765, + -0.008271537721157074, + 0.014784065075218678, + 0.01813456043601036, + 0.002950879745185375, + 0.011482429690659046, + 0.025631295517086983, + -0.001402147812768817, + 0.01767386868596077, + -0.024877434596419334, + 0.009220845066010952, + 0.00724544795230031, + 0.005266561172902584, + -0.022560007870197296, + 0.023230107501149178, + 0.028618821874260902, + -0.01590089686214924, + -0.008480943739414215, + -0.003397612599655986, + 0.012417776510119438, + 0.00913708284497261, + 0.004938492085784674, + 0.01838584803044796, + 0.02194575034081936, + 0.008892775513231754, + 0.02254604734480381, + -0.0017537754029035568, + 0.027781197801232338, + -0.00892767682671547, + 0.017980996519327164, + 0.03780476748943329, + 0.018888423219323158, + 0.002436090027913451, + 0.010058469139039516, + -0.01657099649310112, + -0.004010125063359737, + -0.01638951152563095, + -0.0029788005631417036, + -0.020507829263806343, + -0.0037239370867609978, + 0.006920868996530771, + 0.018651096150279045, + -0.014232628978788853, + -0.01285752933472395, + -0.004460348282009363, + -0.012131588533520699, + 0.007957428693771362, + -0.02585466206073761, + 0.006372923031449318, + 0.012138568796217442, + -0.0038670310750603676, + -0.0015103408368304372, + -0.0008114483207464218, + 0.008473963476717472, + 0.016892084851861, + -0.03093624860048294, + 0.008564705960452557, + 8.152655937010422e-5, + -0.00013589578156825155, + -0.00908822100609541, + -0.01763198710978031, + -0.017129411920905113, + 0.002305211266502738, + 0.009772281162440777, + 0.005036214832216501, + 0.005702823866158724, + 0.005877329036593437, + 0.004711635410785675, + -0.014260550029575825, + -0.016487233340740204, + -0.017897233366966248, + -0.00931856781244278, + -0.021359413862228394, + 0.021289611235260963, + 0.0059227002784609795, + -0.01969812624156475, + -0.01215950958430767, + 0.018609214574098587, + 0.014602579176425934, + 0.007482775021344423, + -0.011028717271983624, + -0.03160634636878967, + -0.0060239131562411785, + -0.0008249724633060396, + -0.0003114914579782635, + 0.0022999760694801807, + 0.003636684501543641, + -0.008243616670370102, + -0.00903237983584404, + -0.013471786864101887, + 0.005685373209416866, + 0.005339853465557098, + -0.010267875157296658, + -0.01771574839949608, + -0.01606842130422592, + 0.016892084851861, + -0.021359413862228394, + 0.005346833728253841, + 0.009793221019208431, + 0.01095193438231945, + 0.013932480476796627, + -0.018343966454267502, + -0.010840251110494137, + -0.003629704238846898, + 0.02493327669799328, + -0.004303293768316507, + -0.004202080890536308, + 0.04673942178487778, + -0.005102526396512985, + 0.00760143855586648, + 0.02649684064090252, + -0.0007922527729533613, + -0.014728222973644733, + 0.023090504109859467, + 0.001145625370554626, + 0.002111510606482625, + -0.014407133683562279, + -0.0032021671067923307, + 0.01923743262887001, + 0.0070465123280882835, + 0.014825945720076561, + -0.022113274782896042, + -0.010079409927129745, + -0.01863713562488556, + 0.017659908160567284, + -0.01461653970181942, + 0.010930994525551796, + -0.018623175099492073, + -0.003233577823266387, + -0.026287434622645378, + -0.0005518721300177276, + 2.256295374536421e-5, + -0.0010522652883082628, + -0.011761638335883617, + 0.011649955064058304, + -0.002640260849148035, + 0.003013701643794775, + 0.003504060674458742, + -0.004076437093317509, + 0.02799060381948948, + -0.008557725697755814, + -0.0037239370867609978, + -0.0036262141074985266, + 0.018609214574098587, + -0.019041987136006355, + -0.020102977752685547, + -0.009486092254519463, + -0.004610422533005476, + 0.005880819167941809, + -0.027781197801232338, + 0.0049733929336071014, + 0.00693482905626297, + 0.01043539959937334, + 0.02613387070596218, + -0.00482680881395936, + -0.007943468168377876, + -0.013555549085140228, + -0.0016132988967001438, + -0.004830298945307732, + -0.009465152397751808, + 0.0077131218276917934, + 0.008306439034640789, + -0.008201736025512218, + 0.002509382087737322, + -0.027823079377412796, + 0.00559114059433341, + 0.0022319192066788673, + 0.003591313259676099, + 0.003863540943711996, + 0.015579807572066784, + 0.0010714607778936625, + 0.002868862356990576, + -0.0083203986287117, + -0.01262718252837658, + 0.012480598874390125, + 0.04171367734670639, + 0.016612878069281578, + 0.027976643294095993, + -0.029400603845715523, + -0.004931511823087931, + -0.014714262448251247, + -0.011280003935098648, + -0.010016587562859058, + -0.026580603793263435, + 0.0015932307578623295, + 0.006215868517756462, + 0.002952624810859561, + 0.004282352980226278, + 0.0031498156022280455, + -0.01271094474941492, + 0.010023567825555801, + 0.0006434872630052269, + -0.007189606782048941, + -0.008243616670370102, + 0.02417941391468048, + -0.008208716288208961, + 0.02631535567343235, + -0.005179308820515871, + -0.010191093198955059, + 0.008124953135848045, + -0.008104013279080391, + 0.010679706931114197, + -0.006282180547714233, + -0.0023069563321769238, + -0.0015714176697656512, + 0.017799511551856995, + -0.005531808827072382, + -0.029288921505212784, + 0.017017729580402374, + 0.019460799172520638, + -0.0032911645248532295, + -0.0011901241960003972, + 0.012745846062898636, + 0.012690004892647266, + -0.007636339403688908, + -0.033979617059230804, + -0.004561561159789562, + 0.0104004992172122, + 0.0006299631204456091, + -0.025938425213098526, + 0.007629359140992165, + -0.003786758752539754, + 0.014770104549825191, + -0.0012337504886090755, + -0.010993815958499908, + 0.006142576690763235, + 0.0014693322591483593, + -0.007622378878295422, + 0.01208970695734024, + -0.01771574839949608, + 0.022099314257502556, + 0.006180967669934034, + -0.019530601799488068, + -0.011866341345012188, + 0.008760151453316212, + -0.003940323367714882, + -0.0004301548469811678, + 0.006393863819539547, + 0.017129411920905113, + -0.00828549824655056, + 0.007294309791177511, + 0.004830298945307732, + 0.01406510453671217, + -0.0013585215201601386, + 0.011224162764847279, + 0.024695949628949165, + -0.0018043818417936563, + -0.015635648742318153, + -0.028297733515501022, + -0.009283666498959064, + -0.0190978292375803, + -0.009807181544601917, + -0.020828917622566223, + -0.017366738989949226, + 0.01420470792800188, + -0.00453364010900259, + 0.003324320539832115, + 0.002820000983774662, + -0.0135834701359272, + 0.010442379862070084, + -0.007796884048730135, + 0.007482775021344423, + -0.00988396443426609, + 0.023341789841651917, + 0.0030416224617511034, + -0.02243436500430107, + 0.011231143027544022, + -0.011566191911697388, + 0.008760151453316212, + 0.004327724222093821, + -0.0006155664450488985, + -0.010735548101365566, + 0.0018672036239877343, + 0.013897579163312912, + 0.017478421330451965, + 0.008278517983853817, + -0.005727254785597324, + 0.004736065864562988, + -0.0008603096939623356, + -0.011887281201779842, + -0.02172238379716873, + 0.0022546048276126385, + -0.006226338911801577, + -0.006310101132839918, + 0.017967035993933678, + -0.0029735653661191463, + 0.02450050413608551, + -0.005898269359022379, + 0.014630500227212906, + 0.03316991403698921, + 0.016975848004221916, + 0.01753426343202591, + 0.007287329528480768, + 0.0237606018781662, + 0.008662428706884384, + -0.007217527367174625, + 0.010595944710075855, + 0.02282525599002838, + -0.004324234090745449, + 0.008955596946179867, + 0.0023191715590655804, + 0.0056504723615944386, + 0.024695949628949165, + 0.0036890360061079264, + 0.0011979768751189113, + 0.002982290694490075, + -0.009395349770784378, + 0.001424833433702588, + 0.0032457932829856873, + 0.015510005876421928, + -0.014106985181570053, + -0.003846090519800782, + -0.007273369003087282, + 0.02272753231227398, + -0.012899410910904408, + -0.002921213861554861, + 0.015454163774847984, + 0.00434866501018405, + 0.015049312263727188, + 0.014602579176425934, + 0.011210202239453793, + -0.02709713764488697, + 0.008732231333851814, + 0.011684855446219444, + 0.007831784896552563, + -0.002141176490113139, + -0.01948872022330761, + -0.007964408956468105, + -0.001675248146057129, + -0.007098863832652569, + -0.000595498364418745, + 0.009213864803314209, + 0.0027641593478620052, + -0.005015274044126272, + 0.015523966401815414, + 0.00579705648124218, + -0.00521769979968667, + -0.009095201268792152, + 0.004935001954436302, + 0.012536440044641495, + -0.007154705468565226, + -0.011566191911697388, + 0.007077923510223627, + -0.00594015046954155, + -0.011084558442234993, + -0.017645947635173798, + 0.015091193839907646, + -0.007622378878295422, + 0.0011159596033394337, + 0.003971734084188938, + 0.015370401553809643, + -0.0002787717676255852, + -0.003256263444200158, + -0.01360441092401743, + 0.0034360038116574287, + 0.016654757782816887, + 0.013059955090284348, + 0.04001050814986229, + -0.0014387938426807523, + 0.00023841747315600514, + 0.028758427128195763, + -0.004181140102446079, + 0.005437576211988926, + 0.0038426003884524107, + 0.007154705468565226, + 0.007018591742962599, + 0.010232973843812943, + -0.0051897792145609856, + -0.00760143855586648, + -0.022266840562224388, + 0.026901692152023315, + -0.017548223957419395, + -0.03409130126237869, + -0.042439620941877365, + 0.009283666498959064, + 0.006809185724705458, + 0.004729086067527533, + -0.010854211635887623, + 0.01246663834899664 + ], + "8fa8b23f-b3fe-4699-bf32-79fa856199af": [ + 0.008179047144949436, + -0.005618412513285875, + -0.00799517147243023, + -0.007920259609818459, + -0.010889505036175251, + 0.011264066211879253, + 0.03715643659234047, + 0.027404233813285828, + -0.026464426890015602, + 0.04173288866877556, + 0.01502329483628273, + 0.028875235468149185, + 0.033097557723522186, + -0.020308008417487144, + 0.01786995679140091, + 0.058349769562482834, + -0.00711665628477931, + -0.0014931357000023127, + 0.013865561224520206, + -0.03489544987678528, + 0.034405115991830826, + -0.011754400096833706, + -0.027608539909124374, + 0.002756427275016904, + 0.004981659352779388, + 0.0009032023954205215, + 0.01431503426283598, + 0.005506044253706932, + -0.02797628939151764, + -0.009602378122508526, + 0.022065039724111557, + 0.01296661514788866, + 0.011481992900371552, + 0.001497392076998949, + 0.03061864711344242, + -0.03492269292473793, + 0.010828213766217232, + -0.03301583603024483, + -0.054345373064279556, + 0.028303179889917374, + 0.018768902868032455, + 0.015813278034329414, + 0.016398955136537552, + -0.01959974691271782, + -0.03391478210687637, + 0.03061864711344242, + -0.03178999945521355, + 0.016167407855391502, + -0.00508040701970458, + -0.004256373271346092, + 0.01970871165394783, + -0.025156868621706963, + 0.02344069816172123, + 0.01362039428204298, + 0.017202557995915413, + -0.013797459192574024, + 0.02582426741719246, + -0.00468882080167532, + 0.02651890739798546, + -0.0627627745270729, + 0.015500009059906006, + -0.03116346336901188, + 0.03849123418331146, + -0.01329350471496582, + 0.017570309340953827, + 0.013708926737308502, + -0.016003962606191635, + 0.010297018103301525, + -0.04154220223426819, + 0.008022412657737732, + 0.020648518577218056, + 0.03236205875873566, + -0.031871724873781204, + 0.013722547329962254, + -0.014042627066373825, + 0.002136699389666319, + 0.0543181337416172, + 0.031408630311489105, + 0.01751582697033882, + -0.021779010072350502, + 0.02093454636633396, + -0.015186740085482597, + 0.01141389086842537, + 0.0024091072846204042, + 0.0561705082654953, + -0.005703540053218603, + -0.024993423372507095, + -0.044593170285224915, + 0.009936077520251274, + -0.023427078500390053, + -0.012319646775722504, + 0.029992109164595604, + -0.00795431062579155, + -0.00016738187696319073, + -0.010971227660775185, + 0.0005733334692195058, + 0.050586145371198654, + -0.019994739443063736, + -0.0077227638103067875, + -0.025715304538607597, + 0.02662787213921547, + 0.011584145948290825, + -0.02190159447491169, + -0.006435636430978775, + 0.013436519540846348, + -0.032525502145290375, + 0.0341327078640461, + -0.008846445940434933, + -0.010331069119274616, + 0.04126979410648346, + 0.005512854550033808, + -0.012803170830011368, + 0.017243418842554092, + 0.006381154991686344, + -0.061836592853069305, + -0.028984200209379196, + -0.031490352004766464, + -0.04116083309054375, + 0.0009449148783460259, + -0.03911777213215828, + 0.04690863937139511, + -0.03631197288632393, + -0.0026917303912341595, + -0.02217400260269642, + -0.024217061698436737, + 0.009398072026669979, + 0.004174651112407446, + 0.007239239756017923, + 0.018918728455901146, + 0.038899846374988556, + -0.02143850177526474, + 0.0037524187937378883, + 0.012939374893903732, + 0.02348156087100506, + 0.049659959971904755, + 0.032607223838567734, + -0.013960904441773891, + 0.02892971783876419, + -0.010991658084094524, + 0.030863814055919647, + -0.037946417927742004, + -0.009861165657639503, + -0.03900881111621857, + 0.002499342430382967, + 0.03535854443907738, + 0.017965300008654594, + -0.03249826282262802, + 0.03489544987678528, + -0.03004658967256546, + -0.000534600461833179, + -0.06101936846971512, + -0.024952562525868416, + -0.040316369384527206, + -0.019913015887141228, + 0.017039112746715546, + -0.03808262199163437, + -0.004538996610790491, + 0.012632915750145912, + 0.025102386251091957, + 0.07044468075037003, + 0.03541302680969238, + -0.0654868558049202, + 0.00575461657717824, + 0.024911701679229736, + 0.06532341241836548, + 0.040098439902067184, + 0.06303518265485764, + 0.011516043916344643, + -0.017910819500684738, + 0.016971010714769363, + 0.009643238969147205, + -0.012278785929083824, + 0.04314940795302391, + 0.006439041346311569, + -0.012959805317223072, + -0.020362488925457, + 0.026450805366039276, + 0.04404835402965546, + -0.01594948209822178, + -0.015241221524775028, + 0.00025048755924217403, + -0.0037694440688937902, + 0.027376992627978325, + 0.005107647739350796, + 0.005499234423041344, + 0.05410020798444748, + 0.022773299366235733, + 0.006633132230490446, + 0.0037456084974110126, + -0.007586559746414423, + 0.0111210523173213, + -0.00020207131456118077, + -0.015377425588667393, + 0.0011594360694289207, + -0.04336733743548393, + -0.05747806653380394, + 0.030400721356272697, + 0.028766272589564323, + -0.017338762059807777, + 0.01624913141131401, + -0.02540203556418419, + -0.0299648679792881, + -0.011134672909975052, + 0.03843675181269646, + -0.026273740455508232, + 0.01624913141131401, + -0.01597672328352928, + -0.012054049409925938, + 0.049850642681121826, + -0.037020232528448105, + 0.014069867320358753, + -0.04437524452805519, + -0.00905075203627348, + -0.023645004257559776, + -0.013191351667046547, + -0.01148880273103714, + 0.0042495629750192165, + 0.011345788836479187, + -0.010154004208743572, + -0.027376992627978325, + 0.020607657730579376, + 0.010766921564936638, + 0.0005052314954809844, + -0.00541751179844141, + -0.040289126336574554, + -0.0024789117742329836, + -0.025034284219145775, + 0.01740686409175396, + -0.025306692346930504, + 0.01875528320670128, + 0.0006175997550599277, + 0.0054311323910951614, + 0.000882771797478199, + 0.008887307718396187, + -0.03554923087358475, + 0.011366219259798527, + 0.038055382668972015, + -0.0015927348285913467, + -0.036638859659433365, + 0.013729358091950417, + 0.0022013962734490633, + 0.02624649927020073, + 0.013681686483323574, + -0.007246050052344799, + -0.000881069281604141, + 0.0285483468323946, + 0.004549211822450161, + 0.05535328388214111, + 0.013130060397088528, + -0.023794829845428467, + 0.0028398523572832346, + 0.035903360694646835, + 0.016957391053438187, + 0.0060576703399419785, + 0.004201891832053661, + 0.05420916900038719, + 0.034595802426338196, + -0.017583929002285004, + 0.010957607068121433, + 0.004821619484573603, + -0.008941789157688618, + 0.05429089069366455, + 0.034949932247400284, + 0.007334582507610321, + 0.023386217653751373, + -0.035113375633955, + 0.04369422420859337, + -0.03369685634970665, + 0.00971815176308155, + 0.03587611764669418, + 0.036638859659433365, + 0.03195344656705856, + -0.030400721356272697, + 0.020525934174656868, + 0.0036741013173013926, + -0.003742203349247575, + 0.020811961963772774, + 0.011216394603252411, + 0.02589236944913864, + 0.014832609333097935, + -0.002708755899220705, + -0.020226286724209785, + 0.011304927058517933, + 0.013130060397088528, + 0.008144996128976345, + -0.011876983568072319, + -0.037292640656232834, + -0.02901143953204155, + -0.05660635977983475, + -0.012210683897137642, + -0.0019119628705084324, + 0.0064186109229922295, + 0.004140600096434355, + 0.00012290278391446918, + -0.01469640526920557, + 0.02650528773665428, + -0.0009083100594580173, + 0.00975901260972023, + 0.021533843129873276, + 0.03911777213215828, + 0.0010751598747447133, + -0.0051587242633104324, + 0.01012676302343607, + -0.004126979503780603, + 0.01191103458404541, + -0.017897197976708412, + -0.0003858402487821877, + 0.0487065315246582, + -0.0034408520441502333, + 0.02863006852567196, + 0.02331811562180519, + -0.03565819188952446, + -0.01797892153263092, + -0.0166305024176836, + 0.006180253811180592, + 0.008601278997957706, + 0.0028875237330794334, + -0.0013484189985319972, + -0.04361250251531601, + -0.04034360870718956, + 0.028521105647087097, + -0.018006160855293274, + -0.06477859616279602, + 0.021874353289604187, + 0.02489808201789856, + -0.016494298353791237, + 0.02958349697291851, + -0.027336131781339645, + -0.0472627691924572, + -0.0006478200084529817, + -0.054999154061079025, + -0.016003962606191635, + -0.002223529387265444, + -0.007130276411771774, + -0.016957391053438187, + -0.05088579282164574, + -0.03930845856666565, + -0.023753967136144638, + 0.022460030391812325, + 0.0013833213597536087, + 0.0049714441411197186, + -0.01793805882334709, + 0.014669165015220642, + -0.014097108505666256, + -0.0052234213799238205, + -0.029365571215748787, + -0.03462304174900055, + 0.023113809525966644, + -0.015459148213267326, + 0.010222106240689754, + 0.0008406337001360953, + -0.0019528240663930774, + 0.04434800520539284, + -0.00908480305224657, + 0.026941141113638878, + -0.00030007431632839143, + -0.0065071433782577515, + -0.02865730971097946, + 0.044865578413009644, + -0.007143897004425526, + 0.024176200851798058, + -0.026982001960277557, + 0.011345788836479187, + -0.004937393125146627, + -0.016194649040699005, + -0.009513845667243004, + -0.026886658743023872, + -0.029610738158226013, + -0.01740686409175396, + 0.012006377801299095, + -0.004790973849594593, + -0.0037149626296013594, + -0.010562615469098091, + -0.036829546093940735, + -0.004423222970217466, + -0.01246947143226862, + 0.013817890547215939, + -0.020376110449433327, + -0.026001332327723503, + 0.0257425457239151, + 0.02371310628950596, + -0.01936820149421692, + 0.01432865485548973, + 0.014682785607874393, + -0.013375227339565754, + -0.008233528584241867, + -0.0035447077825665474, + -0.017624789848923683, + -0.011345788836479187, + 0.012878082692623138, + -0.0073618232272565365, + 0.017801854759454727, + -0.012578434310853481, + 0.017951680347323418, + 0.006776146125048399, + -0.000797644373960793, + 0.011876983568072319, + -7.267757609952241e-5, + 0.008485505357384682, + 0.006622917018830776, + -0.011590955778956413, + -0.008458265103399754, + -0.001257332623936236, + 0.008104134351015091, + 0.022487271577119827, + -0.03426891192793846, + 0.013225402683019638, + 0.003444257192313671, + 0.022841401398181915, + -0.01575879566371441, + 0.0002050507755484432, + 0.009513845667243004, + -0.0023716511204838753, + -0.014151589944958687, + 0.03631197288632393, + 0.009888406842947006, + -0.02892971783876419, + 0.06036558747291565, + -0.007457165978848934, + -0.004045257344841957, + 0.027949050068855286, + 0.002661084523424506, + 0.01530932355672121, + 0.002746212063357234, + -0.017842717468738556, + 0.046854157000780106, + -0.008240338414907455, + -0.00795431062579155, + -0.0201309435069561, + -0.017461346462368965, + 0.018319429829716682, + 0.025347555056214333, + 0.01118234358727932, + -0.001019827090203762, + -0.016957391053438187, + -0.011407080106437206, + -0.020811961963772774, + -0.010167624801397324, + 0.00699407234787941, + -0.014396756887435913, + -0.031217943876981735, + 0.010324259288609028, + -0.01882338523864746, + 0.0013458651956170797, + -0.02690027840435505, + -0.0016497703036293387, + -0.03023727610707283, + 0.006656968034803867, + -0.0013160706730559468, + -0.05905802920460701, + -0.007572939153760672, + 0.008519556373357773, + -0.061346255242824554, + -0.020348869264125824, + 0.008771534077823162, + -0.05595257878303528, + -0.0016242320416495204, + 0.016167407855391502, + 0.025034284219145775, + -0.04889721795916557, + 0.005740996450185776, + -0.028493864461779594, + 0.012299216352403164, + 0.0013611881295219064, + 0.03405098617076874, + 0.008179047144949436, + 0.02312742918729782, + 0.008322061039507389, + 0.010480893775820732, + -0.0032263309694826603, + -0.0020328438840806484, + -0.0018404558068141341, + -0.008832826279103756, + 0.013082388788461685, + 0.0036230250261723995, + -0.002996486844494939, + -0.004355120938271284, + 0.008110945113003254, + 0.0006865530158393085, + -0.03772849217057228, + -0.01778823509812355, + -0.008424214087426662, + 0.014056246727705002, + -0.03023727610707283, + 0.00937764160335064, + -0.010896315798163414, + 0.005540095269680023, + -0.018959589302539825, + 0.025456517934799194, + -0.04756241664290428, + -0.018687181174755096, + -0.002831339603289962, + 0.0030407530721277, + 0.011148292571306229, + -0.01323902327567339, + -0.028112493455410004, + -0.0069634267129004, + -0.0040724980644881725, + -0.004811404272913933, + -0.009827114641666412, + -0.019586127251386642, + -0.004385767038911581, + -0.011638627387583256, + -0.009963318705558777, + 0.0008521259296685457, + 0.011584145948290825, + -0.009547896683216095, + 0.038246069103479385, + -0.0011202774476259947, + -0.00010518562339711934, + -0.03445959836244583, + 0.028221458196640015, + -0.0332065224647522, + 0.015513629652559757, + -0.007123466115444899, + 0.011093811132013798, + -0.004474299494177103, + -0.025946851819753647, + 0.0599297359585762, + -0.010242536664009094, + 0.01221749372780323, + -0.011250445619225502, + -0.003442554734647274, + -0.0194090623408556, + -0.02278692089021206, + 0.01214258186519146, + 0.0019340959843248129, + -0.00968410074710846, + -0.007239239756017923, + -0.016072064638137817, + 0.008260768838226795, + 0.007443545386195183, + -0.0009670479921624064, + 0.021956076845526695, + 0.012292405590415001, + -0.012646536342799664, + -0.0075593190267682076, + 0.026069434359669685, + 0.025524619966745377, + -0.00516893994063139, + -0.07000882923603058, + 0.015854138880968094, + -0.004896531812846661, + 0.016971010714769363, + 0.00435171602293849, + 0.020771101117134094, + 0.0001349270314676687, + 0.0285483468323946, + -0.012462660670280457, + 0.013613584451377392, + -0.02892971783876419, + 0.022460030391812325, + 0.004344905726611614, + -0.011338978074491024, + -0.009867975488305092, + -0.018646320328116417, + 0.028521105647087097, + -0.0027394017670303583, + -0.02002198062837124, + -0.037210918962955475, + -0.025524619966745377, + 0.011195964179933071, + 0.013170921243727207, + -0.0032195206731557846, + 0.0003381688438821584, + 0.01882338523864746, + -0.016112927347421646, + -0.008226717822253704, + 0.00804965291172266, + 0.03192620351910591, + 0.018047023564577103, + 0.003902242984622717, + 0.0056524635292589664, + 0.004304044879972935, + 0.0032995406072586775, + 0.028330421075224876, + -0.010807783342897892, + -0.0007227321621030569, + -0.0015663453377783298, + -0.024257922545075417, + 0.04200529679656029, + 0.013586343266069889, + -0.010555805638432503, + -0.00234441040083766, + -0.0002951794886030257, + 0.022623475641012192, + 0.002211611485108733, + -0.008751103654503822, + 0.004988469649106264, + 0.008996270596981049, + 0.011032519862055779, + 0.01586776040494442, + -0.026110297068953514, + 0.022419169545173645, + -0.011175533756613731, + 0.01652153767645359, + -0.004358526319265366, + 0.01974957250058651, + 0.01905493251979351, + 0.006173443980515003, + 0.028330421075224876, + 0.031326908618211746, + -0.012905323877930641, + 0.004464084282517433, + -0.0318172425031662, + 0.029447292909026146, + 0.00385116646066308, + 0.027349751442670822, + -0.008437834680080414, + 0.036938510835170746, + -0.021138852462172508, + -0.01525484211742878, + 0.030264517292380333, + -0.005209800787270069, + 0.004491325002163649, + -0.006183659192174673, + 0.029093163087964058, + 0.00436193123459816, + 0.0060134041123092175, + -0.008308440446853638, + 0.009404882788658142, + -0.02808525413274765, + 0.05758702754974365, + -0.010705630294978619, + 0.0015637915348634124, + -0.004719466902315617, + -0.022732438519597054, + -0.01465554442256689, + -0.015595351345837116, + 0.011080190539360046, + -0.01974957250058651, + -0.028956959024071693, + 0.001557832583785057, + -0.018496496602892876, + 0.0004405346408020705, + -0.0009917350253090262, + 0.010978038422763348, + 0.006009999196976423, + 0.013647635467350483, + -0.02093454636633396, + -0.02316829189658165, + -0.013708926737308502, + 0.008036032319068909, + 0.0842830017209053, + -0.010978038422763348, + 0.023045707494020462, + -0.02882075496017933, + 0.004154220223426819, + 0.014791748486459255, + 0.007504837587475777, + 0.004133789800107479, + 0.0013407575897872448, + -0.009970128536224365, + 0.026845797896385193, + 0.012748689390718937, + -0.017815476283431053, + 0.016031203791499138, + -0.007709143217653036, + -0.021887974813580513, + -0.009255058132112026, + 0.05044994130730629, + -0.034949932247400284, + 0.004750112537294626, + -0.00042819115333259106, + 0.021765390411019325, + -0.024407746270298958, + 0.008274389430880547, + 0.0045015402138233185, + 0.016344472765922546, + 0.046091414988040924, + 0.00449473038315773, + -0.0026372489519417286, + 0.008996270596981049, + 0.004399387631565332, + -0.03151759132742882, + 0.0025316907558590174, + -0.00436193123459816, + -0.003800090169534087, + 0.007770434953272343, + 0.008260768838226795, + -0.023685865104198456, + -0.03138138726353645, + -0.03573991358280182, + 0.03642093390226364, + -0.018537357449531555, + -0.00039605554775334895, + -0.028058012947440147, + -0.017692891880869865, + 0.014369516633450985, + -0.01679394580423832, + -0.018305810168385506, + -0.0086625711992383, + 0.0061019365675747395, + 0.02631460130214691, + -0.00872386246919632, + 0.009793063625693321, + 0.004126979503780603, + -0.0005265133804641664, + 0.006129177752882242, + -0.0006422867299988866, + -0.019844913855195045, + -0.040289126336574554, + -0.01601758413016796, + -0.030455201864242554, + -0.004062282852828503, + 0.00906437262892723, + -0.00968410074710846, + -0.030182793736457825, + 0.001842158380895853, + -0.016208268702030182, + 0.002833042060956359, + 0.02325001358985901, + -0.007055364549160004, + 0.032797910273075104, + 0.04214150086045265, + 0.034677524119615555, + -0.012626105919480324, + 0.02405361644923687, + -0.027499577030539513, + 0.03546750545501709, + -0.001762138563208282, + -0.012496711686253548, + 2.2465670554083772e-5, + -0.009486604481935501, + -0.024380506947636604, + -0.010235726833343506, + 0.017393244430422783, + -0.009459364227950573, + 0.02194245532155037, + -0.007879397831857204, + 0.04325837269425392, + -0.018414773046970367, + -6.081293395254761e-5, + -0.007818106561899185, + 0.007232429459691048, + -0.00877834390848875, + -0.0007363525801338255, + 0.0009253355674445629, + 0.006656968034803867, + -0.013824700377881527, + 0.0027921809814870358, + -0.024721015244722366, + 0.02301846630871296, + -0.014492100104689598, + 0.0034732006024569273, + -0.0024686965625733137, + 0.04069773852825165, + 0.037101954221725464, + -0.040670499205589294, + -0.04527419060468674, + 0.0229367446154356, + -0.006367534399032593, + 0.026723213493824005, + -0.002341005252674222, + -0.03879088535904884, + 0.03388754278421402, + 0.02167004719376564, + 0.011012088507413864, + -0.02236468717455864, + 0.04472937434911728, + -0.028030771762132645, + 0.018932348117232323, + 0.0034221240784972906, + 0.00839697290211916, + -0.01652153767645359, + -0.020580416545271873, + -0.0007793419645167887, + 0.008764724247157574, + 0.008996270596981049, + 0.0013416088186204433, + 0.04502902552485466, + 0.03369685634970665, + 0.03358789160847664, + 0.019490784034132957, + -0.019722331315279007, + 0.022337447851896286, + 0.008410593494772911, + -0.042468391358852386, + -0.03538578376173973, + -0.007307341787964106, + -0.03080933168530464, + -0.03677506372332573, + 0.03587611764669418, + -0.005250662099570036, + 0.006639942526817322, + -0.029556255787611008, + 0.053391944617033005, + -0.031054498627781868, + -0.0299648679792881, + -0.014029006473720074, + 0.025837888941168785, + 0.006830628030002117, + -0.009936077520251274, + 0.022773299366235733, + 0.012169822119176388, + -0.02301846630871296, + -0.023372596129775047, + 0.013143680989742279, + -0.004038447048515081, + 0.0067931716330349445, + 0.024448608979582787, + -0.018837004899978638, + 0.027022862806916237, + 0.030210034921765327, + 0.006241545546799898, + -0.02047145366668701, + -0.026192018762230873, + -0.011849743314087391, + -0.031245185062289238, + 0.010004179552197456, + 0.01221749372780323, + 0.007913448847830296, + -0.031108980998396873, + 0.02958349697291851, + -0.023454319685697556, + -0.0008742590434849262, + 0.01856459677219391, + 0.02470739558339119, + 0.032716188579797745, + 0.02289588376879692, + -0.004801189061254263, + 0.012285595759749413, + 0.006125772371888161, + -0.005247257184237242, + -0.0029777586460113525, + 0.011018899269402027, + 0.01152966357767582, + 0.002215016633272171, + -0.003922673407942057, + 0.020076461136341095, + -0.009827114641666412, + 0.002209909027442336, + -0.025333933532238007, + 0.011052950285375118, + 0.002780263079330325, + 0.025810647755861282, + -0.010923556052148342, + -0.015799658372998238, + -0.037864696234464645, + 0.0015637915348634124, + -0.011938275769352913, + -0.04181461036205292, + 0.009289109148085117, + -0.017079975455999374, + -0.020185424014925957, + -0.0013067065738141537, + 0.021452121436595917, + 0.016303611919283867, + 0.0014488694723695517, + 0.03315204009413719, + 0.01001099031418562, + -0.02251451276242733, + 0.030400721356272697, + 0.03429615497589111, + -0.015527249313890934, + 0.023985514417290688, + -0.00715751713141799, + 0.014614683575928211, + 0.00877834390848875, + -0.0075593190267682076, + 0.027417853474617004, + 0.020580416545271873, + -0.022732438519597054, + -0.0005380056099966168, + -0.012939374893903732, + -0.030210034921765327, + -0.008110945113003254, + 0.0369657501578331, + -0.0007823213818483055, + -0.017188938334584236, + -0.006861273664981127, + -0.0025742545258253813, + 0.014519340358674526, + 0.055271562188863754, + 0.022378308698534966, + -0.011570525355637074, + -0.008621709421277046, + -0.02690027840435505, + -0.02297760546207428, + 0.015799658372998238, + -0.013150490820407867, + -0.008090514689683914, + 0.0052029904909431934, + 0.01558173168450594, + -0.022855021059513092, + -0.009275488555431366, + -0.00022388523211702704, + 0.011454751715064049, + -0.008117754943668842, + 0.022119520232081413, + -0.008158616721630096, + 0.009343590587377548, + 0.006922565400600433, + -0.033097557723522186, + -0.02681855671107769, + 0.007572939153760672, + 0.013824700377881527, + 0.01955888606607914, + 0.005999783985316753, + 0.011039329692721367, + -0.0007610395550727844, + -0.02390379272401333, + -0.018033402040600777, + -0.016003962606191635, + 0.03405098617076874, + -0.028330421075224876, + 0.020893685519695282, + 0.018796144053339958, + 0.02374034747481346, + -0.01793805882334709, + 0.01535018440335989, + 0.0058056931011378765, + -0.022187622264027596, + -0.02474825643002987, + 0.039635349065065384, + 0.021125230938196182, + 0.007641041185706854, + -0.026042195037007332, + -0.0022269345354288816, + -0.002712161047384143, + 0.031490352004766464, + 0.003119070315733552, + 0.019191136583685875, + 0.009820304811000824, + -0.0029692458920180798, + -0.007654661778360605, + -0.03541302680969238, + -0.010705630294978619, + -0.0006516507710330188, + 0.00437214644625783, + -0.006105341948568821, + -0.0005124673480167985, + -0.02827593870460987, + 0.0012547788210213184, + 0.020621277391910553, + -0.01751582697033882, + -0.02162918634712696, + -0.004474299494177103, + -0.019381821155548096, + 0.011373029090464115, + -0.016344472765922546, + 0.0208255834877491, + 0.04878825321793556, + -0.006602486129850149, + -0.007048554252833128, + 0.0005626925267279148, + 0.02566082403063774, + 0.030945535749197006, + -0.004964633844792843, + -0.02167004719376564, + -0.021765390411019325, + 0.01014038361608982, + -0.0021911810617893934, + -0.029883146286010742, + 0.011631816625595093, + 0.013470570556819439, + 0.016153788194060326, + -0.023985514417290688, + 4.086783519596793e-6, + 0.009207386523485184, + 0.02329087443649769, + 0.013422898948192596, + 0.012707827612757683, + -0.0030101072043180466, + -0.005230231676250696, + -0.007177948020398617, + -0.030155552551150322, + 0.0008870281744748354, + -0.01252395287156105, + -0.0007665728335268795, + -0.027213547378778458, + 0.0006261125090532005, + -0.02447584830224514, + -0.008696622215211391, + 0.0005248108063824475, + -0.040479812771081924, + -0.023331735283136368, + -0.001110062119551003, + -0.01648067682981491, + -0.01114148274064064, + 0.02816697582602501, + -0.03192620351910591, + 0.00906437262892723, + -0.001167097594588995, + -0.02297760546207428, + -0.037864696234464645, + -0.015963101759552956, + 0.02863006852567196, + -0.045927971601486206, + -0.0054753986187279224, + 0.0069634267129004, + 0.004229132551699877, + -0.011972326785326004, + 0.018850626423954964, + 0.012224304489791393, + -0.007593370042741299, + -0.011352598667144775, + 0.004460679367184639, + 0.007797675672918558, + -0.05439985543489456, + -0.003936294000595808, + 0.01114148274064064, + -0.01637171395123005, + 0.01816960610449314, + 0.04682691767811775, + 0.029038680717349052, + -0.004321069922298193, + -0.04015292227268219, + -0.04407559707760811, + 0.013123249635100365, + -0.012462660670280457, + -0.030836572870612144, + -0.007150707300752401, + -0.007715953513979912, + 0.007348202634602785, + 0.020239906385540962, + 0.011604576371610165, + -0.024176200851798058, + 0.007498027291148901, + 0.01118234358727932, + -0.007927069440484047, + -0.000646543106995523, + -0.014941573143005371, + -0.006861273664981127, + -0.007457165978848934, + 0.019613368436694145, + 0.011039329692721367, + 0.0043380954302847385, + 0.012115340679883957, + 0.007504837587475777, + -0.026532528921961784, + -0.022351067513227463, + -0.008172236382961273, + -0.01394728384912014, + 0.00029496668139472604, + 0.016398955136537552, + -0.02540203556418419, + -0.07447631657123566, + -0.009936077520251274, + -0.02217400260269642, + 0.02685941755771637, + 0.014151589944958687, + 0.0057614268735051155, + 0.0035821637138724327, + 0.011073380708694458, + -0.01905493251979351, + 0.0013645932776853442, + 0.03772849217057228, + -0.011407080106437206, + -0.01187017373740673, + 0.02527945302426815, + 0.018087884411215782, + -0.010331069119274616, + 0.011304927058517933, + -0.006044050212949514, + 0.019191136583685875, + -0.009200576692819595, + -0.0004296808911021799, + 0.019654229283332825, + 0.043094929307699203, + -0.008090514689683914, + -0.007436735555529594, + 0.025756165385246277, + -0.01913665421307087, + -0.01154328417032957, + -0.0033063506707549095, + -0.0313541479408741, + -0.01078054215759039, + 0.010208485648036003, + -0.005788667593151331, + -0.032634466886520386, + -0.008676190860569477, + 0.023999135941267014, + -0.0033029457554221153, + -0.023658625781536102, + 0.023699486628174782, + 0.0019323935266584158, + 0.021465741097927094, + -0.002421025186777115, + -0.0006788915488868952, + 0.0014846229460090399, + -0.03350616991519928, + -0.008689811453223228, + 0.0035617330577224493, + -0.024067237973213196, + -0.0005320466589182615, + 0.025184109807014465, + 0.021343158558011055, + 0.0027717503253370523, + -0.012326456606388092, + -0.01767927221953869, + 0.0013279884587973356, + 0.012898514047265053, + -0.0013892801944166422, + -0.025306692346930504, + 0.02190159447491169, + 0.018550977110862732, + 0.05216611176729202, + 0.016167407855391502, + 0.016494298353791237, + -0.017039112746715546, + -0.004756922833621502, + 0.008410593494772911, + 0.016140166670084, + 0.024530330672860146, + 0.024543950334191322, + -0.012292405590415001, + 0.025797028094530106, + 0.018237708136439323, + -0.026791315525770187, + 0.00320419785566628, + 0.0034697954542934895, + 0.027417853474617004, + 0.005260877311229706, + 0.008213098160922527, + 0.01905493251979351, + -0.00609172135591507, + -0.039172254502773285, + 0.013347986154258251, + -0.02139763906598091, + -0.011304927058517933, + 0.00043563981307670474, + 0.0012777632800862193, + 0.01281679142266512, + -0.035331305116415024, + 0.025837888941168785, + 0.007218808867037296, + 0.032062407582998276, + 0.004920367617160082, + 0.01774737425148487, + 0.014764507301151752, + -0.025374794378876686, + 0.05445433780550957, + -0.019109413027763367, + 0.02635546401143074, + -0.023413458839058876, + -0.005798882804811001, + 0.010569426231086254, + -0.01913665421307087, + -0.002659382065758109, + -0.007613800466060638, + 0.009234627708792686, + 0.01540466584265232, + 0.0025163679383695126, + -0.0076478514820337296, + -0.01774737425148487, + -0.008288010023534298, + 0.010358310304582119, + -0.02339983731508255, + -0.03249826282262802, + 0.021915214136242867, + -0.012530762702226639, + 0.01797892153263092, + -0.006929375696927309, + -0.009908837266266346, + -0.007525268010795116, + 0.0020583821460604668, + -0.0017723538912832737, + 0.04568280279636383, + -0.004879506304860115, + -0.025116007775068283, + -0.019967498257756233, + 0.009173335507512093, + -0.004872696008533239, + -0.004269993863999844, + -0.0020822177175432444, + 0.022623475641012192, + -0.0033080533612519503, + -0.0001870676060207188, + 0.005931681953370571, + -0.0005724821821786463, + -0.018891487270593643, + 0.0025997927878051996, + 0.03584887832403183, + 0.0077363839372992516, + 0.01123682502657175, + -0.030073830857872963, + 0.0035957840736955404, + 0.003609404433518648, + -0.005220015998929739, + 0.022732438519597054, + -0.005002089776098728, + -0.0027104585897177458, + -0.02616477757692337, + 0.00591806136071682, + -0.004954418633133173, + 0.014723646454513073, + 0.005921466276049614, + 0.014723646454513073, + 0.004109953995794058, + 0.0066603729501366615, + -0.02542927674949169, + -0.017461346462368965, + -0.0017119133844971657, + 0.017474966123700142, + -0.004617313854396343, + -0.005516259931027889, + -0.00933678075671196, + -0.0058499593287706375, + 0.010242536664009094, + -0.009112044237554073, + 0.014887090772390366, + 0.009309539571404457, + -0.017393244430422783, + -0.003398288507014513, + -0.018837004899978638, + -0.005390271078795195, + 0.0030986396595835686, + -0.003272299887612462, + 0.008424214087426662, + -0.012694207951426506, + -0.006653562653809786, + -0.01354548241943121, + 0.006118962075561285, + 0.005250662099570036, + 0.007062174379825592, + -0.0003309330204501748, + -0.0166032612323761, + 0.03097277693450451, + -0.0012462660670280457, + 0.020839203149080276, + 0.002257580403238535, + 0.03178999945521355, + 0.004944203421473503, + 0.008328870870172977, + -0.009173335507512093, + -0.00014482310507446527, + 0.02162918634712696, + 0.034214429557323456, + 0.012033618986606598, + 0.00728010106831789, + -0.003766039153560996, + -0.010290208272635937, + 0.03879088535904884, + 0.013429708778858185, + -0.029801422730088234, + -0.0019392037065699697, + -0.021111611276865005, + -0.02116609364748001, + -0.0052234213799238205, + -0.0014011980965733528, + -0.010460463352501392, + 0.01432865485548973, + -0.04312216863036156, + 0.00837654247879982, + -0.0005601387238129973, + -0.026764074340462685, + -0.009520655497908592, + 0.007491216994822025, + 0.008158616721630096, + -0.01744772493839264, + 0.01185655314475298, + 0.00038839405169710517, + 0.0023631383664906025, + -0.019313719123601913, + -0.005008900072425604, + -0.034949932247400284, + 0.022950364276766777, + 0.010004179552197456, + 0.01387237198650837, + -0.013320745900273323, + -0.004171245731413364, + 0.01721617951989174, + 0.007123466115444899, + -0.016085686162114143, + -0.011727159842848778, + 0.0011160210706293583, + -0.0036332402378320694, + 0.019967498257756233, + 0.0017136158421635628, + -0.00483183516189456, + -0.001928988378494978, + -0.00028177190688438714, + 0.03208965063095093, + -0.019300099462270737, + 0.006459472235292196, + 0.0024414556100964546, + -0.01709359511733055, + -0.02624649927020073, + -0.03508613631129265, + 0.007334582507610321, + 0.017583929002285004, + 0.023072948679327965, + -0.03802813962101936, + -0.024802738800644875, + 0.012809980660676956, + 0.013061958365142345, + 0.008955409750342369, + 0.0009176741004921496, + -0.012360507622361183, + -0.014137969352304935, + 0.013320745900273323, + 0.0035140616819262505, + 0.009343590587377548, + 0.01258524414151907, + 0.012306026183068752, + -0.0003122049674857408, + -0.026151157915592194, + -0.010446842759847641, + -0.0042052967473864555, + -0.04129703715443611, + 0.026913899928331375, + -0.01350462157279253, + -0.008206287398934364, + 0.014165210537612438, + 0.04058877378702164, + -0.024734636768698692, + -0.016589639708399773, + 0.009534276090562344, + -0.013388847932219505, + -0.002009008079767227, + 0.011475182138383389, + 0.012735068798065186, + -0.016398955136537552, + -0.03726539760828018, + 0.029529014602303505, + 0.0009942888282239437, + -0.015935862436890602, + 0.005904441233724356, + -0.023958273231983185, + 0.02700924314558506, + 0.013661256060004234, + 0.0016761597944423556, + -0.006919160485267639, + -0.01432865485548973, + 0.02205141820013523, + -0.0029386000242084265, + 0.010528565384447575, + 0.006227925419807434, + 0.02497980371117592, + -0.008519556373357773, + 0.012837221845984459, + 0.0027189713437110186, + 0.014846229925751686, + 0.009323160164058208, + 0.010249346494674683, + 0.007634230889379978, + 0.025756165385246277, + -0.020348869264125824, + -0.03031899780035019, + -0.010283397510647774, + -0.0026525717694312334, + -0.0002319723425898701, + 0.00572397094219923, + -0.009159714914858341, + -0.014628303237259388, + -0.009016701020300388, + 0.009636429138481617, + 0.0011985946912318468, + -0.015091396868228912, + -0.03070036880671978, + 0.007130276411771774, + 0.02044421248137951, + 0.016112927347421646, + -0.009493415243923664, + 0.015009675174951553, + -0.0264371857047081, + 0.005846554413437843, + 0.007177948020398617, + 0.01921837590634823, + 0.02128867618739605, + -0.03527682274580002, + -0.019422682002186775, + -0.020362488925457, + 0.017202557995915413, + 0.003684316761791706, + -0.004498135298490524, + -0.022460030391812325, + 0.05232955515384674, + 0.0015969912055879831, + 0.008158616721630096, + 0.014587442390620708, + -0.0007027272367849946, + -0.0021026483736932278, + -0.01010633260011673, + -0.005666084121912718, + -0.008056463673710823, + 0.04440248757600784, + 0.0038375461008399725, + -0.01001099031418562, + -0.004079308360815048, + 0.019150273874402046, + 0.012333267368376255, + -0.0025180703960359097, + 0.013409278355538845, + 0.01856459677219391, + -0.008737483061850071, + -0.009936077520251274, + 0.020716620609164238, + 0.013593154028058052, + -0.013811079785227776, + 0.005318764131516218, + 0.03628472983837128, + 0.020525934174656868, + 0.016834808513522148, + -0.029147643595933914, + -0.02029438689351082, + -0.020961787551641464, + -0.008805585093796253, + 0.010664768517017365, + 0.031136222183704376, + -0.015500009059906006, + -0.014001765288412571, + 0.01398814469575882, + -0.014042627066373825, + 0.005802288185805082, + -0.014505719766020775, + 0.02078472264111042, + 0.0012837222311645746, + -0.021969696506857872, + 0.0040520671755075455, + -0.011570525355637074, + 0.0013969417195767164, + 0.012837221845984459, + -0.0013560805236920714, + 0.016221890226006508, + -0.008083703927695751, + -0.014069867320358753, + 0.003949914593249559, + 0.006878299172967672, + -0.032634466886520386, + -0.013204972259700298, + -0.01325945369899273, + 0.007034933660179377, + 0.0074707865715026855, + 0.004416413139551878, + -0.0018796144286170602, + -0.018373912200331688, + -0.02378120832145214, + 0.009364021010696888, + 0.00023495180357713252, + 0.008907738141715527, + 0.002216719090938568, + -0.027608539909124374, + 0.015322944149374962, + -0.03301583603024483, + -0.02700924314558506, + -0.014846229925751686, + 0.015840519219636917, + -0.007096225395798683, + 0.039934996515512466, + -0.008880496956408024, + 0.008887307718396187, + 0.012067669071257114, + 0.030373480170965195, + 0.01502329483628273, + -0.02048507332801819, + -0.026328222826123238, + 0.00682041235268116, + 0.010283397510647774, + 0.0025265831500291824, + -0.020362488925457, + -0.01905493251979351, + -0.010732870548963547, + 0.04889721795916557, + 0.00905075203627348, + 0.011270876042544842, + 0.0017451130552217364, + -0.004290424287319183, + -0.011951896362006664, + -0.008669381029903889, + -0.02863006852567196, + 0.0025691469199955463, + -0.011400270275771618, + 0.002332492498680949, + -4.6474277041852474e-5, + -0.01469640526920557, + 0.002009008079767227, + -0.007402684539556503, + -0.003694531973451376, + -0.0035617330577224493, + 0.02719992771744728, + -0.005856769625097513, + -0.0034629853907972574, + 0.00027432324714027345, + 0.02382206916809082, + -0.00609172135591507, + -0.023808449506759644, + -0.003806900233030319, + 0.013661256060004234, + -0.01652153767645359, + 0.0035140616819262505, + -0.008063273504376411, + 0.014846229925751686, + -0.01905493251979351, + 0.007831727154552937, + 0.021029889583587646, + 0.01894596964120865, + -0.01905493251979351, + 0.026913899928331375, + 0.00131096295081079, + 0.020839203149080276, + 0.0030186199583113194, + -0.02097540721297264, + -0.011304927058517933, + -0.023604143410921097, + 0.012026808224618435, + -0.016262751072645187, + 0.009282298386096954, + -0.02228296548128128, + 0.007518457714468241, + -0.014110729098320007, + 0.014532960951328278, + 0.03445959836244583, + -0.018237708136439323, + -0.014396756887435913, + -0.006612701341509819, + 0.004978253971785307, + -0.002744509605690837, + 0.007075794972479343, + -0.014546581543982029, + 0.009541085921227932, + -0.0173251423984766, + -0.0074503556825220585, + 0.000797644373960793, + -0.007879397831857204, + -0.018768902868032455, + 0.00509062223136425, + -0.026750454679131508, + -0.00977944303303957, + 0.019722331315279007, + 0.0229367446154356, + -0.025538239628076553, + 0.029801422730088234, + -0.006490117870271206, + 0.01014038361608982, + 0.03669334203004837, + -0.025524619966745377, + 0.028956959024071693, + -0.02278692089021206, + 0.011727159842848778, + 0.01628999225795269, + -0.00941169261932373, + -0.011570525355637074, + -0.005536690354347229, + 0.010841834358870983, + 0.002616818295791745, + 0.002460183808580041, + -0.004140600096434355, + -0.02759491838514805, + 0.0074707865715026855, + 0.010385550558567047, + -0.013007476925849915, + -0.011781641282141209, + -0.00014120517880655825, + -0.012666966766119003, + 0.003602594370022416, + -0.011904224753379822, + -0.0017297901213169098, + -0.005758021958172321, + 0.011849743314087391, + -0.001042811432853341, + -0.010950797237455845, + 0.02093454636633396, + -0.016780326142907143, + -0.010617097839713097, + -0.0022371497470885515, + -0.0222421046346426, + 0.004705846309661865, + -0.022841401398181915, + -0.002172452863305807, + 0.003323376178741455, + 0.01905493251979351, + -0.002381866564974189, + 0.006929375696927309, + -0.02500704489648342, + 0.0021826683077961206, + -0.008621709421277046, + -0.002005603164434433, + 0.0017280875472351909, + 0.012741878628730774, + 0.027458716183900833, + -0.0061462027952075005, + 0.00843102391809225, + 0.004195081535726786, + -0.007593370042741299, + -0.007770434953272343, + -0.008478695526719093, + 0.009609187953174114, + -0.02055317535996437, + 0.007075794972479343, + 0.013109629973769188, + 0.09697721153497696, + -0.003248464083299041, + -0.009152905084192753, + -0.011577335186302662, + 0.008328870870172977, + -0.022650716826319695, + 0.0208255834877491, + 0.007252859883010387, + 0.028221458196640015, + 0.016644122079014778, + -0.011155103333294392, + -0.03639369457960129, + 0.0015484686009585857, + 0.008839636109769344, + -0.01736600324511528, + -0.005945302080363035, + 0.0074707865715026855, + 0.029420051723718643, + 0.0007393320556730032, + 0.015486388467252254, + 0.014587442390620708, + -0.027458716183900833, + 0.0046990360133349895, + 0.03519510105252266, + -0.008294819854199886, + 0.021547464653849602, + -0.011352598667144775, + -0.0019409061642363667, + 0.012006377801299095, + 0.02512962743639946, + -0.006905539892613888, + -0.005506044253706932, + 0.004035041667521, + 0.013783839531242847, + 0.005039546173065901, + 0.017774615436792374, + 0.0026508693117648363, + 0.014996054582297802, + 0.00433128559961915, + 0.018619079142808914, + 0.002834744518622756, + -0.012592054903507233, + 0.031217943876981735, + 0.023508800193667412, + 0.0068374378606677055, + -0.021874353289604187, + -0.010882695205509663, + -0.0031003423500806093, + -0.00435171602293849, + 0.006667183246463537, + -0.02255537360906601, + 0.0012369020842015743, + 0.008764724247157574, + -0.010188055224716663, + -0.010303828865289688, + -0.00715751713141799, + 0.006176848895847797, + 0.003892027772963047, + -0.008553607389330864, + 0.00311226025223732, + 0.004058877471834421, + 0.0017859742511063814, + -0.0024755066260695457, + -0.01856459677219391, + -0.00112623639870435, + -0.01321859285235405, + -0.0033523195888847113, + -0.0016012475825846195, + -0.004460679367184639, + 0.008860066533088684, + -0.004763733129948378, + 0.0067046391777694225, + 0.0006925119087100029, + -0.020239906385540962, + -0.0019426087383180857, + 0.01287127286195755, + 0.0039839656092226505, + 0.01656240038573742, + -0.00516893994063139, + -0.005056571681052446, + 0.01183612272143364, + 0.010194865055382252, + 0.003325078869238496, + -0.019449923187494278, + 0.002012413227930665, + -0.004041851963847876, + 0.0073618232272565365, + -0.008349302224814892, + 0.0076478514820337296, + -0.0215202234685421, + -0.02827593870460987, + 0.013913232833147049, + -0.003166741691529751, + 0.00837654247879982, + -0.012864463031291962, + 0.007940690033137798, + -0.014805369079113007, + -0.013075578957796097, + 0.006156418472528458, + -0.0035855688620358706, + 0.008104134351015091, + 0.02359052374958992, + -0.004256373271346092, + -0.009091612882912159, + 0.01932734064757824, + -0.006200684700161219, + 0.025756165385246277, + 0.010678389109671116, + -0.01797892153263092, + -0.004596882965415716, + -0.0010555805638432503, + 0.004283613990992308, + -0.008914547972381115, + -0.015418286435306072, + -0.01924561709165573, + 0.02939281053841114, + 0.010351499542593956, + -0.0035038464702665806, + -0.015091396868228912, + -0.013681686483323574, + -0.01652153767645359, + 0.003483415814116597, + -0.010589856654405594, + 0.005448157899081707, + 0.006633132230490446, + -0.01183612272143364, + 0.003033942775800824, + -0.00977944303303957, + -0.019844913855195045, + 0.0021503197494894266, + -0.0025163679383695126, + 0.009180146269500256, + 0.009520655497908592, + 0.003371047554537654, + 0.022460030391812325, + -0.009350400418043137, + -0.005111053120344877, + -0.00014205645129550248, + 0.03203516826033592, + -0.0055094496347010136, + 0.0055196648463606834, + 0.01983129419386387, + 0.0025674444623291492, + 0.020199045538902283, + 0.02109799161553383, + 0.02605581469833851, + -0.015418286435306072, + -0.01767927221953869, + 0.014573821797966957, + 0.008798775263130665, + 0.015363804996013641, + -0.010930366814136505, + 0.011958706192672253, + -0.01797892153263092, + 0.028248697519302368, + -0.0006265381234697998, + -0.007845346815884113, + 0.029828663915395737, + -0.014219691976904869, + -0.00152037653606385, + 0.005686514545232058, + 0.0012411584611982107, + -0.00912566389888525, + -0.02455757185816765, + -0.002741104457527399, + 0.011693108826875687, + 0.030918296426534653, + 0.0250479057431221, + 0.003892027772963047, + -0.02067575976252556, + -0.01460106298327446, + 0.005645653698593378, + 0.011420700699090958, + -0.014750887639820576, + 0.01502329483628273, + 0.0049952794797718525, + -0.004453869070857763, + -0.0011373029556125402, + -0.0454103946685791, + 0.007191568147391081, + 0.0031718492973595858, + -0.020430590957403183, + 0.01385194156318903, + 0.008880496956408024, + 0.011917845346033573, + -0.031599316745996475, + 0.003211007919162512, + -0.02029438689351082, + 0.009091612882912159, + -0.00500549515709281, + -0.015036915428936481, + 0.022950364276766777, + -0.005012304987758398, + 0.007913448847830296, + -0.01012676302343607, + -0.016684982925653458, + 0.009915647096931934, + 0.00466839037835598, + -0.014001765288412571, + -0.014492100104689598, + -0.007130276411771774, + -0.013061958365142345, + 0.009445743635296822, + -0.0058806054294109344, + 0.0010453652357682586, + -0.019572507590055466, + -0.0017723538912832737, + -0.012530762702226639, + -0.009098423644900322, + -0.014818989671766758, + -0.04325837269425392, + -0.01154328417032957, + 0.017434105277061462, + 0.004770542960613966, + -0.005989568307995796, + 0.0027581299655139446, + 0.007089415565133095, + 0.020362488925457, + 0.01217663288116455, + 0.01254438329488039, + 0.00419848645105958, + 0.014192450791597366, + 0.013354796916246414, + -0.0045015402138233185, + -0.008982650004327297, + -0.007613800466060638, + -0.0022524727974087, + 0.012598864734172821, + 0.010610287077724934, + -0.010746491141617298, + 0.029447292909026146, + 0.009282298386096954, + -0.0194363035261631, + 0.013368417508900166, + -0.00937764160335064, + 0.03903605043888092, + -0.0003122049674857408, + -0.008199477568268776, + 0.006187064107507467, + -0.0008529772167094052, + 0.026573389768600464, + -0.01702549308538437, + -0.0029726510401815176, + -0.003394883358851075, + 0.010460463352501392, + 0.009227816946804523, + -0.000511616060975939, + -0.006316457875072956, + 0.00648330757394433, + -2.063010833808221e-5, + -0.016221890226006508, + 0.0008593617822043598, + -0.030645888298749924, + 0.023154670372605324, + 0.008117754943668842, + 0.0017468156293034554, + 0.0011160210706293583, + -0.00509062223136425, + -0.008914547972381115, + -0.015077776275575161, + -0.011114241555333138, + 0.014396756887435913, + 0.004838644992560148, + -0.01004504133015871, + -0.0006776146474294364, + 0.0017791640711948276, + -0.02171090804040432, + 0.006207494996488094, + -0.008567227981984615, + 0.004484514705836773, + -0.0028534727171063423, + 0.008907738141715527, + 0.008553607389330864, + 0.0071983784437179565, + -0.011822502128779888, + -0.0035106567665934563, + -0.0007414602441713214, + -0.002870498225092888, + -0.011264066211879253, + -0.004038447048515081, + -0.0029811637941747904, + -0.006922565400600433, + 0.006490117870271206, + -0.013804269954562187, + 0.007055364549160004, + -0.006588866002857685, + 0.011059760116040707, + 0.02074385993182659, + 0.000882771797478199, + -0.0004124425759073347, + 0.006364129483699799, + -0.005911251064389944, + 0.006360724102705717, + -0.02329087443649769, + -0.01187017373740673, + 0.033642373979091644, + -0.008955409750342369, + 0.0006324970745481551, + 0.032253094017505646, + 0.0029862714000046253, + -0.0012607377720996737, + 0.003445959882810712, + 0.00323654618114233, + -0.022487271577119827, + 0.00837654247879982, + -0.002861985471099615, + -0.0036230250261723995, + 0.005638843402266502, + -0.015935862436890602, + -0.009942888282239437, + -0.012108530849218369, + -0.0022320421412587166, + 0.0008487208397127688, + -0.016739465296268463, + -0.0049714441411197186, + -0.024761877954006195, + 0.011216394603252411, + 0.022391928359866142, + -0.018033402040600777, + -0.005046356003731489, + -0.017420483753085136, + 0.0026525717694312334, + -0.021111611276865005, + 0.011638627387583256, + -0.00556052615866065, + 0.002822826849296689, + 0.005952112376689911, + 0.025034284219145775, + -0.0026849203277379274, + -0.021370399743318558, + 0.0257425457239151, + -0.015009675174951553, + 0.002044761786237359, + 0.005921466276049614, + -0.006156418472528458, + 0.028602829203009605, + -0.0194363035261631, + -0.0026066030841320753, + -0.008928168565034866, + 0.016507918015122414, + -0.0318172425031662, + 0.009234627708792686, + 0.0022456625010818243, + 0.004903342109173536, + 0.008349302224814892, + 0.013402468524873257, + -0.010548995807766914, + 0.00026049005100503564, + 0.01983129419386387, + 0.019123034551739693, + 0.010399171151220798, + -0.0020294387359172106, + 0.024339644238352776, + -0.00339999096468091, + -0.006772741209715605, + -0.0035889740101993084, + 0.01498243398964405, + 0.011590955778956413, + -0.013552292250096798, + -0.0006452662055380642, + -0.004637744277715683, + -0.0009551301482133567, + -0.012884893454611301, + -0.0018336456269025803, + -0.0016693496145308018, + -0.014587442390620708, + -0.008328870870172977, + 0.028058012947440147, + -0.035794395953416824, + 0.010787351988255978, + -0.014246932230889797, + -0.02985590510070324, + -0.012973425909876823, + -0.013429708778858185, + -0.012735068798065186, + -0.005577551666647196, + 0.015295702964067459, + -0.0005839744117110968, + -0.005866984836757183, + -0.02029438689351082, + 0.023617764934897423, + 0.007940690033137798, + -0.016167407855391502, + -0.0021928835194557905, + 0.014710025861859322, + 0.012128961272537708, + 0.01939544267952442, + 0.01856459677219391, + 0.01423331256955862, + -0.022855021059513092, + -0.0173251423984766, + -0.009459364227950573, + 0.005359625443816185, + 0.0026321413461118937, + -0.0020311414264142513, + -0.01248990185558796, + -0.013116439804434776, + 0.03549474850296974, + 0.006401585415005684, + -0.0029760561883449554, + 0.01947716437280178, + -0.010310638695955276, + 0.016548778861761093, + 0.004658174701035023, + 0.022296585142612457, + -0.0008529772167094052, + -0.004651364870369434, + 0.023004846647381783, + -0.023849310353398323, + -0.011059760116040707, + 0.0024005945306271315, + 0.01083502359688282, + -0.004058877471834421, + 0.006895324680954218, + 0.005077002104371786, + -0.0055639310739934444, + 0.014124348759651184, + 0.00022856723808217794, + 0.02105713076889515, + -0.003820520592853427, + 0.0037490136455744505, + 0.0026474641636013985, + 0.007688712794333696, + 0.005853364709764719, + -0.008594469167292118, + -0.002831339603289962, + 0.024584811180830002, + 0.0030237275641411543, + -0.009091612882912159, + 0.026750454679131508, + -0.004344905726611614, + -0.026791315525770187, + -0.011059760116040707, + 0.0222148634493351, + -0.01594948209822178, + 0.0025367983616888523, + 0.02213314175605774, + -0.009902026504278183, + 0.012483091093599796, + 0.014628303237259388, + -0.02029438689351082, + 0.00023814408632460982, + -0.0006448405329138041, + 0.002749617211520672, + 0.007927069440484047, + -0.0025963876396417618, + -0.00038307360955514014, + 0.011502423323690891, + -0.004276803694665432, + -0.006864679045975208, + 0.004586667753756046, + 0.014669165015220642, + 0.005751211661845446, + -0.010692009702324867, + -0.016085686162114143, + -0.006214304827153683, + -0.0013228808529675007, + 0.022991225123405457, + 0.02523859031498432, + -0.03247101977467537, + -0.0036366453859955072, + -0.010344689711928368, + -0.028384901583194733, + 0.005638843402266502, + -0.02181987278163433, + 0.012346887961030006, + 0.007218808867037296, + 0.02236468717455864, + 0.003946509212255478, + 0.009936077520251274, + -0.007899829186499119, + 0.005352815147489309, + 0.011761210858821869, + -0.005577551666647196, + 0.02931108884513378, + -0.012231114320456982, + 0.01079416275024414, + 0.008962219581007957, + 0.012421799823641777, + -0.01856459677219391, + -0.004770542960613966, + -0.002582767279818654, + -0.017284279689192772, + 0.01797892153263092, + 0.03339720889925957, + 0.018973208963871002, + 0.0008802179945632815, + 0.0009312944603152573, + 0.014192450791597366, + 0.015009675174951553, + -0.006847653537988663, + 0.0002526157477404922, + 0.006217710208147764, + -0.0025265831500291824, + 0.01279636099934578, + -0.001124533824622631, + -0.011243635788559914, + 0.012408179230988026, + 0.012367318384349346, + 0.00453559122979641, + 0.006844248156994581, + -0.007423114962875843, + 0.0018796144286170602, + 0.02547013759613037, + 0.013443329371511936, + 0.005335789639502764, + -0.003936294000595808, + 0.005380055867135525, + 0.016807567328214645, + 0.02158832550048828, + -0.0083152512088418, + 0.004395982250571251, + -7.166668365243822e-5, + 0.01398814469575882, + -0.005904441233724356, + 0.016153788194060326, + 0.0037694440688937902, + 0.008247149176895618, + 0.0009559814352542162, + -0.004218917340040207, + -0.005802288185805082, + -0.01671222411096096, + -0.0014718539314344525, + -0.002901144092902541, + -0.019068552181124687, + 0.004549211822450161, + 0.014287794008851051, + 0.013395657762885094, + 0.027540437877178192, + -0.0030918295960873365, + -0.025565480813384056, + -0.006548004690557718, + -0.005615007597953081, + 0.0038715971168130636, + 0.015922240912914276, + 0.01867356151342392, + 0.01285084243863821, + 0.005036140792071819, + 0.009772633202373981, + 0.01985853537917137, + 0.0028160165529698133, + 0.008199477568268776, + 0.004596882965415716, + 0.007600180339068174, + -0.011938275769352913, + -0.03704747185111046, + -0.003640050534158945, + 0.0038681919686496258, + 0.029065921902656555, + 0.0055094496347010136, + 0.007504837587475777, + -0.004048662260174751, + 0.017107214778661728, + 0.0071847583167254925, + 0.015105017460882664, + -0.018986830487847328, + -0.0027104585897177458, + 0.004991874564439058, + -0.00507019180804491, + -0.0021894783712923527, + -0.008669381029903889, + -0.012306026183068752, + 0.003646860597655177, + 0.007123466115444899, + -0.018155986443161964, + 0.011332168243825436, + 0.041705649346113205, + 0.013729358091950417, + 0.005155319347977638, + 0.008097324520349503, + -0.022759679704904556, + -0.009466174058616161, + -0.016085686162114143, + -0.006449257023632526, + -0.011747590266168118, + -0.0019323935266584158, + -0.018496496602892876, + -0.010957607068121433, + 0.013191351667046547, + -0.0159086212515831, + 0.007572939153760672, + -0.026096675544977188, + -0.01325945369899273, + -0.006020214408636093, + 0.0003696660278365016, + 0.02297760546207428, + -0.007048554252833128, + -0.003151418874040246, + 0.006432231515645981, + -0.0068680839613080025, + 0.0285483468323946, + -0.03669334203004837, + -0.00277515547350049, + 0.023413458839058876, + 0.011216394603252411, + -0.002793883439153433, + -0.00679998192936182, + 0.011938275769352913, + -0.013933663256466389, + -0.009186956100165844, + -0.0037490136455744505, + 0.0035447077825665474, + -0.004239347763359547, + 0.00013216039224062115, + -0.009711341001093388, + 0.010079092346131802, + 0.01362039428204298, + -0.019654229283332825, + -0.006534384097903967, + -0.002259282860904932, + -0.01073968131095171, + 0.00017025493434630334, + 0.013334366492927074, + -0.008383353240787983, + 0.0004924623644910753, + -0.02198331616818905, + 0.0026014952454715967, + 0.00436193123459816, + 0.0416511669754982, + -0.012626105919480324, + -0.014069867320358753, + -0.011727159842848778, + 0.0035106567665934563, + 0.013416088186204433, + -0.0035991892218589783, + 0.006714854389429092, + -0.013729358091950417, + 0.007375443819910288, + 0.004978253971785307, + -0.016453435644507408, + -0.007858967408537865, + 0.003079911693930626, + 0.013116439804434776, + 0.0017876768251881003, + -0.015227600932121277, + 0.018646320328116417, + -0.014287794008851051, + -0.0029266823548823595, + 0.012728258967399597, + -0.048352401703596115, + -0.001028339727781713, + -0.017910819500684738, + -0.010072281584143639, + -0.009098423644900322, + 0.013497810810804367, + 0.007068984676152468, + 0.010079092346131802, + 0.02078472264111042, + 0.0019426087383180857, + 0.005284713115543127, + -0.018346671015024185, + -0.011175533756613731, + -0.021029889583587646, + -0.002325682435184717, + -0.011829312890768051, + -0.009677289985120296, + 0.0058942255564033985, + -0.03170827776193619, + 0.0013705522287636995, + -0.016112927347421646, + -0.020185424014925957, + -0.03857295587658882, + -0.015118638053536415, + -0.002175858011469245, + 0.00024154919083230197, + -0.020103702321648598, + 0.012244734913110733, + 0.004930582828819752, + -0.009384451434016228, + -0.042441148310899734, + -0.0031429061200469732, + 0.007314151618629694, + -0.009840735234320164, + 0.011311737820506096, + 0.004355120938271284, + -0.024543950334191322, + -0.007763624656945467, + -0.005577551666647196, + 0.017774615436792374, + -0.03549474850296974, + 0.002793883439153433, + 0.010521754622459412, + -0.0015927348285913467, + -0.015772417187690735, + -1.686587893345859e-5, + 0.002455076202750206, + 0.011366219259798527, + -0.02397189475595951, + -0.001454828423447907, + -0.011761210858821869, + -0.015105017460882664, + -0.006731879897415638, + 0.011332168243825436, + -0.02405361644923687, + 0.019626988098025322, + 0.011965516954660416, + -0.014124348759651184, + -0.009922456927597523, + -0.015608971938490868, + -0.00572397094219923, + -0.003369345096871257, + 0.0013067065738141537, + 0.008941789157688618, + -0.022487271577119827, + 0.006745500490069389, + -0.005877200048416853, + 0.003612809581682086, + -0.013674875721335411, + 0.0006278150831349194, + 0.015322944149374962, + 0.002175858011469245, + -0.003847761545330286, + 0.0026134131476283073, + -0.008070083335042, + -0.017148077487945557, + -0.018237708136439323, + 0.02601495385169983, + -0.005618412513285875, + -0.03519510105252266, + 0.016848428174853325, + -0.01786995679140091, + -0.007818106561899185, + -0.0071847583167254925, + 0.002664489671587944, + -0.0097045311704278, + -0.022691577672958374, + -0.01848287507891655, + 0.020566795021295547, + -0.004750112537294626, + 0.020376110449433327, + 0.005002089776098728, + -0.007252859883010387, + -0.01989939622581005, + 0.009479794651269913, + -0.007429925259202719, + -0.0060576703399419785, + -0.009186956100165844, + 0.010903125628829002, + -0.00779086584225297, + 0.018428394570946693, + -0.011230015195906162, + -0.020771101117134094, + -0.010657958686351776, + 0.0012556301662698388, + 0.014056246727705002, + -0.002919872058555484, + -0.0023171696811914444, + -0.01016081403940916, + -0.018319429829716682, + 0.012748689390718937, + -0.005318764131516218, + -0.022078659385442734, + 0.005322169046849012, + -0.004246158059686422, + 0.003205900313332677, + -0.0022030987311154604, + 0.030455201864242554, + -0.018455633893609047, + -0.0001967508578673005, + 0.021356778219342232, + 0.003229736117646098, + 0.003997585736215115, + -0.012374128215014935, + 0.019123034551739693, + -0.01385194156318903, + 0.013354796916246414, + -0.002456778660416603, + -0.019817674532532692, + -0.0037490136455744505, + 0.004402792546898127, + 0.00539708137512207, + -0.00029794612783007324, + 0.008042843081057072, + -0.012149391695857048, + -0.030019350349903107, + -0.02382206916809082, + 0.0025980903301388025, + 0.007634230889379978, + -0.003033942775800824, + 0.0008793667075224221, + -0.0018506711348891258, + -0.007818106561899185, + -0.02966521866619587, + -0.01456020213663578, + -0.02947453409433365, + -0.015173119492828846, + 0.018155986443161964, + -2.8225074856891297e-5, + 0.011434321291744709, + -0.0011449643643572927, + 0.013436519540846348, + 0.011849743314087391, + -0.02639632485806942, + -0.01985853537917137, + 0.015159498900175095, + -0.0007091118022799492, + 0.01078054215759039, + 0.0022780110593885183, + -0.022732438519597054, + -0.012952995486557484, + -0.006708044093102217, + -0.01289170328527689, + -0.0011926357401534915, + -0.020689379423856735, + 0.007927069440484047, + 0.028711792081594467, + -0.014110729098320007, + 0.007899829186499119, + 0.01675308495759964, + -0.0052029904909431934, + 0.007062174379825592, + 0.010079092346131802, + -0.014206071384251118, + 0.0075593190267682076, + 0.012775929644703865, + -0.024639293551445007, + 0.015568111091852188, + -0.011284496635198593, + -0.005492424126714468, + 0.00713708670809865, + -0.010215295478701591, + 0.007457165978848934, + 0.00475351745262742, + -0.0019800649024546146, + -0.01863269880414009, + -0.004801189061254263, + -0.0008440388482995331, + -0.015282082371413708, + -0.0018591838888823986, + -0.025333933532238007, + -0.014192450791597366, + 0.00170510308817029, + 0.009881596080958843, + 0.006629726849496365, + -0.008934978395700455, + -0.0005469439784064889, + -0.012483091093599796, + -0.01150923315435648, + 0.0024414556100964546, + 0.017611170187592506, + 0.0030526709742844105, + -0.02939281053841114, + 0.025020664557814598, + 0.007389063946902752, + -0.0072869108989834785, + -0.006333483383059502, + -0.02620563842356205, + 0.028575588017702103, + -0.013838320970535278, + -0.0006512250984087586, + 0.012680587358772755, + -0.012054049409925938, + 0.009963318705558777, + 0.007511647418141365, + -0.013817890547215939, + 0.015322944149374962, + -0.020498692989349365, + 0.006769336294382811, + 0.009295918978750706, + -0.028194217011332512, + 0.008798775263130665, + 0.023386217653751373, + 0.010651148855686188, + -0.0041916766203939915, + 0.019626988098025322, + -0.002051571849733591, + -0.00046351904165931046, + 0.016507918015122414, + 0.003401693422347307, + -0.002575957216322422, + 0.0045015402138233185, + -0.011168723925948143, + -0.0194090623408556, + -3.3332722523482516e-5, + 0.0015118637820705771, + 0.00877834390848875, + 0.010542185045778751, + 0.007041743956506252, + 0.022078659385442734, + 0.03061864711344242, + -0.009656859561800957, + 0.011720349080860615, + -0.016916530206799507, + -0.0022065038792788982, + -0.0062551661394536495, + -0.0011756103485822678, + 0.012271975167095661, + -0.0121630122885108, + 0.02624649927020073, + 0.024870840832591057, + 0.01601758413016796, + 0.00799517147243023, + 0.011638627387583256, + -0.012905323877930641, + -0.01218344271183014, + -0.024870840832591057, + 0.02051231451332569, + -0.011686298064887524, + -0.0017042518593370914, + -0.008294819854199886, + 0.01690290868282318, + 0.0007184757851064205, + -0.013552292250096798, + -0.013674875721335411, + -0.01810150407254696, + -0.008294819854199886, + -0.020457832142710686, + -0.0027717503253370523, + 0.010228916071355343, + 0.002586172427982092, + -0.007504837587475777, + -0.005975948181003332, + -0.004913557320833206, + -0.015391046181321144, + -0.006656968034803867, + 0.01144794188439846, + 0.0008640437736175954, + 0.0025197730865329504, + -0.013531861826777458, + -0.020580416545271873, + -0.003895432921126485, + 0.04056153446435928, + -0.02236468717455864, + -0.003568543354049325, + -0.018700800836086273, + -0.0024022969882935286, + -0.006806792225688696, + -0.0037115574814379215, + -0.01833305135369301, + -0.0222148634493351, + 0.009166525676846504, + -0.0006031281081959605, + -0.00014056672807782888, + 0.012374128215014935, + -0.012360507622361183, + -0.019817674532532692, + 0.011039329692721367, + -0.015159498900175095, + 0.005301738623529673, + 0.0037558237090706825, + 0.0341327078640461, + 0.004590073134750128, + -0.01154328417032957, + 0.00678976671770215, + -0.02156108431518078, + 0.013109629973769188, + -0.000859787396620959, + -0.011325358413159847, + -0.0022712007630616426, + 0.016317233443260193, + -0.01601758413016796, + 0.0007597626536153257, + 0.019449923187494278, + 0.0043687415309250355, + 0.004464084282517433, + -0.011979136615991592, + 0.011481992900371552, + -0.018319429829716682, + -0.023141050711274147, + -0.010637528263032436, + -0.007579749450087547, + -0.014737267047166824, + 0.014846229925751686, + -0.0025555265601724386, + 0.009302729740738869, + -0.024680154398083687, + 0.010113143362104893, + -0.0031888748053461313, + -0.026192018762230873, + -0.005999783985316753, + 0.010869074612855911, + -0.004760327748954296, + -0.015595351345837116, + 0.02650528773665428, + 0.014778127893805504, + 0.007355012930929661, + -0.012987046502530575, + 0.0017434104811400175, + -0.02985590510070324, + 0.028984200209379196, + -0.004123574588447809, + -0.018455633893609047, + 0.007205188740044832, + -0.002298441482707858, + 0.005277902819216251, + 0.021084370091557503, + 0.0005499234539456666, + -0.0035855688620358706, + 0.015105017460882664, + -0.0006712300819344819, + -0.01535018440335989, + 0.004252968356013298, + -0.022718818858265877, + 0.007457165978848934, + -0.007675092201679945, + -0.005114458035677671, + 0.03266170620918274, + 0.0173251423984766, + -0.009602378122508526, + -0.015036915428936481, + 0.004763733129948378, + 0.020430590957403183, + -0.011223205365240574, + 0.013824700377881527, + -0.0036741013173013926, + -0.01652153767645359, + 0.007641041185706854, + 0.008826015517115593, + -0.013606773689389229, + 0.02029438689351082, + 0.012115340679883957, + -0.002654274459928274, + -0.013790649361908436, + -0.003321673721075058, + -0.01431503426283598, + 0.03549474850296974, + 0.03293411433696747, + 0.02532031387090683, + 0.010528565384447575, + 0.013831510208547115, + 0.010303828865289688, + 0.009466174058616161, + 0.011441131122410297, + -0.011032519862055779, + 0.009949698112905025, + 0.004807999357581139, + 0.007729574106633663, + -0.012094910256564617, + 0.0036672912538051605, + -0.0378919392824173, + 0.01285084243863821, + 0.003524277126416564, + -0.026845797896385193, + -0.010841834358870983, + -0.01709359511733055, + -0.01648067682981491, + -0.006074695847928524, + 0.006575245410203934, + -0.010984848253428936, + 0.013436519540846348, + -0.005809098482131958, + 0.011502423323690891, + -0.01431503426283598, + 0.02028076723217964, + -0.010712440125644207, + -0.004225727170705795, + -0.0030237275641411543, + 0.0028160165529698133, + -0.0006950657698325813, + 0.005315358750522137, + -0.034405115991830826, + -0.027254410088062286, + 0.010324259288609028, + -0.006663777865469456, + 0.00034838414285331964, + 0.008832826279103756, + -0.013211783021688461, + 0.005615007597953081, + 0.023413458839058876, + 0.01354548241943121, + -0.00385116646066308, + 0.01118234358727932, + -0.016221890226006508, + -0.012244734913110733, + 0.011652247048914433, + -0.009350400418043137, + -0.006752310786396265, + 0.0005197032005526125, + 0.0159086212515831, + 0.005512854550033808, + 0.0027785603888332844, + 0.030536923557519913, + -0.005965732969343662, + -0.0016693496145308018, + -0.03489544987678528, + -0.016684982925653458, + 0.014478479512035847, + 0.020335249602794647, + -0.007334582507610321, + 0.009561517275869846, + 0.025456517934799194, + -0.0035515178460627794, + -0.0005575849208980799, + -0.011216394603252411, + 0.004041851963847876, + 0.006251761224120855, + 0.010521754622459412, + 0.0028977389447391033, + -0.017951680347323418, + -0.02032162807881832, + -0.007266480475664139, + -0.03178999945521355, + 0.0006759120733477175, + 0.03080933168530464, + 0.030482443049550056, + -0.010766921564936638, + 0.011502423323690891, + 0.02143850177526474, + 0.013858751393854618, + -0.007572939153760672, + -0.011985947377979755, + 0.00860808975994587, + 0.002375056268647313, + -0.017842717468738556, + -0.007593370042741299, + 0.0011338978074491024, + 0.005989568307995796, + -0.0028858210425823927, + -0.0001337565336143598, + -0.004109953995794058, + -0.0013850238174200058, + 0.002339302795007825, + -0.012803170830011368, + 0.0042802090756595135, + 0.011379839852452278, + -0.006105341948568821, + 0.024870840832591057, + 0.015200360678136349, + -0.0011517746606841683, + 0.014383136294782162, + -0.015894999727606773, + 0.008914547972381115, + 0.007654661778360605, + 0.00830163061618805, + -0.016507918015122414, + 0.030591405928134918, + 0.01836029253900051, + -0.028711792081594467, + -0.012496711686253548, + -0.006762525998055935, + -0.00013247961760498583, + 0.01016081403940916, + 0.01177483145147562, + 0.024693775922060013, + 0.03247101977467537, + 0.005536690354347229, + 0.018877867609262466, + -0.006153013091534376, + 0.032144129276275635, + 0.004317665006965399, + 0.01492795255035162, + 0.034405115991830826, + 0.01774737425148487, + 0.0036332402378320694, + 0.013586343266069889, + -0.014124348759651184, + -0.013688496313989162, + -0.02670959383249283, + -0.0007729573990218341, + -0.01191103458404541, + -0.011802071705460548, + 0.005516259931027889, + 0.015241221524775028, + -0.004998684860765934, + -0.008710241876542568, + -0.015649832785129547, + -0.015077776275575161, + 0.015431907027959824, + -0.01936820149421692, + 0.008253959007561207, + 0.002174155553802848, + -0.014124348759651184, + -0.0011092108907178044, + -0.003915863577276468, + 0.013436519540846348, + 0.020730240270495415, + -0.021642806008458138, + 0.006333483383059502, + 0.008574038743972778, + 0.0009678992792032659, + -0.004464084282517433, + -0.019913015887141228, + -0.013586343266069889, + 0.004474299494177103, + 0.0010019502369686961, + -0.0037796595133841038, + 0.008138185366988182, + -0.002455076202750206, + 0.004872696008533239, + -0.020580416545271873, + -0.00592827657237649, + -0.010603477247059345, + -0.0025214755441993475, + -0.016698604449629784, + 0.020348869264125824, + 0.011713539250195026, + -0.022718818858265877, + -0.01909579336643219, + 0.015268461778759956, + 0.010698819532990456, + 0.009091612882912159, + -0.00905075203627348, + -0.027758363634347916, + -0.009241437539458275, + -0.0031343933660537004, + 0.00912566389888525, + 0.007613800466060638, + 0.006180253811180592, + 0.003001594450324774, + -0.0045049455948174, + -0.040207404643297195, + 0.000737203867174685, + 0.002456778660416603, + -0.0073618232272565365, + -0.013109629973769188, + -0.0015101612079888582, + 0.02198331616818905, + -0.016494298353791237, + 0.013920043595135212, + 0.014628303237259388, + 0.007348202634602785, + 0.025197729468345642, + -0.0173251423984766, + -0.01575879566371441, + -0.0015237816842272878, + 0.025143248960375786, + -0.009500225074589252, + -0.014669165015220642, + 0.03737436234951019, + -0.0030526709742844105, + 0.00977944303303957, + 0.036502655595541, + 0.0042495629750192165, + -0.030727609992027283, + 0.005271092522889376, + 0.0043244753032922745, + 0.007777245249599218, + -0.006115557160228491, + -0.007436735555529594, + 0.018183225765824318, + -0.0022831186652183533, + 0.009445743635296822, + -0.020430590957403183, + -0.01694377139210701, + -0.013130060397088528, + 0.02920212596654892, + -0.01633085310459137, + 0.015935862436890602, + -0.02232382632791996, + -0.012530762702226639, + -0.011570525355637074, + 0.001276911934837699, + -0.003687721909955144, + 0.002341005252674222, + 0.003480010898783803, + 0.006602486129850149, + -0.010685199871659279, + 0.006759120617061853, + -0.00209924322552979, + -0.015486388467252254, + 0.023386217653751373, + -0.012789550237357616, + -0.002717268653213978, + -0.0015127150109037757, + 0.014573821797966957, + -0.017107214778661728, + -0.010194865055382252, + -0.0029368975665420294, + -0.011379839852452278, + 0.0015263354871422052, + -0.022500891238451004, + 0.006227925419807434, + 0.015881380066275597, + 0.018087884411215782, + 0.016426196321845055, + -0.0049510132521390915, + 0.013266264460980892, + -0.014301414601504803, + 0.0005546054453589022, + -0.0005307697574608028, + 3.942465627915226e-5, + 0.005335789639502764, + 0.008097324520349503, + -0.0013186244759708643, + 0.003480010898783803, + -0.029447292909026146, + -0.001273506903089583, + 0.0023222772870212793, + 0.010862264782190323, + 0.005747806280851364, + 0.01325945369899273, + 0.0065514096058905125, + -0.0014429105212911963, + -0.006449257023632526, + -0.006530979182571173, + 0.009643238969147205, + 0.034759245812892914, + 0.007586559746414423, + 0.035712674260139465, + -0.022909503430128098, + -0.01558173168450594, + -0.028575588017702103, + -0.02209227904677391, + -0.008288010023534298, + -0.02205141820013523, + 0.004671795293688774, + 0.004195081535726786, + 0.01793805882334709, + 0.0005712052807211876, + 0.009152905084192753, + -0.0023869741708040237, + 0.006067885551601648, + -0.009650049731135368, + 0.0014641924062743783, + -0.01671222411096096, + 0.017188938334584236, + -0.003452769946306944, + 0.02835766226053238, + -0.007845346815884113, + -0.012639726512134075, + 0.014015385881066322, + -0.008036032319068909, + 0.012081289663910866, + -0.008934978395700455, + 0.0005243851919658482, + 0.0004207424935884774, + 0.009200576692819595, + -0.011046139523386955, + -0.02109799161553383, + 0.025061525404453278, + 0.018537357449531555, + -0.00039690680569037795, + -0.0005626925267279148, + 0.008015601895749569, + 0.006663777865469456, + -0.017992541193962097, + -0.02316829189658165, + -0.0030560761224478483, + 0.024108098819851875, + 0.006333483383059502, + -0.01675308495759964, + 0.0054209171794354916, + 0.001968147000297904, + 0.01502329483628273, + -0.0033812629990279675, + -0.0033386992290616035, + -0.0012283893302083015, + 0.010276587679982185, + -0.007007692940533161, + 0.007205188740044832, + -0.016548778861761093, + 0.031408630311489105, + 0.01432865485548973, + -0.007171137724071741, + -0.015554490499198437, + 0.0017221285961568356, + 0.004682010505348444, + 0.0035072516184300184, + 0.00937764160335064, + 0.010426412336528301, + 0.017760993912816048, + -0.0009372534113936126, + 0.008785154670476913, + 0.007048554252833128, + -0.0031377982813864946, + 0.009677289985120296, + 0.024829979985952377, + -0.004624124150723219, + -0.03519510105252266, + -0.01389280240982771, + -0.007709143217653036, + -0.023032087832689285, + -0.011373029090464115, + -0.02873903326690197, + -0.010617097839713097, + 0.01763841137290001, + 0.005686514545232058, + -0.013702116906642914, + -0.024761877954006195, + -0.010950797237455845, + 0.003817115444689989, + -0.008022412657737732, + 0.0021826683077961206, + -0.004304044879972935, + 0.022351067513227463, + -0.005856769625097513, + -0.007130276411771774, + -0.0012045536423102021, + -0.009588757529854774, + 0.009547896683216095, + 0.008526367135345936, + -0.010542185045778751, + -0.005965732969343662, + 0.003158228937536478, + 0.009118854068219662, + 0.017188938334584236, + 0.01748858578503132, + 0.004287019371986389, + -0.0006265381234697998, + 0.010664768517017365, + -0.0028160165529698133, + -0.014083487913012505, + -0.0015782632399350405, + 0.0012581839691847563, + -0.013477380387485027, + 0.007205188740044832, + -0.007511647418141365, + 0.025102386251091957, + -0.0066161067225039005, + 0.028602829203009605, + 0.03407822549343109, + 0.01567707397043705, + 0.014342275448143482, + 0.013048337772488594, + 0.03236205875873566, + 0.01423331256955862, + -0.01609930582344532, + 0.004859075881540775, + 0.024530330672860146, + 0.004498135298490524, + 0.0026457617059350014, + 0.01218344271183014, + -0.0044130077585577965, + 0.020662138238549232, + -0.004664984997361898, + -0.001801297185011208, + 0.005230231676250696, + -0.016344472765922546, + -0.006404990330338478, + 0.006435636430978775, + 0.002015818376094103, + -0.013341176323592663, + 0.00017110620683524758, + -0.0033727502450346947, + 0.024693775922060013, + -0.004726276732981205, + 0.0038239257410168648, + 0.046472787857055664, + -0.0035378974862396717, + 0.004314260091632605, + 0.008969029411673546, + 0.013136870227754116, + -0.03162655606865883, + 0.006384559907019138, + 0.017161697149276733, + 0.0017740563489496708, + -0.0083152512088418, + -0.020062841475009918, + -0.008110945113003254, + 0.00910523347556591, + -0.004079308360815048, + -0.0062551661394536495, + 0.011168723925948143, + 0.0006631429423578084, + 0.0037490136455744505, + 0.010024609975516796, + -0.016085686162114143, + -0.007028123363852501, + -0.01287127286195755, + -0.0074707865715026855, + 0.005482208915054798, + -0.016262751072645187, + -0.007491216994822025, + 0.0018353482009842992, + 0.0042938292026519775, + -0.0024874245282262564, + -0.014669165015220642, + 0.006313052959740162, + -0.006765930913388729, + -0.0052029904909431934, + 0.008403783664107323, + 0.007920259609818459, + 0.004382362123578787, + -0.012135771103203297, + -0.005730780772864819, + -0.0010045040398836136, + 0.020076461136341095, + 0.011332168243825436, + 0.03184448182582855, + 0.011733969673514366, + -0.0028500675689429045, + 0.02977418154478073, + 0.004767138045281172, + 0.009077993221580982, + 0.020989028736948967, + 0.008853256702423096, + 0.012666966766119003, + 0.0004954418400302529, + -0.009956507943570614, + -0.004069092683494091, + -0.018809765577316284, + 0.025456517934799194, + -0.03219861164689064, + -0.014029006473720074, + -0.03489544987678528, + 0.008764724247157574, + -0.004767138045281172, + 0.011052950285375118, + -0.009043942205607891, + 0.011155103333294392 + ], + "ddf7e5b0-98af-4830-9f58-1e4dbc326df8": [ + 0.00622709933668375, + -0.03558342531323433, + -0.008264782838523388, + 0.014195353724062443, + -0.018886586651206017, + -0.006584454327821732, + 0.03752987086772919, + 0.03561383858323097, + -0.0015757831279188395, + 0.029987400397658348, + 0.0035754500422626734, + 0.03442772477865219, + 0.03275499865412712, + -0.016027748584747314, + 0.007922634482383728, + 0.048873987048864365, + -0.014864443801343441, + 0.022977160289883614, + 0.009101145900785923, + -0.029926573857665062, + 0.059761907905340195, + -0.0072307344526052475, + -0.03375863656401634, + 0.044281598180532455, + 0.01332857832312584, + -0.010256846435368061, + -0.0010578085202723742, + 0.006318339146673679, + -0.007983461022377014, + -0.005014373920857906, + -0.005409745033830404, + 0.03305913135409355, + 0.006348752416670322, + -0.0007864659419283271, + 0.013320975005626678, + -0.02648988366127014, + 0.017533201724290848, + -0.005995199084281921, + -0.03284623846411705, + 0.031508058309555054, + 0.007067263592034578, + 0.023600630462169647, + 0.008120319806039333, + -0.013358991593122482, + -0.041422758251428604, + 0.01970774307847023, + -0.005489579867571592, + 4.068951511726482e-6, + -0.0283298809081316, + -0.01599733531475067, + 0.024877984076738358, + -0.018080638721585274, + 0.017016176134347916, + 0.0016641714610159397, + 0.017396342009305954, + -0.01873452216386795, + 0.016149401664733887, + 0.013761965557932854, + 0.016407912597060204, + -0.05167200043797493, + 0.01619502156972885, + -0.005394538398832083, + 0.031720951199531555, + -0.007991064339876175, + 0.016742458567023277, + 0.005322307348251343, + -0.005364125594496727, + -0.017487581819295883, + -0.027980130165815353, + -0.009055525995790958, + 0.012423785403370857, + 0.002925368258729577, + -0.04169647768139839, + 0.018977826461195946, + -0.0010207424638792872, + 0.005101811606436968, + 0.0429738312959671, + 0.031508058309555054, + 0.008576517924666405, + -0.04498109966516495, + 0.002531897509470582, + -0.018415182828903198, + 0.022703442722558975, + 0.005512389820069075, + 0.06119132786989212, + 0.01952526532113552, + 0.000724213954526931, + -0.041818127036094666, + 0.011815521866083145, + -0.021061129868030548, + -0.02020956017076969, + 0.02255137637257576, + 0.0026991700287908316, + 0.013412214815616608, + -0.034671030938625336, + -8.405206608586013e-5, + 0.048113659024238586, + -0.005588422529399395, + -0.007953047752380371, + 0.0016023946227505803, + 0.0116254398599267, + 0.012332546524703503, + -0.03293747827410698, + 0.02901417762041092, + 0.02607930637896061, + 0.013252545148134232, + 0.024954017251729965, + -0.011815521866083145, + -0.021137163043022156, + 0.04008457809686661, + -0.008249576203525066, + -0.008614534512162209, + 0.006018009036779404, + -0.008690567687153816, + -0.05048588663339615, + -0.022490549832582474, + -0.038472678512334824, + -0.030747730284929276, + 0.0027010708581656218, + -0.0292118638753891, + 0.04911729320883751, + -0.024072036147117615, + 0.0138303954154253, + -0.0019749561324715614, + -0.014796013943850994, + -0.00014268059749156237, + 0.006196686532348394, + 0.02274906262755394, + 0.02148691564798355, + 0.023281292989850044, + -0.01279634702950716, + -0.03941548615694046, + 0.014887253753840923, + -0.005675860680639744, + 0.005862141493707895, + 0.03287665173411369, + -0.05164158716797829, + 0.03187301754951477, + -0.010287259705364704, + 0.04996886104345322, + -0.039263419806957245, + -0.013647916726768017, + -0.03144723176956177, + 0.00769453588873148, + 0.025714347139000893, + 0.009739822708070278, + -0.03375863656401634, + 0.05091167241334915, + -0.031203927472233772, + 0.013054859824478626, + -0.07797940820455551, + -0.015282625332474709, + -0.03030673786997795, + -0.004056358709931374, + -0.001522560021840036, + -0.011298498138785362, + 0.008105114102363586, + 0.017092209309339523, + 0.008789409883320332, + 0.05215861275792122, + 0.008082304149866104, + -0.04580225422978401, + -0.010963953100144863, + -0.005227265879511833, + 0.039080943912267685, + 0.009199988096952438, + 0.059366535395383835, + 0.03637417033314705, + -0.013769568875432014, + 0.00976263266056776, + 0.015244608744978905, + -0.0039271023124456406, + 0.035431358963251114, + 0.027964923530817032, + -0.014355023391544819, + -0.011442960239946842, + 0.04011499136686325, + 0.04923894628882408, + 0.005497183185070753, + -0.03010905347764492, + -0.022201623767614365, + -0.006344950757920742, + 0.018658488988876343, + -0.0009119203314185143, + -0.010918333195149899, + 0.03813813254237175, + 0.009108749218285084, + 0.020179148763418198, + 0.0013182214461266994, + -0.006782140117138624, + 0.011154035106301308, + -0.017715679481625557, + -0.015176178887486458, + 0.035340119153261185, + -0.025638313964009285, + -0.03518805280327797, + 0.004592390730977058, + 0.008021477609872818, + -0.013092875480651855, + 0.03655664622783661, + 0.005018175579607487, + -0.02148691564798355, + -0.019844602793455124, + 0.04336920008063316, + -0.03801647946238518, + 0.027964923530817032, + -0.020650552585721016, + -0.01812625862658024, + 0.04832655191421509, + -0.02147170901298523, + 0.024558646604418755, + -0.05118538811802864, + -0.01539667509496212, + -0.016407912597060204, + -0.019251545891165733, + 0.0032352025154978037, + 0.003465202171355486, + 0.03214673697948456, + -0.005485778208822012, + -0.03488392382860184, + 0.020559312775731087, + 0.030930208042263985, + -0.014377833344042301, + -0.02176063321530819, + -0.05891034007072449, + -0.013168908655643463, + -0.007272552698850632, + 0.0370432585477829, + -0.0337282232940197, + 0.010196019895374775, + 0.02078741230070591, + -0.0040981764905154705, + -0.0012897091219201684, + -0.011321308091282845, + -0.0036818962544202805, + 0.01240097638219595, + 0.03199467062950134, + 0.0034994171001017094, + -0.010606598109006882, + -0.01599733531475067, + 0.012241306714713573, + 0.029379136860370636, + 0.0011100812116637826, + 0.001904625678434968, + -0.006462801713496447, + 0.041726890951395035, + -0.01648394577205181, + 0.033393677324056625, + 0.030717317014932632, + -0.005231067538261414, + 0.021137163043022156, + 0.010652218014001846, + 0.017426755279302597, + 0.010043954476714134, + -0.009983127936720848, + 0.051033321768045425, + 0.02892293781042099, + -0.060948021709918976, + 0.0029861945658922195, + 0.007272552698850632, + 0.014423452317714691, + 0.03676953911781311, + 0.023159639909863472, + -0.002151732798665762, + 0.014925270341336727, + -0.023266086354851723, + 0.06696983426809311, + -0.04796159267425537, + -0.002011071890592575, + 0.028481947258114815, + 0.049178119748830795, + 0.019540471956133842, + -0.02794971689581871, + 0.013191718608140945, + 0.009519326500594616, + 0.002218261593952775, + -0.010287259705364704, + -0.00674412352964282, + 0.010872713290154934, + 0.01510014571249485, + -0.00547057157382369, + 0.008394039236009121, + 0.0032789213582873344, + -0.0007555775810033083, + 0.03229880332946777, + -0.008606931194663048, + -0.010462135076522827, + 0.0066832974553108215, + -0.04920853301882744, + -0.008226766251027584, + -0.007447428535670042, + 0.00244065816514194, + 0.006014207378029823, + 0.003134458791464567, + -0.0013286760076880455, + 0.02951599471271038, + -0.0003440491564106196, + 0.018810555338859558, + 0.01814146526157856, + 0.02420889399945736, + -0.0028987566474825144, + -0.0016337583074346185, + -0.02353980392217636, + -0.009108749218285084, + 0.0048242914490401745, + 0.002893054159358144, + 0.004831894766539335, + 0.007652717642486095, + -0.04610638692975044, + 0.03628293052315712, + 0.04458572715520859, + -0.03442772477865219, + -0.005694868974387646, + -0.01794377900660038, + 0.006709908600896597, + -0.038290198892354965, + -0.009047922678291798, + -0.009428087621927261, + -0.003980325534939766, + -0.03990209847688675, + 0.012043621391057968, + -0.013860808685421944, + -0.05991397425532341, + 0.03381945937871933, + 0.04336920008063316, + -0.031812191009521484, + 0.028755666688084602, + -0.001715493737719953, + -0.06970702111721039, + 0.002678261138498783, + -0.0308693815022707, + -0.026033686473965645, + -0.035157639533281326, + 0.007040651980787516, + -0.01981418952345848, + -0.05973149463534355, + -0.03695201873779297, + -0.0232508797198534, + -0.011998001486063004, + -0.009344451129436493, + -0.028679633513092995, + -0.00853089801967144, + 0.03558342531323433, + -0.008591724559664726, + 0.005599827505648136, + -0.0026250379160046577, + 0.0073828003369271755, + 0.040723253041505814, + -0.03503599017858505, + 0.0094204843044281, + 0.000971321074757725, + 0.0018323943950235844, + 0.021638980135321617, + -0.007093875203281641, + 0.05380092188715935, + 0.002068096539005637, + -0.03089979477226734, + -0.00588495098054409, + 0.03503599017858505, + 0.0028018145821988583, + 0.012956016696989536, + -0.022779475897550583, + -0.003218095051124692, + -0.009268417954444885, + -0.023707076907157898, + -0.009595359675586224, + -0.01014279667288065, + -0.022596996277570724, + -0.0011880149831995368, + 0.024345753714442253, + -0.025729553773999214, + 0.002893054159358144, + -0.015617170371115208, + -0.04558936506509781, + -0.018491216003894806, + -0.0264594703912735, + 0.010089574381709099, + -0.016590392217040062, + -0.015951715409755707, + 0.02539500966668129, + 0.03284623846411705, + -0.0050790016539394855, + 0.0196165032684803, + 0.005181646440178156, + 0.003143962938338518, + 0.023007573559880257, + 0.00827998947352171, + -0.007610899396240711, + -0.012705108150839806, + -0.014674361795186996, + -0.005797513294965029, + 0.02813219651579857, + -0.03464061766862869, + 0.0059799924492836, + -0.0019093777518719435, + -0.004546771291643381, + -0.010743457823991776, + -0.016544772312045097, + 0.010439325124025345, + -0.009344451129436493, + -0.00999833457171917, + -0.05100291222333908, + -0.010188416577875614, + 0.003296028822660446, + 0.027280626818537712, + -0.03914176672697067, + -0.010066764429211617, + -0.003600160824134946, + 0.030458804219961166, + -0.01637749932706356, + 0.019434025511145592, + 0.01475039403885603, + -0.0031857811845839024, + 0.024467406794428825, + 0.04552853852510452, + 0.0012792545603588223, + -0.027721617370843887, + 0.056051500141620636, + -0.034062765538692474, + -0.011906761676073074, + 0.03777317330241203, + 0.036130864173173904, + 0.007618502713739872, + 0.013442627154290676, + -0.01619502156972885, + 0.05009051412343979, + -0.014773203991353512, + -0.006918999366462231, + -0.027782443910837173, + -0.0264594703912735, + 0.0147123783826828, + 0.04236556589603424, + 0.010180813260376453, + 0.017533201724290848, + -0.016894524917006493, + -0.01969253644347191, + -0.023159639909863472, + -0.0027828062884509563, + 0.010766267776489258, + 0.024923603981733322, + -0.038381438702344894, + 0.014788410626351833, + -0.018171878531575203, + 0.01206643134355545, + -0.016894524917006493, + -0.01981418952345848, + -0.04157482460141182, + 0.009709409438073635, + 0.01805022545158863, + -0.04245680570602417, + 0.0024881786666810513, + 0.014043288305401802, + -0.04537647217512131, + 0.0016727251932024956, + 0.002292393706738949, + -0.027295833453536034, + 0.003246607491746545, + 0.0013638412347063422, + 0.03058045729994774, + -0.05130704119801521, + -0.005455364938825369, + -0.017578819766640663, + 0.03266375884413719, + -0.005630240775644779, + 0.02521253004670143, + -0.015237005427479744, + 0.012340149842202663, + 0.02353980392217636, + 0.016301466152071953, + 0.024436993524432182, + -0.0008501435513608158, + -0.007588089443743229, + -0.029744094237685204, + 0.00649321498349309, + 0.02255137637257576, + 0.017609233036637306, + -0.012940810061991215, + 0.006394371856004, + 0.016255846247076988, + -0.02381352335214615, + -0.027006907388567924, + -0.014225766994059086, + 0.01274312473833561, + -0.0036914001684635878, + 0.0061282566748559475, + 0.004428919870406389, + 0.010066764429211617, + -0.029774507507681847, + 0.0006990280235186219, + -0.019570883363485336, + 0.018582455813884735, + -0.003054624190554023, + 0.006713710259646177, + 0.0016347087221220136, + -0.0016157004283741117, + -0.03756028413772583, + 0.0012450397480279207, + -0.01912989281117916, + -0.017335515469312668, + -0.010895523242652416, + 0.009260814636945724, + -0.003018508665263653, + -0.020346419885754585, + -0.006983627565205097, + -0.011245274916291237, + 0.019038653001189232, + -0.00017071775801014155, + 0.009329244494438171, + -0.009283624589443207, + -0.016058161854743958, + -0.03962837904691696, + 0.012568248435854912, + -0.01068263128399849, + 0.01324494183063507, + -0.002951979637145996, + 0.023296499624848366, + -0.012689901515841484, + -0.012674694880843163, + 0.05903198942542076, + -0.008895856328308582, + -0.0030907399486750364, + -0.010218829847872257, + -0.01607336848974228, + -0.009101145900785923, + -0.024193687364459038, + -0.010059161111712456, + 0.005436356645077467, + -0.023418152704834938, + 0.002906359964981675, + -0.01805022545158863, + 0.0006367760361172259, + 0.012811553664505482, + 0.004930737428367138, + 0.0285427737981081, + 0.017213862389326096, + -0.027098147198557854, + 0.0016261549899354577, + 0.024148069322109222, + 0.01902344636619091, + 0.005679662339389324, + -0.05580819398164749, + 0.012659488245844841, + -0.027022114023566246, + -0.0031686737202107906, + 0.0019749561324715614, + 0.01891699992120266, + -0.03226839005947113, + 0.0195100586861372, + -0.021243609488010406, + 0.02726542018353939, + -0.033302437514066696, + 0.02864922024309635, + -0.0076831309124827385, + -0.0007071065483614802, + -0.014111717231571674, + -0.028998970985412598, + 0.019342785701155663, + -0.02430013380944729, + -0.025866413488984108, + -0.010401309467852116, + -0.02207997255027294, + 0.017092209309339523, + -0.00784660130739212, + -0.005021977238357067, + -0.004014540463685989, + 0.020939476788043976, + 0.0001069213540176861, + -0.003560243407264352, + 0.011982794851064682, + 0.034975163638591766, + 0.02694608084857464, + 0.0031477645970880985, + 0.027387073263525963, + 0.013374198228120804, + 0.001542518730275333, + 0.053861748427152634, + -0.015465104021131992, + -0.005786108318716288, + -0.02969847433269024, + -0.026337817311286926, + 0.04081449285149574, + 0.004444126505404711, + -0.014803617261350155, + -0.0077705685980618, + -0.01230213325470686, + 0.03184260427951813, + 0.00037066068034619093, + 0.00022833648836240172, + 0.02725021354854107, + 0.03454937785863876, + 0.009975524619221687, + 0.029485581442713737, + -0.013100478798151016, + 0.009146764874458313, + -0.027417486533522606, + 0.00683916499838233, + 0.010294863022863865, + 0.037225738167762756, + 0.019844602793455124, + -0.0070064375177025795, + 0.040449533611536026, + 0.03889846429228783, + -0.002932971576228738, + -0.001924584386870265, + -0.010500151664018631, + 0.04032788425683975, + 0.013670726679265499, + 0.019190719351172447, + 0.010446928441524506, + 0.012629074975848198, + -0.03169053792953491, + -0.021821459755301476, + 0.03473185747861862, + 0.013465437106788158, + 0.01871931552886963, + -0.012332546524703503, + 0.021228402853012085, + 0.011078002862632275, + 0.003056525019928813, + -0.01152659673243761, + 0.0195100586861372, + -0.04552853852510452, + 0.058575794100761414, + -0.003702805144712329, + -0.0001787962537491694, + 0.021988732740283012, + -0.019844602793455124, + -0.0025661124382168055, + -0.01576923578977585, + -0.023190053179860115, + 0.0071280901320278645, + -0.011952381581068039, + 0.016848905012011528, + -0.024862777441740036, + 0.016103781759738922, + 0.01646873913705349, + 0.007375197019428015, + -0.00718131335452199, + -0.005155034828931093, + -0.0007332428940571845, + -0.007732552010565996, + -0.008249576203525066, + 0.012560645118355751, + 0.05726802721619606, + -0.01589088886976242, + 0.022673029452562332, + -0.011503786779940128, + 0.0177460927516222, + 0.03686077892780304, + 0.01358709018677473, + -0.004615200683474541, + 0.006238504312932491, + 0.015632376074790955, + 0.020954683423042297, + 0.016848905012011528, + -0.016331879422068596, + 0.01628625951707363, + -0.014742790721356869, + -0.013860808685421944, + 0.0003535532741807401, + 0.03363698348402977, + -0.03655664622783661, + 0.013442627154290676, + 0.0012497918214648962, + 0.02030079998075962, + -0.019829396158456802, + 0.028679633513092995, + -0.013701139949262142, + 0.023190053179860115, + 0.03424524515867233, + -0.023570217192173004, + 0.007816188037395477, + 0.014446262270212173, + -0.0014493783237412572, + -0.0034728054888546467, + -0.0009584905346855521, + -0.0025452033150941133, + 0.010796680115163326, + 0.0031059463508427143, + -0.006770735140889883, + -0.021517328917980194, + -0.020331213250756264, + -0.033484917134046555, + 0.01803501881659031, + 0.001017891219817102, + -0.0076831309124827385, + 0.005729083437472582, + 0.003303632140159607, + -0.009390071034431458, + -0.004771068226546049, + -0.026930874213576317, + -0.005736686754971743, + -0.010621804744005203, + 0.025759967043995857, + -0.008713377639651299, + -0.009846268221735954, + 0.012264116667211056, + -0.019449232146143913, + 0.014780807308852673, + -0.010317672975361347, + -0.04522440582513809, + -0.022277656942605972, + -0.001334378495812416, + -0.03430607169866562, + 0.002182146068662405, + -0.010119986720383167, + -0.02274906262755394, + -0.039658792316913605, + 0.006268917582929134, + -0.008599327877163887, + 0.011845935136079788, + 0.018065432086586952, + 0.0062993308529257774, + 0.024436993524432182, + 0.036434996873140335, + 0.023904763162136078, + -0.013389404863119125, + 0.0058051166124641895, + 0.018293529748916626, + 0.03689119219779968, + -0.00897949282079935, + -0.0014037585351616144, + -0.02165418677031994, + -0.025273356586694717, + -0.02726542018353939, + 0.019297165796160698, + 0.0019749561324715614, + -0.014628741890192032, + 0.018871381878852844, + -0.00460759736597538, + 0.04215267300605774, + -0.025668727234005928, + -0.00673652021214366, + -0.010325276292860508, + -0.01805022545158863, + -0.021699806675314903, + 0.0065540410578250885, + 0.005478174891322851, + 0.012271719984710217, + -0.022901127114892006, + 0.013161305338144302, + -0.0059799924492836, + 0.01220329012721777, + -0.01637749932706356, + 0.0002832227910403162, + -0.0011281390907242894, + 0.046836305409669876, + 0.016134195029735565, + -0.024482613429427147, + -0.02648988366127014, + 0.020179148763418198, + -0.024436993524432182, + 0.04017581790685654, + 0.007044453639537096, + -0.054074641317129135, + 0.015617170371115208, + 0.013914031907916069, + 0.007515858393162489, + -0.030245911329984665, + 0.032511692494153976, + -0.018354356288909912, + 0.006405776832252741, + 0.0072801560163497925, + -0.003210491733625531, + -0.01607336848974228, + 0.005744290072470903, + 0.011564613319933414, + 0.04610638692975044, + 0.02471071295440197, + -0.006778338458389044, + 0.043004244565963745, + 0.030747730284929276, + 0.03625251725316048, + 0.020650552585721016, + -0.02276426926255226, + -0.02430013380944729, + 9.438779670745134e-5, + -0.029181450605392456, + -0.049482252448797226, + -0.01596692204475403, + -0.025714347139000893, + -0.0440991185605526, + 0.03038277104496956, + -0.010165606625378132, + 0.018171878531575203, + -0.04023664444684982, + 0.04105779901146889, + -0.022673029452562332, + -0.028071369975805283, + -0.009450896643102169, + 0.006592057645320892, + 0.0179589856415987, + 0.00691139604896307, + 0.04069283977150917, + 0.010089574381709099, + -0.03734739124774933, + -0.004063961561769247, + -0.0011794613674283028, + -0.006816355045884848, + 0.020939476788043976, + 0.019281959161162376, + -0.014598328620195389, + 0.027904096990823746, + 0.03892887756228447, + 0.0058545381762087345, + -0.012469405308365822, + -0.028010543435811996, + 0.008348419331014156, + -0.027387073263525963, + 0.025957653298974037, + -0.009572549723088741, + -0.010720647871494293, + -0.021213196218013763, + 0.0239199697971344, + -0.009367261081933975, + -0.0018590058898553252, + 0.009496516548097134, + 0.005474373232573271, + 0.024482613429427147, + 0.016848905012011528, + 0.0008316105231642723, + 0.016164608299732208, + 0.014773203991353512, + 0.00701023917645216, + 0.021517328917980194, + -4.181812983006239e-5, + 0.008348419331014156, + 0.01960129663348198, + 0.009017509408295155, + 0.005158836487680674, + -0.013754362240433693, + 0.01138213463127613, + -0.009146764874458313, + 0.020179148763418198, + -0.0032142933923751116, + 0.04047994688153267, + -0.027006907388567924, + -0.007861807942390442, + -0.02863401360809803, + 0.016803285107016563, + 0.0017953283386304975, + -0.046623412519693375, + 0.005960984155535698, + -0.01576923578977585, + -0.01814146526157856, + -0.010043954476714134, + 0.008812219835817814, + 0.021806253120303154, + 0.020163942128419876, + 0.049086879938840866, + 0.03841185197234154, + 0.008158336393535137, + 0.010522961616516113, + 0.01773088611662388, + -0.034762270748615265, + 0.023889556527137756, + -0.004109581466764212, + 0.02246013656258583, + 0.011427754536271095, + 0.0021574352867901325, + 0.02293154038488865, + 0.019540471956133842, + -0.037621110677719116, + -0.0077857752330601215, + -0.0021479311399161816, + -0.009732219390571117, + 0.004755861591547728, + 0.031903430819511414, + -0.00185615464579314, + 0.01265188492834568, + -0.003797846380621195, + 0.003259913297370076, + -0.014195353724062443, + 0.03786441311240196, + 0.006934206001460552, + -0.008029080927371979, + 0.001914129825308919, + -0.027387073263525963, + -0.025364596396684647, + -0.002282889559864998, + 0.00471024215221405, + 0.0017297498416155577, + -0.01118444837629795, + -0.003174376208335161, + -0.021258816123008728, + 0.004934539087116718, + -0.005117018241435289, + 0.010158003307878971, + -0.0004578609950840473, + -0.008477674797177315, + 0.005793711636215448, + 0.007648915983736515, + 0.0008838831563480198, + -0.030732523649930954, + -0.01627105288207531, + 0.00896428618580103, + 0.00025566082331351936, + -0.023843936622142792, + 0.006132058333605528, + 0.023159639909863472, + 0.0073599908500909805, + -0.03920259326696396, + -0.021532535552978516, + -0.01402047835290432, + 0.046714652329683304, + -0.04482903331518173, + 0.02685484103858471, + 0.020635345950722694, + 0.01460593193769455, + 0.007306767627596855, + 0.010173209942877293, + 0.005459166597574949, + -0.019570883363485336, + -0.011207258328795433, + 0.034154005348682404, + 0.02019435539841652, + 0.00580891827121377, + -0.017609233036637306, + -0.01553353387862444, + -0.004904125817120075, + 0.005413546692579985, + -0.00196165032684803, + 0.024482613429427147, + 0.007025445811450481, + 0.004919332452118397, + -0.0031059463508427143, + -0.015601963736116886, + -0.02039203979074955, + 0.003626772202551365, + 0.012659488245844841, + 0.003058425849303603, + -0.00041200360283255577, + -0.0004136668285354972, + 0.002389335772022605, + 0.02039203979074955, + 0.0005949579062871635, + -0.01014279667288065, + 0.0002922517014667392, + -0.01824790984392166, + -0.003075533313676715, + -0.016544772312045097, + 0.006173876579850912, + 0.02404162287712097, + -0.0070786685682833195, + -0.008432055823504925, + 0.0060066040605306625, + 0.027006907388567924, + 0.021593360230326653, + -0.008987096138298512, + -0.027204593643546104, + -0.004200821276754141, + -0.006592057645320892, + -0.010089574381709099, + -0.019388405606150627, + 0.00907073263078928, + 0.02422410063445568, + 0.01255304180085659, + -0.007877014577388763, + 0.0031914834398776293, + 0.009496516548097134, + 0.009960317984223366, + 0.024543439969420433, + -0.000852044380735606, + 0.01000593788921833, + -0.0230379868298769, + 0.01093353983014822, + -0.02422410063445568, + -0.009793044999241829, + -0.022019146010279655, + 0.002087104832753539, + -0.016149401664733887, + 0.006827760022133589, + -0.024193687364459038, + 0.005626439116895199, + -0.024482613429427147, + -0.019844602793455124, + -0.017031382769346237, + -0.009359657764434814, + -0.03097582794725895, + 0.00017998427210841328, + 0.03981085866689682, + -0.02539500966668129, + -0.020665759220719337, + -0.011245274916291237, + -0.03384987264871597, + -0.0054515632800757885, + -0.009329244494438171, + 0.018095845356583595, + -0.03178177773952484, + 0.0012497918214648962, + 0.017122622579336166, + -0.007652717642486095, + -0.037621110677719116, + 0.024756332859396935, + 0.03281582519412041, + -0.008074700832366943, + -0.03321119770407677, + -0.019570883363485336, + 0.0034157808404415846, + -0.03993251174688339, + -0.0015548740047961473, + 0.012226100079715252, + -0.007318172603845596, + 0.04382539913058281, + 0.03619169071316719, + 0.033697810024023056, + -0.014537502080202103, + -0.04546771198511124, + -0.01402808167040348, + 0.022323276847600937, + -0.013511057011783123, + -0.03856391832232475, + -0.024163275957107544, + -0.01151899341493845, + 0.02449782006442547, + 0.022323276847600937, + 0.016438325867056847, + -0.023707076907157898, + 0.003725615097209811, + 0.04047994688153267, + -0.016848905012011528, + -0.015647582709789276, + 0.006865776609629393, + -0.006318339146673679, + -0.01785253919661045, + 0.003911895677447319, + 0.0019882619380950928, + -0.005911562591791153, + 0.0029633846133947372, + 0.00444032484665513, + -0.00863734446465969, + -0.024862777441740036, + -0.01824790984392166, + -0.018977826461195946, + 0.005801314953714609, + -0.004558175802230835, + -0.015214195474982262, + -0.06563165038824081, + -0.011108415201306343, + -0.008827426470816135, + 0.019570883363485336, + 0.017031382769346237, + -0.0016755764372646809, + 0.000785515527240932, + 0.0116254398599267, + -0.021426089107990265, + -0.0007916932227090001, + 0.02930310368537903, + -0.02206476591527462, + 0.00546296825632453, + 0.028086576610803604, + -0.005580819211900234, + -0.0003188632254023105, + 0.005615034140646458, + -0.00041414203587919474, + 0.029728887602686882, + -0.009526929818093777, + -0.010393706150352955, + 0.022003939375281334, + 0.026839634403586388, + -0.011351721361279488, + -0.01205882802605629, + 0.0460759736597538, + -0.01981418952345848, + -0.004793878179043531, + -0.010522961616516113, + -0.03129516541957855, + -0.005075199995189905, + 0.013222131878137589, + -0.010789076797664165, + -0.022596996277570724, + -0.006192884873598814, + 0.01460593193769455, + 0.005485778208822012, + -0.012119653634727001, + 0.029789714142680168, + 0.01970774307847023, + 0.008994699455797672, + 0.018460802733898163, + 0.0005536149838007987, + -0.008394039236009121, + -0.015411880798637867, + -0.02568393386900425, + 0.016134195029735565, + -0.03311995789408684, + 0.008318006061017513, + 0.01628625951707363, + 0.027098147198557854, + -0.0024805753491818905, + -0.015708409249782562, + -0.023707076907157898, + -0.003987928852438927, + 0.015373865142464638, + 0.00605602515861392, + -0.027478313073515892, + 0.02343335933983326, + 0.026809222996234894, + 0.06739562004804611, + 0.02353980392217636, + 0.005843133199959993, + -0.00013626532745547593, + -0.019570883363485336, + 0.019281959161162376, + 0.02528856322169304, + 0.0204984862357378, + 0.043490853160619736, + -0.015335848554968834, + 0.007576684467494488, + 0.005759496707469225, + -0.020270386710762978, + 0.016985762864351273, + -0.003953713923692703, + 0.030960621312260628, + -0.0004980158992111683, + 0.01092593651264906, + -0.005337513983249664, + -0.002066195709630847, + -0.03263334557414055, + 0.004687432199716568, + -0.009032716043293476, + -0.008226766251027584, + -0.012286926619708538, + -0.01484923716634512, + 0.004322473891079426, + -0.016544772312045097, + 0.010675027966499329, + -0.0017506589647382498, + 0.04215267300605774, + 0.006219496019184589, + 0.015632376074790955, + 0.025912033393979073, + -0.021623773500323296, + 0.06100884824991226, + -0.02559269405901432, + 0.023646250367164612, + 0.0013457834720611572, + -0.010393706150352955, + 0.013837998732924461, + -0.012606265023350716, + 0.009344451129436493, + -0.029485581442713737, + 0.0029006574768573046, + 0.012119653634727001, + 0.005786108318716288, + -0.01627105288207531, + -0.017107415944337845, + -0.0186280757188797, + 0.013290561735630035, + -0.019570883363485336, + -0.035735491663217545, + 0.0005374579923227429, + -0.02638343721628189, + 0.011078002862632275, + -0.01137453131377697, + -0.024376166984438896, + -0.01686411164700985, + 0.0005925818695686758, + -0.001457932055927813, + 0.05079001933336258, + 0.010773870162665844, + -0.017533201724290848, + -0.01332857832312584, + 0.018308736383914948, + -0.0058545381762087345, + -0.02048327960073948, + -0.003938507288694382, + 0.028162607923150063, + -0.005489579867571592, + -0.018019812181591988, + 0.000690474349539727, + 0.0035944583360105753, + -0.01873452216386795, + 0.010986763052642345, + 0.04047994688153267, + 0.003735119244083762, + 0.0220495592802763, + -0.033484917134046555, + 0.005474373232573271, + 0.00911635160446167, + -0.019677329808473587, + 0.02717418037354946, + -0.014180147089064121, + -0.004793878179043531, + -0.00956494640558958, + 0.005272885784506798, + 0.000704255304299295, + 0.00035070203011855483, + -0.011230068281292915, + 0.003410078352317214, + 0.0008487179293297231, + 0.002659252844750881, + -0.02382872998714447, + -0.025182116776704788, + -0.016438325867056847, + 0.008804616518318653, + 0.0008696269942447543, + -0.002465368714183569, + -0.006124455016106367, + 0.004136193078011274, + 0.01314609870314598, + -0.02244492992758751, + 0.0323900431394577, + 0.008751394227147102, + -0.022292863577604294, + 0.012089241296052933, + -0.008758997544646263, + -0.008006270974874496, + 0.0058051166124641895, + 0.00401834212243557, + -0.0021878485567867756, + -0.014339816756546497, + -0.014689568430185318, + -0.009131558239459991, + 0.008660154417157173, + 0.011138828471302986, + 0.012948413379490376, + -0.015282625332474709, + 0.005599827505648136, + 0.025060463696718216, + 0.000733718101400882, + 0.025562280789017677, + 0.017776506021618843, + -0.006622470915317535, + -0.0014816923066973686, + 0.00018734997138381004, + -0.0023266086354851723, + 0.0016394606791436672, + 0.0167576652020216, + 0.025957653298974037, + -0.002140327822417021, + -0.011739489622414112, + -0.011123621836304665, + 0.0006961767794564366, + 0.03695201873779297, + 0.017700472846627235, + -0.03905053064227104, + -0.0075120567344129086, + 0.003313136287033558, + -0.024543439969420433, + 0.01460593193769455, + 0.02068096585571766, + -0.005082803312689066, + 0.0033264420926570892, + -0.04963431879878044, + 0.007877014577388763, + 0.006257512606680393, + -0.027569551020860672, + 0.00862974114716053, + 0.014088907279074192, + 0.010811886750161648, + -0.012925603426992893, + 0.018065432086586952, + 0.0018713612807914615, + 0.014218163676559925, + 0.004561977460980415, + 0.0070596602745354176, + -0.021897492930293083, + 0.033393677324056625, + -0.0014550808118656278, + 0.02001187577843666, + -0.014256180264055729, + 0.011123621836304665, + 0.019388405606150627, + 0.01783733256161213, + -0.05322307348251343, + -0.01014279667288065, + 0.007409411948174238, + 0.007675527594983578, + 0.00453156465664506, + -0.008089907467365265, + -0.011237671598792076, + -0.010424119420349598, + -0.002763798227533698, + 0.03521846607327461, + -0.020863445475697517, + 0.036222103983163834, + -0.005565612576901913, + -0.00391949899494648, + -0.014567915350198746, + -0.03576590493321419, + 0.002028179354965687, + 0.024969223886728287, + 0.0315384715795517, + -0.026064099743962288, + -0.007139495108276606, + 0.002054790733382106, + 0.01989022269845009, + 0.019357992336153984, + -0.013054859824478626, + -0.013298165053129196, + 0.006709908600896597, + 0.004390903282910585, + 0.007557676173746586, + 0.010659821331501007, + 0.0017202456947416067, + 0.015275022014975548, + -0.0012440893333405256, + -0.017031382769346237, + 0.0021099147852510214, + 0.0024235507007688284, + -0.05243232846260071, + 0.020042289048433304, + -0.0069266026839613914, + -0.004394704941660166, + 0.010507754981517792, + 0.04498109966516495, + -0.03030673786997795, + -0.002191650215536356, + 0.0026820627972483635, + -1.6112453522509895e-5, + 0.006770735140889883, + 0.018019812181591988, + 0.007283957675099373, + -0.020924270153045654, + -0.02404162287712097, + 0.029652854427695274, + -0.0071280901320278645, + 0.0012013207888230681, + -0.0004559601657092571, + -0.028953351080417633, + 0.02469550631940365, + 0.005166439805179834, + -0.0012868578778579831, + 0.0059571824967861176, + 0.0035982599947601557, + 0.022992366924881935, + -0.0013600395759567618, + 0.014453865587711334, + 0.02404162287712097, + 0.03968920558691025, + -0.011845935136079788, + 0.0027181783225387335, + 0.0017696671420708299, + 0.008158336393535137, + 0.008698171004652977, + 0.004052557051181793, + 0.010781473480165005, + 0.015381468459963799, + -0.014765600673854351, + -0.035826731473207474, + -0.012636678293347359, + -0.015571550466120243, + -0.0002473447239026427, + -0.005272885784506798, + 0.004793878179043531, + -0.009473706595599651, + -0.015229402109980583, + -0.004280655644834042, + -0.010621804744005203, + -7.632996857864782e-5, + -0.021304436028003693, + -0.004577184095978737, + 0.005158836487680674, + 0.03305913135409355, + -0.0241328626871109, + -0.0029766904190182686, + -0.025227736681699753, + 0.0057252817787230015, + 0.005310902372002602, + 0.012933206744492054, + 0.025349389761686325, + -0.04294341802597046, + -0.02107633650302887, + 0.012416183017194271, + -0.00897949282079935, + 0.003457598853856325, + -0.004831894766539335, + -0.000500391935929656, + 0.04920853301882744, + 0.013457833789288998, + 0.016590392217040062, + 0.009397674351930618, + -0.018278323113918304, + -4.134292248636484e-5, + -0.015617170371115208, + -0.002721979981288314, + -0.004599994048476219, + 0.015252212062478065, + 0.027082940563559532, + -0.009777838364243507, + 0.0006054124678485096, + 0.010401309467852116, + 0.012933206744492054, + 0.010956349782645702, + 0.029561614617705345, + 0.034366898238658905, + -0.016255846247076988, + -0.028390707448124886, + 0.02069617249071598, + 0.0054021417163312435, + -0.003590656677260995, + 0.010234036482870579, + 0.03448855131864548, + 0.0023018978536128998, + 0.018293529748916626, + -0.032907065004110336, + -0.020452866330742836, + -0.02510608360171318, + -0.000814027909655124, + -0.00012034592509735376, + 0.0310822743922472, + -0.015921302139759064, + 0.019388405606150627, + 0.0012507422361522913, + -0.017533201724290848, + 0.0094204843044281, + -0.03187301754951477, + 0.01048494502902031, + -0.00941288098692894, + -0.021593360230326653, + 0.028512360528111458, + -0.023372532799839973, + 0.0074018086306750774, + -0.00021609992836602032, + -0.007869411259889603, + 0.004934539087116718, + -0.006759330164641142, + -0.004565779119729996, + -0.010986763052642345, + -0.016590392217040062, + -0.026794016361236572, + -0.02597285993397236, + -0.003389169229194522, + -0.010104780085384846, + 0.004185614641755819, + 0.0038244579918682575, + -0.0018922702874988317, + -0.01805022545158863, + -0.017533201724290848, + 0.014256180264055729, + 0.004166606348007917, + 0.00494974572211504, + 0.006002802401781082, + -0.03491433709859848, + 0.011853538453578949, + -0.016225434839725494, + -0.0011167341144755483, + -0.008774204179644585, + 0.016164608299732208, + -0.012256513349711895, + 0.03993251174688339, + -0.02510608360171318, + 0.017229069024324417, + 0.007751560304313898, + 0.03287665173411369, + 0.009481309913098812, + -0.03117351420223713, + -0.03610045090317726, + 0.007200321648269892, + 0.0026307404041290283, + -0.014902460388839245, + -0.017031382769346237, + -0.02109154313802719, + -0.002216360764577985, + 0.04823531210422516, + -0.002163137774914503, + 0.017077002674341202, + -0.004911729134619236, + -0.0009580153273418546, + -0.01299403328448534, + -0.013161305338144302, + -0.026505090296268463, + 0.016833698377013206, + -0.017016176134347916, + -0.002389335772022605, + 0.0038700776640325785, + 0.004972555674612522, + 0.010462135076522827, + -0.0030128061771392822, + -0.0019283859292045236, + -0.001865658792667091, + 0.0374690443277359, + -0.018810555338859558, + 0.014461468905210495, + -0.025030050426721573, + 0.020650552585721016, + -0.017517995089292526, + -0.016392705962061882, + -0.006679495796561241, + 0.00453156465664506, + -0.01727468892931938, + 0.0035032187588512897, + 0.0007764865877106786, + 0.026307404041290283, + -0.020316006615757942, + 0.0013980560470372438, + 0.011693869717419147, + 0.01494808029383421, + -0.01116924174129963, + 0.03366739675402641, + -0.010629408061504364, + 0.022384103387594223, + 0.010211226530373096, + -0.014035684987902641, + 0.003218095051124692, + -0.02784327045083046, + 0.026018479838967323, + -0.003949912264943123, + 0.017305102199316025, + -0.03284623846411705, + 0.012857173569500446, + -0.0038605735171586275, + 0.015617170371115208, + 0.040358297526836395, + -0.02068096585571766, + -0.025912033393979073, + -0.021152369678020477, + -0.01298642996698618, + 0.004318672232329845, + -0.008363625966012478, + -0.0034347891341894865, + 0.00018473633099347353, + -0.010287259705364704, + -0.012591058388352394, + -0.0048737130127847195, + 0.00674412352964282, + -0.008599327877163887, + 0.03229880332946777, + -0.030534837394952774, + -0.020833032205700874, + 0.014940476976335049, + 0.03588755801320076, + -0.027569551020860672, + -0.000547912553884089, + -0.02264261618256569, + 0.011351721361279488, + 0.03412359207868576, + -0.03640458360314369, + 0.024056829512119293, + -0.027584757655858994, + 0.015571550466120243, + 0.0119599848985672, + -0.011876348406076431, + -0.012925603426992893, + -0.011009573005139828, + 0.019297165796160698, + -0.006394371856004, + 0.00725354440510273, + -0.011252878233790398, + -0.020072702318429947, + -0.008135526441037655, + 0.003666689619421959, + -0.021623773500323296, + 0.0015301633393391967, + 0.015138162299990654, + -0.0015026014298200607, + -0.003972722217440605, + -0.017867745831608772, + 0.0060788351111114025, + -0.007154701743274927, + 0.0041894163005054, + -0.001943592564202845, + -0.008394039236009121, + 0.004120986443012953, + -0.00034975161543115973, + -0.02069617249071598, + 0.008644947782158852, + -0.015510723926126957, + -0.009717012755572796, + -0.00244065816514194, + -0.01900823973119259, + 0.006709908600896597, + 0.009085939265787601, + -0.004216027911752462, + -0.005117018241435289, + -0.02864922024309635, + -0.0024786745198071003, + 0.003991730511188507, + 0.01176990196108818, + 0.017806919291615486, + 0.0068049500696361065, + 0.02528856322169304, + -0.001762063824571669, + 0.01220329012721777, + 0.0010416515870019794, + -0.01485684048384428, + -0.013997668400406837, + -0.00770213920623064, + -0.006268917582929134, + -0.01999666914343834, + 0.0030432192143052816, + -0.0004421791818458587, + 0.09324682503938675, + -0.005326109007000923, + -0.006504619959741831, + -0.00048993737436831, + 0.002636442892253399, + -0.028010543435811996, + 0.008842633105814457, + 0.004120986443012953, + 0.017517995089292526, + 0.0032352025154978037, + -0.02501484379172325, + -0.028512360528111458, + 0.0167576652020216, + 0.010196019895374775, + -0.030276324599981308, + -0.0011385936522856355, + 0.003054624190554023, + 0.030276324599981308, + 0.010773870162665844, + 0.004771068226546049, + 0.006219496019184589, + -0.023996002972126007, + -0.015617170371115208, + 0.038290198892354965, + -0.00371421012096107, + 0.012568248435854912, + -0.0010540069779381156, + -0.0017554110381752253, + 0.012826760299503803, + 0.022870713844895363, + 0.001723096938803792, + 0.006333545781672001, + -0.0010996266501024365, + -0.007580486126244068, + -0.0026231370866298676, + 0.008219162933528423, + 0.006934206001460552, + 0.0016869812970981002, + -0.002695368370041251, + 0.01716824248433113, + 0.004869911354035139, + -0.0029576821252703667, + 0.024832366034388542, + 0.02489319071173668, + 0.003353053703904152, + -0.025379803031682968, + -0.008203956298530102, + -0.0018979727756232023, + 0.008956682868301868, + 0.002379831625148654, + -0.01576923578977585, + -0.013693536631762981, + 0.016499152407050133, + 0.0014313204446807504, + 0.012142463587224483, + 0.0052804891020059586, + 0.02098509669303894, + -0.006162471603602171, + -0.0008192551322281361, + 0.000814978324342519, + -0.028177814558148384, + 0.0007071065483614802, + -0.0186280757188797, + -0.013974858447909355, + -0.004748258274048567, + -0.008447262458503246, + -0.012940810061991215, + -0.006938007660210133, + -0.003904292592778802, + -0.0019844602793455124, + -0.000991279724985361, + 0.0038358629681169987, + -0.0011557010002434254, + -0.02714376710355282, + -0.0031192521564662457, + 0.015229402109980583, + -0.0013847503578290343, + 0.03178177773952484, + 0.004216027911752462, + -0.001513055874966085, + 0.0158756822347641, + 0.00872098095715046, + -0.00042530937935225666, + -0.019677329808473587, + -0.011709076352417469, + 0.0080442875623703, + 0.00784660130739212, + -0.01882576197385788, + 0.005778505001217127, + -0.03284623846411705, + -0.017396342009305954, + 0.007485445123165846, + -0.00337206176482141, + -0.006816355045884848, + -0.0017202456947416067, + 0.0032333016861230135, + -0.023691870272159576, + -0.012119653634727001, + 0.013670726679265499, + -0.005550405941903591, + 0.011359324678778648, + 0.02186707966029644, + -0.010135193355381489, + -0.003358755959197879, + 0.014796013943850994, + -0.013655520044267178, + 0.023266086354851723, + 0.013944445177912712, + -0.02215600572526455, + -0.009504119865596294, + -0.001200370374135673, + -0.014210560359060764, + -0.01677287183701992, + 0.013625106774270535, + -0.014035684987902641, + 0.015662789344787598, + 0.006546437740325928, + -0.009686599485576153, + -0.012036018073558807, + -0.019342785701155663, + -0.01485684048384428, + 0.010956349782645702, + 0.006344950757920742, + 0.0007408461533486843, + 0.00783899798989296, + -0.0014313204446807504, + -0.0024159473832696676, + -0.005691067315638065, + -0.02305319346487522, + -0.006976024247705936, + 0.0038358629681169987, + 0.006550239399075508, + 0.013511057011783123, + -0.0058051166124641895, + 0.012172876857221127, + -0.007302965968847275, + -0.010994366370141506, + -0.001200370374135673, + 0.02677880972623825, + -0.008059494197368622, + 0.009572549723088741, + 0.004493548069149256, + 0.00639817351475358, + 0.026885254308581352, + 0.010051557794213295, + 0.027508724480867386, + -0.014902460388839245, + -0.016818491742014885, + -7.692397048231214e-5, + 0.0020319807808846235, + 0.020270386710762978, + -0.027706410735845566, + 0.009739822708070278, + -0.016985762864351273, + 0.007291560992598534, + 0.003048921702429652, + -0.018019812181591988, + 0.024908397346735, + -0.015556343831121922, + -0.002847434487193823, + -0.007629907689988613, + -0.0010806184727698565, + -0.012438992038369179, + -0.012043621391057968, + 0.003949912264943123, + -0.006265115924179554, + 0.01853683590888977, + 0.012583455070853233, + 0.0046532172709703445, + -0.0010407011723145843, + -0.013062463141977787, + -0.00863734446465969, + -0.0009223748347721994, + -0.03689119219779968, + 0.0028721450362354517, + 0.001999666914343834, + -0.010066764429211617, + -0.003911895677447319, + -0.030656490474939346, + 0.013936841860413551, + -0.005341315641999245, + -0.010994366370141506, + 0.01210444699972868, + 0.011207258328795433, + 0.007740155328065157, + -0.008333212696015835, + 0.011663456447422504, + -0.009831061586737633, + -0.007238337770104408, + 0.00512462155893445, + -0.014963286928832531, + 0.016636012122035027, + -0.013077669776976109, + 0.0033074337989091873, + -0.030154671519994736, + -0.007321974262595177, + 0.016924936324357986, + 0.013465437106788158, + -0.01308527309447527, + -0.0009204740636050701, + 0.004463134799152613, + -0.0015681798104196787, + 0.009192384779453278, + 0.0102492431178689, + 0.006143463309854269, + -0.026337817311286926, + -0.0052918940782547, + -0.008257179521024227, + -0.011351721361279488, + -0.0006453297683037817, + -0.017487581819295883, + -0.027797650545835495, + 0.01576923578977585, + -0.0016537168994545937, + -0.0033397478982806206, + -0.00794544443488121, + 0.012172876857221127, + 0.010477341711521149, + 0.016042955219745636, + 0.017594026401638985, + 0.01657518558204174, + 0.015229402109980583, + 0.021334849298000336, + -0.008234369568526745, + -0.019190719351172447, + 0.006880982778966427, + 0.00921519473195076, + 0.007667924277484417, + 0.01049254834651947, + -0.009192384779453278, + 0.034458138048648834, + -0.011100811883807182, + -0.01952526532113552, + 0.021897492930293083, + -1.8622135030454956e-5, + 0.046623412519693375, + 0.004565779119729996, + -0.01274312473833561, + 0.013123288750648499, + 0.007629907689988613, + 0.017320308834314346, + -0.006090240087360144, + -0.015016510151326656, + -0.0013638412347063422, + 0.005968587473034859, + -0.0047748698852956295, + 0.006675694137811661, + -0.003259913297370076, + 0.01176229864358902, + -2.929942093032878e-5, + -0.009610566310584545, + -0.0053793322294950485, + -0.002531897509470582, + 0.03530970588326454, + 0.0035089212469756603, + -0.00862213782966137, + 0.009694202803075314, + -0.002723880810663104, + -0.008226766251027584, + -0.019966255873441696, + -0.010446928441524506, + 0.002617434598505497, + 0.009298831224441528, + -0.01891699992120266, + -0.009253211319446564, + 0.005706273950636387, + -0.022308070212602615, + 0.0018922702874988317, + -0.0050790016539394855, + 0.01646873913705349, + 0.0067251152358949184, + 0.009937508031725883, + 0.017122622579336166, + 0.02274906262755394, + -0.01221089344471693, + 0.004254044033586979, + -0.011549406684935093, + -0.007242139428853989, + 0.0031952850986272097, + -0.01539667509496212, + 0.0007736354018561542, + -0.002227765740826726, + 0.009648582898080349, + -0.020635345950722694, + 0.0076032960787415504, + -0.02312922663986683, + 0.005485778208822012, + 0.022901127114892006, + -0.001744006061926484, + -0.0003756503574550152, + 0.017289895564317703, + -0.01596692204475403, + 0.014621138572692871, + -0.014993700198829174, + 0.0018884686287492514, + 0.019935842603445053, + -0.0065312315709888935, + 0.006124455016106367, + 0.025425422936677933, + 0.005789909977465868, + -0.007899824529886246, + 0.002123220358043909, + 0.0037921438924968243, + -0.02411765605211258, + 0.005322307348251343, + -0.00074749905616045, + 0.006337347440421581, + -0.006717511918395758, + -0.01744196191430092, + 0.0008867344004102051, + 0.002830327022820711, + -0.00471024215221405, + -0.00529569573700428, + -0.01783733256161213, + -0.005204456392675638, + -0.033484917134046555, + 0.0038434662856161594, + 0.025166910141706467, + -0.02217121236026287, + -0.005945777520537376, + -0.010234036482870579, + 0.02353980392217636, + -0.01576923578977585, + 0.010355689562857151, + -0.0059571824967861176, + 0.0003986978263128549, + 0.007831394672393799, + 0.02442178688943386, + 0.0067251152358949184, + -0.02481715939939022, + 0.01529022864997387, + -0.00444032484665513, + -0.01083469670265913, + 0.0010549573926255107, + -0.0059799924492836, + 0.02667236328125, + -0.004181812983006239, + -0.011830728501081467, + -0.01706179603934288, + 0.014575518667697906, + -0.03178177773952484, + 0.01094114314764738, + 0.004216027911752462, + 0.0024121457245200872, + 0.0202855933457613, + 0.007188916672021151, + -0.007808585185557604, + 9.03485415619798e-5, + 0.0285427737981081, + 0.015662789344787598, + 0.0057024722918868065, + -0.006101645063608885, + 0.024634679779410362, + 0.003181979525834322, + -0.0029766904190182686, + -0.01206643134355545, + 0.016848905012011528, + 0.010887919925153255, + -0.01969253644347191, + 0.003864375175908208, + -0.01844559609889984, + 0.006801148410886526, + -0.0211675763130188, + -0.010963953100144863, + 0.026885254308581352, + -0.005090406630188227, + -0.013427420519292355, + 0.014134527184069157, + -0.031629711389541626, + -0.007405610289424658, + -0.010332879610359669, + -0.011686266399919987, + -0.024938810616731644, + -0.01543469075113535, + -0.013868412002921104, + 0.01697055622935295, + -0.00017582622240297496, + -0.0019464438082650304, + -0.010804283432662487, + -0.0054819765500724316, + 0.021821459755301476, + -0.0003925201599486172, + -0.013853205367922783, + -0.014628741890192032, + 0.01519898883998394, + 0.022384103387594223, + 0.02334211952984333, + 0.018095845356583595, + 0.011328911408782005, + -0.02677880972623825, + -0.009009906090795994, + -0.00897949282079935, + 0.00735238753259182, + -0.0032047892455011606, + 0.0019939644262194633, + 0.004930737428367138, + -0.025638313964009285, + 0.029470376670360565, + 0.008249576203525066, + 0.0011499985121190548, + 0.011883951723575592, + -0.006721313577145338, + 0.01554874051362276, + 0.015723615884780884, + 0.012629074975848198, + -0.015617170371115208, + 0.006215694360435009, + 0.01619502156972885, + 0.008614534512162209, + -0.008652551099658012, + 0.004641812294721603, + 0.01392923854291439, + -0.022992366924881935, + 0.008089907467365265, + 0.016012541949748993, + -0.012020811438560486, + 0.011998001486063004, + -0.017533201724290848, + 0.020316006615757942, + -0.00037921438342891634, + 0.018384769558906555, + 0.008804616518318653, + 0.008584121242165565, + 0.003037516726180911, + -0.0016223533311858773, + -0.016347086057066917, + 0.028786079958081245, + -0.00043742713751271367, + -0.0013914031442254782, + 0.018688902258872986, + 0.004592390730977058, + -0.01687931828200817, + -0.02010311558842659, + 0.02080261893570423, + -0.02677880972623825, + 0.0007921684300526977, + 0.027402279898524284, + -0.02343335933983326, + 0.005196853075176477, + 0.012096843682229519, + -0.019266752526164055, + -0.0038244579918682575, + 0.004942142404615879, + 0.010021144524216652, + 0.014210560359060764, + 0.0029937978833913803, + 0.003769333939999342, + 0.02343335933983326, + 0.012233703397214413, + -0.01289519015699625, + -0.0016166508430615067, + 0.020711379125714302, + -0.0041970196180045605, + -0.030823761597275734, + -0.015738822519779205, + -0.013982461765408516, + -0.0042996639385819435, + 0.019251545891165733, + 0.03311995789408684, + -0.03546177223324776, + -0.0071775116957724094, + -0.012659488245844841, + -0.008219162933528423, + 0.0018171877600252628, + -0.013062463141977787, + -0.010446928441524506, + 0.020741792395710945, + 0.014575518667697906, + 0.0006310736062005162, + 0.01128329150378704, + -0.01196758821606636, + 6.409340858226642e-5, + 0.020042289048433304, + -0.0074322219006717205, + 0.02489319071173668, + 0.005310902372002602, + -0.017198655754327774, + 0.020772205665707588, + 0.014522295445203781, + -0.015343451872467995, + -0.01637749932706356, + 0.004862308036535978, + -0.002355121076107025, + 0.0068049500696361065, + 0.023296499624848366, + -0.0047254483215510845, + 0.007515858393162489, + 0.008751394227147102, + -0.0006538834422826767, + 0.01756361313164234, + -0.010112383402884007, + -0.004619002342224121, + 0.006960817612707615, + -0.017685266211628914, + 0.0045011513866484165, + -0.007884617894887924, + -0.013655520044267178, + 0.011792711913585663, + 2.408700493106153e-5, + 0.010119986720383167, + -0.010887919925153255, + -0.007325775921344757, + 0.006801148410886526, + 0.014894857071340084, + 0.017198655754327774, + -0.011199655011296272, + -0.021517328917980194, + 0.007861807942390442, + 0.02323567308485508, + 0.008827426470816135, + -0.005865943152457476, + 0.017198655754327774, + -0.01009717769920826, + 0.017715679481625557, + 0.006284124217927456, + 0.019145099446177483, + 0.0029025583062320948, + -0.014537502080202103, + 0.01596692204475403, + -0.010621804744005203, + -0.0071280901320278645, + -0.009678996168076992, + -0.006953214295208454, + -0.0027695007156580687, + -0.002106113126501441, + 0.010081971064209938, + 0.014453865587711334, + 0.013161305338144302, + 0.018308736383914948, + 0.010811886750161648, + -0.023676663637161255, + -0.0036324746906757355, + -0.002723880810663104, + 0.0008724782383069396, + 0.015951715409755707, + 0.008994699455797672, + 0.014309403486549854, + 0.01034808624535799, + 0.03302871808409691, + 0.006679495796561241, + 0.007462635170668364, + -0.001694584614597261, + 0.0032979296520352364, + -0.0020604932215064764, + -0.017806919291615486, + -0.026930874213576317, + 0.00019697289098985493, + 0.005367927253246307, + 0.008356022648513317, + -0.008409245871007442, + -0.0004621378320734948, + -0.0020490882452577353, + 0.0223688967525959, + 0.002009171061217785, + 0.005113216582685709, + -0.021152369678020477, + -0.006466603372246027, + 0.0028797483537346125, + -0.015168575569987297, + 0.005535199772566557, + -0.006318339146673679, + -0.025744760408997536, + -0.009139161556959152, + 0.008029080927371979, + -0.009542136453092098, + 0.007884617894887924, + 0.024558646604418755, + 0.017670059576630592, + -0.001992063596844673, + 0.02431534044444561, + -0.025166910141706467, + -0.009572549723088741, + -0.003476607147604227, + -0.009329244494438171, + -0.006082636769860983, + 0.00023879102081991732, + -0.010971556417644024, + 0.006782140117138624, + 0.011671059764921665, + -0.0038320613093674183, + 0.003628673031926155, + -0.016818491742014885, + -0.0035032187588512897, + -0.009869078174233437, + 0.009382467716932297, + 0.016742458567023277, + -0.0009689450380392373, + -0.010180813260376453, + 0.0028512361459434032, + -0.02509087696671486, + 0.03126475214958191, + -0.020437659695744514, + 0.0052500758320093155, + 0.004691233858466148, + 0.013419817201793194, + -0.007314370945096016, + -0.002313302829861641, + 0.011306101456284523, + -0.03765152394771576, + -0.012119653634727001, + -0.006466603372246027, + 0.00752346171066165, + -0.005067596677690744, + -0.004010738804936409, + 0.009002302773296833, + -0.0007541519589722157, + 0.006272719241678715, + -0.008584121242165565, + -0.016392705962061882, + -0.011511390097439289, + -0.006105446722358465, + -0.005356522276997566, + 0.017685266211628914, + -0.007800981868058443, + -0.0021574352867901325, + -0.01824790984392166, + 0.013967255130410194, + 0.009534533135592937, + 0.030078640207648277, + -0.029470376670360565, + -0.006390570197254419, + -0.01068263128399849, + 0.004307267256081104, + 0.01824790984392166, + -0.007371395360678434, + 0.001227932283654809, + -0.008477674797177315, + 0.008606931194663048, + -0.00014826426922809333, + -0.020224766805768013, + 0.006793545093387365, + 0.002106113126501441, + 0.008432055823504925, + -0.013389404863119125, + -0.0076032960787415504, + 0.008561311289668083, + -0.02901417762041092, + -0.0029291699174791574, + 0.020163942128419876, + -0.02951599471271038, + 0.007504453416913748, + -0.021350055932998657, + -0.0014427254209294915, + -0.013716346584260464, + 0.017594026401638985, + 0.01833914965391159, + 0.007249742746353149, + 0.01747237518429756, + -0.007648915983736515, + -0.003938507288694382, + -0.005265282467007637, + -0.0027771038003265858, + -0.02312922663986683, + -0.0019730553030967712, + -0.0155411371961236, + -0.01716824248433113, + 0.024482613429427147, + -0.022429723292589188, + 0.006611065939068794, + -0.0002189511724282056, + -0.0264594703912735, + -0.0323900431394577, + -0.008553707972168922, + 0.002113716211169958, + 0.014765600673854351, + -0.02215600572526455, + 0.006679495796561241, + 0.006892387755215168, + -0.008143129758536816, + -0.024254513904452324, + -0.0036514829844236374, + 0.009610566310584545, + -0.017700472846627235, + 0.016012541949748993, + 0.005763298366218805, + -0.01969253644347191, + -0.003780738916248083, + -0.017715679481625557, + 0.011070399545133114, + -0.028983764350414276, + 0.000590205832850188, + 0.018202291801571846, + -0.012492215260863304, + -0.004101978149265051, + -1.5845151210669428e-5, + 0.007477841805666685, + 0.0042996639385819435, + -0.019646916538476944, + 0.00016798533033579588, + 0.0010074367746710777, + -0.026018479838967323, + -0.004828093107789755, + -0.0014047089498490095, + -0.024543439969420433, + 0.03448855131864548, + -0.002552806632593274, + -0.006390570197254419, + -0.017609233036637306, + -0.032694172114133835, + 0.0029462771490216255, + -0.008067097514867783, + -0.0051474315114319324, + 0.004580985754728317, + -0.017898159101605415, + 0.01617981493473053, + -0.01230973657220602, + 0.010713044553995132, + 0.0014322708593681455, + 0.004387102089822292, + 0.0031933842692524195, + 0.007040651980787516, + 0.006976024247705936, + 0.00040796436951495707, + -0.013032049871981144, + -0.01519898883998394, + -0.023296499624848366, + 0.007439825218170881, + -0.008272386156022549, + -0.020422453060746193, + 0.028968557715415955, + -0.009990731254220009, + -0.006474206689745188, + -0.003516524564474821, + 0.00035806771484203637, + -0.0074322219006717205, + -0.023190053179860115, + -0.0035355326253920794, + 0.026048893108963966, + -0.011100811883807182, + -0.00453916797414422, + 0.015754029154777527, + -0.006337347440421581, + -0.013047256506979465, + 0.005596025846898556, + -0.015160972252488136, + -0.006968420930206776, + -0.003930903971195221, + 0.003607763908803463, + 0.007211726158857346, + 0.011921968311071396, + -0.016240639612078667, + -0.025729553773999214, + -0.010621804744005203, + 0.021836666390299797, + 0.017989398911595345, + -0.00966378953307867, + 0.009945111349225044, + -0.0021289228461682796, + -0.014195353724062443, + 0.009306434541940689, + -0.002999500371515751, + -0.020148735493421555, + 0.0003994106373284012, + -0.0036438796669244766, + 0.0030793349724262953, + -0.0006610115524381399, + 0.02785847708582878, + -0.011344118043780327, + 0.008356022648513317, + -0.003075533313676715, + 0.020559312775731087, + -0.00674032187089324, + -0.018171878531575203, + 0.02080261893570423, + 0.001780121703632176, + 0.014088907279074192, + 0.010211226530373096, + -0.011503786779940128, + 0.0006695652846246958, + 0.013404611498117447, + 0.0007627056329511106, + -0.018977826461195946, + -0.004577184095978737, + -0.023996002972126007, + -0.018552042543888092, + -0.017867745831608772, + 0.0026497486978769302, + 0.0035564417485147715, + 0.006698504090309143, + 0.012811553664505482, + 0.0013799982843920588, + -0.005649249069392681, + -0.01981418952345848, + -0.006592057645320892, + -0.03324161097407341, + -0.006546437740325928, + 0.016301466152071953, + 0.01695534959435463, + 0.011655853129923344, + 0.0014617337146773934, + 0.019160306081175804, + 0.005212059710174799, + -0.021456502377986908, + -0.01657518558204174, + 0.02548624947667122, + 0.009291227906942368, + 0.013883618637919426, + -0.017335515469312668, + -0.03166012465953827, + -0.0032447066623717546, + -0.004676027223467827, + -0.005117018241435289, + -0.00980825163424015, + -0.013389404863119125, + 0.0026326412335038185, + 0.018415182828903198, + -0.007299164310097694, + 0.01920592598617077, + 0.015237005427479744, + 0.0018542538164183497, + 0.005478174891322851, + -0.005136026535183191, + -0.011108415201306343, + 0.00244065816514194, + 0.004079168196767569, + -0.0283298809081316, + 0.001667022705078125, + 0.005443959962576628, + 0.016499152407050133, + 0.016392705962061882, + -0.00742842024192214, + 0.00282082287594676, + 0.006105446722358465, + -0.007515858393162489, + -0.024969223886728287, + -0.000599709979724139, + -0.0047444566152989864, + -0.013799982145428658, + 0.0010036351159214973, + -0.02030079998075962, + 0.00183904729783535, + -9.516000136500224e-5, + 0.004668423905968666, + 0.019844602793455124, + 0.003533631796017289, + -0.0033834667410701513, + -0.014917667023837566, + -0.008226766251027584, + 0.010165606625378132, + 0.027767237275838852, + 0.011807918548583984, + -0.02224724367260933, + 0.011260481551289558, + 0.012279323302209377, + -0.009085939265787601, + -0.0004885117523372173, + -0.027706410735845566, + 0.014012875035405159, + -0.005288092419505119, + -0.013647916726768017, + -0.0012013207888230681, + -0.0019188818987458944, + -0.0014617337146773934, + 0.01931237243115902, + -0.004577184095978737, + 0.014446262270212173, + 0.00039061933057382703, + 0.005527596455067396, + -0.0018485513282939792, + -0.005668257363140583, + 0.003602061653509736, + 0.022019146010279655, + 0.007915031164884567, + 0.00563784409314394, + 0.0008192551322281361, + -0.013381801545619965, + -0.007048255298286676, + 0.011785108596086502, + -0.003113549668341875, + -0.016636012122035027, + 0.0048242914490401745, + 0.0026326412335038185, + -0.014301800169050694, + 0.006641479209065437, + -0.0015149567043408751, + 0.0003746999427676201, + 0.016651218757033348, + 0.0022410715464502573, + 0.0031781778670847416, + 0.01596692204475403, + -0.007074866909533739, + 0.006584454327821732, + 0.0022049557883292437, + 0.004478341434150934, + -0.018187085166573524, + -0.008994699455797672, + 0.006284124217927456, + -0.014689568430185318, + 0.012811553664505482, + 0.03089979477226734, + 0.024163275957107544, + 0.004512556362897158, + 0.024908397346735, + -0.021502122282981873, + -0.017578819766640663, + -0.01426378358155489, + 0.025136496871709824, + 0.0027752029709517956, + 0.003573549212887883, + -0.008690567687153816, + 0.012142463587224483, + 0.006413380149751902, + -0.024193687364459038, + -0.004980158992111683, + -0.004957349039614201, + -0.010393706150352955, + -0.030033020302653313, + 0.0023570219054818153, + -0.013860808685421944, + 0.004006937146186829, + -0.012583455070853233, + 0.004957349039614201, + -4.152112524025142e-5, + -0.004691233858466148, + 0.004771068226546049, + 0.011648249812424183, + 0.012879983521997929, + -0.0036419788375496864, + -0.007002635858952999, + -0.0394458994269371, + -0.017305102199316025, + 0.03695201873779297, + -0.012150066904723644, + 0.004668423905968666, + 0.0009865276515483856, + -0.004592390730977058, + -0.015381468459963799, + -0.006645280867815018, + -0.02078741230070591, + -0.018491216003894806, + 0.000804523762781173, + -0.0015358658274635673, + 0.002121319528669119, + 0.0037484250497072935, + -0.017700472846627235, + -0.014552708715200424, + -0.008257179521024227, + -0.007090073544532061, + 0.01599733531475067, + 0.0040677632205188274, + 0.04008457809686661, + 0.0011823124950751662, + -0.0119599848985672, + -0.006641479209065437, + -0.018491216003894806, + 0.0068543716333806515, + -0.004687432199716568, + -0.0028531369753181934, + -0.009359657764434814, + 0.011260481551289558, + -0.0035754500422626734, + -0.004417514894157648, + 0.016347086057066917, + -0.0008791311411187053, + 0.012689901515841484, + 0.0007641312549822032, + 0.00912395492196083, + -0.0308693815022707, + -0.011899158358573914, + -0.020817825570702553, + -0.0009561144979670644, + -0.021106749773025513, + 0.015069733373820782, + -0.02255137637257576, + 0.017289895564317703, + -0.018871381878852844, + 0.01034048292785883, + -0.014453865587711334, + -0.033880285918712616, + 0.004413713235408068, + 0.012598661705851555, + 0.0050257788971066475, + -0.01510014571249485, + 0.025577487424016, + 0.016742458567023277, + 0.0056036291643977165, + -0.004930737428367138, + -0.0014009072910994291, + -0.020635345950722694, + 0.01792857237160206, + -0.014575518667697906, + -0.016331879422068596, + 0.002292393706738949, + -0.007436023559421301, + 0.0077857752330601215, + 0.006611065939068794, + 0.014552708715200424, + 0.01024163980036974, + 0.014689568430185318, + -0.00453916797414422, + -0.005618835799396038, + -0.020422453060746193, + 0.006405776832252741, + 0.020711379125714302, + -0.01544229406863451, + -0.026307404041290283, + 0.0321771502494812, + 0.00872098095715046, + -0.00794544443488121, + -0.004752059932798147, + 0.009640979580581188, + 0.021745426580309868, + -0.00388338346965611, + -0.010667424649000168, + 0.0009646681719459593, + -0.0017886754358187318, + 0.0005769000854343176, + 0.012803950347006321, + -0.02971368096768856, + 0.030321944504976273, + 0.018567249178886414, + 0.0007346685160882771, + -0.023266086354851723, + -0.009747426025569439, + -0.019875016063451767, + 0.04151399806141853, + 0.019768569618463516, + 0.02011832222342491, + 0.004231234081089497, + 0.010264449752867222, + 0.008591724559664726, + 0.03018508478999138, + 0.010051557794213295, + -0.01417254377156496, + 0.004482143092900515, + 0.013435023836791515, + -0.0039955321699380875, + -0.004736853297799826, + -0.011655853129923344, + -0.034579791128635406, + 0.009245608001947403, + -0.005527596455067396, + -0.017000969499349594, + -0.00388338346965611, + -0.021228402853012085, + 0.0017573118675500154, + -0.01686411164700985, + 0.012765933759510517, + -0.000690474349539727, + 0.02096989005804062, + 0.006858173292130232, + 0.002560409950092435, + 0.005493381526321173, + 0.02109154313802719, + -0.011214861646294594, + -0.010895523242652416, + -0.0016014442080631852, + -0.01426378358155489, + 0.009496516548097134, + 0.012613868340849876, + -0.026444263756275177, + -0.020756999030709267, + 0.008082304149866104, + -0.01368593331426382, + 0.018658488988876343, + 0.012925603426992893, + -0.012195686809718609, + 0.005417348351329565, + 0.00980064831674099, + 0.02109154313802719, + -0.005417348351329565, + -0.0065312315709888935, + 0.003086938289925456, + -0.013298165053129196, + -0.002678261138498783, + -0.008325609378516674, + -0.012378166429698467, + 0.009846268221735954, + 0.012256513349711895, + 0.0021175178699195385, + -0.005911562591791153, + 0.028557980433106422, + -0.007455031853169203, + 0.005991397425532341, + -0.027584757655858994, + -0.00803668424487114, + 0.0038263588212430477, + 0.013062463141977787, + 0.003398673376068473, + 0.004664622247219086, + 0.01176990196108818, + -0.016544772312045097, + -0.014461468905210495, + -0.003045120043680072, + -0.01308527309447527, + -0.004649415612220764, + 0.013191718608140945, + 0.008051890879869461, + 0.003520325990393758, + -0.006607264280319214, + -0.006938007660210133, + -0.0054819765500724316, + 6.646943802479655e-5, + 0.014864443801343441, + 0.024786746129393578, + -0.01494808029383421, + 0.0005749992560595274, + 0.014651551842689514, + 0.010074367746710777, + -0.0026744594797492027, + -0.01014279667288065, + 0.011587423272430897, + -0.0007774370023980737, + -0.00667189247906208, + -0.009671392850577831, + -0.0005027679726481438, + 0.007295362651348114, + 0.00862213782966137, + 0.004915530793368816, + -0.013381801545619965, + 0.0029937978833913803, + 0.0048242914490401745, + -0.012150066904723644, + 0.008203956298530102, + 0.01815667189657688, + 0.007436023559421301, + -0.0028512361459434032, + 0.018901793286204338, + -0.0019578486680984497, + 0.01048494502902031, + -0.004934539087116718, + 0.0037826397456228733, + 0.006211892701685429, + 0.0008306601084768772, + -0.015267418697476387, + 0.013556676916778088, + 0.006181479897350073, + -0.03166012465953827, + 0.00183904729783535, + -0.003799747209995985, + 0.008591724559664726, + 0.005945777520537376, + 0.009238004684448242, + 0.011549406684935093, + 0.02440658025443554, + 0.004113383125513792, + 0.008143129758536816, + 0.0007897923933342099, + 0.030458804219961166, + -0.005535199772566557, + 0.014248576946556568, + 0.02430013380944729, + 0.01911468617618084, + -0.006968420930206776, + 0.01666642539203167, + -0.021121956408023834, + -0.009131558239459991, + -0.012499818578362465, + 0.0033112354576587677, + 0.005679662339389324, + -0.014187750406563282, + 0.0006153917638584971, + 0.008470071479678154, + -0.011663456447422504, + -0.008112717419862747, + -0.0021897493861615658, + -0.022520963102579117, + -0.0028911533299833536, + -0.03689119219779968, + 0.01368593331426382, + 0.011290894821286201, + 0.002391236601397395, + -0.010317672975361347, + 0.00512081990018487, + -0.0003017558192368597, + 0.023996002972126007, + -0.021106749773025513, + 0.006690900772809982, + 0.011009573005139828, + 0.004060159903019667, + -0.01279634702950716, + -0.020833032205700874, + -0.0147123783826828, + 0.003465202171355486, + -0.004474539775401354, + 0.01288758683949709, + 0.009846268221735954, + -0.004246440716087818, + 0.00333214458078146, + -0.005683463998138905, + -0.016788078472018242, + -0.011138828471302986, + -0.007439825218170881, + -0.004987762309610844, + 0.001619502087123692, + -0.010857506655156612, + -0.0045011513866484165, + -0.0076032960787415504, + 0.015122955664992332, + 0.00020814023446291685, + 0.01992063596844673, + -0.0027295832987874746, + -0.023676663637161255, + 3.623445809353143e-5, + -0.0026250379160046577, + 0.0027466907631605864, + -0.011230068281292915, + 0.009717012755572796, + -0.0024615670554339886, + -0.009245608001947403, + -0.025440629571676254, + 0.008112717419862747, + 0.0065312315709888935, + -0.008614534512162209, + -0.012826760299503803, + -0.004216027911752462, + 0.015008906833827496, + -0.01068263128399849, + -0.0031192521564662457, + 0.0204984862357378, + -0.009093542583286762, + 0.017578819766640663, + -0.02361583709716797, + -0.015754029154777527, + -0.00391949899494648, + 0.02030079998075962, + -0.005721480119973421, + -0.011480976827442646, + 0.022825095802545547, + -0.01103238295763731, + -0.0017725183861330152, + 0.026626743376255035, + -0.0029652854427695274, + -0.01989022269845009, + 0.02933351695537567, + -0.002837930340319872, + 0.015754029154777527, + -0.008644947782158852, + -0.014681965112686157, + 0.004204622935503721, + 0.002484377007931471, + 0.009428087621927261, + -0.018977826461195946, + -0.016651218757033348, + -0.02128922939300537, + 0.00966378953307867, + -0.00897949282079935, + 0.03048921748995781, + -0.0025014844723045826, + -0.0033834667410701513, + -0.00838643591850996, + -0.00443652318790555, + 0.0029082607943564653, + -0.0007698337431065738, + 0.0014123122673481703, + -0.009093542583286762, + 0.0005921066622249782, + -0.008264782838523388, + -0.007656519301235676, + -0.02147170901298523, + 0.017806919291615486, + -0.008766600862145424, + -0.0026535503566265106, + 0.00863734446465969, + 0.022475343197584152, + -0.01960129663348198, + -0.0045201596803963184, + -0.003999333828687668, + 0.00605602515861392, + 0.013655520044267178, + -0.019677329808473587, + -0.012537835165858269, + 0.011473373509943485, + 0.005569414235651493, + 0.013252545148134232, + -0.008599327877163887, + -0.002172641921788454, + -0.01756361313164234, + 0.012910396791994572, + -0.012423785403370857, + -0.0196165032684803, + 0.0058545381762087345, + 0.005561810918152332, + -0.008835029788315296, + -0.0029120624531060457, + -0.033880285918712616, + -0.0018903694581240416, + 0.003581152530387044, + 0.007375197019428015, + 0.0056530507281422615, + 0.01716824248433113, + -0.0005317555041983724, + -0.009747426025569439, + -0.012621471658349037, + 0.00046356345410458744, + 0.0035773508716374636, + 0.04787035286426544, + 0.009397674351930618, + 0.01617981493473053, + -0.011914364993572235, + -0.0017924770945683122, + -0.02256658300757408, + -0.009268417954444885, + -0.006170074921101332, + -0.019297165796160698, + -0.006363959051668644, + 0.017335515469312668, + -0.009245608001947403, + 0.00701023917645216, + 0.01059139147400856, + -0.014073701575398445, + 0.01529022864997387, + -0.010196019895374775, + -0.007610899396240711, + -0.003259913297370076, + 0.011306101456284523, + -0.0060256123542785645, + 0.022490549832582474, + -0.005383133888244629, + -0.020574519410729408, + 0.00932164117693901, + 0.008857839740812778, + 0.004888919182121754, + -0.0003796895907726139, + 0.003818755503743887, + -0.012575851753354073, + 0.013602296821773052, + -0.018582455813884735, + -0.03029153123497963, + 0.022977160289883614, + 0.0033758634235709906, + 0.014537502080202103, + -0.0034785079769790173, + 0.015617170371115208, + 0.007675527594983578, + -0.02128922939300537, + -0.0294247567653656, + -0.004660820588469505, + 0.0005060944240540266, + -0.0007589039742015302, + -0.017213862389326096, + -0.005839331541210413, + 0.0052804891020059586, + 0.01727468892931938, + 0.003915697336196899, + -0.0011766101233661175, + 0.01127568818628788, + -0.006344950757920742, + -0.01912989281117916, + -0.0019863611087203026, + -0.012340149842202663, + 0.01451469212770462, + 0.010811886750161648, + -0.021304436028003693, + -0.0060484218411147594, + -0.005360323935747147, + -0.0020224768668413162, + 0.001847600913606584, + 0.004143796395510435, + 0.03184260427951813, + 0.009352054446935654, + -0.0029842937365174294, + -0.0037484250497072935, + 0.013092875480651855, + -0.007234536111354828, + 0.00941288098692894, + 0.03281582519412041, + -0.011739489622414112, + -0.010454531759023666, + -0.020513692870736122, + -0.009891888126730919, + -0.01736592873930931, + -0.014940476976335049, + -0.029287897050380707, + -0.01357188355177641, + 0.004489746410399675, + 0.0059571824967861176, + -0.01485684048384428, + 0.005219662562012672, + -0.0037921438924968243, + 0.00036020614788867533, + -0.002457765396684408, + 0.0025471041444689035, + -0.0064019751735031605, + 0.0239199697971344, + 0.006949412636458874, + -0.011564613319933414, + -0.005903959274291992, + -0.007561477832496166, + 0.012180480174720287, + 0.012020811438560486, + -0.02402641624212265, + -0.011990398168563843, + -0.007196519989520311, + 0.015495517291128635, + 0.017578819766640663, + 0.008842633105814457, + 0.006899991072714329, + -0.0007090073777362704, + 0.005162638146430254, + -0.02037683315575123, + -0.025060463696718216, + -0.005900157615542412, + -0.005238670855760574, + -0.0010131392627954483, + 0.023159639909863472, + -0.008508088067173958, + -0.004447928164154291, + -0.0034823096357285976, + 0.02481715939939022, + 0.019266752526164055, + 0.008918666280806065, + 0.022627409547567368, + 0.008470071479678154, + 0.025516660884022713, + 0.028573187068104744, + -0.016985762864351273, + 0.014887253753840923, + 0.02843632735311985, + -0.0023076003417372704, + 0.02008790895342827, + 0.012629074975848198, + 0.005113216582685709, + 0.02030079998075962, + -0.00622709933668375, + -0.016924936324357986, + 0.0028531369753181934, + -0.015525930561125278, + 0.005900157615542412, + -0.0008064245921559632, + 0.005550405941903591, + -0.0009375814697705209, + -0.012591058388352394, + -0.007930237799882889, + 0.02030079998075962, + -0.00955734308809042, + -0.0002577992563601583, + 0.02714376710355282, + 0.016240639612078667, + -0.0018884686287492514, + -0.003389169229194522, + 0.005675860680639744, + -0.021213196218013763, + 0.005656852386891842, + 0.011557010002434254, + -0.005679662339389324, + -0.02186707966029644, + -0.011100811883807182, + -0.0020947081502527, + -0.0005612183012999594, + 0.0003421483270358294, + 0.0027828062884509563, + 0.005386935081332922, + 0.009853871539235115, + 0.0008539452101103961, + 0.01136692799627781, + -0.014324610121548176, + -0.014126923866569996, + -0.004242639057338238, + 0.004159003030508757, + -0.00013222606503404677, + -0.01686411164700985, + -0.005858339834958315, + 0.016103781759738922, + -0.0012707008281722665, + -0.013541470281779766, + -0.008249576203525066, + 0.010226433165371418, + 0.015419484116137028, + -0.005364125594496727, + 0.005386935081332922, + 0.01024163980036974, + -0.005485778208822012, + -0.006040818989276886, + -0.004729249980300665, + -0.00030864629661664367, + 0.006599660962820053, + 0.021912699565291405, + 0.021395675837993622, + 0.0007489246781915426, + -0.026048893108963966, + 0.014309403486549854, + -0.008576517924666405, + 0.0005531397764571011, + 0.004755861591547728, + 0.00281892204657197, + 0.001351485843770206, + 0.02273385599255562, + -0.02078741230070591, + -0.014887253753840923, + -0.016818491742014885, + 0.012933206744492054, + -0.005649249069392681, + -0.012765933759510517, + -0.030747730284929276, + 0.0060788351111114025, + 0.006390570197254419, + 0.004657018929719925, + -0.022490549832582474, + 0.013952048495411873 + ], + "6672c195-0f1d-407e-9fea-615b357ef033": [ + -0.005894192028790712, + -0.028326839208602905, + -0.01184361707419157, + -0.0007609386229887605, + -0.02346630021929741, + -0.008229775354266167, + 0.028752924874424934, + 0.04166175797581673, + -0.019805116578936577, + 0.05087784305214882, + 0.0030062745790928602, + 0.023529425263404846, + 0.02988915517926216, + -0.02476034127175808, + 0.007499905303120613, + 0.035065311938524246, + -0.03699059039354324, + 0.027600914239883423, + -0.009397567249834538, + -0.01566261239349842, + 0.06296606361865997, + 0.00906616635620594, + -0.04052552953362465, + 0.028926515951752663, + 0.013137656264007092, + -0.013003518804907799, + 0.0028879172168672085, + 0.004079380538314581, + -0.010794183239340782, + 0.004091216251254082, + 0.007570920046418905, + 0.008245556615293026, + 0.024176444858312607, + 0.011638464406132698, + 0.020199639722704887, + -0.033203158527612686, + 0.015370664186775684, + 0.007152724079787731, + -0.029873374849557877, + 0.01562315970659256, + 0.005835013464093208, + 0.034844379872083664, + -0.0024184335488826036, + -0.015544254332780838, + -0.05965206399559975, + 0.020846659317612648, + -0.0036414586938917637, + -0.014171309769153595, + -0.02992071770131588, + 0.008403366431593895, + 0.015489021316170692, + -0.02078353613615036, + -0.005468105897307396, + 0.0027162993792444468, + 0.014786767773330212, + -0.018479514867067337, + 0.0262595321983099, + 0.029226355254650116, + 0.012569542042911053, + -0.043050482869148254, + 0.021698832511901855, + -0.021446336060762405, + 0.01787983812391758, + -0.005239281803369522, + -0.007835251279175282, + -0.007531467359513044, + -0.004659330938011408, + -0.00042583959293551743, + -0.04718509688973427, + -0.00031266044243238866, + 0.022424757480621338, + 0.03443407267332077, + -0.03525468334555626, + 0.028105905279517174, + -0.018716229125857353, + 0.012490636669099331, + 0.06419698148965836, + 0.03257191926240921, + 0.004316094797104597, + -0.009665843099355698, + 0.013232342898845673, + -0.008963590487837791, + -0.001857222756370902, + 0.0030713710002601147, + 0.07997795194387436, + -0.001027735648676753, + -0.031514596194028854, + -0.056527432054281235, + 0.020688850432634354, + -0.03017321228981018, + -0.011480654589831829, + 0.0181638952344656, + -0.0013068615226075053, + 0.024539407342672348, + -0.019410591572523117, + 0.011212378740310669, + 0.03837931528687477, + -0.008158761076629162, + 0.00341263459995389, + 0.007097490597516298, + 0.02103603258728981, + 0.005227446090430021, + -0.02834261953830719, + 0.013761005364358425, + 0.014605286531150341, + -0.011322845704853535, + 0.05712710693478584, + -0.0179587434977293, + -0.0140135008841753, + 0.054696839302778244, + 0.013524290174245834, + -0.025391578674316406, + 0.0033889631740748882, + 0.00698702409863472, + -0.04163019731640816, + -0.02981024980545044, + -0.011117693036794662, + -0.019663088023662567, + -0.02024698257446289, + -0.036927469074726105, + 0.03254035860300064, + -0.001591905253008008, + 0.006556992419064045, + -0.007586700841784477, + -0.04175644367933273, + 0.017248598858714104, + 0.007894429378211498, + 0.02221960388123989, + 0.01931590586900711, + 0.02848464995622635, + -0.031198976561427116, + -0.018716229125857353, + 0.023482082411646843, + -0.0015287813730537891, + 0.02010495401918888, + 0.013910924084484577, + -0.019300125539302826, + 0.05084628239274025, + -0.018574200570583344, + 0.022014452144503593, + -0.07107748091220856, + -0.02526533231139183, + -0.032445672899484634, + 0.0014488901942968369, + 0.0050578005611896515, + 0.01443958654999733, + -0.04058865085244179, + 0.03676965832710266, + -0.023671453818678856, + 0.01546534989029169, + -0.06495446711778641, + -0.02343473955988884, + -0.03579123690724373, + 0.0019292234210297465, + -0.0001184805587399751, + -0.041156768798828125, + 0.011946193873882294, + 0.01591510698199272, + 0.011141364462673664, + 0.04551231488585472, + 0.010746839456260204, + -0.05315030366182327, + -0.002546653850004077, + 0.004446288105100393, + 0.054191846400499344, + 0.0042174640111625195, + 0.06735317409038544, + 0.03250879794359207, + -0.01737484708428383, + 0.016396427527070045, + 0.01107035018503666, + 0.0005217582802288234, + 0.024050196632742882, + 0.011362297460436821, + 0.012964066118001938, + 0.00392551627010107, + 0.014123966917395592, + 0.045449189841747284, + -0.002045608125627041, + -0.04683791473507881, + -0.021793518215417862, + -0.010241849347949028, + 0.012056659907102585, + -0.0052156103774905205, + 0.010115601122379303, + 0.03228786215186119, + 0.006478087976574898, + -0.005377365276217461, + 0.008158761076629162, + -0.0054917773231863976, + 0.01906341128051281, + -0.017280161380767822, + -0.020199639722704887, + 0.028674021363258362, + -0.033708151429891586, + -0.027932316064834595, + 0.015418007038533688, + -0.003592143068090081, + 0.019158096984028816, + 0.012719460763037205, + -0.004004420712590218, + -0.028295276686549187, + -0.03291910141706467, + 0.04582793265581131, + -0.038505565375089645, + 0.022440537810325623, + -0.0323825478553772, + -0.018479514867067337, + 0.05674836412072182, + -0.025312675163149834, + 0.02730107679963112, + -0.06432323157787323, + -0.002771532628685236, + -0.006399183068424463, + -0.022835062816739082, + 0.009815762750804424, + 0.001411410397849977, + -0.0028169029392302036, + -0.0028307114262133837, + -0.03730621188879013, + 0.01909497193992138, + 0.010754730552434921, + -0.028042782098054886, + -0.03156193718314171, + -0.039578668773174286, + -0.03793745115399361, + -0.02687499113380909, + 0.01866888627409935, + -0.03082023188471794, + -0.000291208183625713, + 0.001956840045750141, + 0.011046678759157658, + 0.006829214282333851, + 0.0035073203034698963, + -0.0040063937194645405, + -0.00502623850479722, + 0.03680121898651123, + 0.009942010045051575, + -0.008718985132873058, + -0.014573724940419197, + -0.00021624859073199332, + 0.038253068923950195, + 0.013997719623148441, + 0.008932028897106647, + 0.018542638048529625, + 0.03607529401779175, + -0.004014283884316683, + 0.04693260043859482, + 0.019663088023662567, + -0.002398707205429673, + 0.03872649744153023, + 0.016680484637618065, + 0.007125107571482658, + 0.015528473071753979, + -0.012127675116062164, + 0.06684818118810654, + 0.02608594112098217, + -0.03863181173801422, + -0.021272746846079826, + -0.01802186667919159, + -0.005243226885795593, + 0.03790588676929474, + 0.0203890111297369, + 0.0036513216327875853, + 0.009863105602562428, + -0.025249550119042397, + 0.04579637199640274, + -0.03028368018567562, + 0.009010933339595795, + 0.043587036430835724, + 0.039042118936777115, + 0.017942961305379868, + -0.011606902815401554, + 0.010147162713110447, + -0.008971480652689934, + 0.01099933497607708, + -0.008521723560988903, + -0.0049591693095862865, + -0.017295941710472107, + 0.011346517130732536, + 0.0022566786501556635, + -0.00469483807682991, + -0.0018769489834085107, + -0.0110545689240098, + -0.008624299429357052, + 0.01605713553726673, + -0.011551668867468834, + 0.008853123523294926, + -0.03386595845222473, + -0.00826133694499731, + -0.006197975482791662, + 0.015394335612654686, + -0.002384898951277137, + 0.009618500247597694, + -0.025217987596988678, + 0.029210573062300682, + -0.0023119118995964527, + -0.007294753100723028, + -0.013050861656665802, + 0.0250443983823061, + -0.025596732273697853, + 0.002197499852627516, + -0.007192176766693592, + -0.031546156853437424, + 0.009208195842802525, + 0.0001554672053316608, + 0.030394146218895912, + 0.02927369810640812, + -0.04087270796298981, + 0.016932979226112366, + 0.03449719771742821, + -0.04181956872344017, + -0.0012427512556314468, + -0.027332637459039688, + 0.0008728848770260811, + -0.03812682256102562, + -0.00029318081215023994, + -0.020404793322086334, + -0.010723168030381203, + -0.0323825478553772, + 0.016285959631204605, + -0.013200780376791954, + -0.06659568846225739, + 0.03711684048175812, + 0.04191425442695618, + -0.0156073784455657, + 0.03310847282409668, + -0.011157144792377949, + -0.06653256714344025, + 0.0029135614167898893, + -0.02458675019443035, + -0.013824128545820713, + -0.008206103928387165, + 0.0025525717064738274, + -0.026543589308857918, + -0.06899439543485641, + -0.04106208309531212, + -0.029005421325564384, + 0.009129290468990803, + -0.020594164729118347, + -0.018826695159077644, + -0.013926705345511436, + 0.019331686198711395, + -0.013106094673275948, + -0.026748742908239365, + 0.0026117502711713314, + 0.004114887677133083, + 0.03951554745435715, + -0.021114936098456383, + -0.0014715753495693207, + 0.0009498170693404973, + -0.008955700322985649, + 0.028689801692962646, + -0.003962995950132608, + 0.05027816817164421, + 0.003953132778406143, + -0.035601865500211716, + -0.02794809639453888, + 0.02458675019443035, + 0.005503613036125898, + 0.02007339335978031, + -0.025628292933106422, + -0.015078715980052948, + 0.0015593570424243808, + -0.0110545689240098, + -0.013792566955089569, + -0.01827436126768589, + -0.01982089690864086, + -0.015015591867268085, + 0.004331876058131456, + 0.00011533669021446258, + 0.015181291848421097, + -0.007014640606939793, + -0.03973647952079773, + -0.009902558289468288, + -0.026164846494793892, + 0.030504612252116203, + -0.03067820332944393, + -0.018511077389121056, + 0.022203823551535606, + 0.026953894644975662, + -0.008505942299962044, + 0.009010933339595795, + -0.011496435850858688, + 0.019284343346953392, + 0.014376462437212467, + 0.003530991729348898, + -0.013121875934302807, + -0.012940394692122936, + 0.014352791011333466, + -0.014723643660545349, + 0.024807684123516083, + -0.01888982020318508, + 0.017864057794213295, + 0.010683716274797916, + 0.015773078426718712, + -0.0011184761533513665, + -0.006919954903423786, + 0.02419222518801689, + -2.045053224719595e-5, + -0.011023006401956081, + -0.029068544507026672, + -0.007267136126756668, + 0.026685617864131927, + 0.022345852106809616, + -0.027821848168969154, + -0.023387396708130836, + -0.014360682107508183, + 0.033487215638160706, + -0.0009591870475560427, + 0.010320753790438175, + 0.00745256245136261, + 0.005089362617582083, + -0.012616884894669056, + 0.046964164823293686, + 0.01395826693624258, + -0.0007352945394814014, + 0.03437095135450363, + -0.040620215237140656, + -0.018195457756519318, + 0.03777964040637016, + 0.03844244033098221, + 0.005475996062159538, + 0.018037647008895874, + -0.012017208151519299, + 0.04084114730358124, + 0.018053429201245308, + 0.008963590487837791, + -0.03664340823888779, + -0.03421314060688019, + 0.019678868353366852, + 0.05618024989962578, + 0.0034146071411669254, + 0.02400285378098488, + -0.01655423641204834, + -0.030267897993326187, + -0.018653105944395065, + -0.020972907543182373, + 0.009152961894869804, + 0.014865673147141933, + -0.018290143460035324, + 0.0417880043387413, + -0.019868239760398865, + -0.01091254036873579, + -0.03326628357172012, + -0.0007515686447732151, + -0.04769008979201317, + 0.011488545686006546, + 0.01415552943944931, + -0.03291910141706467, + 0.001912456238642335, + 0.0349075049161911, + -0.053055617958307266, + -0.02501283586025238, + 0.005720601417124271, + -0.027616696432232857, + -0.0058231777511537075, + -0.007002804894000292, + 0.040083661675453186, + -0.06072516739368439, + -0.002018977655097842, + -0.03067820332944393, + 0.02042057365179062, + -0.0020140460692346096, + 0.023276928812265396, + -0.009310771711170673, + 0.0074762338772416115, + 0.017437970265746117, + 0.01524441596120596, + 0.01776937022805214, + -0.009492252953350544, + -0.01773780956864357, + 0.0004359492741059512, + 0.015591597184538841, + 0.010297082364559174, + -0.00019294700177852064, + -0.02221960388123989, + 0.001776345307007432, + 0.011015116237103939, + -0.009074057452380657, + -0.02651202864944935, + -0.020294325426220894, + 0.009705295786261559, + -0.012995627708733082, + 0.0007017599418759346, + -0.017153913155198097, + 0.00888468511402607, + -0.03964179381728172, + -0.020736193284392357, + 0.003972859121859074, + 0.024665653705596924, + 0.01071527786552906, + -0.005227446090430021, + 0.005752163007855415, + -0.0071685053408145905, + -0.0392630510032177, + -0.004438397474586964, + -0.0074604530818760395, + -0.012766803614795208, + 0.007428891025483608, + 0.00021748147264588624, + -0.01085730642080307, + -0.0010671879863366485, + -0.006241373252123594, + -0.027711382135748863, + 0.03056773729622364, + -0.009421238675713539, + 0.027364199981093407, + -0.01391881424933672, + -0.02233007177710533, + -0.028973858803510666, + -0.0035092930775135756, + -0.019016068428754807, + -0.001046475488692522, + -0.030378365889191628, + 0.013879362493753433, + -0.007204012479633093, + -0.022093357518315315, + 0.06457572430372238, + 0.017075007781386375, + -0.0019578265491873026, + 0.0017891674069687724, + -0.030914917588233948, + 0.001706317299976945, + -0.011551668867468834, + -0.021730395033955574, + 0.007503850851207972, + -0.01726437918841839, + -0.015133948996663094, + -0.02368723414838314, + 0.004252971149981022, + 0.01909497193992138, + 0.005330022424459457, + 0.0189213827252388, + 0.017075007781386375, + 0.01666470244526863, + -0.006454416550695896, + 0.01528386864811182, + 0.012877270579338074, + 0.011599012650549412, + -0.06306075304746628, + 0.014368572272360325, + -0.004852647893130779, + -0.004355547484010458, + -0.013374371454119682, + 0.028500430285930634, + -0.020625727251172066, + 0.04087270796298981, + -0.015820421278476715, + 0.028863392770290375, + -0.024523625150322914, + 0.022582566365599632, + 0.005483886692672968, + 0.002826766110956669, + 0.004185901954770088, + -0.041693318635225296, + 0.014802549034357071, + -0.022913966327905655, + -0.02064150758087635, + -0.026354217901825905, + -0.013611085712909698, + 0.013579524122178555, + -0.007626153063029051, + 0.006785816513001919, + -0.022551003843545914, + -0.00536552956327796, + -0.004162230528891087, + 0.015481130219995975, + 0.005795560777187347, + 0.02264569140970707, + 0.03329784423112869, + -0.004083325620740652, + 0.021872423589229584, + -0.0009823653381317854, + -0.004485740326344967, + 0.027821848168969154, + -0.023371614515781403, + -0.008308679796755314, + -0.037748079746961594, + -0.019331686198711395, + 0.05296093225479126, + -0.007294753100723028, + -0.015165511518716812, + -0.015307540073990822, + -0.006040165666490793, + 0.0181638952344656, + -0.001613604137673974, + -0.00487237423658371, + 0.020578384399414062, + 0.014258105307817459, + 0.0023237476125359535, + 0.010423329658806324, + 0.002406597835943103, + 0.0063044968992471695, + -0.015457458794116974, + 0.022803500294685364, + 0.006833159364759922, + 0.04074646160006523, + 0.019899802282452583, + -0.011709478683769703, + 0.03285597637295723, + 0.04740603268146515, + 0.012624775059521198, + 0.0028622732497751713, + -0.009381785988807678, + 0.03806369751691818, + 0.012072441168129444, + 0.030551956966519356, + -0.003047699574381113, + 0.025344235822558403, + -0.030252117663621902, + -0.021304307505488396, + 0.04342922568321228, + 0.0017674685223028064, + 0.01252219919115305, + -0.004394999705255032, + 0.023103337734937668, + 0.0156073784455657, + 0.011078240349888802, + -0.029684003442525864, + 0.030394146218895912, + -0.035601865500211716, + 0.054160285741090775, + -0.009105619043111801, + 0.014392243698239326, + 0.033487215638160706, + -0.025896569713950157, + -0.020041830837726593, + -0.012995627708733082, + 0.0009527759975753725, + 0.007563029415905476, + -0.01266422774642706, + 0.017785152420401573, + -0.026275312528014183, + 0.0006504718330688775, + 0.015433787368237972, + 0.029336821287870407, + -0.01612026058137417, + 0.010612701997160912, + -0.006509649567306042, + -0.027616696432232857, + -0.007602481637150049, + 0.025281112641096115, + 0.04825820401310921, + -0.01103878766298294, + 0.013563742861151695, + 0.004734290763735771, + 0.007874703966081142, + 0.03257191926240921, + 0.014337010681629181, + 0.00549966748803854, + -0.002605832414701581, + -0.006359730381518602, + 0.01216712687164545, + 0.014289667829871178, + -0.033234719187021255, + 0.019647305831313133, + -0.0015277951024472713, + -0.00357438949868083, + 0.01510238740593195, + 0.03418157994747162, + -0.021051812916994095, + 0.006951516959816217, + 0.005870520602911711, + 0.015078715980052948, + -0.014329119585454464, + 0.020609945058822632, + 0.006052001845091581, + 0.00260188733227551, + 0.031798653304576874, + -0.010478563606739044, + -0.009760529734194279, + 0.0263068750500679, + 0.014218653552234173, + -0.009918338619172573, + 0.01877935230731964, + 0.0029234245885163546, + 0.00826133694499731, + -0.0009325566352345049, + -0.01827436126768589, + -0.017501095309853554, + -0.026669837534427643, + -0.04589105769991875, + 0.030757108703255653, + -0.0014636848354712129, + -0.010170834138989449, + -0.01655423641204834, + 0.0017161803552880883, + 0.00029318081215023994, + -0.016932979226112366, + -0.026811866089701653, + 0.008679533377289772, + -0.01123605016618967, + 0.031341005116701126, + -0.014755206182599068, + -0.0037124729715287685, + 0.013855691067874432, + -0.011141364462673664, + 0.005227446090430021, + -0.003430388169363141, + -0.05766366049647331, + -0.014920906163752079, + -0.0076616606675088406, + -0.04125145450234413, + -0.007136943284422159, + -0.001080010086297989, + -0.016427988186478615, + -0.03468656912446022, + 0.018842477351427078, + 0.007196121849119663, + 0.00017346737149637192, + 0.013587414287030697, + 0.02146211825311184, + 0.03519156202673912, + 0.02809012494981289, + 0.018858257681131363, + 0.008726876229047775, + 0.02100447006523609, + 0.002071252092719078, + 0.025754541158676147, + 0.0071685053408145905, + 0.013421714305877686, + -0.024807684123516083, + -0.015165511518716812, + -0.034276265650987625, + -0.015418007038533688, + 0.005614079535007477, + -0.010510125197470188, + 0.02157258428633213, + -0.0026255587581545115, + 0.06028330326080322, + 0.00028109850245527923, + 0.002996411407366395, + -0.0022251165937632322, + -0.0004001955094281584, + -0.005550955887883902, + 0.012877270579338074, + -0.007669550832360983, + 0.028216373175382614, + -0.0191738773137331, + 0.01216712687164545, + -0.00259399670176208, + 0.005468105897307396, + -0.018716229125857353, + 0.0038466111291199923, + 0.0041030519641935825, + 0.03446563705801964, + 0.024018634110689163, + -0.020010268315672874, + -0.017911400645971298, + 0.004967059940099716, + -0.0323825478553772, + 0.03781120106577873, + -0.004035982768982649, + -0.04342922568321228, + 0.01222236081957817, + 0.023845044896006584, + 0.013697881251573563, + -0.015552145428955555, + 0.032729730010032654, + -0.010005134157836437, + 0.012530089356005192, + -0.00992622971534729, + -0.0021284581162035465, + -0.005720601417124271, + -0.0016185356071218848, + -0.0002988521009683609, + 0.024428939446806908, + 0.013729442842304707, + -0.008695313706994057, + 0.025060178712010384, + 0.03415001556277275, + 0.03658028692007065, + 0.02501283586025238, + -0.01170158851891756, + -0.02207757532596588, + 0.008553285151720047, + -0.03048883192241192, + -0.05053066462278366, + -0.012246032245457172, + -0.023166462779045105, + -0.048605386167764664, + 0.0280270017683506, + -0.01612026058137417, + 0.016396427527070045, + -0.034339386969804764, + 0.03755870461463928, + -0.01985245943069458, + -0.027869191020727158, + 0.0038051861338317394, + 0.011449092999100685, + 0.004501521587371826, + 0.0007229656330309808, + 0.03028368018567562, + -0.006706911604851484, + -0.015851983800530434, + 0.033771272748708725, + 0.004718509968370199, + -0.004462068900465965, + 0.028247933834791183, + 0.03279285505414009, + -0.014991920441389084, + 0.02794809639453888, + 0.03276129066944122, + 0.0008980357670225203, + -0.009302881546318531, + -0.021225403994321823, + 0.003607924096286297, + -0.016759390011429787, + 0.010920430533587933, + -0.009823652915656567, + -0.0017447833670303226, + -0.016072917729616165, + 0.04904725030064583, + -0.024539407342672348, + 0.004000475630164146, + -0.005819232203066349, + 0.004071489907801151, + 0.03487594053149223, + 0.0036907740868628025, + -0.004600152373313904, + 0.026953894644975662, + 0.02160414680838585, + -0.006063837558031082, + 0.0007634043577127159, + -0.01184361707419157, + 0.020120736211538315, + 0.003696691943332553, + 0.010620592162013054, + -0.000316852267133072, + -0.015236525796353817, + 0.010762620717287064, + -0.006568828132003546, + 0.009287100285291672, + 0.022771937772631645, + 0.02981024980545044, + -0.014613177627325058, + -0.007547248620539904, + -0.03699059039354324, + 0.021335870027542114, + -0.0031897283624857664, + -0.03132522478699684, + -0.013066641986370087, + -0.012490636669099331, + -0.01726437918841839, + -0.021099155768752098, + 0.01644377037882805, + 0.0041188327595591545, + 0.02117806114256382, + 0.032729730010032654, + 0.034812819212675095, + 0.00912140030413866, + 0.0014271914260461926, + 0.013942485675215721, + -0.029352601617574692, + 0.022961309179663658, + -0.0015100414166226983, + 0.017974523827433586, + -0.01189885102212429, + 0.0032153723295778036, + 0.01638064533472061, + 0.0106758251786232, + -0.04188269004225731, + 0.000921214057598263, + 0.006063837558031082, + -0.010289192199707031, + -0.008813670836389065, + 0.009421238675713539, + -0.008908357471227646, + 0.008766327984631062, + -0.0189213827252388, + -0.017864057794213295, + -0.016822513192892075, + 0.036390915513038635, + 0.008695313706994057, + -0.010447001084685326, + -0.012624775059521198, + -0.017974523827433586, + -0.02938416413962841, + -0.019047629088163376, + -0.013697881251573563, + 0.0026847373228520155, + -0.003688801545649767, + 0.013382261618971825, + -0.01988402009010315, + -0.011496435850858688, + 0.00954748596996069, + -0.0037972957361489534, + 0.012822037562727928, + -0.0023750357795506716, + 0.0014824247919023037, + 0.014644739218056202, + -0.012096112594008446, + -0.02518642693758011, + -0.023087557405233383, + 0.01397404819726944, + 0.0028287386521697044, + -0.012048769742250443, + -0.013547961600124836, + 0.007424945943057537, + -0.001864126999862492, + -0.0495838038623333, + -0.02106759324669838, + -0.010928320698440075, + 0.02783762849867344, + -0.04548075422644615, + -0.0001631111081223935, + 0.016648922115564346, + 0.00893991906195879, + -0.0001419054315192625, + 0.008569066412746906, + 0.019805116578936577, + -0.013271794654428959, + -0.0053892009891569614, + 0.03006274625658989, + 0.00841914676129818, + 0.008640080690383911, + -0.03594904765486717, + 0.007637989241629839, + -0.005566736683249474, + 0.010707387700676918, + -0.005310296081006527, + 0.010257629677653313, + 0.006497813854366541, + -0.00940545741468668, + -0.002173828426748514, + -0.00697913346812129, + -0.007346041034907103, + 0.013374371454119682, + 0.016033465042710304, + 0.002321775071322918, + -0.009476471692323685, + 0.0019844567868858576, + -0.005089362617582083, + 0.027853410691022873, + -0.02225116640329361, + -0.012190798297524452, + 0.00043175744940526783, + -0.010368096642196178, + 0.006489923689514399, + -0.013761005364358425, + -0.011157144792377949, + 0.040399279445409775, + -0.02910010702908039, + 0.009650062769651413, + 0.013248123228549957, + 0.022708814591169357, + 0.03380283713340759, + -0.012419622391462326, + -0.008916247636079788, + -0.005771889351308346, + 0.005314241163432598, + -0.004162230528891087, + -0.019126534461975098, + 0.008285008370876312, + 0.028263716027140617, + -0.0003607430844567716, + -0.022377414628863335, + 0.0015652748988941312, + 0.007914155721664429, + 0.0028681911062449217, + 0.018321704119443893, + 0.02120962180197239, + 0.006541211623698473, + -0.050467539578676224, + 0.005030184052884579, + -0.03468656912446022, + 0.005728491581976414, + -0.02368723414838314, + -0.005878410767763853, + -0.023892387747764587, + 0.007681386545300484, + -0.030899137258529663, + 0.027758724987506866, + -0.021667269989848137, + -0.03266660496592522, + -0.020373230800032616, + 0.001072119572199881, + -0.026401560753583908, + 0.0024638038594275713, + 0.029226355254650116, + -0.03841087967157364, + -0.0034402513410896063, + -0.017169693484902382, + -0.0057403272949159145, + -0.012656337581574917, + -0.004809250123798847, + 0.010849416255950928, + -0.033771272748708725, + 0.01222236081957817, + 0.002497338457033038, + -0.008395475335419178, + -0.020041830837726593, + 0.021367432549595833, + 0.020609945058822632, + 0.0063478946685791016, + -0.012530089356005192, + -0.027222171425819397, + -0.004994676914066076, + -0.038000572472810745, + -0.0002677833253983408, + -0.006533320993185043, + -0.008584846742451191, + 0.04895256459712982, + 0.044312961399555206, + 0.019284343346953392, + 0.010170834138989449, + -0.023482082411646843, + -0.017895618453621864, + 0.04396577924489975, + -0.015836201608181, + -0.027758724987506866, + 0.005164321977645159, + -0.018179675564169884, + 0.015536364167928696, + 0.022882405668497086, + 0.028263716027140617, + -0.039357736706733704, + -0.015433787368237972, + 0.02715904824435711, + -0.014431696385145187, + -0.02275615744292736, + -0.006584609393030405, + -0.01282992772758007, + -0.013003518804907799, + 0.00827711820602417, + 0.002538763452321291, + 0.0030358638614416122, + 0.021667269989848137, + 0.015386444516479969, + -0.018053429201245308, + -0.011220268905162811, + -0.006399183068424463, + -0.014360682107508183, + 0.001699413056485355, + -0.006541211623698473, + -0.04361859709024429, + -0.0647650957107544, + -0.023955510929226875, + -0.010005134157836437, + 0.030267897993326187, + 0.0096895145252347, + 0.0015859873965382576, + 0.010707387700676918, + 0.01638064533472061, + -0.012569542042911053, + 0.0015179319307208061, + 0.01449482049793005, + -0.008482270874083042, + 6.04423439654056e-5, + 0.033771272748708725, + 0.003828857559710741, + -0.006501759402453899, + -0.012632666155695915, + 0.0013147520367056131, + 0.006268989760428667, + -0.02042057365179062, + -0.01666470244526863, + 0.010991444811224937, + 0.033487215638160706, + -0.005685094278305769, + -0.016080807894468307, + 0.024271130561828613, + -0.018195457756519318, + -0.0038308303337544203, + -0.017153913155198097, + -0.021619927138090134, + 0.005282679572701454, + 0.001511027803644538, + -0.03493906557559967, + -0.014218653552234173, + 0.00958693865686655, + 0.013666318729519844, + 0.008174542337656021, + -0.024208007380366325, + 0.039831165224313736, + 0.004166175611317158, + 0.012616884894669056, + 0.00698702409863472, + -0.0018148114904761314, + -0.0001370971731375903, + -0.012766803614795208, + -0.022440537810325623, + 0.006107234861701727, + -0.03392908349633217, + 0.029968060553073883, + 0.01410029549151659, + 0.018400609493255615, + 0.002207363024353981, + -0.02619640901684761, + -0.027900753542780876, + -0.006766090635210276, + 0.023734577000141144, + 0.0068528857082128525, + -0.020467916503548622, + 0.016648922115564346, + 0.008024622686207294, + 0.04929974675178528, + 0.029257915914058685, + 0.0010415439028292894, + -0.009650062769651413, + -0.020625727251172066, + 0.024523625150322914, + 0.014463257975876331, + 0.018069209530949593, + 0.024886587634682655, + -0.010596920736134052, + 0.015575816854834557, + 0.0008748574764467776, + -0.007211902644485235, + 0.002915533958002925, + -0.0014064788119867444, + 0.015339101664721966, + 0.014873563311994076, + 0.01377678569406271, + 0.012569542042911053, + -0.0018256608163937926, + -0.030725546181201935, + 0.014707863330841064, + 0.006336058955639601, + -0.014597396366298199, + -0.013090313412249088, + -0.021840861067175865, + 0.02070463076233864, + -0.030725546181201935, + 0.010936211794614792, + 0.0017299887258559465, + 0.041945815086364746, + 0.022266946732997894, + 0.025091741234064102, + 0.03396064415574074, + -0.009760529734194279, + 0.05463371425867081, + -0.018179675564169884, + 0.03790588676929474, + -0.00040660653030499816, + -0.022030232474207878, + 0.002759696915745735, + -0.005558846518397331, + 0.012735242024064064, + -0.03446563705801964, + -0.008916247636079788, + 0.0126484464854002, + 0.01601768285036087, + -0.010013025254011154, + -0.021777737885713577, + -0.037748079746961594, + 0.021793518215417862, + -0.01268789917230606, + -0.01810077205300331, + 0.0014991920907050371, + 0.0011668053921312094, + 0.0012200662167742848, + 0.007997006177902222, + -0.020846659317612648, + -0.013437495566904545, + 0.00012057646381435916, + -0.0019657169468700886, + 0.05315030366182327, + 0.015686282888054848, + -0.024065976962447166, + 0.013579524122178555, + 0.0080956369638443, + -0.015536364167928696, + -0.02267725206911564, + 0.01709078997373581, + 0.03260348364710808, + -0.008576956577599049, + -0.00988677702844143, + -0.00517615769058466, + 0.006040165666490793, + -0.01118081621825695, + 0.020152296870946884, + 0.0457332469522953, + -6.663760723313317e-5, + 0.018732009455561638, + -0.02558095008134842, + 0.011867288500070572, + 0.002812957623973489, + -0.01345327589660883, + 0.02300865203142166, + -0.002546653850004077, + -0.0009049399523064494, + -0.00893991906195879, + -0.010233958251774311, + -0.0037795421667397022, + 0.007673496380448341, + -0.00893991906195879, + 0.01410029549151659, + 0.010399658232927322, + -0.018400609493255615, + -0.01931590586900711, + -0.015126058831810951, + -0.0017556328093633056, + 0.0156073784455657, + -0.0005069636390544474, + -0.013705771416425705, + -0.003132522339001298, + -0.0029135614167898893, + 0.0046830023638904095, + -0.018826695159077644, + 0.025865009054541588, + -0.010936211794614792, + -0.018858257681131363, + 0.005235336255282164, + -0.02188820391893387, + -0.017248598858714104, + 0.008036458864808083, + -0.02027854509651661, + -0.003430388169363141, + -0.015252306126058102, + 0.006576718762516975, + -0.011370188556611538, + 0.0043752738274633884, + 0.00023165969469118863, + 0.010447001084685326, + -0.0017852220917120576, + -0.021383212879300117, + 0.03651716187596321, + 0.007720839232206345, + 0.016317522153258324, + 0.00745256245136261, + 0.005286624655127525, + -0.004014283884316683, + 0.007598536554723978, + -0.009736858308315277, + -0.0030260009225457907, + 0.015678392723202705, + 0.022582566365599632, + -0.02021542191505432, + -0.000888172653503716, + 0.0056219701655209064, + 0.003018110292032361, + 0.026969676837325096, + 0.026827646419405937, + -0.03841087967157364, + -0.017390627413988113, + 0.008647970855236053, + -0.018684666603803635, + 0.016491113230586052, + 0.012490636669099331, + -0.004126723390072584, + -0.007251355331391096, + -0.04980473965406418, + 0.006237428169697523, + -0.010044586844742298, + -0.02537579834461212, + 0.022298509255051613, + 0.0026729016099125147, + 0.012900942005217075, + -0.020483698695898056, + 0.015504801645874977, + 0.0090819476172328, + 0.005369474645704031, + 0.0007865826482884586, + -0.011046678759157658, + -0.028358401730656624, + 0.03096226043999195, + 0.010470672510564327, + 0.01644377037882805, + -0.019584182649850845, + 0.010186615400016308, + 0.015930887311697006, + 0.00397877674549818, + -0.06195608526468277, + 0.002903698245063424, + 0.015670502558350563, + -0.0019499360350891948, + -0.0030713710002601147, + -1.1550621820788365e-5, + -0.004268751945346594, + -0.01658579893410206, + -0.0020278545562177896, + 0.032303642481565475, + -0.013240233063697815, + 0.029731346294283867, + -0.019521059468388557, + 0.0005079499678686261, + -0.027032800018787384, + -0.029510412365198135, + -0.0048684291541576385, + 0.01841639168560505, + 0.008411256596446037, + -0.02304021455347538, + -0.0233242716640234, + 0.006884447764605284, + 0.017295941710472107, + -0.0014705890789628029, + -0.01726437918841839, + -0.015773078426718712, + 0.009973572567105293, + 0.0027557516004890203, + 0.008253446780145168, + -0.002122540259733796, + 0.005756108555942774, + 0.0211464986205101, + 0.006367621012032032, + -0.022724594920873642, + -0.0003331264015287161, + 0.015836201608181, + -0.05292937159538269, + 0.012616884894669056, + -0.01745375245809555, + -0.002106759464368224, + 0.0025150920264422894, + 0.025423141196370125, + -0.03192489966750145, + 0.0063044968992471695, + 0.006217701826244593, + 0.003795322962105274, + 0.001057324931025505, + 0.00974474847316742, + 0.0014794658636674285, + -0.011125583201646805, + -0.029005421325564384, + 0.020720412954688072, + 0.027111705392599106, + -0.010991444811224937, + -0.0011766684474423528, + -0.038000572472810745, + 0.012553760781884193, + 0.0100682582706213, + 0.0018394691869616508, + 0.002517064567655325, + -0.005925754085183144, + 0.02393973059952259, + 0.004071489907801151, + 0.02250366099178791, + 0.02715904824435711, + 0.03601217269897461, + -0.01171736977994442, + 0.013421714305877686, + -0.0020140460692346096, + 0.004154339898377657, + 0.0074012745171785355, + 0.00040216813795268536, + 0.003777569392696023, + 0.02143055573105812, + 0.00665562367066741, + -0.0344025120139122, + -0.00697913346812129, + -0.006418908946216106, + -0.00030674258596263826, + 0.005120924673974514, + -0.02247210033237934, + -0.0022251165937632322, + -0.014194981195032597, + 0.017832495272159576, + -0.011291283182799816, + -0.011125583201646805, + -0.020862441509962082, + -0.008064075373113155, + 0.014455367811024189, + 0.014076624065637589, + -0.010028805583715439, + 0.012419622391462326, + -0.023497862741351128, + 0.004576480947434902, + -0.004296368919312954, + 0.016151821240782738, + 0.03276129066944122, + -0.03418157994747162, + -0.02095712721347809, + 0.006916009820997715, + 0.007042257580906153, + 0.0047658528201282024, + -0.01391881424933672, + -0.011709478683769703, + 0.030536174774169922, + -0.013161328621208668, + 0.005842903628945351, + 0.007413110230118036, + -0.0116621358320117, + 0.006426799576729536, + -0.018968725576996803, + -0.011125583201646805, + -0.002874108962714672, + 0.025486264377832413, + 0.035096876323223114, + -0.03727464750409126, + -0.003073343774303794, + 0.001787194749340415, + 0.017911400645971298, + -0.0010553522733971477, + 0.035601865500211716, + 0.04453389346599579, + -0.00403992785140872, + -0.026433123275637627, + 0.009839434176683426, + 0.0002542215515859425, + -0.003769678995013237, + 0.005953370593488216, + 0.025028616189956665, + -0.008632189594209194, + 0.028721364215016365, + -0.03317159786820412, + -0.024776121601462364, + -0.017169693484902382, + 0.006841049995273352, + -0.010849416255950928, + 0.03598060831427574, + -0.012088222429156303, + 0.00585079425945878, + 0.014463257975876331, + -0.0179587434977293, + -0.012877270579338074, + -0.02360832877457142, + 0.010099819861352444, + 0.0007806647918187082, + -0.016854075714945793, + 0.01218290813267231, + -0.026133283972740173, + 0.0011382023803889751, + -0.009105619043111801, + 0.01528386864811182, + -0.0010918457992374897, + -0.004454178735613823, + -0.009255538694560528, + -0.0033929082565009594, + -0.011251830495893955, + -0.017359066754579544, + -0.02393973059952259, + -0.01005247700959444, + 0.0033435928635299206, + 0.00747228879481554, + -0.008348132483661175, + -0.011938302777707577, + -0.01077051181346178, + -0.023513643071055412, + 0.030046965926885605, + 0.0011677916627377272, + 0.006904174108058214, + -0.0010770511580631137, + -0.024949712678790092, + 0.00826133694499731, + -0.04286111146211624, + -0.013303357176482677, + -0.006691130809485912, + -0.003361346432939172, + -0.013524290174245834, + 0.03358190134167671, + -0.026780303567647934, + 0.016901418566703796, + 0.013737333938479424, + 0.01709078997373581, + 0.013910924084484577, + -0.024050196632742882, + -0.028610896319150925, + 0.004927607718855143, + 0.014834110625088215, + -0.00535763893276453, + -0.018826695159077644, + -0.022424757480621338, + 0.008300789631903172, + 0.030725546181201935, + -0.001765495864674449, + -0.0006894310936331749, + -0.01565472036600113, + 0.005144596099853516, + -0.0029411781579256058, + -0.007389438804239035, + -0.020010268315672874, + 0.013784676790237427, + -0.014676300808787346, + -0.0012555733555927873, + 0.006478087976574898, + 0.02010495401918888, + 0.006537266541272402, + -0.0028977803885936737, + 0.016617359593510628, + -0.014770987443625927, + 0.040651775896549225, + -0.02247210033237934, + 0.009705295786261559, + -0.010044586844742298, + 0.016869856044650078, + -0.00024781053070910275, + -0.022061794996261597, + -0.010691606439650059, + 0.0016570017905905843, + -0.013177108950912952, + 0.0032528522424399853, + -0.010454892180860043, + 0.02673296071588993, + -0.01824280060827732, + 0.008711094968020916, + 0.014550053514540195, + 0.02078353613615036, + -0.009894667193293571, + 0.02870558202266693, + -0.01677517034113407, + 0.012569542042911053, + 0.01698032207787037, + -0.01996292546391487, + 0.004249026067554951, + -0.028800267726182938, + 0.023923948407173157, + 0.0023158572148531675, + 0.008853123523294926, + -0.023671453818678856, + 0.007736620027571917, + 0.00274983374401927, + 0.013713662512600422, + 0.02749044820666313, + -0.008032512851059437, + -0.024034416303038597, + -0.00938967615365982, + -0.005235336255282164, + 0.00038712690002284944, + -0.012743132188916206, + 0.004832921549677849, + 0.010257629677653313, + -0.004828976467251778, + -0.010383877903223038, + -0.011867288500070572, + 0.005479941610246897, + -0.01612815074622631, + 0.016459550708532333, + -0.01524441596120596, + -0.008505942299962044, + 0.009302881546318531, + 0.0378427654504776, + -0.01971043087542057, + 0.02207757532596588, + -0.01762734167277813, + -0.004481795243918896, + 0.04308204725384712, + -0.029052764177322388, + 0.010833634994924068, + -0.022582566365599632, + 0.0030555902048945427, + 0.007882594130933285, + -0.013192890211939812, + -0.014029281213879585, + 0.002781395800411701, + 0.015583707019686699, + -0.010486453771591187, + 0.015220744535326958, + -0.012624775059521198, + -0.02916323021054268, + -0.003515210933983326, + 0.0033317571505904198, + -0.026685617864131927, + -0.021635709330439568, + 0.029983840882778168, + 0.010328643955290318, + -0.022582566365599632, + -0.015954559668898582, + 0.004422616679221392, + 0.002096896292641759, + 0.00793782714754343, + -0.004146449733525515, + -0.002970767440274358, + 0.009863105602562428, + -0.0022764047607779503, + -0.021162278950214386, + -0.0018927300116047263, + -0.0048842099495232105, + -0.012435403652489185, + 0.00960271991789341, + -0.01123605016618967, + 0.006892338395118713, + 0.011441202834248543, + -0.005270843859761953, + 0.00602043978869915, + -0.020846659317612648, + -0.0062887161038815975, + -0.00308123417198658, + 0.0023533368948847055, + -0.002708408748731017, + 0.0022132808808237314, + 0.025470484048128128, + -0.00453308317810297, + 0.008845233358442783, + 0.002428296720609069, + -0.011993536725640297, + -0.022156480699777603, + 0.0007057051989249885, + -0.002686709864065051, + -0.02185664139688015, + -0.002775477943941951, + 0.0011727232486009598, + 0.09929385781288147, + -0.002300076186656952, + -0.01316921878606081, + -0.006553047336637974, + 0.012853599153459072, + -0.014526382088661194, + 0.003972859121859074, + 0.011606902815401554, + 0.019836677238345146, + -0.006667459383606911, + -0.018479514867067337, + -0.020231202244758606, + 0.01270368043333292, + 0.005685094278305769, + -0.019899802282452583, + -0.011346517130732536, + 0.008529613725841045, + 0.028642458841204643, + 0.015212854370474815, + 0.012269703671336174, + 0.012585322372615337, + -0.0292421355843544, + 0.005223500542342663, + 0.027364199981093407, + -0.0035605812445282936, + 0.006454416550695896, + -0.0001649604382691905, + -0.0027695600874722004, + 0.010036696679890156, + 0.029179012402892113, + -0.0018148114904761314, + -0.005980987101793289, + -0.017832495272159576, + -0.00698702409863472, + -0.014486929401755333, + 0.023055994883179665, + -0.0020396902691572905, + 0.007440726738423109, + 0.00049931975081563, + 0.009981462731957436, + -0.0005834026960656047, + -0.008427037857472897, + 0.03626466542482376, + 0.03184599429368973, + -0.0007673496147617698, + -0.014179200865328312, + -0.0002608791401144117, + -0.0022764047607779503, + 0.002152129542082548, + 0.012214469723403454, + -0.01734328456223011, + -0.02239319495856762, + 0.01383201964199543, + 0.0025072013959288597, + 0.013058751821517944, + 0.0012812174391001463, + 0.008592737838625908, + -0.01496035885065794, + -0.004035982768982649, + 0.012853599153459072, + -0.028263716027140617, + 0.00747228879481554, + -0.02340317703783512, + -0.025786103680729866, + -0.0021501570008695126, + -0.013934595510363579, + -0.022693034261465073, + -0.0032331261318176985, + -0.008671642281115055, + 0.007681386545300484, + -0.0026946004945784807, + -0.006138796918094158, + -2.3070420866133645e-5, + -0.02794809639453888, + -0.007847086526453495, + 0.02103603258728981, + 0.006537266541272402, + 0.006134851835668087, + 0.00566931301727891, + -0.007397329434752464, + 0.01641220785677433, + 0.008056184276938438, + 0.00927921012043953, + -0.026748742908239365, + -0.01057324931025505, + -0.006525430828332901, + -6.978147575864568e-5, + -0.026890771463513374, + 0.015047154389321804, + -0.02902120165526867, + -0.01963152550160885, + 0.008703204803168774, + -0.007338150404393673, + -0.004158285446465015, + -0.005685094278305769, + -0.0045409738086164, + -0.014147638343274593, + -0.015047154389321804, + 0.010415439493954182, + -0.0060559469275176525, + 0.011062459088861942, + 0.011385968886315823, + -0.008300789631903172, + 0.006742419209331274, + 0.008821561932563782, + -0.0004105517582502216, + 0.031372565776109695, + 0.009760529734194279, + -0.01877935230731964, + 0.005030184052884579, + -0.003931433893740177, + -0.005957315675914288, + -0.006781871430575848, + 0.013792566955089569, + -0.015260197222232819, + 0.006174304056912661, + 0.009358114562928677, + -0.011172926053404808, + -0.013437495566904545, + -0.014991920441389084, + -0.021398993209004402, + -0.008679533377289772, + -0.0006036220584064722, + 0.007941772229969501, + -0.002984575694426894, + -0.008087746798992157, + 0.009003043174743652, + -0.00549966748803854, + -0.022298509255051613, + -0.008529613725841045, + 0.0014143693260848522, + 0.016009792685508728, + 0.013697881251573563, + -0.01827436126768589, + 0.009421238675713539, + -0.010273410938680172, + -0.007941772229969501, + 0.0042766425758600235, + 0.041156768798828125, + -0.003022055607289076, + 0.015899326652288437, + -0.0068962834775447845, + 0.004501521587371826, + 0.0211464986205101, + 0.007113271858543158, + 0.02289818599820137, + -0.012411732226610184, + -0.023198025301098824, + 0.006556992419064045, + 0.016254398971796036, + 0.03254035860300064, + -0.02881604991853237, + 0.004978895653039217, + -0.02766403928399086, + 0.01759578101336956, + -0.005172212608158588, + -0.022440537810325623, + 0.03708527609705925, + -0.006576718762516975, + 0.0007466371171176434, + -0.00505385547876358, + -0.005045964848250151, + -0.01712235063314438, + -0.009003043174743652, + 0.003047699574381113, + -0.007050147745758295, + 0.017138132825493813, + 0.00797333475202322, + 0.016743607819080353, + -0.002373063238337636, + -0.012017208151519299, + -0.0022961311042308807, + -0.0012999572791159153, + -0.0447232648730278, + 0.00978420116007328, + 0.0007348013459704816, + -0.007523577194660902, + -0.008340242318809032, + -0.01945793442428112, + 0.000670691195409745, + -0.0019223192939534783, + -0.014770987443625927, + 0.017106570303440094, + 0.008576956577599049, + 0.016712045297026634, + -0.00633211387321353, + 0.014408024959266186, + -0.008221885189414024, + 0.012916723266243935, + 0.007807634305208921, + -0.021556803956627846, + 0.005420763045549393, + -0.01576518826186657, + -0.008442818187177181, + -0.022661471739411354, + -0.009437019936740398, + 0.011527997441589832, + 0.01770624704658985, + -0.009500143118202686, + -0.0028681911062449217, + -0.013042970560491085, + 0.00252692773938179, + 0.0016224809223785996, + 0.014676300808787346, + 0.008537503890693188, + -0.013208671472966671, + -0.013263904489576817, + -0.013879362493753433, + -0.004611988086253405, + -0.002343473955988884, + -0.020483698695898056, + -0.024065976962447166, + 0.00938967615365982, + 0.006249263882637024, + -0.0071290526539087296, + -0.0012950258096680045, + 0.009594828821718693, + 0.018858257681131363, + 0.020972907543182373, + 0.020846659317612648, + 0.01381623838096857, + 0.01641220785677433, + -0.006553047336637974, + -0.011764712631702423, + -0.014881453476846218, + 0.0001361108588753268, + -0.003379100002348423, + 0.014092405326664448, + 0.005377365276217461, + -0.000652444432489574, + 0.022693034261465073, + -0.0014952467754483223, + -0.01776937022805214, + 0.026969676837325096, + -0.0022014451678842306, + 0.04131457582116127, + 0.010802073404192924, + -0.014408024959266186, + 0.00888468511402607, + 0.000276413542451337, + 0.011977755464613438, + -0.003209454473108053, + -0.013484838418662548, + 0.00349351204931736, + 0.009902558289468288, + -0.008087746798992157, + 0.008379695005714893, + -0.0019548675045371056, + 0.009239757433533669, + -3.0698916816618294e-5, + -0.013240233063697815, + -0.018463734537363052, + -0.018621543422341347, + 0.037243086844682693, + 0.006268989760428667, + 0.010439110919833183, + 0.0076932222582399845, + 0.0012319019297137856, + -0.016964541748166084, + -0.02120962180197239, + -0.012940394692122936, + 0.012893051840364933, + 0.014455367811024189, + -0.028358401730656624, + 0.004671166650950909, + 0.018227018415927887, + -0.018574200570583344, + 0.001385766314342618, + -0.011220268905162811, + 0.016112368553876877, + 0.005219555459916592, + -0.005756108555942774, + -0.003629622980952263, + 0.014084515161812305, + -0.013484838418662548, + -0.002402652520686388, + 0.002023909240961075, + -0.009058276191353798, + -0.004339766688644886, + -0.01605713553726673, + 0.0026334491558372974, + -0.0161912739276886, + 0.0053497483022511005, + -0.029005421325564384, + -0.0027873136568814516, + -0.010115601122379303, + 0.0010671879863366485, + 0.0270170196890831, + -0.003367264289408922, + 0.006091454066336155, + 0.003769678995013237, + -0.012601103633642197, + 0.014171309769153595, + -0.013966158032417297, + 0.0031818379648029804, + 0.020231202244758606, + -0.0011963946744799614, + 0.01222236081957817, + 0.023560985922813416, + 0.01751687563955784, + -0.013319137506186962, + -0.0007357876747846603, + -0.002576243132352829, + -0.02143055573105812, + 0.015780968591570854, + 0.008576956577599049, + 0.009523814544081688, + 0.0003624691453296691, + -0.011133473366498947, + -0.00841914676129818, + -0.018227018415927887, + -0.0014449449954554439, + 0.006111180409789085, + -0.015149730257689953, + -0.0004995663184672594, + -0.01838482916355133, + 0.00470272870734334, + 0.025565169751644135, + -0.013445385731756687, + 0.0003540854959283024, + -0.017406409606337547, + 0.013358590193092823, + -0.014644739218056202, + 0.005211664829403162, + -0.007539357990026474, + 0.007566974498331547, + 0.0023059940431267023, + 0.017327504232525826, + 0.0032291808165609837, + -0.025170644745230675, + 0.00879789050668478, + -0.01222236081957817, + -0.003791377879679203, + -0.005330022424459457, + -0.015315430238842964, + 0.020341668277978897, + -0.009373895823955536, + -0.009894667193293571, + -0.01942637376487255, + 0.012214469723403454, + -0.02769559994339943, + 0.013705771416425705, + -0.010123491287231445, + -0.0009231867152266204, + 0.0051564318127930164, + 0.016459550708532333, + -0.010762620717287064, + -0.0022349797654896975, + 0.007503850851207972, + 0.02100447006523609, + 0.00023128982866182923, + -0.0012151346309110522, + 0.015591597184538841, + -0.008182432502508163, + -0.0010770511580631137, + 5.628905000776285e-6, + 0.02329271100461483, + 0.022298509255051613, + 0.0030871520284563303, + -0.011954084038734436, + -0.0181638952344656, + 0.007630098611116409, + -0.02400285378098488, + -0.012680009007453918, + 0.009768419899046421, + -0.006209811195731163, + -0.01542589720338583, + 0.012979847379028797, + -0.02837418206036091, + 0.00439894525334239, + -0.019757773727178574, + -0.015165511518716812, + -0.021635709330439568, + -0.015370664186775684, + -0.016222836449742317, + 0.012861489318311214, + 0.00011965179874096066, + 0.000869925890583545, + -0.006371566094458103, + -0.0013768895296379924, + 0.02250366099178791, + 0.0076932222582399845, + -0.017280161380767822, + -0.012269703671336174, + 0.026417342945933342, + 0.01429755799472332, + 0.012419622391462326, + 0.03711684048175812, + -0.004639605060219765, + -0.020594164729118347, + -0.002000237815082073, + 0.0030851794872432947, + 0.012009317055344582, + 0.0021541023161262274, + -0.0014301503542810678, + -0.01316921878606081, + -0.012822037562727928, + 0.0201365165412426, + 0.010454892180860043, + -0.00162149453535676, + 0.0022093355655670166, + -0.0007140888483263552, + 0.012577432207763195, + 0.016932979226112366, + 0.01189885102212429, + -0.023245368152856827, + 0.0013906979002058506, + 0.023908168077468872, + 0.012719460763037205, + -0.0050578005611896515, + 0.008766327984631062, + 0.011401750147342682, + -0.020120736211538315, + 0.004327930975705385, + 0.017643123865127563, + -0.0031936736777424812, + 0.010581139475107193, + -0.009452800266444683, + 0.021272746846079826, + -0.00536552956327796, + 0.016285959631204605, + 0.0029490685556083918, + 0.01476309634745121, + 0.0025486263912171125, + -0.0013473002472892404, + -0.005144596099853516, + 0.04709041118621826, + -0.0032410165295004845, + -0.0021107045467942953, + 0.02007339335978031, + 0.007101436145603657, + -0.015094497241079807, + -0.008490161038935184, + 0.007898375391960144, + -0.016712045297026634, + 0.004994676914066076, + 0.019789334386587143, + -0.01759578101336956, + 0.0018414418445900083, + 0.006201921030879021, + -0.02343473955988884, + 0.002096896292641759, + 0.0025446813087910414, + 0.004197737667709589, + 0.007906265556812286, + 0.004079380538314581, + -0.002144239144399762, + 0.0172012560069561, + 0.00972896721214056, + -0.006659568753093481, + -0.002509174169972539, + 0.025202207267284393, + 0.007929936982691288, + -0.010557468049228191, + -0.012088222429156303, + -0.014991920441389084, + -0.005460215266793966, + 0.00874265655875206, + 0.023450519889593124, + -0.017390627413988113, + -0.002641339786350727, + -0.0037795421667397022, + -0.009579048492014408, + 0.00035285259946249425, + -0.012395950965583324, + -0.002106759464368224, + 0.012009317055344582, + 0.01959996297955513, + -0.00600071344524622, + 0.017106570303440094, + -0.011812055483460426, + 0.006864721421152353, + 0.02070463076233864, + -0.011133473366498947, + 0.017674684524536133, + 0.008569066412746906, + -0.014415915124118328, + 0.01601768285036087, + 0.006876557134091854, + -0.010494344867765903, + -0.015891436487436295, + 0.013903033919632435, + -0.005984932649880648, + 0.004016256425529718, + 0.01906341128051281, + 0.0021501570008695126, + 0.0052590081468224525, + 0.01428177673369646, + 0.004091216251254082, + 0.026022817939519882, + 0.00684499554336071, + 0.014628957957029343, + 0.0002484269789420068, + -0.0025289002805948257, + 0.0074762338772416115, + -0.011314954608678818, + -0.008071965537965298, + 0.009105619043111801, + 0.006292661186307669, + -0.004485740326344967, + -0.006300551816821098, + -0.0004899497726000845, + 0.0056811487302184105, + 0.020767755806446075, + 0.008521723560988903, + 0.006860776338726282, + -0.006371566094458103, + 0.004537028726190329, + 0.023955510929226875, + 0.0054917773231863976, + 0.01133862603455782, + -0.0033652917481958866, + -0.02281928062438965, + 0.014684191904962063, + 0.0033297843765467405, + 0.00831657089293003, + -0.0028938353061676025, + -0.004521247465163469, + 0.02267725206911564, + -0.0191738773137331, + -0.0047106193378567696, + -0.021335870027542114, + -0.011141364462673664, + 0.003319921437650919, + -0.008805780671536922, + 0.003450114279985428, + 0.021241184324026108, + 0.004604097921401262, + 0.012206579558551311, + 0.004272697493433952, + -0.019805116578936577, + -0.0037755968514829874, + -0.010076148435473442, + -0.005771889351308346, + 0.02540736086666584, + 0.012411732226610184, + 0.021367432549595833, + 0.012924613431096077, + 0.03686434403061867, + -0.0028287386521697044, + 0.0065057044848799706, + 0.0005942521383985877, + -0.004343711771070957, + -0.011141364462673664, + -0.019252782687544823, + -0.026827646419405937, + -0.0003784966829698533, + 0.014447476714849472, + 0.012474856339395046, + -0.009050386026501656, + -0.0006820337730459869, + -0.0038880363572388887, + 0.04226143658161163, + -0.00038096244679763913, + 0.015709955245256424, + -0.023955510929226875, + -0.008300789631903172, + 0.010951992124319077, + -0.015930887311697006, + 0.0056061893701553345, + 0.0032883593812584877, + -0.01496035885065794, + 2.0096078515052795e-5, + 0.002962877042591572, + -0.018053429201245308, + 0.00992622971534729, + 0.033455654978752136, + 0.009089837782084942, + 0.0031463305931538343, + 0.026180626824498177, + -0.03332940489053726, + -0.002657120581716299, + -0.0106758251786232, + 0.010233958251774311, + -0.009579048492014408, + -0.012175017967820168, + -0.015402225777506828, + -0.010951992124319077, + 0.015007701702415943, + -0.009302881546318531, + 0.006608280818909407, + -0.004351602401584387, + -0.015599488280713558, + -0.0036690752021968365, + 0.006407073233276606, + 0.01597823202610016, + -0.002329665469005704, + -0.005771889351308346, + 0.014676300808787346, + -0.028295276686549187, + 0.031909119337797165, + -0.017832495272159576, + -0.004596207290887833, + 0.01556792575865984, + 0.004272697493433952, + 0.008640080690383911, + -0.008356022648513317, + 0.010612701997160912, + -0.029005421325564384, + -0.017469532787799835, + -0.011512217111885548, + 0.012048769742250443, + -0.00023067338042892516, + 0.002262596506625414, + 0.004288478288799524, + 0.00954748596996069, + 0.008387585170567036, + -0.005921808537095785, + -0.004469959530979395, + -0.007492015138268471, + 0.0029904935508966446, + -0.007945718243718147, + 0.01748531311750412, + -0.007961498573422432, + -0.007061983458697796, + -0.01698032207787037, + 0.012348608113825321, + -0.00218960945494473, + 0.036138419061899185, + -0.017217036336660385, + -0.011606902815401554, + -0.004619878716766834, + 0.010802073404192924, + 0.0036197598092257977, + -0.0021935547702014446, + -0.01759578101336956, + -0.012372279539704323, + 0.0054325987584888935, + 0.008545394986867905, + -0.020310107618570328, + 0.003268633270636201, + 0.009618500247597694, + 0.006667459383606911, + -0.01776937022805214, + -0.01698032207787037, + -0.0017487286822870374, + -0.014897234737873077, + -0.00715666962787509, + 0.023671453818678856, + -0.031041165813803673, + 0.006600390188395977, + -0.023624110966920853, + 0.0010109683498740196, + -0.0049591693095862865, + 0.006422854494303465, + -0.0002571804798208177, + 0.004466014448553324, + 0.02382926270365715, + -0.0016856048023328185, + 0.012119784019887447, + -0.006699021439999342, + -0.01784827560186386, + -0.007077764719724655, + -0.008876794949173927, + -0.0036434312351047993, + -0.015165511518716812, + 0.01053379662334919, + -0.01985245943069458, + 0.021730395033955574, + -0.015930887311697006, + -0.028358401730656624, + -0.03141991049051285, + 9.517896978650242e-5, + 0.003489566734060645, + 0.008987261913716793, + -0.020609945058822632, + 0.013800457119941711, + 0.011827836744487286, + -0.01198564562946558, + -0.02207757532596588, + -0.006762145087122917, + 0.006517540197819471, + -0.015354882925748825, + 0.014060843735933304, + 0.0009547486552037299, + -0.004221409093588591, + -0.009294990450143814, + -0.0003109344106633216, + 0.0179587434977293, + -0.03497062623500824, + -0.0008230761741288006, + 0.024097539484500885, + -0.005286624655127525, + -0.02117806114256382, + -1.4902536349836737e-5, + -0.004185901954770088, + -0.006237428169697523, + -0.00972896721214056, + 0.006087508983910084, + 0.003503375221043825, + -0.018037647008895874, + -0.005014402791857719, + -0.010304972529411316, + -0.01866888627409935, + 0.02154102362692356, + -0.0014360682107508183, + 0.007551193702965975, + -0.014597396366298199, + -0.022124918177723885, + -5.572654845309444e-5, + -0.03006274625658989, + -0.0007673496147617698, + -0.0008852137252688408, + -0.011780492961406708, + 0.013895142823457718, + 0.0010662017157301307, + 0.004442342557013035, + 0.0015938779106363654, + 0.004106997046619654, + 0.003909735009074211, + 0.008269228041172028, + -0.004955224227160215, + -0.0016451660776510835, + -0.015023482963442802, + -0.007492015138268471, + -0.02644890360534191, + 0.009973572567105293, + -0.010328643955290318, + -0.013761005364358425, + 0.02281928062438965, + -0.0025367906782776117, + -0.002542708534747362, + -0.001175682176835835, + -0.0032153723295778036, + -0.009902558289468288, + -0.017295941710472107, + -0.011796274222433567, + 0.01449482049793005, + -0.004438397474586964, + -0.0024598585441708565, + 0.011654245667159557, + -0.0010415439028292894, + -0.009634281508624554, + 0.007338150404393673, + 0.003213399788364768, + -0.01057324931025505, + 0.009003043174743652, + -5.893205525353551e-5, + 0.012356499210000038, + 0.003124631941318512, + -0.012656337581574917, + -0.027537791058421135, + -0.027585133910179138, + 0.013950376771390438, + 0.0017950852634385228, + -0.010723168030381203, + 0.000267043593339622, + -0.00649386877194047, + -0.011875179596245289, + 0.011606902815401554, + -0.015796750783920288, + -0.018763571977615356, + 0.003625677665695548, + -0.001090859528630972, + 0.013674209825694561, + 0.010091929696500301, + 0.03208271041512489, + -0.022314289584755898, + 0.012743132188916206, + 0.011906741186976433, + 0.01691719889640808, + 0.0018177704187110066, + -0.0042016832157969475, + 0.018605763092637062, + 0.003191700903698802, + 0.014352791011333466, + 0.009145071730017662, + -0.017816714942455292, + 0.007298698183149099, + 0.018290143460035324, + 0.004801359958946705, + -0.01546534989029169, + -0.0046514407731592655, + -0.0292421355843544, + -0.006414963863790035, + -0.016854075714945793, + -0.0013630811590701342, + 0.00879789050668478, + 0.016254398971796036, + 0.016885636374354362, + 0.001020831405185163, + -0.0028839721344411373, + -0.023781919851899147, + 0.009239757433533669, + -0.023134900256991386, + -0.01712235063314438, + 0.028531992807984352, + 0.02687499113380909, + 0.014005609788000584, + 0.007050147745758295, + 0.010778401978313923, + 0.0029214518144726753, + -0.019284343346953392, + -0.028421524912118912, + 0.02174617536365986, + 0.007247410248965025, + 0.014068733900785446, + -0.01298773754388094, + -0.0240817591547966, + -0.010462782345712185, + -0.002199472626671195, + -0.00218960945494473, + -0.017185475677251816, + -0.014589506201446056, + -0.004426561761647463, + 0.0201365165412426, + -0.01546534989029169, + 0.01270368043333292, + 0.006265044678002596, + -0.0017181530129164457, + 0.003714445512741804, + 0.003781514707952738, + -0.013177108950912952, + 0.013042970560491085, + 0.007267136126756668, + -0.018795134499669075, + -0.002785341115668416, + -0.015796750783920288, + 0.017217036336660385, + 0.019300125539302826, + 0.00762220798060298, + 0.013705771416425705, + 0.00731842452660203, + -0.007574865128844976, + -0.028247933834791183, + 0.006943626329302788, + 0.000670691195409745, + -0.009855215437710285, + 0.00439894525334239, + -0.018542638048529625, + 0.005795560777187347, + 0.009058276191353798, + 0.0002452214539516717, + 0.01139385998249054, + 0.014360682107508183, + 0.003471813164651394, + -0.01153588853776455, + -0.001311793108470738, + 0.006624061614274979, + 0.006399183068424463, + 0.0009207209222950041, + -0.01863732375204563, + 0.0011914632050320506, + 0.0031147687695920467, + 0.000803349947091192, + -0.003140412736684084, + -0.029573535546660423, + 0.017722027376294136, + -0.01638064533472061, + -0.011251830495893955, + 0.015709955245256424, + -0.0022251165937632322, + 0.006975188385695219, + 0.02035745047032833, + -0.0005345803219825029, + 0.01139385998249054, + 0.0021876369137316942, + 0.000976447481662035, + 0.0008270214311778545, + -0.0015850011259317398, + 0.003390935715287924, + 0.02444472163915634, + 0.0026886826381087303, + -0.005704820156097412, + 0.0029115888755768538, + -0.0028090125415474176, + -0.014171309769153595, + 0.009705295786261559, + -0.0037341718561947346, + -0.014557943679392338, + -0.007484124507755041, + 0.0034244703128933907, + -0.009839434176683426, + 0.016096588224172592, + 0.0008191309170797467, + 0.005590408109128475, + 0.014834110625088215, + 0.003676965832710266, + 0.01787983812391758, + 0.015970339998602867, + -0.002505228854715824, + -0.005120924673974514, + -0.0019262644927948713, + 0.007235574070364237, + -0.01524441596120596, + -0.01073105912655592, + 0.017674684524536133, + -0.01959996297955513, + -0.0012654364109039307, + 0.014202872291207314, + 0.021793518215417862, + 0.007906265556812286, + 0.023987073451280594, + -0.012317046523094177, + -0.014037172310054302, + -0.008324461057782173, + 0.026685617864131927, + 0.007819470018148422, + -0.014202872291207314, + 0.0024342145770788193, + 0.012482746504247189, + 0.0004985799896530807, + -0.019789334386587143, + -0.010644263587892056, + -0.015236525796353817, + -0.006872612051665783, + -0.05075159668922424, + -0.011614792980253696, + -0.00892413780093193, + 0.009287100285291672, + -0.011078240349888802, + 0.0025407359935343266, + -0.008206103928387165, + -0.006533320993185043, + 0.005554900970309973, + 0.005460215266793966, + 0.02075197361409664, + -0.00960271991789341, + -0.011819945648312569, + -0.022740377113223076, + -0.026685617864131927, + 0.02199866995215416, + -0.0029727399814873934, + 0.0045094117522239685, + -0.006063837558031082, + 0.00028035877039656043, + -0.010794183239340782, + -0.0005138678243383765, + -0.0252968929708004, + -0.015528473071753979, + 0.006588554475456476, + -0.0006243346142582595, + 0.012025098316371441, + -0.00912140030413866, + -0.009302881546318531, + 0.0026551480405032635, + -0.0030575627461075783, + -0.007034366950392723, + 0.003728253999724984, + 0.008963590487837791, + 0.02780606783926487, + 0.00198938837274909, + -0.008703204803168774, + -0.0017585917375981808, + -0.007073819171637297, + 0.015173401683568954, + -0.0062729353085160255, + -0.005767944268882275, + -0.01705922745168209, + 0.009957791306078434, + -0.01627017930150032, + -0.008647970855236053, + 0.020325887948274612, + 0.00888468511402607, + 0.01200142689049244, + -0.004860538523644209, + 0.0026078051887452602, + -0.017437970265746117, + -0.0053379125893116, + -0.014005609788000584, + -0.007716893684118986, + -0.028973858803510666, + 0.01222236081957817, + -0.02117806114256382, + 0.015780968591570854, + -0.014842001721262932, + -0.0009049399523064494, + -0.01397404819726944, + -0.025139084085822105, + 0.021903984248638153, + 0.016364865005016327, + -0.0018848394975066185, + 0.0012683953391388059, + 0.01838482916355133, + 0.004919717088341713, + 0.011670026928186417, + -0.0028109850827604532, + 0.006379456724971533, + -0.03310847282409668, + 0.02572297863662243, + -0.006036220584064722, + -0.01359530445188284, + 0.0011026952415704727, + -0.00960271991789341, + 0.023560985922813416, + 4.543193063000217e-5, + 0.015331211499869823, + 0.008624299429357052, + 0.02949463203549385, + -0.01909497193992138, + -0.004347656853497028, + -0.013989829458296299, + -0.006083563435822725, + 0.0053379125893116, + -0.028926515951752663, + -0.027206391096115112, + 0.01920543983578682, + 0.008663752116262913, + 0.0016826458740979433, + -0.008363913744688034, + 0.016822513192892075, + 0.029005421325564384, + -0.007997006177902222, + 0.0065214852802455425, + 0.0037223361432552338, + -0.016317522153258324, + -0.00503412913531065, + 0.012553760781884193, + -0.02955775521695614, + 0.027679819613695145, + 0.025139084085822105, + -0.003132522339001298, + -0.02622796967625618, + -0.009373895823955536, + -0.019663088023662567, + 0.030725546181201935, + 0.02464987337589264, + 0.027111705392599106, + -0.0031226591672748327, + -0.005468105897307396, + 0.008442818187177181, + 0.032729730010032654, + 0.010951992124319077, + -0.017027664929628372, + 0.013761005364358425, + -0.009010933339595795, + -0.006841049995273352, + 0.0019223192939534783, + -0.01542589720338583, + -0.03411845490336418, + 0.013090313412249088, + 0.00404781848192215, + -0.007231628987938166, + -0.00829289946705103, + -0.029210573062300682, + 0.00015139866445679218, + -0.024776121601462364, + 0.007495960220694542, + -0.0035881977528333664, + 0.03031524084508419, + 0.015110277570784092, + 0.00664773304015398, + -8.950768096838146e-5, + 0.02719060890376568, + -0.002929342444986105, + -0.019836677238345146, + -0.004647495225071907, + -0.018290143460035324, + 0.015015591867268085, + 0.0010257629910483956, + -0.035096876323223114, + -0.025959694758057594, + 0.006714802235364914, + -0.0010001189075410366, + 0.014289667829871178, + 0.00680948793888092, + -0.019947145134210587, + 0.003098987741395831, + 0.017217036336660385, + 0.01494457758963108, + -0.0038978992961347103, + -0.003179865190759301, + 0.01040754932910204, + -0.024034416303038597, + -0.0070698740892112255, + -0.00535763893276453, + -0.00813508965075016, + 0.01137807872146368, + 0.01119659747928381, + 0.007231628987938166, + -0.0037164182867854834, + 0.028468867763876915, + 0.004071489907801151, + 0.01381623838096857, + -0.01683829352259636, + -0.0051564318127930164, + -0.004773742984980345, + 0.014210762456059456, + -0.003183810506016016, + 0.00944491010159254, + 0.02346630021929741, + -0.015394335612654686, + -0.0015455486718565226, + -0.005835013464093208, + 0.006501759402453899, + -0.011827836744487286, + 0.00519588403403759, + 0.003239043988287449, + -0.006407073233276606, + -0.011693698354065418, + -0.00831657089293003, + -0.01152010727673769, + 0.006746364291757345, + 0.027364199981093407, + 0.025233769789338112, + -0.007965443655848503, + -0.001197381061501801, + 0.010304972529411316, + 0.01888982020318508, + -0.0013581496896222234, + -0.015023482963442802, + 0.011725259944796562, + 0.003128577023744583, + -0.006016494240611792, + -0.008012787438929081, + 0.004249026067554951, + 0.0054483795538544655, + 0.003935378976166248, + 0.008119308389723301, + -0.011496435850858688, + -0.00616246834397316, + -0.003284414066001773, + -0.02554938942193985, + 0.01541011594235897, + 0.00827711820602417, + 0.002917506732046604, + 0.013279685750603676, + 0.021272746846079826, + 0.008221885189414024, + 0.010076148435473442, + -0.0056495871394872665, + 0.007298698183149099, + 0.01663314178586006, + -0.008048294112086296, + -0.03310847282409668, + 0.015788858756422997, + 0.010439110919833183, + -0.02780606783926487, + -0.009681624360382557, + -0.0007086641271598637, + 0.009089837782084942, + 0.009942010045051575, + 0.005988877732306719, + 0.005223500542342663, + 0.025849226862192154, + 0.016491113230586052, + 0.010636373423039913, + -0.011172926053404808, + 0.02777450531721115, + -0.013895142823457718, + 0.020041830837726593, + 0.02651202864944935, + 0.0106758251786232, + -0.0008304734947159886, + 0.01077051181346178, + -0.016601579263806343, + -0.0044936309568583965, + -0.0021935547702014446, + 0.0002527420874685049, + -0.003059535287320614, + 0.006253208965063095, + 7.882778845669236e-6, + 0.017548438161611557, + -0.006951516959816217, + -0.010462782345712185, + -0.0011411613086238503, + -0.015836201608181, + 0.008718985132873058, + -0.03148303180932999, + 0.018227018415927887, + 0.017153913155198097, + 0.007263191044330597, + -0.01391881424933672, + 0.005247172433882952, + -0.005980987101793289, + 0.006063837558031082, + -0.01316921878606081, + 0.011283393017947674, + -0.002722217235714197, + 0.008237665519118309, + -0.010502235032618046, + -0.013208671472966671, + -0.014542163349688053, + 0.0007426918600685894, + 0.0011253803968429565, + 0.0179587434977293, + 0.01071527786552906, + 0.001027735648676753, + 0.011527997441589832, + -0.007929936982691288, + -0.02078353613615036, + -0.011165035888552666, + 0.0025999145582318306, + -0.014936687424778938, + 0.002487475285306573, + -0.002037717727944255, + -0.008028567768633366, + -0.00517615769058466, + 0.013934595510363579, + 0.007701112888753414, + 0.01776937022805214, + -0.010399658232927322, + -0.0333925299346447, + -0.007322369609028101, + 0.0007461439236067235, + -0.015094497241079807, + -0.010636373423039913, + 0.005984932649880648, + -0.009200304746627808, + -0.005673258565366268, + 0.0007841169135645032, + -0.0031700022518634796, + 0.007046202663332224, + 0.003998503088951111, + -0.00944491010159254, + -0.0053379125893116, + 0.016727827489376068, + -0.006083563435822725, + -0.012853599153459072, + 0.016254398971796036, + -0.008387585170567036, + 0.0033692368306219578, + -0.01316921878606081, + -0.009965682402253151, + -0.0015228635165840387, + 0.022724594920873642, + -0.012735242024064064, + -0.003481676336377859, + 0.02881604991853237, + -0.009697405621409416, + 0.0028622732497751713, + 0.025091741234064102, + -0.011748931370675564, + -0.013476947322487831, + 0.02318224310874939, + -0.005531229544430971, + 0.01863732375204563, + -0.01428177673369646, + -0.011780492961406708, + 0.014037172310054302, + -0.010399658232927322, + 0.01663314178586006, + -0.02218804322183132, + -0.00960271991789341, + -0.022266946732997894, + 0.018258580937981606, + -0.0010543660027906299, + 0.026022817939519882, + -0.009863105602562428, + 0.004458123818039894, + -0.021872423589229584, + -0.0056061893701553345, + 0.0036789383739233017, + -0.004343711771070957, + -0.01477887760847807, + -0.005641696508973837, + 0.013177108950912952, + -0.002347419038414955, + -0.012269703671336174, + -0.014337010681629181, + 0.022992871701717377, + -0.007535412907600403, + 0.0022270893678069115, + 0.01565472036600113, + 0.005531229544430971, + -0.01010771095752716, + -0.013792566955089569, + -0.003769678995013237, + -0.0034067167434841394, + -0.0014557944377884269, + -0.01999448798596859, + -0.0013443413190543652, + -0.0023553096689283848, + 0.01810077205300331, + 0.004785578697919846, + -0.0006480060401372612, + 0.0005730464472435415, + -0.011646355502307415, + 0.012719460763037205, + 0.001990374643355608, + -0.017169693484902382, + 0.002317829756066203, + 0.0172012560069561, + -0.017280161380767822, + 0.006391292437911034, + -0.025391578674316406, + 0.003039809176698327, + 0.004359492566436529, + 0.008671642281115055, + 0.0023553096689283848, + 0.0011677916627377272, + -0.0054917773231863976, + -0.005081471987068653, + -0.012017208151519299, + -0.0015416033565998077, + 0.01216712687164545, + 0.05245593935251236, + 0.021304307505488396, + 0.01316921878606081, + -0.01350850984454155, + 0.0021836915984749794, + -0.016207056120038033, + 0.0012536006979644299, + -0.0007712948718108237, + -0.019757773727178574, + -0.012064551003277302, + 0.011157144792377949, + -8.235693530878052e-5, + 0.008711094968020916, + 0.012640556320548058, + -0.014557943679392338, + 0.01218290813267231, + -0.0007303629536181688, + 4.586344221024774e-5, + 0.004659330938011408, + 0.016932979226112366, + -0.0066201165318489075, + 0.020294325426220894, + -0.0003459484432823956, + -0.011046678759157658, + 0.008213994093239307, + -0.0017280160682275891, + 0.00422929972410202, + -0.011961974203586578, + 0.0022764047607779503, + -0.011425421573221684, + 0.020168079063296318, + -0.013579524122178555, + -0.03437095135450363, + 0.011086130514740944, + 0.00926342885941267, + 0.02095712721347809, + -0.0019499360350891948, + 0.014542163349688053, + 0.00860062800347805, + -0.014486929401755333, + -0.027427325025200844, + -0.006292661186307669, + 0.012798366136848927, + -0.0021718558855354786, + -0.01200142689049244, + 0.013910924084484577, + 0.003390935715287924, + 0.014897234737873077, + -0.0027991493698209524, + -0.00635184021666646, + 0.02419222518801689, + -0.004690892994403839, + -0.007002804894000292, + 0.003264687955379486, + -0.015070825815200806, + 0.014557943679392338, + 0.0026886826381087303, + -0.033203158527612686, + 0.0030240281485021114, + -0.0035507180728018284, + -6.774720532121137e-5, + 0.014897234737873077, + 0.0017428107094019651, + 0.013761005364358425, + -0.0022842951584607363, + 0.01087308768182993, + -0.0090819476172328, + 0.009515924379229546, + -0.004481795243918896, + 0.015062934719026089, + 0.02526533231139183, + -0.008016732521355152, + -0.01576518826186657, + -0.01297195628285408, + -0.015504801645874977, + -0.012814146466553211, + -0.009736858308315277, + -0.031183194369077682, + -0.012782584875822067, + 0.009010933339595795, + 0.004675112199038267, + -0.010431220754981041, + 0.004458123818039894, + -0.006434690207242966, + -0.006829214282333851, + -0.0072276839055120945, + -0.0016816594870761037, + -0.0012289430014789104, + 0.010778401978313923, + 0.00888468511402607, + -0.01723281852900982, + 0.010896759107708931, + -0.007152724079787731, + 0.017106570303440094, + 0.006379456724971533, + -0.015126058831810951, + -0.022850843146443367, + -0.003594115609303117, + 0.015504801645874977, + 0.01429755799472332, + -0.00978420116007328, + 0.01219868939369917, + 0.0058231777511537075, + 0.011314954608678818, + -0.015323321335017681, + -0.008876794949173927, + 0.0038781731855124235, + -0.005969151388853788, + -0.012837817892432213, + 0.02577032335102558, + -0.00797333475202322, + 0.017406409606337547, + 0.003010219894349575, + 0.016364865005016327, + 0.01751687563955784, + 0.01974199153482914, + 0.018763571977615356, + -0.0010543660027906299, + 0.02895807847380638, + 0.029321040958166122, + -0.009555377066135406, + 0.009026714600622654, + 0.028863392770290375, + -0.011812055483460426, + 0.012072441168129444, + 0.0025999145582318306, + 0.003706555115059018, + 0.023213805630803108, + 0.0032804689835757017, + -0.01909497193992138, + 0.0040221745148301125, + -0.003481676336377859, + -0.0056811487302184105, + 0.0009976531146094203, + 0.006742419209331274, + -0.006474142428487539, + -0.009989353828132153, + -0.004615933634340763, + 0.03164084255695343, + 0.0012368333991616964, + 0.0028326839674264193, + 0.041977379471063614, + 0.006785816513001919, + 0.00807985570281744, + -0.0002697559248190373, + -0.005744272843003273, + -0.01529964990913868, + 0.016964541748166084, + 0.0069120642729103565, + 0.002556517021730542, + -0.015165511518716812, + -0.016364865005016327, + 0.003386990400031209, + -0.00109776365570724, + -0.0042608617804944515, + 0.0015425897436216474, + 0.015678392723202705, + 0.008028567768633366, + 0.003276523668318987, + 0.008127199485898018, + -0.0029609042685478926, + -0.0023750357795506716, + -0.013784676790237427, + 0.006517540197819471, + 0.008040403947234154, + -0.008821561932563782, + -0.010202396661043167, + 0.018179675564169884, + 0.005708765704184771, + -0.01580464094877243, + -0.014352791011333466, + 0.005957315675914288, + 0.005570682231336832, + -0.0022685143630951643, + 0.001201326260343194, + 0.012474856339395046, + -0.0009887763299047947, + -0.0028030946850776672, + -0.011875179596245289, + -0.0019065382657572627, + 0.01099933497607708, + 0.0193790290504694, + 0.02670140005648136, + -0.004430506844073534, + -0.015631049871444702, + 0.019947145134210587, + -0.009752638638019562, + -0.013066641986370087, + 0.010794183239340782, + -0.008932028897106647, + 0.009768419899046421, + 0.017864057794213295, + -0.018369048833847046, + -0.004659330938011408, + -0.021619927138090134, + 0.016822513192892075, + -0.0019183740951120853, + -0.02382926270365715, + -0.04478638991713524, + 0.0006608280818909407, + 0.00813508965075016, + 0.007882594130933285, + -0.016712045297026634, + 0.013989829458296299 + ], + "c7bf92fe-774f-43ce-a757-092e1c88e11d": [ + -0.01505312044173479, + -0.03748011216521263, + -0.005280882120132446, + 0.00036008129245601594, + -0.03128308057785034, + -0.014420011080801487, + 0.027260970324277878, + 0.029689133167266846, + -0.014367871917784214, + 0.06852484494447708, + -0.0024300250224769115, + 0.024743428453803062, + 0.013183584436774254, + -0.01799521967768669, + -0.017324868589639664, + 0.021674705669283867, + -0.03759928420186043, + 0.033219654113054276, + 0.009250854142010212, + -0.02545846998691559, + 0.044183626770973206, + -0.013704968616366386, + -0.053330205380916595, + 0.014866911806166172, + 0.025562746450304985, + -0.023849625140428543, + 0.0061635118909180164, + 0.00502391392365098, + -0.022896235808730125, + 0.0011368048144504428, + -0.004305148031562567, + 0.012349369004368782, + 0.022672785446047783, + -0.0014533598441630602, + 0.03569250553846359, + -0.0325046107172966, + 0.0048488774336874485, + 0.005552746821194887, + -0.02359638176858425, + -0.005366538185626268, + 0.001930985483340919, + 0.0355435386300087, + -0.0003116670122835785, + -0.014710496179759502, + -0.032385438680648804, + 0.010904388502240181, + 0.016684310510754585, + -0.03217688202857971, + 0.0015324985142797232, + 0.027112003415822983, + 0.013317654840648174, + -0.01686307042837143, + 0.004938257858157158, + -0.005228743422776461, + 0.018203774467110634, + -0.017369559034705162, + 0.04326003044843674, + 0.01717590168118477, + 0.01021169126033783, + -0.03715238347649574, + 0.02014034613966942, + -0.004077973309904337, + 0.012848407961428165, + -0.00195705471560359, + -0.006182132754474878, + -0.020557453855872154, + -0.0006871105288155377, + 0.022657888010144234, + -0.03158101439476013, + -0.01799521967768669, + 0.033249445259571075, + 0.03512643277645111, + -0.053955867886543274, + 0.046298958361148834, + 0.004364734515547752, + -0.006372065749019384, + 0.06393665820360184, + 0.023551691323518753, + 0.005035086534917355, + -0.006230547092854977, + -0.005869301967322826, + 6.648236649198225e-6, + 0.02095966413617134, + -0.01164922397583723, + 0.06947823613882065, + 0.006539653521031141, + -0.04343879222869873, + -0.06429418176412582, + -0.014531736262142658, + -0.019901998341083527, + -0.011485359631478786, + 0.015462780371308327, + -0.019276335835456848, + 0.002834098180755973, + 0.0014868774451315403, + -0.026069235056638718, + 0.024430597200989723, + 0.0003384345327503979, + 0.004390804097056389, + -0.012788821943104267, + 0.029391199350357056, + 0.01509781088680029, + -0.01164922397583723, + 0.017876045778393745, + -0.0006354376091621816, + -0.01565643772482872, + 0.02988279052078724, + -0.013511311262845993, + -0.013071859255433083, + 0.034977465867996216, + 0.018486810848116875, + -0.020617039874196053, + 0.004606806207448244, + 0.0048451535403728485, + -0.0503508634865284, + -0.014546632766723633, + -0.02188326045870781, + -0.01714610867202282, + -0.01827825792133808, + -0.036794863641262054, + 0.021108631044626236, + 0.031789567321538925, + 0.02454977110028267, + -0.007116900756955147, + -0.04877181351184845, + -0.0047408766113221645, + 0.0021097459830343723, + 0.03655651584267616, + 0.03184915706515312, + 0.022955823689699173, + -0.02036379650235176, + -0.0021525740157812834, + 0.009802032262086868, + 0.002461680443957448, + 0.01805480755865574, + 0.026069235056638718, + 0.014658357948064804, + 0.06703517585992813, + -0.03876122832298279, + 0.018546398729085922, + -0.08091890066862106, + -0.03196832910180092, + -0.04609040543437004, + 0.013660279102623463, + 0.009861619211733341, + 0.008722021244466305, + -0.04370693489909172, + 0.050112515687942505, + -0.0280653927475214, + 0.0221811942756176, + -0.05553491786122322, + -0.018769849091768265, + -0.03077659383416176, + 0.009809480048716068, + 0.01523932907730341, + -0.03700341656804085, + -0.008520915172994137, + 0.016639620065689087, + 0.013846487738192081, + 0.04501784220337868, + 0.021376771852374077, + -0.06125525385141373, + 0.008632640354335308, + 0.009861619211733341, + 0.04999334365129471, + -0.00021332547476049513, + 0.056279752403497696, + 0.019008196890354156, + -0.022851545363664627, + 0.021361876279115677, + 0.01446470059454441, + -0.019857307896018028, + 0.02095966413617134, + -0.00140308344271034, + 0.006986554712057114, + 0.00828256830573082, + 0.0325046107172966, + 0.03607982024550438, + 0.015909681096673012, + -0.04960602894425392, + -0.010606453754007816, + -0.014501942321658134, + 0.018769849091768265, + -0.010911836288869381, + 0.017041830345988274, + 0.02833353355526924, + 0.017324868589639664, + 0.0020762283820658922, + 0.0007611285545863211, + 0.014420011080801487, + 0.013719866052269936, + -0.031759776175022125, + -0.014099732041358948, + 0.028765538707375526, + -0.032355643808841705, + -0.036198992282152176, + -0.008386844769120216, + 0.013891177251935005, + 0.01628209836781025, + 0.008923126384615898, + -0.00531812384724617, + -0.0383441187441349, + -0.027990909293293953, + 0.05255557596683502, + -0.02627778798341751, + 0.022836649790406227, + -0.027961116284132004, + -0.0442730076611042, + 0.04585205763578415, + -0.02715669386088848, + 0.028229257091879845, + -0.04039986431598663, + 0.007731390185654163, + -0.019425304606556892, + -0.009831825271248817, + 0.016952451318502426, + -0.002389059169217944, + 0.009846721775829792, + -0.0008998541161417961, + -0.03274295851588249, + 0.010733076371252537, + 0.017518525943160057, + -0.004774393979460001, + -0.03938688710331917, + -0.037629079073667526, + -0.03813556581735611, + -0.034470975399017334, + 0.024356113746762276, + -0.021391669288277626, + 0.009206163696944714, + 0.0002658130833879113, + 0.002538026077672839, + -0.0011312185088172555, + -0.003906661178916693, + 0.0007764907786622643, + 0.01689286343753338, + 0.024102868512272835, + 0.007228626403957605, + -0.011574739590287209, + 0.008915677666664124, + -0.00254733650945127, + 0.037063002586364746, + 0.006845036055892706, + 0.003839625744149089, + 0.02635227143764496, + 0.033011097460985184, + 0.005355365574359894, + 0.061970293521881104, + 0.013325102627277374, + 0.003932730294764042, + 0.021525738760828972, + 0.01347406953573227, + 0.013131445273756981, + -0.002431887201964855, + -0.011314047500491142, + 0.058335497975349426, + 0.023000512272119522, + -0.03390490263700485, + -0.004007213748991489, + -0.01915716379880905, + 0.002564095426350832, + 0.0265757218003273, + 0.009235957637429237, + 0.016460860148072243, + 0.019142266362905502, + -0.02249402552843094, + 0.04632875323295593, + -0.018531501293182373, + 0.0058506811037659645, + 0.04659689590334892, + 0.022642992436885834, + 0.0022065744269639254, + -0.002452370012179017, + 0.012602612376213074, + -0.008006978780031204, + 0.01063624769449234, + 0.015149949118494987, + -0.00023078254889696836, + -0.020289313048124313, + -0.0025231295730918646, + -0.010234036482870579, + -0.013719866052269936, + 0.013533656485378742, + 0.007649458013474941, + -0.008349603042006493, + 0.017071625217795372, + -0.018695365637540817, + -0.006245443597435951, + -0.013354896567761898, + -0.0026478893123567104, + 0.01092673372477293, + 0.01136618573218584, + 0.013630485162138939, + 0.00989141222089529, + 0.0024579563178122044, + 0.013161239214241505, + -0.013191032223403454, + -0.022345058619976044, + -0.028318636119365692, + 0.02219609171152115, + -0.018501708284020424, + 0.0007243523141369224, + -0.006468894425779581, + -0.035632919520139694, + 0.01080011110752821, + 0.01387628074735403, + 0.041502222418785095, + 0.03861226141452789, + -0.02989768795669079, + 0.02033400349318981, + 0.03041907213628292, + -0.030344588682055473, + -0.03408366069197655, + -0.03512643277645111, + -0.01857619173824787, + -0.008491122163832188, + 0.0005497815436683595, + -0.006763104349374771, + -0.02393900603055954, + -0.024132663384079933, + 0.02158532664179802, + -0.006450273562222719, + -0.07293426990509033, + 0.05142342671751976, + 0.046805448830127716, + -0.016624722629785538, + 0.031461842358112335, + -0.012259988114237785, + -0.0710870772600174, + 0.007388765923678875, + -0.020468072965741158, + 0.004901016131043434, + -0.005411228165030479, + 0.0056011611595749855, + -0.006152339279651642, + -0.06912071257829666, + -0.03575209155678749, + -0.030538246035575867, + 0.01711631380021572, + -0.022285470739006996, + -0.015358502976596355, + -0.01596926897764206, + 0.02635227143764496, + -0.0014282215852290392, + 0.0003491415409371257, + -0.004606806207448244, + -0.016431065276265144, + 0.0384930856525898, + -0.02423693984746933, + -0.007135521620512009, + 0.0009198715561069548, + -0.025339296087622643, + 0.017250385135412216, + -0.0088709881529212, + 0.06822691112756729, + -0.0041971467435359955, + -0.038224946707487106, + -0.03217688202857971, + 0.02833353355526924, + -0.0026180960703641176, + 0.028840022161602974, + -0.045405156910419464, + -0.021183114498853683, + 0.009079542011022568, + -0.0016749482601881027, + 0.011470463126897812, + -0.028139876201748848, + -0.010949078015983105, + -0.0030687213875353336, + 0.010174449533224106, + -0.02157042920589447, + 0.012997375801205635, + -0.008371948264539242, + -0.043647345155477524, + -0.022106710821390152, + -0.021451255306601524, + 0.04117449373006821, + -0.019067782908678055, + -0.03435180336236954, + 0.019186956807971, + 0.010613902471959591, + -0.0015138776507228613, + 0.010606453754007816, + 0.010256381705403328, + 0.03703320771455765, + 0.017026934772729874, + 0.026680000126361847, + -0.0001810880785342306, + -0.023402724415063858, + 0.004033282864838839, + -0.014613667502999306, + 0.0236857607960701, + -0.00436845887452364, + 0.010457486845552921, + 0.005035086534917355, + -0.006372065749019384, + 0.0034727943129837513, + -0.013183584436774254, + 0.0064614457078278065, + -0.0032623785082250834, + 0.00021891173673793674, + -0.02449018321931362, + 0.004286527168005705, + 0.02575640380382538, + 0.012178056873381138, + -0.032653577625751495, + -0.025592539459466934, + -0.022359954193234444, + 0.01406248938292265, + 0.0020687798969447613, + -0.010040379129350185, + -0.004990396089851856, + -0.009064645506441593, + 0.020185036584734917, + 0.053330205380916595, + 0.013384689576923847, + 0.005489435978233814, + 0.030374381691217422, + -0.02219609171152115, + -0.03902936726808548, + 0.0414426326751709, + 0.04760986939072609, + 0.005377710796892643, + 0.029674237594008446, + -0.0064577218145132065, + 0.04895057529211044, + 0.017280178144574165, + 0.006830139551311731, + -0.03864205256104469, + -0.02544357255101204, + 0.017324868589639664, + 0.04403465986251831, + 0.000649403256829828, + 0.026158614084124565, + -0.0030594109557569027, + -0.016624722629785538, + -0.003439276944845915, + -0.016401272267103195, + 0.016654515638947487, + 0.0088709881529212, + -0.013652830384671688, + 0.008841194212436676, + -0.00901250634342432, + 0.001031596795655787, + -0.025026464834809303, + -0.01360069215297699, + -0.06697558611631393, + 0.0016656378284096718, + 0.020840490236878395, + -0.0265757218003273, + 0.0017270867247134447, + 0.025652127340435982, + -0.050410449504852295, + -0.0067109656520187855, + 0.001144253183156252, + -0.01859108731150627, + 0.007489318493753672, + 0.0019179508090019226, + 0.038463294506073, + -0.058037564158439636, + -0.004532322753220797, + -0.008759262971580029, + 0.008632640354335308, + -0.012803718447685242, + 0.012811166234314442, + 0.008662434294819832, + 0.003085480071604252, + 0.01020424347370863, + -0.0011135287350043654, + 0.011045906692743301, + -0.014308285899460316, + -0.010591557249426842, + -0.006007096264511347, + 0.035603124648332596, + 0.011120390146970749, + -0.01537339948117733, + -0.012081228196620941, + -0.002418852411210537, + -0.0028378223069012165, + -0.025518056005239487, + -0.009742445312440395, + -0.013191032223403454, + 0.02103414759039879, + -0.00694931298494339, + 0.005131915211677551, + -0.014449804089963436, + 0.0013844625791534781, + -0.04790780320763588, + 0.0023201617877930403, + -0.0033145169727504253, + 0.018814539536833763, + -0.0004911257419735193, + -0.0006680241203866899, + 0.015313813462853432, + -0.011395979672670364, + -0.025950061157345772, + 0.0077164932154119015, + -0.033547379076480865, + -0.023253757506608963, + -0.0016581894597038627, + 0.0022233333438634872, + -0.011157631874084473, + 0.006506136152893305, + 0.005485711619257927, + -0.025652127340435982, + 0.030538246035575867, + -0.014606219716370106, + 0.01523188129067421, + -0.02659061923623085, + -0.019395509734749794, + -0.045047637075185776, + 0.007232350297272205, + -0.023760244250297546, + 0.015105259604752064, + -0.023134583607316017, + 0.01601395756006241, + 0.003640382317826152, + -0.012900547124445438, + 0.05237681418657303, + 0.01477753184735775, + -0.0006182132638059556, + -0.00164701696485281, + -0.030314795672893524, + 0.005913991946727037, + -0.0250711552798748, + -0.026754483580589294, + -0.023879418149590492, + -0.033815521746873856, + 0.025324398651719093, + -0.030538246035575867, + 0.013258067891001701, + 0.021346978843212128, + -0.030925560742616653, + 0.008364500477910042, + 0.012170608155429363, + 0.015432986430823803, + 0.014799877069890499, + 0.0206915233284235, + 0.018159084022045135, + 0.013704968616366386, + -0.06769062578678131, + 0.03450077027082443, + -0.0002441663236822933, + -0.01328786090016365, + -0.010844801552593708, + 0.02574150636792183, + -0.008796504698693752, + 0.033577173948287964, + -0.009854170493781567, + 0.020319106057286263, + -0.03923792019486427, + 0.014755186624825, + 0.007489318493753672, + -0.01298992708325386, + 0.01106080412864685, + -0.054581526666879654, + -0.00473342789337039, + -0.02043827995657921, + -0.012252540327608585, + -0.027335453778505325, + -0.022881340235471725, + 0.029331613332033157, + -0.010949078015983105, + 0.017012037336826324, + -0.009526442736387253, + -0.010613902471959591, + -0.026694895699620247, + 0.03333882614970207, + 0.009578581899404526, + 0.02332824096083641, + 0.03920812904834747, + -0.009772238321602345, + 0.04552433267235756, + 0.014531736262142658, + -0.02721627987921238, + 0.04025089740753174, + -0.006871105171740055, + -0.023462310433387756, + -0.04266416281461716, + -0.019350819289684296, + 0.046001024544239044, + -0.0025324400048702955, + -0.009720100089907646, + -0.012155711650848389, + 0.001083735260181129, + 0.012677095830440521, + -0.012975030578672886, + -0.017905840650200844, + 0.0072100055404007435, + 0.01745893806219101, + 0.012021641246974468, + 0.02034889906644821, + 0.0017075348878279328, + 0.012848407961428165, + -0.02247912809252739, + 0.023700658231973648, + 0.020482970401644707, + 0.029957273975014687, + 0.01167901698499918, + -0.02447528764605522, + 0.01865067519247532, + 0.018725158646702766, + 0.017205694690346718, + -0.003936454188078642, + -0.028229257091879845, + 0.02922733500599861, + 0.005016465671360493, + 0.003118997672572732, + 0.007075935136526823, + 0.020870283246040344, + -0.026233097538352013, + -0.020185036584734917, + 0.05845467001199722, + 0.0024989224039018154, + 0.015879888087511063, + 0.004126387182623148, + 0.011783293448388577, + 0.025249915197491646, + 0.012952685356140137, + -0.01435297541320324, + 0.0192018523812294, + -0.027573801577091217, + 0.04871222749352455, + -0.02577129937708378, + 0.014680703170597553, + 0.029480580240488052, + -0.012140815146267414, + -0.0011293564457446337, + -0.013384689576923847, + 0.0046403235755860806, + 0.030836179852485657, + -0.010129760019481182, + 0.005064880009740591, + -0.02447528764605522, + -0.0063944109715521336, + 0.00701634818688035, + 0.02577129937708378, + 0.008729469031095505, + 0.0015911543741822243, + -0.03143204748630524, + -0.0022121607325971127, + -0.005876750219613314, + 0.010152104310691357, + 0.0887843668460846, + -0.013056961819529533, + 0.016490653157234192, + 0.0006535929278470576, + 0.014159318059682846, + 0.026501238346099854, + 0.006286409683525562, + -0.0077164932154119015, + -0.0036068647168576717, + -0.012773924507200718, + 0.016490653157234192, + 0.0010548729915171862, + -0.02869105525314808, + -0.002461680443957448, + 0.025056257843971252, + -0.0031115494202822447, + 0.005217570811510086, + 0.037986598908901215, + -0.031193701550364494, + -0.005444745998829603, + 0.0009869066998362541, + 0.01714610867202282, + -0.009414717555046082, + 0.012759028002619743, + 0.0030277553014457226, + 0.006658827420324087, + 0.026218201965093613, + 0.0003402966249268502, + -0.010807559825479984, + 0.020900078117847443, + 0.008654985576868057, + -0.008066565729677677, + 0.005213846918195486, + 0.005522953346371651, + 0.01623740792274475, + 0.00407424895092845, + -0.016043752431869507, + -0.004487632308155298, + -0.030508453026413918, + -0.024400804191827774, + 0.026456547901034355, + -0.021391669288277626, + 0.002754028420895338, + -0.022389747202396393, + 0.01269199326634407, + -0.007790976669639349, + -0.0011014251504093409, + -0.0017801562789827585, + 0.012475990690290928, + -0.006491239182651043, + 0.026977933943271637, + -0.01564154028892517, + -0.007813322357833385, + 0.004297699313610792, + -0.017309971153736115, + 0.024326318874955177, + -0.02782704494893551, + -0.05765024945139885, + -0.017026934772729874, + 0.0029569959733635187, + -0.032981306314468384, + -0.006197029259055853, + 0.007452076766639948, + -0.015909681096673012, + -0.007042417302727699, + 0.027722768485546112, + 0.004413148853927851, + 0.020572349429130554, + 0.025294605642557144, + 0.00843898393213749, + 0.02103414759039879, + -0.00015187656390480697, + 0.02809518575668335, + 0.0018900195136666298, + 0.021764086559414864, + -0.013511311262845993, + 0.02510094828903675, + 0.009906308725476265, + 0.021183114498853683, + -0.013421931304037571, + -0.016714103519916534, + -0.045673299580812454, + -0.017637699842453003, + -7.110849401215091e-5, + -0.007090831641107798, + 0.01065859291702509, + -0.009958447888493538, + 0.045047637075185776, + -0.006331099662929773, + 0.004126387182623148, + 0.01213336642831564, + -0.012140815146267414, + -0.016103338450193405, + 0.00577247329056263, + -0.004565840121358633, + 0.020587246865034103, + 0.00011929002357646823, + 0.010919285006821156, + 0.0005967992474325001, + 0.003524933010339737, + -0.03453056141734123, + 0.01154494658112526, + 0.007615940645337105, + 0.050112515687942505, + 0.022955823689699173, + 0.007012623827904463, + -0.01092673372477293, + 0.02155553176999092, + -0.030016861855983734, + 0.03605002537369728, + -0.004759497474879026, + -0.027663182467222214, + 0.00414500804618001, + 0.028005806729197502, + 0.017324868589639664, + -0.010546867735683918, + 0.04549453780055046, + -0.006152339279651642, + 0.026977933943271637, + -0.01165667176246643, + -0.006048062350600958, + -0.004476460162550211, + -0.008312361314892769, + -0.006662551313638687, + 0.016669413074851036, + 0.024073075503110886, + 0.003431828459724784, + 0.02979341149330139, + 0.04671606793999672, + 0.04409424588084221, + 0.02983810007572174, + -0.024460390210151672, + -0.025041362270712852, + 0.018203774467110634, + -0.03640754893422127, + -0.04954644292593002, + -0.006480067037045956, + -0.013891177251935005, + -0.04909954220056534, + 0.030895767733454704, + -0.009317888878285885, + 0.020602144300937653, + -0.024445492774248123, + 0.030568039044737816, + -0.01799521967768669, + -0.021719396114349365, + 0.0047446005046367645, + 0.017220592126250267, + -0.013950764201581478, + 0.00015967406216077507, + 0.01623740792274475, + 0.0023853350430727005, + -0.0162969958037138, + 0.01570112816989422, + -0.01136618573218584, + 0.016207614913582802, + 0.029748721048235893, + 0.02541377954185009, + -0.02329844795167446, + 0.024385906755924225, + 0.03485829010605812, + 0.01747383549809456, + -0.0026907173451036215, + -0.027290763333439827, + 0.016699206084012985, + -0.018963506445288658, + 0.019335923716425896, + -0.005608609411865473, + 0.010852250270545483, + -0.04072759300470352, + 0.0443325936794281, + -0.030314795672893524, + -0.0007778873550705612, + 0.0035007258411496878, + 0.01829315349459648, + 0.047699250280857086, + 0.01093418151140213, + -0.006442824844270945, + 0.021525738760828972, + 0.011962054297327995, + 0.003092928556725383, + 0.02244933508336544, + -0.0006386962486431003, + 0.008908229880034924, + -0.0027521662414073944, + 0.01154494658112526, + 0.006699793040752411, + -0.016907760873436928, + 0.012379162013530731, + -0.01447959803044796, + 0.027141796424984932, + 0.014524287544190884, + 0.02924223244190216, + -0.008431535214185715, + -0.017205694690346718, + -0.022598301991820335, + 0.02632247842848301, + -0.017071625217795372, + -0.03801639378070831, + -0.016356581822037697, + -0.01829315349459648, + -0.022926028817892075, + -0.002431887201964855, + 0.031491633504629135, + -0.012073779478669167, + 0.028273947536945343, + 0.03393469378352165, + 0.03524560481309891, + 0.0010930458083748817, + -0.012230195105075836, + 0.017354661598801613, + -0.025235019624233246, + 0.01434552762657404, + -0.01165667176246643, + 0.03464973717927933, + -0.021406564861536026, + 0.0070014516822993755, + 0.017280178144574165, + -0.0038247290067374706, + -0.037063002586364746, + -0.01079266332089901, + 0.013794349506497383, + -0.0027056140825152397, + -0.009854170493781567, + 0.017637699842453003, + -0.0062082018703222275, + 0.012230195105075836, + -0.018471915274858475, + -0.010457486845552921, + 0.009288095869123936, + 0.048622846603393555, + -0.003422518027946353, + -0.0077164932154119015, + -0.022821752354502678, + -0.013719866052269936, + -0.03196832910180092, + -0.02304520271718502, + -0.0056421272456645966, + 0.016639620065689087, + 0.012066331692039967, + 0.01195460557937622, + -0.03232584893703461, + -0.0067072417587041855, + 0.01491160225123167, + -0.013243171386420727, + 0.01984241232275963, + 0.004249284975230694, + 0.006859933026134968, + 0.01570112816989422, + -0.017503628507256508, + -0.022017329931259155, + -0.014442355372011662, + 0.023879418149590492, + 0.002720510819926858, + 0.0026907173451036215, + -0.01652044616639614, + 0.006617861334234476, + 0.007776080165058374, + -0.03399427980184555, + -0.022821752354502678, + -0.01568623073399067, + 0.035603124648332596, + -0.048861194401979446, + 0.004532322753220797, + 0.012907994911074638, + 0.021674705669283867, + 0.004256733693182468, + -0.010815007612109184, + 0.02279195934534073, + 0.0018220532219856977, + -0.013362344354391098, + 0.03905916213989258, + 0.028214359655976295, + 0.01659492962062359, + -0.021093735471367836, + 0.0005386089906096458, + -0.01917205937206745, + 0.01223764382302761, + 0.0013351172674447298, + 0.011135287582874298, + 0.020036067813634872, + -0.0010250795166939497, + -0.008468776941299438, + -0.013541105203330517, + -0.004603081848472357, + -0.016073545441031456, + 0.015790507197380066, + -0.01183543261140585, + -0.0027186486404389143, + -0.018442120403051376, + 0.00028047701925970614, + 0.03155122324824333, + -0.029689133167266846, + -0.014591323211789131, + -0.009541340172290802, + -0.016460860148072243, + 0.00043898727744817734, + -0.00010340408334741369, + 0.011001217179000378, + 0.04188953712582588, + -0.014248698949813843, + -0.0026888553984463215, + -0.003014720743522048, + 0.009988240897655487, + 0.029108162969350815, + 0.001195460557937622, + 0.007303109858185053, + -0.002938375109806657, + 0.012006744742393494, + -0.010412797331809998, + -0.009518994949758053, + 0.004528598394244909, + 0.021421462297439575, + 0.003299620235338807, + -0.003040789859369397, + 0.00421204324811697, + -0.009481753222644329, + -0.00620075361803174, + 0.003787487279623747, + 0.0035658988635987043, + 0.003681348403915763, + -0.04755028337240219, + 0.015790507197380066, + -0.029361406341195107, + 0.004833980929106474, + -0.01593947410583496, + -0.008938022889196873, + -0.01596926897764206, + -0.0004019782936666161, + -0.022940926253795624, + 0.026769379153847694, + -0.006774276960641146, + -0.018814539536833763, + -0.019335923716425896, + -0.009638167917728424, + -0.023790039122104645, + -0.024058179929852486, + 0.02456466667354107, + -0.030374381691217422, + 0.006137442775070667, + -0.02423693984746933, + -0.010852250270545483, + -0.0155223673209548, + -0.0011098044924438, + 0.01538829691708088, + -0.02599475160241127, + -0.0010604591807350516, + 0.0015883612213656306, + -0.01434552762657404, + -0.020631937310099602, + 0.011641775257885456, + 0.020914973691105843, + -0.0012112883850932121, + -0.0067519317381083965, + -0.018114393576979637, + -0.010234036482870579, + -0.03786742314696312, + -0.024579564109444618, + 0.002597613027319312, + -0.011991848237812519, + 0.022955823689699173, + 0.04781842231750488, + 0.004737152252346277, + 0.017905840650200844, + -0.013131445273756981, + -0.01593947410583496, + 0.03664589673280716, + -0.00913912896066904, + -0.018203774467110634, + -0.0206915233284235, + -0.0035807956010103226, + 0.031491633504629135, + 0.03345800191164017, + 0.027424834668636322, + -0.048622846603393555, + -0.021927950903773308, + 0.02100435458123684, + -0.01623740792274475, + -0.016177821904420853, + 0.0053926073014736176, + -0.01018189825117588, + -0.004539771005511284, + 0.01832294836640358, + -0.006170960143208504, + 0.013682623393833637, + 0.030568039044737816, + 0.004997844807803631, + -0.021793879568576813, + -0.011217218823730946, + -0.002701889956369996, + -0.020914973691105843, + 0.009355130605399609, + -0.022642992436885834, + -0.024058179929852486, + -0.07430476695299149, + -0.016982244327664375, + -0.007738838437944651, + 0.040042344480752945, + 0.005414952524006367, + -0.0003733486810233444, + 0.015760714188218117, + 0.004219491966068745, + -0.014248698949813843, + 0.012341920286417007, + 0.022270575165748596, + -0.008811401203274727, + -0.011850329115986824, + 0.030925560742616653, + 0.0024560943711549044, + -0.01125446055084467, + -0.010859698057174683, + -0.0022158848587423563, + -0.004543494898825884, + -0.014293388463556767, + -0.0251307412981987, + 0.017384454607963562, + 0.03016582876443863, + -0.0037986598908901215, + -0.007031244691461325, + 0.013630485162138939, + -0.02183857001364231, + 0.005087224766612053, + -0.007548905443400145, + -0.0021730568259954453, + 0.008841194212436676, + -0.003692520782351494, + -0.021495945751667023, + -0.009377475827932358, + -0.002141401404514909, + 0.013034617528319359, + 0.006863656919449568, + -0.009451959282159805, + 0.046209581196308136, + 0.004245561081916094, + 0.012155711650848389, + 0.016997139900922775, + -0.012207849882543087, + 0.002934650983661413, + -0.01888902299106121, + -0.0012252540327608585, + 0.014866911806166172, + -0.030657419934868813, + 0.028229257091879845, + 0.022300368174910545, + 0.022062020376324654, + 0.0014133249642327428, + -0.016431065276265144, + -0.021764086559414864, + -0.012259988114237785, + 0.01945509761571884, + 0.008252774365246296, + -0.011343841440975666, + 0.00731055811047554, + 0.0028378223069012165, + 0.061612773686647415, + 0.014367871917784214, + 0.004454114940017462, + -0.009154025465250015, + -0.029495475813746452, + 0.014069938100874424, + 0.009682858362793922, + 0.012945236638188362, + 0.019082680344581604, + -0.009682858362793922, + 0.004007213748991489, + -0.0020687798969447613, + -0.004752049222588539, + 0.006040614098310471, + 0.004372183233499527, + 0.006796621717512608, + 0.01464346144348383, + 0.014971189200878143, + -0.003422518027946353, + -0.007057314272969961, + -0.01777176931500435, + 0.004223215859383345, + -0.00019912705465685576, + -0.005787369795143604, + -0.010010586120188236, + -0.02163001522421837, + 0.027022622525691986, + -0.026992829516530037, + 0.0031990674324333668, + -0.00011044510756619275, + 0.034470975399017334, + 0.029763616621494293, + 0.030538246035575867, + 0.019618960097432137, + -0.013786900788545609, + 0.03983379155397415, + -0.005448469892144203, + 0.03393469378352165, + 0.003940178547054529, + -0.017309971153736115, + 0.006070407573133707, + -0.028899608179926872, + 0.012975030578672886, + -0.030955353751778603, + -0.010301072150468826, + 0.002876926213502884, + 0.013563450425863266, + 0.0032791371922940016, + -0.013131445273756981, + -0.019440200179815292, + 0.022657888010144234, + 0.002588302595540881, + -0.021734293550252914, + 0.0027316834311932325, + -0.010695834644138813, + 0.003698107087984681, + -0.006137442775070667, + -0.022017329931259155, + -0.016177821904420853, + 0.01047238428145647, + -0.00943706277757883, + 0.040936145931482315, + 0.0018769848393276334, + -0.042098090052604675, + 0.006197029259055853, + 0.006118821911513805, + -0.011157631874084473, + -0.01799521967768669, + -0.0021078838035464287, + 0.032981306314468384, + -0.01564154028892517, + 0.00011754431761801243, + -0.020170139148831367, + -0.0017028796719387174, + 0.0012178056640550494, + 0.011276805773377419, + 0.034977465867996216, + -0.0035807956010103226, + 0.028139876201748848, + -0.032683372497558594, + 0.012230195105075836, + 0.01226743683218956, + 0.005608609411865473, + 0.021183114498853683, + -0.0064614457078278065, + 0.0026199580170214176, + -0.009347682818770409, + -0.01494139526039362, + -3.203373489668593e-5, + 0.010599005967378616, + -0.004077973309904337, + 0.00767180323600769, + 0.023149479180574417, + -0.007738838437944651, + -0.01523188129067421, + -0.017652595415711403, + -0.004722255747765303, + 0.02775256149470806, + -0.009340234100818634, + -0.0026907173451036215, + -0.004085421562194824, + 0.011492808349430561, + 0.014993533492088318, + -0.0037986598908901215, + 0.023730451241135597, + -0.002104159677401185, + -0.020736213773489, + 0.001671224134042859, + -0.02221098728477955, + -0.01240150723606348, + 0.010613902471959591, + -0.018978402018547058, + 0.004271630197763443, + -0.010591557249426842, + -0.006383238360285759, + -0.007589871529489756, + -0.006975382100790739, + -0.007370145060122013, + 0.020259520038962364, + -0.005500608589500189, + -0.010315968655049801, + 0.02423693984746933, + -0.0125877158716321, + 0.014673254452645779, + -0.00015688092389609665, + 0.020751111209392548, + -0.003888040082529187, + 0.005966130644083023, + -0.016162924468517303, + -0.005981027148663998, + 0.023149479180574417, + 0.02390921115875244, + -0.022866442799568176, + -0.005481987725943327, + 0.012922891415655613, + 0.013004823587834835, + 0.025786196812987328, + 0.025503158569335938, + -0.039476267993450165, + -0.012021641246974468, + -0.01298992708325386, + -0.012975030578672886, + 0.013295309618115425, + 0.008654985576868057, + 0.002791270148009062, + -0.004543494898825884, + -0.04996354877948761, + 0.013325102627277374, + 0.0025175432674586773, + -0.021183114498853683, + 0.0019002609187737107, + 0.007269592024385929, + 0.013369793072342873, + -0.010606453754007816, + 0.013920971192419529, + 0.008908229880034924, + -0.007649458013474941, + -0.010569212026894093, + -0.006331099662929773, + -0.03345800191164017, + 0.03289192542433739, + 0.011917363852262497, + 0.021063940599560738, + -0.023268653079867363, + 0.0058953710831701756, + 0.0018751227762550116, + -0.0018527776701375842, + -0.025279708206653595, + 0.0021618844475597143, + 0.0221365038305521, + -0.0022680233232676983, + -0.008826297707855701, + 0.0018546398496255279, + -0.011619430035352707, + -0.020036067813634872, + -0.01020424347370863, + 0.03694383054971695, + -0.01301972009241581, + 0.016907760873436928, + -0.008923126384615898, + -0.008967816829681396, + -0.017905840650200844, + -0.03372614085674286, + 0.005664472002536058, + 0.010688385926187038, + 9.68285821727477e-5, + -0.02691834606230259, + -0.006692344788461924, + 0.005817163269966841, + 0.02131718583405018, + 0.0005702645285055041, + -0.02188326045870781, + -0.03167039528489113, + 0.0006964209605939686, + 0.0047446005046367645, + 0.010569212026894093, + 0.005709162447601557, + -0.007597319781780243, + 0.0045546675100922585, + 0.00336106913164258, + -0.03304089233279228, + 0.002631130628287792, + 0.018769849091768265, + -0.04984437674283981, + 0.013198480941355228, + -0.012274885550141335, + 0.003603140590712428, + -0.003152515273541212, + 0.0192465428262949, + -0.025890473276376724, + -0.006018268875777721, + 0.004215767607092857, + -0.013421931304037571, + -0.008476225659251213, + 0.018546398729085922, + 0.00015152741980273277, + -0.007723941933363676, + -0.023000512272119522, + 0.01491905003786087, + 0.030865972861647606, + -0.017056727781891823, + -0.0061002010479569435, + -0.027365246787667274, + 0.017533421516418457, + 0.018680468201637268, + -0.0007736976258456707, + 0.010621351189911366, + -0.014904153533279896, + 0.020497865974903107, + 0.012170608155429363, + 0.018233567476272583, + 0.0221216082572937, + 0.028214359655976295, + -0.017265280708670616, + 0.029674237594008446, + 0.00509094912558794, + 0.0031767224427312613, + -0.0031301702838391066, + -0.004990396089851856, + 0.01949978806078434, + 0.024117765948176384, + 0.00398486852645874, + -0.0295699592679739, + 0.005228743422776461, + 0.004964326974004507, + -0.00020680816669482738, + 0.0031692739576101303, + -0.013906074687838554, + 0.0033685173839330673, + -0.011157631874084473, + 0.007128073368221521, + -0.0012140815379098058, + -0.019052885472774506, + -0.023804934695363045, + -0.0020687798969447613, + 0.011701362207531929, + 0.022106710821390152, + 0.005329296458512545, + 0.007321730721741915, + -0.02337293140590191, + 0.0034634838812053204, + -0.020914973691105843, + 0.020304208621382713, + 0.02514563873410225, + -0.03613940626382828, + -0.022642992436885834, + -0.007790976669639349, + -0.003333137836307287, + 0.014293388463556767, + -0.010882043279707432, + -0.01596926897764206, + 0.026754483580589294, + 0.006107649300247431, + -0.007805873639881611, + -5.915039582760073e-5, + 0.005258536897599697, + 0.006532205268740654, + 0.0027409938629716635, + -0.013481518253684044, + -0.003517484525218606, + 0.020274415612220764, + 0.01357834693044424, + -0.030836179852485657, + -0.009258301928639412, + 0.0035230708308517933, + 0.014472149312496185, + -0.013369793072342873, + 0.02720138430595398, + 0.0295699592679739, + -0.005429849028587341, + -0.013518759980797768, + 0.0110905971378088, + -0.014293388463556767, + -0.011105493642389774, + 0.009474304504692554, + 0.025056257843971252, + -0.00913912896066904, + 0.026456547901034355, + -0.0355435386300087, + -0.02425183542072773, + -0.02066173031926155, + -0.008155946619808674, + -0.0016777414130046964, + 0.028452707454562187, + -0.013511311262845993, + -0.0009366303565911949, + 0.01599906198680401, + -0.019097575917840004, + -0.005504332482814789, + -0.006230547092854977, + 0.0077164932154119015, + -0.016490653157234192, + -0.0028657536022365093, + 0.011589637026190758, + -0.023134583607316017, + 0.009042300283908844, + -0.00033121893648058176, + 0.016684310510754585, + -0.005813439376652241, + -0.019291233271360397, + -0.02249402552843094, + -0.004856326151639223, + -0.0036161751486361027, + -0.009273199364542961, + -0.026694895699620247, + -0.008252774365246296, + -0.0058953710831701756, + 0.00028443397604860365, + -0.010152104310691357, + -0.009533891454339027, + -0.008155946619808674, + -0.01891881600022316, + 0.021436359733343124, + 0.0016507412074133754, + 0.01534360647201538, + 0.0018518466968089342, + -0.030016861855983734, + -0.001273668254725635, + -0.05845467001199722, + -0.00436845887452364, + -0.008923126384615898, + -0.0052436403930187225, + -0.009094438515603542, + 0.025249915197491646, + -0.01687796786427498, + 0.00753400893881917, + 0.03509663790464401, + 0.017324868589639664, + 0.00972754880785942, + -0.040072135627269745, + -0.030270105227828026, + 0.01106825191527605, + 0.014397665858268738, + -0.005690541584044695, + -0.025875577703118324, + -0.011850329115986824, + 1.670060373726301e-5, + 0.027022622525691986, + 0.002228919416666031, + -0.004826532676815987, + -0.012736682780086994, + 0.0034113454166799784, + 0.0011544947046786547, + -0.00688227778300643, + -0.011410876177251339, + 0.006431652698665857, + -0.00973499659448862, + -0.0020836766343563795, + 0.012349369004368782, + 0.013131445273756981, + 0.00472970400005579, + -0.002815477317199111, + 0.03226626291871071, + -0.005288330372422934, + 0.043349411338567734, + -0.017220592126250267, + 0.01948489062488079, + -0.019440200179815292, + -0.001169391325674951, + 0.00457328837364912, + -0.019648754969239235, + -0.018859228119254112, + -0.007280764635652304, + -0.01592457853257656, + -0.0125877158716321, + -0.008118703961372375, + 0.014628564938902855, + -0.023790039122104645, + 0.005671920720487833, + 0.017265280708670616, + 0.019678547978401184, + -0.02359638176858425, + 0.022583404555916786, + -0.022657888010144234, + 0.0081484979018569, + 0.011887570843100548, + -0.005321848206222057, + 0.001792259863577783, + -0.021495945751667023, + 0.026963036507368088, + 0.00672213826328516, + 0.017607904970645905, + -0.013325102627277374, + 0.008751814253628254, + -0.0033927245531231165, + 0.0048041874542832375, + 0.030657419934868813, + -0.022404644638299942, + -0.00020017447241116315, + -0.02630758099257946, + 0.004118938930332661, + 0.002703751903027296, + -0.023194169625639915, + 0.004725979641079903, + 0.014874360524117947, + -0.012461094185709953, + -0.01716100424528122, + -0.010263830423355103, + -0.0005702645285055041, + -0.032981306314468384, + -0.002027814043685794, + -0.008178290911018848, + -0.007232350297272205, + 0.019723238423466682, + 0.03634795919060707, + -0.019380614161491394, + 0.027558904141187668, + -0.013704968616366386, + 0.008267671801149845, + 0.0710274875164032, + -0.024654047563672066, + 0.010427693836390972, + -0.010725627653300762, + 0.016192719340324402, + 0.007142970338463783, + -0.02866126038134098, + -0.005359089933335781, + -0.008222981356084347, + 0.01680348441004753, + -0.009854170493781567, + 0.006010820623487234, + -0.01827825792133808, + -0.038522880524396896, + -0.002919754246249795, + -0.00070154172135517, + -0.02547336556017399, + -0.006971658207476139, + 0.021391669288277626, + 0.015269123017787933, + -0.018471915274858475, + -0.010554315522313118, + -0.0016237408854067326, + -0.010301072150468826, + 0.010226587764918804, + -0.010494728572666645, + -0.008297464810311794, + 0.01805480755865574, + -0.014807324856519699, + -0.009101887233555317, + 0.003387138480320573, + -0.0018779159290716052, + -0.013429380021989346, + 0.0011665982892736793, + -0.006770552601665258, + 0.008915677666664124, + 0.00701634818688035, + -0.004480184055864811, + -0.0031823087483644485, + -0.007344075944274664, + -0.004424321465194225, + -0.009362579323351383, + -0.0003719521046150476, + 0.008677330799400806, + 0.0028285118751227856, + 0.03289192542433739, + -0.004692462272942066, + 0.007731390185654163, + 0.00280616688542068, + -0.010315968655049801, + -0.023879418149590492, + 0.00525108864530921, + -0.0018900195136666298, + -0.011477911844849586, + -0.0029029955621808767, + -0.0013704969314858317, + 0.08795014768838882, + -0.006658827420324087, + -0.004461563192307949, + -0.004874947015196085, + 0.02338782697916031, + -0.008625192567706108, + 0.0002651147951837629, + 0.030046654865145683, + 0.018188877031207085, + -0.0030370657332241535, + -0.008215532638132572, + -0.023864522576332092, + 0.01523188129067421, + 0.0206766277551651, + -0.024058179929852486, + -0.015760714188218117, + 0.005943785421550274, + 0.016341686248779297, + 0.02900388464331627, + 0.019291233271360397, + 0.01571602374315262, + -0.024341216310858727, + -0.005832060240209103, + 0.02720138430595398, + -0.0017252246616408229, + 0.014829670079052448, + -0.014293388463556767, + 0.0035919679794460535, + 0.008774159476161003, + 0.02687365561723709, + -0.008990162052214146, + -0.007820770144462585, + -0.025354191660881042, + 0.0008034910424612463, + -0.015760714188218117, + 0.024639150127768517, + -0.004707358777523041, + 0.01432318240404129, + -0.006275237072259188, + 0.01949978806078434, + -0.00436845887452364, + -0.012416403740644455, + 0.04177036136388779, + 0.028780434280633926, + -0.011261909268796444, + -0.006859933026134968, + -0.007437180262058973, + -0.004934533499181271, + 0.0010725627653300762, + 0.004033282864838839, + -0.029033679515123367, + -0.02486260049045086, + 0.0046552205458283424, + 0.006766828242689371, + 0.007664354983717203, + -0.008491122163832188, + 0.006156063638627529, + -0.026084130629897118, + -0.0014431183226406574, + 0.004562116228044033, + -0.01802501268684864, + 0.008275119587779045, + -0.03515622392296791, + -0.021451255306601524, + -0.006994002964347601, + -0.009258301928639412, + -0.012163159437477589, + 0.0002828046272043139, + -0.011343841440975666, + 0.0006950243841856718, + -0.009198715910315514, + -0.003240033518522978, + 0.002582716289907694, + -0.0354541577398777, + -0.008960368111729622, + 0.02629268541932106, + 0.007843115366995335, + 0.016729000955820084, + -0.00313575635664165, + -0.007519111968576908, + 0.0037837631534785032, + 0.008074014447629452, + 0.001975675579160452, + -0.014703048393130302, + -0.013340000063180923, + -0.010733076371252537, + -0.00414500804618001, + -0.02665020525455475, + 0.005481987725943327, + -0.02723117731511593, + -0.012416403740644455, + -0.0031972054857760668, + -0.007586147170513868, + -0.003891764208674431, + 0.0037297625094652176, + 5.0916474719997495e-5, + -0.01005527563393116, + -0.0030463761650025845, + 0.007753734942525625, + -0.005913991946727037, + 0.009407269768416882, + 0.004807911813259125, + 0.002189815742895007, + 0.010718179866671562, + -0.0059102680534124374, + -0.0024300250224769115, + 0.03161080926656723, + -0.0012168745743110776, + -0.014256146736443043, + -0.019901998341083527, + -0.004807911813259125, + -0.00030282209627330303, + -0.007910150103271008, + 0.008826297707855701, + -0.01567133329808712, + 0.0031171354930847883, + 0.010405348613858223, + -0.012744131498038769, + -0.014300837181508541, + -0.01623740792274475, + -0.018144186586141586, + -0.0125430254265666, + -0.012528128921985626, + -0.0036757620982825756, + 0.003683210350573063, + -0.009653065353631973, + -0.004159905016422272, + -0.0048898435197770596, + -0.030508453026413918, + -0.0012448059860616922, + 0.0035156223457306623, + 0.005984751507639885, + 0.02066173031926155, + -0.007273316383361816, + 0.0019253991777077317, + -0.012967581860721111, + 0.010450039058923721, + 0.011798190884292126, + 0.03019562177360058, + -0.012073779478669167, + 0.007880357094109058, + 0.0006414894014596939, + -0.0021022974979132414, + 0.013235722668468952, + 0.0043461136519908905, + 0.021436359733343124, + -0.006111373193562031, + -0.025220122188329697, + 0.0026571997441351414, + 0.01138853095471859, + 0.016699206084012985, + -0.021987536922097206, + -1.3987482816446573e-5, + -0.023760244250297546, + 0.02012544870376587, + -0.004599357955157757, + -0.015790507197380066, + 0.03010624088346958, + 0.0029476855415850878, + 0.005362813826650381, + -0.007075935136526823, + -0.020751111209392548, + -0.012483439408242702, + -0.012610061094164848, + -0.0050983973778784275, + 0.00568309286609292, + 0.01196950301527977, + 0.01567133329808712, + 0.00945940800011158, + 0.0063087549060583115, + -0.016907760873436928, + 0.003854522481560707, + 0.004941982217133045, + -0.03342820703983307, + 0.014434907585382462, + 0.012922891415655613, + -0.012259988114237785, + -0.01741424761712551, + -0.016460860148072243, + 0.006256616208702326, + 0.006193305365741253, + -0.01020424347370863, + 0.026992829516530037, + 0.006845036055892706, + 0.013392138294875622, + -0.013697520829737186, + 0.01717590168118477, + -0.02043827995657921, + 0.011328944005072117, + -0.0008193188114091754, + -0.01683327741920948, + 0.009481753222644329, + 0.004040731117129326, + -0.004401976242661476, + -0.010330865159630775, + -0.013891177251935005, + 0.010122311301529408, + 0.026963036507368088, + -0.0011805639369413257, + -0.007634561508893967, + -0.023447414860129356, + -0.007102004252374172, + 0.012893098406493664, + 5.3025869419798255e-6, + 0.0039476267993450165, + -0.010941630229353905, + 0.0008384052198380232, + -0.017518525943160057, + -0.008811401203274727, + -0.000796508218627423, + -0.031193701550364494, + -0.016684310510754585, + 0.01562664471566677, + 0.0050983973778784275, + -0.0012801856501027942, + 0.009072093293070793, + 0.002597613027319312, + 0.017012037336826324, + 0.026247994974255562, + 0.025592539459466934, + 0.01981261745095253, + 0.010524522513151169, + -0.012602612376213074, + -0.006833863444626331, + -0.003854522481560707, + -0.0033908626064658165, + 0.0028899607714265585, + 0.015835197642445564, + 0.013920971192419529, + -0.0034970014821738005, + 0.01269944105297327, + 0.005981027148663998, + -0.017503628507256508, + 0.014636012725532055, + -0.00033913282095454633, + 0.03494767099618912, + 0.011857777833938599, + -0.010323416441679, + 0.013369793072342873, + 0.0006517308647744358, + -0.001576257636770606, + -0.0035752092953771353, + -0.01226743683218956, + 0.004174801521003246, + 0.011738603934645653, + -0.012781373225152493, + -0.0037744527217000723, + -0.004759497474879026, + -0.000874715915415436, + -3.1510022381553426e-5, + -0.010651144199073315, + -0.0012894960818812251, + -0.009340234100818634, + 0.03938688710331917, + 0.01568623073399067, + 0.012304678559303284, + -0.013794349506497383, + 0.0007727665943093598, + -0.0057054380886256695, + -0.024356113746762276, + -0.005228743422776461, + 0.014315733686089516, + 0.018144186586141586, + -0.017205694690346718, + -0.004375907126814127, + 0.016162924468517303, + -0.01683327741920948, + 0.0024058178532868624, + -0.010114862583577633, + 0.01716100424528122, + 0.002943961415439844, + 0.007169039454311132, + -0.0009869066998362541, + 0.015358502976596355, + -0.014837118797004223, + 0.0022382300812751055, + -0.0018062255112454295, + -0.002686993218958378, + -0.004621702712029219, + -0.010822456330060959, + -0.0014878084184601903, + -0.01771218329668045, + -0.006420480087399483, + -0.02392410859465599, + -0.002986789448186755, + -0.004964326974004507, + -0.010844801552593708, + 0.01976792886853218, + 0.0022773337550461292, + 0.014144421555101871, + 0.006174684502184391, + -0.005470815114676952, + 0.00717648770660162, + -0.020617039874196053, + 0.012617509812116623, + 0.015023327432572842, + 0.0033201032783836126, + 0.006733310874551535, + 0.01478497963398695, + 0.008297464810311794, + -0.012163159437477589, + -0.001699155429378152, + -0.0005991268553771079, + -0.017026934772729874, + 0.00427535455673933, + 0.010986319743096828, + 0.018159084022045135, + 0.003437414765357971, + -0.004841429181396961, + 0.0019458821043372154, + -0.03010624088346958, + 0.003118997672572732, + 0.003958799410611391, + -0.012751579284667969, + 0.0004131508176214993, + -0.016937553882598877, + 0.0008006978896446526, + 0.03628837317228317, + -0.01432318240404129, + 0.003936454188078642, + -0.018457017838954926, + 0.0236708652228117, + 0.009280647151172161, + 0.008237877860665321, + -0.007932495325803757, + 0.00841663870960474, + 0.0024970602244138718, + 0.017026934772729874, + -0.00486749829724431, + -0.024028385058045387, + 0.007999530993402004, + -0.0077611836604774, + -0.002329472219571471, + -0.0035137603990733624, + -0.006662551313638687, + 0.01801011711359024, + -0.019321026280522346, + -0.0018090186640620232, + -0.012930340133607388, + 0.0019216749351471663, + -0.03161080926656723, + 0.010509626008570194, + -0.0016563273966312408, + -0.0031990674324333668, + 0.012840960174798965, + 0.02364107221364975, + -0.005288330372422934, + -0.002001744695007801, + -0.0037465214263647795, + 0.01564154028892517, + 0.002990513574331999, + 0.009571133181452751, + 0.02043827995657921, + -0.007046141661703587, + 0.002815477317199111, + 0.004372183233499527, + 0.023417619988322258, + 0.02033400349318981, + -0.006595516111701727, + -0.017518525943160057, + -0.0065619987435638905, + 0.0025324400048702955, + -0.018799642100930214, + -0.013950764201581478, + 0.004126387182623148, + 0.00857305433601141, + -0.01152260135859251, + 0.0010288037592545152, + -0.04197891429066658, + 0.010174449533224106, + -0.010286174714565277, + -0.02480301447212696, + -0.02241954207420349, + -0.006327375769615173, + -0.013429380021989346, + 0.010107414796948433, + -0.005195226054638624, + 0.010412797331809998, + -0.0015976716531440616, + -0.01287820190191269, + 0.022940926253795624, + 0.004234388470649719, + -0.011820536106824875, + -0.014129525050520897, + 0.03193853795528412, + 0.017607904970645905, + 0.021421462297439575, + 0.024698738008737564, + -0.009988240897655487, + -0.02244933508336544, + 0.0015054983086884022, + 0.002729821251705289, + 0.013980558142066002, + 0.00583950849249959, + -0.005154259968549013, + -0.008155946619808674, + -0.006923243869096041, + 0.01978282444179058, + 0.01520953606814146, + -0.00012976427387911826, + 0.0032307228539139032, + -0.0006126270163804293, + -0.0034020349849015474, + 0.013511311262845993, + 0.00974989403039217, + -0.02303030714392662, + 0.017890943214297295, + 0.024594459682703018, + 0.025026464834809303, + -0.005876750219613314, + 0.0065024117939174175, + 0.010762869380414486, + -0.015418089926242828, + -0.0012848408659920096, + 0.015730921179056168, + 0.004022110253572464, + 0.020289313048124313, + -0.0041375597938895226, + 0.019738133996725082, + 0.002398369600996375, + 0.012952685356140137, + 0.0032269987277686596, + 0.011269357986748219, + 0.0016144304536283016, + 0.009198715910315514, + -0.0028229255694895983, + 0.037122588604688644, + 0.00479673920199275, + -0.018173979595303535, + 0.014770083129405975, + 0.004104042425751686, + -0.027544008567929268, + -0.008103807456791401, + 0.0020836766343563795, + -0.009682858362793922, + -0.0073775933124125, + 0.01683327741920948, + -0.006822690833359957, + -0.0015120155876502395, + 0.012840960174798965, + -0.032415229827165604, + -0.001966365147382021, + 0.006528480909764767, + -0.006409307476133108, + 0.011805638670921326, + 0.006759379990398884, + 1.3485591807693709e-5, + 0.010397899895906448, + 0.007440904155373573, + -0.008707123808562756, + 0.0021209183614701033, + 0.030076447874307632, + 0.004990396089851856, + 0.006305030547082424, + 0.0037744527217000723, + -0.00785801187157631, + -0.0014626702759414911, + 0.015082914382219315, + 0.025324398651719093, + -0.025592539459466934, + -0.0006824553129263222, + -0.0058506811037659645, + -0.0039439029060304165, + 0.008275119587779045, + -0.0026143717113882303, + 0.0032456195913255215, + 0.008833746425807476, + 0.0030705833341926336, + -0.004610530100762844, + 0.004979223944246769, + -0.015462780371308327, + 0.005727783311158419, + 0.01626720279455185, + -0.019604064524173737, + 0.018457017838954926, + 0.016460860148072243, + -0.018546398729085922, + 0.02249402552843094, + 0.010867146775126457, + -0.008759262971580029, + -0.01592457853257656, + 0.013801797293126583, + 0.0008137325057759881, + 0.007079659029841423, + 0.02390921115875244, + 0.0133102061226964, + -0.002085538813844323, + 0.02221098728477955, + 0.0024709911085665226, + 0.013809246011078358, + 0.009571133181452751, + 0.021212907508015633, + 0.007351524196565151, + 0.0033834141213446856, + 0.003118997672572732, + 0.002701889956369996, + 0.007355248089879751, + 0.015060569159686565, + -0.0009589754045009613, + -0.002685131039470434, + -0.010263830423355103, + 0.010859698057174683, + 0.008610296063125134, + 0.01833784393966198, + 0.0003940644091926515, + 0.002070642076432705, + -0.007880357094109058, + 0.005582540296018124, + 0.011425772681832314, + 0.004517425782978535, + 0.0295550636947155, + -0.007336627226322889, + -0.020825594663619995, + 0.024326318874955177, + 0.014010351151227951, + 0.010196794755756855, + 0.011619430035352707, + 0.005757576785981655, + 0.015730921179056168, + -0.010219139978289604, + -0.01806970313191414, + -0.015328709967434406, + -0.018561294302344322, + 0.005869301967322826, + 0.008088910952210426, + 0.008036772720515728, + 0.03018072433769703, + 0.011693913489580154, + 0.0032735508866608143, + 0.006219374481588602, + -0.019097575917840004, + 0.0033163789194077253, + -0.009109335020184517, + -0.006744483485817909, + 0.005738955922424793, + 0.01360813993960619, + 0.016639620065689087, + 0.016699206084012985, + 0.030210519209504128, + -0.0049494304694235325, + 0.01194715779274702, + -0.00642792833968997, + 0.0032363091595470905, + -0.022315263748168945, + -0.007183935958892107, + -0.016997139900922775, + -0.008200636133551598, + 0.017846252769231796, + 0.00916147418320179, + -0.007344075944274664, + -0.006152339279651642, + -0.0018295015906915069, + 0.037986598908901215, + 0.003498863661661744, + 0.016177821904420853, + -0.025532953441143036, + -0.010546867735683918, + 0.010867146775126457, + -0.021510843187570572, + 0.0035025877878069878, + 0.025249915197491646, + -0.010308519937098026, + -0.019618960097432137, + 0.0003994179132860154, + -0.007954840548336506, + 0.008625192567706108, + 0.03307068720459938, + 0.006036889739334583, + 0.0006391617353074253, + 0.02922733500599861, + -0.014531736262142658, + -0.0018788469024002552, + -0.022062020376324654, + 0.018963506445288658, + -0.009787135757505894, + -0.0021507118362933397, + -0.01915716379880905, + -0.01256537064909935, + 0.014926498755812645, + -0.010241485200822353, + 0.003266102634370327, + -0.011671568267047405, + -0.029763616621494293, + -0.013853935524821281, + 0.0059102680534124374, + 0.021495945751667023, + 0.0005074189975857735, + -0.0016954313032329082, + 0.02575640380382538, + -0.0052473642863333225, + 0.026456547901034355, + -0.009608374908566475, + -7.652018393855542e-5, + 0.012595164589583874, + 0.006364617496728897, + 0.001986847957596183, + -0.004260457586497068, + 0.004498804919421673, + -0.027022622525691986, + -0.034441184252500534, + -0.009712652303278446, + 0.013064410537481308, + -0.0004929878632538021, + 0.01194715779274702, + 0.0012438748963177204, + 0.00783566664904356, + 0.0063944109715521336, + -0.007422283291816711, + -0.0070647625252604485, + -0.008088910952210426, + -0.0028266499284654856, + -0.0088784359395504, + 0.008364500477910042, + -0.0013267378089949489, + 0.008684779517352581, + -0.012483439408242702, + 0.018531501293182373, + -0.0017485007410869002, + 0.04177036136388779, + 0.002346231136471033, + 0.0026739586610347033, + -0.009794583544135094, + 0.013369793072342873, + 0.015112707391381264, + 0.0004771600943058729, + -0.015462780371308327, + -0.002504508476704359, + -0.002262437017634511, + 0.015730921179056168, + -0.022702578455209732, + -0.0028024427592754364, + 0.00358638190664351, + -0.0024281630758196115, + -0.012386610731482506, + -0.015082914382219315, + -0.007615940645337105, + -0.008885884657502174, + -0.006569446995854378, + 0.007474421989172697, + -0.014494494535028934, + 0.00649496354162693, + -0.014926498755812645, + -0.009675409644842148, + -0.007280764635652304, + -0.00022426524083130062, + -0.0027949942741543055, + 0.003690658835694194, + 0.008699676021933556, + 0.002781959716230631, + 0.0029774790164083242, + -0.012259988114237785, + 8.391034498345107e-5, + -0.007776080165058374, + -0.0020054690539836884, + 0.00041152149788104, + -0.007373868953436613, + 0.012744131498038769, + -0.014866911806166172, + 0.023134583607316017, + -0.010539419017732143, + -0.009340234100818634, + -0.02809518575668335, + 0.006055510602891445, + 0.005653299856930971, + 0.007947391830384731, + -0.024579564109444618, + 0.018412327393889427, + 0.01478497963398695, + -0.011187425814568996, + -0.011269357986748219, + 0.013340000063180923, + 0.01357834693044424, + -0.01714610867202282, + 0.022613199427723885, + 0.004286527168005705, + -0.01005527563393116, + -0.004107766319066286, + -0.012006744742393494, + 0.010010586120188236, + -0.03456035628914833, + 0.00012615647574421018, + 0.010680938139557838, + -0.003873143345117569, + -0.029316715896129608, + -1.2961879292561207e-5, + 0.008297464810311794, + -0.00901250634342432, + -0.0006964209605939686, + -0.00011370376159902662, + -0.007422283291816711, + -0.028229257091879845, + -0.004107766319066286, + -0.010859698057174683, + -0.02124270237982273, + 0.010323416441679, + -0.0025249915197491646, + 0.0010669765761122108, + -0.016386376693844795, + -0.007113176863640547, + 0.007295661605894566, + -0.025637229904532433, + -0.005500608589500189, + 0.0019738133996725082, + -0.0039029368199408054, + 0.005411228165030479, + -0.009019955061376095, + 0.008982713334262371, + 0.004588185343891382, + 0.005061155650764704, + -0.002504508476704359, + 0.007910150103271008, + -0.016133131459355354, + -0.008371948264539242, + -0.012222746387124062, + -0.008595398627221584, + -0.024594459682703018, + 0.015135052613914013, + -0.008952920325100422, + -0.013727313838899136, + 0.01949978806078434, + -0.002227057470008731, + 1.0401508006907534e-5, + -0.009988240897655487, + 0.006677448283880949, + 0.003446725197136402, + -0.03158101439476013, + -0.000294442696031183, + 0.010167001746594906, + -0.00247843936085701, + -0.005828335881233215, + 0.021689603105187416, + 0.0064986879006028175, + -0.018471915274858475, + 0.011395979672670364, + 0.006260340567678213, + -0.01805480755865574, + 0.008826297707855701, + -0.008565605618059635, + 0.013623037375509739, + 0.005653299856930971, + -0.008818849921226501, + -0.013958212919533253, + -0.02837822400033474, + 0.010718179866671562, + 0.007221177686005831, + -0.014822221361100674, + -0.005828335881233215, + 0.0037130038253962994, + -0.00855815690010786, + 0.012394058518111706, + -0.013265515677630901, + -0.017235487699508667, + 0.016326788812875748, + -0.003973695915192366, + 0.009407269768416882, + -0.00826022308319807, + 0.014755186624825, + -0.025890473276376724, + 0.018099496141076088, + 0.018829435110092163, + 0.01628209836781025, + 0.00785801187157631, + -0.002834098180755973, + 0.009019955061376095, + 0.005109569989144802, + 0.02131718583405018, + 0.010353210382163525, + -0.012036537751555443, + -0.00538515904918313, + 0.024609357118606567, + 0.023104790598154068, + -0.006156063638627529, + -0.0008514398359693587, + -0.026531031355261803, + -0.020870283246040344, + -0.018382534384727478, + -0.007574974559247494, + 0.0005060224793851376, + 0.004107766319066286, + 0.0236261747777462, + -0.0034876910503953695, + -0.002052021212875843, + -0.01595437154173851, + 0.011299150995910168, + -0.023462310433387756, + -0.022225884720683098, + 0.016997139900922775, + 0.022032227367162704, + 0.020289313048124313, + 0.01593947410583496, + 0.01328041311353445, + 0.012118469923734665, + -0.020244622603058815, + -0.02781214937567711, + 0.022672785446047783, + -0.0005614195833913982, + 0.01301227230578661, + -0.011373634450137615, + -0.021108631044626236, + -0.0077164932154119015, + -0.008923126384615898, + 0.0006303168484009802, + -0.0022065744269639254, + -0.014040145091712475, + -0.0035640366841107607, + 0.017324868589639664, + -0.013652830384671688, + 0.018784744665026665, + 0.00753773283213377, + 4.331537184043555e-6, + 0.0006773345521651208, + 0.009228508919477463, + -0.014546632766723633, + 0.012602612376213074, + 0.008707123808562756, + -0.017607904970645905, + -0.003247481770813465, + -0.020766006782650948, + 0.00798463448882103, + 0.010971423238515854, + 0.008707123808562756, + 0.01567133329808712, + 0.012930340133607388, + -0.0013397724833339453, + -0.019097575917840004, + 0.013332551345229149, + -0.0011302875354886055, + -0.009019955061376095, + 0.0029756168369203806, + -0.013794349506497383, + -0.0004739014257211238, + 0.01504567265510559, + -0.006617861334234476, + 0.0036943829618394375, + 0.006327375769615173, + -0.012870753183960915, + -0.011477911844849586, + 0.0017503629205748439, + 0.0028098910115659237, + -0.0003638054768089205, + 0.004685014020651579, + -0.021659810096025467, + 0.0125355776399374, + 0.017086520791053772, + 0.002260575070977211, + 0.0032176882959902287, + -0.02685876004397869, + 0.00916892196983099, + -0.020244622603058815, + -0.0013109100982546806, + 0.0057054380886256695, + 0.006126270163804293, + 0.016192719340324402, + 0.017056727781891823, + -0.007496766746044159, + 0.0022642991971224546, + -0.00046854792162775993, + 0.001265288912691176, + 0.007895253598690033, + 0.0011219080770388246, + 0.004282802809029818, + 0.013265515677630901, + 0.015850095078349113, + -0.0008332844590768218, + 0.012796269729733467, + -0.018754951655864716, + -0.0003752107731997967, + 0.006323651410639286, + 0.008923126384615898, + -0.023819832131266594, + -0.007340351585298777, + -0.004837704822421074, + -0.009861619211733341, + 0.01653534360229969, + 0.003040789859369397, + 0.001794121926650405, + 0.008178290911018848, + 0.0007020072662271559, + 0.02097456157207489, + 0.019901998341083527, + -0.009370028041303158, + 0.00018295015615876764, + -0.004766945727169514, + 0.011179977096617222, + -0.016207614913582802, + -0.009764790534973145, + 0.01806970313191414, + -0.01802501268684864, + -0.002649751491844654, + 0.0028750640340149403, + 0.013079307042062283, + 0.007146694231778383, + 0.015790507197380066, + -0.011865225620567799, + -0.005843232851475477, + -0.0162969958037138, + 0.027558904141187668, + 0.017384454607963562, + -0.011827983893454075, + 0.007396214175969362, + 0.009429614059627056, + -0.004778118338435888, + -0.01419655978679657, + -0.008394293487071991, + -0.0177568718791008, + -0.0019086403772234917, + -0.04755028337240219, + -0.0037576938048005104, + -0.005824611987918615, + 0.00873691774904728, + 0.0004315389378461987, + 0.004401976242661476, + -0.0005967992474325001, + -0.0016302581643685699, + -0.0005409365985542536, + -0.00310037680901587, + 0.014427458867430687, + -0.019335923716425896, + -0.011470463126897812, + -0.015864990651607513, + -0.011962054297327995, + 0.015730921179056168, + -0.004997844807803631, + 0.01976792886853218, + -0.013920971192419529, + 0.0004182715492788702, + -0.006744483485817909, + -0.011433221399784088, + -0.015820300206542015, + -0.009779687039554119, + 0.014926498755812645, + -0.012125917710363865, + 0.014360424131155014, + -0.0056458511389791965, + -0.024683840572834015, + -0.0048488774336874485, + -0.004763221368193626, + -0.021764086559414864, + 0.0046403235755860806, + 0.007593595422804356, + 0.028899608179926872, + 0.009370028041303158, + -0.006852484308183193, + -0.01154494658112526, + -0.004707358777523041, + 0.00717276381328702, + -0.009556236676871777, + -0.01063624769449234, + -0.01948489062488079, + 0.012997375801205635, + -0.015023327432572842, + 0.0042418367229402065, + 0.016326788812875748, + 0.007649458013474941, + 0.00871457252651453, + -0.00799208227545023, + -0.0023704383056610823, + -0.017071625217795372, + -0.016654515638947487, + -0.013436827808618546, + -0.006971658207476139, + -0.03196832910180092, + 0.010688385926187038, + -0.024058179929852486, + 0.018501708284020424, + -0.012967581860721111, + -4.8559766582911834e-5, + -0.017503628507256508, + -0.030329691246151924, + 0.013652830384671688, + 0.01477753184735775, + -0.005120742600411177, + -0.001368634751997888, + 0.02685876004397869, + 0.011634326539933681, + 0.01595437154173851, + -0.01287820190191269, + -7.122487295418978e-5, + -0.02389431558549404, + 0.025637229904532433, + 0.0062491679564118385, + -0.011753500439226627, + 0.01269199326634407, + -0.011455566622316837, + 0.013593243435025215, + 0.0008467846200801432, + 0.004282802809029818, + 0.007068486884236336, + 0.01568623073399067, + -0.00873691774904728, + -0.0003274947521276772, + -0.003612451022490859, + -0.003828453365713358, + -0.0004659875703509897, + -0.015567056834697723, + -0.02243443764746189, + 0.017905840650200844, + 0.008751814253628254, + -0.0037819009739905596, + -0.0040519037283957005, + 0.015298916026949883, + 0.025652127340435982, + -0.01857619173824787, + 0.002398369600996375, + 0.013786900788545609, + -0.023253757506608963, + -0.003973695915192366, + -0.00026371824787929654, + -0.025622332468628883, + 0.02629268541932106, + 0.021227804943919182, + 0.002323885913938284, + -0.025935163721442223, + -0.002625544322654605, + -0.008528363890945911, + 0.02247912809252739, + 0.023164376616477966, + 0.009116783738136292, + -0.004316320177167654, + -0.001091183628886938, + 0.008506018668413162, + 0.025235019624233246, + 0.014732841402292252, + -0.011664120480418205, + 0.007321730721741915, + -0.0010800111340358853, + -0.010785214602947235, + -0.004416873212903738, + -0.020617039874196053, + -0.03074679896235466, + 0.003240033518522978, + 0.00480046309530735, + -0.0014319458277896047, + -0.016758793964982033, + -0.02723117731511593, + -0.005258536897599697, + -0.02186836302280426, + 0.011045906692743301, + -0.008476225659251213, + 0.025041362270712852, + 0.008684779517352581, + 0.0040928698144853115, + 0.0035156223457306623, + 0.0221811942756176, + -0.003038927912712097, + -0.015805404633283615, + 0.009578581899404526, + -0.009712652303278446, + 0.018710261210799217, + -0.0022810581140220165, + -0.0295550636947155, + -0.016997139900922775, + 0.011939709074795246, + 0.014136973768472672, + 0.002348093083128333, + 0.004711083136498928, + -0.012259988114237785, + 0.007813322357833385, + 0.02127249538898468, + 0.01982751488685608, + 0.0008514398359693587, + 0.005791094154119492, + -0.0020594694651663303, + -0.03360696882009506, + -0.002210298553109169, + -0.00047669457853771746, + -0.006327375769615173, + 0.01948489062488079, + -0.0021116079296916723, + 0.005534125957638025, + -0.003137618536129594, + 0.025339296087622643, + 0.0026758206076920033, + 0.013920971192419529, + -0.01344427652657032, + -0.016401272267103195, + -0.0009319751407019794, + 0.015179743058979511, + -0.0030743074603378773, + 0.013809246011078358, + 0.014367871917784214, + -0.011582188308238983, + 0.002988651394844055, + -0.011746051721274853, + 0.003992317244410515, + -0.012915443629026413, + 0.007351524196565151, + 0.0026050612796097994, + -0.004178525879979134, + -0.017056727781891823, + -0.013094203546643257, + -0.016028854995965958, + 0.005001568701118231, + 0.02303030714392662, + 0.016684310510754585, + -0.010107414796948433, + 0.0032716889400035143, + 0.0011191150406375527, + 0.029420992359519005, + -0.008327257819473743, + -0.018844332545995712, + 0.012893098406493664, + 0.0015986027428880334, + -0.003171136137098074, + -0.010844801552593708, + 0.0069157956168055534, + 0.00012091935059288517, + 0.010599005967378616, + 0.009310441091656685, + -0.023119686171412468, + -0.007843115366995335, + -0.003491415409371257, + -0.031193701550364494, + 0.01680348441004753, + 0.003733486868441105, + -0.006539653521031141, + 0.004711083136498928, + 0.018993299454450607, + 0.016639620065689087, + 0.008826297707855701, + 0.009988240897655487, + 0.007090831641107798, + 0.004126387182623148, + -0.014583874493837357, + -0.0325046107172966, + 0.02008075825870037, + 0.01686307042837143, + -0.02308989316225052, + 0.0103681068867445, + 0.0022587128914892673, + 0.013250619173049927, + 0.01798032410442829, + 0.008513467386364937, + 0.012863305397331715, + 0.025235019624233246, + 0.01805480755865574, + 0.0013835314894095063, + -0.005228743422776461, + 0.022911133244633675, + -0.012088675983250141, + 0.02247912809252739, + 0.009712652303278446, + 0.008401742205023766, + 0.00258085411041975, + -0.0015790507895871997, + 0.004264181945472956, + -0.0032698267605155706, + -0.0017205694457516074, + 0.004122663289308548, + 0.008222981356084347, + -0.004390804097056389, + -0.0019253991777077317, + 0.018412327393889427, + -0.00284154643304646, + -0.005783645901829004, + 0.00486749829724431, + -0.016654515638947487, + 0.014382769353687763, + -0.02989768795669079, + 0.022017329931259155, + 0.012125917710363865, + 0.0015157397137954831, + -0.021183114498853683, + 0.0058953710831701756, + -0.00486749829724431, + 0.0265608262270689, + -0.008111256174743176, + 0.008699676021933556, + -0.010256381705403328, + -0.0023499552626162767, + -0.010651144199073315, + -0.018218670040369034, + -0.018814539536833763, + 0.0007885943632572889, + 0.0027652010321617126, + 0.009653065353631973, + 0.01652044616639614, + 0.015246777795255184, + 0.02161511965095997, + -0.019872205331921577, + -0.008163394406437874, + -0.01744404248893261, + -0.008513467386364937, + -0.013570898212492466, + 0.01033831387758255, + -0.0006866449839435518, + -0.00796228926628828, + -0.0011554256780073047, + -0.0004846084339078516, + 0.004014662001281977, + 0.012714337557554245, + -0.012461094185709953, + -0.03420283645391464, + -0.002592026721686125, + 0.006159787531942129, + -0.007545181084424257, + -0.01506801787763834, + -0.004267906304448843, + -0.008982713334262371, + 0.0008458535303361714, + -0.025964956730604172, + -0.0011042183032259345, + 0.004536046646535397, + -0.003266102634370327, + -0.016088441014289856, + -0.004621702712029219, + 0.011991848237812519, + -0.009496649727225304, + -0.02191305346786976, + 0.017235487699508667, + -0.002176780952140689, + 0.0003854522365145385, + -0.018516603857278824, + -0.0036664516665041447, + -0.008498569950461388, + 0.017861150205135345, + -0.00828256830573082, + 0.00421204324811697, + 0.04117449373006821, + -0.009518994949758053, + 0.0010353210382163525, + 0.026247994974255562, + -0.009965895675122738, + -0.014159318059682846, + 0.021168218925595284, + -0.004811635706573725, + 0.01138108316808939, + -0.019559374079108238, + -0.0004282802692614496, + 0.010412797331809998, + -0.0006023854948580265, + 0.004927085246890783, + -0.01167901698499918, + -0.0002772183797787875, + -0.011902467347681522, + 0.007895253598690033, + -0.0007425076328217983, + 0.020900078117847443, + 0.0012811166234314442, + 0.0002567353949416429, + -0.024296525865793228, + -0.016118235886096954, + -0.0005898164235986769, + -0.01301972009241581, + -0.02478811703622341, + -0.0028098910115659237, + 0.014665806666016579, + -0.008394293487071991, + -0.009064645506441593, + -0.0125802680850029, + 0.02892940118908882, + -0.010464935563504696, + 0.0012764614075422287, + -8.06516909506172e-5, + 0.014531736262142658, + 0.0005697989836335182, + -0.019425304606556892, + -0.0003177188045810908, + 0.0029309268575161695, + 0.0058953710831701756, + -0.020021172240376472, + -0.002599474973976612, + -0.0036105888430029154, + 0.021957743912935257, + 0.007932495325803757, + -0.014211457222700119, + 0.009787135757505894, + -0.015015878714621067, + 0.013712417334318161, + 0.001351875951513648, + -0.004651496186852455, + 0.0040481798350811005, + 0.02924223244190216, + -0.02389431558549404, + -0.004219491966068745, + -0.015060569159686565, + 0.013459173031151295, + -0.01034576166421175, + 0.003593830158933997, + 0.00855070911347866, + 0.006342272274196148, + -0.0059996480122208595, + -0.0074185593985021114, + -0.016743896529078484, + 0.009213612414896488, + 0.011098045855760574, + 0.04874201864004135, + 0.019052885472774506, + 0.022032227367162704, + -0.02930181846022606, + 0.005359089933335781, + -0.019991379231214523, + 0.00826022308319807, + -0.00688227778300643, + -0.015567056834697723, + -0.010986319743096828, + 0.0034690701868385077, + 0.010174449533224106, + 0.004539771005511284, + 0.01184288039803505, + -0.017309971153736115, + 0.008632640354335308, + -0.003143204841762781, + -0.006740759126842022, + 0.002945823362097144, + 0.026724688708782196, + -0.001827639527618885, + 0.01285585667937994, + -0.0032958961091935635, + -0.004487632308155298, + 0.011880122125148773, + -0.00041012492147274315, + 0.007582422811537981, + -0.010107414796948433, + 0.0026758206076920033, + 0.0024300250224769115, + 0.012922891415655613, + -0.00427907845005393, + -0.036169201135635376, + 0.012900547124445438, + 0.005239916034042835, + 0.024981774389743805, + 0.008051669225096703, + 0.006010820623487234, + 0.0023592656943947077, + -0.012118469923734665, + -0.027618492022156715, + -0.0069157956168055534, + 0.008930575102567673, + -0.006636482197791338, + -0.005716610699892044, + 0.018397431820631027, + -0.004524874035269022, + 0.006096476688981056, + -0.012632406316697598, + -0.005433573387563229, + 0.01836763694882393, + -0.004722255747765303, + -0.0162969958037138, + 0.002791270148009062, + -0.011686465702950954, + 0.0221216082572937, + 0.005943785421550274, + -0.02986789494752884, + -0.001203840016387403, + 0.004517425782978535, + -0.003692520782351494, + 0.0058544049970805645, + 0.017518525943160057, + 0.021734293550252914, + -0.006543377880007029, + 0.013027168810367584, + -0.009116783738136292, + 0.0055564711801707745, + 0.004022110253572464, + 0.013786900788545609, + 0.03753969818353653, + -0.020006274804472923, + -0.025562746450304985, + -0.012475990690290928, + -0.01949978806078434, + -0.018159084022045135, + -0.0176972858607769, + -0.022657888010144234, + -0.01626720279455185, + 0.0036664516665041447, + 0.008074014447629452, + 0.0010688386391848326, + 0.011083148419857025, + -0.004457838833332062, + -0.003951351158320904, + -0.006740759126842022, + -0.009675409644842148, + 0.0029123059939593077, + 0.00597357889637351, + 0.015313813462853432, + -0.01007762085646391, + 0.004696186166256666, + -0.025339296087622643, + 0.01317613571882248, + 0.008334706537425518, + -0.0037576938048005104, + -0.022642992436885834, + -0.00531812384724617, + 0.011269357986748219, + 0.020185036584734917, + -0.0018025013851001859, + 0.017593009397387505, + 0.013727313838899136, + 0.0017289489042013884, + -0.0177419763058424, + -0.012483439408242702, + 0.007545181084424257, + -0.0014263595221564174, + -0.007191384676843882, + 0.02833353355526924, + 6.58713688608259e-5, + 0.026128821074962616, + 0.004390804097056389, + 0.008275119587779045, + 0.022062020376324654, + 0.019589167088270187, + 0.00812615267932415, + -0.0030724455136805773, + 0.021063940599560738, + 0.02221098728477955, + -0.01570112816989422, + 0.006934416480362415, + 0.030568039044737816, + -0.005586264654994011, + 0.0004538839857559651, + 0.00358638190664351, + -0.00313575635664165, + 0.02809518575668335, + 0.007548905443400145, + -0.016788586974143982, + 0.007180212065577507, + -0.006807794328778982, + 0.008029324002563953, + 0.004688737913966179, + 0.006442824844270945, + -0.004100318066775799, + -0.0015446020988747478, + -0.005265985149890184, + 0.02334313653409481, + -0.016103338450193405, + -0.017354661598801613, + 0.04224705696105957, + 0.009816928766667843, + 0.006468894425779581, + 0.0063944109715521336, + -0.013816693797707558, + -0.004416873212903738, + 0.012327023781836033, + 0.0025436123833060265, + 0.0004180388059467077, + -0.003796797711402178, + -0.014799877069890499, + 0.012505783699452877, + -0.0007234212243929505, + -0.0011721844784915447, + 0.015581953339278698, + 0.0035547262523323298, + 0.00900505855679512, + 0.011261909268796444, + 0.01562664471566677, + -0.0031134113669395447, + -0.0028880988247692585, + -0.015552160330116749, + 0.018471915274858475, + 0.009273199364542961, + -0.013034617528319359, + -0.00903485156595707, + 0.011530050076544285, + -0.0034150697756558657, + -0.006740759126842022, + -0.014591323211789131, + -0.006640206556767225, + -0.006152339279651642, + -0.0013090480351820588, + 0.004059351980686188, + 0.004997844807803631, + 5.309860716806725e-5, + -0.003204653738066554, + -0.004126387182623148, + 0.004856326151639223, + 0.02163001522421837, + 0.022821752354502678, + 0.01978282444179058, + -0.01007017306983471, + -0.007519111968576908, + 0.023104790598154068, + -0.012282333336770535, + -0.006480067037045956, + -0.002659061923623085, + -0.009347682818770409, + 0.00974989403039217, + 0.011485359631478786, + -0.002426300896331668, + -0.012766476720571518, + -0.014680703170597553, + 0.011031010188162327, + 0.007053589913994074, + -0.019410407170653343, + -0.03438159450888634, + -0.0010241485433652997, + 0.011150184087455273, + 0.004308871924877167, + -0.009809480048716068, + 0.009019955061376095 + ], + "39e9e7d7-6ecc-4065-a99d-b93be3d88231": [ + -0.02014128677546978, + 0.006774246692657471, + -0.015604961663484573, + 0.013162906281650066, + 0.010494033806025982, + 0.0034211459569633007, + 0.023951802402734756, + 0.041885409504175186, + -0.013548493385314941, + 0.041643474251031876, + -0.03874022513628006, + 0.00017696396389510483, + 0.01937011256814003, + -0.025358062237501144, + 0.011696160770952702, + 0.006993502844125032, + -0.023588895797729492, + 0.018780389800667763, + 0.014092853292822838, + -0.018825752660632133, + 0.05498027056455612, + -0.012127111665904522, + -0.04061523824930191, + -0.002143413992598653, + 0.030257293954491615, + -0.001554636750370264, + -0.0014639102155342698, + 0.013185587711632252, + -0.04176444187760353, + 0.02038322575390339, + 0.011718842200934887, + -0.0023966922890394926, + 0.014864028431475163, + -0.03916361555457115, + 0.0034816302359104156, + -0.04109911248087883, + 0.01917353831231594, + 0.0007574719493277371, + -0.0494157113134861, + -0.018084820359945297, + 0.014107974246144295, + 0.0202924981713295, + -0.00982870627194643, + -0.048901595175266266, + -0.034203898161649704, + 0.017192674800753593, + 0.03855876997113228, + 0.0018693443853408098, + -0.008619019761681557, + -0.00034518606844358146, + 0.02442055568099022, + 0.016980979591608047, + 0.014092853292822838, + -0.031693797558546066, + -0.03024217300117016, + -0.00414317799732089, + 0.042762432247400284, + -0.012490017339587212, + 0.005746013019233942, + -0.03359905630350113, + 0.01295121107250452, + -0.0164366215467453, + -0.00498617859557271, + 0.01639125868678093, + 0.010100886225700378, + -0.015204252675175667, + -0.03447607904672623, + 0.03925434127449989, + -0.03979869931936264, + 0.02658287063241005, + 0.048085056245326996, + 0.03849828615784645, + -0.017888246104121208, + 0.035443827509880066, + 0.00506934430450201, + 0.012580743990838528, + 0.030559716746211052, + 0.026083875447511673, + -0.006025752983987331, + -0.030030477792024612, + 0.020882220938801765, + -0.023921558633446693, + 0.005882102996110916, + 0.022197755053639412, + 0.030196810141205788, + 0.0154991140589118, + -0.024450797587633133, + -0.05519196763634682, + 0.0009058475843630731, + -0.015937626361846924, + 0.015922503545880318, + 0.003950383979827166, + -0.004094034433364868, + -0.0016292971558868885, + -0.013835794292390347, + 0.018009213730692863, + 0.02104855328798294, + -0.003784051863476634, + -0.0018627288518473506, + -0.005787596106529236, + -0.0002004725392907858, + 0.01749509759247303, + 0.0020734791178256273, + -0.0042225634679198265, + 0.008838275447487831, + 0.001147312461398542, + 0.03492971137166023, + -0.028624217957258224, + 0.021260248497128487, + 0.04802457243204117, + 0.003356881206855178, + 0.003870998276397586, + 0.003961724694818258, + 0.0020337861496955156, + -0.03825635090470314, + -0.007961251772940159, + 0.008974364958703518, + -0.003767040790989995, + 0.000457412883406505, + -0.039012402296066284, + 0.03278251737356186, + 0.00829391647130251, + -0.017343886196613312, + 0.005420909728854895, + 0.0013117542257532477, + 0.005783815868198872, + -0.04143177717924118, + 0.006645717658102512, + -0.0076777320355176926, + 0.04572616517543793, + -0.015831777825951576, + -0.039526522159576416, + -0.01276219729334116, + -0.007794920355081558, + 0.0478733591735363, + 0.0270213820040226, + 0.007205198053270578, + 0.050202008336782455, + -0.013775310479104519, + 0.011265209876000881, + -0.04297412931919098, + 0.001064146519638598, + -0.012346367351710796, + 0.019627170637249947, + -0.018009213730692863, + 0.01835699938237667, + -0.006698641460388899, + 0.01970277540385723, + 0.0005145894829183817, + 0.013246072456240654, + -0.09054506570100784, + 0.004060011822730303, + 0.010153809562325478, + 0.004672416020184755, + 0.012852923944592476, + -0.02062516286969185, + -0.007379090413451195, + 0.004165859427303076, + 0.01749509759247303, + 0.015604961663484573, + 0.030151447281241417, + -0.016224926337599754, + 0.045302774757146835, + 0.02859397605061531, + 0.018236029893159866, + -0.025221973657608032, + 0.037953928112983704, + 0.019249143078923225, + -0.00864926166832447, + 0.024360070005059242, + 0.014448198489844799, + 0.0013476668391376734, + 0.0033927939366549253, + -0.022575782611966133, + -0.03913337364792824, + -0.018946722149848938, + 0.02042858861386776, + 0.028049616143107414, + 0.02345280535519123, + -0.021169520914554596, + -0.021880213171243668, + -0.0035893679596483707, + 0.016754163429141045, + -0.0013807442737743258, + 0.01511352602392435, + 0.023483047261834145, + 0.019672533497214317, + 0.02432982809841633, + 0.03105871193110943, + 0.009246544912457466, + 0.02283284068107605, + -0.045877378433942795, + 0.008467808365821838, + -0.0007310100481845438, + 0.0006204370874911547, + -0.04878062754869461, + -0.006804489064961672, + -0.0025668044108897448, + 0.021124158054590225, + -0.0044191377237439156, + -0.016739042475819588, + -0.007322386372834444, + -0.03759102150797844, + 0.0075870053842663765, + -0.0014582398580387235, + 0.04463744908571243, + -0.004850088618695736, + 0.007016184274107218, + 0.023997165262699127, + -0.0529540479183197, + -0.009866509586572647, + -0.022772356867790222, + 0.005367985926568508, + -0.01189273502677679, + -0.012127111665904522, + 0.006275251042097807, + -0.01903744786977768, + 0.01239929161965847, + -0.019294505938887596, + -0.012739515863358974, + -0.0023097461089491844, + 0.00250632013194263, + -0.0021755462512373924, + -0.04022208973765373, + -0.0469963364303112, + -0.04908304661512375, + -0.05495002865791321, + 0.012217838317155838, + -0.004400236066430807, + 0.037288598716259, + 0.02883591316640377, + -0.01965741254389286, + 0.017147311940789223, + -0.0270213820040226, + -0.012875605374574661, + -0.0035251034423708916, + 0.037893444299697876, + -0.02730868197977543, + -0.008180508390069008, + 0.011537388898432255, + -0.026507265865802765, + -0.0025384523905813694, + -0.01817554607987404, + -0.007261902093887329, + 0.002105611376464367, + 0.021713880822062492, + 0.012149793095886707, + 0.035927701741456985, + -0.027913525700569153, + -0.031119197607040405, + 0.018523331731557846, + 0.008876077830791473, + 0.012799999676644802, + 0.004702657926827669, + -0.027550620958209038, + 0.07808529585599899, + 0.0022700531408190727, + -0.030877258628606796, + -0.016406379640102386, + -0.02700626105070114, + 0.02711210958659649, + 0.0067288838326931, + 0.01802433468401432, + 0.031845007091760635, + 0.003802953287959099, + -0.03843780234456062, + 0.022560661658644676, + -0.03629060834646225, + 0.015400826930999756, + -0.0034211459569633007, + 0.039345066994428635, + 0.0014336680760607123, + -0.0021812168415635824, + 0.010804016143083572, + 0.013979445211589336, + -0.007088009268045425, + -0.00497483741492033, + -0.0020545776933431625, + -0.02863933891057968, + 0.022001180797815323, + 0.0016926166135817766, + -0.0008113408111967146, + 0.019551565870642662, + 0.012346367351710796, + -0.024738097563385963, + -0.015446189790964127, + -0.03753053769469261, + -0.01716243289411068, + -0.014138216152787209, + -0.004687536973506212, + 0.024118132889270782, + 0.012860484421253204, + 0.018538452684879303, + 0.012542941607534885, + 0.017464855685830116, + -0.0020092143677175045, + -0.004271707031875849, + -0.0018769048620015383, + -0.05307501554489136, + 0.01189273502677679, + -0.016043473035097122, + -0.019551565870642662, + -0.005882102996110916, + 0.0020886000711470842, + 0.03205670416355133, + 0.029864147305488586, + 0.04696609452366829, + 0.06241984665393829, + -0.03807489573955536, + -0.016315652057528496, + 0.04578665271401405, + -0.05147217959165573, + -0.035836976021528244, + -0.05123024061322212, + -0.005073124542832375, + 0.010947667062282562, + 0.0018372120102867484, + 0.03232888504862785, + -0.004581689368933439, + -0.039042647927999496, + 0.02009592391550541, + -0.028926638886332512, + -0.0540427640080452, + 0.040494270622730255, + 0.05367985740303993, + 0.003194329561665654, + 0.038861192762851715, + 0.0011548730544745922, + -0.05107903108000755, + -0.020368104800581932, + -0.011121558956801891, + -0.012799999676644802, + 0.01420626137405634, + -0.008301476947963238, + -0.03867974132299423, + -0.030196810141205788, + -0.04796408861875534, + -0.02234896644949913, + 0.02484394609928131, + -0.022288482636213303, + -0.0013297105906531215, + 0.006589013617485762, + -0.0029032486490905285, + -0.019354991614818573, + 0.018372120335698128, + 0.0035062020178884268, + 0.007227879483252764, + 0.020368104800581932, + 0.02561512030661106, + -0.01648198440670967, + 0.0008619019645266235, + 0.010909863747656345, + 0.035776492208242416, + 0.0036252804566174746, + 0.03447607904672623, + -0.010108446702361107, + -0.026129238307476044, + -0.023664500564336777, + 0.02321086823940277, + 0.0022643827833235264, + 0.014017247594892979, + -0.028911517933011055, + -0.00019681038975249976, + 0.013283874839544296, + -0.005783815868198872, + -0.004044890869408846, + -0.007639929186552763, + -0.013102421537041664, + 0.026567749679088593, + 0.00932214967906475, + 0.004914353135973215, + 0.014070170931518078, + -0.036502305418252945, + -0.049960069358348846, + 0.011174483224749565, + -0.038135379552841187, + 0.018735026940703392, + 0.005923685617744923, + -0.02259090356528759, + 0.00978334341198206, + 0.011605434119701385, + -0.027807679027318954, + -0.012225398793816566, + 0.0002849379670806229, + 0.010100886225700378, + 0.00920874159783125, + -0.009753100574016571, + 0.011998582631349564, + -0.00041228588088415563, + 0.005761133972555399, + -0.023135263472795486, + 0.02091246284544468, + -0.0023021853994578123, + -0.02254554070532322, + 0.03898216038942337, + 0.00852829311043024, + -0.015325221233069897, + 0.012981452979147434, + 0.016466863453388214, + 0.008739988319575787, + -0.02931978739798069, + -0.041462019085884094, + 0.007689072750508785, + -0.01793360896408558, + 0.02980366162955761, + -0.03190549463033676, + 0.026613112539052963, + -0.02841252274811268, + 0.03777247667312622, + -0.008240992203354836, + -0.01921890117228031, + 0.017268281430006027, + -0.005243236664682627, + 0.03359905630350113, + 0.06695616990327835, + 0.0027501475997269154, + 0.007794920355081558, + 0.07046426832675934, + -0.006324394606053829, + 0.00016172474715858698, + 0.04385115206241608, + 0.00463839340955019, + 0.007817601785063744, + 0.017767276614904404, + -0.006611695047467947, + 0.021230006590485573, + 0.011091317050158978, + 0.04242977127432823, + -0.036834966391325, + -0.027036502957344055, + -0.03248009458184242, + 0.02700626105070114, + -0.015680566430091858, + -0.005522977095097303, + -0.012694152072072029, + -0.038770467042922974, + -0.004914353135973215, + -0.02321086823940277, + 0.0223943293094635, + 0.019158417358994484, + -0.0212904904037714, + 0.005458712112158537, + 0.004785824101418257, + -0.004812285769730806, + -0.03314542397856712, + -0.007462256122380495, + -0.05047418922185898, + -0.008392203599214554, + 0.036411575973033905, + -0.03647205978631973, + -0.008036857470870018, + 0.044728174805641174, + -0.05129072815179825, + -0.03644181787967682, + -0.0029845244716852903, + -0.04518180713057518, + -0.002254932187497616, + 0.013480449095368385, + 0.04028257355093956, + -0.05253065750002861, + 0.020111044868826866, + -0.0029259303119033575, + 0.006917897146195173, + 0.006018192507326603, + 0.004547666758298874, + -0.013760188594460487, + -0.0008491435437463224, + -0.004668635781854391, + 0.023105021566152573, + 0.020443709567189217, + -0.029864147305488586, + -0.007046426646411419, + 0.026945777237415314, + 0.015249616466462612, + 0.005110927391797304, + 0.01237660925835371, + 0.012966332025825977, + 0.009564087726175785, + -0.022424571216106415, + -0.013797991909086704, + -0.0116356760263443, + 0.008067099377512932, + 0.02605363167822361, + -0.0116356760263443, + -0.0019449498504400253, + 0.01312510296702385, + -0.008513172157108784, + -0.01431966945528984, + -0.01206662692129612, + 0.004755581729114056, + 0.011544949375092983, + 0.017510218545794487, + 0.015967868268489838, + 0.01802433468401432, + -0.042369283735752106, + -0.04010112211108208, + 0.034687772393226624, + -0.03601842746138573, + 0.015589840710163116, + -0.013556054793298244, + -0.002941051498055458, + -0.009775782935321331, + -0.008445126935839653, + -0.013087300583720207, + -0.012263201177120209, + 0.019823744893074036, + -0.023195747286081314, + 0.040403544902801514, + -0.004547666758298874, + 0.0006473715184256434, + -0.012127111665904522, + 0.026204843074083328, + -0.021184641867876053, + -0.025161487981677055, + -0.038377318531274796, + 0.012603425420820713, + 0.008959244005382061, + -0.00778735987842083, + 0.014652333222329617, + -0.002659421181306243, + 0.0024137035943567753, + -0.021320732310414314, + -0.018205787986516953, + -0.012626107782125473, + -0.02009592391550541, + -0.0071182516403496265, + -0.008392203599214554, + -0.02431470714509487, + 0.0001497932680649683, + -0.016512226313352585, + -0.0010735971154645085, + 0.029591966420412064, + -0.016164442524313927, + 0.03314542397856712, + 0.01500011794269085, + -0.0017181334551423788, + -0.0023362080100923777, + 0.013011694885790348, + 0.026310691609978676, + -0.033568814396858215, + -0.10131128132343292, + 0.020610041916370392, + -0.018190667033195496, + 0.00255357357673347, + -0.04584713652729988, + -0.011590313166379929, + -0.010622563771903515, + 0.015302539803087711, + -0.00829391647130251, + 0.03444583714008331, + -0.036411575973033905, + 0.004623272456228733, + 0.0025497933384031057, + 0.011174483224749565, + 0.004634613171219826, + -0.015317660756409168, + 0.0006894270773045719, + -0.011938097886741161, + -0.02071588858962059, + -0.024148374795913696, + 0.0135106910020113, + 0.012739515863358974, + 0.013881158083677292, + -0.007537861820310354, + -0.010342823341488838, + -0.021608032286167145, + -0.014659893698990345, + -0.00010354400728829205, + -0.01239929161965847, + -0.004559007473289967, + -0.0011983461445197463, + -0.012943650595843792, + 0.02720283530652523, + -0.002999645657837391, + -0.020171530544757843, + 0.02272699400782585, + -0.014281866140663624, + 0.012739515863358974, + -0.017842883244156837, + -0.008233431726694107, + 0.024647371843457222, + 0.020534435287117958, + -0.028911517933011055, + 0.006052215117961168, + -0.015846898779273033, + -0.002615947974845767, + -0.012142232619225979, + -0.013616538606584072, + -0.011915416456758976, + -0.010244536213576794, + 0.014629651792347431, + 0.01658783294260502, + 0.008188068866729736, + 0.008543414063751698, + -0.007466036826372147, + -0.000840637949295342, + -0.010667926631867886, + 0.02859397605061531, + 0.01586201973259449, + -0.023528411984443665, + 0.01256562303751707, + 0.022651387378573418, + 0.01994471438229084, + -0.013450207188725471, + -0.017510218545794487, + 0.017903367057442665, + 0.026552628725767136, + 0.004180980380624533, + 0.003698995802551508, + 0.018765268847346306, + -0.008203189820051193, + -0.01663319580256939, + 0.017071707174181938, + -0.015317660756409168, + -0.006997283082455397, + -0.01793360896408558, + 3.24276443279814e-5, + 0.021350974217057228, + 0.018583815544843674, + -0.03450632095336914, + 0.04723827540874481, + -0.007473597303032875, + 0.030393384397029877, + -0.021320732310414314, + 0.012119551189243793, + 0.01744973473250866, + -0.014281866140663624, + 0.0020904901903122663, + -0.012989013455808163, + 0.014501121826469898, + 0.016754163429141045, + -0.02821594849228859, + 0.005836739670485258, + -0.016950737684965134, + -0.018009213730692863, + 0.009753100574016571, + 0.021078795194625854, + 0.04128056764602661, + -0.007379090413451195, + -0.04466769099235535, + -0.01782776229083538, + -0.02519172988831997, + 0.021713880822062492, + 0.06429485976696014, + 0.0011312463320791721, + -0.012490017339587212, + 0.010713290423154831, + -0.0005949202459305525, + 0.03344784304499626, + 0.009881630539894104, + 0.016860011965036392, + -0.001488481997512281, + -0.0202924981713295, + 0.021078795194625854, + 0.016663437709212303, + -0.030695807188749313, + 0.02067052572965622, + 0.0005202598986215889, + -0.0057989368215203285, + 0.02422398142516613, + 0.015415947884321213, + -0.016905374825000763, + 0.00429060822352767, + 0.003591258078813553, + 0.036169640719890594, + -0.020504193380475044, + 0.030695807188749313, + 0.0029240401927381754, + -0.0017786178505048156, + 0.01001772005110979, + 0.023422563448548317, + -0.0184174831956625, + 0.001678440603427589, + -0.003334199544042349, + -0.007106910925358534, + -0.003105493262410164, + 0.025690726935863495, + 0.0172077976167202, + -0.0036555228289216757, + -0.0014856468187645078, + -0.0003905493067577481, + -0.03613939881324768, + -0.02023201435804367, + 0.020307619124650955, + -0.038861192762851715, + 0.00420744251459837, + -0.02250017784535885, + -0.03190549463033676, + -0.005141169298440218, + -0.0013977554626762867, + -0.02191045507788658, + -0.013442645780742168, + -0.014410396106541157, + 0.05576656758785248, + 0.004952155984938145, + -0.008437566459178925, + 0.008898759260773659, + -0.002850324846804142, + -0.006600354332476854, + 0.010486473329365253, + -0.0022227996960282326, + -0.017177553847432137, + -0.00932214967906475, + -0.04627052694559097, + -0.02272699400782585, + 0.02960708737373352, + -0.014886709861457348, + -0.0017285292269662023, + -0.01811506226658821, + 0.02903248742222786, + -0.0014563496224582195, + 0.03483898565173149, + 0.01630053110420704, + 0.020247135311365128, + -0.008739988319575787, + -0.006052215117961168, + -0.008611459285020828, + 0.021033432334661484, + -0.04333703592419624, + 0.006554991006851196, + -0.021789485588669777, + 0.003570466535165906, + -0.021744122728705406, + -0.0026518607046455145, + -0.022817719727754593, + -0.04651246219873428, + 0.022802598774433136, + -0.019264264032244682, + 0.05080685019493103, + -0.0049823978915810585, + 0.03254057839512825, + 0.006014412268996239, + 0.010531837120652199, + 0.0010376846184954047, + -0.01182468980550766, + -0.03178452327847481, + -0.004627052694559097, + -0.0069821616634726524, + -0.030529474839568138, + 0.006071116309612989, + -0.008437566459178925, + 0.011363497003912926, + -0.0201866514980793, + -0.03768174722790718, + -0.006120259873569012, + -0.013677023351192474, + 0.03928458318114281, + 0.03979869931936264, + -0.03916361555457115, + -0.024163497611880302, + -0.003676314139738679, + 0.00044937978964298964, + 0.04648222029209137, + -0.017752155661582947, + -0.020156409591436386, + 0.0043284110724925995, + 0.017661429941654205, + 0.016890253871679306, + 0.00946580059826374, + 0.009193620644509792, + -0.0009304193663410842, + 0.030499232932925224, + -0.012898286804556847, + -0.01787312515079975, + 1.7941523765330203e-5, + -0.0009597165044397116, + -0.012550502084195614, + 0.03004559874534607, + 0.010713290423154831, + -0.023135263472795486, + -0.006210986524820328, + 0.02191045507788658, + 0.016512226313352585, + -0.007923449389636517, + 0.007273242808878422, + 0.005534317810088396, + 0.02706674486398697, + -0.055736325681209564, + -0.05089757964015007, + -0.0037935026921331882, + -0.008172946982085705, + -0.02177436463534832, + 0.010206733830273151, + 0.009496042504906654, + 0.004763142205774784, + -0.01614932157099247, + 0.043911635875701904, + -0.023724984377622604, + -0.034294623881578445, + 0.022515298798680305, + -0.021849971264600754, + 0.00027288837009109557, + -0.0018759598024189472, + 0.0058443001471459866, + 0.010924985632300377, + -0.016844891011714935, + 0.03335711732506752, + 0.014818664640188217, + 0.0006903721368871629, + 0.017086828127503395, + 0.03946603834629059, + -0.00046922621550038457, + 0.0213963370770216, + 0.006018192507326603, + 0.005530537571758032, + -0.02894175983965397, + -0.024813704192638397, + 0.011045954190194607, + -0.004645953886210918, + 0.003211340866982937, + 0.011529828421771526, + 0.03553455322980881, + 0.012928529642522335, + 0.042611222714185715, + -0.015332781709730625, + 0.004838747903704643, + 0.006290371995419264, + 0.00828635599464178, + 0.03390147536993027, + 0.016663437709212303, + 0.011696160770952702, + -0.021608032286167145, + 0.01451624371111393, + -0.021018311381340027, + 0.011204725131392479, + 0.01639125868678093, + 0.005935026798397303, + -0.009427997283637524, + 0.023044535890221596, + -0.0051449500024318695, + -0.025267336517572403, + 0.02783792093396187, + -0.024964913725852966, + -0.0063017127104103565, + 0.029108092188835144, + 0.029198817908763885, + -0.015741052106022835, + -0.010032841004431248, + -0.0020337861496955156, + 0.026522386819124222, + -0.021638276055455208, + -0.04088741913437843, + 0.005764914210885763, + 0.01965741254389286, + -0.05062539875507355, + 0.006188304629176855, + 0.007923449389636517, + -0.026371175423264503, + 0.017374128103256226, + 0.01917353831231594, + 0.04732900112867355, + -0.023241110146045685, + 0.03384099155664444, + 0.008256113156676292, + 0.0058745420537889, + 0.02033786103129387, + -0.018704785034060478, + 0.02413325384259224, + -0.006210986524820328, + -0.021698759868741035, + 0.019596928730607033, + -0.0061958651058375835, + -0.00790832843631506, + 0.025010278448462486, + -0.008830714970827103, + -0.019445717334747314, + -0.009601890109479427, + 0.0021245128009468317, + 0.008981925435364246, + 0.013896279036998749, + -0.010909863747656345, + -0.04388139396905899, + 0.010773774236440659, + 0.03680472448468208, + 0.00884583592414856, + -0.003578027244657278, + -0.01634589396417141, + -0.003130065044388175, + -0.011870053596794605, + -0.001189840491861105, + -0.011303012259304523, + 0.027989132329821587, + 0.009594329632818699, + 0.020398346707224846, + -0.03202646225690842, + -0.008717306889593601, + 0.0026745421346277, + -0.015695687383413315, + -0.01846284791827202, + -0.017343886196613312, + -0.003853986971080303, + 0.0053566452115774155, + 0.02360401675105095, + -0.026613112539052963, + -0.0033379800152033567, + 0.05461736395955086, + 0.007016184274107218, + -0.013752628117799759, + -0.018855994567275047, + -0.02431470714509487, + 0.005220555234700441, + -0.04696609452366829, + 0.0050277612172067165, + 0.0033984642941504717, + 0.025010278448462486, + -0.03843780234456062, + 0.006158062722533941, + -0.00715983472764492, + 0.025584878399968147, + -0.004260366316884756, + -0.018387241289019585, + -0.0003985824005212635, + -0.005942587275058031, + -0.007114471402019262, + 0.045968104153871536, + 0.023225989192724228, + -0.0076210275292396545, + -0.02566048502922058, + 0.027369167655706406, + -0.009095333516597748, + 0.0035043118987232447, + 0.01630053110420704, + 0.03018168918788433, + 0.02197093889117241, + 0.015468872152268887, + -0.00809734221547842, + -0.013276314362883568, + 0.00903484970331192, + -0.004112935625016689, + 0.019914470613002777, + 0.007099350448697805, + 0.004347312264144421, + -0.005016420502215624, + 0.006086237262934446, + 0.033084936439991, + -0.040736209601163864, + 0.024496160447597504, + 0.004884111229330301, + 0.006902776192873716, + 0.0184174831956625, + -0.014160897582769394, + 0.025978026911616325, + 0.030922623351216316, + -0.00040543414070270956, + 0.0024590666871517897, + 0.005772474687546492, + 0.017464855685830116, + 0.008671943098306656, + 0.0020999410189688206, + -0.021562669426202774, + 0.007764677982777357, + -0.019687654450535774, + 0.009503602981567383, + -0.01571080833673477, + -0.0014780862256884575, + 0.0359579436480999, + -0.000732900167349726, + -0.003553455462679267, + -0.002047017216682434, + 0.012028824537992477, + 0.00951872393488884, + 0.014039929024875164, + 0.0016340224537998438, + -0.010108446702361107, + -0.032994210720062256, + 0.01007064338773489, + -0.02984902448952198, + -0.002510100370272994, + 0.01103083323687315, + 0.007658830378204584, + -0.00797637365758419, + 0.013238511979579926, + -0.022696752101182938, + 0.03505067899823189, + -0.013034377247095108, + -0.036411575973033905, + -0.006641937419772148, + 0.006316834129393101, + -0.02133585326373577, + -0.014675014652311802, + -0.004052451346069574, + -0.019717896357178688, + -0.011431541293859482, + -0.028079858049750328, + 0.014236503280699253, + -0.0261443592607975, + -0.010100886225700378, + 0.016330773010849953, + -0.04091766104102135, + 0.006736444309353828, + 0.029728056862950325, + 0.002831423422321677, + 0.007450915407389402, + 0.010199173353612423, + 0.02221287600696087, + -0.0040108682587742805, + -0.0126865915954113, + -0.013881158083677292, + 0.0012947430368512869, + -0.021744122728705406, + -0.022893326357007027, + -0.02682480774819851, + 0.02047395147383213, + 0.009405315853655338, + 0.027989132329821587, + 0.022167513146996498, + -0.004052451346069574, + -0.0062865917570889, + -0.021517306566238403, + 0.05903272330760956, + -0.01912817545235157, + -0.00982870627194643, + 0.0164366215467453, + -0.012444654479622841, + -0.012716834433376789, + 0.0011510926997289062, + 0.025841936469078064, + -0.006498286966234446, + -0.00778735987842083, + -0.0006539869937114418, + -0.02922906167805195, + 0.009548966772854328, + 0.01131813321262598, + -0.008112463168799877, + -0.005330183077603579, + 0.027943767607212067, + -0.01417601853609085, + 0.017963850870728493, + 0.012837802991271019, + -0.022046545520424843, + -0.013601417653262615, + -0.0013580626109614968, + 0.00043591257417574525, + -0.025630241259932518, + 0.025932664051651955, + -0.0007333726971410215, + -0.01822090893983841, + -0.10137176513671875, + -0.010531837120652199, + -0.004914353135973215, + 0.05243992805480957, + 0.019354991614818573, + -0.02951636165380478, + 0.02576633170247078, + 0.008543414063751698, + -0.006698641460388899, + 0.00802929699420929, + 0.01543106883764267, + 0.0033152983523905277, + -0.010123567655682564, + 0.00706532783806324, + 0.017767276614904404, + 0.0005585351609624922, + -0.012323685921728611, + 0.005182752385735512, + 0.004105375148355961, + -0.014523804187774658, + -0.004233904182910919, + 0.003466509049758315, + 0.02561512030661106, + -0.0018447726033627987, + -0.006282811518758535, + -0.002746367361396551, + -0.010441110469400883, + -0.017842883244156837, + 0.006766686215996742, + 0.009480921551585197, + 0.018674543127417564, + 0.024481039494276047, + 0.0014147666515782475, + 0.017041465267539024, + 0.01903744786977768, + -0.0037349085323512554, + -0.00569686945527792, + -0.02186509221792221, + 0.031088953837752342, + 0.01280756015330553, + 0.01083425898104906, + 0.003685764968395233, + -0.008165386505424976, + 0.029576845467090607, + -0.01256562303751707, + 0.010690608061850071, + 0.028231069445610046, + -0.03753053769469261, + -0.009722858667373657, + 0.015136207453906536, + 0.012973892502486706, + -0.021169520914554596, + -0.022515298798680305, + -0.023089898750185966, + -0.01492451224476099, + 0.007609686814248562, + 0.03474825620651245, + 0.00553809804841876, + -0.007069108076393604, + 0.030967986211180687, + 0.025872180238366127, + 0.014818664640188217, + 0.008104902692139149, + -0.017676550894975662, + -0.004577909130603075, + 0.01175664458423853, + 0.0069821616634726524, + 0.02168363891541958, + 0.027293561026453972, + -0.027716951444745064, + 0.018447725102305412, + -0.018765268847346306, + 0.012444654479622841, + 0.0010367395589128137, + 0.009647252969443798, + -0.004339751787483692, + 0.006498286966234446, + -0.00540578830987215, + 0.01782776229083538, + -0.008876077830791473, + -0.018568694591522217, + 0.010221854783594608, + -0.012361488305032253, + -0.007946130819618702, + -0.006864973343908787, + -0.0212904904037714, + 0.01705658622086048, + -0.013775310479104519, + -0.0008557590190321207, + 0.005757353734225035, + 0.02528245747089386, + -0.0016047253739088774, + 0.020156409591436386, + 0.0017805079696699977, + -0.008739988319575787, + 0.05319598317146301, + -0.012966332025825977, + 0.03033290058374405, + -0.018765268847346306, + -0.03514140471816063, + 0.01601323112845421, + 0.0019118724158033729, + 0.00454388651996851, + -0.020655404776334763, + 0.006687300745397806, + 0.0009053750545717776, + 0.015287418849766254, + -0.002251151716336608, + 0.010244536213576794, + -0.025221973657608032, + 0.019294505938887596, + -0.0033285291865468025, + -0.02201630175113678, + 0.006592793855816126, + 0.01002528052777052, + -0.0011851151939481497, + 0.0011841701343655586, + -0.013737507164478302, + -0.007711754180490971, + -0.011182043701410294, + 0.01835699938237667, + 0.036502305418252945, + 0.02634093351662159, + -0.025690726935863495, + 0.017616067081689835, + 0.018629178404808044, + -0.01614932157099247, + -0.014554046094417572, + -0.0011123449075967073, + 0.027217956259846687, + -0.020504193380475044, + -0.005935026798397303, + -0.02446591854095459, + 0.0071333725936710835, + -0.029546603560447693, + -0.0014081512345001101, + 0.00840732455253601, + 0.008762669749557972, + 0.010184052400290966, + -0.023634258657693863, + 0.014221382327377796, + 0.0033323094248771667, + -0.007080448791384697, + 0.02100319042801857, + -0.007700413465499878, + -0.0024401654954999685, + -0.02671896107494831, + -0.019430596381425858, + -0.01657271198928356, + -0.0036952155642211437, + -0.003192439442500472, + 0.024254223331809044, + 0.03913337364792824, + -0.045544713735580444, + 0.013737507164478302, + -0.010229415260255337, + -0.01083425898104906, + 0.004082693252712488, + -0.010116007179021835, + 0.026658475399017334, + 0.010788895189762115, + 0.014002126641571522, + -0.00010005906369769946, + -0.01749509759247303, + -0.0006473715184256434, + -0.006725103594362736, + -0.009307028725743294, + 0.002260602544993162, + -0.02936515025794506, + 0.0019487300887703896, + 0.01599811017513275, + -0.015680566430091858, + 0.0041167158633470535, + -0.019203780218958855, + -0.0024741878733038902, + -0.01338216196745634, + 0.004305729642510414, + 0.00497483741492033, + 0.021471943706274033, + -0.012316125445067883, + 0.0045854696072638035, + 0.01581665687263012, + -0.003698995802551508, + 0.004003307782113552, + -0.015053042210638523, + -0.004596810322254896, + 0.00778735987842083, + -0.0052848197519779205, + -0.0043284110724925995, + 0.010917424224317074, + 0.028684701770544052, + 0.021517306566238403, + -0.00014494979404844344, + 0.009337271563708782, + -0.004827407188713551, + 0.016028352081775665, + 0.024344949051737785, + 0.045544713735580444, + -0.0272481981664896, + -0.021426580846309662, + -0.011287891305983067, + -0.024934671819210052, + 0.022318724542856216, + -0.0007168340380303562, + -0.005315062124282122, + -0.0038218547124415636, + -0.027127230539917946, + 0.03248009458184242, + 0.008588776923716068, + 0.002873006509616971, + 0.019929591566324234, + -0.004536326043307781, + 0.0009186060051433742, + 0.003120614215731621, + 0.002043236745521426, + 0.01525717694312334, + -0.006180744152516127, + -0.012444654479622841, + -0.0033909038174897432, + -0.03653254732489586, + 0.02782279998064041, + 0.033810749650001526, + 0.02369474247097969, + -0.020156409591436386, + -0.007511399686336517, + 0.009284347295761108, + -0.010191612876951694, + -0.05597826465964317, + 0.023241110146045685, + 0.01127277035266161, + 0.006131600588560104, + 0.015967868268489838, + -0.018447725102305412, + 0.005953927990049124, + -0.02192557603120804, + 0.01711707003414631, + 0.010085765272378922, + -0.008142705075442791, + 0.006014412268996239, + -0.003719787346199155, + 0.0031962196808308363, + -0.028911517933011055, + -0.038861192762851715, + -0.01917353831231594, + 0.0002490254119038582, + -0.01468257512897253, + -0.020882220938801765, + 0.0011955109657719731, + -0.008853396400809288, + 0.007757117506116629, + -0.007477377541363239, + -0.020579800009727478, + -0.02172900177538395, + 0.01619468443095684, + 0.022182634100317955, + 0.0048878914676606655, + -0.024148374795913696, + 0.0357462503015995, + 0.00753408158197999, + 0.038770467042922974, + -0.02600826881825924, + -0.035685766488313675, + -0.0038861192297190428, + -0.027293561026453972, + 0.010554518550634384, + -0.020111044868826866, + -0.022938689216971397, + -0.008014176040887833, + -0.01052427664399147, + -0.022288482636213303, + 0.01855357363820076, + -0.017479976639151573, + -0.016376137733459473, + 0.0020583579316735268, + 0.01811506226658821, + 0.023377200588583946, + -0.032510336488485336, + -0.03229864314198494, + 0.008392203599214554, + 0.019778382033109665, + 0.001787123503163457, + 0.01343508530408144, + -0.023528411984443665, + 0.011650796979665756, + 0.0002337861806154251, + -0.0009290017769671977, + 0.01711707003414631, + 0.0035194328520447016, + 0.02446591854095459, + -0.007046426646411419, + -0.028684701770544052, + 0.02969781495630741, + 0.014841347001492977, + 0.0007073833257891238, + 0.017026344314217567, + 0.0394962802529335, + 0.007345067802816629, + -0.0002764323726296425, + 0.010796455666422844, + 0.017026344314217567, + 0.014153337106108665, + 0.0009228588314726949, + -0.03432486578822136, + 0.018432604148983955, + -0.015922503545880318, + -0.0003019492141902447, + 0.020201772451400757, + -0.017555581405758858, + 0.0062072062864899635, + -0.011507146991789341, + 0.0033379800152033567, + -0.015476432628929615, + -0.015446189790964127, + -0.037711989134550095, + -0.03211718797683716, + 0.024647371843457222, + 0.01571080833673477, + -0.0009545186185277998, + 0.03163331374526024, + -0.029259303584694862, + 0.002510100370272994, + 0.008399764075875282, + 0.00565906660631299, + 0.012240519747138023, + -0.028473006561398506, + -0.01052427664399147, + -0.0076323687098920345, + 0.016557589173316956, + 0.0037556998431682587, + -0.011159362271428108, + -0.029591966420412064, + 0.0319962203502655, + -0.016224926337599754, + -0.008203189820051193, + -0.003853986971080303, + 0.036411575973033905, + -0.009291907772421837, + 0.0008193738758563995, + -0.03248009458184242, + 0.003719787346199155, + 0.03556479513645172, + -0.012301004491746426, + -0.024677613750100136, + -0.003829415189102292, + -0.0018107501091435552, + -0.003784051863476634, + -0.019022326916456223, + 0.011408859863877296, + 0.020988067612051964, + -0.019823744893074036, + 0.007885647006332874, + 0.027747195214033127, + 0.004751801490783691, + -0.011764205992221832, + 0.016270289197564125, + 0.015136207453906536, + -0.02422398142516613, + 0.03148210421204567, + -0.011015711352229118, + -0.026507265865802765, + -0.02700626105070114, + -0.0019714117515832186, + -0.006917897146195173, + 0.032661546021699905, + -0.003568576416000724, + 0.004838747903704643, + -0.012293444015085697, + -0.0012465446488931775, + 0.0034343767911195755, + -0.030529474839568138, + -0.0027747193817049265, + -0.0006842291913926601, + -0.01903744786977768, + 0.0016085056122392416, + -0.029818782582879066, + 0.027233077213168144, + -0.012074187397956848, + -0.0008963969303295016, + -0.0017918488010764122, + -0.026446780189871788, + -0.01806969940662384, + 0.005042882636189461, + -0.023724984377622604, + -0.01419870089739561, + -0.0004647371533792466, + -0.018916480243206024, + 0.018130183219909668, + 0.02033786103129387, + -0.014160897582769394, + 0.007707973942160606, + -0.02931978739798069, + -0.02960708737373352, + 0.00348541047424078, + -0.009669935330748558, + 0.023331837728619576, + 0.0032907265704125166, + 0.000595392775721848, + 0.0032869463320821524, + -0.02576633170247078, + -0.02177436463534832, + 0.009579208679497242, + 0.0077495570294559, + -0.015650324523448944, + 0.027293561026453972, + -0.015846898779273033, + -0.013956762850284576, + 0.03644181787967682, + 0.037228114902973175, + -0.0022284702863544226, + -0.007779799401760101, + -0.007235439959913492, + -0.02278747782111168, + -0.00761724729090929, + -0.008717306889593601, + -0.02594778500497341, + 0.0087702302262187, + 0.0060106320306658745, + 0.04705682396888733, + -0.0066646188497543335, + -0.009027289226651192, + 0.016996102407574654, + 0.011681039817631245, + -0.01672392152249813, + -0.0106452452018857, + 0.003719787346199155, + 0.011053514666855335, + -0.002786060329526663, + 0.004577909130603075, + 0.0077495570294559, + 0.026734082028269768, + 0.011922976933419704, + -0.0006492616375908256, + 0.00889119878411293, + -0.0030676904134452343, + 0.017041465267539024, + 0.003377672750502825, + 0.027263319119811058, + -0.003060129936784506, + -0.009178499691188335, + -0.01687513291835785, + -0.010388186201453209, + 0.0012021263828501105, + 0.023392321541905403, + -0.010894742794334888, + -0.004022208973765373, + -0.0028956881724298, + -0.00840732455253601, + -0.0164366215467453, + 0.005957708228379488, + 0.017721913754940033, + 0.007500058971345425, + -0.014773301780223846, + 0.015105965547263622, + -0.029153455048799515, + 0.015037921257317066, + 0.02283284068107605, + -0.0016113407909870148, + 0.01763118803501129, + -0.02922906167805195, + 0.012512699700891972, + -0.007488718256354332, + 0.006146722007542849, + 0.019430596381425858, + 0.007757117506116629, + 0.0026650915388017893, + 0.011159362271428108, + 0.04442575201392174, + 0.008959244005382061, + -0.01492451224476099, + -0.010985469445586205, + -0.0021188422106206417, + 0.00348541047424078, + -0.020247135311365128, + -0.006694861222058535, + 0.019536444917321205, + -0.015015238896012306, + -0.01100815087556839, + -0.0076474896632134914, + -0.01657271198928356, + -0.022938689216971397, + 0.01103083323687315, + -0.03263130411505699, + 0.015174010768532753, + 0.011907855980098248, + 0.019022326916456223, + -0.03402244672179222, + 0.019491080194711685, + 0.0003912581305485219, + 0.02312014251947403, + 0.036593031138181686, + -0.01879551075398922, + 0.013057058677077293, + -0.017313644289970398, + -0.005171411670744419, + 0.014576727524399757, + -0.0015395156806334853, + -0.008898759260773659, + -0.003991967067122459, + 0.01057719998061657, + 0.016164442524313927, + 0.01514376886188984, + -0.017903367057442665, + -0.031693797558546066, + -0.008626580238342285, + -0.007870526053011417, + -0.0016198464436456561, + 0.0004295333637855947, + 0.0202924981713295, + -0.00553809804841876, + -0.03532285988330841, + 0.00815026555210352, + 0.0029259303119033575, + 0.02071588858962059, + 0.011900295503437519, + 0.007322386372834444, + 0.007197637110948563, + 0.008014176040887833, + -0.01264122873544693, + -0.006384878885000944, + 0.00548139400780201, + 0.01912817545235157, + -0.012278322130441666, + 0.008808033540844917, + -0.002256822306662798, + -0.006687300745397806, + 0.00036054340307600796, + -0.0015801535919308662, + -0.012527820654213428, + -0.009806024841964245, + 0.009080212563276291, + 0.005643945652991533, + -0.017041465267539024, + 0.010940106585621834, + 0.0038558770902454853, + 0.024813704192638397, + 0.008944123052060604, + 0.0076210275292396545, + 0.00043473124969750643, + -0.010410868562757969, + -0.016708800569176674, + -0.016799528151750565, + 0.00915581826120615, + -0.029743177816271782, + 0.003377672750502825, + 0.021789485588669777, + 0.058669816702604294, + -0.00829391647130251, + -0.01614932157099247, + -0.0013987005222588778, + 0.03095286525785923, + -0.004369994159787893, + 0.006566332187503576, + -0.019581807777285576, + 0.006898995954543352, + 0.008278794586658478, + -0.007137152832001448, + -0.022984052076935768, + 0.011733963154256344, + 0.0041318368166685104, + -0.008588776923716068, + 0.0007759007858112454, + 0.0013864146312698722, + 0.020579800009727478, + 0.023709863424301147, + 0.00841488502919674, + 0.01014624908566475, + -0.010168930515646935, + 0.029153455048799515, + -0.009042410179972649, + -0.010531837120652199, + 0.014984996989369392, + 0.002041346626356244, + 0.007636148948222399, + 0.00567040778696537, + 0.006105138920247555, + 0.004627052694559097, + -0.0003468399227131158, + -0.013223390094935894, + -0.0183116365224123, + -0.015514235012233257, + 0.014939634129405022, + -0.011786887422204018, + 0.004850088618695736, + -0.006902776192873716, + 0.017283402383327484, + -0.014644772745668888, + -0.009790903888642788, + 0.01802433468401432, + 0.026930656284093857, + -0.01413065567612648, + 0.0014185470063239336, + -0.010244536213576794, + 0.0004682811559177935, + -0.0002582398010417819, + 0.009911872446537018, + -0.026204843074083328, + 0.006725103594362736, + 0.009858948178589344, + -0.01369970478117466, + 0.010796455666422844, + -0.015287418849766254, + 0.012240519747138023, + -0.005080685019493103, + -0.013374601490795612, + -0.0036082693841308355, + 0.006573892664164305, + 0.005749793257564306, + -0.018704785034060478, + -0.015982989221811295, + -0.008233431726694107, + 0.0006218546768650413, + -0.01514376886188984, + -0.0015603071078658104, + 0.014387713745236397, + 0.029002243652939796, + 0.00426414655521512, + 0.00756054325029254, + 0.018190667033195496, + -0.027853041887283325, + -0.000616184261161834, + -0.003946603741496801, + 0.0359579436480999, + 0.01201370358467102, + 0.011499586515128613, + -0.008777790702879429, + 0.0028805669862776995, + 0.0060900175012648106, + 0.010176490992307663, + -0.02984902448952198, + -0.002767158905044198, + -0.0054965149611234665, + -0.0038861192297190428, + -0.02519172988831997, + 0.0036460720002651215, + -0.017328765243291855, + 0.007246780674904585, + 0.010350383818149567, + -0.0034381570294499397, + -0.0028465446084737778, + 0.020322740077972412, + -0.005840519908815622, + -0.01386603619903326, + 0.009942114353179932, + -0.002086709951981902, + -0.006917897146195173, + 0.022424571216106415, + 0.00659657409414649, + 0.0036252804566174746, + 0.024738097563385963, + -0.018326757475733757, + -0.007915888912975788, + 0.02687017060816288, + -0.009594329632818699, + -0.010085765272378922, + -0.015831777825951576, + 0.017283402383327484, + -0.008815594017505646, + -0.003528883680701256, + 0.028185706585645676, + -0.016209805384278297, + -0.010993029922246933, + 0.0014922622358426452, + 0.007454695645719767, + -0.002958062570542097, + -0.0020526875741779804, + -0.027369167655706406, + 0.0037783815059810877, + -0.0016500885831192136, + -0.010652805678546429, + 0.008331718854606152, + -0.0007116361521184444, + -0.007163614965975285, + -0.004850088618695736, + -0.029017366468906403, + 0.004645953886210918, + 0.015877140685915947, + 0.008739988319575787, + 0.006396219599992037, + -0.021456822752952576, + -0.007938570342957973, + -0.0125731835141778, + -0.0012635558377951384, + 0.01701122336089611, + 0.011333254165947437, + -0.011113998480141163, + 0.013246072456240654, + 0.005908564664423466, + -0.019294505938887596, + -0.008641701191663742, + 0.0005698759341612458, + 0.02451128140091896, + -0.009511163458228111, + -0.021366095170378685, + 0.022817719727754593, + 0.023679621517658234, + 0.01782776229083538, + -0.01663319580256939, + -0.006607914809137583, + -0.025690726935863495, + 0.010063082911074162, + 0.00225871242582798, + -0.0037972829304635525, + 0.02245481312274933, + 0.016950737684965134, + 0.007946130819618702, + -0.014501121826469898, + -0.004101594910025597, + -0.007122031878679991, + 0.01208930928260088, + 0.013397282920777798, + 0.017858004197478294, + 0.022469935938715935, + 0.0041620791889727116, + 0.016784407198429108, + -0.006672179792076349, + -0.006853632628917694, + -0.005103366915136576, + -0.0014809214044362307, + -0.027762316167354584, + -0.0015565268695354462, + 0.014531364664435387, + -0.004679976496845484, + 0.001574483118019998, + 0.0033720023930072784, + -0.004415357485413551, + 0.007878086529672146, + -0.00038771412800997496, + 0.012852923944592476, + 0.004819846246391535, + 0.02003544010221958, + -0.004317070357501507, + 0.011877614073455334, + -0.02071588858962059, + 0.015294979326426983, + 0.0034759598784148693, + -0.02676432393491268, + 0.015741052106022835, + 0.003969285171478987, + -0.011083756573498249, + 0.017767276614904404, + -0.01947595924139023, + 0.018099941313266754, + 0.0037708210293203592, + 0.004426698200404644, + -0.0032869463320821524, + -0.011053514666855335, + -0.0066305967047810555, + 0.007473597303032875, + -0.007983934134244919, + -3.901358650182374e-5, + 0.0044796220026910305, + -0.014032368548214436, + -0.0029864145908504725, + 0.005897223949432373, + 0.0017067926237359643, + -0.017192674800753593, + -0.015514235012233257, + 0.014221382327377796, + -0.004063792061060667, + -0.014712817035615444, + -0.002829533303156495, + 0.010221854783594608, + -0.0026953336782753468, + 0.016860011965036392, + 0.021713880822062492, + 0.008634140715003014, + 0.025781452655792236, + 0.002659421181306243, + 0.006192084867507219, + -0.009624571539461613, + 0.0010688718175515532, + 0.0023305374197661877, + 0.012928529642522335, + 0.0232713520526886, + 0.004857649095356464, + 0.007556763011962175, + 0.005352864507585764, + 0.0018202008213847876, + 0.020398346707224846, + 0.010743532329797745, + 0.03166355565190315, + 0.0004288245690986514, + -0.0011406970443204045, + 0.029788540676236153, + -0.009858948178589344, + 0.002234140643849969, + 0.00331718847155571, + -0.013692144304513931, + -0.01696585863828659, + 0.026114117354154587, + 0.02225824072957039, + 0.0026235084515064955, + -0.012195156887173653, + 0.024571765214204788, + -2.780567047011573e-5, + 1.0026579730038065e-5, + -0.013238511979579926, + -0.007292144000530243, + 0.023528411984443665, + -0.0011671589454635978, + 0.022711873054504395, + -0.012784878723323345, + 0.009624571539461613, + -0.013057058677077293, + -0.0201866514980793, + -0.0052999407052993774, + 0.012679031118750572, + 0.027187714353203773, + -0.017086828127503395, + -0.005946367513388395, + 0.006086237262934446, + -0.03450632095336914, + -0.010690608061850071, + -0.002022445434704423, + 0.018326757475733757, + -0.012996573932468891, + 0.016164442524313927, + -0.019445717334747314, + -0.006449143402278423, + -0.005681748501956463, + -0.022575782611966133, + 0.013450207188725471, + 0.02148706465959549, + -0.0036441818810999393, + -0.00958676915615797, + -0.0004852923739235848, + 0.004967276938259602, + 0.0003262847021687776, + -0.019385233521461487, + -0.013178027234971523, + -0.004309509880840778, + 0.008619019761681557, + 0.009027289226651192, + -0.009926993399858475, + 0.006751565262675285, + 0.012164914049208164, + -0.007182516157627106, + -0.013934081420302391, + -0.02009592391550541, + 0.019400354474782944, + 0.009911872446537018, + -0.010554518550634384, + -0.0007267572218552232, + 0.013472888618707657, + 0.0175404604524374, + -0.0071333725936710835, + 0.013011694885790348, + -0.009722858667373657, + -0.0025611340533941984, + 0.02254554070532322, + 0.012149793095886707, + 0.015242055058479309, + -0.001825871178880334, + 0.003984406590461731, + -0.00934483204036951, + 0.011280330829322338, + -0.006169403437525034, + 0.015226934105157852, + 0.0033247489482164383, + -0.004846308380365372, + -0.022696752101182938, + -0.009314589202404022, + 0.015635203570127487, + 0.00020519788085948676, + -0.0016396928112953901, + -0.013419964350759983, + 0.019838865846395493, + -0.009881630539894104, + 0.01884087361395359, + -0.015423508360981941, + 0.012731955386698246, + -0.003984406590461731, + -0.0029051387682557106, + -0.012043945491313934, + -0.017858004197478294, + -0.016693679615855217, + -0.0009370348416268826, + 0.013140224851667881, + 0.008664382621645927, + -0.0014847017591819167, + 0.018190667033195496, + -0.028155462816357613, + -0.0063130538910627365, + -0.01418357901275158, + -0.011121558956801891, + -0.03314542397856712, + 0.012792439199984074, + 0.00438511511310935, + -0.011159362271428108, + 0.004963496699929237, + 0.019264264032244682, + 0.013298995792865753, + -0.0019638510420918465, + -0.0003440047148615122, + 0.009533844888210297, + 0.009359952993690968, + -0.019959835335612297, + 0.006365977693349123, + -0.004230123944580555, + 0.004335971549153328, + -0.007802480831742287, + 0.018583815544843674, + 0.014864028431475163, + 0.006623036228120327, + -0.02062516286969185, + -0.01672392152249813, + -0.0026216183323413134, + -0.03710714727640152, + 0.002874896628782153, + -0.0302270520478487, + -0.009405315853655338, + -0.01601323112845421, + -0.00982870627194643, + -0.024889308959245682, + -0.006430242210626602, + -0.01531010027974844, + -0.010494033806025982, + -0.024405434727668762, + 0.02355865389108658, + -0.014667454175651073, + -0.004604370798915625, + 0.0015584169887006283, + -0.004668635781854391, + 0.008180508390069008, + -0.015892261639237404, + 0.002423154190182686, + 0.004203662276268005, + -0.0002128765481757, + -0.0030752511229366064, + 0.040161605924367905, + -0.0023078559897840023, + 0.011847371235489845, + 0.046845126897096634, + 0.003908800892531872, + -0.012429533526301384, + 0.008157826028764248, + 0.00013715297973249108, + -0.0021812168415635824, + -0.005076904781162739, + -0.013102421537041664, + -0.011280330829322338, + 0.005935026798397303, + 0.005746013019233942, + 0.005488954484462738, + -0.006736444309353828, + 0.01725316047668457, + -0.029743177816271782, + 0.007360189221799374, + 0.020988067612051964, + 0.010826698504388332, + -0.0337502658367157, + 0.009102893993258476, + 0.010985469445586205, + 0.012232959270477295, + -0.02230360358953476, + 0.014954755082726479, + 0.009715298190712929, + 0.002254932187497616, + -0.0004923804081045091, + 0.010531837120652199, + -0.012384169735014439, + 0.012338806875050068, + 0.016285410150885582, + 0.023997165262699127, + -0.010418429039418697, + 0.01575617305934429, + 0.0037141169887036085, + 0.02566048502922058, + 0.0052999407052993774, + -0.014894270338118076, + 0.011129120364785194, + 0.012731955386698246, + -0.008172946982085705, + -0.00536042544990778, + 0.024571765214204788, + 0.01961204968392849, + -0.007250560913234949, + -0.0006662728847004473, + -0.013034377247095108, + 0.005058003589510918, + -0.0078327227383852, + 0.017192674800753593, + -0.006989722605794668, + 0.017903367057442665, + -0.02336207963526249, + -0.004532545804977417, + -0.010637684725224972, + 0.008921441622078419, + -0.028231069445610046, + 0.008709746412932873, + -0.008505611680448055, + 0.0020734791178256273, + 0.0019071471178904176, + 0.0154991140589118, + -0.015831777825951576, + 0.00043095098226331174, + 0.022666508331894875, + 0.008369521237909794, + -0.0125731835141778, + -0.004415357485413551, + -0.027550620958209038, + 0.004608151037245989, + 0.015264737419784069, + 0.013057058677077293, + -0.028896396979689598, + -0.011620555073022842, + -0.011575192213058472, + 0.007840283215045929, + 0.017026344314217567, + -0.010357944294810295, + 0.00506934430450201, + 0.020126165822148323, + 0.002935380907729268, + -0.007670171093195677, + -0.004468281287699938, + -0.01884087361395359, + -0.013306556269526482, + 0.012127111665904522, + -0.006853632628917694, + 0.029622208327054977, + 0.02144170179963112, + -0.016119077801704407, + 0.04158299043774605, + 0.006105138920247555, + 0.009594329632818699, + -0.019294505938887596, + -0.00581783801317215, + 0.006403780076652765, + -0.00795369129627943, + 0.0030676904134452343, + 0.038377318531274796, + 0.008354400284588337, + -0.000128056708490476, + -0.017555581405758858, + 0.00407513277605176, + 0.014954755082726479, + 0.013306556269526482, + -0.0022076787427067757, + 0.009934553876519203, + -0.019309628754854202, + -0.015317660756409168, + -0.004490962717682123, + -0.010267217643558979, + -0.0038861192297190428, + -0.018039457499980927, + -0.012248080223798752, + -0.007171175442636013, + 0.01749509759247303, + 0.0069216773845255375, + -0.0066646188497543335, + -0.009564087726175785, + -0.015877140685915947, + -0.007946130819618702, + 0.004343532025814056, + 0.0007754282560199499, + 0.004460720811039209, + 0.013374601490795612, + -0.009337271563708782, + 0.009042410179972649, + -0.005507855676114559, + 1.1813349374278914e-5, + 0.02600826881825924, + -0.015370585024356842, + 0.008445126935839653, + -0.008619019761681557, + -0.0008094506920315325, + -0.0024798582307994366, + -0.0010546958073973656, + 0.009579208679497242, + -0.004044890869408846, + 0.01300413440912962, + 0.0242693442851305, + 0.0005363260279409587, + 0.007129592355340719, + 0.010289900004863739, + -0.017464855685830116, + 0.0015981098404154181, + -0.022001180797815323, + 0.001895806286484003, + 0.003935263026505709, + 0.014939634129405022, + -0.014047489501535892, + 0.004937035031616688, + 0.03426438197493553, + 0.01531010027974844, + 0.012928529642522335, + 0.03139137476682663, + 0.0039163613691926, + -0.008467808365821838, + 0.006014412268996239, + -0.015846898779273033, + -0.0086038988083601, + 0.011408859863877296, + 0.01449356134980917, + -0.011212285608053207, + -0.004022208973765373, + 0.001918487949296832, + 0.026552628725767136, + 0.0003305374993942678, + 0.01793360896408558, + -0.005976609420031309, + 0.0032075606286525726, + 0.008309037424623966, + -0.008369521237909794, + 0.010312581434845924, + -0.013087300583720207, + -0.0013977554626762867, + -0.004929474089294672, + 0.008142705075442791, + 0.017706792801618576, + -1.4515652765112463e-5, + 0.03329663351178169, + 0.009609450586140156, + 0.00016952156147453934, + 0.017918488010764122, + -0.01817554607987404, + 0.015468872152268887, + -0.018039457499980927, + 0.017555581405758858, + -0.009533844888210297, + -0.023059656843543053, + 0.0025592439342290163, + -0.005005079787224531, + 0.01170372124761343, + -0.013026815839111805, + 0.008596337400376797, + 0.0026707618962973356, + -0.0154991140589118, + 0.0009724749252200127, + 0.00035699940053746104, + 0.0253731831908226, + 0.0073299468494951725, + 0.0015196691965684295, + 0.006282811518758535, + -0.010758653283119202, + 0.028714943677186966, + -0.0027766095008701086, + -0.016134198755025864, + -0.0028843472246080637, + -0.01639125868678093, + 0.017283402383327484, + -0.0023343178909271955, + 0.006037093698978424, + -0.00920874159783125, + -0.017888246104121208, + 0.004581689368933439, + 0.004657294601202011, + 0.012845363467931747, + 0.014977436512708664, + -0.020610041916370392, + 0.022575782611966133, + -0.008445126935839653, + 0.00031258122180588543, + -0.006891435477882624, + 0.0038350855465978384, + -0.002339988248422742, + -0.01562008261680603, + 0.0063470760360360146, + 0.014705256558954716, + -0.0026537508238106966, + -0.018054578453302383, + 0.021592911332845688, + -0.00990431196987629, + 0.03562527894973755, + -0.016602953895926476, + -0.018039457499980927, + -0.004029769450426102, + -0.013019255362451077, + -0.005103366915136576, + 0.008467808365821838, + -0.017555581405758858, + -0.004260366316884756, + -0.013790431432425976, + -0.0005675132852047682, + -0.018372120335698128, + -0.005704429931938648, + -0.0063584172166883945, + 0.0019506202079355717, + -0.010531837120652199, + -0.017222918570041656, + -0.0012503248872235417, + -0.0035402243956923485, + -0.005795156583189964, + 0.012512699700891972, + 0.002130183158442378, + 0.004180980380624533, + -0.00553809804841876, + -0.00489167170599103, + 0.009314589202404022, + -0.012490017339587212, + 0.0034192558377981186, + 0.012353927828371525, + 0.02027737721800804, + 0.00024311873130500317, + 0.014546485617756844, + 0.017389249056577682, + -0.021653397008776665, + -0.021562669426202774, + -0.001488481997512281, + 0.0012843472650274634, + -0.01817554607987404, + -0.005519196856766939, + 0.0013665682636201382, + 0.013729946687817574, + -0.02250017784535885, + -0.035836976021528244, + -0.015937626361846924, + 0.0052054342813789845, + 0.011234967969357967, + -0.001383579452522099, + -0.00884583592414856, + 0.004865209572017193, + -0.010728411376476288, + -0.00028399290749803185, + -0.008324158377945423, + -0.00963969249278307, + -0.0006572947604581714, + -0.01835699938237667, + 0.017464855685830116, + -0.016406379640102386, + -0.025176608934998512, + -0.0003425871254876256, + 0.0011010041926056147, + 0.020458830520510674, + -0.03483898565173149, + -0.007144713308662176, + 0.01648198440670967, + 0.005704429931938648, + -0.013079740107059479, + -1.4382752851815894e-5, + 0.0059047844260931015, + 0.0063584172166883945, + -0.0015848788898438215, + 0.021502185612916946, + -0.02080661617219448, + 0.013276314362883568, + -0.01523449458181858, + -0.018432604148983955, + -0.02085197903215885, + 0.0035874778404831886, + -0.00451742485165596, + -0.0001151210890384391, + -0.006120259873569012, + -0.02609899640083313, + 0.001171884243376553, + -0.03248009458184242, + 0.009072652086615562, + -0.005727111827582121, + -0.009065091609954834, + 0.004910572897642851, + 0.0009053750545717776, + 0.010864500887691975, + 0.0086038988083601, + -0.006592793855816126, + -0.011068635620176792, + -0.02023201435804367, + -0.0017634967807680368, + 0.0021585351787507534, + -0.02408789098262787, + -0.005065564066171646, + -0.01001772005110979, + 0.018054578453302383, + -0.01350313052535057, + -0.01908281072974205, + 0.0011123449075967073, + 0.019188659265637398, + 0.005220555234700441, + 0.005821618251502514, + -0.01601323112845421, + -0.014554046094417572, + 0.005534317810088396, + 0.004721559584140778, + 0.0262502059340477, + -0.012195156887173653, + -0.013155345804989338, + 0.012890726327896118, + 0.027626225724816322, + -0.010184052400290966, + 0.007503839209675789, + 0.0018126402283087373, + -0.011832250282168388, + 0.012905847281217575, + -0.006830951198935509, + 0.0017058475641533732, + -0.007870526053011417, + -0.00395416421815753, + -0.021638276055455208, + -0.028473006561398506, + 0.007348848041146994, + -0.006615475285798311, + -0.028972001746296883, + 0.018916480243206024, + 0.005583461374044418, + -0.017434613779187202, + 0.020988067612051964, + -0.021230006590485573, + -0.009866509586572647, + 0.019687654450535774, + -0.021169520914554596, + 0.004260366316884756, + 0.002298405161127448, + 0.006282811518758535, + -0.007254341617226601, + 0.0005783815868198872, + -0.008369521237909794, + 0.024586888030171394, + 0.009798464365303516, + -0.013987005688250065, + 0.01639125868678093, + 0.01782776229083538, + 0.017389249056577682, + 0.012217838317155838, + 0.010516716167330742, + -0.01103083323687315, + 0.014168458059430122, + 0.019007205963134766, + 1.854695801739581e-5, + -0.0040259892120957375, + -0.018719905987381935, + -0.0005670407554134727, + -0.01840236224234104, + -0.014153337106108665, + 0.008256113156676292, + 0.0016718251863494515, + 0.0045854696072638035, + -0.0011633785907179117, + 0.01764630898833275, + -0.007825162261724472, + 0.01999007724225521, + -0.026839928701519966, + 0.004158298950642347, + -0.0057535734958946705, + 0.025887301191687584, + 0.03232888504862785, + 0.028669580817222595, + -0.0025857058353722095, + 0.005768694449216127, + -0.0070275249890983105, + -0.010365504771471024, + 0.019884228706359863, + 0.01763118803501129, + 0.011250088922679424, + -0.021759243682026863, + -0.02153242751955986, + -0.015075723640620708, + 0.0023248670622706413, + -0.007488718256354332, + 0.016648316755890846, + -0.015695687383413315, + -0.004596810322254896, + 0.030726049095392227, + 0.005046662874519825, + 0.018130183219909668, + 0.012724394910037518, + 0.0184174831956625, + 0.0018863555742427707, + -0.00370088592171669, + -0.01735900714993477, + 0.005428470205515623, + 0.006014412268996239, + 0.0005698759341612458, + -0.0010726520558819175, + -0.02643165923655033, + 0.024450797587633133, + -0.0011170703219249845, + 0.016844891011714935, + 0.0016510336427018046, + 0.004309509880840778, + -0.007239220198243856, + -0.012875605374574661, + 0.02042858861386776, + 0.0009644418023526669, + 0.015476432628929615, + 0.018084820359945297, + -0.022197755053639412, + -0.016905374825000763, + 0.01494719460606575, + -0.0006955700227990746, + 0.004366213921457529, + 0.010675487108528614, + -0.0077495570294559, + 0.0055569992400705814, + -0.0068876552395522594, + 0.0024099231231957674, + 0.0022190194576978683, + -0.019007205963134766, + -0.015922503545880318, + -0.0019922032952308655, + 0.007171175442636013, + 0.006093798205256462, + 0.014312108978629112, + -0.01480354368686676, + 0.0012862375006079674, + -0.02758086286485195, + -0.021562669426202774, + 0.007855404168367386, + 0.00037495570722967386, + 0.02879054844379425, + 0.016164442524313927, + -0.028896396979689598, + 0.0012919078581035137, + -0.013465328142046928, + 0.01932474970817566, + 0.008051978424191475, + -0.005783815868198872, + -0.017283402383327484, + 0.01614932157099247, + 0.0016066154930740595, + 0.013858475722372532, + 0.00715983472764492, + -0.026219964027404785, + -0.005617483984678984, + -0.013729946687817574, + 0.0034551683347672224, + 0.0009611340938135982, + -0.01326875388622284, + -0.0018060248112305999, + 0.006581453140825033, + 0.01893160119652748, + -0.002317306585609913, + -0.005935026798397303, + 0.009027289226651192, + 0.0031584170646965504, + 0.022227996960282326, + 0.021638276055455208, + 0.015249616466462612, + 0.009579208679497242, + -0.011408859863877296, + 0.0022870644461363554, + -0.019067689776420593, + -0.010494033806025982, + 0.004566568415611982, + 0.007450915407389402, + -0.0006634377059526742, + 0.007246780674904585, + -0.0016396928112953901, + -0.00761724729090929, + 0.027792558073997498, + -0.01400968711823225, + -0.01213467214256525, + 0.002740697003901005, + 0.009049970656633377, + 0.0020886000711470842, + 0.003991967067122459, + -0.008868517354130745, + 0.017147311940789223, + -0.0007395156426355243, + -0.00939775537699461, + -0.015226934105157852, + -0.0134577676653862, + -0.01177932694554329, + -0.03623012453317642, + 0.00021984642080496997, + 0.0013712935615330935, + 0.012421973049640656, + 0.0010102776577696204, + 0.007537861820310354, + -0.005870761815458536, + -0.012527820654213428, + 0.0022908446844667196, + 0.008240992203354836, + -0.005341523792594671, + -0.009390194900333881, + 0.008430005982518196, + -0.033961959183216095, + -0.011333254165947437, + 0.004097814671695232, + 0.018477968871593475, + 0.022606024518609047, + -0.013079740107059479, + -0.022122150287032127, + -0.006653278134763241, + 0.003334199544042349, + -0.030196810141205788, + -0.02839740179479122, + 0.006210986524820328, + -0.007386650890111923, + -0.003320968709886074, + -0.009889191016554832, + 0.011643236503005028, + -0.011832250282168388, + -0.0020564678125083447, + -0.024586888030171394, + -0.009238984435796738, + 0.00626013008877635, + 0.013374601490795612, + 0.01912817545235157, + -0.02470785565674305, + 0.00920874159783125, + -0.0017918488010764122, + 0.03762126341462135, + -0.005413349252194166, + -0.008853396400809288, + -0.034203898161649704, + -0.004369994159787893, + -0.02706674486398697, + 0.008377081714570522, + 0.014697696082293987, + 0.005681748501956463, + -0.004381334874778986, + -0.016466863453388214, + -0.0040259892120957375, + -0.008301476947963238, + -0.017525339499115944, + -0.0018825753359124064, + 0.00475936196744442, + -0.03263130411505699, + -0.004683756735175848, + -0.0298943892121315, + 0.01758582331240177, + -0.006725103594362736, + -0.011907855980098248, + -0.012656349688768387, + 0.0004654459480661899, + 0.0009483756730332971, + 0.01088718231767416, + 0.014788422733545303, + 0.007999055087566376, + 0.020201772451400757, + 0.004872770048677921, + 0.01233124639838934, + -0.012293444015085697, + -0.01531010027974844, + -0.005394447594881058, + 0.02157779037952423, + -0.00829391647130251, + -0.01557471975684166, + 0.010562079027295113, + -0.012550502084195614, + 0.0028654460329562426, + 0.01357873622328043, + 0.011802008375525475, + -0.008331718854606152, + 0.022530419752001762, + -0.002570584649220109, + -0.013132664375007153, + -0.007817601785063744, + -0.016073714941740036, + 0.0013448316603899002, + -0.0136240990832448, + -0.015937626361846924, + -0.001848552841693163, + 0.013109982013702393, + 0.005855640862137079, + -0.007292144000530243, + 0.009594329632818699, + 0.03235912695527077, + -0.004804725293070078, + 0.006645717658102512, + 0.0034324866719543934, + -0.03148210421204567, + 0.01264122873544693, + 0.003120614215731621, + -0.02508588321506977, + 0.01376775000244379, + 0.008762669749557972, + 0.00426414655521512, + -0.01338972244411707, + 0.0002660366299096495, + -0.01980862393975258, + 0.0012937979772686958, + 0.026068754494190216, + 0.017616067081689835, + -0.002071588998660445, + -0.009768222458660603, + 0.02700626105070114, + 0.012679031118750572, + -0.006112699396908283, + -0.0012720613740384579, + -0.00939775537699461, + -0.009798464365303516, + 0.00023177791445050389, + 0.0033039574045687914, + -0.02307477779686451, + -0.028291553258895874, + -0.017147311940789223, + 0.0011605434119701385, + -0.004502303432673216, + -0.02076125144958496, + -0.002237920882180333, + 0.012353927828371525, + -0.03480874001979828, + 0.01264122873544693, + -0.0134577676653862, + 0.01590738259255886, + -0.0021831069607287645, + 0.013079740107059479, + -0.007023744750767946, + 0.015226934105157852, + 0.016602953895926476, + -0.0022095688618719578, + -0.005409569013863802, + -0.01194565836340189, + 0.009390194900333881, + 0.018009213730692863, + -0.050837092101573944, + -0.01394164189696312, + -0.005519196856766939, + -0.003995747305452824, + -0.009730419144034386, + 0.004483402241021395, + -0.019959835335612297, + -0.002402362646535039, + -0.0003832250367850065, + -0.0030582398176193237, + 0.0012153573334217072, + -0.008157826028764248, + -0.0004222090938128531, + -0.0250405203551054, + -0.012512699700891972, + -0.004472061526030302, + 0.0007026580278761685, + 0.00463839340955019, + -0.0032642646692693233, + -0.002704784506931901, + 0.01151470746845007, + 0.021275369450449944, + -0.010388186201453209, + 0.03311517834663391, + 0.0038388660177588463, + -0.020005198195576668, + -0.012505139224231243, + 0.023634258657693863, + 0.0038558770902454853, + 0.019536444917321205, + 0.03459704667329788, + -0.003273715265095234, + -0.019551565870642662, + -0.0015168340178206563, + 0.015589840710163116, + -0.0004772593092638999, + 0.0030752511229366064, + 0.003128174925222993, + -0.003976845648139715, + -0.012648789212107658, + -0.016209805384278297, + -0.021638276055455208, + 0.007999055087566376, + 0.03656278923153877, + 0.0010811577085405588, + -0.015332781709730625, + -0.004097814671695232, + 0.012973892502486706, + 0.016844891011714935, + -0.0023286473006010056, + -0.02351328916847706, + 0.005851860623806715, + 0.01288316585123539, + 0.013677023351192474, + -0.0050277612172067165, + 0.011061075143516064, + 0.00838464219123125, + 0.01084181945770979, + -0.011295451782643795, + -0.0022284702863544226, + 0.0009734199848026037, + 0.01711707003414631, + -0.012928529642522335, + 0.020579800009727478, + 0.0028881276957690716, + -0.01276219729334116, + 0.02197093889117241, + 0.014138216152787209, + 0.013608978129923344, + 0.020897341892123222, + 0.005651506129652262, + -0.0017984642181545496, + 0.013041937723755836, + 0.012263201177120209, + -0.04306485503911972, + 0.027036502957344055, + 0.010040401481091976, + -0.022999173030257225, + 0.010040401481091976, + 0.012610986828804016, + 0.012618547305464745, + 0.005526757333427668, + 0.004952155984938145, + 0.0013212049379944801, + 0.005148730240762234, + 0.010221854783594608, + 0.01225564070045948, + -0.0035647961776703596, + 0.004608151037245989, + -0.007779799401760101, + 0.010047961957752705, + 0.032752275466918945, + 0.023467926308512688, + -5.3780273447046056e-5, + 0.02466249279677868, + -0.02033786103129387, + 0.005946367513388395, + 0.006819610018283129, + -0.008240992203354836, + -0.01639125868678093, + -0.00946580059826374, + 0.008067099377512932, + -0.006063555832952261, + -0.0012276432244107127, + 0.002493089297786355, + -0.004404016770422459, + 0.005156290717422962, + 0.017464855685830116, + -0.03114943951368332, + 0.019929591566324234, + 0.015967868268489838, + 0.020080802962183952, + 0.013926520943641663, + -0.00650206720456481, + -0.01793360896408558, + 0.0020696986466646194, + -0.032752275466918945, + 0.005545658525079489, + -0.004846308380365372, + -0.013178027234971523, + -0.006721322890371084, + -0.011877614073455334, + -0.010758653283119202, + -0.01956668682396412, + 0.010108446702361107, + -0.012172474525868893, + 0.013495570048689842, + 0.01595274731516838, + 0.01921890117228031, + 0.0013363260077312589, + 0.005307501647621393, + -0.0014572947984561324, + -0.016693679615855217, + -0.006759125739336014, + 0.018493089824914932, + 0.012989013455808163, + -0.007583225145936012, + -0.011386178433895111, + -0.005095806438475847, + -0.0023456586059182882, + -0.007171175442636013, + -0.015181571245193481, + -0.0011529828188940883, + 0.0039012404158711433, + 0.005995511077344418, + -0.0024307146668434143, + -0.0008694624993950129, + -0.015801535919308662, + -0.011348376050591469, + -0.01021429430693388, + 0.030892379581928253, + 0.004362433683127165, + -0.0024344949051737785, + 0.020005198195576668, + 0.00908777303993702, + -0.006668399088084698, + -0.010705729015171528, + -0.027989132329821587, + -0.004150738473981619, + 0.009359952993690968, + 0.0024326047860085964, + -0.007670171093195677, + 0.011590313166379929, + -0.01601323112845421, + 0.012180035002529621, + 0.01468257512897253, + 0.0076777320355176926, + -0.0004066154651809484, + 0.014848907478153706, + -0.008513172157108784, + 0.00021346722496673465, + 0.0223943293094635, + 0.0006473715184256434, + -0.020262256264686584, + -0.011469344608485699, + -0.011726402677595615, + 0.016209805384278297, + -0.00833927933126688, + -0.019430596381425858, + 0.009450679644942284, + 0.004188540857285261, + 0.007235439959913492, + -0.001193620846606791, + -0.007450915407389402, + -0.012444654479622841, + 0.011741523630917072, + 0.006626816466450691, + 0.013367041014134884, + -0.00647560553625226, + 0.01601323112845421, + -0.006785587873309851, + -0.017389249056577682, + 0.01221027784049511, + -0.009102893993258476, + -0.0017219138098880649, + 0.0006539869937114418, + 0.0031603071838617325, + -0.008309037424623966, + -0.014546485617756844, + -0.003640401642769575, + 0.016980979591608047, + -0.002829533303156495, + 0.0027180153410881758, + 0.008671943098306656, + 0.010804016143083572, + -0.003984406590461731, + -0.013896279036998749, + -0.000808978162240237, + 0.02508588321506977, + 0.0023267571814358234, + -0.02186509221792221, + 0.012474896386265755, + 0.013956762850284576, + -0.006951919756829739, + 0.022530419752001762, + -0.01221027784049511, + -0.01778239756822586, + -0.00815026555210352, + -0.010796455666422844, + 0.0029864145908504725, + -0.01388871856033802, + -0.00920118112117052, + 0.004112935625016689, + -0.00030785586568526924, + 0.001084937946870923, + -0.00014246898354031146, + -0.0021566450595855713, + 0.005337743554264307, + -0.005042882636189461, + -0.0012815120862796903, + 0.0032245717011392117, + 0.02460200898349285, + 0.0006001181318424642, + -0.0283520370721817, + -0.006611695047467947, + 0.002891907934099436, + 0.051018547266721725, + 0.012119551189243793, + 0.020156409591436386, + -0.01989934965968132, + -9.769640018930659e-5, + -0.01225564070045948, + -0.0045854696072638035, + -0.005292380228638649, + -0.009768222458660603, + -0.005367985926568508, + -0.005787596106529236, + -0.010932546108961105, + 0.002634849399328232, + 0.015105965547263622, + -0.017948729917407036, + 0.017147311940789223, + -0.006623036228120327, + -0.011355936527252197, + -0.026522386819124222, + 0.003829415189102292, + -0.012936090119183064, + 0.01025965716689825, + -0.004305729642510414, + -0.0015933845425024629, + 0.006505847442895174, + -0.0018854105146601796, + 0.018190667033195496, + -0.017374128103256226, + 0.018946722149848938, + -0.0309982281178236, + 0.019581807777285576, + -0.0037141169887036085, + -0.04887135326862335, + -0.017041465267539024, + 0.00920874159783125, + 0.014569167047739029, + -0.007265682332217693, + 0.008929002098739147, + 0.0030903720762580633, + -0.011915416456758976, + -0.020443709567189217, + 0.018583815544843674, + 0.020322740077972412, + -0.015635203570127487, + -0.01614932157099247, + 0.008445126935839653, + 0.0009847608162090182, + 0.01672392152249813, + -0.0003681039670482278, + -0.0007825162610970438, + 0.008475368842482567, + -0.010433549992740154, + -0.01432722993195057, + 0.006796928588300943, + -0.03296396881341934, + -0.004150738473981619, + 0.01480354368686676, + -0.0007985823904164135, + -0.006241228431463242, + 0.026265328750014305, + -0.016512226313352585, + 0.006396219599992037, + -0.007670171093195677, + 0.033478084951639175, + -0.00966237485408783, + 0.025010278448462486, + 0.01912817545235157, + 0.009995038621127605, + -0.0018976964056491852, + 0.01927938498556614, + 0.01595274731516838, + -0.004937035031616688, + -0.024148374795913696, + -0.01374506764113903, + 0.002149084350094199, + -0.02259090356528759, + -0.0038388660177588463, + -0.017026344314217567, + -0.01213467214256525, + -0.00908777303993702, + -0.00982870627194643, + 0.014077731408178806, + 0.019914470613002777, + 0.006796928588300943, + 0.008876077830791473, + -0.0012257531052455306, + 0.010864500887691975, + -0.004335971549153328, + 0.004687536973506212, + 0.0005618428695015609, + -0.013140224851667881, + -0.0029467218555510044, + -0.018160425126552582, + 0.02417861856520176, + -0.0027955109253525734, + -0.018372120335698128, + -0.01413065567612648, + 0.003950383979827166, + 0.006834731437265873, + 0.005946367513388395, + -0.00035558181116357446, + 0.009193620644509792, + 0.00802929699420929, + -0.02292356826364994, + -0.009004606865346432, + -0.007295924238860607, + 0.002808741992339492, + -0.0038861192297190428, + -0.0004803307820111513, + 0.0014194920659065247, + 0.018855994567275047, + 0.007367749698460102, + -0.002377790864557028, + 0.007915888912975788, + 0.027338925749063492, + 0.010055522434413433, + 0.011522267945110798, + 0.02168363891541958, + 0.024617129936814308, + -0.004914353135973215, + -0.004710218403488398, + 0.013646780513226986, + 0.013155345804989338, + -0.020216893404722214, + 0.0012663910165429115, + 0.0026253988035023212, + -0.007386650890111923, + 0.0366232730448246, + 0.01657271198928356, + 0.008006615564227104, + 0.016905374825000763, + -0.005367985926568508, + 0.008127584122121334, + 0.014773301780223846, + 0.013843354769051075, + 0.004339751787483692, + 0.0007820437313057482, + 0.00012144122592872009, + 0.00042173656402155757, + -2.1485528122866526e-5, + -0.006263910327106714, + 0.0073299468494951725, + -0.006021972745656967, + 0.011681039817631245, + 0.0030695805326104164, + -0.00675534550100565, + -0.022893326357007027, + 0.009246544912457466, + 0.012270761653780937, + 0.0027709391433745623, + -0.0024439457338303328, + -0.0126865915954113, + -0.00616562319919467, + -0.003018546849489212, + 0.0010093325981870294, + 0.004041110631078482, + -0.0020810395944863558, + 0.016754163429141045, + 0.0008137034601531923, + 0.010176490992307663, + 0.013646780513226986, + -0.008951683528721333, + -0.018523331731557846, + 0.014894270338118076, + 0.009140697307884693, + 0.020247135311365128, + -0.0007158889784477651, + -0.003615829860791564, + 0.007923449389636517, + 0.006679740268737078, + -0.013661902397871017, + -0.006528529338538647, + -0.016028352081775665, + -0.002128293039277196, + 0.0041772001422941685, + 0.0026253988035023212, + -0.0039201416075229645, + -0.012626107782125473, + -0.0004748966312035918, + 0.010894742794334888, + 0.016209805384278297, + 0.02355865389108658, + 0.021139279007911682, + 0.00718629639595747, + 0.012580743990838528, + 0.02091246284544468, + -0.011597873643040657, + 0.0031981097999960184, + 0.010826698504388332, + 0.02110903710126877, + 0.011832250282168388, + 0.009942114353179932, + -0.0069821616634726524, + 0.00015522740432061255, + -0.02230360358953476, + 0.0175404604524374, + -0.013374601490795612, + -0.012633668258786201, + -0.0212904904037714, + 0.013230950571596622, + 0.019203780218958855, + -0.0015981098404154181, + 0.003300177166238427, + 0.02168363891541958 + ], + "9da0aea8-af9c-49a1-97e3-517097b0d6c1": [ + -0.02289310097694397, + -0.028200598433613777, + -0.00873495452105999, + 0.0025489002000540495, + -0.009617127478122711, + -0.01414368487894535, + -0.001990311546251178, + 0.008272175677120686, + -0.020261045545339584, + 0.06640879064798355, + -0.014498000033199787, + 0.015315094031393528, + 0.03369610011577606, + -0.0061065140180289745, + 0.014259379357099533, + 0.03308870270848274, + -0.024353748187422752, + 0.0194222591817379, + -0.014317226596176624, + -0.0034401114098727703, + 0.04743485152721405, + -0.0035106129944324493, + -0.03985684737563133, + 0.020116426050662994, + 0.02412235736846924, + -0.024295900017023087, + -0.012849349528551102, + -0.015459712594747543, + -0.04219966381788254, + -0.000305958412354812, + -0.016920359805226326, + 0.02231462672352791, + -0.010918693616986275, + 0.00753462128341198, + 0.021953081712126732, + -0.024874374270439148, + -0.010991002433001995, + 0.0349108949303627, + -0.03708017244935036, + -0.004609713330864906, + -0.0010819267481565475, + 0.011294701136648655, + 0.015517559833824635, + -0.020853981375694275, + -0.02079613320529461, + 0.019682571291923523, + -0.04653821885585785, + 0.002623017178848386, + 0.02588670328259468, + -0.031989600509405136, + 0.033985335379838943, + 0.028417525812983513, + -0.009515894576907158, + 0.03569183498620987, + 0.012249182909727097, + 0.004736254457384348, + 0.008178173564374447, + 0.07040026038885117, + 0.020073041319847107, + -0.05854155123233795, + 0.009580972604453564, + -0.059235718101263046, + -0.022762944921851158, + 0.019870575517416, + -0.0064210593700408936, + 0.005517194047570229, + -0.017571141943335533, + 0.00947973970323801, + -0.010557146742939949, + 0.024599598720669746, + -0.005705197807401419, + 0.009233888238668442, + -0.03924944996833801, + 0.011750249192118645, + 0.032886236906051636, + -0.026262711733579636, + 0.04697207361459732, + 0.01670343056321144, + -0.009566511027514935, + -0.029415393248200417, + 0.015315094031393528, + -0.012907196767628193, + -0.04231536015868187, + -0.006298133637756109, + 0.051860176026821136, + 0.015734488144516945, + -0.040117159485816956, + -0.04393508657813072, + -0.01943672075867653, + -0.018916092813014984, + -0.01624065265059471, + 0.01974041946232319, + 0.014353381469845772, + 0.022806329652667046, + 0.009371276013553143, + -0.01098377164453268, + 0.015184937976300716, + 0.0065729087218642235, + -0.030630188062787056, + -0.03332009166479111, + -0.010824691504240036, + -0.0013286820612847805, + -0.01316750980913639, + -0.013210895471274853, + -0.016298498958349228, + 0.007874474860727787, + 0.010079906322062016, + 0.0025073224678635597, + -0.008156481198966503, + 0.03265484794974327, + -0.02467190846800804, + -0.022401398047804832, + 0.05145524442195892, + -0.0013467593817040324, + -0.06901192665100098, + -0.04121625795960426, + -0.013557979837059975, + -0.0058425855822861195, + -0.012726424261927605, + -0.014664310961961746, + 0.0424310527741909, + -0.01227810699492693, + 0.03439026698470116, + 0.023702964186668396, + 0.0032394533045589924, + 0.019075173884630203, + -0.0022542402148246765, + 0.025091301649808884, + 0.046017590910196304, + 0.02167830616235733, + 0.004859180189669132, + 0.008113095536828041, + 0.02682672254741192, + -0.005072492174804211, + -0.02633501961827278, + 0.006822375580668449, + 0.021909695118665695, + 0.07884597778320312, + -0.01881485991179943, + 0.0030532570090144873, + -0.03439026698470116, + 0.015691101551055908, + -0.022806329652667046, + 0.019335487857460976, + 0.01671789400279522, + 0.020723825320601463, + -0.032278839498758316, + 0.0801764726638794, + -0.06368996948003769, + 0.002568785334005952, + -0.01804838329553604, + 0.02767997235059738, + -0.029617859050631523, + 0.0009219426428899169, + 0.05671935901045799, + -0.0004781447642017156, + -0.01639973185956478, + 0.03751402720808983, + -0.005170109681785107, + 0.05139739811420441, + 0.009472508914768696, + -0.06640879064798355, + 0.010911461897194386, + 0.0029050232842564583, + 0.02905384823679924, + 0.006641602609306574, + 0.019234254956245422, + 0.03433242067694664, + -0.015112628228962421, + 0.0161104965955019, + 0.01868470385670662, + -0.027332887053489685, + 0.013818292878568172, + 0.01135977916419506, + 0.01512708980590105, + -0.01593695394694805, + 0.033985335379838943, + -0.0023265492636710405, + 0.019075173884630203, + -0.016934821382164955, + -0.03898913413286209, + 0.0058859712444245815, + 0.04289383441209793, + 0.0047000995837152, + -0.005969126708805561, + 0.0302541796118021, + 0.003872159169986844, + -0.02591562643647194, + -0.0035377289168536663, + 0.0039155445992946625, + 0.007968476973474026, + -0.010181139223277569, + 0.008221559226512909, + -0.0015474174870178103, + -0.056979671120643616, + -0.02004411816596985, + 0.016949282959103584, + -0.027896899729967117, + 0.011432088911533356, + 0.0043747080489993095, + -0.03930729627609253, + -0.01854008622467518, + -0.03826604411005974, + 0.017715761438012123, + -0.029560012742877007, + 0.01926317811012268, + 0.00858310516923666, + -0.004678406752645969, + 0.05883078649640083, + -0.012661345303058624, + 0.05139739811420441, + -0.05194694921374321, + 0.018713627010583878, + -0.024194667115807533, + -0.02527930587530136, + 0.005166494287550449, + 0.017730223014950752, + 0.0293575469404459, + 0.004248166922479868, + -0.008554181084036827, + 0.022329090163111687, + -0.03572075814008713, + -0.038323890417814255, + -0.00753462128341198, + -0.03797680512070656, + 0.03389856591820717, + -0.018901631236076355, + 0.01182255893945694, + -0.002505514770746231, + -0.017643451690673828, + 0.008915727958083153, + 0.01008713711053133, + 0.029878173023462296, + -0.0009043172467499971, + 0.028070442378520966, + 0.04468710348010063, + -0.0031436437275260687, + 0.012762578204274178, + -0.013753214851021767, + 0.013232588768005371, + -0.016631122678518295, + 0.024165743961930275, + -0.03172928839921951, + -0.010810228995978832, + -0.019364411011338234, + 0.03013848513364792, + -0.003056872636079788, + 0.04783978313207626, + 0.015850182622671127, + -0.015546483919024467, + -0.024657446891069412, + -0.006511446088552475, + -0.010492068715393543, + 0.013926757499575615, + -0.024729754775762558, + 0.05674828216433525, + 0.04714561626315117, + -0.04381939023733139, + -0.015170475468039513, + 0.014780006371438503, + 0.02001519314944744, + 0.02225678041577339, + 0.003080373164266348, + -0.013637520372867584, + 0.013377207331359386, + -0.01702159270644188, + 0.01686251163482666, + 0.005321959033608437, + 0.00799016933888197, + 0.013695367611944675, + 0.015763411298394203, + -0.027520891278982162, + -0.027506429702043533, + 0.002015619771555066, + -0.016804663464426994, + -0.015430789440870285, + 0.022343551740050316, + -0.014563078060746193, + 0.004081855993717909, + -0.0046241749078035355, + -0.03838173672556877, + -0.04127410799264908, + 0.03988577052950859, + 0.03412995487451553, + -0.004609713330864906, + 0.02514914982020855, + 0.0007687374600209296, + -0.024310361593961716, + -0.022806329652667046, + 0.0015447058249264956, + 0.008156481198966503, + -0.03754295036196709, + 0.0016179189551621675, + 0.05365344509482384, + 0.014577540569007397, + 0.01371705997735262, + -0.033667176961898804, + 0.002380781341344118, + 0.004353015683591366, + 0.012039486318826675, + -0.032741617411375046, + 0.03297300636768341, + 0.01881485991179943, + -0.02830183133482933, + -0.018482238054275513, + -0.02484545111656189, + 0.009602664969861507, + 0.03586537763476372, + -0.03158466890454292, + 0.029169542714953423, + 0.0388445183634758, + 0.015430789440870285, + -0.04717453941702843, + -0.0063017490319907665, + 0.004313245415687561, + 0.009465278126299381, + -0.01823638752102852, + -0.009718360379338264, + -0.019798265770077705, + -0.011533321812748909, + -0.039046984165906906, + -0.003015294671058655, + -0.04714561626315117, + 0.01196717657148838, + 0.02289310097694397, + -0.04003038629889488, + 0.027795666828751564, + -0.023862045258283615, + -0.001945118186995387, + -0.008149249479174614, + -0.03329116851091385, + -0.011851482093334198, + -0.009761746041476727, + -0.03224991634488106, + -0.013832755386829376, + -0.023876506835222244, + -0.06426844000816345, + -0.04370369762182236, + -0.015850182622671127, + 0.0024060895666480064, + -0.0427781380712986, + -0.01151886023581028, + -0.003306339494884014, + 0.015228322707116604, + -0.03404318541288376, + -0.039220523089170456, + 0.012567343190312386, + 0.03898913413286209, + 0.02214108593761921, + -0.005900432821363211, + 0.0009544817730784416, + -0.003402149071916938, + 0.06635094434022903, + -0.0029773323331028223, + 0.03262592479586601, + -0.011547783389687538, + -0.020116426050662994, + 0.015777872875332832, + 0.03433242067694664, + -0.001966811018064618, + 0.0006557542947120965, + -0.08150696009397507, + 0.0053978837095201015, + -0.03496874123811722, + -0.00250189914368093, + 0.025264844298362732, + -0.009776207618415356, + -0.03583645448088646, + -0.009935287758708, + -0.003649808233603835, + -0.015228322707116604, + -0.0121262576431036, + -0.01593695394694805, + -0.028880305588245392, + 0.00919050257652998, + -0.05992988869547844, + 0.008228790014982224, + -0.005401499103754759, + -0.022820791229605675, + 0.026580872014164925, + -0.011258546262979507, + 0.020275507122278214, + 0.024035587906837463, + -0.012147950008511543, + 0.014924624003469944, + 0.02201092801988125, + 0.015994800254702568, + -0.045699432492256165, + -0.02516361139714718, + -0.015835721045732498, + -0.0370512492954731, + -0.0019035403383895755, + -0.03086157888174057, + 0.012119026854634285, + -0.012820426374673843, + 0.001269026892259717, + 0.023240186274051666, + 0.014837853610515594, + 0.012140719220042229, + -0.011222392320632935, + 0.010289602912962437, + -0.004125241190195084, + -0.02422359026968479, + -0.0176289901137352, + -0.0007059188210405409, + -0.03910483047366142, + -0.0053074974566698074, + 0.016472041606903076, + 0.011106696911156178, + -0.007549083326011896, + 0.040261778980493546, + 0.003734771627932787, + -0.02485991269350052, + 0.01429553423076868, + 0.019480105489492416, + 0.04248890280723572, + 0.015011395327746868, + 0.06617740541696548, + -0.02319679968059063, + 0.009053114801645279, + 0.009689436294138432, + 0.02198200486600399, + -0.010434221476316452, + 0.024136820808053017, + -0.02740519680082798, + 0.017224058508872986, + 0.014454614371061325, + 0.007447850424796343, + 0.009523125365376472, + -0.02076721005141735, + 0.036646317690610886, + 0.014093068428337574, + -0.03239453211426735, + -0.002042735693976283, + -0.01913302205502987, + -0.02545284852385521, + 0.013080739416182041, + 0.005611196160316467, + -0.017426524311304092, + -0.017108362168073654, + -0.01715174876153469, + 0.013290436007082462, + -0.01083192229270935, + -0.03117973916232586, + -0.03658846765756607, + -0.025178072974085808, + 0.007292385678738356, + 0.026407329365611076, + -0.009530356153845787, + -0.015835721045732498, + 0.005712429061532021, + 0.03158466890454292, + -0.047521624714136124, + 0.007064611651003361, + -0.0024332054890692234, + -0.02893815189599991, + 0.031700365245342255, + -0.003387687262147665, + 0.01823638752102852, + -0.0569218248128891, + 0.02484545111656189, + 0.01347120851278305, + 0.04543911665678024, + -0.011258546262979507, + 0.030543416738510132, + -0.01166347786784172, + 0.023124489933252335, + 0.01687697321176529, + 0.004855564795434475, + 0.00670668063685298, + -0.018438853323459625, + -0.02137460745871067, + -0.04379046708345413, + 0.005954664666205645, + 0.011656247079372406, + -0.0013874332653358579, + -0.005535271484404802, + -0.016023725271224976, + 0.03175821155309677, + -0.00010942419612547383, + -0.02948770299553871, + 0.011381472460925579, + 0.027925822883844376, + 0.021880771964788437, + 0.0006679564830847085, + 0.015025856904685497, + -0.014020758680999279, + -0.04792655631899834, + -0.044918492436409, + 0.027925822883844376, + 0.0005396076012402773, + 0.02527930587530136, + -0.010882538743317127, + 0.04682745411992073, + 0.024194667115807533, + 0.009899132885038853, + 0.019624724984169006, + -0.003546767635270953, + 0.02183738723397255, + 0.00851079635322094, + 0.01506924256682396, + -0.016515428200364113, + 0.012632422149181366, + -0.03444811701774597, + -0.025554081425070763, + 0.04572835564613342, + 0.0009373083594255149, + 0.004757947288453579, + -0.0010882539208978415, + -0.020217658951878548, + -0.011620093137025833, + 0.01062222570180893, + -0.03496874123811722, + 0.017585603520274162, + 0.005567810498178005, + 0.0033894949592649937, + -0.0042083971202373505, + -0.013391668908298016, + 0.054116226732730865, + 0.008763878606259823, + -0.00812755711376667, + 0.011012694798409939, + -0.010369143448770046, + 0.01461369451135397, + 0.002623017178848386, + 0.02018873579800129, + -0.02740519680082798, + -0.0015926107298582792, + -0.0007438811589963734, + 0.004906181246042252, + -0.018901631236076355, + -0.018771475180983543, + -0.004964028485119343, + 0.00707907322794199, + 0.03389856591820717, + 0.002449474995955825, + -0.02286417782306671, + 0.01454138569533825, + 0.012263644486665726, + 0.003664270043373108, + -0.0001386303483741358, + 0.04292275756597519, + 0.003235837910324335, + -0.025337152183055878, + -0.01302289217710495, + -0.0033732254523783922, + 0.013073508627712727, + 0.009067577309906483, + -0.00459525128826499, + 0.005636504385620356, + -0.008922958746552467, + 0.028822457417845726, + -0.029560012742877007, + 0.005893202032893896, + 0.012466110289096832, + -0.0361546128988266, + -0.0055497330613434315, + 0.00444340193644166, + 0.0031888368539512157, + -0.028186136856675148, + -0.027896899729967117, + 0.0001840495824581012, + 0.0030677190516144037, + 0.006041435990482569, + -0.016067110002040863, + 0.00024133204715326428, + -0.07601145654916763, + 0.02199646644294262, + 0.017715761438012123, + 0.03439026698470116, + 0.0034798814449459314, + -0.009617127478122711, + 0.029849248006939888, + -1.9743807570193894e-5, + -0.007332155480980873, + 0.009906363673508167, + 0.002015619771555066, + -0.029256314039230347, + -0.023240186274051666, + 0.023977739736437798, + 0.016992667689919472, + 0.003843235317617655, + 0.03459273278713226, + -0.04543911665678024, + 0.020073041319847107, + 0.00804801657795906, + 0.011627323925495148, + -0.0019487336976453662, + 0.006073975004255772, + 0.021258912980556488, + 0.008185404352843761, + 0.01793268881738186, + -0.02922738902270794, + 0.003807080676779151, + -0.030456645414233208, + 0.02590116485953331, + 0.0229075625538826, + -0.003977007698267698, + -0.0032828389666974545, + 0.013333821669220924, + 0.021620457991957664, + 0.041187334805727005, + -0.03924944996833801, + -0.0010213678469881415, + -0.04324091598391533, + 0.02588670328259468, + 0.00012654114107135683, + 0.011265777982771397, + -0.004945951048284769, + 0.019060712307691574, + 0.02636394463479519, + -0.01317474152892828, + 0.031555745750665665, + -0.012965044006705284, + 0.015532022342085838, + -0.006847683805972338, + 0.008286637254059315, + 0.03144005313515663, + 0.027506429702043533, + -0.01423768699169159, + 0.03158466890454292, + -0.013970142230391502, + 0.04347230866551399, + -0.00591127946972847, + 0.0018312311731278896, + 0.05180232971906662, + -0.0637478157877922, + 0.009147116914391518, + -0.016327423974871635, + -0.0008365273824892938, + -0.017947150394320488, + -0.00040560957859270275, + -0.03534474968910217, + -0.017585603520274162, + 0.02015981264412403, + -0.016688968986272812, + 0.03392748907208443, + -0.007766011171042919, + -0.00045306250103749335, + -0.028489835560321808, + 0.01836654357612133, + -0.004729023203253746, + 0.03942298889160156, + 0.024599598720669746, + -0.011620093137025833, + 0.030514493584632874, + 0.018323158845305443, + 0.023905429989099503, + 0.01971149444580078, + 0.02964678220450878, + -0.009653281420469284, + 0.01098377164453268, + -0.00023523095296695828, + 0.020564744248986244, + 0.00030369876185432076, + -0.005224341526627541, + -0.006308979820460081, + 0.009110962972044945, + -0.00320149096660316, + -0.025033453479409218, + 0.008828956633806229, + -0.03988577052950859, + 0.020246583968400955, + 0.011764710769057274, + 0.04746377468109131, + 0.013876141048967838, + -0.025062378495931625, + -0.0003762339474633336, + -0.007491236086934805, + 0.05631442740559578, + -0.00790339894592762, + -0.019190868362784386, + 0.0039010827895253897, + 0.009125424548983574, + 0.019046250730752945, + -0.03071695938706398, + 0.0293575469404459, + 0.019624724984169006, + -0.019827190786600113, + -0.012090102769434452, + -0.015908030793070793, + -0.03462165594100952, + -0.010434221476316452, + 0.0302541796118021, + -0.03867097571492195, + -0.0009074807749129832, + 0.008850648999214172, + -8.403122819800046e-7, + -0.027622124180197716, + -0.04911242797970772, + -0.005039953161031008, + 0.023370342329144478, + 0.01062222570180893, + 0.011547783389687538, + -0.01670343056321144, + 0.014064144343137741, + 0.0007086304249241948, + -0.012567343190312386, + -0.008525257930159569, + 0.024136820808053017, + -0.029415393248200417, + 0.010918693616986275, + -0.014787237159907818, + -0.02274848334491253, + 0.021302297711372375, + 0.02590116485953331, + -0.013955680653452873, + -0.023746350780129433, + -0.013080739416182041, + -0.01852562464773655, + 0.0024422442074865103, + -0.017657913267612457, + -0.003955314867198467, + 0.010520992800593376, + 0.006128206849098206, + 0.002689903136342764, + -0.06201239302754402, + 0.01196717657148838, + -0.006327057257294655, + 0.02652302384376526, + -0.03404318541288376, + 0.008380639366805553, + -0.016067110002040863, + -0.03673308715224266, + -0.004638636950403452, + 0.016978206112980843, + 0.007353848312050104, + -0.017079439014196396, + 0.0009246542467735708, + 0.005517194047570229, + 0.03684878349304199, + -0.016168342903256416, + 0.004718177020549774, + -0.0010665610898286104, + 0.012856580317020416, + -0.030803730711340904, + 0.008286637254059315, + 0.006742835510522127, + 0.034101031720638275, + 0.04214181751012802, + -0.00180773064494133, + -0.03285731375217438, + 0.003789003472775221, + -0.045525889843702316, + 0.018424391746520996, + -0.00733577087521553, + 0.012914427556097507, + 0.0012762577971443534, + -6.835481326561421e-5, + 0.011945484206080437, + -0.0007777761202305555, + -0.01626957580447197, + 0.002870676340535283, + -0.008865111507475376, + -0.013181972317397594, + 0.003832389134913683, + 0.009768976829946041, + -0.021027524024248123, + -0.004418093711137772, + 0.024874374270439148, + -0.016472041606903076, + 0.027072574943304062, + -0.009501432068645954, + -0.021258912980556488, + 0.003192452248185873, + 0.025698699057102203, + 0.02860553003847599, + -0.01062222570180893, + 0.015213861130177975, + 0.005068876780569553, + 0.033522557467222214, + 0.013102431781589985, + -0.007386387325823307, + -0.0012419109698385, + -0.025076840072870255, + -0.05501285940408707, + -0.003691385965794325, + 0.002818252192810178, + 0.027463044971227646, + -0.016761278733611107, + -0.025264844298362732, + -0.05003798380494118, + 0.026768876239657402, + -0.0068440684117376804, + -0.0007045630482025445, + -0.01746990904211998, + 0.02334141917526722, + 0.004475940950214863, + -0.010716227814555168, + -0.012574574910104275, + 0.007306847255676985, + 0.003365994431078434, + -0.01430999580770731, + -0.011381472460925579, + 0.030688036233186722, + 0.007397233974188566, + 0.014201532118022442, + 0.029024923220276833, + -0.03566291183233261, + 0.01505478098988533, + 0.00477964011952281, + -0.02332695573568344, + 0.02740519680082798, + 0.027810128405690193, + -0.0024404365103691816, + -0.03898913413286209, + 0.003378648543730378, + -0.02018873579800129, + -0.040608860552310944, + 0.005372575484216213, + 0.007946783676743507, + 0.03126651048660278, + 0.009241119027137756, + 0.025843318551778793, + -0.01686251163482666, + -0.0006168881081975996, + 0.013673675246536732, + 0.031237585470080376, + 0.030659113079309464, + 0.013832755386829376, + -0.01415814645588398, + -0.002693518763408065, + -0.0012735462514683604, + 0.005072492174804211, + 0.03479519858956337, + -0.016804663464426994, + 0.011808096431195736, + -0.005976357497274876, + 0.010289602912962437, + -0.015242785215377808, + -0.011873175390064716, + -0.011222392320632935, + -0.01806284487247467, + 0.025481771677732468, + -0.023833120241761208, + 0.016645584255456924, + -0.01151162851601839, + -0.003497958881780505, + -0.0445714071393013, + 0.010484837926924229, + 0.002863445319235325, + -0.036964476108551025, + 0.0007795838755555451, + -0.008033555001020432, + 0.020694900304079056, + 0.0035991917829960585, + 0.0012545650824904442, + -0.0028019824530929327, + 0.010296833701431751, + 0.017730223014950752, + 0.03820819407701492, + -0.008481872268021107, + 0.033349014818668365, + 0.028692301362752914, + 0.009508663788437843, + 0.012784271501004696, + -0.0034816893748939037, + 0.009653281420469284, + -0.005520809441804886, + 0.013796600513160229, + 0.0180773064494133, + -0.016023725271224976, + -0.008076940663158894, + -0.006919993087649345, + 0.008236020803451538, + 0.014910162426531315, + 0.005629273131489754, + -0.00621497817337513, + 0.003962545655667782, + 0.02214108593761921, + 0.013695367611944675, + 0.00985574722290039, + 0.028807995840907097, + -0.018916092813014984, + -0.010426990687847137, + -0.008004631847143173, + 0.010875307954847813, + -0.018149616196751595, + -0.03673308715224266, + 0.02530822902917862, + -0.00986297894269228, + -0.004519326612353325, + 0.009725591167807579, + -0.009233888238668442, + -0.00714776711538434, + 0.010434221476316452, + 0.023153414949774742, + 0.000968039792496711, + -0.011634554713964462, + 0.016949282959103584, + -0.0014787237159907818, + 0.02257494069635868, + -0.010188370011746883, + -0.046740684658288956, + -0.022820791229605675, + 0.014013527892529964, + 0.0036696933675557375, + 0.0009662320371717215, + -0.00643552141264081, + 0.043588001281023026, + 0.019986269995570183, + -0.02121552638709545, + -0.015344018116593361, + -0.01580679789185524, + 0.017224058508872986, + -0.021794000640511513, + 0.004754331894218922, + -0.010745150968432426, + 0.028576606884598732, + -0.01988503709435463, + 0.020593667402863503, + 0.010788536630570889, + 0.010708996094763279, + -0.021562611684203148, + 0.03774541616439819, + -0.023688502609729767, + 0.025568543002009392, + -0.03762971982359886, + 0.009884671308100224, + -0.0376007966697216, + -0.00829386804252863, + 0.007433388382196426, + 0.0077153947204351425, + -0.0038793899584561586, + -0.0415344201028347, + 0.008865111507475376, + -0.04407970607280731, + 0.0014705888461321592, + -0.0029285235796123743, + 0.006977840326726437, + -0.008988036774098873, + -0.002489245031028986, + -0.010520992800593376, + -0.012560112401843071, + -0.002118660369887948, + -0.017961611971259117, + -0.02861999161541462, + -0.0015889952192083001, + -0.033493634313344955, + -0.0017399407224729657, + 0.015257246792316437, + -0.0005147513002157211, + 0.028215060010552406, + -0.0027622124180197716, + -0.011562244966626167, + -0.00021760558593086898, + 0.015575407072901726, + 0.0031147198751568794, + -0.0068874540738761425, + -0.012017793953418732, + -0.015040319412946701, + 0.012314260937273502, + 0.0020065810531377792, + 0.011656247079372406, + 0.038005728274583817, + -0.010419759899377823, + -0.011988869868218899, + -0.0068910694681108, + -0.015879105776548386, + 0.0017842301167547703, + -0.027347350493073463, + -0.010267910547554493, + 0.026407329365611076, + 0.005687120836228132, + -0.0349108949303627, + 0.03754295036196709, + -0.0037564642261713743, + 0.002389820059761405, + -0.023746350780129433, + -0.029733553528785706, + -0.01624065265059471, + -0.024888835847377777, + -0.00047904864186421037, + -0.020217658951878548, + -0.03308870270848274, + -0.023572808131575584, + -0.016688968986272812, + -0.011048849672079086, + -0.023182338103652, + 0.00436024647206068, + 0.02500453032553196, + -0.021345684304833412, + -0.007664778269827366, + -0.05741352587938309, + 0.0029014076571911573, + -0.020101964473724365, + -0.010802998207509518, + -0.016761278733611107, + -0.014852315187454224, + 0.0026772490236908197, + -0.015560945495963097, + -0.03644385188817978, + 0.0029176773969084024, + 0.006731988862156868, + 0.0019487336976453662, + 0.02243032306432724, + -0.017976073548197746, + -0.02199646644294262, + -0.007343002129346132, + -0.04263351857662201, + -0.01820746250450611, + 0.0002666402724571526, + -0.004414478316903114, + 0.04740592837333679, + 0.011504397727549076, + 0.011446550488471985, + 0.00587873999029398, + -0.021895233541727066, + 0.012603498063981533, + -0.00013772648526355624, + -0.02454175241291523, + -0.013666443526744843, + -0.014758313074707985, + 0.01037637423723936, + -0.020897366106510162, + 0.010289602912962437, + 0.05188910290598869, + 0.001905348151922226, + 0.0016567851416766644, + 0.05105031281709671, + -0.0035286901984363794, + -0.010304064489901066, + 0.00395169947296381, + -0.006486137863248587, + -0.006562062539160252, + 0.011121159419417381, + 0.008908497169613838, + -0.001798692042939365, + 0.010860845446586609, + -0.027636585757136345, + -0.044340018182992935, + -0.013666443526744843, + -0.011902098543941975, + -0.012892735190689564, + -0.007176690734922886, + -0.0025308229960501194, + 0.0012862003641203046, + -0.07144151628017426, + -0.0370512492954731, + -0.0028833304531872272, + 0.003926391247659922, + 0.0037817724514752626, + -0.0062041315250098705, + -0.0004498989728745073, + 0.03473735228180885, + -0.020579205825924873, + 0.022618325427174568, + 0.001001482829451561, + 0.00704291881993413, + -0.009212195873260498, + 0.013384438119828701, + -0.013572441413998604, + -0.011316394433379173, + 0.015445251017808914, + 0.004099932964891195, + 0.009761746041476727, + -0.0340142585337162, + -0.002447667298838496, + -0.015199399553239346, + 0.03412995487451553, + -0.010708996094763279, + -0.026465177536010742, + 0.0313243567943573, + 0.013926757499575615, + -0.012249182909727097, + -0.02063705399632454, + -0.02679779939353466, + -0.0016947474796324968, + -0.003304531564936042, + -0.0034401114098727703, + -0.010752381756901741, + 0.0019089635461568832, + 0.013876141048967838, + -0.015864644199609756, + -0.02617594040930271, + 0.0538848340511322, + 0.014483538456261158, + 0.011916560120880604, + -0.02151922509074211, + -0.012213028036057949, + -0.022849716246128082, + -5.875124770682305e-5, + -0.00723092257976532, + 0.034419190138578415, + -0.052901431918144226, + 7.507731788791716e-5, + 0.0203188918530941, + 0.006876607425510883, + 0.025814393535256386, + 0.015604331158101559, + -0.01924871653318405, + -0.0013530864380300045, + 0.01537294127047062, + 0.017238520085811615, + 0.007780472747981548, + 0.02409343421459198, + 0.023095566779375076, + 0.04943058639764786, + 0.016660045832395554, + 0.007664778269827366, + -0.02513468638062477, + -0.023847583681344986, + 0.006695834454149008, + 0.0022054314613342285, + 0.0024802065454423428, + 0.036212459206581116, + -0.00048808727297000587, + 0.003637154120951891, + -0.012263644486665726, + -0.0014922816772013903, + 0.02783905155956745, + 0.004790486302226782, + 0.02257494069635868, + 0.03360932692885399, + 0.022068776190280914, + -0.00655483128502965, + -0.0022198932711035013, + -0.0064210593700408936, + -0.011388703249394894, + -0.008120326325297356, + 0.01626957580447197, + -0.01190932933241129, + -0.012010562233626842, + -0.002228931989520788, + -0.018597932532429695, + -0.01317474152892828, + 0.005159263499081135, + 0.005676274187862873, + 0.026436252519488335, + 0.00564373517408967, + 0.011851482093334198, + -0.02196754328906536, + 0.04141872376203537, + -0.009472508914768696, + -0.014100299216806889, + -0.009819593280553818, + 0.0008225174387916923, + -0.008395100943744183, + -0.020145351067185402, + 0.017816994339227676, + -0.013362744823098183, + 0.0035160360857844353, + 0.017064977437257767, + -0.013637520372867584, + -0.012458879500627518, + 0.0006891973316669464, + -0.015618792735040188, + -0.00856864359229803, + 0.018279772251844406, + -0.0026880954392254353, + 0.0018981172470375896, + -0.01612495817244053, + 0.004179473500698805, + 0.001814057701267302, + -0.023977739736437798, + 0.010549915954470634, + -0.014078606851398945, + -0.006525907665491104, + 0.0063776737079024315, + -0.006728373467922211, + 0.016602197661995888, + 0.019306562840938568, + -0.0020716593135148287, + -0.013608596287667751, + -0.004371092654764652, + 0.007433388382196426, + 0.02065151557326317, + -0.013579673133790493, + -0.004139703232795, + -0.007874474860727787, + 0.0035648448392748833, + 0.00432770699262619, + -0.005368960089981556, + -0.017122825607657433, + -0.0040348549373447895, + 0.022994333878159523, + -0.02436820976436138, + -0.005925741046667099, + -0.004609713330864906, + 0.0038613127544522285, + 0.01235041581094265, + -0.017657913267612457, + 0.016804663464426994, + -0.004081855993717909, + -0.004475940950214863, + -0.0026284405030310154, + 0.00010484837548574433, + -0.004371092654764652, + 0.02769443392753601, + 0.01370259840041399, + 0.04003038629889488, + -0.0002209950762335211, + -0.015720026567578316, + -0.01302289217710495, + 0.01001482829451561, + -0.009443584829568863, + 0.0025832471437752247, + 0.015242785215377808, + -0.00032358377939090133, + 0.003649808233603835, + -0.0006322538247331977, + 0.02001519314944744, + 0.0010421567130833864, + -0.002435013186186552, + -0.0022325473837554455, + -0.032163143157958984, + -0.006522292271256447, + -0.01655881293118, + -0.011923791840672493, + -0.013001198880374432, + -0.010282372124493122, + -0.007758779916912317, + -0.005683505441993475, + -0.026754414662718773, + -0.022184470668435097, + -0.006327057257294655, + 0.000903865322470665, + -0.04130303114652634, + 0.043269842863082886, + 0.0006760912947356701, + -0.0035648448392748833, + 0.0081420186907053, + 0.014114760793745518, + 0.013709829188883305, + -0.012191335670650005, + 0.003637154120951891, + 0.026378406211733818, + 0.045381270349025726, + -0.026682104915380478, + -0.03332009166479111, + 0.002903215354308486, + 0.004859180189669132, + 0.022502630949020386, + 0.021201064810156822, + 0.018033921718597412, + 0.0077153947204351425, + -0.00971112959086895, + 0.018033921718597412, + -0.018323158845305443, + 0.01715174876153469, + -0.004794101696461439, + 0.01122962310910225, + -0.01167070958763361, + -0.024426056072115898, + 0.017281904816627502, + 0.016153881326317787, + -0.03462165594100952, + -0.004273475147783756, + -0.010116061195731163, + -0.0029429856222122908, + -0.009588203392922878, + 0.008192635141313076, + 0.008098633028566837, + 0.0055280402302742004, + -0.004978490062057972, + -0.009385737590491772, + -0.033059779554605484, + 0.021924156695604324, + 0.008857880719006062, + 0.024151282384991646, + -0.006862145848572254, + 0.026450715959072113, + 0.02381865866482258, + 0.019942885264754295, + -0.016298498958349228, + 0.013297666795551777, + -0.006695834454149008, + -0.0017995958914980292, + 0.003774541663005948, + 0.001442569075152278, + -0.0025217842776328325, + -0.00022596633061766624, + 0.0013268743641674519, + 0.029878173023462296, + -0.015430789440870285, + -0.0029502164106816053, + -0.009964211843907833, + 0.008669876493513584, + 0.004251782316714525, + -0.009899132885038853, + -0.007635854184627533, + 0.007744318339973688, + 0.023558346554636955, + -0.015488636679947376, + -0.00010863331408472732, + -0.007314078509807587, + 0.006316211074590683, + 0.0016694392543286085, + 0.024744218215346336, + -0.013297666795551777, + -0.00425539817661047, + 0.005213495343923569, + -0.029603397473692894, + 0.046364676207304, + -0.0009689436410553753, + 0.01940779574215412, + 0.0020373123697936535, + -0.013594134710729122, + 0.0039589302614331245, + 0.026754414662718773, + -0.03716694191098213, + 0.012155180796980858, + -0.0075418525375425816, + -0.00782385841012001, + 0.014121991582214832, + 0.03071695938706398, + 0.0033316477201879025, + 0.012878273613750935, + -0.010586070828139782, + -0.011764710769057274, + -0.007089919876307249, + -0.005683505441993475, + -0.0026049399748444557, + -0.008011862635612488, + -0.02441159449517727, + 0.011461012065410614, + 0.011432088911533356, + -0.03789003565907478, + -0.0005947434110566974, + -0.012979506514966488, + 0.012842118740081787, + 0.014353381469845772, + 0.019769342616200447, + -0.014772774651646614, + -0.020405663177371025, + 0.03042772226035595, + -0.010144984349608421, + 0.021432455629110336, + 0.032886236906051636, + 0.030312027782201767, + 0.022950949147343636, + -0.00027839053655043244, + -0.009906363673508167, + 0.005524424836039543, + 0.010065444745123386, + -0.004161396063864231, + -0.00391915999352932, + 0.0021005829330533743, + 0.010918693616986275, + -0.022488169372081757, + -0.0008537007961422205, + 0.0055280402302742004, + -0.0001901506766444072, + 0.018323158845305443, + -0.01911856047809124, + -0.007563544902950525, + -0.019031789153814316, + -0.011627323925495148, + -0.0015257246559485793, + -0.0295310877263546, + -0.010802998207509518, + 0.002966485917568207, + 0.024151282384991646, + -0.002404281869530678, + -0.01015944592654705, + 0.027622124180197716, + -0.03708017244935036, + -0.014432922005653381, + 0.0029574474319815636, + 0.022473707795143127, + 0.02108537033200264, + -0.032596997916698456, + -0.03311762586236, + 0.0054521155543625355, + 0.02321126125752926, + -0.008170942775905132, + 0.007888936437666416, + -0.002124083461239934, + -0.0005255977157503366, + -0.0026862877421081066, + -0.023572808131575584, + 0.012053947895765305, + -0.015199399553239346, + -0.02227124199271202, + -0.006486137863248587, + -0.007556314114481211, + 0.0005866085994057357, + 0.014939086511731148, + 0.012849349528551102, + -0.007220076397061348, + 0.017860379070043564, + 0.008771109394729137, + 0.05125277861952782, + 0.004732639063149691, + 0.03751402720808983, + 0.005777507089078426, + -0.0011976215755566955, + 0.01746990904211998, + -0.0029086386784911156, + 0.012155180796980858, + -0.029097232967615128, + 0.005477423779666424, + 0.018728090450167656, + 0.00233197258785367, + -0.006674141623079777, + -0.0004659425758291036, + -0.031382203102111816, + -0.0032213761005550623, + 0.0035323058255016804, + 0.016443118453025818, + 0.014252148568630219, + -0.0076720090582966805, + 0.0008193539106287062, + -0.003655231324955821, + -0.019335487857460976, + -0.008387870155274868, + -0.0011605630861595273, + 0.001339528476819396, + -0.024353748187422752, + -0.02230016514658928, + 0.013955680653452873, + -0.0026121707633137703, + 0.018713627010583878, + -0.02231462672352791, + 0.014100299216806889, + -0.00047317350981757045, + -0.006500599440187216, + 0.007455081213265657, + -0.007700932677835226, + -0.019075173884630203, + -0.03236560896039009, + -0.01558986958116293, + -0.007223691791296005, + -0.0032032986637204885, + 0.008980805985629559, + 0.00010919823398580775, + -0.004877257160842419, + -0.021750615909695625, + -0.016515428200364113, + 0.009696667082607746, + 0.01641419529914856, + -0.01203225553035736, + -0.005907663609832525, + -0.007209229748696089, + 0.000977078452706337, + -0.03355148062109947, + -0.0032376456074416637, + -0.02996494434773922, + 0.013449516147375107, + -0.0017824224196374416, + 0.0029719092417508364, + -0.015430789440870285, + 0.010658379644155502, + 0.008922958746552467, + 0.03358040377497673, + -0.010361912660300732, + -0.019653648138046265, + 0.010607763193547726, + 0.002903215354308486, + 0.019465643912553787, + -0.013868909329175949, + -0.02727504074573517, + -0.00300806388258934, + -0.0036263077054172754, + 0.04231536015868187, + -0.020998599007725716, + -0.020376740023493767, + -0.010991002433001995, + 0.007440619636327028, + -0.01579233445227146, + 0.010419759899377823, + -0.03117973916232586, + -0.001676670159213245, + -0.016182804480195045, + -0.019812727347016335, + -0.011923791840672493, + -0.01263965293765068, + 0.010029289871454239, + 0.0071839215233922005, + 0.012444417923688889, + 0.00505079934373498, + 0.024787602946162224, + 0.0017580180428922176, + 0.015213861130177975, + 0.01924871653318405, + -0.01196717657148838, + -0.030340950936079025, + -0.006341519299894571, + -0.012509495951235294, + -0.016443118453025818, + -0.003244876628741622, + 0.013247050344944, + -0.025221457704901695, + 0.018033921718597412, + -0.013572441413998604, + -0.0021837386302649975, + 0.007939552888274193, + -0.017802530899643898, + 0.004320476204156876, + 0.004606097936630249, + 0.005264111794531345, + 0.010434221476316452, + -0.004259013570845127, + -0.006851299200206995, + -0.0026501331012696028, + -0.01654435135424137, + 0.0343613438308239, + 0.018872708082199097, + 0.003402149071916938, + -0.00726346205919981, + 0.009667743928730488, + -0.03803465515375137, + 0.0114537812769413, + 0.03329116851091385, + -0.02634948305785656, + -0.023862045258283615, + -0.00887234229594469, + 0.039827920496463776, + -0.009891902096569538, + -0.0015383787686005235, + -0.010419759899377823, + 0.013203664682805538, + -0.04017500579357147, + -0.005412345752120018, + 0.016905896365642548, + 0.00707907322794199, + -0.0015483213355764747, + 0.007657547015696764, + 0.004266244359314442, + 0.004486787598580122, + 0.0053074974566698074, + 0.005159263499081135, + -0.016631122678518295, + 0.03462165594100952, + -0.00640298193320632, + -0.0036696933675557375, + 0.03224991634488106, + -0.025959013029932976, + 0.019060712307691574, + 0.008452948182821274, + 0.011931022629141808, + 0.026436252519488335, + -0.003886620979756117, + -0.018250849097967148, + -0.013601365499198437, + -0.01535847969353199, + 0.012263644486665726, + -0.010897000320255756, + -0.008677107281982899, + -0.014121991582214832, + 0.013529056683182716, + 0.016327423974871635, + -0.022372474893927574, + -0.006460829637944698, + 0.010441452264785767, + 0.015156013891100883, + -0.005578656680881977, + -0.02256047911942005, + 0.019870575517416, + -0.003311762586236, + -0.0062258243560791016, + -0.018438853323459625, + -0.004074624739587307, + 0.00030573245021514595, + 0.005415961146354675, + -0.0028742917347699404, + -0.00034527655225247145, + -0.0034166108816862106, + -0.0005368959973566234, + -0.0023825890384614468, + -0.013644751161336899, + -0.01537294127047062, + 0.01823638752102852, + 0.009544817730784416, + -0.006092052441090345, + 0.006880222819745541, + -0.022488169372081757, + -0.011316394433379173, + -0.006261979229748249, + 0.005770276300609112, + 0.019234254956245422, + 0.014548616483807564, + 0.008821725845336914, + 0.010745150968432426, + 0.012053947895765305, + -0.014910162426531315, + -0.006684987805783749, + 0.0030333721078932285, + 0.0004553221515379846, + -0.013456746935844421, + -0.006623525172472, + -0.006468060426414013, + 0.07670562714338303, + 0.0081420186907053, + 0.00986297894269228, + 0.001506743486970663, + 0.02726057916879654, + -0.019827190786600113, + 0.016472041606903076, + 0.02606024593114853, + 0.018583470955491066, + -0.006124591454863548, + 0.011764710769057274, + -0.021750615909695625, + -0.014808929525315762, + -0.01671789400279522, + -0.0037853880785405636, + 0.01528617087751627, + 0.0027495583053678274, + 0.010651148855686188, + -0.008395100943744183, + 0.007462312001734972, + 0.042835984379053116, + -0.005246034357696772, + 0.0008722300408408046, + 0.018482238054275513, + -0.006359596271067858, + 0.012495034374296665, + 0.008330022916197777, + 0.008677107281982899, + 0.007939552888274193, + 0.007657547015696764, + 0.005086954217404127, + -0.004515711218118668, + -0.01482339110225439, + -0.012986737303435802, + 0.01927763968706131, + 0.010549915954470634, + -0.001540186582133174, + 0.013543518260121346, + -0.011374241672456264, + 0.03624138608574867, + -0.004063778556883335, + -0.013941219076514244, + 0.014201532118022442, + -0.01778806932270527, + -0.007729856297373772, + -0.0033352631144225597, + 0.0015600715996697545, + -0.0023608962073922157, + -0.0010005789808928967, + -0.00042752831359393895, + -0.023428188636898994, + -0.01670343056321144, + 0.0010819267481565475, + 0.0038251581136137247, + 0.012711961753666401, + -0.0065729087218642235, + -0.00151578220538795, + -0.00753462128341198, + -0.0032159527763724327, + 0.0009725590934976935, + -0.010817460715770721, + 0.011236853897571564, + -0.026595333591103554, + -0.0269424170255661, + 0.014107530005276203, + -0.021779539063572884, + -0.008532488718628883, + 0.0170071292668581, + -0.0027857129462063313, + 0.028243983164429665, + 0.004128857050091028, + 0.013463977724313736, + 0.005632888991385698, + -0.005441269371658564, + -0.012914427556097507, + 0.0038974673952907324, + 0.008286637254059315, + -0.0013322974555194378, + -0.0012166027445346117, + -0.002265086630359292, + 0.004295167978852987, + 0.009566511027514935, + -0.010029289871454239, + -0.019827190786600113, + 0.007292385678738356, + -0.006880222819745541, + 0.010058213025331497, + -0.009219426661729813, + 0.01746990904211998, + -0.02319679968059063, + 0.006938070524483919, + -0.011121159419417381, + -0.004262628965079784, + 0.0020047733560204506, + -0.002982755657285452, + 0.02137460745871067, + -0.014910162426531315, + 0.004287937190383673, + 0.014049682766199112, + -0.01166347786784172, + -0.008337253704667091, + 0.013615827076137066, + -0.00033759369398467243, + 0.006175207905471325, + 0.0014995125820860267, + -0.011786404065787792, + 0.02381865866482258, + 0.019002864137291908, + -0.020969675853848457, + 0.01383998617529869, + -0.006410213187336922, + -0.017961611971259117, + -0.008698799647390842, + 0.0035015742760151625, + -0.002751366002485156, + 0.010369143448770046, + 0.003306339494884014, + 0.006211362779140472, + -0.02783905155956745, + -0.034997664391994476, + 0.007013995200395584, + 0.007614161353558302, + 0.007455081213265657, + 0.016963744536042213, + -0.0073791565373539925, + -0.0030731421429663897, + -0.012531189247965813, + -0.007563544902950525, + -0.025814393535256386, + 0.002270509721711278, + 0.013456746935844421, + 0.004107164219021797, + 0.010246217250823975, + -0.0018330388702452183, + -0.0006232151645235717, + -0.013066276907920837, + 0.01777360774576664, + 0.002158430404961109, + 0.022690635174512863, + -0.013348283246159554, + 0.0017453639302402735, + 0.01528617087751627, + -0.0071622286923229694, + 0.016790201887488365, + 0.001704690046608448, + 0.007664778269827366, + -0.008590335957705975, + -0.01528617087751627, + 0.037138018757104874, + 0.018887169659137726, + 0.02230016514658928, + -0.0071839215233922005, + -0.004906181246042252, + -0.010354680940508842, + 0.014584771357476711, + 0.024729754775762558, + -0.012683038599789143, + -0.016790201887488365, + -0.00858310516923666, + -0.01642865687608719, + 0.01113562099635601, + 0.006930839270353317, + -0.012307030148804188, + 0.0011822558008134365, + -0.011620093137025833, + 0.019190868362784386, + 0.016472041606903076, + 0.006283671595156193, + 0.01355074904859066, + -0.00291586946696043, + -0.003526882501319051, + 0.004414478316903114, + -0.005520809441804886, + -0.011381472460925579, + 0.01286381110548973, + 0.00567988958209753, + -0.005672658793628216, + 0.008344484493136406, + -0.02634948305785656, + 0.0033913026563823223, + 0.0038360045291483402, + -0.0025434771087020636, + -0.005499116610735655, + -0.011706863529980183, + 0.0042770905420184135, + -0.012162411585450172, + 0.03265484794974327, + 0.005321959033608437, + 0.0023916277568787336, + -0.0001455223246011883, + 0.00782385841012001, + 0.018019460141658783, + 0.010586070828139782, + -0.00603058934211731, + 0.01130193192511797, + -0.012928890064358711, + -0.0033768408466130495, + 0.02979140169918537, + 0.007491236086934805, + 0.003667885437607765, + -0.01280596386641264, + -0.016052648425102234, + 4.414817158249207e-5, + -0.016500964760780334, + -0.006583754904568195, + -0.017976073548197746, + -0.013890602625906467, + -0.018887169659137726, + -0.018033921718597412, + 0.006981455720961094, + -0.03690662980079651, + -0.01687697321176529, + 0.013514594174921513, + 0.0015365710714831948, + -0.020073041319847107, + 0.00963158905506134, + 0.009747283533215523, + -0.012010562233626842, + 0.019349949434399605, + 0.014353381469845772, + -0.008648183196783066, + 0.01839546672999859, + -0.0058100465685129166, + -0.014317226596176624, + 0.009450815618038177, + 0.0035106129944324493, + -0.001086446107365191, + -0.01339889969676733, + 0.005929356440901756, + -0.0033424939028918743, + 0.02467190846800804, + -0.011497166939079762, + 0.0010602340335026383, + 0.010759612545371056, + 0.003908313810825348, + 0.0249756071716547, + 0.010455913841724396, + -0.014968009665608406, + 0.01806284487247467, + 0.0032593384385108948, + -0.010578840039670467, + 0.020217658951878548, + -0.020130889490246773, + 0.01609603315591812, + 0.002395243151113391, + 0.00681152893230319, + 0.0131096625700593, + -0.008792801760137081, + 0.0024512826930731535, + -2.8076316084479913e-5, + 0.009168810211122036, + -0.0037456180434674025, + -0.014635387808084488, + 0.01731082797050476, + 0.019349949434399605, + 0.017252981662750244, + 0.025192534551024437, + -0.004483172204345465, + 0.018279772251844406, + -0.003347917227074504, + 0.009031422436237335, + -0.013210895471274853, + -0.0025181688833981752, + -0.009226657450199127, + 0.018496699631214142, + 0.016674507409334183, + -0.012914427556097507, + 0.016761278733611107, + -0.019509028643369675, + -0.005329189822077751, + 0.004504865035414696, + 0.00858310516923666, + -0.0040348549373447895, + 0.009385737590491772, + 0.004392785485833883, + -0.003134605009108782, + 0.020579205825924873, + -0.017686836421489716, + 0.013312128372490406, + 0.0027585970237851143, + -0.02321126125752926, + 0.002830906305462122, + -0.01008713711053133, + -0.02201092801988125, + 0.005347267258912325, + -0.02830183133482933, + 0.009045884013175964, + 0.013435054570436478, + 0.0068910694681108, + 0.0023916277568787336, + -0.01166347786784172, + -0.03074588254094124, + 0.02316787652671337, + 0.01302289217710495, + 0.001476012053899467, + 0.0017607297049835324, + 0.002644710009917617, + 0.01670343056321144, + 0.022849716246128082, + -0.005441269371658564, + -0.01641419529914856, + 0.003930006641894579, + -0.004074624739587307, + -0.01505478098988533, + 0.004888103809207678, + 0.004537404049187899, + 0.0022632787004113197, + -0.014396767131984234, + 0.0007023033685982227, + 0.009884671308100224, + 0.012719192542135715, + -0.013507363386452198, + -0.003064103424549103, + 0.003165336325764656, + 0.00549188582226634, + -0.017093900591135025, + 0.008416794240474701, + -0.007249000016599894, + 0.008496333844959736, + -0.012574574910104275, + 0.004078240599483252, + -0.011641785502433777, + 0.011858712881803513, + 0.01189486775547266, + -0.003107489086687565, + -0.004381939303129911, + 0.0010755996918305755, + 0.014107530005276203, + 0.014722158201038837, + -0.007296001072973013, + 0.011222392320632935, + -0.020955214276909828, + -0.0038034652825444937, + -0.003181606065481901, + 0.006540369708091021, + 0.02305218204855919, + -0.00902419164776802, + -0.012495034374296665, + -0.025799931958317757, + 0.009429123252630234, + -0.018597932532429695, + 0.0021982004400342703, + 0.008698799647390842, + 0.002359088510274887, + -0.004139703232795, + 0.03210529685020447, + 0.01654435135424137, + -0.004356631077826023, + 0.0002429138112347573, + 0.03473735228180885, + 0.012090102769434452, + -0.0012572766281664371, + 0.004020392894744873, + -0.021620457991957664, + -0.003132797311991453, + -0.013232588768005371, + -0.025973474606871605, + 0.004935104865580797, + -0.018149616196751595, + -0.007657547015696764, + -0.013659212738275528, + 0.00527134258300066, + -0.0188003983348608, + -0.009378506802022457, + 0.007386387325823307, + 0.006308979820460081, + 0.011027157306671143, + 0.007679239846765995, + -0.011562244966626167, + 0.005007414147257805, + 0.010246217250823975, + -0.010629456490278244, + -0.011728556826710701, + -0.016500964760780334, + 0.012039486318826675, + 0.0073032318614423275, + 0.02286417782306671, + 0.013803831301629543, + 0.005694351624697447, + 0.015329556539654732, + 0.017889302223920822, + -0.003429264994338155, + -0.007773241959512234, + 0.01250226516276598, + 0.003969776444137096, + 0.012907196767628193, + 0.007491236086934805, + 0.0249756071716547, + -0.00023545691510662436, + -0.009291735477745533, + 0.006489753257483244, + 0.03572075814008713, + 0.032915160059928894, + 0.008098633028566837, + -0.00028200598899275064, + -0.013030122965574265, + -0.008980805985629559, + 0.006815144792199135, + -0.009790669195353985, + -0.015445251017808914, + -0.0040131621062755585, + -0.0026320558972656727, + -0.007982938550412655, + 0.0024693601299077272, + 0.005126724019646645, + -0.01746990904211998, + 0.016992667689919472, + 0.010889769531786442, + 0.00978343840688467, + -0.002814636565744877, + 0.0017462677787989378, + 0.002209046855568886, + -0.0005942914867773652, + 0.008727723732590675, + -0.011952714994549751, + 0.012914427556097507, + 0.020694900304079056, + -0.0024097049608826637, + 0.012458879500627518, + -0.004739869851619005, + 0.01822192594408989, + -0.006312595680356026, + 0.004732639063149691, + 0.005499116610735655, + -0.006381289102137089, + 0.03071695938706398, + 0.04121625795960426, + 0.008575874380767345, + -0.015112628228962421, + 0.012993968091905117, + -0.004801332484930754, + -0.007332155480980873, + 0.021157680079340935, + 0.0012075641425326467, + -0.005936587695032358, + -0.0005364440730772913, + 0.016746817156672478, + -0.029473241418600082, + -0.0003140931949019432, + 0.02124445140361786, + -0.0006873895763419569, + -0.017498832195997238, + 0.015720026567578316, + 0.006883838213980198, + 0.0005893202032893896, + 0.026754414662718773, + 0.0004989336594007909, + 0.018294233828783035, + -0.004497633781284094, + -0.011475474573671818, + -0.01580679789185524, + 0.017643451690673828, + -0.00927004311233759, + -0.004121625795960426, + -0.02199646644294262, + -0.030022790655493736, + -0.0012247374979779124, + 0.022922024130821228, + 0.009920826181769371, + 0.0016106880502775311, + 0.0003771378251258284, + -0.007068227045238018, + -0.008648183196783066, + 0.002816444495692849, + -0.006160746328532696, + 0.02485991269350052, + 0.00994974933564663, + 0.010600532405078411, + -0.0029231004882603884, + 0.006073975004255772, + -0.014324457384645939, + -0.0060631288215518, + 0.002386204432696104, + 0.001552840694785118, + 0.009443584829568863, + 0.0015962261240929365, + -0.0004700099816545844, + -0.007390003185719252, + 0.01823638752102852, + -0.0021078139543533325, + -0.0019740418065339327, + -0.006825990974903107, + -0.007954015396535397, + 0.009458046406507492, + 0.014968009665608406, + -0.006413828581571579, + -0.028518758714199066, + 0.016963744536042213, + -0.009928056970238686, + 0.013557979837059975, + 0.004736254457384348, + 0.0045916358940303326, + -0.008575874380767345, + 0.01233595423400402, + -0.008706031367182732, + -0.0019035403383895755, + 0.0017905571730807424, + 0.023992201313376427, + 0.008460179902613163, + 0.011627323925495148, + 0.002319318475201726, + -0.0022687020245939493, + -0.013905064202845097, + 0.013984604738652706, + 0.01052822358906269, + -0.0016233421629294753, + -0.016370808705687523, + 0.004183088894933462, + 0.008792801760137081, + 0.0020716593135148287, + 0.013218126259744167, + -0.007585237734019756, + 0.005734121892601252, + 0.0019975423347204924, + -0.02587224170565605, + 0.0020499664824455976, + 0.003966161049902439, + 0.004627790302038193, + 0.023283571004867554, + 0.011923791840672493, + 0.006988686975091696, + -0.008575874380767345, + -0.003926391247659922, + -0.005734121892601252, + -0.0030550649389624596, + 0.02785351499915123, + 0.005799199920147657, + 0.005481039173901081, + -0.000496222055517137, + -0.0021005829330533743, + -0.019002864137291908, + 0.007187536917626858, + 0.01294335164129734, + 0.004656714387238026, + -0.0040890867821872234, + 0.010745150968432426, + -5.3017349273432046e-5, + -0.019075173884630203, + 0.026711028069257736, + -0.0026736336294561625, + -0.01258180569857359, + 0.0019306563772261143, + 0.019957346841692924, + -0.011547783389687538, + -0.00858310516923666, + 0.0006711200112476945, + -0.0027766742277890444, + -0.0060595134273171425, + 0.01190932933241129, + -0.006449982989579439, + -0.011128390207886696, + 0.002550707897171378, + 0.011258546262979507, + 0.013890602625906467, + 0.007599699776619673, + -0.006778989918529987, + -0.017397599294781685, + -0.0114537812769413, + 0.011547783389687538, + 0.01189486775547266, + 0.0011397742200642824, + -0.014288303442299366, + 0.002364511601626873, + 0.01563325524330139, + -0.00783831998705864, + 0.015416326932609081, + 0.010477607138454914, + 0.005560579709708691, + 0.01804838329553604, + 0.03010956197977066, + -0.01839546672999859, + -0.0046458677388727665, + -0.017527757212519646, + -0.014743851497769356, + 0.010730689391493797, + -0.004490402992814779, + -0.016312962397933006, + -0.010325757786631584, + 0.005072492174804211, + -0.01031129527837038, + 0.006634371355175972, + 0.004146934021264315, + -0.007606930565088987, + 0.013341052457690239, + 0.01037637423723936, + 0.005828123539686203, + -0.005412345752120018, + -0.006269210018217564, + -0.0006788028404116631, + -0.024136820808053017, + 0.01037637423723936, + -0.0016748624620959163, + -0.002230739686638117, + -0.016761278733611107, + 0.0038468509446829557, + -0.006272825412452221, + -0.015474174171686172, + -0.00955204851925373, + -0.01924871653318405, + -0.020376740023493767, + 0.0014118376420810819, + -0.01008713711053133, + -0.0066162943840026855, + 0.019002864137291908, + -0.016038186848163605, + 0.002924908185377717, + 0.02015981264412403, + -0.02105644717812538, + -0.009298966266214848, + -0.004906181246042252, + 0.0016215344658121467, + 0.015503098256886005, + 0.01761452853679657, + -0.011880406178534031, + 0.0015645908424630761, + -0.013615827076137066, + 0.024961145594716072, + 0.004768793471157551, + 0.019075173884630203, + 0.002478398848325014, + -0.010463145561516285, + -0.019147483631968498, + 0.007418926805257797, + 0.005914894863963127, + -0.007075457833707333, + -0.00534003647044301, + -0.004150549415498972, + 0.0006227632402442396, + 0.003973391838371754, + -0.009920826181769371, + 0.0056907362304627895, + -0.00856864359229803, + 0.009320659562945366, + -0.031121890991926193, + -0.008221559226512909, + -0.020391201600432396, + -0.019176406785845757, + 0.007089919876307249, + 0.013008429668843746, + -0.005517194047570229, + 0.005379806272685528, + -0.007386387325823307, + -0.00986297894269228, + 0.007643085438758135, + -0.005925741046667099, + -0.008785570971667767, + 0.027376273646950722, + 0.0014814352616667747, + -0.0024603214114904404, + 0.020593667402863503, + -0.013008429668843746, + -0.007512928452342749, + -0.01744098588824272, + 0.0011461012763902545, + -0.002449474995955825, + 0.0033569559454917908, + 0.01482339110225439, + -0.014114760793745518, + 0.010412529110908508, + -0.029560012742877007, + 0.012972275726497173, + -0.027361812070012093, + 0.009356813505291939, + 0.005755814258009195, + 0.0028290986083447933, + 0.0028453681152313948, + 0.012321492657065392, + 0.013225357979536057, + -0.004179473500698805, + -0.00010722102888394147, + -0.0018908862257376313, + 0.007006763946264982, + -0.024787602946162224, + 0.001607072539627552, + 0.00789616722613573, + -0.017209595069289207, + 0.0021692768204957247, + -0.01582125946879387, + 0.01122962310910225, + -0.05553348734974861, + 0.02170722931623459, + 0.0036136535927653313, + -0.022329090163111687, + -0.011475474573671818, + -1.5747029465273954e-5, + 0.019523492082953453, + -0.0033840718679130077, + -0.0046241749078035355, + -0.02002965658903122, + 0.008330022916197777, + -0.004150549415498972, + -0.020550282672047615, + -0.011005464009940624, + -0.005918510258197784, + 0.016920359805226326, + 0.015098166652023792, + -0.01820746250450611, + -0.0012048524804413319, + 0.0036046148743480444, + -0.012263644486665726, + -0.0033678021281957626, + -0.01092592440545559, + -0.0066705262288451195, + -0.023312494158744812, + 0.01356521062552929, + -0.008915727958083153, + 0.02590116485953331, + 0.010499299503862858, + 0.021765077486634254, + 0.008648183196783066, + -0.003299108473584056, + -0.0004618751991074532, + -0.011338086798787117, + 0.009298966266214848, + -0.011902098543941975, + -0.014924624003469944, + -0.0037781570572406054, + -0.014273840934038162, + 0.007115228101611137, + -0.002181930933147669, + -0.005459346808493137, + 0.0008225174387916923, + -0.010325757786631584, + 0.0229075625538826, + 0.012466110289096832, + -0.0051122624427080154, + -0.001409126096405089, + 0.023384803906083107, + -0.025047916918992996, + 0.009942518547177315, + 0.0025398614816367626, + 0.007314078509807587, + -0.03074588254094124, + -0.011952714994549751, + -0.005835354793816805, + 0.0009915402624756098, + -0.022242318838834763, + 0.005730506032705307, + 0.01506924256682396, + 0.013507363386452198, + -0.014150915667414665, + -0.021027524024248123, + -0.00274594291113317, + 0.015300632454454899, + 0.02407897263765335, + -0.0014235879061743617, + -0.01446184515953064, + 0.0034618042409420013, + -0.011027157306671143, + 0.007292385678738356, + -0.007433388382196426, + -0.009580972604453564, + 0.03248130530118942, + -0.007852782495319843, + 0.0034654196351766586, + -0.01537294127047062, + -0.0021168526727706194, + -0.0007258038385771215, + 0.009414661675691605, + 0.032423458993434906, + 0.00318341376259923, + 0.004479556810110807, + -0.012589036487042904, + 0.0036208846140652895, + -0.011265777982771397, + -0.02078167162835598, + 0.0029628705233335495, + 0.008091402240097523, + -0.010564378462731838, + 0.005361729301512241, + 0.0036208846140652895, + -0.0008265848737210035, + -0.015445251017808914, + -0.01363028958439827, + -0.003152682213112712, + -0.022647250443696976, + 0.004161396063864231, + 0.012025024741888046, + -0.0030604880303144455, + 0.027159346267580986, + -0.013644751161336899, + 0.012755347415804863, + -0.031989600509405136, + 0.005260496400296688, + -0.0047000995837152, + -0.02921292744576931, + 0.03297300636768341, + -0.010600532405078411, + 0.012878273613750935, + 0.008604797534644604, + 0.01287104282528162, + 0.007357463706284761, + -0.03896021097898483, + 4.937364428769797e-5, + 0.024339286610484123, + 0.006363212130963802, + 0.02710149809718132, + -6.999307515798137e-5, + -0.014996933750808239, + -0.010412529110908508, + 0.0055931187234818935, + -0.00023636077821720392, + 0.0009074807749129832, + 0.00040832115337252617, + -0.010340219363570213, + 0.015994800254702568, + -0.01897394098341465, + 0.01423768699169159, + -0.005603964906185865, + 0.0224592462182045, + 0.0009246542467735708, + 0.004776024259626865, + -0.005238803569227457, + -0.012545650824904442, + 0.015242785215377808, + -0.013688136823475361, + 0.0018583470955491066, + 0.004353015683591366, + 0.005596734117716551, + -0.0035431520082056522, + -0.0011090427869930863, + -0.005719659850001335, + -0.007285154424607754, + 0.00287971505895257, + -0.016978206112980843, + -0.008879573084414005, + -0.011583938263356686, + -0.0031436437275260687, + 0.0052098799496889114, + -0.001138870371505618, + 0.00015636869648005813, + -0.00866264570504427, + 0.00276944343931973, + 0.021461378782987595, + -0.006052282173186541, + -0.005043568555265665, + -0.008619260042905807, + 0.019827190786600113, + -0.012834887951612473, + -0.005734121892601252, + 0.010202831588685513, + -0.027593201026320457, + 0.013984604738652706, + 0.010398066602647305, + -0.00850356463342905, + 0.0009689436410553753, + -0.009067577309906483, + 0.0088144950568676, + -0.011121159419417381, + -0.01181532721966505, + -0.006081205792725086, + 0.008821725845336914, + 0.008771109394729137, + -0.0010891577694565058, + 0.006822375580668449, + 0.018482238054275513, + -0.004794101696461439, + -0.00707907322794199, + -0.0007108901045285165, + -0.0074767740443348885, + -0.006731988862156868, + -0.006645218003541231, + 0.006233055144548416, + -0.0012717385543510318, + 0.005600349511951208, + -0.010405297391116619, + -0.009870209731161594, + 0.013131355866789818, + 0.008069709874689579, + -0.005741352681070566, + 0.004797717090696096, + 0.009009730070829391, + 0.0016839010640978813, + 0.016153881326317787, + 0.01414368487894535, + -0.0037600798532366753, + 0.019769342616200447, + 0.002814636565744877, + -0.021577073261141777, + -0.01235041581094265, + 0.0019487336976453662, + -0.003299108473584056, + 0.00018314571934752166, + 0.010231755673885345, + -0.00036177210859023035, + -0.0023717426229268312, + 0.010369143448770046, + 0.0004395045107230544, + -0.008525257930159569, + 0.02274848334491253, + 0.008272175677120686, + 0.009667743928730488, + 0.025351615622639656, + -0.00015365710714831948, + -0.0024060895666480064, + 0.007071842439472675, + 0.01626957580447197, + 0.0002453994529787451, + -0.009696667082607746, + -0.010658379644155502, + 0.004974874667823315, + -0.015199399553239346, + -0.006764528341591358, + -0.01393398828804493, + -0.024324823170900345, + -0.006055897567421198, + -0.04477387294173241, + -0.012213028036057949, + -0.015184937976300716, + -0.002277740743011236, + 0.00222170096822083, + 0.0068657612428069115, + 0.007353848312050104, + -0.011113927699625492, + 0.0025000914465636015, + -0.005969126708805561, + 0.0045482502318918705, + -0.028215060010552406, + 0.0010340219596400857, + -0.02122998982667923, + -0.014780006371438503, + 0.0021783155389130116, + 0.008626490831375122, + 0.008865111507475376, + -0.03149789944291115, + -0.007961246185004711, + -0.013037353754043579, + 0.0062583633698523045, + -0.0031219508964568377, + -0.01461369451135397, + 0.014281072653830051, + -0.0028724840376526117, + -0.002261471003293991, + -0.008481872268021107, + -0.01506924256682396, + -0.011258546262979507, + -0.0029050232842564583, + -0.023428188636898994, + 0.007758779916912317, + -0.008561412803828716, + 0.03985684737563133, + 0.0002612170937936753, + -0.017845917493104935, + -0.0019505413947626948, + -0.0216638445854187, + 0.013153048232197762, + 0.0051339552737772465, + -0.0006164361839182675, + -0.007722625508904457, + 0.015893567353487015, + -0.012343185022473335, + -0.0071839215233922005, + 0.01062222570180893, + -0.010499299503862858, + 0.010072675533592701, + 0.004244551528245211, + -0.010398066602647305, + -0.03774541616439819, + -0.0012545650824904442, + -0.0003798493999056518, + 0.011771942488849163, + -0.005462962202727795, + 0.0027441352140158415, + -0.01971149444580078, + -0.008474641479551792, + -0.00436024647206068, + 0.016457580029964447, + -0.016211729496717453, + -0.0037781570572406054, + -0.0036696933675557375, + -0.002261471003293991, + 0.01363028958439827, + -0.004475940950214863, + 0.012401032261550426, + 0.030051713809370995, + 0.013557979837059975, + 0.010282372124493122, + -0.0016712469514459372, + -0.03042772226035595, + 0.01280596386641264, + -0.02196754328906536, + -0.0002790684229694307, + 0.01286381110548973, + -0.006142668891698122, + 0.010340219363570213, + 0.008988036774098873, + 0.0032105296850204468, + -0.008857880719006062, + 0.014020758680999279, + -0.00329368538223207, + 0.013406130485236645, + -0.008778340183198452, + -0.007328540086746216, + 0.014787237159907818, + -0.014165377244353294, + -0.03144005313515663, + 0.021027524024248123, + 0.022488169372081757, + 0.00819986592978239, + -0.002608555369079113, + 0.00640298193320632, + 2.977106487378478e-5, + -0.01037637423723936, + 0.006782605312764645, + -0.025192534551024437, + 0.0010385413188487291, + -0.012878273613750935, + -0.0170071292668581, + -0.009407429955899715, + 0.017686836421489716, + 0.009082038886845112, + 0.013536287471652031, + -0.03467950597405434, + -0.02422359026968479, + -0.006269210018217564, + 0.002800174755975604, + 0.0005956472596153617, + 0.033349014818668365, + 0.02244478464126587, + 0.028996000066399574, + 0.024035587906837463, + 0.0047868709079921246, + -0.031208662316203117, + -0.00670668063685298, + -0.009913595393300056, + 0.004761562682688236, + 0.005896817427128553, + -0.004996567498892546, + 0.0031454514246433973, + -0.03598107025027275, + 0.009928056970238686, + 0.008612029254436493, + -0.0033623790368437767, + -0.011482705362141132, + -0.02321126125752926, + -0.008951881900429726, + -0.010332988575100899, + 0.025554081425070763, + 0.0007357464055530727, + -0.004212012514472008, + 0.00994974933564663, + -0.013232588768005371, + -0.01535847969353199, + 0.014693235047161579, + 0.0020445433910936117, + -0.019147483631968498, + 0.0064969840459525585, + -0.006862145848572254, + 0.008619260042905807, + 0.0017028822330757976, + -0.027202730998396873, + -0.03745618090033531, + 0.008330022916197777, + 0.0026194017846137285, + 0.02681226097047329, + 0.009580972604453564, + 0.005585887935012579, + -0.010586070828139782, + 0.004085471387952566, + 0.02441159449517727, + 0.0035576140508055687, + 0.01031852699816227, + 0.02065151557326317, + 0.0012437186669558287, + -0.01609603315591812, + -0.018453314900398254, + -0.00692722387611866, + 0.017079439014196396, + 0.02004411816596985, + -0.009935287758708, + -0.03196067735552788, + -0.007082688622176647, + -0.0023789736442267895, + 0.0024639368057250977, + 0.001988503849133849, + 0.0023337802849709988, + 0.01446184515953064, + 0.01069453451782465, + -0.007512928452342749, + 0.03502659127116203, + 0.007628623396158218, + -0.019827190786600113, + -0.008098633028566837, + -0.01778806932270527, + -0.007259846199303865, + -0.00019941528444178402, + 0.017802530899643898, + 0.0003586085804272443, + -0.002008388750255108, + -0.013608596287667751, + -0.024585137143731117, + -0.017108362168073654, + 0.018554547801613808, + 0.01881485991179943, + -0.0019469258841127157, + 0.0034527655225247145, + 0.021924156695604324, + -0.00032313185511156917, + 0.018583470955491066, + -0.007585237734019756, + -0.0007990169688127935, + -0.010072675533592701, + 0.006948916707187891, + -0.026884570717811584, + 0.004761562682688236, + 0.010933155193924904, + 0.021273374557495117, + -0.014563078060746193, + -0.015748949721455574, + 0.0018764244159683585, + -0.01250226516276598, + 0.005408730357885361, + 0.007614161353558302, + -0.0036624623462557793, + 0.005965511314570904, + -0.004378323908895254, + -0.004537404049187899, + 0.0035377289168536663, + 0.009899132885038853, + -0.0016233421629294753, + 0.003548575332388282, + -0.004002315923571587, + 0.014895700849592686, + -0.010745150968432426, + -0.011959945783019066, + 0.005824508145451546, + -0.004074624739587307, + -0.02092629112303257, + -0.0024277823977172375, + 0.00021353818010538816, + 0.015517559833824635, + 0.024006662890315056, + 0.016081571578979492, + -0.0005784737877547741, + -0.012516726739704609, + -0.013984604738652706, + 0.003955314867198467, + 0.005517194047570229, + -0.013529056683182716, + 0.007751549128443003, + -0.002200008137151599, + 0.02499006874859333, + 0.013030122965574265, + 0.00560758076608181, + 0.013999066315591335, + -0.01777360774576664, + 0.013124125078320503, + -1.3550918993132655e-5, + -0.005365344695746899, + -0.003570268163457513, + 0.003277415642514825, + 0.012097333557903767, + 0.0017200557049363852, + 0.00037352234357967973, + -0.019393334165215492, + -0.00017501092224847525, + -0.03641492500901222, + 0.016529889777302742, + -0.036964476108551025, + 0.02847537398338318, + 0.020362278446555138, + 0.0014778198674321175, + 0.030832653865218163, + 0.007679239846765995, + 0.021765077486634254, + 0.025221457704901695, + -0.021446917206048965, + -0.0006693122559227049, + 0.019697032868862152, + -0.022025389596819878, + 0.004125241190195084, + -0.035460446029901505, + -0.0071079968474805355, + -0.007809396367520094, + 0.003179798135533929, + 0.0007117939530871809, + 0.0028544068336486816, + -0.006753681693226099, + 0.0025561312213540077, + -0.02982032485306263, + -0.024773141369223595, + -0.007035687565803528, + 0.006211362779140472, + -0.016500964760780334, + -0.00598358828574419, + 0.014584771357476711, + -0.0009508663206361234, + -0.008496333844959736, + 0.010173908434808254, + -0.007053765002638102, + -0.0029050232842564583, + -0.0017272866098210216, + -0.017281904816627502, + 0.00034143513767048717, + -0.0033587636426091194, + -0.0035286901984363794, + -0.01000759657472372, + -0.0045482502318918705, + 0.0162840373814106, + -0.011273008771240711, + -0.037861112505197525, + -0.001193102216348052, + 0.02663871832191944, + -0.020101964473724365, + -0.019219793379306793, + -0.0049387202598154545, + -0.008525257930159569, + -0.011280239559710026, + -0.01317474152892828, + -0.007274308241903782, + 0.008604797534644604, + -0.02227124199271202, + 0.00391915999352932, + -0.030485570430755615, + -0.004880873020738363, + 0.002154815010726452, + -0.006558446679264307, + -0.007867244072258472, + 0.008366177789866924, + 0.01956687681376934, + 0.018279772251844406, + 0.023413727059960365, + 0.010600532405078411, + -0.016211729496717453, + 0.016645584255456924, + 0.0017336136661469936, + -0.007744318339973688, + -0.023717425763607025, + -0.01258180569857359, + 0.012314260937273502, + 0.005813661962747574, + 0.015156013891100883, + 0.014367843046784401, + 0.016038186848163605, + -0.030803730711340904, + 0.012892735190689564, + -0.008691568858921528, + 0.0052026486955583096, + -0.014201532118022442, + 0.014693235047161579, + -0.015532022342085838, + 0.018308695405721664, + -0.013536287471652031, + 0.0023175107780843973, + -0.021577073261141777, + -0.003868543542921543, + -0.0004087731067556888, + -0.006066744215786457, + 0.019017327576875687, + -0.004425324499607086, + 0.02650856226682663, + -0.008713262155652046, + 0.010557146742939949, + -0.003998700063675642, + 0.0058100465685129166, + -0.020246583968400955, + 0.0030424108263105154, + -0.007729856297373772, + 0.003642577212303877, + 0.025713160634040833, + -0.020087502896785736, + 0.011352548375725746, + -4.321605956647545e-5, + -0.0009481547167524695, + -0.009045884013175964, + -0.0008365273824892938, + 0.002760404720902443, + -0.014027990400791168, + 0.0013811062090098858, + -0.004754331894218922, + -0.024888835847377777, + 0.0011153698433190584, + 0.01868470385670662, + -0.007766011171042919, + 0.008192635141313076, + -0.00932789035141468, + 0.009472508914768696, + -0.0036046148743480444, + -0.0018999249441549182, + 0.009045884013175964, + 0.012589036487042904, + 0.004233705345541239, + -0.004244551528245211, + -0.014114760793745518, + 0.00919050257652998, + -0.004913412034511566, + 0.04350123181939125, + 0.007751549128443003, + -0.0032701848540455103, + -0.019668109714984894, + -0.013941219076514244, + -0.006424674764275551, + 0.018279772251844406, + 0.0037004246842116117, + -0.019494567066431046, + 0.004389170091599226, + -0.006406597327440977, + -0.008684338070452213, + 0.0018746167188510299, + 0.004436171147972345, + 0.0031183355022221804, + 0.014396767131984234, + -0.008286637254059315, + -0.006045051384717226, + -0.025033453479409218, + 0.030369875952601433, + -8.174332469934598e-5, + -0.018019460141658783, + -0.0019686187151819468, + -0.02225678041577339, + 0.026089169085025787, + 0.015344018116593361, + 0.010824691504240036, + -0.02679779939353466, + 0.0027043651789426804, + -0.010361912660300732, + -0.007874474860727787, + 0.0004218791436869651, + -0.011142851784825325, + -7.615065260324627e-5, + 0.011027157306671143, + 0.02154815010726452, + -0.001117177540436387, + 0.010282372124493122, + -0.001631476916372776, + 0.0010548108257353306, + -0.04127410799264908, + -0.006985071115195751, + 0.01121516153216362, + 0.023283571004867554, + -0.018193000927567482, + -0.005835354793816805, + 0.007082688622176647, + 0.018467776477336884, + -0.021258912980556488, + 0.008546950295567513, + 0.005932971835136414, + -0.00020913184562232345, + 0.001497704884968698, + -0.008937420323491096, + 0.02964678220450878, + -0.010911461897194386, + 0.010130522772669792, + -0.01430999580770731, + -0.023717425763607025, + 0.00609928322955966, + -0.0037275406066328287, + -0.0040131621062755585, + 0.015040319412946701, + 0.0062258243560791016, + 0.0036841551773250103, + -0.005011029541492462, + 0.010933155193924904, + -0.013659212738275528, + 0.0015998416347429156, + -0.017585603520274162, + 0.002858022227883339, + 0.006327057257294655, + -0.005358113907277584, + -0.00647167582064867, + -0.003156297840178013, + -0.009660513140261173, + 0.0011253122938796878, + -0.010152215138077736, + -0.035749681293964386, + -0.01985611394047737, + -0.0038034652825444937, + -0.006457213778048754, + -0.02020319737493992, + 0.009009730070829391, + -0.0017634412506595254, + -0.01037637423723936, + 0.007028456777334213, + 0.009660513140261173, + -0.01052822358906269, + 0.026913493871688843, + -0.01393398828804493, + -0.005990819539874792, + -0.005321959033608437, + 0.02078167162835598, + 0.0005346363177523017, + 0.0020011579617857933, + -0.012053947895765305, + 0.009335121139883995, + 0.014837853610515594, + 0.01868470385670662, + -0.0030677190516144037, + -0.011345317587256432, + -0.013160279020667076, + -0.014375073835253716, + 0.01451969239860773, + -0.01528617087751627, + -0.014324457384645939, + -0.01580679789185524, + -0.011634554713964462, + -0.0017616335535421968, + -0.017643451690673828, + 0.011692401953041553, + -0.035894300788640976, + 0.014939086511731148, + 0.01580679789185524, + -0.001114465994760394, + 0.024266976863145828, + 0.002843560418114066, + 0.020000731572508812, + 0.00850356463342905, + -0.00041735981358215213, + 0.016052648425102234, + 0.02260386385023594, + -0.001631476916372776, + 0.005101415794342756, + 0.007729856297373772, + 0.014837853610515594, + 0.02225678041577339, + -0.0012048524804413319, + -0.0060378205962479115, + -0.001573629560880363, + -0.0022813561372458935, + 0.014403997920453548, + 0.006316211074590683, + -0.03028310462832451, + -0.015257246792316437, + 0.014686004258692265, + -0.014968009665608406, + 0.009241119027137756, + -0.0014199723955243826, + -0.0065512158907949924, + 0.02471529319882393, + 0.01273365505039692, + 0.0036046148743480444, + 0.018265310674905777, + -0.002021042862907052, + -0.011569476686418056, + 0.002118660369887948, + -0.002684480044990778, + 0.013218126259744167, + -0.008792801760137081, + -0.009378506802022457, + 0.013456746935844421, + -0.005141186062246561, + -0.0005558771663345397, + 0.021880771964788437, + 0.0022144701797515154, + -0.004016777500510216, + 0.010463145561516285, + 0.008828956633806229, + -0.002243393799290061, + -0.0009580972837284207, + -0.0027278654742985964, + 0.01385444775223732, + 0.007888936437666416, + 0.0008555085514672101, + -0.000721284537576139, + 0.01642865687608719, + 0.009877440519630909, + 0.0021150449756532907, + -0.014187070541083813, + -0.021172141656279564, + -0.009248349815607071, + -0.007332155480980873, + 0.011526091024279594, + 0.01400629710406065, + 0.010224524885416031, + 0.01820746250450611, + 0.014317226596176624, + 0.005321959033608437, + -0.0019288486801087856, + 0.03647277504205704, + 0.017267443239688873, + 0.016486503183841705, + 0.011121159419417381, + 0.02407897263765335, + -0.005462962202727795, + 0.018728090450167656, + 0.004996567498892546, + 0.018265310674905777, + 0.01642865687608719, + -0.0033623790368437767, + -0.011403164826333523, + -0.002279548440128565, + -0.007592468988150358, + 0.010202831588685513, + 0.002843560418114066, + 0.0003780416736844927, + -0.02050689607858658, + -0.01015944592654705, + 0.015618792735040188, + 0.0161104965955019, + -0.00016348664939869195, + -0.004945951048284769 + ], + "b81ce6cf-58a1-46bd-95ef-7de922157172": [ + -0.039235956966876984, + -0.037283312529325485, + -0.006998248398303986, + 0.02372158318758011, + -0.022913066670298576, + -0.012440483085811138, + -0.009610673412680626, + 0.006471949629485607, + -0.033255983144044876, + 0.0511959046125412, + 0.003899568924680352, + 0.013363412581384182, + 0.019434917718172073, + -0.012623543851077557, + -0.005324007943272591, + 0.00297854607924819, + -0.026925140991806984, + 0.015636412426829338, + -0.009892892092466354, + -0.004111232701689005, + 0.05958617478609085, + -0.018748441711068153, + -0.03368312120437622, + 0.004183693788945675, + 0.016765285283327103, + -0.014957563951611519, + -0.001417765044607222, + -0.014065144583582878, + -0.024575864896178246, + -0.008420780301094055, + -0.013310019858181477, + 0.0162618700414896, + -0.007333859335631132, + -0.0022215149365365505, + 0.02433178387582302, + -0.03288986161351204, + -0.013767670840024948, + 0.03932748734951019, + -0.007978384383022785, + -0.0025685669388622046, + -0.024758925661444664, + 0.003270298708230257, + -0.01118194218724966, + -0.016277125105261803, + -0.023370716720819473, + 0.011548063717782497, + -0.04707704484462738, + -0.002320672618225217, + 0.003916730638593435, + -0.011365002952516079, + 0.022180823609232903, + 0.009122512303292751, + -0.026147134602069855, + 0.021738428622484207, + 0.015621158294379711, + -0.0029346877709031105, + -0.004580324981361628, + 0.07627518475055695, + 0.035208627581596375, + -0.040822479873895645, + -0.024575864896178246, + -0.03969360888004303, + -0.03633749857544899, + 0.014538050629198551, + -0.02443856932222843, + -0.017650078982114792, + -0.024255508556962013, + 0.017512783408164978, + -0.019526448100805283, + 0.009564908221364021, + -0.012730328366160393, + -0.0010459234472364187, + -0.04344634711742401, + 0.016704266890883446, + 0.014904171228408813, + -0.01909930631518364, + 0.046131234616041183, + -0.008176700212061405, + 0.0014425545232370496, + -0.016368655487895012, + 0.022821536287665367, + 0.01172349601984024, + -0.01694834604859352, + 0.030159208923578262, + 0.04146319255232811, + 0.004084536340087652, + -0.051256924867630005, + -0.050189074128866196, + -0.013683768920600414, + -0.02896931581199169, + -0.030311759561300278, + 0.02285204641520977, + 0.011845536530017853, + -0.003712694626301527, + 0.004587952513247728, + 0.008291113190352917, + 0.02848115563392639, + 0.005018907133489847, + -0.012631171382963657, + -0.02344699203968048, + 0.006212614011019468, + -0.0021890979260206223, + -0.03789351135492325, + 0.011487043462693691, + -0.02835911512374878, + 0.023401226848363876, + 0.0074597131460905075, + 0.02294357679784298, + 0.012890506535768509, + 0.04222594201564789, + -0.024667395278811455, + -0.03682566061615944, + 0.02797773852944374, + 0.002448433544486761, + -0.07517682760953903, + -0.045551542192697525, + -0.0017562361899763346, + 0.012127754278481007, + -0.03652055934071541, + -0.0019402500474825501, + 0.03025073930621147, + 0.0006087713409215212, + 0.046253275126218796, + 0.03691719099879265, + -0.0007093592430464923, + 0.018595891073346138, + 0.010785311460494995, + 0.03121180646121502, + 0.0394190177321434, + 0.02628443017601967, + -0.00578928692266345, + -0.007448271848261356, + 0.03404924273490906, + -0.015773708000779152, + -0.021799448877573013, + 0.027840442955493927, + 0.031242316588759422, + 0.058640364557504654, + -0.02492673136293888, + 0.014149047434329987, + -0.02808452397584915, + -0.00027196871815249324, + -0.008054659701883793, + 0.015537255443632603, + -0.0002080882404698059, + 0.015522000379860401, + -0.054033342748880386, + 0.06541360169649124, + -0.0630338117480278, + 0.03240169957280159, + -0.04097503051161766, + 0.008077542297542095, + -0.029030336067080498, + 0.016475440934300423, + 0.05867087468504906, + -0.008306368254125118, + -0.03822912275791168, + 0.04542950168251991, + -0.0008337831241078675, + 0.04704653471708298, + 0.011204824782907963, + -0.08085169643163681, + 0.01192181184887886, + -0.0071355439722537994, + 0.018534870818257332, + 0.011952321976423264, + 0.022577455267310143, + 0.031760986894369125, + -0.032737310975790024, + 0.02157062292098999, + 0.016368655487895012, + -0.022470669820904732, + 0.01653646118938923, + -0.0007188936579041183, + 0.023263931274414062, + -0.015727942809462547, + 0.03716127201914787, + 0.005468931049108505, + 0.05089080333709717, + -0.029396457597613335, + -0.04478878900408745, + -0.006590176373720169, + 0.028038758784532547, + -0.003684091614559293, + -0.018077218905091286, + 0.02086889185011387, + 0.005400283262133598, + -0.024896221235394478, + 0.020609555765986443, + 0.009290318004786968, + 0.0009934842819347978, + -0.018443340435624123, + 0.016399165615439415, + -0.002825995674356818, + -0.04054788872599602, + -0.04301920533180237, + -0.004099791403859854, + -0.033133942633867264, + 0.02550642192363739, + 0.026345450431108475, + -0.014789759181439877, + -0.010701408609747887, + -0.02611662447452545, + 0.02157062292098999, + -0.029198141768574715, + 0.015621158294379711, + 0.014408382587134838, + -0.00470617925748229, + 0.06431523710489273, + -0.011776888743042946, + 0.047534696757793427, + -0.03978513926267624, + 0.04024278745055199, + -0.007902109064161777, + -0.03081517480313778, + 0.023294441401958466, + 0.006563480012118816, + 0.0364595390856266, + -0.0001597011723788455, + -0.013935476541519165, + 0.016765285283327103, + -0.017741609364748, + -0.025826778262853622, + -0.00025719040422700346, + -0.012272677384316921, + 0.023889388889074326, + -0.037954531610012054, + 0.022714750841259956, + -0.006063877139240503, + -0.03722229227423668, + 0.023569032549858093, + 0.008733509108424187, + 0.014805014245212078, + 0.004996024537831545, + 0.005446048453450203, + 0.0462837852537632, + 0.001092642080038786, + 0.029701557010412216, + -0.00460702134296298, + -0.02274526096880436, + -0.01920609176158905, + 0.02680310048162937, + -0.05446048453450203, + 0.005846492946147919, + -0.0027554412372410297, + 0.041127581149339676, + -0.0008418873767368495, + 0.06742726266384125, + 0.023797858506441116, + -0.004023516084998846, + -0.030662626028060913, + 0.007360555697232485, + -0.006372791714966297, + 0.010480211116373539, + -0.017177172005176544, + 0.04689398407936096, + 0.031547416001558304, + -0.040120746940374374, + -0.02440805919468403, + 0.011151432059705257, + 0.018778951838612556, + 0.022043529897928238, + -0.00208040582947433, + 0.0008800249779596925, + 0.026726825162768364, + -0.024865711107850075, + 0.02028919942677021, + 0.027809932827949524, + 0.02748957648873329, + 0.013927849009633064, + 0.016689011827111244, + -0.041127581149339676, + -0.022135058417916298, + -0.008298740722239017, + -0.014774504117667675, + -0.013317647390067577, + 0.021006187424063683, + 0.0004800569440703839, + -0.0035334480926394463, + -0.007021130993962288, + -0.023614797741174698, + -0.026848865672945976, + 0.02265373058617115, + 0.012966781854629517, + 0.03301190212368965, + 0.030281249433755875, + -0.02994563803076744, + -0.0005849353619851172, + -0.019877314567565918, + -0.005438420921564102, + 0.014416010119020939, + -0.02570473775267601, + 0.015773708000779152, + 0.03676464036107063, + 0.02393515408039093, + 0.01655171625316143, + -0.011387885548174381, + -0.0065749213099479675, + 0.00649864599108696, + -0.006220241542905569, + -0.04902968928217888, + 0.01644493080675602, + -0.019221346825361252, + -0.044178590178489685, + -0.006536783650517464, + -0.024560609832406044, + 0.018077218905091286, + 0.04195135459303856, + -0.040120746940374374, + 0.003869058797135949, + 0.052934978157281876, + -0.0011965669691562653, + -0.044300626963377, + -0.028816765174269676, + -0.0002919909602496773, + 0.004576511215418577, + -0.014217695221304893, + 0.0031082138884812593, + -0.004538373555988073, + -0.018000943586230278, + -0.01575845293700695, + -0.0004814871062990278, + -0.030464310199022293, + 0.018046708777546883, + 0.01540758740156889, + -0.047016024589538574, + 0.018351810052990913, + -0.030006658285856247, + -0.035422198474407196, + -0.024652140215039253, + -0.028038758784532547, + -0.005617667455226183, + -0.00639948807656765, + -0.0511959046125412, + -0.02816079929471016, + -0.0033580150920897722, + -0.05256886035203934, + -0.03191353753209114, + -0.025064026936888695, + -0.0177263543009758, + -0.038351163268089294, + -0.006834256928414106, + 0.010175109840929508, + 0.009587790817022324, + -0.04256155341863632, + -0.03581882640719414, + 0.029777832329273224, + 0.02391989901661873, + 0.03832065314054489, + -0.015926258638501167, + 0.0010011118138208985, + -0.018763696774840355, + 0.0384121835231781, + -0.008741136640310287, + 0.04695500433444977, + -0.002843157621100545, + -0.024362294003367424, + -0.0009119652095250785, + 0.047931328415870667, + -0.015788963064551353, + -0.002177656628191471, + -0.0679764449596405, + -0.01978578418493271, + -0.03044905513525009, + -0.0060524363070726395, + 0.039754629135131836, + -0.021189246326684952, + -0.022577455267310143, + -0.023660562932491302, + 0.014583815820515156, + -0.016383910551667213, + -0.0182145144790411, + 0.0031406308989971876, + -0.01664324663579464, + 0.0015588741516694427, + -0.05290446802973747, + 0.02591830864548683, + -0.010358170606195927, + -0.027916718274354935, + 0.021829959005117416, + -0.02541489154100418, + 0.03243220970034599, + 0.018351810052990913, + -0.011792143806815147, + 0.016612736508250237, + 0.014255832880735397, + 0.020212924107909203, + -0.02916763164103031, + -0.027992993593215942, + 0.0029766391962766647, + -0.032462719827890396, + 0.013386295177042484, + -0.03673413023352623, + 0.023508012294769287, + -0.0064033018425107, + -0.011517553590238094, + 0.0006054342957213521, + 0.005949464626610279, + 0.0068151880986988544, + 0.0012833300279453397, + -0.002494198502972722, + 0.0027344655245542526, + -0.01256252359598875, + 0.01783313788473606, + 0.008626723662018776, + -0.025658972561359406, + -0.012501503340899944, + 0.016216104850172997, + 0.006414743140339851, + 0.004397264681756496, + 0.009053864516317844, + 0.0035353549756109715, + 0.0019440638134256005, + 0.029686301946640015, + 0.02924390695989132, + 0.04591766372323036, + 0.034110262989997864, + 0.04018176719546318, + -0.020746851339936256, + -0.006586362607777119, + 0.005556647200137377, + 0.031455885618925095, + -0.011159059591591358, + 0.02985410764813423, + -0.010014931671321392, + -0.0019640859682112932, + 0.011837908998131752, + 0.012615916319191456, + -0.01093786209821701, + -0.030296504497528076, + 0.0601048469543457, + 0.00782583374530077, + -0.04439215734601021, + -0.02404193952679634, + -0.013760043308138847, + -0.030357524752616882, + 0.014408382587134838, + -0.009328455664217472, + 0.0008790715364739299, + -0.011609083041548729, + -0.026070859283208847, + 0.02698616124689579, + -0.013775298371911049, + -0.017055131494998932, + -0.017970433458685875, + -0.022211333736777306, + -0.006506273522973061, + 0.006147779989987612, + 0.016216104850172997, + 8.002935646800324e-5, + 0.010037814266979694, + 0.058365773409605026, + -0.03328649327158928, + 0.005560460966080427, + -0.0004967421409673989, + -0.02767263725399971, + 0.03484250605106354, + -0.037588413804769516, + 0.013859201222658157, + -0.051348455250263214, + -0.012226912193000317, + 0.008901313878595829, + 0.05229426920413971, + -0.01703987643122673, + 0.020151903852820396, + -0.022592710331082344, + 0.012760838493704796, + 0.015049094334244728, + 0.009496260434389114, + 0.009938657283782959, + -0.012005714699625969, + -0.020014608278870583, + -0.04835847020149231, + 0.003973937127739191, + 0.03014395385980606, + 0.004980769939720631, + -0.017680589109659195, + -0.009236925281584263, + 0.009145394898951054, + -0.0031005863565951586, + -0.03182200714945793, + 0.027931973338127136, + 0.013630376197397709, + 0.01482026930898428, + -0.0050913686864078045, + -0.004751943983137608, + -0.029472732916474342, + -0.033042412251234055, + -0.03197455778717995, + 0.014225322753190994, + 0.025338616222143173, + 0.016978856176137924, + 0.0001536229974590242, + 0.03072364442050457, + 0.014682973735034466, + -0.005434607155621052, + 0.01722293719649315, + -0.025567442178726196, + 0.009435240179300308, + 0.013454942964017391, + 0.01584998331964016, + -0.0006454787799157202, + 0.005968533456325531, + -0.011303982697427273, + -0.01201334223151207, + 0.04118860140442848, + -0.019328132271766663, + 0.01919083669781685, + -0.002322579501196742, + -0.02460637502372265, + -0.015560138039290905, + -0.008702998980879784, + -0.02915237657725811, + 0.004000633489340544, + 0.00460320757701993, + 0.019862059503793716, + -0.003710787743330002, + -0.015483862720429897, + 0.033042412251234055, + 0.013554100878536701, + -0.01949593797326088, + 0.014385499991476536, + -0.02805401384830475, + 0.013767670840024948, + -0.000985856750048697, + 0.01192181184887886, + -0.023263931274414062, + -0.014118537306785583, + 0.00857333093881607, + 0.008962334133684635, + -0.027016671374440193, + 0.0071355439722537994, + 0.004729061387479305, + 0.019267112016677856, + 0.02463688515126705, + 0.027794677764177322, + -0.0196942538022995, + 0.008161445148289204, + 0.003607816295698285, + 0.006632127333432436, + -0.009725086390972137, + 0.01990782469511032, + -0.007436830550432205, + -0.0069677382707595825, + -0.003258857410401106, + 0.006780864205211401, + 0.004736688919365406, + 0.023096127435564995, + 0.009885264560580254, + 0.020899401977658272, + -0.024087704718112946, + 0.03591035678982735, + -0.03673413023352623, + 0.006140152458101511, + -0.00020868414139840752, + -0.04381246864795685, + -0.007761000189930201, + 0.006822815630584955, + 0.0014482751721516252, + -0.03554423898458481, + -0.03377465158700943, + -0.007947874255478382, + -0.010014931671321392, + 0.008443662896752357, + -0.023385971784591675, + -0.008947079069912434, + -0.05931158363819122, + 0.020350219681859016, + 0.004896867088973522, + 0.021311286836862564, + 0.0009582070633769035, + -0.013592238537967205, + 0.021326541900634766, + 0.008489428088068962, + 0.008100424893200397, + -0.004996024537831545, + -0.02303510718047619, + -0.027077691629529, + -0.019968843087553978, + 0.01646018587052822, + 0.009580163285136223, + 0.011761633679270744, + 0.018565380945801735, + -0.05003652349114418, + 0.007326231803745031, + -0.006761795375496149, + 0.0021604946814477444, + -0.017985688522458076, + 0.01443126518279314, + 0.028435390442609787, + -0.001047830330207944, + 0.03298139199614525, + -0.022318119183182716, + -0.00945812277495861, + -0.02727600745856762, + 0.030876195058226585, + 0.014751621522009373, + 0.016216104850172997, + -0.007352928165346384, + 0.00018747011199593544, + 0.026421723887324333, + 0.038656264543533325, + -0.02739804796874523, + -0.007863971404731274, + -0.04088350012898445, + 0.01998409815132618, + -0.00649864599108696, + 0.020563790574669838, + -0.010381053201854229, + 0.0012080082669854164, + 0.030510075390338898, + -0.03160843625664711, + 0.02373683825135231, + -0.0167500302195549, + 0.02550642192363739, + -0.021006187424063683, + 0.015331313014030457, + 0.028191309422254562, + 0.033713631331920624, + -0.030311759561300278, + 0.03673413023352623, + -0.00532019417732954, + 0.04765673726797104, + -0.013393922708928585, + 0.009839499369263649, + 0.05211120843887329, + -0.05012805387377739, + 0.02431652881205082, + -0.016521206125617027, + -0.0031844889745116234, + -0.007879226468503475, + 0.004736688919365406, + -0.009481005370616913, + -0.031074510887265205, + 0.026253920048475266, + -0.00945812277495861, + 0.024652140215039253, + 0.002900363877415657, + 0.0031596997287124395, + -0.026665804907679558, + -0.001000158372335136, + 0.0010935955215245485, + 0.03395771235227585, + 0.029213396832346916, + -0.01722293719649315, + 0.0018010478233918548, + 0.028328604996204376, + 0.026070859283208847, + 0.04463623836636543, + 0.02806926891207695, + -0.008542820811271667, + 0.028832020238041878, + 0.004054026212543249, + 0.017467018216848373, + 0.014995701611042023, + -0.004458284471184015, + -0.01783313788473606, + 0.01909930631518364, + -0.0029137120582163334, + -0.027901463210582733, + -0.012753210961818695, + -0.024850456044077873, + 0.0024503404274582863, + 0.02196725457906723, + 0.03514760732650757, + 0.011166687123477459, + -0.01861114613711834, + 0.01882471702992916, + 0.01320323534309864, + 0.04057839885354042, + 0.00984712690114975, + -0.02913712151348591, + 0.010281895287334919, + 0.01980103924870491, + 0.009511515498161316, + -0.026177644729614258, + 0.04182931408286095, + 0.029976148158311844, + -0.005438420921564102, + 0.008611468598246574, + 0.0030624486971646547, + -0.03920544683933258, + 0.0019373897230252624, + 0.04009023681282997, + -0.023080872371792793, + -0.005232478026300669, + -0.0127989761531353, + 0.02620815485715866, + -0.028877785429358482, + -0.03755790367722511, + -0.004240900278091431, + 0.01653646118938923, + -0.010983627289533615, + 0.009160649962723255, + -0.01560590323060751, + 0.00017614800890441984, + 0.006300330627709627, + -0.015560138039290905, + 0.005777845624834299, + 0.03110502101480961, + -0.03523913770914078, + 0.021601133048534393, + -0.005465117283165455, + -0.03435434401035309, + -0.0021433327347040176, + 0.007284280378371477, + -0.024286018684506416, + 0.00238932017236948, + 0.0018744627013802528, + -0.006010484881699085, + -0.006780864205211401, + -0.01635340042412281, + -0.0049197496846318245, + 0.019724763929843903, + 0.005648177582770586, + -0.006826629396528006, + -0.04182931408286095, + 0.007436830550432205, + -0.01732972264289856, + 0.008702998980879784, + -0.03188302740454674, + 0.01929762214422226, + -0.00099062395747751, + -0.04353787750005722, + -0.021112971007823944, + 0.02463688515126705, + -0.020563790574669838, + -0.009389475919306278, + 0.014065144583582878, + 0.00921404268592596, + 0.035300157964229584, + -0.0060524363070726395, + -0.0029861736111342907, + 9.027883606904652e-6, + -0.006982993334531784, + -0.026742080226540565, + 0.01181502640247345, + 0.011342120356857777, + 0.03032701462507248, + 0.024286018684506416, + 0.01432447973638773, + 0.0008318762411363423, + -0.0054613035172224045, + -0.03862575441598892, + 0.003562051337212324, + 0.001906879711896181, + 0.007333859335631132, + -0.001724772620946169, + 0.014850778505206108, + 0.03478148579597473, + 0.003460986539721489, + -0.0344763845205307, + -0.0028603195678442717, + -0.013035429641604424, + -0.0081233074888587, + 0.018260279670357704, + 0.022180823609232903, + 4.233868821756914e-5, + -0.0061248973943293095, + 0.0014768783003091812, + -0.015567765571177006, + 0.03122706152498722, + -0.03621545806527138, + -0.02925916202366352, + -0.0006778957322239876, + 0.015102487057447433, + 0.03426281362771988, + 0.0017352604772895575, + 0.01655171625316143, + -0.0167347751557827, + 0.021906234323978424, + 0.021402817219495773, + -0.0022024461068212986, + -0.01841283030807972, + -0.01664324663579464, + -0.0561690479516983, + -0.022180823609232903, + 0.004191321320831776, + 0.01191418431699276, + -0.02549116685986519, + -0.005869375541806221, + -0.05287395790219307, + 0.01646018587052822, + -0.014934681355953217, + 0.0177263543009758, + -0.019846804440021515, + 0.013866828754544258, + 0.02128077670931816, + 0.006292703095823526, + -0.007955501787364483, + 0.018061963841319084, + 0.002909898292273283, + -0.004397264681756496, + -0.012570151127874851, + 0.021051950752735138, + -0.019419662654399872, + 0.02678784541785717, + 0.0035734924022108316, + -0.02886253036558628, + 0.017802627757191658, + -0.015911003574728966, + -0.025933563709259033, + 0.02196725457906723, + 0.05262988060712814, + -0.01655171625316143, + -0.05259937047958374, + 0.022226588800549507, + -0.00802414957433939, + -0.0443311370909214, + 0.01841283030807972, + 0.007871598936617374, + 0.016917835921049118, + -0.002284441841766238, + 0.015911003574728966, + -0.017756864428520203, + -0.00023538045934401453, + 0.010075951926410198, + 0.011975204572081566, + 0.031074510887265205, + 0.017009366303682327, + 0.007654215209186077, + 0.0007451132405549288, + -0.002812647493556142, + 0.0038614312652498484, + 0.028694724664092064, + -0.03832065314054489, + 0.0026257734280079603, + -0.012127754278481007, + 0.03237118944525719, + -0.021189246326684952, + -0.0290608461946249, + -0.010998882353305817, + -0.0016608921578153968, + 0.011159059591591358, + -0.024453824386000633, + 0.01574319787323475, + -0.02059430070221424, + 0.000135388458147645, + -0.054307933896780014, + 0.02689463086426258, + -0.006750354077666998, + -0.03014395385980606, + -0.018336554989218712, + -0.009130139835178852, + 0.032462719827890396, + 0.005922768265008926, + 0.0009200694621540606, + -0.014904171228408813, + 0.024774180725216866, + 0.0314863957464695, + 0.05262988060712814, + -0.023813113570213318, + 0.009831871837377548, + 0.0413716621696949, + -0.015247410163283348, + 0.00823009293526411, + -0.0035639582201838493, + 0.032249148935079575, + -0.01862640120089054, + 0.010114089585840702, + 0.009542025625705719, + -0.028618449345231056, + -0.0046489727683365345, + 0.009252180345356464, + 0.009885264560580254, + -0.001330048544332385, + -0.006727471482008696, + -0.026147134602069855, + 0.009542025625705719, + 0.022089295089244843, + 0.0022653730120509863, + -0.010586995631456375, + 0.014393127523362637, + -0.0088631771504879, + -0.010083579458296299, + 0.010220875032246113, + 0.018077218905091286, + -0.009900519624352455, + -0.024469079449772835, + -0.0008037497755140066, + -0.027611616998910904, + -0.003813759423792362, + -0.014171930029988289, + 0.0013853480340912938, + -0.014156674966216087, + 0.02404193952679634, + 0.04597868397831917, + -0.023797858506441116, + -0.023767348378896713, + -0.013279509730637074, + 0.0069372281432151794, + 0.008176700212061405, + -0.0314863957464695, + -0.025628462433815002, + -0.02581152319908142, + 0.018733186647295952, + -0.02115873619914055, + -0.020106138661503792, + -0.009908147156238556, + 0.037191782146692276, + 0.0058541204780340195, + -0.025964073836803436, + -0.011692985892295837, + -0.016124574467539787, + 0.017772119492292404, + -0.015453352592885494, + 0.0010764335747808218, + 0.006456694565713406, + 0.03227965906262398, + -0.0033599219750612974, + 0.00792499165982008, + 0.017009366303682327, + 0.020960422232747078, + -0.0354527086019516, + 0.05128743499517441, + -0.011464160867035389, + 0.015026211738586426, + -0.027733657509088516, + -0.008191955275833607, + -0.045856643468141556, + -0.011944694444537163, + -0.002541870577260852, + -0.0018163028871640563, + 0.02579626813530922, + -0.028191309422254562, + -0.002938501536846161, + -0.030876195058226585, + 0.0067465403117239475, + 0.0016732868971303105, + 0.00911488477140665, + 0.0032359748147428036, + -0.005079927388578653, + 0.007341486867517233, + -0.016307635232806206, + 0.005819796584546566, + -0.0038271076045930386, + -0.016872070729732513, + -0.01684156060218811, + -0.015552510507404804, + -0.0012528199004009366, + -0.010594623163342476, + 0.010175109840929508, + 0.03859524428844452, + -0.01497281901538372, + -0.007185122463852167, + 0.016566971316933632, + 0.009442867711186409, + 0.00015874773089308292, + -0.02982359752058983, + -0.0041569978930056095, + -0.02503351680934429, + 0.005907513201236725, + -0.006117269862443209, + 0.013012547045946121, + 0.025430146604776382, + 0.00782583374530077, + -0.023614797741174698, + -0.011563318781554699, + -0.003085331292822957, + 0.01212012767791748, + -0.02619289979338646, + -0.009130139835178852, + 0.017055131494998932, + 0.006483390927314758, + -0.040425848215818405, + 0.04982295259833336, + -0.012272677384316921, + 0.008710626512765884, + -0.008725881576538086, + -0.003426662879064679, + -0.023065617308020592, + -0.024789435788989067, + 0.007604636251926422, + 0.008237720467150211, + -0.026177644729614258, + -0.02539963647723198, + -0.007528360933065414, + -0.020441750064492226, + -0.021387562155723572, + -0.01073191873729229, + 0.050768762826919556, + -0.010503093712031841, + -0.016429675742983818, + -0.0532095693051815, + -0.011349747888743877, + -0.016170339658856392, + -0.011906556785106659, + -0.02384362369775772, + -0.01938915252685547, + -0.0004872077552136034, + 0.008214837871491909, + -0.04063941910862923, + -0.0002712536370381713, + -0.017558548599481583, + 0.020258689299225807, + 0.007265211548656225, + -0.019053541123867035, + -0.02186046913266182, + -0.024987751618027687, + -0.03337802365422249, + -0.006433811970055103, + 0.021921489387750626, + 0.002147146500647068, + 0.0640101358294487, + -0.005018907133489847, + 0.006208800245076418, + 0.00792499165982008, + -0.017573803663253784, + 0.02038072980940342, + 0.011365002952516079, + -0.0007617984083481133, + 0.01019036490470171, + -0.016109319403767586, + -0.0015512466197833419, + -0.0038805000949651003, + 0.003043379867449403, + 0.03090670518577099, + -0.011403140611946583, + -0.014309224672615528, + 0.04253104329109192, + 0.0027897648978978395, + -0.01063276082277298, + -0.0004738596035167575, + -0.003586840583011508, + 0.0029651978984475136, + 0.00995391234755516, + 0.016582226380705833, + 0.0024408060126006603, + 0.011494670994579792, + -0.0236453078687191, + -0.03044905513525009, + -0.004118860233575106, + -0.005552833434194326, + -0.007543615996837616, + 0.004359127022325993, + -0.01452279556542635, + 0.004137929063290358, + -0.05644363909959793, + -0.03902238607406616, + 0.010121717117726803, + -0.0011317330645397305, + 0.01487366110086441, + -0.033530570566654205, + 0.0006006670882925391, + 0.0423479825258255, + -0.014789759181439877, + 0.03426281362771988, + 0.008588586002588272, + 0.009435240179300308, + -0.00782583374530077, + 0.026131879538297653, + -0.007902109064161777, + -0.0035677719861268997, + -0.0034361970610916615, + 0.008161445148289204, + 0.005354518070816994, + -0.04350736737251282, + -0.010274267755448818, + 0.0038518968503922224, + 0.030174463987350464, + -0.015926258638501167, + -0.008085169829428196, + 0.030098188668489456, + 0.026635294780135155, + -0.0046985517255961895, + -0.012730328366160393, + -0.024286018684506416, + 0.010907351970672607, + -0.002417923416942358, + -0.005278242751955986, + 0.009046236984431744, + 0.005076113622635603, + 0.01039630826562643, + -0.012181147001683712, + -0.01417955756187439, + 0.0413411520421505, + 0.01723819226026535, + 0.000459558010334149, + -0.01752803847193718, + -0.00802414957433939, + -0.015194017440080643, + 0.013943104073405266, + -0.010426818393170834, + 0.04079196974635124, + -0.04393450915813446, + 0.007059268653392792, + 0.007654215209186077, + 0.008497055619955063, + 0.004423961043357849, + 0.015178762376308441, + -0.01920609176158905, + 0.002353089628741145, + -8.956375677371398e-5, + 0.019556958228349686, + 0.014927053824067116, + 0.021997764706611633, + 0.019724763929843903, + 0.06968501210212708, + 0.027138711884617805, + -0.0007565545383840799, + -0.02729126252233982, + -0.020121393725275993, + -0.009702203795313835, + -0.009153022430837154, + -0.005201967898756266, + 0.04015125706791878, + 0.01256252359598875, + 0.004099791403859854, + -0.0011155245592817664, + 0.0008890826720744371, + 0.028679469600319862, + 0.0022138874046504498, + 0.02236388437449932, + 0.0020460819359868765, + 0.029686301946640015, + -0.0009138720924966037, + 0.006365164183080196, + -0.006853325758129358, + -0.0015493397368118167, + 0.00514476140961051, + 0.011059901677072048, + -0.026467489078640938, + -0.01722293719649315, + 0.0030376592185348272, + -0.024270763620734215, + -0.0115709463134408, + 0.01899252086877823, + 0.010037814266979694, + 0.021112971007823944, + 0.008535193279385567, + 0.012409972958266735, + -0.016917835921049118, + 0.02956426329910755, + -0.010442073456943035, + -0.006010484881699085, + -0.011944694444537163, + -0.0021204501390457153, + -0.014156674966216087, + -0.01734497770667076, + 0.009320828132331371, + -0.023172402754426003, + 0.0031177483033388853, + 0.012066734954714775, + 0.006353722885251045, + 0.007108847610652447, + -0.0014387407572939992, + -0.007612263783812523, + -0.009275062941014767, + 0.0182297695428133, + -0.01664324663579464, + -0.007993639446794987, + -0.0019040193874388933, + 0.001885903999209404, + 0.0003186872636433691, + -0.0167500302195549, + 0.007848716340959072, + -0.023019852116703987, + -0.010403935797512531, + 0.01216589193791151, + -0.013798180967569351, + -0.002785951131954789, + 0.02433178387582302, + 0.005709197837859392, + -0.0070859650149941444, + -0.005079927388578653, + 0.01752803847193718, + 0.012814231216907501, + -0.014469402842223644, + -0.01334815751761198, + -0.0006969645037315786, + 0.0032569505274295807, + -0.006300330627709627, + 0.005880816839635372, + 0.008336878381669521, + 0.0014711576513946056, + 0.014072772115468979, + -0.025857288390398026, + 0.0017610033974051476, + -0.0056138536892831326, + 0.02480469085276127, + 0.006151593755930662, + -0.015712687745690346, + 0.0026524695567786694, + 0.006876207888126373, + -0.01246336568146944, + 0.019373897463083267, + 0.01703987643122673, + -0.014698228798806667, + 0.03298139199614525, + 0.010876841843128204, + 0.01019036490470171, + -0.013218489475548267, + -0.008657233789563179, + -0.01990782469511032, + 0.007745745126157999, + -0.017939923331141472, + 0.010853959247469902, + 0.007192749995738268, + -0.0006664544343948364, + 0.002688700333237648, + 0.0008700138423591852, + 0.028008248656988144, + 0.00017876997299026698, + -0.0012890506768599153, + -0.00524773309007287, + -0.030067678540945053, + -0.0068151880986988544, + -0.000587795686442405, + -0.0028660402167588472, + -0.03340853378176689, + 0.012692190706729889, + -0.013371040113270283, + -0.018687421455979347, + -0.034811995923519135, + -0.026864120736718178, + 0.004134115297347307, + 0.006586362607777119, + -0.042286962270736694, + 0.02294357679784298, + -0.0002650562673807144, + -0.006464322097599506, + 0.0063460953533649445, + 0.011754006147384644, + 0.013043057173490524, + -0.00803177710622549, + 0.00965643860399723, + 0.03292037174105644, + 0.05662669986486435, + -0.020914657041430473, + -0.03160843625664711, + 0.01940440759062767, + 0.0012404252775013447, + 0.022394394502043724, + 0.02985410764813423, + 0.019251856952905655, + -0.007391065824776888, + -0.005606226157397032, + 0.015590648166835308, + -0.013088822364807129, + 0.020609555765986443, + 0.004473539534956217, + 0.0011593828676268458, + -0.012600661255419254, + -0.04066992923617363, + 0.01803145371377468, + 0.015399959869682789, + -0.018656911328434944, + 8.283008355647326e-5, + -0.00450404966250062, + 0.005640550050884485, + -0.024758925661444664, + 0.003832828253507614, + 0.002854598918929696, + 0.011159059591591358, + -0.01810772903263569, + -0.002980452962219715, + -0.03783249109983444, + 0.026452234014868736, + -0.002343555213883519, + 0.020151903852820396, + -0.0015617344761267304, + 0.024057194590568542, + 0.008519938215613365, + 0.005468931049108505, + -0.04420909658074379, + 0.00901572685688734, + 0.012387090362608433, + -0.004069281276315451, + 0.005285870283842087, + 0.0023283001501113176, + 0.005282056517899036, + -0.013523590750992298, + 0.005095182452350855, + 0.0324932299554348, + -0.0026715383864939213, + -0.00028746211319230497, + -0.010144599713385105, + 0.0023569033946841955, + -0.005774031858891249, + -0.010602250695228577, + -0.0006492925458587706, + 0.015522000379860401, + 0.01633814536035061, + -0.013973614200949669, + -0.008847922086715698, + 0.0016322890296578407, + -0.002059430116787553, + -0.002650562673807144, + 0.003678370965644717, + -0.029076101258397102, + -0.0017343070358037949, + 0.010525975376367569, + -0.024987751618027687, + 0.039846159517765045, + -0.00040640373481437564, + 0.023767348378896713, + -0.0006111549446359277, + -0.020014608278870583, + 0.020838381722569466, + 0.04677194356918335, + -0.017375487834215164, + 0.02808452397584915, + -0.011311610229313374, + -0.009145394898951054, + 0.00433243066072464, + 0.012051479890942574, + 0.0004106942215003073, + 0.027413303032517433, + -0.0017838859930634499, + -0.01803145371377468, + -0.042103901505470276, + -0.003306529251858592, + -0.0028584126848727465, + -0.012715073302388191, + -0.02424025535583496, + 0.009793734177947044, + 0.006422370672225952, + -0.03453740477561951, + -0.0019373897230252624, + -0.01931287720799446, + 0.0004829172685276717, + 0.006166848819702864, + 0.020731596276164055, + 0.010953117161989212, + -0.0196942538022995, + 0.02796248346567154, + -0.013378667645156384, + 0.018092473968863487, + 0.02422500029206276, + 0.035483218729496, + 0.011067529208958149, + -0.009610673412680626, + -0.015529627911746502, + 0.0062049864791333675, + 0.0023054175544530153, + 0.012074362486600876, + -0.007917364127933979, + -0.00487779825925827, + 0.0038938482757657766, + -0.013081194832921028, + 0.012928644195199013, + -0.0007641820120625198, + -0.00016315739776473492, + 0.0045993938110768795, + -0.016094064339995384, + -0.004896867088973522, + -0.010266640223562717, + 0.008741136640310287, + -0.017558548599481583, + -0.02451484464108944, + -0.0100912069901824, + 0.006552038714289665, + 0.026055604219436646, + 0.008245347999036312, + 0.006277448032051325, + 0.008138562552630901, + -0.02953375317156315, + -0.010884469375014305, + -0.023614797741174698, + 0.01703987643122673, + 0.021890979260206223, + -0.039632588624954224, + -0.01398886926472187, + 0.0030147768557071686, + 0.01586523838341236, + -0.005358331836760044, + -0.0019126003608107567, + -0.01127347256988287, + -0.002698234748095274, + -0.010922607034444809, + -0.020624810829758644, + 0.0060028573498129845, + -0.018931500613689423, + -0.02128077670931816, + -0.007059268653392792, + -0.006963924504816532, + 0.0036287920083850622, + 0.00551469624042511, + 0.025842033326625824, + -0.005118065048009157, + 0.008039404638111591, + 0.014210067689418793, + 0.04182931408286095, + 0.017299212515354156, + 0.04362940788269043, + -0.004465912003070116, + 0.010213247500360012, + 0.012234539724886417, + -0.005232478026300669, + 0.0063956743106245995, + -0.022043529897928238, + 0.016978856176137924, + 0.017680589109659195, + 0.00022310492931865156, + 0.006193545181304216, + -0.008260603062808514, + -0.02256220020353794, + 0.017558548599481583, + -0.0013414898421615362, + -0.0012690284056589007, + 0.02187572419643402, + -0.013294764794409275, + -0.005541392136365175, + 0.013210861943662167, + -0.02530810795724392, + -0.014934681355953217, + 0.014393127523362637, + 0.0007384391501545906, + -0.03404924273490906, + -0.03061686083674431, + 0.014538050629198551, + -0.0007417761953547597, + 0.014133792370557785, + -0.02631494030356407, + 0.0167500302195549, + 0.001605592668056488, + -0.013393922708928585, + 0.0006168755935505033, + 0.0006631173891946673, + -0.034415364265441895, + -0.019740018993616104, + -0.02187572419643402, + -0.008199582807719707, + 0.000410217500757426, + 0.006719843950122595, + -0.010136972181499004, + -0.007886854000389576, + -0.012646426446735859, + -0.013126960024237633, + 0.01147178839892149, + -0.001681867870502174, + 0.0006102015031501651, + -0.002009851159527898, + -0.011235334910452366, + 0.01147941593080759, + -0.028206564486026764, + -0.005106623750180006, + -0.023080872371792793, + 0.000667407875880599, + -0.0010573647450655699, + 0.009786106646060944, + -0.02059430070221424, + -0.0029251533560454845, + 0.004965514875948429, + 0.019740018993616104, + -0.0021109157241880894, + -0.017268702387809753, + 0.008519938215613365, + 0.0010773870162665844, + 0.0007050687563605607, + -0.012600661255419254, + -0.017497528344392776, + 0.007986011914908886, + 0.007619891315698624, + 0.02913712151348591, + -0.007574126124382019, + -0.015186389908194542, + -0.01584998331964016, + 0.006826629396528006, + -0.00920641515403986, + 0.0032836468890309334, + -0.020563790574669838, + -0.011418395675718784, + -0.0135388458147645, + -0.019419662654399872, + -0.008489428088068962, + 0.0006254565087147057, + 0.024682650342583656, + 0.01526266522705555, + 0.019831549376249313, + -0.015239782631397247, + 0.03725280240178108, + 0.001111710793338716, + 0.016505951061844826, + 0.005621481221169233, + 0.005915140733122826, + -0.014164302498102188, + -0.015895748510956764, + -0.021326541900634766, + -0.005754963029175997, + -0.006586362607777119, + -0.0013653258793056011, + -0.004690924193710089, + 0.02276051603257656, + -0.008748764172196388, + -0.002814554376527667, + 0.0028965503443032503, + 0.004999838303774595, + -0.009908147156238556, + -0.01761956885457039, + -0.016002533957362175, + 0.006960110738873482, + 0.0029632910154759884, + -0.020960422232747078, + 0.003954868298023939, + -0.01541521493345499, + 0.026665804907679558, + 0.030189719051122665, + 0.007547429762780666, + -0.018962010741233826, + 0.01408039964735508, + -0.031455885618925095, + 0.008954706601798534, + 0.017405997961759567, + -0.026253920048475266, + -0.01702462136745453, + -0.006334654055535793, + 0.045856643468141556, + -0.015300802886486053, + 0.013523590750992298, + -0.008306368254125118, + 0.00028293326613493264, + -0.02875574491918087, + 0.0047710128128528595, + 0.005896071903407574, + 0.01064038835465908, + -0.0003255997144151479, + 0.009976794011890888, + 0.017512783408164978, + 0.024270763620734215, + -0.004904494620859623, + 0.004309548065066338, + -0.007539802230894566, + 0.033713631331920624, + -0.008649606257677078, + -0.014469402842223644, + 0.021845214068889618, + -0.018687421455979347, + 0.00010356739949202165, + -0.0002679165918380022, + 0.0010087393457069993, + 0.010136972181499004, + -0.006811374332755804, + -0.021311286836862564, + -0.02716922201216221, + 0.009618300944566727, + 0.001943110371939838, + -0.01561353076249361, + -0.015819473192095757, + -0.01842808537185192, + 0.008191955275833607, + 0.00931320060044527, + -0.0324932299554348, + -0.005060858558863401, + 0.011990459635853767, + 0.006357536651194096, + -0.0033294118475168943, + -0.011296355165541172, + -0.0004943585372529924, + -0.00043190823635086417, + -0.008085169829428196, + -0.01702462136745453, + -0.008313995786011219, + 0.012882879003882408, + 0.019084051251411438, + -0.0025571256410330534, + -0.005011279601603746, + -0.008146190084517002, + -0.008382642641663551, + 0.005915140733122826, + -0.01862640120089054, + -0.006422370672225952, + 0.032340679317712784, + 0.00443158857524395, + -0.008085169829428196, + 0.0024236440658569336, + -0.01882471702992916, + -0.014583815820515156, + -0.0061554075218737125, + 0.00606006383895874, + 0.01931287720799446, + 0.009160649962723255, + 0.004942632280290127, + 0.005335449241101742, + 0.0005549020133912563, + -0.006201172713190317, + 0.0007341486634686589, + -0.006258379202336073, + 0.006693147588521242, + -0.013088822364807129, + -0.0016637524822726846, + 0.00033727934351190925, + 0.07639722526073456, + 0.004786267876625061, + -0.0005792147130705416, + 0.0008886059513315558, + 0.01832129992544651, + -0.010648015886545181, + 0.0018935315310955048, + 0.026665804907679558, + 0.016627991572022438, + -0.012585406191647053, + 0.013706651516258717, + -0.03292037174105644, + -0.0052401055581867695, + -0.003714601509273052, + -0.016322890296578407, + 0.010350543074309826, + -0.0005472744815051556, + 0.008596213534474373, + 0.0033522944431751966, + 0.012570151127874851, + 0.031074510887265205, + -0.0014473217306658626, + -0.010083579458296299, + 0.013843946158885956, + -0.00182869762647897, + 0.005571902263909578, + 0.007463526912033558, + 0.0030033355578780174, + 0.007597008720040321, + 0.005251546856015921, + 0.009732713922858238, + 0.003920544404536486, + -0.0031577928457409143, + -0.01319560781121254, + 0.008405525237321854, + 0.00911488477140665, + -0.003327504964545369, + 0.005453675985336304, + -0.007863971404731274, + 0.024774180725216866, + -0.009038609452545643, + -0.003304622368887067, + 0.010892096906900406, + -0.005304939113557339, + 0.0005858888034708798, + -0.009709831327199936, + -0.004141742829233408, + -0.004980769939720631, + -0.016017789021134377, + -0.015010956674814224, + -0.01742125302553177, + -0.0197095088660717, + -0.005110437516123056, + 0.0004018748877570033, + 0.017680589109659195, + 0.002049895701929927, + -0.006216427776962519, + -0.003813759423792362, + -0.007005875930190086, + 0.003377083921805024, + -0.021326541900634766, + 0.0076809111051261425, + -0.028023503720760345, + -0.029076101258397102, + 0.012776093557476997, + -0.011387885548174381, + -0.008809784427285194, + 0.0026257734280079603, + -0.004416333511471748, + 0.005743521731346846, + 0.010350543074309826, + 0.012188774533569813, + 0.003085331292822957, + -1.6119092833832838e-5, + -0.013874456286430359, + 0.00612871116027236, + 0.0025475912261754274, + -0.0015283640241250396, + -0.015277920290827751, + -0.0026181458961218596, + 0.013393922708928585, + 0.019846804440021515, + -0.009717458859086037, + -0.012547268532216549, + 0.005941837094724178, + -0.00713935773819685, + -0.0027706960681825876, + -0.01703987643122673, + 0.01565166749060154, + -0.016811050474643707, + 0.007166053634136915, + 0.0012480526929721236, + -0.004809150472283363, + -0.004149370361119509, + -0.002242490416392684, + 0.007528360933065414, + -0.012669308111071587, + 0.012783721089363098, + 0.0023092313203960657, + -0.0036535814870148897, + -0.0008709672838449478, + 0.014408382587134838, + 0.012852368876338005, + 0.01028952281922102, + -0.010205619968473911, + -0.012951526790857315, + 0.025384381413459778, + -0.0018067684723064303, + -0.014339734800159931, + 0.010106462053954601, + -0.0023626238107681274, + -0.018138239160180092, + -0.011586201377213001, + -0.011067529208958149, + 0.002261559246107936, + 0.028404880315065384, + 0.004740502685308456, + 0.004565069917589426, + -0.02738279290497303, + -0.027214987203478813, + 0.016490695998072624, + 0.005198154132813215, + -0.007795324083417654, + 0.019816294312477112, + -0.005827424116432667, + 0.0005539485719054937, + -0.02776416763663292, + -0.006292703095823526, + -0.020563790574669838, + -0.008413152769207954, + 0.009046236984431744, + 0.020807871595025063, + 0.019923079758882523, + 0.004614648874849081, + -0.012867623940110207, + -0.008146190084517002, + 0.010220875032246113, + 0.007356741931289434, + 0.019282367080450058, + 0.013210861943662167, + 0.0008723974460735917, + 0.007002062164247036, + -0.006624499801546335, + 0.01951119303703308, + 0.0006545364740304649, + 0.0023950408212840557, + -0.0115785738453269, + -0.013256627134978771, + 0.024469079449772835, + 0.009023354388773441, + 0.02128077670931816, + -0.027428558096289635, + 0.007497850805521011, + -0.002591449534520507, + 0.01181502640247345, + 0.01655171625316143, + -0.004439216107130051, + -0.007467340677976608, + -0.002370251342654228, + -0.027153966948390007, + -0.002475129906088114, + -0.0019755272660404444, + -0.01615508459508419, + 0.0033694563899189234, + -0.013325274921953678, + 0.028313349932432175, + 0.003304622368887067, + -0.010846331715583801, + 0.019938334822654724, + 0.004637531470507383, + 0.007692352402955294, + -0.00045193047844804823, + -0.004675669129937887, + -0.00940473098307848, + 0.010762428864836693, + 0.021448582410812378, + -0.012570151127874851, + 0.0009782292181625962, + -0.015201644971966743, + 0.008153817616403103, + 0.0031730476766824722, + -0.004935004748404026, + 0.014698228798806667, + -0.013287137262523174, + 0.0027459068223834038, + -0.005468931049108505, + 0.015788963064551353, + -0.0022768143098801374, + 0.004099791403859854, + -0.0028469713870435953, + -0.0036993466783314943, + 0.004568883683532476, + -0.005594784859567881, + -0.005602412391453981, + 0.004420147277414799, + -0.006246937904506922, + 0.0013739068526774645, + 0.02787095308303833, + 0.0019774341490119696, + 2.3120916011976078e-5, + -0.007455899380147457, + -0.003512472379952669, + 0.006757981609553099, + -0.00568631524220109, + 0.0027611618861556053, + -0.01911456137895584, + -0.007703793700784445, + -0.013287137262523174, + -0.01684156060218811, + 0.016612736508250237, + -0.04253104329109192, + -0.02088414691388607, + 0.00985475443303585, + -0.004694737959653139, + -0.02335546165704727, + 0.014370244927704334, + 0.004385823383927345, + -0.007646587677299976, + 0.01472111139446497, + 0.012852368876338005, + -0.009938657283782959, + 0.031181296333670616, + 0.007970756851136684, + -0.008626723662018776, + 0.014210067689418793, + -0.009084374643862247, + 0.00027339888038113713, + -0.0066168722696602345, + 0.008893686346709728, + 0.00837501510977745, + 0.027443813160061836, + -0.006895276717841625, + -0.004080722574144602, + 0.027901463210582733, + 0.008649606257677078, + 0.013653258793056011, + 0.0023149519693106413, + -0.010556485503911972, + 0.01496519148349762, + 0.0027134898118674755, + -0.015018584206700325, + 0.014393127523362637, + -0.031760986894369125, + 0.006971552036702633, + 0.0008785948157310486, + -0.0015970116946846247, + 0.011258217506110668, + -0.03032701462507248, + -0.007917364127933979, + -3.381731949048117e-5, + 0.007436830550432205, + 0.009961539879441261, + -0.006872394122183323, + 0.021814703941345215, + 0.020334964618086815, + 0.030662626028060913, + 0.024377549067139626, + 0.006914345547556877, + 0.010114089585840702, + 0.002030826872214675, + 0.005819796584546566, + -0.008756391704082489, + -0.011220079846680164, + -0.014141419902443886, + 0.015445725060999393, + 0.020853636786341667, + -0.009671693667769432, + 0.024667395278811455, + -0.01606355421245098, + 0.0033885252196341753, + 0.005979974754154682, + 0.0031101207714527845, + -0.0034743347205221653, + 0.013401550240814686, + -0.0013424432836472988, + 0.0015026212204247713, + -0.0016084529925137758, + -0.00558715732768178, + 0.0024732230231165886, + 0.0032149991020560265, + -0.01584998331964016, + -0.0049693286418914795, + 0.01408039964735508, + -0.010007304139435291, + 0.00921404268592596, + -0.033133942633867264, + -0.0012699818471446633, + 0.019358642399311066, + 0.00047862681094557047, + 0.014339734800159931, + -0.001527410582639277, + -0.03133384510874748, + 0.005426979623734951, + 0.007242328952997923, + 0.0010487837716937065, + 0.005404097028076649, + -0.006212614011019468, + 0.0052210367284715176, + 0.022104548290371895, + -0.0038175731897354126, + -0.02579626813530922, + -0.006018112413585186, + -0.013630376197397709, + -0.016399165615439415, + 0.0016351493541151285, + 0.011906556785106659, + 0.008634351193904877, + -0.014416010119020939, + 0.003539168741554022, + 0.013767670840024948, + 0.018199259415268898, + -0.008992844261229038, + 0.004294293001294136, + 0.007635146379470825, + 0.007265211548656225, + -0.0056138536892831326, + 0.014065144583582878, + 0.003337039379402995, + 0.0016685196897014976, + -0.0027535343542695045, + -0.00303003191947937, + 0.006307958159595728, + 0.0015312243485823274, + 0.003867151914164424, + 0.007863971404731274, + 0.011334492824971676, + 0.0022196080535650253, + 0.020533280447125435, + 0.01246336568146944, + -0.004103605169802904, + 0.017558548599481583, + -0.011998087167739868, + -0.012074362486600876, + -0.0063766054809093475, + -0.004523118492215872, + 0.013462570495903492, + -0.0031387240160256624, + -0.0001198354730149731, + -0.026360705494880676, + 0.009435240179300308, + -0.017650078982114792, + -0.013523590750992298, + 0.022501179948449135, + -0.008786901831626892, + -0.006170662585645914, + 0.022867301478981972, + 0.009168277494609356, + -0.010022559203207493, + -0.018778951838612556, + 0.03337802365422249, + -0.0005601458833552897, + -0.012669308111071587, + 0.005358331836760044, + -0.015033839270472527, + -0.005529950838536024, + 0.007242328952997923, + -0.0231418926268816, + -0.0024903849698603153, + -0.015804218128323555, + 0.0006006670882925391, + -0.01507197692990303, + 0.0011498484527692199, + -0.008634351193904877, + -0.0077800690196454525, + 0.009137767367064953, + 0.012226912193000317, + 0.00793261919170618, + 0.008115679956972599, + -0.004389637149870396, + 0.01497281901538372, + 0.010350543074309826, + -0.014454147778451443, + -0.022104548290371895, + -0.0063956743106245995, + -0.0009972980478778481, + 0.0059036994352936745, + 0.019175581634044647, + 0.00010416330042062327, + 0.006757981609553099, + 0.010045441798865795, + 0.012272677384316921, + 0.0064033018425107, + -0.0017352604772895575, + 0.009709831327199936, + 0.014538050629198551, + 0.017878903076052666, + 0.010281895287334919, + 0.03691719099879265, + -0.01398886926472187, + -0.010945489630103111, + 0.01575845293700695, + 0.023126637563109398, + 0.020701086148619652, + 7.043536606943235e-5, + -0.0025228017475456, + -0.01310407742857933, + -0.00856570340692997, + 0.011509926058351994, + -0.0056634326465427876, + -0.024057194590568542, + -0.007032572291791439, + -0.0010630853939801455, + -0.004824405536055565, + -0.0026963278651237488, + -0.005995229817926884, + -0.028832020238041878, + -0.0030872381757944822, + 0.008092797361314297, + 0.022287609055638313, + -0.017360232770442963, + 0.00955728068947792, + -0.0069372281432151794, + 0.004244714044034481, + 0.009908147156238556, + -0.010037814266979694, + 0.010579368099570274, + 0.017467018216848373, + -0.002290162490680814, + 0.018794206902384758, + 0.006166848819702864, + 0.02716922201216221, + -0.0034114078152924776, + 0.006723657716065645, + -0.004382009617984295, + 0.002467502374202013, + 0.027535341680049896, + 0.039846159517765045, + -0.004622276406735182, + 0.00910725723952055, + 0.01462195347994566, + 0.007619891315698624, + -0.0019173675682395697, + 0.03536117821931839, + 0.005880816839635372, + 0.009252180345356464, + 0.002784044248983264, + 0.005110437516123056, + -0.019358642399311066, + 0.0032073715701699257, + 0.014393127523362637, + 0.003634512657299638, + -0.003562051337212324, + 0.012387090362608433, + 0.007150798570364714, + 0.005926582030951977, + 0.016872070729732513, + -0.00018615912995301187, + 0.029884617775678635, + -0.0037584598176181316, + -0.0100988345220685, + -0.006109642330557108, + 0.012310815043747425, + -0.005179085303097963, + 0.003228347282856703, + -0.03990717604756355, + -0.02059430070221424, + 0.004473539534956217, + 0.007276652846485376, + 0.01300491951406002, + -0.00048220218741334975, + -0.004416333511471748, + 0.0007956455228850245, + -8.19958295323886e-5, + 0.0033828045707195997, + -0.010777683928608894, + 0.020411239936947823, + 0.002456061076372862, + 0.014347362332046032, + -0.003018590621650219, + 0.014347362332046032, + -0.005751149263232946, + -0.0061248973943293095, + 0.013355785049498081, + -0.008108052425086498, + 0.0011508018942549825, + 0.01442363765090704, + 0.0011031299363821745, + 0.005079927388578653, + 0.012821858748793602, + -0.0055642747320234776, + 0.00048601595335640013, + -0.00306435558013618, + -0.005175271537154913, + 0.0003298901719972491, + 0.014416010119020939, + -0.011067529208958149, + -0.031364355236291885, + 0.026375960558652878, + -0.001097409287467599, + -0.0017733981367200613, + -0.0014292063424363732, + -0.0019564584363251925, + 0.013706651516258717, + 0.008047032169997692, + -0.012959154322743416, + -0.013866828754544258, + 0.00994628481566906, + 0.01606355421245098, + -0.0021700290963053703, + -0.004854915663599968, + -0.0016713800141587853, + -0.007322418037801981, + -0.02422500029206276, + 0.01202096976339817, + 0.004584138747304678, + 0.004286665469408035, + -0.024301273748278618, + -0.0020079442765563726, + 0.01931287720799446, + 0.008481800556182861, + 0.016582226380705833, + -0.014934681355953217, + -0.0016122667584568262, + 0.011448905803263187, + -0.020960422232747078, + -0.0015703154494985938, + 0.021448582410812378, + 0.009481005370616913, + 0.02765738219022751, + -0.004668041598051786, + 0.0018229769775643945, + -0.011807398870587349, + 0.008542820811271667, + -0.007330045569688082, + -0.0036287920083850622, + 0.006628313567489386, + 0.007253770250827074, + 0.00022954064479563385, + -0.017573803663253784, + 0.003153979079797864, + -0.006883835420012474, + 0.014736366458237171, + 0.01039630826562643, + 0.003449545241892338, + 0.02244015969336033, + 0.013180352747440338, + 0.0017962806159630418, + -0.014362617395818233, + 0.03301190212368965, + -0.010220875032246113, + -0.018931500613689423, + 0.00216621533036232, + 0.029625283554196358, + -0.004744316451251507, + -0.010518347844481468, + -0.018382320180535316, + 0.003346573794260621, + 0.003304622368887067, + -0.013226117007434368, + 0.005095182452350855, + -0.01742125302553177, + -0.007417761720716953, + 0.025567442178726196, + 0.012989664450287819, + 0.016490695998072624, + -0.004782454110682011, + -0.006914345547556877, + -0.018290789797902107, + 0.000807563541457057, + 0.01300491951406002, + 0.0037584598176181316, + -0.005236291792243719, + -0.00877164676785469, + -0.002541870577260852, + -0.005899885669350624, + 0.010609878227114677, + 0.012608288787305355, + 0.01063276082277298, + 0.010716663673520088, + 0.00954965315759182, + -0.00867248885333538, + 0.0010154134361073375, + -0.020243434235453606, + -0.00911488477140665, + 0.027321772649884224, + -0.0015741292154416442, + -0.01929762214422226, + -0.020426495000720024, + 0.015819473192095757, + -0.01978578418493271, + -0.001218496123328805, + 0.0008747810497879982, + -0.015155879780650139, + -0.0006955343415029347, + 0.0060753184370696545, + 0.00497314240783453, + -0.012127754278481007, + 0.009198787622153759, + 0.013866828754544258, + -0.03810708224773407, + 0.017894158139824867, + 0.0018315579509362578, + 0.006876207888126373, + -0.015560138039290905, + 0.003018590621650219, + -0.0077304900623857975, + -0.009351338259875774, + 0.005507068708539009, + -0.02236388437449932, + -0.02716922201216221, + 0.006742726545780897, + -0.008718254044651985, + 0.0036306988913565874, + 0.017405997961759567, + -0.009145394898951054, + 0.004359127022325993, + -0.0008619095897302032, + -0.014049889519810677, + -0.016002533957362175, + -0.0003673126921057701, + 0.0016046392265707254, + 0.006925786845386028, + 0.026955651119351387, + -0.008893686346709728, + -0.003939613234251738, + -0.01742125302553177, + 0.02915237657725811, + 0.002486571203917265, + 0.007185122463852167, + 0.024163980036973953, + -0.021692663431167603, + -0.02067057602107525, + 0.012890506535768509, + 0.0033885252196341753, + -0.008611468598246574, + -0.004282851703464985, + -0.006296516861766577, + -0.0020918468944728374, + 0.006193545181304216, + -0.023462247103452682, + 0.013912593945860863, + -0.006185917649418116, + 0.0032226266339421272, + -0.033927202224731445, + -0.012501503340899944, + -0.021982509642839432, + -0.01453042309731245, + 0.002757348120212555, + 0.010030186735093594, + -0.0041798800230026245, + 0.023675817996263504, + -0.006437625735998154, + -0.013477825559675694, + 0.010213247500360012, + 0.005301125347614288, + -0.02157062292098999, + 0.008527565747499466, + -0.007059268653392792, + 0.0024312715977430344, + 0.024347038939595222, + -0.009244552813470364, + -0.008016522042453289, + -0.020914657041430473, + 0.002614332130178809, + -0.002154774032533169, + -0.00030176370637491345, + 0.0182145144790411, + -0.005724452901631594, + 0.035300157964229584, + -0.01191418431699276, + -0.00041450795833952725, + -0.026177644729614258, + 0.007242328952997923, + 0.012394717894494534, + -0.01137263048440218, + -0.010075951926410198, + 0.016490695998072624, + 0.015712687745690346, + -0.00015588740643579513, + -0.003550610039383173, + 0.00596090592443943, + 0.0008385503315366805, + -0.03157792612910271, + 0.00198124791495502, + -0.004401078447699547, + -0.010571740567684174, + -0.0037660873495042324, + -0.004748130217194557, + 0.010617505759000778, + -0.03749688342213631, + 0.014255832880735397, + 0.012493875809013844, + -0.026330195367336273, + -0.004416333511471748, + -1.1351892680977471e-5, + 0.002147146500647068, + -0.0052934978157281876, + -0.014118537306785583, + -0.012059107422828674, + 0.013119332492351532, + -4.659937258111313e-5, + -0.021616388112306595, + -0.012234539724886417, + -0.001731446711346507, + 0.021692663431167603, + 0.0032950881868600845, + -0.013325274921953678, + 0.0017629102803766727, + 1.0778339856187813e-5, + -0.007242328952997923, + -0.009816616773605347, + -0.008062287233769894, + 0.002042268170043826, + -0.011250589974224567, + -0.0036516746040433645, + -0.0010802473407238722, + 0.014942308887839317, + 0.015819473192095757, + 0.020319709554314613, + 0.0027992993127554655, + -0.00173621391877532, + -0.005869375541806221, + 0.010792938992381096, + 0.023462247103452682, + -0.009030981920659542, + -0.01118194218724966, + 0.003575399285182357, + -0.007909736596047878, + 0.004492608364671469, + 0.0042790379375219345, + 0.008069914765655994, + -0.008184327743947506, + -0.0041989488527178764, + 0.030586350709199905, + -0.001237564953044057, + -0.007433016784489155, + 0.012943899258971214, + 0.03359159082174301, + -0.018550125882029533, + 0.011654848232865334, + -0.010175109840929508, + 0.0035906543489545584, + -0.019023030996322632, + -0.0022558385971933603, + -0.010320032946765423, + -0.007219446357339621, + -0.026650549843907356, + 0.0034762416034936905, + 0.020304454490542412, + 0.007616077549755573, + -0.008519938215613365, + -0.014583815820515156, + -0.00803177710622549, + 0.004526932258158922, + 0.01566692255437374, + 0.010350543074309826, + -0.01763482391834259, + 0.01028952281922102, + 0.006658823695033789, + 0.016429675742983818, + -0.005651991348713636, + 0.0005234384443610907, + 0.031074510887265205, + 0.0005344030214473605, + 0.01790941320359707, + -0.008047032169997692, + 0.0075588710606098175, + 0.0022253284696489573, + 0.015155879780650139, + 0.02884727530181408, + 0.008939451538026333, + 0.0031768614426255226, + -0.016505951061844826, + 0.008161445148289204, + 0.0073872520588338375, + -0.01722293719649315, + 0.010358170606195927, + 0.0053430767729878426, + -0.016109319403767586, + -0.002709676045924425, + 0.0049922107718884945, + -0.008008894510567188, + -0.027825187891721725, + -0.018778951838612556, + -0.005888444371521473, + -0.016399165615439415, + 0.0028660402167588472, + 0.021616388112306595, + -0.007272839080542326, + 0.019465427845716476, + -0.004793895408511162, + 0.012097245082259178, + -0.03972411900758743, + 0.00011596211697906256, + -0.023218166083097458, + -0.02935069240629673, + 0.03404924273490906, + 0.0008042264962568879, + 0.015926258638501167, + 0.013081194832921028, + 0.003113934537395835, + 0.006391860544681549, + -0.03218812867999077, + -0.00731097673997283, + 0.01763482391834259, + 0.012272677384316921, + 0.0275811068713665, + 0.0017953271744772792, + -0.012608288787305355, + -0.011059901677072048, + -0.0001961702510016039, + 0.005899885669350624, + 0.006307958159595728, + 0.0041074189357459545, + -0.007879226468503475, + 0.007604636251926422, + -0.01684156060218811, + 0.006658823695033789, + -0.026650549843907356, + 0.014881288632750511, + -0.008001266978681087, + 0.011456533335149288, + -0.0011078971438109875, + -0.0014806920662522316, + 0.013851573690772057, + -0.0026620039716362953, + 0.0006788491737097502, + -4.677814285969362e-5, + -0.00036469072801992297, + 0.008619096130132675, + -0.002812647493556142, + -0.024560609832406044, + -0.013599866069853306, + -0.009877637028694153, + -0.03591035678982735, + -0.0032855537720024586, + 0.002009851159527898, + -0.008931824006140232, + 0.014751621522009373, + 0.004210390150547028, + -0.001009692787192762, + -0.01137263048440218, + 0.003377083921805024, + 0.031150786206126213, + -0.001677100663073361, + -0.024301273748278618, + -0.008878432214260101, + 0.014904171228408813, + -0.014301597140729427, + -0.015880493447184563, + -0.0021528671495616436, + -0.021829959005117416, + 0.0012909575598314404, + 0.012532013468444347, + -0.0058846306055784225, + 0.009389475919306278, + -0.004694737959653139, + 0.006197358947247267, + 0.0027535343542695045, + -0.006243124138563871, + -0.012127754278481007, + 0.004587952513247728, + 0.026345450431108475, + 0.001600825460627675, + 0.008344505913555622, + 0.0182297695428133, + -0.015140624716877937, + 0.0012947713257744908, + 0.001374860294163227, + -0.004275224171578884, + -0.005758776795119047, + 0.004435402341187, + 0.010342915542423725, + -0.00999967660754919, + 0.004996024537831545, + -0.00037470186362043023, + -0.024758925661444664, + 0.00020868414139840752, + 0.010518347844481468, + -0.0196942538022995, + -0.009328455664217472, + 0.01752803847193718, + 0.007619891315698624, + 0.012409972958266735, + 0.012188774533569813, + 0.0006507227080874145, + 0.018733186647295952, + -0.0061744763515889645, + -0.010259012691676617, + -0.019877314567565918, + -0.004729061387479305, + 0.006391860544681549, + 0.007269025314599276, + 0.020960422232747078, + 0.004912122152745724, + 0.007002062164247036, + 0.01379055343568325, + -0.003916730638593435, + -0.014133792370557785, + 0.012776093557476997, + 0.004908308386802673, + -0.010777683928608894, + 0.01949593797326088, + -0.0005587157211266458, + 0.008504683151841164, + 0.004511677194386721, + 0.02115873619914055, + 0.0006273633916862309, + -0.01742125302553177, + -0.005846492946147919, + 0.007616077549755573, + -0.003857617499306798, + -0.011059901677072048, + -0.0037870630621910095, + -0.007261397782713175, + 0.00606006383895874, + -0.04143268242478371, + -0.021036695688962936, + 0.0003994912840425968, + 0.006948669441044331, + 0.007894481532275677, + -0.012295559979975224, + -0.0006612105062231421, + -0.014888916164636612, + -0.001368186203762889, + -0.0008047032169997692, + 0.0022768143098801374, + -0.02915237657725811, + 0.0021128226071596146, + -0.009801361709833145, + -0.017253447324037552, + -0.0015197830507531762, + 0.01216589193791151, + 0.03022022917866707, + -0.022287609055638313, + -0.011044647544622421, + -0.015140624716877937, + 0.00324932299554348, + -0.017405997961759567, + -0.007448271848261356, + 0.004572697449475527, + -0.00783346127718687, + -0.00406165374442935, + -0.010136972181499004, + -0.017192427068948746, + -0.011365002952516079, + 0.006491018459200859, + -0.0049197496846318245, + 0.009046236984431744, + -0.009481005370616913, + 0.025262342765927315, + 0.006090573500841856, + -0.006681706290692091, + -0.0167500302195549, + -0.00822246540337801, + 0.013454942964017391, + 0.00676942290738225, + 0.008413152769207954, + -0.0008700138423591852, + -0.0033732701558619738, + -0.007863971404731274, + 0.010907351970672607, + 0.016490695998072624, + -0.006929600611329079, + 0.009358965791761875, + 0.008352133445441723, + -0.010975999757647514, + -0.02068583108484745, + -0.005880816839635372, + -0.010876841843128204, + 0.025552187114953995, + 0.003855710616335273, + 0.012188774533569813, + -0.036581579595804214, + -0.008779274299740791, + 0.011830281466245651, + 0.00910725723952055, + -0.011853164061903954, + 0.00782583374530077, + 0.008298740722239017, + 0.0011221986496821046, + 0.01507197692990303, + 0.005503254942595959, + 0.00470617925748229, + 0.02835911512374878, + 0.019663743674755096, + 0.003722229041159153, + -0.0011488950112834573, + -0.018962010741233826, + 0.024652140215039253, + -0.015788963064551353, + 0.008535193279385567, + 0.004847288131713867, + -0.012005714699625969, + -0.00011137369438074529, + 0.006315585691481829, + 5.226042048889212e-5, + -0.015094859525561333, + 0.001187985995784402, + -0.0025361499283462763, + 0.0040082610212266445, + -0.010747173801064491, + -0.001596058253198862, + 0.009679321199655533, + -0.0221655685454607, + -0.036276478320360184, + 0.006777050439268351, + 0.024072449654340744, + 0.014057517051696777, + 0.006113456096500158, + 0.0010754801332950592, + 0.009435240179300308, + -0.022821536287665367, + 0.007978384383022785, + -0.019846804440021515, + 0.0012499595759436488, + -0.008008894510567188, + -0.00379087682813406, + -0.009725086390972137, + 0.017741609364748, + 0.014911798760294914, + 0.010175109840929508, + -0.03279833123087883, + -0.017482273280620575, + -0.008809784427285194, + 0.010998882353305817, + 0.0037660873495042324, + 0.015804218128323555, + 0.010426818393170834, + 0.021250266581773758, + 0.026848865672945976, + -0.0004526455595623702, + -0.03682566061615944, + -0.008199582807719707, + -0.01703987643122673, + 0.003316063666716218, + 0.0008480847463943064, + -0.004385823383927345, + 0.0015255036996677518, + -0.02893880568444729, + -0.011220079846680164, + 0.013576983474195004, + 0.002928967121988535, + -0.0006941041792742908, + -0.02157062292098999, + -0.005827424116432667, + -0.017680589109659195, + 0.03880881518125534, + -0.012097245082259178, + -0.002128077670931816, + 0.00891656894236803, + -0.017894158139824867, + -0.019938334822654724, + 0.017802627757191658, + 0.008756391704082489, + -0.022089295089244843, + 0.014515168033540249, + -0.0028469713870435953, + 0.020640065893530846, + 0.01388208381831646, + -0.020365474745631218, + -0.028801510110497475, + 0.003096772590652108, + 0.006464322097599506, + 0.015804218128323555, + 0.007978384383022785, + 0.009778479114174843, + -0.014362617395818233, + -0.0004800569440703839, + 0.02570473775267601, + -0.007230887655168772, + 0.02935069240629673, + 0.021494347602128983, + -0.004240900278091431, + -0.007761000189930201, + -0.00847417302429676, + -0.009023354388773441, + 0.010892096906900406, + 0.003939613234251738, + -0.008481800556182861, + -0.01161671057343483, + -0.007143171038478613, + -0.014599070884287357, + 0.004340058192610741, + -0.00999967660754919, + -0.005800727754831314, + 0.006685520056635141, + 0.007719048764556646, + 0.004854915663599968, + 0.03386618196964264, + 0.0010440166806802154, + -0.02404193952679634, + 0.0002650562673807144, + -0.014667718671262264, + 0.001662799040786922, + -0.004812964238226414, + 0.01053360290825367, + -0.011220079846680164, + -0.005655805114656687, + -0.015201644971966743, + -0.02581152319908142, + -0.017939923331141472, + 0.018733186647295952, + -0.0005291590932756662, + 0.003220719750970602, + 0.004793895408511162, + 0.02265373058617115, + -0.0027687891852110624, + 0.03012869879603386, + 0.008291113190352917, + -0.009236925281584263, + -0.005278242751955986, + 0.005751149263232946, + -0.02355377748608589, + 0.0037584598176181316, + 0.007364369463175535, + 0.006121083628386259, + 0.003199744038283825, + -0.01604829914867878, + -0.015460980124771595, + -0.01682630553841591, + 0.0051409476436674595, + -0.008939451538026333, + -0.006468135863542557, + -0.003491496667265892, + -0.0017142848810181022, + -0.013378667645156384, + -0.007520733401179314, + 0.009389475919306278, + 0.002988080494105816, + 8.896785584511235e-5, + 0.006189731415361166, + 0.013760043308138847, + -0.008092797361314297, + -0.012150636874139309, + -0.005339263007044792, + 0.014240577816963196, + -0.02687937580049038, + 0.007166053634136915, + -0.00135388458147645, + 0.013668513856828213, + 0.022104548290371895, + 0.001382487709634006, + -0.010144599713385105, + 0.0013529311399906874, + -0.017314467579126358, + -0.006807560566812754, + 0.005545205902308226, + -0.018748441711068153, + 0.009503887966275215, + 0.013615121133625507, + 0.02157062292098999, + 6.54893956379965e-5, + 0.006632127333432436, + 0.007246142718940973, + -0.01586523838341236, + 0.013859201222658157, + 0.0016494509764015675, + -0.013683768920600414, + 0.007886854000389576, + -0.013668513856828213, + 0.012181147001683712, + 0.009053864516317844, + 0.008588586002588272, + -0.013622748665511608, + -0.0028774815145879984, + -0.018962010741233826, + 0.016887325793504715, + -0.032462719827890396, + 0.03755790367722511, + 0.020334964618086815, + 0.010304777882993221, + 0.005987602286040783, + 0.00941235851496458, + 0.024545354768633842, + 0.03597137704491615, + -0.01127347256988287, + 0.0014034634223207831, + 0.015392332337796688, + -0.013485453091561794, + 0.014362617395818233, + -0.03414077311754227, + 0.010907351970672607, + 0.00974796898663044, + 0.013706651516258717, + -0.0013519776985049248, + 0.006849511992186308, + -0.0038538037333637476, + -0.0008047032169997692, + -0.03113553114235401, + -0.020167158916592598, + -0.012524385936558247, + 0.012135381810367107, + -0.01507197692990303, + 0.009191160090267658, + 0.0022863487247377634, + -0.0015436190878972411, + 0.0037584598176181316, + -0.0006407115724869072, + -0.001306212623603642, + -0.0012680749641731381, + 0.003306529251858592, + -0.02067057602107525, + -0.0013986962148919702, + 0.000523915165103972, + 0.003510565496981144, + -0.002273000543937087, + 0.0021910048089921474, + 0.009442867711186409, + -0.006182103883475065, + -0.02985410764813423, + 0.005892258137464523, + 0.03218812867999077, + -0.016872070729732513, + -0.010373425669968128, + -0.008008894510567188, + -0.007539802230894566, + -0.016200849786400795, + -0.010121717117726803, + 0.006456694565713406, + 0.0019850616808980703, + -0.01723819226026535, + 0.00866486132144928, + -0.030677881091833115, + -0.006147779989987612, + 0.0002807880227919668, + -0.005724452901631594, + -0.004404892213642597, + 0.012104872614145279, + 0.01763482391834259, + 0.01039630826562643, + 0.019023030996322632, + 0.012646426446735859, + -0.026513254269957542, + 0.014843150973320007, + -6.602570647373796e-5, + -0.0008819318609312177, + -0.015338940545916557, + -0.0016799609875306487, + 0.018977265805006027, + 0.0077533726580441, + 0.017970433458685875, + 0.0037088808603584766, + 0.018397575244307518, + -0.026055604219436646, + 0.01039630826562643, + -0.004790081642568111, + 0.012028597295284271, + 1.792168950487394e-5, + 0.0012308908626437187, + -0.01172349601984024, + 0.02797773852944374, + -0.008779274299740791, + -0.005182899069041014, + -0.017741609364748, + -0.011967577040195465, + 0.0005515649681910872, + 0.00257428758777678, + 0.012417600490152836, + -0.014194812625646591, + 0.02224184386432171, + -0.006479577161371708, + 0.012371835298836231, + -0.005129506345838308, + 0.002293976256623864, + -0.021906234323978424, + 0.009564908221364021, + -0.018260279670357704, + -0.006921973079442978, + 0.022180823609232903, + -0.014835523441433907, + -0.0017924668500199914, + 0.0019774341490119696, + 0.0142787154763937, + 0.015201644971966743, + -0.003846176201477647, + 0.002419830299913883, + -0.007505478337407112, + -0.0001981962996069342, + -0.01019799243658781, + -0.02057904563844204, + -0.003268391825258732, + 0.02344699203968048, + -0.007284280378371477, + 0.011548063717782497, + -0.014416010119020939, + 0.012867623940110207, + -0.004793895408511162, + 0.0013433967251330614, + 0.007646587677299976, + 0.020945167168974876, + -0.00037327170139178634, + 0.004965514875948429, + -0.018000943586230278, + 0.0059837885200977325, + 0.012280304916203022, + 0.05388079211115837, + 0.00876401923596859, + 0.010373425669968128, + -0.0088631771504879, + -0.007642773911356926, + -0.00975559651851654, + 0.014354989863932133, + 0.008207210339605808, + -0.019953588023781776, + -0.010114089585840702, + 2.8200962333357893e-5, + -0.009153022430837154, + 0.004340058192610741, + 0.007444458082318306, + 0.003365642623975873, + 0.009625928476452827, + -0.004946446046233177, + -0.012326070107519627, + 0.0010983627289533615, + 0.030769409611821175, + -0.005815982818603516, + -0.010991254821419716, + 0.002555218758061528, + -0.016689011827111244, + 0.012753210961818695, + 0.015460980124771595, + -0.0035353549756109715, + -0.03270680084824562, + -0.0005229617236182094, + -0.0035086586140096188, + -0.004793895408511162, + 0.005575716029852629, + -0.014835523441433907, + -0.012143009342253208, + -0.0017943737329915166, + 0.024774180725216866, + 0.004946446046233177, + 0.009267435409128666, + -0.007253770250827074, + -0.004744316451251507, + -0.02305036224424839, + -0.006651196163147688, + 0.015384704805910587, + 0.008840294554829597, + -0.021204501390457153, + -0.00931320060044527, + 0.008733509108424187, + 0.019633233547210693, + -0.02492673136293888, + 0.011052274145185947, + 0.019923079758882523, + 0.003165420377627015, + 0.0045993938110768795, + -0.010083579458296299, + 0.025735247880220413, + -0.02520132251083851, + 0.0027039553970098495, + -0.011258217506110668, + -0.010716663673520088, + -6.596611638087779e-5, + 0.005671060178428888, + -0.007818206213414669, + 0.013767670840024948, + 0.009183532558381557, + -0.003327504964545369, + 0.001187985995784402, + 3.852492955047637e-5, + -0.012982036918401718, + -0.0009348477469757199, + -0.0054155383259058, + -0.006037181243300438, + -0.004732875153422356, + 0.0058846306055784225, + -0.014492285437881947, + -0.008954706601798534, + 0.002564753172919154, + -0.007562684826552868, + -0.013508335687220097, + -0.033347513526678085, + -0.012127754278481007, + -0.001213728915899992, + -0.0007556010968983173, + -0.011738751083612442, + 0.007276652846485376, + -0.00487779825925827, + -0.017192427068948746, + 0.0018363251583650708, + 0.003260764293372631, + -0.029793087393045425, + 0.03487301617860794, + -0.00293087400496006, + -0.0033122499007731676, + -0.004187507554888725, + 0.01841283030807972, + -0.007272839080542326, + 0.01462958101183176, + -0.02039598487317562, + 0.005179085303097963, + 0.010182737372815609, + 0.014370244927704334, + -0.002679165918380022, + 0.00032536135404370725, + -0.00279357866384089, + -0.010251385159790516, + 0.0067732366733253, + -0.021402817219495773, + -0.00832162331789732, + -0.016231359913945198, + -0.008809784427285194, + 0.01172349601984024, + -0.015819473192095757, + 0.0035143792629241943, + -0.023126637563109398, + 0.024896221235394478, + 0.009282690472900867, + 0.004950259812176228, + 0.017604313790798187, + 0.001011599670164287, + 0.01703987643122673, + 0.008794529363512993, + 0.011708240956068039, + 0.02048751525580883, + 0.014515168033540249, + -0.010869214311242104, + 0.011067529208958149, + 0.014004124328494072, + 0.005796913988888264, + 0.02195199951529503, + -0.0004788651713170111, + -0.007902109064161777, + -0.00802414957433939, + -0.007848716340959072, + 0.027153966948390007, + 0.005076113622635603, + -0.011761633679270744, + -0.015110114589333534, + 0.016566971316933632, + -0.00921404268592596, + 0.010159854777157307, + 0.0011813119053840637, + -0.003773714881390333, + 0.03288986161351204, + 0.014850778505206108, + -0.002873667748644948, + 0.017970433458685875, + 0.004191321320831776, + -0.007234701421111822, + 0.013027802109718323, + -0.005102809984236956, + -0.005179085303097963, + -0.015224527567625046, + 0.007604636251926422, + 0.0030719831120222807, + -0.01754329353570938, + 0.001933575957082212, + 0.020121393725275993, + -0.00032536135404370725, + -0.010045441798865795, + -0.00945049524307251, + -0.0007208005408756435, + 0.0015760360984131694, + -0.01246336568146944, + -0.0015302709070965648, + 0.019267112016677856, + 0.005373586900532246, + 0.0015550603857263923, + -0.009732713922858238, + 0.0051409476436674595, + 0.0063232132233679295, + -0.0035467962734401226, + -0.015049094334244728, + -0.024774180725216866, + -0.002997614908963442, + -0.0017857927596196532, + 0.012509130872786045, + 0.014202440157532692, + 0.0081233074888587, + 0.0017724446952342987, + 0.0017486086580902338, + -0.0011498484527692199, + 0.00043333839857950807, + 0.03655106946825981, + 0.014858406037092209, + 0.008146190084517002, + 0.0162618700414896, + 0.015300802886486053, + -0.010175109840929508, + -0.0008056566584855318, + 0.004755757749080658, + 0.011845536530017853, + 0.014133792370557785, + 0.01452279556542635, + -0.016490695998072624, + -0.002700141631066799, + -0.018336554989218712, + 0.010655643418431282, + 0.00586174800992012, + -0.014042261987924576, + -0.015529627911746502, + 0.0003649290883913636, + 0.03173047676682472, + 0.021982509642839432, + -0.0057130116038024426, + 0.007219446357339621 + ], + "739e7a32-21db-4a05-9e76-acd0271cc3d4": [ + -0.040924400091171265, + -0.03442126139998436, + -0.007247974630445242, + 0.021278873085975647, + -0.04449356347322464, + -0.026224283501505852, + 0.0053877742029726505, + 0.010843604803085327, + -0.012151794508099556, + 0.05151090398430824, + 0.0017675680574029684, + 0.017271125689148903, + 0.011312436312437057, + -0.004669404588639736, + -0.011720772832632065, + 0.028523067012429237, + -0.021036896854639053, + 0.026254530996084213, + -0.0034009143710136414, + 0.00985301099717617, + 0.07186724245548248, + -0.01586463302373886, + -0.049363356083631516, + 0.008741428144276142, + 0.025483228266239166, + -0.03284841030836105, + -0.004847106523811817, + -0.006854761391878128, + -0.045128755271434784, + 0.002712791785597801, + -0.018496135249733925, + 0.028689425438642502, + 0.00833309069275856, + -0.0032175411470234394, + 0.012665996327996254, + -0.026042800396680832, + -0.014737926423549652, + 0.014390083961188793, + -0.017256001010537148, + -0.028613807633519173, + -0.029143134132027626, + 0.03832314535975456, + -0.0037033860571682453, + -0.012635748833417892, + -0.03254593908786774, + 0.025513475760817528, + -0.026965338736772537, + -0.0017987604951485991, + -0.0030360580421984196, + -0.005221415311098099, + 0.03717375174164772, + 0.03257618471980095, + -0.02115788497030735, + 0.00695684552192688, + 0.02887090854346752, + -0.004310219548642635, + -0.0013771908124908805, + 0.07991298288106918, + 0.03732498735189438, + -0.0539911724627018, + -0.011788828298449516, + -0.0342700257897377, + -0.013233129866421223, + 0.01342217531055212, + -0.021823322400450706, + -0.029838817194104195, + -0.015501666814088821, + 0.004329123999923468, + -0.021732579916715622, + 0.016363710165023804, + -0.011819075793027878, + -0.013543163426220417, + -0.044221341609954834, + 0.021717457100749016, + 0.007009778171777725, + -0.013959062285721302, + 0.0630955621600151, + 0.0024897188413888216, + -0.0018034866079688072, + 0.0054671731777489185, + -0.01079823449254036, + -0.005266785621643066, + 0.0008412490133196115, + 0.01949429139494896, + 0.052448567003011703, + 0.012688681483268738, + -0.04782075062394142, + -0.04685284197330475, + -0.025770576670765877, + -0.021611591801047325, + -0.004918943624943495, + 0.024515319615602493, + 0.006242256611585617, + 0.015093330293893814, + -0.011418300680816174, + 0.010669684037566185, + 0.03602436184883118, + 0.0024122106842696667, + -0.0031324708834290504, + -0.04410035163164139, + 0.005883071571588516, + 0.01565290242433548, + -0.028780167922377586, + -0.00661278422921896, + -0.03112432174384594, + 0.0035918497014790773, + 0.011743457987904549, + 0.020159728825092316, + -0.015531914308667183, + 0.03384656459093094, + -0.02720731496810913, + -0.03829289600253105, + 0.03369532898068428, + 0.002013326156884432, + -0.05628995597362518, + -0.04470529407262802, + -0.018541505560278893, + -0.0053877742029726505, + -0.010851167142391205, + -0.018193664029240608, + 0.05332573503255844, + -0.0033234062138944864, + 0.014163230545818806, + 0.03439101576805115, + -0.0002399686345597729, + 0.03632683306932449, + 0.010042055509984493, + 0.016363710165023804, + 0.026027675718069077, + 0.015501666814088821, + -0.006828295066952705, + -0.001091733225621283, + 0.03127555921673775, + -0.014518634416162968, + -0.004306438844650984, + 0.01832977496087551, + 0.021641839295625687, + 0.07150427252054214, + -0.028644055128097534, + 0.022987836971879005, + -0.028523067012429237, + -0.032485444098711014, + -0.009573224000632763, + -0.00617798138409853, + 0.0016475246520712972, + 0.0042081354185938835, + -0.0459454283118248, + 0.07767469435930252, + -0.06243012845516205, + 0.02634527161717415, + -0.022261906415224075, + 0.015184071846306324, + -0.016076363623142242, + -0.015418486669659615, + 0.01659056358039379, + 0.005096645560115576, + -0.025422733277082443, + 0.03805091977119446, + 0.01007230207324028, + 0.04540098085999489, + -0.014881599694490433, + -0.06581781059503555, + 0.0037128382828086615, + 0.012204727157950401, + 0.030852098017930984, + 0.012484513223171234, + 0.007319811265915632, + 0.022745860740542412, + -0.006007841322571039, + 0.02372889220714569, + 0.03006567247211933, + -0.011093144305050373, + 0.02224678173661232, + -0.011788828298449516, + 0.023607904091477394, + -0.00947492104023695, + 0.03354409337043762, + 0.020825166255235672, + 0.04785099998116493, + -0.035237934440374374, + -0.018859101459383965, + 0.011244379915297031, + 0.015789015218615532, + -0.00862043909728527, + -0.004427427425980568, + -7.403020845231367e-6, + 0.021762827411293983, + -0.02598230540752411, + 0.015547037124633789, + -0.0019755172543227673, + 0.004238382447510958, + -0.04355590417981148, + 0.011055335402488708, + 0.0056902458891272545, + -0.039714515209198, + -0.021384738385677338, + 0.009278315119445324, + -0.03771820291876793, + 0.009096832014620304, + 0.023199567571282387, + -0.028795290738344193, + -0.0392003133893013, + -0.03318112716078758, + 0.02546810358762741, + -0.028961651027202606, + 0.030095918104052544, + -0.013505354523658752, + 0.0006574030267074704, + 0.0521763414144516, + -0.017346743494272232, + 0.0705968588590622, + -0.05792330205440521, + 0.032878655940294266, + -0.005792330019176006, + -0.03039839118719101, + 0.00521763414144516, + 0.003710947697982192, + 0.04210403934121132, + 0.02087053656578064, + -0.009180011227726936, + -0.0025691178161650896, + -0.02946072816848755, + -0.020643683150410652, + 0.006117486860603094, + -0.030564749613404274, + -0.020991524681448936, + -0.028281088918447495, + 0.03605460748076439, + -0.009316124022006989, + -0.018435640260577202, + 0.03590337187051773, + -0.006885008420795202, + 0.03656880930066109, + -0.02865917980670929, + 0.0007344387122429907, + 0.037113260477781296, + -0.01094190776348114, + 0.020008493214845657, + 0.01478329673409462, + -0.020915906876325607, + -0.008234787732362747, + 0.024969026446342468, + -0.040016986429691315, + 0.0026277215220034122, + -0.0167418010532856, + 0.019993368536233902, + 0.0059927175752818584, + 0.052841778844594955, + 0.00811379961669445, + -0.018556630238890648, + -0.001971736317500472, + 0.009096832014620304, + 0.003701495472341776, + -0.0060267457738518715, + -0.02463630773127079, + 0.057620830833911896, + 0.04633864015340805, + -0.033029891550540924, + -0.009127078577876091, + 0.006692183203995228, + 0.022745860740542412, + 0.004918943624943495, + 0.008302844129502773, + 0.013278501108288765, + 0.03242494910955429, + -0.030443761497735977, + 0.016651058569550514, + -0.005073960404843092, + 0.010677245445549488, + 0.043858375400304794, + 0.0034916559234261513, + -0.016605688259005547, + -0.010767986997961998, + 0.00539911724627018, + 0.0031627181451767683, + -0.02474217303097248, + 0.010457953438162804, + -0.0007826451328583062, + -0.010465515777468681, + -0.002032230608165264, + -0.030852098017930984, + -0.031971242278814316, + 0.010957031510770321, + 0.010094988159835339, + 0.005588161759078503, + 0.0167418010532856, + -0.027237562462687492, + 0.0011560084531083703, + -0.029763199388980865, + 0.005474735051393509, + 0.005444488022476435, + -0.016575440764427185, + 0.022261906415224075, + 0.029354862868785858, + 0.015289937146008015, + 0.009346370585262775, + -0.026073047891259193, + 0.005391555372625589, + 0.006854761391878128, + 0.0019585031550377607, + -0.035268183797597885, + 0.009134640917181969, + 0.004143860191106796, + -0.028311336413025856, + -0.007070272229611874, + -0.023275185376405716, + 0.04585468769073486, + 0.04742753878235817, + -0.035631150007247925, + 0.03932129964232445, + 0.05535229295492172, + 0.0027921905275434256, + -0.05335598066449165, + -0.00976226944476366, + -0.0167418010532856, + 0.002238289453089237, + -0.01079823449254036, + 0.03014129027724266, + -0.01313482690602541, + -0.03182000666856766, + -0.023607904091477394, + 0.008832168765366077, + -0.06563632935285568, + 0.030232030898332596, + 0.03554040566086769, + -0.04207379370927811, + 0.014995027333498001, + -0.010866289958357811, + -0.01572852022945881, + -0.02416747622191906, + 0.0014244519406929612, + -0.020084111019968987, + -0.00575074041262269, + -0.025316867977380753, + -0.018707865849137306, + -0.02177795208990574, + -0.054656609892845154, + -0.022851726040244102, + -0.035086698830127716, + -0.0032345550134778023, + -0.03620584309101105, + -0.0045635392889380455, + 0.004400961101055145, + -0.00469965161755681, + -0.01970602199435234, + -0.01615198142826557, + 0.00512689258903265, + 0.011924941092729568, + 0.030383266508579254, + -0.009353932924568653, + 0.0009083598852157593, + -0.014677431434392929, + 0.008612877689301968, + -0.009270752780139446, + 0.03590337187051773, + -0.021944310516119003, + -0.02938511036336422, + -0.0041287364438176155, + 0.03980525583028793, + -0.0036202063784003258, + 0.00018869026098400354, + -0.06185543164610863, + -0.018677618354558945, + -0.035056453198194504, + 0.0037846751511096954, + 0.02691996842622757, + -0.019766515120863914, + -0.03514719381928444, + -0.02380451001226902, + 0.01184932328760624, + -0.026390641927719116, + -0.013399489223957062, + -0.0018715426558628678, + -0.0004782831238117069, + -0.0060267457738518715, + -0.04999854788184166, + 0.03221321851015091, + -0.00016848610539454967, + -0.03720400109887123, + 0.02260974794626236, + -0.018360022455453873, + 0.031215064227581024, + 0.018813731148838997, + -0.018344899639487267, + 0.028129853308200836, + 0.0072517553344368935, + 0.031003333628177643, + -0.012204727157950401, + -0.012121547013521194, + 0.007297126110643148, + -0.030700862407684326, + -0.007100519724190235, + -0.018541505560278893, + 0.024076735600829124, + 0.004499264061450958, + 0.0045106071047484875, + 0.004695870913565159, + -0.011509042233228683, + 0.029324617236852646, + -0.00505505595356226, + -0.0015596188604831696, + -0.011425863020122051, + -0.027585405856370926, + 0.017044272273778915, + -0.011985435150563717, + -0.026073047891259193, + -0.0068056099116802216, + -0.0036523439921438694, + 0.01764921471476555, + -0.0038432790897786617, + 0.01786094531416893, + -0.0064691100269556046, + 0.0193430557847023, + 0.018314652144908905, + 0.025921812281012535, + 0.028976773843169212, + 0.012764299288392067, + 0.06091776862740517, + -0.02076467126607895, + -0.006888789590448141, + 0.019827010110020638, + 0.01659056358039379, + -0.0060267457738518715, + 0.021868692710995674, + -0.03230396285653114, + 0.03061011992394924, + 0.015501666814088821, + 0.024001117795705795, + -0.018239034339785576, + -0.019872380420565605, + 0.014306903816759586, + 0.017089642584323883, + -0.031184816733002663, + -0.0182995293289423, + -0.01858687587082386, + -0.03272742033004761, + 0.025044644251465797, + -0.028780167922377586, + -0.00820454116910696, + -0.04071266949176788, + -0.017225755378603935, + 0.023713769391179085, + -0.013195320963859558, + -0.01666618138551712, + -0.028205471113324165, + -0.01572852022945881, + -0.025770576670765877, + 0.009391741827130318, + 0.015138700604438782, + 0.01648470014333725, + 0.011380491778254509, + 0.06466841697692871, + -0.0558059997856617, + 0.0025823507457971573, + -0.017119890078902245, + -0.020915906876325607, + 0.03829289600253105, + -0.01443545427173376, + 0.017558474093675613, + -0.054686855524778366, + -0.019554786384105682, + 0.006136391311883926, + 0.03980525583028793, + -0.020991524681448936, + 0.012106423266232014, + -0.03575213626027107, + 0.02227702923119068, + -0.001055814791470766, + 0.00678292429074645, + 0.01814829371869564, + -0.02676873281598091, + -0.01609148643910885, + -0.039865750819444656, + -0.0007840629550628364, + 0.017739955335855484, + -0.005871728993952274, + -0.019917750731110573, + 0.013384366407990456, + 0.0013866430381312966, + -0.008212102577090263, + -0.04791149124503136, + 0.001905570738017559, + 0.007739490829408169, + 0.03992624580860138, + -0.0020360115449875593, + -0.010026931762695312, + -0.01970602199435234, + -0.029914436861872673, + -0.03239470347762108, + 0.010412583127617836, + 0.02022022381424904, + 0.001794034382328391, + -0.008045743219554424, + 0.030670614913105965, + 0.0012618735199794173, + 0.007036244496703148, + 0.011380491778254509, + -0.03717375174164772, + 0.00022283646103460342, + 0.003693933831527829, + 0.01724087819457054, + -0.02663262002170086, + 0.0058414819650352, + -0.015531914308667183, + -0.002710901200771332, + 0.04107563570141792, + -0.006442644167691469, + 0.02279123105108738, + 0.01011011190712452, + -0.023623026907444, + -0.03814166039228439, + 0.004639157559722662, + -0.040379952639341354, + 0.017482856288552284, + -0.010866289958357811, + 0.026042800396680832, + 0.0034897655714303255, + -0.005754521116614342, + 0.03541941940784454, + 0.015970498323440552, + -0.018208786845207214, + 0.0182995293289423, + -0.013165074400603771, + 0.011607345193624496, + -0.015131139196455479, + 0.007796204183250666, + -0.03263667970895767, + -0.014405207708477974, + 0.018360022455453873, + -0.009134640917181969, + -0.014193477109074593, + -0.0011541179846972227, + 0.002941535785794258, + 0.02416747622191906, + 0.031245311722159386, + 0.024258218705654144, + -0.02380451001226902, + 0.025407610461115837, + 0.001734485267661512, + 0.009558101184666157, + -0.003977500833570957, + 0.032152727246284485, + 0.0169989001005888, + -0.010548694990575314, + -0.027524910867214203, + 0.027449293062090874, + 0.00379034667275846, + 0.0030133728869259357, + 0.000927736924495548, + 0.021898940205574036, + -0.026693113148212433, + 0.03130580484867096, + -0.016182227060198784, + 0.009860572405159473, + 0.016318339854478836, + -0.05692514404654503, + -0.0011522275162860751, + -0.008393585681915283, + 0.010926784947514534, + -0.04394911602139473, + -0.019191820174455643, + 0.015100891701877117, + -0.0003967575903516263, + -0.0011144186137244105, + -0.028825538232922554, + -0.006960626691579819, + -0.051359668374061584, + 0.03823240473866463, + 0.0008743318030610681, + 0.020310964435338974, + 0.005107988137751818, + -0.004631595686078072, + 0.0295968409627676, + 0.00599649827927351, + 0.02032608725130558, + -0.005694027058780193, + 0.009467359632253647, + -0.026889720931649208, + -0.03457249701023102, + 0.0016257845563814044, + 0.012023244053125381, + -0.017694585025310516, + 0.02738879807293415, + -0.04452381283044815, + 0.016530070453882217, + 0.0015879756538197398, + -0.00802305806428194, + -0.01941867358982563, + -0.0014622608432546258, + 0.03278791531920433, + -0.009618595242500305, + 0.0311545692384243, + -0.011622468940913677, + 0.002512404229491949, + -0.028311336413025856, + 0.027237562462687492, + 0.005856605246663094, + 0.002769505139440298, + -0.017119890078902245, + 0.008688495494425297, + 0.015592408366501331, + 0.02489340864121914, + -0.015357992611825466, + -0.011448548175394535, + -0.03684103488922119, + 0.020643683150410652, + -0.010752863250672817, + 0.011713210493326187, + -0.005107988137751818, + 0.013671713881194592, + 0.014700117520987988, + -0.010745301842689514, + 0.03584287688136101, + -0.01640908233821392, + 0.03847438097000122, + 0.0008336871978826821, + 0.02043195255100727, + 0.03402804955840111, + 0.023305432870984077, + -0.014677431434392929, + 0.038202155381441116, + -0.018526382744312286, + 0.065938800573349, + -0.02528662048280239, + 0.030095918104052544, + 0.04189230874180794, + -0.05616896599531174, + 0.011690525338053703, + -0.01996312290430069, + 0.0073009068146348, + 0.0011720772599801421, + 0.002612598007544875, + -0.011955187655985355, + -0.01944892108440399, + 0.019615279510617256, + -0.007678996305912733, + 0.006453986745327711, + 0.012839917093515396, + -0.015350431203842163, + -0.01789119280874729, + -0.017543349415063858, + -0.012923097237944603, + 0.018420517444610596, + 0.038928087800741196, + -0.017664337530732155, + 0.015085767954587936, + 0.008401147089898586, + 0.02746441587805748, + 0.02539248578250408, + 0.01627296954393387, + -0.02790299989283085, + 0.008106237277388573, + -0.000598799146246165, + 0.020114358514547348, + 0.008915348909795284, + -0.0307613555341959, + -0.017981933429837227, + 0.02977832406759262, + -0.015032836236059666, + -0.023169320076704025, + 0.00965640414506197, + -0.019978245720267296, + 0.018465887755155563, + 0.022519007325172424, + 0.04527999088168144, + 0.02177795208990574, + -0.005028589628636837, + 0.0032931589521467686, + 0.013490230776369572, + 0.04316268861293793, + 0.007376524619758129, + -0.00851457379758358, + 0.015879755839705467, + 0.015010150149464607, + 0.010510886088013649, + -0.011743457987904549, + 0.03188050165772438, + 0.009376618079841137, + 0.01070749294012785, + 0.007157233078032732, + -0.00278084771707654, + -0.03741573169827461, + -0.011244379915297031, + 0.00575074041262269, + -0.014480825513601303, + -0.018133169040083885, + -0.0039850627072155476, + 0.029354862868785858, + -0.040591683238744736, + -0.043495409190654755, + 0.005436926148831844, + 0.024394329637289047, + -0.009346370585262775, + 0.014722802676260471, + -0.011312436312437057, + 0.009497606195509434, + -0.0056902458891272545, + 0.0025048425886780024, + 0.018072674050927162, + -0.00043243978871032596, + -0.02598230540752411, + 0.024258218705654144, + 0.00019518866611178964, + -0.028054235503077507, + 0.006900132168084383, + 0.01420103944838047, + -0.018314652144908905, + -0.0031249092426151037, + -0.0127189289778471, + -0.007312249857932329, + 0.011478795669972897, + 0.005799891892820597, + -0.007667653728276491, + 0.01121413242071867, + 0.01063187513500452, + 0.013119703158736229, + -0.028901156038045883, + 0.015410925261676311, + -0.008151608519256115, + 0.008612877689301968, + -0.025347115471959114, + 0.026073047891259193, + -0.012499636970460415, + -0.03481447324156761, + -0.012832355685532093, + 0.039865750819444656, + -0.008106237277388573, + -0.0038432790897786617, + 0.002877260558307171, + 0.0019849694799631834, + 0.05151090398430824, + 0.0013781359884887934, + -0.0072857835330069065, + 0.0010520338546484709, + 0.007478609215468168, + -0.02956659346818924, + -0.0018942280439659953, + -7.60904949856922e-5, + 0.024802666157484055, + 0.004461455158889294, + -0.00035894865868613124, + -0.008227226324379444, + -0.00044685445027425885, + -0.04760902002453804, + 0.023123949766159058, + 0.0036580152809619904, + 0.013694399036467075, + 0.011962749995291233, + 0.012197164818644524, + 0.024590937420725822, + 0.01097971759736538, + -0.040591683238744736, + 0.0028848224319517612, + -0.005183605942875147, + -0.0041741072200238705, + 0.011660277843475342, + 0.011115829460322857, + -0.0044312081299722195, + -0.008922910317778587, + 0.013112141750752926, + -0.01640908233821392, + 0.02645113691687584, + -0.04524974524974823, + -0.025211002677679062, + 0.003315844340249896, + 0.023350803181529045, + 0.025997430086135864, + 0.012333277612924576, + 0.01648470014333725, + -0.016439327970147133, + 0.034149035811424255, + 0.012817231938242912, + -0.010336965322494507, + 0.013921253383159637, + -0.007622282952070236, + -0.049363356083631516, + -0.005709150340408087, + -0.0026466259732842445, + -0.005784768145531416, + -0.014669870026409626, + -0.018647370859980583, + -0.05151090398430824, + 0.023456668481230736, + -0.020552942529320717, + 0.009323685429990292, + -0.025014396756887436, + 0.020205099135637283, + 0.03520768880844116, + -0.002179685514420271, + -0.015819262713193893, + 0.00985301099717617, + -0.004302657674998045, + -0.01505552139133215, + -0.002826218493282795, + 0.032485444098711014, + 0.0048546683974564075, + 0.03272742033004761, + -0.001329929567873478, + -0.019539661705493927, + 0.02619403600692749, + 0.0003123963833786547, + -0.034330520778894424, + 0.028175225481390953, + 0.03665954992175102, + -0.028855785727500916, + -0.044039856642484665, + 0.017150137573480606, + -0.014238848350942135, + -0.0352984294295311, + 0.004710994195193052, + -0.01705939508974552, + -0.005849043373018503, + -0.0007363291806541383, + 0.006971969269216061, + -0.013270938768982887, + 0.002370620844885707, + 0.0033328584395349026, + 0.0015785234281793237, + 0.03541941940784454, + 0.017739955335855484, + -0.009013651870191097, + 0.0007542883977293968, + 0.017074517905712128, + -0.005281909368932247, + 0.011070458218455315, + -0.02471192553639412, + 0.0019027350936084986, + -0.017044272273778915, + 0.020099233835935593, + -0.0024783762637525797, + -0.013898567296564579, + -0.027116574347019196, + -0.01767946220934391, + 0.03061011992394924, + -0.016711553558707237, + 0.01898008957505226, + -0.030776480212807655, + 0.0074634854681789875, + -0.041468847543001175, + 0.010510886088013649, + -0.009081708267331123, + -0.022261906415224075, + -0.013686837628483772, + -0.014049802906811237, + 0.013180197216570377, + -0.016787171363830566, + -0.00019589759176597, + -0.003635329892858863, + 0.03575213626027107, + 0.022730736061930656, + 0.02738879807293415, + -0.0077735185623168945, + 0.012303030118346214, + 0.04727630317211151, + -0.020552942529320717, + 0.010805795900523663, + -0.013558287173509598, + 0.030277401208877563, + -0.005100426264107227, + 0.002122972160577774, + 0.01141073927283287, + -0.012219850905239582, + -0.023169320076704025, + 0.0073387157171964645, + -0.003198636695742607, + -0.01150148082524538, + -0.010117673315107822, + -0.010662121698260307, + 0.0033876814413815737, + 0.03408854454755783, + 0.008582630194723606, + -0.01340705156326294, + 0.034542251378297806, + 0.005694027058780193, + -0.02905239164829254, + -0.004850887227803469, + 8.814210013952106e-5, + -0.013906129635870457, + -0.049938052892684937, + -0.0016371272504329681, + -0.015773890540003777, + -0.006960626691579819, + -0.011841760948300362, + -0.010117673315107822, + -0.012976028956472874, + 0.023925499990582466, + 0.04963558167219162, + -0.02406161092221737, + -0.023411298170685768, + 0.01822391152381897, + 0.006722430232912302, + 0.01861712336540222, + -0.02094615437090397, + -0.04016822203993797, + -0.02909776195883751, + 0.0035975209902971983, + -0.009429550729691982, + -0.025604216381907463, + -0.012393771670758724, + -0.003542697988450527, + 0.015297498553991318, + -0.036145348101854324, + -0.023819634690880775, + -0.0017571706557646394, + 0.02502952143549919, + -0.026753608137369156, + 0.0104503920301795, + 0.011584660038352013, + 0.02040170505642891, + 0.004034214187413454, + 0.008779237046837807, + 0.023244937881827354, + 0.01586463302373886, + -0.022261906415224075, + 0.05910294130444527, + 0.0020152167417109013, + 0.018828853964805603, + -0.022730736061930656, + -0.008559945039451122, + -0.04304170235991478, + -0.00011283606727374718, + 0.012038367800414562, + 0.011561974883079529, + 0.015985621139407158, + -0.021672086790204048, + -0.005985155701637268, + -0.020129481330513954, + 0.007788642309606075, + -0.0020700397435575724, + 0.02014460414648056, + -0.00022366353368852288, + 0.003087100340053439, + 0.016439327970147133, + -0.02289709635078907, + -0.003701495472341776, + -0.012386210262775421, + -0.013270938768982887, + -0.01418591570109129, + -0.026708237826824188, + -0.010510886088013649, + -0.006900132168084383, + -0.0029906874988228083, + 0.01996312290430069, + -0.0010019369656220078, + 0.003028496401384473, + -0.011630031280219555, + -0.0084994500502944, + 0.021097389981150627, + -0.015448734164237976, + -0.0033839005045592785, + -0.02195943519473076, + 0.016817418858408928, + 0.0019585031550377607, + 0.02260974794626236, + 0.017528226599097252, + 0.027040956541895866, + -0.010420144535601139, + 0.012303030118346214, + 0.0036258776672184467, + 0.003382009919732809, + -0.002482157200574875, + -0.01876835897564888, + 0.01488916203379631, + 0.010548694990575314, + -0.027842506766319275, + 0.038383640348911285, + -0.012159355916082859, + 0.007924754172563553, + -0.02130912058055401, + -0.01452619582414627, + -0.03315088152885437, + -0.016030991449952126, + -0.009164887480437756, + 0.018465887755155563, + -0.016000743955373764, + -0.032697174698114395, + -0.020159728825092316, + -0.018677618354558945, + -0.010049616917967796, + 0.007005997002124786, + 0.03357434272766113, + -0.017256001010537148, + -0.01208373811095953, + -0.04434232786297798, + -0.00031641358509659767, + -0.0023668399080634117, + -0.004571101162582636, + -0.023744016885757446, + -0.005576819181442261, + 0.01840539276599884, + -0.007255536038428545, + -0.0449170246720314, + -0.010836043395102024, + -0.007467266172170639, + 0.010624312795698643, + 0.007939877919852734, + -0.026693113148212433, + -0.013104579411447048, + -0.018435640260577202, + -0.02814497798681259, + -0.0010340745793655515, + 0.008166731335222721, + -0.023759139701724052, + 0.05638069659471512, + -0.0022477416787296534, + 0.008257472887635231, + 0.017981933429837227, + -0.011236817575991154, + 0.026511631906032562, + 0.008461641147732735, + -0.014064926654100418, + -0.0038357172161340714, + -0.01103264931589365, + 0.008075990714132786, + -0.0008979624253697693, + 0.019857257604599, + 0.002385744359344244, + -0.02177795208990574, + -0.009595910087227821, + 0.05547328293323517, + -0.013459984213113785, + -0.014745487831532955, + 0.001223119325004518, + -0.0001707310148049146, + -0.006900132168084383, + 0.0038905402179807425, + 0.021581344306468964, + 0.005005904007703066, + 0.016212474554777145, + -0.024122105911374092, + -0.035812631249427795, + -0.002406539162620902, + 0.005830138921737671, + -0.015592408366501331, + 0.002926412271335721, + -0.009467359632253647, + 0.004200573544949293, + -0.08862416446208954, + -0.04140835627913475, + -0.006552289705723524, + 0.02427334152162075, + 0.0028980555944144726, + -0.025422733277082443, + 0.0045975674875080585, + 0.035812631249427795, + -0.011440985836088657, + 0.04095464572310448, + -0.008242350071668625, + 0.015063082799315453, + 0.00974714569747448, + 0.027479540556669235, + -0.010170605964958668, + -0.006661935709416866, + 0.0015312621835619211, + -0.018435640260577202, + 0.009830324910581112, + -0.0342700257897377, + -0.009323685429990292, + 0.006355683319270611, + 0.021672086790204048, + -0.013860758394002914, + -0.021551096811890602, + 0.03351384773850441, + 0.012960906140506268, + -0.011554413475096226, + -0.02409185841679573, + -0.021248625591397285, + 0.014632061123847961, + -0.0034406138584017754, + 0.011388054117560387, + 0.00784157495945692, + -0.004136298317462206, + 0.0128474785014987, + -0.007886945270001888, + -0.011025087907910347, + 0.04213428497314453, + 0.00843895599246025, + 0.006208228413015604, + -0.014919408597052097, + -0.015773890540003777, + -0.020598312839865685, + -0.0051117693074047565, + -0.015743644908070564, + 0.025452980771660805, + -0.04670160636305809, + 0.0027865192387253046, + 0.014443016611039639, + 0.00453707342967391, + 0.019721144810318947, + 0.014155668206512928, + -0.0233659278601408, + 0.012182042002677917, + 0.012333277612924576, + 0.012333277612924576, + 0.007648749276995659, + 0.021354490891098976, + 0.014586690813302994, + 0.06829807162284851, + 0.021838445216417313, + -0.007894507609307766, + -0.019403548911213875, + -0.031940996646881104, + -0.007455923594534397, + 0.006987092550843954, + 0.002705229911953211, + 0.04358614981174469, + 0.005576819181442261, + -0.013074332848191261, + -0.01913132518529892, + 0.0083709005266428, + 0.03475398197770119, + 0.0057356166653335094, + 0.02539248578250408, + 0.015282374806702137, + 0.0311545692384243, + -0.003813031828030944, + -0.014374960213899612, + -0.0019292013021185994, + 0.005694027058780193, + 0.010246223770081997, + 0.005599504336714745, + -0.029037268832325935, + -0.014253972098231316, + 0.006624126806855202, + -0.038928087800741196, + -0.015448734164237976, + 0.0177853275090456, + 0.01478329673409462, + 0.019327931106090546, + 0.018193664029240608, + 0.017376990988850594, + -0.011244379915297031, + 0.03569164127111435, + -0.0066392505541443825, + -0.011887132190167904, + -0.0084994500502944, + -0.00696440739557147, + -0.0034387235064059496, + -0.03203173726797104, + 0.012106423266232014, + -0.012182042002677917, + 0.004654280841350555, + 0.0173921138048172, + 0.0036315489560365677, + -0.001263763988390565, + -0.008136484771966934, + -0.017331618815660477, + 0.0007788642542436719, + 0.020961279049515724, + -0.02126375027000904, + 0.0006725265993736684, + -0.01103264931589365, + 0.002053025644272566, + 0.003276144852861762, + -0.016167104244232178, + 0.004393399227410555, + -0.02471192553639412, + -0.010639436542987823, + 0.01902545988559723, + 0.0014821105869486928, + 0.005013465881347656, + 0.0099286288022995, + 0.004552196711301804, + -0.005002123303711414, + 0.004695870913565159, + 0.004234601743519306, + 0.020023616030812263, + -0.00505505595356226, + -0.010836043395102024, + 0.001950941514223814, + 0.012159355916082859, + 0.0011522275162860751, + -0.001885720994323492, + 0.00426484877243638, + -0.009421988390386105, + 0.015116015449166298, + -0.037627462297677994, + -0.006582537200301886, + -0.004835763946175575, + 0.015773890540003777, + 0.0058225770480930805, + -0.01713501289486885, + 0.009429550729691982, + 0.0026504069101065397, + -0.008302844129502773, + 0.015184071846306324, + -0.00047615639050491154, + -0.013671713881194592, + 0.03200148791074753, + 0.017437484115362167, + 0.01150148082524538, + -0.00958078633993864, + -0.002238289453089237, + -0.016106609255075455, + -0.005448268726468086, + -0.006011622026562691, + -0.009694213047623634, + 0.01443545427173376, + -0.0035767259541898966, + 0.012567692436277866, + -0.004794173873960972, + 0.020341211929917336, + 0.006132610607892275, + -0.01061675138771534, + -0.015025273896753788, + -0.03272742033004761, + -0.014737926423549652, + -0.010117673315107822, + -0.009724460542201996, + -0.018360022455453873, + -0.009331246837973595, + -0.011078020557761192, + -0.007731928955763578, + -0.03145704045891762, + -0.019721144810318947, + 0.010200852528214455, + 0.00018998993618879467, + -0.04158983752131462, + 0.02209554612636566, + -0.007270659785717726, + 0.002665530424565077, + 0.01208373811095953, + 0.010715054348111153, + 0.011403176933526993, + 0.00043196717160753906, + -0.006189323961734772, + 0.012945782393217087, + 0.05843750387430191, + -0.01409517414867878, + -0.03260643407702446, + 0.007955001667141914, + 0.013543163426220417, + 0.006393492221832275, + 0.03351384773850441, + 0.02616378851234913, + -0.0045106071047484875, + 0.0012807779712602496, + 0.0005085302982479334, + -0.011751019395887852, + 0.022125793620944023, + 0.0013223678106442094, + -0.008060866966843605, + -0.00871118064969778, + -0.029869064688682556, + 0.015743644908070564, + 0.024772420525550842, + -0.02232239954173565, + 0.002714682137593627, + -0.006329216994345188, + -0.007244193460792303, + -0.02333568036556244, + 0.006272503640502691, + -0.005414240527898073, + 0.0022609748411923647, + -0.024485072121024132, + -0.008733865804970264, + -0.032878655940294266, + 0.014760611578822136, + 0.0006815061788074672, + 0.01538067776709795, + -0.0035011081490665674, + 0.02188381552696228, + 0.004147640895098448, + 0.0025105138774961233, + -0.03847438097000122, + -0.00547095388174057, + 0.005463392473757267, + -0.023970870301127434, + 0.019010337069630623, + -0.008915348909795284, + 0.004831982776522636, + -0.0061590769328176975, + -0.008121361024677753, + 0.03593362122774124, + -0.002162671647965908, + 0.006223352160304785, + -0.007119424175471067, + -0.01016304362565279, + 0.0006125048967078328, + -0.01731649599969387, + 0.006401054095476866, + 0.013951499946415424, + 0.016242722049355507, + -0.0256949570029974, + -0.022564377635717392, + 0.0023838537745177746, + 0.02865917980670929, + 0.003538917051628232, + -0.0020095454528927803, + -0.024001117795705795, + -0.0032307743094861507, + 0.011554413475096226, + -0.012938220053911209, + 0.027343427762389183, + -0.010208414867520332, + 0.009013651870191097, + -0.010737739503383636, + -0.025589093565940857, + 0.014722802676260471, + 0.03584287688136101, + -0.027056079357862473, + 0.030564749613404274, + -0.014518634416162968, + -0.013195320963859558, + 0.00497187627479434, + 0.005565476603806019, + 0.0034859846346080303, + 0.019978245720267296, + -0.010352089069783688, + -0.01811804622411728, + -0.0147984204813838, + 0.010185729712247849, + -0.015622655861079693, + 0.004979437682777643, + -0.029354862868785858, + 0.0025237470399588346, + 0.02419772371649742, + -0.03496571257710457, + -0.002276098355650902, + -0.02159646898508072, + 0.016802294179797173, + 0.006609003525227308, + 0.018390269950032234, + 0.012393771670758724, + -0.002172123873606324, + 0.03333236277103424, + 0.001784582156687975, + 0.026889720931649208, + 0.025059767067432404, + 0.023244937881827354, + -0.007437019143253565, + -4.3864281906280667e-5, + -0.010692369192838669, + 0.012076176702976227, + -0.015501666814088821, + 0.017044272273778915, + -0.01612173393368721, + 0.010677245445549488, + 0.00974714569747448, + -0.02796349488198757, + 0.010639436542987823, + -0.0007032463327050209, + -0.00017900171224027872, + 0.016288092359900475, + 0.005285690072923899, + 0.001446192036382854, + -0.0142766572535038, + -0.0015936469426378608, + -0.006537166424095631, + -0.01656031794846058, + -0.018314652144908905, + -0.004813078325241804, + 0.01713501289486885, + 0.0022458513267338276, + 0.005221415311098099, + -0.0014830557629466057, + -0.0301110427826643, + -0.015607532113790512, + -0.0023120169062167406, + 0.02640576660633087, + 0.011690525338053703, + -0.0355706550180912, + -0.006019183900207281, + 0.00575074041262269, + 0.0066279079765081406, + -0.0030700862407684326, + -0.0127189289778471, + -0.01401955634355545, + 0.012590378522872925, + -0.012915534898638725, + -0.010442830622196198, + 0.0020379021298140287, + -0.0077659571543335915, + -0.017119890078902245, + -0.005648656282573938, + -0.0006323545821942389, + 0.0010019369656220078, + 0.02964221127331257, + 0.023774264380335808, + -0.014669870026409626, + 0.013263377360999584, + 0.029627088457345963, + 0.03203173726797104, + 0.009860572405159473, + 0.04470529407262802, + 0.013255815953016281, + 0.002614488359540701, + 0.027661023661494255, + 0.0013270939234644175, + -0.005194948986172676, + -0.009641280397772789, + 0.016318339854478836, + 0.011698086746037006, + -0.004087146837264299, + 0.029732953757047653, + 0.004703432787209749, + -0.030277401208877563, + 0.003535136114805937, + -0.011819075793027878, + 0.004869791679084301, + 0.012613063678145409, + -0.011365368030965328, + -0.008938034065067768, + 0.01429178100079298, + -0.023759139701724052, + -0.014813544228672981, + -0.008559945039451122, + 0.014170791953802109, + -0.013097018003463745, + -0.02637551911175251, + 0.005985155701637268, + -0.0060267457738518715, + 0.0229727141559124, + -0.01916157267987728, + 0.013323871418833733, + 0.007731928955763578, + 0.0013015728909522295, + 0.006378368940204382, + 0.0004863175272475928, + -0.00983788724988699, + -0.030277401208877563, + -0.024137228727340698, + -0.007221508305519819, + -0.0008001317619346082, + 0.0008398311329074204, + -0.008325529284775257, + 0.005830138921737671, + 0.0009943752083927393, + -0.009784954600036144, + 0.013165074400603771, + -0.0028942746575921774, + -0.009429550729691982, + 0.0015917564742267132, + -0.023759139701724052, + 0.00029538237140513957, + -0.017150137573480606, + -0.008628000505268574, + -0.025846194475889206, + -0.00505505595356226, + 0.0032874876633286476, + 0.012597939930856228, + -0.0022061518393456936, + 0.011879569850862026, + 0.020628560334444046, + 0.0167418010532856, + -0.010843604803085327, + -0.02253413014113903, + -0.00217401422560215, + -0.0049000391736626625, + -0.0025256373919546604, + -0.03133605048060417, + -0.017921438440680504, + -0.0012146122753620148, + 0.014480825513601303, + 0.023214690387248993, + -0.00304361991584301, + -0.022579500451683998, + -0.014488386921584606, + 0.0173921138048172, + 0.004729898646473885, + 0.0035067794378846884, + -0.010767986997961998, + 0.0022118231281638145, + -0.006143953185528517, + -0.02170233428478241, + 0.0034141475334763527, + 0.010677245445549488, + 0.011705649085342884, + 0.015078206546604633, + -0.004499264061450958, + -0.00965640414506197, + 0.03154778108000755, + 0.006960626691579819, + -0.004397179931402206, + -0.00947492104023695, + -0.0020927251316607, + -0.00539911724627018, + -0.014412769116461277, + -0.01891959458589554, + -0.00956566259264946, + -0.0029509880114346743, + 0.012522322125732899, + -0.006892570294439793, + 0.025422733277082443, + -0.009452235884964466, + 0.007142109330743551, + 0.009437112137675285, + -0.009066584520041943, + -0.012113985605537891, + -0.0008256527944467962, + -0.02014460414648056, + 0.008741428144276142, + -0.007781080435961485, + 0.0013365461491048336, + 0.02094615437090397, + -0.02666286751627922, + 0.028961651027202606, + 0.019932875409722328, + -0.00021858295076526701, + -0.003780894447118044, + 0.007811327930539846, + -0.02489340864121914, + 0.008567506447434425, + 0.026798978447914124, + -0.03626633808016777, + -0.02974807657301426, + -0.0035162316635251045, + 0.02580082230269909, + -0.024984149262309074, + 0.0010454172734171152, + -0.007346277590841055, + 0.02239801734685898, + -0.03796017915010452, + 0.004400961101055145, + 0.01742236129939556, + 0.004234601743519306, + -0.01920694299042225, + 0.02209554612636566, + -0.0039510345086455345, + 0.012106423266232014, + 0.004888696596026421, + 0.015698272734880447, + -0.009051460772752762, + 0.03926080837845802, + -0.0013431627303361893, + -0.0189498420804739, + 0.031033581122756004, + -0.010420144535601139, + 0.02040170505642891, + 0.009512729942798615, + 0.008938034065067768, + 0.013097018003463745, + -0.02068905346095562, + -0.01789119280874729, + -0.025815946981310844, + 0.009633718989789486, + 0.012613063678145409, + 0.007346277590841055, + -0.010548694990575314, + -0.02767614647746086, + 0.006990873720496893, + 0.004019090905785561, + -0.034723732620477676, + -0.005455830600112677, + 0.013081894256174564, + 0.024969026446342468, + -0.011002402752637863, + -0.01081335823982954, + -0.006200666539371014, + 0.006714868359267712, + 0.0016210584435611963, + -0.016696428880095482, + 0.007232850883156061, + 0.014715240336954594, + 0.018450764939188957, + -0.010919222608208656, + -0.01514626294374466, + -0.0016692648641765118, + -0.012499636970460415, + -0.002406539162620902, + -0.010495762340724468, + -0.003138142405077815, + 0.017150137573480606, + 0.0037487568333745003, + -0.006722430232912302, + 0.0026277215220034122, + -0.031578030437231064, + -0.009444674476981163, + 0.007191260810941458, + 0.0006488959770649672, + 0.02224678173661232, + 0.01851125806570053, + 0.002032230608165264, + -0.00020901256357319653, + 0.004828202072530985, + -0.027161944657564163, + -0.005818796344101429, + 0.007437019143253565, + 0.0008913458441384137, + -0.002614488359540701, + -0.006102363578975201, + -0.0025048425886780024, + 0.08880564570426941, + 0.011327559128403664, + -0.002769505139440298, + 0.00634812144562602, + 0.014216162264347076, + -0.01286260224878788, + 0.002824328141286969, + 0.018344899639487267, + 0.02427334152162075, + -0.010299156419932842, + 0.008091113530099392, + -0.022050175815820694, + 0.006121268030256033, + -0.0019452701089903712, + -0.018934719264507294, + 0.007796204183250666, + 0.008817045949399471, + 0.012945782393217087, + 0.010389897972345352, + 0.016333462670445442, + 0.028901156038045883, + -0.010034493170678616, + 0.000654567324090749, + 0.00556169543415308, + -0.004903819877654314, + 0.019660649821162224, + 0.020174851641058922, + 0.012484513223171234, + 0.022156041115522385, + 0.0035597120877355337, + 0.007376524619758129, + -0.0028678083326667547, + -0.007478609215468168, + -0.009180011227726936, + 0.01104777306318283, + 0.01130487397313118, + -0.01119900867342949, + 0.005444488022476435, + -0.006571194157004356, + 0.035237934440374374, + -0.013074332848191261, + -0.005145797040313482, + 0.016288092359900475, + 0.0026220502331852913, + -0.011130953207612038, + -0.002633392810821533, + 0.008990966714918613, + -0.0030209345277398825, + -0.0017618967685848475, + -0.010934346355497837, + -0.01746773160994053, + -0.018450764939188957, + -0.0030663053039461374, + -0.0009915395639836788, + 0.015426049008965492, + -0.00757313147187233, + -0.00652204267680645, + -0.010919222608208656, + -0.014306903816759586, + 0.0015029055066406727, + -0.024409454315900803, + 0.012439141981303692, + -0.030897468328475952, + -0.03705276548862457, + 0.01365659013390541, + -0.023063454777002335, + -0.010715054348111153, + -0.0028375613037496805, + -0.010949470102787018, + 0.006733772810548544, + -0.006147734355181456, + 0.015592408366501331, + 0.0052554430440068245, + -0.013966623693704605, + -0.0036031922791153193, + 0.025377362966537476, + 0.005565476603806019, + -0.009958875365555286, + -0.0003691097954288125, + 0.008355776779353619, + 0.0059813749976456165, + 0.012318153865635395, + -0.008718742057681084, + -0.01952453888952732, + 0.006616564933210611, + -0.00678292429074645, + 0.001066212193109095, + -0.021868692710995674, + 0.012234973721206188, + -0.012325715273618698, + -0.0010331294033676386, + 0.006102363578975201, + -0.016076363623142242, + -0.0029207409825176, + -0.004922724328935146, + 0.01208373811095953, + -0.002875370206311345, + 0.0004787557409144938, + 0.014382521621882915, + -0.006631688680499792, + -0.004975656978785992, + 0.023169320076704025, + -0.003648563055321574, + 0.009913505055010319, + -0.014768172986805439, + -0.006041869055479765, + 0.02406161092221737, + 0.005153358913958073, + -0.017618967220187187, + 0.011864446103572845, + -0.012250097468495369, + -0.019433796405792236, + 0.0006966298096813262, + 0.004461455158889294, + -0.017014024779200554, + 0.010926784947514534, + 0.0014754940057173371, + 0.0016220036195591092, + -0.01941867358982563, + -0.023426420986652374, + -0.003544588340446353, + -0.0011456109350547194, + -0.008469203487038612, + 0.012068614363670349, + -0.012303030118346214, + 0.0005118385888636112, + -0.020099233835935593, + -0.014737926423549652, + -0.03644782304763794, + 0.0032175411470234394, + 0.016439327970147133, + 0.01197787281125784, + 0.01557728461921215, + -0.004276191350072622, + -0.00522519601508975, + -0.010155482217669487, + 0.009679089300334454, + 0.00011224530317122117, + 0.028417201712727547, + -0.00039392191683873534, + 0.009815202094614506, + 0.006930379197001457, + -0.0029396454337984324, + 0.01905570738017559, + 0.013679275289177895, + 0.0015312621835619211, + -0.005716712214052677, + -0.023774264380335808, + 0.024076735600829124, + 0.015698272734880447, + 0.031578030437231064, + -0.031940996646881104, + 0.006707306485623121, + -0.01131999772042036, + 0.001986860064789653, + 0.01539580151438713, + -0.017256001010537148, + -0.02025046944618225, + -0.00862043909728527, + -0.017271125689148903, + 0.012136670760810375, + -0.0011456109350547194, + -0.008181855082511902, + -0.001056759967468679, + -0.022261906415224075, + 0.017301373183727264, + 0.011251941323280334, + 0.016167104244232178, + 0.01121413242071867, + 0.001441465923562646, + -0.0008407763671129942, + 0.008454079739749432, + 0.010087425820529461, + -0.007017340045422316, + 0.006714868359267712, + 0.009376618079841137, + 0.004884915426373482, + 0.012945782393217087, + -0.018087798729538918, + 0.010594066232442856, + -0.0053802127949893475, + -0.0004728480998892337, + 0.0005458666128106415, + -0.014533758163452148, + 0.009822763502597809, + -0.007066491525620222, + 0.021142760291695595, + 0.004639157559722662, + -0.0015000698622316122, + -0.007690338883548975, + -0.009611033834517002, + 0.023320555686950684, + 0.011652716435492039, + -0.014359836466610432, + 0.016514945775270462, + -0.006367025896906853, + -0.003255350049585104, + 0.029657335951924324, + 0.00139042385853827, + 0.005917099770158529, + -0.00392078747972846, + -0.009784954600036144, + 0.013180197216570377, + -0.00313436146825552, + -0.005444488022476435, + -0.015894880518317223, + 0.0020454637706279755, + -0.011947626248002052, + -0.022337524220347404, + 0.0027392578776925802, + -0.03774844855070114, + -0.027978617697954178, + 0.018087798729538918, + -0.002172123873606324, + -0.020084111019968987, + 0.02232239954173565, + 0.009081708267331123, + 0.001784582156687975, + 0.007856698706746101, + 0.016817418858408928, + 0.002138095675036311, + 0.030912593007087708, + -0.0002608817012514919, + -0.004748803097754717, + 0.010132797062397003, + -0.007599597796797752, + 0.008159169927239418, + 0.011524165980517864, + 0.013989308848977089, + 0.010170605964958668, + 0.010578942485153675, + -0.010049616917967796, + 0.0010851166443899274, + 0.016348587349057198, + 0.004835763946175575, + 0.02887090854346752, + 0.00196039373986423, + -0.0077659571543335915, + 0.011251941323280334, + -0.0035710546653717756, + -0.012340839020907879, + 0.014405207708477974, + -0.01615198142826557, + 0.010858728550374508, + -0.007599597796797752, + -0.008680933155119419, + 0.00488113472238183, + -0.012333277612924576, + 0.0026863254606723785, + -3.6332032323116437e-5, + 0.0018394050421193242, + -0.010699930600821972, + -0.0038357172161340714, + 0.024409454315900803, + 0.021793074905872345, + 0.01760384440422058, + 0.0022156040649861097, + 0.010231100022792816, + 0.020295841619372368, + -0.0017959248507395387, + 0.006435082294046879, + -0.016893036663532257, + -0.009558101184666157, + -0.016817418858408928, + 0.013248253613710403, + 0.01684766449034214, + -0.0071610137820243835, + 0.018314652144908905, + 0.004540854133665562, + 0.008454079739749432, + 0.001880049705505371, + -0.003654234344139695, + 0.00038092510658316314, + 0.01548654306679964, + 0.0004300767323002219, + 0.012545007281005383, + 0.018647370859980583, + -0.019116202369332314, + 0.00191596825607121, + 0.004922724328935146, + -0.019267437979578972, + 0.0047866120003163815, + 0.0008483381825499237, + -0.018889348953962326, + 0.0030133728869259357, + -0.033271871507167816, + 0.0028621370438486338, + 0.023759139701724052, + -0.0007434183498844504, + 0.025634463876485825, + -0.010843604803085327, + -0.02974807657301426, + 0.017513101920485497, + 0.009346370585262775, + 0.007818889804184437, + -0.007040025200694799, + -0.004703432787209749, + 0.010994840413331985, + 0.0229727141559124, + -0.0010284032905474305, + -0.011425863020122051, + -0.0058679478242993355, + -0.01770970970392227, + -0.010261347517371178, + 0.014163230545818806, + -0.0002885294961743057, + 0.01358853466808796, + -0.0031419231090694666, + 0.010170605964958668, + 0.027782011777162552, + 0.013853196986019611, + -0.0049529713578522205, + 0.0011720772599801421, + -0.005323499441146851, + 0.003962377086281776, + -0.0018356242217123508, + 0.00013197684893384576, + 0.003792237024754286, + 0.005365089047700167, + -0.006915255915373564, + -0.0016210584435611963, + 0.006022964604198933, + 0.0029037268832325935, + 0.0001226427557412535, + 0.0015227552503347397, + 0.010843604803085327, + 0.00924050621688366, + 0.007474828045815229, + 0.01314995065331459, + -0.009595910087227821, + 0.013006276451051235, + -0.005958689376711845, + -0.018964966759085655, + 0.0034028049558401108, + -0.007599597796797752, + 0.012703805230557919, + -0.009376618079841137, + 0.0034859846346080303, + -0.01322556845843792, + 0.01217447966337204, + -0.02014460414648056, + -0.0084994500502944, + 0.009323685429990292, + -0.008151608519256115, + -0.009316124022006989, + 0.022080423310399055, + 0.012227412313222885, + -0.0032742545008659363, + -0.004673185292631388, + 0.0254378579556942, + 0.001485891523770988, + 0.0038432790897786617, + 0.008272596634924412, + -0.006775362882763147, + -0.009255629032850266, + -0.003523793537169695, + -0.022337524220347404, + 0.017528226599097252, + -0.005864167120307684, + -0.008476764895021915, + -0.022110670804977417, + -0.007459704298526049, + -0.01391369104385376, + -0.01822391152381897, + 0.010405020788311958, + 0.018420517444610596, + -0.0012221741490066051, + 0.004794173873960972, + -0.01246182806789875, + 0.016061238944530487, + 0.0029453167226165533, + -0.020053863525390625, + -0.02195943519473076, + -0.015199195593595505, + -0.0029604402370750904, + 0.015698272734880447, + 0.02956659346818924, + 0.01619735173881054, + -0.005599504336714745, + 0.012204727157950401, + 0.015743644908070564, + 0.00695684552192688, + -0.0028451229445636272, + 0.004748803097754717, + 0.02068905346095562, + 0.019842132925987244, + 0.006491795647889376, + 0.024046488106250763, + -0.006208228413015604, + -0.018722988665103912, + -0.0015700163785368204, + 0.02035633474588394, + 0.031608276069164276, + 0.011864446103572845, + 0.001769458525814116, + -0.006506918929517269, + -0.007032463327050209, + 0.0065485090017318726, + 0.009134640917181969, + -0.02053781785070896, + -0.002066258806735277, + -0.006488014478236437, + 0.001703292946331203, + 0.0036882623098790646, + 0.003113566432148218, + -0.02985394187271595, + 0.01061675138771534, + 0.0008473929483443499, + 0.018450764939188957, + -0.024575812742114067, + 0.004022871609777212, + -0.004552196711301804, + -0.006764019839465618, + -0.005716712214052677, + -1.6822026736917906e-5, + 0.014488386921584606, + 0.0021513288374990225, + 0.0010293484665453434, + 0.008159169927239418, + -0.004200573544949293, + 0.012136670760810375, + 0.0020889441948384047, + 0.009784954600036144, + -0.007886945270001888, + -0.003932130057364702, + 0.007410552818328142, + 0.042043544352054596, + 0.004060680512338877, + -0.001465096604079008, + -0.0008644069894216955, + 0.012136670760810375, + -0.0015019603306427598, + 0.0260881707072258, + 0.016393957659602165, + 0.0031173473689705133, + 0.0006413342198356986, + 0.011115829460322857, + -0.02398599311709404, + 0.008151608519256115, + 0.017331618815660477, + 0.0007131712045520544, + -0.019902627915143967, + 0.008930472657084465, + -0.0028678083326667547, + 0.008310405537486076, + 0.007387867663055658, + 0.003924568183720112, + 0.022110670804977417, + -0.0033196252770721912, + -0.006960626691579819, + -0.018526382744312286, + 0.010193291120231152, + -0.0077205863781273365, + 0.009973999112844467, + -0.03408854454755783, + -0.03039839118719101, + -0.001986860064789653, + -0.00862043909728527, + 0.02108226716518402, + -0.023426420986652374, + -0.00765252998098731, + -0.005728054791688919, + 0.00026324475766159594, + 0.004639157559722662, + -0.007834012620151043, + 0.021399861201643944, + 0.009792516008019447, + 0.009376618079841137, + -0.00425728689879179, + 0.013354118913412094, + -0.016787171363830566, + 0.000581312517169863, + 0.009588347747921944, + -0.008839731104671955, + 0.0034500660840421915, + 0.01656031794846058, + -0.0003707639407366514, + 0.002606926718726754, + 0.012514760717749596, + -0.008544821292161942, + 0.0014008213765919209, + 0.0015511119272559881, + -0.014926970936357975, + 0.007213946431875229, + 0.026617495343089104, + -0.010261347517371178, + -0.0254378579556942, + 0.03236445412039757, + -0.0042497250251472, + 0.005092864856123924, + -0.001491562812589109, + 0.008166731335222721, + 0.010321841575205326, + 0.002814875915646553, + -0.008597753942012787, + 0.0116829639300704, + 0.015085767954587936, + 0.0321829728782177, + 0.0030152632389217615, + -0.005701588466763496, + -0.0012467498891055584, + -0.009626156650483608, + -0.031668771058321, + 0.01822391152381897, + 0.02260974794626236, + 0.0005142016452737153, + -0.023456668481230736, + -0.0034387235064059496, + 0.011879569850862026, + 0.005879290867596865, + 0.007066491525620222, + -0.020416829735040665, + -0.00522519601508975, + -0.00016411444812547415, + -0.010775548405945301, + 0.00907414685934782, + 0.019479166716337204, + 0.018541505560278893, + 0.02466655522584915, + 0.00859019160270691, + 0.0049000391736626625, + -0.018647370859980583, + -0.01166784018278122, + 0.002007654868066311, + 0.0036617962177842855, + 0.012182042002677917, + 0.021067142486572266, + 0.0008677152218297124, + -0.008212102577090263, + -0.0026863254606723785, + -0.011962749995291233, + 0.011335121467709541, + 0.0120081203058362, + 0.00020735841826535761, + 0.007213946431875229, + 0.009890819899737835, + 0.010919222608208656, + -0.01960015669465065, + 0.01097971759736538, + -0.010382335633039474, + -0.006820733193308115, + 0.005849043373018503, + 0.035963866859674454, + -0.002285550581291318, + 0.003219431499019265, + -0.019191820174455643, + -0.004170326516032219, + -0.006106144282966852, + -0.008794359862804413, + -0.0015407144092023373, + -0.021581344306468964, + 0.004026652313768864, + 0.021248625591397285, + 0.001905570738017559, + 0.012643310241401196, + -0.0028470135293900967, + -0.009777393192052841, + 0.0027487101033329964, + 0.007085395976901054, + 0.016242722049355507, + 0.0031457040458917618, + -0.016605688259005547, + -0.010699930600821972, + -0.004064461216330528, + -0.009792516008019447, + 0.00907414685934782, + 0.0061704195104539394, + 0.007474828045815229, + 0.007902069017291069, + 0.02598230540752411, + -0.013308747671544552, + 0.00435559032484889, + -0.0233659278601408, + 0.00025804602773860097, + 0.008431394584476948, + -0.0015331526519730687, + -0.03436076641082764, + -0.016454452648758888, + 0.014662308618426323, + -0.01923719048500061, + 0.001268490101210773, + -0.0036372202448546886, + -0.021551096811890602, + 0.0015237004263326526, + 0.006257380358874798, + 0.010692369192838669, + 0.0022326181642711163, + 0.006038088351488113, + 0.024802666157484055, + -0.0352984294295311, + 0.014828667975962162, + 0.0036372202448546886, + -0.0009962656768038869, + -0.017618967220187187, + 0.018995212391018867, + 0.0034708608873188496, + -0.013580972328782082, + -0.002659859135746956, + -0.018208786845207214, + -0.02691996842622757, + -0.00391322560608387, + -0.004019090905785561, + -0.000384233397198841, + 0.009527853690087795, + -0.00387163576669991, + 0.004476578906178474, + 0.0059927175752818584, + -0.017951685935258865, + -0.013649028725922108, + 0.0013025180669501424, + 0.0002490664192009717, + 0.0036920432467013597, + 0.028598684817552567, + -0.027993742376565933, + -0.0009915395639836788, + -0.0086960569024086, + 0.02554372139275074, + 0.002066258806735277, + 0.006646812427788973, + 0.016651058569550514, + -0.019373303279280663, + -0.009232943877577782, + 0.010994840413331985, + 0.0007420005276799202, + -0.007183699402958155, + 0.0029793446883559227, + -0.012650872580707073, + 0.010624312795698643, + 0.010200852528214455, + -0.01371708419173956, + 0.00947492104023695, + 0.000609196606092155, + 0.009391741827130318, + -0.03541941940784454, + -0.0037071669939905405, + -0.019146448001265526, + -0.019917750731110573, + -0.007293345406651497, + -0.006412396673113108, + 0.0015123577322810888, + 0.02242826484143734, + -0.005780987441539764, + -0.013906129635870457, + 0.01331631001085043, + -0.00453707342967391, + -0.018813731148838997, + 0.009452235884964466, + 0.0009896490955725312, + 0.001471713068895042, + 0.016030991449952126, + -0.017906315624713898, + -0.005784768145531416, + -0.010881413705646992, + 0.01228034496307373, + -0.015743644908070564, + -0.005584381055086851, + 0.012749175541102886, + -0.014548880979418755, + 0.03493546321988106, + -0.012015682645142078, + -0.002204261487349868, + -0.03230396285653114, + 0.007985249161720276, + 0.01905570738017559, + -0.008544821292161942, + 0.0020189976785331964, + 0.021112514659762383, + 0.016983777284622192, + -0.005278128664940596, + -0.006941721774637699, + 0.00016848610539454967, + 0.0014641513116657734, + -0.02876504324376583, + -0.003160827560350299, + 0.003765770699828863, + -0.012635748833417892, + -0.0026863254606723785, + -0.00409470871090889, + 0.014306903816759586, + -0.03681078553199768, + 0.010828481055796146, + 0.001303463359363377, + -0.020159728825092316, + -0.007153451908379793, + -1.0537765774643049e-5, + 0.016318339854478836, + 0.000543030968401581, + 0.006922817323356867, + -0.003909444902092218, + 0.005905756726861, + 0.0036126445047557354, + -0.007701681926846504, + -0.028613807633519173, + -0.005603285506367683, + 0.0020341211929917336, + 0.0033290775027126074, + -0.01609148643910885, + 0.002164561999961734, + -5.293252252158709e-5, + -0.010102549567818642, + -0.017407236620783806, + -0.005312156397849321, + -0.004204354714602232, + -0.017407236620783806, + 0.005482296925038099, + -0.015093330293893814, + 0.0074181146919727325, + 0.012575254775583744, + 0.006344340741634369, + -0.001000991789624095, + 0.0030719765927642584, + 0.003468970535323024, + 0.02162671647965908, + 0.02456068992614746, + -0.012665996327996254, + -0.016651058569550514, + -0.0023744015488773584, + -0.013785140588879585, + 0.0020379021298140287, + -0.013891005888581276, + -0.008491888642311096, + 0.0018346789292991161, + -0.0002767142141237855, + 0.029354862868785858, + 0.0006574030267074704, + -0.007871822454035282, + 0.016817418858408928, + 0.027419045567512512, + -0.015516790561378002, + 0.013883443549275398, + 0.002606926718726754, + -0.004707213491201401, + -0.01811804622411728, + -0.0023592780344188213, + -0.008915348909795284, + -0.004839544650167227, + -0.013233129866421223, + 0.0038187033496797085, + 0.00635946448892355, + -0.0003934493288397789, + -0.02253413014113903, + -0.01869274117052555, + 0.006801828742027283, + 0.007111862301826477, + 0.020386582240462303, + 0.009989122860133648, + -0.010049616917967796, + 0.015894880518317223, + -0.007694120053201914, + 0.020295841619372368, + -0.003858402604237199, + -0.009830324910581112, + 0.028281088918447495, + 0.0015633997973054647, + 0.012597939930856228, + -0.011463671922683716, + 0.006128829903900623, + -0.012287906371057034, + 0.003977500833570957, + 0.020492447540163994, + 0.019842132925987244, + 0.017543349415063858, + -0.016363710165023804, + 0.011463671922683716, + -0.0018422408029437065, + -0.01505552139133215, + 0.01052600983530283, + 0.005312156397849321, + -0.004813078325241804, + 0.004400961101055145, + 0.004359371028840542, + 0.0002328794653294608, + -0.022549252957105637, + -0.022670242935419083, + -0.0010406911605969071, + -0.026103295385837555, + -0.004155202768743038, + 0.014011994004249573, + 0.004533292260020971, + 0.02437920682132244, + -0.016424205154180527, + 0.012401333078742027, + -0.024318711832165718, + 0.006181762088090181, + -0.01916157267987728, + -0.02481779083609581, + 0.03321137651801109, + -0.007739490829408169, + 0.01749797910451889, + -0.0030398389790207148, + 0.014571567066013813, + 0.005573038477450609, + -0.02728293277323246, + -6.687457062071189e-5, + 0.020628560334444046, + 0.00014012939936947078, + 0.02289709635078907, + -0.006839637644588947, + -0.019403548911213875, + -0.008408709429204464, + 0.0027997521683573723, + 0.0049454099498689175, + -0.009951313957571983, + -0.0020416828338056803, + -0.013891005888581276, + 0.013127265498042107, + -0.02409185841679573, + 0.001259037759155035, + -0.007970125414431095, + 0.023607904091477394, + 0.0015662354417145252, + -0.004181669093668461, + -0.004888696596026421, + -0.0030852097552269697, + 0.015153824351727962, + -0.015970498323440552, + 0.009406865574419498, + -0.016212474554777145, + 0.001010444015264511, + 0.013429736718535423, + -0.002077601384371519, + -0.002502952003851533, + 0.0013441079063341022, + -0.016469575464725494, + -0.03747622296214104, + 0.00036107542109675705, + 0.004669404588639736, + -0.009777393192052841, + 0.0013223678106442094, + -0.0049529713578522205, + 0.0035672737285494804, + 0.004000185988843441, + 0.002502952003851533, + 0.018964966759085655, + 0.011055335402488708, + -0.022004805505275726, + -0.01313482690602541, + 0.022488759830594063, + 0.0006555125582963228, + -0.002977454336360097, + 0.00025993649614974856, + -0.019191820174455643, + 0.0025502131320536137, + -0.008688495494425297, + -0.00730846868827939, + -0.0016768266214057803, + -0.011690525338053703, + -0.004472798202186823, + -0.0059133186005055904, + -0.011955187655985355, + -0.008068428374826908, + 0.0015813590725883842, + 0.008628000505268574, + 0.007588254753500223, + -0.009724460542201996, + 0.01978163979947567, + -0.012855040840804577, + 0.009951313957571983, + -0.004106051288545132, + -0.005864167120307684, + -0.0007396374712698162, + 0.0043858373537659645, + -0.005603285506367683, + -0.012575254775583744, + 0.00929343793541193, + 0.001728813978843391, + -0.011509042233228683, + -0.005206291563808918, + 0.011085581965744495, + -0.021914063021540642, + -0.0011503370478749275, + 0.001359231537207961, + 0.01246182806789875, + 0.010767986997961998, + 0.0014991245698183775, + -0.014639622531831264, + 0.0147984204813838, + -0.0058414819650352, + -0.002623940585181117, + -0.012930658645927906, + 0.003935911227017641, + -0.0019792981911450624, + -0.0044463318772614, + 0.0311545692384243, + -0.014117859303951263, + 0.005799891892820597, + 0.026859473437070847, + -0.006775362882763147, + -0.01659056358039379, + 0.017074517905712128, + 0.007096738554537296, + -0.0051231118850409985, + 0.028054235503077507, + 0.0024783762637525797, + 0.0061137061566114426, + 0.0021475479006767273, + 0.03532867506146431, + 0.002370620844885707, + -0.011539289727807045, + -0.002026559319347143, + 0.004026652313768864, + -0.0022080421913415194, + 0.0007755559636279941, + -0.01157709863036871, + -0.008779237046837807, + -0.0008421941893175244, + -0.03587312623858452, + -0.008053304627537727, + -0.01191737875342369, + -0.0015066864434629679, + -0.009981561452150345, + -6.575211591552943e-5, + 0.014208600856363773, + -0.012688681483268738, + 0.003417928470298648, + -0.004729898646473885, + 0.006828295066952705, + -0.022836601361632347, + 0.006673278287053108, + -0.022987836971879005, + -0.012991152703762054, + 0.0177853275090456, + 0.015214318409562111, + 0.033786073327064514, + 9.883494203677401e-5, + -0.006442644167691469, + -0.0038602931890636683, + 0.015925126150250435, + -0.020280716940760612, + -0.012590378522872925, + 0.012764299288392067, + -0.006820733193308115, + 0.01382294949144125, + -0.013679275289177895, + -0.01218960341066122, + -0.0056902458891272545, + 0.019796762615442276, + -0.01572852022945881, + -0.001405547489412129, + -0.014465701766312122, + 0.03236445412039757, + 0.007471047341823578, + -0.008522136136889458, + -0.02032608725130558, + -0.0071723563596606255, + 0.018707865849137306, + 0.006533385254442692, + -0.007512636948376894, + -0.022519007325172424, + -0.0024632527492940426, + -0.013936376199126244, + 0.013943938538432121, + 0.019736267626285553, + -0.015063082799315453, + 0.009754707105457783, + 0.008938034065067768, + -0.004060680512338877, + -0.02118813246488571, + -0.011894693598151207, + -0.017195507884025574, + 0.015123577788472176, + -0.003442504210397601, + 0.002183466451242566, + -0.03926080837845802, + 0.0035578215029090643, + -0.006075897254049778, + 0.009936190210282803, + -0.021384738385677338, + 0.009898381307721138, + 6.332259545160923e-6, + 0.009603471495211124, + 0.01557728461921215, + -0.0028942746575921774, + 0.012378647923469543, + 0.024152353405952454, + 0.021793074905872345, + -0.0014821105869486928, + 0.004136298317462206, + -0.016817418858408928, + 0.012658433988690376, + -0.02735855057835579, + 0.011509042233228683, + 0.0038754167035222054, + -0.012499636970460415, + 0.0004995506606064737, + 0.006068335380405188, + -0.0048660109750926495, + -0.0022231659386307, + 0.0007093903259374201, + 0.004824421368539333, + -0.0009371892083436251, + -0.01920694299042225, + -0.014359836466610432, + 0.011652716435492039, + -0.020825166255235672, + -0.027691269293427467, + 0.009316124022006989, + 0.03014129027724266, + 0.0017921439139172435, + -0.016212474554777145, + 0.0010378555161878467, + 0.011259503662586212, + -0.012333277612924576, + 0.0016314559616148472, + -0.008348214440047741, + -0.00956566259264946, + 0.0025691178161650896, + -0.0034595183096826077, + -0.010094988159835339, + 0.01858687587082386, + 0.028780167922377586, + 0.003330967854708433, + -0.030050547793507576, + -0.01873811148107052, + -0.0018639808986335993, + 0.00983788724988699, + 0.0007093903259374201, + 0.020643683150410652, + 0.005236538592725992, + 0.01975139230489731, + 0.008287720382213593, + -0.0013535601319745183, + -0.03148728981614113, + -0.014231286011636257, + -0.017528226599097252, + 0.004552196711301804, + 0.009550538845360279, + 0.003153265919536352, + -0.016030991449952126, + -0.03611510246992111, + -0.002811094978824258, + 0.013195320963859558, + -0.0023630589712411165, + -0.009263191372156143, + -0.024227971211075783, + -0.006979531142860651, + -0.021747704595327377, + 0.02300296165049076, + -0.002113519934937358, + -0.0024235532619059086, + 0.0019887504167854786, + -0.02282147854566574, + -0.011531727388501167, + 0.01314995065331459, + 0.001395149971358478, + -0.016711553558707237, + 0.028810415416955948, + 0.0006342450506053865, + 0.010087425820529461, + 0.009391741827130318, + -0.022730736061930656, + -0.02645113691687584, + -0.003826264990493655, + -0.0034254903439432383, + 0.02133936807513237, + 0.007985249161720276, + 0.003966158255934715, + -0.013573410920798779, + -0.0033479819539934397, + 0.019993368536233902, + -0.004707213491201401, + 0.019978245720267296, + 0.012855040840804577, + -0.007316030561923981, + -0.013437298126518726, + -0.01840539276599884, + -0.00497187627479434, + 0.0147984204813838, + 0.008612877689301968, + -0.0025313086807727814, + -0.006756457965821028, + -0.010389897972345352, + 0.00039557606214657426, + -0.005773425567895174, + -0.02239801734685898, + -0.0020454637706279755, + 0.0162275992333889, + 0.011017526499927044, + -0.01869274117052555, + 0.02424309402704239, + 0.014450578019022942, + -0.019993368536233902, + -0.015637779608368874, + -0.011448548175394535, + 0.0009107229416258633, + -0.016348587349057198, + 0.0009286821587011218, + 0.000188926569535397, + -0.016696428880095482, + -0.007992810569703579, + -0.007070272229611874, + -0.023214690387248993, + 0.012560131028294563, + 0.015955373644828796, + -0.004034214187413454, + -0.005962470546364784, + 0.024288464337587357, + -0.004559758584946394, + 0.020628560334444046, + -0.00930856168270111, + -0.007304687984287739, + -0.006332998163998127, + 0.0083709005266428, + -0.007834012620151043, + 0.006083459127694368, + 0.003901883028447628, + 0.013293624855577946, + -0.0018025414319708943, + -0.01960015669465065, + -0.012673557735979557, + -0.02793324738740921, + -0.007486170623451471, + -0.012348401360213757, + -0.006117486860603094, + -0.0030039206612855196, + 0.001950941514223814, + -0.007179918233305216, + -0.005610847380012274, + 0.006317874416708946, + 0.004329123999923468, + -0.004480359610170126, + 0.01026890892535448, + 0.015085767954587936, + -0.014866476878523827, + -0.0019282561261206865, + 0.005879290867596865, + 0.010389897972345352, + -0.022670242935419083, + -0.01565290242433548, + 0.006699744611978531, + 0.010200852528214455, + 0.02217116393148899, + 0.015698272734880447, + -0.001026512822136283, + 0.0006578756147064269, + -0.01695352979004383, + 0.00453707342967391, + -0.0035408076364547014, + -0.0064275204204022884, + -0.004571101162582636, + 0.015713397413492203, + 0.021974558010697365, + 0.011425863020122051, + 0.003648563055321574, + 0.005240319762378931, + -0.013391927815973759, + 0.022730736061930656, + 0.006457767449319363, + 0.00265796878375113, + -0.004896258004009724, + 0.002138095675036311, + 0.003901883028447628, + 0.00929343793541193, + -0.011085581965744495, + -0.019479166716337204, + -0.004302657674998045, + -0.022156041115522385, + 0.01568314991891384, + -0.03923055902123451, + 0.03917006403207779, + 0.014760611578822136, + 0.01097971759736538, + 0.006147734355181456, + 0.005584381055086851, + 0.02380451001226902, + 0.032666925340890884, + -0.022564377635717392, + -0.004934066906571388, + 0.004525730386376381, + -0.0034992177970707417, + 0.014745487831532955, + -0.03656880930066109, + 0.007516418118029833, + 0.006091021001338959, + 0.0168779119849205, + 0.005622189957648516, + 0.005395336076617241, + 0.0048206401988863945, + -0.0021872473880648613, + -0.03484472259879112, + -0.025422733277082443, + 0.001587030361406505, + 0.005535229109227657, + -0.012658433988690376, + 0.012832355685532093, + -0.0010718835983425379, + 0.00416654534637928, + 0.0055125439539551735, + 0.005539010278880596, + -0.011826637201011181, + 0.0083709005266428, + 0.0037790038622915745, + -0.021914063021540642, + -0.009777393192052841, + -0.009800078347325325, + 0.0012051600497215986, + -0.0033631054684519768, + 0.0023479354567825794, + 0.014102735556662083, + 0.002769505139440298, + -0.03209223225712776, + 0.0012703804532065988, + 0.031184816733002663, + -0.00147643918171525, + -0.013195320963859558, + -0.0027430388145148754, + 0.0006848144694231451, + -0.013112141750752926, + -0.014896723441779613, + 0.01728624850511551, + 0.009232943877577782, + -0.01905570738017559, + 0.010284032672643661, + -0.025331992655992508, + -0.0069492836482822895, + 0.002916960045695305, + -0.017437484115362167, + -0.009142202325165272, + 0.010715054348111153, + 0.017044272273778915, + 0.006472891196608543, + 0.025044644251465797, + 0.015478981658816338, + -0.030957963317632675, + 0.0025653368793427944, + 0.00248593813739717, + -0.004007747862488031, + -0.012650872580707073, + 0.0034746418241411448, + 0.015191633254289627, + 0.009913505055010319, + 0.0013374913251027465, + 0.0020794919691979885, + 0.012076176702976227, + -0.024485072121024132, + 0.013868320733308792, + -0.0016862788470461965, + 0.0047752694226801395, + -0.014329589903354645, + 0.004310219548642635, + -0.01507064513862133, + 0.016651058569550514, + -0.003412257181480527, + 0.001319532166235149, + -0.015985621139407158, + -0.006752677261829376, + 0.005954908672720194, + -0.006465329322963953, + 0.010193291120231152, + -0.012650872580707073, + 0.02380451001226902, + -0.006828295066952705, + 0.02837183140218258, + -0.006828295066952705, + 0.010646998882293701, + -0.015047959052026272, + 0.00019566128321457654, + -0.008083552122116089, + -0.0074634854681789875, + 0.014269094914197922, + -0.011539289727807045, + -0.001138049177825451, + 0.0022571939043700695, + 0.018859101459383965, + 0.0006885954062454402, + -0.009104393422603607, + 0.0026315024588257074, + -0.016514945775270462, + 0.0065144808031618595, + -0.0021966996137052774, + -0.03047400899231434, + 0.005493639502674341, + 0.012560131028294563, + -0.012726490385830402, + 0.003194855758920312, + -0.019917750731110573, + 0.0034651895985007286, + -0.005278128664940596, + -0.0001279596472159028, + 0.005731835961341858, + 0.020159728825092316, + 0.004117393866181374, + -0.004291315097361803, + -0.019509414210915565, + 0.011236817575991154, + 0.0011654606787487864, + 0.05344672128558159, + 0.013505354523658752, + 0.008930472657084465, + -0.012431580573320389, + -0.005013465881347656, + -0.010646998882293701, + 0.012832355685532093, + -0.0017524445429444313, + -0.025876440107822418, + -0.006813171785324812, + -0.006068335380405188, + -0.0004716665716841817, + 0.0075958166271448135, + 0.008832168765366077, + 0.008454079739749432, + 0.004106051288545132, + -0.004143860191106796, + -0.005304594524204731, + -0.015698272734880447, + 0.02369864657521248, + -0.0015397692332044244, + -0.00859019160270691, + 0.00022626289865002036, + -0.012212288565933704, + 0.021248625591397285, + 0.024878283962607384, + -0.0070286826230585575, + -0.03796017915010452, + -0.0003861238365061581, + -0.00015359882672782987, + 0.0014282328775152564, + 0.006605222355574369, + -0.03442126139998436, + -0.013951499946415424, + 0.0003988843527622521, + 0.03209223225712776, + -0.004140079487115145, + 0.013187759555876255, + -0.009164887480437756, + -0.004140079487115145, + -0.02242826484143734, + -0.008575068786740303, + 0.019479166716337204, + 0.0030908810440450907, + -0.020189976319670677, + -0.006385930348187685, + -0.007992810569703579, + 0.014337151311337948, + -0.014148106798529625, + -0.00021811034821439534, + 0.013036523945629597, + -0.0061250487342476845, + -0.0018847758183255792, + -0.010405020788311958, + 0.01876835897564888, + -0.024727048352360725, + 0.010548694990575314, + -0.0260881707072258, + -0.017331618815660477, + -0.025604216381907463, + 0.0022363991010934114, + 0.0007590145105496049, + 0.020961279049515724, + 0.011062896810472012, + -0.007195041980594397, + 0.0024764856789261103, + 0.0002760052739176899, + -0.010223538614809513, + -0.0019698459655046463, + -0.020855413749814034, + -0.0022080421913415194, + -0.006779143586754799, + -0.0030757575295865536, + -0.01314995065331459, + -0.0015104672638699412, + -0.002553994068875909, + 0.0032799257896840572, + -0.009444674476981163, + -0.02702583186328411, + -0.010223538614809513, + 0.003087100340053439, + -0.0013866430381312966, + -0.0037071669939905405, + 0.004862230271100998, + -0.004090927541255951, + -0.005883071571588516, + -0.006680840160697699, + -0.0009329356835223734, + -0.006968188099563122, + 0.028780167922377586, + -0.008469203487038612, + -0.000553428428247571, + -0.008839731104671955, + 0.025513475760817528, + 0.002268536714836955, + 0.0014546990860253572, + -0.01445814035832882, + 0.00643886299803853, + 0.006718649063259363, + 0.014518634416162968, + 0.007115643005818129, + -0.008476764895021915, + -0.020371459424495697, + 0.0036580152809619904, + 0.0041287364438176155, + -0.02214091643691063, + -0.005459611304104328, + -0.014904285781085491, + -0.006132610607892275, + 0.0012911753728985786, + -0.023290308192372322, + 0.019766515120863914, + -0.016651058569550514, + 0.021399861201643944, + 0.007879383862018585, + 0.01702914759516716, + 0.018526382744312286, + -0.007312249857932329, + 0.012522322125732899, + 0.021006649360060692, + 0.0019452701089903712, + 0.032697174698114395, + 0.015426049008965492, + -0.005920880474150181, + 0.011675401590764523, + 0.004858449101448059, + -0.007017340045422316, + 0.028976773843169212, + -0.00189517333637923, + 0.0021607810631394386, + 0.005663779564201832, + 0.0005713876453228295, + 0.013354118913412094, + 0.003977500833570957, + -0.02351716347038746, + -0.013081894256174564, + 0.015531914308667183, + -0.01530505996197462, + 0.00627628481015563, + -0.002457581227645278, + -0.010851167142391205, + 0.04791149124503136, + 0.007758395280689001, + 0.006885008420795202, + 0.01677204668521881, + 0.004295095801353455, + -0.007849136367440224, + 0.016454452648758888, + -0.011652716435492039, + 0.003261021338403225, + 0.002497280715033412, + -0.003094661980867386, + 0.0016976215410977602, + -0.0005548462504521012, + -0.0028432325925678015, + 0.016288092359900475, + -0.006212009582668543, + 0.0010633765487000346, + -0.015637779608368874, + 0.0033952430821955204, + 0.001698566833510995, + 0.00410227058455348, + 4.953562165610492e-5, + 0.01721063069999218, + 0.003100333269685507, + -0.0010974046308547258, + 0.00842383224517107, + 0.002572898520156741, + -4.507535049924627e-5, + 0.002896165009588003, + -0.014836229383945465, + -0.028538189828395844, + -0.022080423310399055, + 0.0018053770763799548, + 0.004983218852430582, + 0.018178539350628853, + 0.008408709429204464, + 0.0018913923995569348, + -0.002397086936980486, + -0.006760239135473967, + 0.0012807779712602496, + 0.04198304936289787, + 0.011040211655199528, + 0.005130673758685589, + 0.012643310241401196, + 0.021097389981150627, + -0.010760425589978695, + -0.0009887039195746183, + 0.006329216994345188, + 0.01278698444366455, + 0.013853196986019611, + 0.015849508345127106, + -0.016000743955373764, + -0.014072488993406296, + -0.021460356190800667, + -0.0010747192427515984, + 0.004283753223717213, + -0.015131139196455479, + -0.025679834187030792, + 0.004552196711301804, + 0.03148728981614113, + 0.006862323265522718, + -0.005361308343708515, + -0.0035200126003473997 + ], + "b35d6054-3c4a-4bc5-acad-48d3e2306141": [ + -0.029205068945884705, + -0.03384653478860855, + -0.01130227092653513, + 0.024608811363577843, + -0.035293225198984146, + -0.014082630164921284, + -0.006272760685533285, + 0.010496042668819427, + -0.024412905797362328, + 0.08185858279466629, + -0.00048411395982839167, + 0.011769431643188, + 0.01411276962608099, + -0.011392689310014248, + 0.004106491804122925, + -0.013321610167622566, + -0.024443045258522034, + 0.025663690641522408, + -0.02408137172460556, + -0.005639833398163319, + 0.061725471168756485, + -0.004166770726442337, + -0.026221269741654396, + 0.01689312793314457, + 0.021308548748493195, + -0.02329774759709835, + -0.008491773158311844, + -0.008152704685926437, + -0.046474941074848175, + 0.00044243683805689216, + 0.0002656033611856401, + 0.031224407255649567, + 0.0012036919360980392, + 0.014964207075536251, + -0.004080120008438826, + -0.046022847294807434, + -0.013434632681310177, + 0.027155591174960136, + -0.021670222282409668, + -0.015047090128064156, + -0.016697222366929054, + 0.04129096493124962, + -0.0072485231794416904, + -0.015506716445088387, + -0.036317963153123856, + 0.009712418541312218, + -0.032731376588344574, + -0.005692577455192804, + 0.007305034436285496, + -0.027472054585814476, + 0.030712038278579712, + 0.027728239074349403, + -0.007203313987702131, + 0.009863114915788174, + 0.032640960067510605, + 0.016908198595046997, + -0.019891997799277306, + 0.08469168841838837, + 0.025708898901939392, + -0.05232198163866997, + -0.00494285998865962, + -0.04204444959759712, + 0.0136079341173172, + 0.015838248655200005, + 0.006604293826967478, + -0.006939594633877277, + -0.016832849010825157, + 0.04126082360744476, + -0.028165260329842567, + 0.029431113973259926, + -8.247126243077219e-5, + 0.005443927366286516, + -0.04771065339446068, + 0.028511863201856613, + 0.0030290086288005114, + -0.012108500115573406, + 0.03095315396785736, + 0.010465903207659721, + -0.0010765413753688335, + -0.0015587715897709131, + 0.013781236484646797, + -0.02518146112561226, + -0.004234584514051676, + 0.01627526991069317, + 0.043189745396375656, + 0.013472307473421097, + -0.038970232009887695, + -0.04722842574119568, + -0.018806979060173035, + -0.016456106677651405, + 0.004645233508199453, + 0.011234457604587078, + 0.013005146756768227, + 0.01713424362242222, + -0.0019383395556360483, + 0.0065289451740682125, + -0.00603918032720685, + 0.0033661930356174707, + -0.016923267394304276, + -0.02839130535721779, + -0.011015946976840496, + 0.006415922660380602, + -0.022016825154423714, + -0.008823306299746037, + -0.01618485152721405, + -1.6673793652444147e-5, + 0.041773196309804916, + 0.0392414852976799, + -0.009712418541312218, + -0.004272258374840021, + -0.025392435491085052, + -0.05355769768357277, + 0.04951901733875275, + -0.0038879814092069864, + -0.0512671023607254, + -0.032791655510663986, + -0.013223657384514809, + -0.001142471213825047, + -0.000108254564111121, + -0.018490515649318695, + 0.043732255697250366, + -0.035142529755830765, + 0.02852693200111389, + 0.0275926124304533, + -0.0028199166990816593, + 0.037644099444150925, + 0.005854576360434294, + 0.024895135313272476, + 0.03794549033045769, + 0.031797055155038834, + 0.005443927366286516, + -0.01922893151640892, + 0.027954284101724625, + -0.03661935776472092, + -0.014971742406487465, + 0.031857334077358246, + 0.012296871282160282, + 0.06775335222482681, + -0.017495915293693542, + -0.00557201961055398, + -0.02399095520377159, + 0.0018036541296169162, + -0.013404494151473045, + 0.002955544041469693, + 0.008491773158311844, + 0.009162374772131443, + -0.03438904508948326, + 0.06992338597774506, + -0.07185230404138565, + 0.022544262930750847, + -0.03297249227762222, + 0.02055506408214569, + -0.031133990734815598, + -0.0028029633685946465, + 0.03541378304362297, + 0.00525932339951396, + -0.011430364102125168, + 0.03282179683446884, + -0.0012084011686965823, + 0.06606554239988327, + 0.014926533214747906, + -0.03996483236551285, + -0.0003515477292239666, + 0.010149439796805382, + 0.02337309718132019, + 0.004132864065468311, + 0.013103099539875984, + 0.02634182758629322, + -0.009026747196912766, + 0.014602534472942352, + 0.013359284959733486, + 0.0015540622407570481, + 0.05036292225122452, + -0.0033869140315800905, + 0.010209718719124794, + -0.03643852099776268, + 0.0350521095097065, + 0.008175309747457504, + 0.03698103129863739, + -0.03258068114519119, + -0.029446184635162354, + -0.016214990988373756, + 0.03057641163468361, + 0.010194648988544941, + -0.016667082905769348, + 0.016395827755331993, + 0.005865878891199827, + -0.025814387947320938, + 0.016320480033755302, + 0.010111765004694462, + 0.00309870601631701, + -0.020283808931708336, + 0.0034019835293293, + 0.019876927137374878, + -0.03291221335530281, + -0.02424713969230652, + 0.01133994571864605, + -0.03737284243106842, + -0.0025561971124261618, + 0.027894005179405212, + -0.020344087854027748, + -0.017390428110957146, + -0.024066302925348282, + 0.03637824207544327, + -0.02564861997961998, + 0.013570260256528854, + -0.007708149030804634, + -0.02266482077538967, + 0.046866752207279205, + 0.0027445682790130377, + 0.0681753009557724, + -0.039060648530721664, + 0.03167649731040001, + -0.013185983523726463, + -0.03276151791214943, + 0.009380885399878025, + 0.0016284688608720899, + 0.009508977644145489, + 0.008491773158311844, + 0.0110988300293684, + -0.010028881952166557, + -0.05877181142568588, + -0.011249527335166931, + -0.0017593868542462587, + -0.03993469104170799, + 0.0046414658427238464, + -0.03444932401180267, + 0.019650882109999657, + 0.002367825713008642, + -0.02274017035961151, + 0.017239730805158615, + 0.005210347007960081, + 0.06528192013502121, + -0.03493155166506767, + 0.00216815248131752, + 0.02439783699810505, + -0.005960064474493265, + -0.004223281983286142, + -0.0020381761714816093, + -0.017405496910214424, + 0.007640335243195295, + 0.014677883125841618, + -0.045239225029945374, + -0.025211600586771965, + -0.018324749544262886, + 0.007316336967051029, + 0.001527690328657627, + 0.04704758897423744, + 0.0026371965650469065, + -0.014594999141991138, + -0.018023354932665825, + 0.02745698392391205, + -0.021564733237028122, + 0.024970484897494316, + -0.040778595954179764, + 0.04566117748618126, + 0.04496796801686287, + -0.02720079943537712, + -0.016380758956074715, + 0.021383896470069885, + 0.013841514475643635, + 0.001195215154439211, + -0.00972748827189207, + 0.009810371324419975, + 0.01532587967813015, + -0.045781731605529785, + 0.021986685693264008, + -0.02423206903040409, + 0.033967092633247375, + 0.031013432890176773, + 0.040627896785736084, + -0.018038425594568253, + -0.02393067628145218, + 0.016169782727956772, + -0.026598012074828148, + -0.03134496510028839, + -0.004272258374840021, + -0.005398718174546957, + 0.013728491961956024, + -0.003771191230043769, + -0.03869897499680519, + -0.050935570150613785, + 0.04451587796211243, + -0.0019628277514129877, + 0.010593995451927185, + 0.012673613615334034, + -0.014836114831268787, + -0.019334418699145317, + -0.02023860067129135, + -0.013321610167622566, + -0.003239984391257167, + -0.016606803983449936, + 0.018415167927742004, + 0.04620368406176567, + 0.011648873798549175, + 0.029280416667461395, + -0.021700359880924225, + 0.002358407247811556, + -0.004645233508199453, + -0.012673613615334034, + -0.048434000462293625, + 0.012613334693014622, + 0.007617730647325516, + -0.018490515649318695, + -0.002691824221983552, + -0.0142257921397686, + 0.04141152277588844, + 0.040838874876499176, + -0.030531201511621475, + 0.022966215386986732, + 0.0448775514960289, + -0.010217253118753433, + -0.03981413319706917, + -0.020193390548229218, + -0.014323744922876358, + 0.017465775832533836, + -0.04306918755173683, + 0.004321235232055187, + -0.001559713389724493, + -0.018822049722075462, + -0.03978399559855461, + 0.0017254800768569112, + -0.049458738416433334, + 0.03794549033045769, + 0.034600019454956055, + -0.0672108381986618, + 0.008597261272370815, + -0.03634810447692871, + -0.0074670338071882725, + -0.00915483944118023, + -0.028994092717766762, + -0.007986938580870628, + -0.013879189267754555, + -0.014097699895501137, + -0.01689312793314457, + -0.0158081091940403, + -0.04951901733875275, + -0.01782744936645031, + -0.02955167181789875, + -0.011287201195955276, + -0.03550419956445694, + -0.020509853959083557, + 0.017239730805158615, + -0.022725099697709084, + -0.034991830587387085, + -0.04526936262845993, + -0.0002724318183027208, + 0.019213860854506493, + 0.028165260329842567, + -0.008936328813433647, + 0.0009531581890769303, + -0.012485242448747158, + 0.03619740903377533, + -0.01805349439382553, + 0.028994092717766762, + -0.01915358193218708, + -0.02299635484814644, + 0.015687553212046623, + 0.02471430040895939, + 0.012583195231854916, + -0.01814391277730465, + -0.06751223653554916, + -0.004328770097345114, + -0.06045961752533913, + 0.0005877180956304073, + 0.010865249671041965, + -0.012018081732094288, + -0.03746326267719269, + -0.01665201224386692, + 0.025769177824258804, + -0.014753231778740883, + 0.0004892941797152162, + -0.02516639046370983, + -0.008974003605544567, + 0.016682151705026627, + -0.05259323492646217, + 0.032339565455913544, + 0.0053007653914391994, + -0.027381636202335358, + 0.028406374156475067, + -0.013110634870827198, + -0.00648750364780426, + 0.014949137344956398, + -0.001058646128512919, + 0.0256335511803627, + 0.018279539421200752, + 0.018189121037721634, + -0.015898527577519417, + -0.040627896785736084, + -0.01129473652690649, + -0.02602536231279373, + 0.009335676208138466, + -0.02775837853550911, + 0.04204444959759712, + 0.007097826339304447, + -0.012997612357139587, + 0.013773701153695583, + 0.01423332653939724, + 0.010292601771652699, + 0.006992338690906763, + -0.003573401365429163, + -0.020675621926784515, + -0.01188245415687561, + -0.01097827311605215, + 0.0047507211565971375, + -0.038819532841444016, + 0.0058131348341703415, + -0.004524676129221916, + 0.00977269746363163, + -0.011038552038371563, + 0.015536855906248093, + 0.005417555570602417, + 0.01861107349395752, + 0.01782744936645031, + 0.0031231942120939493, + 0.030440783128142357, + -0.012289335951209068, + 0.08306416124105453, + -0.02359914220869541, + 0.004795930348336697, + 0.017420567572116852, + 0.02148938551545143, + -0.02368956059217453, + 0.02962701953947544, + -0.029747577384114265, + 0.027065172791481018, + 0.02735149674117565, + 0.005153835751116276, + -0.011822176165878773, + -0.017963076010346413, + 0.03033529594540596, + 0.028873534873127937, + -0.019982416182756424, + -0.0063104345463216305, + -0.01877683959901333, + -0.041954029351472855, + 0.04168277606368065, + 0.00713550066575408, + -0.006962199229747057, + -0.006321737077087164, + -0.0036110756918787956, + 0.0006847292534075677, + -0.0006291597383096814, + -0.0011707269586622715, + -0.033665698021650314, + -0.026055501773953438, + -0.006517643108963966, + 0.02815018966794014, + 0.011370085179805756, + 0.004053747747093439, + -0.006284062750637531, + 0.03375611826777458, + -0.07185230404138565, + -0.0013694585068151355, + -0.027004893869161606, + -0.02117292210459709, + 0.019952276721596718, + -0.011558456346392632, + 0.005330904386937618, + -0.03776465728878975, + -0.002818032866343856, + 0.028752978891134262, + 0.0392414852976799, + -0.010390554554760456, + 0.00556825241073966, + -0.04415420815348625, + -0.0011773199075832963, + -0.016230061650276184, + 0.005342206917703152, + 0.022468915209174156, + -0.04599270969629288, + -0.01609443500638008, + -0.027863865718245506, + 0.014157978817820549, + 0.007934194058179855, + -0.0014843649696558714, + -0.03149566426873207, + -0.007836241275072098, + -0.004535978194326162, + -0.012183848768472672, + -0.02462388202548027, + 0.004528443329036236, + 0.02275523915886879, + 0.02799949236214161, + -0.014956672675907612, + -0.005602159071713686, + -0.03496169298887253, + -0.027110381051898003, + -0.04098957031965256, + 0.03390681371092796, + -0.0003254112380091101, + 0.0016765035688877106, + -0.014918997883796692, + 0.043039049953222275, + 0.009041816927492619, + -0.010435763746500015, + 0.013344215229153633, + -0.03063669055700302, + 0.013125704601407051, + 0.000605142442509532, + 0.014082630164921284, + -0.013931932859122753, + 0.00666457274928689, + -0.02564861997961998, + -0.023026494309306145, + 0.032731376588344574, + 0.0027426844462752342, + 0.017405496910214424, + 0.023327887058258057, + -0.007813637144863605, + -0.030772317200899124, + 0.009448698721826077, + -0.030516132712364197, + 0.01192012894898653, + 0.010533716529607773, + 0.005782995373010635, + -0.006457364186644554, + -0.020072834566235542, + 0.03791535273194313, + 0.030787386000156403, + -0.021293478086590767, + 0.017812378704547882, + -0.014760766178369522, + 0.0016331782098859549, + -0.006449829321354628, + 0.018972745165228844, + -0.005929925013333559, + 2.7284389943815768e-5, + 0.01266607828438282, + -0.0013270750641822815, + -0.024910205975174904, + 0.005602159071713686, + 0.004777093417942524, + 0.023162120953202248, + 0.04228556528687477, + 0.025000624358654022, + -0.035685036331415176, + 0.015838248655200005, + -0.003910585772246122, + -0.005127463489770889, + 0.009177444502711296, + 0.02893381379544735, + 0.008220518939197063, + -0.028572142124176025, + -0.014044955372810364, + -0.011822176165878773, + 0.030742177739739418, + -0.010646739043295383, + -0.0010934947058558464, + 0.02063041180372238, + -0.017706891521811485, + 0.033424582332372665, + -0.012530451640486717, + 0.005082254763692617, + 0.030199669301509857, + -0.011829710565507412, + -0.01547657698392868, + 0.006076854653656483, + -0.018942605704069138, + -0.04581187292933464, + 0.0003680302179418504, + 0.005285695660859346, + 0.013314075767993927, + 0.0006253923638723791, + -0.01501695066690445, + 0.002045711036771536, + -0.0632927194237709, + 0.028994092717766762, + 0.005372346378862858, + 0.033032771199941635, + -0.0028707769233733416, + -0.0011688432423397899, + 0.039693575352430344, + 0.024834858253598213, + 0.010337810963392258, + -0.0006866129697300494, + 0.0046565355733036995, + -0.028270747512578964, + -0.010074091143906116, + 0.008115030825138092, + 0.014949137344956398, + -0.02010297402739525, + 0.03261081874370575, + -0.05006152763962746, + -0.006864245980978012, + 0.010767296887934208, + -0.025769177824258804, + -0.01627526991069317, + 0.01650131680071354, + 0.029732508584856987, + -0.001964711584150791, + 0.029672229662537575, + -0.01641089841723442, + 0.011128969490528107, + -0.029265347868204117, + 0.025859596207737923, + -0.003464146051555872, + 0.003287077182903886, + 0.010699483565986156, + 0.014286071062088013, + 0.01726987026631832, + 0.02361421287059784, + 0.0029385904781520367, + -0.0023489887826144695, + -0.02221273072063923, + 0.015973877161741257, + 0.011626269668340683, + 0.011972872540354729, + -0.020856458693742752, + 0.007086524274200201, + -0.0017509101890027523, + -0.01734521985054016, + 0.016290340572595596, + -0.005933692213147879, + 0.0033153328113257885, + -0.016682151705026627, + 0.00972748827189207, + 0.015190252102911472, + 0.02266482077538967, + 0.008446563966572285, + 0.04379253461956978, + -0.027306286618113518, + 0.03942232206463814, + -0.010880319401621819, + 0.04560089856386185, + 0.04719828441739082, + -0.05268365517258644, + 0.011588595807552338, + -0.01102348230779171, + 0.006592991761863232, + -0.007693079300224781, + -0.008815771900117397, + 0.0014297373127192259, + 0.002816149266436696, + 0.011490642093122005, + -0.015084764920175076, + 0.002452592831104994, + -0.0006272760801948607, + 0.020841388031840324, + -0.011656409129500389, + -0.0023131982889026403, + -0.017405496910214424, + 0.011400224640965462, + 0.03903051093220711, + -0.013306540437042713, + 0.02588973566889763, + 0.02643224410712719, + 0.01861107349395752, + 0.033424582332372665, + 0.02986813522875309, + -0.020901666954159737, + 0.009493907913565636, + 0.001810247078537941, + 0.020208461210131645, + 0.009840510785579681, + -0.017887728288769722, + -0.013057890348136425, + 0.02822553925216198, + -0.003661935916170478, + -0.0035394947044551373, + 0.015823179855942726, + -0.021233201026916504, + 0.031555939465761185, + 0.0037354007363319397, + 0.0505136176943779, + 0.006449829321354628, + -0.013246261514723301, + 0.019726229831576347, + 0.017767170444130898, + 0.029898274689912796, + 0.011272131465375423, + -0.010767296887934208, + -0.005349741782993078, + 0.0009432687074877322, + 0.027095312252640724, + -0.01149817742407322, + 0.017767170444130898, + 0.008891119621694088, + 0.003509355243295431, + -0.016214990988373756, + -0.02798442356288433, + -0.0293105561286211, + 0.003844655817374587, + 0.008604795671999454, + -0.030787386000156403, + -0.023795047774910927, + -0.011000877246260643, + 0.012492776848375797, + -0.04752981662750244, + -0.0367700569331646, + 0.00030916419927962124, + 0.02634182758629322, + -0.008092425763607025, + 0.013653143309056759, + -0.010443299077451229, + -0.008597261272370815, + 0.0028519397601485252, + -0.0028820792213082314, + 0.009915859438478947, + -0.008597261272370815, + -0.00973502267152071, + 0.0176616832613945, + -0.000866036512888968, + -0.02180584892630577, + 0.033967092633247375, + 0.0031853567343205214, + -0.02299635484814644, + -0.017375357449054718, + -0.03182719647884369, + -0.008612331002950668, + 0.0020532459020614624, + 0.007798566948622465, + -0.005892250686883926, + 0.028104981407523155, + 0.007568754255771637, + 0.004626396577805281, + -0.05018208548426628, + 0.0006790781044401228, + -0.013683282770216465, + 0.017450707033276558, + -0.028722839429974556, + 0.01192766334861517, + -0.010413159616291523, + -0.04463643580675125, + -0.007067686878144741, + 0.02587466686964035, + -0.009599396027624607, + -0.01758633367717266, + -0.0035545642022043467, + 0.003827702486887574, + 0.037101589143276215, + -0.008642470464110374, + -0.010631670244038105, + -0.010156974196434021, + 0.007689311634749174, + -0.04270751401782036, + 0.00930553674697876, + 0.008288332261145115, + -0.010209718719124794, + 0.021127711981534958, + 0.02620619907975197, + -0.008695214055478573, + 0.0015163880307227373, + -0.03444932401180267, + 0.014127839356660843, + -0.003479215782135725, + 0.01696847565472126, + 0.011852314695715904, + 0.0005453345947898924, + 0.02252919413149357, + 0.016938338056206703, + -0.03212859109044075, + -0.00022216026263777167, + 0.007350243628025055, + -0.022242870181798935, + 0.01719452254474163, + 0.009855580516159534, + -0.022544262930750847, + 0.0019571767188608646, + 0.0226798914372921, + -0.007553684525191784, + 0.026492523029446602, + -0.04276779294013977, + -0.020419437438249588, + -0.00012997612066101283, + 0.003970864694565535, + 0.016606803983449936, + -0.005417555570602417, + 0.01601908542215824, + -0.019741300493478775, + 0.02766796015202999, + 0.03493155166506767, + 0.008137634955346584, + -0.0033567745704203844, + -0.009380885399878025, + -0.06703000515699387, + -0.008416424505412579, + -0.0023998490069061518, + 0.01039808988571167, + -0.006442294456064701, + -0.0070601520128548145, + -0.06214742362499237, + 0.022077104076743126, + -0.021233201026916504, + 0.0052216495387256145, + -0.005108626559376717, + 0.01114403922110796, + 0.019123442471027374, + -0.0043626767583191395, + 0.00617480743676424, + 0.0123872896656394, + 0.0015776086365804076, + -0.00418560765683651, + -0.007240988314151764, + 0.03791535273194313, + -2.3870161385275424e-5, + 0.035443924367427826, + 0.027019962668418884, + -0.037885211408138275, + 0.006295365281403065, + -0.003452843753620982, + -0.029837995767593384, + 0.02400602400302887, + 0.02572396956384182, + -0.009049352258443832, + -0.02714052051305771, + -0.0012036919360980392, + -0.020615343004465103, + -0.043189745396375656, + 0.0034697973169386387, + -0.012010547332465649, + 0.022393567487597466, + 0.008778097108006477, + 0.010993342846632004, + -0.0007690253551118076, + -0.006898153107613325, + -0.0059073204174637794, + 0.010970737785100937, + 0.02705010212957859, + 0.005511741153895855, + -0.010744692757725716, + -0.006909455172717571, + 0.008665074594318867, + 0.00510109169408679, + 0.009471302852034569, + -0.005978901404887438, + 0.020931806415319443, + -5.309713014867157e-5, + 0.005877180956304073, + -0.009230188094079494, + -0.01814391277730465, + -0.009094560518860817, + -0.020313948392868042, + 0.03595629334449768, + -0.022303149104118347, + 0.04189375042915344, + -0.003030892461538315, + 0.01648624613881111, + -0.03176691755652428, + 0.021127711981534958, + -0.02049478515982628, + -0.05376867204904556, + -0.003160868538543582, + -0.01876177079975605, + 0.01395453792065382, + 0.007003640756011009, + -0.0015559459570795298, + 0.006152202840894461, + 0.005274393130093813, + 0.035383645445108414, + 0.032791655510663986, + -0.007821171544492245, + 0.01609443500638008, + 0.034991830587387085, + -0.008823306299746037, + 0.012613334693014622, + -0.023026494309306145, + 0.02891874499619007, + -0.015235461294651031, + 0.012794171459972858, + 0.037794794887304306, + -0.012206452898681164, + -0.011822176165878773, + 0.009501442313194275, + -0.017797309905290604, + -0.0012300638481974602, + 0.006238853558897972, + 0.001188622205518186, + 0.022875797003507614, + 0.05006152763962746, + 0.020901666954159737, + -0.021097572520375252, + 0.026221269741654396, + 0.004754488822072744, + -0.018008286133408546, + 0.010684413835406303, + 0.014564860612154007, + -0.003187240567058325, + -0.010465903207659721, + 0.011490642093122005, + -0.03152580186724663, + -0.011046086438000202, + -0.017104104161262512, + -0.012899658642709255, + -0.002414918737486005, + 0.02971743792295456, + 0.004276026040315628, + -0.0007087466074153781, + -0.002058897167444229, + 0.004826069809496403, + 0.0021568501833826303, + 0.009282931685447693, + -0.017149312421679497, + -0.033575281500816345, + -0.03794549033045769, + 0.028346097096800804, + -0.003629912855103612, + -0.022936075925827026, + -0.018324749544262886, + 0.01594373770058155, + 0.010051487013697624, + -0.03110385127365589, + -0.027743307873606682, + -0.022001754492521286, + 0.043280165642499924, + -0.027110381051898003, + -0.008273262530565262, + -0.014082630164921284, + 0.013095565140247345, + -0.0069848038256168365, + 0.012605800293385983, + 0.029837995767593384, + 0.02322239987552166, + -0.016365688294172287, + 0.05262337625026703, + 0.0034340068232268095, + 0.0157026220113039, + -0.024412905797362328, + 0.004912720527499914, + -0.0380057692527771, + 0.004976766649633646, + 0.022107241675257683, + 0.030772317200899124, + 0.00789652019739151, + -0.021625012159347534, + 0.015913598239421844, + -0.040145669132471085, + -0.007335173897445202, + -0.002154966350644827, + 0.022785378620028496, + -0.011995477601885796, + -0.00478839548304677, + 0.02032901905477047, + -0.03050106205046177, + -0.009810371324419975, + -0.022890865802764893, + -0.017495915293693542, + 0.00042901537381112576, + -0.023674489930272102, + -0.031857334077358246, + 0.000365204643458128, + -0.009652139618992805, + 0.026613080874085426, + -0.01609443500638008, + -0.010654274374246597, + -0.011550921015441418, + 0.00868014432489872, + 0.019756369292736053, + -0.012537986040115356, + -0.013201053254306316, + -0.005086021963506937, + 0.013660678640007973, + -0.0047657908871769905, + 0.017872657626867294, + 0.017646612599492073, + 0.013773701153695583, + -0.007418057415634394, + -0.015182717703282833, + -0.000511427759192884, + 0.006574154365807772, + -0.011814640834927559, + -0.021986685693264008, + 0.021248269826173782, + 0.005722716450691223, + -0.029280416667461395, + 0.041321102529764175, + -0.020193390548229218, + 0.004803465213626623, + -0.016230061650276184, + -0.02081124857068062, + -0.03939218446612358, + -0.018234331160783768, + -0.003394448896870017, + 0.006815269589424133, + -0.02454853244125843, + -0.025934945791959763, + -0.013849049806594849, + -0.012651008553802967, + -0.027562472969293594, + 0.013155844062566757, + 0.020660551264882088, + -0.018490515649318695, + -0.03547406196594238, + -0.040959432721138, + 0.003865376813337207, + 0.003447192721068859, + -0.007037547416985035, + -0.015762900933623314, + -0.025241738185286522, + 0.031555939465761185, + -0.014331280253827572, + -0.03984427452087402, + 0.01705889403820038, + -0.004396583419293165, + -0.004038678482174873, + 0.016441037878394127, + -0.016154713928699493, + -0.018339818343520164, + -0.008024612441658974, + -0.027954284101724625, + -0.012447567656636238, + 0.004588722251355648, + -0.019741300493478775, + 0.056722331792116165, + 0.0032267984934151173, + -0.009071956388652325, + 0.03324374556541443, + -0.01720959134399891, + 0.017782239243388176, + 0.012688683345913887, + -0.019831718876957893, + -0.014881324023008347, + -0.00883837603032589, + 0.018596002832055092, + -0.0068604787811636925, + 0.01302021648734808, + 0.032882075756788254, + 0.0007972810417413712, + 0.020208461210131645, + 0.04575159400701523, + -0.002974380971863866, + -0.025980154052376747, + 0.024096442386507988, + -0.00262966169975698, + -0.013088029809296131, + 0.0062200166285037994, + 0.015823179855942726, + 0.005575787276029587, + 0.03270123898983002, + -0.025437645614147186, + -0.021866127848625183, + -0.00973502267152071, + -0.019515255466103554, + -0.019590603187680244, + 0.0015615971060469747, + -0.0027558705769479275, + -0.002614591969177127, + -0.09035789221525192, + -0.043039049953222275, + 0.0020042695105075836, + -0.020434506237506866, + 0.006340574007481337, + -0.023267608135938644, + 0.001904432661831379, + 0.04035664349794388, + -0.01626020111143589, + 0.030455853790044785, + -0.00588094862177968, + 0.008717818185687065, + 0.02962701953947544, + 0.020479716360569, + -0.005538112949579954, + -0.011656409129500389, + 0.006457364186644554, + -0.001297877519391477, + 0.004196910187602043, + -0.020464645698666573, + -0.0030177063308656216, + 0.01469295285642147, + 0.025663690641522408, + -0.010993342846632004, + -0.019635813310742378, + 0.020464645698666573, + 0.006592991761863232, + -0.008665074594318867, + -0.001418435014784336, + -0.02266482077538967, + 0.0003265885461587459, + 0.0017763403011485934, + 0.011347480118274689, + 0.006054250057786703, + 0.008853445760905743, + 0.022544262930750847, + -0.015371088869869709, + -0.019259070977568626, + 0.04801204800605774, + 0.023177191615104675, + 0.0061258310452103615, + -0.007346476428210735, + -0.010104230605065823, + -0.007459498941898346, + -0.0012197034666314721, + -0.008288332261145115, + 0.004170537926256657, + -0.04795176908373833, + 0.01180710643529892, + 0.008823306299746037, + 0.003479215782135725, + 0.0042496537789702415, + -0.0032663564197719097, + -0.02579931728541851, + 0.012756496667861938, + 0.007233453448861837, + 0.016606803983449936, + 0.009313071146607399, + 0.013720957562327385, + 0.003963329829275608, + 0.059374596923589706, + 0.01687805913388729, + -0.002258570631965995, + -0.00867260992527008, + -0.01711917296051979, + -0.010383020155131817, + 0.0033982163295149803, + 0.0011688432423397899, + 0.03664949908852577, + 0.006815269589424133, + 0.0026409639976918697, + -0.0013430865947157145, + -0.009011677466332912, + 0.0015992714324966073, + 0.01814391277730465, + 0.012266731821000576, + 0.03411778807640076, + 0.01406756043434143, + 0.002518522785976529, + -0.0053158351220190525, + -0.012274266220629215, + -0.007806101813912392, + 0.015823179855942726, + 0.009275397285819054, + -0.02736656554043293, + -0.019108373671770096, + -0.0003986405208706856, + -0.032008033245801926, + -0.018189121037721634, + 0.006223783828318119, + 0.011648873798549175, + 0.015393693000078201, + 0.02243877574801445, + 0.006389550864696503, + -0.008717818185687065, + 0.03824688494205475, + 0.015762900933623314, + -0.009863114915788174, + 0.0023376864846795797, + -0.006589224096387625, + 0.00016352973761968315, + -0.028089910745620728, + 0.009380885399878025, + -0.016380758956074715, + -8.255956345237792e-6, + 0.017450707033276558, + 0.0053007653914391994, + 0.00511992909014225, + -0.012055755592882633, + -0.02243877574801445, + 0.0038050978910177946, + 0.024096442386507988, + -0.0075913588516414165, + -0.013969607651233673, + -0.00698103616014123, + 0.003661935916170478, + 0.00945623405277729, + -0.023644352331757545, + 0.012311941012740135, + -0.004479466937482357, + -0.003102473448961973, + 0.015032020397484303, + 0.012221522629261017, + -0.01281677559018135, + 0.0219565462321043, + 0.004400351084768772, + -0.008868515491485596, + -0.00355644803494215, + -0.002559964545071125, + 0.010383020155131817, + -0.008928794413805008, + -0.0003463675093371421, + -0.011008412577211857, + 0.012168779037892818, + -0.0029385904781520367, + 0.0009103037882596254, + -0.013283936306834221, + -0.0007007408421486616, + 0.007674242369830608, + -0.01594373770058155, + -0.011068690568208694, + 0.006001506000757217, + 0.0022717565298080444, + 0.010450833477079868, + -0.013984677381813526, + 0.017073964700102806, + 0.0016388293588533998, + -0.012379754334688187, + 0.012522916309535503, + -0.018023354932665825, + -0.014278535731136799, + 0.025708898901939392, + 0.024684160947799683, + 0.03321360796689987, + 0.007821171544492245, + -0.02915986068546772, + -0.005666205193847418, + -0.007252290844917297, + -0.009923393838107586, + -0.0015446437755599618, + 0.0013543888926506042, + -0.011889989487826824, + 0.014346349984407425, + -0.010646739043295383, + 0.01594373770058155, + 0.007723218761384487, + 0.001053936779499054, + -0.022092172876000404, + -0.014617604203522205, + -0.008152704685926437, + -0.010458367876708508, + -0.01532587967813015, + -0.020389297977089882, + -0.007595126051455736, + -0.011000877246260643, + -0.014421697705984116, + -0.02314705215394497, + -0.02032901905477047, + 0.011799571104347706, + -0.00420444505289197, + -0.045148804783821106, + 0.025693830102682114, + -0.007745823357254267, + 0.004193142522126436, + 0.021760638803243637, + 0.008747957646846771, + 0.01465527806431055, + 0.003213612362742424, + 0.011535851284861565, + 0.02032901905477047, + 0.04496796801686287, + -0.024126581847667694, + -0.019108373671770096, + 0.007384150754660368, + 0.0016397711588069797, + 0.006849176250398159, + 0.022951144725084305, + 0.0293105561286211, + -4.506191908149049e-5, + 0.009817906655371189, + -0.005865878891199827, + -0.019575534388422966, + 0.021398967131972313, + 0.008800702169537544, + -0.0019948508124798536, + -0.011694082990288734, + -0.012605800293385983, + 0.02111264318227768, + 0.03095315396785736, + -0.03713172674179077, + 0.005647368263453245, + -0.012741426937282085, + -0.0018658166518434882, + -0.011076225899159908, + -0.0071731749922037125, + 0.004468164406716824, + -0.0014212606474757195, + -0.012537986040115356, + -0.0025053368881344795, + -0.020449576899409294, + 0.023538863286376, + 0.002836870029568672, + 0.024533463642001152, + -0.002799195935949683, + 0.010420694015920162, + 0.021293478086590767, + 0.010262462310492992, + -0.0380057692527771, + 0.005202812142670155, + 0.003077985253185034, + -0.026778848841786385, + 0.009750092402100563, + -0.010842645540833473, + 0.00666833994910121, + -0.012296871282160282, + -0.00022781141160521656, + 0.014979276806116104, + 0.0035451457370072603, + 0.00040711721521802247, + -0.028210468590259552, + 0.006280295550823212, + 0.005059650167822838, + -0.016938338056206703, + -0.010330275632441044, + 0.01149817742407322, + 0.00836368091404438, + -0.01609443500638008, + -0.004351374227553606, + 0.004309932701289654, + -0.008099961094558239, + 0.000672956055495888, + 0.012455102987587452, + -0.008906189352273941, + -0.003903050906956196, + 0.0035771687980741262, + -0.0176616832613945, + 0.039271626621484756, + -0.002149315318092704, + 0.015551925636827946, + -0.019500184804201126, + -0.021941475570201874, + -0.0013007030356675386, + 0.030712038278579712, + -0.0275926124304533, + 0.02854200266301632, + -0.00617480743676424, + -0.010774832218885422, + 0.012093430384993553, + 0.01971116103231907, + -0.007595126051455736, + 0.008160240016877651, + 0.003010171465575695, + -0.017330149188637733, + -0.02510611154139042, + -0.00848423782736063, + -0.016365688294172287, + 0.009245257824659348, + -0.02634182758629322, + 0.004728117026388645, + 0.0263568963855505, + -0.03776465728878975, + 0.00910963024944067, + -0.005752855911850929, + 0.02010297402739525, + 0.011731757782399654, + 0.02023860067129135, + 0.009049352258443832, + -0.008687678724527359, + 0.029898274689912796, + -0.013494911603629589, + 0.0016934570157900453, + 0.02900916337966919, + 0.02790907584130764, + 0.005074719898402691, + -0.006581689231097698, + -0.006796432659029961, + 0.02751726284623146, + -0.001038867048919201, + 0.01594373770058155, + -0.025904806330800056, + 0.013253796845674515, + -0.011347480118274689, + -0.018264470621943474, + -0.0020796179305762053, + -0.007858846336603165, + -0.00018778252706397325, + 0.025919875130057335, + -0.0031175431795418262, + -0.001904432661831379, + -0.009742558002471924, + 4.732825982500799e-5, + -0.0008165891049429774, + -0.021218130365014076, + -0.016591733321547508, + 0.004381513688713312, + 0.012598264962434769, + 0.007783497683703899, + -0.010179579257965088, + 0.0010294485837221146, + -0.05403992533683777, + -0.004611326847225428, + 0.006879315711557865, + 0.03128468617796898, + 0.019982416182756424, + -0.024412905797362328, + -0.025739038363099098, + -0.008454099297523499, + 0.018746700137853622, + 0.005869646091014147, + 0.001052994979545474, + 0.013931932859122753, + 0.019816648215055466, + -0.02658294141292572, + -0.00832600612193346, + 0.006965966429561377, + -0.007926659658551216, + -0.023569002747535706, + -0.006137133110314608, + -0.016667082905769348, + 0.0063292719423770905, + 0.013193517923355103, + 0.0158081091940403, + -0.012967472895979881, + 0.014474442228674889, + 0.016064295545220375, + 0.01962074264883995, + 0.005417555570602417, + 0.02891874499619007, + 0.007655404973775148, + -0.010925528593361378, + 0.01711917296051979, + 0.012854449450969696, + 0.0026635685935616493, + -0.02063041180372238, + 0.003488634480163455, + 0.028120050206780434, + 0.006660805083811283, + 0.0046716053038835526, + 0.0006908513023518026, + -0.026387035846710205, + -0.022574402391910553, + -0.0022905936930328608, + 0.013683282770216465, + 0.025452714413404465, + -0.018189121037721634, + -0.0009851813083514571, + 0.01098580751568079, + -0.02447318471968174, + -0.00043372466461732984, + -0.018174052238464355, + 0.004814767744392157, + -0.003985934425145388, + -0.03033529594540596, + 0.005131231155246496, + -0.004731884226202965, + 0.016923267394304276, + -0.021986685693264008, + 0.01782744936645031, + -0.0008052868070080876, + -0.0071694073267281055, + 0.0250156931579113, + -0.021142782643437386, + -0.008913724683225155, + -0.021941475570201874, + -0.004102724604308605, + -0.017254801467061043, + -0.008280796930193901, + 0.0029235207475721836, + -0.014157978817820549, + 0.014082630164921284, + -0.006577922031283379, + -0.008574656210839748, + -0.0010332160163670778, + 0.014195652678608894, + -0.003918120637536049, + -0.007613963447511196, + -0.020193390548229218, + 0.011400224640965462, + -0.021911336109042168, + -0.01687805913388729, + -0.013231191784143448, + -0.0010181462857872248, + 0.0006244505057111382, + 0.001393004902638495, + -0.010910458862781525, + -0.0017810495337471366, + 0.010970737785100937, + 0.012161243706941605, + -0.0034509601537138224, + -0.019349487498402596, + 0.022318217903375626, + -0.007557452190667391, + 0.011309806257486343, + -0.012681148014962673, + -0.024533463642001152, + -0.0014937835512682796, + -0.0025543132796883583, + 0.038729116320610046, + 0.002232198603451252, + -0.030923014506697655, + -0.009900789707899094, + 0.01853572390973568, + -0.0035338434390723705, + -0.0011509479954838753, + -0.01775209978222847, + 0.0009569256217218935, + -0.02251412346959114, + -0.014173048548400402, + 0.0035771687980741262, + -0.002077734097838402, + 0.004735651426017284, + 0.010285066440701485, + 0.003925655502825975, + 0.0035752851981669664, + 0.033183466643095016, + -0.001673678052611649, + -0.005835739430040121, + -0.00512369628995657, + -0.001376051572151482, + -0.03227928653359413, + -0.022016825154423714, + -0.02665829099714756, + -0.011972872540354729, + -0.00832600612193346, + 0.005462764296680689, + -0.016938338056206703, + 0.023267608135938644, + 0.010465903207659721, + 0.020841388031840324, + 0.014979276806116104, + -0.013924398459494114, + -0.017857588827610016, + -0.00029032709426246583, + -0.005232951603829861, + 0.020781109109520912, + -0.013261331245303154, + -0.0060165757313370705, + 0.012063290923833847, + -0.026296617463231087, + 0.018324749544262886, + 0.024925274774432182, + 0.002405500039458275, + -0.00847670342773199, + 0.012100964784622192, + -0.028813255950808525, + 2.928583307948429e-5, + 0.018942605704069138, + -0.02893381379544735, + -0.03426848724484444, + -0.024563603103160858, + 0.030199669301509857, + -0.017556194216012955, + 0.00790405459702015, + -0.012907193973660469, + 0.013065425679087639, + -0.02611578069627285, + -7.475981692550704e-5, + 0.02368956059217453, + 0.0023358026519417763, + -0.010458367876708508, + 0.013472307473421097, + 0.004897650796920061, + 0.02142910659313202, + 0.017932936549186707, + 0.003918120637536049, + -0.01571769267320633, + 0.04427476227283478, + -0.003633680287748575, + -0.012869519181549549, + 0.019349487498402596, + -0.017465775832533836, + 0.01820419169962406, + -0.004558582790195942, + 0.008582191541790962, + 0.008544516749680042, + -0.006284062750637531, + -0.012003012001514435, + -0.00512369628995657, + 0.013389424420893192, + 0.005285695660859346, + -0.0033134492114186287, + -0.01234961487352848, + -0.018882328644394875, + 0.02180584892630577, + 0.0006503515178337693, + -0.02438276633620262, + -0.002205826574936509, + 0.005074719898402691, + 0.01390932872891426, + -0.002959311241284013, + -0.017691822722554207, + 0.014022351242601871, + -0.004728117026388645, + 0.0013129471335560083, + -0.013766166754066944, + 0.0035922385286539793, + 0.019017955288290977, + 0.006336806807667017, + -0.013939468190073967, + -0.011776966974139214, + 0.0019760136492550373, + -0.016456106677651405, + -0.005232951603829861, + 0.0013167145662009716, + -0.023358026519417763, + 0.00012255900946911424, + 0.0027822423726320267, + -0.014451837167143822, + 0.004238351713865995, + -0.033665698021650314, + -0.007410522550344467, + -0.002671103458851576, + 0.009290467016398907, + 0.012281801551580429, + 0.013931932859122753, + 0.0056134616024792194, + 0.0041403984650969505, + 0.013969607651233673, + -0.023493655025959015, + 0.00800954271107912, + -0.00776089308783412, + -0.0014335047453641891, + -0.013246261514723301, + -0.011558456346392632, + -0.0013704004231840372, + 0.08131607621908188, + -0.0007727927877567708, + -0.005560717545449734, + 0.0002391136804362759, + 0.01829461008310318, + -0.0038917488418519497, + 0.005786763038486242, + 0.017073964700102806, + 0.015612203627824783, + -0.016697222366929054, + 0.0024375231005251408, + -0.0158081091940403, + -0.002034408738836646, + -0.005952529609203339, + 0.0017283055931329727, + 0.018249399960041046, + 0.0170438252389431, + 0.026477454230189323, + -0.011385154910385609, + 0.010804971680045128, + 0.03134496510028839, + 0.00868014432489872, + 0.00032941412064246833, + 0.0011848547728732228, + 0.00015740767412353307, + 0.0050935568287968636, + 0.003948260098695755, + 0.024367697536945343, + 0.013502446934580803, + 0.0005128405755385756, + 0.003746702801436186, + 0.0011245759669691324, + -0.02258947305381298, + -0.013088029809296131, + 0.013299006037414074, + 0.010533716529607773, + -0.018882328644394875, + 0.01375863142311573, + -0.0015371089102700353, + 0.03149566426873207, + -0.007557452190667391, + -0.0247745793312788, + 0.014127839356660843, + 0.008574656210839748, + 0.005270625930279493, + 0.009411024861037731, + 0.0017235963605344296, + -0.0014061909168958664, + 0.004306165501475334, + -0.004042445681989193, + -0.014723092317581177, + -0.005831971764564514, + 0.000709217507392168, + 0.009945998899638653, + 0.008469169028103352, + 0.0015587715897709131, + 0.011535851284861565, + -0.0001282101438846439, + -0.01618485152721405, + 0.002559964545071125, + -0.008710283786058426, + 0.003192891599610448, + -0.0336054190993309, + -0.03466029837727547, + 0.012515381909906864, + -0.017495915293693542, + -0.006788897793740034, + 0.004844906739890575, + -0.008099961094558239, + 0.030244877561926842, + -0.0011217504506930709, + 0.011844780296087265, + -0.0029065674170851707, + -0.021398967131972313, + -0.017239730805158615, + 0.015235461294651031, + 0.00852191261947155, + -0.010367950424551964, + -0.013849049806594849, + -0.010141904465854168, + -0.0004306636401452124, + 0.004019841086119413, + -0.008544516749680042, + -0.02595001459121704, + 0.0011123318690806627, + -0.004385281354188919, + 0.004535978194326162, + -0.006449829321354628, + 0.008619865402579308, + -0.01087278500199318, + -0.0005029510939493775, + -0.0041441661305725574, + -0.016320480033755302, + -0.005843274295330048, + -0.010948133654892445, + 0.012613334693014622, + -0.0004238351830281317, + -0.00978023186326027, + 0.02299635484814644, + -0.006600526627153158, + -0.01259073056280613, + 0.012809241190552711, + -0.00036449823528528214, + 0.007459498941898346, + -0.010759762488305569, + -0.009049352258443832, + 0.00758382398635149, + 0.016697222366929054, + -0.015333415009081364, + 0.016214990988373756, + -0.014986811205744743, + -0.02188119664788246, + -0.008197913877665997, + -0.010639204643666744, + -0.028813255950808525, + 0.026085641235113144, + -0.0023131982889026403, + 0.009983672760426998, + -0.015566995367407799, + -0.030395574867725372, + 0.00832600612193346, + 0.0016190503956750035, + 0.00030822234111838043, + 0.008514377288520336, + 0.0024902671575546265, + 0.014255931600928307, + -0.01956046372652054, + -0.006834106519818306, + -0.023734768852591515, + 0.011596130207180977, + 0.014594999141991138, + 0.005338439252227545, + 0.005918622482568026, + 0.000302571221254766, + -0.007478336337953806, + -0.014941602945327759, + 0.006152202840894461, + -0.004460629541426897, + 0.0213386882096529, + -0.015001880936324596, + -0.007075221743434668, + 0.012718822807073593, + -0.006815269589424133, + 0.01423332653939724, + -0.012530451640486717, + -0.004125329200178385, + -0.015491646714508533, + -0.004995604045689106, + 0.02805977128446102, + 0.012289335951209068, + 0.02430741861462593, + -0.029039302840828896, + -0.006924524903297424, + -0.00418560765683651, + 0.005722716450691223, + 0.020374227315187454, + -0.01039808988571167, + -0.01672736182808876, + -0.005372346378862858, + -0.014617604203522205, + 0.013570260256528854, + 0.007813637144863605, + -0.01129473652690649, + 0.005048347637057304, + -0.012440033257007599, + 0.008815771900117397, + 0.020072834566235542, + 0.008860981091856956, + 0.013615469448268414, + 0.0032814261503517628, + -0.0036412151530385017, + 0.01402988564223051, + 0.009765162132680416, + -0.00604294752702117, + 0.01087278500199318, + 0.022815518081188202, + -0.004430490545928478, + 0.009237723425030708, + -0.013359284959733486, + 0.01149817742407322, + 0.014255931600928307, + -0.014979276806116104, + -0.007791032083332539, + -0.011596130207180977, + 0.0038107491564005613, + -0.01024739257991314, + 0.010224788449704647, + -0.003207961330190301, + -0.0001262087025679648, + 0.0015248648123815656, + -0.0102398581802845, + 0.019967345520853996, + 0.007451964076608419, + -0.008800702169537544, + 0.01113650482147932, + 0.011679013259708881, + 0.007888984866440296, + 0.02242370694875717, + 0.013623003847897053, + -0.0020984550938010216, + 0.0004716343537438661, + -0.009079490788280964, + 0.01696847565472126, + -0.015762900933623314, + -0.0031269616447389126, + -0.005847041495144367, + -0.014368954114615917, + -0.005617228802293539, + -0.019198792055249214, + -0.0021323617547750473, + -0.03417806699872017, + -0.02023860067129135, + 0.01172422245144844, + -0.00035437330370768905, + -0.019605673849582672, + 0.013773701153695583, + 0.024533463642001152, + -0.00035696339909918606, + 0.021670222282409668, + 0.024126581847667694, + -0.00039652135455980897, + 0.016923267394304276, + -0.007745823357254267, + -0.012244126759469509, + 0.0031589847058057785, + -0.004276026040315628, + 0.006393318064510822, + 0.00044243683805689216, + 0.010503577068448067, + -0.009486372582614422, + 0.01758633367717266, + -0.013027750886976719, + 0.012462637387216091, + 0.017104104161262512, + 0.019967345520853996, + 0.027426844462752342, + 0.003441541688516736, + 0.0013440283946692944, + -0.007956799119710922, + -0.00847670342773199, + -0.018400097265839577, + 0.015356019139289856, + -0.025317087769508362, + -0.0016934570157900453, + 7.475981692550704e-5, + -0.0020513623021543026, + 0.03215872868895531, + -0.012033151462674141, + -0.003317216644063592, + -3.322985503473319e-5, + 0.01379630621522665, + -0.01087278500199318, + 0.0033266351092606783, + 0.018430236726999283, + 0.01259073056280613, + 0.01922893151640892, + 0.021097572520375252, + 0.013585329987108707, + 0.013728491961956024, + 0.007681777235120535, + 0.006284062750637531, + 0.0033247515093535185, + -0.004814767744392157, + -0.014760766178369522, + 0.006852943915873766, + 0.008725353516638279, + -0.013042820617556572, + 0.01051864679902792, + -0.0031269616447389126, + 0.011784501373767853, + 0.003275774884968996, + -0.0064535969868302345, + 0.0054062530398368835, + 0.01695340685546398, + 0.007866380736231804, + -0.005168905481696129, + 0.015928667038679123, + -0.016245130449533463, + 0.008883585222065449, + -0.007926659658551216, + -0.020841388031840324, + 0.014956672675907612, + -0.012342080473899841, + -0.027411775663495064, + -0.0024751974269747734, + -0.035805594176054, + -0.004814767744392157, + 0.011754361912608147, + -0.0020061531104147434, + 0.0005189626244828105, + 0.006762525532394648, + -0.019846787676215172, + 0.02111264318227768, + 0.014399093575775623, + -0.0057038795202970505, + -0.0056134616024792194, + -0.007836241275072098, + 0.019665952771902084, + 0.006314202211797237, + -6.669517460977659e-5, + -0.024021094664931297, + 0.005157602950930595, + -0.0032211472280323505, + -0.008002008311450481, + 0.01705889403820038, + -0.00041112012695521116, + 0.006626898422837257, + -0.011648873798549175, + -0.0034566111862659454, + 0.037011172622442245, + 0.01820419169962406, + 0.006091924384236336, + -0.0030610316898673773, + 0.006819036789238453, + -0.0036223779898136854, + -0.011754361912608147, + 0.010707017965614796, + 0.004121561534702778, + 0.002105989959090948, + -0.017149312421679497, + -0.007335173897445202, + -0.007500940468162298, + 0.010616600513458252, + 0.015838248655200005, + 0.0009611639543436468, + 0.004053747747093439, + 0.014406627975404263, + 0.015092299319803715, + 0.01844530738890171, + 0.013065425679087639, + 0.00758005678653717, + -0.010292601771652699, + -0.023101842030882835, + -0.006382015999406576, + -0.007369081024080515, + 0.016049224883317947, + -0.0016699106199666858, + -0.004803465213626623, + -0.005104859359562397, + 0.0016727361362427473, + -0.021157851442694664, + -0.009064421989023685, + 0.01695340685546398, + -0.014323744922876358, + -0.009493907913565636, + 0.023629281669855118, + 0.01160366553813219, + -0.007598893716931343, + 0.0049692317843437195, + 0.038035910576581955, + 0.011008412577211857, + -0.004245886579155922, + -9.342033445136622e-5, + -0.001434446545317769, + -0.020449576899409294, + -0.006095691584050655, + -0.010948133654892445, + 0.004294862970709801, + -0.0006983861676417291, + 0.00021050480427220464, + -0.01532587967813015, + 0.003334169974550605, + -0.023810118436813354, + -0.010541251860558987, + 0.007433127146214247, + 0.0007581940153613687, + -0.009403489530086517, + 0.010541251860558987, + -0.014097699895501137, + 0.0023866628762334585, + 0.01720959134399891, + -0.019409766420722008, + -0.004713047295808792, + -0.015099834650754929, + 0.005067185033112764, + 0.008943864144384861, + 0.02236342802643776, + 0.010812506079673767, + 0.007369081024080515, + 0.03056134097278118, + 0.013743561692535877, + 0.011264597065746784, + 0.00042171598761342466, + 0.017706891521811485, + 0.00635187653824687, + 0.012959937565028667, + 0.0023640585131943226, + 0.016621872782707214, + 0.0039557949639856815, + -0.03164635971188545, + 0.009599396027624607, + 0.03197789192199707, + 0.028421444818377495, + -0.004294862970709801, + 0.008137634955346584, + -0.01751098595559597, + -0.007711916230618954, + 0.009561721235513687, + -0.009071956388652325, + -0.014210722409188747, + -0.0017170034116134048, + -0.017691822722554207, + -0.011159108951687813, + 0.010285066440701485, + 0.009335676208138466, + -0.025708898901939392, + 0.0016181084793061018, + 0.008785632438957691, + 0.011859850026667118, + -0.022227799519896507, + 0.014293605461716652, + 0.007459498941898346, + 0.0127489622682333, + 0.00989325437694788, + 0.00434007216244936, + 0.01051111239939928, + 0.028210468590259552, + -0.009832976385951042, + 0.014451837167143822, + -0.005587089341133833, + 0.008891119621694088, + 0.010254926979541779, + 0.023795047774910927, + -0.007207081653177738, + -0.00773828849196434, + 0.02384025789797306, + 0.0328519344329834, + 0.008145170286297798, + 0.007342708762735128, + 0.010789901949465275, + 0.005892250686883926, + -0.010631670244038105, + 0.029144790023565292, + 0.005745321046561003, + 0.010285066440701485, + -0.009546651504933834, + 0.01736028864979744, + -0.03010925091803074, + 0.005858344025909901, + 0.022468915209174156, + 0.0027765913400799036, + -0.004826069809496403, + 0.012500312179327011, + 0.0015050857327878475, + 0.004193142522126436, + 0.021926406770944595, + -0.003806981723755598, + 0.019846787676215172, + 0.0027728239074349403, + -0.006317969411611557, + -0.006155970506370068, + 0.01297500729560852, + 0.0008594435639679432, + 0.014301140792667866, + -0.03176691755652428, + -0.015687553212046623, + -0.002341453917324543, + 0.007798566948622465, + 0.0051726726815104485, + -0.0002969200722873211, + 0.01071455329656601, + -0.000782682269345969, + -0.0009832975920289755, + 0.018324749544262886, + -0.0019458744209259748, + 0.023870397359132767, + 0.005104859359562397, + 0.005779228173196316, + -0.005707647185772657, + 0.005933692213147879, + -0.00465276837348938, + -0.012229057028889656, + 0.005183975212275982, + -0.007387917954474688, + -0.003166519571095705, + 0.008552052080631256, + -0.006468666717410088, + -0.0004250124911777675, + 0.013299006037414074, + 0.003952027298510075, + -0.017390428110957146, + -0.00915483944118023, + -0.02070576138794422, + 0.010480972938239574, + 0.012470172718167305, + -0.017420567572116852, + -0.03081752546131611, + 0.024744439870119095, + 6.233908788999543e-5, + 0.009230188094079494, + 0.0032682400196790695, + 0.012070825323462486, + 0.008160240016877651, + 0.012522916309535503, + -0.00820544920861721, + -0.00903428252786398, + 0.007274895440787077, + 0.03378625586628914, + -0.0016284688608720899, + -0.011241992004215717, + 0.0055192760191857815, + -0.01364560890942812, + -0.019756369292736053, + 0.017013685777783394, + 0.004389048554003239, + 0.006540247704833746, + -0.01564234308898449, + 0.0041592358611524105, + -0.0007087466074153781, + 0.010526182129979134, + 0.008981538005173206, + -0.020344087854027748, + -0.004294862970709801, + 0.006427224725484848, + -0.019891997799277306, + 0.007056384813040495, + 0.00416300306096673, + 0.003238100791350007, + 0.02900916337966919, + 0.013751097023487091, + 0.007640335243195295, + -0.013419562950730324, + -0.009433628991246223, + -0.020916735753417015, + 0.0003218792553525418, + 0.023629281669855118, + 0.006378248333930969, + 0.00478839548304677, + -0.0008938212995417416, + -0.007858846336603165, + -0.013592865318059921, + 0.010707017965614796, + 0.01481350976973772, + 0.0003155217273160815, + -0.007086524274200201, + 0.009433628991246223, + -0.01047343760728836, + -0.014308675192296505, + 0.022318217903375626, + -0.02525680884718895, + -0.010119300335645676, + 0.008981538005173206, + 0.04120054468512535, + -0.0007501882500946522, + -0.009900789707899094, + -0.008333541452884674, + -0.012997612357139587, + -0.012402359396219254, + 0.0029442417435348034, + -0.0067662931978702545, + -0.010322741232812405, + 0.00785131100565195, + 0.014881324023008347, + 0.01348737720400095, + 0.0024375231005251408, + 0.0036544010508805513, + -0.009071956388652325, + -0.0040499805472791195, + 0.01390932872891426, + 0.00852191261947155, + 0.0009767046431079507, + -0.010812506079673767, + 0.004754488822072744, + 0.011015946976840496, + -0.011716688051819801, + 0.006589224096387625, + 0.01595880649983883, + 0.012839379720389843, + 0.0018695840844884515, + 0.019530324265360832, + -0.026492523029446602, + -0.0032776587177067995, + -0.01586838811635971, + -0.001992967212572694, + -0.0020174554083496332, + -0.015205321833491325, + -0.0014692952390760183, + -0.022077104076743126, + 0.011633804067969322, + -0.0015248648123815656, + 0.002993218135088682, + 0.013947002589702606, + -0.024337558075785637, + 0.005816902033984661, + 0.005790530238300562, + 0.010767296887934208, + 0.00340009992942214, + -0.01067687850445509, + -0.0009644604870118201, + -0.03695089370012283, + 0.004995604045689106, + -0.0026409639976918697, + -0.002836870029568672, + -0.021549664437770844, + 0.0011613083770498633, + -0.004404118284583092, + -0.013570260256528854, + -0.010330275632441044, + -0.009395955130457878, + -0.039060648530721664, + 0.0057980651035904884, + -0.011128969490528107, + -0.006932059768587351, + 0.004543513059616089, + -0.004351374227553606, + 0.0072786626406013966, + 0.009290467016398907, + -0.023900536820292473, + -0.013675748370587826, + 0.009026747196912766, + -0.0031684034038335085, + 0.002737033413723111, + 0.029039302840828896, + -0.021383896470069885, + -0.005847041495144367, + -0.0034302393905818462, + 0.03063669055700302, + -0.0024469417985528708, + 0.010134370066225529, + 0.015235461294651031, + -0.017812378704547882, + -0.016938338056206703, + 0.007828706875443459, + -0.009049352258443832, + -0.00832600612193346, + -0.00697726896032691, + -0.008747957646846771, + 0.011015946976840496, + 0.010187113657593727, + -0.011837244965136051, + 0.0031043572816997766, + -0.0013346098130568862, + 0.017254801467061043, + -0.034298624843358994, + -0.005967599339783192, + -0.01485871896147728, + -0.027261078357696533, + 0.0035319598391652107, + 0.0057038795202970505, + -0.005677507724612951, + 0.009282931685447693, + -0.0052969977259635925, + -0.007455731742084026, + -0.0045472802594304085, + 0.0014410396106541157, + -0.007316336967051029, + 0.012613334693014622, + 0.005654903128743172, + -0.012093430384993553, + 0.019650882109999657, + -0.003803214291110635, + -0.012168779037892818, + -0.00729373237118125, + 0.004189375322312117, + -0.014527185820043087, + -0.003609191859140992, + 0.010375484824180603, + -0.014368954114615917, + 0.01868642121553421, + -0.0004318409482948482, + -0.010917994193732738, + -0.027246007695794106, + 0.013005146756768227, + 0.013125704601407051, + -0.003692075377330184, + -0.002217128872871399, + 0.015273136086761951, + 0.02102222479879856, + -0.0003046903875656426, + -0.007527312729507685, + 0.007199546787887812, + 0.014022351242601871, + -0.016049224883317947, + -0.00910209584981203, + -0.0022661054972559214, + -0.012281801551580429, + -0.006001506000757217, + -0.0136079341173172, + 0.004777093417942524, + -0.046957168728113174, + 0.015129974111914635, + 0.006871780846267939, + -0.015114904381334782, + 0.004196910187602043, + -1.2553173291962594e-5, + 0.010842645540833473, + -0.005865878891199827, + -0.0037014938425272703, + -0.012605800293385983, + 0.022016825154423714, + 0.001517329947091639, + -0.0114605026319623, + -0.01915358193218708, + 0.006743688602000475, + 0.02173049934208393, + 0.014240861870348454, + -0.010480972938239574, + 0.012944867834448814, + 0.0023753605782985687, + -0.001983548514544964, + -0.014918997883796692, + -0.0158081091940403, + 0.012176313437521458, + -0.014278535731136799, + 0.006626898422837257, + -0.002499685622751713, + 0.012447567656636238, + 0.00449453666806221, + 0.0039557949639856815, + 0.0013487377436831594, + 0.0034095183946192265, + 0.009019212797284126, + 0.004332537297159433, + 0.020886598154902458, + -0.017571264877915382, + -0.017902797088027, + 0.004607559181749821, + -0.012500312179327011, + 0.006246388424187899, + -0.0028764279559254646, + -0.0021794545464217663, + 0.0021417804528027773, + -0.0032192636281251907, + 0.024759508669376373, + 0.0005104859010316432, + 0.007651637773960829, + 0.016471177339553833, + 0.023493655025959015, + -0.019259070977568626, + 0.011663943529129028, + 0.00602034293115139, + 0.010578925721347332, + -0.029054371640086174, + -0.0013185982825234532, + -0.01047343760728836, + -0.0032192636281251907, + -0.006065552122890949, + -0.012628404423594475, + 0.0069358269684016705, + -0.005579554475843906, + -0.01883711852133274, + -0.0005495729274116457, + 0.0008523795986548066, + 0.0016981662483885884, + 0.018505586311221123, + -0.001570073887705803, + -0.004215747117996216, + -0.00356775033287704, + 0.012997612357139587, + 0.02228807844221592, + -0.005394950974732637, + -0.023810118436813354, + 0.03191761299967766, + -0.006706014275550842, + 0.005941227078437805, + -0.003051613224670291, + 0.007335173897445202, + 0.0034038673620671034, + 0.01395453792065382, + 0.028647489845752716, + 0.015461507253348827, + 0.00651010824367404, + -0.004434257745742798, + -0.0011038552038371563, + -0.008032147772610188, + -0.008386285044252872, + -0.0034132858272641897, + 0.0017141777789220214, + -0.013811375014483929, + 0.00727112777531147, + 0.0011575409444049, + -0.0026258942671120167, + -0.001934572122991085, + -0.009516512043774128, + 0.017254801467061043, + -0.02305663377046585, + -0.009252793155610561, + 0.017450707033276558, + 0.008002008311450481, + 0.025528063997626305, + -0.013321610167622566, + 0.028014563024044037, + -0.026447314769029617, + -0.0012027500197291374, + -0.003970864694565535, + -0.036860473453998566, + 0.02307170256972313, + -0.03149566426873207, + 0.02682405710220337, + 0.003614843124523759, + 0.00742559228092432, + 0.008936328813433647, + -0.01956046372652054, + 0.0018027122132480145, + 0.009237723425030708, + -0.0027426844462752342, + 0.02094687521457672, + 0.009275397285819054, + -0.021775709465146065, + -0.004577419720590115, + 0.012613334693014622, + 0.006898153107613325, + -0.0035432621371001005, + 0.006785130128264427, + -0.014956672675907612, + 0.0193796269595623, + -0.026070572435855865, + 0.00026254233671352267, + -0.0006465840851888061, + 0.03758382052183151, + 0.012025617063045502, + -0.010134370066225529, + -0.01696847565472126, + -0.01680270954966545, + 0.006348108872771263, + -0.0017075848300009966, + 0.006679642479866743, + -0.015431367792189121, + -0.008092425763607025, + 0.00729373237118125, + -0.009094560518860817, + 0.005700112320482731, + -0.010119300335645676, + -0.0033134492114186287, + -0.04213486611843109, + 0.005191510077565908, + -0.0008895829087123275, + -0.0018488632049411535, + 0.009380885399878025, + 0.011347480118274689, + -0.004976766649633646, + -0.012575660832226276, + -0.0035394947044551373, + 0.016049224883317947, + -0.0012451335787773132, + -0.017405496910214424, + -0.012100964784622192, + 0.020524924620985985, + 0.0015248648123815656, + -0.002309430856257677, + -0.0026842893566936255, + -0.03215872868895531, + 0.005628530867397785, + -0.008303401991724968, + -0.005575787276029587, + 0.001266796258278191, + -0.014625138603150845, + -0.0009041816811077297, + 0.00482983747497201, + -0.023870397359132767, + -0.016983546316623688, + 0.021398967131972313, + -0.004196910187602043, + 0.004686675034463406, + -0.0022510357666760683, + 0.012100964784622192, + -0.0046753729693591595, + 0.002138013020157814, + -0.007497173268347979, + -0.007926659658551216, + -0.0004021724744234234, + -0.004087654873728752, + -0.0005665263743139803, + 7.487754919566214e-5, + 0.014723092317581177, + -0.0032098449300974607, + -0.008386285044252872, + 0.006807734724134207, + 0.008853445760905743, + -0.003175938269123435, + -0.010616600513458252, + 0.003390681464225054, + 0.016591733321547508, + 0.019123442471027374, + 0.008341075852513313, + -0.007708149030804634, + 0.00978023186326027, + -0.014240861870348454, + -0.0072824303060770035, + -0.00919251423329115, + 0.01286198478192091, + -0.0007280546124093235, + 0.0012121686013415456, + 0.023960815742611885, + -0.01892753690481186, + -0.00356775033287704, + 0.0004078236233908683, + -0.00978023186326027, + -0.01559713389724493, + 0.017902797088027, + -0.008348611183464527, + 0.0002634841948747635, + 0.04086901247501373, + -0.006845409050583839, + 0.00879316683858633, + -0.004008539021015167, + 0.018234331160783768, + -0.002462011529132724, + -0.017646612599492073, + -0.00758382398635149, + 0.007926659658551216, + -0.004649000708013773, + -0.014459372498095036, + -0.015235461294651031, + -0.01547657698392868, + 0.0020701992325484753, + -0.05072459205985069, + -0.006058017257601023, + -0.0009870650246739388, + -0.007421824615448713, + 0.0024902671575546265, + 0.017330149188637733, + 0.01160366553813219, + -0.002138013020157814, + 0.013268866576254368, + -0.01501695066690445, + -0.0068039670586586, + -0.02252919413149357, + 0.0012244126992300153, + -0.019907066598534584, + -0.016938338056206703, + 0.0018328516744077206, + 0.002200175542384386, + 0.02720079943537712, + -0.015446437522768974, + -0.0030761014204472303, + -0.002857591025531292, + 0.005677507724612951, + -0.009802836924791336, + -0.007075221743434668, + 0.013434632681310177, + 0.006762525532394648, + 0.00945623405277729, + -0.014060025103390217, + -0.011746827512979507, + -0.01297500729560852, + 0.011912593618035316, + -0.027803586795926094, + 0.006679642479866743, + -0.007225918583571911, + 0.014971742406487465, + 0.0016086898976936936, + -0.036468662321567535, + -0.011618735268712044, + -0.0044380249455571175, + 0.014625138603150845, + 0.005605926737189293, + -0.009200048632919788, + -0.007753358222544193, + 0.013419562950730324, + -0.025663690641522408, + 0.01969609223306179, + 0.029536603018641472, + -0.004607559181749821, + 0.01156599074602127, + 0.005952529609203339, + -0.0185206551104784, + -0.016621872782707214, + 0.004430490545928478, + 0.001272447407245636, + 0.01719452254474163, + -0.0033605420030653477, + 0.010383020155131817, + -0.01900288462638855, + -0.002128594322130084, + 0.005312067456543446, + 0.024458114057779312, + -0.001983548514544964, + 0.004095189739018679, + 0.008348611183464527, + 0.0008632109384052455, + 0.014888858422636986, + -0.011174178682267666, + 0.00124136614613235, + 0.017224662005901337, + 0.028888605535030365, + 0.010631670244038105, + -0.004080120008438826, + -0.01711917296051979, + 0.010254926979541779, + -0.011505711823701859, + 0.0065628523007035255, + 0.0012865752214565873, + -0.0036845405120402575, + 0.004890115931630135, + 0.0077006141655147076, + -0.0009795301593840122, + -0.005941227078437805, + 0.016365688294172287, + -0.0005928982864134014, + 0.000959280296228826, + -0.001695340732112527, + 0.002597638638690114, + 0.0035639829002320766, + -0.007308802101761103, + -0.030214738100767136, + 0.011648873798549175, + 0.023810118436813354, + 0.003837121184915304, + -0.012213988229632378, + 0.014157978817820549, + 0.0007539556827396154, + -0.0120783606544137, + 0.004242118913680315, + -0.013434632681310177, + -0.008898654952645302, + -0.021549664437770844, + -0.014775835908949375, + -0.015273136086761951, + 0.010179579257965088, + 0.014353884384036064, + 0.004848674405366182, + -0.03824688494205475, + -0.016923267394304276, + 0.0038201676215976477, + 0.022574402391910553, + 0.003921888303011656, + 0.034901414066553116, + 0.00742935948073864, + 0.012342080473899841, + 0.027261078357696533, + -0.0036694707814604044, + -0.023975884541869164, + -0.0033869140315800905, + -0.014097699895501137, + 0.013931932859122753, + 0.006201179698109627, + -0.006472433917224407, + -0.0009371466585434973, + -0.03255053982138634, + 0.011309806257486343, + 0.011128969490528107, + 0.007613963447511196, + 0.0017735147848725319, + -0.018716560676693916, + 0.003049729624763131, + -0.01192012894898653, + 0.0350521095097065, + 0.007203313987702131, + -0.004622628912329674, + 0.00494662718847394, + -0.00588094862177968, + -0.01594373770058155, + 0.02714052051305771, + 0.008084891363978386, + -0.019274139776825905, + 0.011347480118274689, + -0.004697977565228939, + 0.003285193582996726, + 0.005685042589902878, + -0.026643220335245132, + -0.02432248741388321, + -0.0035300760064274073, + -0.0011989825870841742, + 0.015378623269498348, + 0.0068039670586586, + 0.0013496795436367393, + 0.007161872461438179, + -0.004426722880452871, + 0.02423206903040409, + -0.009177444502711296, + 0.021926406770944595, + 0.01728494092822075, + -0.009358280338346958, + -0.013299006037414074, + -0.007791032083332539, + -0.0024601276963949203, + 0.011400224640965462, + 0.010307671502232552, + -0.0027257311157882214, + -0.019891997799277306, + -0.002499685622751713, + -0.004332537297159433, + 0.012462637387216091, + -0.019123442471027374, + -0.00525555619969964, + 0.02064548246562481, + 0.031797055155038834, + -0.0068039670586586, + 0.038729116320610046, + 0.007791032083332539, + -0.022468915209174156, + -0.008228053338825703, + -0.007538614794611931, + 0.0006136191659606993, + -0.022152451798319817, + 0.00033082690788432956, + 0.002456360263749957, + -0.005564484745264053, + -0.0013779352884739637, + -0.009222653694450855, + -0.026613080874085426, + 0.020524924620985985, + 0.024217000231146812, + -0.0089513985440135, + -0.010111765004694462, + 0.021790778264403343, + 0.00019308047194499522, + 0.020389297977089882, + 0.003488634480163455, + 0.0026635685935616493, + -0.0176616832613945, + 0.002497802022844553, + -0.0071128960698843, + 0.015566995367407799, + 0.014255931600928307, + 0.014640208333730698, + -0.010503577068448067, + -0.02081124857068062, + -0.004603791981935501, + -0.02346351556479931, + -0.002874544356018305, + 0.0004709279746748507, + 0.01047343760728836, + 0.0050935568287968636, + -0.004422955680638552, + -0.013826444745063782, + -0.011377619579434395, + 0.01087278500199318, + 0.011648873798549175, + 0.0008585017058067024, + 0.007655404973775148, + 0.016456106677651405, + -0.0073916856199502945, + 0.0055946242064237595, + 0.009026747196912766, + 0.0032098449300974607, + -0.01752605475485325, + -0.003207961330190301, + 0.0061409007757902145, + -0.002252919366583228, + 0.006461131852120161, + 0.004618861712515354, + -0.0044719320721924305, + -0.0033661930356174707, + -0.015973877161741257, + 0.0017951774643734097, + 0.018174052238464355, + -0.020133111625909805, + 0.011279666796326637, + -0.0030534970574080944, + 0.030139390379190445, + 0.006694712210446596, + 0.008401354774832726, + 0.0022604542318731546, + -0.017315080389380455, + 0.008499307557940483, + -0.008062287233769894, + -0.004520908463746309, + 0.0014485744759440422, + -0.0003119897737633437, + -0.006498806178569794, + -0.016531456261873245, + -0.0008340134518221021, + -0.026522662490606308, + -0.009094560518860817, + -0.045540619641542435, + 0.014014815911650658, + -0.03619740903377533, + 0.036076851189136505, + 0.011739292182028294, + 0.006886850576847792, + 0.008416424505412579, + 0.0014768301043659449, + 0.01051864679902792, + 0.023282678797841072, + -0.02932562679052353, + 0.002998869400471449, + 0.02385532669723034, + -0.00527816079556942, + 0.010111765004694462, + -0.03104357235133648, + 0.004867511335760355, + -0.015536855906248093, + 0.0069358269684016705, + -0.008808236569166183, + 0.0032983794808387756, + 0.00231696548871696, + -0.00045821291860193014, + -0.017691822722554207, + -0.025226669386029243, + 0.007086524274200201, + 0.0001671794307185337, + -0.019213860854506493, + 0.0038484232500195503, + 0.007436894346028566, + -0.002878311788663268, + 0.000135509530082345, + 0.01051111239939928, + -0.009817906655371189, + -4.732825982500799e-5, + -0.006050482392311096, + -0.005926157347857952, + -0.006581689231097698, + -0.009584326297044754, + 0.005873413756489754, + -0.0049880691803991795, + 0.004780860617756844, + 0.014821045100688934, + -0.004743186291307211, + -0.013615469448268414, + -0.0003734458878170699, + 0.017164383083581924, + 0.002769056474789977, + -0.013517516665160656, + -0.0033191002439707518, + -0.006901920307427645, + -0.011874919757246971, + -0.013065425679087639, + 0.009298001416027546, + 0.014157978817820549, + -0.01836995780467987, + -0.0013242494314908981, + -0.031073711812496185, + -0.0054853688925504684, + 0.015356019139289856, + -0.01915358193218708, + -0.02025366947054863, + 0.011279666796326637, + 0.021248269826173782, + 0.008032147772610188, + 0.01719452254474163, + 0.007881450466811657, + -0.011513247154653072, + 0.008401354774832726, + -0.0074858712032437325, + 0.0038879814092069864, + -0.032339565455913544, + -0.006762525532394648, + 0.013110634870827198, + 0.017797309905290604, + 0.017767170444130898, + 0.01395453792065382, + 0.013389424420893192, + -0.02102222479879856, + 0.012093430384993553, + 0.0003204664681106806, + 0.011076225899159908, + -0.018113773316144943, + 0.015566995367407799, + -0.019439905881881714, + 0.022875797003507614, + -0.01713424362242222, + 0.001262086909264326, + -0.008423959836363792, + -0.006201179698109627, + -0.0008288332028314471, + 0.0014504581922665238, + -0.0018432120559737086, + -0.01907823421061039, + 0.018882328644394875, + 0.0052819279953837395, + 0.019681021571159363, + 0.0012131104012951255, + 0.019485116004943848, + -0.015582064166665077, + -0.0029197533149272203, + -0.012131104245781898, + 0.002305663423612714, + 0.02792414464056492, + -0.014805975370109081, + 0.003462262451648712, + -0.0019571767188608646, + 0.017917867749929428, + -0.008190379478037357, + 0.00742559228092432, + -0.006299132481217384, + -0.003385030198842287, + -0.006702247075736523, + -0.00590355321764946, + -0.023749839514493942, + 0.0031514500733464956, + 0.011430364102125168, + -6.133836723165587e-5, + 0.0023998490069061518, + -0.009200048632919788, + 0.010699483565986156, + 0.00308740371838212, + 0.0014730626717209816, + 0.005688809789717197, + 0.008273262530565262, + -0.019259070977568626, + 0.0010821925243362784, + -0.017948007211089134, + 0.004822302609682083, + 0.007320104166865349, + 0.05024236440658569, + 0.01547657698392868, + -0.0002630132657941431, + -0.013118169270455837, + -0.009832976385951042, + -0.004257188644260168, + 0.014142909087240696, + 0.0004292508529033512, + -0.01439155824482441, + 0.008702748455107212, + 0.003997236490249634, + -0.005421322770416737, + 0.017330149188637733, + 0.005794297903776169, + 0.0013590981252491474, + 0.015506716445088387, + 0.012229057028889656, + 0.0008490831241942942, + -0.012025617063045502, + 0.021700359880924225, + -0.008152704685926437, + -0.008469169028103352, + -0.003818284021690488, + -0.007964333519339561, + 0.008936328813433647, + 0.018671352416276932, + 0.010691948235034943, + -0.024684160947799683, + 0.0012018082197755575, + 0.002936706878244877, + 0.0003374198859091848, + 0.007806101813912392, + -0.02463895082473755, + -0.00837121531367302, + 0.017917867749929428, + 0.023267608135938644, + 0.00883837603032589, + 0.019741300493478775, + -0.005914855282753706, + -0.0013054123846814036, + -0.03878939524292946, + -0.006001506000757217, + 0.013321610167622566, + 0.0032192636281251907, + -0.018264470621943474, + -0.0022548031993210316, + -0.01411276962608099, + 0.009079490788280964, + -0.021474314853549004, + 0.007775962818413973, + 0.019891997799277306, + 0.0025561971124261618, + -0.005266858264803886, + -0.013638073578476906, + 0.01579304039478302, + -0.015777969732880592, + 0.010141904465854168, + -0.020133111625909805, + -0.028406374156475067, + -0.011588595807552338, + 0.006155970506370068, + 0.004223281983286142, + 0.01454225555062294, + -0.008763027377426624, + 0.0007313511450774968, + -0.014255931600928307, + 4.7092795284697786e-5, + -0.010948133654892445, + 0.00016835675342008471, + -0.023086773231625557, + 6.863775342935696e-5, + 0.004611326847225428, + 0.0066419681534171104, + -0.01114403922110796, + 0.0021606176160275936, + -0.006717316340655088, + 0.002249151933938265, + -0.009177444502711296, + -0.026462383568286896, + -0.030546272173523903, + -0.002008036943152547, + -0.002727614715695381, + 0.009230188094079494, + 0.011362549848854542, + -0.006246388424187899, + 0.0032324495259672403, + 0.01102348230779171, + -0.005364811513572931, + -0.0032456356566399336, + 0.02197161503136158, + -0.005025743506848812, + 0.00017294829012826085, + 0.0017151196952909231, + 0.026145920157432556, + 0.007621498312801123, + 0.01097827311605215, + -0.0025486622471362352, + -0.006261458154767752, + 0.014361419714987278, + 0.012620869092643261, + -0.014188118278980255, + -0.01286198478192091, + -0.01760140433907509, + 0.025060903280973434, + -9.54806455411017e-5, + -0.021082503721117973, + 0.0009880068246275187, + -0.04002511128783226, + -0.01528067048639059, + -0.0019383395556360483, + -0.004151700995862484, + 0.013728491961956024, + -0.029491392895579338, + 0.02940097451210022, + -0.0002161559386877343, + -0.0020984550938010216, + 0.008785632438957691, + 0.006385783199220896, + 0.021383896470069885, + 0.018596002832055092, + 0.006457364186644554, + 0.027532333508133888, + 0.014173048548400402, + -0.010812506079673767, + 0.0016717943362891674, + -0.004528443329036236, + -0.0020796179305762053, + 0.017239730805158615, + 0.0008820481016300619, + 0.005639833398163319, + -0.0022811749950051308, + -0.00543639250099659, + 0.012319475412368774, + 0.008122565224766731, + -0.011128969490528107, + -0.017932936549186707, + 0.005997738800942898, + -0.016079364344477654, + 0.01047343760728836, + -0.007674242369830608, + -0.007806101813912392, + 0.0272158682346344, + 0.007444429211318493, + 0.004219514783471823, + 0.01337435469031334, + 0.0011999245034530759, + -0.007934194058179855, + 0.0050935568287968636, + -0.0053158351220190525, + 0.00832600612193346, + -0.024066302925348282, + -0.014323744922876358, + -0.0075612193904817104, + -0.0008269494865089655, + 0.002138013020157814, + 0.02399095520377159, + -0.005530578084290028, + -0.004600024316459894, + -0.014150443486869335, + -0.007843776606023312, + 0.003499936545267701, + 0.003989701624959707, + -0.00805475190281868, + 0.011897523887455463, + 0.014903928153216839, + 0.010277532041072845, + -0.0015512367244809866, + 0.006739920936524868, + 0.002827451564371586, + -0.0018545143539085984, + -0.00848423782736063, + -0.02384025789797306, + -0.013818910345435143, + 0.0003529605164658278, + 0.010820041410624981, + 0.023749839514493942, + 0.015288205817341805, + 0.015506716445088387, + -0.009395955130457878, + -0.0012969356030225754, + -0.008665074594318867, + 0.030305156484246254, + 0.007192011922597885, + 0.01626020111143589, + -0.010013812221586704, + 0.0221976600587368, + 0.00664573535323143, + 0.011385154910385609, + -0.00805475190281868, + 0.01396207232028246, + 0.011174178682267666, + 0.004773325752466917, + -0.013781236484646797, + 0.005839506629854441, + -0.018626142293214798, + -0.0030082878656685352, + 0.008974003605544567, + -0.010593995451927185, + -0.023975884541869164, + 0.011061156168580055, + 0.0198618583381176, + 0.007338941562920809, + -0.0050784870982170105, + 0.008612331002950668 + ], + "09153e46-075d-438f-91f2-2e7537d2f550": [ + -0.03119531087577343, + -0.02755099907517433, + -0.023367328569293022, + 0.014395032078027725, + -0.03256557136774063, + -0.004631920717656612, + -0.00011832625750685111, + 0.0017419811338186264, + -0.038688015192747116, + 0.06705533713102341, + -0.00942419096827507, + 0.007339644245803356, + 0.022244879975914955, + -0.017361503094434738, + -0.01591835543513298, + -0.01820698194205761, + -0.030699683353304863, + 0.026034964248538017, + -0.024941671639680862, + -0.002858962630853057, + 0.06833814084529877, + -0.003487606532871723, + -0.028206974267959595, + 0.012244888581335545, + 0.03163262829184532, + -0.02763846144080162, + -0.013534974306821823, + -0.026953332126140594, + -0.06513114273548126, + 0.005430025048553944, + 0.01381923072040081, + 0.016822144389152527, + 0.024577239528298378, + 0.011880457401275635, + -0.004628275986760855, + -0.04699704796075821, + -0.01705537922680378, + 0.03224487230181694, + -0.006056846585124731, + -0.006045913323760033, + -0.0010049190605059266, + 0.028323592618107796, + 0.005892852321267128, + 0.002849851967766881, + -0.03588918596506119, + 0.020451879128813744, + -0.03507285937666893, + 0.0009611872956156731, + 0.004416906274855137, + -0.009285707026720047, + 0.034606385976076126, + 0.022274034097790718, + -0.03209909796714783, + 0.005051016341894865, + 0.016778413206338882, + 0.008833812549710274, + -0.013112234883010387, + 0.1016908809542656, + 0.042973726987838745, + -0.0433235801756382, + -0.008979585021734238, + -0.052069928497076035, + 0.03279880806803703, + 0.007226670626550913, + -0.011319233104586601, + -0.01010932121425867, + -0.022011645138263702, + 0.04865885153412819, + -0.02440231293439865, + 0.008753637783229351, + 0.015145760960876942, + 0.016399404034018517, + -0.05411074310541153, + 0.02890668250620365, + -0.010809029452502728, + -0.0007384287309832871, + 0.02459181658923626, + 0.009992703795433044, + -0.0034019651357084513, + -0.015218647196888924, + 0.010349845513701439, + -0.0061807530000805855, + 0.0068841055035591125, + -0.0002305027301190421, + 0.031865864992141724, + 0.01844021864235401, + -0.04148684814572334, + -0.04804660752415657, + -0.03370259702205658, + -0.025903768837451935, + 0.0005329806008376181, + 0.006042269058525562, + 0.010553927160799503, + 0.019096193835139275, + -0.0012144669890403748, + 0.015408150851726532, + -0.02039356902241707, + 0.013046637177467346, + -0.019285699352622032, + -0.027055371552705765, + -0.012959172949194908, + 0.04049559310078621, + -0.023615142330527306, + 0.01946062594652176, + -0.016997070983052254, + 0.002786076394841075, + 0.022011645138263702, + 0.03209909796714783, + -0.014686577022075653, + 0.0020626806654036045, + -0.011406696401536465, + -0.05078713223338127, + 0.01634109392762184, + -0.004697517957538366, + -0.04775506258010864, + -0.015772582963109016, + -0.015233224257826805, + -0.02492709457874298, + 0.0014631912345066667, + -0.027827966958284378, + 0.01769677922129631, + -0.01056850515305996, + 0.020014561712741852, + 0.010123898275196552, + -0.008440226316452026, + 0.025072867050766945, + -0.01203351840376854, + 0.06513114273548126, + 0.03209909796714783, + 0.039737578481435776, + 0.0016326517798006535, + -0.02218657173216343, + 0.02772592566907406, + -0.02911076322197914, + -0.02137024514377117, + 0.04043728485703468, + 0.009526231326162815, + 0.061399366706609726, + -0.025991233065724373, + 0.0060240477323532104, + -0.019212812185287476, + -0.0056122406385838985, + -0.004387751687318087, + -0.001282797777093947, + 0.0013228852767497301, + 0.0033782771788537502, + -0.022798815742135048, + 0.07288623601198196, + -0.04822153598070145, + 0.015597655437886715, + -0.023075783625245094, + -0.0018631544662639499, + -0.025364411994814873, + -0.013520397245883942, + 0.029067032039165497, + 0.0031395747791975737, + -0.001338373520411551, + 0.017011648043990135, + 0.00486515648663044, + 0.0668221041560173, + -0.001381194218993187, + -0.030408138409256935, + -0.00023437482013832778, + 0.0007552836323156953, + 0.0073068453930318356, + -0.012376083061099052, + 0.015772582963109016, + 0.04472299665212631, + -0.006541539914906025, + 0.016705526039004326, + 0.0256559569388628, + 0.006260927766561508, + 0.0615742951631546, + -0.0013301739236339927, + 0.011785704642534256, + -0.017623892053961754, + 0.03918364271521568, + 0.026107851415872574, + 0.02492709457874298, + -0.032507263123989105, + -0.015262378379702568, + -0.012339640408754349, + 0.040349822491407394, + 0.020262373611330986, + -0.022973742336034775, + 0.01746354252099991, + 0.02269677445292473, + -0.015364419668912888, + 0.022361498326063156, + 0.00748541671782732, + -0.00489431107416749, + -0.02030610665678978, + 0.0005525688175112009, + 0.026938753202557564, + -0.035014551132917404, + -0.03151600807905197, + 0.008666173554956913, + -0.030903765931725502, + -0.0005042816628701985, + 0.025714265182614326, + -0.015378996729850769, + -0.017405234277248383, + -0.02282796986401081, + 0.04749267175793648, + 2.1246623873594217e-6, + 0.03457723185420036, + 0.0021610769908875227, + -0.004482503514736891, + 0.04860054329037666, + -0.0015916532138362527, + 0.038163233548402786, + -0.0307871475815773, + 0.0305539108812809, + -0.03026236593723297, + -0.031574320048093796, + 0.019956251606345177, + 0.014103487133979797, + 0.009227397851645947, + -0.003447519149631262, + 0.014373166486620903, + 0.003866615006700158, + -0.05629733204841614, + -0.015320687554776669, + -0.0014695688150823116, + -0.03778422623872757, + -0.009344016201794147, + -0.036909591406583786, + 0.026137005537748337, + 0.003658889327198267, + -0.006260927766561508, + 0.021588904783129692, + -0.00864430796355009, + 0.06011657044291496, + -0.04743436351418495, + -0.0054482463747262955, + 0.023731758818030357, + 0.005976671818643808, + 0.009613694623112679, + 0.006224484648555517, + -0.01906703971326351, + 0.005747079849243164, + -0.016880452632904053, + -0.02303205244243145, + -0.011654509231448174, + -0.009905239567160606, + 0.012230310589075089, + -0.017667625099420547, + 0.04900870844721794, + -0.00036352011375129223, + -0.003400143003091216, + -0.008032063953578472, + 0.019635552540421486, + -0.02416907623410225, + 0.034781314432621, + -0.03766760975122452, + 0.05125360190868378, + 0.04574340209364891, + -0.033644288778305054, + -0.014744886197149754, + 0.006002181675285101, + 0.014081621542572975, + -0.0019970829598605633, + 0.0010140298400074244, + 0.013462088070809841, + 0.01610785908997059, + -0.0355684831738472, + 0.03463554009795189, + -0.04241979122161865, + 0.03673466295003891, + 0.05011657997965813, + 0.040583059191703796, + -0.018032055348157883, + -0.024110767990350723, + -0.002396135125309229, + -0.03137023746967316, + -0.03536440432071686, + 0.006898682564496994, + -0.021924180909991264, + 0.01705537922680378, + -0.0025765285827219486, + -0.01854225993156433, + -0.062448929995298386, + 0.04603494703769684, + 0.0002603405446279794, + 0.00010152825416298583, + 0.029183650389313698, + -0.01686587557196617, + -0.023819223046302795, + -0.02911076322197914, + -0.030757993459701538, + -0.009533519856631756, + -0.012849844060838223, + 0.015131182968616486, + 0.05536438897252083, + 0.0012982861371710896, + 0.011851302348077297, + 0.002215741667896509, + -0.007419819012284279, + 0.023717181757092476, + -0.014861504547297955, + -0.04413990676403046, + 0.027171989902853966, + -0.000850035750772804, + -0.010451886802911758, + -0.009161800146102905, + -0.01246354728937149, + 0.018294446170330048, + 0.03221571817994118, + -0.01810494251549244, + -0.0016226299339905381, + 0.012419815175235271, + 0.006089645437896252, + -0.03600580245256424, + -0.004183670040220022, + -0.015233224257826805, + 0.016618061810731888, + -0.04781337454915047, + 2.8485423172242008e-5, + -0.00936588179320097, + -0.02062680572271347, + -0.027084525674581528, + 0.0063811903819441795, + -0.04344020038843155, + 0.05192415788769722, + 0.035131167620420456, + -0.0550728440284729, + 0.005437313579022884, + -0.04728859290480614, + -0.035947494208812714, + 0.00019554010941646993, + -0.023002896457910538, + -0.010765297338366508, + -0.0022175638005137444, + 0.002961003454402089, + -0.007499994244426489, + -0.01916908100247383, + -0.049446024000644684, + -0.016064127907156944, + -0.032594725489616394, + -0.014825060963630676, + -0.032507263123989105, + -0.0019770392682403326, + 0.0013110411819070578, + -0.013316315598785877, + -0.021749254316091537, + -0.05419820919632912, + -0.016049548983573914, + 0.018148673698306084, + 0.02084546536207199, + -0.005634106229990721, + 0.0009374992805533111, + -0.008986873552203178, + 0.041195303201675415, + -0.005812677554786205, + 0.015510192140936852, + -0.02521863952279091, + -0.02239065244793892, + -0.003567781299352646, + 0.041603464633226395, + 0.0037755072116851807, + -0.021516017615795135, + -0.049446024000644684, + 0.0010869160760194063, + -0.038454778492450714, + -0.00320699461735785, + 0.014249259606003761, + -0.008010197430849075, + -0.013170543126761913, + -0.010131186805665493, + 0.010743431746959686, + -0.02440231293439865, + 0.00948250014334917, + -0.028513096272945404, + -0.0015369885368272662, + -0.0016499622724950314, + -0.04650142043828964, + 0.05379004403948784, + 0.009664715267717838, + -0.030116593465209007, + 0.013578706420958042, + -0.012521855533123016, + -0.0033053909428417683, + -0.0013064858503639698, + 0.015772582963109016, + 0.037288598716259, + 0.02282796986401081, + 0.023309018462896347, + -0.002738700481131673, + -0.039300259202718735, + -0.01571427285671234, + -0.009074336849153042, + 0.009759467095136642, + -0.01841106452047825, + 0.02250727079808712, + 0.016997070983052254, + -0.013753633014857769, + 0.021297359839081764, + 0.025524761527776718, + 0.015291533432900906, + 0.00862973090261221, + 0.004431483335793018, + -0.017215730622410774, + -0.027580153197050095, + -0.004952619783580303, + -0.005320695694535971, + -0.021399399265646935, + -0.013039348646998405, + -0.018804648891091347, + 0.0076166121289134026, + -0.0008705350337550044, + 0.005590374581515789, + 0.002186587080359459, + 0.005276963580399752, + 0.029693853110074997, + 0.016268208622932434, + 0.031137000769376755, + 0.01947520300745964, + 0.08093287795782089, + -0.02346936985850334, + -0.018032055348157883, + 0.011807571165263653, + 0.024752166122198105, + -0.011865879409015179, + 0.017755087465047836, + -0.014409609138965607, + 0.04072882980108261, + 0.009220109321177006, + 0.017871705815196037, + -0.01884838193655014, + -0.0010796274291351438, + 0.03559764102101326, + 0.02555391564965248, + -0.01988336630165577, + -0.010306114330887794, + -0.021443132311105728, + -0.028717178851366043, + 0.026516014710068703, + 0.013418356887996197, + -0.0005452801706269383, + -0.008564133197069168, + -0.015262378379702568, + 0.01883380487561226, + -0.010699699632823467, + 0.014424187131226063, + -0.045072849839925766, + -0.031107846647500992, + -0.012857132591307163, + 0.030641375109553337, + -0.007008011918514967, + 0.0036734663881361485, + 0.009839641861617565, + 0.045189470052719116, + -0.07119528204202652, + 0.007099119480699301, + -0.0032981024123728275, + -0.011064130812883377, + 0.035014551132917404, + 0.005364427343010902, + 0.0020116602536290884, + -0.030495602637529373, + 0.004792270250618458, + 0.021413976326584816, + 0.04419821500778198, + -0.02638481929898262, + 0.007037166506052017, + -0.03988334909081459, + 0.0013948604464530945, + -0.01157433446496725, + 0.004336731042712927, + 0.03253641724586487, + -0.045481014996767044, + -0.007937311194837093, + -0.010306114330887794, + -0.0015032787341624498, + 0.02584546059370041, + -0.006851306650787592, + -0.023527678102254868, + -0.01631193980574608, + -0.011741973459720612, + 0.014373166486620903, + -0.022682197391986847, + 0.0002687679952941835, + 0.027244877070188522, + 0.0005607685307040811, + -0.009817776270210743, + 0.0038811923004686832, + -0.0343148410320282, + -0.008855678141117096, + -0.05142853036522865, + 0.04720112681388855, + 0.007230314891785383, + 0.0030593997798860073, + -0.014336722902953625, + 0.05413989722728729, + -0.01124634686857462, + -0.014475206844508648, + 0.019839635118842125, + -0.03737606480717659, + 0.02209910750389099, + 0.021282782778143883, + -0.006971568800508976, + -0.00411078380420804, + -0.014198238961398602, + -0.042448945343494415, + -0.009518942795693874, + 0.03300289064645767, + 0.014373166486620903, + 0.01663263887166977, + 0.014256548136472702, + -0.0017146487953141332, + -0.03151600807905197, + -0.02018948830664158, + -0.005491978023201227, + 0.0036862215492874384, + 0.0128279784694314, + -0.0027660327032208443, + -0.00822156760841608, + -0.01533526461571455, + 0.03793000057339668, + 0.025160329416394234, + -0.022171994671225548, + 0.02010202407836914, + -0.016472289338707924, + 0.015655964612960815, + -0.004748538602143526, + 0.009446056559681892, + -0.0032580147963017225, + -0.005087459459900856, + 0.03953349590301514, + -0.0179008599370718, + -0.022755084559321404, + -0.001075071981176734, + -0.0023669805377721786, + 0.028935836628079414, + 0.029912512749433517, + 0.038688015192747116, + -0.039096180349588394, + 0.016705526039004326, + 0.012995616532862186, + 0.0061078667640686035, + -0.0009429657366126776, + 0.0171574205160141, + 0.008680751547217369, + -0.0343148410320282, + -0.009810487739741802, + -0.008243433199822903, + 0.013374624773859978, + 0.006439499091356993, + 0.0005133924423716962, + 0.031778398901224136, + -0.026661787182092667, + 0.02953350357711315, + -0.028032047674059868, + 0.005976671818643808, + 0.0210349690169096, + -0.019825056195259094, + -0.03320696949958801, + 0.0056049516424536705, + -0.022055376321077347, + -0.045889176428318024, + 0.000535258324816823, + 0.002077257726341486, + 0.01571427285671234, + -0.02093292772769928, + -0.004617343191057444, + 0.010204073041677475, + -0.051749229431152344, + 0.01419095043092966, + 0.005517488345503807, + 0.018600568175315857, + -0.015204069204628468, + -0.004854223690927029, + 0.03518947586417198, + 0.004118072334676981, + -0.017244884744286537, + 0.007321422919631004, + 0.0010103854583576322, + -0.017944592982530594, + -0.005335272755473852, + -0.005761657375842333, + 0.03189501911401749, + -0.024358581751585007, + 0.021632635965943336, + -0.033556826412677765, + -0.0037463526241481304, + 0.020043715834617615, + -0.026851290836930275, + -0.013155966065824032, + 0.006147954147309065, + 0.020670536905527115, + -0.01491252426058054, + 0.013782788068056107, + -0.010561215691268444, + -0.005976671818643808, + -0.030204057693481445, + 0.025145752355456352, + -0.014030600897967815, + 0.001089649274945259, + 0.014227394014596939, + 0.012521855533123016, + 0.015495614148676395, + 0.022594735026359558, + 0.008134104311466217, + -0.020539341494441032, + -0.030845455825328827, + 0.013330893591046333, + 0.01313410047441721, + -0.0016408514929935336, + -0.011661798693239689, + 0.006690956652164459, + -0.020641382783651352, + -0.01644313521683216, + 0.020058292895555496, + 0.0003309490857645869, + 0.009978125803172588, + -0.0134547995403409, + 0.013906694017350674, + 0.010247805155813694, + 0.016209900379180908, + 0.0006045002373866737, + 0.01571427285671234, + -0.04489792510867119, + 0.040757983922958374, + -0.01999998465180397, + 0.037638455629348755, + 0.046734657138586044, + -0.036676354706287384, + 0.0028316304087638855, + -0.013411068357527256, + 0.007106408476829529, + -0.0016891385894268751, + -0.011785704642534256, + 0.01338920183479786, + -0.005419091787189245, + 0.016676371917128563, + -0.013046637177467346, + -0.0005953894578851759, + -0.006075067911297083, + 0.01392856054008007, + -0.014467918314039707, + 0.014074333012104034, + -0.034606385976076126, + 0.011151595041155815, + 0.03609326481819153, + -0.019285699352622032, + 0.01989794336259365, + 0.006421277765184641, + 0.010276959277689457, + 0.025072867050766945, + 0.028294438496232033, + -0.011741973459720612, + 0.009591829031705856, + -0.004220113158226013, + 0.025670533999800682, + -0.0063811903819441795, + -0.00596573855727911, + -0.011428561992943287, + 0.009934394620358944, + 0.009555386379361153, + -0.00984693132340908, + 0.005163989961147308, + -0.02440231293439865, + 0.01966470666229725, + 0.013527685776352882, + 0.04749267175793648, + 0.0036989767104387283, + -0.01685129851102829, + -0.00011695963621605188, + 0.021268203854560852, + 0.026749249547719955, + 0.013352759182453156, + -0.008046641014516354, + -0.012499989941716194, + 0.001363883726298809, + 0.032711345702409744, + -0.007463551126420498, + 0.024212809279561043, + 0.005932939704507589, + 0.009358593262732029, + -0.02982504852116108, + -0.03495623916387558, + -0.01623905450105667, + 0.0033728107810020447, + 0.015306110493838787, + -0.012689494527876377, + -0.014927102252840996, + 0.00022788338537793607, + 0.026545168831944466, + -0.04011658579111099, + -0.031049538403749466, + 0.019125349819660187, + 0.015349841676652431, + -0.0028917614836245775, + 0.01854225993156433, + -0.01173468492925167, + -0.012981039471924305, + 0.011822148226201534, + 0.011362964287400246, + 0.008177836425602436, + -0.011034976691007614, + 0.0008550466736778617, + 0.014438764192163944, + -0.01314138900488615, + -0.017944592982530594, + 0.022332344204187393, + -0.009183665737509727, + -0.017419811338186264, + -0.014037889428436756, + -0.04116614907979965, + -0.0030521112494170666, + 0.0014513472560793161, + 0.009395035915076733, + -0.0012600208865478635, + 0.027376070618629456, + 0.02249269373714924, + 0.00962098315358162, + -0.03906702250242233, + 0.014438764192163944, + -0.022157417610287666, + 0.0026967909652739763, + -0.02376091480255127, + 0.027682194486260414, + -0.002456266200169921, + -0.04326527193188667, + -0.009147223085165024, + 0.0166472177952528, + -0.021209895610809326, + -0.029883358627557755, + -0.001194423297420144, + 0.004719384014606476, + 0.01801747828722, + -0.017011648043990135, + -0.012587453238666058, + -0.011333810165524483, + 0.003801017301157117, + -0.04688042774796486, + 0.011319233104586601, + 0.010007280856370926, + -0.010743431746959686, + 0.01781339757144451, + 0.006927837152034044, + -0.020451879128813744, + -0.0036297347396612167, + -0.01967928372323513, + 0.031049538403749466, + -0.002778787864372134, + 0.025378989055752754, + 0.014409609138965607, + -0.004263844806700945, + 0.01543730590492487, + 0.012223022058606148, + -0.019737593829631805, + 0.000935677089728415, + -0.01193876564502716, + -0.01781339757144451, + -0.001528788823634386, + 0.00858599878847599, + -0.02104954607784748, + -0.006807574536651373, + 0.010313402861356735, + -0.008345474489033222, + 0.014023312367498875, + -0.03591834008693695, + -0.013943137601017952, + -0.013790076598525047, + 0.005295185372233391, + 0.005353494081646204, + -0.00669460091739893, + 0.02093292772769928, + -0.02835274673998356, + 0.03883378952741623, + 0.050816286355257034, + -0.01203351840376854, + -0.00030817213701084256, + -0.005608595907688141, + -0.07632646709680557, + -0.01893584430217743, + -0.020174911245703697, + 0.01010203268378973, + -0.010313402861356735, + -0.014139930717647076, + -0.04562678560614586, + 0.019431471824645996, + -0.03393583372235298, + -0.008571421727538109, + -0.01830902323126793, + 0.016880452632904053, + 0.025685111060738564, + -0.011137017048895359, + 0.008804657496511936, + -0.00714285159483552, + -0.0035131166223436594, + -0.012733225710690022, + -0.024548085406422615, + 0.01927112229168415, + -0.00675291009247303, + 0.03985419496893883, + 0.019810479134321213, + -0.04947517812252045, + 0.014671999961137772, + -0.020335260778665543, + -0.02323613315820694, + 0.023061206564307213, + 0.02513117529451847, + -0.016151590272784233, + -0.022653043270111084, + -0.007241247687488794, + -0.0021246338728815317, + -0.03635565564036369, + -0.019314853474497795, + -0.008556844666600227, + -0.003008379600942135, + 0.009970837272703648, + 0.009518942795693874, + -0.004238334950059652, + -0.014358589425683022, + -0.007937311194837093, + 0.00675291009247303, + 0.017857128754258156, + 0.005535709671676159, + -0.015787160024046898, + 0.0062281289137899876, + -0.00179391261190176, + 0.009045182727277279, + 0.0031869509257376194, + -0.010699699632823467, + 0.009504365734755993, + -0.0032452598679810762, + 0.013381913304328918, + -0.01419095043092966, + -0.021909603849053383, + -0.02657432295382023, + -0.0037499971222132444, + 0.03279880806803703, + -0.029810471460223198, + 0.030204057693481445, + -0.005131191108375788, + 0.0083236088976264, + -0.03128277510404587, + 0.021734677255153656, + -0.00937317032366991, + -0.02249269373714924, + -0.00089285644935444, + -0.022259457036852837, + 0.029562659561634064, + 0.0005047371960245073, + 0.004238334950059652, + 0.0007530059665441513, + 0.006177108734846115, + 0.030524756759405136, + 0.026341086253523827, + -0.004989062901586294, + 0.009489788673818111, + 0.021443132311105728, + -0.008593287318944931, + 0.010583082213997841, + -0.023571409285068512, + 0.009489788673818111, + -0.012011651881039143, + 0.006935125682502985, + 0.03504370525479317, + -0.0026220823638141155, + 0.0011616244446486235, + -0.0008441137615591288, + -0.006064135115593672, + -0.01356412936002016, + 0.005557575728744268, + -0.008768214844167233, + 0.016297362744808197, + 0.047376055270433426, + 0.02147228643298149, + -0.00669460091739893, + 0.0177842415869236, + 0.0068768165074288845, + -0.009387747384607792, + 0.009963548742234707, + 0.006224484648555517, + -0.007879002019762993, + -0.0035860028583556414, + 0.017944592982530594, + -0.030524756759405136, + -0.0104591753333807, + -0.009650138206779957, + 0.0030120238661766052, + 0.004628275986760855, + 0.017434388399124146, + 0.010204073041677475, + 0.00031910507823340595, + -0.013476666063070297, + 0.004059763625264168, + 0.0006837640539743006, + -0.006435854826122522, + -0.017186574637889862, + -0.0215451717376709, + -0.03005828522145748, + 0.028848374262452126, + 0.01203351840376854, + -0.0345480777323246, + -0.010728854686021805, + 0.02741980366408825, + 0.005973027087748051, + -0.05180753767490387, + -0.01417637336999178, + -0.017521852627396584, + 0.05408158898353577, + -0.03912533447146416, + 0.010896492749452591, + -0.013979580253362656, + 0.0032470820005983114, + 0.0017702245386317372, + 0.02147228643298149, + 0.03358598053455353, + 0.034723006188869476, + -0.013826519250869751, + 0.06792997568845749, + 0.0044132620096206665, + 0.02123904973268509, + -0.026326509192585945, + 0.004129005596041679, + -0.04157431051135063, + 0.0073068453930318356, + 0.015378996729850769, + 0.023483946919441223, + 0.022900857031345367, + -0.040670521557331085, + -0.0012263109674677253, + -0.03591834008693695, + -0.010204073041677475, + -0.014271125197410583, + 0.018148673698306084, + -0.008768214844167233, + 0.00486515648663044, + 0.021749254316091537, + -0.02155974879860878, + 0.007357866037636995, + -0.023498523980379105, + -0.013279872946441174, + 0.0037390640936791897, + -0.025524761527776718, + -0.025874614715576172, + -0.006898682564496994, + 0.0010723387822508812, + 0.020335260778665543, + -0.009693869389593601, + -0.009504365734755993, + -0.017405234277248383, + 0.008513112552464008, + 0.02311951480805874, + 0.011807571165263653, + -0.008819234557449818, + 0.0017419811338186264, + 0.010954801924526691, + -0.025510184466838837, + -0.001096026855520904, + 0.0025601291563361883, + 0.012806111946702003, + -0.011290078051388264, + -0.011880457401275635, + -0.002481776522472501, + 0.019344007596373558, + -0.010335268452763557, + -0.008199702017009258, + 0.010014569386839867, + 0.015320687554776669, + -0.0262827780097723, + 0.051224447786808014, + -0.029810471460223198, + -0.0036752885207533836, + -0.026457704603672028, + -0.006133377086371183, + -0.035655949264764786, + -0.012011651881039143, + -0.0034657407086342573, + 0.010648679919540882, + -0.03536440432071686, + -0.027361493557691574, + -0.00011530830670380965, + -0.005462823435664177, + -0.02157432772219181, + 0.0036989767104387283, + 0.0028808286879211664, + -0.03253641724586487, + -0.0358017198741436, + -0.046443112194538116, + 0.01686587557196617, + 0.011078708805143833, + 0.0011971564963459969, + -0.01927112229168415, + -0.027463534846901894, + 0.028527673333883286, + 0.001967928372323513, + -0.0269095990806818, + 0.004996351897716522, + -0.006406700238585472, + -0.0030739770736545324, + 0.015204069204628468, + -0.016399404034018517, + -0.025378989055752754, + -0.01830902323126793, + -0.01946062594652176, + -0.006235417909920216, + 0.021122431382536888, + 0.005153057165443897, + 0.023892108350992203, + 0.010685122571885586, + -0.01016034185886383, + 0.029679276049137115, + -0.01642855815589428, + 0.01747811958193779, + 0.009752178564667702, + -0.008534979075193405, + 0.002911805175244808, + -0.004905243869870901, + 0.028658868744969368, + 0.004398684483021498, + 0.013425645418465137, + 0.04069967567920685, + -0.00407798495143652, + 0.0013802831526845694, + 0.03309035301208496, + -0.01696791686117649, + -0.023206979036331177, + 0.012565587647259235, + -0.010604947805404663, + -0.0013966825790703297, + 0.011049553751945496, + 0.0067565543577075005, + -0.0025491961278021336, + 0.025378989055752754, + -0.01695333980023861, + -0.01246354728937149, + -0.00894314143806696, + -0.02806120179593563, + -0.025524761527776718, + -0.0073797316290438175, + -0.020378991961479187, + 0.007966466248035431, + -0.08921276032924652, + -0.04346935451030731, + -0.005309762433171272, + -0.021093277260661125, + 0.0006527873920276761, + -0.020160334184765816, + 0.001779335318133235, + 0.028964990749955177, + -0.0038593264762312174, + 0.03046644851565361, + -0.005433669313788414, + 0.008032063953578472, + 0.016574330627918243, + 0.020029138773679733, + 0.00410713953897357, + -0.006195330526679754, + -0.006942414212971926, + -0.0027204789221286774, + 0.005619529169052839, + -0.010590370744466782, + -0.012988328002393246, + 0.006257283501327038, + 0.035539329051971436, + -0.014766751788556576, + -0.009723024442791939, + 0.02291543409228325, + -0.004657430574297905, + -0.002164721256121993, + 0.006632647942751646, + -0.01966470666229725, + 0.004271133802831173, + -0.00017822963127400726, + 0.010131186805665493, + 0.010218651033937931, + 0.0013046637177467346, + 0.02597665600478649, + -0.009358593262732029, + -0.0031887730583548546, + 0.04932940751314163, + 0.023615142330527306, + -0.004741250071674585, + -0.01623905450105667, + -0.005943872965872288, + -0.01725946180522442, + 0.012281331233680248, + 0.008913987316191196, + 0.006224484648555517, + -0.040233202278614044, + 0.029679276049137115, + 0.016195321455597878, + 0.01746354252099991, + -0.008760926313698292, + -0.0009475211263634264, + -0.023585986346006393, + 0.014169084839522839, + 0.013061214238405228, + 0.024650126695632935, + -0.004912532400339842, + 0.019956251606345177, + 0.0034037872683256865, + 0.058658845722675323, + 0.018367331475019455, + 0.010262382216751575, + -0.016195321455597878, + -0.008389206603169441, + -0.01161806657910347, + 0.01502914261072874, + -0.006304659880697727, + 0.031982481479644775, + 0.00599124887958169, + -0.01725946180522442, + 0.00489431107416749, + -0.01428570318967104, + -0.0013948604464530945, + 0.02450435422360897, + 0.016705526039004326, + 0.030728839337825775, + 0.01501456554979086, + 0.010145764797925949, + -0.005440957844257355, + -0.005200433079153299, + -0.0051749227568507195, + 0.014322145842015743, + 0.013068502768874168, + -0.01318512111902237, + -0.008979585021734238, + 0.012361506000161171, + -0.013258007355034351, + -0.016822144389152527, + -0.001473213080316782, + 0.014205528423190117, + 0.012339640408754349, + 0.02814866602420807, + -0.0002717290190048516, + -0.006151598412543535, + 0.02513117529451847, + 0.019518934190273285, + 0.006337458733469248, + 0.0165305994451046, + -0.010371712036430836, + -0.006676379591226578, + -0.01623905450105667, + 0.020349837839603424, + -0.017653048038482666, + -0.008250722661614418, + 0.022857123985886574, + 0.008476669900119305, + 0.01862972229719162, + 0.003276236355304718, + -0.010262382216751575, + 0.01823613792657852, + 0.018250714987516403, + 0.0024872429203242064, + -0.02345479093492031, + -0.021020391955971718, + 0.00447521498426795, + 0.00932214967906475, + -0.006552472710609436, + 0.013957714661955833, + 0.0034019651357084513, + -0.0034438748843967915, + 0.019810479134321213, + 0.014504361897706985, + -0.010349845513701439, + 0.01798832416534424, + 0.012026229873299599, + 0.0006623537046834826, + -0.01925654523074627, + -0.00936588179320097, + 0.008338185958564281, + -0.0037354198284447193, + 0.0038921250961720943, + -0.005703348200768232, + 0.011712818406522274, + 0.012485412880778313, + -0.004001454450190067, + -0.011158883571624756, + 0.00899416208267212, + 0.01695333980023861, + -0.020072869956493378, + -0.03034983016550541, + 0.005032795015722513, + 0.003081265836954117, + 0.017507275566458702, + -0.008469381369650364, + 0.0056413947604596615, + -0.007084542419761419, + -0.015247801318764687, + 0.005003640428185463, + -0.030728839337825775, + -0.010204073041677475, + 0.01610785908997059, + 0.016807567328214645, + 0.02900872379541397, + -0.004409617278724909, + -0.03758014366030693, + -0.01047375239431858, + 0.011902322992682457, + -0.009599117562174797, + 0.0033964987378567457, + 0.00827258825302124, + -0.01725946180522442, + 0.011909611523151398, + -0.0036260904744267464, + 0.031865864992141724, + -0.008622442372143269, + -0.008243433199822903, + -0.02010202407836914, + -0.006676379591226578, + -0.013476666063070297, + 0.012835266999900341, + -0.007368798833340406, + -0.016064127907156944, + -0.012973750941455364, + -0.0006628092378377914, + -0.019518934190273285, + -0.00973760150372982, + -0.021836716681718826, + 0.006118799559772015, + -0.020976658910512924, + -0.05425651744008064, + 0.027667615562677383, + -0.0112609239295125, + 0.0005944783915765584, + 0.020801732316613197, + 0.006523318588733673, + -0.0065743387676775455, + -0.0007001634221524, + 0.006249994970858097, + 0.011209903284907341, + 0.037725917994976044, + -0.018032055348157883, + -0.013148677535355091, + 0.0002744622470345348, + 0.006847662385553122, + 0.018192404881119728, + 0.006191685795783997, + 0.021005814895033836, + 0.0017009825678542256, + 0.01198978628963232, + -0.0026603478472679853, + -0.03405245020985603, + 0.011865879409015179, + 0.013986869715154171, + -0.004187314305454493, + -0.017857128754258156, + -0.027069948613643646, + 0.032390642911195755, + 0.020437302067875862, + -0.03451892361044884, + 0.0053024739027023315, + -0.006785708945244551, + 0.0038921250961720943, + -0.02313409186899662, + -0.012995616532862186, + 0.008666173554956913, + -0.013615149073302746, + -0.024956248700618744, + -0.006709178443998098, + -0.028411056846380234, + 0.02123904973268509, + 0.007179294712841511, + 0.03405245020985603, + -0.009876085445284843, + 0.004453349392861128, + 0.017638469114899635, + 0.0066836681216955185, + -0.01844021864235401, + -0.0050291502848267555, + 0.015626810491085052, + -0.02230319008231163, + 0.002864429261535406, + -0.0034329418558627367, + -0.009701158851385117, + -0.01706995815038681, + -0.0007575613562949002, + 0.02021864242851734, + -0.0023141379933804274, + 0.011967920698225498, + -0.01956266723573208, + 0.0034165424294769764, + 0.0035896473564207554, + -0.005608595907688141, + 0.013279872946441174, + 0.007310489658266306, + -0.008571421727538109, + -0.007623900659382343, + 0.005444602109491825, + 0.002104590181261301, + -0.023192401975393295, + 0.0038593264762312174, + -0.0013356403214856982, + -0.0105757936835289, + 0.0012181112542748451, + -0.001522411359474063, + -0.009810487739741802, + 0.0445772223174572, + -0.0048724450170993805, + 0.015932932496070862, + -0.013104945421218872, + -0.031020384281873703, + 0.002275872742757201, + 0.03128277510404587, + -0.037725917994976044, + 0.023425636813044548, + 0.004121716599911451, + -0.0049453312531113625, + 0.010750720277428627, + 0.029446041211485863, + -0.012893576174974442, + -0.007284979801625013, + -0.004092562478035688, + -0.016997070983052254, + -0.025160329416394234, + -0.004704806953668594, + -0.010255093686282635, + 0.0032616592943668365, + -0.024518931284546852, + 0.013615149073302746, + 0.018717186525464058, + -0.02795916050672531, + -0.003616979578509927, + 0.010196784511208534, + 0.015568500384688377, + 0.005473756697028875, + 0.02396499551832676, + 0.0059147183783352375, + -0.011916900053620338, + 0.018979577347636223, + -0.0037499971222132444, + 0.015466460026800632, + 0.023206979036331177, + 0.034489769488573074, + 0.014569959603250027, + 0.003990521654486656, + -0.004220113158226013, + 0.025670533999800682, + -0.0027842542622238398, + 0.028075778856873512, + -0.013979580253362656, + 0.0267929807305336, + -0.019941674545407295, + -0.021632635965943336, + -0.007048099301755428, + -0.014533516019582748, + -0.00021706432744394988, + 0.021705521270632744, + 0.012441680766642094, + -0.0025018202140927315, + -0.01673468016088009, + -0.0008418360375799239, + -0.0047157397493720055, + -0.020058292895555496, + -0.004121716599911451, + 0.008389206603169441, + 0.023309018462896347, + 0.012886286713182926, + -0.001297375070862472, + 0.013258007355034351, + -0.03725944459438324, + 0.000363975646905601, + 0.017755087465047836, + 0.029883358627557755, + 0.014016023837029934, + 0.000727951293811202, + -0.029183650389313698, + -0.010080167092382908, + 0.01642855815589428, + 0.0015333442715927958, + -0.005696059670299292, + 0.011822148226201534, + 0.01376092154532671, + -0.026195313781499863, + 0.005251453723758459, + 0.005091103725135326, + -0.006239062175154686, + -0.016588907688856125, + -0.016676371917128563, + -0.014774040319025517, + -0.0005840010126121342, + 0.0059147183783352375, + 0.02440231293439865, + -0.01642855815589428, + 0.007037166506052017, + 0.013221563771367073, + 0.029489772394299507, + 0.005816321820020676, + 0.04113699495792389, + 0.014766751788556576, + -0.022113684564828873, + 0.0028680735267698765, + 0.010262382216751575, + 0.0015078340657055378, + -0.018483949825167656, + -0.00827258825302124, + 0.026938753202557564, + -0.01016034185886383, + 0.0007976487977430224, + -0.003024779027327895, + -0.03288627043366432, + -0.022040799260139465, + 0.004697517957538366, + 0.014497073367238045, + 0.024970825761556625, + -0.022215725854039192, + 0.011085997335612774, + 0.01131194457411766, + -0.032915424555540085, + -0.005768945906311274, + -0.01737608015537262, + -4.38171555288136e-5, + -0.00602040346711874, + -0.007008011918514967, + 0.0018913978710770607, + 0.0035258717834949493, + 0.015422727912664413, + -0.02814866602420807, + 0.020787155255675316, + -0.0014458807418122888, + -0.0035787143278867006, + 0.020378991961479187, + -0.020903773605823517, + -0.015553923323750496, + -0.023950418457388878, + -0.01600581780076027, + -0.02709910459816456, + 0.0012636651517823339, + -0.0016645394498482347, + -0.0231486689299345, + 0.013695324771106243, + 0.004424194805324078, + -0.0048360018990933895, + 0.0015187669778242707, + -0.002179298549890518, + -0.00022833891853224486, + -0.007572880480438471, + -0.019198235124349594, + 0.005819966085255146, + -0.013155966065824032, + -0.024518931284546852, + -0.001546099316328764, + 0.007438040804117918, + -0.005371715873479843, + 0.005535709671676159, + -0.02134109102189541, + -0.016034971922636032, + 0.01349853165447712, + 0.026122428476810455, + -0.009271129965782166, + -0.018061209470033646, + 0.0173906572163105, + -0.015189492143690586, + 0.022463539615273476, + -0.006650869268923998, + -0.02042272500693798, + 0.007419819012284279, + -0.011501448228955269, + 0.04134107381105423, + 0.006953347008675337, + -0.021938757970929146, + 0.006716466974467039, + 0.010276959277689457, + 0.005437313579022884, + 0.0027660327032208443, + -0.01674925722181797, + 0.004682940896600485, + -0.014395032078027725, + -0.022638466209173203, + -0.016705526039004326, + 0.0049453312531113625, + 0.0036352011375129223, + 0.016516022384166718, + 0.0017829795833677053, + -0.0032634814269840717, + 0.016093282029032707, + -0.0007138295914046466, + -0.006570694502443075, + 0.00486880075186491, + -0.0077988277189433575, + -0.031020384281873703, + -0.022040799260139465, + -0.03551017493009567, + -0.01959182135760784, + -0.004555389750748873, + -0.00979591067880392, + -0.007361510302871466, + 0.01749269664287567, + 0.01571427285671234, + 0.029139919206500053, + 0.0037609299179166555, + -0.006045913323760033, + -0.018061209470033646, + 0.01010932121425867, + -0.006672735325992107, + 0.029139919206500053, + -0.01088191568851471, + 0.0044861482456326485, + -0.007944599725306034, + -0.020539341494441032, + 0.015553923323750496, + 0.019227389246225357, + 8.10290002846159e-5, + 0.0037153761368244886, + 0.011319233104586601, + -0.033556826412677765, + 0.005360783077776432, + 0.009701158851385117, + -0.025583069771528244, + -0.029548080638051033, + -0.020145757123827934, + 0.023513101041316986, + -0.017959170043468475, + 0.00863701943308115, + -0.0066107818856835365, + 0.004252912010997534, + -0.010036434978246689, + -0.005535709671676159, + 0.010123898275196552, + 0.01613701321184635, + -0.005382648669183254, + 0.011902322992682457, + 0.009198243729770184, + 0.013833807781338692, + 0.008338185958564281, + 0.009635561145842075, + -0.004566323012113571, + 0.045364394783973694, + -0.00869532860815525, + -0.009540808387100697, + 0.01947520300745964, + -0.01654517650604248, + 0.01746354252099991, + -0.018177827820181847, + 0.008666173554956913, + 0.017361503094434738, + -0.004690229427069426, + -0.013061214238405228, + -0.005163989961147308, + 0.02176383137702942, + -0.004311221186071634, + 0.006067779380828142, + -0.007281335070729256, + -0.011435850523412228, + 0.013979580253362656, + -0.011413984932005405, + -0.03486877679824829, + -0.007944599725306034, + 0.007813405245542526, + 0.017011648043990135, + -0.0030393560882657766, + -0.0040670521557331085, + 0.018906690180301666, + 0.006045913323760033, + -0.005025506019592285, + -0.008790080435574055, + -0.003547737607732415, + 0.024241963401436806, + 0.0012235777685418725, + -0.016209900379180908, + -0.014905235730111599, + 0.0021610769908875227, + -0.015539346262812614, + -0.0014385920949280262, + -0.0021064123138785362, + -0.020174911245703697, + 0.0001986150018638, + 0.009336727671325207, + -0.010787163861095905, + 0.00528425257652998, + -0.032186564058065414, + -0.0032981024123728275, + -0.0076530552469193935, + 0.00868804007768631, + 0.014008735306560993, + 0.00984693132340908, + 0.010131186805665493, + 0.004354952834546566, + 0.007580169010907412, + -0.021005814895033836, + -0.0024653770960867405, + -0.006067779380828142, + -0.0013620615936815739, + -0.010131186805665493, + -0.007478128187358379, + -0.002018948784098029, + 0.09650138020515442, + -0.01173468492925167, + -0.011428561992943287, + 0.008228856138885021, + 0.02523321658372879, + -0.005007284693419933, + 0.0029409597627818584, + 0.02062680572271347, + 0.011501448228955269, + -0.02384837716817856, + -0.0037463526241481304, + -0.020874619483947754, + 0.01501456554979086, + -0.0013584173284471035, + -0.005506555549800396, + 0.010080167092382908, + 0.014883370138704777, + 0.015743426978588104, + -0.006997079122811556, + 0.016297362744808197, + 0.03314866125583649, + 0.0032470820005983114, + -0.003216105280444026, + -0.006800286006182432, + 0.0007548280991613865, + -0.003117708954960108, + 0.01235421746969223, + 0.017930014058947563, + 0.024096190929412842, + 0.001411259756423533, + 0.007080898154526949, + 0.009948971681296825, + -0.008396495133638382, + -0.020349837839603424, + 0.0043768188916146755, + 0.015364419668912888, + -0.017186574637889862, + 0.012857132591307163, + 0.002689502201974392, + 0.028425633907318115, + -0.004398684483021498, + -0.020466456189751625, + 0.018279869109392166, + -0.008986873552203178, + 0.0173906572163105, + 0.011741973459720612, + -0.01497083343565464, + -0.007587457541376352, + 0.013972291722893715, + -0.006319236941635609, + -0.012893576174974442, + 0.0010377177968621254, + 0.0018248892156407237, + 0.015087451785802841, + 0.014118064194917679, + -0.0007010744884610176, + 0.015189492143690586, + -0.004668363835662603, + -0.01350582018494606, + 0.00318148429505527, + -0.005717925261706114, + 0.0014504361897706985, + -0.030962074175477028, + -0.04093291237950325, + 0.011005822569131851, + -0.01156704593449831, + -0.011588912457227707, + 0.0008878455264493823, + -0.01193147711455822, + 0.027390649542212486, + 6.85016784700565e-5, + 0.010758008807897568, + -0.0030156681314110756, + -0.016516022384166718, + -0.018177827820181847, + 0.01344751100987196, + 0.012456257827579975, + -0.01539357379078865, + -0.018760917708277702, + -0.004697517957538366, + 0.0051384796388447285, + 0.0032489041332155466, + -0.00318148429505527, + -0.018177827820181847, + -0.002332359552383423, + -0.009446056559681892, + 0.00925655197352171, + -0.004817780572921038, + 0.004555389750748873, + -0.015889199450612068, + 0.0003291269240435213, + 0.010670545510947704, + -0.01622447744011879, + -0.000148277948028408, + -0.0012818867107853293, + 0.009810487739741802, + -0.00709183095023036, + -0.01937316171824932, + 0.01935858465731144, + -0.004620987456291914, + -0.012674917466938496, + 0.010174918919801712, + 0.010400866158306599, + 0.005244164727628231, + -0.0053389170207083225, + -0.0004361785831861198, + 0.005357138812541962, + 0.01893584430217743, + -0.006982501596212387, + 0.008104950189590454, + -0.01590377651154995, + -0.011822148226201534, + -0.018469372764229774, + -0.012434392236173153, + -0.02919822745025158, + 0.033236123621463776, + -0.015583078376948833, + 0.006946058478206396, + -0.013833807781338692, + -0.03026236593723297, + 0.005940228700637817, + 0.0019606398418545723, + 0.0006864972529001534, + -0.008520401082932949, + 9.241747466148809e-5, + 0.012478124350309372, + -0.008090372197329998, + -0.0015078340657055378, + -0.019927097484469414, + 0.0065269628539681435, + 0.010196784511208534, + 0.006599849089980125, + 0.004380463156849146, + -0.003316323971375823, + -0.005659616552293301, + -0.009016027674078941, + -0.011158883571624756, + -0.013309027068316936, + 0.022653043270111084, + -0.014701154083013535, + -0.0015552100958302617, + -0.005433669313788414, + -0.009460633620619774, + 0.010123898275196552, + -0.007915445603430271, + -0.016895029693841934, + -0.024154499173164368, + -0.002875362057238817, + 0.03702620789408684, + 0.004934398457407951, + 0.0127696692943573, + -0.024518931284546852, + -0.009453345090150833, + -0.010247805155813694, + 0.011115151457488537, + 0.0186442993581295, + -0.01663263887166977, + -0.019110772758722305, + -0.009271129965782166, + -0.01344751100987196, + 0.012018940411508083, + 0.022478116676211357, + -0.0307871475815773, + -0.0016290073981508613, + -0.007529148366302252, + -0.0014887014403939247, + 0.00036648110835812986, + 0.005440957844257355, + 0.009067048318684101, + 0.015932932496070862, + 0.0018932201201096177, + -0.0043403757736086845, + -0.0018695320468395948, + -0.007995620369911194, + 0.007813405245542526, + 0.029752163216471672, + -0.008520401082932949, + 0.007791539188474417, + -0.016924185678362846, + 0.0173906572163105, + 0.022011645138263702, + -0.011122439987957478, + 0.007820693776011467, + -0.006512385327368975, + 0.011661798693239689, + -0.010138476267457008, + 0.021195318549871445, + -0.004850579425692558, + 0.0047995587810873985, + 0.006916903890669346, + -0.024548085406422615, + 0.018265292048454285, + 0.01642855815589428, + -0.015349841676652431, + 0.011661798693239689, + 0.01355684082955122, + -0.0004787714860867709, + 0.01507287472486496, + 0.011107862927019596, + -0.00018882090807892382, + -0.0032725920900702477, + -0.003134108381345868, + 0.018877536058425903, + -0.00942419096827507, + 0.0037827957421541214, + -0.0031359305139631033, + -0.009868796914815903, + -0.017667625099420547, + -0.007387020159512758, + 0.00018540436576586217, + -0.047784216701984406, + -0.025568492710590363, + 0.005845476407557726, + 0.001546099316328764, + -0.023527678102254868, + 0.002312315860763192, + 0.008782791905105114, + 0.007051743566989899, + 0.03005828522145748, + 0.02868802286684513, + 0.004635564982891083, + 0.018862958997488022, + -0.002543729729950428, + -0.01893584430217743, + 0.006905971094965935, + -0.004919820930808783, + 0.01884838193655014, + -0.0008892121259123087, + 0.015291533432900906, + -0.006731044035404921, + 0.0024799543898552656, + -0.010685122571885586, + 0.00526238651946187, + 0.0038083060644567013, + 0.017419811338186264, + 0.036588892340660095, + 0.004037897568196058, + -0.0018212449504062533, + -0.015466460026800632, + -0.0002236696454929188, + -0.01010932121425867, + 0.014620979316532612, + -0.014985410496592522, + -0.007951888255774975, + 0.0006855861865915358, + -0.010196784511208534, + 0.02712825872004032, + -0.0062171961180865765, + 0.006173464469611645, + -2.8542364816530608e-5, + 0.017434388399124146, + -0.0018731763120740652, + 0.004096206743270159, + 0.027653038501739502, + 0.010123898275196552, + 0.01862972229719162, + 0.02272592857480049, + 0.008177836425602436, + -0.0043695298954844475, + 0.009876085445284843, + 0.007944599725306034, + 0.007674920838326216, + 0.0033072130754590034, + -0.022988319396972656, + 0.01683672145009041, + 0.015320687554776669, + -0.020160334184765816, + 0.00354591547511518, + -0.0020481033716350794, + 0.021734677255153656, + -0.0006732866168022156, + 0.0023906687274575233, + 0.0023341819178313017, + 0.009905239567160606, + 0.012077249586582184, + 0.005768945906311274, + 0.013855674304068089, + -0.013848385773599148, + 0.003961367066949606, + -0.01685129851102829, + -0.02198248915374279, + 0.010860050097107887, + -0.0022831615060567856, + -0.022274034097790718, + 0.007350577041506767, + -0.03413991630077362, + -0.02260931208729744, + 0.0011452250182628632, + -0.005615884903818369, + -0.0024635549634695053, + 0.013287161476910114, + -0.01591835543513298, + 0.018294446170330048, + 0.01198978628963232, + 0.012558299116790295, + -0.011494159698486328, + 0.0047995587810873985, + 0.018571414053440094, + 0.011552468873560429, + 0.005615884903818369, + -0.03034983016550541, + 0.00978133361786604, + 0.009147223085165024, + -0.015364419668912888, + 0.018294446170330048, + 0.013673458248376846, + 0.005149412900209427, + -0.013637015596032143, + -0.002153788460418582, + 0.018819227814674377, + 0.011341098695993423, + -0.0037864402402192354, + -0.014118064194917679, + -0.0020572140347212553, + -0.017142843455076218, + -0.019431471824645996, + 0.012427103705704212, + 0.011005822569131851, + 0.00452623562887311, + -0.015612232498824596, + -0.004384107422083616, + -0.005389937199652195, + 0.021282782778143883, + 0.02230319008231163, + 0.007580169010907412, + 0.005437313579022884, + 0.015728849917650223, + 0.008454803377389908, + 0.0011698241578415036, + 0.01502914261072874, + 0.0054956222884356976, + -0.005798100493848324, + -0.024037880823016167, + 0.003837460419163108, + -0.018279869109392166, + 0.017201151698827744, + 0.010269670747220516, + -0.002858962630853057, + -0.005346205551177263, + 0.0036862215492874384, + -0.021851293742656708, + -0.015976663678884506, + 0.017040802165865898, + -0.004048830363899469, + -0.020291529595851898, + 0.01946062594652176, + 0.006093289703130722, + -0.004704806953668594, + 0.0024744877591729164, + 0.03600580245256424, + 0.008002908900380135, + -0.008287165313959122, + 0.002332359552383423, + -0.006421277765184641, + -0.020160334184765816, + -0.00376821868121624, + -0.006279149558395147, + 0.004905243869870901, + 0.018192404881119728, + -0.002988335909321904, + -0.01568511873483658, + -0.0007903601508587599, + -0.0210349690169096, + -0.012645762413740158, + 0.015218647196888924, + -0.0018176005687564611, + -0.003509472357109189, + -0.0008782791555859149, + -0.01568511873483658, + 0.006905971094965935, + 0.0036224459763616323, + -0.02020406536757946, + 0.0058308993466198444, + -0.010349845513701439, + -0.005419091787189245, + 0.013243429362773895, + 0.013010193593800068, + -0.004180025774985552, + 0.005123902577906847, + 0.0358017198741436, + 0.010386289097368717, + 0.01862972229719162, + -0.008425649255514145, + 0.008498535491526127, + 0.011384830810129642, + 0.02093292772769928, + -0.0022248525638133287, + 0.012456257827579975, + 0.006013114936649799, + -0.02481047622859478, + 0.014256548136472702, + 0.025903768837451935, + 0.01527695544064045, + -0.006395767442882061, + 0.01471573207527399, + -0.010823606513440609, + -0.005335272755473852, + 0.013345470651984215, + -0.00962098315358162, + -0.024431467056274414, + -0.001895042252726853, + -0.014825060963630676, + -0.013097656890749931, + 0.004861512221395969, + 0.008717194199562073, + -0.02113701030611992, + -0.002128278138116002, + 0.016384826973080635, + 0.02489793859422207, + -0.018556836992502213, + 0.008498535491526127, + 0.021588904783129692, + 0.012521855533123016, + 0.013658881187438965, + 0.009774045087397099, + 0.009934394620358944, + 0.023600563406944275, + -0.01412535272538662, + 0.026355663314461708, + 0.014788618311285973, + 0.008374628610908985, + 0.012084538117051125, + 0.02963554486632347, + -0.01581631414592266, + 0.008498535491526127, + 0.021297359839081764, + 0.02323613315820694, + 0.005014573223888874, + 0.004358597099781036, + 0.021807562559843063, + 0.012434392236173153, + -0.008250722661614418, + 0.02806120179593563, + 0.006639936473220587, + -0.0034402303863316774, + -0.009176377207040787, + 0.01758016087114811, + -0.023279864341020584, + 0.010510195977985859, + 0.02899414673447609, + 0.01093293633311987, + -0.002345114713534713, + 0.011421273462474346, + -0.0031122423242777586, + 0.01162535510957241, + 0.01844021864235401, + -0.008884832262992859, + 0.01685129851102829, + -0.0008290809928439558, + -0.0022430741228163242, + -0.00028995057800784707, + 0.006847662385553122, + -0.0028771841898560524, + 0.0016490512061864138, + -0.025364411994814873, + -0.013986869715154171, + -0.0032215716782957315, + -0.001338373520411551, + 0.005134835373610258, + -0.01041544321924448, + 0.011785704642534256, + 0.0004537168424576521, + 0.012988328002393246, + 0.021078700199723244, + 0.004322153981775045, + 0.025378989055752754, + 0.006570694502443075, + 0.01021136250346899, + -0.014511650428175926, + 0.01009474415332079, + 0.008134104311466217, + 0.004599121864885092, + 0.01581631414592266, + -0.0006218107300810516, + 0.0010094743920490146, + 0.012878998182713985, + -0.005860053468495607, + 0.014416897669434547, + 0.012106404639780521, + -0.0032233940437436104, + -0.012878998182713985, + -0.012951884418725967, + -0.01811951957643032, + -0.004012387245893478, + 0.006614426150918007, + -0.004220113158226013, + -0.03947518765926361, + 0.026632631197571754, + -0.0013966825790703297, + 0.012674917466938496, + -0.002053569769486785, + 0.010874627158045769, + 0.011384830810129642, + 0.017521852627396584, + -0.01198249775916338, + 0.0005680571193806827, + 0.016370249912142754, + 0.03559764102101326, + -0.0030120238661766052, + -0.016909606754779816, + 0.012900864705443382, + -0.012448969297111034, + -0.02374633587896824, + 0.008083083666861057, + 0.01695333980023861, + -0.005732502788305283, + -0.024985402822494507, + -0.01747811958193779, + -0.0040670521557331085, + 0.012259465642273426, + 0.012696783058345318, + -0.025087444111704826, + -0.003004735102877021, + 0.01417637336999178, + -0.01946062594652176, + 0.006322881206870079, + 0.009205532260239124, + 0.008709905669093132, + 0.03212825581431389, + 0.013695324771106243, + 0.010896492749452591, + -0.010335268452763557, + 0.0007356954738497734, + -0.013702613301575184, + 0.01015305332839489, + 0.027055371552705765, + 0.008250722661614418, + 0.011042265221476555, + -0.003979588858783245, + 0.0006500541348941624, + -0.02020406536757946, + 0.0058053890243172646, + 0.014169084839522839, + -0.004292999394237995, + 0.0035131166223436594, + 0.0008728126995265484, + -0.0028790065553039312, + -0.013731767423450947, + 0.010342556983232498, + -0.025612223893404007, + -0.0038483934476971626, + 0.007277690805494785, + 0.02943146415054798, + 0.0010267848847433925, + -0.011880457401275635, + -0.005069238133728504, + -0.008855678141117096, + -0.008622442372143269, + -0.0017137377290055156, + -0.011880457401275635, + -0.01644313521683216, + 0.010255093686282635, + 0.015160338021814823, + 0.017099112272262573, + 0.004599121864885092, + 0.001351128681562841, + -0.007427108008414507, + 0.005171278491616249, + 0.01705537922680378, + -0.0021938758436590433, + 0.004190958570688963, + -0.012325063347816467, + -0.004158159717917442, + 0.0038447491824626923, + -0.012419815175235271, + 0.004719384014606476, + 0.003451163414865732, + 0.015349841676652431, + -0.01015305332839489, + 0.016472289338707924, + -0.009358593262732029, + -0.0031359305139631033, + -0.019023308530449867, + 0.0011789349373430014, + -0.008797368966042995, + -0.009453345090150833, + 0.01230319682508707, + -0.028746332973241806, + 0.012317774817347527, + -0.001119714812375605, + 0.0011151594808325171, + 0.010925646871328354, + -0.021064123138785362, + 0.0044460603967309, + 0.012164712883532047, + 0.00281340884976089, + 0.0020626806654036045, + -0.006348391529172659, + 0.008600575849413872, + -0.026734672486782074, + 0.008352763019502163, + -0.0018121341709047556, + 0.006530607119202614, + -0.021384822204709053, + 0.005342561285942793, + -0.012361506000161171, + -0.014810483902692795, + -0.003943145740777254, + -0.013309027068316936, + -0.0305539108812809, + 0.006260927766561508, + -0.007314133923500776, + 0.0017775131855159998, + 0.0023633362725377083, + -0.00565597228705883, + 0.01266762800514698, + -0.00413629412651062, + -0.018061209470033646, + -0.016034971922636032, + 0.02072884701192379, + 0.000959365104790777, + -0.004817780572921038, + 0.02104954607784748, + -0.02482505328953266, + 0.0006632647709921002, + -0.018760917708277702, + 0.016778413206338882, + -0.0029172718059271574, + 0.02911076322197914, + 0.017084535211324692, + -0.007813405245542526, + -0.0007880824850872159, + 0.013913983479142189, + -0.00708818668499589, + -0.007944599725306034, + 0.009752178564667702, + -0.017040802165865898, + 0.01266762800514698, + 0.010597659274935722, + -0.00486515648663044, + -0.003582358593121171, + -0.011268212459981441, + 0.02269677445292473, + -0.019023308530449867, + -0.003230682574212551, + -0.01309036836028099, + -0.018717186525464058, + 0.008068506605923176, + -0.004227401688694954, + -0.01459911372512579, + 0.01893584430217743, + -0.016064127907156944, + -0.006614426150918007, + -0.01695333980023861, + 0.004205536097288132, + -0.018192404881119728, + 0.012215733528137207, + 0.0029300267342478037, + -0.0008254366694018245, + 0.016895029693841934, + 0.0005885564023628831, + -0.019504357129335403, + -0.01737608015537262, + 0.007288624066859484, + -0.01004372350871563, + -0.0027077237609773874, + 0.00973031297326088, + -0.005973027087748051, + 0.019927097484469414, + 0.002213919535279274, + -0.01303205918520689, + -0.029446041211485863, + 0.01088920421898365, + 0.0071865832433104515, + -0.004427839070558548, + 0.0005512021598406136, + 0.01841106452047825, + 0.0186442993581295, + 0.009263841435313225, + -0.0011160705471411347, + 0.022653043270111084, + 0.0040670521557331085, + -0.020160334184765816, + 0.0011470471508800983, + -0.008462092839181423, + -0.019650129601359367, + -0.013571417890489101, + -0.02482505328953266, + 0.0105174845084548, + -0.04437314346432686, + 0.01313410047441721, + 0.002315960358828306, + -0.011844013817608356, + -0.014635557308793068, + -1.611469269846566e-5, + -0.0014823238598182797, + -0.0037007988430559635, + -0.01387753989547491, + -0.027463534846901894, + 0.021078700199723244, + -0.0021446775645017624, + -0.004314865451306105, + -0.017755087465047836, + 0.003097665263339877, + 0.027244877070188522, + 0.025408143177628517, + -0.004424194805324078, + 0.009453345090150833, + 0.0018786428263410926, + 0.00526238651946187, + -0.02052476443350315, + -0.019431471824645996, + 0.020962081849575043, + -0.012653050944209099, + 0.014825060963630676, + -0.0023305374197661877, + 0.0024635549634695053, + -0.0018986865179613233, + 0.006975213065743446, + -0.0016308296471834183, + 0.006100578233599663, + -0.0002174059918615967, + 0.006352035794407129, + 0.008848389610648155, + -0.016807567328214645, + 0.0002571517543401569, + 0.0065269628539681435, + -0.017317770048975945, + -0.003205172484740615, + -0.0042966436594724655, + 0.0034292975906282663, + 0.007018944714218378, + 0.0028680735267698765, + 0.010262382216751575, + -0.010174918919801712, + 0.0012554654385894537, + 0.016778413206338882, + 0.02440231293439865, + -0.01644313521683216, + 0.008017485961318016, + 0.012973750941455364, + -0.0043039326556026936, + -0.013841097243130207, + -0.0015834535006433725, + -0.00282616401091218, + -0.010626813396811485, + -0.0032197495456784964, + -0.004347664304077625, + 0.0017465364653617144, + -0.0018367331940680742, + -0.012077249586582184, + 0.0007270402275025845, + 0.0019424182828515768, + -0.010510195977985859, + 0.014584536664187908, + -0.006166175939142704, + -0.00795917771756649, + 0.0028079424519091845, + 0.0004213735810481012, + 0.024533508345484734, + -0.006450432352721691, + -0.02323613315820694, + 0.028644291684031487, + 0.001064139069058001, + 0.008724482730031013, + 0.0027077237609773874, + 0.0003295824571978301, + 0.013236140832304955, + 0.014562670141458511, + 0.023585986346006393, + 0.019825056195259094, + -0.0026093274354934692, + 7.932072912808508e-5, + 0.009096202440559864, + -0.00562681769952178, + -0.010342556983232498, + 0.0017693134723231196, + 0.008899410255253315, + -0.01502914261072874, + 0.014416897669434547, + 0.006942414212971926, + 0.005881919525563717, + 0.008250722661614418, + -0.01381194218993187, + 0.017930014058947563, + -0.026326509192585945, + -0.0022467183880507946, + 0.0034548076801002026, + 0.007499994244426489, + 0.01924196630716324, + -0.013330893591046333, + 0.031049538403749466, + -0.030116593465209007, + 0.009577251970767975, + -0.011880457401275635, + -0.03530609607696533, + 0.019518934190273285, + -0.02396499551832676, + 0.029999976977705956, + -0.003954078536480665, + -0.003866615006700158, + 0.002631193259730935, + -0.014628267847001553, + 0.007886291481554508, + 0.012696783058345318, + 0.00410713953897357, + 0.012813400477170944, + 0.017361503094434738, + -0.01873176358640194, + -0.009744890034198761, + 0.006064135115593672, + 0.001680938876233995, + -0.012645762413740158, + -0.008979585021734238, + -0.017725933343172073, + 0.01725946180522442, + -0.023702604696154594, + -0.004172737244516611, + -0.009220109321177006, + 0.020466456189751625, + 0.006687312386929989, + -0.011056842282414436, + -0.019096193835139275, + -0.009803199209272861, + 0.009431479498744011, + 0.0021464996971189976, + 0.004599121864885092, + -0.02301747351884842, + -0.002909983042627573, + -0.00035213163937442005, + -0.0066107818856835365, + 0.01088191568851471, + -0.014723020605742931, + 0.00413264986127615, + -0.03696789965033531, + 0.016705526039004326, + -0.002541907597333193, + -0.005666905082762241, + 0.004096206743270159, + 0.025276947766542435, + 0.0022849836386740208, + -0.017434388399124146, + -0.011377542279660702, + 0.007915445603430271, + 0.005870986729860306, + -0.01634109392762184, + -0.017857128754258156, + 0.0210349690169096, + 0.00030885543674230576, + -0.009591829031705856, + -0.0036279126070439816, + -0.0332944355905056, + 0.0104591753333807, + -0.003097665263339877, + -0.004216468892991543, + -0.007292268332093954, + -0.013228852301836014, + 0.0008618797874078155, + 0.012026229873299599, + -0.013469376601278782, + -0.01768220216035843, + 0.00602040346711874, + 0.0037463526241481304, + 0.00203899247571826, + 0.0018877536058425903, + 0.010546638630330563, + -0.005393581930547953, + 0.006661802064627409, + -0.007594746071845293, + -0.007423463277518749, + -0.005590374581515789, + -0.0036005801521241665, + -0.0027350562158972025, + 0.008804657496511936, + 0.009132646024227142, + -0.003217927413061261, + -0.015612232498824596, + -0.0012736869975924492, + 0.002275872742757201, + -0.01271864864975214, + -0.014460629783570766, + -0.010072878561913967, + 0.019839635118842125, + 0.01924196630716324, + 0.018804648891091347, + -0.008425649255514145, + -0.008469381369650364, + -0.0022940943017601967, + -0.010335268452763557, + -0.019139926880598068, + 0.011209903284907341, + -0.005003640428185463, + 0.006516029592603445, + 0.01319240964949131, + -0.024008726701140404, + 0.0009374992805533111, + -0.0002894950448535383, + -0.008520401082932949, + -0.015860045328736305, + 0.008389206603169441, + -0.006545184180140495, + -0.006104222498834133, + 0.04157431051135063, + -0.010255093686282635, + 0.0027095458935946226, + -0.010072878561913967, + 0.011486871168017387, + -0.0004901599604636431, + -0.000313638593070209, + -0.01946062594652176, + 0.002643948420882225, + -0.010597659274935722, + -0.02051018737256527, + -0.019344007596373558, + -0.013462088070809841, + 0.004169092979282141, + -0.05588916689157486, + -0.00599124887958169, + -0.005189500283449888, + -0.009227397851645947, + 0.0007785161142237484, + 0.013957714661955833, + 0.007521859835833311, + -0.005043727811425924, + 0.00816325843334198, + -0.0166472177952528, + -0.007321422919631004, + -0.024562662467360497, + 0.009395035915076733, + -0.015655964612960815, + -0.01319240964949131, + 0.009336727671325207, + -0.0035149389877915382, + 0.030932920053601265, + -0.023804645985364914, + 0.002190231578424573, + -0.007623900659382343, + -0.000161146919708699, + -0.004781337454915047, + -0.012252177111804485, + 0.009744890034198761, + 0.002680391538888216, + 0.014147219248116016, + -0.011413984932005405, + -0.01192418858408928, + -0.007037166506052017, + 0.011158883571624756, + -0.02755099907517433, + 0.0032252161763608456, + 0.007277690805494785, + 0.013039348646998405, + 0.0006491430685855448, + -0.03131192922592163, + -0.012798823416233063, + -0.0003493984113447368, + 0.012230310589075089, + 0.0024781320244073868, + -0.0044861482456326485, + -0.01622447744011879, + 0.010867338627576828, + -0.024970825761556625, + 0.020568497478961945, + 0.023585986346006393, + -0.005743435584008694, + 0.003609691048040986, + 0.0008887565927579999, + -0.020903773605823517, + -0.01623905450105667, + 0.003939501009881496, + -0.012470835819840431, + 0.02377549186348915, + 0.002201164374127984, + 0.01631193980574608, + -0.016253631561994553, + 0.005451890639960766, + -0.004730316810309887, + 0.026341086253523827, + -0.007419819012284279, + 0.013250717893242836, + 0.006042269058525562, + 0.0005243254126980901, + 0.015481037087738514, + -0.014817772433161736, + -0.0022540069185197353, + 0.018396487459540367, + 0.028862951323390007, + 0.017346924170851707, + 0.006494164001196623, + -0.018367331475019455, + 0.002973758615553379, + -0.015306110493838787, + 0.0003933579137083143, + 0.0019606398418545723, + -0.004099851008504629, + 0.0027587441727519035, + 0.010860050097107887, + 0.0014695688150823116, + 0.00447521498426795, + 0.019489780068397522, + -0.0009857864351943135, + 0.006960636004805565, + -0.005327984225004911, + 0.013651592656970024, + -0.0047521828673779964, + -0.019752170890569687, + -0.03142854571342468, + 0.01338920183479786, + 0.01811951957643032, + 0.009497077204287052, + -0.008338185958564281, + 0.01862972229719162, + 0.008826524019241333, + -0.0037099095061421394, + 0.00416544871404767, + -0.014438764192163944, + -0.012288619764149189, + -0.006632647942751646, + -0.019300276413559914, + -0.02220114879310131, + 0.02345479093492031, + 0.013695324771106243, + -0.0051749227568507195, + -0.03988334909081459, + -0.027390649542212486, + -0.008206990547478199, + 0.015495614148676395, + -0.0038994138594716787, + 0.022346921265125275, + 0.005404514726251364, + 0.018294446170330048, + 0.021078700199723244, + 0.001783890649676323, + -0.009664715267717838, + -0.009125357493758202, + -0.008374628610908985, + 0.015262378379702568, + -1.0057447070721537e-5, + -0.005320695694535971, + -0.0026330153923481703, + -0.036676354706287384, + 0.0006500541348941624, + 0.014693865552544594, + 0.0010614058701321483, + 0.006745621562004089, + -0.02206995338201523, + 0.0127696692943573, + -0.022274034097790718, + 0.0330611988902092, + -0.0016718280967324972, + 0.0007534614996984601, + 0.0052550979889929295, + -0.013258007355034351, + -0.017186574637889862, + 0.020481033250689507, + 0.014533516019582748, + -0.027492688968777657, + 0.014635557308793068, + -0.007292268332093954, + -0.001455902587622404, + 0.002888117218390107, + -0.027682194486260414, + -0.017448965460062027, + 0.005911074113100767, + -0.004395040217787027, + 0.009876085445284843, + 0.00020920627866871655, + 0.005732502788305283, + 0.008746348321437836, + -0.011756550520658493, + 0.030233211815357208, + -0.02793000638484955, + 0.022259457036852837, + 0.01077987439930439, + -0.011756550520658493, + -0.003427475458011031, + -0.004712095484137535, + 0.008775503374636173, + 0.02606411837041378, + -0.0034894286654889584, + -0.001186223584227264, + -0.028425633907318115, + 0.009985414333641529, + -0.0038629707414656878, + 0.016690948978066444, + -0.012069961056113243, + -0.008367340080440044, + 0.024227386340498924, + 0.031457699835300446, + -0.013768211007118225, + 0.03221571817994118, + 0.005269675049930811, + -0.02950434945523739, + -0.003055755514651537, + -0.0016135191544890404, + 0.0015315221389755607, + -0.02973758615553379, + 0.0027332340832799673, + -0.009744890034198761, + -0.006075067911297083, + 0.008177836425602436, + -0.011494159698486328, + -0.02816324308514595, + 0.016792990267276764, + 0.019227389246225357, + -0.011100574396550655, + 0.0014823238598182797, + 0.019723016768693924, + -0.0031632627360522747, + 0.013622438535094261, + 0.0037390640936791897, + 0.006621714681386948, + 0.006249994970858097, + 0.0057215699926018715, + -0.013520397245883942, + 0.0024635549634695053, + 0.014511650428175926, + 0.0044059730134904385, + -0.013972291722893715, + -0.016166167333722115, + -0.019620975479483604, + -0.014868793077766895, + -0.009263841435313225, + 0.00015864145825617015, + 0.006851306650787592, + 0.007558302953839302, + 0.002286805771291256, + -0.01527695544064045, + -0.00526238651946187, + 0.00523687619715929, + 0.012638473883271217, + -0.005156701430678368, + -0.002909983042627573, + 0.018702609464526176, + -0.013913983479142189, + 0.0020098381210118532, + 0.016370249912142754, + -0.00023232489184010774, + -0.028032047674059868, + 0.011290078051388264, + 0.007645766716450453, + 0.0024726656265556812, + 0.005430025048553944, + 0.012135558761656284, + -0.017011648043990135, + 0.006607137620449066, + -0.014059755951166153, + -0.009067048318684101, + 0.01927112229168415, + -0.023279864341020584, + 0.018367331475019455, + 0.003804661799222231, + 0.02534983493387699, + 0.010174918919801712, + -0.003121353220194578, + 0.0032871693838387728, + -0.02206995338201523, + 0.007667632307857275, + -0.010896492749452591, + -0.010276959277689457, + 0.00048697119927965105, + -0.010313402861356735, + -0.005167634226381779, + -0.005583086051046848, + 0.005925651174038649, + -0.021282782778143883, + -0.015408150851726532, + -0.04551016911864281, + 0.014205528423190117, + -0.0294168870896101, + 0.04376089945435524, + 0.007529148366302252, + 0.015641387552022934, + -0.0010860050097107887, + -0.007492705248296261, + 0.015451882965862751, + 0.024329425767064095, + -0.010954801924526691, + 0.005787167232483625, + 0.025291524827480316, + -0.0022977387998253107, + 0.005466468166559935, + -0.0217784084379673, + 0.005776234436780214, + -0.0209183506667614, + 0.011647220700979233, + -0.0018895757384598255, + 0.00523687619715929, + 0.013483954593539238, + -0.0008327252580784261, + -0.022871701046824455, + -0.028542250394821167, + -0.008046641014516354, + 0.011282789520919323, + -0.009526231326162815, + 0.010787163861095905, + 0.0016463178908452392, + 0.0011315589072182775, + 0.007387020159512758, + 0.008921275846660137, + -0.015626810491085052, + -0.0024744877591729164, + -0.005619529169052839, + -0.006924192886799574, + -0.004741250071674585, + -0.016034971922636032, + 0.012135558761656284, + -0.00604955805465579, + 0.012150135822594166, + 0.008316319435834885, + -0.004828713368624449, + -0.014817772433161736, + -0.002982869278639555, + 0.00948250014334917, + 0.0058308993466198444, + -0.012084538117051125, + -0.010765297338366508, + -0.0006846751202829182, + -0.008228856138885021, + -0.015291533432900906, + 0.008126815780997276, + 0.008301742374897003, + -0.014096198603510857, + 0.002002549357712269, + -0.029052454978227615, + -0.0065743387676775455, + 0.013155966065824032, + -0.01230319682508707, + -0.016705526039004326, + 0.011486871168017387, + 0.023163245990872383, + 0.012507278472185135, + 0.01959182135760784, + 0.007157428655773401, + -0.01666179485619068, + 0.0030867322348058224, + -0.0022977387998253107, + 0.004719384014606476, + -0.03644311800599098, + 0.0017884460976347327, + 0.016763834282755852, + 0.011916900053620338, + 0.019387738779187202, + 0.021836716681718826, + 0.011953343637287617, + -0.012835266999900341, + 0.013462088070809841, + -0.009941683150827885, + 0.021647213026881218, + -0.008432937785983086, + 0.023615142330527306, + -0.008352763019502163, + 0.019956251606345177, + -0.013221563771367073, + 0.0012600208865478635, + -0.0031249974854290485, + 0.0014513472560793161, + -0.0015315221389755607, + -0.009526231326162815, + -0.0011789349373430014, + -0.009963548742234707, + 0.006592560559511185, + -0.0014458807418122888, + 0.007565591484308243, + -0.0014331256970763206, + 0.019752170890569687, + -0.001944240415468812, + 0.0030994873959571123, + -0.018979577347636223, + 0.0014723020140081644, + 0.03466469421982765, + -0.017201151698827744, + 0.012084538117051125, + 0.0005812677554786205, + 0.012645762413740158, + -0.019110772758722305, + -0.003921279683709145, + -0.002150143962353468, + -0.006002181675285101, + -0.006836729124188423, + -0.014139930717647076, + -0.018250714987516403, + 0.013739055953919888, + 0.006224484648555517, + 0.0023706250358372927, + -0.0044861482456326485, + -0.010991244576871395, + 0.012798823416233063, + 0.01131194457411766, + 0.005342561285942793, + 0.005430025048553944, + -0.006654513534158468, + -0.02606411837041378, + 0.0032561926636844873, + -0.01083089504390955, + 0.005422736052423716, + 0.008352763019502163, + 0.04970841482281685, + 0.019227389246225357, + -0.0009347660234197974, + -0.011705529876053333, + -0.012244888581335545, + -0.016938762739300728, + 0.0019843277987092733, + -0.005659616552293301, + -0.019081616774201393, + 0.013425645418465137, + 0.004001454450190067, + -0.009569963440299034, + 0.022638466209173203, + 0.0016280963318422437, + 0.00025168529828079045, + 0.005688771139830351, + 0.009446056559681892, + 0.00604955805465579, + -0.0014777685282751918, + 0.01303205918520689, + 0.0010996711207553744, + -0.0004168181912973523, + -0.0017155598616227508, + 0.005076526664197445, + 0.014577248133718967, + 0.01747811958193779, + 0.009569963440299034, + -0.026924176141619682, + 0.006592560559511185, + 0.010677834041416645, + -0.014249259606003761, + -0.0015114783309400082, + -0.022565579041838646, + -0.009555386379361153, + 0.013338182121515274, + 0.027361493557691574, + 0.013206986710429192, + 0.015962086617946625, + -0.0010030968114733696, + -0.003237971104681492, + -0.037638455629348755, + -0.0007274957606568933, + 0.012995616532862186, + -0.0022212080657482147, + -0.015408150851726532, + 0.010583082213997841, + -0.010510195977985859, + 0.010269670747220516, + -0.01979590207338333, + 0.023381905630230904, + 0.0254227202385664, + 0.008790080435574055, + -0.006271861027926207, + -0.011822148226201534, + 0.004788625985383987, + -0.020247796550393105, + 0.005193144548684359, + -0.010036434978246689, + -0.01654517650604248, + -0.014438764192163944, + 0.006570694502443075, + 0.0019970829598605633, + 0.014467918314039707, + -0.004129005596041679, + -0.005768945906311274, + -0.01788628287613392, + -0.0025692398194223642, + -0.009635561145842075, + 0.0025619512889534235, + -0.013600572012364864, + 0.0065743387676775455, + 0.0005416358471848071, + -0.006286438088864088, + -0.013243429362773895, + -0.012252177111804485, + 0.004096206743270159, + -0.003104953793808818, + -0.009591829031705856, + -0.02594750188291073, + -0.021107854321599007, + 0.00709547521546483, + -0.007718652952462435, + 0.018352754414081573, + 0.014453341253101826, + -0.0001874542940640822, + 0.002469021361321211, + 0.007124629803001881, + -0.004664719104766846, + -0.003274414222687483, + 0.018877536058425903, + -0.0009466100600548089, + -0.006505096796900034, + -0.00296829198487103, + 0.021501440554857254, + 0.01392127200961113, + 0.0002373358147451654, + 0.0043403757736086845, + -0.016792990267276764, + 0.010692411102354527, + 0.009839641861617565, + -0.004362241365015507, + -0.0165305994451046, + -0.01998540759086609, + 0.029548080638051033, + 0.005747079849243164, + -0.019854212179780006, + 0.008447514846920967, + -0.02900872379541397, + -0.021399399265646935, + -0.004220113158226013, + -0.0026603478472679853, + 0.011129728518426418, + -0.018396487459540367, + 0.027594730257987976, + 0.001070516649633646, + 0.0088921207934618, + 0.003316323971375823, + 0.005918362643569708, + 0.022536424919962883, + 0.03463554009795189, + 0.004456993658095598, + 0.034081604331731796, + 0.021297359839081764, + -0.0017018936341628432, + 0.008513112552464008, + -0.015320687554776669, + -0.0002749177801888436, + 0.013658881187438965, + -0.011712818406522274, + 0.006421277765184641, + -0.002716834656894207, + 0.0029628255870193243, + 0.018250714987516403, + 0.007044455036520958, + -0.00925655197352171, + -0.011064130812883377, + -0.0007347844075411558, + -0.014730309136211872, + 0.017653048038482666, + -0.010349845513701439, + -0.008739059790968895, + 0.021384822204709053, + 0.004012387245893478, + -0.0026567033492028713, + 0.009999992325901985, + -0.005408158991485834, + -0.00037581968354061246, + 0.004158159717917442, + -0.014876081608235836, + 0.009460633620619774, + -0.019081616774201393, + -0.021297359839081764, + 0.0016244520666077733, + 0.0018139563035219908, + 0.001505100866779685, + 0.029139919206500053, + -0.006301015615463257, + -0.008811946026980877, + -0.007190227508544922, + -0.014161796309053898, + -0.003352767089381814, + 0.010604947805404663, + -0.01016034185886383, + -0.006785708945244551, + 0.009868796914815903, + 0.014081621542572975, + -0.0023870242293924093, + 0.007044455036520958, + 0.008534979075193405, + -0.013462088070809841, + -0.01769677922129631, + -0.018688032403588295, + -0.008039352484047413, + 0.008534979075193405, + 0.014263836666941643, + 0.026822136715054512, + 0.011231769807636738, + 0.01429299172013998, + -0.010925646871328354, + 0.00562317343428731, + 0.00010767803178168833, + 0.022667620331048965, + 0.008243433199822903, + 0.009868796914815903, + 0.00677477614954114, + 0.02534983493387699, + 0.0020572140347212553, + 0.010014569386839867, + 0.008651596494019032, + 0.011333810165524483, + 0.009081625379621983, + 0.019956251606345177, + -0.011137017048895359, + 0.00028744511655531824, + -0.027288608253002167, + -0.01622447744011879, + 0.0074526178650557995, + -0.0010295180836692452, + -0.014701154083013535, + 0.011902322992682457, + 0.005309762433171272, + 0.011465005576610565, + -0.003267125692218542, + 0.025247793644666672 + ], + "f9ca7807-3a62-4021-8141-7967ea91bd1c": [ + -0.008874126709997654, + -0.03552543744444847, + -0.008715014904737473, + 0.038852330297231674, + -0.03914162516593933, + 0.0011743572540581226, + -0.019107939675450325, + 0.010725615546107292, + -0.03384752571582794, + 0.042468518018722534, + 0.006107742432504892, + 0.009590132161974907, + 0.03433932736515999, + -0.017704859375953674, + 0.00803517084568739, + 0.051957398653030396, + -0.018717391416430473, + 0.012432456016540527, + -0.0060498835518956184, + 0.008078564889729023, + 0.04831228032708168, + -0.004646802321076393, + -0.06121484190225601, + 0.012960419990122318, + 0.038649823516607285, + -0.010284440591931343, + -0.025240996852517128, + -0.0018514886032789946, + -0.03147530555725098, + -0.0021896022371947765, + -0.017241986468434334, + 0.009727546945214272, + 0.014985485933721066, + 0.021523553878068924, + 0.024879377335309982, + -0.02717927284538746, + 0.0028296676464378834, + -0.002679595723748207, + -0.030752068385481834, + -0.0022257640957832336, + -0.015491751953959465, + 0.04200564697384834, + -0.007637390401214361, + -0.01799415424466133, + -0.02201535552740097, + 0.014645563438534737, + -0.042989250272512436, + 0.0009438252309337258, + 0.01598355360329151, + 0.0010007801465690136, + 0.03286392241716385, + 0.02783018723130226, + -0.018514886498451233, + 0.02991311252117157, + 0.029522564262151718, + -0.01834130845963955, + 0.0030592954717576504, + 0.054445333778858185, + 0.022463763132691383, + -0.039980582892894745, + -0.0020756921730935574, + -0.045940060168504715, + 0.0037210581358522177, + 0.0061258235946297646, + -0.005973943509161472, + 0.00021776235371362418, + -0.000270310090854764, + 0.034773267805576324, + -0.035641156136989594, + 0.01060266513377428, + -0.00950334407389164, + 0.008584831841289997, + -0.05085807666182518, + 0.005652102641761303, + -0.0004113414615858346, + -0.01920919306576252, + 0.05942121148109436, + 0.009409322403371334, + 0.0028007379733026028, + -0.010819636285305023, + -0.00556893041357398, + 0.002374027855694294, + -0.011195720173418522, + -0.018760787323117256, + 0.06607499718666077, + -0.005478525534272194, + -0.04972982406616211, + -0.03494684770703316, + -0.03815802186727524, + -0.018717391416430473, + 0.0006491058738902211, + 0.0036451180931180716, + 0.014428592287003994, + 0.0016064917435869575, + -0.022058749571442604, + 0.010609897784888744, + 0.0034426115453243256, + -0.0019400852033868432, + -0.03743478283286095, + -0.03306642919778824, + -0.02227572165429592, + 0.017892900854349136, + -0.011918957345187664, + 0.007991776801645756, + 0.0018053821986541152, + -0.003077376401051879, + 0.01933937706053257, + 0.017053944990038872, + -0.01799415424466133, + 0.025993162766098976, + -0.01539049856364727, + -0.03691405430436134, + 0.050684500485658646, + -0.016345173120498657, + -0.05826403200626373, + -0.03234319016337395, + -0.024373110383749008, + -0.017010550945997238, + -0.000948345463257283, + -0.03567008301615715, + 0.035033635795116425, + 0.0070334868505597115, + 0.016287313774228096, + 0.030260266736149788, + -0.008743943646550179, + 0.015535145998001099, + -0.027063556015491486, + 0.06682716310024261, + 0.036711547523736954, + 0.010248278267681599, + -0.0031985188834369183, + 0.009011542424559593, + 0.018905434757471085, + -0.007970079779624939, + -0.009684152901172638, + 0.027613217011094093, + 0.009402090683579445, + 0.05513964220881462, + -0.027208203449845314, + 0.00953950546681881, + -0.03300856798887253, + -0.006342794746160507, + -0.005051815416663885, + -0.0032057513017207384, + -0.0015350721077993512, + 0.015115668065845966, + -0.032285332679748535, + 0.050279486924409866, + -0.03078099712729454, + 0.009192351251840591, + -0.021928567439317703, + 0.004943329840898514, + -0.03303749859333038, + -0.007941150106489658, + 0.020424233749508858, + -0.003851240733638406, + -0.014406895264983177, + 0.015433892607688904, + 0.009893892332911491, + 0.05427175760269165, + 0.0015739460941404104, + -0.0529988594353199, + 0.011730915866792202, + 0.00809303019195795, + 0.0075722988694906235, + 0.020438697189092636, + 0.003977807238698006, + 0.03821587935090065, + -0.006704413797706366, + 0.02891504392027855, + 0.027743399143218994, + -0.007156437262892723, + 0.013394362293183804, + 0.00352216768078506, + 0.0013000197941437364, + -0.002265542047098279, + 0.03862089291214943, + 0.004397285170853138, + 0.017082875594496727, + -0.009691385552287102, + -0.02830752357840538, + 0.002433694899082184, + 0.02845217101275921, + 0.004220092203468084, + 0.0010613513877615333, + 0.009611829183995724, + 0.0110800014808774, + -0.007485510315746069, + 0.006505523342639208, + -0.0026271610986441374, + 0.01335096824914217, + -0.016417495906352997, + -0.01913687027990818, + 0.026340316981077194, + -0.06289274990558624, + -0.024705801159143448, + 0.03685619309544563, + -0.035699013620615005, + 0.005037350580096245, + 0.02081478200852871, + -0.023317184299230576, + -0.011882795952260494, + -0.027338385581970215, + 0.025139743462204933, + 0.0031985188834369183, + 0.011492247693240643, + -0.000880541920196265, + -0.014160994440317154, + 0.057859018445014954, + -0.0023324417416006327, + 0.06109912320971489, + -0.05207311734557152, + 0.019686531275510788, + -0.02048209309577942, + -0.013126764446496964, + 0.015940159559249878, + 0.02542903833091259, + 0.039778076112270355, + -0.022970030084252357, + 0.008150889538228512, + -0.003905483754351735, + -0.030665278434753418, + -0.035699013620615005, + 0.0015432084910571575, + -0.03124387003481388, + 0.01050864439457655, + -0.0308388564735651, + 0.04197671636939049, + -0.009843265637755394, + -0.0012313121696934104, + -0.0047155097126960754, + -0.012439688667654991, + 0.019238123670220375, + -0.03726120665669441, + 0.001356070744805038, + 0.014674493111670017, + 0.012736216187477112, + 0.01592569425702095, + 0.02087264135479927, + -0.020901570096611977, + -0.0011662208708003163, + 0.007876059040427208, + -0.0012267919955775142, + -0.012251647189259529, + -0.023837914690375328, + 0.0015133749693632126, + 0.00986496265977621, + 0.04275781288743019, + 0.007977312430739403, + -0.008989844471216202, + -0.000713293207809329, + -0.022666269913315773, + -0.008107494562864304, + 0.013944023288786411, + -0.026412641629576683, + 0.06399207562208176, + 0.03072313778102398, + -0.026051022112369537, + 0.012808539904654026, + 0.011615198105573654, + 0.031214939430356026, + 0.028220735490322113, + 0.0025909992400556803, + 0.0056846486404538155, + 0.015072274021804333, + 0.006726110819727182, + 0.01906454563140869, + -0.03535186126828194, + 0.0349179171025753, + 0.03448397293686867, + 0.03520721197128296, + 0.0007087729754857719, + -0.018818644806742668, + 0.008187050931155682, + -0.025125278159976006, + 0.004932481329888105, + -0.02817734144628048, + -0.01097874902188778, + 0.00045292763388715684, + -0.008454648777842522, + -0.030260266736149788, + -0.051697030663490295, + 0.06156199425458908, + 0.017950760200619698, + 0.01579551212489605, + 0.019122404977679253, + -0.011492247693240643, + -0.04269995540380478, + -0.032082825899124146, + -0.02027958631515503, + -0.00023640833387617022, + 0.004162232857197523, + 0.03303749859333038, + 0.057859018445014954, + 0.003659582929685712, + 0.009886659681797028, + 0.0013605909189209342, + 0.00786159373819828, + 0.022463763132691383, + 0.006577847059816122, + -0.0400095097720623, + 0.0068418290466070175, + 0.023317184299230576, + -0.018095407634973526, + -0.025269925594329834, + -0.017762718722224236, + 0.029522564262151718, + 0.04157170280814171, + -0.01104384008795023, + 0.02262287586927414, + 0.01485530287027359, + -0.01087026298046112, + -0.03685619309544563, + -0.0032744586933404207, + -0.005113290622830391, + 0.026803189888596535, + -0.027483033016324043, + 0.015303710475564003, + -0.019223658367991447, + -0.024503294378519058, + -0.018023084849119186, + 0.006284935865551233, + -0.0402698777616024, + 0.025342250242829323, + 0.026484964415431023, + -0.04576648399233818, + 0.02195749804377556, + -0.03734799474477768, + -0.002240228932350874, + -0.003531208261847496, + -0.034223608672618866, + -0.003822311293333769, + -0.004545548930764198, + -0.0026868281420320272, + 0.009828800335526466, + -0.03303749859333038, + -0.04003844037652016, + -0.016316242516040802, + -0.026991231366991997, + -0.012685589492321014, + -0.04802298545837402, + -0.03147530555725098, + 0.0016851439140737057, + -0.01181047223508358, + -0.010002377443015575, + -0.028611283749341965, + -0.022608410567045212, + 0.03341358155012131, + 0.00568826450034976, + -0.009177886880934238, + 0.0009225801331922412, + -0.00779650267213583, + 0.054098181426525116, + -0.028987368568778038, + 0.028336454182863235, + -0.032834991812705994, + -0.003905483754351735, + 0.002238420769572258, + 0.01826898567378521, + 0.006700797472149134, + 0.020771387964487076, + -0.06844721734523773, + -0.004480457864701748, + -0.03581473231315613, + 0.005579778924584389, + -0.015216921456158161, + -0.012302273884415627, + -0.013206320814788342, + -0.01900668814778328, + 0.005608708597719669, + -0.022029820829629898, + -0.01954188384115696, + 0.009105563163757324, + -0.003041214542463422, + -0.0056412541307508945, + -0.03593045100569725, + 0.027049090713262558, + -0.014211621135473251, + -0.02622460015118122, + 0.025660473853349686, + -0.018702927976846695, + 0.04162956401705742, + 0.02489384263753891, + 0.009373161010444164, + 0.029406845569610596, + 0.012721751816570759, + 0.00809303019195795, + -0.01906454563140869, + -0.02903076261281967, + -0.0014066973235458136, + -0.014797443524003029, + 0.010790706612169743, + -0.027989299967885017, + 0.0180809423327446, + -0.015520681627094746, + -0.006689948961138725, + 0.022116608917713165, + 0.022000892087817192, + 0.015245851129293442, + -0.00030986216734163463, + 0.013560707680881023, + 0.014110367745161057, + 0.0020196412224322557, + -0.00983603298664093, + -0.008686085231602192, + -0.027208203449845314, + -0.010183187201619148, + -0.004180314019322395, + 0.03199603781104088, + -0.003567370120435953, + 0.021234259009361267, + -0.018442561849951744, + -0.006516371853649616, + 0.026470500975847244, + 0.002305320231243968, + 0.0323721207678318, + 0.0018695695325732231, + 0.054300688207149506, + -0.026152275502681732, + 0.0006477498100139201, + 0.004371971823275089, + 0.011600732803344727, + 0.00038444605888798833, + 0.003391984850168228, + -0.024257393553853035, + 0.03399217128753662, + 0.016026947647333145, + -0.003283499274402857, + -0.009322534315288067, + 0.00012441948638297617, + 0.03567008301615715, + 0.021668201312422752, + -0.024112746119499207, + -0.0037753009237349033, + -0.03459969162940979, + -0.029942041262984276, + 0.02756982110440731, + 0.00590523611754179, + -0.026253528892993927, + -0.02890057861804962, + -0.014898696914315224, + 0.022796452045440674, + -0.020250655710697174, + -0.011832169257104397, + -0.037029772996902466, + -0.022102145478129387, + -0.012533709406852722, + 0.021451231092214584, + -0.008143656887114048, + -0.015202457085251808, + -0.0011544681619852781, + 0.033905383199453354, + -0.04249744862318039, + 0.017386633902788162, + 0.022319115698337555, + -0.02201535552740097, + 0.04021201655268669, + -0.014255015179514885, + 0.002708525164052844, + -0.042526379227638245, + 0.00959736481308937, + 0.02884272113442421, + 0.048283349722623825, + -0.014486451633274555, + 0.03037598356604576, + -0.02581958658993244, + 0.030607420951128006, + 0.002824243390932679, + 0.016836974769830704, + 0.025067418813705444, + -0.042786743491888046, + 0.001969014760106802, + -0.035178281366825104, + -0.003731906646862626, + 0.038649823516607285, + -0.0014076014049351215, + -0.005156685132533312, + -0.026051022112369537, + 0.00883073266595602, + 0.00018397359235677868, + -0.025877445936203003, + -0.006465745158493519, + 0.033500369638204575, + -0.0051964628510177135, + -0.023056818172335625, + 0.005409818142652512, + -0.002138975542038679, + -0.04854371398687363, + -0.03766622021794319, + 0.03240105137228966, + -0.007941150106489658, + 0.014341804198920727, + -0.0004520235816016793, + 0.04863050580024719, + 0.008859662339091301, + -0.0036830881144851446, + 0.007120275404304266, + -0.01692376285791397, + 0.020091542974114418, + 0.004046515095978975, + 0.015028879977762699, + -0.010913657024502754, + -0.010949819348752499, + -0.040588099509477615, + -0.013770446181297302, + 0.03726120665669441, + -0.006418734788894653, + -0.0007277579279616475, + -0.004632337484508753, + -0.019686531275510788, + -0.06028909608721733, + 0.01907901093363762, + -0.022984495386481285, + 0.014573239721357822, + 0.007760340813547373, + 0.0009456333355046809, + -0.021668201312422752, + -0.00670802965760231, + 0.033702876418828964, + 0.03457076475024223, + -0.010957051068544388, + -0.009148957207798958, + -0.012533709406852722, + 0.02965274639427662, + 0.002431886736303568, + -0.0048890868201851845, + -0.007344479206949472, + -0.00543513149023056, + 0.017097339034080505, + -0.031070291996002197, + -0.015708724036812782, + -0.017589140683412552, + -0.009647991508245468, + 0.020699063315987587, + 0.032024964690208435, + 0.02430078759789467, + -0.037724077701568604, + 0.02743963897228241, + 0.036306533962488174, + 0.018572743982076645, + -0.020699063315987587, + 0.04050131142139435, + -0.006205379497259855, + -0.019686531275510788, + -0.014175459742546082, + -0.0021299351938068867, + -0.0041586169973015785, + 0.01060266513377428, + 0.00963352620601654, + 0.011918957345187664, + -0.014804676175117493, + 0.034165751188993454, + -0.01672125607728958, + 0.004939713515341282, + -0.00778203783556819, + -0.045390401035547256, + -0.008078564889729023, + 0.008121959865093231, + -0.004784217569977045, + -0.03665368631482124, + -0.024271856993436813, + 0.005496606696397066, + 0.014001882635056973, + 0.0030231336131691933, + -0.008049636147916317, + 0.007933917455375195, + -0.04197671636939049, + -0.0033070044592022896, + 0.0275119636207819, + 0.018992222845554352, + -0.008013473823666573, + -0.0023469063453376293, + 0.02616674080491066, + -0.0093659283593297, + -0.011521176435053349, + -0.0006057115970179439, + -0.011007677763700485, + -0.026889977976679802, + -0.015766581520438194, + -0.008715014904737473, + 0.04067488759756088, + -0.016417495906352997, + 0.023317184299230576, + -0.032227471470832825, + 0.016055878251791, + -0.0025638777296990156, + -0.01341605931520462, + -0.01714073307812214, + 0.011904492974281311, + 0.03807123377919197, + 0.0001311998494202271, + 0.007174517959356308, + -0.03685619309544563, + 0.0025891910772770643, + -0.01084133330732584, + 0.0318513885140419, + -0.009047703817486763, + -0.011832169257104397, + 0.004726358689367771, + 0.021393371745944023, + 0.012627730146050453, + 0.030867785215377808, + -0.02428632229566574, + -0.02053995057940483, + -0.04703938215970993, + 0.034165751188993454, + -0.022029820829629898, + 0.01305444072932005, + 0.0008552286308258772, + 0.007402338087558746, + 0.005134987644851208, + -0.023939168080687523, + 0.03633546456694603, + -0.025255460292100906, + 0.014956556260585785, + 0.011463318020105362, + 0.006216228008270264, + 0.0226807352155447, + 0.017618071287870407, + -0.026658542454242706, + 0.019310446456074715, + -0.013242482207715511, + 0.06196700781583786, + -0.022044286131858826, + 0.022391440346837044, + 0.0369429811835289, + -0.05453212559223175, + 0.012562639079988003, + -0.02568940445780754, + 0.012526477687060833, + -0.003634269582107663, + -0.011593501083552837, + -0.004599791951477528, + -0.03691405430436134, + 0.02845217101275921, + 0.002811586717143655, + 0.03454183414578438, + -0.0066284737549722195, + -0.014233318157494068, + -0.010711150243878365, + 0.005464061163365841, + -0.02323039621114731, + 0.01459493674337864, + 0.04839906841516495, + -0.017950760200619698, + 0.001047790632583201, + -0.004903551656752825, + 0.02911755070090294, + 0.028857184574007988, + 0.020106008276343346, + -0.026456035673618317, + 0.017907366156578064, + -0.007709714118391275, + 0.03052063100039959, + -0.01773378811776638, + 0.0009252922609448433, + -0.022102145478129387, + 0.026933372020721436, + -0.014283944852650166, + -0.012172090820968151, + 0.009199583902955055, + -0.051089514046907425, + 0.038649823516607285, + 0.010139793157577515, + 0.04200564697384834, + 0.020221726968884468, + -0.023808985948562622, + -0.005608708597719669, + 0.011347600258886814, + 0.05525536090135574, + 0.015809977427124977, + -0.010392925702035427, + -0.002471664920449257, + 0.021971961483359337, + 0.025240996852517128, + -0.021321047097444534, + -0.004418982658535242, + 0.03138851746916771, + 0.020829245448112488, + -0.012056373059749603, + -0.0069105364382267, + -0.014233318157494068, + -0.011615198105573654, + 0.016822509467601776, + 0.009214048273861408, + -0.01284470222890377, + -0.0042526377364993095, + 0.012309505604207516, + -0.03078099712729454, + -0.02884272113442421, + 0.024937236681580544, + 0.014898696914315224, + 0.007290236186236143, + 0.017950760200619698, + -0.02094496414065361, + 0.02376559190452099, + -0.007521672174334526, + 0.0080279391258955, + -0.011152325198054314, + 0.01183940190821886, + -0.023187002167105675, + 0.00527240289375186, + -0.011333134956657887, + -0.022767523303627968, + 0.012041907757520676, + 0.01211423147469759, + -0.014030811376869678, + -0.012707286514341831, + -0.031214939430356026, + -0.02294110134243965, + 0.024271856993436813, + 0.0056846486404538155, + -0.0015305518172681332, + 0.024575617164373398, + -0.0022275722585618496, + 0.0024825134314596653, + -0.041860997676849365, + 0.025269925594329834, + -0.017502352595329285, + 0.002314360812306404, + -0.01585337147116661, + 0.023317184299230576, + -0.007239609491080046, + -0.038505177944898605, + 0.00040840331348590553, + 0.005030118394643068, + -0.005597860086709261, + -0.0069358497858047485, + -0.019165799021720886, + -0.0003943905758205801, + 0.04732867702841759, + -0.005106058437377214, + -0.006845444906502962, + -0.013951255939900875, + 0.014414127916097641, + -0.03766622021794319, + 0.003632461419329047, + 0.023910239338874817, + 0.018355773761868477, + 0.0235630851238966, + 0.004303264431655407, + -0.020322980359196663, + 0.009054936468601227, + -0.02227572165429592, + 0.032285332679748535, + 0.011521176435053349, + 0.010421855375170708, + 0.01732877641916275, + 0.002026873640716076, + -0.0020991975907236338, + -0.0036776638589799404, + -0.01332203857600689, + -0.0017068410525098443, + -0.026152275502681732, + -0.013633031398057938, + -0.001051406841725111, + 0.0010776241542771459, + -0.01800861954689026, + -0.011926189996302128, + 0.0315910242497921, + -0.02537117898464203, + 0.02430078759789467, + -0.01935384050011635, + -0.022984495386481285, + -0.015260315500199795, + -0.009973447769880295, + 0.010081933811306953, + -0.0006748712039552629, + 0.018500421196222305, + -0.008013473823666573, + 0.03326893597841263, + 0.029826324433088303, + -0.008389557711780071, + 0.011051072739064693, + -0.0267597958445549, + -0.04709723964333534, + -0.017516817897558212, + -0.019426165148615837, + 0.006335562560707331, + -0.015766581520438194, + -0.022405903786420822, + -0.05681755393743515, + 0.039373062551021576, + -0.004057363606989384, + -0.010855798609554768, + -0.018992222845554352, + 0.025993162766098976, + 0.0033757120836526155, + 0.013698122464120388, + 0.005156685132533312, + 0.026007628068327904, + 0.011832169257104397, + 0.005945013836026192, + -0.009083866141736507, + 0.02020726166665554, + 0.000780192669481039, + 0.025125278159976006, + 0.009857730008661747, + -0.04275781288743019, + 0.01187556330114603, + -0.005040966905653477, + -0.03407896310091019, + 0.014660028740763664, + 0.01786397211253643, + -0.0056412541307508945, + -0.026615148410201073, + -0.0021733292378485203, + 0.016026947647333145, + -0.04284460097551346, + 0.010363996960222721, + 0.0030719521455466747, + 0.009662455879151821, + -0.0076518552377820015, + 0.013387130573391914, + -0.02670193649828434, + -0.009091097861528397, + 0.017430029809474945, + 0.013444988988339901, + 0.016504283994436264, + 0.021509090438485146, + -0.03170674294233322, + 0.009452717378735542, + 0.001689664088189602, + -0.000474624743219465, + -0.003279882948845625, + 0.004596175625920296, + 0.0008005337440408766, + -0.0004963218816556036, + 0.008049636147916317, + 0.002641625702381134, + -0.008172586560249329, + -0.02347629703581333, + -0.013871699571609497, + 0.05111844092607498, + -0.01187556330114603, + 0.018630603328347206, + -0.031012432649731636, + 0.015043344348669052, + -0.03514935448765755, + 0.0062777032144367695, + -0.005626789294183254, + -0.012172090820968151, + -0.012960419990122318, + -0.015376034192740917, + 0.0143273388966918, + 0.004635953810065985, + 0.010053004138171673, + -0.007463813293725252, + -0.0007178134401328862, + 0.02367880381643772, + 0.02629692293703556, + -0.013770446181297302, + 0.023794520646333694, + 0.025327784940600395, + 0.009409322403371334, + 0.016099272295832634, + -0.031012432649731636, + 0.016851438209414482, + 0.0015504409093409777, + -0.010674988850951195, + 0.01821112632751465, + -0.003952494356781244, + -0.008707782253623009, + -0.00582206342369318, + 0.012020210735499859, + -0.005366424098610878, + 0.0068418290466070175, + -0.012070837430655956, + 0.01003853976726532, + 0.03407896310091019, + 0.022854311391711235, + 0.013864466920495033, + 0.04391499608755112, + 0.013777678832411766, + -0.015347104519605637, + -0.0032780750188976526, + 0.010450785048305988, + -0.02803269401192665, + -0.016287313774228096, + 0.013256947509944439, + -0.011383761651813984, + -0.0033449744805693626, + -0.03300856798887253, + 3.924129487131722e-5, + -0.01725645177066326, + 0.020236192271113396, + 0.010747312568128109, + 0.02690444327890873, + -0.012772378511726856, + 0.02730945684015751, + -0.011412691324949265, + 0.008310001343488693, + -0.012099767103791237, + -0.03575687110424042, + -0.024069352075457573, + 0.011181254871189594, + -0.0025620695669203997, + 0.004032050259411335, + -0.0030683360528200865, + 0.02074245736002922, + 0.01037122868001461, + -0.04345212131738663, + -0.01402357965707779, + -0.02375112660229206, + 0.049353741109371185, + -0.02020726166665554, + 0.005865457933396101, + -0.0037897655274719, + 0.02690444327890873, + 0.001662542694248259, + 0.01181047223508358, + 0.0226807352155447, + 0.010971516370773315, + -0.0023848763667047024, + 0.034975774586200714, + -0.005098825786262751, + 0.025052955374121666, + -0.023519691079854965, + 0.01659107394516468, + -0.05279635265469551, + 0.009496111422777176, + 0.00759399589151144, + 0.017777184024453163, + 0.03344251215457916, + -0.029609352350234985, + 0.008671619929373264, + -0.008353395387530327, + 0.010646059177815914, + -0.01826898567378521, + 0.001216847449541092, + -3.070935053983703e-5, + 0.007492742966860533, + 0.003981423564255238, + -0.0023848763667047024, + 0.0013416060246527195, + -0.026803189888596535, + -0.00704433536157012, + -0.016634467989206314, + -0.048080842941999435, + 0.0062777032144367695, + 0.0003796998062171042, + -0.004498538561165333, + 0.0031750136986374855, + -0.012808539904654026, + -0.0020467627327889204, + -0.024604547768831253, + 0.0024355030618608, + 0.01660553738474846, + -0.0034028333611786366, + -0.022405903786420822, + -0.0012150394031777978, + 0.018283449113368988, + -0.01725645177066326, + 0.011701986193656921, + 0.00568826450034976, + -0.003974191378802061, + -0.0064512803219258785, + -0.0046974290162324905, + -0.0017818768974393606, + 0.009105563163757324, + -0.012193787842988968, + 0.006429583299905062, + 0.02375112660229206, + 0.003214791649952531, + -0.03807123377919197, + 0.03454183414578438, + -0.02349076047539711, + 0.002882102271541953, + -0.026673007756471634, + -0.016026947647333145, + -0.009930053725838661, + -0.010139793157577515, + -0.003912716172635555, + 1.3567770110967103e-5, + -0.023187002167105675, + -0.021899638697504997, + 0.0027645761147141457, + -0.026152275502681732, + -0.021566947922110558, + -0.00017572416982147843, + -0.004560013767331839, + -0.01598355360329151, + -0.011202951893210411, + -0.04035666584968567, + 0.013958487659692764, + -0.013944023288786411, + 0.003417298197746277, + -0.0068020508624613285, + -0.0138210728764534, + 0.02282538264989853, + -0.0014302026247605681, + -0.04128240793943405, + -0.00010577351349638775, + -0.014443057589232922, + -0.001523319398984313, + 0.0196142066270113, + -0.024575617164373398, + -0.0146527960896492, + -0.01585337147116661, + -0.032834991812705994, + 0.0007092250161804259, + 0.03057849034667015, + -0.046345073729753494, + 0.027931440621614456, + 0.04136919602751732, + -0.022926636040210724, + 0.0196142066270113, + 0.012533709406852722, + 0.0069539304822683334, + 0.01284470222890377, + -0.016214989125728607, + 0.007883290760219097, + -0.019512953236699104, + 0.019527418538928032, + -0.019585277885198593, + 0.03607509657740593, + 0.041455987840890884, + -0.02622460015118122, + 0.027396244928240776, + 0.028090553358197212, + 0.0005383600946515799, + -0.02568940445780754, + 0.016243919730186462, + -0.02389577403664589, + -0.0014338188339024782, + 0.009431019425392151, + 0.015954624861478806, + -0.007315549533814192, + 0.009322534315288067, + -0.013676425442099571, + -0.023129142820835114, + -0.00603903504088521, + -0.018182195723056793, + -0.03653797134757042, + 0.009843265637755394, + -0.017487887293100357, + 0.0019093476003035903, + -0.06260345876216888, + -0.02435864694416523, + 0.002478897338733077, + 0.013444988988339901, + 0.0032726507633924484, + 0.006577847059816122, + 0.017111804336309433, + 0.014377965591847897, + -0.00501926988363266, + 0.013423291966319084, + 0.007087729871273041, + 0.0032762668561190367, + -0.008476345799863338, + 0.015665328130126, + -0.017647000029683113, + -0.027020161971449852, + -0.009467181749641895, + 0.015303710475564003, + -0.0075144399888813496, + -0.019021151587367058, + -0.008150889538228512, + -0.005040966905653477, + 0.03216961398720741, + -0.009778173640370369, + -0.02771446853876114, + 0.020988358184695244, + 0.00018363457638770342, + -0.016562143340706825, + 0.005156685132533312, + -0.005572546739131212, + -0.008592064492404461, + -0.02911755070090294, + 0.013734283857047558, + 0.0025711101479828358, + -0.0032726507633924484, + 0.02743963897228241, + -0.021668201312422752, + -0.005503838881850243, + 0.03853410482406616, + 0.012020210735499859, + -0.00023505225544795394, + -0.023939168080687523, + -0.005149452481418848, + -0.00664293859153986, + -0.01110893115401268, + 0.013061673380434513, + 0.0074348836205899715, + -0.052564918994903564, + 0.0169382281601429, + 0.017386633902788162, + 0.02027958631515503, + -0.0030990736559033394, + 0.000983603298664093, + -0.019903501495718956, + 0.005615940783172846, + 0.01461663469672203, + 0.035033635795116425, + -0.014095903374254704, + 0.026282459497451782, + 0.000979987089522183, + 0.05233348160982132, + 0.015433892607688904, + -0.0055400007404387, + -0.027526427060365677, + -0.022000892087817192, + -0.010363996960222721, + 0.006758656352758408, + 0.003520359518006444, + 0.03292177990078926, + -0.01311230007559061, + 0.005558081902563572, + 0.010631594806909561, + -0.020930498838424683, + 0.00983603298664093, + 0.01980224810540676, + 0.034107889980077744, + 0.03231425955891609, + 0.0013117723865434527, + 0.0014473794726654887, + -0.013220785185694695, + -0.007933917455375195, + -0.022376975044608116, + -0.01027720794081688, + 0.024112746119499207, + -0.013683658093214035, + -0.03486005961894989, + -0.002162480726838112, + -0.03480219841003418, + 0.004831227939575911, + 0.001453707809560001, + 0.01181047223508358, + 0.01673572137951851, + 0.007644622586667538, + 0.006031802389770746, + -0.02958042360842228, + 0.03749264404177666, + -0.003184054046869278, + -0.0056991130113601685, + 0.011984049342572689, + -0.014110367745161057, + -0.00889582373201847, + -0.03729013726115227, + 0.023129142820835114, + -0.020713528618216515, + -0.01081240363419056, + 0.016894832253456116, + 0.002140783704817295, + -0.014971020631492138, + -0.007673552259802818, + -0.013003814034163952, + -0.004585327114909887, + 0.03619081526994705, + -0.008555902168154716, + -0.01110893115401268, + -0.010356764309108257, + 0.009156189858913422, + 0.012070837430655956, + -0.0061258235946297646, + 0.016967156901955605, + -0.00042558019049465656, + -0.011152325198054314, + 0.006107742432504892, + -0.004447911866009235, + 0.00033427143353037536, + 0.027410710230469704, + 0.009011542424559593, + 0.003390176920220256, + 0.0017149774357676506, + -0.020120473578572273, + 0.01679358072578907, + -0.008498042821884155, + 0.0022112992592155933, + 0.009054936468601227, + 0.010183187201619148, + 0.02295556478202343, + -0.000777480541728437, + -0.011564571410417557, + 0.018095407634973526, + 0.021523553878068924, + -0.025617079809308052, + -0.013076137751340866, + -0.0016010674880817533, + -0.008794570341706276, + 0.01625838316977024, + -0.017777184024453163, + 0.015896765515208244, + -0.007832664065063, + -0.0047155097126960754, + 0.0061836824752390385, + 0.002878486178815365, + -0.0006748712039552629, + 0.007290236186236143, + 0.008953683078289032, + 0.029537027701735497, + -0.019527418538928032, + -0.02153801918029785, + -0.029609352350234985, + 0.00466849934309721, + -0.005543617065995932, + 0.0052868677303195, + 0.004787833895534277, + -0.004223708063364029, + 0.03859196603298187, + 0.0014808292035013437, + 0.025067418813705444, + -0.0032364889048039913, + -0.007941150106489658, + -0.007264922838658094, + -0.02736731618642807, + -0.015911228954792023, + -0.000611587893217802, + 0.00036139285657554865, + -0.012193787842988968, + -0.004773369058966637, + 0.004762520547956228, + -0.029739534482359886, + -0.004339426290243864, + -0.026051022112369537, + 0.007351711392402649, + -0.00859929621219635, + -0.0580904521048069, + 0.04923802241683006, + -0.0008710494148544967, + 0.007904988713562489, + 0.012020210735499859, + 0.00846911408007145, + -0.015940159559249878, + 0.004491306375712156, + -0.0019183880649507046, + 0.034831129014492035, + 0.04310496896505356, + -0.0009356887894682586, + -0.025544757023453712, + -0.0012349283788353205, + 0.019831178709864616, + 0.025197602808475494, + 0.019180264323949814, + 0.016981622204184532, + -0.015347104519605637, + 0.008324465714395046, + 0.011065537109971046, + -0.028524495661258698, + -0.006711645983159542, + 0.007011789828538895, + -0.004339426290243864, + -0.0006179162301123142, + -0.031417448073625565, + 0.019180264323949814, + 0.003800614271312952, + -0.04689473286271095, + 0.002945385640487075, + 0.003560137702152133, + 0.0007883291109465063, + -0.018500421196222305, + 0.0013425099896267056, + 0.00036433100467547774, + -0.007673552259802818, + -0.0093659283593297, + -0.020641203969717026, + -0.04188992828130722, + 0.02288324199616909, + 0.01418269146233797, + 0.018370237201452255, + -0.02516867220401764, + 0.03769515082240105, + 0.008505275472998619, + 0.016026947647333145, + -0.02997097186744213, + 0.003693936625495553, + 0.0253567136824131, + -0.0019129638094455004, + -0.016822509467601776, + -0.011210184544324875, + -0.0143273388966918, + -0.012591568753123283, + -0.004411750007420778, + 0.023649873211979866, + -0.019917966797947884, + 0.010631594806909561, + 0.0003455720143392682, + -0.000194822161574848, + 0.00438643665984273, + -0.015578540042042732, + 0.002708525164052844, + 0.01874632202088833, + 0.010161490179598331, + -0.02088710479438305, + 0.00833169836550951, + 0.014754049479961395, + 0.0074348836205899715, + 0.006877990905195475, + 0.012446921318769455, + -0.01565086469054222, + -0.001999752363190055, + -0.005312181077897549, + -0.020366374403238297, + 0.050684500485658646, + -0.009922821074724197, + 0.013741516508162022, + -0.02408381551504135, + -0.028350919485092163, + 0.013133997097611427, + 0.03352930024266243, + -0.04330747574567795, + 0.014782979153096676, + 0.0007711522048339248, + -0.006114975083619356, + -0.009987913072109222, + 0.017892900854349136, + -0.009763709269464016, + -0.01033506728708744, + 0.005095209926366806, + -0.005398969631642103, + -0.002204066840931773, + 0.0033323178067803383, + -0.011456085368990898, + 0.0008746656239964068, + -0.017907366156578064, + 0.008526972495019436, + 0.0034679248929023743, + -0.022724129259586334, + -0.007188982795923948, + -0.007644622586667538, + 0.01839916780591011, + 0.014240550808608532, + 0.022102145478129387, + -0.00959736481308937, + -0.013423291966319084, + 0.022695200517773628, + 0.020916035398840904, + 0.01799415424466133, + 0.042063504457473755, + 0.01865953393280506, + 0.01137652900069952, + 0.0117815425619483, + 0.0080279391258955, + 0.0013090602587908506, + 0.0015097587602213025, + 0.017314311116933823, + 0.004588943440467119, + 0.020756922662258148, + -0.0025891910772770643, + -0.0212776530534029, + -0.0002953974180854857, + 0.0059920246712863445, + -0.0001897368929348886, + 0.013264180161058903, + -0.005066280253231525, + -0.014247783459722996, + -0.017632534727454185, + -0.009091097861528397, + -0.016171595081686974, + 0.0031334273517131805, + -0.008179818280041218, + 0.022536087781190872, + 0.0027645761147141457, + 0.001596547313965857, + 0.0015703298849985003, + 0.01839916780591011, + -0.03037598356604576, + -0.005080745089799166, + 0.024185068905353546, + 0.0003984587674494833, + 0.02014940232038498, + -0.007492742966860533, + -0.028191806748509407, + -6.887708877911791e-5, + 0.018037548288702965, + 0.003489621914923191, + -0.016909297555685043, + 0.012866399250924587, + 0.012634962797164917, + -0.01651874929666519, + -0.004364739637821913, + -0.005988408345729113, + -0.010580968111753464, + -0.0002671459224075079, + -0.013314806856215, + -0.005829296074807644, + -0.007716946303844452, + 0.0037391390651464462, + 0.03847624734044075, + -0.005055431742221117, + 0.012085302732884884, + 0.009611829183995724, + 0.029942041262984276, + 0.006136672105640173, + 0.050424132496118546, + 0.0011047456646338105, + -0.012772378511726856, + 0.005742507521063089, + 0.0014799252385273576, + 0.015578540042042732, + -0.001055023050867021, + -0.005391736980527639, + 0.011904492974281311, + -0.004046515095978975, + 0.018485955893993378, + -0.004263486247509718, + -0.022579481825232506, + -0.029739534482359886, + 0.011419923976063728, + 0.00022849791275803, + 0.014913162216544151, + -0.02684658393263817, + -0.017082875594496727, + 0.020395303145051003, + -0.036248672753572464, + -0.009749244898557663, + -0.017748253419995308, + 0.015448357909917831, + -0.024604547768831253, + -0.011282508261501789, + -0.0018424481386318803, + -0.00010842915799003094, + -0.0023577548563480377, + -0.024980630725622177, + 0.009590132161974907, + 0.016779115423560143, + -0.00857036653906107, + 0.010682221502065659, + -0.014406895264983177, + -0.015694258734583855, + -0.03384752571582794, + -0.017039481550455093, + -0.01267835684120655, + -0.011456085368990898, + -0.001253913389518857, + -0.012309505604207516, + 0.02347629703581333, + -0.00039506860775873065, + -0.023317184299230576, + -0.008794570341706276, + 0.005500223021954298, + 0.0018478723941370845, + -0.013611333444714546, + -0.014811908826231956, + 0.0014636523555964231, + -0.025530291721224785, + -0.007174517959356308, + -0.01110893115401268, + -0.0004719126154668629, + 0.008346163667738438, + 0.004965026862919331, + 0.0004203819262329489, + -0.013444988988339901, + 0.035496506839990616, + 0.0056846486404538155, + 0.0004669403424486518, + -0.024517757818102837, + -0.006838212721049786, + -0.017025016248226166, + 0.031214939430356026, + -0.01786397211253643, + -0.018789716064929962, + -0.021494625136256218, + 0.006545301526784897, + 0.036711547523736954, + 6.543040944961831e-5, + -0.012649428099393845, + -0.0002888430608436465, + 0.017386633902788162, + 0.019686531275510788, + 0.0008773777517490089, + -0.02644157037138939, + -0.0027591518592089415, + -0.02664407715201378, + -0.007094962056726217, + -0.019310446456074715, + 0.002229380188509822, + -0.002572918077930808, + 0.004440679680556059, + 0.003288923529908061, + 0.02516867220401764, + 0.02568940445780754, + 0.0044298311695456505, + -0.00856313481926918, + 0.013654728420078754, + -0.005229008849710226, + -0.017444493249058723, + -0.014732352457940578, + -0.026253528892993927, + -0.008989844471216202, + 0.008440184406936169, + 0.0013488383265212178, + -0.007847129367291927, + 0.019700994715094566, + 0.002108237938955426, + 0.003348590573295951, + 0.01987457275390625, + -0.0063572595827281475, + -0.0020793084986507893, + 0.009532272815704346, + -0.01946955919265747, + 0.024792589247226715, + -0.001596547313965857, + 0.006917768623679876, + -0.0063174813985824585, + -0.0196142066270113, + 0.011217417195439339, + 0.014421360567212105, + -0.005178382154554129, + 0.005431515164673328, + 0.013712586835026741, + -0.027005696669220924, + 0.014132064767181873, + 0.013611333444714546, + -0.024922771379351616, + -0.014247783459722996, + -0.015376034192740917, + 0.03540971875190735, + -0.017820578068494797, + -0.006252389866858721, + -0.003193094627931714, + 0.040183085948228836, + -0.027555357664823532, + 0.011477782391011715, + 0.023447366431355476, + 0.011166790500283241, + -0.0021064297761768103, + 0.0131195317953825, + 0.004838460125029087, + -0.013799375854432583, + 0.008635458536446095, + 0.019295983016490936, + -0.003692128462716937, + 0.033500369638204575, + -0.004371971823275089, + -0.0064512803219258785, + 0.04622935503721237, + -0.0023830682039260864, + 0.033355724066495895, + 0.02817734144628048, + 0.018847575411200523, + 0.013633031398057938, + -0.019021151587367058, + 0.0033684796653687954, + -0.00886689405888319, + 0.0031117303296923637, + 0.005735275335609913, + 0.0008751176646910608, + 0.01214316114783287, + -0.013271411880850792, + 0.01214316114783287, + 0.0016092038713395596, + -0.02576172724366188, + -0.01050864439457655, + 0.005731659010052681, + 0.012425224296748638, + -0.014739585109055042, + -0.010725615546107292, + 0.012432456016540527, + 0.013387130573391914, + -0.0036776638589799404, + -0.010147024877369404, + -0.014956556260585785, + 0.01231673825532198, + 0.01625838316977024, + -0.01385723426938057, + -0.009148957207798958, + -0.002708525164052844, + -0.024807054549455643, + 0.00803517084568739, + -0.0013623990816995502, + -0.0008570366771891713, + -0.013965720310807228, + 0.017719324678182602, + -0.0030719521455466747, + -4.212294516037218e-5, + -0.018818644806742668, + -0.00983603298664093, + -0.006765889003872871, + 0.002232996514067054, + 0.013155694119632244, + 0.014443057589232922, + 0.0032708426006138325, + 0.012005746364593506, + 0.007420418784022331, + -0.027989299967885017, + -0.011969584040343761, + 0.010175954550504684, + -0.007926685735583305, + -0.0242139995098114, + -0.00705880019813776, + -5.983662049402483e-5, + 0.07608460634946823, + -0.0002802546077873558, + 0.006114975083619356, + 0.021436765789985657, + 0.030231336131691933, + -0.0012032868107780814, + 0.014139297418296337, + 0.03124387003481388, + 0.025862980633974075, + -0.017574677243828773, + -0.000322066800436005, + -0.011253578588366508, + -0.001324429060332477, + -0.0114054586738348, + -0.0044840737245976925, + 0.012533709406852722, + 0.014775746501982212, + 0.0021136621944606304, + -0.005503838881850243, + 0.03595937788486481, + 0.030260266736149788, + -0.01405250933021307, + -0.003326893551275134, + 0.011824936605989933, + -0.006773121189326048, + 0.009821568615734577, + 0.003151508281007409, + 0.021841779351234436, + 0.03445504605770111, + 0.0018370237667113543, + 0.006118590943515301, + -0.003283499274402857, + -0.0035764104686677456, + -0.001832503592595458, + -0.001149043906480074, + 0.0037753009237349033, + -0.01592569425702095, + 0.007818199694156647, + -0.005525536369532347, + 0.03057849034667015, + -0.0032672265078872442, + -0.0016742952866479754, + 0.022261256352066994, + -0.007673552259802818, + -0.0026615147944539785, + 0.009409322403371334, + -0.0017493312479928136, + -0.007876059040427208, + 0.013806608505547047, + -0.023201465606689453, + -0.03170674294233322, + -0.01638856716454029, + 0.0015169910620898008, + 0.01559300534427166, + 0.0034769652411341667, + -0.010819636285305023, + -0.010725615546107292, + -0.014927626587450504, + 0.000951961672399193, + -0.0019509337143972516, + 0.008215980604290962, + 0.011087234131991863, + -0.026673007756471634, + -0.03352930024266243, + 0.01037122868001461, + -0.02188517339527607, + -0.017589140683412552, + 0.011123396456241608, + -0.009698618203401566, + 0.021697131916880608, + -0.01124634686857462, + 0.014363501220941544, + -0.003155124606564641, + -0.02242036908864975, + -0.0075144399888813496, + 0.015115668065845966, + 0.010212116874754429, + -0.008078564889729023, + -0.007904988713562489, + 0.001321716932579875, + -0.009647991508245468, + 0.0016010674880817533, + 0.010385693982243538, + -0.0023252093233168125, + -0.004140535835176706, + 0.006733343005180359, + 0.007351711392402649, + -0.0016345172189176083, + 0.011593501083552837, + -0.016489820554852486, + 0.007789270021021366, + 0.0039452617056667805, + -0.01160796545445919, + 0.013068906031548977, + -0.002813394647091627, + -0.0008574887178838253, + -0.024141674861311913, + -0.012960419990122318, + 0.036451179534196854, + 0.007839896716177464, + 0.0014139297418296337, + 0.012193787842988968, + 0.004787833895534277, + 0.011969584040343761, + -0.0019220042740926147, + -0.005210927687585354, + 0.009930053725838661, + 0.01854381524026394, + -0.004093525465577841, + -0.0010495987953618169, + -0.005973943509161472, + -0.024807054549455643, + -0.026803189888596535, + -0.0093659283593297, + -0.0210172887891531, + 0.0060860454104840755, + -0.011347600258886814, + -0.00501926988363266, + -0.018847575411200523, + -0.014768513850867748, + 0.010609897784888744, + 0.015260315500199795, + 0.0016544063109904528, + 0.004780601244419813, + 0.0031424679327756166, + -0.002440927317366004, + -0.013264180161058903, + -0.012266111560165882, + -0.03914162516593933, + 0.0074348836205899715, + 0.013994649983942509, + -0.003352206898853183, + 0.0061258235946297646, + 0.007818199694156647, + -0.004711893852800131, + -0.01311230007559061, + 0.007803734857589006, + -0.013604101724922657, + 0.02323039621114731, + -0.007926685735583305, + 0.012938722968101501, + 0.002540372544899583, + 0.0011635086266323924, + 0.018153266981244087, + -0.0002472568885423243, + -0.0065489173866808414, + -0.016157129779458046, + -0.02162480726838112, + 0.030896715819835663, + 0.007876059040427208, + 0.025862980633974075, + -0.016620002686977386, + -0.00833169836550951, + -0.0032075592316687107, + 0.017155198380351067, + 0.017169663682579994, + -0.010863030329346657, + -0.01228057686239481, + -0.009669688530266285, + -0.00717813428491354, + 0.018558280542492867, + 0.003934413194656372, + -0.01000961009413004, + -0.015347104519605637, + -0.012504779733717442, + -0.005297716241329908, + 0.006592311896383762, + 0.015607469715178013, + 0.005402585957199335, + 0.0024355030618608, + -0.018023084849119186, + 0.002916456200182438, + -0.0016200524987652898, + -0.004672115668654442, + 0.006545301526784897, + 0.015202457085251808, + 0.005829296074807644, + 0.016706790775060654, + -0.01852934993803501, + 0.013661960139870644, + 0.019295983016490936, + -0.0007982736569829285, + 0.004437063354998827, + 0.002102813683450222, + -0.0015649056294932961, + -0.01305444072932005, + 0.03633546456694603, + 0.0006183682708069682, + 0.005825679749250412, + -0.014226085506379604, + -0.0077458759769797325, + 0.02275305800139904, + 0.013011046685278416, + -0.00603903504088521, + 0.0065886955708265305, + 0.011998513713479042, + -0.01646088995039463, + 0.017285382375121117, + 0.00963352620601654, + 0.002771808532997966, + -0.01013256050646305, + -0.010392925702035427, + 0.0121069997549057, + -0.018355773761868477, + -0.007348095066845417, + -0.01786397211253643, + -0.017314311116933823, + -0.025269925594329834, + -0.02550136111676693, + -0.0014338188339024782, + -0.04215029254555702, + -0.03127279877662659, + 0.015477287583053112, + 0.013329271227121353, + -0.019889038056135178, + -6.45263644400984e-5, + 0.008215980604290962, + 0.007019022013992071, + 0.009459949098527431, + -0.0012945955386385322, + 0.005308564752340317, + 0.02249269373714924, + -0.006169217638671398, + -0.018413633108139038, + 0.02310021221637726, + 0.01097874902188778, + 0.016489820554852486, + -0.006071580573916435, + 0.006288552191108465, + 0.0005315797170624137, + 0.008100262843072414, + 0.005312181077897549, + 0.013994649983942509, + 0.0017249219818040729, + 0.008404022082686424, + 0.039922721683979034, + 0.018558280542492867, + -0.008620993234217167, + -0.00046603631926700473, + 0.00413330364972353, + -0.011665824800729752, + 0.015274780802428722, + -0.016489820554852486, + -0.007427651435136795, + 0.014363501220941544, + -0.006393421441316605, + 0.009922821074724197, + -0.015940159559249878, + 0.003491430077701807, + -2.7997210054309107e-5, + 0.02100282348692417, + -0.009763709269464016, + -0.013907860964536667, + 0.0036758556962013245, + 0.01562193501740694, + 0.009170654229819775, + 0.016836974769830704, + 0.005308564752340317, + 0.0010957051999866962, + 0.010797939263284206, + 0.0033811363391578197, + 0.00013312094961293042, + 0.018225589767098427, + -0.025877445936203003, + 0.0236932672560215, + 0.00909833051264286, + -0.007659087423235178, + 0.024242928251624107, + -0.018182195723056793, + 0.012692822143435478, + 0.0006540780887007713, + 0.007377024739980698, + 0.006346411071717739, + 0.0051819984801113605, + 0.0031713973730802536, + 0.004943329840898514, + 0.027208203449845314, + -0.012700054794549942, + -0.004104373976588249, + -0.007774805650115013, + -0.011130628176033497, + 0.0022583098616451025, + -0.0042960322462022305, + -0.02474919520318508, + 0.002824243390932679, + -0.03306642919778824, + -0.01659107394516468, + 0.012924257665872574, + -0.0073010846972465515, + 0.01967206597328186, + -0.007854362018406391, + -0.012728983536362648, + 0.024459900334477425, + 0.013604101724922657, + -0.0015504409093409777, + 0.007601228542625904, + 0.007442116271704435, + 0.008917520754039288, + 0.011926189996302128, + 0.0012484891340136528, + -0.016113735735416412, + 0.003525783773511648, + 0.003287115367129445, + -0.017010550945997238, + 0.03561222553253174, + -0.008620993234217167, + -0.00022906294907443225, + -0.013032743707299232, + -0.0005247993976809084, + 0.018428096547722816, + -0.0013877124292775989, + -0.007019022013992071, + -0.0040392824448645115, + -0.0020775003358721733, + 0.00041088942089118063, + 0.005923316814005375, + 0.010740079917013645, + 0.013162926770746708, + -0.001790917362086475, + -0.01267835684120655, + -0.006462128832936287, + -0.008823500014841557, + 0.0011309629771858454, + 0.011745380237698555, + -0.003057487541809678, + 0.013835537247359753, + 0.0007923973025754094, + 0.011687521822750568, + -0.0070732650347054005, + 0.0009013350354507565, + -0.0013352776877582073, + 0.0009619061602279544, + -0.006295784376561642, + -0.005221776198595762, + -0.01666339673101902, + 0.021783920004963875, + -0.014898696914315224, + -0.000373597489669919, + -0.016475355252623558, + 0.0068020508624613285, + -0.01375598181039095, + 0.010175954550504684, + 0.010407391004264355, + -0.0006029994692653418, + 0.0033974091056734324, + 0.014471986331045628, + 0.018167732283473015, + -0.010089166462421417, + -0.009467181749641895, + 0.03057849034667015, + 0.015694258734583855, + -0.0070696487091481686, + 0.00927190762013197, + 0.00025584534159861505, + -0.018775250762701035, + 0.009358695708215237, + -0.016750184819102287, + 0.019570812582969666, + -0.005742507521063089, + -0.015838906168937683, + 5.8932571846526116e-5, + 0.018023084849119186, + -0.015433892607688904, + -0.012873630970716476, + 0.02367880381643772, + 0.012237181887030602, + 0.006190914660692215, + -0.005207311362028122, + -0.020322980359196663, + -0.008678852580487728, + 0.006610392592847347, + -0.008874126709997654, + -0.003426338778808713, + -0.023447366431355476, + -0.0035438649356365204, + 0.008881359361112118, + 0.00889582373201847, + 0.011333134956657887, + -0.0074348836205899715, + 0.006342794746160507, + 0.005091593600809574, + 0.0016037796158343554, + -0.005370039958506823, + 0.0008226829231716692, + 0.00826660729944706, + 0.01471788715571165, + 0.027251597493886948, + 0.023606479167938232, + 0.0014392430894076824, + -0.016012482345104218, + 0.016967156901955605, + 0.020641203969717026, + 0.02890057861804962, + -0.006324714049696922, + 0.008953683078289032, + -0.007847129367291927, + -0.010436320677399635, + 0.007123891729861498, + -0.0033739039208739996, + -0.02797483466565609, + 0.0016164362896233797, + 0.008418487384915352, + -0.005760588217526674, + 0.004469608888030052, + 0.017777184024453163, + -0.019831178709864616, + 0.022304650396108627, + 0.01633070781826973, + 0.013727052137255669, + -0.02182731404900551, + -0.011427155695855618, + 0.007644622586667538, + -0.0008999789133667946, + -0.006472977809607983, + 0.0028875265270471573, + 0.018355773761868477, + 0.005243473686277866, + -0.019180264323949814, + 0.026340316981077194, + -0.010783473961055279, + 0.022724129259586334, + -0.004422598518431187, + 0.014464754611253738, + -0.020916035398840904, + 0.00830276869237423, + 0.03260355815291405, + 0.03607509657740593, + 0.015549611300230026, + -0.007839896716177464, + -6.441336154239252e-5, + 0.015679793432354927, + -0.01974439062178135, + 0.01438519824296236, + 0.015752118080854416, + -0.004813147243112326, + 0.0006599544431082904, + 0.00657423073425889, + -0.02683211863040924, + 0.0049288650043308735, + 0.01184663362801075, + 0.009749244898557663, + -0.016026947647333145, + 0.011557338759303093, + 0.003363055409863591, + 0.00650913966819644, + 0.017444493249058723, + -0.004979491699486971, + 0.008903056383132935, + 0.005059048067778349, + -0.01854381524026394, + -0.012027443386614323, + 0.009763709269464016, + -0.009662455879151821, + 0.0018053821986541152, + -0.028336454182863235, + -0.032632485032081604, + -0.012360132299363613, + 0.014269480481743813, + 0.021031752228736877, + 0.0048746224492788315, + -0.0011626046616584063, + -0.002883910434320569, + 0.0019129638094455004, + 0.017386633902788162, + 0.010515876114368439, + 0.03341358155012131, + 0.01482637319713831, + 0.009763709269464016, + -0.015043344348669052, + -0.0037753009237349033, + -0.009011542424559593, + 0.005449596326798201, + 0.009995145723223686, + 0.0046974290162324905, + 0.005706345662474632, + 0.030752068385481834, + 0.0002583314781077206, + -0.006845444906502962, + 0.023447366431355476, + -0.0027211818378418684, + -0.0033684796653687954, + -0.008968147449195385, + -0.0066284737549722195, + 0.004505771212279797, + 0.008671619929373264, + -0.01620052568614483, + -0.0202651210129261, + 0.0315910242497921, + -0.015216921456158161, + 0.022188933566212654, + -0.010935354046523571, + 0.005767820868641138, + 0.01010363083332777, + 0.01773378811776638, + 0.0003256829804740846, + 0.0018225590465590358, + 0.013531778007745743, + 0.02448882907629013, + 0.012258878909051418, + -0.011174023151397705, + -0.005807599052786827, + -0.010689453221857548, + -0.0226807352155447, + 0.017979688942432404, + 0.013488383032381535, + -0.0042128595523536205, + -0.007767572999000549, + -0.00786159373819828, + 0.001388616394251585, + 0.012917025946080685, + 0.012454153969883919, + -0.013842769898474216, + -0.0035330161917954683, + -0.0024879376869648695, + -0.008389557711780071, + 0.01653321459889412, + 0.024922771379351616, + 0.023056818172335625, + 0.020322980359196663, + 0.0131195317953825, + 0.004845692776143551, + -0.022651804611086845, + -0.0068020508624613285, + -0.005051815416663885, + -0.012446921318769455, + 0.021595878526568413, + 0.019715460017323494, + 0.003909099847078323, + -0.0035836428869515657, + 0.008411254733800888, + -0.019585277885198593, + 0.012056373059749603, + 0.018919898197054863, + 0.006881606765091419, + -0.005232624709606171, + 0.01311230007559061, + 0.011752612888813019, + -0.01337989792227745, + -0.0021263188682496548, + -0.01090642437338829, + -0.004965026862919331, + -0.002171521307900548, + 0.015809977427124977, + -0.0022239559330046177, + -0.024503294378519058, + -0.01137652900069952, + -0.005417050328105688, + 0.00017402907542418689, + 0.009091097861528397, + -0.003695744788274169, + -0.010863030329346657, + 0.010147024877369404, + 0.004986723884940147, + 0.009792638942599297, + -0.0038186952006071806, + -0.011036607436835766, + -0.023056818172335625, + 0.016634467989206314, + 0.01880418136715889, + 0.004426214843988419, + -0.0036433099303394556, + -0.01207807008177042, + 0.00670802965760231, + -0.006028186529874802, + -0.0026018477510660887, + 0.005514687392860651, + 0.004813147243112326, + 0.021509090438485146, + -0.0046178726479411125, + 0.0261088814586401, + -0.020626740530133247, + -0.0076518552377820015, + -0.032690346240997314, + -0.0028061624616384506, + -0.0019147718558087945, + -0.01920919306576252, + -0.006603160407394171, + -0.02395363338291645, + 0.024054886773228645, + -0.0025602616369724274, + 0.007832664065063, + 0.004180314019322395, + -0.020829245448112488, + -0.010226581245660782, + 0.00806410051882267, + 0.018514886498451233, + 0.0011969584738835692, + -0.003701169043779373, + 0.004531084094196558, + -0.021436765789985657, + -0.0007666319725103676, + -0.004762520547956228, + -0.003216599812731147, + -0.020858176052570343, + 0.01211423147469759, + -0.002741070929914713, + -0.013502848334610462, + -0.00332870171405375, + -0.0050228857435286045, + -0.013155694119632244, + -0.006400653626769781, + 0.0017520433757454157, + -0.005767820868641138, + 0.021465696394443512, + -0.013242482207715511, + 0.008982612751424313, + 0.019368305802345276, + -0.019700994715094566, + -0.012873630970716476, + 0.003153316443786025, + 0.00645489664748311, + -0.007055183872580528, + 0.026195669546723366, + -0.023982562124729156, + 0.013329271227121353, + -0.014674493111670017, + 0.013994649983942509, + -0.006313865073025227, + 0.025993162766098976, + -0.0007218816317617893, + -0.01819666102528572, + 0.0022619259543716908, + 0.014370733872056007, + 0.0019816714338958263, + 0.00010905068484134972, + 0.013394362293183804, + -0.019093476235866547, + 0.0075722988694906235, + 0.00441536633297801, + 0.0015658097108826041, + -0.010363996960222721, + -0.01779164746403694, + 0.008404022082686424, + -0.020294049754738808, + -0.00488547096028924, + -0.02087264135479927, + -0.0014247782528400421, + -0.0003021777665708214, + 0.005941397976130247, + -0.01679358072578907, + 0.010826868936419487, + -0.012808539904654026, + -0.00339560117572546, + -0.0048710061237216, + 0.008411254733800888, + -0.0012765146093443036, + 0.02194303274154663, + 0.0034028333611786366, + -0.0028676376678049564, + 0.013047208078205585, + -0.020713528618216515, + -0.010928122326731682, + -0.013893396593630314, + -0.006017338018864393, + -0.011456085368990898, + -0.0019165799021720886, + 0.013900629244744778, + -0.012295041233301163, + 0.0005528248148038983, + -0.012490315362811089, + -0.004408133681863546, + -0.033095359802246094, + 0.0017746445955708623, + 0.0050626639276742935, + 0.013633031398057938, + 0.0066574034281075, + 0.0050626639276742935, + 0.017835041508078575, + -0.006230692844837904, + -0.0025946153327822685, + 0.0023234011605381966, + -0.010920889675617218, + -0.012685589492321014, + -0.006787586025893688, + -0.008555902168154716, + -0.032950710505247116, + 0.0040790606290102005, + -0.022044286131858826, + 0.007337246555835009, + -0.060520533472299576, + -0.0012819388648495078, + -0.004621488973498344, + -0.018760787323117256, + -0.024503294378519058, + -1.4365874449140392e-5, + 0.0004845692601520568, + -0.016952691599726677, + -0.01358240470290184, + -0.022376975044608116, + 0.013980184681713581, + -0.003905483754351735, + -0.005869074258953333, + -0.012743448838591576, + -0.005460444837808609, + 0.007485510315746069, + 0.027656611055135727, + 0.0009962599724531174, + 0.010429088026285172, + 0.014913162216544151, + -0.00657423073425889, + -0.007622925564646721, + -0.02323039621114731, + 0.0036469262558966875, + -0.00959736481308937, + 0.02142230048775673, + -0.010269975289702415, + 0.005959478672593832, + -0.004925248678773642, + 0.004527468234300613, + 0.01388616394251585, + -0.007094962056726217, + 0.0012403526343405247, + 0.016677862033247948, + 0.003731906646862626, + -0.01284470222890377, + -0.003869321895763278, + -0.004921632818877697, + -0.007622925564646721, + -0.01482637319713831, + -0.003800614271312952, + -0.0030339821241796017, + -0.0010993212927132845, + -0.00977094192057848, + 0.020395303145051003, + -0.005973943509161472, + -0.014566008001565933, + 0.016692327335476875, + 0.022521622478961945, + -0.009214048273861408, + 0.005077128764241934, + 0.009235745295882225, + 0.0043502748012542725, + -0.023244859650731087, + 0.0025349482893943787, + -0.011065537109971046, + -0.010226581245660782, + -0.004823995754122734, + 0.0022167235147207975, + 0.013922326266765594, + 0.008953683078289032, + 0.0010387501679360867, + -0.006161985453218222, + 0.012034676037728786, + 0.005377272609621286, + 0.027685539796948433, + -0.0006902400054968894, + 0.001525127561762929, + -1.3440638213069178e-5, + -0.008664388209581375, + 0.020496556535363197, + -0.023114677518606186, + -0.025617079809308052, + 0.020178332924842834, + 0.002283623209223151, + 0.01887650415301323, + 0.001253009308129549, + 0.012179323472082615, + 0.007991776801645756, + 0.02175499126315117, + 0.035901520401239395, + 0.018963292241096497, + 0.005344726610928774, + 0.004820379428565502, + 0.01800861954689026, + 0.0034697330556809902, + -0.008165353909134865, + 0.014537078328430653, + 0.0006694468902423978, + -0.00909833051264286, + 0.023939168080687523, + 0.003493238240480423, + -0.004809530917555094, + 0.0022203398402780294, + -0.019686531275510788, + -0.005655718967318535, + -0.02897290326654911, + 0.0012674741446971893, + -4.217945024720393e-5, + -0.0029399613849818707, + 0.04310496896505356, + -0.01699608564376831, + 0.02709248475730419, + -0.008440184406936169, + 0.02603655867278576, + -0.006176450289785862, + -0.02275305800139904, + 0.01806647889316082, + -0.013097834773361683, + 0.01455877535045147, + -0.0036505423486232758, + -0.00577143719419837, + -0.0028314755763858557, + -0.014688958413898945, + -0.00022013548004906625, + 0.024864912033081055, + 0.0011987665202468634, + 0.021870708093047142, + -0.0036234210710972548, + -0.012750680558383465, + -0.01845702715218067, + 0.009091097861528397, + 0.006208995822817087, + -0.0013497424079105258, + -0.0024662406649440527, + -0.015491751953959465, + 0.017010550945997238, + -0.009799870662391186, + 0.008013473823666573, + 0.008512508124113083, + 0.016648931428790092, + -0.009655223228037357, + -0.017155198380351067, + -0.023302718997001648, + -0.00020442766253836453, + 0.02014940232038498, + -0.002327017253264785, + -0.0013696313835680485, + -0.009799870662391186, + -0.004675731994211674, + -0.02282538264989853, + 0.004596175625920296, + 0.005344726610928774, + -0.0013470302801579237, + 0.005026502069085836, + -0.0366826169192791, + 0.0033720957580953836, + 0.004140535835176706, + 0.0009709466248750687, + -0.014782979153096676, + 0.00555446557700634, + 0.0014166418695822358, + -0.01725645177066326, + -0.009286371991038322, + 0.003628845326602459, + 0.006281319539994001, + -0.008888592012226582, + -0.011130628176033497, + 0.001324429060332477, + -0.012157626450061798, + -0.004382820799946785, + -0.006747807841747999, + -0.023808985948562622, + 0.023302718997001648, + -0.0004470513085834682, + -0.0072468421421945095, + 0.006031802389770746, + -0.018428096547722816, + 0.0090404711663723, + 0.002366795437410474, + 8.910514588933438e-5, + -0.014030811376869678, + 0.007753108162432909, + 0.014399662613868713, + 0.00017380306962877512, + 0.00010063174704555422, + 0.022926636040210724, + -0.017053944990038872, + 0.004006736911833286, + -0.010646059177815914, + -0.015260315500199795, + 0.008664388209581375, + -0.0009402090217918158, + 0.007637390401214361, + -0.005695497151464224, + 0.0019437014125287533, + -0.006212612148374319, + -0.01800861954689026, + 0.00501926988363266, + 0.0018532966496422887, + -0.0046576508320868015, + -0.0033974091056734324, + -0.003977807238698006, + -0.002513251034542918, + 0.024922771379351616, + -0.0023975330404937267, + -0.0035746025387197733, + -0.000509430596139282, + -0.009293604642152786, + -0.01806647889316082, + -0.01572318747639656, + -0.0036089562345296144, + -0.012772378511726856, + 0.0012629538541659713, + 0.016692327335476875, + -0.012656659819185734, + 0.0017140733543783426, + 0.005276019219309092, + -0.0015305518172681332, + -0.007760340813547373, + 0.033500369638204575, + 0.007185366936028004, + -0.0005709058023057878, + 0.028162876144051552, + -0.0037897655274719, + 0.00963352620601654, + 0.007456581108272076, + 0.022261256352066994, + -0.01160796545445919, + 0.001326237223111093, + -0.011318670585751534, + -0.00019629123562481254, + -0.015433892607688904, + -0.01541942823678255, + -0.022116608917713165, + -0.013271411880850792, + -0.0035131273325532675, + -0.0535195916891098, + 0.0030629117973148823, + -0.027757864445447922, + 0.004639570135623217, + -0.008678852580487728, + 0.007847129367291927, + 0.0018008619081228971, + -0.027410710230469704, + 0.008548669517040253, + -0.012208253145217896, + 0.010530341416597366, + -0.019715460017323494, + -0.001083952491171658, + -0.03812909126281738, + -0.018052013590931892, + 0.011275275610387325, + -0.005764204543083906, + 0.018052013590931892, + -0.01653321459889412, + 0.005854609422385693, + -0.0034064496867358685, + 0.010949819348752499, + -0.002283623209223151, + -0.006606776732951403, + 0.011354831978678703, + -0.00642596697434783, + 0.003836776129901409, + -0.024532223120331764, + -0.010226581245660782, + -0.005934165325015783, + 0.0003247789281886071, + -0.011832169257104397, + 0.011774309910833836, + -0.006888839416205883, + 0.04579541087150574, + 0.005916084628552198, + -0.033095359802246094, + -0.01659107394516468, + -0.006169217638671398, + 0.013539009727537632, + 0.005945013836026192, + -0.018948828801512718, + -0.01659107394516468, + -0.0005627693608403206, + -0.036306533962488174, + 0.011947887018322945, + 0.021639272570610046, + -0.011955119669437408, + 4.932707088300958e-5, + -0.0046576508320868015, + -0.016764650121331215, + -0.03520721197128296, + -0.004411750007420778, + -0.010957051068544388, + 0.02242036908864975, + 0.0033070044592022896, + 0.010573735460639, + -0.016779115423560143, + 0.00015493108367081732, + -0.02294110134243965, + 0.02188517339527607, + -0.01972992531955242, + 0.005706345662474632, + -0.0001252105284947902, + 0.004324961453676224, + 0.0057027293369174, + -0.012164858169853687, + 0.00906940083950758, + 0.03257462754845619, + 0.02489384263753891, + 0.03347144275903702, + 0.020597809925675392, + -0.03575687110424042, + 0.005988408345729113, + -0.013792143203318119, + -0.0040790606290102005, + 0.01854381524026394, + -0.006834596395492554, + -0.0024445434100925922, + 0.003290731692686677, + -0.005370039958506823, + 0.009814335964620113, + 0.023042352870106697, + 0.00591970095410943, + 0.0026904442347586155, + 0.0037897655274719, + 0.0007245938177220523, + 0.008780105970799923, + -0.01585337147116661, + -0.0366826169192791, + 0.01919472962617874, + 0.014869767241179943, + -0.008208747953176498, + -7.859559991629794e-5, + 0.010826868936419487, + 0.0004043350927531719, + -0.01435626856982708, + 0.015303710475564003, + -0.016316242516040802, + 0.004491306375712156, + -0.02229018695652485, + -0.027584286406636238, + -0.026383712887763977, + 0.017025016248226166, + 0.020829245448112488, + 0.004892703145742416, + -0.03190924972295761, + -0.022507157176733017, + -0.0004845692601520568, + -0.010096398182213306, + -0.022781988605856895, + 0.013228017836809158, + 0.014609402045607567, + 0.02804715931415558, + 0.012562639079988003, + 0.009734779596328735, + -0.029218804091215134, + -0.00731193320825696, + -0.011224649846553802, + 0.023447366431355476, + -0.0012936914572492242, + 0.0008864182163961232, + 0.01231673825532198, + -0.02817734144628048, + -0.006067964248359203, + 0.014710655435919762, + -0.0014844454126432538, + -0.00454916525632143, + -0.006932233460247517, + -0.0050337347202003, + -0.022579481825232506, + 0.023997027426958084, + -0.004209243692457676, + 0.0016535022296011448, + -0.0003254569601267576, + -0.0315910242497921, + -0.02087264135479927, + 0.019223658367991447, + -0.003350398736074567, + -0.015274780802428722, + 0.01754574663937092, + -0.004690196830779314, + -0.0034028333611786366, + 0.0060462672263383865, + -0.02207321487367153, + -0.03344251215457916, + 0.013690889813005924, + 0.014486451633274555, + -0.0006513659609481692, + -0.0013036360032856464, + -0.011709218844771385, + -0.008288304321467876, + 0.007622925564646721, + 0.031099222600460052, + -0.013531778007745743, + 0.026267994195222855, + 0.02367880381643772, + -0.011730915866792202, + -0.008187050931155682, + -0.015824440866708755, + -0.002771808532997966, + 0.020062614232301712, + -0.0001808094239095226, + 0.011622429825365543, + -0.012714519165456295, + -0.0012412567157298326, + 0.01024104654788971, + 0.006639322265982628, + -0.0025873829144984484, + -0.011622429825365543, + 0.010790706612169743, + 0.01887650415301323, + -0.01592569425702095, + 0.007890523411333561, + 0.006205379497259855, + -0.02602209337055683, + -0.009879427030682564, + 0.006208995822817087, + -0.0003656870685517788, + -0.014942090958356857, + 0.004545548930764198, + 0.0005040062824264169, + 0.003189478302374482, + -0.007977312430739403, + 0.0007196215447038412, + -0.033355724066495895, + 0.006093277595937252, + 0.020901570096611977, + -0.003184054046869278, + 0.006436815485358238, + 0.009749244898557663, + 0.008693316951394081, + 0.0019147718558087945, + -0.011260811239480972, + 0.009821568615734577, + -0.012945955619215965, + 0.014443057589232922, + -0.016952691599726677, + -0.003628845326602459, + 0.007709714118391275, + 0.002037722384557128, + -0.00986496265977621, + -0.023722197860479355, + -0.017820578068494797, + -0.01405250933021307, + -0.0060462672263383865, + 0.01405250933021307, + -0.018370237201452255, + -0.003486005822196603, + 0.0030954573303461075, + 0.0009248402202501893, + 0.0005659335292875767, + 0.008056867867708206, + -0.0011137861292809248, + 0.0024535839911550283, + 0.01034229900687933, + 0.008461881428956985, + -0.01541942823678255, + -0.02120533026754856, + 0.015578540042042732, + -0.0009989721002057195, + -0.022376975044608116, + 0.003560137702152133, + 0.010031307116150856, + -0.005742507521063089, + 0.01438519824296236, + 0.01536156889051199, + -0.014660028740763664, + 0.006371724419295788, + -0.0007580435485579073, + 0.013719819486141205, + 0.01536156889051199, + -0.013958487659692764, + -0.0046034082770347595, + 0.006259622517973185, + 0.008179818280041218, + 0.016055878251791, + -0.013951255939900875, + 0.00877287331968546, + -0.014240550808608532, + 0.0007571394671685994, + 0.00932976696640253, + 0.0030430227052420378, + 0.015448357909917831, + 0.002567493822425604, + -0.008237677626311779, + -0.0027284142561256886, + 0.006689948961138725, + -0.008606528863310814, + -0.018862038850784302, + -0.040790606290102005, + 0.027743399143218994, + -0.03190924972295761, + 0.0318513885140419, + 0.01207807008177042, + -0.0022112992592155933, + 0.005149452481418848, + -0.001554961083456874, + 0.010595432482659817, + 0.03807123377919197, + -0.01933937706053257, + 0.0028585970867425203, + 0.00960459653288126, + 4.938357596984133e-5, + 0.003393793012946844, + -0.021104076877236366, + -0.00013956228212919086, + -0.0011806855909526348, + 0.006928617134690285, + 0.007268539164215326, + 0.0065308366902172565, + 0.015969088301062584, + -0.005171149503439665, + -0.03078099712729454, + -0.03943092003464699, + -0.017516817897558212, + 0.013466686010360718, + -0.02221786230802536, + 0.004151384346187115, + -0.006729727145284414, + 0.004335809964686632, + -0.0037391390651464462, + 0.016764650121331215, + -0.013748749159276485, + -0.005015653558075428, + -0.0036234210710972548, + -0.019961360841989517, + 0.004277951084077358, + -0.02548689767718315, + 0.0031334273517131805, + -0.006859909743070602, + 0.010703918524086475, + 0.016706790775060654, + -0.002140783704817295, + -0.03711656108498573, + -0.013661960139870644, + 0.018572743982076645, + 0.002972506918013096, + -0.01867399737238884, + -0.0030014365911483765, + 0.011882795952260494, + -0.024373110383749008, + -0.013329271227121353, + 0.0074348836205899715, + 0.002675979631021619, + -0.025588151067495346, + 0.012490315362811089, + -0.04003844037652016, + 3.4664557460928336e-5, + -0.0011002253741025925, + -0.009980680420994759, + 0.005398969631642103, + 0.017632534727454185, + 0.01646088995039463, + 0.008404022082686424, + 0.017835041508078575, + 0.004176697693765163, + -0.034021101891994476, + 0.004574478603899479, + 0.012902560643851757, + -0.013690889813005924, + -0.02168266661465168, + -0.0016788155771791935, + 0.002137167379260063, + -0.01646088995039463, + 0.008845197036862373, + 0.010530341416597366, + 0.005662951152771711, + -0.019657600671052933, + 0.012555406428873539, + -0.010197651572525501, + 0.030260266736149788, + -0.025255460292100906, + 0.013206320814788342, + -0.021393371745944023, + 0.012099767103791237, + -0.023577550426125526, + 0.010920889675617218, + -0.007760340813547373, + -0.0011734531726688147, + -0.003187670139595866, + -0.009517808444797993, + 0.0030249417759478092, + -0.015216921456158161, + 0.017314311116933823, + -0.0005098825786262751, + 0.01819666102528572, + 0.005348342936486006, + 0.022232327610254288, + 0.003146084025502205, + 0.004567246418446302, + -0.013061673380434513, + -0.013387130573391914, + 0.021841779351234436, + -0.0236932672560215, + 0.01780611276626587, + 0.007507207337766886, + 0.0046034082770347595, + -0.022565016523003578, + 0.0016571184387430549, + 0.0033739039208739996, + -0.00540620181709528, + 0.0029779314063489437, + -0.005243473686277866, + -0.012367364950478077, + -0.0017891093157231808, + -0.0002504210569895804, + 0.0038403922226279974, + -0.007904988713562489, + -0.006378956604748964, + 0.008592064492404461, + 0.00048321319627575576, + 0.013893396593630314, + 0.00889582373201847, + -0.009749244898557663, + -0.0024644325021654367, + 0.0009311685571447015, + -0.018052013590931892, + 0.020192796364426613, + 0.014754049479961395, + 0.04136919602751732, + 0.01839916780591011, + 0.011499479413032532, + -0.013184623792767525, + -0.018254520371556282, + -0.01405250933021307, + 0.003222024068236351, + -0.0002375383919570595, + -0.02302788943052292, + -0.008461881428956985, + 0.008020706474781036, + -0.006538068875670433, + 0.00495056202635169, + 0.0032762668561190367, + 0.010089166462421417, + 0.020988358184695244, + 0.011231881566345692, + 0.008758408948779106, + -0.012512012384831905, + 0.027743399143218994, + 0.016822509467601776, + -0.007264922838658094, + -0.004194778855890036, + -0.007941150106489658, + 0.02476365864276886, + 0.021523553878068924, + 0.0015314558986574411, + -0.04732867702841759, + 0.01745895855128765, + 0.007290236186236143, + -0.012461385689675808, + 0.008671619929373264, + -0.030231336131691933, + 0.008816267363727093, + 0.009987913072109222, + 0.02797483466565609, + 0.005514687392860651, + 0.007601228542625904, + -0.0034136821050196886, + -0.011036607436835766, + -0.0397491455078125, + -0.0075795310549438, + 0.022593947127461433, + 0.019686531275510788, + -0.028596820309758186, + 0.011861098930239677, + 0.004476841539144516, + 0.004050131421536207, + -0.015014414675533772, + 0.011984049342572689, + 0.020959429442882538, + 0.00877287331968546, + -0.004513003397732973, + 0.0017764526419341564, + 0.01573765277862549, + -0.007000941317528486, + -0.0008272031554952264, + -0.02081478200852871, + -0.005764204543083906, + -0.010385693982243538, + 0.02683211863040924, + -0.009054936468601227, + 0.011239114217460155, + 0.015549611300230026, + -0.0023197850678116083, + -0.011434388346970081, + -0.00027573437546379864, + -0.00012600157060660422, + 0.0024590082466602325, + -0.015101203694939613, + 0.01033506728708744, + 0.004925248678773642, + -0.016084806993603706, + -0.012034676037728786, + -0.0024680488277226686, + -0.005091593600809574, + 0.0019274285295978189, + -0.017748253419995308, + -0.01939723640680313, + -0.009423787705600262, + -0.0023215929977595806, + 0.004975875373929739, + -0.0014654604019597173, + 0.0017854931065812707, + 0.014927626587450504, + -0.006650170776993036, + 0.012671125121414661, + -0.009293604642152786, + 0.00018397359235677868, + 0.009908356703817844, + -0.02375112660229206, + -0.009785406291484833, + -0.011116163805127144, + 0.01411760039627552, + 0.01852934993803501, + -0.009206816554069519, + -0.005268786568194628, + 0.013748749159276485, + 0.015274780802428722, + 0.010450785048305988, + 0.006747807841747999, + 0.006035418715327978, + -0.0068418290466070175, + 0.023244859650731087, + 0.013625798746943474, + -0.020641203969717026, + -0.011716451495885849, + -0.02289770543575287, + -0.019628671929240227, + -0.01016872189939022, + 0.003393793012946844, + 0.016055878251791, + -0.02690444327890873, + 0.014638331718742847, + -0.001494389958679676, + 0.004860157612711191, + 0.023273790255188942, + 0.008592064492404461, + 0.040790606290102005, + 0.03153316304087639, + -0.00027980259619653225, + 0.02690444327890873, + 0.016142666339874268, + 0.00014871575694996864, + 0.014782979153096676, + -0.012201020494103432, + -0.002912839874625206, + 0.025255460292100906, + -0.014999950304627419, + 0.002269158372655511, + 0.007485510315746069, + 0.0023197850678116083, + 0.01980224810540676, + 0.009091097861528397, + -0.011694753542542458, + 0.004936097655445337, + 0.026065487414598465, + -0.0017014166805893183, + 0.012041907757520676, + -0.00933699868619442, + -0.015115668065845966, + 0.024329716339707375, + 0.004227324388921261, + -0.0004922536900267005, + 0.009315301664173603, + -0.009235745295882225, + 0.001663446775637567, + 0.004371971823275089, + -0.0032111755572259426, + 0.008404022082686424, + -0.013481151312589645, + -0.026918908581137657, + 0.004140535835176706, + 0.0034661167301237583, + -0.005934165325015783, + 0.015636399388313293, + -0.001048694713972509, + -0.003959726542234421, + 0.00012679261271841824, + -0.013228017836809158, + 0.004961410537362099, + -0.002176945563405752, + 0.0006662827217951417, + 0.015896765515208244, + -0.00859929621219635, + 0.009344231337308884, + 0.0007969175348989666, + 0.014840837568044662, + 0.01194065436720848, + -0.008997077122330666, + -0.010559271089732647, + -0.02221786230802536, + 0.001084856572560966, + -0.0075144399888813496, + 0.003869321895763278, + 0.02007707953453064, + 0.01237459760159254, + 0.02055441588163376, + -0.006411502603441477, + -0.00414776848629117, + 0.0065886955708265305, + 0.03685619309544563, + 0.02289770543575287, + 0.00603903504088521, + 0.004364739637821913, + 0.003364863572642207, + -0.0002454488130751997, + 0.007753108162432909, + 0.015404962934553623, + 0.018818644806742668, + 0.009676920250058174, + 0.0093659283593297, + -0.009915589354932308, + -0.011260811239480972, + -0.03271927312016487, + -0.0026615147944539785, + 0.0012783226557075977, + -0.0015640015481039882, + -0.018153266981244087, + -0.0031967107206583023, + -0.0008362436201423407, + 0.020424233749508858, + 0.0029761232435703278, + 0.010197651572525501 + ], + "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1": [ + -0.025494065135717392, + -0.0229032039642334, + -0.0027574156410992146, + 0.028381023555994034, + -0.013043130747973919, + -0.004363748710602522, + 0.004334139171987772, + 0.016996042802929878, + -0.033429499715566635, + 0.03304457291960716, + -0.010829796083271503, + 0.02533121034502983, + 0.01419791392982006, + -0.018476534634828568, + 0.001907983561977744, + 0.03727877885103226, + -0.012710019946098328, + 0.011903151869773865, + 0.005388989113271236, + -0.010541100054979324, + 0.045865628868341446, + -0.010644734837114811, + -0.04992217570543289, + 0.01686279848217964, + 0.03997327387332916, + -0.014634659513831139, + -0.018372900784015656, + 0.006710328161716461, + -0.028928805142641068, + -0.0006699224468320608, + -0.02386552467942238, + 0.03381442651152611, + -0.00072081433609128, + -0.007506092078983784, + 0.027848046272993088, + -0.02385071851313114, + -0.0005611988599412143, + 0.022695936262607574, + -0.03239315748214722, + -0.008416594937443733, + -0.01954248920083046, + 0.04231245070695877, + -0.009749037213623524, + -0.030971882864832878, + -0.036775410175323486, + 0.004241608548909426, + -0.037870973348617554, + 0.0025649515446275473, + 0.03351832926273346, + -0.04056546837091446, + 0.026545213535428047, + 0.019572097808122635, + -0.002824037568643689, + 0.04015093296766281, + 0.02102298103272915, + -0.011125894263386726, + -0.009068011306226254, + 0.029269319027662277, + 0.007269213441759348, + -0.05412677302956581, + -0.004278620705008507, + -0.041394542902708054, + -0.017129287123680115, + 0.01630021259188652, + 0.012998715974390507, + -0.012850666418671608, + -0.006421632133424282, + -0.005314964801073074, + -0.0386408306658268, + 0.01150341983884573, + -0.017913948744535446, + 0.004100961610674858, + -0.018891071900725365, + -0.014767903834581375, + 0.0294765867292881, + -0.046842753887176514, + 0.07639336585998535, + 0.01726253144443035, + -0.001213077805005014, + -0.025923406705260277, + -0.00815010629594326, + -0.02402837760746479, + -0.010666942223906517, + -0.023658255115151405, + 0.07260330766439438, + -0.021037785336375237, + -0.06241752579808235, + -0.03123837150633335, + -0.013938828371465206, + -0.01840250939130783, + 0.003166401293128729, + -0.0011584846070036292, + 0.013931425288319588, + -0.0131837772205472, + -0.022710740566253662, + 0.01767706871032715, + 0.024383695796132088, + 0.009845268912613392, + -0.02738909423351288, + -0.0422828383743763, + -0.018757827579975128, + -0.024502135813236237, + -0.01828407123684883, + -0.006636303383857012, + 0.00022068577527534217, + 0.026056651026010513, + 0.022296203300356865, + 0.0039640162140131, + -0.01354649756103754, + 0.04471084475517273, + -0.037515655159950256, + -0.03180095925927162, + 0.06703665852546692, + -0.006695522926747799, + -0.060463275760412216, + -0.0380486324429512, + 0.006910194642841816, + -0.004722767975181341, + -0.0017913947813212872, + -0.025005502626299858, + 0.03180095925927162, + 0.01800277829170227, + 0.015530356205999851, + 0.03117915242910385, + 0.0050558787770569324, + 0.019098341464996338, + 0.005148409400135279, + 0.03289652243256569, + 0.03846317157149315, + -0.0014323756331577897, + -0.007232201285660267, + 0.036893848329782486, + 0.014308950863778591, + 0.01641865074634552, + -0.007317329756915569, + 0.027640778571367264, + 0.02272554486989975, + 0.06407567858695984, + -0.0224886666983366, + -0.0031275383662432432, + -0.04633938521146774, + -0.009164243005216122, + -0.020475197583436966, + -0.004537706729024649, + 0.001019688555970788, + 0.011525627225637436, + -0.03067578561604023, + 0.036331262439489365, + -0.04705002158880234, + 0.03301496058702469, + -0.015767235308885574, + -0.004071351606398821, + -0.021319078281521797, + 0.00829075276851654, + 0.004463681951165199, + 0.00015186604287009686, + -0.01834329031407833, + 0.022962424904108047, + 0.020549222826957703, + 0.04628016799688339, + 0.006588187534362078, + -0.0694054439663887, + 0.024724209681153297, + 0.011718090623617172, + 0.013339228928089142, + 0.007176682818681002, + -0.0062032598070800304, + 0.026056651026010513, + -0.02402837760746479, + 0.028943609446287155, + 0.004737573210150003, + -0.031208762899041176, + -4.398101009428501e-5, + 0.0006819514092057943, + -0.007295122370123863, + 0.01326520461589098, + 0.022236984223127365, + -0.000476995890494436, + 0.03470272198319435, + 0.013309619389474392, + -0.05021827295422554, + 0.010267209261655807, + 0.0068398709408938885, + -0.0056665814481675625, + 0.00883113220334053, + 0.007321030832827091, + -0.0062032598070800304, + -0.01828407123684883, + -0.012628593482077122, + -0.014975172467529774, + -0.006299491506069899, + -0.02328813262283802, + 0.008823730051517487, + 0.017129287123680115, + -0.052172522991895676, + -0.019453659653663635, + 0.040980007499456406, + -0.04148337244987488, + -0.0050521777011454105, + 0.013198582455515862, + -0.026278724893927574, + -0.011000052094459534, + -0.0636611357331276, + -0.0007680050330236554, + -0.02136349305510521, + 0.01619657874107361, + -0.01795836351811886, + -0.012769239954650402, + 0.05471896752715111, + 0.006906493101269007, + 0.0762157067656517, + -0.048323243856430054, + 0.01340585108846426, + -0.026382360607385635, + -0.0095121581107378, + 0.004937439225614071, + 0.025301601737737656, + 0.035531796514987946, + -0.004500694572925568, + -0.005803526844829321, + -0.021733615547418594, + -0.03896653652191162, + -0.03653853386640549, + -0.021156225353479385, + -0.05042554438114166, + 0.013131960295140743, + -0.005181720480322838, + 0.024472525343298912, + 0.00147679029032588, + -0.005244641564786434, + 0.0028906597290188074, + 0.004937439225614071, + 0.02693014219403267, + -0.019498074427247047, + 0.00494114076718688, + 0.03055734559893608, + 0.019616512581706047, + 0.011843932792544365, + 0.017129287123680115, + -0.015885675325989723, + 0.019039122387766838, + 0.022858789190649986, + -0.004023235756903887, + -0.014656866900622845, + -0.014849330298602581, + 0.004100961610674858, + 0.016744360327720642, + 0.025582894682884216, + 0.017055263742804527, + -0.014397780410945415, + -0.015708016231656075, + -0.016448261216282845, + -0.011140699498355389, + -0.0028147846460342407, + -0.0388777069747448, + 0.07876215130090714, + 0.022962424904108047, + -0.031564079225063324, + -0.00590716116130352, + 0.005537038668990135, + 0.031090322881937027, + 0.029224904254078865, + 0.026027042418718338, + 0.01434596348553896, + 0.026382360607385635, + 0.008298154920339584, + 0.0193204153329134, + -0.02130427397787571, + 0.024516940116882324, + 0.03692346066236496, + 0.023732280358672142, + -0.007328433450311422, + -0.0024076495319604874, + -0.0038381745107471943, + -0.026560019701719284, + -0.006806559860706329, + -0.035472579300403595, + -0.012058603577315807, + -0.013820389285683632, + -0.004715365823358297, + -0.04148337244987488, + -0.0454510897397995, + 0.03739721700549126, + 0.031327202916145325, + 0.013627924956381321, + 0.012243665754795074, + -0.002439109841361642, + -0.024457721039652824, + -0.04705002158880234, + -0.010385648347437382, + -0.007913227193057537, + -0.0193204153329134, + 0.029979953542351723, + 0.03123837150633335, + 0.028558682650327682, + 0.019409244880080223, + -0.020193904638290405, + -0.0034532465506345034, + -0.0012574925785884261, + 0.010222794488072395, + -0.04130571335554123, + 0.024442916736006737, + 0.032008226960897446, + -0.023214107379317284, + -0.027122605592012405, + -0.02596782147884369, + 0.03079422563314438, + 0.027818435803055763, + -0.01714409328997135, + 0.029284123331308365, + 0.032185886055231094, + -0.012561971321702003, + -0.008090886287391186, + 0.002211484359577298, + 0.015515551902353764, + 0.027226239442825317, + -0.025153551250696182, + 0.010615124367177486, + -0.03316301107406616, + -0.0029332239646464586, + -0.011000052094459534, + -0.002990592969581485, + -0.029743075370788574, + 0.0028647512663155794, + 0.004541407804936171, + -0.05386028438806534, + 0.00832036230713129, + -0.02294761873781681, + 0.019335219636559486, + -0.019098341464996338, + -0.033370278775691986, + -0.023199303075671196, + -0.02561250515282154, + -0.011170309036970139, + -0.012169640511274338, + -0.04074312746524811, + -0.0555480420589447, + -0.018091607838869095, + -0.031090322881937027, + -0.0030775717459619045, + -0.05652516707777977, + -0.036953069269657135, + -0.01070395391434431, + -0.012909886427223682, + -0.01641865074634552, + -0.025538479909300804, + 0.002600113395601511, + 0.028662316501140594, + 0.0019042822532355785, + -0.013857400976121426, + 0.000907726411242038, + -0.0021522645838558674, + 0.07153735309839249, + -0.012665605172514915, + 0.03964756429195404, + -0.02761116810142994, + -0.002962833736091852, + 0.02294761873781681, + -0.00012653577141463757, + 0.012487946078181267, + 0.033992085605859756, + -0.08598694950342178, + -0.01337624154984951, + -0.04237166792154312, + 0.00702863372862339, + -0.006795456167310476, + -0.016152163967490196, + -0.03203783929347992, + -0.016315016895532608, + 0.01573762483894825, + 0.0034847070928663015, + -0.011496016755700111, + 0.01693682372570038, + 0.008527631871402264, + 0.017395775765180588, + -0.02466498874127865, + 0.010185781866312027, + -0.0027703698724508286, + -0.029224904254078865, + 0.025420039892196655, + -0.031889788806438446, + 0.02459096536040306, + 0.043763332068920135, + -0.012428727000951767, + 0.02266632579267025, + 0.010030330158770084, + 0.013413253240287304, + -0.052290961146354675, + -0.017188508063554764, + 0.004341541323810816, + -0.03027605265378952, + 0.004041742067784071, + -0.037693314254283905, + -0.002681540325284004, + -0.027966486290097237, + -0.003079422516748309, + 0.02550886943936348, + 0.014175706543028355, + 0.009489950723946095, + -0.021911274641752243, + 0.015574770979583263, + 0.0012491648085415363, + 0.00019570247968658805, + -0.009845268912613392, + -0.004204595927149057, + -0.030024368315935135, + -0.005525934975594282, + -0.01456803735345602, + 0.017484605312347412, + -0.011251735500991344, + 0.02556809037923813, + -0.03111993335187435, + -0.014271939173340797, + 0.013383643701672554, + 0.004448877181857824, + 0.03236354514956474, + 0.0021763225086033344, + 0.028440242633223534, + -0.025079527869820595, + -0.005263147410005331, + 0.010059940628707409, + 0.023554621264338493, + -0.012391714379191399, + 0.014804915525019169, + -0.026900531724095345, + 0.016463065519928932, + 0.03357755020260811, + -0.003893692744895816, + 0.014686476439237595, + -0.0004580270906444639, + 0.018328486010432243, + 0.013753767125308514, + -0.029165683314204216, + -0.00501146400347352, + -0.04124649614095688, + -0.031445641070604324, + 0.015619185753166676, + 0.00644754059612751, + -0.028617901727557182, + -0.042638156563043594, + -0.00863866787403822, + 0.017070068046450615, + -0.012784045189619064, + -0.015263868495821953, + -0.011207321658730507, + -0.025420039892196655, + -0.004001028370112181, + 0.04515499249100685, + 0.012273275293409824, + -0.004541407804936171, + -0.007135969586670399, + 0.05688048526644707, + -0.01766226440668106, + 0.010126562789082527, + 0.01542672235518694, + -0.04453318566083908, + 0.010415257886052132, + -0.037130728363990784, + -0.0035661340225487947, + -0.04391137883067131, + 0.018876267597079277, + 0.016211383044719696, + 0.05442287027835846, + -0.01156263891607523, + 0.02198529988527298, + -0.029491392895579338, + 0.009571378119289875, + 0.017114482820034027, + 0.023051254451274872, + -0.01366493757814169, + -0.025183161720633507, + 0.015545161440968513, + -0.06472709029912949, + -0.011199918575584888, + 0.029521001502871513, + -0.009201254695653915, + -0.006606693845242262, + -0.023791499435901642, + 0.019187171012163162, + 0.0001342852192465216, + -0.03239315748214722, + -0.014494012109935284, + 0.029002830386161804, + 0.01669994555413723, + -0.03221549838781357, + 0.019098341464996338, + 0.0032404258381575346, + -0.06739197671413422, + -0.041779473423957825, + 0.026722872629761696, + -0.006673315539956093, + 0.01351688802242279, + 0.013354034163057804, + 0.04702041298151016, + 0.0243096724152565, + 0.009001389145851135, + 0.0011455303756520152, + -0.005903460085391998, + 0.02044558897614479, + 0.0037308386527001858, + 0.013894413597881794, + -0.0386408306658268, + 0.00735434191301465, + -0.02839582785964012, + -0.008683082647621632, + 0.03339989110827446, + -0.004567316733300686, + -0.01914275623857975, + -0.013650132343173027, + -0.030971882864832878, + -0.04287503659725189, + 0.0313568115234375, + -0.04707963019609451, + 0.00929008424282074, + 0.009919293224811554, + 0.0114516019821167, + -0.009549170732498169, + -0.009105022996664047, + 0.037456437945365906, + 0.02164478600025177, + 0.0054000928066670895, + -0.005577751901000738, + -0.004448877181857824, + 0.025257186964154243, + -0.002614918164908886, + -0.0097194267436862, + -0.014753098599612713, + -0.007395055610686541, + -0.017114482820034027, + -0.0263675544410944, + -0.022814374417066574, + -0.00752829946577549, + -0.012954301200807095, + 0.015382307581603527, + 0.02897321991622448, + -0.004611731041222811, + -0.03245237469673157, + 0.027907265350222588, + 0.025864187628030777, + 0.02106739580631256, + -0.009652805514633656, + 0.0278924610465765, + -0.008105691522359848, + -0.02140790782868862, + -0.025982627645134926, + -0.01822485215961933, + -0.001758083701133728, + 0.019838586449623108, + 0.008771912194788456, + -0.009334499016404152, + -0.029180489480495453, + 0.03721955791115761, + -0.01954248920083046, + 0.014960367232561111, + 0.001920937793329358, + -0.0420459620654583, + 0.01972014829516411, + 0.005007762927561998, + 0.0032034136820584536, + -0.042223621159791946, + -0.025775358080863953, + 0.004404462408274412, + 0.00860905833542347, + 0.009963707998394966, + -0.026101065799593925, + 0.02715221606194973, + -0.04032859206199646, + -0.013857400976121426, + 0.024043183773756027, + 0.020016245543956757, + -0.0008466560975648463, + 0.00548152020201087, + 0.04136493429541588, + -0.006047808099538088, + -0.018106412142515182, + 0.001305608544498682, + -0.0059478748589754105, + -0.028928805142641068, + -0.03425857424736023, + 0.005548142362385988, + 0.01704045757651329, + -0.006410528440028429, + 0.03813746199011803, + -0.04077273979783058, + 0.02807012014091015, + -0.01294689904898405, + -0.006114430259913206, + -0.029269319027662277, + -0.01635943166911602, + 0.03021683357656002, + 0.01315416768193245, + 0.005662880372256041, + -0.026619238778948784, + -0.005263147410005331, + -0.0159152839332819, + 0.027477923780679703, + -0.013339228928089142, + -0.012909886427223682, + 0.0027500130236148834, + 0.033488720655441284, + 0.014812318608164787, + 0.042638156563043594, + -0.02867712266743183, + -0.0263083353638649, + -0.04260854795575142, + 0.035472579300403595, + -0.02142271399497986, + 0.01031162403523922, + -0.003364417003467679, + 0.00991189107298851, + 0.0413353256881237, + -0.02362864464521408, + 0.021955689415335655, + -0.023702669888734818, + 0.032126668840646744, + 0.022311007604002953, + -0.0064956569112837315, + 0.04038780927658081, + 0.022340618073940277, + -0.03514686971902847, + 0.03739721700549126, + -0.0042231022380292416, + 0.06425333768129349, + -0.006484553217887878, + -0.0017127436585724354, + 0.04764221981167793, + -0.04266776889562607, + 0.017706679180264473, + -0.022177763283252716, + -0.00641793105751276, + -0.023895133286714554, + -0.015308283269405365, + -0.016255797818303108, + -0.018254460766911507, + 0.03810785338282585, + 0.011399785056710243, + 0.039736393839120865, + 0.007502391003072262, + -0.008231532759964466, + 0.02737428992986679, + -0.006077418103814125, + -0.01806199736893177, + 0.03079422563314438, + 0.028440242633223534, + -0.01354649756103754, + 0.0008554465603083372, + 0.011051869951188564, + 0.028943609446287155, + 0.021718811243772507, + 0.027537142857909203, + -0.03227471560239792, + 0.018876267597079277, + -0.01113329641520977, + 0.0345250628888607, + 0.00421569962054491, + -0.007061944808810949, + -0.02663404308259487, + 0.012813654728233814, + -0.021911274641752243, + -0.019616512581706047, + 0.02158556692302227, + -0.043319184333086014, + 0.024916673079133034, + 0.022814374417066574, + 0.04488850384950638, + 0.028988024219870567, + -0.025716139003634453, + 0.016714749857783318, + 0.0059848870150744915, + 0.0769263431429863, + -0.0027833241038024426, + -0.011718090623617172, + 0.014901148155331612, + 0.009593585506081581, + 0.012140030972659588, + -0.015471137128770351, + 0.007076749578118324, + 0.015515551902353764, + 0.006725132931023836, + 0.005581453442573547, + 0.00033704316592775285, + -0.02311047352850437, + -0.02044558897614479, + 0.02368786558508873, + 0.008461009711027145, + -0.010578112676739693, + 0.0032293221447616816, + -0.012169640511274338, + -0.012769239954650402, + -0.039173807948827744, + 0.0020319747272878885, + 0.023051254451274872, + 0.011710688471794128, + -0.002492777770385146, + -0.020356759428977966, + 0.03414013609290123, + -0.020549222826957703, + 0.0048486096784472466, + -0.013553900644183159, + 0.001026165671646595, + -0.04829363524913788, + 0.007406159304082394, + -0.018210045993328094, + -0.020874930545687675, + 0.012961703352630138, + 0.030290856957435608, + -0.01966092735528946, + -0.029669051989912987, + -0.01874302327632904, + -0.040654297918081284, + 0.01286547165364027, + 0.006010795943439007, + -0.010570709593594074, + 0.006695522926747799, + 0.0068102614022791386, + -0.0077207633294165134, + -0.038374342024326324, + -0.000632910174317658, + -0.023436181247234344, + -0.004108364228159189, + -0.019853392615914345, + 0.01812121644616127, + -0.0018950292142108083, + -0.051728375256061554, + 0.004271218087524176, + -0.00026533185155130923, + 0.009008791297674179, + -0.003912198822945356, + -0.010141367092728615, + 0.0019042822532355785, + 0.042638156563043594, + -0.0028203364927321672, + -0.0006421632133424282, + 0.0007175757782533765, + 0.026441579684615135, + -0.025997431948781013, + 0.008053874596953392, + 0.009549170732498169, + 0.01828407123684883, + 0.024679794907569885, + 0.006269881967455149, + -0.013509485870599747, + 0.007913227193057537, + -0.014116487465798855, + 0.003103480441495776, + -0.005503727588802576, + -0.002389143221080303, + 0.013887010514736176, + 0.009075413458049297, + 0.0022799570579081774, + -0.001657225308008492, + -0.020179100334644318, + -0.0023595334496349096, + -0.02801090106368065, + 0.003575387177988887, + 0.018372900784015656, + -0.0020449289586395025, + -0.011096284724771976, + -0.012132628820836544, + 0.03662735968828201, + -0.01886146329343319, + 0.014471804723143578, + -0.004356346558779478, + -0.034110527485609055, + -0.0032903924584388733, + -0.0131837772205472, + 0.007994654588401318, + 0.008623863570392132, + 0.036094386130571365, + -0.0022781065199524164, + 0.041039224714040756, + 0.0014915952924638987, + 0.01383519358932972, + 0.006602992303669453, + -0.036272045224905014, + -0.033932868391275406, + -0.019957026466727257, + 0.0027611167170107365, + 0.019616512581706047, + -0.0076541416347026825, + -0.0174994096159935, + -0.04906349256634712, + 0.04080234840512276, + -0.00042379071237519383, + -0.00288325734436512, + -0.003455097321420908, + 0.014819720759987831, + -0.0039196014404296875, + -0.006129235029220581, + -0.006962011568248272, + 0.017173701897263527, + 0.016166968271136284, + 0.002298463135957718, + -0.005785020999610424, + 0.017706679180264473, + 0.024975892156362534, + 0.004056546837091446, + -0.00917904730886221, + -0.009068011306226254, + 0.006665913388133049, + -0.0004959646612405777, + -0.028144145384430885, + 0.028706731274724007, + 0.030024368315935135, + -0.0042008948512375355, + -0.04391137883067131, + -0.010777978226542473, + 0.004363748710602522, + -0.02913607470691204, + 0.01788433827459812, + -0.01669994555413723, + 0.012909886427223682, + -0.011111089028418064, + 0.016996042802929878, + -0.009741634130477905, + -0.009386316873133183, + 0.019127951934933662, + 0.024102402850985527, + 0.01261378824710846, + 0.017025653272867203, + -0.020327148959040642, + 0.005451910197734833, + 0.01300611812621355, + -0.008646070957183838, + 7.772581011522561e-5, + -0.0006565054645761847, + 0.010274611413478851, + -0.005525934975594282, + 0.02158556692302227, + 0.012332494370639324, + -0.0026889427099376917, + -0.025775358080863953, + -0.03111993335187435, + 0.05788721889257431, + -0.007839202880859375, + 0.0262491162866354, + -0.05463013797998428, + 0.02448733150959015, + -0.058035269379615784, + -0.011510821990668774, + -0.0030387090519070625, + -0.013131960295140743, + -0.0022799570579081774, + 0.0003902483149431646, + 0.007876215502619743, + 0.02743350900709629, + 0.00616254610940814, + 0.010474477894604206, + -0.003975119907408953, + 0.017232922837138176, + 0.02805531583726406, + -0.0035087650176137686, + 0.048530515283346176, + 0.011096284724771976, + 0.013479875400662422, + 0.010156172327697277, + -0.008142703212797642, + 0.004178687464445829, + 0.002742610638961196, + -0.008357374928891659, + 0.001657225308008492, + -0.013539095409214497, + -0.01806199736893177, + -0.005074385087937117, + 0.00886074174195528, + 0.00414537638425827, + 0.012132628820836544, + -0.0029868916608393192, + 0.012021591886878014, + 0.03248198330402374, + -0.005289056338369846, + 6.026063419994898e-5, + 0.03366637974977493, + 0.004082455299794674, + -0.002122654812410474, + -0.008135301060974598, + 0.016551895067095757, + -0.03254120424389839, + -0.02244425192475319, + 0.015589576214551926, + 0.0008832057355903089, + -0.011510821990668774, + -0.02657482400536537, + 0.0023502802941948175, + -0.030039174482226372, + 0.022681130096316338, + 0.009142035618424416, + -0.001224181498400867, + -0.008542436175048351, + 0.02152634784579277, + -0.0029202697332948446, + 0.022014910355210304, + -0.009845268912613392, + -0.04669470340013504, + -0.018772633746266365, + 0.011570041999220848, + 0.00342363677918911, + 0.012117823585867882, + -0.00800945982336998, + 0.008268545381724834, + 0.005285354796797037, + -0.03091266378760338, + -0.01624099165201187, + -0.00923086516559124, + 0.035413358360528946, + -0.02078610099852085, + -0.006684419233351946, + -0.008653473109006882, + 0.02801090106368065, + -0.011066674254834652, + 0.009586183354258537, + 0.02010507509112358, + 0.0030202027410268784, + -0.009489950723946095, + 0.015648795291781425, + -0.014656866900622845, + 0.014183109626173973, + -0.020371563732624054, + 0.015352698042988777, + -0.033429499715566635, + 0.008594254031777382, + -0.004981853999197483, + 0.005688788834959269, + 0.017751093953847885, + -0.024161621928215027, + -0.0030424101278185844, + -0.021911274641752243, + 0.01210301835089922, + 0.007646739017218351, + -0.0016562999226152897, + -0.005733203608542681, + -0.0021189535036683083, + -0.002211484359577298, + 0.010082148015499115, + 0.0032792887650430202, + -0.019779367372393608, + -0.021852055564522743, + -0.028617901727557182, + -0.04891544207930565, + -0.01647787168622017, + 0.0029794892761856318, + -0.011799518018960953, + -0.0019894104916602373, + -0.024161621928215027, + 0.01020058710128069, + -0.015530356205999851, + -0.00031506712548434734, + 0.032185886055231094, + -0.008461009711027145, + -0.021289469674229622, + 0.004604328889399767, + 0.014923354610800743, + -0.0056665814481675625, + 0.01601891964673996, + 0.016092943027615547, + -0.0009808256290853024, + -0.010185781866312027, + -0.009556572884321213, + -0.001037269365042448, + 0.007950239814817905, + -0.020031051710247993, + -0.009075413458049297, + 0.016344627365469933, + 0.004656145814806223, + -0.04453318566083908, + 0.019557293504476547, + -0.02937295287847519, + 0.004874518606811762, + -0.019098341464996338, + -0.0189058780670166, + -0.017025653272867203, + -0.014590244740247726, + -0.007291420828551054, + -0.01760304532945156, + -0.02152634784579277, + -0.024783428758382797, + -0.01960170827805996, + -0.01669994555413723, + -0.004833804909139872, + 0.007472780998796225, + 0.002589009702205658, + -0.014494012109935284, + -0.0038714853581041098, + -0.048204805701971054, + 0.02140790782868862, + -0.01226587314158678, + -0.010474477894604206, + -0.006421632133424282, + -0.008794119581580162, + 0.021378299221396446, + -0.008986583910882473, + -0.031149541959166527, + 0.003856680588796735, + 0.003103480441495776, + 0.003490258939564228, + 0.015234258025884628, + -0.019009511917829514, + -0.02772960625588894, + -0.006484553217887878, + -0.04776065796613693, + -0.0032052642200142145, + -0.00917904730886221, + -0.02857348695397377, + 0.039173807948827744, + 0.03384403884410858, + 0.002146712737157941, + 0.020712077617645264, + 0.0260122362524271, + 0.00403433945029974, + 0.013109752908349037, + -0.0227847658097744, + -0.019098341464996338, + -0.011792114935815334, + 0.005022567696869373, + -0.011718090623617172, + 0.02358422987163067, + 0.029565416276454926, + -0.015367502346634865, + 0.01972014829516411, + 0.03665697202086449, + 0.0011936463415622711, + -0.018432119861245155, + 0.01715889759361744, + -0.0079280324280262, + 0.0030979285947978497, + 0.0028314401861280203, + -0.0025631010066717863, + -0.00860905833542347, + 0.0039196014404296875, + -0.01113329641520977, + -0.033932868391275406, + -0.014590244740247726, + 0.006540071684867144, + -0.021452322602272034, + 0.006373516283929348, + -0.02044558897614479, + 0.0014629107899963856, + -0.05332730710506439, + -0.021008174866437912, + 0.016285406425595284, + 0.019394438713788986, + 0.007854008115828037, + -0.004737573210150003, + 0.011525627225637436, + 0.0224886666983366, + -0.006614095997065306, + 0.011843932792544365, + -0.0028425438795238733, + 0.03209705650806427, + -0.023051254451274872, + 0.01204379927366972, + -0.014397780410945415, + -0.003740091808140278, + 0.0032533803023397923, + 0.007868812419474125, + -0.012347299605607986, + -0.029284123331308365, + -0.005044775083661079, + -0.006984218955039978, + 0.012739630416035652, + 0.002892510499805212, + -0.022118544206023216, + 0.01048188004642725, + 0.004885622300207615, + -0.01788433827459812, + -0.01440518256276846, + -0.006525266449898481, + 0.005237238947302103, + -0.024694599211215973, + 0.006891688331961632, + -0.010770576074719429, + 0.0021300571970641613, + 0.01886146329343319, + -0.01405726745724678, + -0.02727065421640873, + 0.02528679557144642, + 0.0062032598070800304, + 0.009948903694748878, + -0.021778030321002007, + -0.011473809368908405, + -0.011444199830293655, + -0.015619185753166676, + -0.009726829826831818, + -0.007602324243634939, + -0.053593795746564865, + 0.0038751866668462753, + 0.01067434437572956, + 0.006136637646704912, + 0.003036858281120658, + 0.016448261216282845, + -0.018757827579975128, + -0.004948542919009924, + 0.008845937438309193, + 0.015648795291781425, + -0.00483010383322835, + 0.027196630835533142, + 0.01153302937746048, + 0.049566857516765594, + 0.0016276154201477766, + -0.0013463220093399286, + -0.02504991739988327, + -0.02386552467942238, + 0.011910554952919483, + -0.0009391868370585144, + 0.008083484135568142, + 0.02459096536040306, + -0.009001389145851135, + 0.009245669469237328, + 0.0009947052458301187, + -0.004582121502608061, + 0.029521001502871513, + 0.015559966675937176, + 0.03600555658340454, + 0.03653853386640549, + 0.002344728447496891, + -0.00948254857212305, + 0.0008346271351911128, + -0.009519561193883419, + -0.019779367372393608, + 0.007587519474327564, + 0.013894413597881794, + -0.016744360327720642, + -0.023613840341567993, + -0.009423328563570976, + -0.03174173831939697, + -0.01619657874107361, + 0.011436797678470612, + 0.009438133798539639, + 0.02182244509458542, + -0.003242276608943939, + 0.011829127557575703, + -0.030350077897310257, + 0.022029714658856392, + -0.0021115511190146208, + -0.015367502346634865, + -0.006125533953309059, + -0.011762505397200584, + -0.0019227884477004409, + -0.02118583396077156, + 0.02152634784579277, + -0.012539763934910297, + -0.011340565048158169, + 0.01687760464847088, + -0.01709967851638794, + -0.020267929881811142, + -0.011518224142491817, + -0.020327148959040642, + -0.01920197531580925, + 0.023021643981337547, + -0.016463065519928932, + 0.012606386095285416, + -0.004393358714878559, + -0.0033366577699780464, + 0.011199918575584888, + -0.014649463817477226, + 0.023835914209485054, + -0.018432119861245155, + -0.008416594937443733, + -0.0002542281581554562, + 0.0077429707162082195, + 0.0028258883394300938, + 0.011081479489803314, + -0.009786048904061317, + -0.008905156515538692, + 0.006195857189595699, + -0.008668278343975544, + 0.02460576966404915, + -0.012339897453784943, + -0.017010848969221115, + 0.01942404918372631, + 0.010348635725677013, + 0.011051869951188564, + 0.006003393325954676, + -0.005004061385989189, + 0.016389042139053345, + 0.017010848969221115, + -0.01584126055240631, + -0.02066766284406185, + 0.004981853999197483, + -0.011703286319971085, + 0.010874210856854916, + -0.018269266933202744, + 0.009171645157039165, + 0.013479875400662422, + -0.005463013891130686, + 0.008194521069526672, + -0.005429702810943127, + -0.0028906597290188074, + 0.027463119477033615, + 0.010526294820010662, + 0.023761888965964317, + -0.018432119861245155, + -0.016773968935012817, + -0.015767235308885574, + -0.008386984467506409, + 0.00012399116531014442, + -0.011999384500086308, + 0.0017127436585724354, + 0.0033311061561107635, + 0.02869192697107792, + -0.018136022612452507, + 0.004371151328086853, + 0.013931425288319588, + -0.014790111221373081, + 0.0014314502477645874, + -0.05329769849777222, + -0.00948254857212305, + -0.00634760782122612, + 0.0035309724044054747, + -0.025553284212946892, + -0.011140699498355389, + -6.847273471066728e-5, + -0.02208893373608589, + -0.016092943027615547, + -0.017188508063554764, + -0.01354649756103754, + -0.003927004057914019, + -0.05039593204855919, + 0.028262583538889885, + 0.0031256878282874823, + 0.010348635725677013, + 0.009645402431488037, + 0.000462653610156849, + 0.0012565671931952238, + 0.008897754363715649, + 0.0018941039452329278, + 0.035294920206069946, + 0.023717474192380905, + -0.0036364574916660786, + -0.03307418152689934, + 0.0017007146961987019, + 0.012199250981211662, + 0.018535753712058067, + 0.02709299512207508, + 0.010755770839750767, + -0.0038381745107471943, + 0.004741274286061525, + 0.015293478034436703, + -0.02390993945300579, + 0.010526294820010662, + 0.004459980875253677, + -0.006070015486329794, + -0.014042462222278118, + -0.028543878346681595, + 0.010726161301136017, + 0.010096952319145203, + -0.02738909423351288, + -0.001933892141096294, + -0.006303193047642708, + -0.001956099411472678, + -0.008349972777068615, + 0.008372180163860321, + -0.008031667210161686, + -0.001149231567978859, + -0.01196237187832594, + -0.020016245543956757, + -0.03319261968135834, + 0.018876267597079277, + 0.017632653936743736, + 0.007524598389863968, + -0.028084924444556236, + 0.04414825886487961, + 0.0028980623465031385, + 0.016966434195637703, + -0.03952912613749504, + 0.0027352082543075085, + 0.016907213255763054, + 0.0065178642980754375, + -0.009497353807091713, + -0.0258937980979681, + -0.013724156655371189, + 0.0026907934807240963, + 0.00883113220334053, + 0.015530356205999851, + -0.0224886666983366, + 0.020119881257414818, + -0.0014915952924638987, + 0.007261811289936304, + 0.013324424624443054, + 0.0018931785598397255, + -0.007036036346107721, + 0.018891071900725365, + 0.022681130096316338, + -0.016433456912636757, + -0.006599291227757931, + 0.019113145768642426, + 0.011547834612429142, + 0.011051869951188564, + 0.013257802464067936, + -0.004763481672853231, + -0.0028277388773858547, + 0.003059065667912364, + -0.019586903974413872, + 0.04163142293691635, + -0.014434793032705784, + 0.022799570113420486, + -0.01107407733798027, + -0.01056330744177103, + 0.0042008948512375355, + 0.021555956453084946, + -0.029846709221601486, + 0.013613119721412659, + -0.015500746667385101, + -0.006573382765054703, + -0.014590244740247726, + 0.008720095269382, + 0.0001301213342230767, + -0.0032663345336914062, + 0.009971111081540585, + -0.008675680495798588, + 0.004441474564373493, + 0.0004527065611910075, + -0.012339897453784943, + -0.0006305968854576349, + -0.015767235308885574, + 0.005514831282198429, + -0.0068361698649823666, + -0.028084924444556236, + 0.004271218087524176, + -0.028662316501140594, + 0.0263675544410944, + 0.010800185613334179, + 0.019009511917829514, + -0.008794119581580162, + -0.004345242865383625, + 0.025701332837343216, + 0.017306946218013763, + 0.032126668840646744, + 0.04548070207238197, + 0.007546805776655674, + 0.014360768720507622, + 0.014338561333715916, + -0.010666942223906517, + 0.008816326968371868, + -0.002353981602936983, + 0.0062883878126740456, + 0.006577083840966225, + 0.01380558405071497, + 0.0024206037633121014, + -0.038936927914619446, + 0.0051187993958592415, + 0.0038714853581041098, + -0.00022531230933964252, + 0.018150826916098595, + 0.007646739017218351, + 0.003434740472584963, + -0.006503059063106775, + -0.013139362446963787, + -0.0095121581107378, + -0.018950292840600014, + -0.009556572884321213, + 0.008586850948631763, + -0.006081119179725647, + -0.008757107891142368, + -0.003103480441495776, + 0.006647407077252865, + -0.039736393839120865, + -0.006954608950763941, + 0.015708016231656075, + 0.0010594767518341541, + 0.023480596020817757, + -0.021955689415335655, + -0.017543824389576912, + 0.007509793620556593, + 0.01210301835089922, + -0.0005116948741488159, + -0.01920197531580925, + 0.0045192004181444645, + 0.006336504127830267, + -0.015485941432416439, + -0.00046149699483066797, + -0.0019301908323541284, + -0.017055263742804527, + 0.0006028376519680023, + 0.006991621572524309, + -0.006873182021081448, + -0.01002292800694704, + 0.01343546062707901, + 0.020016245543956757, + -0.0074283666908741, + 0.018994707614183426, + 0.01727733574807644, + 0.027788827195763588, + -0.0012167789973318577, + 0.03520609065890312, + -0.01073356345295906, + -0.013909217901527882, + 0.02214815467596054, + -0.011088881641626358, + 0.007942837662994862, + 0.0002021796244662255, + 0.0007740195142105222, + 0.022562691941857338, + 0.004870817065238953, + 0.012821056880056858, + -0.00355132925324142, + -0.02214815467596054, + -0.010393050499260426, + 0.0114516019821167, + 0.008490619249641895, + 0.006895389407873154, + -0.011592249386012554, + -0.0023798902984708548, + -0.0065696812234818935, + -0.017025653272867203, + -0.005577751901000738, + -0.0317121297121048, + 0.01048188004642725, + -0.022992033511400223, + -0.019927415996789932, + 0.006873182021081448, + -0.015767235308885574, + 0.014864135533571243, + -0.020031051710247993, + 0.017573434859514236, + 0.02016429603099823, + 0.005940472241491079, + -0.003342209616675973, + -0.02318449877202511, + -0.017543824389576912, + -0.036272045224905014, + -0.020593637600541115, + -0.014234926551580429, + -0.01071135699748993, + 0.011577444151043892, + 0.003329255385324359, + 0.013324424624443054, + -0.012236262671649456, + -0.011858737096190453, + 0.007432067766785622, + 0.0223702285438776, + -0.016655530780553818, + -0.021570762619376183, + -0.017292141914367676, + 0.006110729184001684, + -0.031327202916145325, + 0.0007217396632768214, + -0.020430782809853554, + -0.000556109647732228, + 0.003129389137029648, + -0.005914563778787851, + 0.0017719633178785443, + -3.333997665322386e-5, + 0.027566753327846527, + 0.013242997229099274, + -0.0022429446689784527, + -0.023821109905838966, + 0.001305608544498682, + -0.013590912334620953, + 0.017765898257493973, + -0.03221549838781357, + -0.01601891964673996, + -0.016004113480448723, + 0.005562947131693363, + 0.026619238778948784, + -0.006421632133424282, + -0.027344679459929466, + -0.017055263742804527, + 0.018506145104765892, + 0.006014497019350529, + -0.0026500800158828497, + -0.031149541959166527, + 0.009216059930622578, + -0.028469853103160858, + -0.019098341464996338, + -0.018165631219744682, + 0.00515581201761961, + -0.015323087573051453, + 0.015648795291781425, + 0.001944995834492147, + 0.019838586449623108, + 0.027477923780679703, + -0.0010983396787196398, + 0.01618177257478237, + 0.021555956453084946, + -0.002740760101005435, + -0.011888347566127777, + -0.014072072692215443, + 0.004600627347826958, + -0.010659539140760899, + 0.010193184949457645, + 0.005588855594396591, + -0.01686279848217964, + 0.02078610099852085, + -0.012421323917806149, + 0.0007106359698809683, + 0.03233393654227257, + -0.0053852880373597145, + -0.0021966793574392796, + 0.0012186296517029405, + -0.005133604630827904, + 0.011866140179336071, + -0.00447108456864953, + -0.006625199690461159, + 0.005899759009480476, + -0.01823965646326542, + 0.023302936926484108, + 0.018165631219744682, + -0.0004964273539371789, + 0.0022336917463690042, + 0.010000720620155334, + -0.023776695132255554, + 0.006040405482053757, + 0.014123889617621899, + -0.026204701513051987, + -0.010074744932353497, + -0.012191847898066044, + 0.03197861835360527, + -0.017247727140784264, + -0.00771336117759347, + 0.0021855756640434265, + 0.017765898257493973, + -0.02414681762456894, + 0.00854983925819397, + 0.03526530787348747, + 0.0056554777547717094, + -0.004093558993190527, + 0.013561302796006203, + -0.01402765791863203, + -0.014353365637362003, + -0.008164910599589348, + 0.02596782147884369, + -0.012858069501817226, + 0.028706731274724007, + 0.0008170462679117918, + -0.0028888091910630465, + 0.04539187252521515, + -0.01193276233971119, + 0.024265257641673088, + 0.01858016848564148, + 0.012169640511274338, + 0.015515551902353764, + -0.01539711281657219, + -0.0017636355478316545, + -0.014989976771175861, + -0.011777310632169247, + 0.005463013891130686, + -0.011340565048158169, + -0.005796124693006277, + -0.013887010514736176, + 0.004881920758634806, + 0.009919293224811554, + -0.026796897873282433, + -0.0077429707162082195, + 0.00497075030580163, + 0.009097620844841003, + -0.017173701897263527, + -0.013383643701672554, + 0.009208657778799534, + 0.01760304532945156, + -0.00032246956834569573, + -0.011777310632169247, + -0.008535034023225307, + 0.00923086516559124, + 0.0044784871861338615, + -0.017632653936743736, + -0.006366113666445017, + 0.004052845761179924, + -0.02460576966404915, + -0.0018256311304867268, + -0.011399785056710243, + 0.004108364228159189, + 0.0024113506078720093, + 0.01099264994263649, + -0.0010511489817872643, + -0.00410466268658638, + -0.014005450531840324, + -0.0014453298645094037, + 0.005525934975594282, + -0.007757775951176882, + 0.02062324807047844, + 0.009541768580675125, + 0.002167069585993886, + 0.017795508727431297, + 0.009682415053248405, + -0.02114141918718815, + -0.009985915385186672, + 0.011977177113294601, + 0.0017858429346233606, + -0.025656918063759804, + -0.0016322419978678226, + 0.0012565671931952238, + 0.06336504220962524, + 0.018476534634828568, + 0.013553900644183159, + 0.01960170827805996, + 0.014841928146779537, + -0.0017016399651765823, + 0.02358422987163067, + 0.020756492391228676, + 0.020519612357020378, + -0.01034123357385397, + 0.014249731786549091, + -0.008105691522359848, + -0.0042490107007324696, + -0.015767235308885574, + -0.01420531701296568, + 0.012369506992399693, + 0.010489283129572868, + 0.0007994654588401318, + -0.016211383044719696, + 0.03946990519762039, + 0.041039224714040756, + -0.005196525249630213, + -0.010111757554113865, + 0.018728218972682953, + 0.0006699224468320608, + 0.009467743337154388, + 0.004992957692593336, + 0.013598315417766571, + 0.040535859763622284, + -0.006025600712746382, + 0.007543104700744152, + -0.008238935843110085, + 0.004082455299794674, + -0.009845268912613392, + 0.011325760744512081, + -0.003455097321420908, + 0.005548142362385988, + 0.010193184949457645, + -0.01005253754556179, + 0.019231585785746574, + -0.007261811289936304, + -0.003830771893262863, + 0.017854727804660797, + -0.005514831282198429, + -0.022636715322732925, + 0.00533717218786478, + 0.006166247185319662, + -0.0073839519172906876, + 0.015086209401488304, + -0.00583683792501688, + -0.02704858034849167, + -0.022074129432439804, + 0.0004899501800537109, + 0.003815967123955488, + 0.0006454017711803317, + -0.010977844707667828, + -0.008327765390276909, + -0.01647787168622017, + 0.006588187534362078, + -0.0032478284556418657, + 0.0024113506078720093, + 0.006947206798940897, + -0.018446924164891243, + -0.041039224714040756, + 0.0073617445304989815, + -0.019616512581706047, + -0.016611116006970406, + 0.019734952598810196, + -0.006651108618825674, + 0.019749756902456284, + -0.007184085436165333, + 0.006540071684867144, + -0.0018432120559737086, + -0.014035060070455074, + 0.0007291421061381698, + 0.022074129432439804, + 0.004060247913002968, + 0.0042268033139407635, + -0.004778286442160606, + -0.0016396443825215101, + -0.009186450392007828, + 0.004345242865383625, + 0.004978152923285961, + -0.006058911792933941, + 0.004286023322492838, + 0.004119467921555042, + 0.014079474844038486, + -0.0031386420596390963, + 0.00749868992716074, + -0.007554208394140005, + 0.00663260230794549, + -0.012280677445232868, + -0.005137305706739426, + 0.01892068237066269, + -0.013620522804558277, + 0.0011288748355582356, + -0.017232922837138176, + -0.013272606767714024, + 0.0344066247344017, + -0.008194521069526672, + 0.007150774355977774, + 0.012362104840576649, + -6.569681136170402e-5, + 0.015367502346634865, + 0.007469079922884703, + 0.0034754539374262094, + 0.008705290034413338, + 0.007206292822957039, + -0.013820389285683632, + 0.012872873805463314, + -0.0062513756565749645, + -0.029639441519975662, + -0.016803579404950142, + -0.0011612605303525925, + -0.007861410267651081, + 0.0018450625939294696, + -0.003255230840295553, + -0.0038381745107471943, + -0.011695883236825466, + -0.016166968271136284, + 0.007054542191326618, + 0.014301548711955547, + 0.0015915284166112542, + 0.020948955789208412, + -0.00854983925819397, + 0.0015730223385617137, + -0.010770576074719429, + -0.018254460766911507, + -0.02687092125415802, + 0.006325400434434414, + 0.014967769384384155, + 0.007594921626150608, + 0.006928700488060713, + -0.008934766985476017, + 0.013709352351725101, + -0.011370175518095493, + 0.02504991739988327, + -0.009978513233363628, + 0.033251840621232986, + -0.008912559598684311, + 0.008490619249641895, + 0.019675733521580696, + 0.003771552350372076, + 0.02004585601389408, + 0.009734231978654861, + -0.002030123956501484, + 0.011414590291678905, + -0.02527199126780033, + 0.03215627744793892, + 0.008283350616693497, + 0.030202027410268784, + -0.007950239814817905, + 0.002285508904606104, + -0.0028888091910630465, + 0.01624099165201187, + 0.018328486010432243, + -0.015189843252301216, + -0.006358711514621973, + -0.010296818800270557, + -0.014146097004413605, + 0.010652136988937855, + -0.003223770298063755, + -0.002516835695132613, + -0.008216728456318378, + -0.017869533970952034, + 0.005448209121823311, + 0.017232922837138176, + 0.022414643317461014, + 0.010252404026687145, + -0.006114430259913206, + -0.016329821199178696, + 0.004700560588389635, + 0.00857944879680872, + -0.012880276888608932, + 0.0008970853523351252, + -0.0024465122260153294, + 0.016048528254032135, + 0.02470940351486206, + -0.017647460103034973, + 0.011888347566127777, + 0.007380250375717878, + 0.006044107023626566, + -0.01070395391434431, + -0.005662880372256041, + -0.015485941432416439, + -0.007417262997478247, + 0.03721955791115761, + -0.00021224234660621732, + 0.002529789926484227, + -0.0131245581433177, + -0.0023058655206114054, + 0.028381023555994034, + 0.002659332938492298, + -0.0008013160550035536, + 0.0011612605303525925, + 0.01459764689207077, + -0.003103480441495776, + 0.02584938332438469, + 0.006999023724347353, + 0.004385956097394228, + -0.008668278343975544, + -0.007802190724760294, + 0.006651108618825674, + -0.009519561193883419, + -0.0007846605149097741, + -0.025819772854447365, + -0.016907213255763054, + -0.0007767954375594854, + -0.01834329031407833, + 0.00880152266472578, + -0.011207321658730507, + -0.02050480805337429, + 0.010644734837114811, + -0.0029683855827897787, + -0.01377597451210022, + 0.01527867279946804, + -0.005566648207604885, + -0.00039718812331557274, + 0.008683082647621632, + -0.0094529390335083, + 0.003233023453503847, + 0.011407187208533287, + -0.0014721638290211558, + -0.01720331236720085, + 0.017425386235117912, + 0.01595969870686531, + 0.015648795291781425, + -0.005018866620957851, + 0.013620522804558277, + 0.005644374061375856, + 0.023673059418797493, + -0.00684727355837822, + 0.010015525855123997, + 0.007017530035227537, + -0.0028536475729197264, + 0.04622094705700874, + 0.02312527783215046, + 0.00247057038359344, + 0.002733357483521104, + 0.002015319187194109, + -0.0189650971442461, + 0.023243717849254608, + -0.015049196779727936, + -0.006858377251774073, + 0.0074283666908741, + -0.0027833241038024426, + 0.009845268912613392, + -0.013901815749704838, + 0.0025501467753201723, + -2.9841157811461017e-5, + 0.01099264994263649, + -0.014079474844038486, + -0.017440190538764, + 0.007021231111139059, + 0.008312960155308247, + 0.010548502206802368, + 0.0259530171751976, + -0.008142703212797642, + 0.008868144825100899, + 0.0006093148258514702, + 0.000588958035223186, + -0.0025001801550388336, + -0.0056961914524436, + -0.016833189874887466, + 0.0346435010433197, + 0.006536370143294334, + -0.0013148615835234523, + 0.020519612357020378, + -0.01247314177453518, + 0.00045062461867928505, + 0.00400472991168499, + -0.015012184157967567, + 0.0012547166552394629, + 0.01880224235355854, + 0.0009687966667115688, + -0.0032977950759232044, + 0.03310379013419151, + -0.004944841843098402, + 0.0012232561130076647, + 0.009593585506081581, + -0.01175510324537754, + 0.003982522524893284, + -0.003443993628025055, + -0.03532452881336212, + -0.00533717218786478, + -0.030187223106622696, + 0.0030053979717195034, + 0.014760500751435757, + 0.011940164491534233, + 0.03419935703277588, + 0.0007837352459318936, + -0.026560019701719284, + 0.018254460766911507, + 0.01005253754556179, + -0.004526603035628796, + 0.010740966536104679, + 0.003375520696863532, + 0.011732895858585835, + 0.011666273698210716, + -0.004345242865383625, + -0.0014601348666474223, + -0.015123221091926098, + 0.00028753920923918486, + -0.016448261216282845, + 0.02867712266743183, + -0.008305558003485203, + 0.005525934975594282, + -0.004252712242305279, + 0.001399989821948111, + 0.018476534634828568, + 0.0029609831981360912, + -0.0027796230278909206, + 0.009423328563570976, + 0.0031238372903317213, + 9.015962132252753e-5, + 0.00288325734436512, + 0.005015165079385042, + 0.013324424624443054, + -0.0022929112892597914, + -0.010955637320876122, + -0.005914563778787851, + -0.00709895696491003, + 0.016492675989866257, + 0.004304529167711735, + 0.0032977950759232044, + 0.005599959287792444, + -0.0016803579637780786, + 0.011481212452054024, + 0.01704045757651329, + -0.020090270787477493, + 0.004933738149702549, + -0.005611062981188297, + -0.013827791437506676, + -0.012028994038701057, + -0.003471752628684044, + 0.010467075742781162, + -0.010666942223906517, + 0.003975119907408953, + -0.025064721703529358, + 0.007576415780931711, + -0.013983243145048618, + 0.007024932652711868, + 0.007309927139431238, + -0.004952244460582733, + 0.011081479489803314, + 0.02368786558508873, + 0.018195241689682007, + -0.018994707614183426, + -0.0062661804258823395, + 0.018831852823495865, + 0.005851643159985542, + -0.006373516283929348, + -0.00702863372862339, + -0.006976816337555647, + -0.013761169277131557, + -0.006577083840966225, + -0.005840539466589689, + 0.014123889617621899, + -0.0262491162866354, + -0.009971111081540585, + -0.0017173702362924814, + 0.01675916463136673, + -0.01175510324537754, + -0.014834525994956493, + 0.013590912334620953, + 0.01539711281657219, + 0.01658150553703308, + 0.002925821579992771, + -0.02124505490064621, + 0.003562432946637273, + 0.025153551250696182, + 0.0024872259236872196, + -0.010496685281395912, + -0.029165683314204216, + 0.00039788210415281355, + 0.011281345970928669, + 0.009445535950362682, + 0.018891071900725365, + 0.00019003497436642647, + -0.0022318409755825996, + 0.019957026466727257, + -0.005966381169855595, + 0.003960315138101578, + -0.0036623659543693066, + -0.006695522926747799, + 0.01681838370859623, + 0.0157968457788229, + 0.011910554952919483, + 0.001617436995729804, + -0.00605150917544961, + 0.002366935834288597, + 0.050307102501392365, + 0.03659775108098984, + -0.005307562183588743, + 0.005270550027489662, + -0.007987252436578274, + -0.006732535548508167, + 0.010555905289947987, + -0.009356706403195858, + -0.010474477894604206, + -0.001983858644962311, + -0.0020560326520353556, + 0.0009808256290853024, + 0.011910554952919483, + 0.016166968271136284, + -0.028588293120265007, + 0.025005502626299858, + 0.005248342640697956, + 0.004078754223883152, + -0.009526963345706463, + -0.009645402431488037, + -0.012458336539566517, + 0.0004992032772861421, + -0.011037064716219902, + 0.001272297464311123, + 0.0159152839332819, + -0.013465071097016335, + -0.00863866787403822, + 0.019335219636559486, + -0.003255230840295553, + 0.013872206211090088, + -0.016625920310616493, + 0.014804915525019169, + -0.018535753712058067, + -0.0017238473519682884, + 0.0317121297121048, + 0.04776065796613693, + 0.010659539140760899, + -0.02106739580631256, + -0.01366493757814169, + 0.0010076595935970545, + -0.021437518298625946, + -0.0008138077100738883, + 0.018417315557599068, + -0.009963707998394966, + -0.006206960882991552, + 0.018195241689682007, + -0.03233393654227257, + 0.007972447201609612, + 0.0035661340225487947, + 0.005966381169855595, + -0.01930561102926731, + 0.007380250375717878, + 0.00857944879680872, + -0.0051187993958592415, + 0.01113329641520977, + -0.003482856322079897, + 0.013849998824298382, + 0.007021231111139059, + -0.018165631219744682, + -0.008113093674182892, + 0.01178471278399229, + -0.01595969870686531, + 0.010096952319145203, + -0.029861515387892723, + -0.03165290877223015, + -0.015589576214551926, + 0.01440518256276846, + 0.015411917120218277, + 0.010896418243646622, + -0.000960468896664679, + -0.004807896446436644, + -0.0025631010066717863, + 0.017114482820034027, + -0.0033773714676499367, + 0.029669051989912987, + 0.025523675605654716, + 0.007891019806265831, + -0.009282682090997696, + -0.010082148015499115, + -0.012317690066993237, + 0.00583683792501688, + 0.0013722305884584785, + 0.00031761170248501003, + -0.0002112013753503561, + 0.011666273698210716, + 0.011155503802001476, + -0.03224510699510574, + 0.019957026466727257, + 0.0059700822457671165, + -0.006299491506069899, + -0.009963707998394966, + -0.009460341185331345, + 0.002013468649238348, + 0.008098289370536804, + -0.018417315557599068, + -0.012406519614160061, + 0.01954248920083046, + -0.02034195512533188, + 0.03055734559893608, + -0.000687965948600322, + 0.0064956569112837315, + -0.0032663345336914062, + 0.023243717849254608, + -0.008845937438309193, + -0.002999846125021577, + 0.01365753449499607, + 0.023051254451274872, + 0.004815299063920975, + -0.009171645157039165, + -0.005644374061375856, + 0.001734025776386261, + -0.011681078933179379, + 0.01948326826095581, + 0.014271939173340797, + -0.006625199690461159, + -0.01215483620762825, + 0.009926696307957172, + 0.007965045049786568, + -0.0031238372903317213, + 0.005270550027489662, + -0.0017414281610399485, + -0.0037789547350257635, + 0.009001389145851135, + -0.011014857329428196, + 0.020356759428977966, + 0.00749868992716074, + 0.010237598791718483, + 0.013146765530109406, + 0.010859405621886253, + 0.009460341185331345, + -0.027581557631492615, + -0.006140338722616434, + -0.007846605032682419, + -0.012391714379191399, + 0.013176375068724155, + 0.01193276233971119, + -0.0034754539374262094, + -0.0007018455653451383, + -0.004089857917279005, + -0.016092943027615547, + 0.0004309618379920721, + 0.007965045049786568, + -0.0006467897328548133, + -0.0042119985446333885, + 0.02386552467942238, + 0.004596926271915436, + -0.014020254835486412, + 0.023080863058567047, + -0.020934151485562325, + -0.008845937438309193, + 0.010696551762521267, + 0.015041794627904892, + 0.0018450625939294696, + -0.014952965080738068, + 0.002024572342634201, + 0.00017095051589421928, + -0.011014857329428196, + 0.02386552467942238, + 0.001437002094462514, + -0.015722820535302162, + 0.008742302656173706, + -0.0032737369183450937, + 0.0053963917307555676, + -0.0053334711119532585, + -0.004078754223883152, + -0.022518277168273926, + 0.0030627669766545296, + 0.017410580068826675, + 0.00817971583455801, + 0.00043234979966655374, + -0.012813654728233814, + 0.004515499342232943, + -0.004682054743170738, + -0.005329769570380449, + 0.005141006782650948, + 0.013746364042162895, + 0.022399837151169777, + 0.01056330744177103, + 0.027907265350222588, + -0.026041846722364426, + -0.00041847018292173743, + -0.02386552467942238, + -0.01686279848217964, + 0.002885107882320881, + -0.02010507509112358, + -0.011014857329428196, + -0.015885675325989723, + 0.01704045757651329, + -0.012739630416035652, + -0.00490042706951499, + -0.0018274817848578095, + -0.01539711281657219, + -0.0034865576308220625, + 0.001008584862574935, + 0.020889736711978912, + -0.0017497559310868382, + -0.00728401867672801, + -0.006528967991471291, + -0.0190243162214756, + 0.0028166351839900017, + -0.005277952644973993, + -0.009467743337154388, + -0.02873634174466133, + 0.008557241410017014, + -8.69210489327088e-5, + -0.014220121316611767, + 0.002074538730084896, + -0.014938159845769405, + -0.005562947131693363, + -0.0076689464040100574, + 0.00457471888512373, + -0.004300828091800213, + 0.02250347100198269, + -0.012710019946098328, + 0.002074538730084896, + 0.024398501962423325, + -0.029609831050038338, + -0.006725132931023836, + -0.005773917306214571, + 0.0033995788544416428, + 0.004633938428014517, + 0.039173807948827744, + -0.01789914257824421, + 0.020934151485562325, + -0.006503059063106775, + 0.01607813872396946, + -0.01488634292036295, + 0.01795836351811886, + -0.018654193729162216, + -0.015175038948655128, + -0.0012343598064035177, + 0.008409191854298115, + 0.0001644733565626666, + -0.004878219682723284, + 0.01337624154984951, + -0.01630021259188652, + 0.003967717289924622, + 0.007728165946900845, + 0.001404616399668157, + -0.013561302796006203, + -0.01440518256276846, + -0.00214486219920218, + -0.025094332173466682, + -0.00934190209954977, + -0.01835809461772442, + -0.018269266933202744, + 4.155207716394216e-5, + -0.00014677685976494104, + 0.0029942942783236504, + -0.004286023322492838, + -0.004571017809212208, + -0.0045080967247486115, + 0.0011390532599762082, + 0.003025754587724805, + -1.239767129845859e-6, + 0.0229032039642334, + -0.004804195370525122, + -6.199558265507221e-5, + 0.012362104840576649, + -0.021896470338106155, + 0.004571017809212208, + -0.010763173922896385, + -0.003986223600804806, + 0.006273583043366671, + -2.6718245862866752e-5, + 0.008135301060974598, + -0.01936483010649681, + 0.0033218530006706715, + -0.019394438713788986, + -0.0096602076664567, + -0.029047245159745216, + -0.002320670522749424, + 0.010615124367177486, + 0.006081119179725647, + 0.0015415617963299155, + 0.005662880372256041, + 0.017854727804660797, + -0.01714409328997135, + 0.0014915952924638987, + -0.012288080528378487, + -0.010837198235094547, + -0.004633938428014517, + -0.004348943941295147, + -0.0029091660398989916, + -0.017084872350096703, + 0.010215391404926777, + -0.01377597451210022, + 0.00272040325216949, + -0.05042554438114166, + 0.0048227012157440186, + -0.0073839519172906876, + -0.022000104188919067, + -0.0055925571359694, + -1.4060332432563882e-5, + 0.010393050499260426, + -0.0007249782211147249, + -0.0004617283120751381, + -0.0224294476211071, + 0.0011131445644423366, + 0.011540431529283524, + -0.016670335084199905, + -0.0011205470655113459, + -0.005237238947302103, + -0.005303861107677221, + 0.020860126242041588, + 0.0016081839567050338, + 0.00826114322990179, + 0.009541768580675125, + -0.002988742431625724, + -0.011429394595324993, + -0.016685139387845993, + -0.003986223600804806, + -0.017691874876618385, + 0.010926027782261372, + -0.00039348690188489854, + 0.01828407123684883, + 0.011170309036970139, + 0.0053593795746564865, + -0.00025330286007374525, + 0.005540739744901657, + -0.005096592474728823, + 0.016004113480448723, + 0.0007060093921609223, + -0.025938212871551514, + -0.017469801008701324, + -0.0015350846806541085, + 0.0027907267212867737, + -0.008342569693922997, + -0.014005450531840324, + 0.0020356758031994104, + 0.0008341644424945116, + -0.015367502346634865, + 0.017706679180264473, + -0.0035587316378951073, + -0.014264536090195179, + 0.014797513373196125, + 0.00623657088726759, + -0.013368838466703892, + 0.002048630267381668, + -0.002133758505806327, + -0.00026209326460957527, + -0.0263675544410944, + -0.013887010514736176, + -0.0113923829048872, + 0.0024798233062028885, + -0.013072740286588669, + -0.003482856322079897, + 0.003186758141964674, + 0.011436797678470612, + -0.0015249063726514578, + -0.026841312646865845, + -0.0053334711119532585, + 0.01261378824710846, + 0.025064721703529358, + 0.01499737985432148, + 0.0024354085326194763, + 0.006969414185732603, + -0.0104522705078125, + 0.007728165946900845, + -0.009919293224811554, + -0.007617129012942314, + 0.027699997648596764, + -0.009223462082445621, + 0.012798849493265152, + 0.008520228788256645, + 0.013642730191349983, + -0.008283350616693497, + 0.019468463957309723, + 0.036212824285030365, + 0.00897177867591381, + 0.00355132925324142, + 0.008113093674182892, + 0.016166968271136284, + 0.00551112974062562, + -0.002072688192129135, + 0.013901815749704838, + 0.006680718157440424, + -0.005218732636421919, + 0.02078610099852085, + -0.0014258984010666609, + -0.0010159873636439443, + -0.0024872259236872196, + -0.017706679180264473, + -0.007443171460181475, + -0.02028273418545723, + -0.0007962269010022283, + 0.006073716562241316, + -0.0068361698649823666, + 0.050366323441267014, + -0.0062143635004758835, + 0.011747701093554497, + -0.02466498874127865, + 0.02681170217692852, + 0.0056406729854643345, + -0.013812986202538013, + 0.027537142857909203, + -0.004426669795066118, + 0.016714749857783318, + -0.004633938428014517, + 0.0065326690673828125, + -0.010970442555844784, + -0.02198529988527298, + -0.014649463817477226, + 0.04106883704662323, + 0.0029313734266906977, + 0.032511595636606216, + -0.00544080650433898, + 0.0020541821140795946, + -0.0062883878126740456, + -0.0029572818893939257, + -0.0008577597909606993, + -0.0018210046691820025, + -0.0001641263661440462, + -0.0097194267436862, + 0.00832036230713129, + -0.006980517879128456, + 0.012236262671649456, + 0.00988228153437376, + 0.021659592166543007, + -0.008808924816548824, + -0.006932401563972235, + -0.009578780271112919, + -0.007113762199878693, + 0.009297487325966358, + -0.005240940023213625, + 0.00400472991168499, + -0.002039377111941576, + -0.0029720868915319443, + 0.002083791885524988, + -0.006066314410418272, + 0.0006472524255514145, + 0.01416830439120531, + 0.006366113666445017, + -0.028247779235243797, + -0.01343546062707901, + 0.0062883878126740456, + 0.0041638826951384544, + -0.005577751901000738, + -0.008505424484610558, + 7.171130710048601e-5, + -0.013961035758256912, + -0.009489950723946095, + 0.005248342640697956, + 0.012006786651909351, + -0.0008212101529352367, + -0.011310955509543419, + 0.005729502532631159, + -0.009060608223080635, + 0.001944995834492147, + -0.0010567008284851909, + -0.02346579171717167, + 0.023895133286714554, + 0.003536524251103401, + -0.004382255021482706, + 0.001061327406205237, + -0.005633270367980003, + 0.012021591886878014, + -0.010207989253103733, + -0.013524290174245834, + -0.002613067626953125, + 0.018254460766911507, + 0.0016387191135436296, + 0.005514831282198429, + -0.01687760464847088, + 0.024961087852716446, + -0.01760304532945156, + -0.004374852403998375, + -0.012761837802827358, + -0.016033723950386047, + 0.01858016848564148, + -0.011910554952919483, + 0.008993986062705517, + -0.014419987797737122, + -0.007324731908738613, + -0.009238267317414284, + -0.019912611693143845, + 0.007517195772379637, + -0.0030313064344227314, + 0.00544080650433898, + -0.0007064720848575234, + 0.0010159873636439443, + -0.00832036230713129, + 0.010807588696479797, + -0.008720095269382, + 0.005718398839235306, + 0.01681838370859623, + -0.010444868355989456, + -0.022710740566253662, + -0.0038455768954008818, + -0.0012473141541704535, + 0.0038751866668462753, + -0.0015212050639092922, + 0.02390993945300579, + -0.00806867890059948, + 0.000828612654004246, + 0.016433456912636757, + 0.006995322648435831, + 0.004315632861107588, + 0.034051306545734406, + -0.0006227317498996854, + 0.013842596672475338, + 0.020327148959040642, + -0.0062550767324864864, + 0.0059589785523712635, + 0.002189276972785592, + 0.03055734559893608, + 0.0033329566940665245, + -0.011592249386012554, + -0.010526294820010662, + -0.004371151328086853, + -0.010163574479520321, + -0.008875546976923943, + -0.02114141918718815, + -0.01521945372223854, + -0.0055925571359694, + -0.037574876099824905, + -0.001067804521881044, + -0.016655530780553818, + 0.00874970480799675, + -0.007965045049786568, + 0.01383519358932972, + -0.01351688802242279, + -0.022236984223127365, + -0.004596926271915436, + -0.0054111965000629425, + 0.010829796083271503, + -0.0293581485748291, + -0.002322521060705185, + -0.03772292658686638, + -0.030883053317666054, + 0.000520947971381247, + 0.003941808827221394, + 0.014701281674206257, + -0.0056406729854643345, + -0.007358042988926172, + -0.005751709919422865, + 0.013783376663923264, + 0.005533337127417326, + -0.00983046367764473, + 0.012302884832024574, + -0.004744975361973047, + 0.0027574156410992146, + -0.02833660878241062, + 0.004286023322492838, + -0.008113093674182892, + -0.009926696307957172, + -0.00897177867591381, + -0.0003567059466149658, + -0.0050299703143537045, + 0.03914419561624527, + 0.013146765530109406, + -0.027966486290097237, + -0.009060608223080635, + -0.01542672235518694, + 0.010467075742781162, + 0.010393050499260426, + 0.002204081742092967, + -0.018432119861245155, + 0.010874210856854916, + -0.019409244880080223, + -0.0010974144097417593, + 0.018772633746266365, + -0.011999384500086308, + 0.009586183354258537, + 0.006751041393727064, + -0.01778070442378521, + -0.03443623334169388, + -0.0026075157802551985, + 0.0012186296517029405, + 0.0014841927913948894, + -0.007502391003072262, + 0.00731362821534276, + -0.017025653272867203, + 0.003727137576788664, + -0.012702617794275284, + 0.012687812559306622, + -0.020490003749728203, + -0.0011705136857926846, + 0.002644528169184923, + -0.0012223308440297842, + 0.0192611962556839, + -0.0007337686256505549, + 0.009734231978654861, + 0.03461389243602753, + 0.02074168622493744, + 0.026456383988261223, + 0.009475146420300007, + -0.0314752496778965, + 0.008475814014673233, + -0.011236931197345257, + -0.001577648799866438, + 0.01920197531580925, + -0.01005253754556179, + 0.003094227286055684, + 0.0011001903330907226, + 0.006684419233351946, + -0.006695522926747799, + 0.013450265862047672, + -0.005196525249630213, + 0.005026268772780895, + 0.0012824757723137736, + -0.019572097808122635, + 0.015826454386115074, + -0.015485941432416439, + -0.02392474375665188, + 0.014531024731695652, + 0.00874970480799675, + -0.013561302796006203, + 0.001983858644962311, + 0.011903151869773865, + 0.0173809714615345, + -0.024901868775486946, + 0.008512826636433601, + -0.012961703352630138, + -0.003690125187858939, + -0.015604381449520588, + -0.010111757554113865, + -0.01823965646326542, + 0.009297487325966358, + 0.015130624175071716, + 0.019276000559329987, + -0.021319078281521797, + -0.017425386235117912, + -0.0036068474873900414, + -0.003245977684855461, + -0.002283658366650343, + 0.018935486674308777, + 0.017336556687951088, + 0.030823834240436554, + 0.010215391404926777, + 0.007539403159171343, + -0.02272554486989975, + 0.0009461266454309225, + -0.012339897453784943, + 0.004641341045498848, + 0.017292141914367676, + -0.003155297599732876, + 0.012843264266848564, + -0.027522338554263115, + 0.002590860240161419, + -0.01088161300867796, + -0.008076081983745098, + -0.011954969726502895, + -0.009556572884321213, + 0.0013435460859909654, + -0.015064002014696598, + 0.021955689415335655, + 0.006355009973049164, + -0.002159666968509555, + -0.0004534005420282483, + -0.0112443333491683, + -0.01761784963309765, + 0.016152163967490196, + -0.013627924956381321, + -0.02266632579267025, + 0.0035420760978013277, + -0.01178471278399229, + -0.008986583910882473, + -0.003164550755172968, + -0.022029714658856392, + -0.03884809836745262, + 0.001722922082990408, + 0.014242328703403473, + -0.003599445102736354, + 0.005599959287792444, + -0.015352698042988777, + -0.011481212452054024, + 0.01377597451210022, + 0.015663601458072662, + -0.00205233134329319, + 0.016463065519928932, + 0.01343546062707901, + -0.0005602735327556729, + -0.010785381309688091, + -0.010319026187062263, + -0.020919345319271088, + 0.009112426079809666, + 0.0062883878126740456, + 0.021333884447813034, + -0.012080810964107513, + -0.0031812062952667475, + 0.007587519474327564, + 0.008298154920339584, + 0.017647460103034973, + -0.001881149597465992, + 0.01383519358932972, + 0.018387705087661743, + -0.018787438049912453, + 0.012924691662192345, + 0.010681746527552605, + -0.021778030321002007, + -0.007184085436165333, + 0.0027703698724508286, + 0.006303193047642708, + 0.0014166453620418906, + 0.007750373333692551, + 0.0050928909331560135, + 0.007572714239358902, + -0.007698556408286095, + -0.0037660005036741495, + -0.02028273418545723, + 0.011851334944367409, + 0.01048188004642725, + -0.0056147645227611065, + -0.0025871589314192533, + 0.021896470338106155, + -0.0006657585618086159, + 0.012917288579046726, + -0.005648075137287378, + -0.0005524083971977234, + -0.01153302937746048, + 0.0050410740077495575, + -0.0225478857755661, + 0.00021363030828069896, + 0.01467907428741455, + -0.003927004057914019, + -0.0003562432830221951, + -0.029846709221601486, + -0.005803526844829321, + -0.012924691662192345, + 0.0015943043399602175, + -0.0007430217228829861, + -0.0007569013396278024, + 0.00021675322204828262, + 0.005755410995334387, + -0.0038233695086091757, + -0.005074385087937117, + 0.0012269574217498302, + -0.002389143221080303, + 0.007021231111139059, + 0.0036142501048743725, + -0.00371418334543705, + -0.008394387550652027, + -0.0068028587847948074, + 0.014360768720507622, + -0.0027352082543075085, + -0.015367502346634865, + -0.010585514828562737, + 0.01172549370676279, + 0.0011834679171442986, + 0.012635995633900166, + 0.0076689464040100574, + -0.0053741843439638615, + 0.0022651520557701588, + -0.014042462222278118, + 0.024975892156362534, + -0.003716033883392811, + 0.0005741531495004892, + -0.011473809368908405, + 0.001547113643027842, + 0.009068011306226254, + 0.0012537912698462605, + -0.012080810964107513, + 0.007047140039503574, + -0.016744360327720642, + -0.001481416868045926, + 0.004563615191727877, + 0.00017580836720298976, + 0.012280677445232868, + 0.004641341045498848, + 0.0033995788544416428, + 0.005192824173718691, + 0.0031108828261494637, + -0.005463013891130686, + -0.009253072552382946, + -0.03718994930386543, + 0.028469853103160858, + -0.03686423972249031, + 0.019912611693143845, + 0.019216781482100487, + 0.004959646612405777, + 0.005503727588802576, + 0.005148409400135279, + 0.0022947618272155523, + 0.028588293120265007, + -0.022695936262607574, + -0.005466714967042208, + 0.007050841115415096, + -0.014301548711955547, + 0.00043605102109722793, + -0.01567840576171875, + -0.012036396190524101, + -0.0018210046691820025, + -0.002059733960777521, + 0.004989256616681814, + 0.004789390135556459, + -0.0019246391020715237, + 0.004844908602535725, + -0.02567172423005104, + -0.035591017454862595, + -0.004030638374388218, + 0.0189058780670166, + -0.02811453491449356, + -0.0016488975379616022, + 0.00897918175905943, + -0.0014434793265536427, + -0.014582841657102108, + 0.009312291629612446, + -0.012798849493265152, + -0.0021300571970641613, + 0.0005681386683136225, + -0.011577444151043892, + 0.002483524614945054, + -0.008453606627881527, + -0.009475146420300007, + -0.019868196919560432, + 0.0002590860240161419, + 0.009860074147582054, + 0.006040405482053757, + -0.036953069269657135, + -0.005033671390265226, + 0.020978566259145737, + -0.00641793105751276, + -0.019675733521580696, + -0.0033348072320222855, + -0.0015193545259535313, + -0.017114482820034027, + 0.0024113506078720093, + 0.004963348153978586, + 0.0006338354432955384, + -0.00869048573076725, + 0.00897918175905943, + -0.0318305678665638, + -0.0056924899108707905, + -0.00494114076718688, + -0.025123942643404007, + -0.0023817408364266157, + 0.0077207633294165134, + 0.0131245581433177, + 0.014212719164788723, + 0.014952965080738068, + 0.01431635394692421, + -0.02453174628317356, + 0.009467743337154388, + 0.008949571289122105, + -0.018032386898994446, + -0.02152634784579277, + 0.008113093674182892, + -0.00035300469608046114, + -0.019631318747997284, + 0.004119467921555042, + -0.0026056652422994375, + 0.010726161301136017, + -0.028025705367326736, + 0.016004113480448723, + 0.0015600679907947779, + 0.02318449877202511, + -0.022340618073940277, + 0.007343238219618797, + -0.023362157866358757, + 0.01869860850274563, + -0.01619657874107361, + 0.00897177867591381, + -0.02925451286137104, + 0.008046471513807774, + -0.008127898909151554, + -0.005044775083661079, + 0.01071135699748993, + -0.023835914209485054, + 0.005215031560510397, + -0.004896725993603468, + 0.0148567333817482, + 0.007039737422019243, + 0.01687760464847088, + -0.00937151163816452, + -0.0079280324280262, + -0.015885675325989723, + -0.02068246714770794, + 0.01229548268020153, + -0.017173701897263527, + 0.006780651398003101, + 0.01669994555413723, + 0.0037567473482340574, + -0.026426775380969048, + 0.0014906699070706964, + -0.0094529390335083, + -0.011051869951188564, + 0.005537038668990135, + 0.0029683855827897787, + -0.03363676741719246, + -0.0006190305575728416, + 0.006014497019350529, + -0.008394387550652027, + 0.006066314410418272, + 0.00301094981841743, + 0.0023280729074031115, + -0.004278620705008507, + 0.0018598675960674882, + 0.007180384360253811, + -0.002936925273388624, + 0.002798129105940461, + -0.0008221354801207781, + -0.026485994458198547, + 0.01794355735182762, + -0.0015480390284210443, + 0.04784948751330376, + 0.003584640333428979, + 0.006999023724347353, + -0.010089550167322159, + -0.019897807389497757, + -0.019187171012163162, + 0.010437465272843838, + 0.0015378606040030718, + -0.02499069832265377, + -0.007802190724760294, + 0.0035198687110096216, + -0.011555236764252186, + 0.0006398499244824052, + 0.0071211643517017365, + 0.004063949454575777, + 0.022858789190649986, + 0.0006583561189472675, + 0.014005450531840324, + -0.016152163967490196, + 0.030764615163207054, + 0.015093611553311348, + -0.02334735170006752, + -0.0008091811905615032, + -0.020608441904187202, + 0.0278924610465765, + 0.02038636989891529, + -0.014020254835486412, + -0.050810471177101135, + 0.005751709919422865, + -0.00684727355837822, + 0.0035069144796580076, + 0.008409191854298115, + -0.012028994038701057, + 0.01246573869138956, + 0.0051039946265518665, + 0.023021643981337547, + -0.007661543786525726, + 0.01755863055586815, + -0.006314296741038561, + 0.008527631871402264, + -0.028203364461660385, + -0.00717298174276948, + 0.010245001874864101, + 0.018047193065285683, + -0.023243717849254608, + -0.0007902123616077006, + 0.009430731646716595, + 0.001523055718280375, + -0.02136349305510521, + -0.0012445382308214903, + 0.005588855594396591, + 0.007380250375717878, + -0.009571378119289875, + -0.005326068494468927, + 0.014079474844038486, + -0.0028517968021333218, + 0.011740298010408878, + -0.030024368315935135, + -0.021171029657125473, + -0.0006717730429954827, + 0.01329481415450573, + -0.007735568564385176, + 0.006144040264189243, + 0.01005253754556179, + 0.001870045904070139, + -0.01269521564245224, + 0.0037326894234865904, + -0.013280009850859642, + 0.00983046367764473, + -0.0060922228731215, + 0.0004531692247837782, + -0.0021485635079443455, + -0.002352131064981222, + 0.001674806117080152, + -0.008542436175048351, + -0.005714697297662497, + -0.01070395391434431, + -0.010763173922896385, + -0.030350077897310257, + -0.013975840061903, + -0.001393512706272304, + -0.013998047448694706, + -0.00710265850648284, + 0.003166401293128729, + 0.0013361437013372779, + -0.010822393000125885, + 0.018506145104765892, + 0.006062612868845463, + -0.0018691206350922585, + 0.004767182748764753, + -0.03307418152689934, + -0.002999846125021577, + -0.002390993991866708, + 0.021896470338106155, + 0.010326428338885307, + -0.010607722215354443, + -0.003197861835360527, + 0.020149489864706993, + 0.007139670662581921, + 0.01914275623857975, + -0.007576415780931711, + 0.0025001801550388336, + -0.012850666418671608, + -0.005307562183588743, + 0.010237598791718483, + -0.01778070442378521, + -0.013738961890339851, + -0.020800907164812088, + -0.008623863570392132, + -0.01247314177453518, + -0.010133964940905571, + 0.012184445746243, + -0.03414013609290123, + 0.015545161440968513, + 0.0028980623465031385, + -0.002589009702205658, + 0.029802296310663223, + 0.01846173033118248, + 0.027181824669241905, + 0.025864187628030777, + 0.0017682621255517006, + 0.028188560158014297, + 0.015441526658833027, + -0.009445535950362682, + 0.020253125578165054, + -0.004393358714878559, + 0.01096304040402174, + 0.0208453219383955, + -0.01948326826095581, + -0.002742610638961196, + 0.005611062981188297, + -0.01085200347006321, + 0.03328144922852516, + 0.006440138444304466, + -0.018565364181995392, + 0.0019024317152798176, + 0.02521277219057083, + -0.00515581201761961, + 0.003986223600804806, + 0.0005047551239840686, + -9.12584291654639e-5, + 0.044444356113672256, + 0.005485221277922392, + 0.0051076957024633884, + 0.016448261216282845, + -0.0031682520639151335, + -0.005303861107677221, + 0.006999023724347353, + 0.006258778274059296, + 0.016996042802929878, + -0.013724156655371189, + -0.019468463957309723, + -0.008113093674182892, + 0.002107849810272455, + -0.004308230709284544, + 0.008216728456318378, + 0.0034847070928663015, + 0.006373516283929348, + -0.0028388425707817078, + -0.0032718863803893328, + -0.00010947541159112006, + -0.004015833605080843, + 0.00897177867591381, + 0.025701332837343216, + -0.0035457774065434933, + -0.0009836015524342656, + 0.0028684523422271013, + 0.0023132681380957365, + 0.012362104840576649, + 0.006906493101269007, + -0.008246337994933128, + -0.01698123849928379, + -0.013968437910079956, + -0.012058603577315807, + 0.008683082647621632, + 0.011059272103011608, + 0.011792114935815334, + 0.015367502346634865, + -0.003456947859376669, + 0.0029017634224146605, + -0.0074357688426971436, + 0.03242276608943939, + 0.023258522152900696, + 0.020179100334644318, + -0.004078754223883152, + 0.0068102614022791386, + 0.0016562999226152897, + 0.016329821199178696, + 0.008986583910882473, + 0.012288080528378487, + 0.0027018971741199493, + -0.0013805583585053682, + -0.011496016755700111, + -0.013442863710224628, + -0.02453174628317356, + 0.0023021644446998835, + 0.0011566340690478683, + -0.005636971443891525, + -0.017484605312347412, + -0.011688481085002422, + 0.0034162343945354223, + 0.02180764079093933, + 0.0017368016997352242, + -0.01337624154984951 + ], + "0843f367-b0f1-49e1-a25e-38e3df5f4da9": [ + -0.02430947870016098, + -0.035624437034130096, + -0.00930390041321516, + 0.023233968764543533, + -0.0023664908949285746, + -0.003191540017724037, + -0.00013340286386664957, + 0.022232122719287872, + -0.039455022662878036, + 0.027256082743406296, + -0.004265208728611469, + 0.02865571901202202, + 0.004029480274766684, + -0.019256053492426872, + -0.009244968183338642, + 0.039013031870126724, + -0.007587504107505083, + 0.01704610139131546, + -0.0035561821423470974, + -0.026445766910910606, + 0.04555448889732361, + -0.016972435638308525, + -0.03005535528063774, + 0.01931498572230339, + 0.02345496416091919, + -0.015410736203193665, + -0.011919011361896992, + 0.004559868946671486, + -0.03577176854014397, + -0.011049763299524784, + -0.021613337099552155, + 0.028478922322392464, + -0.006294681690633297, + -0.006036853883415461, + 0.028788316994905472, + -0.02551758661866188, + 0.0007863747887313366, + 0.015646465122699738, + -0.01409949827939272, + -0.017281830310821533, + -0.023160303011536598, + 0.023631760850548744, + -0.009502796456217766, + -0.025650182738900185, + -0.04137031361460686, + 0.006736672483384609, + -0.02506086230278015, + -0.007333359681069851, + 0.02289510890841484, + -0.03677361086010933, + 0.03509404882788658, + 0.01704610139131546, + -0.00995951984077692, + 0.03202958032488823, + 0.023587560281157494, + -0.019035058096051216, + -0.023513896390795708, + 0.016928236931562424, + 0.015219206921756268, + -0.03792278841137886, + -0.009524895809590816, + -0.026961421594023705, + -0.020655689761042595, + 0.006489894352853298, + -0.006147351581603289, + -0.018548868596553802, + -0.01349544432014227, + -0.026873024180531502, + -0.03565390408039093, + -0.005005542654544115, + -0.020552558824419975, + -0.002416214905679226, + -0.019933773204684258, + -0.023793824017047882, + 0.03801118582487106, + -0.038718368858098984, + 0.06405916064977646, + 0.008206291124224663, + 0.015020311810076237, + -0.029171375557780266, + 0.004147344268858433, + -0.01946231536567211, + -0.0021878532133996487, + -0.003027635160833597, + 0.07566878199577332, + -0.024839866906404495, + -0.04620274156332016, + -0.04266681894659996, + -0.014460456557571888, + -0.005539614707231522, + 0.010180515237152576, + 0.008191557601094246, + 0.008884009905159473, + -0.008537783287465572, + -0.029127174988389015, + 0.020714621990919113, + 0.022173192352056503, + 0.006548826117068529, + -0.018976125866174698, + -0.03600749373435974, + -0.027315014973282814, + -0.021863797679543495, + -0.037303999066352844, + -0.0017633580137044191, + -0.0005455820355564356, + 0.02970176376402378, + 0.02304244041442871, + 0.006523043382912874, + -0.02006636932492256, + 0.05769449844956398, + -0.046173278242349625, + -0.0285967867821455, + 0.04643847048282623, + -0.006158401258289814, + -0.05583813786506653, + -0.02622477151453495, + 0.02162807062268257, + 0.006891368888318539, + -0.0008922683773562312, + -0.025001930072903633, + 0.030733074992895126, + 0.012088441289961338, + 0.006147351581603289, + 0.027226615697145462, + 0.004368339665234089, + 0.016766173765063286, + 0.005535931326448917, + -0.00024723843671381474, + 0.02663729526102543, + 0.007068165112286806, + -0.02470727078616619, + 0.029127174988389015, + 0.003432793077081442, + 0.012117907404899597, + -0.016604110598564148, + 0.024073751643300056, + 0.026858290657401085, + 0.04767604544758797, + -0.030998269096016884, + 0.007565404754132032, + -0.044464245438575745, + -0.021922729909420013, + -0.017075566574931145, + -0.011631716974079609, + -0.011992676183581352, + 0.017679620534181595, + -0.028478922322392464, + 0.031351860612630844, + -0.04540716111660004, + 0.0392487570643425, + -0.011624351143836975, + -0.00401106383651495, + -0.01139598898589611, + -0.00011095804075011984, + -0.002180486684665084, + 0.005753243342041969, + -0.006714572664350271, + 0.026210037991404533, + 0.0226004496216774, + 0.03544763848185539, + 0.00983428955078125, + -0.07077741622924805, + 0.03132239356637001, + 0.01205160841345787, + 0.026239505037665367, + 0.009259701706469059, + 0.005495415534824133, + 0.03238317370414734, + -0.05159502848982811, + 0.03311982378363609, + 0.006699839606881142, + -0.042548954486846924, + 0.0023075588978827, + 0.010438342578709126, + 0.0027182416524738073, + 0.019992705434560776, + 0.015616999007761478, + 0.0030994585249572992, + 0.052272748202085495, + -0.007565404754132032, + -0.03323768824338913, + 0.005720093846321106, + -0.007458589971065521, + -0.0041105118580162525, + 0.02289510890841484, + 0.005657478701323271, + -0.009694325737655163, + -0.013303915038704872, + -0.0034751505590975285, + -0.011042396537959576, + -0.011594885028898716, + -0.02078828774392605, + 0.022718312218785286, + 0.0069097853265702724, + -0.040928322821855545, + -0.03317875415086746, + 0.032501038163900375, + -0.030585745349526405, + 0.007001866586506367, + 0.014939280226826668, + -0.026357367634773254, + -0.014836148358881474, + -0.07454907149076462, + 0.009244968183338642, + -0.023793824017047882, + 0.02506086230278015, + -0.015425469726324081, + 0.005281786900013685, + 0.0489136166870594, + -0.004232059232890606, + 0.06783081591129303, + -0.05256740748882294, + 0.00027302122907713056, + -0.02531132474541664, + -0.007248644717037678, + -0.0006040537264198065, + 0.023690693080425262, + 0.029392370954155922, + -0.009163936600089073, + -0.011580151505768299, + -0.028817782178521156, + -0.029362903907895088, + -0.040221139788627625, + -0.014924546703696251, + -0.04696885868906975, + 0.006607758346945047, + -0.0083683542907238, + 0.03786385431885719, + -0.010674071498215199, + -0.0029392370488494635, + 0.016913503408432007, + 0.0023775408044457436, + 0.030850939452648163, + -0.029922759160399437, + -0.001017499016597867, + 0.0332966186106205, + -0.000554329773876816, + 0.01719343103468418, + 0.022556249052286148, + -0.011587518267333508, + 0.02320450358092785, + 0.023278167471289635, + -0.007852698676288128, + -0.02218792401254177, + 0.008670381270349026, + -0.001662989379838109, + 0.022836176678538322, + 0.04552502557635307, + 0.02083248645067215, + -0.026504699140787125, + -0.015440202318131924, + -0.011182360351085663, + -0.0058158584870398045, + -0.022762512788176537, + -0.042136430740356445, + 0.08344781398773193, + 0.03591909632086754, + -0.04266681894659996, + 0.01218420546501875, + -0.02087668515741825, + 0.018828796222805977, + 0.022865643724799156, + 0.021510206162929535, + 0.02102401666343212, + 0.03550657257437706, + -0.0027955900877714157, + 0.01482878252863884, + -0.03155812248587608, + 0.026342635974287987, + 0.03223584219813347, + 0.01835734024643898, + -0.019756976515054703, + -0.011410722509026527, + -0.016147388145327568, + -0.01860780082643032, + 0.0012919014552608132, + -0.03282516449689865, + 0.00532230269163847, + -0.02582697942852974, + -0.00862618163228035, + -0.03332608565688133, + -0.05613279715180397, + 0.02909770980477333, + 0.010291012935340405, + 0.020803021267056465, + 0.007443856913596392, + -0.0016335233813151717, + -0.008640915155410767, + -0.03435739874839783, + -0.020140035077929497, + -0.003642738563939929, + -0.012014775536954403, + 0.04004434123635292, + 0.023130837827920914, + 0.037657592445611954, + 0.025650182738900185, + -0.01937391795217991, + 0.0036924625746905804, + -0.006279948633164167, + 0.016073722392320633, + -0.03960235044360161, + 0.009532262571156025, + 0.013768005184829235, + -0.033620744943618774, + -0.01046044286340475, + -0.024014819413423538, + 0.0453776940703392, + 0.020861953496932983, + -0.009325999766588211, + 0.01679564081132412, + 0.02164280228316784, + -0.03146972507238388, + -0.02339603193104267, + -0.005985288415104151, + 0.01896139420568943, + 0.03727453574538231, + -0.03152865916490555, + 0.0043572899885475636, + -0.023985352367162704, + -0.00839782040566206, + -0.004692465998232365, + 0.002780857030302286, + -0.03202958032488823, + 0.013399679213762283, + 0.0030202686320990324, + -0.047027792781591415, + 0.018431004136800766, + -0.030350016430020332, + 0.010983464308083057, + -0.020007437095046043, + -0.019491782411932945, + -0.02759494259953499, + -0.025134528055787086, + -0.02844945713877678, + -0.024176882579922676, + -0.03706827387213707, + -0.05572027340531349, + -0.025797514244914055, + -0.007001866586506367, + -0.0127882594242692, + -0.05079944431781769, + -0.027521276846528053, + -0.002550653647631407, + -0.009046073071658611, + -0.016353650018572807, + 0.001144571346230805, + 0.011793780140578747, + 0.016221052035689354, + 0.008066327311098576, + -0.009686958976089954, + 0.0008411632152274251, + -0.012294703163206577, + 0.04366866499185562, + -0.015292872674763203, + 0.048294831067323685, + -0.03494671732187271, + -0.01876986399292946, + 0.0071897124871611595, + -0.008250489830970764, + 0.01046044286340475, + 0.04493570327758789, + -0.07761353999376297, + -0.015808528289198875, + -0.023027706891298294, + -0.006405179388821125, + -0.0003759221581276506, + -0.008810344152152538, + -0.0184604711830616, + 0.004397805780172348, + 0.013760638423264027, + 0.0047182487323880196, + -0.01916765607893467, + 0.00925233494490385, + -0.002825056202709675, + 0.014151063747704029, + -0.022865643724799156, + 0.024147415533661842, + 0.0049024117179214954, + -0.030644675716757774, + 0.022615181282162666, + -0.04679206386208534, + 0.02697615511715412, + 0.0406336635351181, + -0.012397834099829197, + 0.012898757122457027, + 0.0015699871582910419, + 0.0067514050751924515, + -0.0513298325240612, + -0.00912710465490818, + 0.007771666627377272, + -0.02420634776353836, + 0.01588219217956066, + -0.03538870811462402, + -0.013105018995702267, + -0.021009283140301704, + 0.016530444845557213, + 0.03294302895665169, + 0.009849022142589092, + 0.0017154756933450699, + -0.039337158203125, + -0.0029208208434283733, + -0.002335183322429657, + -0.003060784423723817, + 0.004946610424667597, + -0.021775400266051292, + -0.02016950026154518, + -0.009981619194149971, + -0.014136330224573612, + 0.012729327194392681, + -0.0004742190067190677, + 0.012957689352333546, + -0.04266681894659996, + 0.008036861196160316, + 0.015049776993691921, + 0.016412582248449326, + 0.029672296717762947, + 0.018784597516059875, + 0.009370199404656887, + -0.03889516741037369, + -0.014674085192382336, + 0.023793824017047882, + 0.028979845345020294, + 0.003841634374111891, + 0.01516027469187975, + -0.025252392515540123, + 0.007639069575816393, + 0.036390554159879684, + 0.010291012935340405, + -0.010578306391835213, + -0.02607744187116623, + 0.0142762940376997, + 0.0015598582103848457, + -0.023086639121174812, + -0.011226559057831764, + -0.05280313640832901, + -0.045819684863090515, + 0.002453047316521406, + -0.0036059061530977488, + -0.028434723615646362, + -0.04805910214781761, + -0.02324870228767395, + 0.01952124759554863, + -0.0023922736290842295, + -0.018180543556809425, + -0.022305788472294807, + -0.03015848621726036, + -0.003217322751879692, + 0.04160604253411293, + 0.019197121262550354, + -0.006180501077324152, + 0.004541452508419752, + 0.049002017825841904, + -0.005668528378009796, + 0.008265222422778606, + 0.014769850298762321, + -0.03733346611261368, + 0.011197092942893505, + -0.04060419648885727, + -0.0029908025171607733, + -0.046880461275577545, + 0.020744089037179947, + 0.009399665519595146, + 0.03913089632987976, + -0.007720101159065962, + 0.0025396039709448814, + -0.04458210989832878, + -0.0071344636380672455, + 0.016221052035689354, + 0.03253050148487091, + -0.010438342578709126, + -0.012493599206209183, + 0.011071862652897835, + -0.06635750830173492, + -0.01283982489258051, + 0.016221052035689354, + -0.014968745410442352, + -0.0077422005124390125, + -0.015307605266571045, + 0.013878502883017063, + 0.006953984498977661, + -0.03474045544862747, + -0.025753315538167953, + 0.012537797912955284, + 0.012383101508021355, + -0.03771652653813362, + 0.029628098011016846, + -0.0027403412386775017, + -0.06836120039224625, + -0.029024044051766396, + 0.009650126099586487, + 0.020640958100557327, + -0.0034825170878320932, + 0.012405200861394405, + 0.034769922494888306, + 0.003970548044890165, + 0.006044220644980669, + -0.0025911694392561913, + -0.0002688775712158531, + 0.02743287943303585, + -0.001044202595949173, + 0.015572799369692802, + -0.04858949035406113, + 0.0028471555560827255, + -0.020567292347550392, + -0.0008462276891805232, + 0.0333850160241127, + 0.0035745983477681875, + -0.01810687780380249, + -0.004839796107262373, + -0.028066398575901985, + -0.034268997609615326, + 0.026092173531651497, + -0.033060889691114426, + 0.012869291007518768, + 0.008913476020097733, + 0.02466307207942009, + -0.0036814126651734114, + 0.0013600416714325547, + 0.032854627817869186, + 0.00779376644641161, + 0.010659337975084782, + -0.007683268748223782, + -0.005366501864045858, + 0.029539700597524643, + 0.013318647630512714, + -0.007683268748223782, + -0.02208479307591915, + -0.012567264027893543, + -0.0255765188485384, + -0.030291084200143814, + -0.013834303244948387, + 0.0043020411394536495, + -0.032707300037145615, + 0.005767976399511099, + 0.02184906415641308, + 0.001372012309730053, + -0.02224685624241829, + 0.03117506578564644, + 0.02703508734703064, + 0.01704610139131546, + -0.0185046698898077, + 0.018475204706192017, + -0.0051491898484528065, + -0.013834303244948387, + -0.02869991771876812, + -0.008884009905159473, + -0.013635408133268356, + 0.018136344850063324, + 0.007112364284694195, + -0.0010018452303484082, + -0.028861980885267258, + 0.03479938581585884, + -0.01348807755857706, + 0.029024044051766396, + 0.005930039566010237, + -0.05239060893654823, + 0.032206375151872635, + -0.005079207941889763, + 0.006257849279791117, + -0.043344538658857346, + -0.017488092184066772, + 0.010976098477840424, + 0.016265250742435455, + 0.0006915309932082891, + -0.02320450358092785, + 0.017517557367682457, + -0.03892463073134422, + 0.002009215299040079, + 0.022099526599049568, + 0.019447583705186844, + 0.010092116892337799, + 0.015749596059322357, + 0.05250847339630127, + -0.011329690925776958, + -0.029922759160399437, + 0.003896883223205805, + -0.0013996366178616881, + -0.028965111821889877, + -0.028861980885267258, + -0.010143682360649109, + 0.021598603576421738, + -0.018799331039190292, + 0.023793824017047882, + -0.04131137952208519, + 0.014062665402889252, + 0.004195226822048426, + -0.00563537934795022, + -0.03191171586513519, + -0.0025046130176633596, + 0.03173492103815079, + 0.015012945048511028, + 0.002880305051803589, + -0.009237602353096008, + 0.002333341632038355, + -0.0134144127368927, + 0.021966928616166115, + -0.016265250742435455, + -0.0030736757908016443, + 0.003316770540550351, + 0.037392400205135345, + 0.004906094633042812, + 0.03697987273335457, + -0.017429159954190254, + -0.023337099701166153, + -0.04805910214781761, + 0.03082147240638733, + -0.015020311810076237, + 0.01205160841345787, + 0.012147372588515282, + 0.00789689738303423, + 0.04490623623132706, + -0.013274448923766613, + 0.011432821862399578, + -0.02537025697529316, + 0.039337158203125, + 0.036243222653865814, + -0.010291012935340405, + 0.04172390699386597, + 0.014563587494194508, + -0.03158758953213692, + 0.030129021033644676, + -0.018931927159428596, + 0.05109410360455513, + -0.006710889283567667, + 0.008832444436848164, + 0.03786385431885719, + -0.028611520305275917, + 0.014740384183824062, + -0.018445737659931183, + -0.018696200102567673, + -0.0061031524091959, + -0.004084729123860598, + -0.00019716921087820083, + -0.01700190268456936, + 0.029421836137771606, + 0.014151063747704029, + 0.04310880973935127, + 0.019506515935063362, + -0.022909842431545258, + 0.028081132099032402, + -0.015337071381509304, + -0.027418145909905434, + 0.0160442553460598, + 0.03647895157337189, + -0.0036556299310177565, + 0.013804837130010128, + -4.9781483539845794e-5, + 0.02299823984503746, + 0.03627268970012665, + 0.0226004496216774, + -0.04272574931383133, + 0.0063646635971963406, + -0.016353650018572807, + 0.032559968531131744, + 0.0030018524266779423, + -0.01910872384905815, + -0.02083248645067215, + 0.021716468036174774, + -0.02002217061817646, + -0.008051593787968159, + 0.0285525880753994, + -0.025944843888282776, + 0.015823259949684143, + 0.017326029017567635, + 0.030585745349526405, + 0.024294745177030563, + -0.0028471555560827255, + 0.023513896390795708, + 0.010438342578709126, + 0.07566878199577332, + 0.009694325737655163, + -0.012574630789458752, + 0.01956544816493988, + 0.008493584580719471, + -0.002053414238616824, + -0.010909799486398697, + -0.0011648292420431972, + -0.0026961422991007566, + 0.0032559968531131744, + 0.010784569196403027, + 0.0016279984265565872, + -0.028685186058282852, + -0.024147415533661842, + 0.016309451311826706, + 0.020287364721298218, + -0.009679592214524746, + -0.012412567622959614, + -0.009510163217782974, + -0.02234998717904091, + -0.027565475553274155, + 0.0014548854669556022, + 0.015292872674763203, + 0.005712727550417185, + -0.008383086882531643, + -0.039366621524095535, + 0.021009283140301704, + -0.027167685329914093, + -0.0023554412182420492, + 0.005027642473578453, + -0.008095793426036835, + -0.04979759827256203, + 0.002996327355504036, + -0.011712748557329178, + -0.016353650018572807, + -0.0013342589372768998, + 0.02451574057340622, + -0.01815107837319374, + -0.038659438490867615, + -0.01871093176305294, + -0.03146972507238388, + 0.015499134548008442, + 0.013561742380261421, + -0.011742214672267437, + -0.0012661187211051583, + 0.011145527474582195, + -0.010659337975084782, + -0.02990802563726902, + 0.006920835003256798, + -0.01265566237270832, + -0.009097638539969921, + -0.016987169161438942, + 0.02628370374441147, + -0.004453054629266262, + -0.04508303478360176, + 0.0039742314256727695, + -0.0021878532133996487, + 0.023130837827920914, + -0.0029908025171607733, + -0.010828767903149128, + 0.0024125315248966217, + 0.0499449297785759, + -0.005709044169634581, + -0.004556185565888882, + -0.0037035122513771057, + 0.005488049238920212, + -0.022320521995425224, + 0.003171282121911645, + 0.023690693080425262, + 0.02582697942852974, + 0.01588219217956066, + 0.009701692499220371, + -0.007543304935097694, + 0.008611449040472507, + -0.020891418680548668, + 0.00534440204501152, + 0.004217326175421476, + 0.0008779957424849272, + 0.008788244798779488, + 0.017930082976818085, + -0.009377565234899521, + 0.0005078287213109434, + -0.030099553987383842, + -0.006541459821164608, + -0.012589363381266594, + 0.00847148522734642, + 0.029878560453653336, + 0.0024677803739905357, + -0.007756933569908142, + -0.0011832454474642873, + 0.03783439099788666, + -0.0029373953584581614, + 0.0033554446417838335, + -0.014018465764820576, + -0.03963181748986244, + 0.02068515680730343, + -0.023513896390795708, + 0.0019963239319622517, + 0.011720115318894386, + 0.0321769118309021, + -0.0006864665192551911, + 0.027270816266536713, + -0.0018738557118922472, + 0.021760666742920876, + 0.0006058953586034477, + -0.040574729442596436, + -0.03282516449689865, + -0.019963238388299942, + -0.0056722117587924, + 0.02416214905679226, + -0.0063904463313519955, + -0.01147702056914568, + -0.03650841861963272, + 0.03161705657839775, + -0.0006919914158061147, + -0.0017412585439160466, + 0.008294688537716866, + 0.015955857932567596, + 0.00017391867004334927, + -0.020346296951174736, + -0.005042375065386295, + 0.010342578403651714, + 0.023926420137286186, + 0.006714572664350271, + -0.0025064547080546618, + 0.034475259482860565, + 0.009119737893342972, + 0.014519388787448406, + -0.013208149932324886, + 0.00017173173546325415, + 0.013664874248206615, + 0.00565011240541935, + -0.032000113278627396, + 0.03267783299088478, + 0.01594112440943718, + -0.013871136121451855, + -0.05135929957032204, + -0.0256649162620306, + 0.011101328767836094, + -0.014158429577946663, + 0.02567964978516102, + -0.007521205581724644, + -0.006232066545635462, + -0.008007395081222057, + 0.0068876855075359344, + -0.007263377774506807, + -0.017075566574931145, + 0.024648338556289673, + 0.03191171586513519, + 0.02295404113829136, + -0.0006146430969238281, + -0.014769850298762321, + 0.01658937707543373, + 0.008788244798779488, + -0.008861909620463848, + -0.005123406648635864, + -0.02052309364080429, + 0.011683283373713493, + -0.01769435405731201, + 0.03606642782688141, + 0.024250546470284462, + -0.005421750247478485, + -0.018651999533176422, + -0.034828852862119675, + 0.05577920377254486, + -0.007985295727849007, + 0.02699088864028454, + -0.04378652945160866, + 0.02012530155479908, + -0.06600391864776611, + 0.007661168929189444, + -0.021407075226306915, + -0.012721960432827473, + -0.01545493584126234, + -0.0023499163798987865, + 0.017178699374198914, + 0.022099526599049568, + 0.0019042425556108356, + -6.520510942209512e-5, + 0.0024383144918829203, + 0.02305717207491398, + 0.031705453991889954, + -0.000299724837532267, + 0.05622119456529617, + 0.013046086765825748, + 0.007012916263192892, + 0.011049763299524784, + -0.0032652050722390413, + 0.014033199287950993, + 0.012559897266328335, + -0.0025838029105216265, + 0.01745862513780594, + -0.022659381851553917, + -0.002589327748864889, + -0.005381234455853701, + -0.004622484091669321, + -0.0047182487323880196, + 0.016265250742435455, + -0.023543361574411392, + 0.009348100051283836, + 0.033414483070373535, + -0.006677740253508091, + -0.004976076539605856, + 0.03096880204975605, + 0.009016606956720352, + -0.004810330457985401, + -0.024648338556289673, + 0.00225599342957139, + -0.03680307790637016, + -0.02749181166291237, + 0.012626196257770061, + -0.0011068179737776518, + -0.0036390554159879684, + -0.03282516449689865, + -0.005697994492948055, + -0.032559968531131744, + 0.029642831534147263, + 0.02243838645517826, + -0.01064460538327694, + -0.018755130469799042, + 0.020257899537682533, + 0.011771680787205696, + 0.02012530155479908, + -0.012802992016077042, + -0.04033900052309036, + -0.008383086882531643, + -0.006456744857132435, + -0.001054331543855369, + -0.0026298435404896736, + -0.019830642268061638, + 0.007318626623600721, + 0.0018931927625089884, + -0.027771737426519394, + -0.011440187692642212, + -0.012464133091270924, + 0.019933773204684258, + -0.02077355422079563, + -0.0029650197830051184, + -0.0043830727227032185, + 0.021112414076924324, + -0.009664859622716904, + 0.00033448555041104555, + 0.01142545510083437, + -0.002480671741068363, + -0.012928223237395287, + 0.012545164674520493, + -0.017222898080945015, + 0.012508331798017025, + -0.012375734746456146, + -0.001834260649047792, + -0.03574230149388313, + 0.02208479307591915, + -0.01735549420118332, + -0.006541459821164608, + 0.02304244041442871, + -0.015189740806818008, + -0.004397805780172348, + -0.006044220644980669, + 0.011609617620706558, + 0.006917151622474194, + 0.003252313705161214, + 0.007178662810474634, + -0.006791921332478523, + 0.008611449040472507, + 0.004139977972954512, + 0.0021510205697268248, + -0.002725608181208372, + -0.037745989859104156, + -0.03353234753012657, + -0.03753972798585892, + -0.01856360211968422, + 5.3522289817919955e-5, + -0.010784569196403027, + -0.01353964302688837, + -0.014342593029141426, + 0.028626253828406334, + -0.016677776351571083, + 0.0072707440704107285, + 0.03612535819411278, + -0.0010884016519412398, + -0.03197064995765686, + 0.0023941153194755316, + 0.01956544816493988, + -0.0025303957518190145, + 0.006839803420007229, + 0.008994507603347301, + 0.021466007456183434, + -0.014011099934577942, + -0.01194847747683525, + 0.0013867452507838607, + 0.015012945048511028, + -0.016928236931562424, + -0.013222883455455303, + -0.0045488192699849606, + 0.001207186607643962, + -0.04540716111660004, + 0.037745989859104156, + -0.02824319526553154, + 0.0016224735882133245, + -0.019197121262550354, + -0.022011129185557365, + -0.014534121379256248, + -0.01931498572230339, + 0.0005520277773030102, + -0.014607787132263184, + -0.015337071381509304, + -0.03509404882788658, + -0.017944814637303352, + 0.004069996066391468, + 0.005915306508541107, + 0.007513838820159435, + 0.026092173531651497, + -0.017031367868185043, + -0.009620660915970802, + -0.042342692613601685, + -0.0035782817285507917, + -0.007882164791226387, + -0.009141837246716022, + -0.0019760660361498594, + -0.009539629332721233, + 0.009915321134030819, + -0.002441997639834881, + -0.030585745349526405, + 0.004725615493953228, + 0.02672569453716278, + 0.001825973391532898, + 0.019639112055301666, + -0.022467851638793945, + -0.0160442553460598, + -0.012456766329705715, + -0.0333850160241127, + -0.0031768069602549076, + -0.0007481610518880188, + -0.0415765754878521, + 0.03998541086912155, + 0.021598603576421738, + 0.0009493588004261255, + 0.012795626185834408, + 0.02274777926504612, + 0.0184604711830616, + 0.0026758844032883644, + -0.026195304468274117, + -0.007749567274004221, + -0.011558052152395248, + -0.00419891020283103, + -0.000826890638563782, + 0.01835734024643898, + -0.0019502831855788827, + -0.01424682792276144, + 0.015572799369692802, + 0.03102773427963257, + 0.006158401258289814, + -0.007837965153157711, + 0.02430947870016098, + 0.003189698327332735, + 0.015528600662946701, + 0.009930053725838661, + 0.0034825170878320932, + -0.007359142415225506, + -0.0018001905409619212, + -0.010497274808585644, + -0.026357367634773254, + -0.02077355422079563, + 0.008633548393845558, + -0.017326029017567635, + 0.008847177028656006, + -0.02274777926504612, + -0.0033480783458799124, + -0.04953240603208542, + -0.019653845578432083, + 0.016972435638308525, + 0.024324212223291397, + 0.0015073718968778849, + -0.015749596059322357, + 0.006232066545635462, + 0.017060834914445877, + 0.012162106111645699, + 0.016869304701685905, + -0.0023112420458346605, + 0.016810372471809387, + -0.009900587610900402, + 0.021171346306800842, + 0.00016102727386169136, + 0.00214365404099226, + 0.003797435201704502, + 0.009524895809590816, + -0.012088441289961338, + -0.034976184368133545, + 0.009944787248969078, + -0.006460428237915039, + 0.007200762163847685, + 0.008243123069405556, + -0.029628098011016846, + 0.013127118349075317, + 0.0014871140010654926, + -0.005392284598201513, + -0.019653845578432083, + -0.00038029602728784084, + 0.008324154652655125, + -0.029171375557780266, + 0.002281776163727045, + -0.003930032253265381, + 0.019138189032673836, + 0.010327844880521297, + -0.0027495494578033686, + -0.017488092184066772, + 0.02310137078166008, + 0.003672204678878188, + 0.024736735969781876, + -0.012140006758272648, + -0.0134144127368927, + -0.015012945048511028, + -0.01498347893357277, + -0.0072707440704107285, + 0.0012532273540273309, + -0.054040707647800446, + -0.0007417153683491051, + 0.008802978321909904, + 0.008633548393845558, + -0.006268898956477642, + 0.022718312218785286, + -0.012515698559582233, + 0.0012790100881829858, + 8.788015111349523e-5, + 0.015337071381509304, + 0.0027495494578033686, + 0.03326715528964996, + 0.014762483537197113, + 0.054453231394290924, + -0.00993742048740387, + -0.0017965072765946388, + -0.021259743720293045, + -0.033414483070373535, + 0.0075175222009420395, + 0.00019129902648273855, + 0.006917151622474194, + 0.03927822411060333, + -0.005716410931199789, + 0.008751412853598595, + -0.005664845462888479, + -0.005801125895231962, + 0.01260409690439701, + 0.011035029776394367, + 0.02728554792702198, + 0.022467851638793945, + 0.0039410823956131935, + -0.008302055299282074, + -0.001871093176305294, + -0.006184183992445469, + -0.025812245905399323, + 0.0062210168689489365, + 0.004003697540611029, + -0.010600405745208263, + -0.012920856475830078, + -0.004095778800547123, + -0.029480768367648125, + -0.0034677840303629637, + 0.019035058096051216, + 0.013237616047263145, + 0.01891719549894333, + -0.002180486684665084, + 0.01594112440943718, + -0.03527084365487099, + 0.024235814809799194, + 0.007639069575816393, + -0.015425469726324081, + -0.010136316530406475, + -0.024574672803282738, + -0.0018499145517125726, + -0.01714923232793808, + 0.0064456951804459095, + -0.026165839284658432, + -0.014261561445891857, + 0.008736679330468178, + -0.00601475453004241, + -0.010408876463770866, + -0.03158758953213692, + -0.023366566747426987, + -0.021303944289684296, + 0.027462344616651535, + -0.012265237048268318, + 0.020449427887797356, + -0.016014790162444115, + -0.008906109258532524, + 0.009767990559339523, + -0.014136330224573612, + 0.011919011361896992, + -0.023675959557294846, + -0.01407003216445446, + -0.001244019134901464, + 0.0050681582652032375, + 0.004681416321545839, + 0.004430954810231924, + 0.001772566232830286, + -0.014003733173012733, + 0.0071897124871611595, + 0.000990795437246561, + 0.028257926926016808, + -0.0021860115230083466, + -0.022408919408917427, + 0.026254236698150635, + 0.005171289201825857, + 0.020198967307806015, + 0.01202950906008482, + 0.009723791852593422, + 0.017281830310821533, + 0.022364720702171326, + -0.028464190661907196, + -0.012066341005265713, + 0.01121919322758913, + -0.005458583123981953, + 0.006515677087008953, + -0.007252328097820282, + 0.00020603204029612243, + 0.0015488084172829986, + 0.004755081608891487, + 0.015572799369692802, + -0.004939244128763676, + -0.016456780955195427, + 0.037303999066352844, + 0.011837979778647423, + 0.023278167471289635, + -0.022364720702171326, + -0.015189740806818008, + -0.01664830930531025, + -0.004047896713018417, + 0.012375734746456146, + -0.00021270793513394892, + -0.008117892779409885, + 0.0036814126651734114, + 0.029230307787656784, + -0.005156556144356728, + -0.014305760152637959, + 0.017576489597558975, + -0.018872994929552078, + 0.0005322302458807826, + -0.04402225837111473, + -0.019963238388299942, + -0.0030405265279114246, + -0.0023830656427890062, + -0.03061521053314209, + -0.03332608565688133, + -0.0008522130083292723, + -0.020950350910425186, + -0.019256053492426872, + -0.012058975175023079, + -0.01001108530908823, + -0.013547009788453579, + -0.02732974849641323, + 0.018976125866174698, + 0.015499134548008442, + 0.014313126914203167, + 0.009981619194149971, + 0.011830613017082214, + 0.0027771738823503256, + 0.0017458625370636582, + -0.006548826117068529, + 0.031793851405382156, + 0.018976125866174698, + 0.012537797912955284, + -0.02759494259953499, + -0.0016924553783610463, + 0.008000028319656849, + 0.009112371131777763, + 0.024250546470284462, + 0.006666690576821566, + -0.014445723965764046, + 0.0008816790068522096, + 0.012213671579957008, + -0.012375734746456146, + 0.010268913581967354, + 0.0016381273744627833, + -0.004545135889202356, + -0.0184604711830616, + -0.04293201491236687, + 0.002852680627256632, + -9.387982572661713e-6, + -0.026092173531651497, + -0.004158394411206245, + 0.0002325054374523461, + 0.004637217149138451, + -0.008139992132782936, + -0.006788237951695919, + 0.003300196025520563, + -0.007119730580598116, + -0.011985309422016144, + -0.01710503362119198, + -0.03317875415086746, + 0.02093561738729477, + 0.014416257850825787, + -0.005027642473578453, + -0.02844945713877678, + 0.03633162006735802, + 0.0025653867051005363, + 0.011440187692642212, + -0.049090415239334106, + 0.008972407318651676, + 0.014622519724071026, + 0.013082919642329216, + -0.0018213692819699645, + -0.03297249227762222, + -0.003878466784954071, + 0.006880319211632013, + 0.022806711494922638, + 0.011992676183581352, + -0.009171303361654282, + 0.02749181166291237, + -0.011889545246958733, + 0.011779047548770905, + 0.015020311810076237, + 0.0006132618291303515, + -0.00489136204123497, + 0.002979752840474248, + 0.017620688304305077, + -0.021495472639799118, + -0.009598560631275177, + 0.028478922322392464, + 0.01679564081132412, + 0.015896925702691078, + 0.013090286403894424, + -0.008957674726843834, + 0.002407006686553359, + -0.010622506029903889, + -0.017974281683564186, + 0.04169443994760513, + -0.00741439126431942, + 0.025797514244914055, + -0.0012744059786200523, + -0.006239432841539383, + -0.006287315394729376, + 0.02041996270418167, + -0.028537854552268982, + 0.008604082278907299, + -0.029333438724279404, + -0.010217348113656044, + -0.016574645414948463, + 0.0050460584461688995, + 0.010467808693647385, + -2.8185528208268806e-5, + 0.007690635044127703, + 0.0009686959092505276, + 0.0029116126243025064, + -0.003626164048910141, + -0.017782751470804214, + -0.0033462366554886103, + -0.006681423634290695, + 0.006099469494074583, + -0.0033867524471133947, + -0.033620744943618774, + 0.007558037992566824, + -0.020861953496932983, + 0.01545493584126234, + 0.012795626185834408, + 0.010806668549776077, + 0.010438342578709126, + -0.0002988040214404464, + 0.02788960188627243, + 0.007116047665476799, + 0.03594856336712837, + 0.033915407955646515, + -0.003513824660331011, + -2.2559932403964922e-5, + 0.010055284947156906, + -0.0009972411207854748, + 0.013060820288956165, + -0.0033388701267540455, + 0.016427313908934593, + 0.0036206389777362347, + 0.021524937823414803, + 0.0020847220439463854, + -0.04104618728160858, + 0.002924503991380334, + -0.0049318778328597546, + -0.00020188838243484497, + 0.019550714641809464, + 0.024471541866660118, + 0.009053438901901245, + -0.013326014392077923, + -0.018092146143317223, + -0.00303315999917686, + -0.01825420930981636, + -0.023116104304790497, + -0.00713814701884985, + -0.012714594602584839, + -0.004268891643732786, + 0.005292836576700211, + 0.0029871193692088127, + -0.043757062405347824, + 0.007149196695536375, + 0.010158415883779526, + 0.009583828039467335, + 0.02567964978516102, + -0.03721560165286064, + -0.016309451311826706, + 0.01750282570719719, + 0.004836113192141056, + 0.003097616834565997, + -0.029819628223776817, + -0.002145495731383562, + 0.0030957753770053387, + -0.015307605266571045, + 0.0009000952704809606, + 0.002762440824881196, + -0.0017734869616106153, + -0.003186014946550131, + 0.011418088339269161, + -0.019359184429049492, + -0.0004366958455648273, + 0.015823259949684143, + 0.017222898080945015, + -0.009348100051283836, + 0.022276323288679123, + 0.030025890097022057, + 0.015020311810076237, + -0.0007343488396145403, + 0.03768705949187279, + -0.01202950906008482, + -0.012869291007518768, + 0.021922729909420013, + -0.008147358894348145, + 0.0004926352994516492, + -0.0012209988199174404, + 0.013267082162201405, + 0.02162807062268257, + 0.013326014392077923, + 0.013885868713259697, + -0.0032652050722390413, + -0.02839052490890026, + -0.01816581003367901, + 0.004769814666360617, + -0.0043830727227032185, + 0.012117907404899597, + -0.014114230871200562, + 0.005697994492948055, + 0.00356170698069036, + -0.010777202434837818, + -0.007267060689628124, + -0.02996695786714554, + 0.01082140114158392, + -0.013900602236390114, + -0.024191614240407944, + 0.0016979803331196308, + -0.014460456557571888, + 0.018548868596553802, + -0.026858290657401085, + 0.022629914805293083, + 0.022128991782665253, + 0.009532262571156025, + -0.010320479050278664, + -0.007340725976973772, + -0.015867460519075394, + -0.03253050148487091, + -0.026489965617656708, + -0.016559911891818047, + -0.006169450934976339, + 0.015867460519075394, + -0.0023830656427890062, + 0.008309422060847282, + -0.004817696753889322, + -0.014541488140821457, + 0.008633548393845558, + 0.02486933395266533, + -0.012331536039710045, + -0.023233968764543533, + -0.021318675950169563, + -0.0006919914158061147, + -0.03406273573637009, + 0.00457828538492322, + -0.013053453527390957, + 0.00305157620459795, + 0.004405172076076269, + 0.0009005556930787861, + 0.0034677840303629637, + 0.006165768019855022, + 0.016604110598564148, + 0.0149024473503232, + -0.00337938591837883, + -0.016707241535186768, + 0.007186029106378555, + -0.01507924310863018, + 0.009701692499220371, + -0.03833531215786934, + -0.018902461975812912, + -0.017429159954190254, + 0.009966886602342129, + 0.028523122891783714, + -0.003152865683659911, + -0.024942997843027115, + -0.023484429344534874, + 0.0256207175552845, + -0.015116075985133648, + -0.0026372100692242384, + -0.03046788088977337, + 0.009399665519595146, + -0.02526712603867054, + -0.022276323288679123, + -0.011049763299524784, + 0.013871136121451855, + -0.010784569196403027, + 0.011734848842024803, + -0.004523036535829306, + 0.01739969290792942, + 0.03205904737114906, + -0.0035303994081914425, + 0.028125330805778503, + -0.003224689280614257, + -2.59985972661525e-5, + -0.005801125895231962, + -0.01218420546501875, + -0.0007016599411144853, + -0.009082905016839504, + 0.006659323815256357, + -0.004353606607764959, + -0.008464118465781212, + 0.02249731868505478, + -0.004965026862919331, + 0.01270722784101963, + 0.03223584219813347, + -0.012243137694895267, + -0.005138139706104994, + 0.0033112457022070885, + -0.026814091950654984, + 0.0033351867459714413, + -0.01779748499393463, + 0.0037900686729699373, + 0.0024861968122422695, + -0.015543333254754543, + 0.011756948195397854, + 0.01734076254069805, + 0.004622484091669321, + -0.0044383215717971325, + 0.012515698559582233, + -0.011911644600331783, + 0.011756948195397854, + 0.005970555357635021, + -0.022202657535672188, + -0.022880375385284424, + -0.011727482080459595, + 0.015926392748951912, + -0.02520819380879402, + -0.013097652234137058, + -0.00527073722332716, + 0.017989015206694603, + -0.021598603576421738, + 0.0007960433722473681, + 0.03627268970012665, + 0.01669250801205635, + 3.2027048291638494e-5, + 0.007904264144599438, + -0.013215516693890095, + -0.009841655381023884, + -0.002445681020617485, + 0.027771737426519394, + -0.013068187050521374, + 0.010246813297271729, + -0.005325986072421074, + -0.00643096212297678, + 0.018180543556809425, + -0.012044241651892662, + 0.022983508184552193, + 0.0197127778083086, + 0.019963238388299942, + 0.012545164674520493, + -0.01268512848764658, + 0.002734816400334239, + -0.018180543556809425, + -0.015233940444886684, + -0.0014180529396981, + 0.0030147437937557697, + -0.006913468707352877, + -0.02173120155930519, + -0.0016795640112832189, + 0.015661196783185005, + -0.03040894865989685, + -0.017591223120689392, + -0.0014300234615802765, + -0.0022136359475553036, + -0.01479931641370058, + -0.007786399684846401, + 0.002624318702146411, + 0.021068215370178223, + -0.0047403485514223576, + -0.008567249402403831, + -0.004025796893984079, + 0.014114230871200562, + 0.007215495221316814, + -0.02330763451755047, + -0.004784547258168459, + -0.006784554570913315, + -0.01795954816043377, + 0.004029480274766684, + -0.0066372244618833065, + 0.003241263795644045, + 0.014526755549013615, + 0.009082905016839504, + -0.0022486269008368254, + -0.003405168652534485, + -0.004559868946671486, + -0.0002661151229403913, + 0.008103159256279469, + -0.003300196025520563, + 0.023425497114658356, + 0.00465195020660758, + 0.012007409706711769, + 0.008751412853598595, + 0.007171296514570713, + -0.018077412620186806, + 0.0008103159489110112, + 0.01016578171402216, + 0.0142762940376997, + -0.024677803739905357, + -0.0046298508532345295, + -0.0026740427128970623, + 0.06930411607027054, + 0.02068515680730343, + 0.024486275389790535, + 0.02955443412065506, + 0.020758822560310364, + -0.00425047567114234, + 0.011491754092276096, + 0.010482542216777802, + 0.0238527562469244, + -0.004419905133545399, + 0.024633605033159256, + -0.007933730259537697, + -0.00465195020660758, + -0.013009254820644855, + -0.023278167471289635, + 0.006854536477476358, + 0.007616970222443342, + 0.004003697540611029, + -0.0244568083435297, + 0.03868890553712845, + 0.0333850160241127, + -0.0015920867444947362, + -0.0012605937663465738, + 0.02184906415641308, + -0.005035008769482374, + 0.02108294889330864, + 0.013429145328700542, + 0.010578306391835213, + 0.04089885577559471, + -0.0010027659591287374, + 0.004843479488044977, + 0.001526708947494626, + -0.002898721257224679, + -0.015410736203193665, + 0.010335211642086506, + -0.0013766163028776646, + 0.001372012309730053, + 0.007749567274004221, + -0.007090264931321144, + 0.017974281683564186, + -0.012316802516579628, + -0.0008471485343761742, + 0.016869304701685905, + 0.004419905133545399, + -0.024191614240407944, + 0.002309400588274002, + 0.0015018469421193004, + -0.006033170502632856, + 0.02233525551855564, + 0.0013609625166282058, + -0.020744089037179947, + -0.032559968531131744, + 0.004217326175421476, + -0.006769821513444185, + -0.005381234455853701, + -0.01769435405731201, + -0.014858248643577099, + -0.0184604711830616, + -0.002009215299040079, + -0.0012154739815741777, + -0.0014871140010654926, + -0.0004182795819360763, + -0.008139992132782936, + -0.03182331845164299, + -0.0017384961247444153, + -0.01795954816043377, + -0.010865600779652596, + 0.01046044286340475, + -0.0037937520537525415, + 0.012972421944141388, + -0.003937399014830589, + -0.0005188784562051296, + 0.00028338038828223944, + -0.01745862513780594, + 0.002009215299040079, + 0.021804865449666977, + -0.003797435201704502, + 0.0021233961451798677, + -0.008044227957725525, + 0.004408855456858873, + -0.017591223120689392, + 0.00794109608978033, + 0.007233911659568548, + -0.004784547258168459, + -0.0033554446417838335, + 0.003235738957300782, + 0.012920856475830078, + -0.003261521691456437, + 0.0017605955945327878, + -0.0113002248108387, + -0.002243101829662919, + -0.012110540643334389, + -0.0003941082104574889, + 0.014821415767073631, + -0.02072935551404953, + 0.0010156574426218867, + -0.011668549850583076, + -0.002208111109212041, + 0.024648338556289673, + -0.007698001805692911, + 0.010357310995459557, + 0.011189727112650871, + -0.0019705411978065968, + 0.016456780955195427, + 0.0025064547080546618, + 0.013753271661698818, + 0.00917867012321949, + -0.0016565436962991953, + -0.021701734513044357, + 0.005639062263071537, + -0.00878087803721428, + -0.02743287943303585, + -0.008191557601094246, + 0.013200784102082253, + -0.010047918185591698, + -0.0029871193692088127, + -0.004567235242575407, + -0.00038789273821748793, + -0.011874811723828316, + -0.004379389341920614, + -0.01139598898589611, + 0.023440230637788773, + 0.002250468358397484, + 0.015130809508264065, + -0.004850846249610186, + 0.002261518267914653, + 0.005333352368324995, + -0.02008110284805298, + -0.01921185478568077, + -0.004353606607764959, + 0.009635393507778645, + 0.009679592214524746, + 0.006265215575695038, + -0.014548854902386665, + 0.004486203659325838, + -0.010806668549776077, + 0.013782737776637077, + -0.01275879330933094, + 0.028419990092515945, + -0.008383086882531643, + 0.014755116775631905, + 0.031646519899368286, + 0.0035543404519557953, + 0.019344452768564224, + 0.007609603460878134, + 0.006802971009165049, + 0.01694297045469284, + -0.02567964978516102, + 0.03444579616189003, + 0.0071897124871611595, + 0.03194118291139603, + -0.017163965851068497, + -0.0001329424703726545, + -0.007082898169755936, + 0.009046073071658611, + 0.004681416321545839, + -0.022526783868670464, + -0.007421757560223341, + 0.0020497310906648636, + -0.010519374161958694, + 0.006913468707352877, + -0.011388622224330902, + -0.009944787248969078, + -0.01059303991496563, + -0.021421806886792183, + 0.013001888059079647, + 0.01429839339107275, + 0.01756175607442856, + 0.006703522987663746, + -0.01619158685207367, + -0.026239505037665367, + 0.0005432800389826298, + 0.012198938988149166, + -0.013966900296509266, + -0.007624336518347263, + -0.013915334828197956, + 0.00859671551734209, + 0.029790161177515984, + -0.018725665286183357, + 0.027108753100037575, + 0.004265208728611469, + 0.007178662810474634, + -0.006817704066634178, + -0.010423609986901283, + -0.010379411280155182, + -0.01144755445420742, + 0.02818426303565502, + -0.0056722117587924, + -0.0014797474723309278, + -0.014541488140821457, + -0.008559883572161198, + 0.03359128162264824, + 0.0031952231656759977, + 0.006239432841539383, + -0.003852684050798416, + 0.011130794882774353, + 0.0032228475902229548, + 0.024633605033159256, + 0.004180493764579296, + 0.010534107685089111, + -0.004810330457985401, + -0.0016335233813151717, + 0.011432821862399578, + -0.007734834216535091, + 0.004596701357513666, + -0.020670423284173012, + -0.019035058096051216, + -0.015484401024878025, + -0.007454907055944204, + 0.014497289434075356, + -0.026062708348035812, + -0.016471514478325844, + 0.010158415883779526, + -0.005053425207734108, + -0.006732989102602005, + 0.015248673036694527, + -0.012942955829203129, + -0.003169440431520343, + 0.006950301118195057, + -0.01217683870345354, + 0.005985288415104151, + 0.015035044401884079, + -0.008655647747218609, + -0.010217348113656044, + 0.02516399323940277, + 0.014703551307320595, + 0.009753257967531681, + 0.0029134543146938086, + 0.012994521297514439, + 0.017576489597558975, + 0.024117950350046158, + -0.006486210972070694, + 0.0012302069226279855, + 0.014806682243943214, + -0.0027845404110848904, + 0.039013031870126724, + 0.022364720702171326, + -0.0003425426548346877, + 0.01644204743206501, + 0.0056795780546963215, + -0.024442076683044434, + 0.02899457886815071, + -0.025296591222286224, + -0.018931927159428596, + 0.0014585687313228846, + -0.0007642752607353032, + 0.0001893423032015562, + -0.018386805430054665, + 0.006191550754010677, + -3.145153823425062e-5, + -0.0021841698326170444, + -0.007668535690754652, + -0.024501008912920952, + 0.00788953062146902, + 0.005392284598201513, + 0.012294703163206577, + 0.00910500530153513, + 0.0001062388691934757, + 0.002064464148133993, + 0.0008715500589460135, + -0.0011952160857617855, + -0.006427278742194176, + -0.008088426664471626, + -0.01268512848764658, + 0.028478922322392464, + 0.012022142298519611, + -0.002996327355504036, + 0.023012973368167877, + -0.0006726543069817126, + -0.003749552881345153, + 0.004924511071294546, + -0.02058202587068081, + -0.0022854593116790056, + 0.014939280226826668, + -0.00131768430583179, + 0.0008407027926295996, + 0.04010327532887459, + -0.0006514756241813302, + 0.0008522130083292723, + 0.004128928296267986, + -0.0031749652698636055, + -0.0019484416116029024, + 0.003992647863924503, + -0.03294302895665169, + -0.005572763737291098, + -0.033827006816864014, + 0.012906122952699661, + 0.026298437267541885, + 0.011933743953704834, + 0.029068242758512497, + -0.0077643003314733505, + -0.018431004136800766, + 0.0007384925265796483, + 0.009583828039467335, + 0.002616952173411846, + -0.0033591280225664377, + -0.002569069853052497, + 0.01831314153969288, + 0.003589331405237317, + 0.002250468358397484, + 0.00494292750954628, + -0.017208164557814598, + -0.001699821907095611, + -0.017915349453687668, + 0.014644619077444077, + 0.0016307608457282186, + 0.007167613133788109, + 0.0019318669801577926, + 0.002025789814069867, + 0.011366522870957851, + -0.005337035749107599, + -0.006769821513444185, + 0.010475175455212593, + 0.002628002082929015, + 0.0037016705609858036, + 0.006939251441508532, + 0.0070202830247581005, + 0.022762512788176537, + -0.003930032253265381, + -0.010806668549776077, + -0.006872952915728092, + -0.004747714847326279, + 0.025502853095531464, + -0.005193388555198908, + 0.008456751704216003, + 0.006283632013946772, + -0.0016316816909238696, + 0.009001873433589935, + 0.011609617620706558, + -0.02243838645517826, + 0.010504641570150852, + -0.005233904346823692, + -0.014018465764820576, + -0.01069617085158825, + -0.0043241404928267, + 0.012537797912955284, + -0.012876657769083977, + 0.007734834216535091, + -0.018445737659931183, + 0.007119730580598116, + -0.020537827163934708, + -0.003705353941768408, + 0.008906109258532524, + -0.012626196257770061, + 0.00878087803721428, + 0.031292930245399475, + 0.017178699374198914, + -0.0113002248108387, + -0.009267068468034267, + 0.015351803973317146, + 0.005086574237793684, + -0.007528571877628565, + -0.015720129013061523, + 0.000885362271219492, + -0.008640915155410767, + -0.00920076947659254, + -0.0030147437937557697, + 0.011786414310336113, + -0.01208107452839613, + -0.008707213215529919, + -0.0003855906834360212, + 0.016103187575936317, + -0.008861909620463848, + -0.010983464308083057, + 0.014482555910944939, + 0.014114230871200562, + 0.020758822560310364, + 0.0025561784859746695, + -0.016869304701685905, + -0.0013425461947917938, + 0.020449427887797356, + 0.013075552880764008, + -0.018843529745936394, + -0.015764329582452774, + -0.011580151505768299, + 0.01700190268456936, + -0.0017946657026186585, + 0.020670423284173012, + -0.010570940561592579, + 0.007005549967288971, + 0.027152951806783676, + -0.006114202085882425, + 0.008007395081222057, + -0.0002520727284718305, + 0.0049355607479810715, + 0.018489936366677284, + 0.008493584580719471, + 0.021701734513044357, + 0.013944800943136215, + 0.009510163217782974, + -0.002806639764457941, + 0.04310880973935127, + 0.03512351214885712, + 0.0038011185824871063, + 0.005952138919383287, + -0.009576461277902126, + -0.0035101415123790503, + 0.009554361924529076, + -0.009826922789216042, + -0.013318647630512714, + -0.00788953062146902, + -0.009112371131777763, + 0.007830598391592503, + 0.007977928966283798, + 0.006316781509667635, + -0.02743287943303585, + 0.016412582248449326, + 0.006946617737412453, + 0.013922701589763165, + -0.0069981832057237625, + -0.008972407318651676, + -0.015440202318131924, + 0.0006464111502282321, + -0.014710918068885803, + 0.0060626366175711155, + 0.014497289434075356, + -0.002526712603867054, + 3.700519664562307e-5, + 0.011771680787205696, + 0.002270726254209876, + 0.017016636207699776, + -0.017782751470804214, + 0.014055298641324043, + -0.00855251681059599, + 0.0022320521529763937, + 0.02481040172278881, + 0.03963181748986244, + 0.00872931256890297, + -0.013900602236390114, + -0.013723805546760559, + -0.002278092782944441, + -0.018077412620186806, + 0.0005184180336073041, + 0.030674142763018608, + -0.0008784561650827527, + -0.009495429694652557, + 0.02461887151002884, + -0.031852785497903824, + 0.008464118465781212, + -0.0015884034801274538, + -0.001189691131003201, + -0.020596759393811226, + 0.00534440204501152, + 0.011580151505768299, + -0.010519374161958694, + 0.003966865129768848, + -0.0022633597254753113, + 0.01573486253619194, + 0.008383086882531643, + -0.03040894865989685, + -0.00036510260542854667, + 0.00928180105984211, + -0.01633891649544239, + 0.005856374278664589, + -0.024648338556289673, + -0.02304244041442871, + -0.005384917836636305, + 0.014305760152637959, + 0.003432793077081442, + 0.004482520744204521, + -0.011889545246958733, + -0.005197071935981512, + 0.007963196374475956, + 0.01977171003818512, + 0.003489883616566658, + 0.031204530969262123, + 0.03288409486413002, + 0.013510176911950111, + 0.0008222865290008485, + -0.012125273235142231, + -0.00025046130758710206, + 0.003797435201704502, + 0.013193417340517044, + -0.0028839881997555494, + -0.002189694670960307, + 0.02229105494916439, + 0.006360980216413736, + -0.030939336866140366, + 0.008906109258532524, + 0.0036224806681275368, + -0.0052854702807962894, + -0.008169458247721195, + -0.008294688537716866, + -0.0011436505010351539, + 0.008154725655913353, + -0.016014790162444115, + -0.01061513926833868, + 0.027521276846528053, + -0.01927078701555729, + 0.03388594090938568, + -0.012022142298519611, + 0.010836134664714336, + -0.010401510633528233, + 0.012773525901138783, + -0.010710903443396091, + -0.013186050578951836, + 0.020346296951174736, + 0.010600405745208263, + -0.0004620182153303176, + -0.0026427351403981447, + -0.012221038341522217, + -0.0013314965181052685, + -0.00988585501909256, + 0.018740398809313774, + 0.019300252199172974, + -0.0004866499803029001, + -0.01921185478568077, + 0.017384961247444153, + 0.007860064506530762, + -0.006047903560101986, + 0.011985309422016144, + 0.002626160392537713, + 0.0032854629680514336, + 0.012530431151390076, + -0.003860050579532981, + 0.0226446483284235, + 0.006615125108510256, + 0.009082905016839504, + 0.013510176911950111, + -0.002353599527850747, + 0.006202600430697203, + -0.02728554792702198, + -0.003252313705161214, + 0.0027035088278353214, + -0.003219164442270994, + 0.008950307965278625, + 0.02774227224290371, + -0.006493577267974615, + -6.84279584675096e-5, + 0.00563537934795022, + -0.017974281683564186, + 0.006895052269101143, + -0.0017016634810715914, + -0.004081045743077993, + 0.00867774710059166, + 0.0286409854888916, + 0.005605913233011961, + -0.004294674843549728, + 0.0256649162620306, + -0.02400008589029312, + -0.013981633819639683, + 0.011992676183581352, + 0.007712734863162041, + 0.011388622224330902, + -0.015955857932567596, + 0.003885833313688636, + 0.005653795320540667, + 0.0058121755719184875, + 0.014563587494194508, + -0.002716400194913149, + -0.01200004294514656, + 0.006604074966162443, + 0.013163951225578785, + 0.0061989170499145985, + -0.0008895059581845999, + -0.010070017538964748, + -0.012876657769083977, + 0.0023720157332718372, + 0.013554376550018787, + 0.018990859389305115, + 6.0773698351113126e-5, + -0.0080221276730299, + 0.008302055299282074, + -0.00039065515738911927, + -0.0031473408453166485, + 0.0024659389164298773, + 0.016677776351571083, + 0.01132232416421175, + 0.021907996386289597, + 0.022320521995425224, + -0.0298048947006464, + -0.0025211875326931477, + -0.02299823984503746, + -0.01563173159956932, + 0.00010526050755288452, + -0.017782751470804214, + -0.022202657535672188, + -0.0031491825357079506, + 0.005499098915606737, + -0.013053453527390957, + -0.0011123428121209145, + -0.006279948633164167, + -0.010895066894590855, + -0.0061989170499145985, + 0.0010616980725899339, + 0.028758849948644638, + 0.008486217819154263, + 0.0009944787016138434, + 0.0011243134504184127, + -0.02653416432440281, + 0.010607772506773472, + 0.0031307663302868605, + -0.0003137672320008278, + -0.03662628307938576, + 0.011727482080459595, + 0.0013020304031670094, + -0.01633891649544239, + 0.01353964302688837, + -0.015425469726324081, + -0.01082140114158392, + 0.0005971476202830672, + 0.004839796107262373, + 0.0005267054075375199, + 0.018431004136800766, + -0.008854543790221214, + -0.002469622064381838, + 0.01700190268456936, + -0.021760666742920876, + -0.004523036535829306, + -0.013966900296509266, + -0.0038747836370021105, + 0.009569094516336918, + 0.034828852862119675, + -0.002944761887192726, + 0.02718241699039936, + -0.002298350678756833, + 0.0024106900673359632, + -0.02899457886815071, + 0.020184233784675598, + -0.010548840276896954, + -0.003651946783065796, + -0.0019245004514232278, + 0.01001108530908823, + 0.003607747610658407, + -0.010305745527148247, + 0.01516027469187975, + -0.01816581003367901, + 0.00336096971295774, + 0.007491739466786385, + -0.00021224754163995385, + -0.018327873200178146, + -0.01364277396351099, + 0.001907925819978118, + -0.022128991782665253, + -0.00940703134983778, + -0.018725665286183357, + -0.021598603576421738, + 0.0009291009046137333, + -0.007690635044127703, + 0.009112371131777763, + 0.0008793770102784038, + -0.0056464290246367455, + -0.010725636966526508, + 0.014806682243943214, + 0.003027635160833597, + 0.0076538026332855225, + 0.021068215370178223, + -0.00197974918410182, + 0.0009383090655319393, + 0.008913476020097733, + -0.012780892662703991, + 0.014578321017324924, + -0.01222840417176485, + -0.008884009905159473, + 0.016618844121694565, + -0.0016049781115725636, + 0.0031933814752846956, + -0.009539629332721233, + 0.00303315999917686, + -0.020508360117673874, + -0.014040566049516201, + -0.020184233784675598, + -0.0021068216301500797, + 0.008486217819154263, + 0.002515662694349885, + 0.007281793747097254, + 0.004843479488044977, + 0.019241321831941605, + -0.022968774661421776, + 0.0011326007079333067, + -0.011661183089017868, + -0.016869304701685905, + -0.00862618163228035, + 0.0067182560451328754, + -0.0020128984469920397, + -0.006651957519352436, + 0.007296526804566383, + -0.0113002248108387, + 0.011101328767836094, + -0.03406273573637009, + 0.004283624701201916, + -0.004519353155046701, + -0.011896912008523941, + -0.0031215581111609936, + -1.0107368325407151e-5, + 0.007046065758913755, + 0.01270722784101963, + 0.005023959092795849, + -0.017885884270071983, + -0.0038011185824871063, + 0.006195233669131994, + -0.013112385757267475, + -0.005049741826951504, + -0.004408855456858873, + -0.002979752840474248, + 0.015248673036694527, + 0.004953977186232805, + 0.007473323028534651, + -0.0003388593904674053, + 0.008640915155410767, + -0.02193746343255043, + -0.006508310325443745, + -0.002697983756661415, + -0.004983443301171064, + 0.0011326007079333067, + -0.005388601217418909, + 0.01710503362119198, + 0.013178683817386627, + 0.002198902890086174, + -0.003963181748986244, + 0.002086563501507044, + -0.002569069853052497, + 0.004898728337138891, + -0.0028931964188814163, + -0.019963238388299942, + -0.01700190268456936, + 0.002397798700258136, + 0.008029494434595108, + -0.015381270088255405, + -0.01902032643556595, + -0.004419905133545399, + 0.012751426547765732, + -0.011145527474582195, + 0.017281830310821533, + -0.0016703559085726738, + -0.021171346306800842, + 0.017281830310821533, + 0.006570925936102867, + -0.01074036955833435, + 0.008795611560344696, + 0.01048990897834301, + 0.00097237917361781, + -0.03244210407137871, + -0.00920813623815775, + -0.007038698997348547, + 0.006710889283567667, + -0.006891368888318539, + -0.011064495891332626, + -0.003911616280674934, + 0.0060037048533558846, + -0.005863741040229797, + -0.03096880204975605, + -0.01135179027915001, + 0.015219206921756268, + 0.016913503408432007, + 0.0043241404928267, + 0.004523036535829306, + 0.011823246255517006, + 0.000315608864184469, + 0.014268927276134491, + -0.0028508389368653297, + -0.014688818715512753, + 0.018180543556809425, + -0.008007395081222057, + 0.018843529745936394, + 0.010305745527148247, + 0.011815880425274372, + 0.00011389313294785097, + 0.024574672803282738, + 0.039720214903354645, + 0.015307605266571045, + 0.006843486800789833, + 0.011049763299524784, + 0.017591223120689392, + 0.008839810267090797, + 0.0011942952405661345, + 0.001218236400745809, + -4.955128315486945e-5, + -0.0016114237951114774, + 0.015867460519075394, + 0.006681423634290695, + 0.007241277955472469, + -0.012847191654145718, + -0.025001930072903633, + -0.021053481847047806, + -0.012058975175023079, + -0.000689689361024648, + 0.012338901869952679, + -0.0013839828316122293, + 0.048795755952596664, + -0.004151027649641037, + 0.005731143988668919, + -0.024117950350046158, + 0.02304244041442871, + -0.00019348596106283367, + -0.010379411280155182, + 0.02890617959201336, + 0.008530417457222939, + 0.02087668515741825, + -0.0037863855250179768, + 0.0011326007079333067, + -0.01700190268456936, + -0.0214807391166687, + -0.014423624612390995, + 0.04443478211760521, + 0.00632783118635416, + 0.026313168928027153, + -0.003136291168630123, + 0.0014226570492610335, + -0.00615471787750721, + -0.005134456790983677, + 0.00031261620461009443, + -0.004556185565888882, + -0.0058711073361337185, + -0.009569094516336918, + 0.003721928456798196, + -0.013959534466266632, + 0.012338901869952679, + 0.011337056756019592, + 0.01664830930531025, + -0.0023204502649605274, + -0.02184906415641308, + -0.009701692499220371, + -0.009981619194149971, + -0.006552509497851133, + 0.0009185115923173726, + 0.00912710465490818, + -0.002064464148133993, + -0.011837979778647423, + 0.0086482809856534, + -0.01569066382944584, + -0.0030755174811929464, + 0.01714923232793808, + 0.01268512848764658, + -0.03789332136511803, + -0.016383115202188492, + 0.010865600779652596, + -0.0038711002562195063, + 9.386543388245627e-5, + -0.012250504456460476, + 0.008942942135035992, + -0.012530431151390076, + -0.011616984382271767, + 0.005296519957482815, + 0.014990845695137978, + -0.0011022138642147183, + -0.013989000581204891, + 0.00018013415683526546, + -0.015307605266571045, + -0.010784569196403027, + -0.0002222613838966936, + -0.025252392515540123, + 0.018931927159428596, + 0.006077369675040245, + 0.0017679621232673526, + 0.0028858298901468515, + -0.008375720120966434, + 0.006460428237915039, + -0.00925233494490385, + -0.010313112288713455, + -0.0001337481808150187, + 0.017208164557814598, + 0.00470351567491889, + 0.00925233494490385, + -0.02674042619764805, + 0.02162807062268257, + -0.00902397371828556, + -0.01132232416421175, + -0.025134528055787086, + -0.011174993589520454, + 0.028022199869155884, + -0.009222868829965591, + 0.00794109608978033, + -0.011616984382271767, + -0.011535952799022198, + 0.0022928258404135704, + -0.01474775094538927, + -0.002607744187116623, + -8.459975106234197e-6, + -0.001344387885183096, + -0.005613279528915882, + -0.0023462329991161823, + -0.008707213215529919, + 0.011035029776394367, + -0.004585651680827141, + 0.002136287512257695, + 0.01336284726858139, + -0.00546226603910327, + -0.006372029893100262, + 0.0011215509148314595, + -0.0024788302835077047, + 0.012478865683078766, + -0.003097616834565997, + 0.026489965617656708, + -0.011808513663709164, + -0.004095778800547123, + 0.02567964978516102, + -0.003841634374111891, + -0.00159853242803365, + 0.032707300037145615, + -0.000388353131711483, + 0.01629471778869629, + 0.009797456674277782, + -0.011992676183581352, + 0.0007969641592353582, + -0.009016606956720352, + 0.0321769118309021, + -0.003727453527972102, + -0.02320450358092785, + -0.014659352600574493, + 0.007443856913596392, + -0.01356910914182663, + -0.008309422060847282, + -0.013281815685331821, + -0.0020589393097907305, + -0.004364656284451485, + -0.025488119572401047, + 0.0073812417685985565, + -0.010254180058836937, + 0.012559897266328335, + -0.012243137694895267, + 0.015484401024878025, + -0.018475204706192017, + -0.0041657607071101665, + -0.0026040608063340187, + 8.661403262522072e-5, + 0.009465963579714298, + -0.03132239356637001, + 0.002005531918257475, + -0.039337158203125, + -0.03055627830326557, + -0.006644590757787228, + 0.021318675950169563, + 0.02803693152964115, + -0.010364677757024765, + -0.002808481454849243, + -0.013097652234137058, + 0.019123457372188568, + 0.009267068468034267, + -0.014939280226826668, + 0.013532276265323162, + -0.00457828538492322, + 0.001316763460636139, + -0.04019167274236679, + 0.00014502814156003296, + 0.00024493641103617847, + -0.009495429694652557, + -0.016515713185071945, + -0.0024512058589607477, + -0.001770724542438984, + 0.03303142637014389, + 0.015233940444886684, + -0.03353234753012657, + -0.006898735649883747, + -0.004294674843549728, + 0.01545493584126234, + 0.010099483653903008, + 0.009620660915970802, + -0.0036869377363473177, + 0.00844938587397337, + -0.0226888470351696, + -0.001607740530744195, + 0.026917222887277603, + -0.014261561445891857, + 0.01806267909705639, + 0.003749552881345153, + -0.015955857932567596, + -0.03146972507238388, + -0.010607772506773472, + -0.0011068179737776518, + 0.0003218243655283004, + -0.013510176911950111, + 0.003992647863924503, + -0.009186036884784698, + 0.014158429577946663, + -0.006169450934976339, + 0.014740384183824062, + -0.022777244448661804, + -0.0028655719943344593, + 0.0068287537433207035, + 0.0059816050343215466, + 0.008736679330468178, + 3.985396324424073e-5, + 0.0062210168689489365, + 0.04069259390234947, + 0.019491782411932945, + 0.02420634776353836, + 0.018386805430054665, + -0.026151105761528015, + 0.002425423124805093, + -0.012442033737897873, + 0.003114191582426429, + 0.017267096787691116, + -0.006224699784070253, + 0.006699839606881142, + -0.007955829612910748, + 0.006471477914601564, + -0.002662993036210537, + 0.014416257850825787, + -0.01910872384905815, + 0.002309400588274002, + -0.0086482809856534, + -0.010128949768841267, + 0.013989000581204891, + -0.014136330224573612, + -0.0167367085814476, + 0.004331507254391909, + 0.018121611326932907, + -0.019285520538687706, + -0.0038011185824871063, + 0.00847148522734642, + 0.019683310762047768, + -0.02809586375951767, + -3.8069887523306534e-5, + -0.002662993036210537, + -0.008139992132782936, + -0.01367224007844925, + -0.008095793426036835, + -0.02174593321979046, + 0.006644590757787228, + 0.017222898080945015, + 0.03001115657389164, + -0.03082147240638733, + -0.019786441698670387, + -0.006121568847447634, + 0.005867424421012402, + -0.009709058329463005, + 0.020493626594543457, + 0.019285520538687706, + 0.03155812248587608, + 0.009031339548528194, + 0.010895066894590855, + -0.023012973368167877, + 0.008139992132782936, + -0.005267053842544556, + 0.0006316781509667635, + 0.00983428955078125, + -0.004379389341920614, + -0.004869262222200632, + -0.02108294889330864, + -0.0008733916911296546, + -0.01947704888880253, + -0.006622491404414177, + -0.008051593787968159, + -0.0038453175220638514, + -0.004810330457985401, + -0.012721960432827473, + 0.020817752927541733, + 0.018534136936068535, + -0.000554329773876816, + -0.0019963239319622517, + -0.01981590874493122, + -0.012316802516579628, + 0.01613265462219715, + 0.007186029106378555, + -0.018622534349560738, + 0.010239447467029095, + -0.007178662810474634, + -0.005867424421012402, + 0.00019083861843682826, + -0.027624407783150673, + -0.022909842431545258, + -0.016471514478325844, + 0.028464190661907196, + -0.004232059232890606, + 0.00401106383651495, + -0.00632783118635416, + -0.007001866586506367, + 0.015337071381509304, + 0.012523065321147442, + -0.010681437328457832, + 0.032000113278627396, + 0.01500557828694582, + -0.004887678660452366, + -0.01003318466246128, + -0.0080221276730299, + -0.020758822560310364, + 0.01074036955833435, + 0.008125259540975094, + 0.007421757560223341, + -0.0012154739815741777, + -0.00232597510330379, + 0.01987484097480774, + 0.013289181515574455, + 0.010195247828960419, + 0.005465949419885874, + 0.014291026629507542, + 0.006360980216413736, + -0.021259743720293045, + 0.005720093846321106, + 0.006265215575695038, + -0.013421778567135334, + -0.007801132742315531, + -0.0013683290453627706, + 0.0030147437937557697, + -0.0014585687313228846, + 0.002127079525962472, + 0.0005322302458807826, + 0.009377565234899521, + -0.006596708670258522, + 0.006478844676166773, + -0.013635408133268356, + 0.012324169278144836, + 0.013200784102082253, + -0.002742182929068804, + -0.0029208208434283733, + 0.013775371015071869, + -0.004471471067517996, + 0.016957703977823257, + -0.0055101485922932625, + -0.0058379583060741425, + -0.009826922789216042, + 0.0029281871393322945, + -0.031057201325893402, + -0.0010147365974262357, + 0.012486232444643974, + 0.007208128925412893, + 0.002683250932022929, + -0.02951023355126381, + -0.015278139151632786, + -0.030880404636263847, + 0.004806647077202797, + -0.0015727495774626732, + 0.00772746792063117, + -0.0014668561052531004, + 0.002786381868645549, + -0.017414426431059837, + -0.0035672318190336227, + -0.002208111109212041, + 0.013436512090265751, + 0.00679560424759984, + -0.001226523658260703, + -0.015145542100071907, + -0.012721960432827473, + -0.0036224806681275368, + 0.0073259929195046425, + -0.006987133529037237, + -0.004725615493953228, + -0.004283624701201916, + 0.014872981235384941, + 0.005123406648635864, + 0.011749581433832645, + 0.005771659780293703, + -0.004814013373106718, + 0.00841991975903511, + -0.018593067303299904, + 0.034828852862119675, + -0.0055101485922932625, + 0.017075566574931145, + -0.00439043901860714, + 0.00083195511251688, + 0.014946646057069302, + -0.0005059870891273022, + -0.014018465764820576, + 0.004445687867701054, + -0.015484401024878025, + -0.00038582089473493397, + 0.008537783287465572, + 0.005753243342041969, + 0.014600420370697975, + 0.005742193665355444, + -0.0014152905205264688, + -0.00395949836820364, + -0.0033038791734725237, + -0.0016933762235566974, + -0.001599453273229301, + -0.044110655784606934, + 0.03394487127661705, + -0.02430947870016098, + 0.03258943557739258, + 0.013399679213762283, + -0.0018305773846805096, + -0.005233904346823692, + 0.004814013373106718, + 0.009325999766588211, + 0.02245311811566353, + -0.018725665286183357, + -0.005145506467670202, + -0.0004562631365843117, + -0.008162091486155987, + -0.0023462329991161823, + -0.019756976515054703, + -0.014651985839009285, + 0.0019742243457585573, + -0.0027384995482861996, + 0.005119723733514547, + 0.009524895809590816, + -0.004114195238798857, + -0.004335190635174513, + -0.016250519081950188, + -0.04396332427859306, + 0.0028011149261146784, + 0.014998211525380611, + -0.027418145909905434, + 0.0005722856731154025, + 0.01286192424595356, + -0.003333345288410783, + -0.02103874832391739, + 0.007186029106378555, + -0.007756933569908142, + 0.007127097342163324, + 0.0015506501076743007, + -0.013709072954952717, + 0.0004640900588128716, + 0.008876643143594265, + -0.0214365404099226, + -0.013326014392077923, + 0.004368339665234089, + 0.007027649320662022, + 0.009436497464776039, + -0.025178726762533188, + -0.0027403412386775017, + 0.021952196955680847, + -0.021966928616166115, + -0.023175036534667015, + 0.005108674056828022, + -0.0055985464714467525, + -0.017163965851068497, + 0.00568694481626153, + 0.01409213151782751, + 0.003797435201704502, + -0.0005649191443808377, + 0.011197092942893505, + -0.018268940970301628, + -0.004556185565888882, + -0.01367224007844925, + -0.02198166213929653, + 0.0005267054075375199, + 0.010313112288713455, + 0.016147388145327568, + 0.015366537496447563, + 0.015130809508264065, + 0.009709058329463005, + -0.03394487127661705, + 0.009745891205966473, + 0.0034677840303629637, + -0.009399665519595146, + -0.014313126914203167, + 0.0025819612201303244, + -0.007631703279912472, + -0.014791949652135372, + 0.0033757025375962257, + -0.00499449297785759, + 0.012559897266328335, + -0.027020353823900223, + 0.01871093176305294, + 0.006987133529037237, + 0.023337099701166153, + -0.01710503362119198, + 0.015808528289198875, + -0.02189326472580433, + 0.02547338791191578, + -0.012058975175023079, + 0.009451230987906456, + -0.030939336866140366, + 0.002896879566833377, + -0.001081035123206675, + -0.0011832454474642873, + -0.0019189754966646433, + -0.023366566747426987, + 0.0050939409993588924, + -0.001209028298035264, + 0.015366537496447563, + -0.002254151739180088, + 0.017768019810318947, + -0.013716439716517925, + -0.0008600399014540017, + -0.01769435405731201, + -0.01804794743657112, + 0.0025874862913042307, + -0.013561742380261421, + -0.0092302355915308, + 0.024589406326413155, + 0.021716468036174774, + -0.02006636932492256, + -0.0033554446417838335, + -0.02002217061817646, + -0.006489894352853298, + 0.01770908758044243, + 0.0010340736480429769, + -0.03556550294160843, + 0.0017946657026186585, + 0.00015273995813913643, + -0.01437205821275711, + 0.011771680787205696, + -0.0034475261345505714, + -0.010408876463770866, + 0.0021289209835231304, + 0.004460420925170183, + 0.003653788473457098, + -0.006187867373228073, + -0.005208121612668037, + -0.005244954489171505, + -0.026416299864649773, + 0.008412552997469902, + 0.020744089037179947, + 0.05380497872829437, + 0.009760623797774315, + 0.006125252228230238, + 0.0011372048174962401, + -0.004920827690511942, + -0.026239505037665367, + 0.0030405265279114246, + 0.0018729348666965961, + -0.02688775770366192, + -0.01222840417176485, + 0.0058932071551680565, + -0.006644590757787228, + 0.00039917268441058695, + 0.008346254006028175, + 0.005716410931199789, + 0.01633891649544239, + 0.0003595777088776231, + 0.007469640113413334, + -0.00869984645396471, + 0.017664888873696327, + 0.004209959879517555, + -0.021775400266051292, + -0.007985295727849007, + -0.027300281450152397, + 0.031145598739385605, + 0.017738552764058113, + -0.024235814809799194, + -0.05041638761758804, + 0.006685106549412012, + -0.004732981789857149, + -0.0009212740114890039, + 0.01076983567327261, + -0.009605927392840385, + 0.006151034962385893, + -0.011138161644339561, + 0.026504699140787125, + -0.012677761726081371, + 0.010703537613153458, + -0.01064460538327694, + 0.0031123498920351267, + -0.02794853411614895, + 0.0009594877483323216, + 0.0172523632645607, + -0.0056206462904810905, + -0.0214807391166687, + 0.005521198268979788, + 0.017414426431059837, + -0.0011298382887616754, + -0.027373947203159332, + -0.013561742380261421, + 0.002009215299040079, + 0.0008632627432234585, + 0.0014502814738079906, + -0.0005603150930255651, + 0.019152922555804253, + 0.00045257987221702933, + 0.01709030009806156, + -0.02890617959201336, + -0.012235770933330059, + -0.008920841850340366, + 0.008979774080216885, + -0.000754146312829107, + -0.002042364561930299, + 0.02320450358092785, + 0.003569073509424925, + -0.007443856913596392, + 0.01135179027915001, + -0.014872981235384941, + 0.01482878252863884, + -0.0028471555560827255, + 0.004773497581481934, + -0.0027127168141305447, + -0.006121568847447634, + 0.002060780767351389, + -0.014622519724071026, + -0.017930082976818085, + 0.0038232181686908007, + -0.023985352367162704, + -0.038865700364112854, + -0.003296512644737959, + -0.0030865671578794718, + -0.011631716974079609, + -0.0025046130176633596, + 0.00011015233030775562, + -0.004939244128763676, + -0.015396003611385822, + 0.014430990442633629, + 0.004254159051924944, + -0.004504620097577572, + -0.000139618365210481, + -0.0303205493837595, + 0.0018287358107045293, + -0.0032670467626303434, + 0.02743287943303585, + 0.004353606607764959, + -0.013237616047263145, + -0.00852305069565773, + 0.02199639566242695, + 0.007392291445285082, + 0.019491782411932945, + -0.0034456844441592693, + 0.016884038224816322, + -0.004755081608891487, + -0.0072449613362550735, + 0.0004629390314221382, + -0.02955443412065506, + -0.007720101159065962, + -0.02460413984954357, + -0.015410736203193665, + -0.005834274925291538, + -0.017222898080945015, + 0.010430976748466492, + -0.025753315538167953, + 0.015867460519075394, + -0.004187860060483217, + 0.0020478894002735615, + 0.027197150513529778, + 0.014843515120446682, + 0.014416257850825787, + 0.023012973368167877, + 0.0014373899903148413, + 0.039455022662878036, + 0.014209995046257973, + -0.01082140114158392, + 0.015469668433070183, + -0.0007674981607124209, + 0.01432785950601101, + 0.02612164057791233, + -0.00370719563215971, + 0.0008743125363253057, + 0.002880305051803589, + -0.006449378561228514, + 0.0255765188485384, + 0.008324154652655125, + -0.019491782411932945, + 0.00035612465580925345, + 0.01952124759554863, + -0.00532230269163847, + 0.0011224717600271106, + -0.003930032253265381, + -0.0038121682591736317, + 0.0197127778083086, + 0.009134470485150814, + 0.01479931641370058, + 0.015852726995944977, + -0.007985295727849007, + -0.006633541081100702, + 0.008810344152152538, + 0.0003142276545986533, + 0.01205160841345787, + -0.019256053492426872, + -0.012169472873210907, + -0.013458611443638802, + 0.001790061593055725, + -0.0032228475902229548, + 0.012162106111645699, + -0.0008936495869420469, + 0.008294688537716866, + -0.02647523209452629, + -0.001008290913887322, + -0.00938493199646473, + -0.008913476020097733, + 0.011823246255517006, + 0.03630215674638748, + 0.0028766216710209846, + 0.004858212545514107, + -0.0007674981607124209, + -0.0008103159489110112, + 0.003841634374111891, + -0.00027670449344441295, + -0.01941811665892601, + -0.014998211525380611, + -0.019609646871685982, + -0.006040537264198065, + 0.010534107685089111, + 0.0069097853265702724, + 0.0037587611004710197, + 0.012552531436085701, + -0.014563587494194508, + 0.00196133297868073, + -0.007403341121971607, + 0.024677803739905357, + 0.012162106111645699, + 0.017532290890812874, + 0.0019576495978981256, + 0.002561703324317932, + 0.0018508352804929018, + 0.005675895139575005, + 0.0024769885931164026, + 0.007532255258411169, + 0.011454921215772629, + 0.004427271895110607, + -0.015351803973317146, + -0.012714594602584839, + -0.024442076683044434, + 0.004622484091669321, + 0.02173120155930519, + -0.009613294154405594, + -0.01987484097480774, + -0.015484401024878025, + 0.008707213215529919, + 0.018327873200178146, + -0.0012246820842847228, + -0.010556207038462162 + ], + "45b5b822-819a-4a0b-a28a-fa937e4aba70": [ + -0.03624032065272331, + -0.023276885971426964, + 4.784071643371135e-5, + 0.029966305941343307, + -0.013421811163425446, + -0.014574912376701832, + -0.005389494355767965, + 0.012068170122802258, + -0.03202899545431137, + 0.07345469295978546, + -0.022087974473834038, + 0.013278568163514137, + 0.008737784810364246, + -0.017418272793293, + 0.006610635668039322, + 0.01879340037703514, + -0.011008176952600479, + 0.030711166560649872, + 0.009117376990616322, + -0.02353472262620926, + 0.03853220120072365, + -0.005056455731391907, + -0.05165320262312889, + 0.02324823848903179, + 0.023276885971426964, + -0.002687585074454546, + -0.018893670290708542, + -0.0034539317712187767, + -0.02950792945921421, + -0.0019427248043939471, + -0.0262276791036129, + 0.02581227570772171, + -0.010442369617521763, + 0.011079797521233559, + 0.005081523209810257, + -0.009303592145442963, + 0.0005116438842378557, + 0.024279583245515823, + -0.019896365702152252, + 0.0013446877710521221, + -0.014481804333627224, + 0.028247397392988205, + -0.0056186821311712265, + -0.051194824278354645, + -0.04663971811532974, + 0.009117376990616322, + -0.026557136327028275, + -0.009446835145354271, + 0.032630614936351776, + -0.03632626682519913, + 0.05159590393304825, + 0.022689592093229294, + -0.0022739728447049856, + 0.05044996738433838, + 0.02615605853497982, + -0.010750340297818184, + 0.0032068388536572456, + 0.031599268317222595, + 0.011072635650634766, + -0.03836030885577202, + -0.006950836628675461, + -0.009855075739324093, + -0.024250933900475502, + 0.010829123668372631, + -0.005339359864592552, + -0.005819221492856741, + -0.0072444831021130085, + -0.029035229235887527, + -0.04744187742471695, + -0.015384231694042683, + 0.0022829254157841206, + -0.002157588256523013, + -0.05050726234912872, + -0.01759016327559948, + 0.026113085448741913, + -0.05079374834895134, + 0.053744539618492126, + 0.027545509859919548, + 0.00939670018851757, + -0.023190941661596298, + -0.010671556927263737, + -0.025926871225237846, + -0.016258010640740395, + -0.018736103549599648, + 0.06205260008573532, + 0.006342056207358837, + -0.029178472235798836, + -0.033948443830013275, + -0.006406515371054411, + -0.005837127100676298, + -0.013264244422316551, + -0.003316061105579138, + 0.01010574959218502, + -0.008522921241819859, + -0.032458722591400146, + 0.007291037123650312, + 0.013178299181163311, + 0.013479107990860939, + -0.0232912115752697, + -0.04827268049120903, + -0.0264282189309597, + -0.034263577312231064, + -0.023506075143814087, + -0.004698350094258785, + -0.01869313046336174, + 0.022890131920576096, + 0.008680487982928753, + 0.0034861613530665636, + -0.015054773539304733, + 0.06778229027986526, + -0.03423492982983589, + -0.025411197915673256, + 0.043975409120321274, + -0.016716385260224342, + -0.06365691125392914, + -0.04543648287653923, + 0.019681502133607864, + -0.0047234175726771355, + -0.0031173122115433216, + -0.025626061484217644, + 0.039448950439691544, + 0.0060090175829827785, + 0.03340412303805351, + 0.0407094843685627, + 0.014839909970760345, + 0.028075506910681725, + 0.015957200899720192, + 0.007727926131337881, + 0.02967981994152069, + 0.027359293773770332, + -0.012089656665921211, + 0.0176188126206398, + 0.016974221915006638, + 0.017045842483639717, + -0.026857946068048477, + 0.01006993930786848, + 0.03773004189133644, + 0.07546008378267288, + -0.02307634800672531, + -0.00862319115549326, + -0.021027980372309685, + -0.002155797788873315, + -0.0011907023144885898, + -0.00032744312193244696, + -0.016143416985869408, + 0.011294661089777946, + -0.01644422486424446, + 0.05228346958756447, + -0.04151163995265961, + 0.026628758758306503, + -0.013142487965524197, + 0.01185330655425787, + -0.022245541214942932, + 0.01532693486660719, + 0.017131788656115532, + 0.005790573079138994, + -0.017475569620728493, + 0.031112244352698326, + -0.0037028153892606497, + 0.047184038907289505, + -0.017045842483639717, + -0.0640006959438324, + 0.01693124882876873, + 0.015670716762542725, + 0.009504131972789764, + 0.012125466950237751, + 0.0024852552451193333, + 0.029880359768867493, + -0.03423492982983589, + 0.024308230727910995, + -0.013285730965435505, + -0.05062185600399971, + 0.00628834031522274, + -0.001638334710150957, + 0.004254298750311136, + 0.009074404835700989, + 0.009575752541422844, + 0.013221271336078644, + 0.02684362232685089, + 0.006735973060131073, + -0.04079543054103851, + 0.030367383733391762, + -0.003217581892386079, + -0.008981296792626381, + 0.029421985149383545, + -0.004014367703348398, + -0.005539898760616779, + -0.015556122176349163, + -0.003208629321306944, + -0.013235596008598804, + -0.004103894345462322, + -0.013880186714231968, + 0.0066858381032943726, + 0.003466465510427952, + -0.04151163995265961, + -0.012705598957836628, + 0.031255487352609634, + -0.02072717249393463, + -0.010241829790174961, + 0.009131701663136482, + -0.029035229235887527, + -0.01955258473753929, + -0.049189433455467224, + 0.027932263910770416, + -0.03738626092672348, + 0.02965117245912552, + -0.008522921241819859, + -0.019065560773015022, + 0.061078548431396484, + -0.014531939290463924, + 0.07735088467597961, + -0.05867207795381546, + -0.0021307303104549646, + -0.004154028836637735, + -0.016745034605264664, + 0.012834517285227776, + 0.005865775514394045, + 0.016573144122958183, + -0.007921303622424603, + -0.003906935919076204, + -0.0050779422745108604, + -0.03386249765753746, + -0.04832997918128967, + -0.016888275742530823, + -0.053916431963443756, + 0.030080899596214294, + -0.01266262587159872, + 0.015226664952933788, + -0.0066500273533165455, + -0.0010474598966538906, + 0.009074404835700989, + 0.0049633486196398735, + 0.025425521656870842, + -0.00812184251844883, + 0.012920462526381016, + 0.047527819871902466, + 0.0069794850423932076, + 0.009661698713898659, + 0.017217734828591347, + -0.017360975965857506, + 0.004440513905137777, + 0.01675935834646225, + -0.008365354500710964, + -0.03222953528165817, + -0.0027699493803083897, + 0.017289355397224426, + 0.019366368651390076, + 0.02554011531174183, + 0.00028178462525829673, + -0.012820192612707615, + -0.023592019453644753, + -0.011273175477981567, + -0.012956272810697556, + 0.0017386043909937143, + -0.04855916649103165, + 0.06921471655368805, + 0.037157073616981506, + -0.016057470813393593, + -0.012913300655782223, + 0.006023341789841652, + 0.02155797742307186, + 0.01859286054968834, + 0.014696667902171612, + 0.013894510455429554, + 0.015527473762631416, + 0.026199031621217728, + 0.005457534454762936, + -0.0027359293308109045, + 0.024265259504318237, + 0.013500594533979893, + 0.021959057077765465, + -0.014445994049310684, + -0.017747730016708374, + 0.0007873854483477771, + -0.046181343495845795, + -0.0005179107538424432, + -0.0247093103826046, + 0.0124549251049757, + -0.005088685546070337, + 0.007029619533568621, + -0.034607358276844025, + -0.050364021211862564, + 0.03907652199268341, + 0.04772835969924927, + 0.016673412173986435, + 0.003185352310538292, + -0.006338475272059441, + -0.019294748082756996, + -0.039477597922086716, + -0.0030080899596214294, + -0.004010786768049002, + -0.030396033078432083, + 0.05027807503938675, + 0.020927712321281433, + 0.03031008690595627, + 0.014710992574691772, + -0.025697682052850723, + 0.005314292386174202, + -0.014897207729518414, + -0.002073433483019471, + -0.0437462218105793, + 0.04154029116034508, + 0.034120336174964905, + -0.031054947525262833, + -0.011509524658322334, + -0.03119819052517414, + 0.056552089750766754, + 0.05259860306978226, + -0.0161004438996315, + 0.039649490267038345, + 0.005776248872280121, + -0.018148809671401978, + -0.019509611651301384, + -0.0009033222449943423, + 0.013600863516330719, + 0.03750085458159447, + -0.027316320687532425, + -0.0019087046384811401, + -0.025626061484217644, + 0.002839780179783702, + -0.018019890412688255, + 0.010879258625209332, + -0.026872269809246063, + 0.003677748143672943, + 0.009231971576809883, + -0.06354232132434845, + 0.006718067452311516, + -0.015742337331175804, + 0.012189926579594612, + -0.020755819976329803, + -0.02238878421485424, + -0.014603560790419579, + -0.02556876465678215, + -0.023821206763386726, + -0.020268796011805534, + -0.03139872848987579, + -0.06251097470521927, + -0.017847999930381775, + -0.01910853385925293, + -0.0017081653932109475, + -0.052254818379879, + -0.03509438410401344, + -0.011624119244515896, + -0.00010082920198328793, + -0.02581227570772171, + -0.03873273730278015, + 0.0025103227235376835, + 0.020225822925567627, + 0.002017927123233676, + 0.013271406292915344, + 0.0008155863033607602, + -0.012225736863911152, + 0.04277217388153076, + -0.01333586499094963, + 0.04606674984097481, + -0.025583088397979736, + -0.0008764642989262938, + 0.0320003479719162, + 0.0012265128316357732, + -0.003242649370804429, + 0.033633310347795486, + -0.06634987145662308, + 0.001028659287840128, + -0.03414898365736008, + 0.00016842169861774892, + 0.007749412674456835, + -0.013966131955385208, + -0.029966305941343307, + 0.003187143011018634, + 0.02248905412852764, + -0.0021414735820144415, + -0.018549887463450432, + -0.00496692955493927, + -0.012426276691257954, + 0.04409000277519226, + -0.04007921740412712, + 0.016558818519115448, + 0.0027180241886526346, + -0.033088989555835724, + 0.03434952348470688, + -0.03689923509955406, + 0.029307391494512558, + 0.05451804772019386, + 0.0018603603821247816, + 0.01473964098840952, + -0.0023921476677060127, + 0.00019382484606467187, + -0.052741844207048416, + -0.011437904089689255, + -0.002254277002066374, + -0.036469507962465286, + -0.004308014642447233, + -0.017604488879442215, + 0.010435206815600395, + -0.010084263049066067, + 0.013693971559405327, + 0.02671470306813717, + 0.006213138345628977, + 0.0005398447392508388, + -0.02529660426080227, + -0.004157610237598419, + -0.009496970102190971, + -0.014431669376790524, + -0.012562356889247894, + -0.005808478221297264, + -0.03538086637854576, + -0.00030282334773801267, + -0.008580218069255352, + 0.027373619377613068, + -0.01786232367157936, + 0.027072809636592865, + -0.007527386769652367, + -0.030911704525351524, + -0.0003117759770248085, + 0.0003798161051236093, + 0.04156893864274025, + 0.026585785672068596, + 0.035266272723674774, + -0.04053759202361107, + 0.017389625310897827, + 0.02684362232685089, + 0.035638704895973206, + -0.018879344686865807, + 0.04420459643006325, + -0.02647119201719761, + 0.011287499219179153, + 0.022517701610922813, + -0.016601791605353355, + -0.0019480963237583637, + -0.0032892031595110893, + 0.002247114898636937, + -0.0027681589126586914, + -0.008415489457547665, + -0.008902513422071934, + -0.029565226286649704, + -0.035953838378190994, + 0.00491679459810257, + 0.010599936358630657, + -0.021686896681785583, + -0.036125726997852325, + -0.010542638599872589, + -0.013822889886796474, + 0.013135326094925404, + -0.009203323163092136, + 0.005837127100676298, + -0.027789020910859108, + 0.014009105041623116, + 0.026270652189850807, + 0.02532525174319744, + -0.017876649275422096, + -0.009067242965102196, + 0.032286833971738815, + -0.022274190559983253, + -0.006112868431955576, + 0.011889117769896984, + -0.03873273730278015, + 0.00858738087117672, + -0.03575329855084419, + 0.010377909988164902, + -0.0483013316988945, + 0.016644764691591263, + 0.027903614565730095, + 0.03283115476369858, + -0.004265042021870613, + 0.012146953493356705, + -0.04878835380077362, + 0.009955345652997494, + 0.016086118295788765, + 0.014639371074736118, + 0.00242795841768384, + -0.015728013589978218, + 0.01549882534891367, + -0.05231211706995964, + -0.011488039046525955, + 0.02187311090528965, + 0.005840708035975695, + -0.007992925122380257, + -0.014940179884433746, + 0.025898221880197525, + 0.013686809688806534, + -0.030625220388174057, + -0.0035380867775529623, + 0.01661611534655094, + 0.022231217473745346, + -0.0350370854139328, + 0.032773856073617935, + 0.0038711251690983772, + -0.04563702270388603, + -0.041826773434877396, + 0.01352924294769764, + -0.0016634020721539855, + 0.017432598397135735, + 0.0013420020695775747, + 0.04446243494749069, + 0.02256067469716072, + 0.00998399406671524, + 0.011652767658233643, + -0.018263403326272964, + 0.025697682052850723, + -0.010299126617610455, + 0.01727503165602684, + -0.0511375293135643, + 0.0037028153892606497, + -0.018807724118232727, + -0.007928465493023396, + 0.03884733468294144, + -0.0020859672222286463, + -0.002567619550973177, + -0.006743134930729866, + -0.01541288010776043, + -0.020712848752737045, + 0.020369065925478935, + -0.04027975723147392, + 0.008995621465146542, + 0.012791544198989868, + 0.011416417546570301, + -0.015842607244849205, + 0.012676950544118881, + 0.030739814043045044, + 0.01707449182868004, + 0.007864006794989109, + 0.00038697823765687644, + -0.005747600458562374, + 0.020369065925478935, + -0.010915068909525871, + 0.013414648361504078, + -0.03154197335243225, + -0.011516687460243702, + -0.022016353905200958, + -0.013844375498592854, + 0.0035076476633548737, + -0.0003256525960750878, + -0.013035056181252003, + 0.00971183367073536, + 0.024766607210040092, + 0.0042793662287294865, + -0.03540951758623123, + 0.0391911156475544, + 0.025439847260713577, + 0.02236013486981392, + -0.01641557738184929, + 0.018234753981232643, + -0.000371311092749238, + -0.014395859092473984, + -0.03586789220571518, + -0.006377866957336664, + -0.005586452782154083, + 0.008365354500710964, + 0.003179980907589197, + 0.004043016117066145, + -0.021715544164180756, + 0.03389114513993263, + -0.015642067417502403, + 0.018163133412599564, + -0.013486269861459732, + -0.04512134939432144, + 0.010277641005814075, + 0.01849259063601494, + 0.010184532962739468, + -0.05162455141544342, + -0.010084263049066067, + 0.007065430283546448, + 0.0032480210065841675, + 0.0030170425307005644, + -0.024680661037564278, + 0.014696667902171612, + -0.06274016201496124, + 0.0034610938746482134, + 0.038303010165691376, + 0.02657146193087101, + -0.0052641574293375015, + 0.007806709501892328, + 0.03317493572831154, + 0.0021289398428052664, + -0.015283961780369282, + 0.004218488000333309, + -0.005375170148909092, + -0.01942366734147072, + -0.03374790400266647, + -0.0029257256537675858, + 0.014173833653330803, + -0.01744692213833332, + 0.03085440769791603, + -0.023348508402705193, + 0.010206019505858421, + -0.009697508998215199, + -0.004433351568877697, + -0.009862237609922886, + -0.0037708557210862637, + 0.025310928001999855, + 0.024852553382515907, + 0.0086590014398098, + -0.0011853306787088513, + 0.00309761636890471, + -0.014231130480766296, + 0.0283046942204237, + -0.0037207207642495632, + -0.017260706052184105, + 0.006352799478918314, + 0.021027980372309685, + 0.006510366220027208, + 0.02913549914956093, + -0.017876649275422096, + -0.016186388209462166, + -0.04729863256216049, + 0.012347493320703506, + -0.016916925087571144, + 0.004401122219860554, + -0.0029346782248467207, + 0.020913386717438698, + 0.053372111171483994, + -0.006700162310153246, + 0.013844375498592854, + -0.027760373428463936, + 0.023448776453733444, + 0.01371545810252428, + 0.00039436417864635587, + 0.034464117139577866, + 0.009747643955051899, + -0.0195955578237772, + 0.02380688302218914, + -0.0014395859325304627, + 0.053543999791145325, + -0.003380520036444068, + 0.007649143226444721, + 0.04323054850101471, + -0.04033705219626427, + 0.007649143226444721, + -0.024866877123713493, + -0.009697508998215199, + 0.001982116373255849, + -0.010958041995763779, + -0.01976744830608368, + -0.022646620869636536, + 0.04056624323129654, + 0.005579290445894003, + 0.04741322621703148, + 0.010564125142991543, + -0.0033876821398735046, + 0.01442450750619173, + -0.0030456911772489548, + -0.03581059351563454, + 0.02407904341816902, + 0.01800556667149067, + -0.015198016539216042, + 0.011745874769985676, + 0.003555992152541876, + 0.027831993997097015, + 0.02429390698671341, + 0.012848841026425362, + -0.045866210013628006, + 0.03701382875442505, + -0.006829080171883106, + 0.031140893697738647, + 0.011538174003362656, + -0.01720340922474861, + -0.021070953458547592, + 0.010227506048977375, + -0.01559909526258707, + -0.008644677698612213, + 0.026514165103435516, + -0.03672734647989273, + 0.01869313046336174, + 0.021500680595636368, + 0.053744539618492126, + 0.037128426134586334, + -0.02556876465678215, + 0.008651839569211006, + 0.02442282624542713, + 0.061422333121299744, + 0.0018961710156872869, + -0.005744019523262978, + 0.007892655208706856, + 0.016186388209462166, + 0.00951845571398735, + -0.011996549554169178, + 0.0036276131868362427, + 0.025797951966524124, + -0.005600776989012957, + 0.001279333489947021, + -0.0009355517686344683, + -0.023763909935951233, + -0.027201727032661438, + 0.028605502098798752, + 0.0077780610881745815, + -0.004884565249085426, + -0.004684025887399912, + -0.011065473780035973, + -0.015283961780369282, + -0.039821382611989975, + 0.005973207298666239, + 0.03801652789115906, + -0.005088685546070337, + -0.005153144709765911, + -0.026514165103435516, + 0.01304221898317337, + -0.027731724083423615, + 0.009095891378819942, + -0.004343824926763773, + 0.01441018283367157, + -0.02595551870763302, + 0.004508554004132748, + -0.013142487965524197, + -0.0014225759077817202, + 0.010936555452644825, + 0.02390715293586254, + -0.016472874209284782, + -0.037472207099199295, + -0.0027377200312912464, + -0.023663640022277832, + 0.01592855341732502, + 0.0004339796432759613, + -0.02207365073263645, + 0.0035183909349143505, + 0.010972365736961365, + 0.004007205367088318, + -0.04122515767812729, + 0.004028691910207272, + -0.013629511930048466, + -0.004150447901338339, + -0.02581227570772171, + 0.025110388174653053, + -0.007362658157944679, + -0.035925187170505524, + -0.0006656293990090489, + -0.00279501685872674, + 0.017948269844055176, + -0.012827355414628983, + -0.01683097891509533, + 0.004193420521914959, + 0.0454651303589344, + -0.001179959042929113, + -0.0018979614833369851, + -0.0025515048764646053, + 5.511474228114821e-5, + -0.0162007138133049, + 0.006750297266989946, + 0.006320570129901171, + 0.023592019453644753, + 0.028562530875205994, + 0.000208820536499843, + -0.012218574993312359, + 0.0022793442476540804, + -0.020540956407785416, + -0.0043832166120409966, + -0.020168526098132133, + -0.0037457882426679134, + 0.020655550062656403, + 0.013099515810608864, + 0.01575666107237339, + 0.009117376990616322, + -0.03583924472332001, + 0.0087091363966465, + -0.01641557738184929, + 0.0024780931416898966, + 0.014195319265127182, + -0.004766390193253756, + -0.016186388209462166, + 0.011724388226866722, + 0.038961928337812424, + -0.014710992574691772, + 0.0284049641340971, + -0.019223127514123917, + -0.023663640022277832, + 0.016014497727155685, + -0.0013061914360150695, + 0.007534549105912447, + 0.014073563739657402, + 0.03214358910918236, + -0.0024351205211132765, + 0.02336283214390278, + -0.0019248194294050336, + 0.010936555452644825, + -0.01783367618918419, + -0.01938069425523281, + -0.042313799262046814, + -0.010062777437269688, + -0.01582828350365162, + 0.01817745715379715, + -0.004519296810030937, + -0.0317998081445694, + -0.048702407628297806, + 0.020497985184192657, + 0.0008214054978452623, + -0.004691187757998705, + 0.010177371092140675, + 0.017805026844143867, + 0.010542638599872589, + -0.02246040478348732, + -0.0023796139284968376, + 0.007921303622424603, + 0.0071477945894002914, + -0.0036365659907460213, + -0.005998274777084589, + 0.025167685002088547, + 0.003167447168380022, + -0.007799547631293535, + 0.0042256503365933895, + -0.0038532200269401073, + 0.003785179927945137, + -0.0018388740718364716, + -0.03283115476369858, + 0.032286833971738815, + 0.005103009752929211, + -0.002136101946234703, + -0.042313799262046814, + -0.01373694371432066, + -0.01920880377292633, + -0.03157062083482742, + 0.023405805230140686, + -0.0042256503365933895, + 0.013035056181252003, + -0.0025747816544026136, + 0.007885493338108063, + -0.0002495550725143403, + 0.004089570138603449, + 0.01541288010776043, + 0.03518032655119896, + 0.009718995541334152, + -0.004787876270711422, + -0.026141734793782234, + 0.00858738087117672, + 0.01114425715059042, + 0.0029991373885422945, + 0.009274943731725216, + -0.017389625310897827, + 0.02128581702709198, + -0.007419954985380173, + 0.020583929494023323, + 0.03257331624627113, + -0.014138022437691689, + -0.0010859562316909432, + -0.04423324763774872, + 0.05360129848122597, + -0.003892611712217331, + 0.03119819052517414, + -0.03907652199268341, + 0.012591005302965641, + -0.05901585891842842, + 0.0012265128316357732, + -0.009002783335745335, + -0.018779076635837555, + -0.007419954985380173, + 0.012125466950237751, + 0.009869399480521679, + 0.01585693098604679, + -0.005804897285997868, + -0.012633977457880974, + -0.005457534454762936, + 0.024680661037564278, + 0.02297607809305191, + -0.019366368651390076, + 0.06422988325357437, + 0.010936555452644825, + 0.012841679155826569, + 0.023921476677060127, + -0.004343824926763773, + 0.021686896681785583, + 0.009726157411932945, + -0.003065386787056923, + 0.002744882134720683, + -0.023763909935951233, + -0.019022587686777115, + -0.007398468907922506, + 0.015054773539304733, + 0.01559909526258707, + 0.018721777945756912, + 0.0032265344634652138, + 0.006846985779702663, + 0.022861484438180923, + -0.0013903463259339333, + -0.02055528201162815, + 0.05297103151679039, + -0.01119439210742712, + 0.008093194104731083, + -0.016143416985869408, + 0.008114680647850037, + -0.05191103741526604, + -0.010492504574358463, + 0.00818630214780569, + 0.0036705860402435064, + -0.017160436138510704, + -0.027660103514790535, + 0.012146953493356705, + -0.028949284926056862, + 0.0335187166929245, + 0.024694986641407013, + -0.0001575666101416573, + -0.02466633729636669, + 0.027774697169661522, + 0.0035058571957051754, + 0.031943049281835556, + -0.004078826867043972, + -0.04088137298822403, + -0.009625887498259544, + -0.0010546220000833273, + 0.011831820011138916, + 0.011466552503407001, + -0.022961752489209175, + 0.008164815604686737, + 0.005697465501725674, + -0.0036150794476270676, + 0.002322317101061344, + -0.012512221932411194, + 0.014331400394439697, + -0.024107692763209343, + -0.013228433206677437, + -0.016644764691591263, + 0.025511467829346657, + -0.015255313366651535, + 0.006184489466249943, + -0.0014897207729518414, + 0.0031065691728144884, + -0.0023796139284968376, + 0.035610053688287735, + -0.00877359602600336, + 0.00893116183578968, + -0.009425348602235317, + 0.012512221932411194, + -0.04795754700899124, + 0.0049633486196398735, + -0.017962593585252762, + -0.01190344151109457, + 0.015470176935195923, + -0.03116954118013382, + -0.008716299198567867, + -0.01249073538929224, + 0.005679560359567404, + 0.005525574553757906, + 0.00934656523168087, + -0.00736982049420476, + -0.007806709501892328, + -0.00794995203614235, + 0.007670629303902388, + 0.004805781878530979, + -0.012003711424767971, + -0.03406303748488426, + -0.00948264542967081, + -0.03197170048952103, + -0.014309913851320744, + 0.020096905529499054, + 0.009267781861126423, + 0.0007403840427286923, + -0.015140719711780548, + 0.016702061519026756, + -0.0022202569525688887, + 0.008021573536098003, + 0.03755815327167511, + -0.0014216805575415492, + -0.037787340581417084, + -0.008043059147894382, + 0.019910691305994987, + 0.00023634992248844355, + -0.013006407767534256, + 0.032945748418569565, + 0.012118305079638958, + -0.015240988694131374, + -0.03575329855084419, + -0.015369907021522522, + 0.009489807300269604, + -0.0263279490172863, + -0.003554201452061534, + 0.027760373428463936, + 0.0015577608719468117, + -0.05403102561831474, + 0.015026125125586987, + -0.023720938712358475, + 0.008952648378908634, + -0.031943049281835556, + -0.02615605853497982, + -0.0009624097147025168, + -0.024938497692346573, + 0.009991155937314034, + -0.0405089445412159, + -0.024609040468931198, + -0.033289529383182526, + -0.02042636275291443, + -0.022861484438180923, + -0.008014410734176636, + 0.008408327586948872, + 0.03466465696692467, + -0.013056542724370956, + -0.008293733932077885, + -0.05795586481690407, + -0.00830805767327547, + -0.010263316333293915, + -0.02877739444375038, + -0.017289355397224426, + -0.0007063639932312071, + 0.0048988894559443, + -0.014983152970671654, + -0.045207295566797256, + 0.010342099703848362, + 0.025310928001999855, + 0.0024995794519782066, + 0.018234753981232643, + -0.008701974526047707, + -0.0333181768655777, + -0.00877359602600336, + -0.033260881900787354, + -0.007341172080487013, + 0.00624536769464612, + -0.03515167906880379, + 0.023892829194664955, + 0.013930321671068668, + -0.0047234175726771355, + 0.02207365073263645, + 0.002059109276160598, + 0.02301904931664467, + 0.005744019523262978, + -0.025210658088326454, + -0.025869574397802353, + -0.013085191138088703, + 0.004787876270711422, + 0.006932931020855904, + 0.026958215981721878, + 0.020856089890003204, + -0.008644677698612213, + -0.0088094063103199, + 0.02806118130683899, + -0.01247641071677208, + -0.003317851573228836, + 0.012698437087237835, + -0.019810421392321587, + 0.004974091425538063, + 0.012326006777584553, + 0.015484500676393509, + -0.0035810593981295824, + 0.0010241830023005605, + -0.004032272845506668, + -0.02270391769707203, + -0.021916083991527557, + -0.003011670894920826, + -0.010915068909525871, + 0.0038138283416628838, + -0.025167685002088547, + 0.0069436742924153805, + -0.06205260008573532, + -0.02536822482943535, + 0.010564125142991543, + 0.006166584324091673, + 0.0008469205349683762, + -0.01661611534655094, + 0.006213138345628977, + 0.018535563722252846, + -0.022589322179555893, + 0.023506075143814087, + -0.0014646532945334911, + 0.02771740034222603, + -0.023377155885100365, + 0.012777220457792282, + 0.0098479138687253, + -0.006137935910373926, + 0.010750340297818184, + 0.006581987254321575, + 0.0004536754568107426, + -0.03217223659157753, + -0.0007958904607221484, + -0.017432598397135735, + 0.009941020980477333, + 0.00613435497507453, + -0.016429901123046875, + 0.017819352447986603, + 0.01727503165602684, + -0.011982224881649017, + -0.014710992574691772, + 0.006657189689576626, + -0.00619523273780942, + -0.009504131972789764, + -0.0022506958339363337, + -0.001874684588983655, + 0.002014345955103636, + 0.010900745168328285, + 0.001495987642556429, + -0.018993940204381943, + 0.033117637038230896, + -0.003511228831484914, + 0.017389625310897827, + -0.019409341737627983, + -0.009052918292582035, + 0.012555194087326527, + 0.0006548862438648939, + -0.009303592145442963, + 0.009726157411932945, + -0.052369412034749985, + 0.011967901140451431, + 0.02854820527136326, + 0.007957113906741142, + 0.006467393599450588, + 0.013908835127949715, + -0.020154202356934547, + -0.014488966204226017, + 0.007287456188350916, + 0.018635833635926247, + 0.007072592619806528, + 0.03139872848987579, + 0.013443296775221825, + 0.04388946294784546, + -0.007269550580531359, + 0.0035148097667843103, + -0.022059326991438866, + -0.028118478134274483, + 0.0010608888696879148, + -0.0017180133145302534, + 0.016673412173986435, + 0.03397709131240845, + -0.0033894728403538465, + 0.018506914377212524, + -0.011960738338530064, + -0.005206860601902008, + 0.03274520859122276, + 0.0077422503381967545, + 0.02415066584944725, + 0.017647461965680122, + 0.018163133412599564, + -0.002623126143589616, + 0.007119146175682545, + -0.0008809406426735222, + -0.027216052636504173, + 0.010492504574358463, + 0.009905210696160793, + -0.005425305105745792, + -0.0037135586608201265, + -0.002157588256523013, + -0.023520398885011673, + -0.0038675442337989807, + 0.0001299253199249506, + 0.009131701663136482, + 0.005586452782154083, + 0.005514831747859716, + 0.00948264542967081, + -0.028605502098798752, + 0.036469507962465286, + 0.014625046402215958, + -0.025210658088326454, + -0.00623820535838604, + -0.002569410251453519, + 0.0064530689269304276, + -0.027459563687443733, + 0.0250101201236248, + -0.015226664952933788, + -0.007144213654100895, + 0.018564213067293167, + -0.006392191164195538, + -0.025654710829257965, + -0.015369907021522522, + -0.01779070310294628, + -0.023405805230140686, + 0.012820192612707615, + -0.0021951894741505384, + 0.012297358363866806, + -0.013321541249752045, + 0.0016678784741088748, + 0.014940179884433746, + -0.00817197747528553, + 0.008644677698612213, + -0.029937656596302986, + -0.014016266912221909, + 0.0014449574518948793, + -0.00021564692724496126, + 0.005937396548688412, + 0.011301823891699314, + -0.014882883056998253, + -0.007101241033524275, + 0.01005561463534832, + -0.013121001422405243, + 0.026012815535068512, + -0.008952648378908634, + -0.010685881599783897, + 0.00015633561997674406, + -0.0003102092887274921, + 0.011480876244604588, + 0.011065473780035973, + -0.005525574553757906, + 0.02135743945837021, + 0.0014127279864624143, + -0.015642067417502403, + -0.017962593585252762, + -0.004068083595484495, + -0.01119439210742712, + 0.010857772082090378, + -0.014023428782820702, + 0.01052115298807621, + 0.0010492504807189107, + 0.0037099774926900864, + 0.025754978880286217, + 0.0007748517673462629, + -0.017847999930381775, + 0.03649815917015076, + 0.012583842501044273, + 0.019122857600450516, + -0.012125466950237751, + -0.01634395495057106, + -0.007534549105912447, + 0.0033250136766582727, + 0.00013787079660687596, + -0.0021396831143647432, + 0.0037672745529562235, + 0.00316565646789968, + 0.02801821008324623, + -0.008265085518360138, + -0.0003773541538976133, + 0.020583929494023323, + -0.016530171036720276, + 0.0005622263415716588, + -0.031943049281835556, + -0.0009498760337010026, + -0.003504066728055477, + 0.002300830790773034, + -0.021099602803587914, + -0.0317998081445694, + 0.006696581374853849, + -0.012232898734509945, + -0.021758517250418663, + -0.021586626768112183, + -0.012619653716683388, + -0.008071708492934704, + -0.04305865988135338, + 0.021586626768112183, + 0.006478136405348778, + 0.015957200899720192, + 0.007806709501892328, + 0.005439629312604666, + 0.027874967083334923, + 0.007899817079305649, + 0.0027699493803083897, + 0.03116954118013382, + 0.02405039593577385, + -0.0015165787190198898, + -0.022016353905200958, + -0.006954417563974857, + 0.008787919767200947, + 0.010664395056664944, + 0.02681497298181057, + 0.0038961926475167274, + -0.0175185427069664, + -0.0034969046246260405, + 0.00685772905126214, + -0.027516860514879227, + 0.02373526245355606, + -0.0006137040909379721, + 0.0022829254157841206, + -0.0158999040722847, + -0.026012815535068512, + -0.0027251862920820713, + 0.011022500693798065, + -0.016945572569966316, + -0.003989300224930048, + -0.0008715403382666409, + -0.005149563308805227, + -0.0019140762742608786, + -0.0113662825897336, + -0.002832618076354265, + 0.0018191782291978598, + -0.024408500641584396, + -0.02003960870206356, + -0.04595215618610382, + 0.0054145618341863155, + 0.0019660016987472773, + 0.018535563722252846, + -0.0300236027687788, + 0.03506573289632797, + 0.006639284081757069, + 0.01509774662554264, + -0.030252790078520775, + 0.012340330518782139, + -0.0013742315350100398, + 0.010026966221630573, + -0.008358192630112171, + -0.00924629531800747, + -0.003179980907589197, + 0.007316104602068663, + 0.014159508980810642, + 0.009475483559072018, + -0.03420627862215042, + 0.0098479138687253, + -0.010277641005814075, + 0.010979528538882732, + 0.00570104643702507, + -0.019953662529587746, + -0.004204163793474436, + 0.011051149107515812, + 0.04237109422683716, + -0.001919447910040617, + -0.0007838043966330588, + 0.011796009726822376, + 0.012003711424767971, + 0.004014367703348398, + 0.021987704560160637, + -0.016902601346373558, + -0.01001980435103178, + 0.00041428382974117994, + -0.024136340245604515, + 0.04426189512014389, + -0.005056455731391907, + 0.02052663266658783, + -0.00617732759565115, + -0.0005859508528374135, + -0.0007744040922261775, + 0.01105831190943718, + -0.024995794519782066, + 0.021930407732725143, + -0.030768463388085365, + -0.018392320722341537, + -0.01617206446826458, + 0.005282062571495771, + 0.008372517302632332, + -0.0019552584271878004, + 0.0015103118494153023, + 0.014940179884433746, + 0.002580153290182352, + -0.00791414175182581, + -0.010650070384144783, + 0.002592687029391527, + -0.02287580817937851, + -0.0012909718789160252, + -0.0013026103843003511, + -0.03641221299767494, + 0.017504218965768814, + -0.037959229201078415, + 0.02138608694076538, + 0.022847158834338188, + 0.012619653716683388, + -0.003781598759815097, + -0.0034969046246260405, + 0.0339197963476181, + 0.014560587704181671, + 0.009561428800225258, + 0.020440686494112015, + 0.00810035690665245, + 0.0009776292135939002, + 0.015942877158522606, + 0.0029454214964061975, + 0.008143329061567783, + 0.0038639630656689405, + 0.0027806926518678665, + 0.006456650327891111, + 0.011437904089689255, + 0.008508597500622272, + -0.02390715293586254, + -0.00040354064549319446, + 0.004025110974907875, + -0.00017121940618380904, + 0.014381534419953823, + 0.01993933878839016, + 0.005303549114614725, + -0.010241829790174961, + 0.0007323266472667456, + -0.013185461051762104, + -0.012283033691346645, + -0.024021746590733528, + -0.011724388226866722, + -0.016716385260224342, + -0.0011978644179180264, + 0.000943609164096415, + 0.011201553978025913, + -0.045350536704063416, + 0.010234667919576168, + 0.0017001079395413399, + 0.024866877123713493, + 0.019853394478559494, + -0.030596572905778885, + -0.01427410263568163, + 0.009375213645398617, + 0.011674254201352596, + 0.0039928811602294445, + -0.015842607244849205, + -0.012805868871510029, + -0.0028361990116536617, + -0.01651584543287754, + -0.01559909526258707, + 0.004744903650134802, + -0.01140209287405014, + -0.01321410946547985, + 0.008372517302632332, + -0.010528314858675003, + -0.004132542759180069, + 0.014603560790419579, + -0.007563197519630194, + -0.011086960323154926, + 0.026199031621217728, + 0.024924173951148987, + 0.021959057077765465, + 0.01195357646793127, + 0.029006581753492355, + 0.00048747172695584595, + -0.002687585074454546, + 0.031255487352609634, + -0.013085191138088703, + 0.003957070875912905, + 0.003502276260405779, + 0.014574912376701832, + 0.01173155102878809, + -0.0017403948586434126, + 0.019566908478736877, + -0.010299126617610455, + -0.019065560773015022, + -0.01820610649883747, + 0.011688577942550182, + 0.017117464914917946, + 0.007749412674456835, + 0.01109412219375372, + 0.0007018876494839787, + -0.012046683579683304, + -0.013035056181252003, + -0.019509611651301384, + -0.022861484438180923, + 0.0050600371323525906, + -0.015570446848869324, + -0.03867544233798981, + 0.00040309299947693944, + -0.0018290261505171657, + 0.026786325499415398, + -0.008129005320370197, + 0.012770057655870914, + 0.025339577347040176, + 0.015699364244937897, + -0.00690070167183876, + -0.011745874769985676, + -0.014796937815845013, + -0.02933603897690773, + -0.006632122211158276, + -0.00817197747528553, + -0.009769130498170853, + 0.0005514831864275038, + -0.006954417563974857, + 0.013407486490905285, + -0.006306245923042297, + -0.01776205562055111, + 0.020655550062656403, + 0.02236013486981392, + -0.005718952044844627, + -0.017131788656115532, + -0.022059326991438866, + 0.0035685256589204073, + -0.020053932443261147, + 0.003065386787056923, + -0.011459390632808208, + 0.007828195579349995, + 0.005880099721252918, + 0.0036920723505318165, + 0.015283961780369282, + 0.007090497761964798, + 0.0056186821311712265, + 0.027545509859919548, + -0.008250760845839977, + -0.02097068354487419, + 0.010141560807824135, + 0.004809362813830376, + 0.020225822925567627, + -0.01807718724012375, + -0.022173920646309853, + -0.011960738338530064, + 0.008508597500622272, + 0.0346360057592392, + -0.02336283214390278, + -0.008752109482884407, + -0.028490908443927765, + 0.01942366734147072, + -0.01925177499651909, + 0.0054073999635875225, + -0.024752283468842506, + -0.0022363716270774603, + -0.02363499253988266, + -0.02138608694076538, + -0.012963435612618923, + 0.004544364288449287, + -0.007029619533568621, + 0.004093151073902845, + 0.001214874442666769, + 0.017131788656115532, + 0.03575329855084419, + -0.010564125142991543, + 0.01820610649883747, + 0.007885493338108063, + -0.005231928080320358, + 0.0008527397876605392, + -0.006804013159126043, + -0.0005250728572718799, + -0.014431669376790524, + 0.011029663495719433, + 0.007792385295033455, + -0.02985171228647232, + 0.022087974473834038, + -0.007785223424434662, + 0.015613419003784657, + 0.021858787164092064, + 0.0018943804316222668, + -0.005668817088007927, + 0.00277711171656847, + -0.006503203883767128, + 0.011874793097376823, + -0.011459390632808208, + 0.006456650327891111, + -0.006377866957336664, + -0.0196958277374506, + 0.02062690258026123, + 0.023649316281080246, + 0.009941020980477333, + -0.004236393142491579, + 0.012290196493268013, + -0.024809580296278, + 0.0057082087732851505, + 0.019151505082845688, + -0.02135743945837021, + -0.007713601924479008, + -0.0176188126206398, + 0.017117464914917946, + -0.017776379361748695, + -0.018163133412599564, + -0.008780757896602154, + 0.01585693098604679, + -0.04022245854139328, + 0.007362658157944679, + 0.02598416805267334, + 0.008107518777251244, + -0.0019033331191167235, + 0.004798619542270899, + -0.011538174003362656, + -0.00853724591434002, + -0.00020344894437585026, + 0.01983906887471676, + -0.017719082534313202, + 0.012433438561856747, + 0.00156313250772655, + -0.0032247439958155155, + 0.026242002844810486, + -0.008078870363533497, + 0.02657146193087101, + 0.0003222953528165817, + 0.03300304338335991, + 0.016386928036808968, + 0.006141516845673323, + -0.003881868440657854, + -0.0007493366720154881, + -0.018234753981232643, + 0.011287499219179153, + -0.0017171179642900825, + -0.003317851573228836, + -0.01415234711021185, + 0.008129005320370197, + 0.015742337331175804, + -0.02965117245912552, + -0.003609708044677973, + -0.0026267070788890123, + 0.001951677375473082, + -0.009855075739324093, + -0.020340418443083763, + 0.01724638231098652, + 0.006814755965024233, + -0.006066314876079559, + -0.016702061519026756, + -0.013307216577231884, + 0.009525618515908718, + 0.014954504556953907, + -0.014639371074736118, + 0.0016454968135803938, + -0.0005371589213609695, + -0.01703151874244213, + -0.0022148853167891502, + 0.0031155217438936234, + -0.010163046419620514, + 0.0138730239123106, + 0.01862150989472866, + 0.00736982049420476, + 0.0032462303061038256, + -0.006460231263190508, + -0.00993385910987854, + -0.004003624431788921, + 0.0014583864249289036, + 0.018650157377123833, + 0.003978556953370571, + -0.0020412039011716843, + 0.018922317773103714, + 0.0055649662390351295, + -0.012984921224415302, + 0.0055219936184585094, + 0.011079797521233559, + 0.007670629303902388, + -0.021787166595458984, + 2.2619426090386696e-5, + -0.005493345204740763, + 0.056408848613500595, + 0.019395017996430397, + 0.008250760845839977, + 0.010213181376457214, + 0.028490908443927765, + -0.009067242965102196, + 0.02038338966667652, + 0.023004725575447083, + 0.012204250320792198, + -0.0031943051144480705, + 0.023506075143814087, + 0.00805022194981575, + -0.025626061484217644, + -0.013192622922360897, + -0.017360975965857506, + 0.008766433224081993, + 0.015813957899808884, + 0.011745874769985676, + -0.016530171036720276, + 0.04159758612513542, + 0.029192795976996422, + -0.009998317807912827, + -0.0029096107464283705, + 0.03051062673330307, + -0.009547104127705097, + 0.008651839569211006, + 0.01473964098840952, + 0.008494272828102112, + 0.04076677933335304, + -0.002256067469716072, + -0.006986646912992001, + -0.0023276887368410826, + -0.007821033708751202, + -0.02290445566177368, + 0.011810334399342537, + 0.007104821968823671, + 0.003577478462830186, + 0.009368051774799824, + -0.004630309995263815, + 0.020899062976241112, + -0.007069011218845844, + -0.017045842483639717, + 0.013328703120350838, + -0.005188954994082451, + -0.029737118631601334, + 0.008365354500710964, + -0.003480789717286825, + -0.007330428808927536, + 0.011237364262342453, + 0.017360975965857506, + -0.025525791570544243, + -0.02715875580906868, + 0.0009221227956004441, + -0.009926697239279747, + -0.001974954269826412, + -0.013099515810608864, + 0.0006298188236542046, + -0.015355583280324936, + -0.009504131972789764, + -0.0036168701481074095, + -0.006449487991631031, + 0.008816568180918694, + -0.017418272793293, + -0.019480964168906212, + 0.013228433206677437, + -0.017504218965768814, + -0.015470176935195923, + 0.01509774662554264, + -0.010342099703848362, + 0.020956359803676605, + -0.009790616109967232, + 0.007720764260739088, + 0.0027556251734495163, + -0.002035832265391946, + -0.012018035165965557, + 0.004834430292248726, + -0.0016777263954281807, + 0.0009892677189782262, + -0.007699277717620134, + 0.0009722576360218227, + -0.004816525150090456, + 0.009131701663136482, + 0.0022632295731455088, + -0.005489764269441366, + 0.004608823452144861, + 0.001994650112465024, + 0.007291037123650312, + 0.005880099721252918, + -0.0014172042720019817, + -0.013006407767534256, + 0.0014395859325304627, + -0.013428973034024239, + -0.001853198278695345, + 0.010163046419620514, + -0.021758517250418663, + 0.009188998490571976, + -0.017131788656115532, + -0.004254298750311136, + 0.03449276462197304, + -0.003982138354331255, + 0.006528271362185478, + 0.006166584324091673, + 0.005153144709765911, + 0.007577521726489067, + 0.003856800962239504, + 0.0026267070788890123, + 0.013722619973123074, + 0.008300895802676678, + -0.019409341737627983, + 0.0026804229710251093, + -0.00791414175182581, + -0.03486519679427147, + -0.011480876244604588, + 0.004755646921694279, + -0.008028735406696796, + -0.0030492721125483513, + -0.005991112440824509, + -0.01249073538929224, + -0.019495287910103798, + -0.016386928036808968, + 0.00251390365883708, + 0.019266100600361824, + 0.004254298750311136, + 0.01244060043245554, + -0.0038639630656689405, + 0.00015454509411938488, + -0.008494272828102112, + -0.017504218965768814, + -0.02566903457045555, + -0.0018442455912008882, + 0.01482558622956276, + 0.004053759388625622, + 0.011616956442594528, + -0.013600863516330719, + -0.002818293869495392, + -0.0088094063103199, + 0.025139037519693375, + -0.000965095532592386, + 0.024967147037386894, + -0.007684953510761261, + 0.0031584943644702435, + 0.028634151443839073, + -0.0004460657073650509, + 0.012633977457880974, + 0.01665908843278885, + 0.010821961797773838, + 0.0010340309236198664, + -0.019824745133519173, + 0.03936300426721573, + 0.004494229797273874, + 0.023434452712535858, + -0.012691274285316467, + -0.021916083991527557, + -0.01558477059006691, + 0.004691187757998705, + 0.02395012602210045, + -0.016702061519026756, + -0.02138608694076538, + -0.008229274302721024, + -0.017146112397313118, + 0.007029619533568621, + -0.013543566688895226, + -0.007799547631293535, + 0.00808603223413229, + -0.01285600382834673, + 0.01302789431065321, + 0.019538260996341705, + 0.010134398005902767, + 0.009088728576898575, + -0.010843448340892792, + -0.015283961780369282, + -0.006714486517012119, + 0.009339403361082077, + -0.015083422884345055, + -0.004265042021870613, + 0.0007524701068177819, + 0.00810035690665245, + 0.027445239946246147, + -0.018163133412599564, + 0.008336706086993217, + 0.008752109482884407, + -0.002558666979894042, + -0.009525618515908718, + -0.01451045274734497, + -0.0030868733301758766, + -0.006059152539819479, + 0.035266272723674774, + -0.0002958850236609578, + 0.014668019488453865, + -0.008300895802676678, + -0.007606170140206814, + 0.029035229235887527, + 0.006993809249252081, + 0.007215834688395262, + -0.0008773595909588039, + 0.00853724591434002, + -0.005883680656552315, + 0.021171223372220993, + 0.008444137871265411, + 0.010614260099828243, + 6.378762191161513e-5, + -0.008981296792626381, + 0.022030677646398544, + -0.00872346106916666, + -0.0009194370359182358, + -0.020082581788301468, + -0.008236437104642391, + -0.00429369043558836, + -0.022789862006902695, + 0.009991155937314034, + -0.009554266929626465, + -0.016386928036808968, + 0.015985850244760513, + -0.0018254450988024473, + -0.0190369114279747, + 0.0068899584002792835, + -0.007137051317840815, + -0.010062777437269688, + 0.007541711442172527, + -0.007613332476466894, + -0.0015353792114183307, + 0.017131788656115532, + 0.001213083858601749, + -0.021500680595636368, + 0.03271656110882759, + -0.004243555478751659, + -0.00921048503369093, + -0.008838054724037647, + -0.004522878210991621, + 0.004179096315056086, + 0.03065386973321438, + 0.000503586488775909, + 0.0056831412948668, + 0.02356337197124958, + -0.007856844924390316, + 0.03354736417531967, + 0.013278568163514137, + -0.010370748117566109, + 0.008787919767200947, + -0.0023473845794796944, + -0.014080725610256195, + 0.026514165103435516, + -0.02021149918437004, + 0.0024333298206329346, + 0.0030456911772489548, + -0.006127192638814449, + 0.004186258651316166, + -0.007641980890184641, + -0.0074414415284991264, + -3.2201558497035876e-5, + 0.005421724170446396, + -0.027975236997008324, + -0.014897207729518414, + 0.005210441537201405, + 0.016114767640829086, + 0.006718067452311516, + 0.0022918779868632555, + -0.004888146184384823, + 0.010363586246967316, + 0.006123611703515053, + 0.006148679181933403, + -0.0019964405801147223, + -0.0056831412948668, + -0.018392320722341537, + 0.034750599414110184, + 0.009618725627660751, + -0.008078870363533497, + 0.02025447227060795, + -0.008594542741775513, + 0.0006445907056331635, + -0.0014789775013923645, + -0.013142487965524197, + -0.00502780731767416, + 0.01876475103199482, + -0.00572611391544342, + 0.0008881027461029589, + 0.030567923560738564, + -0.01651584543287754, + 0.009590077213943005, + 0.005976788233965635, + -0.011022500693798065, + 0.010256154462695122, + -0.00863751582801342, + -0.029737118631601334, + 0.0011396721238270402, + -0.03303169086575508, + 0.004010786768049002, + 0.017733406275510788, + 0.022274190559983253, + 0.030281439423561096, + -0.0018728941213339567, + -0.028806041926145554, + 0.006510366220027208, + 0.003384101204574108, + -0.0037565312813967466, + 0.005453953519463539, + -0.003600755240768194, + 0.023334182798862457, + 0.005346521735191345, + -0.01551315002143383, + -0.007036781869828701, + -0.014209643937647343, + -0.004838011227548122, + -0.022818511351943016, + 0.019781772047281265, + 0.0005071675404906273, + 0.01302789431065321, + -0.007813871838152409, + -0.003036738373339176, + 0.015140719711780548, + -0.004433351568877697, + -0.019495287910103798, + 0.021328790113329887, + 0.011545335873961449, + 0.0005608834326267242, + -0.0005859508528374135, + 0.004870241042226553, + 0.017847999930381775, + -0.004175515379756689, + -0.019609881564974785, + -0.00017771006969269365, + -0.007928465493023396, + 0.03131278231739998, + -0.002757415873929858, + -0.010127236135303974, + -0.0007940999348647892, + -0.0038854496087878942, + 0.011538174003362656, + 0.024508770555257797, + -0.01060709822922945, + 0.003609708044677973, + -0.0038782875053584576, + -0.017217734828591347, + 0.002136101946234703, + -5.9814883570652455e-5, + 0.029178472235798836, + -0.010936555452644825, + 0.0023670801892876625, + -0.01585693098604679, + 0.004143286030739546, + -0.029737118631601334, + 0.0015873046359047294, + 0.007992925122380257, + -0.019337721168994904, + 0.008293733932077885, + 0.02566903457045555, + 0.014582074247300625, + -0.015398555435240269, + 0.00046464247861877084, + 0.01769043318927288, + 0.010872096754610538, + -0.0014780822675675154, + -0.00808603223413229, + -0.010922231711447239, + 0.009604401886463165, + -0.004551526624709368, + -0.008143329061567783, + 0.01993933878839016, + -0.020985009148716927, + -0.013507756404578686, + -0.007419954985380173, + 0.022990401834249496, + -0.022503377869725227, + -0.010850610211491585, + 0.012934787198901176, + 0.00926061999052763, + 0.025038767606019974, + -0.0011907023144885898, + -0.02228851430118084, + -0.005031388718634844, + 0.008458462543785572, + 0.008071708492934704, + -0.004630309995263815, + -0.018363673239946365, + -0.00440470315515995, + 0.014911531470716, + 0.023104995489120483, + 0.03741490840911865, + -0.0066428654827177525, + 0.0010000108741223812, + 0.01042088307440281, + 0.0017985871527343988, + -0.002071643015369773, + 0.0024028909392654896, + 0.0032677168492227793, + 0.020096905529499054, + 0.014016266912221909, + 0.02532525174319744, + 0.006990227848291397, + -0.004315176513046026, + -0.0033035273663699627, + 0.03658410161733627, + 0.035610053688287735, + -0.0018639414338395, + 0.012089656665921211, + -0.011359120719134808, + -0.004795038606971502, + 0.009568590670824051, + -0.006617798004299402, + -0.021027980372309685, + -0.009604401886463165, + -0.015484500676393509, + 0.012111143209040165, + 0.020655550062656403, + 0.01064290851354599, + -0.030940353870391846, + 0.018807724118232727, + -0.000525968091096729, + 0.008451300673186779, + -0.002624916611239314, + 0.0030009278561919928, + -0.0037887608632445335, + 0.0008214054978452623, + -0.002549714408814907, + -0.0031620755326002836, + 0.019051237031817436, + -0.0037780178245157003, + 0.00619523273780942, + 0.02231716178357601, + -0.015040449798107147, + 0.016286658123135567, + -0.02204500138759613, + 0.014360048808157444, + -0.0005622263415716588, + -0.001756509649567306, + 0.02965117245912552, + 0.041826773434877396, + 0.0160001739859581, + -0.006821918301284313, + -0.018263403326272964, + -0.010757502168416977, + -0.021515004336833954, + 0.002127149375155568, + 0.01319978479295969, + -0.008379679173231125, + -0.0018782656406983733, + 0.0333181768655777, + -0.028132803738117218, + 0.01247641071677208, + 0.015527473762631416, + 0.0011656348360702395, + -0.03188575431704521, + 0.010965203866362572, + 0.007384144701063633, + -0.004064502660185099, + 0.009869399480521679, + -0.007656305097043514, + 0.014639371074736118, + 0.011051149107515812, + -0.02906387858092785, + -0.007291037123650312, + 0.008365354500710964, + -0.00346825597807765, + -0.00015879760030657053, + -0.011881954967975616, + -0.023520398885011673, + -0.0098479138687253, + 0.008594542741775513, + 0.010850610211491585, + 0.008329544216394424, + -0.006084220018237829, + -0.0015273218741640449, + -0.003491532988846302, + 0.016888275742530823, + 0.0016284867888316512, + 0.0250101201236248, + 0.029565226286649704, + 0.012898975983262062, + 0.0005434257909655571, + -0.007584684062749147, + -0.01433856226503849, + -0.007072592619806528, + 5.5786193115636706e-5, + 0.0005282062920741737, + 0.004017948638647795, + 0.0005698360619135201, + 0.009009945206344128, + -0.02664308249950409, + 0.020311769098043442, + 0.011394931003451347, + -0.0005286539089865983, + -0.008329544216394424, + -0.020197175443172455, + 0.005153144709765911, + 0.01966717839241028, + -0.031112244352698326, + -0.018506914377212524, + 0.014417345635592937, + -0.014811261557042599, + 0.028376314789056778, + -0.0005832650349475443, + 0.011846144683659077, + 0.0007265074527822435, + 0.02152932994067669, + -0.008888189680874348, + 0.006682257167994976, + 0.011423579417169094, + 0.017776379361748695, + -0.00040510736289434135, + 0.008945486508309841, + -0.00617732759565115, + -0.0035506205167621374, + 0.0022578579373657703, + 0.024609040468931198, + 0.008644677698612213, + -0.00485591683536768, + -0.010771826840937138, + 0.010012642480432987, + 0.008250760845839977, + -0.007899817079305649, + 0.013307216577231884, + 0.002256067469716072, + -0.014488966204226017, + 0.008207788690924644, + -0.008730622939765453, + 0.004952605348080397, + 0.020999332889914513, + 0.01415234711021185, + 0.010513990186154842, + 0.00373146403580904, + 0.012232898734509945, + -0.01181749626994133, + -0.01378707867115736, + -0.01366532314568758, + -0.005973207298666239, + 0.014395859092473984, + 0.01834934949874878, + 0.004515715874731541, + 0.008422652259469032, + -0.003910516854375601, + -0.029823062941432, + -0.0005103009752929211, + 0.004759227856993675, + 0.0006593625876121223, + -0.0019230289617553353, + 0.02598416805267334, + 0.01352924294769764, + -0.006291921250522137, + 0.02549714408814907, + -0.0055578043684363365, + -0.003942746669054031, + 0.0044369325041770935, + 0.019538260996341705, + -0.004977672826498747, + -0.010900745168328285, + -0.0028755906969308853, + 0.002533599501475692, + -0.010549801401793957, + 0.013844375498592854, + -0.006094963289797306, + -0.004995577968657017, + 0.0024028909392654896, + 0.01226870995014906, + 0.018363673239946365, + 0.012512221932411194, + -0.018650157377123833, + -0.017890973016619682, + 0.009060080163180828, + 0.0087592713534832, + 0.018191782757639885, + -0.0017627765191718936, + -0.009038593620061874, + 0.010363586246967316, + 0.004164772108197212, + -0.008078870363533497, + 0.011473714374005795, + 0.009360888972878456, + 0.013357351534068584, + 0.003276669420301914, + 0.0158999040722847, + -0.019581232219934464, + -0.005514831747859716, + -0.005937396548688412, + -0.004712674301117659, + -0.004497810732573271, + -0.01627233438193798, + -0.007849682122468948, + -0.00813616719096899, + 0.008179140277206898, + -0.019237451255321503, + 0.0016642974223941565, + 0.0031602850649505854, + -0.018091512843966484, + -0.002300830790773034, + 0.0029203540179878473, + 0.02077014558017254, + -0.001572085078805685, + -0.007692115847021341, + 0.009446835145354271, + -0.01644422486424446, + 0.0031047784723341465, + -0.016601791605353355, + -0.012848841026425362, + -0.01239046547561884, + 0.0009109320235438645, + 0.0006656293990090489, + -0.017976919189095497, + -0.00242795841768384, + -0.01779070310294628, + -0.01979609578847885, + -0.005790573079138994, + 0.009160350076854229, + 0.007212253753095865, + 0.014281265437602997, + -0.013156812638044357, + 0.0050170645117759705, + 0.012483573518693447, + -0.020741496235132217, + -0.004576594103127718, + -0.007047525141388178, + -0.010492504574358463, + 0.010793313384056091, + 0.021858787164092064, + 0.0004474086163099855, + 0.0264282189309597, + 0.013135326094925404, + 0.0023258980363607407, + 0.0010537267662584782, + 0.016186388209462166, + -0.01627233438193798, + -0.002669679932296276, + -0.004393959883600473, + 0.0003880973090417683, + 0.0006257901550270617, + -4.814846397493966e-5, + 0.006839823443442583, + -0.02297607809305191, + -0.005869356449693441, + 0.009690347127616405, + -0.01168141607195139, + -0.01827772706747055, + -0.0070940786972641945, + -0.0018335024360567331, + -0.01876475103199482, + -0.0031155217438936234, + -0.022718241438269615, + -0.010685881599783897, + -0.011344796046614647, + 0.0007569464505650103, + 0.00041898395284079015, + -0.007162118796259165, + -0.0029006581753492355, + -0.013085191138088703, + 0.009167511947453022, + 0.0002408262516837567, + 0.008923999965190887, + 0.02605578862130642, + 0.00425071781501174, + -0.012018035165965557, + 0.013471946120262146, + -0.008200625889003277, + 0.0019677921663969755, + -0.019609881564974785, + -0.007233740296214819, + 0.0047842953354120255, + 0.006216719280928373, + 0.006435163784772158, + -0.018907994031906128, + 0.0048201060853898525, + -0.015699364244937897, + -0.013693971559405327, + -0.023692289367318153, + -0.007291037123650312, + 0.005915910005569458, + 0.0048272679559886456, + 0.005446791648864746, + 0.012010873295366764, + 0.01415234711021185, + -0.02013987861573696, + -0.009597239084541798, + -0.0074414415284991264, + -0.01124452706426382, + -0.008544407784938812, + -0.006166584324091673, + 0.001982116373255849, + -0.01627233438193798, + 0.003967813681811094, + -0.011215878650546074, + 0.012898975983262062, + -0.045522429049015045, + 0.020483659580349922, + -0.0006530957180075347, + -0.021615274250507355, + -0.004741322714835405, + -1.02186095318757e-5, + 0.006478136405348778, + 0.006324151065200567, + 0.00010317927808500826, + -0.02708713337779045, + 0.0016732499934732914, + -0.0033357569482177496, + -0.013421811163425446, + -0.016988545656204224, + -0.007330428808927536, + 0.008959811180830002, + 0.010227506048977375, + -0.007083335425704718, + 0.008601704612374306, + 0.009611563757061958, + 0.0029507928993552923, + -0.005697465501725674, + -0.0023241075687110424, + -0.004913213662803173, + -0.009590077213943005, + 0.0031710281036794186, + -0.002990184584632516, + 0.022173920646309853, + 0.005421724170446396, + 0.009926697239279747, + 0.007835358381271362, + 0.0012336749350652099, + 0.004282947164028883, + 0.009196160361170769, + -0.0037780178245157003, + -0.01441018283367157, + -0.00993385910987854, + -0.0024673498701304197, + -0.00286305695772171, + 0.004003624431788921, + -0.003047481644898653, + 0.002483464777469635, + -0.004390378948301077, + -0.020497985184192657, + 0.018091512843966484, + 0.011538174003362656, + -0.017890973016619682, + 0.0011862259125337005, + 0.010743178427219391, + -0.0021754936315119267, + -0.003412749618291855, + 0.007584684062749147, + -0.005224765744060278, + -0.01727503165602684, + -0.01042088307440281, + -0.005536317825317383, + -0.0028988677076995373, + -0.019466638565063477, + -0.0001665192685322836, + 0.014216805808246136, + 0.0008048430900089443, + 0.008873865008354187, + -0.026657406240701675, + -0.003910516854375601, + 0.018163133412599564, + 0.024093367159366608, + -8.288194294436835e-6, + -0.001800377620384097, + -0.003892611712217331, + -0.010370748117566109, + 0.017332328483462334, + 0.0014395859325304627, + -0.01383721362799406, + 0.01993933878839016, + -0.008608867414295673, + 0.02021149918437004, + 0.005722532980144024, + 0.007735088467597961, + -0.012898975983262062, + 0.02187311090528965, + 0.0361543744802475, + 0.00996966939419508, + 0.013830051757395267, + -0.004956186283379793, + 0.01925177499651909, + 0.009153188206255436, + -0.0173180028796196, + 0.0031155217438936234, + -0.004601661581546068, + -0.011430742219090462, + 0.021744193509221077, + 0.009446835145354271, + -0.0010671557392925024, + -0.012118305079638958, + -0.009375213645398617, + -0.018048539757728577, + -0.028763068839907646, + -0.011831820011138916, + 0.012712760828435421, + -0.01371545810252428, + 0.05076509714126587, + -0.007330428808927536, + 0.0032229535281658173, + -0.023205265402793884, + 0.021515004336833954, + -0.004712674301117659, + -0.021371763199567795, + 0.029307391494512558, + -0.018922317773103714, + 0.02647119201719761, + 0.005103009752929211, + 0.01558477059006691, + -0.004218488000333309, + -0.022890131920576096, + -0.009325078688561916, + 0.037815988063812256, + 0.004798619542270899, + 0.022761214524507523, + -0.005368008278310299, + 0.005231928080320358, + -0.0014369001146405935, + -0.0026929567102342844, + -0.0069365119561553, + -0.0012399418046697974, + -0.00754887331277132, + -0.01311383955180645, + 0.006291921250522137, + -0.017504218965768814, + 0.019566908478736877, + 0.013608026318252087, + 0.019466638565063477, + -0.00251390365883708, + -0.018750427290797234, + -0.005303549114614725, + -0.006105706561356783, + 0.0038997738156467676, + -0.005092266481369734, + 0.00850143563002348, + 0.007405630778521299, + -0.02128581702709198, + -0.008007248863577843, + -0.015255313366651535, + -0.0010394025593996048, + 0.003586431033909321, + 0.014281265437602997, + -0.027101457118988037, + -0.0048809838481247425, + 0.0003180428466293961, + -0.003960651811212301, + -0.0020752239506691694, + -0.0071477945894002914, + 0.0017198037821799517, + -0.009654535911977291, + 0.0009821056155487895, + 0.012068170122802258, + 0.008952648378908634, + 0.008573056198656559, + -0.006929350085556507, + 0.013643836602568626, + -0.01186763122677803, + -0.00040152628207579255, + 0.00929643027484417, + -0.026413895189762115, + 0.010320613160729408, + 0.0001621548435650766, + 0.0004292794910725206, + 0.005511250346899033, + -0.015269637107849121, + 0.008064545691013336, + -0.002080595586448908, + -0.021987704560160637, + -0.019882041960954666, + 0.00812184251844883, + 0.00741279311478138, + 0.01365099847316742, + -0.012025197967886925, + 0.015398555435240269, + -0.010628584772348404, + -0.00991953443735838, + -0.02324823848903179, + -0.011924928054213524, + 0.017876649275422096, + 0.004558688495308161, + 0.013858700171113014, + -0.01438869722187519, + 0.000552378420252353, + -0.016816655173897743, + -0.007072592619806528, + 0.007821033708751202, + -0.0005608834326267242, + 0.007448603864759207, + -0.005532736890017986, + 0.014195319265127182, + -0.004830849356949329, + 0.01333586499094963, + 0.012118305079638958, + 0.008444137871265411, + 0.011545335873961449, + -0.002037622733041644, + -0.011165743693709373, + 0.00013999704970046878, + 0.004239974543452263, + 0.0011423579417169094, + -0.0024888364132493734, + 0.02967981994152069, + -0.013321541249752045, + -0.002991975285112858, + 0.032286833971738815, + 0.0033214327413588762, + -0.0034557224716991186, + 0.030539274215698242, + 0.007641980890184641, + 0.012068170122802258, + 0.01966717839241028, + -0.007570359855890274, + -0.002342012943699956, + -0.01499747671186924, + 0.01766178570687771, + 0.010528314858675003, + -0.010578449815511703, + -0.00796427670866251, + -0.0031692376360297203, + -0.01482558622956276, + -0.004787876270711422, + -0.021787166595458984, + -0.0018603603821247816, + -0.013729781843721867, + -0.02422228641808033, + 0.0016616116045042872, + -0.0052641574293375015, + 0.007684953510761261, + -0.004956186283379793, + 0.01766178570687771, + -0.0042865280993282795, + 0.0002909610921051353, + 0.007233740296214819, + -0.011008176952600479, + 0.011380607262253761, + -0.02791794016957283, + -0.006510366220027208, + -0.035953838378190994, + -0.03085440769791603, + -0.005697465501725674, + 0.0068899584002792835, + 0.0175185427069664, + -0.012111143209040165, + -0.004304433707147837, + -0.0017475569620728493, + 0.005579290445894003, + -0.0024118435103446245, + -0.01105831190943718, + 0.011616956442594528, + 0.0024011004716157913, + 0.0006338475504890084, + -0.036813292652368546, + -0.0027699493803083897, + -0.011860469356179237, + -0.004164772108197212, + -0.023506075143814087, + -0.008916838094592094, + -0.0055649662390351295, + 0.028619827702641487, + -8.435074050794356e-6, + -0.03131278231739998, + -0.010886420495808125, + -0.019509611651301384, + 0.01186763122677803, + 0.016802331432700157, + 0.016429901123046875, + -0.02432255633175373, + 0.0036705860402435064, + -0.011881954967975616, + -0.004931118804961443, + 0.026027139276266098, + -0.022474728524684906, + 0.010241829790174961, + 0.0037708557210862637, + -0.011638442985713482, + -0.022990401834249496, + -0.007892655208706856, + 0.0019928596448153257, + 0.00796427670866251, + -0.008701974526047707, + 0.0027502537705004215, + -0.010012642480432987, + -0.005285643972456455, + -0.011416417546570301, + 0.014653695747256279, + -0.01744692213833332, + 0.002266810741275549, + -0.0005720742628909647, + 0.0013742315350100398, + 0.005482601933181286, + -0.006191651802510023, + 0.023334182798862457, + 0.03314628824591637, + 0.014882883056998253, + 0.019266100600361824, + 0.011294661089777946, + -0.020612578839063644, + -0.0016329630743712187, + -0.010585611686110497, + 0.0009704671101644635, + 0.00817197747528553, + -0.006721648387610912, + 0.008923999965190887, + 0.00435456819832325, + -0.009991155937314034, + -0.002959745703265071, + 0.014897207729518414, + 0.006818337365984917, + 0.006947255227714777, + 0.00044248465565033257, + -0.009074404835700989, + 0.011459390632808208, + -0.012727085500955582, + -0.02701551280915737, + 0.0036884911824017763, + 0.010227506048977375, + -0.011172905564308167, + -0.002728767227381468, + 0.00817197747528553, + 0.017332328483462334, + -0.02419363707304001, + 0.011301823891699314, + -0.002438701456412673, + -0.0001137545914389193, + -0.01907988451421261, + -0.01441018283367157, + -0.006581987254321575, + 0.008157653734087944, + 0.006488879676908255, + 0.004859497770667076, + -0.023205265402793884, + -0.03649815917015076, + -0.0011369864223524928, + -0.005256995093077421, + -0.004752065986394882, + 0.016802331432700157, + 0.018750427290797234, + 0.03589653968811035, + 0.008787919767200947, + 0.006700162310153246, + -0.024623364210128784, + -0.00279501685872674, + -0.009160350076854229, + -0.0010850609978660941, + 0.014445994049310684, + -0.0006624960224144161, + 0.004662539344280958, + -0.025754978880286217, + -0.001635648892261088, + -0.012891814112663269, + -0.006950836628675461, + -0.00754887331277132, + -0.013672485016286373, + -0.009418186731636524, + -0.0011969690676778555, + 0.01695989817380905, + 0.008028735406696796, + -0.0036150794476270676, + 0.002710862085223198, + -0.0160001739859581, + -0.008007248863577843, + 0.017418272793293, + -0.005056455731391907, + -0.020784469321370125, + 0.005070780403912067, + -0.00867332611232996, + 0.0008061859989538789, + -0.006016179919242859, + -0.02135743945837021, + -0.038961928337812424, + -0.0013840794563293457, + 0.013013569638133049, + 0.003317851573228836, + 0.010771826840937138, + -0.007187186274677515, + 0.003523762570694089, + 0.0005886366707272828, + 0.024995794519782066, + 0.00019169859297107905, + 0.01297775935381651, + 0.018979614600539207, + 0.0016061051283031702, + -0.0277460478246212, + -0.014281265437602997, + -0.013257082551717758, + 0.013543566688895226, + 0.01695989817380905, + -0.004207744728773832, + -0.006213138345628977, + 0.00020624663738999516, + 0.014173833653330803, + 0.009869399480521679, + 0.008959811180830002, + -0.00808603223413229, + 0.017919622361660004, + 0.022918781265616417, + -0.011351958848536015, + 0.020856089890003204, + 0.008164815604686737, + -0.01425261702388525, + 0.0018370834877714515, + -0.011516687460243702, + -0.003906935919076204, + 0.0003393053775653243, + 0.016916925087571144, + 0.009962507523596287, + 0.01173155102878809, + 0.0009445044561289251, + -0.014646532945334911, + -0.015269637107849121, + 0.00862319115549326, + 0.012311682105064392, + 0.0023348508402705193, + -0.01759016327559948, + 0.010750340297818184, + 0.011695739813148975, + 0.01321410946547985, + -0.010356424376368523, + -0.0022363716270774603, + -0.016229361295700073, + 0.007649143226444721, + -0.01886502094566822, + -0.005493345204740763, + 0.01766178570687771, + 0.008530084043741226, + -0.01541288010776043, + -0.02639956958591938, + -0.004497810732573271, + -0.026141734793782234, + 0.005303549114614725, + 0.006549757905304432, + -0.010886420495808125, + -0.007323266472667456, + -0.00010860682232305408, + -0.008014410734176636, + 0.0037780178245157003, + 0.01010574959218502, + 0.004415446426719427, + 0.017360975965857506, + -0.0034539317712187767, + -0.006191651802510023, + -0.0264282189309597, + -0.00375295034609735, + 0.011960738338530064, + -0.0014369001146405935, + -0.0123546551913023, + -0.007813871838152409, + -0.0048272679559886456, + 0.006521109491586685, + 0.01180317159742117, + 0.004530040081590414, + -0.006846985779702663, + 0.01658746786415577, + -0.01790529675781727, + 0.02715875580906868, + -0.004504972603172064, + 0.008071708492934704, + -0.0008822835516184568, + -0.008093194104731083, + 0.007699277717620134, + 0.01086493395268917, + -0.014567749574780464, + 0.004350987263023853, + -0.014574912376701832, + 0.010227506048977375, + 0.005117333959788084, + -0.000157342801685445, + 0.005661655217409134, + 0.0009001888101920485, + -0.001441376400180161, + -0.007864006794989109, + -0.0008751213899813592, + -0.014811261557042599, + 0.0003827257314696908, + -0.0450640507042408, + 0.037615448236465454, + -0.025482818484306335, + 0.016573144122958183, + 0.025726331397891045, + 0.004888146184384823, + 0.009597239084541798, + 0.023477425798773766, + 0.003906935919076204, + 0.016644764691591263, + -0.01883637346327305, + -0.004304433707147837, + 0.01239046547561884, + -0.024351203814148903, + 0.0016428109956905246, + -0.00561510119587183, + -0.0019337721168994904, + 0.01442450750619173, + -0.007985762320458889, + 0.005482601933181286, + 0.005704627837985754, + -0.011488039046525955, + 0.0026804229710251093, + -0.014589236117899418, + -0.029250092804431915, + 0.00034355788375250995, + 0.0020555281080305576, + -0.024093367159366608, + -0.01375126838684082, + 0.015470176935195923, + 0.013980455696582794, + -0.008838054724037647, + 0.001983906840905547, + -0.0003408720949664712, + -0.0003294574562460184, + -0.0051137530244886875, + -0.01993933878839016, + 0.001960630062967539, + -0.018721777945756912, + -0.0054073999635875225, + -0.01437437254935503, + -0.0034270738251507282, + 0.009826427325606346, + -0.00368491024710238, + -0.04088137298822403, + -0.0057977354153990746, + 0.024508770555257797, + -0.014123698696494102, + -0.021070953458547592, + 0.0009382375865243375, + 0.007885493338108063, + -0.029880359768867493, + -0.003964232746511698, + 0.016429901123046875, + -0.007842520251870155, + -0.0062023950740695, + 0.003960651811212301, + -0.02380688302218914, + -0.0019104952225461602, + -0.008336706086993217, + -0.02280418574810028, + -0.012462086975574493, + -0.006478136405348778, + 0.006492460612207651, + 0.022159595042467117, + 0.0176188126206398, + 0.013844375498592854, + -0.020884739235043526, + 0.014195319265127182, + 0.007563197519630194, + -0.017017195001244545, + -0.01852123998105526, + -0.0022936686873435974, + -0.0051746307872235775, + 0.00805022194981575, + 0.010907907038927078, + 0.003982138354331255, + 0.02204500138759613, + -0.023778235539793968, + 0.01311383955180645, + 0.00012589662219397724, + 0.010334937833249569, + -0.016429901123046875, + 0.021472033113241196, + -0.010513990186154842, + 0.02999495342373848, + -0.018650157377123833, + -0.0033787295687943697, + -0.030969001352787018, + -0.009267781861126423, + -0.004913213662803173, + -0.018062863498926163, + 0.011753037571907043, + -0.011001015082001686, + 0.011502362787723541, + -0.004010786768049002, + 0.007520224899053574, + -0.006503203883767128, + 0.009002783335745335, + -0.007276712916791439, + -0.013428973034024239, + -0.010270478203892708, + -0.007427117321640253, + 0.009661698713898659, + -0.019681502133607864, + 0.0005644644843414426, + 0.017805026844143867, + 0.014496129006147385, + -0.014231130480766296, + -0.00442260829731822, + -0.005425305105745792, + -0.01086493395268917, + 0.013586539775133133, + 0.01532693486660719, + -0.029321715235710144, + -0.0028218748047947884, + 0.020512308925390244, + -0.019065560773015022, + 0.008730622939765453, + -0.013608026318252087, + -0.00045457074884325266, + 0.0013939273776486516, + 0.006646446418017149, + 0.006231043487787247, + -0.0035309246741235256, + -0.002893496071919799, + 0.008436976000666618, + -0.01849259063601494, + 0.019051237031817436, + 0.007971438579261303, + 0.04844457283616066, + 0.005267738364636898, + -0.00034713896457105875, + -0.01793394610285759, + -0.02405039593577385, + -0.008107518777251244, + 0.005128077231347561, + 0.0059051671996712685, + -0.016114767640829086, + -0.0066500273533165455, + -0.007735088467597961, + -0.013264244422316551, + 0.0004932909505441785, + -0.0014816633192822337, + -0.0023079928942024708, + 0.019609881564974785, + -0.008573056198656559, + 0.0016598210204392672, + -0.0113161476328969, + 0.02453741990029812, + 0.0034002158790826797, + -0.018922317773103714, + -0.00012690378935076296, + -0.018678806722164154, + 0.03403439000248909, + 0.011745874769985676, + -0.0007524701068177819, + -0.04557972401380539, + -0.0070869168266654015, + -0.006610635668039322, + -0.0030994070693850517, + 0.014682344160974026, + -0.012447762303054333, + 0.005457534454762936, + 0.001994650112465024, + 0.0210136566311121, + -0.013944645412266254, + 0.0034396075643599033, + -0.001928400481119752, + 0.015627743676304817, + -0.039133816957473755, + 0.0028881244361400604, + 0.00498483469709754, + -0.0026857946068048477, + -0.015269637107849121, + -0.003233696799725294, + 0.011502362787723541, + 0.006778945680707693, + -0.023176616057753563, + -0.009009945206344128, + -0.0007493366720154881, + 0.008945486508309841, + -0.005092266481369734, + 0.004275784827768803, + 0.02791794016957283, + -0.00020143459551036358, + 0.00948264542967081, + -0.020999332889914513, + -0.02152932994067669, + 0.0001499568606959656, + 0.007935627363622189, + -0.0063563804142177105, + 0.010714530013501644, + 0.01793394610285759, + 0.010234667919576168, + -0.013550728559494019, + 0.015269637107849121, + -0.007613332476466894, + -0.0019964405801147223, + -0.01834934949874878, + -0.0016347536584362388, + 0.0028415706474334, + -0.00111639522947371, + -0.005031388718634844, + -0.007036781869828701, + -0.01257668063044548, + 0.008780757896602154, + -0.022646620869636536, + -0.02546849474310875, + -0.008881027810275555, + 0.0030188332311809063, + -0.004154028836637735, + -0.0026499840896576643, + 0.00012589662219397724, + -0.004705511964857578, + -0.005711789708584547, + 0.014209643937647343, + -0.004684025887399912, + -0.005124496296048164, + 0.011889117769896984, + -0.024365529417991638, + -0.00813616719096899, + -0.004594499245285988, + 0.016802331432700157, + -0.0002000917011173442, + 0.0013948226114735007, + -0.002904239110648632, + 0.017432598397135735, + 0.008494272828102112, + 0.01602882146835327, + 0.0023241075687110424, + 0.014682344160974026, + -0.019051237031817436, + -0.012877489440143108, + 0.005532736890017986, + -0.018979614600539207, + -0.013099515810608864, + -0.027531184256076813, + -0.014696667902171612, + -0.002644612453877926, + -0.017117464914917946, + 0.011015338823199272, + -0.029622523114085197, + 0.01428842730820179, + 0.008451300673186779, + 0.0013849746901541948, + 0.0320003479719162, + 0.020669875666499138, + 0.02539687417447567, + 0.009912372566759586, + -0.012018035165965557, + 0.027416590601205826, + 0.0300236027687788, + -0.009718995541334152, + 0.012648302130401134, + 0.010213181376457214, + 0.01575666107237339, + 0.01907988451421261, + -0.015283961780369282, + 0.005919491406530142, + 0.010528314858675003, + -0.008694812655448914, + 0.020225822925567627, + 0.0067395539954304695, + -0.020913386717438698, + -0.0017618812853470445, + 0.012548032216727734, + -0.0048988894559443, + -0.008358192630112171, + -0.003317851573228836, + -0.006087800953537226, + 0.049361322075128555, + 0.012906137853860855, + 0.004805781878530979, + 0.015269637107849121, + -0.017719082534313202, + -0.0018182829953730106, + -0.0023867760319262743, + -0.005128077231347561, + 0.017604488879442215, + -0.014302751049399376, + -0.019638530910015106, + -0.00813616719096899, + -0.0021414735820144415, + -0.009905210696160793, + 0.00917467474937439, + 0.021242843940854073, + 0.010284802876412868, + -0.005880099721252918, + -0.0017314422875642776, + -0.019294748082756996, + -0.0042256503365933895, + 0.0010931184515357018, + 0.030711166560649872, + 0.005919491406530142, + 0.009654535911977291, + 0.002080595586448908, + 0.003131636418402195, + 0.00991953443735838, + 0.01578531041741371, + -0.02072717249393463, + -0.021343113854527473, + -0.010929393582046032, + -0.009231971576809883, + 0.003910516854375601, + 0.017532866448163986, + 0.005625844467431307, + 0.020154202356934547, + -0.013550728559494019, + -0.006037666462361813, + -0.005880099721252918, + 0.03626897186040878, + 0.012032359838485718, + 0.020483659580349922, + 0.012834517285227776, + 0.00921048503369093, + -0.00311910267919302, + -0.006524690426886082, + -0.0051746307872235775, + 0.015942877158522606, + 0.01499747671186924, + 0.010829123668372631, + -0.01607179455459118, + -0.01532693486660719, + -0.013385999947786331, + 0.0031208933796733618, + 0.013013569638133049, + 0.0017421854427084327, + -0.019652854651212692, + -0.006041247397661209, + 0.0037565312813967466, + 0.018091512843966484, + -0.0003813828225247562, + -0.007051106076687574 + ], + "c9440268-ea98-463c-80ca-52fbb14b37a3": [ + -0.031640298664569855, + -0.029006019234657288, + -0.004968221299350262, + 0.014474061317741871, + -0.006451812572777271, + -0.00965419877320528, + -0.004461629316210747, + 0.01608068123459816, + -0.01534250471740961, + 0.08192318677902222, + -0.015356979332864285, + -0.004740254953503609, + 0.01199175976216793, + -0.02745729498565197, + 0.01807810179889202, + 0.002172918524593115, + -0.007707437500357628, + 0.03664832189679146, + 0.04240899905562401, + -0.006053776014596224, + 0.030019203200936317, + -0.01817942038178444, + -0.046635426580905914, + 0.005822191014885902, + 0.022883491590619087, + 0.002520296024158597, + -0.02437431924045086, + 0.0005653930129483342, + -0.025011178106069565, + -0.014568142592906952, + -0.03155345469713211, + 0.024432215839624405, + -0.009502220898866653, + 0.022767698392271996, + 0.023129550740122795, + -0.015414875000715256, + -0.0037451633252203465, + 0.005630409810692072, + -0.03496933355927467, + -0.006867941934615374, + -0.012208870612084866, + 0.023375608026981354, + -0.026791486889123917, + -0.02502565272152424, + -0.041453711688518524, + 0.011275293305516243, + -0.031785037368535995, + -0.003566046943888068, + 0.01868601329624653, + -0.02347692660987377, + 0.05633304640650749, + -0.0005359925562515855, + 0.00745414150878787, + 0.04539065435528755, + 0.0309744905680418, + -0.025619087740778923, + 0.014256950467824936, + 0.028658641502261162, + 0.0009290538146160543, + -0.028745485469698906, + -0.004624462686479092, + -0.03054026886820793, + -0.010652909055352211, + 0.015110920183360577, + -0.005706398747861385, + 0.009965390898287296, + -0.015443823300302029, + -0.020350530743598938, + -0.0504855252802372, + 0.0013967469567433, + -0.012035181745886803, + 0.015689881518483162, + -0.0482565201818943, + -0.00521428044885397, + 0.028007308021187782, + -0.041308969259262085, + 0.04715649038553238, + 0.022869016975164413, + -0.006415627431124449, + -0.02405588887631893, + -0.0017694539856165648, + -0.029107337817549706, + -0.021797936409711838, + -0.023925622925162315, + 0.06507538259029388, + 0.013193107210099697, + -0.009907495230436325, + -0.03809572756290436, + 0.004193859174847603, + -0.011202923022210598, + -0.022724276408553123, + -0.01141279749572277, + 0.0001940428774105385, + -0.015878045931458473, + -0.03375351056456566, + -0.011890441179275513, + 0.00999433919787407, + 0.002496775472536683, + -0.037690456956624985, + -0.028383634984493256, + -0.013844439759850502, + -0.04704069718718529, + -0.011260819621384144, + 0.003238571109250188, + -0.015733305364847183, + 0.026632273569703102, + 0.010783175937831402, + 0.0073311119340360165, + 0.0009978056186810136, + 0.07891257852315903, + -0.029136285185813904, + -0.015603037551045418, + 0.0324508436024189, + -0.01760045811533928, + -0.061891086399555206, + -0.040585268288850784, + 0.017122814431786537, + 0.0019431427353993058, + -0.01083383522927761, + -0.007106764242053032, + 0.0490381196141243, + -0.015878045931458473, + 0.02119002491235733, + 0.03644568473100662, + 0.018743909895420074, + 0.005724491085857153, + -0.001485400483943522, + 0.016471480950713158, + 0.026313843205571175, + 0.03499827906489372, + -0.0007865747902542353, + 0.004624462686479092, + 0.02499670349061489, + -0.004913943819701672, + -0.00907523650676012, + 0.0037415449041873217, + 0.019568931311368942, + 0.08400744944810867, + -0.014662223868072033, + 0.002207294339314103, + -0.021986098960042, + 0.010587776079773903, + -0.002552862511947751, + 0.020480796694755554, + -0.021247921511530876, + 0.0010186120634898543, + -0.00818508118391037, + 0.03905101865530014, + -0.031061334535479546, + 0.020987389609217644, + -0.021754514425992966, + 0.0173109769821167, + -0.029787618666887283, + 0.027153339236974716, + 0.01665964536368847, + 0.008887073956429958, + -0.003206004621461034, + 0.01716623641550541, + -0.008706147782504559, + 0.03832731395959854, + -0.010587776079773903, + -0.038993120193481445, + 0.005474813748151064, + 0.016818858683109283, + -0.003940563183277845, + 0.00864101480692625, + -0.004465247970074415, + 0.021493980661034584, + -0.009191028773784637, + 0.021971624344587326, + -0.01897549442946911, + -0.06015419960021973, + -0.00659293495118618, + 0.006589316297322512, + 0.013815491460263729, + -0.009733806364238262, + 0.01200623344630003, + -0.0069909715093672276, + 0.004758347757160664, + 0.0054711950942873955, + -0.043595872819423676, + 0.03852995112538338, + -0.004505051765590906, + -0.006383060943335295, + 0.031640298664569855, + -0.017267554998397827, + -0.011789122596383095, + -0.032798223197460175, + -0.030771853402256966, + -0.015733305364847183, + -0.004638936836272478, + -0.01648595556616783, + 0.011434508487582207, + 0.02137818932533264, + -0.03433247283101082, + -0.009885784238576889, + 0.05407509207725525, + -0.028137575834989548, + -0.003357982262969017, + -0.018063629046082497, + -0.012852966785430908, + -0.019279450178146362, + -0.012230581603944302, + 0.026067784056067467, + -0.044174835085868835, + 0.032045572996139526, + 0.013106262311339378, + -0.0252427626401186, + 0.06183318793773651, + -0.007866652682423592, + 0.0619489811360836, + -0.06096474453806877, + -0.004070829600095749, + 0.002290520118549466, + -0.020915018394589424, + 0.00804034061729908, + -0.002686747582629323, + 0.00912589579820633, + -0.0071755158714950085, + 0.00037451632670126855, + 0.015443823300302029, + -0.012874677777290344, + -0.062180567532777786, + -0.001652756822295487, + -0.04611435905098915, + 0.032045572996139526, + -0.021030811592936516, + -0.01590699329972267, + 0.0024207867681980133, + -0.0005938888061791658, + -0.008807466365396976, + -0.0030250789131969213, + 0.03169819340109825, + 0.006028446368873119, + 0.0022199591621756554, + 0.050398681312799454, + 0.0248519629240036, + 0.005283032543957233, + 0.01716623641550541, + -0.025517769157886505, + -0.00021654552256222814, + 0.03789309412240982, + -0.016963599249720573, + -0.04695385321974754, + -0.02321639470756054, + 0.017846517264842987, + 0.003951418679207563, + 0.02981656603515148, + -0.003839244833216071, + -0.021783461794257164, + -0.05175924301147461, + -0.008387718349695206, + -0.027037546038627625, + 0.0056159356608986855, + -0.051267124712467194, + 0.05806993320584297, + 0.04125107452273369, + -0.011658856645226479, + -0.008713385090231895, + 0.008901547640562057, + 0.02085712179541588, + 0.02593751810491085, + 0.012339137494564056, + 0.021030811592936516, + 0.010059472173452377, + 0.02085712179541588, + -0.006180424243211746, + 0.012903625145554543, + 0.01492275670170784, + 0.0068968902342021465, + 0.029367869719862938, + -0.020408425480127335, + -0.02970077283680439, + 0.02543092519044876, + -0.03748781979084015, + -0.003050408326089382, + -0.03430352360010147, + 0.004950128961354494, + 0.022217683494091034, + 0.01998867839574814, + -0.032074518501758575, + -0.0424668975174427, + 0.03219031170010567, + 0.03514302149415016, + 0.029165232554078102, + 0.017195185646414757, + -0.022738751024007797, + -0.00564126530662179, + -0.02941129170358181, + -0.0020987389143556356, + -0.012903625145554543, + -0.05236715450882912, + 0.043451130390167236, + 0.02126239612698555, + 0.02962840348482132, + 0.0067919534631073475, + -0.011644382029771805, + 0.015226712450385094, + -0.011514116078615189, + 0.013540484011173248, + -0.040295787155628204, + 0.044319573789834976, + 0.028991544619202614, + -0.021074233576655388, + -0.0032150507904589176, + -0.013786543160676956, + 0.05103553831577301, + 0.05546460300683975, + -0.012491114437580109, + 0.04423272982239723, + 0.01233190018683672, + -0.02557566575706005, + -0.02625594660639763, + -0.007591645233333111, + 0.009422614239156246, + 0.028079679235816002, + -0.03085869923233986, + -0.015892518684267998, + -0.023028232157230377, + -0.008872599340975285, + -0.023882200941443443, + 0.005239610094577074, + -0.03039552830159664, + 0.006209372077137232, + 0.010500931181013584, + -0.05636199563741684, + 0.015631986781954765, + -0.008452851325273514, + 0.018338635563850403, + -0.04096159338951111, + -0.040295787155628204, + -0.01448853500187397, + -0.014835912734270096, + -0.026241473853588104, + -0.02422957867383957, + -0.017180711030960083, + -0.04281427338719368, + -0.010529879480600357, + -0.010175265371799469, + 0.0049537476152181625, + -0.02967182546854019, + -0.04770650714635849, + 0.015313556417822838, + -0.0008372339652851224, + -0.03922470659017563, + -0.04084580019116402, + 0.015414875000715256, + 0.008293637074530125, + 0.015704356133937836, + 0.016138577833771706, + 0.0008634682162664831, + -0.026125680655241013, + 0.03670622035861015, + -0.015168815851211548, + 0.02437431924045086, + -0.016645170748233795, + 0.003012414090335369, + 0.03404299169778824, + 0.02032158151268959, + 0.0008489941828884184, + 0.0331745482981205, + -0.052396100014448166, + 0.005055065732449293, + -0.03346402943134308, + -0.006929456721991301, + -0.014271424151957035, + -0.0031806749757379293, + -0.031495556235313416, + -0.004222807474434376, + 0.023028232157230377, + -0.0034176877234131098, + -0.04148266091942787, + -0.02061106264591217, + -0.009451561607420444, + 0.04110633209347725, + -0.053264547139406204, + -0.004458010662347078, + -0.008619303815066814, + -0.015472771599888802, + 0.04075895622372627, + -0.021971624344587326, + 0.014061550609767437, + 0.037256233394145966, + -0.0005269462708383799, + 0.008771280758082867, + 0.0035461450461298227, + 0.021884780377149582, + -0.03910891339182854, + -0.024475637823343277, + 0.004002077970653772, + -0.010320005938410759, + -0.006379442289471626, + -0.008156133815646172, + 0.01904786378145218, + 0.00822126679122448, + 0.01778862066566944, + 0.0396299809217453, + 0.020784752443432808, + -0.00932853203266859, + -0.024938806891441345, + -0.015603037551045418, + -0.0020589351188391447, + -0.015501719899475574, + -0.018483376130461693, + -0.0007562697282992303, + -0.034679852426052094, + -0.008083763532340527, + 0.007110382430255413, + 0.030627112835645676, + -0.008250215090811253, + 0.038587845861911774, + 0.0031987675465643406, + -0.00168622808996588, + 0.002484110649675131, + 0.014423402026295662, + 0.03621410205960274, + 0.02959945611655712, + 0.03360877186059952, + -0.01846890151500702, + 0.03054026886820793, + 0.025995414704084396, + 0.033666666597127914, + -0.018020207062363625, + 0.05005130544304848, + -0.0031770565547049046, + -0.006621882785111666, + 0.014821439050137997, + -0.03404299169778824, + -0.0005830332520417869, + -0.00020116684027016163, + -0.005395206157118082, + 0.02651648037135601, + 0.0018309687729924917, + -0.008727858774363995, + -0.029787618666887283, + -0.0367351658642292, + 0.00411063339561224, + 0.007088671438395977, + -0.005518235731869936, + -0.02405588887631893, + -0.010001576505601406, + -0.010891730897128582, + 0.0053155990317463875, + 0.0016102392692118883, + 0.014850386418402195, + -0.024620378389954567, + 0.01781756989657879, + 0.011926626786589622, + 0.027544138953089714, + -0.012874677777290344, + -0.021783461794257164, + 0.014792490750551224, + -0.019149182364344597, + -0.02567698433995247, + -0.0035551912151277065, + -0.040701061487197876, + 0.010211450047791004, + -0.04104843735694885, + 0.016109630465507507, + -0.04495643451809883, + 0.012599670328199863, + 0.046201203018426895, + 0.036966752260923386, + 0.0005975073436275125, + 0.020480796694755554, + -0.044174835085868835, + 0.016210949048399925, + -0.002350225578993559, + 0.010312768630683422, + 0.00740710087120533, + 0.0009779037209227681, + 0.011962811462581158, + -0.05610146000981331, + -0.005438628606498241, + 0.02191372960805893, + 0.01916365697979927, + -0.014691172167658806, + -0.01988735981285572, + 0.020929493010044098, + 0.012556248344480991, + -0.017557036131620407, + 0.001916003879159689, + 0.0396299809217453, + 0.01289638876914978, + -0.03161134943366051, + 0.02147950604557991, + 0.013663513585925102, + -0.04333534091711044, + -0.04067211225628853, + 0.003160773077979684, + 0.017701776698231697, + 0.016760962083935738, + -0.020886071026325226, + 0.06142791733145714, + 0.028846804052591324, + 0.0016717540565878153, + 0.010073946788907051, + -0.037545714527368546, + 0.03386930376291275, + -0.017180711030960083, + 0.033232443034648895, + -0.05395929887890816, + 0.01597936451435089, + -0.03835626319050789, + -0.008879836648702621, + 0.023303238674998283, + 0.01916365697979927, + 0.006904127076268196, + 0.012339137494564056, + -0.006914982572197914, + -0.01648595556616783, + 0.03340613469481468, + -0.038008883595466614, + 0.008583118207752705, + 0.018599169328808784, + 0.01615305244922638, + -0.021682143211364746, + 0.005807716865092516, + 0.020842649042606354, + 0.01764388009905815, + -0.004269848112016916, + -0.002306803595274687, + -0.00774362264201045, + 0.010370665229856968, + -0.0017242225585505366, + 0.03705359622836113, + -0.01926497556269169, + -0.010153554379940033, + -0.033782459795475006, + -0.010110131464898586, + 0.019771568477153778, + -0.005662976298481226, + 0.0027464530430734158, + 0.016471480950713158, + 0.03355087339878082, + -0.003481011837720871, + -0.04142476245760918, + 0.040874749422073364, + -0.0009159366600215435, + 0.005536328535526991, + -0.0015903374878689647, + 0.010276583023369312, + -0.0025239144451916218, + -0.0014718311140313745, + -0.025040125474333763, + 0.008481799624860287, + 0.018599169328808784, + -0.005985024385154247, + -0.003933326341211796, + 0.022507164627313614, + -0.010616724379360676, + 0.04264058545231819, + -0.015096445567905903, + 0.019713671877980232, + 0.0005047828890383244, + -0.03369561582803726, + 0.009639725089073181, + 0.046201203018426895, + 0.013996417634189129, + -0.050253938883543015, + -0.027804670855402946, + 0.000541872694157064, + -0.0013343275059014559, + 0.013497062027454376, + -0.023636141791939735, + 0.0006323355482891202, + -0.06258583813905716, + -0.0071357120759785175, + 0.039861563593149185, + 0.023172972723841667, + -0.012208870612084866, + -0.008286399766802788, + 0.028311263769865036, + -0.0055869878269732, + -0.003591376356780529, + -0.008539696224033833, + -0.011651619337499142, + -0.004132344387471676, + -0.01788993924856186, + -0.0013551339507102966, + 0.024070363491773605, + -0.0124259814620018, + 0.041164230555295944, + 0.0015668171690776944, + 0.011499641463160515, + -0.003419497050344944, + 0.007613356225192547, + 0.0009534787968732417, + 0.004168529529124498, + 0.020205790176987648, + 0.03268242999911308, + 0.0014609755016863346, + 0.002323086839169264, + 0.0020824556704610586, + -0.01492275670170784, + 0.022869016975164413, + 0.0068968902342021465, + -0.008829177357256413, + 0.005134673323482275, + 0.0154872452840209, + 0.0038862854707986116, + 0.037429921329021454, + 0.002095120260491967, + -0.010710805654525757, + -0.028600744903087616, + 0.015270134434103966, + 0.0017160809366032481, + 0.01720965839922428, + -0.004128726199269295, + 0.012556248344480991, + 0.03948523849248886, + -0.007284071296453476, + 0.02502565272152424, + -0.011333189904689789, + 0.012201633304357529, + 0.022159786894917488, + 0.011543063446879387, + 0.020263684913516045, + 0.005847520660609007, + -0.004081685096025467, + 0.02181241102516651, + -0.0051093436777591705, + 0.05063026770949364, + 0.012469403445720673, + 0.00869167409837246, + 0.017730725929141045, + -0.03838520869612694, + 0.011506878770887852, + -0.018280738964676857, + 0.0025329606141895056, + 0.00019867910305038095, + -0.012563484720885754, + -0.005008025094866753, + -0.015125393867492676, + 0.029440240934491158, + -0.01843995414674282, + 0.03815362602472305, + 0.01184701919555664, + -0.004334981553256512, + 0.007381771225482225, + 0.01037790160626173, + -0.03470879793167114, + 0.01803467981517315, + -0.007222556509077549, + -0.010421324521303177, + 0.0095601174980402, + -0.004751110449433327, + 0.015704356133937836, + 0.019786041229963303, + 0.0154872452840209, + -0.034650903195142746, + 0.03025078773498535, + 0.0012547201476991177, + 0.022159786894917488, + 0.024244053289294243, + -0.0019015298457816243, + -0.01890312321484089, + -0.0050876326858997345, + -0.024765118956565857, + -0.005355402827262878, + -0.004483340308070183, + -0.04573803395032883, + 0.015241186134517193, + 0.02999025397002697, + 0.05103553831577301, + 0.030337631702423096, + -0.020480796694755554, + 0.004070829600095749, + 0.0219571515917778, + 0.033521924167871475, + 0.01013907976448536, + 0.007671252358704805, + -0.003810296533629298, + 0.005279413890093565, + 0.0002211817482020706, + -0.015675408765673637, + 0.0033652193378657103, + 0.03190083056688309, + -0.012874677777290344, + -0.004081685096025467, + -0.014076024293899536, + -0.03375351056456566, + -0.020987389609217644, + 0.03025078773498535, + -0.0033597913570702076, + -0.01376483216881752, + -0.007910074666142464, + -0.01959787867963314, + -0.006118909455835819, + -0.049385495483875275, + -0.0022308146581053734, + 0.029425766319036484, + -0.0069692605175077915, + 0.00425537396222353, + -0.01557409018278122, + 0.0053155990317463875, + -0.012838492169976234, + -0.0013732265215367079, + -0.01170227862894535, + -0.0019178130896762013, + -0.03195872902870178, + 0.00869167409837246, + -0.01988735981285572, + -0.008228504098951817, + 0.010645671747624874, + 0.02528618462383747, + -0.010884493589401245, + -0.02803625725209713, + 0.0003494128759484738, + -0.013533247634768486, + 0.011485167779028416, + -0.00491756247356534, + -0.026820436120033264, + 0.012447692453861237, + -0.002084264764562249, + 0.014995126985013485, + -0.062064774334430695, + 0.01314968429505825, + 0.007866652682423592, + -0.005105725023895502, + -0.0382404699921608, + 0.004002077970653772, + 0.0052757952362298965, + -0.02292691357433796, + -0.005239610094577074, + -0.004993550945073366, + 0.029223129153251648, + -0.014336558058857918, + -0.008858125656843185, + 0.007910074666142464, + 0.04478274658322334, + 0.0056883059442043304, + -0.0013777497224509716, + -0.008612066507339478, + 0.002210912760347128, + -0.005536328535526991, + 0.013627328909933567, + 0.010320005938410759, + 0.02528618462383747, + 0.02394009754061699, + -0.004349455237388611, + -0.010775938630104065, + -0.0008584927418269217, + -0.01542934961616993, + -0.00969038438051939, + -0.04148266091942787, + 0.015067498199641705, + 0.023158498108386993, + 0.002826060401275754, + -0.008720621466636658, + 0.01788993924856186, + -0.034245628863573074, + 0.01013907976448536, + -0.01615305244922638, + -0.008279163390398026, + 0.01749913953244686, + 0.01940971612930298, + -0.016789911314845085, + 0.016022786498069763, + 0.03508512303233147, + -0.002954517723992467, + 0.03630094602704048, + -0.014597090892493725, + -0.01670306734740734, + 0.013822728767991066, + 0.008858125656843185, + 0.01479972805827856, + -0.008054815232753754, + 0.012549011036753654, + -0.012071367353200912, + 0.021305818110704422, + -0.01231742650270462, + 0.013207580894231796, + -0.02984551340341568, + -0.01576225273311138, + -0.03427457809448242, + 0.003810296533629298, + -0.011904915794730186, + 0.010030524805188179, + -0.019655775278806686, + -0.049385495483875275, + -0.05170134827494621, + 0.009494984522461891, + -0.00035031751031056046, + -0.016167527064681053, + -0.004693214315921068, + 0.019641300663352013, + -0.0030739286448806524, + -0.02796388603746891, + 0.005720872897654772, + 0.006618264596909285, + 0.013410218060016632, + 0.0037234523333609104, + 0.001843633595854044, + 0.02213083952665329, + -0.008467325940728188, + -0.01955445669591427, + 0.029903410002589226, + -0.003307322971522808, + -0.0187294352799654, + -0.003160773077979684, + -0.02227558009326458, + 0.01793336123228073, + -0.0025655273348093033, + 0.0006961118779145181, + -0.029179707169532776, + -0.0031481082551181316, + -0.02586514689028263, + -0.04628804698586464, + 0.018917597830295563, + -0.006343257147818804, + 0.012274003587663174, + -0.001620190218091011, + 0.010566065087914467, + -0.020640011876821518, + 0.004121488891541958, + -0.005966931581497192, + 0.016529377549886703, + 0.0056159356608986855, + 0.004758347757160664, + -0.019641300663352013, + -0.0034773931838572025, + 0.0025003941264003515, + -0.001883437274955213, + 0.02181241102516651, + -0.023057179525494576, + 0.029932359233498573, + -0.0018924835603684187, + -0.0016292365035042167, + 0.024287475273013115, + -0.014358269050717354, + 0.01843995414674282, + -0.031177127733826637, + 0.04573803395032883, + -0.004078066907823086, + 0.024533534422516823, + -0.0053662583231925964, + 0.0019919925834983587, + -0.040151044726371765, + 0.008814703673124313, + -0.0051201991736888885, + -0.0190912876278162, + -0.0018092576647177339, + 0.0111739756539464, + 0.0025148680433630943, + 0.004154055379331112, + -0.012208870612084866, + -0.012729937210679054, + -0.0056050801649689674, + 0.027196761220693588, + 0.025850674137473106, + -0.018497850745916367, + 0.07387560606002808, + 0.01904786378145218, + 0.009683147072792053, + 0.017441242933273315, + -0.013193107210099697, + 0.017007021233439445, + -4.964857453160221e-6, + -0.005308362189680338, + 0.008713385090231895, + -0.03661937639117241, + -0.007519274950027466, + -0.016254371032118797, + 0.016167527064681053, + 0.022579535841941833, + 0.004114252049475908, + -0.00012676110782194883, + 0.007349204737693071, + 0.014662223868072033, + 0.0003541621845215559, + -0.012968759052455425, + 0.03575093299150467, + -0.009444325231015682, + 0.0071863713674247265, + -0.02369403839111328, + 0.016688592731952667, + -0.0483144149184227, + -0.002665036590769887, + -0.003658318892121315, + -0.01195557415485382, + -0.01684780791401863, + -0.025373028591275215, + 0.008858125656843185, + -0.01334508415311575, + 0.028586270287632942, + 0.0191202349960804, + -0.004895851016044617, + -0.0016916559543460608, + 0.020191315561532974, + -0.0015668171690776944, + 0.037140440195798874, + -0.0008119043777696788, + -0.03910891339182854, + -0.0012827636674046516, + -0.0017332688439637423, + 0.0187294352799654, + 0.016500430181622505, + -0.004287940450012684, + -0.003222287865355611, + 0.009697620756924152, + -0.00688965292647481, + 0.008858125656843185, + -0.008177844807505608, + 0.01677543669939041, + -0.026675695553421974, + -0.016818858683109283, + -0.023563772439956665, + 0.03632989525794983, + -0.00424813712015748, + -0.006849849596619606, + -0.006035683676600456, + 0.005909035447984934, + 0.013989180326461792, + 0.04119317978620529, + -0.01157201174646616, + 0.012208870612084866, + -0.0216242466121912, + 0.01505302358418703, + -0.044464316219091415, + 0.008214029483497143, + -0.014025365002453327, + 0.015168815851211548, + 0.003028697334229946, + -0.02716781385242939, + -0.01037790160626173, + -0.02224663272500038, + -0.0011705897049978375, + 0.007059723138809204, + 0.01959787867963314, + -0.012237818911671638, + -0.016963599249720573, + -0.005456720944494009, + 0.003093830542638898, + 0.015385926701128483, + -0.020307108759880066, + -0.01528460904955864, + -0.0034122599754482508, + -0.02738492377102375, + -0.01807810179889202, + 0.006194898393005133, + 0.009422614239156246, + 0.008648251183331013, + -0.012881914153695107, + 0.004418207332491875, + 0.008879836648702621, + -0.002122259233146906, + 0.028846804052591324, + -0.002552862511947751, + -0.028600744903087616, + -0.01742677018046379, + 0.0016654216451570392, + 0.004559329245239496, + -0.022000573575496674, + 0.038703639060258865, + 0.008764044381678104, + -0.00970485806465149, + -0.0468670092523098, + -0.0205386932939291, + -0.0012076795101165771, + -0.01945313811302185, + -0.014727357774972916, + 0.020553166046738625, + -0.0022308146581053734, + -0.04767755791544914, + -0.001474544988013804, + -0.008423903957009315, + 0.024142734706401825, + -0.01742677018046379, + -0.02488091215491295, + -0.014191817492246628, + -0.011709515936672688, + 0.0009462417801842093, + -0.03786414489150047, + -0.02415720745921135, + -0.021363714709877968, + -0.015588563866913319, + -0.02470722235739231, + -0.029469188302755356, + 0.01605173386633396, + 0.02967182546854019, + -0.004566566552966833, + -0.01807810179889202, + -0.05867784470319748, + -0.022362424060702324, + -0.015878045931458473, + -0.03169819340109825, + -0.011325952596962452, + -0.009285110048949718, + -0.00012483878526836634, + -0.02709544263780117, + -0.028007308021187782, + 0.0028857658617198467, + 0.027717826887965202, + 0.0028749103657901287, + 0.009466036222875118, + 0.004982695449143648, + -0.034245628863573074, + -0.013468113727867603, + -0.04423272982239723, + -0.018411006778478622, + 0.002469636732712388, + -0.020929493010044098, + 0.04191688075661659, + 0.004845192190259695, + 0.010537116788327694, + 0.019684722647070885, + -0.010602249763906002, + 0.03195872902870178, + 0.014445113018155098, + -0.023245342075824738, + -0.02263743244111538, + -0.004877758678048849, + -0.0015568662201985717, + -0.0005848425207659602, + 0.014835912734270096, + 0.03459300473332405, + -0.009277873672544956, + -0.01142727117985487, + 0.03864574432373047, + -0.01083383522927761, + 0.007729148492217064, + 0.0011470693862065673, + 0.0020589351188391447, + -0.0007395340944640338, + 0.019800515845417976, + 0.014423402026295662, + -0.006871560588479042, + -0.007714674808084965, + -5.3542717068921775e-5, + -0.01858469471335411, + -0.019366294145584106, + -0.017441242933273315, + -0.01694912649691105, + 0.013627328909933567, + -0.01706491783261299, + -0.001653661485761404, + -0.050659213215112686, + -0.02213083952665329, + -0.002357462653890252, + -5.693507773685269e-5, + 0.015313556417822838, + -0.013062840327620506, + 0.002156635047867894, + 0.021826883777976036, + -0.018526798114180565, + 0.016312267631292343, + 0.01702149584889412, + 0.028123101219534874, + -0.007360060233622789, + 0.0035262431483715773, + 0.007153804879635572, + -0.003139062086120248, + 0.012353611178696156, + 0.026429636403918266, + 0.007620593067258596, + -0.02307165414094925, + -0.008539696224033833, + -0.011933863162994385, + 0.015675408765673637, + 0.0036709837149828672, + -0.0070524862967431545, + 0.02075580321252346, + 0.010573301464319229, + -0.015516193583607674, + -0.013504299335181713, + -0.0036764114629477262, + -0.006766623817384243, + 0.002943662228062749, + -0.002545625437051058, + 0.003580520860850811, + 0.009343006648123264, + 0.0031318250112235546, + -0.019467612728476524, + -0.01988735981285572, + 0.02999025397002697, + -0.0011416416382417083, + 0.01564645953476429, + -0.011970048770308495, + -0.0014048885786905885, + 0.022478217259049416, + 0.005684687756001949, + -0.005619554314762354, + 0.005912654101848602, + -0.05178819224238396, + 0.015038549900054932, + 0.03210346773266792, + 0.001613857806660235, + -0.003307322971522808, + 0.02673359028995037, + -0.023708513006567955, + -0.01720965839922428, + 0.007059723138809204, + 0.016210949048399925, + -0.009024577215313911, + 0.01781756989657879, + 0.006715964525938034, + 0.04191688075661659, + -0.008235740475356579, + 0.024026941508054733, + -0.014741831459105015, + -0.03054026886820793, + -0.008887073956429958, + -0.00774362264201045, + 0.013308899477124214, + 0.02589409612119198, + -0.009104184806346893, + 0.026719117537140846, + -0.006715964525938034, + -0.0005305648082867265, + 0.03152450546622276, + -0.0035823301877826452, + 0.02169661782681942, + 0.020292634144425392, + 0.016978073865175247, + -0.004671503324061632, + 0.0172820296138525, + -0.007378152571618557, + -0.03421667963266373, + 0.012664803303778172, + 0.025344081223011017, + -0.004848810378462076, + -0.004787295591086149, + -0.017542561516165733, + -0.029208656400442123, + 0.011188449338078499, + -0.0011126934550702572, + 0.013728647492825985, + -0.010450271889567375, + 0.003034125082194805, + 0.0014374551828950644, + -0.038298364728689194, + 0.04353797435760498, + 0.01146345678716898, + -0.022912438958883286, + -0.004139581695199013, + -0.00477282190695405, + 0.012968759052455425, + -0.030453424900770187, + 0.03566408529877663, + -0.01477801613509655, + -0.003529861569404602, + 0.011398322880268097, + 0.003508150577545166, + -0.03224821016192436, + -0.021566351875662804, + -0.016167527064681053, + -0.030337631702423096, + 0.013554958626627922, + -0.004215570166707039, + 0.01490828301757574, + -0.0013886052183806896, + 0.012122026644647121, + 0.018338635563850403, + -0.004704069811850786, + 0.011731226928532124, + -0.027833620086312294, + -0.010500931181013584, + -0.004139581695199013, + -0.0025184866972267628, + -0.0072804526425898075, + 0.02333218604326248, + -0.015704356133937836, + -0.014387216418981552, + 0.009451561607420444, + -0.017658354714512825, + 0.007620593067258596, + -0.008431140333414078, + -0.0012619572225958109, + 0.0019232408376410604, + -0.0001344504562439397, + -0.003222287865355611, + -0.006412009242922068, + -0.004559329245239496, + 0.02213083952665329, + 0.0004894041921943426, + -0.010334479622542858, + -0.005112962331622839, + -0.004877758678048849, + -0.017513614147901535, + 0.0049537476152181625, + -0.004403733182698488, + 0.008242977783083916, + 0.005767913535237312, + 0.0016229040920734406, + 0.030916593968868256, + 0.004128726199269295, + -0.004059974104166031, + 0.037979938089847565, + 0.0007237030658870935, + 0.017658354714512825, + -0.012491114437580109, + -0.0021258776541799307, + -0.0018870556959882379, + 0.0065965536050498486, + 0.006632738746702671, + 0.0011045518331229687, + 0.015154342167079449, + -0.0002949089976027608, + 0.03586672246456146, + 0.0025781921576708555, + -0.007363678887486458, + 0.0126069076359272, + -0.012259529903531075, + 0.0008906070725060999, + -0.019511034712195396, + 0.0013089978601783514, + 0.0009688574937172234, + -0.0013451831182464957, + -0.014835912734270096, + -0.0158635713160038, + 0.002659608842805028, + -0.017846517264842987, + -0.0006155999144539237, + -0.02839810773730278, + -0.003832007758319378, + -0.003377883927896619, + -0.0461433082818985, + 0.028962597250938416, + 0.0016618031077086926, + 0.017701776698231697, + 0.006480760872364044, + 0.002324896166101098, + 0.03297191113233566, + 0.003850100329145789, + -0.0014609755016863346, + 0.032508742064237595, + 0.020886071026325226, + -0.0054603395983576775, + -0.014553668908774853, + -0.0033091322984546423, + 0.006477142218500376, + 0.0030920212157070637, + 0.022521639242768288, + 0.009755517356097698, + -0.022521639242768288, + 0.006346875801682472, + 0.0005966027383692563, + -0.03152450546622276, + 0.022594010457396507, + 0.0005871041212230921, + -0.008047577925026417, + -0.005583369173109531, + -0.02104528434574604, + 0.00396589282900095, + 0.021465033292770386, + -0.022319002076983452, + 0.010645671747624874, + 0.004316888749599457, + 9.222973744726914e-7, + -0.011224634945392609, + -0.01519776415079832, + -0.006542275659739971, + 0.0024406886659562588, + -0.0176728293299675, + -0.02213083952665329, + -0.05170134827494621, + 0.006328783463686705, + -0.010971338488161564, + 0.01822284236550331, + -0.03763255849480629, + 0.021899254992604256, + 0.01815047301352024, + 0.018266266211867332, + -0.0331745482981205, + 0.02405588887631893, + -0.0038283891044557095, + 0.004519525449723005, + -0.01376483216881752, + 0.0006721392273902893, + 0.006137001793831587, + -0.004693214315921068, + 0.006766623817384243, + 0.009972628206014633, + -0.017947835847735405, + -0.004693214315921068, + -0.008901547640562057, + 0.010450271889567375, + -0.0028550084680318832, + -0.026313843205571175, + -0.01505302358418703, + 0.016095155850052834, + 0.04947233945131302, + -0.01476354245096445, + -0.011970048770308495, + 0.011108841747045517, + 0.0072587416507303715, + -0.0033815025817602873, + 0.02781914547085762, + -0.023303238674998283, + 0.0032041952945291996, + -0.00281701423227787, + -0.02695070207118988, + 0.051846086978912354, + -0.0012818590039387345, + 0.03314559906721115, + 0.008337059058248997, + 0.007779807783663273, + -6.85256309225224e-5, + 0.007989682257175446, + -0.01861364208161831, + 0.03025078773498535, + -0.020784752443432808, + -0.012975996360182762, + -0.0009706667042337358, + 0.023809831589460373, + 0.01477801613509655, + 0.010754227638244629, + -0.006513327360153198, + 0.01218715962022543, + 0.002612567972391844, + -0.017325451597571373, + 0.001469117240048945, + 0.004436299670487642, + -0.035808827728033066, + -0.004342218395322561, + 0.021247921511530876, + -0.0418010875582695, + 0.011210160329937935, + -0.037140440195798874, + 0.022840067744255066, + 0.011065419763326645, + 0.02441774122416973, + 0.004298796411603689, + -0.009603539481759071, + 0.027037546038627625, + 0.005322835873812437, + 0.003318178467452526, + 0.019829463213682175, + 0.016181999817490578, + 0.005029736086726189, + 0.004078066907823086, + -0.0038971409667283297, + 0.006140620447695255, + 0.02362166717648506, + 0.0029219510033726692, + 0.018454428762197495, + 0.0016988929128274322, + 0.003860955825075507, + -0.024026941508054733, + -0.004928417969495058, + 0.014336558058857918, + -0.00018872818327508867, + 0.014676698483526707, + 0.01981499046087265, + 0.008503510616719723, + -0.020524218678474426, + 0.0022977571934461594, + -0.013837202452123165, + -0.00011381361400708556, + -0.017701776698231697, + -0.011492405086755753, + -0.020943965762853622, + -0.02593751810491085, + -0.01352601032704115, + 0.012592433020472527, + -0.040006306022405624, + 0.010081184096634388, + -0.004378403536975384, + 0.030656062066555023, + 0.015501719899475574, + -0.026458583772182465, + -0.018092576414346695, + 0.007823229767382145, + 0.030163943767547607, + 0.0028441529721021652, + -0.0019594260957092047, + 0.003860955825075507, + 0.004747492261230946, + -0.0036619375459849834, + -0.01955445669591427, + 0.004049118608236313, + -0.00927063636481762, + -0.02596646547317505, + 0.00430241459980607, + -0.0022253869101405144, + 0.001044846256263554, + 0.021030811592936516, + -0.015603037551045418, + -0.006321546155959368, + 0.014300372451543808, + 0.022811120375990868, + 0.013952994719147682, + 0.0183675829321146, + 0.03363771736621857, + 0.006614645943045616, + 0.01008842047303915, + 0.01793336123228073, + -0.016934651881456375, + 0.01955445669591427, + -0.007917311042547226, + 0.020480796694755554, + 0.016210949048399925, + 0.0003154893056489527, + 0.018599169328808784, + -0.017412295565009117, + -0.019930781796574593, + -0.021725565195083618, + 0.023317713290452957, + 0.02299928292632103, + -0.0017495522042736411, + 0.023563772439956665, + -2.7760797820519656e-5, + -0.020495271310210228, + -0.016428058966994286, + -0.006788334809243679, + -0.032074518501758575, + -0.006625501438975334, + -0.0128023074939847, + -0.04075895622372627, + 0.005767913535237312, + 0.0031372527591884136, + 0.013135210610926151, + -0.0048090070486068726, + 0.007323875091969967, + 0.027544138953089714, + 0.00593074643984437, + 0.00520704360678792, + -0.015921467915177345, + -0.0295270849019289, + -0.04084580019116402, + -0.001552343019284308, + -0.00840219296514988, + -0.01557409018278122, + -0.008814703673124313, + -0.0007616974762640893, + 0.01988735981285572, + -0.01215097401291132, + -0.028948122635483742, + 0.016181999817490578, + 0.026704642921686172, + 0.0020933111663907766, + -0.010334479622542858, + -0.01938076876103878, + 0.015183290466666222, + -0.02463485300540924, + -0.0015043977182358503, + -0.0008698006276972592, + 0.00999433919787407, + 0.0052034249529242516, + 0.001972090918570757, + 0.007635067217051983, + 0.009002866223454475, + 0.002873101271688938, + 0.02948366291821003, + -0.006151475943624973, + -0.02999025397002697, + 0.013178632594645023, + 0.017397820949554443, + 0.02420063130557537, + -0.014148394577205181, + -0.019482087343931198, + -0.003084784373641014, + -0.008771280758082867, + 0.034535109996795654, + -0.03025078773498535, + -0.0003376527165528387, + -0.021088706329464912, + 0.01213650032877922, + -0.026096733286976814, + 0.003632989479228854, + -0.022174261510372162, + -0.008431140333414078, + -0.019221553578972816, + -0.009429850615561008, + -0.006603790447115898, + -0.0029907028656452894, + 0.003307322971522808, + -0.000765316013712436, + -7.774154073558748e-5, + 0.010797649621963501, + 0.034824591130018234, + -0.01709386706352234, + 0.016500430181622505, + -0.0004979981458745897, + -0.0069186012260615826, + -0.004360310733318329, + -0.009987101890146732, + -0.005974168889224529, + -0.010406849905848503, + -0.0027826381847262383, + 0.010479220189154148, + -0.018237316980957985, + 0.028702063485980034, + -0.004378403536975384, + 0.010023287497460842, + 0.020292634144425392, + 0.004646173678338528, + 0.00022434795391745865, + -0.0014980653068050742, + 0.005630409810692072, + 0.022811120375990868, + -0.017484666779637337, + -0.0018173992866650224, + -0.004085303749889135, + -0.010464746505022049, + 0.02071238122880459, + 0.01476354245096445, + -0.00023678659636061639, + -0.014691172167658806, + 0.01490828301757574, + -0.03386930376291275, + -0.0020589351188391447, + 0.014112209901213646, + -0.026863858103752136, + -0.010804886929690838, + -0.017412295565009117, + 0.022087417542934418, + -0.017730725929141045, + -0.010008812882006168, + -0.0019069575937464833, + 0.016978073865175247, + -0.04327744245529175, + -0.004125107545405626, + 0.027442820370197296, + -0.006484379526227713, + 0.009618014097213745, + 0.012491114437580109, + -0.013757594861090183, + -0.004508669953793287, + 0.010073946788907051, + 0.0072804526425898075, + -0.02415720745921135, + 0.009842361323535442, + -0.006104435306042433, + -0.012505589053034782, + 0.015009601600468159, + -0.017368873581290245, + 0.03343508020043373, + -0.0034430173691362143, + 0.028441529721021652, + 0.012773359194397926, + 0.02325981669127941, + 0.0003109661629423499, + 0.015385926701128483, + -0.017079392448067665, + 0.012592433020472527, + 0.0014826866099610925, + -0.011919389478862286, + -0.009256161749362946, + 0.004725780803710222, + 0.014604328200221062, + -0.03905101865530014, + 0.007548222783952951, + -0.01343916542828083, + 0.006241939030587673, + -0.005518235731869936, + -0.021436084061861038, + 0.02430194802582264, + -0.006343257147818804, + -0.005018880590796471, + -0.008358770050108433, + -0.020958440378308296, + 0.010443035513162613, + 0.01195557415485382, + -0.012614144012331963, + 0.0009507649228908122, + -0.005767913535237312, + -0.00373068917542696, + -0.01528460904955864, + 0.007924548350274563, + -0.01519776415079832, + 0.002352034905925393, + 0.013301662169396877, + 0.003213241696357727, + 0.01634121499955654, + -0.014712883159518242, + -0.008481799624860287, + -0.006477142218500376, + 0.004269848112016916, + 0.01940971612930298, + 0.011311478912830353, + 0.00697287917137146, + 0.016138577833771706, + 0.0016726587200537324, + -0.01479972805827856, + 0.011883203871548176, + 0.014495772309601307, + 0.00424813712015748, + -0.020379478111863136, + -0.010471982881426811, + -0.002384601626545191, + 0.05222241207957268, + 0.024866437539458275, + 0.003864574246108532, + 0.01199175976216793, + 0.027877042070031166, + -0.018743909895420074, + 0.022883491590619087, + 0.021493980661034584, + 0.008706147782504559, + -0.0012700988445430994, + 0.013193107210099697, + 0.009893020614981651, + -0.0324508436024189, + -0.003580520860850811, + -0.010783175937831402, + 0.009661436080932617, + 0.009741043671965599, + 0.02709544263780117, + -0.0025058218743652105, + 0.025083547458052635, + 0.02075580321252346, + -0.008250215090811253, + 0.013272713869810104, + 0.0331166535615921, + -0.010240398347377777, + 0.004237281624227762, + 0.020365003496408463, + 0.015617512166500092, + 0.0381825752556324, + -0.0029400435741990805, + -0.00802586693316698, + -0.006473524030297995, + 0.00045186211355030537, + -0.018888650462031364, + 0.009893020614981651, + 0.009719331748783588, + 0.0074251932092010975, + 0.011014760471880436, + -0.006484379526227713, + 0.02061106264591217, + -0.007584407925605774, + -0.021175552159547806, + 0.014951705001294613, + -0.009154844097793102, + -0.02314402349293232, + 0.006379442289471626, + 0.0052106622606515884, + -0.006050157826393843, + 0.0031806749757379293, + 0.008083763532340527, + -0.026429636403918266, + -0.01955445669591427, + 0.001150687923654914, + -0.012722699902951717, + 0.0007648636819794774, + -0.007873889058828354, + 0.0017667401116341352, + -0.008677199482917786, + -0.013750358484685421, + -0.001977518666535616, + -0.011354900896549225, + 0.002943662228062749, + -0.023375608026981354, + -0.0030069861095398664, + 0.008199555799365044, + -0.015747778117656708, + -0.014126683585345745, + 0.01687675528228283, + -0.015168815851211548, + 0.026936227455735207, + -0.006571223959326744, + 0.005279413890093565, + 0.0003914781264029443, + -0.01528460904955864, + -0.015675408765673637, + -0.004382022190839052, + -0.0014501200057566166, + -0.0070090643130242825, + -0.011789122596383095, + -0.01008842047303915, + -0.008090999908745289, + 0.010819360613822937, + 0.00535178417339921, + -0.005894561298191547, + 0.006299835164099932, + 0.001000519492663443, + 0.009567354805767536, + 0.001413934864103794, + -0.0021530166268348694, + -0.01257072202861309, + 0.005138291511684656, + -0.008394955657422543, + -0.008445614948868752, + -0.00021541473688557744, + -0.018743909895420074, + 0.007910074666142464, + -0.012939810752868652, + -0.0033380803652107716, + 0.036271996796131134, + -0.0074975634925067425, + -0.002319468418136239, + 0.007982444949448109, + -0.008503510616719723, + 0.00883641466498375, + 0.0091837914660573, + 0.0070524862967431545, + 0.017875466495752335, + 0.01709386706352234, + -0.022840067744255066, + 0.0035370986443012953, + -0.004215570166707039, + -0.03948523849248886, + -0.004718543961644173, + -0.0032928488217294216, + 0.002927378984168172, + 0.0025818105787038803, + -0.008452851325273514, + -0.014785253442823887, + -0.01984393782913685, + -0.0187294352799654, + 0.010204212740063667, + 0.02818099781870842, + 0.005380732472985983, + 0.016022786498069763, + 0.0038464816752821207, + 0.001788451219908893, + -0.012064130045473576, + -0.015921467915177345, + -0.023896675556898117, + 0.0008815607870928943, + 0.010508168488740921, + -0.0017920697573572397, + 0.001648233737796545, + -0.01294704806059599, + 0.003980366978794336, + -0.00491756247356534, + 0.019930781796574593, + 0.0003139062027912587, + 0.025734880939126015, + -0.01680438593029976, + 0.002328514587134123, + 0.03042447753250599, + -0.004638936836272478, + 0.010985812172293663, + 0.017253080382943153, + 0.01822284236550331, + -0.007765333633869886, + -0.022695327177643776, + 0.0352877601981163, + 0.0036510820500552654, + 0.018266266211867332, + -0.010884493589401245, + -0.024678274989128113, + -0.015125393867492676, + 0.0038283891044557095, + 0.020495271310210228, + -0.014329320751130581, + -0.02451905980706215, + 0.0007137521170079708, + -0.005384350661188364, + -0.0029816566966474056, + -0.009813413955271244, + 0.0020878834184259176, + 0.015241186134517193, + -0.0027790197636932135, + 0.0048705218359827995, + 0.016978073865175247, + 0.003157154656946659, + 0.013612854294478893, + -0.010862782597541809, + 0.0004744778270833194, + 0.001161543419584632, + 0.01477801613509655, + -0.01684780791401863, + 0.003356172936037183, + 0.014951705001294613, + 0.011499641463160515, + 0.03056921809911728, + -0.01102923508733511, + 0.0006409295019693673, + 0.008431140333414078, + -0.000564488407690078, + -0.009451561607420444, + -0.0154872452840209, + 0.007772570941597223, + -0.005435009952634573, + 0.03152450546622276, + 0.011709515936672688, + 0.01579120010137558, + -0.006108053959906101, + -0.005311980377882719, + 0.02451905980706215, + -0.006097198463976383, + -0.006234701722860336, + -0.0034086413215845823, + 0.009133133105933666, + -0.0010457509197294712, + 0.03085869923233986, + 0.011210160329937935, + 0.019207078963518143, + -0.0008829177240841091, + -0.009929206222295761, + 0.023172972723841667, + -0.023086126893758774, + 0.0027012217324227095, + -0.023520348593592644, + 0.0032874210737645626, + 0.00836600735783577, + -0.019511034712195396, + 0.000358911493094638, + -0.00878575537353754, + -0.02104528434574604, + 0.007960733957588673, + 0.002205485012382269, + -0.028094151988625526, + -0.0005735346931032836, + 0.011195686645805836, + 0.0009978056186810136, + 0.020061049610376358, + -0.009466036222875118, + -0.00420109648257494, + 0.011760174296796322, + 0.0034050229005515575, + -0.025126969441771507, + 0.009936442598700523, + -0.007204464171081781, + -0.016500430181622505, + -0.01338126976042986, + -0.006723201368004084, + -0.00854693353176117, + 0.03039552830159664, + 0.007222556509077549, + 0.0010538925416767597, + 0.023462453857064247, + -0.013453640043735504, + 0.030019203200936317, + 0.011405560187995434, + -0.01665964536368847, + 0.010356190614402294, + -0.006249175872653723, + -0.00506953988224268, + 0.023636141791939735, + -0.023172972723841667, + 0.003457491286098957, + 0.013844439759850502, + -0.012122026644647121, + -5.693507773685269e-5, + -0.003240380436182022, + -0.001089173136278987, + -2.945697633549571e-5, + -0.003871811321005225, + -0.027544138953089714, + -0.006701490376144648, + 0.01228124089539051, + 0.018671538680791855, + 0.016022786498069763, + 0.000135468173539266, + -0.004562947899103165, + 0.007830467075109482, + 0.004052737262099981, + 0.012114789336919785, + -0.002625232795253396, + -0.012975996360182762, + -0.014756305143237114, + 0.029642878100275993, + 0.005749820731580257, + -0.004371166694909334, + 0.012230581603944302, + -0.019655775278806686, + -0.01068909466266632, + -0.005861994810402393, + -0.003377883927896619, + -0.0065965536050498486, + 0.02176898717880249, + -0.006513327360153198, + -0.010660146363079548, + 0.009914731606841087, + -0.02061106264591217, + 0.005257702898234129, + 0.0015125394565984607, + -0.0169201772660017, + 0.014879334717988968, + 0.00379944103769958, + -0.015559615567326546, + -0.0010846499353647232, + -0.030511321499943733, + 0.004009314812719822, + 0.007656778208911419, + 0.03010604716837406, + 0.01434379443526268, + 0.006846230942755938, + -0.025199340656399727, + 0.009589065797626972, + -0.0013650848995894194, + -0.014126683585345745, + 0.0111739756539464, + -0.002827869728207588, + 0.022043995559215546, + 0.002073409268632531, + -0.01215097401291132, + -0.0048922328278422356, + 0.003904378041625023, + -0.002133114729076624, + -0.020451849326491356, + 0.011065419763326645, + 0.005869231652468443, + 0.00420109648257494, + -0.019033391028642654, + -0.001993801910430193, + 0.024750644341111183, + -0.006220228038728237, + -0.01933734491467476, + 0.020784752443432808, + 0.014864861033856869, + -0.0034755838569253683, + 0.007150186225771904, + 0.008105474524199963, + 0.0009724759729579091, + -0.011101605370640755, + -0.029729722067713737, + -0.0007241553976200521, + -0.009581828489899635, + 0.01854127272963524, + 0.004230044316500425, + -0.01519776415079832, + 0.007830467075109482, + 0.0012248674174770713, + 0.011181212030351162, + 0.02451905980706215, + -0.0006260031368583441, + 0.012440456077456474, + -0.0013108071871101856, + -0.0031589637510478497, + -0.0037560188211500645, + 0.011803597211837769, + 0.02499670349061489, + -0.022984810173511505, + 0.0013135210610926151, + -0.010240398347377777, + 0.004016552120447159, + -0.033956147730350494, + 0.00024402362760156393, + 0.007729148492217064, + -0.025257237255573273, + 0.008814703673124313, + 0.0309744905680418, + 0.0095601174980402, + -0.019351819530129433, + 0.008923258632421494, + 0.025040125474333763, + 0.014213528484106064, + 0.003929707687348127, + -0.0029255696572363377, + -0.014705645851790905, + 0.015400401316583157, + -0.009053525514900684, + -0.014126683585345745, + 0.01463327556848526, + -0.01738334819674492, + -0.009162080474197865, + 0.00239002937451005, + 0.032045572996139526, + -0.0266901683062315, + -0.0019630445167422295, + 0.014068787917494774, + -0.00046045606723055243, + 0.01637016236782074, + -0.003117350861430168, + -0.019901834428310394, + -0.013960232026875019, + 0.008423903957009315, + 0.008554169908165932, + 0.001519776415079832, + -0.013902335427701473, + 0.00835153367370367, + 0.020075522363185883, + 0.029165232554078102, + 0.03563513979315758, + -0.0063034538179636, + 0.011347663588821888, + 0.011239108629524708, + 0.002312231343239546, + -0.015950415283441544, + 0.006687016226351261, + -0.009437087923288345, + 0.018063629046082497, + 0.02039395272731781, + 0.032624535262584686, + 0.0018246363615617156, + -0.0126069076359272, + -0.00836600735783577, + 0.026212524622678757, + 0.031669244170188904, + -0.012143737636506557, + 0.01655832678079605, + -0.02654542773962021, + -0.004863284528255463, + 0.019149182364344597, + -0.0035316708963364363, + -0.023100601509213448, + -0.005644883960485458, + -0.004856047686189413, + 0.0158635713160038, + 0.02466380037367344, + 0.004316888749599457, + -0.04078790545463562, + 0.026936227455735207, + 0.001642805989831686, + 0.007526511792093515, + -0.0022832832764834166, + 0.003578711533918977, + 0.005163621157407761, + 0.0026161866262555122, + -0.00274826237000525, + 0.004327744245529175, + 0.012339137494564056, + -0.000717822986189276, + 0.005424154456704855, + 0.020813699811697006, + -0.022029520943760872, + 0.014278661459684372, + -0.018816279247403145, + 0.026284895837306976, + 0.0023556535597890615, + -0.013677988201379776, + 0.02712439000606537, + 0.03314559906721115, + 0.02140713669359684, + -0.007446904666721821, + -0.013649039901793003, + -0.025662509724497795, + -0.01600831188261509, + 0.006784716155380011, + 0.006422864738851786, + -0.010385138913989067, + -0.0069584050215780735, + 0.0205676406621933, + -0.01800573244690895, + 0.022000573575496674, + 0.005811335518956184, + 0.009010103531181812, + -0.026198050007224083, + 0.00822126679122448, + 0.02013341896235943, + -0.0004957366036251187, + 0.01276612188667059, + -0.0025890476536005735, + 0.005800480023026466, + 0.003017841838300228, + -0.025054600089788437, + -0.002185583347454667, + 0.013895099051296711, + -0.0018671539146453142, + -0.007490326650440693, + -0.015747778117656708, + -0.023665091022849083, + 0.004638936836272478, + 0.011021997779607773, + 0.004316888749599457, + 0.0016916559543460608, + -0.0006798285758122802, + -0.0015288227004930377, + -0.015689881518483162, + 0.01846890151500702, + -0.006404771935194731, + 0.02477959357202053, + 0.01781756989657879, + 0.009842361323535442, + -0.001139832311309874, + -0.006788334809243679, + -0.009531169198453426, + -0.00017855111218523234, + -0.0030630731489509344, + -0.008467325940728188, + 0.004765584599226713, + 0.003506341250613332, + 0.0008327108225785196, + -0.007211701013147831, + 0.008872599340975285, + -0.0054929060861468315, + 0.005055065732449293, + -0.00893049594014883, + -0.01788993924856186, + 0.0028676732908934355, + 0.024504585191607475, + -0.02572040632367134, + -0.02032158151268959, + 0.001195014687255025, + -0.01778862066566944, + 0.02600988745689392, + 0.009719331748783588, + 0.011564775370061398, + -0.0006554035935550928, + 0.006006735377013683, + -0.004660647828131914, + -0.004439918324351311, + 0.00726236030459404, + 0.017412295565009117, + 0.007584407925605774, + -4.884995723841712e-5, + 0.003168010152876377, + -0.008127185516059399, + -0.002988893538713455, + 0.022869016975164413, + 0.00970485806465149, + 0.005912654101848602, + -0.004313270095735788, + 0.01576225273311138, + 0.020915018394589424, + -0.004859665874391794, + 0.018266266211867332, + 0.005217899102717638, + -0.02253611385822296, + 0.01634121499955654, + -0.008554169908165932, + -0.004360310733318329, + 0.013374032452702522, + 0.013062840327620506, + 0.009950917214155197, + -0.0007897409377619624, + 0.02253611385822296, + 0.0011362137738615274, + -0.01974261924624443, + -0.027109917253255844, + -0.016978073865175247, + 0.019930781796574593, + 0.016789911314845085, + 0.005138291511684656, + 0.011195686645805836, + -0.004714925307780504, + -0.03485354036092758, + -0.003652891144156456, + 0.011695041321218014, + 0.004523144103586674, + -0.008713385090231895, + 0.019872885197401047, + 0.0037524004001170397, + -0.008988391607999802, + 0.021942676976323128, + 0.008923258632421494, + -0.002145779551938176, + 0.004913943819701672, + 0.009813413955271244, + -0.013967469334602356, + -0.020350530743598938, + -0.0035334802232682705, + 0.004526762757450342, + -0.01699254848062992, + 0.008358770050108433, + -0.00711761973798275, + 0.0014175534015521407, + 0.002049888949841261, + 0.01904786378145218, + 0.019728144630789757, + 0.023201920092105865, + -0.01481420174241066, + -0.021030811592936516, + 0.0017613123636692762, + 0.0017224132316187024, + 0.013135210610926151, + -0.005297506228089333, + -0.0142352394759655, + 0.017195185646414757, + 0.006708727218210697, + -0.005713635589927435, + 0.00674491235986352, + 0.018917597830295563, + 0.01880180463194847, + -0.006755767855793238, + 0.014951705001294613, + -0.02133476547896862, + -0.007750859949737787, + 0.0017115577356889844, + 0.009958154521882534, + -0.0010186120634898543, + -0.01854127272963524, + -0.012773359194397926, + -0.005145528819411993, + 0.0031300156842917204, + -0.012831254862248898, + 0.0035461450461298227, + 0.01329442486166954, + -0.019105760380625725, + 0.004211951978504658, + 0.006506090518087149, + 0.014466824010014534, + -0.013880624435842037, + -0.008134422823786736, + 0.000569916155654937, + -0.015154342167079449, + 0.00434583704918623, + -0.019800515845417976, + -0.01600831188261509, + -0.008047577925026417, + -0.0052938880398869514, + -0.006987352855503559, + -0.010327242314815521, + -0.000157857735757716, + -0.0070524862967431545, + -0.023274291306734085, + -0.005681069102138281, + 0.0049646031111478806, + -0.008489036932587624, + 0.010906205512583256, + -0.015212238766252995, + -0.00463531818240881, + 0.013337847776710987, + -0.02897707000374794, + -0.006672542076557875, + -0.007656778208911419, + -0.0034538728650659323, + 0.008279163390398026, + 0.007142949383705854, + -0.00869167409837246, + 0.011514116078615189, + 0.014611564576625824, + 0.00041499847429804504, + 0.005793243180960417, + 0.010291057638823986, + -0.025691458955407143, + -0.01916365697979927, + -0.010110131464898586, + -0.007121237926185131, + 0.008416666649281979, + -0.009581828489899635, + -0.0005038782837800682, + -0.014756305143237114, + -0.003500913502648473, + 0.006965641863644123, + -0.011767411604523659, + -0.010906205512583256, + -0.006654449738562107, + -0.012324662879109383, + -0.021088706329464912, + 0.00373068917542696, + -0.016905702650547028, + -0.003994841128587723, + -0.01851232349872589, + 0.005619554314762354, + -0.008329822681844234, + -0.01215097401291132, + -0.0052866507321596146, + -0.0017694539856165648, + 0.010573301464319229, + -0.005840283818542957, + -0.003039552830159664, + 0.019424190744757652, + 0.003991222474724054, + -0.012686514295637608, + 0.021783461794257164, + -0.004277084954082966, + -0.007251504808664322, + -0.012397033162415028, + -0.007779807783663273, + 0.0009154843864962459, + -0.006715964525938034, + 0.009618014097213745, + -0.016818858683109283, + 0.0039839851669967175, + -0.015024075284600258, + -0.0019033390562981367, + -0.028021782636642456, + -0.0030540269799530506, + -0.0035045321565121412, + 0.0004799056041520089, + 0.0008426617714576423, + 0.01291086245328188, + 0.008575880900025368, + -0.01684780791401863, + -0.016022786498069763, + -0.011116079054772854, + -0.002764545613899827, + 0.0006481665768660605, + -0.0071140010841190815, + 0.012216107919812202, + -0.008033104240894318, + -0.0007196322549134493, + -0.01817942038178444, + 0.011058182455599308, + -0.04136686772108078, + 0.014770779758691788, + -0.0027573087718337774, + -0.0295560322701931, + -0.0007051581633277237, + -1.10746359496261e-5, + 0.007284071296453476, + 0.0007752669043838978, + 0.004801769740879536, + -0.016978073865175247, + -0.0013234720099717379, + 0.002932806732133031, + -0.012780596502125263, + -0.021653195843100548, + -0.009473273530602455, + 0.023969044908881187, + 0.00645543122664094, + -0.011159501038491726, + 0.0033254155423492193, + 0.0008752283756621182, + 0.0024334515910595655, + 0.0002616638957988471, + 0.0014899236848577857, + -0.012216107919812202, + -0.009154844097793102, + -0.010580538772046566, + 0.00894496962428093, + 0.02176898717880249, + 0.005301124881953001, + 0.020640011876821518, + 0.010204212740063667, + -0.0015460106078535318, + 0.012107552029192448, + 0.004913943819701672, + -0.01329442486166954, + -0.011043708771467209, + -0.010023287497460842, + 0.003716215258464217, + -0.014278661459684372, + 0.008489036932587624, + 0.007121237926185131, + 0.011376611888408661, + -0.006806427147239447, + -0.020582115277647972, + 0.023679563775658607, + 0.014351031742990017, + -0.00740710087120533, + 0.00825745239853859, + 0.006314309313893318, + -0.004581040237098932, + -0.007584407925605774, + 0.001145260059274733, + -0.006292598322033882, + -0.021580824628472328, + -0.019757093861699104, + -0.006726820021867752, + -0.012758884578943253, + -0.01343916542828083, + 0.006140620447695255, + 0.015747778117656708, + -0.0017450290033593774, + 0.010768701322376728, + -0.020017625764012337, + -0.004693214315921068, + 0.01706491783261299, + 0.014712883159518242, + -0.006495235022157431, + -0.00593074643984437, + -0.01204241905361414, + -0.0020155131351202726, + 0.010500931181013584, + 0.0017016067868098617, + -0.018049154430627823, + 0.019786041229963303, + -0.022550586611032486, + 0.01181083358824253, + 0.010066709481179714, + 0.007591645233333111, + -0.02854284830391407, + 0.01612410508096218, + 0.01329442486166954, + 0.002697603078559041, + 0.005029736086726189, + 0.0007440572371706367, + 0.006516946014016867, + 0.009610776789486408, + -0.023751934990286827, + -0.014010891318321228, + -0.013482588343322277, + -0.010580538772046566, + 0.0025619089137762785, + 0.016572799533605576, + -0.010363427922129631, + -0.01448853500187397, + 0.0031137324403971434, + -0.011325952596962452, + -0.02449011243879795, + -0.01720965839922428, + 0.01181083358824253, + -0.008814703673124313, + 0.052251361310482025, + -0.00036004226421937346, + -0.004497814457863569, + -0.014047075994312763, + 0.01181083358824253, + 0.0017332688439637423, + -0.023346660658717155, + 0.03505617752671242, + -0.028383634984493256, + 0.029758669435977936, + 0.008054815232753754, + 0.02082817442715168, + 0.006379442289471626, + -0.021609773859381676, + -0.005717254243791103, + 0.027732301503419876, + 0.007591645233333111, + 0.020307108759880066, + -0.01528460904955864, + -0.0004979981458745897, + 0.0033217971213161945, + 0.0024660180788487196, + 0.0029472806490957737, + 0.012143737636506557, + -0.012592433020472527, + -0.004222807474434376, + 0.01231742650270462, + -0.010681857354938984, + 0.013468113727867603, + 0.01815047301352024, + 0.022912438958883286, + 0.0021747276186943054, + -0.014278661459684372, + -0.0025166773702949286, + 0.0013732265215367079, + 0.017339926213026047, + 0.0017703586490824819, + 0.009212739765644073, + 0.007446904666721821, + -0.006618264596909285, + -0.012498351745307446, + -0.01825179159641266, + 0.004204714670777321, + 0.0003969059034716338, + 0.021638721227645874, + -0.030511321499943733, + 0.0053264545276761055, + 0.0053264545276761055, + -0.004526762757450342, + 0.002229005331173539, + -0.005235991440713406, + 0.002806158736348152, + -9.208838491758797e-6, + -0.005782387685030699, + 0.014575379900634289, + 0.00019800063455477357, + 0.014249713160097599, + 0.002542007016018033, + 0.020205790176987648, + -0.012758884578943253, + 0.0003277017967775464, + 0.019438663497567177, + -0.028629692271351814, + 0.010341716930270195, + -0.008293637074530125, + 0.001754075288772583, + 0.0111739756539464, + -0.0072189378552138805, + 0.006806427147239447, + -0.011818070895969868, + -0.01702149584889412, + -0.019655775278806686, + 0.011825308203697205, + 0.0057100169360637665, + 0.02075580321252346, + 0.008438377641141415, + 0.016601748764514923, + -0.00731663778424263, + -0.002229005331173539, + -0.010841071605682373, + -0.011398322880268097, + 0.01684780791401863, + 0.009755517356097698, + 0.02082817442715168, + -0.008865362964570522, + 0.014597090892493725, + -0.018628116697072983, + -0.001184159191325307, + 0.021580824628472328, + 0.009466036222875118, + 0.005937983747571707, + -0.004371166694909334, + 0.01041408721357584, + -0.002769973361864686, + 0.015110920183360577, + 0.01437998004257679, + 0.0033398896921426058, + 0.016239896416664124, + 0.006191279739141464, + -0.0040563554503023624, + 0.0038356261793524027, + 0.003433970967307687, + -0.004193859174847603, + 0.0015686263795942068, + 0.030366580933332443, + -0.004450773820281029, + -0.014141158200800419, + 0.034824591130018234, + 0.005369876511394978, + 0.0006205753888934851, + 0.033087704330682755, + 0.005804098676890135, + 0.013106262311339378, + 0.01868601329624653, + -0.0012049656361341476, + 0.004041881766170263, + -0.011593722738325596, + 0.013301662169396877, + 0.010168028064072132, + -0.008199555799365044, + -0.005529091227799654, + -9.577757737133652e-5, + -0.014112209901213646, + -0.01037790160626173, + -0.019901834428310394, + -0.00740710087120533, + -0.005757058039307594, + -0.025923043489456177, + -0.0007978826179169118, + -0.005029736086726189, + 0.006118909455835819, + 0.0011271674884483218, + 0.023708513006567955, + 0.0031933397985994816, + -7.632805500179529e-5, + 0.009111421182751656, + -0.015081971883773804, + 0.00907523650676012, + -0.0191202349960804, + -0.013866150751709938, + -0.040585268288850784, + -0.027703354135155678, + -0.0024280238430947065, + 0.002266999799758196, + 0.0069584050215780735, + -0.01304112933576107, + -0.008112710900604725, + 0.002684938255697489, + -0.00840219296514988, + -0.011796359904110432, + -0.005720872897654772, + 0.008337059058248997, + -0.0022995665203779936, + -0.002563718007877469, + -0.024099312722682953, + -0.00941537693142891, + -0.007526511792093515, + -0.013156921602785587, + -0.03187188133597374, + -0.01126805692911148, + -0.003839244833216071, + 0.027225708588957787, + -0.008532458916306496, + -0.028513900935649872, + -0.022290054708719254, + -0.030337631702423096, + 0.01883075386285782, + 0.010312768630683422, + 0.023201920092105865, + -0.016818858683109283, + 0.0053590210154652596, + -0.009712095372378826, + 0.003907996695488691, + 0.022897964343428612, + -0.016833333298563957, + 0.0027573087718337774, + 0.010732516646385193, + -0.004888614173978567, + -0.030163943767547607, + 0.002406312618404627, + 0.007338349241763353, + 0.010841071605682373, + -0.0012890960788354278, + 0.00984959863126278, + -0.0022977571934461594, + -0.01233190018683672, + -0.006328783463686705, + 0.020799225196242332, + -0.006871560588479042, + -0.005018880590796471, + 0.000392382760765031, + 0.010240398347377777, + -0.0029852751176804304, + 0.0010086611146107316, + 0.015241186134517193, + 0.03039552830159664, + 0.013431929051876068, + 0.019539982080459595, + -0.0069909715093672276, + -0.017180711030960083, + -0.0038030596915632486, + -0.004273466765880585, + -0.013359558768570423, + -0.0006526897195726633, + -0.0011235489509999752, + 0.025879621505737305, + 0.01231742650270462, + -0.004468866623938084, + -0.0026957939844578505, + 0.007305782288312912, + 0.0079317856580019, + -0.001821922487579286, + -0.0007295831455849111, + -0.006629120092839003, + 0.010652909055352211, + -0.004515907261520624, + -0.026719117537140846, + 0.010348954237997532, + 0.002151207299903035, + -0.009371954947710037, + 0.004313270095735788, + 0.005438628606498241, + 0.008090999908745289, + -0.01490828301757574, + 0.004798151087015867, + 0.0005405156989581883, + -0.007808756083250046, + -0.021826883777976036, + -0.024909859523177147, + 0.00042246165685355663, + 0.007356441579759121, + 0.013981943018734455, + -0.010001576505601406, + -0.01709386706352234, + -0.029252078384160995, + 0.007815993390977383, + 0.001117216655984521, + -0.0021204499062150717, + 0.014850386418402195, + 0.01757151074707508, + 0.02325981669127941, + 0.004939273465424776, + 0.0018137807492166758, + -0.01916365697979927, + -0.007048867642879486, + -0.0008593974052928388, + 0.008018629625439644, + 0.02463485300540924, + -0.003414069302380085, + 0.01723860763013363, + -0.0266612209379673, + -0.0079317856580019, + -0.008286399766802788, + -0.006122528109699488, + -0.004353073891252279, + -0.007873889058828354, + -0.016283318400382996, + 0.005290269386023283, + 0.015024075284600258, + 0.0005061398260295391, + -0.0019395241979509592, + -0.0014066977892071009, + -0.013229291886091232, + -0.008959444239735603, + 0.008771280758082867, + -0.00535178417339921, + -0.01171675231307745, + 0.001859916839748621, + -0.007758096791803837, + -0.007765333633869886, + -0.01318586990237236, + -0.026125680655241013, + -0.04003525152802467, + -0.003005177015438676, + 0.010623960755765438, + 0.02010447159409523, + 0.008344296365976334, + -0.00520704360678792, + 0.004783677402883768, + -0.0020082760602235794, + 0.028731010854244232, + 0.002312231343239546, + 0.014119446277618408, + 0.020408425480127335, + 0.007099526934325695, + -0.0281086266040802, + -0.017339926213026047, + -0.019105760380625725, + 0.0008869885932654142, + 0.020234737545251846, + -0.01070356834679842, + -0.009965390898287296, + -0.01571883074939251, + 0.02459142915904522, + 0.013033892028033733, + 0.012889151461422443, + -0.009350243955850601, + 0.007750859949737787, + 0.02147950604557991, + -0.015356979332864285, + 0.022188736125826836, + 0.004790914244949818, + -0.010001576505601406, + -8.373470336664468e-5, + -0.015545141883194447, + -0.0012221535434946418, + -0.0015270134899765253, + 0.017542561516165733, + 0.004747492261230946, + 0.00764230452477932, + 0.006459049880504608, + -0.010870019905269146, + -0.019511034712195396, + 0.004226425662636757, + 0.008358770050108433, + 0.00039781053783372045, + -0.03155345469713211, + 0.0015288227004930377, + 0.024750644341111183, + 0.004722162615507841, + 0.004935654811561108, + -0.01257072202861309, + -0.010110131464898586, + 0.00921997707337141, + -0.01952550932765007, + -0.008423903957009315, + 0.01998867839574814, + 0.01752808876335621, + -0.013402980752289295, + -0.02904944121837616, + 0.005601461511105299, + -0.01490828301757574, + 0.013323373161256313, + 0.008742333389818668, + -0.013887861743569374, + -0.004454392474144697, + -0.0070524862967431545, + -0.0011416416382417083, + 0.008532458916306496, + 0.009292347356677055, + -0.01305560301989317, + 0.021363714709877968, + 0.005865613464266062, + -0.000368636247003451, + -0.021711092442274094, + -0.01157201174646616, + 0.011528589762747288, + 0.006419246084988117, + -0.012737173587083817, + 0.001005947240628302, + -0.006089961156249046, + -0.005952457897365093, + 0.015472771599888802, + 0.0007164660491980612, + -0.004421825520694256, + 0.015168815851211548, + -0.009965390898287296, + 0.03242189809679985, + 0.0036004227586090565, + 0.0014483107952401042, + 0.01409049890935421, + 0.002133114729076624, + 0.00898115523159504, + 0.013569432310760021, + -0.017976783215999603, + 0.005684687756001949, + -0.026386214420199394, + 0.006806427147239447, + 0.0017088438617065549, + 0.0001425921218469739, + 0.0008078335667960346, + -0.003111923113465309, + -0.006723201368004084, + -0.017614932730793953, + 0.004997169598937035, + -0.010841071605682373, + 0.00274826237000525, + -0.04081685096025467, + 0.03242189809679985, + -0.02437431924045086, + 0.004273466765880585, + 0.02912181057035923, + 0.005702780093997717, + 0.0324508436024189, + 0.020365003496408463, + 0.00449057761579752, + 0.013547721318900585, + -0.034071940928697586, + 0.0001027884500217624, + 0.022521639242768288, + -0.020408425480127335, + 0.0027048401534557343, + 0.005163621157407761, + 0.0017775956075638533, + 0.007323875091969967, + -0.004233662970364094, + -0.0022091036662459373, + 0.003039552830159664, + -0.01037790160626173, + 0.019149182364344597, + -0.009632487781345844, + -0.029729722067713737, + 0.0053373100236058235, + -0.0034701561089605093, + -0.020263684913516045, + -0.023679563775658607, + 0.02126239612698555, + 0.008134422823786736, + -0.0028423438780009747, + 0.009466036222875118, + 0.000564488407690078, + 0.00941537693142891, + -0.008807466365396976, + -0.014430639334022999, + -0.0015034930547699332, + -0.02365061640739441, + 0.0003466990019660443, + -0.004975458607077599, + -0.014264187775552273, + 0.009907495230436325, + -0.004031026270240545, + -0.012563484720885754, + -0.004125107545405626, + 0.024099312722682953, + -0.010674620047211647, + -0.016210949048399925, + 8.333892765222117e-5, + 0.014951705001294613, + -0.0338403545320034, + -0.00817060749977827, + 0.013127973303198814, + -0.0066797793842852116, + -0.01793336123228073, + 0.004801769740879536, + -0.023665091022849083, + 0.001228485954925418, + 0.005767913535237312, + -0.015545141883194447, + -0.032653480768203735, + 0.0027880659326910973, + 0.022912438958883286, + 0.01171675231307745, + 0.014734594151377678, + 0.0018508705543354154, + -0.0154872452840209, + 0.01228124089539051, + 0.0010575110791251063, + -0.015849096700549126, + -0.017484666779637337, + -0.02133476547896862, + 0.002630660543218255, + 0.0068643237464129925, + 0.013895099051296711, + 0.012961521744728088, + 0.02531513385474682, + -0.022449269890785217, + 0.004353073891252279, + -0.0004753824614454061, + -0.0019467612728476524, + -0.014329320751130581, + 0.01998867839574814, + -0.01858469471335411, + 0.03780624642968178, + -0.014394453726708889, + -0.006227464880794287, + -0.023780882358551025, + -0.007153804879635572, + -0.003457491286098957, + -0.017253080382943153, + 0.017180711030960083, + -0.008163370192050934, + 0.004993550945073366, + -0.005945220589637756, + -0.0013135210610926151, + 0.003571474691852927, + 0.010218687355518341, + 0.001167875831015408, + -0.0216242466121912, + -0.005525473039597273, + -0.00806205254048109, + 0.008177844807505608, + -0.020784752443432808, + 0.009046288207173347, + 0.013699699193239212, + 0.006784716155380011, + -0.005959694739431143, + 0.0006260031368583441, + -0.010616724379360676, + -0.00907523650676012, + 0.006270886864513159, + 0.01793336123228073, + -0.0338982529938221, + -0.008286399766802788, + 0.022883491590619087, + -0.01883075386285782, + 0.007088671438395977, + -0.0205676406621933, + -0.0005477527738548815, + 0.006520564667880535, + 0.010841071605682373, + 0.0014483107952401042, + 0.00026980554684996605, + -0.0010638434905558825, + 0.005384350661188364, + -0.00869167409837246, + 0.019872885197401047, + 0.005080395378172398, + 0.0461433082818985, + 0.004975458607077599, + -0.010081184096634388, + -0.010920679196715355, + -0.021421611309051514, + 0.0001068592828232795, + 0.006506090518087149, + 0.011058182455599308, + -0.016326740384101868, + -0.006071868818253279, + -0.013077314011752605, + -0.007902837358415127, + 0.009422614239156246, + 0.0070814345963299274, + -0.005257702898234129, + 0.01699254848062992, + -0.00587646896019578, + -0.007512037642300129, + -0.01314968429505825, + 0.02470722235739231, + 0.0006273600738495588, + -0.011543063446879387, + -0.0004084399261046201, + -0.01846890151500702, + 0.02933892235159874, + 0.0056991614401340485, + 0.006097198463976383, + -0.02904944121837616, + -0.003171628573909402, + 0.006498853676021099, + -0.012433218769729137, + 0.006838994100689888, + -0.0036040411796420813, + -0.000446886639110744, + 0.005373495165258646, + 0.020958440378308296, + -0.016818858683109283, + 0.004533999599516392, + -0.0017323641804978251, + 0.011470693163573742, + -0.0526566356420517, + 0.0015405828598886728, + 0.004208333324640989, + -0.0036655559670180082, + -0.01945313811302185, + 0.0019793277606368065, + 0.0072587416507303715, + 0.003347126767039299, + -0.025011178106069565, + 0.0071755158714950085, + -0.002062553772702813, + 0.019062338396906853, + -0.0109785757958889, + 0.006632738746702671, + 0.02933892235159874, + -0.002833297476172447, + 0.015038549900054932, + -0.010131842456758022, + -0.014083261601626873, + 0.0023773645516484976, + 0.009574591182172298, + -0.004154055379331112, + 0.008706147782504559, + 0.016457008197903633, + 0.00921997707337141, + -0.014806964434683323, + 0.010037761181592941, + -0.00849627424031496, + -0.025199340656399727, + -0.019583404064178467, + -0.0025076312012970448, + 0.007182752713561058, + 0.0019919925834983587, + -0.006122528109699488, + 0.007121237926185131, + -0.011130552738904953, + 0.015414875000715256, + -0.02191372960805893, + -0.02184135839343071, + -0.0054711950942873955, + -0.0030703102238476276, + 0.006383060943335295, + -0.00133613683283329, + 6.287170253926888e-5, + 0.0055435653775930405, + 0.002697603078559041, + 0.0032530452590435743, + -0.008286399766802788, + -0.00468235881999135, + 0.0187294352799654, + -0.023028232157230377, + -0.009408139623701572, + 0.014220764860510826, + 0.021320292726159096, + -0.004783677402883768, + 0.0036655559670180082, + 0.0006373110227286816, + 0.01622542180120945, + 0.008098237216472626, + 0.008423903957009315, + 0.0067919534631073475, + 0.011774648912250996, + -0.01926497556269169, + -0.010985812172293663, + -0.002739216201007366, + -0.015241186134517193, + -0.00903905089944601, + -0.033087704330682755, + -0.011058182455599308, + 0.00037700406392104924, + -0.007823229767382145, + 0.004458010662347078, + -0.04168529808521271, + 0.015834622085094452, + 0.01713728904724121, + 0.0021873924415558577, + 0.036532532423734665, + 0.009762754663825035, + 0.027934938669204712, + -0.002339370083063841, + -0.01796231046319008, + 0.01894654706120491, + 0.030048150569200516, + -0.005644883960485458, + 0.008112710900604725, + 0.014314846135675907, + 0.007700200658291578, + 0.015545141883194447, + -0.012013470754027367, + 0.00032634485978633165, + 0.010073946788907051, + -0.010645671747624874, + 0.020596589893102646, + -0.0018291594460606575, + -0.008431140333414078, + -0.013569432310760021, + -0.0027826381847262383, + 0.0018798187375068665, + -0.011644382029771805, + -0.007830467075109482, + -0.0025329606141895056, + 0.03499827906489372, + 0.0037524004001170397, + -0.0032693285029381514, + 0.010291057638823986, + -0.01619647443294525, + -0.006010354030877352, + 0.00023882201639935374, + -0.008090999908745289, + 0.022029520943760872, + -0.01933734491467476, + -0.02441774122416973, + -0.010652909055352211, + -0.004407351836562157, + -0.009871309623122215, + 0.017484666779637337, + 0.032798223197460175, + -0.0026234237011522055, + 0.010305531322956085, + -0.007678489666432142, + -0.007917311042547226, + -0.012787832878530025, + -0.007975207641720772, + 0.036677271127700806, + 0.016572799533605576, + 0.018917597830295563, + 0.0006006735493429005, + 0.0024479255080223083, + 0.0071465675719082355, + 0.01959787867963314, + -0.018671538680791855, + -0.014242475852370262, + -0.004222807474434376, + -0.019800515845417976, + 0.00583304651081562, + 0.01590699329972267, + 0.006108053959906101, + 0.021016336977481842, + -0.009632487781345844, + -0.010131842456758022, + -0.0013605616986751556, + 0.039572082459926605, + 0.006440957076847553, + 0.011832545511424541, + 0.01904786378145218, + 0.00654589431360364, + 0.0038971409667283297, + -0.002402694197371602, + -0.002143970225006342, + 0.026994124054908752, + 0.01600831188261509, + 0.014401691034436226, + -0.020379478111863136, + -0.010016050189733505, + -0.007960733957588673, + 0.00835153367370367, + 0.012527300044894218, + 0.003781348466873169, + -0.01615305244922638, + -0.010804886929690838, + 0.0058439020067453384, + 0.020582115277647972, + 0.0038247706834226847, + -0.00511658051982522 + ], + "b1dfac79-06c5-401c-ac7f-81564dc6e7df": [ + 0.007237785495817661, + -0.03262173384428024, + -0.011354275979101658, + 0.0005888778250664473, + -0.033009469509124756, + 0.021118823438882828, + -0.011199180036783218, + 0.01257565151900053, + 0.0017512855120003223, + 0.029985111206769943, + -0.009111854247748852, + 0.028227362781763077, + 0.028976989910006523, + -0.022462982684373856, + 0.007554438430815935, + 0.030140206217765808, + 0.008989070542156696, + 0.03934253379702568, + -0.02677980624139309, + -0.019710039719939232, + 0.02393638901412487, + -0.03326796367764473, + -0.04616672918200493, + -0.01435924880206585, + -0.015367369167506695, + -0.03151021525263786, + -0.0013207342708483338, + 0.00014378635387402028, + -0.03218229487538338, + -0.019231829792261124, + 0.006843584589660168, + -0.012691973708570004, + 0.000848985742777586, + 0.022243265062570572, + 0.008930910378694534, + -0.051155634224414825, + 0.010372004471719265, + -0.0009838864207267761, + -0.02494451031088829, + -0.006287825759500265, + -0.010688657872378826, + -0.0020453205797821283, + -0.009137704037129879, + -0.009266950190067291, + -0.014398022554814816, + 0.008006799966096878, + -0.05609283596277237, + -0.01835295557975769, + -0.001353045809082687, + -0.01804276555776596, + 0.02601725235581398, + 0.02910623699426651, + -0.02420780621469021, + -0.01505717821419239, + 0.05609283596277237, + -0.04226349666714668, + 0.02220449037849903, + 0.06498496979475021, + 0.004358827136456966, + -0.01616869494318962, + -0.001199565944261849, + -0.028175663203001022, + 0.042160097509622574, + -0.00846562348306179, + 0.023703746497631073, + -0.013170184567570686, + -0.024789415299892426, + -0.03499986231327057, + 0.004168188665062189, + 0.009803321212530136, + -0.0017787503311410546, + 0.05074204504489899, + -0.03652496635913849, + -0.01707341894507408, + 0.004145570565015078, + 0.01658228226006031, + 0.017228513956069946, + 0.01932230219244957, + 0.030450396239757538, + -0.02521592751145363, + 0.00020053349726367742, + 0.004226349759846926, + -0.030553793534636497, + 0.009389733895659447, + 0.046011634171009064, + 0.011024697683751583, + 0.005780534818768501, + -0.032001350075006485, + -0.020356271415948868, + -0.0030792898032814264, + 0.0001440892810933292, + 0.052292998880147934, + 0.010817904025316238, + -0.0005787804839201272, + 0.03215644508600235, + -0.037197045981884, + 0.03603383153676987, + 0.004122952464967966, + -0.017047569155693054, + -0.036240626126527786, + -0.01578095741569996, + -0.0009402658324688673, + 0.0024088253267109394, + -0.016453037038445473, + 0.00946728140115738, + -0.020860331133008003, + 0.01221376284956932, + -0.0006535009015351534, + -0.004394369665533304, + 0.04363350570201874, + -0.02171335555613041, + -0.05423169210553169, + 0.028563402593135834, + 0.02910623699426651, + -0.027322638779878616, + -0.022243265062570572, + -0.03171700984239578, + 0.007942176423966885, + -0.003116448177024722, + -0.022954119369387627, + 0.007237785495817661, + -0.0003794586518779397, + 0.00328285270370543, + 0.036550816148519516, + -0.0276845283806324, + 0.01724143885076046, + -0.003932314459234476, + 0.02601725235581398, + 0.023703746497631073, + 0.05061279982328415, + -0.028460005298256874, + -0.0028724961448460817, + 0.008232980966567993, + -0.020666461437940598, + 0.0028951140120625496, + 0.01831418089568615, + 0.011225029826164246, + 0.062244951725006104, + -0.003064749762415886, + 0.006048720329999924, + -0.02546149492263794, + -0.01602652482688427, + -0.04495181515812874, + 0.014385098591446877, + 0.007780618965625763, + -0.00013752600352745503, + -0.030579643324017525, + 0.06565704941749573, + -0.0017399764619767666, + -0.010443090461194515, + -0.029157934710383415, + -0.002565536415204406, + -0.0035704253241419792, + -0.011334888637065887, + 0.05345621332526207, + 0.01862437278032303, + -0.005764379166066647, + 0.04146216809749603, + -0.003242463106289506, + 0.04329746589064598, + 0.05505886673927307, + -0.03730044513940811, + 0.017021719366312027, + 0.026598861441016197, + 0.03476721793413162, + 0.02962322160601616, + 0.052990928292274475, + 0.02809811569750309, + -0.028537552803754807, + 0.019890984520316124, + -0.008665955625474453, + -0.011270266026258469, + 0.015328595414757729, + -0.013609621673822403, + 0.006549549289047718, + -0.017978141084313393, + 0.05019921064376831, + 0.005573740694671869, + 0.020666461437940598, + -0.03063134104013443, + -0.03176870569586754, + -0.015121801756322384, + 0.045572198927402496, + 0.008226518519222736, + -0.021222220733761787, + 0.04880335181951523, + 0.011767863295972347, + 0.0013449678663164377, + -0.03996291384100914, + -0.0012561111943796277, + 0.0036802846007049084, + -0.019477397203445435, + 0.009609452448785305, + 0.0017512855120003223, + 0.002752943430095911, + -0.03073473833501339, + -0.01606529764831066, + 0.015083027072250843, + -0.0004121740930713713, + 0.005237700883299112, + -0.03461212292313576, + -0.014217078685760498, + -0.00118179467972368, + 0.026650559157133102, + -0.016569359228014946, + 0.04066084325313568, + 0.006429996807128191, + -0.037584785372018814, + 0.034637972712516785, + -0.028046417981386185, + 0.040428198873996735, + -0.020175326615571976, + -0.009234638884663582, + 0.004042173735797405, + -0.00578376604244113, + 0.022191567346453667, + 0.02612064965069294, + -0.00822005607187748, + -0.017745498567819595, + -0.04110028222203255, + 0.0189733374863863, + -0.006161810830235481, + -0.01761625148355961, + -0.025409795343875885, + -0.03551684692502022, + 0.004475148394703865, + -0.036059681326150894, + 0.05022506043314934, + -0.04389199614524841, + -0.02737433835864067, + 0.02747773565351963, + 0.0026236972771584988, + 0.021067125722765923, + 0.01189710944890976, + 0.012717822566628456, + 0.012562727555632591, + 0.041927456855773926, + 0.0005501040141098201, + -0.001953232567757368, + -0.003082521026954055, + -0.004355595912784338, + 0.008291141130030155, + -0.013674244284629822, + -0.011296114884316921, + 0.00347349070943892, + 0.034534577280282974, + -0.02861510030925274, + 0.05224129930138588, + -0.01563878543674946, + -0.0007617445662617683, + 0.00940265879034996, + 0.040919337421655655, + 0.004500997718423605, + 0.008711191825568676, + -0.0026915513444691896, + 0.031174175441265106, + 0.04342671111226082, + -0.04004046320915222, + 0.010960075072944164, + -0.02521592751145363, + 0.0018239865312352777, + 0.0015170269180089235, + 0.006843584589660168, + 0.0029904332477599382, + 0.04371105507016182, + 0.022398360073566437, + 0.017474081367254257, + 0.009661151096224785, + 0.008872749283909798, + 0.06829367578029633, + -0.024866962805390358, + -0.031070778146386147, + -0.028976989910006523, + -0.0021664889063686132, + -0.030863983556628227, + 0.02185552753508091, + 0.009622377343475819, + 0.005554353818297386, + -0.01662105694413185, + -0.02060183882713318, + 0.0026899357326328754, + -0.0011405973928049207, + 0.0023781294003129005, + 0.015083027072250843, + 0.020627688616514206, + 0.019852211698889732, + -0.037972524762153625, + -0.03176870569586754, + -0.049863170832395554, + -0.00895029678940773, + 0.0002249691024189815, + -0.013971510343253613, + -0.010992386378347874, + 0.03582703694701195, + -0.0023005816619843245, + -0.02078278362751007, + -0.020304571837186813, + -0.02119637094438076, + -0.010294456966221333, + 0.02389761619269848, + -0.022217415273189545, + -0.019865136593580246, + -0.019037960097193718, + -0.02414318360388279, + 0.011205642484128475, + -0.024156108498573303, + 0.03293192386627197, + 0.022631004452705383, + -0.028847744688391685, + -0.0005690870457328856, + 0.03233738988637924, + -0.013073249720036983, + -0.029597371816635132, + 0.017512856051325798, + 0.01557416282594204, + 0.032285694032907486, + -0.02900283969938755, + 0.008181282319128513, + -0.018818242475390434, + -0.002743249759078026, + -0.00945435743778944, + -0.020563064143061638, + -0.03967857360839844, + 0.0038030685391277075, + 0.029054537415504456, + -0.05443848669528961, + 0.03877384960651398, + -0.0284858550876379, + -0.02799472026526928, + -0.02220449037849903, + -0.00997134204953909, + -0.0059356302954256535, + 0.0018950719386339188, + 0.009951954707503319, + -0.03293192386627197, + -0.05991852283477783, + -0.03657666593790054, + -0.011005311273038387, + -0.022178642451763153, + -0.015328595414757729, + -0.016530584543943405, + -0.03833441436290741, + 0.005499424412846565, + -0.022049395367503166, + -0.019128432497382164, + -0.023225536569952965, + 0.018404653295874596, + 0.04272878170013428, + 0.02084740623831749, + -0.007334719877690077, + 0.0006559243192896247, + 0.03125172108411789, + 0.03613722696900368, + -0.017706723883748055, + 0.03841196000576019, + 0.012058666907250881, + -0.012207300402224064, + -0.01740945875644684, + 0.0031697622034698725, + -0.008258829824626446, + -9.299665543949232e-5, + -0.03052794374525547, + -0.010934225283563137, + -0.03334550932049751, + -0.02327723428606987, + 0.031303420662879944, + -0.026547161862254143, + -0.011729089543223381, + -0.036163076758384705, + 0.006258745677769184, + -0.03714534640312195, + -0.005124610383063555, + -0.02539687231183052, + -0.03326796367764473, + 0.015393218025565147, + -0.05769548937678337, + 0.02115759812295437, + -0.02424658089876175, + -0.028847744688391685, + 0.019037960097193718, + 0.006433228030800819, + 0.017564553767442703, + -0.009932568296790123, + -0.022799024358391762, + 0.048519011586904526, + 0.05193110927939415, + -0.020278723910450935, + -0.007392880506813526, + -0.013137872330844402, + -0.010372004471719265, + 0.0020420893561095, + 0.033112868666648865, + -0.02983001433312893, + 0.018688995391130447, + 0.009686999954283237, + -0.01744823157787323, + -0.00040066312067210674, + 0.017512856051325798, + 0.023251384496688843, + 0.0005589896463789046, + 0.020136551931500435, + -0.01707341894507408, + -0.002507375553250313, + -0.022139867767691612, + -0.007199011277407408, + -0.0268832016736269, + -0.002318353159353137, + -0.012420556508004665, + 0.022592229768633842, + -0.02245005965232849, + 0.04045404866337776, + -0.02615942433476448, + 0.0025881545152515173, + 0.0171380415558815, + 0.029132084921002388, + 0.025073755532503128, + -0.00041035658796317875, + 0.03166531026363373, + -0.02379421889781952, + -0.010391391813755035, + 0.04024725779891014, + 0.02667640894651413, + 0.02241128496825695, + 0.002668933244422078, + -0.015302745625376701, + -0.004885504953563213, + -0.024362903088331223, + -0.011302577331662178, + -0.0411519780755043, + -0.009228176437318325, + 0.016362564638257027, + 0.04714900255203247, + -0.024272430688142776, + 0.015070103108882904, + -0.0164788868278265, + 0.002644699765369296, + 0.009079542942345142, + -0.01148352213203907, + -0.01952909491956234, + 0.0197746641933918, + 0.021597033366560936, + 0.03249248489737511, + -0.003095445688813925, + -0.005208620335906744, + -0.025345172733068466, + -3.1907646189210936e-5, + -0.019193055108189583, + 0.010766205377876759, + 0.047536738216876984, + -0.03153606504201889, + -0.018159085884690285, + -0.00592270540073514, + -0.04422803968191147, + -0.02566828764975071, + 0.0048596556298434734, + -0.01866314560174942, + 0.029855864122509956, + 0.01936107501387596, + 0.01866314560174942, + -0.0458565391600132, + -0.00208086334168911, + 0.0013312355149537325, + -1.4300381735665724e-5, + -0.0071602375246584415, + 0.04076424241065979, + -0.01672445423901081, + -0.007851704955101013, + 0.024957435205578804, + -0.007800006307661533, + -0.005266781430691481, + -0.0003515899588819593, + 0.0022650391329079866, + -0.029235482215881348, + 0.04239274188876152, + 0.01734483614563942, + -0.00973223615437746, + 0.002370051573961973, + -0.011212104931473732, + 0.015496615320444107, + -0.029674919322133064, + 0.0031051391270011663, + 0.019606642425060272, + -0.007192549295723438, + 0.006869433913379908, + 0.015251047909259796, + 0.0022036470472812653, + -0.018844090402126312, + -0.05469697713851929, + 0.007974488660693169, + -0.016556434333324432, + 0.002956506097689271, + 0.007108539342880249, + -0.010307381860911846, + -0.0007718419656157494, + 0.01703464426100254, + -0.031096627935767174, + 0.01510887686163187, + -0.0021099436562508345, + 0.0011632154928520322, + 0.008013262413442135, + 0.04430558532476425, + -0.02432412840425968, + 0.0262240469455719, + -0.010481864213943481, + -0.0001023367076413706, + 0.055524151772260666, + 0.028976989910006523, + 0.023677896708250046, + 0.008265292271971703, + -0.01658228226006031, + -0.024750640615820885, + 0.017125116661190987, + -0.012607963755726814, + -0.0035930434241890907, + 0.00258007668890059, + -0.025965554639697075, + -0.015186424367129803, + -0.005502655636519194, + 0.029442276805639267, + -0.011373662389814854, + 0.0022957350593060255, + -9.188594412989914e-5, + -0.008698266930878162, + 0.0013231575721874833, + -0.00174967001657933, + 0.0009669229038991034, + -0.00174967001657933, + -0.02789132297039032, + 0.008161894977092743, + -0.029752466827630997, + -0.01890871487557888, + -0.004885504953563213, + -0.0303211510181427, + 0.005806384142488241, + 0.0019516170723363757, + 0.007257172372192144, + -0.0008049612515605986, + -0.022540532052516937, + 0.028744347393512726, + -0.0020905567798763514, + -0.0398336686193943, + 0.03094153292477131, + 0.0013700093841180205, + 0.007935714907944202, + -0.0024346746504306793, + 0.01063049677759409, + 0.001353853615000844, + 0.032104749232530594, + -0.023962238803505898, + 0.0063072131015360355, + -0.043452560901641846, + 0.009473743848502636, + -0.013137872330844402, + -0.01890871487557888, + -0.00405832938849926, + -0.00986794475466013, + -0.000899876409675926, + 0.0031067547388374805, + -0.012174989096820354, + -0.009997190907597542, + -0.02962322160601616, + -0.013919811695814133, + -0.017435308545827866, + 0.01765502616763115, + -0.009699924848973751, + -0.013700093142688274, + -0.02564243972301483, + 0.0059194741770625114, + -0.007347644306719303, + 0.015367369167506695, + 0.052990928292274475, + -0.0032780058681964874, + 0.03383664786815643, + 0.0035413450095802546, + -0.0005052717169746757, + 0.02257930487394333, + 0.007218398153781891, + -0.006856509018689394, + -0.029649069532752037, + 0.011057009920477867, + 0.03887724503874779, + 0.014721138402819633, + -0.007451041601598263, + -0.016000675037503242, + 0.02012362889945507, + 0.026353294029831886, + -0.02115759812295437, + -0.004177882336080074, + -0.029985111206769943, + 0.036550816148519516, + 0.018895789980888367, + 0.0254227202385664, + -0.009208789095282555, + -0.011767863295972347, + 0.0038741538301110268, + 0.022294962778687477, + 0.031484365463256836, + 0.005331404507160187, + 0.024621395394206047, + 0.014333399944007397, + 0.03688685595989227, + 0.020588913932442665, + -0.010378466919064522, + -0.02667640894651413, + -0.020033156499266624, + 0.0009022997692227364, + -0.006953443866223097, + 0.007483352907001972, + 0.0111345574259758, + -0.011166868731379509, + -0.0056739067658782005, + -0.01516057550907135, + 0.058987949043512344, + -0.0022941194474697113, + 0.011373662389814854, + -0.005017982330173254, + -0.00147421401925385, + -0.0009523826884105802, + 0.02484111301600933, + -0.04492596536874771, + 0.029054537415504456, + -0.019490322098135948, + 0.07997752726078033, + -0.013958585448563099, + 0.014617741107940674, + -0.016595207154750824, + -0.03730044513940811, + -0.016362564638257027, + -0.016957096755504608, + 0.006720800418406725, + -0.0164788868278265, + 0.012956928461790085, + 0.0017932906048372388, + -0.01806861348450184, + 0.02428535372018814, + -0.012969852425158024, + 0.015199349261820316, + 0.010171673260629177, + -0.021183446049690247, + -0.01938692480325699, + 0.008129583671689034, + 0.014385098591446877, + -0.008310528472065926, + 0.023044591769576073, + -0.01664690673351288, + 0.03497401252388954, + 0.013622545637190342, + -0.025513192638754845, + 0.02521592751145363, + 0.01265966147184372, + -0.03885139897465706, + 0.019089657813310623, + 0.003315164241939783, + 0.0004963860264979303, + 0.012058666907250881, + -0.004578545223921537, + 0.00740580540150404, + 0.009790397249162197, + 0.00953836739063263, + 0.0064623081125319, + 0.0035575006622821093, + -0.03021775372326374, + 0.02698659896850586, + 0.018986262381076813, + 0.007444579154253006, + -0.006035795900970697, + -0.010779130272567272, + 0.014527268707752228, + 0.03528420254588127, + 0.014217078685760498, + 0.003644741838797927, + -0.005221545230597258, + -0.02820151299238205, + -0.0018983030458912253, + -0.005938861519098282, + -0.006785423494875431, + 0.019658342003822327, + -0.012691973708570004, + -0.009493131190538406, + -0.022669777274131775, + 0.0067595746368169785, + -0.05053525045514107, + -0.0046431683003902435, + 0.017060494050383568, + -0.023328932002186775, + -0.008064961060881615, + 0.01835295557975769, + -0.013609621673822403, + -0.03275097906589508, + -0.00014439219376072288, + -0.003531651571393013, + 0.005667444318532944, + 0.002854724647477269, + 0.0353100523352623, + 0.0020469361916184425, + 0.006339524406939745, + 0.00548973074182868, + -0.030295301228761673, + 0.012620887719094753, + 0.01689247414469719, + -0.045572198927402496, + -0.01019752211868763, + -0.009544828906655312, + -0.005722374189645052, + -0.0025461495388299227, + 0.03649911656975746, + -0.01592312753200531, + -0.02420780621469021, + 0.01967126689851284, + 0.00037138076731935143, + -0.008039111271500587, + -0.01481161080300808, + -0.0015283358516171575, + 0.006766036618500948, + -0.01952909491956234, + 0.0021988004446029663, + -0.04815712198615074, + 0.0287184976041317, + 0.004223118536174297, + 0.04024725779891014, + -0.027839623391628265, + 0.020059004426002502, + -0.030889833346009254, + -0.012549802660942078, + -0.010048889555037022, + 0.03350060433149338, + -0.012427018955349922, + -0.023755446076393127, + 0.03184625506401062, + -0.009842095896601677, + 0.03213059529662132, + 0.00732825743034482, + 0.024401675909757614, + 0.005370178259909153, + 0.0015663019148632884, + -0.052163753658533096, + -0.0048047262243926525, + 0.01983928680419922, + 0.0251900777220726, + -0.016957096755504608, + 0.007677222136408091, + 0.023755446076393127, + -0.003051825100556016, + -0.039911214262247086, + 0.04353011026978493, + -0.011942345649003983, + 0.027529433369636536, + 0.001640618545934558, + -0.02531932294368744, + 0.0005416222265921533, + 0.025306399911642075, + -0.02972661890089512, + 0.03916158899664879, + 0.018275408074259758, + -0.014423872344195843, + 7.487190305255353e-5, + 0.022398360073566437, + 0.012375320307910442, + 0.0015937667340040207, + 0.04963052645325661, + -0.006274901330471039, + -0.0037836814299225807, + -0.02972661890089512, + 0.02737433835864067, + -0.026288669556379318, + 0.013674244284629822, + 0.006135961506515741, + -0.02574583701789379, + 0.019141357392072678, + -0.009241100400686264, + 0.020162401720881462, + -0.004601163323968649, + 0.010236295871436596, + 0.007955101318657398, + -0.02910623699426651, + -0.019865136593580246, + 0.008355764672160149, + -0.020756933838129044, + -0.021726280450820923, + -0.001634156215004623, + -0.03001095913350582, + -0.018572673201560974, + 0.021312693133950233, + 0.0008178859134204686, + 0.03468967229127884, + -0.0017318986356258392, + 0.024569695815443993, + -0.034017592668533325, + -0.027219243347644806, + -0.009111854247748852, + 0.013932736590504646, + -0.007095614448189735, + 0.0197746641933918, + 0.047123152762651443, + 0.03523250296711922, + 0.0016850469401106238, + 0.003657666500657797, + 0.02070523612201214, + -0.027038298547267914, + 0.006433228030800819, + -0.002113174879923463, + -0.027813775464892387, + 0.04009215906262398, + 0.03122587315738201, + -0.00616504205390811, + -0.018533900380134583, + -0.027813775464892387, + 0.019658342003822327, + -0.01998145692050457, + 0.021571185439825058, + 0.0006773307104595006, + 0.010313844308257103, + 0.0009241100633516908, + 0.02268270216882229, + -0.026598861441016197, + -0.01738360896706581, + 0.005215082783252001, + -0.011018235236406326, + 0.05043185502290726, + 0.008161894977092743, + 0.004581776447594166, + -0.020239949226379395, + 0.015263971872627735, + 0.02257930487394333, + 0.02366497367620468, + -0.015806805342435837, + 0.019128432497382164, + 0.01435924880206585, + -0.011981119401752949, + -0.028744347393512726, + -0.013725942932069302, + -0.037688180804252625, + -0.03174285963177681, + -0.0011632154928520322, + 0.0075415135361254215, + 0.013034475967288017, + -0.024569695815443993, + -0.005945323500782251, + -0.03678346052765846, + 0.03846365958452225, + -0.008717654272913933, + -0.056247930973768234, + -0.018365880474448204, + -0.031096627935767174, + -0.016427187249064445, + 0.021661657840013504, + 0.025900932028889656, + 0.015832655131816864, + -0.0013764717150479555, + 0.06084909662604332, + 0.025138380005955696, + 0.019335227087140083, + 0.0247635655105114, + 0.027451885864138603, + -0.0590396486222744, + 0.008859824389219284, + 0.018508050590753555, + -0.008452699519693851, + 0.011606305837631226, + 0.031484365463256836, + 0.04443483054637909, + 0.010191060602664948, + -0.017952293157577515, + -0.023923465982079506, + 0.009771009907126427, + 0.00042166560888290405, + -0.0010299304267391562, + 0.029493974521756172, + -0.001252072281204164, + 0.035129107534885406, + -0.005286168307065964, + 0.004349133465439081, + 0.01064988411962986, + 0.023703746497631073, + -0.009060156531631947, + -0.02175213024020195, + 0.004471917171031237, + -0.0003408867632970214, + -0.034327782690525055, + 0.027710378170013428, + 0.007942176423966885, + -0.020110704004764557, + 0.04738164320588112, + -0.0017222051974385977, + -0.017680875957012177, + 0.0032036893535405397, + -0.009176477789878845, + 0.009829171001911163, + -0.014669439755380154, + 0.009674075059592724, + -0.021881375461816788, + -0.00023446061823051423, + -0.015768032521009445, + -0.04663201794028282, + -0.024091485887765884, + -0.00775477010756731, + -0.024375826120376587, + -0.011780788190662861, + -0.0035348825622349977, + 0.029235482215881348, + 0.01156753208488226, + -0.025888007134199142, + -0.004652861971408129, + -0.00508260540664196, + 0.01592312753200531, + -0.014204153791069984, + 0.012006969191133976, + -0.018585598096251488, + 0.04120367765426636, + -1.889467785076704e-5, + 0.030140206217765808, + 0.011638617143034935, + 0.00648815743625164, + -0.006161810830235481, + 0.009131241589784622, + 0.03476721793413162, + -0.0022375741973519325, + -0.039213284850120544, + 0.008523784577846527, + 0.0013611236354336143, + 0.03732629120349884, + 0.011645079590380192, + 0.005234469659626484, + 0.005709449294954538, + -0.014320475049316883, + 0.004420218989253044, + -0.022217415273189545, + 0.006623866036534309, + -0.01991683430969715, + 0.002056629629805684, + -0.006249052006751299, + 0.0047594900242984295, + -0.002526762429624796, + 0.0007649757317267358, + 0.009047231636941433, + 0.002699629170820117, + -0.01765502616763115, + -0.014837459661066532, + -0.013312354683876038, + 0.005069680977612734, + -0.01224607415497303, + -0.014734063297510147, + 0.02181675285100937, + 0.006003484595566988, + -0.0014394791796803474, + -0.006281363777816296, + -0.014927932061254978, + 0.0057191429659724236, + 0.014087831601500511, + 0.024517998099327087, + -0.01516057550907135, + 0.028976989910006523, + -0.008607794530689716, + 0.018262483179569244, + -0.021597033366560936, + -0.00344764138571918, + -0.0047594900242984295, + 0.0009443048038519919, + -0.024892810732126236, + -0.011838948354125023, + 0.009318648837506771, + -0.02348402887582779, + -0.007644910831004381, + -0.005366947036236525, + -0.036240626126527786, + 0.010811441577970982, + -0.0042877416126430035, + -0.0038030685391277075, + -0.019697114825248718, + -0.01938692480325699, + -0.009357422590255737, + -0.0023215841501951218, + -0.0222691148519516, + 0.034534577280282974, + -0.01956786960363388, + -0.017357759177684784, + -0.02993341162800789, + 0.006785423494875431, + -0.018779467791318893, + -0.007664297707378864, + 0.036163076758384705, + 0.0013481990899890661, + -0.007916327565908432, + -0.0005989752244204283, + -0.008297603577375412, + 0.02820151299238205, + 0.031122475862503052, + 0.00940265879034996, + -0.0011325195664539933, + 0.0013385056518018246, + 0.0072313230484724045, + -0.021739205345511436, + -0.020795708522200584, + 0.003421792294830084, + 0.010714506730437279, + 0.0013845495413988829, + -0.031200025230646133, + -0.0063556800596416, + -0.010100588202476501, + -0.02858925238251686, + 0.022049395367503166, + 0.01810738816857338, + -0.03549099713563919, + 0.01216206420212984, + 0.012821219861507416, + -0.00023668204084970057, + -0.01744823157787323, + -0.0019112277077510953, + -0.0077741569839417934, + 0.03892894461750984, + -0.02261807955801487, + -0.008310528472065926, + -0.009512517601251602, + 0.004488073289394379, + -0.00041257799603044987, + 0.007560900878161192, + 0.037688180804252625, + -0.005641594994813204, + -0.004009862430393696, + 0.028227362781763077, + 0.015832655131816864, + -0.008833975531160831, + 0.010585260577499866, + -0.008452699519693851, + -0.014772837050259113, + 0.007580287754535675, + 0.02053721621632576, + 0.0031972271390259266, + 0.0017480544047430158, + 0.0032408474944531918, + -0.023005817085504532, + 0.004281279165297747, + 0.0015283358516171575, + 0.01097946148365736, + 0.009725773707032204, + -0.006694951560348272, + -0.00020760165352839977, + -0.06756989657878876, + -0.014695288613438606, + -0.021971847862005234, + 0.007864628918468952, + 0.012459330260753632, + -0.015444916673004627, + 0.002006546827033162, + -0.0033894807565957308, + -0.025655364617705345, + 0.006152117624878883, + 0.023613274097442627, + -5.503059219336137e-5, + 0.0028369533829391003, + 0.017603328451514244, + 0.00224565202370286, + -0.023406481370329857, + -0.024569695815443993, + 0.006837122142314911, + -0.006953443866223097, + -0.02525470033288002, + -0.01983928680419922, + -6.214922905201092e-5, + 0.030140206217765808, + -0.005098761059343815, + -0.027348488569259644, + 0.003948470577597618, + -0.01344160083681345, + 0.01486330945044756, + -0.027038298547267914, + -0.015651710331439972, + 0.027115846052765846, + 0.012640275061130524, + 0.009098930284380913, + -0.04104858264327049, + -0.014398022554814816, + 0.016039449721574783, + 0.001046893885359168, + -0.014488494955003262, + 0.03272512927651405, + 0.018081538379192352, + 0.014010284096002579, + 0.003845073515549302, + -0.007237785495817661, + -0.022799024358391762, + -0.01419122889637947, + -0.006707875989377499, + 0.007670760154724121, + -0.04474502429366112, + 0.01516057550907135, + 0.012530415318906307, + 0.030140206217765808, + -0.014682364650070667, + 0.0020404737442731857, + -0.0019176900386810303, + 0.00024475992540828884, + 0.015276896767318249, + -0.007289483677595854, + -0.0006543087074533105, + -0.009997190907597542, + 0.0036479730624705553, + 0.03094153292477131, + 0.017293136566877365, + -0.01394566148519516, + -0.008077885024249554, + -0.006549549289047718, + 0.009073080494999886, + 0.013855189085006714, + 0.004446068312972784, + 0.018029840663075447, + -0.006934056989848614, + 0.0015986135695129633, + -0.0008514091023243964, + -0.011703240685164928, + 0.026081876829266548, + 0.01132842618972063, + 0.008530247025191784, + 0.01890871487557888, + 0.01097946148365736, + -0.020472591742873192, + -0.010643421672284603, + -0.019335227087140083, + 0.005518811289221048, + 0.006258745677769184, + 0.009363885037600994, + -0.007127926219254732, + -0.022437134757637978, + -0.019296452403068542, + 0.014139530248939991, + -0.038980644196271896, + 0.004455761518329382, + 0.007877553813159466, + 0.04236689209938049, + 0.004342671018093824, + 0.009602990001440048, + -0.035025712102651596, + 0.028072267770767212, + -0.033319663256406784, + -0.002521915826946497, + -0.017823046073317528, + 0.013764716684818268, + -0.011141019873321056, + -0.012931078672409058, + 0.0188311655074358, + -0.030786436051130295, + -0.01773257367312908, + 0.01342867687344551, + 0.011890647001564503, + -0.0014136299723759294, + 0.004194037988781929, + -0.010281532071530819, + -0.02463431842625141, + 0.04353011026978493, + -0.0014443258987739682, + 0.01550954021513462, + -0.005525273736566305, + 0.006058414001017809, + -0.00389354070648551, + -0.031174175441265106, + -0.005580203142017126, + 0.0013805106282234192, + -0.008433312177658081, + 0.024272430688142776, + -0.025939704850316048, + -0.015793882310390472, + 0.010081200860440731, + -0.005522042512893677, + -0.0023474334739148617, + 0.004239274188876152, + 0.0021115592680871487, + 0.008006799966096878, + -0.02241128496825695, + -0.006707875989377499, + -0.014475570991635323, + -0.012045742943882942, + 0.0007698224508203566, + 0.0016486963722854853, + 0.014591892249882221, + 0.006090725772082806, + 0.019503246992826462, + -0.012847068719565868, + 0.015470766462385654, + 0.024505073204636574, + -0.013176647014915943, + -0.0035736565478146076, + -0.01592312753200531, + 0.02029164880514145, + -0.007308870553970337, + -0.0018724538385868073, + -0.0243887510150671, + 0.005932399071753025, + -0.013389903120696545, + 0.017189739271998405, + 0.02591385692358017, + 0.025900932028889656, + 0.013932736590504646, + -0.03223399445414543, + 0.0005973596125841141, + 0.0035768875386565924, + 0.020110704004764557, + 0.026624709367752075, + -0.006901745218783617, + -0.008013262413442135, + -0.014746987260878086, + 0.010636959224939346, + 0.016556434333324432, + -0.014488494955003262, + -0.0073670316487550735, + 0.009738698601722717, + -0.039394229650497437, + -0.013325279578566551, + 0.018714845180511475, + 0.01627209223806858, + -6.230069266166538e-5, + -0.00905369408428669, + 0.001475021825172007, + -0.015910202637314796, + -0.013415751978754997, + -0.030269451439380646, + 0.0047045606188476086, + 0.014746987260878086, + -0.011696778237819672, + 0.03507740795612335, + -0.009932568296790123, + 0.011225029826164246, + 0.015600012615323067, + 0.02126099355518818, + -0.0031584531534463167, + -0.014746987260878086, + -0.028873592615127563, + 0.027529433369636536, + 0.008562558330595493, + -0.016349639743566513, + -0.026249896734952927, + 0.0033927117474377155, + -0.0016083070077002048, + -0.011477059684693813, + -0.0011801790678873658, + 0.0012528799707069993, + -0.006433228030800819, + 0.008181282319128513, + -0.0018336799694225192, + -0.022992892190814018, + 0.015871429815888405, + -0.006077800877392292, + -0.005476806312799454, + -0.0229282695800066, + -0.0295198243111372, + 0.02033042162656784, + 0.012685511261224747, + -0.03479306772351265, + 0.022941194474697113, + -0.0008506013546139002, + 0.01862437278032303, + -0.015070103108882904, + 0.006087494548410177, + -0.0022828103974461555, + 0.006232896354049444, + -0.014721138402819633, + -0.0025299936532974243, + -0.012530415318906307, + 0.02511253021657467, + -0.02129976823925972, + 0.030166054144501686, + -0.009861482307314873, + 0.013583771884441376, + 0.005198927130550146, + 0.02313506416976452, + -0.0031875334680080414, + -0.005929167848080397, + -0.007166699972003698, + -0.010287994518876076, + -0.011005311273038387, + -0.035335902124643326, + -0.024543846026062965, + -0.021273918449878693, + -0.0056286705657839775, + 0.05226714909076691, + -0.00632336875423789, + 0.021493637934327126, + 0.004048636183142662, + -0.01379056554287672, + -0.0007900171913206577, + 0.011360738426446915, + 0.008148971013724804, + 0.023367706686258316, + 0.00597440404817462, + -0.016530584543943405, + -0.0020016999915242195, + 0.02646961435675621, + 0.017112191766500473, + -0.000762956275139004, + -0.0295198243111372, + -0.01434632483869791, + -0.0023442022502422333, + -0.016776151955127716, + -0.03357815369963646, + 0.056247930973768234, + 0.0002164873294532299, + 0.019554944708943367, + -0.006475233007222414, + -0.013150797225534916, + -0.004788570571690798, + 0.00822005607187748, + -0.03236323967576027, + 0.0077483076602220535, + -0.015651710331439972, + 0.008717654272913933, + 0.04720069840550423, + 0.020563064143061638, + 0.005059987306594849, + -0.002465370576828718, + 0.020976653322577477, + 0.006265207659453154, + 0.008258829824626446, + -0.004368520341813564, + -0.02466016821563244, + -9.26432494452456e-6, + 0.003318395232781768, + -0.008556095883250237, + 0.0004559966328088194, + -0.03001095913350582, + 0.012601501308381557, + -0.01500547956675291, + 0.014630666002631187, + 0.012019893154501915, + 0.011147481389343739, + -0.007741845212876797, + -0.02282487228512764, + 0.002846646821126342, + 9.299665543949232e-5, + 0.05162091925740242, + 0.019037960097193718, + 0.006714338436722755, + 0.011664466001093388, + 0.008717654272913933, + 0.0014774452429264784, + 0.006475233007222414, + 0.019451547414064407, + 0.02597847953438759, + 0.014837459661066532, + 0.026301594451069832, + 0.002006546827033162, + -0.027529433369636536, + -0.01717681623995304, + -0.0007217590464279056, + -0.00012389456969685853, + 0.025991404429078102, + 0.0032715436536818743, + -0.002841799985617399, + -0.0017222051974385977, + 0.021493637934327126, + 0.004772414453327656, + -0.023574501276016235, + -0.02234666235744953, + 0.0010000421898439527, + 0.018236633390188217, + 0.013247732073068619, + 0.010727431625127792, + -0.006727262865751982, + -0.027762075886130333, + 0.00651400675997138, + 0.038903094828128815, + 0.012911692261695862, + -0.008956759236752987, + -0.042754631489515305, + -0.029597371816635132, + 0.007871091365814209, + 0.013971510343253613, + 0.008426849730312824, + -0.01765502616763115, + -0.011089321225881577, + 0.000932187947910279, + -0.006669102236628532, + -0.0015485306503251195, + 0.009939029812812805, + -0.008329915814101696, + -0.0090860053896904, + 0.0117937121540308, + 0.01342867687344551, + -0.0033927117474377155, + 0.016052374616265297, + 0.00811665877699852, + 0.014979630708694458, + -0.007903402671217918, + 0.01267904881387949, + 0.02861510030925274, + -0.007050378248095512, + 0.03957517445087433, + 0.002801410621032119, + -0.007108539342880249, + -0.0003903637989424169, + -0.019722964614629745, + 0.011722627095878124, + 0.010081200860440731, + -0.004252199083566666, + 0.013829339295625687, + 0.015936052426695824, + 0.0057029868476092815, + -0.04311652109026909, + -0.0268832016736269, + -0.001993622165173292, + -0.003395942971110344, + -0.007909865118563175, + 0.015225198119878769, + -0.025332247838377953, + -2.0724824935314246e-5, + 0.00578376604244113, + -0.015948977321386337, + 0.0012779214885085821, + -0.011315502226352692, + 0.012517491355538368, + -0.012052205391228199, + 0.0013570847222581506, + -0.0014968321193009615, + 0.011199180036783218, + 0.011057009920477867, + -0.01893456280231476, + 0.030993230640888214, + -0.007935714907944202, + -0.02397516369819641, + -0.0014402869855985045, + 0.003521957900375128, + -0.03985951840877533, + -0.023496953770518303, + -0.023354781791567802, + -0.003315164241939783, + -0.023652048781514168, + 0.025539042428135872, + -0.009260487742722034, + -0.006581861060112715, + -0.012465792708098888, + -0.010552949272096157, + 0.00035865811514668167, + 0.02980416640639305, + 0.023044591769576073, + 0.005072912201285362, + -0.013687169179320335, + -0.011968194507062435, + -0.05162091925740242, + -0.005790228024125099, + -0.030657190829515457, + 0.027710378170013428, + -0.0027044760063290596, + 0.03962687402963638, + -0.027245091274380684, + 0.016039449721574783, + 0.015535389073193073, + 0.022256189957261086, + 0.0027497122064232826, + -0.02487988770008087, + 0.0030857522506266832, + 0.016078222543001175, + -0.006701413542032242, + -0.009551291354000568, + -0.01946447230875492, + 0.005234469659626484, + -0.010048889555037022, + -0.0036544352769851685, + 0.016814926639199257, + -0.0036091990768909454, + -0.007909865118563175, + 0.004775645677000284, + -0.01627209223806858, + -0.02789132297039032, + -0.038282714784145355, + 0.004113259259611368, + -0.011593380942940712, + 0.011212104931473732, + -0.02321261167526245, + -0.04084178805351257, + 0.005189233459532261, + 0.0036608977243304253, + 0.020459668710827827, + 0.004068023059517145, + 0.02036919631063938, + -0.0011341350618749857, + 0.012821219861507416, + -0.00991964340209961, + 0.0073799560777843, + -0.01880531758069992, + -0.003103523515164852, + -0.03347475826740265, + -0.007651372812688351, + -0.009060156531631947, + 0.006045489571988583, + -0.010785592719912529, + 0.0031051391270011663, + -0.03182040527462959, + 0.01983928680419922, + 0.039394229650497437, + 0.010488326661288738, + -0.016259167343378067, + 0.013247732073068619, + -0.0008425234700553119, + 0.002316737547516823, + -0.0020404737442731857, + 0.02012362889945507, + 0.04089348763227463, + -0.005816077347844839, + 0.018727770075201988, + 0.0007334719994105399, + 0.001456442754715681, + 0.008278217166662216, + 0.008375151082873344, + -0.018779467791318893, + 0.013312354683876038, + 0.03538760170340538, + -0.015936052426695824, + -0.03052794374525547, + -0.008097272366285324, + 0.05089714005589485, + -0.005415414460003376, + -0.006339524406939745, + 0.014604817144572735, + 0.01824955828487873, + -0.02920963428914547, + -0.0247635655105114, + -0.0013667781604453921, + 0.034844767302274704, + -0.022954119369387627, + 0.020485516637563705, + -0.030398698523640633, + -0.0018013684311881661, + 0.021002501249313354, + 0.011625692248344421, + -0.02434997819364071, + -0.00224565202370286, + -0.022876571863889694, + 0.006714338436722755, + 0.02331600897014141, + -0.019580794498324394, + -0.013176647014915943, + 0.019955607131123543, + 0.010746818967163563, + 0.002759405644610524, + -0.021015426144003868, + -0.00986794475466013, + 0.0094155827537179, + -0.024065636098384857, + 0.0065527805127203465, + -0.0016753533855080605, + -0.01828833296895027, + -0.01918013021349907, + -0.008433312177658081, + 0.022359587252140045, + -0.014436796307563782, + -0.007690147031098604, + 0.013506224378943443, + 0.021868450567126274, + -0.004536540247499943, + -0.011754938401281834, + -0.005218314006924629, + 0.0007710341596975923, + 0.004500997718423605, + -0.01824955828487873, + -0.01890871487557888, + 0.010552949272096157, + -0.024065636098384857, + -0.02286364696919918, + 0.004730409476906061, + 0.007257172372192144, + -0.016052374616265297, + -0.008607794530689716, + -0.006630328483879566, + -0.010468939319252968, + 0.007496277801692486, + 0.006630328483879566, + -0.008614256978034973, + -0.007955101318657398, + -0.017331911250948906, + 0.007263634353876114, + 0.007955101318657398, + 0.010785592719912529, + 0.011554607190191746, + -0.0010573952458798885, + 0.012653199955821037, + -0.011929420754313469, + -0.0035607318859547377, + -0.012168526649475098, + -0.0029355036094784737, + -0.0016931247664615512, + -0.009551291354000568, + -0.015070103108882904, + -0.010869602672755718, + -0.000996003276668489, + 0.0811665952205658, + -0.012859993614256382, + 0.01221376284956932, + 0.005505886860191822, + -0.004139108583331108, + -0.020692311227321625, + -0.001814293093048036, + 0.017163891345262527, + 0.018650222569704056, + 0.007929252460598946, + -0.024505073204636574, + -0.03326796367764473, + 0.003538113785907626, + 0.008846900425851345, + -0.03375909850001335, + 0.00854963343590498, + 0.007218398153781891, + 0.02129976823925972, + 0.00651400675997138, + 0.008749965578317642, + 0.0046496307477355, + 0.016414262354373932, + -0.013609621673822403, + 0.026146499440073967, + -0.007871091365814209, + 0.0018175242003053427, + 0.003255387768149376, + 0.00898260809481144, + -0.005001826677471399, + 0.014087831601500511, + 0.005137535277754068, + 0.003237616503611207, + -0.009092467837035656, + 0.009208789095282555, + 0.016078222543001175, + 0.003961395006626844, + 0.0031212950125336647, + -0.0033442445565015078, + 0.005580203142017126, + 0.018740693107247353, + 0.002494450891390443, + -0.005047062877565622, + 0.025719987228512764, + -0.006442921236157417, + 0.0034120988566428423, + 0.012123290449380875, + -0.009098930284380913, + 0.0007653796346858144, + 0.008724115788936615, + -0.006966368295252323, + -0.018546825274825096, + 0.008407463319599628, + -0.008827513083815575, + 0.006591554265469313, + -0.01946447230875492, + -0.024414600804448128, + 0.008110197260975838, + -0.018857015296816826, + 0.008420387282967567, + -0.001526720356196165, + -0.005573740694671869, + -0.004339439794421196, + -0.015367369167506695, + -0.024828188121318817, + 5.364220712067436e-8, + 0.010203984566032887, + 0.006740187760442495, + 0.011612768284976482, + 0.012911692261695862, + 0.020834481343626976, + -0.0044525302946567535, + 0.01585850492119789, + -0.011315502226352692, + -0.03409513831138611, + 0.001832064357586205, + 0.01890871487557888, + -0.0030049732886254787, + 0.0055381981655955315, + 0.017125116661190987, + -0.01685369946062565, + 0.00619089137762785, + -0.002431443426758051, + -0.007315333001315594, + -0.012472255155444145, + 0.013415751978754997, + -0.018055688589811325, + 0.011502908542752266, + -0.003599505638703704, + 0.0066432529129087925, + -0.008375151082873344, + -0.02574583701789379, + 0.007916327565908432, + -0.01106347143650055, + 0.005308786407113075, + 0.0006757150986231863, + -0.01870192028582096, + -0.019722964614629745, + -0.03156191483139992, + 0.020614763721823692, + -0.021209295839071274, + 0.003987244330346584, + 0.0018627604003995657, + 0.010346155613660812, + -0.00432651536539197, + 0.013176647014915943, + 0.00018972932593896985, + 0.020692311227321625, + 0.007250709924846888, + -0.027038298547267914, + 0.002179413568228483, + 0.002234342973679304, + -0.009499593637883663, + 0.008161894977092743, + -0.015690485015511513, + -0.010346155613660812, + 0.007942176423966885, + 0.007709533907473087, + -0.033112868666648865, + -0.014578967355191708, + -0.018236633390188217, + -0.014824534766376019, + 0.0027190162800252438, + 0.008394538424909115, + -0.0002116405958076939, + 0.0019564637914299965, + -0.024401675909757614, + -0.021687505766749382, + -0.00592270540073514, + -0.0024379058741033077, + 0.021248070523142815, + 0.013971510343253613, + -0.0037772192154079676, + 0.007451041601598263, + -0.0020162402652204037, + -0.004116490483283997, + -0.003505802247673273, + 0.01273074746131897, + -0.002318353159353137, + 0.012407631613314152, + -0.023096289485692978, + 0.00811665877699852, + 0.01032030675560236, + 0.004038942512124777, + 0.012452867813408375, + 0.018818242475390434, + 0.0026333907153457403, + 0.019089657813310623, + 0.0007080266368575394, + 0.022592229768633842, + 0.009758085943758488, + 0.04389199614524841, + -0.025732912123203278, + 0.015612936578691006, + -0.007851704955101013, + -0.0010420471662655473, + 0.02049844153225422, + -0.015871429815888405, + 0.013713018037378788, + 0.017745498567819595, + -0.013661319389939308, + -0.00860133208334446, + -0.007360569201409817, + -0.027968870475888252, + -0.03246663510799408, + -0.005059987306594849, + 0.020873256027698517, + 0.02334185689687729, + 0.015044253319501877, + 0.003082521026954055, + 0.00349934003315866, + -0.02980416640639305, + 0.019865136593580246, + -0.019296452403068542, + -0.04024725779891014, + -5.018386218580417e-5, + -0.0033571692183613777, + 0.012452867813408375, + 0.0038289176300168037, + -0.011438285931944847, + 0.0214677881449461, + 0.01434632483869791, + -0.0037707567680627108, + 0.01321542076766491, + -0.016957096755504608, + 0.005987328477203846, + -0.011774325743317604, + 0.011742014437913895, + 6.881348235765472e-5, + -0.0009111854596994817, + -0.00938327144831419, + 0.0018191398121416569, + 0.014061982743442059, + -0.011309039779007435, + -0.0008441390236839652, + 0.0055672787129879, + -0.013454525731503963, + 0.013124948367476463, + 0.02070523612201214, + -0.012485180050134659, + 0.015561237931251526, + -0.006934056989848614, + 0.003767525777220726, + -0.00014732043200638145, + -0.003996937535703182, + -0.006400916259735823, + -0.01214267686009407, + -0.008161894977092743, + -0.017047569155693054, + 0.005295861512422562, + 0.008989070542156696, + -0.027064146474003792, + -0.015768032521009445, + 0.011890647001564503, + 0.013674244284629822, + -0.01870192028582096, + 0.017926443368196487, + -0.0002116405958076939, + -0.005418645683676004, + 0.020524291321635246, + -0.0013885884545743465, + 0.011968194507062435, + 0.002457292750477791, + 0.008000337518751621, + -0.02595262974500656, + 0.008304066024720669, + 0.021144673228263855, + 0.006116574630141258, + -0.007108539342880249, + 0.03285437449812889, + 0.0034961088094860315, + 0.03582703694701195, + -0.0037966060917824507, + -0.0023522803094238043, + -0.0017318986356258392, + 0.008329915814101696, + 0.023962238803505898, + 0.02230788767337799, + 0.010507713072001934, + 0.024375826120376587, + -0.01297631487250328, + -0.005554353818297386, + 0.01616869494318962, + 0.004420218989253044, + -0.0015541851753368974, + 0.0012262229574844241, + 0.017771348357200623, + -0.0007920366479083896, + 0.0001413629943272099, + 0.016207469627261162, + -2.8928927349625155e-5, + 0.006158579606562853, + -0.010223371908068657, + -0.028873592615127563, + 0.017848895862698555, + 0.01075328141450882, + 0.012801832519471645, + 0.017874743789434433, + 0.00429420405998826, + 0.0073670316487550735, + -0.006333061959594488, + -0.019606642425060272, + 0.0017512855120003223, + -0.0008635259582661092, + -0.01505717821419239, + 0.008646568283438683, + 0.021080048754811287, + -0.00827175471931696, + -0.004310359712690115, + -0.0014758296310901642, + 0.0005295053706504405, + -0.0023716671857982874, + 0.008627181872725487, + -0.002305428497493267, + 0.0008732193964533508, + -0.0010606263531371951, + 0.002260192297399044, + 0.015380294062197208, + 0.0055123488418757915, + 0.004420218989253044, + -0.004979208577424288, + 0.006119805853813887, + -0.009654688648879528, + -0.012918154709041119, + -0.02830491028726101, + 0.0057029868476092815, + -0.011244416236877441, + -0.012420556508004665, + 0.005344328936189413, + -0.01901211030781269, + 0.0007148928707465529, + 0.003434716956689954, + -0.008207131177186966, + 0.009913180954754353, + -0.0023845918476581573, + -0.01148352213203907, + 0.002061476232483983, + 0.010708045214414597, + 0.006087494548410177, + 0.028330760076642036, + -0.01552246417850256, + -0.0018466046312823892, + 0.015600012615323067, + -0.01419122889637947, + -0.01932230219244957, + 0.013364053331315517, + 0.006966368295252323, + 0.025474419817328453, + -0.002368435962125659, + 0.013687169179320335, + 0.008756428025662899, + -0.008814588189125061, + 0.012756596319377422, + -0.01824955828487873, + -0.011108707636594772, + -0.006869433913379908, + -0.013454525731503963, + 0.0016066913958638906, + 0.021971847862005234, + -0.014385098591446877, + 0.01019752211868763, + -0.013402827084064484, + 0.007308870553970337, + -0.014734063297510147, + -0.00656570540741086, + 0.015625860542058945, + 0.023807143792510033, + 0.032802678644657135, + 0.01668567955493927, + 0.022333737462759018, + -0.006940518971532583, + 0.0059097809717059135, + 0.003518726909533143, + -0.011754938401281834, + -0.0048951986245810986, + -0.010430165566504002, + 0.01200050674378872, + 0.0004608433519024402, + -0.010391391813755035, + -0.02241128496825695, + -0.014785761013627052, + -0.011819561943411827, + 0.003974319435656071, + -0.007386418525129557, + -0.0003766314184758812, + 0.01486330945044756, + 0.04197915643453598, + 0.023160912096500397, + -0.028976989910006523, + 0.009079542942345142, + 0.02251468226313591, + 0.02164873294532299, + -0.016013599932193756, + 0.0013675859663635492, + -0.0218943003565073, + -0.029985111206769943, + -0.03194965049624443, + -0.013415751978754997, + 0.014113681390881538, + -0.017318986356258392, + 0.0008780661155469716, + 0.0010994002223014832, + 0.023561576381325722, + 0.004190806765109301, + 0.006352448835968971, + 0.007535051554441452, + 0.0003637067857198417, + 0.013751791790127754, + 0.015845580026507378, + -0.022114019840955734, + 0.016349639743566513, + -0.004252199083566666, + -0.020214099436998367, + -0.020343346521258354, + -0.0070245289243757725, + 0.01032030675560236, + 0.004882273729890585, + 0.006940518971532583, + 0.013467450626194477, + -0.005654519889503717, + 0.001295692753046751, + 0.015302745625376701, + -0.020382121205329895, + -0.015070103108882904, + 0.014113681390881538, + 0.014010284096002579, + 0.020175326615571976, + 0.003255387768149376, + 0.0018352955812588334, + -0.006345986854285002, + -0.005143997259438038, + -0.005651288665831089, + 0.012187913060188293, + 0.017848895862698555, + -0.008665955625474453, + 0.010203984566032887, + -0.014436796307563782, + -0.012427018955349922, + -0.0019144588150084019, + -0.0032909305300563574, + -0.004504228942096233, + 0.004404062870889902, + -0.013713018037378788, + 4.619540777639486e-5, + -0.015548313967883587, + -0.0026253126561641693, + -0.02310921438038349, + 0.011806637048721313, + 0.00851732213050127, + 0.0014273623237386346, + -0.013919811695814133, + 0.020976653322577477, + 0.015793882310390472, + -0.0065237004309892654, + 0.006753112189471722, + -0.005712680518627167, + -0.016970021650195122, + 0.006203815806657076, + -0.018844090402126312, + 0.009564216248691082, + -0.005370178259909153, + 0.009014920331537724, + 0.000533544342033565, + -0.013803490437567234, + 0.010326768271625042, + -0.018740693107247353, + 0.016427187249064445, + 0.033940043300390244, + 0.0028579558711498976, + -0.01342867687344551, + 0.020795708522200584, + -0.012220225296914577, + -0.008724115788936615, + 0.01389396283775568, + -0.005929167848080397, + -0.019296452403068542, + -0.005838695447891951, + 0.007715995889157057, + -0.013415751978754997, + 0.004694866947829723, + 0.02830491028726101, + -0.016556434333324432, + -0.007108539342880249, + -0.009447894990444183, + -0.0011260572355240583, + 0.005270012188702822, + 0.029261332005262375, + -0.0008271754486486316, + 0.006019640248268843, + -0.016453037038445473, + -0.013415751978754997, + -0.017086343839764595, + 0.009583603590726852, + -0.008349302224814892, + -0.009376809000968933, + -0.0028514934238046408, + -0.032001350075006485, + 0.008801664225757122, + 0.017577478662133217, + -0.0010897067841142416, + -0.017577478662133217, + -0.007884016260504723, + -0.00933157280087471, + 0.0024346746504306793, + -0.012582113966345787, + -0.0010372004471719265, + 0.019309377297759056, + -0.0008304066141135991, + 0.022036470472812653, + 0.003521957900375128, + 0.0033539379946887493, + -0.0015558006707578897, + 0.007108539342880249, + 0.010869602672755718, + -0.001392627484165132, + 0.0067789615131914616, + 0.008659493178129196, + -0.039213284850120544, + 0.00943497009575367, + 0.019231829792261124, + -0.018236633390188217, + -0.00012954908015672117, + 0.009279875084757805, + -0.002720631891861558, + -0.00823944341391325, + 0.021351465955376625, + 0.004853193648159504, + -0.010281532071530819, + 0.0127113601192832, + -0.008207131177186966, + 0.004572083242237568, + -0.00743165472522378, + 0.00854963343590498, + -0.008000337518751621, + -0.0023587425239384174, + -0.003415329847484827, + -0.005560816265642643, + 0.0019823131151497364, + 0.020252874121069908, + 0.009622377343475819, + 0.006345986854285002, + 0.009725773707032204, + -0.008388075977563858, + 0.021765055134892464, + -0.0007859782199375331, + -0.005059987306594849, + 0.0002724266960285604, + 0.001308617414906621, + 0.015199349261820316, + 0.03523250296711922, + 0.003538113785907626, + 0.007373493630439043, + 0.005237700883299112, + 0.0069792927242815495, + 0.0022504988592118025, + 0.006103650201112032, + 0.013040938414633274, + 0.0022892726119607687, + 0.0036996714770793915, + 0.02851170487701893, + -0.003034053836017847, + -0.0015864967135712504, + -0.011670928448438644, + -0.002273116959258914, + 0.0024831420741975307, + 0.01689247414469719, + -0.009312186390161514, + 0.005289399530738592, + 0.0017028182046487927, + 0.015070103108882904, + 0.00025788648054003716, + -0.007470428477972746, + 0.01876654289662838, + -0.009060156531631947, + 0.0007859782199375331, + -0.0008651415118947625, + 0.014785761013627052, + 0.003273159032687545, + -0.001200373750180006, + 0.03091568313539028, + -0.009499593637883663, + 0.006517237983644009, + 0.016633981838822365, + 0.0011971426429226995, + -0.017706723883748055, + -0.008510859683156013, + -0.02383299358189106, + -0.0052312384359538555, + 0.00870472937822342, + -0.01032030675560236, + 0.011076396331191063, + -0.0036479730624705553, + 0.0024524459149688482, + 0.011670928448438644, + -0.010404316708445549, + 0.007560900878161192, + -0.01606529764831066, + -0.01465651486068964, + -0.007509202230721712, + 0.0031519909389317036, + 0.010145824402570724, + -0.0030049732886254787, + -0.018598522990942, + -0.014488494955003262, + 0.005415414460003376, + -0.004148801788687706, + -0.0015558006707578897, + 0.011819561943411827, + -0.004200500436127186, + 0.012013430707156658, + 0.005169846583157778, + -0.0204338189214468, + -0.0032925461418926716, + -0.024828188121318817, + -0.01354499813169241, + -0.015031329356133938, + 0.007334719877690077, + -0.015302745625376701, + -0.007043915800750256, + 0.006568936165422201, + 0.011257341131567955, + 0.010475401766598225, + -0.011302577331662178, + -0.01063049677759409, + -0.01222668681293726, + 0.00862071942538023, + 0.019025035202503204, + -0.0014257467119023204, + 0.005221545230597258, + 0.012065129354596138, + -0.0020630918443202972, + 0.020071929320693016, + -0.010934225283563137, + -0.017771348357200623, + -0.008943834342062473, + 0.0058903940953314304, + -0.01161923073232174, + -0.005925936624407768, + -0.006940518971532583, + -0.01176140084862709, + -0.009124779142439365, + -0.013467450626194477, + 0.006375066936016083, + 0.0002479910908732563, + 0.007638448383659124, + 0.004795032553374767, + -0.0059097809717059135, + 0.028046417981386185, + -0.02414318360388279, + 0.00778708141297102, + -0.02181675285100937, + 9.955994028132409e-5, + 0.009118316695094109, + 0.0023409712594002485, + -0.00905369408428669, + -0.004746565595269203, + -0.007871091365814209, + 0.035129107534885406, + -0.006022871471941471, + 0.021248070523142815, + -0.009144166484475136, + -0.016414262354373932, + -0.011321963742375374, + 0.007373493630439043, + -0.0030679807532578707, + 0.0003089791280217469, + 0.00370290270075202, + 0.004316822160035372, + 0.014889158308506012, + 0.007386418525129557, + -0.007102076895534992, + -0.006882358342409134, + 0.014785761013627052, + 0.014617741107940674, + -0.008646568283438683, + 0.014320475049316883, + -0.010094125755131245, + -0.01658228226006031, + -0.009661151096224785, + 0.00185145135037601, + -0.011942345649003983, + 0.014010284096002579, + -0.01032030675560236, + -0.011800174601376057, + -0.0048596556298434734, + 0.013777641579508781, + -0.005286168307065964, + 0.01790059357881546, + -0.018572673201560974, + 0.005253856536000967, + -0.02091202884912491, + -0.011690315790474415, + 0.01234947144985199, + -0.020666461437940598, + 0.0050406004302203655, + -0.000996003276668489, + 0.008200669661164284, + 0.006274901330471039, + -0.014320475049316883, + 0.004539771471172571, + -0.02002023160457611, + -0.001691509154625237, + -0.019890984520316124, + -0.015328595414757729, + 0.0013457756722345948, + -0.01651765964925289, + -0.009667613543570042, + 0.022294962778687477, + -0.01435924880206585, + 0.0024427524767816067, + -0.005664213094860315, + 0.006258745677769184, + 0.008995532989501953, + -0.000661174941342324, + 0.007547975983470678, + -0.020097779110074043, + -0.0353100523352623, + -0.01773257367312908, + -0.020136551931500435, + -0.005599590018391609, + -0.040221408009529114, + 0.002177797956392169, + 0.009855019859969616, + -0.017331911250948906, + -0.002370051573961973, + -1.0027937605627812e-5, + 0.002394285285845399, + -0.015897277742624283, + -0.01918013021349907, + -0.028279060497879982, + -0.004400832112878561, + -0.013247732073068619, + -0.018184935674071312, + 0.015470766462385654, + -0.010255683213472366, + 0.026211122050881386, + 0.018714845180511475, + -0.023949313908815384, + -0.0003915754787158221, + -0.0061456551775336266, + -0.02418195828795433, + -0.0245309229940176, + -0.011942345649003983, + -0.0003025167970918119, + -0.01623331755399704, + 0.006194122601300478, + -0.019968532025814056, + 0.018301257863640785, + -0.003383018309250474, + 0.01588435284793377, + -0.00021790096070617437, + 0.0070245289243757725, + -0.011205642484128475, + -0.005059987306594849, + 0.008478548377752304, + -0.0002899960963986814, + -0.0196324922144413, + 0.0055834343656897545, + -0.005480037536472082, + -0.018430503085255623, + 0.001996853156015277, + -0.015199349261820316, + 0.014475570991635323, + -0.006985755171626806, + 0.02469894289970398, + 0.018753618001937866, + 0.0026721644680947065, + -0.013208958320319653, + 0.008103734813630581, + -0.020059004426002502, + 0.02747773565351963, + 0.01911550760269165, + 0.008905060589313507, + -0.016388414427638054, + -0.010061814449727535, + -0.008168357424438, + -0.005266781430691481, + -0.006901745218783617, + 0.003551038447767496, + 0.010055352002382278, + 0.013622545637190342, + -0.011399512179195881, + -0.011748476885259151, + -0.00867241807281971, + 0.0010388160590082407, + 0.03724874556064606, + -0.0023474334739148617, + 0.007211936172097921, + -0.0036544352769851685, + -0.0255648922175169, + -0.003237616503611207, + -0.016633981838822365, + -0.022333737462759018, + 0.03176870569586754, + -0.010074738413095474, + 0.00891798548400402, + 0.007347644306719303, + -0.013713018037378788, + -0.019270602613687515, + 0.013881037943065166, + 0.001455634948797524, + 0.017848895862698555, + 0.003909696359187365, + 0.00933157280087471, + 0.007528589107096195, + -0.013325279578566551, + 0.0036382796242833138, + 0.0009628839325159788, + -0.005198927130550146, + -0.011457672342658043, + 0.0102169094607234, + 0.00656570540741086, + 0.0020016999915242195, + -0.009512517601251602, + -0.013661319389939308, + -0.007948638871312141, + -0.01521227415651083, + 0.005754685495048761, + -0.011386587284505367, + -0.0012989239767193794, + 0.00697283074259758, + -0.001360315945930779, + 0.01063049677759409, + -0.018482200801372528, + -0.004177882336080074, + -0.012523953802883625, + 0.0030033576767891645, + 0.028951141983270645, + 0.014488494955003262, + 0.0008235404384322464, + -0.007625523954629898, + 0.012058666907250881, + 0.005450956989079714, + -0.012233149260282516, + -0.008420387282967567, + 0.031174175441265106, + 0.004975977353751659, + 0.014488494955003262, + -0.00254130270332098, + -0.010830828920006752, + 0.005754685495048761, + 0.012982777319848537, + 0.003670591162517667, + -0.006901745218783617, + -0.0009128010715357959, + -0.0009273412288166583, + 0.022010622546076775, + -0.013725942932069302, + 0.029493974521756172, + 0.009079542942345142, + -0.012937541119754314, + 0.012950466014444828, + -0.0029096542857587337, + -0.004029249306768179, + 0.009829171001911163, + 0.01430755015462637, + 0.00822005607187748, + 0.009092467837035656, + 0.014462646096944809, + -0.01032030675560236, + 0.0016390029340982437, + -0.01609114743769169, + -0.003819224191829562, + 0.0345604233443737, + -0.0070697651244699955, + -0.024970360100269318, + -0.004782108124345541, + -0.007463966030627489, + -0.008039111271500587, + 0.004465455189347267, + -0.007573825307190418, + 0.010100588202476501, + -0.002924194559454918, + -0.02060183882713318, + 0.04645107313990593, + 0.004255429841578007, + -0.015664635226130486, + 0.008026187308132648, + -0.0024879886768758297, + -0.0040809474885463715, + -0.0045688520185649395, + 0.02615942433476448, + -0.030140206217765808, + 0.016918323934078217, + 0.008924447931349277, + -0.017228513956069946, + -0.005260318983346224, + 0.010675732977688313, + 0.03549099713563919, + -0.03598213195800781, + -0.008840437978506088, + -0.00943497009575367, + 0.0026899357326328754, + 0.00027081111329607666, + -0.00559312803670764, + -0.014385098591446877, + 0.016814926639199257, + -0.00891798548400402, + 0.011173331178724766, + 0.0129246162250638, + -0.011742014437913895, + 0.01344160083681345, + -0.005764379166066647, + 0.009751623496413231, + -0.002885420573875308, + 0.0006369412876665592, + -0.029881713911890984, + 0.014268776401877403, + -0.005664213094860315, + -0.013099098578095436, + -0.006313675083220005, + -0.003906465135514736, + -0.01552246417850256, + -0.010333230718970299, + 0.008827513083815575, + -0.012918154709041119, + 0.0019677728414535522, + 0.013415751978754997, + -0.006798348389565945, + -0.00865303073078394, + 0.01849512569606304, + -0.008756428025662899, + -0.0018045995384454727, + 0.02962322160601616, + -0.0033248576801270247, + -0.003977550659328699, + -0.016866624355316162, + 0.015354444272816181, + -0.003563963109627366, + 0.0015089489752426744, + 0.01348037552088499, + 0.030191903933882713, + -0.010927763767540455, + 0.011477059684693813, + -0.0026220816653221846, + -0.005761147942394018, + 0.027968870475888252, + 0.017215589061379433, + -0.005266781430691481, + -0.026650559157133102, + 0.009829171001911163, + 0.00886628683656454, + 0.022889496758580208, + -0.007916327565908432, + -0.01755162887275219, + 0.007127926219254732, + -0.00832345336675644, + -0.03551684692502022, + -0.001857913681305945, + 0.012956928461790085, + 0.012459330260753632, + 0.007173162419348955, + -0.0189733374863863, + 0.008039111271500587, + -0.024065636098384857, + -0.0007383187185041606, + 0.0049242787063121796, + -0.002612388227134943, + -0.0188311655074358, + -0.00818774476647377, + -0.030553793534636497, + -0.00467548007145524, + 0.011470597237348557, + -0.0067789615131914616, + 0.0028724961448460817, + -0.017112191766500473, + -0.0089696841314435, + -0.0332421138882637, + 0.0019193055341020226, + -0.02369082160294056, + -0.011037622578442097, + 0.02789132297039032, + 0.008052036166191101, + -0.007631985936313868, + 0.006669102236628532, + -0.015341520309448242, + -0.012956928461790085, + -0.008071423508226871, + 0.007851704955101013, + -0.0054671126417815685, + -0.00891798548400402, + 0.0006866202456876636, + -0.01032030675560236, + 0.005127841606736183, + -0.002667317632585764, + -0.009131241589784622, + 0.017577478662133217, + -0.0046690176241099834, + -0.012019893154501915, + -0.007522126659750938, + -0.0029823551885783672, + -0.004856424871832132, + -0.0056739067658782005, + 0.007767694536596537, + -0.009111854247748852, + -0.002450830303132534, + -0.010785592719912529, + -0.0007039877236820757, + -0.0111345574259758, + -0.019244754686951637, + -0.012666123919188976, + 0.00889859814196825, + 0.004837037529796362, + 0.012885842472314835, + -0.018533900380134583, + -0.013984435237944126, + -0.008911523036658764, + 0.02098957821726799, + -0.010035964660346508, + -0.017318986356258392, + -0.007651372812688351, + 0.015587087720632553, + 0.027451885864138603, + 0.006707875989377499, + 0.02459554560482502, + 0.024130258709192276, + 0.025371022522449493, + -0.02369082160294056, + 0.02595262974500656, + -0.026043102145195007, + 0.006433228030800819, + -0.010068275965750217, + -0.012905229814350605, + 0.01545784156769514, + 0.018016915768384933, + -0.032311540096998215, + 0.02160995826125145, + 0.008077885024249554, + -0.004869349300861359, + -0.0020857099443674088, + -0.008052036166191101, + 0.0030356692150235176, + -0.015199349261820316, + -0.002056629629805684, + 0.0009354191133752465, + -0.0068048108369112015, + -0.018960412591695786, + 0.022152792662382126, + 0.004979208577424288, + -0.001844989019446075, + 0.00202916469424963, + 0.016970021650195122, + 0.024272430688142776, + -0.010145824402570724, + 0.00484026875346899, + 0.005496193189173937, + -0.008885674178600311, + 0.0123817827552557, + 0.009635301306843758, + -0.032828524708747864, + 0.024608470499515533, + 0.00044913042802363634, + 0.0059194741770625114, + -0.049966566264629364, + 0.006384760607033968, + -0.01952909491956234, + 0.0024815264623612165, + -0.0025639208033680916, + 0.004833806771785021, + 0.011367199942469597, + -0.0019839287269860506, + 0.00048224974307231605, + 0.00632336875423789, + -0.015535389073193073, + -0.002618850441649556, + -0.000182863135705702, + 0.008401000872254372, + -0.01267904881387949, + -0.018120313063263893, + 0.012607963755726814, + -0.024091485887765884, + 0.016000675037503242, + -0.009796859696507454, + 0.012530415318906307, + -0.013635470531880856, + -0.024776490405201912, + -0.015677560120821, + -0.010339693166315556, + 0.02879604510962963, + -0.0016575821209698915, + 0.011179793626070023, + 1.1025051207980141e-5, + -0.018365880474448204, + 0.014979630708694458, + 0.01693124696612358, + -0.010365542024374008, + 0.012821219861507416, + 0.008808125741779804, + -0.004200500436127186, + -0.0027674834709614515, + -0.0009281490347348154, + -0.022540532052516937, + -0.01581973023712635, + 0.021144673228263855, + 0.01998145692050457, + 0.006882358342409134, + 0.010953612625598907, + -0.024194881319999695, + -0.015070103108882904, + 0.018753618001937866, + 0.026934901252388954, + 0.0025752298533916473, + 0.01936107501387596, + 0.016000675037503242, + -0.007095614448189735, + -0.007677222136408091, + -0.008013262413442135, + 0.001041239476762712, + 0.03644741699099541, + -0.0027044760063290596, + 0.0055834343656897545, + -0.0001504506217315793, + -0.001621231553144753, + 0.0037933748681098223, + 0.029054537415504456, + -0.013286505825817585, + -0.006675564683973789, + 0.002956506097689271, + 0.012511028908193111, + -0.0035898122005164623, + 0.004061560612171888, + 0.02397516369819641, + -0.02049844153225422, + 0.004223118536174297, + 0.0025623051915317774, + 0.004155264236032963, + 0.005263550207018852, + 0.025345172733068466, + 0.011057009920477867, + -0.0067789615131914616, + -0.02418195828795433, + -0.012103903107345104, + -0.01111517008394003, + 0.012336546555161476, + 0.030372848734259605, + 0.015948977321386337, + 0.0017674412811174989, + -0.014643590897321701, + -0.02064061351120472, + 0.018714845180511475, + 0.009506055153906345, + -0.028821894899010658, + 0.01804276555776596, + -0.020485516637563705, + -0.027606980875134468, + 0.006568936165422201, + 0.0053475601598620415, + 0.014087831601500511, + -0.023328932002186775, + -0.00983563344925642, + -0.004190806765109301, + -0.012090979143977165, + 0.0021810289472341537, + -0.01651765964925289, + 0.01862437278032303, + -0.009977803565561771, + 0.010475401766598225, + -0.005851620342582464, + -0.004048636183142662, + 0.0047142538242042065, + 0.005147228483110666, + 0.0005941284471191466, + -0.002995279850438237, + 0.01662105694413185, + 0.0066432529129087925, + -0.018637297675013542, + 0.022488832473754883, + 0.00278363935649395, + -0.0067789615131914616, + 0.014333399944007397, + -0.01761625148355961, + 0.024711867794394493, + 0.014113681390881538, + -0.004048636183142662, + 0.004872580524533987, + -0.004539771471172571, + 0.0017658257856965065, + 0.030372848734259605, + 0.008446237072348595, + 0.018999187275767326, + 0.02014947682619095, + -0.0028773427475243807, + 0.020007306709885597, + 0.0056997560895979404, + 0.006656177341938019, + 0.0020776321180164814, + -0.011612768284976482, + -0.00559312803670764, + 0.019503246992826462, + 0.015729257836937904, + 0.0018417579121887684, + 0.017887668684124947, + -0.008329915814101696, + -0.0022004160564392805, + 0.004410525318235159, + 0.007218398153781891, + -0.016259167343378067, + -0.012892304919660091, + -0.011696778237819672, + -0.015225198119878769, + 0.01870192028582096, + 0.010520637966692448, + -0.007619061507284641, + -0.0024298278149217367, + 0.0025203002151101828, + -0.0021164058707654476, + 0.011851873248815536, + -0.006384760607033968, + 0.015535389073193073, + -0.0035575006622821093, + -1.2937238352606073e-5, + -0.013855189085006714, + -0.02515130303800106, + -0.012582113966345787, + -0.0062619769014418125, + 0.012775983661413193, + 0.011166868731379509, + 0.013364053331315517, + -0.014540193602442741, + 0.02980416640639305, + -0.0065527805127203465, + -0.020472591742873192, + -0.003864460391923785, + -0.010966537520289421, + 0.0012480332516133785, + -0.0005832233000546694, + 0.016659831628203392, + -0.02303166687488556, + -0.02115759812295437, + 0.004397600889205933, + -0.003722289577126503, + 0.02595262974500656, + -0.00867241807281971, + -0.030062658712267876, + 0.002817566506564617, + -0.00813604611903429, + 0.00277071469463408, + 0.0016785846091806889, + -0.009014920331537724, + 0.019748814404010773, + -0.012465792708098888, + -0.05255148932337761, + -0.0004188383463770151, + 0.016155770048499107, + -0.017680875957012177, + -0.010417240671813488, + -0.004371751565486193, + 0.005722374189645052, + 0.004975977353751659, + 0.0075867497362196445, + -0.019852211698889732, + 0.0002801006776280701, + 0.001232685288414359, + -0.01598775014281273, + -0.020808633416891098, + -0.009997190907597542, + 0.00997134204953909, + 0.0008190975640900433, + -0.0003077674191445112, + 0.018365880474448204, + 0.012401169165968895, + 0.002255345694720745, + 0.009997190907597542, + -0.0036738221533596516, + -0.03094153292477131, + 0.007056840695440769, + 0.003287699306383729, + -0.0036091990768909454, + -0.022152792662382126, + -0.005208620335906744, + -0.0004584199923556298, + 0.0027642524801194668, + -0.005118147935718298, + -0.010210447013378143, + -0.006152117624878883, + -0.011670928448438644, + 0.018443427979946136, + 0.010287994518876076, + 0.009137704037129879, + -0.03931668400764465, + 0.0036350484006106853, + -0.02459554560482502, + -0.004685173276811838, + -0.007690147031098604, + 0.0009556138538755476, + 0.0023652047384530306, + -0.00699868006631732, + 0.008808125741779804, + -0.002911269897595048, + -0.0026527775917202234, + -0.022462982684373856, + 0.03021775372326374, + -0.018055688589811325, + -0.021829677745699883, + 0.0014645205810666084, + 0.028563402593135834, + -0.0089696841314435, + -0.005496193189173937, + -0.014682364650070667, + 0.00467548007145524, + -0.005993790924549103, + -0.03947177901864052, + 0.0034961088094860315, + 0.0020146246533840895, + 0.0005367755074985325, + -0.0038062995299696922, + 0.0004426681261975318, + 0.001641426351852715, + -0.0030744432006031275, + 0.0015493384562432766, + -0.01709926687180996, + -0.012743672356009483, + 0.023742521181702614, + 0.007864628918468952, + 0.0073670316487550735, + -0.010294456966221333, + -0.02389761619269848, + -0.017228513956069946, + 0.01186479814350605, + -0.007347644306719303, + 0.003198842518031597, + 0.011057009920477867, + -0.018740693107247353, + -0.017913518473505974, + -0.010927763767540455, + 0.00575791671872139, + 0.011541682295501232, + 0.0303211510181427, + 0.01552246417850256, + 0.02858925238251686, + -0.006656177341938019, + -0.005951785948127508, + -0.023962238803505898, + -0.006856509018689394, + -0.000899876409675926, + -0.005218314006924629, + -0.0021406395826488733, + 0.008762890473008156, + -0.016711529344320297, + 0.01214267686009407, + 0.016220394521951675, + 0.002274732571095228, + 0.014036133885383606, + 0.009389733895659447, + -0.006384760607033968, + -0.008879211731255054, + 0.014281701296567917, + -0.002387822838500142, + -0.022773174569010735, + -0.006675564683973789, + -0.0221269428730011, + 0.011418898589909077, + 0.010404316708445549, + 0.0022650391329079866, + -0.015703409910202026, + -0.0028563402593135834, + -0.014462646096944809, + 0.008071423508226871, + 0.0003122102643828839, + -0.018727770075201988, + 0.015276896767318249, + 0.027348488569259644, + 0.01967126689851284, + 0.007709533907473087, + 0.007554438430815935, + -0.00551558006554842, + -0.010559411719441414, + -0.046606168150901794, + -0.009628839790821075, + -0.0003899599250871688, + 0.010901913978159428, + 0.002701244782656431, + 0.009661151096224785, + -0.0027319409418851137, + 0.018223708495497704, + -0.025448570027947426, + 0.0066432529129087925, + 0.0004891159478574991, + -0.0037125961389392614, + -0.019399849697947502, + 0.00021870875207241625, + 0.005851620342582464, + 0.018508050590753555, + 0.01668567955493927, + -0.003922621253877878, + -0.020317496731877327, + 0.012006969191133976, + 0.0029839708004146814, + 0.003350706771016121, + 0.00735410675406456, + 0.015186424367129803, + -0.004374982789158821, + 0.005725604947656393, + 0.008459161967039108, + -0.0007039877236820757, + 0.017474081367254257, + -0.007877553813159466, + 0.016259167343378067, + 0.024414600804448128, + -0.021080048754811287, + -0.016840774565935135, + -0.00940265879034996, + 0.00470132939517498, + -0.024750640615820885, + 0.005509117618203163, + -0.0262240469455719, + -0.006084263324737549, + -0.009590065106749535, + -0.007522126659750938, + 0.0016381951281800866, + -0.0077030714601278305, + -0.009712849743664265, + -0.010068275965750217, + -0.0041423398070037365, + 0.007522126659750938, + 0.002867649309337139, + 0.011981119401752949, + -0.022075245156884193, + -0.02646961435675621, + 0.001137366285547614, + -0.005318479612469673, + 0.007845242507755756, + -0.04391784593462944, + -0.03277682885527611, + 0.008174819871783257, + 0.004594701342284679, + 0.023535726591944695, + -0.00411002803593874, + 0.003929083235561848, + -0.001760978950187564, + 0.005434801336377859, + 0.005399258341640234, + -0.026753956452012062, + -0.00898260809481144, + 0.00653985608369112, + -0.009654688648879528, + 0.0008796817273832858, + -0.0033038551919162273, + 0.011787250638008118, + -0.019697114825248718, + 0.023147989064455032, + 0.019490322098135948, + -0.009118316695094109, + 0.03339720889925957, + -0.007980951108038425, + 0.024479223415255547, + 0.009577141143381596, + 0.00592270540073514, + 0.0017706725047901273, + 0.016957096755504608, + -0.00394523935392499, + 0.009602990001440048, + 0.018572673201560974, + 0.010178135707974434, + 0.00862071942538023, + 0.00347349070943892, + -0.005454188212752342, + 0.01148352213203907, + -0.005360484588891268, + 0.0017480544047430158, + -0.0005129456985741854, + -0.028149815276265144, + 0.0019176900386810303, + 0.0171380415558815, + 0.008717654272913933, + 0.008310528472065926, + -0.019697114825248718, + -0.029778316617012024, + 0.03590458631515503, + 0.019373999908566475, + 0.010145824402570724, + 0.0007532628369517624, + -0.0059097809717059135, + -0.019606642425060272, + 0.00551558006554842, + 0.021002501249313354, + 0.01592312753200531, + 0.007677222136408091, + -0.006824197713285685, + 0.0013045785017311573, + 0.006142423953860998, + -0.005244163330644369, + -0.0018611447885632515, + -0.00034028090885840356, + 0.015910202637314796, + 0.0036415106151252985, + -0.008336377330124378, + -0.011237953789532185, + -0.007425192277878523, + -0.002775561297312379, + 0.006746649742126465, + 0.017939368262887, + 0.0012278385693207383, + -0.019645417109131813, + 0.02192015014588833, + -0.01063049677759409, + -0.00391939003020525, + -0.004145570565015078, + -0.005509117618203163, + -0.013622545637190342, + -0.0059808664955198765, + 0.01394566148519516, + 0.00694698141887784, + -0.0032521565444767475, + 0.010624035261571407, + -0.0031229103915393353, + 0.002680242294445634, + 0.009557753801345825, + 0.0023894384503364563, + 0.00020305784710217267, + 0.016595207154750824, + 0.004555927123874426, + 0.01769380085170269, + 0.004284510388970375, + 0.018184935674071312, + 0.010527100414037704, + -0.00946728140115738, + -0.0011276728473603725, + 0.0023522803094238043, + -0.0023280465975403786, + 0.001760978950187564, + -0.020963728427886963, + 0.013286505825817585, + 0.023807143792510033, + -0.021067125722765923, + -0.038980644196271896, + -0.020175326615571976, + -0.009809783659875393, + 0.009926105849444866, + -0.019193055108189583, + 0.004384675994515419 + ], + "58503ed9-8447-469f-9d86-49495fbb0874": [ + -0.009786326438188553, + -0.04176226258277893, + -0.00900260265916586, + 0.010038481093943119, + -0.02697373367846012, + 0.02379794791340828, + -0.0039254347793757915, + 0.011858084239065647, + -0.0003126376832369715, + 0.05670072138309479, + 0.005479252431541681, + 0.008048503659665585, + 0.03576507046818733, + -0.010113446041941643, + 0.017718976363539696, + 0.013773095794022083, + -0.008341548964381218, + 0.03249387443065643, + -0.02417958714067936, + -0.022966518998146057, + 0.0234163086861372, + -0.03399317339062691, + -0.04187130182981491, + 0.010903985239565372, + 0.005530364811420441, + -0.028295841068029404, + 0.0008050207979977131, + 0.009765882045030594, + -0.011319699697196484, + -0.0032882329542189837, + -0.006930845323950052, + -0.008879932574927807, + 0.007980354130268097, + 0.01402525044977665, + 0.01039967592805624, + -0.041844043880701065, + 0.020894762128591537, + -0.003830024739727378, + -0.01731007546186447, + 0.012021643109619617, + -0.018046095967292786, + 0.018700335174798965, + 0.012485062703490257, + -0.01763719506561756, + -0.029495280236005783, + 0.015974337235093117, + -0.06673239171504974, + -0.029168160632252693, + 0.010167965665459633, + -0.015960708260536194, + 0.02963157929480076, + 0.023375418037176132, + -0.02690558321774006, + 0.024983756244182587, + 0.053620345890522, + -0.03674643114209175, + 0.015974337235093117, + 0.051712147891521454, + 0.023239118978381157, + -0.047077953815460205, + 0.011503703892230988, + -0.010944874957203865, + 0.019668063148856163, + -0.019409094005823135, + 0.01992703229188919, + -0.017282815650105476, + -0.03516535088419914, + -0.00412306934595108, + -0.018700335174798965, + 0.005319100338965654, + 0.026714762672781944, + 0.030476639047265053, + -0.01605611853301525, + -0.023266378790140152, + 0.018850265070796013, + 0.008702742867171764, + 0.038354769349098206, + 0.046042077243328094, + 0.022680288180708885, + -0.0430162213742733, + 0.0019167161080986261, + -0.0183868445456028, + -0.02363438718020916, + 0.01410703081637621, + 0.037755049765110016, + 0.021862490102648735, + -0.021058320999145508, + -0.04274362325668335, + -0.022775698453187943, + 9.439826681045815e-5, + -0.009302462451159954, + 0.05394746735692024, + -0.013827616348862648, + 0.01692843623459339, + 0.01567447930574417, + -0.03516535088419914, + 0.04132610186934471, + -0.0038436546456068754, + -0.0011346959508955479, + -0.018686704337596893, + 0.0004361594037618488, + -0.0020274596754461527, + 0.01255321316421032, + -0.009213867597281933, + -0.009738621301949024, + 0.006774100940674543, + 0.01350731123238802, + 0.010079370811581612, + -0.0002587566850706935, + 0.04863177239894867, + -0.03216675668954849, + -0.0822160467505455, + 0.03372057527303696, + 0.002492582891136408, + -0.04203486070036888, + -0.04099898412823677, + -0.04078090563416481, + -0.009956701658666134, + -0.017841646447777748, + -0.011789933778345585, + 0.009656841866672039, + -0.013275601901113987, + -0.0062834215350449085, + 0.02450670674443245, + -0.016723986715078354, + 0.03688272833824158, + 0.002080275909975171, + 0.025065535679459572, + 0.02434314601123333, + 0.03658286854624748, + -0.01665583811700344, + 0.004855680745095015, + 0.048931632190942764, + -0.027150923386216164, + 0.017759865149855614, + 0.013132487423717976, + -0.00788494385778904, + 0.07660049200057983, + -0.006344756111502647, + 0.024520335718989372, + -0.026810172945261, + 0.006573058664798737, + -0.043479640036821365, + 0.01454318966716528, + -0.0033325303811579943, + -0.008545998483896255, + -0.02788694202899933, + 0.04977669194340706, + -0.02510642632842064, + -0.01604248769581318, + -0.04399757832288742, + 0.006406091153621674, + -0.030094997957348824, + -0.01383443083614111, + 0.03979954496026039, + 0.014093400910496712, + -0.006624171044677496, + 0.029386239126324654, + -0.011094804853200912, + 0.04966765269637108, + 0.02674202434718609, + -0.04732329398393631, + 0.01840047538280487, + 0.004048104397952557, + 0.05476526543498039, + 0.016355978325009346, + 0.037973128259181976, + 0.02248946949839592, + -0.0037482448387891054, + 0.02528361603617668, + -0.009138902649283409, + -0.04339786246418953, + 0.007421524729579687, + -0.05116695165634155, + 0.03162155672907829, + -0.01576988771557808, + 0.04552413895726204, + 0.022789329290390015, + 0.0337478332221508, + -0.02058127149939537, + -0.025092795491218567, + -0.01981799304485321, + 0.03407495468854904, + 0.0056359972804784775, + -0.021058320999145508, + 0.05386568605899811, + 0.011605929583311081, + 0.005789334420114756, + -0.005298655480146408, + 0.010903985239565372, + 0.005101020447909832, + -0.03543795272707939, + 0.0337478332221508, + -0.0011176584521308541, + -0.010358786210417747, + -0.021658040583133698, + -0.00689336284995079, + -0.00947283674031496, + 0.011333329603075981, + 0.00633112620562315, + -0.028404880315065384, + -0.04007214680314064, + -0.0033342342358082533, + 0.016451386734843254, + -0.03753696754574776, + -0.0034483852796256542, + 0.008961712941527367, + -0.030776498839259148, + 0.009943071752786636, + -0.021930640563368797, + 0.039826806634664536, + -0.018877524882555008, + 0.0011133990483358502, + 0.00614030659198761, + 0.00478753075003624, + 0.029985958710312843, + 0.020826611667871475, + 0.014992979355156422, + 0.014461410231888294, + -0.03434755280613899, + 0.04127158224582672, + 0.009834031574428082, + -0.01878211461007595, + -0.03222127631306648, + -0.04470633715391159, + -0.022339539602398872, + -0.029876919463276863, + 0.049694910645484924, + -0.021739820018410683, + -0.020840240642428398, + 0.044842638075351715, + 0.00035161091363988817, + 0.028295841068029404, + -0.002570955315604806, + 0.014965719543397427, + 0.013548201881349087, + 0.04448825865983963, + 0.005649627186357975, + 0.01212386880069971, + -0.0144341504201293, + -0.017337337136268616, + -0.002254058141261339, + -0.01767808571457863, + -0.03173059597611427, + -0.022394059225916862, + 0.0006895918631926179, + -0.02058127149939537, + 0.0599173977971077, + -0.005366805009543896, + 0.006504908669739962, + -0.0014941866975277662, + 0.023293638601899147, + 0.025474434718489647, + -0.018604924902319908, + -0.016833027824759483, + 0.04803205281496048, + 0.030503898859024048, + -0.02815954200923443, + -0.01369813084602356, + -0.017500896006822586, + -0.007993984036147594, + 0.016519537195563316, + 0.002208057092502713, + 0.01203527394682169, + 0.03445659205317497, + -0.014256960712373257, + 0.022871108725667, + 0.010236116126179695, + 0.0051146503537893295, + 0.03680095076560974, + -0.017650825902819633, + -0.03039485774934292, + -0.01582440920174122, + 0.007278410252183676, + -0.025842444971203804, + 0.017051106318831444, + 0.00873000267893076, + -0.0022097607143223286, + -0.016451386734843254, + -0.014584080316126347, + -0.011360589414834976, + -0.011599114164710045, + 0.026660243049263954, + 0.0017463413532823324, + 0.01642412692308426, + 0.006705950945615768, + -0.028568441048264503, + -0.039172567427158356, + -0.0544654056429863, + 0.004157144110649824, + 0.005145317874848843, + -0.03208497539162636, + -0.002490879036486149, + 0.0367736890912056, + 0.004044697154313326, + 0.007809979375451803, + -0.030422117561101913, + -0.010542790405452251, + 0.00519983796402812, + -0.0054724374786019325, + -0.025038275867700577, + -0.0010929540731012821, + -0.017896166071295738, + -0.021698931232094765, + 0.02974061854183674, + -0.01954539306461811, + 0.042716361582279205, + 0.02745078317821026, + -0.02576066553592682, + 0.0029151123017072678, + 0.03224853426218033, + -0.020172372460365295, + -0.02036319300532341, + -0.009295647032558918, + 0.015974337235093117, + 0.02522909641265869, + -0.04317978024482727, + -0.004296851810067892, + 0.0020189411006867886, + 0.005193023011088371, + 0.007162555120885372, + -0.008525553159415722, + -0.03772778809070587, + -0.0012428839690983295, + 0.027532562613487244, + -0.04999477043747902, + 0.047841235995292664, + -0.0134050864726305, + -0.029222680255770683, + -0.0016960807843133807, + -0.009234311990439892, + -0.012294243089854717, + -0.03164881840348244, + 0.021358180791139603, + -0.039445165544748306, + -0.05182119086384773, + -0.061334915459156036, + -0.020840240642428398, + -0.013473236933350563, + -0.0006793693755753338, + -0.029577059671282768, + -0.028077760711312294, + 0.009431947022676468, + -0.011987568810582161, + -0.03039485774934292, + -0.020158741623163223, + 0.03276647627353668, + 0.03260291367769241, + 0.024193216115236282, + 0.009759066626429558, + 0.0008062985725700855, + 0.022012419998645782, + 0.03442933410406113, + -0.01850951462984085, + 0.040699124336242676, + 0.012457802891731262, + -0.007680494338274002, + 0.006252754013985395, + 0.0047330111265182495, + -0.009827216155827045, + -0.007837239652872086, + -0.037918608635663986, + -0.001782120089046657, + -0.05026737228035927, + -0.01947724260389805, + -0.002492582891136408, + -0.004235516767948866, + -0.01454318966716528, + -0.03723710775375366, + 0.01889115385711193, + -0.009138902649283409, + -0.015974337235093117, + -0.020594902336597443, + -0.03753696754574776, + 0.020772092044353485, + -0.05740948021411896, + 0.028513921424746513, + -0.002916815923526883, + -0.02728722244501114, + 0.019204644486308098, + -0.007060330361127853, + 0.0014234811533242464, + -0.040644604712724686, + -0.007060330361127853, + 0.05375664681196213, + 0.021439960226416588, + 0.006964920554310083, + -0.037918608635663986, + -0.02619682438671589, + 0.0029014823958277702, + -0.007455599959939718, + -0.008784523233771324, + -0.004446781240403652, + -0.012723587453365326, + 0.013003001920878887, + 0.011728598736226559, + 0.0022659844253212214, + 0.008982157334685326, + 0.042443763464689255, + -0.006010821554809809, + -0.011271994560956955, + -0.013943471014499664, + -0.003775504883378744, + -0.015429139137268066, + 0.0007023699581623077, + -0.04895889386534691, + 0.007455599959939718, + 0.018850265070796013, + 0.010474640876054764, + -0.048931632190942764, + 0.02648305334150791, + -0.020540382713079453, + 0.00416395952925086, + 0.022353168576955795, + 0.0270827729254961, + 0.015033869072794914, + -0.006460611242800951, + 0.03590137138962746, + -0.03742792829871178, + 0.00914571713656187, + 0.03421125188469887, + 0.0068320282734930515, + 0.024861086159944534, + 0.005145317874848843, + -0.020622162148356438, + 0.013888951390981674, + -0.014188810251653194, + -0.019613543525338173, + -0.009650026448071003, + 0.003533572657033801, + 0.019858883693814278, + 0.027546191588044167, + -0.021044692024588585, + 0.011674079112708569, + -0.017010217532515526, + 0.004051512107253075, + 0.005148725584149361, + -0.011408294551074505, + -0.009922626428306103, + -0.011537779122591019, + 0.030994577333331108, + 0.03317537531256676, + 0.004177589435130358, + -0.019954292103648186, + -0.02790057100355625, + -0.008988972753286362, + -0.01039967592805624, + 0.02139907144010067, + 0.015388249419629574, + -0.02652394399046898, + -0.01665583811700344, + 0.026019634678959846, + -0.051057908684015274, + -0.028295841068029404, + 0.004157144110649824, + -0.023320898413658142, + 0.035792332142591476, + -0.0001252254587598145, + 0.003291640430688858, + -0.03238483518362045, + 0.023239118978381157, + -0.00552695756778121, + 0.013664056546986103, + -0.006072156596928835, + 0.03759148716926575, + -0.039990365505218506, + 0.005141910631209612, + 0.0324120968580246, + 0.010174781084060669, + -0.001308478182181716, + 0.02837762050330639, + -0.010985764674842358, + -0.01758267544209957, + 0.04557865858078003, + 0.017759865149855614, + 0.004065142013132572, + -0.008007613942027092, + -0.010583680123090744, + 0.0114355543628335, + -0.0027225888334214687, + -0.0036732798907905817, + 0.027314482256770134, + -0.007687309291213751, + 0.02319822832942009, + -0.00215694447979331, + -0.012519137933850288, + -0.017609935253858566, + -0.02675565332174301, + -0.015579069033265114, + -0.009295647032558918, + -0.0028333324007689953, + 0.029876919463276863, + 0.016124267131090164, + 0.0014805566752329469, + 0.00810302421450615, + -0.03854558616876602, + 0.030612938106060028, + -0.012825812213122845, + -0.002080275909975171, + 0.00236820918507874, + 0.025692515075206757, + -0.02483382634818554, + 0.01669672690331936, + -0.0021807970479130745, + -0.026278603821992874, + 0.06673239171504974, + -0.0141615504398942, + -0.0013067744439467788, + -0.0026016226038336754, + 0.0016943770460784435, + -0.007046700455248356, + 0.005618959665298462, + -0.013568646274507046, + 0.007210260257124901, + 0.009943071752786636, + 0.007196630351245403, + -0.004337741527706385, + -0.01642412692308426, + 0.017609935253858566, + -0.00664802361279726, + 0.00969091709703207, + -0.008927637711167336, + -0.02047223225235939, + -0.0014660748420283198, + 0.0032780105248093605, + 0.011149324476718903, + -0.004034474492073059, + -0.021767079830169678, + -0.0012922926107421517, + -0.01938183419406414, + -0.0050226482562720776, + 0.00098561798222363, + -0.011783119291067123, + -0.0018979748710989952, + -0.006879732944071293, + -0.014325110241770744, + -0.021589890122413635, + -0.03524713218212128, + 0.0176917165517807, + -0.0035914999898523092, + -0.023102818056941032, + 0.04334333911538124, + 0.005976746790111065, + -0.01481578964740038, + -0.013248342089354992, + 0.008280213922262192, + 0.0023170968051999807, + 0.013200636953115463, + -0.03284825384616852, + 0.006068749353289604, + -0.04225294291973114, + -0.0007398524321615696, + -0.02199878916144371, + -0.009213867597281933, + -0.016792137175798416, + -0.01621967740356922, + 0.012082978151738644, + -0.0028793334495276213, + 0.0033069741912186146, + -0.042498283088207245, + -0.020949281752109528, + -0.008743632584810257, + -0.005077167879790068, + 0.018741223961114883, + -0.03876366838812828, + 0.00013012373528908938, + -0.03658286854624748, + 0.00952054187655449, + 0.0073806350119411945, + 0.013030261732637882, + 0.038518328219652176, + 0.02648305334150791, + 0.01627419702708721, + 0.010297451168298721, + 0.008661853149533272, + 0.01724192686378956, + 0.004855680745095015, + 0.004392261616885662, + -0.02521546557545662, + 0.015551808290183544, + 0.021426331251859665, + 0.008014429360628128, + 0.01807335577905178, + -0.013146117329597473, + 0.02123551070690155, + 0.005339545197784901, + -0.004852273501455784, + -0.005649627186357975, + -0.006249346304684877, + 0.040590085089206696, + 0.0204177126288414, + 0.023102818056941032, + 0.00571777718141675, + -0.027696121484041214, + 0.010392860509455204, + 0.03151251748204231, + 0.02036319300532341, + 0.002513027749955654, + 0.024806566536426544, + 0.00788494385778904, + 0.023389048874378204, + 0.011864898726344109, + -0.002375024138018489, + -0.0345928929746151, + -0.020622162148356438, + -0.006300458684563637, + 0.0039901770651340485, + -0.0005400879890657961, + 0.011101620271801949, + 0.017541786655783653, + 0.007605529390275478, + -0.007060330361127853, + 0.03876366838812828, + -0.013343751430511475, + -0.0026919213123619556, + 0.0024874715600162745, + 0.01214431319385767, + 0.0020189411006867886, + 0.03306633606553078, + -0.04263458028435707, + 0.0313216969370842, + 0.005598514806479216, + 0.07098494470119476, + -0.012519137933850288, + 0.021276401355862617, + 0.0168739166110754, + -0.03641930967569351, + 0.009731806814670563, + -0.011312884278595448, + 0.011019839905202389, + -0.01653316803276539, + -0.0033086780458688736, + -0.003608537605032325, + 0.004838643595576286, + 0.043152522295713425, + -0.0014541486743837595, + 0.0225985087454319, + -0.0034143102820962667, + -0.025583475828170776, + 0.0075714546255767345, + 0.0002468304301146418, + 0.008648223243653774, + -0.013704946264624596, + 0.021794339641928673, + -0.020676681771874428, + 0.02826858125627041, + 0.012757662683725357, + -0.02750530280172825, + 0.028731999918818474, + 0.023975137621164322, + -0.023457197472453117, + 0.02483382634818554, + -0.017705345526337624, + 0.00048343840171582997, + -0.00436500133946538, + 0.009656841866672039, + -0.010481455363333225, + 0.0020087184384465218, + 0.008995787240564823, + 0.009316092357039452, + 0.00020743127970490605, + -0.04917697235941887, + 0.02779153175652027, + 0.010461010970175266, + 0.013077966868877411, + 0.028241321444511414, + -0.017650825902819633, + 0.009527357295155525, + 0.011537779122591019, + 0.017759865149855614, + 0.006072156596928835, + -0.016887547448277473, + -0.01615152880549431, + -0.015538178384304047, + -0.009159347042441368, + 0.002775405067950487, + 0.024520335718989372, + -0.008239323273301125, + -0.027764271944761276, + -0.021262770518660545, + 0.00886630266904831, + -0.03145799785852432, + -0.011496889404952526, + 0.016669467091560364, + -0.022557619959115982, + -0.00431388895958662, + 0.015224689617753029, + -0.004514931235462427, + -0.03685547038912773, + -0.03399317339062691, + 0.0017787126125767827, + 0.014011620543897152, + -0.014529559761285782, + 0.005513327661901712, + 0.0033086780458688736, + -0.006232309155166149, + -0.0024993978440761566, + -0.013848060742020607, + -0.012621362693607807, + 0.0031519331969320774, + -0.03685547038912773, + -0.011149324476718903, + -0.024820195510983467, + -0.02642853371798992, + -0.01252595242112875, + 0.015129279345273972, + -0.009840846993029118, + -0.015429139137268066, + 0.01264180801808834, + 0.009104827418923378, + -0.015292839147150517, + -0.0027362187393009663, + -0.0028725184965878725, + 0.025174574926495552, + -0.005111243110150099, + -0.0069274380803108215, + -0.0249019768089056, + 0.017609935253858566, + -0.0283231008797884, + 0.05103065073490143, + -0.020935650914907455, + 0.016015227884054184, + -0.018795743584632874, + -0.0335024930536747, + -0.017718976363539696, + 0.02608778513967991, + -0.009029862470924854, + -0.012437357567250729, + 0.03778230771422386, + -0.007987168617546558, + 0.05364760756492615, + 0.012001198716461658, + 0.03511083126068115, + 0.005417917389422655, + 0.002840147353708744, + -0.03750970959663391, + -0.0031723780557513237, + 0.01274403277784586, + 0.0283231008797884, + -0.00421507190912962, + 0.012491878122091293, + 0.02352534793317318, + 0.011612744070589542, + -0.03620123118162155, + 0.014515929855406284, + -0.011755858547985554, + 0.03565603122115135, + -0.0034296440426260233, + -0.037046290934085846, + 0.0020053109619766474, + 0.021876120939850807, + -0.02788694202899933, + 0.025774294510483742, + -0.00637201638892293, + -0.003475645324215293, + -0.002213168190792203, + 0.012757662683725357, + 0.00960913673043251, + 0.018536774441599846, + 0.04486989974975586, + -0.008477848023176193, + 0.005264580249786377, + -0.030667457729578018, + 0.012062533758580685, + -0.0030752646271139383, + 0.017896166071295738, + 0.00810302421450615, + -0.02702825330197811, + 0.01611063815653324, + 0.011530964635312557, + 0.0375642292201519, + 0.028132282197475433, + 0.02865022048354149, + -0.0010861391201615334, + -0.007823609746992588, + -0.0375642292201519, + 0.0009183199726976454, + -0.045496877282857895, + -0.005789334420114756, + -0.0042764064855873585, + -0.01889115385711193, + -0.03314811363816261, + 0.03464741259813309, + -0.00313830329105258, + 0.0359286293387413, + 0.004794346168637276, + 0.01676487736403942, + -0.02276206947863102, + -0.012778107076883316, + -0.008668668568134308, + 0.03279373422265053, + -0.005162355490028858, + -0.010181596502661705, + 0.0321122370660305, + 0.04345238208770752, + -0.005325915291905403, + 0.00960913673043251, + 0.0011381034273654222, + -0.017160147428512573, + -0.011387849226593971, + -0.01359590608626604, + -0.012600917369127274, + 0.02626497484743595, + 0.027873311191797256, + 0.010120261460542679, + -0.02205331064760685, + -0.0283231008797884, + 0.018918413668870926, + -0.025406286120414734, + 0.015170169062912464, + 0.023266378790140152, + 0.03293003514409065, + 0.01391621120274067, + 0.03830024600028992, + -0.02292562834918499, + -0.007148925215005875, + 0.010093001648783684, + 0.01481578964740038, + 0.05187571048736572, + 0.0036051301285624504, + 0.008150728419423103, + -0.031239917501807213, + 0.010236116126179695, + 0.011060729622840881, + 0.030531158670783043, + -0.04187130182981491, + 0.0030173370614647865, + -0.0001989125448744744, + -0.003310381667688489, + -0.003918619826436043, + -0.014938459731638432, + -0.03312085568904877, + -0.023702537640929222, + 0.006041489075869322, + 0.015742627903819084, + 0.020281411707401276, + -0.01589255779981613, + 0.018277805298566818, + -0.051057908684015274, + 0.03167607635259628, + -0.01785527542233467, + -0.06984002143144608, + -0.0014703342458233237, + -0.014979349449276924, + -0.0045421915128827095, + 0.03601041063666344, + 0.019831622019410133, + -0.012723587453365326, + 0.02172619104385376, + 0.0626433938741684, + 0.04688713699579239, + 0.003996992018073797, + 0.02003607340157032, + 0.026510313153266907, + -0.03947242721915245, + 0.011319699697196484, + -0.004003806971013546, + 0.0077350144274532795, + 0.0261423047631979, + 0.029904179275035858, + 0.026891952380537987, + 0.012825812213122845, + -0.019395463168621063, + -0.02533813565969467, + 0.014011620543897152, + -0.0019047899404540658, + 0.0032286017667502165, + 0.03462015092372894, + -0.0035778700839728117, + 0.0249019768089056, + -0.015374618582427502, + -0.00026897917268797755, + 0.0018025650642812252, + 0.016519537195563316, + -0.00641631381586194, + -0.02412506751716137, + 0.00881178304553032, + -0.012151128612458706, + -0.020826611667871475, + 0.009316092357039452, + -0.004242331720888615, + -0.02751893177628517, + 0.03284825384616852, + -0.004610341042280197, + -0.020022442564368248, + 0.0033802352845668793, + -0.007625974714756012, + -0.001322960015386343, + 0.001535928575322032, + 0.009186607785522938, + -0.0056394049897789955, + -0.0059903766959905624, + -0.0015384841244667768, + -0.01942272298038006, + -0.019449982792139053, + 0.011087989434599876, + -0.010794945061206818, + -0.010624570772051811, + 0.008682298474013805, + 0.04012666642665863, + 0.014843049459159374, + -0.013466421514749527, + -0.005724592134356499, + -0.021276401355862617, + 0.009445576928555965, + -0.011013024486601353, + 0.0005119761917740107, + 0.002802664879709482, + 0.03252113610506058, + 0.009684101678431034, + 0.004439966287463903, + 0.010113446041941643, + -0.005986969452351332, + -0.0065696509554982185, + 0.022039679810404778, + 0.013377826660871506, + 0.004562636371701956, + -0.025188205763697624, + 0.011619559489190578, + -0.008975342847406864, + 0.03140347823500633, + 0.0016858583549037576, + 0.01921827346086502, + 0.0030071146320551634, + -0.03669191151857376, + 0.011994383297860622, + -0.009152532555162907, + -0.0017599713755771518, + -0.015429139137268066, + 0.002194426953792572, + -0.015701739117503166, + -0.002455100417137146, + -0.020444972440600395, + 0.009786326438188553, + 0.011360589414834976, + -0.024752046912908554, + 0.0004685306048486382, + -0.0020939058158546686, + -0.004177589435130358, + 0.024002397432923317, + -0.014992979355156422, + -0.03293003514409065, + 0.04056282341480255, + -0.005387250334024429, + -0.0041809966787695885, + 0.011973938904702663, + -0.005380434915423393, + 0.0033376417122781277, + 0.01604248769581318, + -0.0008876525098457932, + -0.0005345508106984198, + 0.03148525580763817, + -0.0033342342358082533, + 0.018972933292388916, + 0.0166013166308403, + -0.003956102300435305, + -0.013323307037353516, + -0.015388249419629574, + -0.014924829825758934, + -0.012764477171003819, + 0.005618959665298462, + -0.016451386734843254, + 0.005363397765904665, + 0.000871466938406229, + -0.048222873359918594, + 0.013807171024382114, + -0.01582440920174122, + -0.003755059791728854, + -0.024820195510983467, + 0.0006312385085038841, + -0.018373215571045876, + -0.012614548206329346, + -0.02565162442624569, + 0.024424927309155464, + -0.017500896006822586, + -0.017500896006822586, + -0.01720103621482849, + 0.0030173370614647865, + -0.01578351855278015, + -0.003860692260786891, + 0.03560151159763336, + 0.000287720380583778, + -0.008552812971174717, + -0.03263017535209656, + 0.005336137488484383, + 0.017814384773373604, + 0.002707255072891712, + 0.003571055131033063, + 0.004903385881334543, + -0.0004540487425401807, + 0.012096608057618141, + -0.023811576887965202, + -0.00712166540324688, + 0.01001803670078516, + 0.014911199919879436, + -0.0031502293422818184, + -0.019354574382305145, + -0.027600713074207306, + -0.018632184714078903, + -0.014938459731638432, + -0.013336936943233013, + 0.013234712183475494, + -0.011081174947321415, + 0.03260291367769241, + 0.00802124384790659, + 0.004753455985337496, + -0.01642412692308426, + -0.0025164352264255285, + 0.0071898153983056545, + 0.025951484218239784, + 0.002552214078605175, + -0.00290659349411726, + -0.01872759498655796, + -0.013773095794022083, + 0.0002525805903133005, + -0.009466022253036499, + 0.03748244792222977, + -0.0032694917172193527, + -0.007844054140150547, + 0.03377509489655495, + 0.008648223243653774, + -0.0315670371055603, + 0.0017199332360178232, + -0.02674202434718609, + -0.010733610019087791, + 0.024493075907230377, + 0.01653316803276539, + 0.004494486376643181, + 0.004773900844156742, + 0.005649627186357975, + -0.018686704337596893, + -0.006535576190799475, + 0.01026337593793869, + -0.009207052178680897, + 0.018427735194563866, + -0.013343751430511475, + -0.01653316803276539, + -0.08085305243730545, + -0.030667457729578018, + -0.01954539306461811, + -0.0091934222728014, + -0.0034040878526866436, + -0.014965719543397427, + 0.018645813688635826, + 0.021903380751609802, + -0.006872917991131544, + 0.010481455363333225, + 0.018250545486807823, + 0.0038266172632575035, + 0.010440565645694733, + 0.016355978325009346, + 0.011394664645195007, + -0.01200801320374012, + -0.023429937660694122, + -0.002703847596421838, + -0.0026016226038336754, + -0.02510642632842064, + -0.025065535679459572, + 0.009840846993029118, + 0.020608531311154366, + 0.0046341936103999615, + -0.02734174206852913, + 0.015619958750903606, + 0.0071898153983056545, + 0.01119021512567997, + -0.010570050217211246, + -0.00257947389036417, + 0.021985160186886787, + 0.022175978869199753, + 0.004719381220638752, + -0.013371012173593044, + -0.011067545041441917, + 0.029795140027999878, + 0.013234712183475494, + -0.011013024486601353, + 0.03393865376710892, + 0.023075558245182037, + 0.013064336962997913, + 0.020812980830669403, + 0.007298855111002922, + -0.00011542890570126474, + -0.01611063815653324, + 0.0076123448088765144, + 0.004555821418762207, + -0.04143514484167099, + 0.022285019978880882, + -0.004477448761463165, + 0.04088994488120079, + -0.01976347342133522, + -0.009581876918673515, + -0.003059930866584182, + 0.0029968922026455402, + 0.025447174906730652, + 2.1057256162748672e-5, + 0.024165956303477287, + -0.015797147527337074, + 0.006150529254227877, + 0.03372057527303696, + 0.0061164540238678455, + -0.01676487736403942, + -0.0053736199624836445, + -0.006668468471616507, + 0.016396867111325264, + 0.011946679092943668, + -0.0005204949411563575, + 0.019695322960615158, + -0.00955461710691452, + -0.006160751450806856, + 0.001266736420802772, + -0.007060330361127853, + 0.031212657690048218, + 0.01992703229188919, + 0.007748644333332777, + 0.020676681771874428, + 0.026346754282712936, + -0.011803563684225082, + -0.0015717071946710348, + -0.022121459245681763, + -0.0159334484487772, + 0.00500901835039258, + 0.018523145467042923, + -0.011408294551074505, + -0.009111642837524414, + 0.008368808776140213, + 0.008914007805287838, + -0.020322302356362343, + 0.0024568040389567614, + 0.006273198872804642, + 0.021467220038175583, + 0.005656442139297724, + 0.014761270023882389, + -0.04225294291973114, + 0.034293033182621, + -0.02865022048354149, + 0.006620763335376978, + -0.005407695192843676, + 0.00030859129037708044, + -0.013800356537103653, + -0.010651830583810806, + 0.0034194216132164, + -0.031049096956849098, + -0.02434314601123333, + -0.0022881331387907267, + 0.00974543672055006, + -0.0034620151855051517, + -0.012396467849612236, + -0.012709957547485828, + -0.022639399394392967, + 0.029795140027999878, + 0.010147521272301674, + -0.01658768765628338, + -0.01758267544209957, + 0.0037686899304389954, + -0.0021262771915644407, + -0.007012625224888325, + -0.01086309552192688, + -0.018523145467042923, + -0.005036278162151575, + 0.017773495987057686, + -0.01998155191540718, + -0.03361153230071068, + 0.020867502316832542, + 0.011837638914585114, + 0.006852473132312298, + -0.014979349449276924, + 0.0013740725116804242, + 0.0017497488297522068, + -0.006818398367613554, + -0.014311480335891247, + -0.006879732944071293, + -0.00712166540324688, + -0.003928842023015022, + 0.00022425578208640218, + 0.020785721018910408, + -0.007346559781581163, + 0.029440760612487793, + -0.009466022253036499, + 0.007775904145091772, + 0.001943976036272943, + -0.00838243868201971, + 0.001252254587598145, + -0.010242930613458157, + 0.010420120321214199, + -0.008116654120385647, + -0.0034875713754445314, + -0.015633588656783104, + -0.011980753391981125, + -0.010549605824053288, + 0.021821599453687668, + 0.021971529349684715, + 0.03881818801164627, + 0.005400880239903927, + -0.046369194984436035, + 0.006232309155166149, + 0.0009532468393445015, + 0.010488270781934261, + 0.0022370207589119673, + -0.012464618310332298, + -0.003949286881834269, + -0.014706749469041824, + 0.023988766595721245, + 0.03293003514409065, + -0.018141504377126694, + -0.01124473474919796, + 0.009404687210917473, + -0.020376821979880333, + -0.018046095967292786, + 0.01845499500632286, + -0.0003252028254792094, + -0.011047099716961384, + -0.017896166071295738, + 0.004879533313214779, + -0.01778712496161461, + -0.019395463168621063, + -0.0318668968975544, + 0.02501101605594158, + 0.00510442815721035, + 0.0017207851633429527, + 0.018155135214328766, + -0.00037439854349941015, + 0.023389048874378204, + -0.0058983745984733105, + 0.013493681326508522, + 0.009915811009705067, + -0.005693924613296986, + -0.010604125447571278, + 0.02528361603617668, + 0.023293638601899147, + -0.007796349469572306, + -0.03753696754574776, + 0.010842650197446346, + -0.003090598387643695, + -0.002349467948079109, + -0.0002745163510553539, + 0.01691480726003647, + 0.0006201641517691314, + 0.006109639070928097, + 0.00019699582480825484, + -0.020622162148356438, + 0.02766886167228222, + -0.007482859771698713, + -0.009309276938438416, + -0.020622162148356438, + -0.023184597492218018, + 0.02941349893808365, + 0.024356776848435402, + -0.030994577333331108, + 0.011742228642106056, + -0.0034143102820962667, + 0.009588692337274551, + -0.030640197917819023, + 0.0055678472854197025, + 0.003243935527279973, + 0.020076962187886238, + -0.01981799304485321, + 0.0052816178649663925, + -0.01763719506561756, + 0.030040478333830833, + -0.019300052896142006, + 0.02221686951816082, + 0.006201641634106636, + 0.02178071066737175, + -0.005901781842112541, + 0.01621967740356922, + -0.014829419553279877, + -0.02009059302508831, + -0.013057522475719452, + -0.005748444702476263, + 0.001024804194457829, + -0.034293033182621, + -0.012341948226094246, + -0.024929236620664597, + -0.00594948697835207, + 0.06504227221012115, + -0.014120660722255707, + 0.013200636953115463, + -0.002649327740073204, + -0.0201451126486063, + 0.0054451776668429375, + 0.0030309672001749277, + 0.009016232565045357, + 0.040262963622808456, + 0.011278809979557991, + -0.0007189814932644367, + -0.003823209786787629, + 0.018659444525837898, + 0.00539065757766366, + -0.003099116962403059, + -0.0053736199624836445, + -0.018604924902319908, + 0.0008169470238499343, + -0.006814990658313036, + -0.026060523465275764, + 0.0375642292201519, + 0.015538178384304047, + 0.01571536809206009, + 0.0074487850069999695, + -0.02221686951816082, + 0.005189615301787853, + 0.01980436220765114, + -0.009459206834435463, + 0.01778712496161461, + -0.01915012300014496, + 0.010229300707578659, + 0.04236198216676712, + 0.01362316682934761, + -0.0010691016213968396, + 0.002956002252176404, + 0.01904108375310898, + -0.011401479132473469, + -0.0063754236325621605, + -0.018741223961114883, + -0.00917297787964344, + -0.0009805067675188184, + -0.014747640118002892, + -0.009595506824553013, + 0.007244335021823645, + -0.03884544596076012, + 0.024261366575956345, + -0.024152327328920364, + 0.022680288180708885, + 0.009295647032558918, + -0.005015833303332329, + -0.0015035573160275817, + -0.01736459694802761, + 0.025474434718489647, + 0.006106231827288866, + 0.03284825384616852, + 0.026333123445510864, + -4.6879682486178353e-5, + 0.0049919807352125645, + -0.0064469813369214535, + 0.004041289445012808, + 0.0027651824057102203, + 0.02248946949839592, + 0.021085580810904503, + -0.002986669773235917, + 0.02636038325726986, + 0.015456398949027061, + -0.029658839106559753, + 0.00023831170983612537, + 0.011755858547985554, + -0.00015951337991282344, + 0.03453837335109711, + -0.006930845323950052, + 0.0013629981549456716, + -0.0025760664138942957, + 0.023702537640929222, + 0.0068967705592513084, + -0.01264180801808834, + -0.027382632717490196, + -9.663443779572845e-5, + 0.010992580093443394, + 0.014979349449276924, + 0.009738621301949024, + 0.019136494025588036, + -0.03614671155810356, + 0.008879932574927807, + 0.03729162737727165, + 0.0162060484290123, + -0.004715973511338234, + -0.025447174906730652, + -0.030912797898054123, + -0.01965443231165409, + 0.011769488453865051, + 0.0004301962908357382, + 0.0013681093696504831, + -0.008873118087649345, + -0.0006027007475495338, + -0.015919817611575127, + -0.020567642524838448, + 0.004099216777831316, + -0.007625974714756012, + -0.00821206346154213, + 0.014311480335891247, + 0.009772696532309055, + 0.0008062985725700855, + 0.013152931816875935, + 0.019449982792139053, + 0.005690517369657755, + 0.01767808571457863, + 0.02494286559522152, + 0.024970125406980515, + -0.008361993357539177, + 0.03960872441530228, + 0.013166561722755432, + -0.017705345526337624, + 0.011721784248948097, + -0.014693119563162327, + -0.01649227738380432, + 0.010883539915084839, + 0.0026799950283020735, + 0.01405251119285822, + 0.011067545041441917, + 0.0037720974069088697, + -0.025787925347685814, + -0.04639645665884018, + -0.018277805298566818, + 0.009540987201035023, + 0.004000399727374315, + 0.005036278162151575, + -0.01681939698755741, + 0.002194426953792572, + -0.004651231225579977, + -0.008266584016382694, + -0.007278410252183676, + -0.007394264917820692, + -0.002899778541177511, + -0.0198725126683712, + -0.011714968830347061, + 0.004266184289008379, + -0.001006062957458198, + -0.001662005903199315, + -0.03481097146868706, + 0.009806771762669086, + 0.014597710222005844, + -0.03246661648154259, + -0.011033469811081886, + 0.0041844043880701065, + -0.028786521404981613, + -0.023075558245182037, + -0.004395668860524893, + -0.008375623263418674, + -0.017841646447777748, + 0.012287428602576256, + -0.009636396542191505, + 0.004446781240403652, + -0.0010520642390474677, + -0.0054724374786019325, + 0.020513121038675308, + 0.024438556283712387, + 0.009874921292066574, + 0.0076668644323945045, + -0.0174191165715456, + -0.0036732798907905817, + -0.048822592943906784, + 0.0010929540731012821, + -0.039554204791784286, + 0.024547595530748367, + 0.002436359180137515, + 0.025801554322242737, + -0.019886143505573273, + 0.02238043025135994, + -0.003966324497014284, + 0.0261423047631979, + -0.011987568810582161, + -0.027164552360773087, + -0.010058926418423653, + 0.005012425594031811, + -0.0024329517036676407, + -0.014693119563162327, + -0.03175785765051842, + 0.009275202639400959, + -0.017664456740021706, + 0.0017667863285169005, + 0.0099362563341856, + -0.005779112223535776, + -0.009534171782433987, + -0.0064708334393799305, + -0.02570614404976368, + -0.01713288575410843, + -0.013282416388392448, + 0.0003624723176471889, + -0.020703941583633423, + -0.002683402504771948, + -0.0013221082044765353, + -0.019559023901820183, + -0.006750248372554779, + -0.0014251848915591836, + 0.01980436220765114, + 0.002538583939895034, + 0.015565439127385616, + -0.0017531563062220812, + 0.01285307202488184, + 0.003840247169137001, + 0.01392302569001913, + -0.018086984753608704, + 0.004876125603914261, + -0.040099404752254486, + -0.0015095204580575228, + -0.009241127409040928, + -0.0016194122144952416, + -0.01756904646754265, + -0.0007607233128510416, + -0.042062122374773026, + 0.017868906259536743, + 0.04781397432088852, + 0.017487265169620514, + -0.02751893177628517, + 0.002610141411423683, + 0.0028742223512381315, + -0.008689112961292267, + -0.004044697154313326, + 0.013187007047235966, + 0.028295841068029404, + -0.015360988676548004, + 0.019913403317332268, + 0.023443568497896194, + 0.01691480726003647, + -0.00477730855345726, + 0.00759871443733573, + -0.01669672690331936, + 0.013670871034264565, + 0.03470193222165108, + -0.0024874715600162745, + -0.0285957008600235, + -0.009704547002911568, + 0.03006773814558983, + 0.009874921292066574, + -0.022625768557190895, + 0.005274802912026644, + 0.025474434718489647, + -0.049367792904376984, + -0.023021038621664047, + 0.016192417591810226, + 0.007605529390275478, + -0.011885344050824642, + 0.012328318320214748, + -0.009568247012794018, + 0.01807335577905178, + 0.016901176422834396, + 0.017882535234093666, + -0.04328881949186325, + 0.011735414154827595, + -0.0008667816291563213, + -0.007421524729579687, + 0.025297245010733604, + -0.029168160632252693, + -0.005124873016029596, + -0.017269186675548553, + 0.015170169062912464, + 0.02385246753692627, + -0.006256161257624626, + -0.017596306279301643, + -0.0005388102144934237, + -0.017173776403069496, + 0.010106631554663181, + -0.003850469831377268, + -0.03426577150821686, + -0.0408354252576828, + 0.0021399070974439383, + 0.011415109038352966, + -0.012962112203240395, + -0.00552695756778121, + 0.010099816136062145, + 0.0039049896877259016, + -0.01647864654660225, + -0.024356776848435402, + -0.006406091153621674, + -0.016410497948527336, + -0.0013698131078854203, + -0.02276206947863102, + -0.011578668840229511, + 0.015088389627635479, + -0.019695322960615158, + -0.015919817611575127, + 0.017119256779551506, + -0.008477848023176193, + -0.002339245518669486, + -0.011149324476718903, + -0.01805972494184971, + -0.014447780326008797, + 0.012307872995734215, + -0.008273398503661156, + 0.0036937249824404716, + -0.004726196173578501, + -0.012996187433600426, + 0.004998795688152313, + 0.010120261460542679, + -0.002088794717565179, + 0.011749044060707092, + 0.002523250412195921, + -0.013050707057118416, + 0.000995840528048575, + 0.0059937844052910805, + -0.01260773278772831, + -0.016287827864289284, + -0.009152532555162907, + -0.016833027824759483, + -0.002395469229668379, + 0.005070352926850319, + -0.009854476898908615, + 0.07338382303714752, + 0.0033086780458688736, + -0.007244335021823645, + 0.0056325895711779594, + 0.000625275366473943, + -0.007489674724638462, + 0.009650026448071003, + 0.03039485774934292, + 0.010283821262419224, + 0.012042088434100151, + -0.027205443009734154, + -0.04710521548986435, + 0.0010077666956931353, + -0.00034181438968516886, + -0.030285818502306938, + 0.008409698493778706, + 0.0027362187393009663, + 0.007278410252183676, + 0.004071956966072321, + 0.0015844852896407247, + 0.012812182307243347, + 0.0141615504398942, + -0.014202440157532692, + 0.02773701213300228, + -0.003703947411850095, + -0.0007104628020897508, + 0.006327718961983919, + 0.016833027824759483, + -0.015292839147150517, + 0.02592422440648079, + -0.008225693367421627, + -0.002485767938196659, + -0.023661646991968155, + 0.007319299969822168, + 0.008389253169298172, + 0.0003256287600379437, + -0.0002502379356883466, + 0.004497893620282412, + -0.002378431847319007, + 0.02434314601123333, + 0.006269791629165411, + -0.015156539157032967, + 0.018700335174798965, + 0.0009106531506404281, + -0.005077167879790068, + 0.010692720301449299, + -0.010815390385687351, + 0.0011977346148341894, + 0.011340144090354443, + -0.002136499620974064, + -0.01578351855278015, + 0.004007214680314064, + 0.00759871443733573, + -0.00020306542865000665, + -0.008968527428805828, + -0.017773495987057686, + 0.014079771004617214, + -0.010617755353450775, + -0.0040174368768930435, + 0.0028827411588281393, + -0.014502299949526787, + -0.0037857273127883673, + -0.024861086159944534, + -0.03412947431206703, + 0.012491878122091293, + 0.007687309291213751, + 0.000563088629860431, + 0.0007194074569270015, + 0.005305470433086157, + 0.007700939662754536, + -0.002099017146974802, + 0.008961712941527367, + 0.0014234811533242464, + -0.013166561722755432, + -0.012594102881848812, + 0.024097807705402374, + -0.006791138090193272, + -0.00036630575777962804, + 0.015742627903819084, + -0.02145359106361866, + 0.01078131515532732, + 0.007939464412629604, + 9.204230991599616e-6, + -0.018863894045352936, + 0.019368203356862068, + -0.018536774441599846, + 0.021112840622663498, + -0.005203245207667351, + -0.0032013419549912214, + -0.0010486566461622715, + -0.022312279790639877, + 0.018918413668870926, + -0.010719980113208294, + -0.00011660023301374167, + 0.00229324446991086, + -0.010167965665459633, + -0.015088389627635479, + -0.020717572420835495, + 0.02243494987487793, + -0.01773260533809662, + 0.0091934222728014, + 0.0005013277404941618, + 0.015183798968791962, + 0.006092601455748081, + 0.015306469053030014, + 0.004630786366760731, + 0.018318694084882736, + 0.010542790405452251, + -0.019300052896142006, + 0.0025573251768946648, + 0.006242531351745129, + -0.005193023011088371, + -0.006791138090193272, + -0.020894762128591537, + -0.022966518998146057, + 0.005690517369657755, + 0.006307274103164673, + -0.01350731123238802, + -0.014475040137767792, + -0.021426331251859665, + 0.005564440041780472, + -0.003492682706564665, + 0.0051862080581486225, + -0.003956102300435305, + -0.01883663423359394, + -0.004307074006646872, + -0.019259164109826088, + -0.005503104999661446, + -0.007496489677578211, + 0.003554017748683691, + 0.0034534966107457876, + 0.010829020291566849, + 0.015510918572545052, + 0.0009123568888753653, + 0.010842650197446346, + 0.0059222267009317875, + 0.01007255632430315, + 0.005687109660357237, + 0.013568646274507046, + -0.005888151936233044, + 0.006389053538441658, + 0.025624364614486694, + 0.0008267435478046536, + 0.022571248933672905, + -0.0009489874355494976, + 0.012948482297360897, + 0.004770493600517511, + -0.013077966868877411, + 0.013371012173593044, + 0.010767685249447823, + 0.025501694530248642, + -0.013575461693108082, + 0.0027174775023013353, + -0.00759871443733573, + -0.008634593337774277, + 0.017173776403069496, + -0.011742228642106056, + 0.010542790405452251, + 6.974716961849481e-5, + -0.023048298433423042, + 0.0005588292260654271, + -0.018604924902319908, + -0.022012419998645782, + -0.004388853907585144, + -0.024411296471953392, + 0.024043286219239235, + 0.018550405278801918, + 0.009813586249947548, + 0.018986564129590988, + -0.007155740167945623, + -0.024792935699224472, + 0.008839042857289314, + -0.015974337235093117, + -0.042389243841171265, + 0.011101620271801949, + 0.002552214078605175, + 0.001697784522548318, + 0.007196630351245403, + -0.015224689617753029, + 0.011640003882348537, + 0.0074760448187589645, + -0.005755259655416012, + 0.023947877809405327, + -0.01976347342133522, + 0.009956701658666134, + -0.011592298746109009, + 0.01844136416912079, + -0.006232309155166149, + -0.003714169841259718, + 0.002467026701197028, + -0.006293643731623888, + 0.002685106359422207, + -0.013105226680636406, + -0.005932449363172054, + -0.012369208037853241, + 0.0013127375859767199, + 0.01676487736403942, + 0.03306633606553078, + -0.00693425303325057, + 0.006058526691049337, + -0.019027454778552055, + 0.004698935896158218, + 0.0005801260704174638, + -0.013459607027471066, + 0.009874921292066574, + -0.011592298746109009, + -0.005809779744595289, + -0.018700335174798965, + 0.001867307466454804, + 0.014338740147650242, + -0.039554204791784286, + -0.0176917165517807, + 0.021603520959615707, + 0.012566843070089817, + -0.018155135214328766, + 0.024315886199474335, + 0.0008663556654937565, + -0.00018517607531975955, + 0.026237715035676956, + 0.007523749489337206, + 0.014897570013999939, + 0.006886547897011042, + 0.020335931330919266, + -0.029168160632252693, + 0.004416114185005426, + 0.026074154302477837, + 0.024683896452188492, + -0.004457003902643919, + 0.021767079830169678, + -9.461124136578292e-5, + 0.038654625415802, + 0.0008552813087590039, + 0.006596910767257214, + 0.010024851188063622, + 0.02347082830965519, + 0.01762356609106064, + 0.020676681771874428, + -0.0029798545874655247, + 0.0075441948138177395, + -0.009629582054913044, + -0.0013885543448850513, + 0.014597710222005844, + -0.0008706150692887604, + 0.008723188191652298, + 0.00024065436446107924, + 0.006150529254227877, + -0.007094405125826597, + -0.0036051301285624504, + 0.024220477789640427, + -2.6181809516856447e-5, + 0.008757263422012329, + -0.012478248216211796, + -0.02528361603617668, + 0.023239118978381157, + 0.004882941022515297, + 0.009411501698195934, + 0.025583475828170776, + -0.010229300707578659, + -0.0009404686861671507, + 0.001308478182181716, + -0.016124267131090164, + 0.003727799979969859, + 0.00952054187655449, + -0.011408294551074505, + 0.010222486220300198, + 0.02521546557545662, + -0.01298937201499939, + -0.004051512107253075, + -0.02145359106361866, + 0.009820401668548584, + -0.007510119583457708, + 0.0021807970479130745, + 0.009391057305037975, + 0.006290236487984657, + -0.02363438718020916, + -0.01083583477884531, + 0.005700739566236734, + 0.011905788443982601, + 0.0027856274973601103, + 0.0010120260994881392, + -0.00445018894970417, + -0.02101743035018444, + -0.00903667788952589, + -0.022516729310154915, + 0.005380434915423393, + -0.03140347823500633, + -0.012825812213122845, + 0.011612744070589542, + -0.01500660926103592, + 0.00721707521006465, + 0.004463818855583668, + -0.014802159741520882, + 0.01883663423359394, + -0.0017718975432217121, + -0.007551009766757488, + 0.0036698724143207073, + -0.002243835711851716, + 0.015974337235093117, + 0.02424773760139942, + -0.013030261732637882, + 0.0068967705592513084, + 0.012389653362333775, + -0.008130284026265144, + -0.02751893177628517, + 0.00957506150007248, + 0.014175180345773697, + 0.029168160632252693, + -0.00999077595770359, + 0.009527357295155525, + 0.016465017572045326, + -0.01264180801808834, + 0.00365624250844121, + -0.004201441537588835, + -0.005206652916967869, + 0.005727999843657017, + 0.003727799979969859, + 0.017119256779551506, + 0.02145359106361866, + -0.00969091709703207, + 0.013152931816875935, + -0.022353168576955795, + 0.004446781240403652, + -0.010672274976968765, + -0.0033154929988086224, + 0.023825207725167274, + 0.012655437923967838, + 0.020922021940350533, + 0.027914201840758324, + 0.019749842584133148, + 0.007789534516632557, + 0.0041844043880701065, + -0.0008003354887478054, + -0.021031061187386513, + -0.0009992480045184493, + -0.011415109038352966, + 0.020840240642428398, + -0.010079370811581612, + -0.010672274976968765, + -0.025910595431923866, + -0.013984360732138157, + -0.006239124108105898, + -0.001285477657802403, + -0.010699535720050335, + -0.00922749750316143, + 0.01487030927091837, + 0.04844095557928085, + 0.011660449206829071, + -0.022012419998645782, + 0.0031706744339317083, + 0.0206903126090765, + 0.02019963227212429, + -0.0008552813087590039, + -0.0020853872410953045, + -0.030640197917819023, + -0.02090839110314846, + -0.01039967592805624, + -0.0053497678600251675, + -0.005288432817906141, + -0.01949087344110012, + -0.010951690375804901, + -0.0010895465966314077, + 0.03611944988369942, + -0.009731806814670563, + -0.0040889945812523365, + 0.01724192686378956, + -0.014611340127885342, + -8.337714825756848e-5, + 0.01800520531833172, + -0.01709199696779251, + 0.018223285675048828, + -9.216210310114548e-5, + -0.021985160186886787, + -0.024806566536426544, + -0.01850951462984085, + 0.009636396542191505, + -0.010167965665459633, + 0.009254757314920425, + 0.011769488453865051, + -0.009643211960792542, + 0.006010821554809809, + 0.01604248769581318, + -0.009009418077766895, + -0.006767285522073507, + 0.009350167587399483, + 0.0011645115446299314, + 0.0008995787939056754, + 0.0005013277404941618, + 0.007135295309126377, + -0.022285019978880882, + -0.005319100338965654, + -0.006344756111502647, + 0.017937054857611656, + 0.02216234989464283, + -0.01976347342133522, + -0.004194626584649086, + -0.006651430856436491, + -0.010242930613458157, + 0.004082179628312588, + -0.008505108766257763, + -0.0062834215350449085, + 0.0029951883479952812, + -0.009397871792316437, + -0.0017156739486381412, + -0.0099362563341856, + -0.007394264917820692, + -0.023048298433423042, + 0.0011457703076303005, + 0.011789933778345585, + 0.005482660140842199, + -0.021712560206651688, + 0.021058320999145508, + 0.011401479132473469, + 0.0008893563062883914, + 0.011067545041441917, + 0.004457003902643919, + -0.005302062723785639, + 0.01905471459031105, + -0.00952054187655449, + 0.017119256779551506, + 0.005203245207667351, + 0.0055371797643601894, + 0.001896271132864058, + -0.00021190362167544663, + -0.004283221438527107, + -0.019586283713579178, + 0.025569844990968704, + 0.03175785765051842, + -0.008225693367421627, + 0.0035472025629132986, + 0.013555016368627548, + -0.00797353871166706, + -0.017937054857611656, + 0.01279855240136385, + 0.003157044528052211, + -0.02079935185611248, + 0.00590859679505229, + 0.007625974714756012, + -0.017500896006822586, + 0.006436758674681187, + 0.02330726757645607, + -0.015429139137268066, + -0.011878528632223606, + -0.007878129370510578, + -0.007585084531456232, + -0.0031025244388729334, + 0.02963157929480076, + -0.004722788464277983, + 0.01762356609106064, + -0.009813586249947548, + -0.018959304317831993, + -0.01632871851325035, + 0.00651172362267971, + -0.0021927233319729567, + -0.0006359238177537918, + -0.012076163664460182, + -0.03301181644201279, + 0.013575461693108082, + 0.007789534516632557, + 0.006464018486440182, + -0.0066650607623159885, + 0.008757263422012329, + -0.0012394763762131333, + 0.005806372035294771, + -0.014992979355156422, + 0.0012905888725072145, + 5.404074545367621e-5, + 0.005124873016029596, + 0.021385440602898598, + 0.0026799950283020735, + 0.0030752646271139383, + -0.015701739117503166, + 0.019204644486308098, + 0.007564639672636986, + -0.012839442119002342, + -0.006654838565737009, + 0.01850951462984085, + -0.028841041028499603, + 0.011714968830347061, + 0.0276279728859663, + -0.01298937201499939, + 0.004525153897702694, + 0.0006103676278144121, + 0.004903385881334543, + -0.0016526352846994996, + 0.03519261255860329, + -0.01707836613059044, + -0.01091761514544487, + 0.009656841866672039, + 0.0018826412269845605, + 0.0003712040197569877, + -0.0087095582857728, + 0.012600917369127274, + -0.004399076569825411, + 0.006770693231374025, + -0.006498093716800213, + 0.00675365561619401, + 0.009186607785522938, + 0.029113641008734703, + -0.0023051705211400986, + -0.0039220270700752735, + -0.0050907982513308525, + -0.009104827418923378, + 0.023879727348685265, + 0.009922626428306103, + -0.00679795304313302, + 0.011565038934350014, + -0.011278809979557991, + 0.015851669013500214, + 0.0348382331430912, + -0.0010665460722520947, + 0.009629582054913044, + -0.0008216323330998421, + -0.00525435758754611, + -0.0013647018931806087, + -0.013520941138267517, + -0.005264580249786377, + 0.018318694084882736, + 0.002751552499830723, + 0.02543354593217373, + 0.0031723780557513237, + 0.001438814913854003, + -0.02178071066737175, + 0.005308877676725388, + 0.0007083331001922488, + -0.011224289424717426, + 0.010358786210417747, + 0.005751851946115494, + -0.009813586249947548, + 0.0029594097286462784, + 0.004855680745095015, + -0.002645920030772686, + 0.009370611980557442, + 0.0015222985530272126, + -0.003911804873496294, + 0.004572858568280935, + 0.012219278141856194, + -0.005203245207667351, + -0.013248342089354992, + 0.03159429505467415, + -0.00840288307517767, + -0.009050307795405388, + 0.010242930613458157, + 0.01849588379263878, + -0.025392655283212662, + -0.007264779880642891, + -0.01915012300014496, + -0.009840846993029118, + 0.007244335021823645, + -0.012042088434100151, + 0.003310381667688489, + -0.02368890680372715, + 0.011844453401863575, + 0.01724192686378956, + 0.00187582615762949, + 0.007748644333332777, + -0.020567642524838448, + -0.009949886240065098, + 9.807197784539312e-5, + -0.001428592368029058, + 0.004593303892761469, + -0.00824613869190216, + -0.01589255779981613, + -0.024111436679959297, + 0.009568247012794018, + -0.003891359781846404, + -0.0046341936103999615, + 0.00669913599267602, + 0.006126676686108112, + 0.01587892882525921, + 0.006058526691049337, + -0.022625768557190895, + -0.004320703912526369, + -0.039935845881700516, + -0.02739626169204712, + 0.0035369801335036755, + 0.007060330361127853, + -0.0030463007278740406, + 0.0005779963685199618, + 0.014256960712373257, + 0.001877529895864427, + -0.0038061724044382572, + -0.01587892882525921, + -0.01649227738380432, + 0.0012922926107421517, + -0.004644416272640228, + 0.02625134401023388, + -0.00018656036991160363, + 0.005424732808023691, + 0.01391621120274067, + -0.011333329603075981, + 0.03352975472807884, + -0.011851268820464611, + -0.023538976907730103, + 0.008545998483896255, + -0.002610141411423683, + -0.0014311480335891247, + -0.015292839147150517, + -0.014774899929761887, + -0.009786326438188553, + -0.019736213609576225, + -0.0077077546156942844, + 0.017391856759786606, + 0.0045421915128827095, + 0.0004710862413048744, + -0.0046648611314594746, + 0.004187811631709337, + 0.02248946949839592, + -0.021658040583133698, + -0.012846257537603378, + -0.022802958264946938, + -0.003554017748683691, + 0.01255321316421032, + -0.01110843475908041, + -0.013139301910996437, + 0.014802159741520882, + -0.007673679385334253, + 0.022366799414157867, + -0.0006269791629165411, + 0.01796431466937065, + -0.012818997725844383, + -0.024302257224917412, + -0.020322302356362343, + 0.008171173743903637, + -0.0010699535487219691, + -0.0006712765898555517, + 0.011721784248948097, + -0.007339744828641415, + -0.0017028958536684513, + 0.009084383025765419, + -0.007905389182269573, + -0.004191219341009855, + 0.004010621923953295, + 0.018686704337596893, + -0.007435154635459185, + 0.006661653518676758, + -0.014134290628135204, + -0.014911199919879436, + -0.018754854798316956, + 0.010351970791816711, + -0.010624570772051811, + 0.003262676764279604, + -0.00416395952925086, + -0.010965320281684399, + 0.01383443083614111, + 0.015333728864789009, + -0.0027464411687105894, + 0.01801883615553379, + -0.0025062127970159054, + -0.0036460200790315866, + 0.001984866103157401, + -0.018877524882555008, + 0.01763719506561756, + -0.0166013166308403, + 0.005336137488484383, + -0.008505108766257763, + -0.00909119751304388, + 0.006487871054559946, + -0.011735414154827595, + 0.01636960729956627, + -0.0321122370660305, + -0.009425132535398006, + -0.023484457284212112, + -0.01833232492208481, + 0.014911199919879436, + -0.01632871851325035, + -0.01391621120274067, + 0.01883663423359394, + -0.009983961470425129, + -0.010604125447571278, + 0.0007611492765136063, + -0.0014762973878532648, + 0.010256560519337654, + -0.008287028409540653, + 0.0004906793474219739, + -0.009854476898908615, + -0.028404880315065384, + -0.019572652876377106, + -0.016846656799316406, + -0.012096608057618141, + -0.047950275242328644, + 0.00670254323631525, + 0.006164159160107374, + -0.01900019310414791, + 0.006007414311170578, + -1.2205754501337651e-5, + -0.0004966424312442541, + -0.0067332107573747635, + -0.0038266172632575035, + -0.015374618582427502, + -0.0002657846489455551, + -0.004957905504852533, + -0.04094446450471878, + -0.008770893327891827, + -0.0069921803660690784, + 0.022039679810404778, + 0.003492682706564665, + -0.012921222485601902, + -0.005601922515779734, + 0.00043552048737183213, + -0.021031061187386513, + -0.026987362653017044, + -0.009943071752786636, + 0.002301763044670224, + -0.018809374421834946, + 0.009445576928555965, + -0.021821599453687668, + 0.010481455363333225, + 0.0018059725407510996, + 0.009752251207828522, + 0.005322507582604885, + 0.00900260265916586, + -0.0014251848915591836, + -0.011237919330596924, + 0.003908397164195776, + -0.000983062433078885, + -0.009309276938438416, + 0.007741829380393028, + -0.02248946949839592, + -0.005557625088840723, + 0.005942672025412321, + -0.0016321903094649315, + 0.019668063148856163, + 2.9762342819594778e-5, + 0.02766886167228222, + 0.008559628389775753, + -0.011231104843318462, + -0.007128480356186628, + -0.002201241906732321, + -0.0340476930141449, + 0.028841041028499603, + 0.010767685249447823, + 0.006740025710314512, + -0.014066141098737717, + -0.003976547159254551, + -0.011912603862583637, + -0.0015904484316706657, + 0.0053497678600251675, + -0.014938459731638432, + 0.01947724260389805, + 0.015156539157032967, + -0.0049238307401537895, + -0.014515929855406284, + -0.00815754383802414, + 0.010822204872965813, + 0.023348158225417137, + -0.00717618502676487, + 0.001925234915688634, + -0.004232109058648348, + -0.015483658760786057, + 0.0011142509756609797, + -0.0075441948138177395, + -0.02794146165251732, + 0.024861086159944534, + -0.0008442069520242512, + -0.006835435517132282, + 0.0028248135931789875, + -0.004351371433585882, + -0.014011620543897152, + 0.018196025863289833, + 0.004126477055251598, + 0.0054724374786019325, + -0.005649627186357975, + -0.006068749353289604, + 0.0009549505775794387, + -0.009588692337274551, + -0.00800079945474863, + -0.0031706744339317083, + -0.005983561743050814, + -0.01567447930574417, + 0.009329722262918949, + -0.006579873617738485, + -0.0026220676954835653, + -0.010924429632723331, + 0.0019967921543866396, + -0.007360190153121948, + -0.01647864654660225, + -0.00019422723562456667, + 0.005680294707417488, + 0.0023375418968498707, + 0.01078131515532732, + 0.0038266172632575035, + 0.03674643114209175, + -0.01833232492208481, + 0.012069348245859146, + 0.0015529659576714039, + -0.00717618502676487, + 0.03380235284566879, + 0.017868906259536743, + 0.019204644486308098, + -0.004232109058648348, + 0.02407054789364338, + 0.0038198023103177547, + -0.014883940108120441, + -0.010358786210417747, + 0.02637401409447193, + 0.007673679385334253, + 0.011408294551074505, + -0.011081174947321415, + -0.005550810135900974, + 0.0001517400232842192, + -0.0005494586075656116, + 0.004947683308273554, + -0.0030786721035838127, + -0.00656283600255847, + 0.0008254657732322812, + 0.02501101605594158, + -0.014965719543397427, + 0.01725555583834648, + 0.004525153897702694, + -0.007775904145091772, + -0.004467226564884186, + 0.0005430695600807667, + -0.018155135214328766, + 0.013030261732637882, + 0.012839442119002342, + -0.0005856632487848401, + 0.01026337593793869, + -0.001800861326046288, + 0.0038334322161972523, + 0.014720380306243896, + -0.012709957547485828, + -0.0012301058741286397, + 0.02625134401023388, + 0.007435154635459185, + -0.024874715134501457, + 3.316983566037379e-5, + 0.0007360189920291305, + -0.005032870452851057, + -0.004024251829832792, + -0.009138902649283409, + 0.006198233924806118, + -0.005264580249786377, + -0.011694524437189102, + 0.05062175169587135, + 0.0056359972804784775, + -0.01773260533809662, + -0.0001409851247444749, + 0.01481578964740038, + -0.00012022069859085605, + -0.011864898726344109, + 0.01296892762184143, + -0.018359584733843803, + 0.020172372460365295, + -0.0014072955818846822, + -0.005267987959086895, + -0.004600118845701218, + 0.015974337235093117, + 0.01747363619506359, + -0.030803758651018143, + -0.018659444525837898, + -0.0056325895711779594, + 0.0015350766479969025, + -0.0036460200790315866, + -0.01424333080649376, + -0.019913403317332268, + 0.01392302569001913, + -0.0001696293766144663, + -0.0007394264684990048, + 0.006521946284919977, + -0.011769488453865051, + 0.0019286423921585083, + -0.003473941469565034, + 0.00797353871166706, + -0.008695928379893303, + 0.017432745546102524, + -0.025406286120414734, + 0.00412306934595108, + 0.005874522030353546, + -0.008750448003411293, + -0.011278809979557991, + -0.0031877118162810802, + -0.005026055499911308, + 0.011306069791316986, + 0.008927637711167336, + 0.0035574252251535654, + 0.0031314881052821875, + 0.031948674470186234, + -0.011653633788228035, + -0.01664220727980137, + 0.025065535679459572, + -0.016465017572045326, + -0.002705551218241453, + 0.011006209999322891, + 0.01915012300014496, + -0.0015325209824368358, + -0.023211859166622162, + 0.030422117561101913, + -0.003799357218667865, + -0.0019081974169239402, + 0.014202440157532692, + 0.021439960226416588, + 0.005710962228477001, + 0.01833232492208481, + 0.0049272384494543076, + -0.001761675113812089, + 0.023552607744932175, + 0.012791737914085388, + 0.0027958499267697334, + -0.014556820504367352, + -0.0034143102820962667, + 0.008443773724138737, + 0.0195999126881361, + -0.01587892882525921, + -0.010958504863083363, + -0.0005324211670085788, + -0.008423328399658203, + -0.043043479323387146, + -0.013445976190268993, + 0.005874522030353546, + 0.024384036660194397, + -0.0036937249824404716, + -0.01840047538280487, + 0.020758461207151413, + -0.004743233323097229, + 0.005564440041780472, + 0.009847661480307579, + -0.0020274596754461527, + -0.021753450855612755, + -0.008948083035647869, + -0.03761874884366989, + 0.0011815490433946252, + -0.002194426953792572, + -0.008716372773051262, + 0.0003626852994784713, + -0.021099211648106575, + -0.01296892762184143, + -0.021535370498895645, + 0.004484263714402914, + -0.013084782287478447, + -0.0051180580630898476, + 0.011892158538103104, + 0.014761270023882389, + -0.004688713699579239, + -0.0030190409161150455, + -0.01605611853301525, + -0.005554217379540205, + -0.005244135390967131, + -0.01233513280749321, + -0.0036937249824404716, + -0.021031061187386513, + 0.00450130132958293, + -0.008879932574927807, + 0.015115649439394474, + -0.0074487850069999695, + -0.024056917056441307, + 0.010093001648783684, + 0.0028912597335875034, + -0.00810302421450615, + -0.002974743489176035, + -0.003310381667688489, + -0.004763678647577763, + 0.00539065757766366, + -0.0015657440526410937, + 0.0014072955818846822, + -0.00041017725015990436, + -0.0026731800753623247, + 0.003979954402893782, + -0.01567447930574417, + -0.006252754013985395, + -0.020349562168121338, + 0.011749044060707092, + -0.0044433739967644215, + 0.007455599959939718, + -0.02674202434718609, + -0.020540382713079453, + 0.007012625224888325, + 0.019627172499895096, + -0.002041089814156294, + -0.009016232565045357, + -0.0032967517618089914, + 0.0031314881052821875, + 0.0223259087651968, + 0.00851873867213726, + 0.02565162442624569, + 0.02030867151916027, + 0.038681887090206146, + -0.022830218076705933, + 0.013527756556868553, + -0.02870474010705948, + 0.01904108375310898, + -0.021685300394892693, + -0.007060330361127853, + 0.02205331064760685, + 0.007850869558751583, + -0.017119256779551506, + 0.007796349469572306, + 0.012212463654577732, + 0.002233613282442093, + 0.01582440920174122, + -0.003918619826436043, + 0.008137098513543606, + -0.023757057264447212, + 0.006038081832230091, + 0.005714369472116232, + -0.0022216869983822107, + -0.028731999918818474, + 0.023511717095971107, + 0.020594902336597443, + 0.00805531907826662, + -0.016901176422834396, + 0.008443773724138737, + 0.03170333802700043, + -0.006678690668195486, + 0.0024482854641973972, + -0.0025436952710151672, + -0.0032763066701591015, + -0.0031212656758725643, + 0.015797147527337074, + -0.02826858125627041, + 0.00802124384790659, + -0.0032388244289904833, + 0.009111642837524414, + -0.04546961933374405, + -0.01012707594782114, + -0.017923425883054733, + 0.003020744537934661, + -0.0033751241862773895, + 0.007387449964880943, + 0.006038081832230091, + -0.012151128612458706, + -0.002349467948079109, + 0.0162060484290123, + -0.01669672690331936, + -0.0049238307401537895, + -0.007891759276390076, + 0.0038334322161972523, + -0.000681073113810271, + -0.017868906259536743, + 0.006191418971866369, + -0.027641601860523224, + 0.019504502415657043, + -0.019722582772374153, + 0.018904784694314003, + -0.02096291072666645, + -0.024111436679959297, + -0.005015833303332329, + -0.004995387978851795, + 0.022721178829669952, + 0.005325915291905403, + 0.001989977201446891, + 0.010133891366422176, + -0.006228901445865631, + -0.01850951462984085, + 0.012287428602576256, + -0.001896271132864058, + 0.013418716378509998, + 0.0003162581706419587, + -0.007005810271948576, + 0.003618760034441948, + -0.0021330921445041895, + -0.022189609706401825, + -0.02298014797270298, + 0.007387449964880943, + 0.018877524882555008, + 0.011926233768463135, + 0.003850469831377268, + -0.013800356537103653, + -0.017051106318831444, + 0.0315670371055603, + 0.030258558690547943, + -0.020594902336597443, + 0.01909560337662697, + 0.013997990638017654, + 0.0023613942321389914, + -0.0026885138358920813, + -0.004572858568280935, + -0.009023047983646393, + 0.026619354262948036, + -0.0018434550147503614, + 0.0029202233999967575, + 0.0016960807843133807, + -0.0025096202734857798, + -0.0019695323426276445, + 0.02571977488696575, + -0.013118857517838478, + -0.008014429360628128, + 0.016996586695313454, + 0.00979995634406805, + -0.003676687367260456, + 0.0032865293323993683, + 0.009684101678431034, + -0.01397073082625866, + -0.0035267577040940523, + 0.007953094318509102, + -0.01255321316421032, + -0.00881859753280878, + 0.019354574382305145, + 0.007060330361127853, + -0.020213263109326363, + -0.015429139137268066, + -0.03153977543115616, + -0.020499492064118385, + 0.01943635381758213, + 0.03203045576810837, + 0.015115649439394474, + -0.009956701658666134, + -0.011912603862583637, + 0.0025760664138942957, + 0.029985958710312843, + 0.0031740819104015827, + -0.008375623263418674, + 0.00862777791917324, + -0.01212386880069971, + -0.02501101605594158, + -0.0015853372169658542, + 0.01910923421382904, + 0.011994383297860622, + -0.01947724260389805, + 0.008736818097531796, + 0.0071898153983056545, + 0.0028333324007689953, + 0.0030480045825242996, + -0.010304265655577183, + 0.0016815989511087537, + -0.012560027651488781, + 0.004320703912526369, + -0.012212463654577732, + 0.00431388895958662, + 0.026673873886466026, + 0.027873311191797256, + 0.022203240543603897, + -0.010045296512544155, + 0.010849465616047382, + -0.005417917389422655, + -0.011510519310832024, + 0.010024851188063622, + 0.010556420311331749, + -0.007339744828641415, + 0.02779153175652027, + -0.00042018675594590604, + 0.025965115055441856, + 0.030503898859024048, + -0.019027454778552055, + 0.004201441537588835, + 0.01110843475908041, + -0.007210260257124901, + 0.02308918908238411, + 0.010161151178181171, + 0.012212463654577732, + 0.01045419555157423, + 0.007169370073825121, + 0.027805162593722343, + 0.0023358380421996117, + 0.0008816894260235131, + -0.005656442139297724, + -0.007551009766757488, + -0.0004744937177747488, + -0.0017020439263433218, + 0.009009418077766895, + 0.0077622742392122746, + 0.013030261732637882, + -0.005765482317656279, + -0.00515894778072834, + 0.0030088184867054224, + -0.021044692024588585, + -0.022898368537425995, + -0.012614548206329346, + 0.0144341504201293, + -0.013984360732138157, + 0.012655437923967838, + 0.015497288666665554, + -0.006252754013985395, + 0.0018536774441599846, + 0.008041689172387123, + 0.011939863674342632, + 0.008586888201534748, + -0.002589696552604437, + 0.012001198716461658, + 0.0038095798809081316, + 0.006099416874349117, + -0.007033070549368858, + -0.024929236620664597, + -0.0005882188561372459, + -0.006423128768801689, + 0.0046341936103999615, + 0.010719980113208294, + 0.019627172499895096, + -0.004882941022515297, + 0.035029053688049316, + -0.011517333798110485, + -0.01756904646754265, + -0.021112840622663498, + -0.00515894778072834, + 0.012055718339979649, + 0.0029304460622370243, + 0.023552607744932175, + -0.01372539158910513, + -0.020158741623163223, + 0.0029781509656459093, + -0.0008808375569060445, + 0.02085387147963047, + -0.00229324446991086, + -0.02652394399046898, + 0.0005136799300089478, + -0.01604248769581318, + 0.010903985239565372, + -0.008137098513543606, + 0.009104827418923378, + 0.02188974991440773, + -0.004784123506397009, + -0.030422117561101913, + 4.432406058185734e-5, + 0.020649421960115433, + -0.024806566536426544, + -0.01790979504585266, + -0.006269791629165411, + 0.004494486376643181, + -0.005543994717299938, + 0.0018928636563941836, + -0.013800356537103653, + 0.003407495329156518, + -0.009670471772551537, + -0.01296892762184143, + -0.019940663129091263, + -0.0037482448387891054, + 0.017977945506572723, + -0.01124473474919796, + -0.021971529349684715, + 0.02238043025135994, + 0.011605929583311081, + 0.026510313153266907, + 0.02390698716044426, + -0.0024108029901981354, + -0.02750530280172825, + 0.022257760167121887, + 0.0058949668891727924, + 0.0058949668891727924, + -0.018550405278801918, + -0.009963516145944595, + 0.011203845031559467, + -0.0025948076508939266, + 0.006242531351745129, + -0.016233308240771294, + -0.00832791905850172, + -0.01260773278772831, + 0.016410497948527336, + -0.004954498261213303, + -0.005533772520720959, + -0.03500179201364517, + 0.00834836345165968, + -0.022857477888464928, + 0.01615152880549431, + -0.023280007764697075, + -0.009643211960792542, + -0.00905712228268385, + -0.025460805743932724, + 0.015756258741021156, + 0.00013992027379572392, + 0.0005562736187130213, + -0.01736459694802761, + 0.007046700455248356, + -0.024520335718989372, + -0.013888951390981674, + 0.0022847256623208523, + 0.019559023901820183, + -0.0006286829011514783, + -0.014325110241770744, + -0.020186003297567368, + -0.004705750849097967, + -0.002233613282442093, + -0.03110361658036709, + 0.003087190678343177, + -0.006000599358230829, + -0.002231909427791834, + 0.012675882317125797, + -0.014325110241770744, + -0.0021228694822639227, + -0.016955696046352386, + 0.003703947411850095, + -0.01805972494184971, + -0.012866702862083912, + 0.029604319483041763, + 0.014066141098737717, + 0.004988573025912046, + -0.004739826079457998, + -0.016778506338596344, + -0.0019984960090368986, + 0.017773495987057686, + 0.0015887446934357285, + 0.0060891942121088505, + 0.005762074608355761, + -0.00759871443733573, + -0.010249746032059193, + -0.021576261147856712, + -0.001447333605028689, + 0.011326514184474945, + 0.03437481448054314, + -0.007700939662754536, + 0.028841041028499603, + -0.0129348523914814, + -0.025297245010733604, + -0.028950080275535583, + 0.005482660140842199, + 0.008832228370010853, + -0.0077077546156942844, + 0.007809979375451803, + 0.0010520642390474677, + -0.013166561722755432, + 0.02565162442624569, + 0.019749842584133148, + -0.0016654133796691895, + 0.014447780326008797, + 0.005714369472116232, + -0.015470028854906559, + -0.002685106359422207, + 0.017882535234093666, + -0.002255761995911598, + -0.014924829825758934, + -0.02238043025135994, + -0.006109639070928097, + 0.0018468624912202358, + 5.7607969210948795e-5, + 0.0017497488297522068, + -0.019967922940850258, + 0.0010137298377230763, + -0.026387643069028854, + 0.0006478500436060131, + -0.004446781240403652, + -0.016614947468042374, + -0.0034415703266859055, + 0.007844054140150547, + 0.01767808571457863, + 0.009615952149033546, + 0.011101620271801949, + -0.014216070994734764, + -0.01718740724027157, + -0.014938459731638432, + -0.001305922633036971, + 0.016137897968292236, + -0.004095809534192085, + 0.00044638189137913287, + 0.007925834506750107, + 0.000222552043851465, + 0.01350731123238802, + -0.018972933292388916, + -0.0006380535196512938, + -0.0063515715301036835, + -0.007162555120885372, + -0.03072197735309601, + -0.0044433739967644215, + 0.00208709086291492, + 0.01609700731933117, + 0.01462497003376484, + -0.00363579741679132, + -0.015510918572545052, + 0.011265179142355919, + -0.002289836760610342, + 0.0016287827165797353, + 0.0176917165517807, + 0.014788529835641384, + -0.0048011611215770245, + -0.009527357295155525, + 0.006964920554310083, + 0.0007164258859120309, + 0.0183868445456028, + -0.0005622367025353014, + 0.015360988676548004, + 0.021794339641928673, + -0.0036732798907905817, + -0.019409094005823135, + -0.0050839828327298164, + 0.01818239502608776, + -0.03712806850671768, + -0.00020306542865000665, + -0.02746441215276718, + -0.008982157334685326, + -0.00731248501688242, + -0.005421325098723173, + 0.014379630796611309, + -0.006208456587046385, + 0.0008970231283456087, + -0.009111642837524414, + -0.0038266172632575035, + 0.005428140051662922, + 0.004320703912526369, + 0.016028858721256256, + -0.01756904646754265, + -0.020485861226916313, + 0.021821599453687668, + -0.004531968850642443, + -0.005285025108605623, + -0.02761434204876423, + -0.02963157929480076, + 0.01878211461007595, + 0.012560027651488781, + 0.0075714546255767345, + -0.005411102436482906, + 0.008443773724138737, + 0.003465422661975026, + -0.001126177259720862, + -0.01576988771557808, + -0.019259164109826088, + -0.013997990638017654, + -0.002761774929240346, + -0.010890355333685875, + 0.0076668644323945045, + -0.0041809966787695885, + 0.009288832545280457, + -0.028404880315065384, + 0.02935897931456566, + 0.018482254818081856, + 0.0013987768907099962, + 0.023988766595721245, + -0.019136494025588036, + 0.02025415189564228, + 0.0005013277404941618, + -0.0010503603843972087, + 0.011197029612958431, + 0.022748438641428947, + -0.008988972753286362, + -0.007755459286272526, + 0.0013902580831199884, + 0.001250550732947886, + 0.00783042423427105, + -0.009895366616547108, + 0.0048284209333360195, + 0.012376023456454277, + -0.0064469813369214535, + 0.01001803670078516, + 0.006937660742551088, + -0.014734010212123394, + -0.0013953692978248, + 0.013902581296861172, + -0.00402765953913331, + -0.01405251119285822, + -0.021494479849934578, + -0.01915012300014496, + 0.03246661648154259, + 0.003666464937850833, + 0.009527357295155525, + -0.0008369660354219377, + -0.004818198271095753, + -0.023457197472453117, + -0.002683402504771948, + 0.009186607785522938, + 0.024084176868200302, + 0.007700939662754536, + -0.012103423476219177, + 0.013323307037353516, + 0.0006303866393864155, + -0.0049681281670928, + 0.005714369472116232, + -0.004535376094281673, + 0.020949281752109528, + -0.009009418077766895, + 0.0022693919017910957, + -0.010808574967086315, + -0.0027873311191797256, + -0.007469229865819216, + 0.020172372460365295, + 0.023934246972203255, + -0.002514731604605913, + -0.021739820018410683, + 0.011353774927556515, + -0.012321502901613712, + 0.006419721059501171, + 0.007551009766757488, + -0.009527357295155525, + -0.018168766051530838, + 0.008886747993528843, + 0.007353374734520912, + 0.0013936655595898628, + 0.00022787625493947417, + 0.012996187433600426, + -0.01050871517509222, + 0.005216875579208136, + 0.0005681998445652425, + 0.0032388244289904833, + 0.0007351671229116619, + -0.004722788464277983, + 0.01031789556145668, + 0.028759261593222618, + 0.004838643595576286, + 0.015960708260536194, + 0.010856280103325844, + 0.0019320498686283827, + -0.006300458684563637, + 0.0020922021940350533, + -0.012778107076883316, + 0.0009907293133437634, + -0.017841646447777748, + 0.013098412193357944, + 0.008232508786022663, + -0.015401879325509071, + -0.028432141989469528, + -0.006406091153621674, + 0.00830065831542015, + 0.013997990638017654, + -0.001676487736403942, + 0.0099362563341856 + ], + "4e45d12d-0e82-4d54-a423-82057b75c96c": [ + -0.014358335174620152, + -0.03443751484155655, + -0.010113384574651718, + 0.021323148161172867, + -0.04458604007959366, + 0.006820736452937126, + -0.003977884538471699, + 0.0028287959285080433, + 1.586805228726007e-5, + 0.04593542963266373, + 0.002447523409500718, + 0.013606332242488861, + 0.020887406542897224, + -0.015138451009988785, + 0.016234828159213066, + -0.016361333429813385, + -0.008763995952904224, + 0.022911489009857178, + -0.04185914993286133, + -0.005063720513135195, + 0.03244154527783394, + -0.036039914935827255, + -0.03010822832584381, + 0.03187929838895798, + 0.011617390438914299, + -0.04124068096280098, + -0.008236891590058804, + 0.002881506457924843, + -0.030248789116740227, + -0.0018466239562258124, + 0.011518997140228748, + 0.006044135428965092, + 0.007604365702718496, + 0.015489853918552399, + 0.008180666714906693, + -0.05015226826071739, + 0.00734432740136981, + 0.018877381458878517, + -0.008728856220841408, + 0.0025213181506842375, + -0.003942744340747595, + 0.033481698483228683, + 0.015335236676037312, + 0.0022278963588178158, + -0.03092348389327526, + -0.009614392183721066, + -0.06994329392910004, + -0.028590165078639984, + -0.007358383387327194, + -0.015475797466933727, + 0.018835213035345078, + 0.030979707837104797, + -0.033594146370887756, + 0.018877381458878517, + 0.045654308050870895, + -0.030529912561178207, + 0.0012000419665127993, + 0.08934075385332108, + 0.011209762655198574, + -0.05439721792936325, + -0.004280091263353825, + -0.0037881266325712204, + 0.03148572891950607, + -0.006486903410404921, + 0.015517965890467167, + -0.02147776447236538, + -0.044557929039001465, + 0.027817077934741974, + -0.006947241723537445, + 0.016965746879577637, + 0.02253197506070137, + 0.0232207253575325, + -0.04208404943346977, + -0.0001853651920100674, + 0.007520028855651617, + 0.01228505652397871, + 0.02860422246158123, + 0.02355807088315487, + 0.03275078162550926, + -0.03426884114742279, + 0.017007915303111076, + -0.02078901417553425, + -0.005369441118091345, + 0.023572128266096115, + 0.023009883239865303, + 0.027226721867918968, + -0.024050036445260048, + -0.045092061161994934, + -0.04677879810333252, + -0.015349292196333408, + 0.014133437536656857, + 0.06128472089767456, + -0.015194674953818321, + 0.028309043496847153, + 0.009761981666088104, + -0.010851331055164337, + 0.021969730034470558, + 0.0018466239562258124, + 0.0003261461097281426, + -0.002886777510866523, + -0.0003718285297509283, + 0.01849786564707756, + 0.009122427552938461, + -0.0027848705649375916, + -0.01293866615742445, + 0.0024984769988805056, + 0.010450731962919235, + 0.015742864459753036, + -0.0019713721703737974, + 0.016403501853346825, + -0.004100875463336706, + -0.08484279364347458, + 0.02774679847061634, + -0.008089302107691765, + -0.036208588629961014, + -0.019256897270679474, + -0.0550156868994236, + -0.02338939905166626, + -0.015152506530284882, + -0.01894766092300415, + 0.015082226134836674, + 0.0010445460211485624, + 0.015208731405436993, + 0.006922643631696701, + -0.024865292012691498, + 0.037670426070690155, + -0.0044909329153597355, + 0.04953379929065704, + 0.02285526506602764, + 0.03573067858815193, + -0.0016840999014675617, + 0.0009241904481314123, + 0.038935475051403046, + -0.045373182743787766, + 0.004975869785994291, + 0.02004403993487358, + 0.001509276800788939, + 0.08338095247745514, + -0.0013080984354019165, + 0.018441641703248024, + -0.03589935228228569, + -0.0137539217248559, + -0.03134516626596451, + 0.009122427552938461, + -0.0005336936446838081, + -0.01468865480273962, + -0.032047972083091736, + 0.05852971971035004, + -0.03660215809941292, + -0.00782223604619503, + -0.04070654883980751, + 0.005499460268765688, + -0.02611628733575344, + -0.016150491312146187, + 0.03955394774675369, + 0.027240777388215065, + -0.014259942807257175, + 0.015560134314000607, + -0.009649532847106457, + 0.038288895040750504, + 0.021449651569128036, + -0.050180379301309586, + 0.005358899012207985, + 0.002022325526922941, + 0.04424869269132614, + 0.012671600095927715, + 0.05228880047798157, + 0.0321885347366333, + -0.006054677534848452, + 0.014189662411808968, + -0.004750971682369709, + -0.021702662110328674, + 0.02909618616104126, + -0.04042542725801468, + 0.031232718378305435, + -0.0070350924506783485, + 0.037080068141222, + 0.03615236282348633, + 0.03497164696455002, + -0.028168482705950737, + -0.01633322238922119, + -0.023361286148428917, + 0.04368644952774048, + 0.0011851073941215873, + -0.03851379454135895, + 0.06139716878533363, + 0.016487838700413704, + 0.009284073486924171, + 0.012509954161942005, + 0.009874430485069752, + -0.011076229624450207, + -0.034578077495098114, + 0.016487838700413704, + 0.013030031695961952, + -0.01397882029414177, + -0.0305580236017704, + -0.02049383521080017, + 0.000560048851184547, + -0.01890549249947071, + 0.024921515956521034, + -0.0038970618043094873, + -0.05228880047798157, + -0.009705756790935993, + 0.039666395634412766, + -0.02225085161626339, + 0.0026460662484169006, + 0.0026232250966131687, + -0.017513936385512352, + 0.008848332799971104, + -0.015883425250649452, + 0.03778287395834923, + -0.022799041122198105, + 0.014049100689589977, + -0.0015584733337163925, + -0.0009092558175325394, + 0.02473878674209118, + 0.027535956352949142, + 0.007288102991878986, + 0.005151571240276098, + -0.030389349907636642, + 0.028013864532113075, + -0.002870964352041483, + 0.006652062758803368, + -0.03263833001255989, + -0.06156584247946739, + -0.016811130568385124, + -0.02774679847061634, + 0.027311058714985847, + -0.023052051663398743, + -0.02632712945342064, + 0.06544533371925354, + -0.020226769149303436, + 0.026594195514917374, + -0.018287023529410362, + 0.005021552089601755, + 0.0033365734852850437, + 0.05391931161284447, + 0.0011754437582567334, + -0.019327176734805107, + -0.03266644477844238, + -0.0003413003869354725, + -0.010057159699499607, + -0.019453682005405426, + -0.02795764058828354, + -0.015489853918552399, + 0.006715315394103527, + -0.04017241671681404, + 0.057517677545547485, + 0.01789345219731331, + 0.01898982934653759, + 0.0015444171149283648, + 0.017345262691378593, + 0.012531038373708725, + 0.007172139827162027, + -0.013739866204559803, + 0.02946164645254612, + 0.0378953218460083, + -0.023417510092258453, + -0.024513889104127884, + -0.019060110673308372, + 0.011722811497747898, + 0.009094315581023693, + -0.008806164376437664, + -8.422695827903226e-5, + 0.03083914704620838, + -0.03606802597641945, + 0.03561823070049286, + -0.007414607796818018, + -0.001214976655319333, + 0.05414420738816261, + -0.008075245656073093, + -0.02710021659731865, + -0.017429599538445473, + 0.023684576153755188, + -0.0468631349503994, + 0.0007836291915737092, + 0.000823601265437901, + -0.0026583652943372726, + -0.01558824721723795, + -0.021646438166499138, + -0.005074262619018555, + -0.009122427552938461, + 0.028899401426315308, + -0.009656560607254505, + 0.007463804446160793, + 0.014259942807257175, + -0.037586089223623276, + -0.04005996510386467, + -0.037220630794763565, + 0.00548189040273428, + -0.012362365610897541, + -0.003946258220821619, + -0.00418872619047761, + 0.049168337136507034, + -0.010260974057018757, + 0.0029412449803203344, + -0.031064044684171677, + -0.013093284331262112, + 0.015630414709448814, + -0.004259007051587105, + -0.032300982624292374, + -0.0022085693199187517, + -0.022602254524827003, + -0.022349243983626366, + 0.028660446405410767, + -0.031598176807165146, + 0.034493740648031235, + 0.01523684337735176, + -0.022307075560092926, + 0.007983881048858166, + 0.024795010685920715, + -6.380164995789528e-5, + -0.020718734711408615, + -0.02000187151134014, + 0.0012861357536166906, + 0.027943583205342293, + -0.04683502018451691, + -0.004789625760167837, + -0.012566179037094116, + 0.0030501799192279577, + 0.009164595976471901, + -0.018034012988209724, + -0.06544533371925354, + 0.005699760280549526, + 0.024064091965556145, + -0.03651782125234604, + 0.038288895040750504, + -0.02338939905166626, + -0.03949772194027901, + -0.0008424892439506948, + -0.007934684865176678, + -0.004708803258836269, + -0.020915519446134567, + 0.01780911535024643, + -0.019102279096841812, + -0.054059870541095734, + -0.05718033015727997, + -0.03772664815187454, + -0.005485404282808304, + 0.007773039396852255, + -0.03814833238720894, + 0.0007212550844997168, + -0.0015417815884575248, + 0.0034595646429806948, + -0.030417462810873985, + -0.029545983299613, + 0.02403598092496395, + 0.024303046986460686, + 0.0230239387601614, + -0.007850348018109798, + 0.0009417606052011251, + 0.011287071742117405, + 0.04107200726866722, + -0.01232722494751215, + 0.03719251602888107, + 0.00918568018823862, + -0.02677692472934723, + -0.006553669925779104, + 0.009396522305905819, + 0.001092863967642188, + -0.0321885347366333, + -0.036855168640613556, + -0.016361333429813385, + -0.06634492427110672, + -0.006395538803189993, + 0.021042024716734886, + -0.007829263806343079, + 0.01069671381264925, + -0.04225272312760353, + 0.022672535851597786, + -0.013044087216258049, + 0.009466802701354027, + -0.01785128377377987, + -0.04053787514567375, + -0.004526073578745127, + -0.044023796916007996, + 0.05574660748243332, + 0.018596258014440536, + -0.01546174194663763, + 0.0032557507511228323, + -0.0001283719902858138, + 0.010014991275966167, + -0.05763012915849686, + 0.0005565348546952009, + 0.054425328969955444, + 0.013634445145726204, + 0.004438222851604223, + -0.018469752743840218, + -0.01744365505874157, + -0.014969777315855026, + -0.019776973873376846, + -0.0074075800366699696, + -0.004540129564702511, + 0.01295975036919117, + -0.0021541016176342964, + -0.012671600095927715, + 0.0005956284585408866, + -0.011617390438914299, + 0.042843081057071686, + -1.670538040343672e-5, + -0.011708755046129227, + -0.006620436441153288, + -0.0027813564520329237, + -0.007927656173706055, + -0.002284121001139283, + -0.04914022609591484, + 0.014295082539319992, + 0.0010383964981883764, + 0.009614392183721066, + -0.02823876217007637, + 0.02085929550230503, + -0.012545094825327396, + 0.012502926401793957, + 0.02693154290318489, + 0.030052002519369125, + -0.0005424786941148341, + -0.015475797466933727, + 0.052794817835092545, + -0.04987114667892456, + -0.004048164933919907, + 0.02208217792212963, + 0.009747925214469433, + 0.011336267925798893, + 0.012559151276946068, + -0.03483108803629875, + 0.028294987976551056, + -0.006005480885505676, + -0.003984912298619747, + -0.021899448707699776, + -0.01943962648510933, + 0.022560086101293564, + 0.03435317799448967, + -0.025652434676885605, + 0.004975869785994291, + -0.0053764693439006805, + 0.012840273790061474, + 0.01935528963804245, + 0.010211777873337269, + -0.019791029393672943, + -0.009551139548420906, + 0.022068122401833534, + 0.029124299064278603, + 0.003682705806568265, + -0.01939745806157589, + -0.04571053013205528, + -0.01707819662988186, + -0.03162628784775734, + 0.029545983299613, + 0.010443703271448612, + -0.014519981108605862, + -0.016614343971014023, + 0.03429695591330528, + -0.059766657650470734, + -0.013543079607188702, + 0.01369066908955574, + -0.009649532847106457, + 0.013536051847040653, + 0.0068137082271277905, + -0.01144871674478054, + -0.03207608684897423, + 0.005134000908583403, + -0.0012966778595000505, + 0.020831182599067688, + -0.011842288076877594, + 0.029798993840813637, + -0.04461415112018585, + 0.0016023986972868443, + 0.00770275853574276, + 0.008124442771077156, + 0.007527057081460953, + -0.0017438384238630533, + -0.010422619059681892, + -0.017387431114912033, + 0.04348966106772423, + 0.011329240165650845, + -0.0005741050117649138, + -0.00997985154390335, + -0.0011982850264757872, + 0.009031062945723534, + -0.00829311553388834, + -0.01289649773389101, + 0.029686544090509415, + -0.030698584392666817, + 0.021210698410868645, + 0.001501370221376419, + -0.017204701900482178, + -0.029714656993746758, + -0.0048036822117865086, + -0.019903479143977165, + 0.005573255009949207, + 0.006304173730313778, + 0.04098767042160034, + 0.010014991275966167, + -0.0028920485638082027, + 0.011455744504928589, + -0.03570256754755974, + 0.031148381531238556, + -0.02293960191309452, + -0.02085929550230503, + -0.003417396219447255, + 0.035674456506967545, + -0.013866371475160122, + 0.014154521748423576, + 0.009776037186384201, + -0.020971743389964104, + 0.058698393404483795, + 0.0028358239214867353, + -0.0016656512161716819, + 0.0033225174993276596, + -0.008061190135776997, + -0.011926624923944473, + 0.019003886729478836, + -0.022264907136559486, + 0.01882115565240383, + 0.009593307971954346, + -0.00015340946265496314, + -0.006543127819895744, + -0.0077238427475094795, + 0.03019256517291069, + 0.006690717302262783, + -0.005292132496833801, + -2.4406052034464665e-5, + -0.015616359189152718, + 0.0034683498088270426, + -0.012741880491375923, + 0.011273015290498734, + -0.01399990450590849, + -0.01153305359184742, + 0.016684625297784805, + -0.018877381458878517, + -0.009726841002702713, + 0.00041597356903366745, + -0.0037600144278258085, + -0.007730870973318815, + -0.0019959702622145414, + -0.0008815828477963805, + -0.009115399792790413, + -0.03716440498828888, + 0.021505877375602722, + 0.004251978825777769, + -0.02799980901181698, + 0.043911345303058624, + 0.008398536592721939, + -0.01918661594390869, + -0.006616922561079264, + 0.011905540712177753, + 0.0037740706466138363, + 0.02220868319272995, + -0.04059410095214844, + 0.009431662037968636, + -0.04416435584425926, + -0.011961765587329865, + -0.023726744577288628, + -0.024429552257061005, + -0.0070350924506783485, + 0.001239574863575399, + 0.00856018252670765, + -0.01224288810044527, + -0.011483857408165932, + -0.02681909315288067, + 0.00017032075265888125, + -0.0066626048646867275, + 0.0018044555326923728, + 0.010893499478697777, + -0.03769853711128235, + -0.00027870669146068394, + -0.03949772194027901, + 0.020929574966430664, + -0.0036756775807589293, + 0.0029394880402833223, + 0.027072103694081306, + 0.025933558121323586, + 0.0338190458714962, + 0.020029982551932335, + 0.009473830461502075, + 0.01793562062084675, + 0.004989925771951675, + -0.002988684456795454, + -0.009255960583686829, + 0.011336267925798893, + 0.022883377969264984, + -0.01800590008497238, + 0.01598181761801243, + -0.0171203650534153, + 0.012088270857930183, + 0.006708287633955479, + -0.021618325263261795, + -0.014084241352975368, + -0.011568194255232811, + 0.033847156912088394, + 0.007182681933045387, + 0.04652578756213188, + -0.007435692008584738, + -0.009867402724921703, + -0.009698729030787945, + 0.031064044684171677, + 0.01837136037647724, + -0.00847584567964077, + 0.029967665672302246, + 0.0033190033864229918, + 0.017963731661438942, + 0.005116431042551994, + 0.0010524526005610824, + -0.016234828159213066, + -0.017429599538445473, + -0.004533101338893175, + -0.006163612473756075, + 0.0037037900183349848, + -0.013226817362010479, + 0.013261957094073296, + -0.007245934568345547, + -0.01157522201538086, + 0.018835213035345078, + -0.005731386598199606, + 0.012903526425361633, + -0.00214883079752326, + 0.015447685495018959, + 0.0033330596052110195, + 0.002742702141404152, + -0.0037635285407304764, + 0.029658431187272072, + -0.010752938687801361, + 0.06066625192761421, + -0.027535956352949142, + 0.02755001187324524, + 0.023909475654363632, + -0.03516843542456627, + 0.00024137008585967124, + -0.0011815932812169194, + 0.002610925817862153, + -0.010774022899568081, + -0.020606284961104393, + -0.00491964491084218, + 0.003679191693663597, + 0.030979707837104797, + 0.004691232927143574, + -0.006708287633955479, + -0.008658574894070625, + -0.01373283751308918, + -0.00831419974565506, + 0.0027567583601921797, + 0.010190693661570549, + -0.005935200490057468, + 0.03654593601822853, + -0.0232207253575325, + 0.02877289615571499, + 0.0011745652882382274, + -0.01870870776474476, + 0.03154195472598076, + 0.033847156912088394, + -0.022321132943034172, + 0.03280700370669365, + -0.009403550066053867, + -0.003967342432588339, + 0.00214883079752326, + -0.006469333078712225, + -0.012945694848895073, + 0.004522559233009815, + 0.028379324823617935, + 0.018019957467913628, + -0.007562197279185057, + -0.03370659798383713, + 0.024542000144720078, + 0.0065782684832811356, + 0.031232718378305435, + 0.016965746879577637, + -0.013746893964707851, + 0.0028252818156033754, + 0.01593964919447899, + 0.014519981108605862, + 0.009579251520335674, + -0.01073888223618269, + -0.01748582348227501, + -0.019327176734805107, + 0.0019608300644904375, + 0.011216790415346622, + 0.031120268628001213, + -0.015953706577420235, + -0.016530007123947144, + -0.028168482705950737, + -0.007709786761552095, + -0.03916037455201149, + -0.008911585435271263, + 0.008004965260624886, + -0.020887406542897224, + -0.008468817919492722, + 0.0050953468307852745, + 0.01980508491396904, + -0.05656186118721962, + -0.01984725333750248, + 0.010640489868819714, + 0.011722811497747898, + -0.004561213776469231, + 0.018315136432647705, + 0.009298129007220268, + -0.021013911813497543, + -0.004779083654284477, + -0.02832309901714325, + 0.002624982036650181, + -0.01067562960088253, + -0.04160613939166069, + -0.005165627226233482, + -0.017710722982883453, + -0.03682705760002136, + 0.012699712067842484, + -0.00385137926787138, + -0.010260974057018757, + -0.012966779060661793, + 0.011842288076877594, + 0.014245886355638504, + -0.009052147157490253, + -0.0032452086452394724, + 0.002333317417651415, + 0.03334113582968712, + 0.008215807378292084, + -0.01393665187060833, + -0.008532070554792881, + 0.018511921167373657, + -0.03081103414297104, + 0.051445432007312775, + -0.008588294498622417, + 0.023572128266096115, + -0.00028068330720998347, + -0.044023796916007996, + -0.0068699331022799015, + 0.030136339366436005, + -0.001517183380201459, + -0.02457011304795742, + 0.029630320146679878, + -0.002503747818991542, + 0.03806399554014206, + -0.012158551253378391, + 0.027493787929415703, + 0.004357399884611368, + -0.007780067157000303, + -0.03027690201997757, + -0.0017455954803153872, + 0.006016022991389036, + 0.01776694692671299, + -0.008806164376437664, + 0.02236330136656761, + 0.011687670834362507, + 0.011076229624450207, + -0.02315044403076172, + 0.02489340491592884, + -0.0010586022399365902, + 0.03727685287594795, + 0.0017192402156069875, + -0.018891436979174614, + 0.01809023693203926, + 0.027325114235281944, + -0.02240546979010105, + 0.02457011304795742, + -0.01067562960088253, + -0.007794123608618975, + -0.0032557507511228323, + 0.02733916975557804, + 0.008307171985507011, + -0.002760272240266204, + 0.03744552657008171, + -0.011413577012717724, + -0.003150329925119877, + -0.04031297564506531, + 0.007794123608618975, + -0.013332238420844078, + 0.025160470977425575, + -0.0016937635373324156, + -0.029321083799004555, + 0.0213934276252985, + 0.003644051495939493, + 0.03823266923427582, + 0.049730584025382996, + 0.033144351094961166, + 0.007976853288710117, + -0.006163612473756075, + -0.06555778533220291, + -0.009424634277820587, + -0.04017241671681404, + 0.0031837131828069687, + -0.010647517628967762, + -0.009572223760187626, + -0.05200767517089844, + 0.033847156912088394, + -0.01459026150405407, + 0.029039962217211723, + -0.0022577657364308834, + 0.010014991275966167, + -0.012053130194544792, + -0.010521012358367443, + 0.006950755603611469, + 0.02811225689947605, + -0.025090189650654793, + -0.009691700339317322, + 0.014393475838005543, + 0.05147354304790497, + -0.002879749285057187, + 0.02175888791680336, + 0.0027690574061125517, + -0.027451619505882263, + 0.0009883214952424169, + -0.008342312648892403, + -0.02991144172847271, + 0.021337203681468964, + 0.02310827560722828, + 0.0028305528685450554, + -0.021042024716734886, + -0.027353227138519287, + 0.017710722982883453, + -0.021140417084097862, + 0.0031608720310032368, + 0.02244763821363449, + 0.03907603770494461, + 0.016881410032510757, + 0.040734659880399704, + -0.010401534847915173, + -0.00021677186305169016, + 0.004202782642096281, + 0.012861358001828194, + 0.04095955938100815, + -0.0015426601748913527, + 0.01841352880001068, + -0.007990908809006214, + 0.017162533476948738, + 0.002860422246158123, + 0.020423555746674538, + -0.03679894655942917, + -0.0025195609778165817, + 0.0003123096248600632, + -0.003686219686642289, + -0.006163612473756075, + -0.006307687610387802, + -0.04270251840353012, + -0.024092204868793488, + 0.010591292753815651, + -0.0019327177433297038, + 0.03488731011748314, + -0.012495898641645908, + 0.02433115802705288, + -0.05147354304790497, + 0.036658383905887604, + -0.008398536592721939, + -0.058867067098617554, + -0.0005257870652712882, + -0.021955672651529312, + 0.0012220046482980251, + 0.0350559838116169, + 0.0073021589778363705, + -0.004013024736195803, + 0.014618373475968838, + 0.06623248010873795, + 0.046638235449790955, + 0.020226769149303436, + 0.00192568963393569, + 0.02669258788228035, + -0.04022863879799843, + 0.004501475021243095, + -0.023895418271422386, + 0.009951739571988583, + 0.010239889845252037, + 0.029574094340205193, + 0.025680547580122948, + -0.0016621372196823359, + -0.004719345364719629, + -0.012966779060661793, + -0.0012773507041856647, + -0.006272547412663698, + -0.0008903678972274065, + 0.027943583205342293, + 0.006964811589568853, + 0.04000374302268028, + 0.002860422246158123, + -0.010134468786418438, + 0.0026882346719503403, + 0.02090146392583847, + -0.01550391037017107, + -0.018104294314980507, + -0.001084078918211162, + 0.003545658430084586, + -0.016853298991918564, + 0.013191676698625088, + -0.02261631190776825, + -0.005422151647508144, + 0.025244807824492455, + 0.00021194005967117846, + -0.0066626048646867275, + -0.002210326259955764, + -0.004378484096378088, + -0.008630462922155857, + -0.003278592135757208, + 0.010120412334799767, + -0.022953657433390617, + -0.009565196000039577, + -0.01858220249414444, + -0.024218710139393806, + -0.02974276803433895, + 0.02175888791680336, + -0.017837228253483772, + -0.01714847795665264, + 0.004230894614011049, + 0.04534507170319557, + 0.006725857499986887, + -0.026144400238990784, + -0.022152459248900414, + -0.016066154465079308, + 0.018807100132107735, + -0.026748813688755035, + -0.0016709222691133618, + 0.00734432740136981, + 0.014744878746569157, + 0.013725809752941132, + 0.006441221106797457, + 0.02819659374654293, + 0.004487419035285711, + -0.006782081909477711, + 0.04607598856091499, + 0.01898982934653759, + 0.015700696036219597, + -0.028702614828944206, + 0.000480983144370839, + -0.014955720864236355, + 0.016895467415452003, + 0.006739913951605558, + 0.02604600600898266, + 0.009804150089621544, + -0.029124299064278603, + 0.008932669647037983, + -0.028266875073313713, + -0.01006418839097023, + -0.0279154721647501, + 0.01809023693203926, + -0.001388921169564128, + 0.01016960944980383, + -0.007766011171042919, + -0.004413624294102192, + 0.01153305359184742, + -0.024021923542022705, + -0.0075832814909517765, + -0.010577237233519554, + -0.013592276722192764, + 0.015475797466933727, + -0.013683641329407692, + -0.014787047170102596, + 0.030670473352074623, + -0.013585248030722141, + -0.028013864532113075, + 0.013543079607188702, + -0.0070456345565617085, + 0.010605349205434322, + 0.020184600725769997, + -0.0013441173359751701, + 0.01083727553486824, + 0.031682513654232025, + -0.009586280211806297, + 0.019875366240739822, + 0.007449748460203409, + 0.00859532319009304, + -0.007969824597239494, + -0.002863936126232147, + 0.00022885134967509657, + 0.00039159494917839766, + 0.00546080619096756, + -0.013465771451592445, + 0.006500959396362305, + 0.011821203865110874, + -0.04000374302268028, + 0.027170496061444283, + -0.022419525310397148, + -0.007913600653409958, + -0.01939745806157589, + -0.012411561794579029, + -0.02081712707877159, + -0.007126457057893276, + -0.01935528963804245, + 0.02688937447965145, + -0.019102279096841812, + -0.014913552440702915, + -0.004849364515393972, + 0.0025125329848378897, + -0.016895467415452003, + -0.011996906250715256, + 0.025118302553892136, + -0.01894766092300415, + -0.019692637026309967, + -0.020114319398999214, + 0.008229863829910755, + 0.03142950311303139, + 0.021126361563801765, + -0.000406529608881101, + 0.008763995952904224, + 0.016403501853346825, + 0.006940213497728109, + -0.017654497176408768, + 0.006290117744356394, + -0.014899496920406818, + 0.00462446641176939, + 0.003816239070147276, + -0.03272266685962677, + -0.022714704275131226, + -0.01600993052124977, + -0.014716766774654388, + -0.029489757493138313, + 0.007470832206308842, + -0.004424166399985552, + 0.0338190458714962, + 0.008820220828056335, + -0.008911585435271263, + -0.002363186562433839, + -0.0023491305764764547, + 0.016558120027184486, + 0.02555404230952263, + -0.004304689355194569, + -0.014042072929441929, + -0.013402518816292286, + -0.014913552440702915, + 0.0034982189536094666, + -0.008714799769222736, + 0.021857280284166336, + 0.007625449914485216, + 0.00859532319009304, + 0.021730775013566017, + -0.006209294777363539, + -0.033678483217954636, + 0.0068031661212444305, + -0.01939745806157589, + -0.013233845122158527, + 0.011012976989150047, + 0.021871335804462433, + 0.006107388064265251, + 0.018891436979174614, + -0.0026706645730882883, + -0.005088318604975939, + -0.012615375220775604, + 0.004353886004537344, + 0.006026565097272396, + 0.01078105065971613, + -0.014126409776508808, + 0.0042098104022443295, + -0.08821626752614975, + -0.0362648107111454, + -0.012017990462481976, + 0.003728388110175729, + -0.004192240536212921, + -0.018104294314980507, + 0.014576205983757973, + 0.021056080237030983, + -0.01558824721723795, + 0.021407485008239746, + 0.00429766159504652, + -0.008939698338508606, + 0.02167455106973648, + 0.0258773323148489, + 0.011209762655198574, + -0.015995875000953674, + -0.026144400238990784, + -0.006276061292737722, + 0.005583797115832567, + -0.024598225951194763, + -0.018315136432647705, + 0.014168578200042248, + 0.02371268905699253, + -0.0005187590140849352, + -0.021576156839728355, + 0.02437332645058632, + 0.004048164933919907, + 0.005636507645249367, + -0.00652907183393836, + -0.01554607879370451, + 0.029236746951937675, + 0.015532022342085838, + 0.008468817919492722, + -0.001513669383712113, + -0.009101343341171741, + 0.03246965631842613, + 0.011237874627113342, + -0.0015532022807747126, + 0.036405373364686966, + 0.027676517143845558, + 0.0059246583841741085, + 0.020676566287875175, + 0.0016893709544092417, + -0.018202686682343483, + -0.014491869136691093, + 0.007017522118985653, + 0.005242935847491026, + -0.028421493247151375, + 0.027451619505882263, + -0.0018044555326923728, + 0.028716670349240303, + -0.0074075800366699696, + -0.010949724353849888, + -0.010232862085103989, + 0.00784332025796175, + 0.015883425250649452, + 0.009628448635339737, + 0.021618325263261795, + -0.00920676440000534, + 0.0006131986156105995, + 0.04405190795660019, + 0.001097256550565362, + -0.023248836398124695, + 0.008011993020772934, + -0.011624418199062347, + 0.016684625297784805, + 0.013929623179137707, + -0.011954737827181816, + 0.020240824669599533, + 0.010464787483215332, + -0.009234876371920109, + -0.0033400875981897116, + -0.005264020059257746, + 0.023768913000822067, + 0.02229302003979683, + 0.01144871674478054, + 0.023080162703990936, + 0.021238811314105988, + -0.010464787483215332, + -0.007274046540260315, + -0.019819142296910286, + -0.0074427202343940735, + -0.0002488374011591077, + 0.01379609014838934, + -0.008279060013592243, + -0.008911585435271263, + 0.0002611365052871406, + 0.0156866405159235, + -0.021941617131233215, + 0.004821252077817917, + 0.0012571449624374509, + 0.01780911535024643, + 0.006838306784629822, + 0.010935667902231216, + -0.028126314282417297, + 0.0468631349503994, + -0.015040057711303234, + 0.0009663588716648519, + 0.01159630622714758, + 0.009220820851624012, + -0.016712736338377, + -0.025399424135684967, + 0.0009874430252239108, + -0.02778896689414978, + -0.011764979921281338, + 0.007632478140294552, + 0.004381997976452112, + 0.004793140105903149, + -0.0060406215488910675, + -0.006796138361096382, + -0.0027005337178707123, + 0.01862437091767788, + 0.01446375623345375, + -0.02074684575200081, + -0.020606284961104393, + 0.008946726098656654, + -0.01012744102627039, + -0.00495127122849226, + -0.016080211848020554, + -0.012172607704997063, + 0.0009979851311072707, + 0.02130909077823162, + -0.0017095766961574554, + -0.024064091965556145, + 0.01004310417920351, + 0.015377405099570751, + 0.012966779060661793, + -0.03083914704620838, + -0.004104389809072018, + 0.007829263806343079, + 0.007604365702718496, + 0.0037529864348471165, + -0.014477812685072422, + 0.003167900023981929, + -0.003009768668562174, + -0.0018413529032841325, + 0.02697371132671833, + -0.024879347532987595, + 0.02991144172847271, + -0.018160518258810043, + -0.004364428110420704, + 0.00572435837239027, + -0.005362412892282009, + 0.012228831648826599, + 0.001651595113798976, + 0.014857328496873379, + -0.016361333429813385, + -0.008075245656073093, + -0.019509905949234962, + -0.018961718305945396, + -0.02497773990035057, + 0.020367329940199852, + 0.03727685287594795, + 0.050349052995443344, + 0.0029307028744369745, + -0.02795764058828354, + -0.006905073300004005, + 0.005425665527582169, + 0.004076277371495962, + 0.003287377068772912, + -0.021786998957395554, + -0.0010006206575781107, + -0.00016581839008722454, + 0.004596353974193335, + 0.03618047386407852, + -0.017584217712283134, + -0.004427680745720863, + -0.002076792996376753, + -0.02130909077823162, + -0.016080211848020554, + 0.0041746702045202255, + -5.622451499220915e-5, + -0.0039040897972881794, + -0.0019889422692358494, + 0.002180456882342696, + -0.018891436979174614, + -0.012017990462481976, + -0.01903199777007103, + 0.027803022414445877, + -0.013254929333925247, + -0.006652062758803368, + -0.0017350533744320273, + -0.005836807657033205, + 0.02220868319272995, + -0.005221851635724306, + 0.005467833951115608, + -0.0009145268704742193, + -0.004694746807217598, + -0.002064493950456381, + 0.01564447209239006, + 0.016473783180117607, + -0.014281027019023895, + -0.030586136505007744, + 0.016023986041545868, + -0.0034824057947844267, + 0.004322259686887264, + -0.0011376679176464677, + 0.019130392000079155, + 0.006388510577380657, + 0.003974370192736387, + -0.0063217440620064735, + -0.02974276803433895, + 0.01993159018456936, + 0.0038548933807760477, + -0.005021552089601755, + -0.013156536966562271, + -0.018568146973848343, + 0.027760853990912437, + 0.029517870396375656, + -0.02115447446703911, + -0.0025476734153926373, + -0.00547134829685092, + 0.011132453568279743, + -0.02147776447236538, + 0.0024949628859758377, + -0.003155600978061557, + 0.01289649773389101, + -0.023417510092258453, + 0.01735931821167469, + -0.009874430485069752, + 0.02375485748052597, + -0.014534037560224533, + 0.02289743348956108, + 0.007913600653409958, + 0.011076229624450207, + -0.011202734895050526, + 0.011814176104962826, + 0.005320244934409857, + -0.036208588629961014, + -0.004374970216304064, + -0.012861358001828194, + 0.0015821929555386305, + -0.022475749254226685, + 0.0013388462830334902, + -0.03438129276037216, + -0.019425569102168083, + 0.056168291717767715, + -0.003427938325330615, + 0.013297097757458687, + -0.006483389530330896, + -0.027718685567378998, + -0.0027075617108494043, + 0.0022085693199187517, + 0.01907416619360447, + 0.042477622628211975, + -0.0014073698548600078, + -0.005942228250205517, + -0.007136999163776636, + 0.005861405748873949, + 0.004617438185960054, + 0.005907088052481413, + -0.0031661430839449167, + -0.006546642165631056, + -0.00214355974458158, + -0.007119429297745228, + -0.017303094267845154, + 0.030670473352074623, + 0.01858220249414444, + 0.005510002374649048, + 0.014316166751086712, + -0.010584264993667603, + 0.006971839815378189, + 0.021449651569128036, + -0.028702614828944206, + 0.023122331127524376, + -0.0083563681691885, + 0.005994938779622316, + 0.03949772194027901, + 0.01841352880001068, + 0.010991892777383327, + -0.010408563539385796, + 0.02029705047607422, + -0.02310827560722828, + -0.008468817919492722, + -0.00906620267778635, + -0.008532070554792881, + -0.005942228250205517, + -0.019734805449843407, + -0.012545094825327396, + 0.011237874627113342, + -0.03142950311303139, + 0.005980882793664932, + -0.015995875000953674, + 0.013557136058807373, + 0.016080211848020554, + -0.00609333161264658, + 0.005882489960640669, + -0.020550061017274857, + 0.03682705760002136, + -0.013311154209077358, + 0.023487791419029236, + 0.02306610718369484, + 0.0034402376040816307, + -0.00019997039635200053, + -0.004139530006796122, + -0.011364379897713661, + 0.00048757196054793894, + 0.012769993394613266, + 0.023853249847888947, + -0.011005949229001999, + 0.020634397864341736, + -0.00025279069086536765, + -0.030951594933867455, + -0.007730870973318815, + 0.0015892210649326444, + -0.00017130907508544624, + 0.036039914935827255, + 0.003326031379401684, + 0.005622451659291983, + -0.009740897454321384, + 0.02229302003979683, + 0.005622451659291983, + -0.012552122585475445, + -0.0201705452054739, + 0.004554185550659895, + 0.00496181333437562, + 0.010275030508637428, + 0.010823219083249569, + 0.006532585714012384, + -0.04287119209766388, + 0.005840321537107229, + 0.0362648107111454, + 0.022827154025435448, + -0.011856344528496265, + -0.013128424063324928, + -0.03651782125234604, + -0.017865339294075966, + 0.011062173172831535, + 0.012039074674248695, + 0.0059738545678555965, + -0.00902403425425291, + 0.006796138361096382, + -0.02265848033130169, + -0.017429599538445473, + 0.002057465957477689, + -0.006880475208163261, + -0.008742911741137505, + 0.006585296243429184, + 0.013739866204559803, + -0.008707772009074688, + 0.0033646859228610992, + 0.01922878436744213, + -0.004438222851604223, + 0.022307075560092926, + 0.022953657433390617, + 0.02008620835840702, + -0.0062655191868543625, + 0.03674272075295448, + 0.013543079607188702, + -0.026144400238990784, + 0.010788078419864178, + 0.00245455140247941, + -0.011153537780046463, + 0.0029359739273786545, + -0.0035983689595013857, + 0.016122380271553993, + 0.005193739663809538, + -0.003415639279410243, + -0.027943583205342293, + -0.041015785187482834, + -0.030586136505007744, + 0.0016849784879013896, + 0.0016963990638032556, + 0.01387339923530817, + -0.02081712707877159, + 0.010640489868819714, + 0.007976853288710117, + -0.012573206797242165, + 0.008806164376437664, + -0.015152506530284882, + -0.0085531547665596, + -0.012552122585475445, + -0.004346857778728008, + -0.005032094195485115, + 0.003157357918098569, + 0.0008446854772046208, + -0.04188726469874382, + 0.024513889104127884, + -0.0003544779901858419, + -0.029602207243442535, + 0.010499928146600723, + 0.0039181457832455635, + -0.02641146630048752, + -0.00904511846601963, + -0.0038619213737547398, + 0.0010217048693448305, + -0.020029982551932335, + 0.0031661430839449167, + -0.003246965818107128, + 0.0028077117167413235, + 0.003967342432588339, + -0.003963828086853027, + -0.0036335093900561333, + 0.029517870396375656, + 0.00933326967060566, + 0.009691700339317322, + -0.02212434634566307, + -0.012973806820809841, + -0.04194348677992821, + -0.0026390382554382086, + -0.03047368675470352, + 0.020999856293201447, + 0.002602140884846449, + 0.01793562062084675, + -0.01523684337735176, + 0.012495898641645908, + -0.005292132496833801, + 0.015532022342085838, + -0.004642036743462086, + -0.020732790231704712, + -0.008883473463356495, + 0.009747925214469433, + -0.001099013607017696, + -0.019594242796301842, + -0.03429695591330528, + 0.006645034998655319, + -0.00915053952485323, + 0.0016305109020322561, + 0.01291758194565773, + -0.008159582503139973, + -0.026805037632584572, + -0.010310170240700245, + -0.016150491312146187, + -0.019495850428938866, + 0.0032241244334727526, + 0.005249964073300362, + -0.014955720864236355, + -0.010478843934834003, + -0.0004120202793274075, + -0.013585248030722141, + -0.008503957651555538, + 0.003009768668562174, + 0.012636459432542324, + 0.0026407951954752207, + 0.012594291009008884, + -0.010506955906748772, + 0.002022325526922941, + -0.0063463421538472176, + 0.016572175547480583, + -0.01785128377377987, + 0.00045550643699243665, + -0.03862624242901802, + 0.0036475653760135174, + 0.00030594042618758976, + -0.011561165563762188, + -0.01911633461713791, + 0.004902075044810772, + -0.027353227138519287, + 0.025568097829818726, + 0.03629292547702789, + 0.012088270857930183, + -0.017752891406416893, + 0.009656560607254505, + 0.003837323049083352, + -0.007238906342536211, + -0.00107177987229079, + 0.010851331055164337, + 0.020929574966430664, + -0.012495898641645908, + 0.037473637610673904, + 0.02261631190776825, + 0.006799652241170406, + -0.0014609588542953134, + 0.011989877559244633, + -0.026453634724020958, + 0.022827154025435448, + 0.038485679775476456, + -0.019875366240739822, + -0.02738133817911148, + -0.01714847795665264, + 0.014020988717675209, + 0.008307171985507011, + -0.027282945811748505, + -0.006304173730313778, + 0.017415544018149376, + -0.04860609397292137, + -0.019327176734805107, + 0.008349340409040451, + 0.007063204888254404, + -0.031148381531238556, + 0.012341281399130821, + -0.0026970196049660444, + 0.0147729916498065, + 0.009726841002702713, + 0.016811130568385124, + -0.02489340491592884, + 0.013929623179137707, + -0.00543972197920084, + -0.004417138639837503, + 0.018652481958270073, + -0.02388136275112629, + -0.012812161818146706, + -0.016515951603651047, + 0.017457712441682816, + 0.023206667974591255, + -0.019664524123072624, + -0.02766246162354946, + -0.01589748077094555, + 0.012987863272428513, + 0.008630462922155857, + 0.0013124910183250904, + -0.029039962217211723, + -0.04315231367945671, + 0.009424634277820587, + -0.00416764197871089, + -0.005007495637983084, + -0.005615423433482647, + 0.016853298991918564, + 0.013493883423507214, + -0.008735883980989456, + -0.016684625297784805, + -0.008658574894070625, + -0.007309186737984419, + 0.003661621594801545, + -0.025807052850723267, + -0.009255960583686829, + 0.023361286148428917, + -0.013332238420844078, + -0.008721827529370785, + 0.017879396677017212, + -0.005548656918108463, + 0.007112401071935892, + -0.01532118022441864, + -0.013655529357492924, + -0.013367378152906895, + 0.010506955906748772, + -0.00784332025796175, + -0.005348356906324625, + -0.009705756790935993, + -0.02555404230952263, + 0.0026548514142632484, + 0.0033523866441100836, + 0.013332238420844078, + 0.003116946667432785, + 6.839322395535419e-6, + -0.009164595976471901, + 0.0024000839330255985, + 0.006609894335269928, + -0.004789625760167837, + -0.015532022342085838, + -0.013008947484195232, + -0.014702710323035717, + 0.004357399884611368, + 0.0023860279470682144, + -0.0019379887962713838, + 0.06994329392910004, + -0.009761981666088104, + -0.00833528395742178, + -0.0019854281563311815, + -0.0013731081271544099, + -0.0064623053185641766, + 0.012095298618078232, + 0.04267440736293793, + 0.015475797466933727, + -0.004483905155211687, + -0.026552027091383934, + -0.04877476766705513, + 0.015208731405436993, + 0.0050391219556331635, + -0.02317855693399906, + 0.008763995952904224, + 0.00495127122849226, + 0.010415591299533844, + 0.008623435162007809, + -0.002424682257696986, + 0.023333173245191574, + 0.012685656547546387, + -0.009052147157490253, + 0.012945694848895073, + -0.002321018371731043, + 0.0022806068882346153, + -0.006606380455195904, + 0.020831182599067688, + -0.01658623106777668, + 0.020058095455169678, + 0.004550671670585871, + 0.007709786761552095, + -0.03255399316549301, + 0.0036335093900561333, + 0.009712784551084042, + 0.01532118022441864, + -0.003661621594801545, + 0.003547415602952242, + -0.00843367725610733, + 0.024921515956521034, + -0.004480390809476376, + -0.018750876188278198, + 0.014217774383723736, + 0.010050131939351559, + 0.005309702828526497, + 0.008026049472391605, + -0.005162113346159458, + 0.0021593726705759764, + 0.015827201306819916, + -0.008946726098656654, + -0.0067785680294036865, + 0.0010234619257971644, + 0.005105888936668634, + 0.004775569774210453, + 0.0007546384003944695, + -0.01464648637920618, + 0.016389446333050728, + -0.010275030508637428, + -0.012615375220775604, + 0.0061003598384559155, + -0.016347277909517288, + -0.0031995263416320086, + -0.031064044684171677, + -0.0419716015458107, + 0.002739188028499484, + -0.0098814582452178, + 0.008208779618144035, + -0.01459026150405407, + 0.003016796661540866, + -0.002988684456795454, + 0.004304689355194569, + 0.015040057711303234, + 0.006792624015361071, + -0.012109355069696903, + -0.007569225504994392, + 0.025933558121323586, + 0.0026864774990826845, + -0.0012729581212624907, + 0.0033910409547388554, + -0.015250899828970432, + 0.00768167432397604, + 0.008075245656073093, + 0.0023754858411848545, + -0.021323148161172867, + 0.0008675266872160137, + -0.0036756775807589293, + 0.01289649773389101, + -0.009698729030787945, + 0.004016538616269827, + -0.005942228250205517, + -0.02521669492125511, + 0.02163238264620304, + -0.012502926401793957, + -0.00383029505610466, + -0.010155552998185158, + -0.0043152314610779285, + -0.0021049052011221647, + -0.02562432363629341, + 0.006504473742097616, + -0.015335236676037312, + -7.450846169376746e-5, + 0.0040692491456866264, + 0.021196642890572548, + -0.0020240824669599533, + 0.005499460268765688, + 0.0011288828682154417, + 0.0098814582452178, + 0.012601319700479507, + -0.011989877559244633, + 0.0021136903669685125, + 0.00770275853574276, + 0.002772571286186576, + -0.020999856293201447, + -0.029068075120449066, + -0.037304963916540146, + 0.01577097736299038, + 0.004550671670585871, + -0.011371408589184284, + -0.019411513581871986, + -0.025005852803587914, + 0.004649064503610134, + -0.014365363866090775, + 0.00904511846601963, + -0.010436675511300564, + -0.013268985785543919, + -0.0003283423720858991, + -0.018750876188278198, + -0.008792108856141567, + -0.004673662595450878, + 0.01006418839097023, + 0.005239421967417002, + 0.013901511207222939, + 0.014716766774654388, + 0.0152790118008852, + -0.010724825784564018, + 0.005443235859274864, + 0.021786998957395554, + -0.011048117652535439, + 0.012214776128530502, + -0.014899496920406818, + 0.008876445703208447, + 0.01012744102627039, + -0.0029289459343999624, + 0.016150491312146187, + -0.004515531472861767, + 0.005980882793664932, + -0.001099892077036202, + -0.0022419525776058435, + 0.015166562981903553, + 0.0124256182461977, + 0.0311764944344759, + -0.020648453384637833, + 0.007794123608618975, + 0.0053764693439006805, + -0.008384481072425842, + 0.014281027019023895, + -0.014056128449738026, + 0.0024334671907126904, + 0.0033436017110943794, + -0.014716766774654388, + 0.0010006206575781107, + -0.01464648637920618, + -0.029517870396375656, + -0.009628448635339737, + -0.028899401426315308, + 0.017921563237905502, + 0.01581314392387867, + 0.008075245656073093, + 0.017429599538445473, + 0.003661621594801545, + -0.023361286148428917, + 0.019734805449843407, + -0.00496181333437562, + -0.03356603533029556, + 0.0054362076334655285, + -0.005763012915849686, + -0.0003540387551765889, + -0.0037213601171970367, + -0.020887406542897224, + 0.016473783180117607, + 0.010239889845252037, + -0.0055767688900232315, + 0.02021271362900734, + -0.010949724353849888, + -0.0013326967600733042, + -0.016487838700413704, + 0.017696665599942207, + -0.002078549936413765, + -0.0023772427812218666, + 0.008405565284192562, + -0.019256897270679474, + 0.003816239070147276, + -0.012762964703142643, + -0.0114065483212471, + -0.0115119693800807, + 0.010563180781900883, + 0.013219788670539856, + 0.028632333502173424, + 0.0010313685052096844, + 0.005829779431223869, + -0.008546126075088978, + 0.007836291566491127, + 0.008658574894070625, + -0.003956800326704979, + 0.007288102991878986, + -0.009473830461502075, + 0.0004254175291862339, + -0.020564116537570953, + -0.003304947167634964, + 0.007038606330752373, + -0.04472660273313522, + -0.025989782065153122, + 0.023206667974591255, + 0.012003934010863304, + -0.01157522201538086, + 0.02937730960547924, + -0.0074075800366699696, + 1.0295016039663096e-7, + 0.035477668046951294, + 0.013156536966562271, + 0.009874430485069752, + 0.004680690821260214, + 0.016192659735679626, + -0.02811225689947605, + 0.000827115320134908, + 0.03182307630777359, + 0.022546030580997467, + 0.004554185550659895, + 0.030501799657940865, + -0.004143043886870146, + 0.024260878562927246, + -0.00022303122386801988, + 0.017260925844311714, + 0.007737898733466864, + 0.026945598423480988, + 0.012601319700479507, + 0.019200671464204788, + 0.0014723794301971793, + 0.0040341089479625225, + -0.014316166751086712, + -0.0022718217223882675, + 0.008250948041677475, + -0.00428711948916316, + 0.00498289754614234, + -0.0013309397036209702, + -0.0034015830606222153, + 0.0037424443289637566, + 0.007695730309933424, + 0.007787095382809639, + -2.555909304646775e-5, + 0.020423555746674538, + -0.009614392183721066, + -0.008546126075088978, + 0.020831182599067688, + 0.0077238427475094795, + 0.006037107203155756, + 0.013156536966562271, + -0.005032094195485115, + 0.002598626771941781, + -0.005604881327599287, + -0.014576205983757973, + 0.006768025923520327, + 0.0015470526413992047, + -0.006799652241170406, + 0.0115119693800807, + 0.023937586694955826, + -0.024401439353823662, + -0.010211777873337269, + -0.02107013761997223, + 0.02457011304795742, + -0.003911118023097515, + 0.007590309716761112, + 0.007393523585051298, + 0.006026565097272396, + -0.01744365505874157, + -0.003116946667432785, + 0.006272547412663698, + 0.012439673766493797, + 0.004877476487308741, + 0.003266292857006192, + -0.011315183714032173, + -0.01558824721723795, + -0.007049148436635733, + -0.021604269742965698, + 0.00990254245698452, + -0.039385274052619934, + -0.025076134130358696, + 0.010774022899568081, + -0.017457712441682816, + 0.0021277465857565403, + 0.004048164933919907, + -0.005014523863792419, + 0.019327176734805107, + -0.0017535020597279072, + -0.002911375602707267, + -0.0059246583841741085, + 0.007780067157000303, + 0.015714751556515694, + 0.016839241608977318, + -0.01546174194663763, + -0.0014574448578059673, + 0.01598181761801243, + -0.005422151647508144, + -0.01918661594390869, + 0.014013960026204586, + 0.013191676698625088, + 0.024401439353823662, + -0.0030888342298567295, + 0.001913390471599996, + 0.032047972083091736, + 0.006493931636214256, + 0.015110338106751442, + -0.00924893282353878, + -0.009009978733956814, + -0.0017218757420778275, + 0.002886777510866523, + 0.004926673136651516, + 0.025202639400959015, + -0.0030624789651483297, + 0.010303142480552197, + -0.014407532289624214, + 0.010366395115852356, + -0.010907555930316448, + 0.005197253543883562, + 0.01540551707148552, + 0.0050953468307852745, + 0.023122331127524376, + 0.02562432363629341, + 0.02306610718369484, + 0.00610387371852994, + -0.003974370192736387, + -0.0027795995119959116, + -0.025090189650654793, + -0.004357399884611368, + -0.00851801410317421, + 0.01558824721723795, + -0.00570327416062355, + 0.0003740247921086848, + -0.018835213035345078, + -0.023403454571962357, + -0.002867450239136815, + 0.0008829006110318005, + -0.0045471577905118465, + -0.00463500851765275, + 0.010457759723067284, + 0.030417462810873985, + 0.007555169053375721, + -0.01153305359184742, + 0.008468817919492722, + 0.024752842262387276, + 0.018511921167373657, + -0.0055170306004583836, + 0.005292132496833801, + -0.013114368543028831, + -0.024598225951194763, + -0.0011350323911756277, + 0.0021400456316769123, + -0.007737898733466864, + -0.006339313928037882, + -0.0037565003149211407, + -0.007836291566491127, + 0.023614296689629555, + -0.008061190135776997, + -0.005239421967417002, + 0.022883377969264984, + -0.004360913764685392, + -4.0027021896094084e-5, + 0.02289743348956108, + -0.017949676141142845, + 0.005720844492316246, + -0.005513516720384359, + -0.027859246358275414, + -0.015250899828970432, + -0.012727824971079826, + -0.002212083199992776, + -0.011687670834362507, + 0.008321228437125683, + 0.015616359189152718, + 0.0022929059341549873, + 0.00908728688955307, + 0.002895562443882227, + -0.01291758194565773, + -0.005914116278290749, + 0.007316214963793755, + 0.019003886729478836, + 0.002350887516513467, + -0.0013212760677561164, + 0.002723374869674444, + -0.017654497176408768, + -0.016726793721318245, + -0.003394555067643523, + 0.01546174194663763, + 0.017204701900482178, + -0.011139482259750366, + -0.0010094057070091367, + 0.0003533798735588789, + -0.009319213218986988, + 0.006395538803189993, + -0.0034806488547474146, + -0.016291053965687752, + -0.0022278963588178158, + -0.014829215593636036, + -0.0046982611529529095, + -0.0033963120076805353, + -0.008384481072425842, + -0.010225833393633366, + -0.001652473583817482, + 0.02420465461909771, + 0.01809023693203926, + -0.021407485008239746, + 0.02555404230952263, + 0.009094315581023693, + -8.142671140376478e-5, + 0.010844303295016289, + 0.002863936126232147, + -0.006883989088237286, + 0.03615236282348633, + -0.021618325263261795, + 0.010584264993667603, + 0.019495850428938866, + 0.006606380455195904, + 0.009937683120369911, + 0.005172655452042818, + -0.009797121398150921, + -0.012172607704997063, + 0.0152790118008852, + 0.030754810199141502, + -0.0024492803495377302, + 0.0032170964404940605, + 0.02081712707877159, + -0.0038548933807760477, + -0.014098296873271465, + 0.01870870776474476, + 0.006606380455195904, + -0.01838541589677334, + 0.006680175196379423, + 0.015714751556515694, + -0.02143559604883194, + -0.013606332242488861, + 0.032778892666101456, + -0.013985848054289818, + -0.011118398047983646, + 0.005302674602717161, + 0.001231668284162879, + 0.0014161550207063556, + 0.0272970013320446, + -0.0001134373524109833, + 0.023248836398124695, + -0.00919270794838667, + -0.017907507717609406, + -0.019214728847146034, + 0.012973806820809841, + -0.005183197557926178, + 0.012376421131193638, + -0.017781002447009087, + -0.014871384017169476, + 0.007611393928527832, + -0.007751955185085535, + 0.008735883980989456, + -0.014871384017169476, + 0.01757016032934189, + 0.0005126094329170883, + 0.011828232556581497, + -0.006789110135287046, + -0.002053951844573021, + -0.010823219083249569, + 0.0016911280108615756, + 0.0199597030878067, + -0.0008626949274912477, + 0.012608347460627556, + -0.01785128377377987, + 0.02783113531768322, + 0.010851331055164337, + -0.015658527612686157, + -0.013374406844377518, + 0.010724825784564018, + -0.03418450430035591, + 0.008152554742991924, + 0.020240824669599533, + -0.012411561794579029, + -0.0014117624377831817, + -0.00577706890180707, + 0.0014029773883521557, + -1.6595566194155253e-5, + 0.030529912561178207, + -0.005474862176924944, + -0.011280043050646782, + 0.018835213035345078, + 0.009712784551084042, + -0.012397505342960358, + -0.014070184901356697, + 0.005889517720788717, + -0.013247901573777199, + 0.005587310995906591, + -0.003536873497068882, + 0.009783065877854824, + 0.00915053952485323, + 0.033144351094961166, + -0.013374406844377518, + -0.009417606517672539, + 0.006177668459713459, + -0.006307687610387802, + 0.010275030508637428, + 0.0012975563295185566, + -0.00033624895149841905, + 0.013880426995456219, + -0.0019713721703737974, + 0.005671647842973471, + 0.025244807824492455, + 0.005042636301368475, + 0.015152506530284882, + -0.01165253110229969, + 0.002458065515384078, + -0.007709786761552095, + -0.014618373475968838, + 0.011743895709514618, + 0.014801103621721268, + 0.004445250611752272, + 0.03980695828795433, + 6.281332753133029e-5, + 0.0036581074818968773, + -0.02326289378106594, + 0.008328256197273731, + -0.004912617150694132, + -0.007611393928527832, + 0.00043222596286796033, + 0.003134516766294837, + 0.006711801514029503, + -0.002440495416522026, + 0.008672631345689297, + -0.015124394558370113, + 0.0053870114497840405, + 0.012313168495893478, + -0.0020012413151562214, + 0.005935200490057468, + 0.01988942176103592, + 0.0007234513759613037, + -0.007281074766069651, + 0.02510424517095089, + -0.022025953978300095, + -0.0012580235488712788, + 0.015995875000953674, + 0.016122380271553993, + -0.018076181411743164, + -0.011547110043466091, + -0.013606332242488861, + -0.0199737586081028, + -0.008461789228022099, + -0.012313168495893478, + -0.0007010494009591639, + -0.035477668046951294, + 0.012495898641645908, + 0.02755001187324524, + 0.003568499581888318, + 0.011111369356513023, + -0.009642504155635834, + -0.018427584320306778, + 0.013008947484195232, + -0.0004370577516965568, + 0.007653561886399984, + -0.012559151276946068, + -0.011153537780046463, + -0.010387479327619076, + 0.013156536966562271, + -0.016656512394547462, + -0.0022665506694465876, + 0.0021013913210481405, + 0.00620226701721549, + 0.0055767688900232315, + 0.0018800072139129043, + -0.018778987228870392, + 0.0016656512161716819, + -0.037586089223623276, + -0.02045166678726673, + 0.006588810123503208, + 0.010457759723067284, + 0.007625449914485216, + 0.002340345410630107, + 0.011343295685946941, + 0.006827764678746462, + -0.0026407951954752207, + -0.021168529987335205, + -0.020676566287875175, + -0.0004412306589074433, + 0.0001131079116021283, + 0.017246870324015617, + 0.006318229716271162, + 0.0013283041771501303, + -0.0009953496046364307, + -0.005594339221715927, + 0.02620062418282032, + -0.007962796837091446, + -0.020240824669599533, + 0.010577237233519554, + 0.003963828086853027, + -0.0063814823515713215, + -0.008820220828056335, + -0.017289038747549057, + -0.009368409402668476, + -0.03826078400015831, + -0.0034648356959223747, + 0.0050285798497498035, + 0.0037775845266878605, + 5.9628735471051186e-5, + 0.0006105630891397595, + 0.004065735265612602, + 0.017204701900482178, + -0.009059174917638302, + -0.012889469973742962, + -0.007122943177819252, + -0.004617438185960054, + 0.003004497615620494, + 0.006349856033921242, + -0.01366958487778902, + 0.011012976989150047, + -0.0012088270159438252, + 0.028716670349240303, + -0.0049407291226089, + 0.015250899828970432, + -0.00849692989140749, + -0.009832262061536312, + -0.00540809566155076, + 0.009410577826201916, + -0.005857891868799925, + 0.00734432740136981, + 0.00906620267778635, + -0.004501475021243095, + 0.0030818062368780375, + 0.014913552440702915, + -0.01541957352310419, + -0.010935667902231216, + -0.006599352229386568, + 0.019650468602776527, + -0.020634397864341736, + 0.0006123200873844326, + -0.022194627672433853, + -0.007541113067418337, + 0.0009742654510773718, + 0.00906620267778635, + -0.01609426736831665, + 0.006831278558820486, + -0.006746941711753607, + 0.0031995263416320086, + 0.00992362666875124, + 0.010998920537531376, + -0.0019397457363083959, + 0.005970340687781572, + -0.010029047727584839, + -0.002570514567196369, + 0.0026759356260299683, + -0.012685656547546387, + 0.011308155953884125, + -0.009530055336654186, + 0.012629431672394276, + -0.011336267925798893, + -0.00684533454477787, + -7.752833334961906e-5, + -0.010183664970099926, + 0.013725809752941132, + -0.019594242796301842, + -0.0026899916119873524, + -0.021604269742965698, + -0.01558824721723795, + 0.007920628413558006, + -0.01159630622714758, + -0.0030431519262492657, + 0.015124394558370113, + 0.0011420605005696416, + 0.003995454404503107, + 0.006349856033921242, + 0.000688311061821878, + 0.014829215593636036, + -0.020311105996370316, + 0.011455744504928589, + 0.0003285620186943561, + -0.018230799585580826, + -0.022827154025435448, + -0.018652481958270073, + -0.012608347460627556, + -0.05372252315282822, + 0.0025441593024879694, + 0.0014056129148229957, + -0.020592229440808296, + -0.004975869785994291, + -1.568960396980401e-5, + 0.0006619557971134782, + -0.01155413780361414, + -0.005316730588674545, + -0.011835260316729546, + 0.010703742504119873, + -0.00192041858099401, + -0.04503583535552025, + -0.012552122585475445, + -0.009052147157490253, + 0.02225085161626339, + 0.00245455140247941, + -0.01564447209239006, + 0.0033523866441100836, + -0.00027826742734760046, + -0.013529024086892605, + -0.023333173245191574, + -0.012812161818146706, + 0.004462820943444967, + -0.011371408589184284, + 0.001242210390046239, + -0.016811130568385124, + 0.007836291566491127, + 0.005278076510876417, + 0.0018518950091674924, + 0.0022647937294095755, + 0.017303094267845154, + 0.0058086952194571495, + -0.006399052683264017, + 0.01369066908955574, + -0.008180666714906693, + -0.013156536966562271, + 0.012538067065179348, + -0.010415591299533844, + -0.005443235859274864, + -0.002595112659037113, + -0.0024879348929971457, + 0.008644519373774529, + 0.0069191292859613895, + 0.014913552440702915, + 0.01000093575567007, + -0.01087944395840168, + 0.004251978825777769, + 0.010513984598219395, + -0.02636929787695408, + 0.01686735451221466, + 0.009115399792790413, + 0.006219836883246899, + -0.023164499551057816, + -0.003559714648872614, + -0.011041088961064816, + 0.0028217679355293512, + 0.002509018871933222, + -0.01220774743705988, + 0.015166562981903553, + 0.013683641329407692, + -0.01144871674478054, + 0.0008846576092764735, + 0.009199736639857292, + 0.008145526982843876, + 0.02156210131943226, + -0.0092700170353055, + -0.0007779189036227763, + -0.0061003598384559155, + -0.007737898733466864, + 0.008384481072425842, + -0.006553669925779104, + -0.03027690201997757, + 0.02530103176832199, + 0.004870448727160692, + -0.004877476487308741, + -0.0019784001633524895, + -0.0021400456316769123, + -0.011244903318583965, + 0.013128424063324928, + 0.018441641703248024, + 0.011308155953884125, + -0.0069191292859613895, + -0.011947709135711193, + -0.005654077976942062, + -0.008749940432608128, + -0.007028064224869013, + 0.005875461734831333, + -0.0006768904277123511, + -0.02094363234937191, + 0.02351590432226658, + 0.0064728474244475365, + -0.014941664412617683, + -0.0002558654814492911, + 0.0032012832816690207, + 0.007449748460203409, + -0.014309138990938663, + -0.0073513551615178585, + -0.0003276834904681891, + 0.007049148436635733, + 0.006448248866945505, + -0.001228154287673533, + 0.03027690201997757, + -0.011301127262413502, + 0.011230846866965294, + -0.0033646859228610992, + -0.01793562062084675, + 0.025357255712151527, + 0.025076134130358696, + 0.02237735688686371, + -0.01083727553486824, + 0.013402518816292286, + 0.005893032066524029, + -0.009537083096802235, + 0.00026421129587106407, + 0.014421587809920311, + 0.006680175196379423, + 0.0074919164180755615, + 0.0023438595235347748, + -0.011258958838880062, + -0.008370424620807171, + 0.008869417011737823, + 0.00935435388237238, + -0.008714799769222736, + -0.012868385761976242, + 0.005172655452042818, + 0.02012837678194046, + -0.021323148161172867, + 0.009164595976471901, + -0.00498289754614234, + 0.004378484096378088, + -0.0025213181506842375, + 0.0011859858641400933, + -0.021618325263261795, + 0.01239047758281231, + 0.00270931888371706, + -0.004251978825777769, + 0.001916904584504664, + 0.0018272966844961047, + -0.004895046819001436, + 0.009157568216323853, + -0.01780911535024643, + 0.012502926401793957, + 0.013240872882306576, + -0.0007357504800893366, + -0.02489340491592884, + 0.00690858718007803, + 0.006019537337124348, + -0.005822751205414534, + 0.0023965700529515743, + -0.005021552089601755, + 0.005931686144322157, + -0.008995922282338142, + -0.011807148344814777, + 0.04315231367945671, + 0.007031578570604324, + -0.028899401426315308, + -0.008349340409040451, + 0.004705288913100958, + 0.0012624160153791308, + -0.011807148344814777, + 0.010774022899568081, + -0.023234780877828598, + 0.02615845575928688, + -0.008714799769222736, + -0.009052147157490253, + 0.004107903689146042, + 0.0028112258296459913, + 0.015433629043400288, + -0.025090189650654793, + -0.01731714978814125, + -0.012545094825327396, + 5.004750710213557e-5, + -0.013880426995456219, + -0.013030031695961952, + -0.02677692472934723, + 0.007632478140294552, + 0.0021418025717139244, + -0.002593355719000101, + 0.006771539803594351, + -0.01581314392387867, + 0.006399052683264017, + 0.0002593795070424676, + 0.019791029393672943, + -0.0026390382554382086, + 0.014358335174620152, + -0.026088174432516098, + 0.009347325190901756, + 0.009537083096802235, + 0.008159582503139973, + -0.022911489009857178, + -0.005256992299109697, + -0.007379467599093914, + 0.020367329940199852, + 0.009368409402668476, + 0.006732885725796223, + 0.0016963990638032556, + 0.019060110673308372, + -0.006722343619912863, + -0.023319117724895477, + 0.006669633090496063, + -0.013367378152906895, + -0.0034929479006677866, + 0.01078105065971613, + 0.013395491056144238, + -0.012805133126676083, + -0.025399424135684967, + 0.018118349835276604, + -0.012741880491375923, + -0.014105325564742088, + 0.014295082539319992, + 0.008988894522190094, + 0.0003514032287057489, + 0.018778987228870392, + 0.011547110043466091, + 0.007028064224869013, + 0.01678301766514778, + 0.016572175547480583, + 8.510546467732638e-5, + -0.010057159699499607, + 0.0011965279700234532, + 0.01173686794936657, + 0.017457712441682816, + -0.02004403993487358, + -0.010464787483215332, + -0.0010357609717175364, + -0.01161036267876625, + -0.039750732481479645, + -0.005425665527582169, + 0.00782223604619503, + 0.00902403425425291, + 0.0011218547588214278, + -0.014449700713157654, + 0.02077495865523815, + -0.0011165837058797479, + 0.009452746249735355, + -0.0026284961495548487, + -0.00326453591696918, + -0.02570865862071514, + -0.0018747361609712243, + -0.02070467732846737, + 0.006392024457454681, + -0.009347325190901756, + -0.012439673766493797, + 0.0028973196167498827, + -0.01630510948598385, + -0.01220774743705988, + -0.015433629043400288, + 0.0156866405159235, + -0.007196737919002771, + -0.0026284961495548487, + 0.011968793347477913, + 0.014660541899502277, + 0.0062057808972895145, + 0.003661621594801545, + -0.022560086101293564, + -0.007990908809006214, + 0.013613360933959484, + -0.012678627856075764, + 0.0029184038285166025, + -0.0038935476914048195, + 0.00465609272941947, + -0.012762964703142643, + 0.005288618616759777, + -0.005316730588674545, + -0.012278028763830662, + -0.0004902075161226094, + 0.005854377523064613, + -0.015068169683218002, + -0.0015927350614219904, + -0.00030857595265842974, + -0.0014143979642540216, + 0.010338283143937588, + -0.0011446960270404816, + 0.002839338034391403, + -0.013465771451592445, + 0.0008561061113141477, + -0.002582813613116741, + -0.006409594789147377, + -0.005457291845232248, + -0.021913504227995872, + 0.013536051847040653, + 0.0036124251782894135, + 0.011961765587329865, + -0.014393475838005543, + -0.005587310995906591, + -0.008665603585541248, + 0.018568146973848343, + -0.0021347745787352324, + -0.00786440446972847, + 0.0007014886941760778, + -0.0026741784531623125, + 0.014477812685072422, + 0.004234408959746361, + 0.022110290825366974, + 0.02624279260635376, + 0.02877289615571499, + -0.02815442532300949, + -7.313579408219084e-5, + -0.02714238502085209, + 0.02175888791680336, + -0.019130392000079155, + 0.004367941990494728, + 0.014435644261538982, + 0.011659558862447739, + -0.021505877375602722, + 0.00463500851765275, + 0.005176169332116842, + 0.005341329146176577, + 0.02334723062813282, + 0.0004357399884611368, + 0.0027795995119959116, + -0.01804806850850582, + 0.012973806820809841, + 0.005183197557926178, + -0.017907507717609406, + -0.026172511279582977, + 0.03373470902442932, + 0.016937635838985443, + 0.007098345085978508, + -0.013929623179137707, + 0.008721827529370785, + 0.02151993289589882, + -0.002436981303617358, + 0.00016702634457033128, + -0.005183197557926178, + -0.009551139548420906, + -0.0083563681691885, + 0.01789345219731331, + -0.020479779690504074, + 0.0036299952771514654, + -0.0024229250848293304, + -0.0022753358352929354, + -0.037051957100629807, + -0.006377968471497297, + -0.018230799585580826, + 0.01075996644794941, + 0.011371408589184284, + 0.01540551707148552, + -0.002083820989355445, + -0.005063720513135195, + 0.004259007051587105, + 0.011392492800951004, + -0.011603333987295628, + -0.008166611194610596, + -0.0033277885522693396, + 0.002180456882342696, + -0.022307075560092926, + -0.02306610718369484, + 0.002753244247287512, + -0.03019256517291069, + 0.01307922787964344, + -0.012334252707660198, + 0.020634397864341736, + -0.018525978550314903, + -0.019088223576545715, + 0.0012694441247731447, + -0.016431614756584167, + 0.026256848126649857, + -0.0018220257479697466, + 0.010190693661570549, + 0.01238344982266426, + 0.0059246583841741085, + -0.015827201306819916, + 0.012214776128530502, + -0.008525041863322258, + 0.001902848482131958, + 0.003550929483026266, + -0.008019021712243557, + 0.010450731962919235, + 0.01935528963804245, + -0.017865339294075966, + -0.01593964919447899, + 0.010506955906748772, + 0.008426649495959282, + 0.01772477850317955, + 0.011265987530350685, + -0.01240453403443098, + -0.007245934568345547, + 0.019130392000079155, + 0.04413624480366707, + -0.012432646006345749, + 0.010598321445286274, + 0.0056681339628994465, + -0.019622355699539185, + 0.004504989366978407, + 0.0009145268704742193, + -0.0037916407454758883, + 0.026537971571087837, + 0.009101343341171741, + 0.005018037743866444, + -0.0029201607685536146, + 0.011877428740262985, + -0.009846318513154984, + 0.015307123772799969, + -0.014217774383723736, + -0.008349340409040451, + 0.017513936385512352, + 0.0063814823515713215, + -0.002196270041167736, + -0.0019766429904848337, + 0.005077776499092579, + -0.008820220828056335, + -0.004195754416286945, + 0.011856344528496265, + -0.015672583132982254, + -0.01667056791484356, + 0.006669633090496063, + -0.00303085264749825, + -0.01622077263891697, + -0.00839150883257389, + -0.021252866834402084, + -0.020423555746674538, + 0.01316356472671032, + 0.02062034048140049, + 0.009761981666088104, + 0.003313732333481312, + 0.0018677080515772104, + -0.0012668085983023047, + 0.03632103651762009, + -3.3877466194098815e-5, + -0.008749940432608128, + 0.014133437536656857, + -0.014189662411808968, + -0.006458790972828865, + 0.006044135428965092, + 0.007094831205904484, + 0.004947757348418236, + -0.013704725541174412, + 0.01246778666973114, + -0.003129245713353157, + 0.007217822130769491, + -0.0010041346540674567, + -0.0057840971276164055, + 0.011041088961064816, + -0.010907555930316448, + 0.002742702141404152, + -0.002192756161093712, + 0.00025432807160541415, + 0.02795764058828354, + 0.03162628784775734, + 0.014477812685072422, + 0.0017587731126695871, + 0.011420604772865772, + -0.008616406470537186, + -0.00417818408459425, + 0.012003934010863304, + 0.014449700713157654, + -0.016164548695087433, + 0.029236746951937675, + -0.003911118023097515, + 0.022560086101293564, + 0.02143559604883194, + -0.020198656246066093, + 0.005011009983718395, + 0.007295130752027035, + 0.0036053969524800777, + 0.009445718489587307, + 0.009438690729439259, + -0.0030607220251113176, + 0.009712784551084042, + -0.0009092558175325394, + 0.03210419788956642, + 0.008328256197273731, + 0.003106404561549425, + -0.002995712449774146, + 0.00043178669875487685, + 0.006546642165631056, + -0.00026992158382199705, + 0.002605654764920473, + 7.796759018674493e-5, + 0.0015593518037348986, + 0.0027690574061125517, + -0.0006136378506198525, + 0.0026407951954752207, + -0.021772943437099457, + -0.025849221274256706, + -0.020072150975465775, + 0.0036651354748755693, + -0.013135452754795551, + 0.015517965890467167, + 0.01012744102627039, + -0.006406080909073353, + -0.01393665187060833, + 0.000826236791908741, + 0.004810709971934557, + 0.01915850304067135, + -0.003241694765165448, + 0.011153537780046463, + -0.00326453591696918, + 0.00922784861177206, + -0.0066134086810052395, + -0.02111230604350567, + 0.0004361792525742203, + -0.007611393928527832, + 0.009361381642520428, + 0.012784048914909363, + 0.020564116537570953, + 0.004469849169254303, + 0.0199737586081028, + -0.018146462738513947, + -0.01890549249947071, + -0.025680547580122948, + 0.0021154473070055246, + 0.014829215593636036, + -0.0009953496046364307, + 0.01882115565240383, + -0.007505972869694233, + -0.0040341089479625225, + -3.25047985825222e-5, + -0.005070748273283243, + 0.018835213035345078, + -0.0007700123242102563, + -0.024106260389089584, + -0.004427680745720863, + -0.026537971571087837, + 0.020929574966430664, + -0.0029324598144739866, + 0.014105325564742088, + 0.03727685287594795, + -0.003921660128980875, + -0.03615236282348633, + 0.004181698430329561, + 0.026144400238990784, + -0.016023986041545868, + -0.010197721421718597, + -0.012784048914909363, + 0.005931686144322157, + -0.001776343327946961, + 0.011090285144746304, + -0.007737898733466864, + 0.0036475653760135174, + -0.009389493614435196, + -0.012552122585475445, + -0.020437611266970634, + -0.007787095382809639, + 0.021983785554766655, + -0.01870870776474476, + -0.014182633720338345, + 0.02167455106973648, + 0.017331207171082497, + 0.016698680818080902, + 0.024345215409994125, + -0.005910601932555437, + -0.026355240494012833, + 0.013177620247006416, + 0.012341281399130821, + 0.013226817362010479, + -0.02774679847061634, + -0.002827038988471031, + 0.02257414348423481, + 0.003707303898409009, + 0.009213792160153389, + -0.010268001817166805, + -0.00577706890180707, + -0.012088270857930183, + 0.018778987228870392, + -0.007309186737984419, + -0.0029553009662777185, + -0.029714656993746758, + -0.005664620082825422, + -0.018919549882411957, + 0.015307123772799969, + -0.02918052300810814, + -0.002340345410630107, + -0.012292084284126759, + -0.010893499478697777, + 0.006630978547036648, + -0.006044135428965092, + -0.012566179037094116, + -0.01866653934121132, + 0.00917162373661995, + -0.019172560423612595, + -0.005794639233499765, + -0.006982381921261549, + 0.01911633461713791, + -0.0055170306004583836, + -0.012193691916763783, + -0.021913504227995872, + 0.012032045982778072, + 0.012784048914909363, + -0.027198608964681625, + 0.001230789814144373, + -0.014449700713157654, + 0.004424166399985552, + 0.010268001817166805, + -0.01719064638018608, + -0.004705288913100958, + -0.0171203650534153, + 0.009466802701354027, + -0.019327176734805107, + -0.00608278950676322, + 0.021871335804462433, + 0.0056927320547401905, + 0.017092252150177956, + 0.0005547778564505279, + -0.019776973873376846, + 0.014070184901356697, + 0.024921515956521034, + 0.005706788506358862, + 0.007927656173706055, + 0.008763995952904224, + -0.013367378152906895, + -0.01454809308052063, + -0.020226769149303436, + -0.00014473420742433518, + 0.016979804262518883, + 0.04185914993286133, + -0.004905588924884796, + 0.027690574526786804, + -0.00919270794838667, + -0.02636929787695408, + -0.02555404230952263, + 0.0007963675307109952, + 0.0024387382436543703, + -0.00766059011220932, + 0.011870400980114937, + -0.0027760853990912437, + -0.02388136275112629, + 0.020423555746674538, + 0.013325209729373455, + 0.002183970995247364, + 0.015307123772799969, + 0.006627464666962624, + -0.00990254245698452, + -0.0029359739273786545, + 0.009558167308568954, + -0.00498289754614234, + -0.005228879861533642, + -0.01838541589677334, + 0.0021576157305389643, + -0.004849364515393972, + 0.0038900335785001516, + -0.0011605091858655214, + -0.012046102434396744, + 0.004701775033026934, + -0.011223819106817245, + 0.009895514696836472, + -0.007604365702718496, + -0.017977789044380188, + -0.008321228437125683, + 0.004143043886870146, + 0.029039962217211723, + 0.008138498291373253, + 0.012418589554727077, + -0.018329191952943802, + -0.016234828159213066, + -0.003907603677362204, + -0.002445766469463706, + 0.012088270857930183, + -0.005618937313556671, + -0.007091316860169172, + 0.006996437907218933, + -0.012256944552063942, + 0.016066154465079308, + -0.014491869136691093, + 0.013332238420844078, + 0.004062221385538578, + -0.004501475021243095, + -0.020381387323141098, + -0.012334252707660198, + 0.002993955509737134, + 0.003004497615620494, + 0.015475797466933727, + -0.013416575267910957, + -0.009501943364739418, + 0.016023986041545868, + -0.006427164655178785, + -0.0007050026906654239, + 0.02823876217007637, + 0.013992875814437866, + -0.009009978733956814, + -0.0050953468307852745, + 0.006219836883246899, + 0.0037248742301017046, + 0.021056080237030983, + 0.0010401535546407104, + 0.01922878436744213, + 0.010120412334799767, + -0.007094831205904484, + -0.01963641121983528, + -0.00935435388237238, + 0.012706740759313107, + -0.03199175000190735, + 0.004160614218562841, + -0.01967857964336872, + -0.01890549249947071, + -0.006444734986871481, + -0.0035878268536180258, + 0.017050083726644516, + 0.005664620082825422, + -0.008686687797307968, + -0.0026882346719503403, + -0.0032311526592820883, + 0.0021312604658305645, + 0.005601367447525263, + 0.033875271677970886, + -0.006441221106797457, + -0.012256944552063942, + 0.02066250890493393, + -0.004529587458819151, + -0.008644519373774529, + -0.01216557901352644, + -0.024471720680594444, + 0.012488869950175285, + 0.01585531234741211, + -0.003408611286431551, + -0.00623389333486557, + 0.0181324053555727, + 0.0029693571850657463, + 0.010408563539385796, + -0.007393523585051298, + -0.010260974057018757, + -0.008953753858804703, + -0.00682425033301115, + -0.004512017127126455, + 0.012840273790061474, + 0.0015883425949141383, + 0.008096329867839813, + -0.017373375594615936, + 0.03946961089968681, + 0.01239047758281231, + -0.000950545712839812, + 0.007513000629842281, + -0.012235860340297222, + 0.007122943177819252, + 0.0037424443289637566, + -0.01065454538911581, + 0.008665603585541248, + 0.03499976173043251, + 0.003413882339373231, + -0.015166562981903553, + -0.006701259408146143, + -0.001361687434837222, + 0.00784332025796175, + -0.015026001259684563, + 0.0010102842934429646, + 0.006750456057488918, + -0.0006017780397087336, + 0.008208779618144035, + 0.01303705945611, + -0.008862389251589775, + -0.004410110414028168, + 0.009213792160153389, + -0.0005679554305970669, + -0.0062655191868543625, + -0.01939745806157589, + -0.021196642890572548, + 0.04430491849780083, + 0.008953753858804703, + 0.003956800326704979, + -0.0038794914726167917, + 0.00997985154390335, + -0.016797073185443878, + 0.0034859199076890945, + 0.005102374590933323, + 0.016853298991918564, + 0.014997889287769794, + -0.007042120676487684, + 0.0018905493197962642, + -0.002732160035520792, + -0.001085835974663496, + 0.01785128377377987, + -0.00768167432397604, + 0.01830107904970646, + -0.013135452754795551, + 0.006392024457454681, + -0.0277046300470829, + 0.014969777315855026, + -0.005060206167399883, + 0.006764512043446302, + 0.02225085161626339, + -0.01071779802441597, + -0.03171062469482422, + 0.017907507717609406, + -0.012074214406311512, + -0.012439673766493797, + 0.007063204888254404, + -0.01006418839097023, + -0.0152790118008852, + 0.01922878436744213, + 0.009811177849769592, + 0.015672583132982254, + 0.011153537780046463, + 0.007498944643884897, + -0.01014852523803711, + 0.005309702828526497, + -0.0001484678650740534, + 0.005780582781881094, + 0.007052662782371044, + 0.00044342695036903024, + -0.0003046226629521698, + 0.025497818365693092, + -0.0001707600022200495, + 0.014281027019023895, + 0.009009978733956814, + -0.006300659850239754, + -0.0066380067728459835, + 0.010563180781900883, + -0.020915519446134567, + 0.0013388462830334902, + -0.026580139994621277, + 0.012769993394613266, + 0.0083563681691885, + -0.02399381250143051, + -0.032863229513168335, + -0.00042102497536689043, + 0.00857423897832632, + 0.012088270857930183, + -0.0013994632754474878, + 0.022391412407159805 + ], + "55101789-8dc2-429d-9a8b-d5623c1ba66d": [ + -0.013188804499804974, + -0.015138689428567886, + 0.002168231410905719, + -0.009397361427545547, + -0.0024593600537627935, + 0.023236127570271492, + -0.030033642426133156, + 0.008165142498910427, + 0.0012525301426649094, + 0.037101976573467255, + 0.021218538284301758, + 0.0012474523391574621, + 0.016506316140294075, + 0.006455608177930117, + -0.01848328299820423, + -0.011144133284687996, + -0.0022850213572382927, + 0.03972890228033066, + 0.001086654607206583, + -0.013811684213578701, + 0.030277378857135773, + -0.04977622628211975, + -0.0594714879989624, + 0.013344524428248405, + -0.015504292212426662, + -0.037481117993593216, + 0.00023167577455751598, + 0.015355342999100685, + -0.014380401000380516, + -0.003794827964156866, + 0.0035917148925364017, + -0.02291114628314972, + 0.0234663225710392, + 0.02079877071082592, + -0.002406889107078314, + -0.042653732001781464, + 0.004837474785745144, + -0.013642423786222935, + -0.007833391427993774, + -0.0020599043928086758, + -0.031550221145153046, + 0.02483394928276539, + 0.0016181336250156164, + -0.03314804285764694, + -0.048340894281864166, + 0.016655266284942627, + -0.053351014852523804, + -0.02004048228263855, + 0.015423047356307507, + -0.02517247200012207, + 0.03390632942318916, + 0.006306658964604139, + -0.03182103857398033, + 0.03485419228672981, + 0.034989599138498306, + -0.02155705913901329, + 0.006249110214412212, + 0.031550221145153046, + 0.030764849856495857, + -0.0018737174104899168, + 0.01834787428379059, + -0.010683744214475155, + 0.0075422627851367, + -0.02935659885406494, + 0.011340475641191006, + -0.02517247200012207, + -0.017129195854067802, + -0.03071068599820137, + -0.028896210715174675, + -0.0023256437852978706, + 0.014055419713258743, + 0.012626858428120613, + 0.003358134999871254, + -0.022058071568608284, + 0.036912404000759125, + -0.0037575906608253717, + 0.03821232542395592, + 0.016912542283535004, + -0.0010773452231660485, + -0.03471878170967102, + -0.006519927177578211, + -0.03851022571325302, + -0.012254484929144382, + 0.0031567146070301533, + 0.054867591708898544, + 0.008760941214859486, + -0.0077182939276099205, + -0.04127256199717522, + -0.032552242279052734, + 0.002753873821347952, + -0.02231534942984581, + 0.015748027712106705, + -0.011841488070786, + -6.669935100944713e-5, + 0.0015013435622677207, + -0.024346478283405304, + 0.025307880714535713, + -0.0006398059776984155, + 0.0025879982858896255, + -0.05164486542344093, + 0.011177985928952694, + -0.002863893285393715, + 0.03209185600280762, + 0.00023696516291238368, + -0.013987715356051922, + 0.04831381142139435, + 0.024752704426646233, + 0.0017061491962522268, + 0.005629615392535925, + 0.042274586856365204, + -0.03222726285457611, + -0.0660252645611763, + 0.021313324570655823, + 0.01752188242971897, + -0.04251832142472267, + -0.03282305970788002, + -0.020270677283406258, + 0.0031770258210599422, + 0.024129824712872505, + -0.006966776214540005, + 0.006783974356949329, + 0.001833094866015017, + -0.009871291927993298, + 0.03924143314361572, + 0.01600530371069908, + -0.00025114076561294496, + -0.013622111640870571, + 0.013418999500572681, + 0.030846094712615013, + 0.03642493113875389, + -0.02498289942741394, + 0.0005721016204915941, + 0.03433963656425476, + -0.020162351429462433, + 0.03401465713977814, + 0.009593703784048557, + 0.009045299142599106, + 0.07859119027853012, + -0.013730439357459545, + 0.03986431285738945, + -0.038835205137729645, + -0.002520293928682804, + -0.034827109426259995, + 0.02056857757270336, + -0.007359460927546024, + -0.014989739283919334, + -0.02897745557129383, + 0.02935659885406494, + -0.012423745356500149, + -0.022179940715432167, + -0.03631660342216492, + 0.00021527863282244653, + -0.022058071568608284, + -0.01716981828212738, + 0.05584253370761871, + 0.005771794356405735, + -0.00933642778545618, + 0.03563956171274185, + -0.03222726285457611, + 0.014813708141446114, + 0.04463069885969162, + -0.041489217430353165, + 0.012626858428120613, + -0.003679730463773012, + 0.05299895256757736, + 0.03363551199436188, + -0.004184127785265446, + -0.013791372999548912, + -0.016506316140294075, + 0.0351250097155571, + 0.02802959457039833, + -0.051969848573207855, + -0.004268758464604616, + -0.0518885999917984, + 0.035395827144384384, + -0.010270747356116772, + 0.0545155294239521, + -0.000790871272329241, + 0.03810399770736694, + -0.003808368695899844, + -0.048936691135168076, + -0.029031619429588318, + 0.010812382213771343, + -0.0038388357497751713, + -0.011401410214602947, + 0.03160438314080238, + -0.0017450791783630848, + -0.009776505641639233, + -0.001666372874751687, + 0.010927479714155197, + 0.01164514571428299, + -0.024305855855345726, + 0.05034494400024414, + 0.0016511394642293453, + -0.022626789286732674, + -0.02769107185304165, + -0.00548066571354866, + 0.004228135570883751, + 0.02897745557129383, + 0.015734488144516945, + -0.027501501142978668, + -0.05023661628365517, + -0.007413624785840511, + 0.009343198500573635, + -0.023222586140036583, + -0.006929538678377867, + 0.02056857757270336, + -0.031035667285323143, + 0.005568681284785271, + -0.021638305857777596, + 0.021083129569888115, + -0.023168422281742096, + -0.0006440375000238419, + 0.011049346998333931, + -0.012532072141766548, + 0.01795518957078457, + 0.007217281963676214, + 0.0083817970007658, + 0.029816988855600357, + -0.028354575857520103, + 0.017860403284430504, + 0.006987087428569794, + -0.01365596428513527, + -0.03756236284971237, + -0.04939708113670349, + -0.0036255670711398125, + -0.022802820429205894, + 0.02120499685406685, + -0.01868639700114727, + -0.033310532569885254, + 0.019715502858161926, + 0.020839395001530647, + 0.023994415998458862, + 0.0021563831251114607, + 0.002720021642744541, + 0.022762198001146317, + 0.02250492013990879, + 0.014326237142086029, + -0.001768775749951601, + -0.014380401000380516, + -0.014272073283791542, + 0.015179311856627464, + -0.002220702124759555, + -0.03531458228826523, + 0.005175996571779251, + -0.0169802475720644, + -0.013852306641638279, + 0.04495567828416824, + -0.017061492428183556, + -0.008442730642855167, + -0.021015426144003868, + 0.0025372200179845095, + 0.025714106857776642, + -0.022938229143619537, + 0.00819222442805767, + 0.04002680256962776, + 0.009688490070402622, + -0.000790871272329241, + -0.01660110242664814, + -0.02194974571466446, + -0.005734557285904884, + 0.012620087713003159, + 0.013188804499804974, + 0.029085781425237656, + 0.03739987313747406, + -0.015219934284687042, + -0.0039403922855854034, + 0.028489984571933746, + -0.009465065784752369, + 0.033283449709415436, + -0.019512388855218887, + -0.008618761785328388, + -0.020473791286349297, + 0.0005907203303650022, + -0.053892649710178375, + 0.01123891957104206, + -0.015395965427160263, + -0.0055415998212993145, + -0.005490821320563555, + -0.004945801571011543, + -0.015409506857395172, + -0.027894185855984688, + 0.05795491114258766, + 0.030602358281612396, + 0.005822572857141495, + 0.013033084571361542, + -0.02266741171479225, + -0.059796467423439026, + -0.03336469456553459, + 0.007352690678089857, + -0.00466821389272809, + -0.02250492013990879, + -0.0020362078212201595, + 0.03452920913696289, + 0.017508340999484062, + 0.006479304749518633, + -0.03108983114361763, + -0.0004333077522460371, + 0.0028385042678564787, + -0.0017721609910950065, + -0.039593495428562164, + 0.00991868507117033, + 0.0008793100132606924, + -0.025890138000249863, + 0.032714735716581345, + -0.012809660285711288, + 0.044739022850990295, + 0.038428980857133865, + -0.025605779141187668, + 0.018970753997564316, + 0.03450213000178337, + -0.01657402142882347, + -0.025619320571422577, + 0.004647902678698301, + 0.005192922428250313, + 0.02595784142613411, + -0.01929573528468609, + -0.03360843285918236, + -0.004302610643208027, + 0.003947162535041571, + 0.01145557314157486, + -0.015219934284687042, + -0.022802820429205894, + -0.006695958785712719, + 0.025470370426774025, + -0.0384831428527832, + 0.06445452570915222, + -0.02096126228570938, + -0.016668807715177536, + -0.007989111356437206, + -0.015978222712874413, + -0.008327633142471313, + -0.021854959428310394, + 0.01966133899986744, + -0.04996579885482788, + -0.05375724285840988, + -0.04679723456501961, + -0.035395827144384384, + -0.014285614714026451, + 0.01238312292844057, + -0.033283449709415436, + -0.021272702142596245, + -0.0027183289639651775, + -0.011191526427865028, + -0.020893556997179985, + -0.023385077714920044, + 0.017061492428183556, + 0.026418231427669525, + 0.008754170499742031, + 0.009207789786159992, + 0.0008653459954075515, + 0.010175961069762707, + 0.006655335891991854, + -0.02479332685470581, + 0.03049403242766857, + 0.008320862427353859, + 0.00801619328558445, + 0.011279541999101639, + -0.007528721820563078, + -0.012870593927800655, + -0.007901095785200596, + -0.029464926570653915, + -0.011042577214539051, + -0.043980736285448074, + -0.009796816855669022, + -0.0017704683123156428, + 0.016926083713769913, + -0.02269449271261692, + -0.016736511141061783, + 0.020703986287117004, + -0.005731171928346157, + -0.03406882286071777, + -0.003808368695899844, + -0.047013889998197556, + 0.044549450278282166, + -0.058117400854825974, + 0.03033154085278511, + -0.004431248642504215, + -0.025213094428181648, + 0.020852934569120407, + -0.04579521343111992, + -0.0018652543658390641, + -0.03609995171427727, + -0.009614015929400921, + 0.050453271716833115, + 0.0158157330006361, + 0.003385216696187854, + -0.028760802000761032, + -0.023980874568223953, + -0.00840887799859047, + -0.027975430712103844, + -0.013845535926520824, + -0.004922104999423027, + -0.021435191854834557, + 0.008652613498270512, + 0.018442660570144653, + -0.009911914356052876, + 0.005087980534881353, + 0.042626649141311646, + 0.010331680998206139, + -0.02960033528506756, + -0.011083199642598629, + 0.004048719070851803, + -0.0025321422144770622, + 0.020473791286349297, + -0.05605918914079666, + 0.002225779928267002, + 0.022559083998203278, + 0.004207824356853962, + -0.031766872853040695, + 0.03228142485022545, + -0.007894325070083141, + 0.0009859444107860327, + -0.011313394643366337, + 0.04698680713772774, + -0.0005259780446067452, + -0.0027454106602817774, + 0.019119704142212868, + -0.05833405628800392, + 0.0015969759551808238, + 0.026485934853553772, + 0.008930201642215252, + 0.005294478964060545, + 0.01251176092773676, + -0.030412787571549416, + 0.014231450855731964, + -0.025240175426006317, + -0.018632233142852783, + 0.011056117713451385, + 0.01240343414247036, + -0.0010451856069266796, + 0.005907203070819378, + 0.004065645392984152, + 0.01795518957078457, + -0.01695316471159458, + -0.0017670830711722374, + 0.009099462069571018, + 0.015138689428567886, + -0.02938368171453476, + -0.0335271880030632, + 0.02500998042523861, + 0.008090668357908726, + 0.007494869641959667, + -0.01962071657180786, + -0.01354763749986887, + -0.001350701437331736, + 0.005087980534881353, + 0.05930899828672409, + 0.017982270568609238, + -0.006140782963484526, + -0.025280797854065895, + 0.029681580141186714, + -0.03894353285431862, + -0.02253200300037861, + 0.01393355242908001, + -0.0012398356338962913, + 0.014231450855731964, + -0.0107853002846241, + 0.001414174330420792, + -0.0343938022851944, + 0.02152997814118862, + 0.0071834297850728035, + 0.020081104710698128, + -0.02459021471440792, + 0.040514275431632996, + -0.030466949567198753, + 0.007501640357077122, + 0.0438724085688591, + 0.020365463569760323, + 0.01696670614182949, + 0.03374383971095085, + 0.009180707857012749, + -0.006980316713452339, + 0.030412787571549416, + -0.008327633142471313, + -0.019390521571040154, + -0.017833322286605835, + -0.017643749713897705, + 0.000184917458682321, + 0.00838856678456068, + 0.009343198500573635, + 0.015233474783599377, + -0.014962658286094666, + 0.015544915571808815, + -0.03791442885994911, + -0.031414810568094254, + 0.014272073283791542, + -0.026174494996666908, + -0.04885544627904892, + -0.0244141835719347, + 0.0004208247410133481, + 0.03282305970788002, + 0.04392657056450844, + -0.006337125785648823, + 0.01638444885611534, + -0.03035862371325493, + 0.026783835142850876, + -0.011360786855220795, + -0.0009360124240629375, + -0.0060933902859687805, + 0.011205066926777363, + -0.031550221145153046, + -0.0035409366246312857, + -0.0037034270353615284, + -0.009153625927865505, + 0.04679723456501961, + -0.01949884742498398, + -0.02746087871491909, + -0.009776505641639233, + 0.016506316140294075, + -0.0026607804466038942, + 0.007264675106853247, + -0.01773853600025177, + 0.007190200500190258, + 0.0029705276247113943, + 0.008036504499614239, + -0.004959342535585165, + -0.001987122232094407, + 0.009465065784752369, + 0.003466462017968297, + 0.02287052385509014, + -0.022613247856497765, + -0.0014869564911350608, + 0.005487436428666115, + 0.026946324855089188, + -0.0017002250533550978, + -0.02575472928583622, + -0.022816359996795654, + 0.0052470858208835125, + 4.1521798266330734e-5, + -0.0072782160714268684, + -0.0016604488482698798, + -0.013317442499101162, + -0.023317372426390648, + -0.009417672641575336, + -0.01450226828455925, + -0.01907908171415329, + -0.027948349714279175, + 0.014353319071233273, + -0.004813778214156628, + -0.019173868000507355, + 0.07312068343162537, + -0.0008086436428129673, + 0.007224052678793669, + -0.03125232085585594, + -0.013493473641574383, + 0.010602498427033424, + 0.016655266284942627, + -0.022613247856497765, + 0.0014454874908551574, + -0.04222042113542557, + -0.013811684213578701, + -0.00615093857049942, + 2.4013881557038985e-5, + -0.012911216355860233, + -0.02483394928276539, + 0.009241641499102116, + 0.0019380365265533328, + 0.030439868569374084, + -0.061692189425230026, + -0.029492007568478584, + -0.007603196892887354, + 0.007061562035232782, + 0.024332936853170395, + -0.016899002715945244, + 0.0008945435401983559, + -0.03049403242766857, + 0.01069728471338749, + -0.004928875714540482, + 0.0028215781785547733, + 0.01752188242971897, + 0.035558316856622696, + 0.02881496399641037, + 0.0213539469987154, + -0.004607279784977436, + 0.012234172783792019, + 0.037481117993593216, + -0.015287638641893864, + -0.00226470991037786, + 0.01811767928302288, + 0.024644378572702408, + -0.004867941606789827, + 0.014989739283919334, + -0.017047950997948647, + 0.02843582071363926, + -0.020311299711465836, + -0.016140712425112724, + -0.022437216714024544, + 0.006499615963548422, + 0.04100174456834793, + 0.03390632942318916, + 0.025253716856241226, + 0.01566678285598755, + -0.0301690511405468, + 0.018049975857138634, + 0.028300411999225616, + 0.0010968102142214775, + 0.01029105857014656, + 0.016167795285582542, + 0.014827249571681023, + 0.007054791785776615, + 0.023588189855217934, + 0.012058141641318798, + -0.03192936256527901, + -0.02941076271235943, + -0.021028965711593628, + -0.008706777356564999, + 0.003273504553362727, + 0.02155705913901329, + 0.0013295438839122653, + 0.017237523570656776, + 0.0016502931248396635, + 0.023601731285452843, + -0.0346917025744915, + -0.0055991485714912415, + 0.006157709285616875, + -0.011299853213131428, + -0.005223389249294996, + 0.02269449271261692, + -0.04362867400050163, + 0.01220709178596735, + -0.011915963143110275, + 0.0575757659971714, + 0.012064912356436253, + 0.035206254571676254, + 0.0381852462887764, + -0.024346478283405304, + 0.011712850071489811, + 0.0003467731294222176, + 0.023033015429973602, + -0.008713548071682453, + 0.017440635710954666, + -0.004228135570883751, + 0.006144168321043253, + 0.047961749136447906, + -0.019525930285453796, + 0.029112864285707474, + 0.041110072284936905, + -0.029437843710184097, + 0.025835974141955376, + -0.003622181946411729, + 0.00229009916074574, + -0.019309276714920998, + 0.02023005485534668, + -0.03165854513645172, + 0.03377092257142067, + 0.0075354925356805325, + -0.019376980140805244, + 0.0206227395683527, + -0.001029105857014656, + -0.015098067000508308, + 0.00953277014195919, + -0.01962071657180786, + -0.0014547968748956919, + -0.00273864041082561, + -0.004319536499679089, + -0.028354575857520103, + 0.01458351407200098, + -0.012545613572001457, + 0.03266056999564171, + 0.006878760177642107, + -0.06624191999435425, + 0.01929573528468609, + 0.01852390542626381, + 0.011658686213195324, + 0.035747889429330826, + -0.01963425613939762, + 0.006838137749582529, + 0.0213539469987154, + 0.014569972641766071, + 0.03341886028647423, + -0.015043903142213821, + -0.009377050213515759, + -0.022058071568608284, + -0.014949116855859756, + -0.0016113631427288055, + 0.006888916250318289, + 0.019877992570400238, + -0.025510992854833603, + -0.008117749355733395, + 0.01834787428379059, + -0.037101976573467255, + -0.01343931071460247, + -0.002726792125031352, + -0.02138102799654007, + 0.0005302095669321716, + 0.005721016321331263, + -0.011469114571809769, + -0.022450758144259453, + -0.012051371857523918, + 0.008842186070978642, + -0.00639467453584075, + -0.01696670614182949, + 0.006834752392023802, + 0.012146157212555408, + -0.011428491212427616, + 0.0002824540133588016, + -0.01192950364202261, + -0.0015267326962202787, + 0.011875339783728123, + -0.029058700427412987, + -0.004407552070915699, + -0.025456828996539116, + -0.03190228343009949, + -0.02459021471440792, + 0.016370907425880432, + -0.00676366314291954, + 0.0005259780446067452, + 0.02134040556848049, + 0.0010155650088563561, + -0.010426467284560204, + -0.008571368642151356, + 0.005734557285904884, + 0.012802889570593834, + -0.012234172783792019, + -0.00022300114505924284, + -0.03108983114361763, + 0.011800865642726421, + -0.04289746657013893, + 0.02786710485816002, + 0.002154690446332097, + 0.022938229143619537, + -0.007968800142407417, + -0.03260640799999237, + -0.0032785823568701744, + 0.010724366642534733, + 0.0297357439994812, + 0.0006448837812058628, + 0.027948349714279175, + -0.00662486907094717, + 0.03182103857398033, + 0.01907908171415329, + 0.03474586457014084, + 0.011489425785839558, + 0.0034579988569021225, + -0.025510992854833603, + -0.0022664025891572237, + 0.013804913498461246, + 0.02881496399641037, + 0.009092692285776138, + -0.021868500858545303, + 0.02190912328660488, + 0.013127870857715607, + -0.019742583855986595, + 0.020690444856882095, + -0.005023661535233259, + 0.011001954786479473, + -0.013710128143429756, + -0.02786710485816002, + 0.010771759785711765, + 0.021272702142596245, + -0.012112305499613285, + 0.03547707200050354, + -0.026783835142850876, + 0.014150205999612808, + 0.009783276356756687, + 0.009431214071810246, + 0.01600530371069908, + 0.02537558414041996, + 0.03198352828621864, + 0.008144831284880638, + -0.005148914642632008, + -0.04782634228467941, + 0.011191526427865028, + 0.004336462821811438, + 0.012274796143174171, + -0.005236930213868618, + -0.0182937104254961, + 0.018429119139909744, + 0.0182937104254961, + 0.0446036159992218, + 0.02461729571223259, + 0.031956445425748825, + -0.013066936284303665, + -0.021313324570655823, + -0.03878104314208031, + 0.005172611214220524, + -0.026472395285964012, + 0.01929573528468609, + -0.0071834297850728035, + -0.020324841141700745, + -0.02268095128238201, + 0.04330369085073471, + -0.004302610643208027, + 0.017440635710954666, + 0.0024153520353138447, + 0.000694392598234117, + -0.002669243374839425, + -0.011882110498845577, + 0.006032456178218126, + 0.0139200109988451, + 0.015775110572576523, + -0.0074880993925035, + 0.02291114628314972, + 0.027406714856624603, + -0.008876037783920765, + -0.0058564250357449055, + -0.0009622478391975164, + -0.01715627871453762, + -0.028706638142466545, + -0.043032873421907425, + -0.02517247200012207, + 0.030873175710439682, + 0.006635024677962065, + 0.005094751249998808, + -0.009790047071874142, + -0.015477211214601994, + 0.039187267422676086, + 0.0011272771516814828, + 0.013222656212747097, + 0.029058700427412987, + 0.061150554567575455, + 0.015219934284687042, + 0.015409506857395172, + -0.017400013282895088, + 0.005517903249710798, + -0.009823898784816265, + 0.021123751997947693, + 0.05855070799589157, + -0.010798841714859009, + 0.0055788373574614525, + -0.027921266853809357, + -0.001995585160329938, + 0.013974174857139587, + 0.0007007398526184261, + -0.039945557713508606, + -0.0004895869642496109, + -0.001975273946300149, + 0.011882110498845577, + 0.024752704426646233, + -0.007941718213260174, + -0.03276889771223068, + -0.027203600853681564, + 0.014001256786286831, + -0.0010189502499997616, + 0.013615341857075691, + -0.006604557856917381, + 0.013290360569953918, + -0.06651274114847183, + 0.021611222997307777, + -0.02610679157078266, + -0.041326723992824554, + 0.02941076271235943, + -0.007454247213900089, + 0.006337125785648823, + 0.029112864285707474, + -0.0013134641340002418, + -0.01203106064349413, + 0.036154113709926605, + 0.048178404569625854, + 0.040189292281866074, + 0.0009503996116109192, + 0.01966133899986744, + 0.011469114571809769, + -0.04100174456834793, + -0.0017721609910950065, + -0.021678928285837173, + -0.008483353070914745, + 0.01420436892658472, + 0.002901130821555853, + 0.014272073283791542, + 0.0060967751778662205, + -0.009234870783984661, + -0.018226006999611855, + 0.03420422971248627, + 0.007149577606469393, + 0.0031702553387731314, + 0.02744733728468418, + 0.0017061491962522268, + 0.017860403284430504, + -0.003788057481870055, + -0.005182766821235418, + 0.01680421642959118, + 0.02403503842651844, + 0.0024085817858576775, + -0.011976896785199642, + 0.005660082213580608, + -0.044576533138751984, + -0.013263278640806675, + -0.015043903142213821, + -0.009038528427481651, + -0.0223018079996109, + 0.026824457570910454, + -0.0007802924374118447, + -0.019309276714920998, + 0.02249138057231903, + 0.00533848674967885, + -0.027230683714151382, + 0.005257241427898407, + 0.017318768426775932, + -0.011306623928248882, + -0.01230187714099884, + -0.008903119713068008, + -0.014664758928120136, + -0.0004041102365590632, + 0.003222726285457611, + -0.01307370699942112, + -0.0010942713124677539, + 0.003273504553362727, + 0.0017958574462682009, + 0.01251176092773676, + -0.010047323070466518, + 0.013026313856244087, + -0.014773085713386536, + -0.004272143356502056, + -0.0017975501250475645, + 0.002657395089045167, + 0.003183796303346753, + 0.023764220997691154, + 0.017061492428183556, + -0.010338451713323593, + 0.010988413356244564, + -0.029654499143362045, + -0.011685768142342567, + 0.01374397985637188, + -0.017860403284430504, + 0.015924058854579926, + -0.009688490070402622, + 0.015964681282639503, + -0.010622809641063213, + 0.02423815242946148, + -0.01469184085726738, + 0.014448105357587337, + 0.016912542283535004, + -0.038266491144895554, + 0.014556432142853737, + -0.003774516750127077, + -0.011665456928312778, + 0.0010045630624517798, + -0.00012895559484604746, + -0.018429119139909744, + 0.011787324212491512, + -0.023953793570399284, + -0.008022964000701904, + 0.0035477071069180965, + -0.03623535856604576, + 0.01461059506982565, + -0.01307370699942112, + -0.002129301428794861, + 0.01353409606963396, + 0.008056815713644028, + -0.030033642426133156, + 0.02327674999833107, + -0.0024356634821742773, + -0.011320164427161217, + 0.005423116963356733, + -0.020514413714408875, + 0.028517065569758415, + 0.01566678285598755, + -0.0005577144329436123, + 0.026201577857136726, + 0.044739022850990295, + 0.007325608748942614, + 0.01287736464291811, + 0.03645201399922371, + 0.010020241141319275, + -0.004972883500158787, + -0.013642423786222935, + 0.0030653136782348156, + -0.013696586713194847, + 0.03303971514105797, + -0.03637076914310455, + -0.01910616271197796, + -0.006760277785360813, + -0.047961749136447906, + 0.000694392598234117, + -0.012681021355092525, + -0.0016426764195784926, + -0.0278400219976902, + -0.0043973964639008045, + 0.006753507535904646, + -0.0290045365691185, + -0.01638444885611534, + 0.006479304749518633, + -0.011590981855988503, + -0.00257276464253664, + 0.001388785196468234, + -0.021326866000890732, + -0.001433639321476221, + 0.010324911214411259, + 0.012586236000061035, + 0.015192852355539799, + -0.0013735516695305705, + -0.02652655728161335, + 0.007494869641959667, + 0.005054128356277943, + 0.00017878176004160196, + -0.017643749713897705, + -0.005626230034977198, + -0.00163421337492764, + 0.0038963844999670982, + -0.028706638142466545, + -0.010771759785711765, + 0.01086654607206583, + 0.01695316471159458, + 0.025714106857776642, + -0.013344524428248405, + -0.026445312425494194, + -0.002945138607174158, + -0.00840887799859047, + -0.011787324212491512, + 0.0036695748567581177, + -0.004187513142824173, + 0.03358134999871254, + -0.009966078214347363, + 0.0024153520353138447, + 0.010900397785007954, + 0.01221386156976223, + 0.008266699500381947, + 0.010270747356116772, + -3.348190875840373e-5, + 0.029275353997945786, + -0.0037338940892368555, + -0.006560550071299076, + -0.0020615970715880394, + -0.017264604568481445, + 0.019715502858161926, + -0.02388608828186989, + -0.012024289928376675, + 0.006723040249198675, + 0.02192266285419464, + 0.0005636385758407414, + -0.004962727893143892, + -0.014949116855859756, + 0.010541564784944057, + 0.02138102799654007, + 0.0029603720176965, + -0.008767710998654366, + -0.02292468771338463, + -0.013696586713194847, + -0.025131849572062492, + 0.0004438865289557725, + 0.002168231410905719, + -0.01967488043010235, + 0.011746701784431934, + -0.02272157371044159, + -0.009580163285136223, + -0.056925803422927856, + -0.033066798001527786, + -0.023574648424983025, + 0.00032900075893849134, + -0.013513784855604172, + -0.010033782571554184, + 0.016709430143237114, + 0.009715571999549866, + -0.002092063892632723, + 0.01354763749986887, + 0.004739303607493639, + 0.015057443641126156, + 0.010155649855732918, + -0.009133314713835716, + 0.02117791585624218, + -0.01775207556784153, + -0.030006561428308487, + 0.0014488727319985628, + -0.004996580071747303, + -0.026607804000377655, + -0.023398617282509804, + -0.002298562088981271, + 0.0048070079647004604, + 0.019891534000635147, + -0.022234102711081505, + 0.010663433000445366, + -0.005568681284785271, + -0.0011289698304608464, + -0.0013760905712842941, + 0.01714273728430271, + 0.027812940999865532, + 0.021137293428182602, + 0.0028926676604896784, + 0.008158372715115547, + 0.0030399246606975794, + 0.032904308289289474, + -0.007305297534912825, + -0.0013853999553248286, + 0.022464297711849213, + 0.018022892996668816, + 0.00905883964151144, + 0.009113003499805927, + -0.004461715463548899, + 0.002462745178490877, + -0.00620171707123518, + 0.006347281392663717, + 0.01249144971370697, + -0.029464926570653915, + 0.01123891957104206, + -0.0014243299374356866, + 0.027731696143746376, + -0.026445312425494194, + 0.0029552942141890526, + -0.006340510677546263, + 0.013615341857075691, + 0.010561875998973846, + 0.003456306178122759, + 0.041841279715299606, + -0.03184811770915985, + 0.0030280763749033213, + 0.0335271880030632, + -0.0018110909732058644, + -0.010385844856500626, + -0.013865848071873188, + -0.007704753428697586, + 0.00729175703600049, + 0.004685139749199152, + 0.017494799569249153, + 0.02747441828250885, + -0.014976198785007, + -0.013317442499101162, + -0.005233544856309891, + 0.006922767963260412, + 0.039566412568092346, + 0.010054093785583973, + 0.007136036641895771, + 0.01772499457001686, + 0.00964109692722559, + -0.01145557314157486, + 0.015314720571041107, + -0.021272702142596245, + -0.03523333743214607, + -0.007447476964443922, + 0.03130648285150528, + -0.018388496711850166, + -0.01343931071460247, + 0.015896977856755257, + 0.0008035658393055201, + -0.016073008999228477, + 0.005419732071459293, + -0.0034190688747912645, + 0.0324980802834034, + -0.002163153374567628, + 0.007508410606533289, + -0.04330369085073471, + 0.03182103857398033, + -0.02553807571530342, + 0.002476286143064499, + -0.014339777640998363, + 0.013852306641638279, + -0.006580861285328865, + -0.0027843406423926353, + 0.011205066926777363, + -0.012890905141830444, + -0.02651301771402359, + -0.0027877259999513626, + 0.002978990785777569, + -0.006269421428442001, + -0.017210442572832108, + -0.02616095542907715, + -0.029654499143362045, + 0.012721644714474678, + 0.002813115017488599, + 0.0033869093749672174, + -0.02330383099615574, + 0.00888280849903822, + -0.0005471356562338769, + -0.011814406141638756, + -0.0007362846517935395, + -0.034231312572956085, + -0.015043903142213821, + 0.010744677856564522, + -0.013385146856307983, + -0.031008584424853325, + 0.007664130534976721, + -0.0026590877678245306, + -0.015531374141573906, + -0.011584211140871048, + -0.024481886997818947, + -0.029275353997945786, + -0.014353319071233273, + -0.014244992285966873, + 0.008889579214155674, + 0.006506386678665876, + 0.0027420255355536938, + -0.01346639171242714, + 0.027569204568862915, + -0.012681021355092525, + 0.02537558414041996, + -0.010345222428441048, + -0.0030026871245354414, + -0.009932225570082664, + -0.0005881814286112785, + 0.014163746498525143, + -0.006499615963548422, + -0.010426467284560204, + -0.0035003141965717077, + -0.003666189732030034, + -0.008991135284304619, + -0.01772499457001686, + -0.010514482855796814, + 0.00781985092908144, + 0.013581489212810993, + 0.03412298485636711, + 0.009214559569954872, + -0.03582913428544998, + 0.003178718499839306, + 0.008043275214731693, + 0.020744608715176582, + -0.003486773231998086, + -0.0030856251250952482, + -0.0068686045706272125, + -0.02495581842958927, + 0.031387727707624435, + 0.010629580356180668, + -0.013703357428312302, + 0.004966112785041332, + 0.010331680998206139, + -0.013337753713130951, + -0.020663361996412277, + -0.004069030284881592, + 0.008659384213387966, + -0.004062260035425425, + -0.00257107219658792, + -0.00273864041082561, + 0.0036391080357134342, + -0.016695888713002205, + -0.016912542283535004, + 0.0309002585709095, + -0.00019792938837781549, + -0.01439394149929285, + 0.015192852355539799, + -0.0030466951429843903, + 0.021638305857777596, + 0.006330355070531368, + 0.006513156928122044, + 0.004336462821811438, + -0.01737293228507042, + -0.005717630963772535, + 0.013764291070401669, + 0.011834717355668545, + -0.012762267142534256, + -0.038076918572187424, + 0.0038185245357453823, + 0.00763027835637331, + -0.012938298285007477, + -0.0050270468927919865, + 0.01660110242664814, + 0.0011805943213403225, + 0.008889579214155674, + -0.00024331244640052319, + -0.02440064214169979, + 0.03458337485790253, + -0.013500244356691837, + -0.01890305057168007, + -0.02916702814400196, + -0.0008065279107540846, + 0.025835974141955376, + 0.03071068599820137, + -0.040135130286216736, + 0.024075660854578018, + -0.0052673970349133015, + 0.025145389139652252, + -0.035747889429330826, + -0.01848328299820423, + -0.002828348660841584, + 0.012281565926969051, + -0.026973407715559006, + 0.02058211714029312, + -0.029519090428948402, + 0.03485419228672981, + -0.006519927177578211, + -0.004851015750318766, + 0.005721016321331263, + 0.0005094751249998808, + -0.01661464385688305, + 0.010528024286031723, + 0.012498220428824425, + -0.0063743628561496735, + 0.008754170499742031, + 0.011895651929080486, + -0.0015707405982539058, + -0.025091227144002914, + -0.00800265185534954, + -0.015423047356307507, + -0.016655266284942627, + 0.03989139199256897, + -0.003713582642376423, + 0.0029823759105056524, + 0.016113631427288055, + -0.01259977649897337, + 0.011787324212491512, + -0.008659384213387966, + 0.02174663171172142, + 0.04482026770710945, + 0.010825922712683678, + 0.018821805715560913, + -0.006475919391959906, + -0.0008238771115429699, + -0.013344524428248405, + -0.003249807981774211, + -0.004295839928090572, + -0.019566552713513374, + -0.00400132592767477, + 0.02056857757270336, + -0.016506316140294075, + 0.02729838714003563, + -0.0006905841873958707, + -0.006455608177930117, + 0.009404132142663002, + -0.030223214998841286, + 0.01815830171108246, + 0.024075660854578018, + 0.0041807424277067184, + 0.021462274715304375, + -0.037318628281354904, + 0.0037203531246632338, + 0.017047950997948647, + 0.007508410606533289, + -0.002516908571124077, + 0.0044752564281225204, + 0.014001256786286831, + -0.013182033784687519, + -0.0005991833750158548, + -0.02597138285636902, + 0.0021902353037148714, + 0.015477211214601994, + -0.00983066949993372, + -0.009647867642343044, + 0.00477654067799449, + -0.04362867400050163, + 0.02253200300037861, + -0.03355426713824272, + 0.017305226996541023, + -0.007251134142279625, + -0.005663467571139336, + -0.013100788928568363, + -0.010297829285264015, + 0.03379800543189049, + 0.03257932513952255, + 0.02268095128238201, + 0.010162420570850372, + -0.005135373678058386, + 0.017792699858546257, + -0.005240315571427345, + 0.004627591464668512, + 0.0026726284995675087, + 0.018943672999739647, + 0.013324213214218616, + 0.005592377856373787, + 0.0071834297850728035, + 0.012917987070977688, + -0.012437285855412483, + 0.0020819082856178284, + 0.015125147998332977, + -0.00015286369307432324, + 0.03496252000331879, + -0.006516542285680771, + 0.01020304299890995, + -0.011563899926841259, + 0.005487436428666115, + 0.009857751429080963, + 0.0029434459283947945, + -0.01657402142882347, + -0.013236197642982006, + 0.027975430712103844, + -0.0038185245357453823, + 0.025037063285708427, + 0.015111607499420643, + -0.03913310542702675, + 0.01145557314157486, + 0.023534025996923447, + -0.003236267250031233, + -0.008334403857588768, + -0.020135268568992615, + -0.02941076271235943, + -0.023046554997563362, + 0.018361415714025497, + 0.006702729035168886, + -0.018266629427671432, + -0.0023087176959961653, + 0.011699308641254902, + -0.006516542285680771, + -0.023209046572446823, + 0.009390590712428093, + -0.0018009352497756481, + -0.013947092927992344, + 0.02595784142613411, + 0.02591721899807453, + -0.008821874856948853, + 0.0027640294283628464, + -0.0017154585802927613, + 0.0017535422230139375, + 0.013182033784687519, + 0.02477978728711605, + 0.01810413971543312, + -0.020121729001402855, + 0.04002680256962776, + 0.01716981828212738, + -0.02020297385752201, + 0.022274725139141083, + -0.019390521571040154, + -0.005236930213868618, + 0.013683046214282513, + 0.014705381356179714, + -0.002516908571124077, + 0.006702729035168886, + -0.0024610524997115135, + -0.02232888899743557, + -0.04555147513747215, + -0.01534180250018835, + 0.017995811998844147, + -0.00029112864285707474, + 0.002990839071571827, + -0.02706819213926792, + -0.00763027835637331, + -0.0003478310245554894, + -0.024102743715047836, + -0.00259984633885324, + -0.0038625323213636875, + -0.0022799435537308455, + -0.014881412498652935, + -0.00963432714343071, + 0.016370907425880432, + 0.008070356212556362, + -0.0006313429330475628, + -0.03474586457014084, + 0.017833322286605835, + 0.021692467853426933, + -0.010460319928824902, + -0.0055043622851371765, + 0.015707405284047127, + -0.04249123856425285, + -0.022653870284557343, + -0.0008416494820266962, + -0.005893662106245756, + -0.0037068123929202557, + 0.0046952953562140465, + -0.012762267142534256, + 4.974681723979302e-5, + 0.023899629712104797, + 0.003788057481870055, + 0.009437983855605125, + 0.031766872853040695, + 0.009878062643110752, + 0.019349899142980576, + -0.014881412498652935, + 0.002044670982286334, + -0.06196300685405731, + 0.01296538021415472, + -0.01735939085483551, + 0.03014197014272213, + 0.002728484570980072, + 0.019376980140805244, + -0.013960633426904678, + 0.028896210715174675, + -0.009498918429017067, + 0.01982382871210575, + -0.02349340356886387, + -0.028300411999225616, + 0.0029942241962999105, + 0.016628185287117958, + 0.022369511425495148, + -0.01677713356912136, + -0.031035667285323143, + 0.014461645856499672, + -0.028869127854704857, + 0.003119477303698659, + 0.004305995535105467, + 0.008226077072322369, + -0.026093250140547752, + -0.0029891463927924633, + -0.0309002585709095, + -0.004465100821107626, + 0.004038563463836908, + -0.014055419713258743, + -0.03049403242766857, + -0.006770433392375708, + 0.024387100711464882, + -0.016316745430231094, + -0.017210442572832108, + 0.02171955071389675, + 0.02404857985675335, + -0.00040855334373191, + 0.009966078214347363, + 0.0055619110353291035, + 0.025646401569247246, + -0.007393313106149435, + -0.001807705732062459, + -0.006604557856917381, + 0.0037779018748551607, + -0.02635052613914013, + -0.002875741571187973, + -0.008232846856117249, + -0.011943044140934944, + -0.025863055139780045, + 0.01240343414247036, + -0.020257137715816498, + 0.0040994975715875626, + 0.0626671314239502, + -0.006323584821075201, + -0.021245619282126427, + -0.01346639171242714, + -0.0016037464374676347, + -0.010649891570210457, + 0.00014006334822624922, + 0.013852306641638279, + 0.01948530785739422, + -0.015693863853812218, + 0.017603127285838127, + 0.023209046572446823, + -0.009329657070338726, + 0.012064912356436253, + 0.009451525285840034, + -4.860959597863257e-5, + 0.012003978714346886, + 0.014163746498525143, + -0.003300586249679327, + -0.012342500500380993, + 0.002225779928267002, + 0.014718921855092049, + 0.017251065000891685, + -0.014556432142853737, + 0.0011501273838803172, + 0.024468345567584038, + -0.035937462002038956, + -0.01641152985394001, + 0.007670901250094175, + 0.007454247213900089, + -0.018077056854963303, + -0.00028774343081749976, + -0.0006973546696826816, + 0.017400013282895088, + 0.003608640981838107, + 0.006635024677962065, + -0.02652655728161335, + 0.01000670064240694, + 0.013500244356691837, + -0.0048070079647004604, + -0.00740008382126689, + -0.01182117685675621, + 0.01354763749986887, + -0.024847490713000298, + 0.005829343106597662, + 0.02460375428199768, + 0.00981712806969881, + -0.026242200285196304, + 0.013879388570785522, + -0.0030517729464918375, + 0.0014700304018333554, + -0.006953235249966383, + -0.024901654571294785, + -0.031035667285323143, + 0.00953277014195919, + -0.003378446213901043, + 0.009045299142599106, + -0.0001549794542370364, + 0.012999231927096844, + -0.010555105283856392, + -0.0141366645693779, + -0.016899002715945244, + -0.002423815196380019, + -0.011807636357843876, + -0.007122496142983437, + -0.008747399784624577, + 0.002349340356886387, + 0.008848956786096096, + -0.01813122071325779, + -0.0033175123389810324, + 0.011956585571169853, + 0.014163746498525143, + -0.0061170863918960094, + -0.01143526192754507, + -0.011056117713451385, + -0.01907908171415329, + 0.00012980190513189882, + -0.01737293228507042, + 0.0011035806965082884, + 0.00964109692722559, + -0.01828017085790634, + 0.005426502320915461, + -0.0008653459954075515, + -0.011035806499421597, + 0.017779158428311348, + -0.01383199542760849, + -0.01002701185643673, + 0.008754170499742031, + 0.009756194427609444, + -0.001319388160482049, + -0.005805646535009146, + -0.0010756526608020067, + -0.011414950713515282, + 0.00020184354798402637, + -0.0035240105353295803, + -0.027948349714279175, + 0.03916018828749657, + 0.009004676714539528, + -0.0002852044999599457, + 0.011848258785903454, + 0.009580163285136223, + -0.009512458927929401, + 0.011692538857460022, + 0.02708173356950283, + 0.002721714321523905, + 0.010345222428441048, + -0.02077168971300125, + -0.01848328299820423, + -0.012450827285647392, + -0.0066316393204033375, + -0.030060725286602974, + 0.014651217497885227, + -0.010798841714859009, + 0.0005894508794881403, + 0.009289034642279148, + 0.011015495285391808, + 0.0259442999958992, + 0.003139788517728448, + -0.005575451999902725, + 0.010365533642470837, + -0.00016206725558731705, + -0.005605918820947409, + -0.0024915195535868406, + 0.023723598569631577, + 0.0012897675624117255, + 0.012504990212619305, + 0.0011848259018734097, + -0.002554146107286215, + -0.037101976573467255, + 0.0034309171605855227, + 0.016167795285582542, + -0.011218608357012272, + 0.005802261643111706, + 0.009898373857140541, + -0.01279611885547638, + 0.013784602284431458, + 0.02004048228263855, + -0.0204060859978199, + 0.01555845607072115, + 0.0005293632857501507, + -0.0050642844289541245, + 0.015192852355539799, + 0.0020158966071903706, + 0.0001360433961963281, + 0.017251065000891685, + 0.013974174857139587, + -0.0179281085729599, + 0.007088643964380026, + 0.00620171707123518, + 0.0025067529641091824, + 0.00014302540512289852, + -0.010365533642470837, + 0.016492776572704315, + -0.013750750571489334, + -0.006286347284913063, + 0.006310043856501579, + 0.00010134492185898125, + -0.010995184071362019, + -0.017657291144132614, + -0.012200321070849895, + 0.006316814571619034, + 0.003970859106630087, + 0.006777203641831875, + 0.00022977158369030803, + 0.0015605848748236895, + -0.013290360569953918, + -0.010318140499293804, + -0.004329692106693983, + 0.0020311300177127123, + -0.005308019928634167, + -0.02136748842895031, + 0.018754100427031517, + -0.008611991070210934, + 0.00916716642677784, + 0.01776561699807644, + -0.018618691712617874, + 0.0029112864285707474, + 0.013425769284367561, + 0.0038760730531066656, + 0.0012982306070625782, + 0.02158414199948311, + -0.015477211214601994, + 0.006594402249902487, + 0.007386542856693268, + 0.004251832142472267, + -6.823327566962689e-5, + -0.019011376425623894, + 0.024116283282637596, + -0.008835415355861187, + -0.008571368642151356, + -0.012653940357267857, + 0.0015800498658791184, + -0.012870593927800655, + -0.0313335657119751, + 0.020148809999227524, + -0.009864521212875843, + 0.022030990570783615, + -0.007799539249390364, + 0.022098693996667862, + 0.00734592042863369, + 0.015951141715049744, + 0.005873350892215967, + 0.020852934569120407, + -0.005287708714604378, + -0.009573392570018768, + -0.002329029142856598, + 0.0037068123929202557, + -0.007149577606469393, + -0.00676704803481698, + 0.0004041102365590632, + -0.009045299142599106, + 0.0020175890531390905, + -0.002703095553442836, + -0.0034495359286665916, + -0.0011670534731820226, + -0.018835345283150673, + -0.002411966910585761, + -0.007833391427993774, + 0.007122496142983437, + -0.0018618692411109805, + -0.00812452007085085, + -0.006621483713388443, + -0.02538912557065487, + -0.006140782963484526, + 0.006414985749870539, + 0.00914685521274805, + 0.011767012998461723, + 0.0009647867409512401, + 0.005775179713964462, + 0.002185157500207424, + 0.013432539999485016, + 0.009485376998782158, + 0.022071612998843193, + 0.0011103510623797774, + 0.006320199463516474, + 0.0011738238390535116, + 0.006506386678665876, + 0.024508969858288765, + 0.012261254712939262, + 0.013615341857075691, + -0.005490821320563555, + 0.0054840510711073875, + 0.014569972641766071, + -0.018659314140677452, + 0.020947720855474472, + 0.01088685728609562, + 0.02041962742805481, + -0.0038049835711717606, + -0.004096112214028835, + -0.003325975500047207, + -0.035774968564510345, + 0.014732463285326958, + -0.004018252249807119, + -0.0033615201245993376, + -0.017075033858418465, + -0.012010748498141766, + 0.008781252428889275, + -0.02138102799654007, + -0.013784602284431458, + -0.0015394273214042187, + -0.013141411356627941, + 0.011882110498845577, + -0.0021529977675527334, + -0.015057443641126156, + 0.014962658286094666, + -0.007007398642599583, + -0.017305226996541023, + 0.003774516750127077, + -0.009349968284368515, + -0.035368744283914566, + 0.019173868000507355, + 0.0037406645715236664, + 0.011015495285391808, + 0.01695316471159458, + -0.009383820928633213, + 0.007406854070723057, + -0.01086654607206583, + -0.0015284253749996424, + 0.02553807571530342, + -0.03049403242766857, + 0.004986423999071121, + -0.0062761916778981686, + 0.02519955299794674, + 0.008815104141831398, + -0.0013947093393653631, + 0.0009182400535792112, + -0.014881412498652935, + 0.006597787607461214, + -0.006503001321107149, + 0.011469114571809769, + -0.010243665426969528, + -0.0003273081383667886, + 0.02004048228263855, + 0.03382508456707001, + 0.002220702124759555, + 0.011604523286223412, + -0.03398757427930832, + 0.015247016213834286, + 0.007691212464123964, + 4.088706918992102e-5, + 0.020649822428822517, + 5.633212276734412e-5, + -0.012349270284175873, + -0.020731067284941673, + -0.006973546463996172, + 0.013310671783983707, + -0.00438724085688591, + -0.004326306749135256, + 0.022098693996667862, + 0.007332379464060068, + -0.017995811998844147, + 0.02553807571530342, + -0.008652613498270512, + 0.013385146856307983, + 0.01660110242664814, + -0.017481260001659393, + 0.013662735000252724, + 0.010656662285327911, + 0.011848258785903454, + -0.011814406141638756, + 0.015693863853812218, + 0.022748656570911407, + 0.015571996569633484, + 0.005988448392599821, + 0.012951838783919811, + 0.0005771794239990413, + 0.028110839426517487, + 0.0017501570982858539, + 0.01752188242971897, + 0.009024987928569317, + 0.02576826885342598, + 0.006272806786000729, + 0.0162490401417017, + -0.007549033500254154, + 0.001093424973078072, + -0.014556432142853737, + -0.007474558427929878, + 0.012850282713770866, + 0.006401444785296917, + 0.02152997814118862, + -0.013371606357395649, + -0.014813708141446114, + -0.016343826428055763, + -0.002516908571124077, + 0.0190926231443882, + -2.1170828404137865e-5, + 0.01115090399980545, + -0.023967335000634193, + -0.010805611498653889, + 0.020365463569760323, + 0.012328959070146084, + 0.006032456178218126, + 0.0290045365691185, + -0.019417602568864822, + 0.006851678714156151, + -0.0022020835895091295, + -0.020162351429462433, + -0.009702031500637531, + 0.01154358871281147, + -0.016357367858290672, + 0.020731067284941673, + 0.016682347282767296, + -0.004620820749551058, + 0.0033716759644448757, + -0.015409506857395172, + 0.006814441177994013, + 0.000855190388392657, + -0.007745375856757164, + 0.01660110242664814, + -7.823024498065934e-5, + -0.017481260001659393, + -0.011848258785903454, + 0.0015233475714921951, + 0.02039254456758499, + 0.005423116963356733, + 0.00022405902564059943, + 0.0032819677144289017, + -0.005172611214220524, + -0.019607175141572952, + -0.025267258286476135, + -0.005230159964412451, + -0.04138088971376419, + 0.0050642844289541245, + 0.018185384571552277, + 0.006303273607045412, + 0.022288266569375992, + -0.002283328678458929, + -0.004874711856245995, + 0.0032785823568701744, + -0.010372304357588291, + -0.0011890573659911752, + -0.015599078498780727, + -0.005869966000318527, + 0.011306623928248882, + 0.023046554997563362, + -0.012139387428760529, + 0.025145389139652252, + 0.007501640357077122, + -0.011577441357076168, + -0.0182937104254961, + 0.019404063001275063, + 0.015761569142341614, + 0.04308703914284706, + -0.011692538857460022, + 0.002836811589077115, + 0.015707405284047127, + -0.013567948713898659, + -0.008334403857588768, + 0.009999929927289486, + 0.008334403857588768, + -0.015951141715049744, + 0.014759545214474201, + 0.019688419997692108, + 0.017643749713897705, + -0.009925455786287785, + 0.020311299711465836, + -0.033066798001527786, + 0.002352725714445114, + 0.009478607214987278, + 0.006475919391959906, + 0.015247016213834286, + 0.0085984505712986, + 0.01467829942703247, + 0.008639072999358177, + 0.019160326570272446, + 0.010825922712683678, + 0.010236895643174648, + 0.006164479535073042, + -0.0072037409991025925, + -0.0029671424999833107, + 0.001421791035681963, + 0.012423745356500149, + -0.0018804878927767277, + -0.011354017071425915, + -0.003459691535681486, + -0.013811684213578701, + -0.003312434535473585, + -0.004400781821459532, + -0.00667564757168293, + -0.025416206568479538, + 0.007136036641895771, + 0.05892985314130783, + 0.008171913214027882, + -0.021286243572831154, + -0.0033953723032027483, + 0.014299155212938786, + 0.018727019429206848, + 0.016682347282767296, + 0.007251134142279625, + -0.026012005284428596, + -0.0071834297850728035, + -0.01372366864234209, + 0.016343826428055763, + -0.005084595642983913, + -0.0027606443036347628, + -0.028544146567583084, + 0.002610002178698778, + 0.023005932569503784, + -0.009762965142726898, + 0.004069030284881592, + 0.0046174353919923306, + -0.01661464385688305, + -0.000713857589289546, + 0.009519229643046856, + -0.012945069000124931, + 0.013242967426776886, + -0.007325608748942614, + -0.022951768711209297, + -0.03049403242766857, + -0.01192950364202261, + 0.018022892996668816, + -0.01715627871453762, + -0.007643819320946932, + 0.02802959457039833, + 0.0004591200267896056, + 0.0003319628012832254, + 0.0053046345710754395, + -0.01563970185816288, + 0.0026861694641411304, + 0.010609269142150879, + -0.0071631185710430145, + -0.006702729035168886, + 0.0035815592855215073, + 0.015030362643301487, + -0.032525163143873215, + 0.009329657070338726, + -0.0036323375534266233, + 0.03447504714131355, + 0.03030445985496044, + -0.01420436892658472, + -0.0036323375534266233, + -0.0032125706784427166, + -0.013107558712363243, + -0.008375026285648346, + -0.014935576356947422, + 0.010473860427737236, + -0.0058665806427598, + 0.001260993187315762, + -0.003199029713869095, + 0.0044921827502548695, + -0.00983066949993372, + -0.02081231214106083, + 0.014773085713386536, + 0.02268095128238201, + 0.006414985749870539, + -0.02023005485534668, + 0.025632860139012337, + -0.009878062643110752, + 0.012322189286351204, + -0.01011502742767334, + 0.015219934284687042, + -0.0042450618930161, + 0.009844209998846054, + -0.006526697892695665, + 0.014542890712618828, + -0.002997609321027994, + 0.005324945785105228, + -0.004346618428826332, + -0.00338352401740849, + 0.0016240577679127455, + -0.028327492997050285, + 0.008205764926970005, + 0.022207021713256836, + 0.0046952953562140465, + -0.008530746214091778, + 0.003534166142344475, + -0.027000488713383675, + -0.017711453139781952, + 0.020527953281998634, + -0.010182731784880161, + -0.02997947856783867, + -0.009343198500573635, + 0.006029070820659399, + -0.016086550429463387, + 0.0028198854997754097, + 0.012945069000124931, + -0.017115656286478043, + -0.022789278998970985, + 0.0008386874687857926, + -0.01458351407200098, + -0.0010274132946506143, + 0.028896210715174675, + -0.004844245035201311, + 0.033310532569885254, + 0.0023578035179525614, + -0.02671612985432148, + -0.015247016213834286, + -0.0072782160714268684, + -0.0050473581068217754, + 0.012640398927032948, + -0.0038828435353934765, + -0.02190912328660488, + 0.016100089997053146, + 0.011306623928248882, + 0.0014200983569025993, + -0.001497958437539637, + 0.0010333374375477433, + 0.005419732071459293, + 0.0064319116063416, + -0.00444140424951911, + -0.003970859106630087, + 0.003933622036129236, + 0.014989739283919334, + 0.00840210821479559, + 0.0006905841873958707, + 0.0060561527498066425, + -0.017305226996541023, + 0.03431255742907524, + 0.01461059506982565, + -0.006455608177930117, + -0.004184127785265446, + 0.029058700427412987, + -0.01307370699942112, + -0.001544505124911666, + 0.017589585855603218, + -0.003183796303346753, + 0.022288266569375992, + 0.0006012991070747375, + -0.0010959638748317957, + -0.005260626785457134, + 0.04116423428058624, + -0.02802959457039833, + -0.005470510106533766, + 0.010575417429208755, + -0.00045023381244391203, + -0.007176659535616636, + -0.005050743464380503, + 0.026661965996026993, + -0.005917358677834272, + 0.026797374710440636, + -0.010467089712619781, + 0.017968731001019478, + 0.013540866784751415, + 0.027758777141571045, + -0.007840162143111229, + 0.007901095785200596, + 0.00020089145982638001, + 0.0008852341561578214, + 0.028652474284172058, + -0.0009766350267454982, + -0.006222028285264969, + 0.009275494143366814, + -0.0290045365691185, + 0.017670830711722374, + 0.019417602568864822, + -0.011841488070786, + 0.008029733784496784, + 0.006875375285744667, + -0.013080477714538574, + 0.004407552070915699, + -0.006012144964188337, + -0.00017603127344045788, + 0.020649822428822517, + 0.00040855334373191, + 0.010148880071938038, + 0.0020311300177127123, + 0.0005864888080395758, + -0.0032244189642369747, + -0.0024745934642851353, + -0.0009080843883566558, + -0.012755496427416801, + 0.010040552355349064, + 0.004542960785329342, + -0.014475186355412006, + -0.009762965142726898, + -0.003369983285665512, + 0.0011729776160791516, + -0.0026726284995675087, + 0.007075102999806404, + -0.00706833228468895, + -0.010649891570210457, + 0.026567181572318077, + -0.009905144572257996, + -0.022965310141444206, + 0.038618553429841995, + -0.019796747714281082, + -0.013039854355156422, + -0.0005577144329436123, + 0.0010197965893894434, + -0.04633684456348419, + -0.006222028285264969, + -0.0030399246606975794, + -0.011970126070082188, + -0.005937669891864061, + -0.024901654571294785, + 0.0026557024102658033, + -0.02495581842958927, + 0.01963425613939762, + 0.010541564784944057, + -0.002161460928618908, + 0.015599078498780727, + -0.015030362643301487, + -0.005947825964540243, + -0.005050743464380503, + -0.0032159558031708, + 0.006587631534785032, + -0.0077927689999341965, + -0.014231450855731964, + -0.01623549871146679, + 0.014448105357587337, + 0.0008852341561578214, + -0.003273504553362727, + -0.005751483142375946, + 0.007874013856053352, + 0.014637676998972893, + -0.01039938535541296, + -0.01620841771364212, + -0.01086654607206583, + -0.04947832599282265, + -0.01582927256822586, + 0.013500244356691837, + 0.004289069678634405, + -0.005924129392951727, + 0.012762267142534256, + 0.026837999001145363, + -0.0024085817858576775, + -0.008463041856884956, + -0.004756229463964701, + -0.01810413971543312, + 0.009525999426841736, + -0.013364835642278194, + 0.025714106857776642, + 0.007095414213836193, + 0.009153625927865505, + 0.01144880335777998, + -0.01757604442536831, + 0.015680324286222458, + -0.011618063785135746, + -0.019187407568097115, + 0.022410133853554726, + -0.007549033500254154, + 0.007339149713516235, + -0.0013413921697065234, + -0.010142109356820583, + -0.005829343106597662, + -0.009600474499166012, + -0.00477654067799449, + 0.020460249856114388, + 0.0019024917855858803, + -0.0007227437454275787, + -0.01679067499935627, + -0.0021394570358097553, + 0.003903154982253909, + -0.015395965427160263, + 0.0007451708079315722, + -0.027921266853809357, + 0.00801619328558445, + 0.00209544925019145, + -0.015693863853812218, + -0.012782578356564045, + 0.024346478283405304, + 0.004096112214028835, + 0.0032718118745833635, + -0.011137362569570541, + 0.0021394570358097553, + -0.020324841141700745, + -0.017481260001659393, + -0.0083817970007658, + 0.003987785428762436, + 0.004021637607365847, + 0.0020429783035069704, + 0.01566678285598755, + -0.005182766821235418, + -0.011144133284687996, + 0.01695316471159458, + -0.007934948429465294, + -0.014014797285199165, + -0.011726390570402145, + 0.003530781017616391, + -0.0158157330006361, + -0.005429887678474188, + -0.01619487628340721, + -0.027785858139395714, + -0.012071683071553707, + 0.008185453712940216, + -0.003937006928026676, + -0.002682784339413047, + -0.013879388570785522, + -0.01011502742767334, + 0.023330913856625557, + 0.012112305499613285, + -0.005721016321331263, + 0.017901025712490082, + -0.003916695713996887, + -0.0058564250357449055, + 0.007650589570403099, + -0.014475186355412006, + 0.019539471715688705, + -0.014922034926712513, + -0.00868646614253521, + -0.015910519286990166, + -0.006506386678665876, + 0.007840162143111229, + -0.011746701784431934, + 0.0365874208509922, + -0.028381656855344772, + 0.002630313392728567, + -0.02517247200012207, + -0.020690444856882095, + 0.009126543998718262, + -0.02709527499973774, + -0.005155684892088175, + 0.026472395285964012, + -0.005595763213932514, + -0.013771061785519123, + -0.003659419249743223, + -0.005947825964540243, + 0.006245724856853485, + 0.009099462069571018, + 0.0047122216783463955, + -0.0033953723032027483, + -0.014949116855859756, + -0.00840887799859047, + -0.014285614714026451, + 0.0024085817858576775, + -0.038076918572187424, + -0.0010654969373717904, + -0.00581580214202404, + 0.0019126473926007748, + 0.023980874568223953, + -1.2635056918952614e-5, + 0.0037982130888849497, + -0.005033817142248154, + 0.0032955084461718798, + -0.018388496711850166, + 0.001255069044418633, + 0.005223389249294996, + -0.04790758714079857, + -0.008652613498270512, + 0.0036187965888530016, + 0.009424443356692791, + 0.0005052436026744545, + -0.021678928285837173, + -0.010507713072001934, + 0.01439394149929285, + -0.018456202000379562, + -0.025524534285068512, + 0.0033429015893489122, + -0.006249110214412212, + -0.01335129514336586, + 0.021854959428310394, + -0.004641131963580847, + 0.01700732856988907, + 0.0107853002846241, + 0.002958679338917136, + 0.0007282447186298668, + 0.014001256786286831, + 0.006787359714508057, + -0.016844838857650757, + 0.003089010249823332, + 0.009471836499869823, + -0.024522509425878525, + 0.0033530571963638067, + -0.018848886713385582, + -0.004458330571651459, + -0.00600875960662961, + 0.014014797285199165, + 0.01967488043010235, + -0.011814406141638756, + 0.029275353997945786, + 0.0074339359998703, + -0.019756125286221504, + -0.010108256712555885, + -0.012166468426585197, + -0.03656034171581268, + 0.026472395285964012, + 0.012152927927672863, + 0.019769664853811264, + -0.023168422281742096, + -0.006326970178633928, + -0.00519630778580904, + -0.010805611498653889, + 0.004996580071747303, + -0.015355342999100685, + 0.012166468426585197, + 0.01925511285662651, + 0.011773783713579178, + -0.024170447140932083, + -0.00639805942773819, + 0.0014869564911350608, + 0.01048063114285469, + -0.016506316140294075, + 0.009194248355925083, + -0.003923465963453054, + -0.01986445114016533, + -0.0001939094508998096, + 0.0033733684103935957, + -0.022802820429205894, + 0.01660110242664814, + -0.013683046214282513, + -0.02728484757244587, + -0.0047494592145085335, + 0.009113003499805927, + -0.0017467718571424484, + -0.0008496894151903689, + -0.005274167750030756, + 0.006452223286032677, + -0.00198204442858696, + -0.007359460927546024, + 0.007623508106917143, + -0.009512458927929401, + -0.015477211214601994, + 0.011442032642662525, + -0.005352027714252472, + -0.02024359628558159, + 0.010372304357588291, + -0.012010748498141766, + -0.0011475884821265936, + -0.024346478283405304, + -0.0035714036785066128, + -0.00782662071287632, + -0.021069588139653206, + 0.0046546729281544685, + 0.016546938568353653, + -0.0024932119995355606, + 0.03910602256655693, + 0.010121798142790794, + 0.02843582071363926, + -0.01661464385688305, + 0.00819222442805767, + 0.010595728643238544, + -0.004576812963932753, + 0.03127940371632576, + 0.004566657356917858, + 0.005978292785584927, + -0.007549033500254154, + 0.029085781425237656, + 0.0015724331606179476, + -0.009268723428249359, + 0.005023661535233259, + 0.01964779756963253, + 0.016492776572704315, + 0.009823898784816265, + -0.015571996569633484, + -0.0033869093749672174, + 0.015937600284814835, + 0.004272143356502056, + -0.00905206985771656, + -0.002533834660425782, + -0.009837440215051174, + 0.00023273365513887256, + 0.006878760177642107, + -0.013337753713130951, + 0.007359460927546024, + -0.004079186357557774, + 0.003280275035649538, + -0.004878097213804722, + -0.0046919104643166065, + -0.02326320856809616, + 0.030385704711079597, + 0.012674251571297646, + 0.0011247382499277592, + 0.000308689457597211, + -0.007921406999230385, + -0.0014116354286670685, + 0.003595100250095129, + -0.011022266000509262, + -0.0008547672186978161, + 0.027948349714279175, + 0.011157674714922905, + -0.012782578356564045, + 0.010209813714027405, + -0.01305339578539133, + -0.013378376141190529, + 0.007691212464123964, + -0.010453549213707447, + 0.004600509535521269, + 0.0006440375000238419, + -0.00022427061048801988, + 0.027785858139395714, + -0.00849689356982708, + -0.005182766821235418, + -0.0007515181205235422, + 0.016831297427415848, + 0.008557828143239021, + -0.008483353070914745, + 0.012708103284239769, + -0.0004967805580236018, + 0.025091227144002914, + 0.0020666748750954866, + -0.008781252428889275, + -0.01623549871146679, + 0.019972778856754303, + -0.005710860714316368, + -0.028137920424342155, + -0.00858490914106369, + -0.00025918064056895673, + -0.00043457720312289894, + -0.00821253564208746, + -0.005135373678058386, + -0.013750750571489334, + 0.0005771794239990413, + 0.0065537793561816216, + 0.00696000549942255, + 0.0007701368303969502, + 0.013595030643045902, + 0.003022998571395874, + -0.011130592785775661, + 0.0017890870803967118, + -0.010751448571681976, + 0.026215117424726486, + -0.031035667285323143, + 0.01584281399846077, + 0.010257206857204437, + -0.014123124070465565, + -0.017833322286605835, + 0.0038049835711717606, + -0.0053215608932077885, + 0.015233474783599377, + 0.0066485656425356865, + 0.0023239513393491507, + -0.003865917446091771, + 0.02460375428199768, + -0.01681775599718094, + -0.015314720571041107, + 0.019729042425751686, + -0.028056675568223, + -0.0036763453390449286, + 0.01171961985528469, + 0.02518601156771183, + 0.007528721820563078, + -0.020324841141700745, + 0.03626244142651558, + 0.0004189205646980554, + -0.006215258035808802, + 0.0037542053032666445, + 0.029844069853425026, + 0.013662735000252724, + 0.020257137715816498, + -0.0009004676248878241, + -0.006953235249966383, + 0.024116283282637596, + 0.009864521212875843, + 0.0029349830001592636, + -0.005104906857013702, + 0.008327633142471313, + 0.011252460069954395, + 0.012586236000061035, + -0.005893662106245756, + -0.014421023428440094, + -0.0014074038481339812, + 0.010440008714795113, + -0.03683115914463997, + -0.011421721428632736, + -0.006855064071714878, + 0.04116423428058624, + 0.003133018035441637, + -0.015585537999868393, + 0.010670202784240246, + -0.008449501357972622, + 0.0006190715357661247, + 0.015016821213066578, + 0.012227402999997139, + -0.01123891957104206, + -0.010548335500061512, + -0.036127034574747086, + 0.004211209714412689, + -0.023019473999738693, + -0.00916716642677784, + -0.013974174857139587, + -0.0034766176249831915, + -0.011516507714986801, + -0.011875339783728123, + 5.3793210099684075e-5, + -0.010629580356180668, + 0.003994555678218603, + 0.003202415071427822, + 0.012958609499037266, + -0.005548370070755482, + -0.00916716642677784, + -0.012809660285711288, + 0.0013075399911031127, + -0.021408110857009888, + 0.006154323928058147, + -0.001833094866015017, + -0.014041879214346409, + 0.0027758777141571045, + -0.009390590712428093, + 0.01929573528468609, + -0.015043903142213821, + -0.026445312425494194, + -0.009654638357460499, + -0.004502338357269764, + 0.0025659941602498293, + 0.011320164427161217, + -0.011699308641254902, + -0.0005162455490790308, + -0.003595100250095129, + -0.0016756822587922215, + 0.0023239513393491507, + 0.0018347874283790588, + -0.0072579048573970795, + 0.0008090668125078082, + -0.009938996285200119, + -0.011665456928312778, + -0.026810916140675545, + -0.0047697704285383224, + -0.005907203070819378, + -0.005382494535297155, + -0.018198924139142036, + -0.01949884742498398, + 0.025280797854065895, + 0.001344777294434607, + -0.003415683750063181, + -0.0018432504730299115, + 0.008422419428825378, + 0.015314720571041107, + 0.0117331612855196, + 0.010798841714859009, + 0.008232846856117249, + 0.014624136500060558, + 0.04005388543009758, + -0.02060920000076294, + -0.0060933902859687805, + -0.028679555281996727, + 0.0024475117679685354, + -0.016750052571296692, + -0.01458351407200098, + 0.008781252428889275, + 0.0023899630177766085, + -0.013486703857779503, + 0.0058361138217151165, + 0.008469812572002411, + 0.004251832142472267, + 0.00916039664298296, + -0.00410626782104373, + 0.0037271236069500446, + -0.015477211214601994, + -0.0012339114909991622, + 0.023926712572574615, + -0.003199029713869095, + -0.01715627871453762, + 0.015504292212426662, + 0.0063506667502224445, + 0.005101521499454975, + -0.019932156428694725, + 0.008165142498910427, + 0.0335271880030632, + -0.0204060859978199, + -0.00023548414174001664, + 0.017481260001659393, + 0.01947176642715931, + -0.014894953928887844, + 0.01562616042792797, + -0.004231520928442478, + -0.009458295069634914, + -0.009952536784112453, + 0.00027229837724007666, + -0.02748795971274376, + -0.012288336642086506, + -0.010081175714731216, + -0.005419732071459293, + 0.005060899071395397, + 0.0005001657409593463, + -0.009478607214987278, + -0.020947720855474472, + -0.008117749355733395, + 0.015219934284687042, + -0.022274725139141083, + 0.008253158070147038, + -0.0016629877500236034, + 0.005897047463804483, + 0.010040552355349064, + -0.002442433964461088, + 0.015544915571808815, + -0.013236197642982006, + 0.0017230752855539322, + -0.023588189855217934, + 0.021421652287244797, + -0.028679555281996727, + -0.012132616713643074, + -0.0032278040889650583, + -0.003248115535825491, + 0.01421791035681963, + 0.004844245035201311, + -0.009627556428313255, + 0.005873350892215967, + -0.006682417821139097, + -0.016452154144644737, + 0.01754896342754364, + 0.0041976687498390675, + -0.0037575906608253717, + 0.005426502320915461, + -0.00907238107174635, + 0.010250436142086983, + -0.013364835642278194, + -0.013148182071745396, + -0.028950372710824013, + -0.005842884071171284, + 0.007359460927546024, + 0.009938996285200119, + -0.005453584250062704, + -0.01813122071325779, + -0.01735939085483551, + 0.027894185855984688, + 0.017115656286478043, + -0.01752188242971897, + 0.015247016213834286, + 0.015003280714154243, + 0.014150205999612808, + 0.0035036993212997913, + 0.007921406999230385, + -0.0021766943391412497, + 0.01154358871281147, + 0.00687198992818594, + 0.0024542820174247026, + 0.007352690678089857, + 0.0015927444910630584, + -0.011767012998461723, + 0.019701961427927017, + -0.017901025712490082, + 0.0006982009508647025, + 0.012003978714346886, + -0.02347986400127411, + -0.02116437442600727, + -0.0041028824634850025, + 0.012200321070849895, + -0.029275353997945786, + 0.01735939085483551, + 0.0002945138548966497, + -0.012484678998589516, + -0.01145557314157486, + 0.009404132142663002, + -0.0055788373574614525, + -0.016750052571296692, + -0.018374957144260406, + -0.0324980802834034, + -0.022816359996795654, + 0.01661464385688305, + 0.03187520056962967, + 0.013750750571489334, + -0.01699378713965416, + 0.005633000750094652, + 0.002984068589285016, + 0.033066798001527786, + -0.013060166500508785, + -0.003923465963453054, + 0.0036255670711398125, + -0.004295839928090572, + -0.014556432142853737, + -0.005416346713900566, + 0.018266629427671432, + 0.003933622036129236, + -0.0190926231443882, + 0.013710128143429756, + 0.009390590712428093, + 0.01699378713965416, + 0.01638444885611534, + -0.010683744214475155, + -0.014421023428440094, + -0.00782662071287632, + -0.0018144762143492699, + 0.0013016158482059836, + -0.015707405284047127, + 0.02919410914182663, + 0.01620841771364212, + 0.01828017085790634, + -0.007643819320946932, + -0.008611991070210934, + -0.0038049835711717606, + -0.014488727785646915, + 0.009891603142023087, + 0.020744608715176582, + -0.0015191159909591079, + 0.018537446856498718, + 0.013019543141126633, + 0.022220563143491745, + 0.02957325242459774, + -0.027135897427797318, + 0.005971522070467472, + -7.844181527616456e-5, + -0.01088685728609562, + 0.01757604442536831, + 0.003659419249743223, + 0.007752146106213331, + 0.013026313856244087, + 0.012924757786095142, + 0.005104906857013702, + -0.0015478903660550714, + -0.013601800426840782, + -0.0033090494107455015, + -0.010196272283792496, + 0.0171969011425972, + -0.007129266392439604, + 0.013209115713834763, + 0.022938229143619537, + 0.0097291124984622, + 0.004637747071683407, + -0.022369511425495148, + 0.00701416889205575, + -0.011943044140934944, + -0.014637676998972893, + -0.005964751821011305, + 0.011976896785199642, + -0.0020175890531390905, + 0.013337753713130951, + 0.0002868971205316484, + -0.005220004357397556, + -0.00010536487388890237, + 0.014244992285966873, + 0.01221386156976223, + 0.015951141715049744, + -0.006855064071714878, + 0.007833391427993774, + 0.006249110214412212, + -0.001343931071460247, + 0.0034427654463797808, + -0.019214490428566933, + 0.0023831925354897976, + -0.002110682660713792, + 0.0036763453390449286, + 0.01343931071460247, + 0.016100089997053146, + 0.01182117685675621, + 0.032335590571165085, + -0.017657291144132614, + -0.01221386156976223, + -0.004380470607429743, + -0.0004561579553410411, + -0.003774516750127077, + -0.006814441177994013, + 0.029031619429588318, + -0.01515222992748022, + -0.008551057428121567, + 0.0031380958389490843, + -3.735639495516807e-7, + 0.02139456942677498, + 0.0032058001961559057, + -0.01642507128417492, + -0.002946831053122878, + -0.0213539469987154, + 0.0008573061204515398, + -0.011611293070018291, + 0.0032785823568701744, + 0.02593076042830944, + 0.00022744425223208964, + -0.03983722999691963, + -0.001858483999967575, + 0.01420436892658472, + -0.011746701784431934, + -0.01737293228507042, + -0.016127172857522964, + 0.0022291652858257294, + 0.0007434782455675304, + -0.004069030284881592, + -0.010555105283856392, + 0.012132616713643074, + -0.02081231214106083, + -0.0150845255702734, + -0.009661408141255379, + 0.0035544775892049074, + 0.01752188242971897, + -0.02250492013990879, + -0.03493543714284897, + 0.001794164883904159, + 0.009397361427545547, + 0.018821805715560913, + 0.022220563143491745, + 0.001087500830180943, + -0.025280797854065895, + 0.015490751713514328, + 0.004129964392632246, + -0.0019651183392852545, + -0.017494799569249153, + -0.005098136141896248, + 0.01164514571428299, + 0.00024204299552366138, + -0.01925511285662651, + -0.005731171928346157, + -0.0055212886072695255, + -0.0037034270353615284, + 0.0034969288390129805, + -0.000849266245495528, + 0.0029349830001592636, + -0.028571229428052902, + -0.004275528714060783, + -0.024454805999994278, + 0.01622195914387703, + -0.002103912178426981, + -0.010189502499997616, + -0.030277378857135773, + -0.025605779141187668, + 0.027569204568862915, + 0.0012508375803008676, + 0.008070356212556362, + -0.0074610174633562565, + -0.002056519268080592, + -0.028706638142466545, + -0.008469812572002411, + 0.020094646140933037, + 0.00914008542895317, + 0.006293118000030518, + -0.005622845143079758, + -0.02004048228263855, + -0.0190926231443882, + -0.0025761500000953674, + -0.01929573528468609, + 0.01752188242971897, + -0.0160323865711689, + 0.000707087165210396, + 0.005660082213580608, + -0.027325470000505447, + -0.004471871070563793, + -0.012504990212619305, + 0.021882040426135063, + -0.007833391427993774, + -0.007149577606469393, + 0.02629636414349079, + 0.02266741171479225, + -0.007386542856693268, + -0.004559887107461691, + -0.003121169749647379, + -0.004735918249934912, + 0.013764291070401669, + 0.010683744214475155, + 0.009194248355925083, + 0.000508628785610199, + 0.005978292785584927, + -0.005636385641992092, + -0.020311299711465836, + -0.009289034642279148, + 0.0074203950352966785, + 0.03052111342549324, + -0.01680421642959118, + 0.020852934569120407, + 0.002836811589077115, + -0.037129055708646774, + -0.035747889429330826, + 0.009106232784688473, + 0.02421106956899166, + 0.0023087176959961653, + 0.004373699892312288, + 0.0017349235713481903, + -0.012870593927800655, + 0.02039254456758499, + 0.016167795285582542, + -0.013669504784047604, + 0.02403503842651844, + 0.000855190388392657, + -0.006012144964188337, + -0.009661408141255379, + 0.016492776572704315, + 0.002958679338917136, + -0.023425700142979622, + -0.022951768711209297, + -0.0027995742857456207, + 0.002992531517520547, + -0.004735918249934912, + -0.009932225570082664, + -0.021678928285837173, + -0.0018246318213641644, + -0.04078508913516998, + 0.017792699858546257, + 0.0015343495178967714, + 0.005094751249998808, + -0.004309380892664194, + 0.01584281399846077, + 0.021137293428182602, + 0.002804652089253068, + 0.0021056048572063446, + -0.013696586713194847, + -0.01288413442671299, + -0.007007398642599583, + 0.0012593006249517202, + 0.017210442572832108, + -0.014150205999612808, + -0.012234172783792019, + 0.01144880335777998, + 0.005182766821235418, + 0.007108955178409815, + -0.00696000549942255, + -0.005751483142375946, + -0.008198995143175125, + 0.0022799435537308455, + -0.022274725139141083, + -0.0012923064641654491, + 0.0003114399441983551, + 0.021408110857009888, + 0.005544985178858042, + -0.009783276356756687, + -0.012423745356500149, + 0.012477909214794636, + -0.008943742141127586, + -0.0015521218301728368, + 0.030385704711079597, + 0.021326866000890732, + -0.004096112214028835, + -9.150664118351415e-5, + 0.0026404689997434616, + -0.009282263927161694, + 0.016831297427415848, + -0.0072037409991025925, + -0.006503001321107149, + 0.02461729571223259, + 0.008733859285712242, + 0.009498918429017067, + 0.003486773231998086, + 0.01190919242799282, + -0.02116437442600727, + 0.0035036993212997913, + -0.025483911857008934, + 0.0022494764998555183, + -0.013737209141254425, + 0.007271445356309414, + 0.019119704142212868, + -0.002811422571539879, + -0.0005577144329436123, + -0.004630976356565952, + -0.006259265821427107, + 0.012003978714346886, + 0.0021445348393172026, + -0.0027250994462519884, + -0.035558316856622696, + -0.00553144421428442, + 0.026946324855089188, + -0.004322921857237816, + 0.003557862713932991, + -0.013974174857139587, + -0.021056048572063446, + 0.03851022571325302, + 0.006557164713740349, + -0.0042992252856493, + -0.0033429015893489122, + 0.02307363785803318, + -0.0053046345710754395, + -0.028300411999225616, + -0.009674949571490288, + -0.004282298963516951, + -0.0024881341960281134, + -0.003427532035857439, + 0.004228135570883751, + -0.0034393800888210535, + -0.011137362569570541, + 0.0006863526650704443, + -0.029464926570653915, + 0.034258391708135605, + 0.0064116003923118114, + -0.003584944410249591, + 0.01828017085790634, + -0.01268779207020998, + 0.018022892996668816, + 0.0009072381071746349, + -0.010710826143622398, + 0.016113631427288055, + 0.029871152713894844, + -0.00866615492850542, + -0.011144133284687996, + 0.0084901237860322, + -0.006750122178345919, + 0.018212465569376945, + -0.026472395285964012, + 0.02037900499999523, + 0.012917987070977688, + -0.0012525301426649094, + 0.003923465963453054, + 0.006777203641831875, + -0.018659314140677452, + -0.010142109356820583, + 0.015382424928247929, + -0.015314720571041107, + -0.02365589514374733, + 0.0023628813214600086, + -0.004800237249583006, + 0.033120959997177124, + 0.007691212464123964, + -0.0017289994284510612, + 0.018767641857266426, + -0.011293083429336548, + -0.006364207249134779, + 0.00129992316942662, + 0.015924058854579926, + 0.03753528371453285, + -0.0002955717209260911, + -9.092480468098074e-5, + 0.007156348321586847, + 0.011489425785839558, + -0.0033886018209159374, + 0.013371606357395649, + -0.005257241427898407, + 0.016438612714409828, + -0.015382424928247929, + -0.014989739283919334, + -0.006032456178218126, + -0.0013862462947145104, + 0.008198995143175125, + 0.026865079998970032, + 0.032931387424468994, + 0.00029409071430563927, + -0.024265233427286148, + 0.0028063447680324316, + -0.0005513671785593033, + 0.012708103284239769, + 0.007806309964507818, + -0.023534025996923447, + -0.031387727707624435, + -0.005406191106885672, + -0.0013997871428728104, + -0.00026785527006722987, + 0.00371696799993515, + 0.007643819320946932, + -0.016140712425112724, + 0.006442067213356495, + 0.012112305499613285, + 0.011794094927608967, + -0.01700732856988907, + -0.01555845607072115, + 0.010270747356116772, + 0.0223018079996109, + 0.014773085713386536, + -0.006882145535200834, + 0.009952536784112453, + -0.005649926606565714, + 0.011787324212491512, + -0.004573427606374025, + -0.0007883323705755174, + 0.01192950364202261, + -0.027406714856624603, + 0.02249138057231903, + 0.008043275214731693, + 0.0027961889281868935, + -0.01580219157040119, + -0.02059565857052803, + 0.0005285169463604689, + 0.0038693028036504984, + 0.013418999500572681, + 0.0007083566160872579 + ], + "c3a44332-4b51-4967-81e8-369507b503c8": [ + -0.01354977022856474, + -0.029591290280222893, + 0.004462625831365585, + 0.0045576500706374645, + -0.004159955307841301, + 0.023777207359671593, + -0.018202444538474083, + 0.007721609435975552, + -0.010192242451012135, + 0.034011684358119965, + 0.0185262318700552, + -0.009565785527229309, + 0.02038448490202427, + -0.0022471502888947725, + -0.004321848973631859, + 0.013789091259241104, + -0.011339574120938778, + 0.025213131681084633, + -0.01707622967660427, + -0.01880778558552265, + 0.04960975795984268, + -0.05008839815855026, + -0.05577578395605087, + 0.025677694007754326, + -0.009298309683799744, + -0.035334985703229904, + -0.01942720264196396, + 0.022397594526410103, + -0.016850987449288368, + 0.005194665398448706, + -0.00934758223593235, + -0.020426718518137932, + 0.024790801107883453, + 0.01709030754864216, + -0.008615542203187943, + -0.036461200565099716, + 0.015429140999913216, + 0.003846727078780532, + -0.023453420028090477, + -0.009319426491856575, + -0.03291362524032593, + 0.0512990802526474, + -0.0015538242878392339, + -0.03440585732460022, + -0.03846023231744766, + -0.004230343736708164, + -0.06047772988677025, + -0.02432623691856861, + 0.005398791749030352, + -0.026451967656612396, + 0.02241167239844799, + 0.023650508373975754, + -0.0372777059674263, + 0.04158547893166542, + 0.036827221512794495, + -0.038629163056612015, + 0.034490324556827545, + 0.0441194586455822, + 0.02535390853881836, + -0.018061667680740356, + 0.013437149114906788, + -0.008432532660663128, + 0.0005050369072705507, + -0.01870924048125744, + 0.005462141241878271, + -0.03699615225195885, + -0.03344857692718506, + -0.021834487095475197, + -0.04040295258164406, + -0.0010699039557948709, + 0.021538855507969856, + 0.00539527228102088, + -0.021355845034122467, + -0.02612818032503128, + 0.01204345840960741, + 0.0004957984201610088, + 0.03584178164601326, + 0.024129150435328484, + 0.00391359580680728, + -0.034011684358119965, + 0.0018160211620852351, + -0.022439828142523766, + -0.013416032306849957, + 0.009298309683799744, + 0.0648699626326561, + -0.013085206970572472, + 0.012430594302713871, + -0.03156216815114021, + -0.03899518400430679, + -0.014795645140111446, + -0.010128892958164215, + 0.039164114743471146, + -0.013641275465488434, + 0.005940782371908426, + -0.007784958928823471, + -0.003677794709801674, + 0.01713254116475582, + -0.002602611668407917, + -0.010628650896251202, + -0.03342042118310928, + 0.005638112314045429, + -0.005187626462429762, + 0.02511458657681942, + 0.008108745329082012, + -0.0013743338640779257, + 0.03451848030090332, + 0.017273318022489548, + 0.004290174227207899, + 0.01720292866230011, + 0.04853985458612442, + -0.025790316984057426, + -0.06717870384454727, + 0.02013108693063259, + 0.008524036966264248, + -0.04687868431210518, + -0.02642381191253662, + -0.030041776597499847, + 0.005536049138754606, + -0.008516998961567879, + -0.0026518835220485926, + 0.004842723254114389, + 0.002769784303382039, + -0.008249522186815739, + 0.03530682995915413, + 0.00827063899487257, + -0.002562138484790921, + -0.019370893016457558, + 0.03409614786505699, + 0.04237382858991623, + 0.01917380467057228, + -0.023481575772166252, + 0.002889444585889578, + 0.04997577518224716, + -0.01941312476992607, + 0.013493459671735764, + 0.014922344125807285, + 0.032463137060403824, + 0.06926220655441284, + -0.01714661903679371, + 0.03626411408185959, + -0.04166994243860245, + -0.01081869937479496, + -0.03888256102800369, + 0.02925342693924904, + -0.013493459671735764, + 0.003362806746736169, + -0.03685537725687027, + 0.04257091507315636, + -0.010241515003144741, + -0.005722578149288893, + -0.028493231162428856, + -0.0092912707477808, + -0.022214584052562714, + -0.00797500740736723, + 0.034602947533130646, + 0.015851471573114395, + -0.02397429570555687, + 0.026705365628004074, + -0.030548572540283203, + 0.027887891978025436, + 0.03812236711382866, + -0.057324327528476715, + 0.016442734748125076, + 0.00862962007522583, + 0.048033054918050766, + 0.026564588770270348, + 0.0049201506190001965, + 0.007221851497888565, + -0.02421361580491066, + 0.026761677116155624, + 0.02595924772322178, + -0.03192818537354469, + 0.004430951084941626, + -0.04124761372804642, + 0.01792089082300663, + 0.00922792125493288, + 0.04870878532528877, + 0.008432532660663128, + 0.01930050365626812, + -0.0014218459837138653, + -0.042401984333992004, + -0.020356331020593643, + 0.0042549800127744675, + -0.0033364109694957733, + -0.0008789753774181008, + 0.046174801886081696, + -0.008714086376130581, + -0.002384407678619027, + -0.006933259312063456, + 0.0008780955104157329, + -0.0040191784501075745, + -0.006405346095561981, + 0.006014690268784761, + 0.010910204611718655, + -0.013563848100602627, + -0.01709030754864216, + -0.0034683893900364637, + -0.034856345504522324, + 0.0077004930935800076, + 0.0003528219531290233, + -0.029168959707021713, + -0.036517512053251266, + -0.013936907052993774, + 0.02253837138414383, + -0.02853546477854252, + -0.005961899179965258, + 0.01821652241051197, + -0.02480487897992134, + 0.014542247168719769, + -0.03744663670659065, + 0.029872843995690346, + -0.030126241967082024, + 0.013669430278241634, + -0.004687868524342775, + -0.007658259943127632, + 0.03409614786505699, + 0.0050186943262815475, + 0.004550611134618521, + 0.016583511605858803, + -0.024143226444721222, + 0.03950197994709015, + -0.0001771808456396684, + -0.0033170541282743216, + -0.03128061443567276, + -0.036517512053251266, + -0.005518451798707247, + -0.017766036093235016, + 0.018371377140283585, + -0.021299535408616066, + -0.002043023705482483, + 0.022369438782334328, + 0.013430110178887844, + 0.009389814920723438, + 0.014640790410339832, + 0.018357299268245697, + 0.027043230831623077, + 0.03153401240706444, + 0.009516513906419277, + 0.00937573704868555, + -0.011163602583110332, + -0.009256076999008656, + 0.025846626609563828, + -0.0023210581857711077, + -0.033533040434122086, + 0.015626229345798492, + -0.008573309518396854, + -0.021172836422920227, + 0.048286452889442444, + -0.02235536091029644, + -0.0019673563074320555, + -0.011079137213528156, + 0.003952309489250183, + 0.02835245430469513, + -0.007524522021412849, + -0.007066997233778238, + 0.04327479749917984, + 0.03192818537354469, + 0.005462141241878271, + -0.02780342474579811, + -0.022862158715724945, + 0.017287395894527435, + 0.028549542650580406, + 0.014049528166651726, + 0.04409130662679672, + 0.03992430865764618, + -0.018498076125979424, + 0.007042360957711935, + 0.03570100665092468, + -0.004747698549181223, + 0.03896702826023102, + -0.019624290987849236, + -0.03156216815114021, + -0.0031199667137116194, + 0.011733748950064182, + -0.05800005793571472, + 0.021313613280653954, + -0.0037094696890562773, + 0.0038502465467900038, + -0.014514091424643993, + -0.014246615581214428, + 0.018920406699180603, + -0.016794675961136818, + 0.05022917315363884, + 0.02666313201189041, + 0.019680602476000786, + 0.01779419183731079, + -0.020173320546746254, + -0.05076412856578827, + -0.03589809313416481, + -0.004043814726173878, + -0.014176227152347565, + -0.007834230549633503, + 0.00018059028661809862, + 0.036714598536491394, + 0.016020404174923897, + 0.00290000275708735, + -0.03846023231744766, + -0.0035862899385392666, + 0.014753412455320358, + -0.01486603356897831, + -0.048399075865745544, + 0.012050497345626354, + -0.012127924710512161, + -0.02984468825161457, + 0.017273318022489548, + -0.024734489619731903, + 0.046174801886081696, + 0.03741848096251488, + -0.023354876786470413, + 0.01204345840960741, + 0.03612333536148071, + -0.01462671346962452, + -0.01558399572968483, + 0.014640790410339832, + 0.012993701733648777, + 0.023059245198965073, + -0.017343705520033836, + -0.021595166996121407, + -0.0046315579675138, + -6.90136439516209e-5, + 0.00033940415596589446, + -0.011951953172683716, + -0.017048073932528496, + -0.006525006145238876, + 0.028422843664884567, + -0.03685537725687027, + 0.04609033465385437, + -0.041388388723134995, + -0.033589351922273636, + -0.009073067456483841, + -0.026142258197069168, + -0.005803524982184172, + -0.028422843664884567, + 0.01096651516854763, + -0.05580393597483635, + -0.032632071524858475, + -0.03800974413752556, + -0.04496411979198456, + -0.03144954517483711, + 0.01808982342481613, + -0.05315733328461647, + -0.026803908869624138, + -0.005177068058401346, + -0.011550739407539368, + -0.03308255597949028, + -0.036348577588796616, + 0.014331081882119179, + 0.03212527558207512, + 0.015893705189228058, + -0.0025691771879792213, + 0.0008600584696978331, + 0.005412869155406952, + 0.02001846581697464, + -0.012064575217664242, + 0.028422843664884567, + 0.024833032861351967, + 0.009270154871046543, + 0.011036903597414494, + 0.006912142504006624, + -0.020820893347263336, + -0.0013048253022134304, + -0.027169929817318916, + 0.0018424168229103088, + -0.04980684444308281, + -0.010769427753984928, + -0.011494428850710392, + -0.0058879912830889225, + -0.030126241967082024, + -0.033533040434122086, + 0.021609244868159294, + -9.92036730167456e-5, + -0.03336410969495773, + -0.009403892792761326, + -0.03888256102800369, + 0.030407795682549477, + -0.03722139447927475, + 0.0371650829911232, + -0.0010496672475710511, + -0.020159242674708366, + 0.02638157829642296, + -0.043725285679101944, + 0.0028436919674277306, + -0.02228497341275215, + -0.016921374946832657, + 0.06222335994243622, + 0.03561653941869736, + -0.0008521397830918431, + -0.0370524637401104, + -0.016682054847478867, + 0.015316519886255264, + -0.033533040434122086, + -0.020525261759757996, + 0.006588356103748083, + -0.016625743359327316, + -0.002282344503328204, + 0.0010355896083638072, + -0.015499529428780079, + -0.007728648371994495, + 0.032519448548555374, + 0.00536359753459692, + -0.02283400297164917, + -0.005335442256182432, + 0.014697101898491383, + -0.017104385420680046, + 0.007573793642222881, + -0.04727286100387573, + 0.000772072933614254, + 0.017118463292717934, + -0.0005446303985081613, + -0.04625926911830902, + 0.038150522857904434, + -0.01816021092236042, + -0.0012238785857334733, + -0.008601464331150055, + 0.023763129487633705, + 0.00022205346613191068, + 0.0023210581857711077, + 0.006310321856290102, + -0.06858647614717484, + 0.007299278862774372, + 0.025931093841791153, + -0.00011680078023346141, + 0.01725924015045166, + 0.009565785527229309, + -0.028605852276086807, + 0.011691516265273094, + -0.017273318022489548, + -0.011163602583110332, + 0.009903650730848312, + -0.013866518624126911, + 0.009685446508228779, + 0.004550611134618521, + -0.0067537687718868256, + 0.015485451556742191, + -0.005261534359306097, + -0.0024829513859003782, + 0.007119788322597742, + 0.012142001651227474, + -0.022932546213269234, + -0.025382064282894135, + 0.02625487931072712, + 0.012571371160447598, + 0.0210320595651865, + -0.019272347912192345, + -0.01906118355691433, + -0.020032543689012527, + -0.017428172752261162, + 0.049018494784832, + 0.017357783392071724, + -0.011255107820034027, + -0.03480003401637077, + 0.03139323368668556, + -0.04051557183265686, + -0.018498076125979424, + 0.011635205708444118, + -0.015386908315122128, + 0.019018949940800667, + 0.0016620465321466327, + -0.0018652930157259107, + -0.03420877084136009, + 0.028211677446961403, + -0.0004729221691377461, + 0.03139323368668556, + -0.01779419183731079, + 0.0605340376496315, + -0.04189518466591835, + 0.007967968471348286, + 0.030351486057043076, + 0.013852440752089024, + 0.014338120818138123, + 0.02318594418466091, + 0.003382163355126977, + -0.014429626055061817, + 0.032632071524858475, + 0.02366458624601364, + -0.006943817250430584, + -0.04119130223989487, + -0.013789091259241104, + 0.021440312266349792, + 0.011916759423911572, + -0.0004931588773615658, + 0.04034664109349251, + -0.006053403951227665, + 0.02690245397388935, + -0.02732478454709053, + -0.018610697239637375, + -0.006254010833799839, + -0.025213131681084633, + -0.03829129785299301, + -0.006697457749396563, + -0.011184719391167164, + 0.027676725760102272, + 0.05022917315363884, + -0.000959922035690397, + 0.03713693097233772, + -0.029450513422489166, + 0.033110711723566055, + -0.01444370299577713, + -0.007960930466651917, + -0.003906557336449623, + 0.025621384382247925, + -0.024199537932872772, + 0.015091276727616787, + 0.014471858739852905, + -0.012747342698276043, + 0.051693253219127655, + -0.02198934182524681, + -0.015893705189228058, + -0.013162634335458279, + 0.008946367539465427, + 0.005539568606764078, + -0.0013004259672015905, + -0.03451848030090332, + -0.0040754894725978374, + 0.009474281221628189, + 0.0003570012631826103, + -0.007855347357690334, + -0.005465660709887743, + 0.01438035350292921, + -0.0035141417756676674, + 0.006422942969948053, + -0.023340798914432526, + -0.016738366335630417, + -0.001628612051717937, + 0.011761904694139957, + -0.003829129971563816, + -0.018117979168891907, + -0.022876236587762833, + 0.016991764307022095, + -0.004712504334747791, + -0.02266507036983967, + 0.014345159754157066, + -0.01930050365626812, + -0.02270730398595333, + -0.012015302665531635, + -0.003839688142761588, + -0.01701992005109787, + -0.020454874262213707, + 0.00973471812903881, + -0.0006220576469786465, + -0.02128545753657818, + 0.04842723160982132, + -0.011100253090262413, + -0.00442039268091321, + -0.03561653941869736, + -0.002405524253845215, + 0.024551479145884514, + 0.023045167326927185, + -0.00818617269396782, + 0.0099458834156394, + -0.044203925877809525, + -0.021130602806806564, + 0.005595879163593054, + -0.013887634500861168, + -0.025579150766134262, + -0.011733748950064182, + 0.02588886022567749, + 0.00417755264788866, + 0.025424296036362648, + -0.047864124178886414, + -0.02474856749176979, + -0.005536049138754606, + 0.008559231646358967, + 0.02013108693063259, + -0.03457479178905487, + 0.0056310733780264854, + -0.030351486057043076, + -0.009664329700171947, + -0.002116931602358818, + 0.01231797318905592, + 0.013042973354458809, + 0.019750989973545074, + 0.036235958337783813, + 0.007517483085393906, + 0.0013057051692157984, + 0.006211777683347464, + 0.010741272941231728, + -0.021313613280653954, + 0.0027733035385608673, + -0.00172275654040277, + 0.02787381410598755, + -0.01045268028974533, + 0.010340058244764805, + -0.012325012125074863, + 0.03243498131632805, + -0.02391798421740532, + -0.01595001481473446, + -0.017470404505729675, + -0.003061896190047264, + 0.024171382188796997, + 0.019934000447392464, + 0.0396709106862545, + 0.009087144397199154, + -0.03584178164601326, + 0.002755706664174795, + 0.01917380467057228, + -0.0016761241713538766, + 0.008474765345454216, + 0.027761191129684448, + 0.009453164413571358, + -0.00782015360891819, + 0.009319426491856575, + 0.013690547086298466, + -0.021707788109779358, + -0.02636750042438507, + 0.00908010546118021, + -0.0016831629909574986, + 0.01270510908216238, + 0.005919666029512882, + 0.0010699039557948709, + 0.013817246071994305, + -0.008341027423739433, + 0.0329417809844017, + -0.03288546949625015, + 0.00402973685413599, + 0.018244678154587746, + -0.015344674699008465, + 0.010537145659327507, + 0.025931093841791153, + -0.04254275932908058, + 0.03268837928771973, + -0.003345209639519453, + 0.06436316668987274, + 0.012726225890219212, + 0.016822831705212593, + 0.03440585732460022, + -0.037249550223350525, + 0.004304251633584499, + 0.003667236538603902, + 0.015330597758293152, + -0.02522720955312252, + 0.01690729707479477, + 0.00973471812903881, + -0.008284716866910458, + 0.05729617178440094, + -0.010656806640326977, + 0.020060699433088303, + 0.018385455012321472, + -0.021172836422920227, + 0.02020147629082203, + -0.017611181363463402, + -0.004360562656074762, + -0.006623550318181515, + 0.017400017008185387, + -0.025325752794742584, + 0.018681086599826813, + 0.002220754511654377, + -0.00943908654153347, + 0.02583254873752594, + 0.016822831705212593, + -0.0328291580080986, + 0.013732780702412128, + -0.013071129098534584, + -0.0011974829249083996, + -0.001626852317713201, + 0.006204739212989807, + -0.030520418658852577, + 0.017287395894527435, + 0.004350004252046347, + 0.032463137060403824, + 0.005078524351119995, + -0.05411461368203163, + 0.021890798583626747, + 0.012726225890219212, + 0.02541021816432476, + 0.033589351922273636, + -0.021130602806806564, + -0.004589324817061424, + 0.033589351922273636, + 0.025748083367943764, + 0.02655051089823246, + -0.035278674215078354, + -0.009326465427875519, + -0.008228406310081482, + -0.00782719161361456, + 0.0005793846794404089, + 0.009361659176647663, + 0.011944914236664772, + -0.038150522857904434, + -0.009495397098362446, + 0.02546652965247631, + -0.03026701882481575, + -0.02068011648952961, + 0.008010202087461948, + -0.01696360856294632, + -0.007587871514260769, + 0.015809237957000732, + -0.002046543173491955, + -0.018441764637827873, + 0.004987019579857588, + 0.006239933427423239, + -0.0010435082949697971, + -0.015358752571046352, + 0.010361175052821636, + 0.013739818707108498, + -0.013972100801765919, + -0.005113718565553427, + -0.022763613611459732, + -0.006979011464864016, + 0.009488359093666077, + -0.028380610048770905, + -0.0019603173714131117, + -0.018864095211029053, + -0.01846992038190365, + -0.041332077234983444, + 0.015189820900559425, + -0.004913111682981253, + -0.008326949551701546, + 0.03817867860198021, + 0.005659228656440973, + -0.01606263779103756, + 0.003383923089131713, + 0.0013576166238635778, + 0.0187514740973711, + -0.011290302500128746, + -0.012226467952132225, + -0.029703911393880844, + 0.0041529168374836445, + -0.03266022726893425, + 0.04789227992296219, + 0.0012185995001345873, + 0.028605852276086807, + -0.003987503703683615, + -0.038150522857904434, + -0.0022559487260878086, + 0.01953982561826706, + 0.02224273979663849, + 0.007376706227660179, + 0.027113618329167366, + -0.006334957666695118, + 0.0372777059674263, + 0.0022717860992997885, + 0.042458292096853256, + 0.012353166937828064, + 0.004698426928371191, + -0.022313129156827927, + -0.000857858860399574, + 0.011367729865014553, + 0.03240682929754257, + 0.006218816619366407, + -0.008608503267168999, + 0.02576216123998165, + 0.022862158715724945, + -0.04105052351951599, + 0.010987631976604462, + -0.010804622434079647, + 0.021355845034122467, + -0.01780826970934868, + -0.023960217833518982, + 0.007693454157561064, + 0.020891282707452774, + -0.016259724274277687, + 0.03198449686169624, + -0.019638368859887123, + 0.010178165510296822, + -0.008707047440111637, + 0.019159726798534393, + 0.010882049798965454, + 0.029591290280222893, + 0.020863126963377, + 0.00228410423733294, + 0.013746857643127441, + -0.04547091946005821, + 0.004233863204717636, + -0.010783505626022816, + 0.027113618329167366, + -0.008277677930891514, + -0.024509247392416, + 0.020637884736061096, + 0.0026413253508508205, + 0.02995731122791767, + 0.03471556678414345, + 0.02511458657681942, + -0.0030267019756138325, + -0.009727679193019867, + -0.0421767383813858, + 0.00399806210771203, + -0.03308255597949028, + 0.014514091424643993, + -0.01690729707479477, + -0.0370524637401104, + -0.03871363028883934, + 0.04057188332080841, + 0.022200506180524826, + 0.0059091076254844666, + 0.0061132339760661125, + -0.008861902169883251, + -0.004723062738776207, + -0.010325981304049492, + -0.0013206626754254103, + 0.027845658361911774, + -0.0021609244868159294, + -0.010931321419775486, + 0.032097119837999344, + 0.020764583721756935, + -0.006049884483218193, + -0.006345516070723534, + 0.007190176751464605, + -0.0037728191819041967, + -0.02169371023774147, + -0.04440101236104965, + -0.020820893347263336, + 0.009030833840370178, + 0.019033027812838554, + -4.652234565583058e-5, + -0.026057792827486992, + -0.023819440975785255, + 0.04535829648375511, + -0.010150009766221046, + 0.011698555201292038, + 0.005972457118332386, + 0.06425055116415024, + 0.010846855118870735, + 0.0024653542786836624, + -0.03232236206531525, + 0.010593457147479057, + -0.004381678998470306, + 0.02265099249780178, + 0.06700977683067322, + -0.0070810746401548386, + -0.0014623194001615047, + -0.01810390129685402, + 0.010987631976604462, + 0.0030847724992781878, + 0.027606338262557983, + -0.04738548398017883, + -0.004385198466479778, + -0.01219127420336008, + 0.0022753055673092604, + 0.001626852317713201, + -0.016259724274277687, + -0.040853437036275864, + -0.03691168501973152, + 0.018737396225333214, + 0.019821377471089363, + 0.016949530690908432, + -0.02390390634536743, + 0.02990099973976612, + -0.061998117715120316, + 0.0029668717179447412, + -0.03654566779732704, + -0.025804392993450165, + 0.016499044373631477, + -0.007707531563937664, + 0.03268837928771973, + 0.02259468287229538, + 0.005265053827315569, + -0.02037040889263153, + 0.03274469077587128, + 0.043415576219558716, + 0.02919711545109749, + 0.012233506888151169, + 0.027071384713053703, + 0.02984468825161457, + -0.03327964246273041, + -0.011304379440844059, + -0.01312743965536356, + 0.002706434577703476, + 0.006591875106096268, + 0.00266596139408648, + 0.014000256545841694, + 0.007531560491770506, + 0.006968453526496887, + -0.0256495401263237, + 0.024917500093579292, + 0.03133692219853401, + 0.012430594302713871, + 0.005381194408982992, + 0.002898243023082614, + 0.01087501086294651, + -0.012500982731580734, + -0.0033029764890670776, + 0.009171610698103905, + 0.008875979110598564, + -0.002768024569377303, + -0.012923313304781914, + 0.006162506062537432, + -0.03899518400430679, + -0.016104869544506073, + -0.020637884736061096, + -0.01261360477656126, + -0.010846855118870735, + 0.02595924772322178, + -0.0021996379364281893, + -0.02504419907927513, + 0.016456812620162964, + 0.009143455885350704, + -0.015429140999913216, + -0.010832777246832848, + 0.007918696850538254, + -0.007658259943127632, + -0.013380838558077812, + -0.0017121982527896762, + -0.02343934215605259, + 0.006243452429771423, + -0.0022594681940972805, + -0.01369758602231741, + 0.0061695449985563755, + 0.009213844314217567, + 0.001812501810491085, + 0.020961670204997063, + -0.028310220688581467, + -0.0010971794836223125, + -0.019976232200860977, + -0.004983500111848116, + -0.0024336795322597027, + -0.012120885774493217, + -0.0009256076882593334, + 0.01569661684334278, + 0.015063120983541012, + 0.0040508536621928215, + 0.0077004930935800076, + -0.007482288870960474, + -0.015246131457388401, + 0.011417001485824585, + 0.0018899290589615703, + 0.009094183333218098, + -0.021890798583626747, + 0.013542731292545795, + 0.0007179618696682155, + 0.028493231162428856, + 0.00044894611346535385, + -0.007144424598664045, + 0.014514091424643993, + -0.04772334545850754, + 0.023242255672812462, + 0.0031903551425784826, + -0.0033258527982980013, + 0.004286654759198427, + 0.015485451556742191, + 0.008678891696035862, + 0.006796001922339201, + -0.02487526647746563, + 0.00041683140443637967, + 0.007169060409069061, + -0.026409734040498734, + 0.017217006534337997, + -0.005937262903898954, + -0.013183750212192535, + 0.02228497341275215, + 0.004064931068569422, + -0.02787381410598755, + 0.018892250955104828, + 0.00042606989154592156, + 0.003660197602584958, + -0.015569917857646942, + -0.010311903432011604, + 0.02068011648952961, + 0.018357299268245697, + -0.015203897841274738, + 0.0185825414955616, + 0.039417512714862823, + 0.004297212697565556, + 0.012120885774493217, + 0.04321848973631859, + 0.0014799165073782206, + 0.0006546122604049742, + 0.00037811778020113707, + 0.007042360957711935, + -0.0006955255521461368, + 0.025734005495905876, + -0.009164571762084961, + -0.005796486046165228, + -0.002386167412623763, + -0.059970930218696594, + 0.024776723235845566, + -0.007355589419603348, + 0.0012969066156074405, + -0.02577623911201954, + -0.00747524993494153, + -0.007334473077207804, + -0.01827283389866352, + -0.014992732554674149, + 0.024495169520378113, + -0.02097574807703495, + 5.402860915637575e-5, + -0.004589324817061424, + -0.017639337107539177, + -0.006989569868892431, + 0.0034367144107818604, + 0.03770003467798233, + 0.010051465593278408, + 0.009220882318913937, + -0.028324298560619354, + 0.012437633238732815, + 0.009952922351658344, + 0.0002496589149814099, + -0.010987631976604462, + -0.002194358967244625, + -0.004955344367772341, + -0.001441202824935317, + -0.024058761075139046, + -0.006887506693601608, + -0.0008943728171288967, + 0.015513607300817966, + 0.01683690957725048, + -0.018146134912967682, + -0.03505343198776245, + -0.0027029153425246477, + -0.01441554818302393, + -0.015978170558810234, + -0.002794420113787055, + -0.007587871514260769, + 0.041726253926754, + -0.021707788109779358, + -0.0015071920352056623, + 0.0006788083119317889, + 0.014711178839206696, + -0.0036038870457559824, + 0.005293209105730057, + 0.012226467952132225, + 0.020595651119947433, + -0.006120272912085056, + 0.0064722150564193726, + -0.004906072746962309, + 0.002011348959058523, + 0.02211604081094265, + -0.01906118355691433, + -0.01571069471538067, + 0.01880778558552265, + 0.018427688628435135, + 0.006060442887246609, + -0.003466629656031728, + -0.030830126255750656, + -0.0004034136072732508, + 0.018230600282549858, + 0.003531738882884383, + -0.006869909353554249, + -0.021552933380007744, + 0.004012139979749918, + -0.012247584760189056, + 0.017484482377767563, + 0.003153401194140315, + -0.008671852760016918, + 0.007714570499956608, + -0.019694678485393524, + -0.01303593534976244, + -0.06137869879603386, + -0.02511458657681942, + -0.018146134912967682, + -0.008115784265100956, + -0.009382775984704494, + -0.025931093841791153, + 0.008066512644290924, + 0.007151463069021702, + -0.019863611087203026, + 0.012726225890219212, + 0.017723804339766502, + 0.013352682814002037, + 0.003371605183929205, + -0.010825738310813904, + 0.01709030754864216, + -0.02673352137207985, + -0.02481895685195923, + -0.004335926380008459, + -0.008256561122834682, + -0.023228177800774574, + -0.02294662408530712, + 0.007397822570055723, + 0.006718574557453394, + 0.02068011648952961, + -0.018329143524169922, + 0.007742725778371096, + -0.0099458834156394, + -0.0033276125323027372, + -0.0038889599964022636, + 0.012001224793493748, + 0.028183521702885628, + 0.007630104664713144, + 0.00114205211866647, + 0.004008620511740446, + -0.011951953172683716, + 0.02162332274019718, + -0.003573971800506115, + -0.013880595564842224, + 0.017934968695044518, + 0.008854863233864307, + 0.009319426491856575, + -0.015964092686772346, + -0.003577491268515587, + -0.003741144435480237, + 0.0020254268310964108, + -0.002094055525958538, + 0.01756894960999489, + -0.03147770091891289, + 0.012944430112838745, + -0.0001523249375168234, + 0.035869937390089035, + -0.022988857701420784, + -0.006180102936923504, + -0.015527685172855854, + -0.0004203508433420211, + 0.01713254116475582, + -0.0022541889920830727, + 0.04631558060646057, + -0.014302926138043404, + -0.0014649588847532868, + 0.04758257046341896, + -0.0036813141778111458, + -0.0007769121439196169, + -0.013183750212192535, + -0.0049412669613957405, + 0.007383745163679123, + 0.0075456383638083935, + 0.0004452067369129509, + 0.02246798202395439, + -0.0004152916662860662, + -0.013057051226496696, + 0.0010320701403543353, + 0.006254010833799839, + 0.02241167239844799, + -0.0073415120132267475, + 0.004286654759198427, + 0.020300019532442093, + 0.02241167239844799, + -0.020778661593794823, + 0.009389814920723438, + -0.017414094880223274, + -0.021862642839550972, + -0.01565438322722912, + 0.025339830666780472, + -0.015119432471692562, + -0.0220597293227911, + 0.008890056982636452, + 0.012134963646531105, + -0.028788862749934196, + -0.004086047410964966, + 0.010311903432011604, + 0.027127696201205254, + -0.006915661972016096, + 0.006422942969948053, + -0.03753110393881798, + 0.030886437743902206, + -0.017428172752261162, + 0.0033927217591553926, + -0.009319426491856575, + 0.003769299713894725, + -0.00677488511428237, + -0.003267782274633646, + 0.017062151804566383, + -0.01749856024980545, + -0.016639821231365204, + 0.0005859835655428469, + 0.002410803223028779, + -0.013155595399439335, + 0.0030231825076043606, + -0.01462671346962452, + -0.02426992729306221, + 0.016569433733820915, + 0.0065531618893146515, + 0.009931805543601513, + -0.01426773238927126, + 0.008045395836234093, + -0.008516998961567879, + -0.02852138690650463, + -0.004775854293256998, + -0.04248644784092903, + -0.006542603485286236, + 0.014795645140111446, + -0.011438118293881416, + -0.018779629841446877, + 0.013021857477724552, + 0.008108745329082012, + 0.010333019308745861, + -0.016273802146315575, + -0.027775269001722336, + -0.023946139961481094, + -0.010776466690003872, + -0.017766036093235016, + -0.0020711792167276144, + 0.0005947821191512048, + 0.004364081658422947, + -0.017766036093235016, + 0.03564469516277313, + -0.011079137213528156, + 0.027437405660748482, + -0.01117768045514822, + 0.00976991280913353, + -0.008242483250796795, + 0.002945755375549197, + 0.01923011615872383, + -0.008045395836234093, + -0.005740175489336252, + -0.007841269485652447, + -0.007651221007108688, + -0.020426718518137932, + -0.021947108209133148, + -0.020412640646100044, + -0.00268883747048676, + 0.02577623911201954, + 0.027662647888064384, + 0.0015195099404081702, + -0.03891071677207947, + 0.0021820408292114735, + 0.0046315579675138, + 0.01285292487591505, + -0.00576833076775074, + -0.0058316802605986595, + -0.009122339077293873, + -0.01528836414217949, + 0.04307771101593971, + 0.030464107170701027, + -0.010065543465316296, + 0.011994186788797379, + -0.0023562521673738956, + -0.012599526904523373, + -0.015274286270141602, + 0.003456071252003312, + -0.0019040066981688142, + -0.0015063121682032943, + 0.0077497647143900394, + 0.0010760629083961248, + -0.0243403147906065, + -0.021975263953208923, + -0.021186914294958115, + 0.026142258197069168, + 0.0010065543465316296, + -0.016766520217061043, + 0.013261177577078342, + 0.006278646644204855, + 0.020060699433088303, + 0.006127311848104, + 0.013092245906591415, + -0.001632131403312087, + -0.015147587284445763, + -0.024523325264453888, + 0.01138884574174881, + 0.010649767704308033, + -0.007031803019344807, + -0.03899518400430679, + 0.0053248838521540165, + 0.011015787720680237, + -0.007404861506074667, + 0.0004522455856204033, + 0.02187672071158886, + 0.00805947370827198, + 0.01267695426940918, + 0.0014192064991220832, + -0.011395884677767754, + 0.03240682929754257, + -0.011790059506893158, + -0.008791513741016388, + -0.016808753833174706, + -0.006627069320529699, + 0.03429323807358742, + 0.025579150766134262, + -0.032266050577163696, + 0.008559231646358967, + -0.019511669874191284, + 0.02925342693924904, + -0.02925342693924904, + -0.01255025528371334, + -0.005317844916135073, + 0.015091276727616787, + -0.0256495401263237, + 0.02025778591632843, + -0.029281580820679665, + 0.03885440528392792, + 0.004128280561417341, + 0.011909720487892628, + -0.0010056744795292616, + 0.006722094025462866, + -0.015978170558810234, + -0.006225855555385351, + -0.03403984010219574, + -0.01696360856294632, + -0.01136069092899561, + 0.016273802146315575, + 0.000959922035690397, + -0.02128545753657818, + -0.00575425336137414, + -0.023636430501937866, + -0.010361175052821636, + 0.033533040434122086, + 0.002007829723879695, + 0.013556809164583683, + 0.015569917857646942, + -0.016696132719516754, + 0.010896126739680767, + -0.00950243603438139, + 0.016034482046961784, + 0.027198083698749542, + 0.002667721128091216, + 0.005342480726540089, + 0.0009053710382431746, + 0.005951340775936842, + -0.020159242674708366, + 0.002134528709575534, + 0.0017711485270410776, + -0.012430594302713871, + 0.0016796436393633485, + 0.024551479145884514, + -0.028859252110123634, + 0.0326039157807827, + -0.0064968508668243885, + 0.006465176120400429, + -0.0024231213610619307, + -0.028253911063075066, + 0.02583254873752594, + 0.018793707713484764, + -0.003857285249978304, + 0.015471374616026878, + -0.04406315088272095, + 0.0030126243364065886, + 0.02373497374355793, + 0.011121369898319244, + -0.004314810037612915, + 0.004589324817061424, + 0.018315065652132034, + -0.013042973354458809, + -0.0010962996166199446, + -0.008967484347522259, + 0.0055290102027356625, + 0.022580605000257492, + -0.009241999126970768, + -0.017836425453424454, + -0.0018864095909520984, + -0.025452451780438423, + 0.013437149114906788, + -0.030717505142092705, + 0.003906557336449623, + -0.010614573024213314, + 0.0005983015289530158, + -0.020117009058594704, + -0.004504858516156673, + 0.03313886746764183, + 0.031055370345711708, + 0.035109743475914, + 0.01255729328840971, + 0.004237382672727108, + 0.017949046567082405, + -0.006000612396746874, + 0.016076713800430298, + -0.001147331204265356, + 0.010269669815897942, + 0.01816021092236042, + -0.00869296956807375, + 0.0011922038393095136, + 0.007049399893730879, + -0.022988857701420784, + 0.010473796166479588, + 0.01516166515648365, + -0.00016376304847653955, + 0.03893887251615524, + -0.011698555201292038, + 0.00637015188112855, + -0.006225855555385351, + 0.018019434064626694, + -0.006736171431839466, + -0.013268216513097286, + -0.011557778343558311, + -0.0032431462313979864, + 0.021975263953208923, + -0.0030091048683971167, + 0.03243498131632805, + 0.0019057664321735501, + -0.024889344349503517, + 0.011649282649159431, + 0.02265099249780178, + -0.010121854022145271, + -0.010551223531365395, + -0.01450001448392868, + -0.02864808589220047, + -0.012156079523265362, + 0.02182040922343731, + 0.009453164413571358, + -0.014894189313054085, + -0.0032132312189787626, + -0.006591875106096268, + -0.019258271902799606, + -0.017428172752261162, + 0.007770881522446871, + -0.011543700471520424, + -0.01689322106540203, + 0.025973325595259666, + 0.02697284147143364, + -0.012177196331322193, + -0.005032771732658148, + 0.007742725778371096, + 0.008467726409435272, + 0.004994058050215244, + 0.019736912101507187, + 0.019033027812838554, + -0.011494428850710392, + 0.0303233303129673, + 0.007693454157561064, + -0.007158502005040646, + 0.01797720231115818, + -0.027718959376215935, + 0.0009132897248491645, + 0.02349565364420414, + -0.000776472210418433, + -0.00713386619463563, + 0.006229375023394823, + 0.003948790021240711, + -0.016499044373631477, + -0.04290878027677536, + -0.006876948289573193, + 0.009312387555837631, + 0.004311290569603443, + 0.012113846838474274, + -0.0324912928044796, + -0.007397822570055723, + -0.0050433301366865635, + -0.01204345840960741, + -0.006813598796725273, + -0.0030566169880330563, + 0.0047371406108140945, + -0.023805363103747368, + -0.00884078536182642, + 0.0022577084600925446, + 0.006025248672813177, + 0.004515416920185089, + -0.02228497341275215, + 0.009143455885350704, + 0.012747342698276043, + -0.0074682109989225864, + -0.0015819796826690435, + 0.010206320323050022, + -0.047920435667037964, + -0.03468741104006767, + -0.002692356938496232, + -0.003976945765316486, + -0.015316519886255264, + 0.00406141160055995, + -0.003257224103435874, + 0.004525975324213505, + 0.005159471184015274, + 0.004751218017190695, + -0.006324399262666702, + 0.017892735078930855, + 0.007496366277337074, + 0.010276708751916885, + -0.02175002172589302, + -0.00979806762188673, + -0.05236898362636566, + -0.008312871679663658, + -0.030717505142092705, + 0.024720411747694016, + 0.00782015360891819, + 0.02535390853881836, + -0.013430110178887844, + 0.015217975713312626, + -0.0025234248023480177, + 0.012205351144075394, + -0.02331264317035675, + -0.015034966170787811, + 0.010058504529297352, + 0.010945399291813374, + 0.003137563820928335, + -0.014429626055061817, + -0.03429323807358742, + 0.011775982566177845, + -0.023453420028090477, + -0.0021855602972209454, + 0.015091276727616787, + 0.010677922517061234, + -0.017554871737957, + -0.002870087744668126, + -0.011628166772425175, + -0.010290786623954773, + -0.006099156569689512, + -0.013950983993709087, + -0.0373903289437294, + -0.012092730030417442, + 0.015119432471692562, + -0.0061941808089613914, + -0.011951953172683716, + 0.020412640646100044, + 0.030238864943385124, + -0.010107777081429958, + 0.007214813027530909, + 0.0017605902394279838, + 0.013057051226496696, + -0.010480835102498531, + -0.007559716235846281, + -0.009783989749848843, + 0.007489327806979418, + -0.029872843995690346, + 0.0030108646024018526, + -0.0068558319471776485, + 0.0010707838227972388, + -0.03240682929754257, + 0.010107777081429958, + -0.03308255597949028, + 0.004476703237742186, + 0.05405830591917038, + -0.002294662408530712, + -0.0187514740973711, + -0.016752444207668304, + -0.0005248336237855256, + -0.017653414979577065, + 0.002493509789928794, + 0.023284489288926125, + 0.03578547015786171, + -0.005930223967880011, + 0.02211604081094265, + 0.023692741990089417, + -0.0014975136145949364, + 0.013789091259241104, + 0.005937262903898954, + -0.01528836414217949, + 0.010171126574277878, + 0.0173859391361475, + -0.0005331922438926995, + -0.010684961453080177, + -0.008038356900215149, + 0.01900487206876278, + 0.006116753444075584, + -0.021229146048426628, + 0.01575292833149433, + 0.02973206713795662, + -0.03474372252821922, + -0.02037040889263153, + 0.007447094656527042, + 0.01654127798974514, + -0.008911173790693283, + -0.007932774722576141, + -0.002989748027175665, + 0.019328659400343895, + 0.007693454157561064, + 0.00365667836740613, + -0.030717505142092705, + 0.004247941076755524, + 0.006834715139120817, + 0.006359593477100134, + 0.008446610532701015, + 0.0001029430641210638, + 0.010051465593278408, + -0.016682054847478867, + 0.00979806762188673, + 0.014260693453252316, + -0.01054418459534645, + -0.019638368859887123, + 0.001163168577477336, + -0.014992732554674149, + 6.521926843561232e-5, + -0.014401470310986042, + -0.02115875855088234, + -0.028746629133820534, + 0.010853894054889679, + -0.0033029764890670776, + -0.0029263985343277454, + -0.011100253090262413, + 0.010508990846574306, + 0.00032290685339830816, + -0.011881564743816853, + -0.00971360132098198, + -0.006813598796725273, + -0.0039945426397025585, + -0.0037200278602540493, + -0.029675757512450218, + -0.011248068884015083, + 0.008446610532701015, + -0.011656321585178375, + -0.007651221007108688, + 0.011691516265273094, + 0.012606565840542316, + -0.005201703868806362, + -0.002699395874515176, + -0.005645151250064373, + -0.01324710063636303, + -0.005726097617298365, + -0.004705465864390135, + 0.0009625616366975009, + -0.005673306528478861, + -0.016161181032657623, + 0.015274286270141602, + -3.346199446241371e-5, + -0.011614088900387287, + 0.010860932990908623, + -0.01575292833149433, + -0.011980108916759491, + 0.004079008940607309, + 0.008960445411503315, + -0.004937747493386269, + -0.009974039159715176, + -0.003060136456042528, + -0.019328659400343895, + -0.0026114103384315968, + 0.0021662034559994936, + -0.02883109636604786, + 0.04997577518224716, + 0.008474765345454216, + -0.005293209105730057, + 0.011290302500128746, + -0.008073551580309868, + -0.010016271844506264, + 0.012374283745884895, + 0.039051495492458344, + 0.004149397369474173, + 0.009220882318913937, + -0.02296070195734501, + -0.02193303033709526, + -0.01595001481473446, + 0.01081869937479496, + -0.027535948902368546, + 0.017611181363463402, + -0.004895514342933893, + 0.006468695588409901, + 0.008291755802929401, + 0.012071613222360611, + 0.02193303033709526, + 0.005972457118332386, + -0.013943945989012718, + 0.014992732554674149, + 0.002604371402412653, + -0.015189820900559425, + -0.007292239926755428, + 0.026803908869624138, + 0.0011860448867082596, + 0.01666797697544098, + -0.0036989112850278616, + 0.004712504334747791, + -0.029929155483841896, + -0.008946367539465427, + 0.011311418376863003, + -0.0015925379702821374, + 0.0007535960176028311, + -0.007278162520378828, + -0.008158017881214619, + 0.01183229312300682, + 0.020328175276517868, + -0.006901584565639496, + 0.023523809388279915, + -0.008319910615682602, + -0.0015054323012009263, + 0.01720292866230011, + 0.011008748784661293, + -0.001642689690925181, + 0.01528836414217949, + 0.011726710014045238, + -0.007587871514260769, + -0.0046315579675138, + 0.007721609435975552, + -0.0077004930935800076, + -0.01102282665669918, + -0.02151069976389408, + 0.009453164413571358, + -0.010867971926927567, + -0.0006101796170696616, + -0.0034349546767771244, + -0.002585014561191201, + 0.003554615192115307, + -0.013430110178887844, + -0.03063303977251053, + 0.00971360132098198, + 0.0092631159350276, + 0.0020518223755061626, + -0.008552192710340023, + 0.004948305897414684, + -0.010121854022145271, + -0.015443218871951103, + 0.014317004010081291, + 0.010994670912623405, + -0.005965418182313442, + -0.016273802146315575, + 0.026085946708917618, + 0.0019321620929986238, + 0.0010901406640186906, + 0.015612151473760605, + -0.008411415852606297, + -0.004423912148922682, + 0.010086660273373127, + 0.010508990846574306, + -0.005525490734726191, + 0.01917380467057228, + -0.005817602854222059, + -0.00366371707059443, + 0.00406141160055995, + 0.008671852760016918, + -0.0016611666651442647, + -0.01948351413011551, + 0.016316035762429237, + -0.012212390080094337, + -0.006767846178263426, + -0.002609650604426861, + -0.0002687957603484392, + -0.013613119721412659, + -0.030464107170701027, + 0.02666313201189041, + 0.003959348425269127, + 0.03457479178905487, + -0.008728163316845894, + 0.030013620853424072, + -0.0008380620856769383, + -0.002382647944614291, + 0.008636659011244774, + 0.008024279959499836, + -0.006651705596596003, + -0.010593457147479057, + 0.001620693365111947, + 0.006479253992438316, + -0.010417485609650612, + -0.011881564743816853, + -0.0013857720186933875, + -0.00973471812903881, + -0.005201703868806362, + -0.007510444149374962, + -0.011318457312881947, + -0.012198313139379025, + -0.01731555163860321, + 0.00856627058237791, + -0.00919976644217968, + 0.003991023171693087, + -0.0028454517014324665, + -0.0033223333302885294, + 0.0031868356745690107, + -0.02493157796561718, + -0.010551223531365395, + 0.013535692356526852, + 0.015781084075570107, + 0.019089339300990105, + -0.01174782682210207, + 0.014063606038689613, + -0.0019743950106203556, + -0.002785621676594019, + 0.00820728950202465, + 0.02973206713795662, + 0.005863355007022619, + 0.0011226952774450183, + 0.002577975858002901, + 0.00041859110933728516, + 0.033110711723566055, + 0.0036883531138300896, + 0.006148428190499544, + -0.006218816619366407, + 0.00445206742733717, + 0.013915790244936943, + -0.01816021092236042, + 0.026325268670916557, + 0.003639081260189414, + 0.038685474544763565, + -0.010635689832270145, + -0.0038080133963376284, + -0.003278340445831418, + -0.026944685727357864, + 0.022031575441360474, + -0.0025269442703574896, + -0.007855347357690334, + -0.0008868940640240908, + -0.015795160084962845, + 0.010762388817965984, + -0.0092631159350276, + -0.023298565298318863, + -0.016076713800430298, + -0.004100125283002853, + 0.019314581528306007, + 0.005961899179965258, + -0.008214328438043594, + 0.009241999126970768, + -0.005553646013140678, + -0.021116524934768677, + 0.011698555201292038, + -0.018202444538474083, + -0.03432139381766319, + 0.019976232200860977, + -0.004930708557367325, + 0.012381322681903839, + 0.013662392273545265, + -0.012691032141447067, + 0.013915790244936943, + -0.002685318235307932, + -0.004212746862322092, + 0.026649054139852524, + -0.03426508232951164, + 0.000765474047511816, + -0.004156435839831829, + 0.025016043335199356, + 0.009277193807065487, + 0.00725000724196434, + 0.002678279299288988, + -0.007876464165747166, + 0.00010167826985707507, + -0.01300074066966772, + -0.006225855555385351, + -0.01953982561826706, + 0.00713386619463563, + 0.0014851955929771066, + 0.03080197237432003, + 0.003677794709801674, + 0.010269669815897942, + -0.037362173199653625, + 0.014894189313054085, + 0.010473796166479588, + 0.0015538242878392339, + 0.004181072115898132, + -0.014338120818138123, + -0.008228406310081482, + -0.026339346542954445, + -0.021186914294958115, + 0.0017561910208314657, + -0.010389330796897411, + -0.016569433733820915, + 0.01725924015045166, + 0.004381678998470306, + -0.027367016300559044, + 0.019216038286685944, + -0.007580832578241825, + 0.007271123584359884, + 0.007461172062903643, + -0.012874041683971882, + 0.009889572858810425, + 0.020595651119947433, + 0.0033469691406935453, + -0.020300019532442093, + 0.014317004010081291, + 0.02877478487789631, + 0.02528351917862892, + 0.0025339829735457897, + 0.029506824910640717, + -0.004290174227207899, + 0.030830126255750656, + 0.011719671078026295, + 0.01423253770917654, + 0.009002679027616978, + 0.029816534370183945, + 0.009361659176647663, + 0.027662647888064384, + -0.011100253090262413, + 0.004430951084941626, + -0.012205351144075394, + -0.003846727078780532, + 0.009931805543601513, + 0.001731555094011128, + 0.018300987780094147, + -0.0007887902320362628, + -0.012149040587246418, + -0.013592003844678402, + -0.0037868968211114407, + 0.017343705520033836, + -2.7096792109659873e-5, + 0.009206805378198624, + -0.020694194361567497, + -0.013746857643127441, + 0.021947108209133148, + 0.007658259943127632, + 0.017963124439120293, + 0.016555355861783028, + -0.010720156133174896, + 0.006669302470982075, + 0.000963441445492208, + -0.015865549445152283, + -0.004525975324213505, + 0.007784958928823471, + -0.017822347581386566, + 0.02331264317035675, + 0.015612151473760605, + 0.0015705415280535817, + 0.007587871514260769, + -0.02793012373149395, + -0.0016770040383562446, + 0.002676519565284252, + 0.0009335263748653233, + 0.009685446508228779, + 0.0031428427901118994, + -0.013458264991641045, + -0.0046808295883238316, + 0.0011182959424331784, + 0.01537283044308424, + 0.004265537951141596, + 0.013162634335458279, + -0.0029193595983088017, + -0.009192727506160736, + -0.03159032016992569, + -0.027550026774406433, + 0.005398791749030352, + -0.04062819480895996, + -0.0028454517014324665, + 0.020060699433088303, + 0.0019427203806117177, + 0.015415063127875328, + 0.003075973829254508, + -0.010382291860878468, + 0.017231084406375885, + -0.004149397369474173, + -0.0077497647143900394, + -0.012698070146143436, + 0.003969906829297543, + 0.009192727506160736, + 0.023101478815078735, + -0.006359593477100134, + 0.017245162278413773, + 0.015316519886255264, + -0.006658744532614946, + -0.02044079639017582, + 0.024650024250149727, + 0.014035450294613838, + 0.045273829251527786, + -0.012648798525333405, + -0.004884956404566765, + 0.02391798421740532, + -0.002961592748761177, + 0.00013351802772376686, + 0.013613119721412659, + 0.01147331204265356, + -0.004540052730590105, + 0.017217006534337997, + 0.007918696850538254, + 0.016386423259973526, + -0.005441024899482727, + 0.00714794360101223, + -0.02660682238638401, + -0.004877917468547821, + 0.007482288870960474, + 0.0018934484105557203, + 0.014640790410339832, + 0.022552449256181717, + 0.019807301461696625, + 0.013613119721412659, + 0.01906118355691433, + 0.014457780867815018, + 0.005476219113916159, + 0.0025410219095647335, + -0.009432047605514526, + 0.004515416920185089, + -0.009952922351658344, + 0.015358752571046352, + 0.010114816017448902, + -0.0009440846624784172, + -0.01429588720202446, + -0.01428884919732809, + -0.003660197602584958, + 0.002514626132324338, + -0.0028260948602110147, + -0.013465303927659988, + 0.010086660273373127, + 0.052340827882289886, + 0.017554871737957, + -0.02900002896785736, + -0.007433016784489155, + 0.02721216157078743, + 0.024847110733389854, + 0.0036953918170183897, + 0.002896483289077878, + -0.02060972899198532, + -0.01462671346962452, + -0.008024279959499836, + 0.011966031044721603, + -0.004082528408616781, + -0.005191145930439234, + -0.023946139961481094, + -0.014837878756225109, + 0.02708546258509159, + -0.01671021059155464, + -0.004163474775850773, + -0.0013013058342039585, + -0.00017256160208489746, + 0.005778889171779156, + -0.002690597204491496, + -0.020229632034897804, + 0.01057937927544117, + 0.0009520033490844071, + -0.01659758947789669, + -0.02559322863817215, + -0.006824157200753689, + 0.012064575217664242, + -0.02702915295958519, + 0.011719671078026295, + 0.028084978461265564, + -0.0028137769550085068, + 0.007573793642222881, + 0.01977914571762085, + -0.013050012290477753, + -0.0006964054191485047, + 0.009959961287677288, + 0.010924282483756542, + -0.009727679193019867, + 0.02013108693063259, + 0.005856316536664963, + -0.03181556612253189, + 0.01983545534312725, + -0.007651221007108688, + 0.02811313420534134, + 0.032575760036706924, + -0.02428400330245495, + 0.0027187527157366276, + -0.0005063567077741027, + -0.01096651516854763, + -0.004578766413033009, + -0.010952438227832317, + -0.004448547959327698, + -0.0050222137942910194, + 0.003255464369431138, + 0.007637143135070801, + -0.007925735786557198, + -0.013479381799697876, + -0.02055341750383377, + 0.011691516265273094, + 0.017104385420680046, + 0.0006418543634936213, + -0.009988116100430489, + 0.022369438782334328, + -0.02068011648952961, + 0.0037305860314518213, + 0.0010813421104103327, + 0.013071129098534584, + -0.004483742173761129, + 0.015626229345798492, + -0.00710219144821167, + 0.016583511605858803, + -0.0005952220526523888, + 0.014401470310986042, + -0.0025709369219839573, + 0.007869425229728222, + 0.0008701768238097429, + -0.021904876455664635, + 0.01288811955600977, + 0.019750989973545074, + 0.01195899210870266, + -0.002222514245659113, + 0.017118463292717934, + -0.021679632365703583, + -0.011515544727444649, + 0.014014333486557007, + -0.00799612421542406, + -0.02391798421740532, + -0.004698426928371191, + -0.0018512153765186667, + -0.01333860494196415, + 0.0036426004953682423, + 0.018413610756397247, + -0.013458264991641045, + -0.015485451556742191, + 0.0008970124181360006, + -0.011790059506893158, + -0.0026747598312795162, + 0.017540793865919113, + -0.0013294612290337682, + 0.030435951426625252, + 0.0006554921274073422, + -0.014253654517233372, + -0.019201960414648056, + -0.006686899811029434, + -0.01147331204265356, + 0.01000923290848732, + -0.012522099539637566, + -0.020666038617491722, + 0.002878886181861162, + -0.0031006098724901676, + -0.003172758035361767, + -0.00029321174952201545, + 0.0013268216280266643, + 0.007207774091511965, + 0.004469664301723242, + -0.005272092297673225, + -0.004733621142804623, + 0.006672821938991547, + 0.015443218871951103, + 0.018920406699180603, + 0.00029277181602083147, + 0.01565438322722912, + -0.022636914625763893, + 0.035081587731838226, + -0.00020500626123975962, + -0.0028348935302346945, + -0.003368085715919733, + 0.02145439013838768, + -0.01575292833149433, + -0.004511897452175617, + 0.025269441306591034, + -0.011839332059025764, + 0.012662876397371292, + 0.00820728950202465, + -0.009058989584445953, + -0.009108261205255985, + 0.021665554493665695, + -0.03339226543903351, + -0.014225498773157597, + 0.01147331204265356, + 0.010234476067125797, + 0.00040847278432920575, + -0.005405830685049295, + 0.02642381191253662, + -0.0033082556910812855, + 0.017526715993881226, + -0.017822347581386566, + 0.018357299268245697, + 0.013887634500861168, + 0.023171866312623024, + -0.0092912707477808, + -0.004237382672727108, + 0.0071831378154456615, + -0.0035722122993320227, + 0.01816021092236042, + -0.0038220910355448723, + -0.007559716235846281, + -0.000861818203702569, + -0.010410446673631668, + 0.01648496650159359, + 0.025973325595259666, + -0.005258014891296625, + 0.011775982566177845, + 0.013394915498793125, + -0.013676469214260578, + 0.0065531618893146515, + -0.002766264835372567, + -0.002585014561191201, + 0.016569433733820915, + 0.0005930224433541298, + 0.012726225890219212, + 0.0041212416253983974, + -0.006085078697651625, + -0.012564332224428654, + -0.0021662034559994936, + -4.479012932279147e-5, + -0.010804622434079647, + 0.0003776778466999531, + 0.00024064040917437524, + -0.016048559918999672, + -0.0021838005632162094, + -0.0026624419260770082, + -0.0009625616366975009, + -1.7280906831729226e-5, + 0.0037094696890562773, + -0.010628650896251202, + 0.0020958150271326303, + 0.03057672828435898, + -0.014070644974708557, + -0.016822831705212593, + 0.03885440528392792, + -0.01779419183731079, + 0.005560684949159622, + -0.009741757065057755, + 0.0009308868320658803, + -0.033899061381816864, + -0.005585320759564638, + -0.0061132339760661125, + -0.009101222269237041, + -0.003003825666382909, + -0.019750989973545074, + 0.002109892899170518, + -0.022566527128219604, + 0.01707622967660427, + 0.0021626842208206654, + 0.00030223026988096535, + 0.009009717032313347, + -0.020708272233605385, + -0.007123307790607214, + -0.0002494389482308179, + 0.010142970830202103, + 0.0029263985343277454, + 0.0064757345244288445, + -0.016794675961136818, + -0.017723804339766502, + 0.011107292026281357, + -0.013021857477724552, + -0.00384320761077106, + 0.002500548493117094, + 0.008256561122834682, + 0.004138838965445757, + -3.1399831641465425e-5, + -0.0197228342294693, + -0.01595001481473446, + -0.0467379093170166, + -0.005293209105730057, + 0.00768641522154212, + 0.004100125283002853, + -0.009192727506160736, + 0.00417755264788866, + 0.029337892308831215, + 0.005624034442007542, + -0.007953891530632973, + -0.004216266330331564, + -0.01953982561826706, + 0.004142358433455229, + 0.006071000825613737, + 0.02671944350004196, + 0.01306409016251564, + 0.006486292462795973, + 0.01405656710267067, + -0.012606565840542316, + 0.018976718187332153, + -0.006996608804911375, + -0.036292269825935364, + 0.020102931186556816, + 9.183488873532042e-5, + 0.003153401194140315, + -0.00325018516741693, + -0.0005921425763517618, + -0.019497592002153397, + -0.02438254840672016, + -0.011248068884015083, + 0.012120885774493217, + 0.00803131889551878, + 0.0057085007429122925, + -0.017287395894527435, + -0.007489327806979418, + 0.017963124439120293, + -0.012634720653295517, + -0.0009898371063172817, + -0.016569433733820915, + 0.003903037868440151, + -0.010459719225764275, + -0.0005965418531559408, + -0.00667986087501049, + 0.024593712761998177, + -0.00856627058237791, + 0.005761291831731796, + 0.00048699986655265093, + 0.016977686434984207, + -0.011740787886083126, + -0.01714661903679371, + -0.010769427753984928, + -0.0028243353590369225, + 0.0019057664321735501, + 0.010959476232528687, + 0.031252458691596985, + -0.011142486706376076, + -0.008052434772253036, + 0.02097574807703495, + -0.008615542203187943, + -0.008256561122834682, + -0.01319078914821148, + 0.0004874398000538349, + -0.007806075736880302, + -0.004128280561417341, + -0.019849533215165138, + -0.014936421997845173, + -0.010086660273373127, + 0.0220034196972847, + -0.00886894017457962, + -0.002396725583821535, + -0.0162456464022398, + -0.007939813658595085, + 0.0198917668312788, + 0.004754737485200167, + 0.008467726409435272, + 0.006021729204803705, + 0.0013637755764648318, + -0.006627069320529699, + 0.008066512644290924, + -0.013014818541705608, + 0.019680602476000786, + -0.008700008504092693, + 0.003375124651938677, + -0.013366760686039925, + 0.008003163151443005, + 0.010135931894183159, + -0.0009027314372360706, + 0.034011684358119965, + -0.027775269001722336, + 0.0006924460758455098, + -0.026620900258421898, + -0.017400017008185387, + -0.0006330558098852634, + -0.022862158715724945, + -0.006715055089443922, + 0.024945655837655067, + 4.149067171965726e-5, + -0.00010239315452054143, + -0.0044027953408658504, + -0.0002391006564721465, + -0.0003097090229857713, + 0.00402973685413599, + 0.010706078261137009, + -0.013071129098534584, + -0.013894673436880112, + -0.018413610756397247, + -0.026775753125548363, + -0.001823059981688857, + -0.04088159278035164, + -0.0081228232011199, + 0.0014148071641102433, + -0.0067537687718868256, + -4.162815093877725e-5, + -1.1747441931220237e-5, + 0.0050433301366865635, + 0.00327482121065259, + -0.009044911712408066, + -0.01642865687608719, + 0.00459988322108984, + -0.0024829513859003782, + -0.04380975291132927, + -0.011677438393235207, + -0.0027609856333583593, + 0.011480350978672504, + 0.003088291734457016, + -0.017174774780869484, + -0.005891510751098394, + 0.008003163151443005, + -0.014471858739852905, + -0.0185262318700552, + 0.001253793714568019, + -0.009826223365962505, + -0.007179618813097477, + 0.006106195040047169, + -0.019145648926496506, + 0.01827283389866352, + 0.02253837138414383, + 0.006465176120400429, + -0.0013813726836815476, + 0.004987019579857588, + 0.00010613253834890202, + -0.0077004930935800076, + 0.006454617716372013, + 0.00950243603438139, + -0.008833746425807476, + -0.008819668553769588, + -0.007967968471348286, + 0.0007280801655724645, + -0.0057859281077980995, + 0.018244678154587746, + 0.015386908315122128, + -0.009783989749848843, + 0.017723804339766502, + -0.0023509731981903315, + -0.02462186850607395, + -0.01911749504506588, + -0.0019603173714131117, + -0.03415245935320854, + 0.010558262467384338, + 0.0031393233221024275, + 0.007320395205169916, + -0.019497592002153397, + -0.0054480633698403835, + -0.011768943630158901, + -0.0018213002476841211, + 0.002472393214702606, + -0.010255592875182629, + 0.018962640315294266, + 0.012423555366694927, + 0.006929739844053984, + -0.02001846581697464, + 0.00032356675365008414, + 0.02056749537587166, + 0.019342737272381783, + -0.0038009744603186846, + 0.005838719196617603, + -0.011783021502196789, + -0.008319910615682602, + -0.002882405649870634, + -0.0059126270934939384, + -0.029985465109348297, + 0.018483998253941536, + -0.005032771732658148, + -0.0150771988555789, + -0.00479345116764307, + 0.006641147192567587, + -0.009840301238000393, + 0.013148556463420391, + 0.0016066156094893813, + 0.0041212416253983974, + -0.0063947876915335655, + -0.003653158899396658, + 0.01808982342481613, + -0.006764326710253954, + -0.010150009766221046, + 0.011156564578413963, + -0.0037129889242351055, + -0.008700008504092693, + 0.017287395894527435, + -0.01319078914821148, + -0.008861902169883251, + -0.029337892308831215, + -0.0067784045822918415, + 0.0014843157259747386, + -0.013753896579146385, + 0.007190176751464605, + 0.01775195822119713, + 0.007091633044183254, + 0.033589351922273636, + 0.00270467484369874, + 0.031618475914001465, + -0.022425750270485878, + 0.005261534359306097, + 0.004987019579857588, + 0.001142931985668838, + 0.032463137060403824, + 0.010776466690003872, + 0.013310450129210949, + -0.0061378697864711285, + 0.018202444538474083, + 0.013444188050925732, + -0.008010202087461948, + 0.008495882153511047, + 0.02426992729306221, + 0.021243223920464516, + 0.004789931699633598, + -0.022819925099611282, + -0.008228406310081482, + 0.0029369567055255175, + -0.0009106501238420606, + -0.00937573704868555, + -0.014281810261309147, + -0.013592003844678402, + -0.006968453526496887, + 0.006704496685415506, + -0.013908751308918, + 0.017934968695044518, + -0.01057937927544117, + 0.003987503703683615, + -0.0015124711208045483, + -0.0028225756250321865, + -0.026888376101851463, + 0.03398352861404419, + 0.009220882318913937, + 0.004719543270766735, + -0.004550611134618521, + -0.005441024899482727, + -0.0010347097413614392, + 0.004701946396380663, + -0.016259724274277687, + -0.013057051226496696, + 0.02241167239844799, + 0.012669915333390236, + -0.02134176902472973, + 0.01096651516854763, + -0.00573665602132678, + -0.00979806762188673, + 0.001647968776524067, + -0.009241999126970768, + 0.014753412455320358, + -0.0031393233221024275, + 0.0038784018252044916, + 0.02787381410598755, + 0.001735074445605278, + -0.006482773460447788, + -0.006845273543149233, + 0.012134963646531105, + 0.0003915355773642659, + -0.0030513377860188484, + 0.014542247168719769, + -0.009150493890047073, + 0.015513607300817966, + 0.00973471812903881, + -0.001817780896089971, + -0.010473796166479588, + 0.013007779605686665, + -0.004807529039680958, + -0.029028182849287987, + -0.01100170984864235, + -0.002211956074461341, + 0.0049201506190001965, + -0.010234476067125797, + -0.009868456050753593, + -0.0243403147906065, + 0.009009717032313347, + 0.0072852009907364845, + 0.005099640693515539, + -0.005289689637720585, + 0.009579863399267197, + 0.00018949882360175252, + -0.006398307159543037, + -0.002796179847791791, + -0.011226953007280827, + 0.009720640257000923, + -0.02091943845152855, + 0.02498788759112358, + -0.0008868940640240908, + -0.01324710063636303, + -0.02007477730512619, + 0.001353217288851738, + -0.006166025530546904, + 0.009002679027616978, + 0.015471374616026878, + -0.008509960025548935, + 0.0027029153425246477, + 0.025691771879792213, + -0.016076713800430298, + -0.02080681547522545, + 0.021003903821110725, + -0.028183521702885628, + 0.005265053827315569, + 0.010508990846574306, + 0.017766036093235016, + 0.009833262301981449, + -0.02044079639017582, + 0.024720411747694016, + 0.008425493724644184, + 0.00576833076775074, + 0.0020975747611373663, + 0.02428400330245495, + -0.001926882890984416, + 0.0232000220566988, + -0.005919666029512882, + 0.008115784265100956, + 0.01994807831943035, + 0.009009717032313347, + 0.0033328915014863014, + -0.015485451556742191, + 0.021862642839550972, + 0.0020729389507323503, + -0.000768553523812443, + -0.009579863399267197, + -0.007397822570055723, + 0.000864457746502012, + 0.013113361783325672, + -0.03144954517483711, + -0.0025463011115789413, + -0.0030143840704113245, + 0.04313402250409126, + 0.009776950813829899, + -0.0013945705723017454, + 0.010354136116802692, + -0.015119432471692562, + 0.0002969511260744184, + 0.007693454157561064, + 0.009967000223696232, + -0.036517512053251266, + -0.012712148018181324, + -0.03091459348797798, + -0.013655353337526321, + -0.008524036966264248, + -0.0050679659470915794, + -0.006363112945109606, + -0.005807044450193644, + -0.008939328603446484, + -0.008488843217492104, + -0.003755222074687481, + -0.006268088705837727, + 0.0018881693249568343, + 0.014133994467556477, + 0.010128892958164215, + 0.005704981274902821, + -0.003537018084898591, + -0.0150771988555789, + -0.008024279959499836, + 0.0014843157259747386, + 0.010086660273373127, + -0.010699039325118065, + -0.011719671078026295, + 0.011754865758121014, + -0.018864095211029053, + 0.013753896579146385, + -0.023411188274621964, + -0.010121854022145271, + -0.0024442377034574747, + -0.0021609244868159294, + 0.012691032141447067, + 0.0028436919674277306, + -0.014823800884187222, + 0.006644666660577059, + -0.0027521871961653233, + -0.0044802227057516575, + 0.011374767869710922, + 0.003280100179836154, + -0.011395884677767754, + -0.006363112945109606, + -0.004592844285070896, + -0.01132549624890089, + -0.02541021816432476, + 0.010896126739680767, + -0.0018494556425139308, + 0.0022629876621067524, + -0.025072354823350906, + -0.01714661903679371, + 0.012775497511029243, + 0.005817602854222059, + -0.0047406600788235664, + 0.0034261562395840883, + -0.0009915968403220177, + 0.017540793865919113, + 0.010720156133174896, + 0.013437149114906788, + 0.01587962731719017, + 0.01369758602231741, + 0.04014955461025238, + -0.01558399572968483, + -0.007799036800861359, + -0.02594516985118389, + -0.0022559487260878086, + -0.019145648926496506, + -0.018061667680740356, + 0.008728163316845894, + 0.006109714508056641, + -0.019159726798534393, + 0.006961414590477943, + 0.011860447935760021, + 0.005641631782054901, + 0.020088855177164078, + -0.0020623805467039347, + 0.006398307159543037, + -0.020426718518137932, + 0.0014218459837138653, + 0.03206896409392357, + -0.007292239926755428, + -0.018498076125979424, + 0.008136901073157787, + 0.024227693676948547, + -0.0013057051692157984, + -0.012859963811933994, + 0.0013857720186933875, + 0.02995731122791767, + -0.01810390129685402, + -0.003385682823136449, + 0.009931805543601513, + 0.012261662632226944, + -0.01408472191542387, + 0.011839332059025764, + -0.006820637732744217, + -0.0037904162891209126, + -0.013789091259241104, + 0.005071485415101051, + -0.02163739874958992, + -0.009981077164411545, + -0.008052434772253036, + -0.008376222103834152, + 0.00962209701538086, + 0.007003647740930319, + -0.0016770040383562446, + -0.01297962386161089, + -0.010572340339422226, + 0.012923313304781914, + -0.035982560366392136, + 0.00594782130792737, + -0.02020147629082203, + 0.024593712761998177, + -0.0008033078047446907, + 0.008404376916587353, + 0.0044555868953466415, + -0.018188366666436195, + -0.005265053827315569, + -0.03648935630917549, + 0.024424780160188675, + -0.03063303977251053, + -0.015316519886255264, + -0.0001345078635495156, + -0.0067784045822918415, + 0.006715055089443922, + 0.005704981274902821, + 0.010262630879878998, + 0.006908623035997152, + -0.0036144452169537544, + -0.01204345840960741, + 0.009157532826066017, + -0.00402973685413599, + 0.005296728573739529, + 0.01109321415424347, + -0.02139807865023613, + 0.018427688628435135, + 0.006612991914153099, + -0.014598557725548744, + -0.0245655570179224, + 0.007932774722576141, + 0.0055043743923306465, + 0.010762388817965984, + -0.007679376285523176, + -0.02367866411805153, + -0.020933514460921288, + 0.030295174568891525, + 0.027015075087547302, + -0.01731555163860321, + 0.017104385420680046, + 0.024551479145884514, + -0.0060111708007752895, + -0.0003103689232375473, + 0.0024371990002691746, + -0.007278162520378828, + 0.01744225062429905, + -0.0004003341309726238, + 0.0050679659470915794, + 0.014640790410339832, + -0.004899033810943365, + 0.0025691771879792213, + 0.025184975937008858, + -0.019793223589658737, + -0.003980465233325958, + 0.007587871514260769, + -0.0026307671796530485, + -0.022510215640068054, + -0.015527685172855854, + 0.012691032141447067, + -0.023354876786470413, + 0.017836425453424454, + 0.0013180230744183064, + -0.00862962007522583, + -0.002512866398319602, + 0.018948562443256378, + -0.0007672337233088911, + -0.018413610756397247, + -0.007841269485652447, + -0.020581573247909546, + -0.01327525544911623, + 0.008467726409435272, + 0.028450997546315193, + 0.011768943630158901, + -0.0034050396643579006, + -0.00862962007522583, + 0.00632087979465723, + 0.02809905633330345, + -0.004237382672727108, + -0.015555839985609055, + 0.0018828901229426265, + 0.0011710872640833259, + -0.0122827785089612, + 0.004804009571671486, + 0.012212390080094337, + 0.011937875300645828, + -0.005303767044097185, + 0.009551708586513996, + 0.008129862137138844, + -0.0056838649325072765, + 0.013106323778629303, + -0.00518410699442029, + -0.01762525923550129, + -0.011944914236664772, + 0.012986662797629833, + -0.0051665096543729305, + -0.01565438322722912, + 0.028141289949417114, + 0.019272347912192345, + -4.265235475031659e-6, + -0.0005917026428505778, + -0.005191145930439234, + -0.0036742754746228456, + -0.01438035350292921, + 0.019610213115811348, + 0.03409614786505699, + -0.01582331582903862, + 0.010706078261137009, + 0.008974523283541203, + 0.02649420127272606, + 0.02828206680715084, + -0.025508763268589973, + 0.005483257584273815, + -0.0011059780372306705, + -0.008805590681731701, + 0.0255369171500206, + 0.008221367374062538, + 0.0037939357571303844, + -0.0008429012959823012, + 0.012543216347694397, + -0.00017619100981391966, + 0.012972584925591946, + -0.008291755802929401, + -1.7624599422561005e-5, + -0.002102853963151574, + 0.01762525923550129, + 0.015612151473760605, + 0.006528525613248348, + 0.0233689546585083, + 0.01779419183731079, + -0.0035933286417275667, + -0.024058761075139046, + 0.005902068689465523, + -0.021848564967513084, + -0.01762525923550129, + -0.00892525166273117, + 0.011980108916759491, + -0.011564817279577255, + -0.003758741542696953, + 0.008671852760016918, + 0.00044784630881622434, + -0.0004808408848475665, + 0.011818215250968933, + -0.0035035833716392517, + 0.0162456464022398, + -0.005131315439939499, + 0.008826707489788532, + -0.002676519565284252, + -0.0006893665413372219, + -0.01210680790245533, + -0.03240682929754257, + 0.010297825559973717, + 0.01219127420336008, + 0.011198797263205051, + -0.0005428706645034254, + 0.016316035762429237, + 0.006503889802843332, + 0.030661195516586304, + -0.013556809164583683, + -0.017653414979577065, + -0.018962640315294266, + 0.011571856215596199, + 0.011100253090262413, + -0.006852312479168177, + 0.021313613280653954, + -0.020989825949072838, + 0.00047248226474039257, + -0.007425977848470211, + -0.006729132495820522, + 0.01630195789039135, + -0.0010188723681494594, + -0.015541763044893742, + -0.007799036800861359, + -0.024551479145884514, + 0.017160696908831596, + 0.0017729082610458136, + -0.005838719196617603, + 0.02362235262989998, + -0.0025656577199697495, + -0.03181556612253189, + -0.0020377447362989187, + 0.027310706675052643, + -0.01810390129685402, + -0.011367729865014553, + -0.023692741990089417, + 0.008249522186815739, + 0.00707051670178771, + 0.00689102616161108, + -0.010804622434079647, + -0.008087629452347755, + -0.014570401981472969, + -0.009108261205255985, + -0.022918468341231346, + -0.008883018046617508, + 0.01444370299577713, + -0.031139835715293884, + -0.017428172752261162, + -0.0025498203467577696, + 0.013324527069926262, + 0.016076713800430298, + 0.026226723566651344, + -0.005993573926389217, + -0.030661195516586304, + 0.007967968471348286, + 0.018188366666436195, + -0.00753859942778945, + -0.014345159754157066, + 0.004571727942675352, + 0.017766036093235016, + -0.002514626132324338, + -0.017709726467728615, + -0.013873557560145855, + -0.007003647740930319, + -0.005870393943041563, + 0.0077004930935800076, + -0.006025248672813177, + -0.003815052332356572, + -0.03313886746764183, + -0.01276142057031393, + -0.022974779829382896, + 0.009959961287677288, + -0.006796001922339201, + -0.005198184866458178, + -0.028380610048770905, + -0.01792089082300663, + 0.01839953288435936, + -0.011107292026281357, + 0.005500854924321175, + -0.00905195064842701, + -0.006056923419237137, + -0.024776723235845566, + -0.010248553939163685, + 0.013387876562774181, + 0.011909720487892628, + -0.0018142614280804992, + -0.005282650701701641, + -0.028746629133820534, + -0.022453906014561653, + 0.00788350310176611, + -0.03128061443567276, + 0.014063606038689613, + -0.013620158657431602, + -0.005944301839917898, + 0.007967968471348286, + -0.018300987780094147, + 0.0010479075135663152, + -0.014035450294613838, + 0.01333860494196415, + -0.009776950813829899, + -0.008073551580309868, + 0.010551223531365395, + 0.021595166996121407, + 0.0021767618600279093, + -0.0015212696744129062, + -0.015781084075570107, + -0.0028208158910274506, + 0.01959613524377346, + 0.0011209355434402823, + 0.010002193972468376, + 0.006729132495820522, + 0.005486777052283287, + -0.013986178673803806, + -0.02241167239844799, + 0.0012977864826098084, + 0.009157532826066017, + 0.036770910024642944, + -0.010079621337354183, + 0.018427688628435135, + -0.0004122121608816087, + -0.03243498131632805, + -0.02973206713795662, + 0.006641147192567587, + 0.019849533215165138, + -0.012536177411675453, + -0.009164571762084961, + 0.00153534731362015, + -0.018723318353295326, + 0.014148072339594364, + 0.017991280183196068, + -0.006014690268784761, + 0.019666524603962898, + 0.0008846943965181708, + -0.0012256383197382092, + -0.016682054847478867, + 0.01707622967660427, + 0.008819668553769588, + -0.028014590963721275, + -0.016287880018353462, + 0.008200250566005707, + 0.0012194793671369553, + 0.001823059981688857, + -0.018300987780094147, + -0.034602947533130646, + -0.006792482454329729, + -0.036461200565099716, + 0.02151069976389408, + 0.00667986087501049, + -0.0007368787191808224, + -0.003170998301357031, + 0.0027750632725656033, + 0.02229905128479004, + 0.0023333760909736156, + 0.004719543270766735, + -0.009432047605514526, + -0.0047617764212191105, + 0.0006906863418407738, + -0.009453164413571358, + 0.007376706227660179, + -0.004427431616932154, + -0.01528836414217949, + 0.011255107820034027, + 0.0013831324176862836, + 0.011867486871778965, + -0.009220882318913937, + -0.02014516480267048, + -0.0031217262148857117, + -0.002585014561191201, + -0.008256561122834682, + -0.006000612396746874, + 0.008129862137138844, + 0.013324527069926262, + 0.005951340775936842, + -0.014155110344290733, + -0.011205836199223995, + 0.011395884677767754, + -0.011043942533433437, + -0.0006968453526496887, + 0.02480487897992134, + 0.02151069976389408, + 0.0008952526841312647, + -0.017033997923135757, + -0.004881436936557293, + 0.006437020841985941, + 0.01576700620353222, + -0.004265537951141596, + 0.004170513711869717, + 0.034067995846271515, + 0.003433195175603032, + 0.0008283836650662124, + 0.0031428427901118994, + 0.0233689546585083, + -0.020764583721756935, + -0.0019251232733950019, + -0.02493157796561718, + -0.002215475542470813, + -0.009988116100430489, + 0.00937573704868555, + 0.014964577741920948, + -0.0006629708805121481, + -0.012810692191123962, + -0.005198184866458178, + -0.00797500740736723, + 0.01189564261585474, + -0.005103160161525011, + 0.004930708557367325, + -0.030464107170701027, + -0.019018949940800667, + 0.02290439046919346, + 0.004944786429405212, + -0.0018723319517448545, + -0.018793707713484764, + -0.02726847305893898, + 0.027015075087547302, + 0.0065214866772294044, + -0.00032906586420722306, + -0.0035229402128607035, + 0.021792253479361534, + -0.0027451482601463795, + -0.012698070146143436, + -0.011050981469452381, + 0.0035845302045345306, + -0.004416873212903738, + 0.0046456353738904, + 0.0008354225428774953, + -0.0009388055186718702, + -0.01882186345756054, + 0.0009071307140402496, + -0.022862158715724945, + 0.042064119130373, + -0.008460687473416328, + -0.005680345464497805, + 0.02211604081094265, + -0.017949046567082405, + 0.014908267185091972, + 0.0004957984201610088, + -0.014253654517233372, + 0.014253654517233372, + 0.021046137437224388, + -0.005430466495454311, + -0.013936907052993774, + 0.008516998961567879, + -0.007601948920637369, + 0.009706562384963036, + -0.006887506693601608, + 0.011557778343558311, + 0.011691516265273094, + 0.006380710285156965, + 0.018413610756397247, + 0.004575246945023537, + -0.018315065652132034, + -0.0002196338609792292, + 0.0033381707035005093, + -0.021918952465057373, + -0.015682538971304893, + -0.006979011464864016, + -0.008010202087461948, + 0.023101478815078735, + 0.022805847227573395, + -0.0030073451343923807, + 0.020004387944936752, + -0.00862962007522583, + -0.008446610532701015, + 0.00027319503715261817, + 0.006546122953295708, + 0.015119432471692562, + 0.002489990321919322, + -0.004318329505622387, + -7.96268941485323e-5, + 0.010325981304049492, + -0.010199281387031078, + 0.015415063127875328, + 0.006570758763700724, + 0.016569433733820915, + -0.02272138185799122, + -0.007074036169797182, + -0.011226953007280827, + -0.0015159905888140202, + 0.008439571596682072, + 0.03091459348797798, + 0.027000997215509415, + -0.006542603485286236, + -0.02559322863817215, + 0.004772334825247526, + 0.0016717249527573586, + 0.006827676668763161, + 0.013507537543773651, + -0.02151069976389408, + -0.03403984010219574, + -0.0071831378154456615, + -0.008714086376130581, + -0.0011992426589131355, + -0.0027469079941511154, + 0.012733264826238155, + -0.006901584565639496, + 0.005254495423287153, + -0.006746729835867882, + 0.017892735078930855, + -0.00818617269396782, + -0.004068450536578894, + 0.008728163316845894, + 0.019047105684876442, + 0.007010686211287975, + -0.007721609435975552, + 0.00854515377432108, + 0.0008156257681548595, + 0.0027486677281558514, + 0.0075456383638083935, + -0.004012139979749918, + 0.00869296956807375, + -0.022566527128219604, + 0.013704624958336353, + 0.0071866572834551334, + -0.008502921089529991, + -0.013908751308918, + -0.019765067845582962, + -0.0011077377712354064, + 0.010438602417707443, + 0.017414094880223274, + 0.007299278862774372 + ], + "b5e6b215-0d07-4033-8507-9df9bdbf1159": [ + -0.005282664205878973, + -0.038847535848617554, + 0.0020012487657368183, + 0.01480094250291586, + -0.023975472897291183, + 0.0049112578853964806, + -0.015014303848147392, + 0.017795901745557785, + -0.01348916720598936, + 0.044631995260715485, + 0.005219446029514074, + -0.007009309250861406, + 0.03543375805020332, + -0.01548053789883852, + 0.004824332892894745, + 0.015654386952519417, + -0.024718286469578743, + 0.03454870358109474, + -0.01544892881065607, + -0.02535046637058258, + 0.02520822547376156, + -0.05171242356300354, + -0.058824460953474045, + -0.0009472840465605259, + 0.010470501147210598, + -0.007922020740807056, + -0.00998846348375082, + 0.016673779115080833, + -0.005808164831250906, + 0.014714017510414124, + -0.015709703788161278, + -0.017384983599185944, + 0.01662636548280716, + 0.010691764764487743, + 0.0019034581491723657, + -0.04425268620252609, + 0.007159452419728041, + 0.015599071979522705, + -0.016705388203263283, + -0.005393296014517546, + -0.03707742691040039, + 0.03416939452290535, + 0.0074202269315719604, + -0.03045533038675785, + -0.027689537033438683, + -0.0047927238047122955, + -0.07276406139135361, + -0.023074613884091377, + 0.011078976094722748, + -0.008487032726407051, + 0.009285161271691322, + 0.020640717819333076, + -0.03448548540472984, + 0.04864634573459625, + 0.03220963478088379, + -0.057844582945108414, + 0.031719692051410675, + 0.0683387890458107, + 0.03606593981385231, + -0.018064578995108604, + 0.0035402148496359587, + -0.005385393742471933, + -0.00431068567559123, + 0.008874244056642056, + -0.01514074020087719, + -0.03369525820016861, + -0.031087512150406837, + -0.0012100343592464924, + -0.036729730665683746, + 0.014714017510414124, + 0.015101228840649128, + 0.03714064508676529, + -0.012374947778880596, + -0.01855451799929142, + -0.003644919954240322, + -0.005164130590856075, + 0.06422961503267288, + 0.032162219285964966, + 0.009316770359873772, + -0.03556019440293312, + 0.014295198023319244, + 0.005934601183980703, + -0.014271491207182407, + 0.007459738291800022, + 0.029902171343564987, + 0.001513283816166222, + -0.010928832925856113, + -0.038784317672252655, + -0.020703934133052826, + -0.004879648797214031, + -0.025745579972863197, + 0.03774121776223183, + -0.008676687255501747, + 0.005499976687133312, + -0.0016881214687600732, + -0.01676860637962818, + 0.02754729613661766, + 0.007736317813396454, + -0.025034375488758087, + -0.010486305691301823, + 0.001838264404796064, + -0.01929733157157898, + 0.0059622591361403465, + -0.00010853267303900793, + -0.019360549747943878, + 0.03255733475089073, + 0.01215368416160345, + 0.01754302904009819, + 0.022726915776729584, + 0.07643070816993713, + -0.02122548408806324, + -0.06245950609445572, + 0.013979107141494751, + -0.008850537240505219, + -0.04690784588456154, + -0.03495962172746658, + -0.02105163410305977, + 0.019961122423410416, + -0.021067438647150993, + 0.006780143827199936, + 0.009640763513743877, + 0.01441373210400343, + 0.0016229277243837714, + 0.028479764237999916, + 0.006993504706770182, + 0.011553111486136913, + -0.031071707606315613, + 0.049436572939157486, + 0.02271111123263836, + 0.016974065452814102, + -0.014224077574908733, + 0.017827510833740234, + 0.04355728626251221, + -0.010178118012845516, + -0.006554929073899984, + 0.026045866310596466, + 0.029965389519929886, + 0.08844215422868729, + -0.02369099110364914, + 0.017527224496006966, + -0.03862627223134041, + -0.014690310694277287, + -0.023880645632743835, + 0.033473994582891464, + -0.017527224496006966, + -0.01970824971795082, + -0.031893543899059296, + 0.05016357824206352, + 0.0031075659207999706, + -0.014927378855645657, + -0.01503801066428423, + -0.007953629828989506, + -0.016436710953712463, + 0.009696079418063164, + 0.02531885728240013, + 0.021415138617157936, + -0.0008840659284032881, + 0.01174276601523161, + -0.034833185374736786, + 0.026014257222414017, + 0.015535853803157806, + -0.03666651248931885, + 0.018238428980112076, + 0.01245397049933672, + 0.02764212340116501, + 0.012904399074614048, + 0.017938142642378807, + 0.024892136454582214, + -0.007748171221464872, + 0.022078929468989372, + 0.0015863797161728144, + -0.045517049729824066, + 0.006756437011063099, + -0.047571636736392975, + 0.02024560421705246, + -0.010272945277392864, + 0.03745673596858978, + 0.020877784118056297, + -0.003990644123405218, + -0.013117760419845581, + -0.04962622746825218, + 0.00415659137070179, + 0.01879158616065979, + -0.01537780836224556, + 0.014476950280368328, + 0.03410617634654045, + 0.0027381349354982376, + -0.004508242476731539, + -0.012698940001428127, + 0.0038582810666412115, + 0.0016090987483039498, + -0.01411344576627016, + 0.034864794462919235, + 0.0063218120485544205, + -3.917177673429251e-5, + 0.0066537074744701385, + 0.01784331537783146, + -0.026883507147431374, + -0.00040746055310592055, + 0.0008292439742945135, + -0.03992224484682083, + -0.03603433072566986, + -0.001325604971498251, + 0.011734863743185997, + -0.0304869394749403, + 0.012872789986431599, + 0.012090465985238552, + -0.0268360935151577, + 0.032225437462329865, + -0.0340113490819931, + 0.04200844094157219, + -0.037298690527677536, + -0.008984875865280628, + -0.013710429891943932, + -0.0014727846719324589, + 0.050479669123888016, + 0.014192468486726284, + -0.00564616871997714, + 0.009933147579431534, + -0.014326807111501694, + 0.05411471426486969, + 0.0023845084942877293, + -0.009174530394375324, + -0.036382030695676804, + -0.03966937214136124, + -0.0038543299306184053, + -0.015638582408428192, + 0.024244150146842003, + -0.01561487652361393, + -0.007574321236461401, + 0.014429536648094654, + 0.0017592418007552624, + -0.012058856897056103, + 0.02139933407306671, + 0.001636756700463593, + -0.001773070776835084, + 0.05171242356300354, + 0.001325604971498251, + 0.024718286469578743, + -0.029491253197193146, + -0.01047840341925621, + 0.03723547235131264, + -0.014611288905143738, + -0.036792948842048645, + 0.007167354691773653, + -0.0025603340473026037, + -0.025492707267403603, + 0.05013196915388107, + -0.00817884411662817, + 0.010770787484943867, + -0.0016575001645833254, + -0.006223034113645554, + 0.012058856897056103, + 0.002289681462571025, + -0.04447394981980324, + 0.05316644161939621, + 0.04535900428891182, + 0.017147915437817574, + -0.02704155258834362, + -0.02609327994287014, + 0.02021399512887001, + 0.0315774530172348, + -0.006436394993215799, + 0.03363204002380371, + 0.025634948164224625, + 0.00039363157702609897, + 0.008249964565038681, + 0.022126343101263046, + -0.005326126702129841, + 0.02193668857216835, + -0.021841861307621002, + -0.027736950665712357, + -0.0023015348706394434, + 0.0020624911412596703, + -0.04286188632249832, + 0.030613375827670097, + -0.008874244056642056, + 0.009474815800786018, + -0.01325209904462099, + -0.010604839771986008, + 0.015251372009515762, + -0.009221944026648998, + 0.017922338098287582, + 0.0066774142906069756, + 0.022568870335817337, + 0.027974018827080727, + -0.015101228840649128, + -0.03654007613658905, + -0.03767799958586693, + -0.0009734603227116168, + -0.01441373210400343, + -0.013568189926445484, + 0.022663697600364685, + 0.03957454487681389, + -6.868179980301647e-7, + -0.020166581496596336, + -0.03102429397404194, + -0.003293269081041217, + 0.008510739542543888, + -0.025224030017852783, + -0.03992224484682083, + 0.0026116985827684402, + -0.03129297122359276, + -0.038310181349515915, + 0.02933320961892605, + -0.016247058287262917, + 0.05032162368297577, + 0.0152118606492877, + -0.03252572566270828, + -0.006697169970721006, + 0.029791539534926414, + 0.0021434894297271967, + -3.4232860343763605e-5, + -0.007629637140780687, + 0.046623364090919495, + -0.008716198615729809, + -0.027942409738898277, + -0.023074613884091377, + 0.015259274281561375, + -0.007914118468761444, + -0.00029806356178596616, + -0.018001360818743706, + -0.02297978661954403, + 0.011402969248592854, + 0.033948130905628204, + -0.011497795581817627, + 0.034453876316547394, + -0.03287342190742493, + -0.025634948164224625, + -0.01822262443602085, + -0.028622005134820938, + -0.008352694101631641, + -0.009237748570740223, + 0.005010036285966635, + -0.04599118232727051, + -0.032399289309978485, + -0.03796248137950897, + -0.045643486082553864, + -0.01885480433702469, + 0.019629226997494698, + -0.03480157628655434, + -0.04042799025774002, + -0.03066078945994377, + -0.012098368257284164, + -0.05032162368297577, + -0.0389423631131649, + 0.019961122423410416, + 0.029285795986652374, + 0.023137832060456276, + -0.017653660848736763, + 0.000977411400526762, + -0.009972658939659595, + 0.03473835811018944, + -0.0304869394749403, + 0.0316406711935997, + 0.03514927625656128, + -0.003615286434069276, + 0.00844752136617899, + 0.024734091013669968, + 0.00998846348375082, + -0.010193922556936741, + -0.02579299360513687, + 0.011395066976547241, + -0.015567462891340256, + -0.00540910055860877, + -0.0077047087252140045, + -0.019407963380217552, + -0.031182339414954185, + -0.03209900110960007, + 0.003344633849337697, + 0.016104817390441895, + 0.004871746525168419, + -0.025935234501957893, + -0.03146681934595108, + 0.019249917939305305, + -0.051996905356645584, + 0.029380621388554573, + 0.005578999407589436, + -0.022458238527178764, + 0.04548544064164162, + -0.014342611655592918, + 0.006957944482564926, + -0.010446794331073761, + -0.006716925650835037, + 0.06087905168533325, + 0.02544529363512993, + 0.01811199262738228, + -0.03695099428296089, + -0.019550204277038574, + 0.02960188500583172, + -0.020119167864322662, + -0.011489893309772015, + 0.0031431259121745825, + -0.014303100295364857, + 0.01417666394263506, + 0.003111517056822777, + -0.005033743102103472, + -0.005405149422585964, + 0.05955146998167038, + -0.005021889694035053, + -0.018428083509206772, + -0.00176418072078377, + 0.0028685221914201975, + -0.02223697490990162, + 0.006400834769010544, + -0.037330299615859985, + -0.017258547246456146, + 0.006827556993812323, + 0.013109858147799969, + -0.04592796415090561, + 0.015962576493620872, + -0.01642090640962124, + -0.005685680080205202, + 0.006013623904436827, + 0.021715424954891205, + -0.008360596373677254, + 0.0018432033248245716, + 0.0017335594166070223, + -0.0586032010614872, + 0.004132884554564953, + 0.027484077960252762, + 0.005978063680231571, + 0.02007175423204899, + 0.0134496558457613, + -0.02413351833820343, + 0.002242267830297351, + -0.009703981690108776, + -0.019692445173859596, + 0.01270684227347374, + -0.005535536911338568, + 0.013694625347852707, + 0.02312202751636505, + -0.00567777780815959, + 0.010438892059028149, + -0.00807216390967369, + -0.007803487125784159, + 0.012145781889557838, + -0.012722646817564964, + 0.0024635312147438526, + -0.007499249652028084, + 0.01635768823325634, + 0.03287342190742493, + 0.009846222586929798, + -0.0022758524864912033, + -0.009909440763294697, + -0.019581813365221024, + -0.013307414948940277, + 0.01763785630464554, + 0.02018238604068756, + -0.019645031541585922, + -0.04004868119955063, + 0.03796248137950897, + -0.04191361367702484, + -0.03051854856312275, + 0.011347653344273567, + -0.038373399525880814, + 0.03315790370106697, + -0.021620597690343857, + 0.02493955008685589, + -0.04722393676638603, + 0.011537306942045689, + 0.014405829831957817, + 0.007850900292396545, + 0.0057251909747719765, + 0.05857159197330475, + -0.039321672171354294, + 0.006337616592645645, + 0.04185039550065994, + 0.012770060449838638, + 0.028432350605726242, + 0.02152577042579651, + -0.005859529599547386, + -0.007641490548849106, + 0.05515781044960022, + 0.022157952189445496, + -0.004200053866952658, + -0.027247009798884392, + -0.016642170026898384, + 0.023295877501368523, + 0.01150569785386324, + -0.010573230683803558, + 0.05164920538663864, + -0.005598755087703466, + 0.03028148040175438, + -0.013173076324164867, + -0.01570180058479309, + -0.00044030434219166636, + 0.0022146098781377077, + -0.013370633125305176, + 9.507413051323965e-5, + -0.033979739993810654, + 0.033379167318344116, + 0.016578951850533485, + 0.0028349377680569887, + 0.028874877840280533, + -0.024623459205031395, + 0.03153003752231598, + -0.01977146789431572, + 0.011150096543133259, + -0.011102682910859585, + 0.03761478140950203, + -0.029127750545740128, + 0.011924518272280693, + -0.009079703129827976, + -0.021478356793522835, + 0.05752849206328392, + -0.019581813365221024, + 0.0021454649977385998, + -0.014342611655592918, + 0.0005926698795519769, + -0.01348916720598936, + -0.008400107733905315, + -0.027563100680708885, + 0.005590852815657854, + 0.0074202269315719604, + 0.0041012754663825035, + -0.018412278965115547, + 0.00782324280589819, + -0.01009119302034378, + 0.01564648561179638, + 0.0033110491931438446, + -0.024086104705929756, + -0.030091825872659683, + 0.0007299717399291694, + 0.00449638906866312, + 0.010462598875164986, + -0.009735590778291225, + -0.025239834561944008, + -0.010106997564435005, + 0.0003963479830417782, + -0.007281937636435032, + 0.018127797171473503, + -0.0015172349521890283, + -0.0021592939738184214, + -0.013544483110308647, + -0.0028645710553973913, + -0.013860573060810566, + -0.020593304187059402, + 0.006163767073303461, + 0.004480584524571896, + -0.019660836085677147, + 0.0304237212985754, + -0.02116226591169834, + -0.015203958377242088, + -0.0219682976603508, + 0.004215858411043882, + 0.020293017849326134, + 0.005515781231224537, + -0.027199596166610718, + 0.0023904351983219385, + -0.022537261247634888, + -0.015290883369743824, + -0.006562831345945597, + -0.016673779115080833, + -0.010106997564435005, + 0.0004933977033942938, + 0.017416592687368393, + 0.015227665193378925, + 0.009601252153515816, + -0.028542982414364815, + -0.020340431481599808, + 0.007756073493510485, + 0.005345882382243872, + 0.008242062292993069, + -0.026172302663326263, + 0.003988668322563171, + -0.01763785630464554, + -0.018380669876933098, + 0.0027598661836236715, + -0.003131272504106164, + 0.018775781616568565, + 0.01754302904009819, + 0.014785137958824635, + -0.011347653344273567, + 0.015836140140891075, + 0.009364183992147446, + -0.03099268488585949, + -0.011553111486136913, + -0.025461098179221153, + 0.0003076944558415562, + 0.012825376354157925, + -0.0031490526162087917, + 0.014026520773768425, + -0.008107724599540234, + 0.0065351733937859535, + -0.019376354292035103, + -0.001040135626681149, + -0.03514927625656128, + -0.0091587258502841, + 0.040680862963199615, + 0.02199990674853325, + 0.03849983587861061, + 0.01307824905961752, + -0.0318303257226944, + 0.0020387843251228333, + 0.017116306349635124, + -0.0019884074572473764, + 0.007412324659526348, + 0.02960188500583172, + -0.005326126702129841, + -0.008913755416870117, + 0.006716925650835037, + 0.006685316562652588, + -0.021067438647150993, + -0.02761051431298256, + 0.01037567388266325, + -0.01751141995191574, + 0.012746353633701801, + -0.0011537307873368263, + -0.01088141929358244, + 0.004010399803519249, + -0.00664185406640172, + 0.047571636736392975, + -0.017084697261452675, + 0.010920930653810501, + 0.027910800650715828, + 0.010944637469947338, + 0.004061764571815729, + 0.01617593690752983, + -0.045042913407087326, + 0.047034282237291336, + 0.007546663284301758, + 0.05550551041960716, + -0.004867795389145613, + 0.01781170628964901, + 0.028132064267992973, + -0.04301993176341057, + 0.008234160020947456, + -0.009538033977150917, + 0.023343291133642197, + -0.02169962041079998, + 0.00237858179025352, + -0.007922020740807056, + -0.005851627327501774, + 0.05718079209327698, + 0.00988573394715786, + 0.028384936973452568, + -0.0041486890986561775, + -0.021952493116259575, + 0.024007081985473633, + -0.010423087514936924, + 0.001695035956799984, + 0.0002294126315973699, + 0.0049349647015333176, + -0.009964756667613983, + -0.007922020740807056, + 0.013425949029624462, + -0.024228345602750778, + 0.03521249443292618, + 0.03312629461288452, + -0.026520002633333206, + 0.0280846506357193, + -0.0030522500164806843, + -0.002975202864035964, + 0.0003753576020244509, + 0.0026373809669166803, + -0.01629447191953659, + 0.004682091996073723, + 0.02247404307126999, + 0.02603006176650524, + -0.01754302904009819, + -0.05307161435484886, + 0.03309468552470207, + 0.021509965881705284, + 0.030850443989038467, + 0.04248257726430893, + -0.03372686728835106, + 0.007929923012852669, + 0.03004441224038601, + 0.006313909776508808, + -0.001349311787635088, + -0.03508605808019638, + -0.010810298845171928, + -0.006950042210519314, + -0.009593349881470203, + -0.002880375599488616, + 0.0035105813294649124, + 0.006598391570150852, + -0.04232453182339668, + -0.017353374511003494, + 0.02291656844317913, + -0.027736950665712357, + -0.007135745603591204, + 0.026551611721515656, + 0.0171005018055439, + -0.016199644654989243, + 0.013402242213487625, + 0.00020891614258289337, + -0.019376354292035103, + -0.013781550340354443, + 0.0063929324969649315, + 0.005665924400091171, + -0.009703981690108776, + 0.016721192747354507, + 0.018902217969298363, + -0.008376400917768478, + -0.021920884028077126, + -0.007380715571343899, + -0.033948130905628204, + 0.007112038787454367, + -0.034928012639284134, + 0.005258957389742136, + -0.015014303848147392, + -0.005978063680231571, + -0.03821535408496857, + 0.020893588662147522, + -0.004026204347610474, + -0.015156544744968414, + 0.04836186394095421, + 0.007815340533852577, + -0.009538033977150917, + -0.005563194863498211, + -0.013465460389852524, + 0.01544892881065607, + -0.01977146789431572, + -0.01191661600023508, + -0.02152577042579651, + -0.0019992731977254152, + -0.027088966220617294, + 0.023991277441382408, + -0.003403900656849146, + 0.031182339414954185, + -0.00948271807283163, + -0.015535853803157806, + -0.012367045506834984, + 0.020703934133052826, + 0.023880645632743835, + 0.008344791829586029, + 0.03467513993382454, + 0.006128206849098206, + 0.054494019597768784, + -0.006313909776508808, + 0.03793087229132652, + 0.0006721864338032901, + -0.006562831345945597, + -0.013765745796263218, + -0.010201824828982353, + 0.004488486796617508, + 0.04153430461883545, + 0.006665560882538557, + 0.0011319995392113924, + 0.02835332788527012, + -0.011900811456143856, + -0.01254089456051588, + 0.01084981020539999, + -0.029933780431747437, + 0.027800168842077255, + 0.016689583659172058, + -0.02558753453195095, + -0.018032969906926155, + 0.007558516692370176, + -0.03862627223134041, + 0.018096188083291054, + -0.037804435938596725, + 0.02187347039580345, + -0.00567777780815959, + 0.03102429397404194, + -0.002453653374686837, + 0.028542982414364815, + 0.03549697622656822, + -0.0060570864006876945, + 0.03404295817017555, + -0.029823148623108864, + 0.01208256371319294, + -0.01548053789883852, + 0.040206726640462875, + -0.005729142110794783, + -0.03281020373106003, + 0.01811199262738228, + 0.0019617374055087566, + 0.014303100295364857, + 0.036792948842048645, + 0.020229799672961235, + -0.01476933341473341, + -0.009443206712603569, + -0.013821061700582504, + 0.011426675133407116, + -0.050574496388435364, + 0.002609723014757037, + 0.0022600479423999786, + -0.031751301139593124, + -0.03695099428296089, + 0.03755156323313713, + 0.01088141929358244, + 0.020941002294421196, + -0.002789499703794718, + 0.0022383166942745447, + -0.005760751198977232, + -0.01626286283135414, + 0.00789831392467022, + 0.022695306688547134, + -0.021114852279424667, + 0.009135019034147263, + 0.03315790370106697, + 0.028511373326182365, + -0.007246377412229776, + 0.007040918339043856, + 0.01906026341021061, + 0.0024180931504815817, + -0.007827193476259708, + -0.02514500729739666, + -0.008842634968459606, + 0.0021217581816017628, + 0.02128870226442814, + 0.0015982331242412329, + -0.04548544064164162, + -0.03556019440293312, + 0.033442385494709015, + -0.01973985880613327, + 0.015101228840649128, + 0.0057488977909088135, + 0.04052281752228737, + 0.005970161408185959, + 0.02811625972390175, + -0.026077475398778915, + -0.01740078814327717, + -0.007522956468164921, + 0.017590442672371864, + 0.05155437812209129, + 0.006424541585147381, + 0.0007680014241486788, + -0.014058129861950874, + -0.00018557976000010967, + 0.009040191769599915, + 0.04292510449886322, + -0.04229292273521423, + 0.004753212444484234, + -0.009221944026648998, + 0.0011744741350412369, + -0.001701950328424573, + -0.0171005018055439, + -0.02903292328119278, + -0.009933147579431534, + 0.01872836798429489, + 0.033853303641080856, + 0.02659902535378933, + -0.022031515836715698, + 0.035307321697473526, + -0.034359049052000046, + 0.02440219558775425, + -0.004551704972982407, + -0.02849556878209114, + 0.0028902534395456314, + 0.01037567388266325, + 0.015354101546108723, + 0.023817427456378937, + 0.019992731511592865, + -0.030882053077220917, + 0.022458238527178764, + 0.04147108644247055, + 0.031656473875045776, + 0.02146255224943161, + 0.04235614091157913, + 0.0291751641780138, + -0.016879238188266754, + 0.0030344699043780565, + -0.010114899836480618, + 0.014326807111501694, + -0.015575365163385868, + -0.004433170892298222, + -0.008969071321189404, + 0.017701074481010437, + 0.0053182244300842285, + -0.02663063444197178, + 0.032462507486343384, + 0.024623459205031395, + -0.011568916030228138, + -0.0015735385240986943, + -0.005215494893491268, + 0.005709386430680752, + -0.028637809678912163, + 0.0020743445493280888, + 0.0017464006086811423, + 0.013212587684392929, + 0.014492754824459553, + 0.002570211887359619, + 0.015385710634291172, + -0.034422267228364944, + -0.005756800062954426, + -0.017764292657375336, + -0.0013009103713557124, + -0.017827510833740234, + 0.022695306688547134, + 0.004535900428891182, + -0.04080729931592941, + 0.004923111293464899, + 0.017669465392827988, + -0.0018165332730859518, + -0.008056359365582466, + 0.004484535660594702, + -0.0016170010203495622, + 0.006373176816850901, + 0.010193922556936741, + -0.026188107207417488, + -0.007001406978815794, + 0.021889274939894676, + -0.003599481889978051, + 0.0018293744651600718, + -0.0048401374369859695, + -0.004875697661191225, + 0.0103440647944808, + -0.01157681830227375, + 0.01760624721646309, + -0.011726961471140385, + -0.009435304440557957, + -0.016096914187073708, + -0.02659902535378933, + -0.013568189926445484, + 0.04058603569865227, + 0.0016654024366289377, + -0.006282300688326359, + -0.0008371462463401258, + 0.007645441684871912, + -0.016373492777347565, + 0.03031308948993683, + -0.004848039709031582, + 0.014089738950133324, + -0.0053182244300842285, + 0.026725461706519127, + -0.015464733354747295, + 0.001360177411697805, + 0.02372260019183159, + -0.0027381349354982376, + 0.010802396573126316, + -0.04621244594454765, + 0.0028665466234087944, + -0.001087549258954823, + 0.006317860912531614, + -0.0008549263002350926, + 0.008297378197312355, + 0.005349833518266678, + 0.004927062429487705, + -0.025540120899677277, + 0.0012574479915201664, + 0.011671645566821098, + -0.053450923413038254, + 0.013971204869449139, + 0.008953266777098179, + 0.0007709647761657834, + 0.023548750206828117, + 0.002975202864035964, + -0.013481264933943748, + 0.02407030016183853, + -0.011932420544326305, + 0.005472318734973669, + -0.0048401374369859695, + -0.0038582810666412115, + -0.006357372272759676, + 0.022853350266814232, + -0.0023647528141736984, + -5.8186601563647855e-6, + 0.013560287654399872, + 0.0009003643644973636, + 0.01828584261238575, + 0.019360549747943878, + -0.02021399512887001, + -0.010304554365575314, + -0.01417666394263506, + -0.0011379262432456017, + -0.000830231758300215, + 0.016879238188266754, + 0.007598028052598238, + -0.008091920055449009, + -0.0022738769184798002, + -0.04817220941185951, + 0.014998499304056168, + 0.005831871647387743, + 0.014469048008322716, + -0.028195282444357872, + -0.01973985880613327, + -0.026219716295599937, + -0.009293063543736935, + -0.03004441224038601, + 0.03429583087563515, + -0.018665149807929993, + -0.011695352382957935, + -0.023406509310007095, + -0.01231963187456131, + -0.004539851564913988, + -0.004883599933236837, + 0.029127750545740128, + 0.015061717480421066, + -0.008297378197312355, + -0.0256823617964983, + 0.023943863809108734, + -0.008273671381175518, + -0.0054130516946315765, + -0.014785137958824635, + 0.0005842737155035138, + 0.007040918339043856, + 0.00902438722550869, + -0.012770060449838638, + 0.0007660258561372757, + 0.0010164289269596338, + 0.006187473889440298, + 0.01567019149661064, + -0.024497022852301598, + -0.014058129861950874, + -0.021541574969887733, + -0.010186020284891129, + -0.020134972408413887, + -0.011782277375459671, + -0.01632607914507389, + 0.02674126625061035, + -0.012983421795070171, + 0.0011468162992969155, + 0.0038128430023789406, + 0.011885006912052631, + -0.01254089456051588, + 0.021383529528975487, + 0.006768290419131517, + 0.005499976687133312, + -0.0003126333758700639, + 0.011371360160410404, + -0.0008855476044118404, + -0.0037338202819228172, + 0.030107630416750908, + -0.0028092553839087486, + -0.0022146098781377077, + 0.024354781955480576, + 0.0292383823543787, + 0.007677050773054361, + -0.013947498053312302, + -0.028542982414364815, + -0.006219082977622747, + 0.02454443648457527, + 0.00828157365322113, + -0.005563194863498211, + -0.015456831082701683, + 0.0035165080334991217, + -0.0140107162296772, + 0.012145781889557838, + 0.013204685412347317, + 0.008494934998452663, + 0.02226858399808407, + -0.012003540992736816, + -0.011173803359270096, + -0.0608474425971508, + -0.02024560421705246, + -0.019850490614771843, + -0.008494934998452663, + 0.0015695873880758882, + -0.020735543221235275, + 0.02054589055478573, + -0.0048598931171, + -0.019518595188856125, + -0.009948952123522758, + 0.024892136454582214, + 0.0208145659416914, + -0.013212587684392929, + 0.008008945733308792, + -0.0006060049636289477, + -0.029917975887656212, + -0.02508178912103176, + -0.004851990845054388, + -0.002271901350468397, + -0.022932372987270355, + -0.02541368454694748, + -0.0074439337477087975, + 0.02098841592669487, + 0.013062444515526295, + -0.010557426139712334, + -0.007416275795549154, + 0.0036133108660578728, + -0.0037456736899912357, + -0.01642090640962124, + 0.0076375394128263, + 0.016499929130077362, + 0.009214041754603386, + -0.005839773919433355, + -0.010549523867666721, + -0.021178070455789566, + 0.015172349289059639, + 0.009190334938466549, + -0.01411344576627016, + 0.015599071979522705, + 0.009000680409371853, + -0.00991734303534031, + 0.0012505335034802556, + -0.006566782481968403, + -0.0038997679948806763, + 0.014311002567410469, + -0.006223034113645554, + 0.017953947186470032, + -0.046591755002737045, + 0.016642170026898384, + -0.007617783732712269, + 0.033410776406526566, + -0.025366270914673805, + -0.015188153833150864, + -0.0159151628613472, + 0.00439365953207016, + 0.021889274939894676, + -0.006242789793759584, + 0.028384936973452568, + -0.010201824828982353, + 0.005618510767817497, + 0.07453416287899017, + 0.008076115511357784, + -0.01781170628964901, + -0.006981651298701763, + -0.03701420873403549, + 0.0035540438257157803, + 0.0070843808352947235, + 0.004899404477328062, + 0.011489893309772015, + -0.010494207963347435, + -0.013971204869449139, + 0.0039274259470403194, + -0.004302783403545618, + 0.0342010036110878, + -0.010462598875164986, + 0.006610244978219271, + 0.020672325044870377, + 0.048077382147312164, + -0.019581813365221024, + 0.012209000065922737, + -0.01855451799929142, + -0.01638929732143879, + -0.011039464734494686, + 0.013038737699389458, + -0.012335436418652534, + -0.025018570944666862, + -0.009948952123522758, + 0.005452563054859638, + -0.026520002633333206, + -0.0013028859393671155, + 0.013410144485533237, + 0.01111848745495081, + 0.007135745603591204, + 0.01642090640962124, + -0.03695099428296089, + 0.044631995260715485, + -0.024481218308210373, + 0.028369132429361343, + -0.011892909184098244, + 0.0030147142242640257, + -0.004255369771271944, + -0.0133864376693964, + 0.015725508332252502, + -0.02152577042579651, + -0.0219050794839859, + -0.00789831392467022, + 0.013694625347852707, + -0.010541621595621109, + 0.0011744741350412369, + -0.005456514190882444, + -0.019486986100673676, + 0.014927378855645657, + -0.007684953045099974, + 0.0013799330918118358, + -0.00948271807283163, + 0.004800626076757908, + -0.0051759835332632065, + -0.010320358909666538, + 0.0030364454723894596, + -0.026314543560147285, + 0.009711883962154388, + 0.0004825320793315768, + -0.014231979846954346, + -0.027357641607522964, + 0.03546536713838577, + 0.0072740353643894196, + 0.0031688082963228226, + -0.01845969259738922, + -0.01757463812828064, + -0.011861300095915794, + 0.004828284028917551, + -0.014808844774961472, + 0.012193195521831512, + -0.00394718162715435, + -0.008273671381175518, + -0.012612015008926392, + 0.024354781955480576, + -0.01858612708747387, + 0.009340477176010609, + -0.018807390704751015, + 0.007566418964415789, + 0.01435051392763853, + 0.0019814930856227875, + 0.010723373852670193, + -0.007171305827796459, + 0.00535773579031229, + -0.0021889274939894676, + -0.017147915437817574, + -0.011971931904554367, + -0.01435051392763853, + -0.010525817051529884, + 0.0005921759875491261, + 0.02139933407306671, + 0.0158519446849823, + -0.0023410459980368614, + -0.018949631601572037, + 0.016168035566806793, + -0.0012515212874859571, + 0.012770060449838638, + 0.004689994268119335, + -0.008155137300491333, + -0.014461145736277103, + 0.0034137784969061613, + 0.03306307643651962, + 0.038373399525880814, + -0.013987009413540363, + 0.009980561211705208, + 4.414156137499958e-5, + -0.02879585511982441, + -0.002240292262285948, + 0.01257250364869833, + -0.009190334938466549, + -0.004737407900393009, + -0.0059385523200035095, + 0.015235567465424538, + -0.01804877445101738, + -0.008692491799592972, + -0.027436664327979088, + 0.022837545722723007, + 0.006874970626085997, + -0.011497795581817627, + 0.0057488977909088135, + 0.006934237666428089, + 0.026014257222414017, + -0.018127797171473503, + 0.012303827330470085, + -0.003245855448767543, + -0.009830418042838573, + -0.031277164816856384, + 0.02139933407306671, + 0.0195027906447649, + -0.013101955875754356, + -0.04674980044364929, + 0.004642580635845661, + -0.0020121142733842134, + -0.004152640234678984, + -0.006570733617991209, + 0.023991277441382408, + 0.004614923149347305, + 0.0010915003949776292, + 0.019218308851122856, + -0.004508242476731539, + 0.03998546302318573, + -0.0005753837176598608, + -0.0018135699210688472, + -0.007092283107340336, + -0.030913662165403366, + 0.023675186559557915, + 0.011237021535634995, + -0.03201998025178909, + 0.01490367203950882, + -0.00595830800011754, + 0.026520002633333206, + -0.019660836085677147, + 0.011592622846364975, + -0.013394339941442013, + 0.02247404307126999, + -0.03726708143949509, + -0.012627819553017616, + -0.01902865432202816, + 0.03410617634654045, + -0.021810252219438553, + 0.030565962195396423, + -0.004954720381647348, + 0.03262054920196533, + -0.010043779388070107, + 0.007408373523503542, + -0.0464337095618248, + -0.0023627772461622953, + -0.0068236058577895164, + 0.011347653344273567, + -0.008645078167319298, + -0.019281527027487755, + 0.0041723959147930145, + -0.021336115896701813, + -0.007736317813396454, + 0.04725554585456848, + -0.0008727064123377204, + 0.007507151924073696, + 0.00645615067332983, + -0.015828236937522888, + 0.006290202960371971, + -0.007933874614536762, + 0.021272897720336914, + 0.01615223102271557, + 0.008929559960961342, + 0.008732003159821033, + 0.009522229433059692, + 0.0057488977909088135, + -0.009285161271691322, + -0.014555973000824451, + -0.010999953374266624, + -0.01614432781934738, + 0.003919523674994707, + 0.01774848811328411, + -0.0388791449368, + 0.03799409046769142, + -0.013425949029624462, + 0.01653153821825981, + 0.014966890215873718, + -0.007811389397829771, + 0.021857665851712227, + 0.013410144485533237, + 0.0011863275431096554, + 0.018744172528386116, + -0.027326032519340515, + 0.008249964565038681, + 0.03755156323313713, + 0.006637902930378914, + -0.004192151594907045, + 0.0015646484680473804, + 0.011237021535634995, + 0.004670238588005304, + -0.0018165332730859518, + -0.011561013758182526, + -0.010075388476252556, + 0.036287203431129456, + -0.013101955875754356, + -0.01882319524884224, + -0.011805984191596508, + -0.028179477900266647, + 0.003550092689692974, + -0.032162219285964966, + 0.0038286475464701653, + 0.005863480735570192, + 0.008186746388673782, + -0.014437438920140266, + -0.00924564991146326, + 0.02169962041079998, + 0.01129233743995428, + 0.031308773905038834, + 0.021889274939894676, + 0.0009581496706232429, + 0.01730596087872982, + -0.013544483110308647, + 0.027420859783887863, + -0.022078929468989372, + -0.0014885892160236835, + 0.02365938201546669, + -0.0007759036961942911, + -0.001900494797155261, + 0.00998846348375082, + -0.018886413425207138, + 0.01632607914507389, + 0.014690310694277287, + -0.00020595279056578875, + 0.03265215829014778, + -0.007511103060096502, + 0.009300965815782547, + -0.0023943863343447447, + 0.03303146734833717, + -0.016642170026898384, + -0.0026650389190763235, + -0.014397927559912205, + -0.006645805202424526, + 0.008249964565038681, + -0.012564601376652718, + -0.00013483240036293864, + 0.006282300688326359, + -0.014287295751273632, + 0.02007175423204899, + 0.029933780431747437, + -0.0004830259713344276, + -0.0003096700238529593, + -0.0171005018055439, + -0.02650419808924198, + -0.01307824905961752, + 0.009972658939659595, + 0.007195012643933296, + -0.009601252153515816, + -0.02896970510482788, + -0.008328987285494804, + -0.011924518272280693, + -0.024655068293213844, + -0.004907306749373674, + -0.011734863743185997, + -0.02116226591169834, + 0.021351920440793037, + 0.020198190584778786, + -0.00462282495573163, + 0.010683862492442131, + 0.027057357132434845, + 0.007214768324047327, + 0.005926698911935091, + 0.005152277182787657, + 0.02659902535378933, + 0.0031609060242772102, + 0.02710477076470852, + 0.01973985880613327, + -0.006720876786857843, + 0.013844768516719341, + -0.028068846091628075, + -0.007854851894080639, + 0.015124935656785965, + -0.003889890154823661, + 0.016610560938715935, + -0.017558833584189415, + 0.01653153821825981, + -0.007720513269305229, + -0.03473835811018944, + 0.0006455163238570094, + 0.029759930446743965, + 0.008534446358680725, + 0.004132884554564953, + -0.02288495935499668, + -0.009561740793287754, + -0.017558833584189415, + -0.011663743294775486, + -0.01015441119670868, + -0.0011053293710574508, + -0.00729379104450345, + -0.041123390197753906, + -0.013868475332856178, + -0.00828157365322113, + 0.002817157655954361, + 0.008534446358680725, + -0.017938142642378807, + 0.009767199866473675, + 0.026235520839691162, + -0.007479493971914053, + 0.008937462233006954, + 0.014081836678087711, + -0.05221816897392273, + -0.028653614223003387, + 0.008581859990954399, + 0.0003620225179474801, + -0.019660836085677147, + 0.010691764764487743, + -0.00425932090729475, + 0.0037338202819228172, + -0.00838430318981409, + -0.016009990125894547, + -0.012683135457336903, + 0.014840453863143921, + 0.01181388646364212, + 0.0157887265086174, + -0.006839410401880741, + -0.005148326046764851, + -0.040744081139564514, + -0.014097641222178936, + -0.03609754890203476, + 0.010873517021536827, + 0.008352694101631641, + 0.029048727825284004, + -0.013370633125305176, + 0.0069421399384737015, + 0.0021592939738184214, + 0.0027638173196464777, + -0.012461872771382332, + -0.013734136708080769, + 0.003550092689692974, + 0.006586538162082434, + 0.014911574311554432, + -0.014990597032010555, + -0.025935234501957893, + 0.01404232531785965, + -0.02318524569272995, + -0.0006583574577234685, + 0.014469048008322716, + 0.0013453606516122818, + -0.008455423638224602, + 0.0007709647761657834, + -0.013441753573715687, + -0.015354101546108723, + -0.01524346973747015, + -0.012169488705694675, + -0.030060216784477234, + -0.019376354292035103, + -0.00024571106769144535, + 0.002263999078422785, + -0.004085470922291279, + -0.0019429695094004273, + 0.0268993116915226, + -0.006843361537903547, + -0.00627044728025794, + 0.009711883962154388, + 0.009711883962154388, + -0.0004514169122558087, + -0.0005378479254432023, + -0.004512193612754345, + 0.0011270606191828847, + -0.024528631940484047, + -0.0097197862342, + -0.008573957718908787, + 0.00154390512034297, + -0.007029064930975437, + -0.00020200165454298258, + -0.04289349541068077, + 0.027183791622519493, + 0.0561060830950737, + 0.012564601376652718, + -0.02707316167652607, + -0.010826103389263153, + -0.005788409151136875, + -0.015591169707477093, + 0.00865298043936491, + 0.010233433917164803, + 0.03546536713838577, + -0.023517141118645668, + 0.016752801835536957, + 0.02274272032082081, + 0.0051443749107420444, + 0.012762158177793026, + 0.008064261637628078, + -0.006400834769010544, + 0.01626286283135414, + 0.034390658140182495, + 0.003676528809592128, + -0.009466913528740406, + -0.016160132363438606, + 0.014595484361052513, + 0.005207592621445656, + -0.026520002633333206, + 0.00988573394715786, + 0.02852717787027359, + -0.039700981229543686, + -0.014698212966322899, + 0.008249964565038681, + -0.003249806584790349, + 0.006993504706770182, + 0.006460101809352636, + 0.004658385179936886, + 0.006246740929782391, + 0.0057488977909088135, + 0.0075624678283929825, + -0.04545383155345917, + 0.008976973593235016, + -0.0011813886230811477, + 6.784835568396375e-5, + 0.01973985880613327, + -0.004204005002975464, + 0.010359869338572025, + -0.010280847549438477, + 0.0013522751396521926, + 0.01051001250743866, + -0.0008662858163006604, + -0.006863117218017578, + 0.019107677042484283, + -0.027910800650715828, + 0.0007694831001572311, + 0.0016999747604131699, + -0.025966843590140343, + -0.0195660088211298, + 0.0013305438915267587, + 0.0025109448470175266, + -0.017764292657375336, + -0.0031233704648911953, + -0.0006351445917971432, + 0.006246740929782391, + -0.00995685439556837, + -0.013125662691891193, + -0.008186746388673782, + 0.004417366348206997, + 0.0013463484356179833, + -0.02478150464594364, + -0.01953439973294735, + 0.017416592687368393, + -0.01626286283135414, + -0.00046154166921041906, + 0.01845969259738922, + 0.007463689427822828, + -0.000962100806646049, + -0.0005981026915833354, + 0.003820745274424553, + -0.004109177738428116, + 0.005614559631794691, + 0.0055315857753157616, + 0.005278713069856167, + -0.013631407171487808, + -0.015053815208375454, + -0.002127684885635972, + 0.0011073049390688539, + -0.013236294500529766, + 0.0034848989453166723, + -0.007009309250861406, + -0.0024161175824701786, + 0.008115626871585846, + 0.0008154149982146919, + -0.010502110235393047, + -0.010430989786982536, + -0.0021355871576815844, + -0.02007175423204899, + -0.015875650569796562, + -0.007432080339640379, + -0.007906216196715832, + 0.08155138045549393, + -0.0005230311653576791, + 0.00420795613899827, + 0.006550977937877178, + 0.005424905102699995, + -0.0208145659416914, + 0.011521502397954464, + 0.04030155390501022, + 0.014500657096505165, + 0.009174530394375324, + -0.03429583087563515, + -0.03051854856312275, + -0.015622778795659542, + 0.01291230134665966, + -0.03467513993382454, + 0.004504291340708733, + 0.011640036478638649, + 0.00937998853623867, + 0.007997092790901661, + -0.0013927742838859558, + 0.007665197364985943, + 0.020293017849326134, + -0.0010430989786982536, + 0.002955447183921933, + -0.0010589035227894783, + -0.014034423045814037, + 0.009869929403066635, + 0.021067438647150993, + 0.009609154425561428, + 0.020055949687957764, + -0.0025287249591201544, + 0.005361686926335096, + -0.015330394729971886, + -0.017226938158273697, + -0.0033387071453034878, + 0.005049547646194696, + -0.006950042210519314, + -0.009632861241698265, + 0.0053182244300842285, + 0.009593349881470203, + 0.008763612248003483, + -0.00862137135118246, + 0.021272897720336914, + 0.0014737724559381604, + 0.0019617374055087566, + 0.00862137135118246, + 0.009538033977150917, + -0.0015231616562232375, + 0.014469048008322716, + 0.008573957718908787, + -0.009593349881470203, + -0.0072503285482525826, + 0.0016792314127087593, + 0.0007699769921600819, + -0.010928832925856113, + -0.01997692696750164, + 0.006748534739017487, + -0.019882099702954292, + -0.0024338976945728064, + -0.012406556867063046, + -0.01629447191953659, + -0.005978063680231571, + -0.033884912729263306, + -0.03078722581267357, + -0.0012357167433947325, + 0.006337616592645645, + -0.01774848811328411, + -0.008273671381175518, + 0.0016179888043552637, + 0.010043779388070107, + -0.009451108984649181, + 0.011885006912052631, + 0.008431716822087765, + -0.015330394729971886, + -0.012596210464835167, + 0.019376354292035103, + 0.005823969375342131, + -0.0025879917666316032, + 0.011078976094722748, + -0.017969751730561256, + -0.00564616871997714, + 0.010802396573126316, + 0.013188880868256092, + -0.015749214217066765, + 0.016199644654989243, + 0.00865298043936491, + -0.002194854198023677, + 0.013560287654399872, + 0.002216585446149111, + 0.001682194764725864, + -0.01414505485445261, + 0.009893636219203472, + -0.007112038787454367, + -0.011568916030228138, + -0.0060096727684140205, + -0.012532992288470268, + -0.01071547158062458, + -0.017258547246456146, + 0.02520822547376156, + -0.015899358317255974, + 0.010320358909666538, + -0.0045477538369596004, + 0.024923745542764664, + 0.01435051392763853, + 0.016065305098891258, + -0.0039748395793139935, + 0.006772241555154324, + -0.006238838657736778, + -0.021083243191242218, + 0.0006647780537605286, + -0.008708296343684196, + -0.012856985442340374, + -0.007270084228366613, + 0.0097197862342, + -0.005314273294061422, + -0.0036251642741262913, + -0.006867068354040384, + -0.016721192747354507, + -0.025777189061045647, + -0.01015441119670868, + 0.012461872771382332, + -0.0010786592029035091, + 0.01902865432202816, + -0.001995322061702609, + -0.005361686926335096, + 0.0036291154101490974, + -0.022853350266814232, + -0.00672482792288065, + -0.0007067588740028441, + 0.010660155676305294, + 0.020703934133052826, + 0.0020921246614307165, + 0.015654386952519417, + -0.014326807111501694, + -0.001143852947279811, + 0.015875650569796562, + 0.018270038068294525, + 0.0058437250554561615, + 0.01514074020087719, + -0.00035362638300284743, + 0.005069303326308727, + 0.029586080461740494, + 0.0070843808352947235, + 0.004848039709031582, + -0.004109177738428116, + 0.003370316233485937, + 0.009640763513743877, + -0.008008945733308792, + 0.03268376737833023, + 0.009387890808284283, + 0.031213948503136635, + -0.01157681830227375, + -0.0010687813628464937, + -0.0029179113917052746, + -0.005456514190882444, + 0.011956127360463142, + -0.004488486796617508, + 0.002854693215340376, + 0.007353057619184256, + -0.0060096727684140205, + -0.0027598661836236715, + -0.02007175423204899, + -0.023817427456378937, + -0.006491710897535086, + 0.006673463154584169, + 0.009743493050336838, + 0.021383529528975487, + -0.004492437932640314, + 0.019613422453403473, + 0.0001634781074244529, + -0.014050227589905262, + 0.012161586433649063, + -0.0002884326968342066, + -0.03217802569270134, + -0.01181388646364212, + -0.001247570151463151, + 0.01144247967749834, + 0.014887867495417595, + -0.0014006765559315681, + 0.009996365755796432, + -0.004974476061761379, + -0.006649756338447332, + 0.013125662691891193, + -0.02342231385409832, + 0.003723942441865802, + -0.00998846348375082, + 0.026456784456968307, + -0.0011971931671723723, + 0.010351967066526413, + 0.004109177738428116, + -0.011987736448645592, + 0.0028527178801596165, + -0.02457604557275772, + -0.015867749229073524, + -0.01929733157157898, + 0.007724464405328035, + 0.007858802564442158, + 0.03102429397404194, + -0.003990644123405218, + 0.0206565223634243, + -0.03318951278924942, + 0.010083290748298168, + 0.012461872771382332, + -0.0072503285482525826, + 0.006076842080801725, + -0.014603386633098125, + 0.009601252153515816, + -0.021209679543972015, + -0.02271111123263836, + 0.0017345472006127238, + -0.015354101546108723, + -0.018949631601572037, + 0.01582033559679985, + 0.004488486796617508, + -0.02241082489490509, + 0.025034375488758087, + -0.00622698524966836, + -0.00922984629869461, + 0.009324672631919384, + -0.0015527951763942838, + -0.00015248902491293848, + 0.013323219493031502, + 0.004460828844457865, + -0.028100455179810524, + 0.021778643131256104, + 0.018507104367017746, + 0.019170895218849182, + -0.0020387843251228333, + 0.03404295817017555, + -0.003826671978458762, + 0.03306307643651962, + -0.008202550932765007, + 0.006017575040459633, + 0.0219682976603508, + 0.0025603340473026037, + 0.007831145077943802, + 0.014168761670589447, + -0.018143601715564728, + 0.017258547246456146, + -0.0231536366045475, + -0.0005077205714769661, + 0.009735590778291225, + 0.0019874197896569967, + 0.011379262432456017, + 0.010162313468754292, + -0.00434229476377368, + -0.016879238188266754, + -0.0010756958508864045, + 0.014919476583600044, + -3.528238084982149e-5, + 0.008479130454361439, + -0.021367724984884262, + -0.017211133614182472, + 0.02143094316124916, + 0.011616329662501812, + 0.013378535397350788, + 0.005160179454833269, + -0.011695352382957935, + -0.0009220955544151366, + 0.0013680796837434173, + -0.024244150146842003, + 0.008763612248003483, + 0.009372086264193058, + -0.012580405920743942, + 0.010889321565628052, + 0.024259954690933228, + 0.005290566477924585, + -0.0005981026915833354, + -0.0255559254437685, + 0.013030835427343845, + -0.00745183601975441, + 0.0002674422867130488, + 0.005428856238722801, + 0.0048638442531228065, + -0.016247058287262917, + -0.0020140898413956165, + -0.004895453341305256, + -0.0013542507076635957, + -0.013244196772575378, + 0.010557426139712334, + -0.017021479085087776, + -0.02199990674853325, + -0.025097593665122986, + -0.01811199262738228, + 0.004824332892894745, + -0.021920884028077126, + -0.009767199866473675, + 0.012398654595017433, + -0.004543802700936794, + 0.015638582408428192, + 0.006021526176482439, + -0.02143094316124916, + 0.009696079418063164, + 0.002799377543851733, + -0.0011665718629956245, + 0.005733093246817589, + -0.002949520479887724, + 0.004512193612754345, + 0.02407030016183853, + -0.009174530394375324, + 0.011363457888364792, + 0.02152577042579651, + -0.003348584985360503, + -0.02261628396809101, + 0.024512827396392822, + 0.007665197364985943, + 0.03796248137950897, + -0.01724274270236492, + 0.0006040293956175447, + 0.011837593279778957, + -0.013244196772575378, + 0.0065114665776491165, + 0.006626049522310495, + -0.001762205152772367, + -0.0002295361045980826, + 0.017211133614182472, + -0.005606657359749079, + 0.022553065791726112, + -0.006633951794356108, + 0.0019992731977254152, + -0.019866295158863068, + 0.005041645374149084, + -0.015330394729971886, + 0.004204005002975464, + 0.010312456637620926, + 0.021067438647150993, + 0.022315997630357742, + 0.03767799958586693, + 0.00575284892693162, + 0.011877104640007019, + -0.005883236415684223, + 0.0028981557115912437, + -0.008779416792094707, + 0.004638629499822855, + -0.010351967066526413, + 0.0008677674923092127, + -0.014603386633098125, + 0.0033841452095657587, + -0.024655068293213844, + -0.011537306942045689, + 0.00279740197584033, + 0.006238838657736778, + -0.0011023660190403461, + -0.02653580717742443, + 0.0020308822859078646, + 0.024686677381396294, + 0.017953947186470032, + -0.023770013824105263, + -0.009656568057835102, + 0.02247404307126999, + 0.01736917905509472, + -0.006242789793759584, + 0.0013433850836008787, + -0.023975472897291183, + -0.002633429830893874, + 0.0033505605533719063, + -0.004867795389145613, + 0.003575775073841214, + -0.014603386633098125, + -0.02386484108865261, + -0.019123481586575508, + 0.037804435938596725, + -0.003907670266926289, + -0.011458284221589565, + 0.010834005661308765, + 0.0031727594323456287, + 0.008463325910270214, + -0.0008657919242978096, + -0.021652206778526306, + 0.014058129861950874, + -0.003127321368083358, + -0.007661246228963137, + -0.018633540719747543, + -0.005476269870996475, + -0.0012969592353329062, + -0.015630681067705154, + 0.018428083509206772, + 0.010304554365575314, + -0.000622797291725874, + 0.0032853668089956045, + 0.015251372009515762, + -0.010549523867666721, + -0.01355238538235426, + 0.013425949029624462, + 0.013220489956438541, + -0.008147235959768295, + 0.024449609220027924, + 0.027262814342975616, + -0.03331594914197922, + 0.023327486589550972, + -0.013860573060810566, + 0.010976246558129787, + 0.014895769767463207, + -0.028416546061635017, + 0.011995638720691204, + -0.009103409945964813, + -0.005551341455429792, + -0.002242267830297351, + -0.014271491207182407, + -0.008803123608231544, + -0.0060807932168245316, + -0.007357008755207062, + 0.015290883369743824, + 0.001861971220932901, + -0.010004268027842045, + -0.03470674902200699, + 0.007815340533852577, + 0.01414505485445261, + 0.006246740929782391, + -0.01260411273688078, + 0.018807390704751015, + -0.009964756667613983, + -0.010660155676305294, + 0.008408010005950928, + 0.00800104346126318, + -0.009332574903964996, + 0.016879238188266754, + -0.005812115967273712, + 0.026520002633333206, + -0.0020407598931342363, + 0.0034888500813394785, + -0.008969071321189404, + 0.019992731511592865, + -0.010241336189210415, + -0.014026520773768425, + 0.025808798149228096, + 0.025334661826491356, + 0.0016525612445548177, + -0.004484535660594702, + 0.008494934998452663, + -0.01171115692704916, + -0.014674507081508636, + 0.004271174315363169, + -0.004144737962633371, + -0.017859119921922684, + 0.0035896040499210358, + -0.008392205461859703, + -0.005630364175885916, + 0.007262181956321001, + 0.020103363320231438, + -0.0065114665776491165, + -0.0045477538369596004, + -0.01239075232297182, + -0.01626286283135414, + -0.004350197035819292, + 0.005100912414491177, + 0.0015972453402355313, + 0.016642170026898384, + -0.0116084273904562, + -0.012446068227291107, + -0.01294391043484211, + -0.002147440565750003, + 0.007123892195522785, + 0.0022521456703543663, + -0.027800168842077255, + -0.025002768263220787, + 0.00040746055310592055, + -0.01061274204403162, + -0.022790133953094482, + 0.008573957718908787, + 0.004867795389145613, + 0.0025504562072455883, + -0.0012406556634232402, + -0.017669465392827988, + 0.013062444515526295, + -0.007870656438171864, + 0.02241082489490509, + 0.017653660848736763, + -0.0085186418145895, + 0.025634948164224625, + -0.009672372601926327, + 0.0183174517005682, + -0.00389581685885787, + -8.291204721899703e-5, + -0.002263999078422785, + 0.017590442672371864, + -0.012335436418652534, + 0.010525817051529884, + 0.017827510833740234, + -0.024212541058659554, + 0.007803487125784159, + -0.003640968818217516, + 0.0085186418145895, + -0.011031562462449074, + 0.015456831082701683, + -0.011157998815178871, + -0.012825376354157925, + 0.012343338690698147, + 0.002605771878734231, + 0.010731276124715805, + 0.014611288905143738, + 0.021889274939894676, + -0.0038760611787438393, + 0.0007368862279690802, + -0.017384983599185944, + 0.0018846902530640364, + 0.006867068354040384, + 0.01291230134665966, + -0.009182432666420937, + 0.0014263589400798082, + 0.007246377412229776, + 0.00041116474312730134, + 0.020861979573965073, + 0.0054841721430420876, + -0.003569848369807005, + 0.004247467499226332, + -0.005393296014517546, + 0.014532266184687614, + 0.034453876316547394, + -0.007234524004161358, + 0.02004014514386654, + 0.005997819360345602, + -0.020166581496596336, + 0.008431716822087765, + -0.006408737041056156, + -0.00041067085112445056, + 0.03600272163748741, + 0.010565328411757946, + 0.011331848800182343, + -0.016468320041894913, + 0.0006124255596660078, + -0.016247058287262917, + 0.008668784983456135, + 0.0008164027822203934, + -0.016879238188266754, + -0.005701484624296427, + -0.00295347161591053, + -0.00499423174187541, + -0.008084017783403397, + -0.005547390319406986, + -0.02149416133761406, + 0.0003197948099114001, + 0.0036864066496491432, + -0.005788409151136875, + 0.010217629373073578, + 0.027831777930259705, + -0.008265769109129906, + -0.022047320380806923, + 0.04045959934592247, + -0.01451646164059639, + 0.005369589198380709, + 0.0039787907153368, + 0.013291610404849052, + -0.012129977345466614, + -0.0048598931171, + -0.016436710953712463, + -0.005689631216228008, + 0.016926651820540428, + -0.010399380698800087, + 0.0007541724480688572, + -0.010438892059028149, + 0.009585447609424591, + 0.013568189926445484, + 0.027926605194807053, + 0.015132837928831577, + -0.02071973867714405, + -0.021004220470786095, + 0.010636448860168457, + 0.01108687836676836, + -0.00012013912783004344, + 0.008463325910270214, + -0.005452563054859638, + -0.009387890808284283, + 0.013923791237175465, + -0.007578272372484207, + -0.004923111293464899, + -0.005424905102699995, + 0.015251372009515762, + -0.0030166897922754288, + 0.01855451799929142, + -0.017922338098287582, + -0.005353784654289484, + -0.03001280315220356, + -0.003986692987382412, + 0.013086151331663132, + -0.004247467499226332, + 0.0024655067827552557, + 0.006179571617394686, + 0.0280214324593544, + -0.0023133880458772182, + 0.0033070980571210384, + -0.006788046099245548, + -0.01977146789431572, + -0.0006756436778232455, + -0.003617262002080679, + 0.01629447191953659, + -0.004421317484229803, + -0.006788046099245548, + 0.02764212340116501, + -0.008471228182315826, + 0.0243073683232069, + -0.0040459600277245045, + -0.03476996719837189, + -0.003301171353086829, + -0.004294881131500006, + 0.0061045000329613686, + -0.0103440647944808, + -0.012224804610013962, + -0.014998499304056168, + -0.013789452612400055, + 0.0016703413566574454, + 0.012137879617512226, + 0.0018827146850526333, + 0.012003540992736816, + -0.01855451799929142, + -0.0037436981219798326, + 0.021178070455789566, + -0.00768890418112278, + -0.01804877445101738, + -0.016610560938715935, + 0.0014915525680407882, + -0.004330441355705261, + -0.008147235959768295, + -0.006361323408782482, + 0.02098841592669487, + 0.0034118029288947582, + 0.00912711676210165, + 0.00838430318981409, + 0.020229799672961235, + -0.021099047735333443, + -0.013631407171487808, + -0.005535536911338568, + -0.004689994268119335, + -0.015077522024512291, + 0.01706889271736145, + 0.018475497141480446, + -0.012303827330470085, + -0.0035540438257157803, + 0.010288749821484089, + 0.0009003643644973636, + -0.012485579587519169, + -0.011861300095915794, + 0.006045232992619276, + -0.011284435167908669, + 0.0020051999017596245, + -0.012248511426150799, + 3.207208283129148e-5, + -0.014571777544915676, + 0.04248257726430893, + -0.015875650569796562, + -0.003567872801795602, + -0.025777189061045647, + 0.0022047320380806923, + 0.019581813365221024, + 0.00690262857824564, + 0.0015755140921100974, + 0.004879648797214031, + 0.0011685474310070276, + 0.00695399334654212, + 0.007151550147682428, + -0.010999953374266624, + 0.0006405774038285017, + -0.011339751072227955, + 0.007317497860640287, + -0.0009048093925230205, + -0.009293063543736935, + -0.00012779443932231516, + -0.005286615341901779, + 0.027736950665712357, + -0.025745579972863197, + 0.008242062292993069, + -0.02460765466094017, + -0.013101955875754356, + 0.0009477779385633767, + -0.01197983417659998, + -0.0017207182245329022, + 0.027831777930259705, + 0.003964961506426334, + -0.0039511327631771564, + -0.005476269870996475, + 0.0007215755758807063, + 0.0078943632543087, + 0.003526385873556137, + -0.006716925650835037, + -0.01882319524884224, + -0.01713211089372635, + -0.01852290891110897, + -0.02146255224943161, + 0.00037930873804725707, + -0.04769807308912277, + 7.494804594898596e-5, + 0.009869929403066635, + -0.01503801066428423, + -0.01801716536283493, + -9.91641718428582e-6, + -0.006637902930378914, + -0.004369952715933323, + -0.0066932188346982, + -0.004085470922291279, + 0.006420590449124575, + -0.0004165975551586598, + -0.02920677326619625, + -0.005598755087703466, + -0.0057251909747719765, + 0.018175210803747177, + 0.00352836144156754, + -0.003907670266926289, + 0.009237748570740223, + 0.011371360160410404, + -0.01064435113221407, + -0.014611288905143738, + -0.005887187551707029, + -0.015425221994519234, + -0.009672372601926327, + -0.013504971750080585, + -0.006179571617394686, + 0.011102682910859585, + 0.014595484361052513, + 0.014658702537417412, + -0.006163767073303461, + 0.0053182244300842285, + -0.013765745796263218, + -0.012817474082112312, + 0.00807216390967369, + -0.0061045000329613686, + -0.0128095718100667, + -0.005274761933833361, + -0.007455787155777216, + -0.0097197862342, + 0.011655841022729874, + 0.014958987943828106, + 0.0038622322026640177, + -0.004907306749373674, + 0.011964029632508755, + -0.009348379448056221, + -0.018143601715564728, + -0.014745626598596573, + 0.0017908508889377117, + -0.03113492578268051, + 0.014445341192185879, + 0.004373903851956129, + -0.002240292262285948, + -0.0028922290075570345, + -0.0024793357588350773, + -0.009530131705105305, + 0.003623188706114888, + -0.00171281595248729, + 0.0002783079107757658, + 0.02484472282230854, + 0.0043146368116140366, + 0.005452563054859638, + -0.018159406259655952, + -0.0027361593674868345, + 0.022078929468989372, + 0.020861979573965073, + -0.007886460982263088, + 0.005496025551110506, + 0.00040918917511589825, + -0.015132837928831577, + 0.00038943352410569787, + -0.014879965223371983, + -0.023327486589550972, + 0.02294817753136158, + -0.006471955217421055, + 0.008510739542543888, + 0.009980561211705208, + 0.0016160132363438606, + -0.02633034810423851, + 0.02410190925002098, + 0.00540910055860877, + -0.0011774374870583415, + 0.001684170332737267, + 0.015267176553606987, + 0.009119214490056038, + 0.007989190518856049, + -0.004867795389145613, + -0.007380715571343899, + -0.006614196114242077, + -0.01740078814327717, + 0.02217375673353672, + -0.011363457888364792, + -0.012983421795070171, + -0.017147915437817574, + -0.0015320517122745514, + -0.0032616599928587675, + 0.0003318951348774135, + -0.009348379448056221, + 0.014579679816961288, + 0.0018560445168986917, + 0.027910800650715828, + 0.0005373540334403515, + 0.025998452678322792, + -0.0140107162296772, + 0.014808844774961472, + 0.0023390704300254583, + -0.012382850050926208, + 0.02825850062072277, + 0.025634948164224625, + 0.018333256244659424, + -0.0032083196565508842, + 0.01845969259738922, + 0.008487032726407051, + -0.002649234374985099, + -0.001385859795846045, + 0.024481218308210373, + 0.024481218308210373, + 0.009996365755796432, + -0.028542982414364815, + -0.0030858346726745367, + -0.004658385179936886, + -0.011719059199094772, + -0.003702211193740368, + 0.004883599933236837, + -0.01828584261238575, + 0.0026709656231105328, + 0.020087558776140213, + -0.007831145077943802, + 0.014603386633098125, + -0.007230572868138552, + -0.00995685439556837, + -0.01058113295584917, + -0.0026215764228254557, + -0.020498476922512054, + 0.03200417384505272, + 0.026377761736512184, + 0.0027124525513499975, + -0.001385859795846045, + 0.0015162471681833267, + 0.0012080587912350893, + -0.009214041754603386, + -0.010525817051529884, + -0.011047367006540298, + 0.013884279876947403, + 0.015314590185880661, + -0.017226938158273697, + 0.00881892815232277, + 0.010083290748298168, + -0.008400107733905315, + -0.0005645180935971439, + -0.015456831082701683, + 0.0183174517005682, + -0.014958987943828106, + -0.007601979188621044, + 0.025192420929670334, + 0.010178118012845516, + -0.0035066301934421062, + 0.003301171353086829, + 0.011157998815178871, + -0.010897223837673664, + -0.015464733354747295, + 0.010272945277392864, + -0.02217375673353672, + 0.014445341192185879, + 0.009435304440557957, + 0.0030818835366517305, + -0.007499249652028084, + 0.008502837270498276, + -0.004417366348206997, + -0.034833185374736786, + -0.007629637140780687, + -0.00844752136617899, + -0.005618510767817497, + -0.002570211887359619, + 0.0031865884084254503, + -0.009451108984649181, + 0.0072740353643894196, + 0.008637175895273685, + 0.0013700552517548203, + -0.005582950543612242, + -0.0038405009545385838, + 0.0033762429375201464, + 0.005737044382840395, + 0.014358416199684143, + -0.009901538491249084, + 0.0076375394128263, + -0.02980734407901764, + 0.014263588935136795, + 0.015219762921333313, + -0.011134291999042034, + -5.028433588449843e-5, + -0.016183840110898018, + -0.0039787907153368, + 0.0040775686502456665, + 0.016879238188266754, + -0.0031727594323456287, + 0.001200156519189477, + 0.02998119406402111, + -0.00844752136617899, + -0.015899358317255974, + 0.02977573499083519, + -0.010841907933354378, + 0.0005566158215515316, + 0.0020140898413956165, + 0.018428083509206772, + 0.012074661441147327, + -0.020846175029873848, + 0.02697833441197872, + 0.006791997235268354, + -0.0039056946989148855, + 0.009387890808284283, + 0.010193922556936741, + -0.002775670727714896, + 0.00961705669760704, + 0.0059859659522771835, + 0.016049500554800034, + 0.022869154810905457, + -0.0012199121993035078, + 0.020356236025691032, + -0.02784758247435093, + 0.02636195719242096, + 0.003846427658572793, + -0.0053893448784947395, + -0.0032083196565508842, + -0.004089422058314085, + -0.01125282607972622, + -0.013931693509221077, + -0.0365716852247715, + 0.002516871551051736, + -0.006957944482564926, + 0.041186608374118805, + 0.0009981548646464944, + -0.012888594530522823, + 0.017021479085087776, + -0.017464006319642067, + 0.014714017510414124, + 0.008842634968459606, + 0.003042372176423669, + -0.0390687994658947, + -0.01561487652361393, + -0.024828918278217316, + -0.024591850116848946, + -0.005211543757468462, + -0.00235289940610528, + -0.005563194863498211, + -0.0017483761766925454, + -0.01314936950802803, + -0.024449609220027924, + 0.003504654625430703, + -0.012532992288470268, + 0.001560697448439896, + 0.02143094316124916, + 0.010304554365575314, + 0.0047453101724386215, + -0.013757843524217606, + -0.009166628122329712, + -0.004765065852552652, + 0.00368443108163774, + 0.0014925403520464897, + -0.006068939808756113, + -0.008289475925266743, + 0.026314543560147285, + -0.013433851301670074, + 0.007590125780552626, + -0.02686770260334015, + -0.012762158177793026, + 0.01896543614566326, + 0.007096234243363142, + -0.0006692230817861855, + 0.007416275795549154, + -0.015662290155887604, + -0.003176710568368435, + -4.448111212695949e-5, + 0.004464779980480671, + 0.012643624097108841, + -0.0097830044105649, + -0.004516144748777151, + -0.005025840830057859, + 0.0031411503441631794, + 0.0008593713282607496, + -0.015132837928831577, + 0.01653153821825981, + 0.0008514690562151372, + 0.010604839771986008, + -0.03287342190742493, + -0.03135618939995766, + -0.0008578896522521973, + 0.011165901087224483, + -0.01683182455599308, + -0.018301647156476974, + -0.00878731906414032, + 0.013402242213487625, + 0.012035150080919266, + 0.01909187249839306, + 0.023090418428182602, + 0.01686343364417553, + 0.035781458020210266, + -0.004132884554564953, + -0.015630681067705154, + -0.01754302904009819, + 0.004251418635249138, + -0.01088141929358244, + -0.01061274204403162, + 0.011900811456143856, + 0.011078976094722748, + -0.01899704523384571, + 0.008194648660719395, + 0.011750668287277222, + 0.0008776453323662281, + 0.01991370879113674, + -0.0028349377680569887, + -0.008439619094133377, + -0.017353374511003494, + 0.009877831675112247, + 0.008510739542543888, + -0.0006529246456921101, + -0.007048820611089468, + 0.010233433917164803, + 0.01122121699154377, + 0.00783509574830532, + -0.009435304440557957, + 0.0008648041402921081, + 0.021099047735333443, + -0.009624958969652653, + 0.004362050443887711, + 0.0058042136952281, + 0.0021355871576815844, + -0.008534446358680725, + 0.025097593665122986, + -0.022284388542175293, + 0.003617262002080679, + -0.013497069478034973, + 0.0024101908784359694, + -0.03160906210541725, + -0.001042111194692552, + -0.020087558776140213, + -0.009735590778291225, + -0.008866341784596443, + 0.0010282822186127305, + 0.005108814686536789, + -0.012122075073421001, + 0.002625527558848262, + 0.004828284028917551, + -0.033442385494709015, + 0.0069184331223368645, + -0.010628546588122845, + 0.0046267760917544365, + -0.0037654293701052666, + -0.0069895535707473755, + 0.010936735197901726, + -0.02737344615161419, + -0.012335436418652534, + -0.03514927625656128, + 0.019139286130666733, + -0.02324846386909485, + -0.025698166340589523, + -0.009427402168512344, + -0.013260001316666603, + 0.004666287451982498, + -0.01047840341925621, + 0.011719059199094772, + 0.00465443404391408, + -0.012888594530522823, + -0.0014046276919543743, + -0.0031648571603000164, + -0.012027247808873653, + 0.01656314730644226, + 0.005337980110198259, + -0.021035829558968544, + -0.003802965162321925, + 0.007230572868138552, + -0.02849556878209114, + -0.03714064508676529, + 0.014690310694277287, + -0.0032656111288815737, + 0.002977178432047367, + -0.0040775686502456665, + -0.02237921580672264, + -0.012928105890750885, + 0.023517141118645668, + 0.02454443648457527, + -0.016847629100084305, + 0.012754255905747414, + 0.008660882711410522, + -0.0059622591361403465, + -0.01267523318529129, + 0.004539851564913988, + -0.0056935823522508144, + 0.015464733354747295, + 0.001225838903337717, + -0.008826830424368382, + 0.01713211089372635, + -0.0022857303265482187, + 0.0059385523200035095, + 0.030850443989038467, + 0.006977700162678957, + -0.014911574311554432, + 0.011782277375459671, + 0.004429219756275415, + -0.01480094250291586, + -0.025872016325592995, + 0.006788046099245548, + -0.027057357132434845, + 0.013062444515526295, + 0.002904082415625453, + -0.003151028184220195, + -0.006780143827199936, + 0.028511373326182365, + 0.0019251893972977996, + -0.01600208692252636, + -0.012280120514333248, + -0.02514500729739666, + -0.012359143234789371, + 0.008882146328687668, + 0.012904399074614048, + 0.01208256371319294, + -0.008700394071638584, + -0.012438165955245495, + 0.013599798083305359, + 0.028416546061635017, + -0.005713337566703558, + -0.014579679816961288, + 0.006503564305603504, + -0.004800626076757908, + -0.02460765466094017, + -0.002311412477865815, + 0.010968344286084175, + 0.008913755416870117, + -0.012295925058424473, + 0.0011418773792684078, + 0.014935281127691269, + -0.012469775043427944, + 0.0031371992081403732, + 0.002973227296024561, + -0.013734136708080769, + -0.02250565215945244, + 0.016183840110898018, + -0.007922020740807056, + 0.003178686136379838, + 0.019281527027487755, + 0.006258593872189522, + 0.00575284892693162, + -0.008842634968459606, + -0.0052471039816737175, + -0.011276532895863056, + -0.015045912936329842, + 0.0207513477653265, + 0.02859039604663849, + -0.010660155676305294, + 0.005148326046764851, + 0.0019637129735201597, + 0.029759930446743965, + 0.017290156334638596, + -0.020166581496596336, + 0.024955354630947113, + 0.004820381756871939, + -0.01215368416160345, + 0.014342611655592918, + 0.004867795389145613, + 0.001109280507080257, + 0.0025998451747000217, + 0.025666557252407074, + 0.012343338690698147, + 0.008771514520049095, + -0.013038737699389458, + -0.0051443749107420444, + -0.009119214490056038, + 0.008368498645722866, + 0.018206819891929626, + 0.011908713728189468, + 0.006863117218017578, + 0.008771514520049095, + -0.019170895218849182, + 0.006373176816850901, + 0.005353784654289484, + -0.013299512676894665, + -0.01642090640962124, + -0.0116084273904562, + 0.015306687913835049, + -0.01991370879113674, + -6.074866541894153e-5, + 0.014879965223371983, + -0.0046741897240281105, + 0.004271174315363169, + 0.01754302904009819, + 0.009348379448056221, + -0.0009813625365495682, + 0.001038160058669746, + 0.00672482792288065, + 0.007163403555750847, + -0.009522229433059692, + -0.010604839771986008, + -0.013497069478034973, + 0.006179571617394686, + 0.021004220470786095, + 0.01002007257193327, + -0.0006252667517401278, + 0.011023660190403461, + 0.009324672631919384, + 0.028622005134820938, + -0.006183522753417492, + -0.01970824971795082, + -0.018032969906926155, + 0.014287295751273632, + 0.0195660088211298, + -0.0006751497858203948, + 0.028416546061635017, + -0.003480947809293866, + -0.008779416792094707, + -0.013165174052119255, + -0.007301693316549063, + 0.0023410459980368614, + -0.012517187744379044, + -0.003431558609008789, + -0.00604128185659647, + -0.02105163410305977, + -0.0018688857089728117, + 0.009166628122329712, + -0.014824649319052696, + 0.005266859661787748, + 0.01081820111721754, + -0.0183174517005682, + 0.010399380698800087, + 0.021857665851712227, + 0.0010144533589482307, + -0.021715424954891205, + -0.002149416133761406, + 0.03069239854812622, + -0.006385030224919319, + 0.0038642077706754208, + -0.015093326568603516, + -0.011181705631315708, + -0.012003540992736816, + -0.006412688177078962, + -0.023027200251817703, + -0.0023252414539456367, + 0.014674507081508636, + -0.027800168842077255, + -0.021557379513978958, + -0.0039689126424491405, + 0.0031451014801859856, + 0.022300193086266518, + 0.019218308851122856, + 0.00342563190497458, + -0.03543375805020332, + 0.011821788735687733, + 0.026219716295599937, + 0.007309595588594675, + -0.008016848005354404, + -0.001474760239943862, + 0.007115989923477173, + -0.010462598875164986, + -0.0022086831741034985, + -0.013473362661898136, + 0.007123892195522785, + -0.002194854198023677, + 0.007507151924073696, + -0.0037654293701052666, + -0.008692491799592972, + -0.03190934658050537, + -0.006258593872189522, + -0.019107677042484283, + 0.024180931970477104, + -0.013504971750080585, + -0.009759297594428062, + -0.026709657162427902, + -0.014943183399736881, + 0.0058042136952281, + -0.012019345536828041, + 0.0016436711885035038, + -0.02226858399808407, + 0.003638993250206113, + -0.009672372601926327, + -0.011616329662501812, + 0.0041961027309298515, + 0.01331531722098589, + 0.0020407598931342363, + -0.010944637469947338, + -0.025429489091038704, + -0.00954593624919653, + -0.0002197817520936951, + -0.03227285295724869, + 0.0007699769921600819, + -0.01348916720598936, + -0.006045232992619276, + 0.0014085788279771805, + -0.02051428146660328, + 0.007238475140184164, + -0.02041945420205593, + 0.0022047320380806923, + -0.01778009720146656, + -0.011078976094722748, + 0.01032826118171215, + 0.021841861307621002, + -0.0009290100424550474, + -0.006179571617394686, + -0.018744172528386116, + 0.0018175210570916533, + 0.03227285295724869, + 0.006756437011063099, + 0.006025477312505245, + 0.004903355613350868, + 0.0006968810339458287, + -0.012920203618705273, + -0.013109858147799969, + 0.019929513335227966, + 0.005349833518266678, + 0.05300839617848396, + -0.014129250310361385, + 0.021920884028077126, + -0.009640763513743877, + -0.02829010970890522, + -0.01132394652813673, + 0.01461919117718935, + 0.017495615407824516, + -0.0031411503441631794, + 0.0005521707935258746, + -0.01730596087872982, + -0.02163640223443508, + 0.02288495935499668, + 0.022047320380806923, + 0.0015527951763942838, + 0.012129977345466614, + 0.0031609060242772102, + 0.008431716822087765, + 0.0031865884084254503, + 0.014453243464231491, + -0.00604128185659647, + -0.026962529867887497, + -0.012770060449838638, + -0.005168081261217594, + 0.005239201709628105, + -0.005041645374149084, + -0.00014755010488443077, + -0.02386484108865261, + 0.001838264404796064, + -0.027468273416161537, + 0.00954593624919653, + 0.011561013758182526, + 0.0027164036873728037, + 0.003119419328868389, + 0.005851627327501774, + 0.01390798669308424, + -0.00272035482339561, + 0.00653912452980876, + -0.009538033977150917, + -0.006574684754014015, + -0.00922984629869461, + -0.006728779058903456, + 0.012090465985238552, + -0.0048164306208491325, + -0.015520049259066582, + 0.0023608016781508923, + 0.002129660453647375, + 0.016231253743171692, + -0.011971931904554367, + -0.0018945680931210518, + -0.00347699667327106, + -0.005025840830057859, + -0.011268630623817444, + 0.007519005332142115, + 0.015354101546108723, + -0.0034947767853736877, + 0.02095680683851242, + 3.0443786727119004e-6, + -0.02383323200047016, + 0.01567019149661064, + -0.002744061639532447, + -0.0014480900717899203, + 0.023280072957277298, + 0.02484472282230854, + -0.00650751544162631, + -0.012904399074614048, + -0.026077475398778915, + 0.009253552183508873, + 0.006788046099245548, + -0.0006642841617576778, + 0.002520822687074542, + 0.01973985880613327, + 0.0017562784487381577, + -0.016610560938715935, + 0.0036370176821947098, + 0.022063124924898148, + -0.018396474421024323, + -0.004927062429487705, + -0.03281020373106003, + -0.010968344286084175, + -0.013038737699389458, + 0.0060807932168245316, + 0.0027578906156122684, + -0.0012100343592464924, + -0.011268630623817444, + -0.01411344576627016, + -0.0011734863510355353, + 0.0029850807040929794, + -0.0007704708841629326, + 0.013323219493031502, + -0.029111946001648903, + -0.019518595188856125, + 0.02511339820921421, + 0.010162313468754292, + -0.0017315838485956192, + -0.02264789305627346, + -0.04254579544067383, + 0.02018238604068756, + 0.014935281127691269, + -0.004377854987978935, + -0.004559607245028019, + 0.016452515497803688, + 0.00010402591578895226, + -0.007364911027252674, + -0.004160542506724596, + -0.012209000065922737, + -0.019692445173859596, + -0.003366365097463131, + 0.012517187744379044, + -0.0030779324006289244, + 0.0003096700238529593, + -0.004820381756871939, + -0.026282934471964836, + 0.022395020350813866, + 0.0009551863186061382, + -0.0023627772461622953, + 0.030471134930849075, + -0.014263588935136795, + 0.03356882184743881, + -0.0036350421141833067, + -0.014018618501722813, + 0.013734136708080769, + 0.03856305405497551, + -0.006112402305006981, + 0.011750668287277222, + 0.005776555743068457, + -0.0024852624628692865, + 0.017495615407824516, + -0.006618147250264883, + 0.010707569308578968, + 0.01923411339521408, + -0.0002610216906759888, + 0.031308773905038834, + 0.002021992113441229, + -0.012928105890750885, + 0.01221690233796835, + -0.0012050954392179847, + -0.008392205461859703, + -0.023548750206828117, + -0.016847629100084305, + -0.01882319524884224, + 0.048014163970947266, + 0.011924518272280693, + -0.005037694238126278, + 0.009016484953463078, + -0.015093326568603516, + -0.003552068257704377, + 0.0013443728676065803, + -0.006309958640486002, + 0.013836866244673729, + 0.004346245899796486, + -0.009427402168512344, + -0.0027361593674868345, + 0.00760593032464385, + -0.015369906090199947, + 0.013465460389852524, + 0.02947544865310192, + 0.018412278965115547, + -0.019486986100673676, + 8.068954048212618e-5, + -0.015867749229073524, + -0.00452799815684557, + -0.0037456736899912357, + 0.02362777292728424, + 0.024971159175038338, + -0.001122121699154377, + -0.013212587684392929, + 0.00017422025848645717, + 0.002060515573248267, + 0.011229119263589382, + 0.002906057983636856, + -0.016065305098891258, + -0.019344745203852654, + -0.0069184331223368645, + -0.004804577212780714, + 0.0025326760951429605, + -0.004848039709031582, + 0.017764292657375336, + 0.0011211339151486754, + 0.015630681067705154, + -0.00948271807283163, + 0.013022933155298233, + -0.002749988343566656, + -0.00961705669760704, + 0.027705341577529907, + 0.004200053866952658, + 0.002226463286206126, + -0.007001406978815794, + 0.01427939347922802, + 0.010462598875164986, + -0.00844752136617899, + 0.017116306349635124, + -0.006377127952873707, + -0.009095507673919201, + -0.015757117420434952, + 0.01438212301582098, + 0.010517914779484272, + -0.008487032726407051, + -0.017147915437817574, + -0.0032853668089956045, + 0.006665560882538557, + 0.0037456736899912357, + 0.008249964565038681, + 0.014785137958824635 + ], + "8785c7d6-0d25-45a2-81af-e74acec0b17d": [ + 0.005763351451605558, + -0.02041788399219513, + -0.021513551473617554, + 0.04412276670336723, + 0.011719184927642345, + -0.002102494239807129, + -0.011645153164863586, + 0.01705685444176197, + -0.02111378125846386, + 0.06043930724263191, + -0.002914989832788706, + 0.01687917858362198, + 0.0045862505212426186, + -0.025481637567281723, + 0.0044159782119095325, + 0.007510494440793991, + -0.026029471307992935, + 0.02801351621747017, + -0.014909941703081131, + 0.01169697567820549, + 0.03307726979255676, + -0.010453246533870697, + -0.040332354605197906, + 0.005130382254719734, + 0.009675915353000164, + 0.0015065408078953624, + -0.03648271784186363, + -0.015975994989275932, + -0.057774174958467484, + -0.011963488534092903, + 0.0042457059025764465, + 0.018655935302376747, + -0.002500413451343775, + 0.01681995391845703, + 0.014576800167560577, + -0.028131965547800064, + 0.0036608572117984295, + -0.011778409592807293, + -0.00999425072222948, + 0.008580249734222889, + 0.02152835763990879, + 0.0025226229336112738, + 0.014421333558857441, + -0.006836807820945978, + -0.02497822418808937, + 0.017264142632484436, + -0.055345941334962845, + 0.0012150418478995562, + 0.003923668991774321, + -0.019929276779294014, + 0.00617422629147768, + 0.027376845479011536, + -0.03559434041380882, + 0.03722303360700607, + 0.019070511683821678, + -0.03538705036044121, + 0.011223173700273037, + 0.02753971330821514, + 0.026577305048704147, + -0.04761705547571182, + 0.021306263282895088, + -0.0011178754502907395, + 0.014080788940191269, + -0.01209674496203661, + 0.03355107083916664, + -0.007662259042263031, + -0.025363188236951828, + 0.016301734372973442, + -0.0010160822421312332, + -0.0005196084966883063, + -0.024904193356633186, + 0.027717389166355133, + -0.017175305634737015, + 0.013510746881365776, + 0.047054413706064224, + 0.001527824904769659, + 0.06194955110549927, + 0.025836989283561707, + 0.026769787073135376, + -0.007262488827109337, + 0.017071660608053207, + -0.002798390341922641, + 0.009705528616905212, + 0.030797099694609642, + 0.05199971795082092, + 0.006251959130167961, + -0.047646667808294296, + -0.046166036278009415, + 0.013584778644144535, + -0.01522087398916483, + 0.002450442174449563, + 0.05279925838112831, + 0.03947358950972557, + 0.023838140070438385, + -0.00040902398177422583, + -0.021187812089920044, + 0.03476518765091896, + -0.0019562821835279465, + -0.015132036060094833, + 0.004978617653250694, + -0.007566018030047417, + 0.019544312730431557, + 0.017678719013929367, + 0.019559118896722794, + 0.029790271073579788, + -0.02102494239807129, + 0.005681916605681181, + 0.00347207672894001, + -0.01193387620151043, + 0.031004387885332108, + -0.010897435247898102, + -0.03133012726902962, + -0.045514557510614395, + -0.0075141959823668, + -0.04018429294228554, + -0.03141896426677704, + -0.04125034436583519, + -0.03754877299070358, + -0.03286997973918915, + -0.02562970109283924, + 0.0262367594987154, + 0.0037015744019299746, + 0.01625731587409973, + 0.006681341677904129, + -0.030471360310912132, + -0.005482031963765621, + 0.0003578959731385112, + 0.037874508649110794, + 0.02167641930282116, + 0.0011548912152647972, + -0.0020562245044857264, + -0.013229426927864552, + 0.014369511976838112, + -0.03834830969572067, + 0.006307482719421387, + 0.005037842784076929, + 0.01223740540444851, + 0.07432761788368225, + -0.021972546353936195, + -0.010845612734556198, + -0.03402487188577652, + -0.009476030245423317, + -0.04545533284544945, + 0.03811141103506088, + -0.028028322383761406, + -0.022357510402798653, + -0.0029390500858426094, + 0.042109109461307526, + -0.027421263977885246, + 0.005622691474854946, + -0.027850646525621414, + -0.01748623698949814, + -0.03541666269302368, + 0.010142314247786999, + 0.005126680713146925, + 0.024815354496240616, + -0.010127508081495762, + 0.026177534833550453, + 0.014850717037916183, + 0.01644979603588581, + -0.0017628747737035155, + -0.05442795157432556, + 0.024785742163658142, + -0.012748222798109055, + 0.01948508806526661, + 0.0005246981745585799, + 0.08196766674518585, + 0.03583123907446861, + -0.008543233387172222, + 0.016331346705555916, + -0.008054626174271107, + -0.02918321266770363, + 0.048357367515563965, + 0.013088767416775227, + 0.04148724675178528, + -0.017027242109179497, + 0.03177431598305702, + 0.02521512471139431, + 0.009061453863978386, + 0.006588802672922611, + -0.030649036169052124, + -0.03361029550433159, + 0.03565356507897377, + 0.012637174688279629, + 0.03186315298080444, + 0.029582982882857323, + -0.018419034779071808, + 0.017501043155789375, + -0.019603537395596504, + 0.011334220878779888, + -0.00021897126862313598, + -0.01456199400126934, + 0.04181298613548279, + 0.016198089346289635, + -0.02078804187476635, + -0.032603468745946884, + -0.01785639487206936, + -0.0018452348886057734, + 0.006011357065290213, + 0.04678790271282196, + 0.007795515935868025, + -0.02252037823200226, + -0.031537413597106934, + 0.03965126723051071, + -0.0063667078502476215, + 0.027584133669734, + -0.026873430237174034, + 0.019633151590824127, + 0.05682656913995743, + -0.018952060490846634, + 0.033580683171749115, + -0.055168267339468, + 0.039828941226005554, + -0.03571278974413872, + 0.0014334346633404493, + 0.01060130912810564, + -0.004564041271805763, + 0.019322218373417854, + 0.011408252641558647, + -0.025422412902116776, + 0.024297134950757027, + -0.02111378125846386, + -0.03198160231113434, + -0.004267915152013302, + -0.01710127480328083, + 0.004789837170392275, + -0.028931505978107452, + 0.0014112252974882722, + -0.022446347400546074, + -0.016301734372973442, + 0.046166036278009415, + 0.005374685861170292, + 0.006496263202279806, + -0.008861568756401539, + 0.0024374867789447308, + 0.030500972643494606, + 0.0349428616464138, + 0.010712356306612492, + 0.013732841238379478, + 0.01342190895229578, + -0.007321714423596859, + 0.018315389752388, + -0.03766722232103348, + -0.026592111214995384, + -0.012422483414411545, + 0.022801699116826057, + 0.008683893829584122, + 0.03529821336269379, + 0.015679869800806046, + 0.011038094758987427, + 0.011593331582844257, + 0.009098470211029053, + 0.013969741761684418, + -0.004219794645905495, + -0.027939483523368835, + 0.02423791028559208, + 0.02003292180597782, + -0.023186663165688515, + -0.037637609988451004, + -0.06390397995710373, + 0.018789192661643028, + 0.020299434661865234, + -0.052591968327760696, + 0.01043844036757946, + 0.027184363454580307, + -0.056560058146715164, + 0.06958959996700287, + -0.0004462710639927536, + 0.0032148174941539764, + 0.05546439066529274, + 0.008698699995875359, + -0.04581068456172943, + -0.023142242804169655, + 0.018152521923184395, + 0.009061453863978386, + -0.003070455975830555, + 0.03150780126452446, + 0.006170524749904871, + 0.01330345869064331, + -0.01566506363451481, + -0.031537413597106934, + 0.018626322969794273, + 0.015605838038027287, + -0.0388813391327858, + -0.018715159967541695, + 0.022860923781991005, + -0.045129597187042236, + 0.00971293170005083, + -0.0360681414604187, + -0.017042048275470734, + 0.014895135536789894, + -0.027554519474506378, + -0.003753396449610591, + -0.008150867186486721, + 0.0013482985086739063, + 0.010431036353111267, + -0.013940129429101944, + -0.001824876177124679, + 0.05451678857207298, + -0.002220944734290242, + 0.0002970513596665114, + 0.022564798593521118, + -0.024119459092617035, + -0.03822986036539078, + 0.0014084490248933434, + -0.026444047689437866, + 0.007288400083780289, + 0.016509022563695908, + -0.0322481170296669, + 0.01011270098388195, + 0.011808022856712341, + -0.0017693525878712535, + -0.0349428616464138, + -0.03974010422825813, + 0.006958960089832544, + 0.0022653634659945965, + -0.024119459092617035, + 0.025244737043976784, + -0.03669000416994095, + -0.006144613493233919, + -0.028546541929244995, + -0.007447567768394947, + -0.028635380789637566, + 0.013525553047657013, + 0.03908862546086311, + -0.029982753098011017, + 0.04252368584275246, + 0.00308711314573884, + -0.029020342975854874, + -0.007691871840506792, + -0.012844462879002094, + -0.03660116717219353, + -0.011578524485230446, + -0.021839288994669914, + -0.02037346549332142, + -0.03589046746492386, + -0.018211746588349342, + -0.028117159381508827, + -0.02745087631046772, + -0.002350499853491783, + -0.023245887830853462, + 0.019174154847860336, + 0.01627212204039097, + 0.014480559155344963, + -0.02163200080394745, + -0.00012897673877887428, + 0.0003766352019738406, + 0.016849566251039505, + 0.033166106790304184, + 0.004423381295055151, + 0.0010521725052967668, + 0.037163808941841125, + 0.04545533284544945, + 0.009335370734333992, + 0.012748222798109055, + -0.007225473411381245, + -0.024578453972935677, + -0.0029057359788566828, + 0.055494002997875214, + -0.011845038272440434, + -0.03911823779344559, + -0.043234389275312424, + -0.015576225705444813, + -0.02697707526385784, + -0.039355140179395676, + 0.019174154847860336, + 0.021735645830631256, + -0.014843313954770565, + -0.0383186973631382, + -0.011652556248009205, + -0.026532884687185287, + 0.011482283473014832, + -0.028220804408192635, + -0.025985052809119225, + -0.04554417356848717, + -0.03440983593463898, + 0.03722303360700607, + -0.010379214771091938, + 0.009542658925056458, + 0.0018258015625178814, + -0.012540934607386589, + 0.03858521208167076, + -0.003912564367055893, + 0.022313090041279793, + 0.015576225705444813, + 0.0019710883498191833, + -0.004319737199693918, + -0.013577374629676342, + -0.012925897724926472, + -0.004734313581138849, + -0.012200389057397842, + -0.001796188997104764, + -0.006288975011557341, + 0.04489269480109215, + 0.015035795047879219, + 0.0025244737043976784, + 0.018670741468667984, + -0.029375694692134857, + -0.0044603971764445305, + -0.00018207119137514383, + -0.0035720192827284336, + -0.02810235321521759, + -0.0051192776300013065, + 0.023038599640130997, + -0.017160499468445778, + -0.02003292180597782, + -0.014295480214059353, + 0.010231152176856995, + 0.018700353801250458, + 0.028546541929244995, + -0.015324518084526062, + 0.006929347291588783, + -0.02712513692677021, + 0.0028094949666410685, + 0.04086538031697273, + 0.024223102256655693, + -0.024993030354380608, + 0.07178093492984772, + -0.02903514914214611, + -0.005741141736507416, + 0.03671962022781372, + 0.02582218311727047, + 0.03289959207177162, + 0.01748623698949814, + 0.0012113401899114251, + 0.030737875029444695, + 0.01593157649040222, + -0.02493380568921566, + -0.014443543739616871, + 0.00024708008277229965, + 0.0404508039355278, + 0.03509092703461647, + -0.018330195918679237, + 0.02092129923403263, + -0.016242507845163345, + -0.015961188822984695, + -0.0200033076107502, + 0.01770833134651184, + -0.01599080115556717, + -0.02428232878446579, + -0.019366636872291565, + 0.03509092703461647, + 0.0008939302060753107, + -0.011541509069502354, + -0.05833681300282478, + -0.012948106974363327, + -0.04524804651737213, + -0.012800044380128384, + -0.008032416924834251, + -0.02209099568426609, + 0.015413356013596058, + 0.010875225998461246, + -0.09043686836957932, + -0.017042048275470734, + 0.03956242650747299, + -0.0004636221856344491, + 0.04053964465856552, + -0.008417380042374134, + 0.02665133588016033, + -0.03627542778849602, + 0.018493065610527992, + -0.023097824305295944, + 0.04077654331922531, + -0.01169697567820549, + 0.01330345869064331, + -0.0344986729323864, + -0.006892331410199404, + 0.009150291793048382, + -0.00392737053334713, + -0.018670741468667984, + -0.01575390063226223, + -0.01018673274666071, + -0.03094516322016716, + 0.033995259553194046, + 0.00960188452154398, + -0.01855229027569294, + -0.03355107083916664, + -0.015813125297427177, + -0.006074283737689257, + -0.02354201301932335, + -0.017886007204651833, + 0.007503091357648373, + -0.014058579690754414, + 0.02736203745007515, + 0.008306332863867283, + 0.00617422629147768, + -0.039592038840055466, + 0.004686193075031042, + -0.011993100866675377, + -0.004023611545562744, + 0.0316854789853096, + 0.012577950023114681, + -0.00686271907761693, + 0.03793373331427574, + -0.0008911540498957038, + 0.0027243588119745255, + 0.0041827792301774025, + -0.023467982187867165, + -0.01607964001595974, + -0.02265363559126854, + 0.005448717623949051, + -0.014532381668686867, + 0.03529821336269379, + 0.02391217090189457, + -0.020773235708475113, + 0.019559118896722794, + 0.021217424422502518, + 0.02069920487701893, + -0.017397399991750717, + -0.03529821336269379, + -0.019736794754862785, + 0.021098975092172623, + -0.012711206451058388, + 0.0046306694857776165, + 0.0010882628848776221, + 0.019884858280420303, + 0.002485607285052538, + -0.012866673059761524, + 0.030190041288733482, + 0.0150283919647336, + -0.0032962521072477102, + -0.023852946236729622, + -0.020477110520005226, + 0.0007407775847241282, + -0.015813125297427177, + -0.005678215064108372, + 0.004105045925825834, + -0.018478259444236755, + 0.03760799765586853, + -0.03817063570022583, + -0.04761705547571182, + 0.003409150056540966, + -0.02180967666208744, + -0.0038496374618262053, + -0.003155592130497098, + -0.009401999413967133, + -0.008972616866230965, + 0.016346152871847153, + 0.004841659218072891, + -0.025925828143954277, + -0.02167641930282116, + 0.040154680609703064, + -0.010053476318717003, + 0.010334796272218227, + -0.011186158284544945, + 0.020891686901450157, + 0.011215770617127419, + -0.010505068115890026, + -0.0005233100964687765, + 0.016050027683377266, + -0.03891095146536827, + 0.014236255548894405, + -0.022905342280864716, + -0.02172083966434002, + -0.02801351621747017, + -0.02946453168988228, + -0.005955833476036787, + -0.02194293402135372, + 0.012022714130580425, + -0.03923669084906578, + 0.016109252348542213, + 0.024770935997366905, + 1.602087650098838e-5, + 0.023142242804169655, + -0.037578385323286057, + -0.0015102423494681716, + -0.03633465617895126, + 0.04613642394542694, + 0.022446347400546074, + 0.009253935888409615, + -0.0032425792887806892, + 0.020580753684043884, + 0.03680845722556114, + -0.011867247521877289, + -0.005237727891653776, + 0.02265363559126854, + 0.02334953099489212, + 2.2527550754603e-5, + 0.002463397802785039, + -0.0185967106372118, + 0.007203263696283102, + -0.021306263282895088, + -0.00610759761184454, + -0.02773219533264637, + 0.019129736348986626, + 0.0131183797493577, + 0.0018396824598312378, + 0.0053672827780246735, + -0.022772086784243584, + 0.029094375669956207, + 0.03369913250207901, + 0.012540934607386589, + -0.01376985665410757, + -0.001227071974426508, + 0.004634371027350426, + 0.023231081664562225, + 0.005285848397761583, + 0.008025013841688633, + 0.0021450624335557222, + -0.015739094465970993, + 0.01522087398916483, + 0.03627542778849602, + -0.0076696621254086494, + -0.01090483833104372, + -0.007891756482422352, + 0.029701434075832367, + -0.01710127480328083, + 0.009409402497112751, + 0.0015574374701827765, + 0.012289226986467838, + 0.014221449382603168, + -0.021839288994669914, + 0.03695651888847351, + -0.023941783234477043, + 0.02660691738128662, + -0.00163146888371557, + 0.016434989869594574, + 0.028605766594409943, + 0.01139344647526741, + 0.016864372417330742, + 0.03278114274144173, + -0.02484496682882309, + 0.027628552168607712, + -0.007010782137513161, + -0.02671056054532528, + 0.04074693098664284, + -0.024859774857759476, + -0.0013797618448734283, + -0.006159419659525156, + -0.03799296170473099, + -0.03725264593958855, + -0.004760224837809801, + 0.02096571773290634, + -0.013532956130802631, + 0.006692446768283844, + -0.009372386150062084, + 0.030500972643494606, + -0.018863223493099213, + 0.009091067127883434, + 0.010927047580480576, + 0.00198034243658185, + -0.001856339629739523, + 0.03526860103011131, + 0.05199971795082092, + -0.017871201038360596, + 0.033817585557699203, + -0.02013656497001648, + 0.01920376904308796, + 0.030915549024939537, + 0.02614792250096798, + 0.012385467998683453, + 0.009757350198924541, + -0.016286928206682205, + 0.018063683062791824, + -0.015368937514722347, + -0.01407338585704565, + -0.011334220878779888, + -0.02768777683377266, + 0.02330511249601841, + 0.004900884348899126, + -0.02400100789964199, + -0.030826712027192116, + 0.035623952746391296, + -0.029257243499159813, + 0.029849495738744736, + 0.005981744267046452, + 0.006681341677904129, + -0.00590771296992898, + -0.020343853160738945, + 0.04498153179883957, + -0.0017119782278314233, + -0.013592181727290154, + 0.006648027803748846, + 0.0023097824305295944, + -0.0017952636117115617, + -0.026399629190564156, + 0.03897017613053322, + 0.009083664044737816, + 0.007980594411492348, + -0.013288652524352074, + -0.019692376255989075, + -0.029109181836247444, + -0.030826712027192116, + 0.02443039044737816, + -0.025511251762509346, + -0.007306907791644335, + -0.010853015817701817, + -0.003453569021075964, + -0.039680879563093185, + 0.000961483980063349, + -0.002141360891982913, + -0.00020046338613610715, + 0.009935026057064533, + 0.01905570551753044, + 0.01456199400126934, + 0.0009017960983328521, + 0.006511069368571043, + -0.017767557874321938, + 0.010623518377542496, + 0.0037108284886926413, + -0.02213541604578495, + -0.0060261632315814495, + -0.017323369160294533, + -0.03242579102516174, + 0.02376410737633705, + -0.014154820702970028, + -0.014673041179776192, + -0.0279246773570776, + -0.010964063927531242, + 0.0035812733694911003, + -0.0005515345837920904, + -0.012555740773677826, + -0.0039606848731637, + 0.004304931033402681, + 0.0164053775370121, + -0.02955337055027485, + 0.003662707982584834, + -0.0194406695663929, + -0.0377560593187809, + 0.010468052700161934, + -0.01181542593985796, + 0.03024926595389843, + 0.00801760982722044, + -0.03352145850658417, + -0.01559103187173605, + 0.004552936647087336, + -0.007580824661999941, + -0.03440983593463898, + 0.020625172182917595, + 0.0031333828810602427, + 0.023453176021575928, + -0.0072476826608181, + -0.007928772829473019, + 0.011926473118364811, + -0.02940530702471733, + -0.013547762297093868, + -0.0047380151227116585, + 0.008965212851762772, + -0.012007907032966614, + -0.0019747898913919926, + 0.03612736612558365, + 0.023245887830853462, + 0.003986595664173365, + -0.03207043930888176, + 0.0019969993736594915, + 0.005552361719310284, + 0.034054484218358994, + 0.012614965438842773, + -0.016627471894025803, + -0.006155718117952347, + 0.017264142632484436, + -0.03230734169483185, + 0.01864112913608551, + 0.006403723731637001, + -0.02311263047158718, + 0.010941853746771812, + 0.03627542778849602, + 0.012326243333518505, + -0.0028983328957110643, + 0.03938475251197815, + -0.0017119782278314233, + -0.012385467998683453, + -0.023823333904147148, + -0.01710127480328083, + 0.006522173993289471, + 0.015857545658946037, + 0.007325415965169668, + 0.007036692928522825, + 0.025659313425421715, + -0.005689319688826799, + 0.052503131330013275, + 0.017634300515055656, + 0.0047676279209554195, + -0.014961764216423035, + -0.0013557015918195248, + -0.03242579102516174, + -0.014251061715185642, + -0.03183354064822197, + -0.01720491796731949, + 0.017397399991750717, + -0.011837635189294815, + -0.048357367515563965, + 0.002914989832788706, + 0.0072846985422074795, + 0.03571278974413872, + -0.03748954460024834, + 0.02228347770869732, + -0.007780709303915501, + 0.015383743681013584, + -0.0100016538053751, + -0.008335945196449757, + -0.010497665032744408, + -0.009705528616905212, + 0.02441558428108692, + 0.00875792559236288, + -0.014065982773900032, + -0.0029649611096829176, + 0.017160499468445778, + -0.019692376255989075, + -0.019218575209379196, + -0.006999677047133446, + -0.031626250594854355, + 0.04515920951962471, + 0.025437219068408012, + -0.01948508806526661, + -0.03778567165136337, + -0.017545463517308235, + -0.009476030245423317, + -0.014998779632151127, + 0.02614792250096798, + 0.012763028964400291, + 0.01896686665713787, + 0.026740172877907753, + 0.00736243138089776, + -0.017767557874321938, + 0.0014584203017875552, + 0.025111481547355652, + 0.01456199400126934, + 0.020891686901450157, + 0.017027242109179497, + 0.001811920665204525, + -0.001998850144445896, + 0.027006687596440315, + -0.004249407444149256, + 0.03340300917625427, + -0.02059555985033512, + -0.006910839583724737, + -0.00419388385489583, + 0.005041544325649738, + 0.014132611453533173, + -0.003586825681850314, + -0.027939483523368835, + -0.030234459787607193, + 0.011230576783418655, + 0.006514770910143852, + 0.03500208631157875, + -0.02213541604578495, + 0.009061453863978386, + -0.047646667808294296, + 0.0394439771771431, + -0.008831956423819065, + -0.044537343084812164, + -0.002792838029563427, + -0.022757278755307198, + -0.0034831815864890814, + 0.004297527950257063, + -0.004304931033402681, + -0.008943003602325916, + 0.015368937514722347, + 0.03574240207672119, + 0.041694533079862595, + 0.01155631523579359, + 0.02540760673582554, + 0.03218889236450195, + -0.009305758401751518, + 0.00018820192781277, + -0.01342190895229578, + 0.003956982865929604, + -0.014088192023336887, + 0.01985524594783783, + 0.029346082359552383, + -0.009675915353000164, + -0.010275570675730705, + -0.008602458983659744, + -0.026414435356855392, + 0.028176384046673775, + 0.008143464103341103, + -0.0012918495340272784, + -0.004974916111677885, + 0.008062029257416725, + 0.014769282191991806, + -0.005970639642328024, + 0.02278689295053482, + 0.02311263047158718, + -0.0064407396130263805, + -0.040983833372592926, + 0.015576225705444813, + -0.007195860613137484, + -0.01599080115556717, + 0.020950911566615105, + -0.008639474399387836, + 0.007647452875971794, + -0.006455545779317617, + -0.029212825000286102, + -0.0042271981947124004, + 0.007447567768394947, + 0.0077436938881874084, + -0.0016786640044301748, + 6.836344982730225e-5, + -0.014473156072199345, + 0.00530065456405282, + -0.0046750884503126144, + -0.01911493018269539, + -0.017530657351017, + -0.01395493559539318, + 0.0469655767083168, + -0.008313735947012901, + -0.02232789620757103, + 0.008372961543500423, + 0.0035720192827284336, + -0.004582548979669809, + -0.03266269341111183, + -0.02167641930282116, + -0.00988320354372263, + 0.030915549024939537, + -0.017397399991750717, + 0.009683318436145782, + 0.0009661109070293605, + 0.010460649617016315, + 0.004478904884308577, + 0.012592756189405918, + 0.03016042895615101, + 0.002115449868142605, + -0.0393255278468132, + 0.054279886186122894, + 0.007936175912618637, + 0.0005432060570456088, + -0.03858521208167076, + -0.0025688926689326763, + -0.006248257588595152, + -0.010009056888520718, + -0.0007662259158678353, + 0.0289907306432724, + 0.015161649323999882, + -0.02940530702471733, + 0.006536980625241995, + -0.01349594071507454, + -0.03230734169483185, + -0.025437219068408012, + -0.008417380042374134, + 0.009453820995986462, + -0.016553441062569618, + -0.011837635189294815, + -0.030234459787607193, + -0.008595055900514126, + -0.013162799179553986, + -0.01822655275464058, + 0.0191593486815691, + -0.03307726979255676, + 0.016005607321858406, + 0.0041383602656424046, + -0.005071157123893499, + 0.03541666269302368, + 0.025570476427674294, + -0.015206067822873592, + 0.000425449718022719, + -0.007440164685249329, + 0.031537413597106934, + 0.013036944903433323, + 0.01006828248500824, + 0.006218645256012678, + 0.02916840650141239, + -0.03189276531338692, + -0.0030019767582416534, + 0.018848417326807976, + 0.016301734372973442, + -0.011304608546197414, + -0.0017702779732644558, + -0.0026799398474395275, + 0.00506745558232069, + -0.017678719013929367, + -0.01323683001101017, + -0.0007495688041672111, + 0.006189032457768917, + -0.03947358950972557, + 0.048446204513311386, + -0.01307396125048399, + 0.015650257468223572, + -0.02605908364057541, + -0.020255016162991524, + -0.013866097666323185, + -0.005530152004212141, + -0.027110330760478973, + -0.008565443567931652, + 0.0008620041771791875, + -0.01816732808947563, + -0.012637174688279629, + -0.005992848891764879, + -0.023467982187867165, + -0.020936105400323868, + 0.040658093988895416, + -0.027584133669734, + -0.020610366016626358, + -0.047320928424596786, + 0.0014528679894283414, + 0.01798965223133564, + -0.010394020937383175, + -0.013362683355808258, + -0.015206067822873592, + -0.016523828729987144, + 0.026784593239426613, + -0.019870052114129066, + -0.003708977485075593, + 0.03159663826227188, + 0.020610366016626358, + 0.004123554099351168, + 0.007077410351485014, + -0.017071660608053207, + -0.010357005521655083, + -0.009742544032633305, + -0.02167641930282116, + 0.012970317155122757, + -0.03215928003191948, + 0.045129597187042236, + 0.021498743444681168, + 0.030278878286480904, + 0.007603033911436796, + -0.02194293402135372, + 0.004808345343917608, + 0.019840439781546593, + -0.002317185513675213, + -0.027613746002316475, + -0.01246690284460783, + 0.003522048005834222, + 0.004238302819430828, + 0.029375694692134857, + 0.03808179870247841, + -0.011082514189183712, + 0.009401999413967133, + 0.013147992081940174, + -0.016701504588127136, + -0.0020192088559269905, + 0.008446993306279182, + 0.0018970569362863898, + -0.0010836359579116106, + 0.01468044426292181, + -0.013695825822651386, + -0.012030117213726044, + 0.00803982000797987, + -0.04675828665494919, + -0.018863223493099213, + -0.02614792250096798, + -0.007310609333217144, + 0.005204413551837206, + 0.008402573876082897, + 0.00480094226077199, + -0.011186158284544945, + -0.09399037808179855, + -0.01579831913113594, + -0.006755373440682888, + 0.00640742527320981, + 0.021365487948060036, + -0.018863223493099213, + 0.0004969363799318671, + 0.023423563688993454, + 0.007595630828291178, + 0.002128405263647437, + 0.01631654053926468, + 0.0057189324870705605, + 0.007336520589888096, + 0.016375765204429626, + 0.015006182715296745, + -0.004941601771861315, + -0.01594638265669346, + -0.0018387570744380355, + -0.0011030691675841808, + -0.023127436637878418, + -0.028309641405940056, + 0.015739094465970993, + 0.012407677248120308, + -0.005345073528587818, + -0.008891182020306587, + 0.04021390527486801, + 0.0328107550740242, + -0.00012920808512717485, + -0.012459499761462212, + -0.007029289845377207, + 0.02820599637925625, + 0.010919644497334957, + -0.004923094063997269, + -0.024770935997366905, + -0.017264142632484436, + 0.018892835825681686, + 0.0311820637434721, + -0.004734313581138849, + 0.028783442452549934, + 0.011541509069502354, + 0.006644326262176037, + 0.007543808780610561, + -0.015428162179887295, + -0.0009799918625503778, + 0.002200586022809148, + 0.03467635065317154, + -0.004134658724069595, + -0.035209376364946365, + 0.0016573799075558782, + 0.0036201397888362408, + 0.014650831930339336, + 0.003618289018049836, + -0.020862072706222534, + -0.010608712211251259, + 0.0030889639165252447, + 0.006581399589776993, + 0.01431028638035059, + -0.006329692434519529, + 0.016583053395152092, + 0.01346632745116949, + 0.058603327721357346, + 0.004212391562759876, + -0.014014161191880703, + -0.002026611939072609, + -0.01603521965444088, + -0.003190757241100073, + 0.012540934607386589, + 0.01874477230012417, + 0.014954361133277416, + 0.02217983454465866, + 0.016050027683377266, + -0.018419034779071808, + -0.0047676279209554195, + 0.020891686901450157, + 0.02377891354262829, + -0.0073476252146065235, + 0.0125853531062603, + 0.021868901327252388, + -0.007406850345432758, + 9.502635657554492e-5, + -0.014221449382603168, + -0.00873571541160345, + 0.006562891416251659, + -0.0032425792887806892, + -0.019470281898975372, + -0.007847337983548641, + -0.01419183611869812, + -0.01933702453970909, + 0.0058892047964036465, + 0.011312011629343033, + 0.01043844036757946, + 0.004260512068867683, + 0.029953140765428543, + 0.023127436637878418, + -0.026177534833550453, + 0.05410221219062805, + -0.024770935997366905, + 0.0006722984835505486, + -0.008565443567931652, + 0.017397399991750717, + 0.0038126215804368258, + -0.010223748162388802, + -0.0064407396130263805, + -0.01299992948770523, + 0.008528427220880985, + -0.010275570675730705, + -0.00012781999248545617, + -0.011038094758987427, + -0.01388830691576004, + -0.020166177302598953, + -0.009290952235460281, + 0.011408252641558647, + -0.01220779214054346, + 0.0019081616774201393, + 0.009868397377431393, + 0.015154245309531689, + -0.029212825000286102, + -0.01395493559539318, + -0.006189032457768917, + 0.0021857796236872673, + -0.00416056951507926, + 0.021217424422502518, + -0.012570546939969063, + -0.016523828729987144, + -0.003990297205746174, + 0.008224898017942905, + -0.006544383708387613, + -0.029523758217692375, + 0.0017638002755120397, + 0.0027835839428007603, + -0.020891686901450157, + -0.01246690284460783, + -0.01970718242228031, + -0.0017897112993523479, + -0.009875800460577011, + 0.007958385162055492, + 0.007810322102159262, + 0.0025688926689326763, + 0.033669520169496536, + -0.04507036879658699, + -0.006833106279373169, + -0.0032555346842855215, + -0.005926220677793026, + -0.0042160931043326855, + -0.02408984676003456, + 0.0012798194075003266, + -0.008402573876082897, + 0.005122979171574116, + 0.0038755484856665134, + 0.0007264339947141707, + -0.04222756251692772, + 0.02591102197766304, + 0.030826712027192116, + 0.024682098999619484, + -0.009320564568042755, + -0.021454324945807457, + 0.013688422739505768, + 0.008469202555716038, + -0.021469131112098694, + -0.022772086784243584, + -0.03686768189072609, + 8.47313494887203e-5, + 0.02484496682882309, + 0.013629197143018246, + 0.0010716058313846588, + -0.015457774512469769, + -0.019929276779294014, + 0.014939554035663605, + -0.028398478403687477, + 0.0015583628555759788, + 0.006777582690119743, + 0.029005536809563637, + -0.006914541125297546, + -0.00873571541160345, + -0.016064833849668503, + 0.005800367332994938, + -0.024667292833328247, + 0.007950982078909874, + 0.017175305634737015, + -0.01785639487206936, + -0.014117805287241936, + 0.010793791152536869, + -0.002267214236781001, + 0.0077436938881874084, + -0.01240027416497469, + 0.008069432340562344, + -0.005941026844084263, + 0.014769282191991806, + -0.01251132134348154, + -0.00731801288202405, + 0.04631409794092178, + -0.005245130974799395, + -0.01029777992516756, + 0.019736794754862785, + -0.002709552412852645, + 0.002565191127359867, + 0.0349428616464138, + 0.003801516955718398, + -0.007303206250071526, + -0.024297134950757027, + 0.008617265149950981, + 0.003257385455071926, + 0.008306332863867283, + -0.005648602731525898, + 0.027791419997811317, + -0.021780064329504967, + -0.035772014409303665, + 0.04548494517803192, + 0.026636529713869095, + -0.014265867881476879, + -0.02446000464260578, + -0.007384641095995903, + -0.004386365879327059, + -0.022846117615699768, + -0.0007148665608838201, + -0.028280029073357582, + -0.00013476044114213437, + -0.017234530299901962, + 0.014384318143129349, + -0.03745993226766586, + 0.014354705810546875, + -0.0029779167380183935, + 0.04207949712872505, + -0.014177029952406883, + 5.9340865846024826e-5, + 0.00044372622505761683, + 0.013414505869150162, + -0.0281467717140913, + -0.03076748736202717, + 0.009083664044737816, + -0.022165028378367424, + -0.011356430128216743, + -0.003022335469722748, + -0.002691044704988599, + -0.019499894231557846, + 0.013547762297093868, + 0.035949692130088806, + -0.004534428473562002, + 0.0064740534871816635, + -0.030560199171304703, + -0.020329046994447708, + 0.00028224504785612226, + -0.002957558026537299, + -0.010120104067027569, + 0.014413930475711823, + 0.01388830691576004, + -0.0196627639234066, + -0.019233381375670433, + -0.010305183008313179, + -0.0015157947782427073, + 0.018655935302376747, + 0.002818749053403735, + -0.009083664044737816, + 0.018818804994225502, + -0.021306263282895088, + -0.014480559155344963, + 0.03369913250207901, + 0.0038348310627043247, + 0.017456624656915665, + -0.003979192581027746, + -0.012607562355697155, + -0.006396320648491383, + 0.0215727761387825, + -0.018670741468667984, + 0.01414741761982441, + 2.364091415074654e-5, + 0.01037181168794632, + 0.01994408294558525, + 0.045129597187042236, + -0.014946958050131798, + 0.012407677248120308, + 0.010260764509439468, + -0.025940634310245514, + -0.0022153921891003847, + -0.006422231439501047, + 0.009594480507075787, + 0.004360454622656107, + 0.002387515502050519, + -0.019588731229305267, + 0.024208296090364456, + -0.028072740882635117, + -0.013370086438953876, + -0.011659959331154823, + 0.0003731649776455015, + -0.004926795605570078, + -0.01970718242228031, + 0.014643428847193718, + -0.0172493364661932, + 0.037637609988451004, + -0.020388271659612656, + 0.007876950316131115, + 0.006755373440682888, + 0.02297937497496605, + 0.009816575795412064, + 0.008395170792937279, + -0.0017388146370649338, + 0.016464602202177048, + 0.016612665727734566, + 0.02223905920982361, + -0.006496263202279806, + 0.01813771389424801, + 0.002276468323543668, + -0.02545202523469925, + -0.005041544325649738, + -0.0002716030285228044, + -0.00014089117757976055, + -0.0062704673036932945, + 8.785455429460853e-5, + 0.01692359894514084, + -0.0006889555370435119, + 0.00019236619118601084, + -0.002583699068054557, + -0.01896686665713787, + -0.009409402497112751, + 0.009150291793048382, + 0.006396320648491383, + 0.0030019767582416534, + -0.0006218645139597356, + 0.018048876896500587, + -0.02725839428603649, + 0.01677553541958332, + -0.008091641589999199, + 0.029908722266554832, + 0.012763028964400291, + -0.010630921460688114, + 0.005656005814671516, + -0.009313161484897137, + 0.0007671513012610376, + 0.005959535017609596, + 0.004575145896524191, + -0.02447481080889702, + 0.009357579983770847, + 0.0021968844812363386, + -0.015813125297427177, + -0.004127255640923977, + 0.0015990801621228456, + -0.004423381295055151, + -0.02252037823200226, + -0.011363833211362362, + -0.0018600411713123322, + 0.01779717020690441, + 0.021780064329504967, + -0.005519047379493713, + 0.002328290371224284, + -0.006570294499397278, + 0.02213541604578495, + 0.023512400686740875, + 0.04572184756398201, + 0.008728312328457832, + -0.0006070582312531769, + 0.02046230435371399, + -0.0009008706547319889, + 0.004482606425881386, + -0.02599985897541046, + 0.004889779724180698, + 0.03331416845321655, + 0.01631654053926468, + 0.025614894926548004, + -0.03648271784186363, + -0.03778567165136337, + -0.0251707062125206, + -0.005652304273098707, + 0.006929347291588783, + 0.0475282147526741, + 0.0019840439781546593, + -0.0033628803212195635, + 0.00046662971726618707, + 0.0014723011991009116, + 0.008861568756401539, + -0.0042457059025764465, + -0.010630921460688114, + -0.028546541929244995, + 0.0021617193706333637, + -0.010142314247786999, + -0.006907138042151928, + 0.027717389166355133, + -0.021187812089920044, + 0.006433336529880762, + -0.0016943956725299358, + -0.01779717020690441, + 0.02879824861884117, + -0.013414505869150162, + -0.033166106790304184, + 0.007891756482422352, + -0.013288652524352074, + -0.0065925042144954205, + -0.031122837215662003, + 0.01659785956144333, + 0.005618989933282137, + 0.010801194235682487, + -0.020817654207348824, + -0.014184433035552502, + 0.004367857705801725, + 0.018493065610527992, + -0.0003687693679239601, + 0.014517574571073055, + -0.011504493653774261, + 0.017367787659168243, + -0.0328107550740242, + -0.01293330080807209, + -0.019262993708252907, + 0.003725634654983878, + -0.006388917565345764, + 0.021409906446933746, + -0.025748152285814285, + 0.003222220577299595, + -0.002691044704988599, + 0.027598939836025238, + -0.0015120931202545762, + -0.01905570551753044, + -0.009594480507075787, + 0.007325415965169668, + 0.005285848397761583, + -0.005341371987015009, + -0.021098975092172623, + -0.006077985279262066, + 0.007218070328235626, + 0.010075685568153858, + 0.018122907727956772, + -0.029805077239871025, + -0.01794523373246193, + 0.0019044600194320083, + -0.01204492338001728, + -0.008950406685471535, + -0.016138864681124687, + -0.0027114031836390495, + -0.006847912911325693, + 0.005085963290184736, + -0.005234026350080967, + -0.02354201301932335, + 0.017767557874321938, + 0.012267017737030983, + 0.020580753684043884, + 0.010704953223466873, + 0.01985524594783783, + -0.009283549152314663, + -0.016331346705555916, + -0.0008920794352889061, + 0.009409402497112751, + -0.029242437332868576, + -0.0072402795776724815, + -0.0022153921891003847, + 0.0008758850744925439, + -0.011652556248009205, + -0.005767052993178368, + -0.025200318545103073, + -0.00048305545351468027, + -0.017974846065044403, + 0.005470926873385906, + -0.0018776236101984978, + 0.0017175305401906371, + -0.014643428847193718, + 0.016064833849668503, + 0.022816505283117294, + 0.010275570675730705, + -0.002333842683583498, + -0.012851866893470287, + 0.006177927833050489, + -0.024622872471809387, + 0.03322533145546913, + 0.017723137512803078, + 0.02740645781159401, + -0.01179321575909853, + 0.01510242372751236, + -0.01220779214054346, + -0.0076252431608736515, + 0.023334724828600883, + -0.025925828143954277, + -0.015280099585652351, + -0.02195774018764496, + 0.023423563688993454, + -0.03743031993508339, + -0.013273846358060837, + 0.0004765776975546032, + 0.0009027214837260544, + -0.013259039260447025, + -0.015139439143240452, + 0.021217424422502518, + 0.005959535017609596, + 0.0025503847282379866, + 0.00647775549441576, + 0.00971293170005083, + 0.017530657351017, + 0.025836989283561707, + 0.0076696621254086494, + -0.021306263282895088, + 0.013370086438953876, + -0.026488466188311577, + -0.010608712211251259, + 0.02918321266770363, + -0.032366566359996796, + 0.005193308927118778, + 2.848477197403554e-5, + 0.00347207672894001, + 0.00040624779649078846, + -0.029982753098011017, + -0.024311941117048264, + -0.013503343798220158, + 0.024163877591490746, + 0.007525300607085228, + 0.016434989869594574, + -0.014524977654218674, + -0.021321069449186325, + 0.01970718242228031, + -0.007532704155892134, + -0.00587439863011241, + -0.014991376549005508, + 0.0035368544049561024, + -0.007714081089943647, + -0.0031833539251238108, + -0.02031424082815647, + 0.004619564861059189, + -0.017723137512803078, + 0.013636600226163864, + -0.02940530702471733, + 0.00743276160210371, + 0.017782364040613174, + -0.023379143327474594, + -0.007310609333217144, + 0.0037570979911834, + -0.008824553340673447, + -0.008335945196449757, + -0.028961118310689926, + -0.01705685444176197, + -0.0023949185851961374, + 0.014102998189628124, + 0.010512471199035645, + -0.013858694583177567, + 0.004837957676500082, + -0.004027313087135553, + 0.001666633877903223, + -0.014939554035663605, + 0.014280674047768116, + 0.014465752989053726, + 0.014236255548894405, + 0.007862144149839878, + 0.005848487839102745, + -0.0015407804166898131, + 9.861225407803431e-5, + 0.0029649611096829176, + 0.0008842136012390256, + 4.93639636260923e-5, + -0.007869547232985497, + -0.01566506363451481, + -0.02278689295053482, + 0.08635032922029495, + -0.004967513028532267, + -0.0068997349590063095, + 0.003953281324356794, + 0.006755373440682888, + -0.004856465850025415, + 0.005526450462639332, + 0.01603521965444088, + 0.019174154847860336, + 0.01029777992516756, + 0.0174714308232069, + -0.014043773524463177, + 0.02009214647114277, + -0.001650902209803462, + -0.008128657937049866, + 0.0045862505212426186, + 0.005507942754775286, + 0.01127499621361494, + -0.0006375961820594966, + -0.0050267381593585014, + 0.017071660608053207, + 0.00755121186375618, + -0.013932726345956326, + 0.016893986612558365, + -0.002979767508804798, + 0.005482031963765621, + -0.004356753081083298, + 0.006903436500579119, + 0.011563718318939209, + 0.028072740882635117, + 0.0020451198797672987, + 0.005878100171685219, + -0.02096571773290634, + -0.0106753408908844, + -0.002226497046649456, + 0.023704882711172104, + -0.002548533957451582, + 0.019914470613002777, + -0.017219724133610725, + 0.03713419660925865, + -0.004834256134927273, + 0.0021080465521663427, + 0.0011687721125781536, + -0.000711627712007612, + -0.010519874282181263, + -0.004934198688715696, + -0.005411701742559671, + 0.005726335570216179, + 0.0025818480644375086, + -0.013214620761573315, + -0.008861568756401539, + -0.005596780683845282, + 0.01043844036757946, + -0.0005802218220196664, + 0.020610366016626358, + 0.005030439700931311, + 0.01365880947560072, + -0.017116080969572067, + 0.0048120468854904175, + 0.015265293419361115, + -0.012755625881254673, + 0.002511518308892846, + -0.02916840650141239, + -0.018211746588349342, + 0.0037904123309999704, + -0.022564798593521118, + -0.015635451301932335, + -0.010778984986245632, + 0.013599584810435772, + 0.015191261656582355, + 0.013110976666212082, + 0.017871201038360596, + 0.002646625740453601, + -0.01277043204754591, + -0.0027835839428007603, + 0.008476605638861656, + 0.00728099700063467, + -0.0009753648773767054, + -0.009409402497112751, + -0.00484906230121851, + 0.002339394995942712, + 0.004804643802344799, + 0.012318839319050312, + -0.035446275025606155, + -0.003662707982584834, + 0.001309431972913444, + 0.031478188931941986, + -0.015502193942666054, + -0.00033638058812357485, + -0.019559118896722794, + -0.022342704236507416, + -0.014710056595504284, + -0.008476605638861656, + 0.009187308140099049, + 0.007884353399276733, + -0.01151189673691988, + -0.02013656497001648, + 0.0028002411127090454, + 0.0018211746355518699, + 0.0016906941309571266, + 0.007495688274502754, + 0.008595055900514126, + 0.0037941138725727797, + 0.013384893536567688, + -0.0038052184972912073, + -0.0017702779732644558, + 0.01981082558631897, + 0.014628621749579906, + -0.021706031635403633, + -0.0035146449226886034, + 0.010342199355363846, + -0.020521529018878937, + -0.01365880947560072, + 0.005348775070160627, + -0.016938405111432076, + 0.02386775240302086, + 0.006177927833050489, + 0.004826853051781654, + -0.010853015817701817, + -0.02026982232928276, + -0.010023863986134529, + -0.003636796958744526, + 0.01705685444176197, + 0.004867570474743843, + 0.0027650760021060705, + -0.005082261748611927, + -0.013732841238379478, + 0.0008018535445444286, + -0.025392800569534302, + 0.007554913405328989, + 0.003842234378680587, + 0.0021487639751285315, + 0.009054050780832767, + 0.02768777683377266, + -0.01701243594288826, + -0.014591606333851814, + 0.000632506504189223, + 0.005252534057945013, + 0.025244737043976784, + -0.03275153040885925, + 0.0020155073143541813, + 0.01090483833104372, + -0.022401928901672363, + 0.016701504588127136, + 0.004775031004101038, + 0.006385216023772955, + -0.0032055634073913097, + -0.010149717330932617, + 0.004530726931989193, + 0.012659384869039059, + 0.01566506363451481, + -0.012148567475378513, + 0.0072476826608181, + -0.002587400609627366, + 0.0006676714983768761, + 0.004889779724180698, + -0.01559103187173605, + -0.007073708809912205, + 0.006733163725584745, + -0.035949692130088806, + -0.01701243594288826, + -0.005941026844084263, + -0.032692305743694305, + -0.0010188583983108401, + -0.015087617561221123, + 0.009853591211140156, + 0.023142242804169655, + 0.015124632976949215, + 0.015783512964844704, + 0.0006389842601493001, + -0.01785639487206936, + 0.014946958050131798, + 0.010260764509439468, + -0.032277729362249374, + -0.007987997494637966, + -0.005126680713146925, + -0.0013825380010530353, + -0.011608137749135494, + -0.02408984676003456, + 0.02484496682882309, + 0.00476392637938261, + -0.006496263202279806, + 0.015132036060094833, + -0.015679869800806046, + 0.004501114599406719, + 0.007751096971333027, + 0.0008846762939356267, + -0.004401172045618296, + 0.005193308927118778, + 0.006192733999341726, + -0.003683066461235285, + 0.0158427394926548, + -0.002865018555894494, + -0.005966938100755215, + -0.013932726345956326, + 0.012422483414411545, + 0.005048947408795357, + 0.014288077130913734, + -0.008187882602214813, + 0.004782434087246656, + -0.011689571663737297, + 0.015901964157819748, + 0.009705528616905212, + -0.007506792899221182, + -0.011075111106038094, + -0.018789192661643028, + -0.010149717330932617, + -0.008654281497001648, + -0.01607964001595974, + 0.020062534138560295, + -0.05220700427889824, + -0.012911091558635235, + 0.011067708022892475, + 0.00029751405236311257, + -0.013429312035441399, + 0.016523828729987144, + 0.004682491533458233, + 0.005926220677793026, + 0.030264072120189667, + 1.920191789395176e-5, + -0.013784662820398808, + 0.019100124016404152, + 0.014850717037916183, + -0.014946958050131798, + -0.008350752294063568, + 0.02217983454465866, + -0.01551700010895729, + -0.00797319132834673, + 0.02013656497001648, + -0.0006241779774427414, + 0.0410134457051754, + -0.0050452458672225475, + -0.021187812089920044, + 0.0035201972350478172, + 0.014162223786115646, + 0.016153670847415924, + 0.029198018833994865, + -0.020477110520005226, + 0.000825451104901731, + -0.009105873294174671, + 0.00023632239026483148, + 0.011245382949709892, + -0.022401928901672363, + 0.016420183703303337, + 0.0027280603535473347, + 0.006322289351373911, + 0.000355813856003806, + -0.007110724691301584, + -0.02129145711660385, + -2.8470312827266753e-5, + 0.012007907032966614, + 0.0117413941770792, + -0.0131183797493577, + 0.004327140748500824, + 0.02232789620757103, + 0.001435285434126854, + 0.014739669859409332, + -0.0017906366847455502, + 0.019129736348986626, + -0.0019211171893402934, + 0.012133761309087276, + 0.008446993306279182, + -0.005767052993178368, + 0.0012622368521988392, + 0.014169626869261265, + -0.0027687777765095234, + -0.014954361133277416, + -0.0013575524790212512, + -0.029020342975854874, + -0.0029205421451479197, + 0.0002500876144040376, + 0.0031703985296189785, + -0.004049522336572409, + 0.015901964157819748, + -0.0011761753121390939, + 0.0017749049002304673, + 0.010667937807738781, + 0.011637750081717968, + 0.014317690394818783, + 0.018004458397626877, + -0.008284123614430428, + -0.007869547232985497, + -0.008298929780721664, + -0.02665133588016033, + -0.0020192088559269905, + -0.031211676076054573, + -0.008143464103341103, + 0.014110402204096317, + -0.01566506363451481, + -0.004893481265753508, + -0.013147992081940174, + -0.015961188822984695, + -0.004175376147031784, + -0.007891756482422352, + -0.004064328968524933, + 0.011778409592807293, + 0.0002852525794878602, + -0.0003683066461235285, + 0.010179329663515091, + -0.011659959331154823, + -0.014021564275026321, + -0.0048749735578894615, + -0.02041788399219513, + -0.022357510402798653, + 0.018818804994225502, + 0.007225473411381245, + 0.008380364626646042, + -0.023008987307548523, + -0.0177527517080307, + 0.024770935997366905, + 0.01924818754196167, + 0.0051525915041565895, + 0.003905161051079631, + -0.013133185915648937, + -0.008432186208665371, + -0.011763603426516056, + 0.0010605010902509093, + 0.0164053775370121, + 0.01649421639740467, + -0.021780064329504967, + 0.002222795505076647, + 0.004578847438097, + 0.0037607995327562094, + 0.0033092075027525425, + 0.006374111399054527, + -0.0020451198797672987, + 0.004682491533458233, + 0.021173005923628807, + -0.0005885503487661481, + -0.009727737866342068, + 0.02167641930282116, + -0.014902538619935513, + -0.014717459678649902, + 0.013458924368023872, + -0.00832113903015852, + 0.003655304666608572, + -0.02139510028064251, + 0.0034813308157026768, + -0.011541509069502354, + 0.01816732808947563, + -0.010245958343148232, + 0.00572263402864337, + 0.026266371831297874, + -0.004512219224125147, + -0.002500413451343775, + 0.022949760779738426, + 0.0031426367349922657, + -0.012052326463162899, + -0.0046602822840213776, + 0.030323298647999763, + -0.0051970104686915874, + -0.006818300113081932, + 0.005252534057945013, + -0.011652556248009205, + -0.0205067228525877, + 0.0036164382472634315, + -0.018759578466415405, + 0.007566018030047417, + -0.027717389166355133, + 0.0035405559465289116, + -0.008891182020306587, + 0.015398549847304821, + 0.0035572131164371967, + -5.3152296459302306e-5, + 0.009690721519291401, + -0.004678789991885424, + -0.005082261748611927, + 0.02688823640346527, + -0.00545241916552186, + 0.023275500163435936, + 0.003373985178768635, + 0.006855315994471312, + -0.007540107239037752, + -0.013695825822651386, + -0.011289802379906178, + -0.0009078111033886671, + 0.0034979877527803183, + 0.0037015744019299746, + -0.0015037646517157555, + 0.03233695402741432, + 0.030027171596884727, + 0.006644326262176037, + -0.009846188127994537, + -0.023038599640130997, + 0.02018098346889019, + 0.010208941996097565, + 0.0034665244165807962, + 0.024637678638100624, + 0.014769282191991806, + 0.006740567274391651, + 0.006044670939445496, + 0.014695250429213047, + 0.019040899351239204, + 0.003797815414145589, + -0.00964630302041769, + -0.00011347638792358339, + -0.0032074141781777143, + 0.005341371987015009, + -0.003971789497882128, + -0.018063683062791824, + 0.011896859854459763, + 0.003683066461235285, + -0.004031014628708363, + 0.0028539139311760664, + -0.005230324808508158, + -0.005182204302400351, + 0.0027188064996153116, + 0.029538564383983612, + 0.02562970109283924, + 0.0034017469733953476, + 0.018478259444236755, + 0.0001938699570018798, + -0.01342190895229578, + 0.007162546738982201, + 0.008698699995875359, + -0.01330345869064331, + 0.021898513659834862, + -0.0029168406035751104, + 0.004619564861059189, + 0.020077340304851532, + 0.024445198476314545, + 0.016583053395152092, + -0.014036370441317558, + -0.00869129691272974, + 0.0052599371410906315, + 0.01621289551258087, + 0.025037448853254318, + -0.007632646709680557, + 0.00887637585401535, + 0.015650257468223572, + -0.0068701221607625484, + -0.028975924476981163, + 0.013251636177301407, + 0.01220779214054346, + -0.001954431412741542, + -0.006300079636275768, + 0.011889456771314144, + -0.016198089346289635, + -4.508401980274357e-5, + 0.014436140656471252, + -0.013429312035441399, + 0.0010632772464305162, + 0.018611516803503036, + 0.009757350198924541, + -0.008076835423707962, + 0.01696801744401455, + -0.00952785275876522, + 0.01985524594783783, + 0.005230324808508158, + -0.022061383351683617, + 0.002311633201315999, + 0.01622770167887211, + -0.015309711918234825, + 0.004127255640923977, + -0.008846762590110302, + -0.003979192581027746, + -0.005245130974799395, + 0.02274247258901596, + 0.030560199171304703, + -0.006285273469984531, + -0.01701243594288826, + -0.006170524749904871, + 0.0018702205270528793, + 0.001849861815571785, + -0.008328542113304138, + -0.010201538912951946, + -0.0024559947196394205, + 0.008291526697576046, + 0.0008629295625723898, + 0.0002771553990896791, + -0.006081686820834875, + 0.009638899937272072, + 0.01468044426292181, + -0.014591606333851814, + -0.006614713463932276, + 0.004745418205857277, + -0.006018760148435831, + 0.011534105986356735, + 0.01770833134651184, + -0.009261338971555233, + -0.00323887774720788, + 0.0032277728896588087, + 0.0037589487619698048, + -0.0012992526171728969, + 0.013903114013373852, + 0.005163696128875017, + -0.03843715041875839, + 0.02377891354262829, + -0.0021580178290605545, + 0.011948682367801666, + -0.001910012448206544, + -0.001831353991292417, + -0.0021709734573960304, + -0.010349602438509464, + 0.0016259165713563561, + -0.0037941138725727797, + 0.002615162404254079, + 0.00016344765026587993, + -0.006833106279373169, + 0.0010827105725184083, + -0.006833106279373169, + 0.003051948035135865, + -0.007058902643620968, + 0.02506706304848194, + 0.03016042895615101, + 0.006759074982255697, + -0.016301734372973442, + 0.01835981011390686, + 0.007414253428578377, + 0.0024782042019069195, + 0.008513621054589748, + -0.0005866995779797435, + -0.010890032164752483, + 0.015354130417108536, + -0.02003292180597782, + 0.020521529018878937, + -0.00548943504691124, + 0.0158427394926548, + 0.018537484109401703, + -0.011045497842133045, + -0.003318461589515209, + -0.002913139062002301, + 0.0021524655167013407, + -0.011178755201399326, + 0.0008111075148917735, + 0.013858694583177567, + 0.008817150257527828, + 0.025703733786940575, + -0.012940703891217709, + -0.004475203342735767, + -0.018715159967541695, + 0.011837635189294815, + 0.0029334977734833956, + -0.0070700072683393955, + 0.014569397084414959, + 0.018863223493099213, + 0.03266269341111183, + 0.00019375428382772952, + 0.02334953099489212, + -0.009401999413967133, + 0.007817725650966167, + -0.005537555553019047, + 0.01570948213338852, + -0.004393768962472677, + -0.019884858280420303, + -0.014932150952517986, + -0.013814276084303856, + 0.010097894817590714, + 0.002918691374361515, + -0.01078638806939125, + -0.01599080115556717, + 0.007788112852722406, + 0.03221850469708443, + 0.007088514976203442, + 0.015050601214170456, + -0.018019264563918114, + -0.011808022856712341, + -0.010890032164752483, + 0.002865018555894494, + -0.003235175972804427, + 0.007292101625353098, + -0.0024837565142661333, + -0.004204988479614258, + 0.008535830304026604, + -0.012170776724815369, + 0.005315460730344057, + 0.006040969397872686, + 0.02120261825621128, + -0.010290376842021942, + 0.01461381558328867, + -0.01846345327794552, + 0.005141486879438162, + -0.0069811693392694, + -0.015679869800806046, + -0.01090483833104372, + 0.004960109945386648, + -0.010823403485119343, + 0.004316035658121109, + 0.013029541820287704, + -0.0033850898034870625, + -0.004663983825594187, + -0.01920376904308796, + -0.008380364626646042, + -0.0029297962319105864, + 0.0004161957767792046, + 0.007406850345432758, + 0.0005066529847681522, + 0.000496473687235266, + 0.005074858665466309, + -0.01757507584989071, + 0.03923669084906578, + 0.011474880389869213, + 0.0022190939635038376, + 0.0038977579679340124, + 0.014302883297204971, + 0.005370984319597483, + -0.008217494934797287, + -0.00797319132834673, + -0.010564293712377548, + -0.015428162179887295, + -0.0038903546519577503, + -0.0010614264756441116, + -0.0038274279795587063, + 0.005078560207039118, + 0.003533152863383293, + -0.00170735118445009, + 0.010349602438509464, + -0.011282399296760559, + 0.003838532604277134, + -0.0021857796236872673, + -0.012437290512025356, + 0.007199562154710293, + 0.011652556248009205, + 0.011571121402084827, + 0.0005580123397521675, + -0.02102494239807129, + 0.010497665032744408, + -0.004308632574975491, + 0.02875383011996746, + -0.0031963095534592867, + -0.013392296619713306, + -0.008794941008090973, + 0.015294905751943588, + -0.01864112913608551, + -0.00404211925342679, + -0.008839359506964684, + 0.01029777992516756, + 0.014569397084414959, + 0.011430461890995502, + 0.006159419659525156, + 0.011489687487483025, + 0.007440164685249329, + -0.0007759425207041204, + -0.024208296090364456, + 0.0003812621580436826, + -0.014399124309420586, + -0.01924818754196167, + 0.0032555346842855215, + 0.012318839319050312, + -0.006351901683956385, + -0.0017721287440508604, + 0.0001122039757319726, + -0.005922519136220217, + 0.022061383351683617, + -0.00892819743603468, + -0.017811976373195648, + -0.0006884928443469107, + -0.0011521150590851903, + -0.004116150550544262, + -0.00308711314573884, + -0.017278948798775673, + 0.007218070328235626, + -0.0071033211424946785, + 0.0013168350560590625, + 0.007928772829473019, + 0.0025059659965336323, + 0.010327392257750034, + -0.011267592199146748, + 0.002226497046649456, + -0.011067708022892475, + 0.007595630828291178, + -0.01083820965141058, + 0.0041087474673986435, + 0.009905412793159485, + 0.013133185915648937, + -0.02591102197766304, + 0.008513621054589748, + 0.014835909940302372, + 0.008469202555716038, + -0.00605947757139802, + -0.015457774512469769, + -0.002274617552757263, + -0.002520772162824869, + 0.006833106279373169, + 0.008802344091236591, + -0.026029471307992935, + -0.00416056951507926, + -0.03378797322511673, + -0.0022283478174358606, + -0.03221850469708443, + -0.0007097768830135465, + -0.004841659218072891, + -0.02204657718539238, + -0.013532956130802631, + -1.3215777471486945e-5, + -0.001189130824059248, + 0.0003884339821524918, + -0.005182204302400351, + -0.008617265149950981, + 0.013214620761573315, + 0.0005598631105385721, + -0.014961764216423035, + -0.007188457529991865, + -0.008920794352889061, + 0.013310861773788929, + -0.0005339520866982639, + 0.0002898795355577022, + 0.006144613493233919, + -7.761739107081667e-5, + 0.001356626977212727, + 0.0010142313549295068, + -0.019218575209379196, + 0.010090491734445095, + -0.006566592957824469, + 0.011896859854459763, + -0.01677553541958332, + 0.011882053688168526, + 0.0044900099746882915, + 0.007554913405328989, + 0.0054413145408034325, + -0.009853591211140156, + 0.006251959130167961, + -0.012740818783640862, + 0.005426507908850908, + -0.024178683757781982, + -0.012518724426627159, + 0.007292101625353098, + -0.005137785337865353, + 0.0008902286645025015, + 0.010623518377542496, + 0.003823726437985897, + 0.015901964157819748, + -0.0092983553186059, + 0.013873500749468803, + -0.004430784378200769, + -0.010830806568264961, + -0.00694415345788002, + -0.0036442000418901443, + -0.019796019420027733, + 0.007543808780610561, + 0.013155395165085793, + 0.02055114135146141, + 0.00838776770979166, + -0.0008976318058557808, + -0.014880329370498657, + -0.010245958343148232, + -0.0019211171893402934, + -0.007995400577783585, + -0.0001496824115747586, + 0.005833681207150221, + -0.006921944208443165, + -0.008099044673144817, + -0.004512219224125147, + 7.958384958328679e-5, + 0.018892835825681686, + -0.002096941927447915, + -0.015724288299679756, + 0.014643428847193718, + -0.011312011629343033, + 0.007243981119245291, + -0.024504423141479492, + -0.024815354496240616, + 0.023097824305295944, + 0.014702653512358665, + 0.0047491202130913734, + -0.007773306220769882, + 0.007243981119245291, + -0.002641073428094387, + -0.0006843285518698394, + 0.004371559247374535, + 0.01126018911600113, + 0.006392619106918573, + -0.002896481892094016, + 0.022475959733128548, + 0.006085388362407684, + -0.01844864711165428, + 0.004375260788947344, + -0.006910839583724737, + -0.0028909295797348022, + -0.0016675592632964253, + 0.026577305048704147, + -0.012659384869039059, + -0.016138864681124687, + 0.0022283478174358606, + -0.001414001453667879, + -0.009054050780832767, + -0.00773629080504179, + 0.011215770617127419, + -0.004256810527294874, + 0.01071975938975811, + -0.012037520296871662, + 0.013932726345956326, + -0.020862072706222534, + 0.02120261825621128, + -0.029938334599137306, + -0.005507942754775286, + 0.045366495847702026, + 0.00010237166861770675, + 0.01939624920487404, + 0.0023671567905694246, + 0.01151189673691988, + 0.002444889862090349, + 0.0009883203310891986, + -0.0011919069802388549, + 0.009239129722118378, + 0.0008610787335783243, + 0.022209446877241135, + -0.013147992081940174, + -0.002542981645092368, + 0.011711781844496727, + 0.006822001654654741, + 0.008446993306279182, + -0.010105297900736332, + -0.019825633615255356, + 0.0012252210872247815, + 0.013384893536567688, + -0.003868145402520895, + 0.021069360896945, + 0.004638072568923235, + 0.026740172877907753, + -0.00712923239916563, + 0.006585101131349802, + -0.015109826810657978, + -0.010282973758876324, + -0.007869547232985497, + -0.01468044426292181, + 0.0029871705919504166, + 0.009305758401751518, + -0.005115576088428497, + 0.005141486879438162, + -0.015739094465970993, + 0.008654281497001648, + 0.02139510028064251, + -0.0014556441456079483, + 0.0055338540114462376, + -0.00686271907761693, + 0.0014149268390610814, + 0.001910012448206544, + -0.001736038364470005, + 0.003882951568812132, + -0.011534105986356735, + 0.00476392637938261, + -0.005500539671629667, + 0.03275153040885925, + 0.015309711918234825, + -0.025985052809119225, + -0.01677553541958332, + 0.007047797553241253, + 0.001135458005592227, + -0.00484906230121851, + 0.0033906421158462763, + -0.036986131221055984, + 0.007588227745145559, + 0.004893481265753508, + -0.007436463143676519, + 0.010208941996097565, + 0.005111874081194401, + 0.007229174952954054, + -0.010431036353111267, + 0.0038755484856665134, + -0.006925645750015974, + 0.010949256829917431, + -0.007632646709680557, + -0.008528427220880985, + -0.008076835423707962, + 0.024948611855506897, + -0.0006792389322072268, + 0.008750521577894688, + -0.007588227745145559, + -0.016583053395152092, + 0.002811345737427473, + -0.013155395165085793, + 0.006222346797585487, + -0.019277799874544144, + 0.011800619773566723, + -0.013392296619713306, + -0.013444118201732635, + 0.0016555291367694736, + 0.008528427220880985, + -0.020565947517752647, + -0.02129145711660385, + 0.011297205463051796, + -0.004593654070049524, + 0.007144038565456867, + -0.013155395165085793, + 0.0052895499393343925, + -0.0017249337397515774, + 0.0025133690796792507, + -0.03985855355858803, + -0.007018185220658779, + -0.0016037070890888572, + -0.015916770324110985, + 0.01049026194959879, + 0.0012289227452129126, + -0.0177527517080307, + -0.018330195918679237, + 0.03278114274144173, + -0.005285848397761583, + -0.001419553766027093, + 0.022298283874988556, + 0.017441818490624428, + 0.013310861773788929, + 0.009786962531507015, + 0.015620644204318523, + -0.003886653110384941, + 0.0030463957227766514, + -0.002021059626713395, + -0.012911091558635235, + -0.009157694876194, + -0.018048876896500587, + -0.004545533563941717, + -0.0005196084966883063, + -0.0028372567612677813, + -0.00875792559236288, + -0.019233381375670433, + -0.01733817532658577, + -0.046906352043151855, + -0.004156867973506451, + 0.005400597117841244, + 0.010830806568264961, + 0.004053223878145218, + 0.00019757154223043472, + 0.008298929780721664, + 0.014510171487927437, + 0.012429887428879738, + 0.01445094682276249, + -0.012007907032966614, + -0.024815354496240616, + -0.00028039427706971765, + -0.005208115093410015, + 0.0038496374618262053, + -0.010882629081606865, + -0.006085388362407684, + -0.003172249300405383, + -0.035683177411556244, + -0.02879824861884117, + 0.004693596623837948, + 0.006111299619078636, + 0.010986273176968098, + -0.020284628495573997, + 0.031063612550497055, + 0.00014355168968904763, + -0.002565191127359867, + 0.011045497842133045, + -0.020329046994447708, + -0.006648027803748846, + 0.004186480771750212, + -0.023882558569312096, + 0.0034813308157026768, + 0.00446409871801734, + 0.02126184292137623, + -0.011608137749135494, + -0.011726588010787964, + -0.014658235013484955, + -0.005696723237633705, + 0.020432690158486366, + -0.008706103079020977, + -0.0009661109070293605, + -0.006847912911325693, + 0.008350752294063568, + 0.004441889468580484, + 0.0034665244165807962, + -0.015620644204318523, + -0.016138864681124687, + -0.011682168580591679, + -0.002735463436692953, + 0.004734313581138849, + -0.017456624656915665, + -0.0014084490248933434, + -0.015065408311784267, + -0.007058902643620968, + 0.004886078182607889, + 0.02400100789964199, + -0.008232301101088524, + -0.0009082738542929292, + -0.009305758401751518, + -0.0023042301181703806, + 0.0008407200803048909, + -0.005585676059126854, + -0.002811345737427473, + 0.013392296619713306, + -0.006629519630223513, + 0.008446993306279182, + 0.03044174797832966, + 0.03254424408078194, + 0.03822986036539078, + -0.023556819185614586, + -0.007340222131460905, + -0.03218889236450195, + 0.0300567839294672, + -0.0006195510504767299, + -0.011733991093933582, + 0.025111481547355652, + 0.003279594937339425, + 0.008972616866230965, + 0.0177527517080307, + 0.01822655275464058, + -0.013244233094155788, + 0.01251132134348154, + -0.008247108198702335, + 0.008772731758654118, + -0.012711206451058388, + 0.003488733898848295, + 0.012970317155122757, + 0.0011197262210771441, + -0.027065912261605263, + 0.011349027045071125, + 0.018152521923184395, + -0.006666535511612892, + 0.005422806367278099, + 7.351095700869337e-5, + 0.012874076142907143, + -0.0040125069208443165, + 0.0035146449226886034, + -0.009631496854126453, + -0.0003028350474778563, + -0.004297527950257063, + 0.01948508806526661, + -0.010749371722340584, + 0.029538564383983612, + 0.016701504588127136, + 0.024178683757781982, + -0.0383186973631382, + 0.0023208872880786657, + -0.020639978349208832, + 0.021883707493543625, + 0.019411057233810425, + 0.017589882016181946, + 0.004301229491829872, + -0.0022301985882222652, + 0.015428162179887295, + 0.002415277296677232, + -0.01086041983217001, + -0.002115449868142605, + -0.021128587424755096, + 0.012518724426627159, + -0.001726784510537982, + -0.015620644204318523, + -0.004778732545673847, + -0.03458750993013382, + -0.005630094558000565, + -0.03275153040885925, + 0.019603537395596504, + -0.0027151049580425024, + -0.015280099585652351, + 0.01673111692070961, + -0.010697550140321255, + 0.01994408294558525, + -0.007795515935868025, + -0.002672536764293909, + 0.014043773524463177, + 0.009809172712266445, + -0.014887732453644276, + 0.017678719013929367, + 0.013266442343592644, + -0.003377686720341444, + 0.012341049499809742, + -0.0018683697562664747, + 0.0005760575295425951, + 0.030219653621315956, + -0.02217983454465866, + -0.015679869800806046, + 0.012940703891217709, + 0.018478259444236755, + 0.02037346549332142, + 0.0033351185265928507, + 0.010046073235571384, + -0.010342199355363846, + 0.01204492338001728, + 0.03076748736202717, + 0.010734565556049347, + 0.00020902328833471984, + 0.01167476549744606, + -0.024637678638100624, + -0.005467225331813097, + 0.007295803166925907, + -0.003092665458098054, + 0.02209099568426609, + 0.0092983553186059, + -0.01204492338001728, + 0.0013806872302666306, + 0.01766391284763813, + 0.015457774512469769, + 0.010875225998461246, + -0.006314885802567005, + -0.0139623386785388, + 0.009979444555938244, + 0.005163696128875017, + 0.011896859854459763, + 0.013251636177301407, + 0.0032610869966447353, + 0.01013491116464138, + -0.011615540832281113, + -0.014243658632040024, + -0.005100769456475973, + -0.0061964355409145355, + 0.009972041472792625, + 0.00697746779769659, + -0.0038533390033990145, + -0.01901128701865673, + -0.01664227806031704, + 0.009194711223244667, + 0.005378387868404388, + 0.013762453570961952, + 0.00610759761184454, + 0.009261338971555233, + -5.5350104958051816e-5, + 0.0006574921426363289, + 0.027791419997811317, + -0.005019335076212883, + -0.01522087398916483, + 0.018389422446489334, + -0.0032074141781777143, + -0.016627471894025803, + -0.0018359809182584286, + 0.012548337690532207, + -0.0007407775847241282, + -0.003916265908628702, + -0.007588227745145559, + 0.008720909245312214, + -0.012637174688279629, + 0.0011437864741310477, + 0.006340797059237957, + 0.0067183575592935085, + 0.011896859854459763, + -0.006536980625241995, + -0.01029777992516756, + -0.0001507234846940264, + -0.010083088651299477, + 0.022016964852809906, + 0.007488285191357136, + -0.0058706970885396, + 0.011993100866675377, + -0.008069432340562344, + -0.007677065208554268, + -0.008950406685471535, + 0.009860994294285774, + -0.008587652817368507, + 0.014132611453533173, + -0.004486308433115482, + 0.009638899937272072, + 0.022772086784243584, + 0.00899482611566782, + 0.0020229103974997997, + 0.0024596962612122297, + 0.004308632574975491, + -0.0025096675381064415, + 0.0032906997948884964, + -0.013170202262699604, + 0.00911327637732029, + 0.0004242929571773857, + 0.029286857694387436, + 0.019544312730431557, + 0.009631496854126453, + 0.01305175106972456, + -0.016005607321858406, + 0.0030352910980582237, + -0.004889779724180698, + -0.0069811693392694, + -0.007321714423596859, + -0.007025588303804398, + -0.0027743300888687372, + 0.013569971546530724, + -0.013458924368023872, + -0.017841588705778122, + -0.003882951568812132, + -0.016109252348542213, + 0.009009632281959057, + -0.015413356013596058, + 0.02847251109778881, + 0.003033440327271819, + -0.0032610869966447353, + 0.0007680766866542399, + 0.025614894926548004, + 0.02037346549332142, + 0.02977546490728855, + -0.01349594071507454, + 0.003485032357275486, + 0.0205067228525877, + -0.004534428473562002, + 0.0004904586239717901, + -0.02059555985033512, + 0.005541257094591856, + 0.01029777992516756, + 0.010653131641447544, + 0.012059729546308517, + 0.002195033710449934, + 0.0016434990102425218, + 0.013858694583177567, + -0.02289053611457348, + -0.02474132366478443, + -0.02129145711660385, + 0.012940703891217709, + 0.019455475732684135, + 0.015206067822873592, + 0.0035775715950876474, + 0.01270380336791277, + -0.027228781953454018, + -0.01827097125351429, + 0.011030691675841808, + 0.013688422739505768, + -0.013925323262810707, + -0.014976570382714272, + 0.006781284231692553, + -0.02488938719034195, + -0.003516495693475008, + -0.0065480852499604225, + -0.0015037646517157555, + 0.01981082558631897, + 0.007721484173089266, + -0.03319571912288666, + -0.0017249337397515774, + 0.038200248032808304, + -0.03500208631157875, + -0.0015963040059432387, + 0.0009443641756661236, + 0.01588715799152851, + -0.0053339689038693905, + 0.013029541820287704, + 0.00625566067174077, + -0.0031037700828164816, + -0.004504816140979528, + -0.009860994294285774, + -0.03426177427172661, + 0.006307482719421387, + 0.03603852912783623, + -0.015679869800806046, + -0.0011419357033446431, + 0.013681018725037575, + 0.024060234427452087, + 0.021661613136529922, + 0.017071660608053207, + 0.01293330080807209, + -0.015354130417108536, + 0.005626393016427755, + 0.015050601214170456, + 0.006048372481018305, + -0.016301734372973442, + 0.0061631216667592525, + 0.0344986729323864, + 0.011541509069502354, + 0.013392296619713306, + 0.0036886190064251423, + -0.009920219890773296, + -0.010941853746771812, + 0.030278878286480904, + -0.003109322628006339, + 0.010697550140321255, + -0.021054554730653763, + 0.005952131934463978, + -0.0202254019677639, + 0.04116150736808777, + 0.0002473114291206002, + 0.004386365879327059, + -0.00846179947257042, + -0.0023097824305295944, + 0.005015633534640074, + -0.019588731229305267, + 0.010816000401973724, + -0.01948508806526661, + 0.024134265258908272, + -0.011497090570628643, + 0.00994983222335577, + -0.001723082852549851, + 0.02321627549827099, + -0.018048876896500587, + -0.021173005923628807, + 0.0006722984835505486, + 0.011896859854459763, + 0.010875225998461246, + -0.0015963040059432387, + -0.002446740632876754, + -0.02944972552359104, + 0.0049823191948235035, + -0.005389492493122816, + -0.02404542826116085, + -0.003671961836516857, + -0.009364983066916466, + -0.002520772162824869, + -0.021750451996922493, + -0.020536335185170174, + 0.018063683062791824, + -0.002511518308892846, + 0.0011058453237637877, + -0.008913391269743443, + -0.023290306329727173, + 0.017604688182473183, + 0.001811920665204525, + -0.01220779214054346, + 0.007384641095995903, + 0.005700424779206514, + 0.0021617193706333637, + -0.020906493067741394, + -0.024637678638100624, + -0.0015352279879152775, + 0.009513046592473984, + 0.051851656287908554, + -0.00272620958276093, + 0.02343836985528469, + -0.035860851407051086, + -0.011237979866564274, + -0.02530396357178688, + 0.005778157617896795, + -0.0048120468854904175, + -0.01029777992516756, + 0.0076252431608736515, + -0.016153670847415924, + -0.014510171487927437, + 0.012555740773677826, + 0.021928127855062485, + 0.0066554308868944645, + 0.010245958343148232, + -0.002296827035024762, + -0.004538130480796099, + 0.0035090926103293896, + 0.015035795047879219, + -0.005252534057945013, + 0.016760729253292084, + -0.014317690394818783, + -0.02283131144940853, + -0.000989245716482401, + 0.0001236557145603001, + -0.004319737199693918, + -0.0026521780528128147, + -0.004867570474743843, + -0.011593331582844257, + -0.004101344384253025, + -0.004034716170281172, + -0.004893481265753508, + -0.004093941301107407, + -0.012518724426627159, + 0.02610350213944912, + -0.0028853772673755884, + -0.002796539571136236, + 0.005100769456475973, + -0.0008374812314286828, + -0.03843715041875839, + -0.015020988881587982, + 0.003346223384141922, + -0.006577697582542896, + -0.008113850839436054, + 0.005322864279150963, + -0.011785812675952911, + 0.0031111733987927437, + -0.014391721226274967, + 0.0026114608626812696, + -0.014384318143129349, + -0.009157694876194, + 0.0030723067466169596, + -0.004564041271805763, + 0.02223905920982361, + 0.005678215064108372, + 0.0071033211424946785, + -0.01240027416497469, + -0.009357579983770847, + 0.0024485914036631584, + 0.0017795319436118007, + 0.009587077423930168, + 0.004719507414847612, + -0.008165673352777958, + 0.00014216359704732895, + 0.003797815414145589, + 0.0007791814277879894, + 0.0025725942105054855, + 0.012563143856823444, + -0.010023863986134529, + 0.008543233387172222, + -0.0025892513804137707, + 0.008521024137735367, + -0.0031296811066567898, + -0.002872421871870756, + -0.0022468557581305504, + -0.0007120904047042131, + 0.00023354621953330934, + -0.011534105986356735, + -0.027139943093061447, + -0.005574570968747139, + -0.0027243588119745255, + -0.004327140748500824, + -0.007714081089943647, + -0.002900183666497469, + -0.02838367223739624, + -0.0006417604745365679, + -0.010231152176856995, + -0.0013649555621668696, + 0.012992526404559612, + -0.016050027683377266, + -0.006988572422415018, + 0.0031981603242456913, + 0.0038533390033990145, + -0.008543233387172222, + -0.01132681779563427, + -0.023512400686740875, + -0.012837059795856476, + 0.0166866984218359, + 0.022446347400546074, + 0.009483433328568935, + 0.015413356013596058, + -0.007377238012850285, + -0.000942513404879719, + -0.01472486276179552, + -0.028324447572231293, + 0.0030445449519902468, + -0.02447481080889702, + -0.011808022856712341, + 0.007610436994582415, + -0.02217983454465866, + 0.0045233238488435745, + -0.027791419997811317, + 0.029198018833994865, + 0.010571696795523167, + 0.007295803166925907, + 0.009942429140210152, + -0.01049026194959879, + -0.006248257588595152, + -0.0018396824598312378, + 0.0037589487619698048, + 0.013917920179665089, + 0.03426177427172661, + 0.008099044673144817, + -0.007987997494637966, + 0.012059729546308517, + -0.009431611746549606, + 0.0164053775370121, + 0.02936088852584362, + -0.0016546037513762712, + -0.0005783709930256009, + -0.021173005923628807, + 0.01086041983217001, + -0.006573996040970087, + -0.015339324250817299, + -0.006533279083669186, + 0.017130887135863304, + -0.006659132428467274, + 0.006751671899110079, + -0.009261338971555233, + -0.023408757522702217, + 0.020477110520005226, + 0.0025948036927729845, + -0.004452994093298912, + 0.012370661832392216, + -0.002579997293651104, + 0.0007134784827940166, + -0.003964386414736509, + 0.008121253922581673, + 0.00416056951507926, + 0.0014306585071608424, + -0.024385971948504448, + -0.004256810527294874, + 0.00047357016592286527, + -0.010090491734445095, + 0.03473557531833649, + 0.007351326756179333, + 0.008446993306279182, + 0.00030445450101979077, + 0.01840422861278057, + -0.0009031841764226556, + 0.013821679167449474, + -0.014065982773900032, + 0.017278948798775673, + 0.012844462879002094, + -0.004745418205857277, + -0.011956085450947285, + 0.011993100866675377, + 0.007603033911436796, + -0.005944728385657072, + -0.00903924461454153, + -0.006181629374623299, + 0.0027077016420662403, + 0.005959535017609596, + 0.006363006308674812, + 0.012837059795856476, + 0.0010984422406181693, + 0.008187882602214813, + -0.009483433328568935, + 0.0048453607596457005, + 0.00957967434078455, + 0.003583124140277505, + 0.007677065208554268, + -0.013651406392455101, + -0.008424783125519753, + 0.01892244815826416, + 0.00208028475753963, + 0.007429060060530901, + -0.009268742054700851, + 0.0023801124189049006, + 0.005615288391709328, + 0.001289998646825552, + 0.014480559155344963, + -0.01425846479833126, + 0.005037842784076929, + 0.015768706798553467, + 0.004837957676500082, + -0.008587652817368507, + -0.014924747869372368, + 0.01209674496203661, + 0.011119529604911804, + 0.011474880389869213, + 0.015502193942666054, + 0.0020765832159668207 + ], + "d9344f98-b8dc-44e4-ab86-8c23b7d646cc": [ + 0.008251543156802654, + -0.014064050279557705, + -0.01773844100534916, + 0.04073506221175194, + 0.01477675512433052, + -0.008306975476443768, + -0.006952835712581873, + 0.021507861092686653, + -0.013295912183821201, + 0.054070569574832916, + -0.011743798851966858, + 0.002874577883630991, + -0.0011650751112028956, + -0.019734015688300133, + 0.0067588211968541145, + 0.028017234057188034, + -0.01878374256193638, + 0.028207289054989815, + -0.013145452365279198, + 0.0025934551376849413, + 0.03721905127167702, + -0.022188888862729073, + -0.04428275302052498, + 0.016629789024591446, + 0.006406428292393684, + -6.576438318006694e-5, + -0.0351601243019104, + -0.017294980585575104, + -0.057935018092393875, + -0.011450797319412231, + -0.005527425091713667, + 0.01754838600754738, + 0.009241411462426186, + 0.01704157330095768, + 0.00921765435487032, + -0.03655385971069336, + 0.012282286770641804, + -0.0028884359635412693, + -0.02462792582809925, + 0.006628158502280712, + 0.00844159722328186, + 0.015901245176792145, + 0.017453359439969063, + -0.011735879816114902, + -0.039309654384851456, + 0.020351694896817207, + -0.04060836136341095, + -0.00602631876245141, + -0.002854780526831746, + -0.022727377712726593, + 0.013161290436983109, + 0.02689274400472641, + -0.019781529903411865, + 0.05483078956604004, + 0.02583160623908043, + -0.03674391284584999, + 0.02393105812370777, + 0.03547688201069832, + 0.02340840734541416, + -0.04079841449856758, + 0.01388191431760788, + -0.0003828316112048924, + 0.006580645218491554, + -0.008599977008998394, + 0.036617211997509, + -0.006893443409353495, + -0.01895795948803425, + -0.003517992328852415, + -0.0004372743715066463, + 0.009098870679736137, + -0.018197741359472275, + 0.024136951193213463, + -0.0226640272885561, + 0.0019134156173095107, + 0.046119946986436844, + -0.003506113775074482, + 0.05692139267921448, + 0.024026084691286087, + 0.02024082839488983, + -0.024374518543481827, + 0.01917969062924385, + 0.00637475261464715, + 0.006952835712581873, + 0.021317806094884872, + 0.054419003427028656, + -0.009613601490855217, + -0.05799837037920952, + -0.04523302614688873, + 0.0005078024696558714, + -0.016281355172395706, + -0.010761848650872707, + 0.029838591814041138, + 0.04076673835515976, + 0.01670897752046585, + -0.013050424866378307, + -0.007269593421369791, + 0.029442645609378815, + 0.005990683566778898, + -0.032594386488199234, + -0.010437171906232834, + -0.019068824127316475, + 0.022014673799276352, + 0.023424245417118073, + 0.016423895955085754, + 0.02144450880587101, + -0.022268079221248627, + 0.00950273685157299, + 0.0046246652491390705, + -0.01504599954932928, + 0.03433655574917793, + -0.008049610070884228, + -0.036680564284324646, + -0.030804704874753952, + -0.022584836930036545, + -0.039277978241443634, + -0.042255502194166183, + -0.03512844815850258, + -0.041938744485378265, + -0.03363968804478645, + -0.03785256668925285, + 0.04323745146393776, + 0.03284779191017151, + 0.027906369417905807, + 0.0023479678202420473, + -0.022014673799276352, + 0.01813438907265663, + -0.0020450681913644075, + 0.04992104321718216, + 0.022822406142950058, + 0.02670268900692463, + -0.002631070092320442, + -0.026956096291542053, + 0.010738092474639416, + -0.0064420634880661964, + -0.002739955671131611, + 0.012313962914049625, + -0.005527425091713667, + 0.07342448085546494, + -0.022711539641022682, + -0.004988936707377434, + -0.04447280615568161, + -0.004248515237122774, + -0.023281704634428024, + 0.03915127366781235, + -0.016566436737775803, + -0.016566436737775803, + -0.004818679299205542, + 0.06962338089942932, + -0.018403632566332817, + 0.007317107170820236, + -0.043839290738105774, + -0.008025852963328362, + -0.036807265132665634, + 0.014008617028594017, + 0.01099941786378622, + 0.010603469796478748, + 0.005087923724204302, + 0.028444858267903328, + 0.02532479353249073, + 0.029616862535476685, + 0.006897402927279472, + -0.06151438131928444, + 0.024532897397875786, + -0.01898963563144207, + 0.020795155316591263, + -0.004430650733411312, + 0.0640801191329956, + 0.04450448229908943, + -0.009906603023409843, + 0.01778595522046089, + -0.01601211167871952, + -0.030155351385474205, + 0.042635612189769745, + 0.02898334711790085, + 0.023867705836892128, + -0.0060738325119018555, + 0.025198088958859444, + 0.02937929332256317, + 0.013580994680523872, + 0.010255036875605583, + -0.027557935565710068, + -0.027700476348400116, + 0.03161243721842766, + 0.019211364910006523, + 0.034019798040390015, + 0.030883893370628357, + -0.009882845915853977, + 0.011165715754032135, + -0.018229415640234947, + 0.004010946489870548, + -0.004197041969746351, + -0.015956677496433258, + 0.04136858135461807, + 0.019908232614398003, + -0.036300454288721085, + -0.03078886680305004, + -0.013596831820905209, + -0.007503202185034752, + 0.0026409688871353865, + 0.049129147082567215, + 0.012393152341246605, + -0.031248165294528008, + -0.02675020322203636, + 0.031184813007712364, + -0.004414813127368689, + 0.0326894149184227, + -0.018593687564134598, + 0.021729590371251106, + 0.05609782040119171, + -0.03427320346236229, + 0.02285408042371273, + -0.06455525755882263, + 0.037028998136520386, + -0.04453615844249725, + -0.001199720543809235, + 0.013921508565545082, + 0.009336438961327076, + 0.021919645369052887, + 0.0018421451095491648, + -0.009439384564757347, + 0.019955746829509735, + -0.023345056921243668, + -0.016740653663873672, + -0.020430883392691612, + -0.02458041161298752, + 0.005547222215682268, + -0.006224292330443859, + 0.009075113572180271, + -0.03573029115796089, + -0.005491789896041155, + 0.04390264302492142, + 0.004339583218097687, + -0.004521718714386225, + -0.019116338342428207, + -0.0074121346697211266, + 0.018688715994358063, + 0.031723301857709885, + 0.004418772645294666, + -0.008172353729605675, + 0.004010946489870548, + 0.010643064975738525, + 0.021539535373449326, + -0.029949458315968513, + -0.041907068341970444, + 0.007859555073082447, + 0.02039920724928379, + 0.010120414197444916, + 0.04846395552158356, + 0.0221572145819664, + -0.0004330674128141254, + 0.013889833353459835, + -0.0018282869132235646, + 0.0045613134279847145, + -0.0048424359411001205, + -0.020304180681705475, + 0.022980784997344017, + 0.018926283344626427, + -0.02146034687757492, + -0.02725701592862606, + -0.06053243204951286, + 0.01476091705262661, + 0.022822406142950058, + -0.044726211577653885, + 8.797454938758165e-5, + 0.03747245669364929, + -0.0443144291639328, + 0.05131477862596512, + -0.018340282142162323, + 0.00707557937130332, + 0.043015722185373306, + 0.021048560738563538, + -0.02668685093522072, + -0.038422729820013046, + 0.006830092053860426, + -0.00421683955937624, + -0.008156515657901764, + 0.016249679028987885, + -0.0017550366465002298, + 0.0020688248332589865, + -7.226039451779798e-5, + -0.023139163851737976, + 0.023155001923441887, + 0.004145568702369928, + -0.04817887395620346, + 0.0065925233066082, + 0.021381156519055367, + -0.03291114419698715, + 0.016835682094097137, + -0.038581110537052155, + -0.021903807297348976, + 0.011585419997572899, + -0.02038336917757988, + -0.001992605160921812, + -0.0026568067260086536, + 0.0013551298761740327, + 0.013026667758822441, + -0.0027142190374433994, + -0.01310585718601942, + 0.055084194988012314, + 0.0059233722276985645, + -0.010666822083294392, + 0.00614510290324688, + -0.020003261044621468, + -0.037377431988716125, + 0.012551531195640564, + -0.024532897397875786, + 0.02407359890639782, + 0.029965296387672424, + -0.036648888140916824, + 0.024390356615185738, + 0.007954582571983337, + 0.007570513524115086, + -0.04364923760294914, + -0.04713357239961624, + -0.004375218413770199, + 0.0005954058142378926, + -0.015053918585181236, + 0.010468848049640656, + -0.026132525876164436, + 0.00549970893189311, + -0.02076347917318344, + -0.00816443469375372, + -0.04235053062438965, + 0.03253103420138359, + 0.04855898395180702, + -0.0492558516561985, + 0.01792849600315094, + 0.002389542292803526, + -0.04117852449417114, + -0.010722254402935505, + -0.022711539641022682, + -0.02668685093522072, + -0.019480610266327858, + -0.013034586794674397, + -0.02358262427151203, + -0.036997321993112564, + -0.019084662199020386, + -0.04624665156006813, + -0.025546522811055183, + -0.011680446565151215, + -0.03503342345356941, + 0.016138814389705658, + 0.007895190268754959, + 0.001601607073098421, + -0.026971934363245964, + -0.001683766138739884, + 0.004901828244328499, + 0.029759403318166733, + 0.01512518897652626, + -0.009478979744017124, + 0.0010759868891909719, + 0.017643414437770844, + 0.045771513134241104, + 0.013121695257723331, + 0.022442296147346497, + 0.002631070092320442, + -0.021903807297348976, + 0.005234424024820328, + 0.05169488489627838, + -0.019607312977313995, + -0.02651263400912285, + -0.047577034682035446, + -0.015141027048230171, + -0.02125445380806923, + -0.038422729820013046, + 0.0023578666150569916, + -0.0001921582006616518, + -0.01984488219022751, + -0.028191450983285904, + 0.005420519504696131, + -0.016051705926656723, + 0.01914801448583603, + -0.023281704634428024, + -0.021507861092686653, + -0.03430487960577011, + -0.025087224319577217, + 0.045074645429849625, + -0.006659834645688534, + 0.004699895158410072, + 0.009922441095113754, + -0.019100500270724297, + 0.030662164092063904, + -2.2194704797584563e-5, + 0.014650052413344383, + 0.02393105812370777, + 0.01651892438530922, + 0.006176778580993414, + -0.021887969225645065, + -0.007515080738812685, + -0.0020430884324014187, + -0.009352276101708412, + 0.01273366715759039, + -0.013129614293575287, + 0.04523302614688873, + 0.019575636833906174, + 0.0019480609335005283, + 0.007851636037230492, + -0.03592034429311752, + 0.005281937774270773, + 0.00905927550047636, + 0.0007389367674477398, + -0.02286991849541664, + -0.01827692985534668, + 0.009471060708165169, + -0.01539443340152502, + -0.0258632805198431, + -0.013295912183821201, + 0.013858157210052013, + 0.027019446715712547, + 0.02546733431518078, + -0.0013373121619224548, + -0.004201001487672329, + -0.038961220532655716, + 0.010658903047442436, + 0.03867613896727562, + 0.0201933141797781, + -0.020098287612199783, + 0.06924327462911606, + -0.048273902386426926, + -0.01361266989260912, + 0.03458996117115021, + 0.030630487948656082, + 0.03354465961456299, + 0.0055393036454916, + 0.007950622588396072, + 0.029711889103055, + 0.015323163010179996, + -0.002880516927689314, + -0.013232560828328133, + -0.019116338342428207, + 0.025720739737153053, + 0.04836892709136009, + -0.011395364999771118, + 0.013557237572968006, + -0.014768836088478565, + -0.02160288766026497, + -0.01195761002600193, + 0.01424618624150753, + -0.021349482238292694, + -0.01967066526412964, + -0.009439384564757347, + 0.03535018116235733, + -0.013493886217474937, + -0.016035867854952812, + -0.05799837037920952, + -0.029585186392068863, + -0.03538185730576515, + -0.0037555606104433537, + -0.019971584901213646, + -0.024168627336621284, + 0.00676674023270607, + 0.024026084691286087, + -0.10174263268709183, + -0.006430184934288263, + 0.027209501713514328, + -0.006465820129960775, + 0.056858040392398834, + -0.011197390966117382, + 0.03253103420138359, + -0.04501129686832428, + 0.0028132060542702675, + -0.017184115946292877, + 0.03481169044971466, + -0.0019767670892179012, + 0.014388727024197578, + -0.04640502855181694, + 0.008734598755836487, + 0.005531384609639645, + 0.0011086525628343225, + -0.0065133338794112206, + -0.019369743764400482, + -0.013398858718574047, + -0.028207289054989815, + 0.02233143150806427, + 0.013367182575166225, + -0.019591474905610085, + -0.019781529903411865, + -0.013834401033818722, + 0.0015778501983731985, + -0.019734015688300133, + -0.029791079461574554, + 0.02440619468688965, + 0.0007176545914262533, + 0.02497635968029499, + 0.008386164903640747, + -0.0005696692387573421, + -0.015917083248496056, + -0.009779899381101131, + -0.037725865840911865, + 0.0043158261105418205, + 0.038961220532655716, + 0.011894258670508862, + -0.006659834645688534, + 0.0319608710706234, + 0.008156515657901764, + -0.0006780598196201026, + 0.010928146541118622, + -0.024136951193213463, + -0.007546756416559219, + -0.023424245417118073, + -0.0008131768554449081, + -0.031248165294528008, + 0.02405776083469391, + 0.0033497146796435118, + -0.028682425618171692, + 0.03674391284584999, + 0.024168627336621284, + 0.03199254721403122, + -0.01986072026193142, + -0.03706067427992821, + -0.040545009076595306, + 0.026591824367642403, + -0.006093629635870457, + 0.013485967181622982, + -0.005788750480860472, + 0.02125445380806923, + -0.006917200516909361, + -0.008932572789490223, + 0.025578198954463005, + 0.012195178307592869, + -0.0027637125458568335, + -0.015885407105088234, + -0.0074121346697211266, + 0.011466635391116142, + -0.028539884835481644, + -0.01055595651268959, + -0.017310818657279015, + -0.0226640272885561, + 0.02724117785692215, + -0.02038336917757988, + -0.042287178337574005, + 0.010239198803901672, + -0.02529311738908291, + -0.009692790918052197, + -0.014293699525296688, + -0.012456503696739674, + -0.008956328965723515, + 0.013216722756624222, + 0.003729823976755142, + -0.024358680471777916, + -0.03408314660191536, + 0.043332479894161224, + -0.009716548025608063, + 0.018878769129514694, + -0.010627226904034615, + 0.04187539219856262, + 0.007016187068074942, + -0.005167113151401281, + 0.008932572789490223, + 0.010896471329033375, + -0.026290904730558395, + 0.01073017343878746, + -0.004814719781279564, + -0.020810993388295174, + -0.023772679269313812, + -0.04019657522439957, + 0.012971235439181328, + -0.018514499068260193, + -0.0017362291691824794, + -0.04197042062878609, + 0.01688319444656372, + 0.01520437840372324, + -0.0009666064870543778, + 0.011680446565151215, + -0.024311168119311333, + -0.0014719342580065131, + -0.04399767145514488, + 0.02758961170911789, + 0.015600325539708138, + 0.02123861573636532, + 0.005879817996174097, + 0.015719110146164894, + 0.028777454048395157, + -0.026417607441544533, + -0.009083032608032227, + 0.023598462343215942, + 0.00825946219265461, + -0.007475486025214195, + -0.0031418423168361187, + -0.015497379936277866, + 0.0033061604481190443, + -0.023661814630031586, + -0.004454407840967178, + -0.032784439623355865, + 0.0048701525665819645, + -0.0016174449119716883, + 0.005527425091713667, + -0.0072893910109996796, + -0.009201816283166409, + 0.03883451595902443, + 0.02182461880147457, + 0.02427949197590351, + -0.014412484131753445, + 0.009510655887424946, + -0.0020628857892006636, + 0.010856876149773598, + -0.00898008607327938, + 0.002985442988574505, + 0.013216722756624222, + -0.02003493532538414, + 0.006093629635870457, + 0.03319622576236725, + 0.012606963515281677, + -0.023519271984696388, + -0.007451729383319616, + 0.038739487528800964, + -0.025403982028365135, + 0.0209218580275774, + 0.008995924144983292, + 0.005543263163417578, + 0.01914801448583603, + -0.03215092420578003, + 0.0467851385474205, + -0.013755210675299168, + 0.04200209677219391, + -0.0007720973226241767, + 0.029838591814041138, + 0.02779550477862358, + 0.016962384805083275, + 0.006347035989165306, + 0.01914801448583603, + -0.027146151289343834, + 0.04095679521560669, + -0.0025063466746360064, + -0.04200209677219391, + 0.03465331345796585, + -0.019765691831707954, + 0.003939676098525524, + -0.0019441015319898725, + -0.039277978241443634, + -0.02690858207643032, + -0.013287993147969246, + 0.02461208775639534, + -0.021365318447351456, + 0.006774659268558025, + -0.015790380537509918, + 0.031216489151120186, + 0.0018777803052216768, + -0.0031774775125086308, + 0.005321532487869263, + -0.004161406774073839, + 0.0017758238827809691, + 0.035255152732133865, + 0.0631931945681572, + -0.014190752990543842, + 0.020826831459999084, + -0.024849655106663704, + 0.024881331250071526, + 0.027684638276696205, + 0.019369743764400482, + 0.013153371401131153, + 0.01600419171154499, + -0.011743798851966858, + 0.031564924865961075, + -0.012155584059655666, + -0.022885756567120552, + -0.011213229037821293, + -0.010801443830132484, + 0.012013042345643044, + 0.005111680366098881, + -0.019052986055612564, + -0.022236403077840805, + 0.04434610530734062, + -0.030329568311572075, + 0.03975311294198036, + 0.008251543156802654, + 0.00844159722328186, + -0.001052230130881071, + -0.00886922050267458, + 0.04146360605955124, + 0.0002749359409790486, + -0.01397694181650877, + 0.00993036013096571, + 0.007760568056255579, + 0.0008438628283329308, + -0.01860952563583851, + 0.034716665744781494, + 0.010508443228900433, + 0.013660184107720852, + -0.01986072026193142, + -0.02250564843416214, + -0.03481169044971466, + -0.022078024223446846, + 0.0445995107293129, + -0.015196459367871284, + -0.0031814370304346085, + -0.00013016769662499428, + -0.007336904294788837, + -0.04304739460349083, + 0.0032546871807426214, + -0.01334342546761036, + 0.00958192627876997, + 0.002967625390738249, + 0.028555722907185555, + 0.0028864562045782804, + 0.016613950952887535, + -0.0007176545914262533, + -0.01460253819823265, + -0.00131751480512321, + 0.0039535341784358025, + -0.02090601995587349, + -0.01027087401598692, + -0.025388143956661224, + -0.03408314660191536, + 0.015053918585181236, + -0.013319669291377068, + -0.017184115946292877, + -0.02408943697810173, + -0.016376381739974022, + 0.0036328169517219067, + 0.007309188134968281, + -0.007590310648083687, + 0.0014036333886906505, + -0.00501665286719799, + 0.01935390755534172, + 0.00750716170296073, + -0.013177127577364445, + -0.018577849492430687, + -0.03658553585410118, + 0.01353348046541214, + -0.01522021647542715, + 0.03354465961456299, + -0.00044049142161384225, + -0.02968021295964718, + -0.018688715994358063, + 0.0064539420418441296, + -0.0044029345735907555, + -0.0268769059330225, + 0.0183086059987545, + 0.0023242109455168247, + 0.025894956663250923, + -0.0017045533750206232, + -0.000540468143299222, + 0.012258529663085938, + -0.032942820340394974, + -0.011023174040019512, + -0.002300454070791602, + -0.002995341783389449, + 0.0065766857005655766, + 0.003991149365901947, + 0.03582531586289406, + 0.0121318269520998, + -0.006925119087100029, + -0.027890531346201897, + 0.0064776986837387085, + 0.0007765517220832407, + 0.025894956663250923, + 0.011561662890017033, + -0.012108069844543934, + -0.011300337500870228, + 0.016487248241901398, + -0.0324043333530426, + 0.01476091705262661, + -0.006164900492876768, + -0.02918923832476139, + 0.004676138050854206, + 0.031897518783807755, + 0.005507627502083778, + -0.02427949197590351, + 0.032942820340394974, + -0.011585419997572899, + -0.006295562721788883, + -0.012353557161986828, + -0.003230930306017399, + 0.006457901559770107, + 0.011846744455397129, + 0.004874112084507942, + 0.0066360775381326675, + 0.027652963995933533, + 0.012440665625035763, + 0.048939093947410583, + 0.02899918518960476, + 0.006826132535934448, + -0.009257249534130096, + -0.004375218413770199, + -0.03816932439804077, + -0.014523348771035671, + -0.032277628779411316, + -0.009281005710363388, + 0.010453009977936745, + -0.019290555268526077, + -0.05464073643088341, + 0.01669314131140709, + 0.004699895158410072, + 0.0460565946996212, + -0.029474321752786636, + 0.0403866283595562, + -0.02006661146879196, + 0.0072775124572217464, + -0.011300337500870228, + -0.016067543998360634, + -0.01952812448143959, + -0.008687084540724754, + 0.017690928652882576, + 0.02180878072977066, + -0.027684638276696205, + -0.0039020611438900232, + 0.017833469435572624, + -0.03322790190577507, + -0.019971584901213646, + 0.002773611107841134, + -0.03801094740629196, + 0.02652847208082676, + 0.010666822083294392, + -0.027716314420104027, + -0.0403866283595562, + -0.035761963576078415, + -0.004545475821942091, + -0.009526493027806282, + 0.020684290677309036, + 0.0214286707341671, + 0.020826831459999084, + 0.02374100312590599, + 0.008037731051445007, + -0.014721322804689407, + 8.587108459323645e-5, + 0.03272109106183052, + 0.03344963118433952, + 0.016930708661675453, + 0.009724467061460018, + 0.0010423314524814487, + -0.00030809652525931597, + 0.01970233954489231, + 0.0018322464311495423, + 0.027732152491807938, + -0.009993711486458778, + -0.010088738985359669, + -0.003676371183246374, + 0.007633864879608154, + 0.0058006285689771175, + -0.007724932860583067, + -0.00509584229439497, + -0.031184813007712364, + 0.02231559343636036, + 0.03074135258793831, + 0.04117852449417114, + -0.035223476588726044, + 0.012773261405527592, + -0.053183648735284805, + 0.03354465961456299, + 0.0002122030418831855, + -0.028270641341805458, + -0.0035694653633981943, + -0.0281122624874115, + -0.009637358598411083, + 0.0017580062849447131, + 0.0023638056591153145, + 0.004006987437605858, + 0.0054601142182946205, + 0.04450448229908943, + 0.04371258616447449, + 0.014357050880789757, + 0.017263304442167282, + 0.02055758610367775, + -0.012100150808691978, + -0.0032289507798850536, + -0.00039446254959329963, + 0.024390356615185738, + -0.024485385045409203, + 0.014737160876393318, + 0.021872131153941154, + -0.006537090986967087, + -0.013652265071868896, + -0.00633515790104866, + -0.0209218580275774, + 0.01669314131140709, + 0.009114707820117474, + -0.006525212433189154, + -0.0022509607952088118, + 0.02073180302977562, + -0.007372539956122637, + -0.018229415640234947, + 0.025372305884957314, + 0.018767904490232468, + 0.0030289972200989723, + -0.04516967386007309, + 0.011229067109525204, + -0.028524046763777733, + -0.03113730065524578, + 0.015236054547131062, + -0.016946546733379364, + -0.0024806102737784386, + -0.015275648795068264, + -0.016423895955085754, + -0.020953534170985222, + 0.012393152341246605, + 0.01789681985974312, + -0.0019203446572646499, + 0.006061953958123922, + -0.008623733185231686, + 0.009019680321216583, + -0.002872598124668002, + -0.025213927030563354, + -0.022363105788826942, + -0.013470129109919071, + 0.031168974936008453, + -0.0061332243494689465, + -0.029395131394267082, + 0.0010928147239610553, + 0.0017847326816990972, + -0.00491766631603241, + -0.034368231892585754, + -0.03357633575797081, + 0.0005998602719046175, + 0.03924630209803581, + -0.01845114678144455, + -0.006057994440197945, + 0.0034407824277877808, + 0.020510073751211166, + 0.006731105037033558, + 0.013169209472835064, + 0.020779317244887352, + 0.004901828244328499, + -0.041590310633182526, + 0.048400603234767914, + 0.0013274134835228324, + 0.007229998707771301, + -0.0276054497808218, + 0.0014867823338136077, + -0.006647956091910601, + -0.014269942417740822, + 0.0032665657345205545, + 0.021523697301745415, + 0.01011249516159296, + -0.023281704634428024, + -0.0045613134279847145, + -0.01195761002600193, + -0.019464772194623947, + -0.025229765102267265, + -0.006248049437999725, + 0.016471410170197487, + -0.0032685454934835434, + -0.012543612159788609, + -0.02985442988574505, + -0.004201001487672329, + -0.023440083488821983, + -0.025514846667647362, + 0.015734948217868805, + -0.04041830450296402, + 0.006054034922271967, + -0.007788284681737423, + 0.017168277874588966, + 0.028048910200595856, + 0.016914870589971542, + -0.009130545891821384, + 0.00527005922049284, + 0.0040703387930989265, + 0.030662164092063904, + 0.009114707820117474, + -0.004383137449622154, + 0.004236636683344841, + 0.026813555508852005, + -0.03519180044531822, + -0.006473739165812731, + 0.024722952395677567, + 0.017991848289966583, + -0.01737416908144951, + -0.016249679028987885, + -0.014206591062247753, + 0.014784674160182476, + -0.01415115874260664, + -0.010215441696345806, + 0.0047711655497550964, + 0.007713054306805134, + -0.03582531586289406, + 0.04216047376394272, + -0.012567369267344475, + 0.007344823330640793, + -0.011450797319412231, + -0.010524280369281769, + -0.02458041161298752, + 0.004893909208476543, + -0.023772679269313812, + -0.008845464326441288, + -0.022632351145148277, + -0.021587049588561058, + -0.02283824421465397, + 0.006180738098919392, + -0.025958308950066566, + -0.014159077778458595, + 0.03474833816289902, + -0.031549084931612015, + -0.026053335517644882, + -0.03354465961456299, + -0.004545475821942091, + 0.00959776435047388, + -0.008402002975344658, + -0.006077792029827833, + -0.017184115946292877, + -0.020874343812465668, + 0.010326307266950607, + -0.0281122624874115, + 0.0012571328552439809, + 0.03677558898925781, + 0.02001909911632538, + 0.016059624031186104, + 0.0003452165983617306, + -0.014618376269936562, + 0.00333585636690259, + -0.018926283344626427, + -0.016297193244099617, + 0.011411203071475029, + -0.023978572338819504, + 0.05166321247816086, + 0.023170839995145798, + 0.029331780970096588, + 0.008211947977542877, + -0.012884126976132393, + 0.0010957843624055386, + 0.028349829837679863, + 0.006069872993975878, + -0.03161243721842766, + -0.019971584901213646, + 0.006438103970140219, + 0.005733317695558071, + 0.03829602897167206, + 0.022901594638824463, + -0.011965529061853886, + 0.024358680471777916, + 0.013493886217474937, + -0.024849655106663704, + -0.00047117736539803445, + 0.007237917743623257, + 0.00530965393409133, + -0.007966460660099983, + 0.01951228640973568, + -0.014998486265540123, + -0.015251891687512398, + 0.004117852542549372, + -0.046119946986436844, + -0.015624082647264004, + -0.013636427000164986, + -0.005242343060672283, + -0.007974379695951939, + 0.020161639899015427, + -0.0013808663934469223, + -0.003745662048459053, + -0.11859415471553802, + -0.01584581285715103, + 0.011070688255131245, + -0.010975660756230354, + 0.01460253819823265, + -0.013660184107720852, + -0.005559100769460201, + 0.013969022780656815, + 0.0011848724680021405, + -0.005630371160805225, + 0.014610457234084606, + 0.010872714221477509, + 0.012060556560754776, + 0.030535459518432617, + 0.016804005950689316, + -0.000962647027336061, + -0.011141958646476269, + -0.015251891687512398, + 0.004212880041450262, + -0.017991848289966583, + -0.027542097494006157, + 0.007356701884418726, + 0.015402352437376976, + -0.003765459405258298, + -0.029284266754984856, + 0.025768253952264786, + 0.026100849732756615, + -0.001875800546258688, + -0.01723162829875946, + 2.90928510366939e-5, + 0.01984488219022751, + 0.015600325539708138, + -0.0009868987835943699, + -0.011902177706360817, + -0.009779899381101131, + 0.00931268185377121, + 0.029236752539873123, + -0.007918947376310825, + 0.023836031556129456, + 0.023598462343215942, + 0.005919413175433874, + 0.007689297664910555, + -0.011585419997572899, + -0.008607895113527775, + 0.009526493027806282, + 0.020098287612199783, + 0.005935250781476498, + -0.04067171365022659, + 0.0004325724730733782, + 0.0009834342636168003, + 0.013763129711151123, + 0.012393152341246605, + -0.010595550760626793, + -0.02125445380806923, + -0.0022806567139923573, + -0.00019883981440216303, + 0.029585186392068863, + -0.0064776986837387085, + 0.020842669531702995, + 0.012868288904428482, + 0.0688631609082222, + 0.002191568724811077, + -0.0138027248904109, + -0.010603469796478748, + -0.03215092420578003, + 0.0015719110378995538, + 0.004913706798106432, + 0.026465121656656265, + 0.017516711726784706, + 0.007186444476246834, + 0.011625014245510101, + -0.02708279900252819, + -0.022046348080039024, + 0.02358262427151203, + 0.018055198714137077, + 0.002615232253447175, + 0.00036328169517219067, + 0.02408943697810173, + -0.00501665286719799, + -0.012622801586985588, + -0.007847676984965801, + -0.0008582159061916173, + 4.779208393301815e-5, + 1.4005090633872896e-5, + -0.023598462343215942, + -0.014966810122132301, + -0.00422079861164093, + -0.01791265793144703, + 0.01545778475701809, + 0.016740653663873672, + 0.01843530870974064, + 0.0023657854180783033, + 0.01951228640973568, + 0.019132176414132118, + -0.03300617262721062, + 0.07095376402139664, + -0.01614673249423504, + 0.01794433407485485, + 0.0005894666537642479, + 0.0029715849086642265, + -0.00032616162206977606, + -0.0036347967106848955, + 0.0031695584766566753, + -0.00923349242657423, + 0.003624898148700595, + 0.0019668685272336006, + -0.011807150207459927, + -0.004988936707377434, + -0.01460253819823265, + -0.023329218849539757, + -0.013858157210052013, + -0.003921858500689268, + -0.022188888862729073, + 0.004636543337255716, + -0.011300337500870228, + 0.013810643926262856, + -0.02336089313030243, + -0.024928845465183258, + 0.002547921147197485, + -0.002652847208082676, + -0.016130894422531128, + 0.021713752299547195, + -4.837981759919785e-5, + -0.00509584229439497, + -0.00435542082414031, + 0.012092231772840023, + -0.016645627096295357, + -0.028365667909383774, + 0.0046246652491390705, + 0.009779899381101131, + -0.026306742802262306, + -0.016788167878985405, + -0.025768253952264786, + -9.68215026659891e-5, + -0.012884126976132393, + -0.0022212646435946226, + 0.008877139538526535, + 0.0013957144692540169, + 0.029474321752786636, + -0.04551810771226883, + -0.013161290436983109, + 0.0018451146315783262, + 0.0025736577808856964, + 0.004612786695361137, + -0.0067231860011816025, + 0.007812041323632002, + -0.004509840160608292, + 0.0005696692387573421, + -0.007079538889229298, + 0.001927273697219789, + -0.046690113842487335, + 0.01345429103821516, + 0.030012808740139008, + 0.017089087516069412, + -0.009558169171214104, + -0.035065099596977234, + -0.0018282869132235646, + 0.009550250135362148, + -0.025229765102267265, + -0.009360195137560368, + -0.01865703985095024, + 0.00750716170296073, + 0.030139513313770294, + 0.01186258252710104, + 0.007907068356871605, + -0.01282869465649128, + -0.015236054547131062, + 0.010769767686724663, + -0.029046697542071342, + -0.00783579796552658, + 0.010262954980134964, + 0.011363688856363297, + -0.006509374361485243, + -0.019433096051216125, + -0.02036753110587597, + 0.002718178555369377, + -0.027526259422302246, + 0.0040347035974264145, + 0.016930708661675453, + -0.01601211167871952, + -0.02128612995147705, + 0.009399790316820145, + 0.006517293397337198, + -0.010516361333429813, + 0.0021935482509434223, + 0.011910096742212772, + -0.0004397490411065519, + 0.02039920724928379, + -0.022188888862729073, + -0.00905927550047636, + 0.046341679990291595, + 0.0013046464882791042, + 0.0005221555475145578, + 0.022711539641022682, + -0.0024014206137508154, + 0.0021658320911228657, + 0.03004448488354683, + 0.006101548671722412, + -0.021587049588561058, + -0.021143589168787003, + 0.017168277874588966, + -0.005547222215682268, + 0.003886223305016756, + 0.007661581505089998, + 0.013921508565545082, + -0.017532549798488617, + -0.04377593845129013, + 0.04326912760734558, + 0.02407359890639782, + -0.012765342369675636, + -0.012171422131359577, + 0.007867474108934402, + 0.007526959292590618, + -0.018229415640234947, + 0.001681786379776895, + -0.02358262427151203, + -0.007016187068074942, + -0.010943984612822533, + 0.01898963563144207, + -0.029046697542071342, + 0.007713054306805134, + 0.00738837756216526, + 0.03924630209803581, + -0.01811855100095272, + 0.003624898148700595, + 0.006964713800698519, + -0.0006028298521414399, + -0.019623151049017906, + -0.02668685093522072, + 0.01650308631360531, + -0.009653196670114994, + -0.009859088808298111, + -0.0016491207061335444, + 0.003438802668824792, + -0.030693838372826576, + 0.007431931793689728, + 0.025815768167376518, + 0.0015352858463302255, + 0.016091300174593925, + -0.013509723357856274, + -0.021048560738563538, + -0.006849889177829027, + -0.011918015778064728, + -0.007328985724598169, + 0.016930708661675453, + 0.03078886680305004, + -0.02074764110147953, + -0.026085011661052704, + -0.00711517408490181, + 0.0004031239077448845, + 0.019084662199020386, + -0.0030606731306761503, + -0.006659834645688534, + 0.010896471329033375, + -0.004509840160608292, + -0.011126120574772358, + 0.04726027697324753, + 0.0030745312105864286, + 0.022964946925640106, + -0.0023954815696924925, + -0.01556865032762289, + -0.01416699681431055, + 0.014911377802491188, + -0.022046348080039024, + 0.02283824421465397, + 0.0023123326245695353, + 0.004323745146393776, + 0.006022359244525433, + 0.041748687624931335, + -0.004201001487672329, + -0.001176953548565507, + 0.005602655000984669, + -0.020668452605605125, + 0.002146034734323621, + 0.0071270521730184555, + 0.00426039332523942, + -0.010389658622443676, + -0.0056778849102556705, + -0.008251543156802654, + 0.01740584522485733, + -0.020098287612199783, + -0.016788167878985405, + -0.01230604387819767, + 0.007257714867591858, + 0.015085593797266483, + -0.01099941786378622, + 0.004327704664319754, + -0.0180868748575449, + 0.030899731442332268, + -0.019813206046819687, + 0.015909165143966675, + 0.00336357275955379, + 0.018387794494628906, + 0.0019173750188201666, + 0.0023796434979885817, + 0.0031774775125086308, + 0.01203679945319891, + 0.0021499942522495985, + 0.014459997415542603, + -0.008386164903640747, + 0.0061332243494689465, + 0.00707557937130332, + -0.016550598666071892, + 0.006267846561968327, + 0.0011452777544036508, + -0.00021108942746650428, + -0.0036684521473944187, + -0.0035952019970864058, + 0.017880981788039207, + -0.006081751547753811, + 0.004074298311024904, + -0.013691859319806099, + -0.010397577658295631, + -0.009439384564757347, + 0.0011809129500761628, + -0.0025241642724722624, + 0.000114453534479253, + 0.0025835565757006407, + 0.018752066418528557, + -0.030836379155516624, + 0.014539186842739582, + -0.005436357110738754, + 0.028001397848129272, + -0.0031240247189998627, + -0.011672528460621834, + 0.0030369162559509277, + 0.00023793961736373603, + 0.0006216373294591904, + 0.0030072201043367386, + 0.0007493303855881095, + -0.03023453988134861, + 0.014816350303590298, + -0.015180621296167374, + -0.006913240998983383, + -0.006113427225500345, + 0.009051356464624405, + -0.004644462373107672, + -0.011910096742212772, + -0.01567951589822769, + -0.004901828244328499, + 0.01563200168311596, + 0.019892394542694092, + -0.014966810122132301, + 0.0022766971960663795, + -0.00686176773160696, + 0.017880981788039207, + 0.013873995281755924, + 0.03284779191017151, + 0.012187259271740913, + -0.008892977610230446, + 0.014016536064445972, + 0.010587632656097412, + -0.0012769302120432258, + -0.026100849732756615, + 0.012377314269542694, + 0.03756748512387276, + 0.014016536064445972, + 0.02177710458636284, + -0.02708279900252819, + -0.033671364188194275, + -0.02058926224708557, + -0.011213229037821293, + 0.019829044118523598, + 0.0485273078083992, + 0.012820775620639324, + 0.007895190268754959, + -0.008378245867788792, + -0.007970420643687248, + 0.0025004076305776834, + -0.00633515790104866, + -0.009304762817919254, + -0.02936345525085926, + -0.016914870589971542, + -0.0066637941636145115, + 0.0009344357531517744, + 0.020145801827311516, + -0.008425760082900524, + 0.0030289972200989723, + -0.0010868754470720887, + 0.006719226483255625, + 0.015861650928854942, + -0.004032723605632782, + -0.06046907976269722, + -0.00171544193290174, + -0.008029812015593052, + -0.0004674653464462608, + -0.0281122624874115, + 0.02055758610367775, + -0.00597088597714901, + 0.0072775124572217464, + -0.011149877682328224, + -0.01310585718601942, + -0.0014194712275639176, + 0.01843530870974064, + 0.009613601490855217, + 0.008037731051445007, + -0.006014440208673477, + 0.021001048386096954, + -0.03554023429751396, + -0.01705741137266159, + -0.026401769369840622, + 0.012939559295773506, + 0.0003533830167725682, + 0.02229975536465645, + -0.02391522005200386, + 0.0032388493418693542, + 0.013145452365279198, + 0.017880981788039207, + 0.00347047857940197, + -0.019575636833906174, + -0.016661465167999268, + 0.008069407194852829, + -0.0004855304432567209, + -0.01721579022705555, + -0.03219844028353691, + -0.005551181733608246, + 0.004430650733411312, + 0.01634470745921135, + 0.01759590022265911, + -0.013462210074067116, + -0.023804355412721634, + 0.0017758238827809691, + -0.011799231171607971, + -0.016946546733379364, + -0.014729241840541363, + -0.004090136382728815, + 0.0002843397087417543, + 0.006865727249532938, + -0.005222545471042395, + -0.017991848289966583, + 0.016645627096295357, + 0.014040293172001839, + 0.007372539956122637, + 0.007016187068074942, + 0.013335507363080978, + -0.0028092465363442898, + -0.013969022780656815, + 0.00589169654995203, + -0.002211366081610322, + -0.031897518783807755, + -0.007202282547950745, + -0.005032490938901901, + -0.0013214743230491877, + -0.015323163010179996, + -0.017168277874588966, + -0.01669314131140709, + -0.0021856294479221106, + -0.013066262938082218, + 0.010611388832330704, + 0.0039891693741083145, + -0.0005810527363792062, + -0.014341212809085846, + 0.014174914918839931, + 0.005527425091713667, + -0.001663968781940639, + 0.0012670315336436033, + -0.013810643926262856, + 0.006469779647886753, + -0.01567951589822769, + 0.033322930335998535, + 0.017611738294363022, + 0.012923721224069595, + -0.01038173958659172, + 0.013945265673100948, + -0.014301618561148643, + 0.007938744500279427, + 0.02199883572757244, + -0.011553743854165077, + -0.029996972531080246, + -0.022743215784430504, + 0.014277861453592777, + -0.030868055298924446, + -0.0054838708601891994, + -0.014064050279557705, + 0.011680446565151215, + -0.011371607892215252, + -0.011229067109525204, + 0.028381505981087685, + 0.015093512833118439, + -0.008148596622049809, + 0.0022588795982301235, + 0.000346206477843225, + 0.010833119973540306, + 0.02212553843855858, + 0.009162222035229206, + -0.016455572098493576, + -0.004695935640484095, + -0.026338418945670128, + 0.004204961005598307, + 0.03253103420138359, + -0.022062186151742935, + 0.00530965393409133, + -0.004272271879017353, + 0.012179340235888958, + 0.0011373588349670172, + -0.019623151049017906, + -0.014372888952493668, + -0.006287644151598215, + 0.014713403768837452, + 0.008995924144983292, + 0.013478048145771027, + -0.005559100769460201, + -0.004949341993778944, + 0.01267031580209732, + 0.0006726155406795442, + -0.01020752266049385, + -0.018688715994358063, + 0.00993036013096571, + -0.00045855651842430234, + -0.006168860010802746, + -0.016740653663873672, + 0.01598835363984108, + -0.0019351927330717444, + -0.0011710142716765404, + -0.013177127577364445, + 0.004592989105731249, + 0.01581413671374321, + -0.01754838600754738, + -0.006564807146787643, + 0.001726330490782857, + -0.007720973342657089, + -0.003383370116353035, + -0.005776871927082539, + -0.019623151049017906, + 0.002334109740331769, + 0.008988005109131336, + 0.008821707218885422, + -0.010397577658295631, + -0.007796203251928091, + -0.003122044960036874, + -0.0032507278956472874, + -0.008940490894019604, + 0.004391056019812822, + 0.002191568724811077, + 0.009874926880002022, + 0.0006617270410060883, + 0.013042505830526352, + 0.00316757895052433, + -0.010928146541118622, + -0.0057412367314100266, + 0.0026033539324998856, + 0.001786712440662086, + -0.018577849492430687, + -0.006137183867394924, + -0.010951903648674488, + 0.09800489246845245, + -0.0025518806651234627, + -0.00443461025133729, + 0.01407196931540966, + 0.014642133377492428, + -0.01415115874260664, + -0.0009057295974344015, + 0.015536974184215069, + 0.012939559295773506, + 0.0009057295974344015, + 0.0071904039941728115, + -0.015869570896029472, + 0.02234726957976818, + -0.004201001487672329, + -0.012686152942478657, + 0.007519040256738663, + 0.008283218368887901, + 0.0216504018753767, + 0.0011581460712477565, + 0.0009091941174119711, + 0.008742517791688442, + -5.83713008381892e-5, + -0.017310818657279015, + 0.020668452605605125, + 0.00028211247990839183, + 0.005697682499885559, + -0.0038426690734922886, + 7.5206799010629766e-6, + 0.014531267806887627, + 0.022568998858332634, + 0.0025340630672872066, + -0.0013996738707646728, + -0.025974147021770477, + -0.011403284035623074, + -5.5216096370713785e-5, + 0.021697914227843285, + -0.010643064975738525, + 0.015006404370069504, + -0.004893909208476543, + 0.034019798040390015, + -0.0022410620003938675, + -0.002771631581708789, + 0.00575311528518796, + 0.00479888217523694, + -0.0006107487715780735, + -0.0070914169773459435, + 0.002547921147197485, + 0.0016847560182213783, + -0.0007424012874253094, + -0.01090439036488533, + -0.001983696362003684, + -0.0037040875758975744, + 0.008105042390525341, + -0.008758355863392353, + 0.01584581285715103, + 0.0058877370320260525, + 0.010548037476837635, + -0.015410271473228931, + 0.0011106323217973113, + 0.011395364999771118, + -0.012717829085886478, + 0.003327937563881278, + -0.024200301617383957, + -0.022268079221248627, + 0.004818679299205542, + -0.015782462432980537, + -0.01865703985095024, + -0.00418120389804244, + 0.0070914169773459435, + 0.02006661146879196, + 0.012915803119540215, + 0.015925003215670586, + 0.00905927550047636, + -0.019781529903411865, + -0.004541516304016113, + 0.004307907074689865, + 0.005285897292196751, + 0.0018767904257401824, + -0.009455222636461258, + 0.004173285327851772, + -0.0003709531738422811, + 0.0048424359411001205, + 0.006568766664713621, + -0.043839290738105774, + -0.01065098401159048, + 0.013969022780656815, + 0.023471759632229805, + -0.02106439881026745, + -0.0020351693965494633, + -0.021935483440756798, + -0.014547105878591537, + -0.014277861453592777, + -0.005345289129763842, + 0.010302550159394741, + -0.002773611107841134, + -0.012179340235888958, + -0.02147618494927883, + 0.003919878974556923, + 0.002773611107841134, + 0.006548969075083733, + -0.0009542331099510193, + 0.016423895955085754, + 0.00435542082414031, + 0.002892395481467247, + 0.0007790264207869768, + 0.0028112262953072786, + 0.013691859319806099, + 0.010943984612822533, + -0.02022499032318592, + -0.003904040902853012, + 0.003642715746536851, + -0.021539535373449326, + -0.011466635391116142, + 0.01967066526412964, + -0.01951228640973568, + 0.016962384805083275, + 0.001596657675690949, + 0.0008646500646136701, + -0.013414696790277958, + -0.015544893220067024, + -0.003913939464837313, + -0.005646209232509136, + 0.010864795185625553, + 0.00045236985897645354, + 0.008124839514493942, + -0.0006533131236210465, + -0.009669034741818905, + -0.002773611107841134, + -0.02443787083029747, + 0.004137649666517973, + 0.007511121220886707, + -0.0012155583826825023, + 0.01970233954489231, + 0.025182250887155533, + -0.01848282292485237, + -0.015259810723364353, + -0.0018500640289857984, + -0.004909747280180454, + 0.02952183410525322, + -0.03500174731016159, + 0.00460882717743516, + 0.020161639899015427, + -0.010088738985359669, + 0.01617840863764286, + 0.007669500075280666, + 0.011617095209658146, + -0.010405496694147587, + -0.014079888351261616, + 0.00296564563177526, + 0.02388354390859604, + 0.013525561429560184, + -0.014293699525296688, + 0.009764062240719795, + -0.01230604387819767, + 0.013945265673100948, + 0.0030943285673856735, + -0.027526259422302246, + 0.002209386322647333, + -0.0008265401120297611, + -0.028381505981087685, + -0.008037731051445007, + -0.005990683566778898, + -0.02918923832476139, + 5.3824092901777476e-5, + -0.008211947977542877, + 0.018356120213866234, + 0.025562360882759094, + 0.016281355172395706, + 0.011886339634656906, + -0.003203214146196842, + -0.022426458075642586, + 0.015212297439575195, + 0.016582274809479713, + -0.034051474183797836, + -0.012005124241113663, + -0.0027439151890575886, + 0.0046840570867061615, + -0.003108186647295952, + -0.028888318687677383, + 0.0268769059330225, + -0.0020787236280739307, + -0.004688016604632139, + 0.013866076245903969, + -0.008631652221083641, + 0.009415628388524055, + 0.0044662863947451115, + 0.003943635616451502, + -0.008892977610230446, + 0.016130894422531128, + 0.011830907315015793, + -0.004893909208476543, + 0.02337673120200634, + -0.0031893558334559202, + -0.0014442179817706347, + -0.014388727024197578, + 0.010405496694147587, + 0.006750902626663446, + 0.014713403768837452, + 0.005167113151401281, + 0.006398509256541729, + -0.0010938046034425497, + 0.01432537566870451, + 0.006018399726599455, + 0.0034942354541271925, + -0.007633864879608154, + -0.011371607892215252, + -0.0007923896191641688, + -0.0175800621509552, + -0.02054174803197384, + 0.004640502855181694, + -0.045803189277648926, + -0.013398858718574047, + 0.009946197271347046, + -0.0012313962215557694, + -0.009629439562559128, + 0.003783277003094554, + -0.00597088597714901, + -0.004470245447009802, + 0.02621171437203884, + 0.0015263770474120975, + -0.013937346637248993, + 0.014190752990543842, + 0.022600675001740456, + -0.008219867013394833, + 0.003909979946911335, + 0.024738790467381477, + -0.021571211516857147, + -0.009494817815721035, + 0.022568998858332634, + 0.011727960780262947, + 0.03142238035798073, + -0.0058006285689771175, + -0.02001909911632538, + 0.0015996273141354322, + 0.011933852918446064, + 0.017706764861941338, + 0.028191450983285904, + -0.0159804355353117, + 0.012266448698937893, + -0.014341212809085846, + -0.008663328364491463, + 0.011949690990149975, + -0.01902131177484989, + -0.0007993187173269689, + -0.007134971208870411, + 0.006481658201664686, + 0.0014590660575777292, + -0.008853382430970669, + -0.005531384609639645, + -3.371739148860797e-5, + 0.01117363478988409, + 0.005959007889032364, + -0.00310026784427464, + 0.012432746589183807, + 0.03357633575797081, + 0.0001740931038511917, + 0.004363339859992266, + -0.0005206707864999771, + 0.022062186151742935, + -0.002686502877622843, + 0.02054174803197384, + 0.022109700366854668, + -0.007511121220886707, + -0.0014333294238895178, + 0.009740305133163929, + -0.0013402818003669381, + -0.015307324938476086, + 0.0033695120364427567, + -0.013177127577364445, + 0.0050522880628705025, + -0.003090369049459696, + 0.008647490292787552, + -0.0046246652491390705, + 0.019227202981710434, + 0.0070676603354513645, + 0.0005256201256997883, + 0.013137533329427242, + 0.003745662048459053, + 0.01020752266049385, + 0.010959822684526443, + -0.00923349242657423, + 0.0020351693965494633, + -0.0018946081399917603, + -0.02705112285912037, + -0.005436357110738754, + -0.036142073571681976, + -0.002334109740331769, + 0.011165715754032135, + -0.01810271292924881, + 0.007360661402344704, + -0.015734948217868805, + -0.016083382070064545, + -0.0009185978560708463, + -0.006936997640877962, + -0.0019391521345824003, + 0.015608244575560093, + 0.00456923246383667, + -0.006865727249532938, + 0.017627576366066933, + -0.020272504538297653, + -0.008845464326441288, + -0.0002910213079303503, + -0.01370769739151001, + -0.02358262427151203, + 0.022822406142950058, + 0.008956328965723515, + 0.008837545290589333, + -0.01512518897652626, + -0.01879958063364029, + 0.026575986295938492, + 0.012353557161986828, + -0.001089845085516572, + 0.008013974875211716, + -0.006584604736417532, + -0.007903109304606915, + -0.019797367975115776, + -0.010951903648674488, + 0.016455572098493576, + 0.01916385255753994, + -0.018324444070458412, + -0.008394083939492702, + 0.003743682289496064, + 0.0008468324085697532, + 0.008782112039625645, + -0.00012639381748158485, + 0.0005503668216988444, + -0.0024707114789634943, + 0.013351344503462315, + 0.008639571256935596, + -0.01935390755534172, + 0.016582274809479713, + -0.010548037476837635, + -0.009249330498278141, + 0.008449516259133816, + -0.008394083939492702, + 0.015291486866772175, + -0.022711539641022682, + 0.012163503095507622, + -0.009463141672313213, + 0.01917969062924385, + -0.016661465167999268, + 0.002874577883630991, + 0.017627576366066933, + -0.0031794572714716196, + -0.012298124842345715, + 0.017801793292164803, + 0.0048068007454276085, + -0.016099220141768456, + -0.0038723652251064777, + 0.027700476348400116, + -0.012258529663085938, + -0.01396110374480486, + 0.004169325809925795, + -0.01293164025992155, + -0.01440456509590149, + 0.011442878283560276, + -0.010658903047442436, + 0.014974729157984257, + -0.02480214275419712, + -0.0007686328026466072, + -0.01721579022705555, + 0.00201834156177938, + -0.0015649818815290928, + -0.003854547394439578, + 0.008449516259133816, + 0.00018522911705076694, + -0.002825084375217557, + 0.012804937548935413, + -0.0104609290137887, + 0.018356120213866234, + -0.001150227035395801, + 0.0031260044779628515, + -0.008995924144983292, + -0.009273086674511433, + -0.0157982986420393, + 0.003292302368208766, + 0.00801001489162445, + 0.008544543758034706, + 0.00022470012481790036, + 0.02358262427151203, + 0.0230282973498106, + -0.0033536741975694895, + -0.00853662472218275, + -0.018720390275120735, + 0.02690858207643032, + 0.004367299377918243, + 0.009922441095113754, + 0.032626062631607056, + 0.018023524433374405, + 0.013596831820905209, + 0.016376381739974022, + 0.016067543998360634, + 0.014657971449196339, + 0.008417841047048569, + -0.0031655991915613413, + 0.003765459405258298, + -0.012567369267344475, + 0.0035872829612344503, + 0.0019945846870541573, + -0.01584581285715103, + 0.0193222314119339, + 0.010706416331231594, + -0.0013194945640861988, + 0.0018748107831925154, + 0.012773261405527592, + -0.010753930546343327, + 0.004125771578401327, + 0.02529311738908291, + 0.037187375128269196, + -0.003375451313331723, + 0.013604750856757164, + 0.013668103143572807, + -0.0180868748575449, + -0.0008270350517705083, + 0.007063700817525387, + -0.008972167037427425, + 0.00614510290324688, + -0.00966111570596695, + 0.011632933281362057, + 0.014895539730787277, + 0.01450751069933176, + 0.005567019805312157, + -0.004640502855181694, + -0.010896471329033375, + 0.0020262605976313353, + 0.022109700366854668, + 0.024928845465183258, + -0.00707557937130332, + 0.0032170722261071205, + 0.01255945023149252, + -0.011751717887818813, + -0.02443787083029747, + 0.009811575524508953, + 0.017675090581178665, + -0.0011779434280470014, + -0.007360661402344704, + 0.013493886217474937, + -0.010215441696345806, + -0.0031458018347620964, + 0.015426108613610268, + -0.018720390275120735, + -0.00347047857940197, + 0.012337720021605492, + -0.008283218368887901, + 0.007764527574181557, + 0.006746943108737469, + -0.010152090340852737, + 0.018213577568531036, + -0.0013214743230491877, + -0.028207289054989815, + -0.005662047304213047, + 0.015188540332019329, + -0.007764527574181557, + -0.004319785628467798, + -0.01468172762542963, + 0.005875858943909407, + -0.015592406503856182, + 0.025435658171772957, + 0.03205589950084686, + -0.010532199405133724, + -0.014436240307986736, + -0.0060659134760499, + 0.0006765750586055219, + -0.0019035169389098883, + -0.007586351130157709, + -0.012274367734789848, + 0.00756259448826313, + 0.0018866891041398048, + -0.0002126979670720175, + 0.0021024805027991533, + -0.0013709677150472999, + 0.004889949690550566, + 0.0065410505048930645, + -0.006707348395138979, + -0.00833865161985159, + 0.006643996573984623, + -0.0027142190374433994, + 0.02005077339708805, + 0.01326423604041338, + -0.0094077093526721, + -0.0013531501172110438, + -0.004189122933894396, + 0.0011541865533217788, + 0.002213345607742667, + 0.001013625180348754, + 0.0016897052992135286, + -0.026417607441544533, + 0.015893327072262764, + 0.002369744936004281, + 0.028048910200595856, + -0.00043455223203636706, + -0.007796203251928091, + 0.00852078665047884, + -0.012076394632458687, + 0.00966111570596695, + -0.010152090340852737, + -0.0026746243238449097, + -0.0037793174851685762, + -0.00028013275004923344, + -0.007384418044239283, + 0.0011195411207154393, + -0.0001744643086567521, + -0.005452195182442665, + 0.013921508565545082, + 0.028096424415707588, + -0.0094077093526721, + -0.021539535373449326, + 0.010088738985359669, + 0.009170141071081161, + -0.0016778268618509173, + 0.005103761330246925, + 0.0016956445761024952, + 0.001587748876772821, + 0.009843251667916775, + -0.008097123354673386, + 0.02673436515033245, + 0.0011551764328032732, + 0.021396994590759277, + 0.024200301617383957, + -0.012448584660887718, + 0.004961220547556877, + -0.009352276101708412, + 0.006054034922271967, + -0.012282286770641804, + 0.00023930068709887564, + 0.01756422407925129, + 0.020668452605605125, + 0.03216676414012909, + -0.004173285327851772, + -0.005812507122755051, + -0.018767904490232468, + 0.0022390822414308786, + 0.0049295444041490555, + -0.0029735646676272154, + 0.014626295305788517, + 0.012741586193442345, + 0.032626062631607056, + -0.0019203446572646499, + 0.025071386247873306, + -0.013319669291377068, + 0.00585210183635354, + -0.004351461306214333, + 0.017326656728982925, + 0.01195761002600193, + -0.016439734026789665, + -0.018926283344626427, + -0.005915453657507896, + 0.02006661146879196, + 0.0038961218670010567, + -0.008267381228506565, + -0.014254104346036911, + 0.01389775238931179, + 0.025815768167376518, + 0.007918947376310825, + 0.008853382430970669, + -0.01917969062924385, + -0.002254920080304146, + -0.018720390275120735, + 0.0030210784170776606, + 0.003468498820438981, + 0.004038663115352392, + -0.010437171906232834, + -0.0011225107591599226, + 0.012282286770641804, + -0.008243624120950699, + 0.004482124000787735, + 0.011339932680130005, + 0.0074992431327700615, + -0.000467960286187008, + 0.01843530870974064, + -0.013652265071868896, + 0.0009745254064910114, + 0.01011249516159296, + -0.009265168569982052, + 0.0028310236521065235, + -0.000265779672190547, + -0.011419122107326984, + 0.006394549738615751, + 0.0016065563540905714, + -0.002842901973053813, + -0.00018250697758048773, + -0.02374100312590599, + -0.006849889177829027, + -0.001333352760411799, + -0.003432863624766469, + 0.012535693123936653, + -0.008528705686330795, + 0.013905671425163746, + 0.016233840957283974, + -0.01951228640973568, + 0.027732152491807938, + -0.0022608593571931124, + -0.005341329611837864, + -0.004276231396943331, + 0.007879352197051048, + -0.000745865807402879, + -0.0031695584766566753, + -0.012060556560754776, + -0.009985792450606823, + -0.002615232253447175, + -0.011450797319412231, + -0.0002370734728174284, + -0.007083498407155275, + 0.011236986145377159, + -0.003557587042450905, + -0.00012342420814093202, + 0.007491324096918106, + 0.0009507685899734497, + 0.004339583218097687, + 0.011308256536722183, + -0.015909165143966675, + 0.011149877682328224, + 0.024200301617383957, + 0.010848957113921642, + -0.009201816283166409, + -0.014792593196034431, + 0.014159077778458595, + -0.010413415729999542, + 0.030693838372826576, + -0.01071433536708355, + -0.014174914918839931, + -0.0010076860198751092, + 0.009874926880002022, + -0.007317107170820236, + -0.006069872993975878, + -0.017025737091898918, + 0.009954116307199001, + 0.011759635992348194, + 0.012013042345643044, + 0.009645277634263039, + 0.011712122708559036, + -0.0012313962215557694, + -0.0016887154197320342, + -0.014594619162380695, + -0.00016394695558119565, + -0.010231279768049717, + -0.011648771353065968, + 0.005471992306411266, + 0.015711190178990364, + -0.008243624120950699, + -0.0006815243978053331, + 0.004790963139384985, + -0.0064183068461716175, + 0.017880981788039207, + -0.008105042390525341, + -0.012013042345643044, + -0.006537090986967087, + 0.0035952019970864058, + -0.007487364578992128, + -0.007380458526313305, + -0.026496797800064087, + 0.005178991239517927, + -0.004347501788288355, + -0.00408221734687686, + 0.011696284636855125, + 0.002019331557676196, + 0.010579713620245457, + -0.01900547370314598, + -0.0007849656394682825, + -0.007574473042041063, + -0.008291137404739857, + -0.015465703792870045, + 0.008053569123148918, + 0.006022359244525433, + 0.018752066418528557, + -0.024311168119311333, + 0.008766274899244308, + 0.020842669531702995, + 0.0038228717166930437, + -0.026259228587150574, + -0.00861581414937973, + -0.007629905361682177, + -0.0017580062849447131, + 0.0009438394918106496, + 0.012511936016380787, + -0.014135320670902729, + -0.006446023005992174, + -0.03132735565304756, + 0.007610108237713575, + -0.02987026795744896, + 0.0007359671290032566, + 0.006489577237516642, + -0.015560731291770935, + -0.024532897397875786, + -1.4090157492319122e-5, + 0.004022825043648481, + 0.005689763464033604, + -0.0053967623971402645, + -0.012432746589183807, + 0.0131850466132164, + -0.00041327005601488054, + -0.009288924746215343, + -0.005178991239517927, + -0.01583789475262165, + 0.00931268185377121, + -0.0012957376893609762, + 0.007740770932286978, + 0.002340048784390092, + 0.0013630487956106663, + 0.001559042721055448, + -0.0008636601851321757, + -0.013501805253326893, + 0.01335926353931427, + -0.0020648655481636524, + 0.0127495052292943, + -0.011656690388917923, + 0.021523697301745415, + 0.008528705686330795, + 0.004137649666517973, + -0.007368580438196659, + -0.005733317695558071, + 0.004656340926885605, + -0.015117269940674305, + 0.004446488805115223, + -0.022933270782232285, + -0.005064166616648436, + 0.012994992546737194, + -0.0015174682484939694, + -6.484411187557271e-6, + 0.00012781676196027547, + -0.00781995989382267, + 0.017453359439969063, + -0.013739373534917831, + 0.005927331745624542, + -0.006469779647886753, + -0.014689646661281586, + -0.006521252915263176, + 0.00022333905508276075, + -0.01194177195429802, + 0.00479888217523694, + 0.008805869147181511, + 0.009344357997179031, + 0.015489460900425911, + -0.0039000813849270344, + -0.016297193244099617, + -0.010817281901836395, + -0.0034546407405287027, + -0.0018787701847031713, + -0.006533131469041109, + 0.01883125677704811, + -0.0014244206249713898, + -0.02229975536465645, + -0.007930825464427471, + 0.005824385676532984, + 0.02234726957976818, + -0.004826598335057497, + -0.009558169171214104, + 0.011189471930265427, + -0.017817631363868713, + 0.007198323030024767, + -0.014483754523098469, + -0.021206939592957497, + 0.014301618561148643, + -0.0019203446572646499, + 0.010215441696345806, + -0.004173285327851772, + 0.019274717196822166, + 0.009589845314621925, + 0.00474344938993454, + 0.010373820550739765, + 0.019290555268526077, + 0.002074764110147953, + -0.009130545891821384, + 0.025879118591547012, + 0.009716548025608063, + -0.021903807297348976, + 0.006307441275566816, + -0.0005726388772018254, + -0.00536508671939373, + 0.006604401860386133, + 0.014721322804689407, + -0.015426108613610268, + -0.020304180681705475, + -0.01054011844098568, + -0.005388843361288309, + -0.013596831820905209, + -0.0030012810602784157, + 0.007863514125347137, + -4.148167136008851e-5, + 0.008758355863392353, + -0.01229020580649376, + 0.01361266989260912, + -0.021206939592957497, + 0.016978222876787186, + -0.03991149365901947, + -0.010848957113921642, + 0.04412437230348587, + 0.005654128268361092, + 0.01813438907265663, + 0.008251543156802654, + 0.0062322113662958145, + -0.00011544339940883219, + 0.004893909208476543, + -0.009225573390722275, + 0.00983533263206482, + 0.00915430299937725, + 0.02513473853468895, + -0.013873995281755924, + -0.006141143385320902, + 0.0061965761706233025, + 0.0010042214998975396, + 0.010357982479035854, + -0.013652265071868896, + -0.019559798762202263, + 0.0007433911669068038, + 0.0071270521730184555, + -0.0016451613046228886, + 0.02388354390859604, + 0.010563875548541546, + 0.021840456873178482, + -0.009193897247314453, + 0.0020025037229061127, + -0.01739000715315342, + -0.009732386097311974, + -0.0008626703056506813, + -0.017199954017996788, + 0.0018015605164691806, + 0.012068475596606731, + -0.011482473462820053, + 0.002000523963943124, + -0.012797018513083458, + 0.0033794105984270573, + 0.008592057973146439, + 0.004787003621459007, + -0.0038149526808410883, + -0.004240596201270819, + 0.0006622219225391746, + 0.002437056042253971, + -0.0029003142844885588, + -0.007360661402344704, + -0.0035457084886729717, + -0.0043791779316961765, + 0.0016916850581765175, + 0.01636054553091526, + 0.019908232614398003, + -0.01301082968711853, + -0.013493886217474937, + 0.005503668449819088, + 0.0017293001292273402, + 0.0007849656394682825, + -0.011046931147575378, + -0.022600675001740456, + 0.016788167878985405, + 0.006188657134771347, + -0.003856527153402567, + 0.00310026784427464, + -0.0025914753787219524, + 0.003314079251140356, + -0.005000815261155367, + -0.0037417025305330753, + -0.008140677586197853, + 0.007701176218688488, + -0.0012294165790081024, + -0.004141609184443951, + -0.0035278908908367157, + 0.026607662439346313, + 0.0020846629049628973, + 0.006568766664713621, + -0.0032289507798850536, + -0.02058926224708557, + 0.002874577883630991, + -0.0007245836313813925, + 0.008370326831936836, + -0.005998602602630854, + 0.0023578666150569916, + -0.014277861453592777, + -0.017136601731181145, + 0.003955514170229435, + 0.008782112039625645, + -0.014966810122132301, + -0.01335926353931427, + 0.009859088808298111, + 0.002427157247439027, + 0.00460882717743516, + -0.011466635391116142, + 0.0028666588477790356, + -0.010587632656097412, + -0.006394549738615751, + -0.023329218849539757, + -0.0032744845375418663, + -0.0015847792383283377, + -0.0017302898922935128, + -0.004977058153599501, + 0.004957261029630899, + -0.020098287612199783, + -0.026116687804460526, + 0.033829741179943085, + -0.008132758550345898, + -0.0062559680081903934, + 0.025403982028365135, + 0.016582274809479713, + 0.006548969075083733, + 0.011355769820511341, + 0.011648771353065968, + 0.004933503922075033, + 0.009383952245116234, + 0.0033061604481190443, + -0.016122976318001747, + -0.007705135736614466, + -0.004814719781279564, + -0.002112379064783454, + -0.009193897247314453, + -0.008314894512295723, + -0.0006216373294591904, + -0.01772260293364525, + -0.009645277634263039, + -0.033671364188194275, + -0.00043677943176589906, + -0.0023954815696924925, + 0.0018074996769428253, + -0.009779899381101131, + 0.006493536755442619, + 0.005899615585803986, + 0.01567951589822769, + 0.017104925587773323, + 0.02269570156931877, + -0.0052383835427463055, + -0.0270986370742321, + 0.002494468353688717, + -0.006560847628861666, + 0.00018621899653226137, + -0.003949574660509825, + -0.003367532277479768, + 0.004715733230113983, + -0.03325957804918289, + -0.022252241149544716, + -0.008489111438393593, + 0.011181552894413471, + 0.012123907916247845, + -0.025008035823702812, + 0.014982648193836212, + 0.0016708978218957782, + 0.007178525440394878, + 0.007784325163811445, + -0.02109607495367527, + -0.0002840922388713807, + 0.008718760684132576, + -0.022046348080039024, + -0.00028730928897857666, + -0.003985210321843624, + 0.01354931853711605, + -0.003856527153402567, + -0.008663328364491463, + -0.018023524433374405, + -0.010967741720378399, + 0.012013042345643044, + -0.001583789475262165, + 0.003367532277479768, + 0.0004189618048258126, + 0.016115058213472366, + -0.0005800628568977118, + 0.002351927338168025, + -0.01300291158258915, + -0.023059973493218422, + -0.010389658622443676, + -0.019116338342428207, + 0.0005632351385429502, + -0.011039012111723423, + -0.0032487481366842985, + -0.005068126134574413, + -0.004398975055664778, + 0.001681786379776895, + 0.025514846667647362, + -0.006311400793492794, + -0.006739024072885513, + -0.004668219480663538, + -0.00513543700799346, + -0.01038173958659172, + -0.015346919186413288, + 0.007982298731803894, + 0.0138027248904109, + -0.006750902626663446, + 0.0024034003727138042, + 0.036680564284324646, + 0.029268428683280945, + 0.029062535613775253, + -0.014752998016774654, + -0.008568300865590572, + -0.029806917533278465, + 0.03113730065524578, + -0.0009784848662093282, + -0.010848957113921642, + 0.02250564843416214, + -0.00571747962385416, + 0.001952020451426506, + 0.016645627096295357, + 0.01987655647099018, + -0.007633864879608154, + 0.022046348080039024, + -0.006742983590811491, + -0.001804530038498342, + -0.009471060708165169, + -0.0031339232809841633, + 0.020335856825113297, + 0.00041104285628534853, + -0.035255152732133865, + 0.020288342610001564, + 0.021887969225645065, + -0.006164900492876768, + -0.004909747280180454, + -0.004517759196460247, + 0.018736228346824646, + -0.01581413671374321, + 0.004695935640484095, + -0.0094077093526721, + 0.003508093534037471, + -0.006085711065679789, + -0.003712006378918886, + -0.011545824818313122, + 0.03357633575797081, + 0.011854663491249084, + 0.0157982986420393, + -0.0485273078083992, + -1.6858695744303986e-5, + -0.021048560738563538, + 0.021856293082237244, + 0.01848282292485237, + 0.017136601731181145, + 0.006925119087100029, + 0.007269593421369791, + 0.012725748121738434, + 0.00519086979329586, + -0.013462210074067116, + 0.00641434732824564, + -0.01545778475701809, + 0.017865145578980446, + 0.0029240711592137814, + -0.011696284636855125, + -0.0030745312105864286, + -0.03433655574917793, + -0.005503668449819088, + -0.0230282973498106, + 0.015473622828722, + -0.009977873414754868, + -0.020272504538297653, + 0.01205263752490282, + -0.013763129711151123, + 0.021745428442955017, + -0.025198088958859444, + 0.006252008955925703, + 0.010080819949507713, + 0.0036644928622990847, + -0.00505624758079648, + 0.013256317004561424, + 0.001735239289700985, + -0.009803656488656998, + 0.0013076161267235875, + -0.005464073270559311, + 0.00725375534966588, + 0.026797717437148094, + -0.025277279317378998, + -0.03620542585849762, + 0.006018399726599455, + 0.005468032788485289, + 0.0036902292631566525, + 0.009653196670114994, + 0.001445207861252129, + -0.002540002344176173, + 0.016233840957283974, + 0.028001397848129272, + 0.01685152016580105, + -0.0034566204994916916, + 0.008584138937294483, + -0.02147618494927883, + -0.006216373294591904, + 0.006679631769657135, + -0.006624199450016022, + 0.01919552870094776, + 0.005091882776468992, + -0.002146034734323621, + -0.002543961862102151, + 0.01063514593988657, + 0.009906603023409843, + 0.016613950952887535, + -0.011387445963919163, + -0.008370326831936836, + 0.011213229037821293, + 0.01126074232161045, + 0.012765342369675636, + 0.026940258219838142, + 0.0055195060558617115, + 0.009273086674511433, + -0.007059741299599409, + -0.015544893220067024, + 4.624541543307714e-5, + -0.012797018513083458, + 0.019464772194623947, + 0.0017787935212254524, + -0.005448235664516687, + -0.010397577658295631, + -0.011229067109525204, + 0.008041691035032272, + 0.008449516259133816, + 0.006489577237516642, + 0.00791102834045887, + -0.006869686767458916, + 0.0008824676624499261, + 0.010777686722576618, + 0.0316757895052433, + 0.0008824676624499261, + -0.01667730323970318, + 0.024532897397875786, + -0.00544427614659071, + -0.01826109178364277, + -0.0036189588718116283, + 0.015449865721166134, + -0.0028290438931435347, + -0.00018188831745646894, + -0.004925584886223078, + 0.0011977407848462462, + -0.010991498827934265, + -0.0019243041751906276, + 0.0047474089078605175, + 0.005000815261155367, + 0.012781180441379547, + 0.0050522880628705025, + -0.008607895113527775, + 0.00783579796552658, + 0.0006711307796649635, + 0.023614300414919853, + 0.005436357110738754, + 0.0020312098786234856, + 0.015267729759216309, + -0.004497962072491646, + -0.0056699663400650024, + 0.006921159569174051, + 0.012789099477231503, + -0.006568766664713621, + 0.011989286169409752, + 0.002425177488476038, + 0.008845464326441288, + 0.013018748722970486, + 0.01528356783092022, + 0.013232560828328133, + 0.00014278851449489594, + 0.0005305694648995996, + 1.6510695104443585e-6, + 0.0006884534377604723, + -0.00833865161985159, + -0.008049610070884228, + 0.00404262263327837, + 0.02408943697810173, + 0.016487248241901398, + -0.005258180666714907, + 0.010959822684526443, + -0.00836240779608488, + -0.0023657854180783033, + -0.007582392077893019, + -0.00513543700799346, + -0.01520437840372324, + -0.0027063002344220877, + -0.004177244380116463, + 0.020177477970719337, + -0.029395131394267082, + -0.009969954378902912, + -6.124810897745192e-5, + -0.016281355172395706, + 0.01230604387819767, + -0.01860952563583851, + 0.029759403318166733, + 0.00530965393409133, + -0.009288924746215343, + -0.002787469420582056, + 0.026607662439346313, + 0.0038109933957457542, + 0.035603586584329605, + -0.015386514365673065, + 0.00408221734687686, + 0.016218002885580063, + -0.011102363467216492, + -0.0007552696042694151, + -0.021175265312194824, + 0.011395364999771118, + 0.017500873655080795, + 0.008354488760232925, + 0.017025737091898918, + 0.004790963139384985, + 0.0009908583015203476, + 0.015370676293969154, + -0.027526259422302246, + -0.019037147983908653, + -0.021555373445153236, + 0.010025386698544025, + 0.01061930786818266, + 0.01917969062924385, + -0.001824327395297587, + 0.006739024072885513, + -0.027383718639612198, + -0.010738092474639416, + 0.010104576125741005, + 0.00239944108761847, + -0.010342145338654518, + -0.005745196249336004, + -0.002664725761860609, + -0.016218002885580063, + -0.009122626855969429, + -0.004977058153599501, + -0.00791498739272356, + 0.01098357979208231, + -0.0023598461411893368, + -0.029806917533278465, + -0.0008750436827540398, + 0.02985442988574505, + -0.027700476348400116, + -0.011640852317214012, + 0.005072085652500391, + 0.02516641467809677, + -0.011498311534523964, + 0.000355115276761353, + 0.0033398158848285675, + -0.00296564563177526, + -0.006438103970140219, + -0.0006241120281629264, + -0.02123861573636532, + 0.0009057295974344015, + 0.022410620003938675, + -0.006537090986967087, + 0.007970420643687248, + 0.003278444055467844, + 0.01791265793144703, + 0.018752066418528557, + 0.02828647941350937, + 0.00010987539280904457, + -0.023645976558327675, + 0.0039119599387049675, + 0.0025756375398486853, + 0.009851169772446156, + -0.02583160623908043, + -0.002454873640090227, + 0.02497635968029499, + -0.0012947478098794818, + 0.011894258670508862, + -0.006505414843559265, + -0.010120414197444916, + -0.019306393340229988, + 0.025594037026166916, + 0.001916385255753994, + 0.00266274600289762, + -0.014222429133951664, + 0.00777640612795949, + -0.011759635992348194, + 0.03253103420138359, + 0.008322813548147678, + 0.014048212207853794, + -0.006715266965329647, + -0.003836729796603322, + 0.007942703552544117, + -0.01811855100095272, + 0.0060738325119018555, + -0.022933270782232285, + 0.01754838600754738, + -0.005285897292196751, + 0.0005122568691149354, + 0.0017807732801884413, + 0.018672877922654152, + -0.025103062391281128, + -0.011545824818313122, + -0.005745196249336004, + 0.008465354330837727, + 0.008861301466822624, + -0.010769767686724663, + -0.0003135408041998744, + -0.022648189216852188, + 0.008853382430970669, + -0.005250262096524239, + -0.031026434153318405, + -0.004509840160608292, + -0.007229998707771301, + -0.012108069844543934, + -0.03197670727968216, + -0.008916734717786312, + 0.010943984612822533, + 0.0004788488440681249, + 0.0041930824518203735, + -0.007962501607835293, + -0.01949644833803177, + 0.007182484958320856, + 0.006149062421172857, + -0.002254920080304146, + 0.006794456392526627, + 0.004656340926885605, + 0.00447420496493578, + -0.021539535373449326, + -0.025720739737153053, + 0.005329451523721218, + 0.009273086674511433, + 0.05825177580118179, + 0.0021975077688694, + 0.04219214990735054, + -0.035065099596977234, + -0.008805869147181511, + -0.028698263689875603, + 0.00585210183635354, + -0.014254104346036911, + -0.012781180441379547, + 0.017009899020195007, + -0.011815069243311882, + -0.020098287612199783, + 0.014174914918839931, + 0.017120763659477234, + -0.001114591839723289, + 0.01501432340592146, + -0.005123558919876814, + 0.005392802879214287, + -0.0047117737121880054, + 0.013327588327229023, + -0.005816466640681028, + 0.01133201364427805, + -0.02055758610367775, + -0.020874343812465668, + 0.0009656166075728834, + 0.004751368425786495, + -0.00028532955911941826, + -0.007328985724598169, + 0.0007948643178679049, + -0.015354838222265244, + 0.006778618786484003, + -0.0021361359395086765, + -0.018403632566332817, + 0.0024172586854547262, + -0.007661581505089998, + 0.024295330047607422, + -0.007443810347467661, + 0.002217305125668645, + 0.006560847628861666, + -0.0024014206137508154, + -0.03721905127167702, + -0.014190752990543842, + 0.004779084585607052, + -0.00028235994977876544, + -0.014547105878591537, + 0.005321532487869263, + -0.006972632836550474, + 0.005468032788485289, + -0.011490392498672009, + 0.009106788784265518, + -0.015734948217868805, + -0.011023174040019512, + 0.004284150432795286, + -0.009027599357068539, + 0.010160009376704693, + 0.009494817815721035, + 0.011411203071475029, + -0.00939187128096819, + -0.013969022780656815, + 0.008995924144983292, + -0.0005736287566833198, + -0.006925119087100029, + 0.011347850784659386, + 0.004406894091516733, + -0.002490508835762739, + 0.0027122392784804106, + 0.0006082741310819983, + -0.007297309581190348, + 0.008782112039625645, + 0.0015125188510864973, + 0.0015907185152173042, + -0.006228251848369837, + 0.0015234074089676142, + -0.013383020646870136, + -0.010389658622443676, + -0.00869500357657671, + 0.0052977753803133965, + -0.007812041323632002, + -0.00725375534966588, + -0.029664376750588417, + -0.0033714917954057455, + -0.003983230330049992, + -0.0009047397179529071, + -0.004858274012804031, + -0.0004721672157756984, + -0.02621171437203884, + 0.005475951824337244, + -0.009613601490855217, + 0.004545475821942091, + -0.00047810643445700407, + -0.016297193244099617, + -0.00390800042077899, + 0.004901828244328499, + 0.008449516259133816, + -0.0065925233066082, + -0.020510073751211166, + -0.018704552203416824, + -0.004078257828950882, + 0.008639571256935596, + 0.03218260034918785, + 6.332064367597923e-5, + 0.00680633494630456, + -0.006841970141977072, + 0.003086409531533718, + -0.003921858500689268, + -0.0237568411976099, + 0.004422732163220644, + -0.018150227144360542, + -0.009993711486458778, + 0.018720390275120735, + -0.023693488910794258, + 0.0066360775381326675, + -0.022378943860530853, + 0.029062535613775253, + 0.005943169817328453, + 0.014958891086280346, + 0.017675090581178665, + -0.0038268312346190214, + -0.002823104616254568, + 0.013074181973934174, + -0.006248049437999725, + 0.02106439881026745, + 0.046500056982040405, + 0.0025380225852131844, + 0.008116920478641987, + 0.01504599954932928, + -0.008892977610230446, + 0.008908815681934357, + 0.025625713169574738, + -0.01073017343878746, + 0.0007310177898034453, + -0.00637475261464715, + 0.011141958646476269, + -0.0012304064584895968, + -0.01602794975042343, + 0.00023991934722289443, + 0.012234773486852646, + -0.0015897286357358098, + 0.0033695120364427567, + -0.018498660996556282, + -0.008623733185231686, + 0.01556865032762289, + 0.010136252269148827, + -0.0030388960149139166, + 0.004145568702369928, + 0.007245836779475212, + 0.002124257618561387, + -0.005673925392329693, + 0.008465354330837727, + 0.00544427614659071, + 0.0022568998392671347, + -0.02692442014813423, + -0.001724350731819868, + -0.002977524185553193, + -0.014277861453592777, + 0.03091556951403618, + 0.012543612159788609, + 0.01792849600315094, + 0.0029181321151554585, + 0.017706764861941338, + -0.0037911960389465094, + 0.01585373282432556, + -0.0216504018753767, + 0.015932921320199966, + 0.006921159569174051, + -0.011490392498672009, + -0.004371258895844221, + 0.010468848049640656, + 0.00896424800157547, + -0.008877139538526535, + -0.018055198714137077, + -0.014024455100297928, + -0.0025043669156730175, + 0.0024825900327414274, + 0.008243624120950699, + 0.0037040875758975744, + 0.00013821038010064512, + 0.0004914696328341961, + -0.0022014672867953777, + 0.008465354330837727, + 0.01672481559216976, + 0.005020612385123968, + 0.008291137404739857, + -0.003015139140188694, + -0.01520437840372324, + 0.006236170884221792, + -0.00263502961024642, + 0.001982706366106868, + -0.002126237377524376, + 0.0019638987723737955, + 0.011925933882594109, + -0.004874112084507942, + 0.0018619424663484097, + -0.01343845296651125, + -0.011965529061853886, + 0.011324094608426094, + 0.005673925392329693, + -0.008576219901442528, + -0.022093862295150757, + 0.009637358598411083, + 0.003294281894341111, + 0.01415115874260664, + 0.014388727024197578, + 0.01133201364427805 + ], + "2bc15fee-b800-42db-8473-d85696cfe92d": [ + 0.001983475172892213, + -0.028789464384317398, + -0.011855625547468662, + 0.053495682775974274, + -0.01732794940471649, + 0.0033822450786828995, + 0.004312605131417513, + 0.02446070685982704, + 0.00011720351903932169, + 0.06171385943889618, + -0.013425607234239578, + -0.005478784907609224, + 0.01620376482605934, + 6.743492849636823e-5, + 0.021075231954455376, + 0.033828914165496826, + -0.014355966821312904, + 0.03729191794991493, + -0.022961795330047607, + 0.012721376493573189, + 0.03858408331871033, + -0.02150164730846882, + -0.030262533575296402, + -0.0010910729179158807, + 0.013787413947284222, + -0.02400844916701317, + -0.015092502348124981, + -0.0002990153443533927, + -0.053030502051115036, + -0.0006133751594461501, + -0.018090328201651573, + 0.004558116663247347, + -0.009387588128447533, + 0.0202740877866745, + -0.003236876567825675, + -0.02356911264359951, + -0.029797354713082314, + 0.0018122631590813398, + -0.05000683292746544, + 0.01416214182972908, + -0.007287817541509867, + 0.03946275636553764, + 0.010692675597965717, + -0.008495992980897427, + -0.04519997537136078, + -0.0033822450786828995, + -0.03775709867477417, + -0.01756053976714611, + 0.015376778319478035, + -0.031063677743077278, + 0.013399763964116573, + 0.027910791337490082, + 0.002151456894353032, + 0.030159160494804382, + 0.03845486789941788, + -0.014536870643496513, + 0.015622289851307869, + 0.04300329461693764, + 0.014200907200574875, + -0.051066409796476364, + 0.016836926341056824, + -0.03101199120283127, + 0.009077467955648899, + -0.008644592016935349, + 0.025649501010775566, + 0.020584208890795708, + -0.04186618700623512, + 0.036284029483795166, + 0.006758029572665691, + 0.0197572223842144, + 0.0034791575744748116, + 0.016022861003875732, + -0.0315546989440918, + 0.01003367081284523, + 0.034164875745773315, + -0.01852966472506523, + 0.06295434385538101, + -0.010221035219728947, + 0.014808225445449352, + -0.036723364144563675, + 0.027238864451646805, + -0.027755731716752052, + 0.005259116645902395, + 0.024809591472148895, + 0.046492140740156174, + 0.01411045528948307, + -0.036180656403303146, + -0.05021357908844948, + -0.016009939834475517, + -0.00649313535541296, + 0.0014972976641729474, + 0.018335839733481407, + 0.008851339109241962, + 0.03096030279994011, + 0.0026731688994914293, + -0.02291010692715645, + 0.01416214182972908, + -0.014317202381789684, + 0.007449338678270578, + -0.02354326844215393, + -0.0032061876263469458, + -0.0012655153404921293, + 0.036258187144994736, + -0.00885779969394207, + -0.012223892845213413, + -0.015790272504091263, + 0.021798845380544662, + 0.008489532396197319, + 0.010492390021681786, + 0.01308964379131794, + -0.02205727808177471, + -0.025248927995562553, + 0.03814474865794182, + 0.010078896768391132, + -0.027652358636260033, + -0.017263341695070267, + -0.01914990320801735, + -0.00495868781581521, + -0.01996396854519844, + -0.026851214468479156, + 0.04519997537136078, + -0.02400844916701317, + 0.003359632333740592, + 0.01115785539150238, + -0.009988444857299328, + 0.017095359042286873, + -0.003873268375173211, + 0.01416214182972908, + 0.03282102197408676, + 0.026566937565803528, + -0.012217432260513306, + -0.012747219763696194, + -0.007177983410656452, + -0.0060893334448337555, + 0.011829782277345657, + 0.016979064792394638, + -0.0007672237115912139, + 0.08952128142118454, + -0.029642293229699135, + -0.020842641592025757, + -0.010989873670041561, + 0.023530347272753716, + -0.06279928237199783, + 0.01978306472301483, + 0.004283531103283167, + 0.005320494528859854, + -0.015118345618247986, + 0.04757755994796753, + -0.05124731361865997, + 0.006160402670502663, + -0.03320867195725441, + 0.015583525411784649, + -0.048430390655994415, + 0.003320867195725441, + 0.04507075995206833, + 0.00542063731700182, + -0.005798595957458019, + 0.034216564148664474, + 0.0004914269666187465, + 0.0375245064496994, + 0.030314220115542412, + -0.050911352038383484, + 0.01700490713119507, + 0.030055787414312363, + 0.06352289021015167, + 0.0005838976358063519, + 0.036775052547454834, + 0.028892837464809418, + 0.011435671709477901, + 0.01427843701094389, + 0.0012097907019779086, + -0.0327693372964859, + 0.048223644495010376, + 0.0038441945798695087, + 0.024861278012394905, + -0.011009256355464458, + 0.05690700188279152, + 0.03230415657162666, + 0.017444243654608727, + -0.0330277681350708, + -0.029254643246531487, + -0.02816922403872013, + 0.053185563534498215, + 0.0030462818685919046, + -0.0016701249405741692, + 0.023478660732507706, + 0.008735043928027153, + 0.0029558304231613874, + -0.02259998768568039, + -0.005704914219677448, + -0.005372181069105864, + -0.015557682141661644, + 0.005604770965874195, + 0.009646020829677582, + -0.024732062593102455, + -0.04075492545962334, + -0.0022386780474334955, + -0.00874150451272726, + 0.0060150339268147945, + 0.019537553191184998, + -0.04310666769742966, + -0.011946077458560467, + -0.010718518868088722, + 0.03256259113550186, + -0.027109649032354355, + 0.015079580247402191, + -0.0007688389159739017, + -0.02095893770456314, + 0.050316955894231796, + -0.003656830405816436, + 0.05897446721792221, + -0.029874883592128754, + 0.044062867760658264, + 0.00210623093880713, + -0.008592905476689339, + 0.02625681832432747, + -0.01732794940471649, + 0.024525316432118416, + -0.0017218115972355008, + -0.020131951197981834, + 0.021643785759806633, + -0.026088837534189224, + -0.0202740877866745, + -0.0015780579997226596, + -0.034759271889925, + 0.006434987764805555, + -0.039023421704769135, + -0.0067063430324196815, + -0.002681245096027851, + -0.011403366923332214, + 0.009943219833076, + -0.004257687833160162, + 0.02842765860259533, + 0.004558116663247347, + 0.0022968256380409002, + 0.019356651231646538, + 0.0098786111921072, + -0.0020739268511533737, + -0.007946822792291641, + 0.0017105051083490252, + -0.0030365907587110996, + 0.016681866720318794, + -0.03346710652112961, + -0.015971174463629723, + -0.024912966415286064, + 0.030029943212866783, + 0.014859911985695362, + 0.06884662061929703, + 0.00013486985699273646, + 0.00764962425455451, + -0.023052245378494263, + 0.02630850486457348, + -0.010918805375695229, + 0.02464161068201065, + -0.013070262037217617, + 0.04233136773109436, + 0.013360999524593353, + -0.04165944084525108, + -0.01523463986814022, + -0.013360999524593353, + -0.01016288809478283, + 0.01740548014640808, + -0.0026699386071413755, + -0.0068743242882192135, + 0.02566242218017578, + -0.03284686803817749, + 0.04685394838452339, + 0.010628067888319492, + 0.0036891347263008356, + 0.05000683292746544, + 0.031838975846767426, + -0.04463142156600952, + -0.010169348679482937, + 0.04088414087891579, + -0.013606511056423187, + -0.008030813187360764, + 0.016009939834475517, + -0.0070939925499260426, + 0.004945766180753708, + 0.012792445719242096, + -0.03731776028871536, + -0.034681741148233414, + 0.021126918494701385, + -0.010925265960395336, + -0.014704852364957333, + 0.014136298559606075, + -0.018180780112743378, + -0.038842517882585526, + -0.015997018665075302, + 0.011461514979600906, + 0.02395676262676716, + -0.02500341646373272, + 0.009484500624239445, + 0.024525316432118416, + -0.005953656043857336, + 0.015014971606433392, + -0.026515251025557518, + 0.016268372535705566, + 0.006622352171689272, + -0.012844132259488106, + -0.010776666924357414, + 0.01407169084995985, + -0.015389700420200825, + -0.018826862797141075, + -0.004706715699285269, + -0.026644468307495117, + 0.013877865858376026, + 0.030029943212866783, + -0.03941107168793678, + 0.0312962681055069, + 0.031942348927259445, + -0.0032336460426449776, + -0.046388767659664154, + -0.021230291575193405, + 0.014821146614849567, + 0.012075293809175491, + -0.038764987140893936, + 0.013167174533009529, + -0.007772380020469427, + -0.019356651231646538, + -0.024318568408489227, + -0.008457228541374207, + -0.05473616346716881, + 0.03584469109773636, + 0.05995651334524155, + -0.008088961243629456, + 0.026541095227003098, + 0.0016895073931664228, + -0.03134795278310776, + 0.013399763964116573, + -0.03463005647063255, + 0.0013842331245541573, + 0.005249425303190947, + -0.0020997701212763786, + -0.020364539697766304, + -0.039075106382369995, + -0.043856121599674225, + -0.007746536750346422, + -0.016216685995459557, + -0.015557682141661644, + -0.020312853157520294, + -0.013813257217407227, + 0.012133440934121609, + -0.020558364689350128, + -0.029849041253328323, + -0.015854880213737488, + 0.009167919866740704, + 0.0352761372923851, + 0.008502453565597534, + -0.01807740516960621, + 0.0008055848884396255, + 0.023323601111769676, + 0.055563148111104965, + -0.013057339936494827, + 0.021863453090190887, + -0.019821830093860626, + -0.034681741148233414, + 0.011138473637402058, + 0.03788631409406662, + 0.014084612019360065, + -0.010666832327842712, + -0.04062570631504059, + -0.0026230975054204464, + -0.02216065116226673, + -0.010918805375695229, + 0.02019655890762806, + -0.006037646904587746, + -0.029435547068715096, + -0.015040814876556396, + 0.0075979377143085, + -0.021643785759806633, + -0.008140647783875465, + -0.02484835684299469, + -0.04264148697257042, + 0.0003266757703386247, + -0.05274622514843941, + 0.022535379976034164, + -0.004684102721512318, + -0.021837610751390457, + 0.018878549337387085, + -0.005827669985592365, + 0.008495992980897427, + -0.007171522825956345, + 0.025830402970314026, + 0.007022923789918423, + 0.0051072873175144196, + 0.008670435287058353, + -0.008043735288083553, + -0.039772879332304, + 0.012941044755280018, + -0.019033608958125114, + -0.019589239731431007, + -0.010027210228145123, + 0.045561783015728, + 0.010679754428565502, + -0.0051040565595030785, + 0.007875753566622734, + -0.027238864451646805, + 0.0036988258361816406, + 0.012753681279718876, + -0.029151270166039467, + -0.01758638210594654, + -0.009297136217355728, + 0.007249052636325359, + -0.008890103548765182, + -0.04184034466743469, + 0.01690153405070305, + 0.0030802013352513313, + 0.022832578048110008, + -0.008864260278642178, + 0.015493073500692844, + -0.013645275495946407, + -0.006141019985079765, + 0.020790955051779747, + 0.04762924835085869, + 0.03481096029281616, + -0.0312962681055069, + 0.053495682775974274, + -0.026450643315911293, + 0.01909821666777134, + 0.03036590665578842, + 0.02369832992553711, + 0.01529924850910902, + 0.02160502038896084, + -0.01164241787046194, + 0.01286997552961111, + 0.0012671304866671562, + 0.0044418214820325375, + -0.002602099906653166, + 0.002944523934274912, + 0.034087345004081726, + 0.0310378335416317, + -0.021230291575193405, + -0.0026521713007241488, + -0.023866310715675354, + -0.015441386960446835, + 0.020467912778258324, + 0.010376094840466976, + -0.002007703296840191, + -0.005423868075013161, + -0.0018978691659867764, + -0.01407169084995985, + 0.009529726579785347, + -0.018154935911297798, + -0.03465589880943298, + -0.018193701282143593, + -0.03452668339014053, + 0.023052245378494263, + -0.012798907235264778, + -0.025933776050806046, + -0.02119152620434761, + 0.011248307302594185, + -0.08269864320755005, + -0.03292439505457878, + 0.005679070949554443, + -0.01041486021131277, + 0.013813257217407227, + -0.0006036839331500232, + 0.019628005102276802, + -0.04793936759233475, + 0.008844878524541855, + -0.010014288127422333, + 0.03773125633597374, + -0.012714915908873081, + 0.025236006826162338, + -0.0310378335416317, + -0.005381872411817312, + -0.005837360862642527, + -0.0061927069909870625, + 0.023013481870293617, + -0.01766391284763813, + -0.018465055152773857, + -0.025274772197008133, + 0.039100952446460724, + 0.004118780139833689, + -0.022121885791420937, + -0.01881394162774086, + -0.009755855426192284, + 0.005540162790566683, + -0.01165533997118473, + -0.016526807099580765, + 0.017754364758729935, + -0.020080262795090675, + 0.0312962681055069, + 0.003563148435205221, + 0.007203826680779457, + -0.03034006431698799, + -0.020390383899211884, + -0.002437348710373044, + 0.004354600328952074, + -0.011474436149001122, + 0.012863514944911003, + -0.01105448231101036, + 0.03832565248012543, + 0.002797540044412017, + -0.032071568071842194, + 0.018012797459959984, + -0.020131951197981834, + -0.0064866747707128525, + -0.013619432225823402, + -0.007972666062414646, + -0.015066659078001976, + 0.01669478788971901, + 0.01695322059094906, + -0.02267751842737198, + 0.010666832327842712, + 0.02492588758468628, + 0.04326172545552254, + 0.011500279419124126, + -0.015505995601415634, + -0.03282102197408676, + 0.005339877214282751, + -0.03134795278310776, + 0.010072436183691025, + -0.007843448780477047, + 0.010524693876504898, + -0.004080014768987894, + 0.015997018665075302, + 0.02628266252577305, + 0.013554824516177177, + 0.006764490157365799, + -0.011900851503014565, + -0.00998198427259922, + -0.024396099150180817, + -0.024964652955532074, + 0.02155333384871483, + -0.0003089084930252284, + -0.027833260595798492, + 0.013658197596669197, + -0.041090887039899826, + -0.024292726069688797, + -0.004603342153131962, + -0.012669689953327179, + 0.0037408212665468454, + 0.020674660801887512, + 0.0003181959327775985, + -0.0062605454586446285, + 0.015997018665075302, + 0.0005879356758669019, + -0.02257414534687996, + -0.020687581971287727, + 0.03835149481892586, + 0.0019689383916556835, + -0.008528297767043114, + -0.015260483138263226, + 0.017198732122778893, + 0.015040814876556396, + 0.00017918711819220334, + -0.014743616804480553, + 0.03532782569527626, + -0.03545704111456871, + 0.027238864451646805, + -0.03581884875893593, + -0.011635957285761833, + 0.003808659967035055, + -0.02398260496556759, + -0.004125240724533796, + 0.00355668761767447, + -0.013348077423870564, + -0.027807418256998062, + -0.004393365234136581, + -0.0026957818772643805, + -0.0013810027157887816, + 0.017030751332640648, + -0.002274212660267949, + 0.01008535735309124, + -0.055614836513996124, + 0.018775176256895065, + 0.0360514372587204, + 0.0450449176132679, + 0.025158477947115898, + 0.017147045582532883, + 0.017082437872886658, + 0.022380320355296135, + -0.0013309312053024769, + 0.011732869781553745, + 0.006758029572665691, + -0.014730695635080338, + -0.052849601954221725, + 0.0016370131634175777, + 0.02208312228322029, + 0.006531900260597467, + 0.007694850210100412, + -0.023065168410539627, + 0.02871193364262581, + 0.0032659501302987337, + -0.008786730468273163, + -0.002259675646200776, + -0.015002050437033176, + 0.027471454814076424, + 0.01871056668460369, + 0.0175088532269001, + -0.0090128593146801, + 0.003992793615907431, + -0.005288190208375454, + 0.024473629891872406, + 0.012269118800759315, + 0.012185127474367619, + 0.005927812773734331, + 0.006641734391450882, + 0.027057960629463196, + 0.006509287748485804, + -0.005252656061202288, + -0.007261974271386862, + -0.022587066516280174, + 0.029461391270160675, + -0.025649501010775566, + 0.02630850486457348, + -0.010091818869113922, + 0.018439212813973427, + 0.020752189680933952, + -0.016087470576167107, + 0.027859104797244072, + -0.02581748180091381, + -0.002421196550130844, + -0.007656085304915905, + 0.03367385268211365, + 0.026269739493727684, + 0.017276262864470482, + 0.0023533578496426344, + 0.02163086272776127, + -0.01196545921266079, + 0.05158327892422676, + -0.009284215047955513, + -0.004396595526486635, + 0.046001117676496506, + -0.03946275636553764, + -0.007959743961691856, + -0.02858271822333336, + -0.03568963333964348, + -0.022147729992866516, + -0.013813257217407227, + 0.0004171274194959551, + 0.0029332174453884363, + 0.003261104691773653, + -0.016397589817643166, + 0.00956203043460846, + 0.0029897496569901705, + -0.001681431313045323, + -0.018801018595695496, + 0.016139157116413116, + 0.002112691756337881, + 0.007830527611076832, + 0.04514829069375992, + -0.014420575462281704, + 0.04424377158284187, + -0.0045387339778244495, + 0.0005847052088938653, + 0.03739529103040695, + 0.04235721006989479, + -0.012391874566674232, + 0.0023824316449463367, + 0.005188047420233488, + 0.012805367819964886, + 0.003818351309746504, + -0.012314344756305218, + -0.028918681666254997, + 0.006822637747973204, + 0.020571287721395493, + -0.006325153633952141, + 0.009736472740769386, + -0.025597814470529556, + 0.026011306792497635, + -0.01633298210799694, + 0.041116729378700256, + 0.012404795736074448, + -0.013270547613501549, + -0.001720196334645152, + 0.006867863703519106, + 0.03969534859061241, + 0.01986059546470642, + -0.02101062424480915, + -0.01137752365320921, + 0.008838417008519173, + 0.006919550243765116, + -0.005146052222698927, + 0.03070187009871006, + -0.012307883240282536, + 0.0008609057986177504, + -0.023194383829832077, + -0.019240355119109154, + -0.05140237510204315, + -0.03098614700138569, + 0.036387402564287186, + -0.03592222183942795, + -0.011526122689247131, + -0.02597254142165184, + 0.0006460831500589848, + -0.034423310309648514, + -0.007862831465899944, + -0.011151394806802273, + 0.024861278012394905, + 0.015570603311061859, + 0.03566378727555275, + -0.012760141864418983, + -0.0022887494415044785, + 0.01250170823186636, + -0.014265515841543674, + 0.027626514434814453, + 0.012521090917289257, + -0.024357333779335022, + -0.016656022518873215, + -0.020997701212763786, + -0.02315562032163143, + 0.030055787414312363, + 0.0011451822938397527, + -0.012960427440702915, + -0.012055911123752594, + -0.024228116497397423, + -0.0030608188826590776, + -0.022561222314834595, + -0.03145132586359978, + -0.01682400517165661, + -0.0009578182362020016, + 0.011700565926730633, + -0.009723551571369171, + -0.04021221399307251, + 0.004774554166942835, + -0.017366714775562286, + 0.03832565248012543, + -0.027807418256998062, + 0.005459402687847614, + -0.0017024290282279253, + -0.013270547613501549, + 0.0018300304654985666, + 0.013567745685577393, + -0.016242530196905136, + -0.025365224108099937, + 0.019770143553614616, + -0.005281729623675346, + 0.03085692971944809, + -0.00993029773235321, + 0.006612660828977823, + 0.0029235261026769876, + 0.0036180655006319284, + -0.025352302938699722, + 0.006777412258088589, + 0.012256196700036526, + 0.018697645515203476, + 0.019188668578863144, + 0.018090328201651573, + -0.003327328013256192, + 0.0028411506209522486, + -0.04013468325138092, + 0.020131951197981834, + -0.008935329504311085, + 0.016475120559334755, + 0.019679691642522812, + -0.03070187009871006, + 0.015428464859724045, + 0.031580545008182526, + -0.03359632194042206, + 0.012055911123752594, + 0.012792445719242096, + -0.0071973660960793495, + 0.013360999524593353, + 0.01622960902750492, + -0.010847736150026321, + -0.003656830405816436, + 0.05478784814476967, + -0.022096043452620506, + 0.01896900124847889, + -0.000962663849350065, + -0.002487420104444027, + 0.011461514979600906, + 0.01863303780555725, + 0.015635211020708084, + -0.0024082749150693417, + 0.010382556356489658, + 0.01745716668665409, + 0.03369969502091408, + 0.025727029889822006, + 0.009749394841492176, + 0.02137243002653122, + 0.01241125725209713, + -0.046182021498680115, + 0.019343728199601173, + -0.027729887515306473, + 0.002185376128181815, + 0.006318693049252033, + -0.015053736977279186, + -0.055201344192028046, + 0.01648804172873497, + 0.001259054522961378, + 0.01986059546470642, + -0.03266596421599388, + 0.03506939113140106, + -0.022819656878709793, + 0.003979871980845928, + -0.005388333462178707, + 0.0058922781608998775, + -0.016681866720318794, + -0.026696154847741127, + 0.017883580178022385, + 0.03982456400990486, + -0.009717090055346489, + 0.017315028235316277, + 0.016811084002256393, + -0.018322916701436043, + -0.0031060446053743362, + 0.008489532396197319, + -0.025649501010775566, + 0.04519997537136078, + 0.031994037330150604, + -0.006360688246786594, + -0.01865888014435768, + 0.0010603839764371514, + -0.012915201485157013, + -0.052772071212530136, + 0.010505312122404575, + 0.025158477947115898, + 0.038635771721601486, + -0.0027119340375065804, + 0.026644468307495117, + -0.016320059075951576, + -0.005013605114072561, + 0.019382493570446968, + 0.004874697420746088, + 0.03390644118189812, + 0.020920172333717346, + 0.016035784035921097, + -0.0236466433852911, + 0.014989128336310387, + 0.0025068025570362806, + 0.029719823971390724, + -0.021049387753009796, + -0.0009465118055231869, + 0.0016418587183579803, + -0.0007333043613471091, + -0.00354053545743227, + -0.028841150924563408, + -0.02586916834115982, + -0.027548985555768013, + 0.01883978396654129, + -0.010931726545095444, + 0.020235324278473854, + -0.016345903277397156, + 0.003049512393772602, + -0.04209877550601959, + 0.027471454814076424, + -0.007190905045717955, + -0.04346847161650658, + 0.015531838871538639, + -0.02853103168308735, + -0.014846990816295147, + 0.007410573307424784, + 0.009135615080595016, + -0.003944337368011475, + 0.011564888060092926, + 0.060008201748132706, + 0.029383860528469086, + 0.006738646887242794, + 0.03548288717865944, + 0.01980890892446041, + -0.022638753056526184, + 0.011661800555884838, + -0.008773809298872948, + 0.01674647442996502, + -0.018219543620944023, + 0.03127042204141617, + 0.027342237532138824, + 0.00625085411593318, + -0.016526807099580765, + 0.008812573738396168, + -0.011396906338632107, + 0.00010882462811423466, + 0.01524756196886301, + 0.03049512393772602, + 0.006173324305564165, + 0.018775176256895065, + 0.016888612881302834, + -0.016100391745567322, + 0.021785922348499298, + 0.017211655154824257, + 0.0076883891597390175, + -0.02605007216334343, + 0.022354476153850555, + -0.01735379360616207, + -0.034087345004081726, + 0.013412686064839363, + -0.02584332600235939, + -0.002104615792632103, + 0.017650991678237915, + -0.011422749608755112, + -0.01402000430971384, + 0.0018364912830293179, + -0.004309374373406172, + -0.005575697403401136, + 0.0038926508277654648, + -0.006422066129744053, + 0.008470149710774422, + 0.01904653012752533, + -0.0027684662491083145, + -0.01810324937105179, + -0.02221233770251274, + 0.025158477947115898, + -0.014407653361558914, + -0.00035171149647794664, + 5.249425521469675e-5, + 0.03034006431698799, + 0.013839100487530231, + -0.016656022518873215, + -0.021566255018115044, + -0.018400447443127632, + 0.03943691402673721, + -0.043675221502780914, + 0.005120208952575922, + -0.009387588128447533, + 0.009885071776807308, + -0.004409517161548138, + 0.003337019355967641, + 0.009167919866740704, + 0.00902578141540289, + -0.0187622532248497, + 0.06610722839832306, + -0.007772380020469427, + 0.009251910261809826, + -0.031063677743077278, + -0.01133875921368599, + -0.034113191068172455, + 0.0061927069909870625, + -0.001077343593351543, + 0.015170032158493996, + 0.0010062744840979576, + -0.029564764350652695, + 0.00638976227492094, + -0.0350177064538002, + -0.014562713913619518, + -0.04675057530403137, + 0.0202740877866745, + -0.021747158840298653, + -0.009316518902778625, + -0.004952227231115103, + -0.02398260496556759, + -0.019511710852384567, + -0.022948872298002243, + -0.03367385268211365, + -0.00030648568645119667, + -0.01993812620639801, + 0.0036988258361816406, + 0.008534758351743221, + -0.016733553260564804, + 0.02811753749847412, + 0.016100391745567322, + -0.016630180180072784, + -0.001389886368997395, + 0.0032336460426449776, + 0.02806585095822811, + 0.004545195028185844, + 0.0007236131350509822, + -0.003760203719139099, + 0.021333664655685425, + -0.023814624175429344, + 0.005184817127883434, + 0.027419768273830414, + 0.01787065900862217, + -0.014045847579836845, + -0.010363173671066761, + -0.0028928371611982584, + -0.011887929402291775, + -0.016074547544121742, + -0.014575635083019733, + 0.013018575496971607, + 0.003818351309746504, + -0.025223085656762123, + 0.041323475539684296, + -0.0032304157502949238, + 0.003107659751549363, + -0.020674660801887512, + -0.02377585880458355, + -0.011403366923332214, + 0.005562775768339634, + -0.028970368206501007, + 0.01110616885125637, + -0.014653165824711323, + -0.030004100874066353, + -0.029823197051882744, + 0.006202397868037224, + -0.03369969502091408, + -0.021837610751390457, + 0.026295583695173264, + -0.019666770473122597, + -0.017470087856054306, + -0.029435547068715096, + -0.013774492777884007, + 0.006228241603821516, + 0.0021740696392953396, + -0.010117662139236927, + -0.024990495294332504, + 0.0004768900980707258, + 0.010440703481435776, + -0.03310529887676239, + 0.020946014672517776, + 0.04258979856967926, + -0.0024018140975385904, + 0.006464061792939901, + -0.008185872808098793, + -0.02395676262676716, + -0.006073181517422199, + -0.011551965959370136, + -0.021747158840298653, + 0.005007144063711166, + -0.018594272434711456, + 0.03550872951745987, + 0.026954587548971176, + 0.01046654675155878, + -0.011035099625587463, + -0.03132211044430733, + 0.0190206877887249, + 0.02315562032163143, + -0.015428464859724045, + -0.022121885791420937, + -0.03868745639920235, + -0.0020690811797976494, + -0.03362216800451279, + 0.018503820523619652, + 0.04243474081158638, + 0.0070746103301644325, + -0.016630180180072784, + 0.02160502038896084, + -0.0031932659912854433, + -0.006321923341602087, + 0.022716283798217773, + 0.001426228554919362, + -0.014485184103250504, + 0.020597130060195923, + 0.006296080071479082, + -0.01110616885125637, + 0.019511710852384567, + -0.045897744596004486, + -0.029926570132374763, + -0.012811828404664993, + 0.00045912282075732946, + -0.008670435287058353, + -0.002739392453804612, + -0.005901969503611326, + -0.02451239340007305, + -0.07261974364519119, + -0.03545704111456871, + -0.0032433373853564262, + -0.011894389986991882, + 0.012559856288135052, + -0.001965707866474986, + 0.009910915046930313, + 0.02349158190190792, + -0.009478039108216763, + 0.008993477560579777, + 0.011164316907525063, + -0.005259116645902395, + 0.007746536750346422, + 0.01615207828581333, + 0.013180095702409744, + -0.01628129556775093, + -0.011732869781553745, + -0.0165138840675354, + 0.015131266787648201, + -0.021281978115439415, + -0.02369832992553711, + 0.011752252466976643, + 0.036826737225055695, + -0.013787413947284222, + -0.021566255018115044, + 0.024783749133348465, + 0.02160502038896084, + 0.007216748781502247, + -0.007436417043209076, + -0.000852022145409137, + 0.010053053498268127, + 0.01175871305167675, + -0.007591476663947105, + -0.009129154495894909, + -0.017625147476792336, + 0.03969534859061241, + 0.008192334324121475, + -0.01771559938788414, + 0.05985314026474953, + 0.011500279419124126, + 0.008644592016935349, + 0.018620116636157036, + 0.0033079455606639385, + -0.014691930264234543, + -0.005003913771361113, + 0.0011912158224731684, + 0.001309125917032361, + -0.03491433337330818, + 0.008896565064787865, + 0.003220724407583475, + 0.010091818869113922, + -0.00647375313565135, + -0.0060408771969377995, + -0.008560601621866226, + -0.0033757842611521482, + 0.005666148848831654, + 0.019498789682984352, + 0.009943219833076, + 0.014084612019360065, + 0.017340870574116707, + 0.01545430812984705, + 0.01250170823186636, + -0.00998198427259922, + -0.0005087904864922166, + -0.010647449642419815, + -0.00031637883512303233, + 0.0018784867133945227, + 0.005724296439439058, + 0.014614400453865528, + 0.015221718698740005, + 0.008302167989313602, + -0.014808225445449352, + -0.005113747902214527, + 0.007132757920771837, + 0.021385351195931435, + 0.0010805740021169186, + 0.010227495804429054, + 0.02448655106127262, + -0.006405914202332497, + -0.009374666027724743, + -0.013516059145331383, + -0.006719264667481184, + -0.02205727808177471, + 0.017263341695070267, + -0.020674660801887512, + 0.0036891347263008356, + 0.010808970779180527, + -0.019498789682984352, + -0.010447164066135883, + 0.004535503685474396, + 0.01569982059299946, + 0.013360999524593353, + 0.030133318156003952, + 0.027393924072384834, + -0.015441386960446835, + 0.03842902556061745, + -0.03336373344063759, + -0.0053237248212099075, + -0.010040131397545338, + 0.019356651231646538, + -0.0006832329090684652, + -0.03326036036014557, + 0.013199478387832642, + -0.015338013879954815, + 0.0014076536754146218, + 0.001705659436993301, + -0.0036180655006319284, + 0.0011274151038378477, + -0.013134869746863842, + -0.004028328228741884, + -0.002708703512325883, + 0.02858271822333336, + -0.007475181948393583, + 0.007216748781502247, + 0.010266261175274849, + -0.004861775785684586, + -0.01633298210799694, + -0.011920234188437462, + -0.015441386960446835, + 0.004554885905236006, + 0.002057774690911174, + 0.03127042204141617, + -0.017470087856054306, + -0.014536870643496513, + 0.010595763102173805, + 0.013231782242655754, + -0.010783127509057522, + -0.01646219752728939, + 0.004448282532393932, + 0.018012797459959984, + -0.014045847579836845, + 0.002048083581030369, + -0.019330807030200958, + 0.006480213720351458, + 0.003679443383589387, + -0.0025891780387610197, + 0.001899484428577125, + -0.003992793615907431, + 0.04194371774792671, + -0.0024276573676615953, + -0.021437037736177444, + -0.013761570677161217, + 0.00887072179466486, + 0.0030462818685919046, + -0.020261166617274284, + 0.020287010818719864, + -0.03326036036014557, + -0.010867117904126644, + 0.005601540673524141, + -0.0008096229285001755, + -0.014032925479114056, + 0.046285394579172134, + 0.03253674507141113, + 0.046207863837480545, + -0.012301422655582428, + -0.01891731470823288, + -0.0004122818063478917, + 0.0006610237760469317, + -0.014575635083019733, + 0.011900851503014565, + -0.0014343045186251402, + 0.009051624685525894, + 0.003333789063617587, + 0.02636019140481949, + 0.0027765422128140926, + -0.013012113980948925, + -0.012508169747889042, + -0.003647139295935631, + -0.019589239731431007, + 0.0019463254138827324, + -0.0016668945318087935, + 0.014588557183742523, + 0.002879915526136756, + -0.0013729266356676817, + -0.011765173636376858, + 0.00013820122694596648, + -0.02829844132065773, + -0.0019172517349943519, + 0.015195875428617, + -0.014885755255818367, + -0.026347270235419273, + 0.008747966028749943, + -0.0025487979874014854, + 0.0052009690552949905, + 0.0098786111921072, + 0.02001565508544445, + -0.00032607009052298963, + 0.012030067853629589, + 0.0033531715162098408, + -0.008560601621866226, + 0.029435547068715096, + -0.007223209366202354, + -0.0024987265933305025, + 0.021385351195931435, + 0.0034694664645940065, + -0.00018282134260516614, + 0.02022240124642849, + 0.028737777844071388, + -0.01630713790655136, + -0.024318568408489227, + -0.007462260313332081, + -0.013270547613501549, + 0.02037746272981167, + 0.006570665631443262, + 0.005372181069105864, + -0.009419891983270645, + -0.02320730686187744, + 0.04434714466333389, + 0.027057960629463196, + -0.03049512393772602, + -0.0034791575744748116, + 0.005007144063711166, + 0.0050297570414841175, + -0.031115364283323288, + -0.00386680755764246, + -0.005507858470082283, + -0.002180530456826091, + -0.02155333384871483, + 0.009361744858324528, + -0.02510678954422474, + 0.017043672502040863, + -0.014937441796064377, + 0.026670312508940697, + 0.006764490157365799, + 0.026696154847741127, + 0.009833385236561298, + 0.025856247171759605, + -0.023065168410539627, + -0.01241125725209713, + -0.019447103142738342, + -0.019925203174352646, + -0.006783872842788696, + -0.013025036081671715, + 0.020131951197981834, + -0.021837610751390457, + 0.0033047152683138847, + 0.036568306386470795, + -0.0023824316449463367, + -0.004399826284497976, + -0.0028120768256485462, + -0.0013260856503620744, + -0.004241535905748606, + -0.007488103583455086, + 0.007727154064923525, + 0.03558626025915146, + 0.018116170540452003, + -0.016707709059119225, + -0.011771634221076965, + 0.004739019554108381, + -0.0008948251488618553, + 0.01417506393045187, + 0.011364602483808994, + -0.010175809264183044, + -0.003899111645296216, + -0.033932287245988846, + -0.01970553584396839, + 0.04930906370282173, + 0.005391563754528761, + 0.005940734408795834, + 0.003492079209536314, + -0.014717773534357548, + -0.012676151469349861, + 0.02124321274459362, + -0.00993029773235321, + 0.01523463986814022, + -0.009859228506684303, + 0.008760887198150158, + 0.031063677743077278, + 0.052797913551330566, + 0.01047946885228157, + 0.01768975704908371, + 0.007895136252045631, + -0.019059453159570694, + 0.0010523078963160515, + 0.00478101521730423, + -0.006263775750994682, + -0.004354600328952074, + -0.024318568408489227, + 0.013929552398622036, + 0.03085692971944809, + -0.04669888690114021, + 0.013671118766069412, + -0.0023872770834714174, + 0.01620376482605934, + 0.025042181834578514, + 0.0069712367840111256, + 0.003333789063617587, + -0.018878549337387085, + 0.03561210259795189, + -0.023943841457366943, + 0.02111399732530117, + 0.01551891677081585, + 0.00821817759424448, + -0.006296080071479082, + 0.010221035219728947, + -7.096819172147661e-5, + 0.011700565926730633, + 0.020765112712979317, + -0.0005023296107538044, + -0.014317202381789684, + 0.017198732122778893, + 0.009988444857299328, + -0.01164241787046194, + -0.003705286653712392, + 0.016009939834475517, + -0.00014496489893645048, + 0.0076690069399774075, + -0.018180780112743378, + 0.004919922910630703, + 0.0004247996548656374, + 0.010647449642419815, + 0.0006452755187638104, + -0.0310378335416317, + -0.0211398396641016, + 0.006719264667481184, + 0.022380320355296135, + 0.020674660801887512, + -0.009626639075577259, + 0.011984841898083687, + -0.019589239731431007, + -0.001065229531377554, + 0.0037085171788930893, + 0.01400708220899105, + 0.008017892017960548, + -0.015596446581184864, + -0.012766602449119091, + 0.00032405107049271464, + 0.0053527988493442535, + 0.009490961208939552, + -0.0019544013775885105, + 0.0016765857581049204, + 0.010815431363880634, + -0.004089706111699343, + -0.026954587548971176, + -0.0035017705522477627, + 0.0003868422645609826, + -0.012475864961743355, + -0.013322234153747559, + -0.026192210614681244, + -0.00027781573589891195, + 0.021643785759806633, + 0.022070199251174927, + -0.006984158419072628, + 0.013981238938868046, + 0.007068149279803038, + 0.029228800907731056, + 0.004541964270174503, + 0.046001117676496506, + 0.0012340188259258866, + -0.00023178232368081808, + 0.02129489928483963, + -0.003492079209536314, + -0.00236466433852911, + -0.03077940084040165, + -0.00938112661242485, + 0.03036590665578842, + 0.027652358636260033, + 0.0019463254138827324, + -0.034242406487464905, + -0.03096030279994011, + -0.03083108738064766, + 0.011778095737099648, + 0.018038641661405563, + 0.029435547068715096, + -0.003156115999445319, + -0.005204199813306332, + -0.0030301299411803484, + -0.014446418732404709, + 0.006648195441812277, + -0.005837360862642527, + -0.012275579385459423, + -0.016681866720318794, + 0.00025883704074658453, + -0.013864943757653236, + 0.002847611438483, + 0.020803876221179962, + -0.017172889783978462, + 0.004558116663247347, + 0.0017686525825411081, + -0.021540410816669464, + 0.01700490713119507, + -0.0016749704955145717, + -0.029590606689453125, + -0.022561222314834595, + 0.012417717836797237, + 0.005184817127883434, + -0.020765112712979317, + 0.009368205443024635, + -0.0071004536002874374, + 0.011765173636376858, + -0.027213022112846375, + -0.03036590665578842, + -0.0031851897947490215, + 0.031658072024583817, + 0.005142821930348873, + 0.019382493570446968, + -0.013012113980948925, + -0.011855625547468662, + -0.03946275636553764, + -0.01998981274664402, + -0.015958253294229507, + 0.01536385715007782, + 0.002088463632389903, + 0.022044356912374496, + -0.02218649536371231, + 0.027445610612630844, + 0.02132074348628521, + 0.036723364144563675, + -0.005698453169316053, + -0.025016339495778084, + 0.016927378252148628, + 0.008295707404613495, + 0.013076722621917725, + -0.01672063209116459, + -0.024279804900288582, + -0.004790706560015678, + -0.012605082243680954, + 0.010324408300220966, + 0.012307883240282536, + -0.03486264497041702, + -0.02484835684299469, + -0.001901099574752152, + -0.010628067888319492, + -0.002421196550130844, + -0.014627321623265743, + -0.007352426182478666, + -0.011267689988017082, + 0.00017767286044545472, + -0.006680499762296677, + -0.01983475126326084, + 0.010905883274972439, + 0.0007070572464726865, + 0.007417034357786179, + -0.004648568108677864, + 0.028866995126008987, + -0.013283468782901764, + -0.0023856619372963905, + 0.010556998662650585, + -0.0041704666800796986, + -0.02602422796189785, + -0.005685531534254551, + -0.013528980314731598, + -0.010951109230518341, + -0.0027959246654063463, + 0.016526807099580765, + -0.032071568071842194, + 0.00761731993407011, + -0.020183637738227844, + 0.01648804172873497, + 0.01842629164457321, + 0.009180841036140919, + -0.029797354713082314, + 0.010007827542722225, + 0.005895508453249931, + 0.0023921227548271418, + -0.012863514944911003, + 0.003912033513188362, + -0.0018639498157426715, + -0.0286602471023798, + 0.03375138342380524, + 0.02451239340007305, + 0.031735602766275406, + -0.002266136696562171, + 0.01016288809478283, + -0.040961671620607376, + 0.0029154501389712095, + 0.029668137431144714, + 0.0006553705898113549, + -0.0202740877866745, + -0.003760203719139099, + 0.03946275636553764, + -0.014950363896787167, + -0.023685406893491745, + -0.005656457971781492, + 0.013916630297899246, + -0.027264708653092384, + -0.02469329722225666, + 0.01909821666777134, + -0.00357283977791667, + -0.022070199251174927, + 0.007572094444185495, + 0.01181039959192276, + 0.029616450890898705, + 0.017625147476792336, + 0.016074547544121742, + -0.03974703326821327, + 0.026566937565803528, + -0.0009287444991059601, + -0.0035437659826129675, + 0.03620649874210358, + -0.026592781767249107, + 0.010485929436981678, + -0.00614748103544116, + -0.009303596802055836, + 0.008683357387781143, + -0.017986955121159554, + -0.024034293368458748, + -0.010272721759974957, + -0.002380816265940666, + 0.018671803176403046, + 0.00593750411644578, + -0.007507485803216696, + -0.026618624106049538, + 0.015428464859724045, + 0.01289581973105669, + -0.011700565926730633, + -0.009400509297847748, + 0.017650991678237915, + 0.00024975152336992323, + -0.0038926508277654648, + -0.02617928758263588, + 0.00019483444339130074, + -0.009646020829677582, + 0.007345965132117271, + -0.021023545414209366, + -0.00013759551802650094, + 0.015131266787648201, + -0.01402000430971384, + -0.008160029537975788, + 0.0026489407755434513, + 0.0016152078751474619, + -0.01567397639155388, + -0.007856370881199837, + -0.008696278557181358, + -0.01669478788971901, + -0.0073201218619942665, + 0.0016878921305760741, + -0.009490961208939552, + 0.002040007384493947, + -0.013283468782901764, + -0.0018171088304370642, + -0.009419891983270645, + 0.000589147035498172, + 0.012269118800759315, + 0.01429135911166668, + 0.0020997701212763786, + 0.013199478387832642, + 0.008696278557181358, + -0.009006398729979992, + -0.0032320308964699507, + -0.003857116214931011, + -0.007177983410656452, + -0.015338013879954815, + -0.006060259882360697, + 0.004603342153131962, + 0.06279928237199783, + -0.00999490637332201, + 0.003563148435205221, + -0.008379697799682617, + 0.022457849234342575, + -0.0035760700702667236, + 0.001770267728716135, + 0.04018637165427208, + -9.205422429658938e-6, + 0.0026247126515954733, + -0.0069518545642495155, + -0.027523141354322433, + -0.01051823329180479, + -0.007261974271386862, + -0.015686897560954094, + 0.006092563737183809, + 0.006835559383034706, + 0.022276947274804115, + -0.009361744858324528, + 0.015803193673491478, + 0.029513077810406685, + 0.0016991986194625497, + 0.004335217643529177, + 0.029409704729914665, + -0.004409517161548138, + 0.014756538905203342, + -0.0007296701078303158, + 0.017392557114362717, + 0.018904391676187515, + 0.02599838562309742, + 0.01008535735309124, + 0.005763061344623566, + -0.03747282177209854, + -0.0048391628079116344, + 0.0025746412575244904, + 0.012404795736074448, + -0.004383673891425133, + 0.006531900260597467, + -0.000326271983794868, + 0.020946014672517776, + -0.00934236217290163, + -0.01041486021131277, + 0.009684786200523376, + 0.0025827172212302685, + -0.011855625547468662, + 0.013864943757653236, + -0.0048327017575502396, + 0.005520780570805073, + -0.001842952100560069, + 0.00526557769626379, + -0.01753469556570053, + -0.0009012859663926065, + 0.005733987782150507, + 0.008638131432235241, + 0.004713176283985376, + -0.001124184695072472, + 0.002862148219719529, + 0.005675840191543102, + -0.010182269848883152, + 0.004480586387217045, + -0.01536385715007782, + 0.0010603839764371514, + -0.013257625512778759, + -0.023995527997612953, + 0.014704852364957333, + -0.010408399626612663, + -0.0017121202545240521, + -0.004422439262270927, + 0.009355283342301846, + 0.01661725901067257, + 0.003530844347551465, + 0.01978306472301483, + -0.002960675861686468, + -0.01641051098704338, + -0.007591476663947105, + 0.013257625512778759, + 0.00939404871314764, + 0.00595688633620739, + -0.0005786481779068708, + -0.0027781573589891195, + 0.003653600113466382, + -0.000938435725402087, + -0.009135615080595016, + -0.022832578048110008, + 0.011132012121379375, + -0.0010175809729844332, + 0.025016339495778084, + 7.066534453770146e-5, + 0.016656022518873215, + -0.007559172809123993, + -0.034242406487464905, + 0.0006279120570980012, + -0.013399763964116573, + 0.003973411396145821, + -0.007087531965225935, + -0.010905883274972439, + -0.01567397639155388, + 0.01046654675155878, + 0.0029461390804499388, + 0.007985587231814861, + 0.0037731255870312452, + -0.0066094305366277695, + 0.0017250420060008764, + 0.006842020433396101, + 0.012915201485157013, + -0.0020028576254844666, + 0.006292849779129028, + 0.02594669908285141, + -0.017185810953378677, + 0.007313660811632872, + 0.001377772307023406, + -0.03310529887676239, + -0.004868236370384693, + -0.012521090917289257, + -0.020442070439457893, + 0.015131266787648201, + -0.00019443064229562879, + 0.004306144081056118, + -0.02336236648261547, + -0.01978306472301483, + 0.010718518868088722, + 0.01067329291254282, + 0.013671118766069412, + 0.010040131397545338, + -0.008470149710774422, + -0.008967634290456772, + -0.008851339109241962, + -0.008263403549790382, + -0.024396099150180817, + 0.011765173636376858, + 0.0031625768169760704, + -0.0013309312053024769, + 0.0002893240889534354, + 0.020584208890795708, + -0.009872150607407093, + -0.004609803203493357, + 0.014511027373373508, + 0.003482388099655509, + 0.016836926341056824, + -0.027161335572600365, + -0.012521090917289257, + 0.016656022518873215, + -0.010647449642419815, + 0.013451450504362583, + 0.009058085270226002, + 0.014407653361558914, + 0.003579300595447421, + -0.0121915889903903, + 0.016604335978627205, + 0.02160502038896084, + 0.019511710852384567, + -0.014834068715572357, + 0.013399763964116573, + -0.0010886500822380185, + -0.007772380020469427, + 0.017043672502040863, + -0.01531217060983181, + 0.002322668908163905, + 0.004067093133926392, + -0.01535093504935503, + 0.001810648012906313, + 0.006299310363829136, + -0.010854196734726429, + -0.0002644902851898223, + -0.029564764350652695, + 0.0066094305366277695, + 0.03245921805500984, + 0.008237560279667377, + 0.020209480077028275, + 0.0050103748217225075, + -0.001557060400955379, + 0.02395676262676716, + 0.003656830405816436, + -0.033854756504297256, + 0.0020190097857266665, + 0.01776728592813015, + 0.00410908879712224, + -0.004338448401540518, + -0.02492588758468628, + 0.005889047868549824, + 0.010272721759974957, + -0.0063154627569019794, + -0.0008584829629398882, + -0.006932471878826618, + 0.025287693366408348, + -0.014808225445449352, + -0.004144623409956694, + 0.0023452816531062126, + -0.00504267867654562, + -0.005301112309098244, + -0.010240417905151844, + 0.00307374051772058, + -0.00037432441604323685, + -0.006816177163273096, + -0.008663974702358246, + -0.004461204167455435, + 0.005814748350530863, + 0.03036590665578842, + -0.015221718698740005, + 0.012107597663998604, + -0.0014229981461539865, + 0.0038118904922157526, + -0.00042641485924832523, + -0.019899360835552216, + -0.012475864961743355, + -0.016009939834475517, + -0.009529726579785347, + -0.01794818975031376, + -0.005049139726907015, + 0.01529924850910902, + -0.05458110198378563, + -0.011939615942537785, + 0.02458992414176464, + -0.0003628160629887134, + -0.007249052636325359, + 0.01860719360411167, + -0.007358886767178774, + -0.002225756412371993, + 0.04421792924404144, + 0.016048705205321312, + 0.004868236370384693, + 0.023582033812999725, + 0.009232527576386929, + -0.004448282532393932, + -0.0064382185228168964, + 0.011125551536679268, + 0.005724296439439058, + -0.007281356956809759, + 0.012042989954352379, + -0.010072436183691025, + 0.027833260595798492, + -0.02259998768568039, + -0.010221035219728947, + 0.003996024373918772, + 0.016320059075951576, + 0.03739529103040695, + 0.024318568408489227, + -0.01860719360411167, + 0.011778095737099648, + -0.005249425303190947, + -0.010330868884921074, + 0.009503883309662342, + -0.018245387822389603, + 0.013916630297899246, + 0.009297136217355728, + 0.016552649438381195, + 0.008890103548765182, + -0.006499596405774355, + -0.004457973409444094, + -2.2877904484630562e-5, + 0.018956078216433525, + -0.009045164100825787, + 0.0018154935678467155, + 0.012598620727658272, + 0.014950363896787167, + 0.019770143553614616, + -3.318747258163057e-5, + -0.005973038729280233, + 0.014562713913619518, + -0.005717835854738951, + -0.0018203392392024398, + 0.02142411656677723, + 0.0034791575744748116, + -0.001956016756594181, + 0.009781698696315289, + 0.011358141899108887, + -0.019434180110692978, + -0.008127725683152676, + -0.011991302482783794, + 0.006183015648275614, + -0.004499969072639942, + 0.00991737563163042, + 0.0063154627569019794, + 0.014730695635080338, + -0.008211717009544373, + -0.0026763994246721268, + 0.019188668578863144, + 0.010382556356489658, + -0.0006327576702460647, + 0.010828353464603424, + -0.012152823619544506, + -0.005236503668129444, + -0.018749332055449486, + -0.007740075699985027, + 0.01881394162774086, + -0.02840181440114975, + -0.00203839223831892, + 0.009096850641071796, + -0.0066288127563893795, + -0.014756538905203342, + -0.005569236818701029, + -0.013955395668745041, + 0.01669478788971901, + -0.00865105353295803, + -0.005039448384195566, + 0.0014900292735546827, + -0.011009256355464458, + 0.007261974271386862, + -0.006796794477850199, + 0.0024276573676615953, + -0.009646020829677582, + 0.006108716130256653, + -0.004260918125510216, + -0.018568430095911026, + 0.01865888014435768, + -0.0003634217719081789, + 0.013186556287109852, + -0.010544076561927795, + -0.002030316274613142, + 0.008250481449067593, + 0.013994161039590836, + 0.00386680755764246, + 0.015609368681907654, + 0.005123439244925976, + 0.012773063965141773, + -0.02605007216334343, + 0.004422439262270927, + 0.009755855426192284, + 0.009839845821261406, + -0.00833447277545929, + -0.006745107937604189, + 0.022380320355296135, + 0.012314344756305218, + 0.00875442661345005, + 0.008056656457483768, + 0.003099583787843585, + 0.011946077458560467, + 0.01551891677081585, + 0.006273467093706131, + 0.009077467955648899, + 0.019382493570446968, + -0.00998198427259922, + -0.013813257217407227, + 0.007236131001263857, + 0.008011430501937866, + 0.0016039013862609863, + -0.01622960902750492, + -0.013218861073255539, + -0.015480151399970055, + 0.004706715699285269, + -0.012159284204244614, + 0.007313660811632872, + 0.006496366113424301, + -0.005805057007819414, + 0.002398583572357893, + 0.03705932945013046, + 0.01303795725107193, + -0.01635882444679737, + 0.006515748333185911, + 0.03556041419506073, + 0.011719947680830956, + -0.004273839760571718, + 0.0071973660960793495, + -0.02586916834115982, + -0.019007766619324684, + 0.0047842455096542835, + -0.032097410410642624, + 0.00708107091486454, + -0.013955395668745041, + -0.003986333031207323, + -0.01725042052567005, + 0.014937441796064377, + -0.00879319105297327, + -0.008198794908821583, + -0.009671864099800587, + -0.0033467106986790895, + -0.0013341616140678525, + 0.032252468168735504, + -0.002178915310651064, + 0.01980890892446041, + -0.00025177051429636776, + -0.01781897246837616, + 0.005259116645902395, + -0.01991228200495243, + -0.0063090017065405846, + -0.006331614684313536, + 0.013193017803132534, + 0.01551891677081585, + -0.003889420535415411, + 0.026398956775665283, + 0.025416910648345947, + -0.009833385236561298, + -0.017185810953378677, + -0.001852643326856196, + 0.014588557183742523, + 0.017547618597745895, + -0.0009045163751579821, + 0.016449276357889175, + 7.051391730783507e-5, + -0.008379697799682617, + 0.01235957071185112, + 0.022793812677264214, + 0.02108815312385559, + -0.005071752704679966, + -0.0011274151038378477, + -0.024732062593102455, + -0.010001366958022118, + 0.02108815312385559, + 0.0023937379010021687, + -0.004386904649436474, + 0.005746909417212009, + -0.008399080485105515, + 0.0010700752027332783, + 0.009116233326494694, + 0.001778343808837235, + -0.013528980314731598, + -0.0037795864045619965, + 0.03057265467941761, + 0.010363173671066761, + -0.0014221904566511512, + 0.018878549337387085, + 0.036309871822595596, + -0.012327265925705433, + 0.023013481870293617, + -0.002577871782705188, + -0.002374355448409915, + 0.046026963740587234, + -0.0012259427458047867, + 0.013658197596669197, + -0.00012003013398498297, + 0.008457228541374207, + 0.002904143650084734, + 0.006661117076873779, + 0.006344536319375038, + 0.00020937131193932146, + 0.014446418732404709, + 0.022767970338463783, + 8.530316699761897e-5, + 0.0006917127757333219, + 0.01886562816798687, + -0.0029655215330421925, + -0.021281978115439415, + 0.02226402424275875, + 0.0007765111513435841, + -0.02270336076617241, + -0.0038829597178846598, + 0.01896900124847889, + -0.0257657952606678, + -0.0017331179697066545, + 0.020855562761425972, + -0.010492390021681786, + -0.018245387822389603, + 0.009781698696315289, + 0.012611542828381062, + -0.01690153405070305, + 0.014459340833127499, + -0.003002671292051673, + 0.005120208952575922, + -0.000560880929697305, + -0.030391750857234, + -0.0018332608742639422, + 0.010266261175274849, + -0.005204199813306332, + 0.007488103583455086, + -0.014782382175326347, + -0.011125551536679268, + -0.0019786295015364885, + 0.026954587548971176, + 0.013438529334962368, + -0.001770267728716135, + 0.00954910833388567, + -0.004270609468221664, + -0.011532584205269814, + 0.015118345618247986, + -0.0006602162029594183, + 0.013606511056423187, + 0.0060699512250721455, + 0.007585016079246998, + 0.006667578127235174, + 0.0010539231589064002, + -0.004021867644041777, + -0.00711337523534894, + 0.016940299421548843, + -0.010317947715520859, + -0.003792508039623499, + 0.002871839562430978, + -0.014769460074603558, + 0.022096043452620506, + 0.018400447443127632, + -0.013852022588253021, + -0.015893645584583282, + 0.004751941654831171, + -0.008696278557181358, + 0.020287010818719864, + 0.022612908855080605, + 0.0004692178627010435, + -0.023194383829832077, + 0.014433497563004494, + -2.7509007850312628e-5, + 0.006635273806750774, + -0.0009109771926887333, + 0.01310256589204073, + -0.006997080519795418, + 0.004745480604469776, + 0.0003747282025869936, + -0.007520407438278198, + 0.00504267867654562, + 0.043752748519182205, + 0.01115785539150238, + -0.0008867490687407553, + 0.0015271790325641632, + -0.0062605454586446285, + -0.0031335032545030117, + 0.032226625829935074, + 0.006099024787545204, + 0.009045164100825787, + -0.0011912158224731684, + 0.009516804479062557, + 0.002130459062755108, + 0.00617978535592556, + 0.003320867195725441, + -0.0026247126515954733, + -0.003459775121882558, + 0.005404485389590263, + -0.01776728592813015, + 0.01787065900862217, + 0.0028169224970042706, + 0.010892961174249649, + 0.01411045528948307, + 0.017909424379467964, + 0.0049845315515995026, + -0.010679754428565502, + -0.007035845424979925, + -0.011467975564301014, + 0.003627756843343377, + 0.014640243723988533, + 0.0019544013775885105, + 0.01763806864619255, + -0.006321923341602087, + 0.0083215506747365, + -0.03817059099674225, + 0.013322234153747559, + 0.010285643860697746, + 0.005469093564897776, + -0.0038312729448080063, + 0.014149220660328865, + 0.017444243654608727, + -0.016009939834475517, + 0.03739529103040695, + -0.00412847101688385, + 0.0011427595745772123, + 0.0025504131335765123, + 0.03724023327231407, + -0.009665403515100479, + -0.014717773534357548, + -0.016991985961794853, + -0.03300192579627037, + 0.0018138784216716886, + 0.00039512020885013044, + 0.00022996521147433668, + -0.004910231567919254, + 0.005973038729280233, + 0.027884947136044502, + 0.01684984751045704, + 0.01620376482605934, + -0.01524756196886301, + -0.014846990816295147, + -0.0012630925048142672, + 0.01041486021131277, + 0.014795303344726562, + -0.0028896068688482046, + -0.000999006093479693, + -0.007255513686686754, + 0.005924582481384277, + -0.012902280315756798, + -0.0010733056114986539, + 0.0029881345108151436, + 0.009620177559554577, + -0.0024018140975385904, + 0.011487358249723911, + -0.031813133507966995, + -0.0018914083484560251, + -0.01774144358932972, + -0.014627321623265743, + -0.008657514117658138, + 0.013167174533009529, + -0.008896565064787865, + -0.008502453565597534, + 0.004826241172850132, + -0.019085295498371124, + -0.0013519289204850793, + -0.010376094840466976, + -0.00033091570367105305, + 0.005889047868549824, + 0.0018219543853774667, + 0.015040814876556396, + -0.01299919281154871, + 0.001786419888958335, + -0.004335217643529177, + -0.011726409196853638, + 0.021152760833501816, + -0.0032578741665929556, + -0.011681183241307735, + 0.0010523078963160515, + 0.01122246403247118, + -0.0049554575234651566, + -0.019356651231646538, + -0.020855562761425972, + -0.004186618607491255, + -0.01181039959192276, + 0.0020610052160918713, + -0.0014956824015825987, + 0.007585016079246998, + 0.009484500624239445, + -0.011719947680830956, + 0.003941107075661421, + 0.02239324152469635, + -0.02456407994031906, + 0.0032239549327641726, + -0.01991228200495243, + -0.01062160637229681, + 0.007895136252045631, + -0.011073864996433258, + -0.014213829301297665, + 0.003724669339135289, + -0.0025972542352974415, + 0.029409704729914665, + -0.00017676431161817163, + 0.018167857080698013, + -0.00495868781581521, + -0.03080524317920208, + -0.018335839733481407, + 0.001546561485156417, + -0.015428464859724045, + 0.007940361276268959, + -0.0027022426947951317, + 0.005947194993495941, + 0.0030802013352513313, + 0.019188668578863144, + -0.012062371708452702, + 0.0025665652938187122, + 0.024189352989196777, + 0.005614462308585644, + -0.0312962681055069, + -0.0023291297256946564, + -0.03509523719549179, + -0.0157773494720459, + -0.0074428776279091835, + 0.014446418732404709, + -0.004235074855387211, + 0.004031558521091938, + -0.0023695097770541906, + -0.022819656878709793, + 0.00193340377882123, + -0.003115735948085785, + -0.022199416533112526, + 0.021747158840298653, + -0.013761570677161217, + -0.024073056876659393, + -0.0035114618949592113, + -0.007371808402240276, + -0.0026699386071413755, + -0.015260483138263226, + 0.007184444461017847, + -0.0013236628146842122, + 0.005737218074500561, + -0.0011879854137077928, + -0.02216065116226673, + 0.006305771414190531, + -0.007998509332537651, + 0.0029073741752654314, + -0.013541902415454388, + 0.0008172951638698578, + 0.013335156254470348, + 0.003097968641668558, + -0.014795303344726562, + 0.018465055152773857, + 0.01633298210799694, + 0.001627321937121451, + -0.005394794046878815, + -0.006195937283337116, + 0.014084612019360065, + -0.011319376528263092, + -0.0015279866056516767, + -0.003824812127277255, + -0.029487233608961105, + -0.018297074362635612, + -0.008799652568995953, + -0.0012420947896316648, + -0.04961918294429779, + 0.012618003413081169, + 0.0003716996870934963, + -0.03269180655479431, + -0.014704852364957333, + -1.6152078387676738e-5, + 0.017754364758729935, + -0.0046614897437393665, + -0.00030083247111178935, + -0.021075231954455376, + -0.002398583572357893, + -0.004790706560015678, + -0.014420575462281704, + 0.0012719761580228806, + -0.0034694664645940065, + 0.018801018595695496, + 0.01400708220899105, + -0.02155333384871483, + 0.0024357333313673735, + 0.008017892017960548, + -0.006764490157365799, + -0.017444243654608727, + -0.01656557060778141, + -0.011403366923332214, + -0.014265515841543674, + 0.018232466652989388, + -0.024034293368458748, + 0.017198732122778893, + 0.0036083743907511234, + 0.013890787027776241, + 0.004826241172850132, + 0.004974840208888054, + -0.0058438219130039215, + -0.006919550243765116, + 0.005110517609864473, + -0.011939615942537785, + -0.012960427440702915, + 0.01998981274664402, + -0.0041413926519453526, + -0.002857302548363805, + 0.009452195838093758, + -0.019563397392630577, + 0.011293533258140087, + 0.0068290987983345985, + 0.012876437045633793, + -0.0023840467911213636, + -0.008347393944859505, + -0.012915201485157013, + 0.009051624685525894, + -0.020235324278473854, + 0.01774144358932972, + 0.014252593740820885, + 0.012734298594295979, + -0.019537553191184998, + 0.001585326506756246, + -0.012366031296551228, + -0.006186245940625668, + -0.006480213720351458, + 0.005885817110538483, + -0.0019931665156036615, + 0.011648878455162048, + 0.002144996076822281, + -0.0083861593157053, + -0.0023840467911213636, + 0.007720693480223417, + 0.02001565508544445, + -0.005052370019257069, + -0.0035696092527359724, + -0.005569236818701029, + -0.002489035250619054, + 0.010912343859672546, + 0.004083245526999235, + -0.024176429957151413, + 0.026541095227003098, + -0.016035784035921097, + 0.0030349756125360727, + -0.003043051576241851, + 0.005889047868549824, + -0.002072311704978347, + 0.007804684340953827, + 0.0047842455096542835, + -0.0005249425303190947, + -0.0004962725797668099, + -0.0031205816194415092, + 0.010724980384111404, + -0.01303795725107193, + -0.005724296439439058, + 0.010867117904126644, + -0.008709200657904148, + -0.012314344756305218, + -0.009684786200523376, + 0.010498850606381893, + -0.006299310363829136, + -0.0027442381251603365, + -0.0005209045484662056, + 0.004932844545692205, + -0.018620116636157036, + 0.0008746350649744272, + 0.0009045163751579821, + 0.010208113119006157, + 0.01672063209116459, + -0.013528980314731598, + 0.0106345284730196, + -0.013128409162163734, + 0.011248307302594185, + -0.03142548352479935, + -0.015583525411784649, + 0.027833260595798492, + 0.0032659501302987337, + 0.014743616804480553, + 0.011506740935146809, + 0.014782382175326347, + 0.011390445753932, + -0.021992670372128487, + -0.0026747842784971, + 0.017780207097530365, + -0.012559856288135052, + 0.018775176256895065, + -0.01320593897253275, + -0.012637386098504066, + -0.0056176926009356976, + 0.013360999524593353, + 0.00450642965734005, + 0.008541218936443329, + -0.0056176926009356976, + 0.00314157921820879, + 0.0213982742279768, + -0.0069776978343725204, + 0.0048100887797772884, + 0.0040186368860304356, + 0.008676896803081036, + 0.00960079487413168, + -0.0016119774663820863, + -0.023349443450570107, + -0.01014996599406004, + 0.010156426578760147, + -0.0016862769844010472, + 0.004865006078034639, + -0.008160029537975788, + -0.006108716130256653, + 0.006803255528211594, + 0.0023194383829832077, + 0.01241125725209713, + 0.009361744858324528, + -0.0021239982452243567, + -0.023246070370078087, + -0.0023856619372963905, + 0.009310058318078518, + -0.004099397454410791, + 0.003744051791727543, + -0.0013058955082669854, + -0.011971920728683472, + -0.004881158005446196, + -0.00833447277545929, + 0.03612896800041199, + 0.0028266136068850756, + -0.02847934514284134, + -0.007694850210100412, + 0.008554141037166119, + -0.005940734408795834, + -0.001099956571124494, + -0.009142076596617699, + -0.03072771430015564, + 0.01787065900862217, + 0.010653911158442497, + -0.012792445719242096, + -0.013186556287109852, + 0.0022306020837277174, + 0.006183015648275614, + -0.00296875205822289, + -0.004768093582242727, + -0.009503883309662342, + 0.01633298210799694, + -0.0033660931512713432, + 0.003009132109582424, + -0.01641051098704338, + 0.016074547544121742, + 0.002127228770405054, + 0.01004659291356802, + 0.0023032864555716515, + -0.019524632021784782, + -0.0018171088304370642, + 0.004522582050412893, + 0.012618003413081169, + -0.00018796981021296233, + 0.015195875428617, + -0.0175088532269001, + -0.010363173671066761, + 0.002463191980496049, + -0.0008932099444791675, + -0.018064484000205994, + -0.010938187129795551, + -0.010078896768391132, + 0.01878809742629528, + 0.004105858504772186, + -0.007610859349370003, + 0.007300739176571369, + 0.0047648632898926735, + 0.008786730468273163, + -0.020946014672517776, + 0.02134658582508564, + 0.0037795864045619965, + -0.003411318873986602, + 0.014213829301297665, + 0.004554885905236006, + -0.01787065900862217, + -0.01682400517165661, + 0.03351879119873047, + 0.0009893147507682443, + -0.01008535735309124, + 0.014562713913619518, + 0.02349158190190792, + 0.009213145822286606, + 0.027057960629463196, + 0.008657514117658138, + 0.002062620362266898, + -0.0032917936332523823, + 0.013096105307340622, + 0.0009658942581154406, + -0.005365720484405756, + -0.02208312228322029, + 0.01187500823289156, + -0.002127228770405054, + -0.007933900691568851, + -0.025455676019191742, + -0.02855687402188778, + -0.029874883592128754, + -0.04034142941236496, + -0.007520407438278198, + 0.0009885071776807308, + 0.00887072179466486, + 0.005262346938252449, + 0.007152140140533447, + 0.02487420104444027, + 0.006244393531233072, + 0.012572777457535267, + 0.008928868919610977, + -0.007707771845161915, + -0.016087470576167107, + -0.018981922417879105, + -0.01620376482605934, + -0.004467664752155542, + -0.003579300595447421, + -0.007223209366202354, + 0.01013704389333725, + -0.019434180110692978, + -0.00469702435657382, + -0.0024179660249501467, + 0.006848481018096209, + 0.004267379175871611, + -0.013593588955700397, + 0.02035161852836609, + 0.013580667786300182, + -0.0030042866710573435, + -0.00865105353295803, + -0.018090328201651573, + -0.009019320830702782, + -0.0007579362718388438, + -0.029332173988223076, + 0.007940361276268959, + -0.00714567955583334, + 0.023762937635183334, + 0.001983475172892213, + -0.006758029572665691, + -0.013257625512778759, + -0.012424178421497345, + 0.020635895431041718, + -0.004047710914164782, + -0.005007144063711166, + -0.004422439262270927, + 0.010757284238934517, + 0.0013785798801109195, + -0.0025019568856805563, + 0.003769895061850548, + -0.0012041374575346708, + 0.014614400453865528, + 0.0036503695882856846, + -0.010195191949605942, + -0.012837671674787998, + 0.0041220104321837425, + -0.0005641113384626806, + 0.004903770983219147, + -0.006215319503098726, + 0.022767970338463783, + -0.013671118766069412, + 0.004361060913652182, + -0.009755855426192284, + 0.005536932498216629, + 0.0016975834732875228, + -0.00540125509724021, + -0.01904653012752533, + -0.010337330400943756, + -0.014601478353142738, + -0.011635957285761833, + 0.027497297152876854, + 0.03711101412773132, + 0.0408066101372242, + -0.015829036012291908, + 0.01540262158960104, + -0.027678200975060463, + 0.014498105272650719, + -0.012624463997781277, + -0.005763061344623566, + 0.017043672502040863, + -0.0017977262614294887, + -0.002064235508441925, + 0.003802199149504304, + 0.007507485803216696, + -0.003097968641668558, + 0.016862770542502403, + -0.0014714542776346207, + 0.009846307337284088, + -0.008431385271251202, + 0.0005148475174792111, + 0.00205454439856112, + -0.00012840902491007, + -0.023866310715675354, + 0.018878549337387085, + 0.009439274668693542, + -0.01567397639155388, + 0.0023614338133484125, + 0.01551891677081585, + 0.01743132248520851, + -0.0036826739087700844, + 0.005895508453249931, + -0.006237932480871677, + -0.01514418888837099, + -0.007494564168155193, + -0.0027991551905870438, + -0.01648804172873497, + 0.016190843656659126, + 0.0017670373199507594, + 0.006725725252181292, + -0.04814611375331879, + -0.010757284238934517, + -0.016100391745567322, + 0.036284029483795166, + 0.021721314638853073, + 0.024409020319581032, + -0.000636391865555197, + 0.0025956390891224146, + 0.009071007370948792, + 0.010544076561927795, + -0.014446418732404709, + -0.006548052653670311, + -0.005756600759923458, + 0.006596508901566267, + 0.010944648645818233, + -0.023271914571523666, + -0.006228241603821516, + -0.04700900986790657, + 0.007875753566622734, + -0.0048391628079116344, + 0.013225321657955647, + -0.008541218936443329, + -0.012857054360210896, + -0.002030316274613142, + -0.003049512393772602, + 0.03088277392089367, + 7.101867231540382e-5, + -0.003976641688495874, + 0.005158973857760429, + -0.00552724115550518, + -0.027626514434814453, + 0.010796048678457737, + -0.003724669339135289, + -0.011235385201871395, + 0.016113312914967537, + -0.002388892462477088, + 0.0008568677585572004, + 0.009187302552163601, + -0.029151270166039467, + -0.03481096029281616, + 0.01531217060983181, + 0.009019320830702782, + 0.020597130060195923, + -0.0020852333400398493, + 0.0017266571521759033, + 0.005469093564897776, + 0.01187500823289156, + 0.029538920149207115, + -0.010834814049303532, + 0.010647449642419815, + 0.003524383530020714, + -0.017095359042286873, + 0.0025245698634535074, + -0.013916630297899246, + 0.006964776199311018, + 0.02001565508544445, + 0.0005725911469198763, + -0.009768776595592499, + -0.003931415732949972, + 0.0009190532728098333, + -0.007475181948393583, + 0.011403366923332214, + -0.010867117904126644, + -0.014911598525941372, + 0.009271292947232723, + 0.011467975564301014, + -0.008586444891989231, + 0.012120519764721394, + 0.009226066991686821, + -0.004457973409444094, + -0.004102627746760845, + -0.0065803565084934235, + 0.0005273653659969568, + -0.019188668578863144, + 0.014756538905203342, + 0.012288501486182213, + -0.00552724115550518, + -0.0280141644179821, + -0.017935268580913544, + -0.026114679872989655, + 0.025416910648345947, + 0.024189352989196777, + 0.0013640429824590683, + -0.0010829968377947807, + -0.0016079393681138754, + -0.005310803186148405, + 0.03036590665578842, + -0.0157773494720459, + 0.004283531103283167, + -0.0003018419665750116, + 0.0005410946323536336, + -0.004600111860781908, + 0.0022322172299027443, + 0.005268807988613844, + 0.011248307302594185, + -0.003899111645296216, + -0.012088214978575706, + 0.0006820214912295341, + -0.015273405238986015, + 0.009639560244977474, + -0.0014496489893645048, + 0.012966888025403023, + 0.008903025649487972, + -0.004412747919559479, + -0.008030813187360764, + -0.002602099906653166, + 0.012766602449119091, + 0.016888612881302834, + -0.005517549812793732, + -0.0033305585384368896, + 0.024060135707259178, + -0.012004224583506584, + -0.0027603902854025364, + 0.0012937814462929964, + -0.010595763102173805, + -0.01776728592813015, + 0.013839100487530231, + 0.010214574635028839, + 0.014485184103250504, + 0.015945332124829292, + 0.00050959805957973, + 0.003148040035739541, + -0.0010296950349584222, + -0.005817978642880917, + 0.006515748333185911, + 0.007759458385407925, + -0.007177983410656452, + 0.021566255018115044, + 0.0014238057192415, + 0.02586916834115982, + 0.026295583695173264, + 0.012133440934121609, + 0.0010603839764371514, + -0.012055911123752594, + -0.010175809264183044, + -0.001573212444782257, + -0.009264832362532616, + -0.014885755255818367, + 0.010899422690272331, + -0.0031367335468530655, + 0.003459775121882558, + 0.0027959246654063463, + -0.041116729378700256, + 0.0021918369457125664, + -0.02500341646373272, + 0.00932944007217884, + -0.026398956775665283, + 0.03698179870843887, + 0.00616686325520277, + -0.010143505409359932, + 0.02017071470618248, + 0.009258370846509933, + 0.014704852364957333, + 0.02497757412493229, + -0.013083183206617832, + 0.009620177559554577, + 0.00890948623418808, + -0.01169410441070795, + -0.01075082365423441, + -0.009988444857299328, + 0.005733987782150507, + -0.009484500624239445, + -0.00640914449468255, + 0.0050588310696184635, + 0.006777412258088589, + -0.0008649437804706395, + 0.017134124413132668, + -0.0325109027326107, + -0.020661737769842148, + -0.005081444047391415, + 0.007843448780477047, + 0.006541591603308916, + 0.016397589817643166, + 0.018749332055449486, + -0.024189352989196777, + -0.01106740441173315, + 0.012159284204244614, + 0.0008059887331910431, + 0.019976889714598656, + -0.010957569815218449, + -0.005197738762944937, + -0.004855314735323191, + -0.020610051229596138, + 0.00773361511528492, + -0.006160402670502663, + 0.009193763136863708, + 0.020157793536782265, + -0.003028514562174678, + -0.03961781784892082, + -0.008696278557181358, + 0.04173697158694267, + -0.016643101349473, + -0.027006274089217186, + -0.002153072040528059, + 0.00875442661345005, + -0.004845623392611742, + -0.01730210706591606, + 0.014937441796064377, + 0.013244704343378544, + -0.005514319520443678, + -0.0061636329628527164, + -0.027032118290662766, + 0.0034274710342288017, + 0.040858298540115356, + -0.019330807030200958, + -0.020765112712979317, + 0.0143301235511899, + 0.02272920496761799, + 0.015829036012291908, + 0.022199416533112526, + 0.0056241536512970924, + -0.007022923789918423, + 0.008095421828329563, + 0.009762316010892391, + 0.00875442661345005, + -0.023271914571523666, + -0.0008455612696707249, + 0.02006734162569046, + 0.02291010692715645, + 0.02822091057896614, + -0.015027893707156181, + -0.0007514754543080926, + -0.012889358215034008, + 0.01878809742629528, + -0.016927378252148628, + -0.0014658011496067047, + -0.024163508787751198, + 0.011564888060092926, + -0.005889047868549824, + 0.02218649536371231, + -0.025533204898238182, + 0.0015473690582439303, + -0.01053115539252758, + -0.0017928807064890862, + 0.002057774690911174, + -0.007300739176571369, + 0.002705473219975829, + -0.014368888922035694, + 0.012540473602712154, + -0.013451450504362583, + 0.0008209293591789901, + -0.001427843701094389, + 0.012915201485157013, + -0.011765173636376858, + 0.005808287300169468, + -0.0157773494720459, + 0.01641051098704338, + 0.01625545136630535, + -0.025778716430068016, + 0.023504504933953285, + -0.009671864099800587, + 0.009717090055346489, + -0.0012945890193805099, + 0.0049360753037035465, + -0.003180344123393297, + -0.014420575462281704, + -0.011312915943562984, + 0.0006279120570980012, + -0.013826179318130016, + 0.005908430088311434, + 0.005498167593032122, + 0.016630180180072784, + 0.003979871980845928, + -0.026644468307495117, + 0.013147791847586632, + 0.006680499762296677, + -0.0071973660960793495, + 0.0038829597178846598, + 0.00152879417873919, + 0.0019608621951192617, + -0.024706218391656876, + -0.008844878524541855, + -0.0015562527114525437, + 0.004745480604469776, + 0.031968194991350174, + 0.0021902217995375395, + 0.009671864099800587, + -0.03848071023821831, + -0.023220228031277657, + -0.028866995126008987, + 0.007404112722724676, + -0.008366776630282402, + -0.012126980349421501, + 0.015208796598017216, + -0.014730695635080338, + -0.00810188241302967, + -0.0033887061290442944, + 0.0018542585894465446, + -0.0016701249405741692, + 0.006528669968247414, + 0.004732558969408274, + -0.01429135911166668, + 0.0024922657757997513, + 0.02168254926800728, + 0.0005003106198273599, + 0.00035897994530387223, + -0.016914457082748413, + -0.007429955992847681, + 0.0060893334448337555, + 0.01896900124847889, + 0.009490961208939552, + -0.00982692465186119, + 0.00042197303264401853, + -0.004199540242552757, + 0.0027959246654063463, + 0.0003868422645609826, + -0.011668261140584946, + -0.018568430095911026, + 0.003327328013256192, + 0.013438529334962368, + 0.004412747919559479, + 0.0016224762657657266, + -0.006699881982058287, + -0.013270547613501549, + -0.03599975258111954, + -0.006024725269526243, + 0.019563397392630577, + 0.0128828976303339, + -0.006997080519795418, + -0.001867180224508047, + -0.006305771414190531, + 0.0005948002799414098, + -0.015583525411784649, + -0.0008132571238093078, + -6.85958584654145e-5, + -0.002111076610162854, + -0.016991985961794853, + -0.008515375666320324, + 0.011312915943562984, + -0.003327328013256192, + 0.015428464859724045, + -0.021850531920790672, + -0.024680376052856445, + -0.0015554451383650303, + -0.0031028143130242825, + 0.004364291671663523, + 0.013554824516177177, + -0.007494564168155193, + -0.007274895906448364, + 0.005543393082916737, + -0.0038280426524579525, + -0.0014932596823200583, + 0.004173696972429752, + -0.011086786165833473, + 0.026515251025557518, + 0.006428527180105448, + -0.010130583308637142, + -0.005866434890776873, + -0.014614400453865528, + -0.003769895061850548, + -0.008030813187360764, + 0.015764428302645683, + -0.02111399732530117, + -0.020390383899211884, + 0.002929986920207739, + -0.02354326844215393, + -0.01690153405070305, + -0.0003113312995992601, + 0.009180841036140919, + 0.00011346834799041972, + 0.0036083743907511234, + -0.004383673891425133, + 0.0064608315005898476, + 0.007171522825956345, + 0.004483817145228386, + -0.01743132248520851, + -0.004235074855387211, + 0.009426352567970753, + 0.009833385236561298, + -0.012508169747889042, + -0.016991985961794853, + 0.0030624340288341045, + 0.009839845821261406, + 0.02492588758468628, + -0.013360999524593353, + 0.008560601621866226, + 0.000974777911324054, + 0.00013910977577324957, + -0.005443250294774771, + -0.018309995532035828, + 0.010505312122404575, + -0.013076722621917725, + -0.025727029889822006, + 0.005301112309098244, + -0.015027893707156181, + 0.004952227231115103, + -0.03253674507141113, + 0.025649501010775566, + -0.0006073181284591556, + -0.005824439227581024, + 0.015027893707156181, + -0.005391563754528761, + 0.007171522825956345, + -0.006686960346996784, + 0.0023872770834714174, + 0.015131266787648201, + 0.04026390239596367, + 0.004028328228741884, + -0.008773809298872948, + 0.00020139622210990638, + -0.0028233833145350218, + 0.021307822316884995, + 0.006195937283337116, + -0.013787413947284222, + -0.0029412934090942144, + -0.0054464805871248245, + 0.005898739211261272, + -0.0007094800239428878, + -0.009717090055346489, + -0.0226516742259264, + 0.011894389986991882, + -0.04036727547645569, + 0.008631670847535133, + -0.013516059145331383, + -0.026011306792497635, + 0.02492588758468628, + 0.0003789681359194219, + 0.007468720898032188, + 0.008444306440651417, + 0.0013462756760418415, + -0.006037646904587746, + 0.0014674162957817316, + -0.002346897032111883, + 0.005630614701658487, + 0.006305771414190531, + -0.03297608345746994, + -0.008030813187360764, + 0.0005903584533371031, + -0.006796794477850199, + 0.03067602775990963, + 0.005084674339741468, + -0.005649996921420097, + -0.006590047851204872, + 0.010285643860697746, + -0.0021336895879358053, + 0.002350127324461937, + -0.00993029773235321, + 0.007798223290592432, + 0.015971174463629723, + -0.01165533997118473, + -0.002732931636273861, + 0.003028514562174678, + -0.004406286869198084, + -0.0003991582489106804, + -0.0067063430324196815, + -0.005608001723885536, + -0.004199540242552757, + 0.017340870574116707, + 0.0045645772479474545, + 0.013134869746863842, + 0.002283903770148754, + 0.0037634342443197966, + -0.008399080485105515, + -0.012165745720267296, + 0.012689072638750076, + 0.010376094840466976, + 0.031503014266490936, + -0.0036923650186508894, + -0.001550599467009306, + 0.03310529887676239, + 0.0039507984183728695, + 0.012107597663998604, + -0.005633844994008541, + 0.009962601587176323, + 0.024783749133348465, + 0.01308964379131794, + 0.011739330366253853, + 0.0029800585471093655, + -0.009387588128447533, + 0.008508915081620216, + 0.008760887198150158, + 0.0036988258361816406, + -0.03796384483575821, + -0.008825495839118958, + 0.029332173988223076, + 0.014846990816295147, + 0.01229496207088232, + -0.0019447102677077055 + ], + "cb40370d-5c8f-45ec-8093-73c8448a02fc": [ + -0.0027387267909944057, + -0.03391404077410698, + -0.011773376725614071, + 0.03948243707418442, + -0.004204277880489826, + 0.006096552591770887, + 0.012200100347399712, + 0.01346628088504076, + -0.006715651601552963, + 0.06100050359964371, + -0.02256738767027855, + 0.006600226275622845, + 0.011626471765339375, + 0.01312350295484066, + 0.021616004407405853, + 0.02898922935128212, + -0.01885978877544403, + 0.011696427129209042, + -0.024484146386384964, + 0.0017978359246626496, + 0.03998611122369766, + -0.017054956406354904, + -0.027520181611180305, + -0.021098339930176735, + 0.004557549022138119, + -0.01691504754126072, + -0.004900326952338219, + -0.013088525272905827, + -0.04071363806724548, + 0.006114041432738304, + 0.005456467159092426, + 0.005383014678955078, + 0.009206038899719715, + 0.026820633560419083, + 0.021546049043536186, + -0.05716698616743088, + -0.031899344176054, + -0.009422899223864079, + -0.0291571207344532, + 0.01225606445223093, + 0.004410644061863422, + 0.03455762565135956, + -0.006869552191346884, + -0.01338233519345522, + -0.04118933156132698, + -0.0006741884863004088, + -0.033046603202819824, + -0.0184540506452322, + 0.0031671992037445307, + -0.02980070374906063, + 0.002841909881681204, + 0.0066037243232131, + -0.017376748844981194, + 0.03262687474489212, + 0.031031906604766846, + -0.02265133336186409, + 0.005260593723505735, + 0.05870598927140236, + 0.012927629984915257, + -0.057922497391700745, + 0.0013982197269797325, + -0.04093749448657036, + 0.0074151987209916115, + -0.008996174670755863, + 0.0052535985596477985, + -0.00673314044252038, + -0.04549853876233101, + 0.014424660243093967, + -0.007345244288444519, + 0.02293115295469761, + -0.008247659541666508, + 0.019237544387578964, + -0.03251494839787483, + 0.01562788151204586, + 0.022791242226958275, + 0.001040576258674264, + 0.056551385670900345, + 5.566317850025371e-5, + 0.014242777600884438, + -0.05643945559859276, + 0.042420532554388046, + -0.021937794983386993, + 0.01558590866625309, + 0.011297685094177723, + 0.03735581412911415, + 0.01078001968562603, + -0.04099345579743385, + -0.045694414526224136, + -0.02466602995991707, + -0.009912582114338875, + 0.009597785770893097, + 0.03976225480437279, + -0.0036726221442222595, + 0.04194484278559685, + 0.012081177905201912, + -0.008667387999594212, + 0.02483392134308815, + -0.010451233014464378, + 0.0015538688749074936, + -0.014872370287775993, + -0.004942299798130989, + 0.024721993133425713, + 0.014872370287775993, + 0.008212682791054249, + -0.0003241963277105242, + -0.0227772518992424, + 0.0032179164700210094, + 0.00940890796482563, + 0.01885978877544403, + -0.0028016860596835613, + -0.0163973830640316, + -0.02402244508266449, + 0.01622949168086052, + 0.005463462322950363, + -0.015697835013270378, + -0.00018483345047570765, + -0.026792652904987335, + 0.009681731462478638, + -0.038419123739004135, + -0.01800634153187275, + 0.03895077854394913, + 0.0019552339799702168, + 0.016845092177391052, + 0.0031654504127800465, + -0.03892279788851738, + 0.02757614478468895, + -0.010870961472392082, + 0.03338238596916199, + 0.022147659212350845, + 0.0460301972925663, + -0.0057677654549479485, + -0.015292098745703697, + 0.018314141780138016, + 0.008359587751328945, + -0.0027492200024425983, + 0.035397082567214966, + 0.0047254404053092, + 0.07543915510177612, + -0.03363422304391861, + 0.010940915904939175, + -0.03993014618754387, + 0.018565978854894638, + -0.03847508877515793, + 0.03338238596916199, + -0.012829693034291267, + -0.01419380959123373, + -0.017754504457116127, + 0.06206381320953369, + -0.03424982354044914, + 0.013249421492218971, + -0.010801006108522415, + 0.005145168397575617, + -0.027436235919594765, + -0.010598137974739075, + 0.02188183180987835, + -0.002168595790863037, + -0.00405737292021513, + 0.018929744139313698, + 0.025379566475749016, + 0.056943129748106, + 0.027883945032954216, + -0.039594363421201706, + 0.011479566805064678, + 0.019923100247979164, + 0.055012378841638565, + -0.014158832840621471, + 0.038223251700401306, + 0.02898922935128212, + -0.00022002941113896668, + 0.008471515029668808, + 0.005974131636321545, + -0.04838067293167114, + 0.03671222925186157, + 0.021574031561613083, + 0.019923100247979164, + 0.008933216333389282, + 0.05775460600852966, + 0.039342526346445084, + -0.008436537347733974, + -0.020454755052924156, + -0.02051072008907795, + -0.021657977253198624, + 0.05976929888129234, + 0.003036034293472767, + 0.013983945362269878, + 0.044603120535612106, + 0.033046603202819824, + -0.0032896199263632298, + 0.00030648906249552965, + -0.00291186454705894, + -0.008002818562090397, + -0.010591142810881138, + 0.008485505357384682, + 0.015515953302383423, + -0.02971675805747509, + -0.04076960310339928, + -0.011920281685888767, + 0.002170344814658165, + -0.005536914803087711, + 0.03710397705435753, + -0.03721590340137482, + -0.021350177004933357, + 0.0013649911852553487, + 0.0432879701256752, + -0.03173145279288292, + 0.045526523143053055, + 0.01356421783566475, + -0.006537267006933689, + 0.040517766028642654, + -0.009856618009507656, + 0.04449119418859482, + -0.021266231313347816, + 0.019671263173222542, + -0.0014017174253240228, + -0.013746099546551704, + 0.031395670026540756, + 0.011899295262992382, + 0.006089556962251663, + -0.0016386889619752765, + -0.018118267878890038, + 0.03489340841770172, + -0.01273875217884779, + -0.00038759279414080083, + -0.016537291929125786, + -0.02819174714386463, + -0.019405435770750046, + -0.028639456257224083, + 0.002981819212436676, + -0.01732078567147255, + -0.013375340029597282, + 0.012102164328098297, + -0.02010498195886612, + 0.028457574546337128, + -0.016341419890522957, + -0.000504111114423722, + 0.024246301501989365, + 0.014858379028737545, + 0.004882838577032089, + -0.009422899223864079, + -0.002117878757417202, + 0.007960845716297626, + 0.0019552339799702168, + -0.010870961472392082, + -0.00322491186670959, + -0.015935681760311127, + 0.015697835013270378, + 0.016425365582108498, + 0.07722999155521393, + 0.016299447044730186, + 0.00274047558195889, + -0.014438651502132416, + 0.008779315277934074, + 0.01699899323284626, + 0.009192048572003841, + -0.039146654307842255, + 0.055655963718891144, + 0.03201127424836159, + -0.04256044328212738, + -0.01550196297466755, + -0.026023149490356445, + 0.009352943859994411, + 0.019895117729902267, + -0.014480624347925186, + 0.0017602352891117334, + 0.010563160292804241, + -0.017180874943733215, + 0.05173850059509277, + -0.0045365625992417336, + 0.008205686695873737, + 0.042812280356884, + 0.025253647938370705, + -0.010787015780806541, + -0.031843382865190506, + 0.04765314608812332, + -0.033410366624593735, + -0.011885304003953934, + 0.006117539014667273, + -0.005445973947644234, + 0.012976597994565964, + 0.005082209128886461, + -0.035872772336006165, + -0.022917160764336586, + 0.017950376495718956, + -0.031311724334955215, + -0.019363462924957275, + 0.029185103252530098, + -0.011290688998997211, + -0.039958126842975616, + -0.014746451750397682, + 0.016243482008576393, + 0.007009461522102356, + -0.00829662848263979, + -0.0014585555763915181, + 0.03008052334189415, + -0.03646039217710495, + 0.0015188915422186255, + -0.01650931127369404, + -0.006257448345422745, + 0.01792239584028721, + 0.01182934083044529, + -0.021825868636369705, + 0.023322898894548416, + -0.035397082567214966, + -0.015110216103494167, + 0.01039526890963316, + -0.03534111753106117, + 0.011311675421893597, + 0.045722395181655884, + -0.027478208765387535, + 0.017068948596715927, + 0.007061927579343319, + -0.02834564633667469, + -0.029772723093628883, + -0.02633095160126686, + -0.00485485652461648, + 0.0310039259493351, + -0.040405839681625366, + -0.010996880009770393, + -0.02079053781926632, + -0.021895822137594223, + -0.019153598695993423, + 0.0020059512462466955, + -0.056915149092674255, + 0.03452964127063751, + 0.03584479168057442, + -0.01748867705464363, + 0.024973830208182335, + 0.005015752278268337, + -0.03243100270628929, + 0.010143431834876537, + -0.027366280555725098, + 0.01558590866625309, + 0.009814645163714886, + 0.006306416820734739, + -0.008303623646497726, + -0.03397000581026077, + -0.032682839781045914, + -0.016425365582108498, + -0.0036026672460138798, + -0.026274986565113068, + -0.024092400446534157, + -0.015459990128874779, + -0.014396678656339645, + 0.012479919008910656, + -0.05148666352033615, + -0.032235126942396164, + 0.0021808380261063576, + 0.02817775495350361, + 0.0012469426728785038, + -0.0029083669651299715, + 0.0008565079187974334, + 0.014382687397301197, + 0.05075913295149803, + -0.015096225775778294, + 0.03609662875533104, + -0.011906290426850319, + -0.024498138576745987, + 0.014438651502132416, + 0.03536909818649292, + 0.0031811902299523354, + -0.014200804755091667, + -0.02757614478468895, + 0.009262003004550934, + -0.02419033646583557, + -0.02042677439749241, + 0.0049702818505465984, + 0.007478157989680767, + -0.028037846088409424, + -0.03634846583008766, + 0.021084347739815712, + -0.00975168589502573, + 0.01069607399404049, + -0.020398791879415512, + -0.024204328656196594, + -0.006929013412445784, + -0.04135722294449806, + 0.030919980257749557, + 0.006135027855634689, + -0.028765374794602394, + 0.013732108287513256, + -0.02316899783909321, + 0.01356421783566475, + -0.020538700744509697, + 0.03883885219693184, + 0.02592521347105503, + 0.02200775034725666, + 0.0048268744722008705, + -0.019027680158615112, + -0.030752088874578476, + 0.009513840079307556, + 0.0029380975756794214, + -0.003417287254706025, + -0.003350830404087901, + 0.022105686366558075, + -0.010633115656673908, + -0.032766785472631454, + -0.0036656265147030354, + -0.009863613173365593, + 0.007012959104031324, + 0.00523960730060935, + -0.016775138676166534, + -0.007988827303051949, + 0.001613330445252359, + 0.016019627451896667, + -0.03052823431789875, + -0.035145245492458344, + -0.00422876188531518, + -0.003492488758638501, + 0.022399496287107468, + 0.012934625148773193, + 0.0015748552978038788, + -0.016943030059337616, + -0.01019240077584982, + 0.02980070374906063, + 0.02350478060543537, + 0.013739104382693768, + -0.021224258467555046, + 0.058090388774871826, + -0.015473980456590652, + 0.004354680422693491, + 0.04409944638609886, + 0.03455762565135956, + 0.013312380760908127, + 0.03181539848446846, + 0.006831076927483082, + 0.008093759417533875, + 0.0007865531952120364, + 0.013955963775515556, + -0.004428132902830839, + -0.007324257865548134, + 0.02879335731267929, + 0.03799939528107643, + -0.018957724794745445, + 0.008058781735599041, + -0.013151484541594982, + -0.03287871181964874, + 0.023770608007907867, + 0.013816053979098797, + -0.0046554855071008205, + -0.010493205860257149, + -0.01820221357047558, + 0.03545304387807846, + 0.008023804984986782, + -0.013298389501869678, + -0.039594363421201706, + -0.055739909410476685, + -0.023001106455922127, + 0.03503331542015076, + -0.019349470734596252, + -0.013788072392344475, + 0.006859058979898691, + 0.0252816304564476, + -0.08355390280485153, + -0.011283693835139275, + 0.018929744139313698, + -0.02519768476486206, + 0.0113886259496212, + 0.023994464427232742, + 0.01157050859183073, + -0.05532018095254898, + 0.01019240077584982, + -0.0029223577585071325, + 0.04468706622719765, + -0.019615299999713898, + 0.028513537719845772, + -0.016663210466504097, + -0.006463814992457628, + -0.012591847218573093, + -0.0012093419209122658, + 0.029744740575551987, + -0.01804831437766552, + -0.024889884516596794, + 0.005407498683780432, + 0.035229191184043884, + 0.013522244989871979, + -0.011465576477348804, + -0.005127680022269487, + -0.009401912800967693, + 0.005264091771095991, + 0.0013649911852553487, + -0.011269703507423401, + -0.010584146715700626, + -0.0009408908081240952, + 0.010787015780806541, + 0.01627146452665329, + 0.005456467159092426, + -0.010332309640944004, + -0.010269350372254848, + 0.005159159656614065, + 0.014340714551508427, + 0.00789089035242796, + 0.0023714646231383085, + -0.004631001502275467, + 0.03839114308357239, + 0.004987770691514015, + -0.04527468606829643, + 0.019363462924957275, + -0.04684166982769966, + -0.005302566569298506, + -0.008919225074350834, + 0.0018345621647313237, + -0.03254292905330658, + 0.005295571405440569, + -0.008149723522365093, + -0.04614212363958359, + 0.00829662848263979, + 0.0182162057608366, + 0.027730045840144157, + 0.004106341395527124, + -0.03016446903347969, + -0.0351172611117363, + 0.005536914803087711, + -0.019769199192523956, + -0.002325993962585926, + 0.0009006668115034699, + 0.03397000581026077, + -0.006988475099205971, + -0.009583794511854649, + 0.02633095160126686, + -0.0010379529558122158, + 0.011906290426850319, + -0.016131555661559105, + -0.0008197816787287593, + -0.01178736798465252, + -0.028555510565638542, + 0.03629250079393387, + -0.014844388701021671, + -0.028359636664390564, + 0.015376044437289238, + -0.03545304387807846, + -0.01800634153187275, + 0.008891243487596512, + -0.0071388776414096355, + 0.015459990128874779, + 0.006121036596596241, + 0.017614595592021942, + 0.004309209994971752, + -0.0024728989228606224, + 0.0016579264774918556, + -0.0200350284576416, + -0.0135502265766263, + 0.02523965761065483, + -0.02342083491384983, + -0.02014695480465889, + -0.014774433337152004, + 0.008793306536972523, + 0.014774433337152004, + 0.011325666680932045, + -0.014011927880346775, + 0.014942324720323086, + -0.03590075299143791, + 0.016803119331598282, + 0.0007017331663519144, + 0.004582033026963472, + -0.016201509162783623, + -0.031395670026540756, + 0.011808354407548904, + -0.011675440706312656, + -0.01764257624745369, + -0.02887730300426483, + -0.023434827104210854, + -0.006789104081690311, + 0.005984624847769737, + 0.03363422304391861, + -0.011220734566450119, + 0.015935681760311127, + -0.03215118125081062, + -0.0016964016249403358, + 0.0085414694622159, + 0.030947960913181305, + 0.02430226467549801, + -0.0002833165635820478, + 0.024638047441840172, + -0.0004356866411399096, + -0.01187131367623806, + 0.019797181710600853, + -0.004291721154004335, + -0.022665323689579964, + -0.03774755820631981, + 0.006712154019623995, + 0.028275692835450172, + 0.0032039254438132048, + 0.016327427700161934, + -0.00518014607951045, + 0.024847911670804024, + 0.00863940641283989, + -0.0014987795148044825, + 0.0015337569639086723, + -0.007499144412577152, + 0.039874181151390076, + 0.029688777402043343, + 0.02183985896408558, + -0.0022437970619648695, + -0.0008040419197641313, + -0.028765374794602394, + 0.017572622746229172, + 0.003969929646700621, + 0.03363422304391861, + 0.01990910992026329, + 0.0004918689955957234, + 0.022399496287107468, + 0.009296980686485767, + -0.001164745888672769, + -0.0020706593059003353, + -0.029828686267137527, + 0.03125576302409172, + -0.011941268108785152, + 0.02466602995991707, + 0.0018135757418349385, + 0.019167589023709297, + 0.01282269787043333, + -0.023546753451228142, + 0.0373837947845459, + -0.004414142109453678, + 0.016173528507351875, + -0.00033250346314162016, + 0.018356114625930786, + 0.0309759434312582, + 0.011283693835139275, + 0.0005408372962847352, + 0.02374262735247612, + -0.002829667879268527, + 0.057278912514448166, + -0.016047609969973564, + -0.003403296461328864, + 0.04219667986035347, + -0.030864015221595764, + 0.0065512582659721375, + -0.021937794983386993, + -0.010073477402329445, + -0.018076295033097267, + -0.02224559709429741, + 0.006267941556870937, + -0.007646049372851849, + 0.008520483039319515, + -0.030024560168385506, + -0.0019324987661093473, + 5.9058438637293875e-6, + -0.00301854545250535, + -0.022021740674972534, + 0.02588324062526226, + -0.0005972383078187704, + -0.002927604364231229, + 0.052633918821811676, + -0.009548816829919815, + 0.04712149128317833, + -0.0008123490260913968, + -0.005704806186258793, + 0.031759437173604965, + 0.039314545691013336, + 0.011290688998997211, + 0.019811172038316727, + 0.004260241519659758, + 0.017306793481111526, + -0.013011574745178223, + -0.01410986389964819, + -0.007918872870504856, + -0.014858379028737545, + 0.02382657304406166, + -0.0035187217872589827, + -0.005134675186127424, + -0.03310256823897362, + 0.03064016066491604, + 0.0018625439843162894, + 0.025379566475749016, + 0.02265133336186409, + -0.0009776169899851084, + -0.011640463024377823, + 0.0048128836788237095, + 0.0364883728325367, + 0.02329491637647152, + -0.021182285621762276, + -0.010808002203702927, + 0.01755863055586815, + 0.0018485530745238066, + -0.0027667086105793715, + 0.028527528047561646, + 0.0047604176215827465, + -0.010388273745775223, + -0.03301862254738808, + -0.03455762565135956, + -0.07583089917898178, + -0.013844036497175694, + 0.02038480155169964, + -0.037131957709789276, + -0.0011507548624649644, + -0.017894413322210312, + 0.008611423894762993, + -0.02245546132326126, + -0.015012280084192753, + -0.013760090805590153, + 0.030947960913181305, + 0.012235078029334545, + 0.03881087154150009, + -0.012836688198149204, + 0.0006558253662660718, + 0.013417312875390053, + 0.0023627202026546, + 0.01419380959123373, + -0.001923754345625639, + 0.0030307876877486706, + -0.012193105183541775, + 0.00011466013529570773, + -0.02382657304406166, + 0.01781046763062477, + -0.0040014092810451984, + -0.010080473497509956, + -0.026233013719320297, + 0.0034382736776024103, + 0.004903824999928474, + -0.024582084268331528, + -0.035397082567214966, + -0.017628585919737816, + -0.00724730733782053, + 0.015110216103494167, + -0.010402265004813671, + -0.015767790377140045, + 0.012060191482305527, + -0.01986713707447052, + 0.031899344176054, + -0.014788424596190453, + 0.01860795170068741, + -0.012654806487262249, + -0.02293115295469761, + 0.015068243257701397, + 0.019601307809352875, + -0.018845798447728157, + -0.03064016066491604, + 0.038055360317230225, + -0.003676119726151228, + 0.017334775999188423, + -0.02539355866611004, + 0.004256743937730789, + 0.005071715917438269, + 0.0008049163152463734, + -0.03136768937110901, + 0.012333014979958534, + 8.154095121426508e-5, + 0.024680020287632942, + 0.014662506058812141, + 0.003781051840633154, + -0.0010886701056733727, + 0.003550201188772917, + -0.02648485079407692, + 0.024680020287632942, + -0.0010187154402956367, + 0.01618751883506775, + 0.01941942609846592, + -0.045526523143053055, + 0.01736275851726532, + 0.020650628954172134, + -0.037943433970212936, + 0.017880422994494438, + -0.013473276048898697, + -0.009359939955174923, + 0.02676467038691044, + 0.027282334864139557, + -0.015432007610797882, + -0.0227772518992424, + 0.0496678426861763, + -0.021420130506157875, + 0.017880422994494438, + -0.0014148339396342635, + 0.0007563852705061436, + -0.0074012079276144505, + 0.018663914874196053, + 0.01453658752143383, + -0.010877956636250019, + 0.016523301601409912, + 0.00651977863162756, + 0.03424982354044914, + 0.030919980257749557, + 0.005015752278268337, + 0.026023149490356445, + 0.015152188949286938, + -0.049248114228248596, + 0.0037740564439445734, + -0.03136768937110901, + 0.00036901107523590326, + -0.016089582815766335, + -0.01683110184967518, + -0.051458682864904404, + 0.050003621727228165, + -0.005501937586814165, + 0.009129089303314686, + -0.026820633560419083, + 0.03265485540032387, + -0.019363462924957275, + 0.004207775462418795, + 0.004246250726282597, + -0.006991972681134939, + -0.01160548534244299, + -0.00918505247682333, + 0.012423955835402012, + 0.019027680158615112, + -0.023546753451228142, + 0.0163973830640316, + 0.017656568437814713, + -0.017908405512571335, + -0.008051786571741104, + 0.013067538850009441, + -0.00593565683811903, + 0.02652682363986969, + 0.03170347213745117, + -5.7931240007746965e-5, + -0.02269330620765686, + -0.012081177905201912, + -0.0026530323084443808, + -0.034669551998376846, + -0.002444916870445013, + 0.005690815392881632, + 0.018104277551174164, + 0.0016386889619752765, + 0.02870941162109375, + -0.01736275851726532, + -0.014053900726139545, + 0.01986713707447052, + 0.008436537347733974, + 0.03388606011867523, + 0.006400855723768473, + 0.0022822723258286715, + -0.013172470964491367, + 0.006887040566653013, + -0.0016212003538385034, + 0.036880120635032654, + -0.026904579252004623, + 0.004141318611800671, + 0.002166846999898553, + 0.004777906462550163, + -0.007513135205954313, + -0.02640090510249138, + -0.03318651393055916, + -0.015166180208325386, + 0.0030762581154704094, + 0.0017331278650090098, + 0.029828686267137527, + 0.0014515601797029376, + 0.01540402602404356, + -0.02870941162109375, + 0.03783150389790535, + 0.005837720353156328, + -0.04048978164792061, + 0.011220734566450119, + -0.023952491581439972, + 0.002969577210023999, + 0.002651283284649253, + 0.033774130046367645, + -0.0019220055546611547, + 0.00989159569144249, + 0.03746774047613144, + 0.03791544958949089, + 0.013235430233180523, + 0.046170104295015335, + 0.011360644362866879, + -0.010668092407286167, + 0.004214771091938019, + -0.0026163060683757067, + 0.014592551626265049, + -0.011479566805064678, + 0.022959133610129356, + 0.015837745741009712, + 0.003247647313401103, + -0.016859084367752075, + -0.0035187217872589827, + -0.021056367084383965, + -0.008359587751328945, + 0.02100040204823017, + 0.016887065023183823, + 0.002827918855473399, + 0.0441833920776844, + 0.00997554138302803, + -0.0036411425098776817, + 0.024861901998519897, + 0.009262003004550934, + 0.005760769825428724, + -0.026219023391604424, + 0.019643280655145645, + -0.024414192885160446, + -0.012137141078710556, + 0.0136691490188241, + -0.023672671988606453, + 0.00492481142282486, + 0.01562788151204586, + -0.014438651502132416, + 0.006481303367763758, + -0.004274232313036919, + 0.007548112887889147, + -0.015418017283082008, + -0.0009067878709174693, + -0.01723683997988701, + 0.016789129003882408, + 0.005407498683780432, + -0.010507197119295597, + -0.017544640228152275, + -0.011906290426850319, + 0.03424982354044914, + 0.015767790377140045, + -0.02023090049624443, + 0.0009006668115034699, + 0.03257090970873833, + 0.011598490178585052, + -0.01785244047641754, + -0.023113034665584564, + -0.019517362117767334, + 0.0510389544069767, + -0.03517322614789009, + -0.0014681743923574686, + -0.004463110119104385, + 0.012878661043941975, + -0.01380905881524086, + 0.010905938223004341, + 0.031675491482019424, + 0.00989159569144249, + -0.03089199773967266, + 0.04247649759054184, + -0.0033158529549837112, + 0.029576849192380905, + -0.028737392276525497, + -0.007152868434786797, + -0.027688072994351387, + 0.01671917550265789, + -0.018524006009101868, + 0.035397082567214966, + 0.010584146715700626, + -0.04211273416876793, + 0.012402969412505627, + -0.024973830208182335, + -0.0271284356713295, + -0.031311724334955215, + 0.009241016581654549, + -0.018663914874196053, + -0.01622949168086052, + 0.007408203091472387, + -0.013802063651382923, + -0.0011769878910854459, + -0.02963281236588955, + -0.025785304605960846, + -0.005795747507363558, + -0.014998288825154305, + 0.006540765054523945, + 0.01126270741224289, + 0.015054252929985523, + 0.025785304605960846, + 0.007646049372851849, + -0.017796477302908897, + 0.005183643661439419, + 0.010297332890331745, + 0.020258883014321327, + 0.024078410118818283, + 0.009534826502203941, + -0.012633820064365864, + 0.01740473136305809, + -0.026051132008433342, + 0.012535883113741875, + 0.02954886667430401, + 0.0002139083662768826, + -0.00589368399232626, + -0.009171062149107456, + 0.01273875217884779, + -0.013732108287513256, + -0.015012280084192753, + 0.010206391103565693, + 0.007939859293401241, + 0.003658631118014455, + -0.018887771293520927, + 0.03657231852412224, + -0.014214796014130116, + -0.004868847317993641, + -0.01740473136305809, + -0.025981178507208824, + -0.027548162266612053, + 0.00037032272666692734, + -0.04779305309057236, + -1.062300452758791e-5, + -0.021504076197743416, + -0.02745022624731064, + -0.026191040873527527, + 0.004795394837856293, + -0.0327947661280632, + -0.013711121864616871, + 0.006841570138931274, + -0.01796436868607998, + -0.03953839838504791, + -0.013969955034554005, + -0.014410668984055519, + -0.003574685426428914, + 0.008303623646497726, + 0.006012606900185347, + -0.01289964746683836, + 0.0009513840195722878, + 0.028457574546337128, + -0.02684861607849598, + 0.018551988527178764, + 0.05070317164063454, + 0.00012941620661877096, + 0.0008735593874007463, + -0.010031504556536674, + -0.012081177905201912, + 0.0006440205033868551, + -0.018384097144007683, + -0.0451347753405571, + 0.009905586019158363, + 0.002878636121749878, + 0.02753417193889618, + 0.02139214798808098, + 0.025589430704712868, + 0.010675088502466679, + -0.017614595592021942, + 0.015222144313156605, + 0.01695702038705349, + -0.00984962284564972, + -0.02802385576069355, + -0.031759437173604965, + -0.005005259066820145, + -0.0035484523978084326, + 0.020776547491550446, + 0.032403018325567245, + 0.0009461374138481915, + -0.026778660714626312, + 0.015390034765005112, + -0.009296980686485767, + -0.008324610069394112, + -0.004662481136620045, + -0.013046552427113056, + -0.015138198621571064, + 0.013592199422419071, + -0.00035655038664117455, + -0.02035681903362274, + 0.02321097068488598, + -0.016579264774918556, + -0.01251489669084549, + -0.01005249097943306, + 0.0038125314749777317, + -0.007450175937265158, + -0.004204277880489826, + -0.0012172118294984102, + 0.0011157775297760963, + -0.09038148075342178, + -0.03410991281270981, + -0.014326723292469978, + -0.011080825701355934, + 0.0028331654611974955, + 0.0005049855099059641, + 0.019209561869502068, + 0.021308204159140587, + -0.005243105348199606, + 0.019769199192523956, + 0.031759437173604965, + 0.00040857918793335557, + -0.0031497105956077576, + 0.0264148972928524, + 0.011129793711006641, + -0.02357473596930504, + -0.026065122336149216, + -0.01017840951681137, + 0.017180874943733215, + -0.031059889122843742, + -0.01755863055586815, + 0.015459990128874779, + 0.029185103252530098, + -0.004022395703941584, + -0.03108787164092064, + 0.022399496287107468, + 0.02216165140271187, + -0.00858344230800867, + -0.0028384120669215918, + -0.018020331859588623, + 0.01289964746683836, + 0.005746779032051563, + -0.014053900726139545, + -0.021084347739815712, + -0.020538700744509697, + 0.02834564633667469, + 0.008520483039319515, + -0.008632410317659378, + 0.05092702433466911, + 0.00926899816840887, + 0.01909763365983963, + 0.008058781735599041, + 0.00022953888401389122, + -0.015879718586802483, + 0.008849270641803741, + 0.009961550123989582, + -0.009695721790194511, + -0.02705848030745983, + 0.01785244047641754, + 0.004032888915389776, + 0.014942324720323086, + -0.002359222387894988, + -0.007471162360161543, + -0.0135502265766263, + 0.0019482385832816362, + 0.01410986389964819, + 0.018482033163309097, + -0.0009470118093304336, + 0.011164771392941475, + 0.0241483636200428, + 0.02083251066505909, + 0.009947558864951134, + -0.015054252929985523, + -0.010066482238471508, + -0.01245893258601427, + -0.0009784913854673505, + 0.004431630484759808, + 0.0157118272036314, + 0.017740514129400253, + 0.0010904190130531788, + -0.0001578353112563491, + -0.01385103166103363, + -0.0030115500558167696, + 0.018468042835593224, + 0.013487267307937145, + 0.0264148972928524, + 0.02386854588985443, + 0.03229109197854996, + -0.019573327153921127, + -0.010087468661367893, + -0.022259587422013283, + -0.012039205059409142, + -0.014382687397301197, + 0.016425365582108498, + -0.017740514129400253, + -0.01057715155184269, + -0.007834927178919315, + -0.0006982354097999632, + 0.0017217601416632533, + -0.0028331654611974955, + 0.02329491637647152, + 0.018677907064557076, + 0.03699204698204994, + 0.00993356853723526, + -0.018482033163309097, + 0.03562093526124954, + -0.026596779003739357, + 0.0073102666065096855, + -0.00353795918636024, + 0.0003993976570200175, + -0.008009813725948334, + -0.019237544387578964, + -0.0012985342182219028, + -0.0024659032933413982, + -0.005736285820603371, + 0.004886336158961058, + -0.005855208728462458, + -0.011906290426850319, + -0.006743633653968573, + -0.009653748944401741, + -0.0006720023811794817, + 0.01933548040688038, + -0.0007179101812653244, + 0.0010090966243296862, + 0.004837367683649063, + -0.00872335210442543, + -0.018887771293520927, + 0.008331605233252048, + 0.0013160229427739978, + 0.004141318611800671, + -0.0003574248112272471, + 0.03192732855677605, + -0.013291394338011742, + -0.004158807452768087, + 0.008058781735599041, + 0.02260936051607132, + 0.00023828321718610823, + -0.02567337639629841, + 0.00031632641912437975, + 0.014914343133568764, + -0.020370809361338615, + -0.0028209234587848186, + -0.00523960730060935, + 0.007597080897539854, + 0.003310606349259615, + -0.00961177609860897, + 0.012409964576363564, + 0.01039526890963316, + 0.0373837947845459, + -0.016859084367752075, + -0.01881781592965126, + -0.010213387198746204, + -0.004302214365452528, + 0.01785244047641754, + -0.023280926048755646, + 0.0037740564439445734, + -0.020664619281888008, + -0.011052843183279037, + -0.0012390727642923594, + -0.0011000377126038074, + -0.00703394552692771, + 0.02192380465567112, + 0.023029088973999023, + 0.05523623526096344, + -0.028037846088409424, + -0.01792239584028721, + -0.006002113688737154, + 0.009010165929794312, + -0.01813226006925106, + -0.0004547055868897587, + 0.005057725124061108, + 0.013676145114004612, + 0.007869903929531574, + 0.023854553699493408, + 0.009821640327572823, + -0.026344941928982735, + -0.0078559136018157, + 0.004861852154135704, + -0.035509008914232254, + -0.02314101718366146, + 0.016943030059337616, + 0.004123829770833254, + 0.0003316290385555476, + -0.0047849016264081, + 0.025659386068582535, + -0.0013990941224619746, + -0.026274986565113068, + 0.0006794350920245051, + 0.013571212999522686, + -0.006614217534661293, + -0.03273880109190941, + 0.005169652868062258, + 0.006645697169005871, + 0.005176648031920195, + 0.001333511550910771, + 0.014858379028737545, + 0.0010327063500881195, + 0.016565274447202682, + 0.005061222705990076, + 0.0070059639401733875, + 0.018999697640538216, + -0.006145521067082882, + -0.0010904190130531788, + -0.0013203950366005301, + -0.016299447044730186, + -0.0013405070640146732, + 0.01999305561184883, + 0.02661076933145523, + -0.0075201308354735374, + -0.022665323689579964, + -0.005939154420047998, + -0.0078559136018157, + 0.009031152352690697, + 0.0022997609339654446, + 0.0021266229450702667, + -0.006949999835342169, + -0.04812883585691452, + 0.039062708616256714, + 0.022679315879940987, + -0.027282334864139557, + 0.0062749371863901615, + -0.0018135757418349385, + 0.02309904433786869, + -0.030919980257749557, + -0.0008932341588661075, + -0.014263764023780823, + -0.011381630785763264, + -0.013116506859660149, + 0.01362717617303133, + -0.029185103252530098, + 0.025743331760168076, + -0.009513840079307556, + 0.030919980257749557, + 0.009282989427447319, + 0.01978319138288498, + -0.010262355208396912, + 0.010325314477086067, + -0.021979767829179764, + -0.01273875217884779, + -0.009352943859994411, + -0.02393849939107895, + 0.0023137519601732492, + -0.004008404444903135, + 0.012577855959534645, + -0.030864015221595764, + -0.006925515830516815, + 0.03397000581026077, + 0.011122798547148705, + 0.00461351266130805, + 0.000902415718883276, + -0.002773704007267952, + 0.0031112355645745993, + -0.00322491186670959, + 0.015837745741009712, + 0.02423230931162834, + 0.015348061919212341, + -0.012969602830708027, + -0.0019849648233503103, + -0.00523960730060935, + -0.002826170064508915, + 0.010759033262729645, + 0.01869189739227295, + -0.024889884516596794, + 0.0010633114725351334, + -0.019853144884109497, + -0.01655128411948681, + 0.06027297303080559, + 0.0019202566472813487, + 0.0018310644663870335, + 0.003763563232496381, + -0.02406441792845726, + -0.007722999434918165, + 0.025225667282938957, + -0.028611473739147186, + 0.0030290386639535427, + 0.0026005662512034178, + 0.01582375355064869, + 0.0332704596221447, + 0.04146914929151535, + 0.004928309004753828, + 0.012319023720920086, + -0.0010370785603299737, + -0.02556145004928112, + -0.02616306021809578, + 0.016131555661559105, + -0.007065425161272287, + 0.017502667382359505, + -0.018705887719988823, + 0.0004359052691143006, + 0.01712491177022457, + -0.057474784553050995, + -0.0013737354893237352, + 0.010206391103565693, + 0.011514544486999512, + 0.02575732208788395, + 0.00580624071881175, + 0.012137141078710556, + -0.020286863669753075, + 0.031227780506014824, + -0.02128022164106369, + 0.02382657304406166, + 0.003871992928907275, + 0.011640463024377823, + 0.009087116457521915, + 0.020454755052924156, + 0.012661801651120186, + -0.0045890286564826965, + 0.02200775034725666, + 0.010542173869907856, + -0.014956315979361534, + 0.011024861596524715, + 0.0012766733998432755, + -0.016971010714769363, + 0.0024746477138251066, + 0.012004227377474308, + -0.00018035196990240365, + 0.010374282486736774, + -0.013186462223529816, + -0.003074509324505925, + -0.004610015079379082, + -0.00267576752230525, + -0.0063798693008720875, + -0.03517322614789009, + -0.014690488576889038, + 0.007939859293401241, + 0.027730045840144157, + 0.01687307469546795, + -0.0008036046638153493, + 0.024973830208182335, + -0.02633095160126686, + -0.012500905431807041, + -0.005771263036876917, + 0.010038500651717186, + 0.003550201188772917, + -0.009429894387722015, + -0.01785244047641754, + -0.0032493961043655872, + 0.0005307813407853246, + 0.009464872069656849, + -0.012402969412505627, + -0.01399094145745039, + 0.01712491177022457, + -0.019853144884109497, + -0.02988464944064617, + 0.011178761720657349, + 0.0053060646168887615, + -0.004617010708898306, + -0.034053951501846313, + -0.027422243729233742, + -0.001993709011003375, + 0.025995168834924698, + 0.019111625850200653, + -0.0068555609323084354, + 0.009807649999856949, + -0.0066177151165902615, + 0.019433416426181793, + -0.004543558228760958, + 0.049639858305454254, + 0.0016596753848716617, + -0.00014865375123918056, + 0.02532360330224037, + -0.020580673590302467, + -0.004875842947512865, + -0.03391404077410698, + 0.0075201308354735374, + 0.03452964127063751, + 0.010003522969782352, + -0.0006798722897656262, + -0.03920261561870575, + -0.036040663719177246, + -0.04029390960931778, + 0.0007773716351948678, + 0.009373930282890797, + 0.03299063816666603, + 0.0003676994238048792, + -0.01463452447205782, + -0.013109511695802212, + -0.027352290228009224, + 0.006044086534529924, + 0.003541457001119852, + -0.015893708914518356, + -0.024721993133425713, + -0.006117539014667273, + -0.004690463189035654, + -0.003273880109190941, + 0.02031484618782997, + -0.011311675421893597, + 0.016285454854369164, + 0.006677176803350449, + -0.01655128411948681, + 0.017768494784832, + 0.0018677905900403857, + -0.02802385576069355, + -0.026135077700018883, + -0.02188183180987835, + 8.71154697961174e-5, + -0.004861852154135704, + 0.007653045002371073, + -0.00914307963103056, + -0.007925868034362793, + -0.026260996237397194, + -0.020622646436095238, + -0.012081177905201912, + 0.029660794883966446, + -0.00649179657921195, + 0.01057715155184269, + -0.007897886447608471, + -0.01671917550265789, + -0.05078711733222008, + -0.025043783709406853, + -0.02216165140271187, + 0.024008454754948616, + -0.011717413552105427, + 0.028597483411431313, + -0.021937794983386993, + 0.017096929252147675, + 0.021168293431401253, + 0.03226311132311821, + 0.0025446023792028427, + -0.02890528365969658, + 0.007820935919880867, + 0.009681731462478638, + 0.01667720265686512, + -0.01712491177022457, + -0.024176346138119698, + 0.006030095741152763, + -0.006991972681134939, + 0.019363462924957275, + 0.028737392276525497, + -0.016243482008576393, + -0.025043783709406853, + 0.007939859293401241, + -0.003553699003532529, + -0.012277050875127316, + -0.016467338427901268, + -0.010982888750731945, + -0.005005259066820145, + 0.0033210995607078075, + -0.00427073473110795, + -0.023588726297020912, + 0.013186462223529816, + -0.007012959104031324, + 0.007799949496984482, + -0.013802063651382923, + 0.017418721690773964, + -0.007436185143887997, + 0.008940211497247219, + 0.017796477302908897, + 0.0008237166330218315, + -0.02374262735247612, + -0.03352229669690132, + -0.031899344176054, + 0.0029241067823022604, + -0.0063553848303854465, + 0.003802038263529539, + -0.026512833312153816, + 0.011934272944927216, + -0.007722999434918165, + 0.01837010495364666, + 0.0113886259496212, + 0.014746451750397682, + -0.04062969237565994, + 0.011983240954577923, + 0.005176648031920195, + 0.014606542885303497, + -0.008954202756285667, + -0.00025249275495298207, + -0.012123150750994682, + -0.033214494585990906, + 0.018160240724682808, + 0.02498782053589821, + 0.02491786517202854, + -0.00336657022126019, + 0.003385807853192091, + -0.03763563185930252, + 0.0010799258016049862, + 0.02316899783909321, + -0.01211615465581417, + -0.01860795170068741, + 0.006866054143756628, + 0.023127024993300438, + -0.022035732865333557, + -0.02633095160126686, + -0.014207800850272179, + 0.033858075737953186, + -0.01039526890963316, + -0.01804831437766552, + -0.0006724395789206028, + -0.002203573239967227, + -0.025939205661416054, + 0.005292073357850313, + 0.027688072994351387, + 0.030332360416650772, + 0.0036341468803584576, + 0.013599194586277008, + -0.03480946272611618, + 0.02600915916264057, + 0.005194136872887611, + -0.0003972115518990904, + 0.040154002606868744, + -0.026233013719320297, + 0.007960845716297626, + 0.0019884624052792788, + -0.010045495815575123, + 0.012374987825751305, + -0.01269677933305502, + -0.023546753451228142, + -0.011094816029071808, + 0.000607294263318181, + 0.017180874943733215, + 0.0002741350035648793, + -0.002562090987339616, + -0.011675440706312656, + 0.009828636422753334, + 0.0024938853457570076, + -0.009989531710743904, + -0.012193105183541775, + 0.0095698032528162, + -0.0010545671684667468, + -0.0023015097249299288, + -0.021490085870027542, + 0.0024501634761691093, + -0.015949672088027, + -0.006026597693562508, + -0.023756617680191994, + -0.02038480155169964, + 0.017208857461810112, + 0.003188185626640916, + -0.004550553392618895, + -0.0023277427535504103, + -0.011759386397898197, + -0.004526069387793541, + -0.013368343934416771, + -0.011514544486999512, + -0.016971010714769363, + 0.0022630346938967705, + 0.0020514216739684343, + -0.0113886259496212, + 0.004889833740890026, + -1.6231677363975905e-5, + -0.014025918208062649, + -0.007135380059480667, + -0.0018537996802479029, + 0.011906290426850319, + 0.011661449447274208, + 0.0027387267909944057, + 0.010059487074613571, + 0.022259587422013283, + -0.015515953302383423, + -0.001888777012936771, + 0.004452616907656193, + -0.01168943103402853, + -0.02288918010890484, + -0.00815671868622303, + -0.00863940641283989, + 0.08338601142168045, + -0.012997584417462349, + -0.003903472563251853, + 0.004295218735933304, + 0.017306793481111526, + -0.014886361546814442, + -0.008275642059743404, + 0.039790235459804535, + 0.0074291895143687725, + -0.0033001131378114223, + 0.0011026610154658556, + -0.02661076933145523, + 0.004959788639098406, + -0.02260936051607132, + -0.009359939955174923, + 0.0019482385832816362, + 0.004365173634141684, + 0.018873779103159904, + 0.01941942609846592, + 0.010549169965088367, + 0.023434827104210854, + 0.0017112669302150607, + -0.003627151483669877, + 0.023350881412625313, + -0.0035816808231174946, + 0.016775138676166534, + 0.002936348784714937, + -0.000936518597882241, + 0.012885657139122486, + 0.020902466028928757, + -0.0014865375123918056, + 0.0154879717156291, + -0.026540815830230713, + 0.0022840211167931557, + 0.0027702064253389835, + 0.01800634153187275, + 0.005526421591639519, + 0.008436537347733974, + 0.002859398489817977, + 0.03872692584991455, + 0.0016701685963198543, + -0.0025918218307197094, + 0.004658983554691076, + -0.0035886764526367188, + -0.0025918218307197094, + 0.007422194350510836, + -0.0012959109153598547, + 0.0012889154022559524, + 0.008646401576697826, + 0.0019045168301090598, + -0.009436889551579952, + -0.009954554960131645, + 0.0015687342965975404, + -0.00038387643871828914, + -0.008128737099468708, + -0.00012701151717919856, + 0.015236134640872478, + -0.006257448345422745, + -0.010787015780806541, + 0.00530956219881773, + -0.013179466128349304, + 0.0008215305861085653, + -0.03564891964197159, + -0.02398047223687172, + 0.020244890823960304, + -0.015949672088027, + -0.021993760019540787, + -0.000658885866869241, + 0.01607559062540531, + 0.019531354308128357, + -0.0005395256448537111, + 0.023518772795796394, + -0.0029765726067125797, + -0.017908405512571335, + -0.010633115656673908, + 0.0035799320321530104, + -0.009052138775587082, + -0.012060191482305527, + 0.0026320458855479956, + -0.0048128836788237095, + 0.002742224372923374, + 0.006845067720860243, + -0.015837745741009712, + -0.02200775034725666, + 0.011115802451968193, + -0.0011332662543281913, + 0.017768494784832, + 0.0025446023792028427, + 0.008667387999594212, + -0.007184348069131374, + -0.02935299463570118, + 0.004354680422693491, + 0.0075201308354735374, + 0.006495294626802206, + -0.003296615555882454, + 0.001615953748114407, + -0.013955963775515556, + 0.006869552191346884, + 0.0063553848303854465, + 0.007387216668576002, + -0.001991960220038891, + 0.0033280951902270317, + -0.005568394437432289, + 0.002221061848104, + -0.00046082661719992757, + -0.008555460721254349, + 0.015935681760311127, + 0.023113034665584564, + -0.011906290426850319, + 0.009625767357647419, + 0.01403291430324316, + -0.02325294353067875, + -0.011024861596524715, + -0.01544599886983633, + -0.017208857461810112, + 0.018929744139313698, + 0.005449471529573202, + -0.0004490217543207109, + -0.0291571207344532, + -0.03108787164092064, + 0.01671917550265789, + -0.00997554138302803, + 0.020762557163834572, + 0.011661449447274208, + -0.01894373446702957, + -0.019153598695993423, + -0.007261298596858978, + -0.008548464626073837, + -0.0157118272036314, + 0.00841555092483759, + 0.011766381561756134, + 0.0041867890395224094, + 0.01676114834845066, + 0.01792239584028721, + 0.0011297684395685792, + -0.008492501452565193, + -0.0103602921590209, + -0.010066482238471508, + 0.029408957809209824, + -0.020776547491550446, + -0.007261298596858978, + 0.017824459820985794, + -0.018929744139313698, + 0.009814645163714886, + 0.00593565683811903, + 0.020244890823960304, + 0.005879693198949099, + -0.0026635255198925734, + 0.01732078567147255, + 0.031591545790433884, + 0.004274232313036919, + -0.003399798646569252, + 0.014137846417725086, + -0.005435480736196041, + -0.0035764342173933983, + 0.008289632387459278, + -0.018062304705381393, + -0.0018118268344551325, + -0.0071388776414096355, + -0.013676145114004612, + -0.005470457952469587, + 0.0013929731212556362, + -0.003119979752227664, + 0.00022975748288445175, + -0.008772320114076138, + 0.027883945032954216, + 0.02398047223687172, + 0.01785244047641754, + 0.013543231412768364, + 0.013144489377737045, + -0.00057144247693941, + 0.02213366888463497, + 0.006225968711078167, + -0.029297031462192535, + -0.0036726221442222595, + 0.009604780934751034, + -0.0014515601797029376, + -0.005718796979635954, + -0.02624700590968132, + 0.004599521867930889, + 0.009695721790194511, + -0.0012871666112914681, + 0.007876900024712086, + -0.0025078761391341686, + 0.010982888750731945, + -0.01066109724342823, + -0.002270030090585351, + -0.013011574745178223, + -0.0009120344766415656, + 0.007184348069131374, + -0.007499144412577152, + 0.00961177609860897, + -0.00932496227324009, + -0.006033593323081732, + 0.0016203258419409394, + 0.007541117258369923, + 0.0005994243547320366, + 0.020342828705906868, + -0.013697131536900997, + 0.007674030959606171, + -0.005974131636321545, + 0.012661801651120186, + 0.008450528606772423, + -0.011500553227961063, + -0.01182934083044529, + -0.009415903128683567, + -0.010143431834876537, + -0.0029783216305077076, + -0.007100402377545834, + 0.002736977767199278, + -0.056999094784259796, + -0.013214443810284138, + 0.02502979338169098, + 0.005568394437432289, + -0.018510015681385994, + 0.024036437273025513, + -0.0017374999588355422, + -0.01069607399404049, + 0.04614212363958359, + 0.008100754581391811, + -0.003816029289737344, + 0.020202919840812683, + 0.021574031561613083, + -0.009129089303314686, + -0.004578535445034504, + 0.010626119561493397, + 0.018957724794745445, + -0.005019250325858593, + 0.018915751948952675, + 0.012018218636512756, + 0.034585606306791306, + -0.026316959410905838, + -0.013438299298286438, + 0.0040014092810451984, + 0.008324610069394112, + 0.03310256823897362, + 0.0191396065056324, + -0.03391404077410698, + 0.01031831931322813, + -0.0056103672832250595, + -0.004305711947381496, + 0.011542526073753834, + -0.0012067186180502176, + 0.004242752678692341, + 0.012409964576363564, + 0.015963664278388023, + 0.004837367683649063, + -0.002172093605622649, + 0.0011769878910854459, + -2.7011807105736807e-5, + 0.016901057213544846, + -0.008807297796010971, + -0.011850327253341675, + 0.016747156158089638, + 0.02370065450668335, + 0.00859743356704712, + -0.002200075425207615, + -0.006624710746109486, + 0.013312380760908127, + 1.895062086987309e-5, + -0.004347684793174267, + 0.019153598695993423, + 0.004365173634141684, + -0.011360644362866879, + 0.003210921073332429, + 0.009730699472129345, + -0.001179611193947494, + 0.0006138525204733014, + -0.015348061919212341, + 0.00461351266130805, + 0.0006501415628008544, + 0.01575380004942417, + -0.002133618574589491, + 4.7000816266518086e-5, + -0.009164066053926945, + 0.005208127666264772, + 0.019363462924957275, + 0.019489381462335587, + 0.0028541518840938807, + 0.009695721790194511, + -0.015390034765005112, + -0.010835983790457249, + -0.011983240954577923, + -0.015963664278388023, + 0.012591847218573093, + -0.03363422304391861, + -0.014438651502132416, + 0.004550553392618895, + 0.003326346166431904, + -0.004501585382968187, + 0.0021441117860376835, + -0.014284750446677208, + 0.025365576148033142, + -0.0030919979326426983, + 0.004886336158961058, + 0.012402969412505627, + -5.467943992698565e-5, + 0.011010870337486267, + 0.007722999434918165, + 0.004046879708766937, + -0.009401912800967693, + 0.005355032626539469, + -0.009457875974476337, + -0.01894373446702957, + 0.010528183542191982, + 0.002395948627963662, + 0.0022787745110690594, + -0.01755863055586815, + 0.008884247392416, + 0.014340714551508427, + -0.0010283341398462653, + -0.0023889532312750816, + 0.004585531074553728, + 0.008436537347733974, + 0.006442828569561243, + -0.018384097144007683, + 0.01134665310382843, + 0.0034767489414662123, + 0.004637997131794691, + -0.012885657139122486, + -0.01941942609846592, + 0.005883190780878067, + 0.0022752766963094473, + 0.006960493046790361, + 0.006894036196172237, + 0.003578183241188526, + 0.02556145004928112, + 0.021084347739815712, + -0.0006562625640071929, + 0.002306756330654025, + 0.00989159569144249, + -0.006659687962383032, + -0.000902415718883276, + -0.00024506007321178913, + 0.002931102178990841, + 0.007674030959606171, + -0.006663185544312, + -0.004491092171519995, + -0.02128022164106369, + 0.0116124814376235, + -0.01164745818823576, + -0.0022263084538280964, + 0.009401912800967693, + 0.0037145947571843863, + -0.0013457536697387695, + 0.03455762565135956, + 0.002773704007267952, + -0.009255007840692997, + 0.007436185143887997, + 0.02115430310368538, + 0.005232612136751413, + -0.008142727427184582, + 0.014396678656339645, + -0.012997584417462349, + -0.008695369586348534, + -0.005362028256058693, + -0.012367991730570793, + 0.009912582114338875, + -0.0016378145664930344, + 0.006799597293138504, + -0.029017211869359016, + 0.011129793711006641, + -0.01909763365983963, + -0.008968193084001541, + -0.0016281957505270839, + -0.0010309574427083135, + -0.0033718168269842863, + 0.02721237950026989, + 0.004064368549734354, + 0.025813287124037743, + -0.0038649975322186947, + -0.02479194849729538, + 0.010045495815575123, + -0.019069653004407883, + 0.006635203957557678, + -0.009716708213090897, + 0.014480624347925186, + -0.00011061588156735525, + -0.0015739809023216367, + 0.007464167196303606, + 0.021266231313347816, + -0.0018065802287310362, + -0.018705887719988823, + 0.0013064041268080473, + 0.030584197491407394, + 0.02269330620765686, + 0.005390009842813015, + 0.00518014607951045, + 0.005697810556739569, + 0.0009636260801926255, + 0.008289632387459278, + 0.025141721591353416, + 0.027086462825536728, + 0.004886336158961058, + 0.0022315550595521927, + -0.019587317481637, + -0.013074534013867378, + 0.009982536546885967, + 0.0018345621647313237, + -0.011920281685888767, + 0.0012696778867393732, + -0.009387921541929245, + 0.0016675452934578061, + 0.01627146452665329, + -0.004735933616757393, + 0.0031654504127800465, + -0.0025358579587191343, + 0.03424982354044914, + 0.022301560267806053, + -0.0029206089675426483, + 0.00416930066421628, + 0.022959133610129356, + -0.01716688461601734, + 0.005257096141576767, + -0.003606165060773492, + -0.004665978718549013, + 0.03206723555922508, + -0.008555460721254349, + 0.019209561869502068, + 0.011801359243690968, + 0.012920633889734745, + 0.010262355208396912, + 0.002567337593063712, + 0.0032721313182264566, + -0.0005793123855255544, + 0.013375340029597282, + 0.01800634153187275, + -0.0028331654611974955, + -0.010493205860257149, + 0.021811876446008682, + 0.005082209128886461, + -0.015935681760311127, + 0.022749269381165504, + 0.0038580019026994705, + -0.023071061819791794, + 0.002997559029608965, + 0.024973830208182335, + -0.02725435234606266, + 0.004291721154004335, + 0.017656568437814713, + -0.00961177609860897, + -0.00492481142282486, + -0.0017103925347328186, + 0.007082914002239704, + 0.004141318611800671, + 0.01755863055586815, + -0.0062364619225263596, + 0.0052535985596477985, + -0.004116834606975317, + -0.02567337639629841, + -0.012724760919809341, + 0.01990910992026329, + -0.009038147516548634, + -0.006666683591902256, + -0.011017866432666779, + -0.0014323225477710366, + -0.005089204758405685, + 0.01320045255124569, + 0.01294162031263113, + -0.004644992295652628, + 0.009289984591305256, + 0.009248011745512486, + -0.01269677933305502, + -0.004697458352893591, + -0.001476044300943613, + 0.01035329606384039, + 0.007065425161272287, + 0.006708656437695026, + 0.011661449447274208, + 0.013697131536900997, + -0.015963664278388023, + 0.0020916457287967205, + 0.02059466578066349, + -0.004389657638967037, + 0.003433027071878314, + 0.018300151452422142, + -0.012612833641469479, + 0.005932158790528774, + 0.024568092077970505, + -0.023308908566832542, + -0.006813588086515665, + -0.006715651601552963, + -0.007079416420310736, + 0.010416255332529545, + 0.0003102053888142109, + 0.00644982373341918, + -0.035397082567214966, + 0.008569451048970222, + 0.008443532511591911, + 0.016579264774918556, + -0.001803082530386746, + 0.009373930282890797, + 0.0063029187731444836, + 0.003725087968632579, + -0.007981832139194012, + -0.012913638725876808, + 0.006159511860460043, + 0.02281922474503517, + 0.0048653497360646725, + -0.011430598795413971, + 0.008961197920143604, + -0.005750276613980532, + -0.008044791407883167, + 0.01926552504301071, + 0.013613185845315456, + 0.013969955034554005, + -0.008863260969519615, + 0.0004072675365023315, + 0.0008280888432636857, + -0.0033560770098119974, + 0.009576799347996712, + 0.006817086134105921, + 0.0026460366789251566, + 0.004365173634141684, + -0.017348766326904297, + 0.00807277299463749, + 0.004833870101720095, + 0.0175306499004364, + 0.028597483411431313, + 0.010752038098871708, + 0.009394916705787182, + 0.0006615091697312891, + -0.008394564501941204, + -0.013571212999522686, + 0.0116124814376235, + 0.007883895188570023, + 0.017502667382359505, + 0.0097936587408185, + -0.00589368399232626, + 0.007611072156578302, + -0.03727186843752861, + 0.00669116759672761, + 0.004781404044479132, + -0.0050087571144104, + -0.0006566998199559748, + 0.004148314241319895, + 0.009604780934751034, + -0.0071248868480324745, + 0.030276397243142128, + -0.0010038500186055899, + -0.003065764904022217, + 0.002086399123072624, + 0.03480946272611618, + 0.003805536078289151, + -0.018230196088552475, + -0.015306090004742146, + -0.028765374794602394, + 0.013025566004216671, + 0.006260945927351713, + 0.00914307963103056, + -0.01590769924223423, + 0.0027527175843715668, + 0.019839154556393623, + 0.01578178070485592, + 0.01796436868607998, + -0.018062304705381393, + -0.00367961754091084, + -0.002130120759829879, + -0.00019631038594525307, + 0.003592174034565687, + -0.0025778308045119047, + -0.019307497888803482, + -0.018719879910349846, + 0.004498087335377932, + -0.015222144313156605, + 0.0056943129748106, + 0.005837720353156328, + 0.008184700272977352, + -0.01736275851726532, + 0.018314141780138016, + -0.01152853574603796, + -0.010717060416936874, + -0.01312350295484066, + -0.0002151107182726264, + 0.000641397200524807, + 0.009241016581654549, + 0.0009408908081240952, + -0.011038852855563164, + 0.0014139594277366996, + -0.01691504754126072, + 0.0009330208995379508, + -0.021098339930176735, + -0.006568746641278267, + 0.0011236474383622408, + -0.00043962159543298185, + 0.015529944561421871, + -0.02119627594947815, + 0.004665978718549013, + 0.0015171426348388195, + -0.014130850322544575, + 0.027548162266612053, + 0.0050682183355093, + -0.014354705810546875, + 0.004410644061863422, + 0.009996527805924416, + -0.0036411425098776817, + -0.008919225074350834, + -0.015641871839761734, + -0.01837010495364666, + -0.003504730761051178, + 0.00027872578357346356, + -0.006058077327907085, + -0.007716003805398941, + 0.012626823969185352, + 0.0006300295935943723, + 0.007562103681266308, + 0.00673314044252038, + -0.007967840880155563, + -0.0038754907436668873, + -0.014263764023780823, + -0.01001051813364029, + 0.0063553848303854465, + -0.012374987825751305, + -0.010605133138597012, + 0.0031374685931950808, + -0.007457171566784382, + 0.023224962875247, + 0.022385505959391594, + 0.04071363806724548, + -0.007408203091472387, + -0.012081177905201912, + -0.01841207779943943, + -0.007604076527059078, + 0.002880384912714362, + -0.0018258178606629372, + 0.00018680092762224376, + 0.008331605233252048, + -0.0030255410820245743, + 0.0026862607337534428, + -0.01837010495364666, + -0.0009417652036063373, + 0.00047131982864812016, + 0.009178057312965393, + -0.03016446903347969, + 0.0009408908081240952, + -0.031395670026540756, + -0.00697448430582881, + -0.008786311373114586, + 0.008093759417533875, + -0.00997554138302803, + 0.023127024993300438, + -0.0091081028804183, + -0.012102164328098297, + -0.00807277299463749, + 0.00023456687631551176, + -0.014340714551508427, + 0.01800634153187275, + -0.00961177609860897, + -0.012144137173891068, + 0.003036034293472767, + -0.012402969412505627, + -0.0025253649801015854, + -0.01005249097943306, + 0.007184348069131374, + 0.006887040566653013, + -0.0031147331465035677, + 0.0035362103953957558, + -0.023085052147507668, + 0.006652692332863808, + -0.011542526073753834, + 0.0022805233020335436, + -0.019083643332123756, + -0.00838057417422533, + 0.007667035795748234, + -0.007569099310785532, + -0.009877604432404041, + 0.016257474198937416, + 0.01178736798465252, + 0.01864992454648018, + -0.01017840951681137, + -0.00461351266130805, + 0.0026128082536160946, + -0.01199023611843586, + -0.01532008033245802, + -0.003086751326918602, + -0.023266935721039772, + -0.021755913272500038, + 0.002915362361818552, + 0.018426069989800453, + -0.04158107563853264, + 0.005047231912612915, + 0.005508933216333389, + -0.033130548894405365, + -0.014004931785166264, + -1.3799658518109936e-5, + 0.014354705810546875, + 0.0010536927729845047, + -0.013312380760908127, + -0.014396678656339645, + 0.001685034018009901, + -0.014277755282819271, + -0.013256416656076908, + 0.01134665310382843, + 0.00038147176383063197, + 0.017152894288301468, + 0.007736990228295326, + -0.02301509864628315, + -0.003415538463741541, + -0.013004579581320286, + -0.007862908765673637, + -0.013865022920072079, + -0.008779315277934074, + -0.004386160057038069, + -0.02854152023792267, + 0.009884599596261978, + -0.02652682363986969, + 0.011164771392941475, + -0.0007371476967819035, + 0.012500905431807041, + 0.008331605233252048, + 0.006229466293007135, + -0.006467312574386597, + -0.01582375355064869, + -0.006281932350248098, + -0.02269330620765686, + -0.005278082564473152, + 0.020664619281888008, + -0.0007209706818684936, + -0.005869199987500906, + -0.0007926742546260357, + -0.00811474584043026, + 0.009422899223864079, + 0.002360971411690116, + 0.004515576176345348, + -0.0001431885320926085, + -0.008170709945261478, + -0.013648162595927715, + 0.022847207263112068, + -0.018663914874196053, + 0.0002885631693061441, + 0.01655128411948681, + 0.0008363959495909512, + -0.0033525791950523853, + -0.006131529808044434, + -0.00519763445481658, + -0.0017768495017662644, + -0.007436185143887997, + -0.0032493961043655872, + 0.0013746100012212992, + 0.01607559062540531, + 0.010171414352953434, + -0.008030800148844719, + -0.007100402377545834, + 0.0068030948750674725, + 0.026191040873527527, + -0.002324245171621442, + -0.0027544666081666946, + 0.005946150049567223, + -0.01235400140285492, + -0.0028069326654076576, + -0.004564544651657343, + -0.024638047441840172, + 0.01476044300943613, + -0.006537267006933689, + -0.002530611352995038, + -0.017208857461810112, + 0.010933920741081238, + -0.004889833740890026, + 0.007904881611466408, + 0.0017007737187668681, + -0.0056768241338431835, + 0.0013606189750134945, + -0.005393507890403271, + 0.01918157935142517, + -0.015110216103494167, + -0.0024938853457570076, + 0.007464167196303606, + -0.004435128532350063, + -0.008604428730905056, + -0.008968193084001541, + 0.005680322181433439, + -0.012193105183541775, + -0.013214443810284138, + 0.0036166582722216845, + 0.00961177609860897, + -0.020818520337343216, + -0.003763563232496381, + 0.004088852554559708, + 0.01622949168086052, + 0.011234725825488567, + -0.0030237920582294464, + 0.025183694437146187, + -0.016173528507351875, + 0.006002113688737154, + -0.032039254903793335, + -0.02333688922226429, + 0.031759437173604965, + 0.005456467159092426, + 0.014732461422681808, + -0.007499144412577152, + 0.014830397441983223, + 0.009059133939445019, + -0.014914343133568764, + -0.007387216668576002, + 0.018272168934345245, + 0.0035991696640849113, + 0.01719486713409424, + -0.0032214142847806215, + -0.02567337639629841, + -0.010535178706049919, + 0.0038580019026994705, + 0.01723683997988701, + 0.006072068586945534, + -0.006649194750934839, + -0.001735751167871058, + 0.02798188291490078, + -0.02532360330224037, + 0.014410668984055519, + 0.006708656437695026, + 0.009073125198483467, + 0.01635541021823883, + 0.0024186838418245316, + -0.012724760919809341, + -0.002759713213890791, + 0.022539407014846802, + 0.00589368399232626, + -0.0017497420776635408, + -0.013718117959797382, + 0.0030780071392655373, + 0.01407488714903593, + -0.0023872042074799538, + 0.003210921073332429, + -0.0008613173267804086, + 0.0029433441814035177, + -0.020608656108379364, + 0.001841557677835226, + -0.007911876775324345, + -0.007848917506635189, + 0.002499131951481104, + -0.006656190380454063, + -0.007757976651191711, + -0.012962606735527515, + -0.00789089035242796, + 0.027688072994351387, + -0.010003522969782352, + -0.018677907064557076, + -0.01027634646743536, + 0.010842978954315186, + 0.001769854105077684, + -0.0040993457660079, + -0.007988827303051949, + -0.032235126942396164, + 0.03380211442708969, + 0.003261638106778264, + -0.011962254531681538, + -0.01659325696527958, + 0.0003611411666497588, + 0.015432007610797882, + -0.006100050173699856, + -0.0110458480194211, + -0.020622646436095238, + 0.008737342432141304, + 0.013298389501869678, + 0.008520483039319515, + -0.013522244989871979, + 0.020650628954172134, + 0.012165123596787453, + 0.006908026989549398, + -0.0007205334841273725, + -0.015529944561421871, + -0.0036656265147030354, + 0.003057020716369152, + 0.016523301601409912, + 0.011773376725614071, + 0.004232259467244148, + -0.011115802451968193, + -0.0005500188563019037, + 0.001162996981292963, + 0.004907322581857443, + -0.014900351874530315, + -0.004211273044347763, + -0.009835631586611271, + -0.002792941639199853, + 0.01667720265686512, + 0.01380905881524086, + 0.001023087534122169, + 0.014158832840621471, + -0.003777554025873542, + -0.024316255003213882, + 0.013858026824891567, + -0.006722647231072187, + 0.0007651295745745301, + 0.010682083666324615, + 0.0008359587518498302, + -0.018468042835593224, + -0.009646753780543804, + 0.02926904894411564, + -0.01760060340166092, + -0.018524006009101868, + 0.016943030059337616, + 0.011997232213616371, + 0.01187131367623806, + 0.007785958703607321, + -0.01091992948204279, + -0.004113336559385061, + -0.01255686953663826, + 0.007960845716297626, + -0.0038789883255958557, + -0.0022140664514154196, + -0.02241348847746849, + 0.007303271442651749, + -0.009282989427447319, + -0.013074534013867378, + -0.020986411720514297, + -0.034221842885017395, + -0.013228435069322586, + -0.047457270324230194, + 0.003314104164019227, + -0.005442475900053978, + 0.003420785069465637, + 0.00039874183130450547, + 0.009262003004550934, + 0.00825465563684702, + -0.005225616507232189, + 0.0006383366999216378, + 0.019797181710600853, + 0.001892274827696383, + -0.0024169350508600473, + -0.026512833312153816, + -0.028681429103016853, + -0.005341041833162308, + 0.00617700070142746, + -0.008996174670755863, + 0.009674735367298126, + -0.027436235919594765, + -0.009695721790194511, + -0.013291394338011742, + 0.006984977517277002, + 0.00043284473940730095, + -0.012626823969185352, + 0.010402265004813671, + 0.006554755847901106, + -0.004239255096763372, + -0.011332661844789982, + -0.02491786517202854, + -0.006810090504586697, + 0.00898218434303999, + -0.03427780419588089, + 0.008513487875461578, + -0.0020549194887280464, + 0.024889884516596794, + 0.010024509392678738, + -0.014242777600884438, + -0.018845798447728157, + -0.012277050875127316, + 0.018034322187304497, + -0.015208153054118156, + -0.0005845589912496507, + -0.006337896455079317, + 0.018300151452422142, + -0.0009400163544341922, + 0.0013510002754628658, + 0.0045890286564826965, + -0.012095168232917786, + 0.0024694011081010103, + -0.0038230246864259243, + 0.0054774535819888115, + -0.015557926148176193, + -0.003980422858148813, + -0.008387569338083267, + 0.004644992295652628, + 0.0008407681016251445, + 0.022035732865333557, + -0.004945797845721245, + -0.008688374422490597, + -0.012962606735527515, + 0.002812179271131754, + -0.0019342475570738316, + -0.0036656265147030354, + -0.013256416656076908, + 0.010752038098871708, + -0.0004057372862007469, + -0.0022420482710003853, + 0.03534111753106117, + 0.027030497789382935, + 0.036040663719177246, + -0.00910110678523779, + 0.007632058579474688, + -0.018524006009101868, + 0.011962254531681538, + -0.007876900024712086, + -0.008961197920143604, + 0.013788072392344475, + -0.0027841972187161446, + -0.0003539270837791264, + 0.019727226346731186, + 0.0055823856964707375, + 0.005019250325858593, + 0.013347357511520386, + -0.008730347268283367, + 0.0033036109525710344, + -0.004515576176345348, + 0.006967488676309586, + -0.005809738300740719, + -0.013641167432069778, + -0.02498782053589821, + 0.024903874844312668, + 0.018845798447728157, + 0.004697458352893591, + 0.007988827303051949, + 0.0040293908677995205, + 0.025267640128731728, + -0.000901541265193373, + 0.015180171467363834, + 0.01699899323284626, + -0.015138198621571064, + -0.018482033163309097, + 0.007233316544443369, + -0.026260996237397194, + 0.014970307238399982, + 0.004445621743798256, + 0.00950684491544962, + -0.046449925750494, + -0.021308204159140587, + -0.01962929032742977, + 0.030500251799821854, + 0.016131555661559105, + 0.012333014979958534, + 0.002950339810922742, + 0.020524710416793823, + -0.0034452693071216345, + 0.011136788874864578, + -0.008520483039319515, + -0.010710065253078938, + -0.008443532511591911, + 0.009052138775587082, + 0.001612455933354795, + -0.01832813210785389, + 0.0020724080968648195, + -0.0460301972925663, + 0.004952793009579182, + 0.0022333040833473206, + 0.010304328054189682, + -0.01235400140285492, + -0.021028384566307068, + -0.00801680888980627, + -0.014564570039510727, + 0.022441469132900238, + -0.009199043735861778, + 0.000390871922718361, + 0.0008044791175052524, + 0.0017191368388012052, + -0.02935299463570118, + 0.006796099711209536, + 0.00793286319822073, + -0.01536205317825079, + 0.002131869550794363, + -0.00662121269851923, + 0.010975893586874008, + 0.012633820064365864, + -0.027813991531729698, + -0.03853105008602142, + 0.012766733765602112, + 0.0009688726859167218, + 0.027436235919594765, + -0.01199023611843586, + -0.0006536392611451447, + -0.007037443574517965, + 0.016467338427901268, + 0.026260996237397194, + -0.010954907163977623, + 0.0024046930484473705, + -0.017138902097940445, + -0.03024841472506523, + 0.011066834442317486, + -0.005379516631364822, + -0.005330548621714115, + 0.024805938825011253, + -0.0031462127808481455, + -0.016369400545954704, + -0.016061600297689438, + 0.01695702038705349, + -0.009059133939445019, + -0.0010440739570185542, + -0.009807649999856949, + 0.0029923124238848686, + 0.017460694536566734, + 0.0028576496988534927, + 8.20328205008991e-5, + 0.024889884516596794, + 0.005554403644055128, + -0.0042007798328995705, + -0.001927252160385251, + -0.002969577210023999, + 0.0017838450148701668, + -0.0364883728325367, + 0.014382687397301197, + 0.0025760820135474205, + -0.0065127830021083355, + -0.017656568437814713, + -0.009527831338346004, + -0.020664619281888008, + 0.017796477302908897, + 0.021811876446008682, + 0.0032004278618842363, + 0.0008014186169020832, + 0.0008573823724873364, + 0.008387569338083267, + 0.021420130506157875, + -0.011059839278459549, + 0.005568394437432289, + 0.01562788151204586, + 0.0033718168269842863, + -0.001804831437766552, + 0.0015390035696327686, + 0.017068948596715927, + 0.011052843183279037, + -0.010255360044538975, + -0.026750680059194565, + -0.007722999434918165, + -0.019559334963560104, + 0.004358178004622459, + -0.0032214142847806215, + 0.01558590866625309, + 0.002429177053272724, + -0.003433027071878314, + -0.019027680158615112, + 0.00829662848263979, + 0.014438651502132416, + 0.02551947720348835, + -0.003398049855604768, + -0.016705183312296867, + 0.029744740575551987, + -0.02568736858665943, + -0.004945797845721245, + -0.006246955133974552, + -0.0075341216288506985, + -0.020286863669753075, + 0.01429174654185772, + -0.004508580546826124, + 0.013326371088624, + 0.011136788874864578, + 0.000901541265193373, + 0.010486210696399212, + -0.005589380860328674, + -0.009436889551579952, + 0.007079416420310736, + 0.01667720265686512, + -0.0020409284625202417, + 0.027030497789382935, + -0.0035991696640849113, + 0.028121791779994965, + 0.02725435234606266, + 0.0054249875247478485, + -0.011416607536375523, + -0.004197282250970602, + -0.004816381260752678, + -0.007380221504718065, + 0.006110543385148048, + -0.005900679621845484, + 0.004221766255795956, + -0.011248717084527016, + 0.008023804984986782, + 0.014123855158686638, + -0.04393155500292778, + -0.015222144313156605, + -0.03525717183947563, + 6.596509774681181e-5, + -0.024638047441840172, + 0.0364324115216732, + 0.012528887949883938, + -0.012794715352356434, + 0.020440764725208282, + 0.021909814327955246, + 0.009429894387722015, + 0.01978319138288498, + -0.00914307963103056, + 0.003347332589328289, + -0.0010125943226739764, + -0.011654454283416271, + -0.012025213800370693, + -0.013641167432069778, + 0.005393507890403271, + 0.0001500747021054849, + 0.0008573823724873364, + 0.007170357275754213, + 0.014277755282819271, + 0.009982536546885967, + 0.0252816304564476, + -0.03640442714095116, + -0.025407548993825912, + -0.010905938223004341, + 0.008044791407883167, + 0.0021248741541057825, + 0.01631343737244606, + 0.013067538850009441, + -0.017460694536566734, + -0.01191328652203083, + 0.014466633088886738, + 0.004288223572075367, + 0.012374987825751305, + -0.0011743645882233977, + -0.006883542984724045, + -0.0014935329090803862, + -0.013837040401995182, + 0.0026827629189938307, + -0.006649194750934839, + 0.005841217935085297, + 0.01566985435783863, + -0.0063029187731444836, + -0.049164168536663055, + 0.008996174670755863, + 0.02426029182970524, + -0.016061600297689438, + -0.03217916563153267, + -0.0034277804661542177, + 0.017264820635318756, + -0.0058866883628070354, + -0.007590085733681917, + 0.010794010944664478, + 0.004847860895097256, + 0.006239959504455328, + 0.003609662875533104, + -0.017376748844981194, + 0.0055963764898478985, + 0.023043079301714897, + -0.021713940426707268, + -0.014130850322544575, + 0.002808681456372142, + 0.014662506058812141, + 0.014165828004479408, + 0.017138902097940445, + 0.006568746641278267, + -0.01245893258601427, + -0.0014358203625306487, + 0.009639758616685867, + 0.003231907496228814, + -0.019797181710600853, + 0.009115098044276237, + 0.012668796814978123, + 0.016943030059337616, + 0.017782486975193024, + -0.016523301601409912, + 0.00242742826230824, + -0.0182162057608366, + 0.012794715352356434, + -0.008576447144150734, + 0.007883895188570023, + -0.019881127402186394, + 0.005082209128886461, + -0.0010397018631920218, + 0.023392854258418083, + -0.012011222541332245, + -0.005974131636321545, + -0.014410668984055519, + 0.0008403309038840234, + 0.002053170697763562, + -0.012144137173891068, + 0.010220382362604141, + -0.01285767462104559, + 0.010311323218047619, + -0.015473980456590652, + -0.0018345621647313237, + -0.005788751877844334, + 0.021140312775969505, + -0.01813226006925106, + 0.023952491581439972, + -0.01969924569129944, + 0.015348061919212341, + 0.005204630084335804, + -0.035509008914232254, + 0.02402244508266449, + -0.006313411984592676, + 0.013291394338011742, + -0.008632410317659378, + -0.005379516631364822, + -0.009052138775587082, + -0.0018468041671440005, + -0.007345244288444519, + -0.011899295262992382, + 0.0004372169205453247, + 0.01954534463584423, + 0.007764972280710936, + 0.03699204698204994, + -0.0005399629008024931, + -0.018034322187304497, + 0.012193105183541775, + 0.006789104081690311, + 0.0006435833056457341, + 0.005613865330815315, + 0.01157050859183073, + -0.0028768873307853937, + -0.02232954278588295, + -0.01005249097943306, + 0.0022840211167931557, + 0.0035309637896716595, + 0.03760765120387077, + -0.008485505357384682, + 0.02523965761065483, + -0.039790235459804535, + -0.016971010714769363, + -0.017264820635318756, + 0.00043459361768327653, + -0.015459990128874779, + -0.02648485079407692, + -0.0015512455720454454, + -0.009786663576960564, + -0.010842978954315186, + 0.013249421492218971, + 0.008247659541666508, + -0.012703774496912956, + -0.0018188223475590348, + 0.014305736869573593, + -0.003485493129119277, + 0.006981479469686747, + 0.024134373292326927, + 0.003917463589459658, + 0.004648490343242884, + -0.030388323590159416, + -0.007499144412577152, + 0.013004579581320286, + 0.009255007840692997, + 0.012165123596787453, + -0.0070059639401733875, + 0.0063029187731444836, + 0.003207423258572817, + -0.010856970213353634, + -0.0033036109525710344, + -0.016705183312296867, + -0.016131555661559105, + 0.0032703825272619724, + 0.021993760019540787, + 0.006789104081690311, + -0.004008404444903135, + 0.00523960730060935, + -0.01582375355064869, + -0.03324247524142265, + 0.0030850025359541178, + 0.010975893586874008, + 0.008674383163452148, + -0.0009172810823656619, + 0.0024903875309973955, + -0.004452616907656193, + 0.002324245171621442, + -0.02151806652545929, + -0.003966431599110365, + 0.007114393636584282, + 0.0004195096262264997, + -0.006810090504586697, + -0.0060370909050107, + 0.004624005872756243, + -0.0039629340171813965, + 0.01532008033245802, + -0.02087448351085186, + -0.0054249875247478485, + 0.010870961472392082, + -0.003882486140355468, + 0.012717765755951405, + 0.010891947895288467, + 0.000641397200524807, + -0.0015145193319767714, + -0.006771615706384182, + -0.007366230711340904, + -0.004847860895097256, + 0.017768494784832, + -0.009737694635987282, + 0.024861901998519897, + 0.016411373391747475, + -0.008121741004288197, + -0.001615953748114407, + -0.018118267878890038, + -0.0016002139309421182, + -0.0012600591871887445, + 0.017880422994494438, + -0.01558590866625309, + -0.021378157660365105, + 0.004463110119104385, + -0.014858379028737545, + -0.004123829770833254, + -0.0009094111737795174, + 0.008660392835736275, + -0.00427073473110795, + 0.011962254531681538, + -0.0004529567086137831, + 0.006187493912875652, + 0.0119552593678236, + -0.003592174034565687, + -0.02252541482448578, + 0.006970986258238554, + 0.010612129233777523, + 0.00975168589502573, + -0.020664619281888008, + -0.03335440531373024, + 0.002086399123072624, + 0.0056943129748106, + 0.0132074486464262, + 4.869503391091712e-5, + 0.01278072502464056, + -0.00020133839279878885, + -0.0020077000372111797, + -0.0007135379710234702, + -0.008268645964562893, + -0.0020951435435563326, + -0.006771615706384182, + -0.018887771293520927, + -0.001510147238150239, + -0.002700251527130604, + 0.013095520436763763, + -0.023406844586133957, + 0.034417714923620224, + 0.007632058579474688, + -0.010003522969782352, + 0.018635934218764305, + -0.004060870502144098, + 0.013340362347662449, + 0.007716003805398941, + 0.002516620559617877, + 0.010842978954315186, + 0.04664579778909683, + -0.0008718105382286012, + -0.01671917550265789, + 0.004263739101588726, + -0.0059776296839118, + 0.023476799950003624, + 0.005075213965028524, + -0.010884951800107956, + -0.009380926378071308, + -0.006589733064174652, + 0.00703394552692771, + 0.006299421191215515, + -0.0170829389244318, + -0.015390034765005112, + 0.010311323218047619, + -0.03338238596916199, + 0.012829693034291267, + -0.004074861761182547, + -0.015879718586802483, + 0.03343835100531578, + 0.014130850322544575, + 0.002813928062096238, + 0.014438651502132416, + -0.0012967853108420968, + -0.010759033262729645, + -0.004421137273311615, + -0.008870257064700127, + 0.007548112887889147, + 0.013473276048898697, + -0.028205737471580505, + -0.013543231412768364, + -0.0072962758131325245, + -0.01704096607863903, + 0.02237151563167572, + 0.012437946163117886, + -0.01126270741224289, + -0.006659687962383032, + 0.014326723292469978, + -0.009317967109382153, + -0.005508933216333389, + -0.013529240153729916, + 0.01199023611843586, + 0.002586575224995613, + -0.011059839278459549, + -0.006666683591902256, + -0.007268293760716915, + 0.007953849621117115, + -0.011059839278459549, + -0.002292765537276864, + -0.012703774496912956, + 0.004526069387793541, + 0.002827918855473399, + 0.015767790377140045, + 0.012479919008910656, + 0.005879693198949099, + 0.0025883240159600973, + -0.005012254696339369, + -0.0028366632759571075, + 0.011752390302717686, + -0.0005259719328023493, + 0.04020996391773224, + -0.006596728693693876, + -0.0074012079276144505, + 0.015529944561421871, + -0.0038370154798030853, + 0.0054249875247478485, + -0.010563160292804241, + 0.012277050875127316, + 0.020664619281888008, + 0.022315550595521927, + -0.012465928681194782, + 0.005844715517014265, + -0.018579969182610512, + 0.013886009342968464, + 0.020132964476943016, + 0.003293117741122842, + -0.028933266177773476, + -0.012885657139122486, + 0.021490085870027542, + 0.022175641730427742, + -0.0085414694622159, + 0.0009802402928471565 + ], + "807c6ec8-5a3b-4098-82ed-1d4270438790": [ + -0.00010615090286592022, + -0.027160920202732086, + -0.014670462347567081, + 0.03775930032134056, + -0.008582905866205692, + -0.0067011103965342045, + 0.02267751842737198, + 0.013237692415714264, + 0.007616300601512194, + 0.04565666988492012, + -0.005007837433367968, + 0.00336769362911582, + 0.0062897889874875546, + 0.013148573227226734, + 0.03444130718708038, + 0.04527277126908302, + -0.02824406698346138, + 0.01371071208268404, + -0.02710607834160328, + 0.0061252606101334095, + 0.026214880868792534, + -0.018015876412391663, + -0.022773493081331253, + -0.014711594209074974, + 0.007657432928681374, + -0.014149455353617668, + -0.0131280068308115, + -0.009460391476750374, + -0.02792872115969658, + 0.002808982040733099, + 0.0050318315625190735, + -0.014080901630222797, + 0.02299286425113678, + 0.03301539644598961, + 0.024912364780902863, + -0.04255805164575577, + -0.028326330706477165, + -0.007102149073034525, + -0.03732055798172951, + -0.0004717341798823327, + 0.023884059861302376, + 0.04247578606009483, + -0.019894244149327278, + -0.01108511071652174, + -0.038006093353033066, + 0.012723540887236595, + -0.045574408024549484, + -0.009412404149770737, + 0.010029385797679424, + 0.017179522663354874, + -0.0027678499463945627, + -0.00291695399209857, + -0.009330139495432377, + 0.02953287400305271, + 0.045053400099277496, + -0.02643425203859806, + 0.0003511227550916374, + 0.05007151886820793, + 0.005086674354970455, + -0.041132137179374695, + -0.009720894508063793, + -0.033892881125211716, + 0.010618946515023708, + 0.006594852544367313, + -0.005669379606842995, + 0.017179522663354874, + -0.043764591217041016, + 0.019290972501039505, + -0.009165611118078232, + 0.012346495874226093, + -0.015397129580378532, + 0.0403643362224102, + -0.03855452314019203, + 0.024048589169979095, + 0.03172658756375313, + -0.018139272928237915, + 0.042941950261592865, + 0.029752245172858238, + 0.020428961142897606, + -0.05253944918513298, + 0.03666244447231293, + -0.02972482331097126, + 0.025076892226934433, + 0.004610226955264807, + 0.030108723789453506, + 0.018920782953500748, + -0.011798067949712276, + -0.03331702947616577, + 0.009145044721662998, + -0.012586433440446854, + 0.0198668222874403, + 0.03383803740143776, + 0.001967487158253789, + 0.03287828713655472, + 0.019757136702537537, + -0.003506514709442854, + 0.015136626549065113, + -0.014574486762285233, + -0.008555484004318714, + -0.009055925533175468, + -0.006731959525495768, + 0.03257665038108826, + 0.03021840937435627, + 0.008994227275252342, + -0.005563121289014816, + -0.017933610826730728, + 0.003866420825943351, + 0.009734605439007282, + 0.005192932207137346, + 0.009055925533175468, + -0.013333667069673538, + -0.03345413878560066, + 0.006046424154192209, + 0.01377926580607891, + -0.019798267632722855, + 0.0034328196197748184, + -0.022046824917197227, + 0.005093529354780912, + -0.01971600390970707, + -0.016507698222994804, + 0.011866621673107147, + -0.0177142396569252, + -0.007033595349639654, + -0.00767799885943532, + -0.03531879559159279, + 0.03381061553955078, + -0.008747434243559837, + 0.025076892226934433, + 0.00619381433352828, + 0.04233868047595024, + -0.016151219606399536, + 0.006354914978146553, + 0.005237491801381111, + 0.00935070589184761, + -0.00028171230223961174, + 0.0038938422221690416, + 0.016480276361107826, + 0.061149775981903076, + -0.019606318324804306, + 0.012942912057042122, + -0.05451378971338272, + 0.011064544320106506, + -0.031589481979608536, + 0.01922241784632206, + -0.017028704285621643, + -0.023363053798675537, + -0.01824895851314068, + 0.04549214243888855, + -0.026338277384638786, + -0.00911076832562685, + -0.013388510793447495, + -0.015520526096224785, + -0.003360838396474719, + -0.013498196378350258, + 0.0391029492020607, + 0.010961714200675488, + 0.00730780977755785, + 0.005926455371081829, + 0.019907953217625618, + 0.05659782141447067, + 0.02724318578839302, + -0.024418778717517853, + 0.015081783756613731, + 0.018975624814629555, + 0.07294099032878876, + -0.01856430433690548, + 0.027873877435922623, + 0.015493104234337807, + -0.007986489683389664, + 0.010529827326536179, + 0.013155428692698479, + -0.05366372689604759, + 0.03350897878408432, + 0.0032597219105809927, + 0.0360591746866703, + 0.0069376202300190926, + 0.04513566568493843, + 0.03038293868303299, + -0.009892278350889683, + 0.002731859451159835, + -0.010948003269731998, + -0.025022050365805626, + 0.04447754845023155, + -0.011619828641414642, + 0.003643621690571308, + 0.008610326796770096, + 0.027956141158938408, + 0.013114295899868011, + -0.01257272344082594, + -0.011702092364430428, + -0.012353351339697838, + -0.023678399622440338, + 0.023047707974910736, + 0.004915290512144566, + -0.021045943722128868, + -0.023856639862060547, + -0.007657432928681374, + 0.017124678939580917, + -0.0011388460407033563, + 0.027503687888383865, + -0.02792872115969658, + -0.039294902235269547, + -0.013306246139109135, + 0.02843601629137993, + -0.03137011080980301, + 0.04272257909178734, + -0.0013050884008407593, + 0.015095493756234646, + 0.016877885907888412, + -0.025241421535611153, + 0.023417895659804344, + -0.01988053321838379, + 0.028216645121574402, + -0.0030283534433692694, + 0.007376363035291433, + 0.025392238050699234, + 0.03191853687167168, + 0.014684172347187996, + 0.028463438153266907, + -0.040309492498636246, + 0.0407482348382473, + 0.0027489978820085526, + -0.01445109024643898, + -0.0239800363779068, + -0.03265891596674919, + -0.013223981484770775, + -0.006927337497472763, + 0.002790129976347089, + -0.0026770164258778095, + -0.04826170578598976, + 0.03348156064748764, + -0.039815906435251236, + 0.02495349571108818, + -0.02082657255232334, + 0.005525417160242796, + 0.014492223039269447, + 0.014067190699279308, + 0.007725986186414957, + 0.0010145927080884576, + -0.007451772224158049, + -0.0019554903265088797, + -0.0030900517012923956, + 0.010653222911059856, + -0.013758699409663677, + -0.017302919179201126, + 0.004593088757246733, + 0.029423188418149948, + 0.06389191746711731, + 0.013649013824760914, + 0.015164047479629517, + -0.020497513934969902, + -0.005659096408635378, + 0.019414369016885757, + -0.007540891878306866, + -0.05813341960310936, + 0.05270397663116455, + 0.036854393780231476, + -0.035044580698013306, + -0.004593088757246733, + -0.02152581885457039, + -0.006019002757966518, + 0.0179061908274889, + -0.024720413610339165, + 0.004990699235349894, + 0.00033934012753888965, + -0.024528464302420616, + 0.0335364006459713, + 0.001830380060710013, + -0.0003027068160008639, + 0.030520044267177582, + 0.03446872904896736, + 0.005354032851755619, + -0.036525338888168335, + 0.05747530609369278, + -0.03551074489951134, + -0.004569094628095627, + 0.0025810415390878916, + -0.012051715515553951, + 0.015657633543014526, + 0.009912844747304916, + -0.030245831236243248, + -0.012929201126098633, + 0.03838999569416046, + -0.026516517624258995, + -0.043298427015542984, + 0.04741164296865463, + -0.017631975933909416, + -0.0325218103826046, + -0.019277261570096016, + 0.02773676998913288, + -0.003897269954904914, + -0.00813045259565115, + -0.00919988751411438, + 0.019935375079512596, + -0.04121439903974533, + -0.008144162595272064, + -0.02644796296954155, + 0.004555384162813425, + 0.0032065927516669035, + 0.0071432809345424175, + -0.026502806693315506, + 0.04255805164575577, + -0.031095895916223526, + -0.008774856105446815, + 0.026996392756700516, + -0.03732055798172951, + 0.014643040485680103, + 0.025735005736351013, + -0.0038904144894331694, + 0.002918667858466506, + -0.029642559587955475, + -0.04222899302840233, + -0.028216645121574402, + -0.030108723789453506, + 0.008911962620913982, + 0.03838999569416046, + -0.027366582304239273, + -0.014300272800028324, + -0.032110486179590225, + 0.006680544465780258, + -0.012552157044410706, + 0.010481839068233967, + -0.037375401705503464, + 0.033591244369745255, + 0.01578103005886078, + -0.012990899384021759, + 0.038033515214920044, + 0.01412203349173069, + -0.013580460101366043, + -0.0034448164515197277, + -0.029944194480776787, + -0.009131334722042084, + 0.0009743174887262285, + -0.0017652541864663363, + 0.0075546023435890675, + -0.022389592602849007, + -0.0239800363779068, + -0.02525513246655464, + 0.01273039635270834, + -0.024569595232605934, + -0.01182548888027668, + -0.033097658306360245, + -0.010735487565398216, + 0.009796303696930408, + -0.05802373215556145, + -0.03764961659908295, + -0.01590442657470703, + 0.020237011834979057, + 0.02330821007490158, + 0.006354914978146553, + 0.0009408976184204221, + 0.014752726070582867, + 0.04115955904126167, + -0.0032271589152514935, + 0.02643425203859806, + -0.017837636172771454, + -0.018344933167099953, + 0.01207913737744093, + 0.039322324097156525, + 0.005367743782699108, + -0.0004563096445053816, + -0.015726186335086823, + 0.00529233505949378, + -0.028189223259687424, + -0.03312508016824722, + -0.017275497317314148, + 0.020963678136467934, + -0.010269323363900185, + -0.04678095132112503, + 0.01757713221013546, + 0.006252084858715534, + 0.00017074121569748968, + -0.03449615091085434, + -0.039486851543188095, + -0.015314865857362747, + -0.0279012992978096, + 0.04806975647807121, + 0.009528945200145245, + -0.01264813169836998, + 0.0010531541192904115, + -0.022554121911525726, + 0.011133098043501377, + -0.03008130192756653, + 0.02988935261964798, + 0.03183627501130104, + 0.006807368714362383, + 0.006409757770597935, + -0.04132408648729324, + 0.00040103832725435495, + -0.004833025857806206, + -0.0057550715282559395, + -0.01290178019553423, + 0.004267459269613028, + 0.012332785874605179, + -0.00221427995711565, + -0.03232985734939575, + 0.024021167308092117, + -0.009645486250519753, + 0.03597690910100937, + 0.004860447254031897, + -0.03041035868227482, + -0.005823624785989523, + 0.0173988938331604, + 0.025830982252955437, + -0.03567527234554291, + -0.019441789016127586, + 0.005573404487222433, + -0.019304683431982994, + 0.02019587904214859, + 0.016781911253929138, + -0.011900898069143295, + -0.011462155729532242, + -0.028545701876282692, + 0.01624719426035881, + 0.017152100801467896, + 0.006570858880877495, + -0.03498973697423935, + 0.06482424587011337, + -0.012257376685738564, + 0.01789247989654541, + 0.035209108144044876, + 0.007540891878306866, + 0.030986208468675613, + 0.038335151970386505, + -0.008480075746774673, + -0.00530261779204011, + -0.011900898069143295, + 0.012106559239327908, + 0.008281270042061806, + 0.0018081001471728086, + 0.03748508542776108, + 0.04562925174832344, + 0.009714039973914623, + 0.019496632739901543, + -0.04132408648729324, + -0.015095493756234646, + -0.0011791212018579245, + -0.0002517201064620167, + 0.0026187459006905556, + -0.045080821961164474, + -0.01542455144226551, + 0.0407482348382473, + 0.01403976883739233, + -0.008768000639975071, + -0.040995027869939804, + -0.020250720903277397, + -0.015863293781876564, + 0.05802373215556145, + -0.00978259276598692, + -0.013100584968924522, + 0.0088571198284626, + 0.040144965052604675, + -0.03874647244811058, + -0.022197643294930458, + 0.019263550639152527, + -0.04368232935667038, + 0.007156991865485907, + 0.028984446078538895, + 0.015575368888676167, + -0.052978191524744034, + 0.02742142416536808, + -0.015972979366779327, + 0.03959653526544571, + -0.02038782835006714, + 0.03764961659908295, + -0.00042438937816768885, + -0.008438942953944206, + -0.017138389870524406, + 0.0003639765491243452, + 0.03304281458258629, + -0.011489576660096645, + -0.039349742233753204, + 0.01988053321838379, + 0.06125946342945099, + 0.01303888764232397, + -0.02444620057940483, + -0.007760263048112392, + -0.014409958384931087, + -0.014547065831720829, + 0.00945353601127863, + 0.012202533893287182, + -0.010461273603141308, + -0.016548829153180122, + -0.007821961306035519, + 0.010906871408224106, + 0.009858001954853535, + -0.013415931724011898, + 0.003993244841694832, + -0.017673108726739883, + -0.0011568412883207202, + -0.009055925533175468, + 0.0016375731211155653, + -0.0023633840028196573, + 0.024267960339784622, + 0.005707083735615015, + -0.039294902235269547, + 0.028463438153266907, + -0.025159155949950218, + 0.022608963772654533, + -0.002651308896020055, + -0.005426014307886362, + -0.04126924276351929, + 0.025186577811837196, + -0.0024267961271107197, + -0.050153784453868866, + 0.0003063487238250673, + 0.0022451290860772133, + 0.0251180250197649, + 0.007287243381142616, + -0.014670462347567081, + -0.03696408122777939, + 0.0358123816549778, + -0.019976507872343063, + 0.015794740989804268, + 0.009830581024289131, + 0.024830099195241928, + -0.010118505917489529, + -0.008411522023379803, + 0.018619146198034286, + 0.013916373252868652, + 0.004613654688000679, + -0.013319957070052624, + -0.012846937403082848, + -0.025488214567303658, + -0.013834108598530293, + 0.04107729345560074, + -0.013491340912878513, + -0.015849582850933075, + 0.0246107280254364, + -0.054431527853012085, + -0.008603472262620926, + 0.0020806004758924246, + -0.020456383004784584, + -0.0182215366512537, + -0.002682158024981618, + 0.026722177863121033, + 0.011421022936701775, + -0.009988253936171532, + -0.010783474892377853, + -0.014149455353617668, + -0.022252485156059265, + 0.00763686653226614, + -0.010598380118608475, + -0.017823925241827965, + -0.01419058721512556, + 0.0036676155868917704, + 0.014958387240767479, + 0.008795421570539474, + -0.020154746249318123, + 0.018852228298783302, + -0.021429842337965965, + 0.014272850938141346, + 0.0010154496412724257, + 0.010954858735203743, + -0.009405548684298992, + -0.017014993354678154, + 0.01624719426035881, + -0.009755171835422516, + -0.02169034630060196, + -0.0315072163939476, + -0.018166692927479744, + 0.008199005387723446, + 0.007129570469260216, + 0.027517398819327354, + -0.011146808974444866, + 0.01952405460178852, + -0.02395261451601982, + -0.005007837433367968, + 0.015698764473199844, + 0.02300657518208027, + 0.022581543773412704, + 0.006426896434277296, + 0.030492624267935753, + 0.008946239948272705, + -0.016315747052431107, + 0.009220453910529613, + 0.014547065831720829, + -0.0182215366512537, + -0.03101363033056259, + 0.0033762629609555006, + 0.015122915618121624, + 0.015383418649435043, + 0.025227710604667664, + 0.011023412458598614, + 0.027791613712906837, + 0.014409958384931087, + 0.01067378930747509, + 0.009528945200145245, + -0.022458147257566452, + 0.038088358938694, + 0.020648332312703133, + 0.0052546304650604725, + -0.001970914890989661, + -0.010790330357849598, + -0.004922145511955023, + 0.02792872115969658, + 0.004068654030561447, + 0.01084517315030098, + 0.031123315915465355, + -0.005857901647686958, + 0.020086193457245827, + 0.01791989989578724, + -0.0012613855069503188, + -0.013861529529094696, + -0.03559301048517227, + 0.009748316369950771, + -0.005885323043912649, + 0.024514753371477127, + 0.020922547206282616, + -0.0031106178648769855, + 0.012696119025349617, + -0.013930083252489567, + 0.029916774481534958, + -0.009686618112027645, + 0.013114295899868011, + -0.009494667872786522, + 0.003516797674819827, + 0.027037523686885834, + 0.012613855302333832, + 0.011078255251049995, + 0.021402422338724136, + 0.014231719076633453, + 0.038006093353033066, + -0.021224182099103928, + -0.0010900016641244292, + 0.0430242158472538, + -0.027215763926506042, + -0.004990699235349894, + -0.009768882766366005, + 0.004216043744236231, + -0.02613261714577675, + -0.04247578606009483, + -0.006111550144851208, + 0.008768000639975071, + 0.012120269238948822, + -0.03285086527466774, + -8.365676330868155e-5, + 0.0049769883044064045, + -0.0059607322327792645, + -0.01907160133123398, + 0.019661162048578262, + 0.01288806926459074, + 0.003006073646247387, + 0.051497433334589005, + -0.009871712885797024, + 0.046698685735464096, + -0.016164928674697876, + -0.00796592328697443, + 0.024391356855630875, + 0.027832746505737305, + -0.010159637778997421, + 0.01791989989578724, + -0.009974543005228043, + -0.0002330821007490158, + 0.0037567350082099438, + -0.010235046967864037, + 0.00336769362911582, + -0.02871023118495941, + 0.0318911150097847, + -0.0015133199049159884, + -0.002166292630136013, + -0.03904810920357704, + 0.019126443192362785, + -0.004462836775928736, + 0.021100785583257675, + 0.016137508675456047, + 0.0008539202972315252, + -0.01157869677990675, + -0.0016092947917059064, + 0.034249357879161835, + 0.010132215917110443, + -0.03246696665883064, + 0.0062897889874875546, + 0.00293752015568316, + -0.014409958384931087, + 0.013374799862504005, + 0.010646368376910686, + 0.0031671745236963034, + -0.011304481886327267, + -0.031095895916223526, + -0.032905708998441696, + -0.06564688682556152, + -0.03268633782863617, + 0.00820586085319519, + -0.026859285309910774, + 0.0032374418806284666, + -0.0036093450617045164, + -0.017536001279950142, + -0.009172466583549976, + -0.02248556725680828, + -0.02906670980155468, + 0.026900416240096092, + 0.012833226472139359, + 0.021580660715699196, + -0.0007840813486836851, + 0.0016624238342046738, + 0.007801395375281572, + 0.0069787525571882725, + 0.0012802376877516508, + -0.0025193432811647654, + -0.020415250211954117, + -0.004380572587251663, + -0.009165611118078232, + -0.013573604635894299, + 0.02838117443025112, + 0.006409757770597935, + -0.004596516024321318, + -0.029368344694375992, + 0.005072963424026966, + 0.013936938717961311, + -0.023842928931117058, + -0.031095895916223526, + -0.02380179613828659, + -0.0061423988081514835, + 0.019935375079512596, + -0.029121551662683487, + -0.012606999836862087, + 0.004610226955264807, + -0.024185696616768837, + 0.023678399622440338, + -0.0011782642686739564, + 0.03888357803225517, + -0.007883659563958645, + -0.03633338585495949, + 0.0038527101278305054, + 0.003671043086796999, + -0.006721676792949438, + -0.03548332303762436, + 0.02037411741912365, + 0.004360006656497717, + 0.023760663345456123, + -0.011674671433866024, + 0.015575368888676167, + 0.00961120892316103, + 0.0210048109292984, + -0.03263149410486221, + 0.006944475695490837, + -0.0007510899449698627, + 0.02956029586493969, + -0.004281169734895229, + 0.006779947318136692, + -0.00401723850518465, + 0.015822160989046097, + -0.03729313611984253, + 0.016658514738082886, + 0.012956622987985611, + 0.01042014081031084, + 0.01412203349173069, + -0.048206862062215805, + 0.011921464465558529, + 0.010426996275782585, + -0.03592206537723541, + 0.02430909313261509, + -0.02415827475488186, + 0.008521207608282566, + 0.011866621673107147, + 0.03054746612906456, + -0.0237880852073431, + -0.02118304930627346, + 0.046314787119627, + -0.009316428564488888, + 0.020470093935728073, + -0.00297693838365376, + 0.006800513248890638, + -0.012003728188574314, + 0.020470093935728073, + 0.010200769640505314, + -0.014272850938141346, + 0.007040450815111399, + 0.005398592911660671, + 0.018811097368597984, + 0.035565588623285294, + -0.01027617882937193, + 0.0284085962921381, + 0.028545701876282692, + -0.023541292175650597, + 0.009563221596181393, + -0.024830099195241928, + 0.008308691903948784, + -0.006635984871536493, + -0.021100785583257675, + -0.03021840937435627, + 0.05127806216478348, + 0.003066058037802577, + -0.005155227612704039, + -0.00878856610506773, + 0.013361088931560516, + -0.020154746249318123, + 0.006382336374372244, + 0.010310455225408077, + 0.006985608022660017, + -0.01501323003321886, + -0.015685055404901505, + -0.0013582174433395267, + 0.023116260766983032, + -0.010666933842003345, + 0.007650577463209629, + 0.0185368824750185, + -0.02646167390048504, + -0.01907160133123398, + 0.007986489683389664, + -0.003095193300396204, + 0.02330821007490158, + 0.0024645004887133837, + -0.0026358843315392733, + -0.019661162048578262, + -0.01010479498654604, + -0.002318824175745249, + -0.02728431671857834, + 0.020991099998354912, + 0.00845950935035944, + 0.011229073628783226, + -0.0011842628009617329, + 0.019770847633481026, + -0.021909717470407486, + -0.008768000639975071, + 0.03084910288453102, + 0.01092743780463934, + 0.036223702132701874, + -0.004946139175444841, + -0.0051826490089297295, + -0.028847338631749153, + 0.005929883103817701, + -0.0053437501192092896, + 0.023390475660562515, + -0.04132408648729324, + 0.011023412458598614, + 0.008795421570539474, + 0.01216825656592846, + 0.013388510793447495, + -0.02953287400305271, + -0.030986208468675613, + -0.02642054297029972, + 0.006968469358980656, + -0.007403784431517124, + 0.019770847633481026, + 0.01017334870994091, + 0.01451964396983385, + -0.03630596399307251, + 0.01971600390970707, + 0.011537563987076283, + -0.031616903841495514, + 0.018276378512382507, + -0.023020286113023758, + 0.026228591799736023, + 0.01017334870994091, + 0.046890635043382645, + -0.010666933842003345, + 0.003660760121420026, + 0.018591726198792458, + 0.030602309852838516, + 0.009501523338258266, + 0.05610423535108566, + 0.021141918376088142, + -0.030931366607546806, + -0.005319756455719471, + 0.0029426615219563246, + 0.0010025958763435483, + 0.005323184188455343, + 0.019757136702537537, + 0.021073363721370697, + 0.011421022936701775, + -0.02000392973423004, + -0.01273039635270834, + -0.024240538477897644, + -0.001009451225399971, + 0.027942432090640068, + 0.008171584457159042, + -0.009528945200145245, + 0.052950769662857056, + 0.021470975130796432, + -0.003484234679490328, + 0.03041035868227482, + -0.010118505917489529, + 0.014697883278131485, + -0.0351816862821579, + 0.013340522535145283, + -0.007705420255661011, + -0.01207913737744093, + 0.015260022133588791, + -0.01534228678792715, + 0.004113213624805212, + 0.0086994469165802, + -0.017028704285621643, + -0.0034242502879351377, + 0.007252966519445181, + 0.0049015795812010765, + -0.007218690123409033, + 0.003249438712373376, + 0.010029385797679424, + 0.019811978563666344, + 0.008185295388102531, + -0.023376764729619026, + -0.007746552117168903, + -0.0020051917526870966, + 0.019263550639152527, + 0.025981798768043518, + -0.01754971221089363, + 0.0069376202300190926, + 0.03660760074853897, + 0.01445109024643898, + -0.004185195080935955, + -0.011811778880655766, + -0.02480267733335495, + 0.02972482331097126, + -0.020566068589687347, + 0.0030780548695474863, + -0.0026375981979072094, + 0.018344933167099953, + -0.01591813750565052, + -0.016644803807139397, + 0.01100284606218338, + -0.010666933842003345, + -0.015232601203024387, + 0.04253062978386879, + -0.004181767348200083, + 0.018111851066350937, + -0.008425232954323292, + -0.006248657125979662, + -0.023363053798675537, + 0.023555003106594086, + -0.019140154123306274, + 0.027695639058947563, + -0.0018578014569357038, + -0.04280484467744827, + 0.010372153483331203, + -0.03186369314789772, + -0.026187460869550705, + -0.023280790075659752, + 0.007911080494523048, + -0.022060535848140717, + -0.013594171032309532, + -0.011098821647465229, + -0.0069753248244524, + -0.005916172172874212, + -0.03435904532670975, + -0.03265891596674919, + -0.0014858983922749758, + -0.02824406698346138, + 0.01140731293708086, + 0.003811578033491969, + -0.005398592911660671, + 0.0035305083729326725, + -0.01017334870994091, + -0.016644803807139397, + -0.0034156811889261007, + 0.02433651313185692, + 0.01115366443991661, + 0.043298427015542984, + -0.002790129976347089, + 0.004140635021030903, + 0.01321712601929903, + -0.013758699409663677, + -0.012915491126477718, + 0.015547947958111763, + 0.005354032851755619, + -0.0029992181807756424, + -0.030300673097372055, + -0.004774755332618952, + -0.020483803004026413, + -0.004922145511955023, + 0.0121476911008358, + 0.002910098759457469, + 0.0006881063454784453, + -0.01676820032298565, + 0.03191853687167168, + -0.02134757861495018, + -0.0004316731938160956, + -0.025899535045027733, + -0.024994628503918648, + -0.007938502356410027, + -0.005923027638345957, + -0.05240233987569809, + -0.002341104205697775, + 0.0007956497720442712, + -0.02677702158689499, + -0.028298910707235336, + 0.0027370008174329996, + -0.011681526899337769, + -0.028271488845348358, + -0.011126242578029633, + -0.016987571492791176, + -0.02972482331097126, + -0.011462155729532242, + 0.011530708521604538, + 0.00578249292448163, + -0.003114045597612858, + 0.0037464520428329706, + -0.014423669315874577, + 0.01420429814606905, + 0.041625723242759705, + -0.019743425771594048, + 0.022732360288500786, + 0.03578495979309082, + 0.0013530758442357183, + 0.006228091195225716, + 0.004445698577910662, + -0.008027621544897556, + -0.005727650132030249, + -0.009618064388632774, + -0.034084830433130264, + 0.003770445939153433, + 0.029286080971360207, + 0.02626972459256649, + 0.010646368376910686, + 0.017344050109386444, + 0.019839400425553322, + 0.005220353603363037, + 0.009227309376001358, + 0.014972097240388393, + -0.016781911253929138, + -0.003934974316507578, + -0.003732741344720125, + -0.013306246139109135, + 0.021073363721370697, + 0.014505933038890362, + 0.03131526708602905, + 0.0019726287573575974, + -0.01724807545542717, + 0.0038527101278305054, + -0.02088141441345215, + 9.699257498141378e-5, + -0.02149839699268341, + 0.008007056079804897, + -0.004795321729034185, + 0.024034878239035606, + 0.008747434243559837, + -0.020497513934969902, + 0.0325218103826046, + -0.008308691903948784, + -0.015794740989804268, + -0.025186577811837196, + 0.0032939985394477844, + -0.005761926993727684, + -0.011681526899337769, + -0.0009905989281833172, + -0.001164553570561111, + -0.08456767350435257, + -0.029861930757761, + -0.017138389870524406, + -0.013278824277222157, + -0.009645486250519753, + 0.007170702330768108, + 0.01672706939280033, + 0.011441589333117008, + 0.0078768040984869, + 0.017289208248257637, + 0.026214880868792534, + -0.00665655080229044, + -0.00797963421791792, + 0.038691628724336624, + 0.022238774225115776, + -0.024391356855630875, + -0.012531590647995472, + -0.004894724115729332, + 0.012175112031400204, + -0.03422193601727486, + 0.017344050109386444, + 0.01002253033220768, + 0.023897770792245865, + -0.00037725880974903703, + -0.04102244973182678, + 0.01412203349173069, + 0.030245831236243248, + -0.012737251818180084, + -0.02149839699268341, + -0.013292535208165646, + 0.020470093935728073, + 0.0021388710010796785, + -0.017014993354678154, + -0.014876122586429119, + -0.026489095762372017, + 0.034550994634628296, + 0.01609637588262558, + -0.0050661079585552216, + 0.047548748552799225, + 0.023280790075659752, + 0.02396632544696331, + -0.0001864871010184288, + 0.007417495362460613, + -0.013148573227226734, + 0.001821810845285654, + 0.007002746220678091, + -0.020113615319132805, + -0.01887965016067028, + 0.02463814988732338, + 0.00661541847512126, + 0.015026940032839775, + -0.008397811092436314, + 0.007698564790189266, + -0.019935375079512596, + -0.005587115418165922, + 0.020141035318374634, + 0.008103030733764172, + 0.003729313611984253, + 0.012483603321015835, + 0.0028124097734689713, + 0.03896584361791611, + -0.0002242986811324954, + -0.03180885314941406, + -0.004216043744236231, + -0.012154546566307545, + 0.01371071208268404, + 0.002851828234270215, + 0.013930083252489567, + 0.006821079179644585, + -0.005779065191745758, + -0.0013068022672086954, + 0.004353151191025972, + 0.005096957087516785, + 0.016014112159609795, + 0.02939576655626297, + 0.028765074908733368, + 0.028655387461185455, + 0.02969740331172943, + -0.02544708177447319, + 0.010036241263151169, + -0.019318392500281334, + -0.008740578778088093, + -0.0011585551546886563, + 0.0267633106559515, + -0.0041646286845207214, + -0.0012879499699920416, + -0.019318392500281334, + -0.022444436326622963, + -0.012092848308384418, + 0.004061798565089703, + 0.018002165481448174, + 0.015849582850933075, + 0.03449615091085434, + 0.020593490451574326, + -0.015643922612071037, + 0.030629731714725494, + -0.030437780544161797, + 0.016384301707148552, + -0.004291452933102846, + -0.01051611639559269, + 0.002827834337949753, + -0.002791843842715025, + 0.008404666557908058, + 0.008192150853574276, + -0.0005480000399984419, + 0.010495549999177456, + -0.002918667858466506, + -0.00763686653226614, + -0.018276378512382507, + -0.013936938717961311, + -0.011201651766896248, + 0.01364215835928917, + 0.00821957178413868, + -0.0027472840156406164, + 0.003732741344720125, + -0.01590442657470703, + -0.009720894508063793, + 0.016178639605641365, + -0.00648516695946455, + -0.0017009852454066277, + -0.0032854294404387474, + 0.03054746612906456, + -0.0011568412883207202, + -8.119312406051904e-5, + 0.005042114295065403, + 0.023938903585076332, + -0.0036504771560430527, + -0.016946440562605858, + -0.008157873526215553, + 0.01074234303086996, + -0.020949967205524445, + 0.004586233291774988, + -0.003359124530106783, + 0.0007990774465724826, + 0.020771728828549385, + -0.014259140938520432, + 4.02484365622513e-5, + 0.010468129068613052, + 0.029478030279278755, + -0.005971014965325594, + -0.01451964396983385, + -0.0026615920942276716, + -0.022869467735290527, + 0.011983162723481655, + -0.005885323043912649, + 0.005336894653737545, + -0.012394484132528305, + -0.0062726507894694805, + -0.010317310690879822, + -0.014080901630222797, + -0.01043385174125433, + 0.033892881125211716, + 0.02709236741065979, + 0.06926652044057846, + -0.01149643212556839, + -0.025817271322011948, + 0.0026256013661623, + 0.015849582850933075, + -0.009206742979586124, + 0.011222218163311481, + -0.0029443753883242607, + 0.015328575856983662, + -0.0017875341000035405, + 0.01609637588262558, + 0.0069376202300190926, + -0.03139752894639969, + -0.006210952531546354, + -0.010392719879746437, + -0.045080821961164474, + -0.025392238050699234, + 0.024857521057128906, + -0.0024147990625351667, + -0.013840964064002037, + -0.010598380118608475, + 0.019798267632722855, + -0.01386838499456644, + -0.008055043406784534, + 0.0020428961142897606, + 0.015479394234716892, + -0.012874358333647251, + -0.032247595489025116, + -0.011139953508973122, + 0.0064371791668236256, + -0.0028364036697894335, + -0.013011465780436993, + 0.02118304930627346, + 0.00681422371417284, + 0.008774856105446815, + -0.006248657125979662, + 0.009947122074663639, + -0.009727749973535538, + 0.0010300172725692391, + 0.0013582174433395267, + -0.010269323363900185, + -0.014368826523423195, + -0.010865739546716213, + -0.0066839721985161304, + 0.006927337497472763, + 0.0029118123929947615, + -0.014080901630222797, + -0.014684172347187996, + -0.012641276232898235, + 0.007691709324717522, + -0.011379891075193882, + -0.007924791425466537, + -0.013511906377971172, + -0.037018921226263046, + 0.0420096218585968, + 0.023719532415270805, + -0.010810896754264832, + -0.002239987486973405, + -0.015534237027168274, + 0.015122915618121624, + -0.038664206862449646, + 0.003278573974967003, + -0.022869467735290527, + -0.011633539572358131, + -0.020305564627051353, + -0.004497113637626171, + -0.021594371646642685, + 0.009638630785048008, + -0.019647451117634773, + 0.017302919179201126, + 0.010372153483331203, + 0.008863975293934345, + -0.026543939486145973, + 0.005679662339389324, + -0.025707585737109184, + -0.02280091494321823, + 0.0012382486602291465, + -0.010852028615772724, + -0.0007519468781538308, + -0.014917254447937012, + -0.005748216062784195, + -0.027983563020825386, + 0.006653123069554567, + 0.04135150834918022, + 0.0023102550767362118, + 0.0014027772704139352, + -0.0061252606101334095, + -0.00415091821923852, + 0.00911076832562685, + -0.0012708116555586457, + 0.01937323622405529, + 0.03222017362713814, + -0.0011859765509143472, + -0.008624037727713585, + 0.006262367591261864, + -0.0015613073483109474, + 0.012654987163841724, + 0.011434733867645264, + 0.02363726682960987, + -0.02234846167266369, + -0.004493685904890299, + -0.027037523686885834, + -0.009816870093345642, + 0.06060134619474411, + -0.011530708521604538, + 0.005789348389953375, + 0.005837335716933012, + -0.029286080971360207, + -0.016206061467528343, + 0.010255612432956696, + -0.030766837298870087, + -0.0016332885716110468, + -0.0026256013661623, + 0.034084830433130264, + 0.03874647244811058, + 0.044888872653245926, + 0.00578249292448163, + -0.005857901647686958, + 0.0038355716969817877, + -0.02019587904214859, + -0.02463814988732338, + 0.012942912057042122, + -0.024665571749210358, + 0.02201940305531025, + -0.016973862424492836, + -0.0022656952496618032, + 0.02561161108314991, + -0.07359910011291504, + 0.01918128691613674, + -0.00405837083235383, + -0.0006842502043582499, + 0.029450610280036926, + -0.009645486250519753, + -0.007252966519445181, + -0.01676820032298565, + 0.008877686224877834, + -0.027805324643850327, + 0.023445317521691322, + -0.012181967496871948, + -0.0003468381764832884, + 0.0046067992225289345, + 0.018276378512382507, + 0.015328575856983662, + -0.006498877424746752, + 0.014684172347187996, + -0.001742117339745164, + 0.0003196309844497591, + 0.015479394234716892, + 0.009419259615242481, + -0.02149839699268341, + -0.007232400588691235, + -0.007040450815111399, + -0.00019344958127476275, + 0.037841565907001495, + -0.009837435558438301, + -6.195929927343968e-6, + 0.0011302768252789974, + -0.003126042429357767, + 0.008672025054693222, + -0.03748508542776108, + -0.006481739226728678, + 0.012332785874605179, + 0.029368344694375992, + 0.012682409025728703, + 0.01674078032374382, + 0.044258177280426025, + -0.023513872176408768, + -0.002899815561249852, + -0.0054020206443965435, + 0.0035510745365172625, + -0.000338054756866768, + 0.007746552117168903, + -0.023911481723189354, + -0.025364818051457405, + -0.0035613575018942356, + 0.009193032048642635, + -0.02317110262811184, + -0.018002165481448174, + 0.013080019503831863, + -0.024076011031866074, + -0.012332785874605179, + 0.01856430433690548, + 0.01759084314107895, + 0.00902850367128849, + -0.027791613712906837, + -0.02432280406355858, + -0.011386746540665627, + 0.017124678939580917, + 0.006265795323997736, + -0.012133980169892311, + 0.008171584457159042, + -0.005600825883448124, + 0.021731479093432426, + -0.010920582339167595, + 0.04779554158449173, + -0.007369507569819689, + 0.007129570469260216, + 0.04332584887742996, + -0.02513173595070839, + -0.011900898069143295, + -0.014012347906827927, + 0.008521207608282566, + 0.02953287400305271, + 0.01479385793209076, + -0.009309573099017143, + -0.029148973524570465, + -0.036031752824783325, + -0.04667126387357712, + -0.00919988751411438, + 0.014972097240388393, + 0.020278142765164375, + 0.0032957124058157206, + -0.012606999836862087, + -0.01706983707845211, + -0.01609637588262558, + -0.0009948835941031575, + -0.005216925870627165, + -0.01738518290221691, + -0.007458627223968506, + 0.01033102162182331, + -0.011057689785957336, + -0.004373717121779919, + 0.016014112159609795, + -0.026667334139347076, + 0.02562532015144825, + 0.015081783756613731, + -0.026351988315582275, + 0.011249639093875885, + 0.005268340930342674, + -0.018290089443325996, + -0.02136128954589367, + -0.010618946515023708, + -0.004113213624805212, + 0.007623156066983938, + 0.011187940835952759, + -0.0027541392482817173, + -0.012956622987985611, + -0.007815105840563774, + -0.02197827212512493, + -0.015246312133967876, + 0.02510431408882141, + -0.01624719426035881, + -0.010900015942752361, + 0.0075683132745325565, + -0.013265114277601242, + -0.04571151360869408, + -0.022389592602849007, + -0.02710607834160328, + 0.027819035574793816, + -0.018687700852751732, + 0.03002646006643772, + -0.02052493579685688, + 0.016973862424492836, + -0.013888951390981674, + 0.019441789016127586, + -0.0054911402985453606, + -0.016356879845261574, + -0.008041332475841045, + 0.009940266609191895, + 0.019016757607460022, + -0.011935174465179443, + -0.023020286113023758, + 0.006241801660507917, + -0.014985808171331882, + 0.018482040613889694, + 0.0436549074947834, + -0.021882295608520508, + -0.026379410177469254, + -0.010447562672197819, + -0.010824606753885746, + -0.011619828641414642, + -0.004671925213187933, + -0.001801244798116386, + -0.001263956306502223, + -0.0069958907552063465, + -0.005083246622234583, + -0.028545701876282692, + 0.0011928318999707699, + -0.02103223279118538, + 0.00039204067434184253, + -0.008480075746774673, + -0.0011688382364809513, + -0.006635984871536493, + 0.016617383807897568, + 0.023102549836039543, + 0.01787876896560192, + -0.01805700734257698, + -0.02166292443871498, + -0.038691628724336624, + 0.006862211506813765, + -0.003513369942083955, + 0.00701645715162158, + -0.023925192654132843, + -0.005847618915140629, + 0.0017198374262079597, + 0.03463326022028923, + 0.015657633543014526, + 0.022650096565485, + -0.0331525020301342, + 0.021649213507771492, + 0.01479385793209076, + 0.009583787992596626, + 0.00024036591639742255, + -0.006303499918431044, + -0.004284597467631102, + -0.034742943942546844, + 0.018523171544075012, + 0.017467446625232697, + 0.00415091821923852, + -0.005045542027801275, + 0.001322226831689477, + -0.0318911150097847, + 0.012524735182523727, + 0.02001763880252838, + -0.012846937403082848, + -0.025213999673724174, + 0.02725689485669136, + -0.0012416763929650187, + -0.012792094610631466, + -0.04107729345560074, + -0.01738518290221691, + 0.03381061553955078, + -0.01083146221935749, + -0.00837724469602108, + 0.007911080494523048, + 0.01608266495168209, + -0.014341404661536217, + 0.01166781596839428, + 0.012723540887236595, + 0.024994628503918648, + 0.01534228678792715, + -0.006063562352210283, + -0.03740282356739044, + 0.02082657255232334, + -0.003941829781979322, + -0.009549510665237904, + 0.014547065831720829, + -0.03394772484898567, + 0.00493242871016264, + -0.0014044910203665495, + 0.006351487245410681, + 0.017165811732411385, + -0.014382537454366684, + -0.028298910707235336, + 0.004181767348200083, + 0.007444916758686304, + 0.0023856637999415398, + 0.004075509030371904, + -0.007753407582640648, + -0.011297626420855522, + 0.003220303449779749, + -0.009343850426375866, + -0.017165811732411385, + -0.011043978855013847, + 0.009981398470699787, + -0.0051072402857244015, + -0.008898252621293068, + -0.023390475660562515, + -0.006430324167013168, + -0.01938694715499878, + 0.004534818232059479, + -0.022238774225115776, + -0.017330341041088104, + 0.021306445822119713, + -0.005988153629004955, + 0.01247674785554409, + 0.0020686036441475153, + -0.005940165836364031, + 0.00624522939324379, + -0.022554121911525726, + -0.007335231173783541, + -0.026146328076720238, + 0.0014439093647524714, + -0.0022382738534361124, + -0.0002564331516623497, + 0.0038595653604716063, + -0.015822160989046097, + -0.0037464520428329706, + -0.012085992842912674, + -0.0011277060257270932, + 0.002145726466551423, + 0.013429642654955387, + 0.00289638782851398, + 0.003595634363591671, + 0.028010984882712364, + -0.015397129580378532, + -0.005186076741665602, + 0.0031123317312449217, + -0.0009426114847883582, + -0.006413185503333807, + -0.0056830900721251965, + -0.014629329554736614, + 0.08209974318742752, + -0.02084028162062168, + 0.00022044254001230001, + 0.014505933038890362, + 0.016384301707148552, + -0.0024353652261197567, + -0.0009854574454948306, + 0.03814320266246796, + -0.010495549999177456, + -0.0008367819245904684, + -0.004380572587251663, + -0.021553238853812218, + -0.005720794666558504, + -0.02019587904214859, + -0.007252966519445181, + -0.004315446596592665, + 0.00028428304358385503, + -0.002702724188566208, + 0.022225065156817436, + 0.013491340912878513, + 0.02284204587340355, + 0.008473220281302929, + 0.010454418137669563, + 0.02415827475488186, + -0.0025810415390878916, + 0.003952112980186939, + -0.0007716559921391308, + -0.001164553570561111, + 0.01756342314183712, + 0.01807071827352047, + -0.0034516716841608286, + 0.03616885840892792, + -0.02070317603647709, + 0.007904225960373878, + -0.0011876904172822833, + 0.021800031885504723, + 0.0033059953711926937, + 0.016356879845261574, + 0.0187288336455822, + 0.03131526708602905, + 0.0025998938363045454, + -0.019592607393860817, + 0.0173988938331604, + -0.015109204687178135, + -0.0021097357384860516, + 0.0021902862936258316, + 0.0022297045215964317, + 2.8251564799575135e-5, + 0.004054943099617958, + 0.013285679742693901, + -0.016137508675456047, + -0.01611008681356907, + -0.0051243784837424755, + -0.002820979105308652, + -0.01033102162182331, + -0.00665655080229044, + 0.013566750101745129, + -0.005758499260991812, + -0.0021097357384860516, + 0.0062143802642822266, + -0.009912844747304916, + -0.0010960000799968839, + -0.030136145651340485, + -0.015863293781876564, + 0.01460190862417221, + -0.0055356998927891254, + -0.009378126822412014, + 0.006145826540887356, + 0.023363053798675537, + 0.010145926848053932, + 0.0034688101150095463, + 0.021429842337965965, + 0.004534818232059479, + -0.015081783756613731, + 0.000930614594835788, + 0.017865058034658432, + -0.0006773948553018272, + -0.017467446625232697, + 0.003523652907460928, + 0.003849282395094633, + -0.021594371646642685, + -0.0013556466437876225, + -0.00821957178413868, + -0.02380179613828659, + -0.006156109739094973, + 0.004894724115729332, + 0.013402220793068409, + -0.002596466103568673, + 0.009816870093345642, + -0.0017995309317484498, + -0.016960151493549347, + 0.006025857757776976, + 0.019414369016885757, + 0.008452653884887695, + -0.0051243784837424755, + 0.0014901830581948161, + -0.0017892479663714767, + -0.011174230836331844, + 0.006505732890218496, + -0.016302036121487617, + 0.0020120469853281975, + 0.0016521407524123788, + 0.000646974251139909, + -0.010906871408224106, + -0.006728531792759895, + -0.001861229189671576, + 0.019428079947829247, + 0.03005388006567955, + -0.0037190306466072798, + 0.02019587904214859, + 0.004809032194316387, + -0.013278824277222157, + -0.007232400588691235, + -0.033426716923713684, + -0.009103912860155106, + 0.02001763880252838, + 0.011784357018768787, + 0.007945357821881771, + -0.01486241165548563, + -0.024692991748452187, + 0.01593184657394886, + -0.024418778717517853, + 0.02465186081826687, + 0.010187058709561825, + -0.028326330706477165, + -0.016823044046759605, + -0.004024093970656395, + -0.00953580066561699, + -0.016713358461856842, + 0.000303563749184832, + 0.017440026625990868, + -0.0010780047159641981, + 0.007232400588691235, + 0.005727650132030249, + -0.00554255535826087, + -0.005909316707402468, + -0.005223781336098909, + -0.008802277036011219, + 0.02285575680434704, + -0.022101668640971184, + -0.010049952194094658, + 0.009816870093345642, + -0.01905789040029049, + -0.0009940266609191895, + 0.017769083380699158, + 0.006766236387193203, + 0.013861529529094696, + -0.0028432589024305344, + 0.024830099195241928, + 0.029779667034745216, + 0.008493785746395588, + -0.0033454138319939375, + 0.007917935959994793, + -0.0036093450617045164, + -0.0063446322456002235, + 0.0012433902593329549, + -0.022403303533792496, + 0.001578445779159665, + 0.009378126822412014, + -0.008109886199235916, + -0.003941829781979322, + 0.012737251818180084, + -0.0014070618199184537, + 0.008144162595272064, + -0.01091372687369585, + 0.021594371646642685, + 0.01263442076742649, + 0.02152581885457039, + 0.011852910742163658, + 0.015479394234716892, + -0.015643922612071037, + 0.029834508895874023, + 0.0017026991117745638, + -0.011763790622353554, + -0.007109004072844982, + -0.012243665754795074, + 0.010248756967484951, + 0.01305945310741663, + -0.025008339434862137, + 0.004174911882728338, + 0.015890715643763542, + 0.00250563258305192, + 0.009905989281833172, + -0.001960631925612688, + 0.017618265002965927, + -0.00976202730089426, + 0.006989035289734602, + -0.02925865910947323, + 0.005374599248170853, + 0.019016757607460022, + -0.01238762866705656, + 0.013566750101745129, + -0.010694355703890324, + -0.004689063411206007, + -0.0020326131489127874, + 0.0019794839899986982, + -0.0033762629609555006, + 0.025570478290319443, + -0.01855059340596199, + 0.013649013824760914, + -0.005974442698061466, + 0.009405548684298992, + -0.0019537764601409435, + -0.005854473914951086, + 0.0007360938470810652, + -0.017357761040329933, + -0.01937323622405529, + -0.004575950093567371, + -0.007355797104537487, + 0.009261585772037506, + -0.05119580030441284, + -0.009295863099396229, + 0.023870348930358887, + -0.0031397531274706125, + -0.023225946351885796, + 0.03726571425795555, + 0.0011439875233918428, + -0.013409076258540154, + 0.02906670980155468, + -0.008850264362990856, + -0.006721676792949438, + 0.006989035289734602, + 0.025172866880893707, + -0.020127326250076294, + 0.009768882766366005, + 0.021073363721370697, + 0.00636519817635417, + 0.004068654030561447, + 0.011359324678778648, + 0.0010591525351628661, + 0.028490860015153885, + -0.010474983602762222, + -0.016192350536584854, + -0.0023462455719709396, + 0.010543537326157093, + 0.022938020527362823, + 0.02067575417459011, + -0.034715522080659866, + -0.0003926833742298186, + -0.007074727676808834, + -0.006162965204566717, + 0.01403291430324316, + 0.008082464337348938, + 0.007232400588691235, + 0.01255901250988245, + 0.016480276361107826, + 0.005347177851945162, + -0.00039311181171797216, + -0.006042996421456337, + -1.7580239727976732e-5, + 0.0076848543249070644, + -0.00912447925657034, + -0.01002253033220768, + 0.021306445822119713, + 0.014218008145689964, + 0.0045896610245108604, + 0.005809914320707321, + -0.0223347507417202, + 0.008555484004318714, + 0.0009777451632544398, + -0.011839199811220169, + 0.012106559239327908, + 0.012511025182902813, + -0.0027558531146496534, + 0.015534237027168274, + 0.007191268727183342, + -0.005100384820252657, + -0.008171584457159042, + -0.008438942953944206, + 0.0007862236234359443, + 0.003869848558679223, + 0.008932529017329216, + 0.007362652570009232, + 0.002927236957475543, + -0.016507698222994804, + 0.0036676155868917704, + 0.02333563193678856, + 0.014574486762285233, + 0.005724222399294376, + 0.004575950093567371, + -0.016041534021496773, + -0.006180103402584791, + -0.009912844747304916, + -0.025076892226934433, + 0.004894724115729332, + -0.02727060578763485, + -0.018852228298783302, + -0.0004507396661210805, + 0.005398592911660671, + -0.011571841314435005, + 0.00993341114372015, + -0.012812660075724125, + 0.020483803004026413, + 0.0013599313097074628, + 0.0032065927516669035, + 0.005508278496563435, + 0.013594171032309532, + 0.01033102162182331, + 0.008809132501482964, + 0.018646568059921265, + 0.005038686562329531, + -0.010817752219736576, + -0.014999519102275372, + -0.01772795058786869, + 0.011043978855013847, + 0.00661541847512126, + 0.000940040685236454, + -0.019647451117634773, + 0.0059950090944767, + 0.005388309713453054, + -0.0010608664015308022, + -0.006341204512864351, + 0.0020017640199512243, + 0.005744788330048323, + 0.015314865857362747, + -0.005484284833073616, + 0.003194595919921994, + 0.0036744708195328712, + -0.006234946195036173, + -0.005120950751006603, + -0.010049952194094658, + 0.008850264362990856, + 0.006351487245410681, + 0.0010917154140770435, + 0.02217022143304348, + 0.004569094628095627, + 0.027832746505737305, + 0.029368344694375992, + 0.007938502356410027, + -0.003770445939153433, + 0.001322226831689477, + 0.0043840003199875355, + -0.003151749959215522, + -0.016014112159609795, + 0.007342086173593998, + 0.011434733867645264, + -0.010043096728622913, + -0.0005565691972151399, + -0.016164928674697876, + 0.011503287591040134, + -0.013971216045320034, + 0.0021320157684385777, + 0.00401723850518465, + -0.003278573974967003, + -0.004277742002159357, + 0.04338069260120392, + -6.710751040372998e-5, + -0.014643040485680103, + 0.0050901020877063274, + 0.00861718226224184, + 0.006252084858715534, + 0.0032048788852989674, + 0.0066257016733288765, + -0.011516998521983624, + -0.0045313904993236065, + -0.004846736788749695, + -0.011187940835952759, + 0.00904221460223198, + 0.012401338666677475, + 0.0069067711010575294, + -0.016836754977703094, + 0.02166292443871498, + -0.014848701655864716, + -0.010632657445967197, + 0.006114977411925793, + -0.00928215216845274, + -0.00034919471363537014, + 0.036223702132701874, + -0.004702774342149496, + 0.015698764473199844, + 0.009275296702980995, + -0.03019098751246929, + 0.012202533893287182, + -0.015260022133588791, + -6.951759860385209e-5, + -0.01627461612224579, + 0.007451772224158049, + -0.0008474934147670865, + 0.0021611510310322046, + 8.317475294461474e-5, + 0.0368269719183445, + 0.004099502693861723, + -0.008020767010748386, + -0.009384982287883759, + 0.02972482331097126, + 0.011510143056511879, + -0.001998336287215352, + 0.00025107740657404065, + 0.004339440260082483, + 0.005645385943353176, + 0.0003614058077801019, + 0.023404184728860855, + 0.03005388006567955, + -0.006587997078895569, + 0.002497063484042883, + -0.02728431671857834, + 0.010852028615772724, + 6.903558096382767e-5, + 0.007424350827932358, + -0.008809132501482964, + -0.004277742002159357, + 0.0018560877069830894, + -0.0016170070739462972, + 0.021635504439473152, + -0.01355303917080164, + 0.017467446625232697, + 0.012175112031400204, + 0.037841565907001495, + 0.018303800374269485, + 0.009837435558438301, + 0.0013436498120427132, + 0.009768882766366005, + -0.013587315566837788, + -0.006046424154192209, + -0.010543537326157093, + -0.004785038530826569, + 0.03674471005797386, + 0.002985507482662797, + 0.022883178666234016, + 0.014245430007576942, + 0.003066058037802577, + 0.008137308061122894, + 0.0002538624103181064, + -0.012661842629313469, + 0.0038355716969817877, + 0.018769964575767517, + 0.017316630110144615, + -0.0004164628917351365, + -0.008898252621293068, + 0.026146328076720238, + -0.008678880520164967, + -0.03370093181729317, + 0.015493104234337807, + 0.007924791425466537, + -0.027352871373295784, + -0.0003641907824203372, + 0.021045943722128868, + -0.025995509698987007, + 0.009419259615242481, + 0.01918128691613674, + -0.013409076258540154, + -0.00945353601127863, + 0.007671143393963575, + 0.01972971484065056, + -0.00608412828296423, + 0.005285479594022036, + -0.013004610314965248, + 0.0060738455504179, + -0.006046424154192209, + -0.013155428692698479, + -0.011537563987076283, + 0.02299286425113678, + 0.0038218609988689423, + 0.007828816771507263, + 0.00023115403018891811, + 0.005264913663268089, + -0.015150336548686028, + 0.003215162083506584, + 0.0047541894018650055, + -0.008322401903569698, + 0.02136128954589367, + 0.014176876284182072, + 0.0032871433068066835, + -0.004452553577721119, + 0.005518561694771051, + 0.0012553870910778642, + 0.0201821681112051, + 0.008212716318666935, + 0.004750761669129133, + 0.007883659563958645, + -0.0076848543249070644, + 0.0049769883044064045, + 0.02199198305606842, + -0.0007965067052282393, + 0.007575168274343014, + 0.027654506266117096, + -0.009878568351268768, + 0.0017026991117745638, + 0.015630211681127548, + -0.023582424968481064, + 0.005936738569289446, + -0.007911080494523048, + 0.008720013312995434, + -0.0010248756734654307, + 0.00418862234801054, + 0.010598380118608475, + -0.02330821007490158, + 0.016151219606399536, + 0.011187940835952759, + 0.016370590776205063, + -0.009960832074284554, + 0.008013911545276642, + -0.010310455225408077, + 0.011866621673107147, + -0.011852910742163658, + 0.0013530758442357183, + 0.014958387240767479, + 0.030602309852838516, + -0.0024130854289978743, + -0.0023393903393298388, + 0.003126042429357767, + -0.007115859538316727, + -0.01791989989578724, + 0.002642739797011018, + 0.002224563155323267, + 0.010159637778997421, + -0.005854473914951086, + -0.00020137608225923032, + -0.0010497263865545392, + -0.004630792886018753, + 0.0060669900849461555, + -0.0051243784837424755, + 0.001342792878858745, + 0.005768781993538141, + -0.019153865054249763, + 0.006786802317947149, + 0.004486830439418554, + 0.020456383004784584, + 0.028298910707235336, + 0.00476104486733675, + -0.00021722909878008068, + 0.0010994276963174343, + 5.307545143296011e-5, + -0.014752726070582867, + 0.004877585917711258, + 0.006241801660507917, + 0.015301154926419258, + 0.0037190306466072798, + -0.002474783454090357, + 0.0032031650189310312, + -0.020483803004026413, + 0.02119676023721695, + -0.009398693218827248, + -0.008802277036011219, + -0.01108511071652174, + 0.004887868650257587, + 0.015479394234716892, + -0.009576932527124882, + 0.017961032688617706, + 0.007115859538316727, + -0.009172466583549976, + 0.002205710858106613, + 0.012984043918550014, + 0.006042996421456337, + -0.021388711407780647, + -0.0017172667430713773, + -0.02674959972500801, + 0.0036744708195328712, + 0.0010531541192904115, + 0.001850946107879281, + -0.016809333115816116, + 0.008185295388102531, + 0.02806582860648632, + 0.02085399255156517, + 0.026064064353704453, + -0.0032871433068066835, + -0.009618064388632774, + -0.004054943099617958, + 0.0041954778134822845, + -0.019770847633481026, + -0.0035270806401968002, + -0.018468329682946205, + -0.007129570469260216, + 0.0037156029138714075, + -0.02134757861495018, + 0.001732691191136837, + -1.863799843704328e-5, + 0.005988153629004955, + -0.006039568688720465, + 0.005587115418165922, + -0.005525417160242796, + -0.010570959188044071, + -0.011441589333117008, + -0.000979459029622376, + -0.006094411481171846, + 0.01264813169836998, + 0.010221336036920547, + -0.01247674785554409, + -0.009919700212776661, + -0.0168915968388319, + 0.000695390161126852, + -0.014218008145689964, + -0.0103447325527668, + 0.009069636464118958, + -0.015232601203024387, + 0.004534818232059479, + -0.007849382236599922, + 0.0034413887187838554, + -0.0037567350082099438, + 0.0037156029138714075, + 0.02200569212436676, + -0.007314664777368307, + -0.013690145686268806, + -0.0026975825894623995, + 0.0027267178520560265, + 0.0024028022307902575, + -0.011441589333117008, + -0.014629329554736614, + -0.015081783756613731, + -0.015383418649435043, + -0.0009366130107082427, + -0.002555334009230137, + -0.0006002720911055803, + 0.019290972501039505, + 0.004281169734895229, + 0.003516797674819827, + 0.020620910450816154, + -0.01627461612224579, + -0.005450007971376181, + -0.018605437129735947, + -0.0036162002943456173, + 0.014656751416623592, + -0.016548829153180122, + -0.018961915746331215, + 0.008315546438097954, + -0.00035219392157159746, + 0.013388510793447495, + 0.012682409025728703, + 0.047027744352817535, + -0.011798067949712276, + -0.0075683132745325565, + -0.016164928674697876, + -0.010152782313525677, + 0.00301635661162436, + 0.004318874329328537, + 0.0029992181807756424, + -0.027846455574035645, + 0.0013359375298023224, + 0.0011996873654425144, + -0.015328575856983662, + -0.019798267632722855, + 0.007924791425466537, + 0.016493987292051315, + -0.024363934993743896, + -0.0008025051211006939, + -0.03021840937435627, + -0.011160519905388355, + -0.0021868585608899593, + 0.016535118222236633, + -0.007081582676619291, + 0.01451964396983385, + -0.018015876412391663, + -0.0001037943729897961, + -0.0005150086362846196, + 0.0013093729503452778, + -0.00014042768452782184, + 0.02052493579685688, + 0.0003241297963541001, + -0.014026058837771416, + 0.009755171835422516, + -0.002898101694881916, + 0.0025913245044648647, + -0.011839199811220169, + 0.007794539909809828, + 0.020799150690436363, + -0.010283034294843674, + -0.012175112031400204, + -0.026996392756700516, + 0.0029923629481345415, + -0.02363726682960987, + 0.008068754337728024, + -0.01100284606218338, + -0.024994628503918648, + -0.0010925723472610116, + -0.014327693730592728, + -0.012442471459507942, + 0.02607777528464794, + 0.005395165178924799, + 0.0015741611132398248, + 0.008877686224877834, + -0.014231719076633453, + 0.0018440907588228583, + -0.010893160477280617, + 0.002428509993478656, + -0.003866420825943351, + -0.03515426442027092, + -0.0064371791668236256, + 0.0015236028702929616, + 0.011969451792538166, + -0.044422708451747894, + 0.005707083735615015, + -0.007431205827742815, + -0.03413967415690422, + -0.023897770792245865, + -1.6549258361919783e-5, + 0.0070678722113370895, + 0.0003984675568062812, + 0.010269323363900185, + -0.01672706939280033, + -0.015479394234716892, + -0.016946440562605858, + -0.013155428692698479, + 0.012600144371390343, + 0.003429391887038946, + 0.012099703773856163, + 0.011695237830281258, + -0.015369708649814129, + -0.014697883278131485, + -0.007410639896988869, + 0.001969201024621725, + -0.02134757861495018, + -0.003612772561609745, + -0.015451972372829914, + -0.0290392879396677, + 0.0011131383944302797, + -0.032110486179590225, + -0.008404666557908058, + -0.01092743780463934, + 0.012675553560256958, + -0.0048261708579957485, + 0.0018372354097664356, + 0.0009897419949993491, + -0.019304683431982994, + -0.000880913226865232, + -0.009432969614863396, + -0.004661642014980316, + 0.02281462587416172, + -0.01345706358551979, + -0.005768781993538141, + -0.009515234269201756, + -0.008068754337728024, + 0.009775737300515175, + -0.014313983730971813, + -0.0026324568316340446, + 0.0049598501063883305, + -0.01623348332941532, + -0.011770646087825298, + 0.019428079947829247, + -0.02281462587416172, + 0.0037430243100970984, + 0.010337877087295055, + 0.011421022936701775, + 0.011592406779527664, + -0.0019640594255179167, + 0.004462836775928736, + -0.008007056079804897, + 0.011811778880655766, + 0.01216140203177929, + 0.0021080218721181154, + 0.008596616797149181, + 0.013580460101366043, + 0.004442270845174789, + -0.009432969614863396, + 0.014409958384931087, + 0.021087074652314186, + -0.007177557796239853, + -0.013518761843442917, + 0.001940065762028098, + -0.018358644098043442, + 0.0019057890167459846, + -0.0008449226152151823, + -0.0168915968388319, + 0.016535118222236633, + 0.0026564504951238632, + -0.010310455225408077, + -0.01084517315030098, + 0.008473220281302929, + -0.005340322386473417, + 0.007849382236599922, + -0.00018777248624246567, + 0.0006276935455389321, + -0.008863975293934345, + -0.0012073995312675834, + 0.013086874969303608, + -0.015328575856983662, + 0.0034482441842556, + 0.004723340272903442, + -0.010468129068613052, + 0.0004717341798823327, + -0.01058467011898756, + 0.00926844123750925, + -0.01887965016067028, + -0.00256561697460711, + 0.005158655345439911, + 0.005234064534306526, + -0.004726768005639315, + -0.013518761843442917, + -0.0029700829181820154, + 0.010139071382582188, + 0.024514753371477127, + -0.005018120631575584, + 0.027791613712906837, + -0.011064544320106506, + 0.013751843944191933, + -0.025652742013335228, + -0.020908836275339127, + 0.02956029586493969, + 0.002320538042113185, + 0.023678399622440338, + -0.004929000977426767, + 0.019949086010456085, + 0.001234821043908596, + -0.011283916421234608, + -0.013971216045320034, + 0.021457264199852943, + 0.00342767802067101, + 0.010283034294843674, + -0.0011225645430386066, + -0.01271668542176485, + -0.0013633589260280132, + 0.007129570469260216, + 0.014876122586429119, + 0.003993244841694832, + -0.015808451920747757, + -0.001163696637377143, + 0.03732055798172951, + -0.021937139332294464, + 0.0007686567842029035, + 0.010824606753885746, + 0.00804818794131279, + -0.00037083192728459835, + 0.006872494239360094, + -0.006577714346349239, + 0.009967687539756298, + 0.01772795058786869, + 0.011537563987076283, + -0.0023942331317812204, + -0.016137508675456047, + 0.010317310690879822, + 0.024692991748452187, + -0.001970914890989661, + 0.019935375079512596, + 0.00986485742032528, + -0.0032271589152514935, + -0.004301736131310463, + -0.0021577232982963324, + -0.01156498584896326, + -0.0049735610373318195, + 0.010166493244469166, + -0.006396047305315733, + -0.0029632276855409145, + -0.014670462347567081, + -0.0073489416390657425, + 0.021073363721370697, + -0.012271087616682053, + -0.030245831236243248, + -0.01460190862417221, + 0.012044860981404781, + -0.008000200614333153, + -0.010221336036920547, + 0.0031757436227053404, + -0.020799150690436363, + 0.020895125344395638, + -0.005443152505904436, + -0.007163846865296364, + -0.015410840511322021, + 0.015040650963783264, + 0.0034636687487363815, + -0.01257272344082594, + -0.011133098043501377, + -0.011462155729532242, + 0.001970914890989661, + 0.0010805755155161023, + 0.0032374418806284666, + -0.025159155949950218, + 0.013731278479099274, + 0.003791011869907379, + 0.00895309541374445, + -0.009796303696930408, + -0.004788466263562441, + -0.01953776553273201, + -0.0015227459371089935, + 0.02248556725680828, + 0.018660278990864754, + 0.014547065831720829, + -0.005487712565809488, + 0.010461273603141308, + -0.0026307429652661085, + -0.0023171103093773127, + -0.006019002757966518, + -0.01609637588262558, + -0.011400457471609116, + -0.007009601686149836, + 0.01874254271388054, + 0.0028072684071958065, + -0.0037258861120790243, + 0.015698764473199844, + -0.0006238374044187367, + -0.021758900955319405, + 0.007725986186414957, + -0.013902662321925163, + -0.008678880520164967, + 0.014725305140018463, + 0.006526298820972443, + -0.015602790750563145, + -0.009508378803730011, + 0.03545590117573738, + -0.010653222911059856, + -0.01255901250988245, + 0.00722554512321949, + -0.005007837433367968, + 0.013738133944571018, + 0.007177557796239853, + -0.0037258861120790243, + 0.0010300172725692391, + -0.012682409025728703, + -0.003213448217138648, + 0.006917054299265146, + -0.0045313904993236065, + -0.01142787840217352, + 0.003869848558679223, + -0.0077739739790558815, + -0.005203215405344963, + -0.02857312373816967, + -0.03677212819457054, + -0.0058304802514612675, + -0.041982199996709824, + -0.0005051540210843086, + -0.0019314965466037393, + 0.01051611639559269, + 0.009227309376001358, + 0.013169138692319393, + 0.007294098846614361, + 0.002449075924232602, + 0.00031663174740970135, + 0.007520325481891632, + -0.0006392619688995183, + 0.003924691118299961, + -0.02791501022875309, + -0.03041035868227482, + 0.0005197216523811221, + 0.005926455371081829, + -0.023239657282829285, + 0.003965823445469141, + -0.02248556725680828, + -0.015657633543014526, + -0.0032939985394477844, + 0.009672907181084156, + 0.003681326285004616, + -0.011900898069143295, + 0.014341404661536217, + 0.01321027148514986, + -0.009823725558817387, + -0.009378126822412014, + -0.01075605396181345, + -0.0086994469165802, + 0.007335231173783541, + -0.04628736525774002, + 0.009720894508063793, + 0.0037773011717945337, + 0.018523171544075012, + 0.002495349617674947, + -0.014355115592479706, + -0.01609637588262558, + -0.011078255251049995, + 0.010564103722572327, + -0.01331310160458088, + -0.012367062270641327, + 0.010036241263151169, + 0.015712475404143333, + 0.005114095751196146, + 0.007582023739814758, + 0.014396247453987598, + -0.0012888069031760097, + -0.000695390161126852, + 0.010036241263151169, + 0.011681526899337769, + -0.015520526096224785, + 0.006358342710882425, + -0.001234821043908596, + -0.0012065427144989371, + -0.007952213287353516, + 0.008493785746395588, + 0.013114295899868011, + -0.01937323622405529, + -0.012936056591570377, + -0.00022451291442848742, + 0.008178439922630787, + -0.002954658353701234, + -0.018509460613131523, + 0.003554502036422491, + 0.006228091195225716, + -0.0019554903265088797, + 0.026639914140105247, + 0.031150737777352333, + 0.03268633782863617, + -0.008610326796770096, + -0.0013539327774196863, + -0.027654506266117096, + 0.0033231338020414114, + -0.001292234635911882, + -0.02380179613828659, + 0.022238774225115776, + -0.00383899942971766, + 0.009302718564867973, + 0.018262669444084167, + 0.008555484004318714, + 0.004216043744236231, + 0.019674871116876602, + -0.0075546023435890675, + 0.004212616477161646, + -0.005573404487222433, + 0.009480957873165607, + -0.01535599771887064, + -0.016370590776205063, + -0.01970229297876358, + 0.030821681022644043, + 0.0246107280254364, + 0.0005595684633590281, + 0.001048012520186603, + 0.012038005515933037, + 0.020566068589687347, + 0.00911076832562685, + 0.020168457180261612, + 0.012908635661005974, + -0.00871315784752369, + -0.01247674785554409, + 0.004767900332808495, + -0.01937323622405529, + 0.010557248257100582, + -0.004315446596592665, + 0.013463919050991535, + -0.0420096218585968, + -0.021279025822877884, + -0.02263638563454151, + 0.018482040613889694, + 0.010783474892377853, + 0.01386838499456644, + -0.004226326942443848, + 0.017700528725981712, + 0.0030831964686512947, + 0.008007056079804897, + -0.016137508675456047, + -0.01314171776175499, + -0.0003976106527261436, + -0.009049070067703724, + 0.013998636975884438, + -0.029286080971360207, + 0.010694355703890324, + -0.026160039007663727, + 0.01542455144226551, + 0.0011799781350418925, + 0.020278142765164375, + -0.011139953508973122, + -0.007232400588691235, + 0.00047473341692239046, + -0.013134862296283245, + 0.01754971221089363, + 0.0005145801696926355, + 0.0002969226043205708, + 0.00446969224140048, + 0.015589079819619656, + -0.02925865910947323, + 0.015890715643763542, + 0.010358442552387714, + -0.009528945200145245, + 0.0032545803114771843, + 0.0046787806786596775, + 0.0024645004887133837, + 0.006766236387193203, + -0.023267079144716263, + -0.03361866623163223, + 0.003921263851225376, + 0.016713358461856842, + 0.03551074489951134, + -0.0046787806786596775, + 0.0007806536741554737, + -0.013004610314965248, + 0.02166292443871498, + 0.015506815165281296, + 0.00168384681455791, + 0.004185195080935955, + -0.0146156195551157, + -0.03334445133805275, + 0.007342086173593998, + -0.012497314251959324, + -0.008486931212246418, + 0.04039175808429718, + -0.009823725558817387, + -0.011674671433866024, + -0.010564103722572327, + 0.02695525996387005, + 0.0014944676076993346, + 0.0007947928388603032, + -1.6924161172937602e-5, + 0.008651459589600563, + 0.023116260766983032, + -0.0011894042836502194, + -0.011544419452548027, + 0.009474102407693863, + 0.008672025054693222, + 0.011139953508973122, + -0.009810014627873898, + -0.0002834261395037174, + 0.003523652907460928, + -0.03575753793120384, + 0.009947122074663639, + 0.009131334722042084, + -0.016535118222236633, + -0.020250720903277397, + -0.017659397795796394, + -0.022773493081331253, + 0.01988053321838379, + 0.019770847633481026, + -0.001880081370472908, + -0.0016769914655014873, + 0.013093730434775352, + 0.002416512928903103, + 0.024830099195241928, + -0.011770646087825298, + 0.006817651446908712, + 0.015328575856983662, + 0.0035716404672712088, + 0.007904225960373878, + 0.0018629430560395122, + 0.019318392500281334, + 0.005408876109868288, + -0.009206742979586124, + -0.026571359485387802, + 0.010056807659566402, + -0.013477629981935024, + 0.0013496482279151678, + -7.364151679212227e-5, + 0.009076490998268127, + 0.00303692277520895, + -0.013786121271550655, + -0.02152581885457039, + 0.004863874986767769, + 0.025364818051457405, + 0.027394002303481102, + -0.002908384893089533, + -0.0149309653788805, + 0.03230243921279907, + -0.02958771586418152, + 0.0033728352282196283, + 0.004418277181684971, + -0.004795321729034185, + -0.02722947485744953, + 0.017344050109386444, + 0.0007780829328112304, + 0.0177142396569252, + 0.020799150690436363, + 0.0024799250531941652, + 0.015822160989046097, + 0.007623156066983938, + -0.006060134619474411, + 0.010379008948802948, + 0.004994126968085766, + 0.00750661501660943, + 0.026859285309910774, + -0.000724525423720479, + 0.027325449511408806, + 0.023280790075659752, + 0.006498877424746752, + -0.013052597641944885, + 0.013943794183433056, + 0.001595584093593061, + -0.004483402706682682, + -0.008157873526215553, + -0.0027095794212073088, + 0.0005454292404465377, + -0.012593288905918598, + -0.00010491908324183896, + 0.013148573227226734, + -0.059339962899684906, + -0.015877004712820053, + -0.029148973524570465, + 0.0016144363908097148, + -0.0071844132617115974, + 0.022896889597177505, + 0.027174631133675575, + -0.01789247989654541, + 0.006670261267572641, + 0.0072735329158604145, + 0.005964159965515137, + 0.01026246789842844, + -0.001998336287215352, + -0.003849282395094633, + -0.013463919050991535, + -0.0008860547677613795, + -0.016493987292051315, + -0.009220453910529613, + -0.0009948835941031575, + -0.012929201126098633, + 0.009076490998268127, + 0.01101655699312687, + 0.01238762866705656, + 0.020936258137226105, + 0.017316630110144615, + -0.024926073849201202, + -0.02251298911869526, + -0.013854674994945526, + 0.003948685247451067, + 0.0013984926044940948, + 0.015438261441886425, + 0.019578896462917328, + -0.01182548888027668, + -0.0024610727559775114, + 0.008199005387723446, + -0.0042708870023489, + 0.017138389870524406, + -0.010536681860685349, + -0.010221336036920547, + 0.010495549999177456, + -0.011091966181993484, + -0.007047305814921856, + -0.0064063300378620625, + 0.01166781596839428, + 0.018454618752002716, + -7.508756971219555e-5, + -0.04664384201169014, + 0.02121047116816044, + 0.019990218803286552, + -0.018852228298783302, + -0.026968970894813538, + -0.003319706069305539, + 0.008877686224877834, + -0.005364316049963236, + -0.005186076741665602, + -0.004061798565089703, + 0.014629329554736614, + 0.004963277839124203, + -0.009858001954853535, + -0.009117623791098595, + 0.008432087488472462, + 0.020250720903277397, + -0.03995301574468613, + -0.011688382364809513, + 0.00961120892316103, + 0.015109204687178135, + 0.012209389358758926, + 0.013306246139109135, + 0.01108511071652174, + -0.004630792886018753, + -0.0004923002561554313, + 0.006190386600792408, + 0.0029889352153986692, + -0.0179061908274889, + 0.012415049597620964, + 0.00904221460223198, + 0.0206894651055336, + 0.010214480571448803, + -0.0315072163939476, + -0.006663406267762184, + -0.006546865217387676, + -0.006296644452959299, + -0.013840964064002037, + -0.008610326796770096, + -0.024405067786574364, + -0.006262367591261864, + -0.004243465606123209, + 0.035730116069316864, + 0.0018989336676895618, + -0.005206643138080835, + -0.025213999673724174, + 0.007883659563958645, + 0.0008877686341293156, + -0.016178639605641365, + 0.0022759782150387764, + 0.0113250482827425, + 0.010036241263151169, + -0.020442672073841095, + -0.0024507897906005383, + -0.004154345951974392, + 0.021964561194181442, + -8.778068877290934e-5, + 0.010118505917489529, + -0.022087957710027695, + 0.0015981548931449652, + 0.008726867847144604, + -0.03435904532670975, + 0.027832746505737305, + -0.014711594209074974, + 0.0058441911824047565, + -0.004925573244690895, + -0.017206944525241852, + -0.011098821647465229, + -0.015972979366779327, + 0.004877585917711258, + -0.011784357018768787, + 0.0013333667302504182, + 0.027723059058189392, + -0.0017061267280951142, + 0.027709349989891052, + 0.00299750454723835, + -0.0061081224121153355, + 0.02345902845263481, + 0.01377926580607891, + 0.0033762629609555006, + 0.007787684444338083, + 0.016493987292051315, + 0.0009443252929486334, + -0.010900015942752361, + 0.001282808487303555, + -0.00619381433352828, + 0.007499759551137686, + 0.036881815642118454, + -0.018523171544075012, + 0.010468129068613052, + -0.023280790075659752, + -0.024213118478655815, + -0.029642559587955475, + -0.0052512027323246, + -0.011009701527655125, + -0.012586433440446854, + 0.006241801660507917, + -0.012606999836862087, + -0.009247875772416592, + 0.004867302719503641, + 0.002920381724834442, + -0.022225065156817436, + 0.0018235247116535902, + 0.014423669315874577, + -0.0005102955619804561, + -0.004788466263562441, + 0.006574286613613367, + 0.013601026497781277, + 0.0008055043290369213, + -0.023842928931117058, + 0.000852206430863589, + 0.015972979366779327, + -0.0029066710267215967, + 0.006947903428226709, + -0.0024542175233364105, + 0.0007412353879772127, + 0.00652287108823657, + -0.017481157556176186, + -0.004000100307166576, + -0.006697682663798332, + -0.021800031885504723, + 9.061923628905788e-5, + 0.017028704285621643, + 0.0048261708579957485, + -0.007821961306035519, + 0.006958186626434326, + -0.004407993983477354, + -0.027366582304239273, + -0.006005291827023029, + 0.01823524758219719, + 0.010680644772946835, + -0.019153865054249763, + 0.005676234606653452, + -0.0070678722113370895, + 0.004455981310456991, + -0.023513872176408768, + -0.008822843432426453, + -0.006649695336818695, + 0.006450890097767115, + -0.01206542644649744, + 0.008418377488851547, + 0.001792675582692027, + 0.014999519102275372, + 0.015232601203024387, + -0.0024919218849390745, + -0.006533154286444187, + 0.0206894651055336, + 0.001322226831689477, + 0.015136626549065113, + 0.00969347357749939, + 0.0113250482827425, + 0.004462836775928736, + -0.01405347976833582, + -0.005820197518914938, + -0.021306445822119713, + 0.02281462587416172, + -0.01691901870071888, + 0.009981398470699787, + 0.012785239145159721, + 0.009810014627873898, + -0.0010240188566967845, + -0.011462155729532242, + -0.0020446099806576967, + -0.0070678722113370895, + 0.026639914140105247, + -0.022211354225873947, + -0.004216043744236231, + -0.005223781336098909, + -0.00976202730089426, + -0.002798699075356126, + 0.0055494108237326145, + 0.012737251818180084, + -0.00911076832562685, + 0.024226827546954155, + -0.015026940032839775, + 0.009686618112027645, + 0.00902850367128849, + -0.009768882766366005, + -0.015561657957732677, + 0.02020958997309208, + -0.002596466103568673, + 0.0037156029138714075, + -0.010900015942752361, + -0.04269515722990036, + 0.008665170520544052, + 0.0034105395898222923, + 0.009556366130709648, + 0.0020051917526870966, + 0.002850114367902279, + -0.0046067992225289345, + -0.01027617882937193, + -0.006886205170303583, + -0.013066308572888374, + -0.010687500238418579, + -0.012689264491200447, + -0.003921263851225376, + -0.016795622184872627, + -0.002203996991738677, + 0.015081783756613731, + -0.018948204815387726, + 0.025735005736351013, + 0.012127124704420567, + -0.014341404661536217, + 0.0044731199741363525, + 0.007561457809060812, + 0.009570077061653137, + -0.002644453663378954, + 0.00014256998838391155, + 0.011846055276691914, + 0.05256687104701996, + 0.002116591203957796, + -0.019592607393860817, + -0.002239987486973405, + -0.01255901250988245, + 0.020771728828549385, + -0.003184312954545021, + 0.0008963377913460135, + -0.01573989726603031, + -0.0011782642686739564, + 0.01955147460103035, + 0.007540891878306866, + -0.018166692927479744, + -0.024583306163549423, + 0.012812660075724125, + -0.022087957710027695, + -0.0015750180464237928, + -0.004733623471111059, + -0.01856430433690548, + 0.018125561997294426, + 0.01041328627616167, + 0.009234164841473103, + 0.02561161108314991, + -0.0021303019020706415, + -0.009830581024289131, + -0.007355797104537487, + -0.018961915746331215, + 0.01608266495168209, + 0.02595437876880169, + -0.02236217074096203, + -0.011469010263681412, + -0.020168457180261612, + -0.0162609051913023, + 0.014752726070582867, + 0.0075546023435890675, + -0.009357561357319355, + 0.0023033996112644672, + 0.005227209068834782, + -0.0157536081969738, + 0.004747333936393261, + -0.006851928308606148, + 0.0020891698077321053, + 0.015479394234716892, + -0.007499759551137686, + -0.01742631569504738, + 0.0024250822607427835, + 8.360321226064116e-5, + -0.009912844747304916, + 0.009412404149770737, + -0.008411522023379803, + -0.004644503816962242, + 0.0038561378605663776, + 0.018632857128977776, + 0.011366180144250393, + 0.01019391417503357, + 0.005885323043912649, + -0.014300272800028324, + 0.004850164521485567, + 0.009988253936171532, + -0.006869066972285509, + 0.046534158289432526, + -0.013936938717961311, + 0.011139953508973122, + 0.028984446078538895, + 5.023690755479038e-5, + -0.00297693838365376, + -0.007931646890938282, + 0.00919988751411438, + 0.004407993983477354, + 0.011859766207635403, + -0.02019587904214859, + 0.009789448231458664, + -0.001380497356876731, + 0.013025176711380482, + 0.018975624814629555, + 0.0034413887187838554, + -0.022951731458306313, + -0.02415827475488186, + 0.016480276361107826, + 0.03222017362713814, + -0.005439725238829851, + 0.010858884081244469 + ], + "016d159f-293f-45d9-af26-9be407742d5e": [ + -0.01937810145318508, + -0.029570480808615685, + -0.006920750718563795, + 0.05622166022658348, + -0.05194338038563728, + -0.012734181247651577, + -0.016836298629641533, + 0.007329704239964485, + -0.0015681792283430696, + 0.04507296159863472, + 0.015452148392796516, + 0.021391410380601883, + 0.021416576579213142, + 0.002644041320309043, + 0.01408058125525713, + 0.012910345569252968, + -0.018308531492948532, + 0.0273306742310524, + -0.02111458033323288, + 0.009349305182695389, + 0.05380569025874138, + -0.017943618819117546, + -0.011865941807627678, + 0.004331760574132204, + 0.027431339025497437, + -0.03221294656395912, + -0.020913250744342804, + -0.01470974087715149, + -0.057328980416059494, + -0.008965517394244671, + -0.00885856058448553, + 0.0009059891453944147, + -0.006637629121541977, + 0.023467635735869408, + 0.008770478889346123, + -0.027834000065922737, + -0.01854761131107807, + 0.011136116459965706, + -0.02982214279472828, + 0.010154628194868565, + -0.005914095789194107, + 0.054309017956256866, + -0.00258584413677454, + 0.009777133353054523, + -0.029696311801671982, + -0.005873200483620167, + -0.03384876251220703, + -0.016572052612900734, + 0.015879977494478226, + -0.007461827713996172, + -0.002279129112139344, + 0.03311893716454506, + 0.010871870443224907, + 0.005203146021813154, + 0.04177616909146309, + -0.014445493929088116, + -0.0007038717740215361, + 0.03681839257478714, + 0.012878887355327606, + -0.06034894660115242, + -0.008090986870229244, + -0.019113855436444283, + 0.018094617873430252, + -0.010488082654774189, + 0.005222021136432886, + 0.013539505191147327, + -0.03920919820666313, + 0.025631943717598915, + -0.013954750262200832, + 0.023429887369275093, + -0.011110950261354446, + 0.024990200996398926, + -0.027406172826886177, + 0.011010285466909409, + 0.04134833812713623, + 0.0063010286539793015, + 0.0611039362847805, + 0.01223085355013609, + 0.024084212258458138, + -0.029041986912488937, + 0.021693406626582146, + -0.03523291274905205, + 0.022033153101801872, + 0.040694013237953186, + 0.026298852637410164, + 0.024889536201953888, + -0.017037630081176758, + -0.02982214279472828, + 0.007505868561565876, + -0.03561040759086609, + 0.013677920214831829, + 0.01964234933257103, + 0.009468845091760159, + 0.012400726787745953, + -0.012457351200282574, + -0.01980593055486679, + -0.008418149314820766, + -0.0209006667137146, + 0.006732002831995487, + -0.016307804733514786, + -0.008179068565368652, + 0.02199540287256241, + 0.017050212249159813, + -0.02339213714003563, + 0.006971083581447601, + -0.019176770001649857, + 0.015993226319551468, + 0.007197580765932798, + 0.0020840896759182215, + 0.011513612233102322, + -0.013174592517316341, + -0.060650940984487534, + 0.012771930545568466, + 0.005945554003119469, + -0.02229740098118782, + -0.02816116251051426, + -0.02609752118587494, + -0.004960919730365276, + -0.03883170336484909, + -0.033647432923316956, + 0.022976892068982124, + -0.03583690524101257, + -0.008594313636422157, + -0.005524017382413149, + -0.0017852390883490443, + 0.030879130586981773, + -0.01301101129502058, + 0.014294495806097984, + 0.024889536201953888, + 0.014508410356938839, + -0.024851785972714424, + -0.033672597259283066, + -0.004853962920606136, + -0.01660980097949505, + 0.013577254489064217, + 0.01848469488322735, + -0.011205323971807957, + 0.08309934288263321, + -0.0011317000025883317, + -0.026349185034632683, + -0.01817011646926403, + 0.013740835711359978, + -0.04175100103020668, + 0.004271990619599819, + 0.015879977494478226, + -0.010796370916068554, + -0.02725517377257347, + 0.047337934374809265, + -0.04914991185069084, + -0.004608590621501207, + -0.045249126851558685, + 0.0055334544740617275, + -0.020938416942954063, + -0.00952546950429678, + 0.05959395319223404, + 0.022599397227168083, + -0.015854811295866966, + 0.02559419348835945, + -0.008260859176516533, + 0.04172583296895027, + 0.039460860192775726, + -0.04995523765683174, + 0.011211615987122059, + 0.012564308010041714, + 0.08007937669754028, + -0.013300424441695213, + 0.03233877941966057, + 0.028362493962049484, + 0.017931034788489342, + 0.011312281712889671, + 0.0021894739475101233, + -0.031659286469221115, + 0.0428834892809391, + 0.00016122203669510782, + 0.029444647952914238, + -0.026626015082001686, + 0.03875620290637016, + 0.010922202840447426, + 0.030451303347945213, + -0.003947973717004061, + -0.014256746508181095, + -0.03266594186425209, + 0.035761404782533646, + 0.011356323026120663, + -0.01658463478088379, + 0.019541682675480843, + 0.0031662434339523315, + 0.006757169030606747, + -0.019441017881035805, + -0.0004062008811160922, + -0.016018392518162727, + 0.005945554003119469, + 0.01881185919046402, + 0.004753297194838524, + -0.031684454530477524, + -0.04142383858561516, + 0.004712401889264584, + -0.014973987825214863, + -0.01876152493059635, + 0.03941052779555321, + -0.009544344618916512, + -0.04419213905930519, + -0.01304876059293747, + 0.022712646052241325, + -0.03978802263736725, + 0.007197580765932798, + 0.009751967154443264, + -0.009248639456927776, + 0.01817011646926403, + -0.02234773337841034, + 0.05677532032132149, + -0.020988749340176582, + 0.021743740886449814, + 0.003185118082910776, + -0.01679854840040207, + 0.01712571270763874, + -0.0032433154992759228, + 0.03055196814239025, + -0.006279008463025093, + -0.0509115569293499, + 0.0051905629225075245, + -0.019126437604427338, + -0.02853865921497345, + -0.013526922091841698, + -0.044871632009744644, + 0.01140036340802908, + -0.014256746508181095, + -0.016458803787827492, + -0.009311554953455925, + -0.04044235125184059, + 0.07982771098613739, + -0.012407018803060055, + 0.040341682732105255, + -0.01779261976480484, + -0.0003279492084402591, + 0.01990659534931183, + 0.01988142915070057, + -0.0054170601069927216, + -0.00952546950429678, + 0.005914095789194107, + -0.0035044164396822453, + 0.004243678413331509, + -0.03978802263736725, + -0.02258681319653988, + -0.023241138085722923, + 0.017377376556396484, + 0.00855027325451374, + 0.06628821045160294, + 0.008499939925968647, + 0.013464005663990974, + -0.00951288640499115, + 0.01693696342408657, + -0.005807138979434967, + 0.024373624473810196, + -0.0351070798933506, + 0.01771712116897106, + 0.034603752195835114, + -0.04925057664513588, + -0.016572052612900734, + 0.01126824039965868, + -0.025543861091136932, + 0.002706957282498479, + -0.027808833867311478, + 0.003557895077392459, + 0.04540012404322624, + -0.059291958808898926, + 0.03138245642185211, + 0.02146691083908081, + 0.007386328186839819, + 0.04784126207232475, + 0.020384756848216057, + -0.030325470492243767, + -0.01999467797577381, + 0.042782820761203766, + -0.02175632305443287, + -0.002971203997731209, + 0.006895584054291248, + 0.005829159636050463, + -1.36276858029305e-5, + 0.011022868566215038, + -0.034075260162353516, + 0.0014604356838390231, + 0.0206364206969738, + -0.01302359439432621, + -0.010066546499729156, + 0.03769921511411667, + -0.01819528266787529, + -0.03193611651659012, + -0.011714943684637547, + 0.023681551218032837, + 0.0049011497758328915, + -0.015275984071195126, + 0.0029743497725576162, + 0.025921357795596123, + -0.011570236645638943, + 0.012885179370641708, + -0.04064368084073067, + 0.021240413188934326, + -0.013589837588369846, + -0.00513079296797514, + -0.025871023535728455, + 0.012595766223967075, + 0.0015540231252089143, + -0.011639444157481194, + 0.02331663854420185, + -0.028135996311903, + 0.02569486014544964, + 0.032011616975069046, + -0.01565347984433174, + 0.03613889962434769, + 0.026726679876446724, + -0.024323292076587677, + -0.03515741229057312, + -0.03387392684817314, + -0.0013676347443833947, + 0.0439404733479023, + -0.03732172027230263, + 0.019365519285202026, + -0.001645251177251339, + -0.006543254945427179, + -0.02982214279472828, + -0.009387054480612278, + -0.049779072403907776, + 0.039058201014995575, + 0.040668848901987076, + -0.030702967196702957, + 0.044443801045417786, + 0.0047218394465744495, + -0.024725954979658127, + 0.0022775561083108187, + -0.02358088456094265, + 0.00567501550540328, + -0.002790320897474885, + 0.007468119263648987, + -0.02130332961678505, + -0.02191990427672863, + -0.049426741898059845, + -0.04512329399585724, + -0.007568784523755312, + 0.0003649122954811901, + -0.011532487347722054, + 0.005973866209387779, + 0.016949547454714775, + -0.01959201507270336, + -0.034905750304460526, + -0.010909619741141796, + 0.005926679354161024, + 0.03679322823882103, + 0.02400871366262436, + -0.015213068574666977, + 0.0007770115626044571, + 0.035736240446567535, + 0.04426763579249382, + 0.0006480339216068387, + 0.03477991744875908, + -0.009103932417929173, + -0.022838477045297623, + 0.023354386910796165, + 0.01886219158768654, + 0.01698729768395424, + -0.002469449769705534, + -0.03641572967171669, + -0.018887357786297798, + -0.057731643319129944, + -0.013640169985592365, + 0.01750320754945278, + 0.010072837583720684, + -0.004309740383177996, + -0.029847310855984688, + 0.0004510284634307027, + -0.009676467627286911, + -0.015087236650288105, + -0.0065369633957743645, + -0.049879737198352814, + -0.010613914579153061, + -0.01923968642950058, + 0.05531567335128784, + 0.010783787816762924, + -0.022184152156114578, + 0.02149207703769207, + -0.006757169030606747, + -0.0010326073970645666, + -0.04295898601412773, + 0.009210890159010887, + 0.00887114368379116, + 0.0246504545211792, + -0.015854811295866966, + 0.013979916460812092, + -0.007417786400765181, + -0.017163461074233055, + -0.020623836666345596, + -0.008688688278198242, + -0.017327042296528816, + 0.021227829158306122, + 0.0046557774767279625, + -0.004183908458799124, + 0.0020463401451706886, + -0.05000557005405426, + 0.033773262053728104, + 0.005187417380511761, + -0.022901393473148346, + -0.016899215057492256, + 0.005395039916038513, + 0.009437386877834797, + -0.007694616448134184, + -0.022284816950559616, + 0.02457495592534542, + -0.0031033274717628956, + 0.032489776611328125, + 0.0026676347479224205, + 0.010972535237669945, + -0.002810768550261855, + -0.0009626134997233748, + 0.025040533393621445, + 0.04419213905930519, + 0.01757870614528656, + -0.021026499569416046, + 0.027003509923815727, + -0.018509862944483757, + 0.035333577543497086, + 0.028010165318846703, + 0.010098004713654518, + 0.016257472336292267, + 0.021215246990323067, + -0.0006429220084100962, + 0.0014368422562256455, + 0.007329704239964485, + 0.01691179722547531, + -0.011897399090230465, + -0.001977132633328438, + 0.032439444214105606, + 0.03754821792244911, + -0.01669788360595703, + 0.006618754006922245, + -0.03259044513106346, + -0.012646098621189594, + -0.008128736168146133, + 0.016257472336292267, + 0.01757870614528656, + -0.01303617749363184, + 0.004573986865580082, + 0.0021941924933344126, + -0.0025103450752794743, + -0.034024927765131, + -0.040719181299209595, + -0.02085033431649208, + -0.032942771911621094, + 0.021529825404286385, + -0.0014785239472985268, + -0.009424803778529167, + -0.008625771850347519, + 0.03689389303326607, + -0.06502988934516907, + -0.03420109301805496, + 0.0003293254994787276, + -0.009022141806781292, + 0.0192900188267231, + -0.010116878896951675, + 8.00211782916449e-5, + -0.03525807708501816, + 0.006713128183037043, + -0.016597218811511993, + 0.04039201885461807, + 0.0070088328793644905, + 0.020485421642661095, + -0.03968735784292221, + -0.01698729768395424, + 0.009147973731160164, + 0.0034446462523192167, + 0.0069018760696053505, + -0.007763823959976435, + -0.010582457296550274, + -0.02770816907286644, + 0.031583789736032486, + 0.0017474895576015115, + -0.01878669299185276, + -0.003021536860615015, + -0.0011537205427885056, + 0.012211979366838932, + -0.02239806577563286, + -0.021026499569416046, + 0.00642371503636241, + -0.014948821626603603, + 0.013501754961907864, + -0.008632063865661621, + 0.006631337571889162, + -0.03767405077815056, + 0.0074807023629546165, + -0.018019117414951324, + -0.01403024885803461, + -0.004769026301801205, + 0.014533576555550098, + 0.013174592517316341, + 0.03880653530359268, + 0.01672304980456829, + -0.01284743007272482, + 0.039033032953739166, + -0.01824561506509781, + -0.009997338987886906, + -0.035811737179756165, + 0.009777133353054523, + -0.007229038514196873, + 0.005599516443908215, + 0.012476226314902306, + -0.01827078126370907, + 0.022473564371466637, + 0.020170841366052628, + 0.00960726011544466, + 0.018698610365390778, + 0.00702141597867012, + -0.02899165265262127, + 0.0380515456199646, + -0.0503830648958683, + 0.02371929958462715, + -0.0035075622145086527, + -0.002491470193490386, + -0.005105626303702593, + -0.003137931227684021, + 0.03437725454568863, + -0.012199396267533302, + 0.00531954038888216, + -0.03223811462521553, + -0.008348941802978516, + -0.03654156252741814, + -0.018899939954280853, + 0.009588385000824928, + 0.002680218080058694, + -0.022574231028556824, + 0.03895753622055054, + -0.03925953060388565, + -0.03779987990856171, + -0.0003151693963445723, + -0.009141682647168636, + -0.002895704936236143, + 0.012721598148345947, + 0.0015650333371013403, + -0.0017836662009358406, + -0.019541682675480843, + -0.006216092500835657, + -0.03231361508369446, + -0.0006472474779002368, + 0.03014930710196495, + 0.005495705176144838, + 0.013149426318705082, + 0.0025134908501058817, + 0.006414277479052544, + 0.00793369673192501, + 0.0002968844783026725, + -0.025871023535728455, + 0.029998308047652245, + -0.02889098785817623, + 0.01878669299185276, + -0.03274144232273102, + -0.014973987825214863, + -0.01117386668920517, + -0.006448881234973669, + 0.010079129599034786, + 0.00858802255243063, + -0.013413673266768456, + -0.03893236815929413, + 0.012256019748747349, + 0.002952329348772764, + -0.011343738995492458, + 0.011639444157481194, + -0.031634122133255005, + 0.002345190616324544, + -0.03427658975124359, + 0.02497761882841587, + 0.017515791580080986, + 0.031281791627407074, + 0.03417592495679855, + 0.027381006628274918, + 0.041549671441316605, + 0.016660133376717567, + -0.014181246981024742, + 0.0062506962567567825, + 0.013438839465379715, + -0.006851543206721544, + -0.039460860192775726, + 0.02476370334625244, + 0.0247888695448637, + -0.003306231228634715, + 0.0031253481283783913, + -0.024109378457069397, + 0.03238911181688309, + 0.0010530551662668586, + -0.023996129631996155, + -0.004555112216621637, + -0.01615680754184723, + 0.016886631026864052, + 0.023593468591570854, + 0.005149667616933584, + -0.0020888084545731544, + 0.0026676347479224205, + 0.013149426318705082, + 0.04492196440696716, + 0.017893286421895027, + 0.0016185118583962321, + 0.008864852599799633, + 0.009204598143696785, + 0.029947975650429726, + 0.009041016921401024, + -0.008065820671617985, + -0.024084212258458138, + -0.03173478692770004, + 0.013979916460812092, + -0.0019330914365127683, + 0.011003993451595306, + -0.01054470706731081, + 0.0024049608036875725, + 0.009733092039823532, + -0.017452875152230263, + 0.00661246245726943, + -0.011714943684637547, + 0.0014871748862788081, + -0.02457495592534542, + 0.01660980097949505, + 0.0025575319305062294, + 0.029041986912488937, + 0.013640169985592365, + 0.015439565293490887, + -0.002592135686427355, + 0.047287601977586746, + -0.03528324514627457, + 0.0121931042522192, + 0.040719181299209595, + -0.02650018408894539, + 0.001481669838540256, + -0.018308531492948532, + -0.020762251690030098, + -0.02135366201400757, + -0.03354676440358162, + 0.00960726011544466, + -0.0008281307527795434, + 0.0206364206969738, + -0.023480219766497612, + 0.0026660619769245386, + 0.005876346491277218, + -0.0032936481293290854, + -0.01125565730035305, + 0.007197580765932798, + 0.001088445307686925, + 0.003822141792625189, + 0.06407357007265091, + -0.01387925073504448, + 0.0455511212348938, + -0.004982940386980772, + -0.017352208495140076, + 0.014835572801530361, + 0.05295003205537796, + -0.02106424793601036, + 0.025946523994207382, + -0.016383303329348564, + 0.007644283585250378, + 0.009896673262119293, + -0.008090986870229244, + -0.007015124429017305, + 0.01465940847992897, + 0.026626015082001686, + -0.0028988507110625505, + 0.009456261992454529, + -0.03231361508369446, + 0.007562492974102497, + -0.011607985943555832, + 0.024499457329511642, + -0.00691445916891098, + -0.0065998793579638, + -0.004268844611942768, + 0.004086388740688562, + 0.025871023535728455, + 0.03138245642185211, + -0.018283365294337273, + -0.022976892068982124, + 0.013413673266768456, + -0.00889630988240242, + 0.008701271377503872, + 0.013715669512748718, + -0.01990659534931183, + 0.0014077435480430722, + -0.021101998165249825, + -0.014458077028393745, + -0.032942771911621094, + -0.02004501037299633, + 0.02028409019112587, + -0.04675910621881485, + -0.004416697192937136, + -0.01762903854250908, + -0.0027966124471277, + -0.03976285830140114, + -0.022951725870370865, + -0.012362977489829063, + 0.020812584087252617, + -0.008845977485179901, + 0.02979697659611702, + 0.021932488307356834, + -0.014420327730476856, + 0.00281706009991467, + -0.009047308936715126, + 0.01811978407204151, + 0.0003470205992925912, + -0.03012414090335369, + -0.012117604725062847, + -0.007914821617305279, + -0.0431351512670517, + 0.04142383858561516, + -0.004618028178811073, + -0.021190080791711807, + -0.028010165318846703, + -0.01845952868461609, + 0.001325166434980929, + -0.03274144232273102, + -0.014382578432559967, + -0.011066908948123455, + 0.01301101129502058, + 0.010009922087192535, + -0.010211252607405186, + -0.01653430238366127, + 0.010953661054372787, + -0.029041986912488937, + 0.0536043606698513, + -0.02545577846467495, + 0.013501754961907864, + 0.007329704239964485, + -0.018849607557058334, + 0.002587416907772422, + 0.003148941555991769, + -0.012362977489829063, + -0.012885179370641708, + 0.021592741832137108, + -0.004640048835426569, + 0.01615680754184723, + 0.0012638234766200185, + 0.01964234933257103, + -0.005332123953849077, + 0.00040541443740949035, + -0.011180157773196697, + 0.008279734291136265, + -0.00869497936218977, + 0.013187175616621971, + -0.02604718878865242, + 0.02457495592534542, + 0.003674289444461465, + 0.0064205690287053585, + -0.03762371838092804, + 0.01691179722547531, + 0.018094617873430252, + 0.011966606602072716, + -0.0070717488415539265, + -0.038680706173181534, + 0.01881185919046402, + 0.032942771911621094, + -0.03472958505153656, + 0.010953661054372787, + 0.0021690260618925095, + 0.009110224433243275, + 0.02341730333864689, + 0.018874773755669594, + 0.0014627950731664896, + -0.009745675139129162, + 0.03840387612581253, + -0.02320338971912861, + 0.012249728664755821, + -0.00932413898408413, + -0.01468457467854023, + -0.0051905629225075245, + 0.003966848365962505, + 0.023996129631996155, + -0.002971203997731209, + 0.030275138095021248, + 0.007549909874796867, + 0.03893236815929413, + 0.03191095218062401, + 0.023115307092666626, + 0.02433587610721588, + 0.024902118369936943, + -0.038680706173181534, + 0.010890744626522064, + -0.020913250744342804, + -0.001066424767486751, + 0.006049365270882845, + -0.003863037098199129, + -0.04665844142436981, + 0.05116322264075279, + 0.005888929590582848, + 0.013791168108582497, + -0.017465457320213318, + 0.02891615405678749, + -0.021718574687838554, + 0.0140679981559515, + 0.008166485466063023, + 0.009204598143696785, + -0.010632789693772793, + -0.01487332209944725, + -0.009563218802213669, + 0.027607504278421402, + 0.00037887177313677967, + 0.016634967178106308, + 0.008273443207144737, + -0.023807382211089134, + -0.024663038551807404, + 0.01464682538062334, + -0.03963702544569969, + 0.04039201885461807, + 0.029117485508322716, + -0.020435089245438576, + -0.018723776564002037, + 0.017276709899306297, + -0.025355113670229912, + -0.04147417098283768, + 0.004036055877804756, + 0.012803388759493828, + 0.046029284596443176, + -0.008890018798410892, + 0.009047308936715126, + -0.024423958733677864, + -0.0019110708963125944, + 0.010953661054372787, + 0.0121931042522192, + 0.029243316501379013, + 0.0071912892162799835, + 0.0136653371155262, + -0.0034446462523192167, + 0.017855536192655563, + 0.008908893913030624, + 0.020032426342368126, + -0.015112402848899364, + 0.021668240427970886, + 0.004290865268558264, + 0.0007644283468835056, + 0.019680097699165344, + -0.021982820704579353, + -0.02052317187190056, + -0.019843678921461105, + 0.005612099543213844, + -0.009707925841212273, + 0.031231459230184555, + -0.00775753241032362, + 0.014483243227005005, + -0.054711680859327316, + 0.029192984104156494, + -0.006282154005020857, + -0.047765761613845825, + 0.029192984104156494, + -0.02607235498726368, + 0.0008328494150191545, + 0.009600969031453133, + 0.011356323026120663, + -0.0054799760691821575, + 0.00948772020637989, + 0.049401577562093735, + 0.05828530341386795, + -0.002074652351438999, + 0.005391893908381462, + 0.023253722116351128, + -0.04431797191500664, + 0.004948336631059647, + -0.027607504278421402, + 0.01881185919046402, + -0.0017569268820807338, + 0.02256164699792862, + 0.019327769055962563, + -0.003900786628946662, + -0.024939868599176407, + 0.01155136153101921, + -0.014583908952772617, + -0.019579432904720306, + 0.01055729016661644, + 0.02977181039750576, + 0.006017907056957483, + 0.04494712874293327, + -0.00035508169094100595, + -0.03382359445095062, + 0.016244888305664062, + 0.011463279835879803, + -0.001424259040504694, + -0.01883702538907528, + 0.011998064815998077, + 0.0015437992988154292, + -0.01629522256553173, + 0.021215246990323067, + -0.026173019781708717, + -0.010274169035255909, + 0.03264077752828598, + -0.010815246030688286, + -0.013602420687675476, + 0.009896673262119293, + -0.015301150269806385, + -0.00346981268376112, + -0.0046557774767279625, + 0.005822868086397648, + 0.008443315513432026, + 0.0018481550505384803, + -0.015426982194185257, + -0.0019173624459654093, + -0.019554266706109047, + 0.030476469546556473, + -0.01387925073504448, + -0.009078766219317913, + 0.0010609196033328772, + 0.021215246990323067, + 0.011217908002436161, + -0.019038354977965355, + -0.025342529639601707, + -0.033697765320539474, + 0.025682276114821434, + -0.046129949390888214, + 0.019982093945145607, + -0.009286388754844666, + 0.0033093770034611225, + -0.014533576555550098, + 0.006851543206721544, + 0.020560920238494873, + -0.017654206603765488, + -0.003853599773719907, + 0.043663643300533295, + 0.00476273475214839, + 0.014269329607486725, + -0.02486437000334263, + -0.01550248172134161, + -0.021391410380601883, + -0.015829643234610558, + -0.005747369024902582, + 0.03264077752828598, + 0.00948772020637989, + -0.02770816907286644, + -0.0010341804008930922, + -0.03477991744875908, + -0.02730550616979599, + -0.03344609960913658, + 0.020246341824531555, + -0.020913250744342804, + -0.010217544622719288, + -0.01800653524696827, + -0.02685251273214817, + -0.010142045095562935, + -0.016521718353033066, + -0.027204841375350952, + -0.017905868589878082, + -0.021290745586156845, + 0.006631337571889162, + -0.02393321320414543, + -0.021227829158306122, + 0.011356323026120663, + 0.005281791090965271, + -0.02730550616979599, + -0.0012842711294069886, + 0.01610647328197956, + 0.024675622582435608, + -0.0022460981272161007, + 0.0013786449562758207, + 0.0010970962466672063, + 0.031986452639102936, + -0.02210865169763565, + 0.005165396723896265, + 0.0003828040207736194, + 0.03133212402462959, + 0.003913369961082935, + -0.014961404725909233, + -0.019931761547923088, + 0.0021894739475101233, + -0.006958500016480684, + -0.0051811253651976585, + 0.0056624324060976505, + 0.001450998242944479, + -0.01897544041275978, + 0.058989960700273514, + -0.012010647915303707, + 0.0010679976548999548, + -0.020032426342368126, + -0.013526922091841698, + 0.002318451413884759, + 0.0006893224781379104, + -0.016194555908441544, + 0.005791409872472286, + 1.0211548215011135e-5, + -0.026198185980319977, + -0.03019963949918747, + -0.0059612831100821495, + -0.021215246990323067, + -0.02113974653184414, + 0.027532003819942474, + -0.016924381256103516, + -0.03628990054130554, + -0.028035331517457962, + 0.0005575923132710159, + 0.023757049813866615, + -0.008279734291136265, + -0.013375923037528992, + -0.011784151196479797, + 0.003784392261877656, + 0.016056140884757042, + -0.015955476090312004, + 0.01136261411011219, + 0.018321113660931587, + -0.0007372958934865892, + 0.0015477314591407776, + 0.011576528660953045, + -0.022951725870370865, + -0.008575439453125, + -0.018094617873430252, + -0.017654206603765488, + -0.004105263389647007, + 0.005936116445809603, + 0.04461996629834175, + 0.03238911181688309, + -0.0019425288774073124, + -0.011771568097174168, + -0.0013692076317965984, + 0.01814495027065277, + 0.023480219766497612, + -0.022863643243908882, + -0.01779261976480484, + -0.0025512403808534145, + -0.009733092039823532, + -0.0068892925046384335, + 0.00130943744443357, + 0.02848832681775093, + 0.011526195332407951, + -0.005196854472160339, + 0.0035295828711241484, + -0.014218996278941631, + -0.014206413179636002, + 0.021290745586156845, + 0.0035453117452561855, + -0.010192378424108028, + 0.01469715777784586, + 0.006112281233072281, + -0.004614882171154022, + 0.02175632305443287, + -0.03389909490942955, + -0.008959226310253143, + -0.022096069529652596, + 0.00032047793501988053, + -0.007260496728122234, + 0.022624563425779343, + -0.018824441358447075, + -0.004161887802183628, + -0.08793128281831741, + -0.03337060287594795, + -0.004479613155126572, + -0.020749669522047043, + 0.007203872315585613, + -0.01835886389017105, + 0.005838596727699041, + 0.034553419798612595, + 0.004438717849552631, + -0.0004510284634307027, + 0.012413309887051582, + -0.007027707528322935, + 0.0016515427269041538, + 0.025443196296691895, + 0.01762903854250908, + -0.02001984417438507, + -0.013426256366074085, + -0.014231580309569836, + 0.013652753084897995, + -0.028035331517457962, + -0.008160194382071495, + 0.013451422564685345, + 0.03523291274905205, + -0.014458077028393745, + -0.012677556835114956, + 0.012400726787745953, + 0.014785240404307842, + -0.009122807532548904, + -0.012545433826744556, + -0.002623593667522073, + 0.02414712868630886, + 0.01771712116897106, + 0.0057159108109772205, + 0.005970720201730728, + -0.011092076078057289, + 0.04336164891719818, + 0.015414399094879627, + -0.025556445121765137, + 0.05486267805099487, + 0.02215898595750332, + -1.4659899534308352e-5, + 0.009588385000824928, + 0.0011521476553753018, + -0.007593950722366571, + -0.0079714460298419, + -0.0030938901472836733, + -0.011154991574585438, + -0.024210043251514435, + 0.024939868599176407, + 0.009229764342308044, + 0.011582819744944572, + -0.004589715972542763, + -0.008034362457692623, + -0.019516516476869583, + -0.009745675139129162, + 0.012243436649441719, + 0.006398548372089863, + 0.007612825836986303, + 0.005652994848787785, + -0.00526606198400259, + 0.027607504278421402, + 0.00745553569868207, + -0.020573504269123077, + 0.0029366002418100834, + -0.009544344618916512, + 0.021341077983379364, + 0.0024820328690111637, + -0.008072111755609512, + 0.008619480766355991, + 0.001056200941093266, + -0.004747005645185709, + -0.008487356826663017, + 0.001188324298709631, + 0.0072416216135025024, + 0.02334180474281311, + 0.004596007522195578, + 0.000835995189845562, + 0.014307078905403614, + -0.0002933454525191337, + 0.0071912892162799835, + -0.020271508023142815, + -0.02044767141342163, + -0.0006098911399021745, + 0.001708167139440775, + -0.005637265741825104, + -0.004174470901489258, + -0.008676104247570038, + -0.0072542051784694195, + -0.021907322108745575, + 0.008380400016903877, + -0.004445009399205446, + 0.002266545780003071, + 0.009154265746474266, + 0.016572052612900734, + -0.011916274204850197, + 0.04059334844350815, + -0.018535029143095016, + -0.016093891113996506, + 0.002337326295673847, + 0.013942167162895203, + -0.002244525356218219, + -0.02280072681605816, + 0.007210163865238428, + -0.010500665754079819, + 0.005942407995462418, + 0.006203509401530027, + -0.0001415608130628243, + 0.003384876297786832, + -0.01570381224155426, + -0.00972680002450943, + -0.012690139934420586, + 0.027481671422719955, + -0.0010624924907460809, + 0.00484452536329627, + 0.006058802362531424, + 0.00860060565173626, + -0.016056140884757042, + -0.009179431945085526, + -0.012753056362271309, + -0.005492559168487787, + 0.00424682442098856, + 0.029671145603060722, + -0.001193043077364564, + -0.019566848874092102, + 0.0012323654955253005, + 0.007600242272019386, + -0.008021779358386993, + -0.005033273249864578, + -0.0016798549331724644, + 0.004504779353737831, + -0.007965154945850372, + -0.0035956446081399918, + -0.023266306146979332, + -0.0018245615065097809, + 0.01552764791995287, + 0.004542529117316008, + -0.00325904437340796, + -0.018283365294337273, + 0.026273686438798904, + -0.007184997666627169, + -0.003104900475591421, + -0.007386328186839819, + -0.00650550564751029, + -0.0006700545200146735, + -0.018748942762613297, + 0.014256746508181095, + -0.015980642288923264, + -0.003579915501177311, + -0.0019629765301942825, + 0.007461827713996172, + -0.023266306146979332, + 0.03405009210109711, + 0.033672597259283066, + 0.06955983489751816, + -0.0027258319314569235, + -0.026223354041576385, + -0.018723776564002037, + 0.0006291591562330723, + -0.014571325853466988, + 0.0035138537641614676, + -0.029998308047652245, + 0.015439565293490887, + -0.007883364334702492, + 0.008877435699105263, + -0.001964549534022808, + -0.016433637589216232, + -0.01859794370830059, + -0.007593950722366571, + -0.025795524939894676, + -0.012910345569252968, + -0.002458439441397786, + 0.00798402912914753, + -0.012922928668558598, + 0.005734785459935665, + 0.005407623015344143, + -0.011834483593702316, + -0.0210390817373991, + -0.0005725348019041121, + 0.018094617873430252, + -0.017918452620506287, + -0.027154508978128433, + -0.009355596266686916, + -0.006625046022236347, + 0.005907804239541292, + -0.007317120674997568, + 0.016043558716773987, + 0.010978827252984047, + 0.017855536192655563, + -0.004781609401106834, + 0.0033345434349030256, + 0.016760800033807755, + -0.008418149314820766, + -0.014420327730476856, + 0.014722323976457119, + -0.0063136122189462185, + -0.003992014564573765, + 0.016924381256103516, + 0.026198185980319977, + -0.010746038518846035, + -0.008827103301882744, + -0.011136116459965706, + -0.014973987825214863, + 0.011519904248416424, + 0.012425892986357212, + -0.00864464696496725, + -0.018207864835858345, + -0.003331397660076618, + 0.03276660665869713, + 0.03878137096762657, + -0.015275984071195126, + -0.015829643234610558, + -0.015905143693089485, + 0.010500665754079819, + -0.015162735246121883, + -0.008367816917598248, + 0.0012048397911712527, + 0.006744585931301117, + -0.03427658975124359, + 0.023278888314962387, + -0.021152330562472343, + 0.015213068574666977, + -0.020800001919269562, + 0.012237145565450191, + -0.008890018798410892, + 0.011576528660953045, + -0.01591772586107254, + 0.024587539955973625, + -0.017087962478399277, + -0.03170962259173393, + -0.006455172784626484, + -0.019680097699165344, + 0.005514579825103283, + -0.018610527738928795, + 0.021982820704579353, + -0.013413673266768456, + -0.004419843200594187, + 0.018799275159835815, + -0.004183908458799124, + 0.0025245011784136295, + -0.013979916460812092, + -0.01897544041275978, + -0.016244888305664062, + 0.0029806415550410748, + 0.0065369633957743645, + 0.03779987990856171, + 0.022171568125486374, + -0.011601694859564304, + -0.019151603803038597, + 0.0026880824007093906, + 0.010179795324802399, + 0.015087236650288105, + 0.009267514571547508, + -0.01591772586107254, + 0.009078766219317913, + -0.02765783667564392, + -0.033672597259283066, + 0.04122250899672508, + 0.006788627244532108, + 0.003947973717004061, + -0.009292680770158768, + -0.025845857337117195, + -0.007153539452701807, + 0.008028070442378521, + -0.009380762465298176, + 0.024071628227829933, + -0.0065998793579638, + 0.0006747731822542846, + 0.02293914183974266, + 0.033269934356212616, + 0.014520993456244469, + 0.011494738049805164, + -0.0007553842151537538, + -0.03641572967171669, + -0.018912523984909058, + 0.01618197374045849, + -0.018660860136151314, + -0.004306594375520945, + -0.0003090744430664927, + 0.00430030282586813, + 0.014269329607486725, + -0.05576866865158081, + 0.009959589689970016, + -0.005121355410665274, + 0.01386666763573885, + 0.02082516811788082, + -0.007833031006157398, + 0.008028070442378521, + -0.015024320222437382, + 0.03852970525622368, + -0.02239806577563286, + 0.014395161531865597, + -0.00022059892944525927, + 0.004350635688751936, + -0.011192740872502327, + -0.005398185458034277, + 0.0004761948366649449, + 0.014130914583802223, + 0.0038127044681459665, + 0.02163049206137657, + -0.015414399094879627, + 0.007310829125344753, + -0.0030891713686287403, + -0.008090986870229244, + -0.010299335233867168, + 0.017666788771748543, + -0.00011157744302181527, + 0.02030925638973713, + -0.015301150269806385, + 0.006024198606610298, + 0.0016342408489435911, + 0.01905093900859356, + 0.009242347441613674, + -0.01959201507270336, + -0.020170841366052628, + 0.004690381232649088, + 0.012740472331643105, + 0.01961718313395977, + -0.003227586392313242, + 0.01128082349896431, + -0.02529219724237919, + -0.016232306137681007, + -0.0007475197198800743, + 0.012790805660188198, + -0.0036711436696350574, + -0.025896189734339714, + -0.022221900522708893, + -0.0022948579862713814, + 0.015791894868016243, + 0.005586933344602585, + -0.0058417427353560925, + -0.00774494931101799, + 0.017616456374526024, + -0.011507321149110794, + -0.02403387986123562, + -0.009085058234632015, + 0.0024678767658770084, + -0.010393708944320679, + -0.02168082445859909, + -0.032439444214105606, + -0.010764912702143192, + 0.015691228210926056, + 0.023140473291277885, + -0.007134664803743362, + 0.015879977494478226, + 0.007273079827427864, + 0.005939262453466654, + -0.013602420687675476, + 0.04293382167816162, + -0.012539141811430454, + -0.009343013167381287, + 0.027859166264533997, + -0.0046652150340378284, + -0.0032936481293290854, + -0.024272959679365158, + -0.00786448922008276, + 0.032892439514398575, + 0.024537207558751106, + 0.00235462817363441, + -0.018094617873430252, + -0.03397459536790848, + -0.04059334844350815, + -0.00014382184599526227, + 0.021504659205675125, + 0.00872014556080103, + 0.003778100712224841, + -0.006178342737257481, + 0.008632063865661621, + -0.014181246981024742, + -0.0008682396146468818, + -0.00940592959523201, + -0.016446219757199287, + 5.859044540557079e-5, + -0.016433637589216232, + -0.011639444157481194, + 0.0012284332187846303, + 0.009210890159010887, + -0.032816942781209946, + 0.013451422564685345, + -0.004039201885461807, + -0.0243862085044384, + 0.00777011550962925, + 0.0018261343939229846, + -0.003976285923272371, + -0.015766728669404984, + -0.005108772311359644, + 0.0068326685577631, + -0.0008745312225073576, + 0.011343738995492458, + 0.008223109878599644, + 0.019101271405816078, + -0.018849607557058334, + -0.011425530537962914, + 0.009198307059705257, + 0.02030925638973713, + -0.008852269500494003, + -0.0007522383821196854, + -0.012388143688440323, + -0.004589715972542763, + -0.02848832681775093, + -0.021429160609841347, + -0.03445275500416756, + 0.026248520240187645, + -0.0030026619788259268, + 0.0261226873844862, + -0.015049486421048641, + 0.020221175625920296, + -0.013174592517316341, + 0.034075260162353516, + -0.017729705199599266, + -0.014231580309569836, + 0.002132849534973502, + -0.009481428191065788, + 0.0038882035296410322, + -0.013136843219399452, + -0.011494738049805164, + -0.000528100470546633, + -0.0043789478950202465, + 0.017062796279788017, + 0.007417786400765181, + -0.037850216031074524, + -0.030702967196702957, + -0.013577254489064217, + -0.012734181247651577, + -0.0026031460147351027, + 0.0008871143800206482, + 0.016244888305664062, + 0.0011922565754503012, + 0.000654718722216785, + -0.0039511192589998245, + -0.022687477990984917, + -0.007795281708240509, + 0.0021784636192023754, + 0.004322323482483625, + -0.0037497885059565306, + 0.02540544606745243, + -0.023241138085722923, + 0.007581367623060942, + -0.00691445916891098, + 0.01550248172134161, + -0.02763267047703266, + -0.00702141597867012, + -0.025317363440990448, + -0.0044324262998998165, + 0.004120992496609688, + 0.009940714575350285, + -0.024902118369936943, + -0.0021894739475101233, + -0.004567695315927267, + 0.006908167619258165, + 0.020107926800847054, + 0.011098367162048817, + -0.0351070798933506, + 0.00970163382589817, + 0.01653430238366127, + -0.014747490175068378, + 0.0007030853303149343, + 0.008531398139894009, + 0.00427513662725687, + -0.020573504269123077, + 0.025342529639601707, + 0.02564452774822712, + 0.008229401893913746, + 0.005379310809075832, + 0.003988869022578001, + -0.028790323063731194, + 0.015615729615092278, + 0.02028409019112587, + -0.001161585096269846, + -0.018522445112466812, + -0.011274531483650208, + 0.013552088290452957, + -0.004504779353737831, + -0.02519153244793415, + -0.012759347446262836, + 0.023278888314962387, + -0.018396614119410515, + -0.011765276081860065, + 0.017830369994044304, + -0.0003826073952950537, + -0.02163049206137657, + 0.007147247903048992, + 0.005583787336945534, + 0.020372172817587852, + 0.002486751414835453, + 0.020107926800847054, + -0.03274144232273102, + 0.012734181247651577, + -0.0097142169252038, + 0.004636902827769518, + 0.011998064815998077, + -0.03379843011498451, + -0.0020526316948235035, + -0.020862916484475136, + -0.006908167619258165, + 0.014357411302626133, + -0.009154265746474266, + -0.022247066721320152, + -0.008833394385874271, + 0.008342650718986988, + 0.016446219757199287, + 0.011167574673891068, + -0.01637072116136551, + -0.03264077752828598, + 0.017490623518824577, + -0.004942045081406832, + -0.008336358703672886, + -0.0018670298159122467, + 0.02085033431649208, + -0.0021108288783580065, + -0.0005941621493548155, + -0.022448398172855377, + -0.008317483589053154, + -0.00885856058448553, + 0.008996975608170033, + -0.03339576721191406, + 0.0005768602713942528, + 0.019088689237833023, + -0.010720872320234776, + -0.00702141597867012, + 0.011368906125426292, + 0.0013550515286624432, + -0.00256539648398757, + -0.005470538977533579, + -0.013690503314137459, + -0.011538778431713581, + -0.0010318210115656257, + -0.007172414101660252, + -0.006118572782725096, + -0.006407985929399729, + -0.016546886414289474, + 0.0036805809941142797, + -0.0036208108067512512, + -0.0011867514112964272, + -0.0003924380289390683, + 0.011853358708322048, + -0.0060304906219244, + 0.01138778030872345, + 0.008002904243767262, + -0.018472112715244293, + -0.0043160319328308105, + -0.005599516443908215, + -0.004706110339611769, + -0.005630974192172289, + 0.004290865268558264, + 0.002244525356218219, + 0.04912474751472473, + -0.006401694379746914, + -0.005505142733454704, + -0.005338415503501892, + 0.01639588735997677, + -0.00162952218670398, + -0.00035350880352780223, + 0.03065263293683529, + -0.009053600020706654, + 0.0035390201956033707, + -0.007732365746051073, + -0.04726243391633034, + 0.011897399090230465, + -0.016924381256103516, + -0.016760800033807755, + -0.0018638839246705174, + 0.0004329401417635381, + 0.018321113660931587, + 0.004054930526763201, + 0.018094617873430252, + 0.019956927746534348, + 0.011626861058175564, + 0.012318936176598072, + 0.02770816907286644, + 0.0006083182524889708, + 0.005467392969876528, + -0.0010790079832077026, + 0.013526922091841698, + -0.008235692977905273, + 0.02184440568089485, + 0.019894011318683624, + 0.016999879851937294, + -0.027104176580905914, + -0.0016908652614802122, + 0.005703327711671591, + 0.00515910517424345, + -0.0044953422620892525, + 0.01819528266787529, + -0.00287053850479424, + 0.0035767697263509035, + -0.02355571836233139, + -0.0009413794032298028, + 0.015338899567723274, + 0.013099092990159988, + -0.007556201424449682, + 0.015112402848899364, + -0.003362855641171336, + 0.003617665031924844, + 0.003073442494496703, + 0.015401815995573997, + -0.011324864812195301, + 0.004596007522195578, + 0.005791409872472286, + 0.006329340860247612, + 0.003148941555991769, + -0.0065998793579638, + 0.006650212220847607, + 0.0015123413177207112, + -0.010293043218553066, + 0.010198669508099556, + -0.01298584509640932, + -0.002195765497162938, + -0.028135996311903, + -0.03417592495679855, + 0.019365519285202026, + -0.014747490175068378, + -0.002758862916380167, + -0.004967211280018091, + 0.015238234773278236, + 0.006820084992796183, + 0.01125565730035305, + 0.03274144232273102, + 0.007675741799175739, + -0.013413673266768456, + 0.0009838476544246078, + 0.013275258243083954, + -0.003532728645950556, + 0.007304537575691938, + -0.0029869331046938896, + 0.0007947066333144903, + -0.01207356434315443, + -0.0010192377958446741, + 0.0002831216261256486, + -0.022020570933818817, + 0.0038567455485463142, + 0.0003590139385778457, + 0.01805686764419079, + -0.01983109675347805, + 0.011796734295785427, + -0.014281912706792355, + -0.024373624473810196, + 0.006574713159352541, + -0.008028070442378521, + 0.007637992035597563, + -0.013250092044472694, + -0.003488687565550208, + -0.009777133353054523, + -0.014118331484496593, + -0.002754144137725234, + 0.01779261976480484, + 0.0051905629225075245, + 0.001997580286115408, + 0.006178342737257481, + 9.609422704670578e-6, + 0.01212389674037695, + -0.002952329348772764, + 0.006467755883932114, + 0.024109378457069397, + -0.020271508023142815, + 0.01591772586107254, + 0.0010813672561198473, + -0.018283365294337273, + 0.003221294842660427, + -0.03344609960913658, + -0.03958669304847717, + 0.0210390817373991, + 0.010488082654774189, + -0.00014529643522109836, + -0.014269329607486725, + -0.023996129631996155, + 0.008952934294939041, + 0.005014398600906134, + 0.01964234933257103, + 0.00615003053098917, + 0.005052147898823023, + 0.005822868086397648, + -0.029847310855984688, + -0.01199177373200655, + -0.015590563416481018, + 0.007468119263648987, + -0.00787707231938839, + 0.00242855423130095, + -6.306337309069932e-5, + 0.01404283195734024, + -0.012256019748747349, + -0.0009633999434299767, + 0.0067823356948792934, + -0.001056987326592207, + 0.021693406626582146, + -0.02936914935708046, + 0.007266788277775049, + 0.01817011646926403, + -0.006662795320153236, + 0.00861318875104189, + 0.0008076830417849123, + 0.0022162131499499083, + 0.0030152453109622, + -0.027909500524401665, + 0.014508410356938839, + 0.024235209450125694, + 0.018069449812173843, + -0.014495826326310635, + 0.019315185025334358, + 0.00691445916891098, + 0.003163097659125924, + 0.00953805260360241, + -0.010387417860329151, + -0.004589715972542763, + 0.004064368084073067, + -0.005338415503501892, + 0.004514216911047697, + 0.003043557284399867, + -0.02296430803835392, + 0.007172414101660252, + -0.03435209020972252, + 0.0123252272605896, + 0.031155960634350777, + 0.0037088932003825903, + 0.025795524939894676, + 0.013099092990159988, + -0.015200484544038773, + 0.027129342779517174, + 0.006080823019146919, + -0.03304343670606613, + 0.002821778878569603, + 0.000961827056016773, + 0.002623593667522073, + 0.0009453116217628121, + -0.03714555501937866, + 0.0060304906219244, + 0.016521718353033066, + -0.018962856382131577, + 0.008688688278198242, + -0.009663884527981281, + 0.013413673266768456, + -0.020007260143756866, + 0.004841379821300507, + -0.008002904243767262, + -0.003202419960871339, + 0.011664610356092453, + -0.02483920380473137, + 0.01123049110174179, + -0.012872596271336079, + 0.0002347550034755841, + -0.007682033348828554, + 0.004344344139099121, + 0.0015312160830944777, + 0.027557170018553734, + -0.021743740886449814, + 0.00887114368379116, + -0.0016405325150117278, + 0.002617302117869258, + -0.004146158695220947, + -0.011865941807627678, + -0.0026283124461770058, + -0.011450696736574173, + -0.018207864835858345, + -0.008090986870229244, + -0.003526437096297741, + 0.015187901444733143, + -0.049854569137096405, + -0.012885179370641708, + 0.022662311792373657, + 0.003016818081960082, + -0.02363121695816517, + 0.028010165318846703, + -0.008424441330134869, + -0.006700545083731413, + 0.03301827237010002, + 0.003611373482272029, + 0.007109498139470816, + 0.025468362495303154, + 0.02604718878865242, + -0.009978463873267174, + -0.012922928668558598, + 0.02071191929280758, + -0.0018874774686992168, + -0.004136721603572369, + 0.021265579387545586, + -0.01053212396800518, + 0.03852970525622368, + -0.011368906125426292, + -0.0005485481233336031, + -0.006206654943525791, + 0.033722929656505585, + 0.021831821650266647, + 0.024260377511382103, + -0.005017544142901897, + 0.005338415503501892, + -0.0031284939032047987, + -0.012658681720495224, + 0.014432910829782486, + -0.013124260120093822, + 0.0028673927299678326, + 0.0011379915522411466, + 0.023656383156776428, + 0.006568421609699726, + 0.001571325003169477, + -0.012010647915303707, + -2.347058580198791e-5, + 0.013942167162895203, + -0.016861464828252792, + 3.895379995810799e-5, + 0.00024084998585749418, + 0.009934422560036182, + 0.007883364334702492, + 0.008323775604367256, + -0.0011112523498013616, + 0.015640895813703537, + -0.004360072780400515, + -0.011645736172795296, + 0.018509862944483757, + 0.012683848850429058, + 0.013350756838917732, + 0.014986570924520493, + 0.008512523025274277, + -0.02042250521481037, + 0.00038968544686213136, + -0.02111458033323288, + 0.0087075624614954, + 0.0008784634410403669, + 0.003969994373619556, + 0.017163461074233055, + 0.011545070447027683, + -0.0012819117400795221, + 0.005524017382413149, + 0.017641622573137283, + 0.01303617749363184, + 0.008845977485179901, + 0.019302602857351303, + 0.0007966727716848254, + -0.013703086413443089, + -0.006414277479052544, + -0.015464731492102146, + 0.008097277954220772, + -0.042027831077575684, + -0.007807864807546139, + -0.00214385986328125, + -0.011582819744944572, + -0.021479493007063866, + 0.0014517847448587418, + -0.0070088328793644905, + 0.014017665758728981, + -0.002316878642886877, + 0.009374471381306648, + -0.0022885664366185665, + 0.007015124429017305, + 0.011167574673891068, + -0.0036333941388875246, + -0.008078403770923615, + -0.00650550564751029, + -0.0059518455527722836, + -0.00018127648218069226, + -0.02125299535691738, + 0.01854761131107807, + -0.00047540839295834303, + 0.012746764346957207, + -0.015263400971889496, + 0.003611373482272029, + 0.014747490175068378, + 0.007153539452701807, + 0.007914821617305279, + 0.0031914098653942347, + 0.0039605568163096905, + -0.003916515503078699, + -0.008267151191830635, + 0.0010121597442775965, + 0.017918452620506287, + 0.004640048835426569, + 0.002074652351438999, + -0.023215971887111664, + 0.01824561506509781, + 0.005797701422125101, + 0.010142045095562935, + 0.005737931467592716, + 0.008028070442378521, + 0.027506837621331215, + 0.01886219158768654, + 0.019302602857351303, + -0.0013998791109770536, + 0.015225651673972607, + -0.012576891109347343, + -0.018711192533373833, + 0.002035329816862941, + 0.0014832427259534597, + 0.009563218802213669, + -0.015603146515786648, + -0.010488082654774189, + -0.001198548125103116, + -0.00574107700958848, + -0.010563582181930542, + 0.0025669692549854517, + 0.006700545083731413, + -0.013350756838917732, + 0.0032401697244495153, + 0.039058201014995575, + 0.013388507068157196, + -0.015187901444733143, + 0.007952571846544743, + 0.022121235728263855, + -0.0031709622126072645, + 0.013589837588369846, + 0.0044953422620892525, + -0.011645736172795296, + -0.01552764791995287, + 0.003998306579887867, + -0.02403387986123562, + -0.003488687565550208, + 0.0019094980088993907, + 0.0050710225477814674, + -0.01800653524696827, + 0.020271508023142815, + -0.010418875142931938, + -2.0619707356672734e-5, + 0.007260496728122234, + -0.008128736168146133, + -0.0016704174922779202, + 0.03976285830140114, + 0.0020903812255710363, + 0.013766001909971237, + -0.004102117847651243, + -0.04497229680418968, + 0.002029038267210126, + -0.025418030098080635, + -0.009223473258316517, + -0.0034352089278399944, + 0.0016531156143173575, + 0.006404839921742678, + 0.0019692680798470974, + 0.027481671422719955, + 0.035736240446567535, + -0.027834000065922737, + 0.002002299064770341, + -0.0028091955464333296, + 0.022284816950559616, + 0.017515791580080986, + -0.005454809870570898, + 0.014483243227005005, + -0.010865578427910805, + -0.00961984321475029, + 0.0111864497885108, + 0.021617908030748367, + 0.023480219766497612, + -0.01779261976480484, + -0.005693890154361725, + -0.021403994411230087, + -0.0005355717148631811, + 0.007260496728122234, + 0.0032684816978871822, + -0.004702964797616005, + 0.0036271025892347097, + 0.011054325848817825, + -0.00849364884197712, + 0.03055196814239025, + -0.012910345569252968, + 0.0017065941356122494, + 0.0004140653763897717, + 0.03062746673822403, + 0.018396614119410515, + -0.007524743210524321, + 0.03155862167477608, + 0.017037630081176758, + 0.002030611038208008, + 0.008946643210947514, + 0.001959830755367875, + -0.0026723535265773535, + 0.0388568677008152, + -0.006244404707103968, + 0.0057253483682870865, + 0.01923968642950058, + 0.01051954086869955, + 0.01046291645616293, + 0.0017018754733726382, + -0.007134664803743362, + -0.008606896735727787, + 0.013287841342389584, + 0.023052390664815903, + -0.00039440413820557296, + 0.003005807753652334, + 0.02395838126540184, + -0.008462190628051758, + -0.02936914935708046, + 0.02896648645401001, + 0.0029680582229048014, + -0.018258199095726013, + -0.008229401893913746, + 0.008474773727357388, + -0.02597169019281864, + 0.0032999396789819, + 0.0277333352714777, + -0.016093891113996506, + -0.004592861980199814, + 0.009229764342308044, + 0.004621173720806837, + -0.001991288736462593, + 0.009135390631854534, + -0.006024198606610298, + 0.008286026306450367, + -0.011117242276668549, + -0.03749788552522659, + -0.001229219720698893, + 0.019944345578551292, + -0.0035641866270452738, + 0.008399274200201035, + -0.022788144648075104, + -0.0006692680181004107, + -0.004863400012254715, + 0.015364066697657108, + 0.011677193455398083, + -0.0019173624459654093, + 0.02095099911093712, + -0.0047753178514540195, + 0.0001230792549904436, + 0.014520993456244469, + 0.002669207751750946, + 0.003992014564573765, + 0.011803025379776955, + 0.01382891833782196, + 0.026575682684779167, + 0.0035924988333135843, + -0.011607985943555832, + 0.003200847189873457, + 0.03394942730665207, + -0.0038567455485463142, + -0.0064300065860152245, + 0.010104295797646046, + -0.01811978407204151, + -0.005870054941624403, + 0.005288082640618086, + -0.006124864332377911, + -0.010204961523413658, + -0.0061940718442201614, + -0.00968905072659254, + 0.015326316468417645, + 0.03019963949918747, + -0.0023876589257270098, + -0.024700788781046867, + 0.001162371481768787, + 0.0002730943961068988, + 0.004702964797616005, + -0.002680218080058694, + 0.008437024429440498, + -0.007524743210524321, + 0.00858802255243063, + 0.008852269500494003, + -0.007990321144461632, + 0.00939334649592638, + 0.03757338598370552, + 0.005344707053154707, + -0.015930309891700745, + 0.003394313622266054, + -0.009745675139129162, + -0.011394072324037552, + 0.021617908030748367, + 0.002527646953240037, + 0.013300424441695213, + 0.004680944141000509, + 0.011060617864131927, + 0.004202783107757568, + 0.005467392969876528, + 0.011878524906933308, + -0.003079734044149518, + 0.014156080782413483, + 0.0029303086921572685, + -0.02433587610721588, + 0.008424441330134869, + -0.014520993456244469, + 0.012910345569252968, + 0.03178511932492256, + 0.014432910829782486, + 0.006008469965308905, + -0.002453720662742853, + 0.007556201424449682, + -0.002302722539752722, + -0.0007506654947064817, + 0.0006893224781379104, + 0.0010805808706209064, + 0.009462554007768631, + -0.0043160319328308105, + 0.010431458242237568, + -0.014495826326310635, + 0.015124985948204994, + -7.284483581315726e-5, + 0.00848106574267149, + -0.0023656385019421577, + 0.027431339025497437, + 0.002985360100865364, + -0.00963242631405592, + 0.029973141849040985, + -0.015552814118564129, + -0.00653067184612155, + 0.010280460119247437, + 0.02811083011329174, + -0.017327042296528816, + -0.016572052612900734, + -0.012815971858799458, + -0.03352160006761551, + -0.0026471870951354504, + 0.00564670329913497, + 0.006058802362531424, + -0.026223354041576385, + 0.010016213171184063, + 0.014269329607486725, + 0.014634241349995136, + 0.032439444214105606, + -0.008606896735727787, + -0.0018465820467099547, + -0.02001984417438507, + -0.007568784523755312, + 0.00889630988240242, + -0.02248614840209484, + -0.02004501037299633, + 0.00217689061537385, + 0.001178100472316146, + -0.01980593055486679, + -0.0024741683155298233, + -0.0010074410820379853, + 0.011702360585331917, + 0.0009649728308431804, + 0.012262311764061451, + -0.0209006667137146, + -0.001245735096745193, + -0.01572897844016552, + -0.017729705199599266, + -0.009494011290371418, + 0.009254931472241879, + -0.00517168827354908, + -0.0032716274727135897, + 0.0038252875674515963, + -0.008342650718986988, + -0.0021564429625868797, + -0.032011616975069046, + -0.023404721170663834, + 0.0026880824007093906, + -0.009676467627286911, + 0.015250817872583866, + -0.006769752595573664, + 0.006310466211289167, + -0.014093165285885334, + -0.013476588763296604, + 0.02248614840209484, + -0.002345190616324544, + -0.010796370916068554, + 0.0064740474335849285, + -0.0015280703082680702, + -0.013577254489064217, + -0.010085420683026314, + -0.0044953422620892525, + -0.002890986390411854, + -0.0194284338504076, + -0.0004636116500478238, + -0.0009114943095482886, + 0.007247913163155317, + 0.0023514823988080025, + 0.006681669969111681, + -0.004086388740688562, + 0.029620813205838203, + -0.022951725870370865, + 0.0027871751226484776, + -0.01488590519875288, + -0.01811978407204151, + 0.014017665758728981, + 0.004573986865580082, + -0.01575414463877678, + -0.009902965277433395, + -0.00387876620516181, + 0.03301827237010002, + -0.008713854476809502, + 0.025116033852100372, + 0.0029287359211593866, + -0.022863643243908882, + -0.012281186878681183, + 0.0014226861530914903, + -0.00887114368379116, + 0.005995886866003275, + -0.00391966151073575, + 0.0021831821650266647, + 0.0019944345112890005, + 0.020674169063568115, + -0.018207864835858345, + -0.012105021625757217, + 0.017931034788489342, + 0.011998064815998077, + -0.039007868617773056, + 0.006895584054291248, + -0.030702967196702957, + -0.024713370949029922, + 0.007619117386639118, + 0.00745553569868207, + -0.006788627244532108, + 0.009802299551665783, + -0.009072475135326385, + -0.0008281307527795434, + 0.012595766223967075, + 0.002881548833101988, + -0.007870781235396862, + 0.009575801901519299, + -0.022033153101801872, + -0.00875160377472639, + 0.01384150143712759, + -0.008757895790040493, + 0.003636539913713932, + -0.007751240860670805, + 0.005262916442006826, + 0.009261222556233406, + -0.003175680758431554, + 0.002754144137725234, + -0.01613164134323597, + 0.020913250744342804, + -0.001434482866898179, + -0.007788990158587694, + -0.018736358731985092, + -0.007285662926733494, + 0.008166485466063023, + -0.00038378708995878696, + -0.02246098220348358, + 0.024021295830607414, + 0.011261948384344578, + 0.009506594389677048, + 0.005495705176144838, + -0.023329220712184906, + 0.0013165154960006475, + -0.01200435683131218, + 0.004127284046262503, + 0.0146719915792346, + -0.023845132440328598, + -0.020221175625920296, + -0.011513612233102322, + -0.0013935875613242388, + -0.051087722182273865, + 0.0014415609184652567, + -0.012211979366838932, + -0.016194555908441544, + -0.01811978407204151, + -1.6380256056436338e-5, + -0.004756443202495575, + -0.009141682647168636, + 0.003023109631612897, + -0.013715669512748718, + 0.013891833834350109, + -0.00855027325451374, + -0.03314410522580147, + -0.002749425359070301, + 0.006895584054291248, + 0.019843678921461105, + 0.003532728645950556, + -0.022498730570077896, + -0.003847308224067092, + 0.00649292254820466, + 0.0040800971910357475, + -0.02210865169763565, + -0.0130613436922431, + -0.005049002356827259, + -0.019101271405816078, + 0.013690503314137459, + -0.017805203795433044, + 0.0060304906219244, + -0.0016735633835196495, + 0.0010554144391790032, + -0.004294011276215315, + 0.013275258243083954, + 0.007147247903048992, + -0.013174592517316341, + 0.014546159654855728, + -0.011249365285038948, + -0.010009922087192535, + 0.01771712116897106, + -0.00475015165284276, + -0.01026158593595028, + -0.007159831002354622, + -0.01036854274570942, + 0.018799275159835815, + -0.0008312765276059508, + 0.008487356826663017, + 0.00521258357912302, + 0.007820447906851768, + -0.005055293906480074, + 0.010985118336975574, + -0.016848882660269737, + 0.01634555496275425, + 0.02213381789624691, + 0.014785240404307842, + -0.024096794426441193, + 0.008940351195633411, + -0.017691954970359802, + 0.0031033274717628956, + 0.0031866910867393017, + 0.0020715065766125917, + 0.008650938048958778, + 0.007486993912607431, + 0.0037403511814773083, + -0.0038032671436667442, + -0.0068389601074159145, + 0.0022146401461213827, + 0.015351483598351479, + -0.021013915538787842, + -0.0032621901482343674, + 0.0010530551662668586, + -0.006335632409900427, + 0.008009196259081364, + 0.005574350245296955, + -0.018233032897114754, + 0.031181126832962036, + 0.009298971854150295, + -0.0029570478945970535, + -0.008757895790040493, + 0.004445009399205446, + -0.0021485784091055393, + -0.00010214005305897444, + 0.01926485262811184, + 0.011576528660953045, + 0.004492196254432201, + -0.010211252607405186, + 0.002208348596468568, + -0.013275258243083954, + 5.991757643641904e-5, + 0.012910345569252968, + 0.006146884988993406, + -0.004580278415232897, + -0.01632038876414299, + -0.0033722929656505585, + -0.006323049310594797, + 0.002013309160247445, + -0.0034446462523192167, + 0.02168082445859909, + -0.014458077028393745, + 0.0030970359221100807, + 0.002222504699602723, + -0.0071787056513130665, + 0.028010165318846703, + -0.0021926197223365307, + 0.036516398191452026, + -0.02296430803835392, + 0.020334424450993538, + -0.02497761882841587, + -0.014495826326310635, + 0.02846316061913967, + 0.015477314591407776, + 0.013287841342389584, + 0.004152450244873762, + 0.011614277958869934, + 0.009160556830465794, + -0.034477923065423965, + -0.006241258699446917, + 0.013917000032961369, + -0.011796734295785427, + 0.027783667668700218, + -0.0032433154992759228, + -0.01591772586107254, + -0.002939746016636491, + 0.010299335233867168, + 0.007505868561565876, + 0.012746764346957207, + -0.007858198136091232, + 0.0008033575722947717, + 0.029117485508322716, + -0.012262311764061451, + -0.0031253481283783913, + -0.004114700946956873, + 0.017616456374526024, + 0.003369147190824151, + 0.0026047187857329845, + -0.016358137130737305, + 0.001777374534867704, + 0.013778585009276867, + -0.0020840896759182215, + 0.009519177488982677, + -0.013262675143778324, + -0.009280097670853138, + 0.015187901444733143, + -0.009003267623484135, + -0.00023003631213214248, + 0.02310272306203842, + -0.002873684512451291, + -0.02851349301636219, + -0.004429280292242765, + 0.00948772020637989, + -0.009173139929771423, + 0.010286752134561539, + 0.0010813672561198473, + -0.011733817867934704, + 4.939882273902185e-5, + -0.016647551208734512, + 0.03417592495679855, + 0.002969631226733327, + -0.035308413207530975, + -0.015364066697657108, + -0.0022523896768689156, + 0.006363944616168737, + 0.0021784636192023754, + 0.0067194197326898575, + -0.013615003786981106, + 0.009852631948888302, + -0.01321234181523323, + -0.012117604725062847, + -0.007417786400765181, + -0.0053730192594230175, + 0.004218512214720249, + -0.01776745356619358, + -0.007612825836986303, + -0.008072111755609512, + 0.004253115970641375, + 0.0008981247083283961, + -0.005797701422125101, + -0.02258681319653988, + -0.0013574109179899096, + -0.0040800971910357475, + -0.001456503407098353, + -0.0032967939041554928, + -0.0155402310192585, + 0.0018796129152178764, + -0.002318451413884759, + 0.023404721170663834, + 0.012564308010041714, + 0.0019330914365127683, + -0.0058417427353560925, + -0.005033273249864578, + -0.008292317390441895, + 0.006788627244532108, + -0.014609075151383877, + -0.006024198606610298, + -0.0020683608017861843, + 0.020586086437106133, + 0.0006732002948410809, + -0.007814156822860241, + -0.0030891713686287403, + 0.016660133376717567, + -0.009695342741906643, + -0.01959201507270336, + 0.024096794426441193, + 0.0004986086278222501, + -0.012482517398893833, + 0.0131997587159276, + 0.0065998793579638, + -0.008059528656303883, + -0.028312161564826965, + 0.024776287376880646, + 0.01648396998643875, + -0.001793103525415063, + 0.013350756838917732, + 0.007153539452701807, + -0.0008973382064141333, + 0.022876227274537086, + 0.012948094867169857, + 0.014583908952772617, + 0.013275258243083954, + 0.002543375827372074, + -0.0047753178514540195, + -0.0004388384986668825, + -0.02001984417438507, + 0.004715547896921635, + 0.00858802255243063, + -0.015590563416481018, + -0.017566123977303505, + -0.016496552154421806, + -0.004039201885461807, + -0.03936019539833069, + -0.005656140856444836, + 0.011834483593702316, + 0.0052566248923540115, + 0.009890382178127766, + -0.005369873251765966, + 0.0204980056732893, + 0.005678161513060331, + 0.008971809409558773, + 0.009437386877834797, + -0.011180157773196697, + -0.007675741799175739, + -0.01552764791995287, + -0.01921452023088932, + 8.282290218630806e-5, + -0.0049042957834899426, + -0.014835572801530361, + 0.023970963433384895, + -0.02298947609961033, + -0.007807864807546139, + -0.012356685474514961, + 0.007895947434008121, + -0.0013479734770953655, + -0.019931761547923088, + 0.017893286421895027, + 0.007461827713996172, + 0.0008926195441745222, + 0.0017993951914831996, + -0.0036648521199822426, + -0.0121931042522192, + -0.004743860103189945, + -0.03236394748091698, + 0.006643920671194792, + -0.006763461045920849, + 0.011261948384344578, + 0.0005324259400367737, + -0.006439443677663803, + -0.0064866309985518456, + -0.0073359957896173, + 0.011784151196479797, + -0.011010285466909409, + -0.018988022580742836, + 0.008097277954220772, + 0.015137569047510624, + -0.003976285923272371, + 0.007593950722366571, + 0.012809679843485355, + -0.008292317390441895, + -0.005599516443908215, + 0.016358137130737305, + -0.0031457957811653614, + -0.01125565730035305, + 0.006574713159352541, + -0.004608590621501207, + -0.0020526316948235035, + -0.00866981316357851, + 0.022410647943615913, + -0.012532849796116352, + -0.009569510817527771, + -0.017540957778692245, + 0.0010766485938802361, + 0.0005009679589420557, + -0.001977132633328438, + 0.0002526467142160982, + -0.022473564371466637, + 0.01238185167312622, + 0.0010970962466672063, + 0.027028676122426987, + 0.050685059279203415, + 0.025518694892525673, + -0.02692801132798195, + 0.01026158593595028, + -0.020674169063568115, + 0.017855536192655563, + -0.013514338061213493, + -0.0017113129142671824, + 0.011758984066545963, + 0.004498487804085016, + -0.012306353077292442, + 0.011796734295785427, + 0.0021532971877604723, + -0.0015784030547365546, + 0.026198185980319977, + -0.003548457520082593, + -0.002754144137725234, + -0.0033125230111181736, + -8.277375309262425e-5, + -0.012237145565450191, + -0.008311192505061626, + -0.02213381789624691, + 0.016496552154421806, + 0.009814882650971413, + -0.025015367195010185, + 0.006524380296468735, + 0.005360436160117388, + 0.016886631026864052, + 0.0013731397921219468, + -0.005269207991659641, + -0.0046652150340378284, + -0.009286388754844666, + -0.02082516811788082, + 0.00242855423130095, + -0.02650018408894539, + 0.009280097670853138, + -0.0155402310192585, + 0.021504659205675125, + -0.04746376723051071, + -3.684021794470027e-5, + -0.020170841366052628, + 0.029041986912488937, + 0.020409923046827316, + 0.018799275159835815, + -0.010727163404226303, + 0.0032370237167924643, + 0.010217544622719288, + -0.0018937690183520317, + -0.02175632305443287, + 0.0003841803118120879, + -0.0058952211402356625, + 0.002348336623981595, + 0.010135754011571407, + -0.03065263293683529, + 0.003059286391362548, + -0.03769921511411667, + 0.016433637589216232, + -0.0012370841577649117, + 0.011431821621954441, + -0.014130914583802223, + -0.013539505191147327, + 0.002670780522748828, + 0.006288445554673672, + 0.03593757003545761, + -0.0020211737137287855, + 0.00017341198690701276, + 0.0072416216135025024, + 0.011689776554703712, + -0.039083365350961685, + 0.007952571846544743, + -0.003526437096297741, + -0.006876709405332804, + 0.010582457296550274, + 0.012117604725062847, + 0.01212389674037695, + 0.01030562724918127, + -0.01042516715824604, + -0.030350636690855026, + 0.01322492491453886, + 0.014017665758728981, + 0.02564452774822712, + 0.009751967154443264, + 0.004724984988570213, + -0.004724984988570213, + 0.019315185025334358, + 0.0329679399728775, + -0.001261464087292552, + 0.006983666680753231, + -0.0020573504734784365, + -0.02979697659611702, + 0.0005540532874874771, + 0.0015194193692877889, + -0.005379310809075832, + 0.023618634790182114, + -0.005678161513060331, + 0.0131997587159276, + -0.002958620898425579, + 0.006713128183037043, + -0.010632789693772793, + 0.01650913618505001, + -0.01596805825829506, + -0.009343013167381287, + 0.0114569878205657, + 0.002886267611756921, + 0.008940351195633411, + 0.014810406602919102, + 0.020724501460790634, + 0.00476273475214839, + -0.010708288289606571, + 0.01053212396800518, + -0.0029806415550410748, + -0.027557170018553734, + -0.005023835692554712, + 0.011331155896186829, + -0.011614277958869934, + -0.035862069576978683, + -0.014797823503613472, + -0.015615729615092278, + 0.020674169063568115, + 0.010186086408793926, + 0.007436661049723625, + 0.007122081704437733, + 0.010563582181930542, + -0.0020935270003974438, + 0.03299310430884361, + -0.004517362453043461, + 0.0034509380348026752, + 0.006813793443143368, + -0.004426134750247002, + 0.009745675139129162, + 0.016056140884757042, + 0.007990321144461632, + 0.006952208466827869, + 0.002677072072401643, + -0.008474773727357388, + 0.009758258238434792, + -0.0015626740641891956, + 0.004127284046262503, + -0.0103182103484869, + 0.01715087890625, + 0.005495705176144838, + -0.016332970932126045, + 0.0010011495323851705, + -0.003809558693319559, + 0.014206413179636002, + 0.02360605075955391, + -0.017377376556396484, + -0.003768663387745619, + 0.026525350287556648, + -0.005461101420223713, + -0.011180157773196697, + 0.004501633811742067, + -0.009437386877834797, + -0.0016185118583962321, + 0.021378828212618828, + 0.010657955892384052, + 0.023064974695444107, + 0.01693696342408657, + -0.011073200963437557, + -0.008965517394244671, + 0.013250092044472694, + -0.004290865268558264, + 0.014609075151383877, + 0.006168905645608902, + 0.0053069572895765305, + 0.0131997587159276, + -0.017868120223283768, + 0.022851061075925827, + 0.018610527738928795, + 0.0190257728099823, + 0.0035516032949090004, + -0.006631337571889162, + 0.003683726768940687, + -0.013715669512748718, + -0.0223728995770216, + -0.008543981239199638, + 0.005492559168487787, + 0.009166848845779896, + 0.0012079855659976602, + -0.0035295828711241484, + -0.03553490713238716, + -0.014596492052078247, + -0.02341730333864689, + 0.00793369673192501, + -0.01637072116136551, + 0.0351070798933506, + -0.0010176649084314704, + -0.013564671389758587, + 0.008078403770923615, + 0.005999032407999039, + 0.0075436183251440525, + 0.02650018408894539, + -0.005275499541312456, + 0.007895947434008121, + -0.0041870540007948875, + 0.005926679354161024, + -0.012727889232337475, + -0.016874048858880997, + 0.01218052115291357, + -0.005970720201730728, + 0.0065998793579638, + 0.0016122203087434173, + 0.004797338508069515, + 0.01128082349896431, + 0.011381489224731922, + -0.02723000757396221, + -0.01918935403227806, + -0.015879977494478226, + 0.006883000954985619, + -0.010047671385109425, + 0.013325590640306473, + 0.014105748385190964, + -0.02728033997118473, + 0.005297520197927952, + -0.004426134750247002, + -0.00793369673192501, + 0.01304876059293747, + -0.004592861980199814, + -0.013174592517316341, + -0.002139141084626317, + -0.011796734295785427, + 0.009399637579917908, + -0.007600242272019386, + 0.01650913618505001, + 0.032036785036325455, + 0.0012386570451781154, + -0.049779072403907776, + 0.004813067615032196, + 0.03593757003545761, + -0.016093891113996506, + -0.017377376556396484, + 0.0004986086278222501, + -0.0008855414926074445, + -0.00515910517424345, + -0.00473756855353713, + 0.004863400012254715, + 0.026701513677835464, + -0.0038976408541202545, + -0.005464247427880764, + -0.01895027421414852, + 0.006156322080641985, + 0.04310998320579529, + -0.027204841375350952, + -0.017842954024672508, + 0.024021295830607414, + 0.02329147234559059, + 0.015351483598351479, + 0.022926559671759605, + 0.001907925121486187, + -0.00261887488886714, + 0.010148337110877037, + 0.012432185001671314, + 0.024285543709993362, + -0.022309983149170876, + -0.012469934299588203, + 0.007291954476386309, + 0.009292680770158768, + 0.012551724910736084, + -0.02239806577563286, + -0.0017695100978016853, + -0.003005807753652334, + 0.01577931083738804, + -0.005272353533655405, + 0.007537326775491238, + -0.02548094466328621, + -0.004872837569564581, + -0.0015799759421497583, + 0.029545312747359276, + -0.014445493929088116, + 0.009802299551665783, + -0.010009922087192535, + 0.0017490624450147152, + -0.013451422564685345, + -0.005300665739923716, + -0.005366727709770203, + -0.004095825832337141, + 0.004086388740688562, + -0.007084331940859556, + 0.012922928668558598, + -0.0067823356948792934, + 0.02125299535691738, + -0.014508410356938839, + -0.0011340593919157982, + -0.01610647328197956, + -0.0011419238289818168, + 0.0015886268811300397, + -0.025556445121765137, + 0.01220568735152483, + -0.011972898617386818, + 0.014105748385190964, + 0.014621658250689507, + -0.006263279356062412, + -0.009777133353054523, + -0.01750320754945278, + 0.009129099547863007, + -0.002069933572784066, + -0.01833369769155979, + 0.016836298629641533, + -0.001465940847992897, + 0.023455053567886353, + 0.006285300012677908, + -0.023782216012477875, + 0.012400726787745953, + 0.023379553109407425, + -0.003211857518181205, + 0.006908167619258165, + -0.0030702967196702957, + 0.006807501893490553, + -0.019982093945145607, + -0.019541682675480843, + -0.008726437576115131, + 0.024826619774103165, + 0.03062746673822403, + -0.008386691100895405, + 0.014986570924520493, + -0.020359590649604797, + -0.027506837621331215, + -0.0385800376534462, + -0.0009539625607430935, + -0.0008855414926074445, + -0.008795645087957382, + 0.004618028178811073, + -0.016672717407345772, + -0.017842954024672508, + 0.002881548833101988, + 0.00653067184612155, + 0.00012032668746542186, + 0.016660133376717567, + 0.012117604725062847, + -0.00876418687403202, + -0.005703327711671591, + 0.0023735028225928545, + 0.001665698830038309, + -0.0035830612760037184, + -0.018295947462320328, + -0.007166122552007437, + -0.005303811747580767, + 0.005467392969876528, + 0.0009862069273367524, + -0.001959830755367875, + 0.007468119263648987, + 0.00141875387635082, + 0.0011348457774147391, + -0.001687719370238483, + -0.013287841342389584, + -0.01760387234389782, + 4.003516733064316e-5, + 0.0016200848622247577, + 0.007675741799175739, + 0.0055460380390286446, + -0.011123533360660076, + -0.004017181228846312, + -0.0019425288774073124, + 0.001041258336044848, + 0.02256164699792862, + 0.006209800951182842, + -0.00855027325451374, + -0.004193345550447702, + -0.0018104054033756256, + 0.011236782185733318, + -0.01845952868461609, + -0.003976285923272371, + -0.004032910335808992, + 0.00777011550962925, + -0.00777011550962925, + -0.012344102375209332, + 0.00235462817363441, + 0.008197943679988384, + 0.018258199095726013, + -0.02087550051510334, + -0.019151603803038597, + -0.002964912448078394, + -0.0033282518852502108, + 0.005448518320918083, + 0.010274169035255909, + 0.0072982460260391235, + -0.003189836861565709, + 0.0024615852162241936, + 0.013778585009276867, + -0.001818269956856966, + 0.01323750801384449, + -0.022259650751948357, + 0.016194555908441544, + 0.0037120389752089977, + -0.002202057046815753, + -0.021051665768027306, + -0.005712765268981457, + -0.0024458561092615128, + -0.013778585009276867, + 0.016634967178106308, + -0.011438113637268543, + -0.025065699592232704, + -0.02071191929280758, + -0.025820691138505936, + 0.007354870438575745, + 0.014181246981024742, + 0.01207356434315443, + 0.002607864560559392, + 0.016433637589216232, + -0.009575801901519299, + 0.006807501893490553, + 0.007732365746051073, + 0.005017544142901897, + -0.0038661828730255365, + 0.012948094867169857, + 0.01469715777784586, + -0.0006106775836087763, + -0.004372655879706144, + -0.01983109675347805, + 0.0064740474335849285, + 0.011048034764826298, + 0.014445493929088116, + -0.0030467030592262745, + 0.015565397217869759, + 0.012237145565450191, + 0.0006338778184726834, + 0.0009256504126824439, + -0.01552764791995287, + 0.010324501432478428, + -0.006776044145226479, + -0.018157532438635826, + 0.005165396723896265, + -0.0050710225477814674, + 0.0021422868594527245, + -0.038605205714702606, + 0.038252875208854675, + 0.010739746503531933, + -0.013099092990159988, + 0.007977738045156002, + -0.006794918794184923, + -0.0003373865911271423, + -0.0002762402000371367, + -0.005536600481718779, + 0.020749669522047043, + 0.03475475311279297, + 0.012897762469947338, + 9.304674313170835e-5, + -0.005325832404196262, + -0.020334424450993538, + 0.015074653550982475, + -0.01299842819571495, + -0.006920750718563795, + -0.0053635817021131516, + -0.011129825375974178, + 0.014546159654855728, + 0.017691954970359802, + -0.012539141811430454, + -0.013703086413443089, + 0.02500278502702713, + -0.014734907075762749, + -0.0019629765301942825, + -0.023052390664815903, + -0.021529825404286385, + 0.011419238522648811, + 0.0170124638825655, + 0.01209873054176569, + -0.0008344223024323583, + 0.015791894868016243, + 0.00033640352194197476, + 0.005844888277351856, + -0.0028768302872776985, + 0.010148337110877037, + 0.018132366240024567, + -0.01200435683131218, + -0.0059486995451152325, + -0.012690139934420586, + -0.00798402912914753, + 0.02395838126540184, + 0.00782673992216587, + -0.005206292029470205, + -0.01798136904835701, + 0.007549909874796867, + -0.015955476090312004, + 0.012627224437892437, + -0.003941682167351246, + -0.0022476711310446262, + 0.010840412229299545, + -0.015666062012314796, + -0.017025046050548553, + 0.010072837583720684, + -0.007524743210524321, + -0.005099334754049778, + 0.008097277954220772, + -0.00217689061537385, + -0.0006456745904870331, + 0.01966751553118229, + 0.00743036950007081, + 0.019604599103331566, + 0.00864464696496725, + -0.0172892939299345, + -0.011501029133796692, + 0.0015689656138420105, + 0.0022256504744291306, + -0.009129099547863007, + 0.030853964388370514, + 0.006021053064614534, + -0.00600217841565609, + 0.034930914640426636, + 0.004331760574132204, + 0.02524186484515667, + 0.009261222556233406, + -0.0013157291105017066, + 0.005379310809075832, + 0.007260496728122234, + -0.006395402830094099, + -0.001351119251921773, + -0.017465457320213318, + 0.011721234768629074, + 0.009991046972572803, + -0.012564308010041714, + -0.029041986912488937, + -0.005926679354161024, + 0.01551506482064724, + 0.01857277750968933, + 0.0008784634410403669, + 0.008072111755609512 + ], + "2414e950-98b7-436d-ba18-de3485c35513": [ + -0.008920653723180294, + -0.011811546050012112, + -0.01218351162970066, + 0.0667189210653305, + -0.04275649040937424, + -0.019812073558568954, + -0.010264950804412365, + 0.020229719579219818, + -0.016940759494900703, + 0.03889326751232147, + 0.013782312162220478, + 0.010467248037457466, + 0.015374586917459965, + 0.005158578511327505, + 0.008783613331615925, + -0.01975986734032631, + -0.02157401666045189, + 0.032889608293771744, + -0.030984099954366684, + 0.010062653571367264, + 0.06588362902402878, + -0.005187944043427706, + -0.026298634707927704, + -0.0020523376297205687, + 0.01898983307182789, + -0.022317947819828987, + -0.008620470762252808, + 0.005158578511327505, + -0.05262337252497673, + -0.001742366119287908, + 0.006581184454262257, + -0.0004894286976195872, + 0.01758027821779251, + 0.03497783839702606, + 0.009109899401664734, + -0.050169702619314194, + -0.009919088333845139, + 0.017253993079066277, + -0.007830859161913395, + 0.027434110641479492, + 0.013677900657057762, + 0.036282978951931, + -0.02798227034509182, + 0.02263118326663971, + -0.028817562386393547, + -0.02025582268834114, + -0.030435938388109207, + -0.0020523376297205687, + -0.010382413864135742, + -0.011491785757243633, + 0.006962938699871302, + -0.0026004977989941835, + -0.017058221623301506, + 0.006431092973798513, + 0.042547669261693954, + 0.008600893430411816, + -0.008339865133166313, + 0.043878912925720215, + -0.010388939641416073, + -0.05909688398241997, + -0.011061088182032108, + -0.008489956147968769, + 0.0007512730662710965, + -0.004032892640680075, + 0.013377717696130276, + -0.004780087154358625, + -0.020360233262181282, + 0.04492302983999252, + -0.022396257147192955, + 0.008561739698052406, + -0.004887761082500219, + 0.033385563641786575, + -0.027434110641479492, + 0.05298881232738495, + 0.020738724619150162, + -0.0024389864411205053, + 0.03521276265382767, + 0.019276965409517288, + 0.027146978303790092, + -0.0250326469540596, + 0.04241715371608734, + -0.02952233888208866, + 0.04074656963348389, + 0.03549989312887192, + 0.033672694116830826, + -0.001405476126819849, + -0.01490473560988903, + -0.030488144606351852, + 0.012066048569977283, + -0.03878885507583618, + 0.010663019493222237, + 0.031558360904455185, + 0.001721157575957477, + -0.001134658814407885, + -0.012274871580302715, + 0.01679719239473343, + -0.003207389498129487, + -0.0012064417824149132, + 0.023740554228425026, + 0.006858527660369873, + 0.0007182366098277271, + 0.04382670670747757, + 0.006052601616829634, + -0.004551686812192202, + 0.004910601302981377, + -0.015883592888712883, + 0.025724371895194054, + 0.02137824520468712, + -0.002691857749596238, + -0.0071195559576153755, + 0.004939966835081577, + -0.06410863250494003, + -0.0021779576782137156, + 0.005207521375268698, + -0.028478223830461502, + -0.009429659694433212, + -0.027146978303790092, + -0.013547386042773724, + -0.02435397170484066, + -0.03372490033507347, + 0.019068142399191856, + -0.021169422194361687, + 0.003977423999458551, + -0.006010184530168772, + -0.015818335115909576, + 0.02559385821223259, + -0.02016446180641651, + -0.0004568001313600689, + 0.031192922964692116, + 0.01651006191968918, + -0.0028337922412902117, + -0.03727488964796066, + 0.012046471238136292, + -0.03388151898980141, + 0.0050998469814658165, + 0.013403820805251598, + -0.0010645074071362615, + 0.06520495563745499, + -0.011511363089084625, + -0.013821466825902462, + -0.023061880841851234, + 0.005233624018728733, + -0.05118771642446518, + 0.010591236874461174, + -0.0025711320340633392, + -0.026011504232883453, + -0.019237810745835304, + 0.031375642865896225, + -0.03657011315226555, + 0.004120989702641964, + -0.039780765771865845, + -0.015505101531744003, + -0.030696967616677284, + 0.007113030180335045, + 0.06598804146051407, + 0.04085098206996918, + -0.021260783076286316, + 0.01949883997440338, + 0.0022301634307950735, + 0.047716036438941956, + 0.036909449845552444, + -0.03970245644450188, + -0.0012243874371051788, + 0.008085361681878567, + 0.07110419869422913, + -0.00682589877396822, + 0.0374315083026886, + 0.015231020748615265, + 0.00020984254661016166, + 0.010623865760862827, + 0.0023247862700372934, + -0.03320284187793732, + 0.05434616282582283, + -0.00922083668410778, + 0.03380320966243744, + -0.016888553276658058, + 0.04119031876325607, + 0.01900288462638855, + 0.024810772389173508, + -0.013495180755853653, + -0.01288828905671835, + -0.027277491986751556, + 0.041477449238300323, + -0.0011330274865031242, + -0.03215872868895531, + 0.021339090541005135, + -0.017123479396104813, + 0.024419229477643967, + -0.006574658676981926, + 0.027173081412911415, + -0.005710001569241285, + 0.00023839256027713418, + 0.02281390316784382, + 0.013743157498538494, + -0.029913881793618202, + -0.028008373454213142, + 0.0028142149094492197, + -0.012666414491832256, + 0.0063136303797364235, + 0.05967114493250847, + 0.0019854491110891104, + -0.03302012383937836, + -0.011778917163610458, + 0.02952233888208866, + -0.044192150235176086, + 0.009710265323519707, + -0.004506006836891174, + -0.02426261268556118, + 0.026142017915844917, + -0.014656757935881615, + 0.05069176107645035, + -0.022774748504161835, + 0.02541113831102848, + 0.018389467149972916, + -0.025058750063180923, + 0.016588369384407997, + -0.006127647124230862, + 0.006799796130508184, + 0.02225269190967083, + -0.05779173970222473, + 0.0020327605307102203, + -0.009194733574986458, + -0.0005510151386260986, + -0.019172552973031998, + -0.050561245530843735, + 0.008098413236439228, + -0.00434286380186677, + 0.004672412760555744, + -0.016771089285612106, + -0.06113290786743164, + 0.06436966359615326, + -0.018585238605737686, + 0.025711320340633392, + -0.012907866388559341, + 0.0058698817156255245, + 0.015270175412297249, + 0.007452367804944515, + -0.004466852638870478, + -0.0198642797768116, + -0.029391825199127197, + -0.009338299743831158, + -0.009370927698910236, + -0.02816499024629593, + -0.02522841840982437, + -0.03221093490719795, + 0.0074784704484045506, + 0.016027158126235008, + 0.05784394592046738, + 0.011478734202682972, + -0.004554949700832367, + -0.015687821432948112, + 0.005550121422857046, + 0.001447893213480711, + 0.005236886907368898, + -0.03596974536776543, + 0.008920653723180294, + 0.024132097139954567, + -0.04909948632121086, + -0.00935787707567215, + 0.0008630259544588625, + -0.025241469964385033, + -0.00935787707567215, + -0.048264194279909134, + 0.019224759191274643, + 0.03750981390476227, + -0.07883065193891525, + 0.03847562149167061, + 0.017619432881474495, + 0.011126345954835415, + 0.04507964476943016, + 0.007726447656750679, + -0.024876030161976814, + -0.00907727051526308, + 0.04688074439764023, + -0.02273559384047985, + -0.0015604618238285184, + 0.024562794715166092, + 0.009945191442966461, + -0.002189377788454294, + 0.0037914409767836332, + -0.040642157196998596, + -0.002241583541035652, + 0.018846267834305763, + -0.009638482704758644, + -0.017214838415384293, + 0.03234144672751427, + 0.000380938668968156, + -0.025541651993989944, + -0.005292355548590422, + 0.01921170763671398, + 0.0007651401683688164, + 0.006297315936535597, + 0.009136002510786057, + 0.01682329550385475, + 0.003827332518994808, + 0.017815204337239265, + -0.05951453000307083, + 0.015896644443273544, + -0.022383205592632294, + 0.003941532224416733, + -0.018076233565807343, + 0.013018803671002388, + -0.010897945612668991, + -0.031662773340940475, + 0.04390501603484154, + -0.019720714539289474, + 0.015100507065653801, + 0.04552339389920235, + -0.03928481042385101, + 0.02999219112098217, + 0.021456554532051086, + -0.020477697253227234, + -0.025867938995361328, + -0.04108590632677078, + -0.006551818922162056, + 0.032915711402893066, + -0.060976289212703705, + 0.01900288462638855, + -0.015191867016255856, + -0.003921955358237028, + -0.023923274129629135, + 0.001165656023658812, + -0.03837120905518532, + 0.01218351162970066, + 0.03612636402249336, + -0.041294731199741364, + 0.042077817022800446, + 0.017541125416755676, + -0.005615378729999065, + -0.006590973120182753, + -0.04727228730916977, + 0.003993737976998091, + -0.003088294994086027, + -0.015896644443273544, + -0.021130267530679703, + -0.009964767843484879, + -0.034246958792209625, + -0.039963483810424805, + -0.004016578197479248, + -0.006982516031712294, + -0.0138084152713418, + -0.002430829219520092, + 0.012849134393036366, + 0.005726315546780825, + -0.026624921709299088, + -0.0054261330515146255, + -0.011570094153285027, + 0.010924048721790314, + 0.030827481299638748, + 0.0015792233170941472, + 0.0008071495103649795, + 0.034429676830768585, + 0.03445577993988991, + 0.017697742208838463, + 0.034429676830768585, + -0.025450292974710464, + -0.03683114051818848, + 0.006799796130508184, + 0.006333207245916128, + -0.007837384939193726, + -0.016170723363757133, + -0.03495173528790474, + -0.013253728859126568, + -0.06353437155485153, + -0.017632484436035156, + 0.012672940269112587, + 0.020582107827067375, + -0.006059127394109964, + -0.01898983307182789, + -0.021365193650126457, + -0.014239111915230751, + -0.0039154295809566975, + -0.02340121753513813, + -0.06113290786743164, + -0.00515531562268734, + -0.015779180452227592, + 0.04105980321764946, + 0.007113030180335045, + -0.016314290463924408, + 0.017019066959619522, + 0.0033330093137919903, + 0.010532505810260773, + -0.04338296130299568, + 0.013521283864974976, + 0.017423661425709724, + 0.023531731218099594, + -0.023335959762334824, + 0.006339733023196459, + 0.010852266103029251, + -0.008222402073442936, + -0.04620206728577614, + -0.010982779785990715, + -0.012849134393036366, + 0.016575317829847336, + -0.009540596976876259, + -0.006457196082919836, + -0.0055207558907568455, + -0.03761422634124756, + 0.023127136752009392, + 0.0050900583155453205, + -0.019812073558568954, + -0.007047773338854313, + 0.003667452372610569, + 0.011550516821444035, + 0.018676599487662315, + -0.006310367491096258, + 0.03255027160048485, + -0.003912166692316532, + 0.0023933062329888344, + 0.02787785790860653, + -0.008757511153817177, + 0.0009429659694433212, + -0.006271212827414274, + 0.016170723363757133, + 0.013508232310414314, + 0.01851998269557953, + -0.022670337930321693, + 0.055912334471940994, + -0.02837381325662136, + 0.02798227034509182, + 0.02816499024629593, + 0.017214838415384293, + 0.017645535990595818, + 0.029939984902739525, + -0.0250326469540596, + 0.003481469349935651, + 0.012796929106116295, + 0.011472208425402641, + 0.0025124007370322943, + -0.021051960065960884, + 0.05283219739794731, + 0.03829289972782135, + -0.003334640758112073, + 0.01844167336821556, + -0.02426261268556118, + -0.014213009737432003, + 0.008783613331615925, + 0.020216668024659157, + 0.014735066331923008, + -0.006620338652282953, + -0.0020621262956410646, + 0.011172025464475155, + 0.027903961017727852, + -0.01863744482398033, + -0.05129212886095047, + -0.017332302406430244, + -0.028399916365742683, + 0.004956281278282404, + -0.01199426595121622, + 0.019733764231204987, + 0.004235189873725176, + 0.037405405193567276, + -0.04643699526786804, + -0.03409034013748169, + 0.008509533479809761, + 0.01682329550385475, + 0.02255287393927574, + -0.011876802891492844, + 0.02092144452035427, + -0.03946752846240997, + 0.01159619726240635, + -0.0016501904465258121, + 0.042547669261693954, + -0.01140695158392191, + -0.010467248037457466, + -0.02779955044388771, + -0.01880711317062378, + -0.026089811697602272, + 0.008085361681878567, + 0.015740027651190758, + -0.011517888866364956, + -0.026585767045617104, + 0.0027244864031672478, + 0.044374868273735046, + -0.0009527545189484954, + -0.028530430048704147, + -0.0020409177523106337, + -0.009038116782903671, + -0.014447934925556183, + -0.01341687235981226, + -0.007863488048315048, + 0.004832292441278696, + -0.010062653571367264, + -0.021182473748922348, + -0.015348483808338642, + -0.00773949921131134, + -0.0446619987487793, + -0.004678938537836075, + -0.010669545270502567, + 0.003114397870376706, + 0.001094688894227147, + 0.02722528763115406, + 0.011785442940890789, + 0.026481354609131813, + 0.01901593618094921, + -0.014134700410068035, + 0.022892212495207787, + -0.02635084092617035, + 0.0008556845132261515, + -0.03803187236189842, + 0.010819637216627598, + -0.0031633407343178988, + 0.02730359509587288, + 0.03236754983663559, + -0.01632734201848507, + 0.017345352098345757, + 0.00415361812338233, + 0.012098677456378937, + 0.0047083040699362755, + -0.022109124809503555, + -0.024667207151651382, + 0.03510835021734238, + -0.043696194887161255, + 0.028895869851112366, + 0.011498311534523964, + 0.0007785994675941765, + -0.00960585381835699, + 0.0007088559214025736, + 0.011067613959312439, + 0.007178287487477064, + -0.0207256730645895, + -0.0046234698966145515, + -0.021900303661823273, + -0.017632484436035156, + -0.025137057527899742, + 0.011380848474800587, + -0.015492049977183342, + -0.01995563879609108, + 0.018663547933101654, + -0.03359438478946686, + -0.024810772389173508, + 0.014996095560491085, + -0.017723845317959785, + -0.004643046762794256, + 0.00271143508143723, + 0.012307500466704369, + -0.010493351146578789, + -0.024601949378848076, + 0.003078506560996175, + -0.01160924881696701, + 0.0013157475041225553, + 0.03521276265382767, + 0.006000395864248276, + -0.019081193953752518, + 0.023753605782985687, + 0.01490473560988903, + 0.006316893268376589, + -0.009494916535913944, + -0.030201014131307602, + 0.029078589752316475, + -0.0316888764500618, + 0.0046365209855139256, + -0.03599584847688675, + -0.007778653409332037, + -0.002706540748476982, + 0.005889458581805229, + 0.008992436341941357, + 0.011641877703368664, + -0.022187434136867523, + -0.05254506319761276, + 0.01160924881696701, + 0.005605590064078569, + 0.011517888866364956, + 0.018754906952381134, + -0.02435397170484066, + 0.012059522792696953, + -0.028138887137174606, + 0.031375642865896225, + 0.009096847847104073, + 0.02675543539226055, + 0.026481354609131813, + -0.0019022461492568254, + 0.027460211887955666, + 0.032915711402893066, + 0.003235123585909605, + 0.0012137831654399633, + 0.015048300847411156, + -0.005011749919503927, + -0.022422360256314278, + 0.012601157650351524, + 0.024210406467318535, + 0.0051194243133068085, + 0.01213130634278059, + -0.021456554532051086, + 0.023166291415691376, + -0.0020376548636704683, + -0.03228924423456192, + -0.005788309965282679, + -0.01671888493001461, + 0.03771863877773285, + 0.01632734201848507, + 0.015583409927785397, + 0.0046136812306940556, + 0.009299145080149174, + 0.004140566568821669, + 0.037405405193567276, + 0.01442183181643486, + 0.013873672112822533, + 0.019446633756160736, + 0.0015890118665993214, + 0.011158973909914494, + 0.01031063124537468, + -0.013925877399742603, + -0.010415042750537395, + -0.015818335115909576, + 0.007524150423705578, + -0.0020376548636704683, + 0.0009029959328472614, + -0.007556779310107231, + -0.00364134949631989, + -0.013534334488213062, + 0.007184813264757395, + 0.0005926165613345802, + -0.007165235932916403, + 0.0027832179330289364, + -0.02263118326663971, + 0.0013051432324573398, + 0.013325512409210205, + 0.020869240164756775, + 0.04346126690506935, + 0.03372490033507347, + -0.020190564915537834, + 0.04758552089333534, + -0.0221613310277462, + 0.02281390316784382, + 0.014004186727106571, + -0.025176212191581726, + -0.005863355938345194, + -0.010441145859658718, + -0.0046887267380952835, + -0.016157671809196472, + -0.0198642797768116, + 0.029391825199127197, + 0.01126338541507721, + 0.006587710231542587, + -0.01055860798805952, + -0.01891152560710907, + 0.014578449539840221, + -0.006975990254431963, + -0.02960064820945263, + 0.0075828819535672665, + 0.01551815215498209, + 0.0012480431469157338, + 0.0563821867108345, + -0.002810952253639698, + 0.042939212173223495, + 0.003209020709618926, + 0.001132211764343083, + 0.0110806655138731, + 0.04124252498149872, + -0.017710793763399124, + 0.026494406163692474, + 0.0021991662215441465, + 0.0007524966495111585, + 0.024092942476272583, + -0.02255287393927574, + 0.002969200722873211, + 0.004215612541884184, + 0.038736648857593536, + 0.00044211724889464676, + -0.006222269963473082, + -0.022187434136867523, + 0.011309065856039524, + -0.0018500405130907893, + 0.006143961567431688, + -0.004855132661759853, + 0.011805020272731781, + 0.013677900657057762, + -0.009416608139872551, + 0.009951717220246792, + 0.00766119034960866, + -0.029078589752316475, + -0.012979649007320404, + -0.003824069630354643, + 0.0006554265855811536, + 0.007746024988591671, + 0.01776299811899662, + -0.0099321398884058, + -0.003895852481946349, + -0.03150615841150284, + -0.011191602796316147, + -0.026885949075222015, + -0.020660417154431343, + -0.0014152646763250232, + -0.03236754983663559, + -0.010075705125927925, + -0.025254521518945694, + 0.004486429505050182, + -0.04878625273704529, + -0.0055860127322375774, + -0.02080398239195347, + 0.008228927850723267, + -0.016771089285612106, + 0.015100507065653801, + 0.023335959762334824, + -0.026859845966100693, + -0.0022676861844956875, + -0.020281925797462463, + 0.018128439784049988, + -0.003406423842534423, + -0.021234679967164993, + -0.0006166801322251558, + 0.014878632500767708, + -0.04393111914396286, + 0.056486599147319794, + -0.012052997015416622, + -0.010917522944509983, + -0.01995563879609108, + 0.008222402073442936, + 0.013097112067043781, + -0.03056645393371582, + -0.011354745365679264, + -0.0034618922509253025, + 0.023479526862502098, + 0.013743157498538494, + -0.010467248037457466, + -0.011517888866364956, + -0.011132871732115746, + -0.049621544778347015, + 0.036726728081703186, + -0.0028859979938715696, + 0.010134437121450901, + 0.022030817344784737, + -0.02644220180809498, + 0.0014144489541649818, + 0.015922747552394867, + -0.00826808251440525, + -0.011700608767569065, + 0.012300974689424038, + 0.007909167557954788, + 0.01403028890490532, + -0.012405386194586754, + 0.01585748977959156, + -0.001794571871869266, + 0.004336338024586439, + -0.014930837787687778, + 0.0006166801322251558, + -0.0005098215769976377, + 0.006858527660369873, + -0.01691465638577938, + 0.01652311347424984, + -0.002357414923608303, + 0.01399113517254591, + -0.032054316252470016, + -0.0029610435012727976, + 0.028217196464538574, + 0.019825125113129616, + -0.01456539798527956, + -0.024484485387802124, + 0.021038908511400223, + 0.03821459412574768, + -0.041503552347421646, + 0.038736648857593536, + -0.004104675259441137, + 0.0005000329692848027, + 0.00812451634556055, + 0.03121902607381344, + -0.007165235932916403, + -0.006127647124230862, + 0.027956167235970497, + -0.004659361205995083, + 0.025045698508620262, + -0.01213130634278059, + -0.023818863555788994, + -0.00405899528414011, + 0.010532505810260773, + 0.009266517125070095, + -0.0071195559576153755, + 0.0276168305426836, + -0.008470379747450352, + 0.03315063565969467, + 0.03416864946484566, + 0.01160272303968668, + 0.007145659066736698, + 0.03670062497258186, + -0.045027438551187515, + 0.008724882267415524, + -0.01089141983538866, + -0.003062192117795348, + 0.0009397030808031559, + 0.008633522316813469, + -0.055651307106018066, + 0.03200211003422737, + 0.019603250548243523, + 0.006323418579995632, + -0.022370154038071632, + 0.015896644443273544, + -0.012405386194586754, + -0.012627260759472847, + 0.0058731441386044025, + 0.014082495123147964, + -0.01288828905671835, + -0.0023035777267068624, + -0.017501970753073692, + 0.02321849763393402, + -0.011021934449672699, + 0.010225797072052956, + 0.014930837787687778, + -0.022291846573352814, + -0.021743685007095337, + 0.002342731924727559, + -0.040433336049318314, + 0.03954583778977394, + 0.02234405092895031, + 0.005112898536026478, + -0.016392597928643227, + 0.01442183181643486, + -0.0169929638504982, + -0.030801380053162575, + 0.0018043604213744402, + 0.01720178686082363, + 0.03273298963904381, + -0.008659625425934792, + 0.01959019899368286, + -0.009312196634709835, + -0.009494916535913944, + 0.002045811852440238, + -0.0008948388276621699, + 0.03208041936159134, + -0.005373927298933268, + 0.01632734201848507, + -0.016275135800242424, + 0.01929001696407795, + 0.02367529831826687, + 0.021065011620521545, + -0.028869766741991043, + 0.01623598113656044, + 0.025176212191581726, + 0.006532241590321064, + 0.0018125176429748535, + -0.013599592261016369, + -0.009827728383243084, + -0.007295750547200441, + 0.0013426661025732756, + -0.012712094932794571, + 0.03904988616704941, + 0.0313495397567749, + 0.019407479092478752, + -0.04568001255393028, + 0.045131850987672806, + -0.015805283561348915, + -0.06990347057580948, + 0.02291831374168396, + -0.026859845966100693, + 0.014617604203522205, + 0.023557834327220917, + 0.013821466825902462, + 0.008633522316813469, + 0.026416098698973656, + 0.02988777868449688, + 0.03993738070130348, + 0.010323682799935341, + 0.013149317353963852, + 0.022748645395040512, + -0.032054316252470016, + 0.004176458343863487, + -0.046854641288518906, + 0.015100507065653801, + -0.002990409266203642, + 0.021534861996769905, + 0.0159619003534317, + 0.016014106571674347, + -0.03620467334985733, + 0.01088489405810833, + -0.012770825996994972, + -0.006871578749269247, + 0.03991127759218216, + 0.002796269254758954, + 0.011818071827292442, + 0.055651307106018066, + 0.004891023971140385, + -0.037092167884111404, + 0.014317421242594719, + -0.007772127632051706, + -0.0024960862938314676, + -0.03067086450755596, + 0.005690424237400293, + 0.005243412684649229, + -0.016771089285612106, + 0.014682861045002937, + -0.017332302406430244, + 0.008940231055021286, + 0.04748110845685005, + -0.0261811725795269, + -0.022683389484882355, + 0.010832688771188259, + 0.005618641618639231, + -0.0008516059606336057, + 0.021273834630846977, + -0.00544570991769433, + 0.005289092659950256, + -0.015557306818664074, + -0.01681024394929409, + 8.116359094856307e-5, + -0.023662246763706207, + 0.03445577993988991, + -0.023074932396411896, + -0.024327868595719337, + 0.0008393701864406466, + 0.02034718170762062, + 0.012157408520579338, + -0.01126338541507721, + -0.032237038016319275, + -0.027825653553009033, + 0.019655456766486168, + -0.031088510528206825, + 0.0033640065230429173, + -0.01232707779854536, + -0.019551044330000877, + -0.01036283653229475, + 0.008379018865525723, + 0.016301238909363747, + -0.022383205592632294, + -0.016118519008159637, + 0.043878912925720215, + -0.004737669602036476, + 0.022565925493836403, + -0.023949377238750458, + -0.022187434136867523, + -0.011191602796316147, + -0.020464645698666573, + -0.023244600743055344, + 0.03750981390476227, + -0.003983949776738882, + -0.019316120073199272, + -0.006499613169580698, + -0.022174382582306862, + -0.017449764534831047, + -0.03583923354744911, + 0.027146978303790092, + -0.009618905372917652, + -0.018585238605737686, + -0.0003525925858411938, + -0.00997781939804554, + 0.004378755576908588, + -0.01622292958199978, + -0.021143319085240364, + -0.01774994656443596, + -0.0233098566532135, + 0.00830071046948433, + -0.0025336092803627253, + -0.019250862300395966, + 0.011876802891492844, + -0.009012013673782349, + -0.027251390740275383, + -0.02255287393927574, + 0.019433582201600075, + 0.023570885881781578, + 0.0191203486174345, + 0.0158444382250309, + 0.009122950956225395, + 0.02102585695683956, + -0.018585238605737686, + -0.008633522316813469, + 0.01309058628976345, + 0.022970519959926605, + 0.009351351298391819, + -0.00826808251440525, + -0.016027158126235008, + 0.004819241352379322, + -0.002013183431699872, + -0.024693308398127556, + -0.0007761523593217134, + 0.0023084720596671104, + -0.024419229477643967, + 0.04614986479282379, + -0.0158444382250309, + 0.007237019017338753, + -0.0019854491110891104, + -0.01508745551109314, + 0.010016974061727524, + -0.02387106977403164, + -0.03027932159602642, + 0.014839477837085724, + 0.003886063816025853, + -0.01198774017393589, + -0.030592557042837143, + -0.006486561615020037, + -0.023636143654584885, + -0.034612398594617844, + 0.013071008957922459, + -0.014826426282525063, + -0.03790135681629181, + -0.020882291719317436, + -0.004156881012022495, + 0.02759072743356228, + -0.016353445127606392, + -0.01012138556689024, + -0.010375888086855412, + 0.014826426282525063, + 0.02866094373166561, + -0.01379536371678114, + 0.0231923945248127, + 0.004010052420198917, + 0.014826426282525063, + -0.004979121498763561, + 0.017919616773724556, + -0.03659621626138687, + -0.010016974061727524, + -0.012685991823673248, + -0.033959824591875076, + 0.008405121974647045, + -0.00012164342479081824, + 0.04594103991985321, + 0.029365722090005875, + -0.003572829533368349, + 0.012248768471181393, + -0.006189641542732716, + 0.015570358373224735, + 0.027851754799485207, + -0.009775522165000439, + -0.0029414664022624493, + 0.00826155673712492, + 0.005667584482580423, + -0.005758944433182478, + 4.652121788240038e-5, + 0.031245127320289612, + 0.019055090844631195, + -0.013586540706455708, + -0.0013712160289287567, + -0.007060824893414974, + 3.3163891203003004e-5, + -0.002284000627696514, + -0.008163671009242535, + -0.006385412998497486, + 0.009279567748308182, + 0.018076233565807343, + -0.007204390596598387, + 0.021417399868369102, + -0.027199184522032738, + -0.004235189873725176, + -0.01622292958199978, + -0.0024455119855701923, + 0.002292157616466284, + 0.010910997167229652, + -0.01948578841984272, + -0.00807231105864048, + -0.08164975792169571, + -0.029209105297923088, + 0.003817543853074312, + -0.020790930837392807, + 0.017214838415384293, + -0.007197864819318056, + -0.006404990330338478, + 0.017619432881474495, + -0.01274472288787365, + 0.011543991975486279, + 0.011282962746918201, + -0.0025336092803627253, + 0.025450292974710464, + 0.02302272617816925, + 0.006042812950909138, + -0.015726976096630096, + -0.02160011976957321, + 0.0009560174075886607, + 0.012764300219714642, + -0.026037607342004776, + 0.002259529195725918, + 0.003140500746667385, + 0.01729314774274826, + -0.006506138946861029, + -0.005488127004355192, + 0.01184417400509119, + 0.004626732785254717, + 0.010114859789609909, + -0.022409308701753616, + -0.02015141025185585, + 0.034899529069662094, + 0.00524993846192956, + -0.0007622851990163326, + -0.0030605606734752655, + -0.008777087554335594, + 0.04265207797288895, + 0.00921431090682745, + -0.008470379747450352, + 0.04176458343863487, + 0.023453423753380775, + 0.004466852638870478, + 0.015596461482346058, + 0.0025907091330736876, + -0.014004186727106571, + 0.0007455630693584681, + -0.0016061417991295457, + -0.016666678711771965, + -0.015818335115909576, + 0.020934496074914932, + 0.010708699934184551, + 3.7267956940922886e-5, + -0.0033052752260118723, + -0.02253982238471508, + -0.02273559384047985, + 0.000438038696302101, + 0.01269904337823391, + 0.0010196431539952755, + 0.01232707779854536, + 0.003432526485994458, + 0.005736104212701321, + 0.016092415899038315, + 0.009690687991678715, + -0.03265468403697014, + 0.003426000941544771, + -0.004558212589472532, + -0.007778653409332037, + 0.006098281592130661, + -0.0028941549826413393, + 0.012144356966018677, + 0.019785970449447632, + 0.002848475007340312, + -0.01767163909971714, + 0.001517229015007615, + 0.011015408672392368, + 0.02186114899814129, + 0.014656757935881615, + 0.02043854258954525, + 0.018937626853585243, + -0.009808151051402092, + 0.004486429505050182, + -0.01256200298666954, + -0.012216140516102314, + 0.0038110180757939816, + 0.010597762651741505, + -0.0036380866076797247, + 0.002629863563925028, + -0.006176589988172054, + -0.007008619140833616, + -0.022618131712079048, + 0.014839477837085724, + 0.0013712160289287567, + 0.0019936063326895237, + 0.02063431404531002, + 0.01785435900092125, + -0.0050150128081440926, + 0.03038373403251171, + 0.003045877907425165, + -0.033281151205301285, + 0.007628561928868294, + 0.022970519959926605, + 0.0019446633523330092, + -0.02225269190967083, + 0.011106768622994423, + -0.011550516821444035, + 0.007465418893843889, + 0.014617604203522205, + 0.002714697737246752, + 0.008098413236439228, + -0.013358140364289284, + -0.015152712352573872, + -0.007648139260709286, + 0.029287412762641907, + 0.01045419741421938, + 0.0022725805174559355, + -2.2062527932575904e-5, + 0.0020621262956410646, + -0.02341426908969879, + -0.010395465418696404, + -0.0184286218136549, + 0.005595801398158073, + -0.001614299020729959, + 0.014304369688034058, + 0.0046658869832754135, + -0.016066312789916992, + -0.01107413973659277, + 8.615984552307054e-5, + -0.011831123381853104, + -0.007974425330758095, + -0.003370532300323248, + -0.0023182604927569628, + -0.006568132899701595, + 0.007595933508127928, + -0.0238841213285923, + 0.0036087208427488804, + 0.021234679967164993, + -0.006741064600646496, + 0.0019430319080129266, + -0.0074784704484045506, + 0.02665102481842041, + -0.008424699306488037, + -0.009527545422315598, + -0.014213009737432003, + -0.01051292847841978, + -0.001144447480328381, + -0.00570673868060112, + 0.016353445127606392, + -0.014160803519189358, + 0.0043167611584067345, + -0.014382678084075451, + -0.006734538823366165, + -0.020686520263552666, + 0.02329680509865284, + 0.02730359509587288, + 0.043800607323646545, + 0.001132211764343083, + -0.017515022307634354, + -0.008085361681878567, + 0.002248109085485339, + -0.013181946240365505, + -0.0007006987580098212, + -0.021143319085240364, + 0.017815204337239265, + -0.014121649786829948, + 0.012960071675479412, + -0.001129764597862959, + -0.013704003766179085, + -0.00013642825069837272, + -0.0025531863793730736, + -0.029731161892414093, + -0.017501970753073692, + -0.0013133003376424313, + -0.003931744024157524, + -0.01632734201848507, + 0.013834517449140549, + -0.006192904431372881, + -0.017906565219163895, + -0.01490473560988903, + -0.0014797061448916793, + 0.01748891919851303, + -0.015792232006788254, + -0.02320544607937336, + 0.0001641625422053039, + -0.019224759191274643, + 0.015061352401971817, + -0.0016681361012160778, + 0.00954712275415659, + -0.004055732395499945, + 0.013390769250690937, + 0.019420530647039413, + 0.005452235694974661, + -0.005455498583614826, + -0.011707134544849396, + -0.004492955282330513, + 0.002248109085485339, + -0.0051194243133068085, + -0.0039350069127976894, + 0.012738197110593319, + 0.003233492374420166, + -0.0035695666447281837, + -0.01088489405810833, + -0.01327983196824789, + -0.01643175259232521, + 0.018885422497987747, + 0.007099979091435671, + -0.007700345013290644, + -0.002223637653514743, + -0.011824597604572773, + 0.03589143604040146, + 0.03638739138841629, + 0.00019689308828674257, + -0.014956940896809101, + -0.01948578841984272, + 0.012026894837617874, + -0.01880711317062378, + -0.0011664717458188534, + -0.0042449780739843845, + 0.007080401759594679, + -0.043591782450675964, + 0.01160272303968668, + -0.020895343273878098, + 0.015413740649819374, + -0.015426792204380035, + 0.008809716440737247, + 0.001768468995578587, + -0.0020066576544195414, + -0.015400690026581287, + 0.004134041257202625, + -0.024797720834612846, + -0.024327868595719337, + 0.002150223357602954, + -0.024510588496923447, + 0.010610814206302166, + -0.00031812864472158253, + 0.008666151203215122, + -0.020738724619150162, + -0.008228927850723267, + 0.02693815529346466, + -0.005341298412531614, + -1.2477882592065725e-5, + -0.03163667023181915, + -0.010832688771188259, + -0.0165361650288105, + -0.0014299475587904453, + -0.001134658814407885, + 0.046854641288518906, + 0.017593329772353172, + -0.004731144290417433, + -0.0020849662832915783, + -0.01193553488701582, + 0.0063690985552966595, + 0.009514493867754936, + 0.011172025464475155, + -0.009527545422315598, + 0.017423661425709724, + -0.017253993079066277, + -0.012470643036067486, + 0.031767185777425766, + 0.010082230903208256, + 0.008274608291685581, + -0.002241583541035652, + -0.02598540112376213, + -0.0012031788937747478, + 0.018010975793004036, + -0.0012529374798759818, + 0.02568521723151207, + -0.009801625274121761, + 0.006219007540494204, + 0.02013835869729519, + 0.030044395476579666, + 0.01938137598335743, + 0.022030817344784737, + 0.00728269899263978, + -0.042730387300252914, + -0.031949903815984726, + 0.018546083942055702, + -0.018572187051177025, + 0.014460986480116844, + -0.0005400030058808625, + -0.011667979881167412, + 0.02567216567695141, + -0.03803187236189842, + 0.006838950328528881, + 0.010062653571367264, + -0.008346390910446644, + 0.01494388934224844, + -0.006463721860200167, + -0.0021208575926721096, + -0.021443502977490425, + 0.03427306190133095, + -0.03737930208444595, + 0.019042039290070534, + -0.007791704963892698, + 0.018363364040851593, + -0.01218351162970066, + 0.007230493240058422, + 0.004496218170970678, + 0.013292883522808552, + 0.008816242218017578, + 0.028008373454213142, + -0.023257652297616005, + 0.018219798803329468, + -0.0013614274794235826, + 7.825760985724628e-5, + -0.022278795018792152, + 0.0029936721548438072, + -0.00011521967098815367, + 0.012261820025742054, + -0.008535636588931084, + 0.0070869275368750095, + 0.0009943559998646379, + 0.00992561411112547, + 0.015257123857736588, + -0.023349011316895485, + -0.032054316252470016, + 0.011113294400274754, + 0.01975986734032631, + 0.007334904745221138, + 0.01218351162970066, + 0.007080401759594679, + -0.0238841213285923, + -0.01776299811899662, + 0.00728269899263978, + 0.014487089589238167, + -0.0006643994711339474, + -0.0027212235145270824, + -0.020582107827067375, + -0.009462288580834866, + 0.006290790159255266, + 0.009886459447443485, + -0.00544570991769433, + -0.01794571802020073, + 0.00935787707567215, + -0.01641870103776455, + -0.026376944035291672, + -0.0016085889656096697, + 0.008392070420086384, + -0.008398596197366714, + -0.03027932159602642, + -0.02751241810619831, + -0.011876802891492844, + -0.007791704963892698, + 0.016953809186816216, + -0.017593329772353172, + 0.014004186727106571, + -0.0047083040699362755, + -0.001146078808233142, + -0.00663665309548378, + 0.04528846964240074, + -0.007870013825595379, + 0.012242242693901062, + 0.01851998269557953, + 0.001737471902742982, + -0.0021485919132828712, + -0.024040738120675087, + -0.01805013045668602, + 0.025358932092785835, + 0.010003922507166862, + 0.004430961329489946, + -0.012059522792696953, + -0.036256879568099976, + -0.028347710147500038, + -0.009631956927478313, + 0.015687821432948112, + 0.003974161110818386, + -0.00920778512954712, + -0.0015914590330794454, + 0.0066953846253454685, + -0.010917522944509983, + 0.0012692518066614866, + -0.007165235932916403, + -0.023048829287290573, + -0.00018537111463956535, + 0.003536937991157174, + -0.02062126249074936, + 0.001194206066429615, + 0.011139397509396076, + -0.04706346243619919, + 0.002117594936862588, + -0.01815454103052616, + -0.03163667023181915, + 0.004489692393690348, + -0.003530412446707487, + -0.027642933651804924, + -0.0014682860346511006, + -0.013690952211618423, + 0.009638482704758644, + -0.01508745551109314, + 0.005139001179486513, + 0.011426528915762901, + 0.007002093363553286, + -0.005657795816659927, + -0.007334904745221138, + -0.006721487268805504, + 0.02522841840982437, + -0.006672544404864311, + -0.0031421321909874678, + -0.010623865760862827, + 0.00013143199612386525, + -0.036726728081703186, + -0.021051960065960884, + -0.010101808235049248, + 0.008927179500460625, + -0.004470115527510643, + 0.008326813578605652, + -0.024184303358197212, + 0.02300967462360859, + -0.020895343273878098, + 0.02751241810619831, + -0.004701778292655945, + -0.012829557992517948, + -0.0036282981745898724, + -0.0003901154559571296, + -0.0075633046217262745, + -0.009481864981353283, + -0.008418173529207706, + 0.001542516052722931, + -0.0005962873110547662, + 0.01031063124537468, + 0.006205955985933542, + -0.026990361511707306, + -0.005582749843597412, + -0.007680767681449652, + -0.00415361812338233, + -0.008392070420086384, + -0.006075441371649504, + 0.023127136752009392, + -0.006398464553058147, + -0.003111134981736541, + -0.0047278814017772675, + -0.035682614892721176, + 0.004182984121143818, + 0.010056128725409508, + 0.011315591633319855, + -0.009579750709235668, + 0.021443502977490425, + -0.029548441991209984, + 0.0015270175645127892, + -0.014852529391646385, + 0.012026894837617874, + -0.020216668024659157, + -0.0018141490872949362, + -0.01758027821779251, + 0.0009217573679052293, + -0.006013447418808937, + 0.0032253351528197527, + -0.022083023563027382, + 0.0015694346511736512, + 0.0010759274009615183, + 0.004747458267956972, + 0.02722528763115406, + 0.008183247409760952, + -0.019785970449447632, + 0.006975990254431963, + 0.012483694590628147, + -0.01671888493001461, + 0.0037783896550536156, + 0.005139001179486513, + -0.0004137711657676846, + -0.02522841840982437, + 0.04706346243619919, + 0.024314817041158676, + 0.01660142093896866, + -0.004838818218559027, + 0.0075828819535672665, + -0.02111721597611904, + 0.010787008330225945, + 0.02167842909693718, + -0.014291318133473396, + -0.009958242997527122, + 0.009716791100800037, + -0.004691989626735449, + -0.007994001731276512, + -0.02779955044388771, + -0.014656757935881615, + 0.016666678711771965, + -0.018702702596783638, + -0.032237038016319275, + 0.006006921641528606, + 0.0031372378580272198, + -0.01985122822225094, + 0.027146978303790092, + 0.013162368908524513, + 0.02025582268834114, + 0.009631956927478313, + 0.001685266150161624, + -0.01476116944104433, + 0.017423661425709724, + -0.0007859409088268876, + -0.007856962271034718, + 0.012953545898199081, + -0.02837381325662136, + -0.0023802549112588167, + -0.01975986734032631, + 0.008222402073442936, + 0.00747194467112422, + -0.02187420055270195, + -0.033098433166742325, + -0.004078572615981102, + 0.019537992775440216, + 0.012248768471181393, + 0.0018386205192655325, + -0.015883592888712883, + -0.042077817022800446, + 0.017541125416755676, + -0.014056392014026642, + -0.010669545270502567, + 0.015231020748615265, + 0.023127136752009392, + -0.0003283250844106078, + -0.008796664886176586, + -0.02140434831380844, + -0.009951717220246792, + -0.01456539798527956, + -0.0019071404822170734, + -0.038553930819034576, + 0.0003941940376535058, + 0.022383205592632294, + -0.008809716440737247, + -0.0035924066323786974, + 0.015935799106955528, + 0.01269904337823391, + 0.0037327094469219446, + -0.01651006191968918, + -0.005390241276472807, + -0.012255294248461723, + -0.004662624094635248, + -0.004120989702641964, + -0.011067613959312439, + -0.00479966402053833, + -0.025737423449754715, + -0.01456539798527956, + -0.012672940269112587, + 0.0076024592854082584, + -0.011100242845714092, + 0.018480828031897545, + -0.005863355938345194, + 0.003517360892146826, + 0.0067475903779268265, + 0.002817477798089385, + -0.012803454883396626, + -0.012346654199063778, + 0.0010995831107720733, + 0.009201259352266788, + 0.004949755501002073, + -0.020777879282832146, + 0.042182229459285736, + 0.004401595331728458, + -0.01294702012091875, + -0.012535900808870792, + 0.01690160483121872, + -0.008320287801325321, + -0.006424567196518183, + 0.025841835886240005, + 0.006391938775777817, + -0.003187812166288495, + -0.006300578825175762, + -0.030201014131307602, + 0.0198642797768116, + -0.013175420463085175, + -0.013390769250690937, + 0.014408781193196774, + 0.0023753605782985687, + 0.01604020968079567, + 0.005125950090587139, + 0.02445838414132595, + 0.01490473560988903, + 0.014930837787687778, + 0.013860620558261871, + 0.024301765486598015, + 0.0015253861201927066, + 0.006891156081110239, + 0.00042784225661307573, + 0.03027932159602642, + -0.0021583805792033672, + 0.011557042598724365, + 0.023153239861130714, + 0.026912052184343338, + -0.046280376613140106, + 0.0019365062471479177, + 0.002280737739056349, + 0.01308406051248312, + -0.006398464553058147, + 0.0246280524879694, + -0.0042123496532440186, + 0.014199958182871342, + -0.012307500466704369, + -0.018689651042222977, + 0.014695912599563599, + 0.011106768622994423, + 0.002638020785525441, + -0.0019642405677586794, + -0.013155843131244183, + 0.0055011785589158535, + -0.005569698754698038, + 0.015152712352573872, + -0.0066758072935044765, + 0.0004123436810914427, + 0.011132871732115746, + 0.009455762803554535, + 0.0003525925858411938, + -0.005680635571479797, + 0.014252163469791412, + -0.007465418893843889, + -0.021156370639801025, + 0.01604020968079567, + -0.008594367653131485, + -0.013951980508863926, + -0.03711827099323273, + -0.024954337626695633, + 0.010147488676011562, + -0.010767430998384953, + 0.0037131323479115963, + -0.011152448132634163, + 0.026429150253534317, + 3.734443089342676e-5, + 0.017997924238443375, + 0.033072330057621, + 0.011694082990288734, + -0.011106768622994423, + -0.012933969497680664, + 0.022774748504161835, + 0.01795876957476139, + 0.004486429505050182, + -0.010591236874461174, + 0.007341430522501469, + -0.014917786233127117, + -0.008202824741601944, + 0.008920653723180294, + -0.022709490731358528, + -0.0012945389607921243, + 0.0067475903779268265, + 0.015426792204380035, + -0.008339865133166313, + 0.008914127945899963, + -0.01832421123981476, + -0.023335959762334824, + 0.0035924066323786974, + -0.0015490418300032616, + 0.010199693962931633, + -0.006000395864248276, + 0.006773693021386862, + -0.003908903803676367, + -0.009005487896502018, + 0.00647024717181921, + 0.0015539361629635096, + 0.007537201978266239, + -0.00670843617990613, + 0.007746024988591671, + 0.0007863487699069083, + -0.014291318133473396, + -0.030201014131307602, + 0.011707134544849396, + 0.017789101228117943, + -0.012999226339161396, + 0.011498311534523964, + 0.007504573557525873, + -0.0210128054022789, + -0.005236886907368898, + -0.03437747061252594, + -0.038057975471019745, + 0.024484485387802124, + 0.001528649008832872, + -0.005758944433182478, + -0.014460986480116844, + -0.022761696949601173, + 0.0002357414923608303, + -0.01012791134417057, + 0.02071262337267399, + -0.009299145080149174, + 0.002195903332903981, + 0.002050706185400486, + -0.02902638539671898, + -0.009468813426792622, + -0.004241715185344219, + -0.0005950637278147042, + 0.0017652062233537436, + -0.0015514889964833856, + -0.0005363322561606765, + 0.027903961017727852, + -0.012118254788219929, + 0.0017913089832291007, + 0.0023068406153470278, + 0.009879933670163155, + 0.01718873530626297, + -0.011687557213008404, + 0.004891023971140385, + 0.02417125180363655, + -0.021756736561655998, + 0.00916210561990738, + 0.0035565150901675224, + -0.00647024717181921, + 0.01031063124537468, + -0.0067802187986671925, + 0.01384756900370121, + 0.01585748977959156, + 0.020229719579219818, + -0.022213537245988846, + 0.01794571802020073, + -0.003980686888098717, + -0.0075828819535672665, + 0.007387110497802496, + -0.01121770590543747, + -0.0013418503804132342, + -0.0013630589237436652, + -0.002515663392841816, + 0.005455498583614826, + 0.0024063577875494957, + -0.021508758887648582, + 0.006773693021386862, + -0.03599584847688675, + 0.0017439975636079907, + 0.01756722666323185, + 0.006989041808992624, + 0.019263913854956627, + 0.020595159381628036, + -0.011615774594247341, + 0.015165763907134533, + -0.0002579697174951434, + -0.01767163909971714, + -0.007941796444356441, + -0.0015465946635231376, + -0.012986174784600735, + -0.000999250216409564, + -0.025463344529271126, + 0.006463721860200167, + 0.023087983950972557, + -0.004522321280092001, + 0.009344825521111488, + 0.011681031435728073, + -0.004398332443088293, + -0.029000282287597656, + 0.005625166930258274, + -0.0019789233338087797, + -0.003078506560996175, + 0.02051685005426407, + -0.03664842247962952, + 0.010447671636939049, + -0.0169929638504982, + -0.00850300770252943, + -0.010480299592018127, + 0.0184286218136549, + -0.003762075211852789, + 0.025045698508620262, + -0.010950151830911636, + 0.001184417400509119, + 0.0003232268791180104, + 0.014878632500767708, + 0.008209350518882275, + 0.0007353666005656123, + -0.002753852168098092, + -0.010284528136253357, + -0.016366494819521904, + -0.008940231055021286, + 0.0011289488757029176, + 0.01901593618094921, + -0.06123732030391693, + -0.012849134393036366, + 0.023844966664910316, + -0.0007516809273511171, + -0.02329680509865284, + 0.023636143654584885, + -0.002129014814272523, + -0.022370154038071632, + 0.033072330057621, + 0.004747458267956972, + 0.00689768185839057, + 0.022683389484882355, + 0.017632484436035156, + -0.01835031248629093, + -0.005726315546780825, + 0.020751776173710823, + 0.0007035537273623049, + -0.0008801559451967478, + 0.02081703394651413, + -0.009064219892024994, + 0.034716807305812836, + -0.010630391538143158, + -0.00021310540614649653, + 0.0019055090378969908, + 0.02999219112098217, + 0.010636917315423489, + 0.01803707890212536, + -0.017358403652906418, + 0.007393636275082827, + -0.01016706507652998, + -0.009397030808031559, + 0.010043077170848846, + -0.0012292817700654268, + 0.010382413864135742, + 0.007954847998917103, + 0.005093321204185486, + 0.011178551241755486, + 0.003399898065254092, + -0.017919616773724556, + -2.467536432959605e-5, + 0.02119552530348301, + -0.014395729638636112, + 0.0063266814686357975, + 0.003047509351745248, + 0.004587578121572733, + 0.0076024592854082584, + 0.004081835504621267, + 0.007361007388681173, + 0.015217969194054604, + -0.0022089548874646425, + -0.02196555957198143, + 0.011204654350876808, + 0.0031633407343178988, + 0.01585748977959156, + 0.01709737628698349, + 0.013286357745528221, + -0.016196826472878456, + -0.00780475651845336, + -0.028112784028053284, + 0.008209350518882275, + -0.0015726975398138165, + 0.006528978701680899, + 0.005305407103151083, + 0.014265215024352074, + -0.0031062408816069365, + 0.016771089285612106, + 0.008026630617678165, + 0.012424963526427746, + 0.020007845014333725, + 0.01567476987838745, + 0.002748957835137844, + -0.01594885066151619, + 0.003161709289997816, + -0.023257652297616005, + -0.0047278814017772675, + -0.0368572436273098, + -0.00955364853143692, + -0.0019365062471479177, + -0.007400162052363157, + -0.01994258724153042, + -0.0063658361323177814, + -0.01232707779854536, + 0.02329680509865284, + 0.002186114899814129, + 0.008594367653131485, + -0.005005224142223597, + 0.004372229799628258, + 0.015126609243452549, + -0.009919088333845139, + 0.0011901274556294084, + -0.008972859010100365, + -0.0031568151898682117, + -0.011772391386330128, + -0.01551815215498209, + 0.01307753473520279, + -0.005771995987743139, + 0.005419607274234295, + 0.00031731295166537166, + 0.0010261688148602843, + 0.02598540112376213, + 0.008359442465007305, + 0.013214575126767159, + 0.0076155103743076324, + 0.0020784405060112476, + 0.006130910012871027, + -0.012764300219714642, + -0.009429659694433212, + 0.006424567196518183, + 0.008809716440737247, + 0.00285336934030056, + -0.019537992775440216, + 0.015152712352573872, + 0.010140962898731232, + 0.010571659542620182, + 0.01294049434363842, + -0.010082230903208256, + 0.03197600692510605, + 0.02644220180809498, + 0.016849398612976074, + 0.01126991119235754, + 0.018833216279745102, + -0.008294184692203999, + -0.01547899842262268, + -0.009064219892024994, + 0.0026363893412053585, + -0.005909035913646221, + 0.011713660322129726, + -0.017932668328285217, + 0.0009617274045012891, + -0.004430961329489946, + -0.008711830712854862, + -0.0015433317748829722, + -0.0018320947419852018, + -0.011550516821444035, + 0.007445842027664185, + 0.04299141839146614, + -0.0006170879933051765, + -0.008724882267415524, + 0.010199693962931633, + 0.011100242845714092, + 0.008509533479809761, + 0.008946756832301617, + 0.011165499687194824, + -0.014774220995604992, + -0.030253218486905098, + 0.0038469096180051565, + -0.016170723363757133, + -0.001452787546440959, + -0.0036446123849600554, + 0.008633522316813469, + -0.01102846022695303, + 0.01576612889766693, + -0.012046471238136292, + -0.009801625274121761, + 0.0022823691833764315, + -0.004189509432762861, + -0.008013579063117504, + 0.037092167884111404, + 0.0018647232791408896, + 0.0012668046401813626, + -0.0014226060593500733, + -0.028634842485189438, + 0.003987212665379047, + -0.01930306851863861, + -0.007458893116563559, + -0.013044905848801136, + 0.008039682172238827, + 0.010897945612668991, + -0.004590841010212898, + 0.03333335742354393, + 0.025933194905519485, + -0.009723316878080368, + -0.001208073110319674, + 0.004072046838700771, + 0.01851998269557953, + 0.004985646810382605, + 0.0005563172744587064, + 0.004042680840939283, + -0.005755681544542313, + -0.008405121974647045, + 0.024119045585393906, + 0.02160011976957321, + 0.027173081412911415, + -0.009618905372917652, + -0.004111201036721468, + -0.016405649483203888, + -0.0062744757160544395, + 0.021091114729642868, + 0.0062940530478954315, + -9.248163405572996e-5, + 0.01232707779854536, + -0.001753786113113165, + -0.008737933821976185, + 0.02377970889210701, + -0.0162490326911211, + 0.009181682020425797, + -0.003762075211852789, + 0.028008373454213142, + 0.01729314774274826, + -0.02052990160882473, + 0.04069436341524124, + 0.005559910088777542, + -0.0018174118595197797, + 0.007765601854771376, + -0.0020800719503313303, + -0.008033156394958496, + 0.050195805728435516, + -0.001526201842352748, + 0.00201807776466012, + 0.018024027347564697, + 0.013978083617985249, + 0.01824590191245079, + 0.017253993079066277, + -0.017841307446360588, + -0.004346126690506935, + 0.012346654199063778, + 0.044374868273735046, + -0.010180116631090641, + -0.00534456130117178, + 0.03046204149723053, + -0.00016140950901899487, + -0.02845212072134018, + 0.027747344225645065, + 0.005070481449365616, + -0.014722014777362347, + 0.008405121974647045, + 0.004196035210043192, + -0.03056645393371582, + -0.01456539798527956, + 0.026194224134087563, + -0.012105203233659267, + -0.0004959544166922569, + 0.011439580470323563, + 0.027460211887955666, + 0.002703277859836817, + 0.00974289420992136, + -0.006088492926210165, + 0.01327330619096756, + -0.0046756756491959095, + -0.02644220180809498, + -0.0029626749455928802, + 0.02243541181087494, + -0.0019316119141876698, + 0.024575846269726753, + -0.03610026091337204, + 0.010180116631090641, + -0.021339090541005135, + -0.002593972021713853, + 0.011511363089084625, + -0.001633060397580266, + 0.02569826878607273, + 0.008000527508556843, + 0.0017652062233537436, + -0.0020882291719317436, + 0.0006342180422507226, + -0.01532238069921732, + 0.008953282609581947, + 0.014239111915230751, + 0.01939442753791809, + 0.006398464553058147, + -0.0046756756491959095, + 0.008509533479809761, + 0.03437747061252594, + -0.002357414923608303, + -0.007719921879470348, + 0.005775258410722017, + -0.013390769250690937, + -0.012907866388559341, + -0.00267228065058589, + -0.0020229718647897243, + -0.0032889607828110456, + -0.002244846196845174, + -0.008196298964321613, + 0.008666151203215122, + 0.010571659542620182, + -0.007798230741173029, + -0.02616812102496624, + 0.002202429110184312, + 0.0016510061686858535, + 0.0050998469814658165, + -0.006584447342902422, + 0.0033640065230429173, + -0.01956409588456154, + 0.008959808386862278, + 0.0025319778360426426, + -0.006610550452023745, + 0.012823032215237617, + 0.038553930819034576, + 0.0009046273771673441, + -0.004678938537836075, + 0.011955111287534237, + -0.007230493240058422, + -0.017332302406430244, + 0.007967899553477764, + -0.0010106702102348208, + 0.006401727441698313, + 0.006431092973798513, + 0.009429659694433212, + -0.009912562556564808, + -0.008574790321290493, + 0.015296278521418571, + -0.005771995987743139, + 0.0037066065706312656, + 0.004652835428714752, + -0.014213009737432003, + 0.0017570490017533302, + -0.00868572760373354, + 0.007315327413380146, + 0.026089811697602272, + 0.011537466198205948, + 0.007491522002965212, + -0.0034096864983439445, + 0.002205691998824477, + -0.012529375031590462, + 0.0165361650288105, + 0.0008752616704441607, + 0.0074784704484045506, + 0.0014389203861355782, + -0.021182473748922348, + 0.01623598113656044, + 0.004793138243257999, + 0.02483687549829483, + 0.003921955358237028, + 0.009860357269644737, + 0.0024553006514906883, + 0.01379536371678114, + 0.009768996387720108, + -0.002837055129930377, + 0.025867938995361328, + -0.020595159381628036, + 0.0033379036467522383, + 0.006852001883089542, + 0.017828255891799927, + -0.004982383921742439, + -0.02349257655441761, + -0.013286357745528221, + -0.023257652297616005, + -0.015740027651190758, + -0.006408253218978643, + -0.003530412446707487, + -0.016470907256007195, + 0.0010767431231215596, + 0.020647365599870682, + 0.007641613483428955, + 0.023701399564743042, + -0.0023394692689180374, + 0.005054167006164789, + -0.024393126368522644, + 0.0016705832676962018, + 0.006558344699442387, + -0.02653356082737446, + -0.014930837787687778, + -0.007432790473103523, + -0.0020311290863901377, + -0.03946752846240997, + -0.0014821531949564815, + 0.005938401445746422, + 0.01718873530626297, + -0.01403028890490532, + -5.128805059939623e-5, + -0.007974425330758095, + 0.0029463607352226973, + -0.02140434831380844, + -0.003598932409659028, + -0.006437618751078844, + 0.004052469506859779, + 0.004904075525701046, + -0.009038116782903671, + -0.0016656890511512756, + -0.014278266578912735, + -0.0009413345251232386, + -0.010043077170848846, + -0.00992561411112547, + 0.020099205896258354, + -0.018937626853585243, + 0.016170723363757133, + 0.018076233565807343, + 0.007243544794619083, + -0.015531203709542751, + -0.011139397509396076, + 0.03046204149723053, + -0.006130910012871027, + -0.016562266275286674, + 0.0043200240470469, + 0.0027669034898281097, + -0.00405899528414011, + -0.005948190111666918, + 0.0002830529410857707, + 0.0036707152612507343, + -0.02923520840704441, + -0.002698383526876569, + -0.008170196786522865, + -0.01436962652951479, + -0.0024194091092795134, + 0.011622300371527672, + -0.01083921454846859, + 0.014474038034677505, + -0.018076233565807343, + -0.001685266150161624, + -0.01670583337545395, + -0.012979649007320404, + 0.00142668467015028, + -0.014017238281667233, + -0.02712087519466877, + 0.0004918758640997112, + 0.01068912260234356, + 0.032706890255212784, + -0.01671888493001461, + 0.00936440285295248, + 0.015413740649819374, + -0.02646830305457115, + -0.004506006836891174, + 0.015492049977183342, + -0.006519190035760403, + 0.016275135800242424, + -0.014839477837085724, + 0.006095018703490496, + 0.004662624094635248, + 0.007289224769920111, + -0.027277491986751556, + 1.2955840247741435e-5, + 0.014265215024352074, + 0.0016110361320897937, + -0.026520509272813797, + -0.0010400359751656651, + -0.0276168305426836, + -0.022513719275593758, + 0.006767167244106531, + 0.006225532852113247, + 7.703404116909951e-5, + 0.00974941998720169, + -0.010708699934184551, + -0.00220732344314456, + 0.012666414491832256, + 0.006845476105809212, + -0.005931875668466091, + 0.008672676049172878, + -0.006039550062268972, + -0.018872370943427086, + 0.02923520840704441, + -0.007719921879470348, + 0.003036089241504669, + -0.0136648491024971, + 0.008998962119221687, + 0.0015376218361780047, + -0.007237019017338753, + 0.006819372996687889, + -0.012842608615756035, + 0.028478223830461502, + -0.007152184844017029, + -0.011681031435728073, + -0.005093321204185486, + -0.010767430998384953, + 0.013821466825902462, + 0.005360875744372606, + -0.029183002188801765, + 0.028008373454213142, + -0.007223967462778091, + 0.014800324104726315, + 0.03038373403251171, + -0.01795876957476139, + -6.902984023327008e-5, + -0.006760641932487488, + 0.010395465418696404, + 0.0229052621871233, + -0.0191203486174345, + -0.022774748504161835, + -0.010388939641416073, + 0.00341294938698411, + -0.04544508457183838, + 0.0016771090449765325, + -0.011433054693043232, + -0.01652311347424984, + -0.02178283967077732, + -1.4173039744491689e-5, + -0.005847041495144367, + -0.002685332205146551, + 0.0010906102834269404, + -0.006277738604694605, + 0.012405386194586754, + 0.004049206618219614, + -0.02414514869451523, + -0.007772127632051706, + 0.02282695472240448, + 0.014500141143798828, + 0.0019071404822170734, + -0.025854887440800667, + -0.005050904117524624, + -0.006205955985933542, + -0.00030976757989265025, + -0.01862439326941967, + -0.008052733726799488, + -0.011041511781513691, + -0.010140962898731232, + 0.0021159634925425053, + -0.007798230741173029, + 0.008437750861048698, + 0.0006554265855811536, + 0.010232322849333286, + -0.012418437749147415, + 0.010375888086855412, + 0.018272005021572113, + -0.011537466198205948, + -0.001212967443279922, + -0.013482129201292992, + -0.019055090844631195, + 0.012783877551555634, + 0.004029629752039909, + 0.005742629989981651, + 0.0033003808930516243, + -0.002541766269132495, + 0.00117055035661906, + 0.012398860417306423, + 0.013351614587008953, + 0.004936703946441412, + -0.006111333146691322, + 0.000582828011829406, + 0.02110416628420353, + -0.013717055320739746, + 0.001210520276799798, + 0.013482129201292992, + 0.021534861996769905, + -0.016784140840172768, + 0.009729842655360699, + -0.022317947819828987, + 0.0011126345489174128, + 8.065377187449485e-5, + 0.00444401241838932, + 0.008170196786522865, + 0.012796929106116295, + 0.007028196007013321, + 0.005866618826985359, + 0.003866486717015505, + 0.00773297343403101, + 0.014813375659286976, + -0.017606381326913834, + -0.002045811852440238, + -0.004453801084309816, + 0.014578449539840221, + 0.011315591633319855, + -0.005139001179486513, + -0.019433582201600075, + 0.023283755406737328, + 0.00747194467112422, + -0.009566699154675007, + 0.0021110691595822573, + 0.014108598232269287, + 0.012614209204912186, + 0.008509533479809761, + 0.0055762240663170815, + -0.002456932095810771, + -0.0018320947419852018, + -0.005324984434992075, + 0.00766771612688899, + -0.016875501722097397, + 0.0066627562046051025, + 0.010741328820586205, + -0.008085361681878567, + -0.010186642408370972, + 0.001549857552163303, + 0.013677900657057762, + -0.018650496378540993, + -0.00754372775554657, + 0.008633522316813469, + 0.020686520263552666, + -0.009912562556564808, + -0.0009356245282106102, + 0.003426000941544771, + -0.000820200948510319, + 0.026677126064896584, + -0.006160276010632515, + 0.030696967616677284, + -0.025071801617741585, + 0.009625431150197983, + -0.010995831340551376, + -0.02235710248351097, + 0.030827481299638748, + 0.0005122686852701008, + 0.016457855701446533, + 0.004424435552209616, + 0.014539294876158237, + 0.010258425027132034, + -0.01938137598335743, + -0.0026004977989941835, + 0.009436185471713543, + -0.0015400690026581287, + 0.010434620082378387, + 0.00035279651638120413, + -0.015988003462553024, + 0.001982186222448945, + 0.01614462211728096, + 0.0016151147428900003, + 0.012470643036067486, + -0.007595933508127928, + -0.017919616773724556, + 0.0319238007068634, + -0.011322117410600185, + 0.007556779310107231, + -0.02167842909693718, + 0.014395729638636112, + 7.152796752052382e-5, + 0.004261292517185211, + -0.0161315705627203, + -0.014447934925556183, + 0.010271476581692696, + 0.005941664334386587, + 0.00534456130117178, + -0.006793270353227854, + -0.007517624646425247, + 0.009142528288066387, + -0.011641877703368664, + 0.005367401521652937, + 0.022043868899345398, + -0.011380848474800587, + -0.033072330057621, + 0.0009723316761665046, + -0.00670843617990613, + -0.007948322221636772, + 0.011733237653970718, + 0.004594103898853064, + -0.016157671809196472, + -0.0017880462110042572, + -0.009990870952606201, + 0.027251390740275383, + 0.005847041495144367, + -0.038632240146398544, + -0.01470896415412426, + -0.00027346829301677644, + 0.02321849763393402, + -0.0050802696496248245, + 0.016849398612976074, + -0.024105994030833244, + 0.0046658869832754135, + -0.01290134061127901, + -0.006688858848065138, + 0.00032567401649430394, + -0.0016289819031953812, + -0.006499613169580698, + -0.003967635333538055, + -0.0024814035277813673, + -0.02024277113378048, + 0.01089141983538866, + -0.001747260452248156, + -0.009259991347789764, + -0.023283755406737328, + 0.009847305715084076, + -0.009436185471713543, + -0.0023068406153470278, + -0.008535636588931084, + -0.009958242997527122, + 0.006117858923971653, + 0.0017358404584228992, + 0.031088510528206825, + -0.0035140980035066605, + 0.006160276010632515, + -0.006714961491525173, + 0.000382162252208218, + -0.013951980508863926, + -0.00046495726564899087, + -0.022866109386086464, + -0.016366494819521904, + -0.0042743440717458725, + 0.01805013045668602, + -0.0013752946397289634, + 0.008672676049172878, + 0.008861922658979893, + 0.017123479396104813, + -0.008698779158294201, + -0.034534089267253876, + 0.010369362309575081, + -0.0036446123849600554, + -0.02206997200846672, + 0.021143319085240364, + -0.0011991002829745412, + -0.010943626053631306, + -0.011726711876690388, + 0.02454974316060543, + 0.004629995673894882, + -0.0013997660716995597, + 0.025619961321353912, + 0.0035956695210188627, + 0.009990870952606201, + 0.017919616773724556, + 0.003458629362285137, + 0.008750985376536846, + -0.012072574347257614, + -0.0036641894839704037, + 0.0071913390420377254, + 0.0035271495580673218, + -0.009155579842627048, + 0.009906036779284477, + 0.0035140980035066605, + -0.017632484436035156, + -0.01930306851863861, + -0.025854887440800667, + -0.00883581954985857, + -0.037588123232126236, + -0.01235970575362444, + 0.004519058391451836, + 0.0038371209520846605, + 0.011335168965160847, + -0.004137304145842791, + 0.007576356176286936, + 0.009860357269644737, + -0.0016820032615214586, + 0.0012276503257453442, + -0.005396767053753138, + -0.015909695997834206, + -0.007002093363553286, + 0.0015979846939444542, + -0.0014103703433647752, + -0.01786741055548191, + -0.018311159685254097, + 0.01892457716166973, + -0.006590973120182753, + -0.013162368908524513, + -0.007184813264757395, + -0.0022464776411652565, + -0.0031470265239477158, + -0.004812715575098991, + 0.02300967462360859, + 0.007243544794619083, + 0.00572957843542099, + -0.0010816374560818076, + -0.0054913898929953575, + -0.015792232006788254, + 0.0006843844894319773, + -0.03257637470960617, + 0.006646441761404276, + -0.006134172901511192, + 0.0005795651231892407, + -0.006669281516224146, + -0.009122950956225395, + -0.011491785757243633, + -0.0024536692071706057, + 0.004473378416150808, + -0.0058503043837845325, + -0.013338563032448292, + 0.0007847173255868256, + 0.013860620558261871, + -0.008992436341941357, + 0.01824590191245079, + 0.013044905848801136, + -0.004460326861590147, + -0.003850172506645322, + 2.2177237042342313e-6, + 0.004003526642918587, + 4.5374119508778676e-5, + -0.006975990254431963, + -0.005462024360895157, + 0.011061088182032108, + -0.006982516031712294, + 0.022696441039443016, + -0.002181220566853881, + 0.0031633407343178988, + -0.02063431404531002, + 0.006812847685068846, + 0.006799796130508184, + 0.006949887610971928, + -0.0007700345013290644, + -0.00535108707845211, + 0.01794571802020073, + -0.008294184692203999, + 0.02013835869729519, + 0.029913881793618202, + 0.03599584847688675, + -0.03750981390476227, + 0.00955364853143692, + -0.032628580927848816, + 0.011256859637796879, + 0.0007031458662822843, + 0.008046207949519157, + 0.0020017633214592934, + 0.009951717220246792, + 0.0028240035753697157, + -0.0005807887064293027, + -0.004117726814001799, + -0.0022203747648745775, + 0.02751241810619831, + -0.0016689518233761191, + 0.003067086450755596, + -0.00024043185112532228, + 0.01691465638577938, + -0.018298108130693436, + -0.008581316098570824, + -0.01322110090404749, + 0.024471435695886612, + 0.020125307142734528, + 0.0018745119450613856, + 0.014617604203522205, + 0.008516059257090092, + 0.021182473748922348, + 0.0031943379435688257, + -0.0001099175278795883, + 6.495126581285149e-5, + 0.001554751885123551, + -0.010871842503547668, + 0.0025433977134525776, + -0.02255287393927574, + 0.005638218484818935, + -0.00954712275415659, + 0.004303709603846073, + -0.04395722225308418, + -0.009253465570509434, + -0.026507457718253136, + 0.03993738070130348, + 0.024876030161976814, + 0.01994258724153042, + -0.01212478056550026, + 0.00544570991769433, + 0.018572187051177025, + 0.018546083942055702, + -0.01404334045946598, + -0.00024308291904162616, + -0.011289488524198532, + 0.001355717540718615, + -0.004907338414341211, + -0.029574545100331306, + -0.007178287487477064, + -0.02368834801018238, + 0.018102336674928665, + 0.0031649721786379814, + 0.015818335115909576, + -0.009168630465865135, + -0.014604552648961544, + 0.0030442464631050825, + -0.01587054133415222, + 0.024876030161976814, + -0.00048167939530685544, + 0.008339865133166313, + 0.012392334640026093, + 0.018102336674928665, + -0.026311686262488365, + 0.008998962119221687, + 0.002288894960656762, + -0.0075502535328269005, + 0.02006005123257637, + -0.004845343995839357, + 0.023531731218099594, + 0.018937626853585243, + -0.009906036779284477, + -0.021365193650126457, + 0.011811546050012112, + 0.01652311347424984, + 0.028504326939582825, + 0.005941664334386587, + -0.002765272045508027, + -0.004336338024586439, + 0.018663547933101654, + 0.0319238007068634, + -0.00013846754154656082, + 0.023140188306570053, + -0.0005514229997061193, + -0.04899507388472557, + 0.00415361812338233, + 0.0037294465582817793, + -0.002176326233893633, + 0.02798227034509182, + 0.008013579063117504, + 0.008209350518882275, + 0.004199298098683357, + 0.01212478056550026, + -0.010741328820586205, + 0.006871578749269247, + -0.02569826878607273, + -0.004753984045237303, + 0.005289092659950256, + 0.003344429424032569, + -0.0006134173017926514, + 0.005670847371220589, + 0.019068142399191856, + 0.008764036931097507, + -0.005360875744372606, + 0.012105203233659267, + 0.007719921879470348, + -0.03573482111096382, + -0.004424435552209616, + 0.014604552648961544, + -0.004378755576908588, + -0.03171497955918312, + -0.010212745517492294, + -0.02704256772994995, + 0.03161056712269783, + 0.011309065856039524, + 0.012809980660676956, + 0.011628826148808002, + 0.0023459948133677244, + -0.006982516031712294, + 0.032889608293771744, + -0.013012277893722057, + 0.0034618922509253025, + 0.0056121158413589, + 0.002233426319435239, + 0.00826155673712492, + 0.015700872987508774, + 0.012646837159991264, + 0.005993870086967945, + 0.0009690688457340002, + -0.0020115519873797894, + 0.012307500466704369, + -0.008594367653131485, + -0.004457063972949982, + -0.010930574499070644, + 0.021038908511400223, + 0.013234151527285576, + -0.020595159381628036, + 0.003416212275624275, + -0.015152712352573872, + 0.01898983307182789, + 0.03476901352405548, + -0.011674505658447742, + -0.001554751885123551, + 0.024706359952688217, + -0.010780482552945614, + -0.011041511781513691, + -0.014108598232269287, + -0.0030752436723560095, + -0.023936325684189796, + 0.019420530647039413, + 0.0031649721786379814, + 0.02424956113100052, + 0.012581580318510532, + -0.014239111915230751, + 0.0012235717149451375, + -0.00308176944963634, + -0.0023557834792882204, + 0.004072046838700771, + 0.004081835504621267, + -0.0010857159504666924, + 0.006215744651854038, + -0.008757511153817177, + 0.01308406051248312, + 0.01900288462638855, + 0.025071801617741585, + 0.0011452632024884224, + -0.003491258015856147, + -0.00451579550281167, + -0.013821466825902462, + -0.027173081412911415, + 0.004085098393261433, + -0.0028419492300599813, + 0.020503800362348557, + 0.005171630065888166, + 0.01017359085381031, + -0.033777106553316116, + -0.020882291719317436, + -0.027642933651804924, + 0.010584711097180843, + -0.014617604203522205, + 0.02866094373166561, + 0.003166603622958064, + -0.023662246763706207, + 0.00451579550281167, + 0.004150355234742165, + 0.018506931141018867, + 0.026598818600177765, + 0.0016836347058415413, + 0.00011878842633450404, + 0.005928612779825926, + -0.007635087706148624, + -0.003481469349935651, + -0.02051685005426407, + 0.000549383694306016, + -0.012653362937271595, + 0.006767167244106531, + -0.00608523003757, + 0.005657795816659927, + 0.010728277266025543, + 0.011661454103887081, + -0.021078063175082207, + -0.02196555957198143, + -0.016170723363757133, + 0.005745892878621817, + 0.015387638472020626, + -0.0003805308078881353, + 0.018741855397820473, + -0.023923274129629135, + 0.006721487268805504, + -0.00039399010711349547, + 0.0013850831892341375, + 0.01670583337545395, + -0.0010196431539952755, + -0.012836082838475704, + 0.008104939013719559, + -0.012431489303708076, + 0.006440881639719009, + -0.015896644443273544, + 0.02149570919573307, + 0.027773447334766388, + -0.003703343914821744, + -0.03302012383937836, + 0.011622300371527672, + 0.024301765486598015, + -0.009729842655360699, + -0.01270556915551424, + -0.0037261839024722576, + -0.009468813426792622, + 0.013149317353963852, + 0.001721157575957477, + -0.012059522792696953, + 0.024288713932037354, + 0.000845080241560936, + -0.01738450676202774, + -0.013938928954303265, + 0.005755681544542313, + 0.03850172460079193, + -0.03171497955918312, + -0.01966850832104683, + 0.014826426282525063, + 0.02320544607937336, + 0.009090322069823742, + 0.014460986480116844, + -0.002912100637331605, + -0.005034589674323797, + 0.004825767129659653, + 0.013325512409210205, + 0.01594885066151619, + -0.02045159414410591, + -0.012601157650351524, + 0.027251390740275383, + 0.017032118514180183, + 0.025332828983664513, + -0.006923784501850605, + 0.009044642560184002, + 0.004127515479922295, + 0.014930837787687778, + -0.02320544607937336, + 0.0022774748504161835, + -0.01622292958199978, + -0.014434883370995522, + -0.006555081810802221, + 0.03056645393371582, + -0.006656230427324772, + -0.006316893268376589, + -0.02186114899814129, + -0.0037131323479115963, + -0.010493351146578789, + -0.017802152782678604, + -0.00461041834205389, + 0.0005077822715975344, + 0.007693819236010313, + -0.010813111439347267, + 0.007439316250383854, + -0.007870013825595379, + 0.021547913551330566, + -0.026664074510335922, + -0.007902641780674458, + -0.023727502673864365, + 0.012294448912143707, + 0.015165763907134533, + -0.01403028890490532, + 0.00766119034960866, + -0.011700608767569065, + 0.01767163909971714, + 0.013181946240365505, + -0.003657663706690073, + -0.022017765790224075, + -0.011367796920239925, + 4.777028152602725e-5, + 0.0020050262100994587, + 0.0005379637004807591, + 0.01551815215498209, + 0.006039550062268972, + 0.025385035201907158, + 0.008183247409760952, + -0.012346654199063778, + 0.03897157683968544, + 0.022200485691428185, + -0.011250333860516548, + 0.0063658361323177814, + 0.003439052263274789, + 0.005262990016490221, + -0.014487089589238167, + -0.01575307920575142, + 0.004701778292655945, + 0.025920143350958824, + 0.034038133919239044, + 0.0031633407343178988, + 0.006411516107618809, + -0.015805283561348915, + -0.021443502977490425, + -0.031375642865896225, + -0.003977423999458551, + -0.006943361833691597, + -0.0036021952982991934, + 0.015505101531744003, + -0.02090839482843876, + -0.015740027651190758, + -0.00029569651815108955, + -0.004398332443088293, + -0.016575317829847336, + 0.013782312162220478, + 0.002633126452565193, + -0.0019952375441789627, + -0.014460986480116844, + 0.005644744262099266, + -0.009149054065346718, + -0.003856698051095009, + -0.0229052621871233, + 0.00037665615673176944, + -0.014682861045002937, + 0.0033476923126727343, + 0.008607419207692146, + -0.0037424981128424406, + 0.007361007388681173, + -0.01898983307182789, + 0.018702702596783638, + 0.0011191603261977434, + -0.012092151679098606, + -0.01513966079801321, + 0.005719790235161781, + 0.008985910564661026, + 0.004182984121143818, + 0.0031013465486466885, + 0.00216001202352345, + -0.005148789845407009, + 0.007524150423705578, + -0.01623598113656044, + 0.020268874242901802, + -0.0029463607352226973, + -0.008150619454681873, + 0.003957846667617559, + -0.007321853190660477, + 0.020229719579219818, + -0.027146978303790092, + -0.01361264381557703, + 0.004013315308839083, + -0.000661136582493782, + 0.0036609265953302383, + -0.013442974537611008, + 0.012927443720400333, + 0.0017342090141028166, + 0.016366494819521904, + -0.015217969194054604, + -0.012163934297859669, + 0.006551818922162056, + -0.0076024592854082584, + 0.015204918570816517, + 0.012529375031590462, + 0.004923652857542038, + -0.002181220566853881, + -0.01012138556689024, + 0.015113558620214462, + -0.0009315459756180644, + 0.022578977048397064, + -0.024184303358197212, + 0.016653627157211304, + -0.0029724636115133762, + 0.012470643036067486, + 0.0020588634070008993, + 0.0025841835886240005, + 0.004382018465548754, + -0.02406684122979641, + 0.014930837787687778, + -0.004812715575098991, + -0.02866094373166561, + -0.013403820805251598, + -0.021939456462860107, + 0.010088756680488586, + 0.017267044633626938, + 0.001654268940910697, + 0.0012194932205602527, + 0.005856830161064863, + -0.020699571818113327, + 0.001604510354809463, + 0.013938928954303265, + 0.009240414015948772, + -1.1267056834185496e-5, + 0.01956409588456154, + -0.012477168813347816, + 0.004434224218130112, + 0.01691465638577938, + -0.02521536685526371, + 0.009462288580834866, + 0.00670843617990613, + 0.010428094305098057, + -0.0014682860346511006, + 0.02434092015028, + 8.014394552446902e-5, + 0.0020588634070008993, + 0.01308406051248312, + -0.015883592888712883, + 0.004479904193431139, + -0.016366494819521904, + -0.0162490326911211, + 0.012823032215237617, + -0.014865580946207047, + 0.012548951432108879, + -0.026337789371609688, + 0.03335946053266525, + 0.01365179754793644, + -0.014434883370995522, + 0.006183115765452385, + -0.004594103898853064, + 0.003762075211852789, + 0.0032269665971398354, + 0.019838176667690277, + 0.006349521689116955, + 0.028217196464538574, + 0.005749155767261982, + -0.01803707890212536, + -0.0050476412288844585, + -0.015583409927785397, + 0.013873672112822533, + -0.006339733023196459, + -0.010989305563271046, + -0.007556779310107231, + -0.014160803519189358, + 0.012464117258787155, + 0.011517888866364956, + -0.009651534259319305, + -0.02137824520468712, + 0.017267044633626938, + -0.028295503929257393, + 0.004150355234742165, + -0.02233099937438965, + -0.024967389181256294, + 0.006398464553058147, + 0.021365193650126457, + 0.007047773338854313, + -0.002837055129930377, + 0.009625431150197983, + -0.008855396881699562, + 0.0007300644647330046, + -0.0025221891701221466, + 0.009494916535913944, + 0.018598290160298347, + -0.0036805036943405867, + -0.006741064600646496, + -0.0158444382250309, + -0.010375888086855412, + 0.025189263746142387, + 0.0030703493393957615, + 0.0025221891701221466, + -0.01442183181643486, + 0.01217046007514, + -0.01560951303690672, + 0.014304369688034058, + -0.0029806208331137896, + 0.013547386042773724, + 0.0191203486174345, + -0.01232707779854536, + -0.01835031248629093, + 0.01651006191968918, + -0.010976254008710384, + -0.008705304935574532, + 0.008437750861048698, + 0.0029855151660740376, + 0.005791572853922844, + 0.007622036151587963, + 0.014082495123147964, + 0.025907091796398163, + 0.015713924542069435, + -0.020608210936188698, + -0.021613171324133873, + 0.005377189721912146, + 0.0059547158889472485, + -0.003882800927385688, + 0.03325504809617996, + 0.00826808251440525, + -0.010682596825063229, + 0.03818849101662636, + 0.007393636275082827, + 0.009475339204072952, + -0.0010881631169468164, + -0.002145329024642706, + 0.007824333384633064, + 0.007491522002965212, + -0.011687557213008404, + 0.002226900542154908, + -0.0017603118903934956, + 0.012007317505776882, + 0.015165763907134533, + -0.012261820025742054, + -0.02016446180641651, + -0.008176722563803196, + 0.022096075117588043, + 0.02188725210726261, + 7.12730543455109e-5, + 0.004111201036721468 + ], + "d545e65f-9b87-41d1-b840-12f95d36c6eb": [ + -0.013338389806449413, + -0.05606645345687866, + 0.0006075749406591058, + 0.03637285903096199, + -0.004414730705320835, + -0.02099980041384697, + -0.015511216595768929, + -0.0011586312903091311, + -0.010411982424557209, + 0.054358333349227905, + -0.01600104384124279, + 0.00642114132642746, + 0.013614702969789505, + -0.0229465514421463, + 0.007925163954496384, + 0.03722691908478737, + -0.024127162992954254, + 0.0188897717744112, + 0.005931313149631023, + -0.0059846919029951096, + 0.03217792510986328, + -0.017093736678361893, + -0.015574014745652676, + 0.022444164380431175, + 0.013853337615728378, + -0.013476546853780746, + -0.02256976068019867, + 0.005209131166338921, + -0.02337358146905899, + 0.014481321908533573, + -0.004367631860077381, + 0.027304764837026596, + -0.010889250785112381, + -0.007529533468186855, + -0.0061730872839689255, + -0.02989206090569496, + -0.01508418656885624, + 0.016239678487181664, + -0.01159887295216322, + 0.02740524150431156, + 0.006857590284198523, + 0.009922154247760773, + 0.013099756091833115, + -0.049183741211891174, + -0.03652357682585716, + 0.011347679421305656, + -0.04513952136039734, + -0.031248506158590317, + 0.037302277982234955, + -0.01900281012058258, + 0.005595341324806213, + 0.0010086999973282218, + 0.01808595284819603, + 0.07586052268743515, + 0.009331849403679371, + 0.006374042481184006, + 0.02642558515071869, + 0.04114554077386856, + 0.015008828602731228, + -0.06631515920162201, + 0.010229866951704025, + -0.018186429515480995, + -0.014669717289507389, + -0.007102504372596741, + 0.028761688619852066, + -0.010368023067712784, + -0.00842755101621151, + -0.00831451453268528, + -0.035870473831892014, + 0.006088309455662966, + -0.008050761185586452, + 0.0313238650560379, + -0.03305710107088089, + -0.01163027249276638, + 0.06460703909397125, + -0.024039244279265404, + 0.06772184371948242, + 0.03368508815765381, + 0.024792825803160667, + -0.050389472395181656, + 0.01788499765098095, + 0.00855942815542221, + -0.020007584244012833, + -0.0014263096963986754, + 0.04385843500494957, + -0.003959442023187876, + -0.04413474723696709, + -0.03539320454001427, + -0.012647607363760471, + -0.007510694209486246, + 0.0017395169707015157, + 0.03549368306994438, + -0.011680510826408863, + 0.015611693263053894, + 0.020635569468140602, + -0.013664942234754562, + 0.014481321908533573, + 6.790082261431962e-5, + -0.0034507745876908302, + -0.014192448928952217, + -0.021364031359553337, + 0.004609405994415283, + 0.001791325630620122, + -0.0064619602635502815, + -0.0031006732024252415, + -0.007077384740114212, + 0.023951327428221703, + -0.004530908074229956, + -0.012848561629652977, + 0.03134898468852043, + -0.046244774013757706, + -0.044561777263879776, + 0.010832731612026691, + -0.01538561936467886, + -0.04079386964440346, + -0.04328068718314171, + 0.02099980041384697, + 0.009011576883494854, + -0.009884475730359554, + -0.02548361010849476, + 0.039387185126543045, + 0.0017520766705274582, + 0.001722247339785099, + 0.013790538534522057, + 0.006863870192319155, + 0.022017134353518486, + 0.01238385308533907, + -0.010776213370263577, + 0.04152233153581619, + 0.006301824003458023, + -0.006261005066335201, + 0.0007327793864533305, + 0.015561454929411411, + 0.012189178727567196, + 0.016503430902957916, + -0.017043497413396835, + 0.022984230890870094, + 0.08369776606559753, + -0.02763131633400917, + -0.004530908074229956, + -0.031449463218450546, + 0.029138479381799698, + -0.028962643817067146, + 0.0023675013799220324, + -0.006251585204154253, + -0.003896643640473485, + -0.04220055416226387, + 0.035041533410549164, + -0.0211128368973732, + 0.023436380550265312, + -0.04300437495112419, + 0.001484398264437914, + -0.04154745116829872, + -0.006386601831763983, + 0.029414791613817215, + -0.000360894831828773, + 0.004198076203465462, + 0.026978211477398872, + 0.003566951723769307, + 0.029063120484352112, + -0.012597368098795414, + -0.04757610335946083, + 0.03554391860961914, + 0.024076923727989197, + 0.06415489315986633, + 0.011209522373974323, + 0.030720999464392662, + 0.05345403775572777, + -0.0154860969632864, + 0.022130172699689865, + 0.010399422608315945, + -0.03634773939847946, + 0.012490610592067242, + 0.0043833316303789616, + -0.0010793482651934028, + -0.007730488665401936, + 0.011309999972581863, + 0.02122587524354458, + 0.020623009651899338, + 0.002926407614722848, + -0.022130172699689865, + 0.010204747319221497, + 0.023323342204093933, + 0.020585330203175545, + 0.014594358392059803, + 0.030921954661607742, + -0.0026783538050949574, + 0.003510433016344905, + -0.019291682168841362, + -0.004891999065876007, + -0.016616469249129295, + 0.0228586345911026, + 0.008597107604146004, + 0.014079411514103413, + -0.031926728785037994, + -0.023335902020335197, + 0.03466474264860153, + -0.015096746385097504, + -0.00039288276457227767, + 0.0010000652400776744, + -0.043757956475019455, + -0.025872958824038506, + -0.036724530160427094, + 0.017985474318265915, + -0.044812969863414764, + 0.036498457193374634, + -0.011096484959125519, + -0.01518466416746378, + 0.053102366626262665, + -0.02402668632566929, + 0.03860848397016525, + -0.05908077955245972, + -0.015033948235213757, + 0.003639169968664646, + -0.008973898366093636, + 0.013200233690440655, + 0.019480077549815178, + 0.03225328028202057, + -0.012509450316429138, + -0.005249950103461742, + 0.015234903432428837, + -0.008088439702987671, + -0.014594358392059803, + -0.023185186088085175, + -0.044335704296827316, + -0.005168312229216099, + -0.008088439702987671, + 0.0019200624665245414, + -0.011240921914577484, + 0.007755608297884464, + 0.016164319589734077, + -0.013275591656565666, + 0.011291160248219967, + 0.005783736705780029, + 0.024014126509428024, + 0.046269893646240234, + 0.020710928365588188, + 0.01285484153777361, + -0.0015205073868855834, + -0.013614702969789505, + 0.009394647553563118, + 0.009093214757740498, + 0.004540327470749617, + -0.059532925486564636, + -0.025081699714064598, + -8.865374547895044e-5, + 0.00825799535959959, + 0.03413723409175873, + 0.020472293719649315, + -0.009959833696484566, + -0.0013658661628142, + -0.015071626752614975, + 0.0195428766310215, + 0.00868502538651228, + -0.050841622054576874, + 0.03637285903096199, + 0.029615746811032295, + -0.029640866443514824, + -0.004270294215530157, + -0.01723189279437065, + 0.014393404126167297, + 0.029816702008247375, + -0.011617712676525116, + -0.0006464315229095519, + 0.05159520357847214, + -0.004351932089775801, + 0.027304764837026596, + -0.02263255976140499, + 0.0024224501103162766, + 0.026299988850951195, + 0.008973898366093636, + -0.00764257088303566, + -0.025395691394805908, + -0.01994478702545166, + -0.002478968584910035, + 0.01848786324262619, + 0.007196702063083649, + -0.010738533921539783, + -0.014971149154007435, + -0.019794069230556488, + -0.02823418192565441, + -0.03697572648525238, + 0.04315509274601936, + 0.025182176381349564, + 0.014456202276051044, + 0.02145194821059704, + -0.023072149604558945, + -0.014619478024542332, + -0.05355451628565788, + -0.020610449835658073, + -0.0073913768865168095, + -0.01651599071919918, + -0.004976776894181967, + 0.015988484025001526, + 0.009382087737321854, + 0.010474780574440956, + -0.03160017728805542, + -0.02086164429783821, + -0.005290769040584564, + -0.002968796528875828, + -0.007347417995333672, + 0.026124153286218643, + -0.002816510386765003, + -0.03300686180591583, + 0.02003270387649536, + -0.011247201822698116, + 0.023762932047247887, + 0.018663698807358742, + -0.02989206090569496, + 0.04297925531864166, + 0.037302277982234955, + -0.012057301588356495, + -0.03923646733164787, + -0.044159866869449615, + 0.024265319108963013, + 0.002034669741988182, + -0.031474582850933075, + -0.004012820776551962, + -0.04413474723696709, + 0.005686399061232805, + -0.013074636459350586, + -0.0015040227444842458, + -0.02288375422358513, + 0.020849084481596947, + 0.029188716784119606, + -0.05380570888519287, + 0.01988198794424534, + -0.002124157501384616, + 0.018349705263972282, + 0.015008828602731228, + -0.026350228115916252, + -0.006769672501832247, + -0.029791582375764847, + -0.010198467411100864, + -0.0236875731498003, + -0.007359977811574936, + -0.05425785854458809, + -0.04320533201098442, + -0.020748605951666832, + -0.0031901609618216753, + -0.023938767611980438, + -0.03973885625600815, + 0.02465466968715191, + 0.0011641262099146843, + -0.03546856343746185, + -0.02180362120270729, + 0.024051804095506668, + 0.03371020406484604, + 0.0009765158174559474, + 0.03765394911170006, + 0.0007881204946897924, + 0.018638579174876213, + 0.027279645204544067, + 0.008195197209715843, + 0.04991220310330391, + 0.01360214315354824, + -0.006091449409723282, + -0.012679005973041058, + 0.028636090457439423, + -0.0004203571006655693, + 0.010066591203212738, + -0.03757859021425247, + -0.01139791775494814, + -0.041019946336746216, + -0.029565507546067238, + 0.010261266492307186, + 0.010568978264927864, + -0.0028447695076465607, + -0.00862850621342659, + 0.018663698807358742, + 0.005403806455433369, + -0.01190030574798584, + -0.030494924634695053, + -0.014179889112710953, + 0.04315509274601936, + -0.04805337265133858, + 0.010744813829660416, + 0.007228101138025522, + -0.01737005077302456, + 0.019166085869073868, + -0.02122587524354458, + -0.0017143975710496306, + -0.001317982329055667, + -0.012735525146126747, + -0.0007107998826541007, + 0.008710144087672234, + 0.014569239690899849, + -0.06219558045268059, + -0.005400666501373053, + 0.01577496901154518, + -0.014832993037998676, + -0.004756982438266277, + -0.0027709815185517073, + -0.003993981052190065, + 0.0109269293025136, + 0.00926905032247305, + 0.020698368549346924, + -0.022707918658852577, + 0.016151759773492813, + -0.017922677099704742, + -0.010820171795785427, + -0.03368508815765381, + -0.01994478702545166, + -0.020334137603640556, + -0.006480799522250891, + -0.04599358141422272, + 0.00712134363129735, + -0.024378357455134392, + 0.03571975603699684, + -0.018211549147963524, + 0.02568456530570984, + -0.014832993037998676, + -0.0235996562987566, + 0.0058371154591441154, + 0.026149272918701172, + 0.03371020406484604, + -0.01976895146071911, + 0.02642558515071869, + -0.041421856731176376, + 0.037905141711235046, + 0.04431058466434479, + 0.02843513712286949, + -0.003673708997666836, + 0.01956799626350403, + 0.009827956557273865, + 0.0170560572296381, + 0.01911584660410881, + 0.00595015287399292, + -0.008276835083961487, + 0.009589322842657566, + -0.026877734810113907, + 0.015260022133588791, + -0.02931431494653225, + 0.0026548043824732304, + -0.03474010154604912, + -0.023298222571611404, + 0.0033314574975520372, + 0.022469284012913704, + -0.0021806759759783745, + -0.025722242891788483, + 0.011554913595318794, + 0.0023533718194812536, + 0.0003418590349610895, + -0.015812648460268974, + -0.03268031030893326, + -0.009777718223631382, + 0.0006001176661811769, + 0.02951527014374733, + -0.013175114057958126, + -0.03850800544023514, + 0.0009254920878447592, + 0.029590627178549767, + -0.03529272601008415, + -0.014971149154007435, + 0.015448417514562607, + -0.012949039228260517, + 0.04616941884160042, + 0.0057900166139006615, + 0.011391637846827507, + -0.047073714435100555, + 0.027756912633776665, + -0.029012881219387054, + 0.01737005077302456, + -0.021075159311294556, + 0.0007916528847999871, + -0.03747811168432236, + 0.0009317719377577305, + 0.019467517733573914, + 0.009733758866786957, + 0.0014066852163523436, + -0.0059815519489347935, + -0.0004462614597287029, + -0.038759201765060425, + 0.03652357682585716, + 0.010336624458432198, + -0.011536074802279472, + -0.011171843856573105, + -0.030017657205462456, + 0.03371020406484604, + -0.00434251269325614, + 0.010625497438013554, + -0.0002884803689084947, + 0.0004105448315385729, + -0.0023533718194812536, + 1.2970577927262639e-6, + 0.03099731355905533, + 0.00569895887747407, + -0.034589383751153946, + -0.03820657357573509, + 0.0017081177793443203, + 0.0036862688139081, + 0.019593115895986557, + 0.009325569495558739, + 0.005736637860536575, + 0.022079933434724808, + 0.022393925115466118, + 0.055614303797483444, + 0.008879700675606728, + -0.0017395169707015157, + -0.002058219164609909, + -0.020585330203175545, + -0.025069139897823334, + 0.017382610589265823, + -0.0047287228517234325, + -0.02180362120270729, + 0.028585853055119514, + 0.0037679066881537437, + 0.0032717990688979626, + -0.034790340811014175, + 0.014519000425934792, + -0.016880221664905548, + 0.009959833696484566, + -0.050213638693094254, + 0.015197223983705044, + -0.017181655392050743, + 0.0066503556445240974, + 0.007115063723176718, + 0.002003270434215665, + 0.0626477301120758, + -0.0008642636239528656, + 0.012773203663527966, + 0.004066199529916048, + -0.02413972280919552, + 0.0039500221610069275, + -0.008967618457973003, + 0.011196962557733059, + -0.010368023067712784, + -0.00600039167329669, + -0.008509189821779728, + -0.00018496104166842997, + -0.012691565789282322, + -0.0011727609671652317, + -0.0047726817429065704, + -0.019693592563271523, + 0.001791325630620122, + -0.0072846198454499245, + -0.0173198115080595, + 0.010192187502980232, + 0.02808346413075924, + -0.026877734810113907, + -0.024792825803160667, + 0.037101320922374725, + -0.0015283571556210518, + -0.019505197182297707, + -0.02236880734562874, + -0.0056455801241099834, + -0.003375416388735175, + 0.008320794440805912, + -0.012603648006916046, + -0.00852802861481905, + -0.03539320454001427, + 0.02245672419667244, + -0.023901088163256645, + 0.004025380592793226, + -0.0040567796677351, + -0.032504476606845856, + 0.005890494212508202, + -0.001861973898485303, + -0.016076402738690376, + -0.03720179945230484, + -0.004935957957059145, + 0.011969383805990219, + 0.003965721931308508, + 0.015360499732196331, + -0.030017657205462456, + 0.0013556614285334945, + -0.055815257132053375, + 0.012176618911325932, + 0.04880695044994354, + 0.02619951218366623, + 0.006581277120858431, + 0.0040567796677351, + 0.03863360360264778, + 0.015398179180920124, + -0.02619951218366623, + 0.020899321883916855, + 0.013476546853780746, + -0.003563811769708991, + -0.038985274732112885, + -0.007385097444057465, + -0.0045717270113527775, + 0.006129128392785788, + 0.032353758811950684, + -0.018450183793902397, + 0.04114554077386856, + 0.010964608751237392, + 0.012339894659817219, + -0.0008595537510700524, + -0.02599855698645115, + 0.03134898468852043, + 0.02106259949505329, + 0.008239156566560268, + 0.007403936702758074, + 0.006069469731301069, + -0.02660142257809639, + 0.017935236915946007, + -0.0022544641979038715, + -0.004747562576085329, + 0.01412965077906847, + -0.009790278039872646, + 0.019982464611530304, + 0.021037479862570763, + -0.013891016133129597, + -0.03142434358596802, + -0.030218612402677536, + 0.036724530160427094, + -0.019844308495521545, + 0.017935236915946007, + 0.0046784840524196625, + 0.02662654034793377, + 0.026676779612898827, + -0.021389150992035866, + 0.016905341297388077, + -0.017633803188800812, + 0.01628991775214672, + 0.014493881724774837, + 0.01602616347372532, + 0.024554193019866943, + 0.024215079843997955, + -0.042501989752054214, + 0.009036696515977383, + 0.00031752465292811394, + 0.03074611909687519, + -0.012974158860743046, + -0.019668472930788994, + 0.05159520357847214, + -0.02494354359805584, + -0.031926728785037994, + -0.021276112645864487, + -0.017759401351213455, + -0.02548361010849476, + -0.013313270173966885, + -0.007673969957977533, + 0.007133903447538614, + 0.03265519067645073, + -0.01045594085007906, + 0.03848288580775261, + -0.01034290436655283, + 0.0015966504579409957, + 0.0034319350961595774, + -0.01118440367281437, + -0.019103286787867546, + 0.026727018877863884, + 0.0313238650560379, + -0.008842021226882935, + 0.044787850230932236, + -0.009576763026416302, + 0.007303459104150534, + -0.0012842281721532345, + 0.03516713157296181, + -0.000755936314817518, + -0.003676848951727152, + -0.020535090938210487, + 0.026902854442596436, + -0.0024020406417548656, + -0.03119826875627041, + 0.002526067430153489, + 0.009551643393933773, + -0.0003571661654859781, + -0.010493620298802853, + 0.03373532369732857, + -0.04217543452978134, + 0.036272384226322174, + -0.007849805988371372, + 0.03034420870244503, + 0.00970236025750637, + 0.01508418656885624, + 0.013225352391600609, + 0.0024915284011512995, + 0.06777208298444748, + 7.349380757659674e-5, + -0.013539345003664494, + 0.012478050775825977, + 0.008672465570271015, + 0.009463725611567497, + 0.005953292828053236, + 0.024679789319634438, + 0.01008542999625206, + -0.009589322842657566, + -0.0004458689654711634, + -0.034212592989206314, + -0.022067373618483543, + -0.0403919592499733, + 0.04046731814742088, + -0.026023676618933678, + -0.006970627699047327, + -0.004015960730612278, + -0.004515208303928375, + -0.024805385619401932, + -0.016679266467690468, + -0.013212792575359344, + 0.03674964979290962, + 0.0034758939873427153, + -0.004832340404391289, + -0.004389611538499594, + 0.02417740225791931, + -0.02825930155813694, + -0.008440110832452774, + 0.0031791713554412127, + -0.007184142246842384, + -0.029992537572979927, + -0.01571217179298401, + -0.024780265986919403, + -0.008170077577233315, + 0.0010997577337548137, + 0.02337358146905899, + -0.01284228265285492, + -0.02991718053817749, + -0.0016249098116531968, + -0.00618564710021019, + 0.010895530693233013, + -0.007378817535936832, + -0.009865636005997658, + -0.019103286787867546, + -0.00027768686413764954, + -0.002756851725280285, + -0.04225079342722893, + 0.020384375005960464, + -0.018475303426384926, + 0.01372774038463831, + -0.009388367645442486, + 0.023788051679730415, + -0.002744292141869664, + -0.04471249505877495, + -0.007780727464705706, + -0.005692678969353437, + 0.007655130699276924, + -0.0076802498660981655, + 0.00022921433264855295, + 0.0012426242465153337, + 0.012565969489514828, + 0.0005192646640352905, + 0.013149994425475597, + 0.004505788441747427, + 0.0017630663933232427, + -0.012465491890907288, + 0.005761757493019104, + 0.013024398125708103, + 0.01846274361014366, + 0.013300711289048195, + 0.0055890618823468685, + -0.01007287111133337, + -0.015033948235213757, + -0.03215280547738075, + 0.00373650761321187, + -0.01454412005841732, + 0.006587557028979063, + 0.0055419630371034145, + -0.0010675735538825393, + -0.0026500944513827562, + 0.006094589363783598, + -0.03745299205183983, + 0.024905864149332047, + -0.01558657456189394, + 0.006794791668653488, + 0.021552426740527153, + 0.003749067196622491, + -0.01004147157073021, + -0.012666446156799793, + 0.052248306572437286, + -0.014167329296469688, + 0.01464459765702486, + -0.009074375033378601, + -0.011203242465853691, + -0.00075436633778736, + -0.0032623792067170143, + 0.02702845074236393, + 0.02579760178923607, + 0.023448940366506577, + 0.014832993037998676, + 0.03825681284070015, + 0.015222343616187572, + 0.02705357037484646, + 0.0005070974584668875, + -0.004841760266572237, + -0.043557003140449524, + 0.0009812257485464215, + -0.02303447015583515, + 0.020497413352131844, + 0.002816510386765003, + -0.027530837804079056, + -0.044586896896362305, + 0.052499499171972275, + -0.0036862688139081, + -0.005604761186987162, + -0.010619217529892921, + 0.034840576350688934, + -0.00293268752284348, + -0.010644336231052876, + -0.010311504825949669, + -0.0014325896045193076, + -0.04694811999797821, + -0.008992737159132957, + 0.017219332978129387, + 0.012189178727567196, + -0.0022528942208737135, + -1.2743668776238337e-5, + 0.0015236473409458995, + -0.0022481842897832394, + -0.007787007372826338, + 0.014531560242176056, + -0.015435857698321342, + 0.04574238881468773, + 0.009947273880243301, + 0.0013980504591017962, + -0.027932748198509216, + -0.018299467861652374, + -0.013463987037539482, + -0.041472092270851135, + 0.017156535759568214, + 0.028962643817067146, + 0.05091698095202446, + 0.005284489132463932, + 0.01271668542176485, + -0.02888728491961956, + -0.013489105738699436, + 0.02740524150431156, + 0.04845527932047844, + 0.029213836416602135, + -0.0135016655549407, + -0.019442398101091385, + -0.02557152695953846, + 0.018362265080213547, + 0.0013815658167004585, + -0.003962581977248192, + -0.0008179497672244906, + -0.0011405767872929573, + -0.008992737159132957, + 0.00779328728094697, + 0.020497413352131844, + -0.00579943647608161, + -0.01680486463010311, + -0.034589383751153946, + 0.026450704783201218, + 0.012013343162834644, + 0.017960354685783386, + -0.016566229984164238, + 0.001865113852545619, + -0.06309987604618073, + 0.0114293172955513, + -0.018500423058867455, + -0.012704125605523586, + 0.026450704783201218, + -0.009853076189756393, + 0.021439390257000923, + 0.030494924634695053, + -0.0065561579540371895, + -0.005567082203924656, + 0.009809116832911968, + 0.029264075681567192, + 0.011222082190215588, + -0.004097598604857922, + 0.04466225579380989, + 0.03745299205183983, + -0.013652382418513298, + -0.004778961651027203, + 0.002931117545813322, + -0.0036674293223768473, + 0.0003516713040880859, + 0.00212886743247509, + 0.015460977330803871, + -0.003654869506135583, + -0.01745796762406826, + -0.002712892834097147, + 0.0065184785053133965, + 0.0065687173046171665, + 0.031474582850933075, + 0.03401163965463638, + 0.0017300972249358892, + 0.03036932833492756, + -0.010248706676065922, + 0.0022858635056763887, + 0.05091698095202446, + 0.013300711289048195, + 0.007265780121088028, + -0.018965130671858788, + 0.032102566212415695, + 0.007447895593941212, + -0.004336232785135508, + 0.019530316814780235, + -0.024051804095506668, + -0.002452279208227992, + 0.03348413109779358, + 0.0030080454889684916, + -0.035217367112636566, + 0.023850848898291588, + 0.014682277105748653, + 0.002756851725280285, + -0.006719433702528477, + 0.008521748706698418, + 0.015699611976742744, + 0.018550660461187363, + 0.0045842863619327545, + -0.02805834636092186, + -0.004402170889079571, + 0.009740038774907589, + 0.0324542373418808, + 0.010820171795785427, + -0.0018588339444249868, + 0.028410017490386963, + 0.01577496901154518, + -0.013815658167004585, + -0.004766401834785938, + -0.01860089972615242, + 0.02171570248901844, + -0.020321577787399292, + -0.01759612374007702, + -0.0056958189234137535, + -0.002543336944654584, + -0.0210249200463295, + 0.009978673420846462, + 0.013664942234754562, + -0.01611408032476902, + -0.01582520827651024, + 0.02871144935488701, + -0.01774684153497219, + -0.0005918753449805081, + -0.0034601944498717785, + 0.017834758386015892, + -0.03509177267551422, + -0.005027015693485737, + -0.008440110832452774, + 0.0034790339414030313, + 0.0106882955878973, + -0.024566752836108208, + -0.012999278493225574, + 0.0033659967593848705, + -0.002758421702310443, + -0.031022433191537857, + 0.015900567173957825, + -0.008295674808323383, + -0.023448940366506577, + -0.009727478958666325, + -0.01251573022454977, + -0.0006087524234317243, + -0.020321577787399292, + -0.04403426870703697, + 0.014782753773033619, + -0.016126640141010284, + 0.0010463790968060493, + 0.016490871086716652, + -0.02828441932797432, + 0.02577248215675354, + 0.0003143847279716283, + 0.004081898834556341, + -0.001485183252952993, + 0.026124153286218643, + 0.044385939836502075, + -0.01402917318046093, + -0.03360972926020622, + 0.011291160248219967, + 0.029264075681567192, + -0.013200233690440655, + 0.009068096056580544, + 0.036900367587804794, + 3.539771932992153e-5, + -0.013062076643109322, + -0.01580008864402771, + 0.002174396300688386, + 0.00536298705264926, + -0.01894001103937626, + -0.006631515920162201, + 0.008590827696025372, + 0.0021429969929158688, + -0.038784321397542953, + 0.02974134311079979, + -0.01038686279207468, + 0.01014194916933775, + -0.00045411125756800175, + -0.025445930659770966, + -0.013438867405056953, + -0.028937524184584618, + -0.017784519121050835, + -0.03828193247318268, + -0.016880221664905548, + -0.044812969863414764, + -0.016842544078826904, + 0.009243931621313095, + -0.017721721902489662, + -0.005080394446849823, + 0.04016588628292084, + -0.002174396300688386, + -0.016277357935905457, + -0.030293969437479973, + 0.009532803669571877, + -0.0008713284623809159, + -0.018324585631489754, + -0.013463987037539482, + -0.021778501570224762, + 0.004625105764716864, + -0.008766663260757923, + -0.02449139393866062, + 0.0008010726887732744, + 0.04009052738547325, + 0.005708378739655018, + 0.015410738997161388, + 0.009495125152170658, + -0.031675536185503006, + 0.006374042481184006, + -0.03928670659661293, + -0.005422645714133978, + -0.02066068910062313, + -0.0026579443365335464, + 0.0177970789372921, + 0.015812648460268974, + 0.0162271186709404, + -0.004276574123650789, + -0.017357490956783295, + 0.01392869558185339, + 0.01412965077906847, + -0.032328639179468155, + -0.028384897857904434, + -0.01285484153777361, + -0.002742722164839506, + 0.004785241559147835, + 0.0270033311098814, + 0.029791582375764847, + -0.007410216610878706, + -0.01660390943288803, + 0.024064363911747932, + -0.006593836937099695, + -0.018211549147963524, + 0.006681754719465971, + -0.003397395834326744, + -0.01694302074611187, + 0.026450704783201218, + -0.014292926527559757, + -0.007994242012500763, + 0.01851298101246357, + -0.029665986075997353, + -0.02866121008992195, + -0.02931431494653225, + 0.004860599525272846, + -0.017696602270007133, + -0.0008626936469227076, + -0.0017740561161190271, + -0.004251454956829548, + -0.06480799615383148, + -0.02122587524354458, + 0.011046246625483036, + -0.010091709904372692, + 0.007378817535936832, + -0.0021398570388555527, + 0.0038150055333971977, + 0.013024398125708103, + 0.015498656779527664, + 0.0015558315208181739, + -0.00028592918533831835, + -0.0015008829068392515, + -0.009049256332218647, + 0.012848561629652977, + 0.01014194916933775, + 0.008634786121547222, + 0.017709162086248398, + -0.017382610589265823, + 0.011542354710400105, + -0.043557003140449524, + 0.004323672968894243, + 0.00134467170573771, + 0.005168312229216099, + -0.00021743962133768946, + -0.0236875731498003, + 0.007667690049856901, + 0.020133182406425476, + -0.02182873897254467, + -0.01974383182823658, + 0.006169947329908609, + -0.019756391644477844, + 0.0012771633919328451, + -0.0011366518447175622, + -0.023222865536808968, + -0.021552426740527153, + 0.015787528827786446, + 0.019982464611530304, + -0.02066068910062313, + 0.04380819573998451, + 0.01600104384124279, + 0.014971149154007435, + 0.0044775293208658695, + -0.00033773790346458554, + -0.01071341522037983, + 0.00226388406008482, + -0.005149472504854202, + 0.002174396300688386, + -0.056418124586343765, + 0.005319028161466122, + 0.01873905584216118, + 0.01224569696933031, + 0.003661149414256215, + 0.006574997212737799, + -0.012176618911325932, + -0.015787528827786446, + -0.00045646619400940835, + 0.015950804576277733, + 0.012609927915036678, + 0.007228101138025522, + 0.012082421220839024, + 0.03185137361288071, + 0.003541832324117422, + -0.0037427872885018587, + -0.00851546972990036, + -0.025006340816617012, + -0.00027199575561098754, + 0.002758421702310443, + 0.01682998426258564, + 0.015599134378135204, + 0.0008218746515922248, + 0.00571465864777565, + -0.024893304333090782, + -0.003041014773771167, + 0.023624775931239128, + 0.0213765911757946, + 0.008760383352637291, + 0.01288624107837677, + 0.020710928365588188, + 0.014782753773033619, + 4.565152630675584e-5, + 0.0024664090014994144, + -0.008609666489064693, + 0.0033911161590367556, + -0.0011201673187315464, + -0.011121604591608047, + -0.0036925487220287323, + -0.002240334637463093, + -0.00011823770182672888, + -0.001300712814554572, + 0.005249950103461742, + 0.017520766705274582, + 0.01132883969694376, + 0.004132137633860111, + 0.018324585631489754, + -0.019442398101091385, + 0.05074114352464676, + 0.0004017137980554253, + -0.01837482489645481, + 0.0015785959549248219, + -0.015599134378135204, + -0.0004199646064080298, + 0.003664289368316531, + 0.015636812895536423, + -0.02202969416975975, + 0.009821676649153233, + -0.013790538534522057, + -0.01877673529088497, + -0.0326300710439682, + -0.003069274127483368, + -0.0070459856651723385, + -0.017784519121050835, + 0.021012360230088234, + -0.011102764867246151, + 0.009683520533144474, + -0.01370262075215578, + 0.008892259560525417, + 0.011441877111792564, + 0.009476285427808762, + -0.003469614079222083, + -0.019844308495521545, + -0.0154860969632864, + 0.011925424449145794, + 0.007202981971204281, + -0.004179236479103565, + -0.015624253079295158, + 0.012013343162834644, + 0.007184142246842384, + 0.008433830924332142, + 0.0026312549598515034, + 0.03692548722028732, + -0.0014969579642638564, + 0.008402432315051556, + -0.007611171808093786, + -0.008201477117836475, + -0.003538692370057106, + 0.023361021652817726, + 0.002948387060314417, + 0.011021126993000507, + 0.04132137820124626, + -0.011718190275132656, + -0.013853337615728378, + 0.008031921461224556, + -0.004961077123880386, + 0.014418522827327251, + 0.00020448744180612266, + 0.016101522371172905, + 0.002683063503354788, + -0.011636552400887012, + -0.016955580562353134, + 0.000496107735671103, + -0.0185381006449461, + 0.019379600882530212, + 0.027782032266259193, + 0.035820234566926956, + -0.002593575743958354, + -0.032102566212415695, + 0.004204356111586094, + 0.007567212916910648, + -0.007089944556355476, + -0.0053033288568258286, + -0.014870671555399895, + 0.01934192143380642, + 0.03220304474234581, + 0.015950804576277733, + 0.01174330897629261, + -0.01412965077906847, + -0.008502909913659096, + 0.011278600431978703, + -0.014091971330344677, + -0.015260022133588791, + -0.006122848484665155, + -0.005067834630608559, + -0.007699089590460062, + -0.04421010613441467, + 0.0023533718194812536, + -0.014192448928952217, + -0.03345901146531105, + -0.005447765346616507, + -0.008132399059832096, + -0.015172104351222515, + -0.03476522117853165, + 0.0009419766720384359, + 0.015762409195303917, + 0.022871194407343864, + 0.0056016212329268456, + 0.033157579600811005, + 0.017332371324300766, + 0.0210249200463295, + -0.04076875001192093, + -0.0001589585590409115, + 0.028359778225421906, + 0.007202981971204281, + -0.012898800894618034, + 0.018977690488100052, + 0.008816901594400406, + 0.01877673529088497, + 0.012182898819446564, + 0.024817945435643196, + -0.023549417033791542, + -0.011919145472347736, + 0.009539083577692509, + -0.015134425833821297, + 0.023536857217550278, + 0.009218811988830566, + 0.003114802995696664, + -0.012120099738240242, + -0.024265319108963013, + 0.022356247529387474, + 0.027179166674613953, + -0.021213315427303314, + -0.023662453517317772, + 0.00434251269325614, + 0.002811800455674529, + -0.019279122352600098, + -0.0046784840524196625, + -0.01628991775214672, + 0.023750372231006622, + -0.014481321908533573, + -0.005523123312741518, + -0.038106098771095276, + 0.006832471117377281, + -0.007253220304846764, + 0.005212271120399237, + 0.013953814283013344, + 0.03054516389966011, + 0.017734281718730927, + 0.01700581982731819, + -0.0173198115080595, + 0.0025590367149561644, + 0.0061762272380292416, + -0.0043833316303789616, + -0.010292665101587772, + -0.008188917301595211, + -0.014205008745193481, + -0.011850066483020782, + 0.006631515920162201, + 0.026752138510346413, + -0.012961599044501781, + 0.019216325134038925, + -0.008879700675606728, + -0.02460443042218685, + 0.011209522373974323, + -0.0077744475565850735, + -0.014506440609693527, + 0.019178645685315132, + 0.03371020406484604, + -0.015561454929411411, + 0.0021147376392036676, + 0.01149839535355568, + 0.01922888495028019, + 0.0031038131564855576, + 0.013539345003664494, + -0.012603648006916046, + 0.004647084977477789, + -0.013840777799487114, + -0.016930460929870605, + 0.03820657357573509, + -0.010311504825949669, + 0.019505197182297707, + 0.010261266492307186, + -0.014669717289507389, + -0.020836524665355682, + 0.005309608764946461, + -0.01434316486120224, + 0.01204474177211523, + -0.009363248012959957, + -0.015599134378135204, + 0.028183942660689354, + 0.02272047847509384, + 0.007152743171900511, + 0.002100608078762889, + 0.0003310655592940748, + -0.017734281718730927, + -0.0009513964760117233, + 0.004059919621795416, + -0.0014106100425124168, + -0.008264275267720222, + -0.010996008291840553, + 0.005165172275155783, + -0.01797291450202465, + -0.04835480451583862, + 0.0180608332157135, + -0.00779328728094697, + 0.02579760178923607, + 0.007033425848931074, + -0.013175114057958126, + 0.0033628568053245544, + -0.013652382418513298, + 0.02851049415767193, + 0.0039971210062503815, + 0.018902331590652466, + 0.03700084611773491, + 0.006983187049627304, + 0.003664289368316531, + 0.006788512226194143, + -0.014192448928952217, + 0.021250994876027107, + 0.025697123259305954, + 0.003968861885368824, + 0.009922154247760773, + 0.01956799626350403, + 0.008264275267720222, + -0.006323803681880236, + 0.00801308173686266, + -0.00039700392517261207, + -0.00010391180694568902, + -0.0038118655793368816, + -0.01868881843984127, + 0.011912865564227104, + 4.457217801245861e-5, + -0.0012143648928031325, + -0.011580033227801323, + -0.022808395326137543, + -0.03195184841752052, + 0.008779223076999187, + -0.00557964202016592, + 0.007089944556355476, + -0.00825799535959959, + 0.015674492344260216, + -0.03456426411867142, + -0.01238385308533907, + 0.013765418902039528, + 0.01956799626350403, + 0.011969383805990219, + -0.028736568987369537, + -0.005262509919703007, + -0.01136023923754692, + 0.00402224063873291, + 0.0017630663933232427, + 0.004675344098359346, + -0.013350949622690678, + 0.004176096525043249, + -0.0032717990688979626, + 0.002127297455444932, + 0.00030104003963060677, + 0.014292926527559757, + -0.0010063451481983066, + -0.0011617712443694472, + -0.013036957010626793, + -0.006060049869120121, + 0.011642832309007645, + 0.01075737364590168, + -0.0244285948574543, + 0.013853337615728378, + 0.0022309147752821445, + 0.03285614773631096, + 0.0014098250539973378, + 0.025207296013832092, + -0.007460455410182476, + -0.024880744516849518, + 0.023134946823120117, + 0.0004764831974171102, + -0.0033251778222620487, + -0.035041533410549164, + 0.021615225821733475, + 0.020422054454684258, + 0.018035713583230972, + -0.009934714064002037, + -0.018814414739608765, + -0.029389671981334686, + -0.0270033311098814, + 0.00021704712708014995, + 0.02568456530570984, + 0.020748605951666832, + 0.01221429742872715, + 0.009645841084420681, + -0.003234119853004813, + -0.0015291421441361308, + 0.007215541321784258, + 0.00415725726634264, + -0.011561193503439426, + -0.013451427221298218, + -0.02231856808066368, + 0.004031660035252571, + -0.006480799522250891, + 0.035041533410549164, + -0.025496169924736023, + 0.004505788441747427, + 0.0005282919155433774, + -0.006706873886287212, + -0.004166676662862301, + -0.01454412005841732, + 0.0015393468784168363, + -0.03320781886577606, + -0.0016311896033585072, + -0.014493881724774837, + -0.005925033241510391, + 0.019492637366056442, + -0.0032152803614735603, + 0.03054516389966011, + -0.018663698807358742, + -0.020736046135425568, + -0.000942761660553515, + 0.008038201369345188, + -0.01662902906537056, + 0.005896774120628834, + 0.01024242676794529, + -0.00075436633778736, + -0.03486569598317146, + -0.019693592563271523, + -0.027957867830991745, + 0.01956799626350403, + 0.004615685902535915, + 0.02496866136789322, + -0.013815658167004585, + 0.029615746811032295, + 0.0030802637338638306, + 0.029665986075997353, + -0.0038118655793368816, + -0.023901088163256645, + -0.00618564710021019, + 0.011592593044042587, + 0.017558446153998375, + -0.012861121445894241, + -0.03494105488061905, + -0.0017850458389148116, + -0.0027725514955818653, + 0.030469806864857674, + 0.009438605979084969, + -0.020786285400390625, + -0.018726496025919914, + 0.01340118795633316, + -0.014958590269088745, + 0.005388106685131788, + -0.02951527014374733, + -0.0017881857929751277, + -0.009696080349385738, + -0.01247177179902792, + -0.011379078030586243, + -0.005366127006709576, + -0.007969122380018234, + 0.0008155948016792536, + -0.002736442256718874, + 0.001365081174299121, + 0.03717667981982231, + 0.006512199062854052, + 0.02268279902637005, + 0.013426307588815689, + -0.0025810161605477333, + -0.02402668632566929, + -0.004778961651027203, + 0.008534308522939682, + 0.003592071123421192, + 2.6468564101378433e-5, + 0.017533326521515846, + -0.03474010154604912, + 0.003044154727831483, + -0.027581077069044113, + 0.030268851667642593, + 0.02640046738088131, + 0.029465030878782272, + -0.0011837506899610162, + 0.0025543267838656902, + 0.0024601290933787823, + -0.0019247723976150155, + 0.005381826777011156, + -0.003896643640473485, + 0.008578267879784107, + -0.020359255373477936, + 0.027731793001294136, + 0.022808395326137543, + 0.019467517733573914, + -0.006242165341973305, + 0.012377574108541012, + -0.03921135142445564, + 0.03320781886577606, + 0.03659893572330475, + -0.012176618911325932, + -0.03285614773631096, + -0.015423297882080078, + 0.02308470942080021, + -0.008471510373055935, + -0.015674492344260216, + 0.003607770660892129, + 0.008496630005538464, + -0.04740026593208313, + -0.00717158243060112, + 0.03921135142445564, + 0.00835847295820713, + -0.023737812414765358, + 0.020208539441227913, + -0.006107148714363575, + 0.006505919154733419, + 0.0018242947990074754, + 0.029364554211497307, + -0.021979456767439842, + 0.01571217179298401, + -0.0019232024205848575, + 0.0003583436191547662, + 0.049560531973838806, + -0.029414791613817215, + 0.00727206002920866, + -0.011077646166086197, + 0.025621766224503517, + 0.008741543628275394, + 0.002593575743958354, + -0.013413747772574425, + -0.016327595338225365, + -0.013099756091833115, + 0.013011838309466839, + 0.0046816240064799786, + -0.0006719433586113155, + -0.006443120539188385, + 0.0019059327896684408, + 0.015172104351222515, + -0.027555957436561584, + -0.01983174867928028, + 0.012352454476058483, + -0.01271668542176485, + -0.020924441516399384, + -0.011309999972581863, + 0.012936479412019253, + 0.005833975505083799, + -0.0017300972249358892, + -0.011014847084879875, + -0.0038715242408216, + 0.019266562536358833, + -0.017244452610611916, + -0.007617451716214418, + 0.003654869506135583, + -0.007805846631526947, + 0.005918753333389759, + 0.01058781798928976, + -0.009966113604605198, + -0.004377051722258329, + 0.011441877111792564, + 0.0033408773597329855, + -0.0008823181851767004, + -0.02328566461801529, + 0.000779485737439245, + -0.010060311295092106, + 0.008006801828742027, + 0.0142426872625947, + 0.012773203663527966, + 0.0049642170779407024, + -0.003516712924465537, + 0.025006340816617012, + 0.006600116845220327, + -0.01839994452893734, + -0.011912865564227104, + -0.003940602298825979, + 0.009356968104839325, + -0.015473537147045135, + -0.011341399513185024, + -0.013715180568397045, + 0.07776959240436554, + 0.01173075009137392, + -0.00571465864777565, + -0.001744226785376668, + 0.03154993802309036, + -0.008031921461224556, + 0.011335119605064392, + 0.012609927915036678, + 0.0030975332483649254, + 0.012974158860743046, + 0.003491593524813652, + -0.006581277120858431, + -0.006932948250323534, + -0.0149837089702487, + -0.011963103897869587, + 0.008188917301595211, + 0.004948517307639122, + 0.020786285400390625, + 0.0027223126962780952, + 0.03054516389966011, + 0.0342879518866539, + -0.0003289068699814379, + -0.01136023923754692, + 0.015310261398553848, + 0.002753711771219969, + -0.0008360043284483254, + 0.0066503556445240974, + 0.018048273399472237, + 0.03659893572330475, + 0.020836524665355682, + 0.008094719611108303, + 0.0025087979156523943, + -0.02825930155813694, + -0.02303447015583515, + 0.014054291881620884, + 0.010776213370263577, + -0.013062076643109322, + 0.008848301135003567, + -0.006113428622484207, + 0.03933694586157799, + -0.015988484025001526, + -0.01737005077302456, + 0.0054446253925561905, + 0.014016613364219666, + -0.007196702063083649, + -0.0009066525381058455, + 0.00035147505695931613, + 0.00023333547869697213, + 0.00014384769019670784, + 0.0069517879746854305, + -0.017784519121050835, + -0.01808595284819603, + 0.0016672987258061767, + -0.004647084977477789, + 0.007661410607397556, + -0.01774684153497219, + 0.0040442198514938354, + -0.020246218889951706, + -0.0012465491890907288, + -0.003658009460195899, + 0.0017646363703534007, + 0.0038589644245803356, + -0.010964608751237392, + -0.019492637366056442, + 0.022268328815698624, + 0.00589991407468915, + -0.00022646690194960684, + 0.012132659554481506, + 0.0027961009182035923, + 0.03720179945230484, + 0.00618564710021019, + 0.014531560242176056, + -0.016566229984164238, + -0.008823181502521038, + -0.010920649394392967, + 0.006480799522250891, + 0.010832731612026691, + 0.007410216610878706, + 0.005406946409493685, + 0.012635047547519207, + -0.00957048311829567, + 0.006524758413434029, + 0.0024271600414067507, + -0.02059789001941681, + 0.0032937785144895315, + -0.010550138540565968, + 0.006970627699047327, + -0.0049076983705163, + 0.010870411060750484, + -0.012798323296010494, + -0.012672726064920425, + -0.008653625845909119, + -0.004895139019936323, + 0.01817386969923973, + -0.008703864179551601, + -0.012302215211093426, + -0.008879700675606728, + 0.000919997226446867, + 0.0030771237798035145, + -0.008716423995792866, + 0.0005765682435594499, + 0.01665414869785309, + -0.010751093737781048, + 0.0010118399513885379, + 0.004248315002769232, + 0.006989466957747936, + 0.012697845697402954, + 0.008879700675606728, + -0.027706675231456757, + 0.016264798119664192, + -0.005774317309260368, + -0.01940472051501274, + -0.009294169954955578, + 0.005733497906476259, + -0.015247462317347527, + 0.009633281268179417, + 0.015749849379062653, + 0.0012661736691370606, + -0.0188018549233675, + -0.002026819856837392, + -0.003830705303698778, + 0.0022105053067207336, + 0.012679005973041058, + 0.006389741785824299, + -0.008622226305305958, + -0.009620721451938152, + -0.01308719627559185, + -0.00930044986307621, + -0.004421010613441467, + 0.001084843184798956, + -0.0057931565679609776, + -0.004063059575855732, + 0.02565944567322731, + -0.009112054482102394, + -0.007937723770737648, + -0.012936479412019253, + 0.023662453517317772, + -0.002767841564491391, + 0.02431555837392807, + -0.021276112645864487, + 0.0036485895980149508, + 0.04569214954972267, + -0.0030959632713347673, + 0.01414220966398716, + 0.007655130699276924, + 0.0170560572296381, + 0.007278339937329292, + -0.019505197182297707, + 0.03946254402399063, + 0.008904819376766682, + 0.004367631860077381, + -0.005268789827823639, + -0.008031921461224556, + -0.0170560572296381, + 0.003683128859847784, + 0.01174330897629261, + -0.010581538081169128, + -0.010983448475599289, + -0.002289003459736705, + -0.025358011946082115, + -0.003808725858107209, + -0.01700581982731819, + -0.00039229405228979886, + -0.007824686355888844, + -0.024642109870910645, + 0.008804341778159142, + 0.021150516346096992, + 0.0023989006876945496, + -0.0011154573876410723, + -0.013149994425475597, + -0.03433819115161896, + 0.003566951723769307, + 0.004116438329219818, + -0.020811405032873154, + -0.006418001372367144, + 0.005702098831534386, + 0.0035072932951152325, + 0.004003400914371014, + -0.021778501570224762, + 0.005796296522021294, + 0.00960188265889883, + -0.008634786121547222, + 0.01274180505424738, + -0.014117090962827206, + 0.00707110483199358, + -0.009017856791615486, + 0.013162554241716862, + -0.01081389281898737, + 0.009162292815744877, + 0.0023470919113606215, + -0.012094981037080288, + 0.03609654679894447, + -0.00033361674286425114, + -0.0008760383352637291, + -0.019417280331254005, + -0.0020236799027770758, + 0.009859356097877026, + 0.02740524150431156, + 0.005972132086753845, + 0.013175114057958126, + 0.005419505760073662, + 0.01971871219575405, + 0.00457800691947341, + -0.009777718223631382, + 0.016252238303422928, + -0.024591870605945587, + -0.027882510796189308, + -0.023524297401309013, + -0.00899901706725359, + 0.004794661421328783, + -0.04006540775299072, + -0.005516843404620886, + 0.022582320496439934, + -0.007177862338721752, + -0.008509189821779728, + 0.004264014307409525, + 0.00033930785139091313, + -0.02528265491127968, + 0.031901609152555466, + 0.007849805988371372, + -0.0022560341749340296, + 0.022406484931707382, + 0.00732229882851243, + -0.023235425353050232, + 0.01318767387419939, + 0.019291682168841362, + -0.0034790339414030313, + -0.0012583239004015923, + 0.015423297882080078, + -0.003749067196622491, + 0.047274671494960785, + 0.00020684237824752927, + -0.0024915284011512995, + 0.006374042481184006, + 0.008075879886746407, + 0.01340118795633316, + 0.018965130671858788, + -0.02545849047601223, + 0.017935236915946007, + -0.005077254492789507, + -0.006311243865638971, + 0.022092493250966072, + -0.01338862907141447, + 0.01072597410529852, + 0.00030064754537306726, + 0.01528514176607132, + -0.006920388899743557, + -0.0053504277020692825, + -0.013740300200879574, + -2.2261558115133084e-5, + 0.014330605044960976, + -0.009306729771196842, + -0.023335902020335197, + 0.017872437834739685, + 0.008226596750319004, + 0.0023675013799220324, + 0.007837246172130108, + -0.010437102057039738, + 0.01951775699853897, + -0.0050929537974298, + 0.0016610189341008663, + 0.006239025387912989, + 0.006688034627586603, + 0.010920649394392967, + 0.013978933915495872, + 0.016352714970707893, + -0.022984230890870094, + 0.010468500666320324, + -0.013853337615728378, + -0.0005400666268542409, + -0.006056909915059805, + -0.015699611976742744, + 0.007403936702758074, + 0.020497413352131844, + -0.011309999972581863, + -0.0013140575028955936, + 0.027982987463474274, + 0.0038118655793368816, + 0.00618564710021019, + -0.005030155647546053, + -0.019266562536358833, + 0.015699611976742744, + -0.020070383325219154, + -0.027807151898741722, + -0.0006515338900499046, + -0.04031660407781601, + -0.0023172625806182623, + 0.0027458621188998222, + 0.00101811985950917, + -0.009853076189756393, + -0.0034162355586886406, + -0.01882697455585003, + 0.014016613364219666, + 0.002808660501614213, + 0.0014255247078835964, + -0.00044037410407327116, + -0.0017316672019660473, + 0.004508928395807743, + 0.00926905032247305, + -0.02039693482220173, + -0.0015055927215144038, + -0.010581538081169128, + -0.009840516373515129, + -0.02783227153122425, + 0.025584086775779724, + -0.0032937785144895315, + 0.022896314039826393, + -0.012496890500187874, + -0.004386471584439278, + 0.028334658592939377, + -0.0012402692809700966, + -0.008471510373055935, + -0.007027145940810442, + 0.007717928849160671, + -0.000449008890427649, + -0.01102740690112114, + -0.001038529328070581, + 0.01819898933172226, + 0.00685131037607789, + -0.012823442928493023, + -0.006264145020395517, + 0.0057303584180772305, + 0.0244285948574543, + -0.006826191209256649, + -0.0010440241312608123, + -0.001203375170007348, + 0.011341399513185024, + 0.01122836209833622, + 0.029163599014282227, + -0.013338389806449413, + 0.012289656326174736, + -0.0009545363718643785, + -0.014795313589274883, + 0.0261743925511837, + -0.0030818337108939886, + 0.021841298788785934, + -0.02662654034793377, + -0.007108784280717373, + -0.01737005077302456, + 0.007403936702758074, + -0.01528514176607132, + 0.01996990665793419, + -0.003664289368316531, + -0.004910838324576616, + 0.0024915284011512995, + 0.0422256737947464, + 0.024014126509428024, + -0.008226596750319004, + 0.004069339483976364, + 0.025847841054201126, + -0.0021539865992963314, + 0.0017426569247618318, + 0.011693070642650127, + -0.02205481380224228, + -0.019367041066288948, + -0.02133891172707081, + 0.006631515920162201, + 0.0066629149951040745, + -0.01768404245376587, + -0.009495125152170658, + -0.017332371324300766, + 0.009664680808782578, + -0.02153986692428589, + -0.015096746385097504, + 0.0040002609603106976, + -0.00685131037607789, + -0.0014286646619439125, + 0.014707395806908607, + -0.009733758866786957, + 0.016151759773492813, + 0.007246940862387419, + -0.0038715242408216, + 0.005943872965872288, + -0.012226857244968414, + -0.001720677362754941, + 0.012434092350304127, + 0.011435597203671932, + 0.009884475730359554, + -0.00947000551968813, + 0.003987701144069433, + 0.021564986556768417, + -0.011460716836154461, + -0.006066329777240753, + -0.003639169968664646, + -0.0021539865992963314, + 0.008019361644983292, + -0.00047805317444726825, + 0.020509973168373108, + 0.005786876659840345, + 0.015536335296928883, + 0.010644336231052876, + 0.0422256737947464, + 0.0284853745251894, + -0.01591312699019909, + -0.004464969504624605, + -0.018236668780446053, + -0.011674230918288231, + 0.0051117935217916965, + -0.004464969504624605, + -0.006025510840117931, + 0.00495793716982007, + 0.00556394224986434, + -0.0069517879746854305, + 0.013237912207841873, + 0.008408712223172188, + -0.004700463730841875, + 0.021527307108044624, + 0.025445930659770966, + 0.003614050569012761, + 0.00335029698908329, + 0.020937001332640648, + 0.013677501119673252, + -0.021389150992035866, + 0.0023408120032399893, + 0.016930460929870605, + 0.012829722836613655, + 0.009250211529433727, + 0.008025641553103924, + 0.003579511307179928, + 0.013011838309466839, + 0.0019169225124642253, + -0.006075749639421701, + 0.006204486358910799, + 0.006468239706009626, + -0.00618564710021019, + 0.03011813387274742, + 0.040040288120508194, + 0.008647345937788486, + -0.001391770550981164, + -0.004496368579566479, + -0.01694302074611187, + -0.01960567571222782, + -0.006436840631067753, + 0.009564203210175037, + -0.01372774038463831, + -0.007567212916910648, + 0.020874204114079475, + -0.03300686180591583, + 0.000778700748924166, + 0.013840777799487114, + -0.01278576347976923, + -0.01860089972615242, + 0.010845291428267956, + 0.0021429969929158688, + -0.01082645170390606, + 0.0022026554215699434, + -0.0043330928310751915, + 0.022469284012913704, + 0.006581277120858431, + -0.01691790111362934, + -0.02169058285653591, + 0.022092493250966072, + -0.008339633233845234, + -0.0018242947990074754, + -0.008226596750319004, + -0.014883231371641159, + -0.004961077123880386, + 0.014581799507141113, + 0.02557152695953846, + 0.0014577088877558708, + -0.002849479438737035, + -0.006618956103920937, + -0.000721789663657546, + 0.015234903432428837, + -0.004348792601376772, + 0.0061762272380292416, + 0.016101522371172905, + 0.012572248466312885, + -0.0019938505720347166, + 0.004483809228986502, + -0.006449400447309017, + 0.006675474811345339, + 0.012961599044501781, + -0.013639822602272034, + -0.001789755653589964, + -0.00037129581323824823, + -0.010600377805531025, + -0.010154508985579014, + 0.016076402738690376, + 0.0010071300202980638, + 0.0011711909901350737, + -0.010374302975833416, + -0.00892993900924921, + 0.009407207369804382, + -0.00034087782842107117, + -0.01163027249276638, + -0.01811107248067856, + 0.0014255247078835964, + 0.0007013801368884742, + 0.011931704357266426, + 0.015561454929411411, + -0.0010471640853211284, + 0.004612545948475599, + 0.0105564184486866, + -0.0015063777100294828, + 0.0008681885083205998, + 0.0031885909847915173, + 0.013577024452388287, + -0.004085038788616657, + 0.007975402288138866, + -0.01136023923754692, + 0.0020425193943083286, + -0.004254594910889864, + 0.025069139897823334, + 0.01768404245376587, + 0.009746318683028221, + -0.003658009460195899, + -0.0016264797886833549, + 0.00899901706725359, + 0.002029959810897708, + 0.01831202767789364, + 0.012729245238006115, + 0.005736637860536575, + 0.012189178727567196, + -0.004590566270053387, + 0.015624253079295158, + -0.009325569495558739, + 0.011780988425016403, + 0.010977168567478657, + 0.006788512226194143, + 0.01558657456189394, + 0.0030849736649543047, + -0.003626610152423382, + -0.007341138552874327, + -0.017822198569774628, + 0.020447174087166786, + 0.009532803669571877, + -0.0011021126993000507, + -0.013036957010626793, + 0.011504675261676311, + -0.03456426411867142, + 0.013577024452388287, + 0.005576502066105604, + -0.011711910367012024, + -0.000602472573518753, + 0.012528290040791035, + 0.010945769026875496, + 0.0022827235516160727, + 0.035870473831892014, + 0.0041415574960410595, + -0.01902792975306511, + 0.014506440609693527, + 0.011812387965619564, + 0.001250474015250802, + -0.0005753907607868314, + 0.003752207150682807, + -0.008854581043124199, + 0.014719955623149872, + 0.02191665768623352, + -0.0033094780519604683, + -0.007303459104150534, + 0.009526524692773819, + 0.0024350096937268972, + 0.01515954453498125, + 0.013463987037539482, + -0.018274348229169846, + -0.0023659314028918743, + -0.01434316486120224, + 0.01591312699019909, + 0.007893764413893223, + -0.0038809438701719046, + -0.0076300110667943954, + 0.0008053900673985481, + -0.0019263423746451735, + 0.004085038788616657, + 0.008465230464935303, + 0.012421532534062862, + 0.010411982424557209, + 0.001347811659798026, + 0.019467517733573914, + -0.031072670593857765, + 0.0020943281706422567, + -0.017206775024533272, + -0.016302475705742836, + -0.006531038321554661, + -0.002706612925976515, + -0.007378817535936832, + -0.0013493816368281841, + 0.023122387006878853, + -0.00788748450577259, + 0.005287629086524248, + -0.02382573112845421, + 0.003827565349638462, + 0.015172104351222515, + -0.007152743171900511, + 0.01974383182823658, + 0.0026343949139118195, + -0.003306338097900152, + 0.005187151487916708, + -0.01662902906537056, + 0.03808097913861275, + -0.0031571919098496437, + -0.021137956529855728, + -0.010889250785112381, + -0.00030202127527445555, + 0.010945769026875496, + -0.011956823989748955, + -0.013865896500647068, + -0.008691305294632912, + -0.015636812895536423, + -0.013200233690440655, + 0.009250211529433727, + 0.010939489118754864, + 0.004860599525272846, + -0.012547129765152931, + 0.0058371154591441154, + 0.017093736678361893, + -0.03401163965463638, + -0.003843264887109399, + -0.016453193500638008, + -0.011485835537314415, + 0.023423820734024048, + 0.012019622139632702, + 0.003516712924465537, + 0.01662902906537056, + -0.009620721451938152, + 0.0163150355219841, + -0.0039060632698237896, + 0.03654869645833969, + -0.008967618457973003, + -0.020509973168373108, + -0.003607770660892129, + 0.003705108305439353, + -0.00141610496211797, + -0.004411590751260519, + -0.0031540519557893276, + -0.007290899753570557, + 0.009426047094166279, + -0.000424674479290843, + 0.006537318229675293, + 0.0034130956046283245, + 0.0003224307729396969, + 0.014255247078835964, + -0.02251952327787876, + 0.004552887286990881, + -0.019065607339143753, + -0.013426307588815689, + -0.002923267660662532, + 0.019166085869073868, + 0.004433570429682732, + 0.004144697450101376, + -0.0004737357667181641, + -0.015398179180920124, + 0.013338389806449413, + -0.015398179180920124, + -0.010292665101587772, + 0.026927974075078964, + 0.0017065478023141623, + -0.0028698889072984457, + 0.007724208757281303, + -0.017219332978129387, + 0.00855942815542221, + -0.0037396475672721863, + -0.004543467424809933, + -0.004496368579566479, + 0.013777978718280792, + -0.0011641262099146843, + -0.013099756091833115, + 0.0031053831335157156, + -0.02763131633400917, + -0.017809638753533363, + -0.024704908952116966, + 0.010801333002746105, + 0.010079151019454002, + 0.001274023437872529, + 0.007925163954496384, + 0.00868502538651228, + 0.010606657713651657, + -0.009959833696484566, + -0.009984953328967094, + -0.00855942815542221, + -0.006361482664942741, + -0.0004152547335252166, + 0.0023047029972076416, + -0.005507423542439938, + -0.013916135765612125, + 0.0016037153545767069, + -0.017470527440309525, + 0.00936952792108059, + -0.07294667512178421, + 0.01900281012058258, + 0.006025510840117931, + -0.020823964849114418, + -0.017734281718730927, + -1.5245794202201068e-5, + 0.030444687232375145, + 0.0001250081550097093, + 0.004860599525272846, + -0.013664942234754562, + 0.008182637393474579, + -0.021590106189250946, + -0.017219332978129387, + -0.010939489118754864, + -0.012258256785571575, + 0.02328566461801529, + 0.0030378748197108507, + -0.011266041547060013, + 0.0006605611415579915, + 0.013514225371181965, + 0.007761887740343809, + -0.01826178841292858, + -0.005074114538729191, + -0.0013619413366541266, + -0.01662902906537056, + 0.018764175474643707, + -0.01571217179298401, + 0.016679266467690468, + -0.011039966717362404, + 0.0019703011494129896, + 0.001838424475863576, + 0.012434092350304127, + 0.0003917053109034896, + -0.023160066455602646, + 0.001341531751677394, + 0.007900044322013855, + -0.0049202581867575645, + 6.427028711186722e-5, + -0.014908351004123688, + -0.0004651009803637862, + -0.005105513613671064, + 0.0016735786339268088, + 0.01765892282128334, + -0.016566229984164238, + 0.0016437493031844497, + 0.00899901706725359, + -0.002099038101732731, + 0.006920388899743557, + 0.00909949466586113, + -0.011881466023623943, + 0.026500944048166275, + 0.003632890060544014, + 0.006612676195800304, + -0.012911360710859299, + 0.005877934396266937, + -0.007027145940810442, + -0.005692678969353437, + -0.0034350750502198935, + -0.005052134860306978, + 0.0044900886714458466, + 0.004923398140817881, + 0.022594880312681198, + -0.024378357455134392, + -0.005862235091626644, + 0.012628767639398575, + 0.020811405032873154, + -0.009859356097877026, + 0.015197223983705044, + 0.0005420290981419384, + -0.02017085999250412, + 0.006562437396496534, + 0.003730227705091238, + -0.022419044747948647, + 0.021590106189250946, + -0.027304764837026596, + 0.004135277587920427, + 0.005670699756592512, + -0.0003167396644130349, + -0.004810360725969076, + 0.011623992584645748, + 0.02088676393032074, + 0.026350228115916252, + -0.001535422052256763, + 0.0019279122352600098, + 0.011109044775366783, + -0.0010353893740102649, + -0.013099756091833115, + 0.0011248771334066987, + 0.009890755638480186, + 0.006725713610649109, + 0.0024616990704089403, + -0.011975663714110851, + 0.00541322585195303, + -0.002174396300688386, + -0.00027376197976991534, + 0.0009231371805071831, + -0.011780988425016403, + -0.0022717337124049664, + 0.00022352322412189096, + -0.00021665463282261044, + 0.025872958824038506, + -0.011347679421305656, + 0.010882970876991749, + -0.03619702532887459, + 0.03388604149222374, + -0.030494924634695053, + -0.015812648460268974, + 0.026224631816148758, + 0.008220316842198372, + 0.00571465864777565, + -0.011774708516895771, + 0.012547129765152931, + -0.006006671581417322, + -0.027355002239346504, + -0.025094259530305862, + 0.010097989812493324, + 0.01115928404033184, + 0.021728262305259705, + -0.00769280968233943, + -0.007856085896492004, + -0.0053033288568258286, + -0.002056649187579751, + 0.0008367893169634044, + -0.006782232318073511, + -0.012936479412019253, + -0.007359977811574936, + 0.022067373618483543, + -0.014217568561434746, + 0.005416365806013346, + 0.019668472930788994, + 0.01737005077302456, + 0.006314383819699287, + 0.004530908074229956, + -0.009174852631986141, + -0.010882970876991749, + 0.004267154261469841, + -0.0005785306566394866, + -0.008295674808323383, + 0.0032498196233063936, + -0.002623405074700713, + 0.007950283586978912, + 0.005990971811115742, + 0.00801308173686266, + 0.016327595338225365, + 0.022670239210128784, + -0.02265767939388752, + -0.016051283106207848, + 0.004675344098359346, + -0.007303459104150534, + 0.005231110379099846, + -0.006254725158214569, + 0.008371032774448395, + -0.010663175955414772, + -0.0012355594662949443, + 0.029339434579014778, + 0.016038723289966583, + 0.010638056322932243, + 0.0067131537944078445, + 0.0003864066966343671, + -0.0012591088889166713, + -0.004128997679799795, + 0.004260874353349209, + -0.022670239210128784, + 0.020585330203175545, + 0.001484398264437914, + -0.003777326550334692, + 0.0018713936442509294, + -0.005978411994874477, + 0.01700581982731819, + -0.034438665956258774, + -0.024554193019866943, + -0.00568011961877346, + -0.0016358995344489813, + -0.01288624107837677, + -0.006088309455662966, + -0.020309017971158028, + 0.028158823028206825, + -0.003940602298825979, + 0.007234381046146154, + -0.0016971280565485358, + -0.015297701582312584, + -0.008402432315051556, + -0.006499639246612787, + 0.011862626299262047, + -0.0060286507941782475, + 0.01112788449972868, + -0.024441154673695564, + -3.201248910045251e-5, + -0.0016327595803886652, + -0.016641588881611824, + -0.0010950479190796614, + -0.006239025387912989, + 0.002852619392797351, + 0.0016610189341008663, + -0.007027145940810442, + -0.007573492359369993, + -0.006612676195800304, + 0.011554913595318794, + 0.003000195836648345, + -0.010148229077458382, + 0.02225576899945736, + -0.006361482664942741, + 0.003042584750801325, + 0.006656635086983442, + 0.014619478024542332, + -0.012936479412019253, + -0.014230127446353436, + 0.030846595764160156, + 0.008766663260757923, + -0.01284228265285492, + 0.01665414869785309, + 0.00429227389395237, + 0.014682277105748653, + 0.0211128368973732, + 0.000993000459857285, + 0.01058781798928976, + -0.004361351951956749, + 0.007623731158673763, + -0.0023549417965114117, + -0.022506963461637497, + -0.0063771819695830345, + -0.0040442198514938354, + 0.004248315002769232, + -0.007278339937329292, + -0.008848301135003567, + -0.02525753527879715, + -0.0015016678953543305, + -0.04297925531864166, + 4.744226316688582e-5, + 0.003679988905787468, + 0.009331849403679371, + 0.00033871911000460386, + 0.01247177179902792, + 0.0010424541542306542, + 0.007925163954496384, + 0.009796557947993279, + 0.004314253106713295, + 0.002058219164609909, + -0.02133891172707081, + 0.000673905829899013, + -0.02974134311079979, + -0.024076923727989197, + 0.004329952877014875, + 0.007548373192548752, + 0.010292665101587772, + -0.026124153286218643, + -0.0142426872625947, + -0.02151474729180336, + 0.0037616270128637552, + 0.012402692809700966, + -0.02525753527879715, + -0.007008306682109833, + 0.0022811535745859146, + -0.003234119853004813, + -0.022079933434724808, + 0.0004839405301027, + 3.9567927160533145e-5, + 0.0013124875258654356, + -0.03840753063559532, + 0.009507684968411922, + -0.011416757479310036, + 0.024843065068125725, + -0.005312748719006777, + -0.0036862688139081, + -0.002855759346857667, + -0.016892781481146812, + 0.014418522827327251, + -0.0008077450329437852, + 0.0024852484930306673, + -0.001628049765713513, + 0.019178645685315132, + -0.012522010132670403, + 0.004574866965413094, + -0.0149837089702487, + -0.002337672049179673, + 0.015460977330803871, + 0.0018242947990074754, + -0.008879700675606728, + -0.03330829739570618, + -0.0029436771292239428, + -0.008402432315051556, + -0.017985474318265915, + -0.012873681262135506, + 0.025471050292253494, + -0.017194215208292007, + 0.010405702516436577, + -0.007278339937329292, + 0.0060788895934820175, + -0.007962843403220177, + -0.015611693263053894, + -0.0029138477984815836, + 0.0033157579600811005, + 0.0002608097856864333, + 0.009306729771196842, + 0.017420288175344467, + 0.05254973843693733, + 0.019668472930788994, + -0.020710928365588188, + -0.009124614298343658, + -0.008911099284887314, + 0.011083926074206829, + -0.005325308069586754, + -0.013803098350763321, + 0.018751615658402443, + 0.00970236025750637, + -0.006681754719465971, + 0.008710144087672234, + 0.009149733930826187, + -0.0026265450287610292, + 0.036247264593839645, + -0.017985474318265915, + 0.0021900958381593227, + -0.006279844790697098, + 0.010079151019454002, + 0.005212271120399237, + -0.003959442023187876, + -0.021439390257000923, + 0.014506440609693527, + 0.019480077549815178, + -0.019392160698771477, + -0.001844704383984208, + 0.009005296975374222, + 0.03983933478593826, + -0.00841499213129282, + 0.030670760199427605, + -0.012264536693692207, + 0.002873028861358762, + -0.01976895146071911, + -0.010543858632445335, + -0.006914108991622925, + 0.015523775480687618, + 0.007761887740343809, + 0.010462220758199692, + -0.035217367112636566, + -0.025621766224503517, + -0.003491593524813652, + 0.011561193503439426, + 0.014807873405516148, + 0.026450704783201218, + 0.010663175955414772, + 0.015498656779527664, + 0.01044338196516037, + 0.013074636459350586, + -0.02153986692428589, + -0.00878550298511982, + 0.001367436139844358, + 0.012063581496477127, + 0.01444364245980978, + -0.019417280331254005, + 0.0032843586523085833, + -0.03433819115161896, + -0.0015950804809108377, + -0.035669516772031784, + 0.014669717289507389, + -0.024416035041213036, + -0.015460977330803871, + 0.004804081283509731, + -0.012710405513644218, + 0.03423771262168884, + -0.0022042253986001015, + 0.007290899753570557, + 0.025558967143297195, + 0.008534308522939682, + -0.037327397614717484, + 0.027103809639811516, + 0.0025401972234249115, + -0.008188917301595211, + 0.0037427872885018587, + -0.011919145472347736, + -0.006932948250323534, + -0.005127493292093277, + -0.023298222571611404, + -0.04534047842025757, + -0.0032780789770185947, + 0.006160527467727661, + -0.003676848951727152, + 0.011253481730818748, + -0.00903041660785675, + -0.005859095137566328, + 0.014782753773033619, + 0.015875447541475296, + 0.0015785959549248219, + 0.009042976424098015, + 0.030796358361840248, + 0.0032592392526566982, + -0.019178645685315132, + -0.014694835990667343, + -0.012666446156799793, + 0.012779483571648598, + 0.013664942234754562, + 0.005877934396266937, + -0.007730488665401936, + 0.0016845683567225933, + 0.002502518007531762, + 0.02705357037484646, + 0.01900281012058258, + 0.001651599071919918, + 0.017357490956783295, + 0.015373059548437595, + 0.003912343177944422, + 0.010298945009708405, + 0.01174330897629261, + -0.009432327002286911, + -0.016176879405975342, + -0.024189962074160576, + -0.00217125634662807, + -0.025106819346547127, + 0.012195458635687828, + 0.010619217529892921, + -0.010349184274673462, + -0.005312748719006777, + -0.017822198569774628, + -0.0016971280565485358, + 0.019417280331254005, + 0.02169058285653591, + 0.005472884513437748, + -0.008063320070505142, + -0.011812387965619564, + -0.001438869396224618, + 0.021137956529855728, + -0.008967618457973003, + -0.019467517733573914, + 0.004948517307639122, + -0.0026108454912900925, + -0.009520244784653187, + 0.007403936702758074, + 0.020359255373477936, + 0.01842506416141987, + 0.00950140506029129, + -0.0022497542668133974, + 0.012572248466312885, + -0.003557531861588359, + -0.010525019839406013, + 0.010091709904372692, + 0.016503430902957916, + -0.004992476664483547, + -0.0020001304801553488, + -0.01708117686212063, + -0.001909072743728757, + 0.011705630458891392, + 0.02288375422358513, + 0.013350949622690678, + -0.001887093298137188, + 0.0196307934820652, + -0.02871144935488701, + -0.0007751683006063104, + 0.010675735771656036, + -0.002712892834097147, + -0.014795313589274883, + 0.01571217179298401, + 0.0033659967593848705, + 0.01714397594332695, + 0.01999502442777157, + 0.004929678048938513, + 0.011868906207382679, + 0.0121703390032053, + -0.006958067882806063, + 0.019706152379512787, + -0.0008148098131641746, + 0.01464459765702486, + 0.004424150567501783, + -0.0004207495949231088, + 0.04046731814742088, + 0.024930983781814575, + 0.004147837404161692, + 0.004741282667964697, + -0.013790538534522057, + -0.0026563743595033884, + -0.001133512007072568, + 0.010663175955414772, + -0.00825799535959959, + -0.0004917903570458293, + -0.0066629149951040745, + -0.007240660954266787, + 0.004854320082813501, + -0.025358011946082115, + -0.0002019362582359463, + -0.02462955005466938, + 0.02682749554514885, + -0.013263031840324402, + 0.02388852834701538, + 0.016930460929870605, + 0.006549878045916557, + 0.017583565786480904, + 0.027982987463474274, + -0.0020378094632178545, + 0.021050039678812027, + -0.005168312229216099, + 0.012829722836613655, + 0.00485745957121253, + -0.015134425833821297, + -0.01725701242685318, + -0.004778961651027203, + 0.0011735459556803107, + 0.0009145023650489748, + -0.0073913768865168095, + 0.022180411964654922, + 0.012735525146126747, + -0.013363509438931942, + 0.007799567189067602, + -0.019015369936823845, + -0.02725452557206154, + -0.005965852178633213, + 0.011592593044042587, + -0.019040489569306374, + 0.0009757308289408684, + 0.016691826283931732, + 0.0008893829653970897, + -0.027807151898741722, + 0.007215541321784258, + -0.0009843655861914158, + 0.007309739012271166, + 0.0012803033459931612, + -0.015473537147045135, + 0.000672335852868855, + 0.00539438659325242, + -0.00212886743247509, + -0.006813631393015385, + -0.011222082190215588, + 0.007228101138025522, + -0.009174852631986141, + -0.04426034539937973, + -0.0030991032253950834, + 0.023649895563721657, + -0.037905141711235046, + -0.025320332497358322, + 0.0011499965330585837, + 0.0005961927236057818, + -0.015963364392518997, + 0.0038840838242322206, + 0.010003792122006416, + 0.005896774120628834, + -0.004078758880496025, + -0.017621243372559547, + -0.03383580222725868, + 0.0017269572708755732, + -0.0010887680109590292, + -0.027932748198509216, + -0.0025401972234249115, + 0.01382821798324585, + 0.012961599044501781, + 0.005271929316222668, + 0.01862601935863495, + 0.011680510826408863, + -5.926603262196295e-5, + 0.006408581510186195, + 0.001653169048950076, + 0.004125857725739479, + -0.01940472051501274, + 0.006333223078399897, + 0.005736637860536575, + -0.00722182122990489, + 0.00769280968233943, + -0.01685510203242302, + 0.005623600911349058, + -0.014004053547978401, + 0.01788499765098095, + -0.010198467411100864, + 0.007077384740114212, + -0.01945495791733265, + 0.01700581982731819, + -0.01402917318046093, + 0.03413723409175873, + -0.006056909915059805, + -0.01194426417350769, + -0.024529073387384415, + -0.017583565786480904, + 0.004273434169590473, + -0.0025354872923344374, + 0.005978411994874477, + -0.005545102991163731, + 0.007466735318303108, + -0.006794791668653488, + 0.0039500221610069275, + 0.004606266040354967, + 0.02274559624493122, + -0.023863408714532852, + -0.019178645685315132, + -0.001227709581144154, + 0.014205008745193481, + 0.0020943281706422567, + -0.02494354359805584, + 0.019480077549815178, + -0.018613459542393684, + 0.008088439702987671, + -0.0185381006449461, + -0.009633281268179417, + -0.011303720064461231, + -0.010970888659358025, + 0.008239156566560268, + -0.008873420767486095, + -0.03057028353214264, + 0.012522010132670403, + -0.0024475695099681616, + -0.004088178742676973, + -0.005202851258218288, + -0.010732254013419151, + -0.001959311543032527, + 0.0030834036879241467, + -0.004565447103232145, + 0.01007287111133337, + -0.0017520766705274582, + -0.0053001889027655125, + 0.008207757025957108, + -0.008465230464935303, + -0.009162292815744877, + 2.7081829102826305e-5, + 0.030520044267177582, + 0.006581277120858431, + 0.004301693756133318, + -0.03283102810382843, + -0.029138479381799698, + -0.026676779612898827, + 0.005818276200443506, + 0.005187151487916708, + -0.006744552869349718, + -0.004813500680029392, + -0.009225091896951199, + -0.018073393031954765, + 0.0044272905215620995, + 0.013062076643109322, + -0.012591088190674782, + 0.010261266492307186, + 1.002689987217309e-5, + 0.007014586590230465, + -0.012735525146126747, + 0.016905341297388077, + 0.006744552869349718, + -0.022582320496439934, + -0.001982860965654254, + -0.018249228596687317, + 0.014305486343801022, + -0.001372146070934832, + 0.004176096525043249, + -0.013577024452388287, + 0.004502648487687111, + -0.02763131633400917, + 0.0005051349871791899, + 0.010908090509474277, + -0.00600039167329669, + -0.0021100277081131935, + -0.002971936482936144, + 0.03185137361288071, + -0.007818406447768211, + 0.001485183252952993, + -0.00207862863317132, + 0.013011838309466839, + -0.03662405535578728, + -0.01577496901154518, + 0.0036862688139081, + 0.008352193050086498, + 0.005023875739425421, + -0.007309739012271166, + -0.01122836209833622, + 0.0070459856651723385, + -0.01494603045284748, + -0.005658139940351248, + -0.015234903432428837, + -0.009306729771196842, + -0.0043833316303789616, + 0.001844704383984208, + 0.018337145447731018, + 0.014280366711318493, + 0.014908351004123688, + -0.01900281012058258, + -0.016867661848664284, + 0.008540588431060314, + -0.002543336944654584, + 0.005048994906246662, + 0.002408320317044854, + 0.010619217529892921, + -0.002968796528875828, + -0.005231110379099846, + 0.012509450316429138, + -0.014682277105748653, + 0.010537579655647278, + 0.0038872237782925367, + 0.014405963942408562, + 0.01602616347372532, + -0.0006020800792612135, + 0.0030363048426806927, + -0.009011576883494854, + 0.0004647084861062467, + -0.02417740225791931, + -0.011711910367012024, + -0.033810682594776154, + -0.017809638753533363, + 0.0022324847523123026, + -0.02400156669318676, + -0.0009380517876707017, + -0.006160527467727661, + 0.0012080851010978222, + -0.0022560341749340296, + 0.007454175502061844, + 0.009583042934536934, + -0.00707110483199358, + 0.004389611538499594, + -0.024265319108963013, + -0.020673248916864395, + 0.012295935302972794, + 0.010317784734070301, + -0.012496890500187874, + -0.009124614298343658, + -0.023524297401309013, + 0.014632037840783596, + 0.0010479490738362074, + 0.0322783999145031, + -0.006838750559836626, + 0.007648850791156292, + 4.442499266588129e-5, + -0.021640343591570854, + 0.0075358133763074875, + -0.01613919995725155, + -0.022645119577646255, + -0.006706873886287212, + -0.025358011946082115, + 0.0007107998826541007, + -0.021439390257000923, + 0.013577024452388287, + -0.018726496025919914, + 0.018902331590652466, + 0.004735002759844065, + 0.009275330230593681, + 0.027932748198509216, + 0.01081389281898737, + 0.010801333002746105, + -0.004088178742676973, + 0.0035292727407068014, + 0.020183419808745384, + 0.04194936156272888, + -0.001249689026735723, + -0.00018309672304894775, + 0.01024242676794529, + 0.016993260011076927, + 0.026727018877863884, + 0.012547129765152931, + -0.011818667873740196, + 0.02823418192565441, + -0.008383592590689659, + 0.01882697455585003, + 0.01372774038463831, + -0.015850327908992767, + 0.00400654086843133, + 0.024466274306178093, + -0.019643353298306465, + -0.005036435555666685, + -0.005912473890930414, + -0.004581146407872438, + 0.042326152324676514, + 0.0030268849804997444, + -0.0023706413339823484, + 0.0018054553074762225, + -0.013137434609234333, + -0.008502909913659096, + -0.007931443862617016, + 0.009947273880243301, + 0.017822198569774628, + -0.005023875739425421, + -0.020447174087166786, + -0.012478050775825977, + -0.001748936716467142, + -0.0035041533410549164, + 0.026450704783201218, + 3.456367630860768e-5, + 0.010104269720613956, + -0.0034633344039320946, + 0.009112054482102394, + -0.010254986584186554, + 0.017445407807826996, + -0.000495322747156024, + 0.019417280331254005, + 0.01597592420876026, + -0.01674206554889679, + -0.0008093149517662823, + -0.0016484592342749238, + -0.0032843586523085833, + -0.006976907141506672, + -0.016892781481146812, + -0.018035713583230972, + -0.00618564710021019, + 0.01757100597023964, + 0.008666185662150383, + 0.00680107157677412, + 0.003066134173423052, + 0.01925400272011757, + -0.0036925487220287323, + 0.006618956103920937, + 0.008854581043124199, + 0.010437102057039738, + 0.015812648460268974, + 0.00268149352632463, + -0.0007221820997074246, + 0.014079411514103413, + -0.012201737612485886, + 0.009419767186045647, + -0.01370262075215578, + 0.023700132966041565, + 0.01728213205933571, + 0.0070459856651723385, + 0.0012159348698332906, + 0.005607901141047478, + -0.02474258840084076, + -0.0019969905260950327, + 0.002898148261010647, + -0.012025902047753334, + -0.027078690007328987, + -0.015812648460268974, + 0.01768404245376587, + 0.013853337615728378, + 0.006311243865638971, + 0.0017787659307941794 + ], + "5491c5ab-7e6e-43e3-821a-8441a9ef7519": [ + -0.00952182523906231, + -0.032267384231090546, + 0.0017220322042703629, + 0.05741335079073906, + -0.0003445599286351353, + -0.008914048783481121, + -0.018699858337640762, + 0.004681103862822056, + -0.005663367919623852, + 0.040371064096689224, + -0.013960432261228561, + 9.779477841220796e-5, + 0.021155519410967827, + -0.009380624629557133, + -0.009939287789165974, + 0.03391267731785774, + -0.03960981220006943, + 0.025366976857185364, + 0.00048153975512832403, + -0.004582877270877361, + 0.041034094989299774, + -0.0075757140293717384, + -0.011842424981296062, + 0.01839290000498295, + 0.020308315753936768, + -0.01274488028138876, + -0.01446384284645319, + 0.010000678710639477, + -0.009104362688958645, + 0.025784440338611603, + -0.005878238473087549, + -0.0005801498773507774, + 0.016624825075268745, + -0.0289767999202013, + -0.007495904807001352, + -0.018061386421322823, + -0.005113913677632809, + 0.03651567921042442, + -0.006476805545389652, + 0.017472026869654655, + -0.012683488428592682, + 0.015753064304590225, + 0.012965889647603035, + -0.03663846105337143, + -0.03533696010708809, + 0.02377079799771309, + -0.036122772842645645, + -0.021560702472925186, + 0.04029739648103714, + -0.028559336438775063, + -0.018380621448159218, + -0.003278307383880019, + 0.01885947585105896, + 0.07995632290840149, + 0.03067120537161827, + -0.012990446761250496, + 0.012793993577361107, + 0.04496315121650696, + 0.028878573328256607, + -0.05363163352012634, + 0.016600267961621284, + -0.01490586157888174, + -0.015053201466798782, + -0.023623459041118622, + 0.018736692145466805, + -0.012493175454437733, + 0.005070939660072327, + -0.020848561078310013, + -0.05525236949324608, + -0.0013222199631854892, + -0.016440650448203087, + 0.026840373873710632, + -0.02593177929520607, + -0.010448837652802467, + 0.06271757930517197, + -0.037375159561634064, + 0.0892387181520462, + 0.02353750914335251, + 0.017005451023578644, + -0.03641745075583458, + 0.01563028246164322, + -0.004751703701913357, + -0.019903132691979408, + -0.01273260172456503, + 0.04754159599542618, + -0.01211868692189455, + -0.047688934952020645, + -0.027085939422249794, + -0.003569917054846883, + -0.007317869458347559, + 0.006378579419106245, + 0.019350608810782433, + -0.0021993513219058514, + 0.02826465666294098, + 0.01415688544511795, + 0.011424962431192398, + 0.024556608870625496, + 0.001973737496882677, + -0.01606002263724804, + -0.019203267991542816, + -0.025391533970832825, + -0.010755795054137707, + 0.02124146744608879, + -0.007311730645596981, + 0.0008518073591403663, + 0.011388127692043781, + 0.03585264831781387, + -0.008011593483388424, + -0.009079806506633759, + 0.03808730095624924, + -0.039978161454200745, + -0.04137788712978363, + 0.00388608337379992, + -0.002931445138528943, + -0.03597543388605118, + -0.038283754140138626, + 0.016894947737455368, + 0.0010306101758033037, + -0.01201432105153799, + -0.018184170126914978, + 0.02767529897391796, + 0.003034275956451893, + 0.0022300470154732466, + 0.015311045572161674, + -0.002836288418620825, + 0.013948153704404831, + 0.012609818950295448, + 0.00801773276180029, + 0.0394379161298275, + 0.012609818950295448, + -0.013751701451838017, + 0.023525232449173927, + 0.03234105557203293, + 0.01992768794298172, + 0.0010597711661830544, + -0.0020489420276135206, + 0.017287852242588997, + 0.06861116737127304, + -0.024986350908875465, + -0.018061386421322823, + -0.05358252301812172, + 0.01799999549984932, + -0.010798769071698189, + 0.017263296991586685, + -0.023930415511131287, + -0.019547060132026672, + -0.04228648170828819, + 0.05063572898507118, + -0.02637379802763462, + 0.03401090204715729, + -0.04223736748099327, + -0.03263573348522186, + -0.038725774735212326, + -0.006252726539969444, + 0.01564256101846695, + 0.00422987574711442, + -0.016993174329400063, + 0.022837646305561066, + -0.0021855381783097982, + 0.028878573328256607, + 0.008115959353744984, + -0.03916779160499573, + 0.03474760055541992, + 0.013334238901734352, + 0.0656643733382225, + 0.0069311028346419334, + 0.03062209114432335, + 0.0561855211853981, + -0.016366980969905853, + 0.020922230556607246, + 0.023304222151637077, + -0.03575442358851433, + 0.0020381985232234, + -0.014930418692529202, + 0.004260571673512459, + 0.012302861548960209, + 0.0055436547845602036, + 0.012708045542240143, + 0.03126056492328644, + -0.008085263893008232, + -0.012302861548960209, + -0.0013705657329410315, + 0.016207361593842506, + 0.01415688544511795, + 0.0180122721940279, + 0.0212046317756176, + -0.015261932276189327, + -0.009362207725644112, + -0.005399384535849094, + -0.0034839690197259188, + -0.001234736992046237, + 0.01190995518118143, + 0.015703951939940453, + 0.017877211794257164, + -0.04091130942106247, + -0.028117317706346512, + 0.030155517160892487, + -0.01668621599674225, + -0.017042286694049835, + 0.009405181743204594, + -0.045527953654527664, + -0.023500675335526466, + -0.03511594980955124, + -0.0002591873344499618, + -0.04611731320619583, + 0.015777621418237686, + -0.01543382927775383, + -0.015949517488479614, + 0.05294404923915863, + -0.01008048839867115, + 0.053435180336236954, + -0.054319221526384354, + 0.011351292952895164, + 0.01554433349519968, + -0.011688945814967155, + 0.015323324128985405, + 0.020062750205397606, + 0.02806820534169674, + -0.00976125244051218, + -0.009092085063457489, + 0.007802862673997879, + -0.021769434213638306, + -0.015261932276189327, + -0.039978161454200745, + -0.04837651923298836, + -0.012769436463713646, + -0.005586628802120686, + 0.004487720318138599, + -0.017889490351080894, + -0.025170523673295975, + 0.012929054908454418, + -0.011124144308269024, + 0.003548430046066642, + -0.009546381421387196, + 0.022800812497735023, + 0.04098498076200485, + 0.018773527815937996, + 0.024900401011109352, + -0.0006967937806621194, + -0.011713502928614616, + 0.005236696917563677, + 0.0301800724118948, + 0.002457195660099387, + -0.04763982072472572, + -0.013150064274668694, + 0.0032322637271136045, + -0.011424962431192398, + 0.03175169602036476, + 0.022886760532855988, + -0.01382537093013525, + 0.0022561384830623865, + -0.015765342861413956, + 0.017091400921344757, + -0.007993176579475403, + -0.030499309301376343, + 0.01587584801018238, + 0.0285347793251276, + -0.018564796075224876, + -0.0014273528940975666, + -0.01588812656700611, + 0.017054565250873566, + 0.04100953787565231, + 0.008754431270062923, + -0.002214699285104871, + 0.06561525911092758, + -0.01554433349519968, + 0.024802176281809807, + -0.017287852242588997, + 0.0004830745456274599, + 0.04199180006980896, + 0.000785811513196677, + -0.008570256642997265, + -0.02141336351633072, + -0.004681103862822056, + -0.01157230231910944, + 0.014439286664128304, + -0.01137584913522005, + -0.012542287819087505, + -0.03518962115049362, + -0.02828921377658844, + -0.01586356945335865, + -0.0276507418602705, + 0.028043648228049278, + 0.0075020440854132175, + 0.03553341329097748, + 0.033323317766189575, + -0.03148157149553299, + -0.007778306026011705, + -0.04542972892522812, + -0.013444744050502777, + -0.009663025848567486, + 0.006222031079232693, + 0.000859481340739876, + 0.01350613497197628, + 0.0038400397170335054, + 0.015188262797892094, + -0.0338144525885582, + -0.01819644682109356, + -0.005077078938484192, + 0.00021659696358256042, + -0.005116983316838741, + 0.01553205493837595, + 0.0006407740293070674, + -0.031162336468696594, + 0.013542969711124897, + -0.018527962267398834, + 0.05554705113172531, + 0.007311730645596981, + -0.017435193061828613, + 0.03582809120416641, + 0.04010094329714775, + -0.016624825075268745, + -0.02081172727048397, + -0.041034094989299774, + 0.032684847712516785, + -0.013899040408432484, + -0.042335595935583115, + -0.00877898745238781, + -0.03754705563187599, + 0.008877214044332504, + -0.012309000827372074, + 0.0013460092013701797, + -0.02508457563817501, + 0.03428102657198906, + 0.02271486446261406, + -0.03207093104720116, + 0.006246587727218866, + -0.014930418692529202, + 0.010436559095978737, + 0.004825373645871878, + -0.022027278319001198, + -0.0052182795479893684, + -0.017852654680609703, + 0.010854021646082401, + -0.035263292491436005, + -0.008754431270062923, + -0.044447463005781174, + -0.04633832350373268, + -0.018147334456443787, + -0.008465890772640705, + -0.009681443683803082, + -0.021536147221922874, + 0.019608452916145325, + -0.001290756743401289, + -0.049825359135866165, + -0.010854021646082401, + 0.02912413887679577, + 0.022223731502890587, + -0.002636765828356147, + 0.028019091114401817, + 0.0007743005990050733, + -0.007532740011811256, + 0.030130960047245026, + 0.006464527454227209, + 0.06482944637537003, + -0.0005486867157742381, + 0.006059343460947275, + -0.00589972548186779, + 0.016416093334555626, + -0.018601631745696068, + 0.026324685662984848, + -0.04371076449751854, + -0.004429398570209742, + -0.03774350881576538, + -0.013051837682723999, + 0.014500677585601807, + 0.0012232260778546333, + 0.0061729177832603455, + -0.008109820075333118, + 0.01113642193377018, + 0.0112653449177742, + -0.004291267599910498, + -0.024163704365491867, + -0.008852657862007618, + 0.061587974429130554, + -0.03897133842110634, + 0.027135053649544716, + 0.009681443683803082, + -0.017447471618652344, + 0.02809276059269905, + -0.04351431131362915, + 0.0031678027007728815, + 0.013125508092343807, + -0.004527624696493149, + 0.0033182117622345686, + 0.015409272164106369, + 0.018085943534970284, + -0.051568880677223206, + -0.001342939562164247, + 0.044251009821891785, + -0.03197270631790161, + 0.0012569914106279612, + -0.027527958154678345, + -0.02034515142440796, + 0.00901841465383768, + 0.010516367852687836, + 0.009392903186380863, + -0.03256206214427948, + 0.02895224280655384, + -0.011541605927050114, + -0.00396282272413373, + -0.028854016214609146, + -0.034796714782714844, + -0.027601629495620728, + 0.003925987984985113, + -0.0398799329996109, + 0.01889631152153015, + -0.016575710847973824, + 0.04206547141075134, + -0.029222365468740463, + 0.019768070429563522, + -0.0579535998404026, + -0.0026045353151857853, + 0.010866299271583557, + 0.031186893582344055, + 0.03879944235086441, + -0.026717590168118477, + 0.003272168105468154, + -0.061195071786642075, + 0.028633005917072296, + 0.06536969542503357, + 0.006022508256137371, + -0.003959753084927797, + 0.011007499881088734, + 0.013248290866613388, + 0.021045014262199402, + 0.02036970667541027, + 0.01866302266716957, + -0.010049792006611824, + 0.012431783601641655, + -0.021474754437804222, + 0.014070937409996986, + -0.0269877128303051, + -0.012266026809811592, + -0.018184170126914978, + -0.010381306521594524, + 0.009908591397106647, + 0.0052182795479893684, + -0.006716232746839523, + -0.03681035712361336, + 0.006593449506908655, + 0.0029744193889200687, + 0.011566163040697575, + 0.0022914386354386806, + -0.03322509303689003, + -0.031137781217694283, + -0.004635060206055641, + 0.048744868487119675, + -0.023058656603097916, + -0.01673532836139202, + -0.002784105483442545, + 0.051765333861112595, + -0.007729192730039358, + -0.004119371064007282, + 0.003757161321118474, + -0.020185532048344612, + 0.04712413251399994, + 0.0030649718828499317, + 0.019657565280795097, + -0.04002727195620537, + -0.0046135731972754, + -0.013444744050502777, + 0.02230967953801155, + -0.018135055899620056, + 0.004966574255377054, + -0.045331500470638275, + -3.71226851711981e-5, + 0.02895224280655384, + 0.008650065399706364, + 0.0018985328497365117, + -0.010939969681203365, + -0.006390857510268688, + -0.015028645284473896, + 0.016158249229192734, + 0.01286766305565834, + -0.009730556048452854, + -0.008422916755080223, + -0.02146247588098049, + 0.03089221380650997, + 0.0038952920585870743, + 0.004954295698553324, + 0.021867660805583, + -0.013297404162585735, + -0.0015017901314422488, + -0.005153818521648645, + 0.028117317706346512, + -0.015789899975061417, + -0.031383346766233444, + -0.04015005752444267, + -0.010461115278303623, + -0.0038032049778848886, + 0.021339694038033485, + 0.035926319658756256, + 0.01071896031498909, + 0.011615276336669922, + 0.001593110035173595, + 0.045331500470638275, + 0.008220325224101543, + -0.01567939482629299, + -0.00942973792552948, + -0.007066164165735245, + -0.03494405373930931, + 0.0009776600636541843, + 0.0011173257371410728, + -0.01910504139959812, + 0.021560702472925186, + 0.005270462483167648, + 0.007152112666517496, + -0.02851022407412529, + 0.026643920689821243, + -0.029025912284851074, + 0.009030693210661411, + -0.05824827775359154, + 0.009601633995771408, + -0.006955659482628107, + 0.004426328931003809, + 0.0013529156567528844, + 0.0017926325090229511, + 0.041893575340509415, + -0.008570256642997265, + 0.011688945814967155, + -0.004131649620831013, + -0.02507229894399643, + 0.006759206764400005, + 0.015519777312874794, + -0.0003794763470068574, + -0.019215546548366547, + -0.008742152713239193, + -0.007158251479268074, + 0.010062070563435555, + -0.015507498756051064, + 0.015998631715774536, + -0.014328781515359879, + -0.003229194087907672, + 0.0069249640218913555, + 0.005715550854802132, + -0.014230554923415184, + -0.00033208978129550815, + 0.0150900362059474, + -0.014721686951816082, + -0.02639835514128208, + 0.03042563982307911, + -0.008748291991651058, + -0.00953410379588604, + -0.0274297334253788, + 0.004963504616171122, + -0.002776431618258357, + 0.02033287286758423, + -0.004582877270877361, + 0.006010230164974928, + -0.022825367748737335, + 0.024691671133041382, + -0.008122098632156849, + -0.007894949987530708, + -0.00235743448138237, + -0.03192359209060669, + 0.01819644682109356, + 0.006200544070452452, + -0.013542969711124897, + -0.029025912284851074, + -0.0029774887952953577, + 0.01564256101846695, + 0.004291267599910498, + 0.01625647582113743, + -0.041083209216594696, + 0.013555248267948627, + -0.0544174462556839, + -0.004923600237816572, + 0.037841733545064926, + 0.023746240884065628, + 0.004472372587770224, + -0.0017895628698170185, + 0.046633001416921616, + 0.0071336948312819, + -0.014954974874854088, + 0.02230967953801155, + 0.0014450029702857137, + -0.013051837682723999, + -0.05186355859041214, + 0.0005291181732900441, + -0.0027994534466415644, + -0.026054563000798225, + 0.017030008137226105, + -0.017668480053544044, + 0.030106402933597565, + 0.001640688511542976, + 0.01030763704329729, + -0.006796041503548622, + -0.018306951969861984, + 0.0113451536744833, + 0.03189903497695923, + 0.013960432261228561, + -0.0038922226522117853, + -0.001506394473835826, + -0.014242833480238914, + 0.034845829010009766, + 0.0028700537513941526, + 0.00933765061199665, + 0.021327415481209755, + -0.002874657977372408, + 0.02227284386754036, + 0.014169164001941681, + -0.005761594511568546, + -0.027356062084436417, + -0.02612823247909546, + 0.01590040512382984, + -0.04287584125995636, + 0.018515683710575104, + 0.015028645284473896, + 0.017926324158906937, + 0.03086765855550766, + -0.04999725520610809, + 0.010215549729764462, + -0.023242831230163574, + 0.008729874156415462, + 0.015765342861413956, + 0.0137148667126894, + 0.014549790881574154, + 0.01844201423227787, + -0.04820462316274643, + 0.0031140849459916353, + 0.0015386251034215093, + 0.03968347981572151, + -0.0053257145918905735, + -0.024298764765262604, + 0.04987447336316109, + -0.026889488101005554, + -0.026103675365447998, + -0.020701222121715546, + -0.01905592903494835, + -0.03450203686952591, + -0.01673532836139202, + 0.003778648329898715, + -0.00019165666890330613, + 0.037203263491392136, + -0.0016805930063128471, + 0.028338328003883362, + -0.011185535229742527, + -0.0009270120062865317, + 0.010903134942054749, + -0.016637103632092476, + -0.022776255384087563, + 0.017398357391357422, + 0.038259197026491165, + -0.0066118668764829636, + 0.034182801842689514, + 0.002552352612838149, + 0.01158458087593317, + 0.0057247597724199295, + 0.03472304716706276, + -0.0002829765435308218, + 0.004592085722833872, + -0.020320594310760498, + 0.026963157579302788, + -0.0009062923491001129, + -0.04614187031984329, + 0.002685879124328494, + 0.023009542375802994, + 0.0017557975370436907, + -0.024311043322086334, + 0.02998361922800541, + -0.029885392636060715, + 0.03577898070216179, + 0.005994882434606552, + 0.026079118251800537, + 0.024581165984272957, + -0.012572984211146832, + 0.0037080480251461267, + 0.009055249392986298, + 0.06031103432178497, + -0.002802523085847497, + -0.024532053619623184, + 0.0194979477673769, + 0.011621415615081787, + 0.009454295039176941, + -0.003419507760554552, + -0.00422987574711442, + 0.0043710763566195965, + -0.0024587304797023535, + -0.0006787600577808917, + -0.022113226354122162, + -0.031039554625749588, + -0.03658934682607651, + 0.0398799329996109, + -0.017656201496720314, + -0.004236015025526285, + -0.0163055881857872, + -0.008625509217381477, + -0.011977486312389374, + -0.013223733752965927, + -0.009128919802606106, + 0.040616631507873535, + -0.011860841885209084, + -0.007784445304423571, + -0.01243792288005352, + 0.016784442588686943, + -0.039560697972774506, + -0.016342423856258392, + 0.00508628785610199, + -0.009650747291743755, + -0.04270394518971443, + -0.015396993607282639, + -0.02593177929520607, + -0.006519779562950134, + -0.003916779067367315, + 0.024900401011109352, + -0.004871417302638292, + -0.021069571375846863, + 0.008416777476668358, + -0.005829125177115202, + 0.004466233309358358, + 0.014721686951816082, + -0.012364252470433712, + -0.020627552643418312, + -0.006298770196735859, + 0.006446110084652901, + -0.03045019507408142, + -0.002928375732153654, + -0.016366980969905853, + 0.007139834109693766, + -0.005193722900003195, + 0.020504768937826157, + -0.013788536190986633, + -0.030916770920157433, + -0.0028255449142307043, + 0.01583901233971119, + 0.017729872837662697, + 0.0038032049778848886, + 0.015998631715774536, + 0.00028163360548205674, + 0.020909951999783516, + 0.019215546548366547, + 0.02183082513511181, + 0.002962141064926982, + 0.019203267991542816, + -0.009085945785045624, + -0.00857639592140913, + -0.007600270677357912, + 0.0276507418602705, + 0.00578615115955472, + 0.0003861910372506827, + 0.005209070630371571, + -0.007489765994250774, + -0.025759883224964142, + -0.006642562802881002, + -0.009399042464792728, + -0.0071705300360918045, + 0.004196110647171736, + 0.00267667043954134, + -0.0036036823876202106, + 0.023930415511131287, + -0.03796451911330223, + 0.018564796075224876, + -0.028583893552422523, + 0.010203271172940731, + 0.015004088170826435, + 0.014291946776211262, + 0.006360161583870649, + -0.016231918707489967, + 0.05436833202838898, + -0.009270120412111282, + 0.003910640254616737, + -0.0227516982704401, + -0.01928921602666378, + -0.005574350245296955, + 0.01219849567860365, + 0.012204634957015514, + 0.019583895802497864, + 0.033102311193943024, + 0.02745428867638111, + 0.026005448773503304, + 0.03749794140458107, + 0.016428371891379356, + 0.010369027964770794, + -0.019240103662014008, + -0.05210912600159645, + -0.01137584913522005, + -0.027356062084436417, + 0.02057843841612339, + -0.006562754046171904, + -0.03258661925792694, + -0.05078306794166565, + 0.07062480598688126, + -0.008969301357865334, + -0.006458388175815344, + -0.015139149501919746, + 0.032684847712516785, + 0.005534445866942406, + -0.005985673516988754, + -0.00941745936870575, + 0.005598906893283129, + -0.04140244424343109, + -0.013346517458558083, + 0.0013437069719657302, + 0.024482939392328262, + 0.006261935457587242, + 0.0024034781381487846, + -0.009583217091858387, + 0.005933490581810474, + -0.021757155656814575, + 0.004957365337759256, + -0.009233284741640091, + 0.058641184121370316, + -0.0005114681553095579, + 0.01319917757064104, + -0.03256206214427948, + -0.020725777372717857, + -0.008582535199820995, + -0.03126056492328644, + 0.0137148667126894, + 0.028461109846830368, + 0.037817180156707764, + 0.0032967247534543276, + 0.006123804487287998, + -0.03511594980955124, + -0.009257841855287552, + 0.02443382702767849, + 0.03894678130745888, + 0.05147065222263336, + -0.010995222255587578, + -0.02181854657828808, + -0.014439286664128304, + -0.0003100271860603243, + -0.01241336576640606, + -0.006047064904123545, + -0.005761594511568546, + -0.011326735839247704, + -0.008373803459107876, + 0.010430419817566872, + 0.03430558368563652, + -0.016993174329400063, + -0.01603546552360058, + -0.03747338429093361, + 0.03339698910713196, + 0.016121413558721542, + 0.02526875026524067, + -0.03511594980955124, + 0.006826737429946661, + -0.046362876892089844, + -0.0012638979824259877, + -0.025980893522500992, + -0.000585137982852757, + 0.035656195133924484, + -0.005479193292558193, + 0.023316500708460808, + 0.036957696080207825, + -0.012708045542240143, + 0.01072509866207838, + 0.03491949662566185, + 0.026521138846874237, + 0.024261929094791412, + -0.008195768110454082, + 0.042311038821935654, + 0.025784440338611603, + -0.017312409356236458, + 0.003213846357539296, + 0.009380624629557133, + -0.006618006154894829, + -0.004564459901303053, + -0.01059003733098507, + -0.010737377218902111, + 0.0002929526672232896, + -0.011547745205461979, + 0.009270120412111282, + 0.0009385229204781353, + 0.005423941183835268, + 0.02703682705760002, + 0.02164665050804615, + -0.011517049744725227, + 0.029959063977003098, + -0.007201225496828556, + -0.0032261244487017393, + 0.03295496851205826, + 0.016759885475039482, + 0.019669843837618828, + -0.01908048614859581, + 0.02870667539536953, + -0.0031585937831550837, + -0.024568887427449226, + 0.010761934332549572, + -0.02207639254629612, + -0.014046380296349525, + 0.015986353158950806, + 0.0039873793721199036, + -0.04945700988173485, + 0.025219637900590897, + 0.0201609767973423, + -0.0005168399075046182, + -0.02361118048429489, + 0.0067223720252513885, + 0.01607230119407177, + 0.023918136954307556, + 0.0070845820009708405, + -0.0269877128303051, + 0.0037019087467342615, + 0.002850101562216878, + 0.022997263818979263, + 0.003302864031866193, + -0.009804226458072662, + 0.016870390623807907, + 0.00814051553606987, + -0.015311045572161674, + -0.006789902690798044, + -0.021597538143396378, + 0.021572981029748917, + -0.013628917746245861, + -0.003612891072407365, + 0.005319575313478708, + 0.004119371064007282, + -0.006335605401545763, + 0.00976125244051218, + -0.0027365272399038076, + -0.009933148510754108, + -0.026963157579302788, + 0.021978165954351425, + -0.022886760532855988, + -0.003935196436941624, + -0.006839015521109104, + 0.004871417302638292, + -0.01241336576640606, + -0.00858867447823286, + -0.016403814777731895, + 0.00643383152782917, + 0.021143240854144096, + -0.012892220169305801, + -0.019866297021508217, + 0.00143349205609411, + 0.01590040512382984, + -0.02077489160001278, + 0.009896313771605492, + -0.005826055537909269, + -0.02033287286758423, + -0.012622097507119179, + -0.02143792062997818, + -0.00019415069255046546, + -0.02912413887679577, + -0.03130967542529106, + -0.004650407936424017, + -0.015139149501919746, + 0.007434513419866562, + 0.022813089191913605, + -0.028461109846830368, + 0.02851022407412529, + -0.001238573924638331, + 0.001377472304739058, + -0.004693381953984499, + 0.005430080462247133, + 0.03619644045829773, + -0.005126192234456539, + -0.038676660507917404, + 0.01124078780412674, + 0.021327415481209755, + -0.01049181167036295, + 0.00439563300460577, + 0.04292495176196098, + 0.02227284386754036, + -0.011860841885209084, + -0.0019798765424638987, + -0.01448839996010065, + 0.01866302266716957, + -0.014660296030342579, + 0.003978170920163393, + 0.010651429183781147, + 0.005153818521648645, + -0.020676665008068085, + 0.03236561268568039, + -0.007526600733399391, + 0.011922233738005161, + 0.0047486345283687115, + -0.025882666930556297, + -0.0057247597724199295, + -0.024814452975988388, + -0.009135059081017971, + -0.009276258759200573, + -0.012781715020537376, + -0.03327420726418495, + -0.020517047494649887, + 0.008545700460672379, + -0.011296040378510952, + -0.00329979439266026, + 0.029517045244574547, + -0.01565483771264553, + 0.0007838929886929691, + -0.02375851944088936, + 0.016219640150666237, + -0.004045701585710049, + -0.006513640750199556, + -0.023918136954307556, + -0.009693721309304237, + 0.0010628406889736652, + -0.0053257145918905735, + -0.024163704365491867, + 0.013223733752965927, + 0.03536151722073555, + 0.011609137058258057, + 0.01909276284277439, + -0.01695633865892887, + -0.02634924091398716, + 0.0014319572364911437, + -0.03297952562570572, + -0.00813437718898058, + -0.007974758744239807, + 0.0025508177932351828, + 0.013321960344910622, + 0.026079118251800537, + 0.011179395951330662, + 0.005838334094733, + -2.9160974008846097e-5, + 0.016170527786016464, + 0.007594131398946047, + -0.0373506024479866, + -0.01104433462023735, + -0.01588812656700611, + -0.012272165156900883, + -0.0025968614500015974, + 0.03359344229102135, + 0.003250681096687913, + -0.024077756330370903, + -0.012929054908454418, + 0.017926324158906937, + 0.0059703257866203785, + -0.026079118251800537, + -0.00246026529930532, + -0.011099587194621563, + -0.011688945814967155, + 0.01651431992650032, + -0.01148021500557661, + -0.01413232833147049, + 0.005896655842661858, + -0.028117317706346512, + -0.007851975969970226, + -0.02573532611131668, + 0.01674760691821575, + 7.942528463900089e-5, + 0.01156002376228571, + -0.010982943698763847, + -0.005497611127793789, + -0.07239288091659546, + -0.013567526824772358, + 0.0081527940928936, + 0.00013103253149893135, + 0.008821961469948292, + -0.01889631152153015, + 0.01350613497197628, + 0.003999657928943634, + 0.019129598513245583, + -0.0037510220427066088, + -0.005316506139934063, + 0.0019031371921300888, + -0.017914045602083206, + 0.02140108495950699, + 0.012830828316509724, + -0.008515004068613052, + 0.016010908409953117, + -0.026521138846874237, + 0.00814051553606987, + -0.0373506024479866, + -0.009257841855287552, + 0.004401772283017635, + 0.012051155790686607, + -0.0009592425776645541, + -0.022223731502890587, + 0.011609137058258057, + 0.009681443683803082, + -0.024360155686736107, + -0.009896313771605492, + 0.005202931817620993, + -0.011093447916209698, + 0.005982603877782822, + 0.00243417383171618, + -0.020701222121715546, + -0.0011710432590916753, + 0.0041255103424191475, + 0.029615269973874092, + -0.020381985232234, + 0.03406001627445221, + 0.007397678680717945, + 0.020504768937826157, + 0.003812413662672043, + -0.012167800217866898, + 0.002521656919270754, + 0.0002902667911257595, + 0.0009131989208981395, + 0.01233355700969696, + -0.046583887189626694, + 0.0005498378304764628, + 0.0018755110213533044, + 0.010436559095978737, + 0.011032056994736195, + 0.005295018665492535, + -0.011615276336669922, + -0.010430419817566872, + 0.006249656900763512, + 0.013960432261228561, + 0.01951022632420063, + 0.017717594280838966, + 0.011246927082538605, + 0.01910504139959812, + 0.0014104702277109027, + -0.014660296030342579, + -0.017496583983302116, + -0.024618001654744148, + -0.0075020440854132175, + 0.003726465394720435, + 0.018577074632048607, + 0.022223731502890587, + -0.006544336210936308, + -0.010608455166220665, + -0.01607230119407177, + 0.000697177485562861, + 0.0453806146979332, + 0.016661658883094788, + 0.009834921918809414, + 0.013862205669283867, + 0.02466711401939392, + 0.01169508509337902, + -0.0007063862285576761, + 0.005727828945964575, + -0.013800814747810364, + 0.0012938263826072216, + 0.00016105682880152017, + -0.004635060206055641, + -0.0036251693964004517, + -0.009969983249902725, + -0.004404841922223568, + 0.006335605401545763, + 0.015716230496764183, + 0.01565483771264553, + 0.009079806506633759, + 0.004030353389680386, + 0.02873123250901699, + -0.016244197264313698, + 0.0453806146979332, + -0.0013651939807459712, + -0.01084174308925867, + -0.0019829461816698313, + -0.01626875437796116, + -0.0028209404554218054, + -0.0005041778786107898, + 0.009239424020051956, + -0.01306411623954773, + 0.021572981029748917, + 3.5132259654346853e-5, + -0.0036251693964004517, + -0.019878575578331947, + -0.006354022771120071, + -0.02421281673014164, + -0.03153068572282791, + 0.01926466077566147, + -0.014083215035498142, + 0.017914045602083206, + -0.0169686172157526, + 0.0037878570146858692, + 0.01490586157888174, + 0.0186139103025198, + 0.009675304405391216, + -0.02510913275182247, + -0.018982259556651115, + 0.010583898983895779, + 0.0041469973511993885, + 0.003956683445721865, + -0.013616640120744705, + 0.007827418856322765, + 0.007324008736759424, + 0.019338330253958702, + -0.002586117945611477, + 0.03700681030750275, + -0.00172663654666394, + -0.004785469267517328, + 0.0016913365107029676, + -0.005878238473087549, + 0.0022945082746446133, + 0.012781715020537376, + 0.008404499851167202, + 0.020099584013223648, + 0.050021812319755554, + -0.006495223380625248, + -0.016231918707489967, + 0.0036589347291737795, + 0.012646653689444065, + 0.014660296030342579, + 0.002028989838436246, + 0.008079124614596367, + 0.01049181167036295, + -0.009601633995771408, + -0.019583895802497864, + -0.0029560017865151167, + -0.014869026839733124, + 0.02339017018675804, + 0.03467393293976784, + 0.031236007809638977, + -0.02039426378905773, + -0.020824003964662552, + -0.0038615267258137465, + 0.011332875117659569, + -0.002440313110128045, + -0.019829461351037025, + -0.019829461351037025, + 0.010743516497313976, + 0.023058656603097916, + 0.015691673383116722, + 0.013002724386751652, + -0.009257841855287552, + 0.0022085600066930056, + 0.009945427067577839, + -0.01477080024778843, + -0.005359480157494545, + -0.005583559162914753, + -0.007931784726679325, + -0.01715279184281826, + -0.034600261598825455, + 0.011087309569120407, + -0.010663707740604877, + -0.03322509303689003, + -0.003935196436941624, + 0.001299965544603765, + -0.025170523673295975, + -0.03538607433438301, + 0.0028685189317911863, + 0.012192356400191784, + 0.02895224280655384, + -0.0032230550423264503, + 0.022174619138240814, + 0.002271486446261406, + 0.015347881242632866, + -0.026300128549337387, + -0.0137148667126894, + 0.0150900362059474, + -0.004364937078207731, + -0.013972710818052292, + 0.014819913543760777, + 0.00388608337379992, + -0.0012930589728057384, + 0.015175984241068363, + 0.029909949749708176, + -0.0342564694583416, + -0.018589353188872337, + 0.00637244014069438, + -0.0038032049778848886, + 0.0150900362059474, + 0.02293587289750576, + -0.006347883492708206, + -0.008398360572755337, + -0.01971895806491375, + 0.006673258729279041, + 0.029025912284851074, + -0.015372437424957752, + -0.004073327407240868, + -0.003800135338678956, + 0.014205998741090298, + -0.017963159829378128, + -0.005792290437966585, + -0.01005593128502369, + 0.020529326051473618, + -0.01652659848332405, + -0.010915412567555904, + -0.027356062084436417, + 0.00690654618665576, + 0.011400406248867512, + 0.0031984983943402767, + 0.004490789957344532, + 0.03990449011325836, + 0.01586356945335865, + 0.006593449506908655, + -0.02207639254629612, + 0.0028485667426139116, + 0.015974074602127075, + 0.0007443721988238394, + -0.007145973388105631, + -0.00857639592140913, + -0.009270120412111282, + -0.003394951345399022, + 0.012180077843368053, + 0.02486356720328331, + -0.032046373933553696, + 0.012450200505554676, + 0.004100953694432974, + -0.015716230496764183, + 0.007446791976690292, + 0.007385400123894215, + -0.008963162079453468, + 0.00847203005105257, + 0.025195080786943436, + -0.0026091397739946842, + -0.004186901729553938, + -0.002447986975312233, + 0.018687579780817032, + 0.005049452651292086, + 0.019571617245674133, + -0.01652659848332405, + 0.002784105483442545, + -0.016182806342840195, + -0.00492053059861064, + 0.0367858000099659, + -0.02187993936240673, + 0.013788536190986633, + 0.01092155184596777, + -0.022788533940911293, + -0.009079806506633759, + 0.004085605964064598, + -0.0026229529175907373, + 1.2224347301525995e-5, + -0.017251018434762955, + -0.003781717736274004, + 0.015409272164106369, + 0.013211456127464771, + 0.009663025848567486, + 0.009104362688958645, + -0.0057953596115112305, + -0.022886760532855988, + 0.005534445866942406, + -0.00023309593962039798, + -0.024949515238404274, + -0.004070257768034935, + -0.009067527949810028, + -0.006446110084652901, + -0.021351972594857216, + -0.057560693472623825, + 0.014537512324750423, + -0.011965207755565643, + 0.021118683740496635, + 0.020308315753936768, + -0.015163706615567207, + 0.004340380895882845, + -0.004036492668092251, + 0.032021816819906235, + -0.0014841400552541018, + 0.03553341329097748, + 0.029713496565818787, + -0.005829125177115202, + -0.006421553436666727, + 0.009699860587716103, + 0.0070109120570123196, + 0.011056613177061081, + 0.01510231476277113, + 0.00669167609885335, + -0.006200544070452452, + 0.014316502958536148, + 0.01232127845287323, + 0.0007121416856534779, + 0.004902113229036331, + 0.01051022857427597, + -7.578016084153205e-5, + 0.0038615267258137465, + -0.010694403201341629, + 0.02033287286758423, + -0.013616640120744705, + 0.009368346072733402, + -0.01062687300145626, + -0.029688941314816475, + -0.023070935159921646, + 0.003126363269984722, + -0.009939287789165974, + -0.0031340373679995537, + 0.003925987984985113, + 0.009570938535034657, + -0.027282392606139183, + -0.016624825075268745, + 0.006354022771120071, + 0.014991809614002705, + 0.02017325535416603, + -0.028657563030719757, + -0.008527282625436783, + -0.012941333465278149, + 0.009190310724079609, + -0.0031278980895876884, + -0.016354702413082123, + -0.02034515142440796, + 0.008643926121294498, + 0.006157569587230682, + 0.004444746300578117, + 0.006268074735999107, + 0.005534445866942406, + 0.0017987716710194945, + 0.011903815902769566, + -0.03150612860918045, + -0.005740107502788305, + 0.0014879769878461957, + 0.024077756330370903, + -0.022616637870669365, + 0.010682124644517899, + 0.0014496073126792908, + 0.03452659398317337, + 0.0012408761540427804, + 0.042139142751693726, + -0.01953478343784809, + -0.017435193061828613, + 0.026226459071040154, + -0.012063434347510338, + -0.002454126253724098, + -0.014746244065463543, + 0.016145970672369003, + 0.005902795121073723, + 0.020909951999783516, + -0.0038891530130058527, + -0.011302179656922817, + -0.02851022407412529, + -0.007563435472548008, + 0.0010336798150092363, + 0.027331506833434105, + 0.013763979077339172, + 0.004625851288437843, + 0.023709407076239586, + -0.01349385641515255, + 0.002021315973252058, + 0.0019445765065029263, + -0.0032107767183333635, + -0.011824007146060467, + -0.020885396748781204, + -0.023279665037989616, + 0.014648017473518848, + 0.003290585707873106, + 0.022665750235319138, + -0.016587989404797554, + -0.008097541518509388, + 0.003388812066987157, + -0.004097884055227041, + -0.007440652698278427, + -0.002948327921330929, + -0.009969983249902725, + -0.023291943594813347, + 0.005534445866942406, + -0.004337311256676912, + -0.01413232833147049, + 0.0163055881857872, + 0.0027917795814573765, + 0.03133423253893852, + -0.017042286694049835, + -0.0122291911393404, + -0.01039972435683012, + 0.006642562802881002, + -0.029296034947037697, + 0.004960434976965189, + 0.017877211794257164, + 0.008036150597035885, + -0.029517045244574547, + -0.02183082513511181, + -0.019657565280795097, + 0.016145970672369003, + 0.0013206851435825229, + 0.029443373903632164, + -0.018527962267398834, + 0.03130967542529106, + 0.009055249392986298, + 0.021351972594857216, + -0.0037203263491392136, + -0.010804908350110054, + -0.019780348986387253, + -0.0025554222520440817, + 0.018331509083509445, + -0.017938602715730667, + -0.026864930987358093, + 0.020873118191957474, + -0.009331511333584785, + 0.018712136894464493, + 0.009374485351145267, + -0.02762618474662304, + -0.022186895832419395, + 0.011946790851652622, + -0.010405863635241985, + 0.009374485351145267, + -0.024716226384043694, + 0.0009231750154867768, + -0.01479535736143589, + -0.024470660835504532, + -0.010258523747324944, + 0.0031892897095531225, + -0.005328784231096506, + 0.007551157381385565, + -0.022260567173361778, + 0.0013444743817672133, + 0.044251009821891785, + 0.003769439645111561, + 0.028411997482180595, + 0.013309681788086891, + 0.0005202931351959705, + -0.04282672703266144, + -0.006562754046171904, + -0.0009623121004551649, + -0.0003353511856403202, + -0.01510231476277113, + 0.009042971767485142, + -0.024470660835504532, + 0.01061459444463253, + -0.027503402903676033, + 0.01603546552360058, + 0.01865074411034584, + 0.013935876078903675, + -0.005371758248656988, + -0.014120050705969334, + 0.001714358339086175, + -0.01553205493837595, + 0.012401088140904903, + 0.006679397542029619, + -0.0004055677563883364, + -0.01908048614859581, + 0.0330531969666481, + 0.029664384201169014, + -0.0009216402540914714, + 0.0024096171837300062, + 0.011099587194621563, + -0.01652659848332405, + 0.02703682705760002, + 0.018061386421322823, + -0.005534445866942406, + -0.018699858337640762, + -0.0015378576936200261, + 0.010473393835127354, + -0.006581171415746212, + -0.006427692715078592, + 0.003929057624191046, + 0.017742149531841278, + -0.04142700135707855, + -0.0013582874089479446, + 0.02679126150906086, + 0.01273260172456503, + -0.03278307244181633, + 0.0043066153302788734, + -0.012137103825807571, + 0.006062413100153208, + -0.00036374476621858776, + 0.030916770920157433, + -0.0269877128303051, + 0.015519777312874794, + 0.0026459747459739447, + 0.003579125739634037, + 0.05078306794166565, + -0.00901841465383768, + 0.012235330417752266, + -0.003431786084547639, + 0.015261932276189327, + 0.0164652056992054, + -0.009257841855287552, + -0.015728509053587914, + -0.020308315753936768, + -0.01059003733098507, + 0.008582535199820995, + -0.00503410492092371, + -0.0027718273922801018, + -0.004533763974905014, + 0.014844470657408237, + 0.009810365736484528, + -0.03813641518354416, + -0.02443382702767849, + 0.00890791043639183, + -0.014414729550480843, + -0.013751701451838017, + -0.015335602685809135, + -0.0033489076886326075, + 0.016354702413082123, + -0.0077476100996136665, + -0.011719642207026482, + 0.004711799323558807, + 0.002678205259144306, + -0.007348565384745598, + 0.00011060066753998399, + 0.01607230119407177, + -0.0025753744412213564, + -0.005031035281717777, + 0.006802180781960487, + -0.013125508092343807, + 0.003760230727493763, + 0.00880354456603527, + 0.003938266076147556, + -0.006961798761039972, + -0.026619363576173782, + -0.0026521137915551662, + -0.0035637780092656612, + 0.0043066153302788734, + -0.003290585707873106, + 0.010939969681203365, + 0.0011848564026877284, + 0.004269780591130257, + 0.024139147251844406, + 0.0032261244487017393, + -0.020725777372717857, + -0.012566844932734966, + -0.003312072716653347, + 0.00845975149422884, + -0.023500675335526466, + -0.0076616620644927025, + -0.0054853325709700584, + 0.08103681355714798, + 0.00813437718898058, + -0.0012493175454437733, + 0.008662343956530094, + 0.027380619198083878, + 0.001437328988686204, + 0.00997612252831459, + 0.018589353188872337, + 0.000841831264551729, + 0.015139149501919746, + 0.01037516724318266, + -0.010528646409511566, + -0.00254774815402925, + -0.01049181167036295, + -0.024261929094791412, + 7.813030242687091e-5, + 0.01146793644875288, + 0.008072985336184502, + -0.007993176579475403, + 0.027994534000754356, + 0.028141874819993973, + -0.0016268753679469228, + -0.019166434183716774, + 0.015372437424957752, + 0.00932537205517292, + -0.011652111075818539, + 0.003898361697793007, + 0.016121413558721542, + 0.04069030284881592, + 0.026447467505931854, + 0.005227487999945879, + -0.0027104357723146677, + -0.024974072352051735, + -0.022211452946066856, + 0.007023190148174763, + 0.008435195311903954, + -0.01926466077566147, + 0.009190310724079609, + -0.0006864339811727405, + 0.033740781247615814, + -0.007483626715838909, + -0.012370391748845577, + 0.009969983249902725, + 0.015004088170826435, + -0.011277622543275356, + 0.004263641312718391, + 0.011075031012296677, + -0.0023743172641843557, + 0.003757161321118474, + 0.004852999933063984, + -0.020492490381002426, + -0.01629330962896347, + -0.007102999370545149, + -0.005709411576390266, + -0.005663367919623852, + -0.021327415481209755, + 0.005908933933824301, + -0.010246245190501213, + 0.0012055760016664863, + -0.013751701451838017, + 0.012855385430157185, + 0.010559341870248318, + -0.0081527940928936, + -0.021351972594857216, + 0.02703682705760002, + 0.0036159607116132975, + -0.011216231621801853, + -0.0005076311645098031, + -0.0032844464294612408, + 0.009957704693078995, + -0.0009009205969050527, + 0.008404499851167202, + -0.015323324128985405, + -0.015949517488479614, + -0.0075020440854132175, + 0.011836285702884197, + 0.007809001952409744, + 0.000979962176643312, + 0.005703272297978401, + 0.008398360572755337, + -0.013027281500399113, + 0.00011108028411399573, + 0.0003932894323952496, + -0.01071896031498909, + 0.011873120442032814, + -0.0022776254918426275, + 0.000427438470069319, + 0.004671894945204258, + 0.006415414158254862, + -0.010332193225622177, + -0.012695766985416412, + -0.005973395425826311, + -0.004628920927643776, + 0.01819644682109356, + -0.0029774887952953577, + -0.014635738916695118, + 0.005021826829761267, + 0.0074160960502922535, + 0.015409272164106369, + -0.0025707699824124575, + 0.007299452088773251, + 0.021155519410967827, + -0.00337653374299407, + 0.0106023158878088, + 0.007587992120534182, + 0.007428374141454697, + 0.01070668175816536, + 0.008189628832042217, + -0.024335600435733795, + 0.007023190148174763, + -0.011314457282423973, + -0.007766027469187975, + -0.004678034223616123, + 0.004355728626251221, + -0.012597540393471718, + 0.004668825305998325, + 0.01382537093013525, + 0.01403410267084837, + -0.01651431992650032, + -0.00418076291680336, + -0.01403410267084837, + -0.011259205639362335, + 0.02463027834892273, + 0.005605046171694994, + -0.0013245220761746168, + 0.0003752556804101914, + -0.006390857510268688, + -0.014709409326314926, + -0.002566165756434202, + -0.019129598513245583, + -0.0033519770950078964, + -0.009049110114574432, + 0.017496583983302116, + -0.0052612535655498505, + -0.007262617349624634, + -0.013260569423437119, + 0.021708043292164803, + -0.012818549759685993, + 0.030965885147452354, + -0.0032230550423264503, + -0.006421553436666727, + 0.042753055691719055, + 0.001869371859356761, + 0.0005256649455986917, + 0.02013641968369484, + 0.008508864790201187, + 0.006022508256137371, + -0.0250600203871727, + 0.022837646305561066, + 0.008594812825322151, + 0.00813437718898058, + -0.006513640750199556, + 0.006360161583870649, + -0.02617734484374523, + -0.00855183880776167, + 0.012468618340790272, + -0.02055388130247593, + -0.0039658923633396626, + -0.0047271475195884705, + -0.007274895440787077, + -0.0015194402076303959, + -0.012622097507119179, + -0.0016053883591666818, + -0.005862890277057886, + -0.014377894811332226, + 0.0024633349385112524, + 0.018085943534970284, + 0.009184171445667744, + 0.000427438470069319, + -0.011965207755565643, + -0.02917325124144554, + 0.017251018434762955, + 0.0044570243917405605, + -0.02681581676006317, + -0.003480899380519986, + -0.003398020751774311, + 0.0171282347291708, + 0.013051837682723999, + -0.02077489160001278, + 0.004254432395100594, + -0.0039444053545594215, + -0.002142564160749316, + 0.023083211854100227, + -0.020517047494649887, + 0.002906888723373413, + -0.0092271463945508, + 0.02316916175186634, + -0.010872438549995422, + 0.00974897388368845, + -0.0010229363106191158, + -0.02424965240061283, + 0.03403545916080475, + -0.010553202591836452, + -0.0010129600996151567, + -0.01446384284645319, + 0.00605320418253541, + 0.012038878165185452, + 0.04022372514009476, + 0.0012592936400324106, + 0.022678028792142868, + 0.002184003358706832, + 0.01583901233971119, + 0.002615278819575906, + -0.0018371413461863995, + 0.019227825105190277, + -0.025882666930556297, + -0.011977486312389374, + -0.02659480832517147, + -0.0004228341276757419, + 0.00356684741564095, + -0.03209548816084862, + 0.004991130903363228, + 0.014733965508639812, + -0.016366980969905853, + -0.00424215430393815, + 0.015482942573726177, + -0.006998633500188589, + -0.025686213746666908, + 0.018294673413038254, + 0.009920869953930378, + 0.009620051831007004, + 0.0244583822786808, + 0.0067285108380019665, + -0.004742495249956846, + 0.011824007146060467, + 0.01114870049059391, + -0.002754944609478116, + 0.0038062743842601776, + 0.014881305396556854, + -0.0001215360316564329, + 0.034403808414936066, + -0.013444744050502777, + -0.008981579914689064, + 0.00198755064047873, + 0.016023186966776848, + 0.011007499881088734, + 0.009859479032456875, + -0.012830828316509724, + 0.013628917746245861, + -0.0044140503741800785, + -0.007483626715838909, + 0.027896307408809662, + -0.010086627677083015, + 0.0031831504311412573, + -0.0017634715186432004, + 0.011873120442032814, + -0.016182806342840195, + -0.00932537205517292, + -0.012646653689444065, + -2.0683666662080213e-5, + 0.01839290000498295, + -0.02203955687582493, + -0.026619363576173782, + 0.017459748312830925, + 0.005423941183835268, + 0.005153818521648645, + 0.001537090283818543, + -0.00503410492092371, + 0.02637379802763462, + 0.003910640254616737, + -0.008085263893008232, + 0.01116097904741764, + 0.016231918707489967, + 0.00401500565931201, + 0.015568890608847141, + 0.006040926091372967, + -0.00933765061199665, + 0.013015002943575382, + -0.012045016512274742, + -0.005740107502788305, + -0.0036374477203935385, + -0.008201907388865948, + -0.0012546892976388335, + 0.023967251181602478, + -0.011830146424472332, + 0.0036282390356063843, + 0.020627552643418312, + 0.00944201648235321, + -0.008963162079453468, + -0.005749315954744816, + -0.01273260172456503, + 0.004693381953984499, + -0.023893581703305244, + -0.02334105782210827, + -0.0011848564026877284, + -0.029099581763148308, + 0.005153818521648645, + 0.013788536190986633, + 0.004490789957344532, + -0.009939287789165974, + 0.006796041503548622, + -0.009165754541754723, + 0.00014503746933769435, + 0.006532058119773865, + 0.004429398570209742, + -0.003040415234863758, + -0.00836152583360672, + 0.01145565789192915, + 0.004929739516228437, + -0.025833552703261375, + 0.00046964516513980925, + -0.01318689901381731, + -0.004036492668092251, + -0.016391536220908165, + 0.030081845819950104, + 0.0026920184027403593, + 0.02639835514128208, + -0.01587584801018238, + -0.008465890772640705, + 0.022420184686779976, + -0.010522507131099701, + -0.0065688928589224815, + -0.0029682801105082035, + 0.017717594280838966, + 0.0035944737028330564, + 0.001614597043953836, + -0.010743516497313976, + 0.03184992074966431, + 0.0034563427325338125, + -0.013678031042218208, + -0.018540240824222565, + 0.01136357057839632, + 0.0338144525885582, + -0.012143243104219437, + -0.005113913677632809, + 0.008171211928129196, + 0.00804228987544775, + 0.013555248267948627, + 0.01669849455356598, + -0.02081172727048397, + 0.014193720184266567, + 0.01114870049059391, + -0.013223733752965927, + 0.035459745675325394, + -0.010264663025736809, + 0.01777898520231247, + -0.03435469791293144, + -0.006452248897403479, + -0.011670528911054134, + 0.009884035214781761, + -0.006421553436666727, + 0.010276940651237965, + -0.009497269056737423, + -0.012407226487994194, + 0.0035821953788399696, + 0.04172167927026749, + 0.03155524283647537, + -0.01715279184281826, + -0.0017220322042703629, + 0.014832192100584507, + -0.011916094459593296, + -0.007440652698278427, + 0.007182808127254248, + -0.01824556104838848, + -0.020836282521486282, + -0.005384036805480719, + 0.002745735924690962, + 0.006802180781960487, + -0.003674282692372799, + -0.011118005029857159, + -0.01882264018058777, + 0.007809001952409744, + -0.014058658853173256, + -0.010915412567555904, + 0.005172235891222954, + 0.0026950878091156483, + 0.0004953528405167162, + 0.011793311685323715, + -0.014648017473518848, + 0.004886765033006668, + 0.011756476946175098, + -0.006200544070452452, + 0.006562754046171904, + -0.00659958878532052, + -0.0064829448238015175, + 0.006139152217656374, + 0.0014733965508639812, + 0.026864930987358093, + -0.0008157398551702499, + -0.0069311028346419334, + 0.02316916175186634, + -0.01510231476277113, + -0.010798769071698189, + -0.0033734641037881374, + -0.003683491377159953, + 0.01862618885934353, + 0.014316502958536148, + 0.008993858471512794, + -0.002693552989512682, + 0.029517045244574547, + 0.005227487999945879, + 0.02981172315776348, + 0.0310641098767519, + -0.012609818950295448, + -0.006464527454227209, + -0.028559336438775063, + -0.011860841885209084, + 0.007109138183295727, + -0.0032875160686671734, + -0.02292359434068203, + -0.000742837437428534, + 0.005159957334399223, + -0.0030434848740696907, + 0.014046380296349525, + 0.015605725347995758, + -0.006347883492708206, + 0.024323321878910065, + 0.020480211824178696, + 0.007630966138094664, + 0.003769439645111561, + 0.028633005917072296, + 0.004438607022166252, + -0.029615269973874092, + 0.011928373016417027, + 0.025980893522500992, + 0.012542287819087505, + 0.007980898022651672, + 0.005835264455527067, + 0.0005809172871522605, + 0.010148018598556519, + 0.005224418826401234, + -0.007201225496828556, + 0.0009385229204781353, + 0.0031984983943402767, + -0.0048130955547094345, + 0.03433014079928398, + 0.030130960047245026, + 0.006335605401545763, + -0.00825715996325016, + -0.01039972435683012, + -0.019338330253958702, + -0.011529328301548958, + -0.01233355700969696, + 0.005896655842661858, + -0.022567523643374443, + -0.0057953596115112305, + 0.006992494687438011, + -0.02402864210307598, + -0.0021256813779473305, + 0.009675304405391216, + -0.016428371891379356, + -0.02227284386754036, + 0.012167800217866898, + 0.0017204973846673965, + -0.010105044580996037, + 0.007581853307783604, + -0.004733286332339048, + 0.030597535893321037, + 0.005061731208115816, + -0.012793993577361107, + -0.01116097904741764, + 0.015151428058743477, + 0.007293312810361385, + 0.002058150712400675, + -0.016772164031863213, + -0.024090033024549484, + -0.020308315753936768, + 0.012309000827372074, + 0.020013635978102684, + 0.005482262931764126, + 0.0004420189652591944, + -2.5659737730165944e-5, + -0.002587652765214443, + 0.011627554893493652, + -0.0008732944261282682, + -0.0006177522009238601, + 0.01733696646988392, + 0.012468618340790272, + -0.002612209413200617, + 0.014721686951816082, + -0.009374485351145267, + 0.007465209346264601, + 0.002099590143188834, + -0.0051660966128110886, + 0.003250681096687913, + 0.006283422466367483, + -0.003600612748414278, + -0.01478307880461216, + 0.01553205493837595, + -0.006126874126493931, + -0.011553884483873844, + -0.010092766024172306, + -0.005994882434606552, + 0.006703954190015793, + -0.0068144588731229305, + -0.005958047229796648, + -0.01232127845287323, + -0.00310948072001338, + 0.0018816501833498478, + 0.03197270631790161, + 0.013358795084059238, + 0.0014841400552541018, + 0.003597543342038989, + 0.01005593128502369, + -0.008950884453952312, + 0.0038185527082532644, + 0.02055388130247593, + 0.02508457563817501, + -0.008797405287623405, + 0.007195086684077978, + -0.00616677850484848, + 0.0011203952599316835, + -0.004665755666792393, + 0.02184310369193554, + 0.015986353158950806, + -0.001485674874857068, + -0.004088675603270531, + -0.0005548258777707815, + 0.007176668848842382, + -0.0023958042729645967, + 0.019166434183716774, + 0.014819913543760777, + -0.002042802982032299, + 0.00791336689144373, + -0.0015746925491839647, + 0.009988401085138321, + 0.0025354698300361633, + 0.016624825075268745, + 0.01884719729423523, + 0.013113229535520077, + 0.006446110084652901, + -0.005350271239876747, + -0.012566844932734966, + -0.008631648495793343, + -0.021106405183672905, + 0.011658250354230404, + 0.01757025346159935, + 0.0036650740075856447, + -0.011615276336669922, + 0.002219303511083126, + -0.029836280271410942, + 0.01168280653655529, + 0.0030035802628844976, + -0.01543382927775383, + 0.0022899038158357143, + 0.015175984241068363, + 0.016624825075268745, + -0.012063434347510338, + 0.03491949662566185, + -0.011296040378510952, + -0.016759885475039482, + 0.014598904177546501, + 0.008864936418831348, + 0.005344131961464882, + -0.002219303511083126, + 0.006004090886563063, + -0.013665753416717052, + 0.008324690163135529, + 0.006421553436666727, + -0.007293312810361385, + -0.0036159607116132975, + 0.01306411623954773, + 0.00032959572854451835, + 0.01403410267084837, + 0.011222370900213718, + -0.021266024559736252, + 0.0026045353151857853, + -0.018589353188872337, + 0.013899040408432484, + 0.005822985898703337, + -0.006047064904123545, + -0.0081527940928936, + -0.00955252069979906, + -0.00135138095356524, + -0.0018018411938101053, + 0.0076616620644927025, + 0.00558048952370882, + 0.009042971767485142, + 0.00013515727187041193, + 0.02723328024148941, + -0.022874481976032257, + 0.0067714848555624485, + -0.022616637870669365, + -0.004453955218195915, + -0.0027319227810949087, + -0.0009400576818734407, + -0.0016253405483439565, + -0.0030388804152607918, + 0.02292359434068203, + -0.001662175520323217, + -0.004165414720773697, + -0.022628914564847946, + 0.004245223943144083, + -0.0010858625173568726, + -0.007612548768520355, + 0.01178717240691185, + 0.005024896003305912, + 0.008674622513353825, + 0.006875850725919008, + -0.006495223380625248, + 0.02483901008963585, + -0.001484907465055585, + -0.01889631152153015, + -0.005024896003305912, + 0.0011426496785134077, + 0.015053201466798782, + -0.014549790881574154, + -0.006710093468427658, + -0.0037111176643520594, + -0.005936560221016407, + -0.015396993607282639, + 0.016195083037018776, + 0.01146793644875288, + 0.012069573625922203, + -0.017508862540125847, + -0.0012546892976388335, + 0.016330145299434662, + -0.0351405069231987, + 0.0017527280142530799, + -0.019399721175432205, + -0.016821278259158134, + 0.02034515142440796, + 0.025833552703261375, + 0.011873120442032814, + 0.01759481057524681, + -0.007360843475908041, + 0.017238739877939224, + -0.0038062743842601776, + 0.03410913050174713, + -0.006556614767760038, + -0.020001357421278954, + 0.0014710943214595318, + 0.0006818295805715024, + 0.0038185527082532644, + -0.004214528016746044, + 0.0031018066219985485, + -0.019129598513245583, + -0.00024921121075749397, + 0.007993176579475403, + 0.0011280692415311933, + -0.011068891733884811, + -0.006025577895343304, + 0.009884035214781761, + -0.025145968422293663, + -0.010154157876968384, + -0.02143792062997818, + -0.0024157564621418715, + 0.003631308674812317, + 0.013984989374876022, + 0.006783763412386179, + 0.003195428755134344, + -0.006249656900763512, + -0.01715279184281826, + 0.009300815872848034, + -0.01070668175816536, + -0.009816505014896393, + 0.027724411338567734, + -0.0017496583750471473, + -0.0005452334880828857, + 0.009951566345989704, + -0.004871417302638292, + 0.013039559125900269, + -0.012965889647603035, + 0.005770802963525057, + 0.006384718231856823, + -0.007538879290223122, + 0.00257383962161839, + -0.013321960344910622, + 0.01219849567860365, + -0.02296043001115322, + -0.018748970702290535, + -0.010970665141940117, + 0.0021379597019404173, + 0.006943381391465664, + -0.00588744692504406, + 0.015789899975061417, + 0.026422912254929543, + 0.016993174329400063, + -0.012063434347510338, + -0.014979531988501549, + -0.012462479062378407, + -0.01715279184281826, + 0.006384718231856823, + 0.01113642193377018, + -0.012683488428592682, + -0.024360155686736107, + 0.002309856005012989, + -0.013899040408432484, + 0.004806956276297569, + -0.07033012807369232, + 0.0044785114005208015, + -0.005126192234456539, + -0.008809683844447136, + -0.014255112037062645, + -1.4064893548493274e-5, + 0.01415688544511795, + 0.0047916085459291935, + 0.005298088304698467, + -0.009632330387830734, + -0.003576056333258748, + -0.011185535229742527, + -0.016416093334555626, + -0.006998633500188589, + -0.017054565250873566, + 0.02059071697294712, + 0.005586628802120686, + -0.004938947968184948, + -0.0015010227216407657, + 0.01648976281285286, + 0.0005882075056433678, + -0.015581168234348297, + -0.00259993108920753, + -0.008312412537634373, + -0.012965889647603035, + 0.016109135001897812, + -0.025563430041074753, + 0.014733965508639812, + -0.0026321616023778915, + -0.005202931817620993, + 0.0004236015083733946, + 0.010559341870248318, + 0.003290585707873106, + 0.0014304225333034992, + -0.0025723048020154238, + 0.005522167310118675, + -0.0016253405483439565, + 0.0045951553620398045, + -0.008171211928129196, + -0.0035607083700597286, + -0.007471348159015179, + -0.0007217340753413737, + 0.020259203389286995, + -0.020701222121715546, + -0.004011936020106077, + 0.00014196790289133787, + 0.008533421903848648, + 0.0036927000619471073, + 0.001010657986626029, + -0.010184853337705135, + 0.019780348986387253, + 0.011866981163620949, + -0.004199180286377668, + -0.011191674508154392, + 0.011013639159500599, + -0.0007351635140366852, + -0.004984991624951363, + -0.0016652450431138277, + -0.0029529323801398277, + 0.006421553436666727, + -0.00944201648235321, + 0.020664386451244354, + -0.028338328003883362, + -0.014991809614002705, + 0.009822643361985683, + 0.008115959353744984, + -0.007907228544354439, + 0.022592080757021904, + -0.00024364760611206293, + -0.024998627603054047, + 0.004711799323558807, + 0.008115959353744984, + -0.021057292819023132, + 0.024261929094791412, + -0.03067120537161827, + 0.006710093468427658, + 0.004625851288437843, + 0.005310366861522198, + -0.008072985336184502, + 0.0019844810012727976, + 0.012806272134184837, + 0.020824003964662552, + -0.002016711514443159, + 0.012247608974575996, + 0.011860841885209084, + -0.01038744580000639, + -0.009319232776761055, + -0.0009277794160880148, + 0.0009016880067065358, + 0.0008740618359297514, + -0.006083900108933449, + -0.018049107864499092, + 0.0018509543733671308, + 0.011811729520559311, + -0.008103680796921253, + 0.0036282390356063843, + -0.015974074602127075, + 0.006501362193375826, + 0.00987175665795803, + -0.006043995264917612, + 0.02740517631173134, + -0.01307639479637146, + 0.013088672421872616, + -0.028804901987314224, + 0.043219633400440216, + -0.025440646335482597, + -0.015777621418237686, + 0.03518962115049362, + 0.0067714848555624485, + -0.0068144588731229305, + -0.009583217091858387, + 0.01909276284277439, + -0.0030757153872400522, + -0.017950881272554398, + -0.02399180643260479, + 0.026938600465655327, + 0.0016253405483439565, + 0.026103675365447998, + -0.0009047575877048075, + 0.0026736008003354073, + -0.012622097507119179, + -0.01993996649980545, + -0.001778819365426898, + 0.0014618856366723776, + -0.015028645284473896, + -0.0163055881857872, + 0.01221077423542738, + -0.011167118325829506, + -0.009343789890408516, + 0.014169164001941681, + 0.016023186966776848, + 0.00388608337379992, + 0.005958047229796648, + -0.01102591771632433, + 0.001952250488102436, + 0.010504089295864105, + -0.008582535199820995, + -0.01563028246164322, + -0.009435877203941345, + -0.0012585262302309275, + 0.011167118325829506, + 0.008072985336184502, + 0.009828782640397549, + 0.02294815145432949, + 0.01822100393474102, + -0.02163437195122242, + -0.020099584013223648, + 0.01274488028138876, + -0.004054910037666559, + 0.005869029555469751, + -0.007974758744239807, + 0.014365616254508495, + -0.002741131465882063, + 0.007195086684077978, + 0.02232195809483528, + 0.011019778437912464, + -0.013150064274668694, + -0.0024326390121132135, + 0.0002657101722434163, + -0.013604361563920975, + -0.012929054908454418, + -0.0035514996852725744, + -0.0122291911393404, + 0.018982259556651115, + -0.006347883492708206, + -0.010252384468913078, + -0.007066164165735245, + -0.02168348617851734, + 0.0059488387778401375, + -0.03906956687569618, + -0.009546381421387196, + -0.010577759705483913, + 0.000880968349520117, + -0.021511590108275414, + -0.00847203005105257, + -0.03130967542529106, + 0.03212004527449608, + -0.005021826829761267, + 0.007250338792800903, + -0.007274895440787077, + -0.011866981163620949, + -0.0011925303842872381, + -0.0025769092608243227, + 0.014242833480238914, + 0.007944063283503056, + 0.013211456127464771, + -0.01651431992650032, + 0.009171893820166588, + -0.006240448448807001, + -0.008336968719959259, + 0.005598906893283129, + 0.004849930293858051, + 0.01094610895961523, + -0.01017257571220398, + -0.005298088304698467, + -0.012032738886773586, + -0.005512958858162165, + 0.016416093334555626, + 0.0010459580225870013, + -0.00424215430393815, + 0.0201609767973423, + 0.0024203609209507704, + 0.008447473868727684, + 0.006446110084652901, + 0.009478851221501827, + -0.025587987154722214, + -0.005258183926343918, + 0.03447747975587845, + 0.0031140849459916353, + -0.011523189023137093, + 0.01631786674261093, + 0.0072135040536522865, + 0.011498631909489632, + 0.009085945785045624, + -0.004263641312718391, + 0.015261932276189327, + -0.001967598218470812, + 0.010418141260743141, + -0.006851294077932835, + -0.026938600465655327, + -0.0035514996852725744, + 0.001990620046854019, + 0.010025235824286938, + 0.006010230164974928, + -0.012302861548960209, + -0.012953611090779305, + 0.012806272134184837, + -0.028166430070996284, + 0.01158458087593317, + 0.001174880308099091, + 0.021523868665099144, + -0.009356068447232246, + 0.013285125605762005, + 0.0025753744412213564, + -0.003766370005905628, + 0.007520461454987526, + 0.003130967728793621, + 0.021081849932670593, + -0.010798769071698189, + -0.005070939660072327, + -0.027380619198083878, + -0.0227516982704401, + -0.00214102934114635, + 0.009613912552595139, + 0.012149382382631302, + -0.017680758610367775, + -0.00739153940230608, + -0.03111322410404682, + 0.02103273570537567, + 0.01996452361345291, + -0.019768070429563522, + -0.008656204678118229, + -0.012272165156900883, + -0.0022131644655019045, + -0.03344610333442688, + 0.0034440644085407257, + -0.0008732944261282682, + 0.012364252470433712, + -0.028633005917072296, + -0.0017696106806397438, + -0.01415688544511795, + 0.024532053619623184, + 0.0013022676575928926, + 0.004739425610750914, + -0.010092766024172306, + -0.009356068447232246, + 0.008717596530914307, + 0.010847882367670536, + 0.009509546682238579, + 0.01062687300145626, + 0.0014733965508639812, + -0.012259887531399727, + 0.01084174308925867, + -0.022457018494606018, + 0.00017160849529318511, + 0.010227827355265617, + 0.0037203263491392136, + -0.007532740011811256, + -0.02681581676006317, + 0.0007305591134354472, + -0.017226461321115494, + -0.03251295164227486, + -0.006888128817081451, + 0.025121411308646202, + -0.01839290000498295, + 0.011744198389351368, + -0.004352658987045288, + 0.001614597043953836, + -0.01030763704329729, + 0.0013398700393736362, + 0.014844470657408237, + -0.010547063313424587, + -9.175154991680756e-5, + -0.0007175134378485382, + 0.008570256642997265, + 0.048965878784656525, + 0.013997267000377178, + -0.007207364775240421, + -0.017521141096949577, + -0.01588812656700611, + 0.018466569483280182, + 0.016342423856258392, + -0.01737380027770996, + 0.021560702472925186, + 0.006102317478507757, + -0.01952250488102436, + 0.0057677337899804115, + 0.009927009232342243, + -0.002159446943551302, + 0.05063572898507118, + -0.014856748282909393, + -0.00781514123082161, + -0.007600270677357912, + 0.009540243074297905, + 0.017005451023578644, + -0.010467254556715488, + -0.020087307319045067, + 0.018798084929585457, + 0.014242833480238914, + -0.018356066197156906, + 0.002133355475962162, + 0.010768073610961437, + 0.03965892270207405, + -0.013751701451838017, + 0.021155519410967827, + 0.0005954977823421359, + -0.010092766024172306, + -0.021941330283880234, + -0.008422916755080223, + 0.0037847873754799366, + 0.006261935457587242, + -0.00310948072001338, + 0.008060706779360771, + -0.03089221380650997, + -0.025440646335482597, + -0.013039559125900269, + 0.011854703538119793, + 0.0020044331904500723, + 0.014230554923415184, + 0.0042820586822927, + 0.02531786449253559, + 0.012879941612482071, + 0.01996452361345291, + -0.03401090204715729, + 0.0020182463340461254, + -0.0019200198585167527, + 0.013849928043782711, + 0.016600267961621284, + -0.014377894811332226, + -0.002936049597337842, + -0.024581165984272957, + -0.008091403171420097, + -0.0415252260863781, + 0.014120050705969334, + -0.023095490410923958, + -0.01946111209690571, + -0.0033581163734197617, + -0.00041822975617833436, + 0.02593177929520607, + -0.006142221856862307, + -0.004021144937723875, + 0.01674760691821575, + 0.008251020684838295, + -0.03816097229719162, + 0.015728509053587914, + 0.0011418823851272464, + -0.009718278422951698, + -0.0009346859296783805, + -0.012180077843368053, + -0.013027281500399113, + -0.015372437424957752, + -0.022665750235319138, + -0.03897133842110634, + -0.020210089161992073, + -0.0011457193177193403, + 0.0008602486923336983, + 0.009951566345989704, + -0.014807634986937046, + -0.011811729520559311, + 0.010031375102698803, + 0.015470664016902447, + -0.005328784231096506, + 0.005273531656712294, + 0.021744877099990845, + 0.0008932466735132039, + -0.012020460329949856, + -0.001540927216410637, + -0.015298767946660519, + 0.02014869824051857, + 0.007035468704998493, + 0.011535467579960823, + 0.005291949491947889, + 0.0017082191770896316, + 0.003502386389300227, + 0.030572978779673576, + 0.016575710847973824, + 0.0007850441033951938, + 0.008422916755080223, + 0.021351972594857216, + -0.010098905302584171, + -0.001183321583084762, + 0.01017257571220398, + -0.009116641245782375, + -0.020860839635133743, + -0.02379535511136055, + 0.0005517562967725098, + -0.029517045244574547, + 0.01339563075453043, + 0.013223733752965927, + 0.0009745904244482517, + -0.010786490514874458, + -0.009767391718924046, + 0.0026444399263709784, + 0.014377894811332226, + 0.0209836233407259, + 0.008527282625436783, + -0.004380285274237394, + -0.0010505624813959002, + -0.012259887531399727, + 0.024495217949151993, + -0.009067527949810028, + -0.014009545557200909, + 0.0035852650180459023, + 0.010448837652802467, + -0.007207364775240421, + -0.00042590367957018316, + 0.015593446791172028, + 0.0014519095420837402, + 0.020652107894420624, + -0.00791336689144373, + 0.006111525930464268, + 0.0016176666831597686, + -0.010872438549995422, + -0.000859481340739876, + 0.014562069438397884, + 0.004214528016746044, + -0.0004903647932223976, + -0.02509685419499874, + -0.007766027469187975, + 0.01477080024778843, + 0.01651431992650032, + 0.019424278289079666, + -0.00578615115955472, + 0.015200541354715824, + -0.026643920689821243, + -0.0007796723512001336, + 0.011424962431192398, + 0.002236186293885112, + -0.015974074602127075, + 0.011289901100099087, + 0.013039559125900269, + 0.01802455075085163, + 0.013960432261228561, + 0.00112730183172971, + 0.01758253201842308, + 0.012622097507119179, + -0.01648976281285286, + 0.02339017018675804, + -0.004410980734974146, + 0.009024553932249546, + 0.00803001131862402, + 0.002948327921330929, + 0.03184992074966431, + 0.025133689865469933, + -0.007035468704998493, + 0.0028516361489892006, + -0.006820598151534796, + -0.0005989510682411492, + 0.009024553932249546, + 0.017828097566962242, + 0.001614597043953836, + 0.0029529323801398277, + -0.011977486312389374, + -0.00964460801333189, + -0.0031401764135807753, + -0.02718416601419449, + -0.007403817493468523, + -0.027503402903676033, + 0.01863846555352211, + -0.020443378016352654, + 0.02659480832517147, + 0.01754569821059704, + -0.004917460959404707, + -0.0013291265349835157, + 0.02912413887679577, + 0.001795702031813562, + 0.015495220199227333, + -0.005190653260797262, + 0.006148361135274172, + -0.0019921548664569855, + -0.007348565384745598, + -0.02078717015683651, + -0.008674622513353825, + -0.01672305166721344, + 0.0005847542779520154, + -0.008091403171420097, + 0.011173257604241371, + 0.014623461291193962, + -0.010148018598556519, + 0.005601976532489061, + -0.017091400921344757, + -0.02359890192747116, + -0.009994540363550186, + 0.012554566375911236, + -0.023304222151637077, + 0.006980216130614281, + 0.011246927082538605, + -0.007023190148174763, + -0.020001357421278954, + 0.011959068477153778, + 0.003864596365019679, + 0.0154215507209301, + -0.0012493175454437733, + -0.0018678370397537947, + -0.0009231750154867768, + 0.007158251479268074, + -0.007176668848842382, + -0.002180933952331543, + -0.012560705654323101, + 0.00781514123082161, + -8.378983329748735e-5, + -0.04464391618967056, + -0.007066164165735245, + 0.022407906129956245, + -0.043735321611166, + -0.028854016214609146, + -0.009343789890408516, + -0.0005348736303858459, + -0.0008165072649717331, + -0.0012769437162205577, + 0.004914391320198774, + 0.01992768794298172, + -0.0002822091628331691, + -0.01694406010210514, + -0.027969978749752045, + 0.002007502829656005, + 0.00035376864252611995, + -0.030081845819950104, + -0.0003721860994119197, + 0.003018928226083517, + 0.016993174329400063, + 0.012658932246267796, + 0.03430558368563652, + 0.00659958878532052, + 0.0004512277082540095, + 3.2086663850350305e-5, + -0.006937242113053799, + 0.0011940650874748826, + -0.02571077086031437, + 0.009024553932249546, + 0.00866848323494196, + -0.012137103825807571, + 0.0025891875848174095, + -0.028166430070996284, + 0.004309684969484806, + -0.008177351206541061, + 0.013444744050502777, + -0.005181444343179464, + 0.0016483623767271638, + -0.0035177343524992466, + 0.02529330737888813, + -0.008447473868727684, + 0.03413368761539459, + 0.0028040579054504633, + -0.004438607022166252, + -0.0346984900534153, + -0.02142564207315445, + -0.009159615263342857, + -0.0010873973369598389, + 0.002483287127688527, + -0.014193720184266567, + -0.01563028246164322, + -0.0020627551712095737, + 0.00429433723911643, + 0.0031770113855600357, + 0.02292359434068203, + -0.019252382218837738, + -0.014193720184266567, + -0.008957022801041603, + 0.02118007466197014, + 0.003910640254616737, + -0.03236561268568039, + 0.013444744050502777, + -0.02100817859172821, + 0.0085641173645854, + -0.020099584013223648, + -0.024618001654744148, + -0.015274210833013058, + -0.013162342831492424, + 0.0028562406077980995, + -0.002615278819575906, + -0.02976261079311371, + 0.005344131961464882, + 0.003035810776054859, + -0.002431104425340891, + -0.0018325370037928224, + -0.014918140135705471, + 0.002162516349926591, + 0.0008042289409786463, + 0.0035944737028330564, + 0.010516367852687836, + -0.004051840398460627, + -0.0030081847216933966, + 0.0022269776090979576, + -0.011001360602676868, + 0.006452248897403479, + 0.011517049744725227, + 0.030351968482136726, + -0.002214699285104871, + 0.003778648329898715, + -0.024372434243559837, + -0.025440646335482597, + -0.02639835514128208, + 0.009067527949810028, + 0.005132331512868404, + -0.018773527815937996, + -0.005611185450106859, + -0.006446110084652901, + -0.02508457563817501, + 0.008103680796921253, + 0.014721686951816082, + -0.023402448743581772, + 0.014746244065463543, + -0.006734650116413832, + 0.008650065399706364, + -0.018527962267398834, + 0.01061459444463253, + 0.015175984241068363, + -0.016673937439918518, + -0.004288197960704565, + -0.01930149458348751, + 0.013579805381596088, + 0.0030757153872400522, + 0.006624145433306694, + -0.02124146744608879, + 0.011167118325829506, + -0.03022918663918972, + 0.01403410267084837, + 0.022592080757021904, + -0.0071705300360918045, + -0.0034225773997604847, + -0.010896995663642883, + 0.02312004752457142, + -0.007152112666517496, + -0.0024986350908875465, + -0.004929739516228437, + 0.010952247306704521, + -0.025342421606183052, + -0.020381985232234, + 0.006783763412386179, + -0.0029959063977003098, + -0.013432465493679047, + 0.0005003408878110349, + -0.020283758640289307, + 0.009251702576875687, + -0.00476705189794302, + 0.006120734848082066, + 0.00518758362159133, + -0.007471348159015179, + -0.007023190148174763, + 0.0009807295864447951, + 0.016330145299434662, + 0.015581168234348297, + -0.000514154031407088, + -0.017042286694049835, + -0.02782263793051243, + 0.00046619187924079597, + 0.0032046374399214983, + 0.003104876261204481, + 0.0038400397170335054, + 0.0201609767973423, + -0.004091745242476463, + -0.0026321616023778915, + 0.0019292286597192287, + -0.022457018494606018, + 0.00942973792552948, + -0.00600102124735713, + 0.0012700371444225311, + 0.014021824114024639, + 0.006452248897403479, + 0.003984309732913971, + -0.013960432261228561, + 0.005792290437966585, + -0.022825367748737335, + -0.00964460801333189, + -0.02679126150906086, + -0.012407226487994194, + -0.0032261244487017393, + -0.015212819911539555, + -0.010148018598556519, + -0.004923600237816572, + 0.0018340717069804668, + 0.009276258759200573, + 0.017398357391357422, + 0.016624825075268745, + 0.002880797255784273, + -0.0028562406077980995, + -0.032463837414979935, + -0.0274297334253788, + 0.009466572664678097, + 0.014807634986937046, + -0.01158458087593317, + -0.014291946776211262, + -0.032881300896406174, + 0.01862618885934353, + 0.004239084664732218, + 0.012904497794806957, + -0.0029851628933101892, + 0.01114870049059391, + 0.005954977590590715, + -0.02012414112687111, + 0.012830828316509724, + -0.006746928207576275, + -0.0142673896625638, + -0.010062070563435555, + -0.005328784231096506, + 0.002447986975312233, + -0.009331511333584785, + 0.0122291911393404, + -0.015802178531885147, + 0.026324685662984848, + 0.010982943698763847, + 0.0036282390356063843, + 0.028854016214609146, + 0.024961793795228004, + 0.006624145433306694, + 0.0007693125517107546, + 0.002366643166169524, + 0.03403545916080475, + 0.030548421666026115, + -0.001027540653012693, + 0.003250681096687913, + 0.019375164061784744, + 0.01553205493837595, + 0.027920864522457123, + 0.013923597522079945, + -0.009847200475633144, + 0.015753064304590225, + -0.006148361135274172, + 0.02100817859172821, + 0.01775442808866501, + -0.006071621552109718, + 0.004914391320198774, + 0.02526875026524067, + -0.03214460238814354, + -0.0032261244487017393, + 0.005328784231096506, + -0.002421895507723093, + 0.03919234871864319, + 0.00745293078944087, + -0.011154839769005775, + 0.011977486312389374, + -0.0020228507928550243, + -0.009791947901248932, + -0.008422916755080223, + -0.0016591058811172843, + 0.021290579810738564, + -0.0002559259010013193, + -0.02075033448636532, + -0.007053886074572802, + -0.004410980734974146, + -0.01006820984184742, + 0.016845833510160446, + 0.00974897388368845, + 0.005844472907483578, + -0.013727144338190556, + 0.008815823122859001, + -0.01604774408042431, + 0.01824556104838848, + 0.000902455416508019, + 0.02337789162993431, + 0.025416091084480286, + -0.018270118162035942, + 0.006636423524469137, + -0.000824948598165065, + 0.004257502034306526, + -0.012444062158465385, + -0.002962141064926982, + -0.019362887367606163, + -0.010596176609396935, + 0.014623461291193962, + -0.0015324859414249659, + 0.0010352145181968808, + 0.005055591929703951, + 0.00535334087908268, + 0.007047746796160936, + 0.0013114764587953687, + -0.005233627278357744, + 0.009509546682238579, + 0.01169508509337902, + -0.004150066990405321, + -0.003947474993765354, + 0.011259205639362335, + -0.011627554893493652, + 0.010405863635241985, + -0.011099587194621563, + 0.0169072262942791, + 0.01242564432322979, + 0.003950544632971287, + 0.004091745242476463, + 0.009595494717359543, + -0.01626875437796116, + -0.005021826829761267, + -0.0007436048472300172, + -0.011406544595956802, + -0.025133689865469933, + -0.0109338304027915, + 0.017852654680609703, + 0.020455654710531235, + 0.0062588658183813095, + 0.009632330387830734 + ], + "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4": [ + -0.000248385826125741, + -0.022984717041254044, + -0.004291978664696217, + 0.023613907396793365, + -0.012866305187344551, + -0.0014196914853528142, + -0.005935578607022762, + 0.01348265539854765, + -0.013251523487269878, + 0.057320546358823776, + 0.015537154860794544, + -0.001873126020655036, + 0.009675409644842148, + -0.016307592391967773, + 0.009925802238285542, + 0.024769563227891922, + -0.03081749752163887, + 0.002879509935155511, + 0.0037013099063187838, + -0.023267211392521858, + 0.02727348543703556, + 0.005678765941411257, + -0.03872732073068619, + 0.0257454514503479, + 0.03389924764633179, + -0.020570678636431694, + -0.0029084014240652323, + -0.002921242034062743, + -0.014805239625275135, + -0.0065872399136424065, + 0.028942765668034554, + 0.022894833236932755, + 0.00040347647154703736, + 0.0014574108645319939, + -0.0019100428326055408, + -0.034412872046232224, + -0.018862877041101456, + 0.010734761133790016, + -0.00019571919983718544, + 0.010548572055995464, + -0.01642315834760666, + 0.00023554520157631487, + 0.008782986551523209, + -0.02623339369893074, + -0.024024806916713715, + 0.010156933218240738, + -0.03718644753098488, + -0.01593521423637867, + 0.012596651911735535, + -0.008898552507162094, + 0.004420384764671326, + -0.013046073727309704, + 0.028711635619401932, + 0.016602925956249237, + 0.018066758289933205, + -0.021122826263308525, + -0.014394339174032211, + 0.044865138828754425, + 0.015909532085061073, + -0.05285200849175453, + 0.02423025667667389, + -0.027324847877025604, + -0.0009799001272767782, + -0.029302304610610008, + 0.0337965227663517, + -0.004308029543608427, + -0.003110641147941351, + -0.003466968424618244, + -0.01098515372723341, + -0.006709225941449404, + -0.005486156325787306, + -0.018310729414224625, + -0.01561419852077961, + -0.019273776561021805, + 0.053879257291555405, + -0.0015978551236912608, + 0.03839346393942833, + 0.0330004021525383, + 0.00977171491831541, + -0.029815929010510445, + -0.009373655542731285, + 0.011396053247153759, + -0.02206019125878811, + -0.02863459102809429, + 0.05737190693616867, + -0.0037783535663038492, + -0.05932368338108063, + -0.04370948299765587, + -0.0075759682804346085, + -0.01081822533160448, + 0.01331572700291872, + 0.023806516081094742, + -0.0033128808718174696, + -0.0021700654178857803, + 0.008680261671543121, + -0.013546857982873917, + 0.032307010143995285, + -0.0018506549531593919, + -0.012115128338336945, + -0.042939044535160065, + -0.020493635907769203, + 0.007710794452577829, + -0.0011620764853432775, + -0.012172911316156387, + 0.02503921650350094, + -0.010002845898270607, + 0.008943494409322739, + -0.010831066407263279, + -0.015716923400759697, + 0.04368380084633827, + -0.03646737337112427, + -0.05351972207427025, + 0.02325437031686306, + -0.02719644084572792, + -0.044377196580171585, + -0.055317409336566925, + 0.0012511583045125008, + -0.013906395994126797, + -0.006230912636965513, + -0.02760734222829342, + 0.04874300956726074, + 0.0013225842267274857, + 0.005280706565827131, + 0.014445701614022255, + -0.012763580307364464, + 0.027658704668283463, + 0.01755313202738762, + 0.021431000903248787, + 0.055882394313812256, + 0.009405757300555706, + -0.04450560361146927, + -0.005986941047012806, + 0.015498632565140724, + 0.027299165725708008, + -0.01576828584074974, + -0.0006568781682290137, + 0.015228980220854282, + 0.03734053298830986, + -0.004956481046974659, + 0.009251669049263, + -0.0213154349476099, + 0.030766135081648827, + -0.02614350989460945, + 0.004757451359182596, + 0.002669244771823287, + -0.008096013218164444, + -0.044146064668893814, + 0.06368949264287949, + -0.013790830038487911, + 0.03074045293033123, + -0.047202132642269135, + -0.0070495023392140865, + -0.03323153406381607, + 0.02358822524547577, + 0.03854755312204361, + -0.004821654409170151, + -0.014009120874106884, + 0.050823189318180084, + 0.030920222401618958, + 0.031510889530181885, + 0.010073469020426273, + -0.03734053298830986, + 0.02904549054801464, + 0.014830920845270157, + 0.05015547573566437, + 0.009765294380486012, + 0.0305863656103611, + 0.05598511919379234, + -0.021264072507619858, + 0.023036079481244087, + 0.019492067396640778, + -0.026271916925907135, + 0.0009173020953312516, + -0.013521176762878895, + 0.008352825418114662, + -0.033924929797649384, + 0.013816511258482933, + 0.013046073727309704, + 0.06132682040333748, + -0.01906832680106163, + -0.024679679423570633, + -0.01876015216112137, + -0.01002210658043623, + 0.004449276253581047, + 0.023562544956803322, + 0.03549148514866829, + 0.02462831698358059, + 0.023446979001164436, + -0.026734178885817528, + -0.00041571518522687256, + 0.029636159539222717, + -0.03202451765537262, + 0.01268011610955, + 0.012275636196136475, + -0.009309452027082443, + -0.02245825156569481, + 0.02493649162352085, + -0.015177617780864239, + -0.005200452636927366, + 0.03184474632143974, + 0.007094444707036018, + -0.006722066551446915, + -0.028146646916866302, + 0.038419146090745926, + -0.04111567884683609, + 0.00021006457973271608, + -0.01287272572517395, + -0.00824368093162775, + 0.002345019020140171, + -0.03032955341041088, + 0.051054321229457855, + -0.027324847877025604, + 0.005710867699235678, + 0.0029902602545917034, + 0.007479663472622633, + 0.0018249736167490482, + -0.0059708901681005955, + 0.01255171000957489, + 0.0045263199135661125, + -0.028018241748213768, + 0.007453982252627611, + -0.030278190970420837, + -0.006410681642591953, + -0.02316448464989662, + -0.03433582931756973, + -0.0011869551381096244, + -0.03040659800171852, + 0.01680837757885456, + -0.015871010720729828, + -0.036903951317071915, + 0.02623339369893074, + -0.0029998908285051584, + 0.007749316282570362, + -0.0005806369590573013, + 0.045353084802627563, + 0.04640601575374603, + 0.04311881586909294, + 0.001778426463715732, + 0.05007843300700188, + -0.007864882238209248, + 0.00138839241117239, + -0.0028730896301567554, + -0.002356254495680332, + -0.030457960441708565, + -0.01408616453409195, + -0.013135958462953568, + -0.027555977925658226, + 0.043658122420310974, + 0.025783972814679146, + -0.012005982920527458, + -0.0033738738857209682, + -0.005922737997025251, + 0.049128226935863495, + -0.016371795907616615, + -0.016705650836229324, + 0.022188598290085793, + 0.037212129682302475, + -0.014355817809700966, + -0.013328567147254944, + 0.0026580090634524822, + 0.004160362295806408, + 0.030149785801768303, + 0.019119689241051674, + 0.018503338098526, + 0.04833211004734039, + -0.012924088165163994, + 0.03533739596605301, + -0.006651442963629961, + -0.00587458536028862, + 0.022548135370016098, + 0.022997558116912842, + -0.008089592680335045, + -0.004141101147979498, + 0.009347974322736263, + 0.0018939920701086521, + 0.0132772047072649, + -0.002436508424580097, + -0.04119272157549858, + 0.0053834314458072186, + 0.003131507197394967, + -0.0021556196734309196, + -0.04016547277569771, + 0.04717645049095154, + -0.00010693832155084237, + 0.028762998059391975, + 0.036980997771024704, + -0.0281723290681839, + -0.034156057983636856, + -0.07447561621665955, + -0.023613907396793365, + 0.001884361612610519, + -0.005502207204699516, + -0.006551928352564573, + 0.0041924635879695415, + 0.013932077214121819, + 0.008153796195983887, + -0.030920222401618958, + 0.010099150240421295, + -0.010189034976065159, + -0.005354539956897497, + 0.00046266373828984797, + 0.004263087175786495, + -0.01005420833826065, + -0.027735747396945953, + 0.00464509567245841, + -0.00603830348700285, + 0.03613351657986641, + 0.02453843131661415, + -0.03289767727255821, + 0.024281619116663933, + 0.011986722238361835, + -0.03639032691717148, + -0.01811812072992325, + -0.010805385187268257, + 0.017976872622966766, + 0.017347682267427444, + -0.011498779058456421, + 0.024743882939219475, + -0.014638311229646206, + 0.013097436167299747, + -0.00663860235363245, + 0.020737607032060623, + -0.02259949781000614, + 0.027555977925658226, + 0.028608910739421844, + -0.07206158339977264, + 0.024011965841054916, + -0.010580673813819885, + 0.005014263559132814, + -0.006850472651422024, + 0.0018121330067515373, + 0.010137672536075115, + -0.02453843131661415, + -0.006246963515877724, + -0.049205269664525986, + -0.019915807992219925, + -0.03369379788637161, + -0.035440120846033096, + -0.029327984899282455, + -0.032229967415332794, + -0.017668697983026505, + -0.021276913583278656, + 0.020301027223467827, + -0.003466968424618244, + -0.026271916925907135, + -0.019055485725402832, + 0.04152657836675644, + 0.035594210028648376, + -0.013097436167299747, + 0.003688469296321273, + 0.0007740488508716226, + 0.015588517300784588, + 0.00712012592703104, + -0.00957268476486206, + 0.02832641638815403, + -0.007094444707036018, + 0.01900412328541279, + 0.02076328918337822, + 0.023472661152482033, + 0.001502352999523282, + 0.011421735398471355, + -0.03926662728190422, + -0.016795536503195763, + -0.01641031727194786, + -0.04150089621543884, + 0.015511473640799522, + 0.012185752391815186, + 0.008057491853833199, + -0.030535003170371056, + -8.251104009104893e-5, + -0.01296260952949524, + -0.027247803285717964, + -0.028300734236836433, + 0.0022150075528770685, + 0.05102863907814026, + -0.04835778847336769, + 0.016859740018844604, + -0.0011997957481071353, + -0.03187042847275734, + 0.03484945371747017, + -0.015601358376443386, + -0.01786130852997303, + 0.017013827338814735, + 0.007620910182595253, + 0.003377084154635668, + 0.008551855571568012, + 0.006346478126943111, + -0.0378541573882103, + -0.028506185859441757, + -0.021764857694506645, + -0.014959326945245266, + 0.020095575600862503, + -0.012770000845193863, + 0.0019212783081457019, + 0.019684676080942154, + -0.003688469296321273, + 0.013996279798448086, + 0.016127822920680046, + -0.0029148217290639877, + -0.018208004534244537, + 0.025706928223371506, + -0.016538724303245544, + -0.0036852590274065733, + -0.021931786090135574, + -0.011132820509374142, + -0.052903369069099426, + 0.02461547590792179, + -0.009476380422711372, + 0.04810097813606262, + -0.013418451882898808, + 0.03240973502397537, + 0.0038425566162914038, + 0.009123262949287891, + 0.009116843342781067, + 0.03081749752163887, + 0.00877656601369381, + -0.006137818098068237, + 0.02809528447687626, + -0.044942185282707214, + 0.007293474394828081, + 0.043581075966358185, + 0.02832641638815403, + -0.041629303246736526, + 0.005800751969218254, + 0.011954620480537415, + 0.013713786378502846, + 0.02519330382347107, + 0.029071172699332237, + -0.012904826551675797, + 0.023446979001164436, + 0.00977171491831541, + 0.03074045293033123, + -0.034952178597450256, + 0.013187320902943611, + -0.020968738943338394, + -0.01802823506295681, + -0.01924809440970421, + -0.011376792564988136, + -0.015318864025175571, + 0.0072421119548380375, + 0.006510196253657341, + 0.02670849859714508, + 0.0015697663184255362, + -0.020339548587799072, + -0.025296028703451157, + 0.0007190749165602028, + -0.01665428839623928, + 0.013816511258482933, + 0.003826505970209837, + -0.036647140979766846, + 0.012320579029619694, + 0.02082749269902706, + -0.028377778828144073, + 0.012166490778326988, + 0.014214570634067059, + -0.02342129871249199, + 0.07103433459997177, + 0.00031860798480920494, + 0.0018025025492534041, + -0.04756167158484459, + -0.008397768251597881, + -0.01666712947189808, + 0.015151936560869217, + -0.027735747396945953, + -0.0024011966306716204, + -0.02968752197921276, + 0.012545289471745491, + 0.06009411811828613, + 0.011986722238361835, + -0.014227411709725857, + 0.02405048906803131, + -0.007505344692617655, + -0.051927484571933746, + 0.006105716805905104, + 0.011408894322812557, + -0.03425878286361694, + 0.001966220559552312, + 0.0032085508573800325, + 0.013546857982873917, + -0.01763017661869526, + 0.00667712464928627, + -0.003492649644613266, + 0.0009518112638033926, + 0.04483946040272713, + 0.009624047204852104, + 0.0039228107780218124, + -0.02075044810771942, + -0.04383789002895355, + -0.03374515846371651, + -0.006535877473652363, + 0.007396199274808168, + 0.015267501585185528, + 0.007152227684855461, + 0.019761720672249794, + 0.009842338040471077, + 0.012282056733965874, + 0.028043922036886215, + -0.001399628003127873, + -0.009380076080560684, + -0.000802940281573683, + 0.008770146407186985, + -0.03353970870375633, + 0.006863313261419535, + 0.011550141498446465, + -0.02783847227692604, + 0.052030209451913834, + -0.002950133290141821, + -0.0009028563508763909, + -0.019260935485363007, + 0.017270639538764954, + -0.032949041575193405, + 0.03261518478393555, + -0.0434783510863781, + -0.022432569414377213, + 0.006561558693647385, + -0.011004414409399033, + -0.0014245066558942199, + -0.021944625303149223, + 0.03972889110445976, + -0.020660564303398132, + 0.02123839221894741, + -0.01299471128731966, + -0.01331572700291872, + -0.009238828904926777, + -0.00094779854407534, + 0.005919527728110552, + -0.014959326945245266, + -0.011351111344993114, + -0.0008587167249061167, + 0.0027350529562681913, + -0.02519330382347107, + 0.012057345360517502, + -0.0027318426873534918, + -0.01786130852997303, + 0.02493649162352085, + -0.025719769299030304, + -0.0010657717939466238, + -0.010400905273854733, + 0.006519826594740152, + -0.030072741210460663, + -0.005537519231438637, + 0.03330857679247856, + -0.009649728424847126, + -0.015472951345145702, + 0.005540729034692049, + -0.0036948896013200283, + 0.001062561641447246, + 0.01763017661869526, + -0.013855033554136753, + -0.014394339174032211, + -0.04378652572631836, + 0.039549119770526886, + -0.0297645665705204, + -0.0036210559774190187, + -0.004137890879064798, + -0.03002137877047062, + 0.02357538603246212, + -0.010028527118265629, + 0.00913610402494669, + -0.04774143919348717, + -0.0070495023392140865, + 0.014458542689681053, + -0.002524787560105324, + 0.012115128338336945, + -0.028994128108024597, + 0.026605771854519844, + -0.027941197156906128, + 0.005473315715789795, + 0.023280050605535507, + 0.0185161791741848, + 0.01955627091228962, + 0.007325576152652502, + 0.020776130259037018, + 0.000889213231857866, + -0.026939628645777702, + 0.012506768107414246, + 0.029636159539222717, + -0.03823937848210335, + -0.03228132799267769, + 0.006760588381439447, + -0.004584102891385555, + -0.019941488280892372, + 0.022419730201363564, + -0.01529318280518055, + 0.029713204130530357, + 0.0189013984054327, + 0.0006299930973909795, + -0.006551928352564573, + -0.011922519654035568, + 0.024101851508021355, + 0.006301536224782467, + -0.0075759682804346085, + -0.018477657809853554, + -0.006715646479278803, + -0.0148822832852602, + 0.015575677156448364, + 0.01436865795403719, + 0.009238828904926777, + 0.0029324775096029043, + 0.015793967992067337, + 0.05059205740690231, + 0.03936935216188431, + -0.008461970835924149, + -0.03885572776198387, + -0.022804947569966316, + 0.023305732756853104, + -0.011357531882822514, + -0.006086455658078194, + 0.02896844781935215, + 0.0011532484786584973, + 0.043966297060251236, + -0.027633022516965866, + 0.02252245508134365, + -0.024975012987852097, + 0.009694671258330345, + 0.03266654536128044, + 0.02340845763683319, + 0.016923941671848297, + 0.05010411515831947, + -0.04417174682021141, + 0.020493635907769203, + -0.01113924104720354, + 0.00400627451017499, + -0.027710067108273506, + -0.016923941671848297, + 0.03723780810832977, + -0.027170760557055473, + -0.03274359181523323, + -0.013546857982873917, + 0.008667421527206898, + -0.02501353621482849, + 0.004089738707989454, + -0.018477657809853554, + -0.004211724735796452, + 0.022227119654417038, + -0.012127969413995743, + 0.017501769587397575, + -0.00957910530269146, + -0.011216284707188606, + -0.011633605696260929, + -0.003897129325196147, + -0.02164929173886776, + 0.007479663472622633, + 0.03156225383281708, + -0.014805239625275135, + 0.050489332526922226, + -0.018053917214274406, + 0.012975450605154037, + 0.014150367118418217, + 0.021610770374536514, + 0.012448985129594803, + 0.012660855427384377, + -0.03341130167245865, + 0.03192179277539253, + 0.016590086743235588, + -0.03330857679247856, + -0.015434429980814457, + 0.03764870762825012, + -0.01348265539854765, + -0.02462831698358059, + 0.026374641805887222, + -0.049770258367061615, + 0.036647140979766846, + -0.0013354248367249966, + 0.013546857982873917, + 0.01251960825175047, + -0.016230547800660133, + 0.023369936272501945, + -0.011325430124998093, + 0.06800394505262375, + -0.011550141498446465, + -0.0015440849820151925, + 0.0022406887728720903, + 0.031896110624074936, + -0.004153941757977009, + 0.0028522235807031393, + -0.00014285194629337639, + 0.022073032334446907, + 0.0008699522586539388, + -0.002465399680659175, + -0.025385912507772446, + -0.017655856907367706, + -0.058707334101200104, + 0.03197315335273743, + -0.008590376935899258, + -0.0040319557301700115, + -0.007877722382545471, + -0.02085317298769951, + -0.027889834716916084, + -0.01348265539854765, + 0.005964469630271196, + 0.039882976561784744, + -0.028660273179411888, + -0.0185161791741848, + -0.01190967857837677, + 0.033436983823776245, + -0.011344690807163715, + -0.014060483314096928, + 0.005823222920298576, + -0.01142815500497818, + -0.03282063454389572, + 0.0036050050985068083, + -0.031099991872906685, + 0.004208514466881752, + 0.010201876051723957, + 0.024332981556653976, + -0.01899128220975399, + -0.024358663707971573, + -0.008795827627182007, + -0.02099441923201084, + 0.0072228508070111275, + -0.0011307774111628532, + -0.02776142954826355, + -0.016217708587646484, + -0.006901835557073355, + -0.005733338650316, + -0.026092147454619408, + 0.023832198232412338, + 0.008885711431503296, + 0.007691533770412207, + -0.01666712947189808, + 0.020134098827838898, + -0.006468464154750109, + -0.028608910739421844, + -0.038984134793281555, + 0.045096270740032196, + -0.017000986263155937, + -0.006571189500391483, + 0.0012222669320181012, + -0.002049684524536133, + 0.011062197387218475, + -0.00524860480800271, + 0.03772575408220291, + -0.0024236678145825863, + 0.01650020107626915, + -0.039240945130586624, + 0.019671835005283356, + 0.002219822956249118, + 0.00941217690706253, + -0.018798673525452614, + 0.004410754423588514, + -0.017232118174433708, + -0.007184328977018595, + -0.032717909663915634, + -0.00480881379917264, + -0.009148944169282913, + -0.010882428847253323, + -0.001757560414262116, + -0.00916820578277111, + 0.0016596505884081125, + 0.0281723290681839, + -0.029302304610610008, + 0.03497786074876785, + -0.012538868933916092, + 0.017103711143136024, + 0.024808084592223167, + -0.012018823996186256, + 0.009591946378350258, + -0.010458688251674175, + 0.06255952268838882, + 0.00030636927112936974, + -0.00941859744489193, + -0.013238683342933655, + -0.029559116810560226, + -0.0001675300154602155, + -0.019363660365343094, + 0.022188598290085793, + 0.01899128220975399, + 0.030201148241758347, + 0.024820925667881966, + 0.024448547512292862, + -0.009643308818340302, + 0.029713204130530357, + 0.009540583938360214, + -0.03823937848210335, + -0.03744325786828995, + -0.00509130721911788, + 0.006157079245895147, + 0.005348119884729385, + -0.019517747685313225, + -0.03564557060599327, + -0.049282316118478775, + 0.05788553133606911, + -0.017090870067477226, + 0.015049210749566555, + -0.007916244678199291, + 0.036493051797151566, + 0.004911538679152727, + 0.0012294896878302097, + -0.01239762268960476, + -0.0022134026512503624, + -0.023280050605535507, + 0.017912670969963074, + 0.004234195686876774, + 0.01892707869410515, + 0.0022968666162341833, + -0.0016163135878741741, + -0.005498997401446104, + -0.01922241412103176, + -0.011113559827208519, + 0.014741036109626293, + -0.018323570489883423, + 0.03508058562874794, + 0.02742757275700569, + 0.017527451738715172, + -0.023755153641104698, + -0.010426586493849754, + -0.025167623534798622, + -0.034798089414834976, + 0.02968752197921276, + 0.01452274527400732, + 0.03184474632143974, + 0.007453982252627611, + -0.0007186736911535263, + -0.016949623823165894, + -0.01811812072992325, + 0.04481377825140953, + 0.015498632565140724, + 0.02742757275700569, + 0.011646445840597153, + -0.01883719488978386, + -0.035440120846033096, + 0.03844482824206352, + 0.005479736253619194, + -0.012500347569584846, + -0.013187320902943611, + -7.945136167109013e-5, + -0.007344836834818125, + 0.017450407147407532, + 0.011505198664963245, + -0.026939628645777702, + -0.031587935984134674, + -0.007055922877043486, + 0.02091737650334835, + 0.005399482324719429, + 0.010606355033814907, + -0.03312880918383598, + -0.020737607032060623, + -0.05357108265161514, + 0.012943348847329617, + -0.02994433417916298, + -0.029482072219252586, + 0.005633823573589325, + -0.01303323358297348, + -0.012969030067324638, + 0.03949775919318199, + -0.000606318237259984, + 0.009437858127057552, + 0.009335133247077465, + 0.021508045494556427, + 0.032717909663915634, + -0.011672127060592175, + 0.008904973044991493, + 0.0189142394810915, + -0.034798089414834976, + 0.011261227540671825, + 0.011967461556196213, + 0.0053834314458072186, + 0.01520329900085926, + 0.010811805725097656, + 0.00632079690694809, + -0.001979061169549823, + -0.0281723290681839, + 0.002128333318978548, + 0.001699777552857995, + -0.005399482324719429, + 0.008025390096008778, + 0.01021471619606018, + 0.012628753669559956, + 0.04152657836675644, + -0.020403752103447914, + -0.021032942458987236, + 0.05244110897183418, + -0.005309598054736853, + 0.001432532095350325, + -0.03685259073972702, + 0.014805239625275135, + -0.001039288006722927, + -0.034798089414834976, + 0.0402168333530426, + 0.003598584793508053, + -0.01714223250746727, + 0.003434866899624467, + -0.0075759682804346085, + -0.023151645436882973, + 0.02832641638815403, + 0.011087878607213497, + 0.014818079769611359, + -0.006102506536990404, + 0.003157188417389989, + -0.011633605696260929, + -0.006632182281464338, + -0.014907964505255222, + -0.021764857694506645, + -0.020172620192170143, + 0.006147448904812336, + 0.006914676167070866, + -0.0054155332036316395, + -0.02227848209440708, + 0.030689090490341187, + -0.0037815638352185488, + -0.022586656734347343, + -0.01947922632098198, + -0.010131251998245716, + 0.0330004021525383, + -0.013142379000782967, + 0.01529318280518055, + -0.008417028933763504, + 0.007319155614823103, + -0.007351257372647524, + 0.0017880569212138653, + -0.00018548683146946132, + -0.00973319262266159, + -0.0032791742123663425, + 0.031202716752886772, + 0.005823222920298576, + -0.022663701325654984, + -0.008628899231553078, + 0.001861890428699553, + -0.024897970259189606, + 0.015472951345145702, + 0.021944625303149223, + -0.005441214423626661, + -0.0032422575168311596, + 0.0007531828596256673, + -0.0016371795209124684, + -0.006863313261419535, + 0.0023032869212329388, + -0.00948922149837017, + 0.019094007089734077, + -0.024037647992372513, + -0.018503338098526, + -0.0011925729922950268, + -0.014586948789656162, + 0.02510342001914978, + -0.016269071027636528, + -0.04447992146015167, + 0.003030387219041586, + -0.03043227829039097, + 0.00789056345820427, + 0.008943494409322739, + -0.03269222751259804, + 0.027222122997045517, + -0.010490790009498596, + 0.0017768213292583823, + -0.0037944044452160597, + 0.013662423938512802, + 0.03636464849114418, + -0.026297597214579582, + -0.031896110624074936, + -0.0043658120557665825, + 0.0069082556292414665, + -0.018156642094254494, + 0.009964324533939362, + 0.027093715965747833, + 0.017899829894304276, + -0.016127822920680046, + 0.015549995936453342, + -0.02206019125878811, + 0.006025462877005339, + 0.004715719260275364, + -0.024127531796693802, + 0.02589953877031803, + 0.002359464531764388, + -0.014009120874106884, + 0.010612775571644306, + -0.017039507627487183, + 0.007999708876013756, + -0.009322293102741241, + -0.006407471373677254, + -0.001560938311740756, + -0.02753029763698578, + -0.023190166801214218, + -0.006462044082581997, + -0.01501068938523531, + -0.02317732572555542, + -0.03685259073972702, + -0.0011420130031183362, + 0.00785204116255045, + 0.008982016704976559, + 0.0394207164645195, + -0.002495896304026246, + -0.005897056311368942, + -0.03710940480232239, + -0.010266078636050224, + 0.004054427146911621, + -0.03839346393942833, + 0.0012993105920031667, + 0.013328567147254944, + 0.0052421847358345985, + -0.007364097982645035, + -0.029970016330480576, + -0.019980011507868767, + 0.01408616453409195, + 0.0034188160207122564, + 0.008738044649362564, + 0.006474884692579508, + -0.011678547598421574, + -0.013213002122938633, + -0.03502922132611275, + 0.010901689529418945, + 0.008417028933763504, + -0.012885565869510174, + 0.02678554132580757, + 0.032384052872657776, + 0.03179338574409485, + -0.01657724566757679, + -0.005627403501421213, + 0.008956335484981537, + 0.0015216139145195484, + -0.032871998846530914, + -0.027299165725708008, + -0.01924809440970421, + -0.009810236282646656, + -0.01874731108546257, + 0.013200161047279835, + 0.03531171381473541, + -0.018041076138615608, + -0.00011927735613426194, + 0.025231825187802315, + -0.011620764620602131, + -0.0265544094145298, + -0.00929661188274622, + 0.015460111200809479, + -0.007203590124845505, + 0.020134098827838898, + 0.011351111344993114, + -0.00993864331394434, + 0.004291978664696217, + -0.01602509804069996, + -0.006458833813667297, + -0.03276927396655083, + -0.003893919289112091, + -0.016127822920680046, + 0.00681837135925889, + 0.0030608836095780134, + -0.006645022891461849, + -0.06471674144268036, + -0.04039660096168518, + 0.015973735600709915, + 0.018503338098526, + 0.001617918605916202, + -0.02968752197921276, + -0.005165141075849533, + 0.023203007876873016, + 0.03248677775263786, + 0.008070331998169422, + 0.011209865100681782, + -0.008423449471592903, + -0.011049357242882252, + 0.012699376791715622, + 0.014330136589705944, + -0.00837208703160286, + 0.01070266030728817, + -0.017039507627487183, + 0.026348959654569626, + -0.03107430972158909, + -0.005579250864684582, + 0.009065480902791023, + -0.016230547800660133, + 0.0030127314385026693, + -0.02632327936589718, + 0.02197030745446682, + 0.01484376098960638, + 0.0009486011113040149, + -0.003897129325196147, + -0.029019810259342194, + -0.004555211402475834, + -0.006397841032594442, + 0.012628753669559956, + -0.02261233888566494, + -0.01947922632098198, + 0.003958122339099646, + -0.008423449471592903, + -0.02453843131661415, + 0.03823937848210335, + 0.02284347079694271, + 0.0025055266451090574, + -0.01034312229603529, + -0.008872871287167072, + 0.00816663634032011, + -0.005649874452501535, + -0.006593660451471806, + -0.0036242660135030746, + -0.06384358555078506, + 0.003893919289112091, + 0.0032133660279214382, + 0.010747602209448814, + -0.00047430055565200746, + 0.01005420833826065, + -0.014034802094101906, + 0.0008835954358801246, + -0.01424025185406208, + 0.0025970162823796272, + 0.002511946950107813, + 0.0039709629490971565, + 0.011254807002842426, + 0.03913822025060654, + -0.003954912070184946, + -0.0034156059846282005, + -0.023832198232412338, + -0.01050363015383482, + -0.014599788933992386, + 0.020776130259037018, + 0.017090870067477226, + 0.03251245990395546, + -0.022021669894456863, + 0.016757013276219368, + -0.00011275673023192212, + -0.009720352478325367, + 0.022907672449946404, + 0.03387356549501419, + 0.012782840989530087, + 0.016230547800660133, + 0.001491117407567799, + 0.011280488222837448, + -0.012410462833940983, + -0.002425272949039936, + -0.009322293102741241, + 0.010625616647303104, + 0.023151645436882973, + -0.03307744860649109, + -0.011813374236226082, + -0.004259876906871796, + -0.009842338040471077, + -0.030355235561728477, + 0.017026666551828384, + 0.031202716752886772, + 0.010529311373829842, + 0.008378506638109684, + 0.016153505071997643, + -0.01567840203642845, + 0.015562836080789566, + 0.005630613770335913, + -0.04216860979795456, + -0.020378069952130318, + -0.01584533043205738, + -0.008821508847177029, + -0.009245249442756176, + 0.009399336762726307, + -0.015383067540824413, + 0.002218217821791768, + -0.017655856907367706, + -0.008943494409322739, + -0.008063911460340023, + -0.007909824140369892, + -0.01801539584994316, + -0.019132530316710472, + -0.011928939260542393, + -0.01299471128731966, + 0.010529311373829842, + -0.01424025185406208, + -0.0072100101970136166, + 0.02678554132580757, + 0.010131251998245716, + 0.024987854063510895, + -0.007608069572597742, + -0.013174479827284813, + 0.03130543977022171, + 0.007306315004825592, + -0.029430709779262543, + 0.011646445840597153, + 0.001040090573951602, + -0.03854755312204361, + 0.012442564591765404, + 0.01680837757885456, + 0.02405048906803131, + -0.0035921644885092974, + -0.013431292958557606, + -0.00941859744489193, + -0.015883851796388626, + -0.004320870153605938, + 0.03397629037499428, + -0.00054331892170012, + 0.012744319625198841, + 0.04039660096168518, + -0.01316163968294859, + -0.01956911012530327, + -0.010567833669483662, + -0.012083027511835098, + 0.013174479827284813, + -0.014111845754086971, + 0.014484223909676075, + -0.014330136589705944, + -0.0020898114889860153, + -0.009065480902791023, + -0.013238683342933655, + -0.005742968991398811, + 0.009399336762726307, + 0.016384636983275414, + 0.03567125275731087, + -0.015087733045220375, + -0.01376514881849289, + -0.013906395994126797, + -0.0014253092231228948, + 0.0065872399136424065, + -0.0008763725636526942, + -0.01738620549440384, + 0.00760164950042963, + 0.017437567934393883, + 0.0013595010386779904, + -0.010034947656095028, + 0.0014694489073008299, + 0.011505198664963245, + 0.01746324822306633, + -0.019376501441001892, + -0.005775070749223232, + -0.014317295514047146, + 0.0049211690202355385, + -0.026836903765797615, + -0.01544727012515068, + -0.013431292958557606, + -0.0045584216713905334, + -0.02896844781935215, + -0.016269071027636528, + 0.008519753813743591, + -0.011665706522762775, + -0.030457960441708565, + 0.013200161047279835, + 0.0016740963328629732, + 0.012763580307364464, + 0.003250282956287265, + 0.034156057983636856, + 0.02550147846341133, + -0.0024477439001202583, + -0.024076169356703758, + 0.011819793842732906, + 0.0059516290202736855, + 0.0001699376298347488, + -0.012776420451700687, + 0.010490790009498596, + 0.005906687118113041, + 0.0012214643647894263, + 0.023678110912442207, + 0.025296028703451157, + -0.029636159539222717, + -0.007864882238209248, + 0.004102579317986965, + -0.0257454514503479, + 0.013662423938512802, + 0.007633750792592764, + -0.003926020581275225, + -0.014111845754086971, + -0.03282063454389572, + 0.00217167055234313, + 0.021135667338967323, + -0.02711939811706543, + 0.0132772047072649, + 0.001318571506999433, + -0.009662569500505924, + 0.0040512168779969215, + -0.01049720961600542, + 0.0007094444590620697, + 0.015421588905155659, + -0.012429723516106606, + 0.002685295417904854, + -0.03744325786828995, + 0.0046996683813631535, + 0.003733411431312561, + -0.0035921644885092974, + 0.009912962093949318, + 0.015126255340874195, + 0.026348959654569626, + 0.008962755091488361, + -0.020326707512140274, + -0.01203166414052248, + 0.015036370605230331, + -0.00013593003677669913, + -0.007608069572597742, + -0.018875716254115105, + -0.03749462217092514, + -0.0034733887296169996, + -0.0015440849820151925, + 0.03156225383281708, + -0.02308744192123413, + 0.032717909663915634, + -0.003438076935708523, + -0.013367089442908764, + 0.015665560960769653, + -0.013572539202868938, + -0.009264510124921799, + 0.028018241748213768, + 0.012429723516106606, + -0.019658995792269707, + -0.01786130852997303, + -0.008500493131577969, + 0.030483640730381012, + 0.006683544721454382, + 0.005611352622509003, + 0.0032855947501957417, + 0.0016355745028704405, + -0.009225987829267979, + -0.007364097982645035, + 0.029302304610610008, + -0.00710086477920413, + 0.02035238966345787, + -0.020724767819046974, + -0.025231825187802315, + -0.004885857459157705, + 0.003178054466843605, + -0.02783847227692604, + 0.009977164678275585, + -0.016448838636279106, + -0.010189034976065159, + 0.03330857679247856, + 0.026117829605937004, + 0.0002847007126547396, + 0.008352825418114662, + 0.0069082556292414665, + -0.016525883227586746, + -0.00018267793348059058, + -0.004108999855816364, + -0.009540583938360214, + -0.0027703645173460245, + 0.0025745450984686613, + 0.005052785389125347, + -0.009193887002766132, + -0.0281723290681839, + 0.015344545245170593, + -0.008872871287167072, + 0.006230912636965513, + 0.0037398317363113165, + -0.002962973900139332, + 0.005360960494726896, + -0.01980024203658104, + 0.015639880672097206, + -0.009810236282646656, + 0.0241403728723526, + 0.034644003957509995, + 0.010715500451624393, + -0.0016692811623215675, + 0.009020538069307804, + -0.008179477415978909, + 0.017835626378655434, + 0.03315449133515358, + 0.021058622747659683, + -0.001003976329229772, + 0.029559116810560226, + -0.002682085381820798, + -0.014612630009651184, + 0.006250173784792423, + -0.002057709963992238, + -0.00020484808192122728, + -0.0019036225276067853, + 0.0020978369284421206, + 0.010972312651574612, + -0.0023626748006790876, + -0.0016379820881411433, + 0.011402473784983158, + -0.03261518478393555, + -0.017155073583126068, + 0.006850472651422024, + 0.0028297523967921734, + 0.0002654397685546428, + -0.01348265539854765, + -0.003179659601300955, + -0.025154782459139824, + -0.02141815982758999, + 0.015318864025175571, + 0.019196731969714165, + 0.013816511258482933, + -0.039703208953142166, + -0.022432569414377213, + -0.01689826138317585, + 0.00018408238247502595, + -0.0018939920701086521, + -0.004510269034653902, + 0.0038104550912976265, + 0.01827220804989338, + 0.000444606615928933, + -0.004105789586901665, + 0.007158647757023573, + 0.013970598578453064, + -0.009848758578300476, + 0.0031170614529401064, + -0.023125963285565376, + 0.0036242660135030746, + 0.008346405811607838, + 0.010837486945092678, + -0.01914536952972412, + 0.01795119233429432, + 0.00494685024023056, + 0.016757013276219368, + 0.0001303122699027881, + 0.018387774005532265, + -0.009784555062651634, + -0.033180173486471176, + 0.003913179971277714, + -0.004388283006846905, + 0.007864882238209248, + -0.019620472565293312, + 0.0293793473392725, + 0.01114566158503294, + 0.011550141498446465, + -0.009990005753934383, + -0.0052421847358345985, + -0.011961041018366814, + -0.021687813103199005, + -0.0011026886058971286, + -0.0016580455703660846, + 0.03613351657986641, + 0.002934082644060254, + -0.008603218011558056, + -0.009039798751473427, + -0.021597929298877716, + 0.001190967857837677, + -0.012725058011710644, + -0.0009662569500505924, + -0.018939919769763947, + -0.02027534507215023, + 0.026605771854519844, + -0.010163353756070137, + 0.015254661440849304, + -0.04604647681117058, + 0.001641994807869196, + 0.009880860336124897, + -0.02203451097011566, + 0.007267793174833059, + -0.02760734222829342, + -0.0213282760232687, + -0.008038230240345001, + -0.014612630009651184, + -0.024602634832262993, + 0.011049357242882252, + 0.014959326945245266, + -0.0026885056868195534, + 0.015973735600709915, + -0.012917667627334595, + -0.011890417896211147, + 0.015601358376443386, + 0.02453843131661415, + -0.014471382834017277, + 0.002335388446226716, + 0.0004963703686371446, + -0.004962901119142771, + -0.04250246658921242, + 0.002972604474052787, + -0.0330004021525383, + 0.01248108595609665, + -0.0086481599137187, + 0.01359822042286396, + -0.032229967415332794, + 0.019376501441001892, + 0.01954342983663082, + 0.029353667050600052, + -0.008057491853833199, + -0.023446979001164436, + -0.012731478549540043, + 0.008879291824996471, + -0.009225987829267979, + -0.013752307742834091, + -0.007659432012587786, + 0.006876153871417046, + 0.022548135370016098, + 0.02640032209455967, + 0.014959326945245266, + -0.022342685610055923, + -0.008943494409322739, + 0.008269362151622772, + -0.009880860336124897, + -0.012538868933916092, + -0.037700071930885315, + 0.003974173218011856, + 0.005624193232506514, + -0.016448838636279106, + -0.006246963515877724, + -0.016192026436328888, + 0.01102367602288723, + 0.010484369471669197, + -0.012474666349589825, + -0.0026644293684512377, + 0.03885572776198387, + -0.011100719682872295, + 0.02270222268998623, + 0.02398628555238247, + 0.012924088165163994, + -0.010426586493849754, + -0.012911247089505196, + 0.009726773016154766, + -0.0042727175168693066, + -0.005283916834741831, + 0.007864882238209248, + -0.011363952420651913, + -0.005986941047012806, + -0.025052057579159737, + 0.006632182281464338, + 0.02155940793454647, + 0.02799255959689617, + -0.00217167055234313, + -0.007929084822535515, + -0.02261233888566494, + -0.012615912593901157, + 0.02028818614780903, + 0.012314158491790295, + 0.012448985129594803, + -0.0213154349476099, + 0.020557839423418045, + 0.032717909663915634, + -0.012615912593901157, + 0.010246817953884602, + 0.005200452636927366, + -0.025848176330327988, + 0.024114690721035004, + 0.017578814178705215, + -0.0070623429492115974, + -0.027247803285717964, + -0.003906759899109602, + 0.03264086693525314, + -0.022085873410105705, + 0.0015167987439781427, + 0.0154857924208045, + -0.007306315004825592, + -0.036647140979766846, + -0.0011283698258921504, + 0.03978025168180466, + 0.008275781758129597, + -0.0176943801343441, + -0.011479517444968224, + -0.024653997272253036, + -5.093614527140744e-5, + 0.0033032505307346582, + 0.0065134065225720406, + 0.007518185302615166, + 0.023601066321134567, + -0.005550359841436148, + -0.0036114254035055637, + 0.03261518478393555, + -0.011928939260542393, + 0.008063911460340023, + -0.0013442528434097767, + 0.011351111344993114, + 0.013379930518567562, + 0.009906541556119919, + -0.01737336441874504, + -0.02245825156569481, + -0.0025263926945626736, + 0.027812791988253593, + -0.003800824750214815, + -0.007126546464860439, + -0.011973882094025612, + 0.01484376098960638, + -0.0018297889037057757, + -0.03484945371747017, + -0.005072046536952257, + 0.035542845726013184, + -0.009790975600481033, + -0.011858316138386726, + -0.01859322376549244, + -0.0024477439001202583, + 0.0019341189181432128, + 0.014163208194077015, + 0.0027462884318083525, + -0.005360960494726896, + -0.005190822295844555, + -0.006773428991436958, + -0.01552431471645832, + 0.012692956253886223, + -0.0017848467687144876, + -0.011319009587168694, + 0.0020480796229094267, + -0.014432861469686031, + 0.015228980220854282, + 0.011633605696260929, + -0.005454055033624172, + -0.013431292958557606, + -0.02157224901020527, + -0.013367089442908764, + 0.000555356964468956, + -0.00760164950042963, + 0.019094007089734077, + 0.010593514889478683, + 0.009084741584956646, + -0.0013025207445025444, + 0.02776142954826355, + 0.002892350545153022, + -0.021841900423169136, + -0.005203662905842066, + 0.0009261299856007099, + -0.008860030211508274, + -0.018079597502946854, + -0.005165141075849533, + -0.004908328410238028, + 0.07288338243961334, + 0.02082749269902706, + -0.015549995936453342, + 0.010619196109473705, + 0.009116843342781067, + 0.010721920989453793, + -0.0005196440033614635, + -0.004673987161368132, + 0.0173091609030962, + 0.009527742862701416, + -0.002499106340110302, + -0.013944917358458042, + -0.014227411709725857, + -0.02366526983678341, + -0.020493635907769203, + 0.008949914947152138, + -0.003608215367421508, + 0.0047799223102629185, + 0.0022326635662466288, + 0.019209573045372963, + 0.006539087742567062, + 0.00649735564365983, + -0.02919957786798477, + 0.03176770359277725, + 0.009354394860565662, + -0.008160216733813286, + -0.0035215411335229874, + 0.0015103784389793873, + 0.020172620192170143, + 0.01811812072992325, + -0.007794258650392294, + -0.014330136589705944, + -0.008468391373753548, + 0.005328858736902475, + 0.016371795907616615, + -0.0042727175168693066, + -0.01602509804069996, + 0.01303323358297348, + -0.006625761743634939, + 0.029738884419202805, + -0.018310729414224625, + -0.014574107713997364, + 0.025938060134649277, + -0.0005633823457174003, + -0.03130543977022171, + 0.019171051681041718, + 0.014214570634067059, + 0.0013129537692293525, + -0.005216503515839577, + -0.0075759682804346085, + -0.018708789721131325, + -0.012436144053936005, + -0.0007636158261448145, + -0.0012543684570118785, + -9.404753654962406e-5, + -0.010227557271718979, + 0.010195455513894558, + -0.019581951200962067, + 0.015190457925200462, + -0.003179659601300955, + 0.004439645912498236, + 0.0033899247646331787, + 0.002996680559590459, + -0.02325437031686306, + 0.018567541614174843, + 0.010439427569508553, + 0.00231291726231575, + 0.01219859253615141, + 0.014497064054012299, + 0.025809653103351593, + 0.005540729034692049, + 0.014227411709725857, + -0.016127822920680046, + -0.01552431471645832, + -0.01533170510083437, + 0.011845475994050503, + 0.0002564112073741853, + 0.006420311983674765, + -0.0006211652071215212, + 0.010529311373829842, + -0.011556561104953289, + -0.0016805166378617287, + -0.005014263559132814, + -0.018708789721131325, + 0.010189034976065159, + -0.0043048192746937275, + -0.002300076652318239, + -0.0053352792747318745, + 0.008738044649362564, + -0.019132530316710472, + 0.0006580819608643651, + 0.005919527728110552, + -0.014959326945245266, + 0.017078028991818428, + -0.006991719827055931, + -0.01825936697423458, + -0.019273776561021805, + 0.015190457925200462, + 0.015575677156448364, + -0.0142787741497159, + 0.010458688251674175, + 0.009713931940495968, + -0.0049404301680624485, + 0.013932077214121819, + -0.0068889944814145565, + 0.008224419318139553, + 0.003028782084584236, + 0.022650860249996185, + -0.022804947569966316, + 0.02004421316087246, + -0.0009389705955982208, + -0.003688469296321273, + 0.0036017950624227524, + -0.0006857695407234132, + -0.028043922036886215, + 0.012224273756146431, + 0.025462957099080086, + -0.008063911460340023, + -0.022869151085615158, + -0.005367380566895008, + -0.009232408367097378, + -0.003179659601300955, + 0.0027125817723572254, + 0.004927589558064938, + -0.010965893045067787, + -0.008827928453683853, + -0.016076460480690002, + -0.010015686973929405, + -0.006102506536990404, + -0.013611061498522758, + -0.0010497210314497352, + 0.009681830182671547, + 0.003354612970724702, + -0.014599788933992386, + 0.003447707509621978, + -0.002808886580169201, + -0.0021235181484371424, + -0.010773283429443836, + 0.015883851796388626, + -0.009502061642706394, + -0.004189253319054842, + 0.03289767727255821, + -0.004407544154673815, + 0.01380367111414671, + -0.002378725679591298, + 0.010034947656095028, + -0.0069275167770683765, + -0.03122839704155922, + 0.02188042365014553, + 0.011684968136250973, + 0.025719769299030304, + -0.0027960457373410463, + 0.011171342805027962, + -0.01859322376549244, + 0.00697887921705842, + 0.0064331525936722755, + -0.010554992593824863, + 0.00961120706051588, + 0.0007716412656009197, + -0.01825936697423458, + -0.007665852550417185, + -0.010355963371694088, + -0.004770291969180107, + -0.013572539202868938, + -0.011241965927183628, + 0.004754241090267897, + 0.02735052816569805, + 0.021700654178857803, + 0.0007447561947628856, + -0.004978951998054981, + -0.02405048906803131, + 0.009148944169282913, + 0.006410681642591953, + -0.02945639193058014, + 0.010009266436100006, + 0.011607923544943333, + 0.003942071460187435, + 0.0189013984054327, + -0.014946485869586468, + -2.3361408238997683e-5, + 0.003585744183510542, + -0.01576828584074974, + 0.010580673813819885, + -0.0015192063292488456, + 0.0011861526872962713, + 0.0015103784389793873, + 0.014381499029695988, + -0.03192179277539253, + -0.0072228508070111275, + 0.011473097838461399, + 0.003476598998531699, + 0.0176943801343441, + 0.017565973103046417, + 0.010420165956020355, + -0.010118411853909492, + 0.005762230139225721, + 0.026605771854519844, + 0.03212724253535271, + 0.0025970162823796272, + 0.010201876051723957, + 0.006317587103694677, + 0.007768577430397272, + -0.005348119884729385, + 0.004028745926916599, + 0.007787838578224182, + -0.015113414265215397, + 1.1241815627727192e-5, + -0.027889834716916084, + 0.010009266436100006, + 0.015139095485210419, + -0.035131946206092834, + -0.003073724452406168, + 0.008738044649362564, + -0.008834348991513252, + -0.007498924154788256, + 0.01359822042286396, + 0.0032550981268286705, + -0.014895123429596424, + 0.036005109548568726, + -0.000150275431224145, + 0.019748879596590996, + 0.02229132317006588, + 0.006259804125875235, + -0.02140532061457634, + 0.001003976329229772, + 0.00772363506257534, + -0.004173202905803919, + 0.008185897953808308, + -0.004728559870272875, + -0.009463539347052574, + 0.0491025447845459, + -0.009887279942631721, + -0.004876227118074894, + 0.016513042151927948, + 0.02308744192123413, + 0.016371795907616615, + 0.013469814322888851, + 0.0038907090201973915, + 0.010593514889478683, + 0.0037013099063187838, + -0.005521468352526426, + 0.01376514881849289, + -0.032307010143995285, + -0.004189253319054842, + -6.445391045417637e-5, + 0.018374932929873466, + 0.008712363429367542, + -0.022188598290085793, + -0.014394339174032211, + -1.7154270608443767e-5, + 0.008904973044991493, + -0.009213147684931755, + -0.008571116253733635, + 0.02213723585009575, + 0.016923941671848297, + 0.0017864517867565155, + 0.012018823996186256, + 0.0007933097658678889, + -0.008115273900330067, + 0.01996717043220997, + -0.01656440459191799, + -0.0016901470953598619, + 0.004157152026891708, + 0.003364243544638157, + 0.0007929085404612124, + 0.008603218011558056, + -0.021443841978907585, + 0.012705797329545021, + 0.00018669063865672797, + -0.008089592680335045, + -0.005438004154711962, + -0.02036522887647152, + 0.018708789721131325, + 0.010388065129518509, + -0.004118630196899176, + 0.0012110313400626183, + 0.03246109560132027, + -0.010169774293899536, + 0.008551855571568012, + -0.0006456426344811916, + -0.003547222353518009, + 0.029584797099232674, + -0.017424726858735085, + -0.025706928223371506, + 0.001491919974796474, + -0.033591073006391525, + -0.009084741584956646, + 0.01094663143157959, + 0.0038907090201973915, + -0.002231058431789279, + 0.004118630196899176, + -0.026015104725956917, + 0.005421953275799751, + 0.0020384490489959717, + -0.004349761176854372, + 0.0012447379995137453, + -0.009803816676139832, + 0.013405611738562584, + 0.013572539202868938, + -0.0032791742123663425, + 0.017681539058685303, + -0.018529020249843597, + -0.02042943239212036, + -0.03341130167245865, + 0.0189142394810915, + 0.0053160181269049644, + 0.011684968136250973, + -0.02100726030766964, + -0.01923525519669056, + 0.029892971739172935, + 0.009213147684931755, + 0.00123671256005764, + -0.008641740307211876, + 0.015986576676368713, + -0.01567840203642845, + -0.014163208194077015, + 0.01664144918322563, + 0.013842192478477955, + -0.0016050779959186912, + 0.0013498705811798573, + 0.006519826594740152, + 0.00128165481146425, + 0.012083027511835098, + -0.004914748948067427, + 0.005701236892491579, + 0.02028818614780903, + 0.015537154860794544, + -0.003945281729102135, + 0.028660273179411888, + -0.021533725783228874, + 0.007961186580359936, + 0.0057782805524766445, + -0.016397476196289062, + 0.01666712947189808, + -0.016050780192017555, + 0.016294751316308975, + -0.012981871142983437, + -0.0014012331375852227, + -0.01899128220975399, + 0.005617773160338402, + -0.0036692083813250065, + 0.014676833525300026, + -0.005129829049110413, + -0.004044796340167522, + 0.0069403573870658875, + 0.047510307282209396, + 0.02986729145050049, + -0.00543158408254385, + 0.006715646479278803, + 0.01858038268983364, + 0.0008972386131063104, + -0.0005794331664219499, + 0.003948491998016834, + -0.023305732756853104, + -0.003457338083535433, + -0.01827220804989338, + 0.01395775843411684, + 0.00913610402494669, + -0.025719769299030304, + 0.0027591290418058634, + -0.009104002267122269, + 0.015575677156448364, + -0.0058585344813764095, + 0.0069275167770683765, + 0.009880860336124897, + 0.0017174334498122334, + 0.00379119417630136, + 0.009014117531478405, + -0.027299165725708008, + 0.022933354601264, + 0.022021669894456863, + -0.004917958751320839, + 0.0072228508070111275, + -0.018965601921081543, + 0.00509130721911788, + 0.0285575482994318, + -0.0011163317831233144, + 0.009283770807087421, + -0.010606355033814907, + -0.0039838035590946674, + 0.03133112192153931, + -0.013855033554136753, + -0.009726773016154766, + -0.009341553784906864, + 0.00603509321808815, + 0.02035238966345787, + 0.0026772699784487486, + 0.002751103602349758, + -0.001964615425094962, + 0.015100574120879173, + 0.006324007175862789, + 0.03759734705090523, + 0.019992850720882416, + -0.006709225941449404, + 0.0004995805211365223, + -0.01819516345858574, + -0.007267793174833059, + 0.004876227118074894, + -0.017886988818645477, + -0.003527961438521743, + 0.021456683054566383, + 0.0036242660135030746, + -0.008391347713768482, + 0.0006773429340682924, + 0.01641031727194786, + -0.027093715965747833, + 0.03692963346838951, + 0.008128114975988865, + 0.0001590030442457646, + -0.004420384764671326, + 0.010285339318215847, + 0.0013482655631378293, + -0.009014117531478405, + -0.0051619308069348335, + 0.009341553784906864, + 0.008757305331528187, + 0.004873016849160194, + -0.0025039217434823513, + -0.010073469020426273, + 0.006953197997063398, + -0.0028185169212520123, + 0.0029196368996053934, + 0.00480560353025794, + 0.0038778684101998806, + -0.01963331364095211, + 0.027247803285717964, + 0.032307010143995285, + 0.01070266030728817, + -0.006375369615852833, + -0.0019549850840121508, + -0.012821363285183907, + 0.000983110279776156, + -0.015601358376443386, + 0.012121548876166344, + 0.0008234049892053008, + -0.006651442963629961, + 0.021520884707570076, + -0.03032955341041088, + -0.002285631140694022, + 0.01882435381412506, + -0.006600080523639917, + -0.02188042365014553, + 0.008481232449412346, + 0.01239120215177536, + -0.01617918536067009, + 0.021212710067629814, + 0.002059315098449588, + 0.01915821060538292, + 0.0065743993036448956, + -0.013135958462953568, + -0.008680261671543121, + 0.026194872334599495, + -0.0005449239979498088, + -0.0014389524003490806, + -0.02953343465924263, + -0.041012953966856, + -0.014753877185285091, + 0.022804947569966316, + 0.021983148530125618, + -0.011505198664963245, + -0.002588990842923522, + 0.002877904800698161, + 0.0019758509006351233, + 0.010895268991589546, + 0.00316842389293015, + -0.001559333293698728, + 0.014599788933992386, + 0.00837208703160286, + 0.004115419927984476, + -0.00877656601369381, + -0.017193594947457314, + 0.01311669684946537, + 0.02503921650350094, + -0.008140955120325089, + -0.005842484068125486, + 0.007595228962600231, + 0.016217708587646484, + -0.0018185533117502928, + 0.012763580307364464, + -0.006901835557073355, + -0.002176485722884536, + -0.004108999855816364, + -0.012506768107414246, + 0.014188889414072037, + 0.012294897809624672, + -0.006047933828085661, + -0.023241529241204262, + -0.007819940336048603, + 0.0033835044596344233, + 0.008988436311483383, + 0.017745742574334145, + -0.011928939260542393, + 0.01255813054740429, + 0.0013458578614518046, + -0.001422099070623517, + 0.003813665360212326, + 0.005033524706959724, + 0.013855033554136753, + 0.0009983584750443697, + 0.0345926396548748, + -0.0017671908717602491, + -0.015177617780864239, + -0.011453836224973202, + 0.01712939143180847, + 0.02028818614780903, + -0.004934009630233049, + -0.0008964360458776355, + 0.008898552507162094, + 0.002117097843438387, + -0.006083245389163494, + 0.017809946089982986, + -0.009174625389277935, + 0.003919600509107113, + 0.0027206072118133307, + -0.0034541278146207333, + 0.01834925077855587, + -0.0008434684714302421, + 0.01924809440970421, + 0.016615767031908035, + 0.012506768107414246, + -0.00948922149837017, + -0.001212636474519968, + -0.005604932550340891, + -0.017334843054413795, + -0.007177908904850483, + 0.013148798607289791, + 0.04281064122915268, + -0.014150367118418217, + -0.018965601921081543, + -0.006850472651422024, + -0.012083027511835098, + 0.008558276109397411, + -0.009399336762726307, + -0.010009266436100006, + -0.00032643272425048053, + 0.012564550153911114, + 0.0030785396229475737, + -0.01082464586943388, + 0.030612047761678696, + -0.011864736676216125, + -0.023832198232412338, + 0.007993288338184357, + 0.013302885927259922, + 0.010246817953884602, + -0.0065743993036448956, + 0.0061121368780732155, + -0.014009120874106884, + 0.0011139240814372897, + 0.007287053856998682, + 0.017565973103046417, + -0.008821508847177029, + 0.012448985129594803, + 0.005479736253619194, + 0.0036724184174090624, + 0.007620910182595253, + -0.017643017694354057, + -0.004208514466881752, + -0.03567125275731087, + 0.007999708876013756, + -0.0004377850273158401, + -0.0039902240969240665, + -0.013521176762878895, + -0.0004959690850228071, + 0.01802823506295681, + 0.005145879928022623, + 0.011274067685008049, + 0.014895123429596424, + 0.012699376791715622, + 0.0032326271757483482, + 0.03228132799267769, + -0.02229132317006588, + 0.0017190384678542614, + -0.017899829894304276, + -0.02018546126782894, + -0.012326998636126518, + -0.0015127860242500901, + 0.00011175355757586658, + 0.01050363015383482, + 0.022304164245724678, + -0.00808317307382822, + -0.0010023711947724223, + 0.0007997301290743053, + -0.00434334110468626, + -0.012012403458356857, + 0.009688250720500946, + 0.015216139145195484, + 0.01673133298754692, + 0.002532812999561429, + 0.011440996080636978, + -0.018233686685562134, + 0.026605771854519844, + -0.014985008165240288, + -0.005473315715789795, + -0.004673987161368132, + -0.0008506913436576724, + -0.005046365316957235, + -0.00557283079251647, + -0.009977164678275585, + -0.025231825187802315, + -0.019671835005283356, + -0.02439718507230282, + 0.0225352942943573, + 0.002361069666221738, + 0.007107285317033529, + 0.005678765941411257, + 0.0045263199135661125, + 0.014586948789656162, + -0.026759861037135124, + 0.001977456035092473, + -0.021674973890185356, + 0.00016542334924452007, + 0.010599935427308083, + 0.02028818614780903, + 0.007152227684855461, + 0.0039709629490971565, + -0.027093715965747833, + 0.026759861037135124, + -0.009347974322736263, + 0.021276913583278656, + 0.011319009587168694, + -0.016114983707666397, + -0.014920804649591446, + 0.020018532872200012, + -0.005980520509183407, + -0.017360523343086243, + 0.006246963515877724, + 0.002752708736807108, + 0.017000986263155937, + 0.0015769890742376447, + -0.00897559616714716, + -0.005312808323651552, + 0.002760734176263213, + 0.03240973502397537, + -0.018734470009803772, + 0.0039099701680243015, + -0.02342129871249199, + -0.0418604351580143, + -0.0005537518882192671, + 0.005373801104724407, + -0.011550141498446465, + 0.017745742574334145, + 0.00632079690694809, + -0.01436865795403719, + 0.016757013276219368, + 0.006189180538058281, + -0.007588808890432119, + 0.02212439477443695, + 0.0028939556796103716, + -0.00029754132265225053, + 0.0009389705955982208, + -0.0370323583483696, + 0.012468245811760426, + -0.014471382834017277, + -0.0025103420484811068, + -0.009970744140446186, + -0.02117418870329857, + -0.002104257233440876, + -0.0189142394810915, + 0.007113705854862928, + -0.010786124505102634, + -0.01624338887631893, + -0.008622478693723679, + -0.015074892900884151, + 0.012725058011710644, + 0.0007876920280978084, + -0.01440718024969101, + 0.00480560353025794, + 0.007351257372647524, + -0.006632182281464338, + -0.0028634590562433004, + -0.0021524096373468637, + -0.0009429833153262734, + -0.007319155614823103, + -0.001027249963954091, + -0.0025938060134649277, + -0.005726918112486601, + 0.00526786595582962, + -0.0058585344813764095, + 0.005547149572521448, + -0.06250815838575363, + 0.002024003304541111, + 0.007254952564835548, + -0.022252801805734634, + -0.015383067540824413, + -1.616363624634687e-5, + 0.01712939143180847, + -0.008134535513818264, + 0.0061923908069729805, + -0.02018546126782894, + 0.02099441923201084, + -0.012262796051800251, + -0.023870719596743584, + -0.01129974890500307, + -0.010278919711709023, + 0.02623339369893074, + 0.00635931920260191, + -0.015896692872047424, + 0.0032229966018348932, + 0.009919381700456142, + 0.0027832051273435354, + -0.015087733045220375, + 0.0019581951200962067, + 0.005133039318025112, + -0.03246109560132027, + 0.017116552218794823, + -0.026348959654569626, + 0.0008306278614327312, + -0.009540583938360214, + -0.01006062887609005, + -0.00030697116744704545, + 0.0022615548223257065, + 0.005922737997025251, + 0.010388065129518509, + -0.002465399680659175, + -0.0007961186929605901, + -0.020301027223467827, + 0.02068624459207058, + -0.017334843054413795, + -0.007254952564835548, + 0.007197169587016106, + 0.015280342660844326, + 0.016435999423265457, + -0.004523109644651413, + 0.011858316138386726, + 0.004738190211355686, + -0.0023979865945875645, + 0.016538724303245544, + -0.0016323643503710628, + -0.007864882238209248, + 0.02252245508134365, + 0.0009317477815784514, + 0.0009815051453188062, + -0.0322042852640152, + -0.008018969558179379, + -0.00913610402494669, + -0.017745742574334145, + 0.0015095758717507124, + -0.00897559616714716, + 0.007511764764785767, + -0.018066758289933205, + -0.010201876051723957, + -0.037135083228349686, + -0.006227702368050814, + 0.007023821119219065, + 0.0354144424200058, + -0.0007539853686466813, + 0.019376501441001892, + 0.0015352570917457342, + -0.014176048338413239, + -0.005348119884729385, + -0.006096085999161005, + -0.017026666551828384, + 0.028608910739421844, + -0.018939919769763947, + 0.010728341527283192, + -0.010189034976065159, + 0.018208004534244537, + -0.003967752680182457, + -0.009591946378350258, + 0.012140809558331966, + 0.014432861469686031, + 0.0021347536239773035, + -0.006311166565865278, + 0.011877576820552349, + -0.009270930662751198, + -0.01650020107626915, + -0.0006448400672525167, + 0.009225987829267979, + -0.005823222920298576, + 0.005344909615814686, + -0.0031860799062997103, + 0.007896983996033669, + -0.008269362151622772, + -0.023934923112392426, + 0.0006492540705949068, + -0.01900412328541279, + 0.004532740451395512, + 0.005293547175824642, + -0.003121876623481512, + 0.010619196109473705, + -0.004523109644651413, + 0.018041076138615608, + -0.029482072219252586, + 0.03176770359277725, + -0.004519899375736713, + -0.014920804649591446, + 0.012025244534015656, + 0.007376938592642546, + 0.01472819596529007, + -0.01501068938523531, + 0.008384927175939083, + -0.012461825273931026, + -0.027504615485668182, + -0.010747602209448814, + 0.019492067396640778, + 0.01617918536067009, + 0.017514610663056374, + 0.01101725548505783, + -0.0012005983153358102, + -0.006208441685885191, + 0.007479663472622633, + 0.010920950211584568, + -0.009912962093949318, + -0.010323861613869667, + 0.009688250720500946, + 0.009784555062651634, + -0.020223982632160187, + 0.005017473828047514, + 0.01501068938523531, + -0.0015071681700646877, + 0.008551855571568012, + -0.006539087742567062, + -0.018169483169913292, + -0.019286617636680603, + 0.009957903996109962, + 0.0052229235880076885, + -0.0044653271324932575, + 0.007787838578224182, + 0.0009654543828219175, + 0.009091162122786045, + -0.006670704111456871, + 0.01963331364095211, + 0.020082736387848854, + 0.015472951345145702, + -0.025000695139169693, + -0.009225987829267979, + -0.004028745926916599, + -0.00029232483939267695, + -0.015087733045220375, + -0.017026666551828384, + 0.006410681642591953, + -0.01721927709877491, + -0.00042133298120461404, + 0.026580091565847397, + -0.00665786350145936, + -0.012583811767399311, + -0.0028297523967921734, + 0.012262796051800251, + 0.00034770002821460366, + -0.013264364562928677, + 0.004982162266969681, + -0.019607633352279663, + 0.013970598578453064, + -0.010484369471669197, + -0.008057491853833199, + 0.010388065129518509, + -0.009116843342781067, + 0.01915821060538292, + -0.0189142394810915, + -0.001677306485362351, + -0.008539014495909214, + 0.005200452636927366, + -0.020904535427689552, + -0.008038230240345001, + -0.03631328418850899, + 0.03800824657082558, + -0.005996571388095617, + 0.005617773160338402, + 0.009527742862701416, + -0.01567840203642845, + -0.0018233685987070203, + 0.008295043371617794, + -0.00247503025457263, + 0.009014117531478405, + 0.010079889558255672, + -0.008661000989377499, + -0.0020384490489959717, + -0.010625616647303104, + -0.0036371066235005856, + 0.0035215411335229874, + -0.008275781758129597, + 0.011036516167223454, + -0.011980301700532436, + -0.013546857982873917, + -0.014805239625275135, + -0.009880860336124897, + 0.010882428847253323, + 0.008295043371617794, + 0.0005152300582267344, + 0.00760164950042963, + -0.006301536224782467, + 0.0014317295281216502, + 0.03274359181523323, + 0.00543158408254385, + -0.02840345911681652, + -0.0011620764853432775, + 0.020223982632160187, + 0.014625470153987408, + 0.009887279942631721, + 0.014073323458433151, + 0.007428301032632589, + 0.010709079913794994, + 0.01271863840520382, + 0.004298398736864328, + 0.002359464531764388, + 0.007473242934793234, + 0.00635610893368721, + -0.02632327936589718, + -0.013302885927259922, + -0.0028008611407130957, + -0.0076979538425803185, + 0.00418283324688673, + 0.0012864699820056558, + -0.007004560437053442, + -0.012102288194000721, + -0.00012098275328753516, + -0.03934367001056671, + -0.015421588905155659, + -0.0004185240832157433, + 0.013675264082849026, + -0.0046868277713656425, + 0.009758873842656612, + 0.0005356947658583522, + 0.00030917814001441, + 0.01964615471661091, + -0.019517747685313225, + -0.004019115120172501, + -0.026990991085767746, + -0.009566265158355236, + -0.02141815982758999, + -0.012667275033891201, + 0.02453843131661415, + 0.007453982252627611, + 0.014805239625275135, + -0.01248108595609665, + -0.010298180393874645, + -0.023280050605535507, + 0.010079889558255672, + -0.007511764764785767, + -0.013026813045144081, + 0.0012808522442355752, + -0.012384781613945961, + -0.01158224232494831, + -0.013302885927259922, + 0.0031973153818398714, + -0.003261518431827426, + 0.0025986211840063334, + -0.027504615485668182, + 0.017450407147407532, + 0.00619881134480238, + 0.019838763400912285, + 0.0034958599135279655, + 0.0007840805919840932, + 0.005974100437015295, + -0.010298180393874645, + -0.012416883371770382, + 0.004924379289150238, + -0.005694816820323467, + 0.008237260393798351, + 0.012879145331680775, + -0.016525883227586746, + 0.024987854063510895, + -0.006876153871417046, + -0.009701091796159744, + 0.013456974178552628, + 0.025398753583431244, + -0.01312311738729477, + -0.03438718989491463, + 0.01468967366963625, + 0.008558276109397411, + -0.021212710067629814, + -0.016795536503195763, + 0.013174479827284813, + -0.019620472565293312, + 0.018066758289933205, + 0.0024910811334848404, + 0.005088097415864468, + -0.013264364562928677, + 0.002643563551828265, + 0.01408616453409195, + -0.010163353756070137, + -0.0038104550912976265, + -0.0047606611624360085, + 0.00478955265134573, + 0.04435151442885399, + 0.017591655254364014, + -0.010355963371694088, + -0.01899128220975399, + -0.013052494265139103, + 0.020866014063358307, + -0.007730055600404739, + -0.006645022891461849, + 0.008827928453683853, + 0.011030095629394054, + 0.0037430417723953724, + 0.016949623823165894, + -0.007537446450442076, + 0.007595228962600231, + 0.007152227684855461, + -0.01404764223843813, + 0.006150658708065748, + 0.0006725276471115649, + 0.008667421527206898, + -0.0008418633951805532, + -0.01552431471645832, + -0.013572539202868938, + 0.015549995936453342, + 0.01102367602288723, + -0.0120701864361763, + -0.009386495687067509, + 0.004494218155741692, + 0.031433846801519394, + -0.009161785244941711, + 0.014394339174032211, + 0.001815343159250915, + -0.003438076935708523, + -0.016769854351878166, + -0.009868019260466099, + -0.0017286690417677164, + 0.017643017694354057, + -0.004751030821353197, + 0.027401890605688095, + -0.031177034601569176, + -0.009835917502641678, + -0.008275781758129597, + 0.030355235561728477, + 0.004834495019167662, + 0.005502207204699516, + 0.0042855581268668175, + 0.014497064054012299, + 0.007486083544790745, + 0.021687813103199005, + -0.009868019260466099, + -0.010953051969408989, + -0.0010152118047699332, + 0.026836903765797615, + 0.008134535513818264, + -0.013058914802968502, + -0.012326998636126518, + -0.03651873394846916, + 0.0057365489192306995, + -0.01331572700291872, + 0.004083318170160055, + -0.011222705245018005, + -0.023203007876873016, + -0.00033646446536295116, + 0.007203590124845505, + 0.023755153641104698, + 0.0023674899712204933, + -0.006327217444777489, + 0.023382775485515594, + 0.0018458396662026644, + -0.034489914774894714, + 0.03246109560132027, + 0.003354612970724702, + 0.001988691510632634, + 2.0314268112997524e-5, + 0.012917667627334595, + -0.005913107190281153, + -0.011562981642782688, + -0.04368380084633827, + -0.026605771854519844, + -0.0018988072406500578, + 0.013649582862854004, + 0.011376792564988136, + 0.00039545109029859304, + -0.010792544111609459, + 0.016757013276219368, + 0.0201212577521801, + 0.014818079769611359, + 0.014805239625275135, + 0.024602634832262993, + 0.023960603401064873, + 0.0006865721079520881, + -0.0018073178362101316, + 0.0005826433189213276, + -0.01440718024969101, + 0.008904973044991493, + 0.017334843054413795, + 0.027710067108273506, + -0.018850035965442657, + 0.004873016849160194, + 0.001744719804264605, + 0.020095575600862503, + 0.003190895076841116, + -0.009059060364961624, + 0.0011548536131158471, + 0.027710067108273506, + 0.010240397416055202, + -0.001526429201476276, + 0.003816875396296382, + -0.018374932929873466, + -0.02543727681040764, + -0.016590086743235588, + 0.011550141498446465, + -0.008500493131577969, + 0.00909758172929287, + 0.002637143013998866, + 0.002924452070146799, + -0.007858461700379848, + -0.010920950211584568, + -0.005823222920298576, + 0.010189034976065159, + 0.02632327936589718, + -0.0040223253890872, + 0.00821157917380333, + 0.005531098693609238, + -0.0076979538425803185, + 0.013546857982873917, + 0.0039838035590946674, + -0.017411885783076286, + -0.00788414292037487, + -0.008757305331528187, + -0.0012046110350638628, + 0.004873016849160194, + 0.014946485869586468, + -0.004250246565788984, + 0.0042053041979670525, + 0.013187320902943611, + -0.010766862891614437, + -0.01818232424557209, + -0.009026958607137203, + -0.001294495421461761, + 0.013187320902943611, + -0.009033379144966602, + -0.004885857459157705, + -0.01867026649415493, + -0.020776130259037018, + 0.00293729268014431, + 0.020082736387848854, + 0.005701236892491579, + 0.0028393829707056284, + 0.0015167987439781427, + -0.017411885783076286, + -0.0009558239253237844, + 0.0005425163544714451, + -0.011075038462877274, + -0.01883719488978386, + 0.009502061642706394, + -0.015588517300784588, + 0.012924088165163994, + 0.023036079481244087, + 0.023832198232412338, + -0.005794331431388855, + 0.005723708309233189, + 0.011742750182747841, + 0.0069403573870658875, + 0.007941925898194313, + 0.005688396282494068, + 0.011440996080636978, + 0.0023257581051439047, + 0.026580091565847397, + 0.016590086743235588, + 0.00026905120466835797, + 0.0067670089192688465, + -0.014651152305305004, + 0.0008860030211508274, + 0.009091162122786045, + -0.004889067728072405, + 0.008449130691587925, + -0.0011275672586634755, + -0.0012222669320181012, + 0.0006921899039298296, + -0.015280342660844326, + -0.02366526983678341, + -0.0029517384245991707, + -0.02873731590807438, + -0.004972531460225582, + -0.0249621719121933, + 0.04247678443789482, + 0.014997848309576511, + 0.0017527451273053885, + 0.00710086477920413, + 0.011042936705052853, + 0.005906687118113041, + 0.012744319625198841, + -0.01344413310289383, + 0.008031810633838177, + 0.0077043743804097176, + -0.0092580895870924, + -0.01617918536067009, + -0.014895123429596424, + 0.0015352570917457342, + -0.009636888280510902, + -0.008866450749337673, + 0.021122826263308525, + 0.010798964649438858, + -0.01057425420731306, + -0.008391347713768482, + -0.004593733232468367, + -0.026528729125857353, + 0.005421953275799751, + 1.3342210877453908e-5, + -0.004263087175786495, + 0.0092580895870924, + 0.0030961954034864902, + 0.002519972389563918, + -0.02140532061457634, + 0.013880714774131775, + -0.016153505071997643, + 0.01914536952972412, + 0.0054957871325314045, + -0.005043155048042536, + 0.01082464586943388, + 0.006442782934755087, + -0.002208587247878313, + -0.007961186580359936, + -0.005470105912536383, + -0.00348943960852921, + -0.00495006050914526, + -0.04119272157549858, + -0.008352825418114662, + 0.018066758289933205, + -0.024191735312342644, + -0.014946485869586468, + -0.009065480902791023, + -0.009701091796159744, + -0.015896692872047424, + -0.0009502061875537038, + 0.008988436311483383, + -0.0013482655631378293, + 0.0063657392747700214, + -0.010933791287243366, + -0.038598913699388504, + 0.007229271344840527, + 0.00853259488940239, + -0.037777114659547806, + 0.008757305331528187, + 0.014779558405280113, + 0.012333419173955917, + 0.007935505360364914, + 0.020493635907769203, + 0.010593514889478683, + -0.008378506638109684, + 0.012789261527359486, + 0.00045945358579047024, + 0.00511056836694479, + -0.004616204183548689, + 0.01424025185406208, + -0.0038586074952036142, + 0.013264364562928677, + -0.002324152970686555, + -0.00217327568680048, + 0.010587094351649284, + -0.011511619202792645, + 0.014099004678428173, + 0.0010224346769973636, + 0.00027125817723572254, + -0.01786130852997303, + 0.0012238719500601292, + -0.017797105014324188, + 0.023703791201114655, + -0.009392916224896908, + -0.008410608395934105, + 0.0029084014240652323, + -0.014895123429596424, + 0.0008458761149086058, + 0.0006336045335046947, + 0.00033084669848904014, + -0.020801810547709465, + 0.02632327936589718, + -0.01219217199832201, + 0.005527888424694538, + 0.00884719006717205, + 0.021302595734596252, + -0.018798673525452614, + -0.015395907685160637, + -0.010150513611733913, + 0.0023145223967731, + 0.0021668553818017244, + -0.023562544956803322, + 0.014612630009651184, + -0.014227411709725857, + 0.014009120874106884, + -0.012898406945168972, + 0.0015216139145195484, + -0.022894833236932755, + -0.011312589980661869, + 0.004972531460225582, + -0.0035087005235254765, + -0.023626748472452164, + 0.006645022891461849, + -0.002869879361242056, + -0.010368803516030312, + 0.0018458396662026644, + -0.016230547800660133, + 0.005473315715789795, + -0.01578112691640854, + -0.011479517444968224, + 0.008391347713768482, + -0.006214861758053303, + -0.007319155614823103, + -0.0046996683813631535, + -0.01578112691640854, + -0.0005481341504491866, + 0.013091015629470348, + 0.03497786074876785, + 0.01874731108546257, + 0.01665428839623928, + -0.016551563516259193, + -0.014394339174032211, + -0.027478935196995735, + 0.004462116863578558, + -0.004478167742490768, + -0.008436289615929127, + -0.001306533464230597, + 0.005759019870311022, + -0.01624338887631893, + -0.022394048050045967, + 0.010927370749413967, + -0.015126255340874195, + 0.015549995936453342, + 0.007274213247001171, + 0.004908328410238028, + -0.012654434889554977, + 0.005710867699235678, + 0.0076979538425803185, + -0.013675264082849026, + -0.009534163400530815, + -0.014663992449641228, + 0.020724767819046974, + -0.010510050691664219, + -0.0010224346769973636, + -0.017232118174433708, + 0.010529311373829842, + -0.03736621513962746, + 0.01593521423637867, + -0.0028474084101617336, + -0.0065872399136424065, + 0.01287272572517395, + -0.0032165762968361378, + 0.01714223250746727, + -0.0080510713160038, + 0.0009028563508763909, + -0.0034830193035304546, + 0.010336702689528465, + -0.04114135727286339, + -0.019813083112239838, + 0.009116843342781067, + 0.007640171330422163, + -0.02447422966361046, + -0.007858461700379848, + -0.001420494052581489, + -0.0008835954358801246, + -0.03967752680182457, + 0.00650056591257453, + 0.00021889251365792006, + -0.005627403501421213, + -0.008545435033738613, + 0.010009266436100006, + 0.015267501585185528, + 0.015434429980814457, + 0.004336920566856861, + -0.012147230096161366, + -0.011068617925047874, + 0.003296830225735903, + -0.0034605481196194887, + -0.0065134065225720406, + 0.0032663336023688316, + 0.018606064841151237, + -0.0005982927978038788, + -0.0006179549964144826, + 0.01801539584994316, + -0.013829352334141731, + 0.007787838578224182, + -0.006792690139263868, + 0.009553424082696438, + 0.001908437698148191, + -0.0005308795371092856, + -0.006115347146987915, + -0.003377084154635668, + -0.007839201018214226, + -0.012628753669559956, + -0.01955627091228962, + -0.03181906417012215, + 0.00018628936959430575, + 0.006346478126943111, + -0.0075759682804346085, + -0.018772991374135017, + -0.0015641484642401338, + 0.012365520931780338, + -0.002205377211794257, + 0.009668990038335323, + 0.0064652543514966965, + -0.0023498341906815767, + -0.004683617502450943, + -0.015742605552077293, + -0.01420172955840826, + -0.0047799223102629185, + 0.013521176762878895, + -0.010156933218240738, + -0.02557852305471897, + -0.014484223909676075, + 0.004057636950165033, + 0.0031042208429425955, + 0.02114850841462612, + 0.012596651911735535, + -0.0011532484786584973, + -0.0019758509006351233, + -0.013970598578453064, + 0.017206436023116112, + -0.023434137925505638, + -0.016050780192017555, + 0.0054957871325314045, + -0.018079597502946854, + 0.0009461934678256512, + -0.003438076935708523, + 0.018246525898575783, + -0.021777698770165443, + 0.019671835005283356, + 0.011286908760666847, + 0.008770146407186985, + 0.039882976561784744, + 0.018875716254115105, + 0.005033524706959724, + 0.00034127969411201775, + -0.007344836834818125, + 0.023369936272501945, + 0.026182031258940697, + -0.0037655129563063383, + 0.0024942911695688963, + 0.006279065273702145, + 0.004776712041348219, + 0.014651152305305004, + 0.011319009587168694, + 0.003067303914576769, + 0.005608142353594303, + -0.012179331853985786, + 0.023947764188051224, + 0.01833641156554222, + -0.011993142776191235, + -0.00363068631850183, + 0.04073045775294304, + -0.008250100538134575, + -0.0028955605812370777, + -0.002290446311235428, + -0.014176048338413239, + 0.03387356549501419, + 0.011344690807163715, + 0.01721927709877491, + -0.007916244678199291, + -0.0053224386647343636, + -0.019594792276620865, + 0.01299471128731966, + -0.003425236325711012, + 0.009585525840520859, + -0.008295043371617794, + 0.0028008611407130957, + -0.013521176762878895, + 0.006921096239238977, + -0.002836172701790929, + 0.016705650836229324, + -0.00695961806923151, + 0.02704235352575779, + 0.0028345678001642227, + -0.013341408222913742, + -0.0036017950624227524, + 0.005559990182518959, + 0.01038164459168911, + 0.011826214380562305, + 0.013906395994126797, + -0.021276913583278656, + 0.006092876195907593, + 0.009373655542731285, + -0.00035191336064599454, + 0.0062919058836996555, + -0.0013434502761811018, + -0.009521322324872017, + -0.002508736914023757, + 0.01876015216112137, + 0.007088024169206619, + 0.008391347713768482, + 0.0022246381267905235, + 0.013880714774131775, + -0.013495495542883873, + -0.006121767219156027, + 0.012134389951825142, + 0.014355817809700966, + 0.008738044649362564, + -0.002162039978429675, + 0.0008643345208838582, + 0.0029998908285051584, + -0.010953051969408989, + 0.012262796051800251, + -0.015267501585185528, + 0.01497216708958149, + 0.006535877473652363, + 0.015254661440849304, + 0.000993543304502964, + 0.002059315098449588, + -0.02116134762763977, + -0.0039099701680243015, + -0.01066413801163435, + -0.001746324822306633, + -0.0157040823251009, + -0.01255171000957489, + 0.0033931348007172346, + 0.01348265539854765, + -0.01900412328541279, + -0.0003023565514013171 + ], + "97dc403d-dd4a-4474-9732-5961f25413b0": [ + -0.0222900602966547, + -0.011290543712675571, + -0.00013672918430529535, + 0.041008420288562775, + -0.008863110095262527, + 0.0042033628560602665, + -0.015860997140407562, + 0.024075910449028015, + -0.009630364365875721, + 0.03698694705963135, + 0.005006995517760515, + 0.015093743801116943, + -0.005162430927157402, + -0.01572871208190918, + -0.00525503046810627, + 0.00994123425334692, + -0.02615278773009777, + 0.002220738213509321, + 0.006422447506338358, + -0.027197841554880142, + 0.041696302592754364, + 0.008935866877436638, + -0.030293315649032593, + 0.04182858765125275, + 0.03407667204737663, + -0.025901446118950844, + 0.00402477802708745, + 0.001219504396431148, + -0.017593935132026672, + 0.01383703388273716, + 0.016376910731196404, + 0.0070375739596784115, + 0.0021297920029610395, + -0.015067286789417267, + 0.0005605586338788271, + -0.044712405651807785, + -0.022858886048197746, + 0.02154926210641861, + 0.01550382748246193, + 0.008181841112673283, + -0.03968556597828865, + 0.022938257083296776, + -0.011912284418940544, + -0.03439415618777275, + -0.03923579677939415, + 0.0061347270384430885, + -0.019009387120604515, + -0.02328219823539257, + 0.0269068144261837, + -0.009954462759196758, + -0.006806074641644955, + -0.03341524675488472, + 0.03312421962618828, + 0.01383703388273716, + 0.013063165359199047, + -0.02730366960167885, + -0.02185351774096489, + 0.05384008586406708, + 0.015106972306966782, + -0.041537560522556305, + 0.02012058161199093, + -0.015966827049851418, + -0.026285072788596153, + -0.009319493547081947, + 0.028309037908911705, + -0.010364547371864319, + 0.006181026808917522, + -0.009286422282457352, + -0.05050649866461754, + -0.0015733673935756087, + -0.013321122154593468, + -0.00043778138933703303, + 7.725250179646537e-5, + -0.01800401881337166, + 0.049104273319244385, + -0.017951104789972305, + 0.04092904552817345, + 0.018506702035665512, + 0.0029185425955802202, + -0.01776590570807457, + -0.005013609770685434, + 0.017792362719774246, + -0.015490598976612091, + -0.027621153742074966, + 0.05341677367687225, + -0.020649723708629608, + -0.054554425179958344, + -0.03468518331646919, + -0.008697752840816975, + -0.0035187869798392057, + 0.009623750112950802, + 0.008869724348187447, + -0.008148769848048687, + -0.015927141532301903, + -0.00994123425334692, + 0.008644838817417622, + 0.013023479841649532, + -0.0013716323301196098, + 0.0012542292242869735, + -0.04225189983844757, + -0.00986847747117281, + 0.000965682091191411, + -0.0002463812124915421, + -0.0030293315649032593, + 0.02102012187242508, + 0.009756035171449184, + 0.014061919413506985, + -0.012448038905858994, + -0.011594799347221851, + 0.046220455318689346, + -0.047516852617263794, + -0.05103563889861107, + 0.023784883320331573, + -0.0312986820936203, + -0.0423312708735466, + -0.04722582548856735, + 0.01853315904736519, + 0.00828105490654707, + -0.015966827049851418, + -0.03333587571978569, + 0.03341524675488472, + 0.0031053954735398293, + 0.028705893084406853, + 0.018255360424518585, + 0.00676308199763298, + 0.019988296553492546, + 0.01904907263815403, + 0.005880078300833702, + 0.061644911766052246, + -0.003727136179804802, + -0.04965987056493759, + 0.012057797983288765, + 0.01664148084819317, + 0.022660458460450172, + -0.022554630413651466, + -0.005304637365043163, + 0.04624691233038902, + 0.0308489128947258, + -0.010139661841094494, + 0.008611767552793026, + -0.023189598694443703, + 0.02525324933230877, + -0.02918211929500103, + 0.01432648953050375, + -0.009286422282457352, + -0.006220712326467037, + -0.04838993400335312, + 0.044262636452913284, + -0.0070904879830777645, + 0.06820625811815262, + -0.027012642472982407, + -0.021562490612268448, + -0.03182782232761383, + 0.02373196929693222, + 0.020755551755428314, + 0.0029582283459603786, + -0.0286529790610075, + 0.04050573334097862, + 0.01330127939581871, + 0.026179244741797447, + 0.006323233712464571, + -0.05087689682841301, + 0.030504971742630005, + 0.009808949194848537, + 0.054554425179958344, + 0.0048151821829378605, + 0.013598920777440071, + 0.057411786168813705, + -0.028864635154604912, + 0.028070924803614616, + 0.017964333295822144, + -0.018242131918668747, + -2.694794602575712e-5, + -0.009160751476883888, + 0.011859370395541191, + -0.018691901117563248, + 0.0073484438471496105, + 0.018506702035665512, + 0.05804675444960594, + -0.014445546083152294, + -0.029155662283301353, + -0.013466635718941689, + -0.011832913383841515, + -0.0002959881676360965, + 0.01232236810028553, + 0.009855248965322971, + 0.013076393865048885, + 0.015781626105308533, + -0.014974687248468399, + 0.012778752483427525, + 0.02244880236685276, + -0.032013025134801865, + -0.010476989671587944, + 0.020067667588591576, + -0.014802716672420502, + -0.042066700756549835, + 0.018546387553215027, + -0.016720851883292198, + -0.005830470938235521, + 0.021588947623968124, + -0.015755169093608856, + -0.003938792273402214, + -0.034050215035676956, + 0.0330977626144886, + -0.04021470621228218, + 0.014987915754318237, + -0.024552136659622192, + -0.01633722521364689, + 0.020543895661830902, + -0.01504082977771759, + 0.05682973191142082, + -0.03338878974318504, + 0.00797679927200079, + 0.017263220623135567, + -0.001601477968506515, + 0.0029896460473537445, + 0.006174412555992603, + -0.007427815347909927, + 0.0035121727269142866, + -0.02102012187242508, + -0.002214123960584402, + -0.04431555047631264, + -0.00266554718837142, + -0.01656210981309414, + -0.0520145483314991, + -0.0084993252530694, + -0.01904907263815403, + 0.021416977047920227, + -0.007150016259402037, + -0.04135236144065857, + 0.0356905534863472, + -0.007216158788651228, + 0.019525298848748207, + -0.011965198442339897, + 0.024287566542625427, + 0.049263015389442444, + 0.028996920213103294, + 0.004732503555715084, + 0.034050215035676956, + -0.027383040636777878, + -0.001962781883776188, + 0.01701187901198864, + 0.01095983013510704, + -0.033521074801683426, + -0.032383423298597336, + -0.015278942883014679, + -0.016085883602499962, + 0.029499603435397148, + 0.018691901117563248, + -0.010126433335244656, + -0.0013137576170265675, + 0.00668701808899641, + 0.050771068781614304, + -0.03611386567354202, + -0.014207432977855206, + 0.03100765496492386, + 0.03283319249749184, + -0.027488868683576584, + 0.002027271082624793, + 0.0008462120313197374, + 0.02153603360056877, + 0.02297794260084629, + 0.030028745532035828, + 0.029393775388598442, + 0.05735887214541435, + -0.011032587848603725, + 0.039738480001688004, + -0.01232236810028553, + 0.004408405162394047, + 0.027938637882471085, + 0.013400493189692497, + -0.008228140883147717, + -0.0012368668103590608, + 0.008783739060163498, + -0.01273906696587801, + 0.01928718574345112, + -0.004563840106129646, + -0.04159047454595566, + -0.01160802785307169, + 0.0033567375503480434, + -0.018109846860170364, + -0.04624691233038902, + 0.044633034616708755, + 0.013850262388586998, + 0.04103487730026245, + 0.03275382146239281, + -0.04005596414208412, + -0.022171003744006157, + -0.06333816051483154, + -0.03576992452144623, + 0.0023612910881638527, + 0.0038759568706154823, + -0.003909028135240078, + 0.014009004458785057, + 0.009610521607100964, + 0.0036643005441874266, + -0.03227759525179863, + 0.0039983210153877735, + -0.02873235009610653, + -0.0023894018959254026, + -0.01477625872939825, + 0.0044712405651807785, + 0.00820829812437296, + -0.025120964273810387, + 0.00712355924770236, + -0.017977561801671982, + 0.05714721605181694, + 0.03158970922231674, + -0.028864635154604912, + 0.031933654099702835, + 0.006637411192059517, + -0.04907781630754471, + -0.013598920777440071, + -0.021575719118118286, + 0.028996920213103294, + 0.007930498570203781, + -0.031272225081920624, + 0.03267445042729378, + -0.024750564247369766, + 0.005919763818383217, + 0.014538145624101162, + 0.025200335308909416, + -0.025147421285510063, + 0.028388408944010735, + 0.017289677634835243, + -0.06757128983736038, + 0.015913911163806915, + -0.02435370907187462, + 0.009656821377575397, + -0.022726600989699364, + -0.0116807846352458, + 0.03243633732199669, + -0.04838993400335312, + -0.0053410157561302185, + -0.04881324619054794, + -0.030795998871326447, + -0.04050573334097862, + -0.028441322967410088, + -0.03000228852033615, + -0.031642623245716095, + -0.009928005747497082, + -0.034579355269670486, + 0.022581087425351143, + -0.0046531325206160545, + -0.011330229230225086, + -0.005162430927157402, + 0.04817827790975571, + 0.030637256801128387, + -0.005562593694776297, + 0.004123991820961237, + 0.000816034444142133, + -0.0024720800574868917, + 0.006617567967623472, + 0.011488971300423145, + 0.03727797418832779, + -0.0165488813072443, + 0.014061919413506985, + 0.02041160874068737, + 0.01730290614068508, + -0.004286041017621756, + 0.022925028577446938, + -0.03256862238049507, + -0.00899539515376091, + -0.011250858195126057, + -0.031721994280815125, + 0.020080896094441414, + 0.012924266047775745, + 0.031404510140419006, + -0.007302144076675177, + 0.01160802785307169, + 0.005962756462395191, + -0.023348340764641762, + -0.02698618546128273, + -0.006865602917969227, + 0.05593018978834152, + -0.030452057719230652, + 0.02139052003622055, + 0.001355923479422927, + -0.04159047454595566, + 0.03203948214650154, + -0.021985802799463272, + -0.02366582676768303, + 0.016310768201947212, + 0.002501844195649028, + 0.01701187901198864, + 0.006931745447218418, + -0.005800706800073385, + -0.03169553726911545, + -0.020080896094441414, + 0.02206517569720745, + -0.023414483293890953, + 0.02025286667048931, + -0.021046578884124756, + -0.014432317577302456, + 0.0010185962310060859, + 0.023493854328989983, + 0.012897809036076069, + 0.005916456691920757, + 0.0023265662603080273, + -0.01988246850669384, + 0.03288610652089119, + -0.02025286667048931, + 0.002281920053064823, + -0.03415604308247566, + 0.004464626312255859, + -0.03031977266073227, + 0.02449922263622284, + -0.02488284930586815, + 0.0343412421643734, + -0.019988296553492546, + 0.013473249971866608, + 0.0004431554989423603, + 0.012428196147084236, + 0.0030194101855158806, + 0.013063165359199047, + 0.008195069618523121, + 0.001504744403064251, + 0.015239257365465164, + -0.0520145483314991, + 0.004259584005922079, + 0.0449240617454052, + 0.03576992452144623, + -0.04386577755212784, + -0.006171105429530144, + 0.015133429318666458, + 0.008525782264769077, + 0.027409497648477554, + 0.04778142273426056, + -0.006472054403275251, + 0.012851509265601635, + -0.006468747276812792, + 0.03664300590753555, + -0.018877100199460983, + -0.012196697294712067, + -0.01303670834749937, + -0.020398380234837532, + 0.005982599221169949, + -0.0029979138635098934, + -0.012381896376609802, + -0.007136787753552198, + -3.208950147381984e-5, + 0.01028517633676529, + 0.030795998871326447, + -0.010728331282734871, + -0.004137220326811075, + -0.016760537400841713, + -0.022634001448750496, + 0.01398254744708538, + 0.011350071988999844, + -0.036087408661842346, + 0.009021852165460587, + 0.02357322722673416, + 0.0017197078559547663, + 0.004491083323955536, + 0.008902795612812042, + -0.029578976333141327, + 0.06556055694818497, + -0.020610038191080093, + -0.003568393876776099, + -0.037621915340423584, + -0.005903228186070919, + -0.0015841155545786023, + 0.023401254788041115, + -0.02426110953092575, + 0.007474115118384361, + -0.03643134981393814, + 0.005126052536070347, + 0.037225060164928436, + 0.017818819731473923, + -0.0023480625823140144, + 0.014511688612401485, + 0.009167365729808807, + -0.05513647943735123, + 0.02594113163650036, + 0.00468951091170311, + -0.027568239718675613, + 0.000568826450034976, + 0.01640336774289608, + -5.1312195864738896e-5, + -0.0028953927103430033, + 0.0029731104150414467, + -0.0014667123323306441, + 0.0025861761532723904, + 0.04362766444683075, + -0.0027581469621509314, + 0.017818819731473923, + -0.01882418617606163, + -0.06069245934486389, + -0.026179244741797447, + -0.00561220059171319, + 0.004722582176327705, + 0.015001144260168076, + 0.03092828392982483, + 0.0195914413779974, + -0.004077692050486803, + 0.017779134213924408, + 0.023467397317290306, + -0.011879213154315948, + -0.006018977612257004, + -0.01851993054151535, + 0.002455544425174594, + -0.03492330014705658, + -0.01678699441254139, + 0.0020983743015676737, + -0.015450913459062576, + 0.03637843579053879, + 0.005155816674232483, + -0.030134573578834534, + -0.01783204823732376, + 0.010629117488861084, + -0.031272225081920624, + 0.02616601623594761, + -0.043971605598926544, + -0.005122745409607887, + 0.01273245271295309, + -0.0031268917955458164, + -0.007738685235381126, + -0.03061079978942871, + 0.023692283779382706, + -0.014379403553903103, + 0.011892441660165787, + -0.0007585730636492372, + -0.010245490819215775, + -0.002806100295856595, + -0.00432572653517127, + 0.00030694305314682424, + -0.018427331000566483, + -0.012163626030087471, + -0.013651834800839424, + -0.0032988626044243574, + -0.01814953237771988, + 0.02057035267353058, + -0.017144164070487022, + -0.00561220059171319, + 0.028547151014208794, + 0.0046762824058532715, + -0.014987915754318237, + -0.013956090435385704, + 0.014908544719219208, + -0.007441043853759766, + -0.012434810400009155, + 0.030293315649032593, + -0.005155816674232483, + -0.012203311547636986, + -0.008955709636211395, + 0.005499758291989565, + 0.006399297621101141, + 0.03979139402508736, + -0.0038230428472161293, + -0.03235696628689766, + -0.045162174850702286, + 0.013168993405997753, + -0.026893585920333862, + -9.466661140322685e-5, + -0.019538527354598045, + -0.030584342777729034, + 0.03558472543954849, + 0.00014654721599072218, + 0.008929252624511719, + -0.040638018399477005, + -0.007837899029254913, + 0.009994148276746273, + -0.0067994603887200356, + 0.011846141889691353, + -0.04095550626516342, + 0.022488487884402275, + -0.02418173849582672, + 0.0035287083592265844, + 0.036087408661842346, + 0.027488868683576584, + 0.013479864224791527, + 0.001863568089902401, + 0.023930396884679794, + 0.008386882953345776, + -0.036854662001132965, + 0.009035080671310425, + 0.01391640491783619, + -0.04103487730026245, + -0.0224620308727026, + -0.007725456729531288, + -0.003720521926879883, + -0.01996183954179287, + 0.00865145307034254, + -0.02328219823539257, + 0.030504971742630005, + -0.0019826246425509453, + -0.02963189035654068, + -0.024605050683021545, + -0.011283929459750652, + 0.01951207034289837, + 0.003085552714765072, + -0.0024423159193247557, + -0.002748225349932909, + 0.002875549951568246, + -0.002252155914902687, + 0.020054439082741737, + 0.011059044860303402, + 0.007751913741230965, + 0.0141016049310565, + 0.016085883602499962, + 0.015173114836215973, + 0.03370627388358116, + 0.001886717975139618, + -0.029446689411997795, + -0.027938637882471085, + 0.011515428312122822, + -0.019776640459895134, + 0.010338090360164642, + 0.005384008400142193, + -0.010377775877714157, + 0.03381210193037987, + -0.03841562941670418, + 0.009934620000422001, + -0.03061079978942871, + 0.010569589212536812, + 0.022581087425351143, + 0.004927624482661486, + 0.01519957184791565, + 0.041299447417259216, + -0.04442137852311134, + 0.01481594517827034, + -0.010364547371864319, + 0.008750667795538902, + -0.03449998423457146, + -0.013433564454317093, + 0.02176091820001602, + -0.017329363152384758, + -0.014670430682599545, + -0.005794092547148466, + -0.0037932787090539932, + -0.012004883959889412, + 0.0024191660340875387, + 0.01580808311700821, + -0.020371923223137856, + 0.032991934567689896, + 0.0004007828829344362, + 0.01964435540139675, + 0.01375766284763813, + -0.012368667870759964, + -0.010265333577990532, + -0.011277315206825733, + -0.03801877424120903, + 0.02026609517633915, + 0.03447352722287178, + -0.010774631053209305, + 0.05947543680667877, + -0.004130606073886156, + 0.03280673548579216, + 0.01248111017048359, + 0.027912180870771408, + 0.013546006754040718, + 0.022700143977999687, + -0.021112721413373947, + 0.03923579677939415, + 0.022422345355153084, + -0.048045992851257324, + -0.012944108806550503, + 0.03410312905907631, + -0.01361214928328991, + -0.006964816711843014, + 0.022038718685507774, + -0.02992291748523712, + 0.035108499228954315, + 0.002581215463578701, + 0.01670762337744236, + 0.01572871208190918, + -0.020649723708629608, + 0.01588745415210724, + -0.0001487175322836265, + 0.05466025322675705, + 0.001197181292809546, + -0.0017825433751568198, + 0.010305019095540047, + 0.013876719400286674, + -0.002119870623573661, + 0.0093724075704813, + -0.00964359287172556, + 0.014696887694299221, + -0.0011054084170609713, + -0.01424711849540472, + -0.028018008917570114, + -0.013288050889968872, + -0.05788801237940788, + 0.020834922790527344, + -0.0018685287795960903, + 9.880052675725892e-5, + -0.00949146505445242, + 0.004636596888303757, + -0.03653717786073685, + -0.009246736764907837, + 0.009511307813227177, + 0.03256862238049507, + -0.0409819632768631, + -0.01814953237771988, + -0.0240362249314785, + 0.033071305602788925, + -0.029658347368240356, + 0.0033054768573492765, + 0.017276449128985405, + -0.012507567182183266, + -0.0326479934155941, + 0.005883385427296162, + -0.019988296553492546, + -0.0016138796927407384, + 0.004246355500072241, + 0.02094075083732605, + -0.019088758155703545, + -0.020834922790527344, + -0.01137652900069952, + -0.013367421925067902, + 0.002033885335549712, + -0.004831717815250158, + -0.01588745415210724, + -0.015636112540960312, + -0.018638987094163895, + -0.0016676206141710281, + -0.017144164070487022, + 0.03349461778998375, + -0.009742806665599346, + -0.010483603924512863, + 0.004071077797561884, + 0.03336233273148537, + -0.00338319456204772, + -0.03809814527630806, + -0.040188249200582504, + 0.04341600835323334, + -0.0015328549779951572, + 0.017660077661275864, + -0.01051006093621254, + -0.0008929252508096397, + 0.0070375739596784115, + 0.0014311607228592038, + 0.024075910449028015, + -0.0040214709006249905, + 0.02251494489610195, + -0.02411559596657753, + 0.010900301858782768, + 0.0028623214457184076, + -0.00045721078640781343, + -0.02169477567076683, + -0.005810628179460764, + -0.00027490523643791676, + -0.0077783712185919285, + -0.039262253791093826, + -0.012553867883980274, + 0.0006560520268976688, + -0.01972372643649578, + 0.01073494553565979, + 0.0003119037428405136, + 0.006462133023887873, + 0.040108878165483475, + -0.033917929977178574, + 0.03944745287299156, + -0.019088758155703545, + 0.029526060447096825, + 0.013129307888448238, + -0.010721717029809952, + 0.005473300814628601, + -0.020610038191080093, + 0.049024902284145355, + 0.008029713295400143, + -0.005926378071308136, + -0.021337606012821198, + -0.04114070534706116, + -0.0004443956713657826, + -0.016310768201947212, + 0.01330127939581871, + 0.03553181141614914, + 0.03431478515267372, + 0.014432317577302456, + 0.026126330718398094, + 0.010000762529671192, + 0.038971226662397385, + 0.006286855321377516, + -0.034288328140974045, + -0.02251494489610195, + 0.0013426949735730886, + -0.0025101120118051767, + -0.006971430964767933, + -0.013261592946946621, + -0.018467016518115997, + -0.04021470621228218, + 0.04828410595655441, + -0.012104097753763199, + -0.004993767011910677, + 0.009094608947634697, + 0.02857360802590847, + 0.01951207034289837, + -0.01130377221852541, + -0.002283573616296053, + 0.003123584669083357, + -0.019075529649853706, + 0.012725838460028172, + 0.006346383597701788, + 0.013446792960166931, + -0.0008251290419138968, + -0.007156630512326956, + -0.024538908153772354, + -0.010232261382043362, + -0.001833803835324943, + 0.007791599724441767, + -0.02177414670586586, + 0.047728508710861206, + 0.0075865574181079865, + 0.015278942883014679, + -0.02510773576796055, + -0.014432317577302456, + -0.021972574293613434, + -0.022197460755705833, + 0.024022996425628662, + 0.00712355924770236, + 0.01312269363552332, + 0.017276449128985405, + 0.000426619837526232, + -0.007520414888858795, + -0.019075529649853706, + 0.045611944049596786, + 0.011158258654177189, + 0.032621536403894424, + 0.0023100306279957294, + -0.031087027862668037, + -0.03891831263899803, + 0.022964714094996452, + -0.005823856685310602, + -0.018109846860170364, + -0.012990408577024937, + 0.004914395976811647, + -0.01837441697716713, + 0.02342771179974079, + 0.012600167654454708, + -0.019750183448195457, + -0.0308489128947258, + -0.0018982929177582264, + 0.01632399670779705, + 0.017818819731473923, + 0.016390139237046242, + -0.043124981224536896, + -0.024935763329267502, + -0.06545472890138626, + 0.00899539515376091, + -0.059528350830078125, + -0.025914674624800682, + 0.0024208195973187685, + -0.002625861670821905, + 0.008115698583424091, + 0.04997735470533371, + -0.017673306167125702, + 0.0007403838681057096, + 0.006739932112395763, + 0.02387748286128044, + 0.030372686684131622, + -0.016509195789694786, + 0.0158742256462574, + 0.024896077811717987, + -0.02289857156574726, + 0.014736573211848736, + 0.0005254203570075333, + -0.005939606577157974, + 0.026020502671599388, + 0.0013385610654950142, + -0.007341829594224691, + -0.013598920777440071, + -0.029975831508636475, + 0.011277315206825733, + 0.010562974959611893, + -0.01496145874261856, + 0.013168993405997753, + -0.0004811874823644757, + 0.012646467424929142, + 0.041696302592754364, + -0.013665063306689262, + -0.03487038239836693, + 0.055983103811740875, + -0.005228573456406593, + -0.004507618956267834, + -0.047887250781059265, + 0.007851127535104752, + -0.007083873730152845, + -0.04156401753425598, + 0.031192855909466743, + -0.006038820371031761, + -0.005215344950556755, + -0.011052430607378483, + 0.001430333941243589, + -0.041696302592754364, + 0.02767406776547432, + 0.019075529649853706, + 0.009173979982733727, + -0.02063649520277977, + -0.0007011116831563413, + 0.0009789105970412493, + -0.0068986741825938225, + -0.006306698080152273, + -0.031245769932866096, + -0.00040222975076176226, + 0.002004121197387576, + 0.020371923223137856, + -0.009590678848326206, + -0.03471164032816887, + 0.009326107800006866, + -0.004831717815250158, + -0.024684421718120575, + -0.017964333295822144, + -0.007236001547425985, + 0.03370627388358116, + -0.012071026489138603, + 0.005734564270824194, + -0.012276068329811096, + -0.0028689356986433268, + 0.0030409065075218678, + -0.010324861854314804, + 0.0029020069632679224, + -0.01153527107089758, + -0.008327354677021503, + 0.01526571437716484, + 0.0006978045566938818, + -0.025570733472704887, + -0.004947467241436243, + -0.009610521607100964, + -0.010179347358644009, + 0.006743239238858223, + 0.025054821744561195, + -0.010344704613089561, + 0.017580706626176834, + 0.021787375211715698, + -0.00038362713530659676, + 0.00036481782444752753, + 0.00027924583991989493, + -0.007804828230291605, + 0.02699941396713257, + -0.03121931292116642, + -0.019789868965744972, + -0.007672542706131935, + -0.00266554718837142, + 0.024247881025075912, + -0.009127680212259293, + -0.030134573578834534, + -0.011727084405720234, + -0.027171384543180466, + -0.0031120097264647484, + 0.006498511414974928, + -0.029499603435397148, + 0.025808846578001976, + -0.02102012187242508, + 0.0063728406094014645, + -0.006733317859470844, + 0.015530284494161606, + 0.02418173849582672, + -0.03153679519891739, + -0.047172911465168, + -0.005989213474094868, + 0.03047851473093033, + -0.01685313694179058, + 0.013969318941235542, + 0.00740797258913517, + 0.03793940320611, + -0.010562974959611893, + 0.011317000724375248, + -0.01073494553565979, + 0.0033798874355852604, + 0.010238876566290855, + -0.03439415618777275, + 0.009061537683010101, + 0.009458392858505249, + -0.02971126139163971, + 0.022422345355153084, + -0.014974687248468399, + 0.006644025444984436, + 0.004629982635378838, + -0.00945177860558033, + -0.01352616399526596, + -0.02767406776547432, + 0.004927624482661486, + -0.013248364441096783, + -0.02350708469748497, + -0.026549644768238068, + -0.03696049004793167, + 0.0022323131561279297, + 0.012864737771451473, + 0.008380268700420856, + 0.04227835685014725, + -0.0016411634860560298, + -0.006336462218314409, + -0.025147421285510063, + -0.00937902182340622, + -0.0019925462547689676, + -0.02441985160112381, + -0.01571548357605934, + 0.008466253988444805, + 0.021575719118118286, + -0.0021397133823484182, + -0.037992317229509354, + -0.001985931769013405, + 0.00374036468565464, + 0.011217786930501461, + 0.01624462567269802, + 0.004553918726742268, + -0.010820930823683739, + -0.0070904879830777645, + -0.029737718403339386, + 0.018863871693611145, + 0.007335215341299772, + -0.009392250329256058, + 0.016509195789694786, + 0.03725151717662811, + 0.021218549460172653, + -0.011654327623546124, + 0.004428247921168804, + 0.015437684953212738, + 0.008102470077574253, + -0.035955123603343964, + -0.009914777241647243, + -0.013691520318388939, + 0.00031438408768735826, + -0.003654379164800048, + 0.015252485871315002, + 0.031245769932866096, + -0.01588745415210724, + -0.0006287681753747165, + 0.023612912744283676, + 0.0005928031750954688, + -0.021192092448472977, + -0.01489531621336937, + 0.012276068329811096, + -0.003644457785412669, + 0.012368667870759964, + 0.011462514288723469, + 0.004586989991366863, + 0.00432903366163373, + -0.015252485871315002, + -0.009187208488583565, + -0.03259507939219475, + 0.0060586631298065186, + -0.023335112258791924, + 0.005565900821238756, + -0.012441424652934074, + -0.007732070982456207, + -0.05995166301727295, + -0.022356202825903893, + 0.011204558424651623, + 0.018030475825071335, + 0.01017273310571909, + -0.035558268427848816, + -0.010338090360164642, + 0.020067667588591576, + 0.023268969729542732, + 0.013942861929535866, + 0.010721717029809952, + -0.008221526630222797, + -0.013175607658922672, + 0.027383040636777878, + 0.010133047588169575, + -0.0013187183067202568, + 0.02017349563539028, + -0.012441424652934074, + 0.01624462567269802, + -0.03902414068579674, + -0.009610521607100964, + 0.022409116849303246, + -0.014366175048053265, + 0.006511739920824766, + -0.011885827407240868, + 0.011436057277023792, + 0.0013302932493388653, + -0.00046423845924437046, + 0.003227759385481477, + -0.02584853209555149, + 0.0064786686562001705, + -0.022488487884402275, + 0.012705995701253414, + -0.011184715665876865, + -0.010860616341233253, + 0.006171105429530144, + -0.013215293176472187, + -0.03214531019330025, + 0.03600803762674332, + 0.014577831141650677, + 0.009875091724097729, + -0.01632399670779705, + -0.011257472448050976, + 0.015702255070209503, + -0.011482357047498226, + -0.007321986835449934, + -7.720082794548944e-5, + -0.05958126485347748, + 0.011032587848603725, + -0.0033054768573492765, + 0.009848634712398052, + -0.004983845632523298, + 0.0019793175160884857, + -0.017779134213924408, + -0.00481848930940032, + -0.018506702035665512, + 0.008558853529393673, + 0.012216540053486824, + 0.0007387303048744798, + 0.0019925462547689676, + 0.02849423699080944, + 0.002814368112012744, + 0.002190974075347185, + -0.021800603717565536, + -0.012864737771451473, + -0.01027856208384037, + 0.015292171388864517, + 0.015675798058509827, + 0.021496348083019257, + -0.014379403553903103, + 0.011475742794573307, + -0.0015915565891191363, + -0.0007093794993124902, + 0.02676130086183548, + 0.031166398897767067, + 0.01920781470835209, + 0.03407667204737663, + -0.003489022608846426, + 0.004431555047631264, + -0.02222391776740551, + 0.001226945430971682, + -0.006944973953068256, + 0.019908925518393517, + 0.0347910113632679, + -0.018400873988866806, + -0.02555750496685505, + 0.0021810526959598064, + -0.01526571437716484, + -0.023784883320331573, + 0.017580706626176834, + 0.031113484874367714, + 0.011727084405720234, + -0.0024423159193247557, + 0.010443918406963348, + -0.003981785383075476, + -0.0007589864544570446, + 0.020689409226179123, + -0.04799307882785797, + -0.020504210144281387, + -0.015239257365465164, + -0.006488590035587549, + -0.006313312333077192, + 0.007183087524026632, + -0.015186343342065811, + 0.005377394147217274, + 0.0031384669709950686, + -0.014419089071452618, + 0.000342494691722095, + -6.43856983515434e-5, + -0.016800222918391228, + -0.030213944613933563, + 0.006247169338166714, + -0.01571548357605934, + 0.017369048669934273, + -0.014524917118251324, + -0.007520414888858795, + 0.02464473620057106, + 0.0018387645250186324, + 0.02722429856657982, + -0.009650207124650478, + -0.015966827049851418, + 0.027462411671876907, + 0.018956473097205162, + -0.021734461188316345, + 0.008988780900835991, + 0.002296802122145891, + -0.028996920213103294, + 0.01595359854400158, + 0.004054542165249586, + 0.02576916106045246, + 0.006812688894569874, + -0.01624462567269802, + -0.006885445676743984, + -0.005195502191781998, + 0.007904041558504105, + 0.04103487730026245, + 0.014498460106551647, + 0.02788572385907173, + 0.03463226929306984, + -0.009974305517971516, + -0.02207840420305729, + -0.016906050965189934, + -0.010219032876193523, + 0.015860997140407562, + 0.0021000278647989035, + 0.013929633423686028, + -0.010675417259335518, + 0.006462133023887873, + -0.009154137223958969, + -0.025822075083851814, + -0.017263220623135567, + 0.003955327905714512, + 0.02457859367132187, + 0.017977561801671982, + -0.01646951027214527, + -0.022356202825903893, + -0.026576101779937744, + -0.009465007111430168, + 0.010721717029809952, + -0.01209748350083828, + -0.026549644768238068, + 0.010298404842615128, + 0.012977180071175098, + -0.006865602917969227, + -0.009537764824926853, + -0.005592357832938433, + 0.01566256955265999, + 0.020543895661830902, + -0.0262321587651968, + -0.002649011556059122, + -0.012051183730363846, + -0.007566714659333229, + -0.031642623245716095, + -0.02889109216630459, + 0.001757739926688373, + 0.00014995770470704883, + -0.028309037908911705, + 0.0003869342617690563, + 0.017064793035387993, + -0.01361214928328991, + -0.03915642574429512, + 0.008267826400697231, + 0.004507618956267834, + 0.018493473529815674, + 0.009676664136350155, + 0.023017628118395805, + 0.018123075366020203, + -0.012507567182183266, + -0.020067667588591576, + 0.011502199806272984, + 0.006825917400419712, + 0.008439796976745129, + -0.012705995701253414, + 0.015980055555701256, + 0.0016370295779779553, + -0.006832531653344631, + 0.0207158662378788, + 0.03235696628689766, + -0.03182782232761383, + -0.012309139594435692, + -0.004143834579735994, + -0.024829935282468796, + 0.01202472671866417, + 0.017408734187483788, + -0.009193822741508484, + -0.01769976317882538, + -0.03688111901283264, + -0.003667607670649886, + 0.01447200309485197, + -0.00785774178802967, + 0.0084993252530694, + 0.0037370575591921806, + -0.020967207849025726, + 0.0028639750089496374, + -0.01550382748246193, + -0.007613014429807663, + 0.010099976323544979, + -0.02812383882701397, + 0.0003635776520241052, + -0.032013025134801865, + 0.012904423289000988, + 0.00786435604095459, + -0.008902795612812042, + -0.003839578479528427, + 0.019485613331198692, + 0.01572871208190918, + 0.006905288435518742, + -0.019379785284399986, + -0.002650665119290352, + 0.02207840420305729, + 0.004560532979667187, + -0.00865806732326746, + -0.011502199806272984, + -0.03545244038105011, + -0.004491083323955536, + -0.0004373679985292256, + 0.02661578729748726, + -0.025650104507803917, + 0.026880357414484024, + -0.0025613727048039436, + -0.01115164440125227, + 0.011118573136627674, + -0.0010467068059369922, + -0.008029713295400143, + 0.016152026131749153, + 0.012752295471727848, + -0.03121931292116642, + -0.014260347001254559, + -0.023798111826181412, + 0.01889032870531082, + 0.016906050965189934, + 0.003915642388164997, + -0.009286422282457352, + 0.008095855824649334, + -0.007394744083285332, + -0.003171538235619664, + 0.035029128193855286, + -0.016654709354043007, + 0.021192092448472977, + -0.02350708469748497, + -0.03113994188606739, + -0.0049970741383731365, + 0.007030959706753492, + -0.008254597894847393, + 0.006515047047287226, + -0.018850643187761307, + -0.015397999435663223, + 0.021641861647367477, + 0.017726220190525055, + 0.013089622370898724, + 0.008367040194571018, + -0.0011715509463101625, + 0.00030156897264532745, + -0.01186598464846611, + -0.0026457044295966625, + -0.011813070625066757, + -0.008869724348187447, + 0.00284413225017488, + 0.0030127959325909615, + -0.010688645765185356, + -0.029526060447096825, + 0.020133810117840767, + -0.001954514067620039, + 0.005757714156061411, + 0.012414967641234398, + -0.0013807270443066955, + 0.010648960247635841, + -0.004071077797561884, + 0.017474878579378128, + -0.005770942661911249, + 0.017660077661275864, + 0.025874989107251167, + 0.0018404180882498622, + -0.0018999464809894562, + 0.023242512717843056, + 0.001976010389626026, + 0.009517922066152096, + 0.025716247037053108, + 0.023454168811440468, + -0.009524536319077015, + 0.018123075366020203, + -0.003135159844532609, + -0.006779617629945278, + 0.006624182220548391, + 0.008882952854037285, + -0.0001675268285907805, + 0.0015518709551542997, + 0.003803200088441372, + 0.015556742437183857, + -0.009048309177160263, + -5.322413198882714e-5, + 0.012487724423408508, + -0.03550535440444946, + -0.01564934104681015, + 0.005529522430151701, + -0.0006142994971014559, + -0.009762649424374104, + -0.00018757631187327206, + -0.01519957184791565, + -0.02804446592926979, + -0.011409600265324116, + -0.00320460950024426, + 0.012858123518526554, + 0.006167798303067684, + -0.043971605598926544, + -0.014233889989554882, + -0.010787859559059143, + -0.0058403923176229, + 0.004451397806406021, + -0.011422828771173954, + -0.003156656166538596, + 0.012593553401529789, + 0.0029317711014300585, + -0.0009524535853415728, + 0.0005737871397286654, + 0.011290543712675571, + -0.0141016049310565, + 0.011012745089828968, + -0.01580808311700821, + 3.224452302674763e-5, + -0.0012963952030986547, + -0.007546871900558472, + -0.015569970943033695, + 0.008287669159471989, + 0.01447200309485197, + 0.01669439487159252, + -0.004295962397009134, + 0.017210306599736214, + -0.0067696962505578995, + -0.02743595466017723, + 0.0021661703940480947, + -0.010040448047220707, + 0.013056551106274128, + -0.0018883715383708477, + 0.024062681943178177, + 0.0027349968440830708, + 0.008777124807238579, + -0.001085565541870892, + -0.023784883320331573, + -0.00669032521545887, + -0.017567478120326996, + -0.0011103691067546606, + -0.0007606400176882744, + 0.0269068144261837, + 0.004504311829805374, + 0.0020636494737118483, + 0.008730825036764145, + -0.021747689694166183, + 0.0011310386471450329, + -0.01416774746030569, + 0.004481161944568157, + -0.007130173500627279, + -0.028361951932311058, + 0.03688111901283264, + -0.012593553401529789, + 0.0012906077317893505, + -0.04119361937046051, + 0.0021165634971112013, + 0.010562974959611893, + -0.008796967566013336, + -0.013863490894436836, + -0.01707802154123783, + -0.03336233273148537, + -0.007474115118384361, + -0.005589050706475973, + -0.011707241646945477, + 0.017514564096927643, + 0.023639369755983353, + -0.0008590271463617682, + 0.020834922790527344, + -0.009478236548602581, + -0.0025332618970423937, + 0.016495967283844948, + 0.018321502953767776, + -0.010007376782596111, + -0.002329873386770487, + -0.002850746503099799, + -0.006581189576536417, + -0.034579355269670486, + 0.004090920556336641, + -0.01762039214372635, + 0.015675798058509827, + -0.0028193288017064333, + 0.011369914747774601, + -0.025663333013653755, + 0.015278942883014679, + 0.028785264119505882, + 0.015860997140407562, + -0.013572463765740395, + -0.014366175048053265, + -0.0020686101634055376, + 0.006313312333077192, + 0.0035816223826259375, + -0.007732070982456207, + -9.864550520433113e-5, + 0.006085120141506195, + 0.01009336207062006, + 0.026205701753497124, + 0.010152890346944332, + -0.03426187112927437, + -0.021046578884124756, + 0.013585692271590233, + 0.010000762529671192, + -0.007851127535104752, + -0.02947314642369747, + 0.011508814059197903, + -0.009028466418385506, + -0.028441322967410088, + -0.007904041558504105, + -0.00381642859429121, + -0.003756900317966938, + 0.016204940155148506, + -0.006108270026743412, + 0.006472054403275251, + 0.04034699127078056, + -0.0025117655750364065, + 0.02222391776740551, + 0.0034394157119095325, + 0.0030260244384407997, + -0.022501716390252113, + -0.025650104507803917, + 0.0064257546328008175, + -0.011852756142616272, + -0.0017875040648505092, + -0.005139281041920185, + -0.007599785923957825, + 0.002200895454734564, + -0.020464522764086723, + 0.003826349973678589, + 0.026589330285787582, + 0.019472384825348854, + -0.00612149853259325, + -0.017355820164084435, + -0.0352407842874527, + -0.02018672414124012, + 0.011985041201114655, + 0.01001399103552103, + 0.009405478835105896, + -0.013651834800839424, + 0.03288610652089119, + 0.03251570835709572, + -0.010629117488861084, + 0.01489531621336937, + 0.00956422183662653, + -0.03338878974318504, + 0.026787757873535156, + 0.008042941801249981, + -0.021959345787763596, + -0.019789868965744972, + -0.008267826400697231, + 0.02251494489610195, + -0.02934086136519909, + 0.008975552394986153, + 0.010470375418663025, + 0.0013360807206481695, + -0.03706631809473038, + -0.006300083827227354, + 0.034367699176073074, + 0.015966827049851418, + -0.017038336023688316, + -0.007183087524026632, + -0.024843163788318634, + 0.001273245201446116, + 0.00320295593701303, + -0.0002383200917392969, + 0.011574956588447094, + 0.02987000346183777, + -0.007216158788651228, + 0.00748072937130928, + 0.023903939872980118, + -0.007156630512326956, + 0.003555165370926261, + -0.003568393876776099, + 0.02260754443705082, + 0.008446411229670048, + -0.001931364182382822, + -0.011852756142616272, + -0.017593935132026672, + 0.0058999210596084595, + 0.025610418990254402, + -0.010569589212536812, + -0.011429443024098873, + -0.00865145307034254, + 0.018956473097205162, + -0.00402477802708745, + -0.03561118245124817, + -0.004031392280012369, + 0.032700907438993454, + -0.009676664136350155, + -0.012844895012676716, + -0.012778752483427525, + -0.0042562768794596195, + 0.016072655096650124, + -0.009286422282457352, + 0.008691138587892056, + -0.001055801403708756, + 0.0052649518474936485, + 0.007659314200282097, + -0.018784500658512115, + 0.007844513282179832, + 0.014802716672420502, + -0.01008674781769514, + 0.0018685287795960903, + -0.007930498570203781, + 0.015212800353765488, + 0.0038594212383031845, + 0.0021975883282721043, + -0.010033833794295788, + -0.014987915754318237, + -0.0084993252530694, + 0.008228140883147717, + -0.004692818038165569, + 0.010265333577990532, + 0.012487724423408508, + 0.008168612606823444, + -0.0014212393434718251, + 0.020054439082741737, + -0.0019478999311104417, + -0.016125569120049477, + 0.008247983641922474, + 0.0064026047475636005, + -0.005152509547770023, + -0.02783280983567238, + -0.006885445676743984, + -0.006518354173749685, + 0.0695820227265358, + 0.01730290614068508, + -0.008863110095262527, + 0.01928718574345112, + 0.012527410872280598, + 0.011237629689276218, + 0.0018354573985561728, + -0.01240173913538456, + 0.011402986012399197, + 0.011191329918801785, + 0.009511307813227177, + -0.001570887048728764, + -0.008909409865736961, + -0.01566256955265999, + -0.01904907263815403, + 0.009332722052931786, + 0.0037139076739549637, + 0.0033716196194291115, + -0.008525782264769077, + 0.031034111976623535, + 0.0154244564473629, + 0.004811875056475401, + -0.03756900131702423, + 0.015305399894714355, + 0.00043943498167209327, + 0.004808567930012941, + 0.010033833794295788, + 0.00820829812437296, + 0.028970463201403618, + 0.01416774746030569, + -0.009504693560302258, + -0.014551374129951, + -0.018030475825071335, + -0.007533643394708633, + 0.01519957184791565, + -0.01088045910000801, + -0.003862728364765644, + 0.010470375418663025, + -0.0034989439882338047, + 0.024433080106973648, + -0.017435191199183464, + -0.017712991684675217, + 0.027621153742074966, + 0.005999134853482246, + -0.02963189035654068, + 0.01837441697716713, + 0.00691851694136858, + -0.0028424786869436502, + -0.0034228800795972347, + 0.002564679831266403, + -0.010119819082319736, + -0.00971634965389967, + -0.004960695747286081, + -0.005827163811773062, + -0.009610521607100964, + -0.014591059647500515, + -0.017646849155426025, + -0.019088758155703545, + 0.012699381448328495, + -0.007447658106684685, + 0.012150397524237633, + 0.013969318941235542, + 0.0035518582444638014, + -0.025134192779660225, + 0.020305780693888664, + 0.008572082035243511, + -0.008988780900835991, + -0.001398916239850223, + 0.007613014429807663, + 0.01701187901198864, + -0.004964002873748541, + 0.007474115118384361, + -0.018705129623413086, + -0.008373654447495937, + -0.013215293176472187, + 0.005526215303689241, + 0.008439796976745129, + 0.005572515074163675, + -0.01625785417854786, + 0.00899539515376091, + -0.012778752483427525, + 0.004669668152928352, + 0.0006163664511404932, + -0.02033223770558834, + 0.021800603717565536, + -0.009782492183148861, + -0.00396855641156435, + -0.00032575236400589347, + 0.008710981346666813, + -0.016271082684397697, + -0.004031392280012369, + 0.0021661703940480947, + -0.02034546621143818, + 0.018414102494716644, + -0.005430308170616627, + -0.011356686241924763, + -0.013850262388586998, + 0.006230633705854416, + 0.012805209495127201, + -0.0009367447346448898, + 0.017514564096927643, + 0.007077259477227926, + 0.001698211533948779, + 0.022197460755705833, + -0.010602660477161407, + 0.006088427267968655, + -0.0032905947882682085, + 0.017263220623135567, + -0.021496348083019257, + 0.016958964988589287, + 0.006422447506338358, + -0.006386069115251303, + 0.0060288989916443825, + -0.0014154518721625209, + -0.02055712416768074, + 0.006429061759263277, + 0.020914293825626373, + 0.006078505888581276, + -0.017369048669934273, + -0.007103716488927603, + -0.022501716390252113, + -0.010992901399731636, + -0.004071077797561884, + 0.0025927904061973095, + -0.004269505385309458, + -0.0002381133963353932, + -0.018718358129262924, + -0.015331856906414032, + 0.002539876149967313, + -0.010417461395263672, + -0.004901167470961809, + 0.020821694284677505, + 0.003697372041642666, + -0.010033833794295788, + -0.0041504488326609135, + -0.009875091724097729, + 0.013347579166293144, + -0.017144164070487022, + 0.013995775952935219, + -0.004157063085585833, + -0.004348876420408487, + 0.026509957388043404, + -0.003249255707487464, + 0.009398864582180977, + 0.0073484438471496105, + 0.0030061816796660423, + -0.014300032518804073, + -0.03410312905907631, + 0.021985802799463272, + 0.010080133564770222, + 0.020649723708629608, + -0.002463812241330743, + -0.0016742348670959473, + -0.0262321587651968, + -0.0038065072149038315, + 0.0038428856059908867, + -0.012276068329811096, + 0.002612633164972067, + 0.008089241571724415, + -0.01579485461115837, + -0.00986186321824789, + -0.005665114615112543, + -0.014855630695819855, + -0.02238265983760357, + -0.011317000724375248, + -0.005651886109262705, + 0.020385151728987694, + 0.012084254994988441, + -0.003515479853376746, + -0.007751913741230965, + -0.025491362437605858, + -0.00041876541217789054, + 0.003360044676810503, + -0.029076291248202324, + 0.006528275553137064, + 0.006723396480083466, + 0.00771222822368145, + 0.021813832223415375, + -0.007990027777850628, + 0.006832531653344631, + 0.009041694924235344, + -0.005880078300833702, + 0.010252105072140694, + -0.00914090871810913, + -0.008830038830637932, + 0.004878017585724592, + 0.019088758155703545, + -0.04545320197939873, + 0.003482408355921507, + 0.013651834800839424, + -0.0011988348560407758, + 0.019022615626454353, + 0.012950723059475422, + 0.003133506281301379, + -0.0033335876651108265, + 0.007308758329600096, + 0.013784119859337807, + 0.030425600707530975, + -0.0016717545222491026, + 0.002366251777857542, + 0.010939987376332283, + 0.006207483820617199, + -0.003608079394325614, + 0.006369533482939005, + 0.005215344950556755, + -0.003849499858915806, + 0.0004249662742950022, + -0.038891855627298355, + 0.007956955581903458, + 0.01273906696587801, + -0.029155662283301353, + -0.007804828230291605, + 0.0039586350321769714, + -0.010867230594158173, + -0.011416214518249035, + 0.00010717169789131731, + 0.003803200088441372, + -0.0008325701346620917, + 0.03317713364958763, + -0.0009383982978761196, + 0.026774529367685318, + 0.015027601271867752, + 0.0027068862691521645, + -0.018797729164361954, + 0.009775877930223942, + 0.002753186272457242, + 0.0003371206112205982, + 0.016601795330643654, + -0.001827189582400024, + -0.00735505810007453, + 0.04860159009695053, + -0.010232261382043362, + 0.002566333394497633, + 0.014022232964634895, + 0.01837441697716713, + 0.017276449128985405, + 0.010834159329533577, + 0.005301330238580704, + -0.001025210483931005, + 0.0025249940808862448, + -0.013810576871037483, + 0.011912284418940544, + -0.026787757873535156, + -0.014683659188449383, + 0.00533109437674284, + 0.016892822459340096, + 0.017633620649576187, + -0.015675798058509827, + -0.012904423289000988, + -2.147051054635085e-5, + -0.0006634930614382029, + -0.015556742437183857, + -0.007831284776329994, + 0.02841486595571041, + 0.011700627394020557, + 0.006964816711843014, + 0.015490598976612091, + -0.002344755455851555, + -0.014604288153350353, + 0.010794473811984062, + -0.01845378801226616, + -0.003644457785412669, + 0.004262891132384539, + 0.005655193235725164, + 0.004606832750141621, + 0.012534025125205517, + -0.019366556778550148, + 0.015927141532301903, + -0.0014427356654778123, + 0.004004935268312693, + 0.003017756622284651, + -0.022964714094996452, + 0.018493473529815674, + 0.01744842156767845, + -0.006316619459539652, + -0.0011938741663470864, + 0.0405321903526783, + -0.0038660354912281036, + 0.004243048373609781, + -0.008413339965045452, + -0.004071077797561884, + 0.037092775106430054, + -0.005605586338788271, + -0.028917549178004265, + 0.0033865016885101795, + -0.03341524675488472, + -0.011588185094296932, + 0.012507567182183266, + 0.005992520600557327, + 0.006938359700143337, + 0.010562974959611893, + -0.022356202825903893, + -0.0024985370691865683, + -0.005059909541159868, + 0.0005477435188367963, + -0.007784985471516848, + -0.011482357047498226, + 0.016760537400841713, + -0.0015899030258879066, + -0.00438194815069437, + 0.014048690907657146, + -0.026417357847094536, + -0.021416977047920227, + -0.02464473620057106, + 0.022634001448750496, + 0.004715967923402786, + 0.012653081677854061, + -0.010483603924512863, + -0.01951207034289837, + 0.029843546450138092, + 0.007665928453207016, + -0.0036643005441874266, + 0.004183520097285509, + 0.02342771179974079, + -0.021906431764364243, + -0.010820930823683739, + 0.005301330238580704, + 0.021416977047920227, + 0.0037833573296666145, + 0.004272812511771917, + -0.004530768841505051, + -0.003568393876776099, + 0.025120964273810387, + -0.0008689485257491469, + 0.012950723059475422, + 0.022104861214756966, + 0.011614642105996609, + 0.000666386797092855, + 0.02751532569527626, + -0.026509957388043404, + 0.004851560574024916, + 0.013903176411986351, + -0.011885827407240868, + 0.009987534023821354, + -0.00891602411866188, + 0.014061919413506985, + -0.01114503014832735, + 0.003803200088441372, + -0.023718740791082382, + -0.006362919230014086, + -0.00785774178802967, + 0.02140374854207039, + -0.017805591225624084, + -0.014313261024653912, + 0.010238876566290855, + 0.04431555047631264, + 0.02894400618970394, + -0.01152865681797266, + -0.0023761733900755644, + 0.006743239238858223, + -0.004054542165249586, + -0.011713855899870396, + -0.001655218773521483, + -0.012295911088585854, + -0.005645271856337786, + -0.02767406776547432, + 0.015212800353765488, + 0.013903176411986351, + -0.011568342335522175, + -0.0026622400619089603, + -0.014114833436906338, + 0.01934009976685047, + -0.001564272795803845, + 0.014180975966155529, + 0.0001796185242710635, + 0.003832964226603508, + 0.00857869628816843, + 0.0041504488326609135, + -0.02344094030559063, + 0.019393013790249825, + 0.02624538727104664, + 0.004775496665388346, + 0.01043068990111351, + -0.02078200876712799, + 0.0009607214014977217, + 0.01859930157661438, + -0.002897046273574233, + 0.016046198084950447, + -0.011389757506549358, + -0.0154244564473629, + 0.026642244309186935, + -0.008724210783839226, + 0.002506804885342717, + -0.0033798874355852604, + 0.011568342335522175, + 0.028203209862113, + -0.0008863109978847206, + 0.00155021739192307, + 0.0010698566911742091, + 0.012917651794850826, + 0.0052649518474936485, + 0.041907958686351776, + 0.023321883752942085, + -0.006852374412119389, + 0.004345569293946028, + -0.0178452767431736, + -0.00151135865598917, + 0.0071963160298764706, + -0.009385636076331139, + -0.013016865588724613, + 0.017792362719774246, + 0.00039830253808759153, + -0.011548499576747417, + 0.004696125164628029, + 0.014524917118251324, + -0.02472410723567009, + 0.023533541709184647, + 0.0011814723256975412, + 0.009835406206548214, + -0.010992901399731636, + 0.015569970943033695, + -0.010371161624789238, + -0.0035419368650764227, + -0.014419089071452618, + 0.012428196147084236, + 0.007579943165183067, + -0.0020371924620121717, + 0.005172352306544781, + 0.0019065607339143753, + 0.010715102776885033, + 0.0018900251016020775, + -0.0021595561411231756, + 0.012500952929258347, + 0.008611767552793026, + -0.008333968929946423, + 0.0312986820936203, + 0.03008165955543518, + 0.014035462401807308, + -0.010457146912813187, + 0.0002294321748195216, + -0.006931745447218418, + -0.002672161441296339, + -0.01144928578287363, + 0.004130606073886156, + 0.0017395506147295237, + -0.014789488166570663, + 0.020133810117840767, + -0.022647229954600334, + -0.005453458055853844, + -0.0015725406119599938, + -0.012262839823961258, + -0.02244880236685276, + 0.007136787753552198, + 0.010635731741786003, + -0.015834540128707886, + 0.020385151728987694, + -0.003667607670649886, + 0.018030475825071335, + 0.009061537683010101, + -0.002926810411736369, + -0.014352946542203426, + 0.026139559224247932, + 0.002521686954423785, + 0.008181841112673283, + -0.03817751631140709, + -0.03280673548579216, + -0.01972372643649578, + 0.027383040636777878, + 0.023798111826181412, + -0.00612480565905571, + 0.005794092547148466, + 0.0023381412029266357, + 0.02251494489610195, + 0.014763030223548412, + 0.01016611885279417, + 3.896213092957623e-5, + 0.02177414670586586, + 0.009498079307377338, + -0.0028540536295622587, + -0.00011998682748526335, + -0.01319545041769743, + 0.016906050965189934, + 0.020147038623690605, + -0.006032206118106842, + -0.008036327548325062, + 0.026853900402784348, + 0.01603296957910061, + -0.023480625823140144, + 0.0020454602781683207, + -0.0008772164001129568, + -0.00945177860558033, + -0.0003989226242993027, + -0.01776590570807457, + 0.010834159329533577, + -0.0016659670509397984, + -0.006984659470617771, + -0.01911521516740322, + -0.0011723777279257774, + 0.004411712288856506, + 0.00532778725028038, + 0.027197841554880142, + 0.004715967923402786, + 0.011508814059197903, + 0.006243862211704254, + -0.002961535472422838, + 0.005542750936001539, + 0.012448038905858994, + 0.024327252060174942, + -0.0071963160298764706, + 0.018625758588314056, + -0.0002221978356828913, + -0.011402986012399197, + -0.015860997140407562, + 0.01701187901198864, + 0.01988246850669384, + -0.0034394157119095325, + 0.004047927912324667, + 0.007361672352999449, + -0.003217838006094098, + -0.01813630387187004, + 0.009134294465184212, + -0.0033732731826603413, + 0.009749420918524265, + 0.0165488813072443, + 0.002701925579458475, + 0.017263220623135567, + 0.0019941998180001974, + 0.022422345355153084, + 0.016588566824793816, + 0.008624996058642864, + -0.004663053900003433, + -0.007024345453828573, + -0.014763030223548412, + -0.006964816711843014, + -0.009392250329256058, + -0.00043612782610580325, + 0.03778065741062164, + -0.02057035267353058, + -0.01564934104681015, + 0.005215344950556755, + -0.016681166365742683, + 0.020848151296377182, + -0.00547991506755352, + -0.006035513244569302, + 0.007427815347909927, + 0.006587803829461336, + -0.002199241891503334, + -0.010424075648188591, + 0.02599404565989971, + -0.027092013508081436, + -0.016667937859892845, + -0.002994606737047434, + 0.01837441697716713, + -0.0003334000939503312, + -0.0005609720246866345, + 0.011720470152795315, + -0.01949884183704853, + 0.000778829213231802, + 0.0012252918677404523, + 0.025650104507803917, + -0.0050202240236103535, + 0.013625377789139748, + 0.005202116444706917, + 0.010080133564770222, + 0.006217405200004578, + -0.021509576588869095, + 0.007877584546804428, + -0.02555750496685505, + 0.008803581818938255, + 0.005304637365043163, + -0.0006209137500263751, + -0.005754407029598951, + 0.003720521926879883, + 0.019763411954045296, + 0.010973058640956879, + 0.011932127177715302, + 0.02148311957716942, + 0.006247169338166714, + 0.003915642388164997, + 0.019975068047642708, + -0.020967207849025726, + -0.0004960695514455438, + -0.015397999435663223, + -0.01193874143064022, + -0.011667556129395962, + -0.005916456691920757, + -0.0055030654184520245, + -3.612006548792124e-5, + 0.02365259826183319, + -0.005218652077019215, + -0.005165738053619862, + 0.008823424577713013, + -0.011806456372141838, + -0.014604288153350353, + -0.005830470938235521, + 0.010794473811984062, + 0.017223535105586052, + 0.0038594212383031845, + 0.007573328912258148, + -0.021721232682466507, + 0.009603907354176044, + -0.007368286605924368, + -0.01152865681797266, + -0.007077259477227926, + -0.009121065959334373, + -0.0036047722678631544, + -0.004110763315111399, + -0.005618814844638109, + -0.015622884966433048, + -0.029843546450138092, + -0.02546490542590618, + 0.015397999435663223, + 0.0029020069632679224, + 0.01273906696587801, + 0.005496450699865818, + 0.005069830920547247, + 0.015768397599458694, + -0.017593935132026672, + 0.010047062300145626, + -0.024856392294168472, + -0.007229387294501066, + 0.006541504058986902, + 0.021800603717565536, + 0.0071434020064771175, + 0.014643973670899868, + -0.007831284776329994, + 0.015027601271867752, + -0.017977561801671982, + 0.020239638164639473, + 0.017739448696374893, + -0.011879213154315948, + -0.005228573456406593, + 0.025081278756260872, + -0.010126433335244656, + -0.015397999435663223, + -0.004977231379598379, + -0.004911088850349188, + 0.0108077023178339, + 0.0017197078559547663, + -0.009815563447773457, + -0.006237247958779335, + 0.0034162658266723156, + 0.024697650223970413, + -0.023864254355430603, + -0.00013548899732995778, + -0.02177414670586586, + -0.03121931292116642, + -0.0027366504073143005, + -0.0075865574181079865, + -0.0037436718121170998, + 0.01496145874261856, + 0.015569970943033695, + -0.015239257365465164, + 0.020662952214479446, + 0.010364547371864319, + -0.012772138230502605, + 0.024538908153772354, + -0.002214123960584402, + -0.007024345453828573, + 0.002400976838544011, + -0.030108116567134857, + 0.01383703388273716, + -0.011217786930501461, + -0.0020603423472493887, + -0.01224961131811142, + -0.02012058161199093, + 0.002940039150416851, + -0.017673306167125702, + 0.022885343059897423, + -0.012282682582736015, + -0.019869240000844002, + -0.0034857154823839664, + -0.01571548357605934, + 0.009914777241647243, + -0.0037602074444293976, + -0.008737439289689064, + 0.0035518582444638014, + 0.011627870611846447, + -0.009881705977022648, + -0.006700246594846249, + -0.0032459485810250044, + -0.013413721695542336, + -0.0084993252530694, + 0.006286855321377516, + -0.011779999360442162, + -0.008109084330499172, + 0.012977180071175098, + -0.00786435604095459, + -0.004805260803550482, + -0.05958126485347748, + -0.0004016096645500511, + -0.0028953927103430033, + -0.01201811246573925, + -0.0026969648897647858, + -1.3874446267436724e-5, + 0.021443434059619904, + 0.004507618956267834, + 0.0045473044738173485, + -0.018863871693611145, + 0.02796509489417076, + -0.0058668493293225765, + -0.01550382748246193, + -0.020371923223137856, + -0.004550611600279808, + 0.016297539696097374, + -0.005744485650211573, + -0.015464141964912415, + 0.000419178802985698, + 0.015292171388864517, + 0.008453025482594967, + -0.02352031320333481, + 0.010926758870482445, + 0.00012009017518721521, + -0.02222391776740551, + 0.007077259477227926, + -0.02676130086183548, + 0.003436108585447073, + 0.008737439289689064, + -0.018400873988866806, + -0.013056551106274128, + 0.0072426158003509045, + 0.01152865681797266, + 0.01828181743621826, + -0.008618381805717945, + -0.004520847462117672, + -0.019617898389697075, + 0.01858607307076454, + -0.010417461395263672, + -0.012355439364910126, + 0.0022934949956834316, + 0.008373654447495937, + 0.014485231600701809, + -0.009127680212259293, + 0.011085501872003078, + 0.0029069676529616117, + -0.004362105391919613, + 0.019842782989144325, + 0.006052048876881599, + 0.003219491569325328, + 0.014220661483705044, + -0.003879263997077942, + -0.002222391776740551, + -0.02502836473286152, + -0.0016006511868909001, + 0.0007780024316161871, + -0.018334731459617615, + 0.003915642388164997, + -0.018810957670211792, + 0.0037932787090539932, + -0.018308274447917938, + -0.008360425941646099, + -0.031721994280815125, + -0.009008623659610748, + 0.010615888983011246, + 0.03196011111140251, + 0.00102603726554662, + 0.02743595466017723, + -0.004851560574024916, + -0.004887938965111971, + 0.008671295829117298, + -0.006743239238858223, + -0.013083008117973804, + 0.017435191199183464, + -0.022700143977999687, + 0.00922689400613308, + -0.004391869530081749, + 0.008935866877436638, + -0.0062967767007648945, + -0.0011326922103762627, + 0.011045816354453564, + 0.008221526630222797, + -0.006376147735863924, + 0.011350071988999844, + 0.011753542348742485, + -0.005645271856337786, + -0.009438550099730492, + 0.006597725208848715, + 0.009028466418385506, + -0.0057907854206860065, + 0.014551374129951, + -0.0062339408323168755, + 0.008360425941646099, + 0.0002219911402789876, + -0.03008165955543518, + 0.00022591835295315832, + -0.02070263773202896, + 0.0042794267646968365, + 0.01911521516740322, + -0.010695260018110275, + 0.02153603360056877, + -0.003270752029493451, + 0.011158258654177189, + -0.022171003744006157, + 0.030637256801128387, + -0.009670049883425236, + -0.013691520318388939, + 0.01648273877799511, + 0.005102902185171843, + 0.015847768634557724, + -0.02389071136713028, + 0.008380268700420856, + -0.006184333935379982, + -0.022647229954600334, + -0.008783739060163498, + 0.014352946542203426, + 0.006564653944224119, + 0.023996539413928986, + 0.0077783712185919285, + 0.0013261593412607908, + -0.00015181796334218234, + 0.004008242394775152, + 0.006786231882870197, + -0.005139281041920185, + -0.01209086924791336, + -0.0047391182743012905, + 0.012547253631055355, + -0.01845378801226616, + -0.0016262814169749618, + 0.012368667870759964, + 0.008214912377297878, + 0.012044569477438927, + -0.01391640491783619, + -0.01560965646058321, + -0.015675798058509827, + -0.005936299450695515, + 0.010192575864493847, + -0.009630364365875721, + 0.0037370575591921806, + -0.005165738053619862, + 0.009498079307377338, + -0.014075147919356823, + 0.00994123425334692, + 0.02244880236685276, + 0.022872114554047585, + -0.03680174797773361, + -0.009160751476883888, + 0.009630364365875721, + -0.00248530856333673, + -0.0017230149824172258, + -0.014882087707519531, + 0.0067167822271585464, + -0.01800401881337166, + -0.00786435604095459, + 0.018030475825071335, + 0.0032922483514994383, + -0.017501335591077805, + -0.012791980989277363, + -0.005116130691021681, + -0.0032393343281000853, + -0.011925512924790382, + -0.0016494313022121787, + -0.019856011494994164, + 0.012983794324100018, + -0.012937494553625584, + -0.002538222586736083, + 0.014339718036353588, + -0.022356202825903893, + 0.02244880236685276, + -0.016125569120049477, + 0.004038006532937288, + -0.0016370295779779553, + 0.014908544719219208, + -0.016588566824793816, + 0.003839578479528427, + -0.03915642574429512, + 0.04611462727189064, + -0.018691901117563248, + 0.0008714288705959916, + 0.0030491743236780167, + -0.005870156455785036, + 0.006498511414974928, + -0.0009681624360382557, + -0.007870970293879509, + 0.013744434341788292, + 0.010146276094019413, + -0.01678699441254139, + 0.003151695476844907, + -0.02502836473286152, + -0.005162430927157402, + 0.0103579331189394, + -0.00834719743579626, + 0.004034699406474829, + -0.014313261024653912, + -0.01043068990111351, + -0.012791980989277363, + -0.012262839823961258, + -0.0023182984441518784, + -0.008241369388997555, + 0.002415858907625079, + 0.00042083236621692777, + -0.007718842476606369, + 0.011012745089828968, + 0.027700524777173996, + 0.00891602411866188, + -0.024247881025075912, + -0.00124348106328398, + 0.01866544410586357, + 0.008982166647911072, + 0.009266579523682594, + 0.017514564096927643, + 0.009881705977022648, + 0.012719224207103252, + 0.012957337312400341, + 0.002319952007383108, + 0.0021777453366667032, + -0.0009937926661223173, + 0.009630364365875721, + -0.009048309177160263, + -0.00548322219401598, + -0.005810628179460764, + -0.009623750112950802, + 0.005453458055853844, + 0.0030723242089152336, + -0.009921391494572163, + -0.007236001547425985, + 0.0036742219235748053, + -0.040029507130384445, + -0.006346383597701788, + 0.008545625023543835, + 0.010483603924512863, + -0.008036327548325062, + 0.019088758155703545, + -0.010291790589690208, + -0.006141341291368008, + 0.011574956588447094, + -0.023930396884679794, + -0.0009334376081824303, + -0.03132513910531998, + -0.004299269523471594, + -0.02025286667048931, + -0.009775877930223942, + 0.006164491176605225, + 0.006190948188304901, + 0.02682744339108467, + -0.0024075910914689302, + -0.015411227941513062, + -0.01715739257633686, + 0.011369914747774601, + -0.006551425438374281, + -0.012772138230502605, + 0.0038825711235404015, + -0.006597725208848715, + -0.0015650995774194598, + -0.029526060447096825, + -0.0018801037222146988, + -0.006597725208848715, + -0.00945177860558033, + -0.030293315649032593, + 0.004262891132384539, + 0.005856927949935198, + 0.006660561077296734, + 0.011799842119216919, + 0.0008524128934368491, + 0.0005361685180105269, + 0.0026175938546657562, + -0.003763514570891857, + 0.005294715985655785, + -0.007176473271101713, + 0.00547991506755352, + 0.00561220059171319, + -0.015675798058509827, + 0.02252817340195179, + 0.007116944994777441, + -0.0011434403713792562, + 0.01168739888817072, + 0.013420335948467255, + -0.017488107085227966, + -0.026814214885234833, + 0.007255844306200743, + 0.003849499858915806, + -0.02087460830807686, + -0.016522424295544624, + 0.01912844367325306, + -0.020279323682188988, + 0.02140374854207039, + -0.006644025444984436, + 0.00553944380953908, + -0.008664681576192379, + 0.0036874504294246435, + 0.015384770929813385, + -0.011323614977300167, + -0.008247983641922474, + -0.0010814316337928176, + 0.003750286065042019, + 0.042146071791648865, + 0.015900682657957077, + -0.011813070625066757, + -0.01066218875348568, + -0.017712991684675217, + 0.01601974107325077, + -0.004930931609123945, + -0.0014567909529432654, + 0.0038858784828335047, + 0.0009193822625093162, + 0.004987152758985758, + 0.0020768779795616865, + -0.01217024028301239, + 0.0031318527180701494, + 0.0068986741825938225, + -0.009729578159749508, + 0.0035882366355508566, + -0.0027730290312319994, + 0.010483603924512863, + 0.012223154306411743, + -0.0182950459420681, + -0.020385151728987694, + 0.011694013141095638, + 0.007361672352999449, + -0.016231397166848183, + -0.007824670523405075, + -0.0007325293845497072, + 0.038971226662397385, + -0.023851025849580765, + 0.0036808361764997244, + 0.004444783553481102, + -0.020953979343175888, + -0.017183849588036537, + 0.0029003534000366926, + -0.0002391468733549118, + 0.00906815193593502, + 0.0005804013926535845, + 0.028229666873812675, + -0.018771272152662277, + -0.015411227941513062, + -0.014379403553903103, + 0.029578976333141327, + -0.0028705892618745565, + 0.0021082956809550524, + -0.0020107354503124952, + 0.018546387553215027, + 0.004223205614835024, + 0.023321883752942085, + -0.019776640459895134, + 0.0002827596617862582, + -0.00468951091170311, + 0.018030475825071335, + 0.0035121727269142866, + -0.009187208488583565, + -0.015755169093608856, + -0.03135159611701965, + 0.002071917289867997, + -0.012421581894159317, + 0.00604543462395668, + -0.005592357832938433, + -0.020504210144281387, + -0.0007498918566852808, + -0.0049441601149737835, + 0.036166779696941376, + 0.0017759291222319007, + -0.01217685453593731, + 0.01883741468191147, + 0.0017395506147295237, + -0.04037344828248024, + 0.03373273089528084, + 0.0010880458867177367, + -0.0043951766565442085, + -0.001392301986925304, + 0.005549365188926458, + -0.00683914590626955, + -0.012375282123684883, + -0.04518863186240196, + -0.026893585920333862, + -0.013003637082874775, + 0.013407107442617416, + 0.008717595599591732, + -0.009041694924235344, + -0.02025286667048931, + 0.014908544719219208, + 0.016892822459340096, + 0.014908544719219208, + 0.000385694089345634, + 0.02594113163650036, + 0.012626624666154385, + -0.002544836839661002, + -0.006458825897425413, + -0.0003768061869777739, + -0.01973695494234562, + -0.0028259430546313524, + 0.015821311622858047, + 0.02427433803677559, + -0.007599785923957825, + 0.004362105391919613, + -0.00625709118321538, + 0.03690757602453232, + -0.0010607620934024453, + -0.004292655270546675, + -0.004031392280012369, + 0.029155662283301353, + 0.004315805155783892, + -0.007851127535104752, + 0.005006995517760515, + -0.011998269706964493, + -0.019710497930645943, + -0.009359179064631462, + 0.015106972306966782, + -0.006657253950834274, + -0.003194688120856881, + -0.0070375739596784115, + 0.01058281771838665, + -0.008479482494294643, + -0.004391869530081749, + 0.0037469789385795593, + 0.012467881664633751, + 0.022316517308354378, + -0.006551425438374281, + 0.002812714548781514, + 0.006022284738719463, + -0.018123075366020203, + 0.004590297117829323, + 0.013493092730641365, + -0.01883741468191147, + -0.011310386471450329, + -0.0028325573075562716, + -0.003515479853376746, + 0.005721335764974356, + 0.012626624666154385, + -0.013149150647222996, + 0.0068986741825938225, + 0.009193822741508484, + -0.0010243837023153901, + -0.018930014222860336, + 0.0009632017463445663, + 0.004795339424163103, + 0.010820930823683739, + 0.003272405592724681, + 0.00041897210758179426, + -0.01949884183704853, + -0.02947314642369747, + 0.0055030654184520245, + 0.01866544410586357, + 0.0059528350830078125, + 0.0034559513442218304, + 0.0025712940841913223, + -0.010040448047220707, + -0.0021760917734354734, + -0.0009375715162605047, + -0.011918898671865463, + -0.016138797625899315, + 0.01919458620250225, + 0.0008565468015149236, + 0.014485231600701809, + 0.020596809685230255, + 0.015689026564359665, + -0.0019330177456140518, + -0.0019363248720765114, + -0.0005307944375090301, + 0.006627489347010851, + 0.004114070441573858, + 0.01601974107325077, + 0.008089241571724415, + 0.010986287146806717, + 0.009339336305856705, + 0.015384770929813385, + -0.0025845225900411606, + 0.0011211172677576542, + -0.014908544719219208, + 0.005427001044154167, + 0.021033350378274918, + 0.00258782971650362, + 0.020292552188038826, + -0.0022306595928967, + 0.002220738213509321, + -0.0072426158003509045, + -0.016522424295544624, + -0.013638606294989586, + 0.01678699441254139, + -0.032621536403894424, + -0.0017627006163820624, + -0.020676180720329285, + 0.042595840990543365, + 0.018268588930368423, + 0.0012517488794401288, + -0.005040066782385111, + 0.021668318659067154, + -0.003654379164800048, + 0.002620900981128216, + -0.01935332827270031, + -0.002971456851810217, + 0.004342262167483568, + -0.01813630387187004, + -0.011932127177715302, + -0.017884962260723114, + 0.00284578581340611, + 0.00010438130993861705, + -0.006220712326467037, + 0.01432648953050375, + 0.006984659470617771, + -0.014789488166570663, + -0.012937494553625584, + 0.009021852165460587, + -0.03106056898832321, + 0.017210306599736214, + -0.01209748350083828, + -0.014207432977855206, + 0.012037955224514008, + -0.005274873226881027, + -0.008400111459195614, + -0.005228573456406593, + 0.01776590570807457, + -0.012606781907379627, + 0.02329542674124241, + 0.008750667795538902, + -0.00949146505445242, + 0.004047927912324667, + 0.01375766284763813, + -0.01889032870531082, + -0.01686636544764042, + -0.003763514570891857, + 0.00033112644450739026, + -0.0042496626265347, + -0.03592866659164429, + -0.006293469574302435, + 0.012983794324100018, + -0.0269068144261837, + -0.011760156601667404, + -0.014088376425206661, + -0.016085883602499962, + -0.00663410359993577, + 0.004391869530081749, + 0.012256225571036339, + -0.004362105391919613, + 0.004666361026465893, + -0.0028854713309556246, + -0.02541199140250683, + 0.006422447506338358, + 0.003942099399864674, + -0.03696049004793167, + 0.01762039214372635, + 0.013598920777440071, + 0.00812231283634901, + 0.002604365348815918, + 0.020676180720329285, + 0.012282682582736015, + -0.00978910643607378, + 0.014114833436906338, + -0.0021512883249670267, + 0.013546006754040718, + -0.002291841432452202, + 0.013440178707242012, + -0.005436922423541546, + 0.02410236746072769, + -0.009312879294157028, + -0.010364547371864319, + 0.015755169093608856, + -0.01664148084819317, + 0.011912284418940544, + 0.008525782264769077, + -0.0013360807206481695, + -0.023586455732584, + 0.0040975348092615604, + -0.012547253631055355, + 0.02554427646100521, + 0.00028110609855502844, + -0.01447200309485197, + -0.011462514288723469, + -0.006376147735863924, + 0.004438169300556183, + 0.0016494313022121787, + -0.004209977108985186, + -0.017355820164084435, + 0.00843318272382021, + -0.00876389630138874, + 0.009577450342476368, + 6.49024368613027e-5, + 0.015054058283567429, + -0.0094848508015275, + -0.019763411954045296, + -0.01130377221852541, + 0.0012236383045092225, + 0.0103579331189394, + -0.0211656354367733, + 0.02131114900112152, + 0.0001497510093031451, + 0.02926149033010006, + -0.01303670834749937, + -0.0031401205342262983, + -0.02608664520084858, + -0.013956090435385704, + 0.005152509547770023, + 0.004666361026465893, + -0.029314404353499413, + -0.0035584724973887205, + -0.0003883811295963824, + -0.018718358129262924, + 0.008479482494294643, + -0.012414967641234398, + 0.016615023836493492, + -0.0016998650971800089, + -0.007401358336210251, + 0.009808949194848537, + -0.008267826400697231, + -0.00010370954987592995, + 0.00489455321803689, + -0.01791141927242279, + -0.002453890861943364, + 0.01594037003815174, + 0.04005596414208412, + 0.02206517569720745, + 0.009127680212259293, + -0.008300897665321827, + -0.012864737771451473, + -0.029235033318400383, + 0.0063728406094014645, + 0.00553613668307662, + -0.009339336305856705, + -0.0033583911135792732, + 0.002283573616296053, + -0.005026838276535273, + -0.01799079030752182, + 0.0039123352617025375, + -0.014723344705998898, + 0.021443434059619904, + 0.0097957206889987, + 0.00397186353802681, + -0.0158742256462574, + 0.005185580812394619, + 0.013744434341788292, + -0.02177414670586586, + -0.007725456729531288, + -0.014670430682599545, + 0.013598920777440071, + -0.006925131194293499, + -0.007520414888858795, + -0.029764175415039062, + 0.016429824754595757, + -0.03846854344010353, + 0.01611234061419964, + 0.009259965270757675, + -0.00735505810007453, + 0.0016882901545614004, + -0.009769263677299023, + 0.023189598694443703, + -0.008009870536625385, + -0.00020669565128628165, + -0.007130173500627279, + 0.007083873730152845, + -0.033150676637887955, + -0.019300414249300957, + 0.005298023112118244, + 0.0023315269500017166, + -0.01845378801226616, + -7.988786819623783e-5, + -0.0032591770868748426, + 0.014882087707519531, + -0.035717010498046875, + 0.002688697073608637, + 0.014763030223548412, + 0.0018817572854459286, + -0.011330229230225086, + 0.004957388620823622, + -0.0020256175193935633, + 0.013288050889968872, + 0.004246355500072241, + -0.02153603360056877, + -0.016760537400841713, + 0.014061919413506985, + 0.000771388178691268, + -0.007672542706131935, + 0.001032651518471539, + 0.018771272152662277, + -0.0019578211940824986, + -0.000950800022110343, + 0.024022996425628662, + -0.01919458620250225, + 0.01739550568163395, + -0.00553613668307662, + 0.010794473811984062, + 0.005856927949935198, + 0.013175607658922672, + -0.003832964226603508, + 0.0003980958426836878, + -0.006792846135795116, + -0.00899539515376091, + -0.012825052253901958, + -0.027330126613378525, + 0.005569207947701216, + 0.004338955041021109, + -0.0021364062558859587, + -0.006858988665044308, + -0.008089241571724415, + 0.012362053617835045, + 0.006551425438374281, + 0.021800603717565536, + 0.007950341328978539, + -0.0014634052058681846, + -0.004841639194637537, + -0.021297920495271683, + -0.009954462759196758, + -0.003591543762013316, + 0.01330789364874363, + 0.0013980894582346082, + -0.02502836473286152, + -0.01152865681797266, + 0.00596937071532011, + 0.008089241571724415, + 0.014670430682599545, + 0.00274161109700799, + 0.0034228800795972347, + -0.007163244765251875, + -0.007401358336210251, + 0.0116807846352458, + -0.013863490894436836, + -0.021139178425073624, + -0.0108077023178339, + -0.006551425438374281, + -0.0027961789164692163, + -0.005347630009055138, + 0.01640336774289608, + -0.021562490612268448, + 0.017951104789972305, + 0.0018321502720937133, + 0.004954081494361162, + 0.0286529790610075, + 0.025822075083851814, + 0.005334401503205299, + 0.011971812695264816, + 0.005192195065319538, + 0.026033731177449226, + 0.01738227717578411, + -0.014432317577302456, + -0.0059296851977705956, + -0.0025051513221114874, + 0.004114070441573858, + 0.013546006754040718, + 0.008380268700420856, + 0.009961077012121677, + 0.005228573456406593, + -0.004262891132384539, + 0.018268588930368423, + 0.01058943197131157, + -0.0014113179640844464, + 0.002417512470856309, + 0.04428909346461296, + -0.01477625872939825, + 0.002979724667966366, + -0.005086366552859545, + -0.0028160216752439737, + 0.037383802235126495, + 0.0169986505061388, + 0.01603296957910061, + -0.0035650867503136396, + -0.012375282123684883, + 0.0012393471552059054, + 0.012653081677854061, + -0.002850746503099799, + 0.014273575507104397, + -0.02193288877606392, + -0.0004497697518672794, + -0.022263603284955025, + 0.0031831131782382727, + -0.0013154111802577972, + 0.023599684238433838, + -0.006369533482939005, + 0.024247881025075912, + -0.011138415895402431, + -0.021588947623968124, + -0.007725456729531288, + 0.009928005747497082, + 0.011568342335522175, + 0.013929633423686028, + 0.009722963906824589, + -0.010602660477161407, + 0.0027151540853083134, + 0.0037238290533423424, + 0.0037701288238167763, + 0.010682031512260437, + 0.00381642859429121, + -0.014286804012954235, + -0.004411712288856506, + 0.005294715985655785, + 0.010027219541370869, + 0.005089673679322004, + 0.0032525628339499235, + 0.008744053542613983, + -0.018030475825071335, + -0.0012484417529776692, + -0.00024906828184612095, + 0.014829173684120178, + 0.006465440150350332, + 0.0017031722236424685, + -0.005360858514904976, + -0.003515479853376746, + -0.004233126994222403, + 0.0012963952030986547, + -0.014736573211848736, + 0.011350071988999844, + 0.008095855824649334, + 0.024684421718120575, + 0.006964816711843014, + -0.006154569797217846, + -0.015913911163806915, + -0.009808949194848537, + -0.005192195065319538, + -0.009597293101251125, + -0.008618381805717945, + -0.0182950459420681, + 0.007619628682732582, + 0.00956422183662653, + -0.009431935846805573, + 0.000950800022110343 + ], + "eb3977da-715c-4778-8726-b82dc5678d6f": [ + 0.005561144091188908, + -0.013116763904690742, + -0.0017134951194748282, + 0.04994635283946991, + 0.007042383775115013, + 0.027857694774866104, + -0.019749857485294342, + 0.01897025853395462, + -0.024310516193509102, + 0.03960366174578667, + 0.009712512604892254, + 0.02918301336467266, + 0.002882894594222307, + -0.028559334576129913, + 0.00547019112855196, + 0.009952888824045658, + -0.017761878669261932, + 0.015254166908562183, + 0.0068929605185985565, + -0.018567465245723724, + 0.04555460810661316, + 0.008952402509748936, + -0.025336988270282745, + 0.03019649349153042, + -0.005132364574819803, + -0.024245548993349075, + -0.0044599599204957485, + -0.012434614822268486, + -0.015007293783128262, + 0.010407655499875546, + 0.011174261569976807, + 0.008153312839567661, + -0.009848942048847675, + 0.013552040793001652, + 0.01292836107313633, + -0.02112715132534504, + -0.013668980449438095, + 0.012395634315907955, + 0.007289256900548935, + -0.011999337933957577, + -0.031158000230789185, + 0.026922175660729408, + -0.02185477688908577, + -0.030430372804403305, + -0.014461574144661427, + 0.011713485233485699, + -0.028351441025733948, + -0.008315729908645153, + 0.023076150566339493, + 0.008874442428350449, + 0.004917974583804607, + -0.042150355875492096, + 0.020698370411992073, + 0.01877535879611969, + 0.03713493049144745, + -0.015371106564998627, + -0.007737526670098305, + 0.04932267218828201, + 0.014084767550230026, + -0.03713493049144745, + 0.04784143343567848, + -0.03248332068324089, + -0.01102483831346035, + 0.004164361394941807, + 0.012876387685537338, + -0.013006321154534817, + 0.017021259292960167, + -0.015942813828587532, + -0.04077306389808655, + -0.0004827833326999098, + -0.0029348679818212986, + 0.019425025209784508, + -0.02241349034011364, + -0.0015470180660486221, + 0.05220719054341316, + -0.007204800378531218, + 0.02733796089887619, + 0.021114157512784004, + 0.024895215407013893, + -0.0015721926465630531, + -0.017644939944148064, + 0.01350006740540266, + -0.015033280476927757, + -0.03165174648165703, + 0.050881870090961456, + 0.011161268688738346, + -0.034042518585920334, + -0.030118534341454506, + 0.003917488269507885, + -0.00783497653901577, + -0.015825873240828514, + 0.0020155899692326784, + 0.021750830113887787, + -0.017917798832058907, + 0.0024005172308534384, + 0.01802174560725689, + 0.019048217684030533, + -0.0012368024326860905, + -0.009043356403708458, + -0.0357576385140419, + -0.02003571204841137, + 0.017021259292960167, + 0.01057656854391098, + 0.00025560311041772366, + 0.03970760852098465, + 0.011187255382537842, + 0.00451842974871397, + -0.011265215463936329, + -0.0061458442360162735, + 0.05389632284641266, + -0.03393857181072235, + -0.042851995676755905, + 0.020321564748883247, + -0.006233548745512962, + -0.04121483489871025, + -0.03508198633790016, + 0.012947850860655308, + 0.003469218499958515, + -0.020698370411992073, + -0.039525702595710754, + 0.027909668162465096, + -0.007308746688067913, + 0.006506409030407667, + 0.024999162182211876, + -0.006305012386292219, + 0.014370620250701904, + 0.012109781615436077, + -0.00954359956085682, + 0.06444690376520157, + 0.015462059527635574, + -0.054156191647052765, + 0.009186282753944397, + 0.015384100377559662, + 0.008893933147192001, + -0.02406364306807518, + -0.01676139235496521, + 0.04118884727358818, + 0.038070451468229294, + -0.0030014587100595236, + 0.0019457507878541946, + -0.027987627312541008, + 0.016098732128739357, + -0.019762851297855377, + 0.021633891388773918, + -0.030820174142718315, + -0.009719009511172771, + -0.034432318061590195, + 0.05368842929601669, + -0.018099704757332802, + 0.03986353054642677, + -0.013370133936405182, + -0.028377428650856018, + -0.02403765544295311, + 0.013591020368039608, + 0.036277372390031815, + 0.004570403136312962, + -0.028169535100460052, + 0.03206753358244896, + 0.00968002900481224, + 0.025168076157569885, + 0.026402441784739494, + -0.04495691508054733, + 0.01855447143316269, + 0.020750343799591064, + 0.0733863115310669, + 0.00560986902564764, + 0.03981155529618263, + 0.0676172748208046, + -0.045710526406764984, + 0.020334558561444283, + 0.02646740898489952, + -0.012005834840238094, + -0.010394662618637085, + 0.000420658994698897, + 0.010901401750743389, + -0.027441907674074173, + 0.0028601563535630703, + -0.007627083454281092, + 0.03968162462115288, + 0.0029511095490306616, + -0.01405878085643053, + -0.014292660169303417, + -0.013837894424796104, + 0.008484642952680588, + 0.007302250247448683, + 0.02563583478331566, + 0.00427480461075902, + 0.005460445769131184, + -0.03162575885653496, + -0.010219252668321133, + 0.021594909951090813, + -0.03570566326379776, + 0.007152826990932226, + 0.04402139410376549, + -0.007588103413581848, + -0.05420816317200661, + 0.014032794162631035, + -0.004466456361114979, + 0.00565859442576766, + 0.015617979690432549, + -0.035549744963645935, + -0.001374044455587864, + -0.027156054973602295, + 0.01874937117099762, + -0.05005029961466789, + 0.02694816142320633, + -0.021425997838377953, + -0.0008222340256907046, + 0.02520705573260784, + -0.021088171750307083, + 0.04550263285636902, + -0.04254015535116196, + 0.018645424395799637, + 0.014097760431468487, + -0.019074205309152603, + -0.0009468887583352625, + 0.0029641028959304094, + 0.015903832390904427, + 0.003498453414067626, + -0.04329376667737961, + 0.00035366215161047876, + -0.05607920140028, + -0.005983427632600069, + -0.03305502608418465, + -0.04599637910723686, + -0.007633579894900322, + -0.015929820016026497, + 0.009757989086210728, + -0.022478457540273666, + -0.03471817076206207, + 0.024505415931344032, + 0.004619128070771694, + 0.007847970351576805, + -0.0014105881564319134, + 0.011167765595018864, + 0.016137713566422462, + 0.018034739419817924, + 0.0055416543036699295, + 0.034068506211042404, + -0.018307598307728767, + 0.0032353384885936975, + 0.02638944797217846, + 6.303794361883774e-5, + -0.022010697051882744, + -0.007347726728767157, + -0.006840987130999565, + -0.020607417449355125, + 0.027909668162465096, + 0.007204800378531218, + -0.03279516100883484, + -0.007679056841880083, + 0.010037345811724663, + 0.04984240606427193, + -0.040305301547050476, + -0.012642507441341877, + 0.03399054706096649, + 0.03716091811656952, + -0.05576736107468605, + 0.0002765142417047173, + -0.032925091683864594, + -0.0036381317768245935, + 0.02988465316593647, + 0.018424538895487785, + 0.0005258237360976636, + 0.06158837303519249, + -0.01303880475461483, + 0.049712471663951874, + -0.011076811701059341, + -0.01737207919359207, + 0.0295468270778656, + 0.01330516766756773, + -0.01274645421653986, + -0.019061211496591568, + 0.0009079087758436799, + -0.024999162182211876, + 0.022595396265387535, + -0.017748884856700897, + -0.021335044875741005, + -0.0160597525537014, + -0.014474567025899887, + -0.0162806399166584, + -0.020412517711520195, + 0.03601750358939171, + 0.020685378462076187, + 0.018112698569893837, + 0.029234986752271652, + -0.02842940017580986, + -0.02467432990670204, + -0.04963451251387596, + -0.04739965870976448, + 0.005327264312654734, + -0.004476201254874468, + 0.010121801868081093, + -0.007445176597684622, + 0.01933407224714756, + 0.003381513524800539, + -0.030118534341454506, + 0.002332302276045084, + -0.028559334576129913, + 0.007860963232815266, + -0.025401955470442772, + 0.009257745929062366, + 0.011297698132693768, + -0.020919257774949074, + -0.00021398386161308736, + -0.02042551152408123, + 0.047945380210876465, + 0.024141602218151093, + -0.02918301336467266, + 0.019983738660812378, + 0.01369496714323759, + -0.05150555074214935, + -0.020321564748883247, + -0.020516464486718178, + 0.025038141757249832, + 0.021919744089245796, + -0.018814338371157646, + 0.026012642309069633, + -0.039135903120040894, + 0.016488533467054367, + 0.010102312080562115, + 0.024180583655834198, + -0.03960366174578667, + 0.028689267113804817, + 0.00877049658447504, + -0.05857392027974129, + 0.01991877146065235, + -0.029650773853063583, + 0.00921876635402441, + -0.0076400768011808395, + -0.03573165088891983, + 0.030534319579601288, + -0.04264410212635994, + -0.017502011731266975, + -0.026922175660729408, + -0.018060725182294846, + -0.036615196615457535, + -0.02423255704343319, + -0.05067397654056549, + -0.020841296762228012, + -0.009959385730326176, + -0.03645927831530571, + 0.016020772978663445, + -0.0028942637145519257, + -0.004547664895653725, + -0.006412207148969173, + 0.025609849020838737, + 0.01622866652905941, + -0.002048073336482048, + 0.005882729310542345, + 0.0007686365279369056, + 0.011914881877601147, + -0.0005030853790231049, + 0.01846351847052574, + 0.04786742106080055, + -0.009140806272625923, + 0.009926902130246162, + 0.01075847540050745, + 0.004638617858290672, + -0.01858045905828476, + 0.01799575798213482, + -0.02529800869524479, + -0.024518409743905067, + 0.00018891080981120467, + -0.00832222681492567, + 0.014448580332100391, + 0.021335044875741005, + 0.016683433204889297, + -0.011674504727125168, + 0.016527513042092323, + -0.012707474641501904, + -0.02064639702439308, + -0.018502498045563698, + -0.01882733218371868, + 0.04851708561182022, + -0.03139188140630722, + 0.014123747125267982, + -0.014643480069935322, + -0.038798075169324875, + 0.03859018161892891, + -0.01880134455859661, + 0.003910991828888655, + 0.03097609244287014, + -0.02246546372771263, + 0.03386061266064644, + 0.020529458299279213, + -0.04708781838417053, + -0.013733947649598122, + -0.013565034605562687, + -0.0008023380069062114, + -0.008114333264529705, + 0.006840987130999565, + -0.017618952319025993, + -0.027831707149744034, + 0.006685066968202591, + 0.02605162188410759, + 0.001966865034773946, + -0.009816459380090237, + 0.010180272161960602, + -0.01586485281586647, + 0.03825235739350319, + -0.0016201055841520429, + -0.011830424889922142, + -0.033756665885448456, + 0.005525412503629923, + -0.022309543564915657, + 0.008725019171833992, + -0.006223803851753473, + 0.05472789704799652, + -0.017527999356389046, + 0.020126665011048317, + -0.01032319851219654, + -0.001046774908900261, + 0.0019717374816536903, + 0.03092411905527115, + 0.009387679398059845, + -0.015527026727795601, + 0.009082335978746414, + -0.04958253726363182, + -0.011706988327205181, + 0.043917447328567505, + 0.018489506095647812, + -0.03308101370930672, + -0.002134154085069895, + 0.03762867674231529, + 0.018866311758756638, + 0.017216159030795097, + 0.030534319579601288, + -0.031859640032052994, + 0.02020462416112423, + -0.007964910008013248, + 0.06169231981039047, + -0.024154596030712128, + 0.002785444725304842, + -0.007659566588699818, + -0.017722899094223976, + 0.002057818230241537, + -0.018645424395799637, + -0.015176206827163696, + -0.012090291827917099, + 0.013668980449438095, + 0.026766255497932434, + 0.02738993428647518, + -0.004164361394941807, + -0.009368189610540867, + -0.01882733218371868, + -0.01754099316895008, + 0.020360544323921204, + -0.0022397248540073633, + -0.028247494250535965, + -0.007139833644032478, + 0.012265701778233051, + 0.009660539217293262, + 0.005255801137536764, + 0.004420979879796505, + -0.027623815461993217, + 0.04228028655052185, + -0.015241173096001148, + 0.005898970644921064, + -0.0398375429213047, + -0.01693030633032322, + -0.014448580332100391, + 0.019905777648091316, + -0.003193110227584839, + 0.027104081586003304, + -0.026142574846744537, + -0.003670615144073963, + 0.008828965947031975, + 0.00528828427195549, + -0.00457365158945322, + -0.0018174416618421674, + 0.013668980449438095, + -0.04165660962462425, + 0.012181244790554047, + -0.006597361993044615, + -0.024271536618471146, + -0.0006204313831403852, + -0.01938604563474655, + 0.008692536503076553, + -0.005145357921719551, + 0.015682946890592575, + -0.0036543733440339565, + -0.010394662618637085, + 0.0451648086309433, + -0.004209838341921568, + 0.025336988270282745, + -0.028507361188530922, + -0.047529593110084534, + -0.021088171750307083, + -0.01891828514635563, + -0.0003266603744123131, + 0.006977417040616274, + 0.012895877473056316, + 0.02694816142320633, + -0.011304195038974285, + 0.020165644586086273, + 0.0217378381639719, + 0.013928847387433052, + -0.005782030988484621, + -0.013980820775032043, + -0.0014081519329920411, + -0.037056971341371536, + 0.0026587597094476223, + -0.013578027486801147, + -0.02454439550638199, + 0.019243119284510612, + 0.008653555996716022, + -0.016410572454333305, + -0.02260839007794857, + -0.0016940050991252065, + -0.024245548993349075, + 0.029053080826997757, + -0.04703584685921669, + -0.0230241771787405, + 0.0047263228334486485, + -0.00022048053506296128, + -0.013798913918435574, + -0.033704690635204315, + 0.03632934391498566, + -0.023517923429608345, + 0.005242807790637016, + -0.008432669565081596, + -0.030170507729053497, + -0.00949812214821577, + -0.0038362799677997828, + -0.012181244790554047, + -0.011999337933957577, + -0.01064803171902895, + -0.0025954172015190125, + -0.013967826962471008, + -0.010225748643279076, + 0.020412517711520195, + -0.014942326582968235, + -0.0168133657425642, + 0.03201555833220482, + 0.0059769307263195515, + -0.012200734578073025, + -0.002523954026401043, + 0.007925929501652718, + 0.0038817566819489002, + -0.014981307089328766, + 0.021672870963811874, + 0.0010881911730393767, + -0.010654528625309467, + -0.01267499104142189, + 0.0053727407939732075, + 0.007412693463265896, + 0.05607920140028, + -0.00783497653901577, + -0.011693994514644146, + -0.02842940017580986, + 0.01131718885153532, + -0.046152301132678986, + -0.008426172658801079, + -0.008114333264529705, + -0.027234014123678207, + 0.034432318061590195, + 0.004700336139649153, + 0.001726488466374576, + -0.03859018161892891, + -0.024128610268235207, + 0.0034302384592592716, + 0.00289913616143167, + 0.014721440151333809, + -0.04040924832224846, + 0.013526054099202156, + -0.034848105162382126, + -0.005067397840321064, + 0.02554488182067871, + 0.015371106564998627, + 0.019957751035690308, + -0.0006248978315852582, + 0.0492447130382061, + 0.013207717798650265, + -0.04144871607422829, + 0.02078932523727417, + 0.009790472686290741, + -0.013188228011131287, + -0.025986654683947563, + -0.004369006492197514, + 0.01899624429643154, + -0.021283071488142014, + 0.0057333060540258884, + -0.0073607200756669044, + 0.023608876392245293, + 0.035211917012929916, + -0.017411058768630028, + -0.012584038078784943, + -0.018658418208360672, + 0.014786407351493835, + -0.002949485322460532, + 0.001625790144316852, + -0.0022981949150562286, + -0.008081849664449692, + 0.0064576840959489346, + 0.020880278199911118, + 0.007243780419230461, + 0.007627083454281092, + 0.00910832267254591, + 0.008575595915317535, + 0.032613251358270645, + 0.021698856726288795, + -0.0006362670101225376, + -0.03674513101577759, + -0.019593937322497368, + 0.009283732622861862, + -0.02590869553387165, + 0.005496177822351456, + 0.0063667306676507, + -0.007100853603333235, + 0.02481725625693798, + -0.040227342396974564, + 0.01855447143316269, + -0.0202306117862463, + 0.009777478873729706, + 0.03058629296720028, + 0.006879967171698809, + 0.014669466763734818, + 0.03942175582051277, + -0.03656322509050369, + 0.01835957169532776, + -0.01709921844303608, + 0.03632934391498566, + -0.02694816142320633, + -0.004677597898989916, + 0.008783489465713501, + -0.016527513042092323, + -0.024635348469018936, + -0.01210328470915556, + -0.00438524829223752, + -0.007581606507301331, + -0.012934857979416847, + 0.01737207919359207, + -0.03250930458307266, + 0.0295468270778656, + -0.01835957169532776, + 0.02392071671783924, + 0.015579000115394592, + -0.027623815461993217, + 0.001553514739498496, + -0.0068929605185985565, + -0.012272197753190994, + 0.013785921037197113, + 0.02842940017580986, + -0.01882733218371868, + 0.053740404546260834, + -0.022530430927872658, + 0.03126194700598717, + 0.012220224365592003, + 0.04053918272256851, + -0.012649004347622395, + 0.006058139260858297, + -0.01656649261713028, + 0.03721288964152336, + 0.01715119183063507, + -0.03217148035764694, + -0.0016444680513814092, + 0.0372648648917675, + -0.021698856726288795, + -0.016475539654493332, + 0.02149096317589283, + -0.053740404546260834, + 0.04693190008401871, + 0.007659566588699818, + 0.006441442295908928, + 0.0071983034722507, + -0.01835957169532776, + 0.0073282369412481785, + -0.00315088196657598, + 0.05691077560186386, + 0.0011564061278477311, + 0.0043917447328567505, + -0.0006955490680411458, + 0.009706015698611736, + -0.015215186402201653, + -0.0018483009189367294, + -0.004891987890005112, + 0.015553013421595097, + -0.0035796617157757282, + -0.02028258517384529, + -0.01712520606815815, + -0.012207231484353542, + -0.05223317816853523, + 0.02236151695251465, + -0.01420170720666647, + -0.004096146672964096, + -0.011758961714804173, + -0.01533212698996067, + -0.007048880215734243, + -0.003696601837873459, + 0.010212755762040615, + 0.03973359614610672, + -0.024076636880636215, + -0.022296549752354622, + -0.015903832390904427, + 0.03383462503552437, + -0.011499094776809216, + -0.0162806399166584, + 0.017112212255597115, + 0.0013196348445490003, + -0.0378885418176651, + -0.011973351240158081, + -0.028195520862936974, + 0.0018986499635502696, + 0.019619924947619438, + 0.029053080826997757, + -0.01824263297021389, + -0.03206753358244896, + 0.013889866881072521, + -0.024973176419734955, + -0.0018612941494211555, + -0.004404738079756498, + -0.007588103413581848, + -0.006327750626951456, + 0.0014836755581200123, + -0.01255155447870493, + -0.012330668047070503, + 0.028585320338606834, + -0.002738343784585595, + 0.002091925824061036, + -0.01199284102767706, + 0.024297522380948067, + -0.016748398542404175, + -0.038824062794446945, + -0.031080039218068123, + 0.04888089746236801, + 0.030352413654327393, + -0.003803796600550413, + 0.007406197022646666, + -0.011875901371240616, + 0.0016249780310317874, + 0.01476042065769434, + 0.014110754244029522, + -0.0080298762768507, + 0.026714282110333443, + -0.02336200326681137, + 0.01121973805129528, + 0.00341074843890965, + 0.002093549817800522, + -0.038148410618305206, + -0.0023712823167443275, + -0.01637159287929535, + 0.010557078756392002, + -0.03240535780787468, + -0.00929022952914238, + 0.00039325118996202946, + -0.009010872803628445, + -0.00264089391566813, + 0.01204481441527605, + 0.0061458442360162735, + 0.02702612243592739, + -0.023933710530400276, + 0.04641216620802879, + -0.005041411146521568, + 0.012317674234509468, + 0.017437046393752098, + 0.0019246366573497653, + 0.022400496527552605, + -0.020464491099119186, + 0.053376588970422745, + -0.0021763823460787535, + 0.004021435044705868, + -0.004765302874147892, + -0.03061228059232235, + -0.007919433526694775, + -0.014721440151333809, + 0.018450524657964706, + 0.030352413654327393, + 0.03817439824342728, + -0.00959557294845581, + 0.026896188035607338, + 0.007549123372882605, + 0.013902860693633556, + -0.00027489010244607925, + -0.03573165088891983, + -0.024804262444376945, + -0.001802824204787612, + 0.00446320790797472, + 0.001093875733204186, + 0.0035406819079071283, + -0.021802803501486778, + -0.03614743798971176, + 0.03978556767106056, + -0.011174261569976807, + -0.020516464486718178, + 0.00968002900481224, + 0.03869412839412689, + 0.004079904872924089, + -0.012986831367015839, + 0.0035471785813570023, + -0.001285527367144823, + -0.005090136080980301, + 0.01382490061223507, + -0.003910991828888655, + 0.0042910464107990265, + 0.009673532098531723, + -0.01438361406326294, + -0.009504619054496288, + -0.01855447143316269, + 0.0021130398381501436, + 0.004154616501182318, + -0.022699343040585518, + 0.04674999415874481, + -0.00025925750378519297, + 0.0010297212284058332, + -0.003488708520308137, + -0.010290715843439102, + -0.013149247504770756, + -0.03027445450425148, + 0.01644955202937126, + 0.00470683304592967, + 0.021231098100543022, + 0.018320592120289803, + 0.009582579135894775, + -0.016670439392328262, + -0.01038166880607605, + 0.04402139410376549, + 0.010641535744071007, + 0.03651124984025955, + -0.014942326582968235, + -0.03248332068324089, + -0.03019649349153042, + 0.013227207586169243, + -0.0143966069445014, + 0.003016076283529401, + -0.010875415056943893, + 0.008114333264529705, + -0.015215186402201653, + 0.00213740230537951, + 0.01826861873269081, + -0.00896539632230997, + -0.040227342396974564, + -0.019775845110416412, + 0.024505415931344032, + 0.00873151607811451, + 0.0187233854085207, + -0.044359222054481506, + -0.03061228059232235, + -0.05057002976536751, + 0.011862908490002155, + -0.03635533154010773, + -0.015306140296161175, + 0.024414462968707085, + 0.0014390110736712813, + 0.0006642838707193732, + 0.03570566326379776, + -0.005116122774779797, + 0.019178152084350586, + 0.004729571286588907, + 0.0028780221473425627, + 0.03250930458307266, + -0.000898163765668869, + 0.01082993857562542, + 0.013266187161207199, + -0.027182040736079216, + 0.02736394852399826, + 0.0016144210239872336, + -0.010797454975545406, + 0.015163213014602661, + 0.004375502932816744, + 0.005366244353353977, + -0.011070314794778824, + -0.010979361832141876, + 0.0004742564633488655, + 0.009517612867057323, + -0.018333585932850838, + 0.009900915436446667, + -0.005538405850529671, + 0.012564548291265965, + 0.01835957169532776, + -8.176660776371136e-5, + -0.02154293656349182, + 0.05587130784988403, + -0.01952897198498249, + 0.0017540992703288794, + -0.033340878784656525, + 0.004999182652682066, + -0.009478632360696793, + -0.03323693200945854, + 0.019827818498015404, + -0.004943961277604103, + -0.012116278521716595, + 0.005057652946561575, + 0.007925929501652718, + -0.04950457811355591, + 0.02025659754872322, + 0.0014942326815798879, + 0.0020188381895422935, + -0.009017369709908962, + 0.0004405550134833902, + 0.0025515647139400244, + -0.0016680184053257108, + -0.009114819578826427, + -0.04495691508054733, + -0.012759448029100895, + -0.002835793886333704, + 0.015436073765158653, + -0.007919433526694775, + -0.013383127748966217, + 0.018788352608680725, + 0.004654859658330679, + -0.03271719813346863, + -0.02308914251625538, + -0.019619924947619438, + 0.039499714970588684, + -0.020048703998327255, + 0.006847483571618795, + -0.00554815074428916, + 0.0008543112780898809, + 0.01086891908198595, + 0.0023404231760650873, + 0.00827025342732668, + -0.009173288941383362, + -0.01368197426199913, + -0.006873470265418291, + -0.00896539632230997, + -0.02003571204841137, + -0.030872147530317307, + -0.0187233854085207, + 0.006711053662002087, + 0.03175569325685501, + 0.007705043535679579, + 0.0064901672303676605, + 0.014240686781704426, + 0.01443558745086193, + -0.014877360314130783, + -0.011882398277521133, + 0.006181575823575258, + -0.018333585932850838, + 0.002329054055735469, + -0.017813852056860924, + -0.020074691623449326, + -0.0067435372620821, + -0.005489680916070938, + 0.022855263203382492, + 0.0013691718922927976, + -0.032249439507722855, + -0.023595882579684258, + -0.026181556284427643, + -0.006951430346816778, + 0.020581431686878204, + -0.040227342396974564, + 0.025986654683947563, + -0.02347894385457039, + -0.0014520044205710292, + -0.010251735337078571, + -0.013220710679888725, + 0.02289424277842045, + -0.02457038313150406, + -0.0400194488465786, + -0.01027122512459755, + 0.04599637910723686, + -0.005411720834672451, + 0.01880134455859661, + 0.012005834840238094, + 0.03601750358939171, + -0.011343175545334816, + 0.005447452422231436, + -0.012532064691185951, + -0.022257570177316666, + -0.006964423693716526, + -0.026792241260409355, + -0.006827993784099817, + -0.0017947034211829305, + -0.020516464486718178, + 0.010570071637630463, + -0.006649335380643606, + 0.010030848905444145, + 0.0020123415160924196, + -0.011862908490002155, + -0.006447938736528158, + -0.012441111728549004, + -0.021387018263339996, + -0.00910832267254591, + -0.029728733003139496, + -0.025674816220998764, + -0.04199443385004997, + 0.005999668966978788, + 0.020529458299279213, + -0.008153312839567661, + 0.04337172955274582, + -0.014409600757062435, + -0.006698060315102339, + -0.02733796089887619, + -0.008062359876930714, + 0.007847970351576805, + 0.012395634315907955, + -0.008107836358249187, + -0.000594038690906018, + 0.031054053455591202, + 0.00035995576763525605, + -0.03438034653663635, + -0.016657445579767227, + 0.01572192646563053, + 0.015773899853229523, + 0.011745967902243137, + 1.4680937965749763e-5, + -0.011518584564328194, + 0.017021259292960167, + -0.04820524528622627, + 0.05576736107468605, + 0.005151854362338781, + -0.028689267113804817, + 0.01045313198119402, + 0.04594440758228302, + 0.002379403216764331, + -0.006132850889116526, + 0.01986679807305336, + 0.020867284387350082, + 0.02025659754872322, + -0.041058916598558426, + -0.024128610268235207, + -0.009348698891699314, + -0.004219583235681057, + 0.004216334782540798, + 0.006486918777227402, + 0.02090626396238804, + -0.023595882579684258, + -0.006789013743400574, + 0.024050649255514145, + 0.006100367289036512, + -0.02496018260717392, + -0.01350006740540266, + 0.025869715958833694, + 0.0015494542894884944, + 0.01589084044098854, + 0.008192293345928192, + -0.003816789947450161, + -0.0010760099394246936, + -0.007867460139095783, + -0.0025726789608597755, + -0.0220496766269207, + -0.0018450525822117925, + -0.0003232090384699404, + -0.0011564061278477311, + -0.015436073765158653, + -0.013980820775032043, + -0.05262297764420509, + -0.015825873240828514, + -0.006048393901437521, + 0.02146497741341591, + 0.016722412779927254, + -0.032197464257478714, + -0.014526540413498878, + 0.01382490061223507, + 0.03438034653663635, + 0.005145357921719551, + -0.0035244401078671217, + -0.006603858899325132, + 0.005710567347705364, + 0.0254669226706028, + 0.001541333505883813, + -0.007692050188779831, + 0.008218280039727688, + -0.0029105055145919323, + -0.005080391187220812, + -0.047269728034734726, + -0.005252552684396505, + 0.016462545841932297, + 0.010946878232061863, + 0.004934216383844614, + -0.014331640675663948, + 0.010303708724677563, + -0.020750343799591064, + -0.01330516766756773, + -0.022205596789717674, + -0.012824414297938347, + 0.0016014276770874858, + -0.009394176304340363, + 0.009277235716581345, + -0.024661336094141006, + 0.005142109468579292, + 0.010524595156311989, + -2.9539518436649814e-5, + -0.04144871607422829, + 0.02493419498205185, + 0.016501525416970253, + 0.009166792966425419, + -0.02447943016886711, + -0.030378399416804314, + -0.001903522526845336, + -0.03419843688607216, + -0.01673540659248829, + -0.004914726130664349, + -0.04771149903535843, + 0.004849759396165609, + 0.011031335219740868, + 0.017813852056860924, + 0.0001626196171855554, + 0.010719495825469494, + -0.019412031397223473, + -0.01018676906824112, + -0.006918947212398052, + 0.019567951560020447, + -0.002981968689709902, + -0.015267159789800644, + 0.0020383282098919153, + 0.0331849604845047, + 0.01835957169532776, + 0.011687498539686203, + -0.006444690749049187, + -0.03172970563173294, + -0.004661356098949909, + 0.0202306117862463, + 0.020867284387350082, + 0.045060861855745316, + -0.027415921911597252, + 0.012233218178153038, + -0.003972710110247135, + -0.003979206550866365, + 0.0295468270778656, + 0.030690239742398262, + -0.0036608700174838305, + 0.02073735184967518, + 0.00039325118996202946, + 0.0020724358037114143, + -0.02993662655353546, + -0.0005810454022139311, + -0.0005465318681672215, + 0.024245548993349075, + 0.011128785088658333, + -0.0026051620952785015, + -0.012330668047070503, + -0.005496177822351456, + -0.012545057572424412, + -0.023855749517679214, + 0.015514032915234566, + 0.006574623752385378, + 0.0269741490483284, + -0.006613603793084621, + 0.01916515827178955, + -0.005320767872035503, + 0.00445671146735549, + -0.011226234957575798, + -0.021919744089245796, + -0.013707960955798626, + -0.0162806399166584, + -0.00782198365777731, + -0.015111240558326244, + 0.010927388444542885, + -0.014175720512866974, + 0.0010922516230493784, + 0.02149096317589283, + -0.009121316485106945, + -0.00100211042445153, + -0.0014666218776255846, + -0.02369982935488224, + -0.038434263318777084, + 0.013785921037197113, + -0.0383303165435791, + 0.009173288941383362, + -0.0006281461683101952, + -0.0036088968627154827, + -0.002426503924652934, + -0.020997216925024986, + 0.021919744089245796, + -0.014240686781704426, + -0.012415125034749508, + 0.028377428650856018, + 0.022010697051882744, + -0.02389472909271717, + 0.004846511408686638, + 0.0025791756343096495, + -0.03942175582051277, + 0.02199770323932171, + 0.006519402377307415, + 0.026922175660729408, + -0.008114333264529705, + -0.0014576889807358384, + 0.0027756995987147093, + -0.012902374379336834, + 0.005882729310542345, + 0.032249439507722855, + -0.0029576062224805355, + 0.021244090050458908, + 0.034016530960798264, + -0.014747426845133305, + -0.008744509890675545, + -0.01748901978135109, + -0.026922175660729408, + 0.007692050188779831, + -0.012415125034749508, + 0.005869735963642597, + -0.01513722725212574, + 0.018957264721393585, + -0.005557896103709936, + -0.016345607116818428, + -0.01802174560725689, + 0.02277730405330658, + 0.01637159287929535, + 0.03250930458307266, + -0.008991383016109467, + -0.03183365240693092, + -0.01991877146065235, + -0.00847814604640007, + 0.010232245549559593, + -0.0015185951488092542, + -0.03547178581357002, + 0.0134870745241642, + -0.003605648409575224, + -0.004830269608646631, + -0.020711364224553108, + -0.001960368361324072, + -0.0018547974759712815, + 0.007620586548000574, + -0.024531403556466103, + -0.00756861362606287, + -0.015007293783128262, + -0.0013529302086681128, + -0.027130069211125374, + -0.03495205193758011, + -0.005808017682284117, + -0.005233062896877527, + -0.02775374799966812, + 0.012623017653822899, + 0.010738985612988472, + -0.024973176419734955, + -0.04893287271261215, + 0.007698546629399061, + 0.01928209885954857, + 0.00630176393315196, + -0.007757016457617283, + 0.027597827836871147, + 0.0042585632763803005, + -0.0037680650129914284, + -0.026168562471866608, + 0.013259691186249256, + 0.010050338692963123, + 0.0019311333307996392, + 0.00016180753300432116, + 0.016124719753861427, + -0.008614576421678066, + -0.014994299970567226, + 0.016527513042092323, + 0.01690431870520115, + -0.01913917250931263, + -0.00011683844059007242, + -0.019230125471949577, + -0.027597827836871147, + 0.00832222681492567, + 0.019606931135058403, + -0.0151502201333642, + -0.01707323268055916, + -0.018515491858124733, + 0.0013943464728072286, + 0.021763823926448822, + -0.009770982898771763, + 0.013655987568199635, + -0.007484156638383865, + -0.004723074845969677, + -0.001046774908900261, + -0.0006435757386498153, + 0.006470676977187395, + 0.0029884653631597757, + -0.0017589717172086239, + -0.006970920134335756, + -0.035133957862854004, + 0.01331816054880619, + 0.007718036882579327, + -0.0069254436530172825, + -0.014344633556902409, + 0.035211917012929916, + 0.013006321154534817, + 0.014643480069935322, + -0.018229639157652855, + -0.01121973805129528, + 0.020893270149827003, + 0.01249308418482542, + -0.009848942048847675, + -0.02132205106317997, + -0.016189686954021454, + -0.01495532039552927, + 0.008114333264529705, + 0.015046273358166218, + -0.03347081318497658, + 0.022452469915151596, + -0.007932426407933235, + -0.0040571666322648525, + 0.0025450680404901505, + 0.012739958241581917, + -0.011174261569976807, + 0.021114157512784004, + 0.021413004025816917, + -0.022127637639641762, + -0.018320592120289803, + -0.010823441669344902, + 0.0262205358594656, + 0.00024017354007810354, + -0.005512419156730175, + -0.020321564748883247, + 0.011557565070688725, + -0.01816467195749283, + -0.005015424452722073, + 0.0440993532538414, + -0.01661846600472927, + 0.007464666850864887, + -0.03243134543299675, + -0.03565369173884392, + 0.002228355733677745, + 0.009504619054496288, + 0.004265059716999531, + 0.008562603034079075, + -0.005453949328511953, + -0.0025223297998309135, + 0.017553985118865967, + 0.016410572454333305, + 0.00656163040548563, + 0.004820524714887142, + 0.0005278539611026645, + -0.012038318440318108, + 0.0005696762236766517, + -0.0054734391160309315, + -0.019944757223129272, + -0.006815000437200069, + 0.0046256245113909245, + 0.010037345811724663, + -0.00026088167214766145, + -0.02571379579603672, + 0.013045300729572773, + -0.0084066828712821, + 0.018866311758756638, + 0.009881425648927689, + -0.007542626932263374, + 0.021088171750307083, + -0.0059866756200790405, + 0.009816459380090237, + 0.0018889050697907805, + 0.016748398542404175, + 0.012824414297938347, + -0.00566509086638689, + -0.0031183985993266106, + 0.034822117537260056, + -0.0006760591058991849, + 0.021646883338689804, + 0.022348523139953613, + 0.025973662734031677, + 0.00528178783133626, + 0.0037648167926818132, + 0.0033132985699921846, + 0.0023371747229248285, + 0.010862422175705433, + 0.01369496714323759, + -0.00016992836026474833, + 0.00801688339561224, + 0.017670925706624985, + 0.011590048670768738, + -0.02694816142320633, + -0.00024403093266300857, + 0.018840325996279716, + -0.0492447130382061, + -0.026038628071546555, + 0.0037745616864413023, + 0.026740267872810364, + 0.004313784651458263, + -0.008738012984395027, + -0.007451673503965139, + -0.026922175660729408, + -0.00794542022049427, + 0.004255314823240042, + 0.007549123372882605, + 0.008172803558409214, + -0.036615196615457535, + -0.017060238867998123, + -0.00206756335683167, + -0.010933885350823402, + 0.0006293643382377923, + -0.02957281470298767, + -0.0029202504083514214, + 0.019035225734114647, + 0.02047748491168022, + 0.011343175545334816, + -0.0050284177996218204, + 0.003569916822016239, + -0.007627083454281092, + 0.0038265350740402937, + -0.0020496975630521774, + -0.008679542690515518, + 0.005012175999581814, + 0.0073282369412481785, + -0.014448580332100391, + -0.002915377961471677, + 0.019970744848251343, + 0.019048217684030533, + -0.007549123372882605, + 0.015423079952597618, + -0.003475715173408389, + -0.01323370449244976, + -0.004349516239017248, + 0.0022803291212767363, + 0.0063667306676507, + -0.005362995900213718, + 0.012174747884273529, + 0.012187741696834564, + 0.007795996498316526, + 0.002912129508331418, + -0.03289910405874252, + -0.004758806433528662, + -0.013383127748966217, + -0.002205617493018508, + -0.009634552523493767, + 0.01229818444699049, + -0.012837408110499382, + 0.012545057572424412, + 0.005496177822351456, + -0.019074205309152603, + -0.009264242835342884, + -0.009030362591147423, + 0.003482211846858263, + -0.0035634201485663652, + -0.02803960070014, + 0.032951079308986664, + -0.0002549940545577556, + 0.005561144091188908, + -0.03419843688607216, + 0.006594114005565643, + 0.003184989560395479, + -0.008218280039727688, + -0.02658434771001339, + -0.020269591361284256, + -0.04888089746236801, + -0.014331640675663948, + -0.002817927859723568, + -0.00885495264083147, + 0.01913917250931263, + 0.011369161307811737, + -0.00216176500543952, + 0.0215169508010149, + -0.016800371930003166, + -0.011622531339526176, + 0.02884518727660179, + 0.02127007767558098, + -0.004151368048042059, + -0.006853980477899313, + -0.003586158389225602, + 0.0007572674076072872, + -0.034094490110874176, + -0.008653555996716022, + -0.02428453043103218, + 0.007964910008013248, + -0.006395965348929167, + 0.02423255704343319, + -0.02806558832526207, + 0.007555620279163122, + 0.030404387041926384, + 0.005103129427880049, + -0.00611336063593626, + -2.37661151913926e-5, + -0.008608079515397549, + 2.3994514776859432e-5, + 0.008159809745848179, + -0.008237769827246666, + -8.034546044655144e-5, + 0.008569099940359592, + 0.008218280039727688, + 0.016670439392328262, + 0.012889381498098373, + -0.03367870673537254, + -0.021413004025816917, + -0.00853661634027958, + 0.005606621038168669, + 0.003452976932749152, + -0.04482698068022728, + 0.01807371899485588, + 0.0024752288591116667, + -0.018034739419817924, + -0.021451983600854874, + -0.007178813684731722, + -0.0007921869400888681, + 0.0022478457540273666, + -0.0013407489750534296, + 0.015514032915234566, + 0.0374467708170414, + -0.013422107324004173, + 0.04417731240391731, + 0.009264242835342884, + 0.0005871360190212727, + -0.022686351090669632, + -0.035185933113098145, + -0.0022462215274572372, + -0.005515667609870434, + 0.007042383775115013, + 0.004079904872924089, + -0.0042910464107990265, + 0.010414152406156063, + -0.020243603736162186, + 0.017385073006153107, + 0.019230125471949577, + -0.0031086537055671215, + -0.009874928742647171, + -0.015202193520963192, + -0.02949485369026661, + -0.013902860693633556, + 0.015228180214762688, + 0.00891342293471098, + 0.008517126552760601, + -0.013552040793001652, + 0.028611307963728905, + 0.028325455263257027, + -0.013630000874400139, + 0.007731029763817787, + 0.003920736722648144, + -0.017047245055437088, + 0.02554488182067871, + -0.003491956740617752, + -0.011382155120372772, + -0.018424538895487785, + -0.0076725599355995655, + 0.02386874333024025, + -0.019801830872893333, + 0.004930967930704355, + 0.012174747884273529, + 0.006970920134335756, + -0.02731197513639927, + -0.0200097244232893, + 0.021140143275260925, + 0.025817742571234703, + -0.029598800465464592, + 0.005788527429103851, + -0.027156054973602295, + 0.006847483571618795, + 0.001600615563802421, + 0.005626110825687647, + 0.005707319360226393, + 0.013142750598490238, + -0.014539533294737339, + 0.0009192779543809593, + 0.03165174648165703, + -0.008725019171833992, + 0.01816467195749283, + -0.005622862372547388, + 0.010297211818397045, + 0.002433000598102808, + -0.0147734135389328, + -0.0008941033738665283, + -0.015514032915234566, + 0.011050825007259846, + 0.021867770701646805, + -0.010920891538262367, + -0.010531092062592506, + -0.01863243244588375, + 0.024336501955986023, + 0.007795996498316526, + -0.044255275279283524, + -0.01529314648360014, + 0.01933407224714756, + 0.002627900568768382, + -0.012428117915987968, + -0.021309057250618935, + -0.014851373620331287, + 0.012765944935381413, + -0.01196035835891962, + 0.003771313466131687, + 0.008042870089411736, + -0.010050338692963123, + -0.005583882797509432, + -0.01773589290678501, + 0.012694480828940868, + 0.023413976654410362, + -0.020217617973685265, + 0.0007576734060421586, + -0.0006853980594314635, + 0.001248171553015709, + 0.006064635701477528, + -0.0073282369412481785, + -0.009868432767689228, + -0.011122288182377815, + -0.021114157512784004, + 0.01312326081097126, + 0.0063212537206709385, + -0.0010142916580662131, + 0.01012829877436161, + 0.0023712823167443275, + 0.013409114442765713, + 0.005655345972627401, + -0.0019652408082038164, + -0.026571355760097504, + 0.01369496714323759, + 0.004446966573596001, + 0.001030533341690898, + -0.038044463843107224, + -0.009160296060144901, + -0.008419676683843136, + 0.05581933632493019, + 0.011063818819820881, + 0.009686525911092758, + 0.01835957169532776, + 0.003136264393106103, + 0.004719826392829418, + -0.0002765142417047173, + 0.0033392852637916803, + 0.0015153468120843172, + 0.02062041126191616, + 0.011408141814172268, + -0.0020594424568116665, + -0.005109626334160566, + -0.011648518033325672, + -0.011018342338502407, + 0.002814679639413953, + 0.003810293274000287, + 0.0074386801570653915, + -0.018697397783398628, + 0.03765466436743736, + 0.013214214704930782, + 0.003677111817523837, + -0.04040924832224846, + 0.019464004784822464, + -0.0010630165925249457, + -0.003388010198250413, + 0.00420334143564105, + 0.003972710110247135, + 0.03541981056332588, + 0.0202306117862463, + 0.0060094138607382774, + -0.0016436559380963445, + -0.010173775255680084, + -0.005772285629063845, + 0.02457038313150406, + -0.004872498102486134, + 0.0025385713670402765, + -0.0030940361320972443, + -0.0074386801570653915, + 0.017398064956068993, + -0.009641049429774284, + -0.02277730405330658, + 0.030482346192002296, + 0.008530119433999062, + -0.024947188794612885, + 0.00955659244209528, + 0.005385734140872955, + -0.007425686810165644, + -0.005375989247113466, + 0.0027594580315053463, + -0.015449066646397114, + -0.007445176597684622, + -0.00497319595888257, + 0.00016688305186107755, + -0.01891828514635563, + -0.013396120630204678, + -0.00745816994458437, + 0.0008859825320541859, + 0.004219583235681057, + -0.00801688339561224, + 0.008971893228590488, + 0.018957264721393585, + 0.007854466326534748, + -0.017307111993432045, + 0.000762545911129564, + 0.013344147242605686, + -0.005947695579379797, + 0.007133336737751961, + -0.004635369870811701, + 0.01737207919359207, + -0.00794542022049427, + 0.0051291161216795444, + -0.023634864017367363, + -0.02473929524421692, + -0.012382641434669495, + 0.011063818819820881, + 0.005811265669763088, + 0.012460601516067982, + -0.007152826990932226, + 0.015501040033996105, + -0.00891342293471098, + -0.003498453414067626, + -0.0019782341551035643, + -0.008776992559432983, + 0.015760906040668488, + -0.007243780419230461, + -0.0016444680513814092, + -0.002748088911175728, + 0.011037832126021385, + -0.012720467522740364, + -0.014331640675663948, + -0.0018547974759712815, + -0.00975149217993021, + 0.028533346951007843, + -0.005681332666426897, + -0.01120674517005682, + -0.003816789947450161, + -0.011304195038974285, + 0.00885495264083147, + -0.006116609089076519, + 0.009887922555208206, + 0.005203827749937773, + -0.0057755340822041035, + 0.013850887306034565, + 0.0026685046032071114, + 0.0034334869123995304, + 0.011629028245806694, + 0.024076636880636215, + -0.01964591071009636, + 0.02064639702439308, + 0.0006715925992466509, + -0.0194769985973835, + 0.01228519156575203, + -0.010797454975545406, + -0.008315729908645153, + 0.014539533294737339, + 0.028923148289322853, + -0.0011937619419768453, + -0.010946878232061863, + 0.0012173124123364687, + -0.01617669314146042, + -0.013798913918435574, + 0.011180758476257324, + 0.00955659244209528, + -0.0010345936752855778, + -0.017670925706624985, + -0.0072697666473686695, + -0.012954347766935825, + 0.00516159925609827, + -0.009342202916741371, + 0.0011531577911227942, + 0.018151678144931793, + 0.0030014587100595236, + -0.0004909041454084218, + -0.014149733819067478, + -0.012051311321556568, + 0.005311022512614727, + -0.01899624429643154, + 0.01586485281586647, + -0.017502011731266975, + -0.001563259749673307, + 0.016722412779927254, + -0.008289743214845657, + 0.010855925269424915, + 0.014565519988536835, + -0.0028406663332134485, + -0.0007694486412219703, + -0.044645074754953384, + 0.02328404411673546, + 0.011706988327205181, + 0.01908719912171364, + -0.006035400554537773, + 0.010518099181354046, + -0.03144385293126106, + 0.0029105055145919323, + 0.005083639640361071, + -0.009725505486130714, + 0.010427145287394524, + -0.0007865023799240589, + -0.006386220455169678, + 0.00044258523848839104, + 0.0016696426318958402, + -0.028559334576129913, + -0.022452469915151596, + -0.014162727631628513, + -0.007977902889251709, + 0.031235959380865097, + 0.007120343390852213, + -0.008146816864609718, + -0.009433155879378319, + -0.014799400232732296, + 0.0036803600378334522, + 0.007243780419230461, + -0.021400010213255882, + 0.004128629807382822, + 0.003501701867207885, + 0.01369496714323759, + 0.022855263203382492, + -0.009770982898771763, + 0.014656473882496357, + 0.012486588209867477, + -0.006318005733191967, + 0.00497319595888257, + -0.008400185965001583, + -0.0036283868830651045, + 0.021425997838377953, + 0.03838229179382324, + -0.029702747240662575, + 0.010245239362120628, + 0.01050510536879301, + -0.0016566492849960923, + 0.027130069211125374, + 0.0014398230705410242, + -0.0019522474613040686, + 0.00034290202893316746, + 0.0007345290505327284, + 0.003969461657106876, + 0.037342824041843414, + -0.007178813684731722, + 0.013292173855006695, + 0.0025678062811493874, + -0.005704070907086134, + -0.005054404493421316, + 0.0007349351071752608, + 0.0008396938210353255, + -0.010537588968873024, + -0.009296726435422897, + -0.029468867927789688, + 0.020386531949043274, + 0.007347726728767157, + -0.03066425397992134, + -0.00914730317890644, + -0.003107029478996992, + -0.008380696177482605, + -0.016501525416970253, + 0.007490653544664383, + 0.007250276859849691, + 0.0014390110736712813, + 0.02985866740345955, + -0.009660539217293262, + 0.01933407224714756, + 0.013331154361367226, + 0.007347726728767157, + -0.022517437115311623, + 0.010258232243359089, + 0.002543443813920021, + 0.003816789947450161, + 0.006964423693716526, + 0.002968975342810154, + -0.0003177274775225669, + 0.045372702181339264, + -0.014279667288064957, + 0.007230787072330713, + -0.009790472686290741, + 0.023102136328816414, + 0.012882884591817856, + 0.01843753270804882, + -0.00419684499502182, + 0.006996906828135252, + -0.011869404464960098, + -0.02003571204841137, + 0.0127334613353014, + -0.00819879025220871, + -0.011538075283169746, + 2.3131675334298052e-5, + 0.0143966069445014, + 0.0028861428145319223, + -0.013655987568199635, + -0.009322712197899818, + -2.0175186364213005e-5, + -0.00021154762362129986, + -0.015851859003305435, + -0.01793079264461994, + 0.01533212698996067, + 0.0036738633643835783, + 0.013707960955798626, + 0.00885495264083147, + -0.00534350611269474, + -0.011232731863856316, + -0.0007134149200282991, + -0.006685066968202591, + -0.004294294863939285, + -0.0019814823754131794, + 0.007841473445296288, + 0.006665577180683613, + 0.004040924832224846, + -0.03970760852098465, + 0.018203651532530785, + -0.003995448350906372, + 0.004118884913623333, + 0.0011986345052719116, + -0.01799575798213482, + 0.009504619054496288, + 0.011856411583721638, + -0.0055091711692512035, + 0.0016404076013714075, + 0.03417245298624039, + -0.0018158175516873598, + 0.007795996498316526, + -0.00315088196657598, + 0.0032921843230724335, + 0.028897160664200783, + -0.012960844673216343, + -0.025817742571234703, + 0.01236964762210846, + -0.02736394852399826, + -0.012720467522740364, + 0.011070314794778824, + -0.0003317359078209847, + -0.000898163765668869, + 0.018528485670685768, + -0.023491935804486275, + 0.005850245710462332, + 0.002379403216764331, + -0.013240201398730278, + -0.0077635133638978004, + 0.0068214968778193, + 0.004901732783764601, + 0.005145357921719551, + -0.012005834840238094, + 0.0077635133638978004, + -0.03092411905527115, + -0.022543422877788544, + -0.026597341522574425, + 0.03430238366127014, + 0.010641535744071007, + 0.012681487947702408, + -0.012233218178153038, + -0.015072260051965714, + 0.011616035364568233, + -0.0025694305077195168, + -0.008153312839567661, + -0.007295753341168165, + 0.01790480501949787, + -0.015384100377559662, + -0.017203165218234062, + 0.012012331746518612, + 0.02874124050140381, + -0.0031719962134957314, + 0.005505922716110945, + 0.0006277401698753238, + 0.0033392852637916803, + 0.024466436356306076, + 0.0037680650129914284, + 0.01591682620346546, + 0.017761878669261932, + 0.008932912722229958, + 0.0038785082288086414, + 0.03635533154010773, + -0.03903195634484291, + 0.006704557221382856, + 0.008906926028430462, + -0.01874937117099762, + 0.011076811701059341, + -0.0062562874518334866, + 0.019788838922977448, + -0.017216159030795097, + -0.011037832126021385, + -0.015786893665790558, + 0.003097284585237503, + -0.015345119871199131, + 0.013435101136565208, + -0.01533212698996067, + -0.005317519418895245, + 0.013292173855006695, + 0.05540354922413826, + 0.023855749517679214, + -0.0008827341953292489, + 0.004092898219823837, + 0.011713485233485699, + -0.0031752444338053465, + -0.022179611027240753, + -0.005083639640361071, + -0.005645601078867912, + -0.01113528199493885, + -0.024609362706542015, + 0.0068344902247190475, + 0.022400496527552605, + -0.003365271957591176, + -0.0022770806681364775, + 0.002181254792958498, + 0.0194769985973835, + 0.0010825066128745675, + 0.008335219696164131, + 0.00393697852268815, + -0.002761082025244832, + 0.017476025968790054, + 0.0029348679818212986, + -0.015579000115394592, + 0.01196035835891962, + 0.029260974377393723, + -0.0039889514446258545, + 0.0064219520427286625, + -0.008932912722229958, + -0.002268959768116474, + 0.009355195797979832, + -0.0026555112563073635, + 0.02602563612163067, + -0.010628541931509972, + -0.007549123372882605, + 0.02367384359240532, + -0.014110754244029522, + -0.0026587597094476223, + 0.010303708724677563, + 0.009199275635182858, + 0.022959209978580475, + 0.011538075283169746, + -0.00941366609185934, + 0.011408141814172268, + 0.02437548339366913, + -1.963591330422787e-6, + 0.016605472192168236, + 0.02887117490172386, + -0.0034724667202681303, + -0.0038200384005904198, + -0.022400496527552605, + 0.007139833644032478, + 0.0019083949737250805, + -0.01860644482076168, + -0.010069829411804676, + -0.0021503956522792578, + -0.00700340373441577, + -0.006142595782876015, + 0.012343660928308964, + 0.00330842612311244, + -0.026844214648008347, + 0.02733796089887619, + 0.004219583235681057, + 0.009809962473809719, + -0.004018186591565609, + 0.02045149728655815, + -0.006483670324087143, + -0.008081849664449692, + -0.010524595156311989, + 0.0215169508010149, + 0.003079418558627367, + -0.0023550407495349646, + -0.007412693463265896, + 0.012051311321556568, + 0.009985372424125671, + 0.0057852789759635925, + 0.004206589888781309, + 0.00516159925609827, + -0.012830911204218864, + -0.00827025342732668, + 0.036303356289863586, + 0.043605607002973557, + 0.011947364546358585, + -0.0049049812369048595, + 0.0011320436606183648, + 0.0020302075427025557, + -5.012074689147994e-5, + -0.013889866881072521, + 0.0032402111683040857, + -0.01049211248755455, + -0.02238750457763672, + 0.029676759615540504, + -0.019243119284510612, + 0.003982455004006624, + 0.0029413646552711725, + -0.01894427090883255, + -0.009991869330406189, + 0.002449242165312171, + 0.01405878085643053, + -0.006629845593124628, + 0.031937599182128906, + -0.015215186402201653, + 0.027130069211125374, + 0.004222831688821316, + -0.002020462416112423, + -0.015462059527635574, + 0.018333585932850838, + -0.011817432008683681, + 0.012934857979416847, + -0.01770990528166294, + -0.03347081318497658, + -0.009790472686290741, + 0.024778276681900024, + 0.005187585949897766, + -0.010284218937158585, + -0.007614090107381344, + -0.0058437492698431015, + 0.0032158487010747194, + 0.019658904522657394, + -0.000983432517386973, + 0.00496669951826334, + 0.021529944613575935, + 0.011343175545334816, + -0.010459628887474537, + -0.004440469667315483, + -0.013298670761287212, + 0.010089319199323654, + 0.0217378381639719, + 0.0026928670704364777, + -0.004547664895653725, + 0.010394662618637085, + 0.0031963586807250977, + -0.021335044875741005, + -0.01146011520177126, + 0.0035666683688759804, + -0.00209842249751091, + -0.0017800858477130532, + -0.013240201398730278, + 0.010251735337078571, + 0.005382486153393984, + -0.006223803851753473, + -0.010173775255680084, + 0.0027562095783650875, + -0.008172803558409214, + 0.013707960955798626, + 0.021192116662859917, + 0.006808503530919552, + 0.01019976194947958, + 0.008640563115477562, + 0.0016598976217210293, + 0.011635525152087212, + 0.008666549809277058, + 0.024336501955986023, + 0.0010946878464892507, + -0.002057818230241537, + 0.0013569906586781144, + -0.0136429937556386, + -0.000901412102393806, + 0.019204137846827507, + 0.004853007849305868, + 0.006136098876595497, + -0.00015114893903955817, + 0.015968799591064453, + 0.005369492806494236, + -0.007224290166050196, + 0.011888895183801651, + -0.003475715173408389, + 0.015072260051965714, + 0.014344633556902409, + -0.0009574458235874772, + 0.010959872044622898, + -0.003920736722648144, + 0.012064305134117603, + 0.017774872481822968, + 0.011791445314884186, + -0.00675003370270133, + -0.003784306813031435, + -0.0054084728471934795, + 0.003100532805547118, + 0.002470356412231922, + -0.002064314903691411, + 0.019931765273213387, + 0.008309233002364635, + -0.007718036882579327, + 0.003569916822016239, + -0.014799400232732296, + 0.020945243537425995, + -0.0035081985406577587, + 0.0003353902720846236, + -0.0063667306676507, + 0.011271711438894272, + -0.005437707528471947, + -0.004742564633488655, + 0.01916515827178955, + -0.027234014123678207, + -0.011661511845886707, + 0.009589076042175293, + 0.0010289091151207685, + -0.0036218902096152306, + 0.003595903515815735, + 0.007854466326534748, + -0.007659566588699818, + 0.006353737320750952, + 0.010401158593595028, + 0.02738993428647518, + -0.004128629807382822, + 0.005850245710462332, + -0.004352764692157507, + 0.010147788561880589, + 0.004947209730744362, + -0.02314111590385437, + 0.007724533323198557, + -0.03708295896649361, + 0.01369496714323759, + 0.010076325386762619, + 0.00853661634027958, + -0.008523622527718544, + -0.00019652408082038164, + 0.016969285905361176, + 0.00015246857947204262, + 0.01678737998008728, + 0.011382155120372772, + 0.0032889361027628183, + 0.006789013743400574, + 0.012064305134117603, + -0.023803776130080223, + 0.0001295272377319634, + -0.018281612545251846, + -0.015215186402201653, + -0.022127637639641762, + -0.00782198365777731, + -0.004628872964531183, + -0.008653555996716022, + 0.014331640675663948, + -0.0069254436530172825, + 0.0075621167197823524, + 0.00458989292383194, + -0.007542626932263374, + -0.008815973065793514, + 0.005184337962418795, + 0.005587130784988403, + 0.015527026727795601, + 0.01294135395437479, + 0.007029390428215265, + -0.011349671520292759, + 0.01400680746883154, + -0.007308746688067913, + -0.012778937816619873, + -0.0071593234315514565, + -0.009062846191227436, + 0.010219252668321133, + -0.0012108157388865948, + 0.0010159157682210207, + -0.00783497653901577, + -0.009283732622861862, + -0.02127007767558098, + 0.018372565507888794, + -0.002178006572648883, + 0.009511115960776806, + 0.00982295535504818, + 4.2685111111495644e-5, + 0.011395148001611233, + -0.018307598307728767, + 0.007347726728767157, + -0.037290848791599274, + 0.006486918777227402, + 0.016891326755285263, + 0.02236151695251465, + 0.007282759994268417, + 0.006652583833783865, + -0.004788041114807129, + 0.0212960634380579, + -0.018645424395799637, + 0.02260839007794857, + 0.006951430346816778, + -0.023102136328816414, + 0.008893933147192001, + 0.015955805778503418, + -0.00451842974871397, + -0.015254166908562183, + -0.008939409628510475, + -0.018346577882766724, + 0.007523136679083109, + 0.01259053498506546, + 0.0008591837831772864, + -0.0051973313093185425, + 0.0026084105484187603, + 0.017813852056860924, + -0.021075177937746048, + 0.0006447939085774124, + -0.01476042065769434, + -0.04043523594737053, + 0.0037453267723321915, + -0.020412517711520195, + -0.009264242835342884, + 0.004745813086628914, + 0.0032921843230724335, + -0.016319619491696358, + 0.00948512926697731, + 0.010570071637630463, + -0.00885495264083147, + 0.02842940017580986, + 0.002187751466408372, + -0.010661025531589985, + -0.007666063494980335, + -0.01420170720666647, + 0.020698370411992073, + -0.010414152406156063, + 0.0016907567624002695, + 0.0018353075720369816, + -0.008361206389963627, + -0.0037908032536506653, + -0.019619924947619438, + 0.026337474584579468, + -0.02350492961704731, + -0.01094038225710392, + -0.021581918001174927, + -0.016696427017450333, + 0.013617007061839104, + -0.007854466326534748, + -0.013220710679888725, + 0.017527999356389046, + 0.01908719912171364, + -0.015410087071359158, + -0.016501525416970253, + -0.01639758050441742, + -0.021335044875741005, + 0.000533944577910006, + 0.019684892147779465, + -0.023297036066651344, + -0.027597827836871147, + 0.013798913918435574, + -0.005333761218935251, + 0.00465161120519042, + -0.04264410212635994, + -0.009719009511172771, + -0.011700491420924664, + -0.016683433204889297, + -0.01203182153403759, + -1.3716588910028804e-5, + 0.029676759615540504, + 0.0029413646552711725, + 0.0045606582425534725, + -0.021763823926448822, + 0.009121316485106945, + -0.006594114005565643, + -0.005314270965754986, + -0.020412517711520195, + -0.013188228011131287, + 0.02047748491168022, + -0.0014252056134864688, + -0.019425025209784508, + 0.0013732323423027992, + 0.021620897576212883, + -0.000751582789234817, + -0.017579972743988037, + -0.003897998249158263, + -0.016215672716498375, + -0.012694480828940868, + 0.01127820834517479, + -0.031132012605667114, + 0.00528178783133626, + -0.0010800703894346952, + -0.014565519988536835, + -0.00986193586140871, + -0.0008689287933520973, + 0.0056845806539058685, + 0.007770009804517031, + 0.0071983034722507, + -0.0014585010940209031, + -0.022907236590981483, + 0.0181906595826149, + 0.004287797957658768, + -0.01712520606815815, + -0.0008104587905108929, + -0.002999834483489394, + 0.022374510765075684, + -0.015319133177399635, + 0.014149733819067478, + -0.001629038481041789, + 0.003677111817523837, + 0.022036684677004814, + 0.005528660956770182, + -0.010277722030878067, + 0.010946878232061863, + 0.01709921844303608, + -0.007860963232815266, + -0.020113671198487282, + 0.016579486429691315, + 0.012506077997386456, + -0.007854466326534748, + -0.00016515736933797598, + -0.004245569929480553, + -0.0013326281914487481, + -0.0003873635723721236, + 0.000898163765668869, + -0.021789809688925743, + -0.018138686195015907, + 0.008634066209197044, + 0.014552527107298374, + 0.003800548380240798, + 0.023660849779844284, + -0.004541167989373207, + -0.01102483831346035, + 0.0035666683688759804, + -0.011856411583721638, + -0.02571379579603672, + 0.02219260297715664, + -0.01986679807305336, + 0.021023204550147057, + 0.012343660928308964, + -0.006918947212398052, + -0.0005583070451393723, + -0.005908716004341841, + 0.008231272920966148, + 0.01622866652905941, + -0.001361051108688116, + 0.01133018173277378, + 0.018905291333794594, + -0.007757016457617283, + -0.007243780419230461, + 0.002332302276045084, + 0.01420170720666647, + -0.017670925706624985, + 0.010459628887474537, + -0.012382641434669495, + 0.005294781178236008, + 0.00756861362606287, + -0.035185933113098145, + -0.00426830817013979, + -0.015371106564998627, + 0.0023517922963947058, + 0.0136429937556386, + -0.022959209978580475, + 0.027545854449272156, + -0.008068856783211231, + 0.00675003370270133, + -0.032639238983392715, + 0.035497769713401794, + -0.009615062735974789, + -0.002449242165312171, + 0.030690239742398262, + 0.013253194279968739, + 0.003712843405082822, + -0.008517126552760601, + 0.0044599599204957485, + -0.011739471927285194, + -0.02081531099975109, + -0.011258718557655811, + 0.005739802494645119, + 0.005872983951121569, + 0.03284713253378868, + 0.008276749402284622, + 0.0067240470089018345, + -0.00014993082731962204, + 0.003249956062063575, + -0.001679387642070651, + -0.006737040355801582, + -0.018203651532530785, + -0.02037353813648224, + -0.0002606786438263953, + -0.01495532039552927, + 0.007276263553649187, + 0.02428453043103218, + 0.0032986809965223074, + 0.022010697051882744, + -0.007081363815814257, + -0.00854960922151804, + -0.0009972378611564636, + -0.002998210256919265, + -0.008348213508725166, + -0.007009900175035, + 0.015877846628427505, + -0.013967826962471008, + 0.005466942675411701, + -0.010232245549559593, + 0.0063212537206709385, + 0.047919392585754395, + 0.01529314648360014, + -0.03022248111665249, + -0.003712843405082822, + 0.0029738477896898985, + -0.008055862970650196, + 0.006944933440536261, + -0.016748398542404175, + 6.633703014813364e-5, + -0.016514519229531288, + -0.012239715084433556, + 0.00954359956085682, + 0.013422107324004173, + -0.015682946890592575, + 0.008978389203548431, + -0.007581606507301331, + -0.0025353231467306614, + -0.0019928517285734415, + 0.004914726130664349, + -0.014370620250701904, + 0.01267499104142189, + 0.0011856411583721638, + -0.00858858972787857, + 0.008426172658801079, + -0.02095823734998703, + 0.02008768543601036, + -0.025869715958833694, + 0.008133823052048683, + 0.007139833644032478, + 0.007399700116366148, + -0.0162806399166584, + -0.017216159030795097, + -0.03399054706096649, + 0.026792241260409355, + -0.025453928858041763, + 0.005505922716110945, + -0.0004588268930092454, + -0.017592966556549072, + 0.008582092821598053, + -0.004378751385957003, + 0.0018807841697707772, + 0.014604500494897366, + 0.011336678639054298, + -0.009420162998139858, + -0.003452976932749152, + -0.027052108198404312, + 0.001512910588644445, + 0.010030848905444145, + -0.01050510536879301, + 0.017021259292960167, + -0.025817742571234703, + -0.0025093364529311657, + -0.02420656941831112, + -0.007698546629399061, + 0.007412693463265896, + -0.008523622527718544, + -0.0016184813575819135, + 0.0019181399838998914, + -0.00801688339561224, + 0.009816459380090237, + 0.03243134543299675, + 0.0014674339909106493, + -0.013461087830364704, + -0.022140629589557648, + 0.03438034653663635, + 0.025804748758673668, + 0.005590379238128662, + 0.021633891388773918, + 0.017566978931427002, + 0.013655987568199635, + 0.016124719753861427, + 0.002480101538822055, + 0.004567154683172703, + -0.00955659244209528, + 0.004976444412022829, + -0.013285677880048752, + -0.0031151503790169954, + -0.0010419024620205164, + -0.0031281437259167433, + -0.0034302384592592716, + 0.0009582579368725419, + -0.006983913481235504, + -0.018060725182294846, + 0.010842932388186455, + -0.03908393159508705, + -0.002013965742662549, + 0.012512574903666973, + 0.02202369086444378, + -0.01586485281586647, + 0.010316702537238598, + -0.004567154683172703, + -0.004979692865163088, + 0.009757989086210728, + 0.0010532715823501348, + 0.002830921206623316, + -0.021607903763651848, + -0.006139347329735756, + -0.016605472192168236, + -0.031859640032052994, + 0.007295753341168165, + 0.010030848905444145, + 0.01938604563474655, + 0.011187255382537842, + -0.012649004347622395, + -0.018346577882766724, + 0.01400680746883154, + -0.0047263228334486485, + -0.006905953865498304, + 0.006730543915182352, + 0.00821178313344717, + 0.0035341852344572544, + -0.026688294485211372, + 0.008296240121126175, + -0.008763999678194523, + -0.00483351806178689, + -0.0200097244232893, + -0.007737526670098305, + 0.00579177588224411, + -0.008257259614765644, + 0.0019928517285734415, + 0.000973687507212162, + 0.0019213883206248283, + -0.011447121389210224, + 0.0031817411072552204, + 0.002379403216764331, + -0.010336192324757576, + 0.012018827721476555, + 0.007367216981947422, + -0.014175720512866974, + 0.02467432990670204, + 0.007074866909533739, + -0.013967826962471008, + 0.0028211763128638268, + 0.010414152406156063, + -0.014500553719699383, + -0.027909668162465096, + -0.0006967671797610819, + -0.001112553640268743, + -0.025830736383795738, + -0.01858045905828476, + 0.027857694774866104, + -0.014344633556902409, + 0.028923148289322853, + -0.02034755051136017, + 0.0008705529617145658, + -0.0064219520427286625, + 0.016657445579767227, + 0.014305653981864452, + -0.008081849664449692, + 0.009998365305364132, + -0.005427962634712458, + 0.000863244233187288, + 0.027415921911597252, + 0.008302736096084118, + -0.015825873240828514, + 0.010082822293043137, + -0.018684405833482742, + 0.012376144528388977, + -0.007282759994268417, + -0.015734920278191566, + 0.0002618967555463314, + 0.0051973313093185425, + -0.0035504268016666174, + 0.0009046604391187429, + -0.0010345936752855778, + -0.003690105164423585, + 0.006535643711686134, + -0.004680846352130175, + 0.002064314903691411, + -0.017138199880719185, + 0.005973682273179293, + 0.02738993428647518, + -0.014669466763734818, + -0.015449066646397114, + 0.031158000230789185, + 0.008984886109828949, + -0.017502011731266975, + 0.004031179938465357, + 0.014487560838460922, + 0.040331289172172546, + -0.011479604989290237, + 0.01829460635781288, + 0.011154771782457829, + -0.027104081586003304, + -0.030768200755119324, + -0.014136740937829018, + -0.012889381498098373, + 0.0168133657425642, + 0.006538892164826393, + 0.016293633729219437, + -0.04163062199950218, + -0.011934371665120125, + -0.013259691186249256, + 0.027545854449272156, + -0.011830424889922142, + -0.0037388300988823175, + 0.020919257774949074, + 0.013552040793001652, + 0.008166306652128696, + 0.021218104287981987, + -0.02064639702439308, + -0.010725991800427437, + -0.0002647390647325665, + 0.014500553719699383, + 0.011083308607339859, + -0.022166617214679718, + -0.008205286227166653, + -0.023037169128656387, + 0.01305179763585329, + -0.012116278521716595, + 0.016488533467054367, + -0.0005177028942853212, + -0.015540019609034061, + -0.007224290166050196, + -0.008400185965001583, + 0.026233527809381485, + 0.003602400189265609, + 3.085915159317665e-5, + 0.019931765273213387, + -0.00042837377986870706, + -0.03632934391498566, + 0.036667171865701675, + -0.001474742661230266, + -0.006236797198653221, + -0.007289256900548935, + 0.0020090932957828045, + -0.0026181554421782494, + -0.02042551152408123, + -0.027961641550064087, + -0.024505415931344032, + -0.024557389318943024, + 0.0269741490483284, + 0.01564396731555462, + -0.008595086634159088, + -0.014448580332100391, + 0.008815973065793514, + 0.007243780419230461, + 0.022517437115311623, + 0.0008348213159479201, + 0.0215169508010149, + 0.014123747125267982, + 0.007990896701812744, + -0.00700340373441577, + -0.010030848905444145, + -0.0037518234457820654, + 0.0023420474026352167, + 0.0065226503647863865, + 0.01882733218371868, + -0.008984886109828949, + 0.01698227971792221, + -0.006464180536568165, + 0.031209973618388176, + 0.0048270211555063725, + -0.007282759994268417, + -0.0055416543036699295, + 0.035107970237731934, + 0.004469704814255238, + -0.007081363815814257, + 0.016345607116818428, + -0.012252707965672016, + -0.015942813828587532, + 0.00048197124851867557, + 0.005827507469803095, + -0.004320281557738781, + 0.011382155120372772, + -0.002268959768116474, + -0.002915377961471677, + 0.004307288210839033, + 0.0075296335853636265, + -0.00111580197699368, + 0.011797941289842129, + 0.036667171865701675, + 0.00599642051383853, + 0.003592655062675476, + 0.00395321985706687, + -0.012116278521716595, + -0.0010581441456452012, + 0.01835957169532776, + -0.030820174142718315, + 0.0031719962134957314, + 0.0018596700392663479, + -0.005359747912734747, + 0.008094843477010727, + 0.010693509131669998, + -0.0005842936807312071, + 0.016020772978663445, + -0.009199275635182858, + -0.007432183250784874, + -0.024869229644536972, + -0.001248171553015709, + -0.0076400768011808395, + 0.013798913918435574, + 0.014253680594265461, + -0.004576899576932192, + -0.01826861873269081, + -0.02702612243592739, + 0.012960844673216343, + 0.011271711438894272, + 0.004917974583804607, + -0.007295753341168165, + 0.024219563230872154, + -0.009439652785658836, + -0.009660539217293262, + 0.0014130243798717856, + -0.010712998919188976, + -0.011050825007259846, + 0.013396120630204678, + 0.01405878085643053, + 0.02224457636475563, + 0.01829460635781288, + 0.01770990528166294, + 0.004398241639137268, + -0.00016850722022354603, + -0.0014284539502114058, + 0.022257570177316666, + -0.0023810272105038166, + 0.01894427090883255, + 0.009199275635182858, + 0.005314270965754986, + 0.009420162998139858, + 0.021893756464123726, + 0.00046694770571775734, + 0.004453463014215231, + -0.024193575605750084, + 0.007757016457617283, + 0.017969772219657898, + 0.0048367660492658615, + 0.017476025968790054, + 0.0019165158737450838, + -0.009511115960776806, + -0.01063503883779049, + -0.020191632211208344, + -0.006594114005565643, + 0.012291688472032547, + -0.0327431857585907, + 0.009381182491779327, + -0.011310691945254803, + 0.03856419771909714, + 0.015786893665790558, + -0.002234852407127619, + -0.007334733381867409, + 0.013253194279968739, + -0.018034739419817924, + -0.004810779821127653, + -0.021581918001174927, + 0.004209838341921568, + 0.005717064253985882, + -0.006964423693716526, + -0.015514032915234566, + -0.033003050833940506, + -0.015968799591064453, + -0.01751500554382801, + -0.0056520975194871426, + 0.014734433963894844, + 0.01094038225710392, + -0.014175720512866974, + 0.003592655062675476, + -0.00528178783133626, + -0.034848105162382126, + 0.012278694659471512, + -0.01615070551633835, + -0.004430724773555994, + 0.0028569079004228115, + 0.0021065431647002697, + -0.00885495264083147, + -0.010089319199323654, + 0.017969772219657898, + -0.006996906828135252, + 0.02078932523727417, + 0.006730543915182352, + -0.013954834081232548, + 0.0053402576595544815, + 0.006944933440536261, + -0.025272022932767868, + -0.025557875633239746, + -0.004609383177012205, + 0.003589406842365861, + -0.005194082856178284, + -0.044645074754953384, + -0.003042062744498253, + 0.008413179777562618, + -0.020113671198487282, + -0.013240201398730278, + -0.005892474204301834, + -0.013772927224636078, + -0.008315729908645153, + 0.011076811701059341, + 0.013889866881072521, + -0.005492929369211197, + 0.007445176597684622, + -0.014838379807770252, + -0.023426970466971397, + 0.005947695579379797, + 0.003149257740005851, + -0.026311488822102547, + 0.02612958289682865, + 0.010719495825469494, + 0.0021568923257291317, + -0.00337176863104105, + 0.02700013481080532, + 0.0010199762182310224, + -0.017203165218234062, + 0.023180097341537476, + -0.018372565507888794, + 0.004053918179124594, + -0.015617979690432549, + -0.008718523196876049, + 0.0005790151772089303, + 0.01600777916610241, + -0.00801688339561224, + -0.010862422175705433, + 0.009959385730326176, + -0.010784462094306946, + 0.017138199880719185, + 0.008828965947031975, + 0.007607593201100826, + -0.031521812081336975, + 0.012642507441341877, + 0.002051321556791663, + 0.011148274876177311, + 0.00011267651279922575, + -0.0031281437259167433, + -0.01639758050441742, + -0.0012181245256215334, + 0.012460601516067982, + -0.006477173883467913, + 0.00477829622104764, + -0.004943961277604103, + 0.010745481587946415, + -0.006626597139984369, + 0.0031557544134557247, + 0.01732010580599308, + 0.015449066646397114, + -0.013058294542133808, + -0.008640563115477562, + -0.007549123372882605, + -0.007347726728767157, + 0.002429752377793193, + -0.02700013481080532, + 0.026792241260409355, + -0.005447452422231436, + 0.020581431686878204, + -0.03170371800661087, + -0.012018827721476555, + -0.02428453043103218, + -0.010459628887474537, + 0.006162085570394993, + -0.00955659244209528, + -0.025934681296348572, + 0.00649991212412715, + -0.0006963611813262105, + -0.013344147242605686, + 0.0012839031405746937, + -0.013954834081232548, + 0.0008189856889657676, + 0.0012595406733453274, + 0.007795996498316526, + 0.00909532979130745, + -0.012460601516067982, + -0.007731029763817787, + -0.014565519988536835, + -0.014292660169303417, + 0.008452159352600574, + 0.021607903763651848, + 0.03565369173884392, + 0.029962614178657532, + -0.0018629183759912848, + -0.004339771345257759, + -0.010518099181354046, + -0.03656322509050369, + 0.004112388007342815, + -0.008751005865633488, + -0.0015185951488092542, + 0.006022407207638025, + 0.013331154361367226, + -0.0011352919973433018, + -0.015319133177399635, + 0.01018676906824112, + -0.020126665011048317, + 0.022036684677004814, + -0.005928205791860819, + 0.011616035364568233, + -0.01248009130358696, + 0.009322712197899818, + 0.01248009130358696, + -0.0192561112344265, + -0.00038614546065218747, + -0.01086891908198595, + 0.01846351847052574, + 0.006395965348929167, + -0.010531092062592506, + -0.027208028361201286, + 0.020854290574789047, + -0.01863243244588375, + 0.010836435481905937, + 0.0014585010940209031, + 0.003167123533785343, + -0.0014381989603862166, + -0.011297698132693768, + 0.03139188140630722, + -0.000532726407982409, + -0.0004563906404655427, + -0.0011823928216472268, + 0.0020464491099119186, + -0.04765952751040459, + -0.017618952319025993, + 0.004875746089965105, + 0.0072697666473686695, + -0.018619438633322716, + 0.006912450306117535, + -0.011492598801851273, + 0.010777965188026428, + -0.02700013481080532, + 0.0187233854085207, + 0.010258232243359089, + 0.01899624429643154, + -0.009764485992491245, + 0.018320592120289803, + 0.0014065277064219117, + 0.004138374701142311, + -0.00011338709009578452, + -0.019762851297855377, + -0.00968002900481224, + -0.005057652946561575, + 0.013162241317331791, + -0.007152826990932226, + -0.0007592975744046271, + 0.0050284177996218204, + -0.004255314823240042, + 0.01874937117099762, + 0.023128123953938484, + -0.0039889514446258545, + 0.010388165712356567, + -0.0071593234315514565, + -0.002252718200907111, + 0.021867770701646805, + 0.014682460576295853, + -0.00041741065797396004, + -0.009283732622861862, + -0.004528174642473459, + -0.01400680746883154, + -0.008445663377642632, + -0.021140143275260925, + -0.00011612786329351366, + 0.004849759396165609, + -0.00491147767752409, + -0.004144871607422829, + 0.0005891661858186126, + 0.0034172451123595238, + 0.030118534341454506, + 0.010466125793755054, + 0.0010922516230493784, + 0.00432353001087904, + -0.016410572454333305, + -0.026363462209701538, + -0.005713815800845623, + 0.006639590486884117, + 0.013928847387433052, + 0.0202306117862463, + -0.03986353054642677, + -0.015163213014602661, + 0.01986679807305336, + 0.003085915232077241, + 0.015591992996633053, + -0.007899942807853222, + -0.005726809147745371, + -0.0032597011886537075, + -0.005567640997469425, + 0.02277730405330658, + -0.025973662734031677, + -0.012259204871952534, + -0.0018694150494411588, + -0.0067825173027813435, + -0.006802007090300322, + -0.01967189833521843, + 0.017255138605833054, + -0.018853317946195602, + 0.025830736383795738, + 0.009270739741623402, + 0.00127334613353014, + 0.030404387041926384, + 0.012233218178153038, + 0.01138865202665329, + 0.004638617858290672, + 0.0011872652685269713, + 0.01547505334019661, + 0.016189686954021454, + -4.540051304502413e-5, + 0.0025678062811493874, + 0.0037355816457420588, + -0.0004503000236582011, + 0.01529314648360014, + 0.002722102217376232, + 0.010901401750743389, + 0.007731029763817787, + -0.0009939895244315267, + 0.015760906040668488, + 0.009537102654576302, + -0.0070943571627140045, + 0.013526054099202156, + 0.03695302456617355, + 0.005931454245001078, + 0.009166792966425419, + -0.016514519229531288, + -0.0008486267179250717, + 0.03289910405874252, + 0.021309057250618935, + 0.00496669951826334, + 0.002322557382285595, + -0.01438361406326294, + -0.008107836358249187, + 0.012798427604138851, + -0.0045931413769721985, + 0.013383127748966217, + -0.0023550407495349646, + -0.00401493813842535, + -0.014981307089328766, + -0.005557896103709936, + -0.007698546629399061, + 0.002684746403247118, + 0.0080298762768507, + 0.01221372839063406, + -0.017008265480399132, + -0.02308914251625538, + -0.00993339903652668, + 0.002433000598102808, + 0.012986831367015839, + 0.014994299970567226, + 0.021984711289405823, + 0.006201065611094236, + 0.003595903515815735, + 0.00821178313344717, + 0.007256773766130209, + -0.007204800378531218, + 0.0207633376121521, + -0.00801688339561224, + -0.00986193586140871, + 0.006259535439312458, + 0.008400185965001583, + 0.003729084972292185, + -0.0005786091205663979, + 0.011687498539686203, + -0.013941840268671513, + 0.005421466194093227, + 0.021036198362708092, + -0.00445671146735549, + 0.01673540659248829, + 0.0032126002479344606, + 0.003888253355398774, + 0.014734433963894844, + -0.002707484643906355, + 0.00598017917945981, + -0.0018125692149624228, + 0.0034139968920499086, + -0.0023566647432744503, + 0.01950298435986042, + 0.006672073621302843, + -0.00534350611269474, + -0.020217617973685265, + -0.003264573635533452, + -0.0059541924856603146, + 0.00027509310166351497, + -0.023712823167443275, + -0.015708932653069496, + -0.00025864841882139444, + 0.01693030633032322, + -0.00209842249751091, + -0.0024654839653521776 + ], + "5c5e1212-45fe-4164-94d0-7dc6da6510cc": [ + -0.011870168149471283, + -0.03129536658525467, + -0.006044731009751558, + 0.031946174800395966, + -0.005966917145997286, + 0.019736453890800476, + -0.023103676736354828, + 0.018717797473073006, + -0.04204784333705902, + 0.05681835114955902, + 0.024872176349163055, + 0.02081170119345188, + 0.004598098341375589, + -0.027730071917176247, + 0.010285592637956142, + 0.005620291456580162, + -0.032879941165447235, + -0.0057653081603348255, + 0.015067615546286106, + -0.007972395047545433, + 0.04818807169795036, + 0.0005990791833028197, + -0.03353074938058853, + 0.04849932715296745, + 0.0020072469487786293, + -0.018024547025561333, + -0.008842497132718563, + -0.010158260352909565, + -0.019623270258307457, + 0.005245369393378496, + 0.035143621265888214, + 0.012096536345779896, + -0.01020777877420187, + 0.00810680165886879, + 0.008078505285084248, + -0.025268319994211197, + -0.011969204060733318, + 0.013582075946033001, + -0.004831540398299694, + -0.020981477573513985, + -0.036360349506139755, + 0.034917254000902176, + -0.011573060415685177, + -0.046320538967847824, + -0.017416182905435562, + 0.0024900471325963736, + -0.023556413128972054, + 0.007222551852464676, + 0.027135854586958885, + -0.02215576171875, + 0.022000133991241455, + -0.014911986887454987, + 0.008750535547733307, + 0.01508176326751709, + 0.025423947721719742, + -0.02719244733452797, + 0.006338302046060562, + 0.03766196593642235, + 0.022325536236166954, + -0.03865232318639755, + 0.03927483409643173, + -0.027348075062036514, + -0.004637005738914013, + -0.008892015554010868, + 0.02894679829478264, + -0.004336360841989517, + 0.011396210640668869, + -0.010582700371742249, + -0.021886948496103287, + -0.006444411817938089, + 0.013193005695939064, + -0.005287813488394022, + -0.0006211854051798582, + -0.005977528169751167, + 0.02863554283976555, + 0.005316109396517277, + 0.029116574674844742, + 0.043236274272203445, + 0.035228509455919266, + 0.002543102251365781, + -0.05019708722829819, + 0.011742835864424706, + -0.022311389446258545, + -0.03203106299042702, + 0.05537525564432144, + -0.01184894610196352, + -0.06247754767537117, + -0.03273846209049225, + 0.007448919583112001, + -0.017104927450418472, + -0.006635409779846668, + 0.001226454391144216, + 0.023146120831370354, + -0.0005208230577409267, + -0.03398348391056061, + 0.026923635974526405, + 0.010476591065526009, + 0.010554404929280281, + -0.003464490408077836, + -0.034011781215667725, + -0.016694635152816772, + 0.01133961882442236, + -0.002268984680995345, + 0.001608450198546052, + 0.03695456311106682, + 0.0008953028591349721, + 0.014940283261239529, + -0.007477215491235256, + -0.028083771467208862, + 0.05715790018439293, + -0.017359590157866478, + -0.0385674349963665, + 0.014529991894960403, + -0.018236765637993813, + -0.037916626781225204, + -0.05291350185871124, + -0.01580331102013588, + -0.002663360210135579, + -0.03231402114033699, + -0.02625867910683155, + 0.027475407347083092, + 0.007937025278806686, + -0.01087980903685093, + 0.022028429433703423, + -0.007243773899972439, + 0.021490804851055145, + 0.013093969784677029, + 0.026117200031876564, + 0.0548093356192112, + -0.002415770199149847, + -0.05240417644381523, + -0.012690751813352108, + 0.007378179579973221, + 0.007788471411913633, + -0.03140854835510254, + -0.00626048818230629, + 0.029795678332448006, + 0.02709341235458851, + 0.0021558008156716824, + 0.007661139592528343, + -0.03664330765604973, + 0.010964696295559406, + 0.009755043312907219, + 0.0020850608125329018, + 0.005648587364703417, + -0.020175041630864143, + -0.042415689677000046, + 0.06343961507081985, + 0.0020532277412712574, + 0.04753726348280907, + -0.051442112773656845, + -0.02432040497660637, + -0.02432040497660637, + 0.03406837210059166, + 0.011466950178146362, + -0.005468200426548719, + -0.02973908744752407, + 0.0269943755120039, + 0.01795380562543869, + 0.02226894535124302, + 0.029088279232382774, + -0.041283849626779556, + 0.02033066935837269, + 0.021193698048591614, + 0.053705792874097824, + -0.01441680733114481, + 0.06479781866073608, + 0.03952949866652489, + -0.04654690623283386, + 0.01775573380291462, + 0.02083999663591385, + 0.00016181770479306579, + 0.005574310198426247, + -0.016029678285121918, + -0.003887161845341325, + -0.019043201580643654, + 0.0017481617396697402, + 0.014600731432437897, + 0.027348075062036514, + -0.0030754206236451864, + -0.03234231844544411, + -0.011169842444360256, + -0.015223243273794651, + 0.011898464523255825, + 0.03783173859119415, + 0.03412496671080589, + 0.027220742776989937, + 0.007944099605083466, + -0.019821342080831528, + -0.012301682494580746, + 0.054724447429180145, + -0.022438721731305122, + 0.021985985338687897, + 0.04281183332204819, + -0.008927385322749615, + -0.026697266846895218, + 0.0385674349963665, + -0.00020304584177210927, + -0.008545389398932457, + 0.03180469572544098, + -0.0033300844952464104, + -0.009358898736536503, + -0.0328233502805233, + 0.03505873307585716, + -0.054950814694166183, + 0.013023230247199535, + -0.028564803302288055, + 0.019538382068276405, + 0.02225479669868946, + -0.035539764910936356, + 0.02235383354127407, + -0.04368900880217552, + 0.01907149888575077, + -0.012789787724614143, + 0.001774689182639122, + -0.004675912670791149, + 0.0015810384647920728, + -0.000934651936404407, + 0.011438654735684395, + -0.04920672997832298, + 0.009500378742814064, + -0.03055967018008232, + 0.009981410577893257, + -0.027135854586958885, + -0.042330801486968994, + -0.002332650823518634, + -0.025112692266702652, + 0.016355082392692566, + -0.02574935182929039, + -0.007944099605083466, + 0.02942783012986183, + 0.0021964763291180134, + 0.002099208766594529, + 0.010377555154263973, + 0.008538315072655678, + 0.036162275820970535, + 0.02482973225414753, + -0.005913862027227879, + 0.027432963252067566, + 0.005546014290302992, + 0.0013758925488218665, + 0.009648933075368404, + 0.006709686946123838, + 0.0033460010308772326, + -0.005199388135224581, + -0.009457934647798538, + -0.022608496248722076, + 0.025466391816735268, + 0.004322212655097246, + -0.016468266025185585, + 0.01364574208855629, + -0.009769191034138203, + 0.0654769241809845, + -0.019510086625814438, + -0.02450432814657688, + 0.05806337296962738, + 0.02688119187951088, + -0.039246540516614914, + -0.03443622216582298, + -0.022438721731305122, + -0.003510471433401108, + 0.03587931767106056, + 0.010710032656788826, + 0.015067615546286106, + 0.04654690623283386, + -0.014430955052375793, + 0.04575461894273758, + -0.021151253953576088, + 0.0031779934652149677, + 0.02296219766139984, + 0.01999111846089363, + 0.00633122818544507, + -0.007420623674988747, + -0.0011362609220668674, + -0.019722305238246918, + 0.013985293917357922, + -0.02125028893351555, + -0.0228914562612772, + 0.01578916236758232, + 0.005715790204703808, + 0.0005460241809487343, + -0.0334741584956646, + 0.022608496248722076, + -0.0021504953037947416, + 0.009931893087923527, + 0.006713224109262228, + -0.02985227108001709, + -0.03412496671080589, + -0.05817655846476555, + -0.03658671677112579, + 0.010540256276726723, + -0.015194946900010109, + -0.0029693106189370155, + -0.004166584461927414, + 0.016383379697799683, + -0.007399401627480984, + -0.04564143344759941, + -0.003206289606168866, + -0.0021558008156716824, + 0.023627152666449547, + -0.036671604961156845, + 0.027843255549669266, + 0.02615964412689209, + -0.013744777999818325, + -0.002141652861610055, + -0.01610041968524456, + 0.023471524938941002, + 0.000766644487157464, + -0.011778206564486027, + 0.016270194202661514, + -0.0030966424383223057, + -0.04196295514702797, + -0.010858586989343166, + -0.0056839571334421635, + 0.039642684161663055, + 0.01165087427943945, + -0.020656073465943336, + 0.0475938580930233, + -0.03672819584608078, + 0.0007423276547342539, + 0.01610041968524456, + 0.014728063717484474, + -0.050734713673591614, + 0.015378871001303196, + 0.024348700419068336, + -0.07085315883159637, + 0.014020663686096668, + -0.010957622900605202, + -0.012485605664551258, + 0.012174350209534168, + -0.019835488870739937, + -0.0005318762268871069, + -0.03992564231157303, + -0.010080446489155293, + -0.011240582913160324, + -0.008071431890130043, + -0.04071792960166931, + -0.035454876720905304, + -0.04286842793226242, + -0.029597606509923935, + -0.014501695521175861, + -0.024843880906701088, + 0.016581451520323753, + 0.0017773419385775924, + 0.005086204502731562, + -0.0070067946799099445, + 0.015067615546286106, + 0.015166651457548141, + -0.019340310245752335, + 0.007908729836344719, + 0.0008771757129579782, + 0.014324845746159554, + 0.005082667339593172, + -0.002854358172044158, + 0.02637186460196972, + 0.0026898877695202827, + 0.01743032969534397, + 0.025466391816735268, + 0.025678612291812897, + -0.022735828533768654, + 0.005429293494671583, + -0.022509461268782616, + -0.029484422877430916, + -0.0013042683713138103, + -0.009167901240289211, + 0.002056764904409647, + -0.004124140832573175, + 0.011042510159313679, + -0.00942963920533657, + 0.012379496358335018, + -0.010313889011740685, + 0.009931893087923527, + -0.01421166118234396, + 0.0060022869147360325, + 0.01762840338051319, + -0.02596157230436802, + 0.0143602155148983, + -0.026640675961971283, + -0.03330438211560249, + 0.035341691225767136, + -0.01461487915366888, + 0.012499754317104816, + 0.04309479519724846, + 0.011353766545653343, + 0.026074755936861038, + 0.02688119187951088, + -0.038199588656425476, + -0.03641694039106369, + -0.007908729836344719, + -0.006812260020524263, + -0.013631593436002731, + 0.02566446363925934, + -0.01482709962874651, + 0.0031231699977070093, + 0.00018027641635853797, + 0.020585333928465843, + 0.033785413950681686, + 0.012825158424675465, + 0.012888823635876179, + -0.019000757485628128, + 0.04142533242702484, + 0.008064357563853264, + -0.03254038840532303, + -0.01569012738764286, + 0.025480540469288826, + -0.015378871001303196, + 0.021420065313577652, + 0.010497813113033772, + 0.045896098017692566, + -0.021292733028531075, + 0.014126773923635483, + -0.004368193447589874, + -0.009153753519058228, + -0.008609055541455746, + 0.01702003926038742, + -0.0030577355064451694, + 0.0025236487854272127, + 0.015463759191334248, + -0.06010068580508232, + -0.017868919298052788, + 0.03466258943080902, + 0.0400388278067112, + -0.020868293941020966, + 0.00011395768524380401, + 0.020995626226067543, + 0.04100089147686958, + 0.024263812229037285, + 0.0017684994963929057, + -0.01194090861827135, + -0.0029091816395521164, + 0.0014820025535300374, + 0.05435659736394882, + -0.013058600015938282, + 0.013016155920922756, + -0.02020333707332611, + -0.00672029796987772, + -0.012966637499630451, + 0.0032469648867845535, + -0.012181424535810947, + -0.010625144466757774, + -0.010342184454202652, + 0.023443229496479034, + 0.03531339764595032, + -0.010038002394139767, + -0.020443852990865707, + -0.015293982811272144, + -0.01660974696278572, + 0.00949330534785986, + 0.010243148542940617, + -0.02965419925749302, + 0.004859836306422949, + 0.022424573078751564, + -0.021773764863610268, + 0.010823216289281845, + 0.022636793553829193, + -0.03896357864141464, + 0.026951931416988373, + -0.020344818010926247, + -0.009401342831552029, + -0.04453789070248604, + -0.0106675885617733, + -0.0201891902834177, + 0.029569311067461967, + -0.006663705687969923, + 0.009472083300352097, + -0.0038765508215874434, + 0.018463134765625, + 0.028578950092196465, + 0.0026368326507508755, + -0.0016208296874538064, + 0.00018005534366238862, + 0.00579360406845808, + -0.04903695359826088, + 0.002880885498598218, + 0.005429293494671583, + -0.03372882306575775, + -0.0019258959218859673, + 0.000655671174172312, + -0.0015518582658842206, + -0.019227126613259315, + 0.022820716723799706, + -0.0014156837714836001, + 0.006115471012890339, + 0.05132892727851868, + -0.0066743167117238045, + 0.01826506294310093, + -0.01897246204316616, + -0.0265840832144022, + -0.025522984564304352, + 0.009365973062813282, + 0.018590467050671577, + 0.010745402425527573, + 0.005284276325255632, + 0.012429013848304749, + -0.010115817189216614, + 0.00016347566270269454, + 0.020684368908405304, + -0.011141546070575714, + 0.00048501096898689866, + -0.028564803302288055, + 0.02156154438853264, + -0.041708290576934814, + 0.01816602610051632, + -0.012124831788241863, + -0.01980719342827797, + 0.0336439348757267, + 0.009472083300352097, + -0.014480473473668098, + -0.019524233415722847, + 0.006133155897259712, + -0.031436845660209656, + 0.05294179916381836, + -0.0351153239607811, + -0.004983631428331137, + 0.01877439022064209, + 0.004587487783282995, + -0.008142171427607536, + -0.03423814848065376, + 0.022636793553829193, + -0.017416182905435562, + 0.009394269436597824, + -0.020967328920960426, + -0.027220742776989937, + -0.005814826115965843, + -0.019722305238246918, + -0.017515217885375023, + -0.012697826139628887, + -0.004325749818235636, + 0.004806781653314829, + -0.02122199349105358, + -0.03969927504658699, + 0.02164643257856369, + -0.012280460447072983, + -0.005542477127164602, + 0.03078603744506836, + -0.008884941227734089, + -0.009005199186503887, + 0.014713915064930916, + 0.004446007777005434, + 0.00395082775503397, + 0.001396230305545032, + 0.026230383664369583, + -0.007873359136283398, + -0.012174350209534168, + -0.0037209228612482548, + 0.022339684888720512, + -0.0017640781588852406, + 0.028479915112257004, + -0.00664602080360055, + -0.028677986934781075, + -0.03214424476027489, + 0.028876058757305145, + -0.03211595118045807, + -0.024249663576483727, + 0.004718356300145388, + -0.022481165826320648, + 0.02606060728430748, + -0.008198763243854046, + 0.023216860368847847, + -0.04465107247233391, + -0.009238640777766705, + 0.007197792641818523, + 0.009564044885337353, + 0.021207844838500023, + -0.031946174800395966, + 0.023061232641339302, + -0.03361563757061958, + -0.0034149724524468184, + 0.01908564567565918, + 0.01257049385458231, + 0.02525417134165764, + 0.0067026130855083466, + 0.030927518382668495, + 0.0028048402164131403, + -0.02945612743496895, + 0.025904979556798935, + -0.003151465905830264, + -0.03695456311106682, + -0.017416182905435562, + 0.002688119187951088, + 0.004534432664513588, + -0.014586583711206913, + 0.0013590918388217688, + -0.0067698159255087376, + 0.0020496908109635115, + 0.018095286563038826, + -0.019821342080831528, + -0.020557036623358727, + -0.020358964800834656, + 0.01072418037801981, + -0.0036218869499862194, + 0.022099168971180916, + -0.008234133012592793, + 0.013935775496065617, + -0.007809693459421396, + 0.009457934647798538, + 0.010844438336789608, + -0.008262429386377335, + 0.03310630843043327, + 0.009790413081645966, + 0.05149870365858078, + 0.026753859594464302, + -0.019354457035660744, + -0.01834995113313198, + -0.031238773837685585, + 0.02297634445130825, + -0.012351199984550476, + -0.0006189747946336865, + 0.015661831945180893, + -0.009677228517830372, + 0.023768631741404533, + -0.020033562555909157, + 0.03865232318639755, + -0.00692190695554018, + 0.03950120508670807, + 0.049404799938201904, + 0.019976969808340073, + 0.031351957470178604, + 0.029993750154972076, + -0.03500214219093323, + 0.014869543723762035, + -0.012273386120796204, + 0.018845129758119583, + -0.03355904668569565, + -0.0137023339048028, + 0.02614549547433853, + -0.0180528424680233, + -0.020033562555909157, + -0.00974089466035366, + 0.009005199186503887, + 0.006455022841691971, + -0.007866285741329193, + 0.01754351519048214, + -0.03316290304064751, + 0.03285164386034012, + -0.008290725760161877, + 0.023429080843925476, + 0.01127595268189907, + -0.03310630843043327, + 0.021688876673579216, + -0.016963446512818336, + -0.030446486547589302, + 0.018717797473073006, + 0.03706774860620499, + -0.012818084098398685, + 0.027461258694529533, + -0.027348075062036514, + 0.03743559494614601, + 0.026032311841845512, + 0.027164151892066002, + -1.6745478205848485e-5, + 0.0001483328960603103, + -0.008502945303916931, + 0.03087092563509941, + 0.012068239971995354, + -0.023330044001340866, + 0.0014006515266373754, + 0.03392689302563667, + -0.007837989367544651, + -0.010830290615558624, + 0.028748726472258568, + -0.02348567172884941, + 0.039557795971632004, + 0.005641513038426638, + 0.025777647271752357, + 0.009422564879059792, + -0.023131972178816795, + 0.011488172225654125, + -0.009726746939122677, + 0.04490573704242706, + -0.005567236337810755, + 0.012591715902090073, + -0.0147705078125, + 0.02750370278954506, + -0.009203271009027958, + -6.0350044805090874e-5, + -0.0018569243839010596, + 0.021462509408593178, + 0.00948623102158308, + -0.003678478766232729, + -0.015039319172501564, + -0.010016781277954578, + -0.05834633484482765, + 0.016241898760199547, + -0.005185240413993597, + -0.017925510182976723, + -0.01496857963502407, + -0.01041292492300272, + -0.013553779572248459, + 0.001510298578068614, + 0.009783338755369186, + 0.046518608927726746, + -0.03587931767106056, + -0.018406542018055916, + -0.0014678544830530882, + 0.025607872754335403, + -0.014480473473668098, + -0.012407791800796986, + 0.00021398843091446906, + -0.0013626287691295147, + -0.03661501407623291, + -0.0038836246822029352, + -0.018930017948150635, + -0.008701017126441002, + 0.014317771419882774, + 0.02524002455174923, + -0.016765374690294266, + -0.03998223692178726, + 0.0018144804053008556, + -0.023457376286387444, + 0.022594349458813667, + 0.006946665700525045, + -0.014176291413605213, + -0.0052630542777478695, + 0.028465766459703445, + -0.0092315673828125, + -0.01908564567565918, + 0.028154511004686356, + -0.005874955095350742, + 0.002040848368778825, + 0.00980456080287695, + 0.024900471791625023, + -0.003678478766232729, + -0.039246540516614914, + -0.042019546031951904, + 0.07249432802200317, + 0.02942783012986183, + -0.01959497295320034, + -0.012711973860859871, + -0.013016155920922756, + 0.011884315870702267, + -0.0036607938818633556, + 0.0329931266605854, + -0.002408696338534355, + 0.03271016478538513, + -0.03868062049150467, + -0.0016862641787156463, + 0.008658573031425476, + -0.002937477547675371, + -0.022707533091306686, + -0.0008586064795963466, + -0.022014280781149864, + 0.0151383550837636, + -0.011205212213099003, + -0.008085579611361027, + -0.010490738786756992, + -0.01969400979578495, + 0.012945416383445263, + -0.0167370792478323, + -0.0033035569358617067, + 0.013999441638588905, + -0.018604613840579987, + 0.04963116720318794, + 0.00942963920533657, + 0.0025961571373045444, + 0.022184057161211967, + -0.0204297062009573, + 0.012535124085843563, + -0.023839373141527176, + 0.05908203125, + 0.003197446931153536, + 0.001195505610667169, + -0.007746027782559395, + -0.03865232318639755, + -0.0011194600956514478, + -0.006409042049199343, + 0.003590053878724575, + 0.045273587107658386, + 0.040576450526714325, + -0.0017057177610695362, + 0.029201462864875793, + 0.030220119282603264, + 0.009960188530385494, + 0.015534498728811741, + -0.033700525760650635, + -0.014247031882405281, + 0.009132531471550465, + 0.0013873878633603454, + -0.002735868562012911, + -0.018618762493133545, + -0.031125590205192566, + -0.036360349506139755, + 0.04849932715296745, + -0.019113941118121147, + -0.011212286539375782, + -0.0008908815798349679, + 0.03285164386034012, + 0.011304248124361038, + -0.012888823635876179, + -0.01369525957852602, + 0.002291975310072303, + 0.006893611047416925, + 0.017189813777804375, + -0.004028641618788242, + -0.002986995503306389, + 0.00494826165959239, + -0.014317771419882774, + -0.0062675620429217815, + -0.026187939569354057, + -0.0036890897899866104, + 0.002753553679212928, + -0.01508176326751709, + 0.04275524243712425, + 0.012902972288429737, + -0.00322928000241518, + 0.008601981215178967, + 0.0016650422476232052, + -0.01796795427799225, + -0.015576942823827267, + 0.026032311841845512, + -0.012994933873414993, + 0.019425198435783386, + 0.009854079224169254, + 0.008708091452717781, + -0.014034811407327652, + -0.016482414677739143, + 0.035766132175922394, + 0.002116893883794546, + 0.01999111846089363, + -0.008750535547733307, + -0.03324779123067856, + -0.022608496248722076, + 0.0302767101675272, + -0.0167370792478323, + 0.0009505684720352292, + -0.012584641575813293, + -0.0013820823514834046, + -0.004881058353930712, + 0.0043752677738666534, + 0.01410555187612772, + -0.01009459514170885, + -0.04357582703232765, + -0.028975095599889755, + 0.03952949866652489, + 0.008036061190068722, + 0.02308952808380127, + -0.03245550021529198, + -0.017302999272942543, + -0.06513737142086029, + 0.014841247349977493, + -0.01482709962874651, + -0.020599480718374252, + 0.02082584984600544, + 0.007562103681266308, + -0.0034804069437086582, + 0.046518608927726746, + -0.005602606106549501, + 0.014558287337422371, + 0.0027995347045361996, + 0.005602606106549501, + 0.032795052975416183, + -0.009068865329027176, + 0.0159164946526289, + 0.005270128138363361, + -0.02822525054216385, + 0.014728063717484474, + -0.017798177897930145, + 0.017203962430357933, + 0.017684994265437126, + 0.0033689914271235466, + -0.01020070444792509, + -0.0007998038781806827, + -0.027517851442098618, + -0.01338400412350893, + 0.00402510492131114, + -0.016864411532878876, + 0.0054328301921486855, + -0.005542477127164602, + 0.016142863780260086, + -0.009217418730258942, + 0.006635409779846668, + -0.015576942823827267, + 0.0393880195915699, + -0.019099794328212738, + -0.0032222059089690447, + -0.031040702015161514, + 0.014855395071208477, + -0.02143421396613121, + -0.03712433949112892, + 0.017161518335342407, + 0.017798177897930145, + -0.01721811108291149, + 0.005818363279104233, + 0.005358553491532803, + -0.052998390048742294, + 0.008276577107608318, + 0.0009417259716428816, + 0.018293358385562897, + -0.007682361640036106, + 0.0041701216250658035, + 0.0071765705943107605, + -0.008375613018870354, + 0.004955335520207882, + -0.014699767343699932, + -0.027673479169607162, + -0.0009107771911658347, + 0.01795380562543869, + -0.0058466591872274876, + -0.025169283151626587, + 0.030333302915096283, + -0.005457589402794838, + -0.03828447684645653, + -0.03525680676102638, + -0.023513969033956528, + 0.060383643954992294, + -0.02277827262878418, + 0.016128715127706528, + -0.010561478324234486, + -0.0075691775418818, + 0.0006291436729952693, + 0.009408417157828808, + 0.004336360841989517, + 0.003837643889710307, + -0.01867535337805748, + 5.742096618632786e-5, + 0.012238016352057457, + -0.0151383550837636, + -0.010115817189216614, + -0.010016781277954578, + -0.005139259155839682, + 0.027121707797050476, + 0.01482709962874651, + 0.001218496123328805, + 0.006603576708585024, + 0.014515843242406845, + -0.012818084098398685, + -0.016793670132756233, + 0.001058446941897273, + -0.016850262880325317, + -0.004622857552021742, + -0.008842497132718563, + -0.014487547799944878, + 0.004435396753251553, + -0.0005787414265796542, + 0.03239890933036804, + -0.006274635903537273, + -0.01409847754985094, + -0.017302999272942543, + -0.031436845660209656, + -6.068163565942086e-5, + 0.007399401627480984, + -0.020160892978310585, + 0.01784062199294567, + -0.018307507038116455, + 0.01384381391108036, + -0.0034468055237084627, + 0.003529924899339676, + 0.03969927504658699, + -0.033587340265512466, + -0.04626394435763359, + 0.000975327449850738, + 0.04269865155220032, + 0.0002800860966090113, + 0.016581451520323753, + 0.028762875124812126, + 0.019877932965755463, + -0.009245715104043484, + 0.00738525390625, + -0.01184894610196352, + -0.016355082392692566, + -0.009528675116598606, + -0.018930017948150635, + 0.006324153859168291, + -0.001603144803084433, + -0.022905604913830757, + -0.002431686734780669, + 0.00033645701478235424, + 0.012372422032058239, + 6.145535735413432e-5, + -0.0032469648867845535, + -0.0067910379730165005, + -0.015124207362532616, + -0.015223243273794651, + -0.02236798033118248, + -0.028027178719639778, + -0.022297240793704987, + -0.021901097148656845, + -0.01969400979578495, + 0.02381107583642006, + 0.010476591065526009, + 0.019849637523293495, + -0.00015595954027958214, + -0.0015668905107304454, + -0.03302142024040222, + -0.01026437059044838, + 0.014353141188621521, + -0.011742835864424706, + -0.014041885733604431, + 0.000252895406447351, + 0.01569012738764286, + -0.0030294395983219147, + -0.031946174800395966, + -0.016355082392692566, + 0.005874955095350742, + 0.004131214693188667, + 0.01020777877420187, + 0.008948607370257378, + -0.009564044885337353, + 0.011516468599438667, + -0.05345112830400467, + 0.03395519033074379, + 0.015110059641301632, + -0.032370612025260925, + 0.0125139020383358, + 0.029088279232382774, + 0.015859903767704964, + 0.0031603085808455944, + -0.006041194312274456, + 0.006295857951045036, + 0.020146746188402176, + -0.04516040161252022, + -0.03152173385024071, + -0.018930017948150635, + -0.016694635152816772, + 0.010766624473035336, + 0.0038906987756490707, + 0.019778897985816002, + -0.016850262880325317, + 0.030644558370113373, + 0.023924261331558228, + 0.0045238216407597065, + -0.013454743660986423, + -0.017472773790359497, + 0.024546772241592407, + -0.0005420451052486897, + 0.009097160771489143, + 0.0061190081760287285, + -0.012195572257041931, + -0.006278173066675663, + -0.0002988764026667923, + 0.0008502061245962977, + -0.021717173978686333, + -0.004782022442668676, + -0.019948674365878105, + 0.025268319994211197, + -0.004226713441312313, + -0.007710657548159361, + -0.05998750030994415, + -0.017982102930545807, + -0.000619859027210623, + 0.02103806845843792, + 0.02216990850865841, + -0.03327608481049538, + -0.005641513038426638, + 0.019326161593198776, + 0.02717829868197441, + 0.003823495702818036, + 0.007484289817512035, + -0.00913960486650467, + 0.004548580385744572, + 0.019877932965755463, + -0.005135722458362579, + 0.005047297570854425, + 0.008227059617638588, + -0.0033513065427541733, + 0.000482800358440727, + -0.036360349506139755, + -0.010971770621836185, + 0.004332823678851128, + -0.003678478766232729, + 0.006391357164829969, + -0.010865660384297371, + 0.017670845612883568, + -0.016072122380137444, + -0.007562103681266308, + -0.017897214740514755, + -0.02819695509970188, + -0.008686869405210018, + -0.014402659609913826, + 0.001417452353052795, + -0.028649691492319107, + -0.013412299565970898, + 0.0009647164260968566, + -0.013985293917357922, + -0.03570954129099846, + 0.0029304036870598793, + 0.024659955874085426, + 0.003908383660018444, + -0.024971211329102516, + -0.025904979556798935, + 6.847408803878352e-5, + -0.023726187646389008, + -0.005072056315839291, + -0.026612380519509315, + -0.05642220750451088, + 0.004679449368268251, + 0.011990426108241081, + 0.022283092141151428, + -0.005174629390239716, + 0.005135722458362579, + -0.009839930571615696, + -0.008750535547733307, + -0.012726121582090855, + 0.010278518311679363, + -0.016241898760199547, + 0.015845755115151405, + 0.017784031108021736, + 0.0533379428088665, + 0.00769650936126709, + 0.009818708524107933, + -0.00789458118379116, + -0.008892015554010868, + -0.003671404905617237, + 0.028267694637179375, + 0.02791399508714676, + 0.041595105081796646, + -0.022537756711244583, + 0.0007900771452113986, + -0.005209999158978462, + -0.011113250628113747, + 0.014402659609913826, + 0.02903168648481369, + -0.001510298578068614, + 0.02758859097957611, + -0.0029923010151833296, + 0.009068865329027176, + -0.006373671814799309, + 0.001598723465576768, + 0.009019346907734871, + 0.01467147096991539, + 0.0032275114208459854, + -0.02422136813402176, + -0.03203106299042702, + 0.006076564081013203, + -0.011834798380732536, + -0.03259698301553726, + 0.010236075147986412, + 0.02400914765894413, + 0.0013122266391292214, + -0.0017269396921619773, + 0.018944166600704193, + -0.0072119408287107944, + -0.0025519446935504675, + -0.0034114355221390724, + -0.005036686547100544, + -0.016397526487708092, + -0.019453493878245354, + -0.019736453890800476, + -0.03146514296531677, + 0.008326095528900623, + -0.01245731022208929, + 0.00045892561320215464, + 0.003904846729710698, + -0.0254380963742733, + -0.0015730801969766617, + 0.002518343273550272, + -0.015633534640073776, + -0.009988484904170036, + -0.008297799155116081, + -0.041170667856931686, + 0.01908564567565918, + -0.013504262082278728, + -0.007413549814373255, + 0.0021098197903484106, + -0.01958082616329193, + 0.03375711664557457, + -0.01020777877420187, + -0.016043826937675476, + 0.03978416323661804, + 0.024164777249097824, + -0.019976969808340073, + 0.015449611470103264, + -0.004881058353930712, + -0.04049156233668327, + 0.013610371388494968, + 0.005425756331533194, + 0.022735828533768654, + 0.0006808722973801196, + -0.009868226945400238, + 0.0008214680128730834, + -0.015605239197611809, + -0.0036059704143553972, + 0.04216102510690689, + 0.004955335520207882, + 0.00131487927865237, + 0.024985359981656075, + -0.03160662204027176, + -0.02062777802348137, + -0.02185865305364132, + -0.027348075062036514, + 0.012966637499630451, + -0.015973087400197983, + -0.0015147197991609573, + -0.018703650683164597, + 0.004927039612084627, + 0.005807752255350351, + -0.024758992716670036, + -0.01970815844833851, + 0.014685619622468948, + 0.005107426550239325, + 0.020740961655974388, + -0.005485885310918093, + -0.042330801486968994, + -0.015435462817549706, + -0.010306814685463905, + 0.006271099206060171, + -0.0028508210089057684, + -0.033389270305633545, + -0.002242457354441285, + 0.019665714353322983, + -0.00928815919905901, + -0.006614187732338905, + -0.00015474369865842164, + 0.00415243674069643, + 0.005691030994057655, + -0.015435462817549706, + -0.007533807773143053, + -0.020868293941020966, + 0.004134751856327057, + -0.0342947393655777, + -0.018335802480578423, + -0.005178166553378105, + -0.016779523342847824, + -0.01825091429054737, + 0.01133254449814558, + 0.013242524117231369, + -0.005708716344088316, + -0.04750896990299225, + 0.0007887507672421634, + 0.017373738810420036, + -0.008092653006315231, + -0.005153407342731953, + 0.021787913516163826, + -0.004042789805680513, + 0.004520284477621317, + -0.030927518382668495, + 0.004711282439529896, + 0.013978219591081142, + 0.010533182881772518, + -0.00026240109582431614, + -0.007378179579973221, + -0.0051958514377474785, + -0.021603988483548164, + 0.023103676736354828, + 0.018958313390612602, + -0.012676604092121124, + 0.0027641647029668093, + -0.012301682494580746, + -0.025296615436673164, + -0.0013449438847601414, + 0.0336439348757267, + -0.004962409380823374, + -0.023825224488973618, + -0.020995626226067543, + -0.006748593878000975, + 0.02432040497660637, + -0.01020070444792509, + 0.018463134765625, + -0.0034574163146317005, + -0.004322212655097246, + 0.00481739267706871, + 0.00574054941534996, + -0.0027906920295208693, + 0.004608709365129471, + -0.012351199984550476, + -0.01711907424032688, + -0.03087092563509941, + 0.010702958330512047, + 0.01072418037801981, + -0.005938621237874031, + -0.01672293059527874, + 0.02822525054216385, + 0.03047478199005127, + 0.013773073442280293, + -0.026202088221907616, + -0.0040887705981731415, + 0.027857402339577675, + 0.010596849024295807, + -0.00605534203350544, + -0.03016352653503418, + -0.03469088673591614, + -0.003551146946847439, + 0.0038836246822029352, + 0.014529991894960403, + -0.02862139418721199, + 0.04136873781681061, + -0.021207844838500023, + -0.020599480718374252, + 0.0011583671439439058, + 0.0034715645015239716, + -0.009443786926567554, + 0.022014280781149864, + 0.02071266621351242, + -0.02297634445130825, + -0.028706282377243042, + -0.0159164946526289, + 0.01610041968524456, + 0.006950202863663435, + -0.008552463725209236, + 0.004852762445807457, + 0.00415243674069643, + 0.0034556479658931494, + -0.007654065731912851, + 0.030757742002606392, + -0.018944166600704193, + 0.028055476024746895, + -0.04145362600684166, + -0.03766196593642235, + 0.0034361944999545813, + -0.004173658788204193, + -0.03188958019018173, + 0.014883691444993019, + -0.009351825341582298, + -0.007420623674988747, + -0.0007321587763726711, + 0.012238016352057457, + -0.0011645568301901221, + -0.014600731432437897, + -0.0031779934652149677, + -0.007477215491235256, + 0.01834995113313198, + -0.003568831831216812, + -0.006232191808521748, + -0.009988484904170036, + -0.004378804471343756, + 0.011297174729406834, + -0.020047709345817566, + -0.002148726722225547, + 0.007056312635540962, + -0.01680781878530979, + 0.013164710253477097, + -0.0037845887709409, + -0.024037444964051247, + 0.010957622900605202, + 0.0139499232172966, + 0.01663804240524769, + -0.008927385322749615, + 0.01338400412350893, + 0.008644425310194492, + 4.564939081319608e-5, + -0.0010867428500205278, + 0.02482973225414753, + 0.004046326503157616, + 0.02061362937092781, + 0.02545224316418171, + 0.0278149601072073, + 0.008672721683979034, + 0.017684994265437126, + -0.004198417533189058, + -0.00520292529836297, + 0.01854802295565605, + 0.012528049759566784, + -0.00021277258929330856, + -0.0033778338693082333, + 0.003936679568141699, + 0.004460155498236418, + -0.017288850620388985, + 0.00559199508279562, + 0.018194321542978287, + -0.026131348684430122, + -0.01724640652537346, + 0.011261804029345512, + 0.021717173978686333, + 0.0008479954558424652, + -0.012280460447072983, + -0.008234133012592793, + -0.013398151844739914, + -0.005146333482116461, + 0.01148109883069992, + 0.0002891496696975082, + 0.019439345225691795, + -0.03488895669579506, + -0.01631263829767704, + 0.0019665714353322983, + -0.007880433462560177, + -0.004308064468204975, + -0.028550654649734497, + -0.011771132238209248, + 0.019566677510738373, + 0.004573339596390724, + 0.021915245801210403, + 0.008255355060100555, + -0.0002526743628550321, + 0.007063386961817741, + -0.00011130493658129126, + -0.008814201690256596, + -0.005747623275965452, + 0.0018233229639008641, + 0.008814201690256596, + -0.0054328301921486855, + 0.007717731408774853, + 0.01467147096991539, + 0.009415491484105587, + -0.004520284477621317, + -0.005171092227101326, + 0.015180799178779125, + -0.018930017948150635, + -0.011573060415685177, + 0.008149245753884315, + 0.015520351007580757, + -0.0005071171908639371, + 0.019524233415722847, + 0.020047709345817566, + 0.0046935975551605225, + -0.0029923010151833296, + -0.025494687259197235, + -0.009457934647798538, + -0.028451619669795036, + 0.00025223224656656384, + -0.011764057911932468, + 0.025466391816735268, + -0.01670878194272518, + 0.012492679990828037, + 0.004329286515712738, + -0.016482414677739143, + -0.00763991754502058, + -0.015605239197611809, + 0.010476591065526009, + -0.0008152782684192061, + -0.020656073465943336, + 0.023429080843925476, + -0.0066884648986160755, + 0.0009434944367967546, + -0.01670878194272518, + 0.002479436108842492, + -0.0038553287740796804, + -0.014119699597358704, + -0.002707572653889656, + -0.01461487915366888, + -0.02993715927004814, + -0.014254105277359486, + -0.015110059641301632, + -0.015251539647579193, + 0.0072791436687111855, + 0.007335735484957695, + 0.0022530683781951666, + 0.013617445714771748, + -0.007887507788836956, + -0.01815187744796276, + 0.03817129135131836, + 0.008552463725209236, + 0.00836146529763937, + -0.012485605664551258, + 0.000998317962512374, + -0.0055141812190413475, + -0.02481558360159397, + -0.009012273512780666, + -0.018746094778180122, + -0.012223867699503899, + -0.009189123287796974, + 0.028451619669795036, + -0.028762875124812126, + -7.212162017822266e-5, + 0.03067285381257534, + 0.02040140889585018, + -0.00253779673948884, + -0.0022159297950565815, + -0.008290725760161877, + -0.008991051465272903, + 0.0125139020383358, + -0.018746094778180122, + 0.00730743957683444, + -0.004071085713803768, + 0.011544764041900635, + 0.01364574208855629, + 0.011778206564486027, + -0.019764749333262444, + 0.0021098197903484106, + -0.017104927450418472, + 0.0077672493644058704, + -0.006377208977937698, + -0.03395519033074379, + 0.016567302867770195, + -0.00345211080275476, + -0.020882440730929375, + -0.0005345289828255773, + -0.018533874303102493, + 0.0032027524430304766, + 0.0017711521359160542, + 0.000157396454596892, + 0.018604613840579987, + 0.028677986934781075, + -0.023032937198877335, + 0.032681871205568314, + 0.015223243273794651, + 0.012450235895812511, + -0.011558912694454193, + -0.03457770124077797, + 0.003170919604599476, + -0.008198763243854046, + 0.0033742969390004873, + 0.01078077219426632, + 0.007972395047545433, + 0.00454150652512908, + -0.028960946947336197, + 0.0005862575490027666, + 0.03672819584608078, + 0.014798803254961967, + -0.008474648930132389, + -8.925395377445966e-5, + -0.027984734624624252, + -0.013214227743446827, + 0.0275744441896677, + 0.01349011342972517, + 0.010936400853097439, + -0.016765374690294266, + 0.023669596761465073, + 0.02258020080626011, + -0.021816208958625793, + 0.01601553149521351, + 0.0026969616301357746, + -0.005164018366485834, + 0.030757742002606392, + 0.0006172063294798136, + -0.0246175117790699, + -0.004919965285807848, + -0.004895206540822983, + 0.012337052263319492, + -0.023358341306447983, + -0.004934113472700119, + 0.017302999272942543, + -0.023542264476418495, + -0.022283092141151428, + 0.002247762866318226, + 0.03293653205037117, + 0.01375185139477253, + -0.028027178719639778, + -0.01035633310675621, + -0.02615964412689209, + 0.0014678544830530882, + 0.008686869405210018, + -0.00402510492131114, + 0.00012512133980635554, + 0.023754484951496124, + -0.010144112631678581, + -0.005542477127164602, + 0.023146120831370354, + 0.005903251003473997, + 0.016157010570168495, + 2.3418800992658362e-5, + 0.01939690113067627, + 0.0039861975237727165, + -0.007731879595667124, + -0.009465008974075317, + -0.016086271032691002, + 0.0011194600956514478, + 0.01989208161830902, + 0.0025554816238582134, + -0.01343352161347866, + -0.019651565700769424, + 0.02678215503692627, + -0.0024918157141655684, + -0.04009541869163513, + -0.006179137155413628, + 0.023061232641339302, + 0.008941533043980598, + -0.017317146062850952, + -0.019736453890800476, + -0.002776544075459242, + 0.014487547799944878, + 0.0013564390828832984, + 0.015067615546286106, + 0.005436367355287075, + -0.009061791002750397, + -0.009472083300352097, + -0.018434837460517883, + 0.0026651285588741302, + 0.02214161306619644, + -0.018335802480578423, + -0.00042598729487508535, + -0.004912891425192356, + 0.017911361530423164, + 0.0009638321935199201, + -0.002610305091366172, + -0.007965321652591228, + -0.031351957470178604, + -0.020896589383482933, + 0.01461487915366888, + 0.0003587843384593725, + 0.007031553890556097, + 0.008255355060100555, + 0.004049863666296005, + -0.009068865329027176, + 0.012598790228366852, + -0.005422219168394804, + -0.02349982038140297, + 0.004007419571280479, + -0.0021876338869333267, + -0.007873359136283398, + -0.023216860368847847, + -0.0012529818341135979, + -0.010568552650511265, + 0.06321324408054352, + 0.014027738012373447, + 0.005503570195287466, + 0.02596157230436802, + 0.003080726135522127, + 0.00718364492058754, + 0.0007980353548191488, + -0.006493929773569107, + 0.007972395047545433, + 0.003335390007123351, + 0.008191689848899841, + -0.0027376371435821056, + -0.00592801021412015, + -0.003901309799402952, + -0.010398776270449162, + 0.008913237601518631, + 0.015746718272566795, + 0.004460155498236418, + -0.0061048599891364574, + 0.025310764089226723, + 0.012605863623321056, + 0.013744777999818325, + -0.03930313140153885, + 0.03157832473516464, + -0.0007016521412879229, + -0.00533379428088665, + 0.0003119190805591643, + -0.00815631914883852, + 0.03336097300052643, + 0.017911361530423164, + -0.0017101389821618795, + -0.006203895900398493, + -0.00322928000241518, + -0.0021328104194253683, + 0.023245155811309814, + -0.009783338755369186, + -0.013546706177294254, + -0.0007821188773959875, + -0.0077813975512981415, + 0.030305005609989166, + -0.007314513903111219, + -0.023641301319003105, + 0.03752048313617706, + -0.00011683149205055088, + -0.020585333928465843, + 0.01323544979095459, + 0.011558912694454193, + -0.007993617095053196, + -0.006391357164829969, + -0.016991741955280304, + -0.01734544336795807, + -0.020387262105941772, + 0.00033557278220541775, + 0.007859211415052414, + -0.0017755734734237194, + -0.004180732648819685, + -0.004665301647037268, + -0.017670845612883568, + 0.02215576171875, + -0.01378722209483385, + 0.0033336214255541563, + 0.0075762514024972916, + 0.00784506369382143, + -0.021802060306072235, + -0.007731879595667124, + -0.003448573872447014, + -0.015746718272566795, + 0.006486855912953615, + -0.0023857057094573975, + 0.010165334679186344, + -0.009960188530385494, + 0.010250222869217396, + -0.020175041630864143, + -0.02604646049439907, + -0.017826475203037262, + 0.009358898736536503, + -0.00481739267706871, + 0.02112295664846897, + -0.011261804029345512, + 0.017458627000451088, + -0.01322837546467781, + -0.007972395047545433, + 0.007197792641818523, + -0.01641167514026165, + 0.005641513038426638, + 0.0013688185717910528, + -0.005952768959105015, + -0.001092932652682066, + 0.001027498161420226, + -0.016864411532878876, + -0.004583950620144606, + 0.00963478535413742, + -0.00513218529522419, + 0.03505873307585716, + -0.0030612724367529154, + -0.010511960834264755, + -0.013256671838462353, + -0.00790165551006794, + 0.007823841646313667, + -0.009790413081645966, + 0.026131348684430122, + 0.014869543723762035, + -0.013780147768557072, + 0.017203962430357933, + -0.006225117947906256, + -0.0036643308121711016, + -0.0021310418378561735, + 0.010158260352909565, + -0.00928815919905901, + 0.015732571482658386, + 0.0081633934751153, + -0.018901722505688667, + 0.002857895102351904, + 0.0023397246841341257, + -0.024674104526638985, + 0.00784506369382143, + 0.014855395071208477, + 0.002688119187951088, + -0.010589774698019028, + 0.0013661658158525825, + -0.020090153440833092, + -0.014346067793667316, + -8.499850810039788e-5, + 0.008205837570130825, + -0.010844438336789608, + 0.002332650823518634, + -0.0046263947151601315, + -0.009012273512780666, + 0.00809972733259201, + 0.009910671040415764, + 0.008043135516345501, + 0.0063559869304299355, + -0.010886882431805134, + 0.009960188530385494, + -0.0095994146540761, + -0.02050044573843479, + -0.003865939797833562, + -0.014657323248684406, + 0.0151383550837636, + -0.01682196743786335, + -0.0031196330673992634, + 0.010568552650511265, + 0.006748593878000975, + 0.018802685663104057, + 0.003510471433401108, + -0.00690422160550952, + -0.0026987302117049694, + -0.049404799938201904, + 0.019212977960705757, + 0.0006357755628414452, + 0.035766132175922394, + -0.004796170629560947, + 0.009401342831552029, + -0.03712433949112892, + 0.011466950178146362, + 0.004647616762667894, + -0.002666897140443325, + 0.007300365716218948, + -0.012683678418397903, + 0.0012255701003596187, + -2.641696119098924e-5, + -0.006805185694247484, + -0.03208765387535095, + -0.016029678285121918, + -0.01622775010764599, + -0.010045076720416546, + 0.02574935182929039, + 0.017501071095466614, + -0.005563699174672365, + -3.857539559248835e-5, + -0.015378871001303196, + 0.00836853962391615, + 0.009472083300352097, + -0.019722305238246918, + 0.007993617095053196, + 0.014600731432437897, + 0.012485605664551258, + 0.0265840832144022, + -0.014812950976192951, + 0.013079822063446045, + 0.010511960834264755, + -0.016369231045246124, + -0.0031107906252145767, + 0.0002955604577437043, + 0.0056839571334421635, + 0.008347317576408386, + 0.040265195071697235, + -0.03412496671080589, + 0.00777432369068265, + 0.014112625271081924, + 0.0035228508058935404, + 0.027461258694529533, + 0.00902642123401165, + -0.0051145004108548164, + -0.0009470314253121614, + 0.011226434260606766, + 0.005991675890982151, + 0.03613398224115372, + -0.0008334053563885391, + 0.007378179579973221, + 0.009556970559060574, + 0.008983977138996124, + -0.0033955189865082502, + 0.013065674342215061, + -0.008672721683979034, + -0.016468266025185585, + -0.004290379583835602, + -0.019976969808340073, + 0.01148109883069992, + 0.001978950807824731, + -0.01979304663836956, + -0.021575693041086197, + 0.0036024332512170076, + -0.007753101643174887, + -0.017670845612883568, + 0.004792633466422558, + 0.00994604080915451, + 0.011657948605716228, + 0.006391357164829969, + -0.01179235428571701, + 0.017302999272942543, + 0.011565986089408398, + 0.003551146946847439, + -0.014629027806222439, + -0.004973020404577255, + 0.012266311794519424, + 0.02215576171875, + -0.000977095915004611, + -0.0049447244964540005, + -0.003901309799402952, + 0.04490573704242706, + -0.005248906556516886, + -0.004346971400082111, + -0.007399401627480984, + 0.022948049008846283, + 0.030022047460079193, + 0.013659889809787273, + 0.0007233162759803236, + 0.008234133012592793, + -0.009408417157828808, + -0.02011844888329506, + -0.005836048163473606, + -0.012895897962152958, + 0.004576876759529114, + 0.00415597390383482, + 0.015944790095090866, + 0.011707466095685959, + -0.008955680765211582, + -0.015039319172501564, + -2.4966238925117068e-5, + -0.008290725760161877, + -0.015591091476380825, + 0.00013915880117565393, + 0.019326161593198776, + 0.01441680733114481, + 0.00230612326413393, + -0.000525244337040931, + 0.006554058752954006, + -0.005694568157196045, + 0.007349883671849966, + -0.0038341067265719175, + -0.0032257430721074343, + -0.006670780014246702, + 0.007371105719357729, + 0.002327345311641693, + -0.00408169673755765, + -0.04329286515712738, + 0.015944790095090866, + -0.013914553448557854, + -0.007448919583112001, + -0.0017906057182699442, + -0.03296482935547829, + 0.009274011477828026, + 0.011261804029345512, + 0.0036678677424788475, + 0.0019205904100090265, + 0.028267694637179375, + -0.02163228578865528, + 0.014728063717484474, + -0.009465008974075317, + -0.007632843684405088, + 0.027121707797050476, + -0.008198763243854046, + -0.031634919345378876, + 0.007141200825572014, + -0.020542889833450317, + -0.010639292187988758, + 0.010568552650511265, + 0.006730908993631601, + 0.010377555154263973, + 0.016468266025185585, + -0.029371239244937897, + -0.004697134718298912, + -0.009160826914012432, + -0.017104927450418472, + -0.0048562996089458466, + 0.016666337847709656, + 0.011686244048178196, + 0.0132920416072011, + -0.007155348546802998, + 0.005312572233378887, + -0.03149343654513359, + -0.012499754317104816, + -0.024900471791625023, + 0.020783405750989914, + 0.014289475046098232, + 0.018406542018055916, + 0.0027606275398284197, + -0.019665714353322983, + 0.012535124085843563, + 0.014183365739881992, + -0.007837989367544651, + -0.012938342057168484, + 0.016751226037740707, + -0.022919753566384315, + -0.012443162500858307, + 0.017982102930545807, + 0.016963446512818336, + -0.00738525390625, + -0.002330882241949439, + 0.012506827712059021, + -0.007802619598805904, + 0.0147705078125, + 9.864910680335015e-6, + 0.001375008374452591, + 0.01939690113067627, + 0.015124207362532616, + 0.0034503424540162086, + 0.029710790142416954, + -0.036388643085956573, + -0.009450861252844334, + 0.020641924813389778, + -0.02123614214360714, + 0.010285592637956142, + -0.011756984516978264, + 0.024971211329102516, + -0.01990623027086258, + 0.006310006137937307, + -0.018010398373007774, + -0.000977095915004611, + -0.0014395585749298334, + 0.0024688253179192543, + -0.015874050557613373, + -0.004835077561438084, + 0.011544764041900635, + 0.040774524211883545, + 0.026301123201847076, + -0.003699700813740492, + 0.00579714123159647, + 0.013200080022215843, + 0.004806781653314829, + -0.026117200031876564, + -0.002157569397240877, + -0.012386569753289223, + -0.011431580409407616, + -0.010504886507987976, + 0.02545224316418171, + 0.03036159835755825, + -0.010695884935557842, + 0.00027898079133592546, + 0.001867535407654941, + 0.02400914765894413, + -0.011672096326947212, + 0.0052772024646401405, + 0.022693384438753128, + 0.004884595517069101, + 0.01752936653792858, + 0.0016057974426075816, + -0.04015200957655907, + 0.009974337182939053, + 0.02185865305364132, + -0.0009859384736046195, + -0.008403909392654896, + -0.018746094778180122, + 0.004728967323899269, + 0.024575067684054375, + 0.0020744497887790203, + 0.01118399016559124, + -0.029682494699954987, + -0.008552463725209236, + 0.017812326550483704, + -0.0005336446920409799, + -0.01046244241297245, + -0.003087799996137619, + 0.0015828070463612676, + 0.014869543723762035, + 0.009203271009027958, + -0.004028641618788242, + 0.018194321542978287, + 0.011693318374454975, + -0.004308064468204975, + 0.017203962430357933, + 0.01663804240524769, + 0.005475274287164211, + 0.0018799148965626955, + 0.0032186689786612988, + -4.062021980644204e-5, + 0.010172409005463123, + -0.019778897985816002, + -0.01496857963502407, + -0.0015226780669763684, + -0.0009054717374965549, + 0.004792633466422558, + 0.009726746939122677, + 0.007887507788836956, + -0.033898595720529556, + 0.02156154438853264, + 0.0010142343817278743, + 0.004930576309561729, + -0.013560853898525238, + 0.011410358361899853, + 0.0016234824433922768, + -0.01578916236758232, + -0.0016951067373156548, + 0.021929392591118813, + -0.0007471910212188959, + 0.0051604812033474445, + 0.0029710789676755667, + 0.008884941227734089, + 0.0025466391816735268, + -0.0007949405116960406, + -0.004318675491958857, + 0.008439279161393642, + -0.007328661624342203, + 0.004690060392022133, + 0.02668312005698681, + 0.04699964076280594, + 0.020047709345817566, + -0.010992992669343948, + 0.0003161192871630192, + -0.0009620636701583862, + -0.005627365317195654, + -0.01744447834789753, + 0.028890207409858704, + -0.011969204060733318, + -0.013666964136064053, + 0.028777023777365685, + -0.019750602543354034, + -0.001701296423561871, + 0.0121036097407341, + -0.012598790228366852, + -0.0026085367426276207, + 0.013129339553415775, + 0.006546984892338514, + -0.0021363473497331142, + 0.028437471017241478, + -0.007056312635540962, + 0.02164643257856369, + 0.009924818761646748, + -0.004845688585191965, + -0.006412579212337732, + 0.016878558322787285, + -0.010165334679186344, + -0.00738525390625, + -0.026852896437048912, + -0.02226894535124302, + -0.014756359159946442, + 0.015350575558841228, + 0.003904846729710698, + -0.021915245801210403, + -0.0053797755390405655, + -0.002880885498598218, + -0.016553154215216637, + 0.0005013695918023586, + -0.001764962449669838, + -0.0071093677543103695, + 0.024447735399007797, + 0.008792979642748833, + -0.018788538873195648, + 0.003533461829647422, + -0.01827920973300934, + 0.021703025326132774, + 0.014501695521175861, + -0.00203907978720963, + 0.005885566119104624, + 0.016878558322787285, + 0.0010372248943895102, + -0.02266508899629116, + 0.004778485279530287, + 0.008637350983917713, + -0.012542198412120342, + 0.00592801021412015, + -0.01926957070827484, + 0.0046723755076527596, + 0.006812260020524263, + -0.005782993044704199, + -0.016694635152816772, + -0.008297799155116081, + -0.0015898810233920813, + 0.017501071095466614, + 0.014529991894960403, + -0.014183365739881992, + 0.01755766198039055, + -6.421172656700946e-6, + 0.0004942956147715449, + 0.01211068406701088, + 0.004141825716942549, + 0.0163267869502306, + -0.006483318749815226, + 0.009733821265399456, + 0.008983977138996124, + -0.02020333707332611, + -0.010773698799312115, + 0.009762116707861423, + 0.0029923010151833296, + -0.003356612054631114, + -0.010363406501710415, + 0.01590234786272049, + -0.003989734686911106, + -0.009245715104043484, + 0.013277893885970116, + -0.0072579216212034225, + 0.003989734686911106, + 0.012952489778399467, + 0.003940216731280088, + 0.023782780393958092, + 0.008587833493947983, + 0.018930017948150635, + 0.006992646958678961, + 0.015817459672689438, + -0.009854079224169254, + -0.009535749442875385, + -0.00718010775744915, + -0.00836853962391615, + 0.0023839373607188463, + 0.009415491484105587, + 0.02225479669868946, + 0.009132531471550465, + -0.01020070444792509, + 0.0040357159450650215, + -0.012683678418397903, + 0.017670845612883568, + -0.005758234299719334, + -0.017600106075406075, + -0.012351199984550476, + 0.015152502804994583, + -0.011346692219376564, + -0.0009594109724275768, + 0.025466391816735268, + -0.02400914765894413, + 0.0024511402007192373, + 0.008538315072655678, + 0.002981689991429448, + 0.0021080514416098595, + 0.003961438778787851, + -0.0042373244650661945, + -0.0034821752924472094, + 0.005811288952827454, + 0.014841247349977493, + 0.02164643257856369, + -0.00507559347897768, + 0.003047124482691288, + 0.0005681304610334337, + -0.002161106327548623, + -0.003904846729710698, + -0.022636793553829193, + 0.002083292230963707, + -0.024999508634209633, + 0.013426448218524456, + 0.005489422474056482, + 0.006928980816155672, + -0.01877439022064209, + -0.0008506482117809355, + 0.031634919345378876, + -0.003735070815309882, + 0.01743032969534397, + 0.004813855513930321, + 0.015591091476380825, + -0.0004779369628522545, + 0.018915869295597076, + -0.01138913631439209, + -0.0002955604577437043, + -0.016751226037740707, + -0.01416214369237423, + -0.024546772241592407, + -0.019722305238246918, + -0.0035440728534013033, + -0.004166584461927414, + 0.019665714353322983, + -0.007526733446866274, + 0.009825782850384712, + 0.0013369856169447303, + 9.400679846294224e-5, + -0.015194946900010109, + 0.01711907424032688, + 0.0038553287740796804, + 0.018533874303102493, + 0.0037951997946947813, + 0.012860528193414211, + -0.018647057935595512, + 0.008092653006315231, + -0.011926759965717793, + -0.010752476751804352, + -0.005744086112827063, + -0.010377555154263973, + 0.0036218869499862194, + -0.002311428776010871, + -0.0005818363279104233, + -0.019835488870739937, + -0.02000526525080204, + -0.023471524938941002, + 0.01165087427943945, + -0.012733195908367634, + 0.015591091476380825, + 0.009726746939122677, + 0.010370480827987194, + 0.0026828136760741472, + -0.0032841034699231386, + 0.0018604614306241274, + -0.019014906138181686, + 0.009988484904170036, + 0.01000263262540102, + 0.03203106299042702, + 0.005680420435965061, + 0.0034255834762007, + -0.01020777877420187, + 0.017826475203037262, + -0.014261179603636265, + 0.006907758768647909, + 0.007003257982432842, + -0.013207153417170048, + -0.0038765508215874434, + 0.013525484129786491, + -0.010766624473035336, + -0.004251472651958466, + -0.0036395718343555927, + -0.005376238375902176, + 0.006373671814799309, + 0.012584641575813293, + -0.00763991754502058, + -0.005400997120887041, + 0.0043398975394666195, + 0.023372488096356392, + -0.009323528967797756, + 0.008340243250131607, + -0.0012105378555133939, + -0.039048466831445694, + -0.0028242936823517084, + -0.010504886507987976, + -0.016171159222722054, + 0.00566980941221118, + 0.00908301305025816, + -0.007155348546802998, + 0.02296219766139984, + 0.020387262105941772, + -0.005945695098489523, + 0.01482709962874651, + 0.0008488797466270626, + -0.017402034252882004, + 0.004064011853188276, + -0.0329931266605854, + 0.002016089390963316, + 0.002979921642690897, + 0.0053656273521482944, + -0.021787913516163826, + -0.005397460423409939, + -0.004460155498236418, + -0.008927385322749615, + 0.012174350209534168, + -0.012280460447072983, + -0.016057975590229034, + -0.036275461316108704, + -0.028805319219827652, + 0.015619386918842793, + -0.0024705936666578054, + -0.025466391816735268, + 0.022410424426198006, + 0.016142863780260086, + -0.017274701967835426, + -0.0075974734500050545, + -0.01087980903685093, + -0.009507453069090843, + 0.0006432916852645576, + 0.006854703649878502, + -0.013454743660986423, + -0.01527983509004116, + 0.007328661624342203, + -0.011212286539375782, + 0.015364723280072212, + -0.048980358988046646, + -0.015265687368810177, + -0.010313889011740685, + -0.014954430982470512, + -0.004364656750112772, + -1.5059878023748752e-5, + 0.012195572257041931, + 0.004173658788204193, + 0.00763991754502058, + -0.016439970582723618, + 0.009090087376534939, + -0.006359524093568325, + -0.006578817963600159, + -0.019835488870739937, + -0.004453081637620926, + 0.018420690670609474, + 0.003188604488968849, + -0.02164643257856369, + 0.005443441215902567, + 0.009903596714138985, + 0.0026545177679508924, + -0.01970815844833851, + -0.008396835066378117, + -0.009839930571615696, + -0.018010398373007774, + 0.0021098197903484106, + -0.02030237391591072, + -0.0044566188007593155, + -0.005252443253993988, + -0.01990623027086258, + -0.011353766545653343, + 0.009698450565338135, + -0.002767701633274555, + 0.014190439134836197, + -0.0005973106599412858, + 0.0006189747946336865, + -0.025268319994211197, + 0.015180799178779125, + 0.0034715645015239716, + -0.016043826937675476, + 0.0018100591842085123, + 0.004619320388883352, + 0.010717106983065605, + -0.008785905316472054, + 0.01641167514026165, + 0.0019594973418861628, + -0.002712878165766597, + 0.02255190536379814, + 0.002368020825088024, + -0.004728967323899269, + -0.003614812856540084, + 0.02011844888329506, + -0.010045076720416546, + -0.012697826139628887, + 0.016581451520323753, + -0.0036678677424788475, + -0.0014218735741451383, + 0.004293916746973991, + -0.0100097069516778, + -0.0018463134765625, + -0.007371105719357729, + -0.009868226945400238, + -0.027659330517053604, + -0.021207844838500023, + 0.00592447305098176, + 0.029569311067461967, + 0.00010594417108222842, + 0.011014214716851711, + -0.0075691775418818, + -0.011268878355622292, + 0.008913237601518631, + -0.021094661206007004, + -0.01298078615218401, + 0.012825158424675465, + -0.007951173931360245, + 0.01713322289288044, + 0.007434771861881018, + 0.012938342057168484, + 0.003763366723433137, + -0.011459876783192158, + 0.0014121468411758542, + 0.01979304663836956, + 0.0013325642794370651, + 0.008976902812719345, + 0.025494687259197235, + -0.010893956758081913, + -0.001375008374452591, + 0.012690751813352108, + 0.01774158701300621, + -0.01578916236758232, + 0.027843255549669266, + -0.0038765508215874434, + -0.0015173725550994277, + -0.0036572569515556097, + -0.04524528980255127, + -0.013447669334709644, + -0.02113710530102253, + -0.012549271807074547, + 0.005882028955966234, + -0.02031652070581913, + 0.0076257698237895966, + -0.008630277588963509, + 0.005284276325255632, + -0.017826475203037262, + 0.01876024156808853, + -0.0038270328659564257, + -0.011990426108241081, + 0.007243773899972439, + 0.00861612893640995, + 0.0050791301764547825, + -0.002332650823518634, + 0.0009700219379737973, + -0.010278518311679363, + -0.023231009021401405, + -0.004371730610728264, + 0.003501628991216421, + 0.000813951890449971, + 0.02729148417711258, + 0.012959564104676247, + -0.002330882241949439, + 0.003483943874016404, + 0.00045229372335597873, + -0.004937650635838509, + -0.014756359159946442, + -0.01714736968278885, + -0.006522226147353649, + 0.0016252510249614716, + -0.01461487915366888, + 0.007130589801818132, + 0.033502452075481415, + -0.001388272037729621, + 0.011191064491868019, + -0.0042585465125739574, + -0.01980719342827797, + 0.0008440163801424205, + 0.010971770621836185, + -0.006737982854247093, + -0.010823216289281845, + -0.006087175104767084, + -0.00302767101675272, + 0.008120949380099773, + -0.0006194169400259852, + 0.006907758768647909, + 0.033813707530498505, + 0.01992037706077099, + -0.032257430255413055, + 0.0034096669405698776, + -0.001058446941897273, + -0.00751258572563529, + -0.008007765747606754, + -0.02525417134165764, + 0.007710657548159361, + -0.018321653828024864, + -0.018335802480578423, + 0.005843122024089098, + 0.0006233960739336908, + -0.02050044573843479, + -0.0016022605122998357, + -0.01112739834934473, + 0.013914553448557854, + -0.0027234891895204782, + 0.01211068406701088, + -0.0254380963742733, + 0.01752936653792858, + 0.0013246061280369759, + 0.004594561643898487, + 0.009118382818996906, + -0.023570559918880463, + 0.00995311513543129, + -0.014911986887454987, + 0.014077255502343178, + -0.0029304036870598793, + 0.003781051840633154, + -0.010073373094201088, + -0.00841805711388588, + -0.03602079674601555, + 0.03661501407623291, + -0.0172322578728199, + -0.008071431890130043, + -0.006886536721140146, + -0.018647057935595512, + -0.0029250981751829386, + 0.001558047952130437, + -0.005245369393378496, + 0.013879183679819107, + 0.005266591440886259, + 0.00014545908197760582, + 0.012634159997105598, + -0.01622775010764599, + -0.010299740359187126, + 0.012910045683383942, + -0.024490179494023323, + 0.008446353487670422, + -0.024985359981656075, + -0.00851001963019371, + -0.02555128000676632, + -0.0009806329617276788, + 0.004145362880080938, + -0.009564044885337353, + 0.0027217206079512835, + 0.0006229539285413921, + -0.009118382818996906, + 0.0021522638853639364, + 0.020698517560958862, + -0.0013024997897446156, + -0.011573060415685177, + -0.0201891902834177, + 0.024999508634209633, + 0.027730071917176247, + 0.01806699112057686, + 0.01844898611307144, + 0.017387885600328445, + 0.007349883671849966, + 0.013193005695939064, + 0.008000691421329975, + -0.006812260020524263, + -0.002180559793487191, + 0.0020496908109635115, + -0.015378871001303196, + -0.010306814685463905, + -0.008340243250131607, + -4.810871178051457e-5, + -0.005468200426548719, + -0.0005858154618181288, + -0.00026726449141278863, + -0.013666964136064053, + 0.00862320326268673, + -0.044679369777441025, + -0.0014068413292989135, + 0.008708091452717781, + 0.01734544336795807, + -0.009125457145273685, + 0.020443852990865707, + -0.006090712267905474, + -0.005156944505870342, + 0.011290100403130054, + -0.016086271032691002, + 0.00525951711460948, + -0.02194354124367237, + 0.005192314274609089, + -0.017260555177927017, + -0.023924261331558228, + 0.027050968259572983, + 0.008651499636471272, + 0.021165400743484497, + 0.014077255502343178, + -0.006164988968521357, + -0.012655382044613361, + 0.009465008974075317, + 0.0041029187850654125, + -0.0011406821431592107, + 0.01502517145127058, + -0.0006702612736262381, + 0.003735070815309882, + -0.011360840871930122, + 0.009061791002750397, + -0.0013007313245907426, + -0.006907758768647909, + -0.0213351771235466, + 0.01199750043451786, + 0.012018722482025623, + 0.0031585399992763996, + -0.0006220696959644556, + 0.0010655209189280868, + -0.00789458118379116, + -0.007505511865019798, + -0.012358274310827255, + 0.011474024504423141, + -0.015930643305182457, + 0.01107080653309822, + -0.0007715078536421061, + -0.02102392166852951, + 0.026442604139447212, + -0.0005234758136793971, + -0.0032275114208459854, + 0.011056658811867237, + 0.011657948605716228, + -0.011551838368177414, + -0.027333928272128105, + 0.004113529808819294, + 0.009259862825274467, + -0.009656007401645184, + -0.021490804851055145, + 0.02914487011730671, + -0.022523608058691025, + 0.02348567172884941, + -0.010370480827987194, + -0.005107426550239325, + -0.008976902812719345, + 0.008686869405210018, + 0.006773353088647127, + -0.004060474690049887, + 0.001469623064622283, + -0.010554404929280281, + 0.001556279486976564, + 0.01578916236758232, + 0.011113250628113747, + -0.00974796898663044, + -0.006405504886060953, + -0.021264437586069107, + 0.006214506924152374, + -0.007148274686187506, + -0.016157010570168495, + 0.004240861628204584, + 0.005814826115965843, + -0.0019294328521937132, + 0.007873359136283398, + 7.68191966926679e-6, + 0.006136693060398102, + 0.0010664052097126842, + -0.011495246551930904, + -0.00948623102158308, + -0.0065399110317230225, + 0.004654690623283386, + 0.0151383550837636, + -0.02842332236468792, + -0.016793670132756233, + 0.032766759395599365, + 0.005920936353504658, + -0.008198763243854046, + -0.01061099674552679, + 0.013157635927200317, + 0.02256605215370655, + -0.012506827712059021, + 0.01672293059527874, + 0.006557595916092396, + -0.01601553149521351, + -0.030503079295158386, + -0.012351199984550476, + -0.020755110308527946, + 0.025975719094276428, + -0.002368020825088024, + 0.01672293059527874, + -0.030531374737620354, + -0.0061720628291368484, + -0.01917053386569023, + 0.035964205861091614, + -0.005825437139719725, + 0.00015839123807381839, + 0.006741520017385483, + 0.005737012252211571, + 1.492171350037097e-6, + 0.01663804240524769, + -0.016482414677739143, + -0.00763991754502058, + -0.0009611794375814497, + 0.03024841472506523, + 0.007250847760587931, + -0.02156154438853264, + -0.008078505285084248, + -0.030191821977496147, + 0.025197580456733704, + -0.014275327324867249, + 0.011254730634391308, + -0.005167555529624224, + -0.017798177897930145, + -0.005220610182732344, + -0.0022212353069335222, + 0.015760866925120354, + -0.002079755300655961, + 0.0045096734538674355, + 0.013108117505908012, + -0.010066298767924309, + -0.032059356570243835, + 0.03836936503648758, + -0.006285246927291155, + 0.0004100708174519241, + -0.00876468326896429, + -0.006207433063536882, + -0.014438029378652573, + -0.016539007425308228, + -0.029286351054906845, + -0.004322212655097246, + 0.00025864303461275995, + 0.008467575535178185, + 0.002327345311641693, + -0.023867668583989143, + -0.015675978735089302, + 0.024037444964051247, + -0.00024316867347806692, + 0.03118218295276165, + 0.002604999579489231, + 0.018236765637993813, + 0.003356612054631114, + 0.008906163275241852, + -0.0024617512244731188, + -0.0074276975356042385, + -0.005744086112827063, + -0.006440875120460987, + 0.013546706177294254, + 0.03587931767106056, + -0.01317885797470808, + 0.019326161593198776, + 0.003356612054631114, + 0.011000066995620728, + -0.006483318749815226, + -0.008198763243854046, + -0.008474648930132389, + 0.03477577120065689, + 0.008863719180226326, + -0.009556970559060574, + 0.007155348546802998, + -0.01078077219426632, + -0.02922975830733776, + -0.00201255246065557, + 0.0049447244964540005, + -0.005945695098489523, + 0.015605239197611809, + 0.00012943205365445465, + -0.0010938169434666634, + -0.00836146529763937, + -0.003278797958046198, + -0.0038058108184486628, + 0.0016128715360537171, + 0.02307538129389286, + -0.0057228640653193, + 0.006193284876644611, + 0.005694568157196045, + -0.005227684509009123, + 0.0067556677386164665, + 0.007088145706802607, + -0.02389596402645111, + 0.00227075326256454, + -0.004806781653314829, + 0.0034998604096472263, + 0.002348567359149456, + 0.008043135516345501, + 0.0032487334683537483, + -0.0029091816395521164, + -0.00040410211659036577, + -0.014685619622468948, + -0.025098543614149094, + -0.009189123287796974, + -0.0017066019354388118, + 0.009995559230446815, + 0.0029109499882906675, + -0.0031001796014606953, + -0.01948178932070732, + -0.019000757485628128, + 0.013277893885970116, + 0.009401342831552029, + -0.0008762914803810418, + -0.00026792765129357576, + 0.011261804029345512, + -0.015576942823827267, + 0.0021292732562869787, + 0.005694568157196045, + -0.006667242851108313, + -0.015265687368810177, + 0.0023839373607188463, + -0.0022353832609951496, + 0.00810680165886879, + 0.01283223181962967, + 0.03353074938058853, + -0.004820929374545813, + 0.0024546771310269833, + 0.006723834667354822, + 0.018788538873195648, + 0.0045238216407597065, + 0.0024458346888422966, + 0.0039331428706645966, + 0.0077813975512981415, + 0.008693942800164223, + 0.022509461268782616, + -0.0019612659234553576, + 0.010809068568050861, + -0.024263812229037285, + 0.007746027782559395, + 0.019962821155786514, + 0.006310006137937307, + 0.010476591065526009, + -0.009931893087923527, + -0.012853453867137432, + -0.015053466893732548, + -0.020797552540898323, + -0.021476658061146736, + 0.01827920973300934, + -0.033813707530498505, + -0.012910045683383942, + -0.01482709962874651, + 0.03188958019018173, + 0.0106675885617733, + -0.010243148542940617, + -0.00579714123159647, + 0.003528156317770481, + -0.012542198412120342, + 0.005355016328394413, + -0.022127464413642883, + -0.00019497706671245396, + 0.005659198388457298, + 0.00546112610027194, + -0.01148109883069992, + -0.024575067684054375, + -0.008036061190068722, + -0.005634439177811146, + -0.011219360865652561, + 0.027121707797050476, + 0.005599069409072399, + -0.002355641219764948, + -0.0017888371367007494, + -0.01026437059044838, + -0.04300990700721741, + 0.0006393125513568521, + -0.012082388624548912, + 0.0013838508166372776, + 0.013362782076001167, + -0.0004381457401905209, + -0.006363060791045427, + -0.0050791301764547825, + 0.023032937198877335, + -0.011509394273161888, + 0.007837989367544651, + -0.0021558008156716824, + -0.004371730610728264, + -0.0013281430583447218, + 0.003254038980230689, + -0.015053466893732548, + -0.013129339553415775, + -0.009762116707861423, + -0.0050048534758389, + -0.01179942861199379, + -0.04278353974223137, + 0.0039543649181723595, + 0.00974796898663044, + -0.009549897164106369, + -0.017189813777804375, + -0.0043752677738666534, + -0.00574054941534996, + -0.0029976065270602703, + 0.023867668583989143, + 0.008389761671423912, + -0.025169283151626587, + 0.009832857176661491, + -0.009960188530385494, + -0.016793670132756233, + 0.00030219234758988023, + 0.014126773923635483, + -0.020882440730929375, + 0.029569311067461967, + 0.022919753566384315, + -0.0008643540786579251, + -0.0006282594404183328, + 0.03720922768115997, + -0.0026209161151200533, + -0.024546772241592407, + 0.017302999272942543, + -0.008601981215178967, + 0.003197446931153536, + -0.0021558008156716824, + 0.008679795078933239, + 0.0021098197903484106, + 0.010971770621836185, + -0.0036218869499862194, + 0.009316454641520977, + -0.0034697959199547768, + -0.011820650659501553, + 0.020656073465943336, + -0.005956306122243404, + 0.0048421514220535755, + -0.03650182858109474, + 0.003250502049922943, + -0.0026757395826280117, + 0.013921627774834633, + -0.0028260620310902596, + 0.00012898992281407118, + -0.0031992155127227306, + -0.0020178579725325108, + 0.011219360865652561, + -0.009825782850384712, + 0.0022619108203798532, + -0.004364656750112772, + 0.02758859097957611, + -0.013065674342215061, + 0.01629849150776863, + 0.005019001197069883, + 0.020472150295972824, + -0.014643175527453423, + -0.016991741955280304, + -0.005121574271470308, + -0.006568206939846277, + 0.005606143269687891, + -0.02236798033118248, + 0.018236765637993813, + -0.007484289817512035, + 0.01670878194272518, + -0.02656993642449379, + -0.013992367312312126, + -0.01867535337805748, + -0.004792633466422558, + 0.012386569753289223, + -0.017359590157866478, + -0.020443852990865707, + -0.014232883229851723, + -0.01133254449814558, + -0.00809972733259201, + 0.00718364492058754, + -0.0077955457381904125, + 0.007689435500651598, + 0.0029693106189370155, + 0.008679795078933239, + 0.013207153417170048, + -0.008913237601518631, + 0.0016243667341768742, + -0.0046935975551605225, + -0.027164151892066002, + 0.0147705078125, + 0.01629849150776863, + 0.041198961436748505, + 0.03055967018008232, + 0.0003346885205246508, + -0.002245994284749031, + -0.003508702851831913, + -0.01826506294310093, + 0.01277564000338316, + -0.014077255502343178, + -0.0025908516254276037, + -0.0016243667341768742, + 0.010603922419250011, + 0.005355016328394413, + -0.014133847318589687, + 0.006196822039783001, + -0.008899088948965073, + 0.02328759990632534, + 0.0007047470426186919, + 0.008736386895179749, + -0.006723834667354822, + 0.020175041630864143, + 0.00835439097136259, + -0.01467147096991539, + -0.0015191410202533007, + -0.009825782850384712, + 0.015449611470103264, + -0.0002369789290241897, + -0.00044455655734054744, + -0.02287730947136879, + 0.016157010570168495, + -0.014268253929913044, + 0.012075314298272133, + -0.009457934647798538, + -0.004474303685128689, + 0.0125139020383358, + -0.012400718405842781, + 0.032766759395599365, + 0.0021558008156716824, + 0.00546466326341033, + 0.0001642493880353868, + 0.006366597954183817, + -0.0352851003408432, + -0.01929786615073681, + 0.01784062199294567, + 0.003296483075246215, + -0.026400160044431686, + 0.000698115152772516, + -0.014911986887454987, + 0.004032178781926632, + -0.036473531275987625, + -0.0030860314145684242, + -0.008580759167671204, + 0.014742211438715458, + -0.010179482400417328, + 0.017925510182976723, + 0.015775015577673912, + 0.005825437139719725, + 0.006327691022306681, + -0.01692100241780281, + -0.013454743660986423, + -0.0024016222450882196, + 0.005153407342731953, + -0.02011844888329506, + -0.003678478766232729, + 0.00041736586717888713, + -0.0004938534693792462, + 0.015987234190106392, + 0.02727733552455902, + -0.014225809834897518, + -0.008481723256409168, + -0.011615504510700703, + 0.006359524093568325, + 0.000367847882444039, + 0.010731254704296589, + -0.012011648155748844, + -0.009592341259121895, + -0.006893611047416925, + -0.009719672612845898, + -0.01262708567082882, + -0.03228572756052017, + -0.000998317962512374, + 0.0061190081760287285, + 0.006525762844830751, + -0.010144112631678581, + -0.004148899577558041, + -0.007364031858742237, + 0.0176425501704216, + 0.0064231897704303265, + 0.0016217139782384038, + -0.0007480752537958324, + -0.009415491484105587, + -0.022325536236166954, + 0.002958699595183134, + 0.00021122515317983925, + 0.01663804240524769, + 0.015039319172501564, + -0.034605998545885086, + -0.009656007401645184, + 0.0015049930661916733, + 0.00980456080287695, + 0.02615964412689209, + 0.0034291204065084457, + -0.002035542856901884, + -0.015987234190106392, + -0.007498437538743019, + 0.023047083988785744, + -0.022085020318627357, + -0.009196196682751179, + 0.0028048402164131403, + -0.007031553890556097, + 0.0032257430721074343, + -0.021787913516163826, + 0.024136479943990707, + -0.025367356836795807, + 0.011424506083130836, + -0.0005385080585256219, + 0.0022955122403800488, + 0.05254565551877022, + 0.0180528424680233, + 0.011106176301836967, + 0.012146053835749626, + -0.004718356300145388, + 0.019623270258307457, + 0.018519725650548935, + -0.0019152848981320858, + -0.01211068406701088, + -0.009776265360414982, + 0.009047643281519413, + 0.013426448218524456, + 0.004109992645680904, + 0.005178166553378105, + 0.004265620838850737, + -0.0026651285588741302, + 0.0201891902834177, + 0.0013608603039756417, + 0.005588458385318518, + 0.010080446489155293, + 0.024575067684054375, + 0.009436712600290775, + 0.0037492187693715096, + -0.0030948740895837545, + -0.007321587763726711, + 0.04380219429731369, + 0.0196091216057539, + -0.0016968752024695277, + 0.0026138422545045614, + -0.014445103704929352, + -0.008326095528900623, + 0.01338400412350893, + 0.0004480935458559543, + 0.00525951711460948, + -0.0051604812033474445, + -0.005057908594608307, + -0.0031585399992763996, + 0.012789787724614143, + -0.0003331410698592663, + 0.007979469373822212, + 0.004789096303284168, + 0.023457376286387444, + -0.015619386918842793, + -0.025367356836795807, + -0.001991330413147807, + 0.01107080653309822, + 0.005917399190366268, + 0.016977595165371895, + 0.018647057935595512, + -0.004262083675712347, + 0.007809693459421396, + 0.003590053878724575, + 0.005036686547100544, + -0.006617724895477295, + 0.0068723889999091625, + -0.009670155122876167, + -0.009677228517830372, + 0.006635409779846668, + -0.0006494814297184348, + 0.01266245637089014, + 0.007448919583112001, + 0.006394893862307072, + -0.017189813777804375, + 0.000274780613835901, + 0.017175666987895966, + 0.006883000023663044, + 0.023131972178816795, + 0.012994933873414993, + -0.007540881633758545, + 0.02402329631149769, + -0.010717106983065605, + 0.020698517560958862, + 0.0014988032635301352, + 0.005503570195287466, + 0.006140230223536491, + 0.02532491274178028, + 0.007264995947480202, + -0.0026615916285663843, + -0.018180174753069878, + 0.0004836845910176635, + -0.0155486473813653, + -0.00954282283782959, + -0.01461487915366888, + -0.009762116707861423, + 4.5041470002615824e-5, + 0.013681111857295036, + -0.008149245753884315, + 0.006631873082369566 + ], + "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8": [ + -0.008708124049007893, + -0.02748657763004303, + -0.011518117040395737, + 0.014763159677386284, + 0.0033520215656608343, + 0.023136081174016, + -0.007131961174309254, + 0.01281613390892744, + -0.015433563850820065, + 0.04941022768616676, + 0.01654614880681038, + 0.011810527183115482, + 0.002968678716570139, + -0.015134021639823914, + 0.023407096043229103, + 0.015447827987372875, + -0.03160884976387024, + -0.013101411983370781, + 0.0062796915881335735, + -0.013336767442524433, + 0.04438932612538338, + -0.01771579124033451, + -0.03158032149076462, + 0.0452166311442852, + 0.014064227230846882, + -0.008536957204341888, + 0.00057635159464553, + -0.008223150856792927, + -0.01674584485590458, + 0.0016073656734079123, + 0.027058659121394157, + 0.019684212282299995, + -0.015134021639823914, + -0.00034277988015674055, + -0.018913960084319115, + -0.03953959047794342, + -0.0022608316503465176, + -0.00913604162633419, + -0.009485508315265179, + -0.012495195493102074, + -0.006818154826760292, + 0.022822275757789612, + 0.0026673534885048866, + -0.03483249619603157, + -0.03534599766135216, + 0.02561800368130207, + 0.00033497929689474404, + 0.0015984507044777274, + 0.012844662182033062, + -0.03745706006884575, + 0.03628741577267647, + -0.00024070368090178818, + 0.008337262086570263, + 0.02223745360970497, + 0.02145293913781643, + -0.023064762353897095, + -0.00028238107915967703, + 0.021709689870476723, + 0.007766705472022295, + -0.03879786655306816, + 0.03374844044446945, + -0.024234402924776077, + 0.002553242025896907, + -0.023464152589440346, + 0.04250648617744446, + -0.010434058494865894, + -0.0009062048047780991, + -0.015076966024935246, + -0.015690313652157784, + -0.0037014877889305353, + 0.005869603715837002, + -0.02802860736846924, + 0.014370901510119438, + -0.00136577058583498, + 0.01959862932562828, + 0.009364265017211437, + 0.042820293456315994, + 0.048269111663103104, + 0.021923648193478584, + -0.008137567900121212, + -0.03486102446913719, + -0.001050181221216917, + -0.017459040507674217, + -0.012466668151319027, + 0.066298708319664, + -0.009906293824315071, + -0.07725340127944946, + -0.04652891308069229, + 0.028156982734799385, + -0.020654158666729927, + -0.015433563850820065, + -0.016874220222234726, + 0.028570635244250298, + 0.005031598266214132, + -0.03317788243293762, + 0.012010222300887108, + 0.014470748603343964, + 0.0034001623280346394, + 0.0006583691574633121, + -0.03329199552536011, + -0.007000019773840904, + 0.0062903896905481815, + -0.013058620505034924, + 0.0012730550952255726, + 0.0395110622048378, + 0.012017354369163513, + 0.02350694313645363, + -0.003872654866427183, + -0.05115042254328728, + 0.045273687690496445, + -0.03391960635781288, + -0.032835546880960464, + 0.008023455739021301, + -0.016788635402917862, + -0.03862670063972473, + -0.06743982434272766, + -0.01750183291733265, + -0.009856370277702808, + -0.010747864842414856, + -0.021025020629167557, + 0.03277849406003952, + -0.002449828665703535, + -0.023478414863348007, + 0.01432811003178358, + -0.007481426931917667, + 0.0253897812217474, + 0.019441725686192513, + 0.018771320581436157, + 0.04689977690577507, + 0.006925133988261223, + -0.035716861486434937, + -0.016089703887701035, + 0.024034708738327026, + 0.021524257957935333, + -0.027443785220384598, + 0.013800344429910183, + 0.004692830145359039, + 0.012730550020933151, + -0.004090179689228535, + 0.0008001168607734144, + -0.0407092347741127, + 0.010434058494865894, + 0.011625096201896667, + -0.011175783351063728, + 0.02410602755844593, + -0.03648711368441582, + -0.039425481110811234, + 0.0692085474729538, + 0.011439665220677853, + 0.03882639482617378, + -0.07474295049905777, + -0.02732967399060726, + -0.021395882591605186, + 0.0159755926579237, + 0.0005175129044800997, + -0.015419299714267254, + -0.0216811615973711, + 0.020411672070622444, + 0.030981238931417465, + 0.006001545116305351, + 0.0205543115735054, + -0.031009767204523087, + 0.020654158666729927, + 0.02277948334813118, + 0.033605799078941345, + -0.017444776371121407, + 0.04966697469353676, + 0.026987340301275253, + -0.04062364995479584, + 0.018771320581436157, + 0.017016859725117683, + -0.008059116080403328, + 0.016674524173140526, + -0.009100382216274738, + -0.020240506157279015, + -0.014171206392347813, + -0.01807238906621933, + 0.01902807131409645, + 0.026973076164722443, + -0.007057075388729572, + -0.033035244792699814, + -0.014456485398113728, + -0.024819225072860718, + 0.020083602517843246, + 0.06544287502765656, + 0.0323505736887455, + 0.03237910196185112, + 0.013507934287190437, + -0.014021435752511024, + -0.011247102171182632, + 0.055429600179195404, + -0.016617469489574432, + 0.04005309194326401, + 0.024063237011432648, + -0.014905798248946667, + -0.0001751787931425497, + 0.03086712770164013, + -0.007702517788857222, + -0.02111060544848442, + 0.030011292546987534, + -0.0018881866708397865, + -0.0156475231051445, + -0.03317788243293762, + 0.04127978906035423, + -0.05520137771964073, + -0.0018257820047438145, + -0.015775898471474648, + 0.02578917145729065, + 0.026074448600411415, + -0.03688650205731392, + 0.014306713826954365, + -0.04935317113995552, + 0.007567010819911957, + -0.015961328521370888, + 0.007638330105692148, + -0.00568773876875639, + 0.007994928397238255, + 0.0029651126824319363, + 0.02671632543206215, + -0.04781266674399376, + 0.005348970647901297, + -0.017844166606664658, + 0.0024516116827726364, + -0.025503892451524734, + -0.013622045516967773, + 0.01827208325266838, + -0.021880855783820152, + 0.017173761501908302, + -0.02521861344575882, + -0.013037224300205708, + 0.025318462401628494, + 0.008629673160612583, + 0.01711670681834221, + -0.01064801774919033, + 0.008993403054773808, + 0.0399104543030262, + 0.042107097804546356, + -0.010434058494865894, + 0.0013301107101142406, + 0.011568040587008, + 0.0036765257827937603, + 0.0012186738895252347, + 0.011846187524497509, + 0.0008094775839708745, + 0.005637815222144127, + 0.0023695940617471933, + -0.023492678999900818, + 0.02182380110025406, + 0.007866553030908108, + -0.011026011779904366, + 0.02257978916168213, + -0.00942845270037651, + 0.06047903001308441, + 0.0006565861403942108, + -0.03386254981160164, + 0.04610099643468857, + 0.014891534112393856, + -0.028513580560684204, + -0.02182380110025406, + -0.012545119039714336, + -0.013864532113075256, + 0.03971076011657715, + 0.009792182594537735, + 0.03132357448339462, + 0.05251976102590561, + -0.011161519214510918, + 0.021695425733923912, + -0.03603066876530647, + 0.010091724805533886, + 0.027030132710933685, + 0.021495729684829712, + 0.006162014324218035, + -0.01384313590824604, + -0.005755492486059666, + 0.000885254645254463, + 0.008208886720240116, + -0.03180854767560959, + -0.02897002547979355, + 0.030781542882323265, + 0.03346316143870354, + -0.015476355329155922, + -0.028014343231916428, + 0.016303662210702896, + 0.0008054658537730575, + 0.008037719875574112, + 0.003983200062066317, + -0.030068347230553627, + -0.04610099643468857, + -0.05289062112569809, + -0.02163836918771267, + 0.0068894741125404835, + -0.018357668071985245, + -0.00016158349171746522, + 0.002811775542795658, + 0.015462091192603111, + 0.015676049515604973, + -0.03526041656732559, + -0.005491610150784254, + 0.009849238209426403, + 0.028499316424131393, + -0.02410602755844593, + 0.024947600439190865, + 0.007923608645796776, + -0.015105493366718292, + 0.010697941295802593, + -0.024220138788223267, + 0.0033395406790077686, + -0.0030096876434981823, + -0.004436079878360033, + 0.0177015271037817, + -0.005142143927514553, + -0.040024563670158386, + -0.028356676921248436, + -0.012851793318986893, + 0.04632921889424324, + -0.008415713906288147, + -0.010769261047244072, + 0.028014343231916428, + -0.03186560049653053, + -0.003457218175753951, + -0.00275471992790699, + 0.0049424488097429276, + -0.053917624056339264, + 0.02412029169499874, + 0.04082334414124489, + -0.07400123029947281, + -0.0003282930701971054, + -0.011154387146234512, + -0.0048675634898245335, + 0.008394317701458931, + -0.004778414033353329, + -0.016317926347255707, + -0.03839847818017006, + 0.010141648352146149, + -0.016645997762680054, + -0.01477742288261652, + -0.055429600179195404, + -0.027358202263712883, + -0.0197555311024189, + -0.02935515157878399, + -0.00016793538816273212, + -0.01961289346218109, + 0.023977652192115784, + -0.007652594242244959, + 0.0038976166397333145, + 0.0039083147421479225, + 0.017401983961462975, + 0.01731640100479126, + -0.021224716678261757, + 0.019741268828511238, + 0.0008536065579392016, + 0.005420290399342775, + 0.012702022679150105, + -0.01091190055012703, + 0.019541572779417038, + -0.0058838678523898125, + 0.017173761501908302, + 0.019341878592967987, + 0.03411930054426193, + -0.0021788140293210745, + -0.010298551991581917, + -0.012174257077276707, + -0.02199496701359749, + -0.007452899124473333, + -0.012452404014766216, + -0.016432037577033043, + 0.00014096766244620085, + 0.009478376246988773, + 0.0016198466764762998, + 0.01884264126420021, + -0.016118232160806656, + 0.01847177930176258, + -0.014663311652839184, + -0.0030489133205264807, + -0.0003492432297207415, + -0.023977652192115784, + 0.0023428492713719606, + -0.020782534033060074, + -0.028756067156791687, + 0.02751510590314865, + -0.0001810849498724565, + 0.00692156795412302, + 0.039653703570365906, + 0.014677575789391994, + 0.0005660994211211801, + 0.02031182497739792, + -0.021353092044591904, + -0.04108009487390518, + -0.015376508235931396, + -0.013814608566462994, + -0.008087643422186375, + 0.005987281445413828, + -0.022822275757789612, + -0.00097618717700243, + -0.003346672747284174, + 0.004040255676954985, + 0.044531963765621185, + 0.015119757503271103, + 0.005373932421207428, + -0.034005191177129745, + 0.029298095032572746, + -0.02051151916384697, + -0.03451869264245033, + -0.016460565850138664, + 0.02372090145945549, + -0.03702913969755173, + 0.029298095032572746, + 0.0031523266807198524, + 0.040937457233667374, + 0.006686213426291943, + 0.0222089271992445, + 0.015861481428146362, + -0.0024712244048714638, + 0.0058660381473600864, + 0.02126750722527504, + -0.0023410662543028593, + 0.0012543336488306522, + 0.02802860736846924, + -0.055258434265851974, + 0.007880817167460918, + 0.027001604437828064, + 0.032664380967617035, + -0.0199552271515131, + 0.004767715930938721, + 0.00014431077579502016, + 0.028156982734799385, + 0.023578263819217682, + -0.002473007421940565, + -0.008173227310180664, + -0.021324563771486282, + -0.008544089272618294, + 0.01904233545064926, + -0.013065752573311329, + 0.020425936207175255, + -0.024048972874879837, + -0.015761634334921837, + -0.017216553911566734, + 0.0010136299533769488, + -0.0018739227671176195, + -0.022265981882810593, + -0.033976662904024124, + 0.014962853863835335, + 0.03899756446480751, + -0.010997483506798744, + -0.024348514154553413, + 0.0006753075285814703, + -0.026587950065732002, + 0.01976979523897171, + 0.011489588767290115, + -0.021937912330031395, + 0.024177348241209984, + 0.04045248404145241, + -0.03226499259471893, + -0.004297006409615278, + 0.0335487462580204, + -0.03300671651959419, + 0.0037656754720956087, + -0.017016859725117683, + 0.004461041651666164, + -0.04102303832769394, + -0.0037799393758177757, + -0.04310557246208191, + 0.034005191177129745, + -0.011646492406725883, + -0.001553875976242125, + -0.02372090145945549, + 0.023678110912442207, + 0.03782792016863823, + 0.0034768308978527784, + -0.0006276125786826015, + 0.007445767056196928, + -0.01787269487977028, + -0.038911979645490646, + -0.0025568080600351095, + -0.002774332882836461, + -0.05457376688718796, + 0.00195237435400486, + 0.014164074324071407, + -0.01516254898160696, + -0.015490619465708733, + 0.0075598787516355515, + -0.011739207431674004, + 0.004425381775945425, + 0.05859619006514549, + -0.007859420962631702, + 0.013158467598259449, + -0.0013764684554189444, + -0.03292113170027733, + -0.040937457233667374, + 0.010398399084806442, + 0.01999801956117153, + -0.005167105700820684, + 0.003002555575221777, + 0.013950116001069546, + 0.002387423999607563, + -0.0009672722080722451, + 0.01203875057399273, + -0.00301147042773664, + 0.030952710658311844, + -0.029241040349006653, + 0.021723954007029533, + -0.05594310164451599, + 0.01842898689210415, + -0.004450343549251556, + -0.010762128978967667, + 0.04013867676258087, + 0.010034669190645218, + -0.006190542131662369, + -0.010526774451136589, + 0.0025764210149645805, + -0.03346316143870354, + 0.043562017381191254, + -0.02899855375289917, + 0.0034001623280346394, + 0.01346514280885458, + 0.0037977693136781454, + -0.0014139112317934632, + -0.027543634176254272, + 0.011753471568226814, + -0.01637498289346695, + 0.002663787454366684, + -0.012858925387263298, + -0.024947600439190865, + -0.012274105101823807, + -0.024348514154553413, + -0.008594012819230556, + -0.004525229334831238, + -0.0105410385876894, + -0.008693860843777657, + -0.00959248747676611, + -0.02635972760617733, + 0.03203677013516426, + 0.0004921053186990321, + 0.004343364387750626, + 0.029269568622112274, + -0.029897181317210197, + -0.01524813286960125, + 0.025004655122756958, + 0.0032664381433278322, + -0.005473779980093241, + 0.0036159041337668896, + 0.04484577104449272, + -0.024862015619874, + -0.011625096201896667, + -0.01357212197035551, + 0.024862015619874, + -0.02897002547979355, + 0.004461041651666164, + 1.4041048416402191e-5, + -0.020226242020726204, + -0.04590130224823952, + 0.03183707222342491, + -0.015191077254712582, + -0.02111060544848442, + 0.012652099132537842, + -0.02635972760617733, + 0.03971076011657715, + -0.015504883602261543, + 0.027215562760829926, + -0.04881114140152931, + -0.004525229334831238, + 0.021595578640699387, + 0.000959248747676611, + 0.007895080372691154, + -0.007139092776924372, + 0.027072923257946968, + -0.03748558834195137, + -0.002407036954537034, + 0.0031041859183460474, + 0.013400955125689507, + 0.029697485268115997, + 0.005455950275063515, + 0.019641419872641563, + -0.0018097350839525461, + -0.04319115728139877, + 0.026844700798392296, + -0.0008888206211850047, + -0.042677655816078186, + -0.02785743959248066, + 0.007310260087251663, + -0.0007577708456665277, + -0.0062903896905481815, + -0.007502823136746883, + -0.012973036617040634, + -0.0018560928292572498, + -0.017459040507674217, + 0.0028474354185163975, + -0.020768269896507263, + -0.012730550020933151, + 0.006094260606914759, + -0.007128395140171051, + 0.010947559960186481, + -0.011382609605789185, + 0.021495729684829712, + -0.007517086807638407, + 0.011739207431674004, + 0.012217049486935139, + -0.006383105181157589, + 0.031523268669843674, + 0.012381084263324738, + 0.061848364770412445, + 0.03240763023495674, + -0.002544327173382044, + -0.006846682634204626, + -0.022565525025129318, + 0.021609840914607048, + 0.0052633872255682945, + -0.006764664780348539, + 0.0239348616451025, + 0.025147294625639915, + 0.02467658556997776, + -0.01477742288261652, + 0.015119757503271103, + -0.022251717746257782, + 0.03902608901262283, + 0.049438752233982086, + 0.021980704739689827, + 0.03480396792292595, + 0.028099926188588142, + -0.016717316582798958, + 0.009442715905606747, + -0.029783068224787712, + 0.031295046210289, + -0.00043660972733050585, + -0.014620520174503326, + 0.019341878592967987, + -0.018143707886338234, + -0.02162410505115986, + 0.0013167383149266243, + 0.004685698542743921, + 0.012167125009000301, + -0.005684172734618187, + 0.013400955125689507, + -0.02691602148115635, + 0.01862868294119835, + -0.010419795289635658, + 0.0026548723690211773, + 0.015362244099378586, + -0.029055608436465263, + 0.022551260888576508, + -0.02596033737063408, + -0.028499316424131393, + 0.02747231349349022, + 0.027586424723267555, + -0.01206014584749937, + 0.016845691949129105, + -0.02409176342189312, + 0.024548210203647614, + 0.0167743731290102, + 0.0030293003655970097, + 0.014513541013002396, + -0.008822236210107803, + -0.019441725686192513, + 0.028713274747133255, + 0.006083562504500151, + -0.03919725865125656, + 0.0004016185412183404, + 0.02223745360970497, + -0.0005964102456346154, + -0.01810091733932495, + 0.013386690989136696, + -0.011190046556293964, + 0.04632921889424324, + 0.002897359197959304, + 0.025931810960173607, + 0.02710145153105259, + -0.02520434930920601, + 0.013679101131856441, + -0.008558353409171104, + 0.0391116738319397, + -0.005944489501416683, + 0.005794718395918608, + -0.014805951155722141, + 0.033434633165597916, + 0.005826812237501144, + 0.009357132948935032, + -0.009036194533109665, + 0.015733106061816216, + 0.019898170605301857, + 0.008166095241904259, + -0.01808665320277214, + -0.013258315622806549, + -0.05776888504624367, + 0.008586880750954151, + -0.01422826200723648, + -0.009770786389708519, + -0.014021435752511024, + -0.024234402924776077, + -0.010847712866961956, + -0.001073360093869269, + -0.016517622396349907, + 0.04470313340425491, + -0.03856964409351349, + 2.2983858798397705e-5, + 0.012152861803770065, + 0.020996492356061935, + -0.022850802168250084, + -0.012751946225762367, + -0.016489094123244286, + -0.002473007421940565, + -0.04050953686237335, + -0.010298551991581917, + -0.02145293913781643, + -0.017031121999025345, + 0.01383600477129221, + 0.014962853863835335, + -0.019669948145747185, + -0.0542314313352108, + -0.007731045596301556, + -0.004403986036777496, + 0.03337757661938667, + 0.013978643342852592, + -0.016988331452012062, + -0.015490619465708733, + 0.03674386441707611, + 0.004671434406191111, + -0.02594607323408127, + 0.022123342379927635, + 0.0116678886115551, + 0.010797789320349693, + 0.01524813286960125, + 0.023606790229678154, + -0.023064762353897095, + -0.01999801956117153, + -0.04048101231455803, + 0.06823860108852386, + 0.018771320581436157, + -0.02257978916168213, + -0.009014798328280449, + -0.0069393981248140335, + 0.021053548902273178, + -0.014706103131175041, + 0.03066743165254593, + 0.00636170944198966, + 0.007624066434800625, + -0.026801910251379013, + -0.007274600211530924, + 0.003708619624376297, + -0.009849238209426403, + -0.009842106141149998, + -0.0035980744287371635, + -0.034775443375110626, + 0.0102771557867527, + -0.004386155866086483, + -0.0052740853279829025, + -0.013286842964589596, + -0.022337302565574646, + 0.01281613390892744, + -0.023792222142219543, + -0.01978405937552452, + 0.019356142729520798, + -0.011054539121687412, + 0.040195733308792114, + -0.007460031192749739, + -0.013322503305971622, + 0.0058838678523898125, + -0.02295065112411976, + 0.0105410385876894, + -0.02336430363357067, + 0.06772509962320328, + -8.706007292857976e-8, + 0.004503833595663309, + 0.008130435831844807, + -0.04966697469353676, + 0.014948590658605099, + -0.009735126979649067, + -0.003523188643157482, + 0.04501693695783615, + 0.03480396792292595, + 0.006482952740043402, + 0.02431998774409294, + 0.03517483174800873, + 0.0019452424021437764, + 0.01233829278498888, + -0.03677239269018173, + -0.028285358101129532, + 0.002760068979114294, + 0.0041971588507294655, + 0.0026192127261310816, + -0.012074409984052181, + -0.028285358101129532, + -0.03928283974528313, + 0.05060839653015137, + -0.019127920269966125, + 0.003851258894428611, + -0.02507597580552101, + 0.03180854767560959, + 0.014577728696167469, + -0.01119717862457037, + -0.01865720935165882, + -0.0027565029449760914, + 0.004100877791643143, + 0.016817163676023483, + 0.011140123009681702, + -0.01026289165019989, + -0.004375458229333162, + -0.012452404014766216, + -0.01206014584749937, + -0.029526319354772568, + -0.010562433861196041, + 0.016802899539470673, + -0.018115181475877762, + 0.03674386441707611, + 0.0010706856846809387, + 0.012167125009000301, + 0.012074409984052181, + -0.0036729599814862013, + -0.023777958005666733, + -0.01904233545064926, + 0.02524714171886444, + -0.011525249108672142, + 0.017002595588564873, + -0.005067258141934872, + 0.016132496297359467, + -0.00037643380346708, + -0.011261366307735443, + 0.02802860736846924, + 0.0018364799907431006, + 0.009385660290718079, + 0.004728490021079779, + -0.019841115921735764, + -0.022280246019363403, + 0.030039818957448006, + -0.015119757503271103, + 0.0023785089142620564, + -0.012402480468153954, + 0.004931751172989607, + 0.005990847013890743, + 0.011204310692846775, + 0.027429522946476936, + -0.02182380110025406, + -0.02938367985188961, + -0.026459574699401855, + 0.0433623231947422, + 0.0028474354185163975, + 0.03106682188808918, + -0.02205202355980873, + -0.003847692860290408, + -0.05973730608820915, + 0.010526774451136589, + -0.022865066304802895, + -0.030467737466096878, + 0.020953701809048653, + -0.0025799868162721395, + 0.002421300858259201, + 0.032464686781167984, + -0.008929215371608734, + 0.017958277836441994, + 0.010319947265088558, + 0.017558887600898743, + 0.023678110912442207, + -0.010598094202578068, + 0.014306713826954365, + -0.0007657943060621619, + -0.025660796090960503, + -0.001914931577630341, + -0.011646492406725883, + 0.002863482339307666, + 0.01844325102865696, + -0.007299561984837055, + 0.002644174499437213, + 0.011660756543278694, + -0.045302215963602066, + -0.0076454621739685535, + -0.004011727869510651, + -0.023093290627002716, + 0.01861441880464554, + 0.0010653366334736347, + 0.00883649941533804, + -0.017059650272130966, + 0.004985240753740072, + -0.01955583691596985, + 0.029783068224787712, + -0.0014237177092581987, + 0.013529329560697079, + -0.033805496990680695, + 0.014649047516286373, + -0.01961289346218109, + -0.04122273623943329, + 0.004357628058642149, + 0.027015868574380875, + -0.032692909240722656, + -0.009870634414255619, + -0.009949085302650928, + -0.03603066876530647, + 0.00517423776909709, + 0.007980664260685444, + 0.01081205252557993, + -0.00942845270037651, + 0.00028683856362476945, + 0.001181230996735394, + -0.02634546346962452, + 0.007303128018975258, + 0.007281732279807329, + -0.022922122851014137, + 0.001135764759965241, + 0.023621054366230965, + -0.026616478338837624, + -0.0199552271515131, + 0.028313884511590004, + -0.005102918017655611, + -0.023407096043229103, + -0.03309229761362076, + -0.006129920482635498, + 0.06156308576464653, + -0.019455989822745323, + 0.015576202422380447, + 0.0012133248383179307, + -0.016260871663689613, + -0.0019113655434921384, + 0.02016918547451496, + -0.0048960912972688675, + 0.014920062385499477, + -0.012309764511883259, + 0.014663311652839184, + 0.017059650272130966, + -0.015904273837804794, + -0.00837292242795229, + 0.00034656873322091997, + -0.019898170605301857, + 0.025746379047632217, + 0.004532361403107643, + -0.0037514115683734417, + 0.006133486516773701, + 0.01828634738922119, + -0.015376508235931396, + -0.014078491367399693, + -0.014948590658605099, + -0.0028813122771680355, + -0.004108009394258261, + -0.002444479614496231, + -0.014649047516286373, + 0.019313350319862366, + -0.005309744738042355, + 0.023692375048995018, + -0.0033823323901742697, + -0.017644472420215607, + -0.006825286895036697, + -0.036800917237997055, + 0.014556332491338253, + 0.019313350319862366, + -0.008487033657729626, + 0.0052348594181239605, + -0.01309428084641695, + 0.0017624858301132917, + 0.002171682193875313, + 0.0015948847867548466, + 0.054317016154527664, + -0.04162212461233139, + -0.03617330640554428, + 0.009278681129217148, + 0.015947064384818077, + -0.0022269547916948795, + 0.0020129960030317307, + 0.030581848695874214, + 0.021809536963701248, + -0.00856548547744751, + 0.018571626394987106, + 0.0038120332174003124, + -0.011453929357230663, + -0.005587891675531864, + -0.00846563745290041, + 0.017772845923900604, + 0.005402460228651762, + -0.01598985679447651, + -0.020939437672495842, + -0.011047407984733582, + 0.01524813286960125, + -0.026431048288941383, + -0.0038976166397333145, + -0.007331655826419592, + -0.031152404844760895, + -0.012559383176267147, + -0.03443310782313347, + -0.03389107808470726, + -0.015476355329155922, + -0.006793193053454161, + -0.019655684009194374, + 0.007181884720921516, + 0.02356399968266487, + 0.00437189219519496, + -0.012616438791155815, + -0.007156922947615385, + -0.037200309336185455, + -0.008857895620167255, + -0.008922083303332329, + -0.03240763023495674, + -0.0049353172071278095, + 0.0006940289749763906, + 0.007285298313945532, + -0.007171186618506908, + -0.02730114758014679, + -0.016645997762680054, + 0.028699010610580444, + 0.0023071893956512213, + 0.01514828484505415, + 0.020996492356061935, + -0.012751946225762367, + 0.006996453739702702, + -0.03985339775681496, + 0.01998375542461872, + -0.020568575710058212, + -0.04088040068745613, + 0.01693127490580082, + 0.023763693869113922, + 0.028898706659674644, + -0.001090298523195088, + -0.02146720327436924, + -0.00044039858039468527, + 0.006554272025823593, + -0.04330526664853096, + -0.02449115365743637, + -0.011839055456221104, + -0.010077460668981075, + 0.014192602597177029, + 0.021367354318499565, + 0.02317887358367443, + -0.016489094123244286, + 0.03819878399372101, + 0.020211977884173393, + -0.01008459273725748, + -0.017844166606664658, + -0.00677892891690135, + 0.02463379316031933, + -0.0012365037109702826, + 0.011653624475002289, + -0.0026602214202284813, + -0.019441725686192513, + -0.0055344016291201115, + -0.0012329377932474017, + 0.008166095241904259, + -0.02747231349349022, + -0.007695385720580816, + -0.024006180465221405, + 0.02035461738705635, + 0.009271549060940742, + -0.01828634738922119, + -0.07383006066083908, + -0.013914455659687519, + 0.009556828066706657, + 0.019869644194841385, + 0.013921587727963924, + -0.03914020210504532, + -0.003958238288760185, + 0.031751491129398346, + 0.03243615850806236, + -0.01694553904235363, + 0.0045858509838581085, + -0.020796798169612885, + 0.010334211401641369, + 0.02767200954258442, + 0.007078471127897501, + 0.02484775148332119, + 0.010177308693528175, + -0.012188521213829517, + 0.02086811698973179, + -0.021509993821382523, + -0.008151831105351448, + -0.0077738375402987, + -0.006500782445073128, + 0.0037835054099559784, + -0.024334250018000603, + 0.0316944345831871, + -0.01479168701916933, + -0.004104443360120058, + -0.0029615468811243773, + -0.04139390215277672, + -0.014663311652839184, + 0.001087623997591436, + 0.0020397407934069633, + -0.010434058494865894, + -0.011560908518731594, + -0.00743863545358181, + -0.00810903962701559, + -0.027928758412599564, + 0.0004693721712101251, + 0.029640430584549904, + 0.016489094123244286, + -0.016146760433912277, + -0.03628741577267647, + 0.006604196038097143, + -0.0007501931395381689, + -0.0007448442047461867, + -0.031523268669843674, + -0.047156527638435364, + 0.001417477265931666, + 0.002515799133107066, + 0.021567050367593765, + -0.005791152361780405, + 0.010448322631418705, + -0.0075884065590798855, + -0.00324504217132926, + 0.0010590961901471019, + 0.0037835054099559784, + -0.026616478338837624, + 0.02464805729687214, + 0.02557521127164364, + 0.04818352684378624, + -0.0030382154509425163, + 0.013828872703015804, + -0.005423856433480978, + -0.0009432018268853426, + 0.011988826096057892, + 0.0310953501611948, + 0.027914496138691902, + 0.041308317333459854, + -0.026858964934945107, + 0.010291419923305511, + -0.00498167471960187, + -0.01206014584749937, + 0.012095806188881397, + 0.03651564195752144, + -0.0012418527621775866, + 0.029241040349006653, + -0.002244784729555249, + 0.01768726296722889, + -0.0020593537483364344, + -0.012559383176267147, + 0.005341838579624891, + -0.0010038234759122133, + 0.01214572973549366, + -0.03352021798491478, + -0.02262257970869541, + 0.007488559000194073, + -0.008665332570672035, + -0.01526239700615406, + 0.012331160716712475, + 0.030467737466096878, + -0.010334211401641369, + 0.01167501974850893, + 0.026416784152388573, + -0.004992372822016478, + 0.010384134948253632, + 0.008230282925069332, + 0.006190542131662369, + -0.017929749563336372, + -0.02712997980415821, + -0.025361252948641777, + -0.014891534112393856, + 0.003628385253250599, + -0.017102442681789398, + -0.00082953623495996, + -0.022308774292469025, + -0.03503219410777092, + -0.013194127939641476, + -0.002373160095885396, + -0.01848604343831539, + -0.0027529369108378887, + -0.033406104892492294, + -0.03637300059199333, + 0.023007705807685852, + -0.015319452621042728, + -9.18797159101814e-5, + 0.004689264576882124, + -0.0024284326937049627, + 0.03332052007317543, + -0.008151831105351448, + -0.015576202422380447, + 0.03865522891283035, + 0.03836994990706444, + -0.020639894530177116, + 0.007353051565587521, + 0.007502823136746883, + -0.039796341210603714, + 0.01842898689210415, + 0.009870634414255619, + 0.02765774540603161, + -0.02186659164726734, + -0.023093290627002716, + 0.003355587599799037, + -0.01288745366036892, + -0.006365275010466576, + 0.028014343231916428, + 0.0007671315688639879, + -0.007042811717838049, + 0.0323505736887455, + -0.0302965696901083, + -0.015205340459942818, + -0.027614952996373177, + -0.035517167299985886, + 0.007923608645796776, + -0.0113041577860713, + 0.0065721021965146065, + -0.014534936286509037, + -0.021595578640699387, + 0.008964874781668186, + -0.025703586637973785, + -0.02484775148332119, + 0.015119757503271103, + 0.016674524173140526, + 0.008472769521176815, + -0.01748756878077984, + -0.038312893360853195, + -0.014413692988455296, + -0.004108009394258261, + 0.011047407984733582, + -0.013579254038631916, + -0.03166590631008148, + 0.0004243516887072474, + 0.03106682188808918, + -0.017601680010557175, + 0.0029651126824319363, + -0.005088654346764088, + -0.009107514284551144, + 0.012659231200814247, + -0.014820215292274952, + -0.01260930672287941, + -0.015590466558933258, + -0.0034393882378935814, + -0.027372466400265694, + -0.016118232160806656, + -0.01432811003178358, + -0.011311289854347706, + -0.009678071364760399, + 0.0058446419425308704, + 0.016888484358787537, + 0.005202765576541424, + -0.031123878434300423, + 0.0020736176520586014, + 0.012031618505716324, + -0.003360936651006341, + -0.0005808090791106224, + 0.02670206129550934, + -0.013850267976522446, + -0.010006140917539597, + -0.021367354318499565, + -0.004764149896800518, + 0.0037942032795399427, + 0.009934822097420692, + 0.0018400459084659815, + -0.017245082184672356, + 0.007838024757802486, + -0.02390633337199688, + 0.02449115365743637, + 0.023763693869113922, + -0.022251717746257782, + -0.0010715771932154894, + 0.005020900629460812, + -0.016132496297359467, + -0.0029526317957788706, + 0.02712997980415821, + -0.003195118624716997, + -0.022166134789586067, + -0.02597460150718689, + 0.001943459385074675, + 0.023064762353897095, + -0.01583295315504074, + 0.0034500861074775457, + 0.004054519813507795, + 0.00033208192326128483, + -0.0004156595969107002, + 0.01603264920413494, + 0.005559363402426243, + 0.007545614615082741, + -0.019284822046756744, + -0.017088178545236588, + -0.023435624316334724, + 0.0031166670378297567, + 0.0041971588507294655, + -0.014378033578395844, + 0.0022323038429021835, + 0.02714424394071102, + 0.03854111582040787, + 0.00827307440340519, + -0.03466133028268814, + -0.008351526223123074, + 0.036059193313121796, + -0.0022180399391800165, + 0.005120748188346624, + -0.0253897812217474, + -0.02657368592917919, + -6.209124421729939e-6, + 0.018215028569102287, + 0.008636805228888988, + -0.03391960635781288, + 0.03859817236661911, + -0.00923588965088129, + -0.022280246019363403, + 0.006711175199598074, + -0.007509954739362001, + -0.005266953259706497, + 0.030952710658311844, + 0.03617330640554428, + -0.024919072166085243, + -0.01842898689210415, + -0.025746379047632217, + 0.015904273837804794, + 0.005773322656750679, + 0.005045862402766943, + 0.01937040686607361, + 0.01563325896859169, + 0.008344394154846668, + -0.0018222160870209336, + 0.029469262808561325, + -0.020012281835079193, + 0.035716861486434937, + -0.02600312978029251, + -0.029440734535455704, + -0.002114626346156001, + -0.009200229309499264, + -0.03537452593445778, + 0.015205340459942818, + -0.009635278955101967, + -0.004254214931279421, + -0.007994928397238255, + 0.01640351116657257, + -0.002817124594002962, + -0.01638924703001976, + -0.004115141462534666, + -0.008494165726006031, + 0.037970561534166336, + -0.006090694572776556, + 0.0005447035073302686, + -0.001511084265075624, + -0.012965905480086803, + 0.0007140875677578151, + -0.0259888656437397, + 0.006671949289739132, + 0.000593290023971349, + -0.026887493208050728, + 0.0015743804397061467, + -0.014820215292274952, + -0.026673534885048866, + 0.0023161042481660843, + 0.00865820050239563, + 0.01697406731545925, + -0.005241991486400366, + -0.004589417017996311, + 0.008950610645115376, + 0.005741228815168142, + -0.010954692028462887, + 0.030210986733436584, + 0.009143173694610596, + 0.018129445612430573, + 0.00801632460206747, + 0.0072959959506988525, + 0.009663807228207588, + 0.023877805098891258, + -0.010769261047244072, + -0.010883372277021408, + 0.02073974348604679, + 0.003990332130342722, + -0.0002779235946945846, + 0.0006079996819607913, + 0.0017170195933431387, + 0.018928224220871925, + -0.006165580358356237, + -0.009243021719157696, + 0.011111595667898655, + -0.02523287758231163, + -0.012373952195048332, + 0.006058600731194019, + 0.006693345494568348, + -0.0021895121317356825, + -0.011354082264006138, + 0.007702517788857222, + -0.008494165726006031, + -0.005580759607255459, + 0.018742794170975685, + -0.0018650077981874347, + 0.018157972022891045, + -0.03186560049653053, + -0.014064227230846882, + 0.0018757057841867208, + -0.0012926679337397218, + 0.0024284326937049627, + -0.016645997762680054, + -0.024733640253543854, + 0.034547220915555954, + 0.010148780420422554, + 0.03791350498795509, + 0.013265447691082954, + -0.000987776555120945, + 0.01450640894472599, + -0.009528299793601036, + -0.019541572779417038, + 0.0017401984659954906, + 0.005256255157291889, + 0.0350036658346653, + -0.010569565929472446, + 0.02295065112411976, + 0.030239515006542206, + 0.008608276955783367, + -0.011232838965952396, + -0.005277651362121105, + 0.02332151308655739, + -0.029412206262350082, + -0.006219069939106703, + 0.008636805228888988, + 0.016317926347255707, + 0.00010263337753713131, + 0.03554569184780121, + 0.021538522094488144, + 0.012081542052328587, + 0.0014665095368400216, + -0.026060186326503754, + -0.009542563930153847, + -0.04524515941739082, + 0.016902748495340347, + -0.016246607527136803, + 0.03089565597474575, + -0.011503852903842926, + 0.015019909478724003, + -0.0008322107023559511, + -0.010919032618403435, + -0.007135527208447456, + -0.02392059750854969, + 0.0036693939473479986, + -0.0018239989876747131, + -0.03132357448339462, + 0.010762128978967667, + -0.01280186977237463, + 0.009514035657048225, + -0.024562474340200424, + -0.0035499336663633585, + -0.0010475068120285869, + -0.016289398074150085, + 0.01715949736535549, + -0.0008313191938214004, + -0.014463616535067558, + -0.00808051135390997, + -0.014677575789391994, + -0.02747231349349022, + 0.0102771557867527, + 0.013600649312138557, + 0.0017437645001336932, + 0.012167125009000301, + -0.003505358938127756, + -0.01939893327653408, + 0.017944013699889183, + 0.02069695107638836, + -0.004033124074339867, + -0.012302632443606853, + 0.013258315622806549, + 0.01516254898160696, + -0.026488102972507477, + -0.015076966024935246, + -0.01206014584749937, + 3.092373663093895e-5, + -0.011632228270173073, + 0.030467737466096878, + -0.015005646273493767, + 0.02257978916168213, + 0.020996492356061935, + 0.030981238931417465, + -0.001553875976242125, + -0.0056199850514531136, + -0.015347979962825775, + -0.005944489501416683, + 0.010298551991581917, + -0.017230818048119545, + -0.002166333142668009, + -0.002182380063459277, + -0.0013871664414182305, + 0.016660260036587715, + 0.014620520174503326, + -0.00758127449080348, + -0.004339798353612423, + -0.018700001761317253, + -0.010697941295802593, + -0.010576697997748852, + -0.015290924347937107, + 0.01007032860070467, + -0.009649543091654778, + -0.016089703887701035, + -0.003583810292184353, + -0.019455989822745323, + 0.013087148778140545, + 0.007845156826078892, + -0.005370366852730513, + 0.005766190588474274, + 0.016859956085681915, + -0.013115676119923592, + 0.015718841925263405, + 0.004125839564949274, + 0.011610832065343857, + -0.005085088312625885, + -0.029440734535455704, + 0.017073914408683777, + 0.008893555030226707, + -0.00912891048938036, + 0.00219129491597414, + 0.00019846910436172038, + 0.0030399984680116177, + -0.01955583691596985, + 0.0003795540542341769, + 0.0362018346786499, + 0.025090238079428673, + 0.0009494423284195364, + -0.00044619329855777323, + -0.02186659164726734, + 0.004486003424972296, + 0.023093290627002716, + 0.006040771026164293, + 0.0037977693136781454, + -0.025475364178419113, + 0.020611368119716644, + 0.0065614040940999985, + -0.009870634414255619, + 0.007010717876255512, + 0.01017017662525177, + -0.010270023718476295, + 0.012680626474320889, + -0.00017417586059309542, + -0.03223646432161331, + -0.019113656133413315, + 0.00230540637858212, + 0.010640885680913925, + -0.025646531954407692, + 0.0006561403861269355, + 0.018600154668092728, + -0.02821403741836548, + -0.020254768431186676, + 0.010655149817466736, + 0.037970561534166336, + 0.010056065395474434, + -0.026473838835954666, + -0.007046377286314964, + -0.026402520015835762, + -0.010754996910691261, + 0.00489965733140707, + -0.0059801493771374226, + 0.001272163586691022, + 0.026045922189950943, + -0.008244547061622143, + 0.0034411712549626827, + 0.01563325896859169, + 0.013215524144470692, + 0.019513044506311417, + -0.005188501439988613, + 0.006069298833608627, + 0.01879984885454178, + 0.015305188484489918, + -0.01232402864843607, + -0.008779443800449371, + 0.01241674367338419, + 0.02297917753458023, + 0.005110050085932016, + -0.003690789919346571, + -0.008907819166779518, + 0.026816172525286674, + 0.001098321983590722, + -0.028499316424131393, + 0.0024141687899827957, + 0.026045922189950943, + 0.011332686059176922, + -0.008715256117284298, + -0.011696415953338146, + 0.008857895620167255, + 0.013251183554530144, + 0.014677575789391994, + 0.01566178724169731, + 0.009571091271936893, + -0.01479168701916933, + -0.01751609705388546, + -0.021053548902273178, + 0.0012989083770662546, + 0.008986270986497402, + -0.012908849865198135, + -0.008786575868725777, + -0.004888959228992462, + 0.02394912578165531, + -0.0027244091033935547, + -0.005548665765672922, + -0.0018275650218129158, + -0.03528894484043121, + -0.01064801774919033, + 0.00952116772532463, + -0.004635774530470371, + 0.008294470608234406, + 0.0052812169305980206, + 0.006272559519857168, + -0.004343364387750626, + 0.017858430743217468, + -0.00020214651885908097, + -0.015561939217150211, + 0.006190542131662369, + -0.00015010549395810813, + 0.008629673160612583, + -0.016831427812576294, + 0.0048568653874099255, + -0.011810527183115482, + 0.06441587209701538, + 0.014021435752511024, + 0.004354062024503946, + 0.022308774292469025, + 0.0036979217547923326, + 0.004560889210551977, + 0.0012677060440182686, + -0.005498741753399372, + 0.003270004177466035, + 0.0069786240346729755, + 0.006108524743467569, + -0.006468688603490591, + -0.01383600477129221, + -0.006964359898120165, + -0.014420825056731701, + 0.007467163261026144, + 0.01064801774919033, + 0.005905263591557741, + -0.00395110622048378, + 0.011546645313501358, + 0.012031618505716324, + 0.014078491367399693, + -0.028156982734799385, + 0.03520336002111435, + 0.002899142215028405, + -0.008636805228888988, + 0.007460031192749739, + -0.010605226270854473, + 0.03103829361498356, + 0.019455989822745323, + -0.0014700754545629025, + -0.008059116080403328, + -0.009913425892591476, + -0.003958238288760185, + 0.019669948145747185, + -0.004560889210551977, + -0.02091090939939022, + 0.006835984531790018, + -0.008308734744787216, + 0.03103829361498356, + -0.005306179169565439, + -0.02557521127164364, + 0.032464686781167984, + -0.0065614040940999985, + -0.03217940777540207, + 0.005905263591557741, + 0.01036273967474699, + -0.006147750187665224, + -0.00390474870800972, + -0.0025033182464540005, + -0.013429482467472553, + -0.020411672070622444, + -7.683573494432494e-5, + 0.012794737704098225, + 0.007552746683359146, + -0.002344632288441062, + 0.0037300155963748693, + -0.015932800248265266, + 0.022922122851014137, + -0.02935515157878399, + 0.0033288428094238043, + 0.003954672254621983, + 0.01357212197035551, + -0.012587911449372768, + -0.009350000880658627, + -0.005566495470702648, + -0.01147532556205988, + 0.015875745564699173, + -0.002968678716570139, + 0.009656675159931183, + -0.00780949741601944, + 0.01167501974850893, + -0.016089703887701035, + -0.02222319133579731, + -0.014834478497505188, + 0.006718307267874479, + -0.012309764511883259, + 0.019470253959298134, + -0.008130435831844807, + 0.005548665765672922, + -0.022109078243374825, + -0.009656675159931183, + 0.003150543663650751, + -0.01617528684437275, + 0.0027386730071157217, + 0.014000039547681808, + 0.0030203855130821466, + -0.005805416032671928, + -0.0023285853676497936, + -0.008237414993345737, + -0.005388196557760239, + 0.014891534112393856, + 0.005962319206446409, + 0.025304198265075684, + -0.011232838965952396, + -0.008544089272618294, + -0.014805951155722141, + -0.0010724685853347182, + 0.009727994911372662, + -0.010683677159249783, + 0.011639360338449478, + 0.006843116600066423, + -0.004774847999215126, + 0.008515560999512672, + 0.0072959959506988525, + -0.010669413954019547, + -0.011660756543278694, + 0.004165065009146929, + -0.010576697997748852, + 0.004642906598746777, + 0.005577193573117256, + -0.013935851864516735, + -0.007121263071894646, + 0.014149810187518597, + -0.02730114758014679, + -0.003498226869851351, + 0.024191612377762794, + 0.01346514280885458, + -0.0077738375402987, + 0.0017277175793424249, + -0.013244051486253738, + -0.010961824096739292, + -0.003954672254621983, + 0.0006494541885331273, + -0.01768726296722889, + 0.007830893620848656, + -0.0056128534488379955, + 0.001730391988530755, + -0.0011001050006598234, + 0.017858430743217468, + 0.007131961174309254, + -0.0020450898446142673, + -0.012652099132537842, + 0.0029526317957788706, + 0.006286823656409979, + -0.016788635402917862, + -0.01270915474742651, + -0.011247102171182632, + 0.016232343390583992, + -0.0069393981248140335, + -0.0036836578510701656, + 0.014456485398113728, + 0.010077460668981075, + 0.013550725765526295, + 0.0023268023505806923, + 0.0004319293948356062, + -0.003182637505233288, + -0.05103631317615509, + 0.020297560840845108, + 0.01373615674674511, + 0.023136081174016, + -0.012110069394111633, + 0.012973036617040634, + -0.027814647182822227, + 0.004018859937787056, + -0.002250133780762553, + -0.013129940256476402, + 0.012110069394111633, + -0.022265981882810593, + 0.004375458229333162, + -0.0038976166397333145, + -0.002760068979114294, + -0.03603066876530647, + -0.015005646273493767, + -0.003532103728502989, + -0.004400420002639294, + 0.011689283885061741, + 0.02637399174273014, + 0.001821324578486383, + -0.005345404613763094, + -0.027714800089597702, + 0.0037014877889305353, + 0.013650573790073395, + -0.020297560840845108, + 0.005958753637969494, + -0.0036069892812520266, + 0.006333181168884039, + 0.01924203149974346, + -0.019641419872641563, + 0.004664302337914705, + -0.0008785684476606548, + -0.011839055456221104, + -0.00904332660138607, + -0.00819462351500988, + 0.015005646273493767, + 0.002745805075392127, + 0.03534599766135216, + -0.026816172525286674, + 0.0015217821346595883, + 0.015019909478724003, + 0.006079996936023235, + 0.01203875057399273, + 0.005395328626036644, + 0.004361194092780352, + -0.008665332570672035, + 0.012880321592092514, + 0.007545614615082741, + 0.03631594404578209, + 0.003665827913209796, + 0.003972502425312996, + 0.01598985679447651, + 0.0105410385876894, + -0.005805416032671928, + 0.028171246871352196, + -0.009421320632100105, + -0.011946034617722034, + -0.008137567900121212, + -0.017986806109547615, + 0.018885431811213493, + 0.0072781662456691265, + -0.016902748495340347, + -0.024976126849651337, + 0.00949977245181799, + -0.0001574603229528293, + -0.01149672083556652, + 0.0033395406790077686, + 0.005766190588474274, + 0.00847990158945322, + 0.004136537201702595, + -0.01922776736319065, + 0.02671632543206215, + 0.015590466558933258, + 0.018971016630530357, + -0.010091724805533886, + -0.0006632723961956799, + 0.010726469568908215, + 0.015918536111712456, + -0.000482298870338127, + -0.00846563745290041, + -0.009678071364760399, + 0.02902708202600479, + -0.009792182594537735, + -0.0028385205660015345, + 0.004853299353271723, + 0.02653089538216591, + 0.03149474039673805, + 0.006975058000534773, + -0.003590942360460758, + 0.023478414863348007, + -0.013358162716031075, + -0.011796263046562672, + 0.010576697997748852, + -0.013358162716031075, + 0.0065792337991297245, + -0.001914931577630341, + 0.023136081174016, + 0.014399428851902485, + -0.0017366325482726097, + -0.008615409024059772, + -2.245453288196586e-5, + 0.003541018581017852, + -0.008308734744787216, + 0.0021021454595029354, + 0.026459574699401855, + 0.01827208325266838, + -0.007128395140171051, + -0.015875745564699173, + 0.009421320632100105, + -0.003321710741147399, + 0.009849238209426403, + 0.004268478602170944, + -0.007402975577861071, + -0.010612358339130878, + 0.009571091271936893, + 0.007360183633863926, + -0.0039368425495922565, + -0.04125126078724861, + -0.006739703007042408, + 0.00197555311024189, + -0.012644967064261436, + 2.5324034140794538e-5, + -0.04430374130606651, + 0.0016100401990115643, + 0.010705073364078999, + 0.00922162551432848, + -0.004568020813167095, + 0.02427719533443451, + -0.02279374748468399, + 0.016802899539470673, + -0.0155476750805974, + -0.014691839925944805, + 0.021781008690595627, + -0.010976088233292103, + -0.027957286685705185, + 0.001115260412916541, + -0.021395882591605186, + 0.00480337580665946, + 0.017387721687555313, + 0.01055530272424221, + 0.002644174499437213, + 0.010355607606470585, + -0.0302965696901083, + -0.005869603715837002, + -0.014114150777459145, + -0.0116678886115551, + 0.0012472016969695687, + 0.009556828066706657, + 0.006953661795705557, + 0.01637498289346695, + 0.005759058520197868, + 0.012666362337768078, + -0.01999801956117153, + -0.009920557960867882, + -0.020811062306165695, + 0.007242506369948387, + 0.012915981002151966, + 0.006247597746551037, + 0.003480396931990981, + -0.01918497495353222, + 0.021181924268603325, + 0.014620520174503326, + -0.001818650052882731, + -0.006992887705564499, + 0.013144204393029213, + -0.023649582639336586, + -0.006158448290079832, + 0.010234364308416843, + 0.008051984012126923, + -0.0049424488097429276, + -0.014834478497505188, + 0.00950690358877182, + -0.00790221244096756, + 0.014164074324071407, + 0.003127364907413721, + -0.002592467935755849, + 0.01638924703001976, + 0.007345919962972403, + 0.00504229636862874, + 0.02086811698973179, + -0.03543158248066902, + -0.01092616468667984, + 0.015376508235931396, + -0.022551260888576508, + 0.017430512234568596, + -0.013179863803088665, + 0.02633119933307171, + -0.008601144887506962, + 0.005712700542062521, + -0.01561899483203888, + 0.014263922348618507, + 0.0010314598912373185, + -0.004250648897141218, + -0.009663807228207588, + -0.001943459385074675, + 0.02257978916168213, + 0.03186560049653053, + 0.020425936207175255, + -0.013564989902079105, + 0.007452899124473333, + -6.786506855860353e-5, + 0.00611922238022089, + -0.003637300105765462, + 0.0014932543272152543, + -0.010391267016530037, + 0.0036052062641829252, + -0.007574142422527075, + 0.025318462401628494, + 0.024862015619874, + -0.007531350944191217, + 0.00034277988015674055, + -0.0042185550555586815, + 0.020183449611067772, + -0.010334211401641369, + 0.0015779463574290276, + 0.023264456540346146, + 0.0010599876986816525, + 0.004407552070915699, + 0.014442221261560917, + -0.04230679199099541, + 0.017615944147109985, + 0.015376508235931396, + -0.002581769833341241, + -0.009214493446052074, + -0.01637498289346695, + 0.001733066514134407, + 0.03771381080150604, + -0.003070309292525053, + 0.010198703967034817, + -0.03163737803697586, + -0.005997979082167149, + 0.023449888452887535, + -0.001627870136871934, + -0.0055557978339493275, + -0.005898131523281336, + -0.008715256117284298, + 0.0104411905631423, + -0.008280206471681595, + 0.0051956335082650185, + 0.013622045516967773, + 0.009685203433036804, + -0.0037121856585144997, + 0.020611368119716644, + 0.011382609605789185, + 0.008736652322113514, + -0.005110050085932016, + 0.008294470608234406, + -0.00024293242313433439, + 0.008972006849944592, + -0.015390771441161633, + -0.012316896580159664, + 0.0033538045827299356, + 0.004917487036436796, + 0.006885908544063568, + 0.009057590737938881, + 0.01922776736319065, + -0.018942488357424736, + 0.024191612377762794, + 0.004874695558100939, + 0.0015922102611511946, + -0.013536461628973484, + -0.004482437390834093, + 0.01730213686823845, + -0.019427461549639702, + 0.001086732605472207, + 0.024919072166085243, + -0.009735126979649067, + 0.00922162551432848, + 0.0125308558344841, + 0.005277651362121105, + -0.002187729114666581, + 0.004635774530470371, + -0.0052241613157093525, + 0.006051469128578901, + 0.002560374094173312, + -0.007567010819911957, + 0.015704577788710594, + 0.03232204541563988, + 0.017601680010557175, + -0.013707629404962063, + -0.003993898164480925, + -0.0102771557867527, + 0.001283752964809537, + -0.012766210362315178, + 0.03985339775681496, + -0.013622045516967773, + -0.006721873302012682, + 0.02633119933307171, + -0.016061175614595413, + -0.013957248069345951, + 0.00018197644385509193, + -0.005384630523622036, + -0.002325019333511591, + 0.021909384056925774, + 0.003733581630513072, + -0.007716781925410032, + 0.019484518095850945, + -0.004428947810083628, + 0.018528833985328674, + 0.013400955125689507, + -0.018371932208538055, + 0.00819462351500988, + 0.024533946067094803, + 0.0016216295771300793, + -0.005570061504840851, + -0.02638825587928295, + -0.006272559519857168, + -0.018600154668092728, + 0.018200764432549477, + 0.01551914680749178, + -0.025503892451524734, + 0.00013673306966666132, + -0.0014593774685636163, + -0.01346514280885458, + 0.002692315261811018, + -0.007695385720580816, + -0.016517622396349907, + 0.034547220915555954, + 0.010091724805533886, + -0.015775898471474648, + 0.004721357952803373, + -0.00775957340374589, + 0.018913960084319115, + 0.01008459273725748, + -0.009792182594537735, + 0.007681122049689293, + 0.01713097095489502, + -0.0030417812522500753, + -0.021381618455052376, + 0.004386155866086483, + 0.01580442488193512, + 0.003542801598086953, + 0.017102442681789398, + -0.021181924268603325, + 0.009021930396556854, + 0.006843116600066423, + -0.0055165719240903854, + -0.008351526223123074, + -0.004061651881784201, + 0.009171701967716217, + 0.02902708202600479, + 0.006992887705564499, + -0.014905798248946667, + 0.012573647312819958, + -0.010241496376693249, + -0.0018792717019096017, + -0.0011170434299856424, + -0.0006414307281374931, + 0.004589417017996311, + -0.005398894660174847, + 0.015947064384818077, + -0.0007234482909552753, + -0.015718841925263405, + -0.0058553400449454784, + 0.009856370277702808, + 0.00979931466281414, + -0.009770786389708519, + -0.022693900391459465, + 0.013072884641587734, + -0.012716286815702915, + -0.006643421482294798, + 0.013315371237695217, + -0.01225270889699459, + -0.00020203508029226214, + 0.006907304283231497, + -0.0062404656782746315, + 0.026473838835954666, + 0.014249658212065697, + 0.019627157598733902, + 0.007638330105692148, + 0.02370663918554783, + -0.012502327561378479, + -0.004621510859578848, + -0.008943479508161545, + -0.00867246463894844, + 0.01092616468667984, + 0.014499276876449585, + 0.021524257957935333, + 0.009635278955101967, + -0.009727994911372662, + -0.0005790260620415211, + -0.017173761501908302, + 0.01251659169793129, + -0.015019909478724003, + -0.013729024678468704, + -0.010291419923305511, + 0.005719832610338926, + -0.00030756581691093743, + 0.005869603715837002, + 0.03457574546337128, + -0.017929749563336372, + 0.012231312692165375, + 0.003872654866427183, + -0.010120253078639507, + 0.011161519214510918, + 0.00042880914406850934, + -0.008608276955783367, + -0.005530835594981909, + 0.00864393636584282, + 0.013044356368482113, + 0.007260336074978113, + -0.0059694512747228146, + 0.0014861223753541708, + 0.00710343336686492, + -0.0020022981334477663, + -0.010790657252073288, + -0.020853854715824127, + 0.007028547581285238, + -0.018913960084319115, + 0.004724923986941576, + 0.005348970647901297, + -0.0027279751375317574, + -0.025675060227513313, + -0.002683400409296155, + 0.02450541779398918, + -0.0065328762866556644, + 0.0197555311024189, + 0.00997761357575655, + 0.01563325896859169, + 0.004464607685804367, + 0.030838599428534508, + -0.017088178545236588, + -0.00025207025464624166, + -0.005791152361780405, + -0.013400955125689507, + -0.02409176342189312, + -0.015076966024935246, + -0.007488559000194073, + 0.00729242991656065, + 0.01976979523897171, + -0.0022947085089981556, + 0.007574142422527075, + 0.003122015856206417, + 0.005377498455345631, + -0.0113041577860713, + 0.016517622396349907, + 0.0027778989169746637, + 0.019156446680426598, + -0.008237414993345737, + -7.705861207796261e-5, + -0.018300611525774002, + 0.006925133988261223, + -0.0125308558344841, + 0.0001141113752964884, + 0.0013960814103484154, + 0.0005803633248433471, + 0.006743269041180611, + 0.0024034709203988314, + -0.010098856873810291, + -0.01674584485590458, + -0.02296491526067257, + -0.018871169537305832, + 0.005495176184922457, + -0.005006636492908001, + 0.021025020629167557, + 0.011204310692846775, + 0.01861441880464554, + 0.007049943320453167, + -0.012744814157485962, + -0.006244031712412834, + -0.002745805075392127, + -0.002230520825833082, + 0.002506884280592203, + 0.02790023200213909, + 0.01526239700615406, + 0.002501535229384899, + -0.012652099132537842, + 0.0026620044372975826, + -0.008729520253837109, + 0.011118726804852486, + 0.0016127147246152163, + -0.010526774451136589, + -0.01092616468667984, + 0.007866553030908108, + -0.011946034617722034, + -0.0002623224281705916, + 0.008244547061622143, + -0.011831923387944698, + 0.009121778421103954, + 0.006650553550571203, + -0.0019916000310331583, + -0.008116171695291996, + 0.006696911528706551, + 0.02219466306269169, + -0.0013711195206269622, + 0.0010082810185849667, + 0.0005157299456186593, + -0.04553043842315674, + -0.010783525183796883, + -0.0006151316338218749, + -0.017073914408683777, + -0.0018436119426041842, + -0.001198169426061213, + -0.002014779020100832, + 0.030439209192991257, + 0.02166689746081829, + 0.0031772886868566275, + 0.00790221244096756, + 0.0069679259322583675, + -0.017658734694123268, + 0.0013390256790444255, + -0.03665827959775925, + -0.008843631483614445, + 0.0035998572129756212, + -0.004272044636309147, + -0.017259346321225166, + -0.01159656886011362, + -0.00962101574987173, + -0.019427461549639702, + 0.009642411023378372, + -0.012730550020933151, + -0.02501891925930977, + -0.039425481110811234, + -0.029440734535455704, + 0.008123303763568401, + 0.0013479406479746103, + -0.018314875662326813, + 0.015590466558933258, + 0.011118726804852486, + -0.009064722806215286, + -0.019883906468749046, + -0.004436079878360033, + -0.01394298393279314, + 0.008144699037075043, + 0.007666857913136482, + -0.014427957125008106, + -0.014449353329837322, + 0.008779443800449371, + -0.005152842029929161, + 0.015690313652157784, + -0.0452166311442852, + -0.00999187771230936, + -0.012295500375330448, + -0.012830398045480251, + -0.005359668750315905, + -1.685483039182145e-5, + 0.0036159041337668896, + 0.002257265616208315, + 0.007673989981412888, + -0.015490619465708733, + 0.004471739754080772, + -0.011289894580841064, + -0.01384313590824604, + -0.01884264126420021, + -0.0030435642693191767, + 0.019812587648630142, + -0.007816629484295845, + -0.0104411905631423, + -0.004364760126918554, + 0.004486003424972296, + 0.00012458644050639123, + -0.014021435752511024, + -0.010426927357912064, + -0.0002489500038791448, + -0.029868653044104576, + 0.005295481067150831, + -0.01790122129023075, + -0.0024409135803580284, + -0.007973532192409039, + -0.02069695107638836, + -0.007602670229971409, + 0.017858430743217468, + -0.007745309732854366, + 0.017758583649992943, + 0.0027137112338095903, + 0.002421300858259201, + -0.01848604343831539, + 0.01658894121646881, + 0.003136279759928584, + -0.012174257077276707, + 0.005780454259365797, + -0.0008063573623076081, + 0.005791152361780405, + -0.004785545635968447, + 0.012309764511883259, + 0.002166333142668009, + 0.00640806695446372, + 0.017387721687555313, + -0.0018061691662296653, + -0.002276878571137786, + -0.0011491372715681791, + 0.020211977884173393, + -0.0022412186954170465, + -0.0032343443017452955, + 0.016432037577033043, + -0.013857400044798851, + 0.009378529153764248, + 0.00706777349114418, + -0.002834954531863332, + 0.0006044337060302496, + -0.003526754677295685, + -0.010291419923305511, + -0.04259207099676132, + -0.017772845923900604, + -0.00032160687260329723, + 0.034946609288454056, + 0.008622541092336178, + 0.013857400044798851, + -0.005627117119729519, + -0.015390771441161633, + -0.0002745804958976805, + -0.014606256037950516, + -0.01616102270781994, + 0.009100382216274738, + -0.014905798248946667, + 0.020112130790948868, + 0.0063082193955779076, + 0.021952176466584206, + -0.0033110128715634346, + -0.010255759581923485, + -0.004040255676954985, + 0.017787110060453415, + 0.005659210961312056, + 0.003965370357036591, + 0.018899695947766304, + -0.009820709936320782, + -0.007235374301671982, + 0.0055557978339493275, + 0.004960278980433941, + 0.002506884280592203, + 0.017829902470111847, + -0.008173227310180664, + 0.00423995079472661, + -0.018414722755551338, + -0.03543158248066902, + -0.022180398926138878, + -0.030810071155428886, + -0.007360183633863926, + 0.004425381775945425, + -0.01810091733932495, + -0.0009414188680239022, + -0.007452899124473333, + -0.007930740714073181, + -0.006893040146678686, + 0.013515066355466843, + 0.0019702042918652296, + -0.011118726804852486, + 0.008879291824996471, + 0.01015591248869896, + 0.0018124096095561981, + -0.010191571898758411, + 0.004960278980433941, + -0.008964874781668186, + -0.020967965945601463, + -0.009813578799366951, + 0.02356399968266487, + -0.0003935951099265367, + 0.01919923909008503, + 0.011589436791837215, + -0.004821205511689186, + -0.0005955187371000648, + 0.003175505669787526, + -0.006154882255941629, + -0.017844166606664658, + -0.010833448730409145, + 0.006515046581625938, + 0.004411118105053902, + -0.022123342379927635, + 0.006197674199938774, + 0.026074448600411415, + 0.001024327939376235, + 0.013058620505034924, + -0.009278681129217148, + -0.017387721687555313, + -0.0026744853239506483, + 0.008208886720240116, + -0.002043306827545166, + -0.007895080372691154, + -0.012431007809937, + 0.0015405035810545087, + 0.020654158666729927, + -0.0023357172030955553, + 0.01804386079311371, + 0.018329139798879623, + 0.012730550020933151, + -0.016089703887701035, + -0.002373160095885396, + -0.007174752652645111, + -0.0014780989149585366, + -0.013393823057413101, + -0.03066743165254593, + 0.0033930304925888777, + -0.01638924703001976, + -0.011132990941405296, + 0.008929215371608734, + 0.008615409024059772, + -0.008166095241904259, + -0.0029775938019156456, + 0.002920537954196334, + 0.011132990941405296, + -0.009599619545042515, + -0.0011910374742001295, + -0.03132357448339462, + 0.006033638957887888, + -0.005812548100948334, + 0.00960675161331892, + 0.004279176704585552, + -0.028000079095363617, + 0.005723398644477129, + -0.011503852903842926, + -0.0005050319596193731, + -0.002872397191822529, + 0.004735622089356184, + -0.008394317701458931, + -0.002223388757556677, + -0.027015868574380875, + 0.03143768385052681, + -0.0005821463419124484, + -0.0017517879605293274, + -0.013137072324752808, + -0.017587415874004364, + -0.0020254768896847963, + -0.003050696337595582, + -0.004289874341338873, + 0.01787269487977028, + 0.008722388185560703, + -0.003098837099969387, + 0.012452404014766216, + 0.002319670282304287, + 0.00010179760283790529, + 0.011446797288954258, + -0.02073974348604679, + 0.006404500920325518, + -0.015076966024935246, + -0.018543098121881485, + -0.019156446680426598, + -0.015775898471474648, + 0.002146720187738538, + -0.0009378528920933604, + 0.017016859725117683, + -0.002276878571137786, + -0.004090179689228535, + 0.0105410385876894, + 0.009114646352827549, + 0.011532381176948547, + -0.017744319513440132, + -0.01584721729159355, + 0.014392297714948654, + 0.011425401084125042, + 0.01899954490363598, + 0.022722428664565086, + 0.0208823811262846, + 0.008130435831844807, + 0.02350694313645363, + 0.004407552070915699, + -0.002166333142668009, + 0.0009628147236071527, + -0.007324523758143187, + -0.006122788414359093, + -0.00400103023275733, + -0.012202785350382328, + 0.0025371951051056385, + -0.006557838059961796, + -0.012388216331601143, + 0.00616914639249444, + -0.0007310259970836341, + 0.0017089961329475045, + -0.023649582639336586, + -0.011682151816785336, + 0.008208886720240116, + 0.0007470729178749025, + -0.014962853863835335, + 0.018029596656560898, + -0.018671473488211632, + -0.007099867332726717, + 0.017387721687555313, + -0.014470748603343964, + 0.009613883681595325, + -0.00952116772532463, + 0.005666343029588461, + -0.02825682982802391, + -0.021695425733923912, + 0.034147828817367554, + 0.009913425892591476, + 0.004054519813507795, + 0.003394813509657979, + -0.004978108685463667, + -0.013807476498186588, + 0.0029294530395418406, + 0.013957248069345951, + -0.005548665765672922, + 0.012095806188881397, + -0.01110446359962225, + -0.00010023748473031446, + -0.005284782964736223, + 0.0083871865645051, + -0.008943479508161545, + -0.004689264576882124, + -0.020425936207175255, + 0.019441725686192513, + 0.00597658334299922, + 0.020383143797516823, + -0.012858925387263298, + -0.0009423103765584528, + -0.003929710481315851, + -0.018956752493977547, + -0.023963388055562973, + 0.017459040507674217, + -0.008708124049007893, + 0.008116171695291996, + 0.005299047101289034, + -0.01551914680749178, + 0.017558887600898743, + 0.003865522798150778, + -0.009485508315265179, + 0.017986806109547615, + 0.013479406014084816, + -0.0008446916472166777, + -0.03206529840826988, + 0.004350495990365744, + 0.019541572779417038, + -0.0005718941101804376, + -0.022708164528012276, + 0.019455989822745323, + -0.00856548547744751, + 0.021395882591605186, + -0.00032539572566747665, + -0.006322483532130718, + -0.006272559519857168, + 0.0006142401252873242, + 0.01167501974850893, + -0.015932800248265266, + -0.011610832065343857, + -0.024020444601774216, + -0.0062048062682151794, + 0.009193098172545433, + 0.003642649156972766, + -0.015861481428146362, + -0.01748756878077984, + -0.015347979962825775, + 0.015690313652157784, + -0.003594508394598961, + -0.023221664130687714, + 0.0007484101806767285, + 0.0014959288528189063, + 0.005156407598406076, + 0.003155892714858055, + -0.0035303207114338875, + 0.017944013699889183, + 0.005309744738042355, + -0.009956217370927334, + -0.01018444076180458, + -0.009193098172545433, + -0.0066469875164330006, + 0.007206846494227648, + -0.02052578330039978, + -0.026488102972507477, + 0.03240763023495674, + 0.003059611190110445, + -0.004785545635968447, + -0.01459912396967411, + 0.013614913448691368, + 0.013657704927027225, + -0.013707629404962063, + 0.0014326326781883836, + -0.00830160267651081, + -0.006276125553995371, + -0.03497513756155968, + -0.021395882591605186, + -0.009670939296483994, + 0.017273610457777977, + -0.006472254637628794, + 0.023136081174016, + -0.03106682188808918, + -0.010854844935238361, + -0.02972601354122162, + 0.03457574546337128, + -0.007021415513008833, + 0.004892525263130665, + 0.002473007421940565, + 0.01373615674674511, + 0.005306179169565439, + 0.02186659164726734, + -0.012124333530664444, + -0.011083067394793034, + -0.0014433306641876698, + 0.027172772213816643, + 0.01618955098092556, + -0.011553776450455189, + -0.016802899539470673, + -0.029840124770998955, + 0.013336767442524433, + -0.02111060544848442, + 0.0056021553464233875, + -0.004592983052134514, + -0.014370901510119438, + -0.0026994473300874233, + 0.002310755429789424, + 0.009278681129217148, + -0.002629910595715046, + -0.0020254768896847963, + 0.020183449611067772, + -0.01516254898160696, + -0.022123342379927635, + 0.03272143751382828, + -0.007795233279466629, + 0.003829863155260682, + -0.007285298313945532, + -0.012124333530664444, + -0.01674584485590458, + -0.011917507275938988, + -0.03956811875104904, + -0.001923846430145204, + -0.0008723280043341219, + 0.004058085847645998, + -0.0003786625456996262, + -0.018314875662326813, + -0.020211977884173393, + 0.02784317545592785, + 0.013821740634739399, + 0.011981694027781487, + -0.002606731839478016, + 0.016645997762680054, + 0.0001966861163964495, + -0.001918497495353222, + 0.0013113893801346421, + -0.014920062385499477, + -0.006768230814486742, + -0.010113121010363102, + 0.019299086183309555, + 0.032493215054273605, + -0.015276660211384296, + 0.020853854715824127, + 0.0010974304750561714, + 0.004967411048710346, + 0.0055557978339493275, + -0.004132971633225679, + 0.002464092569425702, + 0.03255027160048485, + 0.006743269041180611, + -0.0005812548333778977, + 0.007131961174309254, + -0.006457990501075983, + -0.03953959047794342, + -0.014178338460624218, + 0.007085603196173906, + -0.01401430368423462, + 0.014649047516286373, + 0.006486518308520317, + 0.0030186024960130453, + -0.007695385720580816, + -0.0033912474755197763, + -0.0029633298981934786, + 0.001408562297001481, + 0.018229292705655098, + -0.009207361377775669, + 0.007106998935341835, + 0.008322998881340027, + 0.0013880579499527812, + 0.010583830066025257, + -0.0065507059916853905, + -0.019299086183309555, + -0.0008246329962275922, + 0.0025853358674794436, + 0.0011437882203608751, + -0.0069108703173696995, + 0.013015829026699066, + 0.0021181923802942038, + 0.007887949235737324, + 0.0066398559138178825, + -0.014805951155722141, + -0.011946034617722034, + 0.001610931707546115, + 0.008722388185560703, + 0.002223388757556677, + 0.003733581630513072, + 0.0011660755844786763, + -0.02165263332426548, + -0.012281237170100212, + -0.005142143927514553, + 0.008258811198174953, + -0.006475820671766996, + -0.0024177348241209984, + 0.00560572138056159, + -0.014634784311056137, + 0.005730530712753534, + 0.011660756543278694, + -0.010020405054092407, + -0.02165263332426548, + -0.004311270546168089, + 0.0058446419425308704, + 0.013308239169418812, + 0.01357212197035551, + 0.02751510590314865, + -0.0036551300436258316, + -0.0013996473280712962, + 0.002911623101681471, + 0.013258315622806549, + 0.00673257140442729, + 0.003528537694364786, + -0.0016715533565729856, + 0.018015334382653236, + 0.008715256117284298, + 0.012110069394111633, + -0.009456980042159557, + 0.01015591248869896, + -0.014734631404280663, + -0.005241991486400366, + 0.011539513245224953, + 0.0033680684864521027, + 0.0007287972839549184, + -0.020040810108184814, + -0.00568773876875639, + -0.02262257970869541, + -0.01251659169793129, + -0.027244091033935547, + 0.019869644194841385, + -0.027158508077263832, + -0.019826851785182953, + -0.018343403935432434, + 0.015704577788710594, + 0.0075884065590798855, + -0.01413554698228836, + 0.002692315261811018, + -0.002219822956249118, + -0.003628385253250599, + 0.008579748682677746, + -0.029868653044104576, + 0.0003432256344240159, + 0.00960675161331892, + 0.005566495470702648, + -0.018386196345090866, + -0.01791548542678356, + -0.006800324656069279, + -0.010291419923305511, + -0.005595023278146982, + 0.022708164528012276, + 0.006907304283231497, + -0.0023232363164424896, + -0.008501297794282436, + -0.008458505384624004, + -0.03591655567288399, + 0.013415218330919743, + -0.01394298393279314, + -0.006454424932599068, + 0.01082631666213274, + -0.005299047101289034, + -0.009842106141149998, + -0.014905798248946667, + 0.015405035577714443, + -0.005666343029588461, + 0.008322998881340027, + -0.009464112110435963, + -0.0006111199036240578, + -0.005049428436905146, + 0.003861956996843219, + -0.02315034531056881, + -0.01979832351207733, + -0.010341343469917774, + -0.006989321671426296, + -0.0019024505745619535, + -0.03252174332737923, + 0.012495195493102074, + 0.010797789320349693, + -0.011453929357230663, + -0.01621807925403118, + -0.012616438791155815, + 0.003861956996843219, + -0.009813578799366951, + 0.008829367347061634, + 0.0014281751355156302, + -0.018186500295996666, + 0.0012427441542968154, + -0.010740733705461025, + -0.023578263819217682, + 0.0016314360545948148, + 0.02185232937335968, + -0.012944509275257587, + 0.02728688344359398, + 0.024576738476753235, + 0.007110564969480038, + 0.00978505052626133, + 0.0362018346786499, + -0.010762128978967667, + -0.024191612377762794, + 0.01235255692154169, + -0.002333934186026454, + -0.005277651362121105, + 9.761871478985995e-5, + 0.012245576828718185, + -0.0036586960777640343, + 0.006753967143595219, + -0.0029615468811243773, + 0.007752441801130772, + -0.0004383927152957767, + -0.026416784152388573, + 0.021495729684829712, + -0.005755492486059666, + -0.0007221110281534493, + -0.01450640894472599, + -0.0045073991641402245, + -0.004903223365545273, + 0.018500307574868202, + 0.010255759581923485, + -0.0012962339678779244, + -0.007096301298588514, + 0.0005571844521909952, + 0.006786060985177755, + 0.0017259345622733235, + 0.00379063724540174, + -0.01676010899245739, + 0.021695425733923912, + -0.01308001670986414, + 0.01658894121646881, + 0.009243021719157696, + 0.02523287758231163, + -0.008629673160612583, + -0.014499276876449585, + 0.0023909900337457657, + -0.003507141722366214, + 0.00865820050239563, + -0.018329139798879623, + 0.016574677079916, + -0.008158963173627853, + 0.013022961094975471, + -0.017401983961462975, + -0.014663311652839184, + -0.02335003949701786, + -0.010341343469917774, + 0.00922162551432848, + -0.01750183291733265, + -0.014820215292274952, + -0.016061175614595413, + -0.021495729684829712, + -0.004828337579965591, + 0.0032539572566747665, + 0.0017607029294595122, + 0.009335736744105816, + -0.0029098400846123695, + 0.008451374247670174, + 0.009984745644032955, + -0.008943479508161545, + 0.009706598706543446, + -0.0045751528814435005, + -0.031922657042741776, + 0.006604196038097143, + 0.01827208325266838, + 0.04327673837542534, + 0.024804960936307907, + 0.010548170655965805, + -0.009164569899439812, + -0.01394298393279314, + -0.023307248950004578, + 0.00939992442727089, + -0.020211977884173393, + 0.0013907323591411114, + -0.0028153415769338608, + 0.010861977003514767, + -0.0003597182803787291, + -0.010305684059858322, + 0.0012784040300175548, + -0.00809477549046278, + 0.016489094123244286, + -0.0006993779097683728, + 0.0065792337991297245, + -0.009007667191326618, + 0.00808051135390997, + -0.0007920934003777802, + -0.003227212466299534, + -0.01309428084641695, + -0.01213146559894085, + 0.013593517243862152, + 0.0035160568077117205, + -0.0007738177664577961, + -0.026217088103294373, + 0.023478414863348007, + -0.023007705807685852, + 0.0031665905844420195, + -0.015276660211384296, + -0.012773342430591583, + 0.013393823057413101, + -0.007395843509584665, + 0.01618955098092556, + -0.007360183633863926, + 0.008472769521176815, + 0.00024426967138424516, + 0.010205836035311222, + -0.039653703570365906, + -0.01024862751364708, + 0.01093329582363367, + -0.0007065098616294563, + -0.03009687550365925, + 0.0019559403881430626, + -0.014848742634057999, + -0.0034964438527822495, + -0.040366899222135544, + -0.0041793291456997395, + -0.008536957204341888, + 0.007124829106032848, + -0.011361214332282543, + 0.007816629484295845, + 0.00819462351500988, + 0.012930245138704777, + 0.0026370426639914513, + -0.012295500375330448, + -0.021025020629167557, + -0.0008371139410883188, + 0.0017125621670857072, + -0.025889018550515175, + -0.011639360338449478, + 0.012395348399877548, + 0.002892010146752, + 0.00989202968776226, + 0.018671473488211632, + -0.022679636254906654, + -0.017473304644227028, + -0.003122015856206417, + 0.018300611525774002, + 0.0007617825758643448, + 0.00865820050239563, + -0.017002595588564873, + -0.010483982972800732, + -0.007303128018975258, + -0.0035303207114338875, + -0.01658894121646881, + -0.025660796090960503, + 0.002062919782474637, + 0.0031594587489962578, + 0.0045287953689694405, + -0.004600114654749632, + -0.0036105553153902292, + -0.0035160568077117205, + -0.004214989021420479, + 0.0012784040300175548, + -0.008594012819230556, + -0.0029187549371272326, + -0.013372426852583885, + -0.028171246871352196, + 0.008173227310180664, + -0.0015654654707759619, + 0.02073974348604679, + 0.0020807497203350067, + -0.021781008690595627, + -0.005188501439988613, + -0.004949580878019333, + -0.0001989148440770805, + 0.027358202263712883, + 0.015590466558933258, + 0.0032717871945351362, + -0.021410146728157997, + -0.009078986011445522, + 0.01805812492966652, + -0.012366820126771927, + -0.0018275650218129158, + 0.007035679649561644, + 0.005013768561184406, + 0.0069393981248140335, + -0.028741803020238876, + 0.024334250018000603, + -0.024862015619874, + 0.005559363402426243, + 0.0038405610248446465, + -0.0006124571664258838, + 0.05220595374703407, + 0.017031121999025345, + 0.017073914408683777, + 0.01410701870918274, + -0.004243516828864813, + 0.029440734535455704, + 0.01753035932779312, + -0.0004840818583033979, + -0.014805951155722141, + -0.004386155866086483, + 0.014057095162570477, + 0.013814608566462994, + -0.00177585834171623, + 0.006172712426632643, + 0.000723002536688, + -0.007745309732854366, + 0.012587911449372768, + 0.0025764210149645805, + 0.004874695558100939, + -0.0049424488097429276, + 0.012366820126771927, + 0.010334211401641369, + -0.006425896659493446, + -0.009100382216274738, + -0.0066006300039589405, + 0.040195733308792114, + 0.01788695901632309, + -0.005309744738042355, + 0.008315866813063622, + -0.015932800248265266, + -0.01553341094404459, + 0.003983200062066317, + 0.0006441052537411451, + 0.010776393115520477, + -0.009143173694610596, + -0.0002870614407584071, + -0.009628147818148136, + 0.009756522253155708, + -0.001018978888168931, + 0.010519642382860184, + -0.011254234239459038, + 0.02014065720140934, + -0.016874220222234726, + -0.028499316424131393, + 0.0012445271713659167, + 0.008522693067789078, + 0.005648513324558735, + 0.012202785350382328, + 0.010469718836247921, + -0.01714523509144783, + 0.007467163261026144, + 0.00809477549046278, + 0.007673989981412888, + 0.004475305322557688, + 0.004075915552675724, + -0.018371932208538055, + -0.01335103064775467, + 0.0075884065590798855, + 0.0020878815557807684, + 0.0159755926579237, + 0.0041793291456997395, + 0.008964874781668186, + -0.014427957125008106, + 0.007816629484295845, + 0.014820215292274952, + 0.0177015271037817, + 0.016146760433912277, + 0.005095785949379206, + -0.018215028569102287, + 0.016474829986691475, + -0.016046911478042603, + 0.017459040507674217, + -0.004863997455686331, + 0.01262357085943222, + 0.020012281835079193, + 0.01753035932779312, + -0.0012757295044139028, + 0.007538483012467623, + -0.020982230082154274, + -0.005488044116646051, + -0.01998375542461872, + -0.000993125606328249, + -0.020654158666729927, + -0.0024551774840801954, + -0.007930740714073181, + 0.01753035932779312, + -0.0042470828630030155, + 0.010847712866961956 + ], + "30bea738-adb3-49ce-b4c5-2cb02c62296d": [ + -0.017502179369330406, + -0.019729994237422943, + -0.008874856866896152, + 0.03480050340294838, + 0.002233274979516864, + 0.02299163118004799, + -0.03078170120716095, + 0.025073837488889694, + -0.009617461822926998, + 0.04272162541747093, + 0.02204517275094986, + 0.0025081117637455463, + 0.01109539158642292, + -0.010571199469268322, + -0.0017236442072317004, + -0.002475349698215723, + -0.04100343957543373, + 0.004699524492025375, + 0.01984648033976555, + -0.02676289901137352, + 0.04406122490763664, + -0.02958771027624607, + -0.03596537560224533, + 0.021783078089356422, + 0.026704655960202217, + -0.018055493012070656, + -0.014429832808673382, + -0.000559228821657598, + -0.018841778859496117, + -0.011109951883554459, + 0.03905228152871132, + 0.006832693237811327, + 0.0005956310196779668, + -0.0011339285410940647, + -0.004561196081340313, + -0.03579064458608627, + -0.0010374627308920026, + 0.016482917591929436, + -0.011590461246669292, + -0.018070053309202194, + -0.007928399369120598, + 0.037829168140888214, + 0.001032002386637032, + -0.03442192077636719, + -0.028510205447673798, + 0.016977986320853233, + -0.011750631034374237, + -0.0006211125873960555, + 0.0067453281953930855, + -0.025612588971853256, + -0.00594447972252965, + -0.003605638165026903, + 0.004808730911463499, + 0.030257510021328926, + 0.011153634637594223, + -0.041440267115831375, + -0.005012582987546921, + 0.04493487998843193, + 0.013294083997607231, + -0.032470762729644775, + 0.013439692556858063, + -0.0274035781621933, + -0.014182297512888908, + -0.017968127503991127, + 0.03299495577812195, + -0.012981025502085686, + -0.013592582195997238, + -0.006563317030668259, + -0.02872861735522747, + -0.010214458219707012, + -0.012012726627290249, + -0.020967667922377586, + -0.023428456857800484, + -0.024593327194452286, + 0.032703738659620285, + -0.011750631034374237, + 0.06074799597263336, + 0.023195482790470123, + 0.0016481096390634775, + -0.032150425016880035, + -0.020166819915175438, + 0.02572907693684101, + -0.03911052644252777, + -0.025408737361431122, + 0.06575693935155869, + -0.01825934462249279, + -0.055302225053310394, + -0.04339142516255379, + 0.005660542286932468, + -0.017254643142223358, + 0.024433158338069916, + 0.013097512535750866, + 0.023020751774311066, + -0.0106294434517622, + -0.04085783287882805, + 0.004728646017611027, + 0.01417501736432314, + 0.014422552660107613, + 0.007382366340607405, + -0.029544027522206306, + -0.01959894597530365, + -0.014939463697373867, + -0.012114652432501316, + -0.020050331950187683, + 0.03258725255727768, + 0.03395597264170647, + 0.010833295062184334, + -0.006614279933273792, + -0.018667049705982208, + 0.030519606545567513, + -0.0240836963057518, + -0.05605939030647278, + 0.006090088281780481, + -0.02652992494404316, + -0.04094519838690758, + -0.056729190051555634, + 0.0002326328249182552, + -0.000821779714897275, + 0.002522672526538372, + -0.021142398938536644, + 0.0571368969976902, + -0.0017263743793591857, + 0.0016035169828683138, + 0.017109034582972527, + -0.0033581031020730734, + 0.019861040636897087, + 0.017050791531801224, + 0.03249988704919815, + 0.04636184498667717, + 0.004397386219352484, + -0.04438156634569168, + 0.002094946801662445, + 0.03777092322707176, + 0.02510295808315277, + -0.00185469223652035, + 0.006767169572412968, + 0.017604105174541473, + 0.017676908522844315, + -0.023282848298549652, + 0.027680234983563423, + -0.02565627172589302, + 0.01927860639989376, + 0.01670132949948311, + -0.0026992233470082283, + 0.002484450349584222, + -0.033577390015125275, + -0.0565253384411335, + 0.06022380292415619, + 0.009464572183787823, + 0.04542994871735573, + -0.06068975105881691, + -0.028364595025777817, + -0.04024627432227135, + 0.007156672887504101, + 0.0002814345352817327, + 0.004492031875997782, + -0.012092811055481434, + 0.02596205100417137, + 0.0470607653260231, + 0.023908967152237892, + 0.02661729045212269, + -0.01897282712161541, + 0.002828451106324792, + 0.03139325976371765, + 0.026631850749254227, + -0.008845735341310501, + 0.04391561821103096, + 0.035936255007982254, + -0.02093854732811451, + 0.029777001589536667, + 0.00928256195038557, + -0.02085118182003498, + 0.01011253148317337, + -0.019016509875655174, + 0.010971623472869396, + -0.021943246945738792, + 0.024374915286898613, + 0.023078996688127518, + 0.05404999107122421, + -0.01770603097975254, + -0.02747638151049614, + -0.015157876536250114, + -0.034043338149785995, + 0.0014406171394512057, + 0.06622288376092911, + 0.028947031125426292, + 0.018128296360373497, + 0.019191240891814232, + -0.011423011310398579, + -0.0013487015385180712, + 0.05629236623644829, + -0.025452420115470886, + 0.021288007497787476, + 0.01429150439798832, + -0.021127838641405106, + -0.010527516715228558, + 0.01777883619070053, + -0.019322289153933525, + -0.005700584966689348, + 0.04982733353972435, + -0.0013705429155379534, + -0.03165535628795624, + -0.01967174932360649, + 0.019001949578523636, + -0.057894062250852585, + -0.004233575891703367, + -0.015012267976999283, + 0.016191698610782623, + 0.008394347503781319, + -0.041906215250492096, + 0.03124764934182167, + -0.0431293286383152, + 0.011750631034374237, + 0.005980881862342358, + -0.0026245987974107265, + -0.0005433028563857079, + 0.0026209584902971983, + 0.008037606254220009, + 0.02055996283888817, + -0.04400297999382019, + -0.0011266481596976519, + -0.020923985168337822, + 0.016861500218510628, + -0.040653977543115616, + -0.03445104509592056, + 0.009311683475971222, + -0.0240836963057518, + 0.012187457643449306, + -0.022525683045387268, + -0.02785496413707733, + 0.029223687946796417, + 0.004113448783755302, + 0.004532074090093374, + -0.011262841522693634, + 0.03777092322707176, + 0.05326370149850845, + 0.03116028569638729, + -0.005795230623334646, + 0.01606065221130848, + -0.008809332735836506, + -0.006421348545700312, + -0.002644619904458523, + -0.023748796433210373, + -0.003183372551575303, + 0.00737872626632452, + -0.016322746872901917, + -0.017618665471673012, + 0.025525223463773727, + 0.02304987423121929, + -0.01451719831675291, + 0.018987389281392097, + -0.0014360668137669563, + 0.05075922980904579, + 0.005496732424944639, + -0.01598784700036049, + 0.02810250036418438, + 0.02974787913262844, + -0.025088397786021233, + -0.024374915286898613, + -0.012529637664556503, + -0.010869697667658329, + 0.030199266970157623, + 0.02304987423121929, + 0.03739234060049057, + 0.06197110936045647, + -0.00617745378986001, + 0.028932470828294754, + 0.009748510085046291, + 0.006956460885703564, + 0.023734236136078835, + 0.029325613752007484, + -0.024986471980810165, + -0.0030068219639360905, + -0.006286660209298134, + 0.0009309863089583814, + 0.0021095075644552708, + -0.029966292902827263, + -0.032616373151540756, + 0.0229770690202713, + 0.001242225174792111, + 0.010702247731387615, + -0.031684476882219315, + 0.003603817895054817, + -0.020254185423254967, + 0.02102591097354889, + 0.0335482694208622, + -0.037421464920043945, + -0.009384487755596638, + -0.05658358335494995, + -0.022482000291347504, + -0.0024025454185903072, + -0.020137697458267212, + -0.00920975673943758, + 0.020967667922377586, + 0.00896950252354145, + 0.005951759871095419, + -0.03022838942706585, + 0.008467151783406734, + 0.007891997694969177, + -0.016570283100008965, + -0.018536001443862915, + 0.013206718489527702, + -0.006530554965138435, + -0.032470762729644775, + 0.02304987423121929, + -0.00753525597974658, + 0.03710112348198891, + 0.014014847576618195, + -0.03500435873866081, + 0.01132836565375328, + 0.008539956994354725, + -0.029398418962955475, + -0.010876977816224098, + -0.022554803639650345, + 0.028539326041936874, + 0.0029194566886872053, + -0.019336849451065063, + 0.02086574211716652, + -0.005147271323949099, + 0.0025863763876259327, + -0.00572242634370923, + -0.014437112957239151, + -0.03241252154111862, + 0.03398509696125984, + 0.056554462760686874, + -0.0771726667881012, + 0.004794170148670673, + -0.014626405201852322, + -0.0003050959494430572, + -0.012413150630891323, + 0.0033508227206766605, + -0.011721509508788586, + -0.003873194335028529, + 0.007921119220554829, + -0.05107957124710083, + -0.0026974030770361423, + -0.04146938771009445, + -0.03142238035798073, + -0.025598028674721718, + -0.024127379059791565, + -0.019628066569566727, + 0.0053147217258811, + 0.017589544877409935, + -0.012267542071640491, + -0.03605274111032486, + -0.019628066569566727, + 0.047584958374500275, + 0.026195025071501732, + -0.01066584512591362, + 0.017196400091052055, + 0.0009305312996730208, + -0.004976180847734213, + 0.010716808028519154, + -0.026893947273492813, + 0.014655526727437973, + 0.0016462896019220352, + 0.01873985305428505, + 0.026165902614593506, + 0.04146938771009445, + -0.0148375378921628, + 0.00430638063699007, + -0.029718758538365364, + -0.007058387156575918, + 0.0032561770640313625, + -0.029689636081457138, + 0.0033690237905830145, + 0.009828594513237476, + 0.00024093707907013595, + -0.01817197911441326, + 0.014218700118362904, + -0.011437571607530117, + -0.003587437095120549, + -0.021666590124368668, + -0.0019329569768160582, + 0.006672523450106382, + -0.02840827777981758, + 0.03209218010306358, + -0.0006939169834367931, + -0.023675993084907532, + 0.03768355771899223, + -0.005540415178984404, + -0.008671004325151443, + 0.02753462642431259, + -0.007018344476819038, + 0.03351914882659912, + 0.004037004429847002, + -0.0028521125204861164, + -0.05052625760436058, + 0.0005701495101675391, + -0.01464096549898386, + -0.009653864428400993, + -0.007211276330053806, + -0.0034909711685031652, + 0.008962222374975681, + 0.0059699611738324165, + -0.0030232027638703585, + 0.013235840946435928, + 0.012820855714380741, + 0.0026828423142433167, + -0.015361729077994823, + 0.011648704297840595, + -0.017123596742749214, + -0.02669009380042553, + -0.013439692556858063, + 0.018827218562364578, + -0.028131620958447456, + 0.007739108055830002, + 0.013861958868801594, + 0.0313350148499012, + 0.0035146325826644897, + 0.03669342026114464, + 0.010097971186041832, + 0.013760032132267952, + -0.015536460094153881, + 0.024141941219568253, + 0.002457148628309369, + 0.009391767904162407, + 0.02622414566576481, + -0.06791194528341293, + 0.011830715462565422, + 0.05090484023094177, + 0.024374915286898613, + -0.026631850749254227, + 0.0022787777706980705, + 0.02093854732811451, + 0.01881265826523304, + 0.03567415848374367, + 0.03975120559334755, + -0.017516739666461945, + 0.007491573225706816, + -0.00397512037307024, + 0.02810250036418438, + 0.005700584966689348, + 0.0015243422240018845, + -0.016497477889060974, + -0.013454253785312176, + -0.015842238441109657, + -0.02079293690621853, + -0.003851352958008647, + -0.008634602651000023, + -0.013104792684316635, + 0.021928686648607254, + 0.03922701254487038, + -0.007520694751292467, + -0.01645379513502121, + 0.006625200621783733, + -0.026471681892871857, + 0.026238707825541496, + -0.0035328336525708437, + -0.031451500952243805, + -0.0008463512058369815, + 0.044585417956113815, + -0.016861500218510628, + -0.003909596707671881, + -0.0062684593722224236, + -0.011160914786159992, + 0.039401743561029434, + -0.009675704874098301, + 0.006548756267875433, + -0.04138202220201492, + -0.01282813586294651, + 0.004579396918416023, + 0.029704196378588676, + -0.02227814681828022, + -0.001862882636487484, + -0.0204580370336771, + 0.010702247731387615, + 0.046798672527074814, + 0.00303958379663527, + -0.0042190151289105415, + 0.013090231455862522, + -0.01212193351238966, + -0.03713024780154228, + -0.0042808991856873035, + 0.004259057808667421, + -0.042925477027893066, + -0.01227482222020626, + 0.006024564616382122, + 0.01598784700036049, + -0.011787032708525658, + 0.010935221798717976, + 0.015798555687069893, + 0.002502651419490576, + 0.014699209481477737, + -0.016075212508440018, + 0.0009610181441530585, + -0.013075671158730984, + -0.02738901600241661, + -0.04650745168328285, + 0.0015689348801970482, + 0.017429374158382416, + 0.03823687136173248, + 0.014240541495382786, + 0.036868151277303696, + 0.00548945227637887, + -0.018128296360373497, + 0.032004814594984055, + -0.01148853451013565, + 0.010352786630392075, + -0.018201101571321487, + -0.002655540592968464, + -0.04834212362766266, + 0.0025481542106717825, + -0.01337416935712099, + -0.004237216431647539, + 0.0509922057390213, + -0.0037821887526661158, + -0.00011267619265709072, + -0.007462451234459877, + -0.007688145153224468, + -0.03911052644252777, + 0.03864457830786705, + -0.04394473880529404, + -0.022307269275188446, + 0.008328823372721672, + -0.004823291674256325, + -0.01613345555961132, + -0.01192536111921072, + 0.02361774817109108, + -0.027767600491642952, + 0.0066361213102936745, + -0.01463368535041809, + -0.004095247946679592, + -0.01007612980902195, + -0.016715891659259796, + 0.005726066417992115, + -0.012151055037975311, + -0.01303198840469122, + 0.02134625054895878, + -0.005347483325749636, + -0.024855423718690872, + 0.01968631148338318, + -0.0007958431378938258, + 0.006497792899608612, + 0.03535381704568863, + -0.023952648043632507, + -0.005343843251466751, + -0.021550104022026062, + -0.0032052139285951853, + -0.026486242190003395, + -0.006996503099799156, + 0.013810995034873486, + -0.02872861735522747, + -0.018157418817281723, + -0.013002866879105568, + 0.015638386830687523, + -0.01920580118894577, + 0.009246159344911575, + -0.004058845341205597, + 0.0026427998673170805, + -0.04665306210517883, + 0.04036276042461395, + -0.010512955486774445, + -0.0018000889103859663, + 0.0011029867455363274, + -0.02858300879597664, + 0.005478531587868929, + 0.0016781415324658155, + 0.0181865394115448, + -0.04205182194709778, + -0.0033144205808639526, + 0.01801181025803089, + 0.003478230442851782, + 0.008445310406386852, + -0.02290426567196846, + 0.005467610899358988, + -0.013789153657853603, + -0.012937342748045921, + -0.0003949638921767473, + 0.014502637088298798, + 0.012136493809521198, + 0.012012726627290249, + 0.02622414566576481, + -0.00753525597974658, + -0.0285684484988451, + 0.03232515603303909, + 0.003642040304839611, + -0.04307108372449875, + -0.04071222245693207, + 0.012900940142571926, + -0.0009591980488039553, + -0.023078996688127518, + 0.01290822122246027, + -0.01661396585404873, + 0.007273159921169281, + -0.0048997364938259125, + -0.005322001874446869, + -0.03086906671524048, + -0.0065887984819710255, + 0.010469273664057255, + -0.0012085530906915665, + 0.011990885250270367, + -0.008306982927024364, + -0.0002393444738117978, + -0.009187915362417698, + 0.012981025502085686, + 0.018230222165584564, + 0.02510295808315277, + 0.010563919320702553, + 0.017458496615290642, + 0.04941963031888008, + 0.0425177738070488, + 0.0012731669703498483, + -0.031276773661375046, + -0.02109871618449688, + 0.02951490506529808, + 0.005034424364566803, + -0.00736052542924881, + 0.028073377907276154, + 0.008095849305391312, + 0.034276314079761505, + -0.021899564191699028, + 0.02007945440709591, + -0.013053829781711102, + 0.03116028569638729, + 0.057195138186216354, + 0.017516739666461945, + 0.020341550931334496, + 0.037334099411964417, + -0.02149186097085476, + 0.026267828419804573, + -0.005536775104701519, + 0.003125129034742713, + -0.010920660570263863, + -0.009690266102552414, + 0.04714813083410263, + -0.040566615760326385, + -0.03008277900516987, + -0.0013741831062361598, + 0.001080235349945724, + -0.016482917591929436, + 0.015361729077994823, + -0.03037399798631668, + -0.011401169933378696, + 0.025248566642403603, + -0.010170775465667248, + 0.022394634783267975, + -0.011088110506534576, + -0.016745012253522873, + 0.012966464273631573, + -0.03943086415529251, + -0.03290759027004242, + 0.024345792829990387, + 0.00737872626632452, + -0.012027287855744362, + 0.007222197018563747, + -0.009180635213851929, + 0.021142398938536644, + 0.008809332735836506, + 0.007109350059181452, + 0.011859836988151073, + 0.009602900594472885, + -0.022059734910726547, + 0.027811283245682716, + 0.01132836565375328, + -0.023748796433210373, + -0.0067780897952616215, + 0.01959894597530365, + 0.0018856340320780873, + -0.008488993160426617, + 0.012580600567162037, + -0.03337353840470314, + 0.03541206195950508, + 0.007557097356766462, + 0.030636092647910118, + 0.025685394182801247, + -0.030956432223320007, + 0.02133169025182724, + 0.007240397855639458, + 0.028146183118224144, + -0.006880016066133976, + -0.023413896560668945, + -0.011670545674860477, + 0.027738478034734726, + 0.02140449546277523, + -0.004426507744938135, + 0.00594447972252965, + 0.009311683475971222, + 0.007935680449008942, + 0.022307269275188446, + -0.021826760843396187, + -0.028612131252884865, + -0.04633272439241409, + 0.02204517275094986, + -0.02565627172589302, + -0.010119812563061714, + -0.02345757931470871, + -0.015318046323955059, + -0.024666132405400276, + 0.017181839793920517, + 0.007324122823774815, + 0.04502224177122116, + -0.06255354732275009, + -0.005995442625135183, + 0.0063012209720909595, + 0.013213999569416046, + -0.005675103515386581, + -0.011714228428900242, + 0.005318361800163984, + -0.006581518333405256, + -0.025292249396443367, + -0.005584097933024168, + -0.013235840946435928, + -0.0026209584902971983, + 0.01460456382483244, + 0.005838913377374411, + -0.028364595025777817, + -0.03078170120716095, + -0.00040065174107439816, + -0.004954339470714331, + 0.01629362627863884, + 0.03721760958433151, + -0.026719216257333755, + 0.0013741831062361598, + 0.0058753155171871185, + -0.01031638402491808, + -0.02677745930850506, + 0.009930520318448544, + -0.0013523418456315994, + 0.014677368104457855, + -0.004484751261770725, + 0.03185920789837837, + -0.02369055338203907, + -0.02769479528069496, + -0.04761407896876335, + 0.06226232647895813, + -0.005831632763147354, + -0.01464824564754963, + -0.0001806459331419319, + 0.00206582504324615, + 0.016963426023721695, + -3.45252119586803e-5, + 0.042401283979415894, + -0.0066834441386163235, + 0.023428456857800484, + -0.030490484088659286, + -0.009981484152376652, + -0.00036447704769670963, + 0.006705285515636206, + -0.015871360898017883, + -0.014699209481477737, + -0.0154199730604887, + 0.010068848729133606, + -0.01575487293303013, + -0.006341263651847839, + -0.016104334965348244, + -0.005198234226554632, + -0.007415128406137228, + -0.033490024507045746, + -0.0008918539388105273, + 0.0308399461209774, + -0.008765649981796741, + 0.03724673390388489, + -0.005726066417992115, + 0.012886379845440388, + -0.005809791386127472, + -0.00964658334851265, + 0.02029786817729473, + -0.015128755010664463, + 0.05739899352192879, + 0.013396010734140873, + -0.010003325529396534, + -0.006228416692465544, + -0.04461453855037689, + -0.007739108055830002, + 0.008532675914466381, + 0.006716206204146147, + 0.0028248107992112637, + 0.024884546175599098, + 0.021142398938536644, + 0.03509172424674034, + -0.0006629751296713948, + 0.030577849596738815, + 0.021200641989707947, + -0.03762531653046608, + -0.013716349378228188, + -0.00829970184713602, + 0.006661602761596441, + 0.0005646891659125686, + -0.016570283100008965, + -0.04205182194709778, + -0.048283882439136505, + 0.04283811151981354, + -0.007254959084093571, + 0.029704196378588676, + -0.008001203648746014, + 0.037974778562784195, + 0.004826932214200497, + -0.002064004773274064, + -0.01850687898695469, + -0.011379328556358814, + 0.0010947962291538715, + 0.014852098189294338, + 0.008248738944530487, + -0.008248738944530487, + 0.006097368896007538, + 0.0004736836417578161, + -0.000425450736656785, + -0.024360353127121925, + -0.019715432077646255, + 0.004233575891703367, + 0.0004083871899638325, + 0.0425177738070488, + 0.006141051650047302, + 0.010534796863794327, + 0.01370178908109665, + -0.006057326216250658, + -0.0226712916046381, + -0.027170604094862938, + 0.03602362051606178, + 0.005558616016060114, + 0.028947031125426292, + 0.015376290306448936, + 0.0043646241538226604, + 0.001996660837903619, + -0.013133914209902287, + 0.013454253785312176, + 0.011852556839585304, + 0.02354494482278824, + 0.012806294485926628, + -0.02685026451945305, + -0.019642628729343414, + 0.01675957441329956, + 0.010600320994853973, + -0.005260118283331394, + -0.0358780100941658, + -0.0004379639867693186, + -0.00987955741584301, + 0.012347626499831676, + 0.013417852111160755, + -0.02896159142255783, + -0.023253725841641426, + -0.004299100022763014, + 0.035936255007982254, + 0.01157590001821518, + 0.030519606545567513, + -0.049070168286561966, + 0.00135780218988657, + -0.05550607666373253, + 0.029180005192756653, + -0.009792191907763481, + -0.03142238035798073, + 0.013905641622841358, + -0.014145895838737488, + -0.005991802550852299, + 0.02833547443151474, + -0.005536775104701519, + 0.02454964444041252, + 0.03180096298456192, + 0.022846022620797157, + 0.03730497509241104, + -0.012012726627290249, + 0.01856512390077114, + 0.02369055338203907, + -0.033169686794281006, + 0.0035328336525708437, + -0.0006693454924970865, + 0.019322289153933525, + 0.00932624377310276, + -0.01888546161353588, + 0.012034568004310131, + 0.005125429946929216, + -0.04132378101348877, + -0.015594703145325184, + -0.013825556263327599, + -0.016482917591929436, + 0.01801181025803089, + -0.00046253547770902514, + 0.01370178908109665, + 0.004197173751890659, + -0.018681610003113747, + -0.008889418095350266, + 0.02692306786775589, + -0.007928399369120598, + 0.005045345053076744, + -0.027126921340823174, + 0.034188948571681976, + -0.023792479187250137, + -0.03925613313913345, + -0.0018492318922653794, + -0.011750631034374237, + -0.020050331950187683, + 0.0067926510237157345, + 0.0010574839543551207, + -0.05862210690975189, + 0.006967381574213505, + 0.012456833384931087, + -0.0033289813436567783, + -0.012070970609784126, + -0.0015061411540955305, + 0.0027083237655460835, + -0.009005905129015446, + -0.01487393956631422, + -0.017443934455513954, + -0.01872529275715351, + 0.0017163638258352876, + 0.03846984729170799, + -0.01888546161353588, + -0.013869239017367363, + 0.028772300109267235, + -0.000769451551605016, + -0.00777551019564271, + -0.012689807452261448, + -0.001834671013057232, + 0.023253725841641426, + -0.019322289153933525, + 0.0187980979681015, + -0.006603359244763851, + 0.014131334610283375, + 0.002762927208095789, + 0.021506421267986298, + 0.021841321140527725, + 0.008823893964290619, + -0.014560881070792675, + 0.042867232114076614, + 0.024040013551712036, + -0.02370511367917061, + -0.004666762426495552, + 0.005784309934824705, + -0.020341550931334496, + 0.025860125198960304, + 0.0012667966075241566, + 0.010578479617834091, + -0.0027301651425659657, + 0.00042249305988661945, + -0.008525395765900612, + -0.004550275392830372, + 0.0018146497895941138, + 0.0029940810054540634, + 0.014240541495382786, + -0.006155612412840128, + -0.007986643351614475, + 0.011117232032120228, + -0.013709069229662418, + 0.036955516785383224, + -0.02431667037308216, + -0.004579396918416023, + -0.0057187858037650585, + -0.03375212103128433, + 0.007054746616631746, + 0.00940632913261652, + -0.02079293690621853, + 0.026952190324664116, + -0.026078537106513977, + 0.008241458795964718, + 0.003844072576612234, + -0.003652960993349552, + 0.038062144070863724, + -0.028932470828294754, + -0.032558128237724304, + 0.014597282744944096, + 0.014364308677613735, + -0.014189578592777252, + 0.013192158192396164, + 0.03547030687332153, + 0.04382825270295143, + -0.0101998969912529, + 0.008831174112856388, + 0.004295459948480129, + 0.0010092511074617505, + 0.009617461822926998, + -0.0101998969912529, + 0.007018344476819038, + 0.012536918744444847, + -0.006519634276628494, + -0.004797810222953558, + -0.026952190324664116, + 0.03139325976371765, + -0.011845276691019535, + 0.005700584966689348, + -0.01913299784064293, + -0.015521898865699768, + -0.01381827611476183, + -0.013104792684316635, + -0.03022838942706585, + -0.025758197531104088, + -0.030432241037487984, + 0.002266037045046687, + -0.005005302838981152, + 0.01575487293303013, + 0.030432241037487984, + 0.012129213660955429, + -0.00395691953599453, + -0.04446892812848091, + -0.001965718809515238, + 0.0004620804393198341, + -0.04639096558094025, + 0.0043027400970458984, + 0.0032361557241529226, + 0.013548899441957474, + 0.0015070511726662517, + -0.008139532059431076, + -0.019861040636897087, + 0.005853474140167236, + 0.0007740018190816045, + 0.021040473133325577, + 0.0017937185475602746, + -0.0020130418706685305, + -0.017283765599131584, + -0.0324416421353817, + 0.004714085254818201, + -0.020661890506744385, + -0.02495734952390194, + 0.030956432223320007, + 0.016555720940232277, + 0.014786574058234692, + -0.0072185564786195755, + -0.012653405778110027, + 0.013112072832882404, + 0.03177184239029884, + -0.021899564191699028, + -0.03771268203854561, + 0.002167751081287861, + 0.0003221594961360097, + -0.014568161219358444, + 0.011408450081944466, + 0.019890163093805313, + -0.02440403588116169, + -0.00018007714243140072, + 0.024462278932332993, + -0.003927797544747591, + -0.016584843397140503, + -0.015288924798369408, + 0.002266037045046687, + -0.0026427998673170805, + 0.01604609005153179, + -0.0007708166376687586, + -0.011175476014614105, + -0.006676163990050554, + -0.011626862920820713, + 0.012100092135369778, + -0.019322289153933525, + 0.01740025170147419, + -0.010767770931124687, + 0.026559047400951385, + 0.0032816585153341293, + -0.019715432077646255, + -0.07134831696748734, + -0.03485874831676483, + 0.009821314364671707, + 0.02622414566576481, + 0.01748761720955372, + -0.029937170445919037, + -0.003718484891578555, + 0.0229770690202713, + 0.04519697278738022, + -0.012857257388532162, + 0.012318504974246025, + -0.01259516179561615, + -0.006712566129863262, + 0.016424672678112984, + 0.02055996283888817, + 0.0061956546269357204, + 0.009013185277581215, + -0.017924444749951363, + 0.022627608850598335, + -0.03392685204744339, + -0.013410571031272411, + -0.010374628007411957, + -0.006031844764947891, + 0.010039727203547955, + -0.021055033430457115, + 0.030636092647910118, + 6.990360270719975e-5, + 0.006086448207497597, + -0.0020712853875011206, + -0.029733318835496902, + 0.005281959660351276, + 0.008984063751995564, + 0.004153491463512182, + 0.006821772549301386, + -0.010811453685164452, + -0.008277860470116138, + -0.001740025239996612, + -0.02029786817729473, + 0.00905686803162098, + 0.018477758392691612, + 0.004892455879598856, + -0.007506133988499641, + -0.01827390491962433, + 0.028058817610144615, + 0.020909424871206284, + -0.008954941295087337, + -0.0106294434517622, + -0.06400962918996811, + 0.0068399738520383835, + -0.00770998653024435, + 0.020967667922377586, + -0.010258140973746777, + 0.012799014337360859, + -0.012289383448660374, + 0.01065856497734785, + 0.0006798111135140061, + 0.007313202600926161, + 0.004393745679408312, + 0.0024225665256381035, + 0.012500516138970852, + 0.039780326187610626, + 0.011401169933378696, + -0.0022733174264431, + -0.019948406144976616, + -0.016148017719388008, + -0.0007544356631115079, + 0.03212130442261696, + 0.03675166144967079, + 0.02306443452835083, + -0.006490512751042843, + 0.012143774889409542, + -0.008467151783406734, + -0.005656902212649584, + 0.017691470682621002, + 0.0168323777616024, + -0.0018801736878231168, + 0.005955400411039591, + 0.012682527303695679, + 0.0023661430459469557, + -0.004874255042523146, + -0.004914297256618738, + -0.00401516305282712, + 0.0024698893539607525, + 0.021506421267986298, + -0.03989681228995323, + -0.00708750868216157, + 0.006439549382776022, + 0.008423469960689545, + -0.02133169025182724, + 0.02197236940264702, + 0.026704655960202217, + 0.0005901706754229963, + 0.02724340744316578, + 0.017283765599131584, + -0.021200641989707947, + 0.01881265826523304, + 0.007138471584767103, + -0.019322289153933525, + -0.017880761995911598, + -0.022219903767108917, + -0.017356570810079575, + -0.0013932943111285567, + 0.019424214959144592, + -0.01967174932360649, + -0.00861276127398014, + -0.012609723024070263, + -0.007189434953033924, + -0.004917937330901623, + 0.008510834537446499, + -0.02069101110100746, + -0.024069136008620262, + -0.021681152284145355, + -0.014007567428052425, + 0.022467439994215965, + -0.028087938204407692, + 0.003037763759493828, + 0.012347626499831676, + 0.012012726627290249, + 0.024899106472730637, + -0.021783078089356422, + -0.010374628007411957, + 0.012252980843186378, + -0.003192473202943802, + -0.03392685204744339, + -0.0026245987974107265, + 0.003854993265122175, + -0.023486699908971786, + 0.01716727763414383, + 0.019933845847845078, + 0.010178055614233017, + -0.00607916759327054, + -0.023675993084907532, + -0.0008613670943304896, + -0.009617461822926998, + -0.011867118068039417, + 0.005980881862342358, + 0.0047432067804038525, + -0.004288179334253073, + 0.03346090391278267, + -0.014240541495382786, + -0.021986929699778557, + -0.026340633630752563, + -0.0238361619412899, + 0.012318504974246025, + -0.010352786630392075, + 0.0031506104860454798, + 0.0012940983287990093, + -0.02007945440709591, + 0.007447890471667051, + -0.022147100418806076, + -0.01951158046722412, + 0.0078046321868896484, + 0.02344301901757717, + 0.008285141550004482, + -0.01604609005153179, + -0.01763322576880455, + -0.018128296360373497, + 0.005008942913264036, + -0.0015643846709281206, + -0.026340633630752563, + -0.01582767814397812, + 0.0015252522425726056, + 0.005645981524139643, + -0.01109539158642292, + -0.0021641110070049763, + 0.005048985593020916, + 0.007364165503531694, + 0.012413150630891323, + -0.028233548626303673, + -0.019395092502236366, + -0.004346422851085663, + -0.0065414756536483765, + -0.041352901607751846, + -0.012282103300094604, + 0.00635946448892355, + -0.01432062592357397, + -0.026821142062544823, + -0.008226897567510605, + 0.028553886339068413, + -0.003905956167727709, + -0.03171359747648239, + 0.012617003172636032, + -0.005343843251466751, + 0.012566040270030499, + 0.006526914890855551, + 0.03031575307250023, + 0.008124971762299538, + 0.008802052587270737, + -0.0229188259691, + -0.00770998653024435, + -0.0042699784971773624, + 0.005948119796812534, + -0.023399336263537407, + 0.0015743952244520187, + -0.007615340873599052, + -0.010454712435603142, + 0.018084613606333733, + 0.03232515603303909, + -0.013396010734140873, + -0.0074187689460814, + 0.0017573162913322449, + -0.007051106542348862, + 0.014568161219358444, + 0.015099633485078812, + -0.014211419969797134, + -0.025146640837192535, + -0.03564503788948059, + 0.009835874661803246, + 0.022962508723139763, + -0.01772059127688408, + 0.025394175201654434, + 0.0037712680641561747, + -0.0043609836138784885, + 0.0068399738520383835, + -0.005500372499227524, + 0.006537835579365492, + 0.010367346927523613, + -0.018608804792165756, + -0.00995964277535677, + -0.041993580758571625, + 0.013912921771407127, + 0.0010019706096500158, + -0.007153032813221216, + 0.009457292035222054, + 0.023675993084907532, + 0.029645953327417374, + -0.0045539154671132565, + -0.06552396714687347, + 0.004848773125559092, + 0.035149965435266495, + -0.013891080394387245, + 0.00896950252354145, + -0.031218528747558594, + -0.03220866993069649, + -0.017342008650302887, + 0.009268000721931458, + 0.02344301901757717, + -0.01779339648783207, + 0.02321004308760166, + -3.33307652908843e-5, + -0.015783995389938354, + 0.006818132475018501, + -0.012085530906915665, + 0.005631420761346817, + 0.028990713879466057, + 0.019962968304753304, + 0.0021641110070049763, + -0.024971909821033478, + -0.012922781519591808, + 0.016512038186192513, + 0.014997707679867744, + -0.0067926510237157345, + 0.01306110993027687, + -0.0014515378279611468, + 0.002666461281478405, + -0.005802510771900415, + 0.021986929699778557, + -0.022176221013069153, + 0.03651868924498558, + -0.014473515562713146, + -0.028626691550016403, + 0.007615340873599052, + 0.0074224090203642845, + -0.020166819915175438, + 0.012114652432501316, + -0.01597328670322895, + 0.002761106938123703, + 0.014779293909668922, + 0.00771726667881012, + 0.009275280870497227, + 0.01575487293303013, + -0.009821314364671707, + -0.01693430356681347, + 0.010360066778957844, + -0.008554517291486263, + 0.0041716923005878925, + -0.004477470647543669, + -0.010760490782558918, + -0.01271164882928133, + -0.0215646643191576, + -0.02275865711271763, + 0.012325786054134369, + -0.0201522596180439, + -0.01086241751909256, + -0.004728646017611027, + -0.019700871780514717, + -0.0020676450803875923, + 0.0058134314604103565, + 0.029791561886668205, + -0.0036930034402757883, + 0.01475745253264904, + 0.016977986320853233, + 0.013432412408292294, + -0.0017618666170164943, + -0.010483833961188793, + -0.002018502214923501, + 0.0071239108219742775, + 0.0043173013255000114, + 0.006971021648496389, + 0.007305921986699104, + 0.022016052156686783, + -0.010607602074742317, + -0.011787032708525658, + 0.020414354279637337, + 0.0016007868107408285, + -0.00022512486611958593, + 0.011714228428900242, + -0.002721064491197467, + 0.01160502154380083, + 0.0005537684774026275, + 0.003336261725053191, + 0.0213171299546957, + -0.033723000437021255, + -0.004841492976993322, + 0.00407340656965971, + -0.011160914786159992, + -0.010134372860193253, + -0.0036911831703037024, + -0.0034545690286904573, + -0.0190456323325634, + -0.0039824009872972965, + 0.013810995034873486, + 0.013337766751646996, + 0.011721509508788586, + -0.02652992494404316, + -0.014495356939733028, + 0.005070826970040798, + 0.0090932697057724, + 0.0006361284758895636, + -0.023486699908971786, + -0.014539039693772793, + 0.020894864574074745, + -0.013628984801471233, + 0.015041389502584934, + 0.013978445902466774, + 0.00543120875954628, + 0.006013643927872181, + -0.005791590549051762, + -0.03704288229346275, + 0.002944938139989972, + 0.005860754754394293, + 0.013308645226061344, + -0.01951158046722412, + 0.02061820775270462, + 0.011583181098103523, + 0.029849804937839508, + 0.00042363061220385134, + -0.0008099490078166127, + 0.0061010089702904224, + -0.023472139611840248, + -0.007032905239611864, + -0.014182297512888908, + 0.015026829205453396, + -0.007160312961786985, + 0.029937170445919037, + 0.008248738944530487, + 0.00975579023361206, + 0.012209299020469189, + -2.4969634978333488e-5, + -0.004331862088292837, + -0.017997248098254204, + 0.0003899585863109678, + -0.004277258645743132, + 0.02360318787395954, + 0.004481111187487841, + 0.021113276481628418, + -0.011350207030773163, + -0.023093556985259056, + -0.005762468557804823, + -0.034742262214422226, + 0.0015143315540626645, + -0.015376290306448936, + -0.03552854806184769, + 0.010461992584168911, + -0.0021040472202003, + -0.00357287609949708, + -0.033577390015125275, + -0.01121915876865387, + 0.002659180900081992, + -0.02140449546277523, + 0.015711190178990364, + 0.004058845341205597, + -0.048458609730005264, + -0.0204580370336771, + -0.0007671763887628913, + -0.016468355432152748, + 0.00972666870802641, + 0.010017885826528072, + -0.004441068507730961, + 0.00737872626632452, + -0.01350521668791771, + -0.01555102039128542, + 0.013330486603081226, + 0.02731621265411377, + -0.001920216134749353, + 0.003814950818195939, + 0.01282813586294651, + 0.013556179590523243, + -0.04161499813199043, + -0.0026682813186198473, + -0.02188500389456749, + 0.0009118751622736454, + -0.010396468453109264, + 0.03462577611207962, + -0.029383856803178787, + 0.0254378579556942, + 0.028131620958447456, + 0.017531299963593483, + -0.001080235349945724, + -0.020443476736545563, + -0.008175934664905071, + 0.003594717476516962, + -0.011728789657354355, + -0.011655985377728939, + -0.0018892743391916156, + 0.021127838641405106, + 0.0015379930846393108, + 0.01897282712161541, + 0.017837079241871834, + -0.020428916439414024, + 0.007986643351614475, + -0.0002468524326104671, + 0.0018410413758829236, + -0.015128755010664463, + -0.0335482694208622, + 0.012333066202700138, + -0.0035856168251484632, + -0.024520523846149445, + 0.0033034998923540115, + 0.009850435890257359, + 0.012864538468420506, + 0.010054288432002068, + -0.0023352012503892183, + 0.005678743589669466, + 0.024054575711488724, + -0.01066584512591362, + 0.017109034582972527, + 0.013272242620587349, + 0.004291819408535957, + -0.01738569140434265, + -0.005067186430096626, + -0.0010856956942006946, + 0.004109808709472418, + -0.022336391732096672, + -0.003576516406610608, + -0.013439692556858063, + -0.0004909746930934489, + -0.03267461806535721, + -0.00600272323936224, + 0.019264046102762222, + 0.022088855504989624, + -0.016162578016519547, + 0.004834212362766266, + -0.012879098765552044, + 0.001568024861626327, + 0.00908598955720663, + 0.01974455453455448, + 0.02644255943596363, + -0.022933388128876686, + 0.0229188259691, + 0.02715604193508625, + -0.024811740964651108, + 0.010381908155977726, + 0.009457292035222054, + -0.002073105424642563, + 0.022219903767108917, + 0.01177247241139412, + -0.02613678015768528, + -0.01770603097975254, + 0.007353244815021753, + 0.018404953181743622, + -0.028087938204407692, + -0.0012922781752422452, + 0.01507051195949316, + -0.014415271580219269, + -0.008831174112856388, + 0.0203997939825058, + 0.0285684484988451, + 0.011342925950884819, + -0.019948406144976616, + -0.018361270427703857, + -0.008044886402785778, + 0.007251318544149399, + 0.00814681313931942, + -0.008532675914466381, + -0.013119353912770748, + 0.020923985168337822, + -0.012638844549655914, + -0.013578020967543125, + 0.020123137161135674, + 0.0012931881938129663, + 0.0046121589839458466, + -0.004542994778603315, + 0.00771726667881012, + 0.003996961750090122, + 0.01961350627243519, + -0.017735153436660767, + -0.005820712074637413, + 0.0044083064422011375, + 0.01724008284509182, + 0.004728646017611027, + -0.015201559290289879, + -0.0067780897952616215, + 0.017269205302000046, + -0.0046012382954359055, + -0.04275074601173401, + -0.007527975365519524, + 0.011998165398836136, + 0.007342324126511812, + -0.02149186097085476, + -0.012151055037975311, + 0.009915960021317005, + 0.00596268055960536, + 0.004113448783755302, + 0.016191698610782623, + 0.004535714164376259, + -0.013039268553256989, + -0.0190456323325634, + -0.009908678941428661, + -0.007870156317949295, + 0.0066980053670704365, + -0.00019259040709584951, + 0.011350207030773163, + -0.0039205169305205345, + 0.006512354128062725, + 0.014094932936131954, + -0.0019238563254475594, + -0.009508254937827587, + -0.02007945440709591, + -0.003774908371269703, + 0.009355366230010986, + -0.013017427176237106, + 0.0039023160934448242, + 0.011554058641195297, + 0.02070557326078415, + 1.4902151633577887e-5, + 0.01936597190797329, + -0.0074187689460814, + -0.015798555687069893, + 0.0033034998923540115, + -0.007571658119559288, + 0.007353244815021753, + -0.014458954334259033, + 0.002792048966512084, + -0.012617003172636032, + 0.08352120965719223, + 0.021448178216814995, + -0.010585760697722435, + 0.031218528747558594, + -0.0023970850743353367, + 0.004725005943328142, + -0.015783995389938354, + 0.0053875260055065155, + 0.012376748956739902, + -0.001271346933208406, + -0.01157590001821518, + -0.0038950357120484114, + -0.008037606254220009, + -0.004113448783755302, + -0.011226438917219639, + 0.00635946448892355, + -0.0031014676205813885, + 0.015929603949189186, + 0.004725005943328142, + 0.0025390535593032837, + 0.005798870697617531, + 0.00395691953599453, + -0.022161660715937614, + 0.024753497913479805, + 0.014145895838737488, + -0.009515536017715931, + 0.0003719849919434637, + 0.006479592062532902, + 0.032004814594984055, + 0.02620958536863327, + -0.00554769579321146, + -0.0017609564820304513, + 0.002782948315143585, + -0.008438030257821083, + 0.019467897713184357, + 0.008124971762299538, + -0.018870901316404343, + -0.0014069450553506613, + 0.012260261923074722, + 0.02685026451945305, + -0.008758369833230972, + -0.019467897713184357, + 0.034188948571681976, + -0.0067453281953930855, + -0.027170604094862938, + 0.012129213660955429, + 0.014298784546554089, + -0.0018710731528699398, + -0.0015907762572169304, + -0.00021864072186872363, + -0.02251112088561058, + -0.022394634783267975, + -0.00340360589325428, + -0.0060536861419677734, + -0.003591077169403434, + -0.006756248883903027, + 0.0313350148499012, + -0.012689807452261448, + 0.020982230082154274, + -0.019482458010315895, + 0.001328680431470275, + -0.013767313212156296, + 0.009078709408640862, + -0.022554803639650345, + -0.0028703135903924704, + 0.008044886402785778, + -0.004437428433448076, + 0.004146210849285126, + 0.00829970184713602, + 0.01460456382483244, + 0.003603817895054817, + 0.01872529275715351, + -0.012566040270030499, + -0.027112359181046486, + -0.01833214983344078, + 0.01936597190797329, + -0.006901857443153858, + -0.009195196442306042, + -0.0006534195272251964, + 0.006213855929672718, + -0.022234464064240456, + -0.004062485881149769, + -0.0015216120518743992, + -0.018463196232914925, + 0.00837978720664978, + 0.0037021038588136435, + 0.015856798738241196, + 0.0011885318672284484, + -0.0024971910752356052, + -0.019700871780514717, + -0.012886379845440388, + 0.009340805001556873, + -0.0031342296861112118, + 0.018550561740994453, + -0.009748510085046291, + -0.008372506126761436, + -0.009311683475971222, + 0.00493613863363862, + 0.019657189026474953, + -0.00850355438888073, + 0.014160456135869026, + 0.005696944426745176, + 0.0064577506855130196, + 0.01881265826523304, + -0.0008772930596023798, + 0.006406787782907486, + -0.01857968419790268, + 0.004080686718225479, + -0.030024535953998566, + 0.0045539154671132565, + 0.0026136781089007854, + -0.00584619352594018, + -0.009792191907763481, + 0.013315925374627113, + -0.034684017300605774, + -0.008372506126761436, + 0.01857968419790268, + 0.0011330185225233436, + -0.014553599990904331, + 0.0007221286650747061, + -0.009508254937827587, + -0.007014704402536154, + 0.0025681753177195787, + -0.0030031816568225622, + -0.006239337380975485, + 0.0032161346171051264, + -0.016424672678112984, + -0.013272242620587349, + 0.006395867094397545, + 0.00487789511680603, + 0.011466694064438343, + 0.006610639858990908, + -0.0030796262435615063, + -0.014444394037127495, + 0.00886029563844204, + -0.009253439493477345, + -0.0045539154671132565, + -0.003898675786331296, + 0.02982068434357643, + -0.0011694207787513733, + 0.010942501947283745, + 0.02022506296634674, + 0.012172896414995193, + 0.02204517275094986, + 0.004401026293635368, + 0.006537835579365492, + -0.005070826970040798, + -0.04478926956653595, + 0.03142238035798073, + 0.0038950357120484114, + 0.020137697458267212, + -0.021302567794919014, + 0.014371589757502079, + -0.015405411832034588, + 0.001922036288306117, + -0.004735926631838083, + -0.008423469960689545, + 0.005103588569909334, + -0.010061568580567837, + -0.005485811736434698, + -0.003804030129685998, + -0.002120428252965212, + -0.00334536237642169, + 0.003432727651670575, + -0.013687227852642536, + 0.00403336388990283, + 0.01326496247202158, + 0.025699954479932785, + 0.018215661868453026, + -0.0005769748822785914, + -0.012689807452261448, + 0.01110267173498869, + -0.002630059141665697, + -0.019351409748196602, + 0.0017336548771709204, + 0.006377665791660547, + 0.00861276127398014, + 0.02896159142255783, + -0.0034072462003678083, + 0.009537376463413239, + -0.0022223545238375664, + -0.02188500389456749, + -0.005129070486873388, + -0.015856798738241196, + 0.010891539044678211, + 0.0036092782393097878, + 0.023108117282390594, + -0.022409195080399513, + -0.004928858019411564, + 0.027214286848902702, + -0.004004242364317179, + 0.01770603097975254, + -0.0043609836138784885, + 0.008947661146521568, + -0.007520694751292467, + 0.00999604444950819, + 0.01259516179561615, + 0.04764320328831673, + 0.0014114953810349107, + 0.015536460094153881, + 0.009340805001556873, + 0.018477758392691612, + 0.0006247527780942619, + 0.022613048553466797, + 0.01429150439798832, + 0.00032943993574008346, + -0.009136952459812164, + -0.023093556985259056, + 0.018230222165584564, + 0.0024717096239328384, + -0.019191240891814232, + -0.010775052011013031, + 0.006192014552652836, + -0.024535084143280983, + -0.018303027376532555, + 0.023399336263537407, + 0.010068848729133606, + -0.028466522693634033, + 0.015944164246320724, + -0.004957980010658503, + 0.02551066316664219, + 0.013920201919972897, + 0.007440610323101282, + -0.012631564401090145, + -0.002198693109676242, + 0.02210341766476631, + -0.00012342621630523354, + 0.0008559067500755191, + -0.009915960021317005, + -0.02274409495294094, + 0.025466980412602425, + -0.012653405778110027, + -0.006956460885703564, + 0.016745012253522873, + 0.016148017719388008, + 0.01779339648783207, + -0.0017700570169836283, + -0.0013414211571216583, + 0.02417106181383133, + -0.012369467876851559, + -0.007207635790109634, + 0.031684476882219315, + -0.013039268553256989, + -0.0020021211821585894, + 0.0002880324318539351, + 0.020894864574074745, + 0.0009919600561261177, + -0.015682067722082138, + 0.0014651886885985732, + -2.5339344574604183e-5, + 0.013366888277232647, + -0.02079293690621853, + 0.00606096675619483, + 0.016890620812773705, + 0.005853474140167236, + 0.0019347770139575005, + 0.0005615039844997227, + 0.022147100418806076, + 0.004473830573260784, + 0.018783535808324814, + -0.01897282712161541, + -0.0010756850242614746, + -0.0077536688186228275, + 0.00042226555524393916, + -0.0012586060911417007, + 0.00038313318509608507, + -0.029325613752007484, + -0.0012531457468867302, + 0.004634000360965729, + -0.009420889429748058, + 0.0032871188595891, + -0.026792021468281746, + -0.004226295743137598, + 0.0065050735138356686, + 0.0016362789319828153, + -0.009617461822926998, + 0.030723458155989647, + -0.016657646745443344, + 0.012384029105305672, + -0.021622907370328903, + -0.006377665791660547, + 0.016876060515642166, + -0.008700125850737095, + -0.01967174932360649, + -0.006377665791660547, + -0.030665215104818344, + -0.002149550011381507, + 0.013323205523192883, + 0.004859693814069033, + 0.0031233089976012707, + 0.012733490206301212, + -0.030170144513249397, + -0.014364308677613735, + 0.0011912620393559337, + -0.01132836565375328, + 0.009479133412241936, + -0.003909596707671881, + 0.014240541495382786, + 0.014553599990904331, + 0.008518115617334843, + 0.018754415214061737, + -0.021273447200655937, + -0.019031072035431862, + -0.02281690016388893, + 0.025714514777064323, + 0.010301822796463966, + 0.0224237572401762, + -0.019424214959144592, + -0.020749256014823914, + 0.026165902614593506, + 0.0034454683773219585, + 0.003587437095120549, + -0.005413007456809282, + 0.008365225978195667, + -0.02472437545657158, + 0.0011248280061408877, + 0.01786619983613491, + 0.009777631610631943, + -0.002424386562779546, + -0.01432062592357397, + -0.011837996542453766, + 0.00020021211821585894, + 0.0005919908289797604, + -0.005194594152271748, + 0.007440610323101282, + 0.037596195936203, + 0.019933845847845078, + 0.006548756267875433, + 0.020516281947493553, + -0.018623366951942444, + 0.0013805534690618515, + 0.0062903002835810184, + -0.005911717656999826, + 0.014349748380482197, + -0.019031072035431862, + 0.0249427892267704, + -0.011073550209403038, + 0.007586218882352114, + -0.014531758613884449, + 0.016264503821730614, + -0.006312141660600901, + 0.004153491463512182, + -0.006774449720978737, + -0.019031072035431862, + 0.012296663597226143, + 0.038295116275548935, + 0.03046136349439621, + -0.004466549959033728, + 0.0033126003108918667, + 0.028772300109267235, + -0.0013223099522292614, + -0.009005905129015446, + 0.0024043654557317495, + -0.014131334610283375, + -0.004641280975192785, + -0.01440071128308773, + 0.013075671158730984, + 0.016148017719388008, + 0.0023770637344568968, + 0.0015643846709281206, + -0.005762468557804823, + 0.023821601644158363, + 0.0026027574203908443, + -0.0002148867497453466, + 0.01303198840469122, + 0.005980881862342358, + -0.0004937048652209342, + 0.016803257167339325, + -0.021899564191699028, + 0.011386608704924583, + 0.01590048149228096, + -0.02197236940264702, + -0.00730228191241622, + -0.008598200045526028, + 0.008350664749741554, + 0.032703738659620285, + -0.0017127236351370811, + 0.003949638921767473, + -0.009821314364671707, + -0.003844072576612234, + 0.026937630027532578, + -0.006861815229058266, + -0.008103130385279655, + -0.011277401819825172, + 0.011517656967043877, + 0.024040013551712036, + -0.002495371038094163, + 0.006403147242963314, + -0.0004488846461754292, + 0.027432698756456375, + 0.0019274966325610876, + 0.0431293286383152, + 0.018550561740994453, + -0.003261637408286333, + 0.0007266789325512946, + -0.0042699784971773624, + -0.0032543567940592766, + -0.0015025008469820023, + 0.00027756678173318505, + -0.013912921771407127, + 0.00663248123601079, + 0.0013159395894035697, + -0.010927940718829632, + -0.0006779910181649029, + 0.00021670685964636505, + -0.0260494165122509, + 0.034509286284446716, + -0.0002427571889711544, + 0.0007726367330178618, + -0.012937342748045921, + 0.012209299020469189, + 0.004568476229906082, + -0.018768975511193275, + -0.005755187943577766, + 0.0224237572401762, + 0.005030784290283918, + 0.009464572183787823, + 0.002369783353060484, + -0.00464492104947567, + 0.0037421463057398796, + 0.0034254472702741623, + 0.0018091894453391433, + 0.018128296360373497, + -0.0009719387744553387, + 0.000465720659121871, + 0.028699496760964394, + 0.027112359181046486, + 0.009588340297341347, + -0.008205056190490723, + -0.0011858016951009631, + -0.016075212508440018, + -0.005423928145319223, + -0.02376335673034191, + 0.023472139611840248, + -0.0070765879936516285, + -0.011175476014614105, + 0.00972666870802641, + -0.005704225040972233, + -0.007240397855639458, + 0.018128296360373497, + -0.005980881862342358, + -0.00596268055960536, + 0.000678901094943285, + 0.003385404823347926, + -0.0023661430459469557, + 0.021928686648607254, + 0.0003091912076342851, + 0.024127379059791565, + 0.0078337537124753, + -0.012522357515990734, + 0.0012067330535501242, + 0.021855881437659264, + 0.006832693237811327, + -0.001826480496674776, + -0.03022838942706585, + -0.023428456857800484, + -0.017531299963593483, + 0.02274409495294094, + 0.016191698610782623, + -0.011910800822079182, + 0.009974203072488308, + -0.00028097949689254165, + -0.0061592524871230125, + -0.015492777340114117, + 0.004102528095245361, + -0.018477758392691612, + 0.015478216111660004, + -0.0020512640476226807, + -0.006701645441353321, + 0.005067186430096626, + -0.011190037243068218, + 0.016118895262479782, + 0.01999208889901638, + -0.010891539044678211, + 0.00018667503900360316, + 0.017196400091052055, + 0.008758369833230972, + -0.0006238427595235407, + 0.008438030257821083, + 0.008459871634840965, + -0.001902015064842999, + 0.003363563446328044, + -0.014553599990904331, + 0.00916607491672039, + 0.006261178757995367, + -0.01597328670322895, + -0.030519606545567513, + 0.00874380860477686, + 0.00730228191241622, + 0.027665672823786736, + 0.011954483576118946, + -0.007906557992100716, + 0.016555720940232277, + -0.0016563001554459333, + -0.006472311448305845, + -0.001415135571733117, + 0.004098888020962477, + 0.010330945253372192, + -0.002908536000177264, + 0.01732744835317135, + 0.01622082106769085, + -0.015507337637245655, + -0.015245242044329643, + 0.013432412408292294, + 0.02864125184714794, + 0.010971623472869396, + -0.007644462399184704, + 0.01460456382483244, + -0.00600272323936224, + -0.004222655203193426, + 0.033344417810440063, + -0.006013643927872181, + -0.016424672678112984, + 0.007760949432849884, + -0.011714228428900242, + 0.013942043296992779, + 0.005518573801964521, + 0.024899106472730637, + 0.01675957441329956, + 0.01156861986964941, + -0.006687084678560495, + -0.0018082794267684221, + -0.016657646745443344, + -0.017298325896263123, + -0.0039205169305205345, + 0.00861276127398014, + 0.03739234060049057, + -0.010185335762798786, + -0.01074593048542738, + -0.004637640435248613, + -0.00818321481347084, + 0.0055294944904744625, + -0.004925217945128679, + -0.022074295207858086, + -0.01066584512591362, + 0.005143631249666214, + 0.005132710561156273, + -0.008896698243916035, + 0.03220866993069649, + -0.017371131107211113, + 0.0010975264012813568, + 0.004168052226305008, + 0.016817817464470863, + 0.010527516715228558, + -0.009020465426146984, + 0.004106168169528246, + -0.008008484728634357, + 0.0023279208689928055, + 0.009675704874098301, + 0.012151055037975311, + -0.016337309032678604, + 0.007891997694969177, + 0.02093854732811451, + -0.003778548678383231, + 0.007342324126511812, + -0.01809917576611042, + -0.00999604444950819, + -0.033169686794281006, + 0.0006820862763561308, + 0.01314119528979063, + -0.00407340656965971, + -0.03014102391898632, + -0.002102227183058858, + 0.024666132405400276, + 0.0020130418706685305, + 0.01448807679116726, + -0.008124971762299538, + 0.02109871618449688, + 0.005318361800163984, + 0.042867232114076614, + -0.017458496615290642, + 0.0018801736878231168, + -0.01645379513502121, + -0.01659940369427204, + -0.010891539044678211, + -0.021433616057038307, + -0.00191293575335294, + 0.011080830357968807, + 0.02243831753730774, + -0.018827218562364578, + 0.002535413485020399, + 0.00430638063699007, + -0.0022805980406701565, + -0.010694966651499271, + 0.013716349378228188, + 0.019380532205104828, + 0.019890163093805313, + 0.00024093707907013595, + 0.010520236566662788, + -0.03564503788948059, + 0.026078537106513977, + -0.012434992007911205, + -0.01338144950568676, + -0.00040019670268520713, + -0.004881535191088915, + 0.005019863601773977, + -0.00904958788305521, + -0.014830256812274456, + -0.026165902614593506, + -0.029180005192756653, + -0.015376290306448936, + 0.019264046102762222, + -0.009333524852991104, + 0.016715891659259796, + -0.0014888501027598977, + 0.0014606383629143238, + 0.0014833897585049272, + -0.02982068434357643, + 0.00556589663028717, + -0.012092811055481434, + -0.0064104278571903706, + 0.00904958788305521, + 0.031917449086904526, + 0.005747907795011997, + 0.013512497767806053, + -0.010461992584168911, + 0.02354494482278824, + -0.014939463697373867, + 0.008751089684665203, + 0.0031214887276291847, + -0.008547237142920494, + -0.015157876536250114, + 0.010119812563061714, + -0.013607143424451351, + -0.00904958788305521, + 0.014080371707677841, + -0.003682082751765847, + 0.0043609836138784885, + -0.005897156894207001, + -0.008525395765900612, + -0.0052783191204071045, + 0.005165472626686096, + 0.013490656390786171, + -0.02345757931470871, + 0.006614279933273792, + -0.022074295207858086, + -0.02880142256617546, + -0.007269519846886396, + 0.017429374158382416, + -0.008044886402785778, + 0.008103130385279655, + -0.009653864428400993, + -0.01290822122246027, + 0.029704196378588676, + 0.004739566706120968, + -0.001834671013057232, + 0.016643086448311806, + 0.005700584966689348, + -0.0005182763561606407, + -0.010520236566662788, + -0.026966750621795654, + 0.00928984209895134, + -0.006676163990050554, + -0.0004297734994906932, + 0.0010811453685164452, + -0.026879385113716125, + 0.003161531174555421, + -0.019788237288594246, + 0.014109493233263493, + -0.011386608704924583, + -0.02588924579322338, + -0.019540702924132347, + -0.026573607698082924, + 0.007935680449008942, + -0.0026937630027532578, + -0.0013068390544503927, + 0.012515077367424965, + 0.020647328346967697, + 0.0031378697603940964, + -0.014670087024569511, + 0.006847254000604153, + -0.002580916043370962, + -0.004619439598172903, + 0.002875773934647441, + -0.0029139963444322348, + 0.004160771612077951, + 0.010724089108407497, + -0.016643086448311806, + 0.012063689529895782, + -0.05227356031537056, + 0.0026209584902971983, + -0.004630360286682844, + -0.021695712581276894, + -0.004433788359165192, + -1.5087006431713235e-5, + -0.006872735917568207, + 0.008124971762299538, + -5.494457218446769e-5, + -0.009864997118711472, + -0.01007612980902195, + -0.0017982687568292022, + -0.020909424871206284, + -0.02676289901137352, + -0.010440151207149029, + 0.02393808774650097, + -0.002535413485020399, + 0.002380704041570425, + -0.005354763939976692, + 0.004379184916615486, + 0.0031487904489040375, + -0.027257969602942467, + -0.0029758799355477095, + 0.0051836734637618065, + -0.0249427892267704, + 0.004324581474065781, + -0.023020751774311066, + 0.010134372860193253, + 0.001396024483256042, + -0.012311224825680256, + -0.0009701186791062355, + 0.0041243694722652435, + -0.002934017451480031, + 0.018827218562364578, + -0.010600320994853973, + -0.008488993160426617, + -0.011954483576118946, + 0.021826760843396187, + -0.0027483662124723196, + -0.006344903726130724, + 0.0032052139285951853, + 0.013956604525446892, + 0.007644462399184704, + -0.0014105853624641895, + 0.0024789900053292513, + 0.008175934664905071, + 0.004859693814069033, + 0.013840117491781712, + -0.0011530397459864616, + -0.006090088281780481, + 0.014014847576618195, + 0.007586218882352114, + -0.00818321481347084, + -0.0017136336537078023, + -0.006537835579365492, + -0.02321004308760166, + -0.0002641434839460999, + 0.01090609934180975, + -0.020370671525597572, + 0.005864394828677177, + -0.012529637664556503, + -0.01772059127688408, + -0.04438156634569168, + -0.015798555687069893, + 0.004037004429847002, + 0.01417501736432314, + -0.013010147027671337, + 0.02369055338203907, + -0.0013441513292491436, + -0.008438030257821083, + 0.003671162063255906, + -0.01881265826523304, + -0.016002407297492027, + 0.013206718489527702, + -0.015565581619739532, + 0.005584097933024168, + 0.0004170327156316489, + 0.024607889354228973, + -0.015783995389938354, + -0.006039125379174948, + 0.012420431710779667, + 0.010520236566662788, + 0.00012319869711063802, + 0.007305921986699104, + 0.011058988980948925, + -0.009697546251118183, + -0.006643401924520731, + -0.005121789872646332, + 0.0075643775053322315, + 0.0030050016939640045, + 0.016861500218510628, + -0.004022443201392889, + -0.007542536128312349, + -0.02763655222952366, + -0.026471681892871857, + -0.0032925792038440704, + -0.011765191331505775, + 0.005453049670904875, + 0.02172483503818512, + 0.0031051079276949167, + 0.0034927912056446075, + -0.00357287609949708, + 0.006803571712225676, + -0.02369055338203907, + 0.023792479187250137, + 0.0007075677858665586, + -0.012784453108906746, + 0.013352327980101109, + 0.02644255943596363, + 0.007870156317949295, + -0.007790071424096823, + 0.0070765879936516285, + -0.007666303776204586, + -0.010920660570263863, + -0.0053911660797894, + 0.017181839793920517, + 0.017269205302000046, + 0.020254185423254967, + 0.003603817895054817, + -0.0027975093107670546, + -0.005030784290283918, + -0.008044886402785778, + -0.0015170617261901498, + -0.0001884951489046216, + -0.01849231868982315, + 0.007615340873599052, + -0.00032056690542958677, + -0.01975911483168602, + 0.008154093287885189, + 0.009464572183787823, + -0.012682527303695679, + 0.010017885826528072, + -0.013315925374627113, + -0.010709527879953384, + 0.0005251017864793539, + 0.01349793653935194, + 0.006130130961537361, + -0.007644462399184704, + -0.015390850603580475, + 0.011881678365170956, + 0.02495734952390194, + -0.009078709408640862, + 0.006384946405887604, + 0.018288467079401016, + 0.006767169572412968, + -0.034363679587841034, + -0.0036165588535368443, + -0.00229333876632154, + 0.004237216431647539, + -0.0028266310691833496, + -0.02597661130130291, + 0.007433329708874226, + -0.018303027376532555, + -0.001069314661435783, + 0.018870901316404343, + -0.004080686718225479, + -0.022933388128876686, + -0.007105709984898567, + 0.006424988619983196, + 0.012012726627290249, + -0.025831002742052078, + 0.013636264950037003, + -0.028131620958447456, + -0.0008681925246492028, + -0.006556036416441202, + -0.0013150295708328485, + 0.011954483576118946, + -0.020268745720386505, + 0.010003325529396534, + -0.009413609281182289, + -0.011663265526294708, + -0.005656902212649584, + 0.00477960892021656, + -0.008583638817071915, + -0.002200513146817684, + -0.03785828873515129, + 0.027185164391994476, + -0.00886029563844204, + -4.288634590920992e-5, + -6.633448265347397e-6, + 0.006224776618182659, + -0.006861815229058266, + 0.004320941399782896, + 0.015536460094153881, + 0.011248280294239521, + 0.01668676920235157, + -0.004058845341205597, + 0.004896095953881741, + -0.0011721509508788586, + -0.00458667753264308, + -0.002704683691263199, + -0.008918539620935917, + 0.0013132094172760844, + -0.007065667305141687, + -0.0018182899802923203, + -0.017443934455513954, + -0.01145941298455, + 0.010381908155977726, + 0.00018622001516632736, + 0.0035055321641266346, + 0.01716727763414383, + -0.004750487394630909, + 0.0034727700985968113, + 0.021622907370328903, + -0.003230695379897952, + -0.02929649129509926, + -0.0016080673085525632, + 0.009362646378576756, + 0.01731288805603981, + 0.006789010483771563, + 0.0201522596180439, + 0.007622621022164822, + 0.006872735917568207, + 0.006628841161727905, + -0.01408765185624361, + 0.007724547293037176, + -0.001853782101534307, + -3.475272751529701e-5, + -0.0084161888808012, + -0.010105251334607601, + -0.006366745103150606, + -0.010935221798717976, + -0.01495402492582798, + -0.007527975365519524, + -0.00014378869673237205, + 0.002648260211572051, + 0.006974661722779274, + -0.04269250109791756, + -0.01420413888990879, + 0.0010629442986100912, + 0.02527768909931183, + 0.007036545779556036, + 0.004357343539595604, + -0.0007671763887628913, + -0.0034254472702741623, + 0.020894864574074745, + -0.011277401819825172, + 0.00975579023361206, + -0.012959184125065804, + -0.0044228676706552505, + -0.010330945253372192, + -0.007207635790109634, + 0.01770603097975254, + 0.005798870697617531, + 0.025132080540060997, + -0.0032998595852404833, + -0.006847254000604153, + -0.029252810403704643, + -0.007506133988499641, + -0.010563919320702553, + -0.013607143424451351, + 0.011736069805920124, + -0.016512038186192513, + -0.006082808133214712, + -0.014349748380482197, + 0.011852556839585304, + 0.01385467778891325, + 0.0038477126508951187, + -0.021739395335316658, + 0.028117060661315918, + -0.002120428252965212, + 0.020050331950187683, + 0.007600779645144939, + 0.00782647356390953, + -0.013658106327056885, + -0.02274409495294094, + -0.008569078519940376, + 0.007225837092846632, + 0.005118149798363447, + 0.004870614502578974, + -0.005165472626686096, + -0.009799472987651825, + 0.019497020170092583, + 0.0032234149985015392, + -0.002686482621356845, + 0.000468678364995867, + 0.013767313212156296, + -0.005456690210849047, + -0.022860582917928696, + 0.02338477410376072, + -0.0006156522431410849, + -0.01888546161353588, + -0.02322460524737835, + 0.023399336263537407, + -0.014910342171788216, + 0.014298784546554089, + 0.002435307251289487, + 0.004390105605125427, + -0.006392226554453373, + 0.01145213283598423, + 0.01011253148317337, + -0.008292421698570251, + -0.002733805449679494, + -0.004397386219352484, + 0.011532217264175415, + 0.02070557326078415, + 0.012922781519591808, + -0.01384739764034748, + -0.021200641989707947, + -0.022627608850598335, + 0.01827390491962433, + -0.0018519620643928647, + -0.008598200045526028, + 0.024680692702531815, + 0.007928399369120598, + 0.005147271323949099, + 0.014983146451413631, + 0.005955400411039591, + 0.009129672311246395, + 0.008809332735836506, + -0.019089315086603165, + -0.0007394197164103389, + -0.01487393956631422, + 0.006366745103150606, + -0.006090088281780481, + -0.02047259919345379, + -0.024141941219568253, + 1.4944810573069844e-5, + 0.0031233089976012707, + 0.004921577870845795, + -0.009894118644297123, + 0.016351869329810143, + 0.035295575857162476, + -0.012442273087799549, + 0.011961763724684715, + 0.008627321571111679, + -0.017531299963593483, + -0.02676289901137352, + 0.0033799444790929556, + 0.0056241401471197605, + 0.008896698243916035, + -0.008940380997955799, + 0.01895826682448387, + -0.042226552963256836, + -0.005820712074637413, + -0.004353703465312719, + 0.03014102391898632, + 0.0008663724293000996, + -0.0011048067826777697, + -0.0001031206120387651, + 0.014677368104457855, + 0.01384739764034748, + 0.014080371707677841, + -0.013687227852642536, + -0.0070765879936516285, + -0.007578938268125057, + 0.021273447200655937, + 0.013308645226061344, + -0.0063485438004136086, + -0.01968631148338318, + -0.02581644244492054, + -0.0017673269612714648, + -0.022001489996910095, + 0.008649162948131561, + -0.010221738368272781, + -0.03005365841090679, + 0.0078046321868896484, + 0.011175476014614105, + 0.010826014913618565, + -0.0031415100675076246, + 0.004521153401583433, + 0.026413436979055405, + -0.00283209141343832, + -0.013170316815376282, + 0.022088855504989624, + 0.0035674157552421093, + -0.0023770637344568968, + -0.00011876218195538968, + -0.009129672311246395, + -0.009937801398336887, + -0.003163351444527507, + -0.0458376519382, + -0.0072185564786195755, + -0.014065810479223728, + -0.004419227130711079, + 0.0032052139285951853, + -0.013752751983702183, + -0.006672523450106382, + 0.0043609836138784885, + 0.010855136439204216, + 0.007131191436201334, + -7.274752715602517e-5, + 0.013956604525446892, + 0.020166819915175438, + 0.002207793528214097, + -0.002819350454956293, + 0.0008140442660078406, + -0.01416773721575737, + 0.004200814291834831, + 0.01168510690331459, + 0.03421806916594505, + -0.003851352958008647, + 0.010214458219707012, + -0.00029394778539426625, + 0.008700125850737095, + 0.0024971910752356052, + -0.0038003898225724697, + 0.010236299596726894, + 0.03249988704919815, + 0.0020112216006964445, + 0.010017885826528072, + -0.01338872965425253, + -0.006272099446505308, + -0.02315180003643036, + -0.01303198840469122, + 0.011058988980948925, + -0.017065351828932762, + 0.01177247241139412, + 0.00042340310756117105, + 0.009035026654601097, + -0.012544198893010616, + -0.008488993160426617, + -0.004746847320348024, + 0.001750035909935832, + 0.03264549374580383, + -0.006836333312094212, + 0.0021877724211663008, + -0.0027774879708886147, + -0.020909424871206284, + 0.013672666624188423, + -0.008139532059431076, + -0.021302567794919014, + 0.0053875260055065155, + -0.008292421698570251, + -0.0031342296861112118, + -0.006566957104951143, + 0.015288924798369408, + -0.01684693992137909, + 0.012063689529895782, + 0.0036365799605846405, + -0.0010083409724757075, + -0.024185622110962868, + -0.003021382726728916, + 0.003327161306515336, + 0.01294462289661169, + 0.005522213876247406, + 0.0074697318486869335, + -0.0251903235912323, + -0.014779293909668922, + -0.002992260968312621, + 0.01740025170147419, + 0.003545574378222227, + -0.009180635213851929, + 0.005169112700968981, + -0.015798555687069893, + 0.013723630458116531, + 0.002169571351259947, + 0.001300468691624701, + -0.024069136008620262, + 0.013046549633145332, + -0.010185335762798786, + 0.0035146325826644897, + 0.02345757931470871, + 0.009799472987651825, + -0.0019511580467224121, + -0.006738047581166029, + -0.0022114338353276253, + 0.0203997939825058, + 0.007513414602726698, + 0.00862004142254591, + 0.006570597644895315, + 0.010010605677962303, + 0.006465031299740076, + 0.007429689634591341, + -0.012624283321201801, + 0.009682985953986645, + -0.00862004142254591, + 0.005234636832028627, + 0.017123596742749214, + 0.004117088858038187, + 0.0071712336502969265, + -0.007695425301790237, + -0.008095849305391312, + -0.018914584070444107, + -0.0137309106066823, + -0.025452420115470886, + 0.0024025454185903072, + -0.018827218562364578, + -0.009653864428400993, + -0.01961350627243519, + 0.03290759027004242, + 0.022088855504989624, + 0.0002832546306308359, + 0.0015398131217807531, + -0.006217496003955603, + 0.0010775051778182387, + 0.02738901600241661, + -0.021055033430457115, + 0.009653864428400993, + 0.013993006199598312, + -0.004652201198041439, + -0.02880142256617546, + -0.025539785623550415, + 0.005533134564757347, + -0.016002407297492027, + 0.0007967532146722078, + 0.016322746872901917, + 0.0084161888808012, + -0.0011894420022144914, + -0.0005273768911138177, + -0.006818132475018501, + -0.037188488990068436, + 0.01636642962694168, + 0.002255116356536746, + -0.016235381364822388, + 0.016075212508440018, + 0.005897156894207001, + -0.006031844764947891, + -0.01897282712161541, + 0.018623366951942444, + -0.011721509508788586, + 0.010869697667658329, + -0.0101998969912529, + 0.0054348488338291645, + -0.006326702889055014, + 0.007935680449008942, + -0.021302567794919014, + -0.015492777340114117, + -0.016162578016519547, + -0.013760032132267952, + -0.011794313788414001, + -0.025598028674721718, + 0.0063157822005450726, + 0.012646124698221684, + -0.014269663020968437, + -0.010855136439204216, + -0.009158793836832047, + 0.00401516305282712, + -0.006843613926321268, + 0.00932624377310276, + -0.007014704402536154, + -0.00024457729887217283, + 0.006665243301540613, + 0.005773389246314764, + -0.02636975422501564, + 0.006392226554453373, + 0.019424214959144592, + -0.03692639246582985, + -0.002515392145141959, + 0.017298325896263123, + 0.01405125018209219, + 0.006818132475018501, + 0.018623366951942444, + 0.005769749172031879, + -0.017021669074892998, + -0.002941297832876444, + 4.049744893563911e-5, + -0.003649320686236024, + -0.0031233089976012707, + 0.020676450803875923, + 0.005402086768299341, + 0.008467151783406734, + 0.005653262138366699, + -0.004987101536244154, + 0.0078337537124753, + -0.01132836565375328, + 0.009595620445907116, + 0.0004600328393280506, + -0.008110410533845425, + -0.005358404014259577, + 0.004539354704320431, + -0.0032871188595891, + 0.03209218010306358, + 0.005129070486873388, + -0.005711505655199289, + -0.00905686803162098, + -0.017516739666461945, + 0.0066361213102936745, + 0.008627321571111679, + 0.012799014337360859, + -0.018084613606333733, + 0.02141905575990677, + -0.010440151207149029, + 0.012143774889409542, + 0.013949323445558548, + 0.025598028674721718, + -0.015783995389938354, + -0.007371446117758751, + -0.011386608704924583, + 0.005376605316996574, + 0.009886838495731354, + -0.02134625054895878, + 0.00984315574169159, + -0.01507051195949316, + 0.0024025454185903072, + -0.00806672777980566, + -0.015769433230161667, + -0.02685026451945305, + -0.012405870482325554, + 0.0063995071686804295, + -0.008962222374975681, + -0.027097798883914948, + -0.018055493012070656, + 0.0034673097543418407, + -0.009566498920321465, + -0.0015307125868275762, + -0.007251318544149399, + 0.03678078576922417, + -0.0058134314604103565, + 0.0013623523991554976, + 0.007811912335455418, + -0.0013496116735041142, + -0.00212406856007874, + 0.0022241745609790087, + -0.014233261346817017, + 0.014728331007063389, + 0.017269205302000046, + 0.04339142516255379, + 0.025379614904522896, + 0.0046594818122684956, + -0.007527975365519524, + -0.017895322293043137, + -0.016672208905220032, + 0.014655526727437973, + -5.915357633057283e-6, + -0.002648260211572051, + -0.018463196232914925, + -0.005686023738235235, + -0.022307269275188446, + -0.0127189289778471, + 0.017109034582972527, + -0.015114194713532925, + 0.012544198893010616, + 0.008954941295087337, + 0.002999541349709034, + -0.006355824414640665, + 0.0016972526209428906, + 0.008787491358816624, + -0.009712107479572296, + -0.02304987423121929, + -0.010927940718829632, + 0.005838913377374411, + 0.00363111961632967, + -0.009864997118711472, + -0.02731621265411377, + 0.005194594152271748, + -0.030519606545567513, + 0.01606065221130848, + -0.014684648253023624, + -0.012180176563560963, + -0.000937356729991734, + -0.017909882590174675, + 0.006046405527740717, + -0.007986643351614475, + 0.007462451234459877, + 0.006392226554453373, + 0.014539039693772793, + -0.044352442026138306, + -0.007105709984898567, + 0.020574524998664856, + -0.0022314549423754215, + -0.03893579542636871, + -0.007291361223906279, + -0.005533134564757347, + 0.007400567643344402, + -0.030111901462078094, + -0.006370385177433491, + -0.008306982927024364, + -0.0008950391202233732, + -0.013643545098602772, + 0.01180887408554554, + 0.021448178216814995, + 0.022394634783267975, + 0.004845133051276207, + 0.002724704798310995, + -0.019875602796673775, + 0.0015689348801970482, + 0.002677381969988346, + -0.0131484754383564, + -0.011299243196845055, + 0.016876060515642166, + 0.006155612412840128, + -0.0013150295708328485, + 0.00987955741584301, + -0.025539785623550415, + 0.001653569983318448, + -0.016424672678112984, + -0.003814950818195939, + 0.010593040846288204, + 0.011190037243068218, + -0.015055950731039047, + -0.009348085150122643, + -0.0006939169834367931, + -0.003678442444652319, + -0.00928984209895134, + -0.03238339722156525, + 0.0005023503908887506, + 0.0036584213376045227, + 0.006756248883903027, + -0.003796749748289585, + -0.004324581474065781, + -0.004175332374870777, + -0.017676908522844315, + 0.00714575219899416, + -0.00481965159997344, + -0.005362044554203749, + -0.005820712074637413, + -0.014968585222959518, + -0.01101530622690916, + 0.0045648361556231976, + 0.021375373005867004, + -0.015594703145325184, + -0.019424214959144592, + -0.022642169147729874, + -0.009486413560807705, + 0.007138471584767103, + 0.01951158046722412, + 0.007819193415343761, + 0.01475745253264904, + -0.00861276127398014, + -0.0047541274689137936, + 0.001881993841379881, + -0.02786952629685402, + -0.006217496003955603, + 0.010156214237213135, + 0.00022865133360028267, + 0.00917335506528616, + -0.014684648253023624, + 0.009821314364671707, + -0.015536460094153881, + 0.02754918672144413, + 0.011466694064438343, + 0.00794296059757471, + 0.05256478115916252, + 0.011539498344063759, + 0.015915043652057648, + 0.00470316456630826, + 0.008343384601175785, + 0.034829627722501755, + 0.030490484088659286, + -0.015405411832034588, + -0.00747701246291399, + 0.007342324126511812, + 0.0016863320488482714, + 0.016351869329810143, + 0.000778552086558193, + 0.003960559610277414, + -0.005868034902960062, + -0.006173813249915838, + 0.03092731162905693, + 0.015055950731039047, + 0.017749713733792305, + -0.0034381879959255457, + 0.02701043337583542, + -0.0012777172960340977, + 0.0027556465938687325, + -0.01699254848062992, + -0.016657646745443344, + 0.02109871618449688, + 0.012886379845440388, + 0.016584843397140503, + 0.01487393956631422, + -0.010491115041077137, + -0.01786619983613491, + 0.0071712336502969265, + -0.00170180294662714, + 0.013810995034873486, + -0.001204002881422639, + -0.00407340656965971, + -0.011947202496230602, + 0.004273618571460247, + -0.004925217945128679, + 0.016118895262479782, + 0.0007066577672958374, + 0.026806581765413284, + -0.012631564401090145, + -0.020166819915175438, + 0.009413609281182289, + 0.0044228676706552505, + 0.0016845118952915072, + 0.012333066202700138, + 0.012223859317600727, + -0.01732744835317135, + 0.016482917591929436, + 0.005937199108302593, + 0.002999541349709034, + 0.005711505655199289, + -0.004055205266922712, + -0.016482917591929436, + -0.004816011525690556, + 0.008590919896960258, + 0.0063048615120351315, + 0.020676450803875923, + 0.009544657543301582, + -0.007542536128312349, + -0.02157922461628914, + 0.01078961230814457, + 0.0008486263104714453, + 0.02503015473484993, + 0.015085072256624699, + -0.008132251910865307, + 0.0007767319912090898, + 0.017502179369330406, + -0.023078996688127518, + 0.008845735341310501, + -0.01495402492582798, + 0.009617461822926998, + 0.018710732460021973, + 0.01668676920235157, + -0.01440071128308773, + -0.0018465017201378942, + -0.02567083202302456, + -0.0076735843904316425, + -0.021520981565117836, + 0.0076735843904316425, + -0.020326988771557808, + -0.007382366340607405, + 0.002944938139989972, + 0.027141481637954712, + -0.01215833518654108, + 0.009777631610631943 + ], + "6266fa60-fb2c-435a-8b42-9a0728ec7f67": [ + -0.004849795717746019, + -0.011122670024633408, + -0.00912611186504364, + 0.015505186282098293, + -0.027173016220331192, + -0.005787895061075687, + -0.0002628447546157986, + 0.023363979533314705, + -0.036900926381349564, + 0.01563262566924095, + 0.001169083989225328, + 0.03882668539881706, + 0.029990853741765022, + -0.01937086321413517, + 0.003628496779128909, + 0.004601995926350355, + -0.00039028466562740505, + 0.036561086773872375, + -0.01308382861316204, + -0.02673405595123768, + 0.05035291612148285, + -0.042225081473588943, + -0.017105264589190483, + 0.027187176048755646, + -0.00012290426820982248, + -0.026337577030062675, + 0.005660455208271742, + 0.005802054889500141, + -0.03939308598637581, + -0.00631889421492815, + 0.01975318230688572, + 0.008000393398106098, + 0.0009628791594877839, + 0.007547273300588131, + 0.00827651284635067, + -0.031350214034318924, + -0.013352868147194386, + 0.018223904073238373, + 0.0024762277025729418, + 0.019894782453775406, + -0.00816323235630989, + 0.002453217748552561, + 0.015915825963020325, + 0.00804287288337946, + -0.044773880392313004, + 0.02056030184030533, + -0.022061260417103767, + -0.029509413987398148, + 0.028348295018076897, + -0.02380293980240822, + 0.012680268846452236, + 0.016071585938334465, + -0.0139900678768754, + -0.012191749177873135, + 0.044632282108068466, + -0.023817099630832672, + 0.022117899730801582, + 0.05536555126309395, + -0.0017576084937900305, + -0.05777274817228317, + 0.016963664442300797, + -0.050721075385808945, + -0.006110034417361021, + -0.0032532571349292994, + 0.0013540488434955478, + -0.019031023606657982, + -0.013076748698949814, + -0.031010372564196587, + -0.01314046885818243, + -0.00015985297795850784, + -0.0020850582513958216, + 0.028617335483431816, + -0.06604218482971191, + -0.010535030625760555, + 0.012581149116158485, + 0.00016637984663248062, + 0.029735973104834557, + 0.0033152070827782154, + 0.0016372485551983118, + -0.030585572123527527, + -0.00690653407946229, + -0.009777471423149109, + -0.024751657620072365, + -0.013133388012647629, + 0.06910073757171631, + 0.00010404272325104102, + 0.0032921971287578344, + -0.049758195877075195, + -0.004152416251599789, + -0.022287819534540176, + -0.02959437295794487, + 0.0060887946747243404, + -0.006754314061254263, + 0.0061525143682956696, + 0.014089187607169151, + -0.002863857429474592, + 0.03344589099287987, + -0.002973597263917327, + 0.016114065423607826, + -0.0024107377976179123, + 0.017657505348324776, + 0.008580952882766724, + 0.00342494691722095, + -0.03406893089413643, + 0.015774225816130638, + -0.02724381536245346, + -0.005476375110447407, + 0.013359948061406612, + -0.02789517492055893, + 0.04737931862473488, + 0.020461181178689003, + -0.04947499558329582, + 0.034861888736486435, + 0.006538374349474907, + -0.043697722256183624, + -0.043924279510974884, + -0.012085549533367157, + -0.028178375214338303, + 0.01377766765654087, + -0.016567185521125793, + 0.04247996211051941, + 0.012935148552060127, + -0.0006057819700799882, + 0.0150520671159029, + -0.0018708884017542005, + 0.01917262375354767, + 0.002762967487797141, + 0.0008518117247149348, + 0.01168906968086958, + 0.021863020956516266, + -0.035371650010347366, + -0.023788778111338615, + 0.00941639207303524, + 0.02234446071088314, + 0.0028727075550705194, + 0.004301096312701702, + 0.013791827484965324, + 0.03650444746017456, + -0.041347164660692215, + 0.026691576465964317, + -0.0279801357537508, + -0.025360537692904472, + -0.032199811190366745, + -3.692106110975146e-5, + 0.007490633521229029, + 0.010973989963531494, + -0.02967933379113674, + 0.031095333397388458, + -0.04927675798535347, + 0.01585918664932251, + -0.05038123577833176, + 0.007844633422791958, + 0.0050161755643785, + 0.011193470098078251, + 0.075614333152771, + 0.015349426306784153, + -0.02303829975426197, + 0.04259324073791504, + 0.01207846961915493, + 0.0279801357537508, + 0.0320298932492733, + -0.0736885741353035, + 0.0014611337101086974, + 0.0013575888006016612, + 0.02268430031836033, + 0.031661730259656906, + 0.058395788073539734, + 0.02319405972957611, + -0.008021633140742779, + 0.021735580638051033, + -0.0013062588404864073, + -0.03950636461377144, + 0.022245340049266815, + -0.006209154613316059, + 0.03738236799836159, + -0.04644475877285004, + 0.04919179528951645, + 0.006216234527528286, + 0.04191356152296066, + -0.05451595038175583, + -0.024666698649525642, + -0.022939179092645645, + 0.025105657055974007, + -0.0020443482790142298, + -0.007462313398718834, + 0.00997571088373661, + -0.01740262471139431, + -0.004053296521306038, + 0.002173558110371232, + 0.00737027358263731, + -0.006789714097976685, + 0.00013850237883161753, + 0.035598207265138626, + -0.021055901423096657, + -0.021848861128091812, + -0.039421405643224716, + 0.006637494079768658, + 0.04440572112798691, + 0.008786272257566452, + 0.029424453154206276, + -0.011781109496951103, + -0.029566053301095963, + -0.013706867583096027, + 0.03452204912900925, + -0.04058252274990082, + 0.008920792490243912, + -0.027541175484657288, + -0.05918874591588974, + 0.027696935459971428, + -0.038486845791339874, + 0.0256578978151083, + -0.03877004608511925, + 0.013097988441586494, + 0.009919071570038795, + -0.02453925833106041, + 0.011802349239587784, + -0.01608574576675892, + 0.02080102078616619, + 0.0006500318995676935, + -0.02755533531308174, + -0.005483455024659634, + 0.016000786796212196, + -0.01782742515206337, + -0.010952750220894814, + -0.05457259342074394, + 0.003067407291382551, + -0.02485077828168869, + 0.02261349931359291, + -0.038062047213315964, + -0.010874870233237743, + 0.017572544515132904, + -0.009154431521892548, + 0.021395741030573845, + 0.013345788232982159, + 0.0010345641057938337, + 0.04856875538825989, + 0.008226952515542507, + 0.014407787472009659, + -0.02048950269818306, + -0.02635173685848713, + -5.572729423874989e-5, + 0.005918874870985746, + -0.022004621103405952, + 0.003090417245402932, + 0.005950734950602055, + 0.034975167363882065, + -0.000715964357368648, + 0.06332346051931381, + -0.0034957469906657934, + -0.02715885639190674, + 0.0021222280338406563, + 0.025403017178177834, + 0.0008155267569236457, + -0.005518855061382055, + 0.0017540684202685952, + 0.026026057079434395, + 0.030698852613568306, + -0.01995142176747322, + -0.016793744638562202, + 0.00964295119047165, + 0.012680268846452236, + 0.0016850385582074523, + 0.0036196468863636255, + -0.004024976398795843, + 0.05151403322815895, + -0.024680858477950096, + 0.020673582330346107, + -0.01601494662463665, + 0.021112540736794472, + 0.03180333226919174, + -0.048710357397794724, + -0.021664781495928764, + 0.0016460985643789172, + -0.0014168837806209922, + 0.0008867692085914314, + -0.01377766765654087, + 0.023873738944530487, + 0.0038019565399736166, + 0.04684123769402504, + 0.015958305448293686, + -0.03033069334924221, + -0.010350950993597507, + 0.0006911843665875494, + 0.028348295018076897, + 0.025261417031288147, + 0.010719110257923603, + -0.04378268122673035, + -0.0012867888435721397, + -0.026606615632772446, + -0.008772112429141998, + -0.0040497565641999245, + -0.0250773373991251, + 0.006046314723789692, + 0.035286687314510345, + 0.01786990463733673, + 0.007341953460127115, + -0.025063177570700645, + 0.006354294251650572, + -0.0034461868926882744, + -0.007101233582943678, + 0.011313829571008682, + 0.030359013006091118, + -0.010683710686862469, + -0.03712748736143112, + 0.038175325840711594, + -0.021466540172696114, + 0.03851516544818878, + 0.03033069334924221, + -0.060604747384786606, + 0.012977628968656063, + 0.051995474845170975, + -0.0003031122323591262, + -0.03947804495692253, + 0.01990894228219986, + 0.012064309790730476, + 0.010527950711548328, + -0.004524115938693285, + 0.005097595509141684, + -0.020121341571211815, + -0.03738236799836159, + 0.007002113852649927, + -0.01543438620865345, + -0.05884890630841255, + -0.012290868908166885, + 0.01677958481013775, + -0.06626874208450317, + 0.03463532775640488, + -0.02308077923953533, + -0.03746732696890831, + -0.01999390311539173, + -0.030840452760457993, + 0.006633954122662544, + -0.0028107576072216034, + -0.009465951472520828, + -0.05420443043112755, + -0.02715885639190674, + -0.056158509105443954, + -0.023448938503861427, + 0.015717586502432823, + -0.025176458060741425, + -0.005642754957079887, + -0.013388268649578094, + 0.04788907617330551, + -0.01867702417075634, + -0.017218545079231262, + -0.02688981592655182, + 0.028999654576182365, + 0.020418701693415642, + 0.010435910895466805, + -0.021041741594672203, + 0.000898716680239886, + -0.0017673434922471642, + 0.05621515214443207, + 0.0022284281440079212, + 0.04703947901725769, + -0.0047966958954930305, + -0.005200255196541548, + -0.0153352664783597, + 0.0007956143235787749, + -0.018577903509140015, + 0.00011836864723591134, + -0.06910073757171631, + -0.014726387336850166, + -0.02731461636722088, + -0.027640296146273613, + 0.019724862650036812, + -0.025898616760969162, + -0.008998672477900982, + 0.011667829938232899, + 0.012722748331725597, + -0.026096856221556664, + -0.014995426870882511, + 0.00349220703355968, + -0.04032764583826065, + -0.009062391705811024, + -0.05409115180373192, + 0.03463532775640488, + -0.03438045084476471, + -0.004294016398489475, + 0.016227345913648605, + 0.016581345349550247, + 0.00012002801668131724, + 0.005210875533521175, + -0.0004241358838044107, + -0.0041807363741099834, + 0.03576812893152237, + -0.018974382430315018, + -0.009005752392113209, + 0.004007276613265276, + -0.008205712772905827, + -0.030047493055462837, + 0.0034904368221759796, + -0.044632282108068466, + 0.02292501926422119, + -0.022783419117331505, + -0.005086975637823343, + 0.006414474453777075, + -0.011519149877130985, + -0.020277101546525955, + -0.006556074135005474, + -0.0014965336304157972, + -0.019200943410396576, + 0.010372190736234188, + 0.006552534177899361, + 0.035598207265138626, + -0.004191356245428324, + 0.02708805538713932, + -0.009196911938488483, + 0.024879097938537598, + 0.0007580018136650324, + 0.009635871276259422, + 0.02391621842980385, + 0.008644672110676765, + 0.004106396343559027, + 0.02708805538713932, + 0.016071585938334465, + 0.01999390311539173, + 0.06541914492845535, + -0.00598967494443059, + -0.01223422959446907, + 0.058509066700935364, + 0.03222813084721565, + -0.009940311312675476, + 0.022386940196156502, + -0.028079254552721977, + 0.03299276903271675, + -0.013352868147194386, + 0.008623432368040085, + -0.01543438620865345, + -0.03647612780332565, + -0.004648015834391117, + 0.020970940589904785, + -0.003175377147272229, + -0.01666630618274212, + 0.00364619679749012, + -0.007462313398718834, + 0.011313829571008682, + -0.02516229823231697, + -0.019130142405629158, + -0.006506514269858599, + 0.015080386772751808, + 0.04233836382627487, + -0.005543635226786137, + -0.03384236991405487, + -0.03556988760828972, + 0.007724273018538952, + -0.015207826159894466, + 0.0067755538038909435, + 0.02601189725100994, + -0.029452774673700333, + -0.0129280686378479, + 0.028957175090909004, + -0.022471901029348373, + -0.012071389704942703, + 0.0155335059389472, + -0.015519346110522747, + -0.011667829938232899, + -0.030783813446760178, + 0.031095333397388458, + -0.0598117858171463, + -0.013182948343455791, + 0.0048887357115745544, + 0.028603175655007362, + -0.018648702651262283, + 0.02342061884701252, + -0.03670268878340721, + -0.001310683786869049, + 0.02693229541182518, + -0.004163036122918129, + 0.004198436159640551, + -0.019115982577204704, + 7.162962720030919e-5, + -0.053694672882556915, + 0.004881655797362328, + 0.006315354257822037, + -0.0025328677147626877, + -0.01200058963149786, + -0.014712226577103138, + 0.0005832145106978714, + -0.02380293980240822, + -0.030075812712311745, + 0.003226707223802805, + 0.00995447114109993, + 0.005132995545864105, + 0.004439156036823988, + -0.025360537692904472, + -0.02310909889638424, + -0.047096118330955505, + 0.012283788993954659, + -0.03970460593700409, + 0.049956437200307846, + 0.03140685334801674, + 0.014981267042458057, + 0.018804462626576424, + 0.009019912220537663, + -0.02125414088368416, + 0.01798318326473236, + -0.011009390465915203, + -0.02666325680911541, + 0.004106396343559027, + 0.02214622125029564, + -0.004534735810011625, + -0.0018903582822531462, + -0.002345247892662883, + -0.007218053564429283, + 0.02766861580312252, + -0.013982987962663174, + 0.0024107377976179123, + 0.015462706796824932, + -0.023675499483942986, + -0.03718412667512894, + 0.03658940643072128, + -0.032936129719018936, + 0.010018191300332546, + 0.026988936588168144, + -0.0015000737039372325, + -0.028886374086141586, + 0.00683927396312356, + 0.0489935576915741, + 0.008828752674162388, + -0.0030815673526376486, + 0.016482224687933922, + -0.0051436154171824455, + -0.010811150074005127, + -0.0008739367476664484, + 0.0052285753190517426, + 0.004966615699231625, + -0.02176390029489994, + 0.00193637830670923, + -0.010301390662789345, + -0.023519739508628845, + 0.0033824669662863016, + -0.026903975754976273, + 0.010896109975874424, + 0.03438045084476471, + -0.022386940196156502, + -0.008170313201844692, + 0.0026018978096544743, + 0.005256895441561937, + 0.021466540172696114, + -0.019469982013106346, + 0.010598750784993172, + -0.011377549730241299, + -0.003550616791471839, + -0.011526229791343212, + 0.014407787472009659, + -0.01442902721464634, + 0.02465253882110119, + -0.01963990181684494, + 0.008311912417411804, + -0.046133238822221756, + 0.029962534084916115, + -0.027965975925326347, + 0.010549190454185009, + -0.000800924317445606, + 0.0010460690828040242, + -0.0032284772023558617, + -0.00098854408133775, + -0.024680858477950096, + -0.01941334269940853, + -0.014698066748678684, + 0.006056934595108032, + 0.007618073374032974, + 0.012170509435236454, + -0.008156152442097664, + 0.004517036024481058, + -0.047209396958351135, + 0.024553418159484863, + -0.006566694006323814, + 0.02415693923830986, + 0.03183165192604065, + -0.002338167978450656, + 0.030302373692393303, + 0.01778494380414486, + 0.015944145619869232, + 0.01527862623333931, + 0.02337813936173916, + 0.012177589349448681, + -0.02534637786448002, + -0.01863454282283783, + 0.013197108171880245, + -0.01632646471261978, + 0.009303111582994461, + -0.014513987116515636, + -0.0057666548527777195, + 0.02165062166750431, + -0.029990853741765022, + -0.005770194809883833, + 0.006226854398846626, + 0.014280347153544426, + 0.017105264589190483, + 0.019583262503147125, + -0.021211661398410797, + 0.013147548772394657, + -0.00829775258898735, + 0.030812133103609085, + 0.020121341571211815, + 0.020517822355031967, + -0.003635576693341136, + -0.01018811110407114, + 0.0272013358771801, + 0.05148571357131004, + -0.008481832221150398, + -0.02223118022084236, + -0.022556859999895096, + -0.0012407689355313778, + 0.000808446784503758, + 0.01883278414607048, + -0.04247996211051941, + 0.018662864342331886, + -0.010924430564045906, + -0.009947391226887703, + 0.029820933938026428, + -0.020999262109398842, + 0.024567577987909317, + -0.010492551140487194, + 0.021976301446557045, + 0.03064221329987049, + 0.020970940589904785, + -0.024256058037281036, + 0.020206302404403687, + -0.03766556829214096, + 0.051882192492485046, + -0.004223216325044632, + 0.027272135019302368, + 0.018917743116617203, + -0.01592998579144478, + -0.001619548536837101, + -0.011448349803686142, + 0.010004031471908092, + -0.013020108453929424, + -0.008269432932138443, + -0.00918275211006403, + -0.0035860168281942606, + -0.018549583852291107, + -0.011851909570395947, + 0.009253552183508873, + 0.010223510675132275, + -0.001725748530589044, + -0.00814199261367321, + -0.004800235852599144, + 0.024411818012595177, + 0.033275969326496124, + 0.06037818640470505, + -0.01115099061280489, + 0.042111802846193314, + -0.006248094607144594, + 0.028603175655007362, + 0.029651014134287834, + 0.028914693742990494, + -0.01336702797561884, + 0.009451791644096375, + 0.003131127217784524, + 0.013671468012034893, + 0.01859206333756447, + -0.020900141447782516, + -0.015037906356155872, + -0.007872953079640865, + -0.005798514932394028, + -0.0108040701597929, + 0.03542828932404518, + -0.02504901774227619, + 0.0026054377667605877, + 0.02330734021961689, + 0.010577511042356491, + 0.00471881590783596, + 0.01597246527671814, + 0.004817935638129711, + 0.0068357340060174465, + 0.009657111018896103, + -0.00873671192675829, + -0.014188307337462902, + 0.020631100982427597, + -0.009862431325018406, + -0.00016516298637725413, + -0.0041205561719834805, + 0.01590166613459587, + -0.015179506503045559, + -0.013197108171880245, + 0.006456954404711723, + -0.011200550012290478, + -0.03205821290612221, + -0.027144696563482285, + 0.025034857913851738, + -0.03556988760828972, + 0.005079895723611116, + -0.025289738550782204, + -0.0005756919854320586, + -0.02075854130089283, + -0.018422143533825874, + -0.01592998579144478, + 0.01802566461265087, + -0.016227345913648605, + 0.034550368785858154, + -0.010832390747964382, + -0.01802566461265087, + 2.440661955915857e-5, + -0.026479177176952362, + 0.0455385185778141, + 0.012156349606812, + -0.019852302968502045, + -0.01483966689556837, + 0.0069667138159275055, + -0.01549102645367384, + 0.029566053301095963, + 0.025983577594161034, + -0.02308077923953533, + -0.007695953361690044, + -0.0057418751530349255, + 0.004145336337387562, + 0.001047839061357081, + -0.0073277936317026615, + 0.005614434834569693, + 0.01574590615928173, + 0.0066445739939808846, + 0.0155335059389472, + -0.0428198017179966, + 0.00987659115344286, + -0.015618465840816498, + 0.03290781006217003, + -0.04307468235492706, + 0.0070127337239682674, + -0.0045665958896279335, + -0.03585308790206909, + -0.03610796853899956, + 0.004690495785325766, + 0.000896061712410301, + -0.008021633140742779, + -0.002180638024583459, + 0.0002010054449783638, + 0.02686149626970291, + -0.04004444554448128, + 0.022585179656744003, + 0.010315550491213799, + 0.004361276049166918, + -0.02225949987769127, + -0.014797186478972435, + 0.010450070723891258, + 0.02191966027021408, + -0.014322827570140362, + -0.00835439283400774, + 0.016482224687933922, + 0.027484536170959473, + -0.04500044137239456, + 0.004294016398489475, + -0.012227148748934269, + 0.0343521311879158, + -0.024567577987909317, + -0.017586704343557358, + 0.020857661962509155, + 0.051882192492485046, + -0.009961551055312157, + 0.03616460785269737, + 0.01778494380414486, + -0.0052037956193089485, + -0.01391218788921833, + 0.021664781495928764, + 0.029254533350467682, + -0.01259530894458294, + 0.03460700809955597, + -0.00600029481574893, + -0.00493829557672143, + 0.01720438525080681, + -0.011597029864788055, + -0.004665716085582972, + 0.011243030428886414, + 0.011299669742584229, + -0.0037948766257613897, + 0.025247257202863693, + -0.013643148355185986, + 0.017374305054545403, + -0.007950833067297935, + 0.016043266281485558, + 0.019540783017873764, + -0.022698460146784782, + -0.02820669487118721, + -0.006021534558385611, + -0.02087182179093361, + -0.04075244441628456, + -0.012092629447579384, + -0.016652144491672516, + -0.03503181040287018, + 0.016340626403689384, + -0.017997344955801964, + 0.03622124716639519, + -0.03353084996342659, + 0.03882668539881706, + -0.004984315484762192, + -0.036447808146476746, + 0.0008403067477047443, + 0.007377353496849537, + 0.01829470321536064, + 0.001421308727003634, + 0.0005270170513540506, + 0.030585572123527527, + -0.020277101546525955, + -0.006134814582765102, + 0.0038762965705245733, + -0.020588621497154236, + 0.007540193386375904, + 0.014995426870882511, + -0.0032691871747374535, + 0.03033069334924221, + 0.03491852805018425, + -0.0032178570982068777, + -0.006357834208756685, + 0.012255469337105751, + 0.003209007205441594, + -0.0216081403195858, + 0.01789822429418564, + -0.012007669545710087, + 0.009557991288602352, + 0.0032373270951211452, + 0.010209350846707821, + -0.01365730818361044, + 0.025289738550782204, + 0.01458478718996048, + -0.02673405595123768, + 0.03129357099533081, + 0.020673582330346107, + -0.014082107692956924, + -0.008835832588374615, + 0.0277818962931633, + 0.02742789499461651, + -0.004262156318873167, + -0.0235338993370533, + 0.01300594862550497, + -0.0027204875368624926, + 0.04525531828403473, + -0.0008000392699614167, + 0.010910270735621452, + -0.005302915349602699, + -0.002361177932471037, + -4.701558282249607e-5, + -0.001449628733098507, + 0.032709572464227676, + -0.017076944932341576, + -0.036136288195848465, + -0.05193883553147316, + 0.047860756516456604, + -0.02002222277224064, + -0.057744428515434265, + 0.008977431803941727, + -0.019696542993187904, + -0.020206302404403687, + -0.010124390944838524, + 0.014726387336850166, + 0.03877004608511925, + 0.024610057473182678, + 0.05757451057434082, + 0.021239981055259705, + -0.017969023436307907, + 0.0021983380429446697, + 0.013508628122508526, + -0.021678941324353218, + 0.009919071570038795, + -0.01682206429541111, + 0.0343521311879158, + 0.023363979533314705, + 0.006959633901715279, + 0.01308382861316204, + -0.028914693742990494, + -0.024751657620072365, + 0.009239391423761845, + 0.0077596730552613735, + -0.011724469251930714, + -0.014712226577103138, + 0.00554717518389225, + 0.011646589264273643, + 0.018422143533825874, + -0.009225231595337391, + 0.0007323368336074054, + -0.013076748698949814, + 0.017048625275492668, + 0.005242735147476196, + -0.002693937625735998, + -0.010662470944225788, + 0.007575593423098326, + -0.008708392269909382, + -0.013664388097822666, + -0.018492944538593292, + 0.024666698649525642, + 0.013565268367528915, + 0.0024886177852749825, + -0.034238848835229874, + 0.011448349803686142, + 0.012326269410550594, + 0.0019275282975286245, + 0.001588573562912643, + 0.011894389055669308, + -0.012531588785350323, + -0.0045205759815871716, + -0.03256797045469284, + -0.03959132358431816, + -0.02990589290857315, + -0.009862431325018406, + -0.012524508871138096, + -0.018195584416389465, + -0.009211071766912937, + 0.02608269639313221, + 0.007462313398718834, + -0.02091430127620697, + -0.02080102078616619, + -0.022556859999895096, + -0.0004606420989148319, + -0.03523004800081253, + 0.010846550576388836, + -0.0018266383558511734, + 0.013876787386834621, + 0.0436127632856369, + 0.024029498919844627, + 0.012368748895823956, + -0.014124587178230286, + -0.020546142011880875, + 0.06672186404466629, + 0.004676335956901312, + 0.009154431521892548, + -0.050409555435180664, + -0.01979566179215908, + 0.011335070244967937, + 0.005887014791369438, + -0.016029106453061104, + 0.017770783975720406, + 0.001313338871113956, + 0.005037415772676468, + 0.02234446071088314, + -0.02234446071088314, + -0.022330300882458687, + -0.0045205759815871716, + 0.013388268649578094, + -0.0019593883771449327, + 0.000937214179430157, + 0.02550213783979416, + -0.027881015092134476, + 0.01367854792624712, + -0.022018780931830406, + -0.025884456932544708, + -0.03463532775640488, + -0.0022337380796670914, + 0.007019813638180494, + -0.00327095715329051, + -0.03641948848962784, + 0.04143212363123894, + 0.00136997876688838, + -0.018280543386936188, + -0.005433895159512758, + 0.001655833562836051, + 0.02570037730038166, + 0.01190146990120411, + -0.010669550858438015, + -0.007575593423098326, + -0.010598750784993172, + 0.008637592196464539, + 0.0035789369139820337, + 0.0019735482055693865, + 0.01728934422135353, + -0.014322827570140362, + -0.022698460146784782, + -0.009041151963174343, + 0.013954667374491692, + 0.008000393398106098, + -0.0009150892146863043, + 0.006315354257822037, + 0.0052285753190517426, + -0.043046362698078156, + 0.012758148834109306, + -0.01802566461265087, + 0.02650749683380127, + -0.01389094814658165, + -0.021438220515847206, + -0.006039234809577465, + -0.008290672674775124, + -0.0011292590061202645, + 0.017430944368243217, + -0.024397658184170723, + -0.018323024734854698, + -0.02959437295794487, + -0.018507104367017746, + -0.026479177176952362, + 0.011412950232625008, + 0.04182860255241394, + -0.0049736956134438515, + -0.028036775067448616, + -0.029452774673700333, + -0.024057818576693535, + 0.022585179656744003, + -0.0139900678768754, + 0.004878115840256214, + -0.00243020779453218, + 0.010910270735621452, + 0.0011248340597376227, + -0.027682775631546974, + 0.005214415490627289, + 0.009543831460177898, + 0.01024475134909153, + 0.0008845567354001105, + -0.011335070244967937, + -0.03245469182729721, + -0.016921184957027435, + -0.029084613546729088, + -0.03469197079539299, + -0.01563262566924095, + -0.03755228593945503, + 0.03684428706765175, + 0.014039627276360989, + 0.011193470098078251, + -0.014181227423250675, + -0.014655587263405323, + 0.012878508307039738, + 0.019469982013106346, + -0.02939613349735737, + -0.01592998579144478, + 0.0027080976869910955, + -0.015179506503045559, + -0.00637553445994854, + -0.0004068783891852945, + 0.016340626403689384, + -0.014669747091829777, + -0.017190225422382355, + 0.03149181231856346, + -0.020206302404403687, + -0.03064221329987049, + 0.00027390726609155536, + -0.03913820534944534, + -0.0032054672483354807, + 0.016482224687933922, + 0.01559014618396759, + 0.010379270650446415, + -0.00030112097738310695, + 0.004010816570371389, + -0.027102215215563774, + -0.012574069201946259, + -0.0016151235904544592, + 0.008517232723534107, + 0.0032868871930986643, + -0.004078076221048832, + -0.006821574177592993, + -0.07017689943313599, + -0.014924626797437668, + 0.012014749459922314, + 0.03729740530252457, + 0.013494468294084072, + -0.018761983141303062, + -0.010046510957181454, + 0.032709572464227676, + -0.012574069201946259, + 0.022160381078720093, + 0.0011451890459284186, + -0.013282068073749542, + 0.02257101982831955, + 0.027187176048755646, + 0.011618269607424736, + 0.010655391030013561, + -0.023052459582686424, + -0.002587737748399377, + 0.018337184563279152, + -0.009635871276259422, + -0.015151186846196651, + -0.01018811110407114, + 0.049021877348423004, + -0.0012097939616069198, + -0.01406794786453247, + 0.02176390029489994, + -0.021622300148010254, + 0.017303504049777985, + -0.022514380514621735, + -0.030528932809829712, + 0.0118660693988204, + 0.00281252758577466, + -0.017303504049777985, + -0.01651054620742798, + -0.006025074515491724, + 0.023675499483942986, + 0.009076551534235477, + -0.006612714380025864, + 0.03939308598637581, + 0.018974382430315018, + 3.628496779128909e-5, + 0.013848467729985714, + 0.0073136333376169205, + -0.0040745362639427185, + -0.012524508871138096, + -0.009267712011933327, + 0.013133388012647629, + -0.012156349606812, + -0.017699984833598137, + 0.0014797187177464366, + 0.004832095932215452, + 0.0020903681870549917, + 0.0075897532515227795, + -0.01354402769356966, + 0.004368355963379145, + 0.008425192907452583, + -0.003607256803661585, + -0.01180942915380001, + -0.0015903435414656997, + 0.003177147125825286, + 0.046558037400245667, + 0.028150055557489395, + -0.021055901423096657, + -0.013650228269398212, + 0.005065735429525375, + -0.0004396233707666397, + -0.007639313116669655, + 0.009119031950831413, + -0.006768473889678717, + -0.003809036687016487, + 0.025034857913851738, + -0.02959437295794487, + 6.770244362996891e-5, + 0.011030630208551884, + -0.010301390662789345, + 0.0004336496058385819, + 0.012623628601431847, + -0.001238998956978321, + 0.004694035742431879, + -0.015915825963020325, + -0.023987019434571266, + 0.008396872319281101, + 0.005971974693238735, + 0.0018779683159664273, + -0.006333054509013891, + -0.005798514932394028, + -0.015476866625249386, + -0.012644869275391102, + 0.000808446784503758, + 0.008106593042612076, + 0.012708588503301144, + 0.01024475134909153, + 0.02029126137495041, + 0.027059735730290413, + -0.017119424417614937, + 0.06185082718729973, + 0.009862431325018406, + -0.02916957437992096, + -0.009189832024276257, + -0.004959535785019398, + 0.007299473509192467, + -0.023236539214849472, + -0.0038373565766960382, + -0.034210529178380966, + 0.011483750306069851, + -0.0009478341671638191, + 0.002155858092010021, + 0.00972083117812872, + -0.019710702821612358, + -0.01612822525203228, + -0.021098380908370018, + 0.03596636652946472, + -0.012276709079742432, + 0.020206302404403687, + -0.012354589067399502, + 0.00914735160768032, + 5.984807285130955e-5, + -0.007610993459820747, + -0.026380056515336037, + -0.01383430790156126, + -0.0018248683772981167, + 0.021905500441789627, + -0.03732572868466377, + -0.03908156603574753, + -7.351025124080479e-5, + -0.0032231672666966915, + -0.007179113570600748, + -0.02511981874704361, + 0.02261349931359291, + 0.023675499483942986, + 0.001588573562912643, + -0.00020321794727351516, + -0.011193470098078251, + 0.004226756282150745, + -0.011101430281996727, + 0.011200550012290478, + 0.025063177570700645, + 0.0022231179755181074, + 0.012566989287734032, + -0.02350557968020439, + 0.016000786796212196, + -0.0007358768489211798, + 0.013876787386834621, + 0.0030939572025090456, + -0.010981069877743721, + -0.004977235570549965, + -0.0202629417181015, + 0.008687152527272701, + -0.018917743116617203, + -0.006287034600973129, + -0.0072428337298333645, + 0.043980922549963, + 0.022514380514621735, + 0.008021633140742779, + -0.0021611680276691914, + -0.03013245388865471, + -0.01632646471261978, + 0.00865883193910122, + 0.010308470577001572, + -0.02048950269818306, + -0.012496189214289188, + 0.006711834110319614, + 0.00631889421492815, + -0.007377353496849537, + 0.0042656962759792805, + -0.02762613631784916, + -0.023817099630832672, + -0.001619548536837101, + -0.008234032429754734, + -0.0008646442438475788, + 0.012581149116158485, + 0.021282460540533066, + -0.012482029385864735, + 0.008616352453827858, + 0.0014788337284699082, + -0.010492551140487194, + -0.030727172270417213, + -0.02847573533654213, + 0.02346310019493103, + 0.01452814694494009, + -0.014513987116515636, + 0.036985889077186584, + -0.007179113570600748, + 0.014598947018384933, + -0.002665617736056447, + 0.0035028269048780203, + 1.3454753570840694e-5, + -0.0054905349388718605, + -0.003499286947771907, + 0.01655302569270134, + 0.0026408375706523657, + 0.0059365746565163136, + -0.005072815343737602, + -0.005876394920051098, + 0.008425192907452583, + -0.0034939770121127367, + 0.020234622061252594, + 0.020503662526607513, + -0.018308863043785095, + -0.006290574558079243, + -0.010931510478258133, + -0.007887112908065319, + 0.0023682578466832638, + 0.0052498155273497105, + -0.011193470098078251, + 0.00914735160768032, + -0.01905934326350689, + 0.021098380908370018, + 0.018974382430315018, + -0.010464230552315712, + -0.012729829177260399, + -0.013359948061406612, + 0.0014699837192893028, + -0.039563003927469254, + 0.011292589828372002, + -0.005656914785504341, + 0.01702030561864376, + -0.013282068073749542, + 0.021735580638051033, + -0.030302373692393303, + 0.017544224858283997, + 0.0015691035659983754, + 0.016029106453061104, + -0.005780814681202173, + 0.02516229823231697, + 0.006329514551907778, + 0.012524508871138096, + -0.018379664048552513, + -0.007610993459820747, + 0.01874782331287861, + -0.009366831742227077, + -0.003078027395531535, + -0.0020974481012672186, + -0.0110943503677845, + 0.0029523572884500027, + 0.005525934975594282, + 0.01887526363134384, + -0.005023255478590727, + 0.010478390380740166, + -0.014103347435593605, + -0.01979566179215908, + -0.01702030561864376, + -0.012566989287734032, + -0.012489109300076962, + 0.04035596549510956, + 0.018960222601890564, + -0.011894389055669308, + -0.021551501005887985, + 0.004240916110575199, + -0.008014553226530552, + 0.014103347435593605, + -0.016227345913648605, + -0.020390382036566734, + -0.007426913361996412, + -0.019625741988420486, + -0.01767166517674923, + 0.006846353877335787, + 0.003092187223955989, + 0.020390382036566734, + -0.000600029481574893, + 0.009926151484251022, + 0.007405673619359732, + 0.024057818576693535, + -0.00455243606120348, + 0.01011023111641407, + -0.01979566179215908, + -0.007568513508886099, + 0.02114086225628853, + 0.035286687314510345, + -0.006924233864992857, + 0.03013245388865471, + 0.004056836478412151, + -0.017218545079231262, + 0.002727567683905363, + -0.004740055650472641, + 0.004531195852905512, + -0.0021027580369263887, + -0.012545748613774776, + -0.004849795717746019, + 0.02114086225628853, + -0.027611976489424706, + -0.011122670024633408, + -0.012439548969268799, + 0.025034857913851738, + 0.00014314863074105233, + 0.004492255859076977, + -0.0034727370366454124, + -0.0058126747608184814, + 0.0279801357537508, + -0.003940016496926546, + 0.01070495042949915, + 0.02581365779042244, + 0.042536601424217224, + -0.009012832306325436, + 0.0030727172270417213, + -0.01527862623333931, + 0.015221986919641495, + 0.009692511521279812, + 0.02044702135026455, + 0.005115295294672251, + 0.028235014528036118, + -0.00889247190207243, + -0.015774225816130638, + -0.01767166517674923, + 0.005717094987630844, + -0.00017069422756321728, + 0.006856973748654127, + -0.01747342385351658, + -0.0026514576748013496, + -0.0024248978588730097, + 0.012743989005684853, + 0.0037169966381043196, + -0.010492551140487194, + -0.028688134625554085, + -0.0012814789079129696, + 0.008956192061305046, + 0.002474457724019885, + -0.009834111668169498, + -0.008481832221150398, + -0.022556859999895096, + 0.001694773556664586, + 0.006039234809577465, + 0.02261349931359291, + -0.01686454564332962, + -0.053581394255161285, + -0.023321500048041344, + 0.0014053788036108017, + 0.002322237938642502, + 0.011136829853057861, + -0.013791827484965324, + -0.020900141447782516, + 0.019016863778233528, + -0.018549583852291107, + -0.015151186846196651, + 0.013310388661921024, + -0.01468390692025423, + -0.021239981055259705, + -0.005150695331394672, + -0.005348935257643461, + 0.0019204482669010758, + 0.005663995165377855, + 0.025445496663451195, + -0.0181389432400465, + -0.005033875349909067, + 0.024709178134799004, + 0.02446845918893814, + 0.01178818941116333, + 0.033049412071704865, + 0.013253748416900635, + -0.023746298626065254, + 0.023363979533314705, + -0.0010496090399101377, + 0.01458478718996048, + -0.0060887946747243404, + 0.025034857913851738, + 0.04078076407313347, + 0.013721028342843056, + 0.014379466883838177, + -0.02446845918893814, + -0.028546534478664398, + -0.019002703949809074, + 0.0009619941702112556, + 0.00752603355795145, + 0.004131176508963108, + 0.003005457343533635, + -0.012120949104428291, + 0.018011504784226418, + -0.008092433214187622, + -0.0009619941702112556, + -0.01921510323882103, + -0.00028054474387317896, + 0.00311519717797637, + -0.02404365874826908, + -0.005263975355774164, + -0.0035240668803453445, + 0.016227345913648605, + -0.00623039435595274, + 0.019243422895669937, + -0.009734991006553173, + -0.014273267239332199, + 0.016652144491672516, + 0.009373911656439304, + -0.03064221329987049, + -0.003798416582867503, + -0.009692511521279812, + 0.008212792687118053, + -0.018974382430315018, + 0.019611582159996033, + 0.01910182274878025, + -0.0018708884017542005, + -0.008134912699460983, + 0.005448054987937212, + 0.00570293515920639, + 0.012857268564403057, + -0.006460494361817837, + 0.027371255680918694, + -0.01666630618274212, + 0.014223707839846611, + -0.056979790329933167, + 0.004786075558513403, + -0.01527862623333931, + 0.02265598066151142, + -0.0011354540474712849, + 0.02496405877172947, + -0.01612822525203228, + 0.03174669295549393, + 0.012588229030370712, + 0.02708805538713932, + 0.004212596453726292, + -0.03877004608511925, + -0.02581365779042244, + -0.004007276613265276, + -0.021041741594672203, + -0.010506710968911648, + -0.01178818941116333, + 0.0005637445137836039, + 0.00796499289572239, + 0.009572151117026806, + 0.006570234429091215, + -0.01111559011042118, + -0.018110623583197594, + -0.00843227282166481, + -0.018549583852291107, + -0.026535816490650177, + -0.01825222373008728, + 0.00012201926438137889, + -0.007497713435441256, + 0.011228869669139385, + -0.0017266335198655725, + -0.0022178080398589373, + 0.013041348196566105, + -0.000847386778332293, + 0.011002310551702976, + -0.00858803279697895, + 0.05428939312696457, + -0.03398396819829941, + 0.02476581744849682, + -0.012729829177260399, + 0.005763114895671606, + -0.025034857913851738, + -0.003175377147272229, + -0.019923102110624313, + 0.01709110476076603, + -0.020999262109398842, + 0.006039234809577465, + -0.031888291239738464, + 0.03197325021028519, + -0.03525836765766144, + 0.03344589099287987, + 0.0306705329567194, + -0.004963075742125511, + -0.010124390944838524, + 0.009274791926145554, + -0.005295835435390472, + 0.005111755337566137, + -0.006301194429397583, + -0.008793352171778679, + 0.006194994319230318, + -0.015788385644555092, + 0.03185997158288956, + 0.0013938738266006112, + -0.0029364274814724922, + 0.007950833067297935, + 0.01282894890755415, + -0.006145434454083443, + 0.013048428110778332, + 0.04562348127365112, + -0.03406893089413643, + -0.009041151963174343, + -0.0024833078496158123, + 0.02453925833106041, + -0.014627266675233841, + -0.013572348281741142, + -0.005971974693238735, + 0.005837454926222563, + -0.020163822919130325, + -0.012588229030370712, + 0.004375436343252659, + 0.006092334631830454, + -0.00228152796626091, + 0.030897092074155807, + -0.012397069483995438, + 0.0009637641487643123, + 0.007433993276208639, + -0.0009248241549357772, + -0.008524312637746334, + 0.015646785497665405, + -0.02704557590186596, + -0.016949504613876343, + -0.0026532276533544064, + -0.01261654868721962, + -0.005437435116618872, + -0.008934952318668365, + -0.005879934877157211, + 0.006333054509013891, + -0.010457150638103485, + -0.018931902945041656, + -0.010867790319025517, + 0.00989783089607954, + -0.003978956490755081, + -0.00825527310371399, + -0.02928285486996174, + -0.023434778675436974, + 0.010570431128144264, + 0.014853826723992825, + -0.010237670503556728, + 0.013459067791700363, + 0.017345985397696495, + -0.0009637641487643123, + -0.0028089876286685467, + -0.01101647038012743, + 0.013048428110778332, + -0.0018195584416389465, + -0.006754314061254263, + -0.012913908809423447, + 0.0031718371901661158, + 0.024680858477950096, + -0.0024974679108709097, + -0.013374107889831066, + 0.005979054607450962, + -0.018082303926348686, + -0.00182309839874506, + -0.0153352664783597, + -0.02107006125152111, + 0.0029063373804092407, + 0.013728108257055283, + 0.007115393877029419, + 0.0016876935260370374, + -0.00026505725691094995, + -0.01354402769356966, + -0.013515708036720753, + -0.00547991506755352, + -0.007752593141049147, + 0.004046216607093811, + 0.004318796098232269, + -0.004354196134954691, + -0.0049276757054030895, + -0.00821987260133028, + 0.004966615699231625, + 0.013982987962663174, + -0.03576812893152237, + 0.02125414088368416, + -0.0019717782270163298, + -0.005242735147476196, + 0.0010850090766325593, + 0.07504793256521225, + -0.004686955828219652, + -0.002853237558156252, + -0.0073136333376169205, + 0.0018992082914337516, + -0.022004621103405952, + 2.686802326934412e-5, + 0.013572348281741142, + 0.021084221079945564, + -0.005327695515006781, + -0.007079993840306997, + -0.020404541864991188, + 0.02601189725100994, + 0.0035913267638534307, + -0.025360537692904472, + 0.014698066748678684, + 0.01184482965618372, + 0.018436303362250328, + -0.01651054620742798, + 0.008460592478513718, + 0.027102215215563774, + -0.000741629337426275, + -0.008503072895109653, + 0.023788778111338615, + -0.0018071683589369059, + 0.006442794110625982, + 0.005522395018488169, + 0.01132799033075571, + -0.003741776803508401, + 0.023675499483942986, + 0.018195584416389465, + -0.00920399185270071, + -0.025728696957230568, + 0.01200058963149786, + 0.011044790036976337, + -0.004017896484583616, + 0.0013248438481241465, + 0.013529867865145206, + -0.02153734117746353, + 0.023590538650751114, + -0.014967107214033604, + -0.019115982577204704, + 0.012864348478615284, + 0.014570627361536026, + -0.01898854412138462, + -0.0004668370820581913, + 0.0030426273588091135, + -0.005925954785197973, + -0.014811347238719463, + 0.016184866428375244, + 0.002842617454007268, + -0.018379664048552513, + 0.014627266675233841, + 0.006860514171421528, + -0.005069275386631489, + -0.006669354159384966, + 0.009196911938488483, + -0.005302915349602699, + -0.012283788993954659, + 0.004941835533827543, + -0.02225949987769127, + -0.007433993276208639, + -0.010365110822021961, + -0.026592455804347992, + 0.008241112343966961, + 0.0006287919241003692, + -0.008672992698848248, + -0.012651949189603329, + 0.008864152245223522, + -0.006825114134699106, + -0.012035989202558994, + 0.010393430478870869, + 0.0015770685859024525, + -0.013041348196566105, + 0.005543635226786137, + 0.023009980097413063, + 0.0016390185337513685, + 0.01836550422012806, + 0.008212792687118053, + -0.005915334913879633, + 0.011490830220282078, + 0.008127832785248756, + -0.008956192061305046, + -0.023094939067959785, + 0.009296031668782234, + 0.00555779505521059, + 0.018931902945041656, + -0.009317271411418915, + 0.015108706429600716, + -0.013975908048450947, + -0.0165955051779747, + 0.00038873590528964996, + -0.013161708600819111, + 0.014195387251675129, + -0.005263975355774164, + -0.011830669827759266, + 0.004124096129089594, + -0.0035311467945575714, + -0.00456305593252182, + -0.007256993558257818, + 0.004941835533827543, + 0.009607551619410515, + 0.018280543386936188, + 0.0023983479477465153, + 0.014174147509038448, + 0.004039136227220297, + 0.04078076407313347, + 0.0036161066964268684, + -0.042423322796821594, + -0.006131274625658989, + 0.0034160970244556665, + -0.01287142839282751, + -0.009940311312675476, + -0.004810855723917484, + -0.02476581744849682, + 0.013338708318769932, + 0.02735709585249424, + -0.009607551619410515, + -0.013784747570753098, + -0.022443579509854317, + -0.006527754012495279, + 0.007731353398412466, + 0.006595014128834009, + -0.007278233766555786, + 0.01628398522734642, + -0.007150793913751841, + -0.015420226380228996, + 0.007901272736489773, + -0.007596833165735006, + 0.003437336999922991, + 0.004534735810011625, + 0.008772112429141998, + 0.016312304884195328, + 0.0031736071687191725, + 0.009557991288602352, + -0.005692314822226763, + 0.010896109975874424, + 0.013097988441586494, + -0.0033435269724577665, + -0.018110623583197594, + 0.013501548208296299, + -0.005568414926528931, + -0.007809232920408249, + 0.02357637882232666, + 0.007901272736489773, + 0.014542306773364544, + -0.014938786625862122, + -0.003605486825108528, + 0.004966615699231625, + -0.0033222869969904423, + 0.037099167704582214, + -0.017275184392929077, + 0.02149486169219017, + 0.005656914785504341, + 0.012064309790730476, + 0.024397658184170723, + -0.024100298061966896, + 0.031463492661714554, + 0.008205712772905827, + -0.00835439283400774, + 0.026535816490650177, + -0.014910466969013214, + -0.01789822429418564, + -0.008609272539615631, + -0.008828752674162388, + 0.023633019998669624, + 0.0049524554051458836, + 0.026578295975923538, + 0.014797186478972435, + 0.009621711447834969, + -0.007104773540049791, + -0.010549190454185009, + -0.0006650768918916583, + -0.029084613546729088, + 0.007787993177771568, + 0.021579820662736893, + 0.0013372338144108653, + 0.010910270735621452, + -0.021282460540533066, + 0.003538226941600442, + 0.007816312834620476, + -0.004722355864942074, + 0.014485667459666729, + -0.01921510323882103, + -0.0018195584416389465, + -0.015958305448293686, + 0.006134814582765102, + -0.010796990245580673, + 0.004478096030652523, + -0.007610993459820747, + -0.008729632012546062, + 0.017884064465761185, + -0.006216234527528286, + 0.004545356146991253, + -0.010952750220894814, + -0.010294310748577118, + 0.024284377694129944, + 0.023491419851779938, + -0.003306357190012932, + 0.0048427158035337925, + -0.007384433411061764, + -0.0023965779691934586, + 0.007122473791241646, + 0.0010212891502305865, + -0.0032532571349292994, + -0.005451595410704613, + -0.02635173685848713, + -0.019200943410396576, + 0.0009805791778489947, + 0.009671271778643131, + -0.035938046872615814, + -0.0039647966623306274, + 0.0057666548527777195, + 0.00038563841371797025, + -0.016737105324864388, + 0.02813589572906494, + 0.01728934422135353, + 0.0019770881626755, + 0.00592241482809186, + -0.00796499289572239, + 0.014783026650547981, + 0.011009390465915203, + 0.012135108932852745, + -0.010060670785605907, + -0.024284377694129944, + 0.012014749459922314, + -0.009749151766300201, + 0.00372407678514719, + 0.013805988244712353, + -0.00598967494443059, + 0.03064221329987049, + 0.004216136410832405, + -0.012701508589088917, + 0.017416784539818764, + 0.015406066551804543, + 0.005579035263508558, + 0.020206302404403687, + 0.009310191497206688, + 0.030160773545503616, + -0.007908352650702, + -0.00914735160768032, + 0.01026599109172821, + -0.0054905349388718605, + 0.013246668502688408, + 0.009083632379770279, + 0.01168906968086958, + 0.00251339771784842, + -0.014103347435593605, + -0.009827031753957272, + -2.784981916192919e-5, + -0.015391906723380089, + -0.011370469816029072, + -0.03630620613694191, + -0.0021983380429446697, + 0.025374697521328926, + 0.012935148552060127, + 0.019314222037792206, + 0.01590166613459587, + 0.017884064465761185, + -0.014542306773364544, + -0.00676139397546649, + -0.012432469055056572, + -0.0040993164293468, + -0.0024939277209341526, + 0.005101135466247797, + 0.01064831018447876, + -0.014910466969013214, + -0.011561629362404346, + 0.005663995165377855, + -0.005971974693238735, + 0.005925954785197973, + 0.00682865409180522, + -0.00265676761046052, + -0.009303111582994461, + 0.004198436159640551, + -0.015420226380228996, + 0.012920988723635674, + -0.013267908245325089, + 0.008687152527272701, + -0.0030939572025090456, + -0.010641230270266533, + 0.017728304490447044, + 0.006329514551907778, + -0.0058976346626877785, + 0.0009203992085531354, + -0.02303829975426197, + -0.005865775048732758, + 0.006382614374160767, + -0.017699984833598137, + 0.011696149595081806, + 0.007972072809934616, + -0.014046707190573215, + -0.005426815245300531, + 0.005511775147169828, + 0.0017053935443982482, + 0.006506514269858599, + -0.004354196134954691, + 0.005048035643994808, + 0.02029126137495041, + 0.004417916294187307, + -0.003911696374416351, + -0.017728304490447044, + -0.015349426306784153, + -0.0007478243205696344, + -0.000981464167125523, + 0.011915629729628563, + 0.016637984663248062, + 0.009685431607067585, + -0.00894911214709282, + 0.021424060687422752, + -0.0037346966564655304, + -0.00387275661341846, + -0.0010159790981560946, + -0.002649687696248293, + -0.003975416533648968, + -0.016071585938334465, + 0.016199026256799698, + 0.024907417595386505, + -0.0048427158035337925, + -0.0012788238236680627, + -0.004194896202534437, + 0.0015859185950830579, + -0.0023983479477465153, + 0.008821671828627586, + 0.001663798582740128, + 0.004644475877285004, + 0.0007022469071671367, + 0.02670573629438877, + 0.023293178528547287, + -0.004081616178154945, + 0.023647179827094078, + -0.009749151766300201, + -0.010889030061662197, + -0.0026195975951850414, + -0.012389988638460636, + 0.0150520671159029, + 0.0016487535322085023, + -0.008878312073647976, + -0.014414867386221886, + -0.011179310269653797, + 0.0036497367545962334, + -0.004980775527656078, + 0.002394807990640402, + -0.003318747039884329, + 0.0049524554051458836, + 0.026691576465964317, + 0.015094546601176262, + -0.011908549815416336, + 0.004148876294493675, + 0.023987019434571266, + -0.0010681940475478768, + 0.004371895920485258, + 0.005582575220614672, + -0.0150520671159029, + -0.003102807328104973, + -0.023406459018588066, + -0.002178868046030402, + 0.005858694668859243, + -0.008262353017926216, + 0.009600471705198288, + -0.001998328138142824, + 0.017813263460993767, + -0.011674909852445126, + -0.01624150574207306, + -0.015137027017772198, + 0.0004871920682489872, + 0.016368946060538292, + 0.019710702821612358, + -0.006159594748169184, + 0.008446432650089264, + -0.0016655685612931848, + -0.02350557968020439, + -0.020064702257514, + -0.006265794392675161, + -0.003401936963200569, + 0.012743989005684853, + 0.0032532571349292994, + 0.009848271496593952, + 0.006485274061560631, + -0.015009586699306965, + 0.01937086321413517, + 0.003350607119500637, + -0.00835439283400774, + -0.0046975756995379925, + 0.008779192343354225, + 0.0045807561837136745, + -0.0047117359936237335, + 0.014967107214033604, + -0.0036992966197431087, + -0.022160381078720093, + 0.0004194896318949759, + 0.014237867668271065, + 0.018549583852291107, + -0.0024656078312546015, + -0.00464093592017889, + -0.005667535122483969, + -0.0034391069784760475, + 0.009288951754570007, + 0.016765424981713295, + 0.009225231595337391, + 0.002189488150179386, + -0.026479177176952362, + 0.010952750220894814, + 0.0034072468988597393, + -0.0032603370491415262, + -0.029027974233031273, + -0.0026762376073747873, + 0.013402428478002548, + 0.018662864342331886, + -0.020121341571211815, + 0.013147548772394657, + 0.016227345913648605, + 0.00125669885892421, + 0.017161905765533447, + -0.0024939277209341526, + 0.00011914302012883127, + 0.007887112908065319, + 0.003465656889602542, + -0.0021877181716263294, + -0.004131176508963108, + 0.028036775067448616, + -0.007246373686939478, + 0.004955995827913284, + 0.01968238316476345, + -0.007433993276208639, + -0.008750872686505318, + 0.019002703949809074, + 0.002366487868130207, + -0.005002015735954046, + 0.035173408687114716, + -0.01209970936179161, + 0.0030320072546601295, + 0.013331628404557705, + -0.002863857429474592, + -0.00933851208537817, + -0.003950636368244886, + 0.009968630969524384, + -0.015037906356155872, + -0.01259530894458294, + 0.00889247190207243, + -0.006626874208450317, + -0.006095874588936567, + -0.0073136333376169205, + 0.010372190736234188, + 0.001545208622701466, + 0.026111016049981117, + -0.0012097939616069198, + 0.016468064859509468, + -0.003975416533648968, + -0.016921184957027435, + -0.01867702417075634, + 0.01733182556927204, + -0.0012664338573813438, + -0.0020673582330346107, + -0.01818142458796501, + -0.018733663484454155, + -0.0004809970851056278, + 0.009430551901459694, + 0.016807904466986656, + -0.029934214428067207, + 0.0010673090582713485, + -0.004046216607093811, + 0.0004256846150383353, + -0.013940507546067238, + -0.006435714196413755, + 0.026181817054748535, + -0.0032284772023558617, + 0.016029106453061104, + 0.0010363340843468904, + -0.004371895920485258, + -0.007033973932266235, + 0.012241309508681297, + 0.021962139755487442, + -0.009727911092340946, + -0.006354294251650572, + 0.024949897080659866, + -0.0058976346626877785, + -0.003430257085710764, + 0.006563154049217701, + -0.006407394539564848, + -0.007161413785070181, + 0.003908156417310238, + -0.020503662526607513, + -0.004839175846427679, + 0.02187718078494072, + -0.0029010274447500706, + 0.005168395582586527, + 0.01740262471139431, + -0.0067967940121889114, + -0.005090515594929457, + -0.00030908596818335354, + 0.003278037067502737, + -0.009657111018896103, + 0.008701312355697155, + 0.003185997251421213, + -0.0016682235291227698, + 0.015816705301404, + 0.033049412071704865, + 0.004240916110575199, + 0.011774029582738876, + 0.013614827767014503, + -0.0163972657173872, + -0.013593588024377823, + 0.0046267760917544365, + 0.01682206429541111, + 0.0039187767542898655, + -0.012970548123121262, + 0.023604698479175568, + 0.021778060123324394, + 0.005968434736132622, + 0.01543438620865345, + 0.005101135466247797, + -0.01168906968086958, + 0.02496405877172947, + -0.0053595551289618015, + 0.006333054509013891, + -0.0110943503677845, + 0.0018531883833929896, + 0.022514380514621735, + -0.0014876837376505136, + 0.008984511718153954, + -0.02793765626847744, + -0.008920792490243912, + -0.003685136791318655, + 0.00044891584548167884, + 0.004789615981280804, + 0.006973793730139732, + 0.01271566841751337, + 0.007681793067604303, + -0.004513496067374945, + -0.00402143644168973, + 0.014124587178230286, + -0.010690790601074696, + -0.0037205368280410767, + -0.004924135748296976, + 0.018351344391703606, + 0.00637553445994854, + -0.00029337723390199244, + 0.03630620613694191, + -0.006517134141176939, + 0.007140173576772213, + 0.010485470294952393, + 0.018464623019099236, + -0.015731746330857277, + -0.010655391030013561, + -0.01798318326473236, + 0.00456305593252182, + -0.009706671349704266, + -0.014924626797437668, + 0.001290328917093575, + -0.012184669263660908, + -0.005246275570243597, + 0.019115982577204704, + -0.016722945496439934, + 0.008028713054955006, + -0.015774225816130638, + 0.00804287288337946, + -0.015575986355543137, + 0.005950734950602055, + 0.03276621177792549, + -0.00677201384678483, + -0.005451595410704613, + 0.0010832390980795026, + 0.003023157361894846, + -0.008418112993240356, + 0.0032426370307803154, + 0.017813263460993767, + 0.0026408375706523657, + 0.01585918664932251, + -0.0031222773250192404, + -0.010018191300332546, + -0.01570342667400837, + -0.02550213783979416, + -0.013374107889831066, + 0.008573872037231922, + -0.0018938983557745814, + -0.02071606181561947, + 0.004368355963379145, + 0.011306749656796455, + 0.0038798365276306868, + -0.0014876837376505136, + -0.019115982577204704, + -0.003816116601228714, + -0.005971974693238735, + 0.002773587591946125, + 0.021905500441789627, + -0.007433993276208639, + 0.0057206349447369576, + 0.010584590956568718, + -0.031208612024784088, + 0.018648702651262283, + -0.013197108171880245, + -0.004609075840562582, + -0.0061277346685528755, + 0.01377766765654087, + -0.002016028156504035, + -0.005571954883635044, + -0.009607551619410515, + -0.01941334269940853, + -0.01474054716527462, + -0.003713456680998206, + -0.0004593145858962089, + 0.00448517594486475, + 0.006095874588936567, + -0.00038541716639883816, + -0.0071118539199233055, + 0.009628791362047195, + -0.033049412071704865, + -0.007610993459820747, + -0.011087270453572273, + -0.015845026820898056, + -0.0004035596502944827, + 0.01952662318944931, + -0.019611582159996033, + -0.009543831460177898, + -0.018776142969727516, + 0.032964449375867844, + -0.01261654868721962, + 0.024057818576693535, + -0.014910466969013214, + -0.031151972711086273, + -0.004832095932215452, + 0.008566792123019695, + 0.026068536564707756, + -0.011243030428886414, + -0.0019292982760816813, + 0.01527862623333931, + 0.021126700565218925, + 0.006102954503148794, + -0.013975908048450947, + 0.014195387251675129, + 0.0192859023809433, + -0.012432469055056572, + -0.02404365874826908, + 0.004095776472240686, + -0.011604109779000282, + -0.032964449375867844, + -0.004042676649987698, + 0.02194797992706299, + -0.012248389422893524, + 0.007462313398718834, + -0.015986625105142593, + -0.010570431128144264, + -0.0030143072362989187, + 0.002150548156350851, + -0.017586704343557358, + 0.020064702257514, + 0.00047347458894364536, + 0.000220143556362018, + 0.021112540736794472, + -0.018153103068470955, + -0.007320713717490435, + -0.019923102110624313, + -0.009473031386733055, + -0.012489109300076962, + -0.009019912220537663, + 0.009487191215157509, + -0.025941096246242523, + 0.025445496663451195, + -0.02485077828168869, + -0.003584246849641204, + -0.023363979533314705, + 0.0007274693343788385, + 0.014499827288091183, + 0.0029859873466193676, + -0.018167264759540558, + 0.008800432085990906, + 0.004258616361767054, + 0.01115099061280489, + -0.010591670870780945, + -0.0035913267638534307, + 0.01921510323882103, + -0.020093021914362907, + 0.002338167978450656, + 0.0003112984704785049, + -0.006842813920229673, + -0.020857661962509155, + -0.007256993558257818, + 0.0025841977912932634, + -0.030472293496131897, + -0.009465951472520828, + -0.001001819153316319, + -0.009635871276259422, + -0.002141698030754924, + -1.3157449757272843e-5, + 0.009904910810291767, + 0.002407197840511799, + -0.010542110539972782, + -0.0030567871872335672, + 0.006403854116797447, + -0.008821671828627586, + -0.012729829177260399, + -0.011271350085735321, + -0.01383430790156126, + 0.03707084804773331, + 0.005515315104275942, + -0.01874782331287861, + -0.009288951754570007, + -0.02782437577843666, + -0.024015339091420174, + -0.019894782453775406, + -0.010032351128757, + 0.01352278795093298, + -0.008963271975517273, + 0.003023157361894846, + -0.0001297630078624934, + 0.021976301446557045, + 0.007483553607016802, + 0.014669747091829777, + -0.0032514871563762426, + 0.009982790797948837, + 0.0026461477391421795, + 0.0015567135997116566, + -0.00012069176591467112, + -0.009515511803328991, + -0.0327945314347744, + 0.006078174803406, + -0.0016416735015809536, + -0.010315550491213799, + 0.011858989484608173, + 0.0036019468680024147, + -0.0013089138083159924, + 0.0010549190919846296, + 0.019158463925123215, + 0.015066226944327354, + -0.0038302766624838114, + -0.010145630687475204, + 0.036023009568452835, + -0.022386940196156502, + 0.014598947018384933, + 0.006495894398540258, + 0.017742464318871498, + -0.01300594862550497, + 0.010379270650446415, + -0.009218151681125164, + -0.009211071766912937, + -0.008326072245836258, + 0.01389094814658165, + 0.0163972657173872, + 0.021962139755487442, + -0.03245469182729721, + -0.025912776589393616, + -0.007256993558257818, + 0.009522591717541218, + 0.001115099061280489, + -0.001647868542931974, + -0.014613106846809387, + 0.00546929519623518, + -0.006064014509320259, + 0.026295097544789314, + -0.02165062166750431, + -0.012899748980998993, + 0.023434778675436974, + -0.015547666698694229, + 0.0007385318749584258, + -0.014698066748678684, + -0.009812870994210243, + -0.005692314822226763, + 0.022670140489935875, + 0.02281174063682556, + 0.00570293515920639, + 0.028957175090909004, + -0.005671075079590082, + 0.01601494662463665, + -0.03372909128665924, + -0.005186095368117094, + 0.011830669827759266, + -0.014669747091829777, + -0.02210373990237713, + 0.016142385080456734, + -0.007872953079640865, + -0.01762918382883072, + -0.003975416533648968, + -0.000999164069071412, + -0.007922513410449028, + -0.009083632379770279, + 0.009501351974904537, + -0.0004243571311235428, + 0.005971974693238735, + 0.006177294533699751, + -0.00432941596955061, + -0.009756231680512428, + -0.031151972711086273, + 0.0003907271602656692, + -0.018662864342331886, + -0.005154235288500786, + 0.02250022068619728, + 0.003430257085710764, + 0.007104773540049791, + 0.01859206333756447, + 0.01621318608522415, + 0.004555976018309593, + -0.035711489617824554, + -0.0028054474387317896, + 0.027541175484657288, + -0.011823589913547039, + 0.01724686473608017, + 0.004924135748296976, + -0.013770587742328644, + 0.003833816619589925, + 0.004417916294187307, + -0.005731254816055298, + -0.01034387107938528, + -0.023491419851779938, + -0.009111952036619186, + 0.022018780931830406, + -0.020475341007113457, + 0.003932936582714319, + 0.00584453484043479, + -0.002824917435646057, + 0.009572151117026806, + 0.005564874969422817, + 0.0021717881318181753, + -0.017190225422382355, + 0.012559909373521805, + 0.0007695068488828838, + 0.0054905349388718605, + -0.00227621803060174, + 0.003488666843622923, + 0.018337184563279152, + -0.00941639207303524, + -0.016142385080456734, + 0.0214099008589983, + -0.009841191582381725, + -0.04808731749653816, + -0.0077596730552613735, + -0.00227621803060174, + 0.0004144008853472769, + 0.004233836196362972, + -0.01275106891989708, + -0.015845026820898056, + 0.010768670588731766, + 0.011929789558053017, + 0.013388268649578094, + 0.007752593141049147, + -0.03001917339861393, + 0.003078027395531535, + -0.009692511521279812, + 0.0017133584478870034, + 0.0007318943389691412, + 0.009154431521892548, + -0.024907417595386505, + 0.007065833546221256, + 0.017954863607883453, + -0.017940703779459, + 0.014152907766401768, + -0.001701853470876813, + 0.006987954024225473, + -0.007076453883200884, + -0.014698066748678684, + -0.0054197353310883045, + 0.010230590589344501, + 0.0059330346994102, + 0.0058728549629449844, + -0.02223118022084236, + 0.01231210958212614, + -0.02048950269818306, + -0.0009177441825158894, + 0.012949308380484581, + -0.003571856766939163, + -0.004754215944558382, + 0.021211661398410797, + 0.018082303926348686, + -0.013211268000304699, + 0.01632646471261978, + -0.030415652319788933, + -0.01983814314007759, + -0.0036603568587452173, + -0.006446334533393383, + -0.013692707754671574, + -0.020659422501921654, + 0.002462067874148488, + -0.011589949950575829, + 0.003177147125825286, + 0.016029106453061104, + 0.008687152527272701, + 0.014995426870882511, + -0.003893996588885784, + -0.012892669066786766, + 0.001862038392573595, + -0.020234622061252594, + -0.003476276993751526, + 0.026309257373213768, + 0.024666698649525642, + 0.0029027974233031273, + 0.0027771275490522385, + 0.005256895441561937, + -0.0023682578466832638, + 0.005805594846606255, + 0.021664781495928764, + 0.017884064465761185, + -0.010230590589344501, + 0.025983577594161034, + -0.012057228945195675, + -0.013742268085479736, + 0.008106593042612076, + 0.011837749741971493, + 0.0017761933850124478, + -0.015986625105142593, + 0.017728304490447044, + 0.005437435116618872, + 0.018082303926348686, + -0.003396627027541399, + -0.005260435398668051, + -0.021509021520614624, + -0.01887526363134384, + -0.04652971774339676, + -0.010400510393083096, + 0.0001784379710443318, + 0.01429450698196888, + -0.008687152527272701, + -0.0235338993370533, + 0.0027364175766706467, + -0.01840798370540142, + 0.020036382600665092, + 0.015321106649935246, + 0.024369338527321815, + -0.016737105324864388, + -0.009430551901459694, + -0.021707260981202126, + 0.014039627276360989, + 0.0003429371863603592, + 0.0019788581412285566, + 0.013154628686606884, + -0.014379466883838177, + -0.014726387336850166, + -0.006223314441740513, + -0.005688774865120649, + -0.008828752674162388, + -0.004463936202228069, + 0.0108040701597929, + -0.002639067592099309, + 0.002116918098181486, + 0.010577511042356491, + -0.004198436159640551, + -0.011965189129114151, + -0.026181817054748535, + -0.00297182728536427, + 0.01952662318944931, + -0.013713947497308254, + 0.01840798370540142, + -0.010485470294952393, + 0.0047365156933665276, + -0.0046975756995379925, + -0.01200058963149786, + 0.016991984099149704, + -0.013055508024990559, + -0.002683317521587014, + -0.013501548208296299, + 0.008205712772905827, + -0.01352278795093298, + 0.0051613156683743, + -0.006159594748169184, + -0.003639116883277893, + 0.014613106846809387, + 0.004428536165505648, + -0.0008602192392572761, + -0.012014749459922314, + -0.021551501005887985, + -0.006354294251650572, + 0.0021700181532651186, + -0.0058976346626877785, + 0.00949427206069231, + -0.02183470129966736, + 0.009090712293982506, + 0.0066658142022788525, + 0.013055508024990559, + -0.0038302766624838114, + -0.00981995090842247, + 0.0013221888802945614, + -0.0005770194693468511, + 0.00825527310371399, + 0.0030603273771703243, + 0.01062707044184208, + 0.012581149116158485, + 0.01697782427072525, + -0.03171837329864502, + 0.009076551534235477, + -0.021863020956516266, + 0.018761983141303062, + -0.023137420415878296, + 0.0010673090582713485, + 0.023477260023355484, + -0.0022107281256467104, + -0.004665716085582972, + 0.008439352735877037, + 0.011455429717898369, + 0.005476375110447407, + 0.016892865300178528, + 0.0013407737715169787, + -0.005193175282329321, + -0.015306946821510792, + -0.0005907369777560234, + 0.0020071782637387514, + -0.01702030561864376, + -0.0070976936258375645, + 0.018167264759540558, + 0.02322237938642502, + -0.0054905349388718605, + -0.003559466917067766, + 0.0118660693988204, + 0.030302373692393303, + -0.021863020956516266, + 0.003124047303572297, + 0.009423471987247467, + 0.004817935638129711, + 0.009034072048962116, + -0.0009504891349934042, + -0.008149072527885437, + 0.016836225986480713, + 0.024411818012595177, + -0.0017876984784379601, + -0.0378071665763855, + -0.006987954024225473, + -0.025303898379206657, + 0.027866855263710022, + 0.032737892121076584, + 0.022797580808401108, + -0.005699395202100277, + 0.006888833828270435, + 0.003993116319179535, + 0.005628595128655434, + -0.0016797285061329603, + -0.012743989005684853, + 0.0006991493864916265, + 0.023024139925837517, + -0.006842813920229673, + -0.008963271975517273, + -0.0043966760858893394, + -0.01979566179215908, + 0.013480308465659618, + -0.007738433312624693, + -0.0036709767300635576, + -0.013296227902173996, + -0.018705343827605247, + -0.008743791840970516, + -0.006949014030396938, + 0.03024573251605034, + -0.0039895763620734215, + -0.00039780716178938746, + 0.006223314441740513, + 0.013105068355798721, + 0.0040745362639427185, + 0.031236931681632996, + -0.006853433791548014, + -0.007858793251216412, + 0.008772112429141998, + -0.0155335059389472, + 0.03265292942523956, + 0.014358227141201496, + -0.025870297104120255, + -0.027796056121587753, + 0.0017062785336747766, + -0.0006491469102911651, + 0.01171030942350626, + 0.0058728549629449844, + -0.007972072809934616, + -0.0219904612749815, + 0.01662382483482361, + 0.014400707557797432, + -0.0010655390797182918, + 0.007356113288551569, + 0.01883278414607048, + -0.012552828527987003, + 0.006793254055082798, + -0.005069275386631489, + 0.0020903681870549917, + 0.007547273300588131, + 0.011745709925889969, + 0.015505186282098293, + 0.009005752392113209, + -0.00023009980213828385, + 0.004909975454211235, + 0.006467574276030064, + -0.02596941776573658, + -0.0034939770121127367, + 0.011582870036363602, + 0.0035683168098330498, + -0.018846943974494934, + 0.031151972711086273, + 0.0048427158035337925, + -0.019087662920355797, + -0.01563262566924095, + -0.008899551816284657, + -0.002033728174865246, + -0.014421947300434113, + 0.014379466883838177, + 3.6976372939534485e-5, + 0.017275184392929077, + -0.015575986355543137, + 0.00035399969783611596, + -0.008878312073647976, + 0.008226952515542507, + 0.024057818576693535, + 0.028022615239024162, + -0.005968434736132622, + 0.003131127217784524, + -0.011363389901816845, + 0.014768866822123528, + 0.001931068254634738, + 0.01666630618274212, + 0.009650031104683876, + -0.0077738333493471146, + -0.020347902551293373, + 0.00690653407946229, + 0.009465951472520828, + 0.024256058037281036, + -0.014322827570140362, + 0.0001096292762667872, + 0.008708392269909382, + -0.01566094532608986, + -0.0034780469723045826, + -0.020503662526607513, + 0.007048133760690689, + 0.002536407671868801, + -0.0020992180798202753, + 0.0037346966564655304, + 0.0005327695398591459, + 0.014188307337462902, + 0.024397658184170723, + 0.00768887298181653, + -0.00024448102340102196, + 0.014910466969013214, + 0.013947587460279465, + -0.012807708233594894, + 0.003368307137861848, + -0.0014044938143342733, + -0.01731766387820244, + 0.03489020839333534, + -0.018818624317646027, + 0.014421947300434113, + 0.006740154232829809, + 0.000713309389539063, + -0.006414474453777075, + 0.0037276167422533035, + -0.0025116277392953634, + 0.005373715423047543, + -0.009133191779255867, + 0.008878312073647976, + 0.006991493981331587, + 0.007285313680768013, + 0.023633019998669624, + 0.009529671631753445, + 0.007979152724146843, + 0.014995426870882511, + -0.0017213234677910805, + 0.00902699213474989, + -0.0015239686472341418, + -0.00018120359163731337, + 0.014698066748678684, + -0.004679875914007425, + 0.0012434239033609629, + 0.016737105324864388, + 0.00906947162002325, + -0.002407197840511799, + -0.00594365457072854, + -0.006998573895543814, + 0.011434189975261688, + -0.015080386772751808, + 0.03758060559630394, + -0.0032585670705884695, + -0.003731156699359417, + 0.0020585081074386835, + -0.0019062883220613003, + 0.025686217471957207, + 0.026833176612854004, + -0.009777471423149109, + 0.004279856104403734, + 0.02357637882232666, + -0.01898854412138462, + 0.0027824374847114086, + -0.026068536564707756, + -0.0049736956134438515, + -0.006832194048911333, + 0.01563262566924095, + 0.0020408080890774727, + 0.003950636368244886, + -0.014365307055413723, + 0.00540203507989645, + -0.028716454282402992, + -0.005968434736132622, + -0.01062707044184208, + -0.0013151088496670127, + -0.007802153006196022, + 0.004658635705709457, + 0.0014089187607169151, + -0.021055901423096657, + -0.025148138403892517, + 0.011958109214901924, + 0.019894782453775406, + 0.0034727370366454124, + -0.01527862623333931, + -0.03185997158288956, + -0.006510054226964712, + -0.0064746541902422905, + 0.005186095368117094, + -0.0031913071870803833, + 0.007724273018538952, + 0.007076453883200884, + -0.011214709840714931, + -0.02878725528717041, + -0.005593195091933012, + 0.023165740072727203, + -0.008304832503199577, + -0.016099905595183372, + -0.01867702417075634, + -0.009232311509549618, + 0.021438220515847206, + 0.0018142483895644546, + 0.000847386778332293, + 0.004807315766811371, + -0.004463936202228069, + -0.013119228184223175, + -0.019880622625350952, + -0.011441269889473915, + 0.009784551337361336, + -0.009600471705198288, + -0.023293178528547287, + 0.03404061123728752, + 0.015519346110522747, + 0.012128029018640518, + 0.01887526363134384, + 0.004163036122918129, + -0.010400510393083096, + 0.01867702417075634, + -0.003039087401703, + 0.004237376153469086, + -0.017048625275492668, + 0.0018213284201920033, + 0.027654455974698067, + -0.004017896484583616, + 0.016000786796212196, + -0.006733073852956295, + 0.004216136410832405, + 0.0035647768527269363, + 0.02793765626847744, + 0.004262156318873167, + 0.02361885830760002, + 0.007426913361996412, + -0.006333054509013891, + -0.014882147312164307, + 0.0013266138266772032, + -0.008134912699460983, + 0.006729533895850182, + -0.01655302569270134, + -0.014082107692956924, + 0.005317075178027153, + -0.0031966171227395535, + 0.012205909006297588, + -0.019115982577204704, + 0.025714537128806114, + -0.010004031471908092, + 0.005246275570243597, + -0.011434189975261688, + 0.016255665570497513, + -0.0025452577974647284, + -0.007469393312931061, + -0.003069177269935608, + 0.004488715901970863, + 0.012057228945195675, + -0.015066226944327354, + -0.01847878284752369, + -0.002164707984775305, + 0.006910074036568403, + 0.0032249372452497482, + -0.0002672697592061013, + 0.007922513410449028, + 0.0058126747608184814, + -0.0018160183681175113, + -0.016637984663248062, + -0.02755533531308174, + 0.014060867950320244, + 0.009841191582381725, + -0.020362062379717827, + 0.0011319139739498496, + -0.026450857520103455, + -0.011802349239587784, + -0.004814395681023598, + 0.002920497441664338, + 0.007210973650217056, + 0.024086138233542442, + 0.006637494079768658, + -0.01818142458796501, + -0.00972083117812872, + 0.0026514576748013496, + 0.002639067592099309, + 0.04296140372753143, + 0.01628398522734642, + 0.015816705301404, + -0.017841584980487823, + 0.013331628404557705, + -0.021863020956516266, + -0.0022319681011140347, + 0.010662470944225788, + 0.001624858588911593, + -0.013685627840459347, + 0.012326269410550594, + 0.00140626379288733, + 0.008963271975517273, + 0.024779977276921272, + -0.006311814300715923, + 0.025247257202863693, + 0.004148876294493675, + -0.01285018865019083, + -0.02087182179093361, + 0.007894192822277546, + -0.011561629362404346, + 0.0021841779816895723, + -0.01452814694494009, + -0.015264466404914856, + 0.004078076221048832, + -0.0012920988956466317, + 0.008071192540228367, + -0.0206452626734972, + -0.00418781628832221, + -0.025841977447271347, + 0.026224296540021896, + -0.004619695711880922, + -0.030274054035544395, + 0.0069206939078867435, + 0.0037169966381043196, + 0.013551107607781887, + 0.019823983311653137, + 0.00821987260133028, + 0.006874673999845982, + 0.004892275668680668, + -0.03542828932404518, + -0.01103771012276411, + 0.014570627361536026, + -0.0032461772207170725, + -0.013126308098435402, + 0.0018443383742123842, + 0.0009708441211842, + 0.028815574944019318, + -0.005858694668859243, + 0.011462509632110596, + 0.0018602684140205383, + 0.011490830220282078, + -0.016142385080456734, + 0.006095874588936567, + 0.011717389337718487, + 0.017416784539818764, + 0.017076944932341576, + -0.019512463361024857, + -0.015760065987706184, + -0.0026815475430339575, + 0.016538865864276886, + -0.000276783510344103, + 0.006064014509320259, + 0.030925413593649864, + -0.0032054672483354807, + 0.027073895558714867, + 0.004998475778847933, + -0.008687152527272701, + 0.003628496779128909, + -0.002224887954071164, + 0.015137027017772198, + -0.0052498155273497105, + -0.015292786061763763, + -0.017105264589190483, + -0.014131667092442513, + 0.0019292982760816813, + -0.024029498919844627, + -0.023236539214849472, + -0.01905934326350689, + -0.0073277936317026615, + 0.008913712576031685, + -0.005370175465941429, + 0.02156566083431244, + -0.00416657654568553, + -0.016368946060538292, + -0.013820148073136806, + -0.02129662036895752, + -2.440661955915857e-5, + 0.007993312552571297, + 0.022514380514621735, + -0.009253552183508873, + -0.010683710686862469, + -0.004152416251599789, + -0.0028727075550705194, + 0.006039234809577465, + -0.0020000983495265245, + 0.0003174934827256948, + 0.003447956871241331, + 0.01001111138612032, + 0.0181389432400465, + -0.001392988720908761, + 0.004506416153162718, + -0.008212792687118053, + 0.00014513987116515636, + -0.014315747655928135, + -0.03265292942523956, + -0.0010735040996223688, + 0.003582476871088147, + -0.004017896484583616, + 0.01429450698196888, + -0.010464230552315712, + 0.015618465840816498, + -0.01099523063749075, + 0.010329711250960827, + 0.019554942846298218, + 0.013876787386834621, + 0.013048428110778332, + -0.00866591278463602, + 0.02616765722632408, + 0.004478096030652523, + -0.004856875631958246, + 0.008580952882766724, + 0.012807708233594894, + 0.0031523671932518482, + 0.008340233005583286, + 0.007405673619359732, + 0.00044426959357224405, + -0.002718717558309436, + 0.00638615433126688, + -0.01863454282283783, + 0.0013991837622597814, + -0.001846108352765441, + -0.013728108257055283, + 0.020786860957741737, + -0.0024479078128933907, + -0.008396872319281101, + 0.029084613546729088, + -0.014152907766401768, + 0.02384541928768158, + -0.006467574276030064, + -0.021778060123324394, + 0.029651014134287834, + 0.010060670785605907, + 0.015207826159894466, + -0.008467672392725945, + 0.003667436772957444, + -0.008226952515542507, + -0.0006982643972150981, + 0.021098380908370018, + 0.01728934422135353, + -0.01682206429541111, + -0.012510349042713642, + 0.009529671631753445, + -0.0010336791165173054, + 0.0028850974049419165, + 0.000125559265143238, + -0.0021098381839692593, + 0.003329367144033313, + 0.011278429999947548, + -0.0035966369323432446, + 0.002150548156350851, + 0.01018811110407114, + 0.0036992966197431087, + 0.018974382430315018, + 0.01190146990120411, + 0.00653129443526268, + -0.010867790319025517, + 0.017218545079231262, + -0.0273995753377676, + -0.014287427067756653, + -0.011058949865400791, + 0.009543831460177898, + -0.013388268649578094, + 0.00843227282166481, + 0.005865775048732758, + 0.012722748331725597, + 0.008106593042612076, + -0.002237278036773205, + -0.010152710601687431, + -0.0036638968158513308, + 0.005649834871292114, + 0.0016080435598269105, + 0.0009004867170006037, + -0.0026408375706523657, + 0.012821868993341923, + 0.019469982013106346, + -0.0023629479110240936, + 0.015023746527731419, + 0.003759476589038968, + -0.01223422959446907, + 0.005954274907708168, + 0.01628398522734642, + -0.028532374650239944, + -0.017275184392929077, + -0.012106789276003838, + 0.023633019998669624, + -0.002235508058220148, + 0.0013195337960496545, + -0.026139337569475174, + 0.0010301390429958701, + 0.007076453883200884, + -0.005522395018488169, + -0.01306258887052536, + -0.006952553987503052 + ], + "0ca14135-c1e7-48ce-8afe-b260ac093908": [ + -0.006327771116048098, + -0.018308892846107483, + -0.003746173344552517, + 0.02970403991639614, + -0.013532659038901329, + 0.01603870652616024, + 0.011203508824110031, + 0.021065544337034225, + -0.055280473083257675, + 0.03269655629992485, + 0.01519844401627779, + 0.00806357804685831, + 0.01341472752392292, + -0.015227926895022392, + -0.01801406219601631, + 0.02416125126183033, + -0.007665558718144894, + 0.025664880871772766, + -0.01866268739104271, + -0.005937122739851475, + 0.061383433640003204, + -0.039359696209430695, + -0.018928034231066704, + -0.007234370801597834, + -0.0014336068416014314, + -0.012220669537782669, + -0.014122317545115948, + 0.005060005933046341, + -0.04903009161353111, + -0.0017081665573641658, + 0.01115928404033184, + 0.01764552667737007, + -0.001450191019102931, + -0.001862951903603971, + -0.006950597744435072, + -0.02678523026406765, + 0.005944493226706982, + -0.030868615955114365, + -0.004134979099035263, + 0.011262474581599236, + -0.0021743651013821363, + 0.014336069114506245, + 0.01365796197205782, + -0.024058060720562935, + -0.0679876059293747, + 0.017129575833678246, + -0.027537046000361443, + 0.0020472200121730566, + 0.03933021426200867, + -0.00892595387995243, + -0.0043745278380811214, + 0.012898776680231094, + -0.01875113509595394, + 0.013377874158322811, + 0.04484351724386215, + -0.03664726763963699, + 0.007709783036261797, + 0.02457401156425476, + -0.018898550420999527, + -0.037472788244485855, + 0.012146961875259876, + -0.01813199371099472, + -0.0063130296766757965, + -0.015817586332559586, + -0.022628139704465866, + -0.026519885286688805, + -0.004109181463718414, + -0.03346311300992966, + -0.03125189244747162, + -0.01875113509595394, + -0.026976870372891426, + 0.0012548667145892978, + -0.04221953824162483, + -0.007739265915006399, + 0.017498111352324486, + -0.0033315697219222784, + 0.0681055411696434, + 0.006777385715395212, + 0.011166655458509922, + -0.024426598101854324, + -0.016156639903783798, + -0.021301407366991043, + -0.008107802830636501, + -0.021036062389612198, + 0.06362413614988327, + -0.016215605661273003, + 0.04558059200644493, + -0.03623450547456741, + 0.006703678518533707, + -0.013790634460747242, + -0.01503628771752119, + -0.012780845165252686, + -0.011247733607888222, + -0.011255104094743729, + -0.022038480266928673, + -0.001223541097715497, + -0.0035932306200265884, + -0.003403434297069907, + 0.01891329139471054, + -0.026180831715464592, + -0.0025263174902647734, + -0.0030938636045902967, + 0.010466435924172401, + -0.02784661576151848, + 0.028333084657788277, + 0.013385244645178318, + -0.024382373318076134, + 0.01764552667737007, + -0.0039175427518785, + 0.0660417377948761, + -0.026018675416707993, + -0.035143639892339706, + 0.037266407161951065, + -0.0009839923586696386, + -0.051919419318437576, + -0.01710009202361107, + -0.016923194751143456, + -0.026519885286688805, + 0.022495467215776443, + -0.03700106218457222, + 0.007709783036261797, + 0.04006728529930115, + -0.0234241783618927, + 0.008609011769294739, + -0.006371995434165001, + 0.013665332458913326, + 0.014711976051330566, + -0.0031344026792794466, + 0.013694815337657928, + -0.011409888975322247, + -0.016716813668608665, + 0.012928259558975697, + 0.014829907566308975, + 0.03299138695001602, + 0.0007485896931029856, + 0.019620882347226143, + 0.026799973100423813, + 0.015684911981225014, + -0.043428339064121246, + 0.0370895117521286, + -0.039153315126895905, + -0.024308666586875916, + -0.024146510288119316, + 0.022981934249401093, + 0.009891519322991371, + -0.0031141331419348717, + -0.05430753529071808, + 0.044696103781461716, + -0.059260666370391846, + 0.02802351303398609, + -0.0380624458193779, + -0.02178787626326084, + 0.0159944836050272, + 0.006593117490410805, + 0.06557001173496246, + 0.0004896928439848125, + -0.031074995175004005, + 0.020461145788431168, + 0.004028103780001402, + 0.047939226031303406, + 0.0447845533490181, + -0.04236695170402527, + -0.010680187493562698, + 0.039978835731744766, + -0.004669357091188431, + 0.027021095156669617, + 0.04546266049146652, + 0.025753328576683998, + -0.010215830989181995, + 0.025163671001791954, + -0.03720744326710701, + -0.013237830251455307, + 0.03938917815685272, + -0.0027032149955630302, + 0.043221957981586456, + -0.022038480266928673, + 0.04068642854690552, + 0.02834782563149929, + 0.029600849375128746, + -0.011601528152823448, + -0.020947612822055817, + -0.02186158299446106, + 0.004860996268689632, + 0.009935743175446987, + 0.026888420805335045, + 0.005616495851427317, + -0.009464017115533352, + 0.005546473897993565, + -0.0005891976761631668, + -0.0032799746841192245, + 0.020372696220874786, + 0.001487966044805944, + 0.02363055944442749, + 0.005498564336448908, + -0.031163444742560387, + -0.011174025945365429, + 0.028598429635167122, + 0.03381690755486488, + -0.007827715016901493, + 0.008911211974918842, + -0.02977774664759636, + -0.02243650145828724, + -0.021728910505771637, + 0.01792561449110508, + -0.025030996650457382, + -0.0066152298822999, + -0.02259865589439869, + -0.044696103781461716, + 0.010127382352948189, + -0.04003780335187912, + 0.024456080049276352, + -0.020652784034609795, + 0.0025742272846400738, + 0.008233104832470417, + -0.01707061007618904, + -0.008763797581195831, + -0.005940807983279228, + -0.005082117859274149, + 0.00762133440002799, + -0.022495467215776443, + -0.02137511596083641, + 0.028598429635167122, + -0.03293241932988167, + -0.01636301912367344, + -0.05923118069767952, + -0.003027527127414942, + -0.012154333293437958, + 0.00640147877857089, + -0.02616608887910843, + -0.0029427637346088886, + -0.03080965019762516, + 0.010989757254719734, + -0.013650591485202312, + 0.01670207269489765, + -0.021198218688368797, + 0.05545736849308014, + 0.007938276045024395, + 0.0005961077404208481, + -0.002714271191507578, + -0.012345971539616585, + 0.010761264711618423, + 0.00978095829486847, + -0.025959709659218788, + -0.0013737196568399668, + 0.014601415023207664, + 0.005262700840830803, + 0.02653462626039982, + 0.04499093443155289, + -0.011505709029734135, + -0.0387110710144043, + -0.033286213874816895, + 0.03909434750676155, + -0.013665332458913326, + -0.0203874371945858, + -0.001319360570050776, + 0.026976870372891426, + 0.041040223091840744, + -0.025546949356794357, + 0.014638268388807774, + -0.006887946743518114, + 0.024264441803097725, + 0.02563539706170559, + 0.007109068799763918, + 0.021964773535728455, + 0.03446553274989128, + -0.025163671001791954, + 0.010164235718548298, + -0.017822423949837685, + 0.03617554157972336, + 0.036322955042123795, + -0.02551746554672718, + -0.03658830001950264, + -0.007013249211013317, + -0.009707250632345676, + -0.001990096876397729, + -0.015743877738714218, + 0.01673155650496483, + -0.009714621119201183, + 0.04101073741912842, + -0.012780845165252686, + -0.034229665994644165, + 0.009102851152420044, + 0.004503515549004078, + 0.016009224578738213, + 0.05038630589842796, + -0.009803070686757565, + -0.07695041596889496, + 0.008048837073147297, + -0.04976716637611389, + -0.007717153988778591, + -0.0012216983595862985, + -0.023188315331935883, + 0.009316601790487766, + 0.03688313066959381, + 0.013407357037067413, + -0.011196138337254524, + 0.0038806891534477472, + 0.007035361137241125, + -0.009891519322991371, + 0.001136013655923307, + 0.010223201476037502, + 0.009825182147324085, + 0.0015515385894104838, + -0.014409775845706463, + 0.03744330629706383, + -0.011638381518423557, + 0.05955549329519272, + -0.00013992869935464114, + -0.04796870797872543, + 0.004322933033108711, + 0.04357575252652168, + -0.008667977526783943, + -0.0599682554602623, + 0.030116800218820572, + 0.00422711344435811, + 0.02539953403174877, + -0.03588071092963219, + 0.030750682577490807, + -0.03815089538693428, + -0.015154220163822174, + 0.018323633819818497, + -0.013598996214568615, + -0.06592380255460739, + -0.00896280724555254, + -0.00610296381637454, + -0.04101073741912842, + 0.03927124664187431, + -0.03818037733435631, + -0.005494878627359867, + -0.04133505001664162, + -0.03019050881266594, + -0.01735069788992405, + -0.004341359715908766, + -0.029099639505147934, + -0.04581645503640175, + -0.03458346426486969, + -0.05610599368810654, + 0.002778765046969056, + -0.003584017278626561, + -0.025782812386751175, + -0.0028414162807166576, + -0.015316375531256199, + 0.020785456523299217, + -0.01174894254654646, + 0.0028580003418028355, + -0.028318341821432114, + 0.042809195816516876, + 0.03157620504498482, + -0.013510547578334808, + -0.0077834902331233025, + 0.0009383860160596669, + -0.0035969160962849855, + 0.06439069658517838, + -0.022819777950644493, + 0.02899644896388054, + -0.006865834351629019, + -0.0019716701935976744, + -0.020416921004652977, + -0.004098125733435154, + -0.026682041585445404, + 0.013274683617055416, + -0.047438014298677444, + 0.008505822159349918, + -0.007510773371905088, + -0.0028782698791474104, + 0.040421079844236374, + -0.04549214243888855, + -0.029423952102661133, + 0.01636301912367344, + -0.013606366701424122, + -0.03829830884933472, + -0.025075221434235573, + 0.03048533760011196, + -0.03393483906984329, + -0.01000945083796978, + -0.03184155002236366, + 0.03434760123491287, + -0.022878743708133698, + -0.02259865589439869, + 0.012301747687160969, + 0.011181396432220936, + 0.0127145079895854, + -0.009626172482967377, + 0.006515725050121546, + 0.019620882347226143, + 0.04947233572602272, + -0.0130683034658432, + 0.014881502836942673, + 0.020328471437096596, + 0.009117592126131058, + -0.021360374987125397, + 0.01578810252249241, + -0.028111962601542473, + 0.002583440626040101, + -0.02522263675928116, + -0.008749055676162243, + 0.018530013039708138, + 0.002292296849191189, + -0.014660380780696869, + 0.02186158299446106, + 0.019576657563447952, + -0.031487755477428436, + -0.013237830251455307, + 0.014866760931909084, + 0.018530013039708138, + 0.007812973111867905, + -0.02223012037575245, + 0.011911098845303059, + 0.020210539922118187, + -0.018515272065997124, + 0.025252118706703186, + 0.0033002442214637995, + 0.02899644896388054, + 0.01690845377743244, + 0.01914915442466736, + 0.016716813668608665, + -0.011933211237192154, + 0.05819927901029587, + -0.005885527469217777, + -0.03950710967183113, + 0.05156562477350235, + 0.03478984162211418, + -0.009102851152420044, + 0.01509525440633297, + 0.019620882347226143, + 0.014129688031971455, + 0.00015063928731251508, + 0.019620882347226143, + 0.00892595387995243, + -0.037590719759464264, + 0.0038143524434417486, + 0.013746410608291626, + -0.023394694551825523, + -0.01259657647460699, + 0.011144543066620827, + 0.01540482509881258, + 0.005800764076411724, + -0.006976395379751921, + -0.006047683767974377, + -0.006582061294466257, + -0.022981934249401093, + 0.039772454649209976, + -0.016628365963697433, + -0.03458346426486969, + -0.03375793993473053, + -0.0030293697491288185, + -0.00640147877857089, + 0.022716587409377098, + 0.013171494007110596, + -0.022672364488244057, + 0.009434533305466175, + 0.008439484983682632, + -0.01948820799589157, + -0.015109995380043983, + -0.014299214817583561, + 0.005262700840830803, + -0.008579528890550137, + -0.03605761006474495, + 0.022746071219444275, + -0.07064107060432434, + -0.0057123154401779175, + 0.027625493705272675, + 0.017910873517394066, + 0.004639874212443829, + 0.0214193407446146, + -0.018559496849775314, + 0.006371995434165001, + 0.03552691638469696, + 0.006047683767974377, + 0.0014207081403583288, + -0.01562594622373581, + 0.006902688182890415, + -0.0030588526278734207, + 0.0013000124599784613, + 0.008498450741171837, + -0.018353115767240524, + -0.0010678344406187534, + -0.003777498845010996, + 0.016539916396141052, + -0.021684685721993446, + 0.005402744747698307, + -0.031694136559963226, + 0.01524266880005598, + 0.0033979061990976334, + -0.0025060479529201984, + -0.022716587409377098, + 0.0394776277244091, + -0.026490401476621628, + -0.0035563770215958357, + -0.0404505617916584, + 0.029630333185195923, + 0.0203874371945858, + 0.012581835500895977, + 0.025384793058037758, + 0.010982386767864227, + -0.04289764538407326, + 0.015611205250024796, + -0.010326392017304897, + 0.0006186806131154299, + -0.002327307825908065, + 0.01919337920844555, + -0.027021095156669617, + -0.017409663647413254, + -0.030057834461331367, + 0.02256917394697666, + 0.02736014872789383, + -0.015699652954936028, + 0.0010042618960142136, + 0.024028578773140907, + -0.038416240364313126, + -0.0542190857231617, + 0.07370729744434357, + -0.05513305589556694, + 0.002290454227477312, + 0.03720744326710701, + -0.002835888182744384, + -0.028790069743990898, + -0.008048837073147297, + 0.04770336300134659, + 0.01923760399222374, + -0.0002708742977119982, + -0.0102747967466712, + -0.0012603946961462498, + 0.012169074267148972, + 0.006095593329519033, + 0.00361534277908504, + -0.001150755095295608, + -0.018279409036040306, + -0.005233217962086201, + -0.016584141179919243, + -0.009729363024234772, + 0.029217571020126343, + -0.03697158023715019, + -0.0007098933565430343, + 0.0383867584168911, + -0.019679848104715347, + 0.011314069852232933, + 0.01259657647460699, + 0.00278982101008296, + 0.022215379402041435, + -0.03131086006760597, + -0.003604286815971136, + -0.026799973100423813, + 0.003906486555933952, + -0.02075597457587719, + 0.024927807971835136, + -0.016805263236165047, + 0.022303827106952667, + -0.01310515683144331, + 0.020697008818387985, + -0.0465240441262722, + 0.03685364872217178, + -0.03968400880694389, + 0.023763231933116913, + 0.005233217962086201, + 0.0017450201557949185, + -0.008586900308728218, + 0.017011644318699837, + -0.016996901482343674, + -0.034318115562200546, + -0.03396432101726532, + 0.02197951450943947, + -0.004765176679939032, + 0.012729249894618988, + -0.012338601052761078, + 0.013606366701424122, + 0.005358520429581404, + 0.00713855167850852, + -0.007680300157517195, + 0.009051255881786346, + 0.0029814601875841618, + -0.011925840750336647, + 0.03249017521739006, + 0.007643446326255798, + -0.011903728358447552, + 0.007805602625012398, + 0.019783038645982742, + -0.008034095168113708, + -0.040096767246723175, + -0.011999547481536865, + 0.014372922480106354, + -0.009080738760530949, + -0.005959234666079283, + -0.01956191658973694, + 0.01501417625695467, + 0.02128666639328003, + -0.01631879433989525, + -0.03163517266511917, + -0.006659454200416803, + 0.012272264808416367, + 0.01944398507475853, + 0.002725327154621482, + -0.025915484875440598, + 0.014476113021373749, + -0.01540482509881258, + 0.016510434448719025, + -0.00027594168204814196, + 0.04788025841116905, + 0.0017109306063503027, + -3.2995532819768414e-5, + 0.023763231933116913, + 0.03971349075436592, + 0.009294490329921246, + -0.00548750814050436, + -0.02535530924797058, + 0.021846842020750046, + -0.02202373929321766, + 0.00465461565181613, + -0.013871712610125542, + 0.01829415000975132, + -0.009545094333589077, + -0.015272151678800583, + 0.024441339075565338, + -0.02050536870956421, + 0.02256917394697666, + -0.007613963447511196, + 0.005590698216110468, + 0.006792127154767513, + 0.011395148001611233, + 0.006910059135407209, + 0.014955210499465466, + -0.032549142837524414, + 0.060027219355106354, + 0.011785796843469143, + 0.024677202105522156, + 0.010429582558572292, + -0.012847181409597397, + 0.00010917893087025732, + -0.0004841648042201996, + 0.04360523447394371, + -0.02781713381409645, + -0.009265006519854069, + 0.005432227626442909, + -0.008896470069885254, + -0.005889212712645531, + 0.0029575051739811897, + 0.001214327639900148, + 0.014734088443219662, + -0.01587655209004879, + 0.0024765650741755962, + -0.00023517233785241842, + 0.012810328043997288, + -0.009405050426721573, + 0.054779261350631714, + -0.014822537079453468, + 0.04351678863167763, + -0.023969613015651703, + 0.0474969819188118, + 0.01608293130993843, + 0.020859165117144585, + -0.014719346538186073, + -0.0002212370454799384, + -0.0012834282824769616, + 0.016996901482343674, + 0.011100318282842636, + -0.0316646546125412, + -0.01592077501118183, + -0.013532659038901329, + -0.01948820799589157, + 0.010495918802917004, + 0.036205023527145386, + -0.012132220901548862, + 0.005358520429581404, + 0.006032941862940788, + -0.002467351732775569, + 0.02719799242913723, + 0.013584254309535027, + -0.013377874158322811, + 0.023660041391849518, + 0.016510434448719025, + -0.015566980466246605, + -0.020903388038277626, + 0.02572384662926197, + -0.0028027198277413845, + -0.01948820799589157, + -0.006596802733838558, + 0.004271337762475014, + -0.009434533305466175, + -0.014365551993250847, + 0.012655542232096195, + 0.010260055772960186, + -0.014210766181349754, + -0.015773361548781395, + -0.004846254829317331, + -0.043133508414030075, + 0.003821723163127899, + -0.04065694287419319, + 0.012898776680231094, + -0.018102511763572693, + -0.009036513976752758, + -0.019989417865872383, + 0.011992176994681358, + -0.026770489290356636, + 0.0176750086247921, + -0.024264441803097725, + -0.017409663647413254, + 0.0006942306063137949, + -0.017910873517394066, + 0.03543846681714058, + 0.0102747967466712, + -0.04776232689619064, + -0.01824992708861828, + -0.0040465304628014565, + -0.013856971636414528, + 0.0007043653167784214, + 0.002251757774502039, + -0.027743425220251083, + -0.013864342123270035, + -0.012478644959628582, + 0.012390196323394775, + 0.011395148001611233, + 0.012928259558975697, + -0.022215379402041435, + 0.005365890916436911, + -0.01698216050863266, + 0.03145827353000641, + -0.04151194915175438, + -0.011409888975322247, + 0.00015490048099309206, + 0.02379271574318409, + -0.03284396976232529, + 0.024220217019319534, + -0.014910985715687275, + -0.04053901135921478, + -0.025252118706703186, + -0.00674790283665061, + 0.0021522529423236847, + 0.015684911981225014, + -0.0011120587587356567, + 0.0003607050748541951, + 0.00610296381637454, + -0.006928485818207264, + 0.013009337708353996, + 0.0014815166359767318, + 0.002065646927803755, + -0.02616608887910843, + -0.019665107131004333, + 0.020534852519631386, + 0.03608709201216698, + -0.03782658278942108, + -0.02904067374765873, + 0.032224830240011215, + 0.029527142643928528, + -0.028377309441566467, + 0.0009913630783557892, + -0.01751285418868065, + 0.05186045169830322, + 0.0031012343242764473, + -0.03720744326710701, + -0.014800424687564373, + 0.05463184788823128, + -0.018279409036040306, + 0.04048004746437073, + 0.01524266880005598, + -0.01965036429464817, + -0.008734314702451229, + 0.022864002734422684, + 0.02379271574318409, + -0.030337922275066376, + 0.020357955247163773, + -0.005111600738018751, + -0.0014999434351921082, + -0.004853625316172838, + -0.016112415120005608, + -0.011424630880355835, + 0.0068216100335121155, + 0.007024305406957865, + 0.006158244330435991, + 0.02977774664759636, + -0.0185447558760643, + 0.021153993904590607, + -0.012780845165252686, + 0.05295132100582123, + 0.013127269223332405, + -0.020240023732185364, + 0.00047587271546944976, + -0.0012981697218492627, + -0.007982499897480011, + -0.05041579157114029, + -0.007212258875370026, + -0.04336937144398689, + -0.031074995175004005, + -0.00556858628988266, + 0.0008305890951305628, + 0.03682416304945946, + -0.03818037733435631, + 0.017822423949837685, + -0.001988254254683852, + -0.024750908836722374, + -0.006843722425401211, + 0.025753328576683998, + 0.019989417865872383, + 0.029099639505147934, + 0.008660607039928436, + 0.008704831823706627, + -0.013591624796390533, + 0.0027935064863413572, + 0.012817698530852795, + -0.00639779306948185, + -0.010164235718548298, + -0.011992176994681358, + -0.0006670510047115386, + 0.01796983927488327, + 0.03511415421962738, + 0.014535078778862953, + -0.01829415000975132, + -0.01656940020620823, + 0.014225508086383343, + -0.022215379402041435, + 0.028893260285258293, + -0.026652557775378227, + -0.008638494648039341, + 0.006390422582626343, + -0.02063804306089878, + -0.032873451709747314, + 0.003289188025519252, + 0.018235184252262115, + -0.017409663647413254, + 0.02363055944442749, + 0.02531108446419239, + -0.012353342957794666, + -0.015522756613790989, + -0.0014750672271475196, + 0.014336069114506245, + -0.00927237793803215, + -0.011166655458509922, + 0.018765877932310104, + 0.02427918277680874, + 0.03818037733435631, + -0.002881955122575164, + 0.012080625630915165, + 0.01649569347500801, + 0.004392954986542463, + 0.033374663442373276, + -0.0008743527578189969, + 0.019797779619693756, + -0.016480950638651848, + -0.034229665994644165, + -0.030308440327644348, + 0.03938917815685272, + -0.04189522564411163, + -0.03859313949942589, + -0.01640724390745163, + -0.01197743508964777, + -0.00945664569735527, + -0.025075221434235573, + 0.00180767138954252, + 0.02252494916319847, + 0.030337922275066376, + 0.05410115420818329, + 0.008977548219263554, + -0.009294490329921246, + 0.015286892652511597, + 0.004639874212443829, + 0.007186461240053177, + 0.00935345608741045, + -0.01735069788992405, + 0.0019016482401639223, + 0.007470234297215939, + -0.009795699268579483, + 0.022613398730754852, + -0.009825182147324085, + -0.015950258821249008, + 0.007064844015985727, + 0.00038005324313417077, + -0.02276081219315529, + -0.006519410293549299, + 0.003213637974113226, + 0.0101937185972929, + 0.01730647310614586, + -0.03219534829258919, + 0.012191186659038067, + -0.0048057157546281815, + 0.027537046000361443, + 0.017498111352324486, + -0.0024010150227695704, + 0.004348730202764273, + -0.009014402516186237, + -0.004230798687785864, + -0.003910171799361706, + -0.001037430134601891, + 0.016687331721186638, + 0.0036448256578296423, + -0.005634922534227371, + -0.014033868908882141, + 0.0024931493680924177, + 0.0028561577200889587, + -0.014240249060094357, + 0.001988254254683852, + 0.036205023527145386, + -0.005126342177391052, + 0.005369576625525951, + -0.013488435186445713, + -0.032961901277303696, + -0.015979740768671036, + -0.012080625630915165, + -0.009154446423053741, + 0.0005518833640962839, + 0.01435818150639534, + -0.008601641282439232, + -0.014409775845706463, + -0.017335955053567886, + 0.010540143586695194, + 0.0015450891805812716, + 0.017203282564878464, + -0.03343362733721733, + 0.0029925161506980658, + -0.004289764445275068, + 0.0076581877656280994, + 0.023527368903160095, + 0.01571439579129219, + 0.022097447887063026, + -0.0015524599002674222, + -0.018485790118575096, + 0.0428386814892292, + 0.035379502922296524, + 0.018721653148531914, + -0.02013683319091797, + 0.00041851922287605703, + 0.017822423949837685, + 0.028642654418945312, + -0.009478758089244366, + -0.0004901534994132817, + 0.013127269223332405, + -0.008314182981848717, + -0.004271337762475014, + -0.014984693378210068, + -0.02560591511428356, + 0.008085690438747406, + 0.01294300053268671, + -0.016967419534921646, + 0.010061046108603477, + 0.03555639833211899, + -0.027227474376559258, + 0.011314069852232933, + -0.01813199371099472, + 0.00770241254940629, + -0.03529105335474014, + -0.009596689604222775, + -0.0005938044050708413, + -0.007967758923768997, + -0.01354003045707941, + 0.020652784034609795, + -0.0031344026792794466, + -0.008373148739337921, + 0.00814465619623661, + -0.011800537817180157, + 0.037472788244485855, + -0.0049310182221233845, + -0.02158149518072605, + -0.004370842594653368, + -0.016539916396141052, + -0.0031896831933408976, + 0.005089488811790943, + -0.010960274375975132, + -0.005340093746781349, + -0.008078319951891899, + -0.0133115379139781, + 0.013503176160156727, + 0.02637246996164322, + -0.0015183702344074845, + -0.0064162202179431915, + -0.01575862057507038, + 0.0020214226096868515, + -0.04434230923652649, + -0.004407696425914764, + -0.008874358609318733, + 0.015891293063759804, + -0.007492346689105034, + -0.02169942855834961, + -0.018559496849775314, + -0.008667977526783943, + 0.01788138970732689, + 0.0014372922014445066, + -0.01608293130993843, + -0.006969024892896414, + -0.030986547470092773, + -0.011564674787223339, + -0.044902484863996506, + 0.02850998193025589, + 0.017424404621124268, + -0.010518031194806099, + -0.02420547604560852, + -0.037060026079416275, + -0.025532206520438194, + 0.015331117436289787, + -0.02236279286444187, + -0.015964999794960022, + -0.016141897067427635, + 0.007930904626846313, + -0.020402180030941963, + -0.025487981736660004, + -0.002708743093535304, + 0.008808021433651447, + 0.02296719327569008, + 0.0007426009979099035, + -0.00892595387995243, + -0.01698216050863266, + -0.014829907566308975, + -0.03072120063006878, + -0.04068642854690552, + -0.026932645589113235, + -0.03933021426200867, + 0.014019127935171127, + -0.0011387777049094439, + 0.002618451602756977, + -0.016539916396141052, + 0.0053290375508368015, + 0.01673155650496483, + 0.027964547276496887, + -0.03546794876456261, + 0.0021172419656068087, + 0.006902688182890415, + 0.0030828076414763927, + -0.017173800617456436, + 0.013422098010778427, + -0.0031288745813071728, + -0.03414122015237808, + -0.004779918119311333, + 0.02632824517786503, + -0.013363132253289223, + -0.016598882153630257, + 0.003289188025519252, + -0.032755520194768906, + 0.006018200423568487, + 0.02063804306089878, + -0.006283546797931194, + 0.0102747967466712, + 0.0025115760508924723, + 0.0030385833233594894, + -0.005483822897076607, + -0.0012511813547462225, + 0.006851092912256718, + 0.010724411346018314, + 0.015139478258788586, + 0.007820343598723412, + -0.006419905461370945, + -0.07205624878406525, + -0.0037848695646971464, + 0.006600488442927599, + 0.035143639892339706, + -0.008476339280605316, + -0.009478758089244366, + -0.0008623753674328327, + 0.019989417865872383, + -0.005336408037692308, + 0.01109294779598713, + 0.014925727620720863, + -0.0002214673877460882, + -0.0030846502631902695, + 0.03313880041241646, + 0.022244861349463463, + 0.014660380780696869, + -0.03543846681714058, + 0.012906147167086601, + 0.0007587244617752731, + -0.003976508509367704, + -0.012898776680231094, + -0.015493273735046387, + 0.026799973100423813, + 0.0010807332582771778, + -0.009515611454844475, + 0.009685138240456581, + -0.017704492434859276, + 0.01031902153044939, + -0.009670397266745567, + -0.012146961875259876, + 0.02482461743056774, + 0.012220669537782669, + 0.008948065340518951, + -0.009950485080480576, + -0.0008172296220436692, + 0.00958194863051176, + 0.008321553468704224, + 0.001520212972536683, + 0.01829415000975132, + -0.008321553468704224, + 0.00560912536457181, + 0.01985674537718296, + 0.013060932978987694, + 0.00587447127327323, + -0.004632503259927034, + -0.03888797014951706, + -0.002795349108055234, + -0.03092758171260357, + -0.01438029296696186, + -0.013318908400833607, + 0.013407357037067413, + -0.025871260091662407, + 0.0007785332854837179, + -0.023822197690606117, + 0.0054064299911260605, + 0.0018998055020347238, + -0.011188766919076443, + -0.023807456716895103, + 0.0013580569066107273, + -0.008137285709381104, + 0.03962504118680954, + 0.01372429821640253, + -0.010444323532283306, + -0.004732008557766676, + -0.026401953771710396, + -0.0031215038616210222, + 0.013997015543282032, + 0.0061656152829527855, + 0.0027197992894798517, + -0.009102851152420044, + 0.005491193383932114, + -0.02784661576151848, + -0.009817811660468578, + 0.029070157557725906, + 0.0013608209555968642, + 0.029423952102661133, + -0.004275023005902767, + 0.016510434448719025, + 0.005498564336448908, + 0.003560062265023589, + -0.02059381827712059, + 0.008815392851829529, + 0.0034550295677036047, + 0.0040244185365736485, + -0.010739153251051903, + -0.007120124530047178, + -0.016790522262454033, + -0.010562255047261715, + 0.012242781929671764, + 0.0020859164651483297, + 0.005200049839913845, + -0.0005021309480071068, + 0.03868158906698227, + 0.009515611454844475, + -0.0202252808958292, + 0.02006312645971775, + 0.008609011769294739, + -0.017335955053567886, + -0.03617554157972336, + -0.02986619621515274, + 0.012272264808416367, + -0.010864455252885818, + -0.0014437416102737188, + -0.03844572603702545, + 0.01841208152472973, + -0.011439371854066849, + 0.015154220163822174, + 0.0012244624085724354, + -0.00426765251904726, + -0.029482917860150337, + -0.024397114291787148, + 0.03361052647233009, + 0.004846254829317331, + 0.03478984162211418, + -0.006895317230373621, + 0.014483483508229256, + -0.00143544957973063, + 0.0002337903279112652, + -0.02034321427345276, + -0.007967758923768997, + -0.008815392851829529, + 0.01948820799589157, + -0.03968400880694389, + -0.028539463877677917, + 0.014910985715687275, + -0.0031841550953686237, + -0.01636301912367344, + -0.003847520798444748, + 0.011343552730977535, + 0.012006917968392372, + 0.004536684136837721, + -0.01702638529241085, + 0.0057344273664057255, + 0.007359673269093037, + -0.00937556754797697, + 0.024264441803097725, + 0.026726264506578445, + -0.010687557980418205, + 0.01132144033908844, + -0.010392728261649609, + 0.01886906661093235, + -0.003469771007075906, + 0.022421758621931076, + -0.002935393014922738, + -0.004993669223040342, + -0.006213524844497442, + 0.005037893541157246, + -0.007577110081911087, + -0.007193832192569971, + -0.004603020381182432, + -0.006324085872620344, + 0.038829002529382706, + 0.0035784891806542873, + -0.006906373426318169, + -0.003176784375682473, + -0.03546794876456261, + -0.0283036008477211, + -0.005937122739851475, + 0.0028395734261721373, + -0.02768445946276188, + 0.004982613027095795, + 0.013915937393903732, + 0.01673155650496483, + 0.005557530093938112, + 0.009368197061121464, + 5.60866465093568e-5, + -0.0015017861733213067, + -0.010871825739741325, + -0.005992403253912926, + 0.0037498585879802704, + 0.018530013039708138, + -0.012036400847136974, + -0.014291844330728054, + -0.004098125733435154, + 0.0055870129726827145, + -0.008749055676162243, + -0.02653462626039982, + -0.0374138243496418, + 0.0310160294175148, + 0.028745844960212708, + -0.009316601790487766, + 0.04590490460395813, + -0.01292088907212019, + 0.019827261567115784, + 0.011424630880355835, + 0.006136132404208183, + -0.010156865231692791, + -0.0017542336136102676, + -0.012161703780293465, + 0.024220217019319534, + 0.005207420326769352, + 0.002778765046969056, + -0.008992290124297142, + -0.027330664917826653, + 0.02802351303398609, + -0.0017920086393132806, + 0.020785456523299217, + 0.018235184252262115, + -0.020977096632122993, + 0.009471387602388859, + -0.002795349108055234, + -0.020151574164628983, + 0.018161477521061897, + -0.006475185975432396, + -0.02687367983162403, + -0.0035619051195681095, + 0.005727056879550219, + 0.017380179837346077, + 0.0009116671280935407, + -0.019679848104715347, + -0.00021812751947436482, + -0.00597029086202383, + 0.011616270057857037, + -0.017527595162391663, + -0.0013866184744983912, + -0.006139817647635937, + 0.016539916396141052, + -0.040922291576862335, + 0.009950485080480576, + -0.022038480266928673, + 0.028657395392656326, + 0.004451920744031668, + 0.00906599685549736, + -0.016761038452386856, + 0.024352889508008957, + 0.007731895428150892, + 0.014837278053164482, + -0.032342761754989624, + -0.004647245164960623, + 0.028804810717701912, + 0.001752390991896391, + -0.007554997690021992, + -0.021802617236971855, + -0.031045513227581978, + 0.016967419534921646, + 0.016554659232497215, + 0.017483370378613472, + -0.023615816608071327, + 0.011933211237192154, + 0.003515837946906686, + -0.008793280459940434, + 0.0031804698519408703, + -0.004278708249330521, + 0.0015515385894104838, + 0.031163444742560387, + 0.02317357435822487, + -0.009161816909909248, + -0.008011982776224613, + 0.0003885756595991552, + 0.009250265546143055, + 0.01074652373790741, + -0.00961880199611187, + -0.020932871848344803, + -0.0071274954825639725, + -0.0077834902331233025, + -0.009183929301798344, + 0.02256917394697666, + -0.0008867909200489521, + 0.03399380296468735, + 0.003504781983792782, + -0.008078319951891899, + 0.004168147686868906, + 0.020829681307077408, + 0.009648284874856472, + 0.0043524159118533134, + 0.005926066543906927, + -0.009331343695521355, + 0.010385357774794102, + 0.024220217019319534, + -0.01735069788992405, + 0.019178638234734535, + 0.006217210553586483, + -0.02273133024573326, + -0.011247733607888222, + -0.010267426259815693, + -0.013532659038901329, + -0.00814465619623661, + -0.021891066804528236, + -0.03163517266511917, + 0.03175310418009758, + -0.03237224370241165, + 0.0017984580481424928, + -0.020313730463385582, + 0.012345971539616585, + 0.0044224378652870655, + 0.009095479734241962, + 0.0017487055156379938, + -0.012228040024638176, + 0.018839584663510323, + -0.00861638318747282, + 0.026195572689175606, + 0.014844649471342564, + 0.021876325830817223, + 0.015154220163822174, + 0.01023794338107109, + 0.0061656152829527855, + 0.006556263659149408, + -0.010289538651704788, + 0.008638494648039341, + 0.017041126266121864, + 0.023070383816957474, + -0.027537046000361443, + -0.023733748123049736, + 0.006740532349795103, + 0.009611431509256363, + -0.00014626291522290558, + 0.003324199002236128, + -0.01480779517441988, + 0.005450654309242964, + -0.006928485818207264, + 0.002854315098375082, + -0.02457401156425476, + -0.000996891176328063, + -0.03449501469731331, + 0.0028285174630582333, + -0.002290454227477312, + 0.00435978639870882, + -0.0025502725038677454, + -0.005008410662412643, + -0.03717796131968498, + -0.0017956939991563559, + -0.004289764445275068, + 0.030337922275066376, + -0.0187069121748209, + -0.054337017238140106, + -0.022952452301979065, + 0.00958194863051176, + -0.008115173317492008, + 0.016112415120005608, + -0.03051481954753399, + -0.025915484875440598, + 0.025576431304216385, + -0.025915484875440598, + -0.018441565334796906, + 0.0009849137859418988, + -0.004802030045539141, + -0.005413800943642855, + 0.004691469483077526, + -0.008594270795583725, + 0.0031362453009933233, + 0.004606706090271473, + 0.019178638234734535, + -0.0043671573512256145, + -0.00748497573658824, + 0.016996901482343674, + 0.015080512501299381, + 0.0022775554098188877, + 0.025753328576683998, + 0.016436725854873657, + -0.02457401156425476, + 0.008240475319325924, + -0.01633353717625141, + 0.03257862478494644, + 0.003972823265939951, + 0.009014402516186237, + 0.02908489853143692, + 0.02772868424654007, + 0.006088222377002239, + -0.011815279722213745, + -0.02333572879433632, + -0.015272151678800583, + 0.001746862893924117, + 0.0014630898367613554, + -0.0017007958376780152, + 0.001440977561287582, + 0.00692111486569047, + -0.0072749098762869835, + -0.01714431680738926, + 0.0016934251179918647, + -0.03490777313709259, + 0.012117478996515274, + -0.0013313379604369402, + -0.017630785703659058, + 0.005999773740768433, + 0.003777498845010996, + -0.0076508172787725925, + -0.004927332513034344, + 0.024397114291787148, + 0.016230346634984016, + -0.011682606302201748, + -0.002972246613353491, + 0.015581722371280193, + -0.05666616931557655, + -0.0043892692774534225, + -0.012419679202139378, + 0.014122317545115948, + -0.010864455252885818, + 0.01985674537718296, + 0.018633203580975533, + 0.0033315697219222784, + 0.010672816075384617, + 0.0018942775204777718, + -0.008594270795583725, + 0.028362566605210304, + 0.005299554672092199, + 0.028613172471523285, + -0.03962504118680954, + 0.009220782667398453, + -0.05144769325852394, + 0.010083157569169998, + -0.002834045561030507, + 0.018028805032372475, + -0.0001687206095084548, + 0.04056849330663681, + -0.019134413450956345, + 0.0036024439614266157, + -0.0007356909336522222, + 0.02363055944442749, + 0.0028635284397751093, + -0.05206683278083801, + -0.017041126266121864, + 0.018972257152199745, + -0.016053449362516403, + -0.014645639806985855, + 0.009154446423053741, + 0.011476226150989532, + -0.007606592960655689, + -0.0037701281253248453, + 0.0042639668099582195, + -0.007050102576613426, + -0.005944493226706982, + 0.006084537133574486, + -0.01665784791111946, + -0.03039688803255558, + -0.025119446218013763, + 0.002834045561030507, + -0.026284022256731987, + 0.023615816608071327, + -0.005200049839913845, + -0.011999547481536865, + 0.016790522262454033, + 0.004451920744031668, + 0.01656940020620823, + 0.003630084218457341, + 0.03850468993186951, + -0.03154672309756279, + 0.005830246955156326, + -0.02666729874908924, + 0.00770241254940629, + -0.03154672309756279, + -0.000851319229695946, + -0.017173800617456436, + -0.00017447899153921753, + -0.03720744326710701, + -0.0066963075660169125, + -0.021478306502103806, + 0.037266407161951065, + -0.04027366638183594, + 0.008830133825540543, + 0.029645074158906937, + -0.0038733184337615967, + -0.0007232528296299279, + 0.012198557145893574, + -0.01384222973138094, + 0.011232991702854633, + -0.0073080784641206264, + -0.00832892395555973, + 0.015964999794960022, + -0.005306925158947706, + 0.03815089538693428, + -0.005207420326769352, + -0.007577110081911087, + 0.013363132253289223, + 0.01824992708861828, + 0.005450654309242964, + 0.0101126404479146, + 0.031605686992406845, + -0.035998642444610596, + 0.002014051890000701, + -0.00309202098287642, + 0.04086332395672798, + -0.01124036218971014, + -0.014512966386973858, + 0.004466662183403969, + -0.012928259558975697, + -0.011107689701020718, + -0.001150755095295608, + 0.01628931239247322, + -0.002881955122575164, + 0.0006992979324422777, + 0.025709103792905807, + 0.0003040425945073366, + -0.013739040121436119, + 0.01788138970732689, + 0.007020619697868824, + 0.005063691176474094, + 0.003987564705312252, + -0.03729589283466339, + -0.005299554672092199, + 0.000296441518003121, + -0.005443283822387457, + 0.0063130296766757965, + -0.003670623293146491, + -0.016053449362516403, + -0.005542788654565811, + -0.03260810673236847, + -0.00832892395555973, + -0.01673155650496483, + -0.002633193042129278, + 0.0030091002117842436, + -0.023438919335603714, + -0.04213108867406845, + -0.01058436743915081, + 0.011181396432220936, + 0.02535530924797058, + -0.023040900006890297, + 0.010164235718548298, + 0.003403434297069907, + -0.011314069852232933, + -0.0031233467161655426, + -0.006032941862940788, + 0.0019127043196931481, + -0.011476226150989532, + 0.0050784326158463955, + 0.00904388539493084, + -0.009979967959225178, + 0.010576996952295303, + 0.003687207354232669, + -0.02153727225959301, + -0.005207420326769352, + -0.021728910505771637, + 0.013702185824513435, + -0.0032154808286577463, + 0.0015625946689397097, + -0.009464017115533352, + 0.007606592960655689, + 0.0008287464152090251, + -0.012736620381474495, + 0.009567206725478172, + -0.015124737285077572, + -0.010672816075384617, + -0.006301973946392536, + -0.00861638318747282, + 0.008004612289369106, + 0.011704718694090843, + 0.0010162392864003778, + 0.016834747046232224, + -0.029217571020126343, + -0.006659454200416803, + 0.008638494648039341, + -0.020726490765810013, + 0.013554771430790424, + -0.012603947892785072, + -0.006206154357641935, + 0.0017192226368933916, + 0.065275177359581, + 0.014881502836942673, + 0.008432114496827126, + 0.014306586235761642, + -0.00047356938011944294, + -0.044489722698926926, + -0.011771054938435555, + 0.011144543066620827, + 0.029556624591350555, + -0.005100545007735491, + -0.008358406834304333, + -0.017778199166059494, + 0.026269279420375824, + 0.010643333196640015, + -0.012257522903382778, + 0.020770715549588203, + 0.028775328770279884, + 0.017335955053567886, + -0.017468629404902458, + 0.010392728261649609, + 0.004636188969016075, + 0.0050010401755571365, + -0.019414501264691353, + 0.02765497751533985, + -0.00587815698236227, + 0.0029077527578920126, + 0.017173800617456436, + 0.008417373523116112, + 0.018677428364753723, + 0.01702638529241085, + 0.018102511763572693, + -0.022922968491911888, + -0.012508127838373184, + 0.012360713444650173, + 0.012382825836539268, + 0.004938388708978891, + -0.007473919540643692, + 0.011033982038497925, + -0.011277216486632824, + 0.02478039264678955, + 0.010871825739741325, + -0.004411381669342518, + -0.0012134063290432096, + 0.0015625946689397097, + -0.010097899474203587, + -0.01718854159116745, + -0.01333364937454462, + -0.00958194863051176, + -0.002517104148864746, + 0.013481064699590206, + -0.01365796197205782, + -0.002970403991639614, + 0.011970064602792263, + 0.018073027953505516, + -0.01723276637494564, + -0.016436725854873657, + 0.015043659135699272, + -0.012471274472773075, + -0.00845422688871622, + -0.0008075555670075119, + -0.01540482509881258, + 0.006324085872620344, + -0.022038480266928673, + -0.01895751617848873, + -0.00422711344435811, + -0.0006822531577199697, + -0.008196251466870308, + -0.021021321415901184, + 0.004746749997138977, + 0.0014686178183183074, + -0.005911325104534626, + 0.010186348110437393, + 0.003495568409562111, + -0.030662234872579575, + 0.006589432246983051, + 0.024190735071897507, + -0.010768636129796505, + 0.023438919335603714, + -0.0017855592304840684, + 0.003740645246580243, + 0.0009591161506250501, + 0.01524266880005598, + -0.0020859164651483297, + -0.010024191811680794, + -0.008432114496827126, + 0.011645752936601639, + 0.02091813087463379, + 0.012117478996515274, + 0.009073368273675442, + -0.00935345608741045, + -0.016421984881162643, + -0.01398964412510395, + -0.007160663604736328, + 0.016554659232497215, + -0.005557530093938112, + -0.008955436758697033, + 0.015227926895022392, + 0.004997354466468096, + 0.012235410511493683, + -0.014159170910716057, + 0.01345158088952303, + 0.012788215652108192, + 0.026490401476621628, + 0.007569739129394293, + 0.014078093692660332, + 0.010739153251051903, + 0.01882484368979931, + 0.007407583296298981, + -0.020564334467053413, + -0.025827035307884216, + -0.0025465870276093483, + -0.01633353717625141, + -0.002270184690132737, + 0.0044777183793485165, + -0.03257862478494644, + 0.01074652373790741, + 0.0038548915181308985, + -0.016554659232497215, + 0.0004249686317052692, + 0.005026837345212698, + 0.0017708177911117673, + 0.010370616801083088, + 0.013200976885855198, + -0.020461145788431168, + 0.017748717218637466, + -0.016510434448719025, + -0.019576657563447952, + 0.005844988394528627, + -0.00919129978865385, + 0.015463790856301785, + 0.0015644372906535864, + 0.013525288552045822, + 0.00978095829486847, + 0.010997128672897816, + 0.0022462299093604088, + -0.01226489432156086, + 0.008417373523116112, + 0.019886227324604988, + 0.004293450154364109, + -0.013960161246359348, + 0.027713943272829056, + -0.0015727294376119971, + 0.017055867239832878, + 0.020490627735853195, + 0.014992063865065575, + 0.006500983610749245, + 0.0062577491626143456, + -0.006987451575696468, + 0.019267087802290916, + 0.004650930408388376, + 0.03897641599178314, + -0.019311310723423958, + 0.016377760097384453, + -0.0033444685395807028, + 0.01197743508964777, + 0.023026159033179283, + -0.015817586332559586, + 0.025709103792905807, + 0.005800764076411724, + 0.005395373795181513, + 0.004356101155281067, + -0.021714169532060623, + -0.0214193407446146, + -0.0058928984217345715, + 0.003976508509367704, + 0.012073255144059658, + -0.0018436036771163344, + 0.02197951450943947, + 0.02337995357811451, + -0.018780618906021118, + -0.014992063865065575, + -0.009257636032998562, + 0.0014732246054336429, + -0.02420547604560852, + -0.008778538554906845, + 0.020829681307077408, + -0.0003812049108091742, + 0.02363055944442749, + -0.02047588676214218, + -0.001769896363839507, + 0.00740389758720994, + -0.0068547786213457584, + 0.011896357871592045, + 0.0036079720593988895, + 0.004617761820554733, + 0.0033628952223807573, + 0.0006099278689362109, + -0.00958194863051176, + -0.0016049763653427362, + -0.018117252737283707, + -0.013856971636414528, + 0.006526780780404806, + -0.008542675524950027, + 0.010459065437316895, + -0.03576277941465378, + -0.03293241932988167, + 0.015286892652511597, + 0.03812141343951225, + 0.003388692857697606, + 0.0058928984217345715, + -0.0027861357666552067, + 0.011653123423457146, + 0.01850053109228611, + -0.0020564335864037275, + -0.0010696770623326302, + -0.016436725854873657, + -0.005645978730171919, + -0.009692509658634663, + -0.008034095168113708, + 0.0042418548837304115, + -0.027227474376559258, + -0.006032941862940788, + 0.0035471636801958084, + -0.004322933033108711, + -0.020977096632122993, + 0.011115060187876225, + 0.005303239915519953, + 0.005174252204596996, + 0.012500757351517677, + -0.01259657647460699, + 0.01163101103156805, + 0.004938388708978891, + 0.02687367983162403, + 0.00020142822177149355, + -0.03122241050004959, + -0.0027861357666552067, + -0.007842455990612507, + -0.0077613783068954945, + 0.011579415760934353, + -0.013562141917645931, + 0.02268710546195507, + 0.00814465619623661, + -0.003687207354232669, + 0.012382825836539268, + 0.00252263224683702, + -0.0027032149955630302, + 0.0235863346606493, + 0.006121390964835882, + 0.025237377732992172, + -0.021832101047039032, + -0.0035232086665928364, + 0.026814714074134827, + 0.00883750431239605, + -0.0016980317886918783, + 0.009803070686757565, + 0.005575956776738167, + 0.0031804698519408703, + -0.007499717175960541, + -0.003040425945073366, + -3.3168282243423164e-5, + -0.019724072888493538, + -0.002507890807464719, + -0.05648927018046379, + 0.0007499717175960541, + 0.016230346634984016, + 0.014166542328894138, + 0.027374889701604843, + 0.01540482509881258, + -0.0002393183676758781, + -0.015419566072523594, + -0.01244916208088398, + 0.008623753674328327, + -0.011704718694090843, + 0.0009153524879366159, + 0.005918695591390133, + 0.015154220163822174, + 0.004252911079674959, + 0.004205001052469015, + 0.011771054938435555, + -0.01895751617848873, + 0.006840037181973457, + 0.004661986604332924, + -0.0127955861389637, + 0.011682606302201748, + -0.008395261131227016, + -0.022510208189487457, + 0.02121295966207981, + -0.006541522219777107, + -0.0055870129726827145, + -0.0009029143839143217, + -0.000799263478256762, + 0.01536060031503439, + -0.0020380066707730293, + -0.018721653148531914, + 0.00037913190317340195, + -0.023615816608071327, + -0.007134865969419479, + 0.020947612822055817, + -0.0077982316724956036, + 0.029807230457663536, + 0.014409775845706463, + -0.02519315294921398, + 0.0030330552253872156, + -0.00880065094679594, + -0.00024231272982433438, + 0.011373035609722137, + -0.017159057781100273, + 0.0036890502087771893, + 0.01670207269489765, + 2.709318869165145e-5, + 8.994593372335657e-5, + -0.015802843496203423, + -0.012736620381474495, + -0.0001821952173486352, + -0.0018270196160301566, + -0.0027161138132214546, + 0.02096235379576683, + 0.012360713444650173, + 0.0019366592168807983, + 0.01612715609371662, + -0.016436725854873657, + 0.00024484642199240625, + 0.002327307825908065, + -0.026549367234110832, + -0.01944398507475853, + -0.012360713444650173, + 0.015802843496203423, + 0.010650703683495522, + -0.017218023538589478, + 0.0022333310917019844, + -0.00038696330739185214, + -0.0046251327730715275, + 0.001319360570050776, + 0.016878969967365265, + -0.0005712315323762596, + 0.017218023538589478, + 0.0013258099788799882, + 0.025856519117951393, + 0.019429242238402367, + -0.019502950832247734, + 0.010805489495396614, + 0.002799034584313631, + 0.009183929301798344, + 0.008749055676162243, + -0.01817621849477291, + 0.007945646531879902, + -0.011815279722213745, + -0.0052037350833415985, + -0.006515725050121546, + 0.0013562142848968506, + -0.010392728261649609, + 0.005634922534227371, + 0.01000945083796978, + -0.0127145079895854, + 0.006983766332268715, + 0.024721426889300346, + -0.006309344433248043, + 8.839117072056979e-5, + -0.0019348164787515998, + 0.037590719759464264, + -0.0058597298339009285, + 0.014092834666371346, + 0.0033813221380114555, + -0.006276176311075687, + -0.010628592222929, + -0.012471274472773075, + -0.0026976868975907564, + 0.01776345819234848, + -0.0052258470095694065, + 0.013075673952698708, + -0.0011194295948371291, + 0.016598882153630257, + -0.01419602520763874, + 0.002653462579473853, + -0.008520563133060932, + -0.0019219176610931754, + 0.005553844850510359, + 0.014564561657607555, + -0.011800537817180157, + 0.0035471636801958084, + 0.01017160713672638, + -0.016421984881162643, + -0.021817360073328018, + -0.01760130189359188, + -0.021566754207015038, + 0.00996522605419159, + -0.0011876088101416826, + 0.007186461240053177, + 0.002813776023685932, + -0.008660607039928436, + 0.0208739060908556, + 0.004216057248413563, + -0.003832779359072447, + -0.014638268388807774, + 0.018721653148531914, + 0.014741458930075169, + 0.00011614656978053972, + 0.004031789023429155, + -0.004179203417152166, + -0.004028103780001402, + -0.01438029296696186, + 0.006714734714478254, + 0.0133115379139781, + -0.008505822159349918, + 0.015257409773766994, + -0.003589545376598835, + 0.003843835322186351, + -0.006508354097604752, + 0.021507788449525833, + 0.007709783036261797, + 0.007812973111867905, + -0.009670397266745567, + 0.004378213547170162, + 0.005841303151100874, + -0.0006592196295969188, + -0.040597978979349136, + -0.015051029622554779, + 0.00026672828244045377, + 0.009323973208665848, + -0.021389856934547424, + 0.011432001367211342, + 0.009751475416123867, + -0.006279861554503441, + 0.015183703042566776, + 0.007293337024748325, + -0.003954396583139896, + 0.01128458697348833, + -0.007293337024748325, + 0.00102268869522959, + -0.0025705418083816767, + 0.028082478791475296, + -0.0027179564349353313, + 0.012006917968392372, + 0.011144543066620827, + -0.010717040859162807, + -0.0026516199577599764, + 0.016097674146294594, + 0.012154333293437958, + -0.01919337920844555, + 0.010997128672897816, + -0.03290293738245964, + -0.004249225370585918, + 0.007989870384335518, + 0.01372429821640253, + -0.015729136765003204, + -0.00405021570622921, + 0.006272490601986647, + 0.014033868908882141, + 0.01620086282491684, + -0.008004612289369106, + -0.00331314280629158, + 0.007554997690021992, + -0.022583914920687675, + 0.019104931503534317, + 0.004437179304659367, + 0.03667674958705902, + -0.0039175427518785, + 0.011947952210903168, + -0.0017007958376780152, + 0.0004261202993802726, + -0.012272264808416367, + 0.017483370378613472, + -0.00040262608672492206, + -0.010385357774794102, + -0.0158323273062706, + -0.01478568371385336, + -0.002638721140101552, + 0.004337674472481012, + 0.012419679202139378, + -0.025768069550395012, + -0.01357688382267952, + 0.0009683296084403992, + -0.009338714182376862, + -0.00544696906581521, + 0.005575956776738167, + 0.022672364488244057, + 0.007477605249732733, + 0.018205702304840088, + -0.005376947112381458, + 0.0031049198005348444, + -0.00937556754797697, + -0.002119084820151329, + 0.011269845068454742, + -0.0036079720593988895, + -0.006058739498257637, + 0.020652784034609795, + 0.007665558718144894, + -0.009626172482967377, + 0.0004731086955871433, + -0.011380406096577644, + 0.010702298954129219, + 0.009014402516186237, + 0.00043901908793486655, + -0.005284813232719898, + 0.0018353116465732455, + 0.004370842594653368, + 0.010783377103507519, + 0.010857084766030312, + -0.004529313184320927, + 0.005889212712645531, + 0.011019240133464336, + 0.008432114496827126, + 0.0005624787881970406, + 0.01718854159116745, + 0.0068695200607180595, + -0.012345971539616585, + 0.01171208918094635, + 0.014844649471342564, + 0.007521829567849636, + 0.017866648733615875, + 0.005557530093938112, + -0.032313279807567596, + 0.0012530239764600992, + 0.006342512555420399, + 0.012721879407763481, + -0.0007596458308398724, + -0.03002835251390934, + 0.03803296387195587, + 0.018515272065997124, + 0.004525627940893173, + 0.015375341288745403, + 0.024426598101854324, + -0.033905357122421265, + 0.021036062389612198, + -0.009869406931102276, + 0.0011056094663217664, + 0.0036835221108049154, + 0.009729363024234772, + 0.00922815315425396, + 0.005605439655482769, + 0.002714271191507578, + -0.027345405891537666, + -0.009405050426721573, + -0.0012871136423200369, + 0.007599222008138895, + -0.017365438863635063, + -0.01066544558852911, + 0.021463563665747643, + 0.027094801887869835, + -0.010002080351114273, + 0.022171154618263245, + 0.00930923130363226, + -0.0018905921606346965, + 0.0019495579181239009, + -0.00033997491118498147, + 0.006066110450774431, + -0.005973976105451584, + 0.010731781832873821, + 0.023763231933116913, + -0.0005569507484324276, + 0.013716927729547024, + 0.005472766701132059, + 0.0073228199034929276, + -0.008424744009971619, + -0.00692111486569047, + -0.025753328576683998, + 0.0017588402843102813, + -0.016539916396141052, + -0.032549142837524414, + -0.0021319834049791098, + -0.014734088443219662, + -0.010540143586695194, + 0.019547173753380775, + -0.012338601052761078, + 0.0010853399289771914, + -0.009405050426721573, + 0.0068547786213457584, + -0.0041718329302966595, + 0.006607858929783106, + 0.005277442280203104, + -0.004510886501520872, + -0.011299327947199345, + -0.00806357804685831, + -0.012935630045831203, + -0.0013856971636414528, + -0.0020822309888899326, + 0.00011493731290102005, + 0.006489927414804697, + 0.017704492434859276, + 0.008999660611152649, + -0.010053674690425396, + -0.025827035307884216, + -0.015640687197446823, + 0.016259828582406044, + -0.009567206725478172, + -0.0005574114038608968, + -0.015655430033802986, + -0.007086956407874823, + -0.002939078491181135, + -0.012279635295271873, + -0.0029538199305534363, + -0.008992290124297142, + -0.006596802733838558, + 0.001150755095295608, + -0.0012603946961462498, + 0.03614605590701103, + 0.00483151338994503, + 0.0016556500922888517, + 0.0068768905475735664, + -0.030691716820001602, + 0.020741233602166176, + -0.02296719327569008, + 0.0005440519889816642, + -0.009803070686757565, + 0.013680074363946915, + 0.007212258875370026, + -0.0005431306199170649, + 0.0010014978470280766, + -0.027994031086564064, + -0.009493499994277954, + -0.006969024892896414, + 0.00562018109485507, + -0.007529200054705143, + 0.009596689604222775, + 0.0033499966375529766, + -0.012633430771529675, + 0.02584177814424038, + -0.019429242238402367, + 0.0004240472917445004, + -0.01179316733032465, + -0.019045965746045113, + -0.004035474266856909, + 0.02436763234436512, + -0.0003330648469273001, + 0.006195098161697388, + -0.00021501799346879125, + 0.023247281089425087, + -0.015773361548781395, + 0.013178864493966103, + -0.024750908836722374, + -0.01187424547970295, + -0.0024249700363725424, + 0.006047683767974377, + 0.023070383816957474, + -0.00610296381637454, + 0.014476113021373749, + 0.021507788449525833, + 0.014962580986320972, + 0.007005878258496523, + -0.005723371636122465, + 0.008483709767460823, + 0.017733974382281303, + -0.019915711134672165, + -0.015168961137533188, + 0.017011644318699837, + 0.0002823910617735237, + -0.013783263973891735, + 0.0028561577200889587, + 0.034730877727270126, + -0.007790861185640097, + 0.00015927685308270156, + -0.01649569347500801, + -0.0049862987361848354, + -3.2642831229168223e-6, + 0.006556263659149408, + -0.027492821216583252, + 0.014372922480106354, + 0.005251644644886255, + -0.0051373983733356, + 0.024706685915589333, + -0.016834747046232224, + -0.008815392851829529, + -0.019797779619693756, + -0.0005947257159277797, + -0.034760359674692154, + -0.009220782667398453, + 0.02047588676214218, + -0.03994935378432274, + 0.03184155002236366, + -0.013083044439554214, + -0.019473467022180557, + -0.021360374987125397, + -0.029925161972641945, + 0.01462352741509676, + 0.002200162736698985, + 0.0040612719021737576, + 0.01163101103156805, + 0.007481290493160486, + 0.001888749422505498, + -0.01031902153044939, + -0.0005002882680855691, + 0.015596463344991207, + -0.001706323935650289, + 0.00013992869935464114, + -0.009589319117367268, + -0.007518143858760595, + -0.0025060479529201984, + 0.008542675524950027, + 0.0028119334019720554, + -0.01640724390745163, + -0.020122092217206955, + -0.00430819159373641, + -0.0010503289522603154, + -0.015670171007514, + -1.1631932466116268e-5, + 0.008115173317492008, + 0.006980080623179674, + -0.011461484245955944, + 0.0023512626066803932, + -0.0021725224796682596, + -0.00880065094679594, + 0.013901195488870144, + -0.004455605987459421, + -0.018603721633553505, + 0.027581268921494484, + 0.010871825739741325, + -0.003617185400798917, + -0.015699652954936028, + -0.016628365963697433, + -0.008129914291203022, + -0.016053449362516403, + -0.012780845165252686, + 0.016259828582406044, + 0.007507088128477335, + -0.009346084669232368, + 0.0022112189326435328, + 0.02236279286444187, + 0.0037627574056386948, + 0.017778199166059494, + 0.014033868908882141, + -0.0031915258150547743, + -0.0022480725310742855, + 0.01148359663784504, + 0.00143544957973063, + -0.01431395672261715, + -0.032018449157476425, + 0.005738113075494766, + -0.006342512555420399, + -0.0037996110040694475, + 0.02112451009452343, + -0.0013423941563814878, + 0.011255104094743729, + -0.01058436743915081, + 0.015566980466246605, + 0.010495918802917004, + -0.014711976051330566, + -0.0012732935138046741, + 0.02839205041527748, + -0.005575956776738167, + 0.013974903151392937, + 0.01427710335701704, + 0.010068416595458984, + -0.016053449362516403, + 0.014424517750740051, + -0.014026498422026634, + -0.004894164390861988, + -0.015227926895022392, + 0.007035361137241125, + 0.0023678469005972147, + 0.0102747967466712, + -0.0029685613699257374, + -0.03154672309756279, + -0.03237224370241165, + -0.0020767031237483025, + -0.00033237383468076587, + 0.007473919540643692, + -0.007724524475634098, + 0.0025686991866678, + -0.019959935918450356, + 0.03249017521739006, + -0.011439371854066849, + -0.0077982316724956036, + 0.01960614137351513, + -0.0011516765225678682, + 0.00853530503809452, + 0.0005339172203093767, + -0.0002819304063450545, + 0.006379366386681795, + 0.003943340387195349, + 0.025944968685507774, + 0.0009996552253142, + 0.024972030892968178, + 0.011992176994681358, + 0.019842004403471947, + -0.028686879202723503, + 0.0020582762081176043, + 0.021227700635790825, + -0.027256958186626434, + -0.019679848104715347, + 0.004709896165877581, + -0.004989983979612589, + -0.021935291588306427, + 0.00478728860616684, + -0.0037996110040694475, + -0.00801935326308012, + -0.004238169640302658, + 0.0016667061718180776, + -0.005472766701132059, + 0.0037480159662663937, + 0.008461597375571728, + -0.00740389758720994, + -0.002673732116818428, + -0.016628365963697433, + -0.01197743508964777, + -0.009817811660468578, + 0.007599222008138895, + 0.007201202679425478, + 0.007724524475634098, + -0.0028432589024305344, + 0.027094801887869835, + 0.027596011757850647, + -0.017999321222305298, + -0.02075597457587719, + -0.005391688551753759, + 0.013569513335824013, + -0.0014575617387890816, + 0.020859165117144585, + 0.011432001367211342, + -0.009670397266745567, + -0.012869293801486492, + 0.01341472752392292, + -0.008380519226193428, + -0.006729476153850555, + -0.010333762504160404, + 0.009301860816776752, + 0.012478644959628582, + -0.009169187396764755, + 0.023925388231873512, + 0.013930678367614746, + -0.00239548715762794, + 0.005778652150183916, + -0.007046417333185673, + -0.0019182323012501001, + -0.006865834351629019, + 0.0038143524434417486, + 0.0037682855036109686, + 0.025738587602972984, + 0.00252263224683702, + 0.003928598947823048, + 0.010982386767864227, + 0.00016561108350288123, + -0.010576996952295303, + 0.018515272065997124, + -0.004621447529643774, + -0.02896696701645851, + -0.006139817647635937, + 0.007842455990612507, + -0.001508235465735197, + 0.002272027311846614, + -0.005605439655482769, + -0.012972484342753887, + 0.017571819946169853, + -0.0021117141004651785, + 0.014535078778862953, + -0.004470347426831722, + -0.02625453844666481, + 0.009552465751767159, + 0.0022830835077911615, + -0.0036466685123741627, + -0.008955436758697033, + 0.0055870129726827145, + -0.012721879407763481, + -0.005240588448941708, + 0.025768069550395012, + -0.011572045274078846, + 0.002281240886077285, + -0.003939655143767595, + 0.009235523641109467, + -0.010473806411027908, + -0.016952678561210632, + -0.009183929301798344, + 0.0012769788736477494, + 0.01536060031503439, + 0.010724411346018314, + -0.03803296387195587, + 0.02346840314567089, + -0.014535078778862953, + -0.003519523423165083, + 0.009500870481133461, + -0.009773586876690388, + 0.012780845165252686, + 0.009862036444246769, + 0.0102747967466712, + -0.008785909973084927, + 0.022082705050706863, + -0.034937258809804916, + -0.0025355308316648006, + 0.002677417593076825, + -0.01101186964660883, + -0.006364624947309494, + -0.00806357804685831, + -0.00017447899153921753, + -0.010901308618485928, + 0.006836351472884417, + 0.00888172909617424, + 0.013775893487036228, + 0.019724072888493538, + -0.004746749997138977, + -0.01948820799589157, + 0.004857310559600592, + -0.007547627203166485, + 0.010886567644774914, + 0.007193832192569971, + 0.0004410920955706388, + -0.01449822448194027, + 0.007234370801597834, + -0.004706210922449827, + -0.012228040024638176, + 0.014741458930075169, + 0.02066752500832081, + 0.010658075101673603, + -0.022008998319506645, + 0.02144882269203663, + -0.03366949409246445, + 0.0001742486492730677, + -0.010002080351114273, + 0.021596238017082214, + -0.008174139074981213, + 0.005152139812707901, + 0.023040900006890297, + -0.0007200281252153218, + 0.014630897901952267, + 0.002049062866717577, + 0.004510886501520872, + -0.0030091002117842436, + 0.007440751418471336, + -0.0380624458193779, + -0.002496834611520171, + -0.008889099583029747, + 0.023247281089425087, + 0.0017625256441533566, + -0.0036116575356572866, + -0.007613963447511196, + -0.02531108446419239, + 0.0031915258150547743, + 0.0031399307772517204, + 0.02174365147948265, + -0.025325827300548553, + 0.0014087306335568428, + -0.021316150203347206, + 0.000726477534044534, + -0.000813544262200594, + -0.013525288552045822, + 0.004872051998972893, + -0.004160776734352112, + -0.009640914388000965, + -0.00892595387995243, + -0.00984729453921318, + -0.011778425425291061, + -0.013422098010778427, + 0.010768636129796505, + -0.012729249894618988, + -0.0017569976625964046, + 0.017247507348656654, + -0.020048383623361588, + 0.005937122739851475, + -0.02715376764535904, + 0.0010881039779633284, + 0.015566980466246605, + -0.022407017648220062, + 0.03732537478208542, + 5.7756577007239684e-5, + -0.007105383090674877, + -0.002496834611520171, + -0.01903122290968895, + 0.01953243277966976, + -0.004967871587723494, + 0.006335142068564892, + -0.007960387505590916, + -0.0031859977170825005, + -0.01213959138840437, + -0.0022996675688773394, + 0.0036650951951742172, + 0.0017542336136102676, + 0.006412534508854151, + -0.014159170910716057, + -0.0127955861389637, + -0.019620882347226143, + -0.022495467215776443, + -0.002920651575550437, + 0.0012484173057600856, + -0.006375681143254042, + 0.005564900580793619, + -0.025694362819194794, + 0.02395487017929554, + -0.00017574583762325346, + 0.0017791098216548562, + -0.008188880048692226, + -0.008940694853663445, + -0.004838883876800537, + 0.007260168436914682, + 0.017955096438527107, + 0.0021375115029513836, + 0.007064844015985727, + 0.013525288552045822, + 0.020785456523299217, + -0.010599109344184399, + -0.00430819159373641, + 0.004466662183403969, + 0.017380179837346077, + -0.010731781832873821, + -0.01124036218971014, + 0.014468741603195667, + 0.004908905830234289, + -0.006987451575696468, + 0.01280295755714178, + 0.01735069788992405, + -0.0018472890369594097, + 0.017041126266121864, + -0.0038991158362478018, + -0.010075787082314491, + -0.005697574000805616, + -0.003248648950830102, + 0.005944493226706982, + -0.007326505146920681, + -0.0026829454582184553, + 0.0038290938828140497, + 0.007643446326255798, + -0.00930923130363226, + 0.020328471437096596, + 0.009220782667398453, + 0.030057834461331367, + -0.014734088443219662, + -0.008070948533713818, + 0.0316646546125412, + 0.019576657563447952, + -0.0077613783068954945, + 0.01017160713672638, + -0.007591851521283388, + 0.008704831823706627, + 0.013031450100243092, + -0.028170928359031677, + -0.02839205041527748, + 0.023851681500673294, + -0.023409437388181686, + 0.0015073141548782587, + 0.02949765883386135, + -0.0005643214681185782, + 0.005535417702049017, + -0.004956815391778946, + -0.0011636539129540324, + 0.020903388038277626, + -0.006442017387598753, + -0.009906260296702385, + -0.005730742122977972, + 0.012655542232096195, + -0.008557416498661041, + -0.01928182877600193, + 0.006843722425401211, + -0.020579077303409576, + 0.014387664385139942, + -0.008026724681258202, + -0.020240023732185364, + -0.0034200185909867287, + -0.020122092217206955, + -0.022878743708133698, + -0.003278131829574704, + 0.01907544769346714, + 0.0006113098934292793, + 0.0001522516249679029, + 0.004451920744031668, + 0.008808021433651447, + -0.003211795352399349, + 0.0026258223224431276, + -0.003950710874050856, + 0.012876664288341999, + 0.016672590747475624, + -0.01501417625695467, + 0.007027990650385618, + 0.01478568371385336, + -0.023866422474384308, + -0.026519885286688805, + 0.0014474269701167941, + 0.0101937185972929, + 0.007768748793751001, + 0.008041465654969215, + -0.014520336873829365, + -0.02013683319091797, + 0.008889099583029747, + 0.028804810717701912, + -0.008513192646205425, + -0.005590698216110468, + 0.010392728261649609, + -0.012854551896452904, + 0.006198783405125141, + -0.01089393813163042, + -0.011490967124700546, + -0.012309118174016476, + -0.005513305775821209, + 0.03014628402888775, + 0.0011406204430386424, + -0.003040425945073366, + 0.012080625630915165, + -0.0036779940128326416, + -0.04068642854690552, + 0.007477605249732733, + 0.0003885756595991552, + 0.0038733184337615967, + -0.02268710546195507, + 0.02351262792944908, + -0.0036245561204850674, + -0.0079972418025136, + -0.0037443304900079966, + 0.002034321427345276, + -0.008712202310562134, + -0.006176671478897333, + 0.004813086241483688, + 0.021360374987125397, + 0.008660607039928436, + -0.018073027953505516, + 0.0032302222680300474, + -0.005675461608916521, + 0.0034568721894174814, + 0.018883809447288513, + 0.018471047282218933, + -0.010945533402264118, + -0.0031380881555378437, + -0.016392502933740616, + 0.015566980466246605, + 2.9295770218595862e-6, + 0.024544529616832733, + 0.031074995175004005, + -0.011859503574669361, + -0.013156752102077007, + -0.0018703226232901216, + 0.022333310917019844, + 0.015006804838776588, + -0.013436839915812016, + -0.011527820490300655, + -0.00037590719875879586, + -0.006906373426318169, + 0.004123923368752003, + -0.013112527318298817, + 0.010694928467273712, + 0.0047504352405667305, + -0.0077982316724956036, + 0.022908227518200874, + -0.0013092258013784885, + 0.001575493486598134, + 0.00692111486569047, + 0.002618451602756977, + 0.008911211974918842, + 0.010097899474203587, + 0.02740437164902687, + -0.004315562080591917, + 0.016023965552449226, + 0.008645866066217422, + -0.014218137599527836, + 0.014778312295675278, + -0.011498337611556053, + 0.01357688382267952, + 0.011188766919076443, + -0.005966605618596077, + 0.000822297006379813, + 0.006725790444761515, + -0.003760914783924818, + 0.017616042867302895, + -0.001964299473911524, + 0.021360374987125397, + 0.0005426699644885957, + 0.010105269961059093, + 0.012095367535948753, + 0.011527820490300655, + 0.004164461977779865, + 0.01698216050863266, + -0.0035232086665928364, + -6.420596037060022e-5, + 0.012257522903382778, + 0.004462976939976215, + 0.012309118174016476, + -0.005321666598320007, + -0.010569626465439796, + 0.00508580356836319, + 0.007967758923768997, + 0.0018214915180578828, + 0.010038933716714382, + -0.000743983022402972, + 0.009073368273675442, + -0.018839584663510323, + 0.011616270057857037, + 0.005627552047371864, + 0.0014538763789460063, + 0.0010411154944449663, + 0.013665332458913326, + 0.030780166387557983, + 0.02740437164902687, + -0.0013294953387230635, + 0.010495918802917004, + 0.005951864179223776, + -0.025915484875440598, + -0.010282167233526707, + -0.01575862057507038, + -0.00022457691375166178, + 0.000584130291827023, + 0.013525288552045822, + -0.0024710369762033224, + -0.003233907511457801, + -0.01866268739104271, + -0.011181396432220936, + -0.005413800943642855, + -0.0012889562640339136, + -0.024220217019319534, + -0.012080625630915165, + -0.006906373426318169, + -0.008505822159349918, + 0.014748829416930676, + -0.020195798948407173, + -0.007864568382501602, + 0.012788215652108192, + 0.01407072227448225, + -0.00614350289106369, + -0.0104369530454278, + -0.023188315331935883, + -0.010289538651704788, + -0.012434421107172966, + 0.007871938869357109, + -0.011063464917242527, + -0.003287345403805375, + -0.01357688382267952, + 0.014122317545115948, + -0.0380624458193779, + -0.011373035609722137, + 0.005200049839913845, + -0.02388116344809532, + -0.031192926689982414, + -0.010997128672897816, + 0.0038180379197001457, + 0.002382588339969516, + 0.00996522605419159, + 0.005388003308326006, + -0.005435912869870663, + -0.0024581383913755417, + -0.01973881386220455, + -0.005760225001722574, + -0.003757229307666421, + 0.015065771527588367, + -0.012257522903382778, + -0.03835727646946907, + 0.027463337406516075, + 0.01244916208088398, + 0.007665558718144894, + 0.009803070686757565, + -0.01066544558852911, + -0.005255330353975296, + 0.010377987287938595, + 0.004175518173724413, + 0.003040425945073366, + -0.02301141805946827, + -0.0007071293657645583, + 0.016377760097384453, + 0.0037682855036109686, + 0.00618404196575284, + 0.0073449318297207355, + 0.002251757774502039, + 0.008380519226193428, + 0.006088222377002239, + 0.0008421058300882578, + 0.034730877727270126, + -0.00356927583925426, + -0.009360826574265957, + -0.024352889508008957, + -0.0024913065135478973, + -0.00012921809684485197, + -0.0006472421810030937, + -0.018102511763572693, + -0.02091813087463379, + 0.0039912499487400055, + -0.009250265546143055, + 0.0032652332447469234, + -0.021434081718325615, + 0.020859165117144585, + -0.00806357804685831, + 0.01919337920844555, + -0.013156752102077007, + 0.025089962407946587, + -0.0065488931722939014, + -0.012441791594028473, + -0.015581722371280193, + 0.008041465654969215, + 0.0056791468523442745, + -0.015331117436289787, + -0.0004210529150441289, + -0.007418639026582241, + 0.011807908304035664, + 0.01578810252249241, + -0.008726943284273148, + 0.021183475852012634, + 0.008984919637441635, + 0.009906260296702385, + -0.010156865231692791, + -0.022200636565685272, + 0.014557191170752048, + 0.01956191658973694, + -0.02231856808066368, + -0.0019458725582808256, + -0.01017160713672638, + -0.0036540392320603132, + -0.009921002201735973, + 0.003539792727679014, + 0.006806868594139814, + 0.01148359663784504, + 0.011210879310965538, + -0.0037996110040694475, + -0.014483483508229256, + 0.02842153236269951, + 0.0058044493198394775, + 0.043634720146656036, + 0.016539916396141052, + 0.02501625567674637, + -0.004588278941810131, + -0.01792561449110508, + -0.010223201476037502, + -0.0022112189326435328, + 0.0068216100335121155, + 0.015596463344991207, + -0.015729136765003204, + 0.008955436758697033, + -0.002513418672606349, + 0.010459065437316895, + 0.018515272065997124, + 0.001485201995819807, + 0.0030551673844456673, + 0.00705747352913022, + -0.011925840750336647, + -0.011004499159753323, + 0.014793054200708866, + -0.012331230565905571, + -0.013304166495800018, + -0.00409075478091836, + -0.0015570665709674358, + 0.007238056510686874, + 0.01509525440633297, + 0.002950134454295039, + -0.014512966386973858, + 0.010289538651704788, + -0.01965036429464817, + 0.014955210499465466, + 0.0018565024947747588, + -0.015670171007514, + 0.012441791594028473, + -0.0008499372634105384, + 0.001249338616617024, + 0.002799034584313631, + 0.01808777078986168, + 0.010370616801083088, + 0.018677428364753723, + -0.019311310723423958, + -0.006021886132657528, + 0.024382373318076134, + 0.0018500530859455466, + -0.0015183702344074845, + 0.012036400847136974, + -0.00961880199611187, + 0.022377533838152885, + 0.000912588438950479, + 0.01349580567330122, + 0.0104369530454278, + 0.007577110081911087, + -0.015080512501299381, + 0.012743990868330002, + -0.002618451602756977, + 0.015028917230665684, + 0.0032062672544270754, + -0.018603721633553505, + -0.0012124850181862712, + -0.009522982873022556, + 0.01948820799589157, + 0.0014640111476182938, + -0.007543941494077444, + 0.02243650145828724, + -0.0021872639190405607, + 0.01730647310614586, + -0.006954283453524113, + -0.008815392851829529, + -0.0022296456154435873, + -0.021773135289549828, + 0.018765877932310104, + -0.0019440299365669489, + -0.02050536870956421, + -0.016068190336227417, + -0.007805602625012398, + -0.012250152416527271, + -0.022657621651887894, + -0.018898550420999527, + -0.026431435719132423, + -0.012640801258385181, + 0.021183475852012634, + 0.0033481537830084562, + 0.017218023538589478, + -0.013672702945768833, + -0.02174365147948265, + -0.01730647310614586, + -0.015087882988154888, + -0.006523095536977053, + 0.004599335137754679, + 0.0033094575628638268, + -0.00012956360296811908, + -0.009250265546143055, + 0.009913630783557892, + 0.00038834530278109014, + -0.002080388367176056, + -0.008299441076815128, + -0.0016574928304180503, + -0.010097899474203587, + 0.016598882153630257, + 0.002705057617276907, + -0.002382588339969516, + 0.004020732827484608, + -0.007145922165364027, + -0.0013958319323137403, + -0.007982499897480011, + -0.027876099571585655, + 0.014505595900118351, + -0.004219742491841316, + -0.0028672136832028627, + 0.005362205673009157, + -0.02013683319091797, + 0.008970177732408047, + -0.012567093595862389, + 0.006512039341032505, + 0.02641669474542141, + 0.024883583188056946, + 0.013318908400833607, + -0.008277329616248608, + 0.02276081219315529, + 0.009279748424887657, + -0.000938846671488136, + 0.018397340551018715, + 0.022672364488244057, + 0.0036448256578296423, + 0.023085124790668488, + 0.020166315138339996, + 0.014837278053164482, + -0.0016399873420596123, + -0.002819304121658206, + 0.005498564336448908, + -0.0042639668099582195, + -0.003685364732518792, + -0.002900382038205862, + 0.014004386030137539, + 0.006902688182890415, + -0.010613850317895412, + 0.023925388231873512, + -0.004860996268689632, + 0.000607163819950074, + -0.0023844309616833925, + -0.003777498845010996, + 0.029025932773947716, + 0.019016481935977936, + 0.018235184252262115, + 0.0036687806714326143, + 0.0176750086247921, + -0.003994935192167759, + 0.008992290124297142, + 0.008210992440581322, + 0.017866648733615875, + -0.028082478791475296, + 0.011247733607888222, + -0.00953772384673357, + 0.01202165987342596, + 0.00012737541692331433, + -0.0022499151527881622, + 0.007050102576613426, + 0.006489927414804697, + -0.005480137187987566, + -0.004676728043705225, + 0.007182775996625423, + 0.0017035598866641521, + 0.005786022637039423, + 0.019473467022180557, + -0.018161477521061897, + 0.024588754400610924, + -0.025045739486813545, + 0.01477094180881977, + -0.0062909177504479885, + -0.01042221114039421, + -0.0024949919898062944, + -0.0070169344544410706, + -0.006316715385764837, + -0.0027013723738491535, + -0.003595073241740465, + 0.006571005564182997, + 0.006383051630109549, + -0.0065636346116662025, + -0.011763684451580048, + -0.0034476586151868105, + 0.024028578773140907, + -0.00012115636491216719, + -0.009545094333589077, + 0.00047034467570483685, + 0.023129349574446678, + 0.0009747789590619504, + -0.011085577309131622, + 0.0004979849327355623, + -0.003530579386278987, + -0.012508127838373184, + 0.00027916638646274805, + 0.008793280459940434, + -0.011962694115936756, + -0.01392330788075924, + -0.008645866066217422, + 0.0025244748685508966, + 0.002225960372015834, + -0.010510660707950592, + -0.011535191908478737, + -0.008424744009971619, + 0.0022886116057634354, + -0.004153406247496605, + -0.017792940139770508, + -0.005550159141421318 + ], + "e7bbf55c-0555-43f3-ab52-3fc85bba8e54": [ + -0.006503220647573471, + -0.020889855921268463, + -0.0128314308822155, + 0.035256605595350266, + -0.03532024472951889, + -0.0032675203401595354, + -0.01375421229749918, + 0.007807842455804348, + -0.028622126206755638, + 0.03360196202993393, + 0.021605806425213814, + 0.03401562198996544, + 0.02866985648870468, + -0.005640102084726095, + 0.006395827978849411, + 0.0009829408954828978, + -0.012179120443761349, + 0.019203394651412964, + -0.0402841717004776, + -0.0006945718196220696, + 0.05517594888806343, + -0.036497585475444794, + -0.025726502761244774, + 0.008273210376501083, + 0.016657790169119835, + -0.034811124205589294, + 0.006439580582082272, + -0.01261664554476738, + -0.057085152715444565, + -0.0007418046589009464, + 0.025710592046380043, + 0.001459744293242693, + 0.017532842233777046, + 0.01828061230480671, + -0.011717729270458221, + -0.03967959061264992, + -0.005910572595894337, + 0.013085991144180298, + 0.003060690127313137, + -0.003722944762557745, + 0.006181042641401291, + 0.019744334742426872, + 0.0089334761723876, + 0.008312985301017761, + -0.054380446672439575, + 0.023499099537730217, + -0.03987050801515579, + -0.03347468003630638, + 0.027158403769135475, + 0.022210387513041496, + 0.005341789219528437, + 0.013642841950058937, + -0.014867913909256458, + -0.011654089204967022, + 0.016116850078105927, + -0.023785479366779327, + 0.01439856830984354, + 0.08591410517692566, + 0.01718282140791416, + -0.04302069544792175, + 0.0037726634182035923, + -0.022369487211108208, + 0.01886928267776966, + -0.024167319759726524, + 0.001020230003632605, + -0.033824700862169266, + -0.020221635699272156, + -0.003504181979224086, + -0.026887932792305946, + 0.00802660547196865, + -0.012250714935362339, + 0.022449038922786713, + -0.07503165304660797, + 0.008209570311009884, + 0.00716746412217617, + 0.01261664554476738, + 0.025312840938568115, + -0.005075296387076378, + 0.027031123638153076, + -0.038247689604759216, + 0.01657824032008648, + 0.0002652498660609126, + -0.0011594427051022649, + -0.011049509048461914, + 0.05377586558461189, + -0.014311063103377819, + -0.012131390161812305, + -0.05632147192955017, + -0.017612392082810402, + -0.019060203805565834, + -0.02524920180439949, + 0.010651757940649986, + -0.028176644816994667, + 0.02736523374915123, + 0.009784662164747715, + 0.005918527487665415, + 0.002121998928487301, + -0.0017421471420675516, + 0.02015799470245838, + 0.013237136416137218, + 0.006849263329058886, + 0.039361387491226196, + -0.002545603085309267, + -0.017501022666692734, + -0.0004439890035428107, + -0.026474272832274437, + 0.007294744253158569, + 0.014303107745945454, + -0.019251124933362007, + 0.02596515230834484, + 0.024310510605573654, + -0.06726756691932678, + 0.01673734001815319, + 0.0012409815099090338, + -0.039647769182920456, + -0.02964036725461483, + -0.005560551770031452, + -0.03576572611927986, + 0.0050355214625597, + -0.021367156878113747, + 0.03274282068014145, + 0.029417626559734344, + 0.006829375866800547, + 0.018694274127483368, + -0.025694681331515312, + 0.03532024472951889, + -0.009633516892790794, + 0.03021312691271305, + 0.013173496350646019, + 0.025631042197346687, + -0.01689644157886505, + -0.013308731839060783, + 0.021733086556196213, + 0.013245091773569584, + -0.007215193938463926, + 0.011757505126297474, + 0.008066380396485329, + 0.053807687014341354, + -0.05463500693440437, + 0.019632965326309204, + -0.03161320835351944, + -0.02852666564285755, + -0.028001634404063225, + -0.0038641460705548525, + -0.012926891446113586, + 0.00687710614874959, + -0.035797543823719025, + 0.05574870854616165, + -0.04550265520811081, + 0.012879161164164543, + -0.009569876827299595, + -0.012815521098673344, + 0.004355367738753557, + 0.003975516185164452, + 0.06274911761283875, + 0.011677954345941544, + -0.03223370015621185, + 0.03337922319769859, + 0.00212597637437284, + 0.021748997271060944, + 0.0010838700691238046, + -0.060489896684885025, + 0.0013613010523840785, + 0.004761073272675276, + 0.035797543823719025, + 0.026012882590293884, + 0.06045807525515556, + 0.03802494704723358, + 0.003319227835163474, + 0.02256040833890438, + 0.007258946541696787, + -0.016705520451068878, + 0.04152515158057213, + -0.022894518449902534, + 0.039775051176548004, + -0.0294971764087677, + 0.03827950730919838, + 0.01958523504436016, + 0.023085439577698708, + -0.05838977172970772, + 0.0006025920156389475, + -0.0023089416790753603, + 0.015615684911608696, + -0.011956379748880863, + -0.025599222630262375, + 0.02666519396007061, + 0.0041485377587378025, + 0.002197571564465761, + 0.019935254007577896, + 0.015408854000270367, + -0.006729938555508852, + -0.009752842597663403, + 0.011025643907487392, + 0.001190268318168819, + -0.011781369335949421, + -0.03532024472951889, + -0.012449590489268303, + 0.01770785264670849, + 0.007052116096019745, + 0.02623562328517437, + -0.01972842402756214, + -0.026426542550325394, + 0.003561855759471655, + 0.0532667450606823, + -0.014645173214375973, + 0.006292412988841534, + -0.020460285246372223, + -0.05037112161517143, + 0.025599222630262375, + -0.030451778322458267, + 0.020221635699272156, + -0.030419958755373955, + 0.008917566388845444, + 0.006053762510418892, + -0.011327934451401234, + 0.020094355568289757, + 0.011518854647874832, + 0.014056502841413021, + 0.008519815281033516, + -0.0140326377004385, + 0.011550674214959145, + -0.01816924288868904, + -0.013499652035534382, + -0.010277872905135155, + -0.05813521146774292, + -0.020078444853425026, + -0.0296244565397501, + 0.025217382237315178, + -0.033983804285526276, + -0.010182412341237068, + 0.03512932360172272, + -0.019951164722442627, + 0.01845562271773815, + -0.00681346608325839, + 0.0011962346034124494, + 0.05161210522055626, + 0.02042846567928791, + 0.023021798580884933, + -0.014883823692798615, + -0.025901513174176216, + 0.00040669989539310336, + 0.009378956630825996, + -0.019664784893393517, + 0.008122065104544163, + -0.006936768535524607, + 0.02836756594479084, + -0.0010848644888028502, + 0.060076236724853516, + 0.00659868074581027, + 0.0054810019209980965, + 0.017039630562067032, + 0.00936304684728384, + 0.003253599163144827, + 0.016275949776172638, + 0.01056425366550684, + 0.02979946695268154, + 0.041779711842536926, + -0.015257708728313446, + -0.015345213934779167, + 0.0054611144587397575, + -0.0052065541967749596, + 0.005516799166798592, + -0.006260592956095934, + 0.0115665839985013, + 0.051707565784454346, + -0.05002110078930855, + 0.035511165857315063, + -0.0015164237702265382, + 0.015544089488685131, + 0.05199394375085831, + -0.009371001273393631, + -0.004641748499125242, + -0.00196488737128675, + 0.0049718813970685005, + -0.02055574581027031, + -0.003010971238836646, + 0.021908096969127655, + 0.01119269896298647, + 0.03150184080004692, + 0.010023312643170357, + -0.033697422593832016, + -0.02795390412211418, + 0.020889855921268463, + 0.018964743241667747, + 0.0100710429251194, + 0.03360196202993393, + -0.054253168404102325, + -0.016482779756188393, + -0.01999889500439167, + -0.013833762146532536, + -0.020492104813456535, + 0.004092852585017681, + 0.013443966396152973, + 0.05628965049982071, + 0.003981482703238726, + 0.02084212563931942, + -0.025058280676603317, + 0.01057220809161663, + 0.017930593341588974, + -0.004216155502945185, + -0.015941839665174484, + 0.032265521585941315, + -0.014669038355350494, + -0.03932956978678703, + 0.02310134842991829, + -0.0194261334836483, + 0.05329856649041176, + 0.03557480499148369, + -0.04948016256093979, + -0.014072412624955177, + 0.025456031784415245, + -0.003418665612116456, + -0.03945684805512428, + -0.011009734123945236, + 0.006849263329058886, + 0.026442453265190125, + -0.025567401200532913, + -8.651073585497215e-5, + -0.025901513174176216, + -0.02596515230834484, + 0.014048547483980656, + 0.006658343132585287, + -0.06099901720881462, + 0.01042106281965971, + 0.003122341353446245, + -0.04057054966688156, + 0.03118363954126835, + -0.042893413454294205, + -0.05285308510065079, + -0.004013302735984325, + -0.015925930812954903, + -0.005043476354330778, + 0.022735418751835823, + -0.02338773012161255, + -0.0321541503071785, + -0.03446110337972641, + -0.044611696153879166, + -0.038629528135061264, + -0.008416400291025639, + -0.019187483936548233, + -0.017198732122778893, + -0.017071451991796494, + 0.025010550394654274, + -0.01828061230480671, + -0.025869691744446754, + -0.046998199075460434, + 0.019076114520430565, + 0.021669447422027588, + 0.012879161164164543, + -0.00616911007091403, + 0.0010609994642436504, + -0.011200654320418835, + 0.064308300614357, + -0.008034559898078442, + 0.05692605301737785, + 0.0022254139184951782, + -0.011351799592375755, + -0.03360196202993393, + 0.03506568446755409, + -0.00029483254184015095, + -0.014692903496325016, + -0.04868466034531593, + -0.025869691744446754, + -0.02030118554830551, + 0.0019380393205210567, + 0.041779711842536926, + -0.028542576357722282, + 0.011614314280450344, + 0.00250185071490705, + 0.0017868941649794579, + -0.037102166563272476, + -0.012632555328309536, + 0.006057740189135075, + -0.04136605188250542, + -0.02128760702908039, + -0.026983393356204033, + 0.059758033603429794, + -0.019171573221683502, + -0.008670960552990437, + 0.010985868982970715, + 0.00029060646193102, + -0.0015721088275313377, + -0.033665601164102554, + -0.001975825522094965, + -0.0009943762561306357, + 0.026903843507170677, + 0.009689202532172203, + -0.02128760702908039, + -0.005727607291191816, + -0.010842678137123585, + -0.014128097333014011, + 0.02181263640522957, + -0.019489774480462074, + 0.03188367933034897, + -0.01205184031277895, + -0.013674662448465824, + 0.011502943933010101, + 0.007807842455804348, + -0.016228219494223595, + 0.0026211757212877274, + -0.007485664449632168, + -0.0028976122848689556, + 0.02310134842991829, + 0.02098531648516655, + 0.010818813927471638, + -0.007549304515123367, + 0.011296113952994347, + -0.008822105824947357, + 0.026569733396172523, + -0.003939718473702669, + 0.008209570311009884, + -0.00471334345638752, + 0.011312023736536503, + 0.028065275400877, + 0.016124805435538292, + 0.02607652172446251, + 0.015886154025793076, + 0.06828580796718597, + -0.013459877111017704, + -0.029147155582904816, + 0.042066093534231186, + 0.0177396722137928, + -0.013921267352998257, + 0.017516931518912315, + -0.029115336015820503, + 0.046584539115428925, + -0.00478891609236598, + 0.005158823914825916, + -0.01772376149892807, + -0.0414615124464035, + 0.01858290284872055, + 0.03462020307779312, + -0.02238539792597294, + -0.006248660385608673, + -0.005230418872088194, + -0.009840346872806549, + 0.0217012669891119, + -0.013507606461644173, + -0.010731308721005917, + -0.022624047473073006, + -0.0011485045542940497, + 0.044898077845573425, + 0.017835132777690887, + -0.014303107745945454, + -0.050816603004932404, + -0.005862842313945293, + -0.029560817405581474, + 0.023085439577698708, + -0.0009332221234217286, + -0.0062526375986635685, + 0.01632368005812168, + 0.033951982855796814, + -0.032965559512376785, + -0.02057165652513504, + 0.008472085930407047, + -0.010604028590023518, + 0.0010391231626272202, + -0.025153741240501404, + 0.02779480442404747, + -0.048716481775045395, + -0.0035638443659991026, + 0.004951993469148874, + 0.019823884591460228, + -0.017278281971812248, + 0.027826623991131783, + -0.03328376263380051, + 0.006956655997782946, + 0.0326155424118042, + 0.004299683030694723, + 0.011534764431416988, + -0.02198764681816101, + -0.02053983509540558, + -0.03939320892095566, + 0.004224110394716263, + 0.021637627854943275, + -0.010293782688677311, + -0.009593741968274117, + 0.0073822494596242905, + -0.018185153603553772, + -0.01341214682906866, + -0.013237136416137218, + 0.004490603227168322, + -0.021796727553009987, + 0.013030306436121464, + 0.005365654360502958, + -0.016140714287757874, + -0.020635295659303665, + -0.02550376206636429, + -0.01969660446047783, + 0.00741406949236989, + 0.03786584734916687, + 0.009044846519827843, + 0.005453159101307392, + 0.007807842455804348, + 0.006729938555508852, + -0.02030118554830551, + 0.0177396722137928, + -0.005441226996481419, + -0.027412964031100273, + -0.004088874906301498, + 0.010015357285737991, + -0.004995746072381735, + -0.011487034149467945, + 0.0009292446193285286, + -0.027587974444031715, + 0.05091206356883049, + -0.011431349441409111, + -0.004800848662853241, + 0.016371410340070724, + -0.016283905133605003, + -0.03917047008872032, + 0.0059503475204110146, + -0.01971251517534256, + 0.002865792252123356, + 0.017691941931843758, + 0.00217967270873487, + -0.014016727916896343, + 0.0032695091795176268, + 0.040506910532712936, + 0.0391068272292614, + -0.0023129191249608994, + 0.010779038071632385, + -0.018057873472571373, + -0.0038442586082965136, + -0.011892739683389664, + -0.005946369841694832, + 0.0038263597525656223, + -0.026124252006411552, + 0.008193660527467728, + -0.02012617513537407, + -0.03687942773103714, + 0.01268028561025858, + -0.014159917831420898, + 0.01688053086400032, + 0.025424212217330933, + 0.027047034353017807, + -0.014287197962403297, + -0.009164171293377876, + 0.002863803645595908, + 0.019935254007577896, + -0.018471533432602882, + 0.041779711842536926, + -0.009092576801776886, + 0.000498431094456464, + -0.027762984856963158, + 0.012537095695734024, + 0.0008178744465112686, + 0.03519296273589134, + -0.015313394367694855, + 0.003434575628489256, + -0.040761470794677734, + 0.019457954913377762, + -0.025583311915397644, + -0.010015357285737991, + -0.0008984189480543137, + -0.018964743241667747, + -0.026426542550325394, + -0.007127688731998205, + -0.01969660446047783, + -0.02851075492799282, + -0.007859549485147, + 0.0007442905916832387, + 0.016371410340070724, + 0.01941022463142872, + 0.0012598746689036489, + -0.008647095412015915, + -0.04216155409812927, + 0.024485521018505096, + -0.0018803654238581657, + -0.004355367738753557, + 0.01756466180086136, + -0.002579411957412958, + 0.029322165995836258, + 0.007859549485147, + 0.005222463980317116, + 0.00929940678179264, + 0.005850909743458033, + -0.010261963121592999, + -0.03221778944134712, + -0.01062789373099804, + 0.0059702349826693535, + -0.029019875451922417, + 0.00033858511596918106, + -0.028415296226739883, + -0.006260592956095934, + 0.03630666434764862, + -0.037484005093574524, + -0.016283905133605003, + 0.008201614953577518, + 0.010261963121592999, + 0.00040346814785152674, + 0.03414290398359299, + -0.011550674214959145, + 0.009259631857275963, + -0.021510347723960876, + 0.024867361411452293, + -0.01190864946693182, + 0.0016586196143180132, + 0.005047454033046961, + -0.018487442284822464, + 0.02536057122051716, + 0.05574870854616165, + -0.00012143819913035259, + -0.025742411613464355, + -0.029258526861667633, + 0.017755582928657532, + -0.014780408702790737, + 0.013642841950058937, + -0.04467533528804779, + 0.006590725854039192, + -0.025662861764431, + -0.010524477809667587, + 0.02738114446401596, + -0.00908462144434452, + 0.018646543845534325, + -0.005858864635229111, + 0.034524742513895035, + 0.021526256576180458, + 0.025662861764431, + -0.019473863765597343, + 0.030976809561252594, + -0.023005887866020203, + 0.04410257562994957, + -0.019076114520430565, + 0.02267177775502205, + 0.03827950730919838, + -0.0128314308822155, + 0.009609651751816273, + -0.0064594680443406105, + 0.029306257143616676, + -0.01091427356004715, + -0.014486073516309261, + 0.012735971249639988, + -0.014772453345358372, + -0.005707719828933477, + -0.00630832277238369, + -0.0019231236074119806, + 0.007378271780908108, + -0.01162226963788271, + -0.010158548131585121, + -0.009625562466681004, + 0.020062536001205444, + 0.01759648136794567, + 0.045311737805604935, + -0.0202693659812212, + 0.04384801536798477, + -0.018885193392634392, + 0.011526809073984623, + 0.025599222630262375, + 0.030388137325644493, + -0.007398159243166447, + 0.012385950423777103, + 0.0023546828888356686, + 0.017644211649894714, + -0.009482371620833874, + -0.023196808993816376, + -0.023069528862833977, + 0.0029632411897182465, + 0.007083936128765345, + 0.0022552453447133303, + 0.028860775753855705, + -0.029019875451922417, + 0.002899601124227047, + 0.019521594047546387, + 0.006972566246986389, + 0.019823884591460228, + 0.01298257615417242, + -0.010150592774152756, + 0.0052065541967749596, + 0.009689202532172203, + 0.007052116096019745, + -0.036115746945142746, + 0.020667115226387978, + -0.01218707486987114, + -0.003971538506448269, + 0.0015830469783395529, + 0.00970511231571436, + -0.029894927516579628, + -0.008853926323354244, + -0.02225811779499054, + -0.008209570311009884, + -0.03500204533338547, + -0.015289529226720333, + 0.022353578358888626, + -0.028303924947977066, + 0.0023705929052084684, + -0.023626379668712616, + 0.020635295659303665, + -0.009633516892790794, + -0.015742965042591095, + -0.006515153218060732, + 0.015194068662822247, + -0.02283087931573391, + 0.03315648064017296, + 0.00471334345638752, + -0.017946502193808556, + -0.009673291817307472, + -0.018678363412618637, + 0.03586118668317795, + -0.015703190118074417, + -0.0006886055343784392, + -0.00822548009455204, + -0.0030209149699658155, + -0.017071451991796494, + 0.022099018096923828, + 0.007461799308657646, + -0.016371410340070724, + -0.007616921793669462, + -0.0061770654283463955, + 0.02098531648516655, + -0.00265697343274951, + -0.0029135223012417555, + 0.020364824682474136, + 0.027603885158896446, + 0.02696748450398445, + 0.024644620716571808, + -0.0202693659812212, + 0.021335337311029434, + -0.03745218738913536, + 0.020237544551491737, + -0.027110673487186432, + 0.04123876988887787, + -0.006495265755802393, + -0.033824700862169266, + -0.018519263714551926, + 0.0032018914353102446, + -0.0006761758704669774, + -0.0219558272510767, + 0.009999447502195835, + 0.00044150304165668786, + 0.026474272832274437, + -0.02905169688165188, + 0.017278281971812248, + 0.011781369335949421, + -0.005516799166798592, + -0.028319835662841797, + -0.009752842597663403, + -0.005079274065792561, + 0.025774233043193817, + -0.01254505105316639, + 0.02240130864083767, + 0.017787402495741844, + 0.003434575628489256, + -0.0467754602432251, + 0.021048955619335175, + -0.0031064313370734453, + 0.0436570942401886, + -0.01673734001815319, + -0.011144968681037426, + 0.03980686888098717, + 0.022655868902802467, + -0.020523926243185997, + 0.03627484664320946, + -0.007278834003955126, + -0.003762719687074423, + -0.003480316838249564, + 0.008663006126880646, + 0.022894518449902534, + -0.011232473887503147, + 0.037643108516931534, + -0.011693865060806274, + 0.00964147225022316, + -0.02876531518995762, + -0.017676031216979027, + 0.005007678642868996, + 0.030515417456626892, + 0.0056162369437515736, + -0.013062126003205776, + 0.025471942499279976, + -0.011677954345941544, + 0.021208057180047035, + 0.0337928831577301, + 0.007652719505131245, + 0.02865394577383995, + -0.00609353743493557, + -0.0482073612511158, + -0.017039630562067032, + -0.0374203659594059, + -0.03290192037820816, + -0.016260040923953056, + -0.02171717770397663, + -0.025344662368297577, + 0.033665601164102554, + -0.0068214209750294685, + 0.02085803635418415, + -0.03204277902841568, + 0.022926338016986847, + 0.01573500968515873, + -0.011367709375917912, + 0.0005300025222823024, + 0.020221635699272156, + -0.013300776481628418, + 0.00828912016004324, + -0.002052392577752471, + 0.03856588900089264, + -0.013563292101025581, + 0.014024682343006134, + 0.010874498635530472, + -0.026903843507170677, + -0.010771083645522594, + 0.01689644157886505, + -0.009267586283385754, + 0.02639472298324108, + 0.025710592046380043, + 0.004562198184430599, + -0.010556298308074474, + -0.006924835965037346, + -0.007815796881914139, + -0.022289937362074852, + 0.009331226348876953, + -0.014509937725961208, + -0.008305029943585396, + 0.010246052406728268, + 0.011805234476923943, + -0.007501574233174324, + 0.0021697289776057005, + 0.011654089204967022, + -0.012974620796740055, + 0.03322011977434158, + 0.004753118380904198, + 0.0008054447825998068, + -0.011471124365925789, + 0.02042846567928791, + 0.02976764738559723, + -0.01629186049103737, + -0.01856699399650097, + -0.006590725854039192, + 0.005699764471501112, + 0.04069783166050911, + 0.0001593487977515906, + -0.0008367676055058837, + -0.026776563376188278, + 0.0032933740876615047, + -0.00929940678179264, + -0.008193660527467728, + 0.02084212563931942, + -0.011264294385910034, + -0.028160735964775085, + -0.044452596455812454, + 0.03971140831708908, + -0.029544906690716743, + -0.057785190641880035, + 0.0005265222280286252, + -0.027572063729166985, + 0.003100465051829815, + -0.01184500940144062, + 0.009203946217894554, + -0.013388281688094139, + 0.034238364547491074, + 0.049289241433143616, + 0.024724170565605164, + 0.005560551770031452, + -0.006228772923350334, + 0.03258372098207474, + -0.03560662269592285, + -0.002275132806971669, + -0.021367156878113747, + 0.022035377100110054, + 0.0021359201055020094, + -0.003492249408736825, + 0.011208608746528625, + -0.02396048977971077, + -0.022608138620853424, + 0.012099569663405418, + -0.006121380254626274, + 0.0012827453901991248, + -0.01452584844082594, + -0.00460595078766346, + 0.014048547483980656, + 0.018646543845534325, + 0.008392535150051117, + 0.014756543561816216, + 0.010341512970626354, + 0.03075406886637211, + -0.011964335106313229, + 0.020173905417323112, + -0.0012071727542206645, + -0.0014448286965489388, + -0.0002503342111594975, + -0.012934845872223377, + -0.024628710001707077, + 0.009339181706309319, + 0.0030129600781947374, + -0.006885061040520668, + -0.008925520814955235, + 0.014971328899264336, + 0.013571246527135372, + -0.0009685224504210055, + -0.01468494813889265, + 0.002491906750947237, + -0.015011103823781013, + -0.021589897572994232, + -0.033983804285526276, + -0.038374967873096466, + -0.03570208325982094, + 0.0066941408440470695, + -0.0005508844624273479, + -0.024183230474591255, + -0.01567932404577732, + 0.02295815944671631, + 0.0005946370074525476, + -0.04123876988887787, + -0.03220187872648239, + -0.04582085832953453, + 0.012099569663405418, + -0.03554298356175423, + 0.0029453423339873552, + 0.0101346829906106, + 0.011550674214959145, + 0.0402841717004776, + 0.024294599890708923, + 0.016371410340070724, + -0.00723110418766737, + -0.0192988533526659, + 0.08228662610054016, + 0.006010009907186031, + 0.011582494713366032, + -0.03675214573740959, + -0.016116850078105927, + -0.004888353403657675, + -0.010397197678685188, + -0.01140748430043459, + 0.017485111951828003, + 0.022783149033784866, + -0.013189406134188175, + 0.01646687090396881, + -0.011916604824364185, + -0.023992309346795082, + -0.013420102186501026, + 0.024167319759726524, + -0.004192290361970663, + 0.008472085930407047, + 0.011797280050814152, + -0.023339999839663506, + 0.010882453992962837, + -0.028399385511875153, + -0.00991989765316248, + -0.0323609821498394, + -0.02637881226837635, + -0.0034743505530059338, + 0.004916196223348379, + -0.00659868074581027, + 0.023212719708681107, + -0.015536134131252766, + -0.020762575790286064, + -0.00929940678179264, + 0.008838015608489513, + 0.03754764795303345, + 0.009005071595311165, + -0.004355367738753557, + 0.0025515693705528975, + 0.027460694313049316, + -0.013746256940066814, + -0.0008835032931528986, + -0.003438553074374795, + 0.013929222710430622, + -0.022512678056955338, + -0.007811819668859243, + -0.011113149113953114, + 0.006889038719236851, + 0.0037368659395724535, + 0.002380536636337638, + 0.009697156958281994, + 0.004128650296479464, + -0.03932956978678703, + 0.04216155409812927, + -0.019362494349479675, + 0.023021798580884933, + -0.020253455266356468, + -0.011550674214959145, + -0.03151774778962135, + -0.008384580723941326, + 0.006789600942283869, + 0.027301594614982605, + -0.027603885158896446, + -0.00844026543200016, + -0.00828912016004324, + -0.00698449881747365, + -0.01183705497533083, + -0.008145930245518684, + 0.02696748450398445, + -0.016514601185917854, + -0.03302920237183571, + -0.027047034353017807, + -0.0027305572293698788, + 0.033665601164102554, + -0.021589897572994232, + 0.0013642841950058937, + -0.006718005985021591, + 0.024708261713385582, + 0.010771083645522594, + -0.022496767342090607, + 0.011391574516892433, + 0.006936768535524607, + 0.00649128807708621, + 0.006889038719236851, + -0.0029254548717290163, + -0.022751327604055405, + -0.024724170565605164, + -0.021939916536211967, + -0.02481963112950325, + 0.0001469190901843831, + -0.019776154309511185, + 0.03586118668317795, + 0.018041962757706642, + -0.003681180765852332, + 0.012099569663405418, + -0.016546420753002167, + 0.025328751653432846, + 0.027826623991131783, + -0.01729419082403183, + -0.00033560197334736586, + 0.013229181990027428, + -0.002599299419671297, + -0.0075174844823777676, + 0.0038184048607945442, + 0.03436564281582832, + -0.024740081280469894, + -0.01885337382555008, + 0.013634886592626572, + -0.024437790736556053, + -0.027683435007929802, + -0.0018226916436105967, + -0.043307073414325714, + 0.004299683030694723, + 0.01715100184082985, + 0.004884376190602779, + 1.3944572856416926e-5, + 0.013929222710430622, + -0.0015223900554701686, + -0.017373742535710335, + -0.0024044017773121595, + 0.007764089852571487, + -0.0003723939007613808, + -0.009188036434352398, + -0.0042559304274618626, + -0.004856533370912075, + -0.09482371807098389, + -0.015098609030246735, + -0.005540664307773113, + 0.020921675488352776, + 0.009267586283385754, + -0.01594979502260685, + 0.005687831901013851, + 0.02311725914478302, + -0.0026947595179080963, + 0.024151410907506943, + -0.0034823056776076555, + -0.018789732828736305, + 0.005500889383256435, + 0.031963229179382324, + 0.010922228917479515, + -0.010198323056101799, + -0.02365819923579693, + -0.0006100498139858246, + 0.01673734001815319, + -0.014669038355350494, + -0.021796727553009987, + 0.002199560170993209, + 0.03592482581734657, + -0.002237346488982439, + -0.019648874178528786, + 0.03218597173690796, + -0.016498690471053123, + 0.003297351533547044, + -0.027762984856963158, + -0.02696748450398445, + 0.014096277765929699, + -0.015766829252243042, + 0.0010928194969892502, + 0.015130428597331047, + -0.013451921753585339, + 0.01742147095501423, + 0.013984907418489456, + 0.008710735477507114, + 0.05845341458916664, + 0.01495541911572218, + 0.005385541822761297, + 0.009402821771800518, + 0.005628169514238834, + -0.009935807436704636, + -0.0019798032008111477, + 0.005699764471501112, + 0.004625838249921799, + -0.037802208214998245, + 3.119855318800546e-5, + 0.011502943933010101, + 0.012195030227303505, + -0.013428056612610817, + 0.004291727673262358, + -0.018519263714551926, + 0.008241389878094196, + 0.013897402212023735, + -0.0006831364589743316, + -0.021605806425213814, + 0.0020742688793689013, + -0.01983979530632496, + 0.05600326880812645, + 0.01828061230480671, + -0.03503386303782463, + -0.009092576801776886, + -0.003142228815704584, + -0.002718624658882618, + 0.006280480418354273, + -0.004872443620115519, + 0.001991735538467765, + 0.00028240284882485867, + 0.009259631857275963, + -0.025853782892227173, + -0.0012529140803962946, + 0.00999149214476347, + 0.006833353545516729, + -0.0012549028033390641, + 0.010588117875158787, + 0.003681180765852332, + 0.010763128288090229, + -0.012704150751233101, + -0.005886707454919815, + 0.013746256940066814, + 0.008297075517475605, + -0.00726292422041297, + -0.019107934087514877, + -0.009903986938297749, + -0.009848302230238914, + 0.002348716603592038, + -0.009068711660802364, + 0.008042515255510807, + 0.0020006850827485323, + 0.007258946541696787, + 0.03786584734916687, + 0.021494437009096146, + -0.015854334458708763, + 0.042034272104501724, + 0.003870112355798483, + -0.009013026021420956, + 0.0044826483353972435, + -0.008456175215542316, + -0.010214232839643955, + -0.021653536707162857, + -0.005134958773851395, + -0.028590306639671326, + 0.000750754086766392, + 0.01495541911572218, + 0.01192456018179655, + 0.009347137063741684, + -0.0017421471420675516, + -0.02068302594125271, + -0.017357831820845604, + 0.030006296932697296, + 0.0017819221829995513, + -0.00011012717004632577, + -0.0059702349826693535, + 0.002575434511527419, + -0.000727883423678577, + 0.016085030511021614, + -0.01732601225376129, + -0.003993414808064699, + -0.014406522735953331, + 0.034397464245557785, + -0.012131390161812305, + -0.04944834113121033, + 0.010182412341237068, + 0.01700781099498272, + -0.0016586196143180132, + -0.02639472298324108, + 0.012688240967690945, + 0.024771900847554207, + -0.00011112154606962577, + 0.007843639701604843, + 0.00815388560295105, + 0.009561922401189804, + 0.003492249408736825, + -0.000261769542703405, + 0.020062536001205444, + -0.0076368097215890884, + 0.024342330172657967, + -0.018805643543601036, + -0.0024620755575597286, + 0.002903578570112586, + 0.006284457631409168, + 0.017119182273745537, + -0.007227126508951187, + -0.004773005843162537, + -0.0027206134982407093, + -0.014478118158876896, + -0.012242760509252548, + -0.023896850645542145, + -0.024755990132689476, + 0.030817708000540733, + 0.03703852742910385, + 0.027476605027914047, + -0.017485111951828003, + -0.029035786166787148, + -0.015202024020254612, + 0.010254007764160633, + -0.002430255524814129, + -0.003637428395450115, + 0.0033550255466252565, + -0.0034683842677623034, + 0.008062402717769146, + -0.0033987779170274734, + 0.030006296932697296, + -0.031406380236148834, + -0.023339999839663506, + -0.012433680705726147, + -0.020348915830254555, + -0.010556298308074474, + 0.020492104813456535, + -0.001455766847357154, + -0.003627484431490302, + -0.002645040862262249, + 0.006725960876792669, + -0.01843971386551857, + -0.015281573869287968, + -0.006936768535524607, + 0.02752433530986309, + 0.0018187141977250576, + -0.031231369823217392, + 0.022480858489871025, + -0.0019082080107182264, + 0.012568915262818336, + 0.0037746522575616837, + 0.006149222608655691, + -0.0016695577651262283, + 0.004462760407477617, + -0.025153741240501404, + 0.016085030511021614, + 0.027142493054270744, + -0.02625153213739395, + -0.01162226963788271, + 0.0023467279970645905, + 0.00985625758767128, + 0.008774375542998314, + 0.004860511049628258, + 0.01672143116593361, + -0.012950756587088108, + 0.006455490365624428, + 0.00013672673958353698, + -0.012027975171804428, + -0.0021538189612329006, + 0.011288159526884556, + -0.011598404496908188, + -0.0013344528852030635, + -0.013762167654931545, + 0.03656122460961342, + 0.01659415103495121, + -0.012409815564751625, + -0.011677954345941544, + -0.010794948786497116, + 0.008062402717769146, + -0.033951982855796814, + 0.013547382317483425, + -0.008328895084559917, + -0.006753803230822086, + -0.020873945206403732, + 0.024167319759726524, + -0.039647769182920456, + 0.010254007764160633, + 9.477648563915864e-5, + 0.034811124205589294, + -0.013825807720422745, + 0.013531471602618694, + 0.003581743221729994, + 0.006825398653745651, + -0.04066601023077965, + -0.008631185628473759, + 0.02905169688165188, + -0.02213083766400814, + -0.015583864413201809, + 0.007183373905718327, + -0.0034325867891311646, + -0.006181042641401291, + -0.0025137830525636673, + 0.016641881316900253, + 0.0010540388757362962, + 0.0160532109439373, + -0.025281021371483803, + -0.009291451424360275, + -0.018821554258465767, + -0.008853926323354244, + 0.017389651387929916, + 0.028001634404063225, + 0.010444927960634232, + -0.012282535433769226, + -0.016355499625205994, + -0.0022651890758424997, + -0.0028200510423630476, + 0.004442872945219278, + -0.017357831820845604, + -0.02128760702908039, + 0.001236009644344449, + -0.011741594411432743, + -0.014406522735953331, + 0.01700781099498272, + 0.0007979869260452688, + 0.011391574516892433, + -0.0010560275986790657, + -0.010898363776504993, + 0.017819222062826157, + 0.03277464210987091, + -0.013873537071049213, + -7.203013228718191e-5, + -0.012807565741240978, + -0.008305029943585396, + 0.03436564281582832, + 0.023785479366779327, + -0.013157586567103863, + 0.014661082997918129, + -0.0022313802037388086, + -0.0035220806021243334, + -0.029863107949495316, + 0.011121103540062904, + -0.008511860854923725, + 0.0009555955766700208, + -0.008734600618481636, + -0.001709332806058228, + 0.009450552053749561, + -0.042193371802568436, + -0.007859549485147, + -0.006371962837874889, + 0.02749251388013363, + 0.009673291817307472, + 0.008328895084559917, + -0.008814151398837566, + -0.02426278032362461, + 0.0178669523447752, + -0.0037905622739344835, + 0.008678915910422802, + 0.002686804626137018, + 0.038502249866724014, + -0.0025734456721693277, + 0.005858864635229111, + 0.005409406963735819, + 0.005926482379436493, + -0.0023507054429501295, + 0.0321064218878746, + 0.00921190157532692, + 0.037643108516931534, + -0.012139345519244671, + -0.00613729003816843, + -0.008599366061389446, + -0.0021876278333365917, + -0.00024722679518163204, + 0.009275541640818119, + -0.018630633130669594, + -0.01227458007633686, + -0.008838015608489513, + 0.017103271558880806, + 0.001085858908481896, + -0.017230551689863205, + -0.002863803645595908, + 0.0031203527469187975, + 0.015138383954763412, + 0.004769028630107641, + 0.009394866414368153, + 0.004120694939047098, + -0.02439006045460701, + -0.0019350561778992414, + 0.024342330172657967, + 0.026315173134207726, + -0.01713509112596512, + -0.02623562328517437, + -0.018328342586755753, + -0.025217382237315178, + -0.01433492824435234, + 0.013205316849052906, + -0.0242309607565403, + -0.032424621284008026, + 0.009506236761808395, + -0.034079261124134064, + -0.021383067592978477, + 0.011797280050814152, + -0.005699764471501112, + -0.018232882022857666, + -0.007270879112184048, + -0.01184500940144062, + -0.006403782870620489, + 0.006765735801309347, + 0.03519296273589134, + -0.010246052406728268, + 9.935994057741482e-6, + 0.012314355000853539, + 0.025344662368297577, + 0.012560960836708546, + 0.047125477343797684, + 0.013316686265170574, + -0.018503352999687195, + 0.01928294450044632, + -0.0035757769364863634, + 0.003010971238836646, + -0.01495541911572218, + 0.019457954913377762, + 0.03209051117300987, + -0.01211548037827015, + 0.007465776987373829, + -0.024453701451420784, + -0.023753659799695015, + -0.031692758202552795, + -0.001328486716374755, + 0.018471533432602882, + -0.0012678296770900488, + -0.010365378111600876, + -0.004124672617763281, + 0.02252858877182007, + -0.027349324896931648, + 0.0035936757922172546, + -0.004088874906301498, + -0.007286788895726204, + 0.003937730100005865, + -0.016514601185917854, + -0.011256339028477669, + -0.001937044900842011, + 0.009689202532172203, + -0.021446706727147102, + 0.027715254575014114, + -0.008336850441992283, + -0.026712924242019653, + 0.01467699371278286, + 0.0062247952446341515, + -0.032424621284008026, + -0.009378956630825996, + -0.012385950423777103, + 0.00253367074765265, + -0.008726646192371845, + 0.0026967483572661877, + 0.001975825522094965, + -0.011351799592375755, + 0.008917566388845444, + 0.016132760792970657, + -0.008305029943585396, + 0.011868874542415142, + 0.0028021521866321564, + 0.01801014319062233, + -0.01069948822259903, + -0.016832800582051277, + -0.057244252413511276, + 8.685255124873947e-6, + -0.011009734123945236, + 0.017389651387929916, + -0.005465091671794653, + 0.036656685173511505, + -0.00821752566844225, + 0.002772320993244648, + 0.004804825875908136, + 0.03719762712717056, + -0.0037169784773141146, + -0.044452596455812454, + -0.014979283325374126, + -0.019680693745613098, + 0.007787954527884722, + -0.011375663802027702, + -0.01220298558473587, + -0.0003858179843518883, + 0.00914826150983572, + 0.021669447422027588, + 0.00528212683275342, + -0.009967627003788948, + -0.011399528943002224, + 0.006145245395600796, + -0.016419140622019768, + -0.02011026442050934, + -0.008694825693964958, + 0.002841927343979478, + -0.012147299945354462, + 0.004055066499859095, + 0.006507198326289654, + 0.0026669171638786793, + 0.00408092001453042, + 0.0004638765240088105, + 0.011327934451401234, + -0.014454253017902374, + 0.04817553982138634, + -0.017501022666692734, + 0.022305848076939583, + -0.010890408419072628, + 0.009052800945937634, + -0.019092023372650146, + -0.011884785257279873, + -0.04111149162054062, + -0.012712106108665466, + -0.02127169631421566, + -0.00805444736033678, + -0.030960898846387863, + 0.023435458540916443, + -0.022735418751835823, + 0.038661349564790726, + 0.027047034353017807, + 0.006574815604835749, + -0.018662452697753906, + 0.008086267858743668, + -0.011009734123945236, + 0.0032337114680558443, + -0.005894662346690893, + -0.007899324409663677, + 0.006499242968857288, + -0.018121512606739998, + 0.017485111951828003, + 0.009251676499843597, + -0.005576462019234896, + 0.003669248428195715, + 0.011693865060806274, + -0.019632965326309204, + 0.0011137013789266348, + 0.026410633698105812, + -0.02068302594125271, + -0.011264294385910034, + -0.007688517216593027, + 0.00800274033099413, + -0.013642841950058937, + -0.021017136052250862, + -0.008830061182379723, + 0.011502943933010101, + -0.005703742150217295, + -0.005795224569737911, + 0.002957274904474616, + 0.018773823976516724, + -0.012728015892207623, + 0.029544906690716743, + 0.01915566436946392, + 0.005632147192955017, + 0.002780275885015726, + -0.0028856799472123384, + 0.00038904970278963447, + 0.006109447684139013, + -0.01517815887928009, + -0.02125578746199608, + -0.0034982156939804554, + -0.0005185672198422253, + -0.00793910026550293, + -0.004076942801475525, + -0.012648466043174267, + 0.003351047867909074, + -0.015711145475506783, + -0.018121512606739998, + -0.010524477809667587, + 0.017469201236963272, + -0.0034504856448620558, + -0.0027464672457426786, + -0.02281496860086918, + -0.02863803505897522, + 0.006873128470033407, + 0.0009943762561306357, + -0.021589897572994232, + -0.0020742688793689013, + 0.0179942324757576, + 0.011232473887503147, + -0.017691941931843758, + -0.007779999636113644, + 0.004462760407477617, + 0.01261664554476738, + -0.00040172800072468817, + -0.013706482015550137, + -0.011757505126297474, + 0.0257901418954134, + 0.003965572454035282, + -0.0025436144787818193, + 0.0027663547080010176, + -0.016013434156775475, + 0.0015999514143913984, + 0.0033629804383963346, + -0.010532433167099953, + -0.004761073272675276, + 0.005290081724524498, + 0.02311725914478302, + -0.0024620755575597286, + -0.0017729728715494275, + -0.02225811779499054, + -0.016244130209088326, + -0.007493619341403246, + -0.009728977456688881, + -0.006718005985021591, + 0.010492658242583275, + 0.010667668655514717, + 0.002668905770406127, + 0.003836303483694792, + 0.010246052406728268, + -0.0026132208295166492, + -0.03078588843345642, + 0.00964942667633295, + -0.0038064722903072834, + -0.002583389403298497, + 0.003026881255209446, + 0.08527770638465881, + -0.008623231202363968, + -0.007676584646105766, + -0.0030010275077074766, + 0.006037852726876736, + -0.018694274127483368, + -0.009681247174739838, + 0.025631042197346687, + 0.012903026305139065, + -0.019330674782395363, + 0.005218486301600933, + -0.029322165995836258, + 0.025010550394654274, + -0.01183705497533083, + -0.027715254575014114, + 0.004387187771499157, + 0.0034126993268728256, + 0.010715398006141186, + -0.007927167229354382, + 0.013921267352998257, + 0.022019468247890472, + -0.0031084201764315367, + 0.003730899654328823, + 0.017039630562067032, + -0.00198676367290318, + -0.006658343132585287, + -0.0029135223012417555, + -0.0008074335055425763, + -0.008758465759456158, + 0.017278281971812248, + 0.017119182273745537, + 0.0011445271084085107, + -0.027603885158896446, + 0.0019499717745929956, + 0.0007915234891697764, + 0.01580660417675972, + 0.005946369841694832, + 0.016188444569706917, + -0.013555336743593216, + 0.021796727553009987, + 0.0037706748116761446, + -0.024787811562418938, + 0.017103271558880806, + 0.012083659879863262, + -0.00698449881747365, + 0.0035220806021243334, + 0.003963583614677191, + -0.005691809579730034, + 0.0007035211892798543, + 0.008392535150051117, + 0.0051468913443386555, + -0.01859881356358528, + 0.0051468913443386555, + 0.014350838027894497, + 0.0006244682590477169, + -0.006542995572090149, + -0.003615552093833685, + -0.0045303781516849995, + -0.020810306072235107, + 0.00964942667633295, + -0.03191550076007843, + -0.011399528943002224, + -0.015671368688344955, + -0.030515417456626892, + 0.01583842560648918, + -0.005504867061972618, + -0.007239059079438448, + -0.024199139326810837, + 0.005946369841694832, + 0.009553967043757439, + -0.007879436947405338, + 0.016387321054935455, + -0.00429570535197854, + -0.010452883318066597, + 0.003788573434576392, + 0.015034968964755535, + 0.004566175863146782, + 0.015727054327726364, + -0.011025643907487392, + -0.009538057260215282, + 0.008702781051397324, + 0.0017162933945655823, + 0.004709365777671337, + -0.02270359918475151, + -1.5669194908696227e-5, + 0.004426963161677122, + 0.003907898440957069, + -0.012632555328309536, + 0.009331226348876953, + -0.010540388524532318, + -0.016673700883984566, + 0.015957750380039215, + -0.008392535150051117, + -0.0007726303301751614, + 0.013595111668109894, + -0.014836093410849571, + 0.00951419211924076, + -0.021239876747131348, + -0.011232473887503147, + 0.0032098465599119663, + 0.013125766068696976, + 0.00979261752218008, + 0.01828061230480671, + 0.011701819486916065, + 0.008790286257863045, + 0.006542995572090149, + 0.037515826523303986, + 0.00457413075491786, + -0.019935254007577896, + 0.004518445581197739, + -0.0025515693705528975, + -0.0018376072403043509, + -0.021080777049064636, + -0.015448628924787045, + -0.036370307207107544, + 0.01758057251572609, + 0.012370040640234947, + -0.004446850623935461, + -0.010429018177092075, + -0.024008220061659813, + -0.003388834185898304, + -0.004411052912473679, + 0.013300776481628418, + -0.008126042783260345, + -0.0035240694414824247, + 0.0038860223721712828, + -0.013014396652579308, + 0.005007678642868996, + -0.008989160880446434, + 0.003187970258295536, + 0.0075095295906066895, + 0.019776154309511185, + 0.02394457906484604, + -0.003418665612116456, + -0.00670607341453433, + -0.009975582361221313, + 0.01369057223200798, + -0.002114043803885579, + 0.00828912016004324, + -0.017389651387929916, + 0.011685909703373909, + -0.015154293738305569, + -0.013579201884567738, + 0.008297075517475605, + -0.0006219823262654245, + 0.003931763581931591, + -0.01211548037827015, + -0.01192456018179655, + 0.016498690471053123, + 0.006646411027759314, + 0.021924007683992386, + -0.021239876747131348, + 0.012075705453753471, + 0.0016735352110117674, + 0.010365378111600876, + 0.009378956630825996, + -0.01240186020731926, + 0.018503352999687195, + 0.00878233090043068, + -0.014621308073401451, + 0.007159508764743805, + -0.012918936088681221, + -0.018773823976516724, + -0.019903434440493584, + -0.01404059212654829, + 0.0164350513368845, + -0.005990122444927692, + 0.025662861764431, + 0.006356053054332733, + 0.016482779756188393, + -0.0006493277032859623, + -0.003726922208443284, + -0.00790330208837986, + -0.020380735397338867, + 0.0033430929761379957, + 0.017548751085996628, + -0.008201614953577518, + -0.0039675612933933735, + -0.027110673487186432, + 0.011781369335949421, + 0.007752157282084227, + -0.0076447646133601665, + 0.018948834389448166, + -0.019362494349479675, + 0.004617883358150721, + -0.023626379668712616, + 0.007620899472385645, + -0.015289529226720333, + -0.0042758178897202015, + 0.0013921267818659544, + -0.024883270263671875, + 0.020348915830254555, + -0.004955971147865057, + -0.009784662164747715, + -0.006594703067094088, + 0.007978875190019608, + 0.010794948786497116, + 0.019362494349479675, + -0.0015442663570865989, + 0.006041829939931631, + -0.0048644887283444405, + 0.007127688731998205, + 0.018328342586755753, + 0.007652719505131245, + -0.00042683599167503417, + 0.006733915768563747, + -0.016419140622019768, + -0.026283353567123413, + 0.0029254548717290163, + 0.0064594680443406105, + -0.049289241433143616, + -0.0140326377004385, + 0.0030944987665861845, + -0.00036518467823043466, + -0.027349324896931648, + 0.020460285246372223, + 0.009569876827299595, + 0.013873537071049213, + 0.013022351078689098, + 0.0020076455548405647, + 0.008957341313362122, + 0.010023312643170357, + 9.763531852513552e-5, + -0.028128914535045624, + -0.02015799470245838, + 0.01928294450044632, + -0.0014617331326007843, + 0.0055883945897221565, + 0.025646952912211418, + -0.002013611840084195, + 0.011876829899847507, + 0.004259907640516758, + -0.02028527483344078, + 0.00999149214476347, + 0.017469201236963272, + 0.017198732122778893, + 0.022178567945957184, + -0.00613729003816843, + 0.0039476738311350346, + -0.009331226348876953, + -0.020476195961236954, + 0.013085991144180298, + -0.0054611144587397575, + -0.0021856389939785004, + 0.006578793283551931, + 0.00951419211924076, + 0.005305991508066654, + -0.013499652035534382, + -0.018185153603553772, + -3.180450221407227e-5, + 0.008885745890438557, + -0.006188997533172369, + -0.03315648064017296, + 0.005902617238461971, + 0.03656122460961342, + 0.0076447646133601665, + 0.015623639337718487, + 0.005087228957563639, + 0.003627484431490302, + -0.003060690127313137, + -0.009307361207902431, + -0.002863803645595908, + 0.008845970965921879, + 0.0019748311024159193, + -0.004156492650508881, + 0.021908096969127655, + -0.012974620796740055, + 0.0014269299572333694, + 0.004582085646688938, + 0.01177341490983963, + 0.005437249317765236, + -0.0003035333356820047, + 0.0010381287429481745, + -0.005787269677966833, + 0.0017898771911859512, + 0.007223148830235004, + 0.022019468247890472, + 0.004419007804244757, + 0.00794705469161272, + 0.001151487696915865, + -0.018248792737722397, + 0.016530510038137436, + 0.009315316565334797, + -0.02030118554830551, + -0.00048600140144117177, + -0.02663337253034115, + -0.01353942696005106, + 0.007676584646105766, + -0.019776154309511185, + 0.014151962473988533, + 0.018216973170638084, + -0.015432719141244888, + 0.0007646753219887614, + 0.00787546020001173, + 0.015011103823781013, + 0.003963583614677191, + -0.0030388138256967068, + 0.011200654320418835, + 0.021860366687178612, + 0.007505551911890507, + -0.02268768846988678, + 0.0043832105584442616, + -0.01197228953242302, + -0.007684539537876844, + 0.007883414626121521, + 0.006479355506598949, + 0.022433128207921982, + -0.0023089416790753603, + -0.005747494753450155, + 0.02100122533738613, + -0.011598404496908188, + -0.0014527837047353387, + -0.007986829616129398, + -0.008384580723941326, + -0.002183650154620409, + -0.013809897005558014, + 0.010802903212606907, + 0.028813045471906662, + -0.005723629612475634, + 0.00439116545021534, + -0.004828691016882658, + -0.002541625639423728, + 0.004916196223348379, + 0.013523517176508904, + 0.007624877151101828, + -0.000639383913949132, + 0.0018743992550298572, + 0.021892188116908073, + 0.011240429244935513, + 0.005699764471501112, + 0.01416787225753069, + -0.012584825977683067, + -0.016045255586504936, + -0.004478670656681061, + -0.011868874542415142, + 0.013078036718070507, + 0.010230142623186111, + 0.001651658909395337, + -0.01902838423848152, + -0.005202576518058777, + -0.003816416021436453, + -0.008241389878094196, + 0.0052542840130627155, + 0.0022930316627025604, + -0.0005961285787634552, + 0.02055574581027031, + 0.004426963161677122, + -0.011741594411432743, + -0.00701631885021925, + 0.018917012959718704, + -0.004343435633927584, + 0.009092576801776886, + 0.013579201884567738, + -0.016482779756188393, + -0.0046377708204090595, + 0.0011673977132886648, + -0.0036493607331067324, + 0.00719928415492177, + 0.006725960876792669, + -0.004180357791483402, + -0.013897402212023735, + 0.017548751085996628, + -0.014589488506317139, + -0.012354130856692791, + -0.020046625286340714, + -0.0030706338584423065, + -0.008352760225534439, + 0.012735971249639988, + -0.015917975455522537, + 0.006881083827465773, + -0.008694825693964958, + -0.03376106172800064, + -0.004132627509534359, + -0.013738302513957024, + -0.012155255302786827, + 0.004701410885900259, + 0.008647095412015915, + -0.0027285683900117874, + 0.002895623678341508, + 0.011208608746528625, + 0.00652310810983181, + 0.007135644089430571, + -0.0009302389807999134, + -0.0016168557340279222, + 0.015472494065761566, + 0.005679877009242773, + 0.000951120862737298, + 0.018535172566771507, + -0.012290490791201591, + -0.020762575790286064, + 0.0060179647989571095, + 0.009896032512187958, + 0.02127169631421566, + -0.0062247952446341515, + 0.004995746072381735, + -0.0025654907803982496, + -0.0031979139894247055, + 0.005465091671794653, + 0.019044293090701103, + -0.01583842560648918, + 0.004271840211004019, + -0.004267862997949123, + -0.0004134119371883571, + 0.013245091773569584, + -0.0006831364589743316, + -0.029115336015820503, + 0.004422985482960939, + 0.020619384944438934, + 0.029576726257801056, + -0.023515010252594948, + 0.016116850078105927, + 0.0054014516063034534, + 0.0007050127605907619, + 0.01424742303788662, + 0.011184743605554104, + 0.00802660547196865, + 0.018264703452587128, + -0.0008874807972460985, + 0.006682208273559809, + 0.0019539492204785347, + 0.027397053316235542, + 0.009609651751816273, + 0.016785070300102234, + 0.007398159243166447, + 0.010985868982970715, + 0.004025234840810299, + 0.02466053143143654, + 0.007473731879144907, + -0.01057220809161663, + 0.028288016095757484, + -0.005560551770031452, + -0.007652719505131245, + 0.015591819770634174, + 0.01192456018179655, + 0.0033709355629980564, + -0.002611231990158558, + 0.010476748459041119, + -0.01453380286693573, + -0.005687831901013851, + 0.006503220647573471, + -0.007783977314829826, + 0.0026271420065313578, + 0.00690892618149519, + -0.0010401175823062658, + 0.010826768353581429, + 0.025169651955366135, + -0.015528179705142975, + 0.02637881226837635, + -0.00698449881747365, + -0.016705520451068878, + -0.011900695040822029, + 0.01742147095501423, + 0.012258670292794704, + -0.0031621165107935667, + -0.01675325073301792, + -0.0012141333427280188, + -0.013945132493972778, + -0.0074379341676831245, + 0.020062536001205444, + -0.02906760573387146, + 0.005433271639049053, + 0.0037408433854579926, + 0.012385950423777103, + -0.0008253323030658066, + 0.0008218519506044686, + 0.03462020307779312, + -0.010365378111600876, + 0.018614722415804863, + 0.000959075870923698, + 0.017246462404727936, + -0.01190864946693182, + 0.012791655957698822, + 0.026919754222035408, + -0.006387873087078333, + -0.008014672435820103, + 0.019919345155358315, + -0.009100531227886677, + 0.014995194040238857, + 0.009959672577679157, + -0.01509065367281437, + -0.003639417001977563, + -0.0016377376159653068, + -0.009180081076920033, + -0.011033598333597183, + 0.02383320964872837, + 0.0028677810914814472, + -0.010651757940649986, + 0.026299262419342995, + 0.008058425039052963, + -0.009824437089264393, + 0.010118772275745869, + 0.007418046705424786, + -0.006089560221880674, + 0.00828912016004324, + -0.004554243292659521, + -0.008901655673980713, + 0.030117668211460114, + 0.03401562198996544, + -0.00204046000726521, + -0.012298445217311382, + 0.015313394367694855, + -0.012131390161812305, + -0.0075652142986655235, + 0.003299340372905135, + 0.008845970965921879, + -0.010731308721005917, + -0.006976543925702572, + 0.01063584815710783, + 0.016785070300102234, + -0.0012499309377744794, + 0.01742147095501423, + -0.007704427000135183, + -0.008631185628473759, + 0.022162657231092453, + -0.012958711013197899, + 0.008535725995898247, + -0.005365654360502958, + 0.014128097333014011, + 0.03974322974681854, + -0.0001988752483157441, + 0.007823752239346504, + -0.019823884591460228, + -0.0070481388829648495, + 0.009100531227886677, + 0.009315316565334797, + -0.002599299419671297, + 0.003891988657414913, + 0.021239876747131348, + -0.0038601686246693134, + 0.0016894452273845673, + -0.0024421880953013897, + 0.0069685885682702065, + 0.0022313802037388086, + -0.011375663802027702, + 0.0017312089912593365, + 0.012568915262818336, + 0.02367410995066166, + 0.0010212244233116508, + 0.019744334742426872, + -0.024040039628744125, + 0.013173496350646019, + 0.013022351078689098, + 0.023562738671898842, + -0.004454805515706539, + -0.005771359894424677, + -0.027683435007929802, + -0.002841927343979478, + 0.0033013292122632265, + -0.009625562466681004, + -0.0020384714007377625, + -0.026426542550325394, + -0.0071555315516889095, + 0.037770386785268784, + -0.018264703452587128, + 0.015400899574160576, + -0.014756543561816216, + 0.008599366061389446, + -0.011216564103960991, + 0.009355091489851475, + 0.020937586203217506, + 0.010715398006141186, + -0.008249345235526562, + -0.00802660547196865, + 0.001458749989978969, + -0.015170203521847725, + 0.002245301613584161, + 0.028144825249910355, + 0.00971306674182415, + 0.003796528559178114, + 0.002710669534280896, + -0.007151553872972727, + -0.011455214582383633, + -0.03888408839702606, + -0.004940061364322901, + 0.007183373905718327, + -0.006344120483845472, + -0.009689202532172203, + -0.016355499625205994, + 0.008400490507483482, + 0.011948425322771072, + -0.0011266282526776195, + -0.01883746311068535, + -0.02610834315419197, + -0.011208608746528625, + -0.004363323096185923, + 0.012179120443761349, + -0.012370040640234947, + -0.008830061182379723, + 0.01713509112596512, + -0.029385806992650032, + 0.017898771911859512, + 0.0018415848026052117, + 0.0022154701873660088, + -0.0021279652137309313, + 0.015536134131252766, + 0.006439580582082272, + -0.005477024242281914, + -0.011956379748880863, + -0.012910980731248856, + -0.023610468953847885, + -0.018678363412618637, + -0.000677667383570224, + 0.012322310358285904, + 0.006610613316297531, + 0.0022592227905988693, + 0.009689202532172203, + -0.006280480418354273, + -0.025646952912211418, + -0.013062126003205776, + -0.006240705493837595, + -0.009005071595311165, + -0.00701631885021925, + 0.01928294450044632, + -0.018964743241667747, + -0.00405904371291399, + -0.01177341490983963, + 0.02706294320523739, + -0.014024682343006134, + 0.030817708000540733, + 0.010293782688677311, + -0.025217382237315178, + -0.0025495807640254498, + 0.015583864413201809, + 0.009561922401189804, + -0.007004386279731989, + 0.00733849685639143, + -0.0023964466527104378, + 0.012234805151820183, + 0.010150592774152756, + -0.00495994882658124, + 0.001197229023091495, + 0.016657790169119835, + 0.00471334345638752, + -0.022210387513041496, + 0.014764498919248581, + -0.009172126650810242, + -0.016244130209088326, + -0.0046855006366968155, + 0.028860775753855705, + -0.006753803230822086, + 0.021939916536211967, + -0.020396646112203598, + -0.011144968681037426, + -0.0013811886310577393, + 0.008185705170035362, + -0.030960898846387863, + 0.012791655957698822, + 0.010397197678685188, + 0.013913311995565891, + 0.028956236317753792, + -0.017485111951828003, + -0.0028021521866321564, + -0.014629263430833817, + -0.0018028041813522577, + -0.016514601185917854, + -0.009203946217894554, + 0.005739539861679077, + -0.015575909055769444, + 0.03646576404571533, + -0.012473455630242825, + -0.015416809357702732, + -0.03166094049811363, + -0.0065867481753230095, + 0.016387321054935455, + -0.011097239330410957, + -0.004299683030694723, + 0.015058834105730057, + -0.0008263266645371914, + 0.012226850725710392, + 0.00616911007091403, + 0.0026092431508004665, + 0.017691941931843758, + -0.019092023372650146, + 0.0031044427305459976, + 0.0011365721002221107, + -0.01858290284872055, + -0.020953496918082237, + -0.010126727633178234, + 0.0032158128451555967, + -0.040347810834646225, + -0.012290490791201591, + -0.0013344528852030635, + -0.014987238682806492, + -0.029592636972665787, + -1.5001098290667869e-5, + 0.0035916869528591633, + 0.005389519035816193, + -0.008400490507483482, + -0.014923598617315292, + 0.01241777092218399, + -0.00991989765316248, + -0.003909887280315161, + -0.018757913261651993, + -0.015655459836125374, + 0.028399385511875153, + 0.007891369983553886, + -0.011367709375917912, + -0.00850390549749136, + -0.006041829939931631, + -0.011789324693381786, + -0.02184445783495903, + -0.012425725348293781, + 0.015082699246704578, + -0.0044667380861938, + 0.010277872905135155, + -0.004061032552272081, + 0.012942801229655743, + -0.0025515693705528975, + 0.011057463474571705, + -0.0055088442750275135, + 0.01985570415854454, + -0.008734600618481636, + -0.002213481580838561, + -0.0050196112133562565, + -0.005930460058152676, + -0.031835950911045074, + 0.0004121689416933805, + 0.0009153233258984983, + 0.002070291433483362, + 0.008495951071381569, + 0.0062049077823758125, + -0.0036712370347231627, + -0.002275132806971669, + 0.007219171617180109, + 0.000508126278873533, + -0.0073026991449296474, + -0.004108762834221125, + 0.037102166563272476, + -0.017898771911859512, + 0.014414478093385696, + 0.01268028561025858, + -0.00018743991677183658, + -0.010619938373565674, + 0.011693865060806274, + -0.006208885461091995, + -0.019362494349479675, + -0.0010132694151252508, + 0.004876421298831701, + 0.018789732828736305, + 0.007529417052865028, + -0.009068711660802364, + -0.011033598333597183, + -0.0010938139166682959, + 0.0016586196143180132, + -0.0007283805753104389, + -0.003923808690160513, + 0.001686462084762752, + 0.0005334828747436404, + -0.007223148830235004, + 0.01998298428952694, + -0.03048359788954258, + -0.00737031688913703, + 0.024358240887522697, + 0.0033669578842818737, + 0.010405153036117554, + 0.005691809579730034, + -0.0005901622935198247, + 0.003458440536633134, + 0.02779480442404747, + 0.03436564281582832, + 0.021860366687178612, + 0.02214674837887287, + 0.004506513010710478, + 0.009506236761808395, + -0.01716691069304943, + -0.002521738177165389, + 0.023562738671898842, + -0.015011103823781013, + -0.01375421229749918, + 0.026474272832274437, + 0.0032138240057975054, + -0.022289937362074852, + 0.0070958686992526054, + 0.0006503220647573471, + 0.011264294385910034, + -0.017087360844016075, + 0.0033251941204071045, + 0.00435934541746974, + 0.008535725995898247, + 0.017835132777690887, + -0.005854887422174215, + 0.01901247352361679, + -0.031549569219350815, + 0.0023686042986810207, + -0.02324453927576542, + -0.02948126755654812, + 0.022035377100110054, + 0.002660950878635049, + 0.0139053575694561, + 0.00794705469161272, + 0.012441635131835938, + -0.006260592956095934, + -0.016085030511021614, + -0.004001370165497065, + 0.005819089710712433, + 0.005039498675614595, + 0.01987161487340927, + 0.0042559304274618626, + -0.0217012669891119, + -0.009005071595311165, + 0.005357699003070593, + -0.008070357143878937, + -0.01831243373453617, + -0.03186776861548424, + -0.010723353363573551, + 0.0215739868581295, + -0.027858445420861244, + -0.0033450815826654434, + -0.014024682343006134, + 0.006940746214240789, + 0.008456175215542316, + -0.0030209149699658155, + -0.0076368097215890884, + -0.007239059079438448, + 0.013428056612610817, + -0.0027484558522701263, + 0.007931144908070564, + -0.018678363412618637, + 0.0017719784518703818, + 0.0074100918136537075, + -0.014653128571808338, + -0.007951032370328903, + 0.008058425039052963, + -0.003388834185898304, + -0.03726126626133919, + 0.008368670009076595, + 0.002456109272316098, + -0.009156216867268085, + 0.003199902828782797, + -0.013658751733601093, + -0.001228054636158049, + 0.0037607308477163315, + 0.0009913931135088205, + 0.006761758588254452, + 0.017230551689863205, + -0.032965559512376785, + -0.00680153351277113, + -0.0023884917609393597, + 0.0019111911533400416, + -0.022910429164767265, + 0.001918151741847396, + -0.02310134842991829, + 0.013054171577095985, + 0.0012111503165215254, + -0.005369631573557854, + 0.006765735801309347, + 0.0026032770983874798, + 0.01447016280144453, + -0.004936083685606718, + -0.008686871267855167, + -0.005564529448747635, + 0.0031800151336938143, + 0.018694274127483368, + 0.0032635428942739964, + -0.010460837744176388, + 0.025424212217330933, + -0.01170977484434843, + -0.004904263652861118, + 0.0046377708204090595, + -0.010190367698669434, + 0.002521738177165389, + 0.008209570311009884, + 0.022449038922786713, + -0.00620093010365963, + 0.019632965326309204, + -0.02370592951774597, + -0.015019059181213379, + -0.01770785264670849, + 0.0056082820519804955, + -0.02353091910481453, + -0.017389651387929916, + 0.006654365919530392, + 0.004916196223348379, + 0.017516931518912315, + 0.010150592774152756, + 0.008130020461976528, + 0.0007925178506411612, + -0.009132351726293564, + -0.021621717140078545, + -0.0024223006330430508, + -0.032265521585941315, + -0.01418378297239542, + 0.02766752429306507, + 0.020253455266356468, + -0.003915853798389435, + -0.005087228957563639, + 0.011455214582383633, + -0.012457545846700668, + -0.008615275844931602, + 0.01192456018179655, + 0.009736931882798672, + -0.0059423926286399364, + 0.019123844802379608, + -0.006932791322469711, + -0.004538333043456078, + 0.007441911846399307, + 0.0022552453447133303, + 0.0018724104156717658, + -0.009052800945937634, + 0.017755582928657532, + 0.016705520451068878, + 0.0014806261751800776, + -0.003816416021436453, + -0.018360162153840065, + -0.024565070867538452, + -0.0039019323885440826, + -0.05065750330686569, + -0.01020627748221159, + 0.010524477809667587, + 0.0026251531671732664, + -0.010516523383557796, + -0.018376072868704796, + 0.008336850441992283, + -0.017660122364759445, + 0.009378956630825996, + 0.00936304684728384, + 0.006344120483845472, + -0.016705520451068878, + -0.002742489567026496, + -0.015058834105730057, + 0.01069948822259903, + 0.0023705929052084684, + -0.0007964953547343612, + 0.018248792737722397, + -0.021303515881299973, + -0.007314631715416908, + -0.004904263652861118, + 0.0033828679006546736, + -0.008941431529819965, + -0.0036453832872211933, + 0.005536687094718218, + 0.0052542840130627155, + 0.005421339068561792, + 0.001883348566479981, + -0.01248936541378498, + -0.007163486443459988, + -0.011121103540062904, + -0.014175827614963055, + 0.01661005988717079, + -0.0039297747425735, + 0.009474417194724083, + -0.0163077712059021, + -0.013499652035534382, + -0.0018376072403043509, + -0.008336850441992283, + 0.018932923674583435, + -0.01829652301967144, + -0.011081328615546227, + -0.01625208556652069, + 0.003118363907560706, + -0.012226850725710392, + 0.015552044846117496, + -0.0016785070765763521, + -0.0033212166745215654, + 0.0026748720556497574, + -0.003623506985604763, + -0.012282535433769226, + -0.008312985301017761, + -0.013762167654931545, + -0.027015212923288345, + 0.0044309403747320175, + -0.005007678642868996, + 0.018073782324790955, + -0.031135909259319305, + 0.012425725348293781, + 0.004236042965203524, + 0.012457545846700668, + 0.0011137013789266348, + -0.006718005985021591, + -9.825680172070861e-5, + 0.005469069350510836, + 0.01220298558473587, + -0.0006050779484212399, + 0.002784253563731909, + 0.0242309607565403, + 0.024851450696587563, + -0.02096940577030182, + -0.004502535797655582, + -0.021796727553009987, + 0.013253046199679375, + -0.015408854000270367, + 0.003874089801684022, + 0.02539239265024662, + 0.0012837396934628487, + -0.008893701247870922, + 0.015464539639651775, + 0.003084555035457015, + 0.01813742332160473, + 0.019537504762411118, + -0.005560551770031452, + -0.002171717816963792, + -0.013650797307491302, + 0.0045303781516849995, + -0.0025515693705528975, + -0.025201471522450447, + -0.026903843507170677, + 0.015504314564168453, + 0.02582196146249771, + -0.004621860571205616, + -0.006021942477673292, + 0.01020627748221159, + 0.024612801149487495, + -0.003418665612116456, + -0.0018932924140244722, + 0.006785623263567686, + -0.0013961042277514935, + 0.0019748311024159193, + 0.005484979134052992, + -0.01770785264670849, + 0.01268028561025858, + 0.028701676055788994, + 0.0006801533745601773, + -0.03656122460961342, + -0.007250991649925709, + -0.02752433530986309, + 0.0037487985100597143, + 0.016132760792970657, + 0.008710735477507114, + -0.015989569947123528, + 0.01233822014182806, + 0.014223557896912098, + 0.014390612952411175, + -0.0011077350936830044, + -0.008647095412015915, + -0.010118772275745869, + 0.01005513221025467, + -0.023753659799695015, + -0.015790695324540138, + 0.0019768199417740107, + -0.028876686468720436, + 0.0005230418755672872, + 0.007215193938463926, + 0.011574539355933666, + -0.016975991427898407, + -0.020078444853425026, + -0.007278834003955126, + -0.012354130856692791, + 0.037929486483335495, + -0.005624191835522652, + 0.007823752239346504, + 0.01928294450044632, + 0.008265255019068718, + -0.01788286305963993, + 0.025662861764431, + 0.013706482015550137, + -0.010460837744176388, + 0.010158548131585121, + -0.014557668007910252, + 0.02765161544084549, + 0.014844048768281937, + -0.0255355816334486, + -0.02695157378911972, + 0.016785070300102234, + 0.0023049642331898212, + 0.0037706748116761446, + 0.0015850357012823224, + -0.012377995066344738, + -0.017644211649894714, + 0.011797280050814152, + 0.026410633698105812, + 0.0008760454948060215, + 0.009553967043757439, + 0.017548751085996628, + -0.030515417456626892, + 0.011113149113953114, + -0.004438895732164383, + 0.0009197980398312211, + 0.007211216725409031, + -0.00398347107693553, + 0.021080777049064636, + 0.00666232081130147, + 0.017039630562067032, + -0.00037637140485458076, + 0.020364824682474136, + -0.020317096263170242, + -0.0002110563509631902, + 0.013038260862231255, + -0.00257145706564188, + -0.018646543845534325, + 0.011654089204967022, + 0.0029851174913346767, + -0.020046625286340714, + -0.005202576518058777, + -0.00787546020001173, + 0.00012740446254611015, + -0.03818404674530029, + 0.008352760225534439, + -0.007911257445812225, + -0.01211548037827015, + -0.009005071595311165, + -0.00712371151894331, + -0.02143079601228237, + 0.0019082080107182264, + 0.024994641542434692, + 0.02252858877182007, + 0.010580163449048996, + 0.00217967270873487, + -0.004872443620115519, + 0.009347137063741684, + -0.00046064480557106435, + 0.005556574556976557, + 0.015154293738305569, + -0.004884376190602779, + -0.019903434440493584, + 0.005799202248454094, + 0.011510899290442467, + 0.015703190118074417, + -0.010810858570039272, + -0.004003358539193869, + -0.013984907418489456, + -0.007032228633761406, + -0.0013066104147583246, + -0.020460285246372223, + -0.00033858511596918106, + -0.005015634000301361, + -0.014000817202031612, + -0.0032476328779011965, + -0.003042791271582246, + 0.014231513254344463, + 0.030674519017338753, + 0.0128314308822155, + 0.00652310810983181, + 0.01623617485165596, + 0.0003535007417667657, + -0.01845562271773815, + 0.007807842455804348, + 0.0007751162629574537, + -0.019807973876595497, + 0.02454916015267372, + -0.01005513221025467, + 0.0018913035746663809, + 0.007243036758154631, + -0.008678915910422802, + -0.005409406963735819, + 0.004967903718352318, + 0.006435602903366089, + 0.0014657105784863234, + -0.0019688650500029325, + 0.0021001226268708706, + 0.015575909055769444, + 0.013992862775921822, + 0.02354682981967926, + 0.016816891729831696, + 0.006045807618647814, + 0.00592250470072031, + 0.014708813279867172, + 0.012887116521596909, + 0.002895623678341508, + -0.00482073612511158, + 0.018630633130669594, + -0.009808527305722237, + -0.009068711660802364, + 0.015790695324540138, + 0.027985725551843643, + -0.02015799470245838, + -0.005596349481493235, + -0.022369487211108208, + 0.0025893556885421276, + -0.013316686265170574, + 0.04566175863146782, + -0.0017660121666267514, + -0.005023588892072439, + -0.010938138701021671, + 0.00030079882708378136, + 0.019394313916563988, + 0.01672143116593361, + 0.0021359201055020094, + -0.0004400114994496107, + 0.006045807618647814, + -0.01732601225376129, + 0.008066380396485329, + -0.02437414973974228, + -0.003118363907560706, + 0.0006990464753471315, + 0.01632368005812168, + 0.009371001273393631, + 0.007597034331411123, + 0.01212343480437994, + -0.001674529630690813, + -0.03022903762757778, + -0.010190367698669434, + -0.030944988131523132, + 0.01035742275416851, + -0.010230142623186111, + 0.0073305414989590645, + 0.011662044562399387, + -0.008360715582966805, + -0.01622026599943638, + 0.0009347136947326362, + 0.011049509048461914, + -0.006916881073266268, + -0.020348915830254555, + -0.03204277902841568, + -0.01028582826256752, + -0.010731308721005917, + 0.01375421229749918, + 0.0007979869260452688, + 0.009005071595311165, + 0.000796992564573884, + -0.0009446574258618057, + -0.01816924288868904, + -0.0015034968964755535, + 0.02921079657971859, + -0.016100939363241196, + -0.01418378297239542, + -0.010580163449048996, + 0.002475996734574437, + 0.015544089488685131, + 0.001632765750400722, + -0.0004300677392166108, + 0.0049718813970685005, + -0.0006130329566076398, + -0.0059980773366987705, + -0.026856113225221634, + -0.0006294401828199625, + 0.0215739868581295, + -0.018360162153840065, + -0.007418046705424786, + 0.01375421229749918, + 0.015194068662822247, + 0.012537095695734024, + 0.02593333274126053, + 0.011168833822011948, + -0.013921267352998257, + 0.006157177500426769, + -0.004331503063440323, + 0.018089693039655685, + -0.02098531648516655, + 0.012226850725710392, + 0.02779480442404747, + 0.003183992812409997, + 0.016912350431084633, + 0.0011156901018694043, + -0.00041067739948630333, + 0.0012220883509144187, + 0.015058834105730057, + -0.0007313637179322541, + 0.023928670212626457, + 0.0020384714007377625, + -0.007012341171503067, + -0.021064866334199905, + 0.011789324693381786, + -0.006041829939931631, + 0.007724314462393522, + -0.014915643259882927, + -0.01926703378558159, + -0.0047928933054208755, + -0.007955010049045086, + -0.0021200100891292095, + -0.008957341313362122, + 0.024787811562418938, + -0.007386226672679186, + 0.004088874906301498, + -0.013706482015550137, + 0.0202693659812212, + 0.003804483450949192, + -0.0033908230252563953, + 0.0014686937211081386, + 0.0009541040053591132, + 0.014374703168869019, + -0.015536134131252766, + -0.0008616269915364683, + -0.021335337311029434, + 0.0014468174194917083, + -0.00428377278149128, + -0.015154293738305569, + 0.013380326330661774, + 0.01007899735122919, + 0.004705388564616442, + -0.024183230474591255, + -0.025408301502466202, + 0.018646543845534325, + 0.011662044562399387, + 0.006121380254626274, + 0.007211216725409031, + -0.02680838294327259, + 0.010230142623186111, + 0.014199692755937576, + -0.0025197493378072977, + 0.005624191835522652, + 0.009068711660802364, + -0.011693865060806274, + -0.014144008047878742, + -0.014565623365342617, + 0.004057054873555899, + 0.022035377100110054, + 0.053553126752376556, + 0.02836756594479084, + 0.012688240967690945, + -0.009347137063741684, + -0.008392535150051117, + -0.02214674837887287, + -0.0027464672457426786, + -0.003561855759471655, + -0.017946502193808556, + 0.000475560431368649, + 0.006531063001602888, + -0.0076646520756185055, + 0.017485111951828003, + 0.013237136416137218, + -0.011455214582383633, + 0.022751327604055405, + 0.01119269896298647, + -0.00204046000726521, + -0.015687279403209686, + 0.010389243252575397, + 0.0022791102528572083, + -0.001586030120961368, + -0.010906318202614784, + -0.0032933740876615047, + 7.582118996651843e-5, + -0.007620899472385645, + 0.008631185628473759, + -0.023483188822865486, + -0.007147576659917831, + -0.02042846567928791, + 0.011749549768865108, + -0.0033570141531527042, + -0.03302920237183571, + -0.007608966901898384, + 0.00211006635800004, + 0.017119182273745537, + 0.003993414808064699, + 0.007326564285904169, + 0.0024322443641722202, + -0.0034902605693787336, + -0.02878122590482235, + -8.118149708025157e-7, + 0.016371410340070724, + 0.0003092510160058737, + -0.01134384423494339, + 0.009410777129232883, + -0.00951419211924076, + 0.02666519396007061, + -0.0024163343477994204, + 0.016387321054935455, + 0.01859881356358528, + 0.011264294385910034, + -0.002575434511527419, + 0.00205637002363801, + -5.099285772303119e-5, + -0.002251267898827791, + 0.007501574233174324, + -0.016785070300102234, + 0.007314631715416908, + 0.0021538189612329006, + 0.017946502193808556, + -0.005902617238461971, + 0.009609651751816273, + 0.012473455630242825, + -0.005266216583549976, + 0.00706007145345211, + 0.0031044427305459976, + -0.00815388560295105, + 0.009005071595311165, + 0.006129335146397352, + 0.013563292101025581, + -0.01091427356004715, + -0.00663050077855587, + -0.00999149214476347, + -0.005596349481493235, + 0.009848302230238914, + -0.028622126206755638, + -0.003516114316880703, + -0.020778486505150795, + -0.025440121069550514, + 0.007823752239346504, + 0.001540288794785738, + 0.019664784893393517, + 0.0069009712897241116, + -0.014350838027894497, + -0.013555336743593216, + -0.004876421298831701, + -0.0069009712897241116, + 0.009140306152403355, + 0.024644620716571808, + -0.015536134131252766, + -0.009482371620833874, + 0.0036056083627045155, + 7.544829713879153e-5, + 0.01128020416945219, + -0.003637428395450115, + -0.02128760702908039, + 0.0013076047180220485, + 0.01511451881378889, + 0.010277872905135155, + 0.002048415131866932, + 0.009721022099256516, + -0.003168082796037197, + 0.013388281688094139, + -0.006928813643753529, + -0.019251124933362007, + -0.008281165733933449, + -0.013141676783561707, + 0.0008765426464378834, + 0.014207648113369942, + 0.009609651751816273, + 0.023339999839663506, + -0.0100074028596282, + 0.012584825977683067, + 0.0026092431508004665, + 0.009060756303369999, + 0.01474858820438385, + -0.009697156958281994, + 0.02668110281229019, + 0.018201062455773354, + -0.0060975151136517525, + 0.022019468247890472, + 0.029003966599702835, + -0.002649018308147788, + 0.009028936736285686, + -0.009538057260215282, + -0.015790695324540138, + 0.007915235124528408, + 0.011057463474571705, + -0.004367300309240818, + 0.002660950878635049, + 0.007895347662270069, + -0.00414456008002162, + 0.030404048040509224, + -0.01616458036005497, + -0.013897402212023735, + 0.01745329238474369, + -0.01240186020731926, + 0.020794395357370377, + -0.008798240683972836, + -0.03091316856443882, + 0.01622026599943638, + 0.007783977314829826, + -0.0023188854102045298, + -0.005767382215708494, + 0.004514468368142843, + 0.0025356593541800976, + 8.957154932431877e-6, + 0.006515153218060732, + 0.014096277765929699, + 0.013515561819076538, + -0.007668629754334688, + 0.015886154025793076, + 0.004347412846982479, + 0.005775337107479572, + 0.002607254544273019, + -0.007497597020119429, + 0.007549304515123367, + 0.0039954036474227905, + -0.003512136870995164, + -0.0014269299572333694, + 0.01713509112596512, + -0.00011901440302608535, + 0.013276911340653896, + 0.012210940010845661, + 0.007958987727761269, + -0.017660122364759445, + 0.006021942477673292, + -0.015170203521847725, + -0.031247278675436974, + -0.012823476456105709, + -0.006113425362855196, + -0.011813189834356308, + 0.012735971249639988, + 0.00807433482259512, + 0.019632965326309204, + 0.016212310642004013, + 0.007656697183847427, + -0.01069948822259903, + -0.004287750460207462, + 0.012688240967690945, + 0.0031760376878082752, + 0.013388281688094139, + -0.005656011868268251, + 0.01007899735122919, + 0.018487442284822464, + -0.004458783194422722, + 0.006654365919530392, + 0.0005374603788368404, + -0.011288159526884556, + 0.012179120443761349, + 0.016912350431084633, + -0.020173905417323112, + -0.011248383671045303, + -0.02155807614326477, + 0.014573577791452408, + 0.00943464133888483, + -0.003311272943392396, + -0.024724170565605164, + 0.009728977456688881, + 0.009689202532172203, + 0.000481278111692518, + 0.0011306058149784803, + 0.016944171860814095 + ], + "f1384e4c-89a6-4248-86ec-5530dc41bedc": [ + -0.013851703144609928, + -0.015981635078787804, + -0.014430643990635872, + 0.03722377121448517, + -0.036251723766326904, + -0.013615838252007961, + -0.017882848158478737, + 0.015209713019430637, + -0.027703406289219856, + 0.02277168445289135, + 0.015209713019430637, + 0.03513672575354576, + 0.042798761278390884, + -0.012493693269789219, + 0.02731744572520256, + 0.015953045338392258, + 0.003605874255299568, + 0.02049880474805832, + -0.029261544346809387, + -0.008255272172391415, + 0.03142006695270538, + -0.05043220520019531, + -0.02874692901968956, + 0.027989303693175316, + 0.014980996027588844, + -0.034393392503261566, + 0.005592857487499714, + 0.002814297331497073, + -0.055092327296733856, + 0.011157125234603882, + 0.012407924048602581, + 0.0012391841737553477, + 0.007172437384724617, + 0.013151255436241627, + 0.008005112409591675, + -0.025702128186821938, + -0.012872505933046341, + 0.01490952167659998, + -0.015409841202199459, + 0.026359690353274345, + -0.0030108513310551643, + -0.00893427710980177, + -0.00016215712821576744, + 0.012986864894628525, + -0.04134068638086319, + 0.026145268231630325, + -0.046915676444768906, + -0.01550990529358387, + 0.03193467855453491, + 0.015023880638182163, + 0.007983669638633728, + 0.011757508851587772, + 0.002816084073856473, + 0.004259863402694464, + 0.030133528634905815, + -0.01785425841808319, + -0.0033414196223020554, + 0.05946654826402664, + 0.027717700228095055, + -0.04923143982887268, + 0.02427264302968979, + -0.04611516371369362, + 0.013894587755203247, + -0.01665349304676056, + 0.002489089500159025, + 0.00499604782089591, + -0.020584573969244957, + -0.01743970811367035, + -0.0068936883471906185, + -0.006854377221316099, + -0.019612524658441544, + 0.029618915170431137, + -0.06815781444311142, + -0.011843277141451836, + 0.0291614793241024, + 0.010885522700846195, + 0.031763140112161636, + 0.015152533538639545, + 0.03470787778496742, + -0.05366284027695656, + -0.0021799635142087936, + -0.0018672639271244407, + -0.016238942742347717, + -0.001338354661129415, + 0.07953650504350662, + 0.0002459159877616912, + 0.006400516256690025, + -0.040225688368082047, + -0.011636001989245415, + -0.013580100610852242, + -0.03250647336244583, + 0.0015072125243023038, + -0.005060374271124601, + 0.024801552295684814, + -0.0015903012827038765, + -0.013830260373651981, + 0.023171940818428993, + 0.0005664331838488579, + 0.020155729725956917, + -0.02497309073805809, + 0.01713951677083969, + 0.010506710037589073, + 0.0014276974834501743, + -0.017325349152088165, + 0.013136960566043854, + -0.026945779100060463, + -0.004184815566986799, + 0.015538494102656841, + -0.01643906906247139, + 0.0320204496383667, + 0.004795920103788376, + -0.058151423931121826, + 0.047916315495967865, + 0.021170662716031075, + -0.039367999881505966, + -0.0448000393807888, + -0.019183680415153503, + -0.010785459540784359, + -0.006250420119613409, + -0.00682936143130064, + 0.04142645373940468, + 0.019683999940752983, + 0.012150616385042667, + 0.018097272142767906, + -0.011936194263398647, + 0.020941944792866707, + 0.00647556409239769, + 0.018969256430864334, + -0.0021370791364461184, + 0.023000402376055717, + -0.02355790138244629, + -0.014080420136451721, + 0.005871606990695, + 0.016110287979245186, + 0.004820935893803835, + 0.009513217955827713, + 0.008455399423837662, + 0.06238269433379173, + -0.04405670613050461, + 0.01220064889639616, + -0.027846354991197586, + -0.021370790898799896, + -0.043141838163137436, + 0.01486663706600666, + 0.00128564250189811, + 0.0039846873842179775, + -0.030848272144794464, + 0.06512730568647385, + -0.07662036269903183, + 0.006021702662110329, + -0.03393595665693283, + 0.015395546332001686, + -0.01942669227719307, + 0.01686791516840458, + 0.09097237884998322, + 0.03339275345206261, + -0.02320053055882454, + 0.04760182648897171, + 0.0047030034475028515, + 0.014309138059616089, + 0.0156528539955616, + -0.0839964970946312, + 0.00012809519830625504, + 0.0039453767240047455, + 0.04714439436793327, + 0.01715381257236004, + 0.04928861930966377, + 0.031277116388082504, + -0.004881688859313726, + 0.02746039442718029, + 0.02645975537598133, + -0.025787897408008575, + 0.025516295805573463, + -0.02425834909081459, + 0.04354209080338478, + -0.02177104540169239, + 0.037738386541604996, + 0.010635362938046455, + 0.024129696190357208, + -0.033678650856018066, + -0.019155090674757957, + 0.0018288465216755867, + 0.043999526649713516, + -0.009563250467181206, + -0.006375500001013279, + 0.022099828347563744, + -0.007236764300614595, + -0.003037654096260667, + 0.00524978106841445, + 0.002862542401999235, + -0.014666508883237839, + -0.005628594662994146, + 0.05486360937356949, + -0.013351383619010448, + -0.02078470215201378, + -0.04065453261137009, + 0.005035358481109142, + 0.014316285029053688, + 0.023157646879553795, + 0.020870471373200417, + -0.018654771149158478, + -0.04011132940649986, + -0.022357134148478508, + 0.042855940759181976, + -0.03087686188519001, + -0.005256928503513336, + -0.024715783074498177, + -0.0540916882455349, + 0.03579428791999817, + -0.026502639055252075, + 0.030076351016759872, + -0.03708082437515259, + 0.018869193270802498, + -0.0039989822544157505, + -0.015252597630023956, + 0.0071509950794279575, + -0.0034950892440974712, + 0.03316403552889824, + 0.00597524456679821, + -0.024658603593707085, + 0.006818640045821667, + 0.005675052758306265, + -0.026931485161185265, + -0.02077040635049343, + -0.04520029574632645, + 0.011064209043979645, + -0.01998419128358364, + 0.01651054434478283, + -0.024630015715956688, + -0.0320204496383667, + 0.028332378715276718, + -0.002383665181696415, + 0.013930324465036392, + 0.00635048421099782, + 0.005135422572493553, + 0.03951094672083855, + 0.02896135300397873, + 0.019769767299294472, + -0.011464464478194714, + -0.012286418117582798, + 0.0005521383136510849, + 0.020041370764374733, + -0.035536978393793106, + 0.011078503914177418, + -0.009806262329220772, + 0.04139786586165428, + 0.011221451684832573, + 0.07953650504350662, + -0.010385203175246716, + 0.005807280074805021, + -0.0028553949669003487, + 0.01039235107600689, + 0.006468416657298803, + 0.0006155716837383807, + 0.006622086279094219, + 0.052261948585510254, + 0.021971173584461212, + -0.0209991242736578, + -0.033621471375226974, + 0.011342957615852356, + 0.006178945768624544, + 0.008305303752422333, + 0.023672260344028473, + -0.0029429509304463863, + 0.05386297032237053, + -0.0362803116440773, + 0.02298610843718052, + 0.0029000663198530674, + -0.012958275154232979, + 0.04888836294412613, + 0.004088324960321188, + -0.030333656817674637, + -0.02681712619960308, + 0.004906705114990473, + -0.004631529096513987, + -0.0031680946704000235, + 0.013430004939436913, + 0.012829621322453022, + 0.034965187311172485, + 0.0138731449842453, + -0.02440129779279232, + -0.029147185385227203, + 8.247454388765618e-5, + 0.01380167156457901, + -0.0015152533305808902, + 0.027431804686784744, + -0.032620832324028015, + -0.00016729433264117688, + -0.027374625205993652, + 0.004220552276819944, + -0.0035379736218601465, + -0.022214185446500778, + 0.004946015775203705, + 0.028804108500480652, + 0.008819918148219585, + 0.00487454142421484, + -0.03856748715043068, + 0.021013420075178146, + 0.011857572011649609, + -0.004763756413012743, + -0.01330849900841713, + 0.018040092661976814, + -0.006979457102715969, + -0.030362246558070183, + 0.019612524658441544, + -0.029361607506871223, + 0.047716185450553894, + 0.028975646942853928, + -0.03833876922726631, + -5.4443251428892836e-5, + 0.04354209080338478, + 0.002594514051452279, + -0.03530826419591904, + 0.01024225540459156, + 0.00497817900031805, + 0.013179845176637173, + -0.0069472938776016235, + -0.014680803753435612, + -0.01579580083489418, + -0.02320053055882454, + -0.0063397628255188465, + 0.007376139052212238, + -0.03456493094563484, + -0.016110287979245186, + 0.018940666690468788, + -0.04448555037379265, + 0.045429009944200516, + -0.01801150292158127, + -0.047287341207265854, + -0.01009930670261383, + -0.035765696316957474, + -0.011014176532626152, + 0.009770525619387627, + -0.028332378715276718, + -0.03848171606659889, + -0.015824390575289726, + -0.0405401736497879, + -0.020513100549578667, + -0.013980356976389885, + -0.012243533506989479, + -0.024672899395227432, + -0.02768911048769951, + 0.02441559173166752, + -0.015238302759826183, + -0.03748107701539993, + -0.032620832324028015, + 0.028761224821209908, + 0.0334499329328537, + 0.03242070600390434, + -0.02610238455235958, + 0.0008818131173029542, + -0.005106832832098007, + 0.06495577096939087, + -0.016481954604387283, + 0.035108134150505066, + -0.012486545369029045, + -0.00878418143838644, + -0.006807919126003981, + 0.011593117378652096, + 0.0005432040197774768, + -0.007912195287644863, + -0.06306885182857513, + -0.013029749505221844, + -0.040454406291246414, + -0.02610238455235958, + 0.02733173966407776, + -0.030934041365981102, + -0.004313468933105469, + -0.00414550444111228, + 0.010792606510221958, + -0.029218658804893494, + -0.02270021103322506, + 0.0026749225798994303, + -0.038453128188848495, + -0.00401685107499361, + -0.05969526618719101, + 0.031477246433496475, + -0.016353299841284752, + -0.01095699705183506, + 0.013008307665586472, + 0.0007201027474366128, + 0.01606740429997444, + -0.02261444181203842, + -0.003630890278145671, + -0.008062291890382767, + 0.03210621699690819, + -0.009334532544016838, + -0.012365039438009262, + -0.012279270216822624, + -0.0063147470355033875, + -0.028289495036005974, + 0.004817361943423748, + -0.03430762514472008, + 0.03742390125989914, + 0.001117678009904921, + -0.00904148817062378, + 0.015038175508379936, + -0.02112777903676033, + -0.013430004939436913, + 0.004281305707991123, + -0.0054177455604076385, + -0.006782902870327234, + 0.004470712039619684, + 0.02107059955596924, + 0.0069615887477993965, + -0.010085011832416058, + 0.020255792886018753, + 0.008705559186637402, + 0.026731356978416443, + 0.006754313595592976, + 0.01305833924561739, + 0.0001356893335469067, + -0.0045922184363007545, + 0.011507349088788033, + 0.019741177558898926, + 0.02545911632478237, + -0.0013964275131002069, + 0.060152702033519745, + -0.026216741651296616, + 0.00864837970584631, + 0.05163297429680824, + 0.016053108498454094, + 0.0047851987183094025, + 0.0334213450551033, + -0.02597372978925705, + 0.028432443737983704, + -0.00547849852591753, + -0.007129553239792585, + -0.002667775144800544, + -0.02027008682489395, + 0.026288216933608055, + 0.008119471371173859, + -0.00807658676058054, + -0.003386090975254774, + -0.020098550245165825, + -0.012872505933046341, + 0.0015072125243023038, + -0.011657444760203362, + -0.022714504972100258, + -0.02909000590443611, + 0.018840603530406952, + 0.035336852073669434, + -0.012679525651037693, + -0.04808785393834114, + -0.03545121103525162, + 0.007229616865515709, + -0.007754952646791935, + 0.025444820523262024, + 0.0008067652233876288, + -0.026130974292755127, + -0.008869950659573078, + 0.03891056403517723, + -0.03284955024719238, + -0.0012445447500795126, + 0.013858850114047527, + -0.024501360952854156, + 0.012986864894628525, + -0.021170662716031075, + 0.0014285908546298742, + -0.05363425239920616, + 0.006868672091513872, + -0.008255272172391415, + 0.026917189359664917, + -0.019612524658441544, + 0.018697654828429222, + -0.04477144777774811, + -0.0013213795609772205, + 0.04288452863693237, + -0.00016707097529433668, + 0.0046493979170918465, + -0.004367074463516474, + -0.01109279878437519, + -0.05094682052731514, + -0.0032985350117087364, + 0.015695737674832344, + -0.016610607504844666, + -0.029904812574386597, + -0.017482593655586243, + -0.0014938111416995525, + -0.02688859961926937, + -0.032477885484695435, + 0.005024637561291456, + -0.005221191328018904, + 0.034822236746549606, + 0.005803706124424934, + -0.016095994040369987, + -0.02540193684399128, + -0.026588408276438713, + -0.03353570029139519, + -0.0034379097633063793, + 0.037252362817525864, + 0.0037345278542488813, + 0.02198546938598156, + 0.025301871821284294, + 0.018340284004807472, + 0.001073900144547224, + 0.02525898814201355, + -0.01401609368622303, + -0.020870471373200417, + 0.02005566470324993, + -0.0015885144239291549, + -0.0048924102447927, + 0.003348567057400942, + 0.006214682944118977, + -0.01735393889248371, + 0.03993979096412659, + 0.0007044677622616291, + -0.015238302759826183, + 0.02604520507156849, + -0.016967978328466415, + -0.02903282642364502, + 0.02697436884045601, + -0.03207762911915779, + 0.019183680415153503, + 0.020827585831284523, + -0.0006941932952031493, + -0.023229120299220085, + 0.004724445752799511, + 0.02219989150762558, + 0.02405822090804577, + 0.006840082351118326, + 0.0005865352577529848, + -0.009584692306816578, + -0.008612642996013165, + -0.010070716962218285, + -0.002901853062212467, + 0.005792985204607248, + -0.02085617557168007, + 0.016324710100889206, + -0.01579580083489418, + -0.02967609465122223, + 0.0068508037365973, + -0.02747468836605549, + 0.009720493108034134, + 0.0263311006128788, + -0.008162355050444603, + -0.013815965503454208, + -0.003023359226062894, + -0.00789790041744709, + 0.0077192154712975025, + -0.018311694264411926, + 0.043570682406425476, + -0.006861524656414986, + 0.008655527606606483, + -0.010814049281179905, + 0.008927129209041595, + -0.007347549311816692, + 0.014895226806402206, + -0.0327351912856102, + 0.011871866881847382, + -0.047058623284101486, + 0.029618915170431137, + -0.037252362817525864, + -0.0034575650934129953, + -0.019655410200357437, + -0.016839325428009033, + 0.001156095415353775, + -0.0003823870501946658, + -0.018869193270802498, + -0.03593723475933075, + -0.007754952646791935, + -0.009477481245994568, + 0.014966701157391071, + 0.023157646879553795, + -0.007022341713309288, + -0.00076254055602476, + -0.053605660796165466, + 0.017454003915190697, + 0.007297517266124487, + 0.01651054434478283, + 0.015967339277267456, + 0.009477481245994568, + 0.04162658378481865, + 0.007286796346306801, + 0.0038989183958619833, + 0.011014176532626152, + 0.016739262267947197, + -0.006003834307193756, + -0.034336213022470474, + 0.011750360950827599, + 0.005614299792796373, + -0.01009930670261383, + 0.03402172774076462, + -0.038310181349515915, + 0.008848507888615131, + 0.006379073951393366, + -0.02497309073805809, + -0.01998419128358364, + -0.013044044375419617, + 0.0384245403110981, + 0.019083615392446518, + 0.03310685604810715, + -0.02219989150762558, + -0.0029911960009485483, + -0.011385842226445675, + 0.028846994042396545, + 0.006418384611606598, + -0.017839964479207993, + -0.007340401876717806, + -0.004424253944307566, + 0.015638558194041252, + 0.04291312023997307, + -0.02726026624441147, + -0.034622110426425934, + -0.04239850491285324, + 0.02617385797202587, + -0.021256431937217712, + 0.021656688302755356, + -0.04331337660551071, + 0.008441104553639889, + 0.015452725812792778, + -0.0005633061518892646, + 0.023100467398762703, + -0.021756751462817192, + 0.016882209107279778, + -0.006275436375290155, + 0.03359287977218628, + 0.0448000393807888, + 0.028632570058107376, + -0.03456493094563484, + 0.02155662328004837, + -0.00914155226200819, + 0.04139786586165428, + -0.0027803468983620405, + 0.01053529977798462, + 0.02996199205517769, + -0.02121354639530182, + 0.0021656686440110207, + -0.020684638991951942, + 0.025001680478453636, + -0.002451565582305193, + -0.017739901319146156, + -0.005925212521106005, + -0.01362298522144556, + 0.014530708082020283, + -0.027160201221704483, + 0.023457838222384453, + 0.0077478052116930485, + -0.013880292885005474, + -0.003348567057400942, + -0.012186354026198387, + 0.02057028003036976, + 0.028117956593632698, + 0.041512224823236465, + -0.011900456622242928, + 0.03893915191292763, + -0.0016349726356565952, + 0.008555463515222073, + 0.028546802699565887, + 0.03287813812494278, + -0.01878342404961586, + 0.011421579867601395, + -0.020684638991951942, + 0.016138877719640732, + -0.009191583842039108, + -0.010592479258775711, + -0.02234284020960331, + -0.017253875732421875, + -0.0029090004973113537, + -0.018040092661976814, + 0.02867545560002327, + -0.037309542298316956, + -0.0137016074731946, + 0.026002319529652596, + 0.01149305421859026, + 0.007847868837416172, + -0.009684756398200989, + 0.012186354026198387, + -0.01713951677083969, + 0.027789175510406494, + 0.0008072119089774787, + -0.03442198410630226, + -0.007279648911207914, + 0.014109009876847267, + -0.001281175296753645, + -0.0070580788888037205, + 0.02141367457807064, + -0.020741816610097885, + -0.018311694264411926, + -0.004699429497122765, + -0.01064251083880663, + -0.03602300584316254, + -0.02788923867046833, + 0.024630015715956688, + -0.03164878115057945, + -0.01070683728903532, + -0.017468297854065895, + -0.0028857714496552944, + -0.028918467462062836, + -0.03142006695270538, + -0.010563889518380165, + 0.01472368836402893, + -0.02334347926080227, + 0.03393595665693283, + -0.008105176500976086, + -0.010899817571043968, + -0.015066764317452908, + -0.02874692901968956, + 0.046572599560022354, + 0.011936194263398647, + -0.012000520713627338, + 0.0018761982209980488, + -0.00693657249212265, + -0.009334532544016838, + 0.03287813812494278, + 0.017596952617168427, + -0.01892637275159359, + -0.003995408769696951, + 0.0002503831055946648, + -0.006886540912091732, + -0.0010006390511989594, + -0.012465103529393673, + 0.006157503928989172, + -0.00024390575708821416, + 0.029004236683249474, + -0.0011167846387252212, + -0.04714439436793327, + 0.0019458854803815484, + -0.017125222831964493, + 0.018597591668367386, + -0.03284955024719238, + 0.01643906906247139, + -0.008505431935191154, + -0.027717700228095055, + -0.022957518696784973, + 0.01856900192797184, + 0.004617234226316214, + -0.019040731713175774, + 0.01949816569685936, + 0.007561971899122, + 0.03470787778496742, + -0.03402172774076462, + 0.016739262267947197, + 0.007754952646791935, + 0.015095354057848454, + -0.030419426038861275, + 0.001960180466994643, + 0.002374730771407485, + 0.045286063104867935, + 0.010070716962218285, + 0.01280817948281765, + 0.008355336263775826, + 0.018826307728886604, + -0.043656449764966965, + 0.012007668614387512, + 0.010363761335611343, + 0.03593723475933075, + -0.01912650093436241, + -0.024244053289294243, + 0.03676633536815643, + 0.029561735689640045, + -0.024572836235165596, + 0.018040092661976814, + -0.0027106597553938627, + 0.007022341713309288, + -0.00231219083070755, + 0.010185075923800468, + 0.01971258968114853, + -0.0006633700686506927, + 0.0334213450551033, + -0.018368873745203018, + -0.003780985949561, + -0.0023246989585459232, + -0.011185714974999428, + 0.001391066936776042, + 0.006857951171696186, + 0.020541690289974213, + -0.02021290920674801, + 0.028475327417254448, + 0.009441743604838848, + 0.018697654828429222, + 0.008691264316439629, + 0.0016144238179549575, + 0.02618815191090107, + -0.004677987657487392, + -0.03656620904803276, + -0.023515017703175545, + -0.022728800773620605, + -0.005650036968290806, + -0.0144092021510005, + -0.01984124258160591, + -0.04225555807352066, + 0.048345159739255905, + 0.012765294872224331, + 0.02198546938598156, + -0.02141367457807064, + 0.03456493094563484, + -0.011114240624010563, + -0.024529950693249702, + -0.011407284997403622, + 0.013615838252007961, + -0.0035701370798051357, + 0.0071259792894124985, + -0.004685134626924992, + 0.034193266183137894, + -0.004063309170305729, + 0.0046208081766963005, + -1.1879796147695743e-5, + -0.01949816569685936, + -0.02062745951116085, + 0.012000520713627338, + -0.013608690351247787, + 0.0256020650267601, + 0.027060138061642647, + -0.007497645448893309, + -0.015123943798244, + 0.014080420136451721, + -0.009513217955827713, + -0.04114056006073952, + 0.01649624854326248, + 0.006221830379217863, + 0.011228599585592747, + 0.009927768260240555, + 0.017554067075252533, + -0.009527512826025486, + 0.00718315877020359, + 0.010985586792230606, + 0.010399498045444489, + 0.03648044168949127, + 0.012715263292193413, + 0.012586609460413456, + -0.014273401349782944, + 0.02588796056807041, + 0.017968617379665375, + 0.002169242361560464, + -0.02518751285970211, + 0.00599668687209487, + 0.0013785589253529906, + 0.05063233524560928, + 0.01672496646642685, + -0.0017957896925508976, + -0.01844034716486931, + -0.02625962719321251, + 0.007554824464023113, + -0.0009327385341748595, + 0.02767481654882431, + -0.01864047534763813, + -0.028804108500480652, + -0.054034508764743805, + 0.024358412250876427, + -0.019255153834819794, + -0.045143116265535355, + 0.005013916175812483, + -0.02091335505247116, + 0.002719593932852149, + 0.005074669141322374, + 0.02064175345003605, + 0.006922277621924877, + 0.03410749509930611, + 0.055463992059230804, + 0.030419426038861275, + -0.010671100579202175, + 0.02477296255528927, + 0.025015976279973984, + -0.02327200397849083, + 0.005814427509903908, + -0.009934916161000729, + 0.036251723766326904, + 0.007361844182014465, + 2.5769804778974503e-5, + 0.025559179484844208, + -0.03407890722155571, + -0.000781749258749187, + -0.0035469080321490765, + 0.0008911941549740732, + 0.013144108466804028, + -0.002192471642047167, + 0.005306960549205542, + 0.014316285029053688, + 0.018168745562434196, + 0.003988261334598064, + 0.01391602959483862, + 0.00570721598342061, + 0.028089366853237152, + 0.0004047227557748556, + -0.009184436872601509, + 0.014330579899251461, + -0.005013916175812483, + -0.006900835782289505, + 0.002465860452502966, + -0.009198731742799282, + 0.00903434120118618, + 0.007797836791723967, + -0.0012624133378267288, + -0.0036809220910072327, + 0.028589686378836632, + 0.021670982241630554, + -0.01270096842199564, + -0.007293943781405687, + 0.014487823471426964, + -0.008469694294035435, + -0.015381251461803913, + -0.03719518333673477, + -0.021899700164794922, + -0.03164878115057945, + -0.007526234723627567, + -0.025273282080888748, + -0.012722410261631012, + -0.0021317184437066317, + 0.03264942020177841, + 0.005146143492311239, + -0.03216339647769928, + -0.02924724854528904, + -0.03322121500968933, + -0.003237782046198845, + -0.02618815191090107, + 0.0009827704634517431, + -0.001540269353426993, + 0.01751118339598179, + 0.018254514783620834, + 0.02284315973520279, + -0.000202584735234268, + -0.024873027577996254, + -0.011057061143219471, + 0.05800847336649895, + -0.006078882142901421, + -0.0031591602601110935, + -0.035765696316957474, + -0.016753556206822395, + 0.008812771178781986, + -0.0018958535511046648, + -0.0249016173183918, + 0.009870588779449463, + 0.006972309667617083, + -0.029790453612804413, + 0.00864123273640871, + -0.02071322686970234, + -0.011736066080629826, + -0.009856294840574265, + 0.022385723888874054, + -0.005632168147712946, + -0.004452843684703112, + 0.013329940848052502, + -0.03182031959295273, + 0.005224765278398991, + -0.030476605519652367, + -0.032477885484695435, + -0.03868184611201286, + -0.030562374740839005, + 0.015524200163781643, + 0.008448252454400063, + -0.023943861946463585, + 0.023000402376055717, + 0.010313729755580425, + -0.03210621699690819, + -0.0024104679469019175, + 0.00647556409239769, + 0.03267801180481911, + 0.007118831854313612, + -0.004120488651096821, + -0.0063683525659143925, + 0.013966062106192112, + -0.008105176500976086, + -0.004585071001201868, + 0.019112205132842064, + 0.020384445786476135, + -0.010013537481427193, + -0.012300712987780571, + -0.02497309073805809, + 0.004946015775203705, + 0.007297517266124487, + -0.011921899393200874, + 0.012229238636791706, + -0.00032051719608716667, + -0.034679289907217026, + 0.023014698177576065, + -0.016453364863991737, + 0.012522283010184765, + -0.02760334312915802, + -0.008119471371173859, + -0.015895865857601166, + -0.03307826817035675, + -0.010313729755580425, + 0.011757508851587772, + -0.018511822447180748, + -0.03313544765114784, + -0.014101862907409668, + -0.01685361936688423, + -0.016353299841284752, + -0.012064848095178604, + 0.039024922996759415, + -0.020741816610097885, + -0.011657444760203362, + -0.03550839051604271, + 0.004488580860197544, + 0.04548618942499161, + -0.01450926624238491, + -0.012622346170246601, + 0.001463434542529285, + 0.007247485686093569, + 0.0034718599636107683, + -0.021256431937217712, + 0.020470215007662773, + 0.01898355223238468, + -0.004116914700716734, + 0.007222469430416822, + -0.008962866850197315, + -0.03799569234251976, + -0.015481315553188324, + -0.027874944731593132, + -0.02625962719321251, + -0.009563250467181206, + -0.019240858033299446, + 0.03616595268249512, + 0.020656049251556396, + -0.004334911238402128, + 0.010678247548639774, + -0.003237782046198845, + 0.021828224882483482, + 0.020513100549578667, + -0.029275838285684586, + -0.009327385574579239, + 0.002028080867603421, + 0.0046636927872896194, + -0.00939171202480793, + 0.004106193780899048, + 0.026445459574460983, + -0.01060677319765091, + -0.01678214594721794, + -0.005342697724699974, + -0.019055025652050972, + -0.036108773201704025, + -0.00194767233915627, + -0.0334499329328537, + -0.004102619830518961, + 0.01426625344902277, + 0.02155662328004837, + -0.011364400386810303, + -0.008441104553639889, + -0.013322793878614902, + -0.021928289905190468, + -0.027946418151259422, + -0.007411876227706671, + -0.004302748013287783, + -0.0020513099152594805, + -0.01155738066881895, + 0.0018476084806025028, + -0.07696343213319778, + -0.02483014203608036, + 0.007047357503324747, + 0.02204264886677265, + 0.008512578904628754, + -0.02184252068400383, + 0.0009845573222264647, + 0.029047122225165367, + -0.0013079781783744693, + 0.01064251083880663, + -0.0029429509304463863, + -0.013794523663818836, + 0.00033838575473055243, + 0.023858092725276947, + 0.01898355223238468, + -0.009191583842039108, + -0.02291463315486908, + -0.016481954604387283, + 0.013186993077397346, + -0.01642477512359619, + -0.013787376694381237, + -0.010085011832416058, + 0.04068312421441078, + -0.006050292402505875, + -0.020384445786476135, + 0.029761863872408867, + -0.005664331838488579, + 0.0019387381616979837, + -0.021871110424399376, + -0.010199370793998241, + 0.011149977333843708, + -0.003089472884312272, + 0.008584053255617619, + 0.00439566420391202, + -0.01592445559799671, + 0.02654552459716797, + 0.011521643958985806, + -0.01210058480501175, + 0.053405534476041794, + 0.03370723873376846, + 0.0024140416644513607, + 0.008012259379029274, + 0.013901734724640846, + -0.031563013792037964, + -0.02021290920674801, + -0.00128564250189811, + 0.014923816546797752, + -0.020227203145623207, + -0.005199749022722244, + 0.016267532482743263, + 0.005639315582811832, + -0.004156225826591253, + 0.01835457794368267, + -0.0112000098451972, + -0.004106193780899048, + 0.002076325938105583, + 0.0036005135625600815, + -0.003702364396303892, + 0.005753674544394016, + -0.0092487633228302, + 0.04431401565670967, + 0.012758147902786732, + -0.04745887964963913, + -0.024801552295684814, + 0.0008849401492625475, + 0.00522833876311779, + -0.00904148817062378, + 0.005828722380101681, + 0.0035343999043107033, + 0.008884244598448277, + 0.012708115391433239, + -0.022085532546043396, + 0.000498979352414608, + 0.007318959571421146, + -0.002531974110752344, + 0.0029197216499596834, + 0.00745476083829999, + 0.007483350578695536, + 0.013880292885005474, + -0.02078470215201378, + -0.01160026527941227, + 0.0009943849872797728, + 0.0016814309637993574, + -0.003698790678754449, + -0.02312905713915825, + 0.0013356744311749935, + -0.021956879645586014, + 0.0012633068254217505, + 0.00010782555909827352, + 0.01608169823884964, + -0.0054213195107877254, + 0.023572197183966637, + 0.010227960534393787, + 0.02747468836605549, + -0.026860009878873825, + 0.07833573967218399, + -0.009506070986390114, + -0.021427970379590988, + -0.0170823372900486, + -0.007626298815011978, + -0.0007446719682775438, + -0.0170680433511734, + -0.003114488907158375, + -0.013287057168781757, + 0.00328960083425045, + 0.000825080496724695, + 0.010135043412446976, + 0.005910917650908232, + -0.016267532482743263, + -0.023357773199677467, + -0.014823752455413342, + 0.019269447773694992, + -0.010435235686600208, + 0.0014312712009996176, + -0.02021290920674801, + -0.006536317057907581, + -0.002485515782609582, + -0.006432679481804371, + -0.020227203145623207, + -0.007333254441618919, + -0.0072903698310256, + 0.01643906906247139, + -0.020370151847600937, + -0.04176953062415123, + 0.004953163210302591, + 0.01892637275159359, + -0.007697773166000843, + -0.02034156210720539, + 0.0077049206010997295, + 0.01728246547281742, + 0.0018351004691794515, + 0.0029626062605530024, + 0.0018109779339283705, + -0.0012963635381311178, + 0.012886800803244114, + -0.0009300582460127771, + -0.001242757891304791, + -0.01572432741522789, + 0.011871866881847382, + -0.015038175508379936, + -0.008798476308584213, + -0.0007991711026988924, + 0.010313729755580425, + -0.0018047239864245057, + -0.0028661161195486784, + -0.0018145516514778137, + -0.010256550274789333, + 0.011485906317830086, + -0.0070580788888037205, + -0.009663313627243042, + -0.010113601572811604, + 0.04216978698968887, + 0.018454642966389656, + 0.04405670613050461, + -0.007726362906396389, + -0.013651574961841106, + -0.00681149261072278, + 0.005628594662994146, + -0.000542310590390116, + -0.007354696746915579, + -0.0009166568052023649, + 0.0022907485254108906, + 0.0038667551707476377, + -8.253038686234504e-5, + 0.03307826817035675, + -0.015767212957143784, + -0.022385723888874054, + -0.010256550274789333, + -0.023515017703175545, + -0.008098028600215912, + 0.02064175345003605, + 0.015538494102656841, + -0.014680803753435612, + 0.003080538706853986, + -0.004409959074109793, + -0.01715381257236004, + -0.024101106449961662, + -0.003838165430352092, + 0.016624903306365013, + 0.004084751475602388, + -0.024015337228775024, + 0.015295482240617275, + -0.0009139765170402825, + 0.007301091216504574, + 0.004256289452314377, + 0.026917189359664917, + 0.012579461559653282, + 0.004681561142206192, + -0.02107059955596924, + 0.016353299841284752, + 0.011300073936581612, + -0.010127896443009377, + -0.012636641040444374, + 0.016682082787156105, + 0.003579071257263422, + 0.0010336958803236485, + 0.01550990529358387, + 0.011335810646414757, + -0.006647102069109678, + -0.0020495231729000807, + 0.0016251449706032872, + -0.016238942742347717, + 0.0012776015792042017, + -0.001375878695398569, + 0.00023184448946267366, + -0.01145016960799694, + -0.01828310452401638, + 0.022171301767230034, + 0.025216102600097656, + -0.0170823372900486, + -0.018940666690468788, + -0.028589686378836632, + 0.003927508369088173, + -0.028332378715276718, + 0.0007183158886618912, + -0.010127896443009377, + 0.012179206125438213, + -0.012315007857978344, + 0.0184975266456604, + -0.04371362924575806, + 0.00035469079739414155, + -0.012322154827415943, + 0.018268808722496033, + -0.007626298815011978, + 0.019026435911655426, + -0.00743331853300333, + 0.019826946780085564, + -0.03748107701539993, + -0.010971291922032833, + 0.0085411686450243, + -0.010177928023040295, + -0.014545002952218056, + -0.008119471371173859, + 0.0010176141513511539, + -0.012815327383577824, + -0.0026927911676466465, + 0.012772442772984505, + -0.00165016099344939, + 0.00849828403443098, + -0.017025157809257507, + -0.021599508821964264, + -0.014337727800011635, + -0.01210058480501175, + -0.00424914201721549, + 0.034336213022470474, + 0.023457838222384453, + -0.012014815583825111, + -0.03370723873376846, + 0.001981622539460659, + 0.0027285281103104353, + 0.011971930973231792, + -0.000921123952139169, + -0.02069893293082714, + -0.001994130667299032, + -0.019469575956463814, + -0.022643031552433968, + 0.027488984167575836, + 0.006539890542626381, + 0.014344874769449234, + 0.00025284005096182227, + -0.004274158272892237, + 0.007697773166000843, + 0.01671067252755165, + -0.012407924048602581, + 0.022600147873163223, + -0.01949816569685936, + -0.0014259106246754527, + 0.025430526584386826, + 0.04305606707930565, + 0.0020405887626111507, + 0.012286418117582798, + 0.008348188363015652, + -0.014394907280802727, + -0.010077864862978458, + 0.004474285989999771, + -0.022099828347563744, + 8.593657548772171e-5, + -0.016667786985635757, + 0.00610032444819808, + 0.012608051300048828, + -0.04354209080338478, + -0.0009175502345897257, + -0.021227842196822166, + 0.02440129779279232, + 0.0006249526632018387, + 0.010385203175246716, + -0.01265808381140232, + -0.021456560119986534, + 0.028932763263583183, + -0.0002557436819188297, + 0.017668426036834717, + 0.025173218920826912, + 0.028403853997588158, + -0.006411237176507711, + 0.009112962521612644, + -0.010006390511989594, + 0.003380730515345931, + 0.0046208081766963005, + 0.023672260344028473, + -0.005864459555596113, + 0.027360329404473305, + 0.006321894470602274, + -0.02254296839237213, + -0.006654249504208565, + 0.002104915678501129, + -0.00014071486657485366, + 0.005903770215809345, + -0.014230516739189625, + 0.0036630535032600164, + -0.005592857487499714, + 0.016181763261556625, + -0.00024144884082488716, + -0.012329301796853542, + -0.02320053055882454, + 0.0038881972432136536, + 0.009191583842039108, + -0.0002139759308192879, + -0.001919082715176046, + 0.010521004907786846, + -0.018168745562434196, + -0.0007661142735742033, + 0.012593756429851055, + 0.005063948221504688, + -0.008198092691600323, + -0.0291614793241024, + -0.019826946780085564, + -0.001626038458198309, + 0.005650036968290806, + 0.0145807396620512, + -0.020970534533262253, + -0.03164878115057945, + -0.0024908764753490686, + -0.017382528632879257, + -0.012229238636791706, + 0.013044044375419617, + -0.018840603530406952, + -0.015695737674832344, + -0.007833573967218399, + -0.008991456590592861, + -0.005206896457821131, + 0.012064848095178604, + 0.02510174550116062, + -0.02540193684399128, + 0.011657444760203362, + 0.021427970379590988, + 0.014566444791853428, + 0.01508105918765068, + 0.04131209850311279, + -0.005571415182203054, + -0.003745249006897211, + 0.024101106449961662, + -0.005049653351306915, + 0.005818000994622707, + -0.017039453610777855, + 0.014101862907409668, + 0.027846354991197586, + 0.015281187370419502, + 0.013329940848052502, + -0.026874305680394173, + -0.03330698609352112, + -0.02404392696917057, + -0.007547677028924227, + 0.01562426332384348, + -0.0011748573742806911, + -0.0027088727802038193, + -0.006825787480920553, + 0.011049914173781872, + -0.02049880474805832, + -0.0021942583844065666, + -0.005335550289601088, + -0.003650545608252287, + -0.0028804109897464514, + -0.016553428024053574, + -0.0048673939891159534, + 0.004277731757611036, + 0.03728095069527626, + -0.028789814561605453, + 0.02497309073805809, + -0.0031287837773561478, + -0.023572197183966637, + 0.0170823372900486, + 0.012936833314597607, + -0.019097911193966866, + 0.0011534151853993535, + -0.010921260342001915, + 0.008112323470413685, + -0.026502639055252075, + 0.021642392501235008, + 0.013930324465036392, + 0.0016608821460977197, + 0.0004426934174261987, + -0.012579461559653282, + 0.009384564124047756, + 0.010220812633633614, + -0.008176649920642376, + 0.01699656806886196, + -0.009448891505599022, + 0.005782264284789562, + -0.03330698609352112, + 0.009020046330988407, + -0.022428609430789948, + 0.0281036626547575, + 0.0013651575427502394, + 0.01059962622821331, + -0.01522400788962841, + 0.024630015715956688, + -0.004713724367320538, + 0.03293531760573387, + -0.00243548396974802, + -0.022157007828354836, + -0.01985553652048111, + -0.005517809651792049, + -0.00041231687646359205, + -0.015181123279035091, + -0.015152533538639545, + -0.009627576917409897, + 0.006950867362320423, + 0.008812771178781986, + 0.004845951683819294, + -0.012522283010184765, + -0.022085532546043396, + -0.009834852069616318, + -0.03153442591428757, + -0.011821835301816463, + -0.020899061113595963, + 0.009370269253849983, + 0.005128275137394667, + -0.0017573722871020436, + -0.007669183425605297, + -0.02334347926080227, + 0.011057061143219471, + 0.005875180475413799, + 0.00720460107550025, + -0.002485515782609582, + 0.03951094672083855, + -0.03282095864415169, + 0.023372069001197815, + 0.009634723886847496, + 0.020084254443645477, + -0.011943341232836246, + 0.004438548814505339, + -0.02959032543003559, + -0.01020651776343584, + -0.009927768260240555, + -0.011886161752045155, + -0.027503278106451035, + 0.014109009876847267, + -0.014795162715017796, + 0.028832698240876198, + 0.04085466265678406, + 0.006268288940191269, + -0.011564528569579124, + 0.004842378199100494, + 0.001970901619642973, + 0.0037095118314027786, + -0.00535341864451766, + -0.005564267747104168, + 0.013394268229603767, + -0.0224143136292696, + 0.031991858035326004, + 0.012822474353015423, + 0.004302748013287783, + 0.005810853559523821, + 0.012243533506989479, + -0.013894587755203247, + 0.010649657808244228, + 0.040311459451913834, + -0.021542329341173172, + -0.01074257493019104, + 0.007461908273398876, + 0.02603090927004814, + -0.021642392501235008, + -0.01070683728903532, + -0.027303149923682213, + 0.0009702625102363527, + -0.03593723475933075, + -0.010270845144987106, + 0.01808297634124756, + 0.024844437837600708, + -0.011728919111192226, + 0.022957518696784973, + -0.0016233581118285656, + 0.013387120328843594, + 0.008848507888615131, + -0.007008046843111515, + -0.0017591591458767653, + 0.001808297703973949, + -0.010713985189795494, + -0.01842605322599411, + -0.007368991617113352, + -0.02021290920674801, + 0.00028701365226879716, + 0.0004998727818019688, + -0.017096633091568947, + 0.003203831845894456, + -0.009355975314974785, + -0.021885404363274574, + -0.022028353065252304, + -0.004295600578188896, + 0.014566444791853428, + -0.0023657965939491987, + -0.022600147873163223, + -0.01871195062994957, + 0.0007169757154770195, + -0.0011498414678499103, + -0.02334347926080227, + 0.0027035123202949762, + 0.013129813596606255, + 0.004138357006013393, + -0.020227203145623207, + -0.012693820521235466, + 0.010227960534393787, + -0.004510023165494204, + -0.00029014065512456, + -0.021885404363274574, + -0.0001471922150813043, + 0.01801150292158127, + -0.006761461030691862, + 0.008612642996013165, + 0.012086289934813976, + -0.006750739645212889, + -0.008341041393578053, + -0.004417106509208679, + -0.014737983234226704, + 0.00243548396974802, + 0.01362298522144556, + 0.01629612036049366, + -0.0021120631136000156, + -0.004334911238402128, + -0.023171940818428993, + -0.028975646942853928, + -0.014352022670209408, + -0.008777033537626266, + 0.0025069580879062414, + 0.010814049281179905, + -0.00365590606816113, + 0.0026320379693061113, + 0.0046493979170918465, + 0.008691264316439629, + 0.0022621590178459883, + -0.022886043414473534, + 0.011628855019807816, + -0.0002943844301626086, + -0.0137016074731946, + -0.0030287199188023806, + 0.07010190933942795, + -0.002249650890007615, + -0.0005963629810139537, + 0.0012936833081766963, + 0.003294961294159293, + -0.02838955819606781, + -0.004031145945191383, + 0.021042009815573692, + 0.008877097629010677, + -0.009713346138596535, + -0.008355336263775826, + -0.020255792886018753, + 0.006343336775898933, + -0.013251319527626038, + -0.03445057198405266, + -0.0002566371113061905, + -0.004241994582116604, + 0.013244172558188438, + -0.010027832351624966, + 0.01822592504322529, + 0.0334499329328537, + 0.0014285908546298742, + 0.00487454142421484, + 0.029075711965560913, + 0.0027035123202949762, + -0.0039703925140202045, + 0.0005414171610027552, + 0.007783541921526194, + -0.011864719912409782, + 0.012758147902786732, + 0.02981904335319996, + -0.0006656036130152643, + -0.02261444181203842, + 0.001059605274349451, + 0.011185714974999428, + 0.0032878138590604067, + 0.001981622539460659, + 0.00879132840782404, + -0.016410479322075844, + 0.030047761276364326, + -0.009927768260240555, + -0.016095994040369987, + 0.005928786005824804, + 0.00670785503461957, + -0.016124583780765533, + 0.012901095673441887, + 0.0032967482693493366, + -0.0007460121414624155, + -0.012107731774449348, + 0.011521643958985806, + -0.005303386598825455, + -0.020041370764374733, + 0.004045440815389156, + 0.0030876861419528723, + -0.007804984226822853, + -0.0069472938776016235, + 0.003491515526548028, + -0.014995290897786617, + -0.013322793878614902, + 0.009870588779449463, + -0.026845715939998627, + -0.0038345917128026485, + -0.012994012795388699, + -0.03110557794570923, + 0.010299434885382652, + 0.007247485686093569, + -0.007347549311816692, + -0.002858968684449792, + 0.006089603062719107, + -0.0005499047692865133, + 0.0007969375001266599, + 0.017554067075252533, + -0.004091898910701275, + -0.0048388042487204075, + 0.0001688578340690583, + 0.022657327353954315, + 0.008526873774826527, + 0.011814688332378864, + 0.003554055467247963, + -0.008734148927032948, + 0.004238421097397804, + 0.0010390564566478133, + -0.002124571008607745, + -0.01998419128358364, + 0.018025796860456467, + 0.0032199134584516287, + 0.014559297822415829, + -0.008762738667428493, + 0.017897143959999084, + -0.020656049251556396, + -0.015752917155623436, + 0.009691903367638588, + -0.0028428868390619755, + 0.01447352860122919, + -0.0017502248520031571, + -0.009734787978231907, + 0.0009193370933644474, + -0.008812771178781986, + -0.016553428024053574, + -0.005467777606099844, + 0.008662674576044083, + 0.003228847635909915, + 0.019183680415153503, + 0.007533382158726454, + 0.017196696251630783, + 0.004828083328902721, + 0.037738386541604996, + 0.008905687369406223, + -0.029790453612804413, + 0.006800771690905094, + 0.00864123273640871, + -0.017611246556043625, + -0.022357134148478508, + -0.0036666272208094597, + -0.019583934918045998, + 0.02690289542078972, + 0.012536577880382538, + -0.015152533538639545, + -0.018883487209677696, + -0.021084893494844437, + 0.0003464265901129693, + 0.006389794871211052, + 0.021113483235239983, + 0.003827444277703762, + -0.003636250738054514, + -0.0002273773425258696, + -0.013715902343392372, + -0.0019315907265990973, + -0.011886161752045155, + 0.00718673225492239, + 0.0035469080321490765, + 0.006507727317512035, + 0.013601543381810188, + 0.004695856012403965, + 0.0012704541441053152, + 0.003318190574645996, + 0.021799635142087936, + 0.003334272187203169, + 0.008090881630778313, + -0.02297181263566017, + 0.00058072799583897, + 0.0028804109897464514, + -0.003636250738054514, + 0.014637919142842293, + 0.0017189548816531897, + 0.006757887080311775, + -0.003966819029301405, + -0.02012713998556137, + 0.01220064889639616, + 0.010006390511989594, + 0.024358412250876427, + -0.006128914188593626, + 0.014037536457180977, + -0.0055821361020207405, + 0.01376593392342329, + 0.007025915663689375, + -0.030619554221630096, + 0.011285779066383839, + 0.0012159551260992885, + -0.03182031959295273, + 0.018454642966389656, + -0.011128535494208336, + -0.022814569994807243, + -0.005757248029112816, + -0.030133528634905815, + 0.021799635142087936, + 0.003670200938358903, + 0.026302510872483253, + 0.013358530588448048, + 0.01039235107600689, + -0.008462547324597836, + 0.003462925786152482, + -0.00018527456268202513, + -0.02277168445289135, + -0.0017180615104734898, + 0.01749688759446144, + 0.004227699711918831, + 0.007161716464906931, + -0.031219936907291412, + 0.0038989183958619833, + 0.007215321995317936, + -0.004063309170305729, + 0.014602182433009148, + -0.012114879675209522, + 0.011085650883615017, + -0.018740538507699966, + 0.005664331838488579, + -0.005167585797607899, + -0.007133126724511385, + -6.594612932531163e-5, + -0.01593874953687191, + 0.010256550274789333, + 0.0006035104161128402, + 0.01074972189962864, + -0.008912834338843822, + -0.0013231664197519422, + 0.009620429016649723, + 0.017982913181185722, + -0.010342319495975971, + 0.015309777110815048, + -0.0007848762325011194, + -0.005592857487499714, + 0.00974193587899208, + 0.005253355018794537, + 0.0007763886824250221, + -0.013279909268021584, + -0.023929568007588387, + -0.023086171597242355, + 0.0007830893737263978, + 0.005564267747104168, + -0.03633749112486839, + -0.010113601572811604, + 0.01330849900841713, + 0.00014049150922801346, + -0.011593117378652096, + 0.03339275345206261, + 0.012193500995635986, + -0.009934916161000729, + 0.02254296839237213, + -0.015738623216748238, + -0.0004895983729511499, + 0.016339005902409554, + 0.018683360889554024, + -0.021099189296364784, + -0.008927129209041595, + 0.017454003915190697, + -0.002201405819505453, + -0.008462547324597836, + 0.015252597630023956, + -0.007640593685209751, + 0.021799635142087936, + 0.010513857007026672, + -0.01821163110435009, + 0.002406894229352474, + 0.019083615392446518, + 0.024644309654831886, + 0.01964111439883709, + -0.010006390511989594, + 0.010120748542249203, + 0.001836887327954173, + -0.014337727800011635, + 0.022671621292829514, + -0.00426701083779335, + 0.010435235686600208, + 0.004567202180624008, + 0.01472368836402893, + -0.0033217642921954393, + -0.015152533538639545, + -0.0195696409791708, + -3.059989830944687e-5, + 0.01199337374418974, + -0.009348827414214611, + -0.027560457587242126, + 0.00018572127737570554, + 0.03142006695270538, + 0.0033735830802470446, + 0.015852980315685272, + -0.0033414196223020554, + 0.016467658802866936, + 0.0033610749524086714, + -0.0013865998480468988, + -0.009763377718627453, + 0.007855016738176346, + 0.008734148927032948, + 0.013215582817792892, + 0.007222469430416822, + -0.011879014782607555, + -0.0013079781783744693, + 0.002004851819947362, + 0.00027696258621290326, + 0.011057061143219471, + 0.0007562865503132343, + 0.009313090704381466, + -0.002825018484145403, + 0.0064505478367209435, + -0.01170747634023428, + 0.023529311642050743, + 0.011814688332378864, + 0.014602182433009148, + 0.004227699711918831, + -0.01145731657743454, + 0.01450926624238491, + -2.7465921448310837e-6, + -0.009220173582434654, + 0.010256550274789333, + -0.029504556208848953, + -0.00768347829580307, + 0.0029358034953475, + -0.0048530991189181805, + 0.001156095415353775, + 0.0009702625102363527, + -0.013815965503454208, + 0.00949892308562994, + 0.01145731657743454, + 0.00027651587151922286, + 0.0019655409269034863, + 0.013815965503454208, + 0.008019407279789448, + 0.010871227830648422, + -0.00964187178760767, + -0.015352661721408367, + -0.007168863900005817, + -0.016353299841284752, + -0.017053747549653053, + 0.005517809651792049, + 0.00377026479691267, + 0.022714504972100258, + -0.007476203143596649, + -0.0007835361175239086, + 0.015638558194041252, + -0.005010342691093683, + -0.005153290927410126, + -0.003891770960763097, + 0.005960949696600437, + 0.003588005667552352, + -0.025587769225239754, + 0.012579461559653282, + 0.028089366853237152, + -0.004753035493195057, + 0.006654249504208565, + -0.008962866850197315, + 0.005035358481109142, + 0.009255911223590374, + 0.003927508369088173, + 0.010420940816402435, + -0.0011480546090751886, + 0.008669822476804256, + 0.01656772382557392, + 0.029190069064497948, + -0.002699938602745533, + 0.01692509464919567, + -0.012958275154232979, + -0.010478120297193527, + 0.0020691785030066967, + -0.011342957615852356, + 0.019112205132842064, + 0.00781213166192174, + -0.00353082618676126, + -0.015495610423386097, + -0.0013874932192265987, + 0.005031784996390343, + -0.02012713998556137, + 0.004224126227200031, + -0.006782902870327234, + 0.004481433425098658, + 0.03588005527853966, + 0.009920621290802956, + -0.0003486601635813713, + -0.008405367843806744, + 0.022943222895264626, + 0.0020798996556550264, + 0.005164012312889099, + 0.009020046330988407, + -0.02198546938598156, + -0.009541807696223259, + -0.013344235718250275, + -0.001098916050978005, + -0.001496491371653974, + -0.010378056205809116, + 0.003160947235301137, + -0.014552149921655655, + 0.019612524658441544, + -0.010277992114424706, + -0.010363761335611343, + -0.000551691628061235, + 0.0033700093626976013, + -0.0009604347869753838, + 0.022528672590851784, + 0.004595791921019554, + 0.012979717925190926, + 0.0005029998137615621, + -0.02218559756875038, + -0.014037536457180977, + -0.018125861883163452, + 0.0013714114902541041, + -0.0035826449748128653, + 0.005021063610911369, + 0.021570919081568718, + 0.010092159733176231, + -0.0008768992847763002, + 0.012386481277644634, + -0.003069817554205656, + -0.00672572385519743, + -0.00889853946864605, + 0.018025796860456467, + 0.006843656301498413, + -0.0011096372036263347, + 0.018040092661976814, + -0.007122405804693699, + -0.010942702181637287, + 0.00562144722789526, + 0.023214824497699738, + 0.014895226806402206, + -0.013687312602996826, + 0.003827444277703762, + -0.006732871290296316, + -0.002106702420860529, + 0.000405169470468536, + 0.006010981742292643, + -0.003856034018099308, + 0.011643149890005589, + 0.0025212529581040144, + -0.0017582656582817435, + 0.006125340238213539, + 0.010478120297193527, + -0.028989942744374275, + 0.012593756429851055, + 0.027760585770010948, + 0.01699656806886196, + -0.01962682045996189, + 0.01241507101804018, + -0.004710150882601738, + -0.006918704137206078, + 0.006525596138089895, + 0.006075308192521334, + -0.004828083328902721, + 0.019526755437254906, + 0.01472368836402893, + 0.005524957086890936, + 0.009984947741031647, + 0.028432443737983704, + 0.002085260348394513, + 0.012429365888237953, + 0.007254633121192455, + -0.003995408769696951, + -0.0005977031541988254, + 0.02704584412276745, + -0.00046458240831270814, + -0.0012481184676289558, + 0.028075072914361954, + -0.019884126260876656, + 0.0022675194777548313, + 0.02390097826719284, + 0.014466381631791592, + 0.001601915922947228, + -0.00868411734700203, + 0.006396942306309938, + -0.017697015777230263, + -0.020613163709640503, + 0.016481954604387283, + 0.0022031927946954966, + -0.003966819029301405, + 0.007905048318207264, + 0.001953032915480435, + 0.005846590735018253, + 0.02753186784684658, + -0.0035504817496985197, + 0.018669065088033676, + -0.007469055708497763, + -0.02597372978925705, + -0.005778690334409475, + 0.014058978296816349, + 0.0014714754652231932, + 0.010942702181637287, + -0.027288855984807014, + -0.01141443196684122, + -0.014194779098033905, + 0.0013553298776969314, + 0.0224000196903944, + -0.023657966405153275, + 0.0006142315687611699, + 0.00402042455971241, + 0.0035290394444018602, + -0.012472250498831272, + -0.00037568635889329016, + 0.023286299780011177, + 0.0023157645482569933, + 0.012779589742422104, + 0.0036666272208094597, + 0.00647556409239769, + -0.008962866850197315, + 0.02141367457807064, + 0.024515656754374504, + -0.009463186375796795, + -0.014737983234226704, + 0.02014143392443657, + -0.00015054256073199213, + -0.008805623278021812, + 0.005192601587623358, + -0.01451641321182251, + 0.0015509905060753226, + -0.009012898430228233, + -0.010156486183404922, + -0.0005034464993514121, + 0.021427970379590988, + -0.00524978106841445, + -0.006747166160494089, + 0.01280103251338005, + -0.004781625233590603, + 0.002796428743749857, + -0.007483350578695536, + -0.002819657791405916, + -0.006529169622808695, + 0.022571558132767677, + -0.0023908126167953014, + 0.001232036855071783, + 0.023300593718886375, + 0.04248427227139473, + -0.0016867915401235223, + 0.008005112409591675, + 0.00964187178760767, + -0.012851064093410969, + -0.017811374738812447, + 0.0030930466018617153, + 0.012386481277644634, + -0.002533760853111744, + -0.002263945760205388, + 0.015209713019430637, + 0.015881570056080818, + 0.003923934418708086, + 0.02049880474805832, + -0.010435235686600208, + -0.008419662714004517, + 0.010649657808244228, + -0.016539134085178375, + 0.0036183821503072977, + -0.006514874752610922, + 0.02185681462287903, + 0.023815209046006203, + 0.005331976339221001, + 0.003813149407505989, + -0.015695737674832344, + 0.0023711570538580418, + 0.004470712039619684, + 0.006904409267008305, + 0.004831656813621521, + 0.004216978792101145, + 0.01412330474704504, + 0.000106150378996972, + -0.0015295482007786632, + -0.0026409723795950413, + 0.009327385574579239, + -0.0070187682285904884, + -0.003856034018099308, + -0.008090881630778313, + 0.02084188163280487, + 0.013651574961841106, + -0.01195048913359642, + 0.020312972366809845, + -0.015981635078787804, + -0.0018351004691794515, + 0.014109009876847267, + 0.018054386600852013, + -0.010663952678442001, + -0.012986864894628525, + -0.021756751462817192, + -0.005131848622113466, + -0.010370908305048943, + -0.010692542418837547, + -0.005574988666921854, + -0.020527394488453865, + 0.001683217822574079, + 0.024930207058787346, + -0.007561971899122, + 0.012672378681600094, + -0.010713985189795494, + 0.005971670616418123, + -0.021042009815573692, + 0.0035844319500029087, + 0.01170032937079668, + -0.003963245078921318, + -0.00807658676058054, + 0.0005123807932250202, + 0.0014116157544776797, + -0.006143209058791399, + 0.001117678009904921, + 0.009120110422372818, + -0.007022341713309288, + 0.001271347631700337, + 0.000407626386731863, + -0.007955079898238182, + -0.008169502951204777, + -0.03144865483045578, + -0.01998419128358364, + 0.015452725812792778, + 0.003459352068603039, + -0.0047423141077160835, + -0.009563250467181206, + 0.012786737643182278, + 0.009105815552175045, + -0.0016850046813488007, + -0.028275199234485626, + 5.9189584135310724e-5, + 0.0007647741003893316, + -0.001137333456426859, + 0.008927129209041595, + -0.010685395449399948, + 0.013651574961841106, + 0.0006883860332891345, + -0.02860398031771183, + 0.028975646942853928, + -0.006275436375290155, + 0.0008483096025884151, + -0.005088964011520147, + 0.021027714014053345, + -0.0016099567292258143, + -0.011621707119047642, + -0.010370908305048943, + -0.026288216933608055, + -0.009055783040821552, + -0.006911556702107191, + 0.0019548197742551565, + 0.00670785503461957, + 0.008112323470413685, + -0.008548316545784473, + -0.0026320379693061113, + 0.006439826916903257, + -0.01964111439883709, + -0.0104995621368289, + -0.00889139249920845, + -0.012779589742422104, + 0.001352649531327188, + 0.011507349088788033, + -0.020470215007662773, + -0.010635362938046455, + -0.023429248481988907, + 0.023014698177576065, + -0.014244811609387398, + 0.024315528571605682, + 0.002033441560342908, + -0.035251084715127945, + -0.01622464694082737, + 0.008741296827793121, + 0.0071402741596102715, + -0.0002657947479747236, + -0.0010229747276753187, + 0.004510023165494204, + 0.029418786987662315, + 0.016267532482743263, + -0.008634084835648537, + -0.001961967209354043, + 0.007519087754189968, + 0.005482072476297617, + -0.026359690353274345, + 0.0056000049225986, + -0.01685361936688423, + -0.0291614793241024, + 0.000844289199449122, + 0.018311694264411926, + -0.006046718452125788, + 0.0069329990074038506, + -0.016481954604387283, + -0.017325349152088165, + 0.002574858721345663, + 0.010313729755580425, + -0.027503278106451035, + 0.019669704139232635, + 0.005843017250299454, + -0.007740657776594162, + 0.02567353844642639, + -0.02135649509727955, + 0.010220812633633614, + -0.021370790898799896, + 0.0023193382658064365, + -0.019755473360419273, + -0.0034325493033975363, + 0.004263436887413263, + -0.02291463315486908, + 0.018411757424473763, + -0.024001041427254677, + -0.0028000024612993, + -0.03499377518892288, + -0.01109279878437519, + 0.01765413209795952, + -0.0033253380097448826, + -0.013365678489208221, + 0.018025796860456467, + -0.001362477196380496, + 0.0010613921331241727, + 0.0011498414678499103, + -0.010213665664196014, + 0.02077040635049343, + -0.022928928956389427, + 0.0026177430991083384, + 0.010571036487817764, + -0.008276714012026787, + -0.017882848158478737, + -0.01658201776444912, + -0.006775755900889635, + -0.03833876922726631, + 0.0018216990865767002, + -0.015967339277267456, + -0.022257070988416672, + -0.03656620904803276, + -1.0441935955896042e-5, + 0.016610607504844666, + 0.002969753695651889, + -0.002226421842351556, + -0.024086810648441315, + 0.0031716683879494667, + -0.01009930670261383, + -0.023286299780011177, + -0.016038814559578896, + -0.01508105918765068, + 0.028089366853237152, + 0.006675691809505224, + -0.013329940848052502, + -0.01472368836402893, + -0.0018020436400547624, + -0.017611246556043625, + -0.013458594679832458, + -0.015881570056080818, + 0.0017064468702301383, + -0.0048102145083248615, + 0.015667147934436798, + -0.01199337374418974, + 0.009348827414214611, + 0.0032199134584516287, + 0.014323432929813862, + -0.0013597969664260745, + 0.0048245093785226345, + -0.0011328663676977158, + -0.017625542357563972, + -0.0016010224353522062, + 0.0004447036480996758, + -0.019469575956463814, + -0.0026784962974488735, + -0.0030090645886957645, + -0.0006481817690655589, + -0.0019494591979309916, + -0.0004359927261248231, + 0.002474794629961252, + -0.007229616865515709, + 0.011535938829183578, + 0.012186354026198387, + -0.010378056205809116, + -0.008905687369406223, + 0.03222057595849037, + -0.013987503945827484, + 0.007147421594709158, + 0.005896622780710459, + 0.00939885899424553, + -0.02021290920674801, + 0.009756230749189854, + -0.016553428024053574, + -0.020598869770765305, + -0.011257189325988293, + 0.014480676501989365, + 0.009427448734641075, + 0.021470854058861732, + -0.012901095673441887, + -0.008626937866210938, + -0.0013535430189222097, + 0.00645412178710103, + 0.007054504938423634, + -0.002246077172458172, + -0.005907344166189432, + 0.005135422572493553, + 0.0036451849155128, + 0.01390888262540102, + -0.01678214594721794, + -0.010020685382187366, + 0.02903282642364502, + -0.006675691809505224, + 0.0035415473394095898, + -0.005328402854502201, + -0.005317681469023228, + -0.004602939356118441, + 0.01490952167659998, + 0.020798996090888977, + -0.00019197528308723122, + 0.025702128186821938, + -0.0027892813086509705, + 0.001827953034080565, + -0.0231147613376379, + -0.003870328888297081, + 0.011828983202576637, + -0.005703642498701811, + -0.019097911193966866, + 0.016196057200431824, + -0.007368991617113352, + -0.003468286246061325, + -0.015910159796476364, + 0.00194767233915627, + 0.009427448734641075, + -0.006793624255806208, + 0.007476203143596649, + -0.013708754442632198, + -0.005539251957088709, + 0.024001041427254677, + -0.004252715967595577, + 0.01758265681564808, + -0.035765696316957474, + 0.017196696251630783, + -0.014480676501989365, + -0.0156528539955616, + 0.03365005925297737, + 0.002028080867603421, + 0.01462362427264452, + 0.007712068036198616, + 0.011936194263398647, + -0.011028471402823925, + -0.03256365284323692, + -0.0010765803745016456, + 0.017897143959999084, + 0.00839107297360897, + 0.022500082850456238, + 0.013344235718250275, + -0.007215321995317936, + -0.010678247548639774, + 0.006568480283021927, + 0.003493302268907428, + -0.004549333825707436, + -0.016610607504844666, + -0.0061360616236925125, + 0.007912195287644863, + -0.015824390575289726, + -0.00999924261122942, + -0.010378056205809116, + 0.0060395714826881886, + 0.005785837769508362, + 0.00220676651224494, + 0.0011444808915257454, + 0.0008523300057277083, + 0.019812652841210365, + -0.008848507888615131, + 0.007533382158726454, + 0.004724445752799511, + -0.007626298815011978, + 0.006471990142017603, + -0.013094075955450535, + -0.014795162715017796, + 0.017839964479207993, + -0.019269447773694992, + -0.03605159372091293, + -0.015052469447255135, + -0.010978439822793007, + -0.00019007673836313188, + -0.0031537998002022505, + -0.01906932145357132, + 0.0007303771562874317, + 0.00316630769520998, + 0.009963505901396275, + 0.015181123279035091, + -0.006679265294224024, + -0.034336213022470474, + 0.003948950208723545, + 0.0021656686440110207, + 0.001684111193753779, + -0.013329940848052502, + -0.0008384818793274462, + -0.022714504972100258, + 0.017125222831964493, + 0.006986604537814856, + -0.024143990129232407, + 0.0008599241846241057, + 5.2181760111125186e-5, + 0.016053108498454094, + -0.004735166672617197, + -0.009734787978231907, + -0.0030680308118462563, + 0.005960949696600437, + 0.0034843680914491415, + -0.00731181213632226, + -0.012050553224980831, + 0.016753556206822395, + -0.013851703144609928, + -0.0070044733583927155, + 0.002964393002912402, + -0.02057028003036976, + 0.0018109779339283705, + 0.00807658676058054, + 0.03259224072098732, + -0.012300712987780571, + 0.017110927030444145, + -0.023300593718886375, + -0.021956879645586014, + -0.010756869800388813, + 0.01174321398139, + -0.01978406310081482, + -0.007469055708497763, + -0.007469055708497763, + -0.0064362529665231705, + -0.0008192731766030192, + 0.002498023910447955, + 2.8170892619527876e-5, + 0.016753556206822395, + -0.013094075955450535, + -0.024444181472063065, + -0.005821574945002794, + -0.025945140048861504, + -0.01771131157875061, + 0.019612524658441544, + 0.018268808722496033, + -0.006221830379217863, + -0.007983669638633728, + 0.022157007828354836, + -0.002229995559900999, + -0.004127636086195707, + 0.019955601543188095, + 0.009727641008794308, + -0.004327763803303242, + 0.02347213216125965, + -0.000613784824963659, + 0.006747166160494089, + 0.018197335302829742, + 0.0003473200195003301, + 7.432201527990401e-5, + -0.019526755437254906, + 0.01490952167659998, + 0.011585970409214497, + 0.0038202968426048756, + -0.0037059381138533354, + -0.010120748542249203, + -0.027975007891654968, + -0.020941944792866707, + -0.04182671010494232, + -0.020798996090888977, + -0.006093177013099194, + 0.00839821994304657, + 0.0002365349791944027, + -0.021156368777155876, + -0.001477729412727058, + -0.008348188363015652, + 0.0007455653976649046, + 0.010735427029430866, + -4.606736547430046e-5, + -0.014151894487440586, + -0.00512470118701458, + -0.027660520747303963, + 0.017096633091568947, + 0.0008241870673373342, + 0.004252715967595577, + 0.01713951677083969, + -0.012350744567811489, + -0.015109648928046227, + -0.01508105918765068, + 0.011500201188027859, + 0.00042906866292469203, + -0.006071734707802534, + 0.011721771210432053, + 0.007976522669196129, + -0.0003491068782750517, + -0.002960819285362959, + -0.009563250467181206, + -0.005800132639706135, + -0.01622464694082737, + -0.016353299841284752, + 0.009920621290802956, + -0.01808297634124756, + 0.01871195062994957, + -0.009813410229980946, + -0.008105176500976086, + -0.008441104553639889, + -0.01579580083489418, + 0.005507088266313076, + 0.0011185714974999428, + -0.0035665633622556925, + -0.00829100888222456, + -0.0003399492416065186, + 0.00683293491601944, + 0.00730823865160346, + -0.01141443196684122, + -0.016539134085178375, + 0.006697134114801884, + 0.010892670601606369, + -0.0038739026058465242, + -0.019369512796401978, + -0.01265808381140232, + -0.012994012795388699, + -0.0013213795609772205, + -0.0028125103563070297, + 0.022857453674077988, + -0.01462362427264452, + -0.0023961730767041445, + 0.0024426314048469067, + 0.01155738066881895, + 0.006146782543510199, + -0.002628464251756668, + -0.0022657327353954315, + 0.004342058673501015, + 0.006489858962595463, + 0.001251692185178399, + 0.011235746555030346, + 0.03891056403517723, + 0.03356429189443588, + -0.02531616762280464, + 0.008719854056835175, + -0.037023644894361496, + 0.015381251461803913, + -0.023243414238095284, + 0.010692542418837547, + 0.023500721901655197, + -0.0012874293606728315, + -0.0014089355245232582, + 0.025158923119306564, + 0.012064848095178604, + -0.0019262301502749324, + 0.0018547559157013893, + -0.013694459572434425, + 0.006146782543510199, + -0.008591201156377792, + -0.0023765177465975285, + 0.001856542774476111, + -0.011357252486050129, + -0.019683999940752983, + 0.015281187370419502, + 0.02767481654882431, + -0.015023880638182163, + -0.0027767731808125973, + 0.01885489746928215, + 0.033678650856018066, + -0.012886800803244114, + 0.01255087275058031, + 0.0027374625205993652, + 0.010978439822793007, + -0.008240977302193642, + 0.0032627980690449476, + -0.007919343188405037, + 0.016324710100889206, + 0.012650935910642147, + 0.001607276382856071, + -0.026273921132087708, + -0.012279270216822624, + -0.02454424649477005, + 0.0036094479728490114, + 0.022814569994807243, + 0.01220064889639616, + -0.006182519719004631, + 0.011585970409214497, + 0.012772442772984505, + 0.006053865887224674, + -0.0039132134988904, + -0.013487184420228004, + -0.014073273167014122, + 0.019512461498379707, + -0.011185714974999428, + -0.017253875732421875, + 0.0007232297211885452, + -0.028861287981271744, + 0.012958275154232979, + -0.00597524456679821, + 0.001654628082178533, + -0.026631291955709457, + -0.022357134148478508, + 9.146465890808031e-5, + -0.0009336319635622203, + 0.02668847143650055, + -0.005314107984304428, + 0.0010131470626220107, + 0.008612642996013165, + 0.004281305707991123, + -0.010914112441241741, + 0.020656049251556396, + 0.0018047239864245057, + -0.004724445752799511, + 0.01765413209795952, + -0.009091520681977272, + 0.029704684391617775, + 0.00745476083829999, + -0.02275739051401615, + -0.02603090927004814, + 0.009191583842039108, + 0.0019119352800771594, + 0.017525477334856987, + 0.006028850097209215, + -0.002024507150053978, + -0.02262873761355877, + 0.027417508885264397, + 0.02497309073805809, + -0.0038524603005498648, + 0.0144092021510005, + 0.011221451684832573, + -0.025644948706030846, + 0.0009747295989654958, + -0.0030340803787112236, + 0.005985965486615896, + 0.019183680415153503, + 0.007469055708497763, + 0.012872505933046341, + 0.0031537998002022505, + 0.0035343999043107033, + -0.003505810396745801, + 0.005767969414591789, + -0.026373986154794693, + -0.004895983729511499, + 0.01522400788962841, + -0.005221191328018904, + -0.009913473390042782, + 0.0033164035994559526, + 0.0046243816614151, + -0.019898422062397003, + -0.008841360919177532, + -0.01450926624238491, + -0.005864459555596113, + -0.03182031959295273, + 0.015338366851210594, + 0.006404089741408825, + -0.0070044733583927155, + -0.010914112441241741, + -0.010764016769826412, + -0.01742541417479515, + 0.01174321398139, + 0.020970534533262253, + 0.007397581357508898, + 0.005063948221504688, + 0.001616210676729679, + -0.011821835301816463, + 0.021656688302755356, + -0.013358530588448048, + -0.0008652847027406096, + 0.01628182642161846, + -0.006711428984999657, + -0.015281187370419502, + 0.013865998014807701, + 0.009906326420605183, + 0.006697134114801884, + -0.013923177495598793, + 0.009606135077774525, + -0.00035134045174345374, + -0.0012927899369969964, + -0.0064219580963253975, + -0.017811374738812447, + 0.004452843684703112, + -0.018025796860456467, + -0.008491137064993382, + -0.009706198237836361, + 0.005439187865704298, + 0.011643149890005589, + 0.023100467398762703, + 0.008155208081007004, + 0.001492024282924831, + 0.004356353543698788, + 0.002955458825454116, + -0.0010783672332763672, + 0.002221061149612069, + 0.012122026644647121, + -0.01758265681564808, + 0.035251084715127945, + -0.007776394486427307, + 0.01270096842199564, + 0.015538494102656841, + 0.0020781129132956266, + -0.0195696409791708, + 0.0054606301710009575, + -0.005685773678123951, + -0.017982913181185722, + -0.005164012312889099, + -0.006539890542626381, + 0.016982274129986763, + 0.007261780556291342, + 0.018683360889554024, + 0.015409841202199459, + 0.0035415473394095898, + 0.005614299792796373, + 0.0032217002008110285, + 0.004306321498006582, + -0.004367074463516474, + -0.01185042504221201, + 0.014151894487440586, + -0.011435874737799168, + -0.010735427029430866, + 0.01785425841808319, + 0.007840721867978573, + -0.022442903369665146, + -0.012357891537249088, + -0.020684638991951942, + 0.006940146442502737, + -0.008119471371173859, + 0.03465069830417633, + -0.004459991119801998, + -0.017182402312755585, + 0.00928450096398592, + 0.008691264316439629, + 0.030333656817674637, + 0.03142006695270538, + 0.009120110422372818, + 0.003035867353901267, + 0.008798476308584213, + -0.021327905356884003, + 0.005360566079616547, + -0.03239211440086365, + -0.0005079136462882161, + 0.004774477798491716, + 0.008469694294035435, + 0.007211748510599136, + 0.006504153832793236, + -0.0026659881696105003, + 0.0016966192051768303, + -0.028818404302001, + -0.01969829387962818, + -0.027217380702495575, + 0.012007668614387512, + -0.017096633091568947, + 0.006050292402505875, + 0.016339005902409554, + -0.012936833314597607, + -0.02340065874159336, + 0.011078503914177418, + 0.008162355050444603, + 0.00832674652338028, + -0.012243533506989479, + -0.017897143959999084, + -0.011828983202576637, + -0.018197335302829742, + 0.0036433981731534004, + 0.009091520681977272, + 0.006143209058791399, + 0.019826946780085564, + -0.003334272187203169, + -0.04345632344484329, + 0.0036094479728490114, + 0.032477885484695435, + -0.011879014782607555, + -0.024129696190357208, + -0.013844555243849754, + -0.0011775377206504345, + 0.013544363901019096, + 0.003639824455603957, + 0.005578562617301941, + 0.0104995621368289, + -0.008155208081007004, + -0.003745249006897211, + -0.028846994042396545, + -0.0016992994351312518, + 0.012093436904251575, + -0.020584573969244957, + -0.0119147514924407, + 0.009155847132205963, + 0.02504456602036953, + 0.019312333315610886, + 0.018240220844745636, + 0.0008670715615153313, + -0.01992701180279255, + 0.016253236681222916, + 0.004238421097397804, + 0.008548316545784473, + -0.014087568037211895, + 0.004481433425098658, + 0.029704684391617775, + -0.0036148084327578545, + 0.019469575956463814, + -0.005789411719888449, + -0.00018482786254025996, + 0.0028321659192442894, + 0.007569119334220886, + -0.012515135109424591, + 0.018411757424473763, + 0.0032074053306132555, + -0.014795162715017796, + -0.013637280091643333, + 0.01601022481918335, + -0.024001041427254677, + 0.011028471402823925, + -0.01721099205315113, + -0.011964784003794193, + -0.006443400401622057, + -0.014223368838429451, + 0.007712068036198616, + -0.01376593392342329, + 0.02248578891158104, + -0.010785459540784359, + -0.0048673939891159534, + -0.011879014782607555, + 0.03016211837530136, + -0.003745249006897211, + -0.0006463949684984982, + -0.013673017732799053, + 0.006775755900889635, + 0.01330135203897953, + -0.022886043414473534, + -0.01562426332384348, + -0.013844555243849754, + 0.0012793884379789233, + -0.00231219083070755, + -0.005060374271124601, + 0.010864080861210823, + 0.0006356738158501685, + 0.0053498451597988605, + -0.03459351882338524, + -0.01643906906247139, + 0.013422857969999313, + 0.0016626690048724413, + 0.004327763803303242, + -0.001808297703973949, + -0.02354360744357109, + -0.00464225048199296, + -0.001788642257452011, + -0.0030769649893045425, + 0.006800771690905094, + 0.023858092725276947, + 0.0034236148931086063, + -0.020398741587996483, + -0.012079142965376377, + 0.01376593392342329, + 0.016610607504844666, + 0.042369917035102844, + 0.0010086798574775457, + 0.02205694280564785, + -0.008984308689832687, + -0.01642477512359619, + -0.030848272144794464, + 0.003755970159545541, + 0.0030966203194111586, + -0.00718315877020359, + 0.0012990438845008612, + -0.002292535500600934, + -0.01622464694082737, + -0.0026963648851960897, + 0.011135682463645935, + -0.004084751475602388, + 0.025530589744448662, + -0.005960949696600437, + -0.006514874752610922, + -0.011057061143219471, + 0.013673017732799053, + -7.878915494075045e-5, + -0.004681561142206192, + -0.019312333315610886, + -0.007279648911207914, + 0.01014219131320715, + -0.004252715967595577, + 0.0033789435401558876, + -0.01592445559799671, + -0.008062291890382767, + -0.011035619303584099, + 0.009620429016649723, + -0.00730823865160346, + -0.012994012795388699, + -0.007712068036198616, + -0.003977539949119091, + 0.022428609430789948, + -0.006790050305426121, + 0.009162994101643562, + -0.006375500001013279, + 0.005135422572493553, + -0.023786619305610657, + -0.008333893492817879, + 0.020312972366809845, + 0.0069472938776016235, + -0.019398102536797523, + 0.0038810500409454107, + 0.0054463353008031845, + 0.007390433922410011, + -0.02440129779279232, + 0.0137016074731946, + 9.408910409547389e-5, + 0.007783541921526194, + 0.0063683525659143925, + 0.008119471371173859, + 0.016882209107279778, + 0.0006142315687611699, + 0.016267532482743263, + -0.012722410261631012, + -0.00635048421099782, + -0.008090881630778313, + 0.013815965503454208, + 0.011385842226445675, + 0.015095354057848454, + 0.01828310452401638, + 0.0033306984696537256, + 0.017268169671297073, + 0.00814091321080923, + -0.014323432929813862, + 0.0013008307432755828, + 0.0006615832098759711, + 0.006639954634010792, + -0.013987503945827484, + -0.008133766241371632, + -0.008005112409591675, + -0.010420940816402435, + 0.008240977302193642, + -0.010227960534393787, + -0.004195536486804485, + -0.022957518696784973, + -0.016381889581680298, + 0.000271155295195058, + -0.003261011093854904, + 0.00824812427163124, + 0.018969256430864334, + -0.006929425057023764, + -0.005482072476297617, + -0.0112071568146348, + -0.006522022187709808, + -0.005410598125308752, + 0.026988664641976357, + -0.011221451684832573, + -0.011514496058225632, + -0.0035236787516623735, + -0.007919343188405037, + 0.005889475345611572, + 0.0035951531026512384, + -0.026702767238020897, + 0.018311694264411926, + 0.006379073951393366, + 0.010542446747422218, + 0.003012638306245208, + 0.011986225843429565, + -0.009055783040821552, + -0.004342058673501015, + -0.014430643990635872, + -0.01835457794368267, + 0.006825787480920553, + -0.005964523181319237, + -0.006915130186825991, + 0.01658201776444912, + -0.015752917155623436, + 0.010978439822793007, + -0.028432443737983704, + 0.01536695659160614, + 0.009277353063225746, + 0.004377795848995447, + 0.021528033539652824, + 0.003118062624707818, + 0.025916550308465958, + 0.007115258369594812, + -0.011471611447632313, + 0.0256020650267601, + 0.030648143962025642, + 0.014109009876847267, + 0.011292926035821438, + 0.0011516283266246319, + -0.015738623216748238, + 0.011871866881847382, + 0.005574988666921854, + -0.013651574961841106, + 0.007569119334220886, + 0.00047172981430776417, + 0.004131209570914507, + 0.017239581793546677, + -0.02284315973520279, + -0.013980356976389885, + 0.02640257589519024, + -0.02427264302968979, + 0.011171420104801655, + -0.013251319527626038, + -0.028346674516797066, + 0.034393392503261566, + 0.015838686376810074, + 0.010092159733176231, + 0.0035379736218601465, + 0.008512578904628754, + 0.0013035109732300043, + 0.00029661800363101065, + 0.006161077413707972, + 0.016038814559578896, + 0.012743853032588959, + -0.004277731757611036, + 0.013272762298583984, + 0.005864459555596113, + -0.007176011335104704, + 0.0032699452713131905, + 0.0023515017237514257, + 0.006843656301498413, + 0.0029358034953475, + -0.00989203155040741, + -0.004449269734323025, + 0.015595673583447933, + -0.00024278897035401314, + 0.013329940848052502, + 0.020941944792866707, + -0.006765034515410662, + -0.014923816546797752, + 0.002862542401999235, + -0.02318623475730419, + -0.014809457585215569, + -0.003318190574645996, + -0.002955458825454116, + -0.01562426332384348, + 0.00999209564179182, + 0.00042370808660052717, + 0.018454642966389656, + 0.01130722090601921, + 0.015023880638182163, + -0.00499604782089591, + -0.002825018484145403, + 0.012336449697613716, + 0.014230516739189625, + 0.0061217667534947395, + -0.009327385574579239, + -0.0012633068254217505, + 0.01728246547281742, + -0.0019458854803815484, + 0.00914869923144579, + -0.0054320404306054115, + -0.0008282074704766273, + 0.0049352943897247314, + 0.013044044375419617, + -0.01713951677083969, + -0.006386221386492252, + -0.010685395449399948, + 0.02212841808795929, + 0.008869950659573078, + -0.003266371786594391, + -0.02434411831200123, + 0.0004156672512181103, + 0.006018129177391529, + 0.012229238636791706, + 0.007883606478571892, + 0.005106832832098007 + ], + "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8": [ + -0.03600625321269035, + -0.0004995938506908715, + -0.005757309030741453, + 0.024733001366257668, + -0.040095292031764984, + -0.01916736736893654, + -0.007965105585753918, + 0.015319694764912128, + -0.04026566818356514, + 0.014212246984243393, + 0.011926361359655857, + 0.02319961227476597, + 0.023455176502466202, + -0.01166369765996933, + 0.00847623497247696, + -0.004994163755327463, + -0.010421368293464184, + 0.03756803646683693, + -0.004504330921918154, + -0.020927924662828445, + 0.07155817002058029, + -0.049607984721660614, + -0.03782360255718231, + 0.016427142545580864, + -0.011464924551546574, + -0.037596434354782104, + 0.006335879676043987, + 0.006580795627087355, + -0.06360726058483124, + 0.006130007561296225, + 0.006818613037467003, + -0.005210684146732092, + 0.003400432877242565, + 0.010038021020591259, + 0.00650980556383729, + -0.027601007372140884, + -0.005462699569761753, + 0.019806278869509697, + 0.003954156767576933, + 0.010542051866650581, + -0.007674045395106077, + 0.0051574413664639, + -0.01695246994495392, + 0.007929610088467598, + -0.04267933592200279, + 0.01783275045454502, + -0.01194055937230587, + -0.009810851886868477, + 0.028438692912459373, + 0.010790517553687096, + -0.0067831180058419704, + 0.01409156434237957, + -0.004852183163166046, + 0.007553362287580967, + 0.018230294808745384, + -0.013033809140324593, + -0.0007950907456688583, + 0.05525880679488182, + 0.007666946388781071, + -0.040634818375110626, + -0.0032797493040561676, + -0.01644134148955345, + 0.009079652838408947, + -0.007461074739694595, + 0.011855371296405792, + -0.007152267266064882, + -0.015262902714312077, + 0.0023497771471738815, + -0.03700011596083641, + -0.03569389507174492, + -0.02664973773062229, + 0.020729152485728264, + -0.06678762286901474, + 0.013679820112884045, + 0.00484153488650918, + -0.009384910576045513, + 0.00861111655831337, + -0.001528952387161553, + 0.015859220176935196, + -0.024278664961457253, + -0.01252977829426527, + -0.011294548399746418, + -0.00451142992824316, + 0.00756756030023098, + 0.04162868112325668, + -0.014623990282416344, + 0.008426542393863201, + -0.04637083038687706, + 0.0005852258182130754, + -0.019323544576764107, + -0.014751773327589035, + 0.015703042969107628, + -0.002702953526750207, + 0.01121645886451006, + 0.007340391632169485, + 0.004923173692077398, + -0.0026177652180194855, + -0.0011420556111261249, + 0.02055877447128296, + -0.013736613094806671, + 0.01743520423769951, + 0.003961255773901939, + -0.008582720533013344, + -0.0020746898371726274, + 0.0029443204402923584, + -0.00541300605982542, + 0.0036985918413847685, + 0.017122847959399223, + -0.02437805011868477, + 0.045376963913440704, + 0.030383825302124023, + -0.04466706141829491, + 0.03643219545483589, + 0.010698230005800724, + -0.05594031512737274, + -0.044610269367694855, + 0.00864661205559969, + -0.012047044932842255, + 0.01419095043092966, + -0.02354036644101143, + 0.019905665889382362, + -0.006382022984325886, + 0.029815902933478355, + -0.0012307934230193496, + 0.008731800131499767, + -0.008398146368563175, + 0.0018989890813827515, + 0.038902655243873596, + 0.038647089153528214, + 0.018940197303891182, + -0.01297701708972454, + -0.02916279248893261, + 0.012359402142465115, + -0.004110335372388363, + 0.001675369800068438, + 0.03180363029241562, + 0.024534229189157486, + 0.07360268384218216, + -0.03609143942594528, + 0.03364937752485275, + -0.030724579468369484, + -0.02275947295129299, + -0.03305305913090706, + 0.02520153671503067, + 0.023369988426566124, + 0.030809767544269562, + -0.035921063274145126, + 0.03910142928361893, + -0.04375838860869408, + 0.022532304748892784, + -0.03055420145392418, + 0.027856573462486267, + -0.01604379527270794, + 0.00888087972998619, + 0.06798025965690613, + 0.015021536499261856, + -0.017676571384072304, + 0.020019249990582466, + 0.006027071736752987, + 0.03444446623325348, + 0.01360883004963398, + -0.06343688070774078, + -0.005523041356354952, + 0.012146431021392345, + 0.03998170793056488, + 0.044525083154439926, + 0.06741233915090561, + -0.003915111999958754, + -0.002090662717819214, + 0.017804354429244995, + 0.016498133540153503, + -0.014446514658629894, + 0.03799397870898247, + -0.0013337292475625873, + 0.04282131791114807, + -0.02757261134684086, + 0.05687738582491875, + -0.00210841023363173, + 0.04989194497466087, + -0.06479989737272263, + -0.027118274942040443, + -0.025911439210176468, + 0.006098062265664339, + -0.011060280725359917, + -0.0160295981913805, + 0.011472024023532867, + -0.015717240050435066, + 0.0037447353824973106, + 0.004866381175816059, + 0.004518529400229454, + -0.01611478626728058, + -0.022617492824792862, + 0.02187919430434704, + -0.002498856745660305, + -0.019621703773736954, + -0.0367729477584362, + -0.0005359763745218515, + 0.023086028173565865, + 0.021552639082074165, + 0.040152084082365036, + -0.0056650214828550816, + -0.0383063368499279, + -0.023724939674139023, + 0.03688653185963631, + -0.03498399257659912, + 0.0036985918413847685, + -0.008731800131499767, + -0.05656502768397331, + 0.04083358868956566, + -0.02595403417944908, + 0.026536153629422188, + -0.04160028323531151, + 0.02290145307779312, + 0.0075320652686059475, + -0.021424856036901474, + 0.013850197196006775, + -0.020942121744155884, + 0.01727902516722679, + 0.008738899603486061, + -0.025641676038503647, + -0.012650461867451668, + 0.0038547704461961985, + -0.032456740736961365, + -0.0009503819164820015, + -0.051680900156497955, + 0.007993501611053944, + -0.03089495562016964, + 0.03248513489961624, + -0.04191264137625694, + -0.04052123427391052, + 0.009526890702545643, + -0.02784237451851368, + 0.03611983731389046, + -0.02104150876402855, + 0.013544938527047634, + 0.030639389529824257, + 0.020118635147809982, + 0.013268076814711094, + -0.008149680681526661, + -0.021226083859801292, + -0.01023679319769144, + 0.03964095190167427, + -0.01881241612136364, + 0.001708202762529254, + -0.00560822943225503, + 0.005686318501830101, + 0.007166465278714895, + 0.05625266954302788, + 0.005739561282098293, + -0.002291210228577256, + -0.013530740514397621, + 0.027402235195040703, + -0.02561328001320362, + 0.009157741442322731, + -0.002545000286772847, + 0.04242376983165741, + 0.029276378452777863, + -0.03575068712234497, + -0.03844831883907318, + 0.016881480813026428, + 0.004607267212122679, + 0.002619540086016059, + -0.013239680789411068, + -0.004816688131541014, + 0.05826879292726517, + -0.026053421199321747, + 0.029049208387732506, + -0.01392118725925684, + 0.0072623020969331264, + 0.03540993481874466, + -0.004834435880184174, + -0.015859220176935196, + -0.03484201431274414, + 0.019607506692409515, + -0.0023213811218738556, + 0.015603655949234962, + -0.004859282169491053, + 0.001975303515791893, + 0.035864271223545074, + 0.017676571384072304, + -0.023554563522338867, + -0.006807964760810137, + -0.006953494623303413, + 0.017122847959399223, + 0.016398746520280838, + 0.037653226405382156, + -0.04719431698322296, + 0.015163516625761986, + -0.02789916656911373, + -0.0007866606465540826, + -0.0020569423213601112, + -0.02443484216928482, + -0.007773431949317455, + 0.04089038074016571, + 0.017122847959399223, + 0.012068341486155987, + -0.02873685210943222, + 0.018656237050890923, + -0.0054839965887367725, + -0.021637827157974243, + -8.58954263094347e-6, + -0.008639512583613396, + -0.00617615133523941, + -0.024662012234330177, + 0.018769821152091026, + -0.011649499647319317, + 0.0334790013730526, + 0.0492672324180603, + -0.03824954479932785, + 0.00016960014181677252, + 0.04665479063987732, + -0.00968306977301836, + -0.036063045263290405, + -0.006772469263523817, + 0.005249728914350271, + 0.012920225039124489, + -0.016995064914226532, + -0.02055877447128296, + -0.009626277722418308, + -0.02741643227636814, + -0.018031522631645203, + -0.0011225332273170352, + -0.039669349789619446, + 0.00919323693960905, + 0.012600768357515335, + -0.04895487427711487, + 0.050232697278261185, + -0.02352616749703884, + -0.054264944046735764, + 0.0032069843728095293, + -0.055997107177972794, + 0.01228841207921505, + -0.0031927863601595163, + -0.025840450078248978, + -0.045575737953186035, + -0.011720489710569382, + -0.05332787334918976, + -0.01943712867796421, + 0.009108048863708973, + -0.014482010155916214, + -0.013594632036983967, + -0.023341592401266098, + 0.041401512920856476, + -0.02256070077419281, + -0.02319961227476597, + -0.04409914091229439, + 0.019351940602064133, + 0.033223435282707214, + 0.004933821968734264, + -0.00787991750985384, + 0.0009219858329743147, + -0.01845746487379074, + 0.035239558666944504, + -0.013005413115024567, + 0.08075850456953049, + -0.017676571384072304, + -0.02797015756368637, + -0.014119960367679596, + 0.013126096688210964, + -0.02095632068812847, + -0.0014251292450353503, + -0.0640048086643219, + -0.028211524710059166, + -0.027104075998067856, + -0.01875562220811844, + 0.03563710302114487, + -0.023412583395838737, + -0.018244493752717972, + 0.03390493988990784, + 0.013963781297206879, + -0.013530740514397621, + -0.019692694768309593, + -0.01859944500029087, + -0.05045986548066139, + -0.02352616749703884, + -0.05239080265164375, + 0.03552351891994476, + -0.033848147839307785, + 0.011294548399746418, + 0.025499695912003517, + 0.0038973644841462374, + -0.013963781297206879, + 0.0029709418304264545, + -0.007716639898717403, + 0.01715124398469925, + 0.04671158269047737, + -0.006346527952700853, + -0.010634338483214378, + -0.018485860899090767, + 0.008667908608913422, + -0.030923351645469666, + 0.007276500109583139, + -0.028069542720913887, + 0.013807603158056736, + -0.014041870832443237, + -0.02500276453793049, + -0.010996389202773571, + -0.0005381947848945856, + -0.0033525144681334496, + -0.017165441066026688, + -0.023511970415711403, + 0.008753097616136074, + 0.006616291124373674, + 0.024449041113257408, + 0.034955598413944244, + -0.015106724575161934, + 0.022120561450719833, + -0.013814701698720455, + 0.008689206093549728, + 0.013374562375247478, + 0.02812633477151394, + 0.0035246657207608223, + 0.030043072998523712, + 0.006736974231898785, + 0.025286726653575897, + 0.011095775291323662, + 0.011372637003660202, + 0.05247598886489868, + -0.013438453897833824, + -0.025244131684303284, + 0.031548064202070236, + 0.012494283728301525, + -0.023838523775339127, + 0.03631861135363579, + -0.004348152782768011, + 0.019465524703264236, + 0.01736421510577202, + 0.010676933452486992, + -0.006271988153457642, + -0.039328597486019135, + 0.03353579342365265, + 0.022475512698292732, + 0.011237756349146366, + -0.019948258996009827, + -0.01527710072696209, + -0.011741787195205688, + 0.009001563303172588, + -0.025187339633703232, + -0.02603922225534916, + -0.010165803134441376, + 0.011635301634669304, + 0.02368234656751156, + -0.019053781405091286, + -0.04722271114587784, + -0.03396173566579819, + 0.009321019053459167, + -0.02118348889052868, + -0.0001551802415633574, + 0.01922415941953659, + -0.04250895977020264, + -0.023767534643411636, + 0.033223435282707214, + -0.01527710072696209, + 0.00348917068913579, + -0.01492214947938919, + -0.0142335444688797, + 0.005956081673502922, + -0.0343024879693985, + 0.023639751598238945, + -0.05559955909848213, + 0.009015761315822601, + 0.021964382380247116, + 0.01093959715217352, + -0.03563710302114487, + 0.026266390457749367, + -0.04347442835569382, + -0.003893814980983734, + 0.027941761538386345, + -0.002672782866284251, + 0.007304896134883165, + -0.02477559633553028, + 0.006992539390921593, + -0.0554007887840271, + 0.015518467873334885, + 0.008667908608913422, + -0.004543375689536333, + -0.022503908723592758, + -0.0024296410847455263, + -0.009832149371504784, + -0.030724579468369484, + -0.04114594683051109, + 0.00919323693960905, + -0.00964757427573204, + -0.008710503578186035, + 0.01595860719680786, + -0.018798217177391052, + -0.033280227333307266, + -0.03589266911149025, + -0.01715124398469925, + -0.009903139434754848, + 0.04875610023736954, + 0.020743349567055702, + 0.028495484963059425, + 0.024065693840384483, + 0.010513655841350555, + -0.015873419120907784, + 0.018642038106918335, + -0.014340030029416084, + -0.036829739809036255, + 0.012700155377388, + 0.01558945793658495, + -0.008362650871276855, + -0.009321019053459167, + -0.007290698122233152, + -0.004053542856127024, + 0.015291298739612103, + -0.022191550582647324, + -0.011230656877160072, + 0.03725568205118179, + -0.01597280614078045, + -0.030355429276823997, + 0.02443484216928482, + -0.04108915477991104, + 0.023440979421138763, + 0.018145106732845306, + 0.01847166195511818, + -0.02186499536037445, + -0.004454637877643108, + 0.037397660315036774, + 0.013977979309856892, + -0.009171939454972744, + 0.02984429895877838, + 0.008895077742636204, + -0.002292984863743186, + -0.0018111387034878135, + 0.007109673228114843, + -0.006765370257198811, + -0.02664973773062229, + 0.015049932524561882, + -0.032030798494815826, + -0.020714953541755676, + 0.014623990282416344, + -0.02623799443244934, + 0.016711104661226273, + 0.03362097963690758, + 0.0005515054799616337, + -0.005420105531811714, + -0.014751773327589035, + 0.010265189222991467, + 0.018244493752717972, + -0.01558945793658495, + 0.012245817109942436, + 0.0034749724436551332, + -0.011826975271105766, + -0.003645349061116576, + 0.016128983348608017, + -0.00605901749804616, + 0.02338418737053871, + -0.00784442201256752, + 0.028694257140159607, + -0.040861986577510834, + 0.029063407331705093, + -0.025641676038503647, + -0.00333299208432436, + 0.006190349347889423, + -0.024321258068084717, + -0.009789555333554745, + 0.009888941422104836, + -0.011237756349146366, + -0.04426951706409454, + -0.019110573455691338, + 0.018088314682245255, + 0.011457826010882854, + 0.015987003222107887, + -0.020388398319482803, + -0.010875705629587173, + -0.01575983501970768, + 0.026919500902295113, + 0.002356876153498888, + 0.01595860719680786, + 0.009661772288382053, + -0.004067741334438324, + 0.03839152678847313, + 0.010755022056400776, + 0.008554324507713318, + 0.02270268090069294, + 0.011379736475646496, + -0.01405606884509325, + -0.02423606999218464, + -0.022532304748892784, + 0.007304896134883165, + -0.01798892766237259, + 0.007145168259739876, + -0.03353579342365265, + 0.006350077688694, + -0.01544747781008482, + -0.026010826230049133, + -0.027033085003495216, + 0.01722223311662674, + 0.01859944500029087, + 0.016270965337753296, + 0.043843574821949005, + -0.0210983008146286, + 0.008234868757426739, + -0.016015399247407913, + 0.03705690801143646, + 0.013282274827361107, + 0.010946695692837238, + -0.00034141872311010957, + 0.010321982204914093, + 0.00621519610285759, + 0.03055420145392418, + -0.003801527665928006, + -0.02214895747601986, + -0.023710742592811584, + 0.019976655021309853, + 0.0050048124976456165, + 0.01963590271770954, + -0.04032246023416519, + 0.0011074478970840573, + -0.024874981492757797, + 0.001026696409098804, + 0.025386111810803413, + -0.028907228261232376, + 0.011464924551546574, + -7.79783513280563e-5, + 0.02679171971976757, + 0.023554563522338867, + 0.010343278758227825, + -0.006580795627087355, + 0.019806278869509697, + -0.03705690801143646, + 0.04052123427391052, + 0.0018634939333423972, + 0.027473226189613342, + 0.03753964230418205, + -0.024832388386130333, + -0.01977788284420967, + -0.02547129988670349, + 0.02143905498087406, + -0.006609192118048668, + 0.0040854886174201965, + -0.005693417973816395, + -0.01568884402513504, + 0.0032602271530777216, + -0.018571048974990845, + 0.02143905498087406, + -0.0020746898371726274, + -0.005231981165707111, + -0.013076403178274632, + -0.007173564285039902, + 0.0012725001433864236, + 0.03722728416323662, + 0.04179905727505684, + -0.011571410112082958, + 0.04103236272931099, + 0.009455900639295578, + 0.0214532520622015, + 0.023554563522338867, + 0.024406446143984795, + -0.03222957253456116, + 0.015518467873334885, + -0.012224520556628704, + 0.00650625629350543, + 0.0058353981003165245, + -0.01343135442584753, + -0.014907951466739178, + 0.0005097987013868988, + -0.005100649315863848, + -0.004493682645261288, + 0.029247980564832687, + -0.033848147839307785, + -0.005015460774302483, + -0.0007400733302347362, + 0.01659751869738102, + -0.009640475735068321, + 0.010144506581127644, + 0.033081453293561935, + 0.0005763520603068173, + 0.006992539390921593, + 0.0036329259164631367, + -0.039186615496873856, + 0.004160028416663408, + -0.004021597560495138, + 0.0025325771421194077, + -0.0060057747177779675, + 0.013388760387897491, + -0.008824087679386139, + -0.008895077742636204, + -0.020317409187555313, + -0.0001159137609647587, + -0.02936156652867794, + -0.016711104661226273, + 0.029475150629878044, + -0.034671634435653687, + -0.00741138169541955, + -0.0067405239678919315, + 0.01868463307619095, + -0.03810756281018257, + -0.0017312746495008469, + -0.04276452586054802, + 0.010016723535954952, + -0.020430993288755417, + 0.04486583545804024, + -0.008007699623703957, + -0.004759896080940962, + 0.0054520508274436, + -0.017165441066026688, + 0.053498249500989914, + 0.010790517553687096, + -0.006378473713994026, + 0.0003074764972552657, + 0.026010826230049133, + -0.021368063986301422, + 0.01103188470005989, + 0.028850436210632324, + -0.023625554516911507, + 0.003968354780226946, + -0.00969016831368208, + 0.003954156767576933, + 0.018926000222563744, + 0.0030312836170196533, + -0.0017765308730304241, + 0.028012750670313835, + 0.0033542891032993793, + 0.018571048974990845, + -0.042792920023202896, + 0.013694018125534058, + -0.016398746520280838, + 0.02338418737053871, + -0.03373456373810768, + 0.004092587623745203, + -0.008675008080899715, + -0.03773841634392738, + -0.0311789158731699, + 0.011883767321705818, + -0.011968955397605896, + 0.00019810715457424521, + 0.014737575314939022, + 0.005164540372788906, + 0.04358801245689392, + -0.01301251258701086, + 0.005224882159382105, + 0.004415593110024929, + 0.010492358356714249, + -0.016057994216680527, + 0.013530740514397621, + -0.009775357320904732, + 0.022589096799492836, + -0.0020054744090884924, + 0.008462036959826946, + 0.01270725391805172, + 0.026834312826395035, + -0.04878449812531471, + 0.008114185184240341, + -0.005959630943834782, + 0.04142990708351135, + -0.011251954361796379, + -0.011961856856942177, + 0.037596434354782104, + 0.04992034286260605, + -0.006154854316264391, + 0.024889180436730385, + 0.007510768249630928, + 0.004642762243747711, + -0.003996750805526972, + -0.001390521414577961, + 0.022688481956720352, + -0.005278124939650297, + 0.050999391824007034, + -7.223812190204626e-6, + 0.0073616886511445045, + -0.008824087679386139, + -0.01644134148955345, + -0.016483934596180916, + 0.015305496752262115, + 0.001854620175436139, + 0.002007249277085066, + 0.03478522226214409, + 0.005551437381654978, + 0.008249066770076752, + 0.011330042965710163, + 0.02562747895717621, + 0.015262902714312077, + -0.008774394169449806, + -0.01797473058104515, + 0.00592058664187789, + -0.0009104498894885182, + -0.037653226405382156, + -0.0067689199931919575, + -0.026678133755922318, + -0.06292575597763062, + 0.0202748142182827, + -0.013402958400547504, + 0.016881480813026428, + -0.011408132500946522, + 0.03566550090909004, + 0.0021332569885998964, + -0.020842736586928368, + -0.0032211823854595423, + 0.020374201238155365, + 0.000839903368614614, + 0.001487245666794479, + -0.008582720533013344, + 0.017719166353344917, + -0.022475512698292732, + 0.00650625629350543, + -0.0058637941256165504, + -0.022745274007320404, + -0.01902538537979126, + 0.0009823275031521916, + -0.022177353501319885, + 0.020714953541755676, + 0.02748742327094078, + -0.02500276453793049, + -0.011535914614796638, + 0.028225721791386604, + -0.0081922747194767, + -0.023242207244038582, + 0.021680422127246857, + -0.0070919254794716835, + 0.005423654802143574, + -0.0051609911024570465, + 0.02173721417784691, + -0.011571410112082958, + 0.011543014086782932, + 4.6642810048069805e-5, + -0.012458788231015205, + 0.03989651799201965, + 0.004259414970874786, + -0.0028342856094241142, + 0.002647936111316085, + 0.01496474351733923, + 0.02868006005883217, + -0.015149318613111973, + -0.0028555826283991337, + 0.026124410331249237, + -0.0067689199931919575, + 0.0397261418402195, + 0.0047492473386228085, + -0.00635362695902586, + -0.0038725179620087147, + 0.009519792161881924, + -0.0013355039991438389, + -0.012614966370165348, + 0.03012826107442379, + 1.5695499314460903e-5, + -0.026223797351121902, + -0.046541206538677216, + 0.034614842385053635, + -0.017747562378644943, + -0.041202738881111145, + -0.005480446852743626, + -0.025741063058376312, + 0.007965105585753918, + -0.003719888860359788, + 0.006857657805085182, + 0.026010826230049133, + 0.039129823446273804, + 0.06650366634130478, + 0.02714667096734047, + -0.022191550582647324, + -0.006183250341564417, + 0.04145830497145653, + -0.02875104919075966, + 0.013835999183356762, + -0.02805534563958645, + 0.03722728416323662, + 0.011237756349146366, + 0.01527710072696209, + 0.03776681050658226, + -0.03239994868636131, + -0.04174226522445679, + 0.010016723535954952, + 0.001467723399400711, + 0.005544338375329971, + -0.008348452858626842, + 0.0023178316187113523, + 0.029588734731078148, + 0.025741063058376312, + -0.004660509526729584, + -0.004884128924459219, + 0.0021705268882215023, + 0.016299361363053322, + -0.007035133428871632, + 0.0005688093369826674, + 0.019820475950837135, + 0.0037766811437904835, + 0.0009885391918942332, + -0.0012148205423727632, + -0.028481286019086838, + 0.034188903868198395, + 0.026493560522794724, + -0.010577546432614326, + -0.023284800350666046, + 0.02818312868475914, + 0.017719166353344917, + 0.00664823642000556, + -0.014595594257116318, + 0.01972109079360962, + -0.017946334555745125, + -0.01770496740937233, + -0.03191721439361572, + -0.03964095190167427, + -0.02889302931725979, + 0.009129345417022705, + -0.013360364362597466, + -0.012934423051774502, + -0.009910237975418568, + 0.027728790417313576, + 0.011159666813910007, + -0.01938033662736416, + -0.03805077075958252, + -0.027501622214913368, + 0.005700516980141401, + -0.038363128900527954, + 0.011684994213283062, + 0.0036843938287347555, + 0.026536153629422188, + 0.04330404847860336, + 0.015092526562511921, + 0.008760196156799793, + -0.017889542505145073, + -0.019181564450263977, + 0.08337094634771347, + 0.002697629388421774, + 0.0013931836001574993, + -0.03907303139567375, + -0.01581662707030773, + 0.004557573702186346, + 0.02173721417784691, + 0.0002602236345410347, + 0.010570447891950607, + 0.007766332942992449, + -0.016966668888926506, + 0.025400310754776, + 0.0041280826553702354, + -0.02596823126077652, + 0.011500420048832893, + 0.030667785555124283, + -0.014432316645979881, + -0.01965009979903698, + 0.013672721572220325, + -0.016995064914226532, + -0.00409613735973835, + 0.009164840914309025, + -0.01681048981845379, + -0.026479361578822136, + -0.015731438994407654, + -0.010371674783527851, + -0.018727226182818413, + -0.015532665885984898, + 0.018372274935245514, + 0.0018031522631645203, + -0.023242207244038582, + 0.004855732899159193, + -0.008632414042949677, + 0.022546501830220222, + 0.005434303544461727, + -0.029957883059978485, + -0.005647274199873209, + -0.003801527665928006, + 0.0033063706941902637, + 0.00650980556383729, + 0.01563205197453499, + 0.02694789692759514, + -0.007468173746019602, + -0.0002486877201590687, + -0.021126696839928627, + 0.023000840097665787, + 0.011635301634669304, + -0.012735649943351746, + 0.0050048124976456165, + 0.012558174319565296, + -0.03768162429332733, + 0.01207544095814228, + -0.0390162393450737, + 0.039044637233018875, + -0.013580434024333954, + -0.01915316842496395, + -0.010336180217564106, + 0.00030259593040682375, + 0.003705690847709775, + 0.03214438259601593, + -0.015930211171507835, + -0.022177353501319885, + -0.015177714638411999, + -0.0222767386585474, + -0.02936156652867794, + 0.007830223999917507, + 0.04568932205438614, + 0.018216097727417946, + -0.03839152678847313, + -0.03069618158042431, + -0.024690408259630203, + 0.019564911723136902, + -0.034529656171798706, + -0.008994463831186295, + -0.005299421958625317, + 0.0013709991471841931, + -0.005828299093991518, + -0.03515436872839928, + 0.00933521706610918, + 0.013672721572220325, + 0.01743520423769951, + -0.009108048863708973, + -0.009640475735068321, + -0.035779085010290146, + -0.02020382322371006, + -0.02325640432536602, + -0.021339667961001396, + -0.015262902714312077, + -0.018798217177391052, + 0.03239994868636131, + 0.0073900846764445305, + -0.009264227002859116, + 0.006996088661253452, + 0.0011615778785198927, + 0.021410658955574036, + 0.013615929521620274, + -0.036829739809036255, + -0.010563348419964314, + -0.01700926385819912, + 0.009555286727845669, + 0.003254902781918645, + 0.01936613954603672, + 0.03569389507174492, + -0.01938033662736416, + -0.026067618280649185, + 0.015305496752262115, + -0.019564911723136902, + -0.023086028173565865, + 0.015120922587811947, + -0.01861364208161831, + 0.0010089488932862878, + 0.024321258068084717, + 0.020076042041182518, + 0.00013166472490411252, + 0.002816538093611598, + -0.011017685756087303, + -0.02395210973918438, + -0.022248342633247375, + -0.02034580521285534, + -0.006271988153457642, + -0.0039577060379087925, + -0.012082539498806, + -0.008412344381213188, + -0.05415135994553566, + -0.015504269860684872, + 0.003430603537708521, + 0.028793644160032272, + 0.004436890594661236, + -0.01804571971297264, + 0.010364576242864132, + 0.017264828085899353, + -0.013126096688210964, + 0.028836237266659737, + 0.007397183682769537, + -0.022518105804920197, + 0.012955719605088234, + 0.031406085938215256, + 0.019422931596636772, + 0.002385272178798914, + -0.015518467873334885, + -0.01059174444526434, + 0.017094451934099197, + -0.0319456122815609, + -0.011926361359655857, + -0.003755384124815464, + 0.0311789158731699, + -0.002669233363121748, + -0.008816988207399845, + 0.03310985118150711, + -0.018926000222563744, + 0.011500420048832893, + -0.020175427198410034, + -0.01722223311662674, + 0.008547225967049599, + 0.01030778419226408, + -0.009001563303172588, + 0.02089952863752842, + -0.009129345417022705, + 0.017051856964826584, + -0.0017942785052582622, + -0.018429068848490715, + 0.0732051432132721, + 0.037113700062036514, + 0.005306520964950323, + -0.003396883374080062, + 0.012139332480728626, + -0.006002225447446108, + -0.018968593329191208, + -0.014041870832443237, + 0.020076042041182518, + -0.010953795164823532, + 0.013963781297206879, + 0.021297072991728783, + 0.001399395172484219, + 0.00021707486303057522, + 0.01666850969195366, + -0.015390685759484768, + -0.0022450664546340704, + 0.0040712906047701836, + 0.013552037999033928, + -0.0018901153234764934, + 0.008497532457113266, + -0.013835999183356762, + 0.049863550812006, + 0.021850798279047012, + -0.00772373890504241, + -0.015319694764912128, + 0.01107447873800993, + 0.00036271580029278994, + -0.00407838961109519, + -0.002949644811451435, + -0.003416405525058508, + 0.014261940494179726, + 0.014567198231816292, + -0.018642038106918335, + -0.008426542393863201, + 0.005072253290563822, + -0.010442664846777916, + 0.012799541465938091, + 0.013026710599660873, + -0.0009486071649007499, + 0.0018617191817611456, + -0.014162554405629635, + -0.020800141617655754, + 0.0009459450375288725, + 0.013353264890611172, + 0.011067379266023636, + -0.008980265818536282, + -0.004181325435638428, + -0.011109973303973675, + -0.02179400622844696, + -0.003737636376172304, + 0.014084464870393276, + 0.00302950874902308, + 0.0087814936414361, + 0.01797473058104515, + 0.033762961626052856, + -0.013871493749320507, + 0.0530439130961895, + 0.026990491896867752, + -0.03489880636334419, + -0.006705028936266899, + 0.005100649315863848, + 0.004837985150516033, + -0.013843097724020481, + 0.004472385626286268, + -0.036545779556035995, + -0.003641799557954073, + -0.0036985918413847685, + 0.0015484747709706426, + 0.012458788231015205, + -0.009477198123931885, + -0.01757718436419964, + 0.0072339060716331005, + 0.0269336998462677, + -0.009952832944691181, + 0.022305134683847427, + -0.011223558336496353, + 0.010045119561254978, + -0.004678257275372744, + -0.007439777720719576, + -0.020601369440555573, + 0.007425579708069563, + -0.007510768249630928, + 0.01086150761693716, + -0.009711465798318386, + -0.05346985533833504, + -0.004231018479913473, + 0.006030621472746134, + 0.010321982204914093, + -0.0114933205768466, + 0.00951269268989563, + 0.01658332161605358, + 0.006733424961566925, + 0.007475272752344608, + -0.013566236011683941, + 0.0050474065355956554, + -0.003162615466862917, + 0.015788231045007706, + 0.011855371296405792, + -0.014389722608029842, + 0.0008261490147560835, + 0.0027863672003149986, + 0.018173502758145332, + -0.013282274827361107, + 0.02041679434478283, + -0.00529587222263217, + 0.0003431934746913612, + 0.003585007507354021, + -0.006044819485396147, + 0.004713752306997776, + 0.011983153410255909, + 0.003663096809759736, + -0.013381661847233772, + 0.04128792881965637, + 0.02741643227636814, + 0.0025219283998012543, + 0.006012873724102974, + -0.021751411259174347, + -0.02229093760251999, + 0.013104799203574657, + -0.0075462632812559605, + -0.007574659306555986, + -0.0023959209211170673, + -0.0018741425592452288, + -0.0037482851184904575, + -0.01611478626728058, + 0.009576584212481976, + -0.01868463307619095, + -0.015262902714312077, + -0.016327757388353348, + -0.020303210243582726, + -0.010506556369364262, + 0.00511839659884572, + 0.013445552438497543, + -0.018485860899090767, + 0.011251954361796379, + -0.014446514658629894, + -0.012891829013824463, + -0.016086390241980553, + -0.0319456122815609, + 0.02346937544643879, + 0.005114847328513861, + -0.022404521703720093, + 0.03237155079841614, + 0.0014215796254575253, + 0.024733001366257668, + 0.004298459272831678, + 0.020317409187555313, + 0.01686728186905384, + 0.007752134930342436, + -0.007013836409896612, + 0.023128623142838478, + 0.013104799203574657, + -0.003453675424680114, + 0.0022770122159272432, + 0.002484658733010292, + 0.0007702441653236747, + 0.0025627478025853634, + 0.0018741425592452288, + 0.010989289730787277, + -0.018698830157518387, + -0.002237967448309064, + -0.011060280725359917, + -0.030043072998523712, + 0.011060280725359917, + -0.007468173746019602, + -0.004110335372388363, + 0.006634038407355547, + -0.00482378713786602, + 0.009761159308254719, + 0.016483934596180916, + -0.014780169352889061, + 0.005601130425930023, + -0.017051856964826584, + 0.0017374862218275666, + -0.015248704701662064, + 0.0005515054799616337, + 0.014070266857743263, + 0.006616291124373674, + -0.016640113666653633, + 0.01888340525329113, + -0.030639389529824257, + 0.021282875910401344, + -0.020714953541755676, + 0.018159305676817894, + -0.008845384232699871, + 0.0028413846157491207, + -0.007418480701744556, + 0.005373961757868528, + -0.04392876476049423, + -0.0016514105955138803, + 0.007709540892392397, + -0.004873480182141066, + -0.00958368368446827, + -0.00784442201256752, + 0.000715670408681035, + -0.010570447891950607, + 0.0012645138194784522, + 0.006538201589137316, + -0.002195373410359025, + 0.0051609911024570465, + -0.010570447891950607, + -0.01392118725925684, + -0.01950811967253685, + -0.021907590329647064, + 0.00019477949535939842, + 0.018727226182818413, + 0.004514979664236307, + -0.018343878909945488, + -0.022887255996465683, + -0.008071591146290302, + -0.00014009480946697295, + 0.014936347492039204, + -0.018911801278591156, + -0.026479361578822136, + -0.008533027954399586, + -0.013566236011683941, + -0.011564311571419239, + 0.02582625113427639, + -0.0034749724436551332, + 0.015021536499261856, + -0.009108048863708973, + 0.01148622203618288, + 0.013509443961083889, + 0.028410296887159348, + 0.006463661789894104, + 0.02950354665517807, + -0.02936156652867794, + -0.012771145440638065, + 0.016086390241980553, + 0.03597785532474518, + 0.0021705268882215023, + 0.007986403070390224, + -0.005231981165707111, + -0.007418480701744556, + -0.02236192673444748, + 0.013772107660770416, + 0.006286186166107655, + -0.00558693241328001, + -0.02534351870417595, + 0.007028034422546625, + 0.018968593329191208, + -0.02124028094112873, + -0.004777643363922834, + -0.015504269860684872, + 0.023100225254893303, + 0.008951869793236256, + 0.014737575314939022, + -0.005767957307398319, + 0.009001563303172588, + 0.027033085003495216, + -0.0011109974002465606, + -0.0016469736583530903, + 0.029276378452777863, + 0.04381518065929413, + 0.00024402896815445274, + 0.005246179178357124, + -0.008462036959826946, + -0.00513614434748888, + 0.013402958400547504, + 0.021992778405547142, + -0.010506556369364262, + 0.03069618158042431, + 0.00362582691013813, + -0.016980867832899094, + -0.010293585248291492, + 0.01706605590879917, + -0.00010443331120768562, + 0.009654673747718334, + -0.01468078326433897, + -0.0004279380664229393, + 0.0033400910906493664, + -0.002463361481204629, + -0.005540788639336824, + -0.015049932524561882, + -0.012693055905401707, + 0.003226506756618619, + 0.004766995087265968, + 0.0002615546982269734, + 0.009711465798318386, + -0.01943712867796421, + -0.017392611131072044, + 0.001781855127774179, + 0.0027739438228309155, + 0.022745274007320404, + -0.002642611972987652, + -0.048898082226514816, + -0.021907590329647064, + -0.019422931596636772, + 0.004064191598445177, + 0.009974129498004913, + -0.009427504613995552, + -0.023838523775339127, + 0.013942484743893147, + -0.017264828085899353, + -0.008028997108340263, + 0.015262902714312077, + -0.014723377302289009, + -0.01770496740937233, + -0.00010864835348911583, + -0.0048770299181342125, + -0.00021119597658980638, + 0.012231619097292423, + 0.015916014090180397, + -0.020942121744155884, + -0.013381661847233772, + 0.016128983348608017, + 0.018414869904518127, + 0.008107085712254047, + 0.03790879249572754, + 0.009846347384154797, + -0.008426542393863201, + 0.020672360435128212, + 0.001500556361861527, + 0.012125134468078613, + 0.0017552338540554047, + 0.023455176502466202, + 0.016838885843753815, + -0.003989651799201965, + 0.0074042826890945435, + -0.02770039439201355, + -0.032059196382761, + -0.016469737514853477, + -0.0024136684369295835, + 0.003613403532654047, + 0.011294548399746418, + -0.0013603506376966834, + -0.008405244909226894, + 0.019337743520736694, + -0.019451327621936798, + -0.005647274199873209, + -0.021339667961001396, + -0.009285524487495422, + -0.011117072775959969, + -0.014112860895693302, + 0.012444590218365192, + 0.005455600563436747, + 0.010605942457914352, + -0.019593307748436928, + 0.0183864738792181, + -0.015348090790212154, + -0.02158103510737419, + 0.009363613091409206, + 0.003400432877242565, + -0.029730714857578278, + -0.00393995875492692, + -0.01460979226976633, + 0.004273612983524799, + -0.01499314047396183, + 0.02275947295129299, + 0.019252555444836617, + -0.0035335395950824022, + -0.010570447891950607, + 0.0027189264073967934, + 0.00045655600843019783, + 0.00556918466463685, + -0.00664823642000556, + 0.016483934596180916, + -0.01010191161185503, + 0.011912163347005844, + -0.03095174767076969, + 0.007581758312880993, + 0.0008208247018046677, + 0.017392611131072044, + 0.005945432931184769, + -0.0011438303627073765, + -0.024761397391557693, + 0.04049283638596535, + -0.0002252831036457792, + 0.02048778533935547, + -0.005263926927000284, + -0.036545779556035995, + -0.021297072991728783, + -0.005040307529270649, + -0.01930934749543667, + 0.0013745486503466964, + -0.013580434024333954, + -0.007617253344506025, + -0.007290698122233152, + 0.010755022056400776, + 0.00909385085105896, + -0.016753697767853737, + -0.015873419120907784, + -0.010847309604287148, + -0.0058070020750164986, + -0.0053562140092253685, + -0.013828899711370468, + -0.0050438567996025085, + -0.022745274007320404, + 0.0019114123424515128, + 0.003405757015570998, + 0.0017525716684758663, + -0.011479122564196587, + 6.278199725784361e-5, + 0.006591444369405508, + -0.018102513626217842, + 0.05122656002640724, + -0.03660257160663605, + 0.0048486338928341866, + -0.014978941529989243, + 0.005973829422146082, + -0.024761397391557693, + -0.0023994704242795706, + -0.016057994216680527, + -0.008241967298090458, + -0.009945733472704887, + -0.011273250915110111, + -0.016540726646780968, + 0.027927562594413757, + -0.017548788338899612, + 0.02548549883067608, + 0.02998628094792366, + -0.0020196724217385054, + 0.0023000838700681925, + 0.006868306547403336, + 0.0025609731674194336, + -0.0114933205768466, + -0.0015653349692001939, + -0.005143243353813887, + 0.006307483185082674, + -0.01915316842496395, + 0.030213449150323868, + 0.014219346456229687, + 0.008518829941749573, + 0.004419142846018076, + 0.012047044932842255, + -0.014219346456229687, + 0.020019249990582466, + 0.046541206538677216, + -0.05122656002640724, + -0.0012281312374398112, + 0.009065454825758934, + 0.008398146368563175, + -0.01121645886451006, + -0.0020729152020066977, + -0.007950907573103905, + 0.0027189264073967934, + -0.027856573462486267, + -0.00843364093452692, + -0.002065816195681691, + 0.018514256924390793, + -0.007191312033683062, + 0.014148356392979622, + -0.0012636263854801655, + 0.0072339060716331005, + 0.015916014090180397, + -0.006694380193948746, + -0.0011819875799119473, + 0.013828899711370468, + -0.019735287874937057, + -0.02033160626888275, + -0.004983515478670597, + -0.03623342141509056, + 0.002504180883988738, + -0.0013585758861154318, + 0.00023781732306815684, + -0.006012873724102974, + -0.02026061713695526, + -0.012714353390038013, + -0.0014437640784308314, + 0.01496474351733923, + 0.006137106567621231, + -0.002200697548687458, + -0.023157019168138504, + -0.03012826107442379, + -0.00468535628169775, + 0.0018404221627861261, + -0.014446514658629894, + -0.003570809494704008, + 0.0011491546174511313, + -0.0028342856094241142, + -0.019408732652664185, + -0.009065454825758934, + -0.0010870381956920028, + -0.0172080360352993, + -0.00592058664187789, + -0.015319694764912128, + 0.00560468016192317, + 0.02429286204278469, + -0.0030898505356162786, + -0.002319606253877282, + -0.005097099579870701, + -0.0013284049928188324, + 0.0010967992711812258, + 0.0036488985642790794, + -0.006090963259339333, + -0.006680182181298733, + 0.0037802306469529867, + 0.012622065842151642, + -0.0014553000219166279, + -0.016498133540153503, + -0.006662434432655573, + -0.007418480701744556, + -0.01770496740937233, + 0.008533027954399586, + 0.00023692994727753103, + 0.018216097727417946, + 0.008185175247490406, + 0.007823125459253788, + -0.0013328419299796224, + 0.010676933452486992, + -0.0011562536237761378, + -0.030582597479224205, + 0.009938634932041168, + -0.0036329259164631367, + -0.010875705629587173, + -0.0007973092142492533, + 0.05483286455273628, + -0.002539676148444414, + -0.007081277202814817, + -0.0030525806359946728, + 0.003253128146752715, + -0.014119960367679596, + -0.00902285985648632, + 0.03214438259601593, + 0.004617915488779545, + -0.009768257848918438, + -0.007042232435196638, + -0.02491757646203041, + 0.007950907573103905, + 0.0028254117351025343, + -0.033024661242961884, + 0.009938634932041168, + -0.004138731397688389, + 0.02102731168270111, + 0.011578509584069252, + 0.013963781297206879, + 0.019593307748436928, + -0.0018830163171514869, + -0.011826975271105766, + 0.011514618061482906, + -0.012487184256315231, + 0.012756947427988052, + 0.00797930359840393, + 0.012047044932842255, + -0.0035015938337892294, + 0.023980505764484406, + 0.02361135557293892, + 0.007858620025217533, + -0.030440617352724075, + -0.002887528156861663, + -0.0017339367186650634, + -0.006708578206598759, + 0.0037908791564404964, + 0.018130909651517868, + 0.002686980878934264, + 0.021069904789328575, + -0.01513512060046196, + -0.02873685210943222, + 0.03393333777785301, + 0.017037659883499146, + -0.013481047935783863, + 0.005948982667177916, + 0.013509443961083889, + -0.005846046842634678, + -0.003812176175415516, + 0.009129345417022705, + -0.01867043413221836, + -0.01783275045454502, + 0.008895077742636204, + 0.014403920620679855, + 0.0111383693292737, + -0.0011819875799119473, + 0.010201298631727695, + -0.010392972268164158, + -0.0006260452209971845, + 0.0036151784006506205, + -0.021495847031474113, + -0.01820189878344536, + -0.02270268090069294, + -0.017619779333472252, + 0.005207134410738945, + 0.010492358356714249, + -0.007901214063167572, + -0.02562747895717621, + 0.004429791588336229, + 0.0006668646237812936, + 0.0011500419350340962, + 0.012061242945492268, + 0.00010620806278893724, + -0.012018648907542229, + -0.022688481956720352, + 0.01374371163547039, + 0.0245200302451849, + 0.008873781189322472, + 0.005164540372788906, + -0.006069666240364313, + -0.0031324445735663176, + -0.0018972143298014998, + -0.01957911066710949, + -0.01715124398469925, + 0.023568762466311455, + -0.0037766811437904835, + 0.03373456373810768, + -0.021268676966428757, + 0.013445552438497543, + -0.014638189226388931, + -0.017406808212399483, + 0.008653710596263409, + -0.018173502758145332, + 0.000401760422391817, + 0.0009512692922726274, + -0.009967030957341194, + -0.009604980237782001, + -0.00860401801764965, + -0.005395258776843548, + 0.007943808101117611, + 0.017179640009999275, + 0.006843459792435169, + 0.016327757388353348, + -0.00013843098713550717, + 0.00999542698264122, + -0.005263926927000284, + 0.02700468897819519, + 0.016838885843753815, + -0.025315122678875923, + -0.006502706557512283, + -0.005462699569761753, + -0.020118635147809982, + -0.0013843098422512412, + -0.0031413184478878975, + -0.02068655751645565, + 0.007347490638494492, + 0.007865719497203827, + 0.0016043796204030514, + -0.012827937491238117, + -0.016995064914226532, + -0.010570447891950607, + 0.010364576242864132, + 0.0051893871277570724, + -0.0005901064141653478, + 0.017236432060599327, + 0.0036063045263290405, + 0.0009415081585757434, + -0.0010737275006249547, + -0.01287763100117445, + 0.00617615133523941, + 0.010648536495864391, + 0.01563205197453499, + 0.01203994546085596, + -0.007049331441521645, + -0.0037163393571972847, + -0.004344603046774864, + 0.019280951470136642, + 0.006392671726644039, + -0.002172301523387432, + -0.014048969373106956, + 0.018585246056318283, + 0.002237967448309064, + -0.005594031419605017, + 0.02256070077419281, + -0.017804354429244995, + -0.006758271250873804, + -0.008440740406513214, + -0.012728551402688026, + 0.02889302931725979, + -0.01666850969195366, + 0.03719889000058174, + -0.029957883059978485, + -0.008873781189322472, + 0.017804354429244995, + 0.0013230807380750775, + 0.013701117597520351, + -0.0066446871496737, + 0.012125134468078613, + 0.005771507043391466, + -0.005934784654527903, + 0.02680591680109501, + 0.007024484686553478, + -0.01679629273712635, + -0.007216158322989941, + -0.016753697767853737, + 0.01977788284420967, + 0.004816688131541014, + 0.014638189226388931, + 0.019465524703264236, + 0.013814701698720455, + -0.0024243169464170933, + -0.008405244909226894, + -0.007453975733369589, + -0.01840067096054554, + 0.019422931596636772, + 0.021211884915828705, + -0.005100649315863848, + 0.017875343561172485, + -0.006140656303614378, + 0.0172080360352993, + 0.0027278002817183733, + -0.010265189222991467, + 0.008050293661653996, + -0.020374201238155365, + 0.010329080745577812, + -0.016554925590753555, + -9.217640035785735e-5, + -0.002914149546995759, + -0.0053420159965753555, + 0.011457826010882854, + -0.017506195232272148, + 0.012267114594578743, + -0.014538802206516266, + 0.012224520556628704, + -0.01162820216268301, + -0.020601369440555573, + 0.00741138169541955, + 0.02603922225534916, + 0.0012263564858585596, + 0.0012902477756142616, + -0.003364937612786889, + 0.002065816195681691, + 0.00933521706610918, + -0.0013221933040767908, + -0.0008798353374004364, + -0.009612079709768295, + -0.020800141617655754, + -0.02220574952661991, + -0.007290698122233152, + 0.008852483704686165, + -0.02547129988670349, + -0.000858538318425417, + 0.015575259923934937, + 0.014978941529989243, + -0.015049932524561882, + 0.012835036963224411, + 0.01743520423769951, + 0.012522679753601551, + 0.026550352573394775, + -0.005132594611495733, + 0.010691131465137005, + 0.011649499647319317, + 0.010513655841350555, + -0.008085789158940315, + 0.00558693241328001, + 0.006673083174973726, + -0.007216158322989941, + 0.012728551402688026, + 0.010967993177473545, + -0.017406808212399483, + 0.029276378452777863, + 0.0035193413496017456, + -0.016001202166080475, + 0.015859220176935196, + 0.00802189763635397, + 0.020530378445982933, + 0.013381661847233772, + -0.003451900789514184, + -0.00650625629350543, + 0.001744585344567895, + -0.0027739438228309155, + 0.023455176502466202, + -0.017307421192526817, + 0.005700516980141401, + 0.0053420159965753555, + -0.0002248394157504663, + 0.005090000573545694, + -0.013424255885183811, + -0.007950907573103905, + -3.058681249967776e-5, + -0.003194560995325446, + -0.012423292733728886, + -0.02068655751645565, + 0.014297435991466045, + 0.03345060348510742, + 0.004259414970874786, + 0.016909876838326454, + 0.01610058732330799, + 0.016554925590753555, + -0.006321681663393974, + -0.01450330764055252, + -0.008873781189322472, + -0.006467211525887251, + 0.010542051866650581, + 0.007145168259739876, + 0.015603655949234962, + -0.00892347376793623, + -0.0067547219805419445, + 0.01460979226976633, + -0.0007604830316267908, + 0.006875405553728342, + 0.011322944425046444, + 0.009363613091409206, + 0.00196110550314188, + -0.0029389963019639254, + -0.0019770783837884665, + 0.004894777666777372, + -0.009867643937468529, + 0.003982552792876959, + -0.00850463192909956, + -0.01708025299012661, + 0.016838885843753815, + 0.0004778530856128782, + -0.011259052902460098, + -0.0020036997739225626, + -0.03242834284901619, + -0.01777595840394497, + -0.012274213135242462, + -0.006673083174973726, + 0.0015200786292552948, + 0.0010488808620721102, + 0.0008390159928239882, + -0.010116110555827618, + 0.012238718569278717, + -0.0017206261400133371, + -0.006087413523346186, + -0.0004756346461363137, + -0.0016948921838775277, + 0.017875343561172485, + -0.011379736475646496, + -0.005544338375329971, + -0.022546501830220222, + -0.0037944286596029997, + -0.008966067805886269, + -0.005814101081341505, + -0.0029833652079105377, + 0.023086028173565865, + -0.00014541907876264304, + -0.02118348889052868, + 0.020601369440555573, + 0.004365900065749884, + -0.010343278758227825, + -0.00015018874546512961, + -0.004142280668020248, + 0.003364937612786889, + -0.019053781405091286, + 0.011188062839210033, + 0.01513512060046196, + -0.008135482668876648, + 0.0011580283753573895, + -0.005618878174573183, + 0.00895896926522255, + 0.0136443255469203, + 0.009122246876358986, + 0.007645649369806051, + 0.002443839330226183, + 0.01929514855146408, + 0.02229093760251999, + 0.026678133755922318, + 1.885678466351237e-5, + 0.01575983501970768, + -0.0047066533006727695, + -0.0032761998008936644, + 0.0015396010130643845, + -0.009214534424245358, + 0.026337381452322006, + 0.002466910984367132, + -0.00635362695902586, + -0.018485860899090767, + 0.0006136219599284232, + -0.019451327621936798, + -0.010371674783527851, + 0.003244254272431135, + -0.002935446798801422, + -0.008994463831186295, + 0.02283046394586563, + 0.010634338483214378, + -0.003529990091919899, + -6.333660712698475e-5, + 0.020501982420682907, + -0.001252090441994369, + -0.009313920512795448, + 0.011124171316623688, + -0.006708578206598759, + -0.009207434952259064, + -0.008412344381213188, + 0.003982552792876959, + -0.002530802274122834, + 0.007084826473146677, + -0.0016043796204030514, + -0.01859944500029087, + 0.025428706780076027, + -0.013239680789411068, + -0.011358438991010189, + -0.004908975679427385, + 0.004674707539379597, + 0.009967030957341194, + 0.01659751869738102, + -0.004632113501429558, + -0.0018705929396674037, + 0.00470310403034091, + -0.026294786483049393, + -0.009789555333554745, + -0.014709179289638996, + -0.008305858820676804, + 0.011791479773819447, + 0.0029176990501582623, + 0.008845384232699871, + 0.0028662311378866434, + -0.0039293100126087666, + 0.028921427205204964, + 0.004742148332297802, + -0.018840812146663666, + 0.0005333142471499741, + 0.010598843917250633, + 0.01901118829846382, + -0.007922511547803879, + 0.025499695912003517, + -0.01625676639378071, + -0.027530018240213394, + -0.006793766748160124, + 0.017790155485272408, + 0.011706291697919369, + -0.011443627998232841, + -0.0014189175562933087, + -0.016569122672080994, + -0.009612079709768295, + 0.004443989600986242, + 0.008163878694176674, + -0.005317169241607189, + 0.001441102009266615, + -0.005721813999116421, + -0.001629226142540574, + 0.007223257329314947, + -0.006829261779785156, + -0.026152806356549263, + 0.0005470686010085046, + 0.005775056313723326, + 0.022603293880820274, + -0.014482010155916214, + 0.011401033960282803, + -0.0014189175562933087, + 0.0030348331201821566, + 0.01103898324072361, + 0.007028034422546625, + 0.00725165382027626, + 0.020885329693555832, + 0.007766332942992449, + 0.01970689184963703, + -0.0036701958160847425, + 0.030213449150323868, + 0.0025059557519853115, + 0.023781731724739075, + 0.01902538537979126, + 0.00439074682071805, + -0.003498044330626726, + 0.02562747895717621, + 0.003056130139157176, + 0.001615915447473526, + 0.02673492766916752, + -0.006225844379514456, + -0.016853084787726402, + 0.004174226429313421, + 0.007290698122233152, + -0.012678857892751694, + -0.017108649015426636, + 0.003439477412030101, + -0.010960893705487251, + -0.00982504989951849, + 0.015646250918507576, + -0.023128623142838478, + -0.0050048124976456165, + 0.005856695119291544, + 0.019763683900237083, + 0.013992177322506905, + 0.024619417265057564, + 0.005565635394304991, + 0.017804354429244995, + 0.0017978280084207654, + -0.008043195120990276, + 0.0020782395731657743, + 0.02581205405294895, + 0.02464781329035759, + 0.0041280826553702354, + -0.027799779549241066, + -0.02589724212884903, + 4.2261381167918444e-5, + 0.00968306977301836, + 0.0199198629707098, + -0.02666393667459488, + 0.01040717028081417, + -0.0026408371049910784, + 0.012437490746378899, + -0.010499457828700542, + 0.006843459792435169, + 0.02207796648144722, + 0.016554925590753555, + 0.008547225967049599, + -0.009498494677245617, + 0.006847009062767029, + -0.018017323687672615, + 0.008270363323390484, + 0.020927924662828445, + -0.014879555441439152, + 0.003659547306597233, + 0.01847166195511818, + -0.016895677894353867, + -0.012423292733728886, + 0.004820237867534161, + -0.010542051866650581, + 0.003336541587486863, + -0.002426091581583023, + -0.011912163347005844, + 0.004674707539379597, + 0.015163516625761986, + -0.03137768805027008, + -0.01040717028081417, + 0.021907590329647064, + -0.0036808443255722523, + -0.006669533438980579, + 0.0015041058650240302, + -0.00167093297932297, + -0.00482378713786602, + 0.004561123438179493, + -0.010080615058541298, + -0.005895739886909723, + 0.016498133540153503, + 0.04463866725564003, + -0.004387197084724903, + -0.0006460112635977566, + 0.015717240050435066, + -0.01437552459537983, + -0.019181564450263977, + 0.00556918466463685, + 0.012054143473505974, + 0.002646161476150155, + -0.0017179639544337988, + 0.02179400622844696, + 0.01402057334780693, + 0.016682708635926247, + 0.01554686389863491, + 0.016853084787726402, + -0.024619417265057564, + 0.012096737511456013, + 0.004621465224772692, + 0.0023320296313613653, + 0.000637581164482981, + 0.000559491862077266, + 0.032059196382761, + 0.001495232107117772, + 0.006516904570162296, + -0.029333170503377914, + -0.005675670225173235, + -0.0014508632011711597, + -0.0007959781214594841, + -0.0027970157098025084, + 0.013992177322506905, + 0.0036666463129222393, + -0.014737575314939022, + 0.0037021413445472717, + -0.0007609266904182732, + 0.014212246984243393, + -0.00270650302991271, + -0.0004352589603513479, + 0.003001112723723054, + 0.02104150876402855, + 0.005924135912209749, + 0.002702953526750207, + 0.03597785532474518, + -0.022191550582647324, + -7.182216359069571e-5, + 0.002186499536037445, + 0.022035371512174606, + -0.022404521703720093, + -0.020785944536328316, + -0.010854409076273441, + 0.004188424441963434, + -0.024491634219884872, + -0.009974129498004913, + 0.0021226084791123867, + -0.012827937491238117, + -0.0008651936077512801, + 0.030781371518969536, + -0.00922873243689537, + 0.012416194193065166, + -0.022092165425419807, + 0.00497996574267745, + -0.015376487746834755, + -0.006474310532212257, + 0.024690408259630203, + -0.017236432060599327, + -0.014361326582729816, + 0.003451900789514184, + 0.004972866736352444, + -0.009668871760368347, + -0.005732462275773287, + 0.024676209315657616, + 0.01419095043092966, + 0.0033897843677550554, + -0.010932497680187225, + -0.0002322712098248303, + -0.019323544576764107, + -0.025769459083676338, + -0.011819875799119473, + 0.010946695692837238, + 0.0013248554896563292, + -0.0210983008146286, + -0.015916014090180397, + 0.0036027550231665373, + 0.01659751869738102, + -0.0005945432931184769, + 0.003428828902542591, + -0.014780169352889061, + 0.000747616053558886, + -0.0067405239678919315, + 0.024463238194584846, + 0.007524966262280941, + 0.01152881607413292, + 0.0048486338928341866, + -0.03978293389081955, + 0.011961856856942177, + -0.010733725503087044, + -0.014453614130616188, + -0.0017037659417837858, + 0.013835999183356762, + -0.00969016831368208, + -0.005760858301073313, + -0.007496570236980915, + -0.013069304637610912, + -0.018216097727417946, + 0.005696967244148254, + 0.0030028873588889837, + 0.005505293607711792, + -0.0026301885955035686, + -0.004014498554170132, + -0.006229394115507603, + 0.010336180217564106, + -0.01825869083404541, + -0.005288773216307163, + 0.0026017925702035427, + -0.001003624638542533, + -0.003379135625436902, + 0.01659751869738102, + -0.022333530709147453, + -0.005938333924859762, + -0.006736974231898785, + 0.028779445216059685, + -0.024690408259630203, + 0.017023460939526558, + -0.0029620679561048746, + -0.01625676639378071, + -0.008731800131499767, + 0.017662372440099716, + 0.01658332161605358, + 0.0033170192036777735, + -0.012238718569278717, + 0.0029247980564832687, + 0.015674646943807602, + 0.01558945793658495, + -0.014765971340239048, + 0.01238779816776514, + 0.01120936032384634, + -0.011748885735869408, + -0.04003849998116493, + -0.009399108588695526, + -0.009931535460054874, + -0.02819732576608658, + 0.006080314517021179, + 0.011642400175333023, + -0.006634038407355547, + 0.0034270540345460176, + -0.019905665889382362, + -0.013374562375247478, + 0.003425279399380088, + 0.00950559414923191, + -0.006499156821519136, + 0.009739861823618412, + -0.002969166962429881, + -0.0132893742993474, + 0.00856852252036333, + -0.01426903996616602, + -0.009399108588695526, + -0.025428706780076027, + -0.0006366937886923552, + 0.0026497109793126583, + -0.0017960532568395138, + 0.024392249062657356, + -0.025939835235476494, + 0.028566475957632065, + -0.00302950874902308, + -0.015461675822734833, + -0.018741425126791, + -0.0043694498017430305, + 0.014737575314939022, + -0.0032939473167061806, + -0.002752646803855896, + 0.02743063122034073, + -0.001781855127774179, + 0.007773431949317455, + 0.013530740514397621, + 0.0033915590029209852, + 0.020785944536328316, + -0.022503908723592758, + 0.010570447891950607, + -0.0008891528123058379, + 0.00271537690423429, + -0.011443627998232841, + -0.01316159125417471, + -0.002781042829155922, + -0.03694332391023636, + 0.0009947508806362748, + -0.009867643937468529, + -0.0073758866637945175, + -0.007482371758669615, + -1.0551480045251083e-5, + 0.020161230117082596, + 0.0004057536134496331, + -0.006165503058582544, + -0.013736613094806671, + 0.009569484740495682, + -0.016540726646780968, + -0.020927924662828445, + -0.017449403181672096, + 0.0018049270147457719, + 0.03478522226214409, + 0.009079652838408947, + -0.00499771349132061, + -0.007439777720719576, + -0.015731438994407654, + -0.0047208513133227825, + -0.02214895747601986, + -0.011621103622019291, + 0.006825712043792009, + -0.009065454825758934, + -0.0029833652079105377, + -0.008234868757426739, + 0.018244493752717972, + -0.005906388629227877, + 0.01301251258701086, + 0.0010843760101124644, + 0.016782093793153763, + 0.00868210755288601, + -0.0020977617241442204, + -0.0047208513133227825, + -0.014524604193866253, + -0.023242207244038582, + 0.008816988207399845, + 0.005480446852743626, + -0.0006708578439429402, + 0.010613041929900646, + 0.007187762297689915, + -0.015333892777562141, + -0.0035157918464392424, + 0.016299361363053322, + 0.008320056833326817, + -0.003737636376172304, + 0.004561123438179493, + 0.0327690988779068, + 0.0035796831361949444, + 0.011266152374446392, + 0.01346684992313385, + 0.017165441066026688, + -0.011947658844292164, + 0.01190506387501955, + -0.009257128462195396, + -0.029617130756378174, + 0.0013736612163484097, + -0.002844934118911624, + 0.015362289734184742, + 0.006009324453771114, + -0.022858859971165657, + -0.017193837091326714, + -0.0038192751817405224, + 0.01298411563038826, + 0.00589928962290287, + -0.012721451930701733, + -0.015518467873334885, + 0.0026071167085319757, + -0.0020356453023850918, + 0.027331244200468063, + -0.010932497680187225, + -0.0099599314853549, + 0.02097051963210106, + 0.011330042965710163, + 0.010847309604287148, + -0.012955719605088234, + -0.003088075667619705, + 0.007468173746019602, + 0.014141256920993328, + 0.027813978493213654, + 0.006573696620762348, + 0.016853084787726402, + -0.003194560995325446, + 0.016682708635926247, + -0.015419081784784794, + -0.0003147973620798439, + 0.0033578386064618826, + -0.01672530174255371, + 0.0005390821606852114, + 0.02486078441143036, + 0.005984477698802948, + -0.005164540372788906, + -0.0033951085060834885, + -0.0005071365740150213, + 0.007226807065308094, + -0.0061335572972893715, + -0.002168752020224929, + -0.0021847249008715153, + 0.018840812146663666, + 0.023852722719311714, + -0.007887016050517559, + 0.0011979604605585337, + -0.04415593296289444, + 0.008753097616136074, + -0.027544215321540833, + -0.016682708635926247, + 0.010953795164823532, + 0.0010959119535982609, + 0.020147031173110008, + 0.02054457738995552, + 0.012728551402688026, + -0.004195523448288441, + -0.030838163569569588, + 0.00592058664187789, + 0.01257237233221531, + 0.006321681663393974, + 0.007397183682769537, + 0.0007582645630463958, + -0.013026710599660873, + 0.010705329477787018, + 0.005909937899559736, + -0.00933521706610918, + 0.0019717540126293898, + -0.02297244407236576, + -0.004774094093590975, + 0.011826975271105766, + -0.016469737514853477, + -0.007290698122233152, + -0.00452917767688632, + 0.007730837911367416, + 0.01252977829426527, + 0.015220308676362038, + 0.007347490638494492, + -0.012487184256315231, + 0.0029212485533207655, + 0.007553362287580967, + 0.0030756525229662657, + -0.009086751379072666, + 0.005775056313723326, + 0.013942484743893147, + -0.016696905717253685, + -0.016001202166080475, + 0.011514618061482906, + -0.017321620136499405, + -0.04693875089287758, + -0.003947057761251926, + -0.0030525806359946728, + -0.005040307529270649, + 0.01388569176197052, + -0.002463361481204629, + -0.013906989246606827, + 0.013587533496320248, + 0.004220370203256607, + 0.01847166195511818, + 0.004561123438179493, + -0.03222957253456116, + -0.005842497106641531, + 0.0027721691876649857, + 0.012366500683128834, + -0.0022308684419840574, + 0.017662372440099716, + -0.04020887613296509, + -0.012203223071992397, + -0.004380098078399897, + -0.010009624995291233, + -0.001827998785302043, + -0.012998313643038273, + 0.005739561282098293, + 0.002103086095303297, + -0.010946695692837238, + -0.013459750451147556, + 0.015930211171507835, + 0.008028997108340263, + 0.014396822080016136, + -0.022021174430847168, + 0.01409156434237957, + -0.03186042234301567, + 0.0006060792366042733, + -0.001081713824532926, + 0.01235230267047882, + 0.0014934573555365205, + 0.004656960256397724, + 0.024491634219884872, + -0.013963781297206879, + 0.032655514776706696, + -0.019124772399663925, + -0.0037269878666847944, + -0.011578509584069252, + 0.0062613398768007755, + -0.02478979341685772, + -0.010378774255514145, + -0.012700155377388, + 0.0008940334082581103, + 0.009207434952259064, + 0.015390685759484768, + 0.002090662717819214, + -0.0009077877621166408, + -0.016214171424508095, + -0.013083502650260925, + 0.0013248554896563292, + -0.015021536499261856, + -0.00378378015011549, + 0.012948621064424515, + 0.0179179385304451, + -0.00011846497363876551, + 0.010392972268164158, + 0.012629164382815361, + -0.00847623497247696, + -0.0048628319054841995, + 0.024803992360830307, + 0.005700516980141401, + -0.010421368293464184, + 0.025528091937303543, + -0.01243039220571518, + 0.009732762351632118, + -0.004756346344947815, + 0.012146431021392345, + 0.00513969361782074, + -0.01298411563038826, + 0.012373600155115128, + 0.013076403178274632, + 0.017378412187099457, + -0.005302971228957176, + -0.013197086751461029, + -0.01972109079360962, + -0.017932135611772537, + -0.04114594683051109, + -0.01336746383458376, + -0.0016176901990547776, + 0.023369988426566124, + 0.002674557501450181, + -0.0038867159746587276, + 0.0027508719358593225, + 0.0007582645630463958, + 0.021850798279047012, + -0.00454692542552948, + 0.012146431021392345, + -0.016966668888926506, + -0.0066411374136805534, + -0.011443627998232841, + -0.0012094962876290083, + 0.004365900065749884, + 0.006722776219248772, + 0.020501982420682907, + -0.004195523448288441, + -0.001348814694210887, + -0.010996389202773571, + -0.010889903642237186, + -0.01076212152838707, + -0.0070919254794716835, + 0.015092526562511921, + -0.0003642686933744699, + 0.005444951821118593, + -0.0035601607523858547, + -0.00711677223443985, + -0.011443627998232841, + -0.01207544095814228, + -0.00741138169541955, + 0.023895317688584328, + -0.02118348889052868, + 0.02748742327094078, + -0.022106362506747246, + -0.0033063706941902637, + -0.012444590218365192, + -0.0041280826553702354, + 0.013374562375247478, + -0.01333196833729744, + 0.00362582691013813, + -0.016214171424508095, + -0.001560010714456439, + -0.008398146368563175, + 0.012856333516538143, + 0.013040908612310886, + 0.0019185113487765193, + 0.010506556369364262, + 0.007113222498446703, + -0.009037058800458908, + -0.015887616202235222, + -0.014737575314939022, + -0.002369299530982971, + 0.00635362695902586, + -0.0067263259552419186, + 0.008667908608913422, + -0.029617130756378174, + 0.006236493121832609, + 0.013566236011683941, + 0.013303572311997414, + -0.007212609052658081, + -0.0026248644571751356, + -0.0011908613378182054, + 0.01040717028081417, + 0.006719226948916912, + 0.0073616886511445045, + 0.013353264890611172, + 0.03464324027299881, + 0.021907590329647064, + -0.0351259745657444, + 0.00829166080802679, + -0.02325640432536602, + 0.009115147404372692, + -0.016498133540153503, + 0.016966668888926506, + 0.009590782225131989, + -0.012480085715651512, + -0.002633738098666072, + 0.016767896711826324, + 0.012693055905401707, + -0.002740223426371813, + 0.006328780669718981, + 0.0026408371049910784, + -0.0010240343399345875, + -0.016696905717253685, + 0.00888087972998619, + 0.002674557501450181, + -0.02568427100777626, + -0.017648175358772278, + 0.01950811967253685, + 0.014425218105316162, + -0.02206376940011978, + -0.003975453786551952, + 0.019195763394236565, + 0.020445190370082855, + -0.028992416337132454, + -0.004635663237422705, + 0.016711104661226273, + 0.004341053776443005, + -0.006903801579028368, + -0.010123209096491337, + -0.005718264263123274, + 0.019039584323763847, + 0.041969433426856995, + 0.005263926927000284, + -0.023213811218738556, + -0.00212615798227489, + -0.01107447873800993, + 0.021609431132674217, + 0.02741643227636814, + 0.013935385271906853, + -0.014439416117966175, + 0.01287763100117445, + -0.0010408945381641388, + 0.015163516625761986, + 0.003309920197352767, + -0.006172602064907551, + -0.00927132647484541, + 0.0172080360352993, + -0.011819875799119473, + -0.011919261887669563, + -0.014112860895693302, + -0.027246056124567986, + 0.004869930911809206, + -0.005647274199873209, + 0.002177625894546509, + -0.01527710072696209, + -0.02889302931725979, + 6.97146388120018e-5, + -0.011855371296405792, + 0.029475150629878044, + 0.0022858858574181795, + 0.008256165310740471, + 0.0011340691708028316, + 0.009711465798318386, + 0.001256527379155159, + 0.03401852771639824, + -0.0038689684588462114, + 0.0009628052357584238, + 0.015021536499261856, + -0.019209960475564003, + 0.031065331771969795, + 0.01818770170211792, + -0.015348090790212154, + -0.030383825302124023, + 0.003723438363522291, + -0.008256165310740471, + 0.011457826010882854, + 0.017094451934099197, + -0.004032245837152004, + -0.01797473058104515, + 0.03160485625267029, + 0.012792441993951797, + -0.0003658216155599803, + 0.014652387239038944, + 0.013935385271906853, + -0.014765971340239048, + -0.004014498554170132, + -0.0027455477975308895, + -0.007624352350831032, + 0.01938033662736416, + 0.0037269878666847944, + 0.010151605121791363, + 0.010180001147091389, + -0.0007303121383301914, + -0.0004911637515760958, + 0.012373600155115128, + -0.01777595840394497, + -0.01972109079360962, + -0.0018120260210707784, + 0.016924073919653893, + -0.004628564231097698, + 0.0051609911024570465, + 0.0035885570105165243, + -0.015561061911284924, + -0.009704366326332092, + 0.0027916913386434317, + -0.01395668275654316, + -0.024207673966884613, + 0.013339066877961159, + -0.005462699569761753, + 0.0018031522631645203, + -0.01436842605471611, + -0.015078328549861908, + -0.026337381452322006, + 0.008426542393863201, + 0.02243291772902012, + 0.018840812146663666, + -0.0016052669379860163, + 0.00846913643181324, + -0.010400070808827877, + 0.013594632036983967, + -0.01138683594763279, + -0.0027313497848808765, + 0.0059915767051279545, + -0.006839910056442022, + -0.011968955397605896, + 0.0024243169464170933, + -0.005210684146732092, + 0.02068655751645565, + -0.005984477698802948, + 0.001606154371984303, + 0.011649499647319317, + -0.015319694764912128, + -0.01023679319769144, + -0.021424856036901474, + -0.002818312728777528, + -0.008036095649003983, + -0.010918299667537212, + -0.01221742108464241, + -0.006413968745619059, + 0.014006375335156918, + 0.024619417265057564, + -0.007965105585753918, + 0.011834073811769485, + -0.004926722962409258, + 0.015177714638411999, + 0.004490132909268141, + -0.006548850331455469, + 0.0016922299982979894, + -0.012047044932842255, + 0.02562747895717621, + -0.013992177322506905, + 0.006399770732969046, + 0.013168690726161003, + -0.014652387239038944, + -0.010705329477787018, + 0.009597881697118282, + -0.006790217012166977, + -0.009044157341122627, + -0.005647274199873209, + 0.01030778419226408, + 0.01558945793658495, + 0.008149680681526661, + 0.02450583316385746, + 0.002965617459267378, + 0.0010879255132749677, + 0.004798940848559141, + 0.005217783153057098, + 0.011755985207855701, + 0.009037058800458908, + -0.013062205165624619, + 0.030639389529824257, + -0.0030170853715389967, + 0.00347852217964828, + -0.0005572734517045319, + 0.007823125459253788, + -0.015461675822734833, + -0.011443627998232841, + -0.015007338486611843, + 0.014460713602602482, + -0.0190963763743639, + 0.03143448010087013, + -0.00010249216575175524, + 0.0037127898540347815, + -0.006307483185082674, + -0.01460979226976633, + 0.02257489785552025, + 0.03438767418265343, + -0.0024651363492012024, + 0.01513512060046196, + 0.02082853764295578, + -0.020672360435128212, + 0.006271988153457642, + -0.02782817743718624, + 0.008064491674304008, + -0.001785404747352004, + 0.012331006117165089, + -0.005601130425930023, + 0.006392671726644039, + -0.011997351422905922, + 0.0067831180058419704, + -0.02491757646203041, + -0.02013283409178257, + -0.013821801170706749, + 0.0037589336279779673, + -0.013999276794493198, + -0.001298234099522233, + 0.0028396097477525473, + -0.02054457738995552, + -0.01284213550388813, + 0.01027938723564148, + -0.005363313015550375, + 0.0072481040842831135, + -0.013757909648120403, + -0.037880394607782364, + -0.01378630567342043, + -0.020317409187555313, + -0.0038192751817405224, + 0.00560468016192317, + 0.01058464590460062, + 0.005924135912209749, + 0.002740223426371813, + -0.03103693574666977, + -0.0183864738792181, + 0.03688653185963631, + -0.022191550582647324, + -0.025215735659003258, + -0.0030863010324537754, + -0.017250629141926765, + 0.013317770324647427, + 0.003558386117219925, + 0.02097051963210106, + 0.007446876727044582, + -0.007610154338181019, + 0.0016221271362155676, + -0.016370350494980812, + -0.012792441993951797, + 0.020658161491155624, + -0.02477559633553028, + -0.015049932524561882, + 0.011010587215423584, + 0.02680591680109501, + 0.010456862859427929, + 0.028935624286532402, + 0.0004822899936698377, + -0.013963781297206879, + 0.017023460939526558, + 0.009612079709768295, + 0.014304534532129765, + -0.006385572720319033, + -0.0009699042420834303, + 0.02998628094792366, + 0.007510768249630928, + 0.021779807284474373, + -0.012558174319565296, + 0.006229394115507603, + -0.001800490077584982, + 0.010960893705487251, + -0.0029247980564832687, + 0.01652652956545353, + 0.011947658844292164, + -0.009881841950118542, + -0.007745035924017429, + 0.012657561339437962, + -0.018017323687672615, + -0.005210684146732092, + 0.006321681663393974, + -0.022049570456147194, + 0.004316207021474838, + -0.011053181253373623, + 0.0037305373698472977, + -0.013282274827361107, + 0.027955958619713783, + -0.012870531529188156, + 0.00888087972998619, + 0.0031519669573754072, + 0.02784237451851368, + -0.008107085712254047, + -0.012203223071992397, + -0.006389121990650892, + 0.0022663637064397335, + 0.01631355844438076, + -0.016753697767853737, + -0.008596918545663357, + -0.0009037946001626551, + 0.007084826473146677, + 8.452276233583689e-5, + -0.0032921726815402508, + 0.01082601211965084, + -0.013864395208656788, + 0.00940620806068182, + -0.006747622974216938, + -0.027714591473340988, + -0.002397695556282997, + 0.012167728506028652, + -0.01706605590879917, + 0.0009636926115490496, + -0.008944771252572536, + 0.012025747448205948, + -0.012501382268965244, + -0.008462036959826946, + 0.006747622974216938, + 0.02055877447128296, + -0.007851521484553814, + -0.007837323471903801, + -0.010229694657027721, + 0.006676632445305586, + 0.0010346828494220972, + 0.04770544543862343, + 0.024037297815084457, + 0.004972866736352444, + 0.00044502009404823184, + 0.0023586510214954615, + -0.01784694753587246, + -0.0022290938068181276, + 0.014482010155916214, + 0.0001790285314200446, + -0.02104150876402855, + 0.013970880769193172, + -0.008866681717336178, + 0.0020569423213601112, + 0.005775056313723326, + -0.002697629388421774, + 0.023213811218738556, + -0.008199373260140419, + -0.0040854886174201965, + -0.007382985670119524, + 0.012714353390038013, + -0.007915412075817585, + -0.009306821040809155, + -0.019564911723136902, + 0.004447538871318102, + -0.00010648537136148661, + -0.00940620806068182, + 0.008696305565536022, + -0.023412583395838737, + -0.017506195232272148, + -0.00664823642000556, + 0.02020382322371006, + 0.003677294822409749, + -0.022390322759747505, + 0.0017987153260037303, + 0.004021597560495138, + 0.01736421510577202, + 0.013417156413197517, + 0.00902285985648632, + 0.0002713158610276878, + 0.012451688759028912, + -0.03435928001999855, + -0.007148717995733023, + 0.017236432060599327, + -0.002394146053120494, + -0.012636263854801655, + 0.006573696620762348, + -0.005093550309538841, + 0.027813978493213654, + -0.0072197080589830875, + 0.006027071736752987, + 0.005040307529270649, + 0.010059317573904991, + -0.0004876142484135926, + 0.0006074102711863816, + 0.01148622203618288, + 0.015944410115480423, + 0.010066417045891285, + -0.006676632445305586, + -0.009661772288382053, + -0.0036488985642790794, + 0.015021536499261856, + 0.010712428018450737, + 0.0008625314803794026, + 0.007524966262280941, + 0.006807964760810137, + 0.004898326937109232, + 0.00892347376793623, + 0.006080314517021179, + -0.0010329080978408456, + 0.0013594632036983967, + 0.0109041016548872, + -0.0007289811037480831, + -0.005540788639336824, + -0.005682769231498241, + -0.003801527665928006, + 0.0070528811775147915, + -0.008561423979699612, + -0.01496474351733923, + -0.022092165425419807, + -0.008163878694176674, + -0.005721813999116421, + -0.02006184309720993, + 0.022929849103093147, + 0.007823125459253788, + -0.01929514855146408, + -0.00531361997127533, + -0.0039009139873087406, + -0.008618216030299664, + 0.0007684694137424231, + 0.026763323694467545, + 0.002076464705169201, + 0.0002686537045519799, + -0.0059915767051279545, + 0.003396883374080062, + 0.006900251843035221, + 0.0028129885904490948, + -0.014489109627902508, + -0.0011518168030306697, + 0.010478160344064236, + 0.008902177214622498, + -0.005814101081341505, + 0.0051574413664639, + -0.009313920512795448, + 0.010996389202773571, + -0.008533027954399586, + -0.03492720052599907, + -0.0067547219805419445, + -0.014638189226388931, + -0.0039328597486019135, + 0.013111898675560951, + -0.01665431261062622, + 0.013424255885183811, + -0.014751773327589035, + 0.02033160626888275, + 0.008653710596263409, + 0.005792804062366486, + 0.005395258776843548, + 0.0014526379527524114, + 0.016640113666653633, + 0.009150642901659012, + -0.0029336719308048487, + 0.011557212099432945, + 0.013346166349947453, + 0.007752134930342436, + -0.0005089113255962729, + 0.0009903139434754848, + -0.009654673747718334, + -0.005235530436038971, + 0.0055123926140367985, + -0.017534591257572174, + 0.015248704701662064, + -0.006477859802544117, + 0.004035795573145151, + 0.019337743520736694, + -0.003134219441562891, + -0.018996989354491234, + 0.0002413668407825753, + -0.02400890178978443, + 0.003979003522545099, + -0.002928347559645772, + -0.016853084787726402, + 0.02782817743718624, + 0.019834674894809723, + 0.020218022167682648, + 0.006023522466421127, + -0.004415593110024929, + -0.007059980183839798, + 0.0012086089700460434, + 0.008795691654086113, + 0.016995064914226532, + -0.01252977829426527, + -0.009739861823618412, + 0.004081939347088337, + 0.0023267052602022886, + 0.002868006005883217, + 0.00940620806068182, + -0.005224882159382105, + -0.007226807065308094, + -0.0009956381982192397, + 0.0033915590029209852, + -0.005260377191007137, + 0.01936613954603672, + 0.004635663237422705, + 0.02304343320429325, + -0.0026000177022069693, + -0.001302671036683023, + -5.684765710611828e-5, + 0.008710503578186035, + -0.015333892777562141, + -0.002633738098666072, + -0.007588857319205999, + -0.007138069253414869, + -0.008533027954399586, + 0.005072253290563822, + 0.01215353049337864, + 0.015518467873334885, + 0.007081277202814817, + 0.00318568735383451, + -0.021268676966428757, + -0.0033028211910277605, + -0.004884128924459219, + -0.003121796064078808, + -0.011919261887669563, + -0.010073515586555004, + -0.011202260851860046, + 0.01030778419226408, + 0.0013816476566717029, + 0.01121645886451006, + 0.0008687431109137833, + -0.004972866736352444, + 0.0037021413445472717, + 0.0081922747194767, + -0.014013474807143211, + -0.011713390238583088, + -0.010733725503087044, + 0.021013112738728523, + 0.010911201126873493, + 0.00047385989455506206, + -0.026820115745067596, + 0.00787991750985384, + 0.008043195120990276, + 0.00468535628169775, + 0.0015067679341882467, + 0.01274274941533804 + ], + "b3717357-f19c-4530-bfdd-45b407eecb47": [ + -0.042587053030729294, + -0.02656579203903675, + -0.0056008691899478436, + 0.01994990184903145, + -0.04136026278138161, + -0.019716227427124977, + -0.0029537829104810953, + -0.0012468688655644655, + -0.04153551906347275, + 0.026755651459097862, + 0.030260758474469185, + 0.017803022637963295, + 0.008185885846614838, + -0.01167638786137104, + 0.021147480234503746, + 0.002579539781436324, + -0.013794057071208954, + 0.022388871759176254, + -0.0012477816781029105, + -0.006897028535604477, + 0.08242844045162201, + -0.041214220225811005, + -0.01310033816844225, + -0.001772634917870164, + -0.009032953530550003, + -0.010756297968327999, + -0.008251606486737728, + 0.012800943106412888, + -0.07109525799751282, + -0.00365662993863225, + 0.011230947449803352, + -0.0035872580483555794, + -0.012925082817673683, + 0.021337339654564857, + -0.006495401728898287, + -0.03440846875309944, + -0.0038811760023236275, + 0.006469843443483114, + -0.003990710712969303, + -0.0013253686483949423, + -0.01402773056179285, + 0.01572916842997074, + -0.01476526353508234, + 0.018985997885465622, + -0.04398909583687782, + -0.002809562487527728, + -0.022082176059484482, + 0.002570411888882518, + 0.015247216448187828, + 0.006447936873883009, + 0.004060082603245974, + 0.0407760813832283, + -0.009916532784700394, + 0.0004219363909214735, + 0.04007505998015404, + -0.019073624163866043, + 0.022140594199299812, + 0.0497141033411026, + -0.013385128229856491, + -0.061397794634103775, + -0.01889836974442005, + -0.011318575590848923, + 0.007762352004647255, + -0.023849332705140114, + -0.020855387672781944, + -0.01412996370345354, + -0.008054444566369057, + -0.009478393942117691, + -0.050444334745407104, + -0.02326514944434166, + -0.02812848426401615, + 0.0009976776782423258, + -0.0589442178606987, + 0.01074169296771288, + 0.004772057291120291, + -0.02323593944311142, + 0.02190691977739334, + -0.008390350267291069, + 0.024141425266861916, + -0.028581228107213974, + -0.017759209498763084, + -0.025850165635347366, + 0.009639044292271137, + -0.002026390051469207, + 0.0439014658331871, + -0.010851227678358555, + 0.018065907061100006, + -0.03563525527715683, + 0.01073439046740532, + -0.009953043423593044, + 0.0028424228075891733, + 0.016459399834275246, + -0.012384711764752865, + 0.001770809292793274, + 0.005089707672595978, + 0.0066049364395439625, + -0.033123262226581573, + -0.01244313083589077, + 0.005571660120040178, + -0.010055276565253735, + 0.01840181276202202, + -0.0011994038941338658, + -0.02155640907585621, + -0.012078015133738518, + -0.00935425516217947, + -0.002429842483252287, + -0.004688080865889788, + 0.017496326938271523, + -0.013363220728933811, + 0.05161270126700401, + 0.03557683899998665, + -0.058330826461315155, + 0.031896475702524185, + -8.409062138525769e-5, + -0.0336490273475647, + -0.02947210893034935, + -0.004432499874383211, + -0.0024754819460213184, + 0.005812636110931635, + -0.02776337042450905, + 0.019657809287309647, + -0.002265540650114417, + 0.015115774236619473, + -0.0028150391299277544, + 0.016415584832429886, + -0.006294588092714548, + 0.011742109432816505, + 0.03621944040060043, + 0.03756306692957878, + 0.029253039509058, + 0.00469903415068984, + -0.033298518508672714, + 0.011238249950110912, + -0.008813884109258652, + -0.005323381628841162, + 0.03367823734879494, + 0.013282896019518375, + 0.06098886579275131, + -0.03449609503149986, + 0.028464391827583313, + -0.025119934231042862, + -0.024345889687538147, + -0.03291879966855049, + 0.028741879388689995, + 0.03160438314080238, + 0.03102019801735878, + -0.03166280314326286, + 0.048750199377536774, + -0.05152507498860359, + 0.028508204966783524, + -0.03686204552650452, + 0.005648334044963121, + -0.014202985912561417, + -0.0033955725375562906, + 0.05765901133418083, + 0.01886915974318981, + -0.01167638786137104, + 0.004155012313276529, + -0.0002854745544027537, + 0.02972038835287094, + 0.01699976995587349, + -0.05561436712741852, + -0.01711660623550415, + 0.007630910258740187, + 0.01865009032189846, + 0.05003540590405464, + 0.08108481019735336, + -0.004136756528168917, + -0.004206128418445587, + 0.018343394622206688, + -0.0016548852436244488, + -0.002329435897991061, + 0.045858483761548996, + 0.004242639988660812, + 0.0200229249894619, + -0.015203402377665043, + 0.04781550541520119, + 0.0026014468166977167, + 0.04787392169237137, + -0.05064879730343819, + -0.038234878331422806, + -0.009836207143962383, + 0.0057323104701936245, + 0.012574572116136551, + -0.017510931938886642, + 0.020972223952412605, + -0.020796969532966614, + 0.023046080023050308, + 0.01161066722124815, + 0.0011099505936726928, + -0.030260758474469185, + -0.02788020670413971, + 0.008171280845999718, + -0.0014385543763637543, + -0.013823266141116619, + -0.025251375511288643, + -0.003209363669157028, + 0.016211120411753654, + 0.006166798062622547, + 0.02633211761713028, + -0.006528262048959732, + -0.04544955492019653, + -0.022856218740344048, + 0.03104940801858902, + -0.02177547849714756, + 0.014224893413484097, + 0.005860100965946913, + -0.044427234679460526, + 0.02465258724987507, + -0.03998742997646332, + 0.028873320668935776, + -0.06712280213832855, + 0.0021633084397763014, + -0.005936775356531143, + -0.019219670444726944, + 0.01714581623673439, + -0.028975551947951317, + 0.013808662071824074, + -0.0156999584287405, + -0.022491104900836945, + -0.03233461454510689, + 0.003150945296511054, + -0.03756306692957878, + -0.002718283561989665, + -0.055117812007665634, + 0.005571660120040178, + -0.03280195966362953, + 0.026142258197069168, + -0.03712492808699608, + -0.009923834353685379, + -0.00510066095739603, + -0.02487165667116642, + 0.014071544632315636, + -0.03104940801858902, + 0.009427277371287346, + 0.0201689712703228, + 0.033269308507442474, + 0.015115774236619473, + 0.0006321059190668166, + -0.03534316271543503, + -0.004469011444598436, + 0.047260526567697525, + -0.017656978219747543, + -0.002805911237373948, + 0.01723344437777996, + 0.011355087161064148, + 0.021205898374319077, + 0.03922799229621887, + 0.008251606486737728, + 0.008178583346307278, + -0.02335277572274208, + 0.02317752130329609, + -0.02162943221628666, + 0.025412026792764664, + -0.008215094916522503, + 0.011157924309372902, + 0.045800067484378815, + -0.030319176614284515, + -0.03601497784256935, + 0.019584786146879196, + 0.01074899546802044, + 0.0050641498528420925, + -0.030348386615514755, + 0.0021888664923608303, + 0.05257660895586014, + -0.04007505998015404, + 0.014969728887081146, + -0.01156685408204794, + 0.008178583346307278, + 0.04235337674617767, + -0.019424134865403175, + 0.0055168927647173405, + -0.03829329460859299, + 0.009675555862486362, + -0.009536812081933022, + -0.0015836877282708883, + -0.015334843657910824, + -0.0008922505658119917, + 0.053452882915735245, + 0.0014440311351791024, + -0.01873771846294403, + -0.0023951565381139517, + -0.00046027349890209734, + 0.01329750008881092, + 0.01485289167612791, + 0.02158561907708645, + -0.04241179674863815, + 0.016152702271938324, + -0.0345253050327301, + -0.0018785183783620596, + 0.0021560059394687414, + -0.013399732299149036, + 0.011311273090541363, + 0.04398909583687782, + 0.008120165206491947, + 0.01889836974442005, + -0.015378657728433609, + 0.033240098506212234, + 0.004089291673153639, + 0.02326514944434166, + 0.005389102268964052, + 0.0062872860580682755, + 0.005089707672595978, + -0.011340482160449028, + 0.011355087161064148, + -0.013523872010409832, + 0.026083840057253838, + 0.02637593075633049, + -0.012669501826167107, + 0.014341729693114758, + 0.028946343809366226, + -0.0021012388169765472, + -0.04653029888868332, + -0.0072365859523415565, + 0.016590841114521027, + 0.007203725632280111, + -0.03712492808699608, + -0.016795305535197258, + -0.01840181276202202, + -0.013721033930778503, + -0.009821602143347263, + 0.013947405852377415, + -0.051963213831186295, + -0.009040255099534988, + 0.019365716725587845, + -0.04185682162642479, + 0.028581228107213974, + -0.013202570378780365, + -0.044251978397369385, + -0.015919027850031853, + -0.050736427307128906, + 0.005626427009701729, + 0.00463696476072073, + -0.02503230608999729, + -0.04074687138199806, + -0.02646355889737606, + -0.04603374004364014, + -0.02966197021305561, + 0.009303138591349125, + -0.01702897809445858, + -0.01841641776263714, + -0.024214448407292366, + 0.03843934088945389, + -0.034817397594451904, + -0.01015020627528429, + -0.041185010224580765, + 0.016298748552799225, + 0.029822619631886482, + -0.007028470281511545, + -0.012727919965982437, + 0.0009940264280885458, + -0.004717289935797453, + 0.03315247222781181, + -0.0052905213087797165, + 0.06361769139766693, + -0.0028223413974046707, + -0.039666131138801575, + -0.008981836959719658, + -0.0032495264895260334, + -0.011355087161064148, + -0.002431668108329177, + -0.0375046469271183, + -0.02158561907708645, + -0.02333817258477211, + -0.012472339905798435, + 0.05885659158229828, + -0.036686789244413376, + -0.028435181826353073, + 0.004385035019367933, + 0.0023330869153141975, + -0.009018348529934883, + -0.01565614528954029, + -0.005086056422442198, + -0.047494202852249146, + -0.029808014631271362, + -0.056724317371845245, + 0.050619591027498245, + -0.005947728641331196, + 0.0028752831276506186, + 0.019351111724972725, + -0.000999503186903894, + -0.013852475211024284, + -0.011187133379280567, + 0.010274345055222511, + 0.023805519565939903, + 0.04965568333864212, + -0.013071129098534584, + 0.004355825949460268, + 0.01686832867562771, + 0.012954291887581348, + -0.04144789278507233, + 0.01095345988869667, + -0.02495928481221199, + 0.00251929578371346, + -0.018007488921284676, + -0.013779453001916409, + -0.00860941968858242, + 0.013655313290655613, + -0.008047142066061497, + -0.019628599286079407, + -0.009376161731779575, + 0.018007488921284676, + 0.016065074130892754, + 0.01476526353508234, + 0.011106808669865131, + 0.003377316752448678, + 0.021132875233888626, + -0.01710200123488903, + 0.016357166692614555, + 0.015422471798956394, + 0.034788187593221664, + 0.011230947449803352, + 0.03627786040306091, + 0.008777372539043427, + 0.02650737203657627, + 0.01724804751574993, + 0.007915700785815716, + 0.039461664855480194, + -0.004991126712411642, + -0.03166280314326286, + 0.02482784166932106, + 0.03134150058031082, + -0.012450432404875755, + 0.039549291133880615, + 1.4333629223983735e-5, + 0.006473494693636894, + 0.01714581623673439, + 0.016809910535812378, + -0.0018538731383159757, + -0.05406627804040909, + 0.02024199441075325, + 0.035109490156173706, + 0.0076017011888325214, + -0.0024846098385751247, + -0.006937191355973482, + 0.012333596125245094, + 0.019467949867248535, + 0.00018712160817813128, + -0.01020862441509962, + -0.011837039142847061, + -0.0024170635733753443, + 0.011230947449803352, + -0.019278088584542274, + -0.05424153432250023, + -0.016225725412368774, + -0.013553081080317497, + -0.04378462955355644, + -0.005787077825516462, + 0.04653029888868332, + -0.028771087527275085, + -0.0376506932079792, + 0.01992069184780121, + -0.025850165635347366, + -0.022403476759791374, + -0.0061777513474226, + -0.01869390532374382, + -0.011888154782354832, + -0.016430189833045006, + 0.02015436626970768, + -0.05932394042611122, + -0.016123492270708084, + 0.010164810344576836, + 0.014728751964867115, + -0.026054630056023598, + 0.02621528133749962, + -0.041301846504211426, + -0.003720525186508894, + 0.016766095533967018, + 0.000918265082873404, + 0.009062162600457668, + -0.008835790678858757, + 0.006491750478744507, + -0.022768592461943626, + 0.031779639422893524, + 0.016459399834275246, + 0.0042901053093373775, + -0.033123262226581573, + -0.006221565417945385, + -0.010172112844884396, + -0.03119545429944992, + -0.03525553643703461, + -0.0027073302771896124, + -0.008704349398612976, + -0.005717705935239792, + 0.010471507906913757, + -0.015553913079202175, + -0.015057356096804142, + -0.03131229057908058, + -0.009514905512332916, + -0.023674078285694122, + 0.061456210911273956, + 0.009011046029627323, + 0.009441882371902466, + 0.0062763323076069355, + 0.016138097271323204, + -0.019351111724972725, + 0.00858751218765974, + -0.03084494359791279, + -0.03458372503519058, + -0.02979341149330139, + 0.028975551947951317, + -0.01846023090183735, + -0.009785090573132038, + -0.016795305535197258, + 0.00034069822868332267, + 0.02462337724864483, + -0.023995378986001015, + 0.024229053407907486, + 0.016459399834275246, + -0.031721219420433044, + -0.039578501135110855, + 0.034992653876543045, + -0.04691001772880554, + 0.021045247092843056, + 0.010274345055222511, + 0.018124325200915337, + -0.02944290079176426, + -0.012881268747150898, + 0.030436014756560326, + 0.037942785769701004, + -0.017408698797225952, + 0.01870851032435894, + 0.012888571247458458, + -0.0036767113488167524, + -0.01564154028892517, + 0.014173776842653751, + -0.020577900111675262, + -0.02199454791843891, + 0.004395988769829273, + -0.022213617339730263, + -0.02003752999007702, + 0.0337950736284256, + -0.0462966226041317, + 0.031750429421663284, + 0.018985997885465622, + 0.012056108564138412, + 0.0014266881626099348, + -0.011435411870479584, + -0.00025991647271439433, + 0.021176688373088837, + -0.006612238474190235, + 0.014370939694344997, + -0.0019679716788232327, + 0.0020172621589154005, + -0.008353838697075844, + 0.029837224632501602, + 1.0226081940345466e-5, + 0.021308131515979767, + -0.015349448658525944, + 0.04136026278138161, + -0.014998937956988811, + 0.02506151609122753, + -0.045654021203517914, + -0.01583140157163143, + 0.0039688036777079105, + -0.02316291630268097, + -0.007996025495231152, + 0.008850395679473877, + -0.008631326258182526, + -0.031984101980924606, + -0.01567075029015541, + 0.022111384198069572, + 0.009587928652763367, + 0.007981421425938606, + -0.008171280845999718, + 0.002490086480975151, + 0.0011683690827339888, + 0.03166280314326286, + -0.01006988063454628, + 0.0168975368142128, + 0.01844562590122223, + -0.009682858362793922, + 0.029253039509058, + 0.001805495354346931, + 0.027602719143033028, + 0.024521145969629288, + 0.00577977579087019, + -0.00030555587727576494, + -0.02174626849591732, + -0.01856246404349804, + 0.003935943357646465, + -0.016561631113290787, + 0.0002779440546873957, + -0.01694135181605816, + 0.0022436336148530245, + 0.004823173396289349, + -7.0313226387952454e-6, + -0.02815769426524639, + 0.01697055995464325, + 0.0035763047635555267, + 0.019687019288539886, + 0.03575209155678749, + -0.012107224203646183, + 0.01720423437654972, + -0.0115376440808177, + 0.021293526515364647, + 0.0063712624832987785, + 0.013407034799456596, + 0.006042658817023039, + 0.005542450584471226, + -0.004479965195059776, + 0.03592734783887863, + 0.0038191063795238733, + -0.016138097271323204, + -0.02621528133749962, + 0.02155640907585621, + 0.00934695266187191, + 0.019380321726202965, + -0.02957434207201004, + 0.00036443074350245297, + -0.01559772714972496, + 0.010697878897190094, + 0.027193790301680565, + -0.02973499335348606, + 0.021176688373088837, + -0.010413088835775852, + 0.01717502437531948, + 0.013516569510102272, + -0.0031418174039572477, + 0.019175857305526733, + 0.028858715668320656, + -0.03253907710313797, + 0.050239868462085724, + -0.006765587255358696, + 0.0218777097761631, + 0.017481721937656403, + -0.01558312214910984, + -0.008047142066061497, + -0.01552470400929451, + 0.020519481971859932, + -0.014429357834160328, + 0.006940842606127262, + -0.0028296438977122307, + -0.011179831810295582, + -0.004052780102938414, + -0.017700791358947754, + 0.006816703360527754, + 0.0062799835577607155, + -0.009945741854608059, + 0.010719786398112774, + 0.0204610638320446, + 0.01879613660275936, + 0.028376763686537743, + 0.039695337414741516, + -0.01859167218208313, + 0.030231548473238945, + -0.007557887118309736, + 0.028230717405676842, + 0.003355409950017929, + 0.03525553643703461, + -0.04045477882027626, + 0.014232195913791656, + 0.00013794514234177768, + 0.005626427009701729, + 0.019716227427124977, + -0.029939457774162292, + -0.012107224203646183, + 0.015334843657910824, + 0.0007238411344587803, + 0.029968665912747383, + 0.02640514075756073, + -0.013202570378780365, + -0.012333596125245094, + -0.0010186717845499516, + 0.00786458421498537, + -0.013706429861485958, + 0.01999371498823166, + 0.011902759782969952, + 0.0002389223373029381, + 0.007806165609508753, + 0.007557887118309736, + -0.02782178856432438, + 0.017817627638578415, + -0.005958682391792536, + -0.014502380974590778, + -0.001832878915593028, + 0.02200915291905403, + -0.02011055313050747, + -0.0033973981626331806, + -0.021512595936655998, + 0.003059666370972991, + -0.011355087161064148, + -0.023717891424894333, + 0.01727725751698017, + -0.053803395479917526, + -0.019453344866633415, + -0.022651754319667816, + 0.036307066679000854, + -0.029253039509058, + 0.0006179576739668846, + -0.05593566969037056, + 0.022607941180467606, + -0.007123399991542101, + 0.03613181412220001, + -0.003227619454264641, + 0.0013308454072102904, + 0.007828072644770145, + -0.02327975258231163, + 0.0336490273475647, + 0.011150621809065342, + -0.014955123886466026, + -0.008938022889196873, + 0.02818690426647663, + -0.039636921137571335, + 0.014509683474898338, + 0.00732056237757206, + -0.0250030979514122, + -0.002292924327775836, + -5.322696961229667e-5, + 0.03119545429944992, + 0.03221777826547623, + -0.008317327126860619, + -0.003519711783155799, + 0.016138097271323204, + 0.012158340774476528, + 0.04030873253941536, + -0.03399953991174698, + 0.008821186609566212, + -0.0004511456354521215, + 0.02628830447793007, + -0.027296021580696106, + 0.015787586569786072, + -0.010267043486237526, + -0.0200229249894619, + -0.016430189833045006, + 0.010332764126360416, + -0.012976198457181454, + -0.004275500308722258, + 0.0061777513474226, + 0.002431668108329177, + 0.04305439814925194, + 0.005403706803917885, + 0.00463696476072073, + 0.00617044884711504, + -0.001632978324778378, + -0.012121829204261303, + 0.00389578053727746, + -0.009288533590734005, + 0.03420400246977806, + -0.023951565846800804, + -0.01160336472094059, + 0.016590841114521027, + 0.012603781186044216, + -0.02630290761590004, + 0.015013542026281357, + -0.02019817940890789, + 0.03861459717154503, + 0.01875232346355915, + -0.022345058619976044, + 0.02779257856309414, + 0.03589813783764839, + -0.0028004345949739218, + 0.032071731984615326, + 0.004439802374690771, + -0.020796969532966614, + 0.001285205944441259, + 0.0020738551393151283, + 0.016503212973475456, + -0.012976198457181454, + 0.024272866547107697, + -0.0017023502150550485, + 0.005224800202995539, + -0.014341729693114758, + -0.037942785769701004, + 0.015218007378280163, + 0.037942785769701004, + -0.006323797628283501, + 0.001804582541808486, + 0.055380694568157196, + -0.015028147026896477, + 0.02462337724864483, + 0.007021167781203985, + 0.03250986710190773, + 0.003693141508847475, + -0.010296252556145191, + -0.013991218991577625, + 0.015203402377665043, + 3.9934489905135706e-5, + -0.0400458499789238, + -0.001805495354346931, + -0.030465222895145416, + -0.06373453140258789, + 6.224075332283974e-5, + -0.0013947405386716127, + 0.016693072393536568, + -0.013925498351454735, + 0.030085504055023193, + 0.0026197026018053293, + -0.030231548473238945, + 0.00044909186544828117, + 0.021220503374934196, + 0.006141239777207375, + 0.015495494939386845, + -0.005673892330378294, + 0.019394926726818085, + -0.03274354338645935, + 0.000600614701397717, + 0.007703933399170637, + -0.019102834165096283, + -0.013823266141116619, + 0.011931968852877617, + -0.028873320668935776, + 0.004556639119982719, + 0.03843934088945389, + -0.029194621369242668, + 0.0016548852436244488, + 0.028771087527275085, + -0.015860609710216522, + -0.016707677394151688, + 0.022812405601143837, + -0.021235108375549316, + 0.00211401772685349, + -0.01486019417643547, + 0.017700791358947754, + -0.013757545500993729, + 0.01837260276079178, + 0.006765587255358696, + -0.014882100746035576, + 0.03218856826424599, + 0.002148703671991825, + -0.010661367326974869, + 0.01710200123488903, + 0.01472145039588213, + 0.02961815521121025, + -0.01080011110752821, + 0.01249424647539854, + 0.005692148115485907, + 0.00583819393068552, + 0.020782364532351494, + -0.0171896293759346, + 0.006363959982991219, + 0.011588760651648045, + -0.0034466886427253485, + 0.008886907249689102, + -0.016123492270708084, + 0.02780718356370926, + 0.01015750877559185, + -0.022505708038806915, + -0.03519711643457413, + 0.04617978632450104, + -0.013268291018903255, + -0.0462966226041317, + -0.019803855568170547, + -0.016503212973475456, + -0.0017562047578394413, + -0.0008342885412275791, + -8.540276030544192e-5, + 0.012684106826782227, + 0.04819522425532341, + 0.0753013864159584, + 0.032042521983385086, + -0.035109490156173706, + -0.02300226502120495, + 0.027033139020204544, + -0.022257430478930473, + -0.00022876757429912686, + -0.03084494359791279, + 0.038234878331422806, + -0.009624440222978592, + 0.028727274388074875, + 0.03367823734879494, + -0.027675742283463478, + -0.03919878229498863, + 0.016590841114521027, + -0.014969728887081146, + -0.01176401600241661, + -0.007254841737449169, + 0.011596063151955605, + 0.027047744020819664, + 0.003669409081339836, + -0.009646346792578697, + -0.01559772714972496, + -0.010179415345191956, + 0.013567686080932617, + -0.01551009900867939, + 0.005553404334932566, + 0.008952627889811993, + 0.014078847132623196, + -0.0005960507551208138, + 0.0007274922681972384, + -0.015086565166711807, + 0.031838055700063705, + 0.017540140077471733, + -0.0016128969145938754, + -0.026784861460328102, + 0.013487360440194607, + 0.017803022637963295, + 0.006068216636776924, + 0.0037971993442624807, + 0.02320672944188118, + -0.0061521935276687145, + 0.001006805570796132, + -0.04209049418568611, + -0.03610260412096977, + -0.015232611447572708, + 0.0021979943849146366, + -0.02032962068915367, + -0.02018357627093792, + -0.016357166692614555, + 0.010478810407221317, + -0.00038040452636778355, + -0.010267043486237526, + -0.04372621327638626, + -0.024287471547722816, + 0.009821602143347263, + -0.05467967316508293, + 0.00470998790115118, + 0.007499468978494406, + 0.025660306215286255, + 0.04138947278261185, + 0.02628830447793007, + -0.0017671581590548158, + -0.020534086972475052, + -0.009682858362793922, + 0.06811591237783432, + 0.016415584832429886, + 0.0066597037948668, + -0.023703286424279213, + -0.005918519571423531, + 0.014005823992192745, + 0.0039724549278616905, + 0.001144636538811028, + 0.017408698797225952, + 0.011435411870479584, + -0.019073624163866043, + 0.02041724883019924, + 0.011172529309988022, + -0.03242224082350731, + 0.012297084555029869, + 0.027471277862787247, + 0.005155428312718868, + 0.002723760437220335, + 0.0037314787041395903, + -0.00939806830137968, + -0.01716042123734951, + -0.0003117172163911164, + -0.013136849738657475, + -0.03566446527838707, + -0.017846837639808655, + -0.01558312214910984, + -0.022505708038806915, + -0.015933632850646973, + 0.010267043486237526, + 0.0066962153650820255, + -0.00332620064727962, + -0.022038361057639122, + -0.0012496071867644787, + 0.0018547858344390988, + -0.006520960014313459, + -0.01850404404103756, + 0.0035690022632479668, + 0.005812636110931635, + -0.0015280076768249273, + 0.0008064484572969377, + 0.005451171658933163, + 0.008799279108643532, + -0.007357073947787285, + -0.018182743340730667, + -0.016415584832429886, + 0.003640199778601527, + -0.004268198274075985, + -0.009646346792578697, + -0.0021121921017766, + 0.015086565166711807, + -0.030728105455636978, + 0.008733558468520641, + -0.020753154531121254, + 0.029048575088381767, + -0.0009050296503119171, + -0.011917364783585072, + -0.006966400425881147, + 0.005597217939794064, + 0.006115681957453489, + 0.025309795513749123, + -0.00332802627235651, + -0.010033369064331055, + -0.0003219860955141485, + -0.011325877159833908, + -0.021016038954257965, + 0.012552664615213871, + 0.04647187888622284, + 0.017744604498147964, + -0.04486537352204323, + -0.01477986853569746, + -0.03537237271666527, + 0.028917133808135986, + -0.04983093962073326, + -0.002658039564266801, + -0.015349448658525944, + -0.01074169296771288, + -0.014436660334467888, + -0.04521588236093521, + 0.015188797377049923, + 0.011793225072324276, + 0.020753154531121254, + -0.01015750877559185, + -0.004155012313276529, + -0.033386144787073135, + -0.0102305319160223, + -0.02615686133503914, + -0.026916302740573883, + -0.010347368195652962, + -0.03221777826547623, + 0.03554762899875641, + 0.01001146249473095, + -0.00033202674239873886, + -0.010610251687467098, + -0.0036548045463860035, + 0.012742524966597557, + 0.018211953341960907, + -0.03385349363088608, + -0.005473078694194555, + -0.011961177922785282, + 0.0012943338369950652, + 0.005677543580532074, + 0.011070297099649906, + 0.017394093796610832, + -0.013662615790963173, + -0.008879604749381542, + 0.012917780317366123, + -0.02482784166932106, + -0.008339233696460724, + 0.0062799835577607155, + -0.018357999622821808, + -0.0017534663202241063, + 0.014232195913791656, + 0.007251190487295389, + 0.01169829536229372, + 0.013122244738042355, + -0.019716227427124977, + -0.02160022221505642, + -0.015422471798956394, + 0.00019875966245308518, + 0.005882008001208305, + 0.00576882204040885, + -0.013209872879087925, + -0.005392753519117832, + -0.06723964214324951, + -0.010442298837006092, + -0.013144152238965034, + 0.02019817940890789, + 0.008689744397997856, + -0.002344040432944894, + 0.024097612127661705, + 0.011807830072939396, + -0.014319823123514652, + 0.042528633028268814, + 0.0016977862687781453, + -0.005940426606684923, + 0.025762537494301796, + 0.019482554867863655, + 0.012706013396382332, + 0.011223644949495792, + -0.018927577883005142, + 0.00035279267467558384, + 0.01713121123611927, + -0.020840782672166824, + -0.019687019288539886, + 0.011267459020018578, + 0.01850404404103756, + -0.00017662454047240317, + -0.014217590913176537, + 0.03370744735002518, + -0.027675742283463478, + 0.021001433953642845, + -0.02327975258231163, + -0.0200229249894619, + 0.019365716725587845, + 0.016065074130892754, + 0.0005805333494208753, + 0.005589915905147791, + -0.006634145509451628, + 0.014546195045113564, + 0.01001146249473095, + -0.013523872010409832, + 0.05584803968667984, + 0.01996450684964657, + 0.008353838697075844, + 0.025543468073010445, + 0.016517817974090576, + 0.00389578053727746, + -0.022213617339730263, + -0.01865009032189846, + 0.006393169518560171, + -0.019438739866018295, + 0.005531497299671173, + 0.012917780317366123, + 0.0034740723203867674, + -0.006462541408836842, + 0.010332764126360416, + -0.013852475211024284, + -0.010924250818789005, + -0.011340482160449028, + 0.008689744397997856, + -0.015232611447572708, + 0.009894625283777714, + -0.004673476330935955, + 0.042791515588760376, + 0.0015134030254557729, + 0.002137750154361129, + 0.008631326258182526, + -0.013523872010409832, + 0.005491334479302168, + -0.00040984194492921233, + -0.014232195913791656, + -0.003008550265803933, + 0.02186310663819313, + 0.024229053407907486, + -0.027442067861557007, + 0.012099921703338623, + 0.019657809287309647, + -0.01155955158174038, + 0.020840782672166824, + 0.008229699917137623, + 0.001803669729270041, + 0.003924989607185125, + -0.0008644105400890112, + -0.028318345546722412, + 0.004527430050075054, + 0.015992050990462303, + 0.009653649292886257, + -0.004947312641888857, + -0.0076017011888325214, + -0.02032962068915367, + -0.009303138591349125, + -0.014400148764252663, + -0.0008822099189274013, + 0.0027931323274970055, + 0.014341729693114758, + 0.02149799093604088, + 0.030143922194838524, + -0.01701437495648861, + 0.04828285053372383, + 0.023922355845570564, + -0.03399953991174698, + 0.005575310904532671, + 0.0003443493915256113, + 0.006995609495788813, + -0.030728105455636978, + 0.00784997921437025, + -0.03741702064871788, + -0.026974720880389214, + -0.018036697059869766, + -0.006309193093329668, + 0.02170245535671711, + -0.0034503398928791285, + -0.007043074816465378, + 2.818233951984439e-5, + 0.026668023318052292, + -0.01707279309630394, + 0.02326514944434166, + -0.014568101614713669, + 0.011807830072939396, + -0.007762352004647255, + -0.015042752027511597, + -0.021351944655179977, + 0.010617554187774658, + -0.011837039142847061, + 0.01854785904288292, + -0.016138097271323204, + -0.05231372267007828, + 0.001115427352488041, + 0.0016548852436244488, + -0.014020428992807865, + -0.01388898678123951, + -0.005348939448595047, + 0.011011878028512001, + 0.00423168670386076, + 0.003123561618849635, + -0.0032823868095874786, + 0.0012413921067491174, + -0.008558303117752075, + 0.02945750392973423, + 0.018153533339500427, + -0.027515091001987457, + -0.007251190487295389, + -0.0003507389046717435, + 0.030085504055023193, + -0.010310856625437737, + 0.015144984237849712, + 0.002009959891438484, + -0.009587928652763367, + -0.005995193496346474, + -0.006115681957453489, + -0.0017616815166547894, + 0.012669501826167107, + 0.0012715141056105494, + -0.01881074160337448, + 0.03987059369683266, + 0.01993529684841633, + 0.011596063151955605, + 0.004501872230321169, + -0.03134150058031082, + -0.02348421886563301, + 0.0012130957329645753, + -0.005316079128533602, + 0.00038405568921007216, + -0.008105560205876827, + 0.008784675039350986, + -0.01250885147601366, + -0.006966400425881147, + 0.013772150501608849, + -0.006528262048959732, + -0.01074169296771288, + -0.011975782923400402, + -0.014816380105912685, + 0.01082932110875845, + 0.002543028211221099, + 0.01007718313485384, + -0.014889403246343136, + 0.006002495996654034, + -0.021205898374319077, + -0.017569350078701973, + -0.019175857305526733, + -0.027237603440880775, + 0.02455035410821438, + 0.016211120411753654, + -0.013334011659026146, + 0.028318345546722412, + -0.022929241880774498, + 0.025163749232888222, + -0.006046310067176819, + 0.01161066722124815, + 0.0019095531897619367, + 0.006937191355973482, + -0.014217590913176537, + 0.026010816916823387, + 0.011990386992692947, + -0.0018091464880853891, + 0.0063785649836063385, + -0.01580219157040119, + 0.0056081716902554035, + -0.002778527559712529, + -0.001576385460793972, + 0.017846837639808655, + -0.019248880445957184, + 0.0025959699414670467, + -0.011968480423092842, + -0.022447289898991585, + 0.021424967795610428, + -0.01691214181482792, + -0.009471091441810131, + 0.015349448658525944, + -0.0016484956722706556, + 0.00852909404784441, + 0.011639876291155815, + -0.006944493390619755, + 0.005140823777765036, + -0.01723344437777996, + 0.0066889128647744656, + -0.011807830072939396, + -0.000828811782412231, + 0.014217590913176537, + 0.011406202800571918, + -0.008025234565138817, + 0.01683911867439747, + -0.018299579620361328, + 0.030640479177236557, + -0.01469954289495945, + 0.020475666970014572, + -0.02025659941136837, + -0.006535564549267292, + -0.004947312641888857, + 0.013041920028626919, + -0.06466922909021378, + -0.0008320065680891275, + 0.006407774053514004, + -0.002316656755283475, + 0.0020519481040537357, + 0.002013611141592264, + 0.009617137722671032, + 0.011406202800571918, + 0.0076820263639092445, + 0.01545168086886406, + 0.0006699866498820484, + 0.00927392952144146, + -0.013516569510102272, + -0.005075103137642145, + -0.01863548718392849, + -0.0264927688986063, + -0.009032953530550003, + 0.022841615602374077, + 0.0010451426496729255, + -0.024462727829813957, + -0.011004576459527016, + -0.0170435830950737, + -0.0025594583712518215, + 0.010924250818789005, + -0.015568518079817295, + -0.032013311982154846, + -0.005801682360470295, + -0.008981836959719658, + -0.012632990255951881, + 0.025119934231042862, + 0.006528262048959732, + 0.024199843406677246, + 0.005651985295116901, + 0.01234089769423008, + 0.015919027850031853, + 0.02824532240629196, + 0.015203402377665043, + 0.025558073073625565, + -0.02815769426524639, + -0.0052832188084721565, + 0.02658039517700672, + 0.03248066082596779, + -0.008339233696460724, + 0.008324629627168179, + -0.005597217939794064, + -0.004498220980167389, + -0.02028580754995346, + 0.009047557599842548, + -0.0020756807643920183, + -8.061061816988513e-5, + -0.02019817940890789, + 0.0011601540027186275, + 0.00928123202174902, + -0.011099506169557571, + -0.001916855457238853, + -0.01999371498823166, + 0.016138097271323204, + 0.023849332705140114, + 0.011406202800571918, + -0.018314184620976448, + 0.013574987649917603, + 0.027018534019589424, + -0.0005800770013593137, + -0.005224800202995539, + 0.002608749084174633, + 0.04381383955478668, + -0.0006028966745361686, + 0.004432499874383211, + 0.0007334254332818091, + 0.005067800637334585, + 0.026040025055408478, + 0.022461894899606705, + -0.01837260276079178, + 0.02812848426401615, + -0.015247216448187828, + -0.00706133060157299, + -0.008251606486737728, + 0.01228247955441475, + -0.00016361731104552746, + 0.009237417951226234, + -0.0266388151794672, + 0.011493830941617489, + 0.008704349398612976, + 0.002656213939189911, + -0.016021260991692543, + -0.006889726500958204, + -0.023966170847415924, + 5.000368400942534e-5, + -0.002141401404514909, + 0.009091371670365334, + 0.0108658317476511, + -0.03411637619137764, + -0.041477102786302567, + -0.009719369933009148, + 0.0015836877282708883, + 0.02770495042204857, + -0.006024403031915426, + -0.05462125316262245, + -0.024316681548953056, + -0.023630263283848763, + -0.01088043674826622, + 0.010909645818173885, + -0.012990803457796574, + -0.024375099688768387, + 0.006477145943790674, + -0.016167307272553444, + -0.007806165609508753, + -0.0033042938448488712, + 0.0019132043235003948, + -0.02034422568976879, + -0.0003637461340986192, + -0.016795305535197258, + -0.005224800202995539, + 0.019497158005833626, + 0.005359893199056387, + -0.006714470684528351, + -0.010237833485007286, + 0.014327125623822212, + 0.008412256836891174, + 0.02199454791843891, + 0.04305439814925194, + 0.029077785089612007, + 0.005812636110931635, + 0.018138930201530457, + 0.008908813819289207, + 0.011355087161064148, + 0.005557055119425058, + 0.01234820019453764, + 0.030260758474469185, + -0.004114849958568811, + -0.0035635256208479404, + -0.03087415173649788, + -0.03572288528084755, + -0.018153533339500427, + -0.006853214930742979, + 0.011311273090541363, + -0.0027292370796203613, + 0.006225216202437878, + -0.005812636110931635, + 0.029180016368627548, + -0.014575404115021229, + 0.007400887552648783, + -0.02168785035610199, + 0.00014752941206097603, + -0.005480381194502115, + -0.01397661492228508, + 0.012479642406105995, + 0.004147710278630257, + 0.0056008691899478436, + -0.014984332956373692, + 0.021424967795610428, + -0.015071961097419262, + -0.019862273707985878, + -0.0036767113488167524, + 0.020636318251490593, + -0.045595601201057434, + -0.022315848618745804, + -0.024258263409137726, + 0.010456902906298637, + -0.018007488921284676, + 0.01545168086886406, + 0.021001433953642845, + -0.002948306268081069, + -0.003906733822077513, + 0.022607941180467606, + -0.0010341891320422292, + 0.0012769908644258976, + 0.006677959579974413, + 0.01707279309630394, + -0.036365486681461334, + 0.005075103137642145, + -0.029121598228812218, + 0.006013449281454086, + 0.0092666270211339, + 0.02776337042450905, + 0.0037059206515550613, + 0.016152702271938324, + -0.013370523229241371, + 0.02158561907708645, + 0.004560290370136499, + 0.013874382711946964, + -0.013282896019518375, + -0.039636921137571335, + -0.004494569730013609, + 0.002172436099499464, + -0.022622546181082726, + 0.006710819900035858, + -0.009617137722671032, + -0.003547095460817218, + -0.012946989387273788, + 0.011165226809680462, + -0.0027639230247586966, + -0.01559772714972496, + -0.017949068918824196, + -0.003961501177400351, + -0.014327125623822212, + -0.009317743591964245, + -0.007046726066619158, + 0.0015207052929326892, + -0.025499654933810234, + 0.005009382497519255, + -0.005239405203610659, + 0.003950547892600298, + -0.01878153346478939, + 0.006356657948344946, + 0.019599391147494316, + -0.010646763257682323, + 0.04606295004487038, + -0.02817229926586151, + 0.010551832616329193, + -0.01856246404349804, + 0.014202985912561417, + -0.025309795513749123, + -0.023951565846800804, + -0.018036697059869766, + -0.019321903586387634, + -0.010354670695960522, + -0.010551832616329193, + -0.004958266392350197, + 0.02160022221505642, + -0.031867265701293945, + 0.027354439720511436, + 0.04696843773126602, + 0.0023257846478372812, + -0.007287702057510614, + 0.010252438485622406, + 0.01682451367378235, + -0.01840181276202202, + -0.00044338693260215223, + -0.01388898678123951, + 0.014385543763637543, + -0.010033369064331055, + 0.04007505998015404, + -0.0011793224839493632, + -0.001689571188762784, + 0.017876045778393745, + 0.01889836974442005, + -0.022038361057639122, + 0.019278088584542274, + 0.05263502523303032, + -0.04530350863933563, + 0.001632978324778378, + -0.0013874382711946964, + 0.004275500308722258, + -0.008499884977936745, + -0.016634654253721237, + 0.00010325918265152723, + -0.00536354398354888, + -0.020913805812597275, + -0.019570181146264076, + -0.012581874616444111, + 0.004395988769829273, + -0.014108056202530861, + 0.01736488565802574, + 0.02474021539092064, + 0.003987059462815523, + 0.006787493824958801, + -0.011179831810295582, + -0.0020209134090691805, + 0.00047601910773664713, + -0.014809077605605125, + -0.012983500957489014, + -0.001778111676685512, + -0.01723344437777996, + -0.0003101198235526681, + 0.011501132510602474, + -0.008127466775476933, + 0.0010533577296882868, + -0.026726441457867622, + -0.00854369904845953, + -0.00469903415068984, + 0.014925914816558361, + 0.008697046898305416, + 0.0008548262412659824, + -0.029136203229427338, + -0.02476942352950573, + -0.0015681703807786107, + 0.0010807414073497057, + -0.006959098391234875, + 0.008346536196768284, + 0.001003154320642352, + -0.0026233536191284657, + -0.014728751964867115, + -0.012136433273553848, + -0.008981836959719658, + -0.013633406721055508, + 0.006615889724344015, + -0.013450848869979382, + -0.00511161470785737, + 0.011837039142847061, + 0.001720606000162661, + -0.005411009304225445, + -0.0074593061581254005, + -0.019146647304296494, + 0.0020409945864230394, + -0.006126635242253542, + 0.004954615142196417, + -0.0052868700586259365, + -0.001494234544225037, + 0.006630494259297848, + -0.002139575779438019, + -0.014188381843268871, + -0.004976521711796522, + -0.0016777049750089645, + -0.011523040011525154, + 0.006236169952899218, + 0.005502288229763508, + 0.014524287544190884, + 0.008945325389504433, + 0.009500300511717796, + -0.003127212869003415, + -0.0005695798899978399, + 0.0018009314080700278, + -0.02763192728161812, + 0.0014677636791020632, + 0.004994777496904135, + -0.007287702057510614, + -0.0035635256208479404, + 0.050736427307128906, + -0.005871054716408253, + -0.006020751781761646, + -0.007557887118309736, + -0.008331932127475739, + -0.024433517828583717, + -0.010120997205376625, + 0.030056294053792953, + -0.00785728171467781, + -0.008178583346307278, + 0.011128715239465237, + -0.02825992740690708, + 0.009507603012025356, + 0.00925932452082634, + -0.022973056882619858, + 0.019526368007063866, + 0.01081471610814333, + 0.015071961097419262, + -0.0027365393470972776, + 0.011508435010910034, + 0.015875214710831642, + 0.009054860100150108, + 0.0014111706987023354, + 0.005750566255301237, + -0.011252854019403458, + 0.009463788941502571, + 0.00933965016156435, + 0.0092666270211339, + -0.014144567772746086, + 0.009587928652763367, + 0.028610438108444214, + -0.0055205440148711205, + -0.029939457774162292, + -0.010705181397497654, + -0.003355409950017929, + -0.0005330683779902756, + -1.0639689207891934e-5, + 0.01848944090306759, + -0.0005367195117287338, + 0.010413088835775852, + -0.0028424228075891733, + -0.02338198572397232, + 0.021045247092843056, + 0.005425613839179277, + -0.014626519754529, + -0.015320239588618279, + 0.012691408395767212, + -0.0057432642206549644, + 0.011121412739157677, + 0.011464620940387249, + -0.014918612316250801, + -0.009894625283777714, + 0.009609835222363472, + 0.011106808669865131, + 0.007755049504339695, + -0.0028424228075891733, + 0.011997689493000507, + 0.0036383741535246372, + -0.010383879765868187, + 0.0006316495127975941, + -0.033094052225351334, + -0.016503212973475456, + -0.03213014826178551, + -0.014378241263329983, + 0.0030176781583577394, + -0.0010652239434421062, + -0.011493830941617489, + -0.029106993228197098, + 0.008331932127475739, + -0.010055276565253735, + -0.002086634049192071, + 0.008039839565753937, + 0.01721883937716484, + -0.019570181146264076, + -0.015203402377665043, + 0.008645931258797646, + 0.011355087161064148, + 0.015948237851262093, + -0.006393169518560171, + -0.0005476729711517692, + -0.015568518079817295, + 0.005137172527611256, + -0.008171280845999718, + -0.00784997921437025, + 0.015101170167326927, + 0.0031399917788803577, + 0.023703286424279213, + -0.016298748552799225, + 0.003006724640727043, + -0.021103665232658386, + -0.002886236645281315, + 0.0037679902743548155, + -0.012151038274168968, + -0.007002911996096373, + 0.007028470281511545, + 0.005473078694194555, + -0.008215094916522503, + -0.004169616848230362, + 0.00040550620178692043, + 0.008828489109873772, + 0.00038588125607930124, + 0.010405787266790867, + 0.013377825729548931, + 0.010515321046113968, + 0.01315145380795002, + -0.006006147246807814, + 0.02799704298377037, + 0.0052759163081645966, + -0.004395988769829273, + -0.016722282394766808, + -0.005659287795424461, + -0.01543707586824894, + 0.001371920807287097, + 0.005268614273518324, + -0.018357999622821808, + 0.0007019342156127095, + 0.00389578053727746, + -0.012392014265060425, + -0.012567269615828991, + -0.0009912881068885326, + -0.022724777460098267, + 0.012070712633430958, + 0.016108889132738113, + -0.01398391742259264, + 0.014677636325359344, + 0.007499468978494406, + -0.016678467392921448, + -0.00787918921560049, + -0.004012617282569408, + 0.013684522360563278, + 0.009230115450918674, + 0.006637796759605408, + 0.0168975368142128, + 0.007996025495231152, + 0.00194789026863873, + -0.012574572116136551, + 0.014809077605605125, + 0.008215094916522503, + 0.00624347198754549, + -0.016196515411138535, + 0.026010816916823387, + 0.003757036756724119, + -0.0050604986026883125, + 0.028478994965553284, + -0.016444794833660126, + 0.003961501177400351, + 0.010661367326974869, + -0.008704349398612976, + 0.017379488795995712, + -0.012830153107643127, + 0.04480695351958275, + -0.025806350633502007, + -0.001862088218331337, + 0.015291029587388039, + -0.0005230277311056852, + 0.013275593519210815, + -0.0131733613088727, + 0.003264131024479866, + -0.0033663632348179817, + -0.0016101585933938622, + 0.00625077448785305, + -0.008974534459412098, + -0.010778204537928104, + -0.010434996336698532, + -0.020869992673397064, + 0.01562693528831005, + -0.0015992051921784878, + 0.027588114142417908, + 0.027193790301680565, + 0.00732786487787962, + -0.008821186609566212, + -0.00503494031727314, + 0.0001614494394743815, + -0.031692009419202805, + 0.02157101407647133, + 0.0020409945864230394, + -0.004246291238814592, + 0.007514073513448238, + -0.02195073291659355, + 0.01249424647539854, + -0.00772584043443203, + -0.01883995160460472, + 0.01329019758850336, + -0.015612331219017506, + -0.0071380045264959335, + -0.0084487684071064, + -0.005878356751054525, + -0.0021925175096839666, + -0.01683911867439747, + 0.01331210508942604, + -0.013377825729548931, + 0.010843925178050995, + -0.02615686133503914, + 0.006787493824958801, + -0.025441236793994904, + -0.015261820517480373, + 0.0173356756567955, + 0.010858530178666115, + 0.009230115450918674, + 0.009916532784700394, + 0.005005731247365475, + 0.014400148764252663, + 0.006429681088775396, + 0.008390350267291069, + -0.016196515411138535, + -0.0076893288642168045, + -0.014297916553914547, + -0.01875232346355915, + -0.014509683474898338, + 0.012779036536812782, + -0.0340871661901474, + -0.0005198329454287887, + 0.009025651030242443, + 0.0024864354636520147, + -0.029866434633731842, + 0.0005453909980133176, + 0.006196007132530212, + 0.013998521491885185, + 0.010376577265560627, + -0.002466354053467512, + 0.01243582833558321, + 0.0074593061581254005, + 0.007952211424708366, + 0.009441882371902466, + -0.014823682606220245, + -0.0015709087019786239, + -0.008280815556645393, + 0.006944493390619755, + 0.021118270233273506, + -0.006320146378129721, + 0.03256828710436821, + 0.007944909855723381, + -0.01318066380918026, + 0.012611083686351776, + -0.009084069170057774, + 0.021293526515364647, + 0.020811574533581734, + 0.008726255968213081, + 0.010398484766483307, + -0.011968480423092842, + -0.02493007481098175, + 0.022432686761021614, + -0.0021067154593765736, + 0.0084487684071064, + 0.010778204537928104, + 0.0004173724737484008, + 0.015407866798341274, + -0.012844757176935673, + 0.0025959699414670467, + -2.8652995752054267e-5, + -0.008149374276399612, + -0.009032953530550003, + -0.031545963138341904, + 0.008981836959719658, + 0.034905023872852325, + -0.00470998790115118, + 0.014750659465789795, + 0.019059021025896072, + 0.011479225941002369, + -0.022082176059484482, + -0.004688080865889788, + -0.006382215768098831, + -0.014202985912561417, + 0.02339659072458744, + -0.004176919348537922, + 0.01308573316782713, + 0.005765171255916357, + 0.01082932110875845, + 0.02323593944311142, + -0.016663864254951477, + 0.004556639119982719, + 0.01080011110752821, + 0.008799279108643532, + 0.009792393073439598, + -0.004111198708415031, + -0.00309070129878819, + -0.0022235524374991655, + -0.008835790678858757, + 0.007711235899478197, + 0.009149789810180664, + -0.007192771881818771, + 0.01705818809568882, + -0.004556639119982719, + -0.022520313039422035, + -0.012034201063215733, + -0.03627786040306091, + -0.01478717103600502, + -0.005630078259855509, + -0.02005213312804699, + 0.0076966313645243645, + 0.0047391969710588455, + -0.008879604749381542, + 3.7595469621010125e-5, + 0.003439386375248432, + 0.0015298331854864955, + -0.006418727338314056, + 0.0028825856279581785, + 0.005246707238256931, + 0.014925914816558361, + -0.0030760967638343573, + -0.004830475896596909, + -0.029180016368627548, + -0.007415492553263903, + -0.009032953530550003, + -0.023586450144648552, + -0.013655313290655613, + 0.0074666086584329605, + 0.0010250612394884229, + -0.007167214062064886, + 0.021308131515979767, + 0.013122244738042355, + 0.0006170449196361005, + 0.007901095785200596, + -0.02317752130329609, + -0.004534732550382614, + -0.01575837843120098, + -0.0009054859983734787, + 0.012990803457796574, + 0.002176087349653244, + 0.0029410040006041527, + -0.0029939457308501005, + -0.001978925196453929, + 0.015349448658525944, + 0.02193612977862358, + -0.005213846918195486, + 0.004501872230321169, + 0.017803022637963295, + 0.022505708038806915, + 0.02625909447669983, + -0.009310441091656685, + 0.019278088584542274, + 0.002630655886605382, + -0.009441882371902466, + -0.0018785183783620596, + -0.010654065757989883, + 0.017642373219132423, + -0.011493830941617489, + 0.0014084323775023222, + -0.011880853213369846, + -0.006017100531607866, + -0.01889836974442005, + -0.00036579993320629, + 0.001486932160332799, + -0.006499052979052067, + -0.002658039564266801, + 0.017496326938271523, + 0.017759209498763084, + -0.011274761520326138, + 0.006685261614620686, + 0.019482554867863655, + 0.010405787266790867, + 0.01243582833558321, + 0.019132044166326523, + -0.005582613404840231, + -0.004275500308722258, + -0.0007608090527355671, + -0.0015928156208246946, + 0.0016110714059323072, + -0.0005777950282208622, + 0.009069465100765228, + -0.02034422568976879, + 0.02037343569099903, + -0.02015436626970768, + -0.011822434142231941, + -0.009303138591349125, + 0.008368443697690964, + -0.00504589406773448, + 0.02011055313050747, + -0.011376993730664253, + -0.0009123319177888334, + -0.004118500743061304, + -0.019394926726818085, + -0.0032988169696182013, + -0.005538799334317446, + -0.005557055119425058, + 0.0046442667953670025, + 0.017876045778393745, + 0.002776702167466283, + -0.004987475462257862, + -0.0010195845970883965, + 0.03099098987877369, + 0.0076893288642168045, + -0.028654251247644424, + 0.00698100496083498, + 0.016444794833660126, + 0.006426029838621616, + -0.015188797377049923, + 0.02024199441075325, + -0.011479225941002369, + -0.019745437428355217, + -0.0049692196771502495, + 0.0010277996771037579, + 0.008207792416214943, + -0.007127051241695881, + 0.004549337085336447, + -0.00510431220754981, + -0.020607110112905502, + 0.018051302060484886, + 0.012764431536197662, + -0.0006348442984744906, + 0.004253593739122152, + -0.0035288396757096052, + -0.0003208451089449227, + 0.013801359571516514, + -0.010310856625437737, + -0.031867265701293945, + -0.009982253424823284, + 0.0052795675583183765, + 0.02929685451090336, + -0.01227517705410719, + 0.016152702271938324, + 0.0023695984855294228, + -0.007667421828955412, + 0.003267782274633646, + -0.0007900182972662151, + 0.0007169952150434256, + 0.01581679657101631, + 0.002656213939189911, + 0.005871054716408253, + -0.0017014374025166035, + 0.036599159240722656, + -0.003579955780878663, + 0.025952396914362907, + 0.014407451264560223, + 0.0025868420489132404, + -0.01724804751574993, + 0.02630290761590004, + -0.002550330478698015, + -0.008748163469135761, + 0.030260758474469185, + -0.024287471547722816, + -0.01720423437654972, + 0.0060499608516693115, + 0.025733329355716705, + -0.01391089428216219, + -0.01730646751821041, + 0.0027274114545434713, + -0.007981421425938606, + -0.007353422697633505, + 0.008791977539658546, + -0.03218856826424599, + -0.002858852967619896, + -0.0033645378425717354, + 0.02472561039030552, + 0.014305219054222107, + 0.027354439720511436, + 0.0032696076668798923, + 0.01881074160337448, + 0.007229283452033997, + -0.009719369933009148, + -0.006520960014313459, + 0.025879373773932457, + 0.025455839931964874, + -0.005170032847672701, + -0.03470056131482124, + -0.021147480234503746, + -0.0026251792442053556, + 0.013385128229856491, + 0.014823682606220245, + -0.03683283552527428, + -0.0026726440992206335, + -0.006783843040466309, + 0.004501872230321169, + 0.0036274208687245846, + 0.0013545778347179294, + 0.015218007378280163, + 0.015028147026896477, + 0.015393262729048729, + -0.01156685408204794, + 0.006754633504897356, + -0.016284143552184105, + 0.00038633766234852374, + 0.005264963023364544, + -0.016225725412368774, + -0.009799695573747158, + 0.005801682360470295, + -0.019789250567555428, + -0.008755465969443321, + 0.0060572633519768715, + -0.005666589830070734, + 0.008346536196768284, + 0.010427693836390972, + -0.017919860780239105, + -0.0006882423767820001, + 0.020928410813212395, + -0.017496326938271523, + -0.01155955158174038, + 0.008025234565138817, + -0.005535148549824953, + -0.0032531775068491697, + -0.0009766834555193782, + 0.003696792759001255, + 0.0007452916470356286, + -0.006407774053514004, + -0.013604196719825268, + -0.006356657948344946, + 0.018985997885465622, + 0.033502981066703796, + -0.013940103352069855, + -0.002037343569099903, + 0.009872718714177608, + -0.015188797377049923, + -0.015992050990462303, + 0.0012176596792414784, + -0.0007585270795971155, + 0.004611406475305557, + -0.000945648702327162, + 0.01729186251759529, + 0.01463382225483656, + 0.019628599286079407, + 0.009982253424823284, + 0.03084494359791279, + -0.020519481971859932, + 0.015977445989847183, + 0.00022557281772606075, + 0.001776286051608622, + 0.012465037405490875, + -0.0061777513474226, + 0.03096177987754345, + -0.004826824646443129, + 0.008171280845999718, + -0.031896475702524185, + -7.171093602664769e-5, + 0.01315875630825758, + 0.008733558468520641, + -0.011296668089926243, + -0.002455400535836816, + 0.008806581608951092, + 0.000702390621881932, + 0.003233096329495311, + 0.004049128852784634, + 0.006017100531607866, + -0.013772150501608849, + 0.001549001783132553, + 0.004176919348537922, + 0.022900033742189407, + 0.007587096653878689, + 0.008485279977321625, + 0.033532191067934036, + -0.007842677645385265, + 0.014597310684621334, + -0.0011784096714109182, + 0.022680964320898056, + -0.026916302740573883, + -0.012238665483891964, + -0.019190462306141853, + 0.004571244120597839, + -0.00787188671529293, + -0.006079170387238264, + -0.009127883240580559, + -0.01847483590245247, + -0.005808984860777855, + 0.03090336173772812, + -0.004669825080782175, + 0.008996441960334778, + -0.02028580754995346, + 0.014495078474283218, + -0.001887646270915866, + -0.005925821606069803, + 0.019175857305526733, + -0.004852382931858301, + -0.011136017739772797, + 0.00847797840833664, + 0.00038474026951007545, + -0.00537449773401022, + 0.009646346792578697, + 0.029238436371088028, + 0.02465258724987507, + -0.007769654039293528, + -0.006261727772653103, + 0.0029117946978658438, + -0.014312520623207092, + -0.016474002972245216, + -0.002154180547222495, + 0.015495494939386845, + 0.004257244523614645, + -0.023688683286309242, + -0.009237417951226234, + 0.005754217505455017, + 0.01564154028892517, + 0.004151361528784037, + -0.003353584324941039, + -0.020796969532966614, + 0.003404700430110097, + -0.0017379489727318287, + 0.024185240268707275, + 0.0034211305901408195, + 0.0021359247621148825, + 0.008989139460027218, + -0.044251978397369385, + -0.008791977539658546, + -0.01990608684718609, + -0.0056045204401016235, + -0.009770486503839493, + 0.0051992423832416534, + -0.0016256760573014617, + -0.007346120662987232, + -0.002975689945742488, + -0.013458151370286942, + -0.022929241880774498, + -0.0008977273246273398, + -0.0006594895385205746, + 0.0058235893957316875, + -0.0025046912487596273, + 0.013209872879087925, + -0.017846837639808655, + 0.017905255779623985, + -0.009909230284392834, + -0.0021286222618073225, + 0.015875214710831642, + -0.011917364783585072, + 0.001916855457238853, + 0.018255766481161118, + -0.020869992673397064, + -0.0038519666995853186, + 0.00787918921560049, + 0.02790941670536995, + -0.02786560170352459, + 0.013881685212254524, + 0.001887646270915866, + -0.01250885147601366, + -0.012004991993308067, + -0.0022746685426682234, + 0.015846004709601402, + 0.00016806715575512499, + -0.008645931258797646, + 0.007820770144462585, + 0.003123561618849635, + 0.022680964320898056, + -0.016269538551568985, + 0.00853639654815197, + 0.0123555026948452, + -0.00847067590802908, + -0.03458372503519058, + -0.00469903415068984, + 0.004856033716350794, + -0.025397421792149544, + 0.009741277433931828, + 0.009368859231472015, + -0.013823266141116619, + 0.011581458151340485, + -0.018854554742574692, + -0.0032203171867877245, + 0.006385867018252611, + 0.014809077605605125, + -0.011990386992692947, + 0.002009959891438484, + -0.00010166179708903655, + -0.012837454676628113, + 0.020650923252105713, + -0.010763599537312984, + -0.019263485446572304, + -0.0011592411901801825, + 0.006316495127975941, + -0.014604613184928894, + -0.00779156107455492, + 0.023732496425509453, + -0.0185332540422678, + 0.023995378986001015, + 0.004574894905090332, + -0.025382816791534424, + -0.027193790301680565, + -0.009310441091656685, + 0.013509267009794712, + -0.0004965568659827113, + 0.00025398333673365414, + 0.0263467226177454, + -0.005381799768656492, + 0.01315875630825758, + 0.0014677636791020632, + -0.011888154782354832, + 0.02793862484395504, + -0.022856218740344048, + 0.008938022889196873, + 0.002470005303621292, + -0.0022180755622684956, + -0.019044416025280952, + -0.009441882371902466, + -0.008645931258797646, + -0.02627369947731495, + 0.00469903415068984, + -0.0029337017331272364, + -0.0073753297328948975, + 0.01396931242197752, + -1.5089532098500058e-5, + 0.016152702271938324, + 0.013348616659641266, + 0.003065143246203661, + -0.0014339904300868511, + 0.00510796345770359, + -0.007039423566311598, + -0.012216758914291859, + -0.016050469130277634, + -0.0018255766481161118, + 0.022666359320282936, + 0.009032953530550003, + -0.016284143552184105, + -0.0065976339392364025, + -0.025762537494301796, + 0.0007420969195663929, + -0.0235134270042181, + -0.013414337299764156, + 0.003353584324941039, + -0.0015709087019786239, + 0.003946896642446518, + 0.005542450584471226, + 0.01717502437531948, + -0.0031454686541110277, + 0.02199454791843891, + -0.0005659287562593818, + 0.011435411870479584, + 0.013538476079702377, + -0.005348939448595047, + -0.008404955267906189, + -0.014626519754529, + -0.03294800594449043, + 0.009660951793193817, + 0.004395988769829273, + 0.005699450150132179, + 0.010544531047344208, + 0.00784997921437025, + -0.013618801720440388, + -0.017510931938886642, + 0.019511763006448746, + 0.0003023611207026988, + -0.012559967115521431, + 0.002205296652391553, + 0.014144567772746086, + 0.009317743591964245, + -0.0015416995156556368, + 0.02041724883019924, + 0.0038045018445700407, + -0.015860609710216522, + 0.019248880445957184, + -0.0019022509222850204, + -0.02179008349776268, + 0.0010396658908575773, + -0.003694967133924365, + 0.0006038094870746136, + 0.0037369553465396166, + -0.011157924309372902, + -0.0170435830950737, + 0.00014638842549175024, + 0.005728659685701132, + 0.0010560960508883, + -0.006349355448037386, + -0.00861672218888998, + 0.0035854324232786894, + -0.006122983992099762, + 0.02947210893034935, + -0.016006655991077423, + -0.0018137104343622923, + 0.015174193307757378, + -0.0019460647599771619, + 0.014984332956373692, + -0.0044215465895831585, + 0.011230947449803352, + 0.005071451887488365, + 0.015232611447572708, + 0.021205898374319077, + 0.015349448658525944, + 0.023717891424894333, + 0.0019387623760849237, + 0.02484244666993618, + -0.015977445989847183, + 0.009872718714177608, + 0.01707279309630394, + -0.017423303797841072, + 0.001112688914872706, + 0.022067571058869362, + 0.02325054444372654, + -0.016415584832429886, + -0.001003154320642352, + -0.005126219242811203, + -0.019248880445957184, + -0.01074899546802044, + -0.0076820263639092445, + 0.0049619171768426895, + 0.013684522360563278, + 0.021191293373703957, + -0.005348939448595047, + 0.005991542711853981, + -0.04953884705901146, + 0.001977099571377039, + -0.01699976995587349, + -0.011654481291770935, + 0.0020154365338385105, + 0.006382215768098831, + 0.02786560170352459, + 0.025499654933810234, + 0.013501964509487152, + -0.003939594607800245, + -0.029910247772932053, + 0.005933124106377363, + 0.0060572633519768715, + 0.0057432642206549644, + -0.0017625942127779126, + -0.003012201515957713, + -0.022505708038806915, + 0.008959930390119553, + 0.0024261914659291506, + -0.003464944427832961, + 0.011493830941617489, + -0.00625077448785305, + 0.006155844312161207, + 0.011011878028512001, + -0.01580219157040119, + 0.0037004437763243914, + -0.003377316752448678, + 0.005951379891484976, + 0.010537228547036648, + 0.001404781243763864, + -0.006382215768098831, + -0.014334428124129772, + -0.002407935680821538, + 0.021089062094688416, + 0.012377409264445305, + -0.0022710172925144434, + 0.005356241948902607, + 0.011639876291155815, + -0.01875232346355915, + -0.017934465780854225, + 0.015013542026281357, + -0.021337339654564857, + -0.033444564789533615, + -0.0017799371853470802, + 0.0019077275646850467, + -0.015174193307757378, + 0.005005731247365475, + -0.003786246059462428, + -0.01851864904165268, + 0.02348421886563301, + -0.003003073623403907, + 0.022841615602374077, + 0.00846337340772152, + -0.025893978774547577, + -0.00851448904722929, + -9.127883458859287e-6, + 0.018036697059869766, + -0.0029702133033424616, + 0.02938448265194893, + -0.026083840057253838, + -0.009303138591349125, + 0.0009702940005809069, + 0.004866987466812134, + -0.0018839951371774077, + -0.013421639800071716, + 0.0012222235091030598, + -0.012647595256567001, + -0.011084901168942451, + -0.01318066380918026, + 0.010194020345807076, + 0.016503212973475456, + 0.010456902906298637, + -0.028741879388689995, + 0.012012294493615627, + -0.019336508587002754, + 0.002495563356205821, + 0.007265795022249222, + 0.011340482160449028, + 0.012764431536197662, + 0.002543028211221099, + 0.013268291018903255, + -0.01316605880856514, + 0.02780718356370926, + -0.023601055145263672, + -0.0013317582197487354, + -0.00617044884711504, + -0.00920090638101101, + -0.019117439165711403, + -0.010924250818789005, + -0.0072329347021877766, + 0.0017279082676395774, + 0.012311688624322414, + 0.0312538705766201, + 0.006794796325266361, + -0.0021596571896225214, + -0.013735638931393623, + -0.008061746135354042, + 0.007740444969385862, + -0.01879613660275936, + -0.009441882371902466, + -0.0007238411344587803, + 0.01847483590245247, + -0.007032121066004038, + 0.002723760437220335, + 0.014663031324744225, + -0.00105974730104208, + -0.004406942054629326, + 0.02184850163757801, + 0.00784997921437025, + -0.00999685749411583, + 0.015393262729048729, + -0.007660119794309139, + 0.0021633084397763014, + -0.007484864443540573, + 0.01574377343058586, + 0.011639876291155815, + -0.007411841303110123, + 0.007448352873325348, + 0.018022092059254646, + 0.020943015813827515, + -0.002035517944023013, + -0.010267043486237526, + -0.010931553319096565, + -0.01088773924857378, + -0.04983093962073326, + -0.005684845615178347, + -0.005210195668041706, + 0.015057356096804142, + -0.0032221428118646145, + 0.0036274208687245846, + 0.009142488241195679, + -0.009011046029627323, + 0.02011055313050747, + 0.00038154551293700933, + 0.005542450584471226, + -0.01471414789557457, + -0.012450432404875755, + -0.020709341391921043, + -0.0019697973039001226, + 0.00664509879425168, + -0.0013290197821334004, + 0.019102834165096283, + -0.0012194851879030466, + -0.0021852152422070503, + -0.003910385072231293, + -0.008806581608951092, + -0.0204610638320446, + -0.007966816425323486, + 0.02190691977739334, + 0.007981421425938606, + 0.019876878708600998, + 0.003315247129648924, + -0.0033681888598948717, + -0.0028022602200508118, + -0.00919360388070345, + -0.00033636248554103076, + 0.007842677645385265, + -0.012063410133123398, + 0.02637593075633049, + -0.021351944655179977, + -0.006944493390619755, + -0.01405694056302309, + -0.004841429181396961, + 0.009668254293501377, + -0.015962842851877213, + 0.0031582475639879704, + -0.013027315028011799, + 0.007043074816465378, + -0.012165642343461514, + -0.00858751218765974, + 0.017905255779623985, + -0.011252854019403458, + 0.004151361528784037, + 0.0005234840791672468, + -0.0057432642206549644, + -0.01724804751574993, + -0.016547026112675667, + 0.0032604800071567297, + 0.013049221597611904, + -0.005301474593579769, + 0.00932504516094923, + -0.019876878708600998, + 0.0025886676739901304, + 0.010661367326974869, + 0.005958682391792536, + -0.009288533590734005, + -0.01485289167612791, + 0.005469427444040775, + 0.019263485446572304, + 0.018124325200915337, + 0.0032550031319260597, + 0.019482554867863655, + 0.02951592393219471, + 0.02777797356247902, + -0.03689125180244446, + 0.001889471779577434, + -0.006871470715850592, + 0.009697463363409042, + -0.01574377343058586, + 0.01404233556240797, + 0.008105560205876827, + -0.0063749137334525585, + -0.001402955618686974, + 0.016474002972245216, + 0.006637796759605408, + 0.001060659997165203, + 0.013728336431086063, + 0.002581365406513214, + -0.002066552871838212, + -0.011800527572631836, + 0.005757868755608797, + 0.005940426606684923, + -0.01990608684718609, + -0.008821186609566212, + 0.02300226502120495, + 0.01727725751698017, + -0.01851864904165268, + 0.00024508367641828954, + 0.013618801720440388, + 0.004140407778322697, + -0.016488607972860336, + -0.004023571033030748, + 0.01879613660275936, + 0.003910385072231293, + -0.0038264086470007896, + 0.0030505384784191847, + -0.010325461626052856, + 0.01089504174888134, + 0.024477330967783928, + 0.0026489116717129946, + -0.029939457774162292, + 0.01730646751821041, + -0.010486111976206303, + 0.01484558917582035, + 0.03762148320674896, + 0.005524194799363613, + -0.008777372539043427, + 0.011303970590233803, + -0.017934465780854225, + 0.013596895150840282, + 0.01093885488808155, + -0.004030873067677021, + -0.016444794833660126, + 0.006217914167791605, + -0.016371771693229675, + -0.021205898374319077, + -0.019175857305526733, + -0.012099921703338623, + 0.012757129967212677, + -0.0035909092985093594, + 0.004060082603245974, + -0.00738628301769495, + -0.024433517828583717, + -0.004804917611181736, + -0.009463788941502571, + 0.02976420149207115, + -0.0009004657040350139, + 0.011910062283277512, + 0.0022180755622684956, + -0.00036192056722939014, + -0.005980588961392641, + 0.019716227427124977, + -0.013202570378780365, + 0.006133937742561102, + 0.011041088029742241, + -0.0028679808601737022, + 0.02189231477677822, + 0.019263485446572304, + -0.009675555862486362, + -0.03557683899998665, + 0.003035933943465352, + -0.007112446706742048, + 0.01863548718392849, + 0.021132875233888626, + -0.0038264086470007896, + -0.01683911867439747, + 0.029019366949796677, + 0.019307298585772514, + 0.010515321046113968, + 0.007937607355415821, + 0.00939806830137968, + -0.021410362794995308, + -0.0051882886327803135, + -0.012297084555029869, + -0.01020862441509962, + 0.010573740117251873, + 0.014422055333852768, + 0.024608774110674858, + 0.005892961286008358, + -0.0012468688655644655, + 0.013852475211024284, + 0.014166474342346191, + -0.03838092461228371, + -0.01318066380918026, + -0.008901511318981647, + 0.008996441960334778, + -0.008791977539658546, + 0.006999260745942593, + 0.011457319371402264, + -0.004447104874998331, + -0.0010743518359959126, + 0.0029063180554658175, + -0.02025659941136837, + -0.03213014826178551, + 0.009792393073439598, + 0.0034503398928791285, + -0.002203471027314663, + -0.009748579002916813, + -0.00738993426784873, + -0.013684522360563278, + 0.002973864320665598, + 0.011150621809065342, + 0.02329435758292675, + -0.006714470684528351, + 0.0034101770725101233, + 0.004498220980167389, + 0.019833065569400787, + -0.0015928156208246946, + 0.010683274827897549, + 0.007243887986987829, + -0.01391089428216219, + -0.007579794153571129, + 0.00920820888131857, + 5.22000809723977e-5, + 0.017496326938271523, + -0.007557887118309736, + -0.005597217939794064, + 0.018007488921284676, + -0.004958266392350197, + -0.008835790678858757, + -0.017423303797841072, + -0.00042376198689453304, + -0.002263715025037527, + -0.013275593519210815, + -0.002026390051469207, + -0.0005636467831209302, + 0.010632158257067204, + 0.022140594199299812, + -0.006568424869328737, + 0.013217175379395485, + -0.002148703671991825, + 0.02484244666993618, + 0.0013609674060717225, + 0.007309609092772007, + 0.01710200123488903, + -0.017803022637963295, + 0.003035933943465352, + -0.01552470400929451, + 0.011172529309988022, + -0.0014522462151944637, + -0.020796969532966614, + -0.007543282583355904, + 0.005728659685701132, + -0.003862920217216015, + 0.0008876866195350885, + 0.003935943357646465, + 0.01177131850272417, + 0.00577977579087019, + -0.006316495127975941, + 0.011376993730664253, + -0.006006147246807814, + 0.01692674681544304, + 0.008295420557260513, + 0.002433493733406067, + 0.01318066380918026, + 0.003213014919310808, + -0.002873457735404372, + 0.029238436371088028, + -1.8127406292478554e-5, + -0.006469843443483114, + -0.002146878046914935, + 0.014166474342346191, + -0.01581679657101631, + 0.010778204537928104, + -0.01736488565802574, + 0.003998012747615576, + -0.027661137282848358, + 0.015291029587388039, + 0.002329435897991061, + -0.004173268098384142, + -0.012304387055337429, + -0.011165226809680462, + 0.01463382225483656, + 0.01854785904288292, + -0.00365662993863225, + 0.014998937956988811, + 0.016167307272553444, + -0.022900033742189407, + -0.00097485794685781, + -0.03084494359791279, + 0.011004576459527016, + -0.00025489614927209914, + 0.007477561943233013, + -0.0030706198886036873, + 0.009018348529934883, + -0.01567075029015541, + 0.0007092365412972867, + -0.015218007378280163, + -0.012085317634046078, + -0.009566022083163261, + 0.0031710267066955566, + -0.008981836959719658, + -0.00462601101025939, + 0.01698516495525837, + -0.02942829579114914, + -0.008426861837506294, + -0.004523778799921274, + -0.0041002449579536915, + 0.0019022509222850204, + -0.019760042428970337, + -0.030056294053792953, + -0.018971392884850502, + -0.010989971458911896, + 0.01485289167612791, + 0.0029647364281117916, + 0.0023312612902373075, + -0.00537449773401022, + 0.007703933399170637, + -0.036161020398139954, + -0.019891483709216118, + 0.03624865040183067, + -0.023790914565324783, + -0.026054630056023598, + 0.006020751781761646, + -0.007218330167233944, + -0.0004176006477791816, + 0.010632158257067204, + 0.013998521491885185, + -0.005414660554379225, + -0.0009903752943500876, + -0.005549753084778786, + -0.0022837964352220297, + -0.011106808669865131, + 0.012954291887581348, + -0.01463382225483656, + -0.028478994965553284, + 0.01851864904165268, + 0.01873771846294403, + 0.006531913299113512, + 0.028435181826353073, + -0.00771853793412447, + -0.01001876499503851, + 0.028858715668320656, + 0.009894625283777714, + 0.015364052727818489, + -0.01391819678246975, + 0.006166798062622547, + 0.02789481170475483, + 0.013129547238349915, + 0.014882100746035576, + -0.004527430050075054, + 0.005465776659548283, + -0.0037296530790627003, + 0.01167638786137104, + -0.0005627340287901461, + 0.015188797377049923, + 0.00617410009726882, + -0.01735028065741062, + -0.016590841114521027, + 0.000306925066979602, + -0.007404538802802563, + -0.00021222328359726816, + -0.0059623331762850285, + -0.014904007315635681, + 0.0009785090805962682, + -0.017773814499378204, + -0.001145549351349473, + -0.025558073073625565, + 0.027412859722971916, + -0.012297084555029869, + 0.012545363046228886, + -0.003289689077064395, + 0.033123262226581573, + -0.012939686886966228, + -0.017890650779008865, + -0.00023915054043754935, + -0.0030833990313112736, + 0.009931136853992939, + -0.02497388795018196, + -0.004049128852784634, + -0.001143723726272583, + 0.00847067590802908, + 0.012654897756874561, + -0.013034617528319359, + 0.011077598668634892, + -0.013779453001916409, + 0.0185332540422678, + -0.007159911561757326, + -0.02658039517700672, + 0.003579955780878663, + 0.010347368195652962, + -0.01698516495525837, + -0.004056431353092194, + -0.0057396129705011845, + 0.0062909373082220554, + -0.009003744460642338, + -0.008850395679473877, + 0.0068203541450202465, + 0.016240330412983894, + -0.016357166692614555, + -0.012399316765367985, + -0.024608774110674858, + 0.02155640907585621, + -0.005860100965946913, + 0.0470268540084362, + 0.017496326938271523, + 0.02019817940890789, + 0.0019004252972081304, + 0.003267782274633646, + -0.013779453001916409, + -0.006955447141081095, + 0.00925202202051878, + 0.010281647555530071, + -0.0170435830950737, + 0.008383047766983509, + 0.0071416557766497135, + 0.014268707484006882, + 0.009799695573747158, + -0.00014695891877636313, + 0.019687019288539886, + -0.011245552450418472, + 0.0009365208097733557, + -0.005706752650439739, + 0.014597310684621334, + -0.010792809538543224, + -0.017525535076856613, + -0.013669918291270733, + 0.005462125409394503, + -0.008178583346307278, + 0.007616305723786354, + 0.006542866583913565, + -0.00858751218765974, + -0.016167307272553444, + -0.006948144640773535, + 0.017686186358332634, + 0.0026762953493744135, + -0.023630263283848763, + 0.0073643759824335575, + 0.004899847786873579, + 0.01721883937716484, + 0.0017899778904393315, + 0.010668669827282429, + 0.007499468978494406, + 0.02197994291782379, + -0.02609844319522381, + -0.01021592691540718, + 0.006524610798805952, + -0.0027018534019589424, + -0.005330683663487434, + 0.001173845841549337, + 0.0017324722139164805, + 0.028975551947951317, + -0.004410593304783106, + -0.0035671768710017204, + -0.0005837281350977719, + -0.0026489116717129946, + -0.0063785649836063385, + -0.010296252556145191, + 0.011661783792078495, + 0.019190462306141853, + 0.011669086292386055, + -0.02037343569099903, + -0.012771734036505222, + 0.006035356316715479, + 0.013684522360563278, + 0.015320239588618279, + 0.004837777931243181, + 0.012143735773861408, + 0.003753385506570339, + 0.00292274821549654, + 0.019263485446572304, + 0.002230854704976082, + -0.002630655886605382, + -0.0067327264696359634, + 0.009624440222978592, + -0.00853639654815197, + -0.014370939694344997, + -0.011296668089926243, + 0.0015973795671015978, + 0.006320146378129721, + -0.013509267009794712, + -0.011895457282662392, + -0.027617324143648148, + -0.021176688373088837, + -0.0030505384784191847, + -0.014495078474283218, + 0.022155197337269783, + 5.287754447635962e-6, + -0.024214448407292366, + -0.0020720295142382383, + 1.4098301107878797e-5, + -0.002747492864727974, + 0.008748163469135761, + 0.020738551393151283, + 0.0034722466953098774, + 0.004943661391735077, + -0.0016685770824551582, + -0.004720941185951233, + 0.0007735880790278316, + -0.0007457480533048511, + -0.00618140259757638, + -0.012202153913676739, + 0.01324638444930315, + 0.007218330167233944, + -0.007196423131972551, + 0.012085317634046078, + -0.009748579002916813, + 0.02320672944188118, + 0.0030943523161113262, + -0.021118270233273506, + -0.008069048635661602, + -0.01707279309630394, + 0.004845080431550741, + 0.019292693585157394, + -0.01572916842997074, + 0.02024199441075325, + -0.011588760651648045, + 0.015334843657910824, + 8.112406067084521e-5, + -0.0013052873546257615, + 0.007893793284893036, + -0.007302306592464447, + 0.02027120254933834, + -0.006455238908529282, + -0.0018967741634696722, + 0.015130379237234592, + 0.011011878028512001, + 0.01006257813423872, + -0.00511526595801115, + -0.0038227573968470097, + -0.005097010172903538, + -0.008777372539043427, + 0.011019180528819561, + -0.0031655498314648867, + 0.005622776225209236, + -0.01072708796709776, + 0.0027091556694358587, + 0.011778620071709156, + -0.004023571033030748, + -0.022622546181082726, + -0.0068203541450202465, + -0.014809077605605125, + -0.0015946412459015846, + -0.0035616999957710505, + -0.00860211718827486, + 0.00698465621098876, + 0.015904422849416733, + 0.019818460568785667, + -0.001770809292793274, + 0.008010630495846272, + -0.009025651030242443, + 0.012706013396382332, + 0.007733142469078302, + 0.021424967795610428, + -0.0026525629218667746, + -0.009149789810180664, + -0.0036201186012476683, + 0.003119910601526499, + 0.004772057291120291, + 0.02179008349776268, + 0.0037643390242010355, + 0.0019624948035925627, + -0.0037132229190319777, + 0.005936775356531143, + -0.007229283452033997, + 0.015247216448187828, + 0.006210611667484045, + 0.028727274388074875, + 0.0011537644313648343, + 0.003775292541831732, + -0.012720618396997452, + 0.01837260276079178, + -0.021118270233273506, + -0.005688496865332127, + -0.008645931258797646, + -0.016327956691384315, + -0.016474002972245216, + -0.0021085410844534636, + 0.008945325389504433, + 0.011530342511832714, + 0.0035105838906019926, + -4.9689915613271296e-5, + -0.014684938825666904, + 0.011844341643154621, + 0.007452003657817841, + -0.007572492118924856, + -0.006422378588467836, + -0.0034886770881712437, + -0.027296021580696106, + 0.00851448904722929, + -0.012026898562908173, + 0.006871470715850592, + 0.002238156972452998, + -0.011880853213369846, + 0.007068632636219263, + 0.007298655342310667, + 0.002011785516515374, + -0.014582706615328789, + -0.011880853213369846, + 0.02951592393219471, + 0.03455451503396034, + -0.014429357834160328, + -0.030114712193608284, + 0.003957850392907858, + 0.009171697311103344, + -0.0026251792442053556, + -0.0031874568667262793, + 0.0262006763368845 + ], + "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2": [ + 0.023210344836115837, + -0.034886542707681656, + -0.015227350406348705, + 0.011463127098977566, + 0.002146672923117876, + 0.007926177233457565, + 0.03380699083209038, + 0.03258539363741875, + -0.028707532212138176, + 0.07380719482898712, + 0.021420564502477646, + -0.0010964189423248172, + 0.003998599946498871, + -0.010816816240549088, + 0.008366519585251808, + 0.031363796442747116, + -0.01806827448308468, + 0.01899157464504242, + -0.027216048911213875, + -0.003341636387631297, + 0.05451732501387596, + -0.022897843271493912, + -0.0490911602973938, + -0.006413384806364775, + 0.017400657758116722, + 0.014240129850804806, + -0.030199017375707626, + 0.027926279231905937, + -0.0008584915776737034, + -0.013338136486709118, + 5.99812192376703e-5, + 0.013224499300122261, + -0.019119415432214737, + 0.005056844092905521, + 0.03295471519231796, + -0.038295648992061615, + -0.012279892340302467, + -0.04221612587571144, + -0.03551154583692551, + -0.021235903725028038, + -0.0007204404682852328, + 0.0014719535829499364, + 0.017414862290024757, + -0.01335944328457117, + -0.027656391263008118, + -0.0038636561948806047, + -0.016846677288413048, + -0.04164794087409973, + -0.002366844564676285, + 0.015653489157557487, + 0.026051269844174385, + -0.013785582035779953, + 0.031931981444358826, + -0.010610849596560001, + 0.04309681057929993, + -0.03525586053729057, + 0.015965990722179413, + -0.007365094497799873, + -0.0031676297076046467, + -0.04261385276913643, + 0.04448886215686798, + -0.024687625467777252, + -0.019630782306194305, + -0.014900644309818745, + 0.029460377991199493, + -0.010731589049100876, + 0.006054718513041735, + 0.02693195641040802, + -0.025809790939092636, + -0.018892141059041023, + 0.0298865158110857, + 0.030795611441135406, + -0.04204566776752472, + 0.011356592178344727, + 0.005220197141170502, + -0.026377975940704346, + 0.04028429836034775, + 0.03497176989912987, + 0.014162003993988037, + -0.0012526697246357799, + 0.012180459685623646, + -0.005237952806055546, + 0.004332408308982849, + -0.007123616058379412, + 0.07500038295984268, + 0.0025319731794297695, + -0.01809668354690075, + -0.042954765260219574, + 0.02433251030743122, + -0.016974518075585365, + -0.0025728114414960146, + 0.025568312034010887, + 0.007450322154909372, + -0.022201817482709885, + -0.027940483763813972, + -0.02026998996734619, + 0.027429116889834404, + -0.014133594930171967, + 0.013714558444917202, + -0.008188962005078793, + 0.04636387154459953, + 0.003227999433875084, + 0.008693226613104343, + -0.007095206528902054, + -0.0023561909329146147, + -0.0035511543974280357, + 0.029048442840576172, + -0.017713159322738647, + -0.0075923684053123, + 0.04491500183939934, + -0.011441819369792938, + -0.010831020772457123, + -0.0017276366706937551, + -0.02007112465798855, + -0.06505715101957321, + -0.024318305775523186, + -0.03167629987001419, + -0.009666242636740208, + 0.0038068376015871763, + -0.027343889698386192, + 0.043636586517095566, + 0.02346602827310562, + -0.019091006368398666, + 0.013529898598790169, + -0.03693200647830963, + 0.012173357419669628, + -0.002285167807713151, + 0.01901998370885849, + 0.022698979824781418, + 0.017713159322738647, + -0.02833821251988411, + -0.020980220288038254, + 0.02923310361802578, + -0.013181885704398155, + -0.00010093046876136214, + 0.023863758891820908, + 0.005404856987297535, + 0.03377858176827431, + -0.03178993612527847, + -0.00022605317644774914, + -0.07607993483543396, + -0.024758649989962578, + -0.050000254064798355, + 0.0124645521864295, + 0.0019673395436257124, + 0.025994451716542244, + -0.005241503939032555, + 0.02857969142496586, + -0.014758598059415817, + 0.008963113650679588, + -0.06272759288549423, + -0.01839498057961464, + -0.01151284296065569, + 0.019275667145848274, + 0.014069674536585808, + -0.02836662158370018, + -0.01717338338494301, + 0.006701028440147638, + -0.021846702322363853, + 0.03406267240643501, + 0.011100908741354942, + -0.03181834518909454, + 0.008884988725185394, + 0.03357971832156181, + 0.04960252717137337, + -0.007748619187623262, + 0.05184685438871384, + 0.02671888656914234, + -0.04443204402923584, + 0.015028486028313637, + -0.010262836702167988, + -0.046988874673843384, + 0.01967339590191841, + 0.02113647200167179, + -0.008707431145012379, + -0.0138850137591362, + 0.02259954810142517, + 0.035710409283638, + 0.008181859739124775, + -0.020412035286426544, + -0.05099457874894142, + -0.021761475130915642, + 0.007706005126237869, + 0.010703179985284805, + 0.03644904866814613, + 0.0266620684415102, + 0.031875163316726685, + 0.023821143433451653, + 0.008572487160563469, + -0.016207469627261162, + 0.004893491044640541, + -0.02714502438902855, + -0.020170558243989944, + -0.019147824496030807, + -0.02517058327794075, + -0.02544047124683857, + 0.011200341396033764, + -0.006335259415209293, + 0.009325332008302212, + 0.01904839277267456, + 0.004573887214064598, + -0.035483136773109436, + -0.017926227301359177, + 0.014801211655139923, + -0.01752849854528904, + 0.015014281496405602, + -0.023494437336921692, + -0.0035564813297241926, + 0.03795474022626877, + -0.035426318645477295, + 0.026235928758978844, + -0.023068299517035484, + -0.014495812356472015, + -0.06153440475463867, + 0.0059481835924088955, + -0.008813965134322643, + 0.02899162471294403, + 0.0017862307140603662, + -0.024289896711707115, + -0.037699054926633835, + 0.017301224172115326, + 0.026434794068336487, + 0.006889239884912968, + -0.035909272730350494, + -0.048807065933942795, + 0.008295496925711632, + -0.02262795716524124, + 0.006235827226191759, + -0.010397780686616898, + 0.017130769789218903, + 0.012975918129086494, + 0.006498612929135561, + 0.021420564502477646, + -0.01647735759615898, + -0.015099508687853813, + 0.01758531667292118, + 0.07153445482254028, + 0.011640684679150581, + -0.016534175723791122, + 0.008970215916633606, + 0.0005495411460287869, + 0.005156276281923056, + 0.015071099624037743, + 0.009261410683393478, + 0.012947509065270424, + 0.009012830443680286, + -0.0020135045051574707, + 0.06079576537013054, + -0.006885688751935959, + -0.05150594562292099, + -0.05491505190730095, + -0.017869409173727036, + 0.02107965387403965, + -0.005365794524550438, + -0.04204566776752472, + 0.014069674536585808, + 0.03789792209863663, + -0.04258544370532036, + 0.00030362370307557285, + 0.0043892269022762775, + 0.036647915840148926, + 0.03781269118189812, + 0.010937555693089962, + 0.046477511525154114, + 0.01428984571248293, + -0.05664801597595215, + 0.011626480147242546, + -0.027102410793304443, + 0.03406267240643501, + 0.03849451616406441, + -0.0036860983818769455, + 0.009282717481255531, + 0.0025816892739385366, + 0.004094481002539396, + 0.0017915574135258794, + 0.00021273635502438992, + -0.013934730552136898, + -0.030880838632583618, + -0.006626454181969166, + -0.007535549812018871, + -0.020170558243989944, + -0.02926151268184185, + 0.017926227301359177, + -0.008011404424905777, + 0.0006511929677799344, + -0.0027077551931142807, + -0.04548318684101105, + 2.985189166793134e-5, + -0.016562584787607193, + 0.013018532656133175, + -0.0027947586495429277, + -7.673822983633727e-5, + 0.02224443107843399, + 0.02394898608326912, + 0.021576814353466034, + 0.008586691692471504, + -0.025724563747644424, + 0.0021946134511381388, + 0.0002419224038021639, + 0.015355192124843597, + -0.007421913091093302, + -0.031108113005757332, + -0.0034197617787867785, + -0.012777053751051426, + 0.007372196763753891, + -0.013615126721560955, + 0.028267189860343933, + 0.06784125417470932, + -0.004417635966092348, + 0.04857979342341423, + 0.030284246429800987, + -0.011846651323139668, + -0.037784282118082047, + -0.037130869925022125, + 0.00027121941093355417, + 0.02636377140879631, + 0.03857974335551262, + 0.008515668101608753, + 0.0021715310867875814, + -0.026747295632958412, + 0.030170608311891556, + -0.007741516921669245, + -0.05508551001548767, + 0.016619402915239334, + 0.03852292522788048, + -0.04451727122068405, + 0.014858030714094639, + 0.015809739008545876, + -0.0314774326980114, + -0.006608698517084122, + -0.0317615270614624, + -0.03460244834423065, + -0.031136522069573402, + -0.003881411859765649, + -0.025582516565918922, + -0.038352467119693756, + -0.03210243582725525, + -0.02815355360507965, + 0.04272748902440071, + -0.01937509886920452, + 0.010163404047489166, + -0.03730132803320885, + 0.034801315516233444, + -0.02048305980861187, + 0.007052592933177948, + 0.0007874685106799006, + 0.005291220266371965, + 0.035369500517845154, + 0.018466003239154816, + 0.018295548856258392, + 0.0009685773984529078, + -0.009176183491945267, + -0.015838149935007095, + -0.015951786190271378, + 0.03457403928041458, + 0.005536249838769436, + -0.01690349541604519, + -0.02899162471294403, + -0.04110816493630409, + 0.014197515323758125, + 0.008963113650679588, + -0.018011456355452538, + -0.030767202377319336, + 0.011100908741354942, + -0.01988646574318409, + 0.004058969672769308, + 0.0079403817653656, + -0.015625080093741417, + -0.00816765520721674, + 0.018409185111522675, + -0.012208868749439716, + -0.033664945513010025, + -0.03221607208251953, + -0.03403426334261894, + 0.014801211655139923, + -0.014701779931783676, + 0.0011123991571366787, + -0.0060973321087658405, + -0.02977287955582142, + 0.005642784293740988, + 0.020880788564682007, + -0.019034188240766525, + -0.0001851039269240573, + 0.00852277036756277, + -0.0042010159231722355, + 0.024474557489156723, + 0.016804063692688942, + -0.04926161468029022, + -0.016647811979055405, + 0.011257159523665905, + 0.0014914849307388067, + 0.019062597304582596, + -0.05272754281759262, + 0.017855204641819, + 0.0060973321087658405, + -0.009971641935408115, + -0.002627854235470295, + -0.006722335238009691, + 0.003611524123698473, + -0.012102334760129452, + 0.0010182935511693358, + -0.02221602201461792, + -0.006083127576857805, + 0.006921200081706047, + 0.019360894337296486, + -0.034289948642253876, + -0.02227284014225006, + -0.002945682732388377, + 0.020085329189896584, + 0.007301173638552427, + -0.009417661465704441, + -0.008856579661369324, + -0.017272815108299255, + 0.006789807230234146, + 0.04906275123357773, + 0.010575338266789913, + 0.023267164826393127, + 0.04232976213097572, + -0.02627854235470295, + -0.034801315516233444, + 0.029630832374095917, + 0.026676272973418236, + -0.012066822499036789, + 0.015227350406348705, + 0.008458849973976612, + 0.020795561373233795, + 0.02105124294757843, + -0.010468803346157074, + -0.03434676676988602, + -0.0049432069063186646, + -0.007606572937220335, + 0.0314774326980114, + -0.0017862307140603662, + 0.012024208903312683, + -0.0236790981143713, + -0.04321044683456421, + 0.014105185866355896, + -0.021179085597395897, + 0.011349489912390709, + 0.00045077467802911997, + -0.011924777179956436, + 0.0070810019969940186, + -0.01491484884172678, + 0.013231601566076279, + -0.021875111386179924, + -0.026349566876888275, + -0.0382104218006134, + 0.031306978315114975, + 0.022500114515423775, + -0.03142061457037926, + 0.015582465566694736, + -0.022073976695537567, + -0.04897752404212952, + -0.016278492286801338, + 0.019403507933020592, + 0.0031037090811878443, + -0.025752972811460495, + -0.002286943607032299, + 0.028267189860343933, + -0.04872183874249458, + 0.015227350406348705, + -0.016292696818709373, + -0.0068466258235275745, + 0.009218797087669373, + 0.02717343345284462, + -0.022528523579239845, + 0.014162003993988037, + -0.018281342461705208, + 0.0012562208576127887, + -0.024176260456442833, + 0.021235903725028038, + -0.02627854235470295, + -0.013785582035779953, + 0.01606542244553566, + 0.017102360725402832, + 0.004573887214064598, + 0.034119490534067154, + -0.01170460507273674, + 0.008643509820103645, + -0.03801155835390091, + 0.02549728937447071, + -0.0245455801486969, + 0.036022912710905075, + -0.004509966354817152, + 0.0020720986649394035, + 0.007272764574736357, + 0.0009117589215748012, + -0.021633632481098175, + -0.011768526397645473, + -0.0277700275182724, + 0.02654843032360077, + 0.012990123592317104, + 0.002033035969361663, + 0.013537000864744186, + -0.003025583690032363, + -0.013643535785377026, + -0.016534175723791122, + -0.0012748644221574068, + -0.0017711382824927568, + 0.009325332008302212, + 0.012933304533362389, + -0.038238830864429474, + 0.00732248043641448, + 0.012635007500648499, + -0.01923305355012417, + 0.03863656148314476, + -0.017542703077197075, + 0.03161947801709175, + -0.007020632270723581, + -0.018110888078808784, + -0.049545709043741226, + 0.022855229675769806, + -0.019659191370010376, + 0.010816816240549088, + 0.0031037090811878443, + 0.002187511185184121, + -0.0011106235906481743, + 0.006445345468819141, + 0.04576727747917175, + 0.0004998249933123589, + 0.015085304155945778, + -0.012017106637358665, + -0.029630832374095917, + -0.0133310342207551, + -0.0023153526708483696, + 0.0011345938546583056, + -0.01137789897620678, + -0.03355130925774574, + 0.004882837645709515, + -0.004492210224270821, + -0.017088156193494797, + 0.031846754252910614, + -0.03497176989912987, + -0.001708993106149137, + 0.00451706862077117, + -0.023309778422117233, + -0.007535549812018871, + 0.015724511817097664, + 0.015610875561833382, + 0.020255785435438156, + -0.061704859137535095, + 0.04605137184262276, + 0.0025355243124067783, + -0.013707456178963184, + 0.017386453226208687, + 0.02755695953965187, + -0.025341037660837173, + 0.01576712541282177, + -0.0022247983142733574, + 0.006495061796158552, + -0.021789884194731712, + 0.0391763374209404, + -0.01270603109151125, + -0.013643535785377026, + -0.02923310361802578, + -0.04931843280792236, + 0.017698954790830612, + -0.021960338577628136, + -0.020312603563070297, + -0.02693195641040802, + -0.015056895092129707, + 0.04105134680867195, + 0.01633531041443348, + -0.0035316231660544872, + 0.005110111087560654, + -0.02143476903438568, + -0.02146317809820175, + 0.02671888656914234, + -0.01644894853234291, + 0.01232960820198059, + 0.019062597304582596, + 0.023295573890209198, + 0.023778529837727547, + 0.004456698894500732, + -0.004921900108456612, + 0.010887839831411839, + 0.018977370113134384, + 0.021008629351854324, + 0.010930453427135944, + -0.020326808094978333, + 0.02609388343989849, + 0.011640684679150581, + -0.017414862290024757, + 0.002009953372180462, + -0.018551230430603027, + 0.011725911870598793, + -0.0010848776437342167, + 0.023494437336921692, + 0.007386401295661926, + -0.005742216948419809, + 0.011775628663599491, + 0.003171181073412299, + -0.01491484884172678, + 0.037755873054265976, + -0.0012926202034577727, + -0.0005011566681787372, + 0.0052699134685099125, + 0.008316803723573685, + 0.00696381414309144, + -0.010355166159570217, + -0.005046190693974495, + 0.05025593936443329, + 0.011356592178344727, + -0.009758572094142437, + -0.003647035686299205, + 0.02755695953965187, + -0.0062074181623756886, + 0.0017400657525286078, + 0.024929104372859, + 0.028977420181035995, + -0.01728701964020729, + -0.024943308904767036, + 0.04551159590482712, + -0.025397857651114464, + 0.004573887214064598, + -0.000631217728368938, + -0.012073925696313381, + 0.011257159523665905, + 0.0254120621830225, + 0.019176233559846878, + 0.020894993096590042, + -0.009240103885531425, + 0.01776997745037079, + 0.004023457877337933, + 0.008132143877446651, + 0.02159101888537407, + -0.01988646574318409, + 0.01893475651741028, + -0.007407708093523979, + 0.007116513792425394, + 0.01524155493825674, + 0.011938981711864471, + 0.03227289021015167, + 0.01276284921914339, + -0.007791232783347368, + -0.004449596628546715, + 0.03400585427880287, + -0.0004092705494258553, + -0.012201766483485699, + -0.011157727800309658, + -0.018948961049318314, + -0.007656289264559746, + 0.004573887214064598, + 0.06488669663667679, + -0.009786982089281082, + 0.023821143433451653, + -0.007286969106644392, + 0.011171932332217693, + 0.04519909620285034, + 0.025966040790081024, + 0.023991599678993225, + 0.020284194499254227, + 0.002033035969361663, + 0.010206017643213272, + -0.011385001242160797, + -0.023281369358301163, + 0.00438212463632226, + 0.012791258282959461, + -0.02833821251988411, + 0.011022783815860748, + 0.028565486893057823, + -0.011669093742966652, + 0.01782679557800293, + 0.014829620718955994, + 0.004602296277880669, + -0.018764300271868706, + 0.012443245388567448, + 0.020255785435438156, + -0.01663360744714737, + 0.030710384249687195, + 0.0029332535341382027, + -0.022968867793679237, + 0.03289789706468582, + 0.0023917024955153465, + -0.009730163030326366, + 0.005870058201253414, + 0.007826744578778744, + 0.007031285669654608, + 0.014353766106069088, + 0.005436817649751902, + -0.03346607834100723, + -0.004282692447304726, + -0.018593844026327133, + 0.004446045495569706, + -0.0332103967666626, + 0.009517094120383263, + -0.014204617589712143, + -0.03553995490074158, + -0.0003939562011510134, + 0.005230850540101528, + -0.010958862490952015, + -0.0009002176811918616, + -0.017457475885748863, + 0.0317615270614624, + 0.0014115838566794991, + -0.01312506664544344, + -0.002320679370313883, + -0.01720179244875908, + 0.004921900108456612, + -0.025326833128929138, + -0.03383539989590645, + -0.012286994606256485, + -0.004264936316758394, + -0.013295521959662437, + 0.011427614837884903, + 0.024858081713318825, + -0.020980220288038254, + 0.0037074051797389984, + -0.011754320934414864, + 0.021818293258547783, + 0.016832472756505013, + 0.035454727709293365, + -0.0031001579482108355, + 0.015497238375246525, + -0.015894968062639236, + 0.018054069951176643, + 0.0011310427216812968, + 0.0007967902929522097, + -0.002835596911609173, + 0.029971743002533913, + 0.012350914999842644, + 0.004105134401470423, + -0.03377858176827431, + -0.005344487726688385, + -0.051733218133449554, + -0.020639309659600258, + 0.018167706206440926, + -0.0052450550720095634, + 0.023849554359912872, + -0.010248632170259953, + 0.05502868816256523, + -0.013821093365550041, + 0.0254120621830225, + -0.0003291476459708065, + 0.012940406799316406, + -0.037642236799001694, + 0.0063778734765946865, + 0.005870058201253414, + 0.00568894948810339, + -0.03559677302837372, + 0.017059745267033577, + -0.006005002185702324, + -0.00946737825870514, + -0.012698928825557232, + 0.02048305980861187, + -0.015980195254087448, + 0.012535575777292252, + 0.005806137807667255, + -0.015028486028313637, + -0.037074051797389984, + 0.021875111386179924, + -0.02828139439225197, + 0.027301276102662086, + -0.031363796442747116, + -0.03238653019070625, + 0.01524155493825674, + 0.028324007987976074, + 0.0040057022124528885, + -0.010490110144019127, + 0.027386503294110298, + -0.0034286396112293005, + 0.023395005613565445, + -0.013139271177351475, + -0.007713107392191887, + -0.007386401295661926, + -0.0024414188228547573, + 0.0073366849683225155, + -0.004172606393694878, + 0.021875111386179924, + -0.010845226235687733, + -0.008323905989527702, + 0.035880863666534424, + 0.030255835503339767, + -0.008686124347150326, + -0.027699004858732224, + -0.0012073925463482738, + -0.0005846088170073926, + -0.04076725244522095, + -0.020227376371622086, + -0.01167619600892067, + -0.021448973566293716, + -0.04383544996380806, + 0.03267062082886696, + 0.02818196266889572, + 0.008110837079584599, + -0.019630782306194305, + 0.018466003239154816, + -0.026619454845786095, + -0.003345187520608306, + -0.0208381749689579, + 0.025000127032399178, + 0.005870058201253414, + 0.01551144290715456, + 0.01358671672642231, + 0.016832472756505013, + -0.018466003239154816, + 0.015440419316291809, + -0.006086678709834814, + -0.01161227561533451, + -0.00015403132420033216, + 0.03045470081269741, + -0.03900587931275368, + 0.022698979824781418, + 0.02991492487490177, + 0.051165033131837845, + -0.02600865624845028, + -0.028764352202415466, + -0.0027716760523617268, + -0.0245455801486969, + 0.021903520449995995, + 0.01349438726902008, + 0.01028414350003004, + -0.015809739008545876, + 0.06619352102279663, + 0.00023703956685494632, + -0.005902018863707781, + 0.0032617354299873114, + 0.023480232805013657, + 0.01657678931951523, + 0.0046910750679671764, + -0.01617906056344509, + 0.01296171359717846, + 0.030795611441135406, + 0.0027077551931142807, + -0.008160552941262722, + 0.020028511062264442, + 0.016519971191883087, + 0.017272815108299255, + 0.03519904240965843, + 0.02421887405216694, + 0.0072123948484659195, + 0.04349454119801521, + -0.023863758891820908, + 0.027571164071559906, + 0.005017781164497137, + 0.03497176989912987, + 0.009161978960037231, + -0.004786956124007702, + -0.007091655395925045, + 0.02991492487490177, + -0.0036505868192762136, + -0.024233078584074974, + 0.011953186243772507, + -0.02232966013252735, + -0.014573938213288784, + 0.007677596062421799, + 0.013984446413815022, + -0.013011430390179157, + 0.015326783061027527, + 0.01880691386759281, + -0.0068679326213896275, + -0.034289948642253876, + 0.00906254630535841, + 0.020610900595784187, + -0.00039883903809823096, + 0.0006503051845356822, + 0.013600921258330345, + 0.027187637984752655, + -0.022670570760965347, + 0.004058969672769308, + 0.03974452242255211, + 0.008892090991139412, + -0.026164906099438667, + -0.02021317183971405, + -0.010937555693089962, + -0.02806832455098629, + 0.013615126721560955, + 0.004929002374410629, + -0.020000101998448372, + -0.033068351447582245, + 0.02146317809820175, + -0.006019206717610359, + 0.020298399031162262, + 0.019716009497642517, + 0.012777053751051426, + -0.015127917751669884, + 0.0038174910005182028, + 0.004822467919439077, + -0.01025573443621397, + -0.03034106455743313, + -0.009559707716107368, + -0.012642109766602516, + 0.00015225574315991253, + 0.0057777282781898975, + 0.007226599380373955, + 0.0245455801486969, + 0.012336710467934608, + 0.002480481518432498, + -0.002073874231427908, + 0.02465921640396118, + -0.0027841050177812576, + 0.0026083230040967464, + -0.0055895172990858555, + -0.029062649235129356, + -0.021519996225833893, + 0.006257134024053812, + 0.010703179985284805, + 0.005585966166108847, + 0.004850876983255148, + 0.0013183661503717303, + 0.009027034975588322, + -0.026264337822794914, + -0.012954611331224442, + -0.021477382630109787, + 0.018252933397889137, + -0.06806852668523788, + 0.010660565458238125, + 0.014332459308207035, + 0.020681923255324364, + -0.012769951485097408, + 0.007876460440456867, + 0.01934668980538845, + -0.03457403928041458, + 0.0010582440299913287, + 0.03997179493308067, + 0.0102273253723979, + 0.016519971191883087, + -0.023608075454831123, + 0.015653489157557487, + -0.025568312034010887, + 0.007535549812018871, + -0.009318229742348194, + 0.01752849854528904, + 0.02099442481994629, + -0.015554056502878666, + -0.003924025688320398, + 0.01669042557477951, + 0.0018750096205621958, + -0.012947509065270424, + 0.008323905989527702, + -0.0067827049642801285, + -0.01704554073512554, + -0.01750008948147297, + -0.01491484884172678, + 0.021065449342131615, + -0.016832472756505013, + -0.029687652364373207, + -0.0031587518751621246, + -0.010937555693089962, + -0.009282717481255531, + 0.0005149174248799682, + -0.00853697583079338, + 0.026108087971806526, + -0.000798121967818588, + -0.0010813265107572079, + 0.03289789706468582, + 0.008565384894609451, + 0.025696154683828354, + -0.01663360744714737, + -0.001180758816190064, + 0.019573964178562164, + -0.016974518075585365, + 0.012755746953189373, + -0.014403482899069786, + -1.857420284068212e-5, + -0.00843754317611456, + -0.005632130894809961, + -0.02316773124039173, + -0.007563958875834942, + -0.0033309829887002707, + 0.01603701338171959, + -0.007777028251439333, + 0.006296196952462196, + -0.0073437876999378204, + -0.027613777667284012, + 0.011832446791231632, + -0.00565698929131031, + 0.012038413435220718, + -0.02132113091647625, + -0.0023952536284923553, + -0.024162055924534798, + 0.007162678521126509, + -0.022471705451607704, + 0.023806938901543617, + -0.00379618420265615, + -0.013579614460468292, + -0.00519533921033144, + -0.012386427260935307, + -0.011065397411584854, + -0.013835297897458076, + 0.04267067089676857, + -0.03318198770284653, + -0.019247258082032204, + -0.004417635966092348, + -0.021576814353466034, + -0.026789909228682518, + -0.01113642007112503, + 0.018054069951176643, + -0.027059797197580338, + -0.007006427738815546, + -0.004861530382186174, + -0.03687518835067749, + 0.02080976590514183, + 0.01273444015532732, + 0.0030859531834721565, + -0.01110801100730896, + 0.02899162471294403, + -0.03505699709057808, + -0.010987271554768085, + -0.029119467362761497, + 0.00745742442086339, + -0.028537077829241753, + -0.01926146261394024, + 0.06079576537013054, + 0.025809790939092636, + 0.043039992451667786, + 0.020056920126080513, + -0.024758649989962578, + -0.008998625911772251, + 0.008771351538598537, + -0.026264337822794914, + -0.027627982199192047, + -0.025568312034010887, + 0.009261410683393478, + 0.011846651323139668, + 0.0344604030251503, + 0.011321080848574638, + -0.03735814616084099, + -0.02009953372180462, + 0.028679123148322105, + 0.0003220453218091279, + 0.0012784156715497375, + -0.0055646589025855064, + -0.021221699193120003, + 0.004637807607650757, + 0.01571030728518963, + -0.017627930268645287, + 0.007393503561615944, + -0.00506039522588253, + 0.008728737942874432, + -0.0037074051797389984, + 8.669810995343141e-6, + -0.014027060009539127, + -0.019630782306194305, + 0.022613752633333206, + -0.011392103508114815, + -0.023252960294485092, + -0.0669889748096466, + -0.00998584646731615, + -0.0010227324673905969, + 0.024687625467777252, + 0.015142123214900494, + 0.023963190615177155, + 0.028636509552598, + 0.017670543864369392, + -0.029119467362761497, + -0.005497187376022339, + 0.017954636365175247, + -0.006289094686508179, + 0.010426189750432968, + 0.011669093742966652, + -0.00577062601223588, + -0.007947484031319618, + -0.011143522337079048, + 0.013444670476019382, + -0.011129317805171013, + -0.011754320934414864, + -0.006147048436105251, + 0.009311127476394176, + 0.02436091937124729, + -0.002276289975270629, + -0.005422613117843866, + 0.03261380270123482, + -0.02723025344312191, + -0.007521345280110836, + -0.0014231251552700996, + -0.031960390508174896, + -0.004882837645709515, + 0.023125117644667625, + 0.007919074967503548, + -0.0018128643278032541, + 0.023480232805013657, + -0.0013645311119034886, + 0.013728762976825237, + -0.02917628549039364, + 0.018522821366786957, + -0.013430465944111347, + 0.021875111386179924, + -0.01630690135061741, + -0.020937606692314148, + -0.0016246532322838902, + -0.008948909118771553, + -0.019744418561458588, + -0.015255759470164776, + -0.03553995490074158, + 0.01183954905718565, + -6.974689313210547e-5, + 0.022883638739585876, + -0.015781329944729805, + 0.00021650944836437702, + -0.010447496548295021, + -0.013906320556998253, + -0.0030486660543829203, + 0.02191772498190403, + 0.0017906696302816272, + 0.010667667724192142, + -0.01669042557477951, + 0.04076725244522095, + -0.004467352293431759, + 0.014446096494793892, + -0.0033629434183239937, + -0.015965990722179413, + 0.00598724652081728, + 0.02723025344312191, + 0.022670570760965347, + 0.03613654896616936, + 0.005983695387840271, + 0.03096606768667698, + 0.00704549066722393, + 0.008110837079584599, + 0.021250108256936073, + 0.00620386702939868, + 0.012528473511338234, + 0.009275615215301514, + 0.023551257327198982, + 0.025341037660837173, + 0.0016850228421390057, + -0.03673314303159714, + -0.0030859531834721565, + 0.000457655027275905, + -0.014545529149472713, + -0.030625157058238983, + -0.029545605182647705, + 0.009900618344545364, + -0.016207469627261162, + 0.03173311799764633, + 0.0020951812621206045, + 0.030113790184259415, + 0.016349514946341515, + 0.023494437336921692, + 0.01055403146892786, + -0.003757121507078409, + 0.05136390030384064, + -0.019133619964122772, + 0.02024158090353012, + -0.01107960194349289, + -0.0157387163490057, + -0.00010847666999325156, + -0.02430410124361515, + 0.007528447546064854, + 0.004524170886725187, + -0.023863758891820908, + -0.007862255908548832, + -0.011008579283952713, + 0.0016015706351026893, + -0.02495751343667507, + 0.0006329932948574424, + 0.002029484836384654, + 0.0027894319500774145, + -0.018196115270256996, + 0.0011035212082788348, + -0.002990072127431631, + 0.008913397789001465, + 0.0021164880599826574, + 0.008096632547676563, + -0.010319654829800129, + 0.019133619964122772, + -0.02102283388376236, + 0.03340926021337509, + -0.0020365871023386717, + -0.050142303109169006, + 0.0057990350760519505, + -0.00514207175001502, + -0.007308275904506445, + -0.011697502806782722, + -0.004399880301207304, + 0.016647811979055405, + -0.009936130605638027, + 0.008345212787389755, + -0.007436117623001337, + 0.007563958875834942, + -0.019389303401112556, + 0.013132168911397457, + 0.021335335448384285, + -0.0028551281429827213, + 0.010539826937019825, + -0.02582399547100067, + 0.021335335448384285, + 0.003227999433875084, + 0.004193913657218218, + -0.002844474744051695, + -0.01254267804324627, + -0.0035014383029192686, + 0.012997225858271122, + 0.0013556532794609666, + -0.007350889965891838, + -0.007961688563227654, + 0.013295521959662437, + 0.020312603563070297, + 0.014872235246002674, + -0.001956686144694686, + -0.020980220288038254, + -0.03198879957199097, + -0.0022745144087821245, + 0.015440419316291809, + -0.00024103460600599647, + -0.008316803723573685, + 0.0029918476939201355, + 0.01907680183649063, + 0.02015635371208191, + 0.018267137929797173, + 0.001811976544559002, + -0.009666242636740208, + 0.012081027962267399, + 0.0034144350793212652, + -0.014815416187047958, + -0.01048300787806511, + 0.020298399031162262, + -0.03380699083209038, + 0.011448921635746956, + -0.030653566122055054, + -0.009666242636740208, + -0.015113713219761848, + 0.006026308983564377, + 0.024531375616788864, + 0.01094465795904398, + 0.0006880362052470446, + -0.0298865158110857, + 0.03517063334584236, + -0.023551257327198982, + 0.0046236030757427216, + -0.009318229742348194, + 0.013742967508733273, + 0.005561107769608498, + -0.004232976119965315, + -0.004932553507387638, + 0.013906320556998253, + 0.017542703077197075, + 0.03801155835390091, + -0.005788381677120924, + 0.016505766659975052, + 0.004531273152679205, + -0.0026349567342549562, + 0.018267137929797173, + 0.02771320939064026, + -0.042471807450056076, + -0.014758598059415817, + -0.007677596062421799, + -0.005735114682465792, + 0.001059131813235581, + 0.00011452472972450778, + 0.005220197141170502, + 0.013046941719949245, + -0.061818499118089676, + 0.029602423310279846, + -0.00833100825548172, + -0.012386427260935307, + 0.002086303196847439, + -0.002510666148737073, + 0.009971641935408115, + -0.02286943420767784, + 0.009289819747209549, + -0.0025035638827830553, + 0.011292670853435993, + -0.03403426334261894, + -0.006885688751935959, + -0.018977370113134384, + 0.04528432339429855, + 0.004772751592099667, + 0.0062926458194851875, + -0.015071099624037743, + 0.0012384650763124228, + 0.019062597304582596, + 0.006718784105032682, + -0.018707482144236565, + -0.015269964002072811, + 0.008636407554149628, + -0.00400215107947588, + 0.021207494661211967, + -0.003845900297164917, + -0.01815350167453289, + -0.007191088050603867, + 0.014282743446528912, + 0.03389221802353859, + -0.016292696818709373, + 0.02352284826338291, + 0.009403456933796406, + -0.008188962005078793, + -0.009680447168648243, + -0.027670595794916153, + -0.006686823908239603, + 0.02546888031065464, + 0.033011533319950104, + -0.035369500517845154, + -0.011427614837884903, + -0.00454547768458724, + 0.00803271122276783, + 0.021491587162017822, + -0.005145622882992029, + -0.00426848791539669, + 0.01312506664544344, + 0.002998949959874153, + 0.003998599946498871, + -0.01644894853234291, + 0.016789859160780907, + 0.024105235934257507, + 0.015156327746808529, + -0.002984745427966118, + -0.013828195631504059, + 0.01875009573996067, + -0.03730132803320885, + 0.013700353913009167, + -0.015866558998823166, + 0.0064240386709570885, + -0.011257159523665905, + 0.014538426883518696, + -0.010340961627662182, + -0.004105134401470423, + -0.003934679087251425, + -0.013600921258330345, + -0.012777053751051426, + 0.014005753211677074, + 0.013963139615952969, + -0.012294096872210503, + -0.04494341090321541, + 0.013380750082433224, + 0.005735114682465792, + -0.006281992420554161, + 0.011882162652909756, + -0.020085329189896584, + -0.0006791583145968616, + 0.012769951485097408, + 0.006161252968013287, + 0.011129317805171013, + 0.001839498057961464, + 0.019602373242378235, + -0.009247206151485443, + 0.022826820611953735, + 0.005003576632589102, + 0.016022808849811554, + -0.01674724370241165, + 0.018849527463316917, + 0.008153450675308704, + 0.006090229842811823, + 0.01845179870724678, + 0.01392762828618288, + 0.030000153928995132, + 0.030056972056627274, + 0.00555400550365448, + -0.024105235934257507, + -0.007556856609880924, + 0.004431840963661671, + -0.000156694688485004, + 0.027968892827630043, + -0.026619454845786095, + 0.0004944982356391847, + -0.012784156017005444, + -0.014985871501266956, + 0.0040909298695623875, + -0.01848020777106285, + -0.053551409393548965, + 0.004137095063924789, + -0.0005894916248507798, + 0.02110806293785572, + 0.006196764763444662, + -0.013245806097984314, + -0.04096611961722374, + -0.015994399785995483, + -0.009438968263566494, + -0.001628204365260899, + -0.007205292582511902, + -0.045909326523542404, + -0.008679021149873734, + -0.031846754252910614, + 0.0018128643278032541, + 0.0027397156227380037, + 0.006800460629165173, + -0.0277700275182724, + 0.0560230128467083, + 0.013380750082433224, + 0.006193213630467653, + 0.006051167380064726, + 0.003634606720879674, + 0.0067436425015330315, + 0.007013530004769564, + -0.006683272775262594, + -0.0029332535341382027, + 0.006090229842811823, + 0.013679047115147114, + -0.019275667145848274, + -0.02107965387403965, + 0.014971666969358921, + 0.00628554355353117, + -0.007315378170460463, + 0.028224576264619827, + 0.01836657151579857, + 0.0089276023209095, + 0.01330262515693903, + 0.009921926073729992, + 0.017272815108299255, + -0.01355830766260624, + -0.0048863887786865234, + 0.036477457731962204, + 0.01779838651418686, + 0.015127917751669884, + -0.03048310987651348, + -0.03227289021015167, + -0.00922589935362339, + -0.006992223206907511, + -0.010149199515581131, + 0.03221607208251953, + -0.023494437336921692, + -0.011349489912390709, + 0.010014255531132221, + -0.008245781064033508, + -0.015269964002072811, + 0.0018821118865162134, + 0.011548354290425777, + -0.0056925006210803986, + -0.03460244834423065, + 0.03105129487812519, + -0.02352284826338291, + -0.007968790829181671, + 0.0191052109003067, + 0.012649212032556534, + 0.005625028628855944, + -0.005063946358859539, + -0.012528473511338234, + -0.024531375616788864, + 0.015653489157557487, + 0.023991599678993225, + -0.012237278744578362, + -0.028764352202415466, + -0.012528473511338234, + -0.002949233865365386, + 0.00047674248344264925, + 0.018636459484696388, + -0.02920469455420971, + -0.021690452471375465, + -0.014353766106069088, + 0.01326001062989235, + 0.012144948355853558, + -0.002357966499403119, + -0.02815355360507965, + 0.010085279121994972, + -0.0461081899702549, + -0.014062571339309216, + 0.008913397789001465, + 0.006772051565349102, + -0.005273464601486921, + 0.016051217913627625, + -0.035426318645477295, + 0.02896321564912796, + 0.022670570760965347, + 0.02107965387403965, + -0.0033842502161860466, + -0.02113647200167179, + 0.005010678898543119, + 0.031931981444358826, + -0.004140646196901798, + -0.006076025310903788, + -0.017116565257310867, + 0.014488710090517998, + -0.0075923684053123, + 0.029574014246463776, + 0.0033700456842780113, + 0.00833100825548172, + 0.022287044674158096, + -0.005365794524550438, + -0.02663365937769413, + -0.026434794068336487, + -0.0006054718396626413, + 0.010710282251238823, + -0.024914899840950966, + 0.01491484884172678, + -0.015653489157557487, + 0.001262435456737876, + 0.021335335448384285, + -0.0060973321087658405, + 0.025895018130540848, + 0.008721635676920414, + 0.03159106895327568, + -0.02907685376703739, + -0.018920551985502243, + -0.009921926073729992, + -0.02086658403277397, + 0.005671193823218346, + -0.014438994228839874, + -0.0051740319468081, + 0.0014177984558045864, + -0.0055433521047234535, + -0.009744367562234402, + -0.0015021383296698332, + 0.003599095158278942, + -0.019247258082032204, + 0.011093806475400925, + 0.05039798468351364, + 0.020625105127692223, + 0.0120313111692667, + 0.02086658403277397, + -0.02340921014547348, + 0.026207519695162773, + -0.004456698894500732, + -0.013224499300122261, + -0.00992902833968401, + -0.010063971392810345, + 0.011711707338690758, + -0.0158807635307312, + 0.012727337889373302, + -0.023892167955636978, + 0.013714558444917202, + 0.006235827226191759, + 0.01254267804324627, + 0.02203136309981346, + -0.011036988347768784, + -0.02105124294757843, + -0.031960390508174896, + 0.004392778035253286, + 0.006647760979831219, + 0.0020223825704306364, + -0.0015243330271914601, + 0.016221674159169197, + -0.024801263585686684, + -0.015298373997211456, + 0.004513517487794161, + -0.009602321311831474, + -0.010667667724192142, + 0.01642053760588169, + 0.007233701646327972, + -0.011697502806782722, + 0.03261380270123482, + 0.01636371947824955, + -0.047074105590581894, + -0.0029563361313194036, + -0.0018998676678165793, + 0.0021750822197645903, + 0.031363796442747116, + -0.006825319025665522, + 0.02985810674726963, + -0.01964498683810234, + -0.015681898221373558, + 0.0017817917978391051, + 0.004786956124007702, + -0.005230850540101528, + -0.009346638806164265, + 0.004094481002539396, + 0.005930427927523851, + 0.004921900108456612, + -0.019360894337296486, + -0.03227289021015167, + 0.004378573503345251, + -0.0038210421334952116, + -0.012045515701174736, + -0.002228349447250366, + 0.008750044740736485, + 0.0004980494268238544, + -0.027216048911213875, + -0.021122267469763756, + 0.005316078197211027, + -0.009872209280729294, + -0.012372221797704697, + 0.0007324256002902985, + -0.01491484884172678, + 0.01282676961272955, + -0.0031907123047858477, + -0.011917674914002419, + -0.001281079021282494, + -0.010490110144019127, + -0.0036825472488999367, + -0.009943232871592045, + -0.004857979249209166, + 0.006651312578469515, + 0.0028107387479394674, + 0.00903413724154234, + 0.001095531159080565, + -0.007407708093523979, + -0.0022176960483193398, + -0.0017418413190171123, + -0.0027841050177812576, + 0.0033878013491630554, + 0.002389926929026842, + 0.036505866795778275, + -0.0032617354299873114, + -0.0010120790684595704, + 0.005955285858362913, + -0.006551879923790693, + -0.001997524406760931, + 0.029716061428189278, + -0.0026225275360047817, + -0.014133594930171967, + 0.01955975964665413, + -0.010902044363319874, + 0.07119354605674744, + 0.003057544119656086, + -0.00975146982818842, + -0.021690452471375465, + 0.019730214029550552, + -0.011633582413196564, + 0.0010289470665156841, + 0.01576712541282177, + 0.027031388133764267, + 0.012400631792843342, + 0.011093806475400925, + -0.009289819747209549, + -0.003732263343408704, + 0.00658384058624506, + 0.003354065353050828, + -0.0034517222084105015, + 0.009282717481255531, + 0.021008629351854324, + 0.004254282917827368, + 0.027784232050180435, + 0.001051141764037311, + -0.0003508984518703073, + -0.010866533033549786, + 0.0195881687104702, + 0.0015589568065479398, + 0.0011967390310019255, + -0.006342362146824598, + 0.0017276366706937551, + 0.006630005314946175, + 0.0033114515244960785, + -0.008380725048482418, + 0.0024556233547627926, + -0.025752972811460495, + 0.017002927139401436, + 0.0016566135454922915, + 0.008373621851205826, + -0.004723035264760256, + 0.02105124294757843, + -0.0001673481601756066, + 0.015696102753281593, + -0.011988697573542595, + -0.006281992420554161, + 0.011086704209446907, + 0.0208381749689579, + -0.01877850480377674, + 0.0010218446841463447, + 0.0023739468306303024, + -0.004289794713258743, + -0.0023064748384058475, + -0.01385660469532013, + -0.01934668980538845, + -0.021179085597395897, + 0.005376447923481464, + 0.005408408120274544, + 0.018650664016604424, + 0.002938580233603716, + 0.0039666397497057915, + -0.023892167955636978, + -0.01579553447663784, + 0.0018608049722388387, + -0.008039813488721848, + 0.00729407137259841, + -0.00803271122276783, + -0.007492935750633478, + -0.004968065302819014, + -0.0022478806786239147, + -0.012059720233082771, + 0.02075294777750969, + 0.004779853858053684, + -0.002393478062003851, + 0.006903444416821003, + 0.008160552941262722, + 0.007237252779304981, + -0.05329572781920433, + -0.012414836324751377, + -0.006349464412778616, + 0.007798335049301386, + 0.029488787055015564, + 0.0010759998112916946, + -0.010106585919857025, + 0.004105134401470423, + 0.003607972990721464, + 0.017429066821932793, + -0.008671918883919716, + -0.002876435173675418, + -0.0022798411082476377, + 0.007226599380373955, + -0.002070323098450899, + -0.014559733681380749, + -0.02392057701945305, + 0.0030202569905668497, + 0.008757147006690502, + 0.005259259603917599, + -0.0018093131948262453, + 0.009900618344545364, + -0.0064631011337041855, + 0.0018750096205621958, + 0.0018696828046813607, + 0.0029119467362761497, + -0.01988646574318409, + 0.030142199248075485, + 0.013579614460468292, + -0.00438212463632226, + 0.002029484836384654, + 0.01494325790554285, + 0.008267087861895561, + 0.007670493796467781, + -0.002975867362692952, + -0.02370750717818737, + -0.02600865624845028, + 0.011654889211058617, + 0.0027894319500774145, + -0.007919074967503548, + 0.015099508687853813, + -0.011598070152103901, + 0.004946758039295673, + 0.02788366563618183, + -0.011122215539216995, + -0.004779853858053684, + -0.003435741877183318, + -0.024701829999685287, + -0.011370796710252762, + -0.006104434374719858, + -0.005454573314636946, + 0.007613675203174353, + -0.014218822121620178, + -0.020298399031162262, + 0.0006285543204285204, + -0.02224443107843399, + 0.010880737565457821, + 0.010362268425524235, + -0.0034872337710112333, + -0.005436817649751902, + 0.0070632463321089745, + 0.005820342339575291, + -0.008501463569700718, + 0.0084943613037467, + -0.002897741971537471, + 0.014041264541447163, + 0.01183954905718565, + 0.016406333073973656, + 0.008991522714495659, + 0.008259985595941544, + 0.01401995774358511, + 0.006750744767487049, + 0.02549728937447071, + -0.011960288509726524, + -0.012215971015393734, + 0.03500017896294594, + 0.012855179607868195, + 0.03210243582725525, + -0.032443348318338394, + 0.004857979249209166, + -0.014957462437450886, + 0.010894942097365856, + -0.0007785906200297177, + -0.016278492286801338, + 0.020056920126080513, + -0.008309701457619667, + -0.020440444350242615, + -0.008707431145012379, + -0.014772802591323853, + -0.013387852348387241, + -0.008295496925711632, + -0.0023118015378713608, + 0.006949609145522118, + 0.008288394659757614, + 0.01955975964665413, + 0.0187216866761446, + 0.003952434752136469, + -0.04679001122713089, + -0.01669042557477951, + 0.012450347654521465, + -0.022826820611953735, + 0.016647811979055405, + 0.004865081515163183, + -0.013281317427754402, + 0.018224524334073067, + -0.018764300271868706, + 0.013487285003066063, + -0.016207469627261162, + -0.005571761168539524, + -0.0036825472488999367, + 0.019304076209664345, + 0.019758623093366623, + -0.012130743823945522, + 0.022500114515423775, + 0.0023064748384058475, + -0.011683298274874687, + -0.006800460629165173, + -0.01375006977468729, + 0.027315480634570122, + -0.0040909298695623875, + -0.0029829698614776134, + -0.0195881687104702, + -0.0028196165803819895, + 0.033096760511398315, + 0.01693190447986126, + 0.011796935461461544, + 0.011448921635746956, + 0.0004505527322180569, + 0.006544777657836676, + 0.00946737825870514, + 0.0014870458981022239, + -0.004769200459122658, + -0.02457398921251297, + -0.020610900595784187, + -0.007038388401269913, + 0.008267087861895561, + -0.00835941731929779, + -0.025426266714930534, + -0.021150676533579826, + 0.026463203132152557, + 0.002155550755560398, + -0.02024158090353012, + 0.002732613356783986, + 0.00919749028980732, + 0.012805462814867496, + 0.031903572380542755, + 0.0041548507288098335, + -0.0036008707247674465, + 0.0174716804176569, + -0.003224448300898075, + 0.0046697682701051235, + 0.0023100259713828564, + 0.0006645097746513784, + -0.01306114625185728, + -4.00892031393596e-6, + 0.01579553447663784, + -0.013402056880295277, + 0.031931981444358826, + -0.011413410305976868, + -0.008480156771838665, + 0.02370750717818737, + -0.010078176856040955, + 0.007183985318988562, + 0.024460352957248688, + 0.0075923684053123, + 0.023664893582463264, + -0.003945332486182451, + -0.005919774528592825, + 0.013608024455606937, + -0.0020277092698961496, + -0.0016122241504490376, + 0.010220222175121307, + -0.009438968263566494, + 0.004797609522938728, + -0.013813991099596024, + -0.0016575013287365437, + -2.5953944714274257e-5, + 0.00590556999668479, + 0.01630690135061741, + -0.01674724370241165, + 0.04073884338140488, + 0.0007013530121184886, + 0.019133619964122772, + 0.005838098004460335, + 0.0004139314405620098, + -0.004481556825339794, + -0.006740091368556023, + -0.0012677621562033892, + 0.009041239507496357, + 0.010149199515581131, + 0.005191788077354431, + 0.009183285757899284, + -0.0019904221408069134, + -0.0010990822920575738, + 0.011683298274874687, + -0.020341012626886368, + 0.0169887226074934, + -0.007840949110686779, + -0.008664816617965698, + 0.0009419437265023589, + 0.008366519585251808, + -0.01488643977791071, + 0.0026988773606717587, + 0.004406982567161322, + -0.00975146982818842, + -0.004112237133085728, + 0.006221622694283724, + 0.006278441287577152, + 0.002682897262275219, + 0.004190362524241209, + -0.007176883053034544, + -0.0069425068795681, + -0.0035742369946092367, + -0.0008829057915136218, + 0.006274890154600143, + 0.0007253232761286199, + 0.01617906056344509, + 0.0013023859355598688, + -0.02167624793946743, + 0.006278441287577152, + -0.014602347277104855, + 0.014360868372023106, + 0.024502966552972794, + -0.02463080734014511, + 0.008515668101608753, + 0.0017480558017268777, + 0.015525647439062595, + -0.0071271671913564205, + 0.005557556636631489, + -0.012677621096372604, + -0.027045592665672302, + 0.007571061607450247, + -0.010610849596560001, + -0.010504314675927162, + -0.007982995361089706, + -0.004765649326145649, + -0.00029696529963985085, + -0.020681923255324364, + 0.011896367184817791, + 0.01140630804002285, + 0.007713107392191887, + 0.0009006615728139877, + -0.018792709335684776, + -0.005568210035562515, + 0.007855153642594814, + -0.019787032157182693, + -0.014573938213288784, + 0.005802586209028959, + -0.004641358740627766, + -0.009140671230852604, + 0.022613752633333206, + 0.008551180362701416, + 0.019758623093366623, + -0.004964514169842005, + -0.011441819369792938, + 0.004776302725076675, + -0.026889340952038765, + 0.017755772918462753, + -0.003963088616728783, + -0.0025639336090534925, + 0.013735865242779255, + 0.0017649237997829914, + 0.02403421327471733, + -0.007279866840690374, + -0.003906270023435354, + -0.007691800594329834, + 0.00968754943460226, + -0.034119490534067154, + 0.00992902833968401, + 0.003224448300898075, + 0.00011091808846686035, + 0.03039788268506527, + 0.010241529904305935, + -0.004190362524241209, + 0.002105834661051631, + 0.009304025210440159, + 0.01704554073512554, + 0.02630695328116417, + 0.0038707584608346224, + 0.0074006058275699615, + -0.0005419949302449822, + 0.007436117623001337, + 0.0061896624974906445, + 0.01779838651418686, + 0.01671883463859558, + -0.01230119913816452, + -0.0017152075888589025, + 0.0093608433380723, + 0.008728737942874432, + -0.017542703077197075, + -0.014176208525896072, + -0.0133310342207551, + -0.0035085405688732862, + -0.00833100825548172, + 0.012358017265796661, + -0.029971743002533913, + -0.005078150890767574, + 0.012755746953189373, + 0.0017773527652025223, + -0.03610813990235329, + -0.0027432667557150126, + -0.01782679557800293, + 0.005582415033131838, + 0.004289794713258743, + -0.005230850540101528, + -0.012663416564464569, + -0.02332398295402527, + 0.012635007500648499, + 0.012308301404118538, + 0.0038707584608346224, + 0.007968790829181671, + 0.0021164880599826574, + 0.003973742015659809, + 0.012066822499036789, + 0.01273444015532732, + 0.00696381414309144, + -0.008671918883919716, + -0.015923377126455307, + -0.004854428116232157, + -0.007049041800200939, + -0.008508565835654736, + 0.010781304910779, + -0.018466003239154816, + -0.024105235934257507, + 0.015269964002072811, + -0.017116565257310867, + -0.007926177233457565, + 0.024105235934257507, + -0.00889919325709343, + 0.011640684679150581, + 0.018863731995224953, + 0.019730214029550552, + -0.03275584802031517, + 0.016164856031537056, + -0.00862930528819561, + 0.014318254776299, + 0.0011230525560677052, + -0.010497212409973145, + 0.008132143877446651, + -0.008373621851205826, + 0.0026580390986055136, + 0.016818268224596977, + 0.01227279007434845, + 0.004609398543834686, + -0.008188962005078793, + 0.004826019052416086, + -0.00895601138472557, + 0.004524170886725187, + 0.006967365276068449, + 0.006079576443880796, + -0.01812509261071682, + -0.021448973566293716, + 0.0047940583899617195, + 0.019730214029550552, + 0.001953135011717677, + -0.004744342528283596, + 0.01926146261394024, + -0.028054120019078255, + -0.024474557489156723, + -0.01707395166158676, + 0.015142123214900494, + -0.02254272811114788, + 0.014126492664217949, + 0.011924777179956436, + -0.011470229364931583, + 0.01326001062989235, + -0.008785556070506573, + -0.009872209280729294, + 0.015227350406348705, + 0.012627905234694481, + -0.005546903237700462, + 0.01991487480700016, + 0.006899893283843994, + -0.0036683424841612577, + 9.133125422522426e-5, + 0.0038032864686101675, + -0.009637833572924137, + -0.004442494362592697, + 0.009652038104832172, + -0.009133568964898586, + -0.0014444320695474744, + -0.0025639336090534925, + -0.010923351161181927, + 0.00010636817751219496, + 0.01776997745037079, + 0.003991497680544853, + -0.017031336203217506, + -0.0004501088405959308, + -0.00846595223993063, + -0.0056285797618329525, + 0.014261436648666859, + -0.0054190619848668575, + -0.014630756340920925, + -0.002404131693765521, + 0.02687513642013073, + 0.0009161978377960622, + -0.005752870347350836, + -0.017599521204829216, + -0.0079403817653656, + -0.002574587007984519, + -0.025255810469388962, + 0.013579614460468292, + -0.011789833195507526, + -0.0037145076785236597, + 0.011598070152103901, + 0.0058878143317997456, + -0.008132143877446651, + 0.0004514405154623091, + 0.01923305355012417, + 0.014545529149472713, + 0.006569635588675737, + 0.00677915383130312, + -0.0019513594452291727, + 0.013309727422893047, + 0.002196389017626643, + 0.0071023087948560715, + 0.016278492286801338, + -0.004854428116232157, + 0.01663360744714737, + -0.003599095158278942, + -0.010127892717719078, + 0.0031534251756966114, + -0.023125117644667625, + 0.02096601575613022, + -0.013089555315673351, + -0.004513517487794161, + 0.023267164826393127, + 0.003245755098760128, + -0.010262836702167988, + 0.0008194288820959628, + 0.010965964756906033, + 0.013366545550525188, + 0.021519996225833893, + 0.0029776429291814566, + 0.01210943702608347, + 0.00762077746912837, + -0.010781304910779, + 0.012656314298510551, + 0.0007861368358135223, + -0.023338187485933304, + 0.019034188240766525, + 0.006626454181969166, + -0.002533748745918274, + -0.015000076964497566, + -0.0022478806786239147, + 0.024105235934257507, + -0.011328183114528656, + -0.02370750717818737, + -0.026505816727876663, + 0.004169055260717869, + -0.011328183114528656, + -0.010454598814249039, + 0.012485858984291553, + 0.03383539989590645, + 0.023750120773911476, + 0.0158807635307312, + -0.0051775830797851086, + -0.015440419316291809, + 0.014971666969358921, + -0.015042690560221672, + 0.013160578906536102, + 0.005039088428020477, + 0.014311152510344982, + -0.023991599678993225, + 0.007301173638552427, + 0.014829620718955994, + 0.012208868749439716, + 0.004492210224270821, + 0.009907720610499382, + -0.0037038540467619896, + -0.012727337889373302, + -0.011718809604644775, + -0.02107965387403965, + -0.0013565410627052188, + 0.0004834009159822017, + 0.013018532656133175, + -0.02723025344312191, + 0.0020454649347811937, + -0.003022032557055354, + 0.010916248895227909, + 0.006775602698326111, + 0.013615126721560955, + -0.022045567631721497, + -0.0011443595867604017, + 0.008991522714495659, + -0.015696102753281593, + 0.007876460440456867, + 0.00800430215895176, + 0.007855153642594814, + -0.0006361005362123251, + 0.00459874514490366, + -0.012812565080821514, + -0.006835972424596548, + 0.04522750526666641, + -0.012045515701174736, + 0.00732248043641448, + 0.019957488402724266, + -0.022315455600619316, + -0.0034108839463442564, + -0.02197454310953617, + 0.017088156193494797, + -0.010241529904305935, + -0.003955985885113478, + -0.03159106895327568, + -0.00459874514490366, + 0.022940458729863167, + -0.021221699193120003, + 0.008529872633516788, + -0.011534149758517742, + -0.013920526020228863, + 0.004478005692362785, + -0.0097940843552351, + 0.026448998600244522, + 0.006708130706101656, + -0.011328183114528656, + 0.017301224172115326, + -0.009346638806164265, + 0.025312628597021103, + -0.004172606393694878, + -0.0029474582988768816, + 0.004122890532016754, + -0.0030717486515641212, + 0.023508641868829727, + -0.009460275992751122, + 0.012691826559603214, + -0.0070419395342469215, + -0.007286969106644392, + -0.0007550642476417124, + 0.009296922013163567, + -0.007514243014156818, + -0.012514268048107624, + -0.006193213630467653, + 0.008686124347150326, + 0.013210294768214226, + 0.007233701646327972, + -0.009666242636740208, + -0.001460412284359336, + -0.020823970437049866, + -0.003764223773032427, + 0.011825344525277615, + 0.011328183114528656, + 0.005706705152988434, + -0.01961657777428627, + 0.012578189373016357, + -0.0012659865897148848, + 0.0023508642334491014, + -0.016704630106687546, + -0.027670595794916153, + -0.014787007123231888, + 0.00019553543825168163, + 0.0137642752379179, + -0.002320679370313883, + -0.00257103587500751, + 0.0055646589025855064, + -0.006125741638243198, + -0.005529147572815418, + -0.014098083600401878, + -0.013835297897458076, + 0.01113642007112503, + -0.00010126338747795671, + -0.008607998490333557, + -0.009701753966510296, + -0.0008043365087360144, + -0.002524870913475752, + -0.009502889588475227, + 0.02923310361802578, + -0.022556932643055916, + 0.007684698328375816, + -0.0013947159750387073, + 0.002137795090675354, + 0.0012162703787907958, + 0.016022808849811554, + -0.0019087455002591014, + 0.012798360548913479, + 0.001447095419280231, + -0.010795509442687035, + 0.0012260361108928919, + 0.00015059114957693964, + 0.0018927654018625617, + -0.024474557489156723, + 0.006253582891076803, + -0.008842375129461288, + -0.01421171985566616, + 0.01012079045176506, + -0.0005064834258519113, + 0.019488735124468803, + -0.019730214029550552, + -0.027358094230294228, + -0.04105134680867195, + -0.006455998867750168, + 0.01967339590191841, + 0.007169780787080526, + -0.024673420935869217, + 0.003602646291255951, + 0.01920464262366295, + -0.021008629351854324, + -0.03042629174888134, + -0.009325332008302212, + 0.01836657151579857, + 0.00019842076289933175, + 0.002047240501269698, + 0.006871483754366636, + -0.010603747330605984, + 0.022088181227445602, + -0.005252157337963581, + 0.00497871870175004, + -0.03443199396133423, + -0.008721635676920414, + 0.013473080471158028, + 0.009936130605638027, + -0.024730239063501358, + -1.491207422077423e-5, + 0.013174783438444138, + 0.005411959253251553, + 0.0024822570849210024, + -0.0026775705628097057, + -0.008529872633516788, + -0.021846702322363853, + 0.001063570729456842, + 0.00511366268619895, + -0.02514217421412468, + 0.02056828700006008, + 0.006544777657836676, + -0.016164856031537056, + -0.01866486854851246, + -0.004527722019702196, + 0.014872235246002674, + -0.025909222662448883, + 0.003845900297164917, + 0.009730163030326366, + -0.0007963464013300836, + 0.011967390775680542, + 0.01494325790554285, + 0.01615065149962902, + 0.0042862435802817345, + -0.0035547055304050446, + -0.007500038482248783, + 0.009680447168648243, + -0.011924777179956436, + -0.012990123592317104, + -0.018323957920074463, + -0.00014559733972419053, + -0.018764300271868706, + 0.017386453226208687, + -0.01458814274519682, + -0.006857279222458601, + 0.008295496925711632, + 0.002565709175541997, + -0.006214520428329706, + 0.01156966108828783, + 0.0017791284481063485, + -0.006278441287577152, + -0.02980128861963749, + -0.004414084833115339, + 0.011399205774068832, + -0.007819642312824726, + 0.0061434973031282425, + 0.02728707157075405, + -0.006640658713877201, + 0.0038032864686101675, + -0.002428989624604583, + 0.0024911349173635244, + -0.015625080093741417, + -0.003781979437917471, + -0.009744367562234402, + -0.005557556636631489, + 0.006843074690550566, + -0.005500738508999348, + -0.028196167200803757, + -0.005625028628855944, + 0.008458849973976612, + 0.00816765520721674, + 0.008700328879058361, + 0.0031907123047858477, + 0.01330262515693903, + -0.005205992609262466, + -0.0006560757756233215, + -0.020596696063876152, + -0.030000153928995132, + 0.012812565080821514, + -0.0084943613037467, + -0.0009268512949347496, + 0.0008394041215069592, + 0.020852379500865936, + -0.010362268425524235, + -0.007034837268292904, + 0.0080611202865839, + 0.03352290019392967, + 0.008451747708022594, + 0.00674719363451004, + -0.009474480524659157, + -0.00976567529141903, + 0.00012540013995021582, + 0.0021928378846496344, + -0.009325332008302212, + -0.007091655395925045, + 0.005376447923481464, + 0.018039865419268608, + 0.0014941482804715633, + -0.02535524219274521, + -0.006022757850587368, + -0.02066771872341633, + -0.027358094230294228, + -0.009126466698944569, + 0.002780553884804249, + -0.011477331630885601, + 0.019417712464928627, + -0.01004976686090231, + 0.0059481835924088955, + -0.02744332142174244, + 0.009346638806164265, + -0.004041214007884264, + -0.015014281496405602, + 0.01842338964343071, + 0.0055042896419763565, + 0.012947509065270424, + 0.028849579393863678, + 0.0028693329077214003, + 6.797131936764345e-5, + -0.01186795812100172, + -0.03701723366975784, + 0.01445319876074791, + 0.014275641180574894, + 0.015269964002072811, + 0.009581014513969421, + -0.019730214029550552, + -0.012642109766602516, + -0.0035014383029192686, + 0.020326808094978333, + -0.012358017265796661, + -0.02113647200167179, + 0.011058295145630836, + 0.010795509442687035, + -0.0030735242180526257, + 0.010994374752044678, + 0.010617951862514019, + -0.010546929202973843, + -0.006590942852199078, + -0.005205992609262466, + -0.015198941342532635, + -0.0004414528957568109, + 0.0022709632758051157, + -0.017784181982278824, + 0.004122890532016754, + -0.0021857356186956167, + -0.005078150890767574, + -0.0037393656093627214, + -0.02186090685427189, + 0.006179008632898331, + 0.017301224172115326, + -0.010958862490952015, + -0.0158807635307312, + -0.002413009526208043, + -0.014126492664217949, + -0.00029962864937260747, + -0.010000050999224186, + -0.004027009010314941, + -0.007528447546064854, + 0.02024158090353012, + -0.004012804478406906, + 0.0013228050665929914, + 0.0031001579482108355, + -0.0019407059298828244, + -0.01151284296065569, + -0.011747218668460846, + 0.0037677749060094357, + 0.002313577104359865, + 0.0008895642240531743, + -0.016349514946341515, + -0.013103759847581387, + 0.011967390775680542, + 0.003757121507078409, + -0.0008860130328685045, + -0.010355166159570217, + 0.015838149935007095, + -0.028352417051792145, + -0.012088130228221416, + 0.013380750082433224, + 0.017642134800553322, + 0.01167619600892067, + 0.01955975964665413, + -0.004907695576548576, + 0.018537025898694992, + 0.005056844092905521, + 0.006186110898852348, + 0.0026207519695162773, + 0.006005002185702324, + 0.0265200212597847, + 0.014829620718955994, + 0.017926227301359177, + -0.007507140748202801, + 0.0008553843363188207, + -0.007471628952771425, + -0.028806965798139572, + 0.00982249341905117, + 0.029147876426577568, + 0.0027787783183157444, + -0.005603721830993891, + -0.008245781064033508, + 0.003778428304940462, + 0.019659191370010376, + -0.013082453049719334, + 0.0015003627631813288, + 0.019190438091754913, + 0.007450322154909372, + 0.006473754532635212, + 0.017130769789218903, + -0.00430044811218977, + 0.004868632648140192, + -0.0014266762882471085, + 0.011491536162793636, + -0.008920500054955482, + -0.002890639705583453, + 0.014602347277104855, + -0.015696102753281593, + 0.018522821366786957, + 0.029005829244852066, + 0.017656339332461357, + 0.015596670098602772, + 0.02571035921573639, + -0.005536249838769436, + -0.011292670853435993, + 0.0007066797697916627, + 0.007812540046870708, + -0.004538375418633223, + 0.003647035686299205, + 0.023906372487545013, + 0.007663391530513763, + 0.019162029027938843, + -0.011221648193895817, + -0.01140630804002285, + -0.00816765520721674, + -0.003570685861632228, + -0.04809683561325073, + -0.016974518075585365, + -0.009346638806164265, + 0.008650612086057663, + -0.01576712541282177, + -0.006924751214683056, + -0.016221674159169197, + -0.0062074181623756886, + 0.008714533410966396, + -0.0017924451967701316, + 0.02259954810142517, + 0.0054190619848668575, + -0.0021608774550259113, + -0.02606547437608242, + -0.034829724580049515, + 0.015568261034786701, + 0.01980123668909073, + -0.0103480638936162, + -0.01521314587444067, + 0.010525621473789215, + 0.012201766483485699, + -0.009865107014775276, + 0.00043923340854234993, + -0.019147824496030807, + 0.010518519207835197, + 0.007173331920057535, + -0.005191788077354431, + -0.001749831368215382, + -0.005522045306861401, + -0.019545555114746094, + -0.006718784105032682, + -0.0021076102275401354, + 0.006431140936911106, + -0.01750008948147297, + 0.027869461104273796, + 0.004126441664993763, + -0.017684750258922577, + 0.004513517487794161, + -0.007152025122195482, + 0.019062597304582596, + 0.002428989624604583, + -0.0019407059298828244, + -0.012258585542440414, + 0.006271339021623135, + -0.02113647200167179, + -9.754577331477776e-5, + 0.031164931133389473, + 0.008046915754675865, + 0.013970241881906986, + -0.012393529526889324, + -0.0036257286556065083, + -0.03230130299925804, + -0.013274215161800385, + 0.014985871501266956, + 0.01752849854528904, + -0.022017158567905426, + 0.004996474366635084, + -0.010894942097365856, + -0.011235852725803852, + -0.0020436893682926893, + 0.0039701908826828, + -0.005767074879258871, + -0.03568200021982193, + 0.002111161360517144, + 0.02633536234498024, + -0.015625080093741417, + -0.0036860983818769455, + 0.0138850137591362, + -0.0008349652052856982, + 0.002150224056094885, + -0.0133310342207551, + -0.0030593196861445904, + -0.013963139615952969, + 0.02801150642335415, + -0.0025444021448493004, + -0.01752849854528904, + 0.004506415221840143, + 0.005266362335532904, + -0.008188962005078793, + 0.0008278628811240196, + 0.00031627470161765814, + -0.00021073882817290723, + 0.029431968927383423, + -0.0048863887786865234, + -0.02024158090353012, + -0.010745793581008911, + -0.01418331079185009, + 0.013757172040641308, + 0.003941781353205442, + -0.017485884949564934, + 0.00011530154733918607, + 0.007826744578778744, + -0.02218761295080185, + -0.007819642312824726, + 0.02146317809820175, + 0.012784156017005444, + -0.016846677288413048, + -0.00620386702939868, + 0.005781279411166906, + 0.005205992609262466, + -0.036051321774721146, + -0.008742942474782467, + -0.02836662158370018, + 0.02278420701622963, + 0.03289789706468582, + -0.00473368912935257, + -0.025610925629734993, + 0.0032617354299873114, + -0.009502889588475227, + 0.027997301891446114, + 0.020525673404335976, + 0.004119339399039745, + 0.01330262515693903, + 0.010667667724192142, + -0.00010880959598580375, + 0.02048305980861187, + 0.004971616435796022, + -0.015071099624037743, + 0.015781329944729805, + 0.007109411060810089, + 0.003174732206389308, + -0.025909222662448883, + -0.009843800216913223, + -0.020355217158794403, + 0.009105159901082516, + -0.005379999056458473, + -0.010653463192284107, + 0.0024112339597195387, + -0.0034765801392495632, + -0.03099447675049305, + -0.018977370113134384, + 0.015170532278716564, + 0.004595194011926651, + 0.024531375616788864, + 0.011001477017998695, + -0.005490084644407034, + 0.003941781353205442, + 0.013153476640582085, + 0.0037855308037251234, + 0.014801211655139923, + -0.0007315378170460463, + -0.0074858334846794605, + 0.013338136486709118, + -0.013210294768214226, + -0.043409314006567, + -0.03159106895327568, + -0.0009215245954692364, + 0.006711681839078665, + 0.019133619964122772, + -0.0031409962102770805, + -0.01869327761232853, + -0.014410585165023804, + 0.02313932217657566, + 0.009282717481255531, + -0.013430465944111347, + 0.022855229675769806, + 0.004687523934990168, + -0.03315357863903046, + -0.01585235446691513, + -0.0011834222823381424, + -0.013636433519423008, + -0.009850902482867241, + 0.0030042766593396664, + 0.002127141458913684, + -0.007152025122195482, + 0.0073437876999378204, + 0.015468829311430454, + 0.025511493906378746, + -0.019460326060652733, + 0.002343761967495084, + 0.0047088307328522205, + 0.000128507410408929, + 0.0029421315994113684, + 0.01642053760588169, + 0.009509991854429245, + -0.015752920880913734, + 0.013643535785377026, + -0.021562609821558, + 0.005539800971746445, + -0.025312628597021103, + 0.02313932217657566, + 0.018565434962511063, + 0.0003240428341086954, + -0.011328183114528656, + 0.005152725148946047, + -0.0228126160800457, + 0.009126466698944569, + 0.019034188240766525, + 0.01107960194349289, + -0.013132168911397457, + -0.009573912248015404, + 0.020326808094978333, + -0.0023224549368023872, + 0.020681923255324364, + -0.009872209280729294, + -0.01890634559094906, + -0.0016788082430139184, + -0.011036988347768784, + -0.005127867218106985, + -0.0021005079615861177, + 0.0021946134511381388, + 0.009744367562234402, + 0.00348190707154572, + -0.006981569807976484, + -0.017968840897083282, + 0.00612219050526619, + -0.011669093742966652, + 0.0002565709000919014, + 0.013139271177351475, + -0.005053292959928513, + 0.003215570468455553, + 0.004715932998806238, + 0.005806137807667255, + -0.000843399204313755, + -0.006100883241742849, + -0.0021448973566293716, + 0.0007790345116518438, + 0.013956037349998951, + -0.01731542870402336, + 0.00992902833968401, + -0.003441068809479475, + -0.022130794823169708, + 0.00565698929131031, + 0.017343837767839432, + 0.02687513642013073, + 0.003382474649697542, + 0.005958837457001209, + 0.01404836680740118, + 0.011775628663599491, + 0.010518519207835197, + 0.021519996225833893, + -0.010404882952570915, + 0.028863783925771713, + -0.02890639752149582, + -0.010333859361708164, + 0.019162029027938843, + 0.0069318534806370735, + -0.005447471048682928, + 0.028977420181035995, + -0.012443245388567448, + -0.02311091311275959, + 0.008394929580390453, + 0.012322505936026573, + -0.006495061796158552, + -0.004634256474673748, + 0.011853753589093685, + -0.0024005803279578686, + 0.0019460326293483377, + 0.004307550378143787, + 0.00047274742973968387, + -0.013402056880295277, + 0.018409185111522675, + -0.012954611331224442, + 0.007777028251439333, + 0.011555456556379795, + 0.0027752271853387356, + -0.011995799839496613, + 0.010234427638351917, + -0.005756421480327845, + 0.019474530592560768, + -0.011143522337079048, + 0.008458849973976612, + 0.003499662736430764, + -0.007663391530513763, + -0.018551230430603027, + -0.0037535703741014004, + -0.0019460326293483377, + 0.001032498199492693, + 0.011441819369792938, + -0.0016983395908027887, + 0.02259954810142517, + 0.00606892304494977, + -0.0017480558017268777, + -0.024389328435063362, + -0.01064636092633009, + -0.01097306702286005, + -0.013920526020228863, + -0.014240129850804806, + -0.011995799839496613, + -0.006725886836647987, + -0.009723060764372349, + -0.014815416187047958, + 0.012585291638970375, + 0.013487285003066063, + 0.003125015879049897, + -0.004421187564730644, + -0.024389328435063362, + -0.0007603909471072257, + 0.006857279222458601, + -0.0007257672259584069, + -0.017784181982278824, + -0.003881411859765649, + -0.009410559199750423, + 0.0030770753510296345, + -0.02129272185266018, + 0.009027034975588322, + 0.010838123969733715, + -0.008650612086057663, + -0.010923351161181927, + 0.0011434718035161495, + 0.01230119913816452, + -0.013963139615952969, + -0.015639284625649452, + 0.00992902833968401, + -0.007155576255172491, + -0.010767100378870964, + -0.011896367184817791, + -0.03173311799764633, + -0.0036576890852302313, + -0.010490110144019127, + -0.02080976590514183, + -0.0010990822920575738, + 0.0619889535009861, + -0.00010769985965453088, + 0.015369396656751633, + -0.0038210421334952116, + -0.007478731218725443, + -0.00903413724154234, + 0.01458814274519682, + -0.005411959253251553, + -0.0007452985737472773, + -0.00612219050526619, + -0.008025608956813812, + 0.010376473888754845, + -0.0001459302584407851, + -0.0058238934725522995, + -0.0029119467362761497, + 0.005085253156721592, + -0.007329582702368498, + 0.02465921640396118, + -0.018167706206440926, + 0.020582491531968117, + -0.011931879445910454, + -0.0073437876999378204, + -0.02848025970160961, + 0.0032351016998291016, + -0.015412010252475739, + 0.010056869126856327, + -0.019573964178562164, + -0.000708011444658041, + 0.0075781638734042645, + -0.016548380255699158, + 0.0045845406129956245, + -0.015298373997211456, + 0.02728707157075405, + -0.0027787783183157444, + -0.017968840897083282, + 0.02188931591808796, + 0.021235903725028038, + -0.030199017375707626, + -0.015227350406348705, + -0.005081702023744583, + 0.007152025122195482, + 0.013515694066882133, + -0.009126466698944569, + -0.006569635588675737, + 0.00876424927264452, + 0.02830980345606804, + -0.012173357419669628, + 0.0030735242180526257, + -0.013309727422893047, + 0.0053942035883665085, + 0.011519945226609707, + -0.018082479014992714, + 0.007748619187623262, + 0.005830995738506317, + -0.0018732339376583695, + -0.027571164071559906, + -0.0002501344424672425, + -0.024233078584074974, + -0.006210969295352697, + 0.0016397455474361777, + 0.012073925696313381, + 0.008664816617965698, + 0.009652038104832172, + -0.00015491910744458437, + -0.014041264541447163, + -0.02009953372180462, + 0.005415510386228561, + 0.011619377881288528, + 0.0416763499379158, + 0.01639212854206562, + 0.030056972056627274, + -0.004133543930947781, + 0.0007825856446288526, + -0.012848077341914177, + -0.0003928464720956981, + -0.003607972990721464, + -0.0017800162313506007, + -0.023366596549749374, + -0.005600170698016882, + 0.014410585165023804, + 0.0204546507447958, + 0.006853728089481592, + -0.013224499300122261, + 0.021150676533579826, + 0.008473054505884647, + -0.0026811216957867146, + 0.0018750096205621958, + 0.01923305355012417, + -0.007006427738815546, + 0.004449596628546715, + 0.0055433521047234535, + -0.017386453226208687, + 0.011548354290425777, + 0.006036962848156691, + -0.0004077169287484139, + -0.01571030728518963, + 0.013700353913009167, + 0.006775602698326111, + 0.014715984463691711, + -0.0031995901372283697, + -0.021505791693925858, + 0.024261487647891045, + 0.0005118101253174245, + 0.015298373997211456, + -0.010923351161181927, + 0.009012830443680286, + 0.007130718324333429, + 0.011598070152103901, + -0.01606542244553566, + -0.004048316273838282, + 0.011029886081814766, + 0.010376473888754845, + -0.01836657151579857, + 0.011825344525277615, + 0.003881411859765649, + 0.0266620684415102, + -0.021193290129303932, + -0.007031285669654608, + -0.010859430767595768, + 0.013316829688847065, + -0.0068927910178899765, + 0.011456024833023548, + 0.0003764223656617105, + 0.0016654914943501353, + 0.026264337822794914, + -0.0008358529885299504, + -0.015568261034786701, + 0.007862255908548832, + 0.014360868372023106, + -0.004953860305249691, + 0.010248632170259953, + 0.018466003239154816, + -0.0027166332583874464, + 0.015269964002072811, + 0.012230176478624344, + 0.0006099107558839023, + -0.0024414188228547573, + -0.0009978744201362133, + 0.016221674159169197, + 0.0158807635307312, + -0.007176883053034544, + -0.0065092663280665874, + -0.015284168533980846, + -0.007535549812018871, + -0.005685398355126381, + -0.021519996225833893, + -0.0034002303145825863, + 0.023423414677381516, + -0.01055403146892786, + 0.004076725337654352, + 0.007741516921669245, + -0.004431840963661671, + 0.022741593420505524, + -0.01603701338171959, + -0.010923351161181927, + -0.01101568154990673, + 0.011534149758517742, + 0.005429715383797884, + -0.03167629987001419, + 0.0077202096581459045, + -0.011548354290425777, + 0.005813240073621273, + -0.0022212471812963486, + -0.008125041611492634, + -0.014112288132309914, + -0.010220222175121307, + 0.01579553447663784, + 0.02053987793624401, + 0.0018732339376583695, + 0.010170506313443184, + 0.007911971770226955, + 0.0008771351422183216, + -0.018636459484696388, + -0.02421887405216694, + -0.00307529978454113, + 0.006036962848156691, + -0.019730214029550552, + 0.015454624779522419, + -0.01276284921914339, + 0.03505699709057808, + -0.008416236378252506, + -0.003382474649697542, + 0.03042629174888134, + 0.01124295499175787, + -0.0025088905822485685, + -0.0061896624974906445, + 0.02798309735953808, + -0.0027485936880111694, + -0.00724080391228199, + 0.02221602201461792, + 0.028835374861955643, + -0.023991599678993225, + 0.006654863711446524, + 0.0036541379522532225, + -0.0006698365323245525, + 0.02129272185266018, + 0.019630782306194305, + -0.004847325850278139, + 0.002659814665094018, + -0.024389328435063362, + 0.004073174204677343, + -0.006335259415209293, + 0.002821392146870494, + -0.0021573263220489025, + -0.014034162275493145, + 0.008615100756287575, + 0.002056118566542864, + 0.0046058474108576775, + -0.0006534124258905649, + 0.05190367251634598, + 0.015028486028313637, + 0.008671918883919716, + 0.008643509820103645, + -0.006001451052725315, + -0.022443296387791634, + -0.008245781064033508, + 0.014900644309818745, + 0.010603747330605984, + -0.019133619964122772, + -0.023210344836115837, + -0.006534124258905649, + -0.006683272775262594, + -0.005951734725385904, + 0.02227284014225006, + -0.00800430215895176, + 0.010632156394422054, + -0.0016956762410700321, + 0.0053089759312570095, + 0.012279892340302467, + -0.011633582413196564, + -0.0027130821254104376, + 0.019403507933020592, + 0.019176233559846878, + -0.015596670098602772, + -0.009133568964898586, + -0.001708993106149137, + -0.0031125869136303663, + -0.000577062601223588, + -0.0010484784143045545, + -0.015099508687853813, + 0.0066584148444235325, + -0.014602347277104855, + 0.007137820590287447, + 0.011349489912390709, + 0.00018776729120872915, + 0.007975893095135689, + -0.013075350783765316, + 0.015284168533980846, + 0.012741542421281338, + -0.0017755771987140179, + 0.01585235446691513, + -0.00889919325709343, + -0.015596670098602772, + 0.014488710090517998, + -0.002926151268184185, + 0.009183285757899284, + 0.015923377126455307, + 0.001105296891182661, + 0.0011079602409154177, + -0.0012686499394476414, + -0.022343864664435387, + 0.0008331896387971938, + -0.021576814353466034, + 0.032528575509786606, + -0.011491536162793636, + -0.004982269834727049, + -0.024943308904767036, + 0.00357956369407475, + 0.02592342719435692, + -0.0018377224914729595, + 0.005486533511430025, + 0.0015713858883827925 + ], + "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83": [ + 0.005704337731003761, + -0.03681890666484833, + -0.010638437233865261, + 0.02719474397599697, + -0.015473397448658943, + -0.008472619578242302, + 0.0423097126185894, + 0.0377950519323349, + -0.00893781241029501, + 0.06894012540578842, + 0.026203347370028496, + -0.003025663085281849, + 0.010196122340857983, + -0.011606954969465733, + 0.0034279408864676952, + 0.037032436579465866, + -0.025867799296975136, + 0.010790959931910038, + -0.02870471589267254, + -0.033707451075315475, + 0.04654983431100845, + -0.04578722268342972, + -0.04157760739326477, + -0.007729072589427233, + 0.02690495178103447, + 0.023564711213111877, + -0.027942104265093803, + 0.024190053343772888, + -0.029604597017169, + -0.008846298791468143, + 0.00224970537237823, + 0.007168552838265896, + -0.008678524754941463, + 0.012422949075698853, + 0.044139981269836426, + -0.0222835224121809, + 0.006302988156676292, + -0.032914333045482635, + -0.04386544227600098, + -0.03758151829242706, + 0.0030123174656182528, + 0.013528736308217049, + 0.02251230552792549, + 0.007847277447581291, + -0.028125129640102386, + -0.006505080498754978, + -0.014985325746238232, + -0.03626982495188713, + -0.01923307403922081, + 0.01862298510968685, + 0.024403583258390427, + 0.0019885108340531588, + 0.029802877455949783, + -0.02097182907164097, + 0.06174106523394585, + -0.025806790217757225, + 0.0208650641143322, + 0.010142739862203598, + -0.008213330991566181, + -0.03788656368851662, + 0.02775907702744007, + -0.02272583730518818, + -0.003605248173698783, + -0.006806312128901482, + 0.01911105588078499, + -0.00026834409800358117, + -0.002034267410635948, + 0.01674695871770382, + -0.028643706813454628, + -0.004590924363583326, + 0.009944460354745388, + 0.04386544227600098, + -0.008861551061272621, + 0.027789581567049026, + -0.000761658709961921, + -0.049844320863485336, + 0.030275696888566017, + 0.04276727885007858, + 0.022924115881323814, + -0.010119860991835594, + 0.003445099573582411, + -0.015175978653132915, + -0.0029551214538514614, + 0.005563254468142986, + 0.08266714215278625, + 0.023046134039759636, + -0.012224670499563217, + -0.040418434888124466, + 0.04670235887169838, + -0.029574092477560043, + -0.018699245527386665, + 0.03846614807844162, + 0.008991195820271969, + -0.01900429092347622, + -0.021673433482646942, + 0.005593759007751942, + 0.032914333045482635, + -0.005757720675319433, + 0.008045556955039501, + -0.01393292099237442, + 0.04880716651678085, + 0.0023946017026901245, + -0.0009761433466337621, + -0.016380906105041504, + -0.006219100672751665, + -0.00877003837376833, + 0.037642527371644974, + -0.009974964894354343, + -0.024357827380299568, + 0.05323031544685364, + 0.003670070320367813, + -0.010531671345233917, + -0.0009175175800919533, + -0.0327008031308651, + -0.048380106687545776, + -0.04359090328216553, + -0.04703790694475174, + 0.0049074082635343075, + 0.002047613263130188, + -0.02345794439315796, + 0.0676589384675026, + 0.008304844610393047, + -0.033310890197753906, + 0.01985841616988182, + -0.012232296168804169, + 0.04200466722249985, + -0.00984532106667757, + 0.026584653183817863, + 0.0032982968259602785, + 0.015831824392080307, + 0.013612624257802963, + -0.024693375453352928, + 0.023961268365383148, + -0.024525601416826248, + 0.001024759840220213, + 0.043468885123729706, + -0.0217191893607378, + 0.043956954032182693, + -0.02239028736948967, + -0.005254396703094244, + -0.06698783487081528, + -0.03791707009077072, + -0.021856458857655525, + -0.003969395533204079, + 0.0067147985100746155, + 0.00517432251945138, + -0.0021677245385944843, + 0.02623385190963745, + -0.02007194794714451, + 0.01596909575164318, + -0.07656624168157578, + -0.0040304046124219894, + 0.003984647803008556, + 0.022710585966706276, + 0.012903395108878613, + -0.019980434328317642, + -0.03242626041173935, + 0.01940084993839264, + -9.359870455227792e-5, + 0.03938128426671028, + 0.025959312915802002, + -0.02188696339726448, + 0.002028547925874591, + 0.01545051857829094, + 0.04789203405380249, + 0.0030885785818099976, + 0.043956954032182693, + 0.024998420849442482, + -0.02544073574244976, + 0.022832602262496948, + -0.012148409150540829, + -0.024830646812915802, + 0.009616537019610405, + 0.022649576887488365, + -0.012537341564893723, + -0.01613686978816986, + 0.023930763825774193, + 0.03718496114015579, + 0.014504879713058472, + -0.013162682764232159, + -0.019278831779956818, + -0.025959312915802002, + 0.021307379007339478, + -0.022420791909098625, + 0.024052781984210014, + 0.01595384255051613, + 0.04124205559492111, + 0.014756541699171066, + 0.0032563533168286085, + -0.008098939433693886, + 0.004388832021504641, + -0.028719967231154442, + -0.015275117941200733, + -0.0051781353540718555, + -0.012743246741592884, + -0.01889752596616745, + 0.006383062340319157, + -0.013612624257802963, + -0.007992173545062542, + 0.022878360003232956, + 0.01320081390440464, + -0.03785606101155281, + -0.018317939713597298, + 0.03864917531609535, + -0.030428217723965645, + 0.049844320863485336, + -0.030763767659664154, + 0.008991195820271969, + 0.028613202273845673, + -0.038435645401477814, + 0.024449340999126434, + -0.035385195165872574, + -0.0036014351062476635, + -0.05341334268450737, + 0.002089556772261858, + 0.003031382570043206, + 0.003292577341198921, + 0.014398114755749702, + -0.024190053343772888, + -0.04017439857125282, + 0.0015948123764246702, + 0.00778626836836338, + 0.029238544404506683, + -0.022771595045924187, + -0.05426746979355812, + 0.01657918468117714, + -0.010318140499293804, + 0.009708050638437271, + -0.03312786668539047, + 0.010501166805624962, + 0.030550235882401466, + -0.027515040710568428, + 0.027103230357170105, + -0.0009713770123198628, + -0.012979656457901001, + 0.008236209861934185, + 0.053901415318250656, + 0.023732485249638557, + -0.02031598426401615, + 0.010623184964060783, + 0.014276096597313881, + 0.027332013472914696, + -0.004686250817030668, + -3.0072531444602646e-5, + 0.006833003368228674, + -0.018134912475943565, + -0.005262022837996483, + 0.06857407093048096, + -0.003111456986516714, + -0.027255753055214882, + -0.02504417859017849, + -0.005490806419402361, + 0.00506374379619956, + 0.024571359157562256, + -0.03846614807844162, + 0.028247147798538208, + 0.035507213324308395, + -0.026813438162207603, + -0.01458114106208086, + 0.03334139660000801, + 0.007019843440502882, + 0.04700740426778793, + 0.004976043477654457, + 0.053443849086761475, + 0.01923307403922081, + -0.01500057801604271, + 0.020849812775850296, + 0.0013317111879587173, + 0.03700193390250206, + 0.04654983431100845, + 0.005548002198338509, + 0.019553370773792267, + 0.020682036876678467, + 0.0245408546179533, + 0.012689863331615925, + -0.00699315220117569, + -0.026416879147291183, + -0.014222714118659496, + 0.004407897125929594, + 0.004129543900489807, + -0.003805433865636587, + -0.028735220432281494, + 0.009425884112715721, + -0.020010938867926598, + 0.0015118783339858055, + 0.014817550778388977, + -0.030107920989394188, + -0.001387953874655068, + 0.00848787184804678, + 0.018287435173988342, + -0.009593659080564976, + 0.002310714451596141, + 0.0017568673938512802, + 0.01458114106208086, + 0.008869177661836147, + -0.001246870611794293, + -0.009952086955308914, + 0.010104608722031116, + 0.0007568923756480217, + 0.018867021426558495, + -0.018989037722349167, + -0.02476963773369789, + 0.008876803331077099, + -0.019614379853010178, + 0.016624940559267998, + -0.020376993343234062, + 0.03379896283149719, + 0.05368788540363312, + -0.005910242907702923, + 0.029208039864897728, + 0.027911599725484848, + -0.020682036876678467, + -0.04462805390357971, + -0.04685487970709801, + 0.007706194184720516, + 0.014428619295358658, + 0.015648799017071724, + 0.020849812775850296, + -0.011767103336751461, + -0.014710785821080208, + 0.009235231205821037, + -0.030763767659664154, + -0.05060693249106407, + 0.006234352942556143, + 0.040021877735853195, + -0.05917869135737419, + 0.024266313761472702, + 0.03108406439423561, + -0.03993036225438118, + -0.00731726223602891, + -0.038954220712184906, + -0.047129422426223755, + -0.030992550775408745, + 0.015305622480809689, + -0.028750471770763397, + -0.04246223717927933, + -0.031175578013062477, + -0.028292905539274216, + 0.038557663559913635, + -0.005902616772800684, + -0.00279115978628397, + -0.03288383036851883, + 0.01990417391061783, + -0.01709775999188423, + -0.012605976313352585, + 9.139427857007831e-5, + 0.021505657583475113, + 0.033981990069150925, + 0.015038708224892616, + 0.002102902624756098, + 0.001024759840220213, + -0.006005569361150265, + -0.02031598426401615, + -0.0011353385634720325, + 0.0194618571549654, + 0.009685172699391842, + -0.03267029672861099, + -0.017341796308755875, + -0.008533628657460213, + 0.0024765825364738703, + -0.010058851912617683, + -0.009311492554843426, + -0.011004490777850151, + 0.005376414395868778, + -0.04703790694475174, + -0.017723102122545242, + 0.003992273937910795, + -0.0022325466852635145, + -0.007629932835698128, + 0.01714351773262024, + -0.012735620141029358, + -0.02261907234787941, + -0.028689462691545486, + -0.029284300282597542, + -0.01940084993839264, + -0.011713719926774502, + -0.01162220723927021, + 0.0076833157800138, + -0.004819707944989204, + 0.019827911630272865, + 0.03654436767101288, + -0.031099317595362663, + 0.007275318261235952, + 0.017235031351447105, + 0.02103283815085888, + 0.024052781984210014, + 0.00919710099697113, + -0.04352989420294762, + -0.004834960214793682, + -0.012064522132277489, + -0.00558231957256794, + -0.007431653793901205, + -0.03846614807844162, + 0.02329017035663128, + 0.00913609191775322, + 0.003610967891290784, + -0.014375235885381699, + -0.01563354581594467, + 0.0002881243417505175, + -0.015648799017071724, + -0.0023755363654345274, + -0.015015830285847187, + 0.009326744824647903, + 0.015099717304110527, + 0.023885007947683334, + -0.027850590646266937, + -0.022146252915263176, + -0.007633746135979891, + 0.014504879713058472, + 0.01567930169403553, + -0.0041142916306853294, + 0.0034775107633322477, + 0.005689085461199284, + 0.029452074319124222, + 0.04844111204147339, + -0.0037043876945972443, + 0.02345794439315796, + 0.04953927546739578, + -0.035507213324308395, + -0.022832602262496948, + 0.00950214546173811, + 0.019721146672964096, + 0.01122564822435379, + 0.013261822983622551, + -0.01134004071354866, + 0.019141560420393944, + 0.0008398264762945473, + -0.02104809135198593, + -0.009799564257264137, + 0.009250483475625515, + -0.013414344750344753, + 0.03300584852695465, + 0.01215603481978178, + 0.020560018718242645, + -0.03852715715765953, + -0.0417606346309185, + 0.01077570766210556, + -0.026859194040298462, + 0.015420014970004559, + 0.008320096880197525, + -0.0047663250006735325, + 0.00044255328248254955, + -0.02550174482166767, + 0.025013674050569534, + -0.0225580632686615, + -0.030046911910176277, + -0.0316026397049427, + 0.02364097163081169, + 0.026706671342253685, + -0.032182227820158005, + 0.007622306700795889, + 0.003262072801589966, + -0.035903774201869965, + -0.017555328086018562, + 0.026584653183817863, + -0.0013288514455780387, + -0.03907623887062073, + -0.003168652765452862, + 0.034775108098983765, + -0.03230424225330353, + 0.0018645863747224212, + 0.01636565290391445, + 0.011210395954549313, + -0.00984532106667757, + 0.00820570532232523, + -0.04691588878631592, + -0.001489953137934208, + -0.01782986894249916, + -0.004602363333106041, + -0.014489627443253994, + 0.023869754746556282, + -0.02707272581756115, + -0.011828112415969372, + 0.0058377948589622974, + 0.01624363474547863, + -0.009837694466114044, + 0.013437223620712757, + 0.0001611017796676606, + 0.03309736028313637, + -0.03300584852695465, + 0.02978762425482273, + 0.008198078721761703, + 0.03321937844157219, + -0.010173244401812553, + -0.011324788443744183, + 0.014443871565163136, + -0.027728572487831116, + -0.01398630440235138, + 0.0017540075350552797, + -0.021642928943037987, + 0.022375036031007767, + 0.01720452681183815, + 0.008144696243107319, + 0.010745203122496605, + -0.008015052415430546, + -0.03459208086133003, + -0.008747159503400326, + 0.0023393123410642147, + 0.0019332213560119271, + 0.0023965081200003624, + 0.00772525928914547, + -0.03886270895600319, + -0.012102652341127396, + 0.00913609191775322, + -0.013551615178585052, + 0.04502461105585098, + -0.008587011136114597, + 0.03135860338807106, + -0.00525820953771472, + -0.0031972508877515793, + -0.051308535039424896, + 0.0153666315600276, + -0.0304587222635746, + 0.01336858794093132, + -0.002055239398032427, + 0.0036948551423847675, + -0.02476963773369789, + -0.004434588830918074, + 0.05313880369067192, + 0.009715677239000797, + 0.016716454178094864, + -0.025761032477021217, + -0.034836117178201675, + -0.007149487268179655, + -0.004922660533338785, + -0.0012421043356880546, + -0.00538785383105278, + -0.021734442561864853, + 0.017951887100934982, + -0.016990995034575462, + -0.0008274340070784092, + 0.03462258353829384, + -0.02307663857936859, + -0.009807189926505089, + 0.009822442196309566, + -0.01407019142061472, + 0.0038225925527513027, + 0.014657402411103249, + -0.012651733122766018, + -0.022649576887488365, + -0.06662178039550781, + 0.04715992510318756, + 0.007694755215197802, + -0.016548680141568184, + -0.005548002198338509, + 0.01883651688694954, + -0.037978075444698334, + 0.0007526027038693428, + -0.020346488803625107, + 0.012949151918292046, + -0.03465308994054794, + 0.04112003743648529, + 0.005921682342886925, + -0.007992173545062542, + -0.014703159220516682, + -0.050515417009592056, + 0.007061786949634552, + -0.01862298510968685, + -0.010257131420075893, + -0.0310230553150177, + -0.005528937093913555, + 0.019888920709490776, + 0.011957756243646145, + -0.004076160956174135, + -0.005685272626578808, + -0.023061387240886688, + -0.024891655892133713, + 0.022466549649834633, + -0.022939369082450867, + 0.027332013472914696, + 0.025288213044404984, + 0.013414344750344753, + 0.03282282128930092, + 0.006688107270747423, + 0.009204726666212082, + 0.012537341564893723, + -0.0005733888829126954, + 0.012583097442984581, + -0.009403006173670292, + -0.025089934468269348, + 0.01776885986328125, + 0.0069435820914804935, + -0.005246770568192005, + 0.005715776700526476, + -0.019309336319565773, + -0.005628076381981373, + -0.007542232517153025, + 0.004228683654218912, + -0.014550636522471905, + 0.0025585631374269724, + 0.0006105662323534489, + 0.013315205462276936, + -0.02234453149139881, + 0.02052951417863369, + -0.007012217305600643, + 0.017784111201763153, + 0.01781461574137211, + 0.012079774402081966, + 0.0023202470038086176, + -0.0050942483358085155, + -0.0013126458507031202, + 0.0496307872235775, + -0.0012096932623535395, + 0.0003207736590411514, + -0.008220957592129707, + 0.024830646812915802, + 0.02272583730518818, + 0.003954143263399601, + 0.008777664043009281, + 0.01900429092347622, + 0.005071369931101799, + -0.005765346810221672, + 0.04252324625849724, + -0.01192725170403719, + 0.005242957267910242, + 0.008975943550467491, + -0.015938591212034225, + 0.022924115881323814, + 0.011439180001616478, + 0.018806012347340584, + 0.027393022552132607, + -0.005307779647409916, + 0.04410947859287262, + 0.00224970537237823, + 0.003172465832903981, + 0.03718496114015579, + -0.02617284283041954, + 0.017555328086018562, + -0.0031438679434359074, + -0.010005469433963299, + 0.006299174856394529, + -0.006341118831187487, + 0.02132263220846653, + 0.01766209304332733, + 0.007199057377874851, + 0.0014575421810150146, + 0.013246570713818073, + -0.007294383831322193, + -0.012194165959954262, + -0.015465770848095417, + -0.02149040624499321, + 0.0059674386866390705, + 0.019263578578829765, + 0.06741490215063095, + -0.017906129360198975, + 0.01322369184345007, + 0.015755563974380493, + -0.005673833191394806, + 0.04026591405272484, + 0.02899450808763504, + 0.022253017872571945, + 0.006329679396003485, + -0.011576450429856777, + 0.023000378161668777, + 0.008739533834159374, + -0.019782155752182007, + 0.007668063510209322, + 0.018989037722349167, + -0.026996465399861336, + 0.01799764297902584, + 0.031389109790325165, + -0.0030218500178307295, + 0.019156813621520996, + 0.008464992977678776, + 0.027850590646266937, + -0.010951108299195766, + 0.009662293829023838, + 0.021444648504257202, + -0.00031100271735340357, + 0.012316184118390083, + -0.019888920709490776, + -0.023274917155504227, + 0.009456388652324677, + 0.004510849714279175, + -0.0019980433862656355, + 0.0051323785446584225, + 0.015290370211005211, + 0.010905351489782333, + 0.015221735462546349, + -0.007370644714683294, + -0.030107920989394188, + -0.003700574627146125, + -0.022588567808270454, + 0.014901438727974892, + -0.033920980989933014, + -0.0011200864100828767, + -0.008121817372739315, + -0.034378547221422195, + -0.009441136382520199, + -0.010272383689880371, + -0.021566666662693024, + -0.0035537718795239925, + -0.023930763825774193, + 0.055182602256536484, + 0.02138363942503929, + -0.013467728160321712, + 0.006447884254157543, + -0.0219937302172184, + -0.004331636242568493, + -0.03983885049819946, + -0.028689462691545486, + -0.012926273047924042, + -0.0041181049309670925, + -0.018516218289732933, + 0.018485715612769127, + 0.031007803976535797, + -0.015618293546140194, + 0.008190453052520752, + -0.0030981111340224743, + 0.01923307403922081, + 0.013238944113254547, + 0.04731244966387749, + 0.00262910476885736, + 0.02939106710255146, + -0.011065499857068062, + 0.03343290835618973, + 0.001468981383368373, + 0.023549458011984825, + -0.004015152342617512, + 0.01952286623418331, + 0.011126508936285973, + 0.006756742484867573, + -0.018012896180152893, + -0.0037901815958321095, + -0.04218769446015358, + -0.005792038049548864, + 0.023320674896240234, + -0.020941324532032013, + 0.01330757886171341, + -0.0026310114189982414, + 0.048654645681381226, + 0.001038105576299131, + 0.0338294692337513, + -0.001973258564248681, + 0.012895768508315086, + -0.01330757886171341, + 0.0038855080492794514, + -0.005315405782312155, + -9.53264971030876e-5, + -0.022497054189443588, + 0.0041142916306853294, + -0.00843448843806982, + -0.005227704998105764, + -0.01001309510320425, + 0.033981990069150925, + -0.018592480570077896, + 0.004678624682128429, + 0.0018636330496519804, + -0.034775108098983765, + -0.03148062154650688, + 0.005452675744891167, + -0.012300931848585606, + 0.011995886452496052, + -0.026477888226509094, + -0.01889752596616745, + 0.008556506596505642, + 0.03309736028313637, + 0.0002821664384100586, + -0.0002719188341870904, + 0.02730150893330574, + -0.020346488803625107, + 0.02814038284122944, + -0.009616537019610405, + -0.014909064397215843, + -0.012598349712789059, + -0.012979656457901001, + 0.004693876951932907, + -0.0010219000978395343, + 0.02081930823624134, + 0.0043011317029595375, + -0.017845120280981064, + 0.019095804542303085, + 0.029604597017169, + 0.008342974819242954, + -0.021520910784602165, + -0.011019743047654629, + -0.01257547177374363, + -0.03465308994054794, + -0.012537341564893723, + -0.005898803938180208, + -0.040814995765686035, + -0.025166194885969162, + 0.026523645967245102, + 0.02550174482166767, + 0.019050046801567078, + -0.014787046238780022, + 0.013826155103743076, + -0.03684941306710243, + -0.0017139704432338476, + -0.00978431198745966, + 0.012903395108878613, + 0.006363997235894203, + 0.012964404188096523, + 0.013536362908780575, + -0.0007692848448641598, + -0.023564711213111877, + 0.021124351769685745, + 0.008342974819242954, + -0.0007097058114595711, + -0.012163661420345306, + 0.04130306467413902, + -0.033707451075315475, + 0.03407350555062294, + 0.027118481695652008, + 0.03599528595805168, + -0.011545945890247822, + -0.02887248992919922, + 0.0031152700539678335, + -0.024830646812915802, + 0.01956862397491932, + 0.002836916595697403, + 0.012682237662374973, + -0.019278831779956818, + 0.04715992510318756, + 0.013414344750344753, + -0.011675589717924595, + -0.007832025177776814, + 0.004365953616797924, + 0.019263578578829765, + 0.013185561634600163, + -0.008480245247483253, + 0.017921382561326027, + 0.030824776738882065, + -0.00291127129457891, + -0.005140004679560661, + 0.023442693054676056, + 0.035842765122652054, + 0.026432132348418236, + 0.032792314887046814, + 0.011774729005992413, + -0.011889120563864708, + 0.024952664971351624, + -0.04316383972764015, + 0.023991772904992104, + 0.0010095075704157352, + 0.03068750724196434, + -0.012621228583157063, + 0.00034460530150681734, + -0.016777463257312775, + 0.03626982495188713, + -0.005326844751834869, + -0.0338599719107151, + 0.02493741177022457, + -0.0225580632686615, + 0.007793894503265619, + 0.004945538938045502, + 0.004548980388790369, + 0.012926273047924042, + 0.015221735462546349, + 0.0236867293715477, + 0.004663372412323952, + -0.03447006270289421, + 0.027271004393696785, + 0.019644884392619133, + 0.01063081156462431, + 0.020666785538196564, + 0.006363997235894203, + 0.032975342124700546, + 0.007233374752104282, + 0.002733964007347822, + 0.03675789758563042, + 0.04703790694475174, + -0.01856197603046894, + -0.008365853689610958, + -0.0036090612411499023, + -0.028521688655018806, + 0.017921382561326027, + 0.014726037159562111, + -0.01862298510968685, + -0.006779620423913002, + 0.008053182624280453, + 0.004407897125929594, + 0.007576550357043743, + 0.017951887100934982, + 0.026035573333501816, + -0.015359005890786648, + 0.006806312128901482, + 0.016319897025823593, + -0.010905351489782333, + -0.03578175604343414, + 0.0017940447432920337, + -0.003233474912121892, + -0.010371522977948189, + 0.019782155752182007, + 0.019888920709490776, + 0.011782355606555939, + -0.0012068335199728608, + -0.023564711213111877, + -0.0022935555316507816, + 0.016258887946605682, + 0.006810124963521957, + -0.0016472418792545795, + 0.007832025177776814, + -0.025303466245532036, + -0.026371123269200325, + 0.02075829915702343, + 0.005326844751834869, + 0.0027244314551353455, + 0.000781677314080298, + -0.019019542261958122, + 0.012964404188096523, + -0.02899450808763504, + -0.018714498728513718, + -0.026691420003771782, + 0.011477310210466385, + -0.06302225589752197, + 0.022207261994481087, + 0.005609011277556419, + 0.00800742581486702, + -0.01703675277531147, + 0.019614379853010178, + 0.029772372916340828, + -0.02775907702744007, + -0.022024234756827354, + 0.03056548908352852, + 0.006032261066138744, + 0.013475353829562664, + -0.018287435173988342, + 0.016884230077266693, + -0.015206483192741871, + 0.0093038659542799, + -0.003147681010887027, + 0.012850011698901653, + 0.0211548563092947, + -0.015458145178854465, + 0.003368838457390666, + 0.001785465283319354, + 0.002289742464199662, + -0.004057095851749182, + 0.023137647658586502, + -0.008731907233595848, + -0.012789003551006317, + -0.008922560140490532, + -0.0013555428013205528, + 0.010142739862203598, + -0.020941324532032013, + -0.03578175604343414, + 0.008678524754941463, + -0.014146452769637108, + -0.005181948654353619, + -0.00956315454095602, + 0.0003093344857916236, + 0.0019179692026227713, + 0.004869277589023113, + -0.005536563228815794, + 0.016380906105041504, + 0.013635502196848392, + 0.03700193390250206, + -0.024830646812915802, + 0.008533628657460213, + 0.030382461845874786, + -0.0020037631038576365, + 0.015648799017071724, + -0.004251562058925629, + -0.0015280838124454021, + 0.01766209304332733, + -0.0028388232458382845, + -0.023442693054676056, + -0.026203347370028496, + -0.002760655479505658, + -0.005982690956443548, + -0.0001855291920946911, + 0.026782933622598648, + -0.008442115038633347, + -0.01545051857829094, + 0.0055136848241090775, + -0.022314026951789856, + 0.0035995286889374256, + -0.011393423192203045, + -0.004148609470576048, + -0.02961985021829605, + 0.013955799862742424, + -0.03035195730626583, + 0.026203347370028496, + -0.017006248235702515, + -0.02797260880470276, + 0.0075079151429235935, + -0.010173244401812553, + -0.004777763970196247, + -0.00828959234058857, + 0.04618378356099129, + -0.023762989789247513, + -0.016609689220786095, + -0.020407497882843018, + -0.005101874470710754, + -0.03456157445907593, + -0.01603010483086109, + 0.014687906950712204, + -0.04197416454553604, + -0.0015624013030901551, + -0.011179891414940357, + -0.030336705967783928, + 0.02470862865447998, + 0.03395148739218712, + 0.0012840479612350464, + 0.004209618084132671, + 0.03785606101155281, + -0.016945239156484604, + -0.002924616914242506, + -0.02943682298064232, + 0.01356686744838953, + -0.039625320583581924, + -0.008754786103963852, + 0.06631673872470856, + 0.019843164831399918, + 0.029070768505334854, + 0.01229330524802208, + -0.006257231347262859, + -0.008419236168265343, + 0.0027740010991692543, + -0.018485715612769127, + -0.03886270895600319, + -0.00885392539203167, + 0.008121817372739315, + 0.005544189363718033, + 0.013978677801787853, + 0.00792353879660368, + -0.007885407656431198, + -0.009708050638437271, + 0.0316026397049427, + 0.0012440108694136143, + -0.019263578578829765, + -0.009921582415699959, + -0.02560851164162159, + -0.0017235031118616462, + 0.0028712342027574778, + -0.015892833471298218, + 0.008449740707874298, + 0.0033459600526839495, + 0.0029284299816936255, + -0.004453653935343027, + 0.0004956977791152894, + -0.007900659926235676, + -0.0406014621257782, + 0.032975342124700546, + -0.015412388369441032, + -0.009075082838535309, + -0.07857953757047653, + -0.022832602262496948, + -0.011637458577752113, + 0.020682036876678467, + 0.019721146672964096, + 0.015381883829832077, + 0.005731028970330954, + 0.00578059908002615, + -0.016426661983132362, + -0.006447884254157543, + 0.0009990216931328177, + -0.014985325746238232, + 0.012323809787631035, + 0.04243173077702522, + -0.0019093897426500916, + -0.014047312550246716, + 0.000569575815461576, + -0.0012506836792454123, + -0.00919710099697113, + -0.00012201791832922027, + -0.006344931665807962, + 0.0016215037321671844, + 0.027667563408613205, + -0.0065317717380821705, + -0.006413566879928112, + 0.01764684170484543, + -0.028338661417365074, + -0.02295462042093277, + -0.013894790783524513, + -0.036178313195705414, + 0.0012163660721853375, + 0.025639014318585396, + 0.02155141532421112, + 0.0012840479612350464, + 0.03462258353829384, + 0.004510849714279175, + 0.017158769071102142, + -0.02955884113907814, + 0.009578406810760498, + -0.00567002035677433, + 0.005223892163485289, + -0.008228583261370659, + -0.02295462042093277, + -0.005551815498620272, + 0.0009551715338602662, + -0.024129044264554977, + -0.0071799918077886105, + -0.027835337445139885, + 0.014764168299734592, + 0.013925295323133469, + 0.022069990634918213, + -0.009540275670588017, + -0.008907307870686054, + -0.012461080215871334, + -0.008945439010858536, + -0.007435467094182968, + 0.027484536170959473, + -0.008503124117851257, + 0.010851969011127949, + -0.0014775607269257307, + 0.05365737900137901, + 0.011759476736187935, + 0.003536613192409277, + 0.009593659080564976, + -0.025761032477021217, + 0.03079427219927311, + 0.02278684638440609, + 0.03199920058250427, + 0.020849812775850296, + -0.005303966347128153, + 0.015694554895162582, + 0.00545648904517293, + -0.0041181049309670925, + 0.02347319759428501, + -0.00614665262401104, + 0.01184336468577385, + -0.00486546428874135, + 0.017967138439416885, + 0.02702696993947029, + -0.0007321074954234064, + -0.02644738368690014, + 0.0022268269676715136, + 0.00035080150701105595, + -0.028079373762011528, + -0.02347319759428501, + -0.017616337165236473, + 0.004053282551467419, + -0.010890099219977856, + 0.015351379290223122, + 0.00668429397046566, + 0.025242457166314125, + 0.006524145603179932, + 0.03800858184695244, + 0.011797607876360416, + 0.007477410603314638, + 0.06625573337078094, + -0.023595215752720833, + 0.038618672639131546, + 0.0024479844141751528, + -0.006447884254157543, + -0.01263648085296154, + -0.008175200782716274, + 0.028643706813454628, + 0.014428619295358658, + -0.0211548563092947, + 0.01653342880308628, + -0.010905351489782333, + -0.00941825844347477, + -0.014931943267583847, + 0.006451697554439306, + -0.003483230248093605, + 0.002373629715293646, + -0.013460101559758186, + -0.0003732032491825521, + -0.026081331074237823, + -0.0034870433155447245, + -0.010424906387925148, + -0.0016081579960882664, + -0.014855681918561459, + 0.011401048861443996, + 0.0032315682619810104, + 0.012583097442984581, + -0.019827911630272865, + -0.026660915464162827, + 0.005159070249646902, + -0.013734642416238785, + -0.00449941074475646, + -0.019309336319565773, + 0.009578406810760498, + 0.026660915464162827, + 0.002148659201338887, + -0.008747159503400326, + -0.00638687564060092, + 0.011606954969465733, + -0.015481023117899895, + 0.007260065991431475, + 0.031099317595362663, + -0.01822642609477043, + 0.0026119460817426443, + -0.03822211176156998, + 0.012529714964330196, + -0.0008979756385087967, + -0.0040304046124219894, + 0.008472619578242302, + -0.013437223620712757, + 0.002815944841131568, + 0.005311592482030392, + -0.0007125655538402498, + -0.005406918935477734, + -0.008381105959415436, + 0.0006715751951560378, + 0.008243835531175137, + 0.008053182624280453, + 0.013261822983622551, + -0.02441883645951748, + -0.033768460154533386, + -0.004564232658594847, + 0.010386775247752666, + -0.004312570672482252, + -0.004560419823974371, + -0.0068139382638037205, + 0.011828112415969372, + -0.00950214546173811, + 0.022573314607143402, + 0.016853725537657738, + -0.005624263547360897, + 0.0038416578900069, + -0.01534375362098217, + -0.025578007102012634, + -0.0033802776597440243, + 0.012651733122766018, + -0.034897126257419586, + -0.0010028347605839372, + -0.029772372916340828, + -0.009891077876091003, + -0.02475438453257084, + 0.009708050638437271, + 0.011675589717924595, + 0.014665029011666775, + -0.0024899281561374664, + -0.01725028268992901, + 0.024281565099954605, + -0.025028925389051437, + 0.005082808900624514, + -0.006913077551871538, + 0.01227042730897665, + -0.003706294344738126, + 0.0024231995921581984, + -0.011904372833669186, + 0.005845420993864536, + 0.004015152342617512, + 0.04197416454553604, + 0.0007468831026926637, + 0.02234453149139881, + -0.005075182765722275, + -0.017860373482108116, + 0.021703938022255898, + 0.03233474865555763, + -0.02961985021829605, + 0.005647141952067614, + -0.010928229428827763, + -0.008739533834159374, + 0.01900429092347622, + 0.01220941822975874, + -0.0005700524779967964, + 0.0008936859085224569, + -0.04017439857125282, + 0.029131777584552765, + 0.014787046238780022, + -0.012666985392570496, + -0.003912199754267931, + -0.0009413491934537888, + 0.011103630997240543, + 0.002343125408515334, + 0.012987282127141953, + -0.0019189224112778902, + 0.01023425254970789, + -0.008198078721761703, + -0.0051781353540718555, + -0.022664828225970268, + 0.05048491433262825, + 0.012102652341127396, + 0.02736251801252365, + -0.022298775613307953, + 0.017951887100934982, + 0.025745781138539314, + 0.023595215752720833, + -0.025394979864358902, + -0.013467728160321712, + 0.01294152531772852, + 0.004518475849181414, + 0.026767680421471596, + -0.0056547680869698524, + -0.009212353266775608, + -0.0021200613118708134, + -0.0022725837770849466, + 0.026889698579907417, + -0.0059674386866390705, + 0.021139604970812798, + 0.014924316667020321, + -0.0028807667549699545, + -0.009288613684475422, + -0.02007194794714451, + -0.00877003837376833, + 0.03633083403110504, + 0.03492762893438339, + -0.023823998868465424, + -0.006520332768559456, + -0.007607054430991411, + 0.011500189080834389, + 0.019644884392619133, + -0.008625141344964504, + -0.0024231995921581984, + 0.01567930169403553, + 0.007214309647679329, + -0.0038550037425011396, + -0.005803477484732866, + 0.005140004679560661, + 0.027713319286704063, + 0.01668594963848591, + -0.0028521688655018806, + -0.01990417391061783, + 0.025745781138539314, + -0.05292527377605438, + 0.02104809135198593, + -0.02007194794714451, + 0.005399292800575495, + -0.028628453612327576, + 0.009570780210196972, + -0.007961669005453587, + -0.009959712624549866, + 0.007847277447581291, + -0.02769806794822216, + 0.002289742464199662, + 0.02205473929643631, + 0.009906330145895481, + -0.004838773049414158, + -0.02640162780880928, + 0.022237766534090042, + -0.00787015538662672, + 0.004522289149463177, + 0.016121618449687958, + -0.022436045110225677, + 0.01506158709526062, + 0.026996465399861336, + 0.010691819712519646, + -0.010569802485406399, + -0.0024136670399457216, + 0.024739133194088936, + -0.017021499574184418, + 0.007755763828754425, + 0.013681259006261826, + 0.022939369082450867, + -0.02588305063545704, + 0.008724281564354897, + 0.003262072801589966, + 0.004522289149463177, + 0.0032239421270787716, + 0.019370345398783684, + 0.00992920808494091, + 0.008785289712250233, + -0.023534206673502922, + -0.04743446782231331, + 0.011301909573376179, + -0.012903395108878613, + -0.00026667589554563165, + 0.03938128426671028, + -0.01709775999188423, + 0.0018836515955626965, + -0.01969064213335514, + -0.019660137593746185, + -0.004022778477519751, + -0.008098939433693886, + -0.052315182983875275, + 0.00567002035677433, + -0.016258887946605682, + 0.015587789006531239, + -0.01215603481978178, + -0.023229161277413368, + -0.04444502666592598, + -0.009952086955308914, + -0.006440258119255304, + 0.008167574182152748, + -0.002844542730599642, + -0.030657002702355385, + -0.00482352077960968, + -0.0053306580521166325, + -0.0003293530608061701, + -0.0005166696500964463, + -0.002627198351547122, + -0.029314804822206497, + 0.04810556396842003, + 0.011126508936285973, + 0.003153400495648384, + -0.0034012494143098593, + -0.010325766168534756, + -0.0003936984285246581, + -0.009959712624549866, + -0.00908270850777626, + -0.006806312128901482, + 0.021978477016091347, + 0.022771595045924187, + -0.010874846950173378, + -0.002055239398032427, + 0.014428619295358658, + -0.0070389085449278355, + -0.010203748941421509, + 0.009601284749805927, + 0.01584707759320736, + 0.01272036787122488, + 0.008792916312813759, + 0.023946017026901245, + 0.014093069359660149, + 0.002964654238894582, + -0.015168352983891964, + 0.035171665251255035, + 0.010043599642813206, + 0.009555527940392494, + -0.01816541701555252, + -0.05201013758778572, + -0.00038059105281718075, + -0.007111357059329748, + -0.0014070190954953432, + 0.04066247120499611, + -0.0372459702193737, + -0.008785289712250233, + 0.0013536362675949931, + -0.020148208364844322, + -0.006512706633657217, + -0.009936834685504436, + 0.006909264717251062, + 0.0068558817729353905, + -0.04044894129037857, + 0.03407350555062294, + -0.010089356452226639, + 0.003954143263399601, + 0.00947926752269268, + 0.0016586810816079378, + 0.005517497658729553, + -0.007816772907972336, + 0.0028121317736804485, + -0.02104809135198593, + -0.0008593684178777039, + 0.011866242624819279, + -0.02008719928562641, + -0.020941324532032013, + -0.0015385696897283196, + -0.004434588830918074, + 0.005711963865906, + -0.0005014173802919686, + -0.025562753900885582, + -0.022085243836045265, + 0.0011830019066110253, + 0.007763389963656664, + 0.01962963305413723, + 0.008884429931640625, + -0.03012317419052124, + 0.007824399508535862, + -0.029680859297513962, + -0.011454432271420956, + 0.008869177661836147, + 0.005593759007751942, + -0.009814816527068615, + 0.0027835338842123747, + -0.024403583258390427, + 0.036025792360305786, + 0.019660137593746185, + 0.01322369184345007, + 0.006261044647544622, + -0.01590808667242527, + 0.002979906275868416, + 0.03980834782123566, + -0.02121586538851261, + -0.009486893191933632, + -0.012415323406457901, + 0.0068139382638037205, + -0.011439180001616478, + 0.024342574179172516, + 0.0030618871096521616, + 0.007336327340453863, + 0.010371522977948189, + -0.012766124680638313, + -0.025242457166314125, + -0.023625720292329788, + 0.00013441036571748555, + 0.0032372879795730114, + -0.02554750256240368, + 0.007713820319622755, + -0.004198179114609957, + -0.012926273047924042, + 0.013521110638976097, + -0.008106565102934837, + 0.008098939433693886, + 0.002964654238894582, + 0.03565973788499832, + -0.03079427219927311, + -0.022405540570616722, + -0.02104809135198593, + -0.014642150141298771, + 0.005612824112176895, + -0.026782933622598648, + -0.005666207056492567, + -0.004255374893546104, + -0.020727794617414474, + -0.01021137461066246, + -0.015923338010907173, + -0.0017215965781360865, + -0.008808168582618237, + 0.003862629644572735, + 0.03343290835618973, + 0.013490606099367142, + 0.010653689503669739, + 0.024784889072179794, + -0.007908286526799202, + 0.031007803976535797, + -0.0008817701018415391, + -0.024678124114871025, + -0.009959712624549866, + -0.02588305063545704, + 0.029909642413258553, + -0.008564132265746593, + 0.008739533834159374, + -0.012544967234134674, + 0.015770815312862396, + -0.002484208671376109, + 0.015107343904674053, + 0.01749431900680065, + -0.0008784336969256401, + -0.018302688375115395, + -0.034836117178201675, + 0.002876953687518835, + 0.002236359752714634, + -0.018516218289732933, + -0.007145674433559179, + 0.01979740709066391, + -0.023900259286165237, + -0.008175200782716274, + 0.0029398691840469837, + 0.004743446595966816, + 0.0059674386866390705, + 0.022939369082450867, + 0.009814816527068615, + -0.0180433988571167, + 0.03932027518749237, + 0.01810440793633461, + -0.04670235887169838, + 0.004510849714279175, + -0.00017861802189145237, + 0.01601485162973404, + 0.019812660291790962, + -0.011157013475894928, + 0.035446204245090485, + -0.028735220432281494, + -0.029025012627243996, + 0.005406918935477734, + 0.008274340070784092, + -0.029116526246070862, + 0.011233274824917316, + 0.003523267339915037, + 0.010707071982324123, + 0.0013507765252143145, + -0.02318340539932251, + -0.03986935317516327, + 0.0008774804300628603, + -0.009395379573106766, + -0.004354514647275209, + -0.009616537019610405, + 0.003969395533204079, + -0.003140054875984788, + -0.025227203965187073, + -0.01401680801063776, + 0.01956862397491932, + -0.0004060908977407962, + -0.007954043336212635, + 0.004869277589023113, + -0.005395479965955019, + 0.015198856592178345, + -0.008243835531175137, + -0.014649776741862297, + -0.01810440793633461, + -0.012087400071322918, + 0.0026310114189982414, + -0.016792716458439827, + -0.010760455392301083, + 0.009441136382520199, + 0.004621428903192282, + 0.010264757089316845, + 0.0036357527133077383, + -0.021581919863820076, + 0.002188696525990963, + 0.007717633154243231, + -0.005113313440233469, + -0.000619622238446027, + 0.0019694454967975616, + 0.03871018439531326, + 0.010180870071053505, + -0.0007154253544285893, + -0.00024403583665844053, + -0.0042019919492304325, + -0.0016949051059782505, + 0.0245408546179533, + 0.00013441036571748555, + -0.017692597582936287, + 0.010966360569000244, + 0.003874068846926093, + 0.0631442740559578, + 0.0019189224112778902, + -0.007069413084536791, + -0.019599128514528275, + 0.004979856312274933, + -0.014276096597313881, + 0.004324010107666254, + 0.0005266789230518043, + 0.01935509219765663, + 0.009654668159782887, + 0.010447784326970577, + -0.015831824392080307, + 0.005384040530771017, + 0.010524045675992966, + -0.0022744901943951845, + -0.0040304046124219894, + 0.019949929788708687, + 0.041882649064064026, + 0.010729950852692127, + 0.016426661983132362, + 0.0015919525176286697, + -0.005811103619635105, + -0.0010647970484569669, + 0.013437223620712757, + 0.002592880744487047, + -0.0038550037425011396, + -0.007805333938449621, + 0.004430775530636311, + 0.009631789289414883, + 0.002196322428062558, + 0.013406719081103802, + 0.009509771130979061, + -0.01491669099777937, + 0.0018035774119198322, + 0.009212353266775608, + 0.011828112415969372, + -0.0037501445040106773, + 0.019934676587581635, + 0.007931164465844631, + 0.025257708504796028, + -0.005788225214928389, + -0.01528274454176426, + 0.005227704998105764, + 0.021475153043866158, + -0.013254196383059025, + -0.0068596950732171535, + 0.005765346810221672, + -0.002829290460795164, + 0.006829190533608198, + -0.012110278010368347, + -0.02120061405003071, + -0.009273361414670944, + 0.001179188839159906, + -0.0074087753891944885, + 0.016380906105041504, + -0.005624263547360897, + 0.018119661137461662, + -0.023503702133893967, + -0.005151444114744663, + 0.0037444247864186764, + -0.0004873567377217114, + -0.0031839050352573395, + -0.024891655892133713, + -0.011690841987729073, + -0.012651733122766018, + -0.013551615178585052, + -0.012384818866848946, + 0.013818529434502125, + -0.004937912803143263, + -0.007393523119390011, + 0.006394501775503159, + 0.011294283904135227, + 0.006958834361284971, + -0.04664134979248047, + 0.004972230177372694, + 0.0057424684055149555, + 0.009403006173670292, + 0.015023455955088139, + 0.0039198254235088825, + -0.010356270708143711, + 0.002796879503875971, + 0.0011505908332765102, + 0.013666006736457348, + -0.011683215387165546, + -0.010005469433963299, + 0.006257231347262859, + 0.01630464382469654, + -0.011034995317459106, + -0.0148022985085845, + -0.01619787886738777, + 0.0027168053202331066, + 0.011401048861443996, + -0.0031972508877515793, + -0.0038950408343225718, + 0.015503901988267899, + 0.008945439010858536, + 0.001874118926934898, + -0.008777664043009281, + -0.007027469575405121, + -0.015770815312862396, + 0.02623385190963745, + 0.0044422149658203125, + 0.0003288764273747802, + -0.00021436547103803605, + 0.013513484969735146, + 0.002714898670092225, + -0.0029951585456728935, + -2.9789531254209578e-5, + -0.03422602638602257, + -0.009296240285038948, + 0.005910242907702923, + -0.001171562704257667, + -0.018973786383867264, + 0.013902416452765465, + -0.010249504819512367, + 0.012461080215871334, + 0.025822041556239128, + -0.015709806233644485, + 0.006421193014830351, + -0.01021137461066246, + -0.028277652338147163, + 0.0008541254210285842, + -0.004945538938045502, + -0.00554037606343627, + 0.002400321187451482, + -0.00848787184804678, + -0.022649576887488365, + 0.005860673263669014, + -0.01731129176914692, + 0.009059830568730831, + 0.019705893471837044, + -0.0048959688283503056, + -0.014588767662644386, + -0.012034017592668533, + 0.0008746206294745207, + 0.0008269574027508497, + -0.00011939644173253328, + 0.005475554149597883, + 0.024861151352524757, + 0.005441236775368452, + 0.011713719926774502, + 0.003874068846926093, + 0.002844542730599642, + 0.017158769071102142, + -0.004503224045038223, + 0.030443470925092697, + -0.007885407656431198, + -0.02515094354748726, + 0.032914333045482635, + 0.021124351769685745, + 0.02707272581756115, + -0.03492762893438339, + 0.005963625852018595, + -0.015938591212034225, + 0.009952086955308914, + 0.007675689645111561, + -0.02205473929643631, + 0.01894328184425831, + -0.01845521107316017, + -0.011812860146164894, + -0.010470662266016006, + 0.0006730050663463771, + -0.008731907233595848, + -0.008335349150002003, + -0.001946567092090845, + 0.011545945890247822, + 0.01452013198286295, + 0.02493741177022457, + 0.013124552555382252, + 0.003199157305061817, + -0.028186138719320297, + 0.0035328001249581575, + 0.014077817089855671, + -0.016380906105041504, + 0.007019843440502882, + -0.0027263378724455833, + -0.009570780210196972, + 0.014573515392839909, + -0.018134912475943565, + -0.0011734692379832268, + -0.013711763545870781, + -0.009174222126603127, + 0.005689085461199284, + 0.014482001774013042, + 0.022069990634918213, + -0.014375235885381699, + 0.01856197603046894, + -0.004564232658594847, + 0.007915912196040154, + -0.000673958333209157, + -0.011911999434232712, + 0.03039771318435669, + 0.00011820485815405846, + 0.008693777024745941, + -0.0032982968259602785, + 0.0023488448932766914, + 0.025974564254283905, + 0.012095026671886444, + 0.005239144433289766, + 0.017174022272229195, + 0.002985625993460417, + 0.014382862485945225, + 0.007122796028852463, + 0.00614665262401104, + 0.005029425956308842, + -0.027332013472914696, + -0.012300931848585606, + -0.011889120563864708, + 0.0027377770747989416, + -0.008228583261370659, + -0.026371123269200325, + -0.019278831779956818, + 0.026142338290810585, + -0.0006482201861217618, + -0.0115611981600523, + 0.007961669005453587, + 0.017235031351447105, + -0.010684194043278694, + 0.012621228583157063, + 0.013887164182960987, + -0.007000777870416641, + 0.005586132872849703, + 0.007271505426615477, + 0.004053282551467419, + -0.006119961384683847, + 0.00820570532232523, + -0.006985526066273451, + 0.0020380804780870676, + 0.007900659926235676, + -0.01441336702555418, + 0.027942104265093803, + -0.02025497518479824, + -0.008281966671347618, + 0.03318887576460838, + 0.009067456237971783, + 0.0070427218452095985, + 0.01220941822975874, + 0.0034260344691574574, + 0.018409453332424164, + -0.010402027517557144, + 0.0017911848844960332, + 0.026599906384944916, + -0.005109500139951706, + 0.002066678600385785, + -0.0001230903435498476, + -0.009036951698362827, + 0.004083787091076374, + -0.007054160814732313, + 0.0008374432800337672, + -2.600626066850964e-5, + 0.008098939433693886, + 0.005681459326297045, + -0.004716755356639624, + 0.033768460154533386, + -0.011797607876360416, + 0.01969064213335514, + -0.009486893191933632, + -0.004495597910135984, + -0.002055239398032427, + -0.005017986986786127, + 0.003767303191125393, + -0.00018362267292104661, + 0.026188096031546593, + -0.005757720675319433, + 0.007710007485002279, + -5.737463652621955e-5, + -0.00024999375455081463, + 0.011881494894623756, + -0.031450118869543076, + 0.012148409150540829, + -0.005990317091345787, + -0.006425005849450827, + 0.008503124117851257, + 0.005113313440233469, + -0.0011896747164428234, + 0.004125731065869331, + 0.013177935034036636, + -0.015053960494697094, + -0.009029326029121876, + 0.013521110638976097, + 0.0010972080053761601, + 0.014604019932448864, + 0.011172265745699406, + -0.00545648904517293, + -0.0071266088634729385, + -0.005746281240135431, + 0.0029760932084172964, + 0.01805865205824375, + 0.0001282141456613317, + 0.01935509219765663, + 0.0005614730762317777, + -0.012186539359390736, + 0.008030304685235023, + -0.019583875313401222, + 0.002823570976033807, + 0.024510350078344345, + -0.020621027797460556, + 0.002989439060911536, + 0.012560219503939152, + 0.01618262566626072, + -0.018516218289732933, + 0.010096983052790165, + -0.008594636805355549, + -0.03254827857017517, + 0.02092607319355011, + -0.007046534679830074, + -0.012148409150540829, + -0.004038030281662941, + 0.006806312128901482, + -0.0016548680141568184, + -0.007782455533742905, + 0.016990995034575462, + 0.010668941773474216, + -0.007500289008021355, + -0.006821564398705959, + -0.012224670499563217, + -0.009319118224084377, + -0.008480245247483253, + -0.015290370211005211, + -0.015999600291252136, + 0.000582921551540494, + -0.008724281564354897, + -0.025425484403967857, + 0.021337883546948433, + 0.004015152342617512, + 0.01799764297902584, + 0.012903395108878613, + -0.0014985325979068875, + 0.016945239156484604, + -0.02153616212308407, + 0.015206483192741871, + -0.01049354113638401, + -0.0035480523947626352, + 0.016731707379221916, + -0.009372501634061337, + 0.026706671342253685, + -0.007755763828754425, + -0.010226626880466938, + -0.012567846104502678, + 0.005849233828485012, + -0.0395033024251461, + -0.008137069642543793, + 0.004396458156406879, + -0.007160926703363657, + 0.01969064213335514, + 0.009814816527068615, + 0.004121917765587568, + 0.0003562827769201249, + 0.022008981555700302, + 0.03254827857017517, + 0.025654267519712448, + -0.004015152342617512, + 0.015648799017071724, + 0.0018235959578305483, + 0.0019637257792055607, + -0.0042019919492304325, + 0.011637458577752113, + 0.01471841149032116, + -0.015236987732350826, + -0.0014909064630046487, + -0.011584076099097729, + 0.005357349291443825, + -0.0214293971657753, + -0.012056895531713963, + -0.01557253673672676, + -0.0043430752120912075, + -0.0025185260456055403, + 0.012323809787631035, + -0.02460186369717121, + -0.01249158475548029, + 0.008228583261370659, + -0.021246369928121567, + -0.0355377197265625, + -0.006958834361284971, + -0.01235431432723999, + 0.00460998946800828, + 0.007717633154243231, + -0.012544967234134674, + -0.0027320573572069407, + -0.014276096597313881, + 0.007862529717385769, + 0.004979856312274933, + 0.00638687564060092, + 0.010897725820541382, + 0.004468906205147505, + 0.007347766775637865, + 0.003610967891290784, + 0.013452475890517235, + 0.0035823697689920664, + -0.01821117475628853, + -0.01725028268992901, + 0.0029608411714434624, + 0.002562376204878092, + -0.009990217164158821, + 0.008564132265746593, + -0.019782155752182007, + -0.01308642141520977, + 0.00346225849352777, + -0.0030599806923419237, + -0.0010028347605839372, + 0.020346488803625107, + -0.004915034398436546, + 0.0119882607832551, + 0.022069990634918213, + 0.007046534679830074, + -0.029604597017169, + 0.020941324532032013, + 0.003700574627146125, + 0.012781376950442791, + 0.007748137693852186, + 0.0021200613118708134, + 0.010691819712519646, + -0.013109300285577774, + -0.014878559857606888, + 0.007370644714683294, + 0.0153666315600276, + 0.007576550357043743, + -0.010935856029391289, + -0.0048082685098052025, + 0.002310714451596141, + 0.007397336419671774, + -0.0022249205503612757, + 0.015664050355553627, + -0.015938591212034225, + -0.014192209579050541, + -0.0023145272862166166, + 0.01356686744838953, + 0.0014365703100338578, + -0.008426862768828869, + 0.015862328931689262, + -0.04038793221116066, + -0.01912630908191204, + -0.012781376950442791, + 0.00772525928914547, + -0.017982391640543938, + 0.015275117941200733, + 0.010935856029391289, + -0.01618262566626072, + 0.025852546095848083, + 0.008137069642543793, + -0.006844442803412676, + 0.011576450429856777, + 0.018348444253206253, + -0.01370413787662983, + 0.015259865671396255, + 0.0076833157800138, + 0.0018426611786708236, + 0.002041893545538187, + -0.007633746135979891, + -0.0017034845659509301, + -0.008159948512911797, + 0.005002734716981649, + -0.006444071419537067, + -0.01647241972386837, + -0.00992920808494091, + 0.002728244522586465, + -0.007774829398840666, + 0.008907307870686054, + 0.00279115978628397, + -0.019812660291790962, + 0.006051326170563698, + -0.002135313581675291, + -0.0035919025540351868, + 0.011500189080834389, + -0.00921997893601656, + -0.01749431900680065, + -0.007755763828754425, + 0.021292127668857574, + 0.010661316104233265, + 0.0019885108340531588, + -0.017402805387973785, + -0.0033650253899395466, + -0.0004249178746249527, + -0.016502924263477325, + 0.018973786383867264, + -0.0044422149658203125, + -0.005204827059060335, + 0.008388731628656387, + -4.733556488645263e-5, + -0.005151444114744663, + -0.023778241127729416, + 0.010768081061542034, + 0.005082808900624514, + 0.0032391943968832493, + 0.013216066174209118, + 0.012056895531713963, + -0.00258716125972569, + -0.005997943226248026, + -0.0005352582666091621, + 0.010447784326970577, + -0.0093038659542799, + 0.007763389963656664, + -0.007107543759047985, + -0.0024899281561374664, + 0.004339262377470732, + -0.014924316667020321, + 0.006001756526529789, + -0.008137069642543793, + -0.006611845921725035, + 0.010188496671617031, + 0.0093038659542799, + -0.006733864080160856, + -0.0016682137502357364, + 0.00800742581486702, + 0.013574493117630482, + 0.014474376104772091, + 0.0071266088634729385, + 0.008419236168265343, + 0.01291864737868309, + -0.0005848280852660537, + 0.013155057094991207, + 0.0038759754970669746, + -0.012911020778119564, + 0.01764684170484543, + 0.012621228583157063, + 0.007938791066408157, + -0.024495096877217293, + 0.006219100672751665, + 0.013437223620712757, + -0.0005419311346486211, + -0.01601485162973404, + -0.017692597582936287, + 0.0048959688283503056, + -0.004015152342617512, + -0.0009585079387761652, + 0.019370345398783684, + 0.017357049509882927, + 0.015107343904674053, + 0.019446605816483498, + 0.0022668640594929457, + -0.01012748759239912, + 0.013269448652863503, + -0.011866242624819279, + 0.012903395108878613, + 0.0006358277751132846, + 0.023152900859713554, + -0.026310114189982414, + -0.00826671440154314, + 0.025623762980103493, + 0.0033116426784545183, + 0.0038664427120238543, + 0.020895568653941154, + 0.014909064397215843, + 0.0011410581646487117, + -0.019309336319565773, + -0.02701171673834324, + -0.007915912196040154, + -0.005364975426346064, + 0.004487971775233746, + -0.025791537016630173, + -0.0016396157443523407, + 0.00753079354763031, + 0.005204827059060335, + 0.0008708075620234013, + 0.010745203122496605, + -0.012056895531713963, + -0.007450719363987446, + -0.0005366881960071623, + -0.006874947343021631, + 0.015709806233644485, + 0.00820570532232523, + 0.008449740707874298, + 0.006913077551871538, + 0.018089156597852707, + 0.00121255312114954, + -0.017402805387973785, + 0.03434804454445839, + 0.002047613263130188, + 0.014359983615577221, + 0.022527558729052544, + -0.021002333611249924, + -0.010691819712519646, + -0.013551615178585052, + 0.02769806794822216, + -0.002163911471143365, + -0.009753807447850704, + -0.025288213044404984, + -0.019705893471837044, + 0.009967338293790817, + -0.010554550215601921, + 0.004057095851749182, + -0.010958733968436718, + -0.01356686744838953, + 0.00586448609828949, + -0.005609011277556419, + 0.010600307025015354, + 0.0008936859085224569, + -0.004842586349695921, + 0.007027469575405121, + -0.00908270850777626, + 0.028338661417365074, + -0.0037768359761685133, + -0.01697574369609356, + 0.008670898154377937, + -0.003488949965685606, + 0.010684194043278694, + -0.008884429931640625, + 0.004415523260831833, + -0.0038302186876535416, + -0.012041643261909485, + 0.003528987057507038, + 0.004068534821271896, + -0.011462057940661907, + -0.007431653793901205, + 0.0006148559041321278, + 0.007595615461468697, + 0.008381105959415436, + 0.009113213047385216, + -0.013010160997509956, + 0.005086622200906277, + -0.01895853504538536, + 0.00820570532232523, + 0.016274139285087585, + 0.015046334825456142, + 0.023213909938931465, + -0.01415407843887806, + 0.016441915184259415, + -0.0014251311076804996, + 0.014420992694795132, + -0.022207261994481087, + -0.038100093603134155, + -0.008754786103963852, + -0.0001630083133932203, + -0.0013622157275676727, + 0.01015036553144455, + -0.013345710001885891, + -0.006062765140086412, + -0.0024346387945115566, + 0.0025166196282953024, + -0.007168552838265896, + -0.01601485162973404, + 0.018317939713597298, + 0.001448009512387216, + -0.01398630440235138, + -0.006951208226382732, + -0.00740114925429225, + -0.0032868576236069202, + -0.003916012588888407, + 0.04648882895708084, + -0.012285679578781128, + 0.01578606851398945, + -0.011431553401052952, + 0.006463136523962021, + 0.00424393592402339, + 0.012339062057435513, + 0.00863276794552803, + 0.009273361414670944, + 0.0034412865061312914, + -0.012827133759856224, + -0.003416501684114337, + -0.009067456237971783, + -0.0055594416335225105, + -0.01114176120609045, + 0.019309336319565773, + -0.009395379573106766, + -0.013551615178585052, + 0.02402227744460106, + -0.014466749504208565, + 0.009746180847287178, + -0.0186077319085598, + -0.018028147518634796, + -0.049996841698884964, + -0.0074202148243784904, + 0.004899782128632069, + 0.008815794251859188, + -0.024327322840690613, + 0.01015036553144455, + 0.03079427219927311, + -0.015374258160591125, + -0.022573314607143402, + -0.010722324252128601, + 0.026538897305727005, + -0.008594636805355549, + 0.005269648972898722, + 0.006623285356909037, + 0.0011153200175613165, + 0.009570780210196972, + -0.01114176120609045, + 0.010790959931910038, + -0.02217675745487213, + -0.007805333938449621, + 0.0018769787857308984, + 0.007908286526799202, + -0.028353914618492126, + -1.736729609547183e-5, + -0.010623184964060783, + 0.010051226243376732, + -0.0051476308144629, + 0.006646163295954466, + -0.020148208364844322, + -0.031663648784160614, + -0.013452475890517235, + 0.000521912588737905, + -0.022298775613307953, + 0.023259665817022324, + 0.006180969998240471, + -0.012705115601420403, + -0.01782986894249916, + -0.0014737476594746113, + 0.007195244077593088, + -0.02345794439315796, + -0.00510568730533123, + 0.012110278010368347, + 0.0010524045210331678, + 0.002419386524707079, + 0.01545051857829094, + 0.01578606851398945, + 0.0040609086863696575, + -0.005033239256590605, + -0.002430825727060437, + 0.01657918468117714, + -0.005143817979842424, + -0.010882473550736904, + -0.01781461574137211, + -0.013292326591908932, + -0.02560851164162159, + 0.02843017503619194, + -0.008670898154377937, + -0.009959712624549866, + -0.005246770568192005, + 0.0002511853235773742, + 0.0028254773933440447, + 0.00871665496379137, + 0.0056433286517858505, + -0.006112335249781609, + -0.007893034256994724, + 0.0034107821993529797, + 0.019980434328317642, + -0.0072791315615177155, + 0.007111357059329748, + 0.027286257594823837, + -0.009967338293790817, + 8.287447417387739e-5, + -0.010325766168534756, + -0.02048375830054283, + -0.008678524754941463, + 0.0053726015612483025, + -0.011324788443744183, + -0.013025413267314434, + -0.006699546240270138, + -0.019324587658047676, + -0.028170887380838394, + -0.001361262402497232, + 0.026310114189982414, + -0.0037139204796403646, + 0.0004203898715786636, + -0.009456388652324677, + 0.010935856029391289, + -0.006916890852153301, + 0.006005569361150265, + -0.017738355323672295, + -0.027728572487831116, + 0.005841607693582773, + 0.012483958154916763, + 0.004690063651651144, + 0.007103730924427509, + 0.0366663858294487, + -0.02048375830054283, + 0.01001309510320425, + 0.013277075253427029, + 0.030153678730130196, + 0.01441336702555418, + 0.013460101559758186, + -0.004247748758643866, + 0.0014575421810150146, + 0.007526980247348547, + 0.0022992752492427826, + -0.007328701205551624, + -0.0026577028911560774, + 0.00947926752269268, + 0.009357249364256859, + -0.007023656275123358, + -0.023381683975458145, + -0.0097309285774827, + -0.026599906384944916, + -0.030580740422010422, + -0.011439180001616478, + 0.002133407164365053, + -0.0033917168620973825, + 0.02245129644870758, + -0.007854903116822243, + 0.018745003268122673, + -0.02583729475736618, + 0.011393423192203045, + -0.015618293546140194, + -0.008175200782716274, + 0.01845521107316017, + -0.006280109751969576, + 0.024007026106119156, + 0.025181448087096214, + 0.00024141435278579593, + -0.017951887100934982, + -0.0017826055409386754, + -0.029680859297513962, + 0.01413120049983263, + 0.018516218289732933, + 0.009380127303302288, + 0.004796829540282488, + -0.01407019142061472, + -0.007202870212495327, + 0.00022842612816020846, + 0.012323809787631035, + 0.00082505086902529, + -0.013460101559758186, + 0.010531671345233917, + 0.01731129176914692, + -0.005323031917214394, + 0.009151344187557697, + 0.020788803696632385, + -0.01911105588078499, + -0.007595615461468697, + -0.01108075212687254, + -0.011736598797142506, + 0.00848787184804678, + 0.02063628099858761, + -0.018516218289732933, + 0.004659559112042189, + -0.018516218289732933, + 0.0075041018426418304, + -0.001765446737408638, + -0.03562923148274422, + 0.008617515675723553, + 0.019431354478001595, + -0.017616337165236473, + -0.02088031731545925, + 0.002034267410635948, + -0.009715677239000797, + -0.0031248026061803102, + 0.00015740787785034627, + -0.025700023397803307, + -0.013543988578021526, + 0.016289392486214638, + 0.00011582169827306643, + 0.004392644856125116, + 0.0008636580896563828, + 0.002539498033002019, + -0.01235431432723999, + -0.011096004396677017, + -0.006821564398705959, + -0.00013750846846960485, + 0.006444071419537067, + -0.028796229511499405, + -0.007195244077593088, + 0.000142393953865394, + -0.00023664803302381188, + -0.0022668640594929457, + -0.004377393051981926, + 0.0005848280852660537, + -0.028552193194627762, + -0.00863276794552803, + 0.023442693054676056, + 0.005955999717116356, + 0.008747159503400326, + 0.013734642416238785, + -0.015275117941200733, + 0.017158769071102142, + 0.002701553050428629, + 0.00039727319381199777, + 0.009067456237971783, + -0.007027469575405121, + 0.009959712624549866, + 0.010928229428827763, + 0.01567930169403553, + 0.0030676068272441626, + -0.010546923615038395, + -0.002148659201338887, + -0.015496275387704372, + 0.021185360848903656, + 0.018180670216679573, + 0.009341997094452381, + -0.010287635959684849, + -0.015305622480809689, + 0.015770815312862396, + 0.005856859963387251, + -0.008548879995942116, + -0.008945439010858536, + 0.028719967231154442, + -0.0008107518660835922, + 0.01348298043012619, + 0.020056694746017456, + 0.011606954969465733, + 0.002049519680440426, + -0.009151344187557697, + 0.012415323406457901, + -0.026096582412719727, + -0.004552793689072132, + 0.01725028268992901, + -0.012911020778119564, + 0.022497054189443588, + 0.01985841616988182, + 0.003889321116730571, + 0.0007282944279722869, + 0.027896346524357796, + -0.002116248244419694, + -0.0003617640759330243, + 0.00525820953771472, + 0.01703675277531147, + 0.004297318402677774, + -0.0017463815165683627, + 0.008167574182152748, + 0.0032639792189002037, + 0.008449740707874298, + -0.014596393331885338, + -0.011416301131248474, + -0.007454532198607922, + 0.002144846133887768, + -0.03874069079756737, + -0.014337105676531792, + -0.011713719926774502, + 0.010836716741323471, + -0.02217675745487213, + 0.0010667035821825266, + -0.005509871523827314, + -0.006444071419537067, + 0.012117904610931873, + 0.011103630997240543, + 0.012979656457901001, + 0.0011696561705321074, + 0.0007626119768247008, + -0.028796229511499405, + -0.030138425529003143, + 0.009227605536580086, + 0.00815232191234827, + -0.01781461574137211, + -0.010005469433963299, + 0.006615659222006798, + 0.0004184833378531039, + 7.262687722686678e-5, + -0.011782355606555939, + -0.0205905232578516, + 0.0026977399829775095, + -0.006547024007886648, + -0.01590808667242527, + -0.0019713519141077995, + 0.002144846133887768, + -0.01220941822975874, + 0.0030828590970486403, + 0.003389810211956501, + 0.006245792377740145, + -0.011378170922398567, + 0.03639184311032295, + 0.006169531028717756, + -0.010531671345233917, + -0.0007730979123152792, + -0.01277375128120184, + 0.017235031351447105, + 0.010043599642813206, + 0.0062915487214922905, + -0.013780398294329643, + 0.011919625103473663, + -0.01833319291472435, + 0.0036128743086010218, + 0.030199434608221054, + 0.0072676921263337135, + 0.01091297809034586, + -0.006272483617067337, + 0.0010819557355716825, + -0.0225580632686615, + -0.013673633337020874, + 0.016502924263477325, + 0.00891493447124958, + -0.011324788443744183, + 0.00636018393561244, + -0.020117703825235367, + 0.00023188171326182783, + -0.008968316949903965, + -0.00456804595887661, + 0.003416501684114337, + -0.030718011781573296, + -0.004678624682128429, + 0.02036174014210701, + 0.0027740010991692543, + 0.002264957642182708, + 0.007382084149867296, + 0.005494619254022837, + 0.004857838619500399, + -0.00893781241029501, + 0.005490806419402361, + -0.015984347090125084, + 0.024235809221863747, + -0.014588767662644386, + -0.007542232517153025, + 0.013887164182960987, + -0.002049519680440426, + -0.009723302908241749, + -0.0005057070520706475, + 0.002049519680440426, + 0.009090335108339787, + 0.03620881587266922, + -0.0075612980872392654, + -0.02245129644870758, + -0.009830068796873093, + -0.0208650641143322, + 0.01116463914513588, + 0.011149387806653976, + -0.005117126274853945, + -0.004423149395734072, + -0.00485021248459816, + -0.03654436767101288, + -0.013444849289953709, + 0.01170609425753355, + 0.013238944113254547, + -0.008449740707874298, + -0.020621027797460556, + 0.011782355606555939, + 0.016502924263477325, + -0.027911599725484848, + -0.01350585836917162, + -0.00826671440154314, + 0.016289392486214638, + 0.02690495178103447, + -0.002562376204878092, + -0.010615559294819832, + 0.008015052415430546, + 0.000896069104783237, + 0.03018418326973915, + 0.004487971775233746, + 0.010851969011127949, + 0.006863507907837629, + 0.009746180847287178, + 0.010417279787361622, + 0.012133156880736351, + -0.014283722266554832, + -0.01398630440235138, + 0.01330757886171341, + 0.007397336419671774, + 0.012811881490051746, + -0.019263578578829765, + -0.008396358229219913, + -0.0191720649600029, + 0.004606176633387804, + -0.0014394301688298583, + 0.004186739679425955, + -9.687555575510487e-5, + -0.011118883267045021, + -0.012331436388194561, + -0.011492562480270863, + 0.012979656457901001, + 0.0180433988571167, + 0.034256529062986374, + 0.0015528686344623566, + 0.0033726515248417854, + 0.012949151918292046, + 0.004148609470576048, + 0.000528585456777364, + 0.011034995317459106, + 0.0029360561165958643, + -0.005914056207984686, + 0.005395479965955019, + -0.01850096695125103, + -0.023717233911156654, + -0.020743045955896378, + -0.004804455675184727, + -0.026691420003771782, + 0.025745781138539314, + 0.004110478796064854, + -0.0047129420563578606, + -0.011751851066946983, + 0.02324441447854042, + 0.011439180001616478, + -0.011408675462007523, + 0.015290370211005211, + -0.0022935555316507816, + -0.021124351769685745, + -0.018363697454333305, + -0.0035690241493284702, + -0.01889752596616745, + -0.005140004679560661, + 0.0012115997960790992, + -4.492261359700933e-5, + 0.001744474982842803, + 0.013315205462276936, + 0.012697489932179451, + 0.01556491106748581, + -0.013757520355284214, + -0.0009470687946304679, + 0.015130221843719482, + 0.006341118831187487, + 0.009403006173670292, + 0.012842386029660702, + 0.012964404188096523, + -0.01229330524802208, + 0.009608911350369453, + -0.01900429092347622, + -0.0069969650357961655, + -0.012697489932179451, + 0.009250483475625515, + 0.014939568936824799, + -0.01178998127579689, + -0.0236867293715477, + -0.0016338961431756616, + -0.015877582132816315, + -0.004171487409621477, + 0.021520910784602165, + 0.011301909573376179, + -0.005391666665673256, + -0.006329679396003485, + 0.015892833471298218, + -0.0011963475262746215, + 0.009898703545331955, + -0.010653689503669739, + -0.011294283904135227, + -0.0071380482986569405, + -0.009540275670588017, + 0.005853047128766775, + -0.0012850011698901653, + 0.013254196383059025, + 0.0005190527881495655, + 0.0028998320922255516, + 0.007526980247348547, + -0.0052315182983875275, + -0.001299300231039524, + -0.00857175886631012, + 0.008083687163889408, + 0.0034489126410335302, + 0.0037558639887720346, + 0.004007526207715273, + 0.007557484786957502, + 0.002741590142250061, + -0.005936934147030115, + -0.01443624496459961, + 0.0009847227483987808, + 0.002343125408515334, + 0.01935509219765663, + -0.012621228583157063, + 0.02475438453257084, + 0.007893034256994724, + -0.021917467936873436, + 0.009158969856798649, + 0.01967538893222809, + 0.022878360003232956, + 0.002579535124823451, + 0.010424906387925148, + 0.007195244077593088, + 0.016609689220786095, + 0.004510849714279175, + 0.029147030785679817, + -0.0014298975002020597, + 0.025578007102012634, + -0.019705893471837044, + -0.008098939433693886, + 0.022146252915263176, + 0.002398414770141244, + -0.004263001028448343, + 0.020605776458978653, + -0.0225580632686615, + -0.031846676021814346, + -0.005868299398571253, + 0.007961669005453587, + -0.014649776741862297, + -0.005723402835428715, + 0.012171287089586258, + 0.003509921720251441, + 0.01636565290391445, + 0.0056433286517858505, + -0.016945239156484604, + 0.004834960214793682, + -0.0006744349957443774, + -0.008015052415430546, + 0.007271505426615477, + 0.017677346244454384, + 0.004487971775233746, + -0.02025497518479824, + 0.0006615659222006798, + -0.000284787907730788, + 0.019644884392619133, + -0.018714498728513718, + 0.005002734716981649, + -0.00037725461879745126, + 0.000811705132946372, + -0.013330457732081413, + -0.01636565290391445, + -0.0016939518973231316, + -0.0006158091709949076, + -0.004213431384414434, + -0.0007769109797663987, + 0.010074104182422161, + 0.004179113544523716, + 0.008777664043009281, + -0.02943682298064232, + -0.0069969650357961655, + -0.011835738085210323, + -0.01676221191883087, + -0.02498316951096058, + -0.0010276196990162134, + 0.01291864737868309, + -0.016396157443523407, + -0.011240900494158268, + 0.012781376950442791, + 0.007908286526799202, + 0.002364097163081169, + -0.0035328001249581575, + -0.023839250206947327, + -0.010333392769098282, + 0.00660040695220232, + 0.0011334320297464728, + -0.007282944396138191, + 0.00792353879660368, + -0.0006081830360926688, + 0.0024022278375923634, + -0.01720452681183815, + 0.004163861274719238, + 0.0067186118103563786, + -0.0016014851862564683, + -0.01249158475548029, + 0.0042591881938278675, + 0.021017586812376976, + -0.020941324532032013, + -0.010707071982324123, + 0.009006448090076447, + 0.0004947445122525096, + -0.016777463257312775, + -0.004102852661162615, + -0.03828312084078789, + -0.00877003837376833, + 0.007263879291713238, + -0.023366430774331093, + -0.005936934147030115, + 0.04926473647356033, + -0.0031953442376106977, + 0.01429897453635931, + 0.0023202470038086176, + -0.01839420199394226, + -0.003595715621486306, + 0.01657918468117714, + -0.000538594729732722, + 0.010104608722031116, + -0.010890099219977856, + -0.01449725404381752, + 0.0018855581292882562, + 0.0009470687946304679, + -0.003044728422537446, + -0.0019255953375250101, + 0.007679502945393324, + -0.006409753579646349, + 0.01557253673672676, + -0.016274139285087585, + 0.02268008142709732, + -0.007976921275258064, + -0.0036300329957157373, + -0.022802097722887993, + 0.00928098801523447, + -0.007877781987190247, + 0.020499009639024734, + -0.027621805667877197, + -0.011957756243646145, + -0.0009885358158499002, + -0.018150165677070618, + 0.005628076381981373, + -0.02487640269100666, + 0.018089156597852707, + -0.003302109893411398, + -0.004998921416699886, + 0.01906530000269413, + 0.021292127668857574, + -0.026081331074237823, + -0.014146452769637108, + 0.0002166294725611806, + 0.01108075212687254, + 0.002236359752714634, + -0.013948173262178898, + -0.009715677239000797, + 0.027682814747095108, + 0.02803361602127552, + -0.003252540249377489, + -0.0008245742064900696, + -0.020270226523280144, + -0.007538419682532549, + 0.009120839647948742, + -0.03022993914783001, + 0.0033631189726293087, + -0.004629054572433233, + -0.0017883251421153545, + -0.019888920709490776, + -0.00020542860147543252, + -0.02870471589267254, + 0.00042181977187283337, + 0.009631789289414883, + 0.008678524754941463, + 0.007713820319622755, + 0.010310513898730278, + -0.010981612838804722, + -0.021231118589639664, + -0.00835060141980648, + 0.0020190151408314705, + 0.012468705885112286, + 0.053108301013708115, + 0.010752828791737556, + 0.025684772059321404, + -0.011050247587263584, + -0.003538519609719515, + -0.025593258440494537, + 0.011004490777850151, + -0.005818729288876057, + -0.02013295702636242, + -0.02159717120230198, + -0.0030123174656182528, + 0.016777463257312775, + 0.02487640269100666, + 0.005792038049548864, + -0.014726037159562111, + 0.01789087802171707, + 0.0014937662053853273, + -0.001139151630923152, + 0.00018386098963674158, + 0.01799764297902584, + 0.000582921551540494, + 0.0037501445040106773, + 0.00021305472182575613, + -0.026188096031546593, + 0.0035633044317364693, + 0.0012135063298046589, + 0.0008274340070784092, + -0.01618262566626072, + 0.014809925109148026, + 0.01766209304332733, + 0.018195921555161476, + 0.0049340995028615, + -0.01810440793633461, + 0.011751851066946983, + -0.00703509571030736, + -0.006527958437800407, + -0.007229561917483807, + 0.019309336319565773, + 0.014009182341396809, + 0.005017986986786127, + -0.0180433988571167, + 0.0007897800533100963, + 0.011698467656970024, + 0.00837347935885191, + -0.011965381912887096, + 0.009273361414670944, + 0.0041181049309670925, + 0.023442693054676056, + -0.016502924263477325, + -0.003916012588888407, + 0.0007125655538402498, + 0.00885392539203167, + -0.01136291865259409, + -0.00307332631200552, + 0.0028483557980507612, + -0.0027473096270114183, + 0.03129759803414345, + 0.0012954871635884047, + -0.023762989789247513, + 0.005933121312409639, + -0.003509921720251441, + -0.005711963865906, + 0.008518376387655735, + 0.020788803696632385, + -0.010935856029391289, + 0.0049912952817976475, + 0.005059930495917797, + 0.005250583402812481, + 3.641770263129729e-6, + -0.009906330145895481, + 0.0014565888559445739, + 0.0017969044856727123, + -0.01398630440235138, + -0.014359983615577221, + -0.01285763829946518, + -0.012316184118390083, + -0.007534606382250786, + -0.014451497234404087, + 0.0035594915971159935, + 0.01680796779692173, + -0.01057742815464735, + -0.001818829565308988, + 0.007832025177776814, + -0.004846399184316397, + 0.010219000279903412, + -0.0037768359761685133, + -0.006791059859097004, + -0.01384903397411108, + 0.011179891414940357, + 0.010455409996211529, + -0.025196699425578117, + 0.0057386551052331924, + -0.004701503086835146, + 0.013338083401322365, + -0.002943682251498103, + -0.0013974864268675447, + -0.020727794617414474, + -0.018653489649295807, + 0.014382862485945225, + 0.01731129176914692, + 0.003389810211956501, + 0.0035213609226047993, + -0.0017015780322253704, + -0.011408675462007523, + -0.021963225677609444, + -0.014771793968975544, + 0.00800742581486702, + -0.015694554895162582, + -0.021170109510421753, + 0.014970073476433754, + -0.012171287089586258, + 0.035964783281087875, + -0.005628076381981373, + -0.0034870433155447245, + 0.029009759426116943, + -0.00045852045877836645, + -0.01051641907542944, + 0.00031672228942625225, + 0.02623385190963745, + 0.009151344187557697, + -0.013604997657239437, + 0.033585432916879654, + 0.030870532616972923, + -0.0045832982286810875, + -0.0012211324647068977, + 0.008472619578242302, + -0.008015052415430546, + 0.021703938022255898, + 0.025196699425578117, + -0.000892732641659677, + -0.006314427126199007, + -0.019370345398783684, + -0.012026390992105007, + 0.007065600249916315, + 0.029741868376731873, + 0.0093038659542799, + -0.012201791629195213, + -0.007824399508535862, + 0.00880054198205471, + -0.005109500139951706, + -0.005841607693582773, + 0.05393192172050476, + 0.025196699425578117, + 0.012956777587532997, + 0.009036951698362827, + 0.0006248651770874858, + -0.026599906384944916, + -0.0004723427991848439, + 0.024922160431742668, + 0.012727994471788406, + -0.014550636522471905, + -0.007816772907972336, + -0.014672654680907726, + -0.014794672839343548, + -0.011805233545601368, + 0.013094048015773296, + 0.01184336468577385, + 0.010554550215601921, + 0.005376414395868778, + 0.0030599806923419237, + 0.0033859971445053816, + -0.0029284299816936255, + -0.008045556955039501, + 0.006874947343021631, + 0.015053960494697094, + -0.015664050355553627, + -0.011995886452496052, + -0.000788350123912096, + -0.008411610499024391, + -0.007610867731273174, + -0.0029474953189492226, + 0.005433610640466213, + -5.4991473007248715e-5, + -0.022069990634918213, + 0.008686150424182415, + 0.01879075914621353, + 0.006367810070514679, + 0.0071838051080703735, + -0.0034794171806424856, + 0.0067147985100746155, + -0.001044778386130929, + 0.01001309510320425, + 0.029985902830958366, + -0.005647141952067614, + -0.01034864503890276, + 0.021581919863820076, + 0.008480245247483253, + 0.01094348169863224, + 0.011294283904135227, + 0.004956977907568216, + 0.012537341564893723, + 0.00809131283313036, + -0.017616337165236473, + 0.010096983052790165, + -0.013818529434502125, + 0.04490259289741516, + -0.016167374327778816, + -0.009494518861174583, + -0.029940146952867508, + 0.015076839365065098, + 0.02623385190963745, + -0.0010066478280350566, + 0.0008293405408039689, + -0.008312470279633999 + ], + "f930b218-26ac-4a55-913f-ebb285f24de0": [ + 0.013048390857875347, + -0.01988678239285946, + 0.0004153861082158983, + 0.028432924300432205, + -0.011044926941394806, + -0.020404282957315445, + 0.02797456830739975, + 0.0420505665242672, + -0.005237838719040155, + 0.04157742112874985, + 0.02019728347659111, + -0.014741355553269386, + 0.006062142085283995, + -0.004905160050839186, + 0.024544281885027885, + 0.04497813805937767, + -0.000288090348476544, + 0.024485139176249504, + -0.027590138837695122, + -0.01599813997745514, + 0.04184356704354286, + -0.04074942320585251, + -0.05349470674991608, + 0.03442113846540451, + -0.00034191960003226995, + 0.01678178273141384, + -0.027235282585024834, + 0.021069640293717384, + -0.0063208919018507, + -0.027619710192084312, + 0.01852649822831154, + 0.004136302974075079, + -0.024706924334168434, + 0.011673320084810257, + 0.01333671249449253, + -0.006849481258541346, + -0.006180427968502045, + -0.03516042232513428, + -0.040128424763679504, + -0.010283462703227997, + -0.02883213944733143, + 0.02819635346531868, + -0.014186890795826912, + -0.005193481221795082, + -0.028772996738553047, + -0.001768740825355053, + -0.019546711817383766, + -0.039714422076940536, + 0.006945588160306215, + -0.02077392488718033, + 0.02736835367977619, + 0.013506747782230377, + 0.035603996366262436, + -0.0030957586131989956, + 0.058994993567466736, + -0.036017995327711105, + 0.027871068567037582, + 0.007448302581906319, + -0.01097099855542183, + -0.058462705463171005, + 0.011762034147977829, + -0.0029867137782275677, + 0.0007221896084956825, + -0.0097216060385108, + 0.016633925959467888, + 0.0027039372362196445, + -0.014674819074571133, + 0.006646177731454372, + -0.010712248273193836, + 0.014800498262047768, + 0.004735124297440052, + 0.0064133028499782085, + -0.02244471199810505, + 0.017713284119963646, + 0.020093783736228943, + -0.03374099358916283, + 0.022562997415661812, + 0.03944827988743782, + 0.02358321100473404, + -0.018674355000257492, + 0.019236212596297264, + -0.018245568498969078, + 0.005053017288446426, + 0.01534756924957037, + 0.0862894132733345, + -0.0016809506341814995, + -0.0021457765251398087, + -0.04619056358933449, + 0.005064106546342373, + -0.011074498295783997, + -0.032291997224092484, + 0.030990852043032646, + -0.00018008534971158952, + -0.00607692776247859, + -0.043381281197071075, + -0.01179160550236702, + 0.020433854311704636, + -0.02674735337495804, + 0.004797963425517082, + -0.007318927440792322, + 0.019457997754216194, + 0.007732927333563566, + 0.017624568194150925, + -0.001067343633621931, + 0.027131782844662666, + 0.005736856255680323, + 0.013262784108519554, + -0.009832498617470264, + -0.016633925959467888, + 0.06298713386058807, + -0.008213463239371777, + -0.029630567878484726, + 0.02424856834113598, + -0.00756289204582572, + -0.05222313478589058, + -0.05881756171584129, + -0.026880424469709396, + -0.02883213944733143, + 0.02645163983106613, + -0.03226242586970329, + 0.038708996027708054, + 0.0020736961159855127, + 0.028285067528486252, + 0.009300213307142258, + -0.008679213002324104, + 0.01827513985335827, + 0.01630864106118679, + 0.019324926659464836, + 0.005951249040663242, + 0.006797731388360262, + -0.019635425880551338, + -0.026702996343374252, + 0.006546373944729567, + -0.026717782020568848, + 0.0210252832621336, + 0.02775278128683567, + -0.0009010043577291071, + 0.04648628085851669, + -0.020108569413423538, + 0.02591935358941555, + -0.047048136591911316, + -0.034243710339069366, + -0.022962210699915886, + -0.003999534994363785, + 0.016707854345440865, + -3.624232340371236e-5, + -0.020729567855596542, + 0.03864985331892967, + -0.030606424435973167, + 0.0017456382047384977, + -0.08309569954872131, + -0.005692499224096537, + -0.012730497866868973, + 0.00024327117716893554, + 0.04317428171634674, + -0.01744714006781578, + -0.0034635530319064856, + 0.028048496693372726, + 0.008649641647934914, + 0.05736856535077095, + 0.0316118523478508, + -0.05284413695335388, + -0.0008561851573176682, + 0.016175569966435432, + 0.05127685144543648, + 0.02939399518072605, + 0.04216885194182396, + 0.012545676901936531, + -0.06263227760791779, + 0.019635425880551338, + -0.00978074874728918, + -0.029127852991223335, + 0.022651711478829384, + 0.018792640417814255, + 0.006198910064995289, + -0.005807088688015938, + 0.03628413751721382, + 0.020626068115234375, + 0.028181567788124084, + -0.016367783769965172, + -0.028240710496902466, + -0.022385569289326668, + 0.0181716401129961, + 0.0037518744356930256, + -0.0047683920711278915, + 0.007030606269836426, + -0.007843820378184319, + 0.007858606055378914, + -0.004321124404668808, + -0.014977926388382912, + 0.01814206875860691, + -0.025712354108691216, + -0.007418731227517128, + 0.01953192614018917, + -0.026481211185455322, + -0.04713685065507889, + 0.007134106010198593, + 0.001777981873601675, + 0.0016107185510918498, + 0.03403671085834503, + 0.014992712065577507, + -0.0411042794585228, + -0.02566799707710743, + 0.043381281197071075, + -0.03885685279965401, + 1.0995429875038099e-5, + -0.012930105440318584, + 0.004047588910907507, + 0.022799568250775337, + -0.03311999514698982, + 0.00908582005649805, + -0.045155566185712814, + 0.005182391963899136, + -0.019398855045437813, + -0.029438354074954987, + -0.004180660005658865, + -0.001480419421568513, + 0.037792280316352844, + -0.0028832138050347567, + -0.03944827988743782, + -0.008900999091565609, + 0.02064085379242897, + -0.0076146419160068035, + -0.024514710530638695, + -0.07162199169397354, + 0.019132710993289948, + -0.020374711602926254, + 0.02038949728012085, + -0.021601926535367966, + 0.0064576598815619946, + 0.013950319960713387, + -0.005422660149633884, + 0.016205141320824623, + -0.006006695795804262, + -0.006893838290125132, + 0.055298563092947006, + 0.04320385307073593, + 0.009248463436961174, + -0.023021353408694267, + -0.0027353568002581596, + 0.008767927065491676, + 0.015081426128745079, + -0.0012577096931636333, + -0.009448070079088211, + 0.006328284740447998, + -0.005226749461144209, + -0.004302642308175564, + 0.07298227399587631, + 0.0009194864542223513, + -0.012168641202151775, + -0.04252370819449425, + 0.0020644550677388906, + 0.026495996862649918, + 0.004114124458283186, + -0.006797731388360262, + 0.025490567088127136, + 0.02594892494380474, + -0.042789850383996964, + 0.000882060150615871, + -0.0011597543489187956, + 0.017180997878313065, + 0.03628413751721382, + 0.016515640541911125, + 0.01386160496622324, + 0.04048328101634979, + -0.03613628074526787, + 0.03034028224647045, + -0.010579177178442478, + 0.016131212934851646, + 0.04988699406385422, + 0.012205605395138264, + -0.009300213307142258, + -0.008760534226894379, + 0.021040068939328194, + 0.013151891529560089, + -0.008546141907572746, + -0.021823711693286896, + 0.0037296959199011326, + 0.009366748854517937, + 0.014216462150216103, + -0.029926281422376633, + -0.01054221298545599, + 0.010941427201032639, + -0.0013196248328313231, + 0.019679782912135124, + -0.009425891563296318, + -0.04320385307073593, + 0.00037056690780445933, + -0.01978328265249729, + -0.0036446780432015657, + 0.004557695705443621, + -0.012116891331970692, + 0.00583296362310648, + 0.02216378226876259, + 0.01112624816596508, + 0.008324355818331242, + -0.03069513849914074, + 0.0018870264757424593, + -0.01716621220111847, + 0.013817247934639454, + 0.003565204795449972, + -0.03261728212237358, + 0.009891641326248646, + -0.013491962105035782, + 0.0213357824832201, + -0.024159854277968407, + 0.015184926800429821, + 0.0388864241540432, + -0.017121855169534683, + 0.05887670814990997, + 0.03164142370223999, + -0.04731427878141403, + -0.0363432802259922, + -0.03314956650137901, + 0.005929070524871349, + 0.03841327875852585, + -0.008620070293545723, + -0.021320996806025505, + -0.01087489165365696, + -0.02200113981962204, + 0.010268677026033401, + -0.012434784322977066, + -0.06470227986574173, + 0.011192784644663334, + 0.04154784977436066, + -0.041518278419971466, + 0.03912299498915672, + 0.019591068848967552, + -0.029423566535115242, + -0.024736497551202774, + -0.06618084758520126, + -0.02803371101617813, + -0.03468728065490723, + 0.0018509863875806332, + -0.03409585356712341, + -0.04941384866833687, + -0.03246942535042763, + -0.02322835475206375, + 0.027161354199051857, + -0.01655999757349491, + 0.00504192803055048, + -0.040571995079517365, + 0.03406628221273422, + -0.021912425756454468, + -0.0018223390216007829, + -0.019162282347679138, + 0.03622499480843544, + 0.027737995609641075, + -0.015953782945871353, + 0.007359588518738747, + 0.000994339119642973, + -0.01605728268623352, + 0.0028647317085415125, + -0.0014656337443739176, + 0.039625708013772964, + -0.00041607918683439493, + -0.04760999232530594, + 0.007829034700989723, + -0.009011891670525074, + -0.0012687989510595798, + 0.003197410376742482, + 0.001058102585375309, + -0.02794499695301056, + -0.0035411780700087547, + -0.015539783984422684, + 0.009677249006927013, + 0.00833174865692854, + -0.013898569159209728, + 0.007991677150130272, + 0.023568425327539444, + -0.023317068815231323, + -0.03400713950395584, + -0.007551802322268486, + -0.034125424921512604, + -0.0019905264489352703, + -0.005932766944169998, + 0.01700356975197792, + 3.863922393065877e-5, + -0.009433284401893616, + 0.006734891794621944, + -0.002794499509036541, + 0.002219705143943429, + 0.038265421986579895, + 0.00440983846783638, + 0.010520034469664097, + 0.02816678211092949, + 0.0042213210836052895, + -0.04672285169363022, + -0.024854782968759537, + -0.005984517280012369, + -0.019857211038470268, + -0.007607249077409506, + -0.030369853600859642, + 0.023376211524009705, + -0.020271211862564087, + -0.0011579061392694712, + -0.025017425417900085, + 0.0013251694617792964, + 0.0037888388615101576, + 0.0023841960355639458, + -0.011163212358951569, + -0.003430285258218646, + 0.01561371237039566, + 0.01931014098227024, + 0.03859071061015129, + -0.021128783002495766, + -0.002672517439350486, + 0.0023694103583693504, + 0.035012565553188324, + 0.007219124119728804, + 0.013299748301506042, + 0.012286926619708538, + 0.0079029630869627, + 0.029852353036403656, + 0.0698477029800415, + -0.00482753524556756, + -0.011296284385025501, + 0.0597342774271965, + -0.028240710496902466, + -0.006213695742189884, + 0.02152799628674984, + 0.005503981374204159, + 0.027545781806111336, + 0.018230782821774483, + 0.01080835610628128, + 0.019413640722632408, + 0.007559195626527071, + 0.006150856148451567, + -0.015938997268676758, + 0.004942124243825674, + -0.01023910567164421, + 0.03199627995491028, + -0.008065606467425823, + 0.018156854435801506, + -0.03749656677246094, + -0.029423566535115242, + 0.0001461244246456772, + -0.025017425417900085, + -0.0041917492635548115, + 0.00131408020388335, + -0.01931014098227024, + 0.004457892384380102, + -0.0077772848308086395, + -0.008509177714586258, + -0.006609213538467884, + -0.025830639526247978, + -0.01978328265249729, + 0.044209279119968414, + 0.024204211309552193, + -0.039241280406713486, + -0.022355996072292328, + 0.0048644994385540485, + -0.04071985185146332, + -0.01033521257340908, + -0.003308303188532591, + 0.006853177677839994, + -0.015761569142341614, + -0.011872926726937294, + 0.024647781625390053, + -0.05591956526041031, + -0.015199712477624416, + -0.0007212655036710203, + 0.025771496817469597, + 0.00793253444135189, + 0.032794710248708725, + -0.0312865674495697, + -0.013514140620827675, + -0.01855606958270073, + 0.0007905735401436687, + -0.013950319960713387, + -0.004091945942491293, + -0.02367192506790161, + -0.03335656598210335, + 0.014075998216867447, + -0.00951460562646389, + -0.0044726780615746975, + 0.003249160246923566, + 0.011067105457186699, + 0.0023786514066159725, + -0.018955282866954803, + 0.0070823561400175095, + -0.004779481329023838, + 0.014053819701075554, + -0.018689140677452087, + -0.0038368923123925924, + 0.0038516779895871878, + -0.03347485139966011, + -0.042878564447164536, + -0.009455462917685509, + -0.03616585209965706, + 0.02047821134328842, + 0.02958621084690094, + 0.020729567855596542, + 0.006372641772031784, + -0.008442642167210579, + -0.023908495903015137, + -0.022651711478829384, + -0.01397249847650528, + -0.017565425485372543, + 0.005914284847676754, + 0.03844285011291504, + -0.043765708804130554, + -0.020078998059034348, + 0.021912425756454468, + -0.005611177999526262, + 0.030044566839933395, + -0.006579642184078693, + 0.007629427593201399, + -0.00159408466424793, + -0.017491497099399567, + -0.04861542209982872, + 0.02380499616265297, + -0.027427496388554573, + -0.0008474061614833772, + 0.0009878703858703375, + 0.008191284723579884, + -0.013684176839888096, + -0.0035744458436965942, + 0.057605136185884476, + -0.004783177748322487, + 9.200640488415956e-5, + -0.019679782912135124, + -0.011348034255206585, + -0.017742855474352837, + 0.014844855293631554, + 0.014260819181799889, + -0.008612677454948425, + -0.020108569413423538, + 0.007248695474117994, + -0.016293855383992195, + 0.003528240602463484, + 0.021069640293717384, + -0.03332699462771416, + -0.009425891563296318, + 0.014549140818417072, + -0.04157742112874985, + -0.007071266882121563, + 0.012626998126506805, + -0.007448302581906319, + -0.01794985495507717, + -0.05417485162615776, + 0.016707854345440865, + 0.006553766783326864, + 0.0019424729980528355, + 0.0032436156179755926, + 0.03034028224647045, + -0.0202268548309803, + 0.00975117739289999, + -0.006365248933434486, + 0.028270281851291656, + -0.03173013776540756, + 0.044800709933042526, + -0.016042497009038925, + -0.01097099855542183, + 0.0016486069653183222, + -0.040631137788295746, + 0.027043066918849945, + -0.013551105745136738, + -0.0244999248534441, + -0.03492385149002075, + -0.013706355355679989, + -0.0019239907851442695, + 0.015406711958348751, + 0.00040221758536063135, + -0.0023694103583693504, + -0.0074298204854130745, + -0.03480556607246399, + 0.009211498312652111, + -0.012242569588124752, + 0.031404852867126465, + 0.01991635374724865, + 0.023006567731499672, + 0.04080856591463089, + 0.018467355519533157, + 0.0035578119568526745, + 0.036491136997938156, + 0.003116088919341564, + -0.0029904101975262165, + -0.01919185370206833, + -0.0025893477723002434, + 0.015924211591482162, + -0.019103139638900757, + 0.0019609550945460796, + 0.0008330824784934521, + -0.026983924210071564, + -0.0059993029572069645, + -0.006949284579604864, + 0.003038463881239295, + -0.006816213484853506, + 0.005788606591522694, + 0.00802864134311676, + 0.02664385363459587, + -0.019635425880551338, + 0.022208139300346375, + -0.01722535490989685, + 0.01097099855542183, + 0.031079567968845367, + 0.012102105654776096, + -0.0033119996078312397, + 0.013174070045351982, + 0.0042656781151890755, + 0.02883213944733143, + 0.02177935466170311, + -0.005174999125301838, + -0.016190355643630028, + 0.0014231248060241342, + 0.0063911243341863155, + 0.013839426450431347, + 0.027397925034165382, + 0.026495996862649918, + 0.00543744582682848, + -0.021350568160414696, + 0.035544853657484055, + -0.018674355000257492, + 0.0036446780432015657, + -0.009174534119665623, + -0.007141498848795891, + 0.022148996591567993, + 0.014445641078054905, + 0.01925099827349186, + 0.01855606958270073, + -0.028299853205680847, + 0.03075428120791912, + -0.008664427325129509, + 0.020123355090618134, + 0.023819781839847565, + -0.014844855293631554, + 0.014844855293631554, + -0.014615676365792751, + -0.004794267006218433, + 0.004406142048537731, + -0.006701624020934105, + 0.0073115346021950245, + 0.020980926230549812, + 0.021099211648106575, + 0.00589580275118351, + -0.0027482942678034306, + 0.012967069633305073, + -0.023997211828827858, + -0.010741819627583027, + -0.01047567743808031, + 0.013299748301506042, + 0.011251927353441715, + 0.06972941756248474, + -0.008324355818331242, + 0.03516042232513428, + -0.0029774727299809456, + 0.006102802697569132, + 0.054854992777109146, + 0.03199627995491028, + 0.01205774862319231, + -0.004047588910907507, + -0.011710284277796745, + 0.009470248594880104, + 0.01313710492104292, + -0.016397355124354362, + -0.003973660059273243, + 0.009218891151249409, + -0.02525399625301361, + -0.009226284921169281, + 0.05036013573408127, + -0.024174639955163002, + 0.018437782302498817, + -0.006901231128722429, + 0.003578142262995243, + -0.020818283781409264, + -0.009255856275558472, + 0.014800498262047768, + 0.016352998092770576, + 0.0038923388347029686, + -0.01409817673265934, + -0.025682782754302025, + 0.019709354266524315, + 0.0037888388615101576, + -0.00574424909427762, + 0.0005031762993894517, + 0.002173499669879675, + -0.01386160496622324, + 0.010423927567899227, + 0.025372281670570374, + -0.006901231128722429, + -0.041429564356803894, + -0.034154996275901794, + 0.0077551063150167465, + -0.026481211185455322, + 0.0006029798532836139, + -0.026510782539844513, + -0.02386413887143135, + -0.022548211738467216, + -0.002796347951516509, + -0.023154426366090775, + -0.0018519104924052954, + -0.022784782573580742, + 0.029482711106538773, + 0.0005844976985827088, + 0.0022474282886832952, + 0.008575713261961937, + -0.02977842465043068, + 0.03542656823992729, + -0.030842995271086693, + -0.04388399422168732, + -0.01766892708837986, + 0.018156854435801506, + -0.019798068329691887, + 0.021232282742857933, + 0.028270281851291656, + -0.014142533764243126, + 0.0003758805396500975, + 0.004328517243266106, + 0.001984981819987297, + 0.018437782302498817, + 0.03817670792341232, + -0.026658639311790466, + 0.020064212381839752, + 0.005685106385499239, + 0.021986354142427444, + -0.019871996715664864, + 0.028122425079345703, + -0.020108569413423538, + 0.03270599618554115, + 0.002349080052226782, + 0.012131677009165287, + -0.01694442704319954, + -0.016855711117386818, + -0.03998056426644325, + 0.0126417838037014, + 0.020507782697677612, + -0.011584606021642685, + 0.024603424593806267, + -0.0041030352003872395, + 0.044238850474357605, + -0.0064133028499782085, + 0.03300170972943306, + -0.0036982763558626175, + 0.01672264002263546, + -0.01400206983089447, + -0.008900999091565609, + 0.0042878566309809685, + 0.0022973299492150545, + -0.028817353770136833, + 0.0016938882181420922, + -0.011421962641179562, + 0.021956782788038254, + -0.025342710316181183, + -0.008878820575773716, + -0.029674924910068512, + 0.024647781625390053, + 0.010815748944878578, + -0.028107639402151108, + -0.029260924085974693, + 0.03944827988743782, + -0.023479711264371872, + 0.030990852043032646, + -0.007337409537285566, + -0.022237710654735565, + 0.02058171108365059, + 0.034598566591739655, + 0.005666624289005995, + -0.01931014098227024, + 0.01650085486471653, + -0.0061545525677502155, + 0.02172021195292473, + -0.004664892330765724, + -0.03164142370223999, + -0.006209999322891235, + 0.002182740718126297, + 0.010076463222503662, + 0.01883699744939804, + 0.029482711106538773, + 0.0134328193962574, + 0.018570855259895325, + 0.028151996433734894, + 0.027412710711359978, + 0.015029676258563995, + -0.020714782178401947, + -0.0022788478527218103, + 0.0064354813657701015, + -0.02933485247194767, + -0.016604354605078697, + -0.006886445451527834, + -0.04941384866833687, + -0.06204085052013397, + 0.00833174865692854, + 0.013839426450431347, + 0.01758021116256714, + -0.012146462686359882, + 0.013617641292512417, + -0.026658639311790466, + -0.01534756924957037, + -0.010327819734811783, + 0.02794499695301056, + 0.00859789177775383, + 0.004413534887135029, + 0.03297213837504387, + 0.0015146114164963365, + -0.02869906835258007, + -0.004199142102152109, + -0.001315004308708012, + -0.01455653365701437, + -0.012109498493373394, + 0.020596496760845184, + -0.024514710530638695, + 0.03542656823992729, + 0.02475128322839737, + 0.022385569289326668, + -0.01123714167624712, + -0.02158714085817337, + 0.0077551063150167465, + -0.033681850880384445, + 0.014992712065577507, + 0.0006921561434864998, + 0.014475212432444096, + -0.013558498583734035, + 0.033208709210157394, + -0.004816445987671614, + 0.005315463524311781, + -0.0014684060588479042, + 0.01905878260731697, + 0.0388864241540432, + 0.005282195750623941, + -0.014297783374786377, + 0.011651141569018364, + 0.019798068329691887, + -0.011614177376031876, + -0.0056740171276032925, + -0.019709354266524315, + 0.026215067133307457, + 0.012789641506969929, + 0.022341210395097733, + 0.009255856275558472, + -0.0022086158860474825, + 0.0018482140731066465, + -0.02744228206574917, + 0.040601566433906555, + 0.0003074966080021113, + 0.03977356478571892, + -0.016145998612046242, + -0.010660498403012753, + -0.033208709210157394, + 0.01534756924957037, + -0.03246942535042763, + -0.05092199146747589, + 0.012442177161574364, + -0.01928056962788105, + -0.004712945781648159, + 0.0064354813657701015, + 0.00908582005649805, + 0.018378639593720436, + 0.026717782020568848, + 0.038797710090875626, + 0.013174070045351982, + -0.03066556714475155, + 0.01741756871342659, + 0.0134328193962574, + -0.011414569802582264, + 0.006956677418202162, + -0.013654605485498905, + 0.010253891348838806, + 0.006524195428937674, + -0.007248695474117994, + 0.03252856805920601, + 0.009507212787866592, + -0.014209069311618805, + -0.007089748978614807, + -0.008494392037391663, + -0.011628963053226471, + 0.017269711941480637, + 0.01833428256213665, + -0.0069640702567994595, + 0.007843820378184319, + -0.004066071007400751, + 0.013942927122116089, + 0.013344105333089828, + 0.012168641202151775, + 0.009699427522718906, + -0.012375641614198685, + 0.010150391608476639, + 0.0011773123405873775, + -0.031848423182964325, + -0.007056481204926968, + -0.024233782663941383, + -0.012013391591608524, + -0.007991677150130272, + 0.013802462257444859, + 0.01400206983089447, + 0.02911306731402874, + -0.013706355355679989, + -0.02044863998889923, + 0.006705320440232754, + 0.013920747675001621, + 0.004335910081863403, + -0.001598705188371241, + 0.008257820270955563, + -0.011118855327367783, + -0.012301712296903133, + 0.003116088919341564, + -0.017683712765574455, + -0.010431320406496525, + 0.009788141585886478, + 0.006609213538467884, + -0.0029719281010329723, + -0.02714656852185726, + -0.03909342363476753, + -0.012176034040749073, + 0.023952854797244072, + -0.05447056517004967, + 0.02077392488718033, + 0.009669856168329716, + -0.0011190936202183366, + 0.011377605609595776, + 0.026407282799482346, + 0.00516760628670454, + -0.018319496884942055, + -0.034154996275901794, + 0.05606742203235626, + 0.005089981481432915, + 0.0057183741591870785, + -0.01808292604982853, + 0.009196712635457516, + -0.014075998216867447, + 0.03956656530499458, + -0.00543744582682848, + 0.009477641433477402, + 0.013166677206754684, + -0.013743319548666477, + 0.017047926783561707, + -0.007089748978614807, + -0.019798068329691887, + -0.0021180533803999424, + 0.0244999248534441, + 0.0015275488840416074, + -0.010187355801463127, + 0.006550070364028215, + -0.004797963425517082, + 0.012782248668372631, + -0.0009444374009035528, + -0.054381851106882095, + -0.038206279277801514, + -0.032321568578481674, + -0.0002774631429929286, + -0.010497855953872204, + -0.024544281885027885, + 0.010623534210026264, + -0.021823711693286896, + -0.008701391518115997, + 0.009566355496644974, + 0.008243034593760967, + 0.021128783002495766, + 0.0035171513445675373, + -0.008228248916566372, + 0.004424624610692263, + 0.00229548173956573, + 0.022119425237178802, + -0.026185495778918266, + 0.014467819593846798, + 0.0071784635074436665, + -0.005991910118609667, + -0.004143695812672377, + -0.015495426021516323, + -0.014046426862478256, + 0.019990282133221626, + -0.015451068989932537, + 0.017654139548540115, + -0.01120757032185793, + -0.02355363965034485, + 0.011015355587005615, + -0.021454067900776863, + 0.005906892009079456, + -0.009566355496644974, + -0.013617641292512417, + -0.013965105637907982, + 0.005045624449849129, + -0.00037611156585626304, + 0.025756711140275, + -0.0014166560722514987, + -0.01148849818855524, + -0.0031844726763665676, + -0.012678747996687889, + -0.01482267677783966, + 0.003550419118255377, + 0.05361299216747284, + -0.02727963961660862, + -0.01805335469543934, + -0.008413069881498814, + -0.03353399410843849, + -0.019901568070054054, + -0.00039366958662867546, + 0.003469097660854459, + -0.03072470985352993, + 0.003881249576807022, + -0.014090783894062042, + -0.025239210575819016, + 0.01596856862306595, + 0.011798998340964317, + 0.00926324911415577, + 0.011407176963984966, + 0.004531820770353079, + -0.027013495564460754, + -0.01215385552495718, + -0.04725513607263565, + -0.0054448386654257774, + -0.01608685404062271, + -0.018408210948109627, + 0.05535770580172539, + 0.0050493208691477776, + 0.041488707065582275, + 0.0022492764983326197, + -0.019162282347679138, + -0.0025542317889630795, + 0.005308070685714483, + -0.027959782630205154, + -0.03672770783305168, + -0.018230782821774483, + -0.010453498922288418, + 0.004343302920460701, + 0.016737425699830055, + -0.006187820807099342, + -0.016293855383992195, + -0.00022132362937554717, + 0.03220328316092491, + -0.010941427201032639, + -0.0260819960385561, + 0.012900534085929394, + -0.007392856292426586, + -0.008812284097075462, + 0.0029848655685782433, + -0.00378144602291286, + -0.00154880341142416, + -0.012693533673882484, + -0.014112962409853935, + 0.001034999848343432, + -0.006760766729712486, + -0.007784677669405937, + -0.03799927979707718, + 0.015066640451550484, + -0.012700926512479782, + -0.023154426366090775, + -0.08770884573459625, + -0.015731997787952423, + -0.008871427737176418, + 0.040542423725128174, + 0.012590033933520317, + -0.004934731405228376, + -0.0028240710962563753, + 0.024292925372719765, + -0.018245568498969078, + 0.012797034345567226, + 0.014031641185283661, + -0.016766997054219246, + 0.03359313681721687, + 0.028151996433734894, + 0.03450985252857208, + -0.009566355496644974, + -0.0001649531041039154, + 0.006095409858971834, + -0.0056074815802276134, + -0.013329319655895233, + -0.007718141656368971, + 0.006723802536725998, + 0.02285871095955372, + -0.011111462488770485, + -0.007666391786187887, + 0.0344507098197937, + -0.029320066794753075, + -0.0018509863875806332, + -0.013706355355679989, + -0.016811354085803032, + -0.005574213340878487, + 0.02800413966178894, + 0.0021402318961918354, + 0.0027168747037649155, + 0.020374711602926254, + 0.0026226157788187265, + 0.01719578355550766, + -0.02908349595963955, + 0.029941067099571228, + 0.012042962945997715, + 0.013654605485498905, + 0.00738176703453064, + -0.020330354571342468, + -0.0019313836237415671, + -0.026688210666179657, + -0.017550639808177948, + -0.001400022185407579, + -0.02677692472934723, + -0.0013944774400442839, + 0.021291425451636314, + 0.009603319689631462, + -0.011392391286790371, + 0.012545676901936531, + -0.02219335362315178, + -0.015066640451550484, + -0.009425891563296318, + 0.004210231360048056, + -0.017816783860325813, + 0.014149926602840424, + 0.004757302813231945, + 0.06594427675008774, + 0.014297783374786377, + 0.0016689372714608908, + -0.0007120244554243982, + -0.008272605948150158, + 0.028329424560070038, + 0.036845993250608444, + 0.013698962517082691, + 0.03391842544078827, + -0.006476141978055239, + 0.033208709210157394, + -0.002319508697837591, + 0.003981052897870541, + 0.032351139932870865, + 0.01166592724621296, + 0.016101641580462456, + -0.003173383418470621, + 0.0021402318961918354, + 0.016293855383992195, + -0.027634495869278908, + -0.03152313828468323, + 0.0012235176982358098, + -0.010993177071213722, + -0.011281498707830906, + -0.011614177376031876, + 0.0009601471829228103, + 0.006753373891115189, + -0.011451533995568752, + 0.014327355660498142, + 0.010741819627583027, + 0.01145892683416605, + 0.011702891439199448, + 0.022119425237178802, + 0.010497855953872204, + -0.014371712692081928, + 0.06357856094837189, + -0.016397355124354362, + 0.004173267167061567, + -0.010911855846643448, + -0.014837462455034256, + 0.0013066873652860522, + -0.030635995790362358, + 0.0054448386654257774, + -0.015879854559898376, + -0.011348034255206585, + 0.00401432067155838, + -0.01741756871342659, + 0.008516570553183556, + -0.026850853115320206, + -0.002458124654367566, + -0.008124749176204205, + 0.0032399191986769438, + -0.00997296255081892, + 0.012190819717943668, + -0.023065710440278053, + 0.006782945711165667, + -0.00024604349164292216, + -0.005991910118609667, + -0.029719281941652298, + -0.003236222779378295, + -0.019398855045437813, + 0.01076399814337492, + -0.026688210666179657, + -0.03149356693029404, + 0.011466319672763348, + -0.006623999215662479, + -0.014246033504605293, + -0.016737425699830055, + 0.01537714060395956, + 0.02674735337495804, + -0.010039499029517174, + 0.019990282133221626, + -0.03291299566626549, + 0.013588069938123226, + -0.020626068115234375, + 0.02086264081299305, + 0.029320066794753075, + -0.007651606108993292, + 0.016619140282273293, + -0.045155566185712814, + 0.00881967693567276, + -0.01534756924957037, + 0.0058366600424051285, + 0.002763079944998026, + -0.009130177088081837, + 0.009278034791350365, + 0.013196248561143875, + 0.01136281993240118, + 0.009492427110671997, + -0.008435248397290707, + 0.003727847710251808, + 0.019812854006886482, + 0.007865998893976212, + 0.02041906863451004, + -0.022237710654735565, + -0.016737425699830055, + -0.019398855045437813, + 0.0012161248596385121, + 0.0005521539715118706, + -0.005733159836381674, + -0.01133324857801199, + 0.01697399839758873, + 0.013114926405251026, + 0.003461704822257161, + 0.01063831988722086, + -0.009233677759766579, + -0.005289588589221239, + -0.00017696649592835456, + -0.0007984284893609583, + -0.0036206513177603483, + 0.006601820699870586, + -0.009928605519235134, + -0.004343302920460701, + -0.022873496636748314, + -0.02080349810421467, + 7.571902096970007e-5, + -0.010128213092684746, + -0.005940159782767296, + 0.020492997020483017, + -0.004258285276591778, + -0.020271211862564087, + 0.029482711106538773, + -0.01624949835240841, + 0.0049088564701378345, + -0.0031345710158348083, + 0.012841391377151012, + -0.01534756924957037, + -0.0050493208691477776, + 0.014593497850000858, + 0.014837462455034256, + 0.004542910028249025, + 0.03403671085834503, + -0.007093445397913456, + 0.011784212663769722, + -0.005274802912026644, + -0.02636292576789856, + 0.03173013776540756, + 0.04089727997779846, + -0.03675727918744087, + 0.003138267435133457, + -0.013092747889459133, + -0.025490567088127136, + 0.02058171108365059, + 0.002570865675806999, + -0.0019775889813899994, + 0.00044172315392643213, + -0.029896710067987442, + 0.014349534176290035, + 0.020271211862564087, + -0.011067105457186699, + -0.005245231557637453, + -0.0013076114701107144, + 0.022843925282359123, + -0.012212998233735561, + -0.006760766729712486, + 0.00431373156607151, + 0.006856874097138643, + -0.0034007139038294554, + 0.020404282957315445, + -0.005038231611251831, + 0.050685420632362366, + 0.0011033837217837572, + -0.006856874097138643, + -0.019073568284511566, + 0.0043100351467728615, + 0.013602855615317822, + 0.003093910403549671, + -0.05512113496661186, + -0.02013814076781273, + 0.009130177088081837, + 0.0074741775169968605, + 0.008450035005807877, + -0.007925141602754593, + -0.0016800265293568373, + -4.299985448596999e-5, + -0.015332783572375774, + 0.012405212968587875, + -0.0055113742128014565, + 0.023878924548625946, + 0.003038463881239295, + 0.00357259763404727, + -0.013129712082445621, + -0.015539783984422684, + 0.007917748764157295, + 0.052430134266614914, + 0.03578142449259758, + -0.028654711320996284, + -0.008353927172720432, + -0.0034820351283997297, + 0.020300783216953278, + 0.030428996309638023, + 0.0026392496656626463, + -0.011214963160455227, + 0.009492427110671997, + -0.004435713868588209, + 0.0037389369681477547, + -0.00416587432846427, + 0.011392391286790371, + 0.00994339119642973, + -0.005112159997224808, + 0.010601355694234371, + -0.020108569413423538, + 0.030990852043032646, + -0.037880994379520416, + 0.008767927065491676, + -0.016811354085803032, + -0.0005466092843562365, + -0.016633925959467888, + 0.013477176427841187, + 0.0017031292663887143, + 0.005053017288446426, + -0.003106847871094942, + -0.01433474849909544, + 0.006416999269276857, + 0.020019855350255966, + 0.02083306945860386, + -0.029157424345612526, + -0.046515852212905884, + 0.011067105457186699, + 0.007607249077409506, + -0.001723459572531283, + 0.011584606021642685, + -0.023908495903015137, + 0.010934034362435341, + 0.01653042621910572, + 0.017180997878313065, + 0.007378070615231991, + 0.008738355711102486, + 0.03702342510223389, + -0.01248653419315815, + 0.0075702848844230175, + 0.0010239105904474854, + 0.01182117685675621, + -0.03406628221273422, + 0.017180997878313065, + -0.019798068329691887, + 0.0020736961159855127, + 0.016988784074783325, + 0.003932999446988106, + 0.020522568374872208, + 0.003106847871094942, + -0.010268677026033401, + -0.0439431369304657, + -0.012375641614198685, + 0.009714213199913502, + -0.00016807195788715035, + 0.011769426986575127, + -0.005418963730335236, + 0.0021550175733864307, + -0.01103014126420021, + -0.009662463329732418, + 0.002548687160015106, + -0.01633821241557598, + -0.03791056573390961, + 0.014438248239457607, + 0.009004498831927776, + 0.00498648127540946, + -0.002997803268954158, + -0.010800963267683983, + -0.036816421896219254, + -0.004228713922202587, + -0.008243034593760967, + 0.037378281354904175, + -0.0018759372178465128, + -0.03589970991015434, + -0.02586021088063717, + -0.007695963140577078, + 0.005433749407529831, + 0.010409141890704632, + 0.002539446111768484, + -0.027678852900862694, + 0.04769870638847351, + 0.0014148078626021743, + -0.010106034576892853, + 0.01586506888270378, + -0.0018020087154582143, + 0.0007360512390732765, + 0.004247196018695831, + -0.014719177037477493, + -0.0010941426735371351, + 0.00723021337762475, + 0.018763069063425064, + 0.0015220042550936341, + -0.00046875327825546265, + 0.022873496636748314, + -0.004158481489866972, + -0.006113891955465078, + 0.021675854921340942, + 0.00528589216992259, + -0.0018325041746720672, + 0.002975624520331621, + 0.01861521229147911, + 0.02272563986480236, + 0.0020681514870375395, + 0.015924211591482162, + 0.018851783126592636, + 0.013196248561143875, + 0.009499819949269295, + -0.033297423273324966, + -0.025549711659550667, + -0.04208013787865639, + -0.0010368480579927564, + -0.003799928119406104, + 0.03400713950395584, + -0.02825549617409706, + 0.013462390750646591, + 0.0006459507858380675, + -0.033238280564546585, + -0.006099106278270483, + -0.01716621220111847, + 0.01294489111751318, + -0.008117356337606907, + -0.04672285169363022, + 0.014926176518201828, + -0.007008427754044533, + 0.00635415967553854, + -0.0013159284135326743, + 0.01227953378111124, + 0.005788606591522694, + -0.02038949728012085, + 0.013462390750646591, + 0.0036557673010975122, + -0.020285997539758682, + 0.01340324804186821, + -0.015953782945871353, + -0.016456497833132744, + -0.007514838129281998, + -0.0003982901107519865, + 0.012323890812695026, + 0.003757419064640999, + -0.011281498707830906, + -0.018984854221343994, + -0.0013787676580250263, + 0.021690640598535538, + 0.007008427754044533, + 0.010069070383906364, + -0.035042136907577515, + 0.027131782844662666, + -0.0423462800681591, + -0.0032879728823900223, + 0.006209999322891235, + 0.009595926851034164, + -0.003241767408326268, + 0.00738176703453064, + -0.027412710711359978, + 0.030931709334254265, + 0.013957712799310684, + 0.01386160496622324, + 0.0007720913854427636, + -0.014342141337692738, + -0.007023213431239128, + 0.01498531922698021, + -0.006099106278270483, + -0.01041653472930193, + -0.016604354605078697, + 0.008228248916566372, + 0.006967767141759396, + 0.04137042164802551, + 0.006723802536725998, + -0.004672285169363022, + -0.02436685375869274, + 0.0005295133450999856, + -0.0186447836458683, + -0.031789280474185944, + 0.00179184356238693, + 0.016826139762997627, + -0.018349068239331245, + 0.00836132001131773, + 0.0017169908387586474, + -0.015702426433563232, + 0.0128783555701375, + 0.0008289240067824721, + 0.012575248256325722, + 0.007910355925559998, + 0.05328770726919174, + -0.03309042379260063, + -0.011340641416609287, + -0.030458567664027214, + -0.002818526467308402, + -0.0009305757703259587, + -0.01966499723494053, + -0.023701496422290802, + -0.019576283171772957, + -0.03306085243821144, + -0.002827767515555024, + -0.011710284277796745, + 0.010468284599483013, + -0.01735842600464821, + -0.005459624342620373, + 0.024899140000343323, + 0.007555499207228422, + 0.005736856255680323, + 0.02003464102745056, + -0.022326424717903137, + 0.025431424379348755, + -0.007492659613490105, + -0.006550070364028215, + -0.012553069740533829, + -0.017875926569104195, + 0.03113871067762375, + 0.006010392215102911, + 0.0031900175381451845, + -0.0134328193962574, + 0.010712248273193836, + -0.010756605304777622, + 0.01655999757349491, + 0.018482141196727753, + -0.02019728347659111, + -0.012915319763123989, + -0.019132710993289948, + 0.008065606467425823, + -0.01861521229147911, + -0.012649176642298698, + 0.004387659952044487, + 0.019413640722632408, + -0.027412710711359978, + -0.018511712551116943, + -0.005163909867405891, + 0.01621992699801922, + -0.012560462579131126, + 0.007012124173343182, + -0.008050820790231228, + -0.011074498295783997, + 0.026348140090703964, + 0.011577213183045387, + -0.03439156711101532, + -0.01468221191316843, + 0.010948820039629936, + -0.014623069204390049, + 0.01318146288394928, + -0.004454195965081453, + 0.02483999729156494, + -0.032853852957487106, + -0.0071045346558094025, + 0.019117925316095352, + -0.005585302598774433, + -0.009248463436961174, + -0.010719641111791134, + -0.0032084996346384287, + -0.0011107766767963767, + 0.004894070792943239, + -0.027412710711359978, + -0.04219842329621315, + 0.008856642059981823, + 0.0022585175465792418, + -0.007004731334745884, + -0.017343640327453613, + 0.004690767265856266, + 0.0005530780763365328, + -0.011843355372548103, + -0.017654139548540115, + 0.023716282099485397, + -0.019576283171772957, + 0.002016401616856456, + -0.0017188390484079719, + -0.005899499170482159, + 0.003921910189092159, + -0.010342605412006378, + -0.012050355784595013, + -0.01488921232521534, + -0.022296853363513947, + 0.0008035110658966005, + -0.018733497709035873, + -0.011296284385025501, + 0.0006903079338371754, + 0.020271211862564087, + 0.0024950888473540545, + -0.017964640632271767, + -0.022962210699915886, + 0.011436748318374157, + 0.005341338459402323, + -0.005515070632100105, + -0.0037112138234078884, + 0.00401432067155838, + 0.03391842544078827, + -0.0028647317085415125, + 0.004158481489866972, + -0.005699892062693834, + -0.013092747889459133, + 0.007071266882121563, + 0.023302283138036728, + 0.0005821874365210533, + -0.022089853882789612, + 0.01000253390520811, + -0.0018694684840738773, + 0.06192256137728691, + 0.011710284277796745, + -0.011414569802582264, + -0.0089305704459548, + 0.00039667292730882764, + -0.015820711851119995, + -0.003424740629270673, + 0.023050924763083458, + 0.008339141495525837, + 0.004901463631540537, + -0.0013621337711811066, + -0.013233212754130363, + 0.0055779097601771355, + 0.002435946138575673, + -0.016574783250689507, + 0.01100056990981102, + 0.010490463115274906, + 0.045155566185712814, + -0.0025985888205468655, + 0.028876496478915215, + 0.0020367319229990244, + 0.0018565310165286064, + 0.005659231450408697, + 0.019931139424443245, + -0.007666391786187887, + 0.001354740932583809, + 0.0065981242805719376, + 0.01700356975197792, + 0.006594427861273289, + 0.025239210575819016, + 0.007008427754044533, + 0.004912552889436483, + -0.030207209289073944, + 0.005053017288446426, + 0.026732567697763443, + -0.00810996349900961, + 0.006760766729712486, + 0.00716737424954772, + -0.014549140818417072, + 0.022400354966521263, + -0.0026484907139092684, + -0.0074519990012049675, + 0.01899963989853859, + 0.004642713814973831, + -0.009935998357832432, + -0.016766997054219246, + -0.0012253659078851342, + -0.010704855434596539, + -0.00480535626411438, + -0.013920747675001621, + -0.011155819520354271, + -0.01861521229147911, + 0.010431320406496525, + 0.005485499277710915, + 0.0032214371021836996, + -0.002169803250581026, + 0.02244471199810505, + -0.00932239182293415, + -0.01400206983089447, + -0.0033692941069602966, + -0.01066789124161005, + 0.0077772848308086395, + -0.013114926405251026, + 0.0005013280315324664, + -0.009529391303658485, + -0.0062950169667601585, + -0.01722535490989685, + 0.006028874311596155, + -0.0076589989475905895, + -0.006623999215662479, + 0.008560927584767342, + 0.01304099801927805, + 0.009167141281068325, + -0.033622708171606064, + -0.000647798995487392, + 0.0001376919390168041, + 0.011872926726937294, + 0.020596496760845184, + 0.0076368204317986965, + -0.004683374427258968, + 0.007925141602754593, + 0.008294784463942051, + -0.0017262318870052695, + -0.003352660220116377, + -0.0007083280361257493, + 0.00013907811080571264, + 0.01852649822831154, + -0.02149842493236065, + -0.0013270176714286208, + -0.016826139762997627, + -0.007695963140577078, + 0.0136693911626935, + -0.00886403489857912, + -0.005966034717857838, + 0.01357328426092863, + -0.00010656109225237742, + -0.004406142048537731, + -0.010268677026033401, + 0.010409141890704632, + -0.004077160265296698, + 0.024100711569190025, + 0.010911855846643448, + 0.003944088704884052, + -0.0014831917360424995, + 6.624692468903959e-5, + 0.0016264283331111073, + -0.000474991014925763, + -0.00031257918453775346, + -0.03453942388296127, + -0.006690534763038158, + 0.0044283210299909115, + -0.013942927122116089, + -0.01808292604982853, + -0.008353927172720432, + -0.01783156953752041, + 0.011902498081326485, + 0.020744353532791138, + -0.008435248397290707, + -0.011325855739414692, + -0.02095135487616062, + -0.028565995395183563, + 0.007330016698688269, + -0.006202606484293938, + 0.0018685443792492151, + 0.019324926659464836, + 0.0035910799633711576, + -0.0079029630869627, + -0.0007734776008874178, + -0.01744714006781578, + -0.0014868881553411484, + 0.006069534923881292, + -0.014955747872591019, + -0.009810320101678371, + -0.00732632027938962, + 0.0008737432071939111, + -0.0030624906066805124, + 0.011155819520354271, + -0.004413534887135029, + 0.016397355124354362, + -0.004021713510155678, + 0.0063208919018507, + 0.0178611408919096, + 0.0037795978132635355, + 0.023065710440278053, + 0.005082588642835617, + 0.03341570869088173, + -0.0076368204317986965, + -0.02841813862323761, + 0.022548211738467216, + 0.008753141388297081, + 0.016456497833132744, + -0.02778235264122486, + 0.003141963854432106, + -0.0057183741591870785, + -0.013558498583734035, + -0.0040586781688034534, + -0.03170056641101837, + 0.024618210271000862, + -0.015436283312737942, + -0.008413069881498814, + -0.0019960710778832436, + 0.0035189995542168617, + -0.00768857030197978, + -0.009669856168329716, + 0.0032510084565728903, + 0.018763069063425064, + 0.015879854559898376, + 0.021912425756454468, + 0.00941849872469902, + 0.011562426574528217, + -0.02174978330731392, + 0.01066789124161005, + 0.005751641932874918, + -0.04222799465060234, + 0.007559195626527071, + -0.0017225354677066207, + -0.0015774506609886885, + 0.00568140996620059, + -0.019635425880551338, + 0.0020459729712456465, + -0.019457997754216194, + -0.02469213865697384, + 0.007196945603936911, + 0.006997338496148586, + 0.013935534283518791, + -0.008405677042901516, + 0.010593962855637074, + -0.002605981891974807, + -0.007137802429497242, + -0.010438713245093822, + -0.012471748515963554, + 0.020759139209985733, + -0.007045391947031021, + 0.0009083971963264048, + -0.012663962319493294, + 0.002445187186822295, + 0.02358321100473404, + 0.022208139300346375, + -0.017328854650259018, + 0.006051052827388048, + 0.015628498047590256, + -0.0005660155438818038, + 0.0048644994385540485, + -0.004435713868588209, + 0.016131212934851646, + -0.029157424345612526, + -0.01191728375852108, + -0.018422996625304222, + 0.0008002766990102828, + -0.0036816424690186977, + -0.016397355124354362, + -0.030118495225906372, + 0.027427496388554573, + -0.006405910011380911, + -0.01691485568881035, + 0.007784677669405937, + 0.016929641366004944, + 0.001381539972499013, + 0.015731997787952423, + -0.007100838236510754, + -0.0007928838022053242, + -0.0015672855079174042, + 0.016900070011615753, + 0.006694231182336807, + -0.022784782573580742, + 0.005585302598774433, + -0.009241070598363876, + 0.008605284616351128, + -0.004295249469578266, + -0.02547578141093254, + 0.027397925034165382, + -0.011274105869233608, + -0.010608748532831669, + 0.02342056855559349, + 0.0032251335214823484, + 0.02177935466170311, + 0.010549605824053288, + 0.00413260655477643, + 0.008243034593760967, + -0.005855142138898373, + -0.0037795978132635355, + 0.008383498527109623, + 0.0028203746769577265, + 0.0072893560864031315, + 0.004010624252259731, + -0.0023305979557335377, + 0.009034070186316967, + -0.005186088383197784, + -0.011170605197548866, + -2.9658060157089494e-5, + 0.016205141320824623, + 0.0004920869832858443, + -0.012863569892942905, + 0.030118495225906372, + 3.292131077614613e-5, + 0.007910355925559998, + -0.008161713369190693, + 0.007241302635520697, + 0.0069640702567994595, + 0.001558044459670782, + 0.0050714993849396706, + 0.004380267113447189, + -0.0028018925804644823, + 0.0008954597287811339, + 0.00355596374720335, + -0.004202838521450758, + -0.01063831988722086, + 0.0026133747305721045, + -0.003881249576807022, + 0.015791140496730804, + 0.0002980245044454932, + -0.003129026386886835, + 0.005851445719599724, + 0.010719641111791134, + -0.004280463792383671, + -0.0014323658542707562, + 0.008013855665922165, + -0.0013131560990586877, + 0.0037685083225369453, + 0.00929282046854496, + 0.0009014664101414382, + 0.0005179619765840471, + 0.0021272944286465645, + -0.002772320993244648, + -0.014164712280035019, + -0.017506282776594162, + -0.006335677579045296, + 0.018068140372633934, + -0.0033600530587136745, + 0.00038096311618573964, + -0.00029894860927015543, + -0.008745748549699783, + 0.007074963301420212, + -0.012900534085929394, + -0.006623999215662479, + 0.015539783984422684, + -0.024632995948195457, + 0.009995141066610813, + 0.010727033950388432, + 0.006649874150753021, + -0.007481570355594158, + 0.0011689953971654177, + -0.02067042514681816, + -0.024884354323148727, + 0.010505248792469501, + 0.004391356371343136, + 0.010926641523838043, + 0.00340256211347878, + -0.014600890688598156, + 0.01172506995499134, + -0.017402783036231995, + -0.001912901527248323, + -0.002988561987876892, + 0.004738820716738701, + -0.0035005174577236176, + -0.030207209289073944, + 0.00635415967553854, + 0.013092747889459133, + -0.01583549752831459, + -0.012102105654776096, + -0.003430285258218646, + -0.0038590708281844854, + -0.005810785107314587, + 0.02469213865697384, + 0.0025246604345738888, + 0.006431784946471453, + 0.004280463792383671, + 0.004882981535047293, + 0.008952748961746693, + -0.017047926783561707, + 0.017062712460756302, + -0.007093445397913456, + -0.01044610608369112, + 0.002461821073666215, + -0.009965569712221622, + 0.03468728065490723, + -0.0205521397292614, + -0.010187355801463127, + -0.018792640417814255, + 0.011584606021642685, + -0.0276640672236681, + -0.0069936420768499374, + 0.0018325041746720672, + -0.0021143569611012936, + 0.02364235371351242, + 0.01836385391652584, + 0.0016587721183896065, + 0.003186320886015892, + 0.019709354266524315, + 0.031877994537353516, + 0.024440782144665718, + -0.001143120345659554, + -0.005474410019814968, + 0.006786642130464315, + -0.009137569926679134, + -0.0008381650550290942, + 0.01928056962788105, + 0.0017983122961595654, + -0.015791140496730804, + -0.003345267381519079, + -0.01653042621910572, + 0.02519485354423523, + -0.027708424255251884, + -0.01363981980830431, + -0.007599856238812208, + 0.006668356247246265, + -0.013321926817297935, + 0.02689521014690399, + -0.014157319441437721, + -0.01744714006781578, + 0.0025671692565083504, + -0.020345140248537064, + -0.021912425756454468, + -0.015850283205509186, + -0.01830471120774746, + -0.002587499562650919, + 0.010009927675127983, + -0.001147740869782865, + -0.001133879297412932, + -0.00787339173257351, + 0.02095135487616062, + 0.02069999650120735, + 0.00031766179017722607, + 0.0009254931937903166, + 0.0022566693369299173, + 0.021320996806025505, + -0.0003902041935361922, + 0.016234712675213814, + 0.00030818968662060797, + -0.010889677330851555, + -0.018674355000257492, + 0.004616838879883289, + 0.0025061783380806446, + 0.0073854634538292885, + 0.00629132054746151, + -0.007400249131023884, + -0.01719578355550766, + 0.015303212217986584, + -0.01719578355550766, + -0.015074033290147781, + 0.01251610554754734, + -0.005426356568932533, + 0.025180067867040634, + 0.017624568194150925, + 0.010985784232616425, + -0.030148066580295563, + 0.011902498081326485, + 0.005430052988231182, + 0.017846355214715004, + 0.0011440444504842162, + -0.006572248879820108, + -0.00561857083812356, + -0.010749212466180325, + 0.00269099953584373, + -0.0027612317353487015, + 0.004372874274849892, + 0.012597426772117615, + 0.006646177731454372, + 0.0086939986795187, + -0.009462855756282806, + 0.01908835396170616, + 0.0012105802306905389, + 0.0142238549888134, + 0.004302642308175564, + -0.00905624870210886, + -0.010505248792469501, + 0.005441142246127129, + 0.011059712618589401, + -0.011037534102797508, + 0.013802462257444859, + -0.03158228099346161, + -0.006605517119169235, + -0.0005738704348914325, + 0.015140569768846035, + -0.017565425485372543, + -0.004435713868588209, + 0.01653042621910572, + -0.01669306866824627, + 0.01194685511291027, + 0.007130409590899944, + -0.021232282742857933, + -0.004424624610692263, + 0.010697462595999241, + -0.006945588160306215, + 0.01537714060395956, + 0.021217497065663338, + 0.006782945711165667, + 0.006280231289565563, + 0.003914517350494862, + -0.023257926106452942, + -0.013809855096042156, + 0.02627420984208584, + 0.009366748854517937, + -0.006679445505142212, + -0.017047926783561707, + -0.019162282347679138, + -0.0008788257837295532, + 0.018511712551116943, + 0.03069513849914074, + -0.022769996896386147, + 0.010823141783475876, + -0.007078659720718861, + -0.006080624181777239, + 0.018467355519533157, + -0.003803624538704753, + -0.0006200757925398648, + -0.003777749603614211, + 0.015451068989932537, + 0.010534820146858692, + -0.010564391501247883, + -0.02105485461652279, + 0.006324588321149349, + 0.011784212663769722, + -0.0202268548309803, + 0.012575248256325722, + 0.009381534531712532, + -0.021823711693286896, + 0.0017040533712133765, + 0.0016809506341814995, + -0.011865533888339996, + -0.011710284277796745, + 0.019768496975302696, + -0.003822106635197997, + 0.020980926230549812, + 0.016885284334421158, + 3.5462606319924816e-5, + 0.001400022185407579, + 0.01041653472930193, + 0.007418731227517128, + 0.018940497189760208, + -0.00680512422695756, + -0.009351963177323341, + 0.007115623913705349, + -0.0032657941337674856, + 0.017314068973064423, + -0.0218089260160923, + -0.0027704727835953236, + 0.012050355784595013, + 0.00135936145670712, + 0.013018819503486156, + 0.004568784963339567, + -0.017654139548540115, + 0.012915319763123989, + 0.02092178352177143, + 0.0015136873116716743, + 0.01644171215593815, + -0.003718606662005186, + 0.007330016698688269, + 0.008442642167210579, + 0.00498648127540946, + 0.008716177195310593, + -0.0014517721720039845, + -1.3356234376260545e-6, + 0.005108463577926159, + -0.003456160193309188, + 0.020345140248537064, + -0.01148849818855524, + 6.538056913996115e-5, + 0.028920853510499, + -0.000693080248311162, + -0.01675221137702465, + -0.024766068905591965, + 0.009958176873624325, + -0.0002670669346116483, + 0.007156284525990486, + 0.012996640987694263, + 0.0357222817838192, + 0.009189319796860218, + 0.01281921286135912, + 0.009167141281068325, + -0.006557463202625513, + 0.008538749068975449, + -0.006723802536725998, + 0.011584606021642685, + 0.0010137454373762012, + 0.014268212020397186, + -0.005566820502281189, + 0.005415267311036587, + 0.03211456537246704, + -0.005341338459402323, + 0.0005650914390571415, + 0.004435713868588209, + 0.0097216060385108, + 0.005278499331325293, + -0.016959212720394135, + -0.02895042486488819, + -0.005951249040663242, + -0.013344105333089828, + 0.0017142185242846608, + -0.019635425880551338, + 0.0069197132252156734, + 0.00018643858493305743, + 0.019428426399827003, + -0.016205141320824623, + 0.015761569142341614, + -0.012397820129990578, + -0.002827767515555024, + -0.012242569588124752, + -0.004631624557077885, + 0.006128677632659674, + -0.00492364214733243, + -0.011776819825172424, + -0.0034672494512051344, + 0.032291997224092484, + 0.0005586227052845061, + -0.004483767319470644, + 0.03569271042943001, + 0.002426705090329051, + 0.014800498262047768, + 0.007315231021493673, + -0.013743319548666477, + -0.007174767088145018, + -0.027427496388554573, + 0.005367213394492865, + 0.006010392215102911, + 0.004480070900171995, + -0.024795640259981155, + -0.018215997144579887, + 0.013994676992297173, + 0.006509409751743078, + -0.00028554906020872295, + -0.00816910620778799, + -0.012065141461789608, + -0.006287624128162861, + -0.007481570355594158, + 0.013395855203270912, + 0.0006251583690755069, + 0.003433981677517295, + -0.009137569926679134, + -0.009618106298148632, + 0.02130621112883091, + -0.012715712189674377, + -0.013809855096042156, + 0.022814353927969933, + -0.005585302598774433, + 0.006202606484293938, + -0.0007568436558358371, + 0.01789071224629879, + -0.015170141123235226, + -0.022119425237178802, + -0.005943856202065945, + 0.0021309908479452133, + -0.0049088564701378345, + -0.0032177406828850508, + -0.014674819074571133, + 0.005237838719040155, + 0.004879285115748644, + 0.0005267409724183381, + -0.014209069311618805, + -0.011983820237219334, + -0.017742855474352837, + 0.0012706471607089043, + 0.023124853149056435, + 0.0021439283154904842, + 0.006446570623666048, + -0.01248653419315815, + 0.02566799707710743, + -0.010786176659166813, + 0.012176034040749073, + -0.017521068453788757, + -0.039211709052324295, + -0.009477641433477402, + 0.0006685914122499526, + 0.01877785474061966, + -0.002912785392254591, + -0.012323890812695026, + 0.009218891151249409, + 0.00850178487598896, + 0.00744460616260767, + -0.012804427184164524, + -0.011163212358951569, + 0.01883699744939804, + -0.006169338244944811, + -0.015110998414456844, + -0.0027926512993872166, + -0.011052319779992104, + -0.013506747782230377, + 0.00041561713442206383, + 0.0260819960385561, + -0.01919185370206833, + -0.0023878924548625946, + -0.011540248058736324, + -0.0005567744956351817, + 0.0064133028499782085, + 0.027294425293803215, + 0.00787339173257351, + 0.006209999322891235, + 0.00793253444135189, + -0.01933971233665943, + -0.0022067674435675144, + -0.0076589989475905895, + 0.01666349731385708, + -0.006538981106132269, + 0.012745283544063568, + -0.007189552765339613, + -0.02105485461652279, + 0.017151426523923874, + -0.01669306866824627, + 0.00994339119642973, + -0.01136281993240118, + -0.026599496603012085, + -0.04527385160326958, + -0.010069070383906364, + 0.0030014996882528067, + 0.01669306866824627, + -0.012715712189674377, + 0.009189319796860218, + 0.02025642618536949, + -0.010342605412006378, + -0.030517710372805595, + -0.0173879973590374, + 0.02041906863451004, + -0.02822592481970787, + 0.011495891027152538, + 0.007829034700989723, + -0.0031530531123280525, + -0.0027778656221926212, + 0.0005498436512425542, + 0.003628044156357646, + -0.025135710835456848, + -0.009396320208907127, + 0.0056296600960195065, + 0.005019749514758587, + -0.013284962624311447, + -1.3926581232226454e-5, + 0.0016985087422654033, + 0.014016855508089066, + 0.00036155685666017234, + -0.0008358547929674387, + 0.004110428038984537, + -0.02872863970696926, + -0.0009804775472730398, + -0.005363516975194216, + -0.019798068329691887, + 0.027811923995614052, + -0.0013205489376559854, + -0.032321568578481674, + -0.016412140801548958, + -0.009950784035027027, + 0.00320480321533978, + -0.02013814076781273, + 0.010357391089200974, + 0.010194748640060425, + 0.0024913924280554056, + 0.005951249040663242, + -0.008457427844405174, + 0.019014425575733185, + -0.002201222814619541, + -0.011540248058736324, + 0.0023084194399416447, + 0.013284962624311447, + -0.004513338673859835, + -0.006838392000645399, + -0.012405212968587875, + 0.007344802375882864, + -0.03637285158038139, + 0.025239210575819016, + -0.009891641326248646, + -0.007947320118546486, + 0.006368945352733135, + -0.010860105976462364, + 0.0018916471162810922, + -0.0050493208691477776, + 0.01033521257340908, + 0.007485266774892807, + -0.009699427522718906, + 0.00026683590840548277, + 0.013469783589243889, + -0.005156517028808594, + 0.00020607587066479027, + 0.014859640970826149, + -0.0026096783112734556, + -0.024573853239417076, + -0.005821874365210533, + -0.004395052790641785, + -0.014342141337692738, + 0.010527427308261395, + -0.013935534283518791, + -0.005267410073429346, + -0.0005840356461703777, + -0.025874996557831764, + -0.037407852709293365, + -0.0070823561400175095, + 0.009536784142255783, + 0.017935069277882576, + -0.012538284063339233, + -0.00704908836632967, + 0.0020422765519469976, + -0.0037795978132635355, + 0.003565204795449972, + -0.01333671249449253, + -0.020596496760845184, + 0.008804891258478165, + -0.012309105135500431, + -0.002241883659735322, + -0.002652187133207917, + 0.04039456695318222, + 0.0022696068044751883, + 0.005034535191953182, + 0.0029331156983971596, + 0.032380711287260056, + 0.00522305304184556, + -0.00704908836632967, + -0.005034535191953182, + -0.01574678346514702, + 0.0033766869455575943, + 0.009144962765276432, + -0.01827513985335827, + -0.01011342741549015, + 0.012116891331970692, + 0.014075998216867447, + -0.009662463329732418, + -0.019324926659464836, + -0.02652556821703911, + -0.013898569159209728, + -0.029438354074954987, + -0.005788606591522694, + 0.007119320333003998, + 0.014519569464027882, + 0.024411210790276527, + -0.002561624627560377, + 0.001282660523429513, + -0.025135710835456848, + -0.007437213324010372, + -0.01558414101600647, + -0.0016319729620590806, + 0.011473712511360645, + -0.002116205170750618, + 0.022385569289326668, + 0.02355363965034485, + -0.0009042387246154249, + 0.00601408863440156, + -0.018851783126592636, + -0.004942124243825674, + 0.022548211738467216, + 0.009788141585886478, + 0.02285871095955372, + 0.011421962641179562, + -0.016426926478743553, + 0.0048866779543459415, + -0.006694231182336807, + 0.010142998769879341, + -0.004114124458283186, + -0.007559195626527071, + 0.020759139209985733, + 0.015406711958348751, + -0.0045392136089503765, + 0.010786176659166813, + 0.02569756843149662, + 0.009832498617470264, + 0.009048855863511562, + -0.013632426969707012, + -0.0020847853738814592, + -0.012338676489889622, + 0.0030051961075514555, + -0.0057627311907708645, + 0.0003470021765679121, + 0.007030606269836426, + -0.011858141049742699, + 0.009011891670525074, + -0.03173013776540756, + 0.006239570677280426, + 0.01675221137702465, + -0.015317997895181179, + -0.030428996309638023, + -0.01561371237039566, + -9.402789146406576e-5, + -0.003443222725763917, + 0.009255856275558472, + -0.026008067652583122, + -0.01655999757349491, + 0.022489069029688835, + -0.004188052844256163, + 0.0007184931891970336, + 0.005644445773214102, + -0.019871996715664864, + -0.008457427844405174, + -0.003995838575065136, + 0.004461588803678751, + 0.00951460562646389, + 0.008827069774270058, + -0.026052424684166908, + 0.014948355033993721, + 0.0048866779543459415, + 0.0061323740519583225, + 0.0016495310701429844, + -0.012841391377151012, + 0.013233212754130363, + -0.010290855541825294, + -0.027043066918849945, + -0.003929303027689457, + 0.014593497850000858, + -0.0059697311371564865, + 0.01694442704319954, + -0.020714782178401947, + 0.012035570107400417, + -0.0016412140103057027, + -0.00416587432846427, + 0.002947901375591755, + -0.0022788478527218103, + -0.0014489998575299978, + 0.014563926495611668, + 0.015059247612953186, + 0.010660498403012753, + 0.005271106492727995, + -0.01419428363442421, + 0.007762499153614044, + 0.010697462595999241, + 0.01741756871342659, + -0.005215660203248262, + -0.00041700329165905714, + 0.003637285204604268, + 0.01678178273141384, + -0.003129026386886835, + -0.0012142766499891877, + 0.00014057978114578873, + 0.024987854063510895, + -0.0046574994921684265, + -0.002371258568018675, + 0.0042139277793467045, + -0.009551569819450378, + 0.0037241512909531593, + 0.0003160446067340672, + 0.017787212505936623, + -0.01000253390520811, + 0.0018112497637048364, + 0.023568425327539444, + -0.026495996862649918, + 0.010712248273193836, + 0.0316118523478508, + 0.02174978330731392, + 0.017964640632271767, + 0.022237710654735565, + -0.0012438480043783784, + -0.007769891992211342, + -0.005873624235391617, + 0.012109498493373394, + 0.003151204902678728, + -0.007137802429497242, + 0.005208267364650965, + 0.0034228924196213484, + 0.021483639255166054, + -0.004339606501162052, + -0.004424624610692263, + 0.005141731351613998, + 0.0026170711498707533, + -0.04491899535059929, + -0.014275604858994484, + -0.012959676794707775, + 0.011895105242729187, + -0.005078892223536968, + -0.010956212878227234, + -0.0006644329405389726, + -0.012375641614198685, + 0.005703588481992483, + 0.003286124439910054, + 0.018408210948109627, + -0.00306988344527781, + -0.0037888388615101576, + -0.04264199361205101, + -0.014778319746255875, + 0.0076811774633824825, + -0.005692499224096537, + 0.007100838236510754, + -0.005389391910284758, + 0.003506062086671591, + -0.0042139277793467045, + 0.00340256211347878, + -0.0047240350395441055, + -0.02025642618536949, + 0.013085355050861835, + 0.0006718257791362703, + -0.01145892683416605, + 0.0008377030026167631, + -0.0029552942141890526, + -0.009211498312652111, + -0.0014693301636725664, + -0.00859789177775383, + 0.009307606145739555, + -0.0074076419696211815, + 0.02411549724638462, + -0.004335910081863403, + -0.003559660166501999, + -0.00839089136570692, + -0.017210569232702255, + 0.0018740890081971884, + 0.0031789280474185944, + 0.0027612317353487015, + 0.010985784232616425, + 0.0035522673279047012, + -0.00015675165923312306, + 0.014157319441437721, + 0.019679782912135124, + 0.002944204956293106, + 0.020019855350255966, + 0.006975159980356693, + 0.00816910620778799, + -0.02525399625301361, + -0.004639017395675182, + 0.004875588696449995, + 0.002715026494115591, + -0.024632995948195457, + 0.02661428228020668, + -0.011281498707830906, + 0.008664427325129509, + 0.0010340757435187697, + 0.011384998448193073, + -0.00106272310949862, + -0.01621992699801922, + 0.004298945888876915, + 0.01886656880378723, + 0.003740785177797079, + -0.009632891975343227, + 0.021320996806025505, + 0.015214498154819012, + 0.005123249255120754, + -0.01905878260731697, + -0.0016541515942662954, + -0.004361785016953945, + 0.02522442489862442, + -0.013395855203270912, + -0.01735842600464821, + -0.0014369863783940673, + 0.0012493926333263516, + -0.009115391410887241, + 0.0002525122545193881, + -0.0006427164189517498, + -0.00025551559519954026, + 0.02080349810421467, + -0.0094850342720747, + -0.007843820378184319, + -0.005877320654690266, + -0.015628498047590256, + 0.022548211738467216, + 0.0011144730960950255, + -0.023657139390707016, + 0.018319496884942055, + 0.0008705087820999324, + -0.023849353194236755, + 0.0006681293598376215, + 0.012634390965104103, + 0.021069640293717384, + -0.002746446058154106, + -0.027457067742943764, + 0.0011874774936586618, + 0.01318146288394928, + -0.036431994289159775, + 0.005219356622546911, + -0.020463425666093826, + 0.012723105028271675, + 0.02983756735920906, + -0.005825570784509182, + -0.014926176518201828, + -0.002371258568018675, + -0.01241999864578247, + 0.03758528083562851, + 0.028846925124526024, + 0.0025283568538725376, + 0.010616141371428967, + 0.021631497889757156, + 0.00271872291341424, + 0.020626068115234375, + -0.012663962319493294, + -0.004361785016953945, + 0.006553766783326864, + 0.02380499616265297, + 0.003528240602463484, + -0.028373781591653824, + -0.004143695812672377, + -0.024662567302584648, + -0.0028591870795935392, + -0.0029331156983971596, + -0.002435946138575673, + -0.007344802375882864, + -0.008716177195310593, + -0.009314998984336853, + 0.010202141478657722, + 0.022385569289326668, + 0.02172021195292473, + 0.014859640970826149, + 0.007814249023795128, + -0.0035226959735155106, + -0.0022270979825407267, + 0.02035992592573166, + -0.011569819413125515, + -0.001156982034444809, + 0.0009619953925721347, + -0.008531356230378151, + 0.013868997804820538, + 0.0014083391288295388, + -0.01953192614018917, + -0.02177935466170311, + -0.01386160496622324, + -0.004594659898430109, + 0.017683712765574455, + 0.005622267257422209, + -0.013713748194277287, + 0.0008437096839770675, + 0.02200113981962204, + 0.02294742502272129, + -0.025135710835456848, + 0.013802462257444859, + -0.007829034700989723, + -0.014179497957229614, + 0.0012318346416577697, + -0.009204105474054813, + -0.004480070900171995, + -0.0010100490180775523, + 0.002938660327345133, + 0.018127283081412315, + -0.013085355050861835, + -0.0016717095859348774, + 0.004139999393373728, + 0.01397249847650528, + -0.02769363857805729, + -0.007821641862392426, + -0.0020718479063361883, + 0.0047905705869197845, + -0.007843820378184319, + 0.016619140282273293, + 0.016205141320824623, + -0.011872926726937294, + -0.0006071383249945939, + -0.003932999446988106, + -0.015406711958348751, + -0.01880742609500885, + 0.005038231611251831, + 0.017624568194150925, + -0.010616141371428967, + -0.009728998877108097, + -0.012042962945997715, + -0.019679782912135124, + 0.0013418033486232162, + 0.03303128108382225, + 0.013299748301506042, + -0.009980355389416218, + 0.008036034181714058, + 0.015451068989932537, + 0.007925141602754593, + 0.00984728429466486, + 0.0038368923123925924, + -0.013092747889459133, + -0.0061767310835421085, + -0.012301712296903133, + 0.010608748532831669, + -0.0074076419696211815, + 0.01340324804186821, + 0.003398865694180131, + -0.0005780289648100734, + 0.0030883655417710543, + -0.00464641023427248, + 0.017757641151547432, + -0.0017973881913349032, + -0.000882060150615871, + 0.002925722859799862, + -0.005271106492727995, + 0.0025283568538725376, + -0.005966034717857838, + 0.021823711693286896, + 0.012005998753011227, + -0.015938997268676758, + 0.0070823561400175095, + -0.008841856382787228, + 0.027678852900862694, + -0.011118855327367783, + 0.024899140000343323, + 0.013854212127625942, + -0.025120925158262253, + 0.009019284509122372, + 0.0029645352624356747, + 0.01361024845391512, + 0.008812284097075462, + 0.005884713493287563, + -0.0019276872044429183, + 0.003772204741835594, + 0.0081395348533988, + 0.024263354018330574, + 0.000384890561690554, + 0.018570855259895325, + -0.000607600377406925, + -0.0016495310701429844, + 0.020566925406455994, + 0.014453033916652203, + -0.008620070293545723, + 0.024100711569190025, + -0.01400206983089447, + -0.024100711569190025, + -0.004609445575624704, + 0.0025727138854563236, + 0.007718141656368971, + -0.0022936335299164057, + 0.013440212234854698, + -0.00839089136570692, + -0.01669306866824627, + 0.0008109039044938982, + -0.005001266952604055, + -0.018068140372633934, + -0.004579874221235514, + -0.006099106278270483, + 0.013772890903055668, + 0.01179160550236702, + -0.0038627672474831343, + -0.009647677652537823, + 0.001467481954023242, + 0.01349935494363308, + 0.008657034486532211, + -0.031907565891742706, + 0.012981855310499668, + 0.00452812435105443, + 0.001229062327183783, + -0.009115391410887241, + -0.024736497551202774, + -0.013218427076935768, + -0.010379569604992867, + -0.009669856168329716, + -0.003744481597095728, + 0.01783156953752041, + -0.013225819915533066, + 0.0024636692833155394, + -0.017742855474352837, + -0.018511712551116943, + -0.003992142155766487, + -0.013077962212264538, + -0.00698624923825264, + -0.004025410395115614, + 0.012567855417728424, + -0.020537354052066803, + -0.01281921286135912, + 0.015791140496730804, + 0.008095177821815014, + 0.010860105976462364, + 0.0012281382223591208, + -0.01515535544604063, + -0.003932999446988106, + -0.00189072301145643, + -0.0013990980805829167, + -0.012634390965104103, + 0.002319508697837591, + 0.009122784249484539, + -0.0023305979557335377, + -0.029793210327625275, + -0.0009254931937903166, + 0.01694442704319954, + -0.014497390948235989, + -0.03258771076798439, + -0.002844401402398944, + 0.010786176659166813, + -0.008080392144620419, + -0.0005516918608918786, + 0.01808292604982853, + 0.012900534085929394, + 0.00014057978114578873, + -0.008634855970740318, + -0.017240140587091446, + -0.00026175330276601017, + 0.010948820039629936, + -0.019635425880551338, + -0.015495426021516323, + 0.037762708961963654, + 0.0026355532463639975, + 0.00018158703460358083, + 0.016619140282273293, + -0.01436431985348463, + -0.0008852945175021887, + 0.006468749139457941, + -0.016042497009038925, + 0.010741819627583027, + -0.005733159836381674, + -0.012434784322977066, + 0.01443085540086031, + 0.01063831988722086, + 0.004631624557077885, + -0.011251927353441715, + 0.0013750712387263775, + -0.008102570660412312, + 0.018881354480981827, + -0.018600426614284515, + 0.0004181584226898849, + -0.012567855417728424, + 0.0009430511854588985, + -0.014379105530679226, + 0.0150148905813694, + -0.011200177483260632, + 0.00810996349900961, + -0.017151426523923874, + -0.01650085486471653, + 0.0033914728555828333, + -0.008191284723579884, + -0.004091945942491293, + -0.019428426399827003, + 0.011192784644663334, + -0.021187925711274147, + -0.012767462991178036, + 0.005060410127043724, + 0.021099211648106575, + -0.02503221109509468, + -0.013159284368157387, + -0.016988784074783325, + -0.0036853388883173466, + 0.004938427824527025, + -0.0079029630869627, + -0.003167838789522648, + 0.02247428335249424, + 0.027590138837695122, + -0.008620070293545723, + -0.012856177054345608, + -0.016190355643630028, + -0.002975624520331621, + 0.012309105135500431, + -0.011983820237219334, + -0.006786642130464315, + -0.002010856755077839, + -0.009817712940275669, + -0.022089853882789612, + -0.010313034057617188, + -0.02958621084690094, + -0.005263713654130697, + -0.010505248792469501, + 0.007211731281131506, + 0.010423927567899227, + 0.012368248775601387, + -0.0037648119032382965, + -0.012885748408734798, + -0.00951460562646389, + 0.008405677042901516, + 0.019384069368243217, + 0.04894070699810982, + 0.013174070045351982, + 0.012604819610714912, + -0.004269374534487724, + -0.00022455801081378013, + -0.03498299419879913, + 0.003365597687661648, + 0.0077772848308086395, + -0.014282997697591782, + -0.019517140462994576, + 0.0010553302709013224, + 0.022385569289326668, + 0.022991782054305077, + 0.014489998109638691, + -0.01599813997745514, + 0.018127283081412315, + -0.0019517140462994576, + -0.021424496546387672, + -0.007463088259100914, + 0.008745748549699783, + -0.0014323658542707562, + 0.005378302652388811, + -0.00401432067155838, + -0.009795534424483776, + -0.005056713707745075, + 0.008243034593760967, + -0.00498648127540946, + -0.023124853149056435, + 0.0072449990548193455, + -0.000760540075134486, + 0.025372281670570374, + -0.002705785445868969, + -0.02917221002280712, + 0.013506747782230377, + -0.0027445978485047817, + 0.007732927333563566, + -0.006864266935735941, + 0.008324355818331242, + -0.006121284794062376, + 0.0015866917092353106, + -0.025845425203442574, + -0.014852248132228851, + 0.014342141337692738, + 0.006934498902410269, + -0.02436685375869274, + 0.0020552140194922686, + 0.00856832042336464, + 0.024795640259981155, + -0.00522305304184556, + 0.012072534300386906, + 0.0033378745429217815, + 0.006324588321149349, + -0.016707854345440865, + -0.0002913247444666922, + 0.0060658385045826435, + 0.009100605733692646, + 0.00951460562646389, + -0.01564328372478485, + -0.004668588750064373, + 0.010608748532831669, + 0.009832498617470264, + -0.006121284794062376, + 0.003847981570288539, + 0.024263354018330574, + -0.004757302813231945, + -0.0018352764891460538, + 0.0033914728555828333, + 0.01852649822831154, + -0.0033933210652321577, + -0.0075185345485806465, + 0.015436283312737942, + 0.009189319796860218, + -0.011983820237219334, + -0.009862069971859455, + -0.023213569074869156, + -0.009906427003443241, + -0.014630462042987347, + -0.0077551063150167465, + -0.007152588106691837, + 0.008339141495525837, + -0.01155503373593092, + -0.008450035005807877, + 0.00826521310955286, + -0.011170605197548866, + 0.011081891134381294, + -0.00029016961343586445, + -0.006583338603377342, + -0.018984854221343994, + 0.011954247951507568, + 0.00042185484198853374, + -0.006627695634961128, + -0.010505248792469501, + -0.011739855632185936, + 0.006823606323450804, + 0.002960838843137026, + -0.020108569413423538, + -0.001984981819987297, + -0.009758570231497288, + 0.011954247951507568, + 0.01275267731398344, + 0.0045835706405341625, + 0.02038949728012085, + -0.009913819842040539, + -0.02674735337495804, + -0.02019728347659111, + -0.035603996366262436, + 0.004280463792383671, + -0.010157784447073936, + -0.004188052844256163, + 0.014867033809423447, + -0.024854782968759537, + 0.01792028360068798, + -0.019132710993289948, + 0.014305176213383675, + 0.03164142370223999, + -0.0059697311371564865, + 0.003605865640565753, + 0.0053487312979996204, + 0.011606784537434578, + 0.0029497495852410793, + -0.023878924548625946, + 0.017284497618675232, + 0.02961578220129013, + 0.0033471155911684036, + -0.0056740171276032925, + 0.004775784909725189, + 0.0022566693369299173, + 0.01722535490989685, + 0.02108442597091198, + -0.012590033933520317, + 0.007086052559316158, + -0.01330714114010334, + 0.00020445867266971618, + -0.003944088704884052, + 0.0005332097643986344, + -0.01747671142220497, + -0.009189319796860218, + -0.014881819486618042, + 0.018984854221343994, + -0.011813784018158913, + -0.00477208849042654, + 0.039182137697935104, + 0.025342710316181183, + 0.0062950169667601585, + 0.0073337131179869175, + 0.01792028360068798, + -0.011732462793588638, + -5.4782220104243606e-5, + 0.014660033397376537, + 0.02553492598235607, + -0.023021353408694267, + -0.006113891955465078, + -0.014475212432444096, + 0.001237379270605743, + -0.008893606252968311, + 0.005093677900731564, + -0.004997570533305407, + 0.002016401616856456, + -0.007792070508003235, + -0.000779022229835391, + -0.0029109371826052666, + -0.0022917853202670813, + 0.004927338566631079, + 0.033208709210157394, + 0.0002823146933224052, + -0.021261854097247124, + -0.017328854650259018, + 0.013935534283518791, + -0.006908623967319727, + -0.011636355891823769, + -0.004476374480873346, + 0.015451068989932537, + -0.010431320406496525, + 0.005234142299741507, + 0.008243034593760967, + 0.015569355338811874, + -0.0038590708281844854, + 0.0035079102963209152, + -0.019931139424443245, + -0.0023287497460842133, + -0.005526159889996052, + 0.010556998662650585, + 0.011710284277796745, + -0.0010072767036035657, + -0.04074942320585251, + 0.034628137946128845, + 0.0007817945443093777, + 0.0013621337711811066, + 0.00571467773988843, + 0.0077033559791743755, + 0.01744714006781578, + 0.01097099855542183, + -0.02433728240430355, + -0.0011819328647106886, + -0.01273789070546627, + 0.03717128187417984, + -0.0012078079162165523, + 0.005101070739328861, + -0.02003464102745056, + 0.00872357003390789, + 0.013824640773236752, + 0.007976891472935677, + -0.004809053149074316, + 0.0031438120640814304 + ], + "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6": [ + -0.00029449243447743356, + -0.016746481880545616, + -0.002458287635818124, + 0.020098866894841194, + -0.008041092194616795, + -0.03238065168261528, + 0.026278380304574966, + 0.026741843670606613, + -0.015641894191503525, + 0.02304958552122116, + 0.024501770734786987, + 0.001607639016583562, + -0.0005976748070679605, + -0.011779697611927986, + 0.019789891317486763, + 0.043256595730781555, + -0.006828362122178078, + 0.020376944914460182, + -0.008998916484415531, + -0.01361037790775299, + 0.06605900079011917, + -0.015132083557546139, + -0.050980985164642334, + 0.047211483120918274, + -0.00997991394251585, + -0.004198207054287195, + -0.016839174553751945, + 0.021072139963507652, + -0.03398732468485832, + -0.009539623744785786, + 0.02332766354084015, + 0.01748802326619625, + -0.02831762097775936, + 0.006635252386331558, + 0.014120188541710377, + -0.009655489586293697, + 0.011192644014954567, + -0.018631232902407646, + -0.057747554033994675, + -0.0029738908633589745, + -0.017426228150725365, + 0.035099636763334274, + -0.009446931071579456, + -0.010451101697981358, + -0.03825118765234947, + 0.01483855675905943, + -0.026154790073633194, + -0.006476902402937412, + -0.014738139696419239, + -0.021087588742375374, + 0.006098407320678234, + 0.01648385263979435, + 0.013965700753033161, + 0.01768885739147663, + 0.05802563205361366, + -0.03364745154976845, + 0.0197435449808836, + 0.018723925575613976, + -0.0037115702871233225, + -0.049405209720134735, + 0.008805806748569012, + -0.0022053138818591833, + 0.004113238770514727, + 0.008010194636881351, + 0.019635403528809547, + -0.022199902683496475, + -0.01778155006468296, + 0.005074925255030394, + -0.017518920823931694, + 0.0014222536701709032, + -0.002402285812422633, + 0.009616867639124393, + -0.04786033183336258, + 0.017627062276005745, + 0.01360265351831913, + -0.02016066201031208, + 0.024254590272903442, + 0.04541942477226257, + 0.030434103682637215, + -0.029924293980002403, + -0.007214582059532404, + -0.017148150131106377, + -0.0034006633795797825, + -0.007488797884434462, + 0.0910242348909378, + 0.018708476796746254, + 0.027560628950595856, + -0.04418352246284485, + 0.01589679904282093, + -0.022601570934057236, + -0.028657494112849236, + 0.030449552461504936, + -0.010134401731193066, + -0.008357792161405087, + -0.04449249804019928, + 0.022169005125761032, + 0.016530198976397514, + -0.0163757111877203, + -0.0030858945101499557, + -0.0026822949294000864, + 0.0018451641080901027, + -0.001125830109231174, + 0.005631081759929657, + 0.004754363093525171, + 0.02660280466079712, + 0.0069056060165166855, + -0.0025644979905337095, + -0.012876560911536217, + -0.001046655117534101, + 0.06976670771837234, + -0.021473808214068413, + -0.032040778547525406, + 0.036490026861429214, + -0.007836395874619484, + -0.07767648249864578, + -0.03831298276782036, + -0.023961063474416733, + -0.02868839167058468, + 0.0031901737675070763, + -0.02493433654308319, + 0.045141346752643585, + 0.022014517337083817, + 0.00818785559386015, + -0.0013739762362092733, + -0.013571755960583687, + 0.0002824230759870261, + 0.005302794743329287, + 0.01578865759074688, + 0.002630155300721526, + 0.03488335385918617, + -0.005268034990876913, + -0.03040320612490177, + 0.013293677940964699, + -0.014815383590757847, + 0.025984853506088257, + 0.024455424398183823, + -0.01201915368437767, + 0.02779236249625683, + -0.003209484741091728, + 0.04446160048246384, + -0.04755135625600815, + -0.03150007128715515, + -0.028951020911335945, + -0.009709560312330723, + 0.020902203395962715, + 0.012490341439843178, + -0.03445078805088997, + 0.03131468594074249, + -0.04232966527342796, + 0.011354856193065643, + -0.08818165957927704, + -0.01371079497039318, + -0.00176985131110996, + 0.007218444254249334, + 0.01975899375975132, + -0.027344346046447754, + -0.005970954895019531, + 0.028085889294743538, + 0.018430398777127266, + 0.052989326417446136, + 0.01361037790775299, + -0.046717122197151184, + -0.018044179305434227, + 0.01855398900806904, + 0.049219824373722076, + 0.026989024132490158, + 0.03682989999651909, + 0.029136406257748604, + -0.03457437828183174, + 0.010304338298738003, + -0.00039442675188183784, + -0.020237905904650688, + 0.039579782634973526, + 0.007264790590852499, + 0.0034933562856167555, + 0.006272206082940102, + 0.02541324868798256, + 0.034697968512773514, + 0.04492506384849548, + -0.003727019065991044, + -0.03167000785470009, + -0.01827591098845005, + 0.010250267572700977, + 0.007187546696513891, + -0.009833150543272495, + 0.026062097400426865, + 0.0072802393697202206, + 0.017534369602799416, + -0.007399967405945063, + -0.029136406257748604, + 0.02076316438615322, + -0.0051328581757843494, + -0.01906379871070385, + 0.02729799970984459, + -0.011053605005145073, + -0.04736597090959549, + -0.009076160378754139, + 0.0029468555003404617, + 0.007855706848204136, + 0.030140576884150505, + 0.00463849725201726, + -0.05391625314950943, + -0.031530968844890594, + 0.04093927517533302, + -0.03642823174595833, + 0.012443995103240013, + -0.01221226342022419, + 0.013479063287377357, + 0.02491888776421547, + -0.03503784164786339, + 0.018693028017878532, + -0.041340943425893784, + -0.014143361710011959, + -0.004271588753908873, + -0.0345434807240963, + -0.0032809353433549404, + -0.011393478140234947, + 0.05206239968538284, + -0.0014560478739440441, + -0.05437971651554108, + -0.006430556066334248, + 0.011285336688160896, + -0.020330598577857018, + -0.026494663208723068, + -0.07421595603227615, + 0.0033234194852411747, + -0.014560478739440441, + 0.03423450514674187, + -0.0226479172706604, + 0.0058048805221915245, + 0.009531899355351925, + -0.02481074631214142, + 0.016761930659413338, + -0.005314381327480078, + -0.020376944914460182, + 0.05533754080533981, + 0.047026097774505615, + 0.000463463511550799, + -0.00348756299354136, + -0.017318086698651314, + 0.008805806748569012, + 0.017132701352238655, + -0.013448165729641914, + -0.015386988408863544, + 0.021520154550671577, + -0.0008752701687626541, + -0.013239607214927673, + 0.06741849333047867, + -0.003997372929006815, + -0.014591376297175884, + -0.042854923754930496, + 0.029059162363409996, + 0.012598482891917229, + -0.015610995702445507, + -0.0028734738007187843, + 0.03593387082219124, + 0.022802405059337616, + -0.0365518219769001, + 0.010250267572700977, + 0.01994437910616398, + 0.019326427951455116, + 0.03188629075884819, + 0.018615784123539925, + 0.02144291065633297, + 0.021288422867655754, + -0.03506873920559883, + 0.022385288029909134, + -0.017426228150725365, + 0.026355624198913574, + 0.05252586305141449, + 0.001753436983563006, + -0.004565115552395582, + -0.014004322700202465, + 0.012722073122859001, + 0.019388223066926003, + -0.02144291065633297, + -0.008659043349325657, + -0.01966630108654499, + 0.01543333474546671, + 0.014923525042831898, + -0.03119109384715557, + -0.011965082958340645, + 0.0035918422508984804, + 0.006233584135770798, + 0.03216436877846718, + -0.006476902402937412, + -0.04001234844326973, + 0.012629380449652672, + -0.022323492914438248, + 0.0019272357458248734, + -0.010852770879864693, + -0.00021230007405392826, + 0.031144747510552406, + 0.005071063060313463, + 0.032535139471292496, + 0.009601418860256672, + -0.02363663911819458, + 0.001535222865641117, + -0.012328129261732101, + 0.02206086367368698, + 0.0007637492381036282, + -0.007979297079145908, + 0.01756526716053486, + -0.013085119426250458, + 0.021473808214068413, + -0.03760233893990517, + 0.006913330405950546, + 0.01371079497039318, + -0.02235439047217369, + 0.04229876771569252, + 0.027236204594373703, + -0.04477057605981827, + -0.035192329436540604, + -0.00685153529047966, + 0.011887839064002037, + 0.0165919940918684, + -0.015363815240561962, + -0.007539006415754557, + -0.027066268026828766, + -0.014761312864720821, + 0.006569595076143742, + -0.025845814496278763, + -0.06136256828904152, + 0.02176733687520027, + 0.052865736186504364, + -0.04804571717977524, + 0.04019773378968239, + 0.0117179024964571, + -0.049714185297489166, + -0.030310513451695442, + -0.062413085252046585, + -0.02899736724793911, + -0.046717122197151184, + -0.019032901152968407, + -0.04322569817304611, + -0.037571441382169724, + -0.029321791604161263, + -0.025150619447231293, + 0.012436270713806152, + -0.01113084889948368, + -0.009060711599886417, + -0.03435809537768364, + 0.03234975412487984, + -0.03636643663048744, + 0.0008028539596125484, + -0.01142437569797039, + 0.04161902144551277, + 0.0268036387860775, + -0.02998608909547329, + 0.022678814828395844, + 0.0010505173122510314, + -0.003317626193165779, + 0.009014365263283253, + -0.006507799960672855, + 0.048601873219013214, + -0.005117409396916628, + -0.03732426092028618, + 0.00434110825881362, + 0.004993819165974855, + -0.01617487706243992, + 0.012250885367393494, + -0.016715584322810173, + -0.022400736808776855, + 0.0004405317304190248, + -0.03803490474820137, + 0.010265716351568699, + 0.0009621695498935878, + -0.014568203128874302, + 0.008133784867823124, + 0.04322569817304611, + -0.03463617339730263, + -0.016653789207339287, + 0.008156958036124706, + -0.03704618290066719, + 0.007658734451979399, + -0.013061946257948875, + 0.039765167981386185, + -0.0026031199377030134, + -0.030727630481123924, + 0.015912247821688652, + -0.001738953753374517, + 0.007840258069336414, + 0.02731344848871231, + -0.006140891462564468, + 0.013772590085864067, + 0.021597400307655334, + 0.0032828664407134056, + -0.035099636763334274, + -0.02919820137321949, + -0.014398266561329365, + -0.012050051242113113, + -0.015209327451884747, + -0.03176270052790642, + 0.025258760899305344, + -0.0327514223754406, + -0.00444538751617074, + -0.010288889519870281, + -0.015943145379424095, + -0.003149620722979307, + -0.008612697012722492, + -0.020994896069169044, + -0.00839641410857439, + 0.009501001797616482, + 0.014004322700202465, + 0.03078942559659481, + -0.020485086366534233, + 0.005897573195397854, + 0.00174378149677068, + 0.03210257366299629, + 0.0018461296567693353, + 0.020191559568047523, + 0.0030936188995838165, + 0.008543177507817745, + 0.011014983057975769, + 0.05552292987704277, + 0.002852231729775667, + -0.002900509163737297, + 0.03605746105313301, + -0.040568504482507706, + -0.0006734704365953803, + 0.017936037853360176, + 0.01877027191221714, + 0.021983619779348373, + 0.024702604860067368, + -0.0019677889067679644, + 0.03794221207499504, + 0.012521238997578621, + 0.024779848754405975, + -0.014707242138683796, + -0.011501619592308998, + -0.00595550611615181, + 0.01600494049489498, + 0.00707940524443984, + 0.004530355799943209, + -0.04541942477226257, + -0.009446931071579456, + -0.004433800932019949, + -0.025088824331760406, + -0.01798238418996334, + 0.01807507686316967, + -0.015819555148482323, + 0.011980531737208366, + -0.02156650274991989, + -0.04131004586815834, + -0.009531899355351925, + -0.034821558743715286, + -0.01201142929494381, + 0.028750186786055565, + -0.010690557770431042, + -0.025691326707601547, + -0.018986554816365242, + 0.005770120769739151, + -0.04211338236927986, + 0.007581490557640791, + -0.003974199760705233, + 0.0025142894592136145, + -0.0030047884210944176, + -0.016514750197529793, + 0.01778155006468296, + -0.06469950824975967, + -0.010489723645150661, + -0.011493895202875137, + 0.03207167610526085, + -0.004928161855787039, + 0.042051587253808975, + -0.03772592917084694, + -0.0037830208893865347, + -0.008852153085172176, + 0.00717209791764617, + -0.02284875139594078, + 0.0028445073403418064, + -0.025444146245718002, + -0.02145835943520069, + 0.017920589074492455, + -0.005592459812760353, + -0.004762087482959032, + -0.033029500395059586, + -0.01141665130853653, + 0.034821558743715286, + -0.022601570934057236, + -0.014305573888123035, + -0.016344813629984856, + 0.0155337518081069, + 0.0002590085205156356, + -0.011084502562880516, + 0.0006401589489541948, + -0.0076664588414132595, + -0.037787724286317825, + -0.003358179237693548, + -0.017657959833741188, + 0.018523091450333595, + 0.01415108609944582, + 0.026541009545326233, + -0.00839641410857439, + -0.016947316005825996, + -0.04220607504248619, + 0.0009443068993277848, + -0.025892160832881927, + -0.023497600108385086, + 0.0014782554935663939, + 0.014908076263964176, + -0.022477980703115463, + -0.02820947952568531, + 0.009493277408182621, + 0.002821334172040224, + 0.026772741228342056, + 0.0042600021697580814, + 0.006789740175008774, + -0.014019771479070187, + -0.019141042605042458, + -0.044955961406230927, + 0.021412013098597527, + -0.03961068019270897, + 0.023590292781591415, + 0.0013739762362092733, + 0.014699517749249935, + -0.01340954378247261, + -0.01728718914091587, + 0.05345278978347778, + -0.020979447290301323, + -0.012861112132668495, + -0.008218753151595592, + -0.009423757903277874, + -0.007940675131976604, + -0.006249032914638519, + -0.0015410161577165127, + -0.012930631637573242, + -0.024949785321950912, + 0.01748802326619625, + -0.004507182631641626, + -0.0032693487592041492, + 0.023173175752162933, + -0.014012047089636326, + -0.00546114519238472, + 0.029816152527928352, + -0.036211948841810226, + -0.01708635501563549, + 0.01778155006468296, + -0.0077552893199026585, + 0.005700601264834404, + -0.05051752179861069, + 0.006828362122178078, + 0.009562796913087368, + -0.0024254589807242155, + -0.010945463553071022, + 0.046315453946590424, + -0.03574848547577858, + 0.009269270114600658, + -0.01748802326619625, + 0.03661361709237099, + -0.03435809537768364, + 0.03537771478295326, + -0.015618720091879368, + -0.009925843216478825, + 0.00434883264824748, + -0.0412791483104229, + 0.029939742758870125, + -0.022694263607263565, + -0.020423291251063347, + -0.045234039425849915, + -0.01776610128581524, + 0.010953187942504883, + 0.007612388115376234, + 0.004986094776540995, + -0.020021623000502586, + 0.018832067027688026, + -0.02739069238305092, + 0.006052060984075069, + -0.01619032584130764, + 0.015518303029239178, + 0.020114315673708916, + 0.01858488656580448, + 0.0437200590968132, + 0.0002718020405154675, + 0.0008578902343288064, + 0.03506873920559883, + -0.007342034485191107, + 0.00494361063465476, + -0.020732266828417778, + -0.025598634034395218, + 0.027066268026828766, + -0.0147458640858531, + 0.004433800932019949, + -0.0011171401711180806, + -0.018291359767317772, + 0.01578093320131302, + -0.013648999854922295, + -0.006214273162186146, + 0.006098407320678234, + 0.02493433654308319, + 0.011339407414197922, + 0.021010344848036766, + -0.02859569899737835, + 0.027236204594373703, + -0.011509343981742859, + 0.0049358862452209, + 0.017627062276005745, + 0.03596476837992668, + 0.0016298466362059116, + 0.005816467106342316, + -0.008767184801399708, + 0.04072299227118492, + -0.00034301128471270204, + -0.00747334910556674, + -0.00828827265650034, + 0.011169470846652985, + 0.0047466387040913105, + 0.012374475598335266, + 0.007635561283677816, + 0.024254590272903442, + -0.006249032914638519, + -0.01748802326619625, + 0.026170238852500916, + -0.009748182259500027, + 0.03250424191355705, + 0.0005706394440494478, + 0.0016945383977144957, + 0.0191719401627779, + 0.0009843772277235985, + 0.007689632009714842, + 0.01639115996658802, + -0.037571441382169724, + 0.031824495643377304, + 0.009137955494225025, + 0.03741695359349251, + 0.03596476837992668, + -0.016947316005825996, + 0.012189090251922607, + -0.011972807347774506, + -0.013340024277567863, + -0.005260310601443052, + -0.02045418880879879, + 0.004623048473149538, + 0.00013215951912570745, + 0.009949016384780407, + 0.0001868337276391685, + 0.0030240993946790695, + 0.025150619447231293, + -0.026247482746839523, + -0.02630927786231041, + -0.020330598577857018, + 0.012026878073811531, + 0.02502702921628952, + 0.06562643498182297, + -0.017009111121296883, + 0.04059940204024315, + -0.013780314475297928, + 0.010505172424018383, + 0.05061021447181702, + 0.02769966796040535, + 0.0017572991782799363, + 0.011849217116832733, + -0.002114552306011319, + 0.02442452684044838, + 0.020392393693327904, + -0.005020854528993368, + 0.0026204998139292, + 0.007098716218024492, + -0.02921365015208721, + 0.0052409996278584, + 0.05116637051105499, + -0.025737673044204712, + 0.005101960618048906, + 0.001096863648854196, + 0.013394095003604889, + -0.021968171000480652, + 0.022169005125761032, + 0.00848910678178072, + 0.016452955082058907, + 0.026046648621559143, + -0.009114782325923443, + -0.012884285300970078, + 0.028966469690203667, + 0.003676810534670949, + -0.006789740175008774, + 0.010404755361378193, + -0.008272823877632618, + -0.009361962787806988, + -0.008581799454987049, + 0.020021623000502586, + -0.011393478140234947, + -0.03710797801613808, + -0.013625826686620712, + 0.008249650709331036, + -0.02980070374906063, + -0.001748609240166843, + -0.009392860345542431, + -0.003167000599205494, + -0.016916418448090553, + -0.010342960245907307, + -0.03038775734603405, + 0.0015902591403573751, + -0.01688552089035511, + 0.03136103227734566, + -0.004592150915414095, + 0.004862504545599222, + 0.00024838748504407704, + -0.026479214429855347, + 0.034914251416921616, + -0.02045418880879879, + -0.050579316914081573, + -0.019002003595232964, + 0.013981149531900883, + -0.02453266829252243, + 0.007531282026320696, + 0.002429321175441146, + -0.02334311231970787, + -0.014390542171895504, + 0.0033890767954289913, + -0.006762704811990261, + -0.002162829739972949, + 0.04078478738665581, + -0.030557693913578987, + 0.03228795900940895, + 0.015865901485085487, + 0.035810280591249466, + -0.008651318959891796, + 0.00968638714402914, + 0.0016221222467720509, + 0.03358565643429756, + -0.01261393167078495, + 0.020207008346915245, + -0.0035821867641061544, + -0.023095931857824326, + -0.0349760465323925, + 0.02411555126309395, + 0.021211178973317146, + -0.005372314248234034, + 0.0016124667599797249, + 0.0001547292195027694, + 0.0435037761926651, + -0.0024833919014781713, + 0.02213810756802559, + 0.0018654406303539872, + 0.005395487882196903, + -0.011594312265515327, + 0.008767184801399708, + -0.0021261388901621103, + 0.01639115996658802, + -0.030928464606404305, + 0.00938513595610857, + 0.005449558608233929, + 0.03914721682667732, + -0.004433800932019949, + -0.012791592627763748, + -0.02206086367368698, + 0.02193727344274521, + -0.00034445960773155093, + -0.03194808587431908, + -0.031546417623758316, + 0.04217517748475075, + -0.01370307058095932, + 0.026571907103061676, + 0.008906223811209202, + -0.03880734369158745, + 0.037200670689344406, + 0.031052054837346077, + -0.002462149830535054, + -0.024300936609506607, + 0.006372623145580292, + -0.009593694470822811, + 0.016236672177910805, + 0.002840645145624876, + -0.02640197053551674, + -0.0001628156896913424, + 0.005310519132763147, + 0.024223692715168, + 0.02325041964650154, + 0.03247334435582161, + 0.006839948706328869, + 0.03324578329920769, + 0.008566350676119328, + 0.019511813297867775, + 0.00968638714402914, + -0.022122658789157867, + -0.0072300308384001255, + -0.0033234194852411747, + -0.023095931857824326, + -0.011532517150044441, + -0.016159428283572197, + -0.05104278028011322, + -0.04918892681598663, + 0.02244708314538002, + -0.001698400592431426, + 0.01242082193493843, + -0.01957360841333866, + 0.0215356033295393, + -0.0061022695153951645, + -0.017024559900164604, + -0.016360262408852577, + 0.01361037790775299, + -0.009137955494225025, + 0.010227094404399395, + 0.03057314269244671, + 0.006488488987088203, + -0.003804262960329652, + 0.0014772899448871613, + 0.005538389086723328, + -0.009555072523653507, + -0.006098407320678234, + 0.01756526716053486, + -0.021303871646523476, + 0.03185539320111275, + 0.029445381835103035, + 0.016931867226958275, + -0.011408926919102669, + -0.024161897599697113, + 0.0022053138818591833, + -0.047335073351860046, + 0.02901281602680683, + -0.014784486033022404, + -0.014993044547736645, + -0.020732266828417778, + 0.02739069238305092, + -0.008774909190833569, + -0.004283175338059664, + -0.002253591315820813, + 0.02541324868798256, + 0.03723156824707985, + 0.010868219658732414, + -0.0004948438727296889, + 0.007017610128968954, + 0.012876560911536217, + -0.000941410253290087, + -0.01719449646770954, + -0.029847050085663795, + 0.03506873920559883, + 0.019635403528809547, + 0.0216437466442585, + 0.003931715618818998, + -0.008427311666309834, + 0.01465317141264677, + -0.009230648167431355, + 0.03627374395728111, + 0.004688705783337355, + 0.04087748005986214, + -0.02689633145928383, + -0.024208243936300278, + -0.03602656349539757, + 0.027653321623802185, + -0.0215356033295393, + -0.03516143187880516, + 0.017611613497138023, + -0.0226479172706604, + -0.005128995981067419, + -0.007639423478394747, + -0.004287037532776594, + 0.018507642671465874, + 0.024501770734786987, + 0.03537771478295326, + 0.03664451465010643, + -0.012961529195308685, + 0.010188472457230091, + -0.002301868749782443, + -0.026834536343812943, + 0.00645372923463583, + -0.0017910933820530772, + 0.007067818660289049, + 0.005221688654273748, + 0.003981924150139093, + 0.01620577462017536, + 0.0013401819160208106, + -0.025274209678173065, + 0.0009602384525351226, + -0.02709716558456421, + 0.005156031344085932, + 0.0014811521396040916, + 0.007863431237637997, + -0.0003835643292404711, + -0.001774679054506123, + -0.002438976662233472, + 0.0054186610504984856, + -0.0026262931060045958, + 0.009060711599886417, + 0.0006329173338599503, + -0.001734126009978354, + 0.02116483263671398, + -0.011880114674568176, + -0.029120957478880882, + 0.0037521233316510916, + -0.029136406257748604, + -0.010126677341759205, + -0.014660895802080631, + -0.0033987322822213173, + 0.0017949555767700076, + 0.006334001198410988, + -0.0015863969456404448, + -0.01270662434399128, + -0.005650392733514309, + 0.0032712798565626144, + 0.015742311254143715, + -0.009925843216478825, + 0.001504325307905674, + 0.0022960754577070475, + 0.0034083877690136433, + -0.024007409811019897, + -0.006894019432365894, + -0.014359644614160061, + 0.017457125708460808, + 0.0060134390369057655, + -0.005476593971252441, + -0.016267569735646248, + -0.043349288403987885, + -0.013154638931155205, + 0.03346206620335579, + -0.03849836811423302, + 0.02213810756802559, + 0.010319787077605724, + 0.0027479524724185467, + 0.018723925575613976, + 0.004117100965231657, + 0.005851226858794689, + -0.008651318959891796, + -0.03825118765234947, + 0.04925072193145752, + 0.008180131204426289, + 0.024594463407993317, + -0.005476593971252441, + 0.007361345458775759, + -0.010914565995335579, + 0.02076316438615322, + -0.0007637492381036282, + 0.004402903374284506, + 0.008226477541029453, + -0.003576393472030759, + 0.0025818778667598963, + 0.0003133206337224692, + -0.008744011633098125, + 0.007824809290468693, + 0.02620113641023636, + 0.017997832968831062, + -0.00838868971914053, + 0.01728718914091587, + 0.003954888787120581, + 0.014993044547736645, + -0.0026938817463815212, + -0.028935572132468224, + -0.03185539320111275, + -0.03374014422297478, + -0.001549706095829606, + -0.011462997645139694, + -0.02681908756494522, + 0.004055305849760771, + -0.014143361710011959, + 0.01260620728135109, + 0.012351302430033684, + 0.002722848206758499, + 0.022678814828395844, + -0.02124207653105259, + -0.024872541427612305, + 0.01017302367836237, + 0.011648382991552353, + 0.020994896069169044, + -0.018414949998259544, + 0.016252120956778526, + 0.021875478327274323, + -0.006040474399924278, + -0.012899734079837799, + -0.008975743316113949, + 0.006009576842188835, + 0.02295689284801483, + 0.0046578082256019115, + 0.0029120957478880882, + -0.012003704905509949, + -0.016962764784693718, + 0.017209945246577263, + -0.02176733687520027, + 0.002630155300721526, + -0.015278846956789494, + -0.004395178984850645, + -0.0013256986858323216, + 0.006183375604450703, + -0.010427928529679775, + 0.025753121823072433, + -0.015711413696408272, + -0.011849217116832733, + 0.008898499421775341, + -0.01221998780965805, + -0.020531432703137398, + 0.0006493316614069045, + 0.03636643663048744, + -0.03763323649764061, + -0.028178581967949867, + -0.018986554816365242, + -0.03089756704866886, + 0.005013130139559507, + -0.00046225657570175827, + -0.006681598722934723, + -0.037880416959524155, + 0.0028445073403418064, + -0.006612079218029976, + -0.02530510723590851, + -0.001849026302807033, + 0.014498683623969555, + 0.005256448406726122, + 0.013540858402848244, + -0.00898346770554781, + -0.025475043803453445, + 0.0030627213418483734, + -0.03097481094300747, + -0.007129613775759935, + -0.010420204140245914, + -0.013293677940964699, + 0.05614088103175163, + 0.0033137639984488487, + 0.03763323649764061, + -0.009655489586293697, + -0.030634937807917595, + -0.001233971561305225, + 0.0035609446931630373, + -0.03890003636479378, + -0.03000153787434101, + -0.012722073122859001, + -0.014228329993784428, + 0.010875944048166275, + 0.017627062276005745, + -0.02782326005399227, + -0.010033984668552876, + 0.00031549311825074255, + 0.02133476920425892, + -0.006395796313881874, + -0.023296765983104706, + 0.019002003595232964, + -0.003039548173546791, + -0.010134401731193066, + 0.00707554304972291, + -0.002083654748275876, + -0.0007603698177263141, + -0.0010389307281002402, + -0.0026011888403445482, + 0.006345587782561779, + -0.01670013554394245, + -0.01543333474546671, + -0.03197898343205452, + 0.012003704905509949, + -0.014714966528117657, + -0.002330835210159421, + -0.07347441464662552, + -0.029522625729441643, + 0.00929244328290224, + 0.02888922579586506, + 0.004418352153152227, + -0.011084502562880516, + 0.004820020403712988, + 0.01946546696126461, + -0.008056540973484516, + 0.02831762097775936, + 0.0063996585085988045, + -0.014421439729630947, + 0.0209639985114336, + 0.03241154924035072, + 0.02442452684044838, + -0.004190482664853334, + -0.0034412164241075516, + 0.012304956093430519, + -0.0033832835033535957, + -0.0009201681823469698, + 0.0021300010848790407, + 0.015757760033011436, + 0.02084040828049183, + -0.011053605005145073, + -0.0024273900780826807, + 0.03593387082219124, + -0.029167303815484047, + 0.0056619793176651, + -0.00038211600622162223, + -0.02652556076645851, + -0.012629380449652672, + 0.02541324868798256, + -0.010721455328166485, + 0.00919202622026205, + 0.012536687776446342, + 0.01211957074701786, + 0.0026610528584569693, + -0.030712181702256203, + 0.028178581967949867, + 0.008334618993103504, + 0.015572373755276203, + 0.00575853418558836, + -0.00998763833194971, + -0.02173643931746483, + -0.018816618248820305, + -0.015394712798297405, + -0.0003603911609388888, + -0.031530968844890594, + 0.003786883084103465, + 0.021504705771803856, + 0.012559860944747925, + -0.0022786955814808607, + 0.013440441340208054, + -0.022477980703115463, + -0.020098866894841194, + -0.004966783802956343, + 0.014506408013403416, + -0.00533755449578166, + 0.02402285858988762, + -0.003974199760705233, + 0.07687314599752426, + 0.011053605005145073, + 0.0058744000270962715, + -0.007206857670098543, + -0.014622273854911327, + 0.030665835365653038, + 0.011679280549287796, + 0.02700447291135788, + 0.030943913385272026, + 0.003186311572790146, + 0.03741695359349251, + -0.007940675131976604, + -0.005248724017292261, + 0.02771511860191822, + 0.008218753151595592, + 0.023095931857824326, + 0.003767572110518813, + 0.008620421402156353, + 0.004804571624845266, + -0.012876560911536217, + -0.020207008346915245, + 0.007867293432354927, + -0.010651935823261738, + 0.0007483004592359066, + 0.004117100965231657, + 0.005086511839181185, + 0.0002614223922137171, + -0.015765484422445297, + 0.00948555301874876, + 0.01657654531300068, + 0.029769806191325188, + 0.010327511467039585, + 0.014676344580948353, + 0.014467786066234112, + -0.005179204512387514, + 0.0571913979947567, + -0.009470104239881039, + -0.003844816004857421, + -0.002004479756578803, + -0.004333383869379759, + 0.004263864364475012, + -0.026139341294765472, + 0.017441676929593086, + -0.02802409417927265, + -0.010590140707790852, + 0.010528345592319965, + -0.0027962299063801765, + -0.005600184202194214, + -0.030418654903769493, + -0.014429164119064808, + -0.0007449210388585925, + 0.002450563246384263, + -0.00625289510935545, + 0.022369839251041412, + -0.028054991737008095, + 0.011632934212684631, + 0.002908233553171158, + -0.013054221868515015, + -0.028765635564923286, + -0.008265099488198757, + -0.006693185307085514, + 0.030743079259991646, + -0.011864665895700455, + -0.02334311231970787, + 8.490796608384699e-5, + 0.0004122894024476409, + -0.006735669448971748, + -0.007581490557640791, + 0.03029506467282772, + 0.026463765650987625, + -0.011887839064002037, + 0.013687621802091599, + -0.020593227818608284, + 0.0055963220074772835, + -0.018615784123539925, + 0.01836860366165638, + 0.02919820137321949, + -0.015595546923577785, + 0.01994437910616398, + -0.026092994958162308, + 0.008025643415749073, + -0.0035223227459937334, + 0.012181365862488747, + 0.0019726166501641273, + -0.0013565963599830866, + 0.007956123910844326, + 0.009493277408182621, + 0.012343578040599823, + 0.0069056060165166855, + -0.001937856781296432, + -0.009130231104791164, + 0.012961529195308685, + -0.0006102269398979843, + 0.017009111121296883, + -0.022725161164999008, + -0.013865283690392971, + -0.02294144406914711, + 0.011370304971933365, + 0.001624053344130516, + -0.0147458640858531, + -0.02116483263671398, + 0.01121581718325615, + 0.012830214574933052, + -0.0011229334631934762, + 0.01568051613867283, + 0.009346514008939266, + -0.009331065230071545, + -0.0027440902777016163, + -0.010736904107034206, + -0.007202995475381613, + -0.004232966806739569, + -0.008504555560648441, + -0.0021106901112943888, + -0.015657342970371246, + -0.023482151329517365, + -0.008635870181024075, + -0.007334310095757246, + -0.0034663209225982428, + 0.00828827265650034, + 0.002004479756578803, + -1.4536038179358002e-5, + 0.022076312452554703, + -0.012165917083621025, + 0.005719912238419056, + -0.0026204998139292, + 0.008056540973484516, + -0.007384518627077341, + -0.003066583536565304, + 0.0058048805221915245, + 0.009253821335732937, + 0.020299701020121574, + 0.043658263981342316, + -0.021412013098597527, + 0.004410627763718367, + 0.0033774902112782, + -0.021520154550671577, + 0.03488335385918617, + 0.04140273854136467, + -0.01826046220958233, + -0.004511044826358557, + -0.0027537457644939423, + -0.021412013098597527, + 0.024177346378564835, + 0.013455890119075775, + -0.013764865696430206, + -0.0012165916850790381, + -0.035593997687101364, + 0.0005561562138609588, + 0.022400736808776855, + 0.0002819403016474098, + -0.0035841178614646196, + 0.006503937765955925, + 0.01875482313334942, + -0.00909160915762186, + -0.002688088221475482, + 0.005383900832384825, + 0.020299701020121574, + -0.011540241539478302, + 0.016313916072249413, + 0.00405144365504384, + 0.04628455638885498, + 0.008604972623288631, + 0.008535453118383884, + -0.030016986653208733, + -0.00504016550257802, + 0.009230648167431355, + 0.0015912246890366077, + -0.05527574568986893, + -0.02530510723590851, + 0.006040474399924278, + 0.012026878073811531, + 0.007307274732738733, + -0.011856941506266594, + -0.010659660212695599, + 0.010358409024775028, + -0.018615784123539925, + 0.031113849952816963, + -0.009663213975727558, + 0.025490492582321167, + -0.00120983284432441, + -0.0033813524059951305, + -0.021489256992936134, + -0.02046963758766651, + 0.004159585107117891, + 0.03170090541243553, + 0.03982696309685707, + -0.023605741560459137, + -0.01649930141866207, + -0.004074616823345423, + 0.008836704306304455, + 0.020994896069169044, + 0.011354856193065643, + -0.018152320757508278, + 0.011501619592308998, + -0.006071371957659721, + 0.011887839064002037, + 0.00987949687987566, + 0.004267726559191942, + 0.0007029196713119745, + -0.006515524350106716, + 0.0057353610172867775, + -0.016823725774884224, + 0.02036149613559246, + -0.02859569899737835, + 0.013540858402848244, + -0.009894945658743382, + 0.004314072895795107, + -0.0023771815467625856, + 0.0347597636282444, + -0.007979297079145908, + 0.0026340174954384565, + -0.007060094270855188, + -0.012984702363610268, + -0.008952570147812366, + 0.011462997645139694, + 0.00576239638030529, + -0.03395642712712288, + -0.028626596555113792, + 0.010010811500251293, + 0.014884903095662594, + -0.00997991394251585, + 0.010288889519870281, + -0.029939742758870125, + 0.025444146245718002, + 0.010659660212695599, + 0.003433492034673691, + 0.02958442084491253, + 0.011478446424007416, + 0.03627374395728111, + -0.014560478739440441, + 0.010142126120626926, + 0.007268652785569429, + 0.020098866894841194, + -0.03899272903800011, + 0.02453266829252243, + -0.01924918405711651, + 0.008705389685928822, + 0.001937856781296432, + 0.010698282159864902, + 0.008311445824801922, + 0.016468403860926628, + -0.006291517056524754, + -0.0367681048810482, + -0.004472422879189253, + 0.004375868011265993, + -0.00021169660612940788, + 0.01172562688589096, + 0.0029352689161896706, + 0.005488180555403233, + -0.010250267572700977, + -0.015757760033011436, + -0.012791592627763748, + -0.00513672037050128, + -0.02740614116191864, + 0.010227094404399395, + -0.004287037532776594, + 0.01748802326619625, + 0.0075969393365085125, + -0.014120188541710377, + -0.025784019380807877, + 0.0034199743531644344, + -0.0189556572586298, + 0.02910550870001316, + -0.006314690224826336, + -0.04004324600100517, + -0.026278380304574966, + 0.0027151238173246384, + 0.01688552089035511, + 0.006693185307085514, + 0.003618877613916993, + -0.008133784867823124, + 0.04869456589221954, + 0.0036999837029725313, + -0.002678432734683156, + 0.012876560911536217, + -0.0037019148003309965, + -0.007481073495000601, + -0.004217518027871847, + -0.01608218438923359, + -0.006693185307085514, + 0.013494512066245079, + 0.016066735610365868, + 0.0033195572905242443, + -0.0007405760698020458, + 0.019820788875222206, + -0.010196196846663952, + 0.0028869914822280407, + 0.0304958987981081, + 0.024996131658554077, + -0.0027537457644939423, + -0.006044336594641209, + 0.024285487830638885, + 0.022308044135570526, + 0.008427311666309834, + 0.014228329993784428, + 0.026092994958162308, + 0.007017610128968954, + 0.0038293672259896994, + -0.028951020911335945, + -0.02502702921628952, + -0.028827430680394173, + -0.0006334001081995666, + -0.004561253357678652, + 0.02739069238305092, + -0.01483855675905943, + 0.012335853651165962, + 0.004912713076919317, + -0.035099636763334274, + 0.0013141121016815305, + -0.029229098930954933, + 0.010744628496468067, + -0.01162520982325077, + -0.043936342000961304, + 0.022617019712924957, + -0.004267726559191942, + 0.0052023776806890965, + 0.0013662518467754126, + 0.028255825862288475, + 0.009052987210452557, + -0.023173175752162933, + 0.0005465007270686328, + 0.0033523859456181526, + -0.026293829083442688, + -0.0012909389333799481, + -0.009369687177240849, + -0.007148924749344587, + -0.005600184202194214, + 0.008751736022531986, + 0.014135637320578098, + 0.01038158219307661, + -0.016051286831498146, + -0.01588135026395321, + -0.0022381425369530916, + 0.020886754617094994, + 0.0022864199709147215, + 0.0017997833201661706, + -0.038189392536878586, + 0.02561408281326294, + -0.03880734369158745, + -0.005573148839175701, + 0.004484009463340044, + 0.011880114674568176, + -0.007129613775759935, + 0.02473350241780281, + -0.022215351462364197, + 0.02780781127512455, + 0.01836860366165638, + 0.019990725442767143, + 0.014027495868504047, + -0.018723925575613976, + -0.0008139577694237232, + 0.02603119984269142, + -0.00586281344294548, + 0.0002732503635343164, + -0.01787424273788929, + 0.0021551053505390882, + 0.005607908591628075, + 0.019480915740132332, + -0.008041092194616795, + 0.0003244244435336441, + -0.02274060994386673, + -0.0028927847743034363, + -0.01405066903680563, + -0.0197435449808836, + -0.007651010062545538, + 0.015410161577165127, + -0.01670013554394245, + -0.0005088443285785615, + 0.002606982132419944, + -0.017333535477519035, + 0.0056658415123820305, + 0.01785879395902157, + -0.0005836743512190878, + 0.009246096946299076, + 0.04937431216239929, + -0.04965239018201828, + -0.003949095495045185, + -0.03951798751950264, + 0.007797773461788893, + -0.01503939088433981, + -0.020778613165020943, + -0.0218600295484066, + -0.018044179305434227, + -0.029151855036616325, + -0.0063301390036940575, + -0.0065386975184082985, + 0.017240842804312706, + -0.016715584322810173, + -0.0006391934002749622, + 0.014066117815673351, + 0.007971572689712048, + -0.0046075996942818165, + 0.025181517004966736, + -0.014769037254154682, + 0.01957360841333866, + 0.001475358847528696, + -0.0027981610037386417, + -0.008241926319897175, + -0.02076316438615322, + 0.03661361709237099, + 0.002014135243371129, + 0.003018306102603674, + -0.033214885741472244, + 0.016514750197529793, + -0.01534064207226038, + 0.026170238852500916, + 0.02414644882082939, + -0.01937277428805828, + -0.0020373084116727114, + -0.0218600295484066, + -0.00878263358026743, + -0.025104273110628128, + 0.006372623145580292, + -0.0004921886138617992, + 0.011455273255705833, + -0.0383438803255558, + -0.02135021798312664, + -0.010149850510060787, + 0.007152786944061518, + -0.012752970680594444, + 0.013780314475297928, + -0.004962921608239412, + -0.013293677940964699, + 0.008720838464796543, + 0.008303721435368061, + -0.025104273110628128, + -0.017426228150725365, + 0.008535453118383884, + -0.011941909790039062, + 0.015518303029239178, + -0.0011943840654566884, + 0.018801169469952583, + -0.024053756147623062, + -0.01191873662173748, + 0.021072139963507652, + -0.015217051841318607, + -0.013679897412657738, + -0.02005252055823803, + -0.006303103640675545, + 0.003107136581093073, + 0.008427311666309834, + -0.025258760899305344, + -0.025042477995157242, + 0.0039433022029697895, + 0.002031515119597316, + -0.023682985454797745, + -0.007875017821788788, + 0.009060711599886417, + 0.011099951341748238, + -0.021072139963507652, + -0.010466550476849079, + 0.008048816584050655, + -0.02235439047217369, + -0.007631699088960886, + -0.011586587876081467, + -0.016020389273762703, + -0.006137029267847538, + -0.004665532615035772, + -0.009771355427801609, + -0.011663831770420074, + -0.02919820137321949, + -0.0004583943809848279, + -0.014212881214916706, + -0.0023733193520456553, + 0.010041709057986736, + 0.01121581718325615, + -0.0023057309444993734, + -0.011184919625520706, + -0.03038775734603405, + 0.0006758843082934618, + 0.017040008679032326, + 0.006623665802180767, + -0.004437663126736879, + 0.004202069249004126, + 0.02570677548646927, + -0.0023540083784610033, + 0.0025239449460059404, + -0.013378646224737167, + -0.018229564651846886, + 0.00616020243614912, + 0.00799474585801363, + -0.0017157804686576128, + -0.01657654531300068, + 0.00799474585801363, + -0.003099412191659212, + 0.0681600347161293, + 0.010945463553071022, + -0.007940675131976604, + -0.00595550611615181, + 0.0002932854986283928, + -0.02292599529027939, + -0.0031612073071300983, + 0.01493897382169962, + 0.01534064207226038, + 0.005144444759935141, + -0.007786186877638102, + -0.014931249432265759, + 0.01395025197416544, + 0.016839174553751945, + -0.021504705771803856, + 0.00839641410857439, + 0.014676344580948353, + 0.033029500395059586, + -0.005978679284453392, + 0.025984853506088257, + 0.00278271222487092, + -0.0010823804186657071, + -0.00047432593419216573, + 0.02967711351811886, + 0.0002696295559871942, + -0.004704154562205076, + 0.006770429201424122, + 0.008651318959891796, + 0.016051286831498146, + 0.030804874375462532, + 0.01424377877265215, + -0.004460836295038462, + -0.01598949171602726, + 0.00575853418558836, + 0.016731033101677895, + -0.0019291668431833386, + 0.0024544254411011934, + -0.0022864199709147215, + -0.0007024368969723582, + 0.024161897599697113, + 0.0013971494045108557, + -0.005264172796159983, + 0.013826660811901093, + 0.010597865097224712, + -0.006940366234630346, + -0.0075274198316037655, + -0.006291517056524754, + -0.006866984069347382, + -0.0013739762362092733, + -0.001858681789599359, + -0.007036921102553606, + -0.015742311254143715, + 0.016947316005825996, + 0.006739531643688679, + 0.00027590562240220606, + -0.004209793638437986, + 0.014514132402837276, + -0.008913948200643063, + -0.01697821356356144, + 0.0051830667071044445, + -0.021427461877465248, + 0.008435036055743694, + -0.01434419583529234, + -0.016329364851117134, + -0.009076160378754139, + -0.00858952384442091, + -0.015672791749238968, + -0.0017428159480914474, + -0.010041709057986736, + -0.0043295216746628284, + -0.007202995475381613, + 0.003433492034673691, + 0.0041518607176840305, + -0.035099636763334274, + -0.0077552893199026585, + 0.006036612205207348, + 0.005750809796154499, + 0.022184453904628754, + 0.004055305849760771, + 0.009462379850447178, + 0.007187546696513891, + 0.005569286644458771, + -0.006758842617273331, + 0.00016112597950268537, + 0.0058241914957761765, + 0.009508726187050343, + 0.020485086366534233, + -0.010551518760621548, + 0.006585043855011463, + -0.016622891649603844, + -0.004217518027871847, + 0.009122506715357304, + -0.011354856193065643, + -0.006592768244445324, + 0.0062606194987893105, + -0.00017464367556385696, + -0.014892627485096455, + -0.010435652919113636, + -0.0015207396354526281, + -0.0024273900780826807, + 0.01082959771156311, + 0.008813531138002872, + -0.004198207054287195, + -0.01067510899156332, + 0.0072107198648154736, + 0.007338172290474176, + 0.004549666773527861, + -0.001022516400553286, + -0.026587355881929398, + -0.004951335024088621, + 0.01102270744740963, + -0.014830832369625568, + -0.006361036561429501, + -0.009562796913087368, + -0.0260157510638237, + 0.022617019712924957, + 0.013378646224737167, + 0.0007603698177263141, + -0.008118336088955402, + -0.024949785321950912, + -0.018229564651846886, + 0.010010811500251293, + -0.004055305849760771, + -0.012173641473054886, + 0.021025793626904488, + 0.010783251374959946, + 0.0025471181143075228, + -0.006345587782561779, + -0.024857092648744583, + -0.006411245092749596, + 0.0026977439410984516, + -0.0039027489256113768, + 0.013772590085864067, + 0.0008921672706492245, + -0.0036150154192000628, + -0.0009211337310262024, + 0.004576702136546373, + -0.007566041778773069, + 0.019527262076735497, + -0.006573457270860672, + 0.007253204006701708, + 0.01867757923901081, + -0.005878262221813202, + 0.027622424066066742, + 0.020006174221634865, + 0.035006944090127945, + -0.0023675260599702597, + -0.0224316343665123, + 0.021272974088788033, + -0.0029236823320388794, + 0.027730567380785942, + -0.029445381835103035, + -0.0031148609705269337, + -0.007836395874619484, + -0.005797156132757664, + 0.008937121368944645, + -0.030341411009430885, + 0.035099636763334274, + -0.01191873662173748, + -0.004117100965231657, + 0.0048354691825807095, + 0.003784951986745, + -0.014707242138683796, + -0.01270662434399128, + 0.007712805178016424, + 0.013455890119075775, + 0.021087588742375374, + 0.01719449646770954, + 0.012876560911536217, + -0.003645912976935506, + -0.01778155006468296, + 0.006577319465577602, + 0.008728562854230404, + -0.042360562831163406, + 0.01291518285870552, + 0.008921672590076923, + 0.002460218733176589, + 0.0035551514010876417, + -0.028472108766436577, + 0.0021763474214822054, + -0.014274676330387592, + -0.01484628114849329, + 0.009956740774214268, + -0.003931715618818998, + 0.017936037853360176, + -0.008079714141786098, + 0.007098716218024492, + 0.006075234152376652, + -0.005870537832379341, + -0.003655568463727832, + -0.013162363320589066, + 0.021226627752184868, + -0.0058048805221915245, + -0.006480764597654343, + -0.027066268026828766, + -0.0027672634460031986, + 0.02532055601477623, + 0.01955815963447094, + -0.0045187692157924175, + 0.0005479490500874817, + 0.012165917083621025, + -0.0013836317230015993, + 0.0028367829509079456, + -0.006704771891236305, + 0.004553528968244791, + -0.020376944914460182, + -0.004777536261826754, + -0.01162520982325077, + 0.000766645884141326, + -0.005302794743329287, + -0.03596476837992668, + -0.04300941154360771, + 0.014892627485096455, + -0.013525409623980522, + -0.004476285073906183, + -0.0006551249534823, + 0.01181059516966343, + 0.016854623332619667, + 0.011331683024764061, + -0.00463849725201726, + -0.0025664290878921747, + 0.006685460917651653, + 0.015819555148482323, + 0.007025334518402815, + -0.023760229349136353, + -0.0003080101159866899, + -0.005634943954646587, + -0.0016327432822436094, + -0.00019998932839371264, + -0.008056540973484516, + 0.03228795900940895, + -0.0020508260931819677, + -0.0028136097826063633, + 0.027962299063801765, + 0.0020373084116727114, + 0.030264167115092278, + 0.013270504772663116, + 0.012073224410414696, + 0.006940366234630346, + 0.005291208159178495, + -0.003447009716182947, + -0.003597635542973876, + -0.013486787676811218, + -0.006739531643688679, + 0.003414181061089039, + -0.005495904944837093, + 0.004105514381080866, + -0.008334618993103504, + -0.011926461011171341, + -3.0701441573910415e-5, + 0.005302794743329287, + -0.0027653323486447334, + -0.006901743821799755, + 0.03543950989842415, + 0.007152786944061518, + -0.005897573195397854, + 0.0036439818795770407, + 0.009137955494225025, + -0.010976361110806465, + -0.002045032801106572, + 0.006303103640675545, + -6.324346031760797e-5, + -0.014498683623969555, + 0.0006131235859356821, + -0.001597983529791236, + 0.020098866894841194, + -0.01628301851451397, + 0.008836704306304455, + 0.012266334146261215, + 0.01588135026395321, + 0.00504016550257802, + 0.003066583536565304, + 0.008234201930463314, + 0.01242082193493843, + -0.002270971192047, + 0.0019195113563910127, + 0.0032790042459964752, + -0.007121889386326075, + 0.006581181660294533, + -0.0034643898252397776, + 0.002541324822232127, + 0.015518303029239178, + 0.009199750609695911, + -0.006859259679913521, + -0.01102270744740963, + -0.028750186786055565, + -0.00655414629727602, + 0.021118486300110817, + -0.010327511467039585, + 0.0036613617558032274, + 0.009176577441394329, + -0.016854623332619667, + 0.004406765569001436, + -0.018940208479762077, + 0.007083267439156771, + 0.014506408013403416, + -0.021612849086523056, + 0.005128995981067419, + 0.023095931857824326, + 0.011872390285134315, + -0.009848599322140217, + -0.004769811872392893, + -0.011462997645139694, + -0.013764865696430206, + 0.0031303097493946552, + 0.006194962188601494, + 0.016622891649603844, + 0.01719449646770954, + -0.018893862143158913, + 0.0036111532244831324, + -0.01037385780364275, + -0.00045622189645655453, + 0.004484009463340044, + -0.005353003274649382, + 0.0001505049440311268, + -0.02453266829252243, + 0.01028116513043642, + 0.011331683024764061, + -0.019805340096354485, + -0.0143519202247262, + -0.011470722034573555, + -0.001396183855831623, + 0.0003644947428256273, + 0.008736287243664265, + -0.0005334658198989928, + 0.015958594158291817, + -0.0007922329241409898, + 0.012861112132668495, + 0.005631081759929657, + -0.03525412455201149, + 0.026293829083442688, + -0.007052369881421328, + -0.009709560312330723, + -0.006913330405950546, + -0.006075234152376652, + 0.023775678128004074, + -0.012590758502483368, + -0.0027054683305323124, + -0.014236054383218288, + 0.014228329993784428, + -0.030171474441885948, + -0.0025471181143075228, + -0.014738139696419239, + -0.004279313143342733, + 0.02661825343966484, + 0.023961063474416733, + -0.0022844888735562563, + 0.002479529706761241, + 0.00997991394251585, + 0.02411555126309395, + 0.018167769536376, + 0.0032944530248641968, + -0.008118336088955402, + 0.002350146183744073, + -0.00327707314863801, + 0.0073188613168895245, + 0.01807507686316967, + -0.0008332687430083752, + -0.008844428695738316, + 0.005642668344080448, + -0.01270662434399128, + 0.02155105397105217, + -0.01866213046014309, + -0.012073224410414696, + 0.008666767738759518, + 0.0049745081923902035, + -0.004568977747112513, + 0.022199902683496475, + -0.003655568463727832, + -0.013255055993795395, + -0.00513672037050128, + -0.01597404293715954, + -0.02383747324347496, + -0.016653789207339287, + -0.01807507686316967, + 0.007098716218024492, + 0.0070716808550059795, + 0.0006971263792365789, + -0.008944845758378506, + -0.01666923798620701, + 0.015456507913768291, + 0.01503939088433981, + -0.0005706394440494478, + -0.011262163519859314, + 0.011277612298727036, + 0.033616553992033005, + -0.001022516400553286, + 0.012729797512292862, + 0.012861112132668495, + -0.017318086698651314, + -0.011903287842869759, + -0.0028754048980772495, + 0.005584735423326492, + 0.008581799454987049, + 0.002095241332426667, + -0.006279930472373962, + -0.02133476920425892, + 0.027653321623802185, + -0.007932950742542744, + -0.014769037254154682, + 0.011532517150044441, + -0.00044608363532461226, + 0.014537305571138859, + 0.02084040828049183, + 0.0021898651029914618, + -0.03383283689618111, + 0.003887300146743655, + -0.0012107983930036426, + 0.015641894191503525, + 0.0006319517851807177, + -0.007403829600661993, + -0.001963926712051034, + -0.02133476920425892, + 0.008620421402156353, + 0.0016858484596014023, + -0.0004591185424942523, + 0.012451719492673874, + 0.0054379720240831375, + 0.013965700753033161, + -0.012042326852679253, + 0.017348984256386757, + -0.005909159779548645, + 0.01805962808430195, + -0.002421596786007285, + -0.003226864617317915, + -0.012227712199091911, + 0.015865901485085487, + -0.0002326973044546321, + -0.008581799454987049, + 0.02165919542312622, + -0.021690092980861664, + -0.024795297533273697, + -0.0036304641980677843, + 0.015271122567355633, + -0.014460061676800251, + -0.00828827265650034, + 0.020933100953698158, + -0.01280704140663147, + 0.020207008346915245, + 0.007253204006701708, + -0.017997832968831062, + -0.009006640873849392, + 0.007693494204431772, + 0.005851226858794689, + 0.008859877474606037, + 0.024903438985347748, + 0.0007975434418767691, + 0.014266951940953732, + 0.0019455811707302928, + -0.02114938385784626, + -0.005098098423331976, + 0.009439206682145596, + 0.008357792161405087, + -0.007585352752357721, + -0.032535139471292496, + -0.002429321175441146, + -0.0032500377856194973, + 0.01379576325416565, + 0.02810133807361126, + -0.026448316872119904, + -0.00405144365504384, + -0.0010678971884772182, + -0.009910394437611103, + 0.009616867639124393, + -0.002002548659220338, + -0.0008926500449888408, + 0.0008043022826313972, + 0.017997832968831062, + 0.013463614508509636, + 0.0014966009184718132, + -0.013687621802091599, + 0.011354856193065643, + 0.004460836295038462, + -0.015649618580937386, + 0.004128687549382448, + 0.016236672177910805, + -0.019511813297867775, + -0.006426693871617317, + 0.006577319465577602, + -0.016329364851117134, + -0.011656107380986214, + 0.010126677341759205, + -0.0038718513678759336, + 0.016545647755265236, + 0.014027495868504047, + -0.021226627752184868, + 0.0008940983680076897, + 0.015750035643577576, + -0.00044704918400384486, + 0.018013281747698784, + 0.003070445731282234, + -0.0021956583950668573, + 0.0029719597660005093, + -0.00016136736667249352, + 0.010327511467039585, + -0.0334002710878849, + 0.0029758219607174397, + 0.027545180171728134, + -0.002369457157328725, + 0.002043101703748107, + -0.0009341686381958425, + -0.01639115996658802, + 0.001140313339419663, + 0.014421439729630947, + 0.013247331604361534, + 0.0021879340056329966, + -0.011432100087404251, + 0.021921824663877487, + 0.018708476796746254, + 0.015155256725847721, + 0.0056851524859666824, + -0.0007763013709336519, + 0.004480147268623114, + 0.008512279950082302, + -0.0076162503100931644, + 0.0147458640858531, + -0.01076780166476965, + 0.00494361063465476, + 0.020716818049550056, + 0.003136103041470051, + -0.0034740453120321035, + -0.026340175420045853, + 0.02085585705935955, + -0.002280626678839326, + 0.010636487044394016, + 0.008465933613479137, + 0.026849985122680664, + 0.011864665895700455, + 0.014969871379435062, + 0.004827744793146849, + -0.01360265351831913, + 0.0004825330979656428, + -0.011455273255705833, + 0.009840874932706356, + 0.007264790590852499, + 0.0068167755380272865, + -0.004858642350882292, + 0.006731807254254818, + 0.04232966527342796, + -0.010064882226288319, + 0.00685539748519659, + 0.005878262221813202, + 0.018445847555994987, + 0.006179513409733772, + -0.0104819992557168, + -0.026092994958162308, + -0.00404758146032691, + -0.023157726973295212, + -0.0029063024558126926, + -0.014869454316794872, + 0.003356248140335083, + 0.007519695442169905, + 0.035099636763334274, + -0.00039684062357991934, + 0.013216434046626091, + -0.010505172424018383, + -0.0035918422508984804, + -0.008581799454987049, + -0.0013479064218699932, + 0.01707090623676777, + -0.012567585334181786, + -0.013888456858694553, + -0.00818785559386015, + 0.019589057192206383, + -0.006148615851998329, + -0.006484626792371273, + 0.029368137940764427, + 0.006619803607463837, + 0.015750035643577576, + 0.014583651907742023, + -0.015456507913768291, + -0.009315616451203823, + -0.025660429149866104, + 0.00020517915254458785, + 0.005125133786350489, + -0.0017853000899776816, + -0.020515983924269676, + -0.015479681082069874, + 0.007357483264058828, + 0.009732733480632305, + 0.0012706624111160636, + 7.917501352494583e-5, + -0.011014983057975769, + -0.003796538570895791, + 0.0006039508734829724, + 0.015750035643577576, + -0.0015419817063957453, + 0.00464622164145112, + -0.005495904944837093, + -0.00967866275459528, + 0.026077546179294586, + -0.01544878352433443, + -0.006279930472373962, + 0.020608676597476006, + 0.0034315609373152256, + 0.0049745081923902035, + -0.0022864199709147215, + 0.012528963387012482, + -0.023760229349136353, + -0.017009111121296883, + -0.010420204140245914, + 0.003655568463727832, + -0.002012204146012664, + 0.0020199285354465246, + -0.011802870780229568, + -0.0007270583882927895, + 0.014290125109255314, + 0.0027846433222293854, + -0.02255522459745407, + -0.01717904768884182, + -0.012884285300970078, + -0.010203921236097813, + 0.025768570601940155, + -0.007627836894243956, + 0.007940675131976604, + -0.00997991394251585, + 0.01699366234242916, + -0.007380656432360411, + 0.0009520312887616456, + -0.017441676929593086, + -0.023559395223855972, + 0.0011267956579104066, + 0.009663213975727558, + 0.01291518285870552, + -0.006820637732744217, + -0.0008829945581965148, + 0.008249650709331036, + 0.014035220257937908, + 0.00948555301874876, + -0.013448165729641914, + -0.0016057079192250967, + 0.004229104612022638, + -0.00828827265650034, + -0.012042326852679253, + 0.0004750500957015902, + -0.0007545765256509185, + -0.026355624198913574, + 0.0006894019898027182, + 0.021211178973317146, + -0.022292595356702805, + 0.007855706848204136, + -0.01221998780965805, + 0.0045882887206971645, + -0.005213964264839888, + 0.017163598909974098, + 0.007222306448966265, + 0.0005088443285785615, + 0.006071371957659721, + -0.018615784123539925, + 0.0014212881214916706, + -0.00808743853121996, + 0.01017302367836237, + -0.012026878073811531, + 0.004217518027871847, + -0.009616867639124393, + -0.022987790405750275, + 0.0113239586353302, + -0.030063332989811897, + 0.020701369270682335, + -0.002054688287898898, + -0.019233735278248787, + -0.027158960700035095, + -0.007056232076138258, + -0.0011731419945135713, + 0.01493897382169962, + -0.008280548267066479, + 0.00888305064290762, + 0.012034602463245392, + -0.011532517150044441, + -0.016128530725836754, + -0.013216434046626091, + 0.02094854973256588, + -0.02104124240577221, + 0.016854623332619667, + 0.00948555301874876, + -0.009964465163648129, + -0.0034083877690136433, + -0.0010543795069679618, + 0.005708325654268265, + -0.01886296458542347, + 0.00011375374015187845, + 0.002153174253180623, + 0.0037907452788203955, + -0.010968636721372604, + -1.5116876056708861e-5, + 0.004877953324466944, + 0.02632472664117813, + -0.010860495269298553, + -0.005353003274649382, + 0.009446931071579456, + -0.02830217219889164, + -0.003215278033167124, + -0.0053221057169139385, + -0.03151552006602287, + 0.026772741228342056, + 0.0038390227127820253, + -0.0183840524405241, + -0.020917652174830437, + -0.021705541759729385, + -0.009616867639124393, + -0.013556307181715965, + -0.001231074915267527, + 0.001593155786395073, + -0.011455273255705833, + -0.005407074466347694, + -0.006789740175008774, + 0.017132701352238655, + -0.002720917109400034, + 0.0015535682905465364, + 0.00042435876093804836, + 0.015927696600556374, + 0.008898499421775341, + 0.00041446188697591424, + -0.0082959970459342, + -0.009037538431584835, + -0.026788190007209778, + 0.020083418115973473, + -0.008033367805182934, + -0.009647765196859837, + 0.01935732550919056, + -0.01708635501563549, + 0.00798702146857977, + -0.004086203407496214, + 0.006341725587844849, + 0.008033367805182934, + -0.01544878352433443, + -0.0002971476933453232, + 0.011053605005145073, + -0.008504555560648441, + 0.006739531643688679, + 0.015255673788487911, + -0.01172562688589096, + -0.017302637919783592, + 0.0036826038267463446, + -0.0047273277305066586, + -0.01915649138391018, + 0.008543177507817745, + -0.012366751208901405, + -0.010976361110806465, + -0.013239607214927673, + -0.030248718336224556, + -0.03408001735806465, + -0.01926463283598423, + 0.013919354416429996, + 0.01579638198018074, + -0.01483855675905943, + 0.000996446586214006, + -0.0002981132420245558, + -0.005909159779548645, + 0.0031843804754316807, + -0.004418352153152227, + -0.021612849086523056, + 0.012544412165880203, + -0.014884903095662594, + -0.0002412665489828214, + 0.006670012138783932, + 0.03806580230593681, + -0.004402903374284506, + 0.005244861822575331, + -0.003147689625620842, + 0.026680048555135727, + 0.0005310519482009113, + -0.013432716950774193, + 0.00988722126930952, + -0.02213810756802559, + 0.008798082359135151, + -0.0010553450556471944, + -0.014877178706228733, + -0.01221998780965805, + 0.005634943954646587, + 0.012922907248139381, + -0.013780314475297928, + -0.013772590085864067, + -0.023389458656311035, + -0.022987790405750275, + -0.02206086367368698, + -0.004777536261826754, + 0.0022246248554438353, + 0.010559243150055408, + 0.009508726187050343, + -0.009022089652717113, + 0.006063647568225861, + -0.02651011198759079, + -0.011509343981742859, + -0.017518920823931694, + -0.00800247024744749, + 0.018044179305434227, + 0.008774909190833569, + 0.011895563453435898, + 0.02879653312265873, + 0.0025046339724212885, + 0.006364898756146431, + -0.019218286499381065, + -0.009956740774214268, + 0.012266334146261215, + -0.006515524350106716, + 0.014784486033022404, + 0.0008554763626307249, + -0.025876712054014206, + -0.016514750197529793, + -0.010713730938732624, + 0.011540241539478302, + -0.004881815519183874, + -0.007844120264053345, + 0.021365666761994362, + 0.018940208479762077, + -0.0033021774142980576, + 0.015719138085842133, + 0.012490341439843178, + 0.0043604192323982716, + 0.003356248140335083, + -0.022524327039718628, + -0.004893402103334665, + -0.007484935689717531, + 0.012722073122859001, + -0.022987790405750275, + 0.0006029853248037398, + 0.00184419855941087, + -0.004039857070893049, + 0.017704306170344353, + -0.007635561283677816, + 0.005642668344080448, + 0.005511353723704815, + -0.0015564649365842342, + -0.02414644882082939, + -0.011547965928912163, + -0.0032925219275057316, + -0.0018789583118632436, + -0.0028271274641156197, + -0.022385288029909134, + -0.011957358568906784, + 0.014722690917551517, + 0.003765641013160348, + 0.000383322942070663, + 0.008813531138002872, + -0.01600494049489498, + -0.012567585334181786, + 0.006631390191614628, + -0.0004977405187673867, + -0.0042213802225887775, + 0.011988256126642227, + -0.0224316343665123, + 0.008180131204426289, + 0.0024061480071395636, + -0.008674492128193378, + -0.005534526892006397, + -0.01994437910616398, + 0.007365207653492689, + -0.005229413043707609, + -0.028580250218510628, + -0.005082649644464254, + 0.009176577441394329, + -0.006129304878413677, + 0.018693028017878532, + -0.015850452706217766, + 0.012443995103240013, + 0.00036618445301428437, + -0.018538540229201317, + -0.010196196846663952, + -0.010999534279108047, + 0.008898499421775341, + 0.014660895802080631, + 0.003298315219581127, + 0.0082959970459342, + 0.003825505031272769, + -0.010049433447420597, + 0.004159585107117891, + -0.001255213632248342, + 0.016808276996016502, + -0.014923525042831898, + 0.0021975894924253225, + 0.00756990397349, + 0.010219370014965534, + -0.003217209130525589, + 0.006743393838405609, + -0.0028580250218510628, + 0.02782326005399227, + 0.0021261388901621103, + -0.0037907452788203955, + 0.012737521901726723, + -0.008836704306304455, + 0.02173643931746483, + -0.0033118329010903835, + 0.01588135026395321, + -0.021489256992936134, + 0.014382817782461643, + 0.031005708500742912, + -0.027467936277389526, + 0.0057855695486068726, + 0.03188629075884819, + 0.01915649138391018, + 0.017611613497138023, + 0.030526796355843544, + -0.013718519359827042, + -0.00918430183082819, + -0.020979447290301323, + 0.016545647755265236, + 0.0007598870433866978, + 0.005306656938046217, + 0.004669394809752703, + 0.004086203407496214, + 0.010095779784023762, + -0.019728096202015877, + 0.005580873228609562, + -0.00015134979912545532, + -0.0014029426965862513, + -0.029028264805674553, + -0.007832533679902554, + -0.009153404273092747, + 0.0215356033295393, + -0.0028580250218510628, + 0.00503630330786109, + -0.0009080988238565624, + -0.008141509257256985, + 0.009902670048177242, + -0.002191796200349927, + 0.022400736808776855, + -0.015819555148482323, + -0.005488180555403233, + -0.03750964626669884, + -0.021072139963507652, + 0.02206086367368698, + -0.0034528030082583427, + 0.01415108609944582, + 0.003896955633535981, + 0.0002923199499491602, + -0.012583034113049507, + -0.010698282159864902, + -0.005380038637667894, + -0.014568203128874302, + 0.0024370455648750067, + -0.0032500377856194973, + 0.00869766529649496, + -0.0034759764093905687, + -0.0018741305684670806, + -0.007303412538021803, + -0.0018625439843162894, + -0.003775296499952674, + 0.009910394437611103, + -0.011076778173446655, + 0.01787424273788929, + -0.005009267944842577, + -0.010049433447420597, + -0.011903287842869759, + -0.017302637919783592, + 0.0006445039180107415, + 0.00444152532145381, + 0.013077395036816597, + 0.0029372000135481358, + -0.0007024368969723582, + 0.009655489586293697, + -0.004603737499564886, + 0.01628301851451397, + -0.0005170514923520386, + 0.015595546923577785, + 0.0022284870501607656, + 0.0022671089973300695, + -0.021798234432935715, + -0.013849833980202675, + -0.008226477541029453, + 0.0007227134192362428, + -0.018723925575613976, + 0.023976512253284454, + -0.017132701352238655, + 0.007793911267071962, + -0.00575853418558836, + 0.014220605604350567, + -0.0007555420743301511, + -0.01679282821714878, + -0.00819557998329401, + 0.025845814496278763, + -0.003815849544480443, + -0.0014193570241332054, + 0.025366902351379395, + 0.018245013430714607, + 0.00798702146857977, + -0.013517685234546661, + -0.005472731776535511, + -0.011771973222494125, + 0.01926463283598423, + -0.024702604860067368, + -0.013842109590768814, + -0.004086203407496214, + -0.00494361063465476, + -0.002458287635818124, + 0.010729179717600346, + 0.0030125128105282784, + 0.0004750500957015902, + 0.023281317204236984, + -0.0011702453484758735, + -0.005399350076913834, + -0.008944845758378506, + -0.00777073809877038, + 0.03268962725996971, + -0.0011625209590420127, + -0.014985320158302784, + 0.017132701352238655, + 0.00987949687987566, + -0.01609763316810131, + 0.007148924749344587, + 5.370866347220726e-6, + 0.01657654531300068, + 0.0029256134293973446, + -0.029630767181515694, + 0.005924608558416367, + 0.015402437187731266, + -0.025444146245718002, + -0.007542868610471487, + -0.01946546696126461, + 0.020809510722756386, + 0.01340181939303875, + -0.00645759142935276, + -0.034821558743715286, + 0.00615634024143219, + 0.0011461066314950585, + 0.03899272903800011, + 0.04786033183336258, + 0.008937121368944645, + 0.007847982458770275, + 0.01544105913490057, + -0.010257991962134838, + 0.029754357412457466, + -0.007044645491987467, + -0.009655489586293697, + 0.004267726559191942, + 0.021813683211803436, + -0.0007434727158397436, + -0.015101185999810696, + -0.018492193892598152, + -0.013363197445869446, + 0.0032133469358086586, + -0.005310519132763147, + -0.0017312292475253344, + -0.007562179584056139, + -0.0008728562970645726, + -0.013363197445869446, + 0.0006768498569726944, + 0.020716818049550056, + 0.009640040807425976, + 0.030264167115092278, + -0.0009631350985728204, + 0.003559013595804572, + -0.0010292752413079143, + 0.014436888508498669, + -0.023111380636692047, + -0.011493895202875137, + 0.00927699450403452, + -0.005673565901815891, + 0.01785879395902157, + 0.0021763474214822054, + -0.01300015114247799, + -0.0310675036162138, + -0.003937508910894394, + -0.0012021084548905492, + 0.0252278633415699, + 0.00484319357201457, + -0.004456974100321531, + 0.008118336088955402, + 0.014135637320578098, + 0.026185687631368637, + -0.022617019712924957, + 0.021906375885009766, + 0.003576393472030759, + -0.004754363093525171, + 0.004507182631641626, + -0.015363815240561962, + -0.00776687590405345, + -0.004661670420318842, + 0.0024544254411011934, + 0.02590760961174965, + -0.012892009690403938, + 0.006612079218029976, + -0.010458826087415218, + 0.0047968472354114056, + -0.03435809537768364, + -0.0023076620418578386, + 0.0005474662757478654, + 0.0009307892178185284, + -0.015464232303202152, + 0.0173798818141222, + 0.02046963758766651, + -0.01670013554394245, + -0.003616946516558528, + -0.0010881737107411027, + -0.010103504173457623, + -0.015595546923577785, + 0.00353970262221992, + 0.007542868610471487, + -0.011949634179472923, + -0.0125057902187109, + 0.007840258069336414, + -0.01798238418996334, + -0.0017708168597891927, + 0.03126833960413933, + 0.009601418860256672, + -0.010435652919113636, + 0.004140274133533239, + 0.01370307058095932, + 0.008033367805182934, + 0.008280548267066479, + 0.004680981393903494, + 0.007314999122172594, + 0.0028734738007187843, + -0.0036420507822185755, + 0.0076664588414132595, + -0.010806424543261528, + 0.014977595768868923, + 0.001839370816014707, + 0.008674492128193378, + -0.00444152532145381, + -0.008774909190833569, + 0.015610995702445507, + -0.0009225820540450513, + -0.00025080135674215853, + 0.012104121968150139, + -0.009261545725166798, + -0.009199750609695911, + 0.00043425566400401294, + 0.019141042605042458, + 0.011362580582499504, + -0.01415881048887968, + 0.007125751581043005, + -0.005947781726717949, + 0.023513048887252808, + -0.01787424273788929, + 0.028054991737008095, + 0.01141665130853653, + -0.028039542958140373, + 0.002114552306011319, + 0.009647765196859837, + 0.012853387743234634, + -0.0010862426133826375, + 0.012127295136451721, + -0.0019774443935602903, + 0.02729799970984459, + -0.0016868140082806349, + 0.011555690318346024, + -0.019527262076735497, + 0.02532055601477623, + 0.006739531643688679, + 0.0013942527584731579, + 0.02193727344274521, + 0.01360265351831913, + -0.018507642671465874, + 0.016731033101677895, + -0.011609761044383049, + -0.02175188809633255, + -0.0008858912042342126, + 0.006708634085953236, + 0.007531282026320696, + -0.003985786344856024, + 0.012598482891917229, + -0.009833150543272495, + -0.0297080110758543, + -0.010605589486658573, + -0.002004479756578803, + -0.007847982458770275, + -0.004387454595416784, + -0.015835003927350044, + 0.02063957415521145, + 0.01600494049489498, + -0.012799317017197609, + -0.012637104839086533, + 0.009446931071579456, + 0.01619032584130764, + 0.015294295735657215, + -0.02056233026087284, + 0.013031048700213432, + -0.004634635057300329, + -0.00889077503234148, + -0.014297849498689175, + -0.02363663911819458, + -0.011795146390795708, + -0.015062564052641392, + -0.003336937166750431, + 0.002680363832041621, + 0.016437506303191185, + -0.008272823877632618, + 0.0008583730086684227, + -0.015711413696408272, + -0.020979447290301323, + -0.004916575271636248, + -0.003315695095807314, + -0.005530664697289467, + -0.00021085175103507936, + 0.007763013709336519, + -0.01796693541109562, + -0.005924608558416367, + 0.02016066201031208, + 0.009230648167431355, + 0.016962764784693718, + -0.0032230024226009846, + -0.023760229349136353, + -0.002850300632417202, + -0.0078054978512227535, + -0.006681598722934723, + 0.0017959211254492402, + 0.0082959970459342, + 0.0009838944533839822, + 0.0010292752413079143, + -0.02859569899737835, + 0.005360727664083242, + 0.02224624902009964, + -0.010134401731193066, + -0.029939742758870125, + -0.007183684501796961, + 0.01066738460212946, + -0.004395178984850645, + -0.0024524943437427282, + 0.018723925575613976, + -0.0027382969856262207, + 0.0075274198316037655, + -0.00513672037050128, + -0.0028541628271341324, + -0.002720917109400034, + 0.004387454595416784, + -0.02669549733400345, + -0.017920589074492455, + 0.027328897267580032, + 0.007627836894243956, + 0.003139965236186981, + 0.01708635501563549, + -0.009732733480632305, + -0.00868221651762724, + 0.02669549733400345, + -0.018801169469952583, + 0.013625826686620712, + -0.003315695095807314, + -0.00414413632825017, + 0.008450484834611416, + 0.006198824383318424, + -0.005101960618048906, + -0.010350684635341167, + -0.003344661556184292, + -0.019789891317486763, + 0.01465317141264677, + -0.024501770734786987, + 0.0032538999803364277, + -0.003010581713169813, + 0.0071759601123631, + -0.01937277428805828, + -0.0024872540961951017, + 0.0009834116790443659, + 0.013378646224737167, + -0.009964465163648129, + -0.014691793359816074, + 0.008929396979510784, + -0.010118952952325344, + -0.004781398456543684, + -0.01504711527377367, + 0.007747564930468798, + -0.023312214761972427, + -0.0009800322586670518, + -0.003856402589008212, + 0.02513517066836357, + -0.02193727344274521, + -0.01778155006468296, + -0.013177812099456787, + -0.004901126492768526, + 0.009215199388563633, + -0.0163757111877203, + -0.006113856099545956, + 0.03191718831658363, + 0.028858328238129616, + 0.007137338165193796, + -0.016437506303191185, + -0.008604972623288631, + -0.017704306170344353, + 0.013903905637562275, + -0.010265716351568699, + -0.006805188953876495, + 0.010412479750812054, + 4.986155090591637e-6, + -0.018306808546185493, + 0.0016868140082806349, + -0.0294917281717062, + -2.409346416243352e-5, + -0.01027344074100256, + 0.011609761044383049, + 0.00937741156667471, + -0.0024138723965734243, + 0.0017148149199783802, + -0.01369534619152546, + -0.0013353541726246476, + 0.005078787449747324, + 0.012583034113049507, + 0.05512125790119171, + 0.016854623332619667, + 0.004615324083715677, + 0.002151243155822158, + -8.617524872533977e-5, + -0.01866213046014309, + -0.00034952873829752207, + 0.0016646063886582851, + -0.017735203728079796, + -0.008751736022531986, + 0.00879035796970129, + 0.010049433447420597, + 0.019619954749941826, + 0.00928471889346838, + -0.018816618248820305, + 0.005472731776535511, + -0.006673874333500862, + -0.019728096202015877, + -0.009624592028558254, + 0.0057160500437021255, + -0.0073883808217942715, + 0.007523557636886835, + -0.0054186610504984856, + 0.0006614010198973119, + -0.00212227669544518, + 0.008859877474606037, + -0.005936195142567158, + -0.028750186786055565, + 0.008303721435368061, + -0.0045380801893770695, + 0.026989024132490158, + -0.0013121810043230653, + -0.026046648621559143, + 0.009833150543272495, + -0.005627219565212727, + 0.004495596047490835, + -0.007226168643683195, + 0.016962764784693718, + -0.012096397578716278, + -0.00287926709279418, + -0.013077395036816597, + -0.008520004339516163, + 0.019017452374100685, + 0.003195967059582472, + -0.028441211208701134, + 0.011679280549287796, + 0.0026243620086461306, + 0.023065034300088882, + -0.0020991035271435976, + 0.008234201930463314, + 0.008156958036124706, + 0.0147458640858531, + -0.015603271313011646, + -0.008118336088955402, + 0.0051135472021996975, + 0.0004429456021171063, + 0.01690096966922283, + -0.013896181248128414, + -0.01037385780364275, + -0.002676501637324691, + 0.00463849725201726, + -0.006666149944067001, + 0.0022342803422361612, + 0.02223080024123192, + -0.001653019804507494, + 0.004541942384094, + 0.005059476476162672, + 0.01809052564203739, + -0.0165919940918684, + -0.010165299288928509, + 0.018322257325053215, + -0.010412479750812054, + -0.013880732469260693, + -0.012165917083621025, + -0.014460061676800251, + -0.013162363320589066, + -0.020917652174830437, + -0.013448165729641914, + -0.011779697611927986, + 0.015587822534143925, + 0.0063803475350141525, + -0.011099951341748238, + 0.0075776283629238605, + -0.007222306448966265, + 0.002539393724873662, + 0.003993510734289885, + -0.005434109829366207, + -0.01649930141866207, + 0.012173641473054886, + 0.00919202622026205, + -0.009068435989320278, + 0.002666846150532365, + -0.015927696600556374, + 0.00968638714402914, + 0.0018770272145047784, + -0.02155105397105217, + 0.0062413085252046585, + -0.00348756299354136, + 0.009902670048177242, + 0.01578865759074688, + 0.012389924377202988, + 0.010111228562891483, + -0.0069326418451964855, + -0.020376944914460182, + -0.03191718831658363, + -0.036211948841810226, + -0.0009501001914031804, + 0.0006865053437650204, + 6.680392107227817e-5, + 0.010458826087415218, + -0.020794061943888664, + 0.005117409396916628, + -0.02213810756802559, + 0.026942677795886993, + 0.034110914915800095, + -0.006662287749350071, + 0.007330447901040316, + 0.004267726559191942, + 0.016746481880545616, + 0.0082959970459342, + -0.017503472045063972, + 0.01977444253861904, + 0.03131468594074249, + 0.010543794371187687, + 0.008535453118383884, + 0.0094778286293149, + 0.003167000599205494, + 0.013471338897943497, + 0.010157574899494648, + -0.028085889294743538, + 0.012258609756827354, + -0.016313916072249413, + -0.013888456858694553, + 0.002014135243371129, + -0.006364898756146431, + -0.006090682931244373, + -0.005314381327480078, + -0.011957358568906784, + 0.020129764452576637, + -0.0017061249818652868, + -0.001628881087526679, + 0.03803490474820137, + 0.031021157279610634, + 0.016020389273762703, + 0.010404755361378193, + 0.015672791749238968, + -0.005607908591628075, + 0.0002551463257987052, + 0.002510427264496684, + 0.02144291065633297, + -0.01739533059298992, + -0.005472731776535511, + -0.006878570653498173, + 0.00020988620235584676, + -0.01038158219307661, + -0.003447009716182947, + -0.003941371105611324, + 0.013981149531900883, + -0.01320098526775837, + -0.005681290291249752, + -0.007199133280664682, + -0.005515215918421745, + 0.015865901485085487, + 0.03207167610526085, + -0.014135637320578098, + -0.016545647755265236, + -0.013077395036816597, + 0.01727174036204815, + -0.007419278379529715, + -0.010265716351568699, + 0.006133167073130608, + 0.011439824476838112, + -0.003346592653542757, + -0.0018432330107316375, + 0.00474277650937438, + 0.004511044826358557, + 0.001975513296201825, + 0.0037308812607079744, + -0.01493897382169962, + -0.001116174622438848, + 0.004877953324466944, + 0.004514907021075487, + 0.008311445824801922, + -0.0023984236177057028, + -0.02661825343966484, + 0.031052054837346077, + -0.0031554140150547028, + -0.0018577162409201264, + 0.015232500620186329, + -0.009501001797616482, + 0.02046963758766651, + 0.015572373755276203, + -0.024486321955919266, + -0.0027247793041169643, + -0.009315616451203823, + 0.03225706145167351, + 0.0051135472021996975, + 0.007539006415754557, + -0.02830217219889164, + 0.009663213975727558, + 0.014931249432265759, + 0.01787424273788929, + -0.006704771891236305, + 0.0082959970459342 + ], + "640c98cf-9553-49d8-97f4-ad858fb8ed42": [ + -0.008831772021949291, + -0.028299998492002487, + -0.008719976991415024, + 0.008911624550819397, + -0.01336743775755167, + -0.015611314214766026, + 0.025616928935050964, + 0.03947945684194565, + -0.005374125204980373, + 0.01713651232421398, + 0.02355671487748623, + -0.01373476255685091, + 0.006895329803228378, + -0.007390419952571392, + 0.030264388769865036, + 0.03395361080765724, + -0.008656094782054424, + 0.009302905760705471, + -0.018062809482216835, + -0.018110722303390503, + 0.06739615648984909, + -0.0380420982837677, + -0.056344468146562576, + 0.04494142159819603, + -0.00539808114990592, + 0.006172657944262028, + -0.002098144730553031, + 0.012289417907595634, + -0.028299998492002487, + 0.014541280455887318, + 0.011826269328594208, + 0.023620598018169403, + -0.026846669614315033, + -0.007713825907558203, + 0.012009931728243828, + -0.021863825619220734, + 0.0076858773827552795, + 0.001662944327108562, + -0.04877437651157379, + 0.010317042469978333, + -0.006987161003053188, + 0.03376196324825287, + 0.0004656443779822439, + -0.00550189008936286, + -0.03187742456793785, + 0.0008818795322440565, + -0.024674659594893456, + -0.006559946108609438, + -0.022183237597346306, + -0.00798931997269392, + 0.00040151222492568195, + 0.0356784425675869, + 0.018222516402602196, + -0.0017477883957326412, + 0.04944514483213425, + -0.032548192888498306, + 0.011275282129645348, + 0.04423871263861656, + 0.00814503338187933, + -0.06560744345188141, + 0.01763160154223442, + 0.006547967903316021, + 0.02416360005736351, + 0.010963854379951954, + -0.004859071224927902, + -0.012329344637691975, + -0.018238486722111702, + -0.009087301790714264, + -0.021113203838467598, + 0.010540631599724293, + 0.0271501112729311, + 0.002649132162332535, + -0.044110946357250214, + 0.0030543876346200705, + 0.01059652864933014, + -0.02681472711265087, + 0.017008746042847633, + 0.02877911925315857, + 0.026591138914227486, + -0.03388972580432892, + -0.022358914837241173, + -0.016329994425177574, + 0.011482900008559227, + 0.0078695397824049, + 0.07761737704277039, + 0.012041873298585415, + 0.0107562355697155, + -0.04174729064106941, + 0.03360225632786751, + -0.026910552754998207, + -0.01414201408624649, + 0.020298700779676437, + -0.013606997206807137, + -0.003206108696758747, + -0.04979649931192398, + 0.03408137708902359, + 0.014261794276535511, + -0.011171472258865833, + -0.017248306423425674, + -0.0016379902372136712, + -0.01138707622885704, + -0.002150049200281501, + -0.0003446167684160173, + -0.002818820532411337, + -0.000813006074167788, + 0.001375472522340715, + 0.023572685196995735, + -0.007258662022650242, + -0.0027110185474157333, + 0.04944514483213425, + -0.01059652864933014, + -0.04612324759364128, + 0.04401512071490288, + -0.012984141707420349, + -0.07959774136543274, + -0.03315507620573044, + -0.036636680364608765, + -0.034145258367061615, + 0.006108775269240141, + -0.030104681849479675, + 0.03315507620573044, + 0.029833180829882622, + -0.0033857785165309906, + 0.0007591051398776472, + -0.018925225362181664, + 0.022438768297433853, + -0.0016000599134713411, + 0.02975332736968994, + 0.0041084508411586285, + 0.028763147071003914, + -0.0022857999429106712, + -0.043536003679037094, + -0.0015541443135589361, + -0.033985551446676254, + -0.0021121189929544926, + 0.03602979704737663, + -0.01357505563646555, + 0.04551636427640915, + 0.0013046028325334191, + 0.03596591204404831, + -0.04714537039399147, + -0.02636754885315895, + -0.008049209602177143, + 0.009199096821248531, + 0.001662944327108562, + 0.024786455556750298, + -0.04756060615181923, + 0.04404706507921219, + -0.03427302464842796, + 0.01357505563646555, + -0.1078338548541069, + -0.006232547573745251, + -0.024227481335401535, + 0.007821627892553806, + 0.016880981624126434, + -0.01767951436340809, + -0.0035614557564258575, + 0.006516026798635721, + 0.00197736662812531, + 0.05714299902319908, + 0.014405529946088791, + -0.048391081392765045, + -0.011802312918007374, + -0.003824971616268158, + 0.03701997548341751, + -0.007074999623000622, + 0.027341758832335472, + 0.0341133177280426, + -0.018765518441796303, + 0.0006872371886856854, + 0.00573346484452486, + -0.003741125576198101, + 0.02604813687503338, + 0.004631489515304565, + -0.013638938777148724, + 0.0045596216805279255, + 0.02208741381764412, + 0.024930190294981003, + 0.04772031307220459, + -0.02914644405245781, + -0.03654085472226143, + -0.018957166001200676, + 0.005202440544962883, + 0.009590378031134605, + -0.012848391197621822, + 0.02563289925456047, + 0.01649768464267254, + 0.0016489700647071004, + 0.006871373858302832, + -0.014860693365335464, + 0.01726427674293518, + -0.006348334718495607, + -0.02587245963513851, + 0.021512471139431, + -0.014261794276535511, + -0.040757108479738235, + -0.0075820679776370525, + -0.0019903427455574274, + -0.0014433478936553001, + 0.024594806134700775, + 0.005030755884945393, + -0.03122262842953205, + -0.04372765123844147, + 0.04264164716005325, + -0.03163786605000496, + 0.036349207162857056, + -0.0020562217105180025, + 0.01954808086156845, + 0.030296331271529198, + -0.03925586864352226, + -0.001544162631034851, + -0.06305214017629623, + -0.0063802762888371944, + -0.011658577248454094, + -0.02090558595955372, + 0.007230713497847319, + -0.008616168051958084, + 0.04082098975777626, + -0.008879683911800385, + -0.04462200775742531, + -0.0037211624439805746, + -0.002457484370097518, + -0.013686850666999817, + -0.011826269328594208, + -0.06816275417804718, + 0.01676918752491474, + 0.007218735758215189, + 0.04899796470999718, + -0.025217661634087563, + 0.010301072150468826, + 0.015619299374520779, + -0.03631726652383804, + 0.01996331661939621, + -0.021464558318257332, + -0.015667211264371872, + 0.03216489776968956, + 0.03641309216618538, + -0.009422685950994492, + 0.009031404741108418, + -0.00578536931425333, + 0.011666562408208847, + 0.013183774426579475, + -0.013032053597271442, + -0.021049322560429573, + 0.013894468545913696, + 0.00889565423130989, + -0.009191111661493778, + 0.046634308993816376, + 0.00576540594920516, + -0.021400677040219307, + -0.01605050638318062, + 0.03262804448604584, + 0.007047051098197699, + -0.009949717670679092, + -0.018350280821323395, + 0.043088823556900024, + 0.04072516784071922, + -0.04772031307220459, + -0.0012047862401232123, + 0.009742098860442638, + 0.007498221937566996, + -0.0023796274326741695, + -0.0014064157148823142, + 0.02707025781273842, + 0.02579260617494583, + -0.032835666090250015, + 0.02175203152000904, + -0.017807278782129288, + 0.02028273046016693, + 0.046794015914201736, + 0.007342508062720299, + 0.022630415856838226, + -0.026910552754998207, + 0.00074862438486889, + 0.013455276377499104, + -0.026830699294805527, + -0.011962019838392735, + -0.009997629560530186, + 0.0075621046125888824, + 0.016218198463320732, + -0.027086228132247925, + -0.006795513443648815, + 0.004587570205330849, + 0.004284128081053495, + 0.02065005525946617, + 0.01122736930847168, + -0.04420676827430725, + 0.004619511775672436, + -0.026255754753947258, + 0.0024594806600362062, + -0.00019002582121174783, + 0.004048560746014118, + 0.014389559626579285, + -0.0030204500071704388, + 0.014685016125440598, + 0.011514841578900814, + -0.018462076783180237, + 0.02975332736968994, + 0.00010256154200760648, + 0.023620598018169403, + -0.020298700779676437, + -0.02093752659857273, + -0.006619836203753948, + 0.016178272664546967, + 0.025600958615541458, + -0.021480528637766838, + -0.0006567931268364191, + 0.019084932282567024, + -0.02922629751265049, + 0.02746952511370182, + 0.03954333811998367, + -0.0238761268556118, + -0.02996094711124897, + -0.014812781475484371, + -0.0026651029475033283, + 0.0035894045140594244, + -0.02036258392035961, + 0.014573222026228905, + -0.00826481357216835, + -0.03321896120905876, + -0.0037630852311849594, + -0.02253459207713604, + -0.057654060423374176, + 0.03705191612243652, + 0.04743284359574318, + -0.04264164716005325, + 0.02445107139647007, + 0.00271501112729311, + -0.042354173958301544, + -0.01171447429805994, + -0.04609130695462227, + -0.02644740231335163, + -0.041779231280088425, + -0.011993961408734322, + -0.027852820232510567, + -0.05800541490316391, + -0.024467041715979576, + -0.02946585603058338, + 0.0039587258361279964, + -0.003411730984225869, + 0.004511709790676832, + -0.016465744003653526, + 0.02730981819331646, + -0.027166081592440605, + 0.002820816822350025, + -0.011890151537954807, + 0.03791433200240135, + 0.012720625847578049, + -0.012952200137078762, + 0.016513656824827194, + 0.0010331016965210438, + 0.000646811502519995, + 0.009997629560530186, + -0.0019474215805530548, + 0.06209390237927437, + -0.013000112026929855, + -0.045899659395217896, + 0.005657603964209557, + 0.007606023922562599, + -0.008767888881266117, + -0.0016779168508946896, + -0.03925586864352226, + -0.02890688367187977, + -0.0013425330398604274, + -0.02211935631930828, + 0.011323194019496441, + -0.01351117342710495, + -0.016673361882567406, + -0.011818284168839455, + 0.029625562950968742, + -0.006144708953797817, + -0.016306037083268166, + -0.008807815611362457, + -0.0322607196867466, + -0.021544411778450012, + -0.016992775723338127, + 0.03427302464842796, + -0.00817298237234354, + -0.01623416878283024, + 0.024099716916680336, + 0.00855228491127491, + -0.003381785936653614, + 0.03660473972558975, + 0.0070270877331495285, + 0.026303667575120926, + 0.019867492839694023, + 0.03069559670984745, + -0.010093453340232372, + -0.014788825996220112, + -0.01306399516761303, + -0.019851522520184517, + 0.0005829288857057691, + -0.050467267632484436, + 0.03654085472226143, + -0.033123135566711426, + -0.00548991234973073, + 0.0010590539313852787, + -0.015707138925790787, + 0.016465744003653526, + -0.01432567648589611, + -0.012624802067875862, + -0.021783972159028053, + -0.02395598031580448, + 0.01149088516831398, + 0.017519807443022728, + -0.03139830380678177, + 0.007003131788223982, + -0.00895953644067049, + 0.0346243791282177, + 0.00273497449234128, + 0.02453092485666275, + -0.005038741510361433, + 0.014796811155974865, + 0.03947945684194565, + 0.049413204193115234, + 0.002219920977950096, + -0.00026950478786602616, + 0.042098645120859146, + -0.0477522537112236, + -0.0005998976994305849, + 0.037946272641420364, + 0.01755174808204174, + 0.02395598031580448, + 0.0043839444406330585, + 0.011434988118708134, + 0.05174491927027702, + -0.024930190294981003, + 0.016865011304616928, + 0.002569278934970498, + -0.03612561896443367, + -0.007162838242948055, + 0.021400677040219307, + 0.0005579747376032174, + 0.0019524124218150973, + -0.04158758372068405, + -0.009398729540407658, + 0.007494229357689619, + -0.021512471139431, + -0.009127228520810604, + 0.015004429034888744, + -0.0071907867677509785, + -0.007106941193342209, + -0.008640123531222343, + -0.039000336080789566, + -0.004479768220335245, + -0.03992663323879242, + -0.008520344272255898, + 0.015355783514678478, + 0.015403695404529572, + -0.03152607008814812, + -0.014341646805405617, + 0.008424519561231136, + -0.05187268555164337, + -0.003271987661719322, + -0.010053526610136032, + 0.009750084020197392, + -0.011522826738655567, + -0.007614009082317352, + 0.01807877980172634, + -0.060592662543058395, + -0.01310392189770937, + -0.003797022858634591, + 0.024562865495681763, + 0.0011578723788261414, + 0.05433216318488121, + -0.03641309216618538, + -0.001967384945601225, + 0.009151184931397438, + 0.013559085316956043, + 0.006619836203753948, + -0.00848840270191431, + -0.01852595806121826, + -0.017743395641446114, + 0.008352652192115784, + 0.0035195329692214727, + -0.0072107501327991486, + -0.03670056164264679, + 0.007059028837829828, + 0.02187979593873024, + -0.023604625836014748, + -0.035774264484643936, + 0.0004811159451492131, + 0.000822488684207201, + 0.002052229130640626, + -0.010764220729470253, + 0.009414700791239738, + 0.004116436000913382, + -0.03192533552646637, + -0.003587408224120736, + -0.001144896261394024, + 0.021001409739255905, + 0.007793678902089596, + 0.023732392117381096, + -0.004615519195795059, + -0.01996331661939621, + -0.03602979704737663, + -0.002050232607871294, + -0.02130485326051712, + -0.02539333887398243, + 0.0026191873475909233, + 0.012497036717832088, + -0.010317042469978333, + -0.036636680364608765, + 0.009167155250906944, + 0.008927595801651478, + 0.03484796732664108, + 0.0033857785165309906, + 0.023524772375822067, + -0.013048023916780949, + -0.00867206510156393, + -0.061742547899484634, + 0.019691815599799156, + -0.04021410644054413, + 0.026064107194542885, + 0.009294920600950718, + -0.0006957215955480933, + -0.04008634015917778, + -0.009821952320635319, + 0.046442661434412, + -0.005849251989275217, + -0.010189277119934559, + -0.008903639391064644, + 0.0005479930550791323, + -0.019611962139606476, + -0.016928892582654953, + -0.012449124827980995, + -0.0034796062391251326, + -0.01799892634153366, + 0.027725055813789368, + -0.018717605620622635, + -0.0072826179675757885, + 0.027900733053684235, + 0.007514192722737789, + -0.010117408819496632, + 0.014453441835939884, + -0.020027199760079384, + -0.016226183623075485, + 0.0157390795648098, + 0.002281807130202651, + -0.020602144300937653, + -0.04439841955900192, + 0.0029885086696594954, + -0.003018453484401107, + -0.008616168051958084, + 0.003960722126066685, + 0.027118170633912086, + -0.025010043755173683, + 0.013183774426579475, + 0.0050107925198972225, + 0.04238611459732056, + -0.024259423837065697, + 0.012233520857989788, + -0.012752567417919636, + 0.007186794187873602, + 0.0017228343058377504, + -0.02547319233417511, + 0.01589878648519516, + -0.030344242230057716, + -0.005330205895006657, + -0.030216477811336517, + -0.01353512890636921, + -0.00782961305230856, + -0.0005098131950944662, + 0.014118057675659657, + 0.0017258287407457829, + 0.004296105820685625, + -0.01734413020312786, + -0.0037011990789324045, + -0.01130722276866436, + 0.016561567783355713, + 0.01970778778195381, + 0.03246833756566048, + 0.03449661284685135, + 0.007090970408171415, + 0.0024654697626829147, + 0.02563289925456047, + -0.021033350378274918, + 0.010740264318883419, + -0.022103384137153625, + -0.034432731568813324, + 0.029737357050180435, + -0.011602680198848248, + 0.004371966701000929, + -0.015475563704967499, + -0.012528978288173676, + 0.015810947865247726, + -0.012289417907595634, + -0.00532621331512928, + 0.008648108690977097, + 0.019420314580202103, + 0.005953061394393444, + 0.03151009976863861, + -0.02510586753487587, + 0.02964153327047825, + -0.013119892217218876, + 0.012712640687823296, + 0.009159170091152191, + 0.03925586864352226, + 0.0072227283380925655, + 0.0044558122754096985, + 0.01487666368484497, + 0.025041986256837845, + -0.008320710621774197, + -0.01365490909665823, + 0.0030004866421222687, + 0.022183237597346306, + 0.011139530688524246, + 0.0110836336389184, + -0.010277115739881992, + 0.0008848740253597498, + -0.019580021500587463, + -0.02494616061449051, + 0.03270789980888367, + -0.011434988118708134, + 0.03135039284825325, + -0.013455276377499104, + 0.012473080307245255, + 0.008153018541634083, + -0.0110836336389184, + 0.005354161839932203, + 0.021975619718432426, + -0.03906422108411789, + 0.05008397251367569, + -0.023157447576522827, + 0.023668508976697922, + 0.035742323845624924, + -0.023620598018169403, + 0.012473080307245255, + -0.023908069357275963, + -0.02432330511510372, + 0.005533831659704447, + -0.023620598018169403, + 0.006967197638005018, + -0.011315207928419113, + 0.0054539781995117664, + -0.002381623722612858, + -0.00804122444242239, + 0.01983555220067501, + -0.01775936782360077, + -0.015683181583881378, + -0.004379951860755682, + -0.00043270489550195634, + 0.000896352925337851, + 0.07199570536613464, + -0.023668508976697922, + 0.021209027618169785, + 0.003481602529063821, + 0.014006263576447964, + 0.04845496267080307, + 0.030360212549567223, + -0.012129711918532848, + 0.010724293999373913, + 0.010947883129119873, + 0.023828215897083282, + 0.012720625847578049, + -0.006951227318495512, + 0.012904288247227669, + 0.003930777311325073, + -0.019324490800499916, + 0.01381461601704359, + 0.05257539451122284, + -0.024626748636364937, + 0.0006203600787557662, + 0.0030803398694843054, + 0.010684367269277573, + -0.0019653886556625366, + 0.025600958615541458, + -0.006268481723964214, + 0.02114514634013176, + 0.02432330511510372, + 0.0023057630751281977, + -0.011914107948541641, + 0.00563364801928401, + 0.0027429598849266768, + -0.006144708953797817, + 0.0001316331181442365, + 0.007929429411888123, + -0.01175440102815628, + -0.006512034218758345, + 0.0013245660811662674, + -0.010700338520109653, + -0.0005454976344481111, + -0.012640772387385368, + 0.024483012035489082, + -0.048678554594516754, + -0.007510200142860413, + 0.002068199682980776, + 0.011730445548892021, + -0.014253808185458183, + -0.013295569457113743, + -0.025856489315629005, + 0.009654260240495205, + -0.020011229440569878, + 0.04510112851858139, + -0.013087950646877289, + 0.0107562355697155, + 0.006823461968451738, + -0.011626635678112507, + 0.015731094405055046, + -0.0032021161168813705, + -0.041044581681489944, + -0.021161116659641266, + 0.01142700295895338, + -0.01999525912106037, + 0.01815863326191902, + -0.007410383317619562, + -0.021624265238642693, + -0.009630304761230946, + -0.00608082627877593, + -0.005981009919196367, + 0.009901805780827999, + 0.025201691314578056, + -0.007789686322212219, + 0.027741026133298874, + 0.014157984405755997, + 0.03395361080765724, + -0.02200756035745144, + -0.0004399416211526841, + 0.007114926353096962, + 0.04813555255532265, + -0.01571512408554554, + 0.016785157844424248, + -0.008943566121160984, + -0.025073926895856857, + -0.010237189009785652, + 0.02636754885315895, + 0.019244637340307236, + -0.0071907867677509785, + 0.0024814403150230646, + -0.003964714705944061, + 0.04312076419591904, + -0.003188141854479909, + 0.004998814780265093, + -0.00036807366996072233, + -0.00818496011197567, + -0.023317154496908188, + -0.017376070842146873, + 0.014309706166386604, + 0.013000112026929855, + -0.021783972159028053, + 0.007342508062720299, + -0.007997305132448673, + 0.026143960654735565, + -0.001959399553015828, + 0.000849938252940774, + -0.009135213680565357, + 0.027325788512825966, + 0.01059652864933014, + -0.032021161168813705, + -0.012417183257639408, + 0.03644503280520439, + -0.02211935631930828, + 0.02825208753347397, + 0.0063682980835437775, + -0.053821105509996414, + 0.021656205877661705, + 0.03820180520415306, + 0.008153018541634083, + -0.02812432125210762, + 0.02791670337319374, + -0.030967097729444504, + 0.006032914388924837, + 0.007250676862895489, + -0.031094864010810852, + -0.005749435629695654, + 0.013423334807157516, + 0.019580021500587463, + 0.035902030766010284, + 0.03321896120905876, + -0.003305925289168954, + 0.05196850746870041, + 0.018382223322987556, + 0.018110722303390503, + 0.015890801325440407, + -0.016928892582654953, + 0.00022795613040216267, + 0.011051692068576813, + -0.04101264104247093, + -0.03182951360940933, + -0.029401974752545357, + -0.039734985679388046, + -0.05085056275129318, + 0.024179570376873016, + -0.01153081189841032, + 0.019771669059991837, + -0.022598475217819214, + 0.02432330511510372, + -0.009231038391590118, + -0.006168664898723364, + -0.026511285454034805, + 0.012265462428331375, + 0.009358802810311317, + -0.004176326096057892, + 0.02812432125210762, + 0.02542528137564659, + -0.021895766258239746, + 0.015627285465598106, + 0.03289954736828804, + -0.01597863994538784, + 0.006404232233762741, + 0.015275930054485798, + -0.011211398988962173, + 0.03507155552506447, + 0.02555304579436779, + -0.015699151903390884, + -0.012872346676886082, + -0.013279599137604237, + -0.007071007043123245, + -0.03813792020082474, + 0.022135326638817787, + -0.01857387088239193, + -0.011498871259391308, + -0.01726427674293518, + 0.016928892582654953, + -0.021464558318257332, + -0.021656205877661705, + 0.009981658309698105, + 0.010317042469978333, + 0.025361398234963417, + 0.029944976791739464, + 0.004731306340545416, + 0.012393227778375149, + 0.010700338520109653, + 0.022502651438117027, + -0.004359988495707512, + -0.007853569462895393, + 0.02061811462044716, + 0.004260172136127949, + 0.01799892634153366, + -0.024754513055086136, + -0.013095935806632042, + 0.012265462428331375, + -0.004523687530308962, + 0.033410608768463135, + 0.0017308195820078254, + 0.03717968240380287, + -0.03705191612243652, + -0.02628769725561142, + -0.02946585603058338, + 0.025010043755173683, + -0.006188628263771534, + -0.039287809282541275, + 0.0004269654455129057, + -0.022646388038992882, + -0.02245473861694336, + -0.011147516779601574, + 0.004288120660930872, + 0.005685552954673767, + 0.010317042469978333, + 0.058803949505090714, + 0.052032388746738434, + 0.0032180866692215204, + -0.0023037667851895094, + -0.004747276660054922, + -0.006907308008521795, + 0.009901805780827999, + -0.013135862536728382, + 0.026543226093053818, + 0.003142226254567504, + 0.0007561106467619538, + 0.012457109987735748, + 0.01595468260347843, + -0.024882279336452484, + 0.0108201177790761, + -0.015627285465598106, + 0.00810510665178299, + 0.01365490909665823, + 0.009318877011537552, + 0.0029166406020522118, + 0.011211398988962173, + -0.015579372644424438, + -0.003735136706382036, + 0.005422037094831467, + 0.021768001839518547, + -0.00019776161934714764, + -0.0017477883957326412, + 0.009143199771642685, + -0.015012415125966072, + -0.016641421243548393, + 0.013303554616868496, + -0.01796698570251465, + 3.49981892213691e-5, + -0.011195428669452667, + 0.005330205895006657, + 0.0026391504798084497, + 0.001099978806450963, + -0.009207081981003284, + 0.0048271301202476025, + -0.01473292801529169, + 0.010237189009785652, + 0.02211935631930828, + -0.002559297252446413, + -0.009542466141283512, + -0.015116224065423012, + -0.004859071224927902, + 0.0006617839680984616, + -0.012289417907595634, + -0.009215067140758038, + -0.00519445538520813, + 0.026096047833561897, + -0.004471783060580492, + -0.025808576494455338, + -0.04356794431805611, + -0.010093453340232372, + 0.014173955656588078, + -0.03510349616408348, + 0.021288881078362465, + 0.010045541450381279, + -0.0031003032345324755, + 0.015986625105142593, + 0.006931263953447342, + 0.006356320343911648, + 0.020634084939956665, + -0.03816986456513405, + 0.05244762822985649, + 0.017455924302339554, + 0.014964502304792404, + -0.00011453953629825264, + 0.0063802762888371944, + -0.031861454248428345, + 0.004891012795269489, + 0.011434988118708134, + 0.010732279159128666, + 0.012513007037341595, + -0.0014163973974063993, + 0.012776522897183895, + -0.0049309395253658295, + -0.013638938777148724, + 0.000739141833037138, + 0.03967110440135002, + 0.019276579841971397, + 0.0067595792934298515, + 0.008991478011012077, + -0.00020437446073628962, + 0.018302369862794876, + 0.005282294005155563, + -0.024067776277661324, + -0.02825208753347397, + -0.024866309016942978, + -0.0022798108402639627, + -0.014317691326141357, + -0.007526170462369919, + 0.004851086065173149, + -0.007047051098197699, + -0.002503399970009923, + 0.0019893446005880833, + 0.020378554239869118, + 0.01165059208869934, + -0.034304965287446976, + -0.026351578533649445, + 0.002335708122700453, + 0.0057733915746212006, + 0.012944214977324009, + -0.00926297903060913, + 0.0020562217105180025, + 0.009095286950469017, + 0.005789361894130707, + -0.014868678525090218, + 0.01112356036901474, + 0.005158521234989166, + 0.011778357438743114, + 0.016337979584932327, + 0.012137697078287601, + -0.006927270907908678, + -0.006144708953797817, + 0.023444920778274536, + -0.018430134281516075, + -0.0056695821695029736, + -0.013159818947315216, + -0.004012626595795155, + -0.016673361882567406, + 0.010772205889225006, + 0.002090159337967634, + 0.011379091069102287, + -0.046187132596969604, + -0.024307334795594215, + 0.006931263953447342, + -0.012497036717832088, + -0.022806093096733093, + 0.011890151537954807, + 0.026798756793141365, + -0.0233490951359272, + -0.031334422528743744, + -0.01314384862780571, + -0.029481826350092888, + 0.007122911512851715, + 0.00018690655997488648, + 0.0030823361594229937, + -0.031334422528743744, + 0.008037231862545013, + -0.005493904929608107, + -0.017982956022024155, + -0.01216165255755186, + 0.03037618286907673, + 0.007925436832010746, + 0.013239672407507896, + -0.024339277297258377, + -0.009350817650556564, + -0.0025173742324113846, + -0.030152594670653343, + -0.005933098029345274, + 4.1704617615323514e-5, + -0.008240857161581516, + 0.044749774038791656, + -0.00017031205061357468, + 0.010828102938830853, + -0.007737781852483749, + -0.016833068802952766, + -0.005346176214516163, + 0.02342894859611988, + -0.030296331271529198, + -0.022582504898309708, + -0.0022418806329369545, + -0.025041986256837845, + 0.013543114066123962, + 0.014932561665773392, + -0.028427764773368835, + 0.011131545528769493, + 0.01865372434258461, + 0.02686263993382454, + -0.02245473861694336, + -0.012768537737429142, + -0.005026763305068016, + 0.002164023695513606, + -0.015275930054485798, + 0.013670879416167736, + -0.00018441113934386522, + 0.0008534318185411394, + 0.0027968608774244785, + 0.004631489515304565, + 0.006032914388924837, + -0.013463261537253857, + -0.0016030543483793736, + -0.037690743803977966, + 0.01320773083716631, + -0.010245174169540405, + -0.004831122700124979, + -0.08093927055597305, + -0.02481839619576931, + 0.006280459463596344, + 0.019611962139606476, + 0.007035072892904282, + -0.03262804448604584, + -0.0030204500071704388, + 0.011730445548892021, + 0.002844772767275572, + 0.020825732499361038, + 0.004691379610449076, + -0.015619299374520779, + 0.014573222026228905, + 0.037690743803977966, + 0.007709833327680826, + -0.0033318777568638325, + -0.009095286950469017, + -2.9601857022498734e-5, + 0.0022518623154610395, + -0.0055657727643847466, + 0.007474265992641449, + 0.029130471870303154, + 0.01387849822640419, + -0.017647571861743927, + 0.00299449753947556, + 0.03395361080765724, + -0.0314781591296196, + -0.003058380214497447, + 6.44440806354396e-5, + -0.01755174808204174, + -0.008656094782054424, + 0.023540744557976723, + -0.007302581332623959, + 0.007362471427768469, + 0.014493368566036224, + 0.01878148876130581, + 0.0025912385899573565, + -0.019212696701288223, + 0.02890688367187977, + 0.016513656824827194, + 0.013359451666474342, + 0.0027828863821923733, + -0.01668933406472206, + -0.02400389313697815, + -0.014381573535501957, + -0.021129176020622253, + 0.013239672407507896, + -0.038968395441770554, + 0.013119892217218876, + 0.018541928380727768, + 0.030440066009759903, + 0.0013684853911399841, + 0.012848391197621822, + -0.021161116659641266, + -0.03190936520695686, + 3.513076080707833e-6, + 0.012912273406982422, + -0.02004317007958889, + 0.013862527906894684, + 0.003196127014234662, + 0.07563702017068863, + 0.007805657107383013, + 0.003244039136916399, + 0.008943566121160984, + -0.023093566298484802, + 0.015906771644949913, + 0.015291901305317879, + 0.017743395641446114, + 0.024514954537153244, + -0.01602655090391636, + 0.030503949150443077, + -0.013990293256938457, + -0.004439841955900192, + 0.018605811521410942, + -0.003271987661719322, + 0.03111083433032036, + 0.0006128738168627024, + 0.0030064755119383335, + 0.007242691703140736, + -0.013846556656062603, + -0.010668396949768066, + 0.01138707622885704, + -0.009470597840845585, + -0.010077483020722866, + 0.0038229753263294697, + 5.1592698582680896e-5, + 0.01594669744372368, + -0.013032053597271442, + 0.0052064331248402596, + 0.006783535238355398, + 0.023317154496908188, + 0.01403820514678955, + 0.02909853123128414, + 0.006987161003053188, + -0.010037556290626526, + 0.05538622662425041, + 0.00028672313783317804, + 0.006232547573745251, + -0.0007341509917750955, + -0.009598363190889359, + 0.0019254619255661964, + -0.028874943032860756, + 0.020841702818870544, + -0.027357731014490128, + -0.012401212938129902, + 0.01739204302430153, + -0.011562753468751907, + 0.00027050296193920076, + -0.02547319233417511, + -0.013335496187210083, + 0.005517860874533653, + 0.008456461131572723, + -0.023524772375822067, + 0.011858210898935795, + -0.014030219055712223, + 0.02379627525806427, + -0.005170499440282583, + -0.01734413020312786, + -0.03983081132173538, + -0.004268157295882702, + 0.005597714334726334, + 0.051617152988910675, + 0.0036253384314477444, + -0.03615755960345268, + 0.003537499811500311, + -0.014237837865948677, + 0.012393227778375149, + -0.008097121492028236, + 0.016194242984056473, + 0.02175203152000904, + -0.007274632807821035, + 0.0025353413075208664, + -0.012544948607683182, + 0.0020462400279939175, + -0.027788937091827393, + 0.0021879796404391527, + 0.04062934219837189, + -0.01881342940032482, + 0.01109960488975048, + -0.022806093096733093, + 0.009598363190889359, + 0.013710806146264076, + 0.005913134664297104, + 0.016090434044599533, + -0.010412866249680519, + -0.0027569341473281384, + -0.0009267969871871173, + -0.009159170091152191, + -0.0070390659384429455, + -0.0008554281666874886, + -0.004212259780615568, + 0.0025073925498872995, + 0.004859071224927902, + 0.020793791860342026, + -0.01759966090321541, + -0.02825208753347397, + -0.024195540696382523, + 0.022838035598397255, + -0.016912922263145447, + 0.006995146628469229, + -0.017455924302339554, + -0.00199732999317348, + 0.008352652192115784, + 0.011954034678637981, + 0.020793791860342026, + -0.00275094504468143, + -0.007094962988048792, + -0.013806629925966263, + -0.0043639810755848885, + -0.005573758389800787, + 0.0013694835361093283, + -0.0021939685102552176, + -0.013870513066649437, + -0.007358478847891092, + -0.027245935052633286, + -0.017008746042847633, + -0.004156362731009722, + 0.0007101949886418879, + 0.011011766269803047, + -0.002669095527380705, + -0.0031302482821047306, + 0.011898137629032135, + 0.00405854219570756, + 0.00608082627877593, + 0.007442324887961149, + -0.00397469662129879, + -0.01100378017872572, + -0.013359451666474342, + -0.01775936782360077, + 0.01381461601704359, + 0.01930852048099041, + 0.03344254940748215, + -0.016306037083268166, + 0.0011029732413589954, + -0.002493418287485838, + -0.01983555220067501, + 0.04404706507921219, + 0.03162189573049545, + -0.023173419758677483, + 0.006248518358916044, + -0.020873645320534706, + -0.021831883117556572, + 0.01726427674293518, + 0.019484197720885277, + -0.007450310047715902, + 0.010013599880039692, + -0.03539096936583519, + 0.010844074189662933, + 0.006927270907908678, + -0.0007451308192685246, + -0.004092480055987835, + -0.0008469437598250806, + 0.01618625782430172, + -2.9133965654182248e-5, + -0.001579098403453827, + 0.007450310047715902, + 0.01402223389595747, + 0.0057733915746212006, + 0.011970004998147488, + 0.00552983907982707, + 0.037786565721035004, + -0.004671416245400906, + 0.017823249101638794, + -0.010748250409960747, + -0.001736808568239212, + 0.017823249101638794, + 0.0019114876631647348, + -0.0732094794511795, + -0.02844373509287834, + -0.005781376734375954, + -0.003002482932060957, + 0.012241506017744541, + -0.009893819689750671, + -0.010812132619321346, + 0.017695484682917595, + -0.017855191603302956, + 0.03162189573049545, + -0.010213233530521393, + 0.012105755507946014, + -0.013032053597271442, + -0.00264314329251647, + -0.02988109365105629, + -0.017376070842146873, + -0.0018266435945406556, + 0.02587245963513851, + 0.03989469259977341, + -0.026383521035313606, + -0.008688035421073437, + 0.003475613659247756, + 0.012513007037341595, + 0.025041986256837845, + -0.00399465998634696, + -0.008161003701388836, + 0.01377468928694725, + -0.007442324887961149, + 0.00830474030226469, + 0.022662358358502388, + 0.008073166012763977, + 0.009933746419847012, + -0.003409734694287181, + 0.003088325262069702, + -0.004503724630922079, + 0.02547319233417511, + -0.017855191603302956, + 0.024786455556750298, + -0.010061511769890785, + 0.004942917264997959, + -0.012640772387385368, + 0.02901867777109146, + -0.02421151101589203, + -0.012249491177499294, + -7.59853792260401e-5, + -0.007174816448241472, + -0.021608294919133186, + 0.008624153211712837, + 0.017583690583705902, + -0.01954808086156845, + -0.01581893302500248, + 0.006180643104016781, + 0.014229852706193924, + -0.011498871259391308, + 0.01465307455509901, + -0.026686962693929672, + 0.03098306804895401, + 0.01383857149630785, + -0.003597389906644821, + 0.03269192948937416, + 0.006919285748153925, + 0.034879907965660095, + -0.006603865418583155, + 0.0035814191214740276, + 0.017567718401551247, + 0.03644503280520439, + -0.03404943272471428, + 0.02175203152000904, + -0.007142874877899885, + 0.023668508976697922, + 0.02224712073802948, + -0.0009896814590319991, + -0.013008097186684608, + 0.01371879130601883, + -0.010580558329820633, + -0.03775462508201599, + -0.002920633414760232, + -0.018797459080815315, + -0.00028772131190635264, + -0.0014912597835063934, + -0.002577264327555895, + 0.008009282872080803, + -0.004104458261281252, + -0.010476749390363693, + -0.00859221164137125, + -0.0025073925498872995, + -0.012481066398322582, + 0.0110836336389184, + 0.009071331471204758, + 0.019691815599799156, + 0.004627496935427189, + -0.006516026798635721, + -0.031094864010810852, + 0.005505883134901524, + -0.013119892217218876, + 0.019532110542058945, + -0.0015870836796239018, + -0.0456441305577755, + -0.024802425876259804, + 0.007649943232536316, + 0.004022608511149883, + 0.005829288624227047, + -0.009774040430784225, + -0.002615194534882903, + 0.04404706507921219, + 0.003471620846539736, + 0.002393601695075631, + -0.0027269890997558832, + 0.007518185302615166, + -0.006807491183280945, + -0.0012516999850049615, + -0.009534480050206184, + -0.004044568166136742, + 0.023125506937503815, + 0.016641421243548393, + -0.0027329782024025917, + 0.012177623808383942, + 0.015507505275309086, + -0.004336032550781965, + 0.01079616229981184, + 0.02722996473312378, + 0.031078891828656197, + -0.001135912723839283, + -0.004204274620860815, + 0.021688148379325867, + -0.007813642732799053, + 0.006384268868714571, + 0.004196289461106062, + 0.03366613760590553, + -0.0024654697626829147, + -0.0038668946363031864, + -0.02694249339401722, + -0.010045541450381279, + -0.02579260617494583, + -0.008085143752396107, + 0.006883352063596249, + 0.026479344815015793, + -0.018190573900938034, + 0.009638289920985699, + 0.012960185296833515, + -0.027645202353596687, + 0.005817310884594917, + -0.03676444664597511, + 0.011826269328594208, + -0.021608294919133186, + -0.048231374472379684, + 0.00011347898544045165, + -0.005258337594568729, + 0.012960185296833515, + 0.007550126872956753, + 0.013439305126667023, + -0.0012397220125421882, + -0.021528441458940506, + -0.014828751794993877, + 0.00848840270191431, + -0.036636680364608765, + 0.0023057630751281977, + -0.015451607294380665, + -0.003140229731798172, + -0.0034516574814915657, + 0.01833431050181389, + 0.008751918561756611, + 0.016705304384231567, + -0.009710157290101051, + -0.0008065180154517293, + -0.008584226481616497, + 0.015371754765510559, + 0.009821952320635319, + 0.009782025590538979, + -0.02972138673067093, + 0.013583040796220303, + -0.02592037059366703, + 0.002421550452709198, + -0.0022798108402639627, + 0.022550564259290695, + -0.00847243145108223, + 0.021480528637766838, + -0.010772205889225006, + 0.023093566298484802, + 0.03012065403163433, + 0.020314671099185944, + 0.0061926208436489105, + -0.03420913964509964, + -0.01970778778195381, + 0.023444920778274536, + -0.00275094504468143, + -0.005573758389800787, + -0.007262655068188906, + -0.004555629100650549, + 0.00043495077989064157, + 0.014637104235589504, + -0.0024435101076960564, + -0.005214418284595013, + -0.027373701333999634, + -0.0060409000143408775, + -0.00848840270191431, + -0.02020287699997425, + -0.009454627521336079, + 0.02710220031440258, + -0.021512471139431, + 6.450647197198123e-5, + -0.006947234272956848, + -0.014381573535501957, + -0.0013455275911837816, + 0.010700338520109653, + -0.005202440544962883, + 0.012361286208033562, + 0.04430259391665459, + -0.02473854273557663, + 0.0017767352983355522, + -0.034592434763908386, + 0.01605849340558052, + -0.020506320521235466, + -0.017583690583705902, + -0.01610640436410904, + -0.012552933767437935, + -0.0216402355581522, + -0.013463261537253857, + 0.004779218230396509, + 0.008216901682317257, + -0.01442948542535305, + -0.004946909844875336, + 0.012089785188436508, + 0.008887669071555138, + -0.015188091434538364, + 0.03111083433032036, + -0.009486568160355091, + 0.011458944529294968, + -0.007925436832010746, + -0.01424582302570343, + 0.0011399054201319814, + -0.020586172118782997, + 0.019500168040394783, + 0.0018965151393786073, + -0.0010011603590101004, + -0.016721274703741074, + 0.010524661280214787, + -0.010748250409960747, + 0.0406612865626812, + 0.028827030211687088, + -0.02065005525946617, + -0.022885946556925774, + -0.02775699645280838, + -0.0031741673592478037, + -0.017088599503040314, + 0.009031404741108418, + -0.016593510285019875, + 0.0044558122754096985, + -0.04187505319714546, + -0.022726239636540413, + -0.009829937480390072, + 0.004000648856163025, + 0.00010936155013041571, + 0.004823137540370226, + -0.009494553320109844, + -0.025616928935050964, + 0.015786990523338318, + 0.019787639379501343, + -0.025936342775821686, + -0.0068633886985480785, + -0.008664079941809177, + 0.00019975793838966638, + 0.014597177505493164, + -0.0027229965198785067, + 0.01975569874048233, + -0.01951613835990429, + 0.011155501939356327, + 0.02604813687503338, + -0.03085530363023281, + 0.0017148489132523537, + -0.016274096444249153, + 0.012600845657289028, + -0.007346500642597675, + 0.0017447939608246088, + -0.02670293301343918, + -0.024467041715979576, + -0.00031766630127094686, + 0.0010191273177042603, + -0.031701747328042984, + -0.0026730881072580814, + 0.005885186139494181, + 0.0112832672894001, + -0.01815863326191902, + -0.010141365230083466, + 0.004196289461106062, + -0.02432330511510372, + 4.039452687720768e-5, + -0.00855228491127491, + -0.012225535698235035, + -0.0036732503212988377, + 0.0007665914017707109, + -0.019947346299886703, + -0.012313374318182468, + -0.01881342940032482, + 0.006004965864121914, + -0.0007271638605743647, + -0.004527680575847626, + 0.008688035421073437, + 0.021815912798047066, + -0.009286935441195965, + -0.023492831736803055, + -0.03216489776968956, + -0.0031482151243835688, + 0.028092380613088608, + 0.006887344643473625, + 0.004248193930834532, + 0.003391767619177699, + 0.006140716373920441, + 0.0028487653471529484, + -0.0026112019550055265, + -0.009247008711099625, + -0.018270427361130714, + 0.0007171821780502796, + -0.010548616759479046, + 0.005513868294656277, + -0.00801327545195818, + 0.006559946108609438, + 0.006176650524139404, + 0.08681647479534149, + 0.00544998561963439, + -0.009358802810311317, + 0.0011818284401670098, + 0.014397544786334038, + -0.02893882431089878, + -0.004344017710536718, + 0.0059490688145160675, + 0.0023796274326741695, + -0.014948531985282898, + -0.005086653400212526, + -0.035007674247026443, + 0.013822601176798344, + 0.0048470934852957726, + -0.019196726381778717, + 0.008480417542159557, + 0.012608830817043781, + 0.035614557564258575, + -0.01878148876130581, + 0.02090558595955372, + 0.002948581939563155, + 2.398717333562672e-5, + 0.01681709848344326, + 0.0288589708507061, + -0.009502539411187172, + -0.0001649469049880281, + 0.006659762468189001, + -0.014940546825528145, + 0.009813967160880566, + 0.017088599503040314, + 0.020713938400149345, + -0.00797334872186184, + -0.008831772021949291, + 0.004320061765611172, + 0.0042801350355148315, + -0.006164672318845987, + -0.0013555092737078667, + -0.0104927197098732, + -0.004779218230396509, + 0.016433803364634514, + 0.004491746425628662, + 0.0063682980835437775, + 0.01320773083716631, + 0.010460778139531612, + 0.001958401408046484, + -0.011131545528769493, + -0.006172657944262028, + -0.005961046554148197, + -0.005374125204980373, + -0.007873532362282276, + -0.015363768674433231, + -0.0022239135578274727, + 0.01569116674363613, + 0.0017108563333749771, + 0.009398729540407658, + 0.001274657784961164, + 0.01873357780277729, + 0.006547967903316021, + -0.02513781003654003, + -0.0034855951089411974, + -0.01602655090391636, + -0.012952200137078762, + -0.028092380613088608, + -0.02358865551650524, + -0.010660411790013313, + -0.019500168040394783, + -0.023748362436890602, + -0.015866843983530998, + -0.011251325719058514, + -0.005813317839056253, + -0.00546994898468256, + 0.009710157290101051, + 0.008935580961406231, + -0.03756297752261162, + -0.015196077525615692, + 0.019723758101463318, + 0.004443834535777569, + 0.01844610460102558, + 0.012433154508471489, + -0.0005464958376251161, + 0.012417183257639408, + 0.011842239648103714, + -0.01629006676375866, + -0.003992663696408272, + -0.007182801607996225, + 0.015259959734976292, + 0.012736596167087555, + -0.014740913175046444, + 0.011554768308997154, + -0.019324490800499916, + 0.0006917289574630558, + -0.004459805320948362, + -0.016298051923513412, + -0.010333012789487839, + -0.004248193930834532, + -0.002229902660474181, + -0.008129063062369823, + -0.00856825616210699, + 0.007849575951695442, + -0.0003024442703463137, + 0.0012516999850049615, + 0.010700338520109653, + -0.008807815611362457, + -0.00526632321998477, + 0.0110197514295578, + -9.81945704552345e-5, + 0.01197799015790224, + 0.004399915225803852, + -0.018605811521410942, + -0.0039028285536915064, + 0.009909790940582752, + -0.017360100522637367, + 0.0013255642261356115, + -0.004978851415216923, + -0.024355247616767883, + 0.02628769725561142, + 0.017982956022024155, + -0.007554119452834129, + -0.01310392189770937, + -0.03000885806977749, + -0.01157073862850666, + 0.004699364770203829, + 0.012417183257639408, + -0.010828102938830853, + 0.023397007957100868, + 0.02293385937809944, + -0.0010400888277217746, + -0.0011568742338567972, + -0.024770483374595642, + -0.021320823580026627, + -0.002172008855268359, + 0.009702172130346298, + 0.015076297335326672, + 0.0026092056650668383, + 0.0006128738168627024, + 0.0005474939825944602, + 0.0029805232770740986, + -0.007837598212063313, + 0.018605811521410942, + -0.013383408077061176, + 0.008129063062369823, + 0.010516675189137459, + 0.004212259780615568, + 0.015786990523338318, + 0.015403695404529572, + 0.02363656833767891, + 0.006751594133675098, + -0.014685016125440598, + 0.022550564259290695, + 0.0004703856538981199, + 0.0382976271212101, + -0.029034648090600967, + -0.004499731585383415, + 0.001054063206538558, + 0.0005844261031597853, + 0.004268157295882702, + -0.009917776100337505, + 0.023365067318081856, + -0.015419666655361652, + -0.004284128081053495, + 0.005214418284595013, + 0.018669694662094116, + -0.016218198463320732, + -0.016401860862970352, + 0.003850923851132393, + 0.008680050261318684, + 0.023572685196995735, + 0.020218847319483757, + 0.014493368566036224, + -0.013479231856763363, + -0.011690518818795681, + 0.010915941558778286, + -0.0015172121347859502, + -0.04264164716005325, + 0.009670230560004711, + 0.005553795024752617, + 0.013199745677411556, + 0.012201579287648201, + -0.030024830251932144, + 0.007873532362282276, + -0.015307871624827385, + -0.019532110542058945, + 0.006456136703491211, + 0.009805981069803238, + 0.014317691326141357, + -0.018589841201901436, + 0.010955868288874626, + 0.0025652863550931215, + -0.0015761038521304727, + -0.006012951023876667, + -0.00814503338187933, + 0.014054175466299057, + -0.006675733253359795, + 0.006272474303841591, + -0.025201691314578056, + -0.005222403910011053, + 0.02012302353978157, + 0.010907956399023533, + -0.0077457670122385025, + -0.0012886321637779474, + 0.019643904641270638, + 0.0005185471964068711, + 0.009239023551344872, + -0.0050946385599672794, + 0.012952200137078762, + -0.02156038209795952, + -0.01395835168659687, + -0.006284452509135008, + -0.007625987287610769, + 0.0018406178569421172, + -0.04803972691297531, + -0.03237251564860344, + 0.016146332025527954, + -0.0019254619255661964, + -0.01179432775825262, + -0.00138745061121881, + 0.013423334807157516, + 0.01922866702079773, + 0.0107562355697155, + 0.00598899507895112, + 8.864960545906797e-5, + -0.0023995907977223396, + 0.019771669059991837, + -0.0013894469011574984, + -0.025728723034262657, + -0.004088487476110458, + 0.01284040603786707, + -0.0015830910997465253, + 0.006927270907908678, + -0.0019294546218588948, + 0.02261444553732872, + 0.0063682980835437775, + -0.006068848539143801, + 0.025728723034262657, + 0.00256728264503181, + 0.035167381167411804, + 0.004495739005506039, + 0.004879034589976072, + -0.00517449202015996, + -0.004300098400563002, + 0.006807491183280945, + -0.004946909844875336, + -0.01815863326191902, + -0.005525846034288406, + 0.008879683911800385, + -0.010812132619321346, + 0.0016898948233574629, + -0.015196077525615692, + 0.00497086625546217, + -3.203488449798897e-5, + -0.00256728264503181, + -0.01109960488975048, + -0.012441139668226242, + 0.026958463713526726, + 0.010053526610136032, + -0.008823785930871964, + 0.015331828035414219, + 0.0051864697597920895, + -0.016833068802952766, + -0.002373638330027461, + 0.009302905760705471, + 0.0011938064126297832, + -0.007526170462369919, + -0.002068199682980776, + -0.017487866804003716, + 0.011514841578900814, + -0.018238486722111702, + 0.019564051181077957, + 0.01079616229981184, + 0.022726239636540413, + 0.013383408077061176, + 0.002150049200281501, + 0.01660948060452938, + 0.006539982743561268, + 0.0006063857581466436, + -0.006771557033061981, + 0.0002131084183929488, + -0.007286611013114452, + 0.002910651732236147, + -0.013782674446702003, + -7.854317664168775e-5, + 0.0031082886271178722, + 0.017583690583705902, + -0.017455924302339554, + -0.0047552622854709625, + -0.02943391539156437, + -0.004910976160317659, + 0.013479231856763363, + -0.012409198097884655, + -0.006244525779038668, + 0.012832420878112316, + 0.0011498871026560664, + 0.0015321846585720778, + -0.009981658309698105, + 0.007945400662720203, + 0.01584288850426674, + -0.008616168051958084, + 0.0029445893596857786, + 0.027948644012212753, + 0.01359102688729763, + -0.01636992022395134, + -0.004783210810273886, + -0.018685664981603622, + -0.023748362436890602, + 0.0076858773827552795, + 0.01012539491057396, + 0.02347686141729355, + 0.01644977368414402, + -0.011211398988962173, + 0.0035654485691338778, + -0.01216165255755186, + 0.005250352434813976, + 0.007206757552921772, + -0.012808464467525482, + -0.004954895470291376, + -0.029370032250881195, + 0.0049509028904139996, + 0.005302256904542446, + -0.02130485326051712, + -0.0019913408905267715, + -0.008847742341458797, + 0.0009267969871871173, + 0.0040246048010885715, + 0.021464558318257332, + 0.006312401033937931, + 0.029817210510373116, + -0.0016699314583092928, + 0.016673361882567406, + 0.0032859621569514275, + -0.03657279908657074, + 0.021927708759903908, + -0.007602031342685223, + -0.005146543029695749, + -0.004447827115654945, + 0.0021380712278187275, + 0.027373701333999634, + -0.026958463713526726, + -0.0027788938023149967, + -0.0177114550024271, + 0.011155501939356327, + -0.027134140953421593, + -0.0010790172964334488, + -0.006300422828644514, + 0.003840942168608308, + 0.021847855299711227, + 0.019164783880114555, + 0.00030169563251547515, + 0.0038329570088535547, + -0.005314235109835863, + 0.023492831736803055, + 0.023987922817468643, + 0.01012539491057396, + 8.3222083048895e-5, + -0.004683394450694323, + 0.006807491183280945, + 0.01165059208869934, + 0.025249604135751724, + -0.0045596216805279255, + -0.010484734550118446, + 0.004088487476110458, + -0.025073926895856857, + 0.005074675194919109, + -0.016785157844424248, + -0.006847417913377285, + 0.012241506017744541, + -0.005913134664297104, + 0.001072030165232718, + 0.012209565378725529, + -7.423858914989978e-5, + -0.0053701321594417095, + -0.013646923936903477, + -0.014517324045300484, + -0.014006263576447964, + 0.004288120660930872, + -0.015076297335326672, + 0.0018685664981603622, + -0.006072841119021177, + 0.003930777311325073, + -0.0029984903521835804, + 0.000600396771915257, + 0.020154966041445732, + 0.013040038757026196, + -0.008751918561756611, + 0.0008554281666874886, + 0.015028385445475578, + 0.02135276421904564, + 0.005609692074358463, + 0.020969469100236893, + 0.00017567719623912126, + -0.025776635855436325, + -0.01881342940032482, + -0.017216365784406662, + 0.004759254865348339, + -0.003912810236215591, + 0.005645626224577427, + -0.001515215844847262, + -0.0283319391310215, + 0.03171771764755249, + -0.008696021512150764, + -0.015707138925790787, + 0.00532621331512928, + 0.0030344242695719004, + 0.020107053220272064, + 0.011434988118708134, + 0.00026950478786602616, + -0.03012065403163433, + -0.00253134872764349, + 0.008927595801651478, + 0.015228018164634705, + -0.009925761260092258, + 0.006807491183280945, + -0.0005003306432627141, + -0.020953498780727386, + 0.01375871803611517, + -0.008943566121160984, + -0.005202440544962883, + 0.008831772021949291, + 0.006220569834113121, + 0.014189925976097584, + -0.0016200231621041894, + 0.0170566588640213, + -0.009933746419847012, + 0.017823249101638794, + -0.003687224816530943, + -0.0037730669137090445, + -0.016849039122462273, + 0.01910090260207653, + 0.004272149875760078, + -0.003252024296671152, + 0.018014898523688316, + -0.01284040603786707, + -0.017152482643723488, + -0.002874717814847827, + 0.0171844232827425, + -0.013056010007858276, + -0.003583415411412716, + 0.02085767313838005, + -0.01815863326191902, + 0.021975619718432426, + 0.009853893890976906, + -0.01623416878283024, + -0.014804796315729618, + 0.0015771021135151386, + 0.0005944077856838703, + 0.009917776100337505, + 0.018669694662094116, + 0.0006867381162010133, + 0.014197911135852337, + 0.0025193707551807165, + -0.013638938777148724, + -0.017695484682917595, + 0.012497036717832088, + 0.011634621769189835, + -0.014605162665247917, + -0.026223814114928246, + -0.0029445893596857786, + -4.199314844299806e-6, + 0.009342832490801811, + 0.036508914083242416, + -0.038393452763557434, + -0.0034217126667499542, + -0.009590378031134605, + -0.007023095153272152, + 0.017248306423425674, + 0.0019833554979413748, + -0.0070270877331495285, + 0.003299936419352889, + 0.012608830817043781, + 0.0022877962328493595, + 0.0017248305957764387, + -0.017727425321936607, + 0.0166573915630579, + 0.008296755142509937, + -0.016218198463320732, + 0.0034217126667499542, + 0.012584875337779522, + -0.02796461433172226, + 0.01373476255685091, + 0.008192945271730423, + -0.018685664981603622, + -0.019356433302164078, + -0.0008654097910039127, + -0.007094962988048792, + 0.01623416878283024, + 0.022390857338905334, + -0.011474914848804474, + 0.007941408082842827, + 0.012041873298585415, + -0.0021760016679763794, + 0.005222403910011053, + -0.006531997583806515, + 0.0013335496187210083, + -0.0007516188779845834, + -0.003854916663840413, + -0.004607533570379019, + -0.0293860025703907, + 0.00398667436093092, + 0.020586172118782997, + -0.0044877538457512856, + 0.004132406786084175, + -0.005406066309660673, + -0.011363119818270206, + -0.007338515482842922, + 0.02208741381764412, + 0.009893819689750671, + 0.0009008446941152215, + 0.002539333887398243, + 0.004747276660054922, + 0.012824434787034988, + 0.008200930431485176, + 0.015291901305317879, + 0.012449124827980995, + 0.0021779979579150677, + 0.0037630852311849594, + -0.006328371819108725, + 0.023668508976697922, + -0.00032215804094448686, + 0.00877587404102087, + 0.02743758261203766, + 0.00027948644128628075, + -3.3220207114936784e-5, + -0.030663656070828438, + 0.026559198275208473, + -0.004136399365961552, + 0.016545597463846207, + 0.0019623939879238605, + 0.027341758832335472, + 0.0025992239825427532, + 0.02179994247853756, + 0.01657753810286522, + 0.007993312552571297, + 0.0006443160818889737, + -0.005537824239581823, + 0.010021585039794445, + 0.01138707622885704, + 0.024706602096557617, + 0.013303554616868496, + 0.00036707549588754773, + 0.030967097729444504, + -0.014964502304792404, + 0.0052064331248402596, + -0.004986836574971676, + 0.01742398366332054, + 0.002523363335058093, + -0.007322544697672129, + -0.03155801072716713, + -0.0006662757368758321, + -0.009438656270503998, + -0.010285100899636745, + -0.0018805444706231356, + -0.006671740673482418, + 0.007558112032711506, + 0.029769299551844597, + -0.0041883038356900215, + 0.015339813195168972, + -0.008480417542159557, + 0.010476749390363693, + -0.0028527581598609686, + -0.0036013824865221977, + 0.01339139323681593, + -0.01428574975579977, + -0.009742098860442638, + 0.005637641064822674, + 0.02072990871965885, + -0.005909142084419727, + -0.006356320343911648, + 0.03269192948937416, + 0.011914107948541641, + 0.0170566588640213, + 0.02449898235499859, + -0.0024814403150230646, + -0.00836862251162529, + -0.02584051713347435, + 0.004958888050168753, + 0.005034748464822769, + 0.0019424307392910123, + -0.015755049884319305, + -0.0101653216406703, + 0.011906122788786888, + 0.005537824239581823, + 0.0035414923913776875, + -0.012536963447928429, + -0.017855191603302956, + -0.004320061765611172, + 0.002172008855268359, + 0.0040705204010009766, + -0.021496500819921494, + 0.0013265624875202775, + 0.0011019750963896513, + -0.012560918927192688, + 0.019404344260692596, + -0.015259959734976292, + -0.008624153211712837, + 0.01320773083716631, + 0.005250352434813976, + -0.006068848539143801, + -0.0027968608774244785, + 0.009558436460793018, + -0.027485495433211327, + -0.016417833045125008, + -0.0062964302487671375, + -0.002900670049712062, + 0.0055777509696781635, + 0.0004998315707780421, + 0.00026226809131912887, + -0.0021420640405267477, + 0.011578723788261414, + 0.000656294054351747, + -0.024786455556750298, + -0.009526494890451431, + -0.005677567329257727, + -0.013056010007858276, + 0.028028497472405434, + -0.009310890920460224, + -0.0010041549103334546, + -0.006220569834113121, + 0.020666025578975677, + -0.00571350147947669, + 0.021161116659641266, + -0.00994173251092434, + -0.01605050638318062, + -0.00266310665756464, + 0.009151184931397438, + 0.01833431050181389, + 0.004990829154849052, + 0.001107964082621038, + 0.016833068802952766, + 0.018382223322987556, + 0.008456461131572723, + -0.012664728797972202, + -0.007454302627593279, + 0.00867206510156393, + -0.0010201254626736045, + -0.01644977368414402, + -0.002301770495250821, + 0.015427651815116405, + -0.031701747328042984, + 0.007825620472431183, + 0.020011229440569878, + -0.02127291075885296, + 0.009542466141283512, + -0.006543975323438644, + 0.007889502681791782, + -0.006767564453184605, + 0.01410208735615015, + 0.007242691703140736, + -0.0018645738018676639, + 0.012528978288173676, + -0.014629119075834751, + -0.007518185302615166, + -0.017503837123513222, + 0.0015471570659428835, + -0.00881580077111721, + 0.008416534401476383, + -0.021768001839518547, + -0.020458407700061798, + 0.01569116674363613, + -0.026718903332948685, + 0.014740913175046444, + 0.0012417183024808764, + -0.016194242984056473, + -0.020889615640044212, + 0.005585736129432917, + -0.0075700897723436356, + 0.005046726670116186, + 0.0005135563551448286, + 0.01093989796936512, + 0.005841266829520464, + -0.01796698570251465, + -0.016992775723338127, + 0.0010580557864159346, + 0.022630415856838226, + -0.016481714323163033, + 0.017647571861743927, + 0.005442000459879637, + -0.018509987741708755, + -0.017040688544511795, + -0.006663755513727665, + 0.008608182892203331, + -0.026175901293754578, + 0.009526494890451431, + 0.0036652651615440845, + 0.009342832490801811, + -0.01796698570251465, + -1.7577076505403966e-5, + 0.009877849370241165, + 0.00847243145108223, + -0.024850336834788322, + 0.002844772767275572, + 0.0032320611644536257, + -0.030759479850530624, + -0.0055418168194592, + -0.007346500642597675, + -0.022790122777223587, + 0.013175789266824722, + 0.00574544258415699, + -0.01865372434258461, + -0.0110836336389184, + -0.016385890543460846, + -0.00497086625546217, + -0.01739204302430153, + -0.009278950281441212, + -0.00039776909397915006, + -0.011235355399549007, + 0.0013265624875202775, + -0.015291901305317879, + 0.01967584528028965, + -0.003629331011325121, + 0.010053526610136032, + 0.004747276660054922, + 0.007809649687260389, + 0.014397544786334038, + -0.012632787227630615, + -0.010516675189137459, + -0.019723758101463318, + -0.026623079553246498, + 0.00871199183166027, + 0.0010860044276341796, + -0.012616816908121109, + 0.009494553320109844, + -0.021448587998747826, + 0.0012696669436991215, + 0.0005415049963630736, + 0.012337329797446728, + 0.0021300860680639744, + -0.011291252449154854, + -0.0030344242695719004, + 0.008975507691502571, + -0.02326924353837967, + -0.008951551280915737, + 0.011842239648103714, + -0.007637965027242899, + -0.015499519184231758, + 0.009175140410661697, + -0.014485383406281471, + -0.01943628489971161, + -0.001468301983550191, + -0.005941083189100027, + -0.0113471494987607, + -0.006000973284244537, + -0.028347911313176155, + -0.026096047833561897, + -0.015036370605230331, + 0.021608294919133186, + 0.019484197720885277, + -0.011139530688524246, + -0.007590053137391806, + 0.0025253596249967813, + -0.012680699117481709, + 0.01038891077041626, + -0.003912810236215591, + -0.018110722303390503, + 0.004359988495707512, + -0.013606997206807137, + 0.008759903721511364, + 0.009494553320109844, + 0.03388972580432892, + -0.003583415411412716, + 0.008704006671905518, + 0.010804147459566593, + 0.022311003878712654, + -0.003419716376811266, + -0.0034995696041733027, + 0.009071331471204758, + -0.002539333887398243, + 0.005885186139494181, + 0.005813317839056253, + -0.0050227707251906395, + -0.012401212938129902, + 0.0101653216406703, + 0.006260496564209461, + -0.015395710244774818, + -0.013886483386158943, + -0.017775338143110275, + -0.01841416396200657, + -0.01926060952246189, + 0.0031542042270302773, + 0.011666562408208847, + -3.1364244932774454e-5, + -0.0028487653471529484, + -0.011235355399549007, + 0.00836862251162529, + -0.017168452963232994, + -0.013048023916780949, + -0.028587469831109047, + -0.0014423496322706342, + 0.009957702830433846, + 0.005977017339318991, + 0.014820766635239124, + 0.02053826116025448, + 0.004407900385558605, + 0.0073145595379173756, + -0.014453441835939884, + -0.02004317007958889, + 0.010788177140057087, + 0.000581930682528764, + 0.021001409739255905, + 0.005006799940019846, + -0.02090558595955372, + -0.003930777311325073, + -0.012401212938129902, + 0.004759254865348339, + -0.006859395653009415, + -0.0040505570359528065, + 0.016465744003653526, + 0.017216365784406662, + 0.009997629560530186, + 0.01581893302500248, + 0.008807815611362457, + 0.0007012115092948079, + -0.004946909844875336, + -0.01371879130601883, + -0.008240857161581516, + -0.013439305126667023, + 0.01862178184092045, + -0.00848840270191431, + 0.00796137098222971, + 0.0029226297046989202, + 0.015962667763233185, + 0.015914756804704666, + -0.007725803647190332, + 0.006268481723964214, + -0.008113091811537743, + 0.00031542041688226163, + -0.02318939007818699, + -0.014445456676185131, + 0.015603329055011272, + -0.003471620846539736, + 0.00027674148441292346, + -0.02041049487888813, + -0.0072227283380925655, + 0.011842239648103714, + 0.0009168153628706932, + 0.0004334535333327949, + 0.014477398246526718, + -0.02036258392035961, + -0.014836737886071205, + 0.0020841702353209257, + -0.006947234272956848, + 0.0037211624439805746, + 0.008376607671380043, + -0.012449124827980995, + 0.007226720917969942, + 0.0003039415169041604, + -0.005242367275059223, + 0.003705191658809781, + -0.01828639954328537, + 0.007422361522912979, + -0.009310890920460224, + -0.02371642179787159, + -0.01841416396200657, + 0.010788177140057087, + -0.0027409635949879885, + 0.01034898404031992, + -0.025489164516329765, + 0.004479768220335245, + 0.0003573433787096292, + -0.012928244657814503, + 0.008943566121160984, + -0.014501353725790977, + 0.008983492851257324, + 0.012305389158427715, + 0.014253808185458183, + 0.012041873298585415, + 0.006184635683894157, + -0.013199745677411556, + -0.0035694411490112543, + 0.000720675743650645, + 0.007426354102790356, + -0.014517324045300484, + -0.0058332812041044235, + 0.01197799015790224, + 0.0006942243780940771, + -0.005909142084419727, + 0.01849401742219925, + 0.0008204923360608518, + 0.019500168040394783, + -0.004443834535777569, + -0.002539333887398243, + 0.015379739925265312, + 0.001045079668983817, + 0.009247008711099625, + -0.01347124669700861, + 0.022422797977924347, + -0.0238761268556118, + 0.0005370132275857031, + 0.03151009976863861, + -0.023013712838292122, + 0.012465095147490501, + 0.02959362231194973, + 0.01602655090391636, + 0.008216901682317257, + 0.025329457595944405, + 0.0015731094172224402, + -0.01668933406472206, + -0.006599872838705778, + 0.017982956022024155, + 0.0010311052901670337, + 0.007354486268013716, + -0.004575592465698719, + 0.0023995907977223396, + 0.016018565744161606, + -0.014229852706193924, + -0.0010580557864159346, + -0.010692352429032326, + 0.004355995915830135, + -0.03858510032296181, + -0.0017398031195625663, + -0.02004317007958889, + 0.010221218690276146, + -0.009286935441195965, + -0.003178160171955824, + 0.0021420640405267477, + 0.003998652566224337, + 0.012265462428331375, + 0.0008229877566918731, + 0.023668508976697922, + -0.026559198275208473, + -0.0073984055779874325, + -0.039287809282541275, + -0.024275394156575203, + 0.016545597463846207, + 0.0036832320038229227, + 0.01731218956410885, + -0.003030431689694524, + -0.0027569341473281384, + -0.007230713497847319, + 0.0016839058371260762, + -0.016042521223425865, + -0.010931912809610367, + 0.0033738005440682173, + -0.017455924302339554, + 0.0009911786764860153, + 0.0043959226459264755, + -0.004040575586259365, + -0.007226720917969942, + 0.007198772393167019, + -0.00789748877286911, + 0.0018436124082654715, + -0.016545597463846207, + 0.03216489776968956, + -0.0014802799560129642, + 0.00035709384246729314, + 0.007310566958039999, + -0.00830474030226469, + 0.0015681185759603977, + 0.006200606469064951, + -0.0007645950536243618, + 0.00027299835346639156, + 0.004116436000913382, + 0.006875366438180208, + -0.005190462339669466, + 0.021895766258239746, + 0.011730445548892021, + 0.018222516402602196, + -0.00028048461535945535, + -0.003685228293761611, + -0.02972138673067093, + -0.022518621757626534, + -0.015307871624827385, + -0.0018186582019552588, + -0.019691815599799156, + 0.030184535309672356, + -0.028156263753771782, + 0.0070151095278561115, + -0.017583690583705902, + 0.012808464467525482, + -0.006931263953447342, + -0.023317154496908188, + -0.006731630768626928, + 0.011546783149242401, + 0.014661060646176338, + -0.012592860497534275, + 0.022390857338905334, + 0.01804683916270733, + 0.011363119818270206, + -0.018749548122286797, + -0.004998814780265093, + -0.008232872001826763, + 0.011890151537954807, + -0.021512471139431, + -0.016417833045125008, + -0.0016669370234012604, + -0.006512034218758345, + -0.006891337223351002, + 0.0026411470025777817, + 0.01079616229981184, + 0.004699364770203829, + 0.022151296958327293, + -0.01104370690882206, + -0.012816449627280235, + -0.01087601576000452, + -0.007618002127856016, + 0.03258013352751732, + -0.007522177882492542, + -0.024067776277661324, + 0.03353837504982948, + 0.007174816448241472, + -0.0203306432813406, + 0.002956567332148552, + -0.0067595792934298515, + -0.014884649775922298, + -0.004463797900825739, + -0.019404344260692596, + -0.0029346076771616936, + 0.016960835084319115, + -0.02053826116025448, + -0.01791907288134098, + -0.02469063177704811, + 0.01852595806121826, + 0.012073813937604427, + -0.0015920745208859444, + -0.028092380613088608, + -0.012481066398322582, + -0.0037451183889061213, + 0.02694249339401722, + 0.04085293412208557, + 0.017216365784406662, + 0.009318877011537552, + 0.023828215897083282, + -0.002124096965417266, + 0.013822601176798344, + -0.006919285748153925, + -0.00271501112729311, + 0.012473080307245255, + 0.011035721749067307, + 2.518809196772054e-5, + -0.011522826738655567, + -0.011171472258865833, + -0.018925225362181664, + 3.952112820115872e-5, + 0.0046634310856461525, + -0.003992663696408272, + -0.01008546818047762, + -0.0062045990489423275, + -0.0009846906177699566, + -0.015236004255712032, + 0.03481602668762207, + 0.0015192084247246385, + 0.021847855299711227, + -0.015355783514678478, + 0.005513868294656277, + 0.0023516786750406027, + 0.016721274703741074, + -0.007637965027242899, + -0.012225535698235035, + 0.0036812357138842344, + -0.0038589092437177896, + 0.02314147725701332, + 0.01618625782430172, + -0.015363768674433231, + -0.01288033276796341, + -0.007082984782755375, + -0.011379091069102287, + 0.010828102938830853, + 0.0035894045140594244, + -0.009774040430784225, + 0.02481839619576931, + 0.009055361151695251, + 0.03168577700853348, + -0.007362471427768469, + 0.01775936782360077, + -0.008320710621774197, + -0.012944214977324009, + -0.004595555830746889, + -0.004483761265873909, + -0.015435636974871159, + 0.00067476014373824, + 0.008584226481616497, + 0.01747189462184906, + -0.016849039122462273, + 0.015228018164634705, + -0.014237837865948677, + 0.006719652563333511, + -0.028236115351319313, + -0.0022219172678887844, + 0.009023419581353664, + 0.01353512890636921, + -0.012377256527543068, + 0.02318939007818699, + 0.01975569874048233, + -0.01886134222149849, + -0.000281732325674966, + -0.0016888966783881187, + -0.010995795018970966, + -0.014173955656588078, + 0.00023556714586447924, + 0.011842239648103714, + -0.01649768464267254, + -0.00848840270191431, + 0.008440490812063217, + -0.02604813687503338, + 0.0012267458951100707, + 0.02347686141729355, + 0.017935045063495636, + -0.017216365784406662, + 0.004523687530308962, + 0.011610665358603, + 0.014173955656588078, + -0.0007531161536462605, + 0.0063084084540605545, + 0.00810510665178299, + -0.0012576889712363482, + -0.008049209602177143, + 0.003575430251657963, + -0.013223701156675816, + 0.022598475217819214, + 0.005086653400212526, + 0.009614333510398865, + -0.01124334055930376, + -0.007362471427768469, + 0.00030618737218901515, + -0.009270964190363884, + -0.0031102849170565605, + 0.006316393613815308, + -0.008464446291327477, + -0.011091618798673153, + 0.010500704869627953, + 0.021704118698835373, + 0.019324490800499916, + -0.02497810311615467, + 0.009350817650556564, + 0.00539808114990592, + 0.012465095147490501, + -0.01610640436410904, + 0.03229266405105591, + 0.0006088811787776649, + -0.02240682765841484, + -0.0038369495887309313, + 0.008376607671380043, + 0.018797459080815315, + -0.0064840856939554214, + 0.010301072150468826, + -0.011195428669452667, + 0.03523126244544983, + -0.00011441476090112701, + 0.009750084020197392, + -0.002439517294988036, + 0.02461077831685543, + 0.0006642793887294829, + 0.004815152380615473, + 0.027980586513876915, + 0.020426467061042786, + -0.0047432840801775455, + 0.02187979593873024, + -0.014046190306544304, + -0.006220569834113121, + 0.0054739415645599365, + 0.00014223864127416164, + -0.008680050261318684, + -0.012121726758778095, + 0.007637965027242899, + -0.0010046539828181267, + -0.019931375980377197, + -0.02069796808063984, + 0.0024075761903077364, + -0.012952200137078762, + -0.010428836569190025, + -0.02584051713347435, + 0.011498871259391308, + 0.012888317927718163, + -0.012560918927192688, + -0.009582391940057278, + 0.010021585039794445, + 0.0045596216805279255, + 0.02156038209795952, + -0.013638938777148724, + 0.014149999246001244, + 0.011890151537954807, + -0.013702820986509323, + -0.011291252449154854, + -0.035039614886045456, + -0.010213233530521393, + -0.011482900008559227, + -0.008113091811537743, + 0.009502539411187172, + 0.010556601919233799, + 0.0012397220125421882, + -0.012137697078287601, + -0.0008853730978444219, + -0.020825732499361038, + -0.0013065991224721074, + 0.01097982469946146, + -0.002235891530290246, + 0.0021819905377924442, + 0.016928892582654953, + -0.024786455556750298, + 0.01112356036901474, + 0.0037830485962331295, + 0.008037231862545013, + 0.017887132242321968, + -0.0001670680067036301, + -0.027868790552020073, + 0.005350169260054827, + -0.018014898523688316, + 0.000739141833037138, + 0.010245174169540405, + 0.01881342940032482, + 0.0006048885406926274, + -0.008456461131572723, + -0.023908069357275963, + -0.003435686929151416, + 0.02036258392035961, + -0.00044867556425742805, + -0.018669694662094116, + 0.004112443421036005, + 0.012984141707420349, + -0.0068434253334999084, + 0.0001232110953424126, + 0.015220033004879951, + 0.0013904450461268425, + 0.011395061388611794, + -0.012744582258164883, + -0.011211398988962173, + -0.009550451301038265, + 0.012904288247227669, + -0.007007124368101358, + -0.025569016113877296, + 0.025569016113877296, + 0.010069496929645538, + 0.009742098860442638, + 0.02384418621659279, + -0.002431532135233283, + -0.0104927197098732, + 0.03749909624457359, + -0.004883027635514736, + 0.01610640436410904, + -0.01373476255685091, + -0.012249491177499294, + 0.005406066309660673, + 0.0026391504798084497, + 0.012257477268576622, + -0.00788151752203703, + -0.015004429034888744, + -0.014868678525090218, + 0.01796698570251465, + -0.01862178184092045, + 0.009558436460793018, + 0.014645089395344257, + 0.013159818947315216, + -0.017168452963232994, + -0.0022977779153734446, + 0.0037011990789324045, + 0.01906896010041237, + -0.008496387861669064, + -0.020027199760079384, + -0.001163861365057528, + -0.017743395641446114, + -0.005050719249993563, + -0.023333124816417694, + 0.017663544043898582, + -0.009278950281441212, + 0.009678216651082039, + -0.013335496187210083, + 0.030056770890951157, + -0.024035833775997162, + -0.01369483582675457, + -0.013726777397096157, + -0.007645950652658939, + 0.003216090379282832, + -0.021001409739255905, + 0.0013445294462144375, + 0.03337866812944412, + 0.013311539776623249, + 0.012377256527543068, + -0.0033318777568638325, + 0.0007516188779845834, + -0.024259423837065697, + -0.001672926009632647, + -0.02465868927538395, + -0.01608244888484478, + 0.009542466141283512, + -0.0021819905377924442, + -0.007765730377286673, + -0.001432368066161871, + -0.03852121904492378, + -0.009534480050206184, + -0.010844074189662933, + 0.011818284168839455, + 0.004819144960492849, + -0.0015202065696939826, + -0.006599872838705778, + -0.01339139323681593, + -0.007246684283018112, + 0.007378442212939262, + 0.005777384154498577, + 0.05417245626449585, + 0.00889565423130989, + 0.0010281108552590013, + 0.003375797066837549, + 0.008927595801651478, + -0.015012415125966072, + -0.005893171299248934, + 0.005677567329257727, + -0.013686850666999817, + -0.01197799015790224, + 0.011698503978550434, + 0.0006892335368320346, + 0.025377368554472923, + 0.017072629183530807, + -0.0016918911132961512, + 0.014341646805405617, + -0.0007526170811615884, + -0.019723758101463318, + -0.016960835084319115, + 0.021320823580026627, + -0.0030344242695719004, + 0.012401212938129902, + 0.008101114071905613, + 0.0016509663546457887, + 0.006583902053534985, + 0.005182477179914713, + 0.010029570199549198, + -0.018142662942409515, + 0.014836737886071205, + -0.0066557698883116245, + 0.01579497754573822, + -0.003749110968783498, + -0.02293385937809944, + 0.024882279336452484, + 0.0014762873761355877, + -0.0027888754848390818, + -0.0110197514295578, + 0.021528441458940506, + -0.00859221164137125, + -0.012696669436991215, + -0.015387725085020065, + -0.004196289461106062, + 0.001007149345241487, + -0.004747276660054922, + -0.021464558318257332, + -0.002050232607871294, + 0.011538797058165073, + 0.01873357780277729, + 0.009486568160355091, + 0.008504373021423817, + 0.010516675189137459, + 0.01767951436340809, + -0.01918075606226921, + -0.01105967815965414, + 0.01061249990016222, + 0.009750084020197392, + 0.024834366515278816, + -0.015603329055011272, + -0.014126043766736984, + -0.003771070623770356, + -0.0032739839516580105, + -0.00589716387912631, + 0.012600845657289028, + 0.01775936782360077, + -0.005386102944612503, + 0.0014563240110874176, + 0.0043959226459264755, + 0.012233520857989788, + -0.008791845291852951, + -0.005537824239581823, + 0.0177114550024271, + 4.55101253464818e-5, + -0.015427651815116405, + -0.021911736577749252, + -0.008432505652308464, + -0.020442437380552292, + -0.018509987741708755, + -0.019340461120009422, + -0.012297403067350388, + 0.005150536075234413, + -0.0007660923292860389, + -0.026383521035313606, + 0.013567070476710796, + -0.006571924313902855, + -0.0021680162753909826, + -0.002707025734707713, + 0.0005078169051557779, + -0.0264953151345253, + 0.012489051558077335, + 0.012033888138830662, + -0.007901481352746487, + -0.005178484600037336, + -0.015699151903390884, + 0.016801128163933754, + 0.008624153211712837, + -0.018637754023075104, + -0.0038229753263294697, + -0.01649768464267254, + 0.0019903427455574274, + 0.01870163530111313, + 0.0036053750663995743, + 0.006260496564209461, + -0.0036752468440681696, + -0.010907956399023533, + -0.02069796808063984, + -0.030631713569164276, + -0.008360637351870537, + -0.005461963824927807, + -0.005629655439406633, + 0.01710456982254982, + -0.005497897509485483, + 0.004048560746014118, + -0.020953498780727386, + 0.016705304384231567, + 0.009382759220898151, + 0.00036557824932970107, + 0.01446941215544939, + 0.004699364770203829, + 0.010045541450381279, + 0.01673724502325058, + -0.018270427361130714, + 0.01946822740137577, + 0.03154204040765762, + 0.00035809201654046774, + 0.016785157844424248, + 0.010708323679864407, + 0.0015810946933925152, + 0.011067663319408894, + 0.011219384148716927, + -0.007785693742334843, + 0.0031202665995806456, + -0.007482251152396202, + -0.01922866702079773, + 0.001996331848204136, + -0.0010909952688962221, + -0.006456136703491211, + -0.0022398841101676226, + -0.008656094782054424, + 0.02122499980032444, + -0.018637754023075104, + -0.007494229357689619, + 0.02841179259121418, + 0.025904400274157524, + 0.02057020179927349, + 0.004248193930834532, + 0.014948531985282898, + -0.009047375060617924, + 0.01742398366332054, + 2.1507355995709077e-5, + 0.02306162379682064, + -0.010197262279689312, + -0.0070390659384429455, + -0.002355671487748623, + 0.009686201810836792, + -0.0112832672894001, + -0.005314235109835863, + -0.004367973655462265, + 0.011842239648103714, + -0.027581319212913513, + 0.0015950690722092986, + -0.005569765344262123, + -0.00844847597181797, + 0.009598363190889359, + 0.02318939007818699, + -0.007506207562983036, + -0.018541928380727768, + -0.003198123537003994, + 0.021081263199448586, + -0.006679725833237171, + -0.012473080307245255, + -0.007442324887961149, + 0.0032919510267674923, + -0.02130485326051712, + 0.015906771644949913, + 0.009654260240495205, + 0.021927708759903908, + 0.0052463598549366, + 0.00539808114990592, + -0.012041873298585415, + -0.0027689121197909117, + -0.001580096548423171, + 0.009390744380652905, + 0.020745879039168358, + -0.014493368566036224, + -0.01783922128379345, + 0.033985551446676254, + 0.0031462188344448805, + 0.005258337594568729, + 0.009334847331047058, + 0.0013565074186772108, + 0.015890801325440407, + 0.022263091057538986, + -0.017743395641446114, + -0.013974322006106377, + -0.007789686322212219, + 0.019116872921586037, + 0.012281432747840881, + -0.00818496011197567, + -0.03583814576268196, + 0.02195964939892292, + 0.010173306800425053, + 0.012473080307245255, + -0.015092267654836178, + 0.022358914837241173 + ], + "956e03d7-630b-4cdf-a595-7396eb2435ab": [ + -0.02321743592619896, + -0.02123001217842102, + -0.002665306208655238, + 0.0259751807898283, + -0.017424631863832474, + -0.0316755473613739, + 0.007768674287945032, + 0.047112755477428436, + -0.01700866036117077, + 0.00518040033057332, + 0.025235673412680626, + -0.014589855447411537, + 0.007133160717785358, + -0.002669157925993204, + 0.007849558256566525, + 0.006998354569077492, + -0.025851929560303688, + 0.023417720571160316, + -0.02893320843577385, + -0.029780561104416847, + 0.0757378339767456, + -0.04202864319086075, + -0.05346018821001053, + 0.022447116672992706, + -0.021168386563658714, + 0.010430129244923592, + -0.021507326513528824, + 0.006185667589306831, + -0.001712035620585084, + -0.010607302188873291, + 0.01881120726466179, + 0.007364256773144007, + -0.03005787543952465, + -0.00604315847158432, + -0.007545281667262316, + -0.01650024764239788, + 0.005380683112889528, + 0.0047143567353487015, + -0.004440893419086933, + 0.014720809645950794, + -0.01864173822104931, + 0.037191037088632584, + 0.006875103339552879, + 0.016376998275518417, + -0.03728347644209862, + -0.007745564915239811, + -0.03158310800790787, + -0.037314288318157196, + -0.007283372804522514, + -0.01199387852102518, + -9.984066127799451e-5, + 0.02253955602645874, + -0.0009749358869157732, + -0.002888699062168598, + 0.043230343610048294, + -0.026884159073233604, + 0.05620252713561058, + 0.05734260007739067, + 0.010291471146047115, + -0.05632577836513519, + 0.0026267901994287968, + -0.009906311519443989, + -0.005276690237224102, + 0.0032526750583201647, + -0.016454029828310013, + -0.038022980093955994, + -0.020012905821204185, + 0.005130329169332981, + -0.026206277310848236, + 0.01266405638307333, + 0.018888238817453384, + 0.009752247482538223, + -0.001210364862345159, + 0.012078613042831421, + 0.013072325848042965, + -0.008042138069868088, + 0.028794551268219948, + -0.0007149529992602766, + 0.01413536723703146, + -0.02008993923664093, + 0.013249499723315239, + 0.011855220422148705, + -0.021445700898766518, + 0.018580112606287003, + 0.07906561344861984, + 0.00440622866153717, + 0.01479013916105032, + -0.044370416551828384, + 0.0008805717225186527, + -0.02270902507007122, + -0.04144320264458656, + 0.021861674264073372, + 0.002528574550524354, + -0.012463773600757122, + -0.023741254583001137, + 0.015236924402415752, + 0.010484051890671253, + -0.012941371649503708, + -0.0269611906260252, + 0.021522732451558113, + 0.00436386140063405, + 0.024881327524781227, + 0.001886320416815579, + -0.02272443100810051, + 0.024958359077572823, + 0.0023552526254206896, + 0.002522797090932727, + -0.0049916720017790794, + -0.00907436665147543, + 0.04880745708942413, + 0.032938871532678604, + -0.062488336116075516, + 0.022447116672992706, + -0.0041712811216712, + -0.045664552599191666, + -0.031613919883966446, + -0.0038958920631557703, + -0.02910267934203148, + 0.029534058645367622, + -0.05959193408489227, + 0.024234257638454437, + 0.014759326353669167, + 0.026514405384659767, + 0.0056310370564460754, + 0.0030080985743552446, + 0.029795967042446136, + -0.008227014914155006, + 0.022447116672992706, + 0.005931461695581675, + 0.019211774691939354, + -0.019180960953235626, + -0.04286058992147446, + 0.008874082937836647, + -0.029872998595237732, + 0.014905686490237713, + 0.05145735666155815, + 0.003934408072382212, + 0.021522732451558113, + -0.0026460483204573393, + 0.01242525689303875, + -0.05919136852025986, + -0.038022980093955994, + -0.01258702389895916, + 0.0062973638996481895, + -0.008496626280248165, + 0.0008916450897231698, + -0.033740002661943436, + 0.028039637953042984, + -0.03592771291732788, + 0.012109425850212574, + -0.051364921033382416, + -0.008542845956981182, + -0.01110030710697174, + -0.0002350678842049092, + 0.06227264553308487, + -0.018857426941394806, + -0.01847226731479168, + 0.026930376887321472, + -0.005657998379319906, + 0.03141363710165024, + 0.03429463505744934, + -0.03968687355518341, + -0.005515489261597395, + 0.01716272346675396, + 0.05703447386622429, + 0.015652896836400032, + 0.05019403249025345, + 0.027562038972973824, + -0.03774566575884819, + 0.01861092448234558, + 0.024758076295256615, + -0.03614339977502823, + 0.038146231323480606, + -0.001127555500715971, + 0.00809606071561575, + 0.0023552526254206896, + 0.03817704692482948, + 0.012417553924024105, + 0.04005662724375725, + -0.038022980093955994, + -0.05444619804620743, + -0.0509643517434597, + 0.03481845185160637, + -0.014743919484317303, + -0.016454029828310013, + 0.02175382897257805, + -0.0003560321347322315, + -0.0011766633251681924, + 0.016099682077765465, + -0.001088076620362699, + 0.001533899107016623, + -0.017224349081516266, + -0.010006452910602093, + 0.02321743592619896, + -0.020968103781342506, + -0.03740672767162323, + -0.02531270682811737, + -0.032445866614580154, + 0.009590480476617813, + 0.0343562588095665, + 0.012563914991915226, + -0.05287474766373634, + -0.042891401797533035, + 0.02760825864970684, + -0.039132241159677505, + 0.019735591486096382, + -0.008319453336298466, + -0.00576199172064662, + 0.021152978762984276, + -0.0447709821164608, + 0.021815454587340355, + -0.0437849722802639, + 0.021969517692923546, + 0.0030389113817363977, + -0.019057709723711014, + 0.03466438874602318, + -0.017871417105197906, + 0.015267737209796906, + 0.002909882692620158, + -0.01959693431854248, + -0.007568391505628824, + 0.004660434555262327, + -0.021337855607271194, + -0.029195116832852364, + -0.04424716532230377, + -0.00396329490467906, + -0.00858136173337698, + 0.022786056622862816, + -0.01061500608921051, + 0.0005551116773858666, + 0.0031987526454031467, + -0.03256911784410477, + 0.022739838808774948, + -0.029041053727269173, + -0.005781249608844519, + 0.04544886201620102, + 0.014851763844490051, + -0.0034722161944955587, + -0.005561708472669125, + -0.04430878907442093, + -0.005249728914350271, + 0.022662805393338203, + 0.0025189456064254045, + -0.009759951382875443, + 0.03333943709731102, + 0.016947034746408463, + -0.0009937124559655786, + 0.059252992272377014, + 0.026421966031193733, + 0.006659414153546095, + -0.030427629128098488, + 0.017024066299200058, + 0.013395859859883785, + 0.010846101678907871, + 0.002174227498471737, + 0.01827198453247547, + 0.03417138382792473, + -0.043692536652088165, + 0.008465813472867012, + 0.0004997448995709419, + 0.013280312530696392, + 0.007129309233278036, + -0.029349181801080704, + 0.0006152928690426052, + 0.06211858242750168, + -0.033585939556360245, + 0.022477930411696434, + -0.0019219476962462068, + 0.021491920575499535, + 0.05114923045039177, + 0.007637720089405775, + 0.017085691913962364, + 9.412343933945522e-5, + -0.02304796688258648, + -0.0006254033069126308, + -0.02138407528400421, + -0.024095600470900536, + 0.010437832213938236, + -0.0016465584049001336, + 0.01813332550227642, + -0.011639530770480633, + -0.004078843165189028, + 0.020043719559907913, + 0.04661975055932999, + 0.04948534071445465, + 0.01389656774699688, + -0.004263719543814659, + -0.0023995458614081144, + -0.02565164677798748, + -0.03706778585910797, + 0.016731344163417816, + -0.0005921832635067403, + 0.027500413358211517, + 0.020690787583589554, + 0.035064954310655594, + -0.009613590314984322, + -0.007864964194595814, + 0.002669157925993204, + -0.002274368889629841, + 0.0031429044902324677, + -0.02645277976989746, + -0.01110030710697174, + -0.01848767325282097, + -0.007448991760611534, + 0.005815913900732994, + -0.018549298867583275, + 0.04886908456683159, + 0.030473848804831505, + -0.03839273378252983, + 0.0358969010412693, + 0.038022980093955994, + -0.029641903936862946, + -0.01699325256049633, + -0.018564704805612564, + 0.011531686410307884, + 0.015190704725682735, + -0.02403397485613823, + -0.006878955289721489, + -0.026190871372818947, + -0.018657144159078598, + 0.0017842530505731702, + -0.006312770303338766, + -0.05130329355597496, + 0.035188205540180206, + 0.026344934478402138, + -0.031444452702999115, + 0.02075241319835186, + 0.007934292778372765, + -0.033585939556360245, + -0.01036080066114664, + -0.06957527995109558, + -0.010345393791794777, + -0.028686705976724625, + -0.011115713976323605, + -0.045695364475250244, + -0.039779309183359146, + -0.050378911197185516, + -0.006840439047664404, + 0.014844060875475407, + -0.007888074032962322, + -0.017208943143486977, + -0.022493336349725723, + 0.011893736198544502, + -0.031922049820423126, + -0.0023244398180395365, + -0.006220331881195307, + 0.03300049528479576, + 0.012895151972770691, + -0.016592686995863914, + 0.007830300368368626, + 0.0009499005391262472, + 0.004375415854156017, + 0.019982093945145607, + 0.022277645766735077, + 0.06556961685419083, + 0.0018420270644128323, + -0.046989504247903824, + 0.030966853722929955, + -0.009744544513523579, + 0.009967937134206295, + 0.002609458053484559, + -0.023895317688584328, + -0.03383244201540947, + -0.021307043731212616, + -0.008935708552598953, + 0.02976515330374241, + -0.012494586408138275, + -0.0147824352607131, + 0.004914639983326197, + 0.0295648705214262, + -0.017594102770090103, + -0.028363171964883804, + -0.013411266729235649, + -0.05315206199884415, + -0.013850349001586437, + -0.0048453109338879585, + 0.05552464723587036, + -0.0035396190360188484, + 0.003102462738752365, + 0.023417720571160316, + 0.009944827295839787, + 0.013719393871724606, + 0.025281893089413643, + -0.03036600351333618, + 0.02123001217842102, + 0.027022816240787506, + -0.013288015499711037, + -0.028085857629776, + -0.0030793531332165003, + 0.009767654351890087, + -0.036174215376377106, + 0.0015676006441935897, + -0.017732759937644005, + -0.009644403122365475, + -0.01928880624473095, + -0.016762157902121544, + -0.014119960367679596, + 0.0029695825651288033, + 0.016407810151576996, + 0.012795010581612587, + -0.0244961678981781, + 0.02189248614013195, + 0.0006721039535477757, + 0.014705403707921505, + 0.021676797419786453, + 0.0036724992096424103, + -0.00800362229347229, + -0.01340356282889843, + 0.020814038813114166, + 0.026822533458471298, + 0.0036724992096424103, + 0.018595518544316292, + 0.011970768682658672, + -0.00883556716144085, + 0.04427797719836235, + -0.005076406989246607, + 0.00800362229347229, + 0.02141488902270794, + -0.0611017607152462, + -0.00711005087941885, + 0.016870001330971718, + -0.01036080066114664, + 0.0015396765666082501, + 0.01233281847089529, + 0.012818120419979095, + 0.012371335178613663, + -0.001496346085332334, + -0.002771225292235613, + -0.01397360023111105, + -0.04119670018553734, + -0.02008993923664093, + 0.0460343062877655, + -0.011893736198544502, + 0.012779604643583298, + -0.023124998435378075, + -0.014582152478396893, + 0.037499163299798965, + -0.029934624210000038, + -0.014181585982441902, + 0.018549298867583275, + -0.019704777747392654, + -0.0072217476554214954, + -0.008928005583584309, + -0.025851929560303688, + -0.02156895212829113, + -0.0012681388761848211, + -0.026237089186906815, + 0.024295883253216743, + 0.002981137251481414, + -0.03451032191514969, + -0.035866085439920425, + 0.018657144159078598, + -0.029287556186318398, + 0.0047952402383089066, + -0.00791118387132883, + -0.006836587563157082, + -0.0052535803988575935, + -0.021199198439717293, + 0.005792804528027773, + -0.033555127680301666, + -0.007861113175749779, + 0.0006355137447826564, + 0.027346350252628326, + -0.017686540260910988, + 0.06895902007818222, + -0.0385776124894619, + -0.02791638672351837, + -0.01273338496685028, + 0.0047952402383089066, + 0.023001747205853462, + -0.02141488902270794, + -0.014882576651871204, + -0.024881327524781227, + -0.0015830070478841662, + -0.005057149101048708, + 0.017393819987773895, + -0.028347766026854515, + 0.022154394537210464, + 0.01844145357608795, + -0.01226348988711834, + 0.007599204313009977, + -0.014990421943366528, + -0.008450407534837723, + -0.014559042640030384, + -0.017517071217298508, + 0.0009397900430485606, + -0.02027481608092785, + -0.03768404200673103, + -0.009444119408726692, + -0.0011593311792239547, + 0.0006422540755011141, + 0.013411266729235649, + 0.023648815229535103, + -0.004864569287747145, + -0.0075414301827549934, + -0.0030889820773154497, + -0.013842645101249218, + -0.02432669699192047, + -0.02645277976989746, + 0.015144485980272293, + 0.01896527223289013, + -0.002773151034489274, + -0.03118254244327545, + 0.023248249664902687, + 0.005754288285970688, + 0.03056628629565239, + -0.04791388660669327, + 0.0068558454513549805, + -0.012833526358008385, + -0.006139448378235102, + -0.034233007580041885, + 0.01112341694533825, + -0.01811791956424713, + 0.0017900305101647973, + 0.0014308688696473837, + 0.0028078153263777494, + -0.044370416551828384, + -0.027176879346370697, + 0.03429463505744934, + -0.022986341267824173, + -0.01927340030670166, + -0.017871417105197906, + 0.0048453109338879585, + -0.011601014994084835, + 0.017270568758249283, + 0.0020779373589903116, + -0.00482605304569006, + -0.020012905821204185, + -0.0058390237390995026, + 0.0015030864160507917, + 0.0006841401918791234, + 0.012702572159469128, + -0.021599765866994858, + -0.0004359528247732669, + 0.002665306208655238, + -0.026360340416431427, + -0.014559042640030384, + 0.0011217781575396657, + 0.029179710894823074, + 0.009343978017568588, + -0.016931626945734024, + -0.0007640608819201589, + 0.01750166341662407, + -0.001782327308319509, + -0.0025382034946233034, + 0.0279472004622221, + -0.0004451003624126315, + 0.023140404373407364, + 0.005565559957176447, + 0.040611255913972855, + -0.009929421357810497, + 0.01636159047484398, + -0.018687956035137177, + 0.00018740435189101845, + 0.0076223136857151985, + -0.029980843886733055, + -0.002310959156602621, + -0.007090792991220951, + -0.018025482073426247, + -0.01160871796309948, + -0.012440663762390614, + -0.026421966031193733, + 0.018842021003365517, + 0.011470060795545578, + -0.005037891212850809, + -0.0012276970082893968, + -0.04954696446657181, + 0.02549758367240429, + -0.03315456211566925, + 0.016376998275518417, + 0.030781976878643036, + 0.005292096640914679, + 0.05795885622501373, + 0.01086921151727438, + 0.013087731786072254, + 0.0048838271759450436, + 0.003508806461468339, + -0.003420219523832202, + 0.0017977337120100856, + -0.02010534517467022, + 0.006636304315179586, + -0.028178295120596886, + -0.010014156810939312, + 0.0027654478326439857, + -0.026421966031193733, + -0.008558251895010471, + -0.028825365006923676, + -0.003591615706682205, + 0.0014395349426195025, + 0.007757119834423065, + 0.0014713106211274862, + 0.03907061740756035, + -0.007741713430732489, + 0.025220267474651337, + -0.02371044084429741, + 0.03478763997554779, + 0.008219311013817787, + 0.020197782665491104, + 0.0012026616604998708, + 0.01685459539294243, + 0.005831320304423571, + 0.048098765313625336, + -0.006050861440598965, + -0.04021069034934044, + -0.009228430688381195, + -0.0006865474279038608, + 0.018225764855742455, + 0.028486423194408417, + -0.005415347870439291, + -0.0016407810617238283, + 0.00576199172064662, + -0.008080653846263885, + 0.03158310800790787, + -0.008496626280248165, + 0.017686540260910988, + -0.027731509879231453, + 0.004090397618710995, + 0.03789972886443138, + 0.01388116180896759, + 0.0004065843822900206, + 0.022801464423537254, + -0.02237008512020111, + 0.03608177602291107, + -0.011570202186703682, + 0.04985509440302849, + 0.017701948061585426, + 0.002882921602576971, + 0.015976430848240852, + -0.013341937214136124, + -0.011547092348337173, + -0.014497417025268078, + -0.02662224881350994, + 0.016099682077765465, + -0.014019818976521492, + 0.017070285975933075, + 0.016700532287359238, + -0.013103138655424118, + 0.006605491507798433, + -0.018194951117038727, + -0.013942787423729897, + -0.022662805393338203, + 0.00874312873929739, + 0.010260658338665962, + 0.07228679955005646, + -0.005846726708114147, + 0.036821283400058746, + 0.008126873522996902, + 0.01764032244682312, + 0.040919382125139236, + 0.046496499329805374, + -0.020059125497937202, + 0.013203280046582222, + -0.005731178913265467, + 0.02400316298007965, + 0.018657144159078598, + -0.039132241159677505, + 0.012902854941785336, + 0.02056753635406494, + -0.011369919404387474, + -0.0011641456512734294, + 0.05053297430276871, + -0.017054878175258636, + -0.0075337267480790615, + 0.009790763258934021, + 0.004460151307284832, + -0.016407810151576996, + 0.0048453109338879585, + 0.012633243575692177, + 0.03300049528479576, + 0.01911933533847332, + -0.017686540260910988, + -0.023910723626613617, + 0.027515821158885956, + -0.0016937404870986938, + 9.514651901554316e-5, + -0.0026210129726678133, + 0.02713066153228283, + -0.013249499723315239, + 0.0002309755509486422, + 0.0034837708808481693, + -0.011369919404387474, + -0.028085857629776, + -0.029025647789239883, + 0.02480429597198963, + -0.03025815822184086, + 0.004317642189562321, + -0.028224514797329903, + 0.017270568758249283, + -0.0044370414689183235, + -0.011000165715813637, + -0.02204655110836029, + 0.013133951462805271, + -0.01502123475074768, + 0.028455611318349838, + -5.434365084511228e-5, + -0.002748115686699748, + 0.01240985095500946, + -0.019165555015206337, + 0.04218271002173424, + -0.024634825065732002, + -0.03922468051314354, + -0.017686540260910988, + 0.04529479891061783, + -0.013488298282027245, + 0.022339271381497383, + 0.017609508708119392, + -0.01502123475074768, + -0.00021352300245780498, + 0.012556211091578007, + -0.007171676494181156, + -0.017409225925803185, + 0.03694453462958336, + -0.028548048809170723, + 0.040118250995874405, + -0.007375811226665974, + 0.020475098863244057, + -0.013357344083487988, + 0.02272443100810051, + -0.016376998275518417, + 0.0233715008944273, + -0.01699325256049633, + 0.022138988599181175, + 0.002775076776742935, + -0.053675878793001175, + -0.014089147560298443, + 0.0007741713197901845, + 0.017917636781930923, + -0.005276690237224102, + 0.013596143573522568, + -0.002260888461023569, + 0.04720519110560417, + 0.010422426275908947, + 0.007452843245118856, + -0.0029214376118034124, + -0.01135451253503561, + -0.020659975707530975, + -0.010638114996254444, + -0.005546302068978548, + -0.026529811322689056, + -0.03253830596804619, + 0.0039787013083696365, + -0.0016821856843307614, + 0.048098765313625336, + -0.022323865443468094, + -0.01093854010105133, + -0.007071535103023052, + 0.03287724405527115, + -0.0023668073117733, + -0.022832276299595833, + 0.020644567906856537, + 0.038978178054094315, + -0.016207527369260788, + 0.03971768543124199, + 0.00979846715927124, + -0.025235673412680626, + 0.0028135927859693766, + 0.024758076295256615, + 0.0032777104061096907, + -0.010514864698052406, + 0.004113507457077503, + -0.007468249648809433, + 0.02631412260234356, + 0.012594727799296379, + -0.039163053035736084, + -0.006724891252815723, + 0.011793594807386398, + 0.0030273564625531435, + 0.024896733462810516, + 0.05003996938467026, + -0.0142201017588377, + 0.030781976878643036, + 0.03500332683324814, + 0.008381078951060772, + 0.009575074538588524, + -0.00791118387132883, + -0.008435000665485859, + 0.003508806461468339, + -0.031167136505246162, + -0.012833526358008385, + 0.006193370558321476, + -0.03460276126861572, + -0.0512416698038578, + 0.002174227498471737, + -0.002145340433344245, + 0.016115088015794754, + -0.0009301610407419503, + 0.03105929121375084, + -0.011223558336496353, + -0.04168970510363579, + -0.01086921151727438, + 0.01717812940478325, + 0.002314810873940587, + -0.004648879636079073, + 0.01455133967101574, + 0.0015319733647629619, + -0.024449948221445084, + 0.008188499137759209, + -0.00042247222154401243, + -0.004652731120586395, + -0.0009075329289771616, + 0.012294302694499493, + 0.014358759857714176, + 0.03645152971148491, + 0.017748165875673294, + 0.015768444165587425, + -0.022847682237625122, + -0.008111466653645039, + 0.004710505250841379, + -0.026375748217105865, + 0.002871366683393717, + 0.00030740571673959494, + 0.023155810311436653, + 8.172610978363082e-5, + 0.02076781913638115, + -0.012232677079737186, + 0.013542220927774906, + 0.004282977897673845, + 0.013781019486486912, + 0.0405496321618557, + 0.00031679400126449764, + -0.0017399596981704235, + 0.01191684603691101, + -0.013018403202295303, + 0.004976265598088503, + -0.008188499137759209, + -0.02012075111269951, + 0.02073700726032257, + -0.0006191444699652493, + 0.04199783131480217, + 0.004094249568879604, + -0.01551423966884613, + 0.02383369207382202, + -0.017116503790020943, + 0.030335191637277603, + 0.0011410360457375646, + 0.020367253571748734, + -0.030458442866802216, + -0.02876373939216137, + -0.03173717111349106, + 0.021784642711281776, + -0.023124998435378075, + -0.03888573870062828, + 0.0014144995948299766, + -0.00792658980935812, + -0.006482240278273821, + 0.006474537309259176, + 6.373192445607856e-5, + 0.019504494965076447, + 0.04187458008527756, + 0.05084110051393509, + 0.024111008271574974, + -0.000807391363196075, + 0.002961879363283515, + 0.02175382897257805, + -0.027407975867390633, + 0.006254996173083782, + -0.008357969112694263, + 0.0199204683303833, + -0.01603805646300316, + -0.005727326963096857, + 0.03263074532151222, + -0.0006436984403990209, + -0.003320078132674098, + -0.006108635570853949, + -2.225200842076447e-5, + 0.020028313621878624, + 0.009089772589504719, + -0.011315996758639812, + -0.003175643039867282, + -0.00014900871610734612, + -0.009929421357810497, + 0.009706028737127781, + 0.008296343497931957, + 0.023325281217694283, + 0.012016987428069115, + 0.013180170208215714, + -0.002632567659020424, + -0.023756660521030426, + -0.007198637817054987, + -0.01388116180896759, + -0.03870086371898651, + 0.01697784662246704, + -0.0021318597719073296, + 0.007934292778372765, + -0.0055308956652879715, + 0.01429713424295187, + -0.027007410302758217, + -0.019643152132630348, + -0.008065247908234596, + -0.021861674264073372, + 0.0003057206340599805, + 0.001861285069026053, + -0.03216855227947235, + -0.02272443100810051, + -0.008350266143679619, + 0.014420385472476482, + -0.01429713424295187, + -0.012517695315182209, + 0.0005267061060294509, + 0.019381243735551834, + -0.004375415854156017, + -0.022323865443468094, + -0.036821283400058746, + -0.020659975707530975, + 0.00858136173337698, + -0.036667220294475555, + 0.00972913857549429, + 0.014050631783902645, + -0.0014154624659568071, + 0.044062286615371704, + 0.043384406715631485, + 0.004090397618710995, + -0.019643152132630348, + -0.029688121750950813, + 0.04116588458418846, + -0.007687790784984827, + 0.025528395548462868, + -0.00030114687979221344, + 0.002767373574897647, + -0.012671759352087975, + 0.00965210609138012, + -0.008119169622659683, + 0.014512823894619942, + 0.03170635923743248, + -0.006489943712949753, + 0.013110841624438763, + -0.0012729533482342958, + -0.018364422023296356, + -0.006428318098187447, + 0.04461691901087761, + 0.02925674244761467, + 0.00015105489001143724, + 0.012140238657593727, + -0.007106199394911528, + -0.0014039076631888747, + -0.0017611434450373054, + -0.023618003353476524, + -0.019489089027047157, + -0.0034587355330586433, + -0.004641176201403141, + 0.0018227690597996116, + -0.0010832621483132243, + 0.009767654351890087, + -0.0031120916828513145, + -0.019042303785681725, + -0.01847226731479168, + 0.010399316437542439, + 0.00625114468857646, + -0.0057119205594062805, + -0.0006696967175230384, + 0.00930546224117279, + 0.016608092933893204, + -0.016962440684437752, + -0.007090792991220951, + 0.015082860365509987, + 0.02289390191435814, + -0.007129309233278036, + -0.002424581442028284, + -0.018996084108948708, + -0.016376998275518417, + 0.008666097186505795, + 0.018503079190850258, + 0.022477930411696434, + 0.0003078871523030102, + -0.021923299878835678, + 0.029164304956793785, + -0.016145901754498482, + 0.004702801816165447, + -0.026252496987581253, + -0.016885409131646156, + -0.01502123475074768, + 0.01250228937715292, + 0.0166851244866848, + 0.03709859773516655, + -0.010106595233082771, + -0.009128288365900517, + -0.0004140468663536012, + -0.011762782000005245, + -0.01144695095717907, + -0.009151398204267025, + 0.03971768543124199, + -0.007217895705252886, + -0.017116503790020943, + -0.017239755019545555, + -0.02240089699625969, + 0.009790763258934021, + -0.020629161968827248, + -0.014258618466556072, + -0.04193620756268501, + 0.01799466833472252, + -0.006543865893036127, + -0.034233007580041885, + 0.015136783011257648, + 0.0010726702166721225, + 0.014381869696080685, + 0.011300590820610523, + -0.0019460201729089022, + -0.03484926372766495, + 0.0002835739578586072, + -0.03611258789896965, + -0.012486882507801056, + -0.009351681917905807, + -0.012671759352087975, + 0.043877411633729935, + 0.005819765385240316, + 0.010745960287749767, + -0.006728742737323046, + -0.008696909993886948, + -0.007333443965762854, + 0.028702113777399063, + -0.02713066153228283, + -0.011739672161638737, + -0.0018044739263132215, + -0.005773546174168587, + -0.005908352322876453, + 0.02745419554412365, + -0.023926131427288055, + -0.015521942637860775, + -0.006174112670123577, + 0.0223854910582304, + -0.02253955602645874, + -0.03626665100455284, + 0.016962440684437752, + -0.003233416937291622, + -0.003826563246548176, + -0.00044485964463092387, + 0.019196366891264915, + 0.023772066459059715, + 0.012879746034741402, + 0.00206445693038404, + 0.0012960629537701607, + 0.002800112124532461, + -0.0016841115429997444, + -0.030504660680890083, + 0.01617671363055706, + -0.024480760097503662, + -0.023648815229535103, + -0.08726181834936142, + -0.02058294229209423, + 0.0010620782850310206, + 0.039471182972192764, + 0.017285974696278572, + -0.03315456211566925, + 8.985057502286509e-5, + 0.026206277310848236, + -0.025682460516691208, + 0.018703363835811615, + 0.008435000665485859, + -0.019489089027047157, + 0.019011490046977997, + 0.0305508803576231, + 0.025928961113095284, + -0.009898608550429344, + 0.004178984556347132, + 0.019673965871334076, + 0.0058005074970424175, + -0.0163307785987854, + -0.009852388873696327, + 0.014705403707921505, + 0.024234257638454437, + 0.0017832901794463396, + 0.0028732926584780216, + 0.029364587739109993, + -0.03836192190647125, + 0.008034435100853443, + -0.011007868684828281, + 0.002476577879860997, + 0.00801902823150158, + 0.0248505137860775, + -0.006089377216994762, + -0.0056310370564460754, + 0.03158310800790787, + 0.015899399295449257, + 0.02418803982436657, + -0.03036600351333618, + 0.028162889182567596, + 0.02386450581252575, + 0.006844290532171726, + -0.01733219437301159, + -0.02255496196448803, + -0.013996709138154984, + -0.0047644274309277534, + -0.0017832901794463396, + 0.029025647789239883, + -0.02612924575805664, + -0.00436386140063405, + 0.029118085280060768, + 0.01616130769252777, + -0.0018179545877501369, + 0.003612799569964409, + -0.024480760097503662, + -0.028455611318349838, + -0.0009186062961816788, + 0.0025401292368769646, + -0.0033008200116455555, + 0.0022127435076981783, + -0.0011882181279361248, + 0.06073200702667236, + 0.0058775395154953, + -0.0040287720039486885, + 0.006867400370538235, + -0.004579550586640835, + 0.015722226351499557, + 0.025851929560303688, + 0.023248249664902687, + 0.023248249664902687, + 0.010961649939417839, + 0.03315456211566925, + -0.011893736198544502, + 0.027084441855549812, + 0.029934624210000038, + -0.009682918898761272, + 0.018349016085267067, + -0.0023321430198848248, + -0.008072950877249241, + 0.030520066618919373, + -0.011485466733574867, + -0.011185042560100555, + 0.004879975691437721, + 0.00045039632823318243, + 0.007244857028126717, + -0.0007919849595054984, + 0.008966521359980106, + 0.01005267258733511, + -0.013280312530696392, + -0.008288640528917313, + 0.013326531276106834, + 0.0032276397105306387, + 0.016130495816469193, + 0.03135201334953308, + 0.010129704140126705, + -0.009667512960731983, + 0.061533138155937195, + 0.002310959156602621, + -0.009667512960731983, + -0.012224974110722542, + -0.004360009450465441, + -0.0006783627904951572, + -0.016068870201706886, + 0.014050631783902645, + -0.04363090917468071, + -0.016099682077765465, + 0.0009831205243244767, + -0.01896527223289013, + 0.018087107688188553, + -0.02515864185988903, + -0.0032680814620107412, + -0.013781019486486912, + 0.03007328137755394, + -0.008496626280248165, + 0.02010534517467022, + -0.0270998477935791, + -0.005665701348334551, + 0.005735030397772789, + -0.014928796328604221, + -0.03247667849063873, + -0.009428713470697403, + 0.014998124912381172, + 0.021507326513528824, + -0.015313955955207348, + -0.024080194532871246, + -0.0005040779942646623, + -0.007691642269492149, + -0.007776377722620964, + -0.019966688007116318, + 0.004829904530197382, + 0.025913555175065994, + -0.01568370871245861, + 0.02699200250208378, + -0.03509576618671417, + 0.01582236774265766, + -0.002958027645945549, + 0.022185208275914192, + 0.013126248493790627, + -0.01782519929111004, + 0.019150149077177048, + -0.015213814564049244, + 0.013873457908630371, + -0.0104532390832901, + 0.009382493793964386, + -0.0004901158972643316, + -0.0072140442207455635, + -0.017594102770090103, + -0.01663890667259693, + -0.01126977801322937, + -0.0034837708808481693, + -0.0049916720017790794, + -0.007888074032962322, + 0.009189913980662823, + 0.005230471026152372, + -0.011654937639832497, + -0.004602660425007343, + -0.04415472596883774, + -0.00963670015335083, + 0.022786056622862816, + -0.0061278934590518475, + 0.004671989008784294, + -0.028471017256379128, + 0.0006181815988384187, + 0.0018680252833291888, + -0.007267966400831938, + 0.0209064781665802, + -0.010491754859685898, + 0.005191954784095287, + -0.007406624034047127, + -0.004548737779259682, + -0.01616130769252777, + -0.0029233633540570736, + 0.00012090408563381061, + 0.0023225140757858753, + 0.02058294229209423, + -0.020166970789432526, + -0.0013673175126314163, + -0.02469645068049431, + -0.015776148065924644, + 0.009251539595425129, + -0.003564654616639018, + 0.004772130865603685, + 0.015452614054083824, + 0.01945827715098858, + 0.01373480074107647, + -0.009698325768113136, + 0.01438957266509533, + -0.013942787423729897, + 0.0006677709170617163, + 0.010961649939417839, + 0.00832715630531311, + 0.01631537266075611, + 0.007356553338468075, + -0.022154394537210464, + 0.009089772589504719, + 0.0029233633540570736, + -0.013418969698250294, + 0.028363171964883804, + 0.042891401797533035, + -0.04837607964873314, + -0.002961879363283515, + 0.007664681412279606, + -0.020475098863244057, + 0.036667220294475555, + 0.016715938225388527, + -0.006840439047664404, + 0.0012931742239743471, + -0.02418803982436657, + 0.016608092933893204, + 0.01110030710697174, + -0.0039787013083696365, + -0.017054878175258636, + 0.004279125947505236, + 0.010345393791794777, + 0.0055231922306120396, + -0.0076030557975173, + 0.007291076239198446, + 0.020675381645560265, + -0.00400951411575079, + 0.03253830596804619, + -0.0008025768911466002, + 0.04526398703455925, + 0.005134181119501591, + 0.026252496987581253, + -0.0356195829808712, + 0.009112882427871227, + 0.004926194436848164, + -0.014181585982441902, + -0.07536808401346207, + -0.02058294229209423, + -0.01494420226663351, + 0.0038689307402819395, + -0.005037891212850809, + 0.009667512960731983, + 0.01117733959108591, + 0.0012710274895653129, + 0.0002367529523326084, + 0.007321889046579599, + 0.0012575469445437193, + 0.015545052476227283, + 0.006917471066117287, + -0.001871876884251833, + -0.012456069700419903, + -0.012933667749166489, + -0.0036320574581623077, + 0.035557959228754044, + 0.025189455598592758, + -0.004321493674069643, + -0.004490964114665985, + 0.004564144182950258, + -0.01816413924098015, + 0.01617671363055706, + 0.020875664427876472, + -0.022662805393338203, + -0.0038361921906471252, + -0.012386741116642952, + -0.0033258553594350815, + 0.009759951382875443, + -0.004579550586640835, + 0.0053113545291125774, + -0.013557626865804195, + -0.0027866316959261894, + 0.00801902823150158, + 0.024111008271574974, + -0.01240985095500946, + 0.006524608004838228, + -0.02726931869983673, + 0.01267946232110262, + -0.0034587355330586433, + 0.024295883253216743, + 0.0002182171301683411, + -0.001249843742698431, + -0.008458110503852367, + -0.00915910117328167, + -0.02452697977423668, + 0.007356553338468075, + 0.023895317688584328, + -0.029703527688980103, + -0.016115088015794754, + 0.009736841544508934, + 0.011531686410307884, + -0.02061375603079796, + -0.0036821283865720034, + -0.021322449669241905, + 0.0166851244866848, + 0.006867400370538235, + 9.310035966336727e-5, + 0.012910558842122555, + 0.013234092853963375, + 0.03854680061340332, + -0.009983344003558159, + -0.002773151034489274, + 0.0187958013266325, + 0.028886990621685982, + -0.03039681725203991, + 0.010152813978493214, + 0.004140468314290047, + 0.018857426941394806, + 0.033092934638261795, + 0.00825782772153616, + 0.0036185767967253923, + -0.002686490071937442, + -0.01266405638307333, + -0.0343562588095665, + -0.003803453641012311, + 0.00044678544509224594, + -0.00022014293062966317, + -0.0012883597519248724, + -0.008211608044803143, + 0.016561873257160187, + 1.9950077330577187e-5, + -0.007949699647724628, + 0.007529875263571739, + -0.007271818351000547, + -0.03623583912849426, + 0.00041476901969872415, + 0.017517071217298508, + -0.0025150938890874386, + 0.015652896836400032, + -0.01730138063430786, + -0.024557793512940407, + 0.003890114603564143, + 0.0003447180788498372, + 0.03201448917388916, + -0.005111071281135082, + -0.034541137516498566, + -0.03153688833117485, + -0.011362215504050255, + 0.0031101659405976534, + -0.0074913594871759415, + -0.0010206736624240875, + -0.0025959773920476437, + 0.002934918040409684, + -0.011909143067896366, + -0.007368108257651329, + -0.005688811186701059, + 0.007468249648809433, + -0.012109425850212574, + 0.012402147985994816, + -0.012078613042831421, + -0.005076406989246607, + -0.002260888461023569, + 0.013372750021517277, + 0.002176153240725398, + -0.0016966292168945074, + 0.024773482233285904, + -0.0033027457538992167, + -0.0013634659117087722, + 0.021954111754894257, + 0.007287224754691124, + -0.0064860922284424305, + 0.012563914991915226, + 0.0033277811016887426, + -0.001341319177299738, + 0.005322909448295832, + -0.0034414033871144056, + 0.0305508803576231, + -0.022447116672992706, + -0.007321889046579599, + -0.03981012478470802, + -0.011839814484119415, + -0.04655812308192253, + 0.0031120916828513145, + -0.005627185571938753, + 0.015098266303539276, + -0.03842354938387871, + 0.0025150938890874386, + 0.00445629982277751, + -0.0233715008944273, + -0.009082069620490074, + -0.015537348575890064, + 0.01258702389895916, + -0.01942746341228485, + -0.038639236241579056, + -0.008396484889090061, + 0.004783685319125652, + -0.0007096570334397256, + 0.005704217590391636, + 0.015645192936062813, + 0.00261138379573822, + -0.015483426861464977, + -0.013942787423729897, + -0.010499457828700542, + -0.039471182972192764, + 0.006439873017370701, + -0.004074991215020418, + -0.0008555363165214658, + 0.0010582266841083765, + 0.008011325262486935, + 0.01979721710085869, + 0.005785101093351841, + -0.004668137524276972, + -0.005018632858991623, + 0.010021859779953957, + 0.02172301709651947, + 0.014381869696080685, + 0.018564704805612564, + -0.006551569327712059, + 0.021954111754894257, + -0.03155229613184929, + -0.005738881882280111, + 0.0025709420442581177, + 0.023294469341635704, + -0.01683918945491314, + 0.01896527223289013, + -0.00930546224117279, + 0.015776148065924644, + 0.020860258489847183, + -0.0016696680104359984, + 0.00045304428203962743, + 0.004887678660452366, + -0.004533331375569105, + -0.008604471571743488, + -0.008635284379124641, + -0.001697592088021338, + -0.01412766333669424, + 0.003807305358350277, + 0.009621293283998966, + 0.019381243735551834, + -0.005334463901817799, + -0.0027904831804335117, + -0.021522732451558113, + 0.010329987853765488, + 0.01126977801322937, + -0.02056753635406494, + 0.0030254307202994823, + 0.012047800235450268, + -0.0269611906260252, + 0.009197617881000042, + 0.0024111007805913687, + 0.0030196532607078552, + -0.003772640833631158, + 0.026868751272559166, + 0.014574449509382248, + 0.013187874108552933, + 0.046003494411706924, + -0.03278480842709541, + 0.013418969698250294, + -0.0474516935646534, + -0.008666097186505795, + -0.02235467918217182, + -0.03158310800790787, + -0.03811541944742203, + -0.0033123749308288097, + -0.0197818111628294, + -0.010553380474448204, + -0.011893736198544502, + 0.01651565544307232, + -0.01226348988711834, + 0.024111008271574974, + 0.01373480074107647, + 0.004202093929052353, + -0.017517071217298508, + -0.0019363912288099527, + -0.030612505972385406, + -0.007695494219660759, + -0.0024611714761704206, + 0.008080653846263885, + -0.008750831708312035, + -0.019489089027047157, + 0.033585939556360245, + 0.007241005543619394, + 0.011000165715813637, + -0.007649275008589029, + 0.01364236231893301, + -0.006636304315179586, + 0.030597100034356117, + 0.030520066618919373, + -0.008134576492011547, + -0.016130495816469193, + -0.027176879346370697, + -0.0026749351527541876, + -0.017363006249070168, + 0.008080653846263885, + -0.010930837132036686, + 0.021645983681082726, + -0.024449948221445084, + -0.03038140945136547, + -0.0004720615688711405, + 0.010145111009478569, + -0.005973829422146082, + 0.016130495816469193, + -0.008049841038882732, + -0.0030080985743552446, + 0.007949699647724628, + 0.014543636702001095, + -0.03204530104994774, + 0.0017967707244679332, + 0.013888864777982235, + -0.004321493674069643, + 0.006016197148710489, + -0.0053113545291125774, + 0.012286599725484848, + -0.02059835009276867, + -0.007048425264656544, + 0.0358969010412693, + -0.01665431261062622, + 0.0015310104936361313, + -0.023756660521030426, + 0.0004804869240615517, + -0.0038496728520840406, + -0.007460546679794788, + -0.020629161968827248, + -0.021445700898766518, + -0.0033740003127604723, + -0.004121210426092148, + -0.008134576492011547, + -0.0174554456025362, + 0.007895777001976967, + 0.000259020016528666, + -0.010114298202097416, + -0.01845686137676239, + 0.015005827881395817, + -0.004144320264458656, + -0.002416878240182996, + -0.010822991840541363, + -0.010430129244923592, + 0.00012325115676503628, + 0.0014828654238954186, + -0.0009166804957203567, + 0.0009869721252471209, + -0.011470060795545578, + -0.006135596428066492, + -0.006697929929941893, + -0.005145735573023558, + 0.011909143067896366, + 0.01559897419065237, + 0.0046257697977125645, + -0.004202093929052353, + -0.037006158381700516, + 0.012579320929944515, + 0.023802880197763443, + 0.0044755577109754086, + -0.006228034850209951, + 0.009243836626410484, + 0.019566120579838753, + 0.005600224249064922, + 0.007637720089405775, + -0.00657853065058589, + -0.0011188894277438521, + -0.00045954386587254703, + -0.009474932216107845, + 0.0013653917703777552, + -0.010645818896591663, + 0.008935708552598953, + 0.0036590187810361385, + 0.07505995035171509, + -0.00396329490467906, + -0.017871417105197906, + -0.009012741036713123, + 0.00212223082780838, + -0.0067557040601968765, + 0.011200448498129845, + 0.026190871372818947, + -0.015930211171507835, + -0.004806795157492161, + 0.005307503044605255, + -0.02662224881350994, + 0.015491129830479622, + -0.014936499297618866, + -0.014343352988362312, + 0.0019354283576831222, + 0.01512907911092043, + 0.016423216089606285, + -0.014720809645950794, + 0.025251081213355064, + 0.015329362824559212, + 0.0016590760787948966, + 0.006332028191536665, + -0.0028386281337589025, + -0.004552589729428291, + -0.009598183445632458, + 0.003924779128283262, + 0.003803453641012311, + -0.0018747656140476465, + 0.026914970949292183, + 0.021168386563658714, + 0.0028906248044222593, + -0.03746835142374039, + -0.021014321595430374, + 0.009259243495762348, + -0.001728404895402491, + 0.012278896756470203, + -0.006343583110719919, + -0.014928796328604221, + 0.013580736704170704, + -0.008388781920075417, + -0.009359384886920452, + 0.020336439833045006, + 0.004101952537894249, + -0.008365672081708908, + -0.0003637353365775198, + -0.007086941506713629, + -0.010815288871526718, + -0.018503079190850258, + -0.007680087815970182, + -0.010884617455303669, + -0.008319453336298466, + 0.015444910153746605, + -0.006439873017370701, + -0.0040287720039486885, + -0.006416763179004192, + 0.004926194436848164, + -0.0026961190160363913, + -0.02891780249774456, + -0.005692662671208382, + 0.003620502771809697, + -0.02565164677798748, + -0.020367253571748734, + -0.01995128020644188, + -0.0029792115092277527, + -0.009328572079539299, + -0.013688581064343452, + -0.017085691913962364, + 0.004695098847150803, + 0.0003485696797724813, + 0.005692662671208382, + 0.010145111009478569, + 0.011154229752719402, + -0.01495190616697073, + -0.0026537515223026276, + 0.0064783887937664986, + 0.016454029828310013, + 0.021045135334134102, + 0.0017312936251983047, + 0.0020740858744829893, + 0.007179379928857088, + -0.003616651054471731, + 0.006871251855045557, + 0.005862133111804724, + -0.010191329754889011, + 0.020382659509778023, + 0.026406560093164444, + -0.007649275008589029, + 0.007595352362841368, + -0.00706383166834712, + -0.007610758766531944, + 0.002199262846261263, + -0.014574449509382248, + -0.011007868684828281, + 0.005584817845374346, + 0.00013492631842382252, + 0.0028655894566327333, + -0.022031143307685852, + 0.0004046585818286985, + -0.006401356775313616, + 0.019381243735551834, + 0.023155810311436653, + 0.017532477155327797, + -0.0004506370460148901, + -0.0004785611236002296, + 0.0012835452798753977, + 0.011839814484119415, + -0.010014156810939312, + -0.027485007420182228, + -0.0005762954242527485, + 0.006513053085654974, + -0.009590480476617813, + -0.010191329754889011, + -0.01373480074107647, + -0.012802713550627232, + 0.02109135501086712, + 0.02796260640025139, + -0.0023321430198848248, + -0.0047336146235466, + -0.021630577743053436, + -0.0346335731446743, + 0.005500082857906818, + 0.0011188894277438521, + -0.024434542283415794, + 0.02383369207382202, + 0.008512033149600029, + -0.011570202186703682, + -0.006520756520330906, + -0.012479179538786411, + -0.0018372125923633575, + 0.00832715630531311, + 0.01362695638090372, + 0.02008993923664093, + -0.01151627954095602, + -0.015883993357419968, + 0.001562786172144115, + 0.016284558922052383, + 0.0129182618111372, + 0.013426672667264938, + 0.0015069380169734359, + 0.017193535342812538, + 0.020675381645560265, + -0.005858281627297401, + 0.006867400370538235, + -0.00396329490467906, + 0.03025815822184086, + -0.0027538929134607315, + -0.02289390191435814, + 0.022662805393338203, + -0.002615235513076186, + 0.027084441855549812, + -0.03070494346320629, + -0.0035800610203295946, + -0.0002729820553213358, + 0.004325345158576965, + 0.004783685319125652, + -0.020459691062569618, + 0.007144715636968613, + -0.010761366225779057, + -0.003851598594337702, + 0.010553380474448204, + 0.009382493793964386, + -0.024064788594841957, + 0.0012161423219367862, + 0.0018160287290811539, + 0.0064475759863853455, + 0.02153814025223255, + 0.019566120579838753, + 0.008804754354059696, + 0.01733219437301159, + -0.013295718468725681, + 0.002821295987814665, + 0.0031313495710492134, + -0.05216605216264725, + 0.015899399295449257, + 0.01037620659917593, + 0.010784476064145565, + 0.015321658924221992, + -0.014967312105000019, + 0.016962440684437752, + -0.00599693926051259, + -0.021784642711281776, + 0.008943412452936172, + 0.001931576756760478, + -0.0038438953924924135, + -0.01762491464614868, + 0.005126477684825659, + -0.004263719543814659, + 0.00510721979662776, + -0.004390822257846594, + -0.013095435686409473, + 0.028224514797329903, + -0.00939790066331625, + -0.0009580851765349507, + -0.018734175711870193, + -0.003876633942127228, + 0.006012345664203167, + 0.02287849597632885, + -0.020983509719371796, + -0.0027095996774733067, + 0.011084901168942451, + 0.00033749634167179465, + -0.0012016987893730402, + -0.013280312530696392, + 0.004325345158576965, + -0.022308459505438805, + -0.026083026081323624, + -0.017363006249070168, + -0.004194390960037708, + 0.009205320850014687, + -0.03173717111349106, + -0.02469645068049431, + 0.01586858555674553, + -0.005885242484509945, + -0.0235101580619812, + 0.012309709563851357, + 0.0036898315884172916, + 0.022801464423537254, + 0.0010370429372414947, + 0.015622084029018879, + 0.0004429338441696018, + 0.021199198439717293, + 0.0129182618111372, + -0.004194390960037708, + -0.015221517533063889, + 0.0073026311583817005, + 0.004914639983326197, + 0.00808835681527853, + 0.012702572159469128, + -0.006959838792681694, + 0.02383369207382202, + 0.004417783580720425, + -0.005014781374484301, + 0.01734760031104088, + 0.005607927683740854, + 0.00979846715927124, + 0.011909143067896366, + -0.003181420499458909, + 0.007784080691635609, + 0.002884847344830632, + -0.009020444005727768, + 0.0007838003220967948, + -0.019874248653650284, + 0.009783060289919376, + 0.006393653806298971, + 0.003156385151669383, + 0.01479013916105032, + -0.005238173995167017, + -0.01794845052063465, + -3.436348197283223e-5, + -0.01267946232110262, + -0.006285808980464935, + -0.016592686995863914, + 0.008311749435961246, + 0.00979846715927124, + -0.0040287720039486885, + -0.0062665510922670364, + 0.003994107712060213, + -0.00025348333292640746, + -0.005384535063058138, + -0.005357573740184307, + -0.016746750101447105, + -0.016561873257160187, + -0.0019498717738315463, + -0.0013268757611513138, + 0.009051256813108921, + -0.017224349081516266, + 0.01240985095500946, + 0.008427297696471214, + 0.0237258467823267, + 0.00848892331123352, + 0.0008531290804967284, + 0.002580570988357067, + 0.005265135318040848, + -0.004930046387016773, + -0.010861508548259735, + 0.0004983005928806961, + 0.003096685279160738, + -0.00259020016528666, + 0.0018998010782524943, + -0.00641291169449687, + 0.0012132535921409726, + -0.01747085154056549, + -0.017101097851991653, + -0.021476514637470245, + -0.03281562030315399, + 0.0023533266503363848, + 0.01567600667476654, + -0.022000331431627274, + -0.0016494471346959472, + 0.0027327092830091715, + 0.0006644007517024875, + 0.004964710678905249, + -0.0008834604523144662, + 0.015144485980272293, + 0.017224349081516266, + -0.013049216009676456, + 0.004148171748965979, + 0.015714522451162338, + 0.005600224249064922, + -0.022832276299595833, + -0.022786056622862816, + -0.006647859234362841, + -0.015059750527143478, + -0.0066170464269816875, + 0.006767258979380131, + 0.014574449509382248, + 0.013657769188284874, + -0.017363006249070168, + 0.007252559997141361, + 0.009097475558519363, + -0.0050841099582612514, + 0.02172301709651947, + 0.0012459921417757869, + -3.616891990532167e-5, + -0.027423381805419922, + 0.011901440098881721, + 0.03219936415553093, + -0.005307503044605255, + -0.0008536105742678046, + -0.0015069380169734359, + -0.003424071241170168, + -0.002854034537449479, + 0.023094184696674347, + 0.014004413038492203, + 0.017270568758249283, + 0.0030543177854269743, + 0.0052535803988575935, + 0.003853524336591363, + -0.01324179582297802, + 0.023479344323277473, + -0.025928961113095284, + -0.005985384341329336, + -0.006547717843204737, + -0.01267946232110262, + 0.03836192190647125, + -0.015260033309459686, + -0.007799487095326185, + -0.008119169622659683, + -0.0022088917903602123, + -0.0074335853569209576, + -0.009290056303143501, + -0.0016715937526896596, + 0.003023504978045821, + -0.0006398468394763768, + 0.01275649480521679, + 0.004371564369648695, + -0.0002693711721803993, + -0.0111927455291152, + 0.021122166886925697, + 0.0014125738525763154, + 0.002640270860865712, + -0.0060277520678937435, + 0.013465188443660736, + -0.002884847344830632, + 0.006871251855045557, + 0.014258618466556072, + -0.011369919404387474, + -0.00032521935645490885, + -0.0012508066138252616, + -0.01748625747859478, + 0.023479344323277473, + -0.01504434458911419, + -0.0199204683303833, + 0.0024072490632534027, + 0.009790763258934021, + -0.0013798351865261793, + -6.5409471972088795e-6, + -0.007194786332547665, + -0.012178754433989525, + 0.002037495607510209, + -0.013164764270186424, + -0.025590021163225174, + -0.007452843245118856, + -0.021029729396104813, + -0.008789348416030407, + 0.017778979614377022, + 0.010838398709893227, + -0.009744544513523579, + -0.0069367289543151855, + 0.004814498126506805, + -0.011577905155718327, + -0.006736446171998978, + 0.00881245732307434, + 0.019966688007116318, + 0.013341937214136124, + -0.005993087310343981, + 0.02073700726032257, + -0.012094019912183285, + -0.01976640336215496, + 0.0012777678202837706, + -0.006151002831757069, + 0.00522661954164505, + -0.009713731706142426, + -0.003175643039867282, + -0.01200928445905447, + -0.011015571653842926, + 0.022940121591091156, + -0.0034664387349039316, + 0.001140073174610734, + -0.0029272150713950396, + -0.023232843726873398, + 0.031922049820423126, + 0.02699200250208378, + -0.0037418280262500048, + -0.03170635923743248, + 0.00801902823150158, + 0.01095394603908062, + 0.017686540260910988, + 0.007726307027041912, + 0.002364881569519639, + 0.0007866889936849475, + -0.004521776922047138, + 0.01831820234656334, + 0.0007443214417435229, + 0.005188103299587965, + 0.012818120419979095, + 0.021183792501688004, + 0.019365837797522545, + 0.00047904258826747537, + 0.02189248614013195, + 0.007271818351000547, + 0.02109135501086712, + 0.0010996314231306314, + 0.0005536673124879599, + -0.006020048633217812, + 0.015883993357419968, + -0.00044028586125932634, + -0.0027654478326439857, + 0.0326615571975708, + -0.009914014488458633, + 0.0015993763227015734, + 0.012294302694499493, + 0.005846726708114147, + -0.01634618453681469, + -0.006543865893036127, + 0.013696284964680672, + -0.01199387852102518, + -0.006636304315179586, + 0.0019084671512246132, + -0.032415054738521576, + -0.023818286135792732, + -0.011161932721734047, + -0.005288244690746069, + 0.017547883093357086, + 0.015768444165587425, + 0.008928005583584309, + 0.0024033975787460804, + -0.001886320416815579, + -0.009967937134206295, + -0.006728742737323046, + 0.013341937214136124, + 0.027993418276309967, + -0.008781644515693188, + -0.03321618586778641, + -0.00963670015335083, + -0.006909768097102642, + 0.004163578152656555, + 0.02187708020210266, + -0.025389738380908966, + -0.0038958920631557703, + -0.009644403122365475, + -0.0006966579239815474, + 0.003345113480463624, + 8.74433244462125e-5, + 0.014482011087238789, + -0.0038727824576199055, + 0.012124832719564438, + 0.012278896756470203, + 0.009089772589504719, + -0.006151002831757069, + 0.019211774691939354, + 0.018749581649899483, + -0.004914639983326197, + 0.014990421943366528, + 0.02012075111269951, + -0.012078613042831421, + 0.008388781920075417, + 0.010044969618320465, + -0.018056293949484825, + -0.009821576066315174, + 0.0032160847913473845, + -0.02925674244761467, + -0.0028058895841240883, + -0.002255111001431942, + -0.0027904831804335117, + -0.0005536673124879599, + 0.019735591486096382, + -0.004071139730513096, + 0.013526814058423042, + 0.003955591935664415, + -0.0030080985743552446, + 0.006301215384155512, + 0.015344768762588501, + -0.0052035097032785416, + -0.026853345334529877, + 0.014605262316763401, + 0.01862633042037487, + 0.0016802599420771003, + -0.009297759272158146, + 0.0061201900243759155, + -0.005785101093351841, + 0.0006894361576996744, + 0.01257161796092987, + -0.001210364862345159, + -0.005010929889976978, + -0.007190934848040342, + 0.006986800115555525, + 0.0077609713189303875, + 0.017409225925803185, + 0.014628371223807335, + -0.0063474345952272415, + 0.0017986965831369162, + 0.000618663034401834, + 0.002418803982436657, + 0.00429068086668849, + 0.007941996678709984, + 0.004799091722816229, + 0.028039637953042984, + -0.003784195752814412, + -0.007318037562072277, + -0.03907061740756035, + 0.015067453496158123, + 0.0106304120272398, + 0.007734009996056557, + 0.008357969112694263, + 0.03253830596804619, + 0.009852388873696327, + -0.005569411441683769, + 0.017255160957574844, + -0.007606907282024622, + -0.00115451670717448, + -0.011000165715813637, + -0.0089048957452178, + 0.021507326513528824, + 0.014012116007506847, + 0.0009749358869157732, + 0.009706028737127781, + 0.03303131088614464, + -0.014559042640030384, + 0.012787307612597942, + -0.0031063142232596874, + 0.0003762530395761132, + -0.01373480074107647, + -0.005727326963096857, + -0.01631537266075611, + 0.009058959782123566, + -0.013049216009676456, + -0.0035973931662738323, + 0.0020509762689471245, + 0.011955361813306808, + 0.005080258473753929, + 0.02580570988357067, + 0.002744263969361782, + 0.011208152398467064, + -0.01479013916105032, + 0.014720809645950794, + -0.004691246896982193, + 0.004849162884056568, + 0.009390197694301605, + 0.006821181159466505, + 0.00010056283645099029, + 0.008196202106773853, + 0.03269236907362938, + -0.01258702389895916, + -0.006728742737323046, + 0.026237089186906815, + 0.014651481062173843, + 0.024049382656812668, + -0.004013365600258112, + -0.009421010501682758, + -0.003641686402261257, + -0.01487487368285656, + 0.012255786918103695, + 0.014651481062173843, + -0.000739025475922972, + -0.021769234910607338, + -0.027839355170726776, + 0.015383284538984299, + -0.000746247242204845, + 0.010799882933497429, + -0.007560688070952892, + -0.021676797419786453, + -0.009259243495762348, + 0.0033528166823089123, + 0.009783060289919376, + -0.012417553924024105, + -0.005218916106969118, + 0.015398691408336163, + -0.013272608630359173, + 0.027361756190657616, + -0.0055308956652879715, + 0.00031197950011119246, + 0.012979887425899506, + -0.010622709058225155, + 0.0036185767967253923, + -0.009367087855935097, + 0.017547883093357086, + -0.012702572159469128, + -0.013796426355838776, + 0.0030003953725099564, + -0.000789577723480761, + 0.009005037136375904, + -0.006409060209989548, + 0.006828884594142437, + 0.004044178407639265, + 0.01445890124887228, + 0.0019537233747541904, + -0.03164473548531532, + -0.0009571222472004592, + -0.015344768762588501, + -0.006940580904483795, + 0.029842186719179153, + -0.006609343457967043, + 0.0007269892375916243, + -0.0142201017588377, + 0.0248505137860775, + -0.02565164677798748, + 0.02565164677798748, + 0.00016561873781029135, + -0.025050796568393707, + -0.004544886294752359, + 0.014897983521223068, + 0.008496626280248165, + 0.004198242444545031, + -0.0008478331728838384, + 0.0027808542363345623, + 0.017532477155327797, + 0.010260658338665962, + -0.007506765890866518, + -0.005242025945335627, + 0.010229845531284809, + -0.002505464944988489, + -0.0047644274309277534, + -0.0018834316870197654, + -0.00783415138721466, + -0.021830860525369644, + 0.013164764270186424, + 0.0213994812220335, + -0.016284558922052383, + 0.006143299862742424, + -0.026113837957382202, + -0.007148567121475935, + 0.003944037016481161, + 0.013056918978691101, + 0.002418803982436657, + 0.0024072490632534027, + 0.007190934848040342, + -0.029518652707338333, + 0.013203280046582222, + -0.0026768611278384924, + 0.0032199365086853504, + -0.001088076620362699, + 0.010530270636081696, + -0.010668927803635597, + -0.01634618453681469, + 0.010229845531284809, + -0.015352471731603146, + 0.018595518544316292, + 0.0007072497974149883, + -0.02143029496073723, + -0.021954111754894257, + -0.010260658338665962, + -0.007691642269492149, + -0.00808835681527853, + -0.007445140276104212, + 0.007934292778372765, + 0.012640946544706821, + -0.01308002881705761, + -0.012348225340247154, + -0.014250914566218853, + 0.01566830277442932, + -0.03743753954768181, + 0.014104554429650307, + -0.010530270636081696, + 0.0024072490632534027, + -0.012209567241370678, + 0.006882806774228811, + -0.0014395349426195025, + -0.02910267934203148, + -0.014805545099079609, + 0.013611549511551857, + 0.002285923808813095, + -0.013457485474646091, + -1.3458026842272375e-5, + 0.007772526238113642, + 0.023248249664902687, + -0.01103097852319479, + -0.004768278915435076, + 0.023402312770485878, + -0.04230595752596855, + -0.0034702904522418976, + -0.009213023819029331, + -0.015375581569969654, + 0.013488298282027245, + 0.00019667224842123687, + -0.024419134482741356, + -0.008080653846263885, + -0.013272608630359173, + -0.0037707150913774967, + -0.012833526358008385, + 0.005450012162327766, + 0.0007226562011055648, + 0.012818120419979095, + 0.014836357906460762, + -0.01380412932485342, + 0.007614610716700554, + -0.0046642860397696495, + -0.0013856126461178064, + 0.011947658844292164, + 0.011601014994084835, + -0.0081653892993927, + -0.003919001668691635, + 0.009590480476617813, + 0.0001488883572164923, + -0.018040888011455536, + -0.00042463873978704214, + 0.006655562203377485, + -0.0048530143685638905, + 0.003067798214033246, + -0.003919001668691635, + 0.014836357906460762, + -0.00963670015335083, + 0.004464002791792154, + -0.013888864777982235, + -0.010815288871526718, + 0.0039787013083696365, + 0.03247667849063873, + -0.01233281847089529, + 0.0011593311792239547, + 0.004398525692522526, + 0.01144695095717907, + -0.021630577743053436, + 0.005765843205153942, + 0.004702801816165447, + -0.009390197694301605, + -0.011108010075986385, + -0.004645028151571751, + -0.0017129984917119145, + 0.0016157455975189805, + -0.030027063563466072, + -0.01827198453247547, + -0.0044755577109754086, + 0.019858842715620995, + 0.02106054127216339, + -0.01070744451135397, + -0.0036590187810361385, + 0.011508576571941376, + -0.0012594728032127023, + 0.007649275008589029, + -0.006316621787846088, + -0.017440037801861763, + 0.013002997264266014, + -0.018179545179009438, + -0.0021568951196968555, + 0.0011882181279361248, + 0.01186292339116335, + 0.01518300175666809, + 0.02617546357214451, + 0.020351847633719444, + 0.02663765661418438, + -0.00034495879663154483, + -0.011839814484119415, + 0.012155645526945591, + -0.009821576066315174, + -0.001368280383758247, + 0.008519736118614674, + -0.018025482073426247, + -0.013819536194205284, + 0.017085691913962364, + -0.005654146894812584, + 0.001424128538928926, + -0.0066170464269816875, + -0.01828739047050476, + -0.01945827715098858, + -0.011531686410307884, + 0.0021568951196968555, + 0.013133951462805271, + 0.006054712925106287, + 0.009189913980662823, + -0.013010700233280659, + 0.0028655894566327333, + -0.031767986714839935, + -0.0062973638996481895, + -0.0024650231935083866, + -0.019350431859493256, + 0.014882576651871204, + 0.007325740531086922, + 0.020197782665491104, + 0.027069035917520523, + -0.007341146934777498, + 0.009012741036713123, + -0.007013760972768068, + 0.004490964114665985, + 0.015722226351499557, + 0.005376831628382206, + 0.015452614054083824, + -0.0008646838832646608, + -0.02223142795264721, + -0.011146526783704758, + 0.007140863686800003, + 0.0034953258000314236, + 0.003069724189117551, + 0.007903479970991611, + 0.01731678657233715, + 0.022616587579250336, + 0.0014684220077469945, + 0.014266321435570717, + -0.0013490223791450262, + 0.013249499723315239, + 0.011146526783704758, + 0.0002445765130687505, + -0.0056695532985031605, + -0.007418178953230381, + 0.002364881569519639, + -0.00899733416736126, + -0.013049216009676456, + 0.006659414153546095, + -0.00801902823150158, + 0.01927340030670166, + -0.0258365236222744, + -0.004340751562267542, + 0.005746585316956043, + -0.007194786332547665, + -0.023155810311436653, + 0.0030061728321015835, + -0.0023514009080827236, + 0.000408269464969635, + 0.005010929889976978, + -0.012486882507801056, + -0.022169802337884903, + 0.01046864502131939, + 0.006151002831757069, + 0.009405603632330894, + 0.006147151347249746, + -0.018025482073426247, + -0.0059892358258366585, + 0.01765572838485241, + 0.005484676454216242, + -0.00799591839313507, + 0.007006058003753424, + 0.010761366225779057, + 0.01135451253503561, + 0.006066267844289541, + 0.004159726668149233, + 0.00981387309730053, + -0.008296343497931957, + -0.001944094430655241, + -0.001496346085332334, + -0.010476347990334034, + -0.007267966400831938, + 0.010561083443462849, + -0.007121605798602104, + 0.020952695980668068, + -0.018379827961325645, + -0.011092604137957096, + -0.014905686490237713, + -0.007884222082793713, + -0.007941996678709984, + -0.005457715131342411, + 0.00014443494728766382, + 0.004271422978490591, + 0.012848933227360249, + 0.026083026081323624, + -0.009937124326825142, + -0.019365837797522545, + -0.010029562748968601, + -0.0035935414489358664, + -0.0004012884455733001, + -0.01193995587527752, + -0.020814038813114166, + 0.004668137524276972, + 0.002736560767516494, + 0.012540805153548717, + 0.018549298867583275, + -0.009528854861855507, + 0.01600724458694458, + -0.014605262316763401, + -0.010260658338665962, + 0.014004413038492203, + -0.010769070126116276, + 0.002476577879860997, + -0.012879746034741402, + 0.018764987587928772, + 0.002686490071937442, + 0.022323865443468094, + 0.01551423966884613, + -0.028224514797329903, + -0.007306482642889023, + 0.03056628629565239, + 0.01685459539294243, + 0.013095435686409473, + 0.029518652707338333, + -0.009097475558519363, + -0.006428318098187447, + -0.008958818390965462, + 0.015776148065924644, + 0.007241005543619394, + -0.004279125947505236, + 0.0038188600447028875, + -0.010060375556349754, + 0.011292886920273304, + 0.0027307835407555103, + 0.003997959196567535, + -3.460420657575014e-6, + -0.005384535063058138, + -0.050902727991342545, + -0.011547092348337173, + -0.008958818390965462, + 0.010460942052304745, + -0.02384909801185131, + -0.01308002881705761, + 0.004533331375569105, + -0.0045256284065544605, + 0.0044524478726089, + 0.012687166221439838, + 0.018533892929553986, + -0.025851929560303688, + -0.006073970813304186, + -0.03398650512099266, + -0.0038727824576199055, + -0.002961879363283515, + 0.015444910153746605, + 0.029164304956793785, + -0.002661454724147916, + 0.01110030710697174, + -0.007294927723705769, + 0.002480429597198963, + -0.01570681855082512, + -0.014482011087238789, + 0.013033810071647167, + -0.013180170208215714, + 0.014320244081318378, + -0.014597558416426182, + 0.0016215230571106076, + -0.01079217903316021, + 0.0014597559347748756, + -0.0037918989546597004, + 0.010676631703972816, + -0.00036445751902647316, + 0.0012450292706489563, + -0.013049216009676456, + 0.0027615961153060198, + 0.006016197148710489, + -0.00963670015335083, + 0.0007472101133316755, + 0.004768278915435076, + -0.0034394776448607445, + 0.0003639760834630579, + -0.007730158511549234, + -0.0037456797435879707, + 0.011108010075986385, + 0.012317412532866001, + 0.00494160084053874, + 0.009551964700222015, + 0.01275649480521679, + -0.010753663256764412, + -0.020659975707530975, + -0.005823617335408926, + -0.00023338280152529478, + -0.0019508347613736987, + -0.010199032723903656, + 0.023417720571160316, + -0.01799466833472252, + 0.009359384886920452, + 0.0033913326915353537, + 0.017363006249070168, + -0.012047800235450268, + 0.0032411201391369104, + 0.0008670911192893982, + 0.00042704600491560996, + 0.0018892091466113925, + 0.0013981303200125694, + 0.017424631863832474, + 0.005334463901817799, + 0.014890280552208424, + -0.02187708020210266, + 0.003535767551511526, + -0.0029753600247204304, + 0.02012075111269951, + -0.009282352402806282, + -0.0044447449035942554, + 0.002364881569519639, + -0.0018458786653354764, + -0.005218916106969118, + -0.010553380474448204, + 0.0009994897991418839, + -0.001593598979525268, + 0.04967021569609642, + 0.0016696680104359984, + 0.0015984134515747428, + -0.011238965205848217, + 0.01144695095717907, + 0.02206195704638958, + -0.012887449003756046, + -0.011254371143877506, + 0.021507326513528824, + 0.004879975691437721, + -0.019196366891264915, + 0.014636075124144554, + 0.0007578020449727774, + 0.008234717883169651, + -0.0074335853569209576, + -0.026930376887321472, + -0.003720644162967801, + 0.010907727293670177, + -0.021707609295845032, + -0.004695098847150803, + -0.01979721710085869, + 0.010568786412477493, + 0.018087107688188553, + 0.004017217550426722, + -0.01962774619460106, + -0.007202489301562309, + -0.002744263969361782, + 0.023664221167564392, + 0.028055043891072273, + 0.011077197268605232, + 0.007187082897871733, + 0.01748625747859478, + 0.0044447449035942554, + 0.006254996173083782, + -0.013272608630359173, + -0.0081653892993927, + -0.004313790239393711, + 0.00681347819045186, + -0.013765613548457623, + -0.004698950331658125, + -0.024604011327028275, + -0.008843270130455494, + -0.004960859194397926, + -0.0163307785987854, + 0.013103138655424118, + 0.0005714809522032738, + -0.020290222018957138, + 0.008473517373204231, + -0.003235342912375927, + 0.029503244906663895, + 0.01699325256049633, + 0.011292886920273304, + 0.006721039768308401, + -0.00785340927541256, + -0.008958818390965462, + 0.02565164677798748, + -0.007895777001976967, + -0.011315996758639812, + 0.00604315847158432, + -0.007980512455105782, + 0.024280477315187454, + 0.017840605229139328, + -0.021830860525369644, + -0.021769234910607338, + -0.010661224834620953, + -0.001535824965685606, + 0.008773941546678543, + -0.009266946464776993, + -0.010584193281829357, + 0.0009118659654632211, + 0.01816413924098015, + 0.02454238571226597, + -0.03725266084074974, + 0.029287556186318398, + 0.007791784126311541, + -0.008481220342218876, + 0.006482240278273821, + -0.01267946232110262, + 0.006559272296726704, + -0.0023071076720952988, + 0.011932252906262875, + 0.012286599725484848, + -0.004926194436848164, + 0.003279636148363352, + -0.0038727824576199055, + 0.014967312105000019, + -0.023294469341635704, + -0.00657853065058589, + 0.0036590187810361385, + 0.0174554456025362, + -0.01913474127650261, + 0.016099682077765465, + 0.0111927455291152, + -0.012186458334326744, + 0.01666971854865551, + 0.008897192776203156, + -0.025127829983830452, + -0.029703527688980103, + 0.010037265717983246, + -0.0026171612553298473, + -0.0051726968958973885, + -0.019150149077177048, + 0.003420219523832202, + -0.02189248614013195, + 0.0035511739552021027, + 0.026545217260718346, + 0.020998915657401085, + -0.01864173822104931, + 0.006020048633217812, + 0.015260033309459686, + 0.016777563840150833, + 0.019473683089017868, + 0.008681503124535084, + -0.01275649480521679, + 0.0012873968807980418, + -0.004348454996943474, + 0.026190871372818947, + -0.0067402976565063, + 0.017609508708119392, + 0.005257432349026203, + 0.0075722429901361465, + 0.00449866708368063, + -0.02175382897257805, + 0.010876914486289024, + -0.005515489261597395, + 0.0071639735251665115, + 0.012302005663514137, + -0.009035849943757057, + 0.005954571533948183, + 0.004379267804324627, + 0.03186042234301567, + 0.02677631378173828, + -0.016577281057834625, + 0.01095394603908062, + -0.00706768361851573, + 0.030319783836603165, + -0.02138407528400421, + 0.025605427101254463, + 0.019966688007116318, + -0.03164473548531532, + 0.02290930785238743, + -0.0036782766692340374, + 0.014520526863634586, + -0.0001803029590519145, + -0.0017707725055515766, + -0.009736841544508934, + 0.011785891838371754, + -0.005099516361951828, + 0.009120585396885872, + -0.0028694409411400557, + 0.0019739442504942417, + -0.019673965871334076, + 0.0021280082874000072, + 0.007475953083485365, + 0.012648649513721466, + -0.006990651600062847, + 0.015159891918301582, + -0.003119794884696603, + 0.006863548886030912, + -0.004903085064142942, + -0.006774961948394775, + 0.015398691408336163, + -0.0058505781926214695, + 0.005700366105884314, + -0.0005825543194077909, + -0.02075241319835186, + -0.0021376372314989567, + 0.0068057747557759285, + -0.015976430848240852, + -0.0045256284065544605, + -0.01682378351688385, + 0.02595977485179901, + 0.010784476064145565, + 0.0011574054369702935, + -0.011069494299590588, + -0.008758535608649254, + 0.019396651536226273, + 0.011508576571941376, + -0.025235673412680626, + 0.010491754859685898, + 0.007252559997141361, + 0.0026190869975835085, + -0.006497646681964397, + -0.03842354938387871, + 0.006081674247980118, + -0.023818286135792732, + 0.003564654616639018, + -0.003826563246548176, + 0.018179545179009438, + 0.00014900871610734612, + -0.007687790784984827, + -0.002060605213046074, + -0.004702801816165447, + -0.012887449003756046, + -0.0014896057546138763, + 0.0007525060791522264, + -0.004752872511744499, + -0.0048953816294670105, + -0.025928961113095284, + -0.003046614583581686, + -0.0010062301298603415, + 0.00042824962292797863, + 0.005865984596312046, + 0.0019450573017820716, + -0.00965210609138012, + -0.010091188363730907, + -0.01028376817703247, + 0.0008863491239026189, + 0.009367087855935097, + 0.014497417025268078, + 0.009482636116445065, + -0.011716563254594803, + -0.02925674244761467, + -0.01021443959325552, + 0.026391154155135155, + -0.011724266223609447, + -0.03974849730730057, + -0.0010274138767272234, + -0.009806170128285885, + -0.0021280082874000072, + 0.00899733416736126, + 0.01079217903316021, + -0.0007708011544309556, + 0.003499177284538746, + -0.0008054655627347529, + -0.021353263407945633, + -0.00575813977047801, + 0.002093343762680888, + -0.022031143307685852, + -0.0008271308033727109, + 0.01898067817091942, + 0.005646443460136652, + 0.012016987428069115, + 0.013295718468725681, + -0.012194161303341389, + -0.014582152478396893, + 0.02828614041209221, + -0.0071639735251665115, + 0.016577281057834625, + -0.0098909055814147, + -0.023279061540961266, + 0.01168575044721365, + -0.0013981303200125694, + -0.004221352282911539, + -0.012887449003756046, + -0.004679692443460226, + -0.01799466833472252, + 0.01560667809098959, + -0.0075722429901361465, + 0.0003789010224863887, + 0.015260033309459686, + 0.008288640528917313, + -0.01666971854865551, + -0.01552964560687542, + -0.0061278934590518475, + 0.01666971854865551, + -0.024049382656812668, + -0.003997959196567535, + 0.004829904530197382, + -0.016916221007704735, + -0.01685459539294243, + -0.01306462287902832, + -0.005068704020231962, + -0.014998124912381172, + 0.002283998066559434, + 0.0009113845298998058, + 0.021045135334134102, + -0.023140404373407364, + -0.020459691062569618, + -0.002852108795195818, + -0.015645192936062813, + 0.01494420226663351, + -0.018672550097107887, + -0.00657467870041728, + 0.009767654351890087, + 0.03150607645511627, + -0.005819765385240316, + -0.031105510890483856, + -0.0053036510944366455, + -0.023325281217694283, + 0.0015724151162430644, + -0.004402377177029848, + -0.01962774619460106, + 0.009505745023488998, + 0.011323699727654457, + -0.009967937134206295, + 0.004383119288831949, + -0.024573199450969696, + -0.0023013302125036716, + -0.01210172288119793, + 0.0036282059736549854, + 0.00883556716144085, + -0.006247293204069138, + -0.014212398789823055, + -0.010137408040463924, + -0.022601181641221046, + -0.014528229832649231, + 0.019858842715620995, + 0.0512416698038578, + 0.024157226085662842, + 0.018533892929553986, + -0.01847226731479168, + 0.008157686330378056, + -0.031613919883966446, + -0.004040326923131943, + 0.019196366891264915, + -0.004541034810245037, + -0.012240380048751831, + 0.01529084611684084, + -0.0020317183807492256, + 0.012725681997835636, + 0.008720018900930882, + -0.01250228937715292, + 0.014566745609045029, + -0.004098101053386927, + -0.003886263119056821, + -0.011631827801465988, + 0.002497761743143201, + -0.006670968607068062, + -0.001892097876407206, + -0.0016619648085907102, + 0.006882806774228811, + -0.003443329129368067, + -0.0031852719839662313, + -0.008034435100853443, + -0.031290385872125626, + -0.001424128538928926, + -0.00412891386076808, + 0.04461691901087761, + -0.00856595579534769, + -0.0353422686457634, + 0.014928796328604221, + -0.004109655506908894, + 0.011115713976323605, + 0.005765843205153942, + 0.013018403202295303, + -0.009297759272158146, + -0.012063207104802132, + -0.026098432019352913, + -0.013472892343997955, + 0.011292886920273304, + -0.010098891332745552, + -0.024064788594841957, + 0.002959953621029854, + 0.010599599219858646, + 0.04017987847328186, + 0.006501498632133007, + 0.011809001676738262, + 0.01551423966884613, + 0.017547883093357086, + -0.0032507493160665035, + -0.005176548380404711, + 0.01862633042037487, + -0.0027327092830091715, + 0.0059006488882005215, + -0.010021859779953957, + -0.011308293789625168, + 0.00882016122341156, + 0.006401356775313616, + -0.004687395412474871, + 3.162523717037402e-5, + 0.02072160132229328, + -0.006462982390075922, + -0.014250914566218853, + 0.01586858555674553, + 0.022462522611021996, + -0.009875498712062836, + -0.011708860285580158, + 0.012201864272356033, + -0.0032931168098002672, + -0.022323865443468094, + -0.012533102184534073, + -0.01429713424295187, + -0.009752247482538223, + -0.028686705976724625, + -0.01666971854865551, + -0.017517071217298508, + 0.01005267258733511, + -0.01233281847089529, + -0.008550548925995827, + 0.006871251855045557, + -0.0013490223791450262, + 0.007452843245118856, + -0.0013008774258196354, + 0.009282352402806282, + -0.0022435563150793314, + 0.013033810071647167, + 0.010114298202097416, + -0.016284558922052383, + -0.011793594807386398, + -0.027839355170726776, + 0.012278896756470203, + -0.012155645526945591, + -0.008928005583584309, + -0.002669157925993204, + -0.00681347819045186, + 0.009767654351890087, + 0.013811832293868065, + -0.006274254061281681, + 0.008234717883169651, + -0.004487112630158663, + 0.002578645246103406, + -0.003959443420171738, + -0.045479677617549896, + -0.008173092268407345, + -0.009120585396885872, + 0.007583797909319401, + 0.0064783887937664986, + -0.01069974061101675, + 0.009166805073618889, + -0.019535308703780174, + 0.01462066825479269, + 0.018734175711870193, + -0.012140238657593727, + 0.002723080338910222, + 0.008334859274327755, + 0.00518040033057332, + 0.007745564915239811, + -0.015737632289528847, + 0.020336439833045006, + 0.016222933307290077, + 0.0048029436729848385, + 0.005527044180780649, + -6.819285317760659e-6, + 0.0014231656678020954, + 0.020860258489847183, + 0.006289660464972258, + -0.008411891758441925, + 0.015144485980272293, + -0.004090397618710995, + -0.0037630118895322084, + -0.0021915596444159746, + -0.009698325768113136, + -0.006886658258736134, + -0.009698325768113136, + -0.011007868684828281, + 0.014813248068094254, + -0.010260658338665962, + -0.018595518544316292, + 0.016284558922052383, + 0.027823949232697487, + 0.005727326963096857, + 0.007668532896786928, + 0.012818120419979095, + 0.0027904831804335117, + 0.008388781920075417, + -0.003345113480463624, + 0.028209108859300613, + -0.0019075041636824608, + 0.004048030357807875, + -0.006632452830672264, + 0.0074335853569209576, + -0.003169865580275655, + -0.0033797777723520994, + -0.0017996594542637467, + 0.015260033309459686, + -0.020644567906856537, + 0.001834323862567544, + -0.0056695532985031605, + 0.005234322510659695, + 0.0032026043627411127, + 0.0415356382727623, + 0.00613174494355917, + -0.01586858555674553, + -0.016777563840150833, + 0.03663640469312668, + -0.018395235762000084, + -0.025559209287166595, + -0.0027866316959261894, + 0.006239589769393206, + -0.015390988439321518, + 0.020490504801273346, + 0.002956101903691888, + 0.00856595579534769, + 0.0010148962028324604, + -0.002054827753454447, + -0.020552130416035652, + 3.752299744519405e-5, + -0.00882016122341156, + 0.005238173995167017, + 0.009320869110524654, + -0.007472101133316755, + -0.012902854941785336, + 0.022832276299595833, + 0.0037341248244047165, + 0.012933667749166489, + 0.018426047638058662, + 0.009621293283998966, + 0.008735425770282745, + 0.015283143147826195, + -0.02187708020210266, + -0.006898213177919388, + -0.021692203357815742, + 0.017424631863832474, + 0.015961024910211563, + 0.011762782000005245, + -0.0343562588095665, + 0.023248249664902687, + 0.01697784662246704, + -0.003776492550969124, + 0.0019700927659869194, + 0.016916221007704735 + ], + "b2f9388b-55eb-4863-9400-016539f4ecea": [ + -0.011297499760985374, + -0.03868643566966057, + -0.008485335856676102, + 0.04354317486286163, + -0.0002815216139424592, + -0.023781271651387215, + 0.01660781353712082, + 0.013593285344541073, + -0.029782414436340332, + 0.055182598531246185, + 0.02375335991382599, + -0.010864859446883202, + -0.0015002855798229575, + -0.02246939390897751, + 0.01930134929716587, + 0.03321562707424164, + -0.016872979700565338, + 0.009385507553815842, + -0.029168343171477318, + -0.009622761979699135, + 0.06592883169651031, + -0.04452010244131088, + -0.05255884304642677, + 0.011025354266166687, + 0.0044275871478021145, + 0.018170900642871857, + -0.028079764917492867, + 0.007313020061701536, + -0.05124696344137192, + -0.018450023606419563, + 0.012441903352737427, + -0.0011330645065754652, + -0.0076270331628620625, + 0.016872979700565338, + 0.028275150805711746, + -0.0263212900608778, + 0.018184857442975044, + -0.029559114947915077, + -0.03634180128574371, + -0.014458566904067993, + -0.020054981112480164, + 0.026279421523213387, + -0.0011217251885682344, + 0.006029054522514343, + -0.027116790413856506, + -0.004581104498356581, + -0.04837200045585632, + -0.02953120321035385, + -0.009636717848479748, + 0.016524076461791992, + -0.0057220193557441235, + 0.003987968433648348, + 0.03706752136349678, + -0.0022643846459686756, + 0.05230763182044029, + -0.04703221097588539, + 0.025135017931461334, + 0.03095472976565361, + -0.0029709143564105034, + -0.06771522015333176, + 0.014004991389811039, + -0.016551988199353218, + 0.0018491892842575908, + -0.011304477229714394, + 0.016426382586359978, + -0.011185850016772747, + -0.01582626812160015, + 0.018296506255865097, + -0.027368001639842987, + -0.004807892255485058, + 0.018380243331193924, + 0.012853609398007393, + -0.026684150099754333, + 0.02072487585246563, + 0.024437209591269493, + -0.022427525371313095, + 0.04267789050936699, + 0.025065237656235695, + 0.033299364149570465, + -0.025958430022001266, + 0.0028365864418447018, + -0.012469816021621227, + 0.0027336599305272102, + 0.0011156193213537335, + 0.07391174137592316, + 0.008506270125508308, + 0.005760399159044027, + -0.0368163101375103, + 0.028721746057271957, + -0.028498448431491852, + -0.019901463761925697, + 0.04075194522738457, + 0.02426973730325699, + -0.023585885763168335, + -0.025958430022001266, + 0.013684000819921494, + 0.0007039131014607847, + -0.017361445352435112, + 0.009287814609706402, + -0.00019309634808450937, + 0.025916561484336853, + 0.015072637237608433, + 0.0216180682182312, + -0.00561385927721858, + -0.00598369725048542, + -0.003736757906153798, + 0.014960987493395805, + -0.01730562001466751, + -0.0036425539292395115, + 0.04594362899661064, + 0.0019590938463807106, + -0.044380541890859604, + 0.013279272243380547, + -0.011960416100919247, + -0.06135121360421181, + -0.022943902760744095, + -0.03212704509496689, + -0.012630311772227287, + 0.0057569099590182304, + -0.0231672003865242, + 0.04061238095164299, + 0.0031244319397956133, + 0.008610941469669342, + 0.02819141373038292, + -0.026028210297226906, + 0.013474658131599426, + -0.009511113166809082, + 0.027688991278409958, + 0.01891057752072811, + 0.020110804587602615, + 0.002553974511101842, + -0.02470237761735916, + 0.018826840445399284, + -0.02085048146545887, + 0.0046369293704628944, + 0.01814298890531063, + 0.005945317912846804, + 0.06269100308418274, + -0.022497305646538734, + 0.011506841517984867, + -0.04538538306951523, + -0.029754500836133957, + -0.01723583973944187, + 0.010822990909218788, + -0.001889313105493784, + 0.030340660363435745, + -0.0168031994253397, + 0.032154958695173264, + -0.0356719084084034, + 0.0120999775826931, + -0.06252352893352509, + -0.010383372195065022, + -0.01698462851345539, + 0.0157146193087101, + 0.0517214760184288, + -0.015268023125827312, + -0.01949673518538475, + 0.028093719854950905, + -0.007529340218752623, + 0.04479922726750374, + 0.03790489211678505, + -0.05116323009133339, + 0.006461695302277803, + 0.021729718893766403, + 0.04499461129307747, + 0.013279272243380547, + 0.06497981399297714, + 0.02380918338894844, + -0.01796155981719494, + 0.01692880503833294, + -0.0017898756777867675, + -0.048176612704992294, + 0.02824723720550537, + 0.029140431433916092, + 0.02008289285004139, + 0.00798291526734829, + 0.0237394031137228, + 0.008855174295604229, + 0.009727433323860168, + -0.03628597781062126, + -0.0348624512553215, + -0.016747374087572098, + 0.027758773416280746, + -0.004103106912225485, + -0.00630468875169754, + 0.025121061131358147, + 0.006552410311996937, + 0.01422828994691372, + 0.012665201909840107, + -0.008471379987895489, + 0.013788671232759953, + -0.03854687139391899, + -0.008296928368508816, + -0.007229283452033997, + -0.02753547392785549, + -0.030201097950339317, + -0.007250217255204916, + -0.011157938279211521, + 0.000569585186894983, + 0.011758052743971348, + 0.010802056640386581, + -0.04022160917520523, + -0.018254637718200684, + 0.041868437081575394, + -0.03656509891152382, + 0.017584742978215218, + -0.019873550161719322, + 0.010634582489728928, + 0.03519739955663681, + -0.0454132966697216, + 0.015226154588162899, + -0.036397628486156464, + 0.007780550979077816, + -0.02535831555724144, + -0.0013895087176933885, + -0.00703389709815383, + -0.0009289559093303978, + 0.032601553946733475, + -0.007752638775855303, + -0.033243536949157715, + 0.014737688936293125, + -0.0012595420703291893, + -0.00751538434997201, + -0.022218182682991028, + -0.0799408033490181, + 0.01258146483451128, + -0.029112519696354866, + 0.02657250128686428, + -0.02986615151166916, + 0.023348631337285042, + 0.056661948561668396, + -0.00785730965435505, + 0.032657381147146225, + 0.0032081687822937965, + 0.01582626812160015, + 0.04678099974989891, + 0.0451899990439415, + 0.02972658909857273, + -0.027465693652629852, + -0.02361379750072956, + 0.001483712694607675, + 0.020948173478245735, + -0.01905013807117939, + -0.010934639722108841, + 0.001978283515200019, + 0.0023498658556491137, + 0.01309784222394228, + 0.08256455510854721, + -0.0004919540951959789, + -0.007703792303800583, + -0.05239136889576912, + 0.006269798148423433, + 0.01769639179110527, + -0.0074037350714206696, + -0.008610941469669342, + 0.018226725980639458, + 0.045078348368406296, + -0.04627857729792595, + 0.000670767214614898, + 0.005735975690186024, + 0.03070351853966713, + 0.043208226561546326, + -0.005045146681368351, + 0.017794085666537285, + 0.01930134929716587, + -0.0514981746673584, + 0.009650674648582935, + 0.023851051926612854, + 0.04499461129307747, + 0.05071663111448288, + 0.006848978344351053, + 0.004131019115447998, + -0.014360873028635979, + 0.012895477935671806, + 0.002852287143468857, + 0.005735975690186024, + -0.017207926139235497, + -0.0014243990881368518, + 0.017919691279530525, + 0.01930134929716587, + -0.010041446425020695, + -0.021715762093663216, + 0.007961980998516083, + -0.009839082136750221, + 0.03745829313993454, + 0.02020849846303463, + -0.04008204862475395, + 0.00756423082202673, + 0.009071494452655315, + -0.010341503657400608, + 0.013697956688702106, + -0.012211627326905727, + 0.025581615045666695, + 0.03140132501721382, + 0.01872914656996727, + -0.018059251829981804, + -0.03128967806696892, + 0.018101120367646217, + -0.00355707248672843, + 0.02117147296667099, + -0.021534331142902374, + -0.018045295029878616, + 0.004483411554247141, + -0.029838237911462784, + -0.01789177767932415, + -0.025135017931461334, + 0.04354317486286163, + 0.053061265498399734, + -0.022120490670204163, + 0.039858750998973846, + 0.017026497051119804, + -0.006454717367887497, + -0.03726290911436081, + -0.014849338680505753, + 0.0004771257226821035, + 0.050744544714689255, + -0.016719462350010872, + 0.008959845639765263, + -0.00017412472516298294, + -0.01942695491015911, + 0.006883868481963873, + -0.00703389709815383, + -0.06604047864675522, + 0.013537460938096046, + 0.023027639836072922, + -0.05805756524205208, + 0.03307606279850006, + 0.021031910553574562, + -0.039356328547000885, + -0.0035937074571847916, + -0.05040959641337395, + -0.028275150805711746, + -0.021785542368888855, + -0.0066535924561321735, + -0.04234294593334198, + -0.03988666459918022, + -0.028917133808135986, + -0.017166059464216232, + 0.034025080502033234, + -0.01711023412644863, + -0.027898333966732025, + -0.04170096293091774, + 0.014402741566300392, + -0.03276902809739113, + -0.002658645622432232, + -0.012623333372175694, + 0.023181157186627388, + 0.04781375452876091, + -0.003792582545429468, + -0.003785604378208518, + 0.0008535055094398558, + -0.005118416156619787, + 0.005341714713722467, + 0.01222558319568634, + 0.05214015766978264, + 0.009825126267969608, + -0.037039607763290405, + -0.0032482927199453115, + -0.013663066551089287, + -0.003677444299682975, + 0.01348163653165102, + -0.02863801084458828, + -0.015602970495820045, + -0.01323042530566454, + -0.026795798912644386, + 0.004518302157521248, + -0.00612674793228507, + -0.013181579299271107, + -0.003154088743031025, + 0.024172043427824974, + -0.015114504843950272, + -0.03893764689564705, + -0.031624626368284225, + -0.04683682322502136, + -0.011430082842707634, + -0.027144702151417732, + 0.038072362542152405, + -0.007968958467245102, + -0.0034611239098012447, + 0.008478358387947083, + 0.020068936049938202, + -0.019454866647720337, + 0.010522933676838875, + 0.008548138663172722, + 0.0378490649163723, + 0.027395913377404213, + 0.003185490146279335, + -0.0336063988506794, + -0.03673257306218147, + -0.004800913855433464, + -0.036397628486156464, + -0.013523505069315434, + -0.02008289285004139, + 0.02972658909857273, + -0.02992197498679161, + -0.009894906543195248, + -0.02142268233001232, + -0.00032687908969819546, + 0.0032308476511389017, + 0.003994946368038654, + -0.009336661547422409, + 0.014653952792286873, + 0.009392485953867435, + 0.012211627326905727, + 0.011255631223320961, + -0.008827261626720428, + -0.016524076461791992, + -0.008771437220275402, + 0.02008289285004139, + 0.0348624512553215, + 0.0005778716295026243, + -0.009183143265545368, + 0.012860587798058987, + 0.043459437787532806, + 0.03882599622011185, + 0.01775221712887287, + 0.025051280856132507, + 0.045329559594392776, + -0.0400262251496315, + -0.017975514754652977, + 0.019789813086390495, + 0.023892920464277267, + 0.013076907955110073, + 0.00012942144530825317, + 0.0009655908215790987, + 0.03131759166717529, + 0.01762661151587963, + -0.023404454812407494, + -0.025260623544454575, + -0.007522362284362316, + -0.0012342465342953801, + 0.052475105971097946, + -0.0026394559536129236, + -0.0005093992804177105, + -0.030536046251654625, + -0.034080907702445984, + -0.002163202501833439, + -0.01878497190773487, + 0.027465693652629852, + 0.018366286531090736, + -0.01483538281172514, + -0.011318434029817581, + -0.009308748878538609, + -0.01833837479352951, + -0.01858958601951599, + -0.045915719121694565, + -0.028665922582149506, + 0.033243536949157715, + 0.008931932970881462, + -0.01931530423462391, + -0.017654523253440857, + 0.013690978288650513, + -0.055573370307683945, + -0.014653952792286873, + 0.008638854138553143, + 0.0013458956964313984, + 0.015240110456943512, + -0.013572351075708866, + 0.002976147923618555, + -0.032210782170295715, + 0.010941618122160435, + -0.0010929405689239502, + 0.0046683307737112045, + -0.0012612866703420877, + 0.01981772668659687, + -0.041421838104724884, + -0.016189128160476685, + -0.021129604429006577, + -0.007731704507023096, + -0.004288025666028261, + 0.002142268233001232, + -0.013251359574496746, + -0.022036753594875336, + 0.008952867239713669, + -0.010983486659824848, + -0.0012796040391549468, + 0.001905013807117939, + -0.007864288054406643, + -0.0017689414089545608, + -0.04678099974989891, + 0.015309891663491726, + 0.01103233266621828, + 0.02794020250439644, + -0.0038728301879018545, + -0.004629950970411301, + 0.021129604429006577, + -0.022483350709080696, + -0.024534903466701508, + -0.009071494452655315, + -0.019789813086390495, + 0.023195113986730576, + 0.01712419092655182, + 0.003028483595699072, + -0.005568502005189657, + 0.004295003600418568, + -0.01744518242776394, + -0.00149243522901088, + -0.02156224474310875, + -0.015351759269833565, + 0.009573915973305702, + 0.020864436402916908, + -0.019385086372494698, + -0.009580893442034721, + 0.016719462350010872, + -0.009504134766757488, + 0.026405027136206627, + -0.01846398040652275, + 0.01096952985972166, + -0.021338945254683495, + -0.0009176165331155062, + -0.05194477364420891, + 0.04253832995891571, + -0.03025692328810692, + 0.010920683853328228, + 0.012434924952685833, + 0.003536138217896223, + -0.035951029509305954, + -0.013376965187489986, + 0.05205642059445381, + 0.00846440251916647, + 0.0048881396651268005, + -0.01168129313737154, + -0.023641709238290787, + -0.008736547082662582, + -0.005488254129886627, + 0.00661172391846776, + 0.0015622159698978066, + -0.020515533164143562, + -0.0015613437863066792, + -0.02651667594909668, + -0.01373982522636652, + 0.017724303528666496, + -0.046306490898132324, + -0.007107167039066553, + 0.007899178192019463, + -0.023153245449066162, + 0.0018055762629956007, + -0.013460702262818813, + -0.004961409606039524, + 0.0003733268822543323, + -0.04429680481553078, + 0.038323573768138885, + 0.020124761387705803, + 0.004469455685466528, + 0.0057569099590182304, + 0.0337180458009243, + -0.01119282841682434, + -0.003520437516272068, + -0.009280836209654808, + 0.011890635825693607, + -0.020096849650144577, + 0.03564399480819702, + -0.004731133114546537, + -0.011262609623372555, + -0.004818358924239874, + -0.042063821107149124, + 0.025009412318468094, + 0.005770865827798843, + -0.018673323094844818, + -0.029782414436340332, + 0.009148253127932549, + 0.01981772668659687, + 0.02129707671701908, + 0.015309891663491726, + -0.026335246860980988, + -0.016300776973366737, + -0.04284536466002464, + 0.02015267312526703, + -0.008555117063224316, + 0.023404454812407494, + 0.015016811899840832, + 0.0062837544828653336, + 0.03391343355178833, + 0.016524076461791992, + 0.0005373116000555456, + 0.0062069958075881, + -0.0022417057771235704, + 0.005087014753371477, + 0.006852467078715563, + -0.02555370144546032, + 0.02188323624432087, + -0.012588443234562874, + -0.005149817559868097, + -0.011339368298649788, + -0.017514962702989578, + 0.004902095999568701, + -0.015114504843950272, + 0.008003849536180496, + -0.002409179462119937, + 0.021520376205444336, + 0.026698105037212372, + 0.036062680184841156, + -0.013684000819921494, + 0.015868136659264565, + -0.015686707571148872, + 0.020808612927794456, + 0.0023045085836201906, + 0.014988900162279606, + -0.006084879394620657, + -0.004274069331586361, + -0.0070687877014279366, + 0.06386332213878632, + 0.0008456551586277783, + -0.01399801392108202, + -0.010187986306846142, + 0.010215898044407368, + -0.0013624686980620027, + 0.015002856031060219, + 0.009406441822648048, + 0.002311486518010497, + -0.006503563839942217, + -0.019273435696959496, + 0.03810027614235878, + -0.020306190475821495, + 0.014849338680505753, + 0.0003809591580647975, + -0.00632213382050395, + 0.014332961291074753, + 0.017612654715776443, + 0.032015398144721985, + 0.011695249937474728, + -0.010920683853328228, + 0.023069508373737335, + -0.0036111525259912014, + 0.031094292178750038, + 0.03184792399406433, + -0.010097270831465721, + 0.005184708163142204, + -0.005491743329912424, + 0.006817576941102743, + 0.013272293843328953, + -0.012944324873387814, + 0.02927999198436737, + -0.001693054917268455, + -0.0014078262029215693, + 0.019259480759501457, + 0.0058336686342954636, + -0.002852287143468857, + -0.01705440878868103, + -0.033383097499608994, + -0.020041024312376976, + 0.003761181142181158, + 0.02001311257481575, + 0.08775623887777328, + -0.012079043313860893, + 0.04616692662239075, + -0.0037995604798197746, + 0.004068216308951378, + 0.05638282746076584, + 0.047004297375679016, + 0.015156373381614685, + 0.016691548749804497, + -0.0028173967730253935, + 0.018366286531090736, + -0.016230996698141098, + -0.020166629925370216, + -0.0038867865223437548, + 0.019036181271076202, + -0.015575057826936245, + 0.017333531752228737, + 0.04242668300867081, + -0.0173195768147707, + 0.003394832368940115, + 0.010732275433838367, + 0.005250999704003334, + -0.009532047435641289, + 0.008415555581450462, + 0.021715762093663216, + 0.009664630517363548, + 0.0252327099442482, + 0.0007213582284748554, + -0.021199384704232216, + 0.02439534105360508, + -0.004071705508977175, + -0.009448310360312462, + 0.009001713246107101, + 0.01692880503833294, + -0.003543116385117173, + 0.009231990203261375, + 0.008897042833268642, + -0.013816583901643753, + -0.020362015813589096, + -0.009901884943246841, + 0.012344210408627987, + -0.031122203916311264, + 0.006022076588124037, + -0.024688420817255974, + -0.009853038936853409, + -0.013795649632811546, + 0.006489607505500317, + -0.009476223029196262, + -0.0029046228155493736, + 0.00746653787791729, + 0.01371191255748272, + -0.005680151283740997, + -0.02361379750072956, + 0.007780550979077816, + -0.02644689567387104, + 0.03190374746918678, + -0.02175763063132763, + -0.03893764689564705, + -0.026739973574876785, + 0.021897191181778908, + -0.025511832907795906, + 0.025079192593693733, + 0.009245946072041988, + -0.01801738329231739, + 0.008101542480289936, + 0.002779017435386777, + 0.012665201909840107, + 1.6055018932092935e-5, + 0.03101055510342121, + -0.014374829828739166, + 0.020110804587602615, + 0.01743122562766075, + 0.01858958601951599, + 0.005271933972835541, + 0.029810326173901558, + -0.019538603723049164, + 0.018310463055968285, + -0.0018980357563123107, + 0.01635660231113434, + -0.017277708277106285, + -0.036453451961278915, + -0.016510119661688805, + -0.0033372631296515465, + 0.009315727278590202, + -0.0072432393208146095, + 0.004438054282218218, + 0.0006179955671541393, + 0.07095304131507874, + 0.004839293193072081, + 0.02354401722550392, + -0.0046369293704628944, + -0.015547146089375019, + -0.022664779797196388, + -0.011688271537423134, + 0.007850331254303455, + 0.004654374439269304, + -0.033103976398706436, + 0.02059927023947239, + -0.013565373606979847, + 0.02613985911011696, + -0.027842510491609573, + 0.03025692328810692, + -0.022929945960640907, + 0.04253832995891571, + -0.006440761033445597, + -0.022218182682991028, + 0.0008173067471943796, + 0.01705440878868103, + -0.02078069932758808, + 0.019217612221837044, + 0.0012979215243831277, + -0.011478929780423641, + 0.031094292178750038, + 0.016426382586359978, + 0.01582626812160015, + -0.006140703801065683, + 0.015044724568724632, + -0.014807470142841339, + 0.02008289285004139, + -0.01503076869994402, + -0.03282485529780388, + 0.006765241269022226, + 0.010034468024969101, + 0.025665350258350372, + -0.001258669886738062, + 0.030982641503214836, + -0.004497367888689041, + 0.01801738329231739, + 0.03207122161984444, + 0.03017318621277809, + -0.003604174591600895, + -0.019803769886493683, + -0.005062591750174761, + -0.016133304685354233, + -0.03818401321768761, + -0.006004631519317627, + -0.01699858531355858, + -0.03835148736834526, + -0.06118373945355415, + 0.032852765172719955, + 0.0124139916151762, + 0.012783829122781754, + 0.0026726017240434885, + 0.015798356384038925, + -0.011667337268590927, + -0.013816583901643753, + -0.005237043369561434, + 0.01769639179110527, + -0.01764056831598282, + 0.01847793534398079, + 0.0008430383750237525, + 0.014639995992183685, + -0.016775285825133324, + 0.012797784991562366, + 0.01609143614768982, + -0.023390499874949455, + -0.019078049808740616, + 0.015072637237608433, + -0.02090630494058132, + 0.03539278358221054, + 0.04770210385322571, + 0.013244382105767727, + -0.026432938873767853, + -0.03126176446676254, + -0.0028208857402205467, + -0.03469497710466385, + 0.018701234832406044, + 0.010739253833889961, + 0.02206466533243656, + -0.017584742978215218, + 0.026753930374979973, + 0.004029836971312761, + 0.005861580837517977, + 0.013202513568103313, + 0.036844223737716675, + 0.02812163345515728, + -0.00024117963039316237, + -0.01309784222394228, + 0.0029621918220072985, + 0.004270580597221851, + -0.006053477991372347, + -0.00047843411448411644, + -0.012595420703291893, + 0.014263180084526539, + 0.008457424119114876, + 0.040779855102300644, + 0.01493307575583458, + -0.008694678544998169, + 0.015798356384038925, + -0.04234294593334198, + 0.03461124002933502, + -0.000768024125136435, + 0.0379607155919075, + -0.019147831946611404, + -0.01431900542229414, + -0.0294195543974638, + 0.01712419092655182, + -0.006723372731357813, + -0.042315032333135605, + 0.011562665924429893, + -0.02343236841261387, + 0.017389357089996338, + 0.01177200861275196, + 0.00022635122877545655, + 0.006416337564587593, + 0.02613985911011696, + 0.03134550154209137, + 0.021925104781985283, + -0.015868136659264565, + 0.02207862213253975, + 0.02721448242664337, + -0.0025033834390342236, + -0.004870694596320391, + 0.007871265523135662, + 0.04641813784837723, + -0.00662916898727417, + 0.021966973319649696, + 0.012853609398007393, + 0.0005595542024821043, + -0.011981350369751453, + -0.009880950674414635, + -0.006189550273120403, + -0.0012359911343082786, + 0.025497877970337868, + -0.014737688936293125, + 0.010362437926232815, + 0.0027511052321642637, + 0.016440339386463165, + 0.010774143971502781, + 0.023195113986730576, + 0.024688420817255974, + -0.005470809061080217, + 0.002658645622432232, + 0.009978643618524075, + -0.002601076615974307, + -0.02502336911857128, + -0.01329322811216116, + -0.024479078128933907, + -0.000810764788184315, + -0.0065733445808291435, + -0.0025626972783356905, + 0.004933497402817011, + 0.03829566389322281, + -0.0021841367706656456, + -0.005209131166338921, + -3.8651978684356436e-5, + 0.011339368298649788, + -0.010125183500349522, + -0.0003052906831726432, + -0.014102684333920479, + -0.016440339386463165, + -0.0237394031137228, + -0.001843955717049539, + -0.019580472260713577, + -0.012560530565679073, + -0.010983486659824848, + 0.010488043539226055, + -0.0007326976046897471, + -0.036704663187265396, + -0.03835148736834526, + -0.028665922582149506, + 0.03332727402448654, + -0.03636971488595009, + -0.00785730965435505, + 0.008457424119114876, + -0.0033198180608451366, + 0.002963936422020197, + 0.02066905051469803, + 0.014165487140417099, + -0.027270307764410973, + -0.013572351075708866, + 0.047004297375679016, + 0.0017951091285794973, + 0.00614419300109148, + -0.009134297259151936, + 0.024493034929037094, + -0.007899178192019463, + 0.007250217255204916, + 0.002231238642707467, + 0.020948173478245735, + 0.03483453765511513, + -0.025958430022001266, + 0.006971094757318497, + 0.007571208756417036, + -0.009860016405582428, + -0.014137575402855873, + 0.04164513573050499, + 0.011255631223320961, + -0.00814341101795435, + -0.020808612927794456, + -0.01351652666926384, + 0.0257490873336792, + -0.01995728723704815, + -0.04242668300867081, + -0.027451736852526665, + -0.026237552985548973, + 0.01267915777862072, + -0.010446175001561642, + -0.0007305169710889459, + 0.002681324491277337, + -0.0020463198889046907, + -0.017361445352435112, + 0.018631454557180405, + 0.015142417512834072, + 0.026307333260774612, + -0.02400456927716732, + -0.001578788971528411, + 0.016649682074785233, + 0.025148972868919373, + 0.019789813086390495, + -0.00725719565525651, + 0.00609534652903676, + -0.001107768970541656, + -0.006712906062602997, + -0.009308748878538609, + -0.03011736087501049, + 0.0026935359928756952, + 0.01258146483451128, + -0.0072781299240887165, + 0.01755683124065399, + -0.010055402293801308, + -0.04010996222496033, + 0.03290858864784241, + 0.0011121303541585803, + 0.019273435696959496, + -0.010013533756136894, + -0.008331818506121635, + -0.02922416850924492, + 0.004696242976933718, + -2.9915761388110695e-6, + 0.029894063249230385, + -0.014528347179293633, + -0.02664228156208992, + -0.0007531957235187292, + -0.026865579187870026, + -0.008848195895552635, + -0.025176886469125748, + 0.052363455295562744, + -0.030396483838558197, + -0.04569241777062416, + -0.032992325723171234, + -0.023209068924188614, + -0.0023708001244813204, + -0.004490389954298735, + -0.005069569684565067, + -0.03302023932337761, + 0.010802056640386581, + 0.0026202662847936153, + -0.03405299410223961, + 0.010864859446883202, + 0.019552558660507202, + -0.0019276925595477223, + -0.011625468730926514, + 0.023125331848859787, + -0.023892920464277267, + -0.01335603091865778, + -0.02033410407602787, + -0.0010449663968756795, + -0.011478929780423641, + -0.01177200861275196, + 0.05230763182044029, + 0.009511113166809082, + 0.0022940414492040873, + 0.01071134116500616, + -0.013697956688702106, + 0.0039635454304516315, + 0.017459137365221977, + -0.004036814905703068, + -0.03480662778019905, + -0.029782414436340332, + 0.004654374439269304, + -0.006842000409960747, + 0.00021642928186338395, + 0.009469244629144669, + -0.01242096908390522, + -0.014947031624615192, + 0.004389207810163498, + -0.009252924472093582, + -0.013760759495198727, + 0.0032727159559726715, + -0.024562815204262733, + 0.0011278309393674135, + -0.00023769060499034822, + -0.0019678163807839155, + 0.01814298890531063, + 0.009748367592692375, + -0.010774143971502781, + 0.0026935359928756952, + -0.0019870062824338675, + -0.015170330181717873, + -0.03422046825289726, + 0.02220422774553299, + -0.015393627807497978, + -0.01196739450097084, + -0.0993119329214096, + -0.019133875146508217, + -0.013363009318709373, + 0.02805185131728649, + 0.005865070037543774, + -0.002194603905081749, + 0.024241823703050613, + 0.013502570800483227, + -0.019343217834830284, + 0.01277685072273016, + 0.010683429427444935, + -0.010948595590889454, + 0.006315155886113644, + 0.014221311546862125, + 0.005093993153423071, + -0.03327145054936409, + 0.0038728301879018545, + 0.01570066250860691, + -0.0123860789462924, + -0.015114504843950272, + -0.00756423082202673, + 0.00625933101400733, + 0.024172043427824974, + -0.008534182794392109, + -0.0005059102550148964, + 0.02792624570429325, + -0.02869383431971073, + 0.003987968433648348, + -0.00355707248672843, + -0.015589014627039433, + 0.008590007200837135, + 0.013795649632811546, + 0.00772472657263279, + 0.004699731711298227, + 0.0258049126714468, + 0.00804571807384491, + 0.02613985911011696, + -0.02207862213253975, + 0.021520376205444336, + 0.01193250436335802, + 0.009511113166809082, + -0.017040453851222992, + -0.023264894261956215, + -0.003935632761567831, + -0.0045880828984081745, + -0.008548138663172722, + 0.00637098029255867, + -0.03352266177535057, + 0.016551988199353218, + 0.027633167803287506, + 0.025274578481912613, + -0.0047974251210689545, + 0.011437061242759228, + -0.007152524311095476, + -0.015212198719382286, + -0.00680710980668664, + 0.01808716356754303, + 0.00010309011850040406, + 0.022734560072422028, + -0.004089150577783585, + 0.04703221097588539, + 0.008492314256727695, + -0.010704363696277142, + 0.0028365864418447018, + -0.022860165685415268, + 0.02450699172914028, + 0.02780064195394516, + 0.00817830115556717, + 0.023125331848859787, + 0.0157146193087101, + 0.02542809583246708, + -0.0030267389956861734, + 0.0020079403184354305, + 0.02168785035610199, + 0.002292296849191189, + 0.0039321440272033215, + -0.012734982185065746, + 0.00307209650054574, + 0.014681864529848099, + -0.005135861225426197, + -0.015156373381614685, + -0.008757481351494789, + -0.00609883526340127, + -0.005865070037543774, + -0.01595187373459339, + -0.006182572338730097, + 0.006503563839942217, + -0.006489607505500317, + 0.008282972499728203, + 0.010767165571451187, + 0.013963122852146626, + 0.02767503634095192, + 0.03394134342670441, + 0.008583029732108116, + -0.007745660375803709, + 0.052865877747535706, + -0.0052928682416677475, + 0.0147097771987319, + 0.005474297795444727, + 0.0015124971978366375, + -0.00648611830547452, + -0.030536046251654625, + 0.015477364882826805, + -0.01544945314526558, + -0.01219767052680254, + 0.003733268938958645, + -7.823073246981949e-5, + 0.0054184733889997005, + -0.01621703989803791, + -0.006074412260204554, + 0.0019067582907155156, + 0.01512846164405346, + -0.021966973319649696, + 0.007850331254303455, + -0.023404454812407494, + -0.008443468250334263, + -0.001421782304532826, + 0.0012255239998921752, + -0.03609059005975723, + 0.007843353785574436, + -0.011520798318088055, + 0.010578758083283901, + -0.018631454557180405, + -0.032266609370708466, + 0.009455288760364056, + -0.003778626210987568, + 0.0027284263633191586, + -0.019343217834830284, + 0.014039882458746433, + 0.016244953498244286, + -0.013956145383417606, + 0.011883657425642014, + -0.04248250648379326, + 0.013363009318709373, + 0.0024597705341875553, + 0.014751645736396313, + 0.02156224474310875, + -0.012462837621569633, + 0.021213341504335403, + -0.027758773416280746, + -0.0028732214123010635, + 0.004825337324291468, + 0.011848767288029194, + -0.0026795798912644386, + -0.004050771240144968, + 0.007319997996091843, + -0.0007885221857577562, + -0.002299275016412139, + 0.005505699198693037, + -0.0006031671655364335, + 0.006552410311996937, + 0.011569644324481487, + 0.005603392142802477, + 0.02013871818780899, + -0.022413568571209908, + -0.03656509891152382, + -0.011632447130978107, + -0.0031314101070165634, + 0.00012844015145674348, + 0.0015229643322527409, + -0.0034855473786592484, + 0.016775285825133324, + 0.007319997996091843, + 0.014360873028635979, + 0.017221882939338684, + 0.0008173067471943796, + 0.009434354491531849, + -0.0028016960714012384, + -0.02354401722550392, + -0.0051637738943099976, + 0.009741389192640781, + -0.01891057752072811, + 0.003935632761567831, + -0.012909434735774994, + 0.0027109812945127487, + -0.019733989611268044, + -0.009455288760364056, + 0.0006258458597585559, + 0.02099004201591015, + -0.013397899456322193, + -0.018491892144083977, + 0.026851624250411987, + -0.007431647274643183, + 0.0024667487014085054, + -0.001941648661158979, + 0.0241999551653862, + 0.008024783805012703, + 0.0009769301395863295, + -0.003862363286316395, + 0.019594427198171616, + 0.00633609015494585, + 0.01667759381234646, + -0.018198814243078232, + 0.018491892144083977, + -0.005669684149324894, + -0.011855745688080788, + 0.023641709238290787, + 0.040835682302713394, + -0.03494618833065033, + 0.002785995602607727, + -0.014849338680505753, + -0.02863801084458828, + 0.01744518242776394, + -0.0015290701994672418, + 0.011171894147992134, + 0.0034820581786334515, + -0.034527502954006195, + 0.031233852729201317, + 0.006848978344351053, + -0.0006437271949835122, + -0.009406441822648048, + 0.007647967431694269, + 0.01357932947576046, + -0.013460702262818813, + -0.00571155222132802, + 0.003105242270976305, + 0.007731704507023096, + -0.014723733067512512, + 0.019385086372494698, + -0.018324417993426323, + 0.05462435260415077, + 0.004560170229524374, + 0.031373415142297745, + -0.04337570071220398, + 0.003987968433648348, + 0.011395192705094814, + -0.00017859504441730678, + -0.037290818989276886, + -0.01698462851345539, + -0.0014906907454133034, + 0.010522933676838875, + 0.010822990909218788, + 0.003024994395673275, + -0.011095135472714901, + -0.010585736483335495, + -9.349526953883469e-5, + 0.020166629925370216, + 0.0008748758700676262, + 0.022441482171416283, + 0.011716184206306934, + 0.008764458820223808, + -0.01853376068174839, + -0.01976190134882927, + -0.008024783805012703, + 0.036062680184841156, + 0.02078069932758808, + -0.023055551573634148, + -0.004752067383378744, + 0.0024859383702278137, + -0.007640989497303963, + 0.022860165685415268, + 0.005603392142802477, + -0.00840159971266985, + -0.0001924421521835029, + -0.007640989497303963, + -0.008924954570829868, + 0.003984479233622551, + 0.012246517464518547, + 0.029614940285682678, + 0.011758052743971348, + -0.012665201909840107, + -0.01744518242776394, + 0.025777000933885574, + -0.04884650930762291, + 0.009036604315042496, + -0.022636868059635162, + -0.002447559032589197, + -0.02104586735367775, + 0.003182001179084182, + -0.00704785343259573, + -0.0062523530796170235, + -0.0028540317434817553, + -0.02033410407602787, + -0.016579899936914444, + 0.0126163549721241, + 0.002367311157286167, + -0.022036753594875336, + -0.015044724568724632, + 0.004629950970411301, + 0.01219767052680254, + -0.010592713952064514, + 0.0061790831387043, + -0.027270307764410973, + 0.018701234832406044, + 0.02297181449830532, + 0.01300014927983284, + 0.009922819212079048, + -0.0007911389693617821, + 0.03854687139391899, + -0.00633609015494585, + 0.007313020061701536, + 0.00785730965435505, + 0.02207862213253975, + -0.016496162861585617, + 0.014695821329951286, + 0.011213762685656548, + 0.005191686097532511, + 0.015100548975169659, + 0.018966400995850563, + 0.006109302397817373, + 0.016077479347586632, + -0.025260623544454575, + -0.02279038541018963, + 0.00025775254471227527, + 0.004424097947776318, + -0.00012135304132243618, + 0.0168031994253397, + -0.012728004716336727, + 0.00564526068046689, + 0.0015029023634269834, + -0.008457424119114876, + 0.00013171111640986055, + -0.007752638775855303, + -0.0472555086016655, + 0.021966973319649696, + 0.007023429963737726, + 0.001831744099035859, + 0.01616121642291546, + -0.010627605020999908, + -0.03971919044852257, + -0.007333954330533743, + -0.011799920350313187, + 0.02341841161251068, + -0.005638282746076584, + -0.03829566389322281, + -0.010355459526181221, + -0.02548392117023468, + 0.0064930967055261135, + -0.003987968433648348, + 0.008952867239713669, + -0.01216278038918972, + 0.04203591123223305, + -0.00017804988601710647, + -0.015421540476381779, + 0.006318644620478153, + 0.000570893578696996, + -0.002348121488466859, + 0.010515955276787281, + -0.023460280150175095, + -0.005526633467525244, + 0.006684993393719196, + 0.021576199680566788, + -0.0004710199136752635, + -0.007892199791967869, + 0.02464655227959156, + -0.014472522772848606, + 0.008708634413778782, + 0.033690135926008224, + 0.004804403055459261, + 0.006883868481963873, + 0.018868708983063698, + 0.012232561595737934, + 0.027242396026849747, + -0.0006092729745432734, + 0.003290161257609725, + 0.020962130278348923, + 0.007941046729683876, + 0.008596985600888729, + -0.028540316969156265, + -0.04348734766244888, + -0.02001311257481575, + -0.006238396745175123, + -0.0020602759905159473, + 0.024632595479488373, + -0.030033623799681664, + -0.00522657623514533, + 0.00865978840738535, + -0.02997780032455921, + -0.0027092366944998503, + -0.011381236836314201, + 0.008645831607282162, + -0.008945888839662075, + -0.056410737335681915, + 0.009427376091480255, + -0.0037716482765972614, + -0.012183714658021927, + 0.00156047148630023, + 0.013537460938096046, + -0.002681324491277337, + -0.008778415620326996, + -0.0036983785685151815, + -0.01917574368417263, + 0.0031715340446680784, + 0.015491320751607418, + -0.017459137365221977, + -0.006765241269022226, + -0.014004991389811039, + 0.011137004010379314, + 0.01699858531355858, + 0.021450595930218697, + -0.015407584607601166, + -0.007333954330533743, + -0.0024510479997843504, + 0.017682436853647232, + 0.022874122485518456, + 0.009050560183823109, + -0.015798356384038925, + 0.011702227406203747, + -0.04195217415690422, + -0.004846271593123674, + -0.007829397916793823, + 0.012790807522833347, + 0.0020567867904901505, + 0.015910005196928978, + -0.020362015813589096, + 0.022287964820861816, + 0.010795078240334988, + 0.015351759269833565, + 0.0070827435702085495, + -0.014144552871584892, + 0.0027127256616950035, + 0.017193971201777458, + -0.017808040603995323, + -0.0005312057910487056, + -0.021604113280773163, + 0.004239179193973541, + -0.0012883266899734735, + 0.03759785369038582, + 0.0022417057771235704, + -0.014695821329951286, + -0.013209491036832333, + 0.011276565492153168, + -0.0157146193087101, + -0.02509314939379692, + -0.005561524070799351, + 0.007599120959639549, + -0.03248990699648857, + 0.012762894853949547, + 0.0011810387950390577, + -0.00817830115556717, + -0.006391914561390877, + -0.014151531271636486, + 0.02085048146545887, + 0.021157516166567802, + 0.03307606279850006, + -0.03318771347403526, + -0.0020567867904901505, + -0.029810326173901558, + -0.004692753776907921, + 0.005770865827798843, + -0.010690406896173954, + -0.03327145054936409, + -0.0064582061022520065, + -0.01931530423462391, + -0.00785730965435505, + -0.010139139369130135, + 0.010934639722108841, + -0.012218604795634747, + 0.006056967191398144, + 0.01821276918053627, + 0.01461208425462246, + 0.011276565492153168, + 0.016551988199353218, + -0.030480220913887024, + 0.008743524551391602, + 0.013963122852146626, + -0.009427376091480255, + 0.006018587853759527, + -0.015212198719382286, + 0.04080776870250702, + -0.002126567531377077, + 0.010194963775575161, + -0.0027493606321513653, + 0.017598699778318405, + -0.007319997996091843, + 0.028344931080937386, + 0.034025080502033234, + -0.012476793490350246, + -0.010174029506742954, + -0.035951029509305954, + 0.007086232770234346, + -0.008157366886734962, + -0.011813877150416374, + -0.0032709715887904167, + 0.02394874580204487, + -0.02206466533243656, + -0.023460280150175095, + -0.00030725327087566257, + 0.02182741090655327, + -0.00865978840738535, + 0.012337232008576393, + 0.005156795494258404, + 0.0019817727152258158, + 0.03731873258948326, + 0.013558395206928253, + -0.046697262674570084, + 0.0034803138114511967, + 0.0038204947486519814, + 0.0028941556811332703, + 0.008931932970881462, + -0.020236410200595856, + -0.0017846421105787158, + -0.0077735730446875095, + -0.013816583901643753, + 0.00283135287463665, + -0.0028208857402205467, + -0.010222876444458961, + -0.00604998879134655, + -0.009748367592692375, + 0.009636717848479748, + 0.009287814609706402, + -0.019803769886493683, + -0.032657381147146225, + -0.0032325922511518, + -0.017612654715776443, + -0.022357745096087456, + -0.01712419092655182, + 0.0013589796144515276, + 0.0034785692114382982, + -0.02002706751227379, + -0.01942695491015911, + 0.009190121665596962, + -0.0019399041775614023, + -0.011053266935050488, + -0.012923390604555607, + -0.01865936629474163, + 0.00898077990859747, + -0.005470809061080217, + -0.0015561102190986276, + -0.004814870189875364, + -0.026223596185445786, + 0.005013745278120041, + 0.0007819802849553525, + -0.009252924472093582, + 0.0014915630454197526, + 0.013467679731547832, + 0.007606099359691143, + -0.007927090860903263, + -0.011409148573875427, + 0.002747616032138467, + 0.006444250233471394, + -0.005728997755795717, + 0.008373687043786049, + 0.004232201259583235, + 0.03288067877292633, + 0.002025385620072484, + 0.0022696182131767273, + 0.008610941469669342, + -0.005198664031922817, + 0.012183714658021927, + 0.020180586725473404, + -0.008234125562012196, + -0.013788671232759953, + 0.0030023157596588135, + -0.007529340218752623, + 0.07195788621902466, + 0.0009193610749207437, + -0.014123618602752686, + -0.00622792961075902, + 0.017040453851222992, + -0.010669472627341747, + -0.009322704747319221, + 0.03511366248130798, + 0.0026551566552370787, + 0.00016452986164949834, + -0.0029255568515509367, + -0.024241823703050613, + -0.00016736470570322126, + -0.01096952985972166, + -0.007480493746697903, + 0.0016756097320467234, + 0.021087735891342163, + 0.017347488552331924, + -0.0018055762629956007, + 0.03212704509496689, + 0.004549703560769558, + 0.0008931932970881462, + -0.0008709506946615875, + 0.012462837621569633, + -0.007599120959639549, + -0.0008138177217915654, + 0.006831533275544643, + 0.005439407657831907, + 0.0010877071181312203, + 0.013830539770424366, + 0.009622761979699135, + 0.006070923060178757, + -0.020194541662931442, + 0.0013964867684990168, + 0.017598699778318405, + 0.013411855325102806, + 0.00031772037618793547, + 0.012051131576299667, + 0.0012115678982809186, + 0.020222455263137817, + -0.008310884237289429, + -0.019859595224261284, + 0.010627605020999908, + 0.0035448609851300716, + -0.01789177767932415, + -0.002203326439484954, + 0.005617348477244377, + -0.006521008908748627, + -0.01209300011396408, + -0.009134297259151936, + -0.011234696954488754, + -0.019329261034727097, + 0.008750502951443195, + -0.007285107858479023, + 0.007333954330533743, + -0.006056967191398144, + 0.008122476749122143, + -0.020962130278348923, + -0.03444376587867737, + 0.003663488198071718, + -0.008492314256727695, + 0.008945888839662075, + -0.0326852910220623, + -0.014905163086950779, + 0.0029185789171606302, + -0.0066535924561321735, + -0.02001311257481575, + 0.0037158236373215914, + 0.008059673942625523, + -0.0010563057148829103, + -0.00135112926363945, + 0.014821426011621952, + 0.0013118776259943843, + -0.03617432713508606, + -0.013921255245804787, + 0.0077875289134681225, + 0.010041446425020695, + 0.013963122852146626, + -0.0037716482765972614, + -0.009420397691428661, + 0.004835804458707571, + -0.0014566726749762893, + 0.0032552708871662617, + -0.0032291030511260033, + -0.006496585439890623, + 0.006733839865773916, + 0.011974372901022434, + -0.008345774374902248, + 0.002622010884806514, + -0.022301919758319855, + 0.000981291406787932, + 0.005153306759893894, + -0.006070923060178757, + -0.0034855473786592484, + 0.022441482171416283, + -0.014004991389811039, + -0.0004710199136752635, + -0.007019941229373217, + 4.737457129522227e-5, + -0.0038798083551228046, + 0.02753547392785549, + 0.014793514274060726, + 0.015533189289271832, + -0.004675308708101511, + -0.0003475952544249594, + 0.006911780685186386, + 0.0068280440755188465, + 0.0014121874701231718, + -0.0162868220359087, + -0.013369986787438393, + 0.008408577181398869, + -0.011723161675035954, + -0.020445752888917923, + -0.0030459286645054817, + -0.026474807411432266, + 0.014695821329951286, + 0.02078069932758808, + -0.002592354081571102, + -0.008282972499728203, + -0.01297223661094904, + -0.026502719148993492, + 0.010515955276787281, + -0.004452010150998831, + -0.0014252712717279792, + 0.022427525371313095, + -0.005505699198693037, + -0.015268023125827312, + -0.002332420786842704, + -0.03025692328810692, + 0.008310884237289429, + 0.018617497757077217, + -0.0030860526021569967, + -0.003946099895983934, + -0.006350046023726463, + -0.014723733067512512, + -0.004605527967214584, + 0.016900891438126564, + 0.0052579776383936405, + 0.017682436853647232, + -0.004124040715396404, + 0.014960987493395805, + 0.010041446425020695, + 0.003939121961593628, + 0.012232561595737934, + -0.0034210002049803734, + 0.02309742011129856, + -0.005449874792248011, + -0.014458566904067993, + 0.026279421523213387, + 0.006294221617281437, + 0.018840795382857323, + -0.03938424214720726, + 0.007142057176679373, + -0.008478358387947083, + 0.01361421961337328, + -9.0987523435615e-5, + -0.015379671938717365, + 0.010167052038013935, + -0.007313020061701536, + -0.009497156366705894, + -0.006978072691708803, + -0.01397010125219822, + -0.016747374087572098, + -0.013621198013424873, + -0.009887929074466228, + 0.01949673518538475, + 0.018757058307528496, + 0.015686707571148872, + 0.009294793009757996, + 0.020613227039575577, + -0.019217612221837044, + 0.0015997231239452958, + 0.0066954605281353, + -0.02478611469268799, + 0.009587871842086315, + 0.000710891152266413, + 0.004382229410111904, + 0.011367280036211014, + -0.01782199740409851, + 0.012141846120357513, + -0.0076270331628620625, + -0.02400456927716732, + 0.0004014572477899492, + -0.002243450377136469, + 0.01483538281172514, + -0.02026432193815708, + 2.0498087906162255e-5, + -0.0011060244869440794, + 0.0023742890916764736, + -0.010976508259773254, + -0.013188556768000126, + 0.01815694570541382, + -0.00012222530494909734, + -0.012637289240956306, + -0.027786685153841972, + -0.0014967966126278043, + 0.012986193411052227, + 0.013621198013424873, + -0.0017078833188861609, + 0.007815441116690636, + 0.0006555027212016284, + -0.00027650612173601985, + 0.022804340347647667, + -0.012532618828117847, + 0.004909073933959007, + -0.010899749584496021, + -0.014165487140417099, + -0.015086593106389046, + 0.0031157094053924084, + -0.0012543085031211376, + -0.04189634695649147, + -0.021771587431430817, + 0.025204798206686974, + -0.005380094051361084, + -0.013251359574496746, + 0.01930134929716587, + 0.009971666149795055, + 0.014695821329951286, + 0.007299063727259636, + 0.011660358868539333, + -0.006911780685186386, + 0.014039882458746433, + 0.0064128488302230835, + 0.00044070888543501496, + -0.0034018103033304214, + 0.015910005196928978, + -0.005160284694284201, + 0.007459559477865696, + 0.008485335856676102, + -0.02020849846303463, + 0.031373415142297745, + -0.004570637363940477, + -0.002803440671414137, + 0.02099004201591015, + 0.0108090341091156, + 0.00162850774358958, + 0.017473094165325165, + 0.009266880340874195, + 0.011457995511591434, + -0.001929437043145299, + -0.011506841517984867, + 0.015058680437505245, + -0.0064512281678617, + 0.008890064433217049, + 0.009699520654976368, + 0.00617559440433979, + 0.007347910664975643, + -0.010788099840283394, + -0.01730562001466751, + -3.420891152927652e-5, + -0.0009621017379686236, + 0.0031191983725875616, + -0.026600413024425507, + 0.02380918338894844, + 0.012379100546240807, + 0.011185850016772747, + -0.0007780551095493138, + 0.004134507849812508, + 0.0070687877014279366, + 0.0021440128330141306, + -0.011374258436262608, + 0.0004343850305303931, + 0.018505848944187164, + 0.0017558574909344316, + 0.0049718767404556274, + 0.008987757377326488, + 0.00019811184029094875, + 0.0242557805031538, + -0.016956716775894165, + 0.019287392497062683, + 0.004999788943678141, + -0.00527542270720005, + 0.007173458579927683, + 0.003810027614235878, + -0.007647967431694269, + 0.003680933266878128, + 0.01403290405869484, + 0.008806327357888222, + 0.003994946368038654, + 0.002770294900983572, + -0.00564526068046689, + 0.003487291745841503, + -0.004661352373659611, + -0.01296525914222002, + -0.017584742978215218, + -0.022874122485518456, + -0.0157146193087101, + 0.006039521656930447, + -0.012832675129175186, + 0.005394049920141697, + 0.0013642131816595793, + -0.0005813606549054384, + 0.005544078536331654, + -0.0178359542042017, + 0.00332330702804029, + 0.010592713952064514, + -0.010669472627341747, + -0.002637711353600025, + 0.008164345286786556, + 0.009546003304421902, + -0.018059251829981804, + -0.010857881046831608, + -0.008052695542573929, + -0.026670193299651146, + -0.003649531863629818, + -0.0009176165331155062, + 0.001483712694607675, + 0.004158931318670511, + -0.0017331787385046482, + -0.0034576349426060915, + -0.010397328063845634, + -0.004008902702480555, + 0.012728004716336727, + 0.001803831779398024, + 0.0022050710394978523, + -0.019580472260713577, + -0.006262820214033127, + 0.011444038711488247, + -0.00653147604316473, + -0.008708634413778782, + -0.00630468875169754, + -0.009099407121539116, + -0.005879026371985674, + 0.014346917159855366, + 0.010362437926232815, + 0.014305048622190952, + 0.011332389898598194, + -0.004396185744553804, + 0.007124612107872963, + -0.019650252535939217, + 0.02407435141503811, + -0.015156373381614685, + -0.00840159971266985, + 0.010418262332677841, + -0.014779557473957539, + 0.04800913855433464, + -0.023404454812407494, + -0.0019364150939509273, + -0.012588443234562874, + 0.01245585922151804, + -0.03081516921520233, + -0.0018055762629956007, + 0.00028261193074285984, + 0.00719439284875989, + 0.012748938985168934, + 0.020362015813589096, + 0.0036669771652668715, + -0.006395403761416674, + 0.011416126973927021, + 0.029559114947915077, + 0.015505277551710606, + 0.009825126267969608, + -0.006116280797868967, + 0.005578969139605761, + 0.010997442528605461, + 0.0061930394731462, + 0.010111227631568909, + 7.474169979104772e-5, + -0.00674081826582551, + -0.011025354266166687, + -0.014947031624615192, + 0.014374829828739166, + -0.02439534105360508, + -0.0049230302684009075, + -0.0012011007638648152, + -0.005812734365463257, + -0.004783468786627054, + 0.00598369725048542, + -0.020710919052362442, + -0.011060245335102081, + 0.009294793009757996, + -0.017333531752228737, + -0.03288067877292633, + -0.011799920350313187, + -0.011981350369751453, + -0.01193948183208704, + 0.003600685391575098, + 0.004026347771286964, + -0.0018666344694793224, + 0.001495924312621355, + 0.010327547788619995, + 0.00625584227964282, + 0.0014235267881304026, + 0.004389207810163498, + 0.018380243331193924, + 0.004556681495159864, + 0.014500434510409832, + 0.02272060513496399, + -0.002000962384045124, + -0.004110084846615791, + -0.008506270125508308, + 0.004891628865152597, + 0.0043473392724990845, + -0.00661172391846776, + 0.004368273541331291, + -0.012239539064466953, + -0.010885793715715408, + 0.015072637237608433, + -0.0023132311180233955, + -0.023697534576058388, + 0.008359731175005436, + 0.004755556583404541, + 0.025065237656235695, + 0.019971244037151337, + 0.005327758379280567, + -0.043208226561546326, + 0.013363009318709373, + 0.0014898184454068542, + 0.029838237911462784, + 0.008087586611509323, + -0.0021649471018463373, + 0.0016154238255694509, + -0.0129024563357234, + 0.004567148629575968, + 0.006133725866675377, + 0.01483538281172514, + 0.017863865941762924, + 0.005760399159044027, + -0.005481276195496321, + -0.002557463711127639, + 0.02195301651954651, + 0.002107377862557769, + 0.015784399583935738, + -0.013718890957534313, + -0.003358197398483753, + 0.012330254539847374, + 0.007752638775855303, + 0.0015063914470374584, + -0.0021928593050688505, + 0.01711023412644863, + -0.025009412318468094, + -0.0157146193087101, + 0.0006934459670446813, + 0.008555117063224316, + -0.011834811419248581, + 0.007996871136128902, + 0.005990675184875727, + -0.021017955616116524, + 0.021380813792347908, + 0.010299635119736195, + -0.027563387528061867, + -0.004047282040119171, + 0.023669622838497162, + -0.00042304565431550145, + 0.011430082842707634, + 0.025302492082118988, + -0.004434565082192421, + 0.0009821637067943811, + -0.004479922819882631, + -0.019580472260713577, + -0.010620626620948315, + 0.013307184912264347, + 0.0033494748640805483, + 0.0023010193835943937, + -0.019664209336042404, + -0.008373687043786049, + 3.5490040318109095e-5, + 0.010062380693852901, + 0.035169485956430435, + -0.010508977808058262, + -0.004389207810163498, + -0.006182572338730097, + 0.011813877150416374, + 0.02343236841261387, + -0.00029220679425634444, + -0.009120340459048748, + -0.00579180009663105, + 0.0173195768147707, + 0.01429109275341034, + 0.014947031624615192, + -0.01755683124065399, + 0.00640238169580698, + 0.005927872844040394, + -0.013844495639204979, + -0.00013770790246780962, + 0.0034052995033562183, + -0.011074201203882694, + 0.013893342576920986, + 0.008429511450231075, + -0.015323847532272339, + -0.01332811824977398, + 0.005732486490160227, + -0.004284536466002464, + -0.0010022256756201386, + 0.0003515204007271677, + -0.006391914561390877, + -0.0038030496798455715, + 0.0027772728353738785, + -0.0030982643365859985, + 0.019147831946611404, + -0.008834240026772022, + 0.008778415620326996, + 0.002779017435386777, + -0.004793935921043158, + 0.0006101452163420618, + -0.021673893555998802, + 0.022315876558423042, + 0.010864859446883202, + -0.0011618491262197495, + -0.0006336962105706334, + 0.00280692963860929, + -0.02131103351712227, + -0.004179865587502718, + 0.01323042530566454, + -0.005153306759893894, + 0.013621198013424873, + 0.0013650854816660285, + 0.011444038711488247, + 0.014723733067512512, + 0.00596625218167901, + 0.022190270945429802, + -0.0066221910528838634, + -0.01371191255748272, + 0.010146117769181728, + 0.0038867865223437548, + 0.017654523253440857, + -0.011597556993365288, + 0.0032517819199711084, + 0.04016578570008278, + -0.004605527967214584, + -0.02587469294667244, + -0.033299364149570465, + 0.0009708243305794895, + -0.00045226633665151894, + 0.014639995992183685, + 0.003496014280244708, + 0.02792624570429325, + 0.02066905051469803, + 0.00606394512578845, + 0.008380665443837643, + 0.006995517760515213, + 0.0024423254653811455, + -0.011444038711488247, + 0.006730351131409407, + 0.004005413502454758, + 0.009350617416203022, + -0.003862363286316395, + -0.00643378309905529, + 0.015351759269833565, + 0.0009237223421223462, + 0.001880590571090579, + 0.004978854674845934, + 0.022357745096087456, + -0.01103233266621828, + -0.023920832201838493, + -0.021338945254683495, + -0.004877672530710697, + -0.005945317912846804, + 0.0077386824414134026, + -0.022678736597299576, + 0.003339007729664445, + -0.00044310762314125896, + 0.022315876558423042, + 0.006639636121690273, + 0.016886936500668526, + -0.017919691279530525, + 0.002323698252439499, + -0.004410142078995705, + -0.004832315258681774, + 0.016384514048695564, + 0.007808463182300329, + -0.0017462626565247774, + 0.008359731175005436, + 0.02330676279962063, + -0.004811380989849567, + -0.001920714508742094, + 0.027465693652629852, + -0.004061238374561071, + 0.008087586611509323, + 0.011039311066269875, + -0.013021083548665047, + -0.00356405065394938, + -0.022287964820861816, + 0.015016811899840832, + 0.004270580597221851, + -0.008638854138553143, + -0.028289105743169785, + -0.020696964114904404, + 0.006287243217229843, + 0.00016594729095231742, + 0.006011609453707933, + -0.00353962741792202, + -0.023027639836072922, + -0.01425620261579752, + -0.011283542960882187, + 0.024088306352496147, + 0.00153604825027287, + -0.01641242764890194, + 0.004699731711298227, + -0.011918547563254833, + 0.025567658245563507, + -0.0038135165814310312, + -0.006262820214033127, + 0.01648220792412758, + -0.001948626828379929, + -0.004179865587502718, + -0.012462837621569633, + 0.010495021007955074, + -0.011925525963306427, + -0.017863865941762924, + -0.006754774134606123, + -0.004144974984228611, + 0.004647396504878998, + -0.011011398397386074, + -0.009971666149795055, + 0.0013554906472563744, + 0.014374829828739166, + 0.011730140075087547, + -0.018645409494638443, + 0.0004788702353835106, + -0.029140431433916092, + 0.002560952678322792, + 0.01826859451830387, + 0.0016947994008660316, + 0.005519655533134937, + -0.021338945254683495, + 0.021701805293560028, + -0.00683851120993495, + 0.004835804458707571, + -0.015184286050498486, + -0.01762661151587963, + -0.009064516052603722, + 0.005470809061080217, + 0.008345774374902248, + -0.001563960569910705, + -0.008708634413778782, + 0.011311455629765987, + 0.0004143230617046356, + 0.010662495158612728, + -0.010362437926232815, + -0.008157366886734962, + 0.014444610103964806, + 0.0027127256616950035, + -0.019678164273500443, + -0.011653381399810314, + -0.019329261034727097, + -0.0017628355417400599, + -0.013928232714533806, + 0.030870992690324783, + -0.022748516872525215, + 0.00632213382050395, + -0.00022765962057746947, + -0.004786957986652851, + 0.0038518961519002914, + 0.02760525606572628, + -0.007236261386424303, + 0.003370409132912755, + -0.008213191293179989, + -0.018757058307528496, + 0.00808060821145773, + 0.0034803138114511967, + 0.011813877150416374, + -0.008806327357888222, + 0.019036181271076202, + -0.009252924472093582, + -0.010529911145567894, + 0.02407435141503811, + 0.005282401107251644, + 0.007075765635818243, + -0.0013755526160821319, + -0.013139710761606693, + -0.04290119186043739, + 0.004919541068375111, + 0.004769512452185154, + 0.01302806194871664, + -0.019580472260713577, + 0.007026919163763523, + 0.018519803881645203, + -0.012790807522833347, + -1.410606455465313e-5, + 0.003705356502905488, + 0.024353472515940666, + -0.008101542480289936, + 0.0042182449251413345, + -0.001941648661158979, + -0.0008949378388933837, + -0.006234908010810614, + -0.004256624262779951, + 0.006238396745175123, + -0.029196254909038544, + 0.004127529915422201, + -0.0005146328476257622, + -0.008771437220275402, + -0.023571928963065147, + -1.3083886187814642e-5, + 0.010990464128553867, + 0.02117147296667099, + 0.009413420222699642, + -0.024660509079694748, + 0.0014505668077617884, + -0.02953120321035385, + -0.0029587028548121452, + -0.009734411723911762, + -0.024604683741927147, + 0.024814026430249214, + -0.002339398954063654, + -0.014598127454519272, + 0.0012098232982680202, + -0.008778415620326996, + 0.016244953498244286, + -0.013076907955110073, + -0.011395192705094814, + 0.009943753480911255, + -0.0017218394204974174, + 0.002107377862557769, + 0.000895810080692172, + 0.021590156480669975, + 0.005844135768711567, + 0.0025993320159614086, + 0.01348163653165102, + 0.015435496345162392, + -0.0005639154696837068, + -0.014305048622190952, + -0.008317862637341022, + 0.004595060832798481, + -0.008220169693231583, + 0.013216469436883926, + -0.003012782894074917, + -0.004253135062754154, + -0.001175805227831006, + -0.010362437926232815, + 0.0019015248399227858, + -0.002892411081120372, + 0.0046020387671887875, + 0.0010789844673126936, + -0.008715612813830376, + 0.002576653379946947, + 0.030229009687900543, + -0.011095135472714901, + 0.008157366886734962, + 0.005826690699905157, + -0.0017096278024837375, + -0.021604113280773163, + -0.0010676451493054628, + -0.010481065139174461, + -0.010055402293801308, + 0.0120999775826931, + -0.011206784285604954, + -0.005135861225426197, + -0.007606099359691143, + -0.015923961997032166, + -0.018561672419309616, + -0.010613648220896721, + 0.017794085666537285, + 0.0026638791896402836, + -0.0037193126045167446, + -0.01280476339161396, + 0.008450445719063282, + 0.00788522232323885, + 0.003907720558345318, + -0.022943902760744095, + -0.024618640542030334, + 0.005191686097532511, + -0.0129303690046072, + 0.010215898044407368, + -0.002852287143468857, + 0.010955573990941048, + 0.004629950970411301, + 0.006684993393719196, + 0.019985200837254524, + 0.02761921100318432, + 0.012539596296846867, + -0.0015002855798229575, + 0.019454866647720337, + -0.01142310444265604, + 0.0038937644567340612, + -0.0015683218371123075, + -0.009287814609706402, + -0.012441903352737427, + 0.012267451733350754, + 0.0178359542042017, + -0.01296525914222002, + -0.0065419431775808334, + -0.017863865941762924, + -0.015170330181717873, + -0.012602399103343487, + -0.00617559440433979, + -0.0012970492243766785, + -0.010802056640386581, + 0.01994333229959011, + -0.013090863823890686, + 0.016440339386463165, + -0.03865852206945419, + -0.0007776189595460892, + -0.01280476339161396, + -0.016691548749804497, + 0.015812313184142113, + -0.0032727159559726715, + 0.02380918338894844, + 0.027005141600966454, + -0.008652810007333755, + -0.002383011858910322, + -0.009532047435641289, + -0.004071705508977175, + 0.00029198871925473213, + 0.018575629219412804, + 0.02625150978565216, + 0.005488254129886627, + -0.016635725274682045, + -0.017207926139235497, + -0.018673323094844818, + 0.0252885352820158, + 4.7892473958199844e-5, + -0.00145580037496984, + 0.015156373381614685, + 0.01988750696182251, + 0.006447738967835903, + 0.012993170879781246, + 0.008904020301997662, + -0.0006336962105706334, + -0.008471379987895489, + -0.011695249937474728, + -0.009015670046210289, + 0.000867897761054337, + 0.012086021713912487, + -0.01616121642291546, + 0.004354317206889391, + -0.004214755725115538, + -0.015868136659264565, + 0.005202153231948614, + -0.017905734479427338, + 0.002927301451563835, + 0.012079043313860893, + -0.002622010884806514, + -0.027884379029273987, + -0.0018596563022583723, + -0.011513819918036461, + 0.005606881342828274, + -0.004350828472524881, + -0.007389778736978769, + -0.010641560889780521, + 0.03006153739988804, + -0.008192257024347782, + 0.015044724568724632, + 0.003841429017484188, + -0.024046437814831734, + -0.01332811824977398, + -0.006671037524938583, + 0.0020969107281416655, + -0.0010083315428346395, + 0.008924954570829868, + -0.024604683741927147, + 0.00585460290312767, + 0.010962552390992641, + -0.00614419300109148, + -0.0009516346617601812, + 0.000984780490398407, + 0.008596985600888729, + -0.01718001440167427, + -0.020571358501911163, + 0.0030058047268539667, + 0.008492314256727695, + 0.00574295362457633, + 0.011283542960882187, + -0.015058680437505245, + 0.0126721803098917, + -0.010746232233941555, + -0.016258908435702324, + 0.002098655328154564, + -0.005073058884590864, + 0.010006556287407875, + 0.005634793546050787, + 0.01705440878868103, + 0.0157704446464777, + -0.00159710634034127, + -0.007480493746697903, + -0.00680710980668664, + 0.0072432393208146095, + 0.0231672003865242, + -0.01306295208632946, + -0.0074525815434753895, + -0.0009952476248145103, + 0.019901463761925697, + 0.005523144267499447, + -0.005216109100729227, + -0.00630817748606205, + 0.016133304685354233, + -0.013376965187489986, + -0.00680710980668664, + 0.009036604315042496, + -0.014723733067512512, + -0.002948235720396042, + 0.0004446340608410537, + 0.013565373606979847, + -0.014947031624615192, + 0.0006851595244370401, + 0.023446323350071907, + -0.020110804587602615, + -0.009092428721487522, + 0.018324417993426323, + 0.017794085666537285, + 0.009671608917415142, + 0.024116218090057373, + 0.007682858034968376, + 0.0008766203536652029, + 0.005781332962214947, + 0.017152102664113045, + -0.000774129934143275, + -0.004190332721918821, + 0.021324990317225456, + 0.011234696954488754, + 0.010683429427444935, + -0.00756423082202673, + -0.006070923060178757, + -0.01757078617811203, + -0.0006411104113794863, + -0.049711789935827255, + -0.014088728465139866, + -0.002222516108304262, + 0.012602399103343487, + -0.013209491036832333, + -0.0026708573568612337, + 0.004584593698382378, + -0.01087183691561222, + 0.011269587092101574, + 0.009741389192640781, + 0.00653496477752924, + -0.015114504843950272, + -0.012623333372175694, + -0.030843080952763557, + -0.011053266935050488, + -0.008485335856676102, + 0.0057569099590182304, + 0.016970671713352203, + -0.0116115128621459, + 0.008799349889159203, + 0.0044275871478021145, + 0.006158148869872093, + -0.0003214274765923619, + -0.004832315258681774, + 0.017528917640447617, + 0.006915269885212183, + -0.006105813663452864, + -0.012281407602131367, + -0.007955002598464489, + -0.010522933676838875, + 0.006674526259303093, + -0.015281978994607925, + -0.0020288745872676373, + -0.007717748172581196, + 0.024548860266804695, + -0.003576262155547738, + -0.01563088223338127, + -0.007557252421975136, + -0.009706499055027962, + 0.017514962702989578, + 0.004839293193072081, + -0.0013755526160821319, + -0.012923390604555607, + -0.00664312532171607, + -0.01815694570541382, + 0.010913705453276634, + 0.034778714179992676, + -0.0013895087176933885, + 0.005271933972835541, + 0.001828255015425384, + -0.004026347771286964, + -0.03609059005975723, + -0.017863865941762924, + 0.008199235424399376, + 0.010508977808058262, + -0.004664841573685408, + 0.009776279330253601, + -0.02972658909857273, + -0.013914276845753193, + 0.008827261626720428, + 0.008429511450231075, + -0.0004819231398869306, + -0.023460280150175095, + 0.0023934789933264256, + 0.009518090635538101, + -0.0002926429151557386, + 0.00014435886987484992, + 0.02298577129840851, + 0.017291663214564323, + 0.010306613519787788, + -0.007368844468146563, + 0.0008875236380845308, + -0.01994333229959011, + 0.03405299410223961, + -0.015142417512834072, + -0.0021858811378479004, + 0.008987757377326488, + -0.0014130596537142992, + -0.005746442824602127, + -0.006395403761416674, + -0.0031593223102390766, + -0.002536529442295432, + 0.041086889803409576, + -0.009169187396764755, + -0.005770865827798843, + 0.0021283121313899755, + -0.004622973036020994, + 0.02040388435125351, + -0.003600685391575098, + -0.01627286523580551, + 0.011890635825693607, + 0.00612674793228507, + -0.03237825632095337, + 0.00039862238918431103, + 0.012079043313860893, + 0.015100548975169659, + -0.003649531863629818, + -0.014151531271636486, + -0.0033773870673030615, + 0.016300776973366737, + -0.040193699300289154, + -0.006367491092532873, + -0.03235034644603729, + 0.019078049808740616, + 0.01963629573583603, + 0.006196528673171997, + -0.012302341870963573, + 0.009853038936853409, + -0.004448521416634321, + 0.0221344456076622, + 0.020752787590026855, + 0.008087586611509323, + 0.0051463283598423, + 0.018687278032302856, + 0.006555899046361446, + 0.009469244629144669, + -0.01064853835850954, + -0.006796642672270536, + 0.01283965352922678, + 0.02020849846303463, + -0.0015770443715155125, + -0.010634582489728928, + -0.005174241028726101, + -0.018561672419309616, + 0.012728004716336727, + -0.008429511450231075, + 0.004176376387476921, + -0.006395403761416674, + -0.009099407121539116, + -0.014947031624615192, + -0.01216278038918972, + 0.023264894261956215, + 0.002963936422020197, + 0.02619568444788456, + 0.010515955276787281, + 0.006158148869872093, + -0.00685595627874136, + 0.014988900162279606, + -0.007215327117592096, + -0.011220741085708141, + 0.012058109045028687, + 0.004745089448988438, + 0.02697722800076008, + 0.009776279330253601, + -0.016328690573573112, + -0.02279038541018963, + -0.00034781330032274127, + -0.0006118897581472993, + 0.023585885763168335, + -0.0017157335532829165, + -0.006119769532233477, + -0.00341053307056427, + 0.026879535987973213, + 0.030089449137449265, + -0.01244888175278902, + 0.029614940285682678, + -0.0023289318196475506, + -0.0263212900608778, + -0.005149817559868097, + 0.003157577943056822, + -0.005460341926664114, + 0.0060918573290109634, + 0.009231990203261375, + 0.005010256078094244, + 0.004546214360743761, + 0.0035012478474527597, + 0.010062380693852901, + 0.024311605840921402, + -0.03458332642912865, + -0.007347910664975643, + -0.0014270158717408776, + 0.00561385927721858, + 0.006761752534657717, + 0.01582626812160015, + 0.007040875032544136, + -0.017919691279530525, + 0.021729718893766403, + -0.011667337268590927, + -0.009231990203261375, + -0.014088728465139866, + 0.0023498658556491137, + 0.00840159971266985, + -0.007696813903748989, + -0.01274196058511734, + -0.010034468024969101, + -0.019385086372494698, + 0.007089721970260143, + 0.015491320751607418, + 0.015337803401052952, + 0.0005961890565231442, + -0.002255661878734827, + 0.008087586611509323, + 0.01180689875036478, + 0.009971666149795055, + 0.001917225425131619, + -0.013690978288650513, + 0.0011121303541585803, + -0.0010318824788555503, + 0.010620626620948315, + 0.008387642912566662, + 0.00627328734844923, + -0.000419338553911075, + -0.0020061959512531757, + 0.0011225974885746837, + -0.02118542790412903, + 0.00772472657263279, + -0.004448521416634321, + 0.005770865827798843, + -0.003708845702931285, + -0.006461695302277803, + 0.0005905193975195289, + 0.006266309414058924, + 0.01796155981719494, + 0.011632447130978107, + -0.009329683147370815, + 0.00609534652903676, + -0.008345774374902248, + 0.02059927023947239, + -0.01641242764890194, + 0.018059251829981804, + 0.009873972274363041, + -0.021534331142902374, + 0.002763316733762622, + 0.013446745462715626, + 0.014667908661067486, + 0.008701656945049763, + 0.009713477455079556, + 0.0027772728353738785, + 0.020431796088814735, + 0.012832675129175186, + 0.01354443933814764, + -0.00730604212731123, + 0.012728004716336727, + -0.01193250436335802, + -0.0019870062824338675, + 0.02644689567387104, + 0.022832253947854042, + -0.0019660720136016607, + 0.021855322644114494, + -0.008296928368508816, + -0.006479140371084213, + 0.0032552708871662617, + -0.0067477962002158165, + -0.0016660147812217474, + 0.00579180009663105, + 0.01138821430504322, + 0.00808060821145773, + 0.0034541459754109383, + -0.007745660375803709, + -0.014947031624615192, + -0.008122476749122143, + 0.006430293899029493, + -0.01621703989803791, + 0.027688991278409958, + 0.006981561426073313, + -0.0001016726964735426, + -0.015254066325724125, + 0.004532258026301861, + 0.013397899456322193, + 0.025079192593693733, + -0.016831111162900925, + 0.008059673942625523, + -0.0074037350714206696, + 0.004228712059557438, + 0.0006459078285843134, + -0.02323698252439499, + -0.004162420518696308, + 0.004438054282218218, + 0.006105813663452864, + -0.006367491092532873, + 0.01858958601951599, + 0.0064582061022520065, + 0.011311455629765987, + -0.01815694570541382, + -0.014974943362176418, + -0.017514962702989578, + -0.008862151764333248, + -0.004172887187451124, + 0.002372544724494219, + 0.011876679956912994, + -0.016705505549907684, + -0.016007699072360992, + -0.0011042800033465028, + 0.0017689414089545608, + 0.0020480642560869455, + -0.004657863639295101, + -0.025442052632570267, + 0.00024139770539477468, + -0.007996871136128902, + 0.00010129108704859391, + 4.584811904351227e-5, + 0.00693620415404439, + 0.01096952985972166, + -0.0004400546895340085, + -0.032210782170295715, + 0.0006746923900209367, + 0.029838237911462784, + -0.014430654235184193, + -0.02407435141503811, + 0.004657863639295101, + 0.00579180009663105, + -0.01634264551103115, + 0.013007127679884434, + 0.0021928593050688505, + 0.005139350425451994, + -0.0040577491745352745, + 0.006430293899029493, + -0.032461993396282196, + 0.001877101487480104, + -0.0055475677363574505, + -0.02619568444788456, + -0.001379041583277285, + 0.03854687139391899, + 0.003991457633674145, + 0.031568799167871475, + 0.008269015699625015, + -0.011395192705094814, + -0.018254637718200684, + 0.012686136178672314, + -0.012058109045028687, + 0.009943753480911255, + -0.008066652342677116, + -0.017905734479427338, + 0.017584742978215218, + 0.001945137744769454, + 0.00021043249580543488, + -0.006311666686087847, + 0.0028016960714012384, + -0.007333954330533743, + 0.017919691279530525, + -0.014765601605176926, + 0.01627286523580551, + -0.00572550855576992, + 2.4021196622925345e-6, + -0.012916412204504013, + 0.0022975304163992405, + -0.022804340347647667, + 0.01839420013129711, + -0.021925104781985283, + -0.01924552395939827, + 0.0007536318153142929, + -0.01930134929716587, + 0.006475651171058416, + -0.00703389709815383, + 0.01441669836640358, + -0.018115077167749405, + -0.008296928368508816, + -0.001932926126755774, + 0.0252327099442482, + -0.02323698252439499, + -0.013460702262818813, + -0.010083314962685108, + 0.0019887506496161222, + 0.011590578593313694, + -0.014584171585738659, + -0.003625108627602458, + 0.014102684333920479, + 0.034080907702445984, + -0.0012019730638712645, + -0.012120911851525307, + -0.009315727278590202, + -0.008834240026772022, + 0.014011969789862633, + -0.020962130278348923, + 0.0017619633581489325, + 0.0002560080320108682, + 0.00028283000574447215, + -0.012497727759182453, + -0.006189550273120403, + -0.03988666459918022, + 0.008994735777378082, + -0.0024702376686036587, + 0.00624188594520092, + 0.008687700144946575, + -0.0008077119127847254, + -0.017989471554756165, + -0.011143982410430908, + -0.02092026174068451, + 0.00630817748606205, + 0.01911991834640503, + 0.04047282040119171, + 0.009287814609706402, + 0.02052948996424675, + -0.007009474094957113, + -0.010508977808058262, + -0.02432556077837944, + 0.007326976396143436, + -0.0058371578343212605, + -0.006674526259303093, + -0.006423315964639187, + 0.001446205540560186, + 0.015923961997032166, + 0.008736547082662582, + 0.011876679956912994, + -0.01357932947576046, + 0.012595420703291893, + 0.0023934789933264256, + -0.01332811824977398, + -0.008052695542573929, + 0.01691484823822975, + -0.003502992447465658, + 0.005892982240766287, + -0.0033965767361223698, + -0.0066187018528580666, + -0.0004923902451992035, + -0.001151381991803646, + 0.00257316417992115, + -0.020683007314801216, + 0.0016293799271807075, + 0.01757078617811203, + 0.020962130278348923, + -0.004026347771286964, + -0.02309742011129856, + 0.018254637718200684, + -0.00782241951674223, + 0.009818147867918015, + -0.010620626620948315, + 0.00658032251521945, + -0.0006075284327380359, + -0.003579751355573535, + -0.016384514048695564, + -0.007668901700526476, + 0.017459137365221977, + 0.005240532569587231, + -0.019343217834830284, + 0.01691484823822975, + 0.011088157072663307, + 0.0336063988506794, + -0.016049567610025406, + 0.004978854674845934, + -0.0019137364579364657, + 0.02341841161251068, + -0.0008190512889996171, + -0.0029552136547863483, + 0.03017318621277809, + -0.004902095999568701, + 0.020934218540787697, + -0.01319553516805172, + -0.02117147296667099, + 0.0118417888879776, + 0.016831111162900925, + -0.003708845702931285, + 0.016900891438126564, + 0.010802056640386581, + -0.005111438222229481, + 0.007110655773431063, + 0.011569644324481487, + 0.004964898806065321, + -0.0002978764823637903, + -0.022301919758319855, + 0.01323042530566454, + -6.405652675312012e-5, + -0.012602399103343487, + -0.022888077422976494, + -0.011988328769803047, + -0.004036814905703068, + -0.027312176302075386, + -0.005031190346926451, + -0.009950731880962849, + 0.010313590988516808, + -0.016831111162900925, + 0.012993170879781246, + 0.01564483903348446, + -0.00556501280516386, + 0.0077735730446875095, + -0.005544078536331654, + -0.007975936867296696, + -0.005425451323390007, + 0.010285679250955582, + 0.011430082842707634, + -0.010599692352116108, + -0.007899178192019463, + -0.019720032811164856, + 0.01584022492170334, + 0.000895810080692172, + -0.014584171585738659, + -0.017668480053544044, + -0.01493307575583458, + 0.01570066250860691, + 0.012079043313860893, + 0.010139139369130135, + 0.006590789649635553, + 0.00013661757111549377, + -0.008687700144946575, + -0.013474658131599426, + -0.020696964114904404, + 0.01963629573583603, + -0.02206466533243656, + -0.0211016908288002, + 0.028721746057271957, + -0.016384514048695564, + 0.0368163101375103, + -0.02400456927716732, + 0.01575648784637451, + 0.024367429316043854, + -0.0020306191872805357, + 0.004752067383378744, + 0.0001051072176778689, + 0.012407013215124607, + 0.00730604212731123, + -0.02078069932758808, + 0.02665623649954796, + 0.03198748454451561, + -0.00820621382445097, + 0.00898077990859747, + -0.0006105813663452864, + -0.015868136659264565, + 0.013963122852146626, + 0.033745959401130676, + -0.022567085921764374, + 0.001600595423951745, + -0.02040388435125351, + 0.0018579118186607957, + 0.0009873972740024328, + 0.01174409594386816, + 0.004839293193072081, + -0.007424669340252876, + -0.004661352373659611, + 0.013984057120978832, + -0.014486478641629219, + -0.016314733773469925, + 0.06486815959215164, + 0.026237552985548973, + 0.006880379747599363, + 0.0017349233385175467, + 0.01229536347091198, + -0.015491320751607418, + 0.007975936867296696, + -0.0019922396168112755, + 0.021408727392554283, + -0.006650103256106377, + -0.0128745436668396, + -0.007361866533756256, + -0.004996300209313631, + 0.0026883024256676435, + 0.019217612221837044, + 0.0007946279947645962, + 0.0056417714804410934, + -0.0024196465965360403, + 0.006350046023726463, + -0.008199235424399376, + -0.0013642131816595793, + -0.00648262957111001, + 0.03131759166717529, + 0.012169758789241314, + -0.010592713952064514, + -0.009343639016151428, + 0.006294221617281437, + -0.01808716356754303, + -0.013300206512212753, + -0.004110084846615791, + -0.003712334670126438, + -0.009699520654976368, + -0.004445032216608524, + 0.007347910664975643, + 0.0068734013475477695, + 0.0032186359167099, + 0.009894906543195248, + -0.010174029506742954, + -0.0055929250083863735, + 0.0018788460874930024, + 0.007180436514317989, + 0.021855322644114494, + -0.005715041421353817, + -0.018296506255865097, + 0.018757058307528496, + -0.007215327117592096, + 0.009699520654976368, + 0.0020393417216837406, + 0.008478358387947083, + 0.017068365588784218, + 0.01512846164405346, + -0.02033410407602787, + 0.004696242976933718, + -0.007044364232569933, + 0.04027743637561798, + -0.001486329478211701, + 0.0014933075290173292, + -0.027563387528061867, + 0.022762473672628403, + 0.019343217834830284, + -0.001985261682420969, + 0.01142310444265604, + 0.01148590724915266 + ], + "63dc5976-0aed-4779-9bd4-11eab2368fd8": [ + -0.002192864893004298, + -0.035234756767749786, + -0.005703682545572519, + 0.020759616047143936, + 0.02046177349984646, + -0.029441723600029945, + 0.026642004027962685, + 0.05224156007170677, + -0.018749181181192398, + 0.06618058681488037, + 0.0029449169524013996, + -0.0029449169524013996, + 0.009977721609175205, + -0.013760319910943508, + 0.02497408725321293, + 0.03347748890519142, + -0.030618201941251755, + 0.026761142536997795, + -0.015740972012281418, + -0.005305318161845207, + 0.04044700041413307, + -0.019806521013379097, + -0.05188414826989174, + 0.013313556089997292, + 0.020863860845565796, + 0.002784826559945941, + -0.033090293407440186, + 0.022114800289273262, + -0.038332320749759674, + -0.039076924324035645, + 0.020193716511130333, + -0.003240897785872221, + -0.014728307723999023, + 0.02102767489850521, + 0.02798229642212391, + -0.03261374682188034, + 0.0030566079076379538, + -0.027490856125950813, + -0.04050656780600548, + -0.008622538298368454, + -0.003784460248425603, + 0.006373827811330557, + 0.003317219903692603, + -0.023246601223945618, + -0.034490153193473816, + 0.003224144224077463, + -0.017632272094488144, + -0.029754457995295525, + 0.003879397641867399, + 0.022263720631599426, + 0.014460249803960323, + -0.006012693978846073, + 0.034043390303850174, + 0.017974790185689926, + 0.03612828627228737, + -0.030409710481762886, + 0.015458021312952042, + 0.005997801665216684, + -0.012114740908145905, + -0.047773923724889755, + 0.02692495472729206, + -0.007922608405351639, + -0.00788537785410881, + -0.02305300347507, + 0.016753636300563812, + 0.0005645044730044901, + 0.010774449445307255, + 0.01566651090979576, + -0.03410295769572258, + -0.03571130707859993, + 0.017870545387268066, + 0.02561444789171219, + -0.02777380682528019, + 0.00600152462720871, + 0.02476559765636921, + -0.020953213796019554, + 0.05784099921584129, + 0.019702276214957237, + 0.005156396888196468, + -0.019642706960439682, + 0.015934569761157036, + -0.0025037378072738647, + 0.011861574836075306, + 0.002553998725488782, + 0.061593811959028244, + -0.0155473742634058, + -0.04083419591188431, + -0.04902486130595207, + 0.017974790185689926, + -0.005115443374961615, + 0.005096828565001488, + 0.02775891311466694, + 0.017840761691331863, + -0.013000821694731712, + -0.029322586953639984, + -0.019761845469474792, + 0.010364916175603867, + -0.010811679996550083, + 0.021802065894007683, + -0.0012155694421380758, + 0.03657504916191101, + -0.0038272752426564693, + 0.006474349647760391, + -0.011079737916588783, + -0.009404374286532402, + 0.007084926590323448, + 0.02799718827009201, + -0.020431989803910255, + -0.004329884424805641, + 0.057096391916275024, + 0.0023306170478463173, + -0.02336573787033558, + 0.0193001888692379, + -0.03827274963259697, + -0.059479132294654846, + -0.012353014200925827, + -0.018912993371486664, + 0.012539166025817394, + -0.007338092662394047, + -0.02059580385684967, + 0.04163837060332298, + 0.0058563267812132835, + -0.030260790139436722, + 0.003784460248425603, + -0.030379926785826683, + 0.012457258999347687, + 0.00302682351320982, + 0.03172021731734276, + 0.013998594135046005, + 0.013790104538202286, + -0.010811679996550083, + -0.018049251288175583, + 0.0028574257157742977, + 0.0011736853048205376, + 0.010498945601284504, + 0.025659125298261642, + -0.00743116857483983, + 0.0557858869433403, + -0.013261433690786362, + -0.0070253582671284676, + -0.05530933663249016, + -0.02768445387482643, + -0.03440079838037491, + 0.008734229020774364, + 0.002090481575578451, + 0.025018762797117233, + -0.004605388268828392, + 0.004754309542477131, + -0.014601725153625011, + 0.032107412815093994, + -0.06826548278331757, + -0.00782580953091383, + -0.029858702793717384, + 0.03603893145918846, + 0.02025328390300274, + -0.03997045382857323, + -0.00948628131300211, + 0.0007083064992912114, + -0.02820567786693573, + 0.032881803810596466, + 0.024631569162011147, + -0.03681332245469093, + -0.012539166025817394, + 0.019106591120362282, + 0.04062570631504059, + 0.0005663659540005028, + 0.054088182747364044, + 0.01682809740304947, + -0.015309100970625877, + 0.018525797873735428, + -0.020625587552785873, + -0.019389541819691658, + 0.005699959583580494, + 0.03880886733531952, + 0.0160834901034832, + 0.00922566931694746, + 0.007818363606929779, + 0.03740900754928589, + -0.004646341782063246, + -0.003743506968021393, + -0.05310530215501785, + -0.008696998469531536, + -0.0016762943705543876, + -0.009880922734737396, + 0.027520639821887016, + 0.03076712228357792, + 0.007066311314702034, + 0.01115419901907444, + -0.005085659213364124, + -0.019061915576457977, + 0.020953213796019554, + -0.022040339186787605, + -0.01184668205678463, + -0.03815361484885216, + -0.03419230878353119, + 0.01522719394415617, + 0.003086392069235444, + -0.000984741491265595, + 0.025137901306152344, + 0.0375579297542572, + 0.0044564674608409405, + -0.021206380799412727, + -0.01565161906182766, + 0.03133302181959152, + -0.012405136600136757, + 0.012271108105778694, + -0.01308272872120142, + -0.010588298551738262, + 0.039613042026758194, + -0.056590061634778976, + 0.03874929994344711, + -0.046910181641578674, + -0.014370896853506565, + -0.04512312635779381, + -0.004367114510387182, + -0.007524244021624327, + 0.0160834901034832, + 0.02326149307191372, + -0.026969632133841515, + -0.04470614716410637, + 0.012717870995402336, + -0.001896883943118155, + -0.014281543903052807, + -0.04008958861231804, + -0.060015249997377396, + -0.015048488043248653, + -0.06367871165275574, + 0.0018596536247059703, + -0.011526501737535, + 0.0364261269569397, + 0.008190666325390339, + 0.008927826769649982, + 0.040595922619104385, + -0.014296436682343483, + -0.012628518976271152, + 0.03121388517320156, + 0.0933438166975975, + 0.02744617871940136, + -0.03728987276554108, + -0.0055919913575053215, + 0.0064333961345255375, + 0.038213182240724564, + 0.021191488951444626, + 0.005755804944783449, + 0.017513133585453033, + -0.0051042744889855385, + 0.012420029379427433, + 0.05703682452440262, + 0.009746893309056759, + -0.024840058758854866, + -0.043068014085292816, + -0.016753636300563812, + 0.01639622449874878, + -0.026642004027962685, + -0.02218926139175892, + 0.009151208214461803, + 0.04131074249744415, + -0.05161609128117561, + 0.003466141177341342, + 0.007892823778092861, + 0.004549542907625437, + 0.033179644495248795, + -0.002609844319522381, + 0.045837949961423874, + 0.020774509757757187, + -0.056590061634778976, + 0.008764013648033142, + 0.007081203628331423, + 0.03895778954029083, + 0.056560274213552475, + -0.008838473819196224, + 0.012568950653076172, + -0.024825165048241615, + -0.0024646460078656673, + -0.009843692183494568, + -0.008056637831032276, + -0.005956848617643118, + -0.010565959848463535, + -0.0007148217991925776, + 0.006418504286557436, + -0.030394818633794785, + -0.019106591120362282, + 0.008227896876633167, + -0.031154317781329155, + 0.023559335619211197, + 0.018525797873735428, + -0.03934498503804207, + -0.007285970263183117, + 0.004542096983641386, + 0.02014903910458088, + -0.0030082084704190493, + 0.01141481101512909, + 0.03154151141643524, + 0.01560694258660078, + 0.030647985637187958, + -0.024274157360196114, + -0.02551020309329033, + 0.0045904964208602905, + -0.01897256262600422, + 0.021608468145132065, + -0.01757270283997059, + -0.007766241207718849, + 0.01104995422065258, + -0.025867614895105362, + -0.02178717404603958, + -0.02293386682868004, + 0.05450516194105148, + 0.06037265807390213, + -0.0005156396655365825, + 0.048399392515420914, + 0.0273419339209795, + -0.02819078601896763, + -0.04044700041413307, + -0.04297866299748421, + 0.000552404613699764, + 0.029411939904093742, + 0.030186329036951065, + -7.789277151459828e-5, + 0.001704217167571187, + 0.00246650748886168, + 0.0386003777384758, + -0.014981473796069622, + -0.06266604363918304, + 0.02542085014283657, + 0.02585272304713726, + -0.04417002946138382, + 0.0038421673234552145, + 0.027907835319638252, + -0.054951928555965424, + -0.012434921227395535, + -0.009530957788228989, + -0.02959064394235611, + -0.0026954738423228264, + 0.008525739423930645, + -0.034490153193473816, + -0.03773663565516472, + -0.02038731426000595, + -0.016962125897407532, + 0.06212992966175079, + -0.008406602777540684, + -0.016589822247624397, + -0.0429190918803215, + 0.010446823202073574, + -0.02594207413494587, + -0.020223500207066536, + -0.006455734372138977, + 0.01517507154494524, + 0.047773923724889755, + 0.02296365052461624, + -0.014274097979068756, + 0.0009386690217070282, + -0.027371719479560852, + 0.013953917659819126, + -0.014929351396858692, + 0.029337478801608086, + -0.01367096696048975, + -0.05155652388930321, + -0.015636727213859558, + -0.028250353410840034, + 0.0198363047093153, + 0.010238333605229855, + -0.035979364067316055, + -0.01845133863389492, + 0.002836948959156871, + -0.013961363583803177, + -0.008361926302313805, + -0.0009772954508662224, + -0.010454269126057625, + -0.01813860423862934, + 0.027937619015574455, + 0.010364916175603867, + -0.02078940160572529, + -0.02272537723183632, + -0.014356005005538464, + 0.00469474121928215, + -0.032315902411937714, + 0.012166863307356834, + -0.003030546708032489, + -0.010498945601284504, + -0.004337330348789692, + 0.01746845804154873, + -0.004143732599914074, + -0.0160834901034832, + 0.012665748596191406, + 0.033596623688936234, + 0.013767765834927559, + 0.010007505305111408, + -0.06078963726758957, + -0.0332689993083477, + 0.004240531474351883, + -0.021906310692429543, + 0.0015031734947115183, + -0.042293623089790344, + 0.02531660534441471, + 0.0018214925657957792, + -0.006336597725749016, + 0.009091639891266823, + 0.004504866432398558, + 0.011228659190237522, + -0.004374560434371233, + -0.015532482415437698, + -0.006038755178451538, + 0.0152793163433671, + 0.0009451843216083944, + 0.0036839384119957685, + -0.03979174792766571, + -0.024944303557276726, + -0.014043270610272884, + 0.008071529679000378, + 0.006496687885373831, + -0.012606180272996426, + -0.014974027872085571, + -0.013849672861397266, + 0.014996365644037724, + 0.045957084745168686, + 0.022382857277989388, + 0.0235742274671793, + 0.031779784709215164, + -0.039404552429914474, + -0.028905607759952545, + 0.004151178989559412, + 0.017751408740878105, + -0.001028487109579146, + 0.010521283373236656, + 0.004385729786008596, + 0.014147515408694744, + 0.05864517390727997, + -0.028399275615811348, + -0.03285202011466026, + -0.0005901003023609519, + 0.0038161061238497496, + 0.03130323812365532, + 0.0011755467858165503, + 0.00493301497772336, + -0.015696296468377113, + -0.056590061634778976, + 0.017125939950346947, + -0.005070767365396023, + 0.0257484782487154, + 0.019151268526911736, + -0.024408185854554176, + 0.00798217672854662, + -0.008808689191937447, + 0.006731238681823015, + -0.024616675451397896, + -0.034787993878126144, + -0.020134147256612778, + 0.035234756767749786, + 0.008235342800617218, + -0.02338062971830368, + 0.0008525739540345967, + 0.009255453012883663, + -0.03493691608309746, + -0.008242788724601269, + 0.010543622076511383, + 0.002189141698181629, + -0.01335078664124012, + -0.008354480378329754, + 0.016366440802812576, + -0.034996483474969864, + 0.019702276214957237, + -0.015189963392913342, + -0.013179527595639229, + -0.004087887238711119, + 0.0035312941763550043, + -0.009113977663218975, + -0.0009409959311597049, + -0.00038161061820574105, + 0.006396166048943996, + -0.02348487451672554, + 0.017542919144034386, + -0.014445357955992222, + -0.006366381887346506, + 0.007520521059632301, + 0.02144465409219265, + 0.006898775231093168, + -0.007192894350737333, + -0.010417038574814796, + 0.0198363047093153, + -0.03097561188042164, + -0.00542073231190443, + -0.021146811544895172, + 0.03809404745697975, + -0.013656075112521648, + -0.008890596218407154, + 0.017334429547190666, + -0.0064073349349200726, + -0.022353073582053185, + -0.022248828783631325, + -0.011608408764004707, + 0.037498362362384796, + 0.02400609850883484, + -0.01373053528368473, + 0.006463180761784315, + -0.005807927343994379, + -0.022338181734085083, + -0.003568524494767189, + 0.001449189498089254, + -0.019151268526911736, + 0.0024367233272641897, + 0.010781895369291306, + -0.02390185371041298, + 0.004158624913543463, + -0.010901032947003841, + -0.037796203047037125, + 0.06951642036437988, + -0.015800541266798973, + 0.021191488951444626, + -0.01757270283997059, + -0.015800541266798973, + -0.03282223641872406, + 0.01748334988951683, + -0.017423782497644424, + 0.010506391525268555, + 0.005003752652555704, + 0.02808654122054577, + -0.025391066446900368, + 0.0011820620857179165, + 0.05933021008968353, + 0.007647104095667601, + 0.005893556866794825, + -0.012956145219504833, + -0.017721625044941902, + -0.002769934479147196, + -0.009612863883376122, + -0.0152793163433671, + -0.00774390297010541, + -0.014609171077609062, + -0.026835601776838303, + -0.02186163328588009, + -0.001478973776102066, + 0.0343114472925663, + -0.04464657977223396, + 0.0033153584226965904, + 0.01110207661986351, + -0.02198076993227005, + 0.011072291992604733, + -0.006731238681823015, + -0.0012192924041301012, + 0.0067610228434205055, + -0.047208022326231, + 0.050573643296957016, + 0.027967402711510658, + -0.015108057297766209, + 0.010253225453197956, + 0.03237546980381012, + -0.0428595244884491, + 0.010923370718955994, + -0.0011578623671084642, + -0.008622538298368454, + -0.014199637807905674, + 0.03955347463488579, + -0.006165338214486837, + -0.0013086451217532158, + -0.011124414391815662, + -0.06350000202655792, + 0.01121376734226942, + -0.017974790185689926, + -0.030737338587641716, + -0.015889892354607582, + -0.007256186101585627, + 0.02585272304713726, + 0.0068578217178583145, + 0.004765478894114494, + -0.02841416746377945, + -0.020997891202569008, + -0.03175000101327896, + 0.005807927343994379, + -0.015562266111373901, + 0.022799838334321976, + 0.012129632756114006, + 0.027088768780231476, + 0.0112584438174963, + -0.00901717972010374, + -0.015577158890664577, + 0.034043390303850174, + -0.007959838956594467, + 0.0032576515804976225, + -0.0013077143812552094, + -0.018957670778036118, + 0.02768445387482643, + -0.00044583287672139704, + -0.004698464181274176, + -0.015093164518475533, + -0.018510906025767326, + -0.007222678977996111, + 0.009307575412094593, + -0.007449783384799957, + -0.002710366155952215, + 0.0160685982555151, + 0.019493786618113518, + 0.02393163926899433, + -0.0019285297021269798, + 0.02379760891199112, + -0.010915924794971943, + 0.008764013648033142, + -0.0026321823243051767, + 0.01577075570821762, + 0.014199637807905674, + -0.005506361834704876, + -0.001174616045318544, + 0.054862573742866516, + -0.005312764085829258, + 0.004054380115121603, + -0.015532482415437698, + 0.04247232899069786, + -0.02156379073858261, + 0.013536938466131687, + 0.012271108105778694, + 0.022874297574162483, + -0.0008521085837855935, + -0.0038496132474392653, + 0.0343114472925663, + -0.020223500207066536, + 0.00552497711032629, + 0.008443832397460938, + -0.004512312822043896, + 0.03776641935110092, + 0.039523690938949585, + 0.016470685601234436, + 0.014430465176701546, + -0.0021053736563771963, + 0.012464704923331738, + 0.004970245528966188, + 0.0044229598715901375, + 0.03827274963259697, + -0.023306170478463173, + -0.006906221155077219, + -0.001704217167571187, + 0.009099085815250874, + 0.0026526590809226036, + 0.018689611926674843, + 0.014162407256662846, + 0.006046201102435589, + -0.0018419692059978843, + 0.009962828829884529, + 0.04387218877673149, + -0.026537759229540825, + -0.026254810392856598, + -0.023946531116962433, + -0.014646400697529316, + -0.011563732288777828, + 0.008391709998250008, + 0.06659756600856781, + -0.010394700802862644, + 0.024303941056132317, + -0.001627894933335483, + 0.00466495705768466, + 0.05438602715730667, + 0.02078940160572529, + 0.02970978245139122, + 0.02552509494125843, + -0.006976958829909563, + 0.010968047194182873, + -0.010208548977971077, + -0.02402099221944809, + -0.0028090262785553932, + 0.004698464181274176, + -0.016053706407546997, + 0.021370192989706993, + 0.025778261944651604, + -0.01642601005733013, + 0.01769183948636055, + 0.014921905472874641, + 0.029099205508828163, + -0.015152732841670513, + -0.0022058954928070307, + 0.021310625597834587, + -0.013648629188537598, + 0.045212481170892715, + -0.008428940549492836, + -0.024959195405244827, + 0.04589751735329628, + 0.015830324962735176, + -0.003054746426641941, + 0.023335954174399376, + 0.019061915576457977, + 0.011608408764004707, + 0.016113275662064552, + 0.007494459860026836, + -0.010968047194182873, + -0.011392472311854362, + -0.028071647509932518, + 0.016813205555081367, + -0.014713415876030922, + 0.0007557751378044486, + -0.01994054950773716, + -0.006131831090897322, + -0.030305465683341026, + 0.0009074886329472065, + -0.007222678977996111, + 0.017245076596736908, + 0.0022896635346114635, + 0.025897398591041565, + -0.013589060865342617, + -0.016128167510032654, + -0.011437148787081242, + -0.020402206107974052, + 0.0059196180664002895, + -0.03282223641872406, + -0.05137781798839569, + -0.013209311291575432, + -0.012189201079308987, + -0.0225317794829607, + 0.0014501202385872602, + 0.012837008573114872, + -0.016113275662064552, + 0.0004193062777630985, + -0.0008390779257752001, + 0.02327638491988182, + 0.005290425848215818, + 0.012650856748223305, + -0.008138543926179409, + 0.006414781324565411, + -0.00944160483777523, + 0.005446793511509895, + 0.011995603330433369, + 0.015472914092242718, + -0.005461685359477997, + 0.017513133585453033, + 0.0009428574121557176, + 0.002075589494779706, + -0.03172021731734276, + 0.00798217672854662, + -0.03547303378582001, + -0.02616545744240284, + 0.005982909817248583, + -0.007900270633399487, + 0.011876466684043407, + -0.007125880103558302, + 0.059240859001874924, + -0.001384967239573598, + 0.006414781324565411, + 0.004087887238711119, + 0.003942688927054405, + -0.020863860845565796, + 0.008987395092844963, + -0.005290425848215818, + 0.02959064394235611, + -0.004471359308809042, + 0.00232130941003561, + -0.0034289108589291573, + 0.023335954174399376, + -0.006399889010936022, + 0.019002346321940422, + -0.016664283350110054, + 0.0058228191919624805, + 0.0017963621066883206, + -0.016753636300563812, + -0.02883114665746689, + 0.0128742391243577, + -0.02037242241203785, + 0.012591288425028324, + -0.02842905931174755, + -0.012680641375482082, + 0.032881803810596466, + 0.02168292924761772, + 0.00019022358173970133, + 0.005033536814153194, + 0.02445286326110363, + 0.002624736400321126, + 0.0364261269569397, + -0.006403611972928047, + -0.011772221885621548, + 0.014519818127155304, + -0.0002592159726191312, + 0.014199637807905674, + 0.000578465813305229, + 0.012896576896309853, + 0.0013691444182768464, + 0.01382733415812254, + 0.01131056621670723, + 0.050365153700113297, + -0.004977691452950239, + -0.020134147256612778, + -0.0032650975044816732, + -0.01898745447397232, + -0.04741651192307472, + 0.004609111696481705, + -0.01599413901567459, + -0.025882506743073463, + -0.03547303378582001, + 0.035770874470472336, + 0.02875668555498123, + 0.004724525380879641, + -0.01587500050663948, + 0.018064143136143684, + -0.0295012928545475, + -0.0026489361189305782, + -0.005189904011785984, + 0.018793856725096703, + -0.02637394703924656, + 0.013953917659819126, + 0.0004255888925399631, + -0.010692543350160122, + -0.002393908565863967, + 0.014787876047194004, + -0.0016399947926402092, + -0.012025387957692146, + -0.011057400144636631, + 0.01898745447397232, + -0.018272632732987404, + 0.03487734869122505, + 0.029575752094388008, + 0.034787993878126144, + -0.02327638491988182, + -0.029873594641685486, + -0.02168292924761772, + -0.03612828627228737, + 0.02896517515182495, + 0.016262196004390717, + 0.02144465409219265, + -0.015830324962735176, + 0.06796763837337494, + 0.012472151778638363, + -0.005852603819221258, + 0.005186181049793959, + 0.04774414002895355, + 0.01517507154494524, + -0.0016567484708502889, + -0.014378342777490616, + 0.01566651090979576, + 0.00921822339296341, + -0.005722297355532646, + -0.004624003544449806, + -0.0023622626904398203, + 0.011712653562426567, + 0.008979949168860912, + 0.022710485383868217, + 0.016783419996500015, + -0.00013146951096132398, + 0.03347748890519142, + -0.022278612479567528, + 0.022382857277989388, + 0.012233877554535866, + 0.036098502576351166, + -0.015785647556185722, + -0.009560741484165192, + -0.022904083132743835, + 0.019538462162017822, + -0.009255453012883663, + -0.02488473430275917, + 0.015532482415437698, + -0.01142970286309719, + -0.01147437933832407, + -0.006035032216459513, + 0.022010555490851402, + -0.021414870396256447, + 0.017885437235236168, + 0.020610695704817772, + 0.0051750121638178825, + -0.02081918530166149, + 0.017721625044941902, + 0.019642706960439682, + 0.001306783640757203, + 0.001379382680170238, + 0.019389541819691658, + 0.055815670639276505, + -0.004504866432398558, + 0.019240619614720345, + -0.002470230683684349, + 0.005171289201825857, + -0.0257484782487154, + -0.025137901306152344, + -0.003942688927054405, + -0.016440901905298233, + 0.007364153861999512, + -0.00396875012665987, + -0.018376877531409264, + -0.01921083591878414, + 0.004899507854133844, + 0.00040371608338318765, + 0.016545146703720093, + 0.013067835941910744, + 0.0023548167664557695, + -0.010551068000495434, + 0.0007432099082507193, + -0.0035294326953589916, + -0.020938321948051453, + -0.026627112179994583, + -0.010059627704322338, + -0.010029844008386135, + -0.019464002922177315, + 0.011623300611972809, + 0.001356113818474114, + 0.02478048950433731, + 0.011035061441361904, + -0.021578682586550713, + 0.011667977087199688, + 0.021102136000990868, + -0.005968017503619194, + 0.008361926302313805, + -0.015740972012281418, + -0.014251760207116604, + -0.015726080164313316, + 0.009501173160970211, + 0.010930816642940044, + -0.006023862864822149, + 0.0030417158268392086, + -0.00975433923304081, + -0.003142237663269043, + -0.024840058758854866, + -0.016366440802812576, + -0.026746248826384544, + 0.014601725153625011, + -0.051318250596523285, + -0.015711188316345215, + 0.007766241207718849, + 0.02338062971830368, + 0.008674660697579384, + 0.012881685048341751, + 0.028980066999793053, + -0.027535531669855118, + 0.00302682351320982, + 0.04515291005373001, + 0.0034977870527654886, + -0.0002706177765503526, + -0.021370192989706993, + 0.02446775510907173, + -0.030290573835372925, + -0.00662327092140913, + -0.024691136553883553, + -0.00011267983791185543, + 0.023618904873728752, + -0.035979364067316055, + -0.0011271474650129676, + 0.014095393009483814, + 0.011399919167160988, + -0.015800541266798973, + 0.030499063432216644, + 0.004471359308809042, + -0.015413345769047737, + -0.027267474681138992, + 0.001341221621260047, + 0.023782717064023018, + -0.035443250089883804, + -0.03246482461690903, + -0.0034717258531600237, + -0.019136374816298485, + -0.002864871872588992, + -0.0028741792775690556, + 0.011615854687988758, + 0.01109463069587946, + -0.01174243725836277, + 0.0009298268123529851, + 0.030707553029060364, + 0.00691366707906127, + 0.02230839803814888, + -0.021921202540397644, + -0.012338122352957726, + 0.030067192390561104, + 0.009396928362548351, + 0.016113275662064552, + -0.017721625044941902, + -0.005551038309931755, + -0.003294881898909807, + -0.020551126450300217, + -0.018302416428923607, + -0.020521342754364014, + -0.0039352430030703545, + 0.017289752140641212, + 0.0062025683000683784, + 0.002820195397362113, + -0.005532423034310341, + -0.03389446809887886, + 0.004597942344844341, + -0.018525797873735428, + 0.0077066728845238686, + -0.014594278298318386, + 0.0024125236086547375, + -0.027058983221650124, + 0.00374164548702538, + -0.01565161906182766, + -0.001514342613518238, + -0.01190625037997961, + -0.026105888187885284, + -0.025480419397354126, + -0.009568187408149242, + -0.033090293407440186, + -0.01485489122569561, + 0.029233234003186226, + -0.04440830647945404, + -0.03067776933312416, + -0.031362805515527725, + -0.009054409340023994, + -0.01888320967555046, + 0.0030640538316220045, + -0.0047766477800905704, + -0.010193657130002975, + 0.010774449445307255, + 0.0016520946519449353, + -0.03335835039615631, + 0.01940443366765976, + 0.012635964900255203, + 0.009635202586650848, + -0.014698523096740246, + 0.028384383767843246, + -0.02049155905842781, + -0.019687384366989136, + -0.024482646957039833, + 0.004225639160722494, + -0.024289049208164215, + -0.024750705808401108, + 0.039493903517723083, + 0.029128989204764366, + 0.03353705629706383, + 0.02637394703924656, + -0.022889189422130585, + -0.004668680019676685, + 0.01705147884786129, + -0.021102136000990868, + -0.02775891311466694, + -0.024810273200273514, + 0.0032055291812866926, + -0.005364886485040188, + 0.02414012886583805, + 0.008741674944758415, + -0.035443250089883804, + -0.019359758123755455, + 0.020327745005488396, + -0.006749853957444429, + -0.019061915576457977, + -5.9539397625485435e-5, + -0.005234580487012863, + 0.003942688927054405, + 0.006492964923381805, + -0.02454221621155739, + 0.0021202657371759415, + 0.010238333605229855, + 0.009374590590596199, + -0.007047696504741907, + -0.006805699318647385, + -0.012859346345067024, + -0.024497538805007935, + 0.028280137106776237, + -0.010297901928424835, + -0.004374560434371233, + -0.06492964923381805, + -0.0066269938834011555, + -0.01618773490190506, + 0.01812371052801609, + -0.009523511864244938, + 0.020625587552785873, + 0.036515481770038605, + 0.01597924530506134, + -0.010163872502744198, + 0.009627756662666798, + 0.014661293476819992, + 0.016351548954844475, + -0.008317249827086926, + 0.018704503774642944, + -0.00202160538174212, + -0.008384264074265957, + -0.026552651077508926, + 0.0013989285798743367, + -0.01313485112041235, + -0.010372362099587917, + -0.01577075570821762, + 0.00557709950953722, + 0.00803429912775755, + -0.008756566792726517, + -0.016440901905298233, + 0.028056755661964417, + 0.0009642648510634899, + -0.0155473742634058, + -0.006947174668312073, + -0.024318832904100418, + 0.004575604107230902, + 0.0036671848502010107, + -0.006995574105530977, + 0.004996306728571653, + 0.025703800842165947, + 0.0005510085029527545, + 0.02571869269013405, + -0.014527264051139355, + 0.027952510863542557, + -0.01693234220147133, + 0.021519115194678307, + -0.011720099486410618, + -0.012390244752168655, + 0.018853425979614258, + -0.00985858403146267, + -0.011943480931222439, + -0.008860812522470951, + -0.030484171584248543, + 0.016708960756659508, + 0.003527571214362979, + 0.007360430900007486, + -0.011615854687988758, + 0.011459487490355968, + -0.012784886173903942, + 0.0017544779693707824, + 0.005163842812180519, + 0.04008958861231804, + 0.005778143182396889, + 0.027148336172103882, + 0.002101650694385171, + 0.041995782405138016, + 0.0037546760868281126, + 0.00933736003935337, + -0.016277087852358818, + -0.02841416746377945, + 0.010610636323690414, + 0.016038814559578896, + 0.0019043299835175276, + 0.028250353410840034, + -0.000334607349941507, + 0.030067192390561104, + 0.0013570445589721203, + -0.002732704160735011, + 0.015055934898555279, + 0.00503725977614522, + 0.010491499677300453, + 0.0007581020472571254, + 0.0036169239319860935, + 0.016649391502141953, + 0.0035461862571537495, + -0.033834900707006454, + -0.0012965452624484897, + 0.007546582259237766, + -0.0025912290439009666, + -0.02810143306851387, + -0.01864493638277054, + 0.01609838381409645, + 0.007408830337226391, + 0.0045904964208602905, + 0.005405839998275042, + 0.016336657106876373, + 0.02393163926899433, + 0.026225024834275246, + 0.014884674921631813, + 0.004735694732517004, + 0.049918390810489655, + -0.022695591673254967, + 0.023097679018974304, + -0.008056637831032276, + -0.011861574836075306, + -0.00038766051875427365, + -0.024318832904100418, + 0.019225727766752243, + -0.006262137088924646, + -0.013477369211614132, + -0.008406602777540684, + -0.00341960322111845, + -0.021474437788128853, + -0.012338122352957726, + -0.005234580487012863, + -0.009203330613672733, + -0.0044936975464224815, + -0.012323230504989624, + -0.01757270283997059, + -0.011347795836627483, + -0.0021816957741975784, + 0.007312031462788582, + -0.00985858403146267, + -0.010662758722901344, + 0.015949461609125137, + -0.019166160374879837, + 0.02478048950433731, + -0.01136268861591816, + -0.03991088643670082, + 0.008570415899157524, + 0.002931886352598667, + -0.0045607122592628, + -0.01682809740304947, + 0.00380493700504303, + 0.0014417434576898813, + -0.007427445612847805, + -0.0031292070634663105, + -0.02391674742102623, + 0.0056254989467561245, + 0.0004886477254331112, + 0.007032804191112518, + 0.022814730182290077, + -0.013380571268498898, + 0.007654550485312939, + -0.02348487451672554, + 0.007397660985589027, + 0.006943451706320047, + -0.001952729420736432, + -0.005610606633126736, + -0.0006510649109259248, + 0.0006794530199840665, + 0.008764013648033142, + -0.0004984206752851605, + 0.0003387957694940269, + -0.006284475326538086, + 0.0007930054562166333, + 0.008525739423930645, + 0.017513133585453033, + 0.01617284305393696, + -0.01854069158434868, + -0.03681332245469093, + 0.0007836978766135871, + 0.022650916129350662, + -0.0003425187896937132, + -0.013648629188537598, + -0.008138543926179409, + 0.017870545387268066, + 0.014221975579857826, + 0.009501173160970211, + 0.033388134092092514, + -0.01329121831804514, + 0.007364153861999512, + 0.0044936975464224815, + -0.009962828829884529, + -0.008466171100735664, + 0.003620646893978119, + -0.02993316389620304, + 0.010148980654776096, + -0.016381332650780678, + 0.0035145406145602465, + -0.01639622449874878, + 0.007818363606929779, + 0.016128167510032654, + 0.012829562649130821, + -0.004691018257290125, + -0.033954035490751266, + 0.024959195405244827, + -0.02090853825211525, + 0.016366440802812576, + -0.002542829606682062, + 0.01521974802017212, + 0.017304643988609314, + 0.011035061441361904, + 0.006027585826814175, + 0.008004515431821346, + 0.01475064642727375, + 0.022055231034755707, + -0.007997069507837296, + 0.02102767489850521, + 0.001423128298483789, + -0.003319081384688616, + 0.01350715383887291, + 0.03252439200878143, + -0.05006731301546097, + -0.02232328988611698, + -0.004802708979696035, + -0.014296436682343483, + 0.014884674921631813, + 0.014728307723999023, + 0.022591346874833107, + 0.003261374542489648, + -0.04163837060332298, + 0.025763370096683502, + -0.006850375793874264, + 0.009828800335526466, + 0.0002843464317265898, + 0.007006742991507053, + 5.904493445996195e-5, + -0.008801243267953396, + 0.012904022820293903, + -0.017721625044941902, + -0.002621013205498457, + -0.025495311245322227, + -0.0029300248716026545, + -0.022144583985209465, + 0.041221391409635544, + 0.00485110841691494, + 0.007647104095667601, + -0.02293386682868004, + 0.011772221885621548, + 0.0155473742634058, + 0.011571178212761879, + -0.03270309790968895, + -0.017319537699222565, + 0.009158654138445854, + 0.004259146749973297, + 0.01897256262600422, + 0.011861574836075306, + -0.0268058180809021, + -0.022114800289273262, + 0.013097620569169521, + 0.03654526546597481, + -0.007412553299218416, + 0.022918974980711937, + 0.0048473854549229145, + 0.0028015803545713425, + -0.020029902458190918, + -0.017870545387268066, + -0.009084193967282772, + 0.019806521013379097, + 0.0353836789727211, + -0.0321967676281929, + -0.019032130017876625, + -0.018079034984111786, + -0.004489974584430456, + 0.014013485983014107, + -0.008339587599039078, + -0.006988127715885639, + 0.013023159466683865, + 0.005886110942810774, + -0.004813878331333399, + -0.009002286940813065, + 0.018376877531409264, + 0.029099205508828163, + 0.035651739686727524, + -0.02433372661471367, + -0.02135530114173889, + 0.011437148787081242, + -0.03454972058534622, + -0.0015394730726256967, + -0.018421553075313568, + 0.005685067269951105, + -0.017974790185689926, + -0.003054746426641941, + -0.0008739813347347081, + -0.005424455273896456, + 0.0040320418775081635, + -0.018704503774642944, + 0.0021649422124028206, + 0.00959797203540802, + 0.010834017768502235, + -0.01157862413674593, + -0.04020872712135315, + 0.009039517492055893, + 0.001697701751254499, + -0.00018033427477348596, + 0.010290456004440784, + -0.02412523701786995, + -0.008019407279789448, + 0.023306170478463173, + 0.017855653539299965, + 0.025242146104574203, + 0.00019231777696404606, + 0.02637394703924656, + 0.0052718110382556915, + 0.01833220198750496, + 0.014676185324788094, + 0.0018959532026201487, + -0.007781133055686951, + 0.009940491057932377, + 0.0037528146058321, + 0.0014929351164028049, + 0.02230839803814888, + 0.012792332097887993, + 0.020327745005488396, + 0.02294875867664814, + -0.008764013648033142, + -0.01517507154494524, + 0.008816136047244072, + -0.010551068000495434, + -0.00019766963669098914, + 0.030082084238529205, + -0.03067776933312416, + 0.004382006824016571, + -0.010067073628306389, + -0.014839998446404934, + -0.01618773490190506, + -0.00753541337326169, + -0.03687289357185364, + 0.012427475303411484, + -0.00379376788623631, + 0.005908449180424213, + 0.011615854687988758, + -0.0009596110321581364, + -0.03916627913713455, + -0.003723030211403966, + -0.01115419901907444, + 0.002485122764483094, + 0.01190625037997961, + -0.03496669977903366, + 0.010901032947003841, + -0.01703658699989319, + 0.013440139591693878, + -0.002846256596967578, + 0.010610636323690414, + -0.020655371248722076, + 0.054683867841959, + 0.008898042142391205, + -0.00032832473516464233, + -0.0030156546272337437, + 0.004839939530938864, + 0.002382739447057247, + -0.00047352290130220354, + -0.016485577449202538, + -0.00638499716296792, + 0.012375352904200554, + 0.015323992818593979, + -0.010796788148581982, + -0.031601082533597946, + 0.01110207661986351, + -0.015026150271296501, + -0.004296376835554838, + 0.015294208191335201, + 0.013015713542699814, + 0.00683176051825285, + 0.0008172051748260856, + 0.010677650570869446, + 0.006772192195057869, + -0.0031161762308329344, + -0.01303805224597454, + 0.015845216810703278, + 0.015815433114767075, + -0.0003534551942721009, + -0.025003870949149132, + -0.028697118163108826, + -0.0034028496593236923, + -0.0022952482104301453, + -0.015189963392913342, + 0.026433514431118965, + -0.02403588406741619, + 0.0035666630137711763, + 0.0024385848082602024, + -0.025182576850056648, + -0.01661960780620575, + -0.003194360062479973, + 0.017662055790424347, + -0.014832552522420883, + -0.036723971366882324, + 0.03627720847725868, + -0.024095451459288597, + -0.003188775386661291, + 0.00466495705768466, + 0.007457229774445295, + -0.008175774477422237, + -0.008064083755016327, + -0.01757270283997059, + -0.017721625044941902, + -0.008138543926179409, + 0.019746951758861542, + -0.00680942228063941, + -0.025599556043744087, + -0.004173516761511564, + -0.004002257715910673, + 0.012680641375482082, + 0.012807223945856094, + -0.030156545341014862, + -0.02037242241203785, + -0.010350024327635765, + 0.027207905426621437, + 0.006180230062454939, + -0.009799015708267689, + -0.023201923817396164, + 0.014512372203171253, + -0.05116932839155197, + -0.019270405173301697, + 0.0028834869153797626, + 0.0036597386933863163, + 0.006481795571744442, + 0.017870545387268066, + -0.028280137106776237, + 0.03282223641872406, + 0.02241264283657074, + 0.029784241691231728, + 0.0029709781520068645, + -0.020551126450300217, + 0.004221916198730469, + 0.028801362961530685, + -0.011407365091145039, + -0.004162347875535488, + -0.027639776468276978, + 0.004035764839500189, + -0.004877169616520405, + 0.028012080118060112, + -0.004076718352735043, + -0.013328448869287968, + 0.002697335323318839, + 0.012397690676152706, + -0.024378402158617973, + -0.04780370742082596, + -0.006142999976873398, + 0.0062733059749007225, + -0.019255513325333595, + 0.012524274177849293, + -0.009523511864244938, + 0.008488508872687817, + 0.012062618508934975, + -0.007006742991507053, + 0.025227252393960953, + 0.01812371052801609, + 0.03443058580160141, + -0.026418622583150864, + -0.005260641686618328, + -0.013693305663764477, + -0.016887664794921875, + 0.017200399190187454, + -0.012539166025817394, + -0.012896576896309853, + -0.0013989285798743367, + -0.0046537877060472965, + -0.004370837472379208, + 0.00917354691773653, + 0.010111750103533268, + -0.021831849589943886, + 0.012740209698677063, + 0.031035181134939194, + 0.022799838334321976, + 0.019047023728489876, + 0.020104363560676575, + -0.041668154299259186, + 0.03121388517320156, + 0.015413345769047737, + -0.014125176705420017, + 0.005093105603009462, + 0.004337330348789692, + 0.027267474681138992, + -0.0054319011978805065, + -0.0018773380434140563, + -0.01548780594021082, + 0.009985167533159256, + -0.010029844008386135, + 0.013700751587748528, + 0.019032130017876625, + -0.009746893309056759, + -0.015323992818593979, + -0.03335835039615631, + 0.0031664371490478516, + 0.010119196027517319, + -0.015309100970625877, + -0.020000118762254715, + 0.019255513325333595, + -0.03121388517320156, + -0.0225168876349926, + -0.0013393601402640343, + 0.010744665749371052, + 0.00917354691773653, + 0.01653025485575199, + 0.01793011464178562, + -0.0003062192408833653, + 0.03568152338266373, + 0.01833220198750496, + -0.04571881145238876, + 0.010335132479667664, + -0.0011466933647170663, + -0.0040059806779026985, + 0.01650046929717064, + -0.006712623406201601, + 0.022367965430021286, + -0.006749853957444429, + -0.01813860423862934, + -0.008332141675055027, + 0.008332141675055027, + -0.02198076993227005, + 0.0008083629654720426, + -0.011705207638442516, + 0.007840701378881931, + 0.011921143159270287, + -0.022457318380475044, + -0.03192870691418648, + 0.010886140167713165, + -0.008183220401406288, + -0.020089471712708473, + 0.0013021298218518496, + 0.008875704370439053, + 0.006842929869890213, + -0.03723030164837837, + -0.02102767489850521, + 0.0059196180664002895, + 0.0028574257157742977, + -0.03234568610787392, + 0.001452912576496601, + -0.0152793163433671, + 0.01867472007870674, + -0.0003953392733819783, + -0.0077066728845238686, + 0.0037211687304079533, + -0.021280841901898384, + -0.013052944093942642, + 0.004527204670011997, + -0.007479568012058735, + 0.005562207195907831, + 0.016887664794921875, + 0.010081966407597065, + 0.002056974219158292, + -0.0025819214060902596, + 0.021295733749866486, + -0.00329674337990582, + -0.008972503244876862, + -0.0020495280623435974, + 0.005670174956321716, + 0.0418468602001667, + -0.0009670571307651699, + 0.0045197587460279465, + 0.003449387615546584, + -0.004378283396363258, + -0.009248007088899612, + 0.020774509757757187, + -0.004419236909598112, + -0.01663449965417385, + 0.0065041338093578815, + 0.0031869139056652784, + 0.07088650017976761, + 0.0007697365363128483, + -0.004158624913543463, + -0.00938203651458025, + 0.02393163926899433, + -0.0093894824385643, + -0.006157892290502787, + 0.022144583985209465, + 0.03446036949753761, + 0.0006817799294367433, + -0.004877169616520405, + -0.019449111074209213, + -0.014646400697529316, + -0.014251760207116604, + -0.0004681710561271757, + -0.003002624027431011, + 0.005234580487012863, + 0.02379760891199112, + 0.005186181049793959, + 0.019910765811800957, + -0.0013979978393763304, + -0.010067073628306389, + 0.0013551830779761076, + 0.022353073582053185, + 0.01142225693911314, + 0.004188409075140953, + -0.017393996939063072, + -0.007196617312729359, + 0.010573405772447586, + 0.0009931182721629739, + -0.014892120845615864, + -0.0022673255298286676, + -0.012710425071418285, + 0.00917354691773653, + 0.007070034276694059, + 0.014974027872085571, + -0.01661960780620575, + 0.022114800289273262, + 0.002876040991395712, + 0.004538374021649361, + -0.008324695751070976, + -0.006191399414092302, + 0.010796788148581982, + 0.00691366707906127, + -0.028041863813996315, + -0.010781895369291306, + 0.007591258734464645, + -0.001838246244005859, + -0.0030901150312274694, + -0.017096154391765594, + -0.0047133564949035645, + -0.013685859739780426, + 0.005349994637072086, + 0.0005491469637490809, + 0.010379808023571968, + -0.0013933441368862987, + 0.0028741792775690556, + -0.022606240585446358, + -0.020670264959335327, + 0.001043379190377891, + -0.02326149307191372, + 0.018749181181192398, + -0.02154889889061451, + -0.013633737340569496, + 0.008548077195882797, + -0.014832552522420883, + -0.014527264051139355, + 0.0011178398272022605, + 0.010677650570869446, + -3.0715000320924446e-5, + 0.0021090966183692217, + -0.008116206154227257, + -0.005737189669162035, + -0.037498362362384796, + -0.016857881098985672, + 0.003451249096542597, + 0.013894349336624146, + 0.022055231034755707, + 0.010201103053987026, + -0.0030082084704190493, + 0.0015413345536217093, + -0.0035908627323806286, + 0.012881685048341751, + 0.0022412643302232027, + -0.002978424308821559, + -0.002615428762510419, + 0.01345503143966198, + -0.008399155922234058, + -0.002978424308821559, + -0.017959898337721825, + 0.00192294514272362, + -0.0019452832639217377, + 0.004259146749973297, + -0.013276325538754463, + 0.011697760783135891, + -0.004929292015731335, + -0.005558484233915806, + 0.013685859739780426, + 0.017319537699222565, + -0.01725996844470501, + 0.020982999354600906, + 0.008592753671109676, + 0.007531690411269665, + -0.002148188417777419, + 0.003000762313604355, + 0.011541393585503101, + 0.0014426741981878877, + -0.0026898893993347883, + -0.004892061930149794, + -0.016545146703720093, + 0.0011262166080996394, + -0.002060697181150317, + -0.02156379073858261, + 0.013067835941910744, + -0.008235342800617218, + 0.00985858403146267, + 0.01897256262600422, + -0.005409562960267067, + -0.0072822473011910915, + -9.551899711368605e-5, + -0.019970335066318512, + -0.013909241184592247, + -0.013425246812403202, + 0.0037658452056348324, + 0.005960571579635143, + -0.01653025485575199, + -0.008056637831032276, + 0.0005994078819639981, + -0.024393294006586075, + -0.006377550773322582, + 0.0009251730516552925, + -0.002686166437342763, + -0.001563672674819827, + -0.003579693613573909, + 0.0022114799357950687, + -0.004318715073168278, + 0.000537977903150022, + -0.0015506420750170946, + 0.01770673133432865, + 0.007621042896062136, + 0.029635321348905563, + 0.007055142428725958, + 0.018421553075313568, + 0.014140068553388119, + -0.012092402204871178, + 0.031035181134939194, + -0.01148182526230812, + -0.017617378383874893, + 0.014579386450350285, + -0.002773657673969865, + 0.024423079565167427, + -0.03925563022494316, + 0.008562969975173473, + -0.02017882466316223, + 0.014698523096740246, + -0.004207024350762367, + -0.02446775510907173, + 0.021534007042646408, + -0.0038682285230606794, + -0.014758092351257801, + -0.001294683781452477, + -0.014996365644037724, + -0.012479597702622414, + -0.004802708979696035, + 0.0035312941763550043, + 0.007606151048094034, + 0.021161703392863274, + 0.012122186832129955, + 0.01769183948636055, + 0.008026853203773499, + -0.0235742274671793, + 0.002943055471405387, + 0.01110207661986351, + -0.02744617871940136, + 0.0021444654557853937, + -0.01104995422065258, + -0.0152793163433671, + 0.009136316366493702, + -0.02960553765296936, + 0.025450635701417923, + -0.0032129751052707434, + -0.013164634816348553, + 0.0027550423983484507, + 0.01303060632199049, + 0.014527264051139355, + -0.00803429912775755, + -0.0001825448271119967, + 0.011958373710513115, + -0.0064333961345255375, + -0.007178002502769232, + -0.008793797343969345, + 0.01834709383547306, + -0.008056637831032276, + -0.004378283396363258, + -0.019434217363595963, + 0.0018345231655985117, + 0.019910765811800957, + 0.024065667763352394, + 0.0037658452056348324, + 0.0035257097333669662, + -0.004404344595968723, + 0.010521283373236656, + 0.01518251746892929, + -0.004411790985614061, + -0.018838534131646156, + -0.0014808352570980787, + -0.02232328988611698, + -0.01480276882648468, + -0.0020960660185664892, + 0.0012844454031437635, + -0.025674017146229744, + -0.01617284305393696, + 0.02317214012145996, + -0.003250205423682928, + -0.009791569784283638, + 0.007494459860026836, + 0.00012832820357289165, + 0.016277087852358818, + 0.034281663596630096, + 0.016336657106876373, + 0.0015981107717379928, + 0.011452041566371918, + 0.006969512905925512, + 0.007524244021624327, + 0.0026377670001238585, + 0.01329866424202919, + -0.011772221885621548, + 0.003492202376946807, + 0.010982939042150974, + -0.012345568276941776, + 0.033179644495248795, + -0.012204092927277088, + 0.0007501905784010887, + 0.026105888187885284, + -0.010007505305111408, + 0.009300129488110542, + 0.013656075112521648, + 0.005953125189989805, + 0.02346998266875744, + -0.007360430900007486, + -0.010811679996550083, + 0.015711188316345215, + 3.6394076232681982e-6, + -0.007029081229120493, + 0.0016502331709489226, + -0.008592753671109676, + 0.006198845338076353, + -0.014378342777490616, + -0.0055919913575053215, + -3.318732342449948e-5, + 0.016917450353503227, + 0.013909241184592247, + -0.014624062925577164, + 0.040268294513225555, + 0.011183982715010643, + 0.014251760207116604, + 0.012367906980216503, + 0.0014463972765952349, + 0.0020122979767620564, + 0.0022431258112192154, + 0.0015981107717379928, + 0.0027978571597486734, + 0.026448406279087067, + -0.010707435198128223, + 0.00985858403146267, + 0.0035312941763550043, + 0.0023510935716331005, + 0.01781097613275051, + -0.007598704658448696, + 0.0273568257689476, + -0.008414048701524734, + -0.006142999976873398, + 0.00793750025331974, + 0.010052181780338287, + -0.02597185969352722, + 0.011280781589448452, + -0.0003515936841722578, + 0.0030324081890285015, + -0.0010694405063986778, + 0.009091639891266823, + 0.003229728667065501, + -0.009032071568071842, + 0.0027233967557549477, + -0.011519055813550949, + -0.01480276882648468, + -0.00683176051825285, + 0.002712227636948228, + 0.009359697811305523, + -0.008205559104681015, + 0.017349321395158768, + -0.014668739400804043, + -0.028056755661964417, + 0.014303882606327534, + -0.017200399190187454, + 0.010565959848463535, + 0.044557224959135056, + -0.021638251841068268, + 0.0024627845268696547, + 0.02049155905842781, + 0.015309100970625877, + -0.007140771951526403, + 0.004009703639894724, + -0.02382739447057247, + -0.025227252393960953, + 0.008518293499946594, + -0.015904786065220833, + -0.01094570942223072, + -0.002702919999137521, + 0.007959838956594467, + -0.01517507154494524, + -0.014475141651928425, + -0.0014482587575912476, + 0.008078975602984428, + 0.00032925550476647913, + -0.0028127494733780622, + -0.013179527595639229, + -0.011459487490355968, + 0.008026853203773499, + -0.009851138107478619, + 0.00040581030771136284, + -0.0009475112310610712, + -0.00928523764014244, + -0.01538356114178896, + 0.01833220198750496, + 0.0017461011884734035, + 0.012047725729644299, + 0.004251700360327959, + -0.003587139770388603, + -0.006362658925354481, + -0.031273454427719116, + 0.02274026907980442, + -0.010059627704322338, + -0.002624736400321126, + 0.004661234095692635, + -0.0014557047979906201, + 0.03204784542322159, + -0.02263602428138256, + 0.00547285471111536, + -0.010856356471776962, + 0.014199637807905674, + -0.03332856670022011, + -0.003183190943673253, + -0.0017172477673739195, + 0.0010415177093818784, + 0.009099085815250874, + 0.019925657659769058, + -0.0009772954508662224, + -0.0023771547712385654, + 0.010424484498798847, + 0.02725258097052574, + 0.020104363560676575, + -0.002624736400321126, + -0.0037137228064239025, + -0.012829562649130821, + 0.025376174598932266, + 0.005569653119891882, + -0.00035880703944712877, + 0.023648688569664955, + -0.01147437933832407, + -0.00933736003935337, + -0.00025526026729494333, + 0.003618785412982106, + -0.019672492519021034, + -0.0075056292116642, + -0.00476920185610652, + -0.00594940222799778, + -0.016485577449202538, + 0.020655371248722076, + -0.028354598209261894, + -0.006217460613697767, + 0.0013142296811565757, + -0.007125880103558302, + -0.020119255408644676, + -0.0004956283955834806, + -0.02218926139175892, + -0.0024776766076684, + -0.008294911123812199, + 0.0013486676616594195, + -0.003691384568810463, + -0.014423019252717495, + 0.009530957788228989, + 0.0011913697235286236, + 0.002252433216199279, + 0.0020067133009433746, + 0.0018401077250018716, + 0.011288227513432503, + 0.012472151778638363, + 0.025331497192382812, + -0.0021370192989706993, + -0.0099255982786417, + -0.0021109580993652344, + 0.0009242422529496253, + -0.0013598367804661393, + -0.0038533364422619343, + -0.01297848392277956, + -0.01813860423862934, + -0.025688908994197845, + 0.0014594278763979673, + -0.015026150271296501, + -0.020729832351207733, + 0.015309100970625877, + -0.00458305049687624, + 0.009426712989807129, + 0.01355927623808384, + 0.018168387934565544, + -0.03836210444569588, + 0.02723768912255764, + -0.002323170891031623, + 0.023857178166508675, + 0.0007487944676540792, + 0.005249472800642252, + -0.0016707098111510277, + -0.01663449965417385, + -0.004810154903680086, + 0.020953213796019554, + 0.016366440802812576, + 0.0069657894782722, + 0.0015860109124332666, + 0.005357440561056137, + 0.004657510668039322, + 0.0029002404771745205, + 0.0101787643507123, + 0.01693234220147133, + -0.020119255408644676, + -0.0058563267812132835, + 0.017125939950346947, + 0.016277087852358818, + -0.009352251887321472, + 0.006418504286557436, + 0.008414048701524734, + -0.005800480954349041, + -0.03088625892996788, + -0.012732763774693012, + 0.00589727982878685, + -0.010372362099587917, + 0.012241323478519917, + 0.011526501737535, + -0.024944303557276726, + 0.01586010865867138, + 0.0030398541130125523, + -0.011243551038205624, + -0.0007911439170129597, + 0.0044564674608409405, + -0.010342578403651714, + 0.019240619614720345, + 0.019464002922177315, + -0.005409562960267067, + 0.002606121124699712, + -0.007922608405351639, + -0.024378402158617973, + -0.0099255982786417, + 0.01324654184281826, + -0.011236105114221573, + -0.0005966156022623181, + -0.0030696385074406862, + -0.00772156473249197, + -0.004382006824016571, + 0.012501935474574566, + 0.02412523701786995, + -0.003030546708032489, + 0.004605388268828392, + -0.003486617933958769, + 0.007390215061604977, + 0.02412523701786995, + -0.002226372016593814, + -0.024631569162011147, + -0.001110393786802888, + 0.00896505732089281, + 0.002030913019552827, + 0.003527571214362979, + -0.002142603974789381, + 0.012077510356903076, + 0.0027959956787526608, + -0.023633796721696854, + 0.004761755932122469, + -0.008183220401406288, + -0.0027606268413364887, + 0.004218193236738443, + 0.0020383591763675213, + -0.010588298551738262, + 0.0112584438174963, + 0.01007451955229044, + 0.01833220198750496, + 0.003454972058534622, + 0.0024311388842761517, + 0.0020644203759729862, + -0.0010322101879864931, + 0.005178735125809908, + -0.00057288131210953, + 0.021534007042646408, + 0.00048678621533326805, + 0.01511550322175026, + -0.004292653873562813, + -0.012084956280887127, + -0.014795321971178055, + -0.012539166025817394, + 0.01843644678592682, + -0.005167566239833832, + -0.004337330348789692, + 0.010446823202073574, + 0.003127345349639654, + -0.009203330613672733, + 0.005595714319497347, + 0.014996365644037724, + 0.011645638383924961, + 0.003976196516305208, + 0.0022580178920179605, + 0.016128167510032654, + 0.01184668205678463, + -0.004389452748000622, + 0.019985226914286613, + -0.0024236927274614573, + -0.0230678953230381, + 0.012375352904200554, + -0.006377550773322582, + -0.010111750103533268, + -0.003665323369204998, + -0.00023431821318808943, + 0.02007457986474037, + -0.007125880103558302, + -0.007133326027542353, + -0.02282962203025818, + 0.010193657130002975, + -0.0026172902435064316, + -0.002710366155952215, + 0.004184686113148928, + 0.03192870691418648, + 0.0273419339209795, + 0.000756705878302455, + -0.005696236155927181, + -0.01099783182144165, + 0.00662327092140913, + -0.010714881122112274, + 0.014259206131100655, + 0.010685096494853497, + -0.001189508126117289, + -0.01383478008210659, + -0.00788537785410881, + 0.009084193967282772, + 0.010625528171658516, + -0.005182458087801933, + 0.012010496109724045, + 0.005245749838650227, + -0.010484052821993828, + -0.019002346321940422, + -0.016053706407546997, + -0.008324695751070976, + 0.011504163965582848, + 0.026567544788122177, + -0.03353705629706383, + 0.002261740854009986, + -0.011824344284832478, + 0.012330676428973675, + 0.02007457986474037, + 0.014974027872085571, + -0.027207905426621437, + 0.0034996485337615013, + 0.012807223945856094, + -0.016277087852358818, + 0.018391769379377365, + 0.006254690699279308, + 0.002710366155952215, + -0.0077066728845238686, + 0.002624736400321126, + -0.02198076993227005, + -0.0018866455648094416, + 0.04196599870920181, + -0.02071494050323963, + 0.0029114095959812403, + 0.01995544321835041, + -0.0031757447868585587, + 0.0007660134579055011, + -0.02758020907640457, + 0.01548780594021082, + 0.0022431258112192154, + -0.011511609889566898, + -0.021697821095585823, + -0.00819811224937439, + 0.00745350681245327, + -0.016485577449202538, + 0.003065915545448661, + -0.0025297990068793297, + -0.019657600671052933, + 0.0018577921437099576, + -0.02144465409219265, + 0.02315724827349186, + -0.0032464824616909027, + -0.008607646450400352, + 0.020238392055034637, + -0.016157951205968857, + 0.03368597850203514, + -0.0025037378072738647, + -0.009367143735289574, + 0.002157496055588126, + -0.007974730804562569, + 0.018853425979614258, + -0.009717108681797981, + -0.010513837449252605, + -0.007952393032610416, + -0.010513837449252605, + -0.01142970286309719, + -0.0008390779257752001, + -0.004341053310781717, + -0.008406602777540684, + -0.003961304202675819, + 0.010819125920534134, + 0.00592706399038434, + 0.0031701603438705206, + -0.005807927343994379, + -0.0022896635346114635, + -0.019151268526911736, + -0.002773657673969865, + 0.012382798828184605, + 0.008108760230243206, + 0.0020420821383595467, + -0.010498945601284504, + 0.008347033523023129, + -0.002768072998151183, + 0.007922608405351639, + -0.009985167533159256, + -0.012837008573114872, + -0.008242788724601269, + 0.0026675511617213488, + 0.013484816066920757, + -0.005212242249399424, + -0.014460249803960323, + -0.0019322526641190052, + -0.002697335323318839, + -0.008391709998250008, + -0.010722327046096325, + -0.01372308935970068, + -0.0035201250575482845, + -0.0037453684490174055, + -0.0035666630137711763, + -0.02315724827349186, + -0.005968017503619194, + 0.0054319011978805065, + -0.010968047194182873, + 0.027058983221650124, + -0.020551126450300217, + 0.006649332121014595, + 0.0011271474650129676, + -0.00047794400597922504, + 0.006224906537681818, + 0.019449111074209213, + -0.008294911123812199, + 0.021697821095585823, + 0.0005994078819639981, + -0.014504926279187202, + 0.0033358351793140173, + -0.007006742991507053, + -0.0036597386933863163, + -0.02571869269013405, + 0.0012937530409544706, + -0.0028946560341864824, + -0.02187652513384819, + 0.00927779171615839, + -0.0009358767420053482, + -0.0038496132474392653, + -0.00503725977614522, + -0.02017882466316223, + -0.04464657977223396, + 0.00600152462720871, + -0.003680215450003743, + 0.007788579445332289, + -0.020104363560676575, + 0.004274038597941399, + 0.020536234602332115, + -0.009128870442509651, + -0.012077510356903076, + 0.00689132884144783, + 0.023291276767849922, + -0.005446793511509895, + 0.0018484845058992505, + 0.015160179696977139, + 0.0013058529002591968, + 0.0192852970212698, + -0.010029844008386135, + 0.009664986282587051, + -0.02896517515182495, + -0.012904022820293903, + 0.017885437235236168, + -0.004806431941688061, + -0.015137840993702412, + -1.4804862985329237e-5, + 0.006936005316674709, + 0.013574168086051941, + 0.0023436476476490498, + -0.012204092927277088, + -0.0010452407877892256, + -0.02038731426000595, + -0.009821353480219841, + 0.001037794747389853, + -0.021206380799412727, + 0.017855653539299965, + 0.0023250323720276356, + -0.005178735125809908, + -0.013268879614770412, + -0.026090996339917183, + 0.018287524580955505, + -0.01950867846608162, + 0.006630716845393181, + 0.01834709383547306, + -0.0041288407519459724, + 0.006068539340049028, + 0.020566020160913467, + 0.018927885219454765, + 0.011437148787081242, + 0.0065301950089633465, + -0.005994078703224659, + 0.0058228191919624805, + 0.001169031485915184, + -0.006671670358628035, + -0.0273568257689476, + -0.009635202586650848, + -0.008927826769649982, + 0.02488473430275917, + -0.008756566792726517, + -0.018957670778036118, + 0.0044304062612354755, + 0.007997069507837296, + 0.0010899171466007829, + -0.0032483439426869154, + 0.0011848544236272573, + -0.0012723455438390374, + -0.020893646404147148, + -0.012807223945856094, + 0.010722327046096325, + -0.010811679996550083, + 0.010699989274144173, + 0.008339587599039078, + -0.004389452748000622, + -0.0049814144149422646, + 0.006012693978846073, + -0.0043000997975468636, + -0.014080500230193138, + 0.01560694258660078, + -0.015085718594491482, + 0.003953858278691769, + 0.017662055790424347, + -0.004184686113148928, + -0.022501995787024498, + -0.00011529759649420157, + 0.008265127427875996, + 0.007192894350737333, + 0.009411820210516453, + -0.006854098755866289, + 0.013648629188537598, + 0.003162714187055826, + 0.0022691870108246803, + -0.018927885219454765, + -0.03151172772049904, + 0.006828037556260824, + -0.014333666302263737, + 0.004802708979696035, + -0.0010619943495839834, + 0.028071647509932518, + -0.0300374086946249, + 0.0014929351164028049, + 0.011496717110276222, + 0.029084311798214912, + 0.00302682351320982, + 0.003983642440289259, + 0.009307575412094593, + 0.0017619241261854768, + -0.004318715073168278, + -0.007714118808507919, + -0.017304643988609314, + -9.377382230013609e-5, + 0.022695591673254967, + 0.012040279805660248, + -0.008213005028665066, + -0.008957610465586185, + -0.009962828829884529, + -0.01855558343231678, + -0.01940443366765976, + -0.0033618963789194822, + 0.004296376835554838, + -3.1231279535859358e-6, + 0.03463907539844513, + -0.012613626196980476, + 0.012732763774693012, + -0.032226551324129105, + 0.014385788701474667, + -0.019032130017876625, + -0.021623359993100166, + 0.018287524580955505, + 0.0101787643507123, + 0.011757330037653446, + 0.028354598209261894, + 0.0071854484267532825, + -0.0001385665382258594, + -0.005130335688591003, + -0.03407317399978638, + 0.00659348675981164, + 0.017542919144034386, + 0.026433514431118965, + -0.003656015731394291, + -0.008354480378329754, + -0.0018010159255936742, + -0.010856356471776962, + 0.036306992173194885, + -0.002486984245479107, + -0.014810214750468731, + 0.020625587552785873, + 0.0029616705141961575, + -0.0019750676583498716, + 0.019047023728489876, + 0.01865982823073864, + -0.012807223945856094, + -0.013946471735835075, + -0.003726753406226635, + -0.015696296468377113, + 0.0027997188735753298, + 0.008555524051189423, + -0.018510906025767326, + 0.009106531739234924, + -0.010409592650830746, + -0.008957610465586185, + 0.007714118808507919, + 0.003095699707046151, + 0.013268879614770412, + 0.010208548977971077, + -0.00743116857483983, + -0.018510906025767326, + -0.005930787418037653, + -0.010014951229095459, + -0.000407671817811206, + -0.016038814559578896, + -0.008317249827086926, + -0.00587494159117341, + 0.02049155905842781, + -0.0014826968545094132, + 0.005986632779240608, + 0.0045569888316094875, + -0.010744665749371052, + -0.0015627419343218207, + -0.010498945601284504, + 0.011332903988659382, + -0.004977691452950239, + -0.007818363606929779, + -0.023023219779133797, + -0.007032804191112518, + 0.01803435944020748, + -0.006876436993479729, + -0.0021109580993652344, + -0.0099255982786417, + 0.006169061176478863, + -0.021712712943553925, + -0.025361282750964165, + 0.014244314283132553, + 0.006377550773322582, + 0.005614329595118761, + 0.008265127427875996, + -0.00383472116664052, + 0.0187789648771286, + -0.003157129744067788, + -0.01511550322175026, + 0.00450858986005187, + 0.00013100412616040558, + 0.014780430123209953, + 0.01180200558155775, + 0.020029902458190918, + 0.007248740177601576, + -0.01642601005733013, + -0.007036527153104544, + -0.028607765212655067, + 0.00772156473249197, + 0.022755160927772522, + 0.0016167259309440851, + 0.0073715997859835625, + -0.00667539332062006, + 0.019687384366989136, + 0.01962781511247158, + -0.005886110942810774, + -0.010297901928424835, + 0.02478048950433731, + 0.006377550773322582, + 0.0007362292381003499, + 0.006586040370166302, + -0.009732001461088657, + -0.009635202586650848, + -0.002671274123713374, + 0.010141534730792046, + -0.0014650124358013272, + -0.005282979924231768, + 0.00959052611142397, + -0.010163872502744198, + -0.005204796325415373, + 0.01760248653590679, + 0.007070034276694059, + 0.012278554029762745, + 0.013596506789326668, + 0.0010508253471925855, + -0.008533185347914696, + 0.008116206154227257, + 0.023738041520118713, + -0.01518251746892929, + -0.0011355242459103465, + 0.012546611949801445, + 0.012487043626606464, + 0.00960541795939207, + -0.013656075112521648, + -0.011563732288777828, + -0.006928559392690659, + -0.022144583985209465, + -0.053671203553676605, + -0.01760248653590679, + 0.0024385848082602024, + 0.005286702886223793, + -0.023886961862444878, + -0.007464675698429346, + -0.012211539782583714, + -0.015398452989757061, + 0.011727545410394669, + -0.008458725176751614, + 0.002347370609641075, + -0.010982939042150974, + -0.0029132713098078966, + -0.014102838933467865, + -0.023872070014476776, + -0.004914400167763233, + 0.010901032947003841, + 0.010930816642940044, + -0.01120632141828537, + 0.0068205916322767735, + -0.004385729786008596, + -0.010960601270198822, + -0.0004723594756796956, + -0.0044936975464224815, + 0.001002425909973681, + 0.007676888257265091, + -0.008741674944758415, + -0.0009493727120570838, + -0.01596435345709324, + -0.014974027872085571, + -0.0009377382812090218, + -0.012881685048341751, + -0.010275563225150108, + -0.012464704923331738, + 0.014303882606327534, + 0.003065915545448661, + -0.014348559081554413, + -0.00921822339296341, + -0.016470685601234436, + 0.025584664195775986, + 0.013924133032560349, + 0.007144494913518429, + -0.002218926092609763, + 0.003568524494767189, + -0.012702979147434235, + -0.015197409316897392, + 0.040685273706912994, + 0.005055875051766634, + 0.00084466248517856, + -0.01919594407081604, + -0.003976196516305208, + -0.03562195226550102, + 0.004545819945633411, + 0.007524244021624327, + 0.0060797082260251045, + -0.012673195451498032, + 0.01142225693911314, + -0.019761845469474792, + -0.015309100970625877, + 0.008078975602984428, + 0.0011960234260186553, + -0.0075391363352537155, + -0.03401360288262367, + -0.003676492488011718, + 0.025599556043744087, + -0.012941253371536732, + 0.00041162752313539386, + 0.023946531116962433, + 0.011936035007238388, + 0.010253225453197956, + 0.015458021312952042, + -0.004370837472379208, + -0.009143762290477753, + 0.03285202011466026, + -0.0128742391243577, + -0.019866090267896652, + 0.0012313922634348273, + -0.00018975819693878293, + 0.013000821694731712, + 0.007479568012058735, + -0.0017758854664862156, + 0.007788579445332289, + 0.03600914776325226, + -0.0060164169408380985, + -0.011653085239231586, + -0.003749091411009431, + -0.007900270633399487, + 0.015055934898555279, + 0.0037714296486228704, + -0.019374649971723557, + 0.011615854687988758, + 0.009516065008938313, + -0.014095393009483814, + 0.0019359757425263524, + 0.011861574836075306, + 0.030275681987404823, + -0.01178711373358965, + -0.007475844584405422, + 0.005491469521075487, + 0.004344776272773743, + -0.03743879124522209, + -0.004393175709992647, + -0.01770673133432865, + 0.01609838381409645, + 0.029858702793717384, + -0.008265127427875996, + -0.02348487451672554, + 0.005364886485040188, + -0.0009358767420053482, + 0.017021695151925087, + 0.015368669293820858, + -0.0019471448613330722, + 0.01131801214069128, + 0.004117671400308609, + 0.006880159955471754, + 0.016991909593343735, + -0.006448288448154926, + -0.002738288836553693, + 0.013864564709365368, + 0.004758032504469156, + 0.0031608527060598135, + -0.01857047528028488, + -0.00241438508965075, + -0.025048548355698586, + 0.0024739536456763744, + 0.0024292771704494953, + -0.00787793193012476, + -0.0018987454241141677, + -0.010908478870987892, + -0.025391066446900368, + -0.028026971966028214, + 0.011116968467831612, + -0.008190666325390339, + 0.02896517515182495, + 0.023961422964930534, + -0.006213737651705742, + 0.0031087303068488836, + 0.009352251887321472, + 0.0021463269367814064, + -0.012918914668262005, + -0.0057595279067754745, + -0.005148950964212418, + 0.01480276882648468, + -0.006909944117069244, + -0.03407317399978638, + -0.03997045382857323, + 0.0008777044131420553, + 0.0068205916322767735, + 0.0273270420730114, + -0.0011578623671084642, + -0.018957670778036118, + -0.0028592871967703104, + 0.022814730182290077, + 0.024274157360196114, + 0.0012230154825374484, + 0.04354456067085266, + -4.442912995727966e-6, + -0.028235461562871933, + -0.017885437235236168, + 0.008570415899157524, + -0.01110207661986351, + -0.0013226064620539546, + 0.010580851696431637, + 0.0067945304326713085, + -0.014720861800014973, + -0.004292653873562813, + 0.006768469233065844, + 0.011139306239783764, + -0.013693305663764477, + -0.0002892329066526145, + -0.004676125943660736, + -0.005703682545572519, + 0.01813860423862934, + 0.016321765258908272, + -0.001484558335505426, + -0.016664283350110054, + 0.00206255866214633, + -0.014370896853506565, + 0.0016790867084637284, + -0.014095393009483814, + 0.019687384366989136, + 0.0062360758893191814, + -0.0009568188106641173, + -0.0005012129549868405, + -0.006425950210541487, + -0.019746951758861542, + 0.0033451428171247244, + 0.019449111074209213, + 0.01158607006072998, + -0.0013402908807620406, + -0.01126588974148035, + 0.024646461009979248, + 0.018361985683441162, + 0.008905488066375256, + -0.013998594135046005, + -0.011109522543847561, + 0.0036374006886035204, + -0.016768528148531914, + -0.0034363570157438517, + 0.0030901150312274694, + -8.586238254792988e-5, + 0.003229728667065501, + -0.0032781281042844057, + 0.0010014951694756746, + -0.019359758123755455, + 0.008138543926179409, + -0.002838810672983527, + 0.0026117058005183935, + 0.008265127427875996, + 0.0018252156442031264, + -0.00943415891379118, + 0.00997027475386858, + -0.000285044516203925, + 0.002544691087678075, + -0.002553998725488782, + 0.007624765858054161, + 0.004099056124687195, + 0.01651536300778389, + -0.015577158890664577, + 0.005186181049793959, + 4.237855682731606e-5, + -0.02187652513384819, + -0.007434891536831856, + 0.018793856725096703, + 0.00407299492508173, + 0.008696998469531536, + 0.003302327822893858, + 0.01142225693911314, + 0.01012664195150137, + 0.008332141675055027, + 0.015845216810703278, + -0.006146722938865423, + 0.021087244153022766, + -0.016545146703720093, + -0.000162882570293732, + 0.021280841901898384, + 0.00196948298253119, + -0.014020931906998158, + 0.01907680742442608, + -0.011772221885621548, + -0.022576455026865005, + 0.015413345769047737, + 0.007274801377207041, + -0.012308337725698948, + 0.0037304763682186604, + 0.013164634816348553, + 0.008734229020774364, + 0.008860812522470951, + 0.007900270633399487, + -0.020953213796019554, + -0.0230678953230381, + 0.012680641375482082, + -0.02488473430275917, + 0.019657600671052933, + 0.014758092351257801, + -0.007386492099612951, + -0.013112512417137623, + 0.015242085792124271, + 0.0012630380224436522, + 0.025688908994197845, + -0.0053611635230481625, + -0.0016669868491590023, + -0.014199637807905674, + -0.012859346345067024, + -0.017498241737484932, + -0.008011961355805397, + 0.009151208214461803, + 0.0003411226498428732, + 0.004709633532911539, + -0.0004597942461259663, + 0.02046177349984646, + 0.003164575668051839, + 0.0017935698851943016, + -0.025033656507730484, + -0.013745428062975407, + -0.02390185371041298, + -0.019925657659769058, + -0.011869020760059357, + -0.0004763151810038835, + 0.006228629499673843, + 0.00488089257851243, + -0.032435040920972824, + 0.006917390041053295, + 0.014169853180646896, + -0.0032315903808921576, + -0.011675423011183739, + -0.01335078664124012, + -0.002261740854009986, + 0.00748329097405076, + -0.026448406279087067, + -0.014988919720053673, + -0.007285970263183117, + -0.001607418293133378, + 0.008369372226297855, + -0.010670204646885395, + 0.005275534000247717, + 0.009396928362548351, + -0.002256156411021948, + -0.0193001888692379, + 0.010387254878878593, + 0.008361926302313805, + -0.024169912561774254, + -0.012062618508934975, + 0.005182458087801933, + 0.0023082788102328777, + -0.011928589083254337, + 0.00503725977614522, + -0.015934569761157036, + -0.0020327745005488396, + -0.010290456004440784, + -0.021593576297163963, + -0.006708900444209576, + 0.045510321855545044, + 8.405904372921214e-5, + 0.0225168876349926, + -0.0002452546323183924, + 0.00011744997027562931, + -0.014996365644037724, + 0.009292683564126492, + -0.005268088076263666, + -0.0006845722091384232, + 0.0011038784869015217, + -0.018853425979614258, + 0.00374164548702538, + -0.003717445768415928, + -0.0034828947391361, + -0.009292683564126492, + 0.014140068553388119, + -0.017632272094488144, + 0.01109463069587946, + -0.007624765858054161, + 0.01843644678592682, + -0.0064333961345255375, + 0.0013086451217532158, + -0.01318697351962328, + 0.0018894379027187824, + -0.01084146462380886, + 0.011913697235286236, + -0.019136374816298485, + -0.01597924530506134, + -0.004195854999125004, + -0.012233877554535866, + 0.007159387227147818, + -0.009188438765704632, + 0.023514660075306892, + -0.009009732864797115, + -0.013216757215559483, + 0.007621042896062136, + 0.00975433923304081, + -0.029620429500937462, + -0.003317219903692603, + -0.006031309254467487, + 0.00493301497772336, + 0.010215994901955128, + -0.01961292326450348, + -0.009992613457143307, + 0.01089358702301979, + 0.028786469250917435, + -0.00748329097405076, + -0.010752111673355103, + -0.007427445612847805, + -0.018361985683441162, + 0.019047023728489876, + -0.004419236909598112, + -0.009359697811305523, + -0.001306783640757203, + -0.0040320418775081635, + -0.013983701355755329, + -0.0035983086563646793, + -0.01661960780620575, + -0.004117671400308609, + -0.005115443374961615, + 0.017766300588846207, + 0.003475448815152049, + 0.009024625644087791, + -0.006619547959417105, + -0.007375323213636875, + -0.025361282750964165, + 0.004091610200703144, + 0.0004588634765241295, + 0.049590762704610825, + 0.011191428638994694, + 0.02078940160572529, + -0.016545146703720093, + -0.0031012841500341892, + -0.02132551744580269, + 0.009136316366493702, + -0.010029844008386135, + -0.015681402757763863, + -0.006872714031487703, + -0.01153394766151905, + 0.0017479626694694161, + 0.01888320967555046, + 0.017751408740878105, + -0.01496658194810152, + 0.018421553075313568, + 0.0009754339116625488, + -0.004553265869617462, + -1.5822879504412413e-5, + 0.016232412308454514, + -0.011340349912643433, + 0.005543591920286417, + -0.004411790985614061, + -0.01706637069582939, + 0.002902102191001177, + 0.009233115240931511, + -0.007218955550342798, + -0.013440139591693878, + 0.019032130017876625, + 0.003408434335142374, + 0.02007457986474037, + -0.003775152610614896, + -0.020104363560676575, + 0.005364886485040188, + -0.01109463069587946, + 0.015353776514530182, + -0.016649391502141953, + 0.017408888787031174, + 0.004207024350762367, + 0.006694008596241474, + -0.015055934898555279, + -0.008808689191937447, + 0.009620309807360172, + -0.0015794956125319004, + -0.02274026907980442, + 0.008979949168860912, + 0.0028592871967703104, + 0.014214529655873775, + -0.011608408764004707, + -0.0056254989467561245, + -0.006429673172533512, + 0.0002232654660474509, + -0.0037360608112066984, + 0.007922608405351639, + 0.0112584438174963, + -0.004437852185219526, + 0.01746845804154873, + -0.001195092685520649, + -0.012390244752168655, + 0.008853365667164326, + 0.017825869843363762, + -0.00981390755623579, + 0.015919677913188934, + 0.029635321348905563, + -0.014899566769599915, + 0.004575604107230902, + 0.014884674921631813, + -0.0017721623880788684, + 0.007382769137620926, + 0.004225639160722494, + 0.013700751587748528, + 0.0005775350728072226, + 0.00493301497772336, + -0.012449813075363636, + -0.015889892354607582, + -0.0058228191919624805, + -0.01803435944020748, + -0.01831730827689171, + -0.014140068553388119, + 0.019344864413142204, + -0.02142976224422455, + 0.015033596195280552, + 0.016560038551688194, + -0.005067044403403997, + 0.02198076993227005, + -0.012375352904200554, + 0.0015878723934292793, + -0.0018838533433154225, + 0.006381273735314608, + 0.0033060507848858833, + -0.026522867381572723, + 0.00980646163225174, + -0.008786351419985294, + 0.007397660985589027, + -0.005960571579635143, + -0.003905458841472864, + -0.009188438765704632, + -0.0036783539690077305, + 0.010737218894064426, + 0.011385026387870312, + 0.0021351578179746866, + 0.010037289932370186, + -0.000994049129076302, + -0.0049367379397153854, + -0.019791629165410995, + -0.013417800888419151, + 0.008213005028665066, + -0.010171318426728249, + -0.012732763774693012, + 0.021623359993100166, + 0.0015915954718366265, + 0.03943433612585068, + -0.018927885219454765, + 0.012047725729644299, + 0.028056755661964417, + 0.009903260506689548, + 0.009769231081008911, + -0.008376818150281906, + 0.01639622449874878, + 0.014415573328733444, + -0.01566651090979576, + 0.012628518976271152, + 0.047982413321733475, + -0.031154317781329155, + 0.020327745005488396, + 0.0001706776674836874, + -0.018198171630501747, + 0.015130395069718361, + 0.030916042625904083, + -0.013745428062975407, + 0.001707009389065206, + -0.01921083591878414, + 0.001841038465499878, + 0.004463913384824991, + 0.0136635210365057, + 0.006664224434643984, + -0.019270405173301697, + 0.009791569784283638, + 0.007472121622413397, + -0.012218985706567764, + -0.00932991411536932, + 0.0643339604139328, + 0.008637430146336555, + -0.00037044149939902127, + 0.011183982715010643, + 0.009724555537104607, + -0.014423019252717495, + 0.005085659213364124, + 0.01758759468793869, + 0.028235461562871933, + -0.00338981905952096, + -0.03237546980381012, + -0.0006794530199840665, + -0.007103541865944862, + -0.012122186832129955, + 0.023231709375977516, + 0.003676492488011718, + 0.0013374986592680216, + 0.006288198288530111, + 0.009895814582705498, + -0.007334369700402021, + -0.016053706407546997, + -0.011124414391815662, + 0.0262845940887928, + 0.0225317794829607, + -0.014430465176701546, + -0.00021000218112021685, + -0.0002485122822690755, + 0.0070439730770885944, + -0.0013272602809593081, + -0.012137078680098057, + -0.007278524339199066, + 0.008324695751070976, + -0.012755101546645164, + 0.006708900444209576, + 0.003086392069235444, + 0.0023883238900452852, + 0.0134103549644351, + -0.0077736871317029, + 0.0069657894782722, + 0.013894349336624146, + 0.017319537699222565, + 0.019389541819691658, + -0.0009931182721629739, + -0.014020931906998158, + 0.008726783096790314, + -0.014378342777490616, + 0.00370069220662117, + 0.009530957788228989, + -0.003294881898909807, + 0.010007505305111408, + 0.010417038574814796, + -0.03294137120246887, + -4.9679183575790375e-5, + -0.010379808023571968, + 0.03484756499528885, + -0.008979949168860912, + -0.005134058650583029, + -0.02059580385684967, + 0.00763965817168355, + 0.0054951924830675125, + 0.0035257097333669662, + 0.010268117301166058, + 0.01639622449874878 + ], + "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2": [ + -0.02839670144021511, + -0.04007189720869064, + -0.015855571255087852, + -0.005341177806258202, + -0.0065915584564208984, + 0.004023612476885319, + 0.02609749510884285, + 0.016154170036315918, + -0.01969256065785885, + 0.020558495074510574, + 0.011540825478732586, + 0.02067793533205986, + 0.01564655266702175, + -0.028993899002671242, + -0.01448201946914196, + 0.037444230169057846, + -0.021543869748711586, + 0.022155996412038803, + -0.008368218317627907, + -0.00842793844640255, + 0.03642899543046951, + -0.01310100220143795, + -0.061630696058273315, + -0.008151734247803688, + 0.024619432166218758, + -0.011593080125749111, + -0.0034152185544371605, + 0.0005799339851364493, + -0.01561669260263443, + 0.014526809565722942, + 0.014243140816688538, + 0.0004593282355926931, + -0.0041729118674993515, + 0.015362884849309921, + 0.037414371967315674, + -0.020065808668732643, + -0.005124693736433983, + 0.018751975148916245, + -0.0335027351975441, + -0.03374161198735237, + -0.033443015068769455, + 0.01561669260263443, + -0.021573729813098907, + -0.02039426565170288, + -0.03977330029010773, + 0.035563062876462936, + -0.014183420687913895, + -0.04583484306931496, + -0.021304991096258163, + 0.00980895571410656, + 0.02170809917151928, + -0.04057951271533966, + 0.03451796621084213, + -0.013854962773621082, + 0.0306660495698452, + -0.02111090160906315, + -0.0030494355596601963, + 0.024977751076221466, + -0.011324342340230942, + -0.029128268361091614, + -0.004841025453060865, + -0.020379336550831795, + 0.003885510843247175, + 0.020349476486444473, + -0.039534419775009155, + -0.005546464119106531, + 0.01922973245382309, + 0.008009900338947773, + -0.025858616456389427, + -0.01276507880538702, + 0.0363394170999527, + 0.05120961368083954, + -0.014086376875638962, + 0.007464958354830742, + -0.01607952080667019, + -0.02797866426408291, + 0.06515415757894516, + 0.005606183782219887, + -0.0005155486869625747, + 0.0068005770444869995, + 0.0026202003937214613, + 0.03293539583683014, + -0.003543989034369588, + -0.01915508322417736, + 0.08169650286436081, + -0.02733667753636837, + -0.04891040921211243, + -0.05407615751028061, + 0.020692864432930946, + -0.00968205090612173, + 0.0036708933766931295, + 0.04586470499634743, + 0.011301946826279163, + 0.016482628881931305, + -0.0023831878788769245, + 0.028381772339344025, + 0.040101755410432816, + -0.023843077942728996, + 0.016198959201574326, + 0.001037629204802215, + 0.031711142510175705, + 0.030755627900362015, + -0.026709621772170067, + 0.02096160314977169, + 0.0018858350813388824, + 0.0020435324404388666, + 0.030725769698619843, + 0.00658782571554184, + -0.016019800677895546, + 0.03183058276772499, + -0.01180956419557333, + -0.022155996412038803, + 0.019767209887504578, + 0.009428242221474648, + -0.020483845844864845, + -0.04705909639596939, + 0.0014407369308173656, + -0.023529548197984695, + -0.001534982118755579, + -0.04153502732515335, + -0.005751750431954861, + 0.03804142773151398, + -0.020021017640829086, + 0.00543448980897665, + -0.045267507433891296, + 0.0023253345862030983, + 0.026679761707782745, + 0.007584397681057453, + 0.03920596092939377, + 0.0456855446100235, + -0.05070199817419052, + -0.003683957038447261, + -0.00991346500813961, + 0.011608010157942772, + 0.03863862529397011, + 0.006725927349179983, + 0.00906245969235897, + 0.03636927902698517, + -0.04592442512512207, + 0.016139240935444832, + -0.07793416827917099, + -0.04186348617076874, + -0.025440577417612076, + -0.0027489708736538887, + -0.014773152768611908, + -0.010689820162951946, + -0.052881766110658646, + 0.035354044288396835, + -0.011182507500052452, + -0.012862123548984528, + -0.03356245160102844, + -0.014302860014140606, + -0.00658782571554184, + -0.013250301592051983, + 0.006949876435101032, + -0.005994361825287342, + -0.003993752878159285, + 0.00045419606612995267, + 0.01053305622190237, + 0.05013466253876686, + 0.014265535399317741, + -0.057420458644628525, + -0.0004544293333310634, + 0.0007814878481440246, + 0.06210845336318016, + -0.00927894376218319, + 0.021006392315030098, + 0.04553624615073204, + -0.0114736407995224, + 0.022006697952747345, + 0.02556001767516136, + -0.006886424031108618, + -0.024843381717801094, + 0.016975315287709236, + -0.0029486585408449173, + 0.006501978728920221, + 0.014138631522655487, + 0.029949413612484932, + 0.010577846318483353, + -0.06037658452987671, + -0.026142284274101257, + -0.0146761080250144, + 0.01191407348960638, + -0.022783054038882256, + 0.024231255054473877, + 0.011077998206019402, + 0.0027732320595532656, + -0.0009083921322599053, + -0.005983164068311453, + -0.021902188658714294, + 0.00031399482395499945, + -0.026425952091813087, + -0.01936410181224346, + 3.8666152249788865e-5, + -0.013205511495471, + -0.03828030824661255, + -0.012011118233203888, + -0.026993289589881897, + -0.003794065210968256, + -0.013683268800377846, + -0.014765688218176365, + -0.009435707703232765, + -0.0343388095498085, + 0.03884764388203621, + -0.032457638531923294, + -0.0026388627011328936, + -0.03027787059545517, + -0.009166968986392021, + 0.03699633479118347, + -0.03854904696345329, + 0.017049964517354965, + -0.0582863949239254, + 0.016094449907541275, + -0.019110294058918953, + 0.003956427797675133, + 0.014399904757738113, + -0.007110373117029667, + -5.292538844514638e-5, + -0.01010755356401205, + -0.02875502035021782, + 0.015056821517646313, + -0.003663428360596299, + 0.007815811783075333, + -0.013645944185554981, + -0.04478975012898445, + -0.03195002302527428, + -0.03508530557155609, + 0.023141371086239815, + -0.035354044288396835, + 0.0554497130215168, + 0.0069685387425124645, + 0.010891374200582504, + -0.0033144415356218815, + -0.015765992924571037, + -0.008801186457276344, + 0.000523946771863848, + 0.031502123922109604, + 0.030262941494584084, + 0.0013156989589333534, + -0.004482707474380732, + -0.009659656323492527, + 0.022723333910107613, + 0.03714563325047493, + 0.0022282900754362345, + 0.028590790927410126, + 0.03574221953749657, + 0.037623390555381775, + 0.032845817506313324, + 0.015810782089829445, + -0.020543565973639488, + 0.04046007618308067, + 0.030815348029136658, + 0.042789142578840256, + -0.020633144304156303, + -0.026470743119716644, + 0.061989013105630875, + 0.037026192992925644, + -0.04216208681464195, + -0.021767819300293922, + -0.009779095649719238, + -0.011697589419782162, + 0.030994506552815437, + 0.053269945085048676, + 0.013504109345376492, + 0.014601458795368671, + -0.05129919573664665, + 0.028546001762151718, + -0.01791590079665184, + 0.0016926793614402413, + 0.05538999289274216, + -0.008159199729561806, + 0.038578905165195465, + -0.0027452383656054735, + 0.004848490469157696, + -0.016139240935444832, + 0.004374465439468622, + -0.00777102168649435, + -0.006360144354403019, + -0.03834002837538719, + -0.014078911393880844, + -0.014847801998257637, + -0.025873545557260513, + 0.01975228078663349, + -0.012705359607934952, + -0.030322661623358727, + 0.006024221424013376, + -0.037265073508024216, + 0.0020342012867331505, + -0.022783054038882256, + -0.007972575724124908, + 0.0020976532250642776, + 0.03368189185857773, + 0.013459320180118084, + 0.003581313882023096, + 0.006621418055146933, + -0.020946674048900604, + -0.009353592991828918, + -0.02715751901268959, + -0.018751975148916245, + 0.010615170933306217, + -0.0404302142560482, + 0.012242531403899193, + -0.00520680844783783, + -0.03126324713230133, + -0.0005160152795724571, + 0.0008673348347656429, + 0.04493904858827591, + 0.0028161555528640747, + -0.03448810800909996, + 0.00872653629630804, + 0.0146761080250144, + -0.04260998219251633, + -0.03983301669359207, + -0.032696519047021866, + 0.0038015299942344427, + 0.008801186457276344, + 0.031322967261075974, + 0.0009307870059274137, + -0.022992072626948357, + -0.0037679376546293497, + 0.017691951245069504, + -0.01840858720242977, + -0.0839061364531517, + 0.030725769698619843, + 0.03180072456598282, + -0.0341297909617424, + 0.014646248891949654, + -0.025380859151482582, + -0.035563062876462936, + 0.01961791142821312, + -0.00957754161208868, + -0.004848490469157696, + -0.009413312189280987, + -0.0006629816489294171, + -0.036966472864151, + -0.07596341520547867, + -0.006222042720764875, + -0.03657829761505127, + 0.011966328136622906, + -0.051717232912778854, + -0.030785487964749336, + -0.03299511596560478, + -0.005232935771346092, + -0.021857397630810738, + -0.01543753407895565, + -0.002090188441798091, + -0.030083782970905304, + 0.020812304690480232, + -0.01894606463611126, + -0.008584702387452126, + 0.0009060593438334763, + -0.01660206727683544, + 0.018751975148916245, + -0.020140457898378372, + 0.055718448013067245, + -0.05147835239768028, + -0.006438526790589094, + -0.03332357481122017, + 0.014593993313610554, + 0.01908043399453163, + 0.03813100606203079, + -0.02573917619884014, + -0.006222042720764875, + -0.019677629694342613, + -0.005725623108446598, + -0.004523764830082655, + -0.02573917619884014, + -0.023081650957465172, + -0.023201091215014458, + 0.0010833521373569965, + 0.007289532106369734, + 0.03263679891824722, + 0.0013250301126390696, + -0.02093174308538437, + 0.011077998206019402, + -0.009129644371569157, + 0.0330846942961216, + -0.046402182430028915, + -0.034756846725940704, + 0.010391222313046455, + -0.006852831691503525, + -0.017826320603489876, + 0.010771934874355793, + -0.009271478280425072, + -0.0006139928591437638, + 0.011958863586187363, + -0.013981867581605911, + -0.01667671650648117, + 0.006319087464362383, + 0.028426561504602432, + -0.0395941399037838, + 0.04019133746623993, + -0.020797373726963997, + 0.0073567163199186325, + 0.0010637565283104777, + -0.0016329596983268857, + 0.0052180057391524315, + 0.009361057542264462, + 0.010503196157515049, + -0.014273000881075859, + -0.007270869333297014, + -0.007237276993691921, + -0.008547377772629261, + 0.029053619131445885, + 0.008330893702805042, + -0.021379640325903893, + -0.042371105402708054, + -0.01310100220143795, + 0.023395178839564323, + 0.004284886177629232, + -0.01993143931031227, + -0.034965865314006805, + 0.0018867682665586472, + 0.009570077061653137, + 0.05347896367311478, + -0.015452464111149311, + -0.024798592552542686, + 0.007420168723911047, + 0.001983812777325511, + 0.0014444694388657808, + 0.022215716540813446, + 0.0274113267660141, + 0.01564655266702175, + 0.02521662972867489, + -0.0008472728077322245, + 0.013481714762747288, + 0.013018887490034103, + -0.0244701337069273, + -0.028202613815665245, + -0.012212672270834446, + 0.023872938007116318, + 0.031502123922109604, + 0.008039760403335094, + 0.025948194786906242, + -0.03848932683467865, + -0.05727116018533707, + 0.004303548485040665, + -0.0042662238702178, + -0.006543036084622145, + 0.0036335685290396214, + -0.0035365240182727575, + 0.037265073508024216, + -0.016557278111577034, + -0.019483542069792747, + -0.03998231887817383, + -0.006681137718260288, + -0.04882082715630531, + 0.030427170917391777, + 0.012608314864337444, + -0.01943875104188919, + -0.009428242221474648, + 0.026157215237617493, + -0.05694270133972168, + 0.0013800841988995671, + 0.0052851904183626175, + 0.0006737125222571194, + 0.025798896327614784, + -0.01703503541648388, + 0.01278000883758068, + -0.05103045701980591, + 0.007875530980527401, + -0.03884764388203621, + -0.004165446851402521, + -0.012257461436092854, + 0.03377147018909454, + 0.006095138378441334, + 0.00356265134178102, + 0.014646248891949654, + -0.003986287862062454, + 0.02184246852993965, + -0.010256852954626083, + -0.0456855446100235, + -0.013265230692923069, + 0.03296525776386261, + 0.005106031429022551, + -0.022648684680461884, + 0.0032379257027059793, + -0.011675194837152958, + -0.0024074490647763014, + 0.0028310855850577354, + -0.00977163016796112, + -0.04947774484753609, + 0.024873241782188416, + -0.005128426477313042, + 0.007352984044700861, + -0.03272637724876404, + 0.03242778033018112, + -0.03260693699121475, + 0.0021312455646693707, + -0.00101336813531816, + 0.01675136759877205, + -0.008771326392889023, + 0.0029187987092882395, + 0.02149908058345318, + 0.007255939766764641, + -0.01794576086103916, + -0.0005776011385023594, + -0.00304010440595448, + -0.0077934167347848415, + 0.040101755410432816, + -0.005684565752744675, + -0.021543869748711586, + -0.014795547351241112, + -0.00012118893209844828, + -0.01816970854997635, + 0.00798750575631857, + -0.018931133672595024, + -0.001868105842731893, + -0.026605112478137016, + -0.002349595772102475, + -0.04989578202366829, + -0.02645581215620041, + -0.022350085899233818, + 0.01791590079665184, + -0.027396397665143013, + -0.0019707491155713797, + -0.01382510270923376, + 0.0008416740456596017, + 0.028307123109698296, + 0.016527418047189713, + -0.014213280752301216, + -0.005490476731210947, + -0.011264622211456299, + -0.012794938869774342, + 0.002592206932604313, + -0.006061546038836241, + 0.0015125871868804097, + -0.03804142773151398, + -0.02617214433848858, + -0.04502863064408302, + 0.02049877494573593, + 0.005609916057437658, + -0.03732479363679886, + -0.009420777671039104, + 0.017408283427357674, + 0.030292801558971405, + 0.013250301592051983, + 0.020424125716090202, + 0.007897925563156605, + 0.016019800677895546, + -0.04777573421597481, + 0.014564134180545807, + 0.017378423362970352, + -0.013115932233631611, + -0.02064807526767254, + 0.010421082377433777, + 0.00915203895419836, + 0.036309558898210526, + 0.007207417394965887, + 0.01930438168346882, + -0.02782936580479145, + 0.01085404958575964, + 0.0033125753980129957, + 0.020946674048900604, + 0.010973488911986351, + -0.05977938696742058, + 0.004501369781792164, + -0.006386272143572569, + -0.008883300237357616, + -0.023380249738693237, + -0.019856790080666542, + -0.00639000441879034, + 0.02227543666958809, + 0.024664223194122314, + -0.015213585458695889, + -0.013854962773621082, + -0.00036578296567313373, + 0.0276203453540802, + 0.01600487157702446, + 0.025291278958320618, + 0.03278609737753868, + 0.016631927341222763, + 0.030606329441070557, + 0.0016814818372949958, + -0.01788604073226452, + 0.02036440744996071, + -0.03508530557155609, + -0.013354810886085033, + -0.03424922749400139, + -0.01752772182226181, + 0.041594747453927994, + -0.016706576570868492, + -0.007905391044914722, + -0.010085158981382847, + 0.0017990550259128213, + 0.012638174928724766, + -0.015556973405182362, + 0.00936852302402258, + 0.02673948183655739, + 0.010883909650146961, + 0.00034338809200562537, + 0.0012578455498442054, + 0.0015695075271651149, + -0.007386576384305954, + 0.012451550923287868, + 0.009286408312618732, + -0.004262491129338741, + 0.026933569461107254, + 0.016691647469997406, + -0.0018653065199032426, + -0.013899752870202065, + 0.03636927902698517, + 0.021663310006260872, + -0.007114105392247438, + -0.00478877080604434, + 0.030218152329325676, + 0.011682660318911076, + 0.005102299153804779, + 0.0010404285276308656, + 0.03520474582910538, + -0.024977751076221466, + -0.008860905654728413, + 0.030904928222298622, + -0.0022917422465980053, + 0.021095972508192062, + 0.004882082808762789, + -0.02049877494573593, + 0.037832409143447876, + 0.023081650957465172, + -0.003848185995593667, + 0.009413312189280987, + -0.02039426565170288, + 0.03311455622315407, + -0.02687385119497776, + 0.019707489758729935, + 0.023813217878341675, + 0.0010385623900219798, + -0.005568859167397022, + -0.02694850042462349, + 0.010525591671466827, + 0.01873704604804516, + -0.005307585466653109, + -0.016094449907541275, + -0.014974706806242466, + -0.013668338768184185, + 0.007394041400402784, + 0.019274523481726646, + -0.0013530236901715398, + 0.0029617222025990486, + -0.005281458143144846, + 0.0036466321907937527, + 0.004180376883596182, + 0.005706960801035166, + 0.037235211580991745, + -0.008808651007711887, + 0.027814434841275215, + -0.005606183782219887, + 0.021290061995387077, + 0.016661787405610085, + 0.008233848959207535, + -0.007576932664960623, + -0.0003578514442779124, + -0.03711577504873276, + 0.014855267480015755, + -0.014414834789931774, + -0.002491429913789034, + -0.002605270594358444, + 0.03810114786028862, + 0.0017393353627994657, + -0.003963892813771963, + 0.03678731620311737, + -0.014198350720107555, + -0.008069620467722416, + 0.011354201473295689, + -0.007718767039477825, + -0.007024525664746761, + -0.008338358253240585, + 0.004926872439682484, + -0.0004161714459769428, + 0.034756846725940704, + 0.007352984044700861, + -0.0018979656742885709, + 0.019677629694342613, + 0.03771296888589859, + -0.01413116604089737, + 0.020021017640829086, + 0.005766680464148521, + 0.000975110218860209, + -0.008845975622534752, + -0.010786864906549454, + -0.01404158677905798, + -0.02237994596362114, + -0.04538694769144058, + 0.014123701490461826, + -0.007371646352112293, + -0.006961073726415634, + 0.0014211414381861687, + -0.008263709023594856, + -0.0023048059083521366, + -0.02803838439285755, + 0.005412094760686159, + 0.009846280328929424, + -0.003327505197376013, + -0.0030718303751200438, + -0.0343388095498085, + 0.024589573964476585, + 0.012100697495043278, + -0.008831045590341091, + 0.01972242072224617, + 0.0003464207402430475, + -0.03580193966627121, + -0.000617725308984518, + -0.0184832364320755, + -0.01791590079665184, + -0.008293569087982178, + -0.0026817864272743464, + -0.01902071386575699, + 0.004643204156309366, + 0.01191407348960638, + 0.008263709023594856, + 0.004180376883596182, + 0.01724405400454998, + 0.014273000881075859, + 0.009293872863054276, + 0.009734305553138256, + 0.019677629694342613, + -0.0009158570901490748, + 0.017691951245069504, + -0.01437751017510891, + 0.009361057542264462, + -0.0005230136448517442, + 0.03144240379333496, + -0.015392743982374668, + -0.003219263395294547, + -0.030725769698619843, + -0.03398049250245094, + 0.006946143694221973, + 0.005415827501565218, + 0.000376513839000836, + -0.004687993787229061, + 0.03586165979504585, + 0.017572512850165367, + 0.015452464111149311, + 0.01108546368777752, + -0.003209932241588831, + -0.011787169612944126, + -0.008024830371141434, + 0.03311455622315407, + 0.032099321484565735, + -0.02287263236939907, + 0.035145025700330734, + 0.03678731620311737, + -0.01742321252822876, + -0.019199872389435768, + 0.02336532063782215, + 0.012257461436092854, + 0.03296525776386261, + 0.007162627764046192, + 0.009271478280425072, + 0.008763860911130905, + 0.006475851405411959, + -0.017691951245069504, + 0.007080513052642345, + 0.00434833811596036, + -0.013683268800377846, + 0.003622371004894376, + -0.0037492753472179174, + 0.003926568198949099, + -0.017378423362970352, + 0.03842960670590401, + 0.010734610259532928, + 0.029695603996515274, + 0.0033163076732307673, + 0.009555147029459476, + 0.010503196157515049, + -0.06957340985536575, + 0.020692864432930946, + 0.013115932233631611, + 0.011346736922860146, + -0.008659351617097855, + 0.018333937972784042, + 0.019558191299438477, + 0.03825044631958008, + 0.004311013501137495, + -0.0006331217591650784, + 0.00018195835582446307, + 0.0021032521035522223, + -0.03816086798906326, + -0.03275623917579651, + 0.0002486764278728515, + -0.005203076172620058, + -0.019214803352952003, + -0.003663428360596299, + -0.012085767462849617, + 0.018333937972784042, + -0.015736132860183716, + 0.014011726714670658, + -0.026231864467263222, + -0.011077998206019402, + -0.0066027557477355, + 0.003346167504787445, + -0.0073567163199186325, + 0.0013782179448753595, + 0.01925959251821041, + 0.01943875104188919, + -0.021827537566423416, + 0.02305179089307785, + -0.0063452147878706455, + 0.0062780301086604595, + 0.024425344541668892, + 0.02036440744996071, + -0.01579585112631321, + 0.009040065109729767, + 0.011787169612944126, + -0.0036410335451364517, + -0.006569163408130407, + -0.01148857083171606, + 0.01010755356401205, + -0.02248445525765419, + 0.034726984798908234, + 0.002838550368323922, + 0.0029859833884984255, + -0.01301142293959856, + 0.03657829761505127, + -0.03257707878947258, + -0.0038220586720854044, + 0.0017850581789389253, + 0.032487500458955765, + 0.02336532063782215, + 0.008465263061225414, + -0.018005479127168655, + 0.011040673591196537, + 0.014302860014140606, + -0.008763860911130905, + 0.00217416905798018, + 0.002017405116930604, + 0.005580056458711624, + 0.0026612577494233847, + -0.02882966957986355, + -0.008838511072099209, + 0.0069685387425124645, + 0.008435402996838093, + -0.013548899441957474, + 0.03616026043891907, + 0.020274827256798744, + 0.021081043407320976, + -0.010794329456984997, + -0.01752772182226181, + -0.011227297596633434, + 0.049806203693151474, + -0.02248445525765419, + -0.032666657119989395, + -0.016631927341222763, + -0.010458406992256641, + -0.006401201710104942, + -0.017960689961910248, + 0.022618824616074562, + -0.02251431532204151, + -0.006039151456207037, + 0.02730681747198105, + 0.015198655426502228, + -0.011555755510926247, + -0.0006793112261220813, + 0.007412703707814217, + -0.006259367801249027, + 0.02397744730114937, + -0.030755627900362015, + 0.006069011054933071, + -0.013466784730553627, + 0.004605879541486502, + 0.0262020044028759, + -0.0009965719655156136, + -0.039325401186943054, + 0.01993143931031227, + 0.011249692179262638, + -0.011869284324347973, + -0.03002406284213066, + 0.003967625554651022, + -0.004870885517448187, + 0.017871109768748283, + -0.010861514136195183, + -0.015034426003694534, + -0.00869667623192072, + 0.013414530083537102, + 0.0170648954808712, + -0.01077940035611391, + -0.02506733126938343, + -0.00372688053175807, + -0.01703503541648388, + -0.011690124869346619, + 0.004042274784296751, + 0.005762947723269463, + 0.011301946826279163, + 0.011145182885229588, + -0.007875530980527401, + -0.001849443418905139, + 0.0310840867459774, + -2.627315370773431e-5, + 0.0202151071280241, + 0.02832205221056938, + 0.019349172711372375, + 0.008338358253240585, + -0.013795243576169014, + -0.025664526969194412, + -0.02323095127940178, + 3.1317835237132385e-5, + -0.003926568198949099, + -0.01579585112631321, + -0.028426561504602432, + -0.0010273648658767343, + -0.006289227399975061, + -0.03816086798906326, + -0.003428282216191292, + 0.0023981179110705853, + 0.021155692636966705, + -0.029441796243190765, + -0.023872938007116318, + 0.014668643474578857, + 0.011301946826279163, + 0.03260693699121475, + 0.0032453907188028097, + 0.019588051363825798, + 0.009159504435956478, + -0.012690429575741291, + 0.00469919154420495, + 0.013063677586615086, + -0.00448644021525979, + -0.028098102658987045, + 0.004919407423585653, + -0.01752772182226181, + 0.015265840105712414, + 0.004725318867713213, + -0.00377540267072618, + 0.01200365275144577, + -0.011227297596633434, + 0.005789075046777725, + 0.0014043452683836222, + 0.013713128864765167, + 0.013332415372133255, + -0.006897621788084507, + 0.00045419606612995267, + -0.015221050009131432, + -0.006281762383878231, + 0.005759215448051691, + 0.016691647469997406, + -0.007285799365490675, + -0.018139848485589027, + 0.004609611816704273, + -0.012123092077672482, + 0.01189914345741272, + -0.01628853939473629, + -0.020095668733119965, + 0.010189668275415897, + -0.022185856476426125, + 0.022544175386428833, + 0.014728362672030926, + 0.010249387472867966, + 0.03544362261891365, + 0.010361362248659134, + 0.020812304690480232, + -0.021752888336777687, + -9.751101606525481e-5, + -0.01106306817382574, + -0.018035339191555977, + 0.0010460272897034883, + 0.032696519047021866, + -0.016198959201574326, + -0.014967241324484348, + -0.001452867523767054, + -0.012048442848026752, + 0.019095363095402718, + 0.007065583020448685, + 0.019035644829273224, + 0.00680804206058383, + -0.03720535337924957, + 0.017781531438231468, + -0.03926568105816841, + -0.0018205167725682259, + -0.009973184205591679, + -0.002209627768024802, + -0.021469220519065857, + -0.0123395761474967, + -0.041803766041994095, + 0.028232472017407417, + -0.009107248857617378, + -0.051717232912778854, + -0.016616998240351677, + 0.013317486271262169, + 0.006427329033613205, + -0.013645944185554981, + 0.043356478214263916, + -0.009696980938315392, + 0.006647545378655195, + -0.011936469003558159, + -0.025828756392002106, + 0.007076780777424574, + 0.011518430896103382, + 0.03395063057541847, + -0.011167577467858791, + -0.008681746199727058, + 0.013660874217748642, + -0.027008218690752983, + 0.01894606463611126, + 0.025231558829545975, + -0.009025135077536106, + -0.01975228078663349, + 0.020349476486444473, + -0.014474553987383842, + -0.00991346500813961, + -0.0548226535320282, + -0.003978822845965624, + -0.00585999246686697, + -0.04132600873708725, + 0.020872022956609726, + 0.032099321484565735, + -0.0022600162774324417, + 0.0020883220713585615, + -0.004269956145435572, + -0.007547073066234589, + 0.029561234638094902, + -0.009570077061653137, + -0.0028124230448156595, + 0.0013884822838008404, + -0.019379032775759697, + 0.02411181665956974, + 0.04473003000020981, + 0.025589877739548683, + -0.03311455622315407, + -0.006755787413567305, + 0.032845817506313324, + -0.008450333029031754, + -0.013272696174681187, + -0.0038929758593440056, + -0.004908210132271051, + 0.005576324183493853, + 0.010704750195145607, + -0.014713432639837265, + -0.009353592991828918, + 0.019214803352952003, + 0.005479279439896345, + -0.006326552480459213, + -0.0005804005195386708, + -0.0060652787797153, + -0.01660206727683544, + 0.0027265760581940413, + -0.01858774572610855, + -0.03669773414731026, + -0.07100668549537659, + -0.01618403010070324, + -0.007483620662242174, + 0.032666657119989395, + -0.01731870323419571, + -0.008644421584904194, + 0.01763223111629486, + 0.007017061114311218, + 0.031143806874752045, + 0.019558191299438477, + -0.020200178027153015, + -3.534191273502074e-5, + 0.004367000889033079, + 0.019707489758729935, + 0.007386576384305954, + -0.011167577467858791, + -0.02921784669160843, + 0.005371037404984236, + -0.007199952378869057, + -0.020916813984513283, + -0.006218310445547104, + 0.04228152334690094, + 0.037623390555381775, + 0.019170014187693596, + 0.006897621788084507, + -0.013668338768184185, + -0.03699633479118347, + -0.015915291383862495, + -0.00572935538366437, + -0.03254722058773041, + 0.006069011054933071, + -0.01621389016509056, + -0.03595123812556267, + -0.013981867581605911, + 0.016243750229477882, + -0.010115019045770168, + 0.020901883020997047, + -0.018886344507336617, + 0.01819956861436367, + -0.0013670205371454358, + 0.01664685644209385, + 0.0019278255058452487, + -0.012481410056352615, + -0.007121570408344269, + -0.008465263061225414, + -0.031322967261075974, + -0.0024391752667725086, + -0.02878488041460514, + -0.0006522507173940539, + 0.0008384081302210689, + 0.004617076832801104, + -0.0244701337069273, + -0.004131854511797428, + -0.01534795481711626, + -0.012354506179690361, + -0.001559243188239634, + 0.0306660495698452, + -0.004546159878373146, + 0.004445382859557867, + -0.02697836048901081, + 0.04231138527393341, + 0.02875502035021782, + 0.00435580313205719, + -0.008330893702805042, + -0.0248881708830595, + 0.029471656307578087, + 0.02323095127940178, + -0.002978518372401595, + 0.025694387033581734, + -0.015303164720535278, + -0.002941193524748087, + -0.015265840105712414, + -0.008883300237357616, + 0.002355194417759776, + 0.00383325619623065, + 0.004169179126620293, + 0.017542652785778046, + 0.033413153141736984, + 0.003260320518165827, + 0.012705359607934952, + -0.014243140816688538, + 0.008689211681485176, + -0.008129339665174484, + 0.002765767043456435, + -0.023753497749567032, + -0.020976534113287926, + 0.014862732030451298, + -0.033413153141736984, + 0.003986287862062454, + -0.008987809531390667, + 0.02106611244380474, + 0.03735465183854103, + 0.0037250141613185406, + 0.023081650957465172, + 0.0030214418657124043, + 0.026321442797780037, + -0.013451854698359966, + 0.023171231150627136, + -0.007129035424441099, + -0.0343388095498085, + -0.002008073730394244, + -0.013033817522227764, + 0.013310020789504051, + -0.039713580161333084, + -0.02070779539644718, + -0.015034426003694534, + -1.7277296819884214e-6, + -0.0032024672254920006, + -0.037235211580991745, + -0.011958863586187363, + 0.009935859590768814, + 0.01866239681839943, + -0.020558495074510574, + 0.004882082808762789, + 0.027784574776887894, + -0.004923140164464712, + 0.007386576384305954, + -0.025410719215869904, + -0.004191574174910784, + -0.00851751770824194, + -0.0004432318964973092, + 0.03941497951745987, + 0.010861514136195183, + -0.03544362261891365, + 0.002711646258831024, + 0.02361912839114666, + -0.032308340072631836, + -0.023783357813954353, + -0.002750837244093418, + 0.021872328594326973, + -0.018184639513492584, + -0.016049660742282867, + -0.0012951702810823917, + -0.006124998442828655, + -0.003221129532903433, + 0.03056154027581215, + 0.021364711225032806, + 0.006946143694221973, + 0.0038220586720854044, + -0.04016147553920746, + 0.010025438852608204, + 0.017199264839291573, + -0.008614562451839447, + 0.027112729847431183, + -0.004986592102795839, + -0.003543989034369588, + 0.005643508397042751, + 0.0016450901748612523, + -0.033622171729803085, + -0.012742684222757816, + 0.006255635060369968, + 0.018333937972784042, + 0.02673948183655739, + -0.0067669847048819065, + -0.019274523481726646, + -0.025545088574290276, + -0.004505102522671223, + 0.012264926917850971, + -0.00691255135461688, + 0.012757614254951477, + -0.008062154985964298, + 0.0022917422465980053, + 0.031352825462818146, + 0.02464929223060608, + 0.025858616456389427, + -0.03860876336693764, + 0.0016301602590829134, + -0.016228819265961647, + -0.03317427635192871, + -0.02723216824233532, + 0.008383148349821568, + -0.010652495548129082, + -0.008793720975518227, + -0.021752888336777687, + 0.00031166200642473996, + -0.009532751515507698, + -0.008166664279997349, + 0.006737125106155872, + 0.0009676452609710395, + 0.009689516387879848, + -0.013817638158798218, + 0.025619737803936005, + 0.017005175352096558, + 0.020125528797507286, + 0.010473337024450302, + 0.025410719215869904, + 0.003340568859130144, + 0.021543869748711586, + -0.019841859117150307, + -0.008375683799386024, + 0.010510661639273167, + 0.03206946328282356, + -0.009547681547701359, + -0.01724405400454998, + 0.016303468495607376, + -7.715734682278708e-5, + 0.003374161198735237, + 0.00904752966016531, + -0.02921784669160843, + -0.022439664229750633, + -0.03017336130142212, + -0.003978822845965624, + 0.0106599610298872, + 0.005874922499060631, + -0.004687993787229061, + -0.009264013729989529, + -0.03493600711226463, + 0.01799055002629757, + 0.004284886177629232, + 0.015138935297727585, + 0.02088695392012596, + -0.01053305622190237, + 0.006300424691289663, + -0.0024932960513979197, + 0.012556060217320919, + 0.014914986677467823, + -0.008151734247803688, + -0.01354143489152193, + -0.020513705909252167, + -0.04075867310166359, + 0.027590487152338028, + 0.0029953145422041416, + 0.0215289406478405, + -0.006360144354403019, + 0.033233996480703354, + 0.021797679364681244, + 0.006878959015011787, + -0.03995245695114136, + -0.012623244896531105, + 0.01396693754941225, + -0.002429843880236149, + -0.01972242072224617, + -0.0015088546788319945, + -0.016228819265961647, + 0.0042736888863146305, + 0.004027345217764378, + 0.035712361335754395, + -0.02199176698923111, + 0.02712765894830227, + -0.018990853801369667, + -0.004848490469157696, + -0.02011059783399105, + -0.007084245327860117, + 0.008398078382015228, + 0.008681746199727058, + 0.0016525551909580827, + -0.024022236466407776, + -0.011600545607507229, + 0.01579585112631321, + 0.013123396784067154, + 0.007364181336015463, + -0.028904318809509277, + -0.008681746199727058, + -0.005703228060156107, + -0.0011981258867308497, + -0.003368562553077936, + 0.009010205045342445, + -0.005449419841170311, + 0.008315963670611382, + -0.0010320305591449142, + -0.0345478281378746, + -0.0034880018793046474, + 0.01593022048473358, + -0.03616026043891907, + 0.002176035428419709, + -0.022857703268527985, + 0.01809505932033062, + 0.0012662435183301568, + 0.02535099908709526, + -0.026007914915680885, + -0.0026761875487864017, + 0.0026687225326895714, + -0.00968205090612173, + -0.004732783418148756, + 0.013078607618808746, + -0.0009303204715251923, + 0.01439244020730257, + -0.009779095649719238, + 0.005774145480245352, + 0.0361303985118866, + -0.01319058146327734, + 0.0004569954180624336, + -0.03424922749400139, + 0.01094362884759903, + 0.012048442848026752, + 0.012332111597061157, + 0.008831045590341091, + -0.009831350296735764, + 0.0009401182178407907, + 0.019632840529084206, + 0.032099321484565735, + 0.019498471170663834, + 0.0077934167347848415, + -0.0049977898597717285, + 0.021409500390291214, + -0.0002927663445007056, + 0.009361057542264462, + 0.005501674488186836, + 0.017363492399454117, + 0.022723333910107613, + 0.030531680211424828, + 0.028590790927410126, + -0.025082260370254517, + -0.004389395471662283, + 0.00982388574630022, + -0.0003163276123814285, + 0.005673368461430073, + 0.005535266827791929, + 0.0017393353627994657, + -0.01636318862438202, + 0.007681442424654961, + -0.002536219544708729, + -0.009928395040333271, + -0.02545550838112831, + 0.00029673209064640105, + 0.00894302036613226, + 0.029262637719511986, + 0.016900666058063507, + 0.004060937557369471, + -0.030397310853004456, + -0.01001797430217266, + -0.030038991943001747, + -0.012712824158370495, + 0.030233081430196762, + -0.030606329441070557, + -0.00018370796169620007, + -0.002302939770743251, + -0.007345519028604031, + 0.004650669172406197, + -0.007640385068953037, + -0.0009279876248911023, + 0.0017775932792574167, + 0.015706272795796394, + 0.01363101415336132, + 0.004598414525389671, + 0.008793720975518227, + 0.026231864467263222, + -0.008995275013148785, + -0.013377205468714237, + -0.005800272803753614, + 0.026082564145326614, + 0.046551480889320374, + -0.028351912274956703, + -0.010040368884801865, + 0.0010338966967538, + 0.008704141713678837, + -0.007129035424441099, + 0.012048442848026752, + 0.0045610894449055195, + 0.007520945742726326, + -0.012548594735562801, + -0.0138624282553792, + 0.0012541130417957902, + 0.011518430896103382, + 0.002640729071572423, + 0.038190726190805435, + -0.008592166937887669, + 0.02284277230501175, + -0.029770255088806152, + -0.012705359607934952, + -0.02240980602800846, + 2.197205503762234e-5, + -0.006647545378655195, + 0.012332111597061157, + 0.0014995235251262784, + -0.003907905891537666, + 0.0279338750988245, + -0.02248445525765419, + -0.02429097518324852, + -0.010786864906549454, + 0.028993899002671242, + -0.007293264381587505, + -0.004919407423585653, + -0.007080513052642345, + -0.017617302015423775, + 0.004113192204385996, + -0.017871109768748283, + 0.017781531438231468, + 0.007375379092991352, + -0.005460617132484913, + -0.02057342603802681, + 0.0006536504370160401, + -0.017288843169808388, + -0.026291582733392715, + 0.008547377772629261, + -0.02333546057343483, + 0.017557581886649132, + 0.00851751770824194, + -0.004299816209822893, + 0.006576628424227238, + -0.014511879533529282, + -0.011406456120312214, + 0.010219528339803219, + -0.0007940849754959345, + 0.013444390147924423, + -0.00188770133536309, + -0.027112729847431183, + 0.006222042720764875, + -0.05924190953373909, + -0.015706272795796394, + -0.0043072812259197235, + 0.0016357590211555362, + 0.0019054306903854012, + 0.011316876858472824, + -0.015161330811679363, + 0.02230529673397541, + 0.011167577467858791, + 0.012473945505917072, + -3.9161870518000796e-5, + 0.0027359072118997574, + 0.0026388627011328936, + 0.008315963670611382, + 0.018184639513492584, + -0.01749786175787449, + -0.01603473164141178, + -0.02046891674399376, + -0.0006340548861771822, + 0.015631623566150665, + 0.0017514658393338323, + 0.010682355612516403, + -0.027247099205851555, + 0.019453682005405426, + 0.0035458551719784737, + 0.006091406103223562, + -0.0049977898597717285, + 0.009689516387879848, + 0.0068341693840920925, + 0.0017757270252332091, + -0.003945230506360531, + 0.0242611151188612, + -0.005751750431954861, + -0.005632311105728149, + 0.0248881708830595, + 0.008360753767192364, + 0.04514806717634201, + -0.013735523447394371, + 0.01770688220858574, + -0.009189363569021225, + 0.008293569087982178, + -0.001318498281762004, + -0.0018503766041249037, + 0.002685518702492118, + -0.00392283545807004, + 0.01010755356401205, + 0.0006405867170542479, + -0.007681442424654961, + 0.008592166937887669, + -0.0005981298163533211, + -0.004680528771132231, + 0.021290061995387077, + 0.03478670492768288, + -0.02188725769519806, + 0.017662091180682182, + -0.022962212562561035, + -0.012556060217320919, + -0.005132158752530813, + -0.0165423471480608, + -0.0035551865585148335, + -0.02496282011270523, + 0.0008384081302210689, + -0.014668643474578857, + 0.011727449484169483, + -0.0014416701160371304, + 0.007464958354830742, + -0.0020118062384426594, + 0.017617302015423775, + 0.025769036263227463, + -0.026784271001815796, + -0.028844598680734634, + -0.0037921988405287266, + 0.012638174928724766, + -0.008778790943324566, + -0.04481961205601692, + 0.003611173713579774, + 0.03499572351574898, + -0.00585999246686697, + -0.03183058276772499, + -0.01791590079665184, + 0.014765688218176365, + -0.02397744730114937, + -0.0053187827579677105, + -0.011846888810396194, + 0.011301946826279163, + -0.001974481390789151, + 0.032875675708055496, + -0.019349172711372375, + 0.00977163016796112, + -0.018154779449105263, + -0.007617990020662546, + 0.035712361335754395, + -0.019707489758729935, + 0.012033512815833092, + 0.007603059988468885, + 0.0070693157613277435, + -0.01120490301400423, + -0.021200481802225113, + -0.0060764760710299015, + -0.017662091180682182, + 0.0021909652277827263, + -0.019811999052762985, + 0.01610938087105751, + -0.009107248857617378, + -0.02906854823231697, + 0.007823276333510876, + 0.001689879922196269, + -0.03359231352806091, + -0.02733667753636837, + 0.011115322820842266, + 0.013593689538538456, + -0.006408666726201773, + -0.010570380836725235, + -0.011145182885229588, + 0.002543684560805559, + 0.009532751515507698, + 0.0032808491960167885, + 0.005669635720551014, + 0.005800272803753614, + -0.02449999377131462, + -0.01534795481711626, + -0.007416435983031988, + -0.0032024672254920006, + -0.011010813526809216, + -0.010368827730417252, + -0.006236972752958536, + 0.015377813950181007, + 0.006151125766336918, + 0.006755787413567305, + 0.011391527019441128, + -0.0020006089471280575, + -0.002455971436575055, + -0.005643508397042751, + 0.008659351617097855, + -0.025649597868323326, + 0.00132782943546772, + 0.017557581886649132, + -0.0011850621085613966, + 0.008592166937887669, + 0.0021797679364681244, + -0.00745376106351614, + -0.015751061961054802, + 0.009637261740863323, + 0.008995275013148785, + -0.020528635010123253, + 0.012332111597061157, + 0.0003457208804320544, + 0.08898230642080307, + -0.0003830456698779017, + 0.009234153665602207, + 0.0075582703575491905, + 0.0025474170688539743, + 0.009204293601214886, + -0.004915675148367882, + 0.00553153408691287, + 0.013444390147924423, + -0.0106599610298872, + 0.0023327996022999287, + -0.01569134183228016, + -0.00818159431219101, + 0.009054994210600853, + -0.022574033588171005, + -0.018005479127168655, + -0.00948796235024929, + 0.0009256548364646733, + 0.01148857083171606, + 0.035921379923820496, + -0.0044939047656953335, + -0.014108771458268166, + 0.008129339665174484, + 0.01667671650648117, + -0.0075582703575491905, + 0.014370044693350792, + -0.012093232944607735, + 0.007935251109302044, + 0.024873241782188416, + 0.033622171729803085, + 0.0012139888713136315, + -0.0048298281617462635, + -0.005050044506788254, + 0.012556060217320919, + -0.0013586224522441626, + 0.03616026043891907, + -0.004971662536263466, + 0.004109459463506937, + 0.009883604943752289, + 0.0020099401008337736, + -0.0010600241366773844, + -0.00947303231805563, + 0.034726984798908234, + 0.018617605790495872, + -0.009734305553138256, + -0.016422908753156662, + 0.013840032741427422, + 0.0008094814256764948, + -0.005016452167183161, + 0.011772239580750465, + -0.011421386152505875, + -0.025336068123579025, + -0.004923140164464712, + -0.0041393195278942585, + 0.004818630870431662, + 0.0033573650289326906, + 0.01108546368777752, + -0.03768311068415642, + 0.0005057509406469762, + 0.007408971432596445, + -0.01276507880538702, + 0.005139623768627644, + -0.020065808668732643, + -0.02803838439285755, + 0.0033181740436702967, + -0.006837902124971151, + -0.018289148807525635, + 0.023529548197984695, + -0.010712215676903725, + 0.01628853939473629, + -0.007341786753386259, + -0.02206641621887684, + -0.006811774801462889, + -0.033622171729803085, + -0.0034991991706192493, + 0.022648684680461884, + -0.004549892153590918, + 0.023021932691335678, + -0.005053776782006025, + -0.002023003762587905, + 0.010525591671466827, + 0.0014621986774727702, + -0.00048288950347341597, + -0.014370044693350792, + -0.0061436607502400875, + -0.021379640325903893, + 0.017109684646129608, + -0.014728362672030926, + 0.026246793568134308, + -0.013996796682476997, + -0.02826233208179474, + 0.005266528110951185, + 0.017079824581742287, + -0.004116924479603767, + -0.014989636838436127, + -0.019214803352952003, + -0.007897925563156605, + -0.006849099416285753, + 0.016900666058063507, + 0.009570077061653137, + -0.0039713578298687935, + -0.008054690435528755, + -0.010070228949189186, + 0.009308802895247936, + 0.009674586355686188, + 0.008495123125612736, + 0.017303774133324623, + 0.010674890130758286, + -0.016228819265961647, + -0.020244967192411423, + -0.0073380540125072, + 0.004113192204385996, + -0.004374465439468622, + 0.006416131742298603, + 0.00691255135461688, + 0.009599936194717884, + 0.011802099645137787, + -0.024977751076221466, + 0.011316876858472824, + -0.009689516387879848, + -0.019558191299438477, + -0.019677629694342613, + -0.011846888810396194, + -0.00885344110429287, + -0.005856259725987911, + 0.010279247537255287, + -0.00871160626411438, + 0.0036522308364510536, + -0.017677022144198418, + 0.004702923819422722, + 0.008405542932450771, + -0.005154553800821304, + 0.021514009684324265, + -0.01693052612245083, + -0.0005990629433654249, + -0.02457464300096035, + 0.0059682345017790794, + 0.008420472964644432, + 0.02237994596362114, + -0.022887563332915306, + 0.004057204816490412, + 0.0012877053814008832, + 0.00991346500813961, + 0.024619432166218758, + 0.010331502184271812, + 0.031113946810364723, + 0.0004436984600033611, + -0.01731870323419571, + 0.024335764348506927, + 0.010824189521372318, + 0.02591833658516407, + -0.01745307259261608, + 0.014638783410191536, + -0.018856484442949295, + 0.00281988806091249, + -0.011003348976373672, + -0.007326856721192598, + 0.03356245160102844, + -0.007487353403121233, + -0.0020771247800439596, + -0.0032808491960167885, + -0.0064795841462910175, + -0.0027769645676016808, + -0.016228819265961647, + -0.003127817530184984, + 0.006961073726415634, + 0.009435707703232765, + 0.017930829897522926, + 0.011122788302600384, + -0.009532751515507698, + -0.02524648979306221, + 0.00030956248519942164, + -0.011182507500052452, + -0.02708286978304386, + 0.011107858270406723, + -0.009316268377006054, + 0.0007712235092185438, + -0.012839728966355324, + -0.010040368884801865, + 0.0042736888863146305, + 0.0024261116050183773, + -0.0114736407995224, + 0.01961791142821312, + 0.004460312891751528, + 0.03038238175213337, + -0.004191574174910784, + 0.013899752870202065, + -0.01788604073226452, + -0.0019427554216235876, + -0.0025082260835915804, + -0.013466784730553627, + 0.011234762147068977, + 0.005173216108232737, + -0.004635739140212536, + -0.011107858270406723, + -0.014541738666594028, + -0.008659351617097855, + 0.013459320180118084, + -0.014691038057208061, + -0.00308116152882576, + -0.019707489758729935, + -0.009779095649719238, + 0.00842793844640255, + 0.006367609370499849, + -0.0012877053814008832, + -7.354150147875771e-5, + -0.014407370239496231, + -0.016616998240351677, + -0.0018802364356815815, + 0.018333937972784042, + -0.05150821432471275, + -0.019483542069792747, + -0.0032061997335404158, + 0.009069924242794514, + -0.010615170933306217, + 0.01522851549088955, + -0.006199648138135672, + 0.028023453429341316, + -0.0033816262148320675, + 0.007718767039477825, + 0.020349476486444473, + 0.0138624282553792, + -0.03159170225262642, + 0.00010684222070267424, + 0.004546159878373146, + -0.0008971946663223207, + 0.012473945505917072, + 0.02656032145023346, + 0.0017663957551121712, + 0.011973793618381023, + 0.023425038903951645, + -0.00047682420699857175, + -0.0022712135687470436, + -0.0015331158647313714, + -0.017258983105421066, + 0.02411181665956974, + 0.010816724970936775, + -0.0005234802374616265, + 0.009129644371569157, + 0.014593993313610554, + -0.002900136401876807, + 0.0026090028695762157, + -0.016348259523510933, + -0.004378198180347681, + 0.008330893702805042, + -0.003127817530184984, + 0.005998094100505114, + -0.014638783410191536, + 0.00970444642007351, + -2.3765394871588796e-5, + -0.014093841426074505, + -0.005848794709891081, + -0.008905695751309395, + 0.036667875945568085, + 0.021409500390291214, + 0.026112424209713936, + -0.0066587431356310844, + -0.00405347254127264, + -0.02588847652077675, + -0.024410413578152657, + 0.003379759844392538, + -0.005132158752530813, + -0.002105118241161108, + -0.010719680227339268, + 0.0016954786842688918, + 0.0016590870218351483, + -0.007994970306754112, + 0.0033517663832753897, + 0.004512567538768053, + 0.0008496055961586535, + 0.010637565515935421, + 0.007476155646145344, + 0.0042736888863146305, + -0.009696980938315392, + -0.005725623108446598, + -0.006124998442828655, + -0.006778182461857796, + 0.0006741790566593409, + -0.012914378196001053, + -0.019602980464696884, + 0.0009489828371442854, + -0.018617605790495872, + 0.014810477383434772, + -0.014220746234059334, + 0.0028945375233888626, + -0.0071700927801430225, + 0.005079904105514288, + 0.03445824980735779, + -0.008659351617097855, + 0.008256244473159313, + -0.007017061114311218, + -0.00744629604741931, + 0.022499384358525276, + -0.020483845844864845, + 0.014937382191419601, + 0.022245576605200768, + -0.003911638166755438, + 0.01171998493373394, + 0.014459624886512756, + 0.019184943288564682, + -0.003370428690686822, + -0.019319312646985054, + -0.010727145709097385, + -0.0076590473763644695, + 0.003471205709502101, + 0.006976003758609295, + 0.01933424174785614, + 0.00318753719329834, + -0.002674321411177516, + -0.004434185102581978, + -0.024619432166218758, + 0.0021611053962260485, + -0.006688602734357119, + -0.008748930878937244, + 0.002316003432497382, + -0.01542260404676199, + -0.0010544253746047616, + 0.03968371823430061, + 0.002502627205103636, + 0.013601154088973999, + -0.009749235585331917, + 0.015661483630537987, + 0.0024018504191190004, + -0.015392743982374668, + 0.007517213001847267, + 0.014967241324484348, + 0.0014258070150390267, + -0.010973488911986351, + -0.02106611244380474, + -0.029232777655124664, + 0.0028460153844207525, + -0.000806215510237962, + -0.008077085018157959, + -0.013519039377570152, + -0.014340185560286045, + 0.008763860911130905, + -0.012264926917850971, + -0.0055203367955982685, + -0.016661787405610085, + -0.005971966776996851, + -0.02163344994187355, + 0.023007001727819443, + -0.011115322820842266, + 0.00108708452899009, + -0.0024205127265304327, + 0.03699633479118347, + 0.00377540267072618, + -0.0038164600264281034, + 0.003982555121183395, + 0.01001797430217266, + -0.0001583970879437402, + 0.007636652328073978, + 0.01858774572610855, + -0.02336532063782215, + -0.0007115038461051881, + -0.01301142293959856, + 0.024022236466407776, + 0.030785487964749336, + -0.005359840113669634, + -0.016333328559994698, + -0.0031707410234957933, + -0.004583484493196011, + 0.00021543403272517025, + -0.006020489148795605, + 0.0017999880947172642, + -0.01593022048473358, + 0.003915370907634497, + -0.011451246216893196, + -0.0059682345017790794, + 0.030113643035292625, + -0.010488267056643963, + -0.010547986254096031, + -0.02464929223060608, + -0.004646936431527138, + -0.013877357356250286, + 0.021006392315030098, + -0.004411790519952774, + 0.0019520865753293037, + -0.015482324175536633, + 0.010637565515935421, + 0.013772848062217236, + 0.023111511021852493, + 0.0017757270252332091, + -0.010495731607079506, + 0.002504493575543165, + -0.007539608050137758, + 0.020349476486444473, + 0.01760237291455269, + 0.008062154985964298, + -0.013369740918278694, + -0.004128122236579657, + 0.0004061404033564031, + 0.0008514718501828611, + 0.004281153436750174, + -0.00011803965753642842, + -0.008592166937887669, + -0.018751975148916245, + 0.023962516337633133, + -0.003997485153377056, + -0.0006438526907004416, + -0.0015508451033383608, + -0.0019334242679178715, + 0.005535266827791929, + 0.007838206365704536, + 0.012100697495043278, + -0.018050270155072212, + 0.01425060536712408, + 0.019453682005405426, + 0.01693052612245083, + -0.008547377772629261, + 0.0008934622164815664, + 0.010719680227339268, + -0.018005479127168655, + -0.014026656746864319, + 0.02217092737555504, + 0.0068677617236971855, + -0.0005752683500759304, + -0.012242531403899193, + 0.026784271001815796, + 0.003986287862062454, + 0.01784125156700611, + -0.010682355612516403, + -0.0007544273394159973, + -0.009958254173398018, + 0.007800881750881672, + -0.006240705028176308, + 0.04404325410723686, + -0.010831655003130436, + -0.0021499081049114466, + -0.00020703596237581223, + 0.0036428996827453375, + -0.019602980464696884, + -0.0017775932792574167, + 0.006770717445760965, + -0.01414609607309103, + 0.0021946977358311415, + 0.004456580150872469, + -0.012630709446966648, + 0.009935859590768814, + 0.006524373777210712, + -0.024425344541668892, + -0.008995275013148785, + -0.01760237291455269, + 0.009025135077536106, + 0.007397773675620556, + -0.0007922187214717269, + 0.008569772355258465, + 0.005333712790161371, + -0.0009732439648360014, + 0.0012289187870919704, + -0.008831045590341091, + 0.0011850621085613966, + 0.010794329456984997, + 0.019961299374699593, + -0.006393736694008112, + -0.014265535399317741, + 0.009405847638845444, + 0.020439056679606438, + 0.02903868816792965, + -0.021275131031870842, + 0.008756396360695362, + 0.0021069846116006374, + -0.002418646588921547, + 0.0093983830884099, + 0.008189059793949127, + -0.0059421067126095295, + 0.010189668275415897, + 0.009674586355686188, + -0.007345519028604031, + 0.0023439968936145306, + 0.001559243188239634, + 0.008510052226483822, + 0.02751583606004715, + -0.0030158432200551033, + 0.013593689538538456, + 0.004706656094640493, + -0.001761730178259313, + 0.004960464779287577, + 0.009338662959635258, + -0.003990020137280226, + 0.0022992072626948357, + 0.00784567091614008, + -0.013324950821697712, + -0.005479279439896345, + 0.019035644829273224, + -0.003443212015554309, + 0.0027676334138959646, + 0.006468386389315128, + -0.009271478280425072, + 0.02036440744996071, + 0.011742379516363144, + 0.02475380152463913, + -0.0010031037963926792, + 0.003073696745559573, + 0.008241314440965652, + -0.01127955224364996, + 0.00801736582070589, + 0.0006671806331723928, + 0.011428851634263992, + -0.018184639513492584, + -0.013489180244505405, + 0.011331806890666485, + -0.003900440875440836, + -0.006599023472517729, + 0.0035738488659262657, + 0.012264926917850971, + 0.00894302036613226, + 0.002399984048679471, + 0.009196829050779343, + -0.006804309785366058, + 0.003689555684104562, + -0.0153330247849226, + -0.006849099416285753, + 0.017975619062781334, + 0.005139623768627644, + 0.00869667623192072, + 0.007830741815268993, + -0.004882082808762789, + 0.004971662536263466, + -0.014489484019577503, + -0.014153561554849148, + -0.02617214433848858, + -0.013854962773621082, + 0.02627665363252163, + 0.01590036228299141, + -0.007565735373646021, + 0.01308607216924429, + 0.0039713578298687935, + 0.016557278111577034, + -0.01023445837199688, + -0.01760237291455269, + 0.008875835686922073, + -0.016124309971928596, + -0.014071446843445301, + 0.016826016828417778, + 0.018856484442949295, + 0.022574033588171005, + 0.02142443135380745, + 0.0155420433729887, + -0.004422987811267376, + 0.002799359383061528, + 0.0033088428899645805, + -0.005094834137707949, + 0.009958254173398018, + -0.005777877755463123, + -0.020230038091540337, + 0.0016301602590829134, + 0.0040385425090789795, + 0.02060328610241413, + -0.004635739140212536, + -0.005751750431954861, + -0.006154858041554689, + 0.0262020044028759, + -0.0021163157653063536, + 0.0018653065199032426, + -0.021394571289420128, + -0.0032752505503594875, + 0.007058118004351854, + -0.015019495971500874, + 0.01001797430217266, + 0.007300729397684336, + 0.008435402996838093, + -0.015452464111149311, + -0.012548594735562801, + -0.022155996412038803, + 0.007800881750881672, + 0.029665743932127953, + -0.0024149140808731318, + -0.009084854274988174, + 0.019946368411183357, + -0.024709012359380722, + 0.002862811554223299, + -0.017751671373844147, + 0.0011178775457665324, + -0.016273610293865204, + -0.013840032741427422, + -0.019588051363825798, + -0.008368218317627907, + 0.009338662959635258, + -0.020991463214159012, + 0.006550501100718975, + -0.013257766142487526, + -0.0428488627076149, + -0.016333328559994698, + -0.0035757150035351515, + 0.005602451507002115, + -0.0037530078552663326, + 0.00019770476501435041, + 0.02659018151462078, + -0.012264926917850971, + 0.02269347384572029, + 0.008024830371141434, + -0.009458102285861969, + 0.00031446138746105134, + 0.009077389724552631, + 0.003596243681386113, + -0.012645639479160309, + 0.016512488946318626, + -0.020349476486444473, + -0.0004052072763442993, + -0.011585615575313568, + -0.002756435889750719, + 0.0036466321907937527, + 0.005692030768841505, + 0.011548290960490704, + 0.01395200751721859, + 0.005789075046777725, + -0.011839424259960651, + -0.0011300081387162209, + -0.019274523481726646, + 0.005789075046777725, + -0.004400593228638172, + -0.0075918626971542835, + -0.0032472568564116955, + -0.006528106052428484, + -0.02160358987748623, + 0.014317790046334267, + 0.0038892433512955904, + 0.0458945631980896, + -0.012138022109866142, + -0.0017607971094548702, + -0.002071525901556015, + 0.016557278111577034, + 0.0001544313272461295, + -0.004094529896974564, + -0.006255635060369968, + -0.013220441527664661, + 0.001959551591426134, + -0.0021984302438795567, + -0.013772848062217236, + 0.014093841426074505, + 0.007468691095709801, + 0.00015851372154429555, + -0.003866848535835743, + -0.0070693157613277435, + 0.009480496868491173, + -0.016049660742282867, + -0.0020248699001967907, + 0.010495731607079506, + -0.02532113902270794, + 0.021290061995387077, + -0.005184413865208626, + -0.011152648366987705, + 0.005714425817131996, + 0.011018279008567333, + -0.014982171356678009, + -0.01664685644209385, + 0.0013343612663447857, + -0.005240400787442923, + 0.005901049822568893, + -0.010040368884801865, + -0.00915203895419836, + 6.479350849986076e-5, + -0.010271782986819744, + 0.014564134180545807, + 0.005102299153804779, + 0.002758302027359605, + -0.00340775353834033, + 0.01894606463611126, + -0.017005175352096558, + -0.025679457932710648, + -0.01590036228299141, + 0.01897592470049858, + 0.01108546368777752, + 0.006352679803967476, + -0.02857585996389389, + 0.021648379042744637, + -0.001955819083377719, + -0.012974097393453121, + -0.00393030047416687, + -0.00234586326405406, + 0.004878350533545017, + -0.02978518418967724, + 0.007875530980527401, + -0.006195915397256613, + -0.013974402099847794, + 0.01106306817382574, + -0.007498550694435835, + 0.005785342771559954, + -0.04075867310166359, + -0.01664685644209385, + 0.02070779539644718, + -0.012817333452403545, + -0.029471656307578087, + -1.7408516214345582e-5, + -0.003027040744200349, + -0.0016385583439841866, + 0.008629491552710533, + 0.005550196394324303, + -0.0025623468682169914, + -0.02514198049902916, + -0.003394689876586199, + -0.0006158590549603105, + -0.017677022144198418, + 0.0026948500890284777, + 0.00775609165430069, + 0.007651582360267639, + -0.010645030997693539, + -0.01437751017510891, + 0.011749844998121262, + -0.03884764388203621, + -0.00030186426010914147, + 0.009958254173398018, + 0.004195306450128555, + 0.02149908058345318, + -0.000994705711491406, + 0.008577236905694008, + -0.012391830794513226, + 0.0035010655410587788, + 0.012190276756882668, + 0.010727145709097385, + -0.010294177569448948, + 0.003504798049107194, + -0.01610938087105751, + 0.0009452503873035312, + -0.03699633479118347, + 0.013145791366696358, + 0.012123092077672482, + -0.004747713450342417, + 0.00478130578994751, + 0.004161714110523462, + 0.006300424691289663, + -0.025545088574290276, + 0.003952695522457361, + -0.01042854692786932, + -0.019349172711372375, + 0.010973488911986351, + 0.007371646352112293, + -0.0129964929074049, + 0.009189363569021225, + 0.008039760403335094, + -0.006613953039050102, + 0.004169179126620293, + 0.013563829474151134, + 0.026366233825683594, + -0.0187967661768198, + -0.0031558112241327763, + 0.002230156445875764, + 0.003543989034369588, + 0.006035418715327978, + -0.007502283435314894, + -0.013332415372133255, + -0.029695603996515274, + 0.015392743982374668, + 0.001617096597328782, + -0.012205206789076328, + 0.006083941087126732, + 0.016945455223321915, + -0.0033499000128358603, + -0.008734001778066158, + -0.011018279008567333, + -0.016557278111577034, + 0.00392283545807004, + -0.013496644794940948, + 0.006778182461857796, + 0.006199648138135672, + 0.012078302912414074, + -0.02341010980308056, + 0.012063372880220413, + 0.009174433536827564, + 0.022678542882204056, + 0.0008444734266959131, + 0.01148857083171606, + 0.008136805146932602, + 0.0005925310542806983, + 0.028695300221443176, + -0.004620809108018875, + -0.014705968089401722, + -0.00026990490732714534, + 0.020692864432930946, + 0.0021256469190120697, + 0.005337445065379143, + 0.005068706814199686, + -0.004176644142717123, + -0.002963588573038578, + -0.004852223210036755, + -0.005822667386382818, + -0.0016758831916376948, + 0.02421632595360279, + 0.027172448113560677, + 0.010003044269979, + 0.006770717445760965, + -0.007352984044700861, + 0.0010059031192213297, + -0.013310020789504051, + -0.01352650485932827, + 0.020842164754867554, + 0.027814434841275215, + 0.009711910970509052, + 0.012787473388016224, + 0.0153330247849226, + 0.005154553800821304, + -0.020618215203285217, + -0.013608619570732117, + 0.021394571289420128, + -0.004191574174910784, + 0.007192487362772226, + -0.00897288043051958, + -0.01749786175787449, + -0.013563829474151134, + -0.004008682910352945, + 0.004370733164250851, + -0.010406152345240116, + -0.033263854682445526, + -0.013056212104856968, + 0.032845817506313324, + -0.0071812900714576244, + 0.007166360039263964, + 0.024067025631666183, + -0.0003912104875780642, + -0.013496644794940948, + -0.019423821941018105, + -0.013593689538538456, + 0.003878045827150345, + 0.013339880853891373, + 0.01667671650648117, + -0.00010334301623515785, + -0.002510092221200466, + -0.006281762383878231, + 0.02067793533205986, + 0.0024503725580871105, + 0.008875835686922073, + 0.025127049535512924, + -0.008569772355258465, + -0.014668643474578857, + 0.01564655266702175, + 0.0013875490985810757, + -0.003114753868430853, + -0.013265230692923069, + -0.02269347384572029, + 0.013153256848454475, + 0.005804005078971386, + 0.0027545697521418333, + 0.004617076832801104, + 0.010040368884801865, + 0.0014659311855211854, + -0.007711302023380995, + 0.003911638166755438, + -0.010555450804531574, + 0.004721586126834154, + -0.0022917422465980053, + -0.012757614254951477, + 0.008599632419645786, + 0.011802099645137787, + 0.01076447032392025, + -0.012317181564867496, + -0.01954326033592224, + 0.0028852063696831465, + -0.0009293873445130885, + -0.003915370907634497, + 0.02028975635766983, + 0.005483012180775404, + 0.024798592552542686, + 0.02736653760075569, + -0.0138624282553792, + 0.014728362672030926, + -0.004501369781792164, + -0.012794938869774342, + 0.0012233200250193477, + 0.010212062858045101, + 0.0073492517694830894, + 0.018080130219459534, + -0.0034245497081428766, + -0.013780313543975353, + -0.0001180979743367061, + -0.0018037206027656794, + -0.02971053496003151, + -0.007711302023380995, + 0.004116924479603767, + -0.0006275230553001165, + -0.005692030768841505, + -0.0022954747546464205, + -0.005889852065593004, + 0.009077389724552631, + 0.0019464879296720028, + -0.008801186457276344, + 0.002108850749209523, + -0.0059346421621739864, + 0.030442100018262863, + 0.014967241324484348, + -0.0077262320555746555, + -0.010637565515935421, + 0.003336836351081729, + 0.00851751770824194, + -0.00574428541585803, + -0.008353288285434246, + 0.023843077942728996, + -0.025231558829545975, + 0.004512567538768053, + -0.0030774290207773447, + 0.018572816625237465, + 0.006770717445760965, + 0.013407065533101559, + 0.010286713019013405, + -0.005374770145863295, + -0.008689211681485176, + 0.02790401503443718, + -0.006393736694008112, + -0.0106599610298872, + 0.005994361825287342, + 0.003428282216191292, + 0.017333634197711945, + -0.004475242458283901, + -0.01990157924592495, + -0.013489180244505405, + -0.00616232305765152, + -0.06688603013753891, + -0.0032789830584079027, + -0.009428242221474648, + 0.015870502218604088, + -0.009816420264542103, + -0.014340185560286045, + -0.011884213425219059, + -0.01731870323419571, + -0.011219832114875317, + 0.011712519451975822, + 0.011518430896103382, + -0.012623244896531105, + -0.018050270155072212, + -0.024529853835701942, + -0.007050653453916311, + 0.010346432216465473, + 7.06255086697638e-5, + -0.00012118893209844828, + -0.009196829050779343, + 0.012115627527236938, + -0.0066251507960259914, + 0.00031399482395499945, + -0.0015116541180759668, + -0.014444694854319096, + 0.005699495784938335, + 0.003519727848470211, + 0.013183116912841797, + -0.018901275470852852, + -0.013668338768184185, + 0.014362580142915249, + -0.004579752217978239, + 0.0007838206365704536, + -0.004643204156309366, + 0.006964806001633406, + 0.02082723379135132, + 0.027291888371109962, + -0.016198959201574326, + -0.0033331038430333138, + 0.001858774689026177, + 0.015467394143342972, + -0.007868066430091858, + -0.010137413628399372, + -0.021976837888360023, + 0.007416435983031988, + -0.019871719181537628, + 0.009234153665602207, + 0.012227602303028107, + 0.009323732927441597, + 0.008062154985964298, + -0.0031987347174435854, + -0.01278000883758068, + -0.013795243576169014, + -0.022648684680461884, + -0.008651887066662312, + -0.017557581886649132, + -0.029680674895644188, + 0.010637565515935421, + -0.01742321252822876, + 0.016064589843153954, + -0.01688573509454727, + -0.005232935771346092, + -0.011339271441102028, + -0.032099321484565735, + 0.006438526790589094, + 0.02134978026151657, + 0.0048298281617462635, + -0.002273079939186573, + 0.02124527096748352, + -0.01423567533493042, + 0.01845337636768818, + -0.013071142137050629, + 0.01657220721244812, + -0.021409500390291214, + 0.011339271441102028, + -0.01032403763383627, + -0.01120490301400423, + -0.00021216811728663743, + -0.009069924242794514, + 0.01799055002629757, + 0.015452464111149311, + 0.012473945505917072, + 0.008950484916567802, + 0.016169099137187004, + -0.02067793533205986, + -0.0032117983791977167, + -0.015280770137906075, + -0.012309716083109379, + 0.0008715338772162795, + -0.011690124869346619, + -0.0062444377690553665, + 0.0006317220977507532, + 0.028814740478992462, + -0.01625867933034897, + -0.015467394143342972, + 0.011802099645137787, + 0.03714563325047493, + -0.019379032775759697, + 0.009756701067090034, + 0.012294786982238293, + -0.021095972508192062, + 0.003655963344499469, + -0.012757614254951477, + -0.039355259388685226, + 0.0463126003742218, + 0.040101755410432816, + 0.004814898129552603, + -0.01954326033592224, + -0.012809868901968002, + -0.005733088124543428, + 0.01819956861436367, + 0.0019688827451318502, + 0.005561394151300192, + -0.0048634205013513565, + -0.00871160626411438, + -0.005986896809190512, + 0.005490476731210947, + 0.005076171830296516, + -0.0187967661768198, + 0.02155880071222782, + -0.0034450783859938383, + -0.0005897317314520478, + -0.019035644829273224, + -0.015176260843873024, + -0.009480496868491173, + 0.01308607216924429, + 0.003321906551718712, + 0.00014824941172264516, + -0.008920625783503056, + -0.02635130286216736, + -0.01405651681125164, + -0.014280465431511402, + -0.0068341693840920925, + 0.0025324870366603136, + 0.012451550923287868, + 0.014638783410191536, + -0.007614257745444775, + 0.015840642154216766, + 0.02808317355811596, + -0.00330137787386775, + -0.01179463416337967, + 0.008114409632980824, + 0.010040368884801865, + 0.03442838788032532, + -0.004755178466439247, + -0.03562278300523758, + -0.011391527019441128, + -0.00393030047416687, + 0.0046954588033258915, + 0.013071142137050629, + -0.005046311765909195, + -0.014541738666594028, + -0.00033568983781151474, + 0.0213199220597744, + 0.01258592028170824, + -0.012526200152933598, + 0.031711142510175705, + 0.01660206727683544, + -0.03598110005259514, + 0.002670588903129101, + -0.005441954825073481, + -0.0016394915292039514, + 0.0242611151188612, + -0.003926568198949099, + 0.022708402946591377, + -0.0007063716766424477, + 0.007132767699658871, + 0.0031651423778384924, + 0.021095972508192062, + 0.0029542571865022182, + -0.02372363768517971, + -0.0003352233034092933, + 0.011854354292154312, + 0.0018942331662401557, + 0.0042662238702178, + 0.013198046945035458, + -0.010122483596205711, + -0.004732783418148756, + -0.004900745116174221, + 0.00553153408691287, + -0.014437229372560978, + 0.020006088539958, + 0.012682964093983173, + -0.01019713282585144, + -0.019214803352952003, + -0.007293264381587505, + -0.018080130219459534, + 0.008860905654728413, + -0.0032080658711493015, + 0.015124006196856499, + 0.007513480726629496, + -0.011167577467858791, + 0.0030923590529710054, + 0.018289148807525635, + 0.013586224056780338, + -0.014399904757738113, + 0.01023445837199688, + -0.0025604807306081057, + -0.02067793533205986, + -0.01631839945912361, + 0.003543989034369588, + -0.0009116580476984382, + 0.007815811783075333, + -0.0011225431226193905, + -0.00776355667039752, + -0.027739785611629486, + -0.01845337636768818, + -0.016587138175964355, + 0.019110294058918953, + -0.001018966780975461, + 0.021021323278546333, + 0.0036802245303988457, + 0.011943933553993702, + 0.0059085143730044365, + 0.004460312891751528, + 0.004154249560087919, + 0.014429764822125435, + 0.005774145480245352, + -0.0041057271882891655, + -0.028441492468118668, + 0.028814740478992462, + 0.010555450804531574, + -0.012033512815833092, + -0.005303853191435337, + 0.01501203142106533, + 0.0019334242679178715, + 0.0005626712227240205, + 0.010861514136195183, + 0.003167008515447378, + 0.02279798313975334, + 0.018707185983657837, + 0.02093174308538437, + -0.025052400305867195, + 0.030262941494584084, + -0.01997622847557068, + 0.02341010980308056, + 0.0073380540125072, + 0.01095855887979269, + 0.01458652876317501, + 1.2524217709142249e-5, + 0.003409619675949216, + -2.3721655452391133e-5, + -0.0008645355119369924, + 0.004960464779287577, + 0.0001326196506852284, + 0.009726841002702713, + 0.004016147460788488, + 0.03863862529397011, + -0.011667730286717415, + -0.008084549568593502, + 0.004228898789733648, + -0.017438143491744995, + 0.019871719181537628, + -0.014026656746864319, + 0.02379828691482544, + 0.0030718303751200438, + -0.012182812206447124, + -0.026605112478137016, + -0.0045274971053004265, + 0.007371646352112293, + 0.010540521703660488, + -0.011175042949616909, + 0.010152343660593033, + -0.004012415185570717, + -0.009540216997265816, + -0.00991346500813961, + -0.00456855446100235, + -0.011973793618381023, + 0.008539912290871143, + 0.003258454380556941, + 0.005904782097786665, + 0.02266361378133297, + 0.002732174703851342, + 0.00234586326405406, + -0.024664223194122314, + -0.0006648478447459638, + -0.0028814738616347313, + -0.014026656746864319, + -0.010839119553565979, + 0.005281458143144846, + -0.004538694862276316, + -0.008554842323064804, + 0.0022581499069929123, + 0.010794329456984997, + 0.007278334349393845, + 0.018050270155072212, + -0.003368562553077936, + -0.017691951245069504, + 0.002370124217122793, + -0.0047962358221411705, + -0.025097189471125603, + -0.004773840773850679, + -0.007632920052856207, + -0.005636043846607208, + 0.012929308228194714, + -0.0016142972745001316, + -0.002461570082232356, + -0.005147088784724474, + 0.009443172253668308, + -0.018856484442949295, + -0.007696371991187334, + 0.007375379092991352, + -0.002316003432497382, + -0.01770688220858574, + 0.03639913722872734, + -0.0027694995515048504, + 0.012078302912414074, + -0.009846280328929424, + -0.005188146140426397, + -0.006027954164892435, + -0.002707913750782609, + -0.020901883020997047, + -0.0015583101194351912, + 0.02070779539644718, + -0.021827537566423416, + 0.005191878415644169, + 0.011667730286717415, + 0.0006671806331723928, + -0.026440883055329323, + 0.0021256469190120697, + -0.0016301602590829134, + -0.0014593993546441197, + -0.016840945929288864, + -0.005382235161960125, + 0.0064123994670808315, + -0.0027601683977991343, + -0.00488581508398056, + -0.014258070848882198, + -0.002814289415255189, + -0.013728058896958828, + 0.03260693699121475, + -0.002859079046174884, + 0.0312931053340435, + -0.012108162976801395, + 0.008599632419645786, + -0.02924770675599575, + -0.017229124903678894, + 0.014795547351241112, + 0.012496340088546276, + -0.01972242072224617, + 0.0038929758593440056, + 0.014855267480015755, + -0.011145182885229588, + -0.023604199290275574, + 0.010727145709097385, + 0.02155880071222782, + -0.012884518131613731, + -0.004001217894256115, + 0.023663917556405067, + 0.015751061961054802, + -0.0035309253726154566, + -0.0014024790143594146, + -0.010241922922432423, + -0.0062444377690553665, + -0.015392743982374668, + -0.021304991096258163, + 0.004251293838024139, + 0.0146761080250144, + 0.02049877494573593, + -0.011324342340230942, + -0.0008314097649417818, + 0.003941498231142759, + -0.010152343660593033, + 0.007132767699658871, + 0.0032771166879683733, + -0.005483012180775404, + 0.0066027557477355, + 0.023245880380272865, + -0.024918030947446823, + -0.0064459918066859245, + -0.03084520809352398, + 0.0013828835217282176, + 0.00767397740855813, + 0.0027825632132589817, + 0.0006923748878762126, + 0.01085404958575964, + -0.015840642154216766, + -0.01423567533493042, + -0.02266361378133297, + 0.0028068243991583586, + 0.015079216100275517, + 0.04879096895456314, + 0.034965865314006805, + 0.02245459519326687, + -0.02191711775958538, + -0.012205206789076328, + -0.0274113267660141, + -0.0005010853637941182, + -0.0002661724283825606, + -0.023454898968338966, + 0.0038201925344765186, + 0.01354143489152193, + 0.009017669595777988, + 0.0034600081853568554, + 0.01760237291455269, + -0.023201091215014458, + 0.005464349407702684, + 0.004617076832801104, + 0.00013518573541659862, + 0.008980344980955124, + 0.02917305752635002, + -0.02351461909711361, + 0.0015527113573625684, + 0.0017589308554306626, + -0.005505406763404608, + 0.011518430896103382, + -0.005057509522885084, + -0.009995579719543457, + -0.020125528797507286, + -0.006039151456207037, + 0.0029505249112844467, + 0.016811085864901543, + -0.005733088124543428, + -0.0180651992559433, + 0.01603473164141178, + 0.01561669260263443, + 0.02627665363252163, + 0.010801794938743114, + 0.005449419841170311, + 0.008905695751309395, + -0.01044347696006298, + -0.026067635044455528, + -0.012884518131613731, + 0.002534353407099843, + -0.006729660090059042, + -0.013130862265825272, + 0.0153330247849226, + 0.01372059341520071, + 0.005680833477526903, + -0.007058118004351854, + -0.014325255528092384, + 0.020424125716090202, + -0.0034264158457517624, + -0.00810694508254528, + 0.01396693754941225, + -0.012563524767756462, + 0.027276957407593727, + 0.010936164297163486, + -0.03690675273537636, + -0.011548290960490704, + -0.026814131066203117, + 0.016198959201574326, + 0.011772239580750465, + 0.010152343660593033, + 0.026679761707782745, + -0.006565431132912636, + 0.011219832114875317, + -0.005020184442400932, + -0.013339880853891373, + -0.0076665123924613, + 0.016826016828417778, + 0.039325401186943054, + 0.002215226413682103, + -0.020050877705216408, + -0.01713954471051693, + -0.018214497715234756, + -0.016333328559994698, + 0.004131854511797428, + -0.04434185475111008, + -0.016915595158934593, + 0.022215716540813446, + 0.004792503546923399, + -0.013474250212311745, + 0.010047834366559982, + -0.00775609165430069, + 0.0022245575673878193, + -0.021976837888360023, + -0.01972242072224617, + 0.010219528339803219, + 0.006203380413353443, + 0.002062194747850299, + -0.013183116912841797, + 0.006121265701949596, + -0.01582571119070053, + 0.02517184056341648, + 0.009510356932878494, + -0.012891983613371849, + -0.026231864467263222, + 0.011122788302600384, + 0.015855571255087852, + 0.01894606463611126, + -0.0007077713962644339, + 2.2365715267369524e-5, + 0.0010656227823346853, + 0.007651582360267639, + -0.0036802245303988457, + -0.011391527019441128, + 0.022394875064492226, + 0.01675136759877205, + -0.006916284095495939, + 0.00607274379581213, + 0.0020920545794069767, + 0.006516908761113882, + 0.002592206932604313, + 0.0012279857182875276, + -0.010368827730417252, + 0.026799200102686882, + -0.0014985904563218355, + -0.015989940613508224, + 0.017049964517354965, + 0.01667671650648117, + -0.013242836110293865, + 0.019573120400309563, + -0.001993143931031227, + -0.02556001767516136, + -0.00027457051328383386, + -0.011936469003558159, + -0.0066251507960259914, + 0.030367450788617134, + 0.0165423471480608, + -0.0013595555210486054, + -0.0007427633390761912, + -0.0027545697521418333, + -0.005393432453274727, + 0.006864029448479414, + -0.008913160301744938, + -0.008674281649291515, + -0.0008118142141029239, + 0.008032294921576977, + 0.017766600474715233, + -0.010473337024450302, + -0.0020677933935076, + 0.014310325495898724, + 0.017856180667877197, + 0.0014398038620129228, + 0.005184413865208626, + -0.0056211138144135475, + 0.006673672702163458, + 0.01118997298181057, + 0.00017822587687987834, + 0.006218310445547104, + -0.007528410758823156, + -0.023574339225888252, + 0.024305904284119606, + 0.001443536370061338, + -0.011518430896103382, + 0.011346736922860146, + -0.005154553800821304, + 0.000562204688321799, + 6.491014937637374e-5, + 0.005091101862490177, + 0.016631927341222763, + 0.0032416582107543945, + 0.010742074809968472, + 0.015586833469569683, + 0.01649755798280239, + -0.010570380836725235, + -0.0046730637550354, + -0.0006545835640281439, + 0.005266528110951185, + -0.0007525611435994506, + -0.010480801574885845, + -0.007479888387024403, + 0.00254928320646286, + 0.006251902785152197, + -0.001211189548484981, + -0.007192487362772226, + 0.0018895675893872976, + -0.0031110213603824377, + -0.0010796196293085814, + 0.016811085864901543, + 0.025694387033581734, + 0.0006578494794666767, + 0.024305904284119606, + -0.0017981218406930566, + -0.018632536754012108, + 0.015318094752728939, + -0.0005883320118300617, + -0.008674281649291515, + 0.005714425817131996, + -0.010906304232776165, + 0.022260505706071854, + -0.011376596987247467, + -0.0007380977622233331, + -0.0027545697521418333, + -0.016557278111577034, + 0.018781835213303566, + 0.02269347384572029, + -0.019214803352952003, + -0.03141254559159279, + -0.014153561554849148, + 0.005762947723269463, + 0.00345627567730844, + -0.0138624282553792, + 0.008368218317627907 + ], + "038d0cad-dcfd-42eb-842d-10ceebf9d1c8": [ + -0.004268176853656769, + -0.027055270969867706, + -0.020944101735949516, + 0.006470867432653904, + -0.02665478177368641, + -0.0022008365485817194, + 0.006025879178196192, + 0.01442502811551094, + -0.0368153415620327, + 0.03373008966445923, + 0.013364473357796669, + 0.01680571399629116, + 0.010434968397021294, + -0.023717861622571945, + 0.004030849784612656, + 0.028583062812685966, + -0.036726344376802444, + 0.032751116901636124, + -0.015767408534884453, + -0.009122254326939583, + 0.053784217685461044, + 0.009515327401459217, + -0.03895128518342972, + 0.015085093677043915, + 0.011799599044024944, + -0.029131881892681122, + -0.00488745141774416, + -0.00021612047567032278, + -0.048058703541755676, + 0.02416284941136837, + 0.025275319814682007, + -0.004486962221562862, + 0.013972623273730278, + 0.01153260562568903, + 0.04420214146375656, + -0.03343343362212181, + -0.008781096898019314, + 0.04040491208434105, + -0.032632455229759216, + -0.03648901730775833, + -0.03200947120785713, + 0.012645076029002666, + -0.013957791030406952, + 0.004353465978056192, + -0.02889455482363701, + 0.028835222125053406, + -0.016182729974389076, + -0.03737899288535118, + 0.0004178715462330729, + 0.01937181130051613, + 0.01380204502493143, + -0.05532684177160263, + 0.008113614283502102, + -0.0022193777840584517, + 0.015396584756672382, + -0.011858930811285973, + 0.022753721103072166, + 0.03714166581630707, + -0.014973846264183521, + -0.0038788120727986097, + 0.018600499257445335, + -0.03174247965216637, + -0.02018762193620205, + 0.019327312707901, + -0.010234723798930645, + -0.006760109681636095, + 0.024815497919917107, + 0.0034171370789408684, + -0.029695533215999603, + 0.0009256677585653961, + 0.039574265480041504, + 0.04357915744185448, + -0.01901582069694996, + 0.009893566370010376, + -0.005228609312325716, + 6.472026143455878e-5, + 0.06490891426801682, + -0.005187818314880133, + 0.006278038956224918, + 0.012422582134604454, + -0.017354533076286316, + 0.021403923630714417, + -0.01274149026721716, + -0.012341001071035862, + 0.08549702912569046, + -0.02767825499176979, + -0.05870874971151352, + -0.0547928586602211, + 0.007379384711384773, + -0.034946393221616745, + 0.01113953348249197, + 0.006997436285018921, + 0.019712969660758972, + -0.003882520366460085, + -0.005617973394691944, + 0.011844097636640072, + 0.047673050314188004, + -0.014432444237172604, + 0.005636514630168676, + -0.019327312707901, + -0.0008658724837005138, + 0.022056572139263153, + -0.009470827877521515, + 0.007015977520495653, + 0.004245927091687918, + -0.0018022013828158379, + 0.011985010467469692, + -0.00924091786146164, + -0.022293899208307266, + 0.0754106342792511, + 0.00881076231598854, + -0.020662276074290276, + 0.009960315190255642, + 0.03812063857913017, + -0.03156448155641556, + -0.06016238033771515, + -0.003617381677031517, + -0.028049077838659286, + 0.023970020934939384, + -0.0377349816262722, + -0.0012765593128278852, + 0.03251378983259201, + -0.02178957872092724, + 0.002045090775936842, + -0.04648641496896744, + 0.023287706077098846, + 0.012548661790788174, + -0.011740267276763916, + 0.007286678534001112, + 0.05354689061641693, + -0.055059850215911865, + -0.010219891555607319, + -0.013809461146593094, + 0.02526048570871353, + 0.022575724869966507, + 0.02586863562464714, + 0.02238289639353752, + 0.038357965648174286, + -0.041235554963350296, + 0.0054918937385082245, + -0.041561879217624664, + -0.031356822699308395, + -0.03426407650113106, + 0.007802123203873634, + -0.00700114481151104, + 0.0025735138915479183, + -0.04346049576997757, + 0.06508691608905792, + -0.016687050461769104, + -0.00476137176156044, + -0.021418755874037743, + -0.01670188270509243, + 0.017502861097455025, + -0.008521520532667637, + 0.004961616359651089, + 0.01014572661370039, + -0.016227228567004204, + 0.010323721915483475, + 0.020172789692878723, + 0.027618922293186188, + 0.02256089262664318, + -0.05669147148728371, + -0.009203835390508175, + 0.03714166581630707, + 0.06384094804525375, + 0.0005937808891758323, + 0.013631465844810009, + 0.028583062812685966, + -0.042125530540943146, + 0.01954980567097664, + 0.021863743662834167, + -0.012074007652699947, + 0.005009823478758335, + -0.0034226994030177593, + 0.01815551146864891, + -0.006763817742466927, + 0.03378942236304283, + 0.029042884707450867, + 0.004668666049838066, + -0.0385952927172184, + -0.011562271974980831, + -0.045329444110393524, + 0.02284271828830242, + -0.015411417931318283, + 0.023643696680665016, + 0.02049911394715309, + 0.018348338082432747, + -0.011947927996516228, + 0.015648745000362396, + -0.014150618575513363, + 0.0025475563015788794, + 0.01013089343905449, + -0.014743936248123646, + -0.0026235750410705805, + -0.02138908952474594, + -0.03435307368636131, + 0.0025883468333631754, + -0.008299026638269424, + -0.002345457673072815, + -0.008714348077774048, + -0.018911991268396378, + -0.03794264420866966, + -0.04001925513148308, + 0.02917638048529625, + -0.031356822699308395, + 0.005291649140417576, + -0.0331961065530777, + -0.01453627459704876, + 0.038357965648174286, + -0.039781928062438965, + 0.024459507316350937, + -0.03930727392435074, + 0.0233470369130373, + -0.017547359690070152, + -0.01142135914415121, + 0.01329030841588974, + -0.025067657232284546, + 0.013134562410414219, + 0.006367036607116461, + -0.0430748388171196, + -0.0029239419382065535, + -0.003600694704800844, + 0.01797751523554325, + -0.018986154347658157, + -0.018200010061264038, + -0.0012811946216970682, + -0.033670760691165924, + 0.015322420746088028, + -0.02678827755153179, + 0.017072707414627075, + 0.022234568372368813, + -0.007041935343295336, + -0.006956645753234625, + -0.03470906615257263, + 0.0004797526926267892, + -0.008395440876483917, + 0.02821223996579647, + 0.026521285995841026, + 0.02189341001212597, + -0.021018266677856445, + 0.015559747815132141, + 0.016212396323680878, + 0.027559591457247734, + 0.0053583974950015545, + 0.03500572219491005, + 0.03806130960583687, + 0.02999219112098217, + 0.04648641496896744, + 0.010968954302370548, + -0.030229518190026283, + 0.012578328140079975, + 0.02864239551126957, + 0.006207582540810108, + -0.019846465438604355, + -0.03447173908352852, + 0.06229832023382187, + 0.017547359690070152, + -0.028968719765543938, + -0.0023083752021193504, + -0.04117622226476669, + -0.027693087235093117, + 0.0211072638630867, + 0.0341750793159008, + 0.011028286069631577, + 0.015574580058455467, + -0.03815030679106712, + 0.03281044960021973, + -0.01858566515147686, + 4.2934389057336375e-5, + 0.0529535748064518, + -0.006697069387882948, + -0.014758769422769547, + -0.01554491464048624, + 0.0017882955726236105, + -0.017324866726994514, + -0.0019598014187067747, + 0.02597246691584587, + -0.02373269386589527, + -0.02032111957669258, + 0.0056661805137991905, + -0.008551185950636864, + -0.011992426589131355, + 0.0018689496209844947, + 0.00804686639457941, + -0.04633808508515358, + 0.003648901591077447, + -0.023747526109218597, + -0.010049312375485897, + -0.03485739231109619, + -0.015203757211565971, + -0.0033244313672184944, + 0.01573774218559265, + 0.006389286369085312, + 0.01197759434580803, + -0.002645824570208788, + 0.005636514630168676, + 0.008217445574700832, + -0.013497970066964626, + -0.010027063079178333, + 0.011851513758301735, + -0.058649420738220215, + 0.003103791270405054, + -0.000844550144392997, + -0.036014363169670105, + -0.0073645515367388725, + 0.004086473025381565, + 0.03954460099339485, + 0.011643853038549423, + -0.048592690378427505, + 0.01947564259171486, + -0.005124778486788273, + -0.010338555090129375, + -0.010739044286310673, + -0.00234916596673429, + -0.011250779964029789, + 0.036696676164865494, + 0.03901061415672302, + 0.015975069254636765, + -0.02928021177649498, + -0.010946705006062984, + 0.021967574954032898, + 0.010175392031669617, + -0.08502237498760223, + 0.020335951820015907, + 0.016642551869153976, + -0.03812063857913017, + 0.030971165746450424, + -0.004765079822391272, + -0.03806130960583687, + 0.01591573841869831, + 0.0009539430611766875, + -0.008588268421590328, + -0.013757545500993729, + -0.007943036034703255, + -0.0219972413033247, + -0.05770011246204376, + -0.012200088240206242, + -0.04099822789430618, + -0.0015574580756947398, + -0.05752211809158325, + -0.014128369279205799, + -0.01858566515147686, + -0.024370510131120682, + -0.021774746477603912, + 0.00614825077354908, + -0.012585744261741638, + -0.02345086820423603, + 0.020780939608812332, + 0.006522782612591982, + -0.003270661924034357, + 0.0008097854442894459, + -0.0006076867575757205, + 0.030051523819565773, + 0.010605547577142715, + 0.06048870459198952, + -0.03993025794625282, + 0.003559904173016548, + -0.02181924507021904, + 0.02988836169242859, + -0.0004695550596807152, + 0.008284193463623524, + -0.01690954528748989, + -0.002705156337469816, + -0.024845164269208908, + -0.008996174670755863, + -0.0017428697319701314, + -0.016642551869153976, + 0.00677865045145154, + -0.010390469804406166, + 0.010879957117140293, + -0.003418991109356284, + 0.009685905650258064, + 0.01673154905438423, + -0.03693400323390961, + -0.012852736748754978, + -0.013223560526967049, + 0.06140834465622902, + -0.04274851456284523, + -0.0237771924585104, + -0.003051876090466976, + 0.00044382919440977275, + 0.00290910922922194, + 0.0031204784754663706, + -0.0030704173259437084, + 0.020706774666905403, + 0.02391068823635578, + -0.011473273858428001, + -0.014224783517420292, + -0.013334807008504868, + 0.019801966845989227, + -0.02192307636141777, + 0.03984126076102257, + -0.035836368799209595, + 0.01563391275703907, + -0.02238289639353752, + 0.0022824176121503115, + -0.007668626494705677, + 0.014654938131570816, + 0.0009075901471078396, + -0.008833011612296104, + -0.014083870686590672, + 0.0012070300290361047, + 0.024296345189213753, + 0.01606406643986702, + 0.01330514159053564, + -0.040315914899110794, + -0.0015546769136562943, + -0.010991203598678112, + 0.0020228412467986345, + 0.04506245255470276, + -0.004308967385441065, + 0.0005478914827108383, + -0.0037453158292919397, + -0.004672374110668898, + 0.05144061520695686, + -0.008373190648853779, + 0.01197759434580803, + 0.017606692388653755, + -0.003083396004512906, + -0.03150515258312225, + 0.041413549333810806, + 0.019164150580763817, + 0.0260762982070446, + 0.03284011408686638, + 0.004679790697991848, + 0.021047933027148247, + 0.04366815835237503, + -0.008395440876483917, + -0.03990058973431587, + -0.01619756408035755, + 0.021759914234280586, + 0.03592536598443985, + -0.013141979463398457, + 0.007108683232218027, + -0.041769541800022125, + -0.03702300414443016, + -0.023302538320422173, + 0.0054177287966012955, + -0.00381577224470675, + 0.006029587704688311, + 0.016464555636048317, + 0.03281044960021973, + 0.000399330398067832, + -0.009908399544656277, + -0.028805557638406754, + -0.005892382934689522, + -0.045893095433712006, + 0.03702300414443016, + 0.016464555636048317, + -0.02718876674771309, + 0.0021804412826895714, + 0.026743778958916664, + -0.0699521154165268, + 0.010219891555607319, + 0.0028757350519299507, + -0.023035546764731407, + 0.031178826466202736, + -0.03106016293168068, + 0.01197759434580803, + -0.03815030679106712, + 0.0034078664612025023, + -0.029725199565291405, + -0.005369522143155336, + 0.0039270189590752125, + 0.005347272381186485, + -0.014180284924805164, + -0.0028367985505610704, + 0.0026884691324084997, + 0.001373900449834764, + 0.0023380410857498646, + -0.005069155246019363, + -0.018526334315538406, + -0.03592536598443985, + 0.020380450412631035, + -0.014736519195139408, + 0.01085770782083273, + 0.02121109515428543, + 0.0032039135694503784, + 0.014580774120986462, + -0.0007309854845516384, + -0.014803268015384674, + -0.0264767874032259, + 0.00713464105501771, + 0.0039084781892597675, + 0.028063910081982613, + -0.015752576291561127, + 0.022857550531625748, + -0.033492762595415115, + 0.028909387066960335, + -0.007108683232218027, + 0.018897157162427902, + -0.004056807141751051, + 0.008454772643744946, + 0.029324710369110107, + 0.011117284186184406, + -0.017072707414627075, + -0.006700777914375067, + -0.024889662861824036, + -0.004156929440796375, + 0.026417454704642296, + 0.003346680663526058, + -0.03316643834114075, + -0.0017345261294394732, + 0.01391329150646925, + -0.02082543820142746, + -0.004119847435504198, + -0.0031427277717739344, + -0.01419511716812849, + -0.01868949644267559, + -0.006396702490746975, + -0.03696367144584656, + -0.024785831570625305, + -0.0197278019040823, + 0.0022805635817348957, + -0.03435307368636131, + -0.016850212588906288, + -0.020202456042170525, + -0.0013776087434962392, + 0.03150515258312225, + -0.006025879178196192, + 0.007609295193105936, + -0.012222337536513805, + -0.015263088978827, + -0.008106198161840439, + 0.018007181584835052, + -0.0071568903513252735, + 0.013253225944936275, + -0.010116061195731163, + -0.024281512945890427, + -0.0385952927172184, + -0.00904067326337099, + 0.006303996779024601, + -0.02299104630947113, + -0.00953757669776678, + 0.035628706216812134, + -0.0034968641120940447, + 0.0005520632257685065, + 0.0211072638630867, + 0.020276620984077454, + 0.013713046908378601, + -0.0448547899723053, + 0.01554491464048624, + -0.012036926113069057, + -0.031683146953582764, + -0.010842874646186829, + 0.018214842304587364, + 0.006248373072594404, + 0.041739873588085175, + -0.011992426589131355, + 0.011606770567595959, + -0.04185853898525238, + 0.006760109681636095, + -0.0012672888115048409, + -0.0036359229125082493, + 0.007179140113294125, + -0.05597949028015137, + 0.025571977719664574, + 0.0027088643983006477, + -0.015752576291561127, + -0.04090923070907593, + -0.007668626494705677, + 0.017102371901273727, + 0.012889819219708443, + 0.023792024701833725, + -0.020662276074290276, + -0.003923310898244381, + -0.014855182729661465, + 0.03963359817862511, + 0.01176251657307148, + 0.006029587704688311, + 0.03536171466112137, + 0.0005692138220183551, + 0.018748827278614044, + -0.0028924220241606236, + -0.025275319814682007, + 0.00980456918478012, + -0.009278000332415104, + 0.006404119078069925, + -0.00462045893073082, + -0.025809304788708687, + 0.03776464983820915, + -0.0314754843711853, + 0.003313306486234069, + -0.005677305161952972, + 0.002503057476133108, + 0.002844215137884021, + -0.026209793984889984, + 0.000951161899138242, + 0.006318829953670502, + 0.016153065487742424, + 0.011844097636640072, + -0.0008695807191543281, + -0.015077676624059677, + -0.002710718661546707, + 0.01027180626988411, + 0.023673363029956818, + -0.011057952418923378, + 0.004650124814361334, + 0.00957465823739767, + -0.008580852299928665, + 0.009352164342999458, + 0.04310450702905655, + 0.01787368580698967, + -0.03108982928097248, + -0.010205058380961418, + 0.03521338477730751, + 0.005458519794046879, + 0.024044185876846313, + 0.0314754843711853, + 0.03684500604867935, + -0.030644841492176056, + 0.004676082171499729, + 0.024993492290377617, + -0.01954980567097664, + 0.022872382774949074, + -0.002056215424090624, + -0.01007156167179346, + 0.033344436436891556, + 0.028553396463394165, + -0.019816799089312553, + 0.008499271236360073, + -0.00915191974490881, + 0.03269178420305252, + -0.03904028236865997, + 0.027945246547460556, + 0.019712969660758972, + 0.01224458683282137, + -0.008499271236360073, + -0.03533204644918442, + -0.007957869209349155, + 0.01215558871626854, + 0.0008556748507544398, + 0.009426329284906387, + -0.025453314185142517, + -0.002935066819190979, + -0.008454772643744946, + 0.01861533150076866, + 0.0010911476565524936, + -0.0020413824822753668, + -0.02224940061569214, + -0.014395361766219139, + 0.0040827649645507336, + -0.004438755568116903, + 0.019623970612883568, + -0.00813586451113224, + 0.012570911087095737, + -0.005046905484050512, + 0.009544992819428444, + 0.008870094083249569, + 0.011117284186184406, + -0.0020932976622134447, + 0.006185333244502544, + -0.012081424705684185, + 0.03162381425499916, + -0.015589413233101368, + -0.016034401953220367, + 0.003611819352954626, + 0.01391329150646925, + -0.0008352795848622918, + 0.0005233244155533612, + 0.024029351770877838, + -0.01419511716812849, + -0.005744053516536951, + 0.010331138037145138, + -0.012341001071035862, + -0.0019523849477991462, + -0.005681013688445091, + 0.00551785109564662, + -0.014929347671568394, + 0.016894711181521416, + 0.00525827519595623, + 0.00826194416731596, + 0.020632611587643623, + 0.02864239551126957, + -0.004857785999774933, + -0.0031278948299586773, + 0.018986154347658157, + -0.005165569018572569, + -0.010635212995111942, + -0.023391535505652428, + -0.023361871019005775, + -0.025557145476341248, + -0.04799937456846237, + 0.029117049649357796, + -0.005280524492263794, + -0.002975857350975275, + -0.011896012350916862, + 0.0022916882298886776, + -0.00010956671030726284, + -0.0010197642259299755, + 0.015092509798705578, + 0.005380646791309118, + -0.005143319722265005, + -0.008721765130758286, + -0.016746381297707558, + 0.01812584511935711, + 0.004323800094425678, + -0.017280368134379387, + 0.037082333117723465, + -0.006029587704688311, + -0.03200947120785713, + 0.001989467302337289, + -0.0003930727543774992, + -0.010138310492038727, + 0.011399109847843647, + 0.006051837000995874, + -0.013742713257670403, + -0.01993546262383461, + -0.0021637543104588985, + 0.009641407057642937, + 0.00018587519298307598, + 0.028301237151026726, + 0.0025364316534250975, + 0.005102529190480709, + 0.003826896892860532, + -0.010190225206315517, + 0.0050580305978655815, + 0.02174508012831211, + -0.02085510455071926, + -0.01013089343905449, + -0.005291649140417576, + 0.03631102293729782, + -0.011258197017014027, + -0.029799364507198334, + -0.03435307368636131, + -0.006103752180933952, + 0.027722753584384918, + -0.005287941079586744, + 0.015203757211565971, + -0.007520297542214394, + 0.03310710936784744, + -0.0017419426003471017, + 0.010472050867974758, + 0.007720542140305042, + 0.010301472619175911, + -0.013713046908378601, + 0.008647600188851357, + 0.02864239551126957, + 0.02543848194181919, + -0.018496667966246605, + 0.026432286947965622, + -0.006552448496222496, + 0.010027063079178333, + -0.0130233159288764, + 0.024815497919917107, + 0.012088840827345848, + 0.03467939794063568, + 0.007876288145780563, + 0.01940147764980793, + 0.007794706616550684, + 0.035480376332998276, + -0.026165295392274857, + -0.0055845994502305984, + 0.02935437485575676, + -0.010256974026560783, + 0.021077599376440048, + 0.005580891389399767, + 0.006207582540810108, + -0.024889662861824036, + 0.02018762193620205, + 0.025957634672522545, + 0.017606692388653755, + 0.020350784063339233, + 0.0022620223462581635, + -0.015841573476791382, + -0.0511736199259758, + -0.015322420746088028, + 0.010390469804406166, + 0.022486727684736252, + -0.026803111657500267, + 0.008647600188851357, + 0.021700581535696983, + 0.036726344376802444, + 0.011792181991040707, + -0.013201311230659485, + -0.005247150082141161, + 0.0045166281051933765, + -0.010353387333452702, + -0.048414696007966995, + -0.007972701452672482, + -0.006344787310808897, + -0.022827884182333946, + -0.009708154946565628, + -0.016538720577955246, + 0.005124778486788273, + -0.0022175235208123922, + 0.0300960224121809, + -0.029220879077911377, + -0.01323839370161295, + -0.0018800743855535984, + -0.006244665011763573, + 0.0029536078218370676, + 0.01176251657307148, + 0.014254448935389519, + 0.01016055978834629, + -0.018600499257445335, + 0.017725355923175812, + -0.017117206007242203, + -0.0048911599442362785, + 0.019846465438604355, + 0.009248333983123302, + -0.032068803906440735, + 0.02632845751941204, + -0.0005325950332917273, + 0.011606770567595959, + -0.026699280366301537, + -0.011844097636640072, + 0.024785831570625305, + 0.00022573870955966413, + 0.021062765270471573, + -0.012689574621617794, + 0.004234802443534136, + -0.029295044019818306, + 0.027203600853681564, + -0.02067711018025875, + -0.007301511708647013, + -0.014484359882771969, + 0.007234763354063034, + 0.01581190712749958, + -0.017547359690070152, + -0.011525189504027367, + 0.0264767874032259, + 0.015322420746088028, + -0.011858930811285973, + -0.014128369279205799, + -0.0074572572484612465, + 0.03245445713400841, + -0.023569531738758087, + -0.005458519794046879, + 0.012800822034478188, + 0.008936842903494835, + 0.016316227614879608, + -0.03883261978626251, + 0.015826739370822906, + 0.010805792175233364, + 0.029042884707450867, + 0.00476878834888339, + -0.00840285699814558, + -0.011584521271288395, + 0.047524720430374146, + -0.01812584511935711, + -0.03847663104534149, + -0.009700738824903965, + -0.021300092339515686, + 0.0037916686851531267, + -0.026639949530363083, + 0.02480066567659378, + -0.014818100258708, + 0.0056587643921375275, + 0.008988757617771626, + 0.009886150248348713, + -0.01406903751194477, + 0.0009367924649268389, + 0.010449801571667194, + -0.0065116579644382, + 0.03749765455722809, + -0.03723066300153732, + 0.014232199639081955, + -0.007646377198398113, + 0.015693243592977524, + 0.03070417232811451, + -0.010872540064156055, + -0.03740865737199783, + -0.001490709837526083, + -0.005569766741245985, + -0.014840350486338139, + -0.016538720577955246, + 0.0012774864444509149, + 0.005006114952266216, + 0.019772300496697426, + 0.006600655615329742, + -0.01619756408035755, + -0.018348338082432747, + 0.026595450937747955, + 0.017740188166499138, + -0.036696676164865494, + -0.027159102261066437, + -0.014632688835263252, + -0.012556077912449837, + -0.02118142880499363, + -0.008195196278393269, + -0.00588125828653574, + 0.02057327888906002, + 0.0008417689823545516, + -0.03337410092353821, + -0.0018504085019230843, + 0.03162381425499916, + 0.0021452130749821663, + 0.02355469949543476, + 0.009226084686815739, + 0.015018345788121223, + 0.003893645014613867, + -0.012585744261741638, + -0.038891952484846115, + -0.02867205999791622, + 0.005065446719527245, + -0.0005502091371454298, + -0.014951596967875957, + -0.01279340498149395, + -0.012148172594606876, + -0.002951753791421652, + -0.033700425177812576, + -0.006545031908899546, + -0.009589491412043571, + 0.006730443798005581, + -0.04351982846856117, + 0.018318673595786095, + 0.004972741007804871, + 0.008580852299928665, + 0.008521520532667637, + 0.012504163198173046, + 0.030852502211928368, + 0.01563391275703907, + -0.019846465438604355, + 0.011302695609629154, + 0.0029276502318680286, + 0.006355911958962679, + -0.01673154905438423, + 0.01119144819676876, + -0.020706774666905403, + 0.02174508012831211, + 0.00490228459239006, + 0.015589413233101368, + 0.0233767032623291, + 0.003317014779895544, + -0.0024789541494101286, + 0.003901061601936817, + 0.011057952418923378, + 0.0051099457778036594, + -0.015411417931318283, + -0.014729103073477745, + -0.0107687097042799, + 0.0005131267826072872, + -0.001770681468769908, + 0.043549492955207825, + -0.022946547716856003, + -0.007928202860057354, + 0.0033800548408180475, + -0.016583219170570374, + -0.00490228459239006, + -0.017814353108406067, + -0.028790723532438278, + 0.028375402092933655, + -0.023895855993032455, + 0.026877276599407196, + 0.006430076900869608, + -0.002701448043808341, + 0.042867179960012436, + 0.0003291057073511183, + 0.00713464105501771, + -0.012163005769252777, + 0.009366997517645359, + -0.003209476126357913, + -0.012207504361867905, + 0.0076315444894135, + 0.038684289902448654, + -0.019342144951224327, + -0.0025883468333631754, + -0.0008612372330389917, + -0.010316305793821812, + -0.0031167701818048954, + -0.015166674740612507, + 0.02306521125137806, + -0.006793483626097441, + -0.058441758155822754, + 0.011933094821870327, + -0.05319090187549591, + 0.010739044286310673, + -0.0023473117034882307, + 0.009196419268846512, + -0.02092926949262619, + -0.014202534221112728, + -0.034204743802547455, + 0.01894165575504303, + -0.013015898875892162, + -0.018986154347658157, + -0.017324866726994514, + 0.0007105902186594903, + -0.003489447757601738, + -0.015797074884176254, + 0.04438013583421707, + -0.027633754536509514, + 0.0025012034457176924, + -0.019890964031219482, + -0.018674664199352264, + 0.031178826466202736, + 0.012563494965434074, + 0.01202950906008482, + -0.03343343362212181, + 0.008566019125282764, + 0.01784401945769787, + -0.0448547899723053, + 0.0119034294039011, + 0.03877328708767891, + 0.0035395089071244, + -0.006389286369085312, + 0.024637503549456596, + -0.013253225944936275, + -0.008736598305404186, + -0.04473612830042839, + 0.003506134729832411, + -0.01731003448367119, + -0.035480376332998276, + 0.03642968460917473, + 0.019208649173378944, + 0.0032187465112656355, + -0.008306442759931087, + -0.003949268721044064, + -0.01609373278915882, + 0.036726344376802444, + -0.0025827845092862844, + -0.01802201382815838, + 0.0014564086450263858, + -0.013638882897794247, + 0.013549884781241417, + 0.03856562823057175, + 0.019253147765994072, + -0.03755698725581169, + -0.02011345885694027, + 0.014024538919329643, + -0.026313623413443565, + -0.017636358737945557, + 0.007727958261966705, + -0.0008093219366855919, + 0.0001662910945015028, + 0.020068958401679993, + -0.016894711181521416, + 0.006634029559791088, + 0.012674741446971893, + 0.003754586447030306, + -0.021967574954032898, + -0.012281669303774834, + -0.009982564486563206, + -0.010605547577142715, + 0.01224458683282137, + -0.01784401945769787, + -0.015263088978827, + -0.07802122831344604, + -0.02220490202307701, + 0.007316344417631626, + 0.012355833314359188, + -0.002905400935560465, + 0.008706931956112385, + -0.002738530281931162, + 0.0077576241455972195, + 0.02405901812016964, + 0.0021915659308433533, + -0.008603101596236229, + 0.00866984948515892, + 0.002045090775936842, + 0.031178826466202736, + -0.004572251811623573, + -0.005102529190480709, + -0.02594280056655407, + 0.014365696348249912, + 0.0008079313556663692, + -0.019979961216449738, + 0.0028164032846689224, + 0.02238289639353752, + 0.05052097141742706, + 0.011213697493076324, + 0.022442229092121124, + 0.009678489528596401, + -0.057373788207769394, + 0.010212474502623081, + -0.003541362937539816, + -0.03758665546774864, + -0.003956684842705727, + -0.011020869947969913, + -0.020202456042170525, + -0.013579551130533218, + 0.02693660743534565, + -0.001449919305741787, + 0.019742634147405624, + -0.013497970066964626, + 0.01894165575504303, + 0.017176536843180656, + 0.02100343443453312, + 0.019712969660758972, + -0.01723586954176426, + -0.002071048365905881, + -0.013794627971947193, + -0.022798219695687294, + 0.010190225206315517, + -0.029235711321234703, + 0.007193972822278738, + 0.0052434420213103294, + 0.019000988453626633, + -0.020306285470724106, + 0.006901022512465715, + -0.01815551146864891, + -0.019920630380511284, + 0.002643970539793372, + 0.018600499257445335, + -0.004917117301374674, + -0.00953757669776678, + -0.008981341496109962, + 0.04093889519572258, + 0.022115904837846756, + 0.015322420746088028, + 0.01713203825056553, + -0.012704407796263695, + 0.023332204669713974, + 0.014617855660617352, + 0.0003907550999429077, + 0.028375402092933655, + -0.01027180626988411, + 0.007486923132091761, + -0.021759914234280586, + -0.004727997817099094, + -0.001937552005983889, + 0.006011046469211578, + 0.004412797745317221, + 0.035035390406847, + 0.018570832908153534, + 0.01428411528468132, + 0.0026532409247010946, + -0.001998737920075655, + 0.008106198161840439, + -0.0032168924808502197, + -0.012229753658175468, + -0.021478088572621346, + -0.020558446645736694, + 0.008729181252419949, + -0.01112470030784607, + -0.0074980477802455425, + -0.007839205674827099, + 0.013349640183150768, + 0.04360882565379143, + 0.022219734266400337, + 0.0238068588078022, + -8.986672037281096e-5, + 0.028256738558411598, + -0.014825517311692238, + 0.008781096898019314, + 0.004145804792642593, + -0.019104817882180214, + -0.0075722127221524715, + -0.0025883468333631754, + 0.02291688323020935, + -0.032424792647361755, + -0.00031612691236659884, + 0.012444831430912018, + -0.002747800899669528, + 0.0048244115896523, + -0.03257312253117561, + -0.020766107365489006, + 0.007742791436612606, + 0.011488107033073902, + -0.00012086523202015087, + -0.00888492725789547, + 0.0028126949910074472, + 0.0006225196993909776, + -0.002061777748167515, + -0.03088216856122017, + -0.016642551869153976, + -0.003856562776491046, + 0.005184110254049301, + 0.04529977962374687, + 0.008113614283502102, + -0.03892161697149277, + -0.003982642665505409, + 0.02327287383377552, + -0.033492762595415115, + -0.02466716803610325, + -0.010182809084653854, + 0.007394217420369387, + -0.02451884001493454, + -0.0027459468692541122, + -0.017680857330560684, + -0.009077755734324455, + -0.015107342973351479, + 0.04470646381378174, + 0.03628135472536087, + -0.011784765869379044, + 0.008202612400054932, + -0.03699333593249321, + -0.0025957634206861258, + 0.023688195273280144, + 0.0031519983895123005, + 0.014610439538955688, + -0.007883704267442226, + 0.013883626088500023, + -0.005276815965771675, + 0.005046905484050512, + -0.008870094083249569, + -0.009315081872045994, + 0.012066591531038284, + 0.028197407722473145, + 0.025379149243235588, + -0.03322577103972435, + -0.0012292793253436685, + -0.025037992745637894, + -0.008929425850510597, + 0.013230976648628712, + 0.00980456918478012, + -0.004527753219008446, + -0.020410116761922836, + -0.0027348222211003304, + 0.025364316999912262, + 0.008914592675864697, + 0.012489330023527145, + -0.018140677362680435, + -0.013905875384807587, + -0.007371968124061823, + -0.019104817882180214, + -0.019386643543839455, + 0.004835536237806082, + -0.01433602999895811, + 0.005217484198510647, + -0.01695404388010502, + -0.002660657512024045, + -0.004976449068635702, + -0.015366919338703156, + -0.0071160998195409775, + -0.0007536984630860388, + 0.02227906696498394, + -0.022694388404488564, + 0.018392838537693024, + 0.0011486252769827843, + 0.015485582873225212, + 0.0033967418130487204, + 0.04627875238656998, + 0.00938183069229126, + 0.016375558450818062, + -0.009174169041216373, + -0.0015222298679873347, + 0.01901582069694996, + 0.029117049649357796, + -0.024385342374444008, + 0.000676289084367454, + 0.026061464101076126, + -0.004053099080920219, + 0.01518892403692007, + -0.02750025875866413, + -0.032602787017822266, + -0.03174247965216637, + -0.017577026039361954, + -0.018140677362680435, + -0.0007342302124015987, + 0.004739122465252876, + -0.020068958401679993, + -0.01215558871626854, + -0.03180180862545967, + 0.02515665628015995, + 0.017117206007242203, + -0.01983163319528103, + 0.007876288145780563, + 0.0003800939302891493, + 0.0075722127221524715, + -0.01153260562568903, + 0.010279223322868347, + 0.017502861097455025, + -0.00959690846502781, + -0.02345086820423603, + -0.016405224800109863, + -0.03921827673912048, + 0.021300092339515686, + 0.003194643184542656, + 0.012860153801739216, + -0.029309876263141632, + 0.014454693533480167, + 0.00798011850565672, + 0.0015454062959179282, + -0.04366815835237503, + -0.016790881752967834, + 0.01293431781232357, + 0.002703302074223757, + -0.023183874785900116, + -0.002447434002533555, + -0.020068958401679993, + -0.01007156167179346, + 0.012704407796263695, + 0.02036561816930771, + -4.01242432417348e-5, + 0.012711823917925358, + -0.022190067917108536, + -0.01364629901945591, + -0.024711666628718376, + -0.01229650154709816, + 0.017918184399604797, + 0.03236545994877815, + 0.00790595356374979, + -0.012318751774728298, + -0.028375402092933655, + 0.017755022272467613, + -0.009196419268846512, + 0.0013368180952966213, + -0.023584363982081413, + -0.014669771306216717, + 0.01570807583630085, + 0.013542468659579754, + 0.009189002215862274, + 0.012289085425436497, + 0.0030407514423131943, + 0.025393981486558914, + -0.0030036689713597298, + -0.02586863562464714, + -0.02235323190689087, + 0.011606770567595959, + -0.03975226357579231, + 0.012415165081620216, + -0.029725199565291405, + -0.009952898137271404, + 0.006070378236472607, + 0.034916725009679794, + -0.03019985370337963, + 0.004998698830604553, + 0.012429998256266117, + -0.004524044692516327, + 0.006430076900869608, + 0.013446054421365261, + 0.0031557066831737757, + 0.007601878605782986, + -0.015648745000362396, + 0.01837800443172455, + 0.020840272307395935, + -0.010946705006062984, + -0.012949150986969471, + -0.019698135554790497, + -0.0010828041704371572, + 0.0031501443590968847, + 0.0013145687989890575, + 0.009567242115736008, + -0.012222337536513805, + 0.02856823056936264, + 0.011458441615104675, + 0.02984386309981346, + 0.02451884001493454, + 0.01677604764699936, + 0.0013627758016809821, + 0.029295044019818306, + -0.013779795728623867, + -0.0015741450479254127, + 0.013742713257670403, + 0.009233500808477402, + 0.024904495105147362, + 0.032958779484033585, + 0.023154210299253464, + -0.0283160712569952, + -0.02451884001493454, + 0.0025067657697945833, + -0.0002656022261362523, + 0.003261391306295991, + -0.009337332099676132, + 0.003652609884738922, + 0.0009455995168536901, + 0.004186595324426889, + 0.00013477110769599676, + -0.014209950342774391, + -0.0368153415620327, + 0.013282892294228077, + 0.022012073546648026, + 0.04224419593811035, + 0.021166596561670303, + 0.019416309893131256, + -0.012659909203648567, + 0.001683537964709103, + -0.023258039727807045, + -0.004931950476020575, + 0.02586863562464714, + -0.02678827755153179, + -0.017829185351729393, + -0.011020869947969913, + 0.007093850523233414, + 0.013535051606595516, + -0.02118142880499363, + -0.0283160712569952, + -0.0036600264720618725, + 0.0026476786006242037, + 0.00029040101799182594, + 0.001622352167032659, + 0.00388622866012156, + 0.020439783111214638, + -0.026461953297257423, + -0.00817294605076313, + -0.003413428785279393, + 0.014825517311692238, + 0.04257052019238472, + -0.022442229092121124, + -0.007423883303999901, + 0.0021711706649512053, + 0.009278000332415104, + 0.0028609021101146936, + 0.009641407057642937, + 0.0077576241455972195, + 0.008054282516241074, + -0.008936842903494835, + 0.0010930018033832312, + -0.015233422629535198, + 0.006100044120103121, + 0.015678411349654198, + 0.044261474162340164, + 0.0007708490011282265, + 0.025112155824899673, + -0.038357965648174286, + -0.02026178687810898, + -0.02696627378463745, + -0.009048089385032654, + 0.002415914088487625, + 0.01954980567097664, + 0.0035116970539093018, + 0.012578328140079975, + 0.020172789692878723, + 0.0005998067790642381, + -0.011873763054609299, + -0.021092431619763374, + 0.017473196610808372, + 0.0009242771775461733, + -0.005495601799339056, + 0.0014582627918571234, + -0.002681052777916193, + 0.004909701179713011, + -0.00488745141774416, + 0.01759186014533043, + 0.008959092199802399, + -0.01815551146864891, + -0.021344590932130814, + -0.018600499257445335, + -0.002363998908549547, + -0.0018782202387228608, + -0.004720581229776144, + -0.01581190712749958, + 0.00861793477088213, + 0.035480376332998276, + -0.0020877353381365538, + -0.0006174208829179406, + 0.0010568465804681182, + -0.013090063817799091, + 0.009871317073702812, + 0.0005817291093990207, + 0.007227346766740084, + 0.004279301501810551, + -0.018348338082432747, + 0.017354533076286316, + -0.047524720430374146, + -0.015381752513349056, + -0.01265249215066433, + 0.0004927315167151392, + -0.0003576127637643367, + -0.002985127968713641, + -0.007802123203873634, + 0.016153065487742424, + 0.012252002954483032, + 0.030852502211928368, + 0.008595685474574566, + -0.009114837273955345, + -0.010256974026560783, + 0.0011578958947211504, + 0.02971036545932293, + -0.02948787249624729, + -0.02345086820423603, + -0.000859846593812108, + 0.017651190981268883, + 0.018259340897202492, + 0.010264390148222446, + 0.0008621642482466996, + -5.185732516110875e-5, + -0.0013813169207423925, + 0.0019264272414147854, + 0.0068565234541893005, + -0.008462188765406609, + 0.012222337536513805, + 0.004308967385441065, + 0.01455110777169466, + -0.026358123868703842, + 0.01464010588824749, + -0.012978817336261272, + 0.011591937392950058, + 0.01904548704624176, + -0.0006976114236749709, + 0.06093369051814079, + -0.017354533076286316, + 0.011243363842368126, + -0.008714348077774048, + 0.009819402359426022, + -0.014929347671568394, + -0.0042607602663338184, + -0.0026736361905932426, + 0.011784765869379044, + 0.025601644068956375, + 0.00678606703877449, + -0.030644841492176056, + 0.019134484231472015, + 0.0030963749159127474, + 0.009352164342999458, + 0.02260539121925831, + 0.020513948053121567, + -0.00714205764234066, + 0.029547203332185745, + -0.014699437655508518, + 0.01591573841869831, + 0.0037638568319380283, + -0.016479389742016792, + 0.008343525230884552, + -0.018644997850060463, + 0.001343307550996542, + -0.005540100857615471, + 0.0047762044705450535, + -0.005343564320355654, + 0.016612885519862175, + -0.0022712929639965296, + 0.010865123942494392, + 0.04004891961812973, + -0.027084937319159508, + -0.021878577768802643, + -0.02049911394715309, + 0.0076315444894135, + -0.00595171470195055, + -0.031327154487371445, + 0.010420136153697968, + 0.0031816642731428146, + 0.0008357430924661458, + -0.01830383948981762, + 0.003307744162157178, + -0.005425145383924246, + -0.03123815916478634, + -0.018526334315538406, + -0.02103310078382492, + 0.014128369279205799, + 0.011992426589131355, + 0.030259184539318085, + -0.008640184067189693, + 0.006407827138900757, + -0.002731113927438855, + -0.006337370723485947, + 0.0349760577082634, + -0.03301810845732689, + -0.003051876090466976, + -0.007030810695141554, + 0.02064744383096695, + 0.0014082016423344612, + -0.03088216856122017, + -0.018556000664830208, + -0.010420136153697968, + 0.015500416047871113, + -0.011072784662246704, + -0.0009252042509615421, + -0.01573774218559265, + -0.01833350583910942, + 0.0034523652866482735, + 0.004857785999774933, + -0.026358123868703842, + -0.004464712925255299, + 0.003867687424644828, + 2.8260794351808727e-5, + -0.014031955040991306, + -0.006578405853360891, + 0.014662355184555054, + 0.010442385450005531, + -0.0034226994030177593, + -0.0056587643921375275, + 0.006037003826349974, + 0.016182729974389076, + -0.023317372426390648, + -0.013690797612071037, + 0.007957869209349155, + 0.0071494742296636105, + -0.014380529522895813, + 0.0022323564626276493, + -0.016123399138450623, + 0.005910924170166254, + 0.008098782040178776, + 0.008736598305404186, + 0.025141822174191475, + 0.00165943440515548, + -0.012481913901865482, + -0.011087617836892605, + 0.002808986697345972, + -0.018822992220520973, + 0.005395479500293732, + 0.01343122124671936, + -0.005655055865645409, + -0.0037582945078611374, + 0.00016768167552072555, + -0.003333701752126217, + -0.015559747815132141, + 0.009626573882997036, + 0.006552448496222496, + -0.027974912896752357, + 0.002336187055334449, + -0.013891042210161686, + 0.0789705365896225, + -0.00939666386693716, + 0.010531382635235786, + -0.0008811689913272858, + 0.012748906388878822, + 0.012978817336261272, + 0.002056215424090624, + -0.003617381677031517, + 0.02665478177368641, + -0.004798454232513905, + -0.0004410480032674968, + -0.019356979057192802, + 0.004305258858948946, + 0.009455995634198189, + -0.005729220807552338, + -0.01613823138177395, + 0.0030407514423131943, + 0.012378083541989326, + 0.007935619913041592, + 0.01858566515147686, + 0.01391329150646925, + -0.0006888043717481196, + -0.007928202860057354, + 0.017146870493888855, + -0.0017363802762702107, + 0.008143280632793903, + -0.015055427327752113, + -0.0009363289573229849, + 0.02273888699710369, + 0.018348338082432747, + 0.007609295193105936, + -0.006025879178196192, + -0.004568543750792742, + 0.00406793225556612, + 0.0015509686199948192, + 0.03183147683739662, + -0.0007193972705863416, + 0.020024459809064865, + 0.0002454386849422008, + 0.003582153469324112, + 0.010064145550131798, + -0.015018345788121223, + 0.04206620156764984, + 0.02839023433625698, + -0.0170578733086586, + 0.003804647596552968, + 0.004861494060605764, + -0.008721765130758286, + -0.008603101596236229, + 0.01215558871626854, + -0.011599354445934296, + -0.014959014020860195, + 0.004616750404238701, + 0.0011031994363293052, + 0.01687987893819809, + 0.01442502811551094, + -0.00231022946536541, + -0.025631308555603027, + -0.002156337723135948, + 0.003092666622251272, + -0.008098782040178776, + 0.003367075929418206, + -0.024251846596598625, + -0.028241906315088272, + 0.0025883468333631754, + -0.0028757350519299507, + -0.007130932994186878, + 0.011643853038549423, + -0.008647600188851357, + 0.006037003826349974, + -0.008558603003621101, + -0.020558446645736694, + 0.00986390095204115, + -0.026773445308208466, + -0.01378721185028553, + 0.017547359690070152, + 0.003619235707446933, + 0.022902049124240875, + 0.0019208649173378944, + -0.0028071326669305563, + 0.0175176952034235, + 0.008795930072665215, + 0.005992505233734846, + -0.02125559374690056, + 0.00734601030126214, + -0.015975069254636765, + 0.015159258618950844, + -0.0007958795758895576, + 0.009752653539180756, + -0.016687050461769104, + -0.027707919478416443, + 0.00707160122692585, + -0.002649532863870263, + -0.003941852133721113, + -0.005577182862907648, + -0.0009460630244575441, + -0.004639000166207552, + -0.014862599782645702, + 0.004564835224300623, + 0.005165569018572569, + -0.0022379187867045403, + -0.0085289366543293, + -0.009819402359426022, + 0.004505503457039595, + 0.005877549760043621, + 0.00813586451113224, + 0.005350980907678604, + 0.01613823138177395, + -0.02991802804172039, + 0.0051173618994653225, + 0.008425106294453144, + -0.013253225944936275, + -0.007735374849289656, + 0.006355911958962679, + -0.008202612400054932, + 0.0028979843482375145, + 0.008684682659804821, + -0.0005812656017951667, + 0.0170875396579504, + -0.004646416287869215, + -0.012867569923400879, + -0.010790959000587463, + -0.009159336797893047, + -0.007223638705909252, + -0.006062961649149656, + 0.0057180956937372684, + -0.0023287704680114985, + 0.003530238289386034, + -0.007316344417631626, + 0.00957465823739767, + 0.023480534553527832, + 0.00406793225556612, + 0.007794706616550684, + -0.015693243592977524, + -0.0042718849144876, + -0.014187701046466827, + -0.011925678700208664, + 0.018467001616954803, + 0.02103310078382492, + -0.02408868446946144, + 0.006745276506990194, + 0.003209476126357913, + -0.002783029107376933, + 0.02057327888906002, + 0.009463411755859852, + 0.01805168017745018, + 0.0063818697817623615, + -0.018318673595786095, + 0.025883469730615616, + 0.00904067326337099, + 0.02278338558971882, + -0.024859996512532234, + 0.008373190648853779, + -0.021908242255449295, + -0.0039270189590752125, + -0.00082971720257774, + -0.013171644881367683, + 0.02800457924604416, + -0.021730247884988785, + -0.008907176554203033, + -0.01943114399909973, + -0.013104896992444992, + -0.004783621057868004, + 0.006685944739729166, + -0.01229650154709816, + 0.020706774666905403, + -0.00803203321993351, + 0.015826739370822906, + 0.011310111731290817, + 0.0022360647562891245, + -0.026877276599407196, + -0.0041754706762731075, + -0.0022508976981043816, + -0.037616319954395294, + 0.01240033283829689, + 0.008469604887068272, + -0.0023436034098267555, + -0.00980456918478012, + -0.014981263317167759, + 0.006426368374377489, + 0.010701961815357208, + -0.002100714249536395, + 0.028523731976747513, + 0.01762152463197708, + 0.012889819219708443, + -0.0015287192072719336, + 0.01554491464048624, + -0.010739044286310673, + 0.015500416047871113, + -0.00238068588078022, + -0.006018463056534529, + 0.0170282069593668, + 0.004668666049838066, + 0.00525827519595623, + -0.011376860551536083, + -0.009470827877521515, + 0.00531389843672514, + 0.024993492290377617, + -0.01405420433729887, + 0.007587045431137085, + -0.03215780109167099, + -0.01280823815613985, + 0.007334885653108358, + 0.014996095560491085, + 0.014387945644557476, + -0.013631465844810009, + -0.015040595084428787, + -0.018496667966246605, + 0.0010206912411376834, + 0.009441162459552288, + -0.051618609577417374, + -0.01588607206940651, + 0.007101267110556364, + 0.009159336797893047, + -0.016612885519862175, + 0.006044420413672924, + -0.002964732702821493, + 0.023436035960912704, + 0.00290910922922194, + 0.015337252989411354, + 0.021151764318346977, + 0.010605547577142715, + -0.01876366138458252, + -0.004016016609966755, + 0.0033596595749258995, + -0.0022935422603040934, + 0.008721765130758286, + 0.016820546239614487, + -0.003259537275880575, + -0.005102529190480709, + 0.012452247552573681, + -0.01478101871907711, + -0.008106198161840439, + 0.005428853910416365, + -0.013853959739208221, + 0.03450140357017517, + 0.013579551130533218, + 0.0033299936912953854, + 0.014647522009909153, + 0.01217042189091444, + 0.003704525064677, + -0.0010345971677452326, + -0.0170578733086586, + -0.004145804792642593, + 0.0073645515367388725, + 0.006782358977943659, + 0.010442385450005531, + 0.005795968696475029, + 0.013468303717672825, + -2.9984543289174326e-5, + -0.00957465823739767, + -0.0037008170038461685, + -0.006400411017239094, + 0.01968330331146717, + 0.0264767874032259, + 0.027915582060813904, + -0.013438638299703598, + 0.0005974891246296465, + -0.015337252989411354, + -0.030822835862636566, + 5.266850348562002e-5, + 0.004820703528821468, + -0.006248373072594404, + -0.013097480870783329, + 0.0069084386341273785, + 0.013861376792192459, + -0.016390392556786537, + -0.0025494105648249388, + 0.004546293988823891, + -0.00925575103610754, + 0.0039084781892597675, + 0.009189002215862274, + 0.0018541166791692376, + 0.0014508463209494948, + -0.0030203561764210463, + -0.0096636563539505, + -0.00678606703877449, + 0.0045092119835317135, + -0.011495523154735565, + -0.024148015305399895, + -0.001445283996872604, + -0.024370510131120682, + 0.015604246407747269, + -0.005436270032078028, + 0.009092587977647781, + -0.009989980608224869, + -0.0008023690315894783, + 0.02853856422007084, + -0.0066822366788983345, + 0.005102529190480709, + -0.006634029559791088, + -0.01154743880033493, + 0.009819402359426022, + -0.018778493627905846, + 0.016746381297707558, + 0.024326011538505554, + 0.00035436806501820683, + 9.14890697458759e-5, + 0.019787132740020752, + 0.008692098781466484, + -0.011020869947969913, + -0.01723586954176426, + 0.0060815028846263885, + -0.01343122124671936, + 0.002701448043808341, + -0.0059442981146276, + -0.0013980040093883872, + 0.0015630203997716308, + -0.013631465844810009, + 0.016286561265587807, + -0.0174880288541317, + 0.0025382856838405132, + -0.0029128172900527716, + -0.011970177292823792, + -0.004969032946974039, + -0.028345735743641853, + 0.0076241279020905495, + 0.03361142799258232, + -0.012214920483529568, + -0.0022546059917658567, + -0.014387945644557476, + 0.015055427327752113, + 0.010153142735362053, + -0.009055506438016891, + 0.008224861696362495, + -0.004798454232513905, + -0.0015240838984027505, + -0.010123477317392826, + -0.008150696754455566, + -0.007594462018460035, + 0.01240033283829689, + 0.0020117165986448526, + -0.01042755227535963, + -0.0030648550018668175, + -0.01167351845651865, + 0.01690954528748989, + -0.007223638705909252, + -0.009693321771919727, + -0.024192513898015022, + -0.0009706300916150212, + -0.03373008966445923, + 0.007127224467694759, + -0.001779952086508274, + -0.0017920037498697639, + -0.0034783228766173124, + 0.03613302484154701, + -0.002284271875396371, + -0.019950294867157936, + 0.006967770401388407, + 0.010753876529633999, + -0.007920786738395691, + -0.0005376938497647643, + 0.02000962756574154, + -0.008766263723373413, + -0.008447355590760708, + -0.008558603003621101, + 0.020528780296444893, + 0.03844696283340454, + -0.009129670448601246, + -0.021982407197356224, + 0.01352021936327219, + 0.014588190242648125, + -0.0019004696514457464, + -0.0010234724031761289, + 0.003025918500497937, + -0.028775891289114952, + 0.01613823138177395, + 0.0036915463861078024, + -0.02668444812297821, + 0.026432286947965622, + -0.0011486252769827843, + -0.02313937619328499, + -0.02846439927816391, + 0.0026588032487779856, + -0.01013089343905449, + 0.012474496848881245, + -0.007401634007692337, + 0.006812024861574173, + -0.012096256949007511, + -0.005139611661434174, + 0.007193972822278738, + 0.012837904505431652, + -0.004375715274363756, + -0.018630163744091988, + 0.010205058380961418, + -0.005236025433987379, + 0.011043119244277477, + 0.01139169279485941, + 0.009114837273955345, + -0.016078900545835495, + 0.005362105555832386, + 0.01996512897312641, + 0.011896012350916862, + -0.013609216548502445, + 0.0034412406384944916, + -0.00294062914326787, + -0.0130381491035223, + 0.027426093816757202, + 0.01581190712749958, + 0.010086394846439362, + -0.005228609312325716, + -0.009062922559678555, + 0.0031149161513894796, + 0.006411535665392876, + -0.0032391417771577835, + -0.005896090995520353, + 0.002890567993745208, + 0.023614030331373215, + 0.021952742710709572, + 0.0004964397521689534, + -0.007004852872341871, + 0.021433589980006218, + -0.01167351845651865, + -0.002386248204857111, + 0.02515665628015995, + -0.007854037918150425, + -0.0006039785221219063, + 0.002143358811736107, + 0.018822992220520973, + -0.003139019478112459, + 0.018244508653879166, + -0.012711823917925358, + 0.006596947088837624, + -0.0028367985505610704, + 0.004305258858948946, + -0.011161782778799534, + 0.045003119856119156, + -0.01064263004809618, + -0.006678528152406216, + 0.012281669303774834, + 0.005981380585581064, + -0.024118350818753242, + -0.01426928211003542, + 0.011999843642115593, + -0.016998542472720146, + -0.00714205764234066, + 0.010420136153697968, + 0.015218590386211872, + 0.007846621796488762, + 0.0024993494153022766, + -0.025749972090125084, + -0.0033874711953103542, + -0.009263167157769203, + 0.004401673097163439, + -0.0053250230848789215, + 0.0006354984943754971, + -0.00916675291955471, + -0.016078900545835495, + -0.0065672812052071095, + -0.014825517311692238, + -0.007097558584064245, + -0.0016446014633402228, + -0.00531389843672514, + 0.017755022272467613, + -0.003524675965309143, + -0.014165451750159264, + 0.011161782778799534, + 0.025112155824899673, + 0.022338397800922394, + -0.014959014020860195, + -0.007839205674827099, + -0.007353426888585091, + 0.00433492474257946, + 0.013868792913854122, + 0.005996213294565678, + 0.004416505806148052, + 0.005046905484050512, + 0.008187779225409031, + -0.009455995634198189, + 0.01766602322459221, + -0.00406793225556612, + 0.01787368580698967, + 0.04132455214858055, + -0.006860231980681419, + 0.018748827278614044, + 0.015574580058455467, + -0.016924377530813217, + 1.7136093447334133e-5, + 0.0035747371148318052, + 0.0011532605858519673, + -0.004802162293344736, + -0.009270583279430866, + -0.008128447458148003, + -0.010056729428470135, + 0.017577026039361954, + -0.013334807008504868, + -0.010776126757264137, + 0.014291531406342983, + -0.010612963698804379, + 0.02018762193620205, + 0.012600577436387539, + 0.029117049649357796, + 0.004212553147226572, + 7.178907981142402e-5, + 0.017962682992219925, + -0.01649422198534012, + 0.016227228567004204, + -0.0008825595723465085, + 0.019030654802918434, + -0.004783621057868004, + -0.005566058214753866, + 0.0025735138915479183, + -0.0025679515674710274, + -0.0019783424213528633, + 0.008766263723373413, + 0.002313937759026885, + 0.0009099078015424311, + 0.006270622834563255, + 0.006901022512465715, + -0.013342224061489105, + 0.01323839370161295, + -0.010724211111664772, + -0.033255435526371, + 0.004976449068635702, + -0.0049430751241743565, + 0.005599432624876499, + 0.0011736558517441154, + -0.009337332099676132, + 0.011102451011538506, + 0.0033559512812644243, + -0.00357102882117033, + -0.015396584756672382, + -0.017354533076286316, + 0.020098624750971794, + 0.010301472619175911, + 0.013423805125057697, + 0.016761215403676033, + 0.009033256210386753, + 0.007720542140305042, + -0.010279223322868347, + -0.016153065487742424, + 0.010620380751788616, + -0.012763739563524723, + -0.018719162791967392, + 0.011057952418923378, + 0.021092431619763374, + 0.002330624731257558, + 0.011606770567595959, + 0.026165295392274857, + -0.029161548241972923, + 0.009137087501585484, + 0.010108644142746925, + 0.00048763270024210215, + -0.009337332099676132, + -0.008625350892543793, + -0.015010928735136986, + -0.0013915145536884665, + 0.0017234014812856913, + 0.008966508321464062, + -0.0013729734346270561, + -0.010879957117140293, + -0.011821848340332508, + 0.02039528451859951, + 0.0009354018839076161, + 0.020202456042170525, + -0.017829185351729393, + 0.009900983422994614, + -0.0008408419089391828, + -0.005855300463736057, + 0.015900904312729836, + 0.01570807583630085, + 0.00488745141774416, + -0.008365774527192116, + -0.01690954528748989, + -0.02696627378463745, + 0.008907176554203033, + 0.01644972339272499, + 0.0011430629529058933, + 0.0042088450863957405, + 0.01733969897031784, + -0.03346309810876846, + -0.0027904456946998835, + -0.02064744383096695, + -0.002634699922055006, + -0.013045565225183964, + -0.01153260562568903, + -0.023391535505652428, + -0.008128447458148003, + 0.011740267276763916, + -0.012437415309250355, + 0.0096636563539505, + 0.0004955126787535846, + -0.028583062812685966, + -0.016316227614879608, + -0.0011782911606132984, + 0.014751352369785309, + -0.004079056903719902, + 0.002721843309700489, + 0.026105962693691254, + -0.016034401953220367, + 0.028123242780566216, + -0.0055845994502305984, + -0.014565940946340561, + 0.0024863705039024353, + 0.013312557712197304, + 0.009493077173829079, + -0.005113653838634491, + -0.005176693666726351, + -0.030081190168857574, + -0.003398595843464136, + -0.017740188166499138, + 0.0036748594138771296, + 0.012696990743279457, + -0.006222415715456009, + -0.01013089343905449, + 0.020988600328564644, + 0.01670188270509243, + -0.00658211437985301, + 7.173838184826309e-6, + -0.012355833314359188, + 0.00034880571183748543, + -0.005083987955003977, + -0.0012292793253436685, + 0.005187818314880133, + -0.0035747371148318052, + -0.014076453633606434, + 0.013490553013980389, + -0.01139169279485941, + 0.025468146428465843, + -0.012585744261741638, + -0.02125559374690056, + -0.0014786580577492714, + 0.016153065487742424, + -0.0022249401081353426, + -0.01616789773106575, + -0.004308967385441065, + -0.005758886691182852, + -0.000854747777339071, + 0.000371286878362298, + -0.0036044027656316757, + 0.008988757617771626, + 0.015233422629535198, + -0.004401673097163439, + -0.014521442353725433, + -0.003048167796805501, + -0.012348417192697525, + -0.0054918937385082245, + 0.009967731311917305, + -0.00266436580568552, + -0.011940511874854565, + 0.0175176952034235, + 0.006804608274251223, + -0.01578224077820778, + -0.01698370836675167, + 0.017458362504839897, + -0.01837800443172455, + -0.005347272381186485, + 0.008239694871008396, + -0.002039528451859951, + 0.0010967099806293845, + 0.0017725356156006455, + -0.009159336797893047, + -0.005603140685707331, + -0.011028286069631577, + 0.010405302979052067, + 0.015263088978827, + -0.003804647596552968, + -0.00840285699814558, + 0.022190067917108536, + -0.014884849078953266, + -0.04562610387802124, + -0.013475719839334488, + 0.02273888699710369, + 0.012904652394354343, + -0.0031445820350199938, + -0.01822967454791069, + 0.002610596362501383, + 0.007987534627318382, + 0.004086473025381565, + -0.003098228946328163, + 0.00331886881031096, + -0.008336109109222889, + -0.0023473117034882307, + 0.015826739370822906, + -0.018096178770065308, + 0.006181625183671713, + 0.0025197446811944246, + -0.005414020735770464, + 0.012593160383403301, + -0.028049077838659286, + -0.013809461146593094, + 0.018274175003170967, + -0.006237248424440622, + -0.027885915711522102, + -1.242837606696412e-5, + -0.00930766575038433, + 0.00952274352312088, + 0.003637776942923665, + 0.00929283257573843, + -0.00350057240575552, + -0.01833350583910942, + -0.010776126757264137, + -0.014135785400867462, + -0.021626416593790054, + 0.0036896923556923866, + 0.010820625349879265, + 0.0023677069693803787, + -0.013141979463398457, + -0.008877511136233807, + -0.005291649140417576, + -0.032751116901636124, + 0.005414020735770464, + -0.002762633841484785, + -0.0019523849477991462, + 0.010650046169757843, + -0.020232122391462326, + 0.009700738824903965, + 0.009203835390508175, + 0.003480177139863372, + 0.010575882159173489, + 0.01769568957388401, + -0.014039372093975544, + 0.0006197385373525321, + -0.008729181252419949, + -0.017532527446746826, + -0.02971036545932293, + -0.011896012350916862, + 0.009989980608224869, + -0.023406369611620903, + 0.003348534693941474, + 0.0009502348257228732, + -0.0010800230083987117, + -0.028078744187951088, + 0.0012598723405972123, + -0.010116061195731163, + -0.024889662861824036, + 0.0034968641120940447, + -0.0009451360092498362, + -0.010308888740837574, + 0.007787290029227734, + 0.035806700587272644, + 0.005710679572075605, + -0.0009386466117575765, + 0.012185255065560341, + 0.004783621057868004, + -0.016434891149401665, + 0.009055506438016891, + 0.006663695443421602, + -0.009938065893948078, + 0.014350863173604012, + -0.004731705877929926, + -0.02026178687810898, + -0.01914931647479534, + -0.00037221392267383635, + 0.011369443498551846, + -0.022768553346395493, + -0.010405302979052067, + 0.009900983422994614, + -0.02508249133825302, + -0.002951753791421652, + -0.014543691650032997, + -0.023762360215187073, + 0.019238315522670746, + -0.016850212588906288, + 0.015366919338703156, + -0.0014712415868416429, + -0.0019171566236764193, + -0.023287706077098846, + 0.017191370949149132, + 0.020424949005246162, + 0.022368064150214195, + 0.019342144951224327, + 0.002985127968713641, + 0.005221192725002766, + -0.0027867374010384083, + 0.017577026039361954, + -0.0038491461891680956, + -0.012378083541989326, + 0.004016016609966755, + 0.03037784807384014, + 0.010753876529633999, + 0.012355833314359188, + -0.0008334254380315542, + -0.02359919808804989, + 0.008447355590760708, + -0.0063410792499780655, + -0.001694662612862885, + -0.0033244313672184944, + 0.017710523679852486, + 0.03177214413881302, + 0.01343122124671936, + 0.0049838656559586525, + -0.018170343711972237, + -6.361937994370237e-5, + -0.0011680935276672244, + -0.012919485569000244, + 0.022368064150214195, + 0.012956567108631134, + 0.0072718458250164986, + 0.01323839370161295, + 0.003244704334065318, + 0.00040025744237937033, + -0.024370510131120682, + -0.015322420746088028, + 0.02661028318107128, + 0.0012487475760281086, + -0.0026736361905932426, + -0.0003515868738759309, + -0.01897132210433483, + -0.023747526109218597, + 0.00707160122692585, + -0.011792181991040707, + -0.0063002887181937695, + -0.02324320748448372, + -0.02800457924604416, + 0.02281305193901062, + -0.014365696348249912, + -0.0011124700540676713, + 0.018096178770065308, + 0.011747683398425579, + 0.004957908298820257, + -0.02327287383377552, + -0.0031519983895123005, + -0.014135785400867462, + 0.006526490673422813, + 0.012607993558049202, + 9.931112435879186e-5, + -0.006352203898131847, + -0.004016016609966755, + 0.00707160122692585, + -0.0011680935276672244, + 0.0013516510371118784, + 0.029502704739570618, + -0.018556000664830208, + -0.015381752513349056, + 0.007312636356800795, + 0.001902323798276484, + -0.0028534855227917433, + -0.010887373238801956, + -0.005836759228259325, + 0.0011208135401830077, + 0.006426368374377489, + -0.017918184399604797, + 0.008491854183375835, + 0.014091286808252335, + -0.009722988121211529, + 0.004880035296082497, + -0.00124133110512048, + -0.0014202534221112728, + 0.013624049723148346, + 0.018956489861011505, + -0.018244508653879166, + 0.00013732051593251526, + 0.004631583578884602, + 0.006756401155143976, + 0.002508619800209999, + -0.021047933027148247, + -0.008180363103747368, + -0.002751509193331003, + 0.0005590161890722811, + 0.02085510455071926, + 0.0077576241455972195, + 0.0340564139187336, + 0.007735374849289656, + -0.019312480464577675, + 0.01211850717663765, + -0.014209950342774391, + -0.018897157162427902, + 0.0001613081549294293, + 0.008195196278393269, + 0.016390392556786537, + 0.012355833314359188, + -0.024474341422319412, + -0.02220490202307701, + 0.0130233159288764, + -0.01759186014533043, + -0.02551264502108097, + 0.003474614815786481, + -0.015678411349654198, + -0.003704525064677, + -0.027663420885801315, + -0.008996174670755863, + 0.004364590626209974, + -0.005836759228259325, + -4.997423820896074e-5, + -0.010182809084653854, + 0.00546222785487771, + 0.0002609669172670692, + 0.02480066567659378, + 0.008439939469099045, + -0.010590714402496815, + -0.003826896892860532, + -0.013638882897794247, + 0.00021449812629725784, + -0.001022545387968421, + -0.00671561062335968, + 0.041561879217624664, + -0.03399708494544029, + 0.014617855660617352, + 0.008098782040178776, + 0.01698370836675167, + 0.01822967454791069, + 0.027529925107955933, + -0.0011384276440367103, + -0.005406604148447514, + -0.015604246407747269, + 0.01503317803144455, + -0.011465857736766338, + -0.011495523154735565, + 0.006901022512465715, + 0.002109984867274761, + 0.0002890104369726032, + -0.018200010061264038, + -0.0021044225431978703, + -0.015470749698579311, + 0.004846660885959864, + -0.06775683909654617, + -0.007676043082028627, + -0.011028286069631577, + 0.014091286808252335, + -0.02082543820142746, + -0.008165529929101467, + -0.016123399138450623, + 0.00021218048641458154, + 0.0030815419740974903, + 0.005206359550356865, + 0.00915191974490881, + -0.015337252989411354, + -0.0085141034796834, + -0.017784686759114265, + -0.008158113807439804, + 0.005669889040291309, + 0.0036971087101846933, + 0.0021340884268283844, + -0.0024900787975639105, + 0.012185255065560341, + -0.0023176458198577166, + 0.0010002959752455354, + -0.011065368540585041, + -0.021834079176187515, + 0.008499271236360073, + 0.007846621796488762, + 0.010078978724777699, + -0.018600499257445335, + -0.004223677795380354, + 0.014803268015384674, + -0.011947927996516228, + -0.00978973601013422, + -0.008180363103747368, + 0.011866346932947636, + 0.021759914234280586, + 0.007186556234955788, + -0.010197642259299755, + -0.005907215643674135, + -0.022338397800922394, + 0.00888492725789547, + -0.014380529522895813, + -0.004231094382703304, + -0.02011345885694027, + 0.01634589210152626, + -0.024251846596598625, + 0.0062149991281330585, + 0.014832933433353901, + 0.012518996372818947, + 0.015159258618950844, + -0.0063818697817623615, + -0.005840467754751444, + -0.019089985638856888, + -0.02000962756574154, + 0.0015963944606482983, + 0.0005835832562297583, + -0.034590400755405426, + 0.022115904837846756, + -0.01731003448367119, + 0.012014675885438919, + -0.026877276599407196, + 0.0015565309440717101, + -0.01139169279485941, + -0.03037784807384014, + 0.012007259763777256, + 0.020410116761922836, + 0.009544992819428444, + -0.015500416047871113, + 0.028256738558411598, + -0.013920708559453487, + 0.011821848340332508, + -0.01419511716812849, + 0.021626416593790054, + -0.02836056984961033, + 0.014247032813727856, + 0.002777466783300042, + -0.010434968397021294, + 0.0018615331500768661, + -0.011680935509502888, + 0.0038380215410143137, + 0.02075127325952053, + 0.0034097207244485617, + 0.015441084280610085, + 0.01642005704343319, + -0.030526177957654, + -0.003952976781874895, + -0.0130233159288764, + -0.014261865988373756, + 0.00601475453004241, + -0.019267980009317398, + -0.01879332773387432, + 0.004486962221562862, + 0.035510044544935226, + -0.021240761503577232, + -0.010531382635235786, + 0.00973782129585743, + 0.03610336035490036, + -0.014840350486338139, + 0.0030759796500205994, + 0.02253122627735138, + -0.020588111132383347, + -0.007401634007692337, + -0.022486727684736252, + -0.04832569882273674, + 0.038357965648174286, + 0.02874622493982315, + -0.007160598877817392, + -0.035035390406847, + 0.008180363103747368, + -0.014373112469911575, + 0.020795773714780807, + 0.008795930072665215, + 0.001368338125757873, + -0.007683459669351578, + 0.011925678700208664, + 0.0072829704731702805, + 0.00790595356374979, + 0.010798376053571701, + -0.024192513898015022, + 0.0017595567042008042, + 0.002249043667688966, + 0.004709456581622362, + -0.023332204669713974, + -0.012378083541989326, + -0.0040827649645507336, + 0.014706853777170181, + -0.0014925639843568206, + -0.00532873161137104, + -0.005028364714235067, + -0.015797074884176254, + -0.006207582540810108, + -0.006745276506990194, + 0.0058738416992127895, + -0.003856562776491046, + 0.010464634746313095, + 0.014328613877296448, + -0.0019115942995995283, + 0.0096488231793046, + 0.032039135694503784, + -0.005981380585581064, + -0.01380204502493143, + 0.002773758489638567, + 0.0067749423906207085, + 0.035628706216812134, + -0.016716716811060905, + -0.04420214146375656, + -0.0012960275635123253, + -0.00924091786146164, + 0.004227386321872473, + 0.011317528784275055, + -0.01624206267297268, + -0.018926823511719704, + -0.0008839501533657312, + 0.028879722580313683, + 0.006541323848068714, + -0.01327547524124384, + 0.009938065893948078, + 0.013980040326714516, + -0.01741386391222477, + 0.008128447458148003, + 0.003893645014613867, + -0.014373112469911575, + 0.02729259803891182, + 0.00031265043071471155, + 0.02448917366564274, + -0.007253304589539766, + 0.009107421152293682, + 0.009678489528596401, + 0.014506609179079533, + -0.0016566532431170344, + -0.003556195879355073, + -0.0024845164734870195, + 0.021759914234280586, + -0.0054511032067239285, + 0.017888518050312996, + 0.012326167896389961, + -0.021151764318346977, + 0.0017975661903619766, + -0.004672374110668898, + 0.010976371355354786, + -0.017680857330560684, + 0.017740188166499138, + 0.007876288145780563, + 0.004190303850919008, + -0.007297803182154894, + 0.005714387632906437, + -0.021225927397608757, + 0.003734190948307514, + 0.006559865083545446, + 0.010234723798930645, + 0.003092666622251272, + 0.0051915268413722515, + -0.006719319149851799, + 0.019594306126236916, + 0.003057438414543867, + -0.0014684604248031974, + 0.0019876130390912294, + -0.00017799519991967827, + -0.03390808776021004, + -0.0009576512966305017, + 0.006797191686928272, + 0.009018423967063427, + 0.011102451011538506, + 0.006163083948194981, + -0.01265249215066433, + -0.022976214066147804, + -0.008936842903494835, + -0.012504163198173046, + 0.006137126125395298, + -0.01162160374224186, + 0.008239694871008396, + 0.012874986045062542, + 0.018911991268396378, + 0.0003411574871279299, + 0.03159414976835251, + 0.005436270032078028, + 0.011784765869379044, + -0.0006753620109520853, + -0.007609295193105936, + -0.020024459809064865, + 0.016642551869153976, + 0.00023408223933074623, + -0.005310190375894308, + -0.0008983195293694735, + 0.011591937392950058, + 0.011057952418923378, + 0.007720542140305042, + 0.01442502811551094, + -0.005669889040291309, + 0.016256894916296005, + 0.016019567847251892, + 0.0023584363516420126, + -0.028123242780566216, + 0.038001976907253265, + -0.01690954528748989, + 0.021433589980006218, + 0.004842952825129032, + 0.0025160363875329494, + -0.011769932694733143, + 0.01251157931983471, + -0.0024641212075948715, + -0.007913369685411453, + -0.0009483806788921356, + -5.7144457059621345e-6, + 0.0032335794530808926, + 0.0030667090322822332, + -0.015218590386211872, + 0.03592536598443985, + -0.01469202060252428, + 0.0007286678883247077, + -0.01624206267297268, + -0.01865983009338379, + 0.029117049649357796, + -0.009811985306441784, + 0.02576480619609356, + 0.009767486713826656, + -0.0009697030181996524, + -0.018496667966246605, + 0.003259537275880575, + 0.004116138909012079, + 0.012066591531038284, + -0.010486884042620659, + 0.009003590792417526, + -5.009012238588184e-5, + 0.01027180626988411, + -0.000272323377430439, + -0.004227386321872473, + -0.011324944905936718, + 0.0016770485090091825, + 0.0011996135581284761, + 0.0015175945591181517, + 0.027307430282235146, + 0.003063000738620758, + -0.006467158906161785, + -0.02533465065062046, + -0.0015528227668255568, + -0.00889976043254137, + -0.01314939558506012, + -0.011918262578547001, + 0.004787329118698835, + -0.025749972090125084, + -0.006062961649149656, + -0.010064145550131798, + 0.013950373977422714, + 0.0060407123528420925, + 0.010709377937018871, + -0.011695767752826214, + -0.02690694108605385, + -0.0050246561877429485, + -0.0032113301567733288, + -0.001602883916348219, + -0.010464634746313095, + 0.0007184701971709728, + -0.005603140685707331, + 0.014261865988373756, + -0.019267980009317398, + -0.008922009728848934, + -0.00545481126755476, + -0.011554854921996593, + -0.017903350293636322, + 0.012192671187222004, + 0.007101267110556364, + -0.010917039588093758, + -0.00803203321993351, + 0.03553970903158188, + -0.0021600460167974234, + 0.01843733713030815, + -0.0006577479070983827, + -0.00234916596673429, + -0.00875884760171175, + -0.0013405263889580965, + -0.0063410792499780655, + -0.005009823478758335, + 0.02131492644548416, + -0.010939288884401321, + 0.0055845994502305984, + 0.010687128640711308, + 0.002718135016039014, + -0.023495366796851158, + 0.015263088978827, + -0.006181625183671713, + 0.0035395089071244, + -0.014380529522895813, + -0.005465935915708542, + 0.02764858864247799, + -0.011043119244277477, + 0.011362027376890182, + 0.0037175039760768414, + 0.005910924170166254, + -0.00030175750725902617, + 0.025171488523483276, + 0.0036748594138771296, + 0.015871239826083183, + -0.013668548315763474, + 0.00462787551805377, + -0.025008326396346092, + -0.007004852872341871, + 0.004865202121436596, + -0.0005998067790642381, + -0.0260466318577528, + 0.007583337370306253, + 0.010509133338928223, + -0.021047933027148247, + -0.005762594752013683, + -0.0053991880267858505, + 0.02036561816930771, + -0.01578224077820778, + 0.005866425111889839, + 0.010234723798930645, + 0.01865983009338379, + -0.006407827138900757, + -0.010190225206315517, + -0.010353387333452702, + 0.0015083239413797855, + 0.00957465823739767, + -0.013327390886843204, + 0.0015593121061101556, + 0.007972701452672482, + 0.03037784807384014, + -0.003348534693941474, + -0.005291649140417576, + 0.0069084386341273785, + 0.01293431781232357, + -0.0017994202207773924, + 0.007950452156364918, + -0.0013562863459810615, + 0.006485700141638517, + 0.017280368134379387, + -0.02036561816930771, + 0.0011764370137825608, + -0.015975069254636765, + -0.0041680545546114445, + 0.0008640183950774372, + -0.005195234902203083, + 0.0014211804373189807, + -0.002742238575592637, + -0.02856823056936264, + -0.019238315522670746, + -0.02181924507021904, + -0.005621681921184063, + 0.018956489861011505, + 0.04639741778373718, + 0.03073383867740631, + 0.0025271610356867313, + -0.012163005769252777, + 0.006181625183671713, + -0.04550744220614433, + 0.00663773762062192, + -0.005729220807552338, + -0.009478244930505753, + -0.007720542140305042, + 0.018541166558861732, + -0.0050246561877429485, + 0.015767408534884453, + 0.024845164269208908, + -0.009989980608224869, + 0.011369443498551846, + -0.0018300132360309362, + 0.004746538586914539, + 0.01337930653244257, + 0.025735139846801758, + -0.010509133338928223, + 0.006552448496222496, + 0.001022545387968421, + -0.014855182729661465, + 0.01274149026721716, + -0.0018800743855535984, + -0.009181586094200611, + -0.010167975910007954, + -0.0009659947827458382, + -0.0003740680404007435, + 0.01364629901945591, + -0.013342224061489105, + -0.023154210299253464, + 0.005903507582843304, + 0.011043119244277477, + 0.023213541135191917, + 0.009129670448601246, + 0.006878772750496864, + 0.005877549760043621, + -0.0096488231793046, + -0.01659805327653885, + -0.0059665474109351635, + 0.0017780979396775365, + -0.011784765869379044, + -0.010486884042620659, + 0.027663420885801315, + 0.0009493077523075044, + 0.009174169041216373, + -0.007464673835784197, + -0.0038083556573837996, + 0.00029990338953211904, + 0.00012202405923744664, + -0.019638804718852043, + 0.0009372559725306928, + -0.016360726207494736, + 0.03648901730775833, + 0.012481913901865482, + -0.03862496092915535, + -0.013616632670164108, + -0.005606848746538162, + 0.012229753658175468, + 0.0005112726939842105, + 0.013950373977422714, + 0.021433589980006218, + -0.004880035296082497, + 0.025171488523483276, + 0.004531461279839277, + 0.002630991628393531, + -0.003893645014613867, + 0.004027141258120537, + 0.03248412534594536, + -0.004004891961812973, + -0.028449567034840584, + -0.004242219030857086, + -0.025824137032032013, + -0.013824294321238995, + 0.0028887137304991484, + -0.02978453040122986, + -0.019386643543839455, + 0.02278338558971882, + 0.0056253899820148945, + -0.020914437249302864, + 0.03257312253117561, + -0.00614825077354908, + 0.006923271808773279, + -0.0017030062153935432, + -0.008833011612296104, + -0.0002941092534456402, + 0.008343525230884552, + -0.0010874394793063402, + -0.0010614817729219794, + 0.014202534221112728, + -0.01518892403692007, + 0.01428411528468132, + 0.013297725468873978, + -0.0055326842702925205, + -0.025497812777757645, + 0.003915894310921431, + 0.018674664199352264, + 0.024459507316350937, + -0.015322420746088028, + 0.007809539791196585, + -0.01554491464048624, + 0.015663577243685722, + -0.0012709969887509942, + -0.029309876263141632, + 0.023836525157094002, + 0.0049430751241743565, + -0.000646159693133086, + 0.022857550531625748, + -0.014847766607999802, + 0.01848183572292328, + -0.0022768552880734205, + 0.005870133638381958, + 0.012229753658175468, + 0.0170875396579504, + 0.004920825827866793, + -0.0015991756226867437, + 0.023465700447559357, + 0.025749972090125084, + -0.032217130064964294, + 0.010850290767848492, + 0.006926979869604111, + -0.014543691650032997, + 0.0034264076966792345, + 0.0003724457055795938, + 0.008877511136233807, + 0.032632455229759216, + -0.004546293988823891, + -0.010390469804406166, + 0.020454615354537964, + -0.0034579276107251644, + -0.015678411349654198, + 0.005228609312325716, + -0.003956684842705727, + -0.01112470030784607, + 0.0041754706762731075, + 0.009530159644782543, + 0.01598990336060524, + -0.012912068516016006, + -0.003037043148651719, + 0.006459742784500122, + 0.014684604480862617, + 0.006493116728961468, + 0.0029943985864520073, + -0.008439939469099045, + -0.0006011973600834608, + 0.00581821845844388, + 0.010865123942494392, + -0.001521302736364305, + 0.0017335991142317653, + -0.024118350818753242, + 0.01113953348249197, + 0.003800939302891493, + -0.007483215071260929, + 0.009908399544656277, + -0.015263088978827, + 0.02704043872654438, + 0.010575882159173489, + -0.010449801571667194, + 0.003215038450434804, + 0.017725355923175812, + 0.004105014260858297, + 0.0219972413033247, + 0.008566019125282764, + -0.00015609344700351357, + -0.008706931956112385, + -0.0024047894403338432, + 0.0034931558184325695, + 0.003982642665505409, + -0.0007963431417010725, + -0.0006433784728869796, + -0.004742830526083708, + 0.005558642093092203, + -0.001078168861567974, + -0.025364316999912262, + -0.0009187148534692824, + -0.015203757211565971, + -0.0031334571540355682, + 0.015322420746088028, + 0.04188820347189903, + 0.011962761171162128, + 0.01731003448367119, + -0.0009233501041308045, + -0.014832933433353901, + 0.016360726207494736, + 3.7980422348482534e-5, + -0.0002945727901533246, + 0.002614304656162858, + -0.009938065893948078, + 0.018066512420773506, + -0.016790881752967834, + 0.007056768052279949, + -0.0016362579772248864, + -0.02135942503809929, + 0.008580852299928665, + 0.006478283554315567, + -0.006248373072594404, + -0.045922763645648956, + -0.007609295193105936, + -0.004575959872454405, + 0.006793483626097441, + 0.002117401221767068, + -0.007168014999479055 + ], + "001911ad-fe0d-41d8-8799-743f347e274d": [ + -0.01543000154197216, + -0.020186392590403557, + -0.017080793157219887, + 0.03034742921590805, + -0.019311999902129173, + 0.014736519195139408, + 0.04209141805768013, + 0.018663745373487473, + -0.01625162921845913, + 0.046101558953523636, + -0.02721167914569378, + 0.015354623086750507, + 0.010892209596931934, + -0.00827657151967287, + 0.022176388651132584, + 0.02335229329764843, + 0.005434798076748848, + 0.00792229175567627, + -0.005593093112111092, + -0.020502982661128044, + 0.022447749972343445, + -0.018151169642806053, + -0.041458237916231155, + 0.01576920598745346, + 0.011140959337353706, + 0.005366957280784845, + -0.005208662245422602, + 0.00979921966791153, + -0.0503830648958683, + -0.004311656579375267, + 0.01822654902935028, + 0.015678752213716507, + -0.008223806507885456, + -0.009708764962852001, + 0.01073391456156969, + -0.03898581862449646, + 0.003853731555864215, + 0.010349483229219913, + -0.014902351424098015, + -0.019131092354655266, + -0.014487769454717636, + 0.011947509832680225, + 0.01860344223678112, + -0.017970262095332146, + -0.04474474489688873, + 0.006380799692124128, + -0.02359350584447384, + -0.009452478028833866, + -0.017698898911476135, + -0.026880012825131416, + 0.02427191287279129, + 0.006633318029344082, + -0.0023160078562796116, + -0.015467691235244274, + 0.03211129084229469, + -0.020638663321733475, + 0.004692318849265575, + 0.03768930584192276, + 0.016854656860232353, + -0.07966011762619019, + 0.008947441354393959, + -0.011902282945811749, + 0.020367302000522614, + -0.026276985183358192, + 0.02410607971251011, + 0.01310834102332592, + 0.006135819014161825, + -0.008480094373226166, + -0.0005837131175212562, + -0.006312958896160126, + 0.028055919334292412, + 0.037025973200798035, + -0.028628796339035034, + 0.027633799239993095, + -0.013575688004493713, + 0.0037651616148650646, + 0.041186872869729996, + 0.028719251975417137, + -0.0003519238962326199, + -0.005393339786678553, + -0.003197937738150358, + 0.006256424821913242, + 0.042965810745954514, + 0.006904680747538805, + 0.05761941149830818, + 0.022281918674707413, + -0.03386007249355316, + -0.04664428532123566, + 0.00589837646111846, + -0.03298567980527878, + 0.003972453065216541, + 0.04417186602950096, + -0.015437539666891098, + 0.010937436483800411, + -0.026261908933520317, + 0.011887207627296448, + 0.05831289291381836, + -0.0007274036179296672, + -0.009331872686743736, + -0.0023555816151201725, + 0.005382033064961433, + 0.021905025467276573, + -0.015173714607954025, + 0.009776606224477291, + 0.02481463924050331, + 0.004319194704294205, + -0.005841842386871576, + -0.0074813272804021835, + -0.025508122518658638, + 0.015173714607954025, + -0.005174741614609957, + -0.02448297291994095, + -0.00446241395547986, + -0.0045490991324186325, + -0.05053382366895676, + -0.024633729830384254, + -0.03144795820116997, + -0.046312619000673294, + -0.00877407006919384, + -0.012723909690976143, + 0.057951077818870544, + 0.011902282945811749, + 0.003979990724474192, + 0.0018703318201005459, + -0.013244022615253925, + 0.018256699666380882, + 0.003810388967394829, + -0.0013106456026434898, + 0.02297540195286274, + 0.02205578237771988, + -0.012950045987963676, + -0.033437952399253845, + 0.025312138721346855, + -0.013244022615253925, + 0.0074662514962255955, + 0.006380799692124128, + -0.0022575894836336374, + 0.04387035220861435, + 0.0007547283312305808, + 0.016432536765933037, + -0.0296690221875906, + -0.031598713248968124, + -0.026472968980669975, + -0.002121907891705632, + 0.012279176153242588, + -0.015512918122112751, + -0.026126226410269737, + 0.04420201852917671, + -0.031870078295469284, + 0.02792023867368698, + -0.07375043630599976, + -0.007209964096546173, + 0.0008074934012256563, + -0.005736312363296747, + 0.0116083063185215, + 0.0034240735694766045, + 0.004722469951957464, + 0.005826766602694988, + 0.00012720140512101352, + 0.03205098584294319, + 0.014141027815639973, + -0.07381073385477066, + -0.0030566027853637934, + 0.00817857962101698, + 0.03259371221065521, + -0.005668471567332745, + 0.05599123239517212, + 0.016342082992196083, + -0.027015695348381996, + 0.02195025235414505, + 0.012716371566057205, + -0.014759132638573647, + 0.013839513063430786, + 0.02672925591468811, + -0.017050642520189285, + 0.00012519916344899684, + 0.029759475961327553, + 0.046825192868709564, + 0.014299322851002216, + -0.04441307857632637, + -0.013831975869834423, + -0.0064863297156989574, + -0.0028511960990726948, + 0.005374494940042496, + -0.0005347170517779887, + 0.032955531030893326, + 0.030136369168758392, + -0.011163572780787945, + 0.0029435348697006702, + -0.028598645702004433, + 0.00827657151967287, + -0.015543069690465927, + -0.03034742921590805, + 0.015784282237291336, + -0.015203866176307201, + -0.03413143754005432, + -0.01792503334581852, + -0.010907284915447235, + 0.013537999242544174, + 0.01895018294453621, + 0.003991297446191311, + -0.04435277730226517, + -0.027467966079711914, + 0.02397039905190468, + -0.03202083334326744, + 0.0503227636218071, + -0.03639279305934906, + 0.020126089453697205, + 0.02556842565536499, + -0.04061399772763252, + 0.01111080776900053, + -0.04215171933174133, + -0.03307613357901573, + -0.006825533229857683, + -0.0047978488728404045, + 0.006972521543502808, + 0.002734359120950103, + 0.04745837301015854, + 0.003774584038183093, + -0.017563216388225555, + -0.0016065066447481513, + 0.026985542848706245, + -0.0003507460933178663, + -0.03949839249253273, + -0.058765165507793427, + -0.03503597900271416, + -0.023307066410779953, + 0.039377786219120026, + -0.025236759334802628, + 0.028794629499316216, + 0.036513399332761765, + -0.019854726269841194, + 0.0028832319658249617, + -0.0251312293112278, + -0.01408072467893362, + 0.025357365608215332, + 0.04329747334122658, + 0.0007575550698675215, + 0.0018166245426982641, + -0.013590764254331589, + 0.00455663725733757, + 0.01781950332224369, + 0.006723772268742323, + 2.8451008802221622e-6, + -0.005875763017684221, + 0.033166591078042984, + 0.00780168641358614, + 0.050714731216430664, + 0.01418625470250845, + -0.009362023323774338, + 0.00961077306419611, + 0.023774415254592896, + 0.003810388967394829, + 0.022809568792581558, + -0.023548278957605362, + 0.05059412494301796, + 0.033468104898929596, + -0.030633868649601936, + 0.011645996011793613, + -0.011080656200647354, + 0.025221683084964752, + 0.0309655349701643, + 0.028900159522891045, + -0.002542143687605858, + 0.029382582753896713, + -0.027467966079711914, + 0.06096622347831726, + -0.04185020551085472, + 0.009776606224477291, + 0.016703899949789047, + 0.01822654902935028, + 0.030875079333782196, + -0.007375797256827354, + 0.04212157055735588, + 0.01625162921845913, + 0.0014067533193156123, + 0.00228774081915617, + -0.021015556529164314, + 0.02918659895658493, + 0.022538205608725548, + -0.006294114049524069, + -0.001366237411275506, + 0.007017748896032572, + -0.016055645421147346, + 0.023879945278167725, + -0.013696294277906418, + -0.0322921983897686, + -0.006354417186230421, + -0.04157884418964386, + 0.004066676367074251, + -0.0046583982184529305, + 0.02864387258887291, + 0.01662852242588997, + 0.004907147493213415, + 0.021256769075989723, + 0.012640993110835552, + -0.026744332164525986, + 0.025281986221671104, + 0.012520387768745422, + 0.04055369272828102, + -0.010688687674701214, + -0.001339854788966477, + -0.010025355033576488, + -0.03844309225678444, + -0.0026834786403924227, + -0.005008908919990063, + 0.01873912289738655, + 0.023578429594635963, + -0.03711643069982529, + 0.02359350584447384, + 0.017533065751194954, + -0.03355855867266655, + -0.027679026126861572, + -0.020638663321733475, + -0.004070444963872433, + 0.00770746311172843, + 0.004590557422488928, + 0.005627013277262449, + -0.007647160440683365, + -0.051016245037317276, + 0.009497704915702343, + -0.015678752213716507, + -0.08400192856788635, + 0.034704312682151794, + 0.04664428532123566, + -0.02017131634056568, + 0.04935791715979576, + 0.0005686373915523291, + -0.0476694330573082, + -0.017894882708787918, + -0.001895772060379386, + -0.033407799899578094, + -0.02164873667061329, + -0.007443638052791357, + -0.035789765417575836, + -0.04233263060450554, + -0.04317687079310417, + -0.031659018248319626, + 0.011374632827937603, + -0.03973960503935814, + -0.0239251721650362, + -0.0074247932061553, + 0.016568219289183617, + -0.016342082992196083, + 0.02734735980629921, + 0.0014623451279476285, + 0.005110669881105423, + 0.014110876247286797, + -0.023261839523911476, + 0.009143426083028316, + 0.0011099501280114055, + -0.01566367596387863, + 0.046101558953523636, + 0.0028172757010906935, + 0.05448365956544876, + -0.018829576671123505, + -0.017216475680470467, + 0.01114849653095007, + 0.012098267674446106, + -0.008743919432163239, + -0.005449873860925436, + -0.020744193345308304, + 0.0017421882366761565, + -0.0032601249404251575, + -0.0060868230648338795, + -0.006855684798210859, + -0.009942439384758472, + -0.006248887162655592, + -0.029744399711489677, + 0.010176112875342369, + -0.03024189919233322, + 0.02211608551442623, + -0.027558419853448868, + -0.03973960503935814, + -0.006833071354776621, + -0.022176388651132584, + 0.052312757819890976, + -0.0009629617561586201, + -0.02143767662346363, + 0.009965052828192711, + -0.008042898029088974, + 0.006622011307626963, + -0.011532927863299847, + 0.01700541563332081, + 0.024905093014240265, + 0.028975538909435272, + -0.01083944458514452, + 0.00961077306419611, + -0.014857124537229538, + -0.022176388651132584, + -0.00484684482216835, + 0.009723841212689877, + -0.023397522047162056, + 0.010741452686488628, + -0.013824437744915485, + 0.011329405941069126, + 0.0024422670248895884, + -0.022824643179774284, + 0.005476256366819143, + -0.017894882708787918, + -0.021995479241013527, + -0.011774139478802681, + -0.03226204589009285, + -0.01598026603460312, + 0.0023593506775796413, + -0.0035220657009631395, + -0.011020353063941002, + -0.005480024963617325, + 0.036030977964401245, + -0.011125883087515831, + -0.0019334614044055343, + 0.01803056336939335, + 0.03298567980527878, + 0.021874872967600822, + 0.04353868588805199, + -0.016854656860232353, + -0.010620846413075924, + 0.07266498357057571, + 0.012429933063685894, + -0.0193873792886734, + 0.03156856447458267, + 0.03645309805870056, + 0.0017205168260261416, + 0.013357089832425117, + -0.0074247932061553, + 0.03714657947421074, + -0.022146236151456833, + -0.007485096342861652, + -0.014178716577589512, + -0.01563352346420288, + -0.013975194655358791, + 0.07182074338197708, + -0.012384706176817417, + 0.023307066410779953, + -0.017457686364650726, + -0.026442816480994225, + 0.0031508260872215033, + -0.00780168641358614, + -0.013274173252284527, + -0.00961077306419611, + -0.03401083126664162, + 0.01131432969123125, + 0.0019749195780605078, + 0.010545467957854271, + -0.06398136913776398, + -0.027437815442681313, + -0.03542794659733772, + 0.03581991791725159, + 0.011427397839725018, + -0.030015762895345688, + 0.00657301489263773, + 0.01873912289738655, + -0.07972042262554169, + 0.0096936896443367, + -0.0003622884687501937, + -0.010545467957854271, + 0.011118344962596893, + 0.01548276748508215, + 0.04305626451969147, + -0.048182010650634766, + -0.03180977329611778, + -0.00044544049887917936, + 0.013236484490334988, + -0.017020490020513535, + 0.0296690221875906, + -0.023985475301742554, + 0.015573221258819103, + 0.019749196246266365, + 0.00560816889628768, + 0.028312206268310547, + -0.021739192306995392, + -0.01085451990365982, + -0.03310628607869148, + 0.007624546531587839, + 0.037840064615011215, + -9.928776853485033e-5, + -0.009226341731846333, + 0.002255704952403903, + 0.005027753300964832, + -0.03669430688023567, + -0.028176525607705116, + -0.011736449785530567, + 0.026503119617700577, + 0.002702323254197836, + 0.012399781495332718, + -0.011909821070730686, + -0.005189817398786545, + -0.021075859665870667, + 0.032654013484716415, + -0.008676078170537949, + 0.02508600242435932, + 0.0069159879349172115, + 0.006889604963362217, + 0.027769481763243675, + -0.03793051838874817, + -0.047398071736097336, + -0.007579319644719362, + -0.03530734032392502, + -0.032865073531866074, + -0.023035703226923943, + 0.010846982710063457, + 0.0010091311996802688, + -0.010296718217432499, + 0.010176112875342369, + -0.01319125760346651, + 0.02430206537246704, + -0.011352019384503365, + 0.013824437744915485, + -0.022930173203349113, + -0.023472899571061134, + -0.05418214574456215, + 0.008676078170537949, + -0.025387516245245934, + -0.015324471518397331, + -0.013085727579891682, + 0.03645309805870056, + -0.015543069690465927, + -0.013666142709553242, + 0.053609270602464676, + -0.0061622015200555325, + -0.011238951236009598, + -0.013560612685978413, + -0.015218941494822502, + -0.004424724727869034, + -0.009098198264837265, + 0.004974988289177418, + 0.014796821400523186, + -0.018422532826662064, + 0.014781746082007885, + -0.028206676244735718, + -0.00846501812338829, + 0.01949290931224823, + -0.03196053206920624, + 0.008917289786040783, + 0.014321936294436455, + -0.01727677881717682, + 0.026442816480994225, + 0.02235729619860649, + 0.022342219948768616, + -0.006343110464513302, + -0.05517714470624924, + 0.0426642931997776, + -0.006154663860797882, + -0.007650929037481546, + -0.01703556627035141, + 0.01901048608124256, + 0.0008852275786921382, + 0.03533749282360077, + -0.01693003624677658, + 0.03428219258785248, + -0.04212157055735588, + 0.03594052419066429, + -0.000641189340967685, + 0.012362092733383179, + 0.005676009692251682, + -0.031628865748643875, + -0.002956726122647524, + -0.021935176104307175, + -0.008125814609229565, + -0.014977729879319668, + -0.017729049548506737, + 0.04344823211431503, + 0.017623519524931908, + 0.010115809738636017, + -0.000615749042481184, + 0.014419928193092346, + -0.011713836342096329, + 0.03334749862551689, + -0.010236416012048721, + 0.015935039147734642, + 0.015060646459460258, + 0.009256493300199509, + 0.015316934324800968, + 0.021663812920451164, + -0.02170903980731964, + 0.03361885994672775, + 0.004801617469638586, + -0.0030264512170106173, + -0.01649283990263939, + -0.023231688886880875, + 0.029684098437428474, + -0.021000482141971588, + -0.016538066789507866, + 0.0022651273757219315, + 0.0006124512292444706, + 0.02942780964076519, + -0.011442473158240318, + -0.0009394059889018536, + -0.0030603716149926186, + 0.012806826271116734, + 0.007741383742541075, + 0.015339547768235207, + -0.02089495211839676, + 0.014947579242289066, + -0.025010623037815094, + 0.03031727857887745, + 0.0013379703741520643, + 0.04203111305832863, + 0.0225985087454319, + 0.0043493458069860935, + 0.0030754473991692066, + 0.023563355207443237, + -0.0057966155000030994, + -0.005845611449331045, + -0.009927363134920597, + 0.029216749593615532, + 0.010673611424863338, + -0.0013671795604750514, + 0.0048732273280620575, + 0.020774345844984055, + -0.0038744607008993626, + -0.01008565817028284, + 0.04462413862347603, + 0.00940725114196539, + 0.015889812260866165, + 0.014035497792065144, + 0.005913452245295048, + 0.026472968980669975, + -0.009655999951064587, + 0.013168643228709698, + 0.039106424897909164, + -0.046071406453847885, + 0.046614132821559906, + 0.005585554987192154, + 0.006165970582515001, + 0.040010966360569, + -0.013394779525697231, + -0.008661002852022648, + -0.01638730987906456, + 0.0002951543719973415, + 0.007089358288794756, + -0.012723909690976143, + 0.03455355763435364, + -0.01622147671878338, + -0.013590764254331589, + 0.021603509783744812, + 0.007907216437160969, + 0.017352156341075897, + 0.0029397658072412014, + 0.009392174892127514, + 0.009904749691486359, + 0.001678116386756301, + 0.0031508260872215033, + 0.06524772942066193, + -0.017095869407057762, + 0.028357433155179024, + -0.003175324061885476, + 0.03542794659733772, + 0.03452340513467789, + 0.018392382189631462, + -0.00704036233946681, + 9.09254522412084e-5, + 0.009708764962852001, + 0.025206608697772026, + 0.00598129304125905, + -0.011555541306734085, + 0.011540465988218784, + -0.023774415254592896, + -0.010289181023836136, + 0.020291922613978386, + 0.034704312682151794, + -0.02564380317926407, + 0.020834648981690407, + -0.0116083063185215, + 0.01566367596387863, + -0.01341739296913147, + 0.02573425881564617, + 0.00034391492954455316, + 0.015332009643316269, + 0.0309655349701643, + 0.004394573159515858, + 0.023307066410779953, + 0.02529706247150898, + -0.004488796461373568, + -0.0033618861343711615, + 0.0017007299466058612, + 0.005253889132291079, + 0.007711232174187899, + 0.019719045609235764, + 0.00010912231664406136, + -0.017020490020513535, + -0.02443774603307247, + -0.0212718453258276, + 0.009648462757468224, + -0.0027042077854275703, + -0.00371239660307765, + -0.020050710067152977, + 0.019131092354655266, + -0.02403070218861103, + 0.005310423206537962, + 0.0012183068320155144, + -0.003957377281039953, + -0.011480162851512432, + 0.004436031449586153, + -0.005284040700644255, + 0.008035359904170036, + 0.01227163802832365, + -0.024422669783234596, + 0.006067978218197823, + -0.013718907721340656, + -0.02748304232954979, + -0.007258960511535406, + -0.01895018294453621, + -0.03174947202205658, + -0.009723841212689877, + -0.014027959667146206, + -0.02170903980731964, + -0.015889812260866165, + -0.005792846437543631, + 0.03045295923948288, + 0.013824437744915485, + 0.025040775537490845, + 0.008427328430116177, + 0.019749196246266365, + 0.017698898911476135, + -0.001438789302483201, + -0.010846982710063457, + 0.03765915334224701, + 0.0012814364163205028, + 0.023156309500336647, + -0.00819365493953228, + 0.02048790641129017, + 0.00048477869131602347, + -0.017502913251519203, + -0.027196602895855904, + 0.009776606224477291, + 0.009181114844977856, + 0.0003222435771021992, + 0.009859522804617882, + -0.005951141472905874, + 0.048634279519319534, + 0.00032106577418744564, + 0.0060378266498446465, + 0.013847051188349724, + 0.005446104798465967, + -0.031387653201818466, + -0.01368875615298748, + 0.034975677728652954, + 0.012309327721595764, + -0.007601933088153601, + 0.006923525594174862, + 0.006354417186230421, + 0.01314602978527546, + -0.020020559430122375, + 0.0037840064615011215, + -0.008472556248307228, + 0.034674160182476044, + 0.007967519573867321, + 0.0011570616625249386, + -0.0064674848690629005, + 0.04314671829342842, + -0.013907354325056076, + 0.04290550574660301, + -0.008246419951319695, + -0.029925309121608734, + 0.01649283990263939, + 0.013967656530439854, + 0.004579250700771809, + -0.019990408793091774, + 0.026156378909945488, + -0.0037331257481127977, + 0.02372918650507927, + 0.005973754916340113, + -0.010914823040366173, + -0.0011090078623965383, + 0.0004004488873761147, + -0.0011872131144627929, + 0.023156309500336647, + 0.030392656102776527, + -0.0030245669186115265, + 0.04353868588805199, + 0.030151445418596268, + 0.03072432242333889, + 0.018392382189631462, + -0.021015556529164314, + -0.025900091975927353, + 0.005291578825563192, + -0.031146442517638206, + -0.0477900393307209, + -0.01148770097643137, + -0.025040775537490845, + -0.04387035220861435, + 0.0096936896443367, + -0.020593436434864998, + 0.0036332490853965282, + -0.04359899088740349, + 0.015437539666891098, + -0.021663812920451164, + -0.013402317650616169, + 0.005204893182963133, + 0.01495511643588543, + -0.011668609455227852, + -0.0013172412291169167, + 0.027060922235250473, + 0.017759202048182487, + -0.03373946622014046, + 0.003961145877838135, + 0.008932366035878658, + -0.015965189784765244, + 0.021075859665870667, + 0.01641746237874031, + -0.03455355763435364, + 0.04498595744371414, + 0.042965810745954514, + 0.012656069360673428, + -0.007997671142220497, + -0.013206332921981812, + -0.005020215641707182, + -0.0373576395213604, + 0.022477902472019196, + -0.004767697304487228, + 0.013470157980918884, + -0.00819365493953228, + 0.018482835963368416, + -0.017367232590913773, + 0.007345645688474178, + 0.011683684773743153, + 0.002103063277900219, + 0.040191877633333206, + 0.007307956460863352, + -0.009934901259839535, + 0.006113205570727587, + 0.030136369168758392, + 0.013801824301481247, + 0.022884946316480637, + -0.031116291880607605, + -0.02478448860347271, + -0.0010496472241356969, + 0.004202357493340969, + 0.0014161757426336408, + -0.017397383227944374, + 0.00513705238699913, + -0.019266773015260696, + 0.020834648981690407, + 0.009550469927489758, + 0.03826218470931053, + -0.016462689265608788, + -0.008095663040876389, + -0.020698966458439827, + 0.028930312022566795, + -0.014811897650361061, + -0.05942849814891815, + -0.0021294457837939262, + -0.006109436508268118, + -0.02902076579630375, + -0.008291647769510746, + -0.001496265409514308, + 0.023879945278167725, + 0.01803056336939335, + 0.061539098620414734, + 0.016538066789507866, + -0.011344481259584427, + 0.026533272117376328, + 0.009248956106603146, + -0.015573221258819103, + 0.01548276748508215, + -0.025146305561065674, + 0.01500034425407648, + -0.005728774704039097, + 0.022508053109049797, + 0.015588297508656979, + 0.010063044726848602, + -0.031176595017313957, + 0.017020490020513535, + 0.007586857303977013, + -0.022176388651132584, + -0.0129198944196105, + 0.01503803301602602, + -0.015693826600909233, + 0.016809429973363876, + 0.0026420203503221273, + -0.006859453860670328, + -0.014713904820382595, + 0.02748304232954979, + -0.0003222435771021992, + -0.008766532875597477, + -0.01706571877002716, + 0.00532549899071455, + -0.011555541306734085, + 0.00041364014032296836, + -0.008020284585654736, + 0.0009639040217734873, + -0.003116905689239502, + 0.004055369179695845, + -0.009731379337608814, + -0.008186117745935917, + 0.006855684798210859, + -0.00013379703159444034, + -0.006407182198017836, + 0.01114849653095007, + 0.03126704692840576, + 0.012407319620251656, + -0.015173714607954025, + -0.033166591078042984, + -0.015030495822429657, + 0.009196191094815731, + -0.01025902945548296, + -0.01601041667163372, + -0.0030019532423466444, + 0.007658467162400484, + 0.003559754928573966, + -0.03401083126664162, + -0.028282055631279945, + -0.00770746311172843, + 0.04109641909599304, + -0.06138834357261658, + 0.0008098489488475025, + 0.008585624396800995, + 0.011133421212434769, + 0.030030839145183563, + -0.0007396526634693146, + 0.030060991644859314, + -0.0034240735694766045, + -0.02675940841436386, + 0.045800045132637024, + 0.029412735253572464, + 0.01754814013838768, + -0.010681149549782276, + -0.0017732818378135562, + -0.02178441919386387, + 0.01191735826432705, + 0.015678752213716507, + 0.015173714607954025, + 0.0138772027567029, + -0.014435004442930222, + 0.014412390999495983, + -0.01989995315670967, + -0.015859659761190414, + -0.025523198768496513, + -0.0072664981707930565, + 0.014819434843957424, + -0.00863838940858841, + 0.02157335914671421, + -0.006090592127293348, + 0.022553279995918274, + 0.019673818722367287, + -0.00732303224503994, + -0.0018467759946361184, + -0.02246282622218132, + -0.003976221662014723, + -0.002052182797342539, + 0.006927294656634331, + 0.036784764379262924, + 0.005464949645102024, + -0.009331872686743736, + -0.010251491330564022, + 0.0038782295305281878, + 0.008012746460735798, + 0.01717124879360199, + -0.016507916152477264, + 0.0054536424577236176, + -0.004111903253942728, + -0.0008922943379729986, + -0.005502638872712851, + 0.021603509783744812, + 0.02021654322743416, + -0.014932502992451191, + -0.007394642103463411, + 0.0014472693437710404, + 0.01628177985548973, + 0.017126020044088364, + 0.01331186294555664, + 0.001852429355494678, + 0.013831975869834423, + -0.05002124607563019, + 0.017638595774769783, + -0.0024441515561193228, + -0.032141439616680145, + -0.02038237638771534, + -0.005050367210060358, + -0.022070858627557755, + -0.007179812993854284, + -0.026307135820388794, + 0.031146442517638206, + -0.027256906032562256, + -0.025447819381952286, + -0.011103269644081593, + -0.003278969554230571, + -0.018211472779512405, + -0.0002167135098716244, + 0.027694102376699448, + -0.023457825183868408, + -0.014450079761445522, + -0.015995342284440994, + -0.029789628461003304, + -0.008517783135175705, + 0.004925992339849472, + 0.017337080091238022, + -0.034704312682151794, + 0.009836909361183643, + 0.033679164946079254, + -0.03699582442641258, + -0.0038424248341470957, + 0.015437539666891098, + 0.01053039263933897, + -0.020502982661128044, + -0.01717124879360199, + -0.010281642898917198, + 0.0008984188316389918, + -0.03129719942808151, + -0.0148345110937953, + 0.01693003624677658, + -0.0290810689330101, + 0.04163914546370506, + 0.04332762584090233, + 0.03298567980527878, + 0.012618379667401314, + -0.03639279305934906, + -0.03283492475748062, + 0.02956349216401577, + -0.01693003624677658, + -0.0387747585773468, + -0.007944906130433083, + -0.014887276105582714, + 0.01881450228393078, + 0.02081957273185253, + 0.003893305314704776, + -0.017698898911476135, + 0.004296580795198679, + 0.04447337985038757, + -0.011133421212434769, + -0.03898581862449646, + 0.005966217257082462, + -0.0002558161795604974, + -0.003414651146158576, + 0.004903378896415234, + -0.001696018734946847, + 0.0022726652678102255, + 0.031025836244225502, + -0.013590764254331589, + 0.0033336190972477198, + -0.019688893109560013, + -0.0032525870483368635, + -0.013183719478547573, + 0.0036426715087145567, + -0.011389708146452904, + 0.004160899203270674, + -0.09515795856714249, + -0.029714249074459076, + -0.01073391456156969, + 0.03407113254070282, + 0.0012720141094177961, + -0.00380661990493536, + -0.001750668277963996, + 0.007160968147218227, + -0.01380936149507761, + 0.01812101900577545, + 0.0374782457947731, + -0.011329405941069126, + 0.017352156341075897, + 0.01631193235516548, + 0.010093196295201778, + 0.0018317003268748522, + -0.01322894636541605, + -0.006015213206410408, + 0.005506407469511032, + 0.00780922407284379, + -0.001515110139735043, + 0.0336490124464035, + 0.018754199147224426, + -0.012791750952601433, + -0.015512918122112751, + 0.039136577397584915, + -0.01846775971353054, + 0.00911327451467514, + 0.0030528337229043245, + -0.03916672617197037, + 0.001366237411275506, + 0.02894538640975952, + -0.02867402508854866, + -0.028221752494573593, + -0.00015158168389461935, + 0.028870008885860443, + 0.017608443275094032, + -0.022040706127882004, + 0.01590488664805889, + 0.021528132259845734, + 0.009655999951064587, + -0.007421024609357119, + -0.023819642141461372, + -0.01396011933684349, + 0.0003695907653309405, + -0.010010279715061188, + 0.004899609833955765, + -0.03031727857887745, + -0.0060378266498446465, + 0.004311656579375267, + -0.0006100956234149635, + -0.004756390582770109, + -0.009143426083028316, + -0.013289249502122402, + -0.008186117745935917, + -0.01138217095285654, + 0.019266773015260696, + -0.007699925452470779, + 0.011284178122878075, + 0.005457411520183086, + 0.06036319211125374, + 0.02208593301475048, + 0.006980059668421745, + -0.005016446579247713, + -0.022281918674707413, + 0.0019636128563433886, + 0.037327490746974945, + 0.012595766223967075, + 0.01949290931224823, + 0.003439149120822549, + 0.004353114869445562, + -0.013251559808850288, + -0.015889812260866165, + 0.01573905348777771, + -0.014992806129157543, + 0.017261702567338943, + 0.010748989880084991, + 0.020457755774259567, + 0.007937368005514145, + 0.0012343247653916478, + -0.003476838581264019, + 0.01218872144818306, + 0.011434935964643955, + -0.008796684443950653, + -0.02184472233057022, + -0.008125814609229565, + 0.007006442174315453, + -0.01563352346420288, + -0.0015754130436107516, + -0.013522922992706299, + 0.03790036588907242, + -0.0051634348928928375, + 0.033950526267290115, + 0.012588228099048138, + -0.014141027815639973, + 0.045830197632312775, + -0.004424724727869034, + 0.020201468840241432, + -0.003735010279342532, + -0.008208731189370155, + -0.003930994775146246, + -0.027030769735574722, + 0.00792229175567627, + -0.01655314303934574, + 0.00107131851837039, + -0.000835760380141437, + 0.014548072591423988, + 0.012821901589632034, + -0.03301583230495453, + -0.0035503327380865812, + 0.010326869785785675, + 0.006704927422106266, + -0.031387653201818466, + 0.002964264014735818, + -0.021000482141971588, + 0.000793831015471369, + -0.02694031596183777, + -0.014110876247286797, + -0.0245432760566473, + 0.00390838086605072, + -0.0022651273757219315, + 0.027814708650112152, + 0.00655417051166296, + 0.002685363171622157, + 0.011035429313778877, + -0.002400808734819293, + -0.00751901650801301, + -0.02014116570353508, + 0.005061673931777477, + 0.01622147671878338, + -0.0012324403505772352, + -0.008887138217687607, + -0.0068519157357513905, + 0.006622011307626963, + -0.008080587722361088, + 0.023548278957605362, + 0.03072432242333889, + -0.002263242844492197, + 0.03998081758618355, + -0.0490262508392334, + -0.004436031449586153, + 0.006350648123770952, + -0.0034127666149288416, + 0.0323524996638298, + -0.031025836244225502, + -0.00017631528316996992, + -0.013409854844212532, + -0.007036593277007341, + 0.005329268053174019, + -0.024874942377209663, + -0.006211197469383478, + 0.007545399013906717, + 0.02314123325049877, + -0.007748921401798725, + -0.013078189454972744, + -0.03461385890841484, + -0.0003834886883851141, + 0.01873912289738655, + -0.010937436483800411, + -0.007601933088153601, + -0.011359556578099728, + -0.011804291047155857, + 0.014872199855744839, + 0.015234017744660378, + 0.003915918990969658, + -0.009904749691486359, + -0.0010006510419771075, + 0.007967519573867321, + 0.008012746460735798, + -0.001231498084962368, + 0.009083122946321964, + 0.009565546177327633, + -0.0008084356086328626, + -0.008306723088026047, + -0.0025666416622698307, + -0.011683684773743153, + 0.0013483349466696382, + -0.003454224904999137, + 0.019266773015260696, + -0.01218872144818306, + 0.001667751814238727, + 0.023307066410779953, + -0.009806757792830467, + 0.03479476645588875, + -0.021633662283420563, + 0.004665936343371868, + -0.008555472828447819, + 0.004375728312879801, + 0.01700541563332081, + -0.010937436483800411, + 0.012331941165030003, + 0.02785993553698063, + 0.007726307958364487, + 0.00017631528316996992, + 4.0368780901189893e-5, + 0.009098198264837265, + 0.007311725523322821, + 0.018648669123649597, + -0.019296925514936447, + -0.00228774081915617, + -0.015241555869579315, + -0.016161175444722176, + 0.009392174892127514, + 0.025613652542233467, + -0.013560612685978413, + -0.0005328325787559152, + -0.060544103384017944, + 0.006158432457596064, + 0.01244500931352377, + -0.0051634348928928375, + 0.002080449601635337, + 0.0008131467620842159, + 0.019447682425379753, + -0.011276639997959137, + 0.004164668265730143, + 0.006912218872457743, + 0.010598232969641685, + -0.021693965420126915, + -0.0012550539104267955, + -0.036573704332113266, + 0.02877955511212349, + -0.009271569550037384, + 0.02932227961719036, + -0.014796821400523186, + 0.02400054968893528, + 0.029201675206422806, + 0.0010194957721978426, + -0.03711643069982529, + -0.013183719478547573, + 0.015558145940303802, + 0.003912149928510189, + 0.004537792410701513, + -0.0003516883298289031, + -0.01696018874645233, + -0.014826972968876362, + -0.002796546556055546, + 0.038352638483047485, + -0.017638595774769783, + 0.021392449736595154, + -0.0015961420722305775, + -0.004794079810380936, + -0.011555541306734085, + -0.02686493843793869, + 0.0017054411582648754, + 0.039407938718795776, + 0.013831975869834423, + -0.02457342855632305, + -0.011924896389245987, + 0.0019598440267145634, + -0.0011061811819672585, + 0.030030839145183563, + -0.008954979479312897, + -0.010613308288156986, + 0.012037964537739754, + 0.0055968621745705605, + 0.007485096342861652, + 0.013598301447927952, + -0.0005884242709726095, + 0.015098336152732372, + -0.0011099501280114055, + -0.018528062850236893, + -0.007861989550292492, + 0.007628315594047308, + -0.04809155315160751, + 0.016598369926214218, + -0.01408072467893362, + 0.006350648123770952, + 0.006603166460990906, + 0.04353868588805199, + -0.01741245947778225, + 0.006678544916212559, + 0.0076057021506130695, + -0.009851984679698944, + 0.004820462316274643, + 0.02235729619860649, + 0.014291784726083279, + -0.010613308288156986, + -0.01819639652967453, + -0.002184095326811075, + 0.04203111305832863, + 0.0017940109828487039, + -0.004010142292827368, + -0.019206469878554344, + 0.014615912921726704, + 0.004786541685461998, + 0.002462996169924736, + 0.004805386532098055, + -0.009912287816405296, + 0.0322318933904171, + -0.00834441278129816, + 0.012143494561314583, + 0.0064524090848863125, + 0.02789008617401123, + -0.006222504656761885, + 0.0027626261580735445, + -0.005280271638184786, + 0.013568149879574776, + 0.007726307958364487, + 0.01264853123575449, + 0.002212362363934517, + 0.02103063277900219, + -0.01007058285176754, + -0.04408141225576401, + -0.006697389762848616, + -0.00039455993101000786, + -0.00022672473278362304, + 0.006708696484565735, + 0.0008758052717894316, + -0.004854382481426001, + -0.0072664981707930565, + 0.0038518470246344805, + -0.0008541339193470776, + -0.00600013742223382, + -0.004688549786806107, + -0.001286147627979517, + 0.0032412803266197443, + 0.03382991999387741, + -0.0021746729034930468, + 0.0028266978915780783, + -0.022477902472019196, + -0.0017704551573842764, + 0.003160248277708888, + 0.011563079431653023, + 0.008457479998469353, + -0.029246902093291283, + -0.011804291047155857, + -0.004605633206665516, + -0.009701227769255638, + -0.005167203955352306, + 0.005302885547280312, + -0.0008225691271945834, + 0.05140821263194084, + -0.003716165665537119, + -0.0021878641564399004, + 0.007149661425501108, + -0.0069762906059622765, + 0.0017713974229991436, + 0.004217433277517557, + -0.011615844443440437, + -0.007779072970151901, + 0.026638802140951157, + 0.013070651330053806, + -0.02867402508854866, + -0.007571781519800425, + 0.008879601024091244, + 0.005830535665154457, + 0.014615912921726704, + 0.033679164946079254, + 0.03253341093659401, + -0.018528062850236893, + -0.00019716218230314553, + 0.0013813130790367723, + 0.005178510677069426, + 0.00390838086605072, + 0.003190399846062064, + 0.0373576395213604, + -0.009844446554780006, + 0.007025286555290222, + -0.02386486902832985, + -0.03796067088842392, + -0.027603648602962494, + -0.020095938816666603, + -0.0069009121507406235, + 0.04667443782091141, + -0.00199753325432539, + 0.006949908100068569, + 0.009452478028833866, + 0.004315425641834736, + 0.018241623416543007, + -0.02764887548983097, + 0.010522854514420033, + 0.006309189833700657, + -0.0031074832659214735, + -0.0071571990847587585, + -0.02048790641129017, + -0.0033449260517954826, + 0.005291578825563192, + 0.0047337766736745834, + -0.001304049976170063, + -0.02157335914671421, + -0.002310354495421052, + -0.01598026603460312, + 0.007583088241517544, + -0.00512951472774148, + -0.02283971942961216, + -0.00703282468020916, + -0.002968032844364643, + -0.0025195300113409758, + 0.005412184167653322, + -0.01655314303934574, + -0.02424176223576069, + -0.01622147671878338, + 0.00940725114196539, + 0.010794217698276043, + 0.021181389689445496, + 0.002055951626971364, + -0.0264277420938015, + 0.010605771094560623, + -0.032925378531217575, + -0.016643596813082695, + -0.0028832319658249617, + -0.004032755736261606, + -0.016327006742358208, + 0.013937505893409252, + -0.024799562990665436, + 0.01884465292096138, + 0.021377375349402428, + 0.03193037956953049, + 0.013673679903149605, + -0.021588435396552086, + -0.012196259573101997, + 0.02229699306190014, + 0.009068046696484089, + -0.038563698530197144, + -0.010703762993216515, + -0.009362023323774338, + -0.0037726995069533587, + 0.01898033544421196, + 0.006712465547025204, + 0.0038819985929876566, + -0.025824712589383125, + 0.0004572184116113931, + -0.00827657151967287, + -0.01302542444318533, + -0.012437471188604832, + 0.008057973347604275, + -0.021829646080732346, + 0.004145823884755373, + 0.0008465960272587836, + 0.008050436154007912, + 0.017533065751194954, + -0.007824299857020378, + 0.008201193064451218, + 0.0056722406297922134, + 0.03862399980425835, + -0.011615844443440437, + 0.009904749691486359, + -0.02300555258989334, + -0.0012729563750326633, + -0.020337149500846863, + -0.028523266315460205, + -0.007628315594047308, + 0.010213801637291908, + -0.009362023323774338, + -0.005510176531970501, + 0.015452615916728973, + 0.019507985562086105, + 0.0010995855554938316, + 0.01965874247252941, + 0.0022293224465101957, + 0.00513705238699913, + -0.007145892363041639, + 0.0322318933904171, + -0.008563010022044182, + 0.0032563561107963324, + 0.021693965420126915, + -0.0071006654761731625, + -0.003211128991097212, + -0.005140821449458599, + 0.023683959618210793, + -0.004247584845870733, + 0.00811073835939169, + -0.01302542444318533, + 0.006731309927999973, + 0.005359419155865908, + 0.025101078674197197, + 0.042965810745954514, + -0.016734052449464798, + -0.02543274313211441, + -0.027769481763243675, + -0.009497704915702343, + -0.03232235088944435, + -0.02864387258887291, + 0.015889812260866165, + 0.00903035793453455, + -0.02202562987804413, + -0.0148345110937953, + -0.006927294656634331, + 0.015399850904941559, + -0.016447613015770912, + 0.02629205957055092, + -0.018588365986943245, + 0.0021878641564399004, + 0.021739192306995392, + 0.030648943036794662, + 0.005140821449458599, + 0.02853834256529808, + -0.017367232590913773, + -0.008698691613972187, + 0.03572946414351463, + -0.014563147909939289, + 0.03058864176273346, + 0.012482698075473309, + 0.003591790795326233, + 0.020910026505589485, + -0.016673749312758446, + -0.008057973347604275, + -0.014826972968876362, + 0.026276985183358192, + -0.011970123276114464, + 0.014110876247286797, + -0.015218941494822502, + -0.031357504427433014, + -0.008585624396800995, + -0.00733056990429759, + -0.016100872308015823, + -0.00675015477463603, + 0.009542932733893394, + -0.001993764191865921, + 0.008374563418328762, + -0.016809429973363876, + 0.011804291047155857, + 0.001554683898575604, + 0.003341156989336014, + 0.0006840609130449593, + -0.014563147909939289, + 0.0036238268949091434, + 3.459760409896262e-5, + -0.014246557839214802, + -0.005954910535365343, + -0.017985336482524872, + -0.012294251471757889, + -0.013651066459715366, + -0.028462965041399002, + 0.019176319241523743, + 0.017502913251519203, + 0.010877133347094059, + -0.00751147884875536, + -0.021663812920451164, + -0.015799356624484062, + 0.00815596617758274, + 0.008864524774253368, + 0.012618379667401314, + 0.02256835624575615, + 0.012135956436395645, + 0.003599328687414527, + 0.008804221637547016, + -0.00815596617758274, + -0.010093196295201778, + -0.02178441919386387, + -0.00011995799286523834, + 0.008238882757723331, + -0.008246419951319695, + 0.008095663040876389, + 0.015723979100584984, + 0.0979318916797638, + -0.0005512061179615557, + -0.003927225712686777, + -0.001946652657352388, + 0.01812101900577545, + -0.01652299240231514, + 0.004515178967267275, + 0.01703556627035141, + 0.012686220929026604, + 0.008246419951319695, + 0.006588090676814318, + -0.013266636058688164, + 0.022900022566318512, + 0.00979921966791153, + -0.016266705468297005, + -0.002721167868003249, + 0.014329474419355392, + 0.03150825947523117, + 0.004315425641834736, + 0.014487769454717636, + 0.010115809738636017, + 0.0005022099940106273, + -0.009497704915702343, + 0.01925169676542282, + -0.011427397839725018, + 0.009482629597187042, + -0.0045641749165952206, + 0.013839513063430786, + 0.012738985940814018, + 0.0106660732999444, + 0.0015782397240400314, + -0.001667751814238727, + -0.009369561448693275, + 0.0077715348452329636, + 0.0010694341035559773, + 0.017985336482524872, + -0.010575619526207447, + -0.00039903551805764437, + -0.0011174879036843777, + 0.01418625470250845, + -0.007997671142220497, + -0.008992668241262436, + 0.026548346504569054, + 0.008781608194112778, + 0.0017120367847383022, + 0.0008480093674734235, + -0.010145961306989193, + 0.00017655084957368672, + -0.00032318581361323595, + -0.00356729282066226, + -0.011480162851512432, + -0.0030905231833457947, + 0.015693826600909233, + -0.007413486484438181, + 0.011819366365671158, + 0.00351641234010458, + 0.020397452637553215, + -0.03512643277645111, + -0.0151887908577919, + 0.005118208006024361, + -0.01655314303934574, + -0.006335572339594364, + -0.018151169642806053, + -0.016131022945046425, + -0.010078120045363903, + -0.0199753325432539, + -0.019055712968111038, + -0.024332216009497643, + 0.005841842386871576, + 0.006735078990459442, + -0.0013558728387579322, + -0.0006859453860670328, + -0.0023876174818724394, + -0.02222161553800106, + -0.014133489690721035, + 0.02167888917028904, + 0.014789284206926823, + 0.002349928254261613, + -0.0031451727263629436, + 0.008668540045619011, + 0.014517921023070812, + -0.002357466146349907, + -0.01587473601102829, + -0.009437402710318565, + -0.0030886386521160603, + -0.011661071330308914, + 0.024663882330060005, + -0.01566367596387863, + -0.001993764191865921, + -0.023216612637043, + -0.02311108261346817, + 0.0022538204211741686, + 0.013651066459715366, + 0.0011956932721659541, + 0.008954979479312897, + 0.007047900464385748, + -0.023201536387205124, + 0.011171109974384308, + 0.004861920606344938, + -0.0015772974584251642, + 0.008887138217687607, + 0.01502295769751072, + -0.0024761874228715897, + 0.005302885547280312, + -0.00811073835939169, + -0.010884671472012997, + 0.030302202329039574, + 0.005755157209932804, + -0.039076272398233414, + 0.0031508260872215033, + -0.009083122946321964, + -0.01206811610609293, + -0.0012936854036524892, + -0.0012776674702763557, + -0.009565546177327633, + 0.0002708918764255941, + 0.014872199855744839, + 0.0023235457483679056, + 0.005389570724219084, + -0.015558145940303802, + -0.02222161553800106, + 0.02205578237771988, + 0.004432262387126684, + -0.014623451046645641, + 0.01576920598745346, + -0.0008013688493520021, + 0.008894676342606544, + 0.003606866579502821, + -0.027603648602962494, + 0.0033844998106360435, + 0.01560337282717228, + 0.005830535665154457, + 0.016296856105327606, + -0.0012041733134537935, + 0.020050710067152977, + -0.013824437744915485, + -0.023714112117886543, + -0.0029944153502583504, + 0.019688893109560013, + -0.010319331660866737, + 0.01881450228393078, + 0.01717124879360199, + 0.006192353088408709, + 0.009098198264837265, + 0.009663538075983524, + 0.02737751230597496, + -0.031357504427433014, + -0.01472898107022047, + 0.014811897650361061, + -0.0064863297156989574, + 0.010507778264582157, + -0.030166521668434143, + 0.009867059998214245, + -0.025146305561065674, + 0.021754266694188118, + 0.002583601977676153, + -0.017156172543764114, + 0.0032412803266197443, + -0.012671144679188728, + -0.006520249880850315, + 0.0014284247299656272, + 0.00741725554689765, + -0.004500103183090687, + -0.014789284206926823, + -0.007428562268614769, + 0.004737545736134052, + 0.01000274159014225, + 0.02030699886381626, + 0.004062907304614782, + -0.007914754562079906, + -0.01187966950237751, + -0.006674776319414377, + 0.01541492622345686, + -0.03581991791725159, + 0.013643529266119003, + -0.0027456660754978657, + 0.003838655771687627, + -0.005005139857530594, + -0.025523198768496513, + 0.006067978218197823, + -0.004100596532225609, + -0.013364627957344055, + -0.0006605050875805318, + 0.00040209779399447143, + 0.010711301118135452, + -0.0028719252441078424, + -0.00799013301730156, + -0.0093394098803401, + 0.009098198264837265, + -0.005257658194750547, + -0.016598369926214218, + 0.024633729830384254, + -0.011698761023581028, + -0.010296718217432499, + -0.025628728792071342, + -0.0023819641210138798, + 0.00780168641358614, + 0.02140752598643303, + 0.005046598147600889, + -0.010726376436650753, + -0.007699925452470779, + -0.006248887162655592, + 0.008171041496098042, + -0.006218735594302416, + -0.008321798406541348, + -0.022719113156199455, + -0.011593231000006199, + -0.014012884348630905, + 0.0006807630998082459, + 0.011404784396290779, + -0.056624412536621094, + -0.018392382189631462, + 0.007779072970151901, + 0.0008560183923691511, + -0.019191395491361618, + -0.005604399833828211, + 0.01563352346420288, + 0.011857056058943272, + 0.007733845617622137, + 0.009535394608974457, + -0.004081751685589552, + 0.020608512684702873, + 0.022688962519168854, + -0.00942232646048069, + -0.01522647961974144, + 0.0004932588199153543, + 0.014382239431142807, + 0.010613308288156986, + 0.01833207905292511, + -0.0010515316389501095, + 0.038081273436546326, + -0.01129925437271595, + -0.005084287375211716, + 0.02314123325049877, + -0.013507847674190998, + 0.03392037749290466, + 0.013764134608209133, + 0.010017817839980125, + 0.018784349784255028, + -0.00664839381352067, + -0.012535463087260723, + 0.010831906460225582, + -0.009294182993471622, + -0.009188652969896793, + 0.00800520833581686, + -0.006316727958619595, + 0.00428527407348156, + -0.015829509124159813, + 0.004454875830560923, + -2.189218685089145e-5, + -0.00981429498642683, + -0.0174727626144886, + 0.006637086626142263, + 0.020291922613978386, + 0.004760159179568291, + 0.002353697083890438, + -0.0065918597392737865, + -0.003135750303044915, + -0.015158639289438725, + -0.01604056917130947, + 0.004013911355286837, + 0.008336874656379223, + 0.005766463931649923, + -0.028251903131604195, + -0.0033468103501945734, + -0.0028681561816483736, + -0.021347222849726677, + -0.0035220657009631395, + 0.003759508254006505, + 0.00827657151967287, + 0.009143426083028316, + 0.013357089832425117, + -0.002314123325049877, + 0.008095663040876389, + -0.010884671472012997, + -0.01319125760346651, + 0.009746454656124115, + -0.010500241070985794, + -0.003831117879599333, + -0.0039837597869336605, + -0.01200027484446764, + 0.0022500515915453434, + -0.006328034680336714, + -0.01884465292096138, + 0.013402317650616169, + -0.016914959996938705, + -0.003814157797023654, + 0.00991982501000166, + 0.007089358288794756, + 0.01141985971480608, + -0.007763997185975313, + -0.019930105656385422, + 0.006150894798338413, + -0.013945043087005615, + 0.02243267558515072, + 0.013447544537484646, + -0.008608237840235233, + 0.012806826271116734, + 0.013477696105837822, + -0.018286852166056633, + -0.0034994520246982574, + 0.013598301447927952, + -0.007451175712049007, + -0.01849791221320629, + 0.017804428935050964, + 0.0012720141094177961, + 0.015030495822429657, + -0.0003585195227060467, + 0.005728774704039097, + 0.002887000795453787, + 0.010047969408333302, + -0.0045830197632312775, + -0.00896251667290926, + -0.02057836204767227, + -0.01148770097643137, + -0.01754814013838768, + -0.001496265409514308, + 0.017216475680470467, + -0.017502913251519203, + -0.009942439384758472, + 0.006663469132035971, + 0.007763997185975313, + 0.010243953205645084, + 0.0018722162349149585, + -0.005295347422361374, + 0.017940109595656395, + 0.00800520833581686, + 0.012859591282904148, + 0.007545399013906717, + -0.014872199855744839, + 0.017261702567338943, + -0.002327314577996731, + -0.01189474482089281, + -0.01319125760346651, + -0.002397039905190468, + 0.029473038390278816, + -0.012249024584889412, + -0.007579319644719362, + -0.012678682804107666, + 0.00047158743836916983, + -0.022930173203349113, + 0.0008376448531635106, + -0.004801617469638586, + 0.0027155145071446896, + 0.018452683463692665, + 0.018241623416543007, + 0.01008565817028284, + -0.005834304727613926, + 0.01570890285074711, + 0.014721442945301533, + 0.014638526365160942, + 0.0018769274465739727, + 0.00863838940858841, + -0.009949976578354836, + -0.007620777934789658, + -0.010937436483800411, + 0.0012305558193475008, + 0.014985268004238605, + -0.023955322802066803, + 0.007718769833445549, + -0.004545330535620451, + -0.0005413126782514155, + -0.006493867374956608, + -0.013342014513909817, + 0.00759439542889595, + -0.006542863789945841, + -0.0030566027853637934, + 0.01457822322845459, + -0.02375933900475502, + -0.00014251268294174224, + -0.0023857331834733486, + -0.01215103268623352, + -0.02170903980731964, + -0.01019118819385767, + -0.01949290931224823, + 0.014744056388735771, + -0.020698966458439827, + 0.009738916531205177, + -0.012452546507120132, + 0.0016498493496328592, + 0.024332216009497643, + 0.002596793230623007, + -0.012640993110835552, + -0.012399781495332718, + 0.013326938264071941, + -0.0005469660391099751, + 0.008329336531460285, + 0.013032962568104267, + 0.012045502662658691, + -0.009143426083028316, + -0.008329336531460285, + 0.0053179613314569, + 0.0020540670957416296, + -0.012362092733383179, + -0.009143426083028316, + -0.0036238268949091434, + -0.011698761023581028, + 0.035458099097013474, + -0.01887480542063713, + 0.006475022993981838, + -0.001881638658232987, + -0.015965189784765244, + 0.009836909361183643, + 0.0009059567237272859, + 0.010251491330564022, + -0.030136369168758392, + 0.004062907304614782, + 0.016447613015770912, + 0.03428219258785248, + -0.022643735632300377, + 0.014299322851002216, + 0.009256493300199509, + -0.019342152401804924, + 0.005046598147600889, + 0.00885698664933443, + 0.002005071146413684, + 0.004688549786806107, + -0.008766532875597477, + 0.009565546177327633, + 0.0012918009888380766, + 0.020593436434864998, + 0.003961145877838135, + 0.007997671142220497, + -0.0032638940028846264, + 0.0017676284769549966, + -0.02505584992468357, + 0.018965259194374084, + -0.010439937934279442, + -0.0009921710006892681, + 0.009309258311986923, + -0.005883300676941872, + -0.007839376106858253, + -0.009934901259839535, + 0.008804221637547016, + -0.017246626317501068, + 0.003446687012910843, + 0.03979990631341934, + -0.012354554608464241, + 0.005969986319541931, + 0.01543000154197216, + -0.02065373957157135, + -0.007089358288794756, + -0.0005295347655192018, + 0.01264853123575449, + 0.00788460299372673, + -0.000384195358492434, + 0.007669773884117603, + 0.014276709407567978, + 0.012196259573101997, + 6.0656228015432134e-5, + -0.008359488099813461, + 0.017970262095332146, + -0.01085451990365982, + -0.00599259976297617, + -0.004394573159515858, + -0.012965121306478977, + 0.018543139100074768, + 0.013658604584634304, + 0.037840064615011215, + -0.045016106218099594, + -0.008095663040876389, + 0.00232543027959764, + -0.018151169642806053, + 0.0033505794126540422, + -0.006369492970407009, + -0.005250120535492897, + 0.010334407910704613, + 0.011457549408078194, + -0.006697389762848616, + 0.010055506601929665, + -0.014397314749658108, + 0.0060868230648338795, + 0.00892482791095972, + -0.003520181169733405, + 0.028930312022566795, + 0.005084287375211716, + 0.008457479998469353, + 0.003301583230495453, + 0.02092510275542736, + -0.01714109629392624, + -0.013733983039855957, + 0.00294918823055923, + -0.010907284915447235, + -0.0013097033370286226, + 0.008977592922747135, + 0.009648462757468224, + -0.005057904869318008, + 0.010176112875342369, + -0.012135956436395645, + 0.015136025846004486, + 0.0018731585005298257, + 0.00438703503459692, + 0.017638595774769783, + -0.006753923837095499, + 0.010560543276369572, + -0.025583501905202866, + 0.009120811708271503, + -0.0023405058309435844, + -0.007296649739146233, + -0.0006110378890298307, + -0.007172274868935347, + -0.006659700535237789, + -0.0011457549408078194, + 0.03144795820116997, + 0.01587473601102829, + -0.016372235491871834, + -0.007571781519800425, + 0.009294182993471622, + 0.01836222968995571, + 0.007794148754328489, + 0.002651442773640156, + -0.005284040700644255, + -0.022538205608725548, + 0.004187281709164381, + 0.0016404270427301526, + 0.014012884348630905, + 0.007130816578865051, + -0.006150894798338413, + 0.020729118958115578, + -0.002608099952340126, + -0.014389777556061745, + -0.01717124879360199, + -0.0021124857012182474, + 0.014698829501867294, + 0.014133489690721035, + 0.012015351094305515, + 0.002553450409322977, + 0.014630989171564579, + 0.009927363134920597, + -0.007111972197890282, + -0.020080862566828728, + -0.0003872576344292611, + 0.004157130606472492, + -0.007311725523322821, + 0.01989995315670967, + 0.017834579572081566, + 0.008676078170537949, + 0.020080862566828728, + 0.024528199806809425, + 0.011397246271371841, + 0.0001872687425930053, + 0.01426917128264904, + 0.005302885547280312, + 0.004277736414223909, + -0.022900022566318512, + -0.023533202707767487, + -0.0015659906202927232, + -0.0023235457483679056, + -0.011789214797317982, + -0.006968752946704626, + -0.011525389738380909, + -0.004160899203270674, + 0.03874460607767105, + 0.0046583982184529305, + -0.00019374658586457372, + -0.016914959996938705, + -0.011532927863299847, + 0.002182210795581341, + 0.004104365594685078, + 0.015754129737615585, + -0.005080518312752247, + -0.02027684636414051, + -0.022101009264588356, + -0.01700541563332081, + -0.0012833208311349154, + -0.006757692433893681, + 0.02051805891096592, + 0.011472624726593494, + -0.004394573159515858, + 0.016447613015770912, + -0.015369699336588383, + 0.002451689448207617, + -0.006022751331329346, + 0.013666142709553242, + -7.137412467272952e-5, + -0.007379566319286823, + -0.0212718453258276, + -0.006147125735878944, + 0.01976427249610424, + -0.01843760907649994, + 0.0036351336166262627, + -0.0036030977498739958, + -0.015512918122112751, + -0.005996368825435638, + -0.006297883111983538, + 0.011992737650871277, + 0.009135887958109379, + -0.012482698075473309, + 0.014352087862789631, + -0.01276913657784462, + 0.029865005984902382, + -0.00722127128392458, + -0.006599397398531437, + 0.010673611424863338, + 0.00342218903824687, + -0.005246351473033428, + -0.0069461390376091, + 0.010266566649079323, + -0.019915029406547546, + -0.026819709688425064, + 0.0012852053623646498, + -0.004990064073354006, + 0.005321729928255081, + -0.005415953230112791, + 0.00808812491595745, + 0.009671076200902462, + -0.004013911355286837, + -0.009904749691486359, + -0.012309327721595764, + -0.010372096672654152, + -0.00023025811242405325, + -0.011321867816150188, + 0.006520249880850315, + 0.01466113980859518, + -0.009874598123133183, + -0.02573425881564617, + 0.02378948964178562, + 0.02229699306190014, + 0.03328719362616539, + -0.021739192306995392, + 0.0005799442296847701, + 0.0009068989311344922, + 0.004006373230367899, + 0.011721374467015266, + 0.00040492447442375124, + 0.0031432881951332092, + 0.0004979699733667076, + 0.01631193235516548, + -0.007443638052791357, + -0.018784349784255028, + 0.006294114049524069, + 0.0038593849167227745, + -0.0007401237380690873, + -0.017352156341075897, + -0.003476838581264019, + -0.010304256342351437, + -0.015347085893154144, + -0.009731379337608814, + 0.004179744049906731, + -0.014744056388735771, + 0.004876996390521526, + -0.015829509124159813, + -0.005683547351509333, + 0.0010213801870122552, + 0.009633386507630348, + 0.008231344632804394, + 0.0028191599994897842, + 0.004439800512045622, + -0.01129925437271595, + -0.0038744607008993626, + -0.002713629975914955, + 0.0025006853975355625, + -0.012301789596676826, + 0.017804428935050964, + 0.0006840609130449593, + -0.02300555258989334, + 0.012814364396035671, + -0.0029435348697006702, + 0.012279176153242588, + -0.006527788005769253, + -0.010432399809360504, + -0.0361214317381382, + 0.006373261567205191, + -0.005382033064961433, + 0.023201536387205124, + -0.017050642520189285, + 0.007982594892382622, + 0.017080793157219887, + 0.0006176335155032575, + -0.023457825183868408, + 0.0011137189576402307, + 0.026578499004244804, + -0.02351812645792961, + 0.014902351424098015, + -0.008811759762465954, + -0.021241692826151848, + -0.0021916332188993692, + -0.013402317650616169, + 0.017985336482524872, + -0.011246489360928535, + 0.0018147401278838515, + 0.0302871260792017, + 0.0073908730410039425, + -0.0033958065323531628, + -1.7077967640943825e-5, + 0.005555403884500265, + 0.0028021999169141054, + -0.022643735632300377, + -0.001583893084898591, + 0.0032130132894963026, + -0.02308093197643757, + -0.011977661401033401, + 0.0018882342847064137, + -0.02713629975914955, + 0.036030977964401245, + 0.008585624396800995, + -0.024874942377209663, + -0.011367094703018665, + -0.03247310593724251, + -0.0034334957599639893, + -0.02021654322743416, + -0.024422669783234596, + 0.008668540045619011, + -0.005875763017684221, + 0.0012503426987677813, + 0.007967519573867321, + 0.0096786143258214, + -0.00042424025014042854, + 0.0004631073388736695, + 0.00645994720980525, + 0.006505174096673727, + 0.013862126506865025, + -0.0009191479766741395, + -0.012889742851257324, + -0.014630989171564579, + -0.01227163802832365, + 0.026653876528143883, + -0.014593299478292465, + -0.0063619548454880714, + 0.017804428935050964, + -0.012987734749913216, + 0.002604331122711301, + -0.0010986432898789644, + 0.01331186294555664, + -0.010801754891872406, + -0.023231688886880875, + 0.0008145601605065167, + 0.016839582473039627, + 0.003356232773512602, + 0.006682313978672028, + 0.01549784280359745, + 0.006260193884372711, + -0.005415953230112791, + 0.009105736389756203, + -0.004488796461373568, + -0.024829715490341187, + -0.005005139857530594, + 0.005683547351509333, + 0.009588159620761871, + 0.013236484490334988, + -0.03183992579579353, + -0.021874872967600822, + -0.017337080091238022, + 0.014970192685723305, + 0.016191326081752777, + 0.003007606603205204, + -0.004741314798593521, + 0.016342082992196083, + -0.027573496103286743, + 0.00043672483297996223, + 0.0021709040738642216, + -0.0063016521744430065, + 0.032412804663181305, + -0.011397246271371841, + -0.006248887162655592, + -0.0004039822379127145, + 0.00542725995182991, + -0.0011721374467015266, + 0.004447338171303272, + 0.012286714278161526, + 0.009022819809615612, + 0.002314123325049877, + -0.0161762498319149, + 0.021829646080732346, + -0.008600699715316296, + 0.01433701254427433, + 0.00885698664933443, + -2.6470848752069287e-5, + -0.01445761788636446, + 0.012625917792320251, + 0.015324471518397331, + -0.011615844443440437, + 0.0022142466623336077, + -0.026035772636532784, + -0.016914959996938705, + -0.02232714556157589, + -0.016703899949789047, + -0.009512781165540218, + 0.012158569879829884, + 0.002768279518932104, + 0.012882204726338387, + -0.0024064620956778526, + -0.020774345844984055, + -0.0030057220719754696, + -0.03250325843691826, + -0.006780306342989206, + 0.012369629926979542, + 0.0031941686756908894, + 0.02181456983089447, + 0.012294251471757889, + 0.007530323229730129, + 0.0033656549639999866, + -0.03307613357901573, + -0.018256699666380882, + 0.020608512684702873, + 0.007059207186102867, + 0.015301858074963093, + -0.004206126555800438, + -0.006746385712176561, + 0.005065442994236946, + 0.008849449455738068, + 0.014736519195139408, + 0.0002793719759210944, + -0.013741521164774895, + 0.0008414137409999967, + 0.013696294277906418, + -0.015083260834217072, + 0.005781539715826511, + 0.009037896059453487, + 0.006158432457596064, + -0.0076660048216581345, + -0.009120811708271503, + -0.019643666222691536, + -0.006143357139080763, + 0.013515384867787361, + -0.01873912289738655, + 0.0037877752911299467, + 0.0010911053977906704, + 0.012309327721595764, + 0.0063619548454880714, + -0.014638526365160942, + 0.008434866555035114, + 0.018920032307505608, + -0.004104365594685078, + -0.012249024584889412, + 0.005174741614609957, + 0.0002715985756367445, + -0.004560405854135752, + -0.0041835131123661995, + -0.02021654322743416, + -0.012640993110835552, + 0.021181389689445496, + 0.005815459880977869, + 0.018452683463692665, + 0.013899816200137138, + -0.02219146303832531, + -0.01444254256784916, + -0.004567943979054689, + -0.00399506650865078, + 0.0062526557594537735, + 0.010553006082773209, + -0.03337765112519264, + -0.002685363171622157, + 0.02764887548983097, + -0.007571781519800425, + 0.0012126534711569548, + -0.017110945656895638, + 0.005871993955224752, + -0.019538136199116707, + -0.01819639652967453, + -0.0073908730410039425, + 0.007748921401798725, + 0.0010911053977906704, + 0.034221891313791275, + -0.02338244579732418, + 0.004104365594685078, + -0.0008310492266900837, + -0.0006416604155674577, + 0.013779209926724434, + -0.014713904820382595, + -0.008826835080981255, + 0.028040843084454536, + 0.011525389738380909, + 0.010266566649079323, + 0.006026519928127527, + -0.015377236530184746, + -0.007688618265092373, + -0.001993764191865921, + -0.0066521624103188515, + -0.015950113534927368, + 0.00031329234479926527, + -0.0036709385458379984, + 0.006350648123770952, + -0.0027588573284447193, + -0.0025383748579770327, + 0.012595766223967075, + -0.0007085589459165931, + -6.495516572613269e-5, + -0.021015556529164314, + 0.024709109216928482, + 0.011193724349141121, + 0.0035032210871577263, + -0.0024102311581373215, + 0.005140821449458599, + -0.015965189784765244, + 0.0002307292161276564, + 0.004488796461373568, + -0.016477765515446663, + 0.009399713017046452, + 0.0335887111723423, + -0.005351881496608257, + 0.0072061954997479916, + 0.018799426034092903, + -0.000143454919452779, + -0.0027381281834095716, + -0.017533065751194954, + 0.015573221258819103, + -0.009542932733893394, + 0.010047969408333302, + -0.014208868145942688, + -0.00561570655554533, + 0.025387516245245934, + -0.02075926959514618, + -0.015573221258819103, + -0.010296718217432499, + 0.0019636128563433886, + -0.041217025369405746, + -0.00551394559442997, + -0.013560612685978413, + -0.004115672316402197, + -0.011887207627296448, + 0.001681885332800448, + -0.006810457445681095, + 0.0059021455235779285, + 0.0034787228796631098, + 0.016342082992196083, + 0.005170973017811775, + -0.01952305994927883, + -0.0070818206295371056, + -0.019477833062410355, + -0.012693758122622967, + 0.01206811610609293, + -0.0007269324851222336, + 0.012294251471757889, + 0.007258960511535406, + 0.0018439493142068386, + -0.01816624589264393, + -0.00771500077098608, + -0.01986980251967907, + -0.01682450622320175, + 0.01215103268623352, + -0.0129198944196105, + 0.018693896010518074, + -0.012475159950554371, + -0.018181322142481804, + 0.00846501812338829, + -0.0010505893733352423, + -0.011171109974384308, + -0.010711301118135452, + 0.0026646340265870094, + 0.035759612917900085, + 0.008608237840235233, + -0.003120674518868327, + -0.002342390362173319, + -0.011480162851512432, + 0.009120811708271503, + -0.00655417051166296, + -0.0006096245488151908, + -0.006565477233380079, + 0.0036709385458379984, + -0.0024535737466067076, + 0.007059207186102867, + 0.02403070218861103, + 0.00826149620115757, + 0.01911601610481739, + -0.0012437470722943544, + -0.016100872308015823, + -0.007292880676686764, + -0.030648943036794662, + -0.02502569928765297, + 0.003744432469829917, + -0.012226411141455173, + 0.012022888287901878, + -0.03000068850815296, + 0.009512781165540218, + -0.011939972639083862, + -0.0008334047743119299, + -0.007209964096546173, + -0.02359350584447384, + -0.007786610629409552, + 0.02416638284921646, + 0.005268964916467667, + -0.010613308288156986, + 0.029277052730321884, + 0.018211472779512405, + 0.018904956057667732, + -0.020955253392457962, + 0.0012305558193475008, + -0.014774207957088947, + 0.012098267674446106, + -0.007036593277007341, + -0.0006986655062064528, + 0.0032356269657611847, + -0.0024837253149598837, + -0.0012908587232232094, + 0.012316864915192127, + 0.019538136199116707, + 0.006927294656634331, + 0.014495307579636574, + -0.0021049478091299534, + -0.006524018943309784, + -0.02235729619860649, + -0.007779072970151901, + 0.01073391456156969, + -0.0054385666735470295, + -0.012181184254586697, + 0.032955531030893326, + 0.007383334916085005, + -0.004028986673802137, + -0.004613170865923166, + 0.016568219289183617, + 0.032171592116355896, + -0.0018175668083131313, + -0.014615912921726704, + 0.013198794797062874, + -0.0037689306773245335, + 0.009648462757468224, + 0.0028361203148961067, + -0.03796067088842392, + 0.030739398673176765, + 0.019583363085985184, + 0.0011636572889983654, + -0.017623519524931908, + -0.0006557939341291785, + -0.0106660732999444, + 0.025869939476251602, + 0.022960325703024864, + 0.016568219289183617, + 0.009309258311986923, + 0.005359419155865908, + 0.007398410700261593, + 0.023683959618210793, + 0.01092236116528511, + -0.00930172111839056, + -0.006686083041131496, + 0.010394711047410965, + -0.013115878216922283, + -0.005204893182963133, + -0.0011938087409362197, + -0.02256835624575615, + 0.013967656530439854, + 0.009324334561824799, + -0.0024648807011544704, + 0.0004685251915361732, + -0.015543069690465927, + -0.00751147884875536, + -0.022643735632300377, + 0.015218941494822502, + -0.011834442615509033, + 0.01601041667163372, + 0.0034824919421225786, + 0.0028436582069844007, + 0.004420955665409565, + 0.027181528508663177, + 0.00448125833645463, + -2.2775529942009598e-5, + 0.0015970843378454447, + -0.0006308247684501112, + 0.010492702946066856, + 0.021965328603982925, + -0.03322689235210419, + -0.010522854514420033, + 0.005065442994236946, + -0.02577948570251465, + 0.012595766223967075, + 0.0069461390376091, + -0.00788460299372673, + 0.00826149620115757, + 0.006324265617877245, + 0.035789765417575836, + -0.013801824301481247, + -0.0011749641271308064, + -0.00016512627189513296, + -0.016342082992196083, + 0.0012776674702763557, + -0.0028210445307195187, + -0.011434935964643955, + 0.014789284206926823, + 0.0026533270720392466, + 0.00846501812338829, + 0.001384139759466052, + 0.02918659895658493, + 0.010967588052153587, + 0.002542143687605858, + -0.029352432116866112, + -0.00025440281024202704, + -0.0026363669894635677, + 0.024995548650622368, + -0.0011061811819672585, + 0.0193873792886734, + 0.013319401070475578, + -0.004006373230367899, + -0.008314261212944984, + -0.0015019188867881894, + 0.009791681542992592, + -0.015377236530184746, + 0.019311999902129173, + 0.008887138217687607, + 0.011857056058943272, + -0.007304187398403883, + 0.006565477233380079, + -0.007718769833445549, + 0.00018821097910404205, + 0.013530461117625237, + 0.01830192655324936, + -0.0037067432422190905, + 0.0022142466623336077, + 0.02011101320385933, + 0.01019118819385767, + -0.0012164224172011018, + -4.8554426030023023e-5, + 0.023638732731342316, + -0.0030283357482403517, + -0.01225656270980835, + -0.01131432969123125, + 0.00093752151587978, + -0.003148941555991769, + 0.0015405503800138831, + -0.0002871454053092748, + -0.010123347863554955, + -0.020050710067152977, + 0.008306723088026047, + -0.012452546507120132, + 0.019915029406547546, + 0.01819639652967453, + -0.0007787552895024419, + 0.010243953205645084, + 0.011525389738380909, + 0.0019862265326082706, + 0.022312069311738014, + -0.007794148754328489, + 0.01396011933684349, + 0.0015264168614521623, + 9.428215707885101e-5, + -0.010439937934279442, + 0.012128418311476707, + 0.014585761353373528, + -0.02430206537246704, + 0.0018901186995208263, + 0.011872131377458572, + 0.013063113205134869, + 0.011276639997959137, + 0.002975570736452937, + 0.01141985971480608, + 0.016673749312758446, + 0.00684437807649374, + 0.0027268212288618088, + 0.005845611449331045, + 0.013161106035113335, + -0.005679778289049864, + 0.02027684636414051, + 0.026744332164525986, + 0.00892482791095972, + 0.015271706506609917, + 0.008623313158750534, + -0.009904749691486359, + 0.005728774704039097, + -0.0051973555237054825, + 0.015083260834217072, + -0.014721442945301533, + -0.01133694313466549, + -0.003062256146222353, + 0.0039347633719444275, + -0.012331941165030003, + -0.005954910535365343, + 0.0009309258894063532, + -0.0193873792886734, + -0.0045490991324186325, + -0.03177962452173233, + 0.011020353063941002, + 0.008065511472523212, + -0.000657678407151252, + -0.015558145940303802, + -0.005725005641579628, + 0.0096936896443367, + 0.027256906032562256, + -0.02195025235414505, + 0.01148770097643137, + 0.001482132007367909, + -0.0014416159829124808, + -0.01233947928994894, + -0.01512094959616661, + 0.008954979479312897, + -0.007172274868935347, + 0.014789284206926823, + 0.008593161590397358, + 0.01816624589264393, + -0.0077564590610563755, + 0.019945180043578148, + -0.0238347165286541, + -0.007741383742541075, + -0.009995204396545887, + -0.015015419572591782, + -0.005732543300837278, + 0.02816144935786724, + -0.0036125199403613806, + 0.0028210445307195187, + -0.005611937493085861, + 0.008578086271882057, + 0.0119625860825181, + 0.0212718453258276, + -0.01096004992723465, + -0.01989995315670967, + 0.0019278080435469747, + -0.020910026505589485, + 0.006418488919734955, + -0.003719934495165944, + 0.017080793157219887, + -0.001993764191865921, + -0.014178716577589512, + -0.018633592873811722, + -0.0015414926456287503, + 0.011073118075728416, + -0.004255122505128384, + -0.016296856105327606, + -0.016884809359908104, + 0.010394711047410965, + -0.011804291047155857, + 0.009429864585399628, + 0.030392656102776527, + 0.010047969408333302, + 0.014668677933514118, + -0.018558215349912643, + 0.002169019542634487, + -0.004145823884755373, + 0.018588365986943245, + -0.012309327721595764, + -0.003742548171430826, + 0.03034742921590805, + 0.005415953230112791, + 0.004356883931905031, + 0.026397589594125748, + -0.011834442615509033, + -0.0024177690502256155, + 0.02372918650507927, + -0.012090729549527168, + 0.011766601353883743, + -0.011133421212434769, + -0.0070667448453605175, + 0.016296856105327606, + 0.005284040700644255, + -0.003316659014672041, + -0.0011099501280114055, + 0.016432536765933037, + -0.006441102363169193, + 0.02823682874441147, + -0.012437471188604832, + 0.03205098584294319, + -0.006931063253432512, + 0.005434798076748848, + -0.035216886550188065, + -0.0005366015248000622, + -0.003930994775146246, + 0.008427328430116177, + -0.007579319644719362, + -0.011992737650871277, + -0.008057973347604275, + -0.011186186224222183, + -0.00979921966791153, + -0.01836222968995571, + 0.0283725094050169, + -0.012950045987963676, + 0.0013417393201962113, + 0.0005464949645102024, + 0.029880082234740257, + -0.014510382898151875, + -0.00684437807649374, + -0.002334852470085025, + 0.015950113534927368, + 0.017623519524931908, + -0.005864456295967102, + 0.000866382906679064, + 0.019553212448954582, + 0.010213801637291908, + 0.013048037886619568, + -0.001819451223127544, + -0.006045364774763584, + -0.0030811007600277662, + -0.007982594892382622, + 0.005928528029471636, + -0.026714179664850235, + 0.008691154420375824, + 0.0073908730410039425, + -0.009369561448693275, + -0.01491742767393589, + -0.03123689629137516, + 0.003716165665537119, + -0.014909889549016953, + 0.006309189833700657, + 0.009369561448693275, + 0.019070789217948914, + -0.005600630771368742, + -0.015362161211669445, + -0.011434935964643955, + -0.01895018294453621, + 0.00599259976297617, + 0.049207158386707306, + 0.009392174892127514, + 0.026337286457419395, + -0.009316796436905861, + 0.004405879881232977, + -0.023774415254592896, + -0.005046598147600889, + -0.011284178122878075, + -0.00808812491595745, + 0.005966217257082462, + 0.008661002852022648, + -0.011517851613461971, + 0.006603166460990906, + 0.009776606224477291, + -0.01665867306292057, + 0.010168574750423431, + -0.001976804109290242, + 0.0011721374467015266, + -0.0033939220011234283, + 0.017397383227944374, + -0.0016875386936590075, + 0.017427535727620125, + -0.006787844002246857, + -0.0061018988490104675, + 0.01037963479757309, + -0.00256475736387074, + 0.010032893158495426, + 0.006565477233380079, + 0.002310354495421052, + -0.006833071354776621, + 0.005800384096801281, + -0.004545330535620451, + -0.03542794659733772, + 0.010010279715061188, + 0.004861920606344938, + 0.014043035916984081, + -9.881665027933195e-5, + 0.006539094727486372, + 0.016296856105327606, + -0.013251559808850288, + -0.022643735632300377, + -0.009158501401543617, + 0.007439868990331888, + -0.006395875476300716, + -0.020834648981690407, + 0.004040293861180544, + -0.009346948005259037, + 0.003073562867939472, + -0.007522785570472479, + 0.0007566128042526543, + 0.00857054814696312, + -0.003265778301283717, + -0.006346879061311483, + 0.004654629155993462, + -0.010093196295201778, + 0.00475262152031064, + 0.014487769454717636, + -0.02683478593826294, + -0.006799150723963976, + 0.0019881108310073614, + 0.002917152363806963, + -0.002118139062076807, + 0.012882204726338387, + 0.02754334546625614, + -0.01543000154197216, + 0.014103338122367859, + 0.004126979038119316, + 0.004824231378734112, + -0.0016140445368364453, + -0.008555472828447819, + 0.03768930584192276, + -0.009331872686743736, + -0.023608582094311714, + -0.02519153244793415, + -0.009934901259839535, + -0.0028493115678429604, + -0.016598369926214218, + -0.021829646080732346, + -0.012007812969386578, + 0.011306791566312313, + -0.00826149620115757, + -0.0029849931597709656, + 0.016462689265608788, + -0.014751594513654709, + 0.01218872144818306, + -0.002920921193435788, + 0.0006454293616116047, + -0.004240047186613083, + 0.02991023287177086, + 0.0038009665440768003, + -0.009565546177327633, + -0.005253889132291079, + -0.006041595712304115, + 0.000991228735074401, + 0.012037964537739754, + -0.008238882757723331, + -0.006346879061311483, + -0.015256631188094616, + 0.009580621495842934, + 0.02154320664703846, + 0.020156240090727806, + -0.007006442174315453, + -0.01310834102332592, + 0.01111080776900053, + 0.0014491538750007749, + -0.027226755395531654, + -0.011306791566312313, + -0.00409682746976614, + -0.00375008606351912, + 0.01000274159014225, + -0.0021595973521471024, + 0.017337080091238022, + -0.0038047353737056255, + 0.014563147909939289, + 0.020879875868558884, + 0.019568288698792458, + 0.01273144781589508, + 0.0034240735694766045, + 0.007688618265092373, + 0.015332009643316269, + -0.004443569108843803, + 0.01720139943063259, + 0.0309655349701643, + -0.004424724727869034, + -0.0037387791089713573, + 0.003505105385556817, + 0.013756596483290195, + 0.014412390999495983, + 0.00616973964497447, + 0.0106660732999444, + 0.00792229175567627, + -0.02211608551442623, + 0.006339341402053833, + 0.010575619526207447, + 0.007779072970151901, + -0.00426642969250679, + -0.0017940109828487039, + -0.012120881117880344, + 0.0055968621745705605, + -0.0251312293112278, + -0.004145823884755373, + 0.02929212898015976, + 0.019915029406547546, + 0.012369629926979542, + 0.007311725523322821, + -0.005822998005896807, + -0.025854863226413727, + 0.0025515661109238863, + 0.007036593277007341, + -0.0001991644239751622, + -0.01887480542063713, + -0.01884465292096138, + -0.017367232590913773, + 0.00025628728326410055, + -0.008404714986681938, + 0.021256769075989723, + -0.00270986114628613, + 0.007907216437160969, + -0.01908586546778679, + 0.007982594892382622, + -0.005140821449458599, + -0.0048393071629107, + 0.003167786169797182, + 0.026096075773239136, + 0.016583295539021492, + -0.011728912591934204, + 0.007952443324029446, + 0.013364627957344055, + -0.007662235759198666, + -0.01946275867521763, + -0.019070789217948914, + -0.00598129304125905, + -0.006987597327679396, + 0.007526554632931948, + -0.006233811378479004, + 0.011653533205389977, + 0.0030415270011872053, + 0.006606935523450375, + -0.015339547768235207, + -0.001601795549504459, + 0.02116631530225277, + 0.00844994280487299, + 0.014367163181304932, + -0.013447544537484646, + -0.020910026505589485, + 0.0054385666735470295, + -0.005939834751188755, + 0.008118276484310627, + -0.016809429973363876, + -0.008367026224732399, + 0.020080862566828728, + 0.011593231000006199, + -0.0010684918379411101, + -0.0010015933075919747, + -0.026201605796813965, + 0.01426917128264904, + -0.01283697783946991, + -0.017894882708787918, + -0.03796067088842392, + 0.016884809359908104, + 0.016643596813082695, + -0.012166108004748821, + -0.016598369926214218, + -0.013048037886619568 + ], + "49ca0de0-7091-405d-b0d4-82aaf63f96fb": [ + -0.005692072678357363, + -0.01546437293291092, + -0.005711539648473263, + 0.036192551255226135, + -0.027673907577991486, + -0.0060969810001552105, + 0.03279755264520645, + 0.012591082602739334, + 0.010745637118816376, + 0.028950925916433334, + -0.022347809746861458, + 0.00744407856836915, + 0.017411045730113983, + 0.0027973696123808622, + 0.016461068764328957, + 0.028935352340340614, + -0.0018649130361154675, + 0.021584713831543922, + -0.006856183521449566, + -0.012411989271640778, + 0.05796414613723755, + -0.02527560666203499, + -0.03426145017147064, + 0.013105005025863647, + 0.008721096441149712, + -0.003891400061547756, + -0.011033744551241398, + 0.009024777449667454, + -0.03946296125650406, + -0.0018493396928533912, + 0.016554510220885277, + 0.010301794856786728, + -0.0012526842765510082, + -0.00912600476294756, + 0.009671073406934738, + -0.05251345783472061, + -0.008129308000206947, + 0.020852765068411827, + -0.0009519232553429902, + -0.019404439255595207, + -0.004928976763039827, + 0.014420956373214722, + 0.0033619047608226538, + -0.0010200567776337266, + -0.05061350762844086, + 0.0022172608878463507, + -0.005719326436519623, + 0.00193401996511966, + -0.008487495593726635, + -0.01566682755947113, + 0.014444315806031227, + 0.005481832195073366, + -0.013307458721101284, + 0.018843797966837883, + 0.018018407747149467, + -0.024761684238910675, + 0.024481363594532013, + 0.046066075563430786, + 0.01203822810202837, + -0.06640492379665375, + -0.00922723114490509, + 0.010122701525688171, + 0.010784570127725601, + -0.01559674646705389, + 0.031629547476768494, + 0.018983958289027214, + -0.009889100678265095, + -0.0002584208850748837, + -0.017239738255739212, + 0.0004908050177618861, + 0.012949271127581596, + 0.04229731857776642, + -0.030632851645350456, + 0.03494668006896973, + -0.0057465797290205956, + -0.0036947859916836023, + 0.03849741071462631, + 0.01979377493262291, + 0.028888631612062454, + -0.004165880847722292, + 0.022986318916082382, + -0.005302737932652235, + 0.04382351040840149, + 0.01699056476354599, + 0.05052006617188454, + 0.021631434559822083, + -0.01993393525481224, + -0.04999057203531265, + -0.007634852547198534, + -0.021584713831543922, + 0.002886916510760784, + 0.04774800315499306, + -0.01407055463641882, + 0.010130488313734531, + -0.037563007324934006, + 0.015768053010106087, + 0.0339188352227211, + 0.001939859939739108, + -0.013650073669850826, + -0.001542738638818264, + 0.002094620605930686, + 0.017473340034484863, + -0.020852765068411827, + 0.003731772769242525, + 0.015378719195723534, + -0.010317368432879448, + 0.01709957793354988, + -0.005213191267102957, + -0.02410760149359703, + 0.03429259732365608, + -0.004590255673974752, + -0.042048145085573196, + 0.005111963953822851, + -0.0065914359875023365, + -0.061670612543821335, + -0.006170954555273056, + -0.0254780612885952, + -0.03382539376616478, + 0.0028148896526545286, + -0.020401136949658394, + 0.04715621471405029, + -0.005762152839452028, + 0.0257116612046957, + -0.01062104944139719, + -0.012536576017737389, + 0.04687589406967163, + -0.0011300438782200217, + -0.017831526696681976, + 0.017395472154021263, + 0.02823455072939396, + -0.012762390077114105, + -0.024761684238910675, + 0.013455405831336975, + -0.03214346989989281, + -0.00427489448338747, + 0.020915057510137558, + 0.002044006949290633, + 0.04572346433997154, + -0.00703138392418623, + 0.008978057652711868, + -0.044789060950279236, + -0.024574803188443184, + -0.03659745678305626, + 0.013673433102667332, + 0.017940541729331017, + -0.008012507110834122, + -0.013120578601956367, + 0.05217084661126137, + -0.023079758509993553, + 0.021740447729825974, + -0.07014252990484238, + -0.0008141961297951639, + -0.0005080817500129342, + -0.0038407864049077034, + 0.02715998701751232, + 0.01425743568688631, + -0.0009996166918426752, + 0.020401136949658394, + 0.007545305881649256, + 0.059957537800073624, + 0.008907977491617203, + -0.06095423549413681, + -0.01136078592389822, + 0.005209297873079777, + 0.04067768529057503, + 0.0012536576250568032, + 0.06201322376728058, + 0.013190658763051033, + -0.028608310967683792, + 0.017395472154021263, + 0.026661638170480728, + -0.01717744581401348, + 0.02678622491657734, + 0.010722276754677296, + -0.002668889006599784, + -0.0199027881026268, + 0.029309112578630447, + 0.04114488884806633, + 0.02410760149359703, + -0.024574803188443184, + -0.009172724559903145, + -0.0065758624114096165, + 0.02569608762860298, + 0.005069137550890446, + -0.02541576698422432, + 0.031894296407699585, + 0.03594337776303291, + 0.006560289300978184, + 0.007693252991884947, + -0.027331292629241943, + -0.0017646594205871224, + -0.019388865679502487, + -0.013268525712192059, + 0.03198773413896561, + -0.027564894407987595, + -0.04497594013810158, + -0.01479471754282713, + -0.005692072678357363, + -0.0007046957616694272, + 0.030243515968322754, + -0.013105005025863647, + -0.045972637832164764, + -0.016289763152599335, + 0.026443609967827797, + -0.04781029745936394, + 0.0617951974272728, + -0.03513355925679207, + -0.010340728797018528, + 0.04391695186495781, + -0.037251539528369904, + 0.00982680730521679, + -0.05098726600408554, + -0.0158381350338459, + -0.0032217444386333227, + -0.022301089018583298, + 0.002631902229040861, + 0.0023457412607967854, + 0.04080227389931679, + 0.014670129865407944, + -0.020307695493102074, + 0.004033507313579321, + 0.023219918832182884, + 0.01956017315387726, + -0.02684851922094822, + -0.05481832101941109, + -0.008689949288964272, + -0.01960689388215542, + 0.04214158281683922, + -0.03516470640897751, + 0.01421850174665451, + 0.02265927754342556, + -0.020151961594820023, + 0.005637566093355417, + -0.026194436475634575, + 0.0012828577309846878, + 0.01699056476354599, + 0.02963615395128727, + -0.010730063542723656, + 0.0006750089814886451, + -0.02826569601893425, + 0.014677916653454304, + 0.020323269069194794, + 0.0023554747458547354, + -0.010340728797018528, + -0.02147570066154003, + 0.030399249866604805, + 0.008495282381772995, + 0.033264752477407455, + 0.037344980984926224, + -0.004333294928073883, + -0.0037531862035393715, + 0.01558895967900753, + 0.006673196330666542, + 0.00677831657230854, + -0.02965172752737999, + 0.04693818837404251, + 0.03404342383146286, + -0.04285795986652374, + 0.011228411458432674, + -0.0010064301313832402, + 0.025057578459382057, + 0.011641106568276882, + -0.004317721351981163, + -0.00565313920378685, + 0.029963195323944092, + -0.021989621222019196, + 0.06132799759507179, + -0.058773960918188095, + 0.005014630500227213, + 0.019404439255595207, + 0.02817225642502308, + 0.03236149623990059, + -0.020214255899190903, + 0.023422373458743095, + 0.017473340034484863, + 0.00386803993023932, + -0.005135324317961931, + -0.013681219890713692, + 0.006828930228948593, + 0.009336245246231556, + -0.004189241211861372, + -0.004788816440850496, + 0.004099694080650806, + -0.017691366374492645, + 0.018002834171056747, + -0.006439595483243465, + -0.006007433868944645, + -0.005984073970466852, + -0.027471452951431274, + 0.0027564894407987595, + -0.0005285217775963247, + 0.027346866205334663, + 0.01558895967900753, + 0.01569797284901142, + -0.0065875425934791565, + 0.016461068764328957, + -0.02402973547577858, + 0.020432282239198685, + 0.008191601373255253, + 0.04145635664463043, + -0.01544101256877184, + -0.001441511558368802, + -0.009889100678265095, + -0.0047420961782336235, + 0.01709957793354988, + -0.005633672699332237, + 0.011041531339287758, + 0.01974705420434475, + -0.030368104577064514, + 0.021958475932478905, + 0.02527560666203499, + -0.02393629588186741, + -0.0339188352227211, + -0.017924968153238297, + -0.011937000788748264, + 0.004843323025852442, + -0.020650310441851616, + 0.0012818843824788928, + 0.0031068907119333744, + -0.03855970501899719, + 0.010714489966630936, + -0.0038544132839888334, + -0.09474848210811615, + 0.018859371542930603, + 0.04211043566465378, + -0.0422038771212101, + 0.041736677289009094, + 0.006533035542815924, + -0.03504012152552605, + -0.023048611357808113, + -0.013307458721101284, + -0.02002737484872341, + -0.030430397018790245, + -0.009351818822324276, + -0.01709957793354988, + -0.055970750749111176, + -0.04849552735686302, + -0.044664472341537476, + -0.0003603778895922005, + -0.015036104246973991, + -0.017302032560110092, + -0.007155971135944128, + 0.011547666043043137, + -0.010099341161549091, + 0.01562010683119297, + -0.002781796269118786, + -0.01131406519562006, + 0.016663523390889168, + -0.02275271713733673, + 0.0015115918358787894, + 0.0010619102977216244, + -0.015238558873534203, + 0.04812176525592804, + 0.0005387418204918504, + 0.052887219935655594, + -0.011127185076475143, + -0.033389341086149216, + -0.01991836167871952, + 0.021600287407636642, + -0.016725817695260048, + -0.010309581644833088, + -0.0396498404443264, + 0.004621402360498905, + -0.009600993245840073, + -0.015355358831584454, + -0.012123881839215755, + -0.010745637118816376, + -0.009453045204281807, + -0.010987023822963238, + 0.025898542255163193, + -0.03504012152552605, + 0.008651016280055046, + -0.01544101256877184, + -0.030414823442697525, + -0.01717744581401348, + -0.03276640549302101, + 0.04404153674840927, + -0.0001588972081663087, + -0.022924024611711502, + 0.021678153425455093, + -0.003727879375219345, + -0.01131406519562006, + 0.0006477555725723505, + 0.029106659814715385, + 0.02521331235766411, + 0.012536576017737389, + -0.00747911911457777, + -0.0113062784075737, + 0.006108660716563463, + -0.0035332120023667812, + -0.012957057915627956, + -0.0028635563794523478, + -0.01577584072947502, + 0.012521002441644669, + -0.030118929222226143, + -0.00427100108936429, + -0.001882433076389134, + -0.0033171314280480146, + 0.012271828949451447, + -0.020525723695755005, + 0.0005951953935436904, + -0.017909394577145576, + -0.0284214299172163, + 0.003973160404711962, + 0.01282468345016241, + -0.021771594882011414, + 0.009741153568029404, + -0.011166118085384369, + 0.044571030884981155, + -0.01475578360259533, + -0.01199929416179657, + 0.007634852547198534, + 0.004866683389991522, + 0.0367843396961689, + 0.04351204261183739, + -0.0034942785277962685, + -0.014825863763689995, + 0.07001794874668121, + 0.003572145476937294, + -0.012116095051169395, + 0.04080227389931679, + 0.015690186992287636, + -0.007124824449419975, + 0.02267485111951828, + -0.0013977114576846361, + 0.051828231662511826, + -0.018797077238559723, + 0.020214255899190903, + -0.010714489966630936, + -0.024839552119374275, + -0.013533272780478, + 0.06709014624357224, + 0.011080464348196983, + 0.013089431449770927, + -0.01136078592389822, + -0.040366217494010925, + 0.009398538619279861, + -0.004897830076515675, + 0.008643229492008686, + -0.008697736077010632, + -0.05242002010345459, + -0.0011154437670484185, + 0.008837896399199963, + 0.017442192882299423, + -0.053042955696582794, + -0.031722988933324814, + -0.02258140966296196, + 0.013595566153526306, + 0.022114207968115807, + -0.012536576017737389, + 0.006268288008868694, + 0.04117603227496147, + -0.085965096950531, + -0.01199150737375021, + -0.0015943254111334682, + -0.01136078592389822, + 0.00428268127143383, + -0.004052973818033934, + 0.03999245539307594, + -0.06248042732477188, + -0.03569420054554939, + -0.0009582499624229968, + 0.03239264339208603, + -0.012450922280550003, + 0.044571030884981155, + -0.03525814786553383, + 0.017504487186670303, + 0.009320671670138836, + 0.013735726475715637, + 0.034666359424591064, + -0.020790470764040947, + -0.024870697408914566, + -0.016414349898695946, + 0.022285515442490578, + 0.015503305941820145, + -0.008869043551385403, + -0.0019622466061264277, + 0.008253894746303558, + 0.000217419074033387, + -0.027845215052366257, + -0.012762390077114105, + -0.008238321170210838, + 0.018828224390745163, + -0.006825036834925413, + 0.006875650025904179, + 0.0037473461125046015, + -0.025976408272981644, + -0.017878247424960136, + 0.012614442966878414, + -0.011376358568668365, + 0.021740447729825974, + 0.013883674517273903, + 0.011843560263514519, + 0.004699269309639931, + -0.01817414164543152, + -0.04263993352651596, + 0.0010375769343227148, + -0.040366217494010925, + -0.023515813052654266, + -0.03229920193552971, + 0.016336482018232346, + -0.012225108221173286, + -0.022394530475139618, + 0.0075608789920806885, + -0.016180748119950294, + 0.03675319254398346, + -0.007405145093798637, + 0.034853238612413406, + -0.015324212610721588, + -0.01407834142446518, + -0.054506853222846985, + 0.01476357039064169, + -0.030305810272693634, + 0.013089431449770927, + -0.0032022777013480663, + 0.028779618442058563, + -0.01425743568688631, + -0.01286361739039421, + 0.03946296125650406, + -0.01817414164543152, + -0.0062293545342981815, + -0.01814299449324608, + -0.013774660415947437, + -0.016725817695260048, + -0.02677065134048462, + -0.0031613975297659636, + -0.004364441614598036, + -0.026661638170480728, + 0.007665999699383974, + -0.024808404967188835, + -0.02421661652624607, + 0.022410104051232338, + -0.02684851922094822, + 0.011181691661477089, + 0.005699859466403723, + -0.0023204346653074026, + 0.00046063156332820654, + 0.025182165205478668, + 0.026599343866109848, + -0.002538461936637759, + -0.0542888268828392, + 0.05151676386594772, + -0.00791128072887659, + -0.024310056120157242, + -0.006622582674026489, + 0.02139783278107643, + -0.012918123975396156, + 0.029044365510344505, + -0.013595566153526306, + 0.029293540865182877, + -0.016570083796977997, + 0.020588016137480736, + -0.014304155483841896, + 0.006626476068049669, + 0.002583235502243042, + -0.04136291518807411, + 0.004520175512880087, + -0.005828340072184801, + -0.024901844561100006, + -0.021911755204200745, + -0.01828315667808056, + 0.030835306271910667, + 0.004788816440850496, + 0.003264571074396372, + -0.02692638523876667, + 0.017239738255739212, + -0.03267296403646469, + 0.02418546937406063, + -0.0010599636007100344, + 0.036036815494298935, + 0.02001180127263069, + 0.00633836816996336, + 0.037781037390232086, + 0.02242567576467991, + -0.011547666043043137, + 0.03504012152552605, + -0.0037473461125046015, + -0.00857314933091402, + -0.020977351814508438, + -0.022083062678575516, + 0.0226125568151474, + -0.016056161373853683, + -0.0135722067207098, + 0.007595919072628021, + 0.011267345398664474, + 0.038902319967746735, + -0.003579932264983654, + -0.009694432839751244, + -0.015643466264009476, + 0.010091554373502731, + 0.01825200952589512, + 0.03145824000239372, + -0.005450685508549213, + 0.0135722067207098, + -0.03852855786681175, + 0.025898542255163193, + 0.018688064068555832, + 0.023095332086086273, + 0.02529118023812771, + 0.00784898642450571, + 0.030632851645350456, + 0.017520060762763023, + -0.0039848401211202145, + -0.00992024689912796, + -0.022176502272486687, + 0.02958943508565426, + 0.014631196856498718, + 0.019186412915587425, + 0.003671425860375166, + 0.024637097492814064, + -0.018999531865119934, + -0.008191601373255253, + 0.037344980984926224, + -0.001835712930187583, + 0.02392072230577469, + 7.08710722392425e-5, + 0.00744797196239233, + 0.026552623137831688, + -0.007989147678017616, + 0.01545658614486456, + 0.033420488238334656, + -0.057278916239738464, + 0.06827372312545776, + -0.004368335008621216, + 0.00454353541135788, + 0.018859371542930603, + -0.030103355646133423, + 0.004193134140223265, + -0.011664466932415962, + -0.01716187223792076, + -0.015308639034628868, + -0.03382539376616478, + 0.02108636498451233, + -0.018828224390745163, + 0.017691366374492645, + 0.01336196530610323, + -0.000817116117104888, + 0.018656916916370392, + -0.004520175512880087, + -0.0062410347163677216, + 0.014724637381732464, + 0.0005256017902866006, + 0.009655499830842018, + 0.061670612543821335, + -0.009328458458185196, + 0.030103355646133423, + -0.012995990924537182, + 0.03273525834083557, + 0.03127136081457138, + 0.027767349034547806, + 0.004999056924134493, + 0.019342146813869476, + 0.01420292817056179, + 0.016554510220885277, + 0.011672252789139748, + -0.01495823822915554, + 0.01495823822915554, + -0.019108545035123825, + 0.0045941490679979324, + 0.0036967326886951923, + 0.030196797102689743, + -0.02980746142566204, + 0.01720859296619892, + -0.004060760606080294, + 0.014615623280405998, + 0.0031010506208986044, + 0.031598400324583054, + -0.00840962864458561, + 0.013813593424856663, + 0.03144266828894615, + 0.0030445971060544252, + -0.009624352678656578, + 0.019435586407780647, + -0.013502126559615135, + 0.0028207297436892986, + -0.0018765931017696857, + 0.006396768614649773, + -0.0014561116695404053, + 0.006205994635820389, + -0.01956017315387726, + -0.01836102269589901, + -0.026163289323449135, + -0.027253426611423492, + 0.02251911722123623, + -0.0012380842817947268, + -0.007004130631685257, + -0.018111849203705788, + 0.022301089018583298, + -0.02521331235766411, + 0.003916706889867783, + -0.007389571983367205, + -0.00745575875043869, + -0.0013295778771862388, + 0.005108070559799671, + 0.010146060958504677, + -0.007206584792584181, + 0.006478528957813978, + -0.017442192882299423, + 0.008798963390290737, + -0.01548773329705, + -0.016025014221668243, + -0.016227468848228455, + 0.0052248709835112095, + -0.0281099621206522, + 0.00702749053016305, + -0.0065953293815255165, + -0.017286458984017372, + -0.02284615859389305, + -0.0014629249926656485, + 0.01857905089855194, + 0.006486315280199051, + 0.013657860457897186, + 0.0019525133538991213, + 0.030150076374411583, + 0.027237853035330772, + 0.02255026437342167, + -0.008285041898488998, + 0.0308975987136364, + -0.010177208110690117, + 0.027923082932829857, + -0.007677679415792227, + 0.012528789229691029, + -0.00228539458476007, + -0.024590376764535904, + 0.006953516975045204, + 0.017987260594964027, + -0.006692662835121155, + 0.007619279436767101, + 0.012271828949451447, + -0.008518642745912075, + 0.03569420054554939, + -0.005209297873079777, + -0.0021024071611464024, + 0.012404202483594418, + 0.003077690489590168, + -0.015004958026111126, + -0.016679096966981888, + 0.014000474475324154, + 0.012310761958360672, + -0.008370695635676384, + 0.00044311152305454016, + -0.017878247424960136, + 0.012489856220781803, + -0.0021101939491927624, + 0.0014600049471482635, + -0.0013685113517567515, + 0.04344974830746651, + 0.006899010390043259, + -0.010753422975540161, + -0.017956115305423737, + 0.05139217525720596, + -0.019373292103409767, + 0.04534970223903656, + -0.0015115918358787894, + -0.037500713020563126, + 0.0213355403393507, + 0.02141340635716915, + 0.00994360726326704, + -0.026614917442202568, + 0.04388580471277237, + -0.010262861847877502, + 0.03099103830754757, + -0.005189830902963877, + -0.00854200217872858, + -0.0027603828348219395, + 0.01681925728917122, + 0.002049847040325403, + 0.024278908967971802, + 0.02831241674721241, + -0.0063695153221488, + 0.04837093874812126, + 0.03507126495242119, + 0.0342303030192852, + 0.029293540865182877, + -0.003428091760724783, + -0.024605950340628624, + 0.011672252789139748, + -0.01713072508573532, + -0.048713553696870804, + -0.027564894407987595, + -0.018688064068555832, + -0.04410383105278015, + 0.01495045144110918, + -0.026334596797823906, + 0.018018407747149467, + -0.041580941528081894, + 0.020665884017944336, + -0.01716187223792076, + -0.027923082932829857, + 0.017566779628396034, + 0.024917418137192726, + -0.014366448856890202, + 0.00998254120349884, + 0.02245682291686535, + 0.027455881237983704, + -0.03379425033926964, + 0.012427562847733498, + 0.009188298135995865, + -0.025898542255163193, + 0.03267296403646469, + 0.017379898577928543, + -0.03108447976410389, + 0.05357244983315468, + 0.034479476511478424, + 0.00678220996633172, + -0.014420956373214722, + -0.0070625306107103825, + -0.01268452312797308, + -0.031722988933324814, + 0.013214018195867538, + -0.0035585188306868076, + 0.00429046805948019, + -0.01267673633992672, + 0.03924493491649628, + -0.015316425822675228, + -0.005719326436519623, + 0.006381195038557053, + 0.009663286618888378, + 0.04285795986652374, + -0.0025131553411483765, + -0.005808873102068901, + -0.005902313627302647, + 0.011937000788748264, + 0.010294008068740368, + 0.02544691413640976, + -0.01957574672996998, + -0.003319077892228961, + 0.01421850174665451, + -0.0006545688956975937, + -0.005384498275816441, + -0.0284214299172163, + -0.006680982653051615, + -0.009149364195764065, + 0.013182871975004673, + -0.011197265237569809, + 0.04672015830874443, + -0.02577395550906658, + 0.0067354897037148476, + -0.02244124934077263, + 0.031847573816776276, + -0.022970745339989662, + -0.051797084510326385, + -0.020151961594820023, + -0.00914157833904028, + -0.01714629866182804, + -0.012302975170314312, + 0.006373408250510693, + 0.02267485111951828, + 0.0254780612885952, + 0.04812176525592804, + 0.03248608484864235, + -0.012373055331408978, + 0.00017714727437123656, + 0.014607836492359638, + -0.02536904625594616, + 0.026116568595170975, + -0.021833887323737144, + 0.007553092669695616, + 0.00010402535554021597, + 0.009328458458185196, + 0.013073857873678207, + 0.014304155483841896, + -0.04983483627438545, + 0.02281501144170761, + -0.0037979595363140106, + -0.018937237560749054, + -0.009593206457793713, + 0.018719211220741272, + -0.002392461523413658, + 0.02247239649295807, + 0.002992036985233426, + -0.010761209763586521, + 0.005512978881597519, + 0.02543134056031704, + -0.006377301644533873, + -0.0014288582606241107, + -0.009499765932559967, + -0.00427878787741065, + -0.02533789910376072, + 0.020416710525751114, + -0.024512510746717453, + -0.004224281292408705, + 0.0037200928200036287, + -0.005902313627302647, + -0.011072677560150623, + -0.011648893356323242, + -0.001092083752155304, + 0.013050497509539127, + -0.004710949491709471, + 0.01060547586530447, + 0.017706939950585365, + 0.010364089161157608, + -0.004773242864757776, + -0.02549363300204277, + -0.008822323754429817, + 0.010270648635923862, + -0.005843913182616234, + -0.01956017315387726, + 0.004932870157063007, + 0.010753422975540161, + 0.00635783514007926, + -0.0449136458337307, + -0.036161404103040695, + 0.00010925703827524558, + 0.03634828329086304, + -0.05805758386850357, + 0.00456300238147378, + 0.017629073932766914, + -0.0045980424620211124, + 0.009702219627797604, + 0.022939598187804222, + 0.02279943786561489, + -0.00634615495800972, + -0.014358662068843842, + 0.05204625800251961, + 0.021724874153733253, + 0.020323269069194794, + -0.0030952105298638344, + -0.010527608916163445, + -0.012287401594221592, + 0.013252952136099339, + 0.034884385764598846, + 0.040521953254938126, + 0.007541412487626076, + 0.006209888029843569, + 0.007393465377390385, + -0.011765693314373493, + -0.019030679017305374, + -0.022098636254668236, + 0.010924730449914932, + 0.0016215788200497627, + -0.004695375915616751, + 0.028592737391591072, + -0.003430038457736373, + 0.020323269069194794, + 0.009429685771465302, + -0.02426333539187908, + 0.005789406597614288, + -0.03226805850863457, + -0.02283058501780033, + -0.00702749053016305, + 0.0070703173987567425, + 0.023313360288739204, + -0.019139692187309265, + -0.012341909110546112, + -0.0062293545342981815, + 0.007315598428249359, + 0.016445497050881386, + 0.023001892492175102, + -0.005762152839452028, + -0.00032728444784879684, + 0.013852527365088463, + -0.007537519093602896, + 0.008222748525440693, + 0.033607367426157, + -0.005481832195073366, + -0.011874707415699959, + -0.009157150983810425, + 0.0025968621484935284, + 0.0017335126176476479, + 0.006213781423866749, + 0.0024099815636873245, + 0.012505429796874523, + 0.015845920890569687, + -0.016352055594325066, + 0.02845257706940174, + -0.019046252593398094, + -0.020229829475283623, + -0.009499765932559967, + -0.005415644962340593, + -0.012988204136490822, + -0.01133742555975914, + -0.018065128475427628, + 0.020385563373565674, + -0.004496815148741007, + -0.02982303500175476, + -0.0074362922459840775, + -0.005049670580774546, + -0.025805100798606873, + 0.003831053152680397, + 0.016601230949163437, + -0.016647949814796448, + -0.03983672335743904, + -0.007288344670087099, + -0.010480889119207859, + -0.011158331297338009, + -0.005968500394374132, + 0.024543657898902893, + -0.03983672335743904, + 0.029215672984719276, + 0.025945261120796204, + -0.03563190996646881, + -0.00169749918859452, + 0.01474021002650261, + 0.007486905436962843, + -0.005018523894250393, + -0.01856347732245922, + -0.021880608052015305, + 0.0011086304439231753, + -0.046221811324357986, + -0.0135722067207098, + 0.004687589127570391, + -0.02131996676325798, + 0.0509561225771904, + 0.03102218545973301, + 0.03226805850863457, + 0.0018483663443475962, + -0.033140167593955994, + -0.025898542255163193, + 0.03363851457834244, + -0.02111751213669777, + -0.054538000375032425, + -0.007307811640202999, + 0.0007436292362399399, + 0.00977229978889227, + 0.02251911722123623, + 0.017987260594964027, + -0.02273714356124401, + 0.006307221483439207, + 0.03827938437461853, + -0.027300147339701653, + -0.015978295356035233, + -0.00788792036473751, + -0.005427325144410133, + -0.008214961737394333, + 0.003488438669592142, + 0.01062104944139719, + 0.0047615631483495235, + 0.022363383322954178, + -0.015246345661580563, + 0.007319491822272539, + -0.013914820738136768, + 0.010208355262875557, + -0.013626713305711746, + 0.006513569038361311, + -0.014654556289315224, + -0.00248590181581676, + -0.09686646610498428, + -0.031816430389881134, + -0.005956820212304592, + 0.0199027881026268, + 0.01495823822915554, + -0.0060736206360161304, + 0.0010346568888053298, + 0.016741391271352768, + -0.01694384403526783, + 0.010301794856786728, + 0.03357622027397156, + -0.01678811013698578, + 0.021818313747644424, + 0.019201986491680145, + 0.0017967794556170702, + 0.0009874500101432204, + -0.005816659890115261, + -0.00040661139064468443, + 0.01954459957778454, + -0.016570083796977997, + 0.003139984095469117, + 0.03116234578192234, + 0.020883912220597267, + -0.016258616000413895, + -0.01970033347606659, + 0.044384151697158813, + -0.012178388424217701, + 0.0010502302320674062, + -0.005688179284334183, + -0.02820340357720852, + 0.0020556871313601732, + 0.023515813052654266, + -0.01834544911980629, + -0.01697499118745327, + -0.011111611500382423, + 0.03134922683238983, + 0.0050924974493682384, + -0.004617508966475725, + 0.034541770815849304, + 0.021740447729825974, + 0.009445259347558022, + 0.008736670017242432, + -0.02522888593375683, + -0.021024072542786598, + -0.009009203873574734, + -0.014981597661972046, + 0.00427489448338747, + -0.023328933864831924, + 0.00012580376642290503, + 0.006645942572504282, + 0.0037979595363140106, + 0.0036013456992805004, + -0.016180748119950294, + -0.01956017315387726, + -0.0065758624114096165, + -0.004508495330810547, + 0.008923550136387348, + -0.012443135492503643, + 0.018641343340277672, + 0.0036616926081478596, + 0.0628853365778923, + 0.015495519153773785, + 0.009850166738033295, + 0.002894703298807144, + -0.024574803188443184, + 0.01131406519562006, + 0.02416989579796791, + 0.00994360726326704, + 0.020821617916226387, + -0.006268288008868694, + 0.0075647723861038685, + -0.01705285906791687, + -0.027564894407987595, + 0.023702694103121758, + -0.00457078916952014, + 0.02949599362909794, + 0.00744797196239233, + 0.011734547093510628, + 0.009016990661621094, + -0.004504601936787367, + -0.004045187029987574, + 0.013455405831336975, + 0.0036947859916836023, + -0.01271567028015852, + -0.014125061221420765, + -0.0018532329704612494, + -0.0019028731621801853, + -0.008269468322396278, + 0.007961893454194069, + -0.003326864680275321, + 0.03650401905179024, + -0.010543182492256165, + 0.03110005334019661, + 0.010550969280302525, + -0.013844740577042103, + 0.038902319967746735, + -0.0004511415318120271, + 0.010846863500773907, + 0.00455132219940424, + -0.005158684216439724, + -0.002133553847670555, + -0.027455881237983704, + 0.010955877602100372, + -0.01692827045917511, + 0.002291234442964196, + 0.010184994898736477, + -0.0017646594205871224, + 0.00925837829709053, + -0.016227468848228455, + 0.0021685941610485315, + 0.016025014221668243, + -0.0013792180689051747, + -0.03569420054554939, + 0.00031219772063195705, + -0.020307695493102074, + 0.0024469683412462473, + -0.02974516898393631, + -0.01061326265335083, + -0.007638745941221714, + 0.006330581847578287, + -0.007202691398561001, + 0.03429259732365608, + 0.021756021305918694, + -0.02270599827170372, + 0.004855003207921982, + 0.0003581878845579922, + -0.0018123529152944684, + -0.013759086839854717, + 0.008876830339431763, + 0.01970033347606659, + 0.002532622078433633, + 0.000894496391993016, + -0.0048783631063997746, + 0.0065680756233632565, + -0.014600049704313278, + 0.009414112195372581, + 0.033171314746141434, + 0.000669168948661536, + 0.024683818221092224, + -0.04643983766436577, + -0.003021236974745989, + -0.0015271651791408658, + -0.00565703259781003, + 0.031629547476768494, + -0.024699391797184944, + 0.0015680453507229686, + -0.008183814585208893, + -0.010044834576547146, + 0.008464135229587555, + -0.00790349394083023, + -0.015386505983769894, + 0.00841741543263197, + 0.023562533780932426, + 0.0024450216442346573, + -0.009608779102563858, + -0.02530675381422043, + -0.0181585680693388, + 0.01476357039064169, + -0.010379661805927753, + -0.002032327000051737, + 0.0021024071611464024, + -0.001792886178009212, + 0.002079047029837966, + 0.008853469975292683, + -0.0029589433688670397, + -0.009896887466311455, + -0.008697736077010632, + 0.0018425262533128262, + -0.003638332476839423, + -0.019139692187309265, + 0.0035585188306868076, + -0.005329991690814495, + -0.002988143591210246, + -0.021506845951080322, + 0.0009397565154358745, + -0.017613500356674194, + -0.0035896655172109604, + -0.008246107958257198, + 0.023375652730464935, + -0.015261919237673283, + 0.001143670524470508, + 0.020463429391384125, + -0.007412931881844997, + 0.030601704493165016, + 2.7177384254173376e-5, + -0.0018035927787423134, + -0.008090374059975147, + 0.0062215677462518215, + 0.017971688881516457, + -0.010465315543115139, + 0.018890518695116043, + 0.021039646118879318, + 0.006256607826799154, + 0.0029686768539249897, + -0.0057504731230437756, + 0.007132611237466335, + 0.020774897187948227, + 0.027891935780644417, + -0.012567723169922829, + -0.010839076712727547, + -0.007603705860674381, + -0.017270885407924652, + 0.006630369462072849, + 0.02256583794951439, + -0.011134970933198929, + 0.007553092669695616, + -0.050239745527505875, + 0.014654556289315224, + 0.012193962000310421, + -0.015565600246191025, + 0.00633447477594018, + -0.0037181461229920387, + 0.020634736865758896, + -0.01545658614486456, + 0.011220624670386314, + 0.007144290953874588, + 0.002328221220523119, + -0.004060760606080294, + -0.004025720525532961, + -0.023484667763113976, + 0.02974516898393631, + -0.002517048502340913, + 0.028016522526741028, + -0.014358662068843842, + 0.008129308000206947, + 0.014607836492359638, + 0.005018523894250393, + -0.07020482420921326, + -0.007370105013251305, + 0.009733366779983044, + -0.006112554110586643, + 0.013844740577042103, + 0.0003075743734370917, + -0.016694670543074608, + -0.014864797703921795, + -0.009390751831233501, + 0.039058052003383636, + -0.016616802662611008, + 0.028016522526741028, + -0.010005900636315346, + -0.005477938801050186, + -0.023422373458743095, + -0.029137806966900826, + 0.001831819536164403, + 0.04335630685091019, + 0.0195913203060627, + -0.03363851457834244, + -0.0006866889889352024, + 0.006984663661569357, + 0.010146060958504677, + 0.027580467984080315, + 0.007630959618836641, + -0.019279852509498596, + 0.0052443379536271095, + -0.004582468885928392, + 0.005283271428197622, + 0.026443609967827797, + 0.006618689280003309, + 0.016616802662611008, + -0.007350638508796692, + -0.008339548483490944, + -0.009009203873574734, + 0.02242567576467991, + -0.04086456447839737, + 0.03226805850863457, + -0.005867273546755314, + 0.004504601936787367, + 0.006042473949491978, + 0.03298443183302879, + -0.00747522572055459, + -0.0013120578369125724, + 0.011625532992184162, + -0.006945730186998844, + 0.0011670306557789445, + 0.02826569601893425, + 0.011827986687421799, + -0.011197265237569809, + -0.04130062088370323, + 0.007296131458133459, + 0.01335417851805687, + -0.010955877602100372, + 0.013735726475715637, + -0.020292121917009354, + 0.013323032297194004, + 0.012910337187349796, + -0.003324917983263731, + 0.013922607526183128, + -0.012302975170314312, + 0.03812364861369133, + -0.028063243255019188, + 0.0014814183814451098, + 0.013136151246726513, + 0.028032096102833748, + -0.00635394174605608, + 0.008479708805680275, + -0.0022523009683936834, + 0.019420012831687927, + 0.015752481296658516, + 0.013276311568915844, + -0.005972393788397312, + 0.01491151750087738, + 0.0017062592087313533, + -0.03158282861113548, + -0.01699056476354599, + -0.0012702043168246746, + -0.00020087235316168517, + 0.006318901665508747, + 0.004625295754522085, + -0.0001262904261238873, + 0.0032898779027163982, + 0.004169774241745472, + -0.0007587159052491188, + -0.015254132449626923, + -0.003940066788345575, + 0.00012038958084303886, + 0.021989621222019196, + 0.029044365510344505, + 4.265952156856656e-6, + -0.002585182199254632, + -0.01678811013698578, + -0.0017072325572371483, + 0.00840962864458561, + 0.020198682323098183, + -0.0005290084518492222, + -0.04295140132308006, + -0.03103775903582573, + -0.01340089924633503, + -0.011041531339287758, + 0.017270885407924652, + 0.003949800040572882, + -0.01714629866182804, + 0.04425956308841705, + -0.00456300238147378, + 0.0015320319216698408, + 0.0024197150487452745, + -0.0017821794608607888, + -0.001192337367683649, + -0.006276074796915054, + -0.015152905136346817, + -0.010745637118816376, + 0.015627892687916756, + 0.012209534645080566, + -0.018641343340277672, + 0.00022459743195213377, + 0.00928952544927597, + -0.003957586828619242, + 0.008931336924433708, + 0.027860788628458977, + 0.01853233017027378, + -0.008152667433023453, + 0.010776783339679241, + 0.01834544911980629, + 0.007000237237662077, + -0.005785513203591108, + 0.009211658500134945, + 0.023469094187021255, + -0.011726760305464268, + -0.005450685508549213, + -0.04073997959494591, + -0.03637943044304848, + -0.01571354642510414, + -0.011703399941325188, + 0.006540822330862284, + 0.037438422441482544, + -0.010371875017881393, + -0.0032003310043364763, + -0.006914583500474691, + 0.0015057518612593412, + 0.013019351288676262, + -0.024325629696249962, + 0.020432282239198685, + 0.011025957763195038, + -0.02124209888279438, + -0.0018279262585565448, + -0.011648893356323242, + 0.0025618220679461956, + 0.003636385779827833, + 0.008518642745912075, + -0.004617508966475725, + -0.026038702577352524, + 0.005882846657186747, + -0.011423079296946526, + -0.007673786021769047, + -0.0037434527184814215, + -0.01856347732245922, + 0.0026669425424188375, + 0.003990680444985628, + 0.0008667563088238239, + -0.0020011800806969404, + -0.01357999350875616, + -0.011843560263514519, + -0.015129544772207737, + 0.004403375089168549, + 0.010013687424361706, + 0.014179568737745285, + -0.011835773475468159, + -0.012980417348444462, + 0.0021977941505610943, + -0.033327046781778336, + -0.00338721158914268, + -0.00914157833904028, + -1.6060055713751353e-5, + -0.01580698788166046, + 0.021896181628108025, + -0.016056161373853683, + 0.01694384403526783, + 0.010395235382020473, + 0.024605950340628624, + 0.006801676470786333, + -0.01956017315387726, + -0.015129544772207737, + 0.023173199966549873, + 0.0015320319216698408, + -0.0226125568151474, + -0.021942902356386185, + -0.009632139466702938, + 0.0010249235201627016, + 0.03289099410176277, + 0.0025929687544703484, + -0.0013052445137873292, + -0.015783626586198807, + -0.009219445288181305, + -0.005505192093551159, + -0.024823978543281555, + -0.013019351288676262, + 0.0257116612046957, + -0.03535158559679985, + -0.0010258968686684966, + 0.013221804983913898, + -0.00860429648309946, + 0.008176027797162533, + -0.025898542255163193, + 0.0014794716844335198, + 0.008323974907398224, + 0.044602178037166595, + -0.004411161877214909, + 0.0099513940513134, + -0.027455881237983704, + 0.004952337127178907, + -0.028795192018151283, + -0.03282869979739189, + -0.0032976646907627583, + -0.0034047316294163465, + -0.02820340357720852, + -0.005318311508744955, + -0.011243985034525394, + 0.02388957515358925, + -0.00497959041967988, + 0.005960713606327772, + 0.007607599254697561, + 0.000212187398574315, + -0.019342146813869476, + 0.0281099621206522, + 0.0015252185985445976, + 0.0019612733740359545, + 0.003428091760724783, + -0.007008024025708437, + -0.0017558992840349674, + -0.016009440645575523, + 0.02694195881485939, + 0.007366211619228125, + 0.0017578459810465574, + -0.01678811013698578, + 0.006412341725081205, + -0.009515339508652687, + 0.029293540865182877, + 0.04335630685091019, + -0.008985844440758228, + -0.022301089018583298, + -0.018734784796833992, + -0.016305334866046906, + -0.024528084322810173, + -0.015736907720565796, + 0.00744407856836915, + 0.014677916653454304, + -0.019233131781220436, + -0.008456348441541195, + -0.003827159758657217, + 0.010730063542723656, + -0.013066071085631847, + 0.03357622027397156, + -0.008199388161301613, + -0.00925059150904417, + 0.017753660678863525, + 0.02988532930612564, + -0.0026552623603492975, + 0.02410760149359703, + -0.008518642745912075, + -0.013346392661333084, + 0.03522700071334839, + -0.011664466932415962, + 0.020354416221380234, + 0.0008808696875348687, + 0.009608779102563858, + 0.018952811136841774, + -0.024808404967188835, + -0.017426619306206703, + 0.008923550136387348, + 0.020930631086230278, + -0.01999622769653797, + 0.015394292771816254, + -0.016616802662611008, + -0.034728653728961945, + -0.004866683389991522, + -0.007837306708097458, + -0.008059227839112282, + -0.00858093611896038, + 0.017613500356674194, + 0.00023895414778962731, + 0.0025579286739230156, + -0.010091554373502731, + 0.009219445288181305, + -0.0065719690173864365, + 0.0013247111346572638, + -0.00998254120349884, + -0.01271567028015852, + 0.008627655915915966, + 0.007841200567781925, + -0.021974047645926476, + -0.010216141119599342, + -0.01495823822915554, + -0.011399718932807446, + -0.019155265763401985, + -0.01479471754282713, + 0.010761209763586521, + 0.00498348381370306, + 0.0008000827510841191, + -0.0010804036865010858, + -0.015098398551344872, + -0.0003177944163326174, + 0.012536576017737389, + -0.003274304559454322, + 0.009063711389899254, + 0.013050497509539127, + 0.018765930086374283, + 0.0015028318157419562, + 0.0065680756233632565, + -0.0008959564147517085, + -0.005516872275620699, + -0.023095332086086273, + -0.01204601489007473, + 0.009188298135995865, + -0.013665646314620972, + 0.0031633442267775536, + 0.004792709834873676, + 0.08876830339431763, + 0.0006643022643402219, + -0.004041293635964394, + 0.00427100108936429, + 0.008783389814198017, + -0.020416710525751114, + 4.310056465328671e-5, + 0.013486552983522415, + 0.016383202746510506, + 0.0060969810001552105, + 0.004224281292408705, + -0.02695753239095211, + 0.027969801798462868, + 0.007420718669891357, + -0.01424964889883995, + 0.002894703298807144, + 0.013790233992040157, + 0.024917418137192726, + 0.005111963953822851, + 0.020354416221380234, + 0.010060408152639866, + -0.011243985034525394, + -0.01694384403526783, + 0.022285515442490578, + -0.013844740577042103, + 0.016056161373853683, + 0.008137094788253307, + 0.005524659063667059, + 0.021008498966693878, + 0.010099341161549091, + -0.002143287332728505, + 0.007237731479108334, + -0.01993393525481224, + 0.0019495933083817363, + -0.0007008023676462471, + 0.013112791813910007, + -0.007019704207777977, + -0.0008034894126467407, + -0.013899247162044048, + 0.011781266890466213, + 0.005933460313826799, + -0.005069137550890446, + 0.03279755264520645, + 0.013626713305711746, + 0.006996343843638897, + -0.007370105013251305, + -0.011812414042651653, + -0.006054154131561518, + 0.008518642745912075, + -0.012925910763442516, + -0.012069374322891235, + -0.004792709834873676, + 0.012606656178832054, + 0.00193207326810807, + 0.014319729059934616, + 0.004165880847722292, + 0.004403375089168549, + -0.016756964847445488, + -0.014132848009467125, + -0.003932280000299215, + -0.00992024689912796, + -0.013315245509147644, + -0.027969801798462868, + -0.020837191492319107, + -0.006466848775744438, + -0.02398301474750042, + -0.023469094187021255, + -0.030165649950504303, + 0.010901371017098427, + 0.013315245509147644, + 0.010488675907254219, + -0.0006720889359712601, + 0.005618099123239517, + -0.02846815064549446, + -0.009055924601852894, + 0.00998254120349884, + 0.01557338610291481, + 0.006712129805237055, + 0.005692072678357363, + 0.015121757984161377, + 0.007292238064110279, + -4.8545167373958975e-5, + -0.006478528957813978, + -0.021008498966693878, + -0.012061587534844875, + 0.010075980797410011, + 0.01828315667808056, + -0.01818971522152424, + 0.0005864353151991963, + -0.02281501144170761, + -0.011041531339287758, + -0.005123644135892391, + -0.007261091377586126, + 0.0012088841758668423, + 0.0057310061529278755, + 0.004948443733155727, + -0.03094431944191456, + -0.002925849985331297, + 0.01560453325510025, + -0.005034097004681826, + 0.008775603026151657, + 0.018874945119023323, + -0.01200708094984293, + 8.463466656394303e-6, + -0.0005898420349694788, + -0.02275271713733673, + 0.021569140255451202, + 0.015814773738384247, + -0.031816430389881134, + 0.00924280472099781, + -0.0031886508222669363, + -0.028997646644711494, + 0.0006253687897697091, + 0.005563592538237572, + -0.020260976627469063, + 0.0046058292500674725, + 0.010068194009363651, + 0.00844856258481741, + 0.003482598578557372, + -0.018999531865119934, + -0.027969801798462868, + 0.011243985034525394, + 0.013681219890713692, + -0.01203044131398201, + -0.0021179805044084787, + -0.0013305512256920338, + 0.003225637599825859, + -0.00565313920378685, + -0.020821617916226387, + -0.005532445386052132, + 0.007296131458133459, + 0.00248006172478199, + 0.013626713305711746, + 0.003973160404711962, + 0.01355663314461708, + -0.011859133839607239, + -0.01851675659418106, + -0.001688739052042365, + 0.02837471105158329, + -0.022955171763896942, + 0.016320908442139626, + 0.017924968153238297, + -0.003328811377286911, + 0.005361138377338648, + -0.002524835290387273, + 0.019124118611216545, + -0.013502126559615135, + -0.01681925728917122, + 0.007385678589344025, + 0.007354531902819872, + 0.020572444424033165, + -0.03394998237490654, + 0.01132963877171278, + -0.013790233992040157, + 0.01998065412044525, + 0.003827159758657217, + -0.02410760149359703, + -8.735696610528976e-5, + -0.019279852509498596, + -0.00773607986047864, + -0.009515339508652687, + 0.0014531916240230203, + -0.014420956373214722, + 0.0021140871103852987, + -0.012334122322499752, + 0.005629779305309057, + 0.0011826039990410209, + 0.03435489162802696, + 0.011524305678904057, + -0.018018407747149467, + -0.0149270910769701, + -0.006443488877266645, + 0.007802266627550125, + -0.02957386150956154, + 0.002022593514993787, + 0.0004932383308187127, + 0.002034273697063327, + -0.0061008743941783905, + -0.02276829071342945, + -0.0009485165937803686, + -0.00039906802703626454, + -0.009663286618888378, + -0.001788019435480237, + 0.001685819122940302, + 0.014163995161652565, + -0.023017466068267822, + 0.0006093087722547352, + -0.016165174543857574, + 0.009336245246231556, + 0.010286222212016582, + -0.028639458119869232, + 0.017457766458392143, + -0.01479471754282713, + -0.00635783514007926, + -0.011547666043043137, + 0.0034572917502373457, + 0.0035604655276983976, + 0.023764988407492638, + 0.0011699507012963295, + -0.016134029254317284, + 0.014646770432591438, + 0.0036110789515078068, + 0.011578813195228577, + -0.0023496346548199654, + 0.0005659952876158059, + -0.025882968679070473, + -0.018937237560749054, + -0.020276550203561783, + -0.009608779102563858, + -0.0035468388814479113, + -0.04995942488312721, + -0.022690424695611, + 0.023126479238271713, + 0.009515339508652687, + -0.02010524272918701, + -0.0009246698464266956, + 0.020401136949658394, + 0.010021474212408066, + 0.019030679017305374, + 0.010208355262875557, + 0.006124234292656183, + 0.010932517237961292, + 0.027596041560173035, + -0.0195913203060627, + -0.016134029254317284, + -0.0007392491679638624, + 0.010426382534205914, + 0.014319729059934616, + 0.016492215916514397, + 7.798860315233469e-5, + 0.02709769271314144, + -0.020463429391384125, + -0.00456300238147378, + 0.01836102269589901, + -0.0042515345849096775, + 0.03273525834083557, + 0.014000474475324154, + -0.006326688453555107, + 0.006112554110586643, + -0.009850166738033295, + -0.006462955381721258, + 0.011423079296946526, + -0.009172724559903145, + -0.008993630297482014, + 0.005045777186751366, + -0.006548609118908644, + 0.008043654263019562, + -0.011898067779839039, + -0.00044968153815716505, + -3.0751354643143713e-5, + -0.004134734161198139, + -0.017286458984017372, + 0.0008740563062019646, + 0.01692827045917511, + 0.00982680730521679, + -0.0033969448413699865, + -0.00992024689912796, + 0.002925849985331297, + -0.017675792798399925, + 0.002088780514895916, + 0.011773480102419853, + 0.0007168624433688819, + -0.00457078916952014, + -0.005797192919999361, + -0.00454742880538106, + -0.0019038465106859803, + -0.019248705357313156, + -0.0015495519619435072, + 0.002530675381422043, + 0.0063500483520329, + -0.002291234442964196, + 0.014880371280014515, + 0.0007592025795020163, + 0.012365268543362617, + -0.004399481695145369, + 0.000573781959246844, + 0.016056161373853683, + -0.02670835703611374, + 0.0026182755827903748, + 0.016118455678224564, + -0.016538936644792557, + 0.017675792798399925, + -0.0015826454618945718, + -0.023702694103121758, + 0.006205994635820389, + -0.021756021305918694, + -0.0035993990022689104, + 0.005189830902963877, + -0.003675319254398346, + 0.005178151186555624, + -0.0037064659409224987, + -0.02809438854455948, + 0.014638983644545078, + 0.002184167504310608, + 0.0013091377913951874, + 0.0019213665509596467, + -0.00747911911457777, + 0.011228411458432674, + 0.015277491882443428, + -0.0004827749799005687, + -0.009600993245840073, + 0.011508733034133911, + 0.0022114207968115807, + -0.030196797102689743, + 0.02128881961107254, + 0.005528551992028952, + 0.009632139466702938, + 0.005287164822220802, + 0.0013149778824299574, + 0.014436529017984867, + 0.018127422779798508, + -0.0015797254163771868, + -0.0005732952849939466, + -0.023079758509993553, + -0.007915173657238483, + -0.025026431307196617, + 0.001441511558368802, + 0.0065680756233632565, + -0.01494266465306282, + -0.00456300238147378, + -0.0034631318412721157, + -0.006315008271485567, + 0.00019904735381715, + 0.010745637118816376, + 0.0010161635000258684, + 0.01557338610291481, + 0.012746816501021385, + 0.011672252789139748, + 0.017239738255739212, + -0.015542239882051945, + 0.00925059150904417, + -0.0001910173159558326, + -0.01424964889883995, + -0.008176027797162533, + 0.0008122494327835739, + 0.02251911722123623, + -0.0015631787246093154, + -0.008323974907398224, + -0.012809110805392265, + 0.004161987453699112, + -0.02982303500175476, + -0.005376711487770081, + -0.010099341161549091, + 0.009351818822324276, + 0.010348515585064888, + 0.023064184933900833, + 0.011454225517809391, + 0.004932870157063007, + 0.01828315667808056, + 0.013105005025863647, + 0.016679096966981888, + 0.001295511145144701, + 0.027814067900180817, + -0.0037045192439109087, + -0.009546485729515553, + -0.004450095351785421, + 0.00912600476294756, + 0.024746110662817955, + -0.021709300577640533, + 0.007958000525832176, + -0.024574803188443184, + 0.00096700998255983, + -0.019015105441212654, + -0.004707056097686291, + 0.008783389814198017, + -0.0016556456685066223, + -0.0004336214915383607, + 0.015892641618847847, + -0.014467676170170307, + -0.005361138377338648, + -0.0055947392247617245, + -0.023484667763113976, + -0.008214961737394333, + -0.008954697288572788, + -0.021537993103265762, + 0.012349695898592472, + 0.0006613822770304978, + 0.019295426085591316, + -0.005512978881597519, + 0.00427878787741065, + 0.019295426085591316, + 0.0038485731929540634, + -0.009437472559511662, + -0.00017009058501571417, + 0.01700613833963871, + 0.022347809746861458, + 0.006322795059531927, + 0.023251065984368324, + 0.011181691661477089, + -0.0060814074240624905, + -0.008674376644194126, + 0.00026085422723554075, + 0.011695613153278828, + -0.007654319517314434, + -0.0035877188201993704, + 0.0006341288099065423, + -0.02424776367843151, + 0.03102218545973301, + -0.014023834839463234, + -0.00678999675437808, + -0.003373584942892194, + -0.009717793203890324, + 0.007541412487626076, + -0.005372818559408188, + 0.0035507320426404476, + -0.013252952136099339, + -0.004792709834873676, + 0.004021827131509781, + 0.02382728084921837, + -0.017909394577145576, + 0.004208707716315985, + 0.007930747233331203, + -0.016398776322603226, + -0.006050260737538338, + 0.011804627254605293, + -0.0015612320275977254, + 0.005859486758708954, + -0.0069418372586369514, + 0.007385678589344025, + 0.006209888029843569, + 0.022083062678575516, + 0.009149364195764065, + 0.005127537529915571, + -0.005637566093355417, + 0.008199388161301613, + -0.012653376907110214, + 0.031722988933324814, + -0.01063662301748991, + -0.01132185198366642, + 0.020151961594820023, + -0.002923903288319707, + -0.020899483934044838, + -0.007412931881844997, + 0.020697031170129776, + -0.03119349293410778, + -0.0012721510138362646, + 0.030804159119725227, + -0.02122652530670166, + -0.002232834231108427, + 0.017893821001052856, + -0.01851675659418106, + -0.005069137550890446, + 0.010722276754677296, + 0.0052443379536271095, + 0.013198445551097393, + 0.002049847040325403, + 0.00853421539068222, + 0.019201986491680145, + 0.003949800040572882, + -0.006135914474725723, + -0.007646532729268074, + 0.017348753288388252, + 0.001445404952391982, + -0.0024586482904851437, + -0.009382965043187141, + -0.007623172830790281, + 0.011033744551241398, + 0.01686597801744938, + 0.04105144739151001, + -0.04718736186623573, + 0.001538845244795084, + -0.00062342215096578, + -0.010807930491864681, + 0.005984073970466852, + -0.014374235644936562, + -0.010823504067957401, + 0.00860429648309946, + 0.01135299913585186, + -0.005715433042496443, + 0.007148184347897768, + -0.008207174949347973, + -0.0037512395065277815, + 0.02284615859389305, + 0.0008521562558598816, + 0.019077397882938385, + 0.0007504425593651831, + -0.014311942271888256, + 0.020510150119662285, + 0.016492215916514397, + -0.017675792798399925, + -0.013992687687277794, + 0.003478705184534192, + -0.007140397559851408, + -0.0013305512256920338, + 0.008355122059583664, + 0.011438652873039246, + -0.0013607246801257133, + 0.004224281292408705, + 0.0038057463243603706, + -0.0034650785382837057, + 0.006657622754573822, + 0.002244514413177967, + 0.02139783278107643, + -0.0062215677462518215, + 0.011968147940933704, + -0.012536576017737389, + -3.794492158704088e-6, + 0.00907149724662304, + 0.00020464403496589512, + 0.0011115504894405603, + 0.012521002441644669, + -0.004640869330614805, + 0.0032489977311342955, + 0.0281099621206522, + 0.006529142148792744, + 0.0028460363391786814, + -0.024590376764535904, + 0.011368571780622005, + 0.00317502417601645, + 0.0010735903633758426, + -0.0007650426123291254, + 0.0014872584724798799, + 0.003424198366701603, + 0.014615623280405998, + -0.00042096810648217797, + 0.02244124934077263, + 0.011898067779839039, + -0.0074362922459840775, + 0.023251065984368324, + 0.0042476411908864975, + 0.012069374322891235, + -0.013066071085631847, + 0.0023087544832378626, + 0.020183108747005463, + 0.004648655652999878, + 0.004928976763039827, + 0.013182871975004673, + 0.004356654826551676, + 0.017815954983234406, + 0.006945730186998844, + -0.019342146813869476, + 0.008939123712480068, + 0.002639689017087221, + -0.006883436813950539, + 0.02272157184779644, + 0.00977229978889227, + 0.0065836491994559765, + 0.013961541466414928, + 0.043169427663087845, + 0.004407268483191729, + 0.005875059869140387, + 0.010971451178193092, + 0.00995918083935976, + 0.002787636127322912, + -0.0184700358659029, + -0.033607367426157, + -0.001384084695018828, + 0.0025462487246841192, + -0.004119160585105419, + 0.0016079521737992764, + -0.01421071495860815, + 0.001591405482031405, + 0.02128881961107254, + 0.0065758624114096165, + 0.0021101939491927624, + -0.020852765068411827, + -0.010208355262875557, + 0.0027214493602514267, + -0.0007650426123291254, + 0.014366448856890202, + -0.004851109813898802, + -0.020354416221380234, + -0.009756726212799549, + -0.0030484905000776052, + -0.0045980424620211124, + 0.00024077916168607771, + 0.021024072542786598, + 0.02990090288221836, + -0.007922960445284843, + 0.012505429796874523, + -0.009305098094046116, + 0.006194314453750849, + -0.0007830493268556893, + 0.008347335271537304, + -0.0013295778771862388, + -0.00857314933091402, + -0.018018407747149467, + -0.005575272254645824, + 0.019139692187309265, + -0.0010044834343716502, + 0.0047498829662799835, + -0.010948090814054012, + -0.016710244119167328, + -0.003126357449218631, + -0.016585657373070717, + 0.010955877602100372, + 0.006766636390239, + -0.0036889459006488323, + 0.004675909411162138, + -0.008207174949347973, + 0.027393586933612823, + -0.0157602671533823, + -0.015370932407677174, + -0.0025715555530041456, + 0.009188298135995865, + -0.01268452312797308, + -0.004769349470734596, + 0.013073857873678207, + -0.011968147940933704, + -0.02700425311923027, + -0.004220387898385525, + -0.00427100108936429, + -0.004158094059675932, + -0.0001298187708016485, + 0.013323032297194004, + 0.013089431449770927, + -0.0026669425424188375, + -0.008160454221069813, + -0.01419514138251543, + -0.0031166239641606808, + -0.013042711652815342, + -0.0007806160137988627, + 0.017302032560110092, + -0.005446792114526033, + 0.00773218646645546, + -0.008744456805288792, + 0.026490330696105957, + 0.011532092466950417, + 0.02546248771250248, + -0.009390751831233501, + -0.004586362279951572, + -0.004925083369016647, + -0.0025559819769114256, + 0.010839076712727547, + 0.007973574101924896, + -0.005053563974797726, + -0.0039848401211202145, + 0.017847100272774696, + 0.0013266578316688538, + -0.020479002967476845, + 0.0005849753506481647, + 0.005715433042496443, + 0.0016254722140729427, + -0.030087782070040703, + 0.00566481938585639, + -0.010107127949595451, + -0.017411045730113983, + 0.0023535280488431454, + 0.012995990924537182, + -0.01677253656089306, + 0.013953754678368568, + -0.020292121917009354, + -0.005952926818281412, + 0.005563592538237572, + 0.011391932144761086, + 0.0065836491994559765, + 0.0012049907818436623, + 0.008658803068101406, + -0.013252952136099339, + 0.0034962252248078585, + -0.010582116432487965, + 0.0006180687923915684, + -0.01845446228981018, + 0.020961778238415718, + -0.005396178457885981, + -0.0298541821539402, + 0.006443488877266645, + -0.01985606737434864, + 0.016009440645575523, + 0.0077127194963395596, + -0.013821380212903023, + -0.03672204539179802, + -0.004492922220379114, + -0.012443135492503643, + 0.007486905436962843, + -0.010971451178193092, + 0.010932517237961292, + 0.009390751831233501, + 0.00565313920378685, + -0.0257116612046957, + -0.006315008271485567, + 0.00844856258481741, + -0.028546016663312912, + 0.015254132449626923, + 0.005847806576639414, + -0.014529969543218613, + -0.006283861584961414, + -0.01336196530610323, + 0.015145118348300457, + -0.02958943508565426, + -0.007113144267350435, + 0.010987023822963238, + 0.002542355330660939, + -0.009328458458185196, + -1.340619201073423e-5, + 0.014288581907749176, + -0.0006925290217623115, + -0.015254132449626923, + -4.2613894038368016e-5, + 0.008728883229196072, + -0.027876362204551697, + -0.00169555249158293, + -0.0015222985530272126, + -0.02381170727312565, + 0.017239738255739212, + 0.00913379155099392, + -0.030819732695817947, + -0.01709957793354988, + -0.02560264803469181, + -0.0070703173987567425, + -0.01689712516963482, + -0.013696793466806412, + 0.009678860194981098, + -0.009710006415843964, + 0.00010487702820682898, + -0.002984250197187066, + 0.022986318916082382, + 0.0004180480900686234, + -0.0041113742627203465, + 0.002838249783962965, + 0.007599812466651201, + 0.020588016137480736, + 0.003914759960025549, + -0.005614205729216337, + -0.02848372422158718, + -0.022378956899046898, + 0.01845446228981018, + -0.008277255110442638, + -0.005804979708045721, + 0.007510265801101923, + 0.000520248431712389, + 0.006918476894497871, + -0.00566481938585639, + 0.0009081230964511633, + -0.001792886178009212, + -0.024605950340628624, + 0.010122701525688171, + 0.01678811013698578, + -0.0005402018432505429, + 0.006688769441097975, + 0.016414349898695946, + 0.0011222572065889835, + 0.003322971286252141, + -0.000870649644639343, + -0.010878010652959347, + -0.020229829475283623, + 9.027697524288669e-5, + 0.002042060252279043, + -0.0003988246899098158, + 0.012427562847733498, + -0.02809438854455948, + -0.023749414831399918, + -0.008105947636067867, + 0.014607836492359638, + 0.02546248771250248, + -0.009421898983418941, + -0.0038524665869772434, + 0.005119750741869211, + -0.03419915586709976, + 0.004699269309639931, + 0.004722629673779011, + -0.013922607526183128, + 0.015978295356035233, + -0.009344032034277916, + -0.010815717279911041, + -2.5413211915292777e-5, + 0.01272345706820488, + -0.007319491822272539, + 0.00853421539068222, + 0.002328221220523119, + 0.023655973374843597, + 0.0008292828570120037, + -0.01477135717868805, + 0.02544691413640976, + 0.008370695635676384, + 0.015347572043538094, + 0.008098160848021507, + 0.001971006626263261, + -0.005949033889919519, + 0.019342146813869476, + 0.010286222212016582, + -0.022892877459526062, + 0.0037551329005509615, + -0.028982073068618774, + -0.013268525712192059, + -0.022051915526390076, + -0.016725817695260048, + 0.001995340222492814, + 0.005271591246128082, + 0.014709063805639744, + 0.011555452831089497, + 0.0014833650784566998, + -0.026677211746573448, + -0.0026104890275746584, + -0.030695144087076187, + -0.005275484640151262, + 0.011282918974757195, + 0.0055791656486690044, + 0.017224164679646492, + 0.010403022170066833, + 0.021553566679358482, + 0.00040782804717309773, + -0.025073152035474777, + -0.011096037924289703, + 0.024372350424528122, + 0.00979566015303135, + 0.012373055331408978, + 0.00016096554463729262, + -0.020369989797472954, + 0.0017130725318565965, + 0.001389924786053598, + 0.011205052025616169, + -0.003776546334847808, + -0.005458471830934286, + -0.009001417085528374, + 0.020183108747005463, + -0.007311705034226179, + 0.01477914396673441, + -0.0030621171463280916, + 0.004781029652804136, + 0.016725817695260048, + -0.003223690902814269, + -0.015191838145256042, + -0.003577985567972064, + 0.011913640424609184, + -0.012606656178832054, + 0.0008531296043656766, + -0.006677089259028435, + 0.021880608052015305, + 0.017364326864480972, + -0.004531855694949627, + 0.0033657981548458338, + 0.011423079296946526, + -0.014522182755172253, + -0.03144266828894615, + 0.005127537529915571, + -0.0028635563794523478, + -0.013439832255244255, + 0.007401252165436745, + -0.020525723695755005, + -0.010286222212016582, + 0.011586599983274937, + -0.004123053979128599, + 0.015409866347908974, + 0.00791128072887659, + -0.0025929687544703484, + -0.014584476128220558, + -0.00635394174605608, + 0.009655499830842018, + 0.01287919096648693, + 0.004823856521397829, + -0.027315720915794373, + 0.010153847746551037, + 0.017239738255739212, + 0.0014746050583198667, + 0.0028538231272250414, + -0.013992687687277794, + 0.0034495051950216293, + -0.02407645620405674, + -0.013346392661333084, + -0.020541297271847725, + 0.009024777449667454, + 0.0001104737093555741, + 0.023079758509993553, + -0.01998065412044525, + 0.007658212911337614, + -0.011041531339287758, + 0.005326098296791315, + 0.01580698788166046, + -0.01965361461043358, + -0.005528551992028952, + 0.015261919237673283, + 0.0041113742627203465, + 0.014343089424073696, + 0.005972393788397312, + -0.010504249483346939, + 0.011212837882339954, + 0.0032918245997279882, + -0.00678220996633172, + -0.0171151515096426, + -0.011804627254605293, + -0.006544715724885464, + -0.0049562300555408, + -0.0037492928095161915, + 0.006396768614649773, + 0.006202101241797209, + 0.009834593161940575, + -0.0032139576505869627, + -0.017442192882299423, + 0.020385563373565674, + 0.003585772356018424, + 0.008791176602244377, + -0.00017970228509511799, + 0.0085965096950531, + -0.017971688881516457, + -0.013252952136099339, + 0.003910866566002369, + -0.020120816305279732, + 0.008059227839112282, + 0.027720628306269646, + -0.0014035514323040843, + 0.003239264478906989, + 0.013120578601956367, + 0.00021863574511371553, + -0.008713309653103352, + -0.017893821001052856, + 0.010200568474829197, + -0.016056161373853683, + 0.011539879254996777, + -0.01957574672996998, + 0.003583825659006834, + 0.010909156873822212, + -0.012972630560398102, + -0.010730063542723656, + -0.024590376764535904, + -0.0039050267077982426, + -0.03217461705207825, + -0.0016644056886434555, + -0.0018444729503244162, + -0.002326274523511529, + -0.016211895272135735, + -0.0009996166918426752, + -0.002528728684410453, + -0.003834946546703577, + 1.9679649994941428e-5, + 0.009421898983418941, + 0.009616565890610218, + -0.011937000788748264, + 0.001632285537198186, + -0.02124209888279438, + -0.017691366374492645, + 0.027658334001898766, + -0.003570198779925704, + 0.01340089924633503, + 0.0004786383069586009, + -0.004197027534246445, + -0.01966918632388115, + -0.0052248709835112095, + -0.015495519153773785, + -0.016632376238703728, + 0.0025520888157188892, + -0.012513215653598309, + 0.011680039577186108, + -0.0014278849121183157, + -0.015721334144473076, + -0.006536928936839104, + -0.01061326265335083, + -0.01678811013698578, + -0.002182220807299018, + 0.009710006415843964, + 0.0313648022711277, + -3.2454692700412124e-5, + 0.0011826039990410209, + -0.00339305168017745, + -0.012474282644689083, + 0.011547666043043137, + -0.006704343017190695, + -0.008892403915524483, + 0.005010737106204033, + 0.012139454483985901, + -0.010099341161549091, + 0.0025501421187072992, + 0.017660221084952354, + 0.00927395187318325, + 0.010683342814445496, + -0.0037512395065277815, + -0.006459061987698078, + -0.01694384403526783, + -0.021693727001547813, + -0.018859371542930603, + -0.004679802805185318, + -0.0062215677462518215, + 0.01694384403526783, + -0.014125061221420765, + 0.018765930086374283, + -0.02388957515358925, + 0.011687826365232468, + -0.006891223601996899, + -0.0294648464769125, + -0.0006487288628704846, + 0.01840774342417717, + 0.005855593364685774, + -0.011438652873039246, + 0.030025489628314972, + 0.01474799681454897, + 0.019404439255595207, + -0.013743513263761997, + -0.000772342667914927, + -0.01699056476354599, + 0.011617746204137802, + -0.0052248709835112095, + -0.002933636773377657, + 0.005115857347846031, + -0.006766636390239, + 0.007323385216295719, + 0.009748940356075764, + 0.020837191492319107, + 0.008144881576299667, + 0.014584476128220558, + 0.00677831657230854, + -0.010146060958504677, + -0.01490373071283102, + 0.000996696762740612, + 0.01198372058570385, + -0.013891460373997688, + -0.011524305678904057, + 0.04108259454369545, + 0.013829167000949383, + 0.004644762724637985, + -2.8774264137609862e-5, + 0.011937000788748264, + 0.020525723695755005, + 0.0019018998136743903, + -0.010052621364593506, + 0.0033619047608226538, + -0.007599812466651201, + -0.0007957027410157025, + -0.00013310379290487617, + -0.036036815494298935, + 0.015993867069482803, + 0.013930394314229488, + 0.002339901402592659, + -0.027471452951431274, + 0.0015154852299019694, + -0.016305334866046906, + 0.02853044494986534, + 0.017987260594964027, + 0.023515813052654266, + 0.00499127060174942, + 0.027829641476273537, + 0.005454578436911106, + 0.016305334866046906, + 0.0017013924662023783, + -0.004204814322292805, + -0.0062215677462518215, + 0.006155380979180336, + 0.0017490859609097242, + -0.007829519920051098, + -0.004672016017138958, + -0.03295328468084335, + 0.009398538619279861, + 0.013899247162044048, + 0.0024781150277704, + -0.008456348441541195, + -0.02108636498451233, + -0.004640869330614805, + -0.030477117747068405, + 0.013953754678368568, + -0.010146060958504677, + 0.01352548599243164, + 0.002246461110189557, + 0.0013986848061904311, + -0.005520765669643879, + 0.023360079154372215, + -0.010122701525688171, + -0.008191601373255253, + 0.0018483663443475962, + -0.007019704207777977, + 0.016647949814796448, + 0.011750119738280773, + -0.02395186759531498, + -0.02385842800140381, + 0.0034514518920332193, + -0.014031621627509594, + 0.014997171238064766, + 0.018999531865119934, + -0.009460831992328167, + 0.003124410752207041, + 0.006992450449615717, + 0.03264181688427925, + -0.0008005694253370166, + -0.0014823917299509048, + 0.0027195026632398367, + -0.020385563373565674, + -0.0008312294958159328, + 0.001696525840088725, + -0.01980934850871563, + 0.014031621627509594, + 0.004707056097686291, + -0.00744797196239233, + -0.0016108722193166614, + 0.0340745709836483, + 0.01203044131398201, + -0.0052521247416734695, + -0.0254001934081316, + -0.001631312188692391, + 0.00034407450584694743, + 0.014358662068843842, + -0.00496012344956398, + 0.013455405831336975, + 0.015331999398767948, + -0.008954697288572788, + -0.018096275627613068, + 0.005820553284138441, + 0.013502126559615135, + -0.01491930428892374, + 0.016476642340421677, + 0.008923550136387348, + 9.81853372650221e-5, + -0.005014630500227213, + 0.011454225517809391, + -0.018828224390745163, + 0.010815717279911041, + 0.02413874864578247, + 0.0181585680693388, + 0.00193596666213125, + 0.013011564500629902, + 0.018968384712934494, + 0.002925849985331297, + -0.008752243593335152, + 0.003472865093499422, + 0.014358662068843842, + -0.003521532053127885, + -0.008503069169819355, + -0.004084120504558086, + 0.004138627555221319, + 0.01706843078136444, + -0.001737405895255506, + -0.00856536254286766, + 0.0012711776653304696, + -0.0012604709481820464, + 0.005037990398705006, + -0.010348515585064888, + 0.013766873627901077, + 0.011742333881556988, + -0.011500946246087551, + -0.001885353121906519, + 0.011578813195228577, + 0.015962721779942513, + 0.027564894407987595, + -0.011205052025616169, + 0.008012507110834122, + 0.004091907292604446, + 0.008269468322396278, + -0.004781029652804136, + 0.0015690186992287636, + 0.00856536254286766, + -0.022955171763896942, + -0.001046336954459548, + -0.004002360161393881, + 0.010161634534597397, + 0.012770176865160465, + -0.0020576335955411196, + 0.025088725611567497, + 0.019451159983873367, + 0.007155971135944128, + 0.011944787576794624, + 0.0013558579375967383, + 0.016071734949946404, + 0.0015310585731640458, + 0.01848560944199562, + 0.026474757120013237, + 0.015370932407677174, + 0.017348753288388252, + 0.008238321170210838, + -0.010955877602100372, + 0.00744407856836915, + -0.0028577165212482214, + 0.010138275101780891, + -0.0065992227755486965, + -0.010558756068348885, + 0.007934640161693096, + 0.009421898983418941, + -0.004364441614598036, + -0.01572912000119686, + -0.003739559557288885, + -0.012918123975396156, + -0.00427489448338747, + -0.033233605325222015, + 0.01286361739039421, + 0.004952337127178907, + -0.004936763551086187, + -0.009647713042795658, + -0.011275132186710835, + -0.0012312708422541618, + 0.025836247950792313, + -0.02521331235766411, + 0.006529142148792744, + 0.0057348995469510555, + -0.0047615631483495235, + -0.0019057932076975703, + -0.023422373458743095, + 0.004625295754522085, + -0.01814299449324608, + 0.01133742555975914, + 0.008970270864665508, + 0.010924730449914932, + -0.0006263421382755041, + 0.012606656178832054, + -0.018080702051520348, + -0.0077127194963395596, + -0.018937237560749054, + -0.007673786021769047, + -0.002988143591210246, + 0.01962246745824814, + -0.0006312088225968182, + -0.013735726475715637, + -0.001143670524470508, + 0.01422628853470087, + -0.0029589433688670397, + 0.025026431307196617, + -0.0014269115636125207, + -0.025836247950792313, + 0.0008876830106601119, + -0.011430866084992886, + 0.008674376644194126, + -0.006680982653051615, + 0.028623884543776512, + 0.0036052390933036804, + -0.021771594882011414, + -0.018999531865119934, + -0.008946910500526428, + 0.012248468585312366, + -0.01709957793354988, + -0.016118455678224564, + -0.009367392398416996, + 0.007389571983367205, + -0.008471922017633915, + 0.00016619723464827985, + 0.029293540865182877, + -0.004710949491709471, + 0.011750119738280773, + -0.016679096966981888, + -0.0013519646599888802, + -0.0037843328900635242, + 0.017520060762763023, + -0.016320908442139626, + -0.01284025702625513, + 0.02948042005300522, + 0.005220978055149317, + 0.0023749414831399918, + 0.01199929416179657, + -0.006852290127426386, + 0.002737022703513503, + 0.011773480102419853, + -0.00856536254286766, + 0.003581878961995244, + -0.01845446228981018, + -0.018111849203705788, + 0.011929214000701904, + 0.012326335534453392, + 0.010247288271784782, + -0.009639926254749298, + -0.005049670580774546, + -0.006891223601996899, + 0.022129781544208527, + -0.01709957793354988, + 0.022332236170768738, + -0.003885559970512986, + 0.00453574862331152, + -0.030181223526597023, + 0.0045980424620211124, + 0.0029745169449597597, + 0.0012302974937483668, + -0.02278386428952217, + -0.005773833021521568, + -0.007627066224813461, + -0.01266894955188036, + -0.00907149724662304, + -0.017878247424960136, + 0.014864797703921795, + -0.011851347051560879, + 0.0034514518920332193, + -0.002339901402592659, + 0.022892877459526062, + -0.011874707415699959, + -0.007786693051457405, + 0.003819372970610857, + 0.007183224428445101, + 0.008526429533958435, + -0.019155265763401985, + 0.007934640161693096, + 0.026147715747356415, + 0.008168241009116173, + 0.015993867069482803, + -0.004348868038505316, + -0.007545305881649256, + -0.00339110498316586, + -0.006969090551137924, + 0.0025131553411483765, + -0.03113120049238205, + 0.007646532729268074, + -0.0002997877018060535, + -0.006867863237857819, + 0.004652549047023058, + -0.030072208493947983, + 0.0005119750858284533, + 0.0007528759306296706, + 0.006863970309495926, + 0.011282918974757195, + 0.019420012831687927, + -0.0018162461929023266, + -0.003912813495844603, + -0.007303918246179819, + -0.009344032034277916, + 0.011197265237569809, + 0.0539773590862751, + 0.02387400157749653, + 0.01408612821251154, + -0.009180511347949505, + -0.006307221483439207, + -0.021724874153733253, + -0.015394292771816254, + -0.020307695493102074, + -0.006930157076567411, + 0.011041531339287758, + 0.005108070559799671, + -0.0024625416845083237, + 0.009694432839751244, + 0.0026611024513840675, + -0.015238558873534203, + 0.012497643008828163, + -0.004041293635964394, + 0.005999647080898285, + -0.0033385446295142174, + 0.019092971459031105, + -0.016118455678224564, + 0.017815954983234406, + -0.0015495519619435072, + -0.004999056924134493, + 0.007409038487821817, + -0.00041415475425310433, + 0.019233131781220436, + 0.0006268288125284016, + -0.0007854826981201768, + -0.0012244575191289186, + 0.00840184185653925, + -0.001539818593300879, + -0.04556772857904434, + 0.004812176339328289, + 0.0031049440149217844, + 0.013836953788995743, + -0.00981902051717043, + 0.008892403915524483, + 0.01062883622944355, + -0.01825200952589512, + -0.028748471289873123, + -0.00925837829709053, + 0.010216141119599342, + -0.0008623762987554073, + -0.008378482423722744, + -0.00633447477594018, + -0.008876830339431763, + 0.02395186759531498, + -0.010278435423970222, + 0.002775956178084016, + 0.004123053979128599, + -0.009873527102172375, + -0.020634736865758896, + -0.0057504731230437756, + -0.009001417085528374, + -0.0038563597481697798, + 0.012357482686638832, + -0.02708211913704872, + 0.002986196894198656, + 0.002834356389939785, + -0.010480889119207859, + -0.005477938801050186, + 0.00927395187318325, + 0.015674613416194916, + 0.002135500544682145, + 0.002990090288221836, + 0.009024777449667454, + 0.003229530993849039, + 0.013720153830945492, + -0.010675556026399136, + 0.02561822161078453, + -0.006680982653051615, + -0.010153847746551037, + -0.02395186759531498, + -0.015892641618847847, + -0.007759439758956432, + -0.017286458984017372, + -0.01574469357728958, + -0.013323032297194004, + -0.0037473461125046015, + 0.005816659890115261, + -0.016507789492607117, + 0.002585182199254632, + -0.011485372669994831, + 0.003136090701445937, + -0.0007358425064012408, + 0.006513569038361311, + -0.010839076712727547, + 0.02529118023812771, + 0.0033463314175605774, + 8.620112930657342e-5, + -0.007311705034226179, + -0.008214961737394333, + -0.002735076006501913, + 0.024434642866253853, + -0.010410808958113194, + -0.012801324017345905, + -0.010527608916163445, + 0.0065875425934791565, + 0.023391226306557655, + 0.010184994898736477, + 0.0012624176451936364, + -0.008144881576299667, + 0.007521945517510176, + 0.0003090343961957842, + -0.023702694103121758, + -0.015152905136346817, + -0.005941247101873159, + -0.012084947898983955, + 0.008043654263019562, + -0.00927395187318325, + 0.021771594882011414, + -0.004995163530111313, + 0.02544691413640976, + 0.020494576543569565, + 0.015962721779942513, + 0.017364326864480972, + 0.0035624122247099876, + -0.0037882262840867043, + 0.013439832255244255, + 0.004500708542764187, + 0.014187355525791645, + 0.034666359424591064, + 0.0052521247416734695, + -0.0005007816944271326, + 0.0018016461981460452, + 0.004633082542568445, + 0.015659039840102196, + 0.005972393788397312, + 0.0037531862035393715, + 0.0072143711149692535, + -0.013252952136099339, + 0.0009962100302800536, + 0.020245403051376343, + -0.004189241211861372, + -0.006135914474725723, + -0.005139217711985111, + -0.020619163289666176, + 0.019046252593398094, + -0.01991836167871952, + -0.007498585619032383, + 0.02695753239095211, + 0.022005194798111916, + 0.002583235502243042, + -0.0012390575138852, + -0.00227371440269053, + -0.024559231474995613, + 0.006630369462072849, + 0.0019797668792307377, + 0.0028479830361902714, + -0.009632139466702938, + -0.00158653873950243, + -0.008869043551385403, + 0.0003160910855513066, + -0.004469561856240034, + 0.017924968153238297, + -0.0036831058096140623, + 0.005006843712180853, + -0.014132848009467125, + 0.01994950883090496, + -0.012661163695156574, + 0.004150307737290859, + 1.2980356586922426e-5, + 0.013221804983913898, + 0.00455521559342742, + -0.00996696762740612, + -0.0009772300254553556, + 0.021849460899829865, + -0.009554272517561913, + -0.018719211220741272, + -0.021989621222019196, + -0.017784807831048965, + -0.001988526899367571, + 0.007311705034226179, + 0.0017529793549329042, + 0.020447855815291405, + 0.008954697288572788, + -0.0047343093901872635, + -0.014420956373214722, + -0.0065992227755486965, + 0.01817414164543152, + -0.0012380842817947268, + 0.02826569601893425, + 0.0012293241452425718, + -0.027627186849713326, + 0.010535395704209805, + -0.009904674254357815, + 0.015705760568380356, + -0.002787636127322912, + -0.01129849161952734, + 0.01996508240699768, + 0.022908451035618782, + -0.0015330052701756358, + -0.003671425860375166, + -0.02955828793346882, + 0.01354105956852436, + -0.004847216419875622, + -0.008144881576299667, + -0.03865314647555351, + 0.004695375915616751, + 0.013058284297585487, + 0.00497959041967988, + -0.010550969280302525, + 0.003733719466254115 + ], + "a571e22f-f6b7-4f59-b77a-75ff196f623f": [ + -0.01728006824851036, + -0.025470435619354248, + -0.011330007575452328, + 0.02592010237276554, + -0.014782808721065521, + -0.012823544442653656, + 0.02412143349647522, + 0.030272237956523895, + -0.006496084854006767, + 0.04214024171233177, + -0.012124954722821712, + 0.02310968190431595, + 0.012542502954602242, + -0.011209560558199883, + 0.003304251004010439, + 0.020829226821660995, + -0.021102238446474075, + 0.014750690199434757, + -0.011506662704050541, + -0.032424215227365494, + 0.039731308817863464, + -0.021054061129689217, + -0.03274540603160858, + 0.02413749322295189, + 0.009370743297040462, + -0.007154526188969612, + -0.003372503910213709, + 0.006765082478523254, + -0.037611450999975204, + -0.00892910547554493, + 0.010864281095564365, + 0.007242853753268719, + 0.01654132828116417, + -0.018436355516314507, + 0.016228167340159416, + -0.04554486274719238, + 0.012791425921022892, + 0.01729612797498703, + -0.00707422848790884, + -0.006841365247964859, + 0.0043400912545621395, + 0.03221544250845909, + 0.007640327326953411, + 0.006062477361410856, + -0.04201176390051842, + 0.006443891674280167, + -0.0028043976053595543, + -0.0011954322690144181, + -0.02227458544075489, + -0.020074428990483284, + 0.01597924530506134, + 0.01859695091843605, + 0.0009655799949541688, + -0.004159421660006046, + 0.028232676908373833, + -0.02179279923439026, + 0.01758519932627678, + 0.034174706786870956, + 0.004360165912657976, + -0.058071307837963104, + -0.008206426165997982, + 0.009451040998101234, + 0.024956529960036278, + -0.005677048582583666, + 0.023639647290110588, + -0.0032199383713304996, + -0.008049845695495605, + -0.012012537568807602, + -0.009386803023517132, + -0.014863106422126293, + 0.010430673137307167, + 0.028168438002467155, + -0.04843557998538017, + 0.011827853508293629, + -0.01309655699878931, + -0.0062391324900090694, + 0.025341957807540894, + 0.02227458544075489, + 0.015898946672677994, + -0.018532712012529373, + 0.007182630710303783, + -0.005978164728730917, + 0.024041134864091873, + 0.022595776244997978, + 0.06035176292061806, + 0.009796321392059326, + -0.025245601311326027, + -0.0592275932431221, + -0.012743246741592884, + -0.01654132828116417, + 0.00505474116653204, + 0.04124090448021889, + 0.0018910111393779516, + 0.006853410042822361, + -0.030737964436411858, + 0.024828054010868073, + 0.0330505408346653, + 0.003563211066648364, + -0.010703685693442822, + -0.01654132828116417, + 0.003163730027154088, + 0.023430872708559036, + -0.029517440125346184, + -0.001929152524098754, + 0.006054447498172522, + 0.0033343625254929066, + 0.01806698553264141, + -0.013931653462350368, + -0.03120369091629982, + 0.018018806353211403, + -0.020235024392604828, + -0.03863925859332085, + 0.014718570746481419, + -0.009908737614750862, + -0.06465572118759155, + -0.02200157381594181, + -0.019287511706352234, + -0.0293247252702713, + -0.0018759553786367178, + -0.033692922443151474, + 0.04853193834424019, + 0.012253430671989918, + 0.017986688762903214, + -0.01649315096437931, + -0.01088033989071846, + 0.007182630710303783, + 0.0014282956253737211, + 0.007150511257350445, + 0.022435180842876434, + 0.03491344675421715, + -0.01626831665635109, + -0.04827498644590378, + 0.014509797096252441, + -0.021600084379315376, + 0.026144934818148613, + 0.03828594833612442, + -0.014734630472958088, + 0.03883197531104088, + -0.005199276842176914, + 0.015039761550724506, + -0.048371341079473495, + -0.02592010237276554, + -0.03401411324739456, + 0.012165104039013386, + 0.014879166148602962, + 0.008294753730297089, + -0.01779397390782833, + 0.058039188385009766, + -0.027076389640569687, + 0.024731695652008057, + -0.06918451189994812, + 0.014325112104415894, + 0.005512438248842955, + 0.0014282956253737211, + 0.020636511966586113, + 0.011105174198746681, + 0.004954368807375431, + 0.024185670539736748, + -0.0066205463372170925, + 0.03542735055088997, + 0.0168143417686224, + -0.06995537132024765, + -0.024314148351550102, + 0.0010062307119369507, + 0.019769297912716866, + -0.004091168288141489, + 0.06873483955860138, + 0.03274540603160858, + -0.02987075038254261, + 0.022900907322764397, + 0.02176067978143692, + -0.007760773878544569, + 0.029710154980421066, + 0.023992957547307014, + -0.002479191869497299, + 0.0015276640187948942, + 0.03899256885051727, + 0.03064160794019699, + 0.0272530447691679, + -0.01808304525911808, + -0.018468474969267845, + 0.005448199808597565, + 0.011570900678634644, + -0.0008240552851930261, + -0.0035792705602943897, + 0.02545437589287758, + 0.04297533631324768, + 0.010430673137307167, + 0.01507991086691618, + -0.04615512490272522, + 0.00418752571567893, + -0.017472783103585243, + -0.009667844511568546, + 0.016364673152565956, + -0.017504900693893433, + -0.051037225872278214, + -0.02908383123576641, + -0.004544850438833237, + 0.003657560795545578, + 0.03149276226758957, + -0.0005101414280943573, + -0.04426009953022003, + -0.03796475753188133, + 0.045255791395902634, + -0.04297533631324768, + 0.051486894488334656, + -0.020813167095184326, + 0.0006012291414663196, + 0.03218332305550575, + -0.03854290395975113, + 0.026562483981251717, + -0.045255791395902634, + -0.006817276123911142, + -0.012068746611475945, + -0.02153584733605385, + 0.0012717150384560227, + -0.007395419292151928, + 0.043938908725976944, + -0.01883784309029579, + -0.019576583057641983, + -0.009434981271624565, + 0.011787704192101955, + 0.003876372240483761, + -0.04403526708483696, + -0.07933413982391357, + -0.010125542059540749, + -0.024522921070456505, + 0.04805015027523041, + -0.03517039865255356, + 0.021632203832268715, + 0.02985469065606594, + -0.014052099548280239, + 0.0011512684868648648, + -0.025325898081064224, + 0.013289271853864193, + 0.014060129411518574, + 0.043360766023397446, + -0.011225620284676552, + -0.0022322763688862324, + -0.017376424744725227, + 0.021889157593250275, + 0.004528791178017855, + -0.013578343205153942, + -0.009386803023517132, + 0.005877792835235596, + 0.03667999431490898, + -0.006190953776240349, + 0.05983785539865494, + 0.04197964444756508, + -0.016396792605519295, + 0.006018313579261303, + 0.013738938607275486, + 0.01481492817401886, + 0.013048378750681877, + -0.028987474739551544, + 0.0450630784034729, + 0.025598911568522453, + -0.04557698220014572, + -0.0007718617562204599, + -0.009772231802344322, + 0.011835883371531963, + 0.014806898310780525, + 0.009354683570563793, + 0.012654920108616352, + 0.019223272800445557, + -0.020909525454044342, + 0.04901372268795967, + -0.0434892401099205, + 0.000518923974595964, + 0.019801415503025055, + 0.021343132480978966, + 0.01647709123790264, + -0.025855863466858864, + 0.011016846634447575, + 0.019319629296660423, + -0.011225620284676552, + -0.021664323285222054, + -0.01255856268107891, + 0.00022558639466296881, + 0.0035812780261039734, + -0.002320603933185339, + -0.0031597150955349207, + 0.0005410058656707406, + -0.01936780847609043, + 0.022451240569353104, + 0.007905310019850731, + -0.026128876954317093, + -0.017151592299342155, + -0.036262448877096176, + -0.012141014449298382, + -0.00490217562764883, + 0.01439737994223833, + 0.0035792705602943897, + 0.020845286548137665, + 0.013843325898051262, + 0.013955743052065372, + -0.01650921069085598, + 0.008202411234378815, + 0.01915903389453888, + 0.01416451670229435, + -0.01569017395377159, + -0.006074522156268358, + 0.0013088526902720332, + -0.0173121877014637, + -0.010671566240489483, + -0.015425191260874271, + 0.026562483981251717, + 0.018805725499987602, + -0.027349401265382767, + 0.016846461221575737, + 0.022884847596287727, + -0.007941443473100662, + -0.02357540838420391, + -0.02230670489370823, + -0.022611835971474648, + 0.006102626211941242, + -0.004291913006454706, + -0.0004263306618668139, + -0.009716023690998554, + -0.038671378046274185, + 0.008880927227437496, + -0.029244426637887955, + -0.08781357854604721, + 0.01886996254324913, + 0.07143284380435944, + -0.03741873428225517, + 0.02461927942931652, + 0.00472150556743145, + -0.07136860489845276, + -0.010936548933386803, + -0.0066446359269320965, + -0.027686651796102524, + -0.028666283935308456, + 0.008664123713970184, + -0.022451240569353104, + -0.05190444365143776, + -0.038125354796648026, + -0.03231180086731911, + -0.0021379266399890184, + -0.022403061389923096, + -0.036840591579675674, + -0.0022443211637437344, + 0.026096757501363754, + -0.013955743052065372, + 0.010599298402667046, + 0.003432727186009288, + 0.023222098127007484, + 0.03311477601528168, + -0.026160994544625282, + -0.02492441050708294, + 0.0009465093025937676, + 2.8825625122408383e-5, + 0.04320016875863075, + 0.0031296033412218094, + 0.05951666459441185, + -0.0051751877181231976, + -0.05042696371674538, + 0.009997065179049969, + 0.013698790222406387, + 0.001649114303290844, + -0.014421469531953335, + -0.04014885798096657, + -0.015023701824247837, + -0.005014592316001654, + -0.02678731642663479, + -0.013546224683523178, + -0.014750690199434757, + 0.0011462498223409057, + -0.004552880302071571, + 0.023446932435035706, + -0.027108509093523026, + 0.023687826469540596, + -0.015385041944682598, + -0.04297533631324768, + -0.033146895468235016, + -0.043360766023397446, + 0.036808472126722336, + -1.3346358173293993e-5, + -0.03529887646436691, + 0.0223227646201849, + 0.006202998571097851, + -0.00793742947280407, + 0.0016410845564678311, + 0.017151592299342155, + 0.031878191977739334, + 0.017167652025818825, + -0.018259700387716293, + 0.006086566485464573, + -0.006913633085787296, + -0.016637686640024185, + -0.015650024637579918, + 0.02147160843014717, + -0.03452801704406738, + 0.011442423798143864, + -0.01088033989071846, + -0.0070661986246705055, + -0.014365261420607567, + -0.003523062216117978, + 0.005709167569875717, + -0.0033002360723912716, + 0.0019783349707722664, + -0.016894638538360596, + -0.01389953400939703, + 0.0008225496858358383, + 0.01376302819699049, + -0.030834322795271873, + 0.0061467899940907955, + -0.0028304944280534983, + 0.04882100969552994, + -0.00035607017343863845, + -0.0037458883598446846, + 0.0009826432215049863, + 0.0021218671463429928, + 0.02463533915579319, + 0.06346731632947922, + 0.016380732879042625, + -0.0023326484952121973, + 0.056240517646074295, + -0.012012537568807602, + -0.020829226821660995, + 0.04043792933225632, + 0.04374619573354721, + 0.002354730386286974, + 0.007584119215607643, + -0.013160794973373413, + 0.041273023933172226, + -0.008150218054652214, + 0.027686651796102524, + -0.03094673901796341, + -0.028762640431523323, + -0.013040348887443542, + 0.05932395160198212, + 0.016573447734117508, + 0.006893558893352747, + -0.010334315709769726, + -0.03266511112451553, + 0.0023527229204773903, + -0.017119472846388817, + -0.012783396057784557, + 0.012157074175775051, + -0.04011673852801323, + 0.008591854944825172, + -0.0007798915612511337, + 0.00929044559597969, + -0.05219351500272751, + -0.022740311920642853, + -0.03555582836270332, + 0.015248536132276058, + 0.022451240569353104, + -0.02461927942931652, + -0.004617118742316961, + 0.04069488123059273, + -0.06802822649478912, + 0.004918234888464212, + -0.006271251477301121, + -0.007174600847065449, + -0.014983553439378738, + 0.00499050272628665, + 0.03745085373520851, + -0.0608014278113842, + -0.03510615974664688, + -0.0016450993716716766, + 0.015272624790668488, + -0.003027223749086261, + 0.020138666033744812, + -0.05116570368409157, + 0.017729735001921654, + 0.01866118796169758, + 0.006194968707859516, + 0.012823544442653656, + -0.012357817962765694, + -0.017729735001921654, + -0.03065766766667366, + 0.019721118733286858, + 0.015360952354967594, + 0.011611049063503742, + -0.014541915617883205, + -0.0033002360723912716, + 0.016380732879042625, + -0.02598433941602707, + -0.0366157591342926, + -0.002918821992352605, + 0.01967293955385685, + 0.014019981026649475, + 0.011699376627802849, + -0.002459117444232106, + -0.008495498448610306, + -0.020042309537529945, + 0.0029047697316855192, + -0.0020636513363569975, + 0.03847866505384445, + 0.011073054745793343, + 0.011514692567288876, + 0.0031155513133853674, + -0.023173920810222626, + -0.03690483048558235, + 0.005355857312679291, + -0.033660802990198135, + -0.018034866079688072, + -0.018741486594080925, + 0.021343132480978966, + -0.0033102731686085463, + -0.018982378765940666, + 0.0032881912775337696, + -0.004087153822183609, + 0.027606353163719177, + 0.006833335384726524, + 0.01557775679975748, + -0.01452585682272911, + -0.008840777911245823, + -0.045480623841285706, + 0.0028646208811551332, + -0.012992169708013535, + 0.0008918064995668828, + -0.00787720549851656, + 0.02492441050708294, + -0.01623619720339775, + 0.007833042182028294, + 0.055148471146821976, + -0.014895225875079632, + -0.00012521425378508866, + -0.0037478958256542683, + -0.014718570746481419, + 0.008567766286432743, + -0.01531277410686016, + -0.001535693765617907, + 0.002539415145292878, + -0.029999226331710815, + 0.016637686640024185, + -0.017440663650631905, + -0.025839803740382195, + 0.027654532343149185, + -0.03165335953235626, + 0.03873561695218086, + 0.009017433039844036, + -0.017408544197678566, + 0.005693107843399048, + 0.013730908744037151, + 0.01705523394048214, + -0.010711714625358582, + -0.050170011818408966, + 0.029212309047579765, + -0.012952021323144436, + -0.023125741630792618, + -0.012454175390303135, + 0.03295418247580528, + -0.028971415013074875, + 0.02204975299537182, + 0.0008054864592850208, + 0.033435966819524765, + -0.02359146811068058, + 0.03146064281463623, + -0.006339504383504391, + 0.007226794026792049, + -0.0002833003818523139, + -0.04686174541711807, + 0.009675874374806881, + -0.020781047642230988, + -0.026851555332541466, + -0.01805092580616474, + -0.008001667447388172, + 0.022900907322764397, + 0.004942324478179216, + 1.57537215272896e-5, + -0.022611835971474648, + 0.010310226120054722, + -0.0233184564858675, + 0.01703917421400547, + -0.01811516471207142, + 0.030593428760766983, + 0.02463533915579319, + 0.006194968707859516, + 0.04509519785642624, + 0.006150804925709963, + -0.0204598568379879, + 0.038157474249601364, + -0.0003578266769181937, + -0.001928148907609284, + -0.03610185161232948, + -0.021648263558745384, + 0.036358803510665894, + -0.02015472576022148, + -0.020267143845558167, + -0.003563211066648364, + -0.00205963640473783, + 0.016958877444267273, + 0.004978458397090435, + -0.01675010286271572, + 0.004705445840954781, + 0.02619311399757862, + 0.009643755853176117, + 0.03170153871178627, + -9.158957982435822e-5, + 0.014790838584303856, + -0.03038465417921543, + 0.02698003128170967, + 0.015682144090533257, + 0.03321113437414169, + 0.011747555807232857, + 0.010783983394503593, + 0.02127889357507229, + 0.025085005909204483, + 0.008326873183250427, + -0.025647088885307312, + -0.012333729304373264, + 0.011474543251097202, + 0.016155900433659554, + 0.013200944289565086, + -9.930568921845406e-5, + 0.02802390232682228, + -0.013449867255985737, + -0.014750690199434757, + 0.051519013941287994, + 0.0017243934562429786, + 0.025534672662615776, + -0.006251176819205284, + 0.007351255510002375, + 0.020925583317875862, + -0.007303077261894941, + 0.016621626913547516, + 0.03555582836270332, + -0.05601568520069122, + 0.0655229315161705, + -0.008230515755712986, + 0.007431553211063147, + 0.033403847366571426, + -0.026867615059018135, + -0.008993344381451607, + -0.010302196256816387, + -0.022627895697951317, + -0.002679936122149229, + -0.023768123239278793, + 0.013457897119224072, + -0.0272530447691679, + 0.0013018266763538122, + 0.018404236063361168, + 0.0019562530796974897, + 0.01365061104297638, + -0.008286723867058754, + -0.021873097866773605, + -0.0023226113989949226, + 0.007262928411364555, + 0.010430673137307167, + 0.05868156999349594, + -0.018757546320557594, + 0.016942817717790604, + -0.005355857312679291, + 0.01699099689722061, + 0.052289869636297226, + 0.03120369091629982, + 0.012205252423882484, + 0.013907563872635365, + 0.022226406261324883, + 0.021423429250717163, + 0.012349788099527359, + -0.02776694856584072, + 0.017151592299342155, + 0.001922126510180533, + -0.006243147421628237, + 0.004287898074835539, + 0.040213096886873245, + -0.028875058516860008, + 0.017103413119912148, + -0.013995891436934471, + 0.032616931945085526, + -0.012646890245378017, + 0.020090488716959953, + -0.0006223072996363044, + 0.02204975299537182, + 0.026947911828756332, + 0.004629163071513176, + -2.2834661649540067e-5, + 0.01970505900681019, + -0.01193223986774683, + 0.01179573405534029, + -0.004737565293908119, + 0.006219057831913233, + -0.0004285890609025955, + 0.015256565995514393, + -0.0002885699213948101, + -0.034238945692777634, + -0.021134357899427414, + -0.01269506849348545, + 0.02386447973549366, + -0.027975723147392273, + -0.0028706432785838842, + -0.010173720307648182, + 0.018034866079688072, + -0.028168438002467155, + 0.005460244603455067, + -0.0038723573088645935, + 0.010984727181494236, + -0.011723466217517853, + 0.030464952811598778, + -0.00015783519484102726, + -0.008535646833479404, + 0.0018046911573037505, + -0.022692134603857994, + 0.016292406246066093, + -0.004685371648520231, + -0.02147160843014717, + -0.03093067929148674, + -0.003143655601888895, + -0.031878191977739334, + 0.003876372240483761, + -0.01020583976060152, + -0.024249909445643425, + -0.011346067301928997, + -0.007222779560834169, + 0.013016259297728539, + 0.018982378765940666, + 0.01726400852203369, + 0.005488348659127951, + 0.028746580705046654, + 0.01546533964574337, + 0.024972589686512947, + 0.003936595283448696, + 0.02408931404352188, + -0.025293780490756035, + 0.03574854135513306, + -0.012871723622083664, + 0.025277720764279366, + -0.025020767003297806, + -0.034174706786870956, + -0.017890330404043198, + 0.010133571922779083, + 0.011603019200265408, + -0.004593029152601957, + 0.011402275413274765, + -0.007768803741782904, + 0.03886409476399422, + -0.010430673137307167, + 0.0006835343083366752, + 0.010599298402667046, + -0.00682530552148819, + -0.015810620039701462, + -0.007997652515769005, + 0.01389953400939703, + -0.0034407570492476225, + -0.002153986133635044, + 0.01102487649768591, + -0.0037478958256542683, + -0.004215629771351814, + -0.0018187431851401925, + 0.03117157332599163, + 0.002294507110491395, + 0.03690483048558235, + 0.008246575482189655, + -0.004440463613718748, + -0.017633378505706787, + 0.029581677168607712, + -0.006476010661572218, + 0.03732237592339516, + -0.0007849101675674319, + -0.041562095284461975, + 0.010061303153634071, + 0.02800784260034561, + 0.01811516471207142, + -0.020781047642230988, + 0.03121975064277649, + -0.007001960650086403, + 0.013939683325588703, + 0.004504701588302851, + -0.017392484471201897, + -0.003384548705071211, + -0.008632004261016846, + -0.009282415732741356, + 0.02408931404352188, + 0.037868402898311615, + -0.011851942166686058, + 0.03912104666233063, + 0.021905215457081795, + 0.028987474739551544, + 0.01732824742794037, + -0.02148766815662384, + -0.047825317829847336, + -0.00503868144005537, + -0.02336663380265236, + -0.036583639681339264, + -0.010302196256816387, + -0.017890330404043198, + -0.052065037190914154, + 0.006961811799556017, + -0.018259700387716293, + 0.0278311874717474, + -0.03456013649702072, + 0.018934201449155807, + -0.021632203832268715, + -0.016067571938037872, + 0.010213869623839855, + 0.004207600373774767, + 0.0026759214233607054, + 0.011418335139751434, + 0.02853780798614025, + 0.022724252194166183, + -0.04117666929960251, + 0.018436355516314507, + 0.020893465727567673, + -0.022643955424427986, + 0.027076389640569687, + 0.01650921069085598, + -0.02728516235947609, + 0.04898160696029663, + 0.04255778715014458, + 0.006849395111203194, + -0.01862907037138939, + -0.018773606047034264, + -0.002214209409430623, + -0.021840978413820267, + 0.011097144335508347, + 0.000279285479336977, + -0.003358451882377267, + -0.0043240319937467575, + 0.032889943569898605, + -0.012165104039013386, + 0.003117558779194951, + 0.00915393978357315, + 0.01602742448449135, + 0.040727000683546066, + 0.0047174906358122826, + 0.0028565912507474422, + 0.008816689252853394, + 0.012381907552480698, + 0.020347440615296364, + 0.025261661037802696, + -0.017520960420370102, + -0.0007091292063705623, + 0.0037157766055315733, + 0.0015607868554070592, + -0.004456523340195417, + -0.016091661527752876, + 0.005263515282422304, + -0.019191153347492218, + 0.02436232566833496, + -0.005086860153824091, + 0.0566580668091774, + -0.029212309047579765, + -0.0001718872954370454, + -0.023479051887989044, + 0.04165845364332199, + -0.01909479685127735, + -0.052289869636297226, + -0.013722878880798817, + -0.03928164020180702, + -0.01936780847609043, + -0.00011473790800664574, + 0.005404036026448011, + 0.03038465417921543, + 0.024538980796933174, + 0.03860713914036751, + 0.05196867883205414, + -8.870388410286978e-5, + -0.009113790467381477, + 0.005476303864270449, + -0.028120258823037148, + 0.008808659389615059, + -0.013329420238733292, + 0.02983863092958927, + 0.01246220525354147, + 0.019255392253398895, + 0.006933707743883133, + 0.009145909920334816, + -0.043906789273023605, + 0.006295340601354837, + -0.0037960743065923452, + -0.024233849719166756, + -0.015192327089607716, + 0.01655738800764084, + -0.0037258139345794916, + 0.011177442036569118, + 0.007367315236479044, + -0.008985314518213272, + 4.265816096449271e-5, + 0.025598911568522453, + -0.0009269367437809706, + -0.010318255983293056, + -0.018516652286052704, + -0.006981885991990566, + -0.02722092531621456, + 0.0023587453179061413, + -0.03430318459868431, + 0.00668879970908165, + 7.446358358720317e-5, + 0.00570515263825655, + -0.009732082486152649, + -0.029710154980421066, + 0.0124461455270648, + -0.00432001706212759, + -0.015987275168299675, + -0.0047817290760576725, + 0.006769097410142422, + 0.008688212372362614, + -0.006459950935095549, + -0.031573060899972916, + -0.0031135438475757837, + 3.056645437027328e-5, + -0.006793186534196138, + -0.014220724813640118, + 0.003191834082826972, + 0.01127379946410656, + 0.0044043296948075294, + -0.04294321686029434, + -0.02988680824637413, + 0.0149514339864254, + 0.04805015027523041, + -0.061765000224113464, + 0.013080497272312641, + 0.011048965156078339, + 0.025534672662615776, + 0.02360752783715725, + 0.020588334649801254, + 0.020331380888819695, + -0.010575208812952042, + -0.007664416916668415, + 0.04949551075696945, + 0.013040348887443542, + 0.017183709889650345, + -0.017681555822491646, + 0.003729828866198659, + -0.02834509313106537, + 0.010462791658937931, + 0.015674114227294922, + 0.034752849489450455, + 0.02277243137359619, + 0.00052544818026945, + 0.007367315236479044, + -0.014252844266593456, + -0.016412852331995964, + -0.02071681059896946, + 0.01705523394048214, + 0.00017690590175334364, + 0.004344106186181307, + 0.01915903389453888, + -0.00850352831184864, + 0.03517039865255356, + 0.003523062216117978, + -0.018805725499987602, + 0.006451921537518501, + -0.030850382521748543, + -0.016862519085407257, + -0.023013325408101082, + 0.017424603924155235, + 0.025823744013905525, + -0.011313947848975658, + -0.012526443228125572, + 0.006704858969897032, + -0.012518413364887238, + 0.019255392253398895, + 0.002732129767537117, + -0.012269490398466587, + 0.007780848536640406, + 0.004882100969552994, + -0.006985900923609734, + 0.011868001893162727, + 0.03330749273300171, + 0.018420295789837837, + -0.013217004016041756, + 0.004368195775896311, + 0.0023306410294026136, + 0.0051912469789385796, + 0.013787117786705494, + 0.007568059489130974, + -0.0007563040708191693, + 0.01777791418135166, + -0.03115551359951496, + 0.023206038400530815, + -0.0397634282708168, + -0.005496378522366285, + -0.020090488716959953, + -0.012510383501648903, + -0.02487623132765293, + -0.0011121233692392707, + -0.02494047023355961, + 0.016324525699019432, + -0.03831806778907776, + -0.02853780798614025, + -0.024217789992690086, + -0.0023326484952121973, + -0.03038465417921543, + -0.0001011876665870659, + 0.024571100249886513, + -0.029148070141673088, + -0.024201730266213417, + -0.010037214495241642, + -0.008551706559956074, + -0.010968667455017567, + 0.011113203130662441, + 0.034977685660123825, + -0.024715635925531387, + 0.009073642082512379, + 0.025341957807540894, + -0.02805602177977562, + -0.012422055937349796, + 0.01992989331483841, + 0.012132984586060047, + -0.006500099785625935, + -0.02543831616640091, + -0.011884061619639397, + -0.006809246260672808, + -0.03539523109793663, + -0.005528497509658337, + 0.010671566240489483, + -0.031348228454589844, + 0.057846471667289734, + 0.033403847366571426, + 0.023141801357269287, + -0.0007954492466524243, + -0.024731695652008057, + -0.0133775994181633, + 0.030802203342318535, + -0.00034979693009518087, + -0.05800706893205643, + -0.016179990023374557, + -0.013522135093808174, + 0.00879259966313839, + 0.012638860382139683, + 0.006150804925709963, + -0.023639647290110588, + 0.004384255036711693, + 0.035523708909749985, + -0.026642780750989914, + -0.024522921070456505, + -0.002519340720027685, + 0.0025574821047484875, + -0.009370743297040462, + 0.008286723867058754, + -0.006652665790170431, + 0.009772231802344322, + 0.018018806353211403, + -0.020074428990483284, + 0.003464846406131983, + -0.009892677888274193, + 0.00517117278650403, + -0.015762440860271454, + 0.015569726936519146, + -0.004332061856985092, + 0.004829907324165106, + -0.08729967474937439, + -0.033660802990198135, + 0.002860605949535966, + 0.017633378505706787, + 0.007997652515769005, + -0.0158427394926548, + 0.005656973924487829, + 0.014975523576140404, + -0.02172856219112873, + 0.013722878880798817, + 0.03545947000384331, + -0.014806898310780525, + 0.007238838821649551, + 0.030689787119627, + 0.0021640234626829624, + -0.001076993066817522, + -0.003231982933357358, + 0.002107814885675907, + 0.01886996254324913, + -0.003994811326265335, + -0.007042109500616789, + 0.02386447973549366, + 0.017087353393435478, + -0.011241680011153221, + -0.022724252194166183, + 0.031107334420084953, + -0.022981205955147743, + -0.00786114577203989, + 0.0027140628080815077, + -0.02362358756363392, + 0.009651784785091877, + 0.03219938278198242, + -0.013056408613920212, + -0.016035454347729683, + -0.005223366431891918, + 0.015746381133794785, + -0.004813848063349724, + -0.015489429235458374, + 0.029517440125346184, + 0.014044069685041904, + -0.0011472535552456975, + 0.013811206445097923, + -0.018821783363819122, + -0.008098024874925613, + 0.008294753730297089, + -0.00800568237900734, + 0.024956529960036278, + -0.02571132779121399, + 0.011876031756401062, + 0.002866628346964717, + 0.014485707506537437, + 0.008632004261016846, + 0.0035070027224719524, + -0.016461031511425972, + 0.0018669218989089131, + -0.007134451996535063, + 0.028634164482355118, + -0.013947713188827038, + 0.010647476650774479, + 0.011065024882555008, + 0.06577988713979721, + 0.024988649412989616, + 0.01758519932627678, + 0.0070661986246705055, + -0.024201730266213417, + 0.01734430529177189, + 0.02249941974878311, + 0.016412852331995964, + 0.0312679298222065, + 0.001217514043673873, + -0.0035672259982675314, + -0.017167652025818825, + -0.024538980796933174, + 0.007917354814708233, + -0.005829614121466875, + 0.036583639681339264, + 0.006773112341761589, + 0.01114532258361578, + 0.004018900450319052, + -0.01389953400939703, + -0.01020583976060152, + 0.02176067978143692, + 0.0020917553920298815, + 0.001255655544809997, + -0.008615944534540176, + -0.014541915617883205, + 0.002406924031674862, + -0.004777714144438505, + -0.009547398425638676, + -0.010085392743349075, + 0.026835495606064796, + 0.003609382314607501, + 0.02778300829231739, + 0.008704272098839283, + -0.019576583057641983, + 0.045737579464912415, + 0.007086273282766342, + 0.019030557945370674, + 0.002565511967986822, + -0.009812380187213421, + 0.004051019437611103, + -0.012679008767008781, + 0.014967493712902069, + -0.020251084119081497, + -0.013835296034812927, + 0.01100881677120924, + 0.008150218054652214, + 0.0007728654891252518, + -0.014574035070836544, + -0.010013124905526638, + 0.019046617671847343, + -0.00929044559597969, + -0.03539523109793663, + 0.0004095183394383639, + -0.026353709399700165, + 0.00933059398084879, + -0.026819435879588127, + -0.026048578321933746, + -0.014212694950401783, + -2.391680027358234e-6, + 0.011289858259260654, + 0.04169057309627533, + 0.009410891681909561, + -0.00915393978357315, + -0.009298475459218025, + 0.005978164728730917, + -0.007122407201677561, + -0.02098982222378254, + 0.0018970335368067026, + 0.02645006775856018, + -0.0020636513363569975, + -0.02598433941602707, + -0.015128089115023613, + 0.0023487082216888666, + -0.010800042189657688, + 0.002274432685226202, + 0.02985469065606594, + -0.011667258106172085, + 0.01590697653591633, + -0.048885248601436615, + 0.008937135338783264, + 0.0034869282972067595, + -0.0069377226755023, + 0.021166477352380753, + -0.022370943799614906, + 0.0061989836394786835, + -0.015007643029093742, + -0.014172546565532684, + 0.014317082241177559, + -0.019255392253398895, + -0.020604392513632774, + 0.0024370355531573296, + 0.027927543967962265, + -0.013698790222406387, + -0.021182537078857422, + -0.02678731642663479, + -0.021021941676735878, + 0.016701923683285713, + -0.007596163544803858, + -0.0008928102324716747, + -0.007262928411364555, + 0.012775366194546223, + 0.008214456029236317, + -0.012759306468069553, + 0.008025756105780602, + 0.0015878872945904732, + -0.015417161397635937, + 0.003916521091014147, + -0.015055821277201176, + -0.018773606047034264, + -0.0007894269074313343, + 0.005644929129630327, + -0.012301609851419926, + -0.02673913910984993, + -0.004103213082998991, + -0.01700705662369728, + -0.008704272098839283, + 0.001669188728556037, + 0.026064638048410416, + -0.01322503387928009, + 0.006459950935095549, + 0.02856992743909359, + -0.005950060673058033, + 0.01782609336078167, + -0.002999119693413377, + 0.007371330168098211, + 0.0035652185324579477, + 0.006877499166876078, + 0.005982179660350084, + 0.002625735243782401, + 0.026690959930419922, + 0.02018684521317482, + 0.008334903046488762, + -0.006981885991990566, + -0.002053614007309079, + 0.013490015640854836, + 0.023784182965755463, + 0.033725038170814514, + -0.01675010286271572, + -0.006761067546904087, + -0.006913633085787296, + -0.025101065635681152, + 0.0008586836629547179, + 0.02360752783715725, + 0.006058462429791689, + -0.00291079212911427, + -0.04984882101416588, + 0.017151592299342155, + 0.013273212127387524, + -0.01734430529177189, + 0.0001059553396771662, + 0.0075479852966964245, + 0.009611636400222778, + -0.010141600854694843, + -0.006857424974441528, + 0.009547398425638676, + 0.01165922824293375, + -0.009523308835923672, + 0.013064438477158546, + -0.01864512823522091, + 0.0346243754029274, + 0.008302783593535423, + 0.01992989331483841, + -0.02310968190431595, + 0.010310226120054722, + 0.016171960160136223, + -4.990377419744618e-5, + -0.05746104568243027, + -0.0133775994181633, + 0.011603019200265408, + 0.0024530950468033552, + 0.0011743541108444333, + -0.0007362296455539763, + -0.0052835894748568535, + -0.01700705662369728, + -0.015120059251785278, + 0.02542225643992424, + -0.007756758946925402, + 0.017633378505706787, + -0.0059540756046772, + -0.005046711303293705, + -0.03194243088364601, + -0.02362358756363392, + -0.005797495134174824, + 0.03908892720937729, + 0.02698003128170967, + -0.03356444463133812, + -0.0070621841587126255, + -0.008969254791736603, + 0.005970134865492582, + 0.034206826239824295, + -0.010037214495241642, + -0.008166277781128883, + 0.015280654653906822, + 0.011321977712213993, + 0.0031275958754122257, + 0.02701215073466301, + 0.012879753485321999, + 0.015071881003677845, + -0.009796321392059326, + -0.009732082486152649, + -0.011707406491041183, + 0.01388347428292036, + -0.032632991671562195, + 0.026048578321933746, + -0.0038201636634767056, + -0.003450794145464897, + 0.0025976309552788734, + 0.018468474969267845, + -0.02853780798614025, + 0.01676616258919239, + -0.002553467405959964, + -0.006929692812263966, + 0.007905310019850731, + 0.02856992743909359, + 0.016701923683285713, + -0.018179401755332947, + -0.01911085657775402, + 0.00204859534278512, + 0.006933707743883133, + -0.015055821277201176, + 0.0024330206215381622, + -0.025277720764279366, + 0.01939992792904377, + 0.012173132970929146, + -0.009274385869503021, + 0.010366435162723064, + -0.011338037438690662, + 0.03439953923225403, + -0.00544016994535923, + 0.0019371823873370886, + 0.013016259297728539, + 0.028136318549513817, + -0.015561697073280811, + 0.00452076131477952, + -0.0005309686530381441, + 0.011000786907970905, + 0.00984449964016676, + 0.021969454362988472, + 0.001716363593004644, + 0.018805725499987602, + -0.010767923668026924, + -0.041529975831508636, + -0.00877653993666172, + -0.0032801616471260786, + -0.00031215735361911356, + 0.00997297652065754, + 0.0016581477830186486, + -0.002386849606409669, + -0.006207013502717018, + -0.0008953195065259933, + -0.004753624554723501, + -0.012502353638410568, + -0.003709754440933466, + -0.009362713433802128, + 0.0036314642056822777, + 0.03324325382709503, + -0.002471162239089608, + -0.001023795804940164, + -0.025277720764279366, + 0.01024598814547062, + 0.0024771844036877155, + 0.014357231557369232, + 0.0015678128693252802, + -0.04824286699295044, + -0.03224756196141243, + 0.014212694950401783, + -0.0008732376154512167, + 0.003864327445626259, + 0.0044324337504804134, + -0.0070782434195280075, + 0.04554486274719238, + -7.622009434271604e-5, + 0.003844253020361066, + -0.0013570314040407538, + -0.007411479018628597, + -0.004123287741094828, + -0.005042696371674538, + -0.0005806528497487307, + -0.002095770323649049, + 0.03223150223493576, + 0.016717983409762383, + -0.02094164304435253, + -0.004147376865148544, + 0.018934201449155807, + 0.000279285479336977, + 0.010173720307648182, + 0.024009017273783684, + 0.02492441050708294, + -0.014557975344359875, + -0.009499219246208668, + 0.01967293955385685, + 0.010663536377251148, + -2.9154971343814395e-5, + -0.0008285720250569284, + 0.02410537376999855, + -0.014758720062673092, + 0.008953195065259933, + -0.03125187009572983, + -0.029983166605234146, + -0.00827869400382042, + -0.012542502954602242, + 0.0002041318512056023, + 0.03382139652967453, + -0.00916196871548891, + 0.009210147894918919, + -0.0005204295739531517, + -0.01323306281119585, + 0.014180576428771019, + -0.026899734511971474, + 0.01323306281119585, + -0.007909324951469898, + -0.020010190084576607, + 0.0065643382258713245, + -0.01063141692429781, + -0.002525363117456436, + -0.0025835789274424314, + 0.008832748979330063, + 0.0014333141734823585, + -0.03282570466399193, + 0.002109822351485491, + -0.009916767477989197, + -0.021696442738175392, + -0.005408050958067179, + -0.024025075137615204, + -0.004063064232468605, + 0.003784029744565487, + 0.009137880057096481, + 0.0065803974866867065, + -0.01589091680943966, + -0.022643955424427986, + -0.010069333016872406, + -0.0018277766648679972, + 0.02516530267894268, + 0.021664323285222054, + 0.0070380945689976215, + -0.020315321162343025, + -0.0015728314174339175, + -0.033692922443151474, + -0.001861903234384954, + -0.022916967049241066, + 0.010832161642611027, + -0.014646302908658981, + 0.028521748259663582, + -0.01811516471207142, + 0.015288684517145157, + 0.021857038140296936, + 0.01100881677120924, + 0.011056995019316673, + -0.03195849061012268, + -0.008607914671301842, + 0.023736003786325455, + 0.010005095042288303, + -0.018018806353211403, + -0.022676074877381325, + -0.013144736178219318, + -0.0012656927574425936, + 0.034945566207170486, + 0.004191540647298098, + -0.00337852630764246, + -0.007359285373240709, + 0.0008275682921521366, + -0.008896986953914165, + -0.013208974152803421, + -0.020861346274614334, + 0.017745794728398323, + -0.02229064516723156, + 0.009732082486152649, + 0.004689386580139399, + 0.007230808958411217, + 0.0059540756046772, + -0.010912459343671799, + 0.008166277781128883, + 0.01255856268107891, + 0.023719944059848785, + -0.007804937660694122, + 0.012052686884999275, + -0.02808813937008381, + 0.0025032812263816595, + -0.033660802990198135, + -0.029260486364364624, + -0.009009403176605701, + 8.481446275254712e-5, + -0.01728006824851036, + -0.022354884073138237, + -0.007303077261894941, + 0.0204598568379879, + -0.006363593973219395, + 0.016653746366500854, + 0.014839017763733864, + 0.012622800655663013, + -0.017424603924155235, + 0.02881081961095333, + -0.009515278972685337, + 0.016051512211561203, + -0.0036053673829883337, + -0.011089114472270012, + 0.015497459098696709, + -0.027686651796102524, + 0.026160994544625282, + 0.0018247655825689435, + -0.010599298402667046, + -0.008463378995656967, + 0.006949767004698515, + 0.0005259500467218459, + 0.021118298172950745, + 0.04374619573354721, + -0.013265182264149189, + -0.036808472126722336, + -0.03065766766667366, + 0.005480318795889616, + -0.019335689023137093, + -0.019319629296660423, + -0.010944578796625137, + 0.005472289398312569, + -0.010117512196302414, + -0.01699099689722061, + -0.00933059398084879, + 0.01729612797498703, + -0.01858089119195938, + 0.012927931733429432, + -0.006451921537518501, + -0.011787704192101955, + 0.022692134603857994, + 0.02441050484776497, + -0.004914219956845045, + 0.02020290493965149, + -0.013722878880798817, + 0.005062771029770374, + 0.030802203342318535, + -0.020042309537529945, + 0.005845673382282257, + 0.0009460074361413717, + 0.003976744133979082, + 0.01638876274228096, + -0.0056890929117798805, + -0.010013124905526638, + -0.0052715446799993515, + 0.021680383011698723, + -0.0038322084583342075, + 0.005391991697251797, + -0.011900121346116066, + -0.02335057593882084, + -0.015320803970098495, + -0.0052434406243264675, + -0.004073101561516523, + -2.788463643810246e-5, + 0.022467300295829773, + 0.003962692338973284, + -0.001044873963110149, + -0.00044515045010484755, + 0.014132397249341011, + -0.0021640234626829624, + -0.0052394256927073, + -0.009788291528820992, + -0.007315121591091156, + 0.0036274492740631104, + 0.0042718383483588696, + -0.02856992743909359, + -0.0052313958294689655, + -0.012895813211798668, + -0.019544463604688644, + -0.0003505497006699443, + -0.01638876274228096, + 0.019512344151735306, + 0.014421469531953335, + 0.002467147307470441, + -0.004649237729609013, + -0.02701215073466301, + -0.0007678468828089535, + 0.013674700632691383, + -0.012550532817840576, + -0.0013660648837685585, + 0.012526443228125572, + 0.014734630472958088, + 0.004085146356374025, + 0.006299355532974005, + -0.0009289441513828933, + -0.009812380187213421, + -0.008415200747549534, + -0.000944501836784184, + 0.015730321407318115, + -0.022226406261324883, + 0.002545437542721629, + 0.008736391551792622, + 0.09879830479621887, + 0.006026343442499638, + 0.0006067496142350137, + -0.00557266129180789, + 0.006857424974441528, + -0.02672307938337326, + -0.0018719404470175505, + 0.005994224455207586, + 0.008680182509124279, + -0.0029690079391002655, + -0.013104586862027645, + -0.03324325382709503, + 0.011506662704050541, + 0.011876031756401062, + -0.018918141722679138, + 0.00655630836263299, + 0.006046417634934187, + 0.02384842187166214, + 0.013329420238733292, + 0.005849688313901424, + 0.00019271452038083225, + -0.017906390130519867, + -0.01570623368024826, + 0.013730908744037151, + -0.00888895709067583, + 0.0243944451212883, + -0.0033684889785945415, + 0.012630830518901348, + 0.02044379711151123, + 0.023189980536699295, + 0.011450453661382198, + -0.00837505143135786, + -0.011442423798143864, + -0.00793742947280407, + 5.1534821977838874e-5, + 0.016188019886612892, + -0.010165690444409847, + 0.0007999659865163267, + 0.0017836129991337657, + 0.00902546290308237, + 0.004175480920821428, + -0.009402862749993801, + 0.02677125856280327, + 0.01654132828116417, + -0.0071866451762616634, + -0.0034267050214111805, + -0.008186351507902145, + -0.002240306232124567, + 0.011056995019316673, + 0.0008145199390128255, + -0.019335689023137093, + -0.0006614524172618985, + 0.016428912058472633, + 0.001049892627634108, + 0.006066492293030024, + 0.0036997171118855476, + 0.031300049275159836, + -0.016717983409762383, + -0.006387683097273111, + -0.0008717320743016899, + -0.006520174443721771, + 0.005544557236135006, + -0.02203369326889515, + -0.02566314861178398, + -0.014598124660551548, + -0.011707406491041183, + -0.01700705662369728, + -0.017199769616127014, + 0.0017585199093446136, + 0.014469647780060768, + -0.004143361933529377, + 0.00018317915964871645, + 0.009531338699162006, + -0.02776694856584072, + 0.0010759893339127302, + 0.014100278727710247, + 0.002220231806859374, + 0.00995691679418087, + -0.0006524189375340939, + -0.001475470489822328, + 0.01466236263513565, + 0.008696242235600948, + -0.01700705662369728, + -0.024972589686512947, + -0.007355270441621542, + -0.0033142881002277136, + 0.020363500341773033, + -0.0170231144875288, + 0.0006965826614759862, + -0.025631031021475792, + -0.017681555822491646, + -0.002973022870719433, + -0.007315121591091156, + 0.007580104283988476, + 0.009820410050451756, + -0.0011362126097083092, + -0.014445559121668339, + -0.0089050168171525, + 0.012277520261704922, + -0.009410891681909561, + 0.010462791658937931, + 0.018548771739006042, + -0.003882394405081868, + 0.0021760680247098207, + -0.011338037438690662, + -0.0053237383253872395, + 0.010912459343671799, + 0.006459950935095549, + -0.03280964493751526, + -0.008559736423194408, + 0.0029429111164063215, + -0.020620452240109444, + -0.003962692338973284, + 0.005548572167754173, + -0.009868589229881763, + 0.010486881248652935, + 0.005797495134174824, + -0.009434981271624565, + -0.00682530552148819, + -0.01456600520759821, + -0.026947911828756332, + 0.011177442036569118, + 0.0012917894637212157, + -0.02415355294942856, + 0.0047977883368730545, + 0.001608965452760458, + 0.0020455841440707445, + -0.0006830324418842793, + -0.011635138653218746, + -0.005147083662450314, + 0.0018307878635823727, + 0.01283157430589199, + 0.01377908792346716, + -0.011996478773653507, + 0.018291819840669632, + -0.0037679702509194613, + -0.017472783103585243, + -0.016669806092977524, + 0.02441050484776497, + -0.019351748749613762, + 0.01784215122461319, + -0.006480025593191385, + 0.003729828866198659, + 0.017617318779230118, + -0.0051912469789385796, + 0.02988680824637413, + -0.008816689252853394, + -0.013738938607275486, + 0.002065658802166581, + 0.006034373305737972, + 0.022467300295829773, + -0.03411046788096428, + 0.008599884808063507, + -0.012454175390303135, + 0.021616144105792046, + 0.005147083662450314, + -0.024442624300718307, + 0.002168038161471486, + -0.017456723377108574, + -0.011988448910415173, + -0.003978751599788666, + 0.005677048582583666, + -0.020106548443436623, + -0.0018428325420245528, + -0.0052835894748568535, + 0.011097144335508347, + 0.013843325898051262, + 0.027461817488074303, + 0.008664123713970184, + -0.004235704429447651, + -0.004677341785281897, + -0.003211908508092165, + 0.018259700387716293, + -0.03767568618059158, + 0.019271451979875565, + 0.002053614007309079, + -0.0043641808442771435, + -0.0008396129705943167, + -0.02436232566833496, + 0.0024029091000556946, + -0.002139934105798602, + -0.011016846634447575, + 0.0011743541108444333, + 0.005070800427347422, + 0.017215829342603683, + -0.010559149086475372, + 0.0013690759660676122, + -0.001483500236645341, + 0.0007231812924146652, + 0.007820997387170792, + -0.019046617671847343, + 0.019062677398324013, + -0.00432001706212759, + -0.0061186859384179115, + -0.005725226830691099, + 0.008037800900638103, + 0.01165922824293375, + 0.010519000701606274, + 0.0007156533538363874, + -0.01599530503153801, + 0.005263515282422304, + 0.0035070027224719524, + 0.008013712242245674, + -0.007499806582927704, + -0.0017404529498890042, + -0.008744421415030956, + -0.019014498218894005, + -0.01859695091843605, + -0.01365061104297638, + 0.007716610096395016, + -0.04201176390051842, + -0.02328633703291416, + 0.014967493712902069, + -0.0018809739267453551, + -0.0020636513363569975, + -0.011241680011153221, + 0.020331380888819695, + 0.006335489451885223, + 0.02097376249730587, + 0.009097730740904808, + 0.017119472846388817, + 0.01654132828116417, + 0.026963971555233, + -0.019480224698781967, + -0.0061748940497636795, + -0.000957550248131156, + 0.011876031756401062, + 0.003569233464077115, + 0.017810033634305, + 0.001329930848442018, + 0.0267551988363266, + -0.01753702014684677, + 0.008559736423194408, + 0.022997265681624413, + -0.00045041998964734375, + 0.025261661037802696, + 0.010310226120054722, + 0.0011040936224162579, + 0.018677247688174248, + -0.014357231557369232, + -0.008089995011687279, + 0.0030151791870594025, + -0.0119081512093544, + -0.014317082241177559, + 0.005436155013740063, + -0.0005154109676368535, + 0.006985900923609734, + -0.006536233704537153, + 0.01654132828116417, + -3.3342370443278924e-5, + 0.0037278214003890753, + -0.005098904948681593, + 0.002946926048025489, + 0.02304544299840927, + 0.007684491109102964, + -0.010406583547592163, + -0.005042696371674538, + 0.013257152400910854, + -0.00929044559597969, + -0.018998438492417336, + 0.008182336576282978, + -0.004030945245176554, + 0.002073688432574272, + -0.018966320902109146, + -0.008061890490353107, + 0.008953195065259933, + -0.01859695091843605, + -0.016316495835781097, + -0.009410891681909561, + 0.011868001893162727, + 0.004994517657905817, + 0.012221312150359154, + -8.59436477185227e-5, + 0.007909324951469898, + -0.0004664795415010303, + 0.002073688432574272, + 0.0042437342926859856, + -0.023960838094353676, + 0.012237371876835823, + 0.0014905263669788837, + -0.0025896013248711824, + 0.006985900923609734, + 0.0009806358721107244, + -0.015473369508981705, + 0.0007101328810676932, + -0.03142852336168289, + -0.0032018714118748903, + 0.012606740929186344, + 0.0007392408442683518, + 0.012542502954602242, + -0.012518413364887238, + -0.021311013028025627, + 0.0032339903991669416, + -0.005247455555945635, + 0.01414845697581768, + 0.00688954396173358, + -0.01911085657775402, + 0.005396006163209677, + 0.024555040523409843, + -0.004681356716901064, + -0.007419508881866932, + 0.0011683317134156823, + -0.0042437342926859856, + -0.015939095988869667, + 0.015144148841500282, + 0.006913633085787296, + 0.02068469114601612, + -0.004456523340195417, + 0.003844253020361066, + 0.0061748940497636795, + 0.002938896417617798, + -0.00800568237900734, + 0.00035406273673288524, + -0.014196636155247688, + -0.019046617671847343, + -0.0304007139056921, + 0.005865748040378094, + 0.007776833605021238, + -0.019287511706352234, + 0.0016742072766646743, + -0.019046617671847343, + -0.00023650185903534293, + -0.010334315709769726, + 0.01965687982738018, + -0.0037197915371507406, + 0.013642581179738045, + 0.01557775679975748, + 0.014445559121668339, + 0.014084219001233578, + -0.030786143615841866, + 0.02203369326889515, + -0.002374804811552167, + -0.013465926982462406, + 0.000971100467722863, + -0.0003984773939009756, + 0.02988680824637413, + -0.010575208812952042, + -0.0035009803250432014, + -0.01647709123790264, + 0.003842245554551482, + -0.026626721024513245, + -0.0015868835616856813, + -0.0010338330175727606, + 0.0038663349114358425, + 0.011442423798143864, + 0.018757546320557594, + 0.005500393453985453, + -0.006126715335994959, + 0.012116924859583378, + 0.013682730495929718, + 0.015625935047864914, + 0.004685371648520231, + 0.006182923913002014, + 0.0023567378520965576, + -0.0026759214233607054, + -0.00027828177553601563, + 0.02413749322295189, + 0.014614183455705643, + -0.02176067978143692, + 0.0027783007826656103, + -0.01483098790049553, + -0.0003098989836871624, + -0.008158247917890549, + -0.011803763918578625, + 0.016300436109304428, + -0.006993930786848068, + 0.00030764061375521123, + 0.009908737614750862, + -0.01204465702176094, + -0.0074717020615935326, + -0.0022242467384785414, + -0.0278311874717474, + -0.018227580934762955, + -0.013522135093808174, + -0.019319629296660423, + 0.015682144090533257, + -0.0084071708843112, + 0.005500393453985453, + 0.00196930137462914, + -0.0062551917508244514, + 0.022435180842876434, + -0.00344477198086679, + -0.012783396057784557, + 0.005901881959289312, + 0.019287511706352234, + 0.020315321162343025, + 0.00498648826032877, + 0.019464164972305298, + 0.002916814526543021, + -0.008326873183250427, + -0.003914513625204563, + 0.010848221369087696, + -0.00013587878493126482, + -0.005962105467915535, + -0.0074837468564510345, + 0.002513318555429578, + -0.018259700387716293, + 0.017649438232183456, + -0.00807393528521061, + -0.009202118031680584, + 0.0028224645648151636, + -0.018805725499987602, + -0.004053026903420687, + 0.006753037683665752, + -0.0006323445122689009, + -0.016669806092977524, + 0.015545637346804142, + 0.017617318779230118, + 0.032070908695459366, + -0.014252844266593456, + 0.0025956234894692898, + 0.012494324706494808, + -0.011851942166686058, + -0.009266356006264687, + 0.006126715335994959, + -0.0003789048350881785, + 0.00905758235603571, + -0.014758720062673092, + 0.005588721018284559, + 0.0004800297610927373, + 0.02699609100818634, + -0.0029690079391002655, + 0.005022622179239988, + -0.0030754024628549814, + 0.011458483524620533, + -0.012638860382139683, + 0.022868789732456207, + -0.008134158328175545, + 0.003876372240483761, + 0.022338824346661568, + 0.003332355059683323, + -0.022916967049241066, + -0.004267823416739702, + 0.013674700632691383, + -0.02460321970283985, + -0.006881514098495245, + 0.04014885798096657, + -0.028489628806710243, + 0.0003535608702804893, + 0.014405409805476665, + -0.010005095042288303, + -0.010278107598423958, + -0.000678013835567981, + 0.004123287741094828, + 0.009475130587816238, + 0.0035009803250432014, + 0.005556601565331221, + 0.01994595304131508, + 0.0043119871988892555, + -0.01427693385630846, + -0.0026337651070207357, + 0.020748930051922798, + -0.008816689252853394, + -0.012670978903770447, + -0.012703098356723785, + -0.0034206826239824295, + 0.00980435125529766, + 0.030320417135953903, + 0.03793264180421829, + -0.03937799856066704, + -0.0032942136749625206, + -0.000990171218290925, + -0.00015934077964629978, + 0.010984727181494236, + -0.012068746611475945, + -0.007792893331497908, + 0.011297888122498989, + 0.0031757745891809464, + -0.00387034984305501, + 0.0022162168752402067, + -0.01700705662369728, + -0.000319434329867363, + 0.007620253134518862, + -0.0012285549892112613, + 0.015794560313224792, + 0.008053860627114773, + -0.013851355761289597, + 0.014381320215761662, + 0.018018806353211403, + -0.006026343442499638, + -0.017408544197678566, + 0.00037388622877188027, + 0.0009349664906039834, + -0.002746181795373559, + 0.013064438477158546, + -0.00564091419801116, + 0.00043661880772560835, + 0.013289271853864193, + -0.005789465270936489, + 0.009635725989937782, + -0.0026297501754015684, + 0.012004508636891842, + 0.01700705662369728, + -0.014260874129831791, + 0.010221898555755615, + -0.014060129411518574, + -0.0023507156874984503, + 0.007395419292151928, + -0.0035652185324579477, + -0.0014262881595641375, + 0.0038723573088645935, + -0.008672152645885944, + 0.009402862749993801, + 0.026128876954317093, + 0.020572274923324585, + -0.0033203104976564646, + -0.01939992792904377, + 0.013546224683523178, + 0.016067571938037872, + 0.009459070861339569, + 0.008286723867058754, + 0.006263221614062786, + -0.0042557786218822, + 0.011940269730985165, + -0.0044324337504804134, + 0.025887982919812202, + 0.002481199335306883, + -0.008816689252853394, + 0.023189980536699295, + 0.007487761788070202, + 0.008202411234378815, + -0.019191153347492218, + -0.0047576394863426685, + 0.005327753257006407, + 0.015120059251785278, + 0.016179990023374557, + 0.02333451621234417, + 0.015417161397635937, + 0.020572274923324585, + 0.009258326143026352, + -0.028907176107168198, + 0.004584999289363623, + -0.008081965148448944, + 0.001642088289372623, + 0.020058369264006615, + 0.015360952354967594, + 0.00602232851088047, + 0.006728948559612036, + 0.03152488172054291, + 0.0017243934562429786, + 0.0019391897367313504, + 0.002234283834695816, + 0.014453588053584099, + 0.0020526102744042873, + -0.01153075136244297, + -0.02333451621234417, + -0.005588721018284559, + -0.002445065416395664, + -0.011594990268349648, + -0.009250296279788017, + -0.01168331690132618, + 0.0027301223017275333, + 0.024988649412989616, + 0.004492657259106636, + -0.002553467405959964, + -0.014590094797313213, + -0.009459070861339569, + -0.001150264753960073, + -0.0066727399826049805, + 0.019785355776548386, + 0.0022101944778114557, + -0.01165922824293375, + -0.0023306410294026136, + 0.001989375799894333, + -0.000637864985037595, + 0.001037847949191928, + 0.014509797096252441, + 0.021648263558745384, + -0.0038723573088645935, + 0.02094164304435253, + -0.012823544442653656, + -0.00020475916971918195, + -0.008583826012909412, + 0.0012656927574425936, + -0.006034373305737972, + 0.0008421222446486354, + -0.01859695091843605, + -0.0027301223017275333, + 0.015939095988869667, + 0.0015567719237878919, + 0.01257462240755558, + -0.012911872006952763, + -0.012590681202709675, + -0.010551119223237038, + -0.007784863468259573, + 0.01573835127055645, + -0.0026498246006667614, + 0.006207013502717018, + 0.005195261910557747, + -0.015224446542561054, + 0.025871923193335533, + -0.010318255983293056, + -0.005865748040378094, + -0.002220231806859374, + 0.0019161042291671038, + -0.013337450101971626, + -0.008896986953914165, + 0.006042403168976307, + -0.020925583317875862, + -0.018211521208286285, + 0.00366960559040308, + 0.0016461031045764685, + 0.0030733949970453978, + -0.0030493056401610374, + 0.011859972029924393, + 0.009491189382970333, + -0.003137633204460144, + -0.0065803974866867065, + -0.010125542059540749, + 0.0012978117447346449, + -0.013682730495929718, + -0.002515325788408518, + 0.020074428990483284, + 0.002665884094312787, + 5.275810690363869e-5, + -0.0139155937358737, + 0.021584024652838707, + -0.0006218054331839085, + 0.024169612675905228, + -0.013706820085644722, + -0.007018020376563072, + 0.00537191703915596, + 0.002958970842882991, + 0.00405503436923027, + 0.00492224982008338, + -0.009531338699162006, + 0.015794560313224792, + 0.012422055937349796, + 0.010519000701606274, + -0.019865654408931732, + 0.009788291528820992, + -0.0020044317934662104, + -0.0011512684868648648, + -0.02572738751769066, + -0.009643755853176117, + -0.005917941685765982, + -0.02487623132765293, + 0.011000786907970905, + 0.004693401511758566, + -0.012839604169130325, + 0.009892677888274193, + -0.011241680011153221, + 0.0035933225881308317, + 0.0036876725498586893, + 0.014959463849663734, + 0.003569233464077115, + -0.0018528697546571493, + 0.00041980648529715836, + -0.015071881003677845, + -0.013578343205153942, + -0.004894145764410496, + -0.003629456739872694, + -0.01085625123232603, + 0.009362713433802128, + -0.0011151344515383244, + -0.02203369326889515, + 0.018500592559576035, + -0.012735217809677124, + 0.0043641808442771435, + -0.00044791068648919463, + -0.012679008767008781, + -0.03093067929148674, + 0.007291032467037439, + -0.00982843991369009, + 0.024458684027194977, + -0.01089639961719513, + 0.007355270441621542, + 0.01599530503153801, + 0.005592735949903727, + -0.018227580934762955, + -0.008463378995656967, + 0.010141600854694843, + -0.02884293906390667, + 0.029164129868149757, + 0.005938015878200531, + -0.011956329457461834, + -0.010864281095564365, + -0.025261661037802696, + 0.004737565293908119, + -0.01784215122461319, + 0.009611636400222778, + 0.016685865819454193, + 0.00205963640473783, + -0.0022122019436210394, + -1.3840377505403012e-5, + 0.013730908744037151, + -0.0026759214233607054, + -0.014405409805476665, + -0.008551706559956074, + 0.004085146356374025, + -0.026883674785494804, + -0.015095970593392849, + 0.005452214740216732, + -0.023157861083745956, + 0.02049197629094124, + -0.002334655961021781, + -0.019271451979875565, + -0.0052273813635110855, + -0.03359656408429146, + 0.005014592316001654, + -0.022451240569353104, + -0.010567178949713707, + 0.005540542304515839, + -0.007584119215607643, + -0.002113837283104658, + 0.005127009004354477, + 0.01164316851645708, + 0.006419802084565163, + 6.624561501666903e-5, + 0.00353711424395442, + 0.006427831947803497, + 0.010157660581171513, + 0.0020977777894586325, + -0.015280654653906822, + -0.026626721024513245, + -0.017649438232183456, + 0.01601136475801468, + 0.0028445464558899403, + -0.017697615548968315, + 0.00544016994535923, + -0.006319430191069841, + -0.0006975863943807781, + -0.00785311684012413, + 0.010334315709769726, + -0.005143068730831146, + -0.02362358756363392, + 0.0047174906358122826, + 0.009089700877666473, + -0.013128676451742649, + 0.002571534365415573, + 0.02310968190431595, + 0.004974443465471268, + -0.004641207866370678, + 0.011699376627802849, + -0.01590697653591633, + -0.013490015640854836, + -0.0042437342926859856, + 0.010101452469825745, + -0.0043400912545621395, + 0.012052686884999275, + -0.021600084379315376, + -0.02779906801879406, + -0.0014072174672037363, + 0.017199769616127014, + 0.023784182965755463, + -0.010053274221718311, + -0.006528204306960106, + 0.012454175390303135, + -0.020604392513632774, + 0.0016139840008690953, + -0.005745301488786936, + -0.014485707506537437, + 0.012807485647499561, + -0.002160008531063795, + 0.0023587453179061413, + -0.0005886825965717435, + 0.007580104283988476, + -0.013192914426326752, + 0.014991583302617073, + 0.003916521091014147, + 0.025229541584849358, + -0.0031597150955349207, + -0.010374465025961399, + 0.015497459098696709, + -0.0007773822289891541, + 0.013064438477158546, + -0.0004905688692815602, + 0.005143068730831146, + -0.022965146228671074, + 0.012903843075037003, + 0.01652527041733265, + -0.007688506040722132, + 0.0003964699571952224, + -0.03828594833612442, + -0.009523308835923672, + -0.019046617671847343, + -0.015296714380383492, + 0.004605073947459459, + 0.009595576673746109, + 0.0024229835253208876, + 0.000890802766662091, + -0.0006704858969897032, + -0.025887982919812202, + 0.00027903454611077905, + -0.03245633468031883, + -0.0006223072996363044, + 0.012775366194546223, + 0.01728006824851036, + 0.016894638538360596, + 0.010454762727022171, + -0.0006393705261871219, + 0.007580104283988476, + -0.023736003786325455, + -0.015971215441823006, + 0.030304357409477234, + 0.016653746366500854, + 0.010069333016872406, + -0.008993344381451607, + -0.024828054010868073, + 0.003904476296156645, + -0.004287898074835539, + 0.0033423923887312412, + -0.006949767004698515, + -0.01649315096437931, + -0.002294507110491395, + 0.013024289160966873, + -0.01531277410686016, + 0.0170231144875288, + 0.0043641808442771435, + 0.0173121877014637, + 0.000611266354098916, + -0.009547398425638676, + -0.0133775994181633, + -0.006150804925709963, + 0.006150804925709963, + -0.011562870815396309, + -0.0017464752309024334, + 0.0022282616700977087, + 0.01430102251470089, + 0.01246220525354147, + 0.002487221732735634, + 0.0018448400078341365, + 0.0038723573088645935, + -0.004536821041256189, + -0.0346243754029274, + 0.013056408613920212, + -0.005488348659127951, + -0.004508716519922018, + 0.01601136475801468, + -0.022435180842876434, + -0.006231102626770735, + 0.020331380888819695, + 0.004576969891786575, + 0.018002746626734734, + 0.006062477361410856, + -0.004065071698278189, + -0.016942817717790604, + 0.006110656075179577, + 0.001290785730816424, + 0.011177442036569118, + -0.00036409994936548173, + -0.026610663160681725, + 0.0019773312378674746, + 0.014590094797313213, + -0.001475470489822328, + 0.008431259542703629, + -0.011297888122498989, + 0.007897280156612396, + -0.025518612936139107, + -0.021889157593250275, + -0.013730908744037151, + 0.00563689973205328, + -0.00438826996833086, + 0.011225620284676552, + -0.01700705662369728, + 0.00648805545642972, + -0.0024310133885592222, + -0.0028686358127743006, + 0.019062677398324013, + -0.005070800427347422, + -0.006484040524810553, + 0.014477677643299103, + 0.0008606911287643015, + 0.020925583317875862, + -0.0015808612806722522, + -0.018131224438548088, + -0.01806698553264141, + 0.0035190472844988108, + -0.000372380658518523, + -0.014019981026649475, + -0.0010348367504775524, + -0.008832748979330063, + -0.010800042189657688, + 0.005994224455207586, + 0.0013991877203807235, + -0.001430302974767983, + 0.008896986953914165, + 0.004287898074835539, + -0.009539368562400341, + 0.020010190084576607, + 0.004464552737772465, + 0.008623974397778511, + -0.017231889069080353, + 0.0005113960360176861, + -0.015650024637579918, + -0.0188860222697258, + -0.00021329079754650593, + -0.017713675275444984, + 0.001210488029755652, + 0.0209577027708292, + 0.004898160696029663, + 0.00577340554445982, + 0.015272624790668488, + -0.004954368807375431, + -0.011121232993900776, + -0.011338037438690662, + 0.028650224208831787, + -0.012719158083200455, + 0.0030432832427322865, + -0.018259700387716293, + -0.0031998639460653067, + 0.004942324478179216, + -0.020395619794726372, + -0.003083432326093316, + -0.007873190566897392, + 0.00490217562764883, + -0.030336476862430573, + -0.0031215737108141184, + -0.004938309546560049, + -3.418925916776061e-5, + -0.015625935047864914, + -0.00010457522876095027, + -0.0017695608548820019, + 0.004344106186181307, + 0.011137292720377445, + 0.012911872006952763, + 0.009418921545147896, + -0.012638860382139683, + -0.003025216283276677, + -0.01809910498559475, + -0.015393071807920933, + 0.02018684521317482, + -0.00015708240971434861, + 0.013433807529509068, + 0.012887783348560333, + -0.0006739989621564746, + -0.02672307938337326, + -0.005275559611618519, + -0.01609969139099121, + -0.019464164972305298, + 0.008009697310626507, + -0.009282415732741356, + 0.01638876274228096, + -0.008102038875222206, + -0.021648263558745384, + 0.003790052141994238, + -0.002985067432746291, + -0.006207013502717018, + 0.006572368089109659, + 0.008455349132418633, + 0.022130049765110016, + 0.0071183922700583935, + 0.003424697555601597, + 0.006917648017406464, + -0.005946045741438866, + 0.010197809897363186, + -0.011956329457461834, + 0.005652958992868662, + -0.004882100969552994, + 0.008455349132418633, + 0.0021720530930906534, + 0.0013861393090337515, + 0.016204077750444412, + -0.0007994641200639307, + 0.016926757991313934, + -0.010422643274068832, + -0.010334315709769726, + -0.019014498218894005, + -0.026963971555233, + -0.022387003526091576, + 0.0026136906817555428, + -0.012189192697405815, + 0.020122606307268143, + -0.016324525699019432, + 0.017697615548968315, + -0.016019394621253014, + 0.010767923668026924, + -0.012132984586060047, + -0.01678222231566906, + -0.008487468585371971, + 0.009475130587816238, + 0.008302783593535423, + -0.012365847826004028, + 0.0424935519695282, + 0.014212694950401783, + 0.0183881763368845, + -0.007756758946925402, + -0.00011084848665632308, + -0.0052835894748568535, + 0.020331380888819695, + -0.012438115663826466, + -0.0009209144045598805, + 0.00821044109761715, + -0.016621626913547516, + -0.00034201808739453554, + 0.01085625123232603, + 0.007014005444943905, + 0.014132397249341011, + 0.02492441050708294, + -0.010278107598423958, + 0.003404623130336404, + -0.021969454362988472, + -0.004436448682099581, + 0.0099810054525733, + -0.012799455784261227, + -0.02254759892821312, + 0.02490835078060627, + 0.003105513984337449, + -0.0008892971673049033, + 0.00026949919993057847, + 0.0012847634498029947, + 0.02781512774527073, + -0.008752450346946716, + -0.004593029152601957, + -0.001542719779536128, + -0.004982473328709602, + -0.0003106517833657563, + -0.0023888570722192526, + -0.021953394636511803, + 0.017729735001921654, + 0.016685865819454193, + 0.007760773878544569, + -0.026257352903485298, + 0.0015768463490530849, + -0.007082258351147175, + 0.02879475988447666, + 0.02490835078060627, + 0.01837211661040783, + 0.014782808721065521, + 0.013273212127387524, + 0.0028043976053595543, + 0.013947713188827038, + -1.0405768080090638e-5, + -0.01640482246875763, + -0.0028445464558899403, + 0.00609058141708374, + -0.0016079617198556662, + -0.011330007575452328, + -0.009378773160278797, + -0.03481708839535713, + 0.00917802844196558, + 0.006781141739338636, + 0.0026417947374284267, + -0.013032319024205208, + -0.019785355776548386, + -0.0031557001639157534, + -0.024811994284391403, + 0.02596828155219555, + -0.002971015404909849, + 0.009258326143026352, + 0.005484333727508783, + -0.0075760893523693085, + 0.006283296272158623, + 0.02251547947525978, + -0.0022081872448325157, + -0.010695655830204487, + 0.0002413949987385422, + -0.011851942166686058, + 0.012012537568807602, + 0.005717197433114052, + -0.027477877214550972, + -0.02513318508863449, + 0.009483160451054573, + -0.017247948795557022, + 0.007560029625892639, + 0.021391311660408974, + -0.009820410050451756, + 0.0024631323758512735, + 0.01700705662369728, + 0.030513131991028786, + -0.010944578796625137, + -0.001069967052899301, + 0.005263515282422304, + -0.01989777386188507, + 0.0003676129854284227, + 0.004713475704193115, + -0.010101452469825745, + 0.015160208567976952, + 0.011498632840812206, + 0.006042403168976307, + -0.0025574821047484875, + 0.030336476862430573, + -0.0031536926981061697, + -0.0043400912545621395, + -0.01968899928033352, + 0.0014393365709111094, + -3.641626608441584e-5, + 0.011153352446854115, + 0.005006562452763319, + 0.025502553209662437, + 0.012213282287120819, + -0.00023988941393326968, + -0.011073054745793343, + -0.0033745113760232925, + 0.0020385582465678453, + -0.005600765347480774, + 0.007030064705759287, + 0.008081965148448944, + 0.00629132566973567, + -0.005379946902394295, + 0.004075109027326107, + -0.015802590176463127, + 0.0037679702509194613, + 0.0233184564858675, + 0.017183709889650345, + -0.002174060558900237, + 0.0022483360953629017, + 0.010430673137307167, + 0.008648063987493515, + -0.005950060673058033, + -0.0027220924384891987, + 0.012253430671989918, + -0.002967000473290682, + -0.00919408816844225, + -0.008784569799900055, + -0.0006900584558025002, + 0.004870056174695492, + 0.005159127991646528, + 0.0015316788339987397, + 0.0070260497741401196, + -0.0006790175684727728, + 0.01072777435183525, + -0.008310813456773758, + 0.01507991086691618, + 0.010663536377251148, + 0.007849101908504963, + 0.0031476703006774187, + -0.001509597059339285, + 0.006781141739338636, + 0.027429699897766113, + -0.0018408250762149692, + -0.00458901422098279, + -0.001562794204801321, + -0.0009204125381074846, + -0.00929044559597969, + 0.010775953531265259, + 0.005259500350803137, + -0.03094673901796341, + 0.011313947848975658, + -0.0017113450448960066, + 0.008840777911245823, + 0.012518413364887238, + 0.011105174198746681, + 0.01577047072350979, + 0.019480224698781967, + -0.00232662633061409, + 0.003408638061955571, + -0.004223659634590149, + 0.01806698553264141, + -0.008583826012909412, + 0.014638273045420647, + 0.021359192207455635, + 0.011562870815396309, + 0.00864003412425518, + 0.008993344381451607, + -0.01965687982738018, + -0.0034146602265536785, + -0.0009931823005899787, + 0.017761854454874992, + -0.004376225173473358, + -0.003472876036539674, + 0.00807393528521061, + 0.01300019957125187, + -0.0003595832095015794, + 0.003844253020361066, + -0.007018020376563072, + -0.016444971784949303, + 0.009121820330619812, + -0.03809323534369469, + 0.022419121116399765, + 0.00904152262955904, + -0.002366775181144476, + -0.014333141967654228, + -0.01179573405534029, + -0.010519000701606274, + 0.017633378505706787, + -0.02172856219112873, + 0.011739525943994522, + 0.0035471515730023384, + -0.0011683317134156823, + -0.01456600520759821, + -0.027702711522579193, + 0.010021154768764973, + -0.011241680011153221, + 0.010968667455017567, + 0.012815515510737896, + 0.014903255738317966, + -0.0074717020615935326, + 0.012341758236289024, + -0.015818649902939796, + -0.004448493476957083, + -0.020283201709389687, + -0.021680383011698723, + -0.010318255983293056, + 0.018420295789837837, + -0.0003518043668009341, + -0.009892677888274193, + -0.015071881003677845, + 0.0119081512093544, + 0.0002772780426312238, + 0.012373877689242363, + -0.007226794026792049, + -0.016163930296897888, + 0.00019045613589696586, + -0.0037559254560619593, + 0.011378185823559761, + -0.0051912469789385796, + 0.007419508881866932, + 0.002513318555429578, + -0.022981205955147743, + -0.021294953301548958, + -0.0003671111189760268, + 0.004332061856985092, + -0.003031238680705428, + -0.017440663650631905, + 0.001097067492082715, + 0.003203878877684474, + -0.005207306705415249, + -0.00212588207796216, + 0.02307756245136261, + -0.0004095183394383639, + 0.012502353638410568, + -0.008632004261016846, + -0.0061347451992332935, + -0.004147376865148544, + 0.010583238676190376, + -0.01700705662369728, + -0.00765638705343008, + 0.02121465653181076, + 0.006901588290929794, + 0.00032344923238269985, + 0.01300019957125187, + 0.0015065858606249094, + -0.013819236308336258, + 0.013562283478677273, + -0.009137880057096481, + 0.014381320215761662, + -0.015521547757089138, + -0.012205252423882484, + 0.008567766286432743, + 0.007881220430135727, + 0.0027140628080815077, + -0.0029027622658759356, + -0.0018829813925549388, + -0.014638273045420647, + 0.02335057593882084, + -0.008218470960855484, + 0.032103024423122406, + -0.004958383738994598, + 0.0209577027708292, + -0.02514924481511116, + 0.0001501818187534809, + -0.001056918641552329, + 0.003657560795545578, + -0.010149630717933178, + -0.01570623368024826, + 0.0009158957982435822, + -0.00694173714146018, + -0.010591268539428711, + -0.01832393743097782, + 0.013819236308336258, + -0.005408050958067179, + -0.00814218819141388, + 0.0076162382028996944, + 0.015987275168299675, + -0.016276346519589424, + -0.007230808958411217, + -0.005062771029770374, + 0.016332555562257767, + 0.01992989331483841, + -0.009820410050451756, + 0.004087153822183609, + 0.021102238446474075, + 0.012927931733429432, + 0.009282415732741356, + -0.007953488267958164, + -0.003986781463027, + -0.005745301488786936, + 0.00917802844196558, + -0.009234237484633923, + -0.026835495606064796, + 0.002507296158000827, + 0.00825460534542799, + -0.009595576673746109, + -0.008358991704881191, + -0.031010977923870087, + 0.009089700877666473, + 0.0019502306822687387, + 0.013819236308336258, + 0.005387976765632629, + 0.00865609385073185, + 0.0033223179634660482, + -0.011097144335508347, + -0.016846461221575737, + 0.0031998639460653067, + 0.002300529507920146, + 0.06359578669071198, + 0.016942817717790604, + 0.01532883383333683, + -0.01596318557858467, + 0.01705523394048214, + -0.020090488716959953, + -0.004560910165309906, + -0.012566592544317245, + -0.012470235116779804, + -0.005082845222204924, + 0.01062338799238205, + -0.013771058060228825, + 0.013056408613920212, + 0.015272624790668488, + -0.013730908744037151, + 0.011586960405111313, + 0.0035411291755735874, + -0.00038593087811022997, + -0.0029429111164063215, + 0.009218177758157253, + -0.008358991704881191, + 0.017456723377108574, + 0.001277737319469452, + -0.01700705662369728, + 0.009459070861339569, + 0.008728361688554287, + 0.0026096757501363754, + -0.012590681202709675, + 0.00445250840857625, + 0.006933707743883133, + 0.0031737671233713627, + -0.022146109491586685, + -0.0381895937025547, + 0.010061303153634071, + -0.0032139159739017487, + 0.026401888579130173, + -0.011233650147914886, + 0.022226406261324883, + 0.009033492766320705, + -0.016653746366500854, + -0.024715635925531387, + -0.002973022870719433, + 0.0017806018004193902, + 0.0011071047047153115, + -0.012317669577896595, + -0.001036844216287136, + -0.011321977712213993, + 0.006150804925709963, + -0.023125741630792618, + 0.013152765110135078, + 0.012293579988181591, + -0.013939683325588703, + -0.01376302819699049, + -0.013546224683523178, + -0.007094303146004677, + 0.003511017421260476, + 0.015923036262392998, + -0.01806698553264141, + -0.002186105353757739, + -0.001036844216287136, + -0.00490217562764883, + -0.006576382555067539, + 0.0066446359269320965, + 0.02831297367811203, + -0.009820410050451756, + 0.005359872244298458, + 0.015128089115023613, + 0.006463965866714716, + -0.004978458397090435, + -0.006343519315123558, + 0.01994595304131508, + -0.005813554394990206, + -0.020604392513632774, + -0.02545437589287758, + -0.015497459098696709, + -0.01456600520759821, + -0.018918141722679138, + -0.026674900203943253, + -0.010189780034124851, + 0.0031597150955349207, + -0.003137633204460144, + -0.016653746366500854, + 0.010302196256816387, + -0.001237588468939066, + 0.002075695898383856, + -0.008953195065259933, + -0.007997652515769005, + -0.010519000701606274, + 0.01470251102000475, + 0.004223659634590149, + -0.010133571922779083, + -0.008367021568119526, + -0.025325898081064224, + 0.007768803741782904, + 0.01116138231009245, + -0.018805725499987602, + 0.0017535013612359762, + 0.0015075895935297012, + 0.01024598814547062, + 0.019319629296660423, + 0.0034066305961459875, + 0.0003716278588399291, + 0.000685039849486202, + 0.004516746383160353, + -0.01456600520759821, + -0.02127889357507229, + -0.0158427394926548, + -0.0036154044792056084, + -0.007796907797455788, + 0.024041134864091873, + -0.003657560795545578, + 0.015545637346804142, + -0.010462791658937931, + 0.01864512823522091, + 0.02622523345053196, + 0.01416451670229435, + 0.019351748749613762, + -0.000997197232209146, + 0.003376518841832876, + 0.01777791418135166, + -0.004954368807375431, + 0.02066863141953945, + 0.031300049275159836, + 0.003920536022633314, + 0.00557266129180789, + 0.007696535903960466, + 0.0028164424002170563, + 0.02044379711151123, + 0.007917354814708233, + -0.005536527372896671, + 0.011859972029924393, + -0.009137880057096481, + -0.00016875065921340138, + 0.00411927280947566, + 0.00778887839987874, + 0.002180082956328988, + -0.008880927227437496, + -0.01787427067756653, + 0.011105174198746681, + -0.02776694856584072, + -0.008222485892474651, + 0.02171250246465206, + 0.019769297912716866, + 0.01806698553264141, + -0.012855663895606995, + 0.015698203817009926, + -0.030224058777093887, + 0.00916196871548891, + 0.011016846634447575, + 0.0119081512093544, + -0.013104586862027645, + -0.0023246188648045063, + -0.008945165202021599, + -0.008134158328175545, + -0.006010283716022968, + 0.01259871106594801, + 0.0015246528200805187, + 0.01866118796169758, + -0.00674099288880825, + 0.012438115663826466, + -0.006504114717245102, + -0.0008561743889003992, + 0.004109235480427742, + 0.021921275183558464, + 0.0007919361814856529, + -0.013586373068392277, + 0.005408050958067179, + 0.025743447244167328, + -0.0007166570867411792, + -0.020010190084576607, + -0.021808858960866928, + -0.014911285601556301, + 0.0035391217097640038, + -0.0030352536123245955, + 0.007491776719689369, + 0.002900754800066352, + -0.005865748040378094, + -0.005050726234912872, + -0.0027481892611831427, + 0.004081131424754858, + 0.010430673137307167, + 0.004564925096929073, + 0.020540155470371246, + 0.0018799701938405633, + -0.02198551408946514, + 0.0032339903991669416, + -0.0114103052765131, + 0.002539415145292878, + -0.0004908198025077581, + -0.0005937012028880417, + 0.011249709874391556, + 0.023992957547307014, + -0.009740112349390984, + -0.015031731687486172, + -0.03150882199406624, + 0.0253901369869709, + -0.002445065416395664, + -0.0070501393638551235, + -0.03574854135513306, + -0.002671906491741538, + 0.012687038630247116, + -0.0022623881231993437, + -0.0038522828835994005, + 0.00282045709900558 + ], + "3679d4e1-6415-4993-80a2-9bb483920080": [ + -0.02734561450779438, + -0.027839908376336098, + -0.006338123697787523, + 0.00584781588986516, + -0.03520648181438446, + -0.017810525372624397, + 0.026006238535046577, + 0.03463246300816536, + -0.013824285008013248, + 0.028621211647987366, + 0.011950750835239887, + 0.02267374098300934, + 0.00010090172872878611, + -0.030789727345108986, + 0.026452695950865746, + 0.016758158802986145, + -0.024539301171898842, + 0.016774103045463562, + -0.008020317181944847, + -0.01634358987212181, + 0.062089692801237106, + -0.020313885062932968, + -0.032001543790102005, + 0.034983254969120026, + 0.007809046655893326, + -0.011105667799711227, + 0.010188832879066467, + 0.0058956509456038475, + -0.038267914205789566, + -0.003938406240195036, + 0.012460989877581596, + 0.02348693273961544, + 0.016176167875528336, + -0.004428714048117399, + 0.01862371899187565, + -0.03291040658950806, + -0.006226508878171444, + 0.03297418728470802, + -0.020728453993797302, + -0.0038267916534096003, + -0.03322930634021759, + 0.041935257613658905, + -0.0035517408978194, + 0.002882052445784211, + -0.053989652544260025, + 0.022833188995718956, + 0.013553219847381115, + -0.013011091388761997, + 0.0014390330761671066, + -0.005544861778616905, + 0.018304819241166115, + -0.011544154956936836, + 0.023168034851551056, + -0.009678593836724758, + 0.02806313894689083, + -0.007621693424880505, + 0.002722602803260088, + 0.056604623794555664, + 0.009447392076253891, + -0.06537435948848724, + 0.006393930874764919, + 0.0028501625638455153, + 0.037119876593351364, + -0.003711190540343523, + -0.0019781722221523523, + -0.011767384596168995, + 0.01280380692332983, + -0.0010164915584027767, + -0.050417978316545486, + 0.004245346877723932, + 0.03259150683879852, + 0.030933231115341187, + -0.02291291393339634, + -0.005106375087052584, + -0.005210017319768667, + 0.0032248692587018013, + 0.023853667080402374, + 0.012349375523626804, + 0.002545214956626296, + -0.0032129103783518076, + -0.014669368043541908, + 0.002736554713919759, + 0.02815880812704563, + 0.008881345391273499, + 0.07710985094308853, + 0.024762529879808426, + -0.03852303698658943, + -0.057274315506219864, + -0.009240107610821724, + -0.02772829495370388, + -0.007577844429761171, + 0.02233889512717724, + -0.004675860982388258, + 0.017332177609205246, + -0.01822509430348873, + 0.0045961360447108746, + 0.05810345336794853, + -0.00786086730659008, + -0.008833510801196098, + -0.021398143842816353, + 0.01905423402786255, + 0.03861870616674423, + -0.039766743779182434, + 0.014908541925251484, + 0.008080110885202885, + -0.002897997386753559, + 0.010356254875659943, + -0.0032408141996711493, + -0.03466435521841049, + 0.06043141707777977, + 0.014087376184761524, + -0.024379851296544075, + 0.013688752427697182, + -0.006178673822432756, + -0.05025852844119072, + -0.06454522162675858, + -0.01136078778654337, + -0.039958082139492035, + -0.006589256692677736, + -0.046272289007902145, + 0.031762368977069855, + 0.008171794936060905, + 0.005325618200004101, + 0.010220722295343876, + -0.006672967690974474, + 0.008937153033912182, + -0.008458804339170456, + 0.016534928232431412, + 0.019165847450494766, + 0.036290738731622696, + -0.03370765596628189, + -0.031076736748218536, + -0.0028840454760938883, + -0.002955797826871276, + 0.004093869589269161, + 0.024395795539021492, + -0.019420966506004333, + 0.05552036687731743, + -0.01357713807374239, + 0.035621050745248795, + -0.023263704031705856, + -0.05354319140315056, + -0.014127238653600216, + 0.013664835132658482, + 0.010930273681879044, + 0.005975375417619944, + -0.059442829340696335, + 0.04630417749285698, + -0.013027036562561989, + 0.01251679752022028, + -0.05127900838851929, + -0.0017918153898790479, + 0.02029794082045555, + 0.01417507417500019, + 0.005433246959000826, + 0.019181793555617332, + 0.007023756857961416, + 0.018304819241166115, + 0.009973575361073017, + 0.027281835675239563, + 0.005728228483349085, + -0.0796610414981842, + 0.003721156157553196, + -0.02874877117574215, + 0.03361198678612709, + -0.0037669979501515627, + 0.04196714609861374, + 0.03645018860697746, + -0.0379171259701252, + 0.02198810689151287, + 0.018049700185656548, + -0.004588163457810879, + 0.019835537299513817, + 0.011655769310891628, + 0.0029996465891599655, + -0.003890571417286992, + 0.04652740806341171, + 0.03747066855430603, + 0.01553039625287056, + -0.03555727005004883, + -0.0052140033803880215, + -0.0020728453528136015, + -0.0058836922980844975, + -0.01934124156832695, + -0.019883371889591217, + 0.015737680718302727, + 0.014055486768484116, + -0.004588163457810879, + -0.011273089796304703, + -0.012955283746123314, + -0.007824991829693317, + -0.021063297986984253, + -0.024379851296544075, + 0.041456907987594604, + -0.035078924149274826, + -0.03919272497296333, + -0.013186486437916756, + 0.0033604013733565807, + 0.028270423412322998, + 0.013345935381948948, + 0.000875976518727839, + -0.047101426869630814, + -0.04196714609861374, + 0.04703764617443085, + -0.054276660084724426, + 0.02170109748840332, + -0.012213842943310738, + -0.009144437499344349, + 0.02329559437930584, + -0.045889608561992645, + 0.017108947038650513, + -0.04614472761750221, + 0.0070556472055613995, + 0.013585110194981098, + -0.01171954907476902, + 0.004141704645007849, + 0.0012596521992236376, + 0.0382998064160347, + 0.0033743532840162516, + -0.01645520329475403, + -0.02064872905611992, + 0.0043450030498206615, + -0.009551034308969975, + -0.02546410821378231, + -0.06068653613328934, + -0.023853667080402374, + -0.019468802958726883, + 0.04305140674114227, + -0.061324335634708405, + 0.017045168206095695, + 0.03645018860697746, + -0.007486160844564438, + 0.0016782075399532914, + -0.02536843903362751, + -0.017954031005501747, + -0.005369466729462147, + 0.024730641394853592, + 0.02503359504044056, + 0.014597615227103233, + -0.023742053657770157, + 0.006880252156406641, + 0.032240718603134155, + 0.007932620123028755, + -0.004524383693933487, + 0.01803375594317913, + 0.016096442937850952, + -0.006728775333613157, + 0.05239515379071236, + 0.02546410821378231, + -0.026851320639252663, + 0.010196805000305176, + 0.014214936643838882, + 0.01063529122620821, + -0.012811779044568539, + -0.012644357047975063, + 0.06393931061029434, + 0.0390651635825634, + -0.03367576748132706, + 0.006230494938790798, + -0.02391744777560234, + -0.003328511491417885, + 0.004683833569288254, + 0.030598387122154236, + -0.012596522457897663, + 0.03472813218832016, + -0.013202430680394173, + 0.04266872629523277, + -0.05290539190173149, + -0.006322178523987532, + 0.03919272497296333, + -0.023088309913873672, + 0.013744560070335865, + -0.035621050745248795, + -0.014486000873148441, + 0.006409876048564911, + 0.007438326254487038, + -0.02025010623037815, + -0.011057833209633827, + 0.017491627484560013, + 0.00921618938446045, + -0.005839843302965164, + 0.0004569228913169354, + 0.004608094692230225, + 0.02174893207848072, + 0.016614653170108795, + 0.0014021603856235743, + -0.01765107549726963, + 0.005166168790310621, + -0.03367576748132706, + -0.010459897108376026, + 0.0008610280929133296, + 0.0031989587005227804, + 0.013832257129251957, + 0.01444613840430975, + 0.0020130518823862076, + 0.021015463396906853, + -0.01169563177973032, + 0.019739866256713867, + -0.00166724540758878, + 0.02445957623422146, + -0.019468802958726883, + 0.0008615264086984098, + -0.007338670082390308, + -0.03313363716006279, + 0.004564246162772179, + -0.016128331422805786, + 0.02874877117574215, + 0.01051570475101471, + -0.05526524782180786, + 0.005740187596529722, + 0.04196714609861374, + -0.014454110525548458, + -0.02450741082429886, + -0.02117491327226162, + 0.007518051192164421, + -0.0011151509825140238, + 0.0074024498462677, + 0.0005640531308017671, + -2.0538485841825604e-5, + -0.01722056232392788, + 0.026851320639252663, + -0.001963223796337843, + -0.0938839539885521, + 0.031044846400618553, + 0.052012477070093155, + -0.0391608327627182, + 0.03912894427776337, + -0.013218375854194164, + -0.0606546476483345, + -0.025543833151459694, + -0.016136305406689644, + -0.03077378310263157, + -0.032384224236011505, + 0.0020529143512248993, + -0.007426367606967688, + -0.04697386547923088, + -0.031220240518450737, + -0.025783007964491844, + -0.014127238653600216, + -0.01679004728794098, + -0.03941595181822777, + -0.01504407450556755, + 0.010037355124950409, + -0.008961070328950882, + 0.012891503982245922, + 0.00431709922850132, + 0.023024529218673706, + 0.03275095671415329, + -0.022944804280996323, + -0.01225370541214943, + 0.0009058733121491969, + -0.007856881245970726, + 0.025240879505872726, + 0.014047513715922832, + 0.05504201725125313, + -0.02801530435681343, + -0.010435979813337326, + -0.006760665215551853, + 0.02579895406961441, + 0.007434339728206396, + 0.011536181904375553, + -0.03216099366545677, + -0.030662167817354202, + -0.012740027159452438, + -0.0068722800351679325, + -0.01108972355723381, + -0.014932459220290184, + -0.005935513414442539, + 0.00546115031465888, + 0.013234321027994156, + -0.035429712384939194, + 0.012596522457897663, + 0.008402996696531773, + -0.02029794082045555, + -0.024571191519498825, + -0.03549349308013916, + 0.0403088703751564, + -0.007059633266180754, + -0.01717272773385048, + 0.03351631760597229, + 0.0036254865117371082, + 0.00434101652354002, + 0.005369466729462147, + -0.018256984651088715, + 0.025480054318904877, + 0.03718365728855133, + 0.0033883049618452787, + 0.0035517408978194, + -0.010037355124950409, + -0.003731121774762869, + -0.014254799112677574, + 0.0402132011950016, + -0.0382998064160347, + 0.011584017425775528, + -0.007761211600154638, + 0.016997331753373146, + -0.003531809663400054, + -0.004030089825391769, + 0.01205439306795597, + -0.01309081632643938, + -0.003962324000895023, + -0.017348121851682663, + -0.014972321689128876, + 0.019420966506004333, + 0.0158094335347414, + -0.02763262391090393, + 0.002708650892600417, + -0.019277462735772133, + 0.031523194164037704, + -0.023470988497138023, + 0.006780596449971199, + -0.005393384490162134, + 0.02532060444355011, + 0.007107468321919441, + 0.06696885079145432, + -0.0148048996925354, + 0.0013892051065340638, + 0.0376301184296608, + -0.038076575845479965, + -0.0094075296074152, + 0.030614333227276802, + 0.052937284111976624, + 0.0049628703854978085, + 0.0188150592148304, + -0.015155688859522343, + 0.04470968246459961, + 0.019516637548804283, + 0.0009292924660257995, + -0.030933231115341187, + -0.03230449929833412, + 0.006852348800748587, + 0.042126595973968506, + 0.003111261175945401, + 0.0003455572878010571, + -0.024188511073589325, + -0.009941685944795609, + -0.0056046550162136555, + -0.01674221269786358, + -0.01798592135310173, + -0.0061348252929747105, + -0.0015337063232436776, + 0.021015463396906853, + -0.013609027490019798, + -0.00291194929741323, + -0.03814035654067993, + -0.03587616980075836, + -0.03380332514643669, + 0.005241907201707363, + 0.019181793555617332, + -0.030646223574876785, + -0.01822509430348873, + 0.030199764296412468, + -0.06355663388967514, + 0.007545954547822475, + -0.010531648993492126, + -0.021430032327771187, + -0.0047037648037076, + -0.007378532551229, + 0.02662809193134308, + -0.04604905843734741, + -0.034791912883520126, + -0.010994053445756435, + 0.006130839232355356, + -0.013011091388761997, + 0.01731623150408268, + -0.0403088703751564, + -0.0016841869801282883, + 0.03960729390382767, + 0.007498119957745075, + 0.004683833569288254, + -0.006800527684390545, + -0.004711736924946308, + -0.03801279515028, + -0.0011928826570510864, + 0.00196521682664752, + -0.0007509082206524909, + -0.006266371347010136, + 0.005748159717768431, + 0.017954031005501747, + -0.015713762491941452, + -0.0188628938049078, + -0.02791963331401348, + -0.0012447037734091282, + 0.007314752787351608, + 0.01731623150408268, + -0.024714695289731026, + 0.008458804339170456, + -0.03625885024666786, + -0.0017130872001871467, + 0.003537788987159729, + 0.048249464482069016, + -0.01905423402786255, + 0.007876812480390072, + 0.011145530268549919, + -0.0147331478074193, + -0.04639984667301178, + 0.0005446202121675014, + -0.02122274786233902, + -0.03173048049211502, + -0.022434566169977188, + 0.0376301184296608, + -0.015139744617044926, + -0.003350435756146908, + 0.023072363808751106, + -0.0035636997781693935, + 0.01596888154745102, + 0.000993072404526174, + -0.013824285008013248, + -0.00979020819067955, + -0.003970296122133732, + -0.022402675822377205, + -0.011400650255382061, + -0.009559006430208683, + 0.00388259906321764, + -0.012923394329845905, + 0.01449397299438715, + -0.018049700185656548, + 0.0026528434827923775, + 0.04537937045097351, + -0.0007085544057190418, + -0.0006417848635464907, + 0.007378532551229, + -0.012484907172620296, + -0.003872633446007967, + -0.03015192784368992, + -0.01027652993798256, + 0.018846947699785233, + -0.009256051853299141, + 0.021143022924661636, + -0.023072363808751106, + -0.004783489275723696, + 0.014430193230509758, + -0.006051114294677973, + 0.005851801950484514, + 0.027090495452284813, + -0.021876491606235504, + 0.010396117344498634, + 0.019612306728959084, + 0.002020027721300721, + 0.020473334938287735, + -0.03361198678612709, + 0.022211335599422455, + -0.009734401479363441, + -0.017762690782546997, + -0.0189585629850626, + 0.030694058164954185, + -0.022928860038518906, + 0.023024529218673706, + -0.0013902016216889024, + 0.011041888035833836, + -0.0377257876098156, + 0.026691870763897896, + -0.008355161175131798, + 0.004012151621282101, + 0.017443791031837463, + -0.049652621150016785, + 0.023710163310170174, + -0.02677159570157528, + -0.029482239857316017, + -0.02465091645717621, + -0.009566978551447392, + 0.017332177609205246, + 0.014765037223696709, + -0.005588710308074951, + -0.017858359962701797, + 0.002939852885901928, + -0.011767384596168995, + 0.037598226219415665, + -0.00805220752954483, + 0.013146623969078064, + 0.024029063060879707, + 0.002561159897595644, + 0.024826310575008392, + 0.015649983659386635, + -0.018256984651088715, + 0.03833169490098953, + -0.011249172501266003, + 0.004213456995785236, + -0.03606751188635826, + -0.02599029242992401, + 0.04403999447822571, + -0.032479893416166306, + 0.00395235838368535, + -0.0036434244830161333, + 0.005345549434423447, + 0.017778635025024414, + -0.018001865595579147, + -0.01200655847787857, + 0.01536297332495451, + 0.040021862834692, + 0.004285209346562624, + 0.008514611050486565, + 0.0032328416127711535, + 0.002142604673281312, + -0.02189243771135807, + 0.01362497266381979, + 0.00582389859482646, + 0.012867586687207222, + 0.0022601988166570663, + -0.005692352540791035, + 0.013680780306458473, + 0.04403999447822571, + -0.005325618200004101, + -0.01563403755426407, + 0.0006901180022396147, + 0.026213523000478745, + -0.003962324000895023, + 0.01769891194999218, + -0.01311473362147808, + 0.015944965183734894, + -0.0026667953934520483, + -0.0013583117397502065, + 0.037056099623441696, + 0.01224573329091072, + 0.02449146658182144, + 0.0016373485559597611, + 0.028286367654800415, + 0.029976533725857735, + 0.0044008102267980576, + -0.012859614565968513, + 0.0184323787689209, + -0.039033275097608566, + 0.06119677424430847, + -0.009072684682905674, + 0.028031248599290848, + 0.023231813684105873, + -0.01198264118283987, + -0.01664654351770878, + -0.01779458113014698, + -0.006816472392529249, + 0.012612467631697655, + -0.00896904245018959, + 0.027233999222517014, + -0.03380332514643669, + 0.02039361000061035, + 0.0004977818462066352, + 0.006346096284687519, + -0.006381972227245569, + -0.0019223648123443127, + -0.020122546702623367, + -0.017348121851682663, + 0.01051570475101471, + -0.013776449486613274, + 0.02870093658566475, + -0.015331083908677101, + 0.023407207801938057, + -0.0205849502235651, + 0.02324775978922844, + 0.032623399049043655, + 0.0373431071639061, + -0.024140676483511925, + 0.010140997357666492, + 0.013242293149232864, + 0.018591828644275665, + 0.0035397822503000498, + -0.02131841890513897, + 0.00696794968098402, + -0.0011390683939680457, + -0.0055169579572975636, + 0.005166168790310621, + 0.028270423412322998, + -0.033452536910772324, + 0.006393930874764919, + -0.004655929747968912, + 0.014924487099051476, + -0.011129585094749928, + 0.008570418693125248, + 0.00032512779580429196, + 0.016311699524521828, + 0.022833188995718956, + -0.011049861088395119, + 0.013991707004606724, + 0.02296075038611889, + 0.01610441505908966, + -0.005855788476765156, + 0.005006718914955854, + -0.0015207510441541672, + -0.007231041789054871, + 0.003908509388566017, + -0.019357187673449516, + -0.02474658563733101, + -0.01722056232392788, + -0.02165326289832592, + 0.02040955424308777, + -0.004851255565881729, + -0.01026855781674385, + -0.008690006099641323, + 0.0294662956148386, + -0.015187579207122326, + -0.012891503982245922, + 0.005006718914955854, + 0.00950319878757, + -0.0035656928084790707, + 0.015705790370702744, + -0.0033604013733565807, + 0.005190086085349321, + -0.004755585920065641, + -0.003994213882833719, + 0.029019836336374283, + -0.03137969225645065, + -0.059634167701005936, + -0.01793808490037918, + -0.0008530556224286556, + -0.023550713434815407, + 0.007175234146416187, + 0.021382197737693787, + -0.016271837055683136, + -0.013393770903348923, + 0.010172887705266476, + 0.00515022361651063, + 0.01981959119439125, + 0.01051570475101471, + 0.005576751660555601, + 0.02724994532763958, + 0.021190857514739037, + 0.011257145553827286, + -0.011233228258788586, + 0.01526730414479971, + -0.004911049269139767, + 0.025527888908982277, + -0.033835217356681824, + 0.029195230454206467, + -0.009008904919028282, + -0.02536843903362751, + -0.042987626045942307, + 0.012572605162858963, + 0.026213523000478745, + 0.0034201950766146183, + 0.0008261484908871353, + -0.008080110885202885, + 0.042509276419878006, + 0.011886971071362495, + -0.00887337327003479, + 0.007163275498896837, + 0.010970136150717735, + -0.02232295088469982, + 0.010140997357666492, + 0.006840390153229237, + 0.03086945228278637, + -0.02222728170454502, + 0.014047513715922832, + -0.003316552611067891, + 0.01827293075621128, + -0.006908155977725983, + 0.020329831168055534, + 0.0006079017766751349, + 0.02618163265287876, + 0.016327643766999245, + -0.001089240424335003, + 0.002571125514805317, + 0.03775767609477043, + -0.02720211073756218, + 0.01606455259025097, + 0.008546501398086548, + -0.036482080817222595, + 0.018496159464120865, + 0.014071431942284107, + 0.02272157557308674, + -0.023455044254660606, + 0.020026875659823418, + -0.005202044732868671, + 0.006952004507184029, + 0.01053962204605341, + -0.0009118526941165328, + -0.0018595815636217594, + -0.0053654806688427925, + 0.0037889222148805857, + 0.025065485388040543, + 0.03158697485923767, + -0.006210563704371452, + 0.03034326806664467, + 0.02276941016316414, + 0.04840891435742378, + 0.0189585629850626, + -0.0050186775624752045, + -0.02319992333650589, + 0.01195872388780117, + -0.02141408808529377, + -0.06849957257509232, + 0.005552833899855614, + -0.006836403626948595, + -0.05089632794260979, + 0.00807612482458353, + -0.03110862709581852, + 0.02093573845922947, + -0.007597775664180517, + 0.03303796797990799, + -0.019118012860417366, + -0.026851320639252663, + -0.013760504312813282, + -0.0005844826227985322, + 0.0045283702202141285, + 0.013449577614665031, + 0.017619187012314796, + 0.028716882690787315, + -0.035047031939029694, + 0.01745973713696003, + -0.01693355292081833, + -0.011560099199414253, + 0.029817083850502968, + 0.029689524322748184, + -0.036195069551467896, + 0.038172245025634766, + 0.04971640184521675, + -0.01798592135310173, + -0.006142797879874706, + -0.01162387989461422, + 0.009327804669737816, + -0.011886971071362495, + 0.009359694086015224, + -0.016120359301567078, + -0.0022083777002990246, + -0.012955283746123314, + 0.024236347526311874, + -0.004018131177872419, + 0.008307326585054398, + 0.0007947568665258586, + 0.002543221926316619, + 0.02103140950202942, + 0.0006527469959110022, + 0.01200655847787857, + 0.011894944123923779, + 0.024475520476698875, + 0.006118880119174719, + -0.012173980474472046, + -0.01205439306795597, + 0.00012643859372474253, + -0.004512425046414137, + 0.004197511821985245, + 0.011504292488098145, + 0.01116147544234991, + 0.004265278112143278, + 0.0018536021234467626, + 0.022418620064854622, + 0.013202430680394173, + 0.042891956865787506, + -0.02363043837249279, + -0.015227441675961018, + -0.031459417194128036, + 0.033643875271081924, + -0.005421288311481476, + -0.04742032662034035, + -0.015434726141393185, + -0.029450349509716034, + -0.026357026770710945, + -0.020967628806829453, + 0.002323978580534458, + 0.00026408847770653665, + 0.027600733563303947, + 0.029593855142593384, + 0.02589462324976921, + -0.004416755400598049, + -0.0034859678708016872, + 0.015370946377515793, + -0.03326119855046272, + 0.029546020552515984, + -0.007617706898599863, + 0.027744239196181297, + 0.012572605162858963, + 0.021573537960648537, + 0.02517709881067276, + 0.00805220752954483, + -0.028477707877755165, + -0.00709152314811945, + 0.007302794139832258, + -0.014191018417477608, + -0.025400329381227493, + 0.013760504312813282, + 0.006963963620364666, + 0.015283249318599701, + -0.010762851685285568, + -0.00431709922850132, + -0.02546410821378231, + 0.02372610755264759, + -0.010109107941389084, + -0.010810686275362968, + -0.01222181599587202, + 0.004046034999191761, + -0.02624541148543358, + -0.008211657404899597, + -0.017667021602392197, + 0.0042373742908239365, + -0.00042702609789557755, + -0.003256759140640497, + -0.030598387122154236, + 0.0014041535323485732, + 0.004978815093636513, + 0.00430514058098197, + 0.0061906324699521065, + 0.003093323204666376, + 0.008379079401493073, + 0.017188671976327896, + -0.00916038267314434, + -0.03329308703541756, + -0.01779458113014698, + -0.023375319316983223, + -0.01582537777721882, + -0.029482239857316017, + -0.0037570323329418898, + 0.0016373485559597611, + -0.0007563892868347466, + -0.03708798810839653, + -0.026946991682052612, + 0.006457710638642311, + 0.012747999280691147, + -0.046846307814121246, + 0.006250426173210144, + 0.003318545874208212, + 0.018878838047385216, + 0.029211176559329033, + 0.0005047578015364707, + 0.015004212036728859, + -0.016359534114599228, + -0.027409395202994347, + 0.03211316093802452, + 0.016144277527928352, + 0.01417507417500019, + -0.012437072582542896, + -0.005624586250633001, + -0.021095188334584236, + 0.024523356929421425, + 0.012604494579136372, + 0.019612306728959084, + 0.0019173820037394762, + 0.018831003457307816, + 0.006820458918809891, + -0.0006557366577908397, + -0.0037968948017805815, + 0.004787475802004337, + 0.010061273351311684, + 0.010754878632724285, + 0.0021884464658796787, + 0.019309353083372116, + -0.015458643436431885, + 0.03342064470052719, + 0.0012088275980204344, + -0.0019502685172483325, + 0.003097309498116374, + -0.026165688410401344, + -0.027026714757084846, + -0.02839798294007778, + 0.006393930874764919, + 0.02184460125863552, + -0.014940432272851467, + 0.005154210142791271, + 0.014366413466632366, + 0.0034002638421952724, + 0.03476002439856529, + -0.007609734311699867, + -0.014908541925251484, + -0.006768637802451849, + 0.009351721964776516, + 0.006728775333613157, + 0.00229607499204576, + 0.01639142446219921, + 0.03182614967226982, + -0.01615224964916706, + 0.003727135481312871, + -0.0032388209365308285, + 0.0018237053882330656, + 0.005544861778616905, + 0.022609960287809372, + -0.0040320828557014465, + 0.01256463211029768, + -0.05064120888710022, + 0.009343749843537807, + -0.049461282789707184, + -0.0015516444109380245, + 0.006760665215551853, + -0.0007264924934133887, + -0.03533404320478439, + -0.002094769850373268, + -0.023694217205047607, + 0.0189585629850626, + -0.01087446603924036, + -0.028669046238064766, + -0.02272157557308674, + -0.0012576591689139605, + -0.01576957106590271, + -0.0013304080348461866, + 0.035174593329429626, + -0.014669368043541908, + -0.00584781588986516, + -0.015713762491941452, + -0.028812551870942116, + 0.015737680718302727, + -0.010013437829911709, + 0.020664675161242485, + -0.017380012199282646, + 0.011424567550420761, + 0.009311859495937824, + -0.03399466350674629, + -0.01736406609416008, + 0.008363134227693081, + 0.019787700846791267, + -0.007545954547822475, + -0.0294662956148386, + -0.01591307483613491, + -0.006948018446564674, + -0.04416755214333534, + -0.005803967360407114, + 0.017491627484560013, + -0.022944804280996323, + 0.05561603605747223, + 0.03058244287967682, + 0.014892597682774067, + -0.01454180758446455, + -0.017826471477746964, + 0.005636544898152351, + 0.033643875271081924, + -0.006999839562922716, + -0.03303796797990799, + -0.0017928120214492083, + -0.021238693967461586, + 0.025862732902169228, + 0.029577910900115967, + 0.0015287235146388412, + -0.0394478440284729, + 0.0009118526941165328, + 0.04860025271773338, + -0.018065644428133965, + -0.035525381565093994, + 0.004241360817104578, + -0.006326165050268173, + -0.013505385257303715, + 0.005640531424432993, + 0.011097695678472519, + -0.008426913991570473, + 0.010467869229614735, + -0.0031371719669550657, + -0.017093002796173096, + 0.001391198136843741, + -0.0050505674444139, + -0.02217944711446762, + 0.012094255536794662, + -0.02098357304930687, + 0.009439419023692608, + -0.07538779079914093, + -0.02618163265287876, + -0.001937313238158822, + 0.03034326806664467, + 0.007246986497193575, + -0.0019961101934313774, + 6.477641727542505e-5, + 0.007159289438277483, + -0.0037829428911209106, + 0.007199151907116175, + 0.009869933128356934, + -0.015466615557670593, + 0.01919773779809475, + 0.034600574523210526, + 6.757924711564556e-5, + 0.013266210444271564, + -0.021015463396906853, + -0.00655736681073904, + 0.009375639259815216, + -0.0047914618626236916, + -0.0022881024051457644, + 0.02310425415635109, + 0.02560761384665966, + -0.01080271415412426, + -0.0016104414826259017, + 0.04168013855814934, + -0.02796746790409088, + -0.009726428426802158, + -0.022881025448441505, + -0.02643675170838833, + 0.003250779816880822, + 0.00831529963761568, + -0.0020688592921942472, + -0.005046581383794546, + 0.021350307390093803, + 0.010459897108376026, + 0.02319992333650589, + -0.020234160125255585, + 0.04132935032248497, + 0.007828977890312672, + 0.011528209783136845, + 0.006820458918809891, + -0.0024993731640279293, + -0.02584678865969181, + -0.016176167875528336, + -0.032001543790102005, + 0.005293728318065405, + -0.02624541148543358, + -0.001375253195874393, + 0.014972321689128876, + 0.011918861418962479, + 0.00583585724234581, + -0.0011340855853632092, + -0.02112707868218422, + -0.0023817792534828186, + -0.008219629526138306, + 0.028908221051096916, + -0.014191018417477608, + 0.0071034817956388, + -0.005233934614807367, + 0.05733809247612953, + 0.014047513715922832, + 0.007518051192164421, + 0.006377986166626215, + -0.015410808846354485, + 0.018799113109707832, + 0.011145530268549919, + 0.012484907172620296, + 0.0300403144210577, + -0.01398373395204544, + -0.009200245141983032, + -0.010013437829911709, + -0.010005465708673, + 0.015386891551315784, + -0.008331243880093098, + 0.023981226608157158, + 0.015139744617044926, + 0.005879705771803856, + 0.0058956509456038475, + -0.0035696791019290686, + -0.012676247395575047, + 0.011528209783136845, + 0.006812486331909895, + -0.009758318774402142, + -0.014350468292832375, + -0.026691870763897896, + -0.00021176906011532992, + -0.021525703370571136, + -0.01803375594317913, + -0.0017609220230951905, + 0.030598387122154236, + 0.0007005818770267069, + 0.02449146658182144, + 0.02272157557308674, + -0.018831003457307816, + 0.06502356380224228, + 0.00515022361651063, + 0.00892120786011219, + -0.00543723301962018, + -0.02555977925658226, + -0.01312270574271679, + -0.009838043712079525, + 0.002937859855592251, + -0.0294184610247612, + -0.013266210444271564, + 0.0036234932485967875, + 0.01812942512333393, + 0.0014788955450057983, + -0.017922140657901764, + -0.015936993062496185, + 0.005122319795191288, + -0.0036075483076274395, + -0.036386411637067795, + -0.021111134439706802, + -0.022115666419267654, + 0.00415764981880784, + -0.015482560731470585, + -0.026707816869020462, + -0.027808018028736115, + 0.002945832209661603, + 0.004711736924946308, + 0.03912894427776337, + 0.003250779816880822, + -0.02093573845922947, + -0.004564246162772179, + 0.004807407036423683, + -0.010890411213040352, + -0.022928860038518906, + -0.005947472061961889, + 0.034026555716991425, + -0.005827884655445814, + -0.002545214956626296, + 0.0007249976042658091, + -0.0006557366577908397, + -0.008458804339170456, + 0.020170381292700768, + 0.027648570016026497, + -0.016534928232431412, + 0.00741440849378705, + -0.04553882032632828, + -0.0013154596090316772, + 0.008546501398086548, + 0.001189892995171249, + 0.023853667080402374, + -0.008992960676550865, + -0.011560099199414253, + -0.0036274795420467854, + -0.005668435245752335, + 0.003119233762845397, + -0.029338736087083817, + -0.0201544351875782, + 0.005684379953891039, + 0.019277462735772133, + -0.012787861749529839, + -0.018926672637462616, + -0.02276941016316414, + -0.020824125036597252, + 0.004416755400598049, + 0.009168354794383049, + -0.006158742588013411, + -0.018799113109707832, + 0.009630759246647358, + 0.02276941016316414, + -0.004468576516956091, + 0.02272157557308674, + -0.013680780306458473, + -0.021190857514739037, + -0.005166168790310621, + -0.016901662573218346, + -0.009487254545092583, + -0.005385411903262138, + -0.0012566625373438, + -0.013712669722735882, + -0.016375478357076645, + -0.0003455572878010571, + -0.011615906842052937, + -0.0076535833068192005, + -0.005229948554188013, + 0.01929340697824955, + 0.00046489539090543985, + 0.0012516797287389636, + 0.014916514977812767, + 0.00010015431325882673, + 0.026596201583743095, + 0.007996399886906147, + 0.017045168206095695, + -0.003697238862514496, + 0.00327868340536952, + -0.009240107610821724, + 0.0005060035036876798, + 0.025719229131937027, + 0.025926513597369194, + -0.0032627384644001722, + 0.011041888035833836, + -0.003284662729129195, + -0.000732970132958144, + 0.014741119928658009, + 0.013369852676987648, + -0.025097375735640526, + -0.013704697601497173, + -0.01745973713696003, + -0.020026875659823418, + 0.012907449156045914, + 0.020090656355023384, + -0.008992960676550865, + -0.005317645613104105, + -0.04467779025435448, + 0.002716623479500413, + 0.03058244287967682, + -0.018974509090185165, + 0.016534928232431412, + -0.001377246342599392, + 0.006780596449971199, + -0.014852735213935375, + 0.026006238535046577, + -0.007147330325096846, + 0.01395981665700674, + -0.007649596780538559, + -0.0036593694239854813, + -0.03206532448530197, + 0.02643675170838833, + -0.01136078778654337, + 0.009949658066034317, + -0.026787541806697845, + 0.02189243771135807, + 0.018687499687075615, + 0.005600668955594301, + -0.02619757689535618, + -0.022211335599422455, + 0.006138811353594065, + 0.010571511462330818, + -0.006999839562922716, + -0.02174893207848072, + -0.0023837722837924957, + 0.012987174093723297, + -0.02074440009891987, + 0.029163340106606483, + -0.01138470508158207, + 0.03120429627597332, + -0.030311377719044685, + -0.011145530268549919, + -0.02551194466650486, + -0.012460989877581596, + 0.010196805000305176, + 0.03351631760597229, + 0.016375478357076645, + -0.026755651459097862, + -0.01755540631711483, + 0.0057680909521877766, + 0.010236667469143867, + 0.014310605823993683, + -0.029833029955625534, + -0.02040955424308777, + 0.020632784813642502, + -0.0011181406443938613, + 0.00791268888860941, + 0.009351721964776516, + 0.0023040473461151123, + 0.026101907715201378, + -0.01634358987212181, + 0.005668435245752335, + -0.0009442408918403089, + 0.017810525372624397, + -0.04582582786679268, + 0.029290901497006416, + -0.016040634363889694, + 0.0010742919985204935, + 0.017906196415424347, + 0.027760183438658714, + -0.02493792586028576, + 0.009048767387866974, + -0.0022881024051457644, + -0.008171794936060905, + 0.00833921693265438, + 0.012548687867820263, + 0.007884785532951355, + -0.0041815671138465405, + -0.011193365789949894, + 0.01312270574271679, + 0.011926833540201187, + -0.0010643263813108206, + -0.010699071921408176, + -0.028541486710309982, + 0.02637297287583351, + 0.012118173763155937, + -0.0033544220495969057, + 0.02069656364619732, + -0.0007932620355859399, + 0.02150975726544857, + 0.006629119161516428, + 0.02055305987596512, + 0.020377665758132935, + 0.031076736748218536, + -0.015394863672554493, + 0.011241200380027294, + -0.007864854298532009, + 0.009048767387866974, + 0.005616614129394293, + 0.03297418728470802, + 0.005433246959000826, + 0.01789025031030178, + -0.018735334277153015, + -0.04573015868663788, + -0.018990453332662582, + 0.012437072582542896, + -0.00036847818410024047, + -0.005656476132571697, + 0.007681486662477255, + -0.010699071921408176, + -0.011304980143904686, + 0.016423314809799194, + 0.007729321718215942, + 0.0004885636735707521, + -0.009519143961369991, + -0.012476935051381588, + -0.0100533002987504, + 0.011065805330872536, + -0.0047037648037076, + -0.005592696368694305, + -0.0289401113986969, + 0.007661555893719196, + -0.008538528345525265, + 0.01707705669105053, + 0.017874306067824364, + -0.029769249260425568, + -0.005676407366991043, + 0.011552127078175545, + -0.014039541594684124, + 0.013728614896535873, + -0.009240107610821724, + -0.0007110458100214601, + 0.027855854481458664, + -0.006637091748416424, + 0.010994053445756435, + 0.012413155287504196, + -0.0046280259266495705, + 3.165636007906869e-5, + -0.012110200710594654, + 0.004755585920065641, + -0.0032547658775001764, + 0.029434405267238617, + 0.03635451942682266, + -0.01967608742415905, + 0.0017629151698201895, + 0.009271997027099133, + 0.017762690782546997, + 0.020776288583874702, + 0.03463246300816536, + 0.03434545546770096, + -0.019165847450494766, + -0.009885878302156925, + 0.012453017756342888, + 0.004512425046414137, + 0.009559006430208683, + 0.010220722295343876, + 0.032719068229198456, + -0.004384865518659353, + 0.03058244287967682, + -0.017252452671527863, + -0.023614492267370224, + -0.01063529122620821, + -0.013856174424290657, + -0.007243000436574221, + 0.020473334938287735, + 0.009415501728653908, + 0.015944965183734894, + 0.01667843386530876, + -0.015897130593657494, + 0.0005381425726227462, + -0.023215869441628456, + 0.004544314928352833, + 0.004273250699043274, + -0.002128652762621641, + 0.005784036125987768, + -0.012843669392168522, + 0.003342463169246912, + -0.0016214036149904132, + -0.002515318337827921, + -0.012787861749529839, + -0.015586202964186668, + -0.006696885451674461, + -0.005417301785200834, + -0.034983254969120026, + -0.018241040408611298, + -0.013298100791871548, + -0.010778795927762985, + -0.005672421306371689, + 0.003107275115326047, + 0.015004212036728859, + -0.0030674126464873552, + -0.013824285008013248, + -0.0016951491124927998, + 0.011049861088395119, + 0.00370122492313385, + -0.007486160844564438, + 0.013856174424290657, + -0.03096512146294117, + 0.011584017425775528, + -0.037024207413196564, + 0.0007598772644996643, + -0.009064712561666965, + 0.009630759246647358, + -0.00039015334914438426, + 0.018894784152507782, + -0.016088468953967094, + 0.008450831286609173, + 0.008522584103047848, + 0.01698138751089573, + 0.01200655847787857, + -0.025958402082324028, + -0.026851320639252663, + 0.007593789603561163, + 0.018942618742585182, + -0.0376301184296608, + -0.014406275935471058, + -0.011081750504672527, + 0.03096512146294117, + 0.01924557238817215, + 0.005245893262326717, + 3.2948773878160864e-5, + -0.02189243771135807, + 0.00736657390370965, + 0.0012417141115292907, + -0.014932459220290184, + -0.02253023535013199, + 0.009439419023692608, + -0.015036102384328842, + -0.0028621212113648653, + -0.011312952265143394, + 0.007625679485499859, + -0.0006811489583924413, + -0.0012795834336429834, + -0.0014629504876211286, + 0.0002384270483162254, + 0.053511302918195724, + -0.0074024498462677, + 0.028956055641174316, + -0.03625885024666786, + 0.013082844205200672, + -0.022004051133990288, + -0.022689685225486755, + -0.0026109879836440086, + 0.002168515231460333, + 0.0020429487340152264, + -0.002955797826871276, + 0.0009910792578011751, + 0.02170109748840332, + -0.012357347644865513, + 0.0289879459887743, + 0.009901823475956917, + 0.0007225061999633908, + -0.004313113167881966, + 0.041456907987594604, + -0.015737680718302727, + -0.004512425046414137, + 0.0034580642823129892, + -0.01586524024605751, + 0.014844762161374092, + -0.020138490945100784, + 0.022992638871073723, + 0.004867200739681721, + -0.009495226666331291, + -0.013505385257303715, + 0.008379079401493073, + 0.0007205131114460528, + 0.019261518493294716, + 0.03613128885626793, + -0.031044846400618553, + -0.034696243703365326, + -0.022147556766867638, + -0.008235574699938297, + -0.005716269835829735, + -0.03010409325361252, + -0.008275437168776989, + 0.0027804032433778048, + -0.01967608742415905, + -0.006401903461664915, + -0.0028043207712471485, + 0.003673321334645152, + -0.0093836123123765, + 0.02079223468899727, + -0.0296097993850708, + -0.02060089446604252, + 0.005827884655445814, + 0.02339126355946064, + 0.0032687177881598473, + 0.002760472008958459, + -0.014262771233916283, + -0.0027804032433778048, + 0.017236506566405296, + -0.01722056232392788, + 0.009957630187273026, + -0.010451924987137318, + 0.01669437810778618, + 0.0044446587562561035, + -0.03651396930217743, + -0.006892211269587278, + -0.019452856853604317, + 0.041648250073194504, + -0.013186486437916756, + 0.006098948884755373, + -0.01615224964916706, + -0.02865310199558735, + -0.0094075296074152, + 0.002357861725613475, + -0.01712489314377308, + 0.0034261744003742933, + 0.010156942531466484, + 0.0015018164413049817, + -0.01591307483613491, + -0.018241040408611298, + 0.003151123644784093, + 0.00215854961425066, + -0.009008904919028282, + -0.00515022361651063, + -0.00020379658963065594, + 0.0052140033803880215, + -0.0030255571473389864, + -0.018878838047385216, + -0.0004315106198191643, + -0.0076974318362772465, + -0.019086122512817383, + 0.0014260777970775962, + -0.01393589936196804, + 0.022705629467964172, + 0.022753465920686722, + 0.006433793343603611, + -0.0023937379010021687, + -0.02189243771135807, + -0.00796052347868681, + -0.005202044732868671, + 0.004225415643304586, + -0.015083936974406242, + 0.005469122901558876, + 0.011727522127330303, + 0.00625839876011014, + 0.00044147620792500675, + -0.011536181904375553, + -0.009559006430208683, + -0.011073778383433819, + -0.002744527067989111, + 0.01092230062931776, + -0.019309353083372116, + 0.007438326254487038, + 0.0011928826570510864, + 0.09592490643262863, + 4.8956026148516685e-5, + -0.0046399845741689205, + 0.006413862109184265, + 0.004141704645007849, + -0.008275437168776989, + -0.007482174783945084, + 0.009351721964776516, + 0.022163501009345055, + -0.003908509388566017, + -0.015211496502161026, + -0.020441444590687752, + 0.017188671976327896, + 0.005441219080239534, + -0.026931045576930046, + -0.014972321689128876, + 0.00776519812643528, + 0.02329559437930584, + 0.008801620453596115, + 0.009917768649756908, + -0.005752146244049072, + -0.013521330431103706, + -0.0019622272811830044, + 0.029785195365548134, + -0.010810686275362968, + 0.02329559437930584, + 0.004117787349969149, + 0.010890411213040352, + 0.017539462074637413, + 0.025958402082324028, + 0.008809593506157398, + -0.0069719357416033745, + -0.017427846789360046, + -0.0011450478341430426, + -0.004480535164475441, + 0.008713923394680023, + 0.006154756527394056, + 0.004600122570991516, + -0.0020309898536652327, + 0.008865400217473507, + 0.003938406240195036, + -0.01167171448469162, + 0.031044846400618553, + 0.027265889570116997, + -0.020776288583874702, + -0.005524930544197559, + 0.008737840689718723, + -0.002714630216360092, + 0.0027863825671374798, + -0.0033863119315356016, + 0.0007504099048674107, + -0.02613379806280136, + 0.012197897769510746, + 0.0020509210880845785, + 0.0028023275081068277, + 0.0022761437576264143, + 0.013856174424290657, + -0.005190086085349321, + -0.007031729444861412, + 0.0021027422044426203, + -0.03063027746975422, + 0.0003246295091230422, + -0.010133025236427784, + -0.030901342630386353, + -0.00887337327003479, + -0.012859614565968513, + -0.007828977890312672, + -0.017380012199282646, + -0.00034206933923996985, + -0.0022203363478183746, + -0.005612627603113651, + -0.010021410882472992, + 0.003378339344635606, + -0.032575562596321106, + -0.01140862237662077, + 0.02194027230143547, + 0.009391584433615208, + 0.02425229176878929, + 0.022147556766867638, + 0.0011669720988720655, + 0.010045328177511692, + 0.010531648993492126, + -0.013640917837619781, + -0.021908381953835487, + -0.0016602694522589445, + 0.00033534254180267453, + 0.008060179650783539, + -0.032814737409353256, + 0.01836859993636608, + -0.03737499937415123, + -0.020521169528365135, + 0.0008460797253064811, + 0.005345549434423447, + -0.010906356386840343, + 0.0018057673005387187, + -0.005676407366991043, + -0.007127399556338787, + -0.005843829829245806, + 0.007334684021770954, + 0.004380878992378712, + -0.009774263948202133, + 0.014645450748503208, + -0.010140997357666492, + -0.01051570475101471, + 0.0028501625638455153, + 0.00711544044315815, + 0.02555977925658226, + 0.003525830339640379, + -0.015984827652573586, + 0.007159289438277483, + -0.010994053445756435, + -0.009399556554853916, + 0.0158094335347414, + 0.008379079401493073, + -0.01745973713696003, + -0.0010174880735576153, + 0.007047674618661404, + -0.01246896293014288, + -0.012429100461304188, + -0.02527276985347271, + -0.005269811023026705, + 0.00839502364397049, + -0.004050021059811115, + -0.014621532522141933, + 0.005265824496746063, + 0.0057122837752103806, + -0.0013403736520558596, + -0.005385411903262138, + -0.020170381292700768, + -0.007027743384242058, + 0.0067766099236905575, + 0.015506478026509285, + 0.026851320639252663, + -0.026803486049175262, + 0.009535089135169983, + -0.004201498348265886, + -0.015705790370702744, + -0.000928295950870961, + 0.015004212036728859, + -0.03335686773061752, + 0.02227511629462242, + -0.006453724578022957, + 0.007254959084093571, + 0.02213161066174507, + 0.006995853502303362, + 0.024427685886621475, + -0.010021410882472992, + -0.02410878613591194, + 0.01256463211029768, + -0.0061029354110360146, + 0.028924167156219482, + -0.03737499937415123, + 0.0047037648037076, + -0.013050953857600689, + 0.012572605162858963, + 0.012445044703781605, + -0.02372610755264759, + 0.0290357805788517, + -0.01620805636048317, + -0.0027724308893084526, + 0.0036135276313871145, + -0.004556273575872183, + -0.01230154000222683, + -0.009375639259815216, + -0.010906356386840343, + 0.006485614459961653, + 0.014390330761671066, + 0.019213682040572166, + 0.004887131974101067, + -0.008040248416364193, + -0.002507345750927925, + -0.006585270632058382, + 0.02319992333650589, + -0.03463246300816536, + 0.006633105222135782, + 0.0009053750545717776, + 0.0007583823753520846, + -0.0042373742908239365, + -0.021812712773680687, + 0.013664835132658482, + 0.002329957904294133, + -0.01755540631711483, + 0.021143022924661636, + 0.011073778383433819, + 0.005429260432720184, + -0.011400650255382061, + 0.013728614896535873, + -0.007486160844564438, + -0.003119233762845397, + -0.0022422606125473976, + -0.02310425415635109, + 0.010722989216446877, + -0.008267464116215706, + -0.005186100024729967, + -0.014900569804012775, + -0.004982801619917154, + 0.018703443929553032, + 0.00214659096673131, + 0.011002025566995144, + -0.006067059002816677, + 0.0028541486244648695, + -0.007964509539306164, + 0.00839502364397049, + -0.0007703411392867565, + 0.0018894782988354564, + -0.017427846789360046, + -0.023757997900247574, + -0.0148288169875741, + -0.011352814733982086, + -0.0009776257211342454, + -0.031666699796915054, + -0.018241040408611298, + 0.006684926338493824, + 0.01113755814731121, + -0.018831003457307816, + -0.013712669722735882, + 0.00146195397246629, + 0.0043330444023013115, + 0.006541422102600336, + 0.012022503651678562, + 0.016024690121412277, + 0.008458804339170456, + 0.0072629316709935665, + -0.013593082316219807, + -0.015347029082477093, + 0.006242453586310148, + 0.0004487012920435518, + 0.017204618081450462, + 0.011464430019259453, + 0.0021764878183603287, + 0.028860386461019516, + -0.0018276915652677417, + -0.005919568240642548, + 0.019229628145694733, + -0.007386505138128996, + 0.044199444353580475, + 0.005588710308074951, + 0.007302794139832258, + 0.004056000616401434, + 0.006242453586310148, + -0.008474748581647873, + -0.003717169864103198, + -0.024124732241034508, + -0.011289034970104694, + 0.0022482401691377163, + -0.020776288583874702, + 0.0009601858328096569, + -0.008666088804602623, + 0.00892120786011219, + -3.0021379643585533e-5, + -0.00887337327003479, + -0.012979201041162014, + -0.00788877159357071, + 0.017826471477746964, + 0.018384544178843498, + -0.0023937379010021687, + -0.00028551454306580126, + 0.0012038449058309197, + -0.014254799112677574, + -0.025878679007291794, + 0.005632558837532997, + 0.0018715402111411095, + -0.011599961668252945, + -0.013688752427697182, + -0.006728775333613157, + 0.027505064383149147, + -0.028334202244877815, + -0.0077532390132546425, + 0.0057680909521877766, + 0.013417688198387623, + 0.00544919166713953, + 0.012070338241755962, + 0.015163661912083626, + 0.004117787349969149, + 0.0028063138015568256, + 3.005252256116364e-5, + -0.0016483108047395945, + -0.009439419023692608, + 0.0070556472055613995, + -0.009152409620583057, + 0.0001813739800127223, + 0.000974636001046747, + 0.011312952265143394, + -0.010459897108376026, + 0.0001805019855964929, + -0.034791912883520126, + 0.0022761437576264143, + 0.018001865595579147, + -0.01338579785078764, + 0.007007812149822712, + -0.002764458302408457, + -0.003330504521727562, + 0.007733307778835297, + -0.012484907172620296, + -0.0013224355643615127, + 0.012692192569375038, + -0.006043141707777977, + 0.004129745997488499, + 0.02222728170454502, + -0.0038088534492999315, + -0.007633652072399855, + -0.012293567880988121, + -0.0018157329177483916, + -0.021350307390093803, + 0.009048767387866974, + 0.006876266095787287, + 0.023072363808751106, + -0.007462243549525738, + -0.01568187214434147, + 0.014597615227103233, + 7.555172487627715e-5, + 0.004480535164475441, + -0.011344842612743378, + -0.010842576622962952, + -0.005233934614807367, + -0.018145369365811348, + 0.007059633266180754, + 0.020010931417346, + -0.019612306728959084, + 0.008777703158557415, + -0.0022641851101070642, + 0.009630759246647358, + 0.008650143630802631, + 0.0028720868285745382, + 0.008753785863518715, + 0.0005386408302001655, + 0.007007812149822712, + 0.013848202303051949, + 0.006461697164922953, + -0.03472813218832016, + 0.03303796797990799, + 0.009144437499344349, + -0.017395956441760063, + -0.006310219876468182, + -0.009973575361073017, + 0.027377504855394363, + -0.017858359962701797, + -0.012580577284097672, + -0.01030044723302126, + 0.0035437685437500477, + -0.017013277858495712, + -0.007661555893719196, + -0.019644197076559067, + 0.011998586356639862, + 0.010707044042646885, + 0.020138490945100784, + 0.0008540521957911551, + -0.0037929085083305836, + 0.023566657677292824, + 0.013808339834213257, + 0.0034441123716533184, + 0.012947311624884605, + 0.021780822426080704, + 0.004253319464623928, + -0.01085054874420166, + -0.012572605162858963, + 0.023215869441628456, + 0.016271837055683136, + -0.008594335988163948, + 0.0022004051133990288, + -0.019022343680262566, + 0.016710322350263596, + -0.01029247511178255, + -0.014812872745096684, + 0.021717041730880737, + -0.015458643436431885, + -0.006912142504006624, + 0.005943485535681248, + -0.022386731579899788, + -0.0012068345677107573, + -0.009646703489124775, + -0.01784241572022438, + -0.020281994715332985, + -0.012891503982245922, + -0.011974669061601162, + 0.02643675170838833, + -0.0040320828557014465, + -0.0006995853618718684, + -0.0032328416127711535, + -0.001560613396577537, + 0.011799274012446404, + -3.752672273549251e-5, + -0.012309513054788113, + -0.013728614896535873, + 0.007892757654190063, + 0.018942618742585182, + 0.01669437810778618, + 0.01755540631711483, + 0.013345935381948948, + -0.019405022263526917, + 0.00229607499204576, + 0.00889729056507349, + 0.004404796753078699, + 0.003316552611067891, + -0.001961230766028166, + 0.009064712561666965, + -0.022992638871073723, + 0.022896969690918922, + -0.004751599393785, + 0.007270903792232275, + 0.004875172860920429, + -0.0005790015566162765, + 0.005501012783497572, + 0.005788022186607122, + -0.006497573107481003, + -0.018288874998688698, + 0.013162568211555481, + 0.012572605162858963, + 0.027903689071536064, + -0.007884785532951355, + 0.003505899105221033, + 0.002587070455774665, + -0.01832076534628868, + 0.0018336710054427385, + 0.014095349237322807, + 0.008379079401493073, + -0.006397917401045561, + -0.014135211706161499, + 0.005146237555891275, + -0.005393384490162134, + 0.009543061256408691, + -0.004133732058107853, + 0.009782236069440842, + 0.006880252156406641, + 0.004903076682239771, + -0.01717272773385048, + 0.03584428131580353, + -0.000680650700815022, + -0.0012546693906188011, + 0.004456617869436741, + -0.0006407882901839912, + -0.0013921947684139013, + -0.00815186370164156, + 0.004707750864326954, + -0.0158094335347414, + -0.007183206733316183, + 0.025448163971304893, + -0.020808178931474686, + 0.004763558506965637, + 0.008977015502750874, + -0.03048677369952202, + -0.009128492325544357, + -0.005979361943900585, + 0.010451924987137318, + 0.010794741101562977, + 0.003852702211588621, + 0.007011798210442066, + 0.021206803619861603, + -0.007681486662477255, + -0.015163661912083626, + -0.013776449486613274, + 0.01143253967165947, + -0.004201498348265886, + -0.01693355292081833, + -0.012955283746123314, + -0.01225370541214943, + 0.016032662242650986, + -0.002160542644560337, + 0.027744239196181297, + -0.037024207413196564, + 0.004827338270843029, + -0.005915582180023193, + 0.0010115087497979403, + 0.011129585094749928, + -0.007059633266180754, + 0.008841482922434807, + 0.018241040408611298, + 0.000367481610737741, + 0.004887131974101067, + 0.012205870822072029, + -0.017427846789360046, + 0.021254638209939003, + 0.017762690782546997, + 0.004887131974101067, + 0.006421834696084261, + 0.012915421277284622, + -0.014334523119032383, + 0.00501469150185585, + 0.007378532551229, + -0.0051701548509299755, + -0.010332337580621243, + -0.014318578876554966, + -0.011990613304078579, + 0.00629427470266819, + 0.02637297287583351, + -0.023646382614970207, + 0.006449738517403603, + 0.012708136811852455, + -0.018894784152507782, + 0.011942778714001179, + 0.001959237502887845, + 0.006816472392529249, + 0.014924487099051476, + -0.011273089796304703, + 0.019947150722146034, + -0.01222978811711073, + -0.0010683126747608185, + 0.010188832879066467, + -0.0033643876668065786, + 0.007246986497193575, + -0.0015934999100863934, + -0.006011251825839281, + -0.0037590255960822105, + -0.0025093387812376022, + 0.020313885062932968, + -0.00045941429561935365, + -0.006166715174913406, + 0.015418780967593193, + 0.012333430349826813, + 0.009965603239834309, + -0.0008964060107246041, + -0.010308420285582542, + -0.007322725374251604, + 0.007908702827990055, + -0.0035995759535580873, + 0.023694217205047607, + -0.0014908541925251484, + -0.005736201070249081, + 0.012014531530439854, + 0.0033703669905662537, + -0.011496319435536861, + -0.02025010623037815, + -0.004273250699043274, + 0.016120359301567078, + 0.002142604673281312, + 0.002310026902705431, + 0.02170109748840332, + 0.005261838436126709, + 0.011639824137091637, + 0.0005994310486130416, + -0.02257806994020939, + -0.001870543695986271, + -6.471413507824764e-5, + -0.0031531169079244137, + 0.019979041069746017, + 0.02724994532763958, + 0.025065485388040543, + 0.01200655847787857, + 0.03606751188635826, + -0.016805993393063545, + -0.00043101233313791454, + 0.011201337911188602, + 0.0099815484136343, + 0.009343749843537807, + -0.014326550997793674, + -0.032623399049043655, + 0.005552833899855614, + 0.0030175845604389906, + 0.0002668290107976645, + -0.004002186004072428, + -0.01143253967165947, + 0.006429807282984257, + 0.01555431354790926, + -0.0033703669905662537, + 0.015028129331767559, + -0.015259331092238426, + 0.006182660348713398, + -0.0023997172247618437, + -0.0015934999100863934, + 0.016407368704676628, + 0.007246986497193575, + -0.005405343137681484, + -0.002541228896006942, + -0.00627035740762949, + -0.01256463211029768, + -0.001957244472578168, + 0.019883371889591217, + 4.9174021114595234e-5, + 0.001103192218579352, + 0.017571350559592247, + -0.020616840571165085, + -0.006377986166626215, + -0.0188628938049078, + -0.018591828644275665, + -0.00024639954790472984, + 0.0019263511057943106, + -0.031571030616760254, + 0.0017091009067371488, + 0.014916514977812767, + 0.003513871692121029, + 0.0007882792269811034, + -0.024810366332530975, + -0.024124732241034508, + -0.007422381080687046, + 0.0053535220213234425, + 0.017443791031837463, + -0.0012058379361405969, + 0.000543623638805002, + 0.014717202633619308, + -0.016271837055683136, + 0.036290738731622696, + -0.021541647613048553, + -0.014565725810825825, + 0.008538528345525265, + 0.016614653170108795, + 0.0030135982669889927, + -0.006302247289568186, + 0.0142069635912776, + -0.03852303698658943, + -0.01030044723302126, + -0.013282155618071556, + 0.00753798196092248, + 0.0008266467484645545, + -0.008084096945822239, + 0.006437779404222965, + 0.00623448146507144, + -0.0006632108706980944, + -0.013720642775297165, + -0.019707975909113884, + -0.0061348252929747105, + 0.0014808885753154755, + -0.008642170578241348, + 0.016598708927631378, + -0.013425660319626331, + -0.009040795266628265, + -0.007920661009848118, + 0.021063297986984253, + -0.0017878292128443718, + 0.03187398612499237, + -0.0099815484136343, + -0.0094314469024539, + 0.01698138751089573, + 0.005022664088755846, + 0.022657794877886772, + -0.011265117675065994, + -0.008618253283202648, + 0.012285595759749413, + 0.02701077051460743, + 0.0094792814925313, + -0.010308420285582542, + 0.014852735213935375, + 0.008291381411254406, + -0.0030096122063696384, + -0.026564311236143112, + -0.0007279873243533075, + -0.0020000964868813753, + -0.02088790386915207, + 0.009638731367886066, + 0.012955283746123314, + -0.026149742305278778, + 0.017300287261605263, + 0.0021246664691716433, + -0.006892211269587278, + -0.007282862905412912, + 0.015107854269444942, + 0.0058956509456038475, + -0.00024303614918608218, + -0.006334137171506882, + -0.008402996696531773, + 0.0004021120839752257, + -0.011025942862033844, + -0.005851801950484514, + -0.014087376184761524, + 0.008283409290015697, + 0.006808499805629253, + -0.02575111761689186, + 0.005851801950484514, + -0.01089838333427906, + 0.021589482203125954, + -0.009152409620583057, + -0.025527888908982277, + -0.021254638209939003, + -0.001013003522530198, + 0.009303887374699116, + 0.010443951934576035, + -0.009877906180918217, + 0.008020317181944847, + 0.007187192793935537, + 0.006055100355297327, + -0.02503359504044056, + 0.000831629557069391, + 0.0031750411726534367, + -0.024316072463989258, + 0.025910567492246628, + 0.0022123639937490225, + -0.0007259941776283085, + 0.0053774393163621426, + -0.025910567492246628, + 0.0010483814403414726, + -0.015307166613638401, + 0.0017041180981323123, + 0.010172887705266476, + -0.005210017319768667, + -0.010308420285582542, + -1.6131820302689448e-5, + 0.011871026828885078, + 0.0024316071067005396, + -0.0194847472012043, + -0.006940045859664679, + 0.0068842386826872826, + -0.017539462074637413, + 0.00014562236901838332, + -0.011902916245162487, + -0.0288922768086195, + 0.01914990320801735, + 0.0003276192001067102, + -0.01277988962829113, + -0.011767384596168995, + -0.01509190909564495, + -0.006577298045158386, + -0.016550874337553978, + -0.0036155208945274353, + 0.00741440849378705, + -0.00831529963761568, + 0.004313113167881966, + -0.0032806764356791973, + 0.01309878844767809, + 0.015171634033322334, + -0.00035054009640589356, + 0.002748513361439109, + 0.009782236069440842, + 0.00923213455826044, + 0.007430353667587042, + 0.005764104891568422, + -0.01620805636048317, + -0.03287851810455322, + 0.004217443056404591, + -0.0006278330110944808, + -0.020042821764945984, + -0.0006801523850299418, + -0.004364934284240007, + 0.0008650143281556666, + -0.0035756584256887436, + 0.005317645613104105, + -0.007569872308522463, + -0.012931366451084614, + 0.003131192410364747, + 0.01338579785078764, + -0.011591989547014236, + 0.0009920757729560137, + 0.023997172713279724, + 0.0007140354719012976, + -0.009702511131763458, + 0.02444363199174404, + -0.012867586687207222, + -0.007378532551229, + 0.0034401260782033205, + 0.009574951604008675, + -0.004093869589269161, + 0.023662328720092773, + -0.01717272773385048, + -0.020042821764945984, + -0.017906196415424347, + 0.01203047577291727, + 0.004496480338275433, + -0.003896550741046667, + -0.004994760267436504, + 0.01058745663613081, + -0.025910567492246628, + 0.009774263948202133, + 0.007657569367438555, + -0.015299193561077118, + 0.010914328508079052, + -0.0010020413901656866, + 0.02386961318552494, + -0.007019770797342062, + 0.01616022177040577, + 0.0008311312994919717, + 0.008331243880093098, + 0.014677340164780617, + 0.016327643766999245, + 0.02069656364619732, + -0.013003119267523289, + 0.007681486662477255, + -0.00388259906321764, + 0.01986742578446865, + -0.0017409909050911665, + -0.004891118034720421, + -0.022386731579899788, + 0.024475520476698875, + -0.00153071666136384, + -0.011105667799711227, + 0.0002539982961025089, + -0.03979863226413727, + 0.0026608160696923733, + -0.018926672637462616, + -0.012955283746123314, + -0.007239013910293579, + 0.015514451079070568, + 0.01340971514582634, + 0.002692705951631069, + 0.006724788807332516, + -0.019452856853604317, + 0.007474202197045088, + -0.027361560612916946, + 0.005269811023026705, + 0.03225666284561157, + 0.014908541925251484, + 0.014462083578109741, + 0.02619757689535618, + 0.019070178270339966, + 0.016144277527928352, + -0.02772829495370388, + -0.00021749928419012576, + 0.02701077051460743, + 0.007482174783945084, + 0.0034002638421952724, + -0.015434726141393185, + -0.020903849974274635, + -0.01285164151340723, + -0.00334644946269691, + -0.0030116052366793156, + -0.015434726141393185, + -0.013744560070335865, + -0.008068152703344822, + 0.025017650797963142, + -0.006577298045158386, + 0.003105281852185726, + 0.012341402471065521, + 0.004608094692230225, + -0.0004011155106127262, + -0.009846015833318233, + 0.0050186775624752045, + -0.0005057543748989701, + -0.0020768316462635994, + -0.006210563704371452, + -0.0002929887268692255, + 0.0012168001849204302, + 0.003501913044601679, + 0.024634970352053642, + -0.008163821883499622, + 0.01258854940533638, + 0.0141830462962389, + -0.012963256798684597, + -0.04639984667301178, + 0.0007185199647210538, + 0.005086443852633238, + 0.0006577298045158386, + -0.00741440849378705, + -0.025495998561382294, + -0.00048482659622095525, + 0.00887337327003479, + 0.007522037252783775, + 0.004105828702449799, + 0.008554473519325256, + -0.006485614459961653, + -0.011233228258788586, + -0.00656932545825839, + 0.011544154956936836, + 0.01198264118283987, + 0.006007265765219927, + -0.018591828644275665, + 0.0034700229298323393, + 0.007773170247673988, + -0.0020828109700232744, + -0.0016144276596605778, + -0.01169563177973032, + -0.005740187596529722, + -0.010284502059221268, + -0.033101748675107956, + 0.006629119161516428, + 0.009750345721840858, + 0.0071034817956388, + 0.013170541264116764, + -0.020967628806829453, + -0.004647957161068916, + -0.01600874401628971, + -0.020616840571165085, + 0.00711544044315815, + -0.0015416787937283516, + 0.013035008683800697, + 0.022689685225486755, + -0.008227601647377014, + -0.006832417566329241, + 0.010412062518298626, + -0.01529122143983841, + -0.016032662242650986, + -0.010579484514892101, + -0.003531809663400054, + -0.017443791031837463, + -0.007518051192164421, + 0.010531648993492126, + 0.0047795032151043415, + -0.0004118285432923585, + 0.006031183060258627, + -0.009240107610821724, + 0.00807612482458353, + -0.0022402675822377205, + 0.0029956602957099676, + 0.020026875659823418, + -0.011281062848865986, + 0.002901983680203557, + -0.0032308485824614763, + 0.013537275604903698, + -0.005879705771803856, + -0.0024256277829408646, + 0.026755651459097862, + -0.010962163098156452, + -0.006334137171506882, + 0.029019836336374283, + 0.017156781628727913, + -0.005672421306371689, + 0.00896904245018959, + 0.007549941074103117, + -0.004313113167881966, + 0.005098402500152588, + 0.023885557428002357, + -0.007426367606967688, + -0.0016403382178395987, + 0.003946378827095032, + -0.0020050792954862118, + 0.01591307483613491, + -0.018894784152507782, + 0.00434101652354002, + -0.0034182018134742975, + -0.0025910567492246628, + -0.037056099623441696, + -0.004368920344859362, + -0.02334342896938324, + 0.00894512515515089, + -0.01967608742415905, + -0.014151155948638916, + 0.0060909767635166645, + -0.0024216414894908667, + 0.004067959263920784, + 0.018384544178843498, + 0.0050266501493752, + -0.011942778714001179, + -0.010962163098156452, + -0.014717202633619308, + -0.014581670053303242, + 0.006684926338493824, + 0.004113800823688507, + 0.01080271415412426, + 0.01667843386530876, + 0.004651943687349558, + -0.023311538621783257, + -0.004133732058107853, + -0.024634970352053642, + -0.021254638209939003, + 0.00776519812643528, + 0.0003909007937181741, + 0.021047353744506836, + -0.005911595653742552, + -0.013768477365374565, + 0.015370946377515793, + 0.009678593836724758, + 0.000523692462593317, + -0.0015795481158420444, + 0.00624644011259079, + 0.013106761500239372, + 0.0063859582878649235, + -0.004040055442601442, + -0.014318578876554966, + -0.0047795032151043415, + -0.004851255565881729, + -0.008355161175131798, + -0.004560260102152824, + -0.0031531169079244137, + 0.004620053805410862, + 0.001753946184180677, + -0.002945832209661603, + 0.014573697932064533, + 0.0032527728471904993, + 0.014087376184761524, + 0.0007409426034428179, + -0.0005286752711981535, + -0.02801530435681343, + -0.01731623150408268, + -0.01195872388780117, + -0.018145369365811348, + -0.018528049811720848, + 0.02310425415635109, + -0.024172566831111908, + 0.01755540631711483, + -0.027090495452284813, + 0.00010638280946295708, + -0.01645520329475403, + -0.013106761500239372, + 0.005273797083646059, + 0.014501946046948433, + 0.014573697932064533, + -0.0013383805053308606, + 0.02599029242992401, + 0.025719229131937027, + 0.008514611050486565, + -0.016566818580031395, + 0.009909795597195625, + -0.016917608678340912, + 0.012460989877581596, + -0.026452695950865746, + -0.0014489986933767796, + 0.006071045529097319, + -0.004807407036423683, + 0.009080657735466957, + 0.0013254252262413502, + 0.014390330761671066, + 0.007450284902006388, + 0.01167171448469162, + -0.0007344649638980627, + -0.005110361147671938, + -0.028972001746296883, + 0.002754492685198784, + 0.0141830462962389, + -0.01679004728794098, + -0.0184323787689209, + 0.02449146658182144, + 0.017204618081450462, + -0.022004051133990288, + -0.005405343137681484, + -0.0009028836502693594, + 0.025049539282917976, + -0.010738933458924294, + -0.0020569004118442535, + 0.011910888366401196, + -0.010284502059221268, + 0.0035537341609597206, + -0.0016214036149904132, + -0.02575111761689186, + 0.022147556766867638, + 0.025830842554569244, + 0.0055488478392362595, + -0.028956055641174316, + 0.004679847043007612, + -0.023231813684105873, + 0.021876491606235504, + 0.016774103045463562, + 0.019261518493294716, + 0.006346096284687519, + 0.009072684682905674, + -0.00034530815901234746, + 0.02865310199558735, + 0.009048767387866974, + -0.01683788374066353, + -0.003683286951854825, + 0.009861961007118225, + -0.014015624299645424, + -0.014430193230509758, + -0.020010931417346, + -0.02060089446604252, + 0.009104575030505657, + -0.0022542194928973913, + -0.0028282380662858486, + -0.015570258721709251, + -0.021302472800016403, + -0.006936059799045324, + -0.014246826060116291, + 0.017300287261605263, + 0.0061029354110360146, + 0.008650143630802631, + 0.004560260102152824, + 0.001165975583717227, + 0.011902916245162487, + 0.02194027230143547, + -0.0010035362793132663, + -0.010388144291937351, + 0.003641431452706456, + -0.01089838333427906, + 0.01910206861793995, + 0.008889317512512207, + -0.027712348848581314, + -0.005999293178319931, + -0.006314205937087536, + -0.010212750174105167, + 0.017348121851682663, + 0.019086122512817383, + -0.00460410863161087, + 0.008490693755447865, + 0.012963256798684597, + 0.0407872200012207, + -0.0020230174995958805, + 0.012373292818665504, + 0.013481467962265015, + -0.022833188995718956, + 0.0008864403935149312, + -3.973784259869717e-5, + -0.016901662573218346, + 0.009543061256408691, + -0.0005595686379820108, + 0.016550874337553978, + -0.0017180700087919831, + 0.023423153907060623, + 0.007378532551229, + -0.0004285209288354963, + -0.010619346983730793, + 0.00043225803528912365, + 0.005074485205113888, + 0.013840229250490665, + -0.006310219876468182, + 0.010093162767589092, + 0.019213682040572166, + -0.009319831617176533, + -0.017475681379437447, + -0.014350468292832375, + -0.007980454713106155, + -0.010603401809930801, + 0.0099815484136343, + 0.004153663292527199, + 0.0022601988166570663, + -0.0008181760204024613, + 0.0034281674306839705, + -0.0008769730920903385, + 0.0005675411084666848, + 0.01639142446219921, + 0.018065644428133965, + -0.013441605493426323, + -0.0012387244496494532, + 0.005580737721174955, + 0.011759411543607712, + -0.0011490340111777186, + -0.004325071815401316, + 0.01082663144916296, + -0.002937859855592251, + -0.023455044254660606, + -0.0076535833068192005, + 0.003135178703814745, + -0.0015556305879727006, + -0.0004895602469332516, + 0.004456617869436741, + -0.017188671976327896, + 0.0005565789178945124, + -0.008538528345525265, + -0.021445978432893753, + -0.00015334571071434766, + 0.0028043207712471485, + 0.011871026828885078, + -0.02069656364619732, + 0.014557752758264542, + 0.010428006760776043, + 0.02165326289832592, + 0.00026084965793415904, + 0.010380172170698643, + 0.003994213882833719, + -0.005385411903262138, + -0.0015297200297936797, + 0.011368759907782078, + -0.0012696178164333105, + -0.016550874337553978, + 0.005640531424432993, + 0.002519304398447275, + 0.001943292561918497, + -0.004313113167881966, + 0.02117491327226162, + -0.0016692385543137789, + 0.019548527896404266, + 0.005062526557594538, + -0.0008874369668774307, + -0.010938245803117752, + 0.0290836151689291, + -0.01832076534628868, + 0.014852735213935375, + 0.017906196415424347, + 0.006844376213848591, + 0.004412768874317408, + 0.0033324977848678827, + -0.004452631343156099, + 0.006218536291271448, + -0.00971845630556345, + 0.018352653831243515, + 0.00043549685506150126, + -0.011225255206227303, + -0.0032228759955614805, + 0.027839908376336098, + -0.007466229610145092, + 0.0010643263813108206, + 0.007442312315106392, + -0.01664654351770878, + 0.005612627603113651, + -0.020122546702623367, + 0.026946991682052612, + 0.010834603570401669, + -0.00542527437210083, + -0.018480215221643448, + 0.000875976518727839, + 0.000676664465572685, + 0.014071431942284107, + -0.023279648274183273, + 0.0189585629850626, + 0.014047513715922832, + -0.002156556583940983, + -0.01914990320801735, + -0.01664654351770878, + -0.008594335988163948, + 0.007824991829693317, + 0.007406436372548342, + 0.025735173374414444, + 0.01693355292081833, + -0.006043141707777977, + 0.009846015833318233, + -0.029099561274051666, + -0.012572605162858963, + -0.001992124132812023, + -0.011894944123923779, + -0.0015875205863267183, + 0.007868840359151363, + -0.006700871512293816, + -0.004923007916659117, + -0.011241200380027294, + 0.02377394214272499, + 0.0020050792954862118, + 0.0287966076284647, + -0.016144277527928352, + -0.023997172713279724, + -0.001475905766710639, + -0.0020509210880845785, + -0.0018177259480580688, + -0.0026368985418230295, + -0.003852702211588621, + 0.0008410969167016447, + 0.005142251029610634, + -0.010021410882472992, + -0.019277462735772133, + 0.005696338601410389, + 0.004448645282536745, + -0.023072363808751106, + -0.01053962204605341, + 0.0076535833068192005, + 0.00256913248449564, + 0.007302794139832258, + 0.033069856464862823, + -0.003731121774762869, + 0.021158969029784203, + -0.015283249318599701, + 0.0005391391459852457, + -0.01174346636980772, + 0.011767384596168995, + -0.004867200739681721, + -0.015753624960780144, + 0.028047192841768265, + -0.0033743532840162516, + 0.0022482401691377163, + 0.021206803619861603, + -0.004085897468030453, + -0.020951684564352036, + 0.026101907715201378, + -0.020457390695810318, + 0.019468802958726883, + -0.005911595653742552, + -0.006712830159813166, + 0.011855081655085087, + 0.0006676954217255116, + 0.010109107941389084, + -0.012684219516813755, + -0.0032746971119195223, + -0.015299193561077118, + 0.022546179592609406, + -0.0007663549040444195, + 0.03632263094186783, + -0.011416594497859478, + 0.0047276820987463, + -0.018288874998688698, + -0.009893850423395634, + -0.01032436452805996, + 0.014366413466632366, + -0.007757225539535284, + -0.013816311955451965, + -0.004113800823688507, + -0.019373131915926933, + -0.004556273575872183, + -0.03134780004620552, + 0.02420445717871189, + -0.0045841773971915245, + 0.007924648001790047, + 0.012197897769510746, + 0.027281835675239563, + -0.009104575030505657, + -0.002866107504814863, + -0.01193480659276247, + 0.0008306330419145525, + 0.008817565627396107, + -0.008171794936060905, + -0.01822509430348873, + 0.012237760238349438, + 0.01507596392184496, + -0.006445751991122961, + -0.0055608064867556095, + -0.006238467525690794, + -0.013880091719329357, + 0.01198264118283987, + 0.0053774393163621426, + -0.023997172713279724, + 0.01085054874420166, + 0.009008904919028282, + -0.026787541806697845, + -0.015012184157967567, + -0.031810205429792404, + -0.003705211216583848, + -0.0003794403455685824, + 0.01193480659276247, + 0.003326518228277564, + 0.013186486437916756, + -0.01203047577291727, + -0.01502015721052885, + -0.013720642775297165, + 0.0011988620972260833, + 0.01504407450556755, + 0.06004873663187027, + 0.023694217205047607, + 0.004958884324878454, + -0.013226347975432873, + 0.020186325535178185, + -0.025735173374414444, + -0.005935513414442539, + -0.008705951273441315, + -0.015657955780625343, + -0.019994985312223434, + 0.010148970410227776, + 0.0037968948017805815, + 0.011791301891207695, + 0.008179767057299614, + -0.019803646951913834, + 0.011751439422369003, + 0.005931526888161898, + -0.0033763463143259287, + -0.0055727651342749596, + 0.013003119267523289, + -0.00011765640374505892, + 0.004923007916659117, + -0.013800366781651974, + -0.015586202964186668, + 0.012596522457897663, + 0.005831870716065168, + 0.004783489275723696, + -0.010946218855679035, + -5.437482104753144e-5, + -0.004225415643304586, + 0.028286367654800415, + -0.012596522457897663, + -0.03179426118731499, + 0.009399556554853916, + -0.00349593348801136, + 0.02536843903362751, + 0.005764104891568422, + 0.018017809838056564, + 0.00459214998409152, + -0.0034062431659549475, + -0.030199764296412468, + -0.0029478254728019238, + 0.012213842943310738, + -0.018400490283966064, + -0.015036102384328842, + -0.0003759523679036647, + 0.002008069073781371, + 0.0014320571208372712, + 0.0035796447191387415, + 0.00030096122645772994, + 0.008004372008144855, + -0.0021665222011506557, + -0.016582762822508812, + -0.00865811575204134, + -0.009830070659518242, + 0.00837110634893179, + 0.022657794877886772, + -0.02233889512717724, + 0.0013702703872695565, + -0.002860128181055188, + 8.751045243116096e-5, + 0.009415501728653908, + 0.009327804669737816, + 0.029864918440580368, + -0.012181953527033329, + 0.012652330100536346, + 0.006609187927097082, + 0.008817565627396107, + -0.007609734311699867, + -0.0003096811124123633, + 0.027760183438658714, + -0.012740027159452438, + -0.014844762161374092, + -0.026691870763897896, + -0.02339126355946064, + -0.012524769641458988, + -0.011312952265143394, + -0.021876491606235504, + -0.009670620784163475, + 0.01116147544234991, + 0.0006467676139436662, + -0.017443791031837463, + 0.012636384926736355, + -0.00012207863619551063, + -0.0100293830037117, + -0.005552833899855614, + -0.031140517443418503, + -0.007023756857961416, + 0.010172887705266476, + 0.0012865593889728189, + -0.02286507934331894, + 0.000535651168320328, + -0.025974348187446594, + 0.008187739178538322, + 0.01063529122620821, + -0.012500852346420288, + -0.015745652839541435, + 0.0017997879767790437, + 0.008522584103047848, + 0.022099722176790237, + 0.001943292561918497, + 0.0030415020883083344, + 0.00515022361651063, + 0.018352653831243515, + -0.022195391356945038, + -0.037885237485170364, + 0.0014828817220404744, + -0.00541331572458148, + -0.005405343137681484, + 0.020871959626674652, + -0.011855081655085087, + 0.010858520865440369, + 0.005337576847523451, + 0.016598708927631378, + 0.010388144291937351, + 0.014773010276257992, + 0.009846015833318233, + -0.0003590108535718173, + 0.010571511462330818, + 0.016917608678340912, + -0.020951684564352036, + 0.005277783609926701, + 0.026612145826220512, + 0.0072748903185129166, + 0.008881345391273499, + -0.005612627603113651, + 0.009000932797789574, + 0.017523515969514847, + -0.016614653170108795, + -0.019548527896404266, + 0.01639142446219921, + -0.0012496865820139647, + -0.006370013579726219, + 0.001957244472578168, + 0.009439419023692608, + 0.0005600668955594301, + -0.0017858360661193728, + 0.000723004515748471, + 0.02739344909787178, + -0.018145369365811348, + -0.008713923394680023, + 0.019899316132068634, + 0.018703443929553032, + 0.014597615227103233, + -0.01203047577291727, + 0.008187739178538322, + -0.02305641956627369, + 0.016327643766999245, + 0.008937153033912182, + -0.00499077420681715, + -0.016901662573218346, + -0.01620008423924446, + 0.008024303242564201, + 0.0012367313029244542, + -0.005724242422729731, + 0.0035397822503000498, + 0.008514611050486565, + 0.02599029242992401, + -2.4322300305357203e-5, + 0.00889729056507349, + -0.01536297332495451, + -0.004532356280833483, + 0.007553927134722471, + 0.02251429110765457, + 0.006098948884755373, + -0.005429260432720184, + -0.0007030732813291252, + 0.01586524024605751, + -0.0038028741255402565, + -0.021717041730880737, + -0.012189925648272038, + 0.0050027328543365, + 0.0003864162717945874, + 0.0029896809719502926, + -0.0010095156030729413, + 0.000412825116654858, + -0.0031869998201727867, + -0.007533995900303125, + -0.011791301891207695, + -0.002734561450779438, + 0.019373131915926933, + 0.004325071815401316, + 0.009710483253002167, + -0.009543061256408691, + -0.024921979755163193, + 0.01447005569934845, + -0.0094075296074152, + -0.0010374193079769611, + 0.005481081549078226, + -0.00832327175885439, + 0.009144437499344349, + 0.014055486768484116, + -0.01205439306795597, + -0.0201066005975008, + -0.017236506566405296, + 0.023518823087215424, + 0.006126852706074715, + -0.0035636997781693935, + -0.03683286905288696, + 0.004998746328055859, + 0.0019014370627701283, + -0.004476549103856087, + -0.021398143842816353, + -0.00038566882722079754 + ], + "bf1b101e-c592-487a-a555-ab3968da1332": [ + -0.00806632824242115, + -0.026589006185531616, + -0.013809852302074432, + -0.004544778261333704, + -0.05479127913713455, + -0.019493626430630684, + 0.027903519570827484, + 0.0181940495967865, + -0.02361641451716423, + 0.018911058083176613, + 0.019493626430630684, + 0.02678319625556469, + 0.008872960694134235, + -0.029561597853899002, + 0.018627241253852844, + 0.011808207258582115, + -0.02097245305776596, + 0.02569274790585041, + -0.008312799036502838, + -0.020867887884378433, + 0.054343149065971375, + -0.020374946296215057, + -0.04164615273475647, + 0.03946525603532791, + 0.0066211107186973095, + -0.0225259680300951, + 0.004036898259073496, + 0.011576673947274685, + -0.02735082618892193, + -0.002136083086952567, + 0.009485404007136822, + 0.013197408989071846, + 0.007155131548643112, + -0.010262161493301392, + 0.01687953807413578, + -0.03456570953130722, + -0.004869672004133463, + 0.01779073476791382, + -0.00898499321192503, + 0.0041265240870416164, + -0.03450595960021019, + 0.0390470027923584, + 0.00015544485358987004, + 0.02228696458041668, + -0.041735775768756866, + 0.021614771336317062, + 0.010897011496126652, + -0.02050938457250595, + 0.010419006459414959, + -0.011651362292468548, + 0.01132273394614458, + -0.01154679898172617, + 0.01356338057667017, + -0.004279634915292263, + 0.02343716286122799, + -0.01212936732918024, + -0.009866314008831978, + 0.07271645218133926, + 0.0032433359883725643, + -0.06112483888864517, + 0.0030267401598393917, + -0.000672660768032074, + 0.037702612578868866, + -0.0008402424864470959, + -0.011830613948404789, + -0.022376591339707375, + 0.02488611452281475, + -0.006299951579421759, + -0.04340879246592522, + 0.002313467673957348, + 0.012846373952925205, + 0.0411083959043026, + -0.036149099469184875, + -0.006453062407672405, + -0.021405644714832306, + 0.009515278972685337, + 0.0343267060816288, + -0.00511240866035223, + 0.002134215785190463, + 0.00806632824242115, + -0.02263053134083748, + 0.017252979800105095, + 0.01356338057667017, + 0.011696175672113895, + 0.0653073787689209, + 0.02033013291656971, + -0.032235436141490936, + -0.03853912279009819, + -0.005612819921225309, + -0.03785198926925659, + 7.667212776141241e-5, + 0.016894474625587463, + 0.0044402144849300385, + 0.01837330311536789, + -0.017775796353816986, + 0.008828147314488888, + 0.04550006240606308, + -0.002460976829752326, + 0.0027615970466285944, + -0.01744716800749302, + 0.014280388131737709, + 0.046515822410583496, + -0.04331916943192482, + 0.007954295724630356, + 0.02385541796684265, + -0.005332739092409611, + -0.0043804640881717205, + 0.010956762358546257, + -0.0411083959043026, + 0.05470165237784386, + 0.022272028028964996, + -0.039017125964164734, + 0.003187319729477167, + 0.0018018533010035753, + -0.03985363617539406, + -0.05915306881070137, + -0.009089556522667408, + -0.05144524574279785, + 0.008917773142457008, + -0.040988896042108536, + 0.030263666063547134, + 0.026633819565176964, + 0.012682059779763222, + 0.014123542234301567, + -0.00852939486503601, + 0.0068227690644562244, + -0.012204055674374104, + 0.004701623693108559, + 0.016894474625587463, + 0.03346032276749611, + -0.036716729402542114, + -0.02327284961938858, + -0.0036429178435355425, + -0.006707002408802509, + -0.010814853943884373, + 0.02776907943189144, + -0.0005713648861274123, + 0.05951157584786415, + -0.02954665943980217, + 0.03662710264325142, + -0.03325119614601135, + -0.05957132577896118, + -0.018298614770174026, + 0.01710360310971737, + 0.004888344090431929, + 0.006740611977875233, + -0.06506837904453278, + 0.043856922537088394, + -0.019911879673600197, + 0.006113230716437101, + -0.0225707795470953, + -0.006426921579986811, + 0.033370696008205414, + 0.009657186456024647, + 0.002724252874031663, + 0.021734273061156273, + -0.010127722285687923, + 0.00904474314302206, + 0.021241329610347748, + 0.018358364701271057, + 0.018388239666819572, + -0.071222685277462, + 0.007595791947096586, + -0.03489433601498604, + 0.034416332840919495, + 0.0054634432308375835, + 0.054582152515649796, + 0.036656979471445084, + -0.03208605945110321, + 0.02095751464366913, + 0.024393172934651375, + -0.013145126402378082, + 0.013832258060574532, + 0.00761819863691926, + 0.008073796518146992, + -0.007887075655162334, + 0.050997115671634674, + 0.03543209284543991, + 0.035222966223955154, + -0.05652404576539993, + -0.00414893077686429, + -0.01785048469901085, + -0.006322357803583145, + -0.014623953960835934, + -0.0066248453222215176, + 0.04257228597998619, + -0.004817390348762274, + -0.006639782804995775, + -0.014213168062269688, + -0.009724406525492668, + -0.014728517271578312, + -0.009575029835104942, + -0.012487870641052723, + 0.03486446291208267, + -0.03024872951209545, + -0.038688499480485916, + -0.012368368916213512, + 0.008417362347245216, + 0.03289269283413887, + 0.02137576788663864, + -0.004145196173340082, + -0.042422909289598465, + -0.04675482586026192, + 0.05326763913035393, + -0.052729882299900055, + 0.028441274538636208, + -0.013765038922429085, + -0.015639713034033775, + 0.02130107954144478, + -0.03202630952000618, + 0.01027709897607565, + -0.030861172825098038, + 0.01301815640181303, + 0.020763324573636055, + -0.01843305304646492, + 0.009799094870686531, + 0.005269254092127085, + 0.030398106202483177, + 0.004145196173340082, + -0.003155577229335904, + -0.015684526413679123, + 0.021689459681510925, + -0.009881251491606236, + -0.01109120063483715, + -0.05565766245126724, + -0.026753321290016174, + -0.008648895658552647, + 0.03898725286126137, + -0.05275975912809372, + 0.010209879837930202, + 0.03567109256982803, + -0.0069497390650212765, + 0.010336849838495255, + -0.015699464827775955, + -0.00893271155655384, + -0.0021939664147794247, + 0.008387487381696701, + 0.025782372802495956, + -4.137027281103656e-5, + -0.026992322877049446, + 0.0076555428095161915, + 0.008372549898922443, + 0.010956762358546257, + 0.009560092352330685, + 0.02412429451942444, + 0.011890364810824394, + -0.004328182432800531, + 0.06399286538362503, + 0.020763324573636055, + -0.039315879344940186, + -0.0033516339026391506, + 0.012540152296423912, + 0.0016655473737046123, + -0.014205699786543846, + -0.006146840751171112, + 0.04541043937206268, + 0.050369735807180405, + -0.017820609733462334, + -0.006785424891859293, + -0.03352007269859314, + 0.00909702479839325, + 3.3055373933166265e-5, + 0.04538056254386902, + -0.0036559884902089834, + 0.04463367909193039, + -0.022197339683771133, + 0.039644505828619, + -0.05219212919473648, + -0.01552021224051714, + 0.04735233262181282, + -0.03110017441213131, + 0.0025823451578617096, + -0.0127642173320055, + -0.008708646520972252, + -0.0019941753707826138, + 0.004817390348762274, + -0.008633958175778389, + -0.002683174330741167, + 0.02954665943980217, + 0.01738741807639599, + -0.0035308855585753918, + 0.010493694804608822, + -0.010060503147542477, + 0.023825543001294136, + 0.00990365818142891, + -0.007909482344985008, + -0.01659572310745716, + 0.015101958066225052, + -0.02569274790585041, + -0.006972145289182663, + -0.009507810696959496, + -0.010493694804608822, + 0.009291214868426323, + 0.021047141402959824, + 0.02107701636850834, + -0.0005405559786595404, + -0.02142058126628399, + 0.014541796408593655, + 0.01964300125837326, + 0.023003971204161644, + -0.007954295724630356, + 0.005892900750041008, + 0.009552623145282269, + -0.040361516177654266, + 0.018223926424980164, + -0.030383167788386345, + 0.03250431269407272, + 0.004649341572076082, + -0.05819706246256828, + 0.015109427273273468, + 0.0403316393494606, + -0.006172981578856707, + -0.02551349624991417, + -0.012144304811954498, + 0.0074538844637572765, + 0.011360078118741512, + 0.012398244813084602, + 0.0030136697459965944, + -0.012472933158278465, + -0.01888118125498295, + 0.013608193956315517, + 0.016745099797844887, + -0.08938686549663544, + 0.02143551968038082, + 0.03399807959794998, + -0.04678470268845558, + 0.048995472490787506, + -0.014145948924124241, + -0.05873481556773186, + -0.008947649039328098, + -0.02412429451942444, + -0.02926284447312355, + -0.022242151200771332, + -0.004201212432235479, + 0.0030584826599806547, + -0.039644505828619, + -0.02700726129114628, + -0.023870354518294334, + -0.025140054523944855, + -0.03238481283187866, + -0.0336395762860775, + -0.0029333799611777067, + 0.00026164218434132636, + -0.0010241622803732753, + 0.018283676356077194, + 0.0010503031080588698, + 0.009858844801783562, + 0.02488611452281475, + -0.022824719548225403, + -0.011009044013917446, + 0.0008747857646085322, + -0.004231087863445282, + 0.03716485947370529, + 0.003965944517403841, + 0.050668489187955856, + -0.015251334756612778, + 0.00973187480121851, + -0.013944290578365326, + 0.01451938971877098, + -0.00776010612025857, + -0.000840709253679961, + -0.03202630952000618, + -0.029352471232414246, + -0.024318484589457512, + -0.01027709897607565, + 0.014086198061704636, + -0.009612374007701874, + -0.011935177259147167, + 0.012017334811389446, + 0.009642248973250389, + -0.03145867958664894, + 0.003521549515426159, + 0.021450456231832504, + -0.020494448021054268, + -0.031876932829618454, + -0.02903877943754196, + 0.04048101603984833, + -0.0035066120326519012, + -0.015714401379227638, + 0.03172755613923073, + 0.0029595207888633013, + 0.017775796353816986, + 0.0015749878948554397, + -0.01623721979558468, + 0.031936682760715485, + 0.03468520939350128, + -0.010023158974945545, + 0.0087534599006176, + 0.0008995262323878706, + -0.00721488194540143, + -0.01923968642950058, + 0.047023702412843704, + -0.03632834926247597, + 0.009694530628621578, + -0.030099352821707726, + 0.01566958799958229, + -0.005127346143126488, + 0.002197700785472989, + 0.010150128975510597, + -0.026081126183271408, + 0.0017103602876886725, + 0.0006595903541892767, + -0.021106891334056854, + 0.01203974150121212, + 0.008447237312793732, + -0.009425653144717216, + 0.01710360310971737, + -0.027201449498534203, + 0.014183293096721172, + -0.011046388186514378, + -0.0014638891443610191, + -0.003135038074105978, + 0.027052072808146477, + 0.005422364920377731, + 0.06088583916425705, + -0.011628955602645874, + 0.019374124705791473, + 0.04786021262407303, + -0.026140877977013588, + -0.01528867892920971, + 0.03184705600142479, + 0.0605870857834816, + -0.007349320687353611, + 0.02379566617310047, + -0.020315196365118027, + 0.0349242128431797, + 0.022735094651579857, + -0.002010980388149619, + -0.03582046926021576, + -0.025259556248784065, + 0.00907461903989315, + 0.04039138928055763, + -0.002658900571987033, + -0.007065505720674992, + -0.02851596288383007, + -0.009657186456024647, + 0.012375838123261929, + -0.008858023211359978, + -0.025916812941432, + -0.016401533037424088, + 0.014101136475801468, + 0.02230190299451351, + -0.003992085345089436, + -0.013384128920733929, + -0.05473152920603752, + -0.030831297859549522, + -0.03154830262064934, + 0.02672344446182251, + 0.008096203207969666, + -0.023885292932391167, + -0.01658078469336033, + 0.021555019542574883, + -0.058436062186956406, + 0.01889611966907978, + -0.00970946904271841, + -0.012883718125522137, + -0.006692064460366964, + -0.014586609788239002, + 0.005582944490015507, + -0.03862874582409859, + -0.0175069198012352, + -0.003416985971853137, + 0.013936822302639484, + -0.011718581430613995, + 0.021465394645929337, + -0.027694392949342728, + -0.006542688235640526, + 0.03480470925569534, + 0.0034113845322281122, + -0.0026047516148537397, + -0.009201589040458202, + 0.006692064460366964, + -0.05506015568971634, + 0.0031537101604044437, + -0.017536794766783714, + -0.00895511731505394, + 0.011009044013917446, + 0.005048923660069704, + 0.014713579788804054, + -0.025095241144299507, + -0.021390706300735474, + -0.03444620594382286, + -0.0030528809875249863, + -0.006135637406259775, + 0.01442976389080286, + -0.03051760606467724, + 0.000967212428804487, + -0.03731423616409302, + 0.0061692469753324986, + -0.01859736628830433, + 0.05879456549882889, + -0.006154309492558241, + 0.005553069058805704, + 0.01740235462784767, + -0.009014868177473545, + -0.04313991591334343, + -0.0015731205930933356, + -0.027634641155600548, + -0.045022059231996536, + -0.008566739037632942, + 0.022047962993383408, + -0.019792377948760986, + 0.013720226474106312, + 0.018911058083176613, + 0.00037950952537357807, + 0.013055500574409962, + 0.0012855710228905082, + -0.030263666063547134, + -0.023138411343097687, + -0.02304878458380699, + -0.029531722888350487, + -0.004593325778841972, + -0.003095826832577586, + 0.0002607085625641048, + -0.00748749403283, + 0.011076263152062893, + -0.025334244593977928, + 0.0006871315999887884, + 0.03163792937994003, + -0.0018130565294995904, + -0.0012781021650880575, + 0.016685348004102707, + -0.009261338971555233, + -0.006721939891576767, + -0.030622171238064766, + -0.009328559041023254, + 0.014967519789934158, + -0.004089179914444685, + 0.025364119559526443, + -0.033908452838659286, + -0.009701999835669994, + 0.014086198061704636, + -0.014168355613946915, + 0.008327736519277096, + 0.034177329391241074, + -0.018866244703531265, + 0.01704385131597519, + 0.02615581452846527, + 0.004791249521076679, + 0.040510889142751694, + -0.02062888629734516, + 0.009649718180298805, + -0.007005754858255386, + -0.027171574532985687, + -0.012405713088810444, + 0.039823759347200394, + -0.0011651362292468548, + 0.011337671428918839, + -0.00046983559150248766, + 0.009343496523797512, + -0.043528296053409576, + 0.031070299446582794, + -0.015594900585711002, + 0.002882965374737978, + 0.020524322986602783, + -0.04003288596868515, + 0.0032265312038362026, + -0.020882826298475266, + -0.022675342857837677, + -0.019628064706921577, + -0.009634780697524548, + 0.021211454644799232, + 0.031070299446582794, + 0.005362614057958126, + -0.010807385668158531, + -0.0008621821179986, + -0.012480401434004307, + 0.034237079322338104, + -0.0037941616028547287, + 0.007054302375763655, + 0.021330956369638443, + 0.003293750574812293, + 0.017671233043074608, + 0.02056913636624813, + -0.02775414288043976, + 0.025035491213202477, + -0.005291660316288471, + 0.019732628017663956, + -0.021749209612607956, + -0.024915989488363266, + 0.03346032276749611, + -0.04493243247270584, + 0.012405713088810444, + -0.00884308572858572, + 0.0015544486232101917, + 0.022197339683771133, + -0.023422226309776306, + 0.003880053060129285, + 0.013354253955185413, + 0.0497722290456295, + 0.0025524699594825506, + -0.0005326203536242247, + 0.0043804640881717205, + 0.006789159029722214, + -0.02464711293578148, + 0.010613196529448032, + 0.0028138787019997835, + 0.011300328187644482, + -0.007991639897227287, + -0.012719403952360153, + 0.026170752942562103, + 0.03408770263195038, + -0.009933533146977425, + -0.017775796353816986, + 0.0063933115452528, + 0.02770932950079441, + -0.017536794766783714, + 0.012218993157148361, + -0.015228928066790104, + 0.025782372802495956, + 0.001398536958731711, + 0.004268431570380926, + 0.01986706629395485, + 0.013645538128912449, + 0.029113467782735825, + 0.003936069086194038, + 0.010807385668158531, + 0.040809642523527145, + -0.0013210478937253356, + -0.004918219521641731, + 0.016864599660038948, + -0.04003288596868515, + 0.061722345650196075, + -0.00884308572858572, + 0.02500561624765396, + 0.012390775606036186, + -0.0037624191027134657, + -0.016461282968521118, + -0.02575249783694744, + -0.008835616521537304, + 0.022257089614868164, + -0.012353431433439255, + 0.02177908457815647, + -0.02183883637189865, + 0.02436329796910286, + 0.0013191807083785534, + 0.011882895603775978, + -0.0024647112004458904, + -0.006109496578574181, + -0.008043921552598476, + -0.021450456231832504, + 0.017716046422719955, + -0.008850554004311562, + 0.044723305851221085, + -0.015057145617902279, + 0.02718651294708252, + -0.02702219784259796, + 0.026454567909240723, + 0.03232506290078163, + 0.03178730607032776, + -0.028784839436411858, + 0.011905302293598652, + 0.01722310297191143, + 0.02021063305437565, + 0.0050227828323841095, + -0.02637987956404686, + 0.0035999722313135862, + -0.014579140581190586, + -0.009238933213055134, + -0.005175893660634756, + 0.024662049487233162, + -0.02321309968829155, + 0.004372995346784592, + 0.014355075545608997, + 0.00907461903989315, + -0.004806187003850937, + 0.01970275305211544, + -0.0043207136914134026, + 0.02385541796684265, + 0.03722460940480232, + 0.00011868424917338416, + 0.02131601795554161, + 0.014773329719901085, + 0.0026570335030555725, + -0.0029184422455728054, + -0.0011520658154040575, + 0.011389954015612602, + -0.004705357830971479, + 0.004780046176165342, + -0.005482115317136049, + -0.024751676246523857, + -0.004212415777146816, + -0.02960641123354435, + 0.01209949143230915, + 0.00021857974934391677, + -0.011270452290773392, + -0.016267094761133194, + 0.03241468593478203, + -0.010874604806303978, + -0.001883076736703515, + 0.014952581375837326, + 0.0022891939152032137, + -0.0029576534871011972, + 0.007924419827759266, + 0.0005923709250055254, + 0.00032349335378967226, + -0.004787514917552471, + -0.014937643893063068, + 0.03997313603758812, + -0.022854596376419067, + -0.05063861235976219, + -0.014713579788804054, + 0.004918219521641731, + -0.019911879673600197, + 0.021853772923350334, + 0.024497736245393753, + -0.0205541979521513, + -0.004175071604549885, + 0.016431408002972603, + 0.007278366945683956, + 0.018343426287174225, + 0.005015314090996981, + 0.004365526605397463, + 0.017536794766783714, + 0.017835546284914017, + -0.0008290392579510808, + -0.012256337329745293, + 0.0020632620435208082, + -0.005332739092409611, + 0.012353431433439255, + -0.035342466086149216, + 0.01710360310971737, + 0.003585034515708685, + -0.029815537855029106, + -0.03847937285900116, + 0.012443057261407375, + 0.026872821152210236, + 0.0052879261784255505, + -0.0039883507415652275, + -0.006150574889034033, + 0.04143702611327171, + 0.010023158974945545, + -0.008992461487650871, + 0.005239378660917282, + 0.007416540291160345, + -0.013458817265927792, + -0.0038221697323024273, + 0.021495269611477852, + 0.02528943121433258, + -0.030950797721743584, + 0.01820898801088333, + -0.0020464572589844465, + 0.01901562139391899, + -0.01203974150121212, + 0.03313169628381729, + -0.005090002436190844, + 0.025543371215462685, + 0.009843907319009304, + 0.006833971943706274, + 0.022316839545965195, + 0.05096724256873131, + -0.017252979800105095, + 0.013443879783153534, + 0.017118539661169052, + -0.014773329719901085, + 0.014586609788239002, + 0.018642179667949677, + 0.01861230470240116, + -0.02137576788663864, + 0.030891047790646553, + 0.004208681173622608, + -0.009253870695829391, + 0.01774592138826847, + -0.0016076639294624329, + -0.019389061257243156, + 0.007916951552033424, + -0.007924419827759266, + 0.0049630324356257915, + 0.035611342638731, + -0.0048958128318190575, + 0.0269475094974041, + 0.024617237970232964, + 0.05171412229537964, + 0.024273671209812164, + -0.009343496523797512, + -0.01354097481817007, + 0.01560983806848526, + -0.022884471341967583, + -0.06943017244338989, + -0.006087089888751507, + -0.0025935485027730465, + -0.059421949088573456, + 0.013182470574975014, + -0.03626859933137894, + 0.010239754803478718, + -0.01431773230433464, + 0.02448279783129692, + -0.01590859144926071, + -0.015415648929774761, + 5.9371301176724955e-5, + -0.007569651119410992, + 0.0067480807192623615, + 0.010553445667028427, + -0.0026159549597650766, + 0.02950184792280197, + -0.023974919691681862, + 0.005280456971377134, + -0.026350004598498344, + -0.02345210127532482, + 0.021629707887768745, + 0.012980813160538673, + -0.03411757946014404, + 0.027096886187791824, + 0.05721117556095123, + -0.0023638822603970766, + 0.008402424864470959, + -0.0020072460174560547, + 0.010956762358546257, + 0.0031966557726264, + 0.001335051958449185, + -0.00446635577827692, + 0.0013117118505761027, + -0.011785801500082016, + 0.023601477965712547, + -0.0009480735752731562, + 0.006102027837187052, + -0.006792893633246422, + -0.01053850818425417, + 0.018238862976431847, + 0.0057248519733548164, + 0.017925173044204712, + 0.009231464006006718, + 0.01670028641819954, + 0.006158043630421162, + -0.010710290633141994, + -0.013354253955185413, + -0.013847196474671364, + -0.012652184814214706, + 0.006662189494818449, + 0.016849663108587265, + 0.031369052827358246, + 0.005000376142561436, + 0.000978415715508163, + 0.023989856243133545, + 0.02200314961373806, + 0.029860351234674454, + -0.0316678062081337, + -0.013981634750962257, + -0.03307194262742996, + 0.03381882607936859, + -0.0005835017072968185, + -0.044663555920124054, + -0.013667943887412548, + -0.028754964470863342, + -0.015654651448130608, + -0.012973343953490257, + 0.008230641484260559, + 0.003159311832860112, + 0.023183222860097885, + 0.015878716483712196, + 0.018059611320495605, + -0.027261201292276382, + -0.0010017557069659233, + 0.011061325669288635, + -0.03402795270085335, + 0.028291897848248482, + -0.01607290469110012, + 0.022824719548225403, + 0.010844729840755463, + 0.022197339683771133, + 0.0191799346357584, + -0.0052244411781430244, + -0.028754964470863342, + -0.013369191437959671, + 0.016401533037424088, + -0.017955048009753227, + -0.010359256528317928, + 0.021614771336317062, + 0.014661298133432865, + 0.023063722997903824, + -0.005963854491710663, + -0.006677126977592707, + -0.020061256363987923, + -0.0010661743581295013, + -0.010583320632576942, + -0.0017719779862090945, + -0.009963409043848515, + -0.001053103944286704, + -0.023586539551615715, + -0.021958336234092712, + -0.01552021224051714, + 0.006617376115173101, + 0.0034132516011595726, + -0.011270452290773392, + -0.034715086221694946, + 0.0062289973720908165, + -0.0013117118505761027, + 0.0073269144631922245, + 0.014526858925819397, + 0.003909928258508444, + 0.0005517592071555555, + 0.021644646301865578, + -0.02263053134083748, + -0.03525283932685852, + -0.02091270126402378, + -0.019433874636888504, + -0.02309359796345234, + -0.03247443959116936, + -0.0020445899572223425, + 0.0044439490884542465, + -0.0037474813871085644, + -0.03283294290304184, + -0.03145867958664894, + 0.0008234376437030733, + 0.01146464142948389, + -0.028934216126799583, + 0.005205769091844559, + 0.005627757403999567, + 0.01873180642724037, + 0.021555019542574883, + 0.01241318229585886, + 0.018701929599046707, + -0.008447237312793732, + -0.03352007269859314, + 0.03555159270763397, + 0.02597656287252903, + 0.016521034762263298, + -0.0010857799788936973, + -0.012711934745311737, + -0.01958325132727623, + 0.029352471232414246, + 0.0002660767931956798, + 0.023183222860097885, + -0.0021883649751544, + 0.0040518357418477535, + 0.00643812445923686, + -7.98813853180036e-5, + 0.003110764315351844, + -0.008611551485955715, + 0.0027485263999551535, + 0.02401973120868206, + 0.007446415722370148, + 0.034177329391241074, + -0.025931749492883682, + 0.02522968128323555, + -0.006878785323351622, + -0.0038277714047580957, + 0.002072598086670041, + -0.017984922975301743, + -0.02286953292787075, + -0.028321772813796997, + -0.0001219518599100411, + 0.0068115657195448875, + -0.019598189741373062, + -0.010187473148107529, + 0.011509454809129238, + -0.004137727431952953, + 0.02944209612905979, + 0.01454926561564207, + -0.015550087206065655, + -0.00019103845988865942, + 0.009485404007136822, + 0.006262607406824827, + 0.008282924070954323, + 0.018761681392788887, + 0.02436329796910286, + -0.012331024743616581, + 0.0024404376745224, + 0.00776010612025857, + 0.003006200771778822, + 0.01313765812665224, + 0.012950937263667583, + -0.0036541211884468794, + 0.019613126292824745, + -0.047949839383363724, + 0.012891186401247978, + -0.03985363617539406, + 0.005127346143126488, + 0.008111140690743923, + 0.008648895658552647, + -0.024662049487233162, + -0.013301972299814224, + -0.02994997613132, + 0.026753321290016174, + -0.0033217587042599916, + -0.028321772813796997, + -0.007595791947096586, + -0.007715293206274509, + -0.0157890897244215, + 0.01577415131032467, + 0.04331916943192482, + 0.0019512297585606575, + -0.012226461432874203, + -0.01958325132727623, + -0.01974756456911564, + 0.01734260469675064, + 0.002052058931440115, + 0.011255514807999134, + -0.027261201292276382, + 0.010665478184819221, + 0.006632314063608646, + -0.030054539442062378, + -0.007491228636354208, + -0.005956385750323534, + 0.008992461487650871, + -0.006770487409085035, + -0.03474495932459831, + -0.014556733891367912, + 0.0006297150393947959, + -0.04072001948952675, + -0.010404068976640701, + 0.017297791317105293, + -0.026469504460692406, + 0.034177329391241074, + 0.027858706191182137, + 0.005056392401456833, + 0.006318623665720224, + -0.01722310297191143, + 0.004040632862597704, + 0.026857884600758553, + -0.00014680903404951096, + -0.03154830262064934, + 0.002673838287591934, + -0.024064544588327408, + 0.0181492380797863, + 0.03214580938220024, + 0.004470089916139841, + -0.04122789949178696, + -0.004824859090149403, + 0.026469504460692406, + -0.023945042863488197, + -0.03110017441213131, + 0.007177537772804499, + -0.00811860989779234, + -0.0045186374336481094, + 0.0011371280997991562, + 0.006415718235075474, + -0.0069348011165857315, + 0.011023981496691704, + 0.0034431270323693752, + -0.011770863085985184, + 0.00021741274395026267, + -0.008775865659117699, + -0.012077085673809052, + -0.006725674029439688, + -0.025140054523944855, + 0.00985137652605772, + -0.07952801883220673, + -0.02464711293578148, + 0.0021584895439445972, + 0.03253418952226639, + 0.0047576394863426685, + 0.01577415131032467, + -0.002744792029261589, + 0.01388453971594572, + -0.004656810313463211, + 0.010262161493301392, + -0.010568383149802685, + -0.009462997317314148, + 0.014721048064529896, + 0.03713498264551163, + -0.009724406525492668, + 0.0017019577790051699, + -0.031369052827358246, + -0.008469644002616405, + 0.007991639897227287, + -0.002429234329611063, + 0.00950034148991108, + 0.024064544588327408, + 0.03035329282283783, + -0.006303685717284679, + 0.00884308572858572, + 0.03737398609519005, + -0.03537234291434288, + 0.0016692817443981767, + -0.009209057316184044, + -0.029935039579868317, + 0.003459931816905737, + 0.006449327804148197, + 0.0018251934088766575, + -0.0107700414955616, + 0.022660406306385994, + 0.013675413094460964, + 0.026992322877049446, + -0.015131833031773567, + 0.03558146953582764, + 0.008424831554293633, + 0.020748388022184372, + 0.009522748179733753, + 0.009209057316184044, + -0.017372479662299156, + -0.026185689494013786, + -0.032115936279296875, + -0.0015712534077465534, + -0.015340960584580898, + -0.012943468987941742, + 0.017193228006362915, + 0.006785424891859293, + 0.004727764520794153, + 0.0008906570146791637, + -0.022540904581546783, + 0.0008486448787152767, + -0.008014045655727386, + 0.025543371215462685, + -0.017716046422719955, + 0.005904103629291058, + -0.01566958799958229, + 0.07462847232818604, + 0.003450595773756504, + 0.0024964537005871534, + -0.0024012262001633644, + -0.012584964744746685, + 0.014952581375837326, + 0.008141015656292439, + 0.011516924016177654, + 0.01791023463010788, + -0.011987459845840931, + -0.00347113492898643, + -0.014243043959140778, + 0.008850554004311562, + 0.019732628017663956, + -0.009321089833974838, + 0.022421402856707573, + 0.020315196365118027, + 0.0042908382602036, + 0.0020016443450003862, + -0.007046833634376526, + -0.010471288114786148, + 0.0032097261864691973, + 0.0017178290290758014, + -0.01388453971594572, + -0.01281649898737669, + -0.02678319625556469, + 0.002787737874314189, + -0.017775796353816986, + -0.005452239885926247, + -0.0018317286157980561, + 0.026185689494013786, + 0.0157890897244215, + 0.026424692943692207, + 0.03325119614601135, + -0.0157890897244215, + 0.060796212404966354, + 0.011755925603210926, + -0.0009494739933870733, + -0.0010232286294922233, + -0.014713579788804054, + -0.014594078063964844, + -0.006255138665437698, + 0.00953768566250801, + -0.02753007784485817, + -0.016222281381487846, + 0.009164244867861271, + 0.01590859144926071, + 0.0010176269570365548, + -0.023467039689421654, + -0.013033094815909863, + -0.0017523723654448986, + 0.011270452290773392, + -0.03047279454767704, + -0.01895586960017681, + -0.023317662999033928, + 0.0013322511222213507, + -0.024169107899069786, + -0.019448813050985336, + -0.03546196594834328, + -0.006176715716719627, + 0.0007235421217046678, + 0.02966616116464138, + -0.00679662823677063, + -0.020927639678120613, + -0.0072036790661513805, + -0.0064306557178497314, + -0.0063709053210914135, + -0.022047962993383408, + -0.008783334866166115, + 0.027918456122279167, + -0.003861380973830819, + -0.0008785201935097575, + -0.004141462035477161, + 0.001662746537476778, + -0.009477934800088406, + 0.023601477965712547, + 0.02165958471596241, + -0.01313765812665224, + 0.015863778069615364, + -0.04313991591334343, + -0.005011579487472773, + -0.0005228175432421267, + 0.008327736519277096, + 0.010381662286818027, + -0.016625598073005676, + -0.021286142989993095, + -0.004085445776581764, + -3.40765000146348e-5, + -0.005960119888186455, + -0.03378894925117493, + -0.018522677943110466, + 0.0025618060026317835, + 0.003704535774886608, + -0.01768617145717144, + -0.010523570701479912, + -0.028725089505314827, + -0.015034738928079605, + 0.0035906361881643534, + 0.012883718125522137, + -0.018044674769043922, + -0.02546868287026882, + 0.0072671640664339066, + 0.015535149723291397, + -0.01114348229020834, + 0.012988281436264515, + -0.019090309739112854, + -0.011449703946709633, + -0.005489584058523178, + -0.009209057316184044, + -0.012809029780328274, + 0.002147286431863904, + 0.013921883888542652, + -0.016789911314845085, + -0.004212415777146816, + 0.004806187003850937, + -0.011897833086550236, + -0.009515278972685337, + 0.0031854526605457067, + 0.01665547303855419, + 0.006964676547795534, + -0.00506759574636817, + 0.017312729731202126, + -0.003452463075518608, + 0.03387857601046562, + 0.009082087315618992, + 0.017581606283783913, + -0.0022910612169653177, + 0.005833149887621403, + -0.015340960584580898, + -0.003237734315916896, + 0.015490337274968624, + 0.025543371215462685, + -0.006453062407672405, + 0.006441859062761068, + -0.003689598059281707, + 4.66509627585765e-5, + 0.005594147834926844, + 0.0004976102500222623, + -0.026066189631819725, + -0.004555981606245041, + -0.019538437947630882, + -0.0161774680018425, + 0.008775865659117699, + 0.01912018470466137, + -0.010575852356851101, + -0.015087020583450794, + -0.04015238583087921, + 0.009575029835104942, + 0.036149099469184875, + -0.01998656801879406, + -0.0012958406005054712, + -0.0031537101604044437, + -0.010411538183689117, + -0.019896941259503365, + 0.02333259955048561, + -0.009104494005441666, + 0.01855255477130413, + -0.01895586960017681, + 0.005381286144256592, + -0.030487731099128723, + 0.02004631794989109, + -0.019105246290564537, + 0.012405713088810444, + -0.027933394536376, + 0.02315334789454937, + 0.01970275305211544, + 0.003861380973830819, + -0.014579140581190586, + -0.017820609733462334, + 0.009410715661942959, + 0.010157598182559013, + -0.005280456971377134, + -0.02050938457250595, + -0.011210701428353786, + 0.009111963212490082, + -0.012278743088245392, + 0.02938234619796276, + -0.022242151200771332, + 0.03462545946240425, + -0.024915989488363266, + -0.01583390310406685, + -0.026185689494013786, + -0.0034487284719944, + 0.004272166173905134, + 0.03779223933815956, + 0.0157890897244215, + -0.018686993047595024, + -0.022077837958931923, + 0.011666299775242805, + 0.0009746812866069376, + 0.015848839655518532, + -0.03319144621491432, + -0.013040563091635704, + 0.011875427328050137, + -0.002169692888855934, + 0.01304803229868412, + 0.010112784802913666, + -0.004197477828711271, + 0.02309359796345234, + -0.011397422291338444, + 0.009037274867296219, + 0.0008173692040145397, + 0.012943468987941742, + -0.03824036940932274, + 0.026409754529595375, + -0.008947649039328098, + -0.006721939891576767, + 0.021241329610347748, + 0.027500202879309654, + -0.01728285476565361, + 0.0073269144631922245, + -0.0011903435224667192, + -0.017716046422719955, + 0.015340960584580898, + 0.0010773775866255164, + 0.013750101439654827, + 0.0028773637022823095, + -0.0117783322930336, + 0.0157890897244215, + 0.021584896370768547, + 0.003191054333001375, + -0.012883718125522137, + -0.02142058126628399, + 0.031578179448843, + 0.010008221492171288, + -0.002942715771496296, + 0.02062888629734516, + 0.006994551979005337, + 0.023018909618258476, + -0.0014937644591555, + 0.024632174521684647, + 0.020748388022184372, + 0.04176565259695053, + -0.016550909727811813, + 0.012659653089940548, + -0.005956385750323534, + 0.00397341325879097, + 0.009388308972120285, + 0.0411083959043026, + 0.010254692286252975, + 0.019254622980952263, + -0.028844591230154037, + -0.04116814583539963, + -0.021913524717092514, + 0.015430586412549019, + -0.00027004460571333766, + 0.0003491674433462322, + 0.010217348113656044, + -0.005179628264158964, + -0.008200766518712044, + 0.023541726171970367, + 0.0025506026577204466, + 7.107050623744726e-5, + -0.012435588985681534, + -0.005881697405129671, + -0.002421765588223934, + 0.007954295724630356, + -0.0030267401598393917, + -0.014250512234866619, + -0.026051251217722893, + 0.005422364920377731, + -0.012958406470716, + 0.008081265725195408, + 0.007285835687071085, + -0.02597656287252903, + -0.0030435449443757534, + 0.014265449717640877, + -0.015759214758872986, + 0.009433122351765633, + -0.014825611375272274, + 0.0028325507882982492, + 0.022212276235222816, + -0.004977969918400049, + 0.00041592001798562706, + 0.01859736628830433, + -0.006953473202884197, + -0.0029091062024235725, + -0.01373516395688057, + 0.004410339519381523, + -0.0071252561174333096, + 0.012921062298119068, + 0.030218854546546936, + -0.014683703891932964, + 0.0002779802307486534, + 0.017267916351556778, + 0.03593997284770012, + 0.01906043477356434, + 0.040122512727975845, + 0.030263666063547134, + -0.010829792357981205, + -0.007737699430435896, + 0.00656882906332612, + 0.001052170293405652, + 0.010799916461110115, + 0.005228175316005945, + 0.03898725286126137, + 0.008738521486520767, + 0.028993967920541763, + -0.019284497946500778, + -0.022959159687161446, + -0.015654651448130608, + -0.015430586412549019, + -0.003977147862315178, + 0.020763324573636055, + 0.010904479771852493, + 0.010941823944449425, + 0.019687814638018608, + -0.005127346143126488, + 0.00048687384696677327, + -0.022794844582676888, + -0.00028474885039031506, + 0.0023190693464130163, + 0.00973187480121851, + -0.0012715669581666589, + -0.0051497528329491615, + -0.0045709190890192986, + 0.008701177313923836, + 0.00406303908675909, + -0.010740166530013084, + -0.012629778124392033, + -0.001934424857608974, + 0.002942715771496296, + -0.036388099193573, + -0.013615662232041359, + -0.0151467714458704, + -0.001651543308980763, + -0.012958406470716, + 0.003962209913879633, + 0.007685417775064707, + -0.0046941544860601425, + -0.011561736464500427, + 0.0037288093008100986, + 0.013242221437394619, + 0.006609907373785973, + -0.006650986149907112, + 0.021973274648189545, + -0.021166641265153885, + 0.023945042863488197, + -0.03713498264551163, + 0.009052212350070477, + -0.009970877319574356, + 0.00271491683088243, + 0.002074465388432145, + 0.002154755173251033, + -0.020195694640278816, + 0.01109120063483715, + -0.002104340586811304, + 0.01738741807639599, + 0.01520652137696743, + -0.02805289626121521, + -0.01773098297417164, + 0.01843305304646492, + 0.012443057261407375, + -0.035611342638731, + -0.0007118721259757876, + -0.01304803229868412, + 0.02741057612001896, + 0.009410715661942959, + 0.00832026731222868, + 0.006285013630986214, + -0.005216971971094608, + 0.008768397383391857, + -0.0032545391004532576, + -0.017596544697880745, + -0.021211454644799232, + 0.0033703059889376163, + -0.0085816765204072, + 0.001923221629112959, + -0.011188295669853687, + 0.003030474530532956, + 0.00766301155090332, + -0.010030628181993961, + -0.010000752285122871, + 0.007887075655162334, + 0.0666816458106041, + -0.020419759675860405, + 0.029681099578738213, + -0.017238041386008263, + 0.013145126402378082, + -0.020031381398439407, + -0.015714401379227638, + -0.008962586522102356, + 0.009560092352330685, + 0.00570244574919343, + -0.002810144331306219, + -0.014048853889107704, + 0.02230190299451351, + -0.015550087206065655, + 0.02983047440648079, + 0.021973274648189545, + -0.009582499042153358, + -0.002376952674239874, + 0.04935397580265999, + -0.0074501498602330685, + -0.01310031395405531, + 0.0005984393646940589, + -0.006845175288617611, + 0.011136014014482498, + -0.019493626430630684, + 0.030801422894001007, + 0.008701177313923836, + -0.015624775551259518, + -0.011591611430048943, + 0.010008221492171288, + -0.00043389186612330377, + 0.018179113045334816, + 0.03253418952226639, + -0.043976422399282455, + -0.029471971094608307, + -0.021091952919960022, + -0.014422295615077019, + -0.014175823889672756, + -0.04125777259469032, + -0.011875427328050137, + 0.0019437609007582068, + -0.01227127481251955, + -0.003428189316764474, + 0.0030136697459965944, + -0.006102027837187052, + -0.0022779908031225204, + 0.01140489149838686, + -0.023900231346488, + -0.016834724694490433, + -0.0008150351932272315, + 0.025991501286625862, + 0.00808873400092125, + 6.313488847808912e-5, + -0.020240508019924164, + -0.013122720643877983, + 0.0062289973720908165, + -0.020419759675860405, + 0.00542983366176486, + -0.010262161493301392, + 0.0127866230905056, + 0.009141838178038597, + -0.03313169628381729, + -0.00953021738678217, + -0.017357543110847473, + 0.03985363617539406, + -0.018403178080916405, + 0.0031219676602631807, + -0.01532602310180664, + -0.03238481283187866, + -0.0054783811792731285, + 0.003450595773756504, + -0.011815676465630531, + 0.009694530628621578, + 0.003891256172209978, + -0.0003241935628466308, + -0.012913593091070652, + -0.017775796353816986, + 0.003924866206943989, + -0.00511240866035223, + -0.0001535776536911726, + -0.01529614720493555, + 0.004077977035194635, + 0.013996572233736515, + -0.004328182432800531, + -0.015923528000712395, + -0.005642694886773825, + -0.009955939836800098, + -0.025035491213202477, + -0.0049630324356257915, + -0.01859736628830433, + 0.01756666973233223, + 0.01577415131032467, + 0.010620664805173874, + -0.005497052799910307, + -0.010142660699784756, + -0.013451348058879375, + -0.009866314008831978, + 0.0005872361361980438, + -0.017118539661169052, + 0.004660544916987419, + 0.003932334948331118, + 0.00015264404646586627, + -0.0105982581153512, + -0.012017334811389446, + -0.004910750314593315, + -0.009276277385652065, + -0.006326092407107353, + 0.009134368970990181, + -0.017477042973041534, + 0.011643894016742706, + -0.00867130234837532, + 0.0936291515827179, + 0.0026551662012934685, + -0.005007845349609852, + 0.0105982581153512, + 0.00031532434513792396, + -0.007909482344985008, + -0.0026887760031968355, + 0.013623131439089775, + 0.021734273061156273, + -4.959764555678703e-5, + -0.01091194897890091, + -0.007155131548643112, + 0.028874466195702553, + 0.013309440575540066, + -0.01974756456911564, + -0.012196586467325687, + 0.01623721979558468, + 0.020061256363987923, + 0.003951007034629583, + 0.011023981496691704, + -0.001388267264701426, + -0.00620659114792943, + -0.010389131493866444, + 0.03369932621717453, + -0.003375907661393285, + 0.028023019433021545, + -0.006426921579986811, + 0.018761681392788887, + 0.01203974150121212, + 0.03713498264551163, + 0.017984922975301743, + -0.007789981551468372, + -0.02073344960808754, + 0.005497052799910307, + 0.0008551801438443363, + 0.008589145727455616, + 0.007588323205709457, + 0.011225639842450619, + -0.0127642173320055, + 0.009567560628056526, + 0.0034319236874580383, + -0.012950937263667583, + 0.02304878458380699, + 0.020121006295084953, + -0.021644646301865578, + -0.00018485334294382483, + 0.006400780286639929, + -0.0036653245333582163, + 0.0066248453222215176, + -0.0036055739037692547, + -0.0013406535144895315, + -0.031249551102519035, + 0.013488692231476307, + -0.000831373268738389, + 0.005063861142843962, + 0.0054148961789906025, + 0.015311085619032383, + -0.013847196474671364, + -0.013197408989071846, + 0.0021622239146381617, + -0.029591472819447517, + -0.004910750314593315, + -0.007244757376611233, + -0.02505042962729931, + -0.009403247386217117, + -0.0031518428586423397, + -0.0030883578583598137, + -0.024437986314296722, + 0.004865937400609255, + -0.009507810696959496, + -0.0026962447445839643, + -0.014310263097286224, + 0.0048323278315365314, + -0.0322653129696846, + -0.020121006295084953, + 0.027201449498534203, + 0.010545976459980011, + 0.021510208025574684, + 0.01687953807413578, + -0.0014909636229276657, + 0.00679662823677063, + 0.012809029780328274, + -0.008887898176908493, + -0.011666299775242805, + 0.0046306694857776165, + 0.001263164565898478, + 0.013936822302639484, + -0.02222721464931965, + 0.018911058083176613, + -0.03393832594156265, + -0.022436341270804405, + 0.00018345293938182294, + 0.008947649039328098, + -0.008238110691308975, + 0.0016478088218718767, + 0.0014573539374396205, + -0.005455974489450455, + -0.009246401488780975, + 0.0023806870449334383, + 0.008731053210794926, + -0.0064829373732209206, + 0.016550909727811813, + -0.005825681146234274, + -0.011098669841885567, + 0.006337295286357403, + 0.0018447990296408534, + 0.02379566617310047, + 0.0004061172076035291, + -0.02672344446182251, + -0.0010951160220429301, + 0.000957876443862915, + -0.007248491980135441, + 0.0069982861168682575, + 0.002642095787450671, + -0.017984922975301743, + 0.00872358400374651, + 0.010702822357416153, + -0.020031381398439407, + -0.00679662823677063, + -0.02936740778386593, + -0.002500188071280718, + 0.007547244895249605, + -0.016834724694490433, + -0.022496091201901436, + 0.00446635577827692, + -0.0013229150790721178, + -0.0029632551595568657, + -0.001504967687651515, + -0.01923968642950058, + -0.0033927124459296465, + 0.007147662807255983, + 0.010710290633141994, + 0.021211454644799232, + -0.009111963212490082, + 0.013929353095591068, + -0.005269254092127085, + -0.008783334866166115, + 0.009492873214185238, + 0.008365080691874027, + -0.030741671100258827, + 0.024348359555006027, + -0.014810673892498016, + 0.0021715599577873945, + 0.026514317840337753, + 0.009724406525492668, + 0.018343426287174225, + -0.01048622652888298, + -0.013496161438524723, + 0.01255508977919817, + -0.017596544697880745, + 0.028754964470863342, + -0.024975741282105446, + 0.008357611484825611, + -0.012002397328615189, + 0.010381662286818027, + 0.01843305304646492, + -0.02339235134422779, + 0.032862816005945206, + -0.021286142989993095, + -0.009410715661942959, + 0.006613641977310181, + -0.009926064871251583, + -0.0181492380797863, + -0.006602438632398844, + -0.01704385131597519, + 0.003689598059281707, + 0.0007944959215819836, + 0.022331777960062027, + 0.01123310811817646, + 0.004776311572641134, + -0.006572563201189041, + -0.013025625608861446, + 0.022914346307516098, + -0.02637987956404686, + -5.487833550432697e-5, + 0.0032881489023566246, + 0.008342674002051353, + -0.005691242404282093, + -0.02333259955048561, + 0.01583390310406685, + 0.014945113100111485, + -0.012226461432874203, + 0.019568312913179398, + 0.0019176200730726123, + -0.002061394974589348, + -0.016326844692230225, + 0.007151396945118904, + -0.01347375474870205, + -0.013638068921864033, + -0.004496230743825436, + -0.018328489735722542, + 0.008394955657422543, + -0.008312799036502838, + -0.00010193775233346969, + -0.016685348004102707, + -0.006449327804148197, + 0.024856239557266235, + 0.009545154869556427, + 0.01354097481817007, + -0.000967212428804487, + -0.0008271720143966377, + -0.003017404116690159, + 0.014437233097851276, + 0.001021361444145441, + -0.0028549572452902794, + -0.019389061257243156, + -0.02500561624765396, + -0.016087843105196953, + -0.0030678187031298876, + 0.0015339093515649438, + -0.019911879673600197, + -0.016625598073005676, + 0.0037960289046168327, + 0.016864599660038948, + -0.024975741282105446, + 0.0006161778001114726, + 0.0022462483029812574, + 0.0054634432308375835, + 0.005160956177860498, + 0.0013751968508586287, + 0.024228857830166817, + 0.01629696972668171, + -0.0008355744648724794, + -0.014579140581190586, + -0.02627531625330448, + 0.010411538183689117, + -0.0005312199937179685, + 0.016834724694490433, + 0.011882895603775978, + 0.0021192783024162054, + 0.0316678062081337, + -0.0007790914969518781, + -0.011240577325224876, + 0.021181579679250717, + -0.0047576394863426685, + 0.04060051590204239, + 0.012637247331440449, + 0.009582499042153358, + 0.008619020693004131, + 0.013055500574409962, + -0.008335205726325512, + -0.003872584318742156, + -0.02073344960808754, + -0.009978346526622772, + -0.0002814812178257853, + -0.030861172825098038, + 0.0039286003448069096, + -0.005971323233097792, + -0.001272500609047711, + -2.7876794774783775e-5, + -0.009649718180298805, + -0.012891186401247978, + -0.0007431478006765246, + 0.004761374089866877, + 0.02425873465836048, + -0.005127346143126488, + 0.00011950115003855899, + 0.004208681173622608, + -0.006837706547230482, + -0.031189801171422005, + 0.005784602835774422, + -0.007095381151884794, + -0.017238041386008263, + -0.012540152296423912, + -0.006266341544687748, + 0.023242974653840065, + -0.025588184595108032, + -0.010232286527752876, + 0.0035066120326519012, + 0.005030251573771238, + 0.00926880817860365, + 0.013951759785413742, + 0.011897833086550236, + -0.0026346270460635424, + -0.0037922943010926247, + -0.004690420348197222, + -0.003657855559140444, + -0.006718205288052559, + 0.007558447774499655, + -0.00867130234837532, + 0.0021286143455654383, + -0.0006843308219686151, + 0.009253870695829391, + -0.010172535665333271, + 0.005736055318266153, + -0.0316678062081337, + 0.0016478088218718767, + 0.011972521431744099, + -0.017088664695620537, + 0.011785801500082016, + -0.005952651146799326, + -0.0018158573657274246, + 0.007909482344985008, + -0.014414826408028603, + -0.007349320687353611, + 0.015266272239387035, + -0.008081265725195408, + -8.379084465559572e-5, + 0.013197408989071846, + -0.008327736519277096, + -0.010613196529448032, + -0.014048853889107704, + 0.0020557933021336794, + -0.02027038298547268, + 0.007621932774782181, + 0.006848909892141819, + 0.015415648929774761, + -0.004679217003285885, + -0.02107701636850834, + 0.015161708928644657, + 0.010904479771852493, + 0.0003080889000557363, + -0.016117718070745468, + -0.008775865659117699, + -0.012032272294163704, + -0.021405644714832306, + 0.013787445612251759, + 0.02056913636624813, + -0.014773329719901085, + -0.005164690315723419, + 0.007707824464887381, + 0.0006553891580551863, + 0.01488536223769188, + 0.002735455986112356, + 0.008014045655727386, + -0.0035813001450151205, + 0.005698711145669222, + 0.012622308917343616, + 0.003838974516838789, + -0.022092776373028755, + 0.031876932829618454, + 0.009171713143587112, + -0.0241989828646183, + -0.00606468366459012, + -0.011427298188209534, + 0.030039602890610695, + 0.0024367033038288355, + -0.016326844692230225, + -0.006079621147364378, + -0.008858023211359978, + -0.00808873400092125, + -0.01529614720493555, + -0.02206289954483509, + 0.011509454809129238, + 0.01448204554617405, + 0.020345071330666542, + 0.0025823451578617096, + -0.006311154458671808, + 0.029412221163511276, + 0.018298614770174026, + -0.001904549659229815, + 0.007569651119410992, + 0.02863546460866928, + 0.014228105545043945, + -0.007842263206839561, + -0.014310263097286224, + 0.024004794657230377, + 0.020823076367378235, + 0.004163868259638548, + 0.008282924070954323, + -0.011561736464500427, + 0.017297791317105293, + -0.00534020783379674, + -0.011292858980596066, + 0.021465394645929337, + -0.011158419772982597, + -0.0018233262235298753, + 0.01658078469336033, + -0.021002328023314476, + 0.001460154657252133, + -0.01154679898172617, + -0.017940111458301544, + -0.02263053134083748, + -0.0105982581153512, + -0.0049592978321015835, + 0.02228696458041668, + -0.011584143154323101, + -0.0008173692040145397, + -0.000546157592907548, + -0.0017094266368076205, + 0.017028914764523506, + 0.0003069218946620822, + -0.009104494005441666, + -0.011106138117611408, + 0.004910750314593315, + 0.020867887884378433, + 0.013070438988506794, + 0.00953021738678217, + 0.011651362292468548, + -0.019538437947630882, + 0.001986706629395485, + 0.007984170690178871, + 0.007849732413887978, + 0.0035420889034867287, + -0.0007310109795071185, + 0.016730161383748055, + -0.01998656801879406, + 0.03163792937994003, + 0.007692886516451836, + 0.013779976405203342, + -0.002229443285614252, + 0.0011380617506802082, + 0.009515278972685337, + 0.006299951579421759, + -0.011516924016177654, + -0.014668766409158707, + 0.006423186976462603, + 0.02130107954144478, + 0.029397282749414444, + -0.00762940151616931, + 0.0003449662181083113, + 0.0034356580581516027, + -0.020494448021054268, + 0.006378374062478542, + 0.018104424700140953, + 0.009477934800088406, + -0.010926886461675167, + -0.01849280297756195, + -0.0005550268106162548, + 0.0012883718591183424, + 0.017491981387138367, + 0.0021006062161177397, + 0.008910304866731167, + -0.0012136836303398013, + 0.0020072460174560547, + -0.025319306179881096, + 0.03489433601498604, + 0.002313467673957348, + -0.007715293206274509, + 0.008992461487650871, + -0.0018868112238124013, + -0.009343496523797512, + -0.007879607379436493, + 0.0069982861168682575, + -0.021644646301865578, + -0.011860489845275879, + 0.026932572945952415, + -0.004559715744107962, + -0.0024983210023492575, + 0.022152526304125786, + -0.012166711501777172, + -0.0063074203208088875, + -0.010897011496126652, + 0.010560913942754269, + 0.012584964744746685, + 0.013182470574975014, + 0.006217794492840767, + 0.02528943121433258, + -0.01310031395405531, + -0.01825380139052868, + -0.01577415131032467, + 0.0007706890464760363, + 0.0006273810286074877, + -0.004044367000460625, + -0.016341783106327057, + -0.0161774680018425, + 0.014444701373577118, + -0.008185829035937786, + 0.028874466195702553, + -0.03202630952000618, + 0.009567560628056526, + -0.00015252735465765, + 0.008962586522102356, + -0.00027377900551073253, + -0.003127569332718849, + 0.014915237203240395, + 0.0137949138879776, + -0.005366348661482334, + 0.009313620626926422, + 0.017521856352686882, + -0.008245579898357391, + 0.023810604587197304, + 0.024094419553875923, + 0.003913662862032652, + 0.007625667378306389, + 0.014892831444740295, + -0.013145126402378082, + -0.00406303908675909, + 0.007864669896662235, + -0.008043921552598476, + -0.008043921552598476, + -0.014526858925819397, + -0.015804028138518333, + -0.009507810696959496, + 0.024512674659490585, + -0.027500202879309654, + 0.0028792310040444136, + 0.015415648929774761, + -0.014272918924689293, + -0.0029613878577947617, + -0.001231422065757215, + 0.003293750574812293, + 0.015624775551259518, + -0.0033292274456471205, + 0.013623131439089775, + -0.008365080691874027, + 0.009059681557118893, + 0.01560983806848526, + -0.0042908382602036, + 0.010867136530578136, + 0.006792893633246422, + -0.0047725774347782135, + -0.01388453971594572, + -0.011673768982291222, + 0.025065366178750992, + 0.0014760259073227644, + -0.004529840778559446, + 0.022735094651579857, + 0.011673768982291222, + 0.009828969836235046, + 0.004141462035477161, + -0.010964230634272099, + -0.019941754639148712, + 0.009664655663073063, + -0.0030864907894283533, + 0.015012332238256931, + -0.0007002020720392466, + -0.00794682651758194, + 0.01172605063766241, + 0.00570244574919343, + -0.002580478088930249, + -0.019553376361727715, + -0.009186651557683945, + 0.020195694640278816, + 0.008626489900052547, + -0.010448882356286049, + 0.017178291454911232, + 0.008193298242986202, + 0.00679662823677063, + 0.0037960289046168327, + -0.019852129742503166, + 0.0019605658017098904, + -0.0006679927464574575, + -0.007472556550055742, + 0.014407358132302761, + 0.026125939562916756, + 0.020927639678120613, + 0.017267916351556778, + 0.02724626287817955, + -0.01629696972668171, + 0.009029805660247803, + 0.013055500574409962, + 0.010097847320139408, + -0.0015833902871236205, + -0.014967519789934158, + -0.020808137953281403, + 0.01304803229868412, + -0.006501609459519386, + -0.01382478978484869, + -4.437530515133403e-5, + -0.013309440575540066, + 0.006546422373503447, + 0.008828147314488888, + -0.0022593187168240547, + 0.01958325132727623, + -0.013765038922429085, + -0.0018438654951751232, + -0.0011968787293881178, + -0.005706179887056351, + 0.01974756456911564, + 0.013832258060574532, + -0.0044439490884542465, + -0.007857200689613819, + -0.004671748261898756, + -0.02270521968603134, + -0.0033404305577278137, + 0.02615581452846527, + -0.002746659331023693, + -0.0024553751572966576, + 0.009918595664203167, + -0.011248045600950718, + -0.020345071330666542, + -0.024213921278715134, + -0.01631190814077854, + -0.001945628086104989, + 0.005373817402869463, + -0.02944209612905979, + 0.002388155786320567, + 0.011554267257452011, + -0.001841064658947289, + 0.0013611927861347795, + -0.03325119614601135, + -0.020434696227312088, + -0.007278366945683956, + 0.014848018065094948, + 0.015355898067355156, + 0.00907461903989315, + 0.0017271650722250342, + 0.015804028138518333, + -0.024333423003554344, + 0.04039138928055763, + -0.02091270126402378, + -0.008611551485955715, + 0.012159242294728756, + 0.015370835550129414, + 0.004548512399196625, + -0.008887898176908493, + 0.01808948628604412, + -0.040988896042108536, + -0.010979168117046356, + -0.01013519149273634, + 0.001305176643654704, + -0.0018793423660099506, + -0.0014685571659356356, + 0.005642694886773825, + 0.005519459489732981, + -0.0008444436825811863, + -0.015430586412549019, + -0.01590859144926071, + -0.009156775660812855, + -0.004070507828146219, + -0.010620664805173874, + 0.01163642480969429, + -0.02488611452281475, + -0.008335205726325512, + -0.008925242349505424, + 0.013772508129477501, + -0.007009489461779594, + 0.0289192795753479, + -0.021794022992253304, + -0.010142660699784756, + 0.01665547303855419, + 0.004238556604832411, + 0.026693569496273994, + -0.009455529041588306, + -0.009716937318444252, + 0.01704385131597519, + 0.021345892921090126, + 0.007924419827759266, + -0.009373371489346027, + 0.016550909727811813, + 0.014355075545608997, + -0.01172605063766241, + -0.03328106924891472, + 0.004537309519946575, + -0.004010757431387901, + -0.022615592926740646, + 0.010165066458284855, + 0.004223618656396866, + -0.030502669513225555, + 0.016550909727811813, + 0.002858691615983844, + -0.008611551485955715, + -0.011830613948404789, + 0.010882074013352394, + -0.0001634971849853173, + 0.0069982861168682575, + -0.013003218919038773, + -0.007752637378871441, + 0.00026747718220576644, + -0.01131526567041874, + 0.007819856517016888, + -0.018985746428370476, + 0.018686993047595024, + 0.004600794520229101, + -0.017372479662299156, + 0.008335205726325512, + -0.0045821224339306355, + 0.030203916132450104, + -0.010531038977205753, + -0.018477866426110268, + -0.017372479662299156, + -0.007132724858820438, + 0.0069348011165857315, + -0.006878785323351622, + -0.010994105599820614, + 0.00930615235120058, + 0.011531861498951912, + 0.011733519844710827, + -0.016730161383748055, + 0.004604528658092022, + 0.004869672004133463, + -0.02212265133857727, + 0.009291214868426323, + 0.008327736519277096, + -0.0020894028712064028, + 0.001167003414593637, + -0.01705878973007202, + 0.002974458271637559, + -0.020360009744763374, + -0.0020669964142143726, + 0.0006619243649765849, + -0.004948094487190247, + -0.018403178080916405, + -1.2574461834446993e-5, + 0.011770863085985184, + 0.004055570345371962, + -0.023825543001294136, + -0.007621932774782181, + 0.013623131439089775, + -0.016222281381487846, + 0.0007286769687198102, + -0.008365080691874027, + -0.022047962993383408, + 0.020076192915439606, + 0.003596237860620022, + -0.011942646466195583, + -0.015654651448130608, + -0.0201658196747303, + -0.014997394755482674, + -0.011150951497256756, + -0.009866314008831978, + 0.012136835604906082, + -0.010867136530578136, + 0.012144304811954498, + -0.0026626349426805973, + 0.021450456231832504, + 0.01370528806000948, + 0.007341851945966482, + 0.0012967742513865232, + 0.01653597131371498, + 0.007872138172388077, + 0.006214059889316559, + 0.008394955657422543, + -0.01327956560999155, + -0.031130049377679825, + 0.0012136836303398013, + -0.0009032606612890959, + -0.012435588985681534, + 0.007509900722652674, + -0.0009653452434577048, + 0.010799916461110115, + -0.003239601617679, + 0.0031088972464203835, + 0.0013313174713402987, + -0.012338493950664997, + 0.003314289730042219, + 0.01132273394614458, + -0.01027709897607565, + 0.009433122351765633, + 0.02776907943189144, + -0.0017645092448219657, + -0.0037306766025722027, + 0.018298614770174026, + -0.010740166530013084, + -0.01200986560434103, + 0.0052095032297074795, + 0.011658831499516964, + -0.00766301155090332, + 0.02741057612001896, + -0.017551731318235397, + -0.016550909727811813, + -0.016625598073005676, + 0.011449703946709633, + -0.005314067006111145, + -0.006296216975897551, + -0.0008285724325105548, + 0.013092844747006893, + -0.016147593036293983, + 0.015505274757742882, + 0.009403247386217117, + -0.019090309739112854, + 0.014332669787108898, + -0.005261785350739956, + 0.023183222860097885, + -0.008148484863340855, + 0.01304803229868412, + -0.004731498658657074, + 0.00684144115075469, + 0.017477042973041534, + 0.013966697268188, + 0.021286142989993095, + -0.0015385773731395602, + 0.012375838123261929, + -0.006318623665720224, + 0.014220637269318104, + -0.007020692806690931, + -0.013712757267057896, + -0.023003971204161644, + 0.03387857601046562, + -0.00574725866317749, + -0.016043029725551605, + 0.0042908382602036, + -0.023571603000164032, + 0.0022369122598320246, + -0.012301149778068066, + -0.013727694749832153, + -0.005000376142561436, + 0.010949293151497841, + 0.014773329719901085, + 0.013921883888542652, + 0.00953021738678217, + -0.022540904581546783, + 0.005642694886773825, + -0.015923528000712395, + 0.009201589040458202, + 0.02936740778386593, + 0.01071775984019041, + 0.018298614770174026, + 0.025274494662880898, + 0.017835546284914017, + 0.010941823944449425, + -0.018507741391658783, + -0.0006721940007992089, + 0.026454567909240723, + 0.0046941544860601425, + -0.0010652407072484493, + -0.007872138172388077, + -0.013854664750397205, + -0.008760928176343441, + 0.004223618656396866, + -0.000852379307616502, + -0.014183293096721172, + -0.022197339683771133, + -0.016043029725551605, + 0.02027038298547268, + -0.016386596485972404, + 0.0012696997728198767, + 0.01492270641028881, + 0.0018793423660099506, + 0.003501010360196233, + -0.009433122351765633, + 0.009634780697524548, + 0.001345321536064148, + -8.402425009990111e-5, + -0.005594147834926844, + -0.004955563228577375, + 0.0003641050716396421, + -0.0006889988435432315, + 0.023825543001294136, + -0.011785801500082016, + 0.00994100235402584, + 0.021525144577026367, + -0.016267094761133194, + -0.03635822609066963, + 0.002955786418169737, + -3.827771433861926e-5, + 0.0033535012044012547, + -0.006594969891011715, + -0.013623131439089775, + -0.004156399518251419, + -0.0021398174576461315, + -0.003913662862032652, + 0.007707824464887381, + 0.014384951442480087, + -0.01625215634703636, + -0.011419828981161118, + -0.009612374007701874, + 0.014631422236561775, + 0.005403692834079266, + 0.01497498806566, + -0.020658761262893677, + 0.005116143263876438, + 0.013376660645008087, + -0.0034561974462121725, + 0.008103671483695507, + -0.015161708928644657, + -0.0033740403596311808, + 0.0006259806687012315, + -0.02879977785050869, + 0.004279634915292263, + 0.011061325669288635, + -0.003069685772061348, + 0.0032806801609694958, + -0.01117335818707943, + -0.006128168664872646, + -0.022615592926740646, + -0.0198222529143095, + -0.0033385634887963533, + 0.0043804640881717205, + 0.0195235013961792, + 0.01629696972668171, + -0.007737699430435896, + -0.005743524059653282, + 0.01071775984019041, + -0.01206214725971222, + -0.017611483111977577, + -0.00497050117701292, + -0.005071330349892378, + -0.017641358077526093, + -0.0066211107186973095, + 0.011210701428353786, + -0.007916951552033424, + -0.006501609459519386, + 0.01031444314867258, + -0.006098293233662844, + 0.004929422400891781, + -0.005332739092409611, + -0.0053850207477808, + 0.016222281381487846, + -0.010560913942754269, + -0.005836884491145611, + 0.008103671483695507, + 0.0071252561174333096, + -0.006109496578574181, + 0.00652401614934206, + 0.021734273061156273, + -0.013802383095026016, + -0.003545823274180293, + 0.0316678062081337, + 0.010075440630316734, + -0.001114721642807126, + 0.00987378228455782, + 0.0031294364016503096, + 0.005881697405129671, + -0.0027746674604713917, + 0.018507741391658783, + -0.005063861142843962, + -0.0038875218015164137, + 0.018104424700140953, + -0.0011175224790349603, + 0.011307796463370323, + -0.02412429451942444, + -0.002326538087800145, + -0.007498697377741337, + -0.005582944490015507, + -0.026693569496273994, + -0.00465307617560029, + -0.0215400829911232, + 0.0066808611154556274, + -0.013951759785413742, + -0.012480401434004307, + 0.005418630316853523, + 0.009029805660247803, + 0.0048360624350607395, + 0.02028532139956951, + 0.007050568237900734, + -0.010060503147542477, + -0.010292036458849907, + -0.008051389828324318, + -0.007562182378023863, + 0.0024983210023492575, + 0.009560092352330685, + -0.0016254023648798466, + 0.014175823889672756, + 0.006314889062196016, + -0.018806494772434235, + -0.009104494005441666, + -0.015654651448130608, + -0.02101726457476616, + 0.015415648929774761, + 0.0014564202865585685, + 0.01837330311536789, + -0.0004341252788435668, + -0.016147593036293983, + 0.017238041386008263, + 0.0012164843501523137, + -0.001073643215931952, + 0.007244757376611233, + 0.008641427382826805, + 0.018388239666819572, + 0.0023806870449334383, + -0.00014284122153185308, + -0.02442304790019989, + -0.0021454191301018, + -0.015400711447000504, + -0.005825681146234274, + -0.012256337329745293, + -0.003618644317612052, + 0.005321535747498274, + 0.007491228636354208, + -0.00456345034763217, + 0.01301815640181303, + 0.0029893959872424603, + 0.006833971943706274, + 0.004854734521359205, + -0.0011950115440413356, + -0.01946374960243702, + -0.023586539551615715, + -0.013944290578365326, + -0.010897011496126652, + -0.015012332238256931, + 0.019344249740242958, + -0.022316839545965195, + 0.02234671637415886, + -0.024691926315426826, + -0.0009569428511895239, + -0.0161774680018425, + -0.0033815091010183096, + 0.004873406607657671, + 0.015430586412549019, + 0.012599903158843517, + -0.001536710187792778, + 0.01970275305211544, + 0.01958325132727623, + 0.015490337274968624, + -0.025842124596238136, + 0.01590859144926071, + -0.01704385131597519, + 0.015340960584580898, + -0.02539399452507496, + 0.005594147834926844, + 0.007319445721805096, + -0.007155131548643112, + 0.006512812804430723, + 0.0027111824601888657, + 0.010045565664768219, + -0.0004028495750389993, + 0.0038576466031372547, + 0.0033497666008770466, + 0.0002639761660248041, + -0.028306836262345314, + 0.0073903994634747505, + 0.007685417775064707, + -0.0215400829911232, + -0.01126298401504755, + 0.026469504460692406, + 0.011658831499516964, + -0.017208166420459747, + 0.002201435388997197, + 0.00036247126990929246, + 0.022555842995643616, + -0.01497498806566, + 0.0020165820606052876, + 0.014235574752092361, + -0.00973187480121851, + 0.008141015656292439, + 0.005011579487472773, + -0.022824719548225403, + 0.01988200470805168, + 0.026350004598498344, + 0.0016403400804847479, + -0.029875287786126137, + 0.005467177834361792, + -0.029621347784996033, + 0.02021063305437565, + 0.017895298078656197, + 0.014945113100111485, + 0.0023321397602558136, + 0.01209949143230915, + -0.0023209364153444767, + 0.021734273061156273, + 0.012935999780893326, + -0.013600724749267101, + 0.0034319236874580383, + 0.016730161383748055, + -0.005709914490580559, + -0.018806494772434235, + -0.017028914764523506, + -0.01641647145152092, + 0.022675342857837677, + -0.006789159029722214, + -0.005668835714459419, + -0.009881251491606236, + -0.01227127481251955, + -0.00730077363550663, + -0.00748749403283, + 0.014489514753222466, + 0.0036335820332169533, + 0.008305329829454422, + 0.0050862678326666355, + 0.0013033094583079219, + 0.01635671965777874, + 0.016341783106327057, + -0.006240200717002153, + -0.015475398860871792, + 0.0057285865768790245, + -0.009545154869556427, + 0.01883636973798275, + 0.006341029889881611, + -0.028650401160120964, + 0.004660544916987419, + 0.0017962517449632287, + -0.005452239885926247, + 0.018582429736852646, + 0.007054302375763655, + -0.0037866928614676, + -0.003962209913879633, + 0.013033094815909863, + 0.037344109266996384, + -0.008014045655727386, + 0.016610659658908844, + 0.019194873049855232, + -0.0195235013961792, + 0.004929422400891781, + 0.00717006903141737, + -0.00961984321475029, + 0.005997464060783386, + 0.00443274574354291, + 0.016043029725551605, + -0.00048687384696677327, + 0.020808137953281403, + 0.008484581485390663, + -0.003799763275310397, + -0.014541796408593655, + -0.006363436579704285, + 0.0005503588472492993, + 0.014564203098416328, + -0.00967959314584732, + 0.004929422400891781, + 0.009425653144717216, + -0.012965874746441841, + -0.011248045600950718, + -0.014362544752657413, + -0.007931889034807682, + -0.00973187480121851, + 0.004089179914444685, + 0.00433565117418766, + 0.00907461903989315, + -0.006314889062196016, + 0.008499519899487495, + -0.0017318330937996507, + 0.005190831143409014, + 0.009687062352895737, + 0.020180758088827133, + -0.014138479717075825, + 0.00030902252183295786, + -0.0012276875786483288, + 0.017641358077526093, + -0.00675181532278657, + -0.0030211384873837233, + 0.012525214813649654, + -0.007745168637484312, + -0.021928461268544197, + -0.00383150577545166, + 0.008708646520972252, + -0.0005312199937179685, + -0.003523416817188263, + 0.0048958128318190575, + -0.019269561395049095, + -0.00328441453166306, + -0.011016512289643288, + -0.022660406306385994, + 0.003347899531945586, + 0.003398314118385315, + 0.007969233207404613, + -0.023123472929000854, + 0.014653828926384449, + 0.012831436470150948, + 0.023691102862358093, + 0.007397868204861879, + 0.0066248453222215176, + -0.0066845957189798355, + -0.006426921579986811, + -2.7162004698766395e-5, + 0.00843976903706789, + 0.000852379307616502, + -0.01786542311310768, + 0.011606549844145775, + 0.0009914861293509603, + 0.008768397383391857, + -0.005758462008088827, + 0.017611483111977577, + -0.010112784802913666, + 0.014310263097286224, + 0.009276277385652065, + 0.00643812445923686, + -0.010202410630881786, + 0.026857884600758553, + -0.018851306289434433, + 0.013974166475236416, + 0.011516924016177654, + 0.01246546395123005, + 0.01149451732635498, + 0.008006577380001545, + -0.004634404089301825, + 0.02033013291656971, + -0.012166711501777172, + 0.017701108008623123, + 0.010710290633141994, + -0.009261338971555233, + 0.00023561799025628716, + 0.014145948924124241, + -0.0030584826599806547, + 0.002946450375020504, + 0.008731053210794926, + -0.017073726281523705, + 0.012375838123261929, + -0.016371658071875572, + 0.03426695615053177, + 0.0024404376745224, + 0.003880053060129285, + -0.019254622980952263, + -0.002953919116407633, + 0.0024479064159095287, + 0.01577415131032467, + -0.01820898801088333, + 0.01946374960243702, + 0.014504452235996723, + -0.00999328400939703, + -0.009067149832844734, + -0.017656294628977776, + -0.005407426971942186, + 0.003409517230466008, + 0.011935177259147167, + 0.018925994634628296, + 0.016715222969651222, + -0.005642694886773825, + 0.004156399518251419, + -0.02678319625556469, + -0.007117787376046181, + -0.008536863140761852, + -0.00944805983453989, + -0.002819480374455452, + 0.0054634432308375835, + -0.016267094761133194, + -0.0005424232222139835, + -0.010262161493301392, + 0.020464573055505753, + 0.003155577229335904, + 0.03190680593252182, + -0.011270452290773392, + -0.028501024469733238, + -0.003314289730042219, + -0.011830613948404789, + 0.00994100235402584, + -0.006314889062196016, + -0.00383150577545166, + 0.007864669896662235, + 0.004955563228577375, + -0.018627241253852844, + -0.026230502873659134, + 0.008544332347810268, + 0.002324670786038041, + -0.024154171347618103, + -0.014534328132867813, + 0.003316157031804323, + 0.008223173208534718, + 0.006202856544405222, + 0.03507358953356743, + -0.005482115317136049, + 0.015199053101241589, + -0.013287034817039967, + 0.0010316310217604041, + -0.01445963978767395, + 0.012211523950099945, + -0.006158043630421162, + -0.017297791317105293, + 0.030562419444322586, + -0.0024908522609621286, + 0.0003557026502676308, + 0.020345071330666542, + 0.0018009197665378451, + -0.011345140635967255, + 0.02499067783355713, + -0.01365300640463829, + 0.01126298401504755, + -0.006352233234792948, + -5.604534089798108e-5, + 0.021091952919960022, + -0.0037306766025722027, + 0.012428119778633118, + -0.011203233152627945, + -0.0021920993458479643, + -0.00246284413151443, + 0.024437986314296722, + 0.003936069086194038, + 0.034177329391241074, + -0.008006577380001545, + -0.004305775742977858, + -0.01861230470240116, + -0.004496230743825436, + -0.01998656801879406, + 0.0198222529143095, + -0.01681978814303875, + -0.016625598073005676, + 0.0005531596252694726, + -0.029457034543156624, + 0.0050227828323841095, + -0.03940550610423088, + 0.023422226309776306, + -0.012301149778068066, + 0.004447683691978455, + 0.008111140690743923, + 0.029471971094608307, + -0.013458817265927792, + -0.0034674005582928658, + -0.010157598182559013, + 0.0023694837000221014, + 0.005037720315158367, + -0.0013294502859935164, + -0.019911879673600197, + 0.015744276344776154, + 0.01577415131032467, + -0.01635671965777874, + -0.0011726050870493054, + -0.0047725774347782135, + -0.012570027261972427, + 0.007916951552033424, + 0.006602438632398844, + -0.01871686801314354, + 0.003965944517403841, + 0.00012358566164039075, + -0.02817239612340927, + -0.015109427273273468, + -0.025259556248784065, + 0.0041900090873241425, + -0.0014648226788267493, + 0.008230641484260559, + 0.005097471177577972, + 0.01859736628830433, + -0.004918219521641731, + -0.026992322877049446, + -0.01354097481817007, + 0.0016151327872648835, + 0.016401533037424088, + 0.0538053922355175, + 0.0269475094974041, + 0.00766301155090332, + -0.0034543301444500685, + 0.01631190814077854, + -0.02690269611775875, + -0.009701999835669994, + -0.012711934745311737, + -0.015654651448130608, + -0.012450526468455791, + 0.012345963157713413, + -0.0043767299503088, + 0.0025618060026317835, + 0.007745168637484312, + -0.012390775606036186, + 0.016550909727811813, + -0.002685041632503271, + -0.007002020720392466, + -0.006068417802453041, + 0.013451348058879375, + -0.003629847429692745, + 0.005706179887056351, + -0.014960050582885742, + -0.007812387775629759, + 0.015311085619032383, + -0.005164690315723419, + 0.0036783949472010136, + -0.011203233152627945, + -0.0045821224339306355, + 0.008551801554858685, + 0.025214742869138718, + -0.011561736464500427, + -0.02983047440648079, + -0.0019512297585606575, + -0.009567560628056526, + 0.01773098297417164, + 0.01053850818425417, + 0.012308618985116482, + 0.009328559041023254, + -0.005721117835491896, + -0.027559952810406685, + -0.006800362374633551, + 0.01264471560716629, + -0.019568312913179398, + -0.016326844692230225, + 0.005052658263593912, + -0.0027578624431043863, + -0.0012342227855697274, + -0.00357943307608366, + -0.001429345807991922, + 0.00043785967864096165, + 0.004705357830971479, + -0.006322357803583145, + -0.0023937574587762356, + 0.0006348498864099383, + 0.012741810642182827, + 0.02194339968264103, + -0.023571603000164032, + 0.004877140745520592, + -0.012159242294728756, + -0.0009009266505017877, + 0.013406535610556602, + 0.010904479771852493, + 0.028351647779345512, + -0.004847265314310789, + 0.012719403952360153, + 0.006068417802453041, + 0.007356789894402027, + -0.0045671844854950905, + -0.010956762358546257, + 0.026828009635210037, + -0.015445523895323277, + -0.01877661794424057, + -0.01895586960017681, + -0.016043029725551605, + -0.008193298242986202, + -0.007879607379436493, + -0.0157890897244215, + -0.008290392346680164, + 0.01901562139391899, + 0.008686239831149578, + -0.012689528986811638, + 0.011427298188209534, + 0.0047949836589396, + -0.015340960584580898, + 0.00493689114227891, + -0.039256129413843155, + -0.00895511731505394, + 0.008872960694134235, + 0.012921062298119068, + -0.024751676246523857, + -0.006632314063608646, + -0.016745099797844887, + -0.010120254009962082, + 0.012719403952360153, + -0.008200766518712044, + -0.00890283565968275, + -0.006598704494535923, + 0.004783780314028263, + 0.021794022992253304, + 0.006195387803018093, + 0.014026448130607605, + 0.00011920939869014546, + 0.024169107899069786, + -0.011569205671548843, + -0.0369856059551239, + -0.0005694977007806301, + 0.004231087863445282, + -0.0017393019516021013, + 0.023661227896809578, + -0.0161326564848423, + 0.01873180642724037, + 0.007128990720957518, + 0.021465394645929337, + 0.00497050117701292, + 0.015535149723291397, + -0.0019400265300646424, + -0.0036989341024309397, + 0.01448204554617405, + 0.02062888629734516, + -0.02303384803235531, + 0.0011324601946398616, + 0.01779073476791382, + 0.012368368916213512, + -0.004402870777994394, + -0.0032171951606869698, + 0.011158419772982597, + 0.02183883637189865, + -0.01693928800523281, + -0.024796489626169205, + 0.007162600290030241, + -0.011397422291338444, + -0.011681237258017063, + 0.0021267470438033342, + 0.014698641374707222, + -0.0030771547462791204, + 0.0025711420457810163, + -0.013077907264232635, + 0.026633819565176964, + -0.005317801143974066, + -0.013369191437959671, + 0.041735775768756866, + 0.016267094761133194, + 0.007879607379436493, + -0.02442304790019989, + -0.007341851945966482, + -0.020584072917699814, + 0.010643071494996548, + 0.011292858980596066, + -0.007558447774499655, + -0.013443879783153534, + -0.02528943121433258, + 0.015251334756612778, + -0.0007972967578098178, + 0.0009662788361310959, + 0.0016375392442569137, + 0.0052729882299900055, + 0.020464573055505753, + 0.001757974037900567, + 0.01068041566759348, + -0.015654651448130608, + -0.0004766042111441493, + 0.010919418185949326, + 0.021510208025574684, + 0.01681978814303875, + -0.0020950045436620712, + -0.0025506026577204466, + 0.0178056713193655, + -0.005803274922072887, + -0.020135944709181786, + -0.010531038977205753, + 0.011524392291903496, + 0.0075733857229352, + 0.004716561175882816, + -0.005482115317136049, + 0.006135637406259775, + -0.005175893660634756, + -0.006856378633528948, + -0.014257981441915035, + 0.001430279458872974, + 0.019284497946500778, + 0.0055381315760314465, + 0.01209202315658331, + -0.008820679038763046, + -0.028844591230154037, + 0.014810673892498016, + -0.007132724858820438, + 0.00492568826302886, + 0.015923528000712395, + -0.010658008977770805, + 0.009843907319009304, + 0.012428119778633118, + -0.01631190814077854, + -0.02159983292222023, + -0.015042207203805447, + 0.02269028127193451, + -0.0005648296792060137, + 0.014646359719336033, + -0.03588022291660309, + 0.003880053060129285, + 0.001556315808556974, + -0.004664279520511627, + -0.02142058126628399, + -0.007084177806973457 + ], + "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903": [ + -0.023844392970204353, + -0.0009752668556757271, + -0.00646961061283946, + 0.02846183255314827, + -0.031030375510454178, + 0.0013306685723364353, + 0.021097686141729355, + 0.0160051416605711, + -0.020088084042072296, + 0.019271496683359146, + -0.005957386456429958, + 0.048163894563913345, + 0.0019301190041005611, + -0.01481737568974495, + 0.002516578184440732, + -0.006324851419776678, + -0.024542205035686493, + 0.020162319764494896, + -0.0007112674065865576, + -0.02783825434744358, + 0.034771837294101715, + -0.018944861367344856, + -0.050183095037937164, + 0.005987080745398998, + 0.0012499376898631454, + -0.020993756130337715, + 0.008707806468009949, + 0.011684644035995007, + -0.04299711436033249, + -0.025180630385875702, + 0.01467632781714201, + 0.011254078708589077, + 0.01396366860717535, + 0.0012814876390621066, + 0.01566365733742714, + -0.05532018095254898, + -0.010489454492926598, + 0.011996432207524776, + -0.01512916386127472, + -0.03028802201151848, + -0.024289805442094803, + 0.021914273500442505, + 0.0008063814602792263, + 0.019880225881934166, + -0.056300088763237, + 0.04059188812971115, + 0.017430460080504417, + 0.0008448910666629672, + -7.440933404723182e-5, + -0.005961098242551088, + 0.002536993008106947, + -0.031178845092654228, + 0.024735217913985252, + 0.02703651413321495, + 0.05448874458670616, + -0.002754131332039833, + 0.011818267405033112, + 0.01513658743351698, + -0.001789999776519835, + -0.05579528585076332, + -0.0036690819542855024, + -0.005842322017997503, + 0.01618330553174019, + -0.006142974831163883, + 0.002128698630258441, + -0.035068776458501816, + 0.005062850657850504, + 0.0064473398961126804, + -0.025626040995121002, + -0.011981585063040257, + 0.018781542778015137, + 0.04023555666208267, + -0.023131733760237694, + 0.004572897218167782, + 0.009242300875484943, + 0.012523503042757511, + 0.03848360478878021, + 0.00019266392337158322, + 0.017682859674096107, + -0.004279667977243662, + 0.014164104126393795, + 0.0038602380082011223, + 0.016524787992239, + -0.005597345065325499, + 0.061288703233003616, + 0.04338313639163971, + -0.012360185384750366, + -0.035425107926130295, + -0.012642279267311096, + -0.03296049311757088, + -0.00094557274132967, + 0.04246261715888977, + -0.012404726818203926, + -0.0007762233726680279, + -0.024601593613624573, + -0.009902995079755783, + 0.05172719061374664, + 0.013778080232441425, + 0.008292088285088539, + -0.0062691750936210155, + 0.011484208516776562, + 0.024334346875548363, + -0.050687894225120544, + 0.022344838827848434, + 0.010496878065168858, + -0.0003458903229329735, + -0.004847567994147539, + -0.009992077946662903, + -0.04468967765569687, + 0.04480845481157303, + 0.022626934573054314, + -0.048609305173158646, + 0.014141833409667015, + -0.00032315574935637414, + -0.04308619350194931, + -0.049470435827970505, + -0.0028821872547268867, + -0.03248538821935654, + 0.017979800701141357, + -0.01622784696519375, + 0.05923980847001076, + 0.03961198031902313, + 0.018543990328907967, + -0.0028970343992114067, + -0.012850138358771801, + -0.016732648015022278, + -0.00798030011355877, + -0.010675042867660522, + -0.004413291346281767, + 0.03711767494678497, + -0.0006323923589661717, + -0.016925659030675888, + 0.017994647845625877, + -0.008358900435268879, + 0.036939509212970734, + 0.018469754606485367, + -0.012761056423187256, + 0.03845391049981117, + -0.010734431445598602, + 0.021557943895459175, + -0.03955259174108505, + -0.02892209030687809, + -0.022626934573054314, + 0.009427889250218868, + 0.024141333997249603, + -0.011588137596845627, + -0.02994653955101967, + 0.04765909165143967, + -0.021498557180166245, + 0.033732540905475616, + -0.0518459677696228, + -0.0033368789590895176, + 0.025180630385875702, + -0.022909028455615044, + 0.009658019058406353, + -0.0011088905157521367, + -0.019687214866280556, + 0.035246942192316055, + 0.03019893914461136, + 0.01331782154738903, + -0.011810843832790852, + -0.05873500555753708, + 0.01648024655878544, + 0.0021472573280334473, + 0.012308220379054546, + -0.014112139120697975, + 0.03863207623362541, + 0.007638817187398672, + -0.04638224467635155, + 0.02875877358019352, + -0.019909920170903206, + -0.04142332449555397, + 0.021350085735321045, + -0.0026743283960968256, + 0.018425213173031807, + -0.010741855017840862, + 0.049767374992370605, + 0.02693258412182331, + 0.02682865411043167, + -0.03952289745211601, + 0.007623970042914152, + -0.025284558534622192, + 0.0144461989402771, + -0.008819159120321274, + 0.007794711273163557, + 0.035039082169532776, + 0.02553695999085903, + 0.014564975164830685, + 0.006874192971736193, + 0.001346443546935916, + 0.021914273500442505, + -0.024750065058469772, + 0.02722952514886856, + 0.036286238580942154, + -0.02688804268836975, + -0.04053249955177307, + -0.019330885261297226, + -0.0049626328982412815, + -0.015233092941343784, + 0.036286238580942154, + -0.019954461604356766, + -0.0565970279276371, + -0.03016924485564232, + 0.04264078289270401, + -0.04121546447277069, + 0.014223492704331875, + -0.020889826118946075, + -0.005578786134719849, + 0.023161428049206734, + -0.04059188812971115, + 0.018930014222860336, + -0.018514296039938927, + -0.006736857816576958, + 0.0030770550947636366, + -0.020785897970199585, + -0.008106499910354614, + -0.002364395884796977, + 0.03361376374959946, + 0.01323616225272417, + -0.035514190793037415, + -0.033999789506196976, + 0.015485493466258049, + 0.010051465593278408, + -0.04581805691123009, + -0.05434027314186096, + -0.018440060317516327, + -0.024690676480531693, + 0.013050573877990246, + -0.07845191657543182, + -0.014527857303619385, + 0.06425811350345612, + 0.01504750456660986, + 0.0017473144689574838, + -0.037503696978092194, + -0.020726509392261505, + 0.024972770363092422, + 0.020919520407915115, + -0.005036868155002594, + 0.005593633279204369, + -0.024794606491923332, + 0.03370284661650658, + 0.02673957124352455, + 0.015002964064478874, + -0.005025732796639204, + 0.009234877303242683, + -0.017207752913236618, + -0.01628723554313183, + 0.047985728830099106, + 0.02682865411043167, + -0.03866177052259445, + 0.012694244273006916, + -0.011692066676914692, + 0.0012870553182438016, + -0.012040973640978336, + -0.037384919822216034, + 0.04608530178666115, + 0.012456690892577171, + -0.012835291214287281, + 0.0008411792805418372, + -0.031861811876297, + 0.024898534640669823, + 0.010830936953425407, + 0.019880225881934166, + -0.019464507699012756, + 0.047748174518346786, + -0.02783825434744358, + 0.03922595828771591, + -0.05217260122299194, + 0.012694244273006916, + 0.00645105168223381, + 0.004424426704645157, + 0.0029007461853325367, + 0.0049589211121201515, + -0.024423429742455482, + 0.017415612936019897, + 0.01318419724702835, + -0.006005639676004648, + 0.0075905644334852695, + 0.019642673432826996, + 0.025180630385875702, + 0.010571113787591457, + -0.023087192326784134, + -0.015530034899711609, + 0.022686321288347244, + 0.0038602380082011223, + -0.004758485592901707, + 0.013429174199700356, + 0.005578786134719849, + -0.021706415340304375, + -0.023933475837111473, + -0.005886862985789776, + -0.009583783335983753, + 0.021142227575182915, + 0.010415218770503998, + 0.03254477679729462, + 0.020281096920371056, + -0.014616940170526505, + -0.0022474750876426697, + -0.019063636660575867, + 0.0031382993329316378, + -0.004621150437742472, + -0.02624961920082569, + -0.021216461434960365, + -0.02768978476524353, + 0.02583390101790428, + -0.04103729873895645, + 0.036286238580942154, + 0.025447877123951912, + -0.02770463190972805, + 0.005549092311412096, + 0.04474906623363495, + -0.03052557446062565, + -0.012144902721047401, + -0.018054036423563957, + 0.0065846750512719154, + -0.0004247653705533594, + 0.006102145649492741, + -0.01587151736021042, + -0.001085691968910396, + -0.035989295691251755, + 0.01606452837586403, + -0.0028710521291941404, + -0.07595760375261307, + 0.04706520959734917, + 0.03150548040866852, + -0.056300088763237, + 0.02752646617591381, + -0.0001409311662428081, + -0.036939509212970734, + -0.0062840222381055355, + -0.01434226892888546, + -0.03055526874959469, + -0.03043649159371853, + 0.0150400809943676, + -0.013124809600412846, + -0.04575866833329201, + -0.05517170950770378, + -0.0157081987708807, + 0.00790606439113617, + -0.0315648689866066, + -0.008173312060534954, + -0.012159749865531921, + 0.002540704794228077, + -0.033940400928258896, + 0.018529143184423447, + -0.008373747579753399, + 0.034385811537504196, + 0.015366717241704464, + -0.036048684269189835, + 0.011580714024603367, + 0.0008212285465560853, + 0.017771942541003227, + 0.035425107926130295, + 0.0010012491839006543, + 0.049678295850753784, + -0.024438276886940002, + -0.011476784944534302, + -0.022819945588707924, + 0.012285949662327766, + 0.0021621044725179672, + -0.017549235373735428, + -0.03355437517166138, + -0.01569335162639618, + -0.03046618588268757, + -0.021067991852760315, + -0.018187660723924637, + -0.0003869517531711608, + 0.011387702077627182, + 0.034979697316884995, + 0.03367315232753754, + -0.03756308555603027, + 0.03717706352472305, + 0.01619815267622471, + -0.017549235373735428, + -0.005318962503224611, + 0.0026873196475207806, + 0.023799851536750793, + -0.0057606627233326435, + -0.036880120635032654, + 0.024943076074123383, + 0.01505492813885212, + -0.005983368959277868, + -0.005886862985789776, + -0.02829851396381855, + 0.018336130306124687, + 0.019761448726058006, + -0.024200722575187683, + -0.02708105370402336, + -0.0038899320643395185, + 0.009873300790786743, + -0.00030181309557519853, + 0.020711662247776985, + -0.022567545995116234, + -0.005408044904470444, + -0.021587638184428215, + 0.036850426346063614, + -0.020088084042072296, + -0.011454514227807522, + -0.0312679298222065, + -0.007809558417648077, + -3.674069739645347e-5, + -0.036078378558158875, + -0.0037488851230591536, + -0.0028005284257233143, + 0.009754524566233158, + -0.019004248082637787, + -0.006261751521378756, + -0.008804311975836754, + 0.022567545995116234, + 0.009925265796482563, + 0.005794068798422813, + 0.01400821004062891, + 0.023874087259173393, + 0.011744031682610512, + 0.05537956953048706, + -0.011684644035995007, + 0.019226955249905586, + 0.05386516824364662, + -0.04056219384074211, + -0.005103680305182934, + 0.035573579370975494, + 0.03786002844572067, + -0.001160855288617313, + 0.005307827144861221, + -0.020711662247776985, + 0.007249081507325172, + 0.04765909165143967, + 0.0009650595020502806, + -0.04480845481157303, + -0.023161428049206734, + -0.022523004561662674, + 0.0026019487995654345, + 0.021617332473397255, + -0.006955851800739765, + -0.03114915080368519, + -0.030362257733941078, + 0.0008745851810090244, + -0.04525386914610863, + -0.019850531592965126, + -0.013050573877990246, + 0.012130055576562881, + 0.04486784338951111, + -0.010778971947729588, + 0.00647703418508172, + 0.018024342134594917, + -0.00750890513882041, + -0.0016972055891528726, + 0.028743926435709, + 0.025433029979467392, + -0.017786789685487747, + 0.011721760965883732, + 0.023978017270565033, + -0.04356130212545395, + 0.0018261895747855306, + 0.008358900435268879, + -0.0019802278839051723, + 0.0006370320916175842, + -0.016361471265554428, + 0.013161927461624146, + -0.024675829336047173, + -0.0037284702993929386, + -0.02914479747414589, + 0.030362257733941078, + -0.0011200257577002048, + 0.01646539941430092, + -0.06066512688994408, + 0.018365824595093727, + 0.023265358060598373, + 0.002106427913531661, + -0.023458369076251984, + -0.022567545995116234, + 0.0077650174498558044, + -0.03174303472042084, + 0.005508262664079666, + -0.010615654289722443, + -0.020266249775886536, + -0.012003855779767036, + 0.020667120814323425, + 0.01538156345486641, + -0.020488955080509186, + -0.009761948138475418, + -0.03768186271190643, + -0.010318713262677193, + -0.008522218093276024, + 0.033198047429323196, + -0.03257447108626366, + 0.006321139633655548, + -0.017682859674096107, + -0.0003092366096097976, + -0.050925448536872864, + 0.018573684617877007, + -0.00028673402266576886, + 0.003997573629021645, + 0.024512510746717453, + -0.005233591888099909, + -0.02910025604069233, + -0.022151827812194824, + -0.02647232450544834, + -0.017742248252034187, + -0.03088190406560898, + 0.0518459677696228, + -0.050183095037937164, + 0.0037377497646957636, + 0.013807774521410465, + -0.0032181022688746452, + 0.022285450249910355, + -0.022136980667710304, + 0.006168957334011793, + 0.00035168995964340866, + -0.004042114596813917, + -0.04353160783648491, + 0.011083337478339672, + -0.010370678268373013, + -0.0009353653877042234, + -0.008581605739891529, + 0.023458369076251984, + -0.011662373319268227, + -0.009442736394703388, + 0.03361376374959946, + -0.009732253849506378, + 0.021261002868413925, + 0.020399874076247215, + 0.016376318410038948, + -0.00681109307333827, + -0.020058391615748405, + -0.010823513381183147, + 0.007631393615156412, + 0.015351870097219944, + 0.011677220463752747, + -0.02619023062288761, + 0.004457832779735327, + 0.004684250336140394, + -0.02951597422361374, + 0.037266142666339874, + 0.00825497042387724, + -0.02978322096168995, + 0.00414233235642314, + 0.035543885082006454, + 0.024037405848503113, + 0.02590813674032688, + -0.023458369076251984, + 0.02731860801577568, + -0.0069410051219165325, + 0.010868054814636707, + 0.010058889165520668, + 0.017742248252034187, + -0.010177666321396828, + 0.02975352667272091, + -0.010734431445598602, + 0.012545773759484291, + -0.04272986575961113, + 0.03984953463077545, + 0.00753488764166832, + 0.007423534523695707, + -0.003368428908288479, + -0.02994653955101967, + 0.025418182834982872, + -0.023785004392266273, + -0.020192014053463936, + -0.0030956140253692865, + -0.004034691024571657, + 0.024274958297610283, + 0.01328812725841999, + -0.0012425141176208854, + -0.025492418557405472, + 0.021869733929634094, + -0.019583284854888916, + -0.0006546629592776299, + -0.006339698564261198, + 0.008648417890071869, + 0.008024840615689754, + 0.023532604798674583, + 0.04691673815250397, + 0.007623970042914152, + -0.011795996688306332, + 0.04210628941655159, + -0.006681181024760008, + 0.005872015841305256, + -0.021379780024290085, + -0.008121347054839134, + 0.010519148781895638, + -0.0038899320643395185, + -0.0062691750936210155, + 0.008358900435268879, + 0.007631393615156412, + 0.009064136072993279, + -0.021691568195819855, + -0.009695135988295078, + -0.013837468810379505, + 0.034267034381628036, + 0.009791642427444458, + 0.035603273659944534, + -0.010118277743458748, + 0.011469361372292042, + -0.036137767136096954, + 0.023042650893330574, + 0.0014800672652199864, + 0.023027803748846054, + -0.019271496683359146, + -0.014936151914298534, + 0.014602093026041985, + 0.02966444380581379, + 0.018098577857017517, + -0.035543885082006454, + 0.006027910392731428, + 0.017341377213597298, + -0.0082252761349082, + 0.008559335954487324, + 0.011454514227807522, + 0.033494990319013596, + -0.0144461989402771, + 0.018826084211468697, + 0.00756087014451623, + -0.0026149400509893894, + 0.012055820785462856, + -0.00752746406942606, + 0.011358007788658142, + 0.031208539381623268, + 0.0020785897504538298, + -0.010593383572995663, + 0.01437938679009676, + -0.04433334991335869, + 0.051519330590963364, + 0.01437938679009676, + -0.011046219617128372, + -3.023060571649694e-6, + 0.008551912382245064, + -0.03934473544359207, + -0.01567850448191166, + -0.010875478386878967, + 0.01325100939720869, + -0.014223492704331875, + 0.036197155714035034, + -0.035276636481285095, + 0.035989295691251755, + 0.006603233981877565, + -0.0009864021558314562, + 0.00785409938544035, + 0.0054711452685296535, + -0.011261502280831337, + -0.005523109808564186, + 0.00048206577775999904, + 0.009828760288655758, + 0.04430365562438965, + -0.009554089047014713, + 0.0285954549908638, + -0.04418487846851349, + 0.036405015736818314, + 0.033791929483413696, + 0.017668012529611588, + -0.016747495159506798, + 0.015277634374797344, + 0.005560227669775486, + 0.02929326705634594, + -0.007286199368536472, + -0.018840931355953217, + 0.007260216865688562, + -0.0026854637544602156, + 0.007397552486509085, + -0.01291695050895214, + 0.01509946957230568, + -0.020592885091900826, + 0.00679624592885375, + 0.0018846498569473624, + 0.04005739465355873, + -0.005753239616751671, + 0.013406903482973576, + -0.003637532005086541, + 0.01472086925059557, + 0.017890717834234238, + -0.019984155893325806, + -0.009041865356266499, + 0.02798672579228878, + 0.021305544301867485, + -0.007809558417648077, + -0.0034927730448544025, + 0.02660594880580902, + -0.033257436007261276, + 0.01649509370326996, + 4.6803066652501e-5, + -0.02944173850119114, + -0.03313865885138512, + -0.025982370600104332, + 0.008358900435268879, + 0.02665049023926258, + -0.010920019820332527, + -0.0031401552259922028, + 0.021825192496180534, + -0.03895870968699455, + -0.015500340610742569, + 0.0064065102487802505, + 0.019835684448480606, + -0.008507370948791504, + 0.0014141834108158946, + -0.0049886154010891914, + -0.004699097480624914, + 0.006035333499312401, + -0.01512916386127472, + 0.03367315232753754, + -0.019301190972328186, + -0.025462724268436432, + -0.03174303472042084, + -0.0023718192242085934, + -0.018811237066984177, + 0.002930440241470933, + 0.035306330770254135, + -0.006989257875829935, + -0.034623365849256516, + -0.010229630395770073, + -0.010652772150933743, + 0.006168957334011793, + 0.03296049311757088, + 0.0009622756624594331, + 0.021676721051335335, + 0.024720370769500732, + -0.011484208516776562, + -0.0008769050473347306, + 0.010541419498622417, + -0.02826881967484951, + 0.012345338240265846, + -0.0024980194866657257, + 0.019509049132466316, + 0.00409779092296958, + -0.037236448377370834, + -0.019390271976590157, + 0.010400372557342052, + 0.012701667845249176, + -0.009390771389007568, + 0.014178951270878315, + -0.00717855803668499, + 0.018573684617877007, + -0.01682172901928425, + -0.016524787992239, + -0.0010643493151292205, + -0.018425213173031807, + -0.0010736286640167236, + 0.0005558371776714921, + -0.0043204971589148045, + 0.004398444201797247, + -0.02719983085989952, + 0.01294664479792118, + -0.021275850012898445, + 0.016717800870537758, + -0.013109962455928326, + 0.021350085735321045, + -0.020251402631402016, + 0.02898147888481617, + -0.0077353231608867645, + 7.487330731237307e-5, + 0.003108605043962598, + 0.02719983085989952, + -0.006139263045042753, + 0.033168353140354156, + 0.02809065580368042, + -0.020934367552399635, + 0.011075913906097412, + 0.011706913821399212, + 0.01584182307124138, + -0.008737500756978989, + 0.0868256613612175, + 0.0062914458103477955, + -0.01481737568974495, + 0.009873300790786743, + -0.010303866118192673, + -0.017133517190814018, + -0.002134266309440136, + -0.021825192496180534, + 0.01472829282283783, + 0.025388488546013832, + -0.004732503555715084, + 0.033465296030044556, + 0.001067133154720068, + 0.020043544471263885, + 0.02810550294816494, + -0.017578929662704468, + -0.007423534523695707, + -0.005534245166927576, + -0.004004996735602617, + 0.0010958992643281817, + -0.002997252158820629, + -0.011246655136346817, + -0.033257436007261276, + 0.004888397641479969, + -0.030941292643547058, + 0.04516478627920151, + -0.019004248082637787, + 0.04688704386353493, + -0.010251901112496853, + -0.020563190802931786, + 0.0049700564704835415, + -0.0008314359001815319, + 0.008551912382245064, + 0.0028246550355106592, + 0.014535280875861645, + 0.011283772997558117, + -0.014988116919994354, + 0.020874978974461555, + -0.03883993253111839, + -0.013006032444536686, + 0.002325422130525112, + 0.033287130296230316, + -0.023324746638536453, + 0.05944766476750374, + 0.02693258412182331, + -0.006673757918179035, + -0.00322738173417747, + -0.023710770532488823, + -0.021350085735321045, + 0.005794068798422813, + 0.027184983715415, + -0.013466292060911655, + -0.009153218008577824, + -0.018128272145986557, + 0.011001678183674812, + -0.01566365733742714, + -0.009658019058406353, + -0.0019616689532995224, + -0.012137479148805141, + 0.0037952822167426348, + -0.003372140694409609, + 0.0008973197545856237, + -0.002939719706773758, + 0.009732253849506378, + -0.0033016169909387827, + -0.02746707759797573, + -0.009561512619256973, + 0.005077697802335024, + -0.0011636390117928386, + 0.020919520407915115, + 0.03162425756454468, + -0.018959708511829376, + 0.023666229099035263, + 0.009665442630648613, + 0.0038750851526856422, + 0.002548128366470337, + 0.04638224467635155, + -0.035217247903347015, + -0.022077592089772224, + -0.033970095217227936, + 0.03058496303856373, + -0.012167173437774181, + -0.036612872034311295, + -0.007638817187398672, + -0.014839645475149155, + -0.002343981061130762, + 0.0012415861710906029, + 0.012798173353075981, + 0.02771947905421257, + 0.017816483974456787, + 0.03192120045423508, + 0.024364041164517403, + -0.03009500913321972, + 0.018707307055592537, + 0.03144609183073044, + -0.03085220977663994, + 0.012627432122826576, + -0.008596452884376049, + 0.023636534810066223, + 0.019568437710404396, + 0.031178845092654228, + 0.011781149543821812, + -0.003190264105796814, + -0.004428138490766287, + 0.00722681125625968, + -0.007004105020314455, + 0.0006393518997356296, + 0.0070634931325912476, + 0.004558050073683262, + -0.007289911154657602, + -0.0034408082719892263, + -0.005901710130274296, + -0.009962383657693863, + 0.0007906064274720848, + 0.050776977092027664, + -0.008811735548079014, + -0.023606840521097183, + -0.01516628172248602, + 0.01476541068404913, + -0.025314252823591232, + -0.001804846921004355, + -0.019924767315387726, + 0.020385026931762695, + 0.011454514227807522, + -0.006109569221735001, + -0.04409579560160637, + 0.02645747736096382, + 0.012575468048453331, + -0.025299405679106712, + -0.0071674226783216, + -0.01439423393458128, + 0.017742248252034187, + -0.008856276981532574, + -0.008076805621385574, + -0.019108178094029427, + 0.00685563450679183, + -0.022344838827848434, + 0.0037006321363151073, + -0.024839147925376892, + 0.020474107936024666, + 0.004042114596813917, + 0.010318713262677193, + -0.02663564309477806, + -0.006027910392731428, + 0.022033050656318665, + 0.0158566702157259, + -0.04388793557882309, + 0.007816982455551624, + 0.017564082518219948, + -0.009242300875484943, + 0.014847069047391415, + 0.023562299087643623, + 0.023102039471268654, + -0.002347692847251892, + -0.009227453731000423, + 0.062179528176784515, + 0.0017250438686460257, + -0.006554981227964163, + 0.009591206908226013, + -0.010682466439902782, + -0.019954461604356766, + 0.01399336289614439, + 0.0009186624083667994, + 0.02760070189833641, + 0.011989008635282516, + 0.02887755073606968, + -0.005292980466037989, + 0.00045492348726838827, + 0.0011135302484035492, + 0.009583783335983753, + -0.0030751992017030716, + -0.00794318225234747, + 0.00828466471284628, + 0.025729971006512642, + -0.009554089047014713, + 0.012167173437774181, + -0.008514794521033764, + 0.006877904757857323, + 0.012523503042757511, + -0.031238233670592308, + -0.020592885091900826, + -0.019880225881934166, + 0.019063636660575867, + 0.014616940170526505, + -0.020785897970199585, + -0.015366717241704464, + 0.021097686141729355, + -0.0137038454413414, + 0.03355437517166138, + 0.005367215722799301, + -0.022329991683363914, + 0.009457583539187908, + 0.03774125128984451, + -0.0017668012296780944, + -0.001484706881456077, + 0.00753488764166832, + 0.035098470747470856, + -0.002369963563978672, + 0.0012304509291425347, + 0.018024342134594917, + 0.012092937715351582, + -0.0056344629265367985, + -0.02964959666132927, + 0.007393840700387955, + 0.009420465677976608, + -0.020548343658447266, + -0.009361077100038528, + -0.04718398675322533, + -0.00040295874350704253, + 0.006209786981344223, + -0.0024980194866657257, + -0.020088084042072296, + -0.00714886374771595, + -0.01401563361287117, + 0.00682965200394392, + -0.006740569602698088, + 0.0013714979868382215, + -0.050955142825841904, + -0.004012420307844877, + -0.020830437541007996, + 0.030733434483408928, + 0.034029483795166016, + -0.020355332642793655, + -0.018247047439217567, + -0.02694743126630783, + -0.02914479747414589, + 0.01431999821215868, + -0.008032264187932014, + 0.022834792733192444, + 0.009190335869789124, + -0.005875727627426386, + 0.031089764088392258, + -0.03824605047702789, + -0.021483710035681725, + 0.012196867726743221, + -0.0020841574296355247, + -0.019226955249905586, + -0.025462724268436432, + -0.022537851706147194, + -0.012100361287593842, + -0.035632967948913574, + -0.01515885815024376, + -0.0029063138645142317, + -0.02856576070189476, + 0.05380577966570854, + 0.02910025604069233, + 0.02669503167271614, + -0.020696815103292465, + -0.010727007873356342, + -0.0009038153220899403, + 0.007037511095404625, + 0.0057792216539382935, + -0.03916656970977783, + -0.020266249775886536, + -0.010756702162325382, + 0.01331782154738903, + 0.026338700205087662, + 0.021929120644927025, + -0.020815590396523476, + -0.0028042402118444443, + 0.04471937194466591, + -0.01475056353956461, + -0.022537851706147194, + 0.0023940899409353733, + 0.005036868155002594, + -0.011692066676914692, + -0.003646811470389366, + 0.010058889165520668, + 0.0003572576097212732, + 0.017534388229250908, + 0.00019533175509423018, + -0.021587638184428215, + 0.006632928270846605, + -0.003919626120477915, + -0.022849639877676964, + 0.018128272145986557, + -0.020459260791540146, + 0.007456940598785877, + -0.06740569323301315, + -0.021973662078380585, + 0.004379885271191597, + 3.65667074220255e-5, + -0.003182840533554554, + -0.006992969661951065, + 0.0075905644334852695, + 0.018321283161640167, + 0.008589029312133789, + -0.017623471096158028, + 0.003349869977682829, + -0.009606054052710533, + 0.008648417890071869, + 0.03132731467485428, + -0.006725722458213568, + 0.0008365395478904247, + -0.019078483805060387, + 0.0016044114017859101, + 0.035840824246406555, + -0.019731754437088966, + 0.006213498767465353, + 0.004869838710874319, + 0.03352468088269234, + -0.012657126411795616, + -0.0004535315674729645, + 0.06384240090847015, + -0.03189150616526604, + 0.024260111153125763, + -0.021186767145991325, + -0.008299511857330799, + 0.008017417043447495, + 0.010623077861964703, + -0.005185339134186506, + -0.005385774187743664, + 0.0035503054969012737, + 0.006647775415331125, + 0.0032218140549957752, + 0.008529641665518284, + 0.020355332642793655, + -0.008715230040252209, + 0.019390271976590157, + 0.0302286334335804, + -0.017593776807188988, + -0.005586209706962109, + -0.00028302226564846933, + -0.03076312690973282, + -0.010170242749154568, + -0.021557943895459175, + 0.002533281221985817, + 0.002967558102682233, + -0.0035428819246590137, + 0.00016459368634968996, + 0.015574575401842594, + -0.020860131829977036, + 0.010444913059473038, + -0.007022663950920105, + 0.019093330949544907, + -0.036850426346063614, + 0.011996432207524776, + 0.00800257083028555, + 0.03863207623362541, + 0.011038796044886112, + 0.0070857638493180275, + 0.008715230040252209, + -0.023072345182299614, + 0.01508462242782116, + 0.0016331776278093457, + 0.04059188812971115, + 0.03189150616526604, + -0.0064399163238704205, + 0.012501232326030731, + -0.008878547698259354, + -0.005938827525824308, + 0.01582697592675686, + 0.007360434625297785, + 0.0135553739964962, + 0.011216960847377777, + 0.009138370864093304, + 0.00037465651985257864, + -0.01354052685201168, + -0.031030375510454178, + 0.0026724725030362606, + -0.01679203473031521, + -0.002364395884796977, + -0.022389380261301994, + -0.005281845107674599, + -0.018766695633530617, + -0.00721938768401742, + 0.0010198081145063043, + 0.011291196569800377, + 0.033999789506196976, + -0.00028650203603319824, + 0.023978017270565033, + 0.017148364335298538, + -0.021112533286213875, + 0.04549141973257065, + 0.011499055661261082, + 0.009821336716413498, + -0.009977230802178383, + 0.00034542634966783226, + -0.006365681067109108, + -0.0028153755702078342, + -0.024943076074123383, + -0.01290952693670988, + -0.008447982370853424, + 0.0038491026498377323, + 0.014950999058783054, + -0.0142977274954319, + -0.014505586586892605, + -0.009888147935271263, + -0.005081409588456154, + -0.0005576930707320571, + -0.01639116369187832, + -0.0012239553034305573, + -0.020058391615748405, + 0.017415612936019897, + -0.01625754125416279, + 0.007661087904125452, + -0.0063025811687111855, + -0.010682466439902782, + -0.0015246084658429027, + 0.013414327055215836, + -0.0009163425420410931, + -0.02590813674032688, + -0.024438276886940002, + 0.013726115226745605, + -0.0011868375586345792, + -0.01642085798084736, + -5.4632575483992696e-5, + 0.02653171308338642, + -0.011001678183674812, + -0.006183804478496313, + 0.00824012327939272, + 0.0150771988555789, + -0.005203897599130869, + 0.017757095396518707, + 0.02688804268836975, + -0.010133124887943268, + 0.03000592812895775, + -0.04427396133542061, + 0.012620008550584316, + 0.004858703352510929, + -0.004439273849129677, + 0.01404532790184021, + 3.894455949193798e-5, + 0.010741855017840862, + -0.008143617771565914, + -0.011090761050581932, + -0.008811735548079014, + -0.023517757654190063, + -0.01579728163778782, + 0.00013095578469801694, + 0.011053643189370632, + -0.012055820785462856, + -0.0056121922098100185, + -0.021424321457743645, + -0.017519541084766388, + -0.005411756690591574, + 0.008351476863026619, + -0.018633071333169937, + -0.01588636450469494, + -0.0037229026202112436, + 0.020815590396523476, + -0.010778971947729588, + 0.010058889165520668, + 0.0014113995712250471, + -0.033465296030044556, + 0.022033050656318665, + -0.017222600057721138, + -0.01677718758583069, + -0.007442093454301357, + 0.0012666406109929085, + 0.0028654844500124454, + -0.00786152295768261, + 0.008321782574057579, + -0.00678511057049036, + -0.010615654289722443, + -0.009472430683672428, + 0.03129762411117554, + -0.006116992793977261, + -0.01296891551464796, + 0.033049575984478, + -0.020355332642793655, + 0.024913381785154343, + 0.009568936191499233, + 0.004353903234004974, + 0.017831331118941307, + 0.009858453646302223, + 0.007278775796294212, + -0.00645847525447607, + -0.00021806632867082953, + 0.02721467800438404, + 0.010311289690434933, + 0.0028562049847096205, + 0.009761948138475418, + 0.006068739574402571, + 0.02975352667272091, + 0.0005354224122129381, + -0.018826084211468697, + -0.01679203473031521, + 0.0006820372655056417, + -0.016613870859146118, + 0.008366324007511139, + -0.00010711928916862234, + -0.014490739442408085, + 0.018172813579440117, + -0.03842421621084213, + 0.015515187755227089, + 0.020058391615748405, + -0.00756087014451623, + -0.012285949662327766, + 0.0026075164787471294, + 0.004777044523507357, + -0.0032589316833764315, + 0.013525680638849735, + -0.01680688187479973, + 0.013495986349880695, + -0.011194690130650997, + -0.004049538169056177, + -0.012360185384750366, + 0.010177666321396828, + 0.011358007788658142, + -0.00027165497886016965, + -0.017994647845625877, + -0.003192119998857379, + 0.008989900350570679, + -0.018573684617877007, + -0.025967523455619812, + -0.009249724447727203, + 0.013748385943472385, + -0.0035428819246590137, + 0.015277634374797344, + -0.0002902138221543282, + 0.00757942907512188, + 0.0039010674227029085, + 0.017697706818580627, + 0.016910811886191368, + -0.0022456191945821047, + 0.018796389922499657, + 0.008730077184736729, + -0.024972770363092422, + -0.008151041343808174, + -0.017549235373735428, + 0.018796389922499657, + 0.02899632602930069, + 0.021112533286213875, + -0.02804611437022686, + -0.013748385943472385, + 0.013057997450232506, + 0.013154503889381886, + 0.01363703329116106, + -0.014936151914298534, + -0.023250510916113853, + 0.02813519723713398, + -0.004877262283116579, + 0.009413042105734348, + 0.01438681036233902, + -0.011001678183674812, + 0.009413042105734348, + -0.0028970343992114067, + -0.0034667907748371363, + 0.0022660340182483196, + 8.049895404838026e-5, + -0.036672260612249374, + 0.0044652558863162994, + -0.020236555486917496, + -0.005523109808564186, + 0.03358406946063042, + 0.023799851536750793, + -0.023012958467006683, + 0.007304758299142122, + -0.009969807229936123, + -0.009984654374420643, + 0.0019226954318583012, + 0.014126986265182495, + 0.005222456529736519, + -0.010281595401465893, + -0.0008397873607464135, + -0.002137978095561266, + 0.0077575938776135445, + -4.651308336178772e-5, + -0.01587151736021042, + -0.0069447169080376625, + 0.005526821594685316, + 0.013414327055215836, + -0.00754231121391058, + 0.024319499731063843, + -0.000706627732142806, + 0.020162319764494896, + -0.004238838329911232, + 0.003941896837204695, + -0.0011905493447557092, + 0.010185089893639088, + 0.0006671901792287827, + 0.0051222387701272964, + -0.019776295870542526, + 0.0015199687331914902, + -0.0030417933594435453, + 0.012389879673719406, + 0.022255757823586464, + 0.02863999642431736, + -0.04059188812971115, + -0.033940400928258896, + -0.02944173850119114, + -0.011283772997558117, + -0.00019637569494079798, + 0.007297334726899862, + -0.0016712232027202845, + -0.004758485592901707, + 0.005344945006072521, + 0.0023959458339959383, + 0.008863700553774834, + -0.019791143015027046, + -0.012612584978342056, + -0.005033156368881464, + 0.0017538100946694613, + 0.01479510497301817, + -0.006491880863904953, + -0.006681181024760008, + -0.010378101840615273, + 0.009420465677976608, + -0.011402549222111702, + 0.02944173850119114, + 0.0035651526413857937, + -0.04077005386352539, + 0.006076163146644831, + 0.01601998694241047, + 0.004706521052867174, + 0.008344053290784359, + -0.015277634374797344, + -0.012315643951296806, + 0.0286696907132864, + -0.0010782683966681361, + 0.019137872382998466, + 0.013072844594717026, + -0.019642673432826996, + -0.01363703329116106, + 0.001484706881456077, + 0.005838610231876373, + 0.0002428887819405645, + 0.007623970042914152, + 0.024364041164517403, + -0.005563939455896616, + 0.012107784859836102, + 0.019434813410043716, + -0.00025379209546372294, + 0.02595267817378044, + 0.017549235373735428, + 0.021765803918242455, + -0.018737001344561577, + -0.0010188801679760218, + 0.004060673527419567, + 0.022107286378741264, + -0.002136122202500701, + 0.004561761859804392, + 0.06054634973406792, + 0.013013456016778946, + 0.034415505826473236, + -0.04365038499236107, + -0.025136088952422142, + -0.011951890774071217, + -0.004357615020126104, + 0.002340269275009632, + 0.022523004561662674, + 0.014839645475149155, + 0.024616440758109093, + 0.010860631242394447, + 0.013065421022474766, + 0.004780756309628487, + -0.02935265563428402, + 0.0032477963250130415, + -0.0028413578402251005, + -0.02614568918943405, + 0.005805204156786203, + -0.024141333997249603, + 0.0013807774521410465, + -0.004598879721015692, + 0.007438381668180227, + -0.005229880101978779, + -0.010652772150933743, + 0.014847069047391415, + -0.009034441784024239, + -0.02915964461863041, + -0.014201221987605095, + -0.012233985587954521, + -0.004635997582226992, + -0.005478568375110626, + 0.017371071502566338, + 0.021053144708275795, + -0.00787637010216713, + -0.00721196411177516, + 0.00037929622340016067, + 0.002726293168962002, + 0.019345730543136597, + -0.00794318225234747, + 0.005348656792193651, + -0.030733434483408928, + 0.011283772997558117, + -0.02855091355741024, + -0.015619116835296154, + -0.002566687064245343, + 0.017222600057721138, + -0.0017064850544556975, + 0.020622579380869865, + -0.0001670295314397663, + 0.005029444582760334, + 0.006065027788281441, + 0.011276349425315857, + 0.019167566671967506, + -0.03361376374959946, + -0.023725617676973343, + 0.010385525412857533, + 0.019657520577311516, + -0.014520433731377125, + -0.011098184622824192, + -0.0034816376864910126, + 0.006176380906254053, + 0.0263683944940567, + 0.012523503042757511, + 0.0002899818355217576, + -0.00341853778809309, + 0.0037396056577563286, + 0.00342224957421422, + -0.0136667275801301, + -0.011766302399337292, + 0.013369785621762276, + -0.01567850448191166, + -0.017771942541003227, + 0.005048003513365984, + 0.010957136750221252, + 0.008782041259109974, + 0.0034296729136258364, + -0.014616940170526505, + -0.004654556047171354, + 0.062357690185308456, + -0.01356279756873846, + 0.0294120442122221, + -0.02816489152610302, + -0.005252150818705559, + -0.04106699302792549, + -0.020726509392261505, + -0.018039189279079437, + 0.011239231564104557, + -0.018989400938153267, + -0.006191228050738573, + -0.0317133404314518, + 0.009821336716413498, + -0.021884581074118614, + 0.021394627168774605, + 0.036820732057094574, + 0.006191228050738573, + -0.010949714109301567, + 0.06027910113334656, + 0.009056712500751019, + 0.02656140737235546, + 0.01576758734881878, + -0.01505492813885212, + 0.005233591888099909, + -0.024928228929638863, + 0.014178951270878315, + -0.008715230040252209, + -0.017148364335298538, + -0.017326530069112778, + 0.014104715548455715, + 0.00018141262989956886, + -0.001690710079856217, + 0.019657520577311516, + -0.02858060784637928, + -0.0028821872547268867, + 0.0021509691141545773, + 0.001089403755031526, + -0.00796545296907425, + -0.009658019058406353, + -0.015515187755227089, + -0.004836432635784149, + -0.02657625451683998, + 0.017311682924628258, + 0.022047897800803185, + 0.015262787230312824, + -0.002319854684174061, + 0.005857168696820736, + -0.013057997450232506, + -0.0136667275801301, + 0.025447877123951912, + 0.02779371477663517, + 0.011320890858769417, + -0.005526821594685316, + -0.0028413578402251005, + -0.004387308843433857, + 0.020518649369478226, + -0.025314252823591232, + 0.012397303245961666, + -0.016599023714661598, + 0.013852315954864025, + 0.03777094557881355, + -0.001819693949073553, + -0.01590121164917946, + -0.011974161490797997, + 0.02918933890759945, + -0.00360598205588758, + -0.002349548740312457, + -0.020993756130337715, + -0.0013492273865267634, + -0.007033799309283495, + 0.009264571592211723, + -0.006206075195223093, + 0.012523503042757511, + 0.011075913906097412, + 0.003375852480530739, + -0.005292980466037989, + 0.0008666976937092841, + 0.022062744945287704, + 0.0017222600290551782, + -0.004546915180981159, + 0.0034779259003698826, + -0.00821042899042368, + 0.01516628172248602, + 0.003886220511049032, + -0.017252294346690178, + 0.010452336631715298, + -0.0004834576975554228, + -0.001063421368598938, + -0.002954566851258278, + -0.0082252761349082, + 0.007698205299675465, + 0.019865378737449646, + 0.0019356866832822561, + -0.004851279780268669, + -0.01581212878227234, + 0.0056418864987790585, + -0.006762840319424868, + -0.009316535666584969, + 0.011847961694002151, + 0.008351476863026619, + 0.018796389922499657, + 0.003990150056779385, + 0.007423534523695707, + -0.0030529287178069353, + -0.009880724363029003, + -0.00094186095520854, + 0.0030956140253692865, + 0.024081947281956673, + -0.019523896276950836, + -0.00824754685163498, + -0.009435312822461128, + 0.09591206908226013, + -0.005460009910166264, + -0.0069335815496742725, + 0.004227702971547842, + 0.007486634887754917, + -0.013154503889381886, + -0.006610657554119825, + 0.015559728257358074, + 0.020474107936024666, + 0.0018809380708262324, + -0.0034816376864910126, + -0.00827724114060402, + 0.01628723554313183, + 0.003348014084622264, + -0.012308220379054546, + 0.0041683148592710495, + 0.004584032576531172, + 0.01431257463991642, + 0.0136667275801301, + 0.0028135196771472692, + 0.008381170220673084, + -0.02914479747414589, + -0.036494094878435135, + 0.025507265701889992, + -0.00783182866871357, + 0.018469754606485367, + 0.0035465937107801437, + 0.003383275819942355, + 0.006718298885971308, + 0.019390271976590157, + 0.01393397431820631, + 0.008388593792915344, + -0.012523503042757511, + -0.0018363968702033162, + 0.009880724363029003, + 0.010110854171216488, + -0.010912596248090267, + 0.02844698540866375, + 0.002984260907396674, + 0.025225169956684113, + 0.016717800870537758, + -0.018885472789406776, + 0.013889433816075325, + 0.024111641570925713, + -0.023621687665581703, + 0.005452586337924004, + -0.012679397128522396, + -0.008165888488292694, + 0.001828973414376378, + 0.010496878065168858, + 0.011521325446665287, + -0.013102538883686066, + 0.012375032529234886, + 0.00047348233056254685, + -0.009353653527796268, + -0.0024738928768783808, + 0.025180630385875702, + -0.02593783102929592, + -0.0029211610089987516, + -0.0005456298240460455, + -0.01566365733742714, + -0.005073986016213894, + 0.0002431207540212199, + -0.01353310327976942, + -0.0135553739964962, + -0.002924872562289238, + -0.016361471265554428, + -0.010571113787591457, + 0.014475892297923565, + 0.0022252046037465334, + -0.009784218855202198, + -0.006091010291129351, + 0.004502373747527599, + -0.021884581074118614, + -0.011736608110368252, + 0.007011528592556715, + 0.006981834303587675, + 0.023384133353829384, + 0.02804611437022686, + 0.008329206146299839, + 0.0007539527141489089, + 0.011016525328159332, + -0.00797287654131651, + -0.03198058903217316, + -0.010793819092214108, + -0.016970200464129448, + 0.01613876409828663, + -0.025492418557405472, + -0.004094079602509737, + -0.018573684617877007, + -0.03227752819657326, + -0.019627826288342476, + 0.0025017312727868557, + 0.0150771988555789, + -0.015218245796859264, + 0.002327278023585677, + -0.00323480530641973, + -0.025343947112560272, + -0.004524644464254379, + -0.01643570512533188, + 0.0129243740811944, + 0.008730077184736729, + -0.006354545708745718, + -0.0030881904531270266, + 0.005404333118349314, + 0.014149256981909275, + 0.014980693347752094, + 0.019197260960936546, + -0.02639808878302574, + 0.012983761727809906, + -5.94462726439815e-5, + -0.014824798330664635, + -0.01581212878227234, + -0.002182519296184182, + -0.02809065580368042, + 0.009234877303242683, + 0.015233092941343784, + 0.011536172591149807, + -0.012597738765180111, + -0.02887755073606968, + -0.0033294553868472576, + 0.0017009173752740026, + -0.0024534782860428095, + -0.016881117597222328, + -0.011350584216415882, + 0.00324222887866199, + -0.003002819838002324, + -0.011714337393641472, + -0.018202507868409157, + -0.012278526090085506, + 0.02581905387341976, + 0.024571899324655533, + 0.014869339764118195, + -0.00789864081889391, + 0.016702953726053238, + 0.0033331671729683876, + -0.013830045238137245, + 0.003633820218965411, + -0.0031475787982344627, + -0.010504301637411118, + 0.01398593932390213, + -0.006644063629209995, + 0.003780435072258115, + 0.009353653527796268, + 0.005478568375110626, + -0.00648445775732398, + -0.012196867726743221, + -0.020874978974461555, + 0.012582891620695591, + -0.00041548596345819533, + 0.006013063248246908, + -0.024972770363092422, + 0.00715628731995821, + -0.0265911016613245, + 0.012419573962688446, + -0.007698205299675465, + -0.036880120635032654, + 0.017861023545265198, + -0.014498163014650345, + -0.0028190873563289642, + -0.0003554017166607082, + 0.011699490249156952, + -0.021528251469135284, + 0.006384239997714758, + 0.007601699326187372, + 0.012219138443470001, + 0.012241409160196781, + 0.022626934573054314, + 0.012538350187242031, + 0.008188159205019474, + -0.017014741897583008, + -0.002108283806592226, + 0.018395518884062767, + -0.037384919822216034, + -0.020310791209340096, + 0.009516971185803413, + 0.0015116172144189477, + -0.0026724725030362606, + -0.024007711559534073, + 0.012070666998624802, + 0.010415218770503998, + -0.012100361287593842, + 0.010192513465881348, + 0.00048670548130758107, + -0.004361326806247234, + -0.009999501518905163, + 0.022404227405786514, + -0.012560620903968811, + -0.007015240378677845, + 0.0010383669286966324, + -0.004791891667991877, + 0.0280758086591959, + -0.0056455982849001884, + 0.018365824595093727, + 0.005511974450200796, + 0.0014373819576576352, + 0.011692066676914692, + 0.01628723554313183, + 0.011899925768375397, + -0.021617332473397255, + 0.001140440464951098, + 0.004539491608738899, + 0.02797187864780426, + 0.003412970108911395, + 0.020607732236385345, + -0.021973662078380585, + -0.013503409922122955, + -0.009643171913921833, + 0.0034389523789286613, + -0.014149256981909275, + -0.02905571460723877, + -0.024883687496185303, + 0.014505586586892605, + 0.005701274611055851, + 0.003173561068251729, + -0.006087298505008221, + 0.011209537275135517, + 0.00647332239896059, + 0.002301295753568411, + -0.0009873301023617387, + -0.011068490333855152, + -0.003375852480530739, + 0.01628723554313183, + -0.019598131999373436, + -0.0022493309807032347, + 0.016658412292599678, + 0.0070894756354391575, + 0.0018994968850165606, + 0.019390271976590157, + -0.013882010243833065, + 0.01509204600006342, + -0.00645847525447607, + -0.010741855017840862, + 0.022597240284085274, + 0.00414233235642314, + 0.02715528942644596, + 0.018840931355953217, + -0.013095115311443806, + 0.023681076243519783, + 0.004353903234004974, + -2.27998202717572e-6, + 0.009182912297546864, + -0.01601998694241047, + -0.023770157247781754, + -0.0032774906139820814, + -0.005048003513365984, + -0.007360434625297785, + -0.0032013992313295603, + 0.009405618533492088, + -3.314492278150283e-5, + -0.0056455982849001884, + -0.0034519436303526163, + -0.0017705130157992244, + 0.00681851664558053, + 0.010370678268373013, + -0.00356886419467628, + -0.00798772368580103, + 0.01371126901358366, + -0.003646811470389366, + -0.01646539941430092, + -0.003960455767810345, + 0.01464663352817297, + -0.009888147935271263, + -0.01539641059935093, + -0.0003653770836535841, + 0.01588636450469494, + -0.0314163975417614, + -0.010519148781895638, + 0.010073736310005188, + 0.009628324769437313, + 0.0015515187988057733, + -0.002540704794228077, + 0.0014021201059222221, + 0.004877262283116579, + -0.013815198093652725, + -0.003193975891917944, + 0.022463615983724594, + -0.006580963730812073, + 0.03165395185351372, + 0.004387308843433857, + -0.022834792733192444, + 0.002110139699652791, + 0.004654556047171354, + -0.0049477857537567616, + -0.001484706881456077, + -0.023844392970204353, + 0.012419573962688446, + 0.005337521433830261, + -0.0009172704885713756, + 0.022582393139600754, + 0.005341233219951391, + -0.02915964461863041, + -0.00720825232565403, + -0.01365188043564558, + -0.00677397521212697, + 0.017207752913236618, + -0.002707734238356352, + -0.008447982370853424, + 0.006900175474584103, + -0.011268925853073597, + -0.014134409837424755, + 0.003244084771722555, + -0.017623471096158028, + -0.021587638184428215, + 0.014178951270878315, + 0.010823513381183147, + -0.004494950175285339, + -0.0017649453366175294, + -0.0036727937404066324, + 0.020251402631402016, + 0.0005934187793172896, + -0.009390771389007568, + -0.012226562015712261, + -0.008544488810002804, + -0.011209537275135517, + -0.03892901539802551, + 0.003368428908288479, + 0.035662662237882614, + -0.01542610488831997, + 0.0037451733369380236, + 0.0029174492228776217, + 0.006963275372982025, + 0.0034853494726121426, + -0.012768479995429516, + -0.00378600275143981, + 0.0005567651242017746, + 0.011825690977275372, + 0.020370179787278175, + 0.01290210336446762, + -0.013169350102543831, + 0.01395624503493309, + 0.0024924518074840307, + -0.020726509392261505, + 0.01290210336446762, + -0.018187660723924637, + 0.03301988169550896, + -0.0005590849323198199, + -0.014899034053087234, + -0.003173561068251729, + 0.011194690130650997, + -0.018781542778015137, + -0.010675042867660522, + -0.01627238839864731, + 0.002969413762912154, + 0.004758485592901707, + 0.031060069799423218, + 0.011729184538125992, + -0.01390428002923727, + 0.024957923218607903, + -0.008306935429573059, + -0.025774512439966202, + 0.006499304436147213, + 0.018647918477654457, + 0.005742104258388281, + -0.005099968519061804, + -0.00825497042387724, + 0.018380671739578247, + 0.010645348578691483, + -0.005541668739169836, + -0.0024107929784804583, + -0.009427889250218868, + 0.02672472409904003, + -0.006113281007856131, + -0.005356080364435911, + 0.00785409938544035, + -0.011447090655565262, + -0.003993861842900515, + 0.01475056353956461, + -0.03895870968699455, + -0.006384239997714758, + -0.009116100147366524, + -0.023710770532488823, + -0.0030807668808847666, + -0.004754773806780577, + -0.009331382811069489, + 0.019969308748841286, + 0.0003092366096097976, + 0.00821785256266594, + 0.0005549092311412096, + -0.018915167078375816, + 0.023458369076251984, + -0.005738392472267151, + -0.007809558417648077, + -0.022701168432831764, + 0.011543596163392067, + 0.034593671560287476, + 0.017192905768752098, + 0.020993756130337715, + 0.020978908985853195, + -0.010585960932075977, + 0.006970698945224285, + 0.021394627168774605, + 0.011358007788658142, + -0.004777044523507357, + -0.016702953726053238, + 9.146026422968134e-5, + -0.004784468095749617, + 0.011120455339550972, + -0.006399086676537991, + -0.00011744263611035421, + 0.01653963513672352, + -0.013020879589021206, + -0.0024534782860428095, + -0.0007915343740023673, + 0.0003776723169721663, + -0.015262787230312824, + -0.006005639676004648, + 0.017400765791535378, + 0.021112533286213875, + 0.004079232458025217, + -0.009375924244523048, + 0.01581212878227234, + -0.012738785706460476, + -0.002184375189244747, + 0.019583284854888916, + 0.012723938561975956, + -1.4861568160995375e-5, + -0.0017565939342603087, + -0.00377486739307642, + -0.011246655136346817, + 0.023116886615753174, + -0.0012258111964911222, + 0.011447090655565262, + 0.006495592650026083, + -0.00753488764166832, + -0.0035076201893389225, + 0.018811237066984177, + 0.0020785897504538298, + -0.00714886374771595, + 0.013161927461624146, + -0.0077278995886445045, + -0.014869339764118195, + -0.005077697802335024, + 0.024156181141734123, + -0.023829545825719833, + -0.0022122133523225784, + 0.023992864415049553, + 0.0008657697471790016, + 0.0024943077005445957, + 0.005378351081162691, + -0.014238339848816395, + -0.004576609004288912, + -0.0032088228035718203, + 0.025596346706151962, + 0.019523896276950836, + -0.005816339515149593, + -0.0033294553868472576, + 0.002772690262645483, + -0.002310575218871236, + -0.035276636481285095, + -0.009940112940967083, + 0.009093830361962318, + -0.017415612936019897, + -0.003155002137646079, + -0.0057643745094537735, + -0.012879832647740841, + 0.024735217913985252, + -0.00824754685163498, + 0.019850531592965126, + -0.02825397253036499, + -0.01293922122567892, + 0.0014290304388850927, + -0.01395624503493309, + -0.01584182307124138, + -0.003225525841116905, + 0.01567850448191166, + 0.01584182307124138, + 0.01627238839864731, + 0.0021899426355957985, + 0.01576758734881878, + 0.0003932153631467372, + 0.0293378084897995, + 0.022983264178037643, + 0.004617438651621342, + 0.021142227575182915, + 0.020429568365216255, + -0.019509049132466316, + 0.004030979238450527, + 0.010036618448793888, + 0.0008973197545856237, + 0.005137085914611816, + -0.009323959238827229, + -0.010088583454489708, + -0.002750419545918703, + 0.009925265796482563, + -0.011588137596845627, + -0.0015181128401309252, + 0.010125701315701008, + 0.00783925224095583, + -0.011558443307876587, + 0.007315893657505512, + -0.0016916379099711776, + 0.007794711273163557, + -0.013035726733505726, + 0.020088084042072296, + -0.018187660723924637, + 0.0006866769399493933, + 0.0011868375586345792, + -0.0003857918200083077, + -0.006885328330099583, + 0.024735217913985252, + 0.00037836827686987817, + -0.006217210087925196, + 0.011150148697197437, + 0.021483710035681725, + -0.00047510620788671076, + -0.02918933890759945, + 0.018247047439217567, + 0.010118277743458748, + -0.017549235373735428, + 0.012627432122826576, + -0.0042982264421880245, + -0.021261002868413925, + 0.024230416864156723, + 0.0003574895963538438, + 0.01581212878227234, + -0.021067991852760315, + -0.011907349340617657, + 0.012189444154500961, + 0.008893394842743874, + 0.021290697157382965, + -0.012100361287593842, + -0.006065027788281441, + 0.0014605805044993758, + -0.0014438774669542909, + -0.0033090405631810427, + 0.009361077100038528, + 0.0011302331695333123, + 0.011061066761612892, + -0.007312181871384382, + -0.023666229099035263, + 0.018469754606485367, + 0.00044309222721494734, + -0.004843856208026409, + 0.013488562777638435, + 0.008032264187932014, + 0.011298620142042637, + 0.014624363742768764, + 0.04026525095105171, + -0.01402305718511343, + -0.0019839396700263023, + 0.021186767145991325, + -0.006540134083479643, + -0.0028617726638913155, + -0.010585960932075977, + -0.010793819092214108, + 0.003643099684268236, + -0.0034500877372920513, + -0.0033071846701204777, + 0.0012128199450671673, + 0.003110460937023163, + 0.002299439860507846, + 0.020221708342432976, + 0.009865877218544483, + 0.032722942531108856, + -0.020622579380869865, + -0.004532068036496639, + -0.0136296097189188, + 0.006105857435613871, + 0.020845284685492516, + -0.0008782969671301544, + -0.0007711196667514741, + -0.01566365733742714, + 0.002522145863622427, + -0.02969413809478283, + 0.008522218093276024, + 0.022329991683363914, + 0.007609122898429632, + -0.0006681181257590652, + 0.011291196569800377, + -0.00718226982280612, + -0.012375032529234886, + 0.0021416896488517523, + -0.01445362251251936, + 0.005653021857142448, + -0.0007813270203769207, + -0.04071066528558731, + -0.0004890253767371178, + -0.006577251944690943, + 0.003390699392184615, + -0.000389039603760466, + -0.012033550068736076, + -0.009472430683672428, + -0.01576758734881878, + 0.011016525328159332, + 0.011172419413924217, + 0.0048252977430820465, + -0.005805204156786203, + 0.016316929832100868, + -0.022552698850631714, + 0.03251508250832558, + -0.02788279578089714, + -0.019123025238513947, + -0.00757200550287962, + 0.009502124041318893, + 0.0035632967483252287, + -0.006024198606610298, + 0.007401264272630215, + -0.03284171596169472, + -0.02902602031826973, + -0.004417003132402897, + 0.007772441022098064, + -0.010222206823527813, + 4.2366344132460654e-5, + 0.003643099684268236, + 0.005794068798422813, + -0.0017705130157992244, + -0.025106394663453102, + 0.001063421368598938, + -0.007705628871917725, + -0.023295052349567413, + -0.006328563205897808, + 0.018157966434955597, + -0.005526821594685316, + 0.020370179787278175, + -0.010816089808940887, + 0.024274958297610283, + -0.019375424832105637, + 0.03711767494678497, + -0.018469754606485367, + 0.00019892753334715962, + -0.002054463140666485, + -0.00645105168223381, + 0.01401563361287117, + -0.01594575308263302, + -0.00033730684663169086, + -0.00682594021782279, + 0.017088977620005608, + 0.0266653373837471, + -0.0013223171699792147, + 0.010660195723176003, + 0.007282487582415342, + -0.005207609385251999, + -0.019405119121074677, + -0.002369963563978672, + -0.012620008550584316, + -0.01502523384988308, + 0.009279418736696243, + 0.024720370769500732, + -0.017163211479783058, + 0.010044042021036148, + 0.002336557488888502, + -0.0008226204663515091, + -0.0032051110174506903, + 0.006718298885971308, + 0.020845284685492516, + 0.0015079054282978177, + 0.009531818330287933, + -0.0010170242749154568, + -0.011046219617128372, + -0.016688106581568718, + 0.02852122113108635, + -0.04174995794892311, + 0.0069372933357954025, + 0.020414721220731735, + -0.01322131510823965, + 0.002279025036841631, + -0.015351870097219944, + 0.01563396491110325, + -0.005942539311945438, + -0.018959708511829376, + -0.0259229838848114, + -0.008648417890071869, + 0.023116886615753174, + -0.008121347054839134, + -0.020578037947416306, + 0.0018503160681575537, + 0.017816483974456787, + -0.00338513171300292, + -0.017445307224988937, + 0.010734431445598602, + -0.010585960932075977, + 0.0024033694062381983, + 0.012367608956992626, + -0.01322873868048191, + 0.0070968992076814175, + 0.011469361372292042, + -0.005886862985789776, + 0.014208645559847355, + -0.01434969250112772, + -0.009917842224240303, + 0.004086656030267477, + -0.0062691750936210155, + -0.011068490333855152, + -8.126740794978105e-6, + 0.005953674670308828, + -0.00375630846247077, + -0.019553590565919876, + -3.427585033932701e-5, + 0.0014216068666428328, + -0.0294120442122221, + 0.0009293337352573872, + -0.00680738128721714, + -0.033257436007261276, + 0.03824605047702789, + -0.00411634985357523, + 0.0020080660469830036, + -0.01609422266483307, + -0.02607145346701145, + -0.004665691405534744, + -0.024467971175909042, + -0.00015705414989497513, + 0.00798772368580103, + -0.016717800870537758, + -0.004279667977243662, + -0.009108677506446838, + 0.009902995079755783, + -0.0032867700792849064, + -0.005664156749844551, + -0.01402305718511343, + 0.017148364335298538, + -0.006692316383123398, + -0.012352761812508106, + 0.003823120379820466, + -0.006013063248246908, + -0.017846178263425827, + 0.006510439794510603, + 0.00021180271869525313, + -0.025670582428574562, + 0.012716514989733696, + -0.00339626707136631, + 0.00795060582458973, + -0.003346158191561699, + -0.004621150437742472, + 0.0036616583820432425, + 0.009316535666584969, + 0.018410366028547287, + 0.01650994084775448, + -0.011142725124955177, + 0.004480103030800819, + 0.025195477530360222, + 0.006592098623514175, + 0.004424426704645157, + 0.010489454492926598, + -0.018410366028547287, + -0.020474107936024666, + -0.0003911274834536016, + 0.00648074597120285, + -0.011343160644173622, + 0.017371071502566338, + -0.017875870689749718, + -0.033821623772382736, + -0.007486634887754917, + -0.013466292060911655, + 0.01512174028903246, + -0.011647526174783707, + -0.009390771389007568, + -0.0009149506222456694, + -0.01354052685201168, + 0.010289018973708153, + 0.007282487582415342, + -0.009806489571928978, + 0.021676721051335335, + -0.008819159120321274, + 0.007609122898429632, + -0.0027986725326627493, + 0.018454907462000847, + 0.0009427889017388225, + 0.023621687665581703, + 0.018811237066984177, + 0.025195477530360222, + -0.0005419180379249156, + -0.006736857816576958, + 0.01431999821215868, + -0.007816982455551624, + -0.0002700310724321753, + -0.018840931355953217, + -0.01466148067265749, + -0.012330491095781326, + 0.021750956773757935, + -0.000118892545287963, + 0.0014234627597033978, + -0.018068883568048477, + -0.021290697157382965, + -0.019494201987981796, + -0.035454802215099335, + -0.005263286177068949, + -0.005085121374577284, + 0.009902995079755783, + 0.018083730712532997, + 0.012063243426382542, + -0.011127878911793232, + -0.004008708521723747, + 0.003197687678039074, + -0.033910706639289856, + 0.021275850012898445, + 0.0032199581619352102, + 0.011744031682610512, + 0.006696028169244528, + 0.010326136834919453, + 0.012657126411795616, + -0.007698205299675465, + -0.03251508250832558, + -0.010133124887943268, + 0.019598131999373436, + 0.02694743126630783, + 0.00322738173417747, + -0.02746707759797573, + -0.010593383572995663, + -0.022062744945287704, + 0.011031372472643852, + 0.0048141623847186565, + -0.012293373234570026, + -0.009197759442031384, + -0.019152719527482986, + 0.014186374843120575, + -0.015619116835296154, + -0.0030677756294608116, + -0.0026112282648682594, + -0.005010886117815971, + 0.018009494990110397, + -0.018781542778015137, + 0.0032719229348003864, + -0.01572304591536522, + -0.0034315288066864014, + -0.0082252761349082, + 0.004272244405001402, + -0.019568437710404396, + 0.0024924518074840307, + 0.0279273372143507, + 0.002583390101790428, + 0.0030993258114904165, + 0.02880331501364708, + -0.008737500756978989, + -0.036315932869911194, + 0.01650994084775448, + -0.0008648418006487191, + 0.009739677421748638, + 0.005092544946819544, + -0.021171921864151955, + -0.008759770542383194, + -0.01391912717372179, + 0.0022734575904905796, + 0.0075200404971838, + 0.019212108105421066, + -0.008626147173345089, + -0.010303866118192673, + -0.000855562393553555, + 0.012486385181546211, + 0.01575274020433426, + 0.013466292060911655, + -0.03206966817378998, + 0.01542610488831997, + 0.008774617686867714, + -0.0003760484396480024, + -0.0034909171517938375, + -0.004932938609272242, + 0.015262787230312824, + 0.0002953174989670515, + -0.02855091355741024, + 0.01612391695380211, + 0.018529143184423447, + 0.009910418651998043, + 0.008863700553774834, + -0.006224633660167456, + 0.022641781717538834, + -0.023428674787282944, + 4.167038787272759e-5, + 0.0008834006148390472, + -0.007668511476367712, + 0.011595561169087887, + 0.025314252823591232, + -0.0036876408848911524, + -0.0044652558863162994, + 0.012323067523539066, + -0.015470646321773529, + -0.014891610480844975, + 0.010289018973708153, + -0.006024198606610298, + -0.0006286805728450418, + -0.007675935048609972, + -0.01650994084775448, + -0.01322131510823965, + -0.0024033694062381983, + -0.0042908028699457645, + -0.009509547613561153, + -0.002115707378834486, + -0.0026242195162922144, + -0.018054036423563957, + 0.016732648015022278, + -0.006491880863904953, + 0.008566758595407009, + -0.005879439413547516, + 0.00824012327939272, + -0.01646539941430092, + -0.002768978476524353, + 0.01566365733742714, + -0.01400078646838665, + -0.005070274230092764, + 0.017504693940281868, + -0.013770656660199165, + -0.0015626540407538414, + 0.022849639877676964, + -0.017103824764490128, + 0.005912845488637686, + -0.005708698183298111, + 0.00645105168223381, + -0.003990150056779385, + -0.02669503167271614, + -0.018826084211468697, + 0.004365038592368364, + 0.023205969482660294, + -0.027184983715415, + -0.009799065999686718, + -0.013043150305747986, + -0.0004996967036277056, + -0.035454802215099335, + 0.004056961741298437, + -0.014861916191875935, + -0.0048104505985975266, + -0.018647918477654457, + 0.009175488725304604, + -0.011499055661261082, + -0.004428138490766287, + -0.003654235042631626, + 0.010237053968012333, + 0.017578929662704468, + 0.010303866118192673, + 0.0036783614195883274, + -0.020162319764494896, + -0.0004509797436185181, + 0.00679253414273262, + 0.024141333997249603, + 0.023502910509705544, + 0.018781542778015137, + 0.005304115358740091, + -0.0034834935795515776, + -0.020117778331041336, + -0.017133517190814018, + -0.03257447108626366, + 0.023473216220736504, + 0.003394411178305745, + -0.008106499910354614, + -0.01406759861856699, + -0.017682859674096107, + 0.0030789109878242016, + -0.01297633908689022, + -0.019746601581573486, + 0.008128770627081394, + 0.01329555083066225, + 0.004851279780268669, + -0.0034333846997469664, + -0.009479854255914688, + -0.005478568375110626, + -0.022805098444223404, + -0.003941896837204695, + -0.010949714109301567, + 0.0037043439224362373, + -0.005196474492549896, + 0.009954960085451603, + -0.008574182167649269, + 0.018499448895454407, + 0.031178845092654228, + 0.005081409588456154, + 0.004899532999843359, + -0.002923016669228673, + 0.001164566958323121, + 0.0003976230800617486, + -0.00798772368580103, + -0.00014603484305553138, + -0.010096007026731968, + -0.010096007026731968, + 0.011372854933142662, + -0.006198651622980833, + 0.019271496683359146, + -0.018840931355953217, + -0.004253685474395752, + 0.0037266144063323736, + -0.0011302331695333123, + -0.0036802173126488924, + -0.0010532139567658305, + 0.007026375737041235, + -0.008084229193627834, + 0.023295052349567413, + 0.024750065058469772, + 0.013733538798987865, + -0.0288181621581316, + 0.0016786467749625444, + -0.013733538798987865, + 0.019731754437088966, + -0.010519148781895638, + 0.012612584978342056, + 7.974500476848334e-5, + -0.008373747579753399, + 0.013377209194004536, + 0.021053144708275795, + 0.004079232458025217, + 0.00791348796337843, + 0.013495986349880695, + 0.004405867774039507, + -0.018692459911108017, + -0.0265168659389019, + -0.0022326279431581497, + -0.007375281769782305, + -0.01573789305984974, + -0.01539641059935093, + 0.012211714871227741, + 0.0005052643246017396, + 0.0006342482520267367, + -0.004253685474395752, + 0.01368899829685688, + 0.019702060148119926, + -0.009175488725304604, + -0.023963170126080513, + 0.008032264187932014, + -0.0077353231608867645, + 0.022716015577316284, + 0.010630501434206963, + -0.02907056175172329, + 0.016688106581568718, + 0.017489848658442497, + 0.0022753134835511446, + -0.03242599964141846, + 0.004242550116032362, + -0.017148364335298538, + 0.01603483408689499, + 0.01584182307124138, + 0.005452586337924004, + 0.010459760203957558, + 0.02656140737235546, + 0.012063243426382542, + 0.024052252992987633, + -0.001357578905299306, + -0.010363254696130753, + -0.018707307055592537, + 0.00342224957421422, + 0.006751704961061478, + -0.012152326293289661, + -0.0030158108565956354, + -0.02630900777876377, + -0.0021955103147774935, + 0.003229237627238035, + -0.003116028616204858, + -0.011825690977275372, + -0.01607937552034855, + -0.002928584348410368, + -0.017994647845625877, + 0.022240910679101944, + 0.006369392853230238, + -0.0006565188523381948, + -0.010533995926380157, + -0.007675935048609972, + 0.010682466439902782, + 0.005667868535965681, + -0.012605162337422371, + -0.008997323922812939, + -0.020295944064855576, + -0.009309112094342709, + 0.004494950175285339, + 0.0015255364123731852, + -0.026338700205087662, + -0.008121347054839134, + -0.012367608956992626, + -0.0017436026828363538, + 0.003960455767810345, + 0.017178058624267578, + -0.008039687760174274, + 0.0008759771008044481, + 0.018915167078375816, + 0.021246155723929405, + 0.004543203394860029, + 0.007111746352165937, + 0.016524787992239, + -0.0031011817045509815, + -0.005233591888099909, + 0.0129243740811944, + -0.02611599490046501, + 0.013778080232441425, + -0.003633820218965411, + 0.004216567613184452, + -0.0037377497646957636, + 0.024096794426441193, + 0.0005038724048063159, + 0.01296891551464796, + -0.0069484286941587925, + 0.003596702590584755, + 0.007327028550207615, + 0.019316038116812706, + 0.00016262179997283965, + 0.005541668739169836, + 0.007616546470671892, + 0.004480103030800819, + -0.018885472789406776, + 0.006580963730812073, + -0.0022530427668243647, + -0.0037488851230591536, + 0.009724830277264118, + 0.011231807991862297, + 0.0064399163238704205, + -0.006050180643796921, + 0.0072045405395329, + -0.01318419724702835, + 0.010259324684739113, + 0.0136667275801301, + 0.0015728614525869489, + -0.011580714024603367, + 0.012404726818203926, + 0.021825192496180534, + -0.00753117585554719, + -0.002973125549033284, + -0.004094079602509737, + -0.002175095723941922, + -0.011640102602541447, + -0.016955353319644928, + -0.004617438651621342, + 0.03055526874959469, + 0.004498661961406469, + -0.015218245796859264, + -0.005010886117815971, + -0.0012517935829237103, + -0.008396017365157604, + 0.00685563450679183, + -0.021483710035681725, + 0.013740962371230125, + 0.0032069669105112553, + -0.006347122136503458, + -0.022404227405786514, + -0.0004205896402709186, + 0.002325422130525112, + 0.01400821004062891, + 0.0020451839081943035, + -0.0049663446843624115, + -0.023295052349567413, + -0.004030979238450527, + 0.0005479496321640909, + 0.005961098242551088, + -0.01394882146269083, + -0.0010662052081897855, + 0.021765803918242455, + -0.0028914667200297117, + 0.01538156345486641, + 0.001613690867088735, + 0.006974410731345415, + -0.006246904376894236, + 0.020221708342432976, + 0.009880724363029003, + 0.014178951270878315, + -0.010006925091147423, + 0.0258487481623888, + -0.007705628871917725, + 0.005686427466571331, + 0.005545380525290966, + -0.0016406012000516057, + -0.0037154790479689837, + -0.0019969309214502573, + -0.009568936191499233, + -9.807185415411368e-5, + -0.017356224358081818, + -0.009286842308938503, + 0.00720825232565403, + -0.021706415340304375, + 0.004342767875641584, + 0.0036950644571334124, + -0.011120455339550972, + 0.00719340518116951, + 0.005682715680450201, + -0.0006258967914618552, + 0.021958814933896065, + -0.010207360610365868, + 0.004442985635250807, + -0.00376373203471303, + 0.00340369064360857, + -0.001621114439330995, + -0.0008782969671301544, + -0.008796888403594494, + 0.018647918477654457, + -0.017712553963065147, + 0.008685535751283169, + 0.019672367721796036, + -0.003997573629021645, + -0.019687214866280556, + -0.022656626999378204, + -0.0022047897800803185, + -0.02630900777876377, + -0.01581212878227234, + 0.025640888139605522, + 0.016673259437084198, + -0.0002498483518138528, + -0.003153146244585514, + -0.020073236897587776, + -0.011899925768375397, + -0.012449267320334911, + -0.00800257083028555, + -0.019256649538874626, + 0.009361077100038528, + 0.0030956140253692865, + -0.001815982162952423, + -0.03000592812895775, + 0.005434027407318354, + 0.005556515883654356, + 0.01325843296945095, + -0.010214784182608128, + -0.036078378558158875, + 0.0048215859569609165, + 0.014245763421058655, + 0.009494700469076633, + -0.008997323922812939, + 0.008982476778328419, + -0.0030529287178069353, + 0.00015276242629624903, + -0.017519541084766388, + 0.0021602485794574022, + 0.000894071941729635, + -0.018350977450609207, + -0.01356279756873846, + -0.00721196411177516, + -0.008826582692563534, + -0.0069372933357954025, + -0.002722581382840872, + 0.016732648015022278, + -0.007430958095937967, + 0.02782340720295906, + -0.003412970108911395, + -0.016985047608613968, + -0.005745816044509411, + 0.010519148781895638, + -0.005519398022443056, + 0.002104572020471096, + 0.02892209030687809, + 0.013518257066607475, + -0.0062654633074998856, + -0.0049849036149680614, + -0.011974161490797997, + -0.017430460080504417, + 0.009509547613561153, + -0.020206861197948456, + 0.018410366028547287, + -0.019004248082637787, + 0.009925265796482563, + 0.01402305718511343, + -0.005875727627426386, + -0.0001262000878341496, + -0.005504550877958536, + -0.005315250717103481, + 0.007256505079567432, + 0.0020043542608618736, + -0.0026390666607767344, + 0.019004248082637787, + 0.00043682861723937094, + -0.0004987687570974231, + -0.023250510916113853, + 0.0023736751172691584, + -0.019063636660575867, + 0.006087298505008221, + -0.0004899532650597394, + -0.00783182866871357, + 0.003923337906599045, + -0.005823763087391853, + -0.014861916191875935, + -0.013087691739201546, + 0.01630208268761635, + -0.006722010672092438, + -0.008744924329221249, + 0.01469859853386879, + 0.013124809600412846, + -0.0015357437077909708, + -0.020711662247776985, + -0.006157821975648403, + -0.0003625932731665671, + 0.009554089047014713, + -0.017742248252034187, + -0.021617332473397255, + 0.018692459911108017, + 0.022805098444223404, + -0.017103824764490128, + -0.0077650174498558044, + 0.0014197509735822678, + -0.0005910989711992443, + -0.0030733433086425066, + 0.018187660723924637, + -0.026041759178042412, + 0.012382456101477146, + 0.005367215722799301, + -0.02921903319656849, + -0.0025629752781242132, + -0.04216567799448967, + -0.004502373747527599, + -0.008514794521033764, + -0.005185339134186506, + 0.0062914458103477955, + 0.010289018973708153, + -0.013800350949168205, + -0.001284271478652954, + -0.017890717834234238, + -0.0010198081145063043, + 0.022805098444223404, + 0.050776977092027664, + 0.023413827642798424, + 0.012241409160196781, + 0.004079232458025217, + 0.017712553963065147, + -0.04602591693401337, + -0.004569185432046652, + -0.016316929832100868, + -0.022656626999378204, + -0.021750956773757935, + 0.010890325531363487, + -0.002134266309440136, + 0.006146686617285013, + 0.01429030392318964, + -0.010793819092214108, + 0.010459760203957558, + -0.005051715299487114, + -0.021765803918242455, + 0.0018614513101056218, + 0.011491632089018822, + -4.306230039219372e-5, + 0.020563190802931786, + -0.008143617771565914, + -0.009383347816765308, + 0.025774512439966202, + 9.180824417853728e-5, + 0.0014058318920433521, + -0.01391912717372179, + 0.003123452188447118, + 0.009041865356266499, + 0.019984155893325806, + -0.024957923218607903, + -0.021691568195819855, + 0.007044934201985598, + -0.0077278995886445045, + 0.021275850012898445, + 0.0036672260612249374, + 0.009383347816765308, + 0.010237053968012333, + -0.007809558417648077, + -0.018113425001502037, + -0.005838610231876373, + 0.011669796891510487, + -0.005563939455896616, + -0.012538350187242031, + 0.019419966265559196, + -0.0002240979520138353, + -0.001031871302984655, + -0.03218844532966614, + 0.007044934201985598, + 0.0011924052378162742, + -0.010719584301114082, + -0.004042114596813917, + -0.01612391695380211, + -0.012768479995429516, + 0.011016525328159332, + 0.006124415900558233, + -0.0024330634623765945, + -0.0067776869982481, + 0.018113425001502037, + -0.0013974803732708097, + -0.014208645559847355, + -0.0017732968553900719, + 0.020459260791540146, + 0.00783925224095583, + 0.009093830361962318, + 0.013050573877990246, + 0.0068519227206707, + 0.01628723554313183, + -0.019093330949544907, + 0.024839147925376892, + -0.012590315192937851, + -0.013852315954864025, + -0.00756829371675849, + -0.018499448895454407, + -0.023473216220736504, + -0.025017311796545982, + -0.006387951783835888, + -0.01569335162639618, + 0.005304115358740091, + -7.800511230016127e-5, + 0.002995396265760064, + 0.012122632004320621, + -0.0034333846997469664, + -0.004023555666208267, + -0.004424426704645157, + -0.008640994317829609, + 0.0018280454678460956, + 0.0016591600142419338, + 0.006658910773694515, + -0.020993756130337715, + -0.001263856771402061, + -0.011120455339550972, + 0.005155644845217466, + 0.007479211315512657, + -0.009992077946662903, + -0.009709983132779598, + -0.009880724363029003, + 0.0013241729466244578, + 0.0136296097189188, + 0.011313467286527157, + 0.011706913821399212, + -0.010652772150933743, + 0.017014741897583008, + -0.020251402631402016, + -0.04166087508201599, + 0.017682859674096107, + -0.006172669120132923, + -0.006673757918179035, + 0.0150400809943676, + -0.03162425756454468, + 0.023413827642798424, + -0.011795996688306332, + 0.01353310327976942, + 0.018306436017155647, + 0.017014741897583008, + 0.0057606627233326435, + 0.019390271976590157, + 0.022730862721800804, + -0.0003226917760912329, + -0.021988509222865105, + 0.012872409075498581, + 0.014594669453799725, + -8.055695070652291e-5, + 0.008344053290784359, + 0.004417003132402897, + 0.017341377213597298, + -0.0010049609700217843, + 0.006187516264617443, + -0.004246261902153492, + 0.004751062020659447, + -0.007809558417648077, + -0.0012610729318112135, + 0.023235663771629333, + 0.00648816954344511, + 0.0077575938776135445, + 0.010608230717480183, + -0.008158464916050434, + 0.0136296097189188, + -0.010801242664456367, + -0.019820837303996086, + 0.023205969482660294, + 0.0007766873459331691, + -0.0035001966170966625, + -0.023621687665581703, + 0.003529890673235059, + -0.02611599490046501, + -0.003171705175191164, + 0.009361077100038528, + 0.00678139878436923, + -0.037236448377370834, + -0.006146686617285013, + -0.02944173850119114, + -0.005318962503224611, + -0.001162711065262556, + -0.008878547698259354, + -0.01356279756873846, + 0.01539641059935093, + -0.0037191908340901136, + 0.012144902721047401, + -0.009643171913921833, + 0.012894679792225361, + 0.006670046132057905, + 0.023829545825719833, + 0.01542610488831997, + 0.0009367573074996471, + 0.00682594021782279, + -0.005029444582760334, + -0.016895964741706848, + -0.01587151736021042, + -0.010734431445598602, + 0.005812627729028463, + 0.006142974831163883, + 0.006191228050738573, + 0.01542610488831997, + 0.0036857849918305874, + -0.005656733643263578, + -0.005333809647709131, + -0.006525286938995123, + -0.001164566958323121, + 0.008477676659822464, + 0.018692459911108017, + 0.021394627168774605, + 0.007698205299675465, + -0.008685535751283169, + 0.00339997885748744, + -0.0005646526115015149, + 0.01625754125416279, + 0.006217210087925196, + -0.003169849282130599, + 0.005478568375110626, + 0.010719584301114082, + -0.012501232326030731, + -0.017668012529611588, + 0.00036653701681643724, + 0.00756087014451623, + -0.004751062020659447, + 0.009353653527796268, + -0.02935265563428402, + 0.008707806468009949, + 0.007263928651809692, + -0.005036868155002594, + -0.011231807991862297, + 0.004725079983472824 + ], + "1f4bfba2-3e5e-4925-89a8-73161cbc762b": [ + -0.04731530323624611, + -0.004219150636345148, + -0.0138661814853549, + 0.038557715713977814, + -0.00905406940728426, + 0.01651170291006565, + 0.04026057943701744, + 0.015378993935883045, + -0.011281476356089115, + 0.01338725071400404, + 0.011152241379022598, + 0.03670280799269676, + 0.010407238267362118, + -0.014877256937325, + 0.011365099810063839, + 0.010992597788572311, + 0.005693953018635511, + 0.01080254651606083, + 0.004340783692896366, + -0.04095996916294098, + 0.006640410982072353, + -0.018092934042215347, + -0.04834918677806854, + 0.019856614992022514, + 0.0138661814853549, + 0.007058524992316961, + 0.02546694502234459, + -0.002235009567812085, + -0.05072103440761566, + -0.02037355676293373, + 0.017408747225999832, + 0.009061671793460846, + 0.02417459338903427, + 0.01143351849168539, + 0.0032935983035713434, + -0.03676362708210945, + -0.003483650041744113, + -0.014588378369808197, + -0.007670491933822632, + -0.03484790399670601, + -0.011289078742265701, + 0.0010804446646943688, + 0.016009965911507607, + 0.0028602799866348505, + -0.03825363144278526, + 0.02659205161035061, + 0.0190051831305027, + 0.010878566652536392, + -0.006146276369690895, + -0.005807984154671431, + -0.0030788397416472435, + -0.025968682020902634, + 0.02528449520468712, + 0.03676362708210945, + 0.03503035381436348, + -0.014945675618946552, + 0.012018878012895584, + -0.017241502180695534, + -0.008081004023551941, + -0.06610763072967529, + 0.0026189142372459173, + -0.014618786983191967, + 0.008050595410168171, + -0.012748677283525467, + 0.00294580333866179, + -0.02374887652695179, + 0.01297673862427473, + 0.014177866280078888, + 0.008476311340928078, + -0.01655731536448002, + 0.012847503647208214, + 0.0433318167924881, + 0.00371931423433125, + 0.017667219042778015, + 0.014884859323501587, + -0.0006941643077880144, + 0.028720632195472717, + 0.01062769815325737, + 0.01739354431629181, + -0.00827865768224001, + 0.0059410203248262405, + -0.012908320873975754, + 0.04941347613930702, + -0.019963044673204422, + 0.05099470913410187, + 0.05011286586523056, + -0.01964375749230385, + -0.04679836332798004, + 0.00792896281927824, + -0.03925710543990135, + -0.004709484521299601, + 0.051268383860588074, + -0.014231081120669842, + 0.013394853100180626, + -0.0138661814853549, + -0.027717160061001778, + 0.026166336610913277, + 0.012436991557478905, + 0.011357497423887253, + 0.0008181731100194156, + 0.015333381481468678, + 0.001923324540257454, + -0.03229360654950142, + 0.03484790399670601, + 0.013965008780360222, + -0.001618291367776692, + -0.017910484224557877, + -0.0021722924429923296, + -0.04947429150342941, + 0.03533443808555603, + 0.011661580763757229, + -0.0374022014439106, + 0.007423424627631903, + 0.0127030648291111, + -0.058870457112789154, + -0.01959814503788948, + -0.011349895037710667, + -0.02434183843433857, + -0.013873783871531487, + 0.006971101276576519, + 0.04743693768978119, + 0.023140711709856987, + -0.020054269582033157, + -0.0022065017838031054, + -0.033966064453125, + -0.01442873477935791, + 0.0059372191317379475, + 0.025664599612355232, + -0.007906156592071056, + 0.017439156770706177, + -0.000809145683888346, + -0.03709811717271805, + 0.007830135524272919, + -0.042480386793613434, + 0.03503035381436348, + 0.02279101498425007, + -0.010468054562807083, + 0.02529969997704029, + 0.0032783939968794584, + 0.009411366656422615, + -0.05479574576020241, + -0.02470673806965351, + -0.02387051098048687, + 0.004587850999087095, + 0.020236719399690628, + -0.005982831586152315, + -0.016846194863319397, + 0.04701122269034386, + -0.030925234779715538, + 0.021893970668315887, + -0.05595126003026962, + -0.020175902172923088, + 0.015781903639435768, + -0.003846649080514908, + 0.0028602799866348505, + -0.02013028971850872, + -0.030241047963500023, + 0.046281423419713974, + 0.030484313145279884, + -0.007168754935264587, + 0.0016743566375225782, + -0.03819281607866287, + 0.021513868123292923, + 0.000899420294445008, + -0.013577302917838097, + -0.004135527648031712, + 0.02736746333539486, + -0.013987815007567406, + -0.03606423735618591, + 0.010232390835881233, + -0.016602927818894386, + -0.06221536919474602, + 0.025026025250554085, + 0.018533853814005852, + 0.010422442108392715, + -0.00798217672854662, + 0.036489952355623245, + 0.04476100578904152, + 0.019689369946718216, + -0.017712831497192383, + -0.01857946626842022, + -0.004865326918661594, + 0.01148673240095377, + -0.020160697400569916, + 0.0078681455925107, + 0.03332749009132385, + 0.022760607302188873, + 0.0018644084921106696, + 0.018092934042215347, + -0.01493807416409254, + 0.026500826701521873, + -0.022015605121850967, + 0.036307502537965775, + 0.03129013255238533, + -0.0311684999614954, + -0.026683276519179344, + -0.008476311340928078, + -0.016724560409784317, + -0.022395707666873932, + 0.03341871500015259, + -0.001705715199932456, + -0.05160287395119667, + -0.023368773981928825, + 0.028416549786925316, + -0.02000865712761879, + 0.009396162815392017, + -0.015842720866203308, + 0.01971977762877941, + 0.044913049787282944, + -0.03554729372262955, + 0.010049941018223763, + -0.02583184465765953, + -0.02162029594182968, + 0.008081004023551941, + -0.009152895770967007, + -0.017241502180695534, + -0.006150077097117901, + 0.03670280799269676, + 0.02536051720380783, + -0.041294462978839874, + -0.01792568899691105, + 0.007913758046925068, + 0.007259979844093323, + -0.04196344316005707, + -0.0448826402425766, + -0.02209162525832653, + -0.01223173551261425, + 0.014375520870089531, + -0.07699380069971085, + -0.01596435345709324, + 0.0433318167924881, + 0.026014294475317, + 0.005872601643204689, + -0.015949150547385216, + -0.022943057119846344, + 0.035608112812042236, + 0.02154427580535412, + -0.009145294316112995, + 0.004010093864053488, + -0.006936891935765743, + 0.03284095600247383, + 0.04348386079072952, + -0.01277148351073265, + -0.00037155134486965835, + -0.011828825809061527, + -0.016374865546822548, + -0.00798217672854662, + 0.036125052720308304, + 0.017378339543938637, + -0.014877256937325, + -0.006879876367747784, + -0.003352514235302806, + 0.006309720687568188, + 0.006039847154170275, + -0.0514204241335392, + 0.03201993182301521, + 0.0358513779938221, + -0.016344457864761353, + -0.01169959083199501, + -0.00393407279625535, + 0.029997780919075012, + 0.029906556010246277, + 0.0023984541185200214, + -0.022000400349497795, + 0.025330107659101486, + -0.02998257614672184, + 0.024083368480205536, + -0.03010421060025692, + 0.027823587879538536, + -0.00026155883097089827, + 0.029496043920516968, + 0.006849468220025301, + 0.02096651867032051, + 0.004260961897671223, + 0.02469153329730034, + 0.018442628905177116, + 0.015477821230888367, + -0.010232390835881233, + 0.018974775448441505, + 0.02380969375371933, + 0.00525303278118372, + -0.020768864080309868, + -0.024980412796139717, + -0.004983159247785807, + 0.002373747294768691, + -0.027169810608029366, + -0.01178321335464716, + -0.0010291306534782052, + -0.029602473601698875, + 0.00010280615970259532, + -0.012239337898790836, + 0.004629662726074457, + 0.017484769225120544, + 0.011760407127439976, + 0.0345742292702198, + 0.0289791040122509, + -0.0012419887352734804, + 0.005990433972328901, + -0.02221325784921646, + 0.01661813259124756, + -0.0044320086017251015, + -0.0320807509124279, + -0.02095131389796734, + -0.03177666664123535, + 0.018564263358712196, + -0.06434395164251328, + -0.006925488822162151, + -0.0009189005941152573, + -0.008681567385792732, + 0.011509538628160954, + 0.0364595428109169, + -0.040290988981723785, + -0.009639428928494453, + -0.027413075789809227, + 0.02114896848797798, + -0.014063835144042969, + 0.019704574719071388, + -0.024068163707852364, + -0.019157225266098976, + -0.04625101387500763, + 0.01941569522023201, + 0.011425916105508804, + -0.07121622562408447, + 0.05832310765981674, + 0.039226699620485306, + -0.04862286150455475, + 0.0026246157940477133, + 0.006096862722188234, + -0.033753205090761185, + 0.009730653837323189, + 0.02268458716571331, + -0.03919629007577896, + -0.02885746955871582, + 0.025573374703526497, + -0.013128780759871006, + -0.060299646109342575, + -0.059052906930446625, + -0.015363790094852448, + 0.028522979468107224, + -0.022274075075984, + 0.007556460797786713, + -0.03721975162625313, + 0.03682444244623184, + -0.04898776113986969, + 0.011471528559923172, + -0.0010965990368276834, + 0.017317522317171097, + 0.007316995412111282, + -0.03177666664123535, + 0.01839701645076275, + 0.0009464581380598247, + 0.016891807317733765, + 0.009685041382908821, + 0.01154754962772131, + 0.017849668860435486, + -0.021468255668878555, + -0.01924845017492771, + -0.0020031463354825974, + 0.0104452483355999, + 0.0011488633463159204, + -0.03965241461992264, + -0.031320542097091675, + -0.03588178753852844, + -0.017135072499513626, + -0.025679804384708405, + -0.03545606881380081, + 0.0036014821380376816, + -0.004591652192175388, + 0.005610330030322075, + 0.02671368606388569, + -0.03515198826789856, + 0.016542110592126846, + 0.003137755673378706, + -0.0010424342472106218, + 0.008423097431659698, + -0.006127270869910717, + 0.01721109449863434, + -0.011494334787130356, + -0.031138092279434204, + 0.012125306762754917, + 0.02309509925544262, + 0.020571209490299225, + 0.017378339543938637, + -0.021924380213022232, + -0.008483913727104664, + 0.033814020454883575, + -0.026531236246228218, + -0.030864417552947998, + 0.004960353020578623, + 0.006267909426242113, + 0.008385086432099342, + 0.02689613588154316, + -0.014405928552150726, + 0.009928307496011257, + 0.009092079475522041, + 0.028051650151610374, + -0.023490406572818756, + -0.00216849148273468, + -0.031259726732969284, + -0.014960880391299725, + 0.009198508225381374, + -0.03807118162512779, + -0.012733472511172295, + -0.016238028183579445, + -0.02464592084288597, + -0.04187221825122833, + -0.013546894304454327, + -0.02231968753039837, + 0.02238050289452076, + 0.01050606556236744, + 0.002379448851570487, + 0.02951124869287014, + -0.000810571073088795, + 0.0310012549161911, + 0.06245863437652588, + 0.004789306316524744, + 0.007522251456975937, + 0.07468276470899582, + -0.025208475068211555, + -0.005158006679266691, + 0.012178521603345871, + 0.010118359699845314, + 0.008020187728106976, + -0.001109902746975422, + -0.014824043028056622, + 0.008339473977684975, + 0.03284095600247383, + -0.008985650725662708, + -0.05187654867768288, + -0.018837938085198402, + -0.010582085698843002, + 0.009031263180077076, + 0.015082512982189655, + 0.02422020584344864, + -0.05084266513586044, + -0.03320585563778877, + -0.004234354943037033, + -0.025695007294416428, + -0.009426570497453213, + 0.007944166660308838, + -0.017606401816010475, + 0.04026057943701744, + -0.02238050289452076, + 0.04555162414908409, + 0.005693953018635511, + -0.0001308982027694583, + -0.03217197582125664, + 0.034939128905534744, + 0.034756679087877274, + -0.010726525448262691, + 0.018366608768701553, + -8.760201308177784e-5, + -0.04065588861703873, + -0.02654643915593624, + 0.029176756739616394, + -0.029374411329627037, + 0.003753523575142026, + -0.009966318495571613, + 0.022608565166592598, + -0.016055578365921974, + 0.005636937450617552, + -0.019446102902293205, + 0.04728489741683006, + 0.0021114759147167206, + 0.04102078825235367, + -0.05300165340304375, + 0.016526907682418823, + 0.007434827741235495, + -0.00575857050716877, + -0.01614680327475071, + -0.02730664797127247, + -0.031016459688544273, + -0.03271932154893875, + 0.009327744133770466, + -0.000759732211008668, + -0.034939128905534744, + -0.01486965548247099, + 0.00976866390556097, + 0.009563407860696316, + -0.015150931663811207, + -0.004492825362831354, + -0.03417892009019852, + -0.0037782303988933563, + -0.0004756046982947737, + 0.004200145602226257, + -0.007081331219524145, + 0.025375720113515854, + -0.009867491200566292, + 0.0171502772718668, + -0.051633283495903015, + 0.01845783367753029, + 0.012322960421442986, + 0.006241302005946636, + 0.012611839920282364, + -0.023733673617243767, + -0.02648562379181385, + -0.05224144831299782, + -0.025573374703526497, + 0.00015061607700772583, + -0.03189830109477043, + 0.040108539164066315, + -0.04363590106368065, + -0.0016838592709973454, + 0.02879665419459343, + -0.013729344122111797, + 0.031122887507081032, + 0.0023604438174515963, + 0.00834707636386156, + -0.0015432208310812712, + -0.013288424350321293, + -0.04868367686867714, + 0.03953078016638756, + -0.0187011007219553, + 0.0033145039342343807, + -0.0012343866983428597, + 0.02469153329730034, + -0.00543548259884119, + -0.018868345767259598, + 0.03384442999958992, + -0.022000400349497795, + 0.003890360938385129, + 0.02548214979469776, + 0.022350095212459564, + -0.01941569522023201, + -0.04561243951320648, + -0.008810803294181824, + 0.006032245233654976, + 0.003949277102947235, + 0.0017931390320882201, + -0.010201982222497463, + 0.00180739292409271, + 0.01734793186187744, + -0.023247139528393745, + 0.004519432783126831, + 0.0042837681248784065, + -0.034118104726076126, + 0.009076875634491444, + 0.027701955288648605, + 0.025330107659101486, + 0.020556006580591202, + -0.038344856351614, + 0.03731097653508186, + -0.022228462621569633, + 0.017895281314849854, + 0.007936564274132252, + 0.01445914339274168, + -0.019491715356707573, + 0.009571010246872902, + -0.026820113882422447, + 0.019567737355828285, + -0.02358163148164749, + 0.04868367686867714, + 0.008552332408726215, + 0.0003102596092503518, + 0.004352186806499958, + -0.008841210976243019, + 0.03445259481668472, + -0.02119458094239235, + 0.016815785318613052, + 0.0006666068220511079, + 0.0011194052640348673, + 0.03597301244735718, + 0.0074424296617507935, + -0.0058193872682750225, + 0.0020582613069564104, + 0.03472626954317093, + -0.02344479411840439, + -0.0038276438135653734, + -0.01077213790267706, + 0.02268458716571331, + 0.010604891926050186, + 0.021635500714182854, + 0.045217130333185196, + -0.01169959083199501, + -0.014253887347877026, + 0.03816240653395653, + -0.015553842298686504, + -0.007100336253643036, + -0.026972156018018723, + -0.020495189353823662, + -0.005895407870411873, + 0.01341765932738781, + -0.010262798517942429, + 0.010536473244428635, + -0.000249205477302894, + 0.00366800045594573, + 0.00522262416779995, + 0.008978048339486122, + -0.014694808050990105, + 0.024797962978482246, + 0.01585792563855648, + 0.04369671642780304, + -0.012398981489241123, + 0.016526907682418823, + -0.012520615011453629, + 0.019674165174365044, + -0.01006514485925436, + 0.03390524536371231, + -0.018153751268982887, + -0.016785377636551857, + 0.005769973620772362, + 0.041537728160619736, + 0.020814476534724236, + -0.02963288128376007, + 0.008157024160027504, + 0.019963044673204422, + 0.012368572875857353, + 0.004515631590038538, + 0.0077123031951487064, + 0.03496953845024109, + -0.0257102120667696, + 0.021118558943271637, + 0.029997780919075012, + -0.0018225971143692732, + 0.0019071701681241393, + -0.012163316830992699, + -0.003550168126821518, + 0.042358752340078354, + 0.0036603983025997877, + -0.008255851455032825, + 0.011866836808621883, + -0.042845286428928375, + 0.03953078016638756, + 0.019963044673204422, + -0.006214695051312447, + 0.012847503647208214, + -0.00038936868077144027, + -0.03576015308499336, + -0.00635153241455555, + -0.010901372879743576, + 0.008841210976243019, + -0.01794089376926422, + 0.012497808784246445, + -0.010863362811505795, + 0.013888987712562084, + 0.002712039742618799, + 0.00046348891919478774, + -0.00570155493915081, + -0.01894436590373516, + -0.01047565694898367, + 0.003500754712149501, + 0.007830135524272919, + 0.021103356033563614, + 0.037250157445669174, + -0.004979358054697514, + 0.03253687545657158, + -0.03694607689976692, + 0.02154427580535412, + 0.03448300436139107, + 0.01841222122311592, + 0.0002316256723133847, + 0.019142020493745804, + 0.0032270802184939384, + 0.027823587879538536, + 0.0070091113448143005, + -0.021878767758607864, + 0.0040405020117759705, + -0.0008732881397008896, + 0.005062980577349663, + -0.006009439006447792, + 0.0012438892154023051, + -0.01959814503788948, + 0.01092417910695076, + 0.006891279481351376, + 0.022593362256884575, + -0.025162862613797188, + 0.010642902925610542, + -0.0002924422442447394, + 0.014018222689628601, + 0.026014294475317, + -0.02225887030363083, + 0.0066176047548651695, + 0.04345345124602318, + 0.014421133324503899, + -0.016101190820336342, + 0.0011878239456564188, + 0.013645721599459648, + -0.02558857947587967, + 0.03414851427078247, + 0.00562553433701396, + -0.03332749009132385, + -0.03691566735506058, + -0.02148345857858658, + -0.005374665837734938, + 0.007655287627130747, + -0.018685895949602127, + 0.010582085698843002, + 0.01240658387541771, + -0.026196744292974472, + -0.00854473002254963, + 0.009593816474080086, + 0.02458510547876358, + -0.006100663915276527, + -0.007533654570579529, + 0.0014691007090732455, + 0.0052340272814035416, + 0.002932499861344695, + -0.015660271048545837, + 0.017256706953048706, + -0.020434372127056122, + -0.021817950531840324, + -0.02155948057770729, + -0.0172871146351099, + -0.026789706200361252, + -0.009099681861698627, + 0.026683276519179344, + -0.014763226732611656, + -0.03420932963490486, + -0.0130071472376585, + -0.008742384612560272, + 0.010604891926050186, + 0.03290177136659622, + -0.014352714642882347, + 0.01692221499979496, + 0.03591219335794449, + -0.02148345857858658, + -0.0008856415515765548, + 0.017302319407463074, + -0.024250613525509834, + 0.024387450888752937, + 0.018807528540492058, + 0.008119014091789722, + 0.008711975999176502, + -0.02464592084288597, + -0.02624235674738884, + 0.008210239000618458, + -0.006081658415496349, + -0.028416549786925316, + -0.009989124722778797, + -0.004580249078571796, + 0.008590342476963997, + -0.026151131838560104, + -0.029784923419356346, + 0.006492170505225658, + -0.016481295228004456, + 0.0008495316724292934, + -0.007989779114723206, + 0.011570355854928493, + 0.00423055374994874, + -0.025558169931173325, + 0.028887879103422165, + -0.02981533110141754, + 0.02736746333539486, + -0.004979358054697514, + 0.004861525725573301, + -0.02720021829009056, + 0.04862286150455475, + 0.0109849963337183, + 0.00016285065794363618, + -0.001993643818423152, + 0.008514322340488434, + -0.006663217209279537, + 0.043970391154289246, + 0.009981522336602211, + -0.03469586372375488, + 0.021285805851221085, + 0.016101190820336342, + 0.015561443753540516, + -0.0033848232124000788, + 0.08635955303907394, + 0.00042310290155000985, + 0.00709653552621603, + -0.0052454303950071335, + -0.006697426550090313, + -0.006028444040566683, + 0.005424079485237598, + -0.010886169038712978, + 0.03916588053107262, + 0.023885713890194893, + -0.008240647614002228, + 0.04476100578904152, + -0.008407892659306526, + 0.025223679840564728, + 0.021513868123292923, + -0.052271854132413864, + -0.012064490467309952, + -0.010901372879743576, + -0.0137141402810812, + 0.02362724393606186, + -0.001976539148017764, + -0.024448268115520477, + -0.01924845017492771, + 0.0077313086949288845, + -0.023171119391918182, + 0.03159421682357788, + -0.030970847234129906, + 0.04731530323624611, + -0.0020069472957402468, + -0.017484769225120544, + -0.004648667760193348, + 0.00699010631069541, + 0.008301463909447193, + -0.006381940562278032, + 0.016238028183579445, + 0.01924845017492771, + -0.014884859323501587, + 0.020981721580028534, + -0.018792325630784035, + -0.016481295228004456, + 0.0030465307645499706, + 0.041841812431812286, + -0.01851865090429783, + 0.03712852671742439, + 0.038040775805711746, + -0.014778430573642254, + 0.00011610978981480002, + -0.02707858569920063, + -0.01792568899691105, + -0.007837737910449505, + 0.03527361899614334, + 0.0018672592705115676, + -0.007773119956254959, + -0.030241047963500023, + 0.012148112989962101, + -0.023946531116962433, + -0.011045812629163265, + 0.011456324718892574, + 0.006583395414054394, + 0.018138546496629715, + 0.012269746512174606, + -0.013562099076807499, + -0.021118558943271637, + 0.0034266344737261534, + 0.004234354943037033, + -0.004964153748005629, + -0.013280821964144707, + 0.007613476365804672, + 0.015166136436164379, + 0.017956096678972244, + 0.037615057080984116, + -0.012018878012895584, + 0.00755265960469842, + 0.017059052363038063, + 0.017135072499513626, + -0.0024098572321236134, + 0.037615057080984116, + -0.015660271048545837, + -0.00251628621481359, + -0.015409402549266815, + 0.021224988624453545, + -0.022593362256884575, + -0.03515198826789856, + -0.002082968130707741, + -0.015812313184142113, + -0.0020202510058879852, + -0.002240711124613881, + 0.011304282583296299, + 0.0236880611628294, + 0.003466545371338725, + 0.04990001022815704, + 0.025968682020902634, + -0.011243466287851334, + 0.02149866335093975, + 0.022517340257763863, + -0.03758465126156807, + -0.007085132412612438, + 0.002609411720186472, + 0.027154605835676193, + -0.0027500500436872244, + 0.023201527073979378, + 0.0077161043882369995, + -0.004948949906975031, + -0.020996926352381706, + 0.016602927818894386, + -0.022882239893078804, + -0.005747167393565178, + -0.0006965399370528758, + 0.014748021960258484, + -0.005887805949896574, + -0.021893970668315887, + 0.009244120679795742, + -0.004519432783126831, + 0.005777575541287661, + 0.0504777655005455, + 0.011501937173306942, + -0.01651170291006565, + -0.030377885326743126, + 0.02096651867032051, + -0.021939583122730255, + 0.005564717575907707, + 0.002050659153610468, + 0.0005093389190733433, + -0.0013645722065120935, + -0.004880531225353479, + -0.03045390546321869, + 0.008567536249756813, + 0.00017852993914857507, + -0.03171585127711296, + 0.0001877949689514935, + -0.02035835199058056, + 0.020495189353823662, + -0.003852350637316704, + -0.00015358564269263297, + -0.024068163707852364, + -0.0058003817684948444, + 0.004086114466190338, + 0.020175902172923088, + -0.017834464088082314, + 0.015462617389857769, + 0.009046467021107674, + 0.003979685250669718, + -0.027808384969830513, + -0.019324470311403275, + 0.015120523981750011, + 0.0405038446187973, + -0.03828404098749161, + 0.01344806794077158, + 0.024797962978482246, + -0.025968682020902634, + 0.012915922328829765, + 0.015356187708675861, + -0.007761716842651367, + -0.009920706041157246, + -7.827759691281244e-5, + 0.06014760211110115, + 0.006568191107362509, + -0.0017893379554152489, + 0.008993253111839294, + -0.010832954198122025, + -0.018959570676088333, + 0.022243665531277657, + 0.01051366701722145, + 0.025634191930294037, + -0.000848581432364881, + 0.008324270136654377, + -0.008058197796344757, + -0.016998235136270523, + -0.010468054562807083, + -0.00423055374994874, + 0.001272396999411285, + -0.018549058586359024, + -0.00495655182749033, + 0.013349240645766258, + 0.00010850771650439128, + -0.0003634741296991706, + 0.00589160667732358, + -0.008704373612999916, + 0.02291264943778515, + -0.028963899239897728, + -0.009973919950425625, + -0.015166136436164379, + 0.00843069888651371, + 0.008058197796344757, + -0.002432663459330797, + -0.008552332408726215, + 0.016466090455651283, + 0.007168754935264587, + 0.01781925931572914, + 0.0013835773570463061, + -0.011182649992406368, + 0.012421787716448307, + 0.023247139528393745, + -0.021833155304193497, + -0.008354678750038147, + 0.01356970053166151, + 0.03639872744679451, + -0.014846849255263805, + 0.007921360433101654, + 0.007761716842651367, + 0.010278003290295601, + -0.0010101255029439926, + -0.01442873477935791, + 0.017712831497192383, + 0.0034931525588035583, + -0.010452850721776485, + -0.009563407860696316, + -0.024569900706410408, + -0.010977393947541714, + -0.015721088275313377, + -0.007434827741235495, + -0.006408547982573509, + -0.0320807509124279, + -0.01722629740834236, + 0.0027063381858170033, + 0.0025676002260297537, + 0.011570355854928493, + -0.05056899040937424, + -0.01798650622367859, + -0.020099882036447525, + 0.02358163148164749, + 0.021833155304193497, + -0.011752805672585964, + -0.008210239000618458, + -0.031685441732406616, + -0.039986904710531235, + 0.002588505856692791, + -0.027519505470991135, + 0.03819281607866287, + 0.012254541739821434, + -0.0012353368801996112, + 0.008962844498455524, + -0.030955642461776733, + -0.02767154760658741, + 0.02405295893549919, + -0.004751295782625675, + -0.004135527648031712, + -0.02701776847243309, + -0.044031210243701935, + -0.001989842625334859, + -0.03081880509853363, + 0.004728489555418491, + 0.012900718487799168, + -0.0483187772333622, + 0.03965241461992264, + 0.033935654908418655, + 0.028462162241339684, + -0.011030608788132668, + -0.02511725015938282, + -0.01727190986275673, + 0.008841210976243019, + -0.00991310365498066, + -0.037919141352176666, + -0.020403964444994926, + -0.017317522317171097, + 0.03326667100191116, + 0.01460358314216137, + 0.019811002537608147, + -0.0014633991522714496, + 0.013022351078689098, + 0.03846649080514908, + -0.0017741338815540075, + -0.015629863366484642, + -0.00994351226836443, + 0.005507702007889748, + -0.002550495555624366, + 8.84334949660115e-5, + 6.8225635914132e-6, + -0.00259800860658288, + 0.020495189353823662, + -0.012619441375136375, + -0.0005411725724115968, + -0.016785377636551857, + -0.011798418127000332, + -0.037493426352739334, + 0.009160498157143593, + -0.00439399853348732, + -0.011114231310784817, + -0.06847947835922241, + -0.02534531243145466, + -0.004504228476434946, + -0.013972610235214233, + -0.007643884513527155, + -0.00964703131467104, + 0.014436337165534496, + 0.018381813541054726, + -0.0019632354378700256, + -0.02475235052406788, + 0.004264763090759516, + -0.02642480656504631, + -0.008567536249756813, + 0.029769718647003174, + -0.015705883502960205, + 0.008134218864142895, + -0.010817750357091427, + -0.007043320685625076, + 0.042480386793613434, + 7.507047121180221e-5, + 0.01277148351073265, + 0.0015907338820397854, + 0.013394853100180626, + -0.01958294026553631, + 0.000429279578384012, + 0.05415717139840126, + -0.016192415729165077, + 0.013113575987517834, + -0.029648086056113243, + 0.003774429438635707, + 0.0018235472962260246, + 0.015705883502960205, + -0.005777575541287661, + -0.00430657435208559, + -0.0007787373615428805, + 0.0011612166417762637, + 0.0030522323213517666, + -0.010118359699845314, + 0.004637264646589756, + -0.015257361344993114, + 0.0020031463354825974, + 0.024448268115520477, + -0.025801436975598335, + -0.011281476356089115, + -0.002588505856692791, + -0.02162029594182968, + -0.01661813259124756, + -0.03098605014383793, + 0.010696116834878922, + 0.009038865566253662, + 0.006731635890901089, + -0.009259325452148914, + 0.00479310704395175, + -0.01368373166769743, + 0.008240647614002228, + 0.013873783871531487, + 0.01614680327475071, + -0.04655509814620018, + 0.018016913905739784, + 0.014124652370810509, + 0.04999123513698578, + 0.008415495045483112, + 0.012216531671583652, + 0.008096207864582539, + -0.025193270295858383, + 0.021817950531840324, + 0.008324270136654377, + 0.03962200507521629, + 0.03597301244735718, + -0.006678421515971422, + 0.030012985691428185, + 0.002295826096087694, + -0.0025257887318730354, + 0.016466090455651283, + 0.002824170282110572, + 0.026759298518300056, + -0.0030845412984490395, + 0.020175902172923088, + 0.010262798517942429, + -0.005895407870411873, + -0.03201993182301521, + 0.00371931423433125, + -0.01341765932738781, + -0.009183304384350777, + -0.00251628621481359, + 0.00849151611328125, + -0.009715449996292591, + -0.021164171397686005, + 0.007240974809974432, + -0.0019318768754601479, + 0.04193303734064102, + -0.0009507343056611717, + 0.013881386257708073, + 0.01036162581294775, + -0.012467400170862675, + 0.05522146075963974, + 0.004481422249227762, + 0.023171119391918182, + -0.0294504314661026, + -0.0028773846570402384, + -0.01964375749230385, + -0.017667219042778015, + -0.005047776736319065, + -0.012566227465867996, + -0.0025542965158820152, + -0.002335736993700266, + 0.02203080803155899, + -0.020996926352381706, + -0.018807528540492058, + -0.011334691196680069, + -0.004542239010334015, + -0.0011764208320528269, + -0.020023861899971962, + 0.002795662498101592, + -0.007267582230269909, + 0.026440011337399483, + -0.012687860056757927, + 0.0007488042465411127, + 0.011494334787130356, + 0.004397799260914326, + 0.0001630882325116545, + 0.022821424528956413, + 0.00562553433701396, + -0.02951124869287014, + -0.031031662598252296, + 0.009228916838765144, + -0.013622915372252464, + -0.009920706041157246, + 0.008141820318996906, + 0.031016459688544273, + -0.024782758206129074, + -0.013752150349318981, + 0.015994763001799583, + 0.009578612633049488, + 0.0030807401053607464, + 0.01669415272772312, + 0.025740619748830795, + -0.010665709152817726, + 0.038800980895757675, + -0.02718501351773739, + 0.02297346480190754, + -0.0024516687262803316, + -0.012786687351763248, + 0.01084055658429861, + 0.0003979210159741342, + 0.0017541784327477217, + -0.013942202553153038, + -0.021042538806796074, + 0.007465235888957977, + -0.011874438263475895, + -0.03165503218770027, + -0.002240711124613881, + 0.004458616022020578, + 0.009753460064530373, + -0.016876602545380592, + -0.02548214979469776, + -0.005716759245842695, + -0.010300809517502785, + 0.00037297673407010734, + -0.003170064650475979, + -0.003591979620978236, + -0.0016924116062000394, + 0.020814476534724236, + -0.010597290471196175, + -0.005024970509111881, + 0.001862507895566523, + -0.02932879887521267, + 0.013235209509730339, + -0.007613476365804672, + -0.006317323073744774, + -0.017560789361596107, + -0.0109849963337183, + 0.017499972134828568, + 0.008947640657424927, + -0.011532344855368137, + 0.00201074848882854, + 0.0011764208320528269, + -0.0013664726866409183, + 0.027595525607466698, + -0.003861853154376149, + -0.006020842120051384, + 0.030119413509964943, + -0.01427669357508421, + 0.017606401816010475, + -0.012322960421442986, + -0.005348058417439461, + 0.009685041382908821, + 0.015721088275313377, + 0.011023006401956081, + -0.009677438996732235, + -0.0011773711303249002, + 0.03057553805410862, + -0.002921096747741103, + -0.016283640637993813, + 0.00923651922494173, + -3.177429243805818e-5, + 0.024737145751714706, + 0.004067109432071447, + -0.025041230022907257, + 0.0007388265221379697, + 0.014474347233772278, + -0.026561643928289413, + 0.0029134945943951607, + -0.014367918483912945, + -0.017499972134828568, + 0.026576848700642586, + -0.027473893016576767, + 0.004500427283346653, + 0.0038922615349292755, + -0.00482351565733552, + -0.023855306208133698, + -0.0005273938295431435, + -0.0028431753162294626, + -0.004998363088816404, + 0.01657252013683319, + -0.017439156770706177, + 0.01057448424398899, + -0.0034589434508234262, + 0.0010671410709619522, + 0.0003109723038505763, + 0.006971101276576519, + 0.000514090177603066, + -0.0035748749505728483, + -0.004834918770939112, + 0.010726525448262691, + 0.012148112989962101, + -0.00994351226836443, + -0.018959570676088333, + -0.005731963086873293, + 0.0155842499807477, + -0.011144638992846012, + 0.02035835199058056, + 0.01460358314216137, + 0.015842720866203308, + -0.007742711808532476, + 0.024007346481084824, + 0.00021986621140968055, + 0.0008666363428346813, + 0.014367918483912945, + 0.011144638992846012, + -0.013159188441932201, + 0.007586868945509195, + -0.02464592084288597, + 0.024615513160824776, + 0.02548214979469776, + 0.013493680395185947, + -0.03341871500015259, + -0.007263781037181616, + -0.0006352482596412301, + 0.015090115368366241, + 0.011357497423887253, + -0.004922342486679554, + 0.004777903202921152, + 0.03360116481781006, + -0.003550168126821518, + 0.00982948113232851, + 0.0172871146351099, + -0.006313521880656481, + 0.015645066276192665, + 0.0005682549672201276, + -0.029830535873770714, + -0.006271710619330406, + -0.001455796998925507, + -0.03965241461992264, + -0.006260307505726814, + -0.023946531116962433, + 0.012779084965586662, + 0.03794955089688301, + 0.020464781671762466, + -0.022456524893641472, + 0.010125961154699326, + -0.02350561134517193, + -0.010521269403398037, + -0.001995544182136655, + 0.004036700818687677, + 0.014763226732611656, + -0.020023861899971962, + -0.004101318307220936, + 0.011121832765638828, + -0.006066454574465752, + 0.009434172883629799, + -0.01499128807336092, + -0.017180684953927994, + 0.00935055036097765, + 0.013531690463423729, + -0.0038029372226446867, + 0.020236719399690628, + 0.00827865768224001, + 0.013159188441932201, + 0.01223173551261425, + 0.013911793939769268, + 0.014976084232330322, + 0.009061671793460846, + 0.007400618400424719, + 0.001470050890929997, + -0.01092417910695076, + 0.021529071033000946, + -0.008240647614002228, + 0.0035957805812358856, + 0.015409402549266815, + 0.028355732560157776, + -0.023186324164271355, + -0.04567325487732887, + -0.021878767758607864, + -0.01651170291006565, + -0.0002596583217382431, + 0.005389870144426823, + 0.006541584152728319, + -0.004580249078571796, + 0.014801236800849438, + -0.004777903202921152, + 0.009411366656422615, + -0.006161480210721493, + -0.021331418305635452, + -0.003620487404987216, + 0.008445903658866882, + 0.022471727803349495, + -0.012786687351763248, + 0.009000854566693306, + -0.01859467104077339, + 0.013790161348879337, + 0.01763680949807167, + 0.03439177945256233, + 0.009563407860696316, + -0.013668527826666832, + -0.00760207325220108, + 0.013159188441932201, + -0.005017368588596582, + -0.00546208955347538, + -0.010878566652536392, + -0.016466090455651283, + 0.03201993182301521, + 0.02517806738615036, + 0.020206309854984283, + -0.001356970053166151, + 0.0006129171815700829, + -0.005511503200978041, + 0.014664399437606335, + 0.008810803294181824, + -0.0030560335144400597, + 0.014816440641880035, + 0.025193270295858383, + -0.010597290471196175, + 0.00920611061155796, + 0.011737600900232792, + -0.0037288169842213392, + 0.031502991914749146, + -0.00522262416779995, + 0.03503035381436348, + -0.02796042524278164, + -0.005511503200978041, + 0.01356970053166151, + 0.029009511694312096, + -0.001269546221010387, + 0.0011317586759105325, + 0.0810685083270073, + 0.020692843943834305, + 0.015447412617504597, + -0.041720177978277206, + -0.017363134771585464, + -0.02605990692973137, + -0.0006613803561776876, + -0.00798217672854662, + 0.024600308388471603, + -0.002204601187258959, + 0.01363051775842905, + 0.004492825362831354, + 0.0007393016130663455, + 0.01014876738190651, + -0.03579056262969971, + 0.00746903708204627, + -0.0012980540050193667, + -0.028598999604582787, + 0.0028811858501285315, + -0.02732185088098049, + 0.0030959444120526314, + -0.01077213790267706, + 0.01401062123477459, + -0.00562553433701396, + -0.009266926907002926, + 0.040868744254112244, + -0.015781903639435768, + -0.007252377923578024, + -0.012497808784246445, + -0.013584905304014683, + -0.01894436590373516, + 0.0011906747240573168, + 0.008924834430217743, + 0.005427880212664604, + -0.01964375749230385, + -0.01851865090429783, + -0.009259325452148914, + 0.005830790381878614, + 0.016830990090966225, + -0.0025961080100387335, + -0.0015042602317407727, + -0.038740165531635284, + 0.016815785318613052, + -0.03414851427078247, + -0.022578157484531403, + 0.0031890696845948696, + 0.030256250873208046, + -0.004675275180488825, + 0.029617678374052048, + 0.005986632779240608, + -0.002060161903500557, + 0.009935909882187843, + 0.004663872066885233, + 0.03195911645889282, + -0.02761073037981987, + -0.015340983867645264, + 0.010452850721776485, + 0.017059052363038063, + -0.02505643293261528, + -0.011045812629163265, + -0.008058197796344757, + 0.004534636624157429, + 0.026804910972714424, + 0.0074462308548390865, + 0.0004779803566634655, + -0.013341638259589672, + 0.0028545784298330545, + -0.005975229665637016, + -0.008339473977684975, + -0.0038637537509202957, + 0.013805365189909935, + -0.009859888814389706, + -0.021209783852100372, + 0.011623569764196873, + 0.002565699629485607, + 0.01657252013683319, + -0.016314048320055008, + -0.0042989724315702915, + -0.009692643769085407, + 0.04244997724890709, + -0.0006490270025096834, + 0.018366608768701553, + -0.029769718647003174, + 0.009380958043038845, + -0.01442873477935791, + -0.015660271048545837, + -0.019993452355265617, + 0.01181362196803093, + -0.010278003290295601, + -0.0023870510049164295, + -0.007195362355560064, + -0.0027614531572908163, + -0.013318832032382488, + 0.019567737355828285, + 0.033935654908418655, + 0.013820569030940533, + -0.008985650725662708, + 0.06145516037940979, + -0.0031662634573876858, + 0.04053425416350365, + 0.018123343586921692, + -0.02517806738615036, + -0.002675929805263877, + -0.04074711352586746, + 0.024493880569934845, + -0.015827516093850136, + -0.009327744133770466, + -0.008734782226383686, + 0.014231081120669842, + -0.005161807872354984, + -0.007974575273692608, + 0.026440011337399483, + -0.02405295893549919, + -0.021863562986254692, + -0.0021608893293887377, + 0.0024972811806946993, + 0.0021608893293887377, + -0.0018501546001061797, + -0.01461118459701538, + -8.867105498211458e-5, + -0.03828404098749161, + 0.006533981766551733, + 0.022456524893641472, + 0.010293207131326199, + -0.0006585295777767897, + 0.001033881912007928, + -0.004325579851865768, + -0.02292785234749317, + 0.023855306208133698, + 0.030894825235009193, + 0.0021247793920338154, + -0.007461434695869684, + 0.00519601721316576, + -0.0037497226148843765, + 0.021589888259768486, + -0.02724583074450493, + 0.036246687173843384, + -0.014945675618946552, + -0.00037440212327055633, + 0.02599908970296383, + 0.00017080908583011478, + -0.016785377636551857, + -0.009008456952869892, + 0.025436537340283394, + -0.0017921887338161469, + 0.0013579203514382243, + -0.02422020584344864, + -0.007913758046925068, + -0.01794089376926422, + 0.008255851455032825, + -0.016101190820336342, + 0.008902028203010559, + 0.006469364278018475, + -0.0008001181995496154, + 0.009776266291737556, + -0.006993907503783703, + 0.00905406940728426, + -0.0012039783177897334, + 0.006431354209780693, + 0.0014358415501192212, + -0.011327088810503483, + -0.005021169316023588, + 0.0002924422442447394, + -0.028173282742500305, + 0.008369882591068745, + -0.008369882591068745, + -0.0019071701681241393, + -0.0025371918454766273, + 0.005541911348700523, + 0.013592506758868694, + 0.01673976518213749, + 0.0026683276519179344, + -0.015827516093850136, + -0.03217197582125664, + 0.0070509230718016624, + -0.0009217513725161552, + 0.000137668801471591, + 0.018153751268982887, + 0.010049941018223763, + 0.03226320073008537, + 0.00031548604601994157, + 0.011806019581854343, + -0.007389215286821127, + -0.012201327830553055, + -0.004063308238983154, + 0.007389215286821127, + 0.017621606588363647, + -0.007822533138096333, + -0.008073401637375355, + 0.0026721288450062275, + 0.08794078230857849, + -0.012201327830553055, + 0.006400945596396923, + -0.0063439300283789635, + 0.0013398653827607632, + -0.017302319407463074, + -0.00023578305263072252, + 0.02190917544066906, + 0.0085751386359334, + 0.009996726177632809, + 0.01964375749230385, + -0.0010243793949484825, + 0.010080348700284958, + -0.01036162581294775, + -0.0005516254459507763, + 0.004169736988842487, + 0.003730717347934842, + 0.011083822697401047, + 0.006248904392123222, + 0.011357497423887253, + 0.0021456852555274963, + -0.020084677264094353, + -0.037067707628011703, + 0.02938961610198021, + -0.0038808584213256836, + 0.008582741022109985, + 0.005043975543230772, + -0.004515631590038538, + 0.00827865768224001, + 0.02184835821390152, + 0.0024649722035974264, + 0.008385086432099342, + -0.016314048320055008, + 0.008362280204892159, + 0.011714794673025608, + 0.013364444486796856, + -0.007560261990875006, + 0.020936109125614166, + -0.007632481399923563, + 0.035060763359069824, + 0.0024041556753218174, + -0.0037782303988933563, + 0.004496626555919647, + 0.023475201800465584, + -0.02358163148164749, + -0.0059524234384298325, + -0.0035748749505728483, + 0.0031871693208813667, + 0.0040138945914804935, + -0.004321778658777475, + 0.009639428928494453, + -0.009875093586742878, + 0.022182850167155266, + 0.010194379836320877, + -0.0026835319586098194, + -0.012513012625277042, + 0.014535164460539818, + -0.033874839544296265, + -0.00238325004465878, + 0.0060740564949810505, + -0.014025825075805187, + -0.006302118767052889, + -0.015242156572639942, + -0.0006290715537033975, + -0.014322306029498577, + -0.01845783367753029, + -0.01929406262934208, + -0.006830462720245123, + 0.010635300539433956, + 0.004675275180488825, + -0.01792568899691105, + 0.007275184150785208, + 0.004093716386705637, + -0.03360116481781006, + -0.009099681861698627, + 0.014960880391299725, + 0.012718268670141697, + 0.01686139777302742, + 0.02095131389796734, + 0.007503246422857046, + -0.013828171417117119, + 0.008871619589626789, + -0.0007749363430775702, + -0.03664199262857437, + -0.011882040649652481, + -0.008088606409728527, + 0.007875747978687286, + -0.020115086808800697, + -0.006514976732432842, + -0.026470419019460678, + -0.005887805949896574, + -0.016602927818894386, + 0.000906547240447253, + 0.004785505123436451, + -0.010612494312226772, + 0.008073401637375355, + -0.005712958052754402, + -0.03165503218770027, + -0.010832954198122025, + -0.005469691939651966, + 0.015325780026614666, + 0.016070783138275146, + -0.015599454753100872, + 0.007047121878713369, + -0.005207420326769352, + 0.009282131679356098, + 0.015006492845714092, + 0.006283113732933998, + -0.017195889726281166, + 0.006689824629575014, + -0.005078184884041548, + -0.006176684517413378, + -0.0145731745287776, + -0.007278985343873501, + -0.008871619589626789, + 0.01692221499979496, + 0.023855306208133698, + 0.011661580763757229, + -0.008635954931378365, + -0.02096651867032051, + -0.01523455511778593, + 0.009859888814389706, + 0.005560916382819414, + -0.017606401816010475, + -0.016724560409784317, + 0.006199490744620562, + -0.007883350364863873, + -0.0025485949590802193, + -0.011281476356089115, + -0.00746903708204627, + 0.00979907251894474, + 0.018199363723397255, + 0.0007815881399437785, + -0.011577957309782505, + 0.012627043761312962, + -0.006511175539344549, + -0.010163972154259682, + 0.006001836620271206, + 0.00476650008931756, + -0.012695462442934513, + 0.016116395592689514, + 0.012201327830553055, + 0.0027557516004890203, + 0.015629863366484642, + -0.0066138035617768764, + 0.006784850265830755, + -0.016709357500076294, + -0.019461307674646378, + 0.00559512572363019, + 3.622863005148247e-5, + 0.003439938183873892, + -0.018442628905177116, + 0.003280294593423605, + -0.024007346481084824, + 0.005515304394066334, + -0.018092934042215347, + -0.027124198153614998, + 0.011821224354207516, + -0.01315158698707819, + -0.0030085204634815454, + 0.0085751386359334, + 0.00994351226836443, + -0.02642480656504631, + -0.00014289522368926555, + 0.000993971130810678, + 0.005036373622715473, + 0.02542133256793022, + 0.025695007294416428, + 0.01614680327475071, + 0.005215022247284651, + -0.023824898526072502, + 0.0051237973384559155, + 0.010703719221055508, + -0.038557715713977814, + -0.02060161903500557, + 0.008362280204892159, + 0.0018701100489124656, + -0.013691334053874016, + -0.021954787895083427, + 0.009761062450706959, + 0.003941675182431936, + -0.01632925309240818, + 0.006963498890399933, + -0.00018969547818414867, + 0.004777903202921152, + -0.007465235888957977, + 0.016116395592689514, + -0.011958061717450619, + -0.012573828920722008, + 0.007366409059613943, + -0.005211221054196358, + 0.018853140994906425, + -0.01534858625382185, + 0.01561465859413147, + -0.0036337911151349545, + -0.004656269680708647, + 0.016967827454209328, + 0.024037756025791168, + -0.008263453841209412, + -0.028538182377815247, + 0.008415495045483112, + -0.0066290078684687614, + 0.03454381972551346, + 0.0011393607128411531, + -0.001194475800730288, + -0.02495000511407852, + -0.010171573609113693, + -0.0037991360295563936, + 0.0048691281117498875, + -0.008149422705173492, + -0.032932180911302567, + -0.022775812074542046, + 0.019628552719950676, + 0.005207420326769352, + -0.0049907611683011055, + 0.003500754712149501, + 0.019370082765817642, + 0.011471528559923172, + -0.001612589810974896, + -0.010711321607232094, + -0.0040405020117759705, + -0.00920611061155796, + 0.01517373789101839, + -0.014846849255263805, + -0.004002491477876902, + 0.005598926916718483, + 0.02154427580535412, + -0.0026550241746008396, + 0.011646375991404057, + -0.009008456952869892, + 0.011410712264478207, + 0.006070255301892757, + -0.015873128548264503, + 0.02951124869287014, + 0.008666363544762135, + 0.0324152410030365, + 0.03627709299325943, + -0.00923651922494173, + 0.01579710841178894, + -0.011722397059202194, + -0.008567536249756813, + 0.010893771424889565, + -0.008263453841209412, + -0.026029499247670174, + -0.006716431584209204, + -0.004439610987901688, + -0.0018444530433043838, + 0.003922669682651758, + 0.005503901280462742, + -2.67111918219598e-5, + -0.008202636614441872, + -0.005914412904530764, + 0.004739892669022083, + 0.008506719954311848, + 0.0137141402810812, + -0.004135527648031712, + 0.0020582613069564104, + -0.0024402656126767397, + -0.007545057684183121, + -0.020160697400569916, + -0.0072865872643888, + 0.007852941751480103, + -0.0030522323213517666, + -0.017484769225120544, + 0.0003147733514197171, + 0.011380303651094437, + -0.019385287538170815, + -0.0014282395131886005, + 0.004542239010334015, + 0.00739301647990942, + -0.0007464285590685904, + -0.00680005457252264, + 0.00043403086601756513, + 0.0006257456843741238, + -0.02487398311495781, + -0.014983686618506908, + 0.018716303631663322, + -0.01626843772828579, + 0.03496953845024109, + 0.016070783138275146, + -0.019020387902855873, + 0.0011802219087257981, + -0.0008447804138995707, + -0.01673976518213749, + -0.005161807872354984, + -0.0040290988981723785, + 0.005450686439871788, + 0.00961662270128727, + -0.004112721420824528, + 0.009168100543320179, + 0.008081004023551941, + -0.047588977962732315, + -0.006355333141982555, + -0.014413530938327312, + 0.0032821951899677515, + 0.008385086432099342, + -0.0010528871789574623, + -0.012322960421442986, + 0.012817095965147018, + -0.006492170505225658, + -0.010886169038712978, + 0.006009439006447792, + -0.016009965911507607, + -0.015553842298686504, + 0.02037355676293373, + 0.004409202374517918, + -0.008331872522830963, + 0.0007473788573406637, + -0.001194475800730288, + 0.014519959688186646, + -0.0014976084930822253, + -0.0013579203514382243, + -0.006112067028880119, + -0.009844684973359108, + 0.0028336727991700172, + -0.019157225266098976, + -0.0041773393750190735, + 0.04132486879825592, + -0.020920906215906143, + 0.0022616167552769184, + 0.01274107489734888, + 0.0009445575997233391, + -0.020084677264094353, + -0.011395507492125034, + -0.00961662270128727, + 0.009723051451146603, + 0.02250213734805584, + 0.016891807317733765, + -0.0009583363425917923, + -0.010680912993848324, + 0.0018520550802350044, + -0.0015299172373488545, + -0.02820369228720665, + 0.011980867944657803, + -0.014679603278636932, + 0.028720632195472717, + -0.0070357187651097775, + -0.010977393947541714, + 0.0018035918474197388, + 0.004872928839176893, + -0.022638974711298943, + -0.00479310704395175, + -0.02119458094239235, + 0.00206206226721406, + 0.00776551803573966, + 0.02517806738615036, + 0.010316013358533382, + -0.013143984600901604, + 0.020981721580028534, + -0.0035957805812358856, + -0.029237573966383934, + 0.017317522317171097, + 0.02221325784921646, + 0.004082313273102045, + -0.005066781770437956, + -0.006731635890901089, + 0.008886823430657387, + 0.011038210242986679, + -0.01786487177014351, + 0.007807329297065735, + -0.00583459110930562, + 0.01775844395160675, + -0.005177011713385582, + -0.0070509230718016624, + 0.02511725015938282, + -0.011524743400514126, + -0.005606528837233782, + -0.005013567395508289, + -0.03597301244735718, + -0.0070395199581980705, + -7.646616722922772e-6, + -0.023855306208133698, + -0.007769318763166666, + -0.01282469742000103, + -0.012627043761312962, + 0.029602473601698875, + 0.0056559424847364426, + 0.0016914613079279661, + 0.0009844684973359108, + -0.009107284247875214, + 0.0029743111226707697, + -0.0023927525617182255, + -0.00680005457252264, + -0.02154427580535412, + 0.016587723046541214, + 0.01561465859413147, + 0.007472837809473276, + 0.023262344300746918, + 0.014109447598457336, + -0.013820569030940533, + -0.003998690750449896, + 0.006104464642703533, + 0.001978439511731267, + -0.0057889786548912525, + -0.007921360433101654, + 0.0033772210590541363, + 0.005918214097619057, + 0.014580776914954185, + -0.011745203286409378, + 0.010316013358533382, + 0.0239921435713768, + -0.01788007654249668, + -0.0012448395136743784, + 0.001769382506608963, + 0.01296913716942072, + -0.011768009513616562, + 0.0003606233512982726, + 0.01499128807336092, + 0.02298866957426071, + -0.006032245233654976, + -0.005100991111248732, + 0.007750313729047775, + -0.01947651244699955, + 0.005085786804556847, + 0.01894436590373516, + 0.010878566652536392, + 0.015812313184142113, + 0.00016225675062742084, + -0.002521987771615386, + -0.003158661536872387, + 0.019613349810242653, + -0.002312930766493082, + 0.0005663544870913029, + 0.008445903658866882, + -0.018184158951044083, + -0.008362280204892159, + 0.008225442841649055, + 0.002955306088551879, + 0.0010975493350997567, + 0.009487387724220753, + -0.009654632769525051, + -0.011555151082575321, + -0.0016724561573937535, + 0.02607511170208454, + -0.0044320086017251015, + -2.6043040634249337e-5, + 0.031138092279434204, + 0.010399635881185532, + 0.013341638259589672, + 0.0023110301699489355, + -0.022517340257763863, + 0.00605505146086216, + 0.013721742667257786, + 0.02168111316859722, + 0.027063380926847458, + -0.011167445220053196, + 0.0032650905195623636, + 0.010855760425329208, + 0.003626188961789012, + -0.021772338077425957, + -0.011593162082135677, + 0.019218040630221367, + -0.01651170291006565, + -0.006974902004003525, + -0.0017494270578026772, + -0.0051123942248523235, + 0.02047998458147049, + -0.004374993033707142, + 0.023064689710736275, + -0.019628552719950676, + -0.017545584589242935, + -0.0032042739912867546, + -0.019035590812563896, + -0.0014025825075805187, + -0.000745478319004178, + 0.010468054562807083, + 0.017712831497192383, + 0.011456324718892574, + 0.009168100543320179, + 0.01062769815325737, + -0.0020962716080248356, + 0.01661813259124756, + 0.006838065106421709, + -0.008666363544762135, + 0.019689369946718216, + 0.010901372879743576, + -0.01924845017492771, + 0.005484895780682564, + 0.0071611530147492886, + -0.0007934664026834071, + 0.008453505113720894, + 0.00897044688463211, + -0.016907010227441788, + -0.0008053446654230356, + 0.015493025071918964, + -0.00019135844195261598, + -0.0035577702801674604, + 0.012870309874415398, + 0.016131600365042686, + -0.003994889557361603, + 0.009852287359535694, + -0.019400490447878838, + 0.013105974532663822, + -0.010794944129884243, + 0.01172999944537878, + 0.002138083102181554, + 0.002550495555624366, + -8.16628968891564e-8, + 0.0022160043008625507, + -0.013539292849600315, + 0.008932435885071754, + -0.00736260786652565, + -0.0052644358947873116, + 0.017059052363038063, + 0.010163972154259682, + -0.006017040926963091, + -0.020403964444994926, + 0.008423097431659698, + 0.003202373394742608, + -0.0070243156515061855, + -0.0027101391460746527, + -0.0018216468160972, + -0.016344457864761353, + 0.010749331675469875, + -0.0051390016451478004, + 0.009411366656422615, + -0.02148345857858658, + -0.005633136257529259, + 0.00897044688463211, + 0.007769318763166666, + 0.013759752735495567, + -0.016770172864198685, + 0.0032650905195623636, + 0.007225770503282547, + 0.004937546793371439, + 0.009342947974801064, + 0.01978059485554695, + 0.00749564403668046, + 0.02168111316859722, + -0.0137141402810812, + -0.018320996314287186, + 0.01296913716942072, + -0.0044624172151088715, + -0.001185923465527594, + 0.009008456952869892, + -0.00026369691477157176, + 0.009000854566693306, + 0.011479130946099758, + 0.026789706200361252, + 0.0021570883691310883, + -0.012368572875857353, + 0.015386596322059631, + -0.006473165471106768, + 0.0003934073029085994, + -0.003679403569549322, + -0.012953932397067547, + -0.0008001181995496154, + -0.008582741022109985, + 0.008453505113720894, + -0.005344257690012455, + 0.00602464284747839, + 0.00479310704395175, + 0.032749731093645096, + 0.006385741755366325, + 0.01234576664865017, + -0.023262344300746918, + -0.010528871789574623, + -0.013326434418559074, + 0.004302773624658585, + -4.0801751310937107e-5, + -0.0026455214247107506, + -0.009806674905121326, + -0.013029953464865685, + 0.011030608788132668, + -0.03472626954317093, + 0.0034437391441315413, + 0.027002563700079918, + 0.00749564403668046, + -0.005256833508610725, + 0.01080254651606083, + -0.009966318495571613, + -0.0018615577137097716, + -0.0039074658416211605, + -0.00752605265006423, + -0.006594798527657986, + -0.004321778658777475, + -0.03308422118425369, + 0.00036988838110119104, + -0.010285604745149612, + -0.003763026325032115, + -0.0017940893303602934, + -0.006275511346757412, + -0.003531163092702627, + -0.022669382393360138, + 0.017013439908623695, + 0.0001502597297076136, + 0.009821878746151924, + -0.02434183843433857, + 0.013820569030940533, + -0.024433063343167305, + 0.035182394087314606, + -0.019628552719950676, + -0.007989779114723206, + -0.017074257135391235, + 0.0077313086949288845, + 0.0013427161611616611, + 0.006241302005946636, + 0.0010329317301511765, + -0.014497153460979462, + -0.031685441732406616, + 0.007031917572021484, + 0.010422442108392715, + -0.015660271048545837, + 0.0014652996324002743, + 0.020343147218227386, + 0.0024193597491830587, + 0.008749986067414284, + -0.03563851863145828, + 0.011608365923166275, + -0.0006951145478524268, + -0.017804056406021118, + -0.015690678730607033, + 0.021529071033000946, + 0.00527203781530261, + 0.00908447802066803, + -0.00752605265006423, + 0.0070509230718016624, + -0.017135072499513626, + 0.027641138061881065, + -0.0059562246315181255, + -0.002753851003944874, + -0.02356642670929432, + -0.010293207131326199, + 0.005830790381878614, + -0.0006162430508993566, + 0.007875747978687286, + -0.008225442841649055, + 0.0032992998603731394, + 0.015933945775032043, + -0.010673310607671738, + 0.0027329453732818365, + 0.009327744133770466, + -0.008917232044041157, + -0.009814276359975338, + -0.007031917572021484, + -0.005420278292149305, + -0.01941569522023201, + 0.0028545784298330545, + 0.017849668860435486, + -0.0019328271737322211, + 0.0017247203504666686, + -0.014383122324943542, + 0.004276166204363108, + 0.006777248345315456, + 0.0037877329159528017, + 0.010468054562807083, + 0.002725343219935894, + 0.011524743400514126, + -0.011083822697401047, + -0.015515831299126148, + -0.020206309854984283, + 0.02090570144355297, + -0.024387450888752937, + 0.0050971899181604385, + 0.0075640627183020115, + -0.008400291204452515, + 0.0019803401082754135, + -0.009685041382908821, + 0.01125106867402792, + -0.0052340272814035416, + -0.018214568495750427, + -0.027747567743062973, + -0.015249758958816528, + 0.024509083479642868, + -0.006336328107863665, + -0.030788397416472435, + 0.003949277102947235, + 0.008073401637375355, + -0.004302773624658585, + -0.025223679840564728, + 0.0026987360324710608, + 0.009730653837323189, + 0.006735437083989382, + 0.017560789361596107, + -0.006655615288764238, + -0.006541584152728319, + 0.012870309874415398, + -0.000302895117783919, + 0.011296681128442287, + -0.021833155304193497, + -0.016162008047103882, + 0.01661813259124756, + -0.016116395592689514, + -0.013212403282523155, + -1.3184845556679647e-5, + 0.008590342476963997, + -0.009593816474080086, + -0.01722629740834236, + 0.0006319223321042955, + 0.004587850999087095, + -0.02957206591963768, + 0.010057543404400349, + 0.0003822417347691953, + -0.035243213176727295, + 0.03496953845024109, + -0.0009345798753201962, + -0.0037326179444789886, + -0.018913958221673965, + -0.02856859192252159, + -0.0127030648291111, + -0.014793634414672852, + -0.00570155493915081, + 0.012208929285407066, + -0.013843375258147717, + 0.00412412453442812, + 0.001304705860093236, + -0.002778557827696204, + -0.015812313184142113, + -0.00831666775047779, + 0.0037725288420915604, + -0.0062260981649160385, + 0.006488369312137365, + -0.012748677283525467, + -0.007921360433101654, + -0.003759225131943822, + -0.015599454753100872, + 0.007343602832406759, + -0.004325579851865768, + -0.014968481846153736, + 0.02174193039536476, + -0.01898997835814953, + 0.021164171397686005, + -0.0015869328053668141, + 0.012520615011453629, + -0.01226214412599802, + 0.0032897971104830503, + 0.010787341743707657, + 0.00436358992010355, + -0.01084055658429861, + 0.007001509424299002, + 0.01847303844988346, + -0.004002491477876902, + 0.00976866390556097, + 0.004093716386705637, + -0.011091425083577633, + -0.011676784604787827, + 0.010285604745149612, + 0.0038200418930500746, + -0.009297335520386696, + 0.00011284327774774283, + -0.01315158698707819, + -0.026622461155056953, + -0.002312930766493082, + -0.02732185088098049, + 0.028887879103422165, + 0.0028222696855664253, + 0.006788651458919048, + 0.012862708419561386, + -0.020023861899971962, + -0.0014367918483912945, + -0.010931781493127346, + -0.016815785318613052, + 0.023171119391918182, + -0.003506456268951297, + 0.006514976732432842, + -0.004610657226294279, + 0.028659816831350327, + -0.006355333141982555, + 0.013212403282523155, + 0.002280622022226453, + 0.025162862613797188, + -0.00632112380117178, + -0.012467400170862675, + 0.019963044673204422, + -0.012269746512174606, + -0.004078512080013752, + -0.013394853100180626, + 0.009935909882187843, + -0.015211748890578747, + 0.010551678016781807, + 0.002620814833790064, + 0.0008856415515765548, + -0.01427669357508421, + -0.025497354567050934, + -0.03594260290265083, + -0.026272764429450035, + -0.01596435345709324, + 0.0031795671675354242, + 0.0021171774715185165, + 0.009707847610116005, + 0.01667894795536995, + -0.018792325630784035, + -0.006169082596898079, + 0.0063439300283789635, + -0.015340983867645264, + 0.005633136257529259, + -0.004918541293591261, + 0.014215877279639244, + 0.008841210976243019, + 0.004576447885483503, + 0.006549186073243618, + -0.003268891479820013, + -0.037432607263326645, + -0.012839902192354202, + 0.015029299072921276, + 0.010863362811505795, + 0.00819503515958786, + -0.02660725638270378, + -0.011380303651094437, + -0.017910484224557877, + 0.00792896281927824, + 0.016314048320055008, + -0.011714794673025608, + -0.005043975543230772, + -0.0018311494495719671, + 0.03198952600359917, + -0.014261489734053612, + -0.004876730032265186, + 0.0026246157940477133, + -0.0023053286131471395, + 0.014862053096294403, + -0.01084055658429861, + -0.00371931423433125, + -0.01971977762877941, + -0.004473820328712463, + -0.014831645414233208, + 0.013835773803293705, + -0.016162008047103882, + 0.010832954198122025, + 0.02137703076004982, + 0.004679075907915831, + 0.0053974720649421215, + 0.01344806794077158, + -0.018685895949602127, + -0.02387051098048687, + 0.019978249445557594, + 0.008506719954311848, + 0.009517795406281948, + -0.004382595419883728, + -0.008559934794902802, + -0.012421787716448307, + -0.007609675172716379, + 0.004200145602226257, + 0.02190917544066906, + 0.009601418860256672, + -0.012718268670141697, + 0.0034304356668144464, + 0.000604364846367389, + -0.00020822553778998554, + 0.013463271781802177, + 0.014139856211841106, + -0.019172428175807, + 0.016998235136270523, + 0.002252114238217473, + 0.001815945259295404, + -0.0034209329169243574, + -0.010422442108392715, + 0.015888333320617676, + -0.007822533138096333, + -0.029420023784041405, + 0.00976866390556097, + 0.01591874100267887, + 0.014269091188907623, + 0.010680912993848324, + -0.00241175782866776, + 0.020206309854984283, + 0.0033145039342343807, + -0.005268236622214317, + -0.000598663289565593, + -0.01178321335464716, + -0.001301855081692338, + 0.018868345767259598, + 0.0023281348403543234, + 0.0029363008216023445, + 0.012611839920282364, + -0.0008376534678973258, + -0.014185468666255474, + 0.0137141402810812, + -0.003582477103918791, + 0.021833155304193497, + -0.015310575254261494, + -0.012877912260591984, + -0.013220005668699741, + 0.0031928708776831627, + -0.01151714101433754, + -0.006180485710501671, + 0.002905892441049218, + 0.012041684240102768, + -0.030073801055550575, + 0.018670691177248955, + -0.012786687351763248, + -0.005986632779240608, + -0.004279967397451401, + 0.010490860790014267, + -0.015272565186023712, + -0.02078406885266304, + 0.013394853100180626, + -0.005906810984015465, + -0.0013902290957048535, + 0.015903538092970848, + -0.0016753069357946515, + 0.007936564274132252, + 0.024493880569934845, + -0.00976866390556097, + -0.007533654570579529, + -0.007617277558892965, + 0.012360971421003342, + -0.007522251456975937, + -0.018533853814005852, + -0.018062526360154152, + 0.0038485496770590544, + 0.01864028349518776, + -0.029237573966383934, + 0.006039847154170275, + -0.015409402549266815, + -0.01864028349518776, + -0.016587723046541214, + 0.0019974447786808014, + 0.005306247156113386, + 0.004785505123436451, + -0.013562099076807499, + -0.003333509201183915, + -0.007571665104478598, + -0.002803264418616891, + -0.0013940301723778248, + 0.0005036373622715473, + 0.015493025071918964, + 0.0007202964625321329, + 0.00026535987854003906, + -0.026379194110631943, + -0.01229255273938179, + 0.01047565694898367, + 0.014200672507286072, + 0.0224413201212883, + -0.001147913048043847, + -0.0016363462200388312, + -0.007537455763667822, + -0.02873583696782589, + -0.011327088810503483, + -0.022274075075984, + 0.024661125615239143, + -0.003352514235302806, + -0.008826007135212421, + -0.011623569764196873, + -0.01649649813771248, + -0.004606856498867273, + -0.007001509424299002, + -0.017591197043657303, + 0.008628353476524353, + -0.004983159247785807, + 0.024509083479642868, + 0.006150077097117901, + -0.014375520870089531, + 0.0016135401092469692, + -0.017667219042778015, + 0.005914412904530764, + -0.008841210976243019, + 0.0034323360305279493, + 0.002605610527098179, + 0.007180158048868179, + -0.028887879103422165, + 0.012931127101182938, + 0.03810159116983414, + 0.003953078296035528, + 0.002385150408372283, + 0.008225442841649055, + 0.005207420326769352, + -0.003698408603668213, + -0.015386596322059631, + 0.003137755673378706, + -0.013189597055315971, + -0.008263453841209412, + 0.004211548715829849, + -0.007883350364863873, + 0.021833155304193497, + -0.018032118678092957, + 0.0023053286131471395, + 0.004796908237040043, + -0.004200145602226257, + -0.008780394680798054, + 0.0009844684973359108, + 0.001911921426653862, + -0.0172871146351099, + 0.020206309854984283, + 0.021833155304193497, + 0.023110302165150642, + -0.02736746333539486, + -0.001871060230769217, + -0.012619441375136375, + 0.021209783852100372, + 0.00430657435208559, + 0.0011773711303249002, + -0.0037668272852897644, + -0.004211548715829849, + 0.012011275626718998, + 0.01769762672483921, + 0.00024801763356663287, + 0.007282786071300507, + -5.8173678553430364e-5, + 0.009092079475522041, + -0.025573374703526497, + -0.022046012803912163, + -0.011349895037710667, + -0.0017760343616828322, + -0.001917622983455658, + -0.010483259335160255, + 0.017135072499513626, + -0.0056673455983400345, + -0.006686023436486721, + 0.0005174161051400006, + 0.0074424296617507935, + 0.006533981766551733, + 0.006245103199034929, + -0.029055124148726463, + -0.0015470219077542424, + 0.00302752573043108, + 0.016070783138275146, + 0.011235863901674747, + -0.025330107659101486, + 0.023657651618123055, + 0.020221514627337456, + 0.00044757206342183053, + -0.028659816831350327, + -0.002713940106332302, + -0.025132454931735992, + 0.02458510547876358, + 0.019324470311403275, + 0.004926143679767847, + 0.01137270126491785, + 0.02548214979469776, + 0.02101213112473488, + 0.0257102120667696, + -0.0034817494451999664, + -0.010156369768083096, + -0.022578157484531403, + -0.0010148767614737153, + 0.0008975197561085224, + -0.005796581041067839, + 0.009837082587182522, + -0.04217630252242088, + -0.0015232653822749853, + 0.0006770596373826265, + -0.0023585432209074497, + -0.010004328563809395, + -0.012155715376138687, + 0.0022597163915634155, + -0.02203080803155899, + 0.021285805851221085, + 7.631768676219508e-5, + -0.006860871333628893, + -0.01775844395160675, + -0.013425261713564396, + 0.0002158276183763519, + -0.0023224332835525274, + -0.007966972887516022, + -0.0013731245417147875, + -0.017773646861314774, + 0.0067810495384037495, + 0.0017161680152639747, + -0.0022977266926318407, + -0.025147657841444016, + -0.011099026538431644, + -0.001054787659086287, + 0.0027215422596782446, + -0.007837737910449505, + 0.021118558943271637, + -0.004724688362330198, + 0.015356187708675861, + 0.012026479467749596, + 0.011296681128442287, + 0.007472837809473276, + 0.005576120689511299, + -0.001508061308413744, + 0.008879221975803375, + -0.0006837114924564958, + -0.0024098572321236134, + -0.010072747245430946, + -0.005066781770437956, + -0.003591979620978236, + 0.005359461531043053, + -0.026394398882985115, + 0.024737145751714706, + -0.01258903369307518, + 0.006731635890901089, + -0.024144183844327927, + 0.0070091113448143005, + 0.0016848094528540969, + 0.020267127081751823, + 0.005720559973269701, + -0.003341111121699214, + 0.0171502772718668, + 0.00023899017833173275, + -0.007966972887516022, + 0.008149422705173492, + -0.0033069017808884382, + -0.001815945259295404, + 0.009867491200566292, + 0.013372046872973442, + 0.0036470945924520493, + -0.007807329297065735, + -0.007776921149343252, + -0.015112921595573425, + 0.0033658179454505444, + 0.0023509410675615072, + 0.0050059654749929905, + -0.013181994669139385, + 0.01721109449863434, + 0.028629407286643982, + 0.0013997317291796207, + 0.013812967576086521, + -0.008096207864582539, + -0.011175047606229782, + 0.0005064881406724453, + 0.0010861462214961648, + -0.0074462308548390865, + 0.036185868084430695, + -0.005686350632458925, + -0.003740220097824931, + -0.004500427283346653, + -0.0013987814309075475, + -0.005024970509111881, + 0.0008210238884203136, + 0.014375520870089531, + 0.002862180583178997, + -0.0028811858501285315, + -0.00313205411657691, + -0.018214568495750427, + 0.0026303173508495092, + -0.008210239000618458, + 0.006659416016191244, + -0.021589888259768486, + -0.005177011713385582, + -0.013311230577528477, + -0.0032156771048903465, + -0.004724688362330198, + 0.00409751757979393, + -0.011760407127439976, + -0.0025029827374964952, + 0.011342293582856655, + 0.008719578385353088, + 0.012817095965147018, + 0.004614458419382572, + 0.002274920465424657, + 0.0010177275398746133, + 0.02926798164844513, + 0.007689496967941523, + 0.010848158970475197, + -0.00605505146086216, + 0.02612072415649891, + -0.011068618856370449, + 0.012551022693514824, + 0.012695462442934513, + -0.002235009567812085, + -0.01047565694898367, + -0.0044624172151088715, + -0.012665053829550743, + 0.013828171417117119, + -0.0239921435713768, + -0.007742711808532476, + -0.0014339410699903965, + -0.02054080180823803, + 0.007651486899703741, + 0.02362724393606186, + -0.0005639787996187806, + 0.004622060339897871, + 0.0032536874059587717, + 0.004983159247785807, + -0.010787341743707657, + -0.019856614992022514, + 0.00010429094254504889, + -0.005017368588596582, + -0.005614131223410368, + 0.00028840365121141076, + -0.003118750639259815, + -0.009016059339046478, + 0.016891807317733765, + -0.01341765932738781, + 0.0032726924400776625, + 0.0157362911850214, + 0.0006048399372957647, + -0.01739354431629181, + -0.023718468844890594, + -0.008225442841649055, + -0.024889187887310982, + -0.02078406885266304, + 0.025132454931735992, + 0.014983686618506908, + -0.002005046932026744, + -0.0017589296912774444, + -0.01303755585104227, + -0.011387906037271023, + -0.02374887652695179, + -0.022943057119846344, + -0.025223679840564728, + 0.004918541293591261, + 0.007647685706615448, + 0.005602728109806776, + -0.02695695124566555, + 0.0009383808937855065, + 0.008689169771969318, + 0.00982948113232851, + -0.013379649259150028, + -0.023596836254000664, + -0.0020031463354825974, + 0.010597290471196175, + -0.003500754712149501, + -0.021878767758607864, + 0.008666363544762135, + -0.011030608788132668, + -0.008103810250759125, + -0.011585559695959091, + 0.008255851455032825, + 0.006936891935765743, + -0.01591874100267887, + -0.010726525448262691, + -0.006404746789485216, + -0.008818404749035835, + -0.012794289737939835, + -0.003725015791133046, + 0.014185468666255474, + -0.006248904392123222, + 0.028963899239897728, + -0.011083822697401047, + -0.024250613525509834, + -0.0027500500436872244, + 0.008385086432099342, + -0.009669837541878223, + 0.011311884969472885, + 0.022304482758045197, + 0.009890297427773476, + 0.008719578385353088, + 0.007316995412111282, + -0.014261489734053612, + -0.0039036646485328674, + 0.013531690463423729, + -0.020099882036447525, + 0.017499972134828568, + -0.029055124148726463, + 0.011653978377580643, + 0.015766700729727745, + -0.007381613366305828, + -0.009707847610116005, + -0.0056711467914283276, + -0.006290715653449297, + 0.0007231472409330308, + -0.0014710011892020702, + 0.001999345375224948, + 0.01502169668674469, + -0.0012476902920752764, + -0.005427880212664604, + -0.014322306029498577, + -0.00819503515958786, + -0.013410056941211224, + 0.011760407127439976, + -0.00017674820264801383, + -0.015181340277194977, + -0.0008723378996364772, + 0.0077313086949288845, + -0.00439399853348732, + -0.006499772425740957, + 0.02356642670929432, + 0.00022057890600990504, + -0.0018140447791665792, + 0.012779084965586662, + 0.010087951086461544, + -0.0022616167552769184, + -0.030712375417351723, + -0.0037117123138159513, + -0.006324924994260073, + 0.006028444040566683, + -0.021574683487415314, + -0.006172883324325085, + 0.022365299984812737, + 0.015766700729727745, + -0.00412412453442812, + -0.0007668591570109129, + -0.001662003225646913, + -0.008271055296063423, + -0.0031168500427156687, + 0.019202837720513344, + -0.026287969201803207, + 0.01769762672483921, + -0.0070091113448143005, + -0.024311430752277374, + -0.005283440928906202, + -0.04594692960381508, + -0.004359789192676544, + -0.01597955822944641, + -0.006108265835791826, + 0.003953078296035528, + 0.013174393214285374, + -0.008749986067414284, + -0.002915395190939307, + -0.013478475622832775, + -0.000746903708204627, + 0.013934600166976452, + 0.05233267322182655, + 0.018533853814005852, + 0.030545130372047424, + 0.009244120679795742, + 0.01014876738190651, + -0.032506465911865234, + -0.00827865768224001, + -0.021361825987696648, + -0.01632925309240818, + -0.009951113723218441, + 0.01081014797091484, + 0.003730717347934842, + -0.0017190187936648726, + 0.0014386923285201192, + 0.008772792294621468, + 0.01204928569495678, + -0.012444593943655491, + -0.024189796298742294, + 0.0030351276509463787, + 0.011023006401956081, + -0.014862053096294403, + 0.02987614832818508, + 0.011425916105508804, + -0.00798217672854662, + 0.019218040630221367, + 0.006986305117607117, + 0.012680258601903915, + -0.0019404292106628418, + 0.030560335144400597, + 0.007210566662251949, + 0.01704384759068489, + -0.018442628905177116, + -0.027717160061001778, + 0.014383122324943542, + 0.005929617211222649, + 0.01226214412599802, + -0.017606401816010475, + 0.010483259335160255, + 0.0017066654982045293, + -0.011281476356089115, + -0.01781925931572914, + -0.013562099076807499, + 0.00920611061155796, + 0.00947218295186758, + -0.004876730032265186, + 0.014900063164532185, + 0.006115867756307125, + 0.003544466570019722, + -0.015553842298686504, + 0.003972083330154419, + -0.007001509424299002, + -0.006161480210721493, + -0.00012519664596766233, + -0.00018435028323438019, + -0.009358151815831661, + 0.010566881857812405, + 0.00017199691501446068, + 0.0016068882541731, + -0.006895080674439669, + 0.018898753449320793, + -0.00433698296546936, + -0.013258015736937523, + -0.015660271048545837, + 0.026820113882422447, + 0.003702209796756506, + 0.013622915372252464, + -0.0063477312214672565, + 0.0055191051214933395, + 0.014390724711120129, + -0.014056233689188957, + 0.0171502772718668, + -0.0063477312214672565, + 0.006465563550591469, + -0.0015460716094821692, + -0.0019128717249259353, + -0.015690678730607033, + -0.018792325630784035, + -0.006762044038623571, + -0.01751517690718174, + -0.001502359751611948, + 0.007206765469163656, + 0.00830906629562378, + 0.002911593997851014, + -0.002082968130707741, + -0.001150763826444745, + 0.0019974447786808014, + -0.007126943673938513, + 0.0069178869016468525, + 0.0033601163886487484, + 0.019613349810242653, + -0.024235408753156662, + -0.001989842625334859, + -0.003764926688745618, + -0.0013370146043598652, + 0.0016610530437901616, + -0.003945475909858942, + 0.004572647158056498, + -0.006172883324325085, + 0.0024421659763902426, + 0.007913758046925068, + 0.026014294475317, + 0.0035140584222972393, + -0.00712314248085022, + 0.006290715653449297, + -0.014626389369368553, + -0.029191961511969566, + 0.016131600365042686, + -0.0028640811797231436, + 0.010749331675469875, + 0.009365754202008247, + -0.01792568899691105, + 0.019734982401132584, + -0.020388759672641754, + 0.00834707636386156, + 0.026516031473875046, + 0.012490206398069859, + 0.0023034282494336367, + 0.020236719399690628, + 0.03094043768942356, + -0.0013161089736968279, + -0.018670691177248955, + 0.006571992300450802, + 0.0035463671665638685, + 0.018138546496629715, + 0.0070395199581980705, + 0.008635954931378365, + 0.022167645394802094, + 0.013957406394183636, + 0.0030731381848454475, + -0.0014652996324002743, + -0.0034133309964090586, + -0.029420023784041405, + -0.010528871789574623, + 0.014862053096294403, + 0.011577957309782505, + 0.014512358233332634, + 0.01798650622367859, + 0.004405401647090912, + 0.012611839920282364, + -0.007814931683242321, + -0.017788851633667946, + 0.026029499247670174, + -0.002318632323294878, + -0.0011574156815186143, + -0.016131600365042686, + -0.004211548715829849, + -0.03347953036427498, + -0.007472837809473276, + 0.013166790828108788, + 0.01663333550095558, + -0.04330141097307205, + 0.004713285248726606, + -0.02487398311495781, + -0.004523233510553837, + -0.003975884523242712, + -0.004941347520798445, + -0.03229360654950142, + 0.01065810676664114, + -0.01282469742000103, + 0.01125106867402792, + 0.001834000227972865, + 0.010125961154699326, + 0.008795598521828651, + 0.016405273228883743, + 0.02405295893549919, + -0.0104452483355999, + 0.0043141767382621765, + -0.013554496690630913, + -0.013410056941211224, + -0.01338725071400404, + 0.002571401186287403, + 0.016891807317733765, + 0.013128780759871006, + 0.010726525448262691, + 0.009304937906563282, + 0.02850777469575405, + -0.007381613366305828, + 0.006397144868969917, + -0.003476048121228814, + -0.010711321607232094, + 0.012132909148931503, + 0.019339675083756447, + 0.007183959241956472, + 0.011562753468751907, + -0.004378794226795435, + 0.0003052707470487803, + 0.005845994222909212, + 0.011988469399511814, + 0.0054126763716340065, + 0.007799727376550436, + -3.2665157050359994e-5, + 0.007742711808532476, + -0.005659743677824736, + -0.015933945775032043, + -0.008415495045483112, + 0.015766700729727745, + -0.014877256937325, + -0.007761716842651367, + -0.028963899239897728, + 0.008111412636935711, + 0.01561465859413147, + 0.00037725287256762385, + -0.016238028183579445, + 0.009342947974801064 + ], + "ebd8a76d-2377-4ab3-8353-68199c4f82cc": [ + -0.028545763343572617, + -0.005171388387680054, + -0.013477860949933529, + -0.006513924337923527, + -0.0428711473941803, + -0.018420493230223656, + 0.019020508974790573, + 0.03024080954492092, + -0.0026156948879361153, + 0.02034054510295391, + -0.01564541831612587, + 0.024405652657151222, + -0.0013322231825441122, + -0.015765421092510223, + 0.01578042283654213, + 0.02653571031987667, + -0.024570656940340996, + 0.0325508713722229, + -0.005227639805525541, + -0.031170833855867386, + 0.03120083548128605, + -0.014505388215184212, + -0.047131262719631195, + 0.02595069445669651, + 0.0006047036731615663, + -0.021810583770275116, + 0.008010214194655418, + -0.00385510316118598, + -0.03192085400223732, + -0.03360090032219887, + 0.01744546741247177, + 0.0106052840128541, + 0.009562755934894085, + 0.0033000882249325514, + 0.0165004413574934, + -0.038131020963191986, + -0.00400135712698102, + -0.011445306241512299, + -0.02025054208934307, + -0.02103056199848652, + -0.021870585158467293, + 0.017550470307469368, + 0.021870585158467293, + 0.027000723406672478, + -0.036240968853235245, + 0.027210727334022522, + 0.01737046428024769, + -0.016155432909727097, + -0.007158941589295864, + -0.016740448772907257, + -0.005985160358250141, + -0.019365517422556877, + 0.02685071900486946, + 0.02029554359614849, + 0.01768547296524048, + -0.018510494381189346, + -0.019785529002547264, + 0.03552095219492912, + -0.019725527614355087, + -0.06300168484449387, + 0.021060563623905182, + 0.018330490216612816, + 0.021465573459863663, + -0.013185353018343449, + -0.0011550309136509895, + -0.010770288296043873, + 0.00571890315040946, + 0.011475306935608387, + -0.01578042283654213, + -0.0188555046916008, + 0.008985240012407303, + 0.01600542850792408, + -0.019920533522963524, + 0.028155753389000893, + 0.0051226369105279446, + -0.008287721313536167, + 0.04488120228052139, + 0.018960507586598396, + -0.018300490453839302, + 0.002349437912926078, + 0.00802521500736475, + -0.020325543358922005, + 0.019590524956583977, + -0.0010819039307534695, + 0.05040134862065315, + 0.03486093133687973, + -0.034920934587717056, + -0.04389117285609245, + -0.010860290378332138, + -0.034380920231342316, + -0.018885504454374313, + 0.0554414838552475, + -0.013575362972915173, + -0.00014461323735304177, + -0.019065510481595993, + 0.00293257855810225, + 0.044281184673309326, + 0.01890050619840622, + 0.009187745861709118, + 0.00042868335731327534, + 0.00559514993801713, + 0.020625552162528038, + -0.030990829691290855, + 0.028470762073993683, + 0.013372858054935932, + 0.009592756628990173, + 0.005250140558928251, + -0.004875130485743284, + -0.05403144657611847, + 0.03831102326512337, + 0.014835396781563759, + -0.040171075612306595, + -0.014940399676561356, + 0.005055135115981102, + -0.053821440786123276, + -0.03354089707136154, + -0.014100377447903156, + -0.018195487558841705, + -0.008265221491456032, + -0.006855183281004429, + 0.03684098646044731, + 0.03807101771235466, + -0.001731608877889812, + 0.010717786848545074, + -0.022170593962073326, + -0.006086412817239761, + 0.013732867315411568, + 0.025605686008930206, + 0.0034650927409529686, + 0.02088055945932865, + -0.0006698616780340672, + -0.030960828065872192, + 0.017550470307469368, + -0.037140995264053345, + 0.010740287601947784, + 0.01600542850792408, + 0.010567782446742058, + 0.05376143753528595, + -0.016020428389310837, + 0.028230754658579826, + -0.06852183490991592, + -0.03843102976679802, + -0.02088055945932865, + -0.012412832118570805, + -0.01449038740247488, + 0.0017962980782613158, + -0.03279087692499161, + 0.0666617825627327, + -0.03016580641269684, + 0.0090902429074049, + -0.0538814403116703, + -0.025080671533942223, + 0.006337669678032398, + -0.011505307629704475, + -0.012285328470170498, + -0.003084457479417324, + -0.010837789624929428, + 0.04710125923156738, + 0.02115056663751602, + 0.0071776919066905975, + 0.0027300729416310787, + -0.034110911190509796, + -0.0148728983476758, + -0.024225648492574692, + 0.02676071599125862, + 0.011430305428802967, + 0.042751144617795944, + 0.019410518929362297, + -0.035100940614938736, + 0.016170432791113853, + 0.031170833855867386, + -0.03282087668776512, + 0.031140834093093872, + 0.012382831424474716, + 0.016080429777503014, + 0.003630097024142742, + 0.026910720393061638, + 0.042751144617795944, + 0.019140511751174927, + -0.05019134283065796, + -0.010687786154448986, + 0.0020944310817867517, + -0.008182719349861145, + -0.007635204121470451, + 0.005092636216431856, + 0.017475467175245285, + 0.036690980195999146, + 0.016125431284308434, + -0.012202826328575611, + -0.001509415335021913, + 0.012202826328575611, + -0.034380920231342316, + 0.005613900255411863, + 0.06468173116445541, + -0.03016580641269684, + -0.03600096330046654, + 0.0054601458832621574, + 0.005250140558928251, + -0.019110511988401413, + 0.030780823901295662, + -0.0141978794708848, + -0.034110911190509796, + -0.015810422599315643, + 0.010650284588336945, + -0.03046581521630287, + 0.03627097234129906, + -0.028500761836767197, + 0.002448815619572997, + 0.002375688636675477, + -0.02260560542345047, + 0.01053778175264597, + -0.04851129651069641, + -0.012510335072875023, + -0.006543925032019615, + -0.022770609706640244, + -0.0016050429549068213, + 0.01458039041608572, + 0.04002106934785843, + 0.01546541415154934, + -0.03192085400223732, + -0.02754073776304722, + 0.017580470070242882, + 0.01051528099924326, + -0.059161584824323654, + -0.039811063557863235, + -0.028815770521759987, + -0.009150245226919651, + 0.030000802129507065, + -0.061381641775369644, + -0.012187826447188854, + 0.035010937601327896, + 0.004511370789259672, + -0.00357197062112391, + -0.025035670027136803, + -0.007383947726339102, + 0.028860772028565407, + 0.028275756165385246, + 0.012960346415638924, + -0.0004542309034150094, + -0.02007053792476654, + 0.030900826677680016, + 0.02460065856575966, + 0.010275274515151978, + 0.0037013490218669176, + 0.0076727052219212055, + 0.0033919657580554485, + -0.03930105268955231, + 0.034290917217731476, + 0.043291158974170685, + -0.02767574042081833, + 0.003714474383741617, + -0.010275274515151978, + 0.0153754111379385, + -0.0007664267322979867, + -0.040261078625917435, + 0.04389117285609245, + 0.04158111289143562, + -0.022170593962073326, + -0.0009872139198705554, + -0.003416341496631503, + 0.004050108604133129, + 0.024975668638944626, + -0.0075752027332782745, + -0.012105324305593967, + 0.05169138312339783, + -0.00024070955987554044, + 0.02433065138757229, + -0.04494120180606842, + 0.012960346415638924, + 0.018465494737029076, + 0.024405652657151222, + 0.0032025857362896204, + 0.0009342437260784209, + -0.02269560657441616, + 0.02431565150618553, + 0.0064276717603206635, + 0.008737733587622643, + -0.013222853653132915, + 0.0043838671408593655, + -0.004608873277902603, + -0.01668044552206993, + 0.004203862510621548, + -0.006018911022692919, + 0.02269560657441616, + 0.010380277410149574, + -0.014152878895401955, + -0.03192085400223732, + 0.017970480024814606, + -0.03762100636959076, + -0.009142744354903698, + -0.0018975507700815797, + -0.014857897534966469, + 0.015450413338840008, + 0.015810422599315643, + 0.019245514646172523, + 0.03237086534500122, + -0.00145503890234977, + -0.012832843698561192, + -0.021540576592087746, + 0.006435172166675329, + -0.02161557786166668, + -0.024660659953951836, + -0.014985401183366776, + -0.04206112399697304, + 0.020190540701150894, + -0.045781224966049194, + 0.020910559222102165, + 0.006108913570642471, + -0.027105724439024925, + 0.016425440087914467, + 0.026790717616677284, + -0.028065750375390053, + -0.02395564131438732, + -0.04272114485502243, + 0.01645543985068798, + -0.007552701979875565, + 0.017655473202466965, + -0.0029738296288996935, + 0.014520388096570969, + -0.028455762192606926, + 0.028635766357183456, + -0.015172906219959259, + -0.06594176590442657, + 0.03960106149315834, + 0.028425760567188263, + -0.04482119902968407, + 0.009540255181491375, + 0.018390491604804993, + -0.0644417256116867, + -0.013395358808338642, + -0.00697518652305007, + -0.023985641077160835, + -0.026070697233080864, + -0.01003526896238327, + -0.0075864531099796295, + -0.06204165890812874, + -0.047401268035173416, + -0.03702098876237869, + 0.012367830611765385, + 0.002495691878721118, + 0.0094277523458004, + -0.02260560542345047, + 0.028365759178996086, + -0.006176415365189314, + 0.00397885637357831, + 0.000967525877058506, + 0.013822870329022408, + 0.01993553340435028, + -0.016560442745685577, + -0.0032569621689617634, + 0.0007908024126663804, + 0.0085877301171422, + 0.0005259515601210296, + 0.005077635869383812, + 0.024345651268959045, + -0.005917658563703299, + -0.04335115849971771, + -0.02790074609220028, + 0.028725769370794296, + -0.018615497276186943, + -0.0016519192140549421, + -0.03753100335597992, + -0.03372090309858322, + -0.005700152367353439, + -0.02034054510295391, + -0.013192852959036827, + 0.005313892383128405, + -0.0012384706642478704, + 0.019695527851581573, + 0.02563568577170372, + -0.021825583651661873, + -0.004016357474029064, + -0.008122717030346394, + -0.0009731510654091835, + 0.0066789286211133, + -0.038131020963191986, + 0.043381161987781525, + 0.0020963060669600964, + -0.02658071182668209, + 0.022110590711236, + 0.0026419456116855145, + 0.012952846474945545, + -0.0054338956251740456, + -0.022455601021647453, + 0.01749046891927719, + 0.037230994552373886, + 0.0012722215615212917, + 0.013140351511538029, + 0.003234461648389697, + -0.0009103368502110243, + -0.00751520087942481, + -0.0017091082409024239, + -0.01225532777607441, + 0.00831772293895483, + -0.015495414845645428, + 0.007642704527825117, + -0.022215593606233597, + -0.009952765889465809, + -0.0037913513369858265, + -0.019860532134771347, + -0.01141530554741621, + -0.01732546277344227, + -0.019740527495741844, + 0.015540415421128273, + 0.013650365173816681, + -0.04179111868143082, + -0.019020508974790573, + -0.028380759060382843, + 0.022410599514842033, + -0.014752894639968872, + -0.012555335648357868, + 0.013500361703336239, + -0.004500120412558317, + 0.03231086581945419, + 0.04959132522344589, + 0.01164031121879816, + 0.021330570802092552, + 0.04959132522344589, + -0.04413118213415146, + -0.015135404653847218, + 0.04833129420876503, + 0.032670874148607254, + -0.004323865752667189, + 0.033390894532203674, + -0.014520388096570969, + 0.014160378836095333, + 0.00965275801718235, + 0.0015403537545353174, + -0.03342089429497719, + -0.012375331483781338, + -0.009915265254676342, + 0.014835396781563759, + 0.010290275327861309, + 0.002767574042081833, + -0.00884273648262024, + -0.041251104325056076, + -0.015930425375699997, + -0.006870183628052473, + -0.013312856666743755, + -0.027060724794864655, + -0.012705340050160885, + 0.03921104967594147, + -0.025080671533942223, + 0.0085877301171422, + -0.01804548315703869, + -0.020415546372532845, + -0.03264087438583374, + 0.009690259583294392, + 0.007800208870321512, + 0.004830129444599152, + 0.0067164297215640545, + 0.004095109645277262, + -0.05103136599063873, + 0.008010214194655418, + 0.027510736137628555, + 0.0032832128927111626, + 0.021495575085282326, + -0.003277587704360485, + 0.013237854465842247, + -0.037050992250442505, + -0.012517835013568401, + -0.008617730811238289, + 0.01776047609746456, + -0.005906408187001944, + 0.033120885491371155, + -0.04698125645518303, + 0.01569041982293129, + 0.003525094361975789, + -0.002748823491856456, + -0.011587809771299362, + -0.0204305462539196, + -0.005775154568254948, + -0.05670151859521866, + 0.010680286213755608, + 0.00849772710353136, + -0.02085055783390999, + -0.00885773729532957, + 0.022800609469413757, + 0.031950853765010834, + -0.014460386708378792, + -0.029595792293548584, + -0.013492860831320286, + -0.020580550655722618, + -0.00038836977910250425, + 0.0041663614101707935, + 0.003088207682594657, + 0.0020231790840625763, + -0.015270408242940903, + -0.007875210605561733, + -0.02911577932536602, + 0.018690500408411026, + 0.019635524600744247, + 0.024660659953951836, + 0.0030900826677680016, + -0.014790396206080914, + -0.0348009318113327, + -0.014445386826992035, + -0.023655632510781288, + -0.026385705918073654, + -0.017055455595254898, + 0.015570417046546936, + -0.002510692225769162, + -0.014947899617254734, + 0.025695687159895897, + -0.0085877301171422, + 0.016470441594719887, + -0.017550470307469368, + 0.019005509093403816, + 0.011512808501720428, + -0.00940525159239769, + -0.02680571749806404, + 0.015750421211123466, + -0.02161557786166668, + 0.03798101469874382, + -0.004305114969611168, + 0.025665687397122383, + -0.021360572427511215, + -0.018645498901605606, + 0.03912104666233063, + -0.013567863032221794, + -0.002628820249810815, + 0.012810342945158482, + 0.01227782852947712, + 0.01085279043763876, + -0.00454512145370245, + 0.002383188810199499, + -0.025215674191713333, + -0.012967847287654877, + 0.03720099478960037, + -0.014272881671786308, + -0.008347723633050919, + 0.02088055945932865, + -0.021675579249858856, + 0.021690580993890762, + -0.012900345027446747, + -0.027825744822621346, + 0.006150164641439915, + 0.023490628227591515, + 0.02157057635486126, + 0.0052313897758722305, + -0.037050992250442505, + 0.02983579784631729, + -0.017250461503863335, + 0.0011372179724276066, + 0.002628820249810815, + 0.04122110456228256, + -0.011580309830605984, + 0.028995776548981667, + -0.003060081973671913, + 0.023115618154406548, + -0.039811063557863235, + 0.039811063557863235, + 0.011542809195816517, + -0.00653267465531826, + -0.005568899214267731, + -0.04023107513785362, + 0.036510977894067764, + -0.014047876000404358, + -0.021225567907094955, + -0.015172906219959259, + -0.013552862219512463, + 0.04119110107421875, + 0.012127824127674103, + -0.014685393311083317, + -0.02242559939622879, + 0.0066189272329211235, + -0.028965774923563004, + 0.01786547712981701, + -0.02938578650355339, + 0.021510574966669083, + 0.0223355982452631, + 0.0212105680257082, + 0.023745635524392128, + 0.008362723514437675, + -0.00768770556896925, + 0.036870986223220825, + 0.00881273578852415, + -0.006708929315209389, + -0.0011034670751541853, + -0.027930747717618942, + 0.0074064480140805244, + -0.012360330671072006, + -0.02712072618305683, + -0.012960346415638924, + 0.0074064480140805244, + -0.0020063037518411875, + 0.0050588855519890785, + -0.007950212806463242, + -0.00326633732765913, + 0.058351561427116394, + 0.0033957159612327814, + 0.028050750494003296, + 0.015262908302247524, + 0.000516576343216002, + -0.034830931574106216, + 0.026610711589455605, + 0.006371420342475176, + 0.021510574966669083, + 2.525458148738835e-5, + 0.013455360196530819, + 0.029235782101750374, + 0.024750662967562675, + 0.013545362278819084, + -0.026835717260837555, + -0.010650284588336945, + 0.02328062243759632, + 0.007192692253738642, + 0.009435252286493778, + 0.01989053189754486, + 0.023700634017586708, + -0.01726546138525009, + -0.0006468922947533429, + 0.04092109575867653, + -0.0009506504284217954, + 0.02631070464849472, + -0.010402778163552284, + 0.01744546741247177, + 0.020535549148917198, + 0.015337910503149033, + -0.0035700956359505653, + 0.030045803636312485, + -0.02997080236673355, + 0.03915104642510414, + 0.0022594353649765253, + -0.004676375072449446, + 0.032850880175828934, + -0.019635524600744247, + -0.03966106101870537, + -0.013147851452231407, + -0.004173861816525459, + 0.017745474353432655, + -0.016290435567498207, + 0.023310624063014984, + -0.023700634017586708, + 0.025740688666701317, + 0.006866433657705784, + 0.0036038465332239866, + 0.016245434060692787, + -0.019545523449778557, + -0.025170672684907913, + -0.004931381903588772, + 0.0010012767743319273, + 0.02857576496899128, + 0.03333089128136635, + -0.008827736601233482, + 0.03645097464323044, + -0.0290707778185606, + 0.013875370845198631, + 0.023385625332593918, + 0.040981095284223557, + 0.005021384451538324, + 0.01161781046539545, + 0.031350839883089066, + 0.0193055160343647, + -0.007185192313045263, + -0.019950533285737038, + 0.014617891050875187, + 0.023835638538002968, + -0.023265622556209564, + 0.013672865927219391, + 0.01195531990379095, + -0.03156084567308426, + 0.015765421092510223, + 0.0008179906290024519, + 0.03010580502450466, + -0.0005179825820960104, + 0.02509567141532898, + -0.006333919707685709, + 0.02047554776072502, + 0.00831772293895483, + -0.011565309017896652, + -0.027600739151239395, + 0.018465494737029076, + 0.007860210724174976, + 0.005388894118368626, + -0.0061989156529307365, + 0.010297775268554688, + -0.012877844274044037, + 0.021855585277080536, + -0.010230273939669132, + -0.018285488709807396, + -0.01252533495426178, + 0.004241363611072302, + 0.008400225080549717, + 8.806876576272771e-5, + -0.0075977034866809845, + 0.007312695495784283, + 0.04191112145781517, + -0.02193058654665947, + -0.00773270707577467, + -0.008430225774645805, + 0.00053110794397071, + -0.007323945872485638, + 0.0065101743675768375, + 0.004020107444375753, + 0.02080555632710457, + -0.011130297556519508, + 0.000607516267336905, + 0.03867103531956673, + -0.03006080351769924, + -0.04479119926691055, + -0.03549094870686531, + -0.0223355982452631, + -0.039181049913167953, + -0.009750260971486568, + 0.014257881790399551, + -0.01782047748565674, + -0.015300409868359566, + -0.003986356779932976, + 0.010755287483334541, + 0.018750501796603203, + 0.029370786622166634, + -0.030495816841721535, + 0.025215674191713333, + 0.024075644090771675, + 0.004773877561092377, + -0.011580309830605984, + 0.04011107236146927, + 4.596802682499401e-5, + 0.024900665506720543, + -0.01170781347900629, + 0.008392724208533764, + -0.011377803981304169, + -0.0334508940577507, + -0.023355625569820404, + 0.015090404078364372, + 0.009345250204205513, + -0.021285569295287132, + 0.015540415421128273, + -0.00802521500736475, + 0.014790396206080914, + -0.02143557369709015, + -0.029775796458125114, + 0.0009342437260784209, + -0.01935051754117012, + -0.012172825634479523, + -0.008325222879648209, + -0.0008315847371704876, + 0.013755368068814278, + -0.014445386826992035, + 0.009195245802402496, + -0.012720339931547642, + 0.013200352899730206, + -0.031980857253074646, + 0.02613069862127304, + -0.007837709970772266, + 0.03519093990325928, + -0.004260113928467035, + -0.009982767514884472, + 0.0036394724156707525, + 0.017235461622476578, + -0.029535790905356407, + 0.035070937126874924, + 0.020595550537109375, + -0.022890612483024597, + 0.01197782065719366, + 0.008760234341025352, + -0.00047016883036121726, + -0.03162084519863129, + 0.060241613537073135, + -0.0035700956359505653, + -0.0014569140039384365, + 0.006622677203267813, + -0.0071889422833919525, + 0.003661972936242819, + 0.02404564432799816, + -0.0014025375712662935, + 0.028785770758986473, + 0.03552095219492912, + -0.006183915305882692, + 0.059701599180698395, + -0.0024056893307715654, + 0.025965694338083267, + 0.028650766238570213, + -0.025965694338083267, + -0.03153084218502045, + -0.006000160705298185, + -0.007837709970772266, + -0.01890050619840622, + -0.015345410443842411, + -0.005546398460865021, + -0.05217139422893524, + 0.013980373740196228, + -0.015615417622029781, + 0.015930425375699997, + -0.040531083941459656, + 0.03879103809595108, + -0.00018832535715773702, + -0.01227782852947712, + -0.00584265636280179, + -0.011722813360393047, + 0.003765100846067071, + -0.010222773998975754, + 0.030900826677680016, + -0.0033750904258340597, + -0.011790315620601177, + 0.025830691680312157, + -0.041431110352277756, + -0.022845610976219177, + 0.0033732152078300714, + 0.01971052773296833, + -0.0352509431540966, + 0.03333089128136635, + 0.04425118491053581, + -0.008235220797359943, + -0.016515441238880157, + -0.021900586783885956, + 0.004447618965059519, + 0.012555335648357868, + 0.033210888504981995, + 0.009330249391496181, + -0.004507620818912983, + -0.029850799590349197, + 0.006543925032019615, + -0.004725126549601555, + -0.021855585277080536, + 0.005906408187001944, + 0.012112824246287346, + 0.000600484840106219, + 0.016980454325675964, + -0.0021731832530349493, + -0.012825342826545238, + 0.01899050734937191, + -0.003699474036693573, + -0.012742840684950352, + -0.0056289006024599075, + 0.005497646983712912, + 0.005632650572806597, + 0.04317115619778633, + 0.030750822275877, + -0.028320757672190666, + 0.00584265636280179, + -0.003975106403231621, + 0.019365517422556877, + 0.01813548617064953, + 0.03513094037771225, + -0.03177085146307945, + 0.003823227249085903, + -0.008377724327147007, + 0.01681545004248619, + -0.00802521500736475, + -0.049891334027051926, + -0.005283891223371029, + -0.020820556208491325, + 0.002066305372864008, + 0.005568899214267731, + 0.009825263172388077, + 0.01261533796787262, + 0.015360411256551743, + 0.045001205056905746, + 0.02545568160712719, + -0.02350562810897827, + 0.0006722054677084088, + 0.008700232952833176, + -0.021060563623905182, + 0.0023944389540702105, + 0.016935452818870544, + 0.02247060090303421, + -0.0026606961619108915, + 0.009735260158777237, + 0.023520629853010178, + -0.0030900826677680016, + -0.022710608318448067, + -0.005763904191553593, + -0.003941355273127556, + -0.015600417740643024, + -0.013500361703336239, + 0.019905531778931618, + 0.016650445759296417, + 0.0006736117647960782, + -0.003975106403231621, + 0.024570656940340996, + 0.03717099502682686, + 0.04458119347691536, + -0.005032634828239679, + -0.009435252286493778, + -0.02392563968896866, + 0.026970721781253815, + -0.045871227979660034, + 0.013755368068814278, + -0.00915774516761303, + 0.010432778857648373, + 0.007440199144184589, + -0.005118886940181255, + -0.03960106149315834, + 0.007777708116918802, + 0.017055455595254898, + -0.02364063262939453, + 0.005295141600072384, + -0.00795771274715662, + 0.026145700365304947, + 0.001840361743234098, + 0.0010162772377952933, + -0.031710848212242126, + -0.009217746555805206, + -0.005598899908363819, + 0.015262908302247524, + -0.0007809583912603557, + 0.0028725769370794296, + 0.0102152731269598, + 0.006296418607234955, + -0.03234086558222771, + -0.023400627076625824, + 0.005287641659379005, + 0.02125556953251362, + -0.03564095497131348, + 0.026115698739886284, + 0.024120645597577095, + 0.0011015919735655189, + 0.014752894639968872, + 0.008220219984650612, + -0.007368947379291058, + -0.0381610207259655, + 0.0036600979510694742, + 0.04941132292151451, + 0.0262657031416893, + -0.0007425198564305902, + 0.013290355913341045, + 0.007473949808627367, + -0.011272802017629147, + 0.0036019713152199984, + 0.013815369457006454, + 0.03147084265947342, + -0.004380117170512676, + 0.02161557786166668, + -0.006963936146348715, + -0.004571372177451849, + -0.011332803405821323, + -0.0024619409814476967, + 0.01512040477246046, + -0.010155271738767624, + 0.007376447319984436, + 0.0077702077105641365, + -0.006472673267126083, + 0.0102152731269598, + 0.019785529002547264, + -0.0024394402280449867, + -0.004151361063122749, + -0.014992901124060154, + -0.03534094616770744, + -0.04122110456228256, + 0.028110751882195473, + 0.02871076762676239, + -0.011070296168327332, + -0.007590203080326319, + 0.01876550167798996, + 0.01795548014342785, + 0.038191020488739014, + 0.008745234459638596, + 0.01809048466384411, + 0.006457672920078039, + 0.015990428626537323, + -0.013875370845198631, + 0.00357197062112391, + 0.021630579605698586, + 0.0316508486866951, + 0.006648927927017212, + 0.02871076762676239, + -0.012922845780849457, + 0.01505290251225233, + -0.004267614334821701, + -0.010402778163552284, + 0.0082502206787467, + 0.010297775268554688, + -0.03282087668776512, + 0.0056401509791612625, + -0.03522094339132309, + -0.018780503422021866, + -0.025260675698518753, + 0.00019734902889467776, + -0.02680571749806404, + -0.004938882309943438, + 0.006037661340087652, + 0.005246390588581562, + -0.00938275083899498, + 0.00829522218555212, + -0.028020748868584633, + -0.009097743779420853, + -0.0022856860887259245, + 0.00947275385260582, + 0.029145779088139534, + -0.01023777388036251, + -0.0212105680257082, + -0.010357777588069439, + -0.026160700246691704, + -0.002116931602358818, + -0.029625792056322098, + 0.016080429777503014, + -0.014970400370657444, + 0.001236595562659204, + 0.015540415421128273, + -0.024075644090771675, + -0.03603096306324005, + 0.0026888218708336353, + 0.007421448361128569, + 0.013192852959036827, + -0.026955721899867058, + -0.019590524956583977, + -0.009277747943997383, + -0.012892845086753368, + -0.023115618154406548, + 0.011160298250615597, + -0.031230835244059563, + 0.07062189280986786, + 0.016380438581109047, + 0.022545604035258293, + -0.009562755934894085, + -0.03111083246767521, + -0.012930345721542835, + 0.027285730466246605, + -0.009810262359678745, + -0.023625632748007774, + 0.00804771576076746, + -0.02016053907573223, + 0.030990829691290855, + 0.03414091467857361, + 0.011790315620601177, + -0.011550309136509895, + -0.018390491604804993, + 0.03156084567308426, + -0.013035348616540432, + -0.01939551904797554, + -0.013477860949933529, + -0.00444011902436614, + 0.0031050830148160458, + -0.0026381956413388252, + 0.00021938087593298405, + 0.0013697241665795445, + 0.028965774923563004, + -0.004533871542662382, + -0.012172825634479523, + -0.021105565130710602, + -0.00044860574416816235, + -0.017850477248430252, + 0.0036432223860174417, + -0.014520388096570969, + -0.005017634481191635, + -0.06840182840824127, + -0.021810583770275116, + -0.008760234341025352, + 0.00831772293895483, + -0.00852022785693407, + -0.015300409868359566, + -0.00481512863188982, + 0.013275355100631714, + -0.0017831727163866162, + 0.006172665394842625, + 0.017415465787053108, + -0.02455565705895424, + 0.022035589441657066, + 0.017430465668439865, + 0.004072608891874552, + 0.0009225246612913907, + -0.01632043719291687, + -0.008955239318311214, + 0.02871076762676239, + -0.010485280305147171, + -0.01001276820898056, + -8.906488073989749e-5, + 0.02038554474711418, + -0.02029554359614849, + -0.00444386899471283, + 0.05682152137160301, + -0.00793521199375391, + 0.0038476029876619577, + -0.022905612364411354, + -0.005066385492682457, + 0.01311035081744194, + -0.00613891426473856, + -0.003041331423446536, + 0.010612783953547478, + -0.010072769597172737, + 0.0003438373387325555, + 0.008550228551030159, + -0.0012590961996465921, + 0.014475387521088123, + 0.0005939221591688693, + 0.015660418197512627, + -0.005328892730176449, + -0.018300490453839302, + -0.009000240825116634, + -0.014452886767685413, + -0.02292061410844326, + -0.014587890356779099, + -0.01116779912263155, + 0.030810823664069176, + 0.005336392670869827, + 0.015615417622029781, + 0.004800128284841776, + 0.00021598234889097512, + -0.026340704411268234, + -0.008437725715339184, + -0.0027375733479857445, + 0.016890451312065125, + -0.03720099478960037, + 0.0045526218600571156, + -0.0028707017190754414, + 0.07686205953359604, + 0.023700634017586708, + 0.016620444133877754, + 0.018150486052036285, + -0.012870344333350658, + 0.019860532134771347, + 0.008355223573744297, + 0.029505789279937744, + 0.046411242336034775, + 0.008122717030346394, + 0.015555416233837605, + 0.012922845780849457, + -0.006037661340087652, + 0.013012847863137722, + 0.008707732893526554, + 0.031440842896699905, + 0.008677732199430466, + 0.014257881790399551, + -0.007860210724174976, + 0.0026250702794641256, + -0.020085537806153297, + -0.005246390588581562, + -0.00515263807028532, + -0.004451368935406208, + -0.004537621513009071, + -0.003941355273127556, + 0.004522621165961027, + -0.01451288815587759, + -0.002446940401569009, + -0.003800726728513837, + 0.040891095995903015, + 0.0029888299759477377, + 0.04011107236146927, + 0.015810422599315643, + -0.02079055644571781, + 0.03453092277050018, + 0.000509076111484319, + 0.029715795069932938, + -0.0035400947090238333, + -0.014685393311083317, + -0.01944052055478096, + 0.011085296981036663, + -0.009502754546701908, + -0.02754073776304722, + -0.00756020238623023, + -0.001265658880583942, + 0.001007839455269277, + -0.0061014131642878056, + -0.011092796921730042, + -0.013627864420413971, + 0.00013828494411427528, + -0.005385144148021936, + -0.01917051337659359, + -0.0003841509169433266, + -0.024360651150345802, + 0.015900425612926483, + -0.022395599633455276, + -0.004965133033692837, + -0.011782815679907799, + -0.004057608544826508, + 0.0029344535432755947, + 0.021915586665272713, + 0.0004314959223847836, + -0.046861253678798676, + -0.029010776430368423, + 0.015585416927933693, + -0.01507540326565504, + -0.012915345840156078, + 0.005561398807913065, + 0.0212105680257082, + 0.0009759636013768613, + -0.018780503422021866, + -0.005752653814852238, + 0.004406367894262075, + -0.012960346415638924, + 0.0025144421961158514, + 0.02965579368174076, + 0.015855424106121063, + 0.013642865233123302, + -0.03432091698050499, + 0.0047813779674470425, + -0.008632730692625046, + 0.008647731505334377, + 0.0014522263081744313, + -0.018795503303408623, + 0.001970677636563778, + -0.005763904191553593, + -0.021225567907094955, + 0.01768547296524048, + -0.002066305372864008, + -0.03052581660449505, + 0.0018759877420961857, + 0.01078528817743063, + 0.0017231710953637958, + -0.0334508940577507, + -0.01587042398750782, + -0.019185513257980347, + 0.00414761109277606, + -0.0024394402280449867, + -0.000884086184669286, + 0.003560720244422555, + 0.0017119208350777626, + 0.015510414727032185, + -0.031170833855867386, + 0.01971052773296833, + -0.0019238014938309789, + -0.03261087089776993, + 0.01371786743402481, + -0.004316365346312523, + -0.01926051452755928, + -0.020985562354326248, + 0.008340222761034966, + -0.001647231518290937, + 0.0008554916130378842, + -0.01119029987603426, + 0.005025134421885014, + -0.01740046590566635, + -0.008962740190327168, + 0.03423091769218445, + -0.0077927084639668465, + -0.004106360021978617, + 0.015360411256551743, + -0.009667758829891682, + 0.026190700009465218, + 0.004305114969611168, + -0.0009318999364040792, + 0.012997847981750965, + 0.02188558503985405, + 0.004267614334821701, + -0.025845691561698914, + 0.009562755934894085, + 0.011632811278104782, + -0.0015300409868359566, + -0.0008372099255211651, + -0.0008897113148123026, + 6.134929571999237e-5, + 0.04161111265420914, + 0.004818879067897797, + -0.029145779088139534, + -0.013635365292429924, + -0.0028969524428248405, + -0.019635524600744247, + 0.02388063818216324, + -0.01980053074657917, + -0.010155271738767624, + 0.007665205281227827, + -0.037411000579595566, + 0.011332803405821323, + 0.023460628464818, + -0.023715633898973465, + -0.015210406854748726, + 0.018420493230223656, + 0.008265221491456032, + -0.005512647330760956, + 0.0021075564436614513, + 0.0035569702740758657, + 0.01786547712981701, + -0.0010997168719768524, + -0.00486013013869524, + -0.012937846593558788, + 0.017835477367043495, + -0.007466449867933989, + 0.008332722820341587, + -0.019275516271591187, + 0.014617891050875187, + 0.0027413233183324337, + 0.005096386186778545, + -0.04860129952430725, + -0.01735546439886093, + 0.011917819269001484, + 0.00017941885744221509, + 0.010132770985364914, + -0.003448217175900936, + 0.015570417046546936, + -0.0033882155548781157, + 0.009502754546701908, + 0.026160700246691704, + 0.0043951175175607204, + 0.03609096631407738, + 0.010950293391942978, + -0.01510540395975113, + -0.01600542850792408, + -0.023040616884827614, + 0.015360411256551743, + 0.019815530627965927, + 0.02292061410844326, + -0.0417611189186573, + -0.0021150566171854734, + -0.004338866099715233, + 0.023130618035793304, + 0.015945427119731903, + -0.02635570429265499, + -0.02704572305083275, + 0.014407885260879993, + 0.008055215701460838, + 0.007368947379291058, + 0.021045563742518425, + -0.013440359383821487, + 0.004462619312107563, + -0.0008067403105087578, + -0.02080555632710457, + 0.003688223659992218, + 0.014182879589498043, + -0.05244140326976776, + 0.024360651150345802, + -0.020640552043914795, + 0.00795771274715662, + 0.02025054208934307, + 0.009322749450802803, + -0.026520710438489914, + -0.005565148778259754, + -0.0042638638988137245, + -0.0239106398075819, + -0.011595310643315315, + 0.014677892439067364, + 0.024060644209384918, + -0.014445386826992035, + -0.007995214313268661, + 0.007023938000202179, + -0.005463896319270134, + -0.00685143331065774, + 0.004005107097327709, + -0.035010937601327896, + 0.0072114430367946625, + -0.0011212800163775682, + -0.0026063197292387486, + -0.0014156629331409931, + 0.016830449923872948, + 0.0188555046916008, + -0.01422038022428751, + 0.0057151527144014835, + 0.008640231564640999, + 0.014422886073589325, + -0.004098859615623951, + 0.009810262359678745, + 0.0026813216973096132, + 0.0075864531099796295, + -0.002403814345598221, + 0.0045638722367584705, + -0.0023475629277527332, + 0.03495093435049057, + -0.02640070579946041, + -0.05205139145255089, + -0.008977740071713924, + 0.006393921095877886, + -0.0002453971828799695, + 0.005658901296555996, + 0.0015872300136834383, + -0.004428868647664785, + -0.009780261665582657, + -0.0043088654056191444, + 0.0011447181459516287, + 0.00028430449310690165, + -0.008505227975547314, + -0.0027806994039565325, + -0.002244435017928481, + 0.01809048466384411, + -0.001040652859956026, + -0.005103886593133211, + -0.022275596857070923, + 0.009007740765810013, + -0.0012572210980579257, + 0.02622070163488388, + 0.011250301264226437, + -0.030090805143117905, + -0.005043884739279747, + 0.007155191618949175, + -0.0005357955815270543, + 0.0002821950474753976, + -0.0023081868421286345, + -0.00630766898393631, + 0.04719126224517822, + -0.022815611213445663, + 0.022080590948462486, + 0.00601141108199954, + -0.0026963220443576574, + -0.012435332871973515, + 0.006292668171226978, + 0.01677044853568077, + -0.006547675002366304, + 0.010005267336964607, + 0.018165485933423042, + -0.027510736137628555, + 0.013185353018343449, + 0.018165485933423042, + 0.005235140211880207, + 0.01813548617064953, + 0.034200914204120636, + 0.025620685890316963, + -0.02509567141532898, + -0.004957632627338171, + 0.014362884685397148, + 0.007458949461579323, + 0.013395358808338642, + 0.010087769478559494, + 0.03231086581945419, + 0.016800450161099434, + 0.004631374031305313, + -0.043201155960559845, + -0.022485600784420967, + -0.012435332871973515, + -0.024750662967562675, + 0.001218782621435821, + 0.03993107005953789, + 0.010710286907851696, + 0.017700472846627235, + 0.031800851225852966, + 0.003618846880272031, + 0.005598899908363819, + -0.0386110320687294, + -0.019050510600209236, + 0.004106360021978617, + -0.04440118744969368, + 0.0026644463650882244, + -0.011130297556519508, + 0.00496138259768486, + -0.002793824765831232, + -0.0035663454327732325, + -0.005767654161900282, + -0.016470441594719887, + 0.012945346534252167, + 0.003258837154135108, + 0.003033831249922514, + -0.009000240825116634, + -0.01800048165023327, + -0.011655312031507492, + 0.007140191271901131, + 0.004710126202553511, + 0.019605524837970734, + -0.006483923643827438, + 0.001636918750591576, + -0.009487753733992577, + 0.0274957362562418, + 0.018525496125221252, + -0.006656428333371878, + -0.011880317702889442, + -0.03645097464323044, + 0.024300649762153625, + -0.024345651268959045, + 0.011227800510823727, + 0.003382590599358082, + 0.016290435567498207, + -0.01368036586791277, + 0.03213085979223251, + -0.010162771679461002, + -0.0010162772377952933, + -0.001422225497663021, + 0.012172825634479523, + 0.01137030404061079, + -0.03573095425963402, + -0.03552095219492912, + 0.015750421211123466, + 0.002469441154971719, + -0.0018956756684929132, + -0.015240407548844814, + -0.0188555046916008, + -0.005932658910751343, + 0.015945427119731903, + 0.002557568484917283, + 0.011700313538312912, + -0.027795743197202682, + 0.0023700634483247995, + -0.0061014131642878056, + -0.02415064536035061, + 0.0038401028141379356, + -0.00498388335108757, + -0.007837709970772266, + -0.025695687159895897, + 0.00616141501814127, + 0.018705500289797783, + 0.010410278104245663, + 0.003780101193115115, + 0.006270167883485556, + -0.0034200914669781923, + 0.03399090841412544, + -0.014497888274490833, + 0.009052742272615433, + -0.042661141604185104, + 0.010417778976261616, + -0.017655473202466965, + -0.022635605186223984, + -0.0067164297215640545, + 0.00500638410449028, + -0.013102850876748562, + -0.0176254715770483, + 0.003270087530836463, + 0.01596042700111866, + -0.015975426882505417, + 0.000716737937182188, + 0.023400627076625824, + 0.01587042398750782, + -0.009375250898301601, + 0.03423091769218445, + -0.0041776117868721485, + 0.023310624063014984, + 0.00972026027739048, + 0.0030169556848704815, + 0.006037661340087652, + -0.02635570429265499, + 0.01759546995162964, + -0.012645338661968708, + -0.011865317821502686, + -0.019950533285737038, + 0.0032607121393084526, + -0.0031219585798680782, + 0.004800128284841776, + 0.041851118206977844, + -0.01849549449980259, + -0.02745073474943638, + -0.008752734400331974, + -0.015337910503149033, + -0.015225407667458057, + -0.019320517778396606, + 0.00026203825837001204, + -0.0075977034866809845, + -0.025020670145750046, + 0.008655231446027756, + 0.018690500408411026, + 0.0056514013558626175, + -0.010815289802849293, + 0.000414620473748073, + -0.017070457339286804, + -0.024615658447146416, + 0.023850638419389725, + 0.034020911902189255, + -0.012825342826545238, + -0.00726769445464015, + -0.01917051337659359, + 0.017340464517474174, + 0.014797896146774292, + -0.018780503422021866, + 0.01645543985068798, + -0.012517835013568401, + -0.00023250622325576842, + 0.041431110352277756, + -0.02433065138757229, + -0.010800288990139961, + -0.002968204440549016, + 0.027285730466246605, + 0.01259283721446991, + 0.00444011902436614, + -0.013620364479720592, + -0.021330570802092552, + -0.007380197290331125, + 0.0008381474181078374, + -0.006247667130082846, + -0.0015356660587713122, + 0.004612623248249292, + -0.0010050268610939384, + -0.017580470070242882, + -0.020220540463924408, + 0.006438922137022018, + 0.002731948159635067, + 0.008985240012407303, + 0.013582863844931126, + -0.0047138761729002, + -0.006888934411108494, + -0.0016359812580049038, + -0.009052742272615433, + 0.003823227249085903, + -0.013590363785624504, + -0.0030675821471959352, + 0.005790154915302992, + -0.0171754602342844, + 0.019905531778931618, + 0.011542809195816517, + 0.003416341496631503, + -0.02404564432799816, + -0.018105484545230865, + 0.007395198103040457, + -0.0041551110334694386, + 0.004642624408006668, + 0.016200434416532516, + 0.01600542850792408, + 0.02305561676621437, + 0.0017644221661612391, + 0.009862763807177544, + -0.010545282624661922, + -0.022455601021647453, + -0.011812816374003887, + 0.0007800208986736834, + 0.008790235035121441, + -0.02076055482029915, + -0.009555255994200706, + -0.015180406160652637, + 0.09486253559589386, + 0.011895318515598774, + 0.0019781780429184437, + -0.005306391976773739, + 0.014565389603376389, + -0.019005509093403816, + -0.003114458406344056, + 0.005223889835178852, + 0.007458949461579323, + 0.0035888459533452988, + -0.0048788804560899734, + -0.01627543568611145, + 0.008970240131020546, + 0.015360411256551743, + -0.0184054933488369, + 0.0009619007469154894, + 0.003106958232820034, + 0.01137030404061079, + 0.022530602291226387, + 0.026505708694458008, + -0.01191031839698553, + -0.01921551488339901, + -0.016875451430678368, + 0.022485600784420967, + -0.006648927927017212, + 0.011520308442413807, + 0.001662231981754303, + 0.012367830611765385, + 0.014820396900177002, + 0.01455788966268301, + -0.0034013409167528152, + 0.0022425600327551365, + -0.00847522635012865, + -0.007230193354189396, + 0.0048676300793886185, + 0.009127744473516941, + -0.006131413858383894, + 0.022365598008036613, + -0.014752894639968872, + 0.01627543568611145, + -0.004972632974386215, + -0.0035588452592492104, + 0.01971052773296833, + 0.03837102651596069, + -0.014355383813381195, + -0.0067164297215640545, + -0.016020428389310837, + -0.002565068658441305, + 0.003534469520673156, + 0.005055135115981102, + -0.015555416233837605, + -0.020655551925301552, + 0.010357777588069439, + 0.011625311337411404, + 0.0021975587587803602, + -0.014355383813381195, + 0.012075322680175304, + -0.028500761836767197, + 0.005272641312330961, + 0.0014644141774624586, + -0.033300891518592834, + -0.0032213362865149975, + -0.0136953666806221, + -0.0033113386016339064, + -0.014145378954708576, + -0.024030642583966255, + 0.0017409840365871787, + -0.016710447147488594, + 0.012457833625376225, + 0.004518870729953051, + -0.01944052055478096, + 0.005883907433599234, + 2.4346354621229693e-5, + -0.033210888504981995, + -0.0141978794708848, + 0.019695527851581573, + 0.005951409228146076, + 0.022050589323043823, + 0.02029554359614849, + 0.02455565705895424, + -0.004380117170512676, + 0.011265301145613194, + -0.019455520436167717, + -0.021000562235713005, + -0.016110431402921677, + -0.0073201959021389484, + 0.010905291885137558, + -0.02767574042081833, + 0.012405332177877426, + -0.019065510481595993, + 0.0013078474439680576, + -0.006986436899751425, + -0.0005025134305469692, + 0.0012206576066091657, + -0.0029775795992463827, + 0.0017381715588271618, + -0.008902737870812416, + -0.024030642583966255, + 0.0063189188949763775, + -0.009525255300104618, + 0.013260355219244957, + 0.012825342826545238, + -0.012750341556966305, + -0.007668955251574516, + -0.009562755934894085, + 0.006375170778483152, + 0.017070457339286804, + -0.0034500923939049244, + -0.009045242331922054, + -0.0006117351003922522, + 0.0025444431230425835, + -0.012390331365168095, + -0.010477780364453793, + -0.004140110686421394, + -0.012915345840156078, + 0.0007101752562448382, + 0.0024788163136690855, + -0.003367590019479394, + -0.014767895452678204, + -0.021720580756664276, + -0.028005748987197876, + 0.012390331365168095, + -0.0025706938467919827, + -0.016200434416532516, + -5.979652269161306e-5, + -0.0020025535486638546, + -0.012367830611765385, + -0.0029363285284489393, + -0.027300730347633362, + -0.001443788642063737, + 0.01112279761582613, + 0.01686045154929161, + 0.0009065867634490132, + -0.004027607850730419, + 0.007740207016468048, + -0.0037107241805642843, + -0.012720339931547642, + 0.016740448772907257, + 0.021240567788481712, + -0.018660498782992363, + 0.01872050017118454, + -0.010140270926058292, + 0.006022660993039608, + 0.02274060808122158, + -0.0019856782164424658, + 0.000589234521612525, + -0.011565309017896652, + -0.01957552321255207, + 0.007616453804075718, + -0.01600542850792408, + 0.004875130485743284, + -0.034560926258563995, + -0.005171388387680054, + -0.012030322104692459, + 0.004845129791647196, + 0.004140110686421394, + -0.015600417740643024, + 0.007492700591683388, + -0.005932658910751343, + -0.00357197062112391, + -0.006187665741890669, + 0.005613900255411863, + -0.010950293391942978, + -0.004785127937793732, + -0.005591399502009153, + 0.016845451667904854, + 0.01112279761582613, + 0.0043088654056191444, + 0.00041227665496990085, + -0.006720179691910744, + -0.01881050318479538, + 0.009420252405107021, + 0.01089779194444418, + -0.031260836869478226, + 0.006795181892812252, + 0.0065101743675768375, + -0.010650284588336945, + -0.003022580873221159, + -0.017280463129281998, + 0.03315088525414467, + 0.002600694540888071, + -0.008152717724442482, + 0.021450573578476906, + 0.007972713559865952, + 0.005002633668482304, + -0.008385224267840385, + 0.004106360021978617, + -0.012315329164266586, + -0.014940399676561356, + 0.00039376053609885275, + -0.007203942630439997, + 0.006750180851668119, + 0.0030507065821439028, + 0.006157664582133293, + -0.0037744760047644377, + -0.015345410443842411, + 0.010432778857648373, + 0.025440679863095284, + 0.0042001125402748585, + -0.01166281197220087, + 0.00820521917194128, + -0.0006562675698660314, + 0.010710286907851696, + 0.0030019553378224373, + 0.011302802711725235, + -0.033210888504981995, + -0.010245273821055889, + -0.01116779912263155, + -0.009322749450802803, + -0.007125190459191799, + -0.028725769370794296, + -0.012337829917669296, + 0.023535629734396935, + 0.007578952703624964, + 0.00598891032859683, + 0.007458949461579323, + 0.014505388215184212, + 0.013440359383821487, + 0.012562836520373821, + 0.005913908127695322, + 0.018600497394800186, + -0.00011812816228484735, + 0.025020670145750046, + -0.010695286095142365, + -0.007346446625888348, + 0.014542888849973679, + 0.017850477248430252, + 0.0014775395393371582, + 0.03006080351769924, + -0.021495575085282326, + 0.022485600784420967, + -0.0067276800982654095, + -0.014130378141999245, + 0.05235140025615692, + 0.007252694107592106, + 0.030585817992687225, + 0.021330570802092552, + 0.0001548088330309838, + 0.015300409868359566, + 0.008265221491456032, + -0.020415546372532845, + 0.004725126549601555, + -0.004327615723013878, + -0.012090323492884636, + -0.004361366853117943, + 0.0018197362078353763, + -0.00940525159239769, + 0.00013441765622701496, + 0.009817762300372124, + -3.3663010981399566e-5, + -0.0025669436436146498, + -0.00016910608974285424, + -0.010950293391942978, + 0.017205459997057915, + 0.012780342251062393, + -0.021060563623905182, + -0.02011553756892681, + -0.0012609711848199368, + -0.00994526594877243, + -0.02020554058253765, + -0.009780261665582657, + -0.0009023678721860051, + -0.003926354926079512, + -0.021285569295287132, + -0.007293945178389549, + 0.01953052170574665, + -0.024135645478963852, + -1.1250301213294733e-5, + -0.004953882656991482, + 0.007323945872485638, + -0.006423921789973974, + 0.002685071900486946, + 0.0017447342397645116, + 0.01170781347900629, + -0.016485441476106644, + 0.0015947301872074604, + 0.021990587934851646, + -0.001269408967345953, + 0.00793521199375391, + 0.00034243104164488614, + -0.013650365173816681, + 0.006810182239860296, + 0.0020456798374652863, + -0.02011553756892681, + -0.006397671066224575, + -0.029505789279937744, + 0.008160218596458435, + -0.0031257085502147675, + 0.0024750663433223963, + 0.008370224386453629, + 0.0042938650585711, + -0.027465734630823135, + 0.007653954904526472, + -0.012037822045385838, + -0.00243006506934762, + 0.009337750263512135, + -0.006030161399394274, + 0.006468923296779394, + 0.01980053074657917, + -0.00043993364670313895, + -0.00033305579563602805, + 0.01744546741247177, + -0.015555416233837605, + -0.026550710201263428, + 0.01573542132973671, + 0.01062778476625681, + 0.010507781058549881, + 0.0005062635755166411, + -0.016245434060692787, + 0.026295702904462814, + -0.003607596503570676, + -0.013807869516313076, + -0.009577755816280842, + -0.02025054208934307, + -0.0018272363813593984, + -0.01503040175884962, + -0.016155432909727097, + 0.03423091769218445, + -0.029370786622166634, + 0.0056176502257585526, + -0.009907765313982964, + 0.0005906408187001944, + -0.00655517540872097, + -0.0027169478125870228, + -0.0019781780429184437, + 0.012825342826545238, + 0.01795548014342785, + 0.011895318515598774, + 0.026520710438489914, + -0.031950853765010834, + 0.018390491604804993, + -0.00820521917194128, + -0.020730555057525635, + 0.0052426401525735855, + 0.008452726528048515, + 0.030450815334916115, + -0.0036169718950986862, + 0.0056514013558626175, + -0.01663544587790966, + 0.0020306792575865984, + -0.020655551925301552, + -0.021330570802092552, + -0.01460289116948843, + 0.0033957159612327814, + 0.006090162787586451, + 0.023205621168017387, + -0.00414761109277606, + -0.00454512145370245, + 0.024615658447146416, + -0.004005107097327709, + -0.017655473202466965, + 0.013470360077917576, + 0.01512040477246046, + 0.007128940895199776, + 0.0037819761782884598, + -0.0031294587533921003, + 0.013260355219244957, + 0.008992740884423256, + 0.0009454940445721149, + 0.007241443730890751, + -0.02988079935312271, + -0.0028182005044072866, + -0.014340383931994438, + -0.012157825753092766, + 0.022785609588027, + -0.0020756805315613747, + -0.0047813779674470425, + 0.004965133033692837, + -0.038131020963191986, + -0.009757760912179947, + -0.00041297980351373553, + -0.018840504810214043, + -0.021225567907094955, + 0.00045821539242751896, + -0.019635524600744247, + 0.006258917506784201, + -0.006352670025080442, + -0.0032682125456631184, + -0.010207773186266422, + -0.020730555057525635, + 0.015240407548844814, + -0.0022050589323043823, + 0.002036304445937276, + -0.0011906569125130773, + 0.03060081973671913, + 0.04209112748503685, + 0.021135564893484116, + 0.028425760567188263, + 0.022440601140260696, + -0.012037822045385838, + -0.0018056733533740044, + -0.011542809195816517, + 0.017340464517474174, + -0.0010444029467180371, + -0.004260113928467035, + -0.002670071553438902, + -0.018165485933423042, + 0.02590569294989109, + -0.017160458490252495, + 0.014062875881791115, + 0.008782735094428062, + -0.012307829223573208, + -0.005850156769156456, + 0.030990829691290855, + 4.394648931338452e-5, + -0.016740448772907257, + 0.0006131413974799216, + 0.00754145160317421, + 0.023745635524392128, + -0.012660338543355465, + -0.0020681803580373526, + 0.007837709970772266, + -0.010920291766524315, + 0.008827736601233482, + 0.012127824127674103, + 0.00014355852908920497, + 0.00555014843121171, + -0.009082742966711521, + 0.004533871542662382, + -0.004773877561092377, + 0.020415546372532845, + -0.013455360196530819, + 0.005887657403945923, + 0.02269560657441616, + -0.008137717843055725, + -0.010747787542641163, + 0.019470520317554474, + 0.012045321986079216, + -0.00882023572921753, + 0.005055135115981102, + -0.0033563398756086826, + -0.025695687159895897, + -0.006750180851668119, + 0.01768547296524048, + -0.026835717260837555, + -0.012847843579947948, + 0.024405652657151222, + -0.012457833625376225, + -0.0020494298078119755, + 0.003918854985386133, + -0.026865718886256218, + 0.006213916465640068, + 0.008430225774645805, + 0.008655231446027756, + 0.031950853765010834, + -0.0008700232720002532, + -0.0013472235295921564, + 0.013470360077917576, + 0.01252533495426178, + -0.018735501915216446, + -0.018300490453839302, + 0.010117771103978157, + -0.01903550885617733, + -0.001989428186789155, + -0.00854272861033678, + -0.018390491604804993, + 0.02319062128663063, + -0.011212799698114395, + 0.02707572467625141, + -0.018735501915216446, + -0.0008358036284334958, + -0.011452806182205677, + -0.015855424106121063, + 0.0017137958202511072, + -0.015450413338840008, + 0.009015241637825966, + 0.014145378954708576, + 0.01786547712981701, + -0.00019594274635892361, + 0.02148057520389557, + -0.012037822045385838, + 0.008017714135348797, + 0.01569041982293129, + 0.006333919707685709, + 0.02319062128663063, + 0.010702786035835743, + -0.03612096607685089, + 0.006540175061672926, + 3.4600536309881136e-5, + -0.010492781177163124, + 0.004061358515173197, + 0.0029194531962275505, + -0.00569640239700675, + 0.0038851038552820683, + 0.018705500289797783, + -0.020175538957118988, + -0.005793904885649681, + 0.008325222879648209, + 0.01141530554741621, + -0.0013228479074314237, + 0.01614043116569519, + -0.0018891131039708853, + 0.013905372470617294, + -0.014182879589498043, + 0.015157905407249928, + -0.006292668171226978, + 0.004946382250636816, + 0.017250461503863335, + -0.009682758711278439, + -0.0032175860833376646, + -0.0010237774113193154, + -0.006832682993263006, + 0.005658901296555996, + 0.006315168924629688, + 0.021960588172078133, + -0.002135682152584195, + -0.0137478681281209, + 0.0063301692716777325, + 0.022110590711236, + 0.004196362104266882, + -0.009232747368514538, + -0.022590603679418564, + -0.008130217902362347, + 0.014272881671786308, + 0.01200782135128975, + 0.008130217902362347, + -0.011197799816727638, + -0.01308785006403923, + 0.02581568993628025, + 0.004740126896649599, + 0.006480173207819462, + -0.017280463129281998, + -0.006157664582133293, + 0.008962740190327168, + 0.004402617923915386, + 0.0003461811284068972, + 0.02419564686715603, + 0.010020268149673939, + 0.021375572308897972, + -0.014475387521088123, + -0.03459092602133751, + 0.006866433657705784, + -0.003328214166685939, + 0.015750421211123466, + 0.012360330671072006, + 0.016215434297919273, + 0.0082502206787467, + -0.0011006544809788465, + 0.0279457475990057, + -0.009840263053774834, + 0.0033807153813540936, + 0.015015401877462864, + 0.002458190778270364, + 0.00402385788038373, + 0.0003032893582712859, + -0.00854272861033678, + 0.0064989239908754826, + 0.013102850876748562, + -0.00938275083899498, + -0.01623043417930603, + -0.010942792519927025, + 0.00773270707577467, + 0.02527567557990551, + -0.0006806431920267642, + 0.020985562354326248, + -0.020955560728907585, + -0.01686045154929161, + -0.008415224961936474, + -0.016530442982912064, + 0.01191031839698553, + 0.0022894362919032574, + -0.007867710664868355, + -0.025200674310326576, + -0.002538817934691906, + -0.00856522936373949, + 0.006071412470191717, + 0.025470681488513947, + 0.022230595350265503, + -0.002456315793097019, + -0.003579470794647932, + -0.016830449923872948, + 0.0004197768575977534, + -0.005703902803361416, + -0.020820556208491325, + 0.006840182933956385, + -0.002535067731514573, + -0.03177085146307945, + 0.0042863646522164345, + -0.0004718095005955547, + -0.004301364999264479, + -0.005388894118368626, + -0.01663544587790966, + -0.0025594434700906277, + -0.014625390991568565, + 0.004222612828016281, + 0.004095109645277262, + 0.010387778282165527, + -0.0021150566171854734, + 0.019050510600209236, + -0.022005589678883553, + 0.024255648255348206, + -0.009547755122184753, + -0.00793521199375391, + -0.002775074215605855, + 0.021585578098893166, + -0.006967686582356691, + -0.0025669436436146498, + -0.0014587889891117811, + -0.014092877507209778, + -0.04290114715695381, + -0.0027169478125870228, + 0.018165485933423042, + 0.004732626490294933, + -0.0052651409059762955, + 0.012990348041057587, + 0.0005320454947650433, + 0.0018778627272695303, + -0.019815530627965927, + -0.0029625792521983385, + 0.004571372177451849, + -0.011385304853320122, + -0.014010374434292316, + 0.0007992401369847357, + -0.002898827660828829, + 0.026100698858499527, + -0.009142744354903698, + 0.021720580756664276, + -0.008220219984650612, + 0.021720580756664276, + -0.0021000562701374292, + 0.00385510316118598, + -0.007417698390781879, + 0.0016462940257042646, + 0.020730555057525635, + 0.003772601019591093, + 0.0223355982452631, + 0.002178808208554983, + 0.0010444029467180371, + 0.006363920401781797, + -0.014347883872687817, + 0.00559514993801713, + 0.003641347400844097, + -0.0021300569642335176, + -0.013057849369943142, + 0.00014203504542820156, + -0.012997847981750965, + -0.024990668520331383, + -0.0021694330498576164, + 0.004507620818912983, + -0.01230032928287983, + 0.009847763925790787, + -0.012652838602662086, + -0.0005620463052764535, + 0.008805235847830772, + 0.01596042700111866, + 0.014610391110181808, + 0.018735501915216446, + 0.019380519166588783, + -0.009855263866484165, + -0.010500281117856503, + -0.019380519166588783, + 0.022125592455267906, + -0.022905612364411354, + 0.01731046289205551, + -0.012450332753360271, + -0.010485280305147171, + 0.01449038740247488, + -0.019230514764785767, + 0.018420493230223656, + -0.006885184440761805, + -0.02130056917667389, + -0.026415707543492317, + -0.012990348041057587, + 0.007822709158062935, + -0.025470681488513947, + -0.013297855854034424, + -0.0002386001287959516, + 0.013935373164713383, + -0.015585416927933693, + -0.021285569295287132, + 0.0033994659315794706, + 0.001556291594170034, + -0.00298320478759706, + 0.030585817992687225, + 0.012172825634479523, + -0.02112056501209736, + 0.010680286213755608, + -0.009060242213308811, + 0.011722813360393047, + -0.029820797964930534, + -0.013147851452231407, + 0.010485280305147171, + -0.008670232258737087, + -0.008377724327147007, + -9.587658496457152e-6, + 0.022710608318448067, + -0.016575442627072334, + -0.019785529002547264, + -0.004410117864608765, + 0.004526371136307716, + -0.02373063564300537, + -0.004110109992325306, + -0.007518951315432787, + -0.02680571749806404, + 0.023160619661211967, + -0.012270328588783741, + -0.0041888621635735035, + -0.022110590711236, + -0.03177085146307945, + -0.008617730811238289, + -0.021600577980279922, + -0.016245434060692787, + 0.009577755816280842, + -0.01713045872747898, + 0.0030619569588452578, + -0.01749046891927719, + 0.003564470447599888, + 0.0015628542751073837, + -0.004968883004039526, + -0.009435252286493778, + 0.0090902429074049, + -0.0042938650585711, + 0.00469137541949749, + 0.012180325575172901, + -0.018015481531620026, + -0.019605524837970734, + 0.00831772293895483, + -0.000592984608374536, + -0.011152798309922218, + 0.010942792519927025, + -0.0075864531099796295, + 0.016515441238880157, + -0.0051338872872292995, + -0.004507620818912983, + -0.014302882365882397, + -0.010950293391942978, + 0.020310543477535248, + 0.01198532059788704, + -0.015060403384268284, + 0.007668955251574516, + 0.0223355982452631, + 0.0026250702794641256, + -0.015810422599315643, + -0.0007861147751100361, + -0.009487753733992577, + -0.016920452937483788, + 0.001145655638538301, + 0.0019594274926930666, + -0.0005236077704466879, + 0.005516397766768932, + -0.018150486052036285, + -0.028815770521759987, + -0.006783931516110897, + 0.008992740884423256, + 0.024975668638944626, + -0.016245434060692787, + -0.008160218596458435, + 0.009495253674685955, + -0.02056555077433586, + 0.015157905407249928, + 0.014077876694500446, + -0.017460467293858528, + 0.026730714365839958, + -0.008572729304432869, + 0.0058464063331484795, + 0.016530442982912064, + 0.022305596619844437, + -0.014272881671786308, + 0.003405091119930148, + 0.008385224267840385, + 0.015705419704318047, + 0.0004361835599411279, + -0.006315168924629688, + 0.013672865927219391, + -0.011970320716500282, + -0.0017962980782613158, + -0.0018356741638854146, + -0.013800369575619698, + -0.020970560610294342, + 0.019365517422556877, + 0.004496370442211628, + 0.002985079772770405, + -0.021810583770275116, + -0.047581274062395096, + -0.019050510600209236, + -0.02505066990852356, + -0.007665205281227827, + -0.007620203774422407, + 0.013222853653132915, + 0.01614043116569519, + 0.013072850182652473, + -0.01686045154929161, + -0.018885504454374313, + 0.01051528099924326, + -0.036600980907678604, + 0.011730314232409, + -0.001425975700840354, + 0.01304284855723381, + 0.010695286095142365, + -0.004290114622563124, + 0.014407885260879993, + -0.005700152367353439, + -0.035610951483249664, + -0.004717626143246889, + 0.021405572071671486, + 0.020550549030303955, + 0.006517674308270216, + -0.026025695726275444, + -0.023205621168017387, + -0.018840504810214043, + -0.0014419135404750705, + 0.004282614681869745, + -0.008212720043957233, + -0.013140351511538029, + -0.0036019713152199984, + 0.014227881096303463, + -0.023130618035793304, + 0.02152557671070099, + -0.0036563477478921413, + -0.008407725021243095, + -0.0036544727627187967, + -0.002876326907426119, + 0.00831772293895483, + -0.010770288296043873, + -0.01146030705422163, + -0.019470520317554474, + 0.002004428533837199, + 0.007927712053060532, + 0.018615497276186943, + 0.02442065253853798, + 0.0019481771159917116, + 0.01618543267250061, + 0.026160700246691704, + -0.009075243026018143, + -0.04050108417868614, + 0.019020508974790573, + 0.00936025008559227, + -0.006483923643827438, + -0.010275274515151978, + 0.0031725848093628883, + -0.0006642365478910506, + 0.00041602677083574235, + 0.006213916465640068, + 0.01194031909108162, + 0.007578952703624964, + -0.01397287379950285, + -0.011475306935608387, + 0.009645258076488972, + -0.0036094714887440205, + 0.006945185828953981, + 0.011580309830605984, + -0.014752894639968872, + 0.02431565150618553, + 0.008190219290554523, + -0.001229095389135182, + 0.0033469644840806723, + -0.005407644901424646, + 0.0181804858148098, + -0.016560442745685577, + -0.02395564131438732, + 0.01713045872747898, + 0.011040295474231243, + -0.004320115782320499, + 0.012705340050160885, + -0.02310061827301979, + 0.01822548732161522, + -0.0014081626432016492, + 0.007942712865769863, + 0.010680286213755608, + -0.009412751533091068, + 0.008077716454863548, + 0.011625311337411404, + -0.005741403438150883, + 1.1316220479784533e-5, + 0.003189460374414921, + -0.003941355273127556, + -0.0015844174195080996, + -0.0027881995774805546, + -0.00125159602612257, + 0.002113181632012129, + -0.020925559103488922, + -0.02130056917667389, + -0.002208809135481715, + 0.016605444252490997, + -0.005028884392231703, + -0.008040214888751507, + 0.012225327081978321, + 0.00569640239700675, + 0.011152798309922218, + 0.003881353884935379, + -0.015510414727032185, + 0.016350436955690384, + -0.0141978794708848, + 0.002557568484917283, + -0.03765100613236427, + -0.01582542434334755, + 0.01573542132973671, + -0.021420573815703392, + 0.0038851038552820683, + 0.03477093204855919, + 0.0011062795529142022, + 0.010770288296043873, + 0.02808075211942196, + -0.021540576592087746, + -0.010492781177163124, + -0.016710447147488594, + 0.01344786025583744, + -0.0034613425377756357, + -0.008370224386453629, + -0.0036169718950986862, + 0.007035188376903534, + 0.014190379530191422, + -0.02415064536035061, + -0.003590721171349287, + 0.0010425278451293707, + -0.01591542549431324, + -0.025515682995319366, + -0.007192692253738642, + -0.0001525822008261457, + 0.003800726728513837, + -0.016920452937483788, + 0.009255247190594673, + 0.004365116823464632, + -0.010845290496945381, + -0.003568220417946577, + -0.002581943990662694, + 0.00800271425396204, + -0.0016791074303910136, + -0.01254783570766449, + -0.02442065253853798, + -0.009037741459906101, + 0.022755607962608337, + 0.023700634017586708, + 0.01340285874903202, + -0.0034857182763516903, + 0.0063301692716777325, + -0.00043923049815930426, + -0.016530442982912064, + -0.014992901124060154, + -0.013147851452231407, + 0.016755448654294014, + -0.005722653120756149, + -0.00012504241021815687, + -0.008617730811238289, + -0.013282855041325092, + -0.004680125042796135, + 0.001731608877889812, + -0.007087689824402332, + 0.010687786154448986, + 0.015150405466556549, + 0.017700472846627235, + -0.017550470307469368, + -0.00773270707577467, + -0.014340383931994438, + -0.0160504300147295, + -0.0012562836054712534, + -0.00029578915564343333, + -0.0070914397947490215, + -0.009225246496498585, + 0.010470280423760414, + -0.020655551925301552, + -0.00257631903514266, + 0.028050750494003296, + -0.0022388098295778036, + 0.00996776670217514, + 0.012652838602662086, + 0.0014278506860136986, + -0.025665687397122383, + -0.026820717379450798, + -0.011422805488109589, + -0.008700232952833176, + -0.014122878201305866, + 0.022815611213445663, + -0.0026156948879361153, + 0.016845451667904854, + 0.002898827660828829, + 0.005017634481191635, + -0.022455601021647453, + -0.00881273578852415, + 0.007912712171673775, + 0.007260194048285484, + -0.002175058238208294, + 0.0009722135146148503, + 0.019560523331165314, + 0.03897104412317276, + 0.020355544984340668, + -0.0199805349111557, + 0.0035157189704477787, + -0.004061358515173197, + 0.015525415539741516, + -0.027870746329426765, + 0.005516397766768932, + -0.0028969524428248405, + -0.010815289802849293, + 0.012442832812666893, + 0.016200434416532516, + -0.0019556772895157337, + -0.00028383571770973504, + 0.019335517659783363, + -0.0027769492007791996, + -0.0009665883844718337, + -0.01813548617064953, + -0.017010455951094627, + 0.009097743779420853, + -0.0058651571162045, + -0.02803575061261654, + 0.02617570012807846, + 0.005471396259963512, + -0.007755207363516092, + -0.0015741046518087387, + 0.014700393192470074, + 0.025785690173506737, + -0.0037107241805642843, + -0.01894550770521164, + -0.009660258889198303, + -0.00820521917194128, + 0.02269560657441616, + 0.0008362723747268319, + -0.018105484545230865, + 0.01876550167798996, + 0.022800609469413757, + 0.011535308323800564, + -0.02983579784631729, + 0.005261390935629606, + -0.029760796576738358, + 0.016080429777503014, + 0.020085537806153297, + 0.019605524837970734, + 0.004158861469477415, + 0.01894550770521164, + -0.008970240131020546, + 0.03369090333580971, + 0.008595230057835579, + -0.00599266029894352, + -0.012202826328575611, + 0.007653954904526472, + -0.004931381903588772, + -0.020670553669333458, + -0.017190460115671158, + -0.03243086859583855, + 0.0014025375712662935, + -0.003414466278627515, + 0.005377643741667271, + -0.017580470070242882, + -0.014122878201305866, + -0.002735698129981756, + -0.02799074910581112, + 0.03240086883306503, + 0.006761430762708187, + -0.00397885637357831, + -0.004376367200165987, + -0.01279534213244915, + 0.002720697782933712, + 0.013012847863137722, + -0.0066301776096224785, + -0.011205299757421017, + 0.0015234783058986068, + 0.001018152222968638, + 0.02505066990852356, + 0.003808226902037859, + -0.002244435017928481, + -0.01194031909108162, + -0.008932738564908504, + 0.0021188065875321627, + 0.021555576473474503, + 0.027570737525820732, + -0.005610150285065174, + -0.0033807153813540936, + 0.01876550167798996, + 0.027015723288059235, + 0.010507781058549881, + -0.0016866076039150357, + 0.012922845780849457, + -0.018510494381189346, + -0.008767734281718731, + 0.01627543568611145, + -0.025335678830742836, + 0.009975266642868519, + -0.0032550871837884188, + 0.011205299757421017, + -0.009900265373289585, + 0.02767574042081833, + -0.0037332249339669943, + 0.00657767616212368, + -0.011047795414924622, + 0.0051676384173333645, + 0.009892764501273632, + 0.011152798309922218, + 0.00768770556896925, + 0.0007772083044983447, + 0.004136360716074705, + -0.010687786154448986, + -0.014122878201305866, + 0.005437645595520735, + -0.020190540701150894, + 0.0030713321175426245, + 0.014662892557680607, + 0.003343214513733983, + -0.0018412992358207703, + -0.019425520673394203, + -0.005227639805525541, + -0.017700472846627235, + 0.0014250380918383598, + 0.010492781177163124, + 0.009172745048999786, + -0.0153754111379385, + 0.01899050734937191, + 0.017610471695661545, + 0.0122328270226717, + 0.009562755934894085, + -0.026280703023076057, + 0.0022350598592311144, + 0.0004631374031305313, + 0.008767734281718731, + -0.011797815561294556, + 0.02061055228114128, + -0.004522621165961027, + 0.010327775962650776, + 0.0006703304243274033, + -0.004218862857669592, + 0.0024863164871931076, + 0.0036825984716415405, + 0.00023801418137736619, + -0.0011119047412648797, + 0.0009304936393164098, + -0.006858933717012405, + -0.022710608318448067, + -0.003716349368914962, + 0.012727840803563595, + 0.0038963542319834232, + -0.0034857182763516903, + 0.0022388098295778036, + -0.008122717030346394, + -0.019320517778396606, + 0.0004514183383435011, + 0.003534469520673156, + -0.008242720738053322, + -0.0035832207649946213, + 0.008737733587622643, + 0.015990428626537323, + -0.011250301264226437, + 0.0040913596749305725, + 0.006281418260186911, + -0.000883617380168289, + 0.021690580993890762, + 0.0042001125402748585, + -0.015795422717928886, + -0.0010378402657806873, + 0.013507861644029617, + -0.00891023874282837, + 0.014820396900177002, + 0.014235381036996841, + 0.0042113629169762135, + -0.009465252980589867, + 0.0029119530227035284, + -0.0058576567098498344, + 0.01587042398750782, + -0.0026213200762867928, + 0.019695527851581573, + 0.009855263866484165, + -0.009862763807177544, + 0.013215353712439537, + 0.022440601140260696, + -0.0075752027332782745, + -0.004072608891874552, + 0.020535549148917198, + 0.012457833625376225, + 0.02074555493891239, + -0.017895478755235672, + 0.007031437940895557, + 0.0047476268373429775, + -0.010792789049446583, + -0.019065510481595993, + -0.005422645248472691, + -0.006401421502232552, + 0.019455520436167717, + -0.01989053189754486, + 0.001575042144395411, + 0.003350714687258005, + 0.003590721171349287, + -0.008355223573744297, + -0.024660659953951836, + -0.0032907130662351847, + -0.02011553756892681, + -0.006506423931568861, + 0.021450573578476906, + 0.014370384626090527, + -0.006052662152796984, + 0.018285488709807396, + -0.02170558087527752, + -0.014550389721989632, + -0.015180406160652637, + -0.018480494618415833, + -0.021765582263469696, + 0.008392724208533764, + 0.008970240131020546, + 0.0042976150289177895, + -0.025875693187117577, + 0.0015881675062701106, + -0.0007200192776508629, + 0.014445386826992035, + -0.012187826447188854, + -0.02613069862127304, + 0.004908881150186062, + 0.01089779194444418, + -0.016890451312065125, + -0.015765421092510223, + 0.004968883004039526, + -0.0010022142669185996, + -0.012270328588783741, + -0.008265221491456032, + -0.009352750144898891, + 0.008827736601233482, + -0.03270087391138077, + -0.01993553340435028, + 0.001858174684457481, + 0.004406367894262075, + -0.004076358862221241, + -0.0051226369105279446, + 0.020820556208491325, + 0.007492700591683388, + 0.01476039458066225, + -0.009000240825116634, + -0.016440439969301224, + -0.004965133033692837, + 0.014955400489270687, + -0.0006459548021666706, + 0.0048676300793886185, + 0.02388063818216324, + 0.010597783140838146, + 0.003532594535499811, + 0.005928908474743366, + -0.003294463036581874, + -0.00945025309920311, + 0.02983579784631729, + -0.015885425731539726, + 0.015210406854748726, + -0.0036132216919213533, + -0.0004385273496154696, + 0.017940480262041092, + -0.005160138010978699, + 0.0025950693525373936, + -0.007466449867933989, + 0.0005587649648077786, + -0.0012169075198471546, + 0.001760672079399228, + 6.627130642300472e-5, + 0.03603096306324005, + 0.000676424358971417, + -0.013500361703336239, + -0.024945667013525963, + -2.5137391276075505e-5, + -0.0002220762544311583, + 0.004252613987773657, + 0.000651111186016351, + -0.016665445640683174, + 0.012105324305593967, + -0.003240086603909731, + -0.006900184787809849, + -0.012645338661968708, + 0.037681009620428085, + -0.005066385492682457, + 0.004923881962895393, + -0.005088886246085167, + 0.02388063818216324, + 0.0024413152132183313, + -0.026070697233080864, + 0.017925480380654335, + 0.017745474353432655, + 0.00911274366080761, + -0.005013884045183659, + -0.008775235153734684, + 0.014182879589498043, + 0.006843932904303074, + 0.006322669330984354, + 0.0013519112253561616, + 0.009690259583294392, + -0.010507781058549881, + -0.004893880803138018, + -0.0033375893253833055, + -0.026070697233080864, + 0.02536567859351635, + 0.006840182933956385, + -0.018420493230223656, + -0.011137798428535461, + -0.04230113327503204, + -0.004605123307555914, + -0.013492860831320286, + -0.008557729423046112, + 0.0013922248035669327, + 0.014362884685397148, + 0.002593194367364049, + -0.0057264030911028385, + -0.004095109645277262, + 0.010545282624661922, + 0.026070697233080864, + 0.06087162718176842, + 0.014970400370657444, + 0.02581568993628025, + 0.003843852784484625, + 0.011880317702889442, + -0.043291158974170685, + -0.005212639458477497, + -0.007875210605561733, + -0.02653571031987667, + -0.024135645478963852, + 0.01632043719291687, + 0.006978936959058046, + -0.004121360369026661, + 0.005250140558928251, + -0.012765341438353062, + 0.0026456958148628473, + -0.00741394842043519, + -0.007470199838280678, + -0.004428868647664785, + -0.003534469520673156, + -0.0047138761729002, + 0.021630579605698586, + -0.01134780328720808, + -0.004998883698135614, + 0.02830575779080391, + -0.005013884045183659, + -0.0008175218827091157, + -0.018975507467985153, + 0.01134780328720808, + -0.007627704180777073, + 0.009435252286493778, + -0.015180406160652637, + -0.03993107005953789, + 0.005891407839953899, + 0.0006937685539014637, + 0.0283957589417696, + -0.012667839415371418, + 0.009337750263512135, + -0.005947659257799387, + -0.011887817643582821, + -0.015000401064753532, + -0.010927792638540268, + 0.0014859772054478526, + 0.009660258889198303, + -0.0030525815673172474, + -0.004998883698135614, + 0.012705340050160885, + 0.01627543568611145, + -0.013230353593826294, + 0.012675339356064796, + 0.008460226468741894, + -0.00047368454397656024, + -0.021780582144856453, + -0.004061358515173197, + -0.00023438126663677394, + 0.0026963220443576574, + 0.011377803981304169, + -0.01944052055478096, + -0.0008704920182935894, + 0.008310222066938877, + 0.004845129791647196, + -0.009285248816013336, + 0.0017775475280359387, + 0.02386563830077648, + 0.005752653814852238, + -0.0008179906290024519, + 0.005340143106877804, + 0.0075752027332782745, + 0.009960266761481762, + -0.010200273245573044, + 0.035700954496860504, + -0.011197799816727638, + -0.017550470307469368, + -0.018195487558841705, + -0.008782735094428062, + -0.023565631359815598, + -0.02251560240983963, + -0.011677812784910202, + -0.014685393311083317, + 0.008077716454863548, + -0.00884273648262024, + -0.0010997168719768524, + 0.008445225656032562, + 0.003888854058459401, + 0.005025134421885014, + -0.015300409868359566, + -0.0019444270292297006, + 0.0028632015455514193, + -0.011062796227633953, + 0.015855424106121063, + -0.018870504572987556, + 0.00014484762505162507, + -0.01732546277344227, + -0.0012281578965485096, + -0.000738301023375243, + -0.01966552622616291, + -0.009030241519212723, + -0.00847522635012865, + 0.002317562000826001, + 0.014610391110181808, + 0.02079055644571781, + 0.006528924684971571, + 0.0016641070833429694, + -0.016350436955690384, + -0.01618543267250061, + -0.026100698858499527, + 0.0082502206787467, + -0.009052742272615433, + -0.0072001926600933075, + 0.02382063679397106, + -0.01836049184203148, + 0.014400385320186615, + -0.006761430762708187, + 0.006971436552703381, + 0.02442065253853798, + 0.009150245226919651, + 0.005010134074836969, + 0.0037050992250442505, + -0.003926354926079512, + 0.012315329164266586, + -0.01200032141059637, + 0.0062326667830348015, + 0.02107556350529194, + 0.019590524956583977, + 0.003673223312944174, + 0.007327695842832327, + 0.012360330671072006, + 0.014092877507209778, + 0.0028088251128792763, + -0.00043383974116295576, + 0.0022425600327551365, + -0.011947819963097572, + 0.01344786025583744, + 0.010200273245573044, + 0.004897631239145994, + -0.004455119371414185, + 0.01062778476625681, + -0.01313285157084465, + 0.0008784609963186085, + -0.00427136430516839, + -0.02002553641796112, + 0.03222086280584335, + 0.009915265254676342, + -0.0057151527144014835, + -0.010117771103978157, + -0.0006726742722094059, + -0.0301958080381155, + 0.009840263053774834, + 0.02047554776072502, + 0.011602810584008694, + -0.01609543152153492, + 0.0026213200762867928, + -0.001970677636563778, + 0.0028538263868540525, + -0.008512727916240692, + 0.006033911369740963, + -0.0016172308241948485, + 0.021045563742518425, + -0.014947899617254734, + 0.013815369457006454, + -0.021720580756664276, + 0.0014166004257276654, + -0.0036544727627187967, + 0.024615658447146416, + 0.012427832931280136, + -0.02431565150618553, + 0.0014053500490263104, + 0.00724519370123744, + -0.004117610398679972, + -0.0024206896778196096, + -0.003986356779932976, + -0.0023363125510513783, + -0.003112583188340068, + -0.004012607503682375, + 0.01455788966268301, + -0.0008859612280502915, + -0.009075243026018143, + -0.0005967346951365471, + -0.007631454151123762, + -0.00888023804873228, + 0.00019230983161833137, + 0.018690500408411026, + 0.00033516521216370165, + -0.0020756805315613747, + -0.01141530554741621, + -0.000245631585130468, + -0.007380197290331125, + 0.002767574042081833, + 0.0001756687561282888, + 0.012442832812666893, + 0.0015487914206460118, + 0.023085618391633034, + -0.02889077365398407, + -0.012157825753092766, + -0.0005029822350479662, + 0.008257720619440079, + -0.001807548338547349, + -0.003176335012540221, + -0.020265541970729828, + -0.0009103368502110243, + 0.01672544702887535, + 0.013785368762910366, + -0.010290275327861309, + 0.014092877507209778 + ], + "ea58997e-836d-45c6-a5c5-9aea900c68d1": [ + -0.021259473636746407, + -0.03492744266986847, + -0.011199913918972015, + 0.004117495846003294, + -0.035448748618364334, + -0.027254482731223106, + 0.02253015525639057, + 0.03096878156065941, + 0.004500329028815031, + 0.03375450521707535, + -0.02243240922689438, + 0.016974996775388718, + 0.012438014149665833, + -0.02502264454960823, + -0.011721218936145306, + 0.02301887795329094, + -0.029926171526312828, + 0.027498843148350716, + 0.002134092850610614, + -0.03355901688337326, + 0.04949140176177025, + -0.02215546742081642, + -0.04014049097895622, + 0.001780786318704486, + 0.012087762355804443, + -0.013000045903027058, + 0.010181739926338196, + 0.0114279855042696, + -0.03701266273856163, + -0.017463721334934235, + 0.008063938468694687, + 0.01284528337419033, + 0.002455835696309805, + -0.01284528337419033, + -0.004720254801213741, + -0.04567936062812805, + -0.00601537199690938, + -0.009261311031877995, + -0.006194570567458868, + -0.028280802071094513, + -0.035611655563116074, + 0.02542991377413273, + 0.010751917958259583, + -0.0052415598183870316, + -0.027775786817073822, + -0.008837750181555748, + 0.007110927253961563, + -0.014433635398745537, + 0.0012594813015311956, + -0.013944911770522594, + 0.01321997120976448, + 0.012454304844141006, + 0.0022420191671699286, + 0.02181336097419262, + 0.02422439679503441, + -0.02722190134227276, + 0.015940532088279724, + 0.04659164324402809, + 0.007286053150892258, + -0.05724581703543663, + 0.014205563813447952, + 0.029535192996263504, + 0.008381608873605728, + -0.014775741845369339, + -0.004801708739250898, + -0.02756400778889656, + -0.016095295548439026, + -0.019369741901755333, + -0.02793869562447071, + -0.008715569972991943, + -0.004418875090777874, + 0.014482507482171059, + -0.035579074174165726, + 0.0006251588347367942, + -0.00909840315580368, + 0.0005162142333574593, + 0.06581477075815201, + 0.023751962929964066, + 0.01430330891162157, + -0.02130834572017193, + -0.030040206387639046, + 0.009733743965625763, + 0.010320211760699749, + 0.007766631431877613, + 0.04509289190173149, + 0.023882290348410606, + -0.012861574068665504, + -0.044897403568029404, + -0.012828992679715157, + -0.026961248368024826, + -0.0015496608102694154, + 0.054932523518800735, + -0.01897876337170601, + 0.009139129891991615, + -0.022367246448993683, + -0.018392296507954597, + 0.04004274681210518, + 0.004455529619008303, + 0.010833371430635452, + -0.005754719488322735, + -0.011151041835546494, + 0.026342198252677917, + -0.034829698503017426, + 0.0194837786257267, + 0.014026365242898464, + -0.00043756028753705323, + 0.008218700997531414, + -0.015109702944755554, + -0.043398648500442505, + 0.06255660951137543, + 0.0016830416861921549, + -0.03189735487103462, + 0.010662318207323551, + -0.023035168647766113, + -0.06604284048080444, + -0.0367194265127182, + -0.010295775718986988, + -0.017659209668636322, + -0.004569564945995808, + -0.01587536931037903, + 0.07389499992132187, + 0.03176702931523323, + -0.001431552693247795, + 0.015240028500556946, + -0.004042150918394327, + 0.010295775718986988, + 0.007941757328808308, + 0.0014050801983103156, + 0.004756908863782883, + 0.03684975579380989, + -0.02344243787229061, + -0.026081545278429985, + 0.013537641614675522, + -0.013847166672348976, + 0.012478740885853767, + 0.008279791101813316, + -0.007155727129429579, + 0.06770449876785278, + -0.01710532419383526, + 0.052260834723711014, + -0.05721323564648628, + -0.03385224938392639, + 0.0020516207441687584, + -0.0005941045237705112, + 0.010768208652734756, + 0.006679221522063017, + -0.04590743035078049, + 0.07018069922924042, + -0.03250011429190636, + 0.02264419011771679, + -0.05617062374949455, + -0.014050801284611225, + 0.00820241030305624, + 0.014067091979086399, + -0.001509952126070857, + -0.0034801189322024584, + -0.0058809733018279076, + 0.030447475612163544, + 0.014181127771735191, + 0.01427887286990881, + 0.007505978923290968, + -0.06672704964876175, + 0.0054329764097929, + -0.013961202464997768, + 0.02947002835571766, + 0.023556474596261978, + 0.05200018361210823, + 0.02788982354104519, + -0.03391741216182709, + 0.030040206387639046, + 0.015728753060102463, + -0.021324636414647102, + 0.004382221028208733, + 0.02585347555577755, + -0.008568952791392803, + 0.002881432417780161, + 0.043985117226839066, + 0.04567936062812805, + 0.024908609688282013, + -0.035611655563116074, + -0.021911105141043663, + -0.01421370916068554, + -0.0021829651668667793, + -0.02002137340605259, + -0.021878523752093315, + 0.03401515632867813, + 0.036165542900562286, + 0.00792139396071434, + -0.018473749980330467, + -0.027254482731223106, + -0.002557653235271573, + -0.04287734627723694, + 0.002514889929443598, + 0.03698008134961128, + -0.026456233114004135, + -0.025413623079657555, + -0.017870990559458733, + -0.002694088499993086, + 0.004801708739250898, + 0.009334619157016277, + -0.024990063160657883, + -0.04330090433359146, + -0.04238862171769142, + 0.042812179774045944, + -0.033363524824380875, + 0.04085728898644447, + -0.020803332328796387, + 0.0037713164929300547, + 0.01998879201710224, + -0.014612833969295025, + -0.005844318773597479, + -0.049817219376564026, + 0.0016382420435547829, + -0.006023517344146967, + -0.022790808230638504, + -0.007640378084033728, + 0.008454916998744011, + 0.036654263734817505, + 0.025446204468607903, + -0.01785469986498356, + -0.02077075093984604, + 0.028965014964342117, + 0.018180515617132187, + -0.03733847662806511, + -0.03893497586250305, + -0.01259277667850256, + -0.015598425641655922, + 0.041117940098047256, + -0.05392249673604965, + 0.017594046890735626, + 0.03197880834341049, + 0.005819882731884718, + 0.0001658350956859067, + -0.021699324250221252, + -0.0014946794835850596, + 0.03847883269190788, + 0.01935345120728016, + 0.013944911770522594, + 0.02389858104288578, + -0.015215592458844185, + 0.017626628279685974, + 0.033819667994976044, + 0.005555157549679279, + 0.00227460078895092, + 0.01993991993367672, + 0.008854040876030922, + -0.017300812527537346, + 0.05890747532248497, + 0.04554903134703636, + -0.024582793936133385, + -0.0005141778965480626, + 0.012837138026952744, + 0.012780120596289635, + -0.014344035647809505, + -0.02834596484899521, + 0.03688233718276024, + 0.05278214067220688, + -0.0344712994992733, + 5.116324609844014e-5, + -0.02922566793859005, + 0.015696171671152115, + 0.012657939456403255, + 0.015183011069893837, + -0.014718723483383656, + 0.02718931995332241, + -0.0070335459895431995, + 0.026619141921401024, + -0.030235696583986282, + -0.006581476889550686, + 0.01798502542078495, + 0.0020068211015313864, + 0.004439238924533129, + -0.00036170633393339813, + -0.021047692745923996, + 0.025967510417103767, + 0.01203074399381876, + 0.013211825862526894, + -0.014352180995047092, + 0.022334665060043335, + -0.00154049729462713, + -0.006251588463783264, + 0.005909482017159462, + -0.005693628918379545, + -0.010214322246611118, + 0.03525325655937195, + -0.013187389820814133, + -0.01579391583800316, + 0.007917321287095547, + -0.05333602800965309, + -0.013578368350863457, + -0.003661353839561343, + -0.004671382252126932, + 0.014963085763156414, + 0.02389858104288578, + 0.011753801256418228, + 0.00747339753434062, + 0.0061986432410776615, + 0.002044493332505226, + -0.002871250733733177, + 0.006654785480350256, + -0.01392862107604742, + -0.017496302723884583, + -0.01932086981832981, + -0.030040206387639046, + 0.005587738938629627, + -0.018848437815904617, + 0.025136679410934448, + -0.010271339677274227, + -0.03952144458889961, + 0.03321690857410431, + 0.05040368810296059, + -0.008397899568080902, + -0.020656714215874672, + -0.027759496122598648, + -0.0036124815233051777, + -0.0024151087272912264, + 0.010955552570521832, + -0.0015170793049037457, + -0.0061090439558029175, + -0.04545128718018532, + 0.004488111007958651, + 0.004066586960107088, + -0.06278468668460846, + 0.030675547197461128, + 0.02156899869441986, + -0.03492744266986847, + 0.0318484827876091, + 0.01296746451407671, + -0.028280802071094513, + -0.02331211231648922, + -0.017545174807310104, + -0.018848437815904617, + -0.02272564359009266, + -0.012723102234303951, + 0.0024212177377194166, + -0.06008041277527809, + -0.04688487574458122, + -0.03916304558515549, + -0.010800790041685104, + -0.016021985560655594, + -0.020673004910349846, + -0.015183011069893837, + 0.01180267333984375, + -0.008218700997531414, + 0.025169262662529945, + -0.0012146816588938236, + 0.007351216394454241, + 0.012633503414690495, + -0.033721923828125, + 0.014401053078472614, + 0.0010904644150286913, + -0.0042356038466095924, + 0.03535100072622299, + -0.01785469986498356, + 0.024957481771707535, + -0.011411694809794426, + -0.00872371532022953, + -0.011704928241670132, + 0.03411290422081947, + -0.022285792976617813, + 0.007510051596909761, + -0.029290830716490746, + -0.04049888998270035, + -0.002132056513801217, + -0.021666742861270905, + -0.010328357107937336, + -0.007159799803048372, + -0.023963743820786476, + 0.01969555765390396, + 0.020428644493222237, + -0.05213050916790962, + 0.011558311991393566, + -0.011085879057645798, + -0.009546400047838688, + -0.018017606809735298, + -0.04124826565384865, + 0.05489994212985039, + 0.015419227071106434, + -0.024615375325083733, + 0.027173029258847237, + 0.010157303884625435, + 0.02331211231648922, + 0.023295821622014046, + 0.007114999927580357, + 0.02398003451526165, + 0.03321690857410431, + -0.015663588419556618, + -0.0007223944994620979, + 0.0010436283191666007, + 0.010808935388922691, + -0.011770091950893402, + 0.01357022300362587, + -0.02630961686372757, + 0.01589980535209179, + -0.03368934243917465, + -0.0012951173121109605, + -0.009342764504253864, + -0.00308099458925426, + 0.00939163751900196, + -0.02261160872876644, + 0.003944406285881996, + -0.0023845636751502752, + -0.004561419598758221, + 0.018343422561883926, + 0.0049727619625627995, + -0.020200572907924652, + -0.014816468581557274, + -0.036784593015909195, + 0.019141672179102898, + -0.01576133444905281, + 0.02002137340605259, + -0.0024415813386440277, + 0.0049483259208500385, + 0.029421156272292137, + 0.039782095700502396, + 0.0024069633800536394, + 0.02785724215209484, + 0.05287988483905792, + -0.031278304755687714, + -0.01581835187971592, + 0.02727077342569828, + 0.0644463449716568, + 0.016282638534903526, + 0.03463420644402504, + -0.021634161472320557, + 0.013667968101799488, + 0.0026004165410995483, + 0.006353405769914389, + -0.026505107060074806, + -0.03305400162935257, + -0.00018339860253036022, + 0.02156899869441986, + 0.0015954787377268076, + -0.002209437545388937, + 0.0020994748920202255, + -0.030398603528738022, + -0.013122227042913437, + -0.008666696958243847, + -0.014832759276032448, + -0.03219059109687805, + -0.008797023445367813, + 0.03051263839006424, + -0.020917367190122604, + 0.0016290784114971757, + -0.03142492473125458, + -0.028590327128767967, + -0.03318432718515396, + 0.013879748061299324, + 0.01849004067480564, + 0.009513817727565765, + -0.0061904978938400745, + 0.028492581099271774, + -0.07291755080223083, + 0.024077778682112694, + -0.01267423015087843, + 0.003408846678212285, + 0.016600308939814568, + -0.02248128317296505, + 0.014523234218358994, + -0.034569043666124344, + -0.02569056674838066, + -0.006365623790770769, + 0.04522321745753288, + -0.012918592430651188, + 0.04199764132499695, + -0.04453900456428528, + -0.015850933268666267, + 0.01621747575700283, + 0.00771368620917201, + 0.006047953851521015, + -0.015598425641655922, + -0.008976222015917301, + -0.06685738265514374, + 0.002041438827291131, + 0.007538560312241316, + -0.023458730429410934, + -0.018669238314032555, + -0.003604335943236947, + 0.03626328706741333, + -0.032744478434324265, + -0.03952144458889961, + -0.0254787877202034, + -0.03137604892253876, + 0.008267573080956936, + -0.0017573683289811015, + 0.012828992679715157, + -0.011688637547194958, + -0.03984725847840309, + 0.005074579268693924, + -0.005404467694461346, + 0.04681971296668053, + 0.02344243787229061, + 0.01374127622693777, + -0.005135669838637114, + -0.002276637125760317, + -0.03421064838767052, + -0.021666742861270905, + -0.027547717094421387, + -0.020656714215874672, + -0.019874757155776024, + 0.021927395835518837, + -0.012038889341056347, + -0.011525729671120644, + 0.023996325209736824, + 0.006141625810414553, + 0.016958706080913544, + -0.02156899869441986, + 0.007982484064996243, + 0.0020078392699360847, + -0.005135669838637114, + -0.037077825516462326, + 0.007998774759471416, + -0.020640423521399498, + 0.01646183803677559, + 0.006186425220221281, + 0.022546445950865746, + -0.02505522593855858, + -0.002290891483426094, + 0.043854791671037674, + -0.01831084117293358, + -0.016926124691963196, + -0.011395404115319252, + -0.004516620188951492, + 0.029958752915263176, + -0.018913600593805313, + 0.01694241538643837, + -0.01078449934720993, + -0.0012564267963171005, + 0.020803332328796387, + -0.025381041690707207, + -0.023491311818361282, + 0.011069588363170624, + -0.026000091806054115, + 0.025625403970479965, + 0.008182046003639698, + -0.029926171526312828, + 0.003797789104282856, + 0.03466678783297539, + 0.02293742448091507, + 0.013896038755774498, + -0.042323458939790726, + 0.017382267862558365, + -0.004936107899993658, + -6.866311014164239e-5, + -0.003643026575446129, + 0.043398648500442505, + 0.00018059862486552447, + 0.010515701025724411, + 0.005771010182797909, + 0.017659209668636322, + -0.03496002405881882, + 0.01334215234965086, + -0.0015954787377268076, + -0.008829604834318161, + 0.004394439049065113, + -0.047731999307870865, + 0.026195582002401352, + -0.005229341797530651, + -0.017463721334934235, + -0.013944911770522594, + -0.00629638833925128, + 0.028948724269866943, + 0.025657985359430313, + -0.0033986649941653013, + -0.026993829756975174, + 0.017708081752061844, + -0.014352180995047092, + 0.03906530141830444, + -0.011224350892007351, + 0.030919909477233887, + 0.030040206387639046, + 0.006842129398137331, + 0.03342869132757187, + -0.00043476029532030225, + -0.014954940415918827, + 0.03974951431155205, + -0.005885045975446701, + -0.009171711280941963, + -0.025462495163083076, + -0.00984777882695198, + 0.02935599349439144, + -0.014295163564383984, + -0.010515701025724411, + -0.0013185354182496667, + 0.005636611487716436, + 0.025674276053905487, + -0.0029119777027517557, + -0.020966239273548126, + -0.01605456881225109, + 0.022383537143468857, + 0.010328357107937336, + 0.03096878156065941, + 0.008788878098130226, + 0.014865340664982796, + -0.039782095700502396, + 0.04075954109430313, + 0.014840904623270035, + 0.0243547223508358, + 0.0029649226926267147, + 0.015826497226953506, + 0.02818305790424347, + 0.017333393916487694, + 0.008935495279729366, + -0.0009448655182495713, + -0.020510097965598106, + 0.03149008750915527, + 0.004137859214097261, + 0.005302650388330221, + -0.0021361291874200106, + 0.03179961070418358, + -0.00645115040242672, + -0.005221196450293064, + 0.04887235164642334, + -0.0036470992490649223, + 0.03160412237048149, + 0.015533262863755226, + 0.007375652436167002, + 0.030154241248965263, + -0.01438476238399744, + -0.004182659089565277, + 0.025543950498104095, + -0.03088732808828354, + 0.059722013771533966, + -0.007408234290778637, + 0.0005067961174063385, + 0.015907950699329376, + -0.03772945702075958, + -0.014067091979086399, + -0.018131643533706665, + -0.0076811048202216625, + -0.003987169358879328, + -0.016184894368052483, + 0.01121620461344719, + -0.03737105801701546, + 0.04043372720479965, + 0.01731710322201252, + -0.013374733738601208, + -0.00021534381085075438, + -0.015956822782754898, + -0.01578577049076557, + -0.018669238314032555, + 0.0029343776404857635, + 0.005221196450293064, + 0.021585289388895035, + -0.013040772639214993, + 0.016974996775388718, + -0.025495078414678574, + 0.01619303971529007, + 0.0442131906747818, + 0.013399169780313969, + -0.009016948752105236, + 0.011183623224496841, + 0.014327744953334332, + 0.020412351936101913, + 0.0038303707260638475, + -0.02909534052014351, + 0.0034129193518310785, + 0.009758180007338524, + -0.01229954231530428, + 0.005551084876060486, + 0.008813314139842987, + -0.02673317678272724, + 0.013830875977873802, + 0.0057139927521348, + 0.025201844051480293, + 0.01790357194840908, + 0.01276382990181446, + -0.022074012085795403, + 0.02422439679503441, + 0.03541616350412369, + -0.00041821497143246233, + -0.015345918945968151, + 0.019711848348379135, + 0.021178020164370537, + 0.007522269617766142, + -0.022171758115291595, + 0.01694241538643837, + -0.017577756196260452, + 0.009986250661313534, + 0.000902102212421596, + -0.03122943453490734, + -0.034569043666124344, + -0.020330898463726044, + 0.007917321287095547, + 0.03181590139865875, + -0.011476857587695122, + -0.007135363761335611, + 0.02831338346004486, + -0.015883514657616615, + -0.005351522471755743, + 0.004321130458265543, + 0.0016290784114971757, + -0.01860407553613186, + 0.001487552304752171, + -0.008471207693219185, + 0.02376825362443924, + -0.02148754522204399, + 0.008292009122669697, + 0.019174253568053246, + -0.01525631919503212, + -0.0397169329226017, + -0.028036439791321754, + -7.661759445909411e-5, + -0.00594206340610981, + 0.0016331510851159692, + 0.028411127626895905, + -0.023589055985212326, + -0.023409856483340263, + 0.004312985111027956, + 0.00330499280244112, + 0.012185506522655487, + 0.023458730429410934, + -0.02710786461830139, + 0.03737105801701546, + 0.02609783597290516, + 0.018848437815904617, + -0.005648829508572817, + 0.01811535283923149, + -0.0012615176383405924, + 0.032532695680856705, + -0.022220630198717117, + 0.011770091950893402, + 0.005754719488322735, + -0.04978463798761368, + -0.01831084117293358, + 0.027368517592549324, + 0.014938649721443653, + -0.005954281892627478, + -0.0012879901332780719, + -0.006654785480350256, + 0.025706857442855835, + 0.002319400431588292, + -0.033037710934877396, + 0.007114999927580357, + -0.011729365214705467, + -0.023540183901786804, + -0.011664201505482197, + 0.01430330891162157, + 0.029551483690738678, + -0.025951219722628593, + 0.00520490575581789, + -0.0187344029545784, + 0.011875981464982033, + -0.009025094099342823, + 0.02451763115823269, + -0.024012615904211998, + 0.03701266273856163, + 0.006662930827587843, + -0.00887033250182867, + -0.00249248999170959, + 0.01105329766869545, + -0.03233720734715462, + 0.05349893495440483, + 0.011835254728794098, + -0.0040869503282010555, + 0.0016178785590454936, + 0.015533262863755226, + -0.0025271079502999783, + -0.015068975277245045, + 0.04584226757287979, + -0.002366236411035061, + -0.006259733811020851, + 0.010743772611021996, + 0.0033599743619561195, + 0.0050705065950751305, + 0.014001929201185703, + 0.015288901515305042, + 0.013676113449037075, + 0.037533968687057495, + -0.01336658839136362, + 0.03610037639737129, + -0.008222773671150208, + 0.03005649708211422, + 0.023507602512836456, + -0.0254787877202034, + -0.010670463554561138, + 0.015850933268666267, + -0.01444992609322071, + -0.033787086606025696, + -0.02168303355574608, + -0.015582134947180748, + -0.03984725847840309, + -0.004581782966852188, + -0.04753650724887848, + 0.016926124691963196, + -0.035155512392520905, + 0.04079212248325348, + -0.03292367607355118, + 0.0021544562187045813, + 0.002260346431285143, + 0.006903219968080521, + 0.0013154807966202497, + 0.005828028079122305, + 0.02459908463060856, + 0.0013226080918684602, + -0.01811535283923149, + 0.016958706080913544, + -0.02239982783794403, + -0.013855312019586563, + 0.009570836089551449, + 0.014205563813447952, + -0.022676771506667137, + 0.04988238215446472, + 0.046852294355630875, + -0.006866565439850092, + -0.013065208680927753, + -0.013871602714061737, + -0.008935495279729366, + 0.012266960926353931, + 0.008845895528793335, + -0.01902763545513153, + -0.006341187749058008, + -0.005184541922062635, + -0.0007356307469308376, + -0.005156033206731081, + -0.010662318207323551, + -0.00602759001776576, + 0.01107773371040821, + -0.0016840598545968533, + 0.0010629736352711916, + -0.021634161472320557, + -0.012128489091992378, + 0.020086538046598434, + -0.00653667701408267, + 0.006512240972369909, + -0.028997596353292465, + -0.0004449420375749469, + 0.0014987521572038531, + 0.026830922812223434, + 0.012649794109165668, + -0.011289513669908047, + -0.01427887286990881, + 0.007538560312241316, + 0.04137859120965004, + 0.013382879085838795, + 0.03417806699872017, + -0.05779970437288284, + -0.004716182127594948, + -0.024533921852707863, + 0.015272610820829868, + -0.007391943596303463, + -0.039488863199949265, + -0.036654263734817505, + -0.028948724269866943, + -0.014930503442883492, + -0.011851545423269272, + 0.02976326271891594, + 0.018701819702982903, + 0.0217319056391716, + 0.04238862171769142, + 0.04782974347472191, + -0.01502824854105711, + -0.00907396711409092, + 0.007021327968686819, + -0.02111285738646984, + 0.015354064293205738, + 0.014083382673561573, + 0.014425489120185375, + -0.0176103375852108, + 0.004284476395696402, + 0.019288288429379463, + 0.00040065147913992405, + -0.026325907558202744, + -0.008968076668679714, + -0.003119685221463442, + -0.023263240233063698, + -0.01215292513370514, + 0.005661047529429197, + 0.01910909079015255, + 0.007208671886473894, + 0.008715569972991943, + 0.003089139936491847, + 0.014189273118972778, + 0.018245678395032883, + -0.017284521833062172, + -0.008959931321442127, + -0.015150429680943489, + 0.004565492272377014, + -0.03408031910657883, + 0.0023397637996822596, + 0.004651018884032965, + 0.011240641586482525, + 0.01919054426252842, + 0.0037020808085799217, + -0.02839483693242073, + -0.004447384271770716, + 0.00922058429569006, + -0.006744384765625, + 0.013057063333690166, + 0.00022170739248394966, + 0.017577756196260452, + 0.004630655515938997, + -0.00820241030305624, + -0.027368517592549324, + 0.0035676818806678057, + -0.0014040620299056172, + 0.0029567773453891277, + -0.013081500306725502, + 0.018033897504210472, + 0.01203074399381876, + 0.000820648274384439, + -0.042649272829294205, + -0.01972813904285431, + 0.006214934401214123, + 0.00770146818831563, + -0.05760421231389046, + 0.020591551437973976, + 0.00042966942419297993, + -0.011704928241670132, + 0.021797070279717445, + -0.0012421723222360015, + 0.006960237864404917, + -0.012112198397517204, + -0.005318941082805395, + 0.04333348572254181, + 0.02839483693242073, + 0.01964668557047844, + 0.02205772139132023, + -0.0014834795147180557, + -0.010157303884625435, + 0.018343422561883926, + 0.012193651869893074, + 0.017870990559458733, + 0.0030402676202356815, + 0.0009805015288293362, + -0.019141672179102898, + 0.00022107103723101318, + -0.015077120624482632, + 0.003335538087412715, + 0.01194929052144289, + 0.007208671886473894, + 0.012462450191378593, + 0.03502518683671951, + 0.0012248633429408073, + 0.019451197236776352, + 0.010165449231863022, + -0.011379112489521503, + -0.016184894368052483, + -0.044148024171590805, + -0.018506331369280815, + -0.025543950498104095, + 0.01932086981832981, + 0.01436032634228468, + -0.019141672179102898, + -0.003072849242016673, + -0.0002259073662571609, + -0.011729365214705467, + 0.03139234334230423, + 0.0058972639963030815, + 0.016152312979102135, + 0.023116623982787132, + 0.009497527033090591, + -0.004264113027602434, + 0.00439036637544632, + 0.01259277667850256, + 0.019597813487052917, + -0.004524765536189079, + -0.0017461684765294194, + -0.00813724659383297, + 0.0008130119531415403, + 0.007131291087716818, + 0.010800790041685104, + 0.0059135546907782555, + 0.0035025186371058226, + -0.036328449845314026, + -9.378337381349411e-6, + -0.019418615847826004, + -0.03329836204648018, + -0.016062714159488678, + -0.0012554086279124022, + -0.00462251016870141, + -0.017724374309182167, + 0.00851193442940712, + 0.010776353999972343, + 0.003917933441698551, + -0.015411081723868847, + -0.022888552397489548, + -0.012348414398729801, + -0.011835254728794098, + 0.009407928213477135, + 0.01889730989933014, + 0.010092141106724739, + -0.029795844107866287, + -0.01935345120728016, + -0.020835913717746735, + 0.00869927927851677, + 0.004500329028815031, + 0.032663021236658096, + -0.022285792976617813, + 0.006781038828194141, + 0.00556737557053566, + -0.03593746945261955, + -0.029909880831837654, + 0.008634115569293499, + -0.007534487638622522, + 0.004891308024525642, + -0.03551391139626503, + -0.019825885072350502, + -0.012682375498116016, + -0.03149008750915527, + 0.010849662125110626, + -0.0030993216205388308, + -0.033037710934877396, + 0.06477215886116028, + 0.016119731590151787, + 0.022416118532419205, + -0.01383902132511139, + -0.02077075093984604, + -0.003970878664404154, + 0.03235349804162979, + -0.00038206978933885694, + -0.03583972528576851, + 0.0039892056956887245, + -0.013016336597502232, + 0.015883514657616615, + 0.013936766423285007, + -0.02339356578886509, + -0.02122689224779606, + -0.005933918058872223, + 0.04792748764157295, + -0.023556474596261978, + -0.020135410130023956, + -0.009839633479714394, + 0.00629638833925128, + -0.0005149415228515863, + 0.0037835347466170788, + 0.003974951338022947, + 0.002439545001834631, + 0.026488814502954483, + 0.007167945150285959, + -0.0041948771104216576, + 0.004029932897537947, + -0.001596496906131506, + -0.011403549462556839, + -0.008625970222055912, + -0.015573989599943161, + -0.00197729398496449, + -0.07356918603181839, + -0.020379770547151566, + -0.005424831062555313, + 0.019972501322627068, + -0.003243902465328574, + 0.0012248633429408073, + 0.008247209712862968, + 0.003932188265025616, + -0.009774470701813698, + 0.016926124691963196, + 0.016795799136161804, + -0.007489688228815794, + -0.0061986432410776615, + 0.01662474498152733, + -0.004231531172990799, + -0.012951173819601536, + 0.0022053648717701435, + 0.0009952650871127844, + 0.02384970895946026, + -0.007172017823904753, + -0.0005335232126526535, + 0.01793615333735943, + 0.019500069320201874, + -0.022758224979043007, + -0.005697702057659626, + 0.049067843705415726, + -0.019972501322627068, + 0.007652596104890108, + -0.01579391583800316, + -0.0057995193637907505, + 0.005082724615931511, + 0.015850933268666267, + -0.002321436768397689, + 0.00012924446491524577, + 0.005033852532505989, + 0.016714345663785934, + 0.023670509457588196, + 0.008463062345981598, + 0.013993783853948116, + -0.009228729642927647, + 0.007351216394454241, + 0.00855266209691763, + -0.023491311818361282, + -0.012535758316516876, + -0.00485058082267642, + -0.020167991518974304, + 0.0014417343772947788, + -0.02860661782324314, + 0.011322095058858395, + 0.003661353839561343, + 0.01702386885881424, + 0.006882856599986553, + 0.001954894047230482, + -0.02352389320731163, + 0.00315430318005383, + -0.00652445899322629, + 0.019386032596230507, + -0.028411127626895905, + 0.01906021684408188, + 0.001767550129443407, + 0.08810056000947952, + 0.00982334278523922, + 0.02714044600725174, + 0.0028610690496861935, + -0.03101765364408493, + 0.019842175766825676, + 0.015411081723868847, + 0.03450388088822365, + 0.028459999710321426, + 0.0006979582831263542, + 0.01168049219995737, + -0.007746268063783646, + 0.0075833601877093315, + 0.023279530927538872, + -0.012576485984027386, + 0.042649272829294205, + 0.012641648761928082, + 0.006178279872983694, + -0.00010633555211825296, + -0.0005421776440925896, + -0.003019904252141714, + -0.006789184175431728, + 0.015753189101815224, + -0.0043089124374091625, + -0.015288901515305042, + -0.008878477849066257, + -0.0057180654257535934, + -0.020428644493222237, + 0.010800790041685104, + -0.005359668284654617, + 0.033119164407253265, + -0.0013816622085869312, + 0.039945002645254135, + 0.017284521833062172, + -0.035741981118917465, + 0.03613296151161194, + -0.006284169852733612, + 0.012861574068665504, + -0.007029473315924406, + -0.008625970222055912, + -0.008617824874818325, + -0.008634115569293499, + -0.010377230122685432, + -0.04027082026004791, + -0.006251588463783264, + 0.007640378084033728, + 0.011932999826967716, + 0.0064633688889443874, + -0.027075283229351044, + 0.0008415208430960774, + -0.019891047850251198, + -0.0060031539760529995, + -0.033363524824380875, + 0.004056405276060104, + -0.02290484309196472, + 0.01852262206375599, + -0.013407315127551556, + -0.014229999855160713, + -0.01401007454842329, + 0.009489381685853004, + -0.011338385753333569, + 0.02673317678272724, + -0.004182659089565277, + -0.03987983986735344, + -0.01814793422818184, + 0.0038486977573484182, + -0.0028895779978483915, + -0.019744431599974632, + 0.002610598225146532, + 0.022790808230638504, + -0.010890389792621136, + 0.004345566965639591, + -0.0014203527243807912, + 0.004062514286488295, + -0.0038996064104139805, + 0.01055642869323492, + 0.019451197236776352, + 0.014181127771735191, + 0.03101765364408493, + -0.05053401365876198, + -0.007514124270528555, + 0.00020885294361505657, + 0.023051459342241287, + 0.03310287371277809, + -0.013244407251477242, + -0.006793257314711809, + -0.0036511721555143595, + -0.008617824874818325, + 0.03404773771762848, + 0.00271648820489645, + -0.008194264955818653, + -0.0029404866509139538, + 0.013130372390151024, + -0.003394592087715864, + -0.00855266209691763, + -0.020787041634321213, + -0.0035208456683903933, + 0.011436130851507187, + 0.01932086981832981, + 0.0047772726975381374, + -0.011778237298130989, + -0.004708036780357361, + 0.01659216359257698, + -0.0019335125107318163, + -0.002069947775453329, + -0.006699584890156984, + -0.02826451137661934, + 0.0034597553312778473, + -0.02007024548947811, + -0.02552765980362892, + -0.022741934284567833, + 0.00953010842204094, + -0.006707730703055859, + -0.004903526045382023, + -0.002284782472997904, + -0.0027409244794398546, + -0.0060927532613277435, + 0.005852464120835066, + 0.023279530927538872, + -0.003500482300296426, + -0.0015618789475411177, + 0.025755729526281357, + -0.00359619059599936, + 0.017952444031834602, + 0.00953010842204094, + 0.006532604340463877, + 0.00789695791900158, + 0.0067484574392437935, + -0.004062514286488295, + 0.005591811612248421, + 0.020200572907924652, + 0.028069021180272102, + -0.023132914677262306, + 0.003775389166548848, + 0.0009260292863473296, + -0.00286310538649559, + 0.041736990213394165, + 0.007453033700585365, + -0.018001316115260124, + -0.008096519857645035, + -0.011916709132492542, + -0.004870944656431675, + 0.01961410418152809, + 0.0050542159005999565, + -0.0030708129052072763, + -0.014490652829408646, + -0.05685483664274216, + 0.014295163564383984, + 0.01568802446126938, + -0.01956523209810257, + 0.00015196247841231525, + 0.010181739926338196, + 0.00652445899322629, + -0.007640378084033728, + 0.009782616049051285, + -0.00010900825873250142, + 0.015134138986468315, + -0.010621591471135616, + -0.008287936449050903, + -0.006312679033726454, + 0.02272564359009266, + -0.015696171671152115, + 0.007172017823904753, + -0.034373555332422256, + 0.016559582203626633, + 0.014067091979086399, + 0.003767243819311261, + -0.047112949192523956, + -0.0008975203963927925, + 0.0022135102190077305, + -0.004019751213490963, + 0.004131750203669071, + -0.00784401223063469, + -0.008503789082169533, + -0.004638800863176584, + 0.00667107617482543, + 0.025495078414678574, + -0.013977493159472942, + 0.03093620017170906, + 0.00026396161410957575, + -0.010450538247823715, + -0.015411081723868847, + -0.015207447111606598, + 0.014498798176646233, + 0.0389675572514534, + 0.0053393044508993626, + -0.0187344029545784, + -0.016812089830636978, + 0.013545786961913109, + 0.012087762355804443, + 0.023654218763113022, + -0.029111631214618683, + -0.018799565732479095, + 0.025495078414678574, + -0.0026696522254496813, + 0.012038889341056347, + 0.017724374309182167, + -0.004870944656431675, + 0.02160158008337021, + -0.010018832050263882, + -0.01107773371040821, + -0.006467441562563181, + 0.01136282179504633, + -0.040107909590005875, + 0.02127576433122158, + -0.0183597132563591, + -0.0012472631642594934, + 0.004989052657037973, + 0.016746927052736282, + -0.03243495151400566, + 0.0008858114015311003, + 0.023572765290737152, + -0.01150943897664547, + -0.009660434909164906, + 0.012918592430651188, + 0.01150943897664547, + -0.01136282179504633, + -0.010971843264997005, + -0.003402737667784095, + 0.006080535240471363, + 0.0026900158263742924, + -0.006479659583419561, + -0.029779553413391113, + 0.011615329422056675, + 0.009253165684640408, + 0.006565186195075512, + 0.013920475728809834, + 0.007542632985860109, + 0.029877299442887306, + -0.030382312834262848, + 0.034373555332422256, + 0.011468712240457535, + 0.014417343772947788, + -0.006821766030043364, + 0.01915796287357807, + -0.009562690742313862, + 0.003274447750300169, + 0.007998774759471416, + -0.0008293027640320361, + 0.000697449198924005, + 0.033493854105472565, + -0.0065529681742191315, + -0.05024077743291855, + -0.003767243819311261, + 0.011289513669908047, + -0.0002787251432891935, + 0.004508474376052618, + 0.02007024548947811, + -0.010051414370536804, + -0.013154808431863785, + -0.006438932381570339, + 0.0061823525466024876, + -0.0044962563551962376, + -0.008756296709179878, + 0.008756296709179878, + 0.008837750181555748, + 0.0051763965748250484, + -0.0006633403827436268, + -0.008194264955818653, + -0.023719381541013718, + 0.012258815579116344, + -0.01284528337419033, + 0.01894618198275566, + 0.0041948771104216576, + -0.031082816421985626, + -0.005685483571141958, + 0.013203680515289307, + -0.008218700997531414, + 0.004131750203669071, + -0.00329888379201293, + -0.02160158008337021, + 0.03997758403420448, + -0.0028956870082765818, + -0.002514889929443598, + 0.00719238119199872, + 0.006744384765625, + -0.014726868830621243, + -0.011037006042897701, + -0.0030708129052072763, + -0.006491877604275942, + 0.013822730630636215, + 0.01798502542078495, + -0.016201185062527657, + 0.01378200389444828, + 0.01667361706495285, + 0.01121620461344719, + 0.014466216787695885, + 0.02906275913119316, + 0.026374779641628265, + -0.030740709975361824, + 0.010792644694447517, + 0.019516360014677048, + 0.017170486971735954, + 0.013105936348438263, + 0.021422380581498146, + 0.025495078414678574, + -0.003924042917788029, + -0.007571142166852951, + -0.037990108132362366, + -0.012682375498116016, + -0.008902913890779018, + -0.022334665060043335, + -0.005384104326367378, + 0.038576576858758926, + -0.00017919862875714898, + 0.025788310915231705, + 0.012356559745967388, + -0.005229341797530651, + 0.0018103134352713823, + -0.03171815723180771, + 8.641752356197685e-5, + -0.006622203625738621, + -0.021406089887022972, + -0.021389799192547798, + -0.00527821434661746, + -0.0043252031318843365, + 0.00814946461468935, + 0.003946442622691393, + 0.004960543941706419, + -0.017512593418359756, + -0.0017624592874199152, + -0.010474974289536476, + -0.03093620017170906, + -0.020461225882172585, + -0.01793615333735943, + 0.0008842841489240527, + -0.006581476889550686, + 0.013847166672348976, + 0.013896038755774498, + -0.018832147121429443, + -0.0032846294343471527, + -0.005086797289550304, + 0.021373508498072624, + 0.002055693417787552, + -0.0008313391008414328, + -0.007799212820827961, + -0.032956257462501526, + 0.020282026380300522, + -0.028508871793746948, + 0.005950209219008684, + -0.013244407251477242, + -0.0033477561082690954, + -0.010035122744739056, + 0.028329674154520035, + -0.017594046890735626, + 0.0013674077345058322, + 0.017268231138586998, + 0.018962472677230835, + 0.01654329150915146, + -0.030040206387639046, + -0.02689608559012413, + 0.01677950844168663, + 0.008902913890779018, + -0.00402178755030036, + -0.004773200023919344, + -0.0058972639963030815, + 0.0019630396272987127, + 0.016494419425725937, + 0.004602146800607443, + 0.02194368652999401, + 0.0010003559291362762, + -0.006328969728201628, + -0.010572719387710094, + -0.03233720734715462, + -0.012169215828180313, + 0.012983755208551884, + -0.01334215234965086, + -0.01205518003553152, + -0.0020007118582725525, + -0.01269866619259119, + 0.008536371402442455, + -0.006096825934946537, + 0.011028860695660114, + 0.008446771651506424, + 0.04756908863782883, + -0.01627449318766594, + 0.008886623196303844, + -0.028134183958172798, + 0.0028590327128767967, + -0.026032673195004463, + -0.013358443044126034, + -0.010523846372961998, + 0.015891660004854202, + -0.011493148282170296, + -0.02502264454960823, + -0.004239676520228386, + 0.01502824854105711, + -0.016909833997488022, + 0.003979024011641741, + 0.018620366230607033, + 0.002223692135885358, + -0.014058946631848812, + 0.03541616350412369, + -0.002728706458583474, + -0.011110315099358559, + -3.534973075147718e-5, + -0.005013488698750734, + 0.015720607712864876, + -0.03131088614463806, + 0.03401515632867813, + 0.01046682894229889, + -0.012454304844141006, + -0.016290783882141113, + 0.011370967142283916, + -0.0012513358378782868, + 0.017251940444111824, + 0.03401515632867813, + -0.03135975822806358, + -0.012983755208551884, + -0.020803332328796387, + -0.010312066413462162, + -0.017382267862558365, + -0.02534846030175686, + 0.005335231777280569, + -0.003447537310421467, + -0.006703657563775778, + 0.011191768571734428, + 0.017626628279685974, + 0.004699891433119774, + 0.00804357510060072, + 0.028590327128767967, + -0.01736597530543804, + -0.003327392740175128, + 0.030251987278461456, + 0.027156736701726913, + 0.00135518959723413, + 0.003970878664404154, + -0.01482461392879486, + -0.0076892501674592495, + 0.020510097965598106, + -0.017382267862558365, + 0.020721876993775368, + 0.0014468253357335925, + 0.002718524541705847, + 0.017919862642884254, + -0.037403639405965805, + -0.01259277667850256, + -0.008788878098130226, + 0.023116623982787132, + -5.2372324716998264e-5, + 0.00996995996683836, + -0.020558970049023628, + -0.021748196333646774, + -0.008813314139842987, + -0.002610598225146532, + -0.013350297696888447, + 0.005771010182797909, + -0.0036308085545897484, + -0.0015160611364990473, + -0.009041385725140572, + 0.0030015769880264997, + 0.0032846294343471527, + -0.016209330409765244, + 0.005522575695067644, + 0.007815503515303135, + -0.010564574040472507, + -0.0035636089742183685, + -0.005933918058872223, + -0.02256273664534092, + -0.008813314139842987, + -0.000393524271203205, + -0.012649794109165668, + 0.00018887128680944443, + -0.019076509401202202, + 0.007086491212248802, + 0.00872371532022953, + 0.006426714360713959, + -0.014107819646596909, + -0.005465558264404535, + 0.014751304872334003, + 0.014034510590136051, + -0.006333042401820421, + 0.012006307952105999, + 0.019011344760656357, + 0.008010992780327797, + -0.010678608901798725, + -0.00032505206763744354, + -0.0014600615249946713, + -0.012731247581541538, + -0.01589980535209179, + 0.008084301836788654, + 0.00315430318005383, + -0.023263240233063698, + 0.0003265793202444911, + -0.009807052090764046, + 0.10022090375423431, + 0.007839939557015896, + 0.004899453371763229, + 0.010515701025724411, + 0.00733899837359786, + -0.026879794895648956, + -0.010149158537387848, + 0.007571142166852951, + 0.009090257808566093, + 0.0014264618512243032, + -0.007664814125746489, + -0.010026977397501469, + 0.01392862107604742, + 0.02127576433122158, + -0.01592424139380455, + 0.0061823525466024876, + 0.02705899253487587, + 0.021699324250221252, + -0.0018276224145665765, + 0.014832759276032448, + -0.00498497998341918, + -0.014262582175433636, + -0.03197880834341049, + 0.02598380111157894, + -0.015223737806081772, + 0.018587784841656685, + -0.012120343744754791, + 0.005021634511649609, + 0.02336098439991474, + 0.028036439791321754, + -0.00396680599078536, + -0.001585296937264502, + -0.009562690742313862, + -0.013228116557002068, + 0.00869927927851677, + 0.011265077628195286, + 0.0020455115009099245, + 0.007310489658266306, + -0.012519467622041702, + 0.01993991993367672, + -0.0004210149636492133, + 0.0011973726795986295, + 0.03460162505507469, + 0.026716886088252068, + -0.010629736818373203, + -0.011175477877259254, + -0.022872261703014374, + -0.004655091557651758, + 0.007302344311028719, + 0.00011454457853687927, + -0.012429868802428246, + -0.005408540368080139, + 0.008943640626966953, + 0.006557040847837925, + 0.007986556738615036, + -0.005901336669921875, + 0.006251588463783264, + -0.013847166672348976, + -0.011411694809794426, + -0.004716182127594948, + -0.016315219923853874, + 0.002356054726988077, + -0.012462450191378593, + -0.013822730630636215, + -0.01115918718278408, + -0.021959977224469185, + -0.00359008158557117, + -0.017251940444111824, + 0.0004273785452824086, + 0.0019304580055177212, + -0.01465356070548296, + 0.004524765536189079, + -0.006768820807337761, + -0.03417806699872017, + -0.021552707999944687, + 0.02872065268456936, + -0.0010044287191703916, + 0.006276024505496025, + 0.015639152377843857, + 0.012161070480942726, + 0.005445194896310568, + 0.016551436856389046, + -0.014172982424497604, + -0.011810818687081337, + -0.015769479796290398, + 0.0035045549739152193, + 0.01662474498152733, + -0.026130417361855507, + 0.0007707577315159142, + -0.022758224979043007, + -0.007998774759471416, + -0.011827109381556511, + 0.00033472469658590853, + 0.011672346852719784, + 0.00808022916316986, + -0.005559230223298073, + -0.009978105314075947, + -0.005901336669921875, + -0.003296847455203533, + -0.0076892501674592495, + 0.005608102306723595, + 0.014270727522671223, + -0.009587126784026623, + -0.0023438367061316967, + 0.002932341303676367, + 0.006703657563775778, + 0.026342198252677917, + 0.005656974855810404, + -0.007868449203670025, + 0.009033240377902985, + 0.0011749728582799435, + -0.014287018217146397, + -0.007448961026966572, + -0.01546810008585453, + -0.01458839699625969, + 0.004528838209807873, + 0.004520692862570286, + -0.01707274280488491, + -0.012372850440442562, + -0.019174253568053246, + -0.03323319926857948, + 0.007432670332491398, + -0.01334215234965086, + -0.028443709015846252, + -0.0012024635216221213, + 0.007522269617766142, + -0.012755684554576874, + -0.006911365315318108, + -0.02531587891280651, + 0.0047772726975381374, + 0.019744431599974632, + 0.007062055170536041, + -0.0069520920515060425, + -0.005628466140478849, + 0.01482461392879486, + -0.002176856156438589, + 0.003019904252141714, + 4.476783942664042e-5, + 0.02223692089319229, + -0.019255707040429115, + 0.02951890043914318, + -0.027792077511548996, + 0.0020872566383332014, + 0.023703090846538544, + -0.00681769335642457, + 0.013521350920200348, + -0.008528226055204868, + -0.013407315127551556, + 0.01205518003553152, + -0.012975609861314297, + 0.023589055985212326, + -0.04082470387220383, + -0.019891047850251198, + -0.008650406263768673, + 0.004178586415946484, + 0.008438626304268837, + -0.018848437815904617, + 0.010890389792621136, + -0.018327131867408752, + -0.016714345663785934, + -0.008845895528793335, + -0.0005635592970065773, + -0.01822938770055771, + -0.0005788319394923747, + -0.014107819646596909, + 0.011297659017145634, + 0.019337160512804985, + 0.02189481444656849, + 0.01502824854105711, + -0.004720254801213741, + -0.004141931887716055, + 0.004349639639258385, + 0.01026319433003664, + -0.02135721780359745, + 0.0038670250214636326, + -0.013953057117760181, + -0.006194570567458868, + -0.01229954231530428, + -0.017040159553289413, + 0.03505776822566986, + 0.0021442745346575975, + -0.006662930827587843, + 0.014987521804869175, + -0.007860303856432438, + -0.0036226632073521614, + -0.012641648761928082, + 0.008332735858857632, + -0.02376825362443924, + -0.01036908384412527, + 0.0032215025275945663, + 0.0074041616171598434, + 0.0021829651668667793, + 0.0004449420375749469, + -0.017708081752061844, + 0.0011464639101177454, + -0.023263240233063698, + 0.02505522593855858, + 0.019597813487052917, + 0.00967672560364008, + -0.009578981436789036, + -0.006394132971763611, + 0.0022033285349607468, + 0.010043269023299217, + -0.0018215132877230644, + -0.001067046425305307, + -0.01964668557047844, + -0.00843048095703125, + -0.02047751657664776, + -0.009416073560714722, + -0.01203074399381876, + -0.03567681834101677, + -0.023246949538588524, + 0.014254435896873474, + 0.010124722495675087, + -0.0007621032418683171, + 0.00483836280182004, + 0.013448042795062065, + 0.007514124270528555, + 0.009554545395076275, + 0.014441780745983124, + 0.010026977397501469, + -0.002647252520546317, + 0.017137905582785606, + -0.010890389792621136, + -0.009049531072378159, + -0.005253777839243412, + 0.023377275094389915, + 0.012682375498116016, + 0.024256978183984756, + 0.003950515296310186, + 0.022627899423241615, + -5.1735965826082975e-5, + -0.021389799192547798, + 0.0194837786257267, + -0.001803186140023172, + 0.03675200790166855, + 0.027303354814648628, + 0.010010686703026295, + 0.004459602292627096, + -0.006316751707345247, + -0.008740006014704704, + -0.0016555509064346552, + -0.0050705065950751305, + -0.025071516633033752, + 0.0003026522172149271, + -0.012910447083413601, + -0.0043985117226839066, + -0.010605300776660442, + 0.0009153384598903358, + -3.009976899193134e-5, + -0.01648627407848835, + -0.0009082112228497863, + -0.016909833997488022, + -0.006353405769914389, + 0.017512593418359756, + -0.02073816768825054, + -0.009505672380328178, + 0.007729977369308472, + 0.005213051103055477, + -0.016828380525112152, + -0.0006495950510725379, + 0.0033742287196218967, + -0.01932086981832981, + -0.016974996775388718, + 0.002820342080667615, + 0.01205518003553152, + -0.02015170082449913, + -0.00020058028167113662, + 0.009065821766853333, + -0.004785418044775724, + -0.0027205608785152435, + 0.004936107899993658, + 0.0024049270432442427, + 0.01505268458276987, + -0.006618130952119827, + -0.016877252608537674, + 0.01608715020120144, + -0.016127876937389374, + -0.0016891506966203451, + 0.0075833601877093315, + -0.001854094909504056, + 0.006133480463176966, + 0.012291396968066692, + -0.015810206532478333, + -0.007982484064996243, + -0.029795844107866287, + 0.00330499280244112, + 0.013847166672348976, + -0.004830217454582453, + 0.01940232329070568, + 0.0005431958707049489, + -0.017968734726309776, + -0.00984777882695198, + -0.00999439600855112, + -0.0016606418648734689, + 0.007489688228815794, + -0.013887893408536911, + 0.0006455223192460835, + 0.026570269837975502, + 0.008063938468694687, + -0.008357172831892967, + 0.005225269123911858, + -0.007375652436167002, + -0.0254787877202034, + 0.023491311818361282, + 0.006675148848444223, + 0.027922404929995537, + 0.0026798341423273087, + -0.007070200517773628, + 0.027792077511548996, + 0.002382527105510235, + 0.0038853520527482033, + -0.0005859591765329242, + -0.01744743064045906, + -0.016812089830636978, + -0.010646027512848377, + 0.011476857587695122, + 0.014539524912834167, + -0.029942462220788002, + -0.010776353999972343, + 0.017170486971735954, + -0.01090668048709631, + -0.004088986665010452, + 0.012226233258843422, + 0.0023682727478444576, + 0.0037835347466170788, + 0.018131643533706665, + 0.012975609861314297, + 0.016926124691963196, + -0.020119119435548782, + 0.021699324250221252, + -0.002380490768700838, + -0.02489231899380684, + -0.0001308353675995022, + -0.00135518959723413, + 0.023670509457588196, + -0.003036194946616888, + 0.0016657327068969607, + -0.013285134918987751, + 0.001014101319015026, + -0.014783887192606926, + -0.012657939456403255, + -0.006540750153362751, + 0.004017714876681566, + 0.002610598225146532, + 0.01651071012020111, + 0.00018008952611126006, + -0.008406044915318489, + 0.006691439542919397, + 0.003706153482198715, + -0.009090257808566093, + 0.0008394845062866807, + 0.02186223305761814, + -0.001260499469935894, + -0.009253165684640408, + -0.008829604834318161, + 0.018033897504210472, + 0.020558970049023628, + -0.011175477877259254, + 0.0015883514424785972, + -0.020754460245370865, + 0.0009906833292916417, + -0.010996279306709766, + -0.014515088871121407, + 0.019076509401202202, + 0.0011688637314364314, + -0.00255968957208097, + 0.006357478443533182, + -0.042062804102897644, + 0.005901336669921875, + -0.005164178553968668, + -0.01076006330549717, + -0.021617870777845383, + -0.004467747639864683, + -0.018131643533706665, + 0.006349333096295595, + -0.01654329150915146, + 0.006882856599986553, + -0.008373463526368141, + 0.00021661652135662735, + 0.006288242992013693, + -0.010817080736160278, + -0.008495643734931946, + -0.006565186195075512, + 0.02552765980362892, + 0.03166928514838219, + 0.016681762412190437, + 0.015362209640443325, + 0.013350297696888447, + -0.011843400076031685, + -0.006695512216538191, + 0.00636969693005085, + 0.02215546742081642, + -0.010646027512848377, + -0.013122227042913437, + 0.022464992478489876, + -0.018913600593805313, + 0.030414894223213196, + -0.01107773371040821, + -0.004443311598151922, + -0.0020709659438580275, + -0.0033294290769845247, + 0.005428903736174107, + 0.007831794209778309, + 0.004516620188951492, + -0.018473749980330467, + -0.0061090439558029175, + -0.008585243485867977, + 0.029584065079689026, + -0.010320211760699749, + 0.009147275239229202, + 0.013529496267437935, + -0.015663588419556618, + -0.004178586415946484, + 0.012755684554576874, + -0.003229648107662797, + 0.001114900573156774, + -0.010499410331249237, + 0.003752989461645484, + -0.00396680599078536, + 0.018082771450281143, + -0.019956210628151894, + 0.014433635398745537, + -0.005009416025131941, + 0.006353405769914389, + -0.006137553136795759, + 0.023458730429410934, + 0.0066262767650187016, + -0.018669238314032555, + -0.005599956959486008, + -0.00878073275089264, + -0.01540293637663126, + -0.02002137340605259, + 0.010189885273575783, + -0.02997504360973835, + -0.00812502857297659, + 0.023035168647766113, + -0.007200526539236307, + 0.009147275239229202, + 0.02243240922689438, + -0.02336098439991474, + -0.009285747073590755, + -0.0028569963760674, + 0.012454304844141006, + 0.012959319166839123, + 0.00687878392636776, + 0.009627853520214558, + 0.02007024548947811, + -0.004748763516545296, + -0.027873532846570015, + -0.010165449231863022, + 0.0015557699371129274, + -0.027124155312776566, + -0.002392709022387862, + -0.005872827954590321, + -0.01648627407848835, + 0.010817080736160278, + -0.006007226649671793, + 0.031066525727510452, + -0.035904888063669205, + -0.011550165712833405, + -0.0005747592658735812, + -0.013806439936161041, + -0.006153843831270933, + -0.016657326370477676, + 0.019842175766825676, + 0.00792139396071434, + 0.01113475114107132, + -0.004634728189557791, + 0.017431139945983887, + -0.014458071440458298, + 0.015378500334918499, + 0.015997549518942833, + 0.012022598646581173, + 0.018636656925082207, + 0.010426102206110954, + -0.01969555765390396, + 0.014702432788908482, + 0.0026329979300498962, + -0.017333393916487694, + -0.008976222015917301, + -0.009008803404867649, + -0.02160158008337021, + -0.011990017257630825, + 0.03626328706741333, + -0.015964968129992485, + -0.011696782894432545, + 0.004817999433726072, + 0.003103394526988268, + 0.007664814125746489, + 0.006768820807337761, + -0.011175477877259254, + 0.009139129891991615, + -0.015769479796290398, + 0.007440815679728985, + -0.008650406263768673, + 0.0066588581539690495, + 0.01923941634595394, + -0.010955552570521832, + 0.012193651869893074, + -0.0049646166153252125, + -0.008902913890779018, + -0.004471820313483477, + 0.007892885245382786, + 0.015231883153319359, + -0.0041948771104216576, + -0.010825226083397865, + 0.017577756196260452, + 0.025837184861302376, + 0.02197626791894436, + 0.004602146800607443, + 0.0010410828981548548, + -0.02243240922689438, + 0.010646027512848377, + 0.007615941576659679, + 0.02352389320731163, + -0.015573989599943161, + 0.004919816739857197, + 0.017121614888310432, + -0.00012358087406028062, + 0.0047691273503005505, + -0.01436032634228468, + 0.00564068416133523, + 0.01430330891162157, + 0.0021503835450857878, + -0.00892734993249178, + 0.029339702799916267, + 0.0029893589671701193, + 0.006589622236788273, + 0.0010497374460101128, + -0.03427581116557121, + 0.015582134947180748, + 0.010792644694447517, + 0.0057099200785160065, + 0.020005082711577415, + 0.021406089887022972, + 0.020803332328796387, + 0.013081500306725502, + 0.021666742861270905, + -0.007958048023283482, + 0.003296847455203533, + 0.007864376530051231, + 0.009505672380328178, + -0.004952398594468832, + -0.006125335115939379, + -0.013855312019586563, + 0.009456800296902657, + 0.002476199297234416, + -0.009163565933704376, + -0.010776353999972343, + -0.014311454258859158, + 0.010328357107937336, + 0.02577202022075653, + -0.008059865795075893, + 0.017284521833062172, + -0.01868552900850773, + -0.01321997120976448, + -0.0007453034049831331, + -0.006300461012870073, + 0.019760722294449806, + 0.009644144214689732, + -0.009016948752105236, + -0.016095295548439026, + -0.005225269123911858, + -0.012364705093204975, + 0.0001424170914106071, + 0.024452466517686844, + 0.017838409170508385, + 0.00014725342043675482, + -0.006434859707951546, + -0.025201844051480293, + -0.0014101710403338075, + -0.010678608901798725, + -0.01224252488464117, + 0.008959931321442127, + -0.0004075241449754685, + -0.041443753987550735, + -0.007363434415310621, + 0.0014661706518381834, + -0.007644450757652521, + 0.0043089124374091625, + -0.025543950498104095, + -0.02290484309196472, + -0.014254435896873474, + 0.01919054426252842, + 0.010336502455174923, + 0.004642873536795378, + 0.0005528684705495834, + 0.010515701025724411, + -0.007383798249065876, + 0.02580460160970688, + -0.0016657327068969607, + -0.018343422561883926, + -0.00653667701408267, + 0.019500069320201874, + -0.003559536300599575, + -0.0027063065208494663, + -0.006365623790770769, + -0.035285837948322296, + -0.029290830716490746, + 0.004541056230664253, + 0.01852262206375599, + 0.01157460268586874, + 0.007632232271134853, + 0.0284762904047966, + 0.009253165684640408, + 0.007668886799365282, + -0.015280756168067455, + -0.001868349383585155, + -0.007347143720835447, + -0.010165449231863022, + -0.00984777882695198, + 0.011094024404883385, + 0.0033701560460031033, + 0.006728094071149826, + -0.005677338223904371, + 0.01026319433003664, + -0.005123451817780733, + 0.01915796287357807, + 0.00011537184764165431, + -0.0044025843963027, + 0.00024168906384147704, + 0.007090563885867596, + 0.020803332328796387, + -0.009049531072378159, + -0.006662930827587843, + 0.0044148024171590805, + 0.0034047740045934916, + 0.006365623790770769, + -0.026863504201173782, + 0.009188001975417137, + 0.004268185701221228, + -0.008463062345981598, + -0.007962120696902275, + -0.0019498032052069902, + -0.010743772611021996, + -0.03342869132757187, + -0.002239982830360532, + 0.005041997879743576, + -0.01632336527109146, + 0.013130372390151024, + -0.00770146818831563, + 0.0011281367624178529, + 0.002781651448458433, + 0.010458683595061302, + 0.005074579268693924, + 0.007310489658266306, + -0.004239676520228386, + -0.0009626835235394537, + -0.022627899423241615, + -0.01540293637663126, + 0.016152312979102135, + -0.015354064293205738, + 0.017496302723884583, + -0.013236261904239655, + -0.009652289561927319, + 0.015077120624482632, + -0.01774066500365734, + 0.015582134947180748, + 0.003490300616249442, + -0.0012727174907922745, + -0.020917367190122604, + -0.00659776758402586, + -0.0032663021702319384, + -0.013130372390151024, + -0.002718524541705847, + -0.009008803404867649, + 0.01710532419383526, + -0.0010629736352711916, + -0.02459908463060856, + 0.011248786933720112, + 0.00015781697584316134, + -0.009872215799987316, + 0.009652289561927319, + 0.011419840157032013, + -0.009758180007338524, + -0.011110315099358559, + -0.009578981436789036, + 0.005648829508572817, + -0.018099062144756317, + -0.019386032596230507, + 0.007013182621449232, + -0.00806801114231348, + -0.009196148253977299, + -1.392830290569691e-5, + 0.003820189042016864, + -0.005632538814097643, + -0.024761991575360298, + 0.002755178837105632, + 0.0057913740165531635, + -0.004479965660721064, + -7.668122998438776e-5, + -0.02831338346004486, + -0.042193133383989334, + 0.018457459285855293, + -0.007277907803654671, + 0.003958660643547773, + -0.020119119435548782, + -0.04199764132499695, + 0.0018836219096556306, + -0.01777324639260769, + -0.005575520917773247, + 0.010629736818373203, + -0.004976834636181593, + -0.0007621032418683171, + -0.012951173819601536, + 0.014172982424497604, + 0.011028860695660114, + 0.01744743064045906, + -0.005225269123911858, + 0.0016311147483065724, + 0.0003739244129974395, + 0.005950209219008684, + 0.008088374510407448, + -0.012511322274804115, + -0.010979988612234592, + 0.014629124663770199, + 0.003127830568701029, + -0.014669851399958134, + 0.02156899869441986, + -0.005294505041092634, + 0.01910909079015255, + -0.0008028302108868957, + 0.0015130066312849522, + -0.001956930384039879, + -0.02085220441222191, + 0.00499719800427556, + 0.010026977397501469, + -0.007110927253961563, + 0.013676113449037075, + 0.03256527706980705, + 0.0005386140546761453, + -0.00075344875222072, + 0.0034943732898682356, + -0.021080274134874344, + -0.00804357510060072, + 0.01600569486618042, + 0.0031400485895574093, + -0.011582748033106327, + 0.015859078615903854, + -0.025038935244083405, + -0.0187344029545784, + -0.0043985117226839066, + -0.002484344644472003, + 0.03126201406121254, + -0.0069520920515060425, + -0.014914212748408318, + 0.0050379252061247826, + -0.01798502542078495, + 0.0209825299680233, + 0.005872827954590321, + -0.018832147121429443, + 0.02119431085884571, + 0.002671688562259078, + 0.011990017257630825, + -0.002671688562259078, + 0.022839680314064026, + -0.013228116557002068, + 0.010124722495675087, + 0.004520692862570286, + 0.012918592430651188, + 0.003588045248761773, + -0.01662474498152733, + 0.022204339504241943, + -0.002873287070542574, + 0.017968734726309776, + -0.00022476191224996, + -0.017870990559458733, + -0.02135721780359745, + 0.01774066500365734, + 0.014466216787695885, + -0.010320211760699749, + -0.021243182942271233, + -0.0382181815803051, + -0.009603417478501797, + -0.0228559710085392, + -0.009587126784026623, + -0.0012411541538313031, + 0.023214368149638176, + 0.015362209640443325, + 0.020037664100527763, + -0.017463721334934235, + -0.01646183803677559, + -0.006487804930657148, + -0.02947002835571766, + 0.007729977369308472, + 0.00476505421102047, + 0.018766984343528748, + 0.011151041835546494, + 0.019760722294449806, + 0.021536417305469513, + -0.017186777666211128, + -0.021471254527568817, + -0.00550628500059247, + 0.015370354987680912, + 0.012397286482155323, + 0.00024194360594265163, + -0.004378148354589939, + -0.030382312834262848, + -0.017642918974161148, + 0.0010904644150286913, + 0.013602805323898792, + -0.00614977115765214, + -0.007066127844154835, + 0.01038537546992302, + 0.016974996775388718, + -0.013643532060086727, + 0.01993991993367672, + 0.019744431599974632, + -0.016518855467438698, + -0.002069947775453329, + -0.010287630371749401, + 0.0017909681191667914, + -0.002329582115635276, + 0.00855266209691763, + -0.017300812527537346, + 0.004178586415946484, + -0.007196453865617514, + 0.014433635398745537, + 0.020884785801172256, + -0.016844671219587326, + 0.01723564974963665, + 0.016812089830636978, + -0.008222773671150208, + -0.036198124289512634, + 0.008691133931279182, + 0.00439036637544632, + -0.006907292641699314, + -0.010018832050263882, + -0.0039260792545974255, + -0.004288549069315195, + 0.012568339705467224, + -0.008230919018387794, + 0.014091528952121735, + 0.012804556638002396, + -0.01782211847603321, + -0.0066262767650187016, + -0.010670463554561138, + 0.00080639380030334, + 0.0034638280048966408, + 0.01383902132511139, + -0.02459908463060856, + 0.023589055985212326, + 0.01868552900850773, + 0.008015066385269165, + -0.005766937509179115, + 0.00564068416133523, + 0.02127576433122158, + -0.019711848348379135, + -0.006874710787087679, + -0.00373669876717031, + 0.012185506522655487, + 0.005697702057659626, + 0.009008803404867649, + -0.008617824874818325, + 0.01084151677787304, + -0.002455835696309805, + -0.007562996819615364, + 0.015639152377843857, + -0.003111539874225855, + 8.51925324241165e-6, + -0.00029425229877233505, + -0.009521963074803352, + -0.0009331564651802182, + 0.011004424653947353, + 0.002382527105510235, + -0.009807052090764046, + 0.00616198917850852, + -0.017431139945983887, + -0.010686754249036312, + -0.017838409170508385, + -0.015036393888294697, + -0.0029445593245327473, + 0.009269456379115582, + -0.0023886363487690687, + -3.826106876658741e-6, + -0.0023886363487690687, + -0.0011505367001518607, + -0.018099062144756317, + 0.009554545395076275, + -0.007135363761335611, + 0.005384104326367378, + -0.01790357194840908, + 0.00762815959751606, + -0.039488863199949265, + -0.0032663021702319384, + 0.017121614888310432, + -0.009464945644140244, + 0.006137553136795759, + 0.024533921852707863, + 0.005530721507966518, + 0.0023703090846538544, + 0.024582793936133385, + -0.01752888411283493, + -0.015101556666195393, + -0.00636969693005085, + 0.027010120451450348, + -0.00402178755030036, + -0.010963697917759418, + -0.015036393888294697, + 0.00924502033740282, + 0.016144167631864548, + -0.01822938770055771, + -0.008788878098130226, + -0.014515088871121407, + -0.02181336097419262, + -0.018881019204854965, + 0.0035167729947715998, + -0.003716335166245699, + 0.004361857660114765, + -0.010474974289536476, + -0.0021809288300573826, + 0.0026594705414026976, + -0.006056099198758602, + -0.015541408210992813, + 0.013822730630636215, + 0.017642918974161148, + -0.005294505041092634, + -0.01579391583800316, + -0.021699324250221252, + -0.01849004067480564, + 0.032288335263729095, + 0.008919204585254192, + 0.012462450191378593, + 0.006426714360713959, + 0.0002494526270311326, + -0.011892272159457207, + -0.012454304844141006, + -0.0028671780601143837, + -0.01296746451407671, + 0.011843400076031685, + -0.007314562331885099, + -0.001495697651989758, + -0.0026289252564311028, + -0.00865855161100626, + 0.0038303707260638475, + 0.011900418438017368, + -0.010670463554561138, + 0.013456188142299652, + 0.0003846152394544333, + 0.030023915693163872, + 0.0016545327380299568, + -0.0009810107294470072, + -0.012258815579116344, + -0.005958354566246271, + 0.006719948723912239, + -0.0023967816960066557, + 0.00022285284649115056, + -0.00988850649446249, + 0.01098813395947218, + -0.009635998867452145, + 0.004728400148451328, + 0.018424877896904945, + -0.0032581568229943514, + 0.015199301764369011, + 0.009497527033090591, + -0.001067046425305307, + -0.015850933268666267, + -0.02834596484899521, + -0.02376825362443924, + -0.007457106374204159, + -0.0070254006423056126, + 0.006333042401820421, + -0.013407315127551556, + 0.01194929052144289, + -0.011085879057645798, + 0.0007615941576659679, + -0.02111285738646984, + -0.015272610820829868, + 0.00256579858250916, + -0.0011607183841988444, + 0.005188615061342716, + -0.004178586415946484, + 0.025381041690707207, + 0.039032720029354095, + 0.020949948579072952, + -0.005840246099978685, + -0.00300768599845469, + -0.005946136079728603, + 0.008218700997531414, + -0.017333393916487694, + 0.0030911762733012438, + 0.010548283345997334, + -0.008740006014704704, + 0.008165755309164524, + 0.01940232329070568, + 0.00976632535457611, + 0.00034490643884055316, + 0.004740618169307709, + 0.010108431801199913, + -0.008210555650293827, + -0.019255707040429115, + -0.0020852203015238047, + 0.01953265070915222, + -0.008157609961926937, + -0.014466216787695885, + 0.021096566691994667, + 0.00010569918958935887, + -0.007905103266239166, + 0.0012849356280639768, + 0.0028142330702394247, + 0.012462450191378593, + -0.007986556738615036, + -0.009147275239229202, + -0.0006964310305193067, + -0.0007626123260706663, + 0.012633503414690495, + 0.010947407223284245, + -0.025087807327508926, + 0.014604688622057438, + 0.015565844252705574, + 0.01648627407848835, + -0.021324636414647102, + 0.016665471717715263, + -0.01571246236562729, + 0.02036347985267639, + 0.02668430469930172, + 0.01313851773738861, + 0.007913248613476753, + 0.01756146550178528, + -0.006170134525746107, + 0.026537688449025154, + 0.0027429608162492514, + -0.009236874990165234, + -0.009578981436789036, + 0.006491877604275942, + -0.009953669272363186, + -0.015345918945968151, + -0.011265077628195286, + -0.017724374309182167, + -0.002671688562259078, + -0.006618130952119827, + 0.011297659017145634, + -0.0012879901332780719, + -0.017186777666211128, + -0.0030015769880264997, + -0.013374733738601208, + 0.019076509401202202, + 0.002445654012262821, + 0.0011098097311332822, + -0.00622307974845171, + -0.012780120596289635, + 0.003581936238333583, + 0.004638800863176584, + -0.006443005055189133, + 0.0042030224576592445, + 0.011818964034318924, + 0.0007829758105799556, + 0.00984777882695198, + 0.01584278792142868, + -0.004903526045382023, + -0.00608868058770895, + -0.012682375498116016, + 0.009986250661313534, + 0.01255204901099205, + 0.025739438831806183, + 0.003058594884350896, + 0.0002682888589333743, + 0.016412965953350067, + 0.028166765347123146, + -0.002506744349375367, + -0.006145698484033346, + 0.0026879794895648956, + -0.0176103375852108, + 0.00770146818831563, + 0.00402789656072855, + -0.00800284743309021, + 0.009570836089551449, + 6.859947461634874e-5, + -0.0012218088377267122, + -0.007053909823298454, + 0.026700595393776894, + -0.00012879901623819023, + -0.006785111501812935, + -0.02301887795329094, + 0.0010690827621147037, + 0.015305192209780216, + 0.0114279855042696, + -0.019809594377875328, + 0.006328969728201628, + -0.00329888379201293, + -0.005966499913483858, + -0.019825885072350502, + 0.005616248119622469, + -0.018245678395032883, + -0.0011067551095038652, + 0.011713073588907719, + 0.006801402661949396, + -0.0036980081349611282, + -0.008748151361942291, + 0.011525729671120644, + -0.028329674154520035, + 0.0013714804081246257, + 0.01849004067480564, + 0.0039077517576515675, + -0.0013388987863436341, + 0.005453340243548155, + 0.006968383211642504, + 0.0020465299021452665, + -0.002476199297234416, + -0.003394592087715864, + 0.010417956858873367, + -0.005453340243548155, + 0.00039988785283640027, + -0.003156339516863227, + -0.0022990370634943247, + 0.012747539207339287, + -0.000890393159352243, + -0.005608102306723595, + 0.003632844891399145, + -0.016388529911637306, + 0.0012839174596592784, + -0.005237487144768238, + -0.0035188093315809965, + -0.008878477849066257, + -0.01844116859138012, + -0.010849662125110626, + 0.013382879085838795, + 0.007155727129429579, + 0.0044025843963027, + -0.01603013277053833, + -0.003127830568701029, + -0.017251940444111824, + -0.014555815607309341, + 0.005323013756424189, + 0.02090107649564743, + -0.007958048023283482, + -0.003490300616249442, + -0.0036674628499895334, + 0.0012849356280639768, + -0.002411036053672433, + 0.010222467593848705, + 0.013399169780313969, + 0.011493148282170296, + 0.022709352895617485, + 0.013871602714061737, + 0.0017146050231531262, + 0.0022175831254571676, + 0.02376825362443924, + 0.006573331542313099, + 0.013040772639214993, + 0.007905103266239166, + 0.005298577714711428, + -0.00519268773496151, + 0.008263500407338142, + -0.015329628251492977, + 0.016469983384013176, + 0.0002789796853903681, + 0.016445547342300415, + 0.009025094099342823, + -0.016600308939814568, + 0.008764442056417465, + 0.006145698484033346, + -0.013505060225725174, + -0.005111233796924353, + 0.005461485590785742, + 0.00278368778526783, + 0.0036369175650179386, + -0.005469630938023329, + 0.02556024119257927, + 0.0057913740165531635, + 0.0029343776404857635, + -0.01023875828832388, + 0.0027246337849646807, + -0.0007997757056728005, + 0.010531991720199585, + -0.025820894166827202, + -0.00015705334953963757, + -0.004443311598151922, + 0.0024884173180907965, + -0.007615941576659679, + -0.02826451137661934, + 0.0007656668894924223, + -0.012226233258843422, + 0.008104665204882622, + 0.013309570960700512, + 0.018881019204854965, + 0.005832100752741098, + 0.010955552570521832, + -0.011794527992606163, + -0.02272564359009266, + -0.027124155312776566, + -0.0053393044508993626, + -0.023947453126311302, + 0.0017034051707014441, + 0.0019233307102695107, + -0.0074937609024345875, + -0.006312679033726454, + 0.012185506522655487, + 0.0020974385552108288, + 0.027254482731223106, + -0.00446367496624589, + -0.03479711711406708, + -0.0067403120920062065, + 0.0006791220512241125, + -0.00961970817297697, + -0.008902913890779018, + 0.011273222975432873, + -0.00014458071382250637, + -0.0036593175027519464, + -0.01953265070915222, + -0.012723102234303951, + 0.02256273664534092, + -0.015753189101815224, + -0.01450694352388382, + -0.004646946210414171, + 0.004520692862570286, + 0.004520692862570286, + -0.001674896222539246, + 0.03684975579380989, + 0.00045410561142489314, + 0.01857149414718151, + -0.0007636304944753647, + -0.014311454258859158, + -0.004484038334339857, + 0.010083995759487152, + -0.02114543877542019, + -0.007562996819615364, + 0.02759658917784691, + 0.002030238974839449, + -0.002215546788647771, + 0.003706153482198715, + -0.00719238119199872, + -0.01910909079015255, + 0.015484390780329704, + -0.008487498387694359, + 0.0027877604588866234, + -0.005233414471149445, + 0.0015109702944755554, + 0.022627899423241615, + 0.004891308024525642, + -0.00652445899322629, + -0.0014346071984618902, + -0.013553932309150696, + -0.00150689750444144, + 0.014539524912834167, + 0.005917627364397049, + 0.021096566691994667, + 0.0014529343461617827, + -0.003993278369307518, + -0.02556024119257927, + 0.004304839763790369, + -0.008438626304268837, + 0.007615941576659679, + -0.009961814619600773, + -0.00300768599845469, + 0.004879090003669262, + -0.011810818687081337, + 0.011379112489521503, + -0.01453137956559658, + 0.03496002405881882, + -0.02114543877542019, + 0.003190957475453615, + 8.119938138406724e-5, + 0.026993829756975174, + -0.0028773597441613674, + -0.019500069320201874, + 0.013505060225725174, + 0.015272610820829868, + 0.0043007670901715755, + -0.005779155995696783, + -0.023377275094389915, + 0.013154808431863785, + 0.012918592430651188, + -0.0028529237024486065, + -0.005237487144768238, + -0.0003904697368852794, + -0.009399782866239548, + -0.00366949918679893, + -0.00944865494966507, + -0.026700595393776894, + 0.01769179105758667, + 0.002573943929746747, + -0.005184541922062635, + -0.00010213557834504172, + -0.04362672194838524, + -0.0036022996064275503, + -0.009350909851491451, + 0.012462450191378593, + 0.006121262442320585, + 0.009212438948452473, + 0.004029932897537947, + -0.006467441562563181, + -0.0012004271848127246, + 0.001907039899379015, + 0.010996279306709766, + 0.06829097121953964, + 0.028916142880916595, + 0.026081545278429985, + 0.0014407162088900805, + 0.0011749728582799435, + -0.03502518683671951, + -0.0035554636269807816, + -0.02111285738646984, + -0.023084040731191635, + -0.019174253568053246, + 0.014181127771735191, + 0.006915437988936901, + 0.0017268231604248285, + 0.00947309099137783, + -0.0007234126678667963, + 0.004280403722077608, + -0.009627853520214558, + -0.012364705093204975, + -0.010515701025724411, + 0.014368471689522266, + -0.0036939354613423347, + 0.017121614888310432, + -3.410883073229343e-5, + -0.011607184074819088, + 0.01940232329070568, + 0.003262229496613145, + -0.0015975150745362043, + -0.024240687489509583, + 0.003274447750300169, + -0.002476199297234416, + 0.011957435868680477, + -0.02160158008337021, + -0.03385224938392639, + 0.00462251016870141, + -0.00034745188895612955, + 0.020005082711577415, + -0.006320824380964041, + 0.010206175968050957, + -0.004484038334339857, + -0.020330898463726044, + -0.024028906598687172, + -0.007852158509194851, + 0.00042483312427066267, + -0.012218087911605835, + -0.007611868903040886, + 0.0002741433563642204, + 0.012356559745967388, + 0.01667361706495285, + -0.007640378084033728, + 0.003618590533733368, + -0.011061443015933037, + 0.010947407223284245, + -0.022758224979043007, + 0.00447589298710227, + 0.002284782472997904, + 0.016021985560655594, + 0.008536371402442455, + -0.010800790041685104, + -0.00139489839784801, + -0.007241253741085529, + -0.01401007454842329, + -0.007229035720229149, + 0.002394745359197259, + 0.01985846646130085, + -0.003691899124532938, + 0.01203074399381876, + 0.00800284743309021, + 0.007729977369308472, + -0.001708496012724936, + -0.0013938802294433117, + 0.020005082711577415, + -0.013089645653963089, + -0.011818964034318924, + -0.01180267333984375, + -0.005139742512255907, + -0.027612879872322083, + -0.020917367190122604, + -0.020949948579072952, + -0.019956210628151894, + 0.021715614944696426, + 0.008829604834318161, + -0.0016199148958548903, + -0.003761134808883071, + -0.013122227042913437, + -0.009521963074803352, + -0.0028529237024486065, + -0.006467441562563181, + -0.0010247922036796808, + 0.00409509614109993, + 0.00461029214784503, + -0.013537641614675522, + -0.013619096018373966, + -0.005538866855204105, + 0.004887235350906849, + 0.008088374510407448, + -0.01592424139380455, + 0.0034679006785154343, + -0.005111233796924353, + -0.007717758882790804, + 0.01229954231530428, + 0.010670463554561138, + 0.013325861655175686, + -0.003805934451520443, + 0.0035228822380304337, + -0.008381608873605728, + -0.03838108852505684, + 0.0003013795067090541, + 0.00025199807714670897, + 0.0023153277579694986, + 0.016502564772963524, + -0.02007024548947811, + 0.020721876993775368, + -0.0011169369099661708, + 0.007876594550907612, + 0.012038889341056347, + 0.022676771506667137, + 0.0038222253788262606, + 0.009904797188937664, + 0.002311255084350705, + 0.00922058429569006, + -0.006569258868694305, + 0.0020343116484582424, + 0.03551391139626503, + 0.02443617582321167, + 0.002718524541705847, + 0.004353712312877178, + 0.013619096018373966, + 0.028965014964342117, + -0.004345566965639591, + 0.0018520585726946592, + 0.007664814125746489, + -0.009456800296902657, + 0.006394132971763611, + 0.013676113449037075, + -0.006585549563169479, + -0.002683906815946102, + 0.014221854507923126, + -8.391981282329652e-6, + 0.011476857587695122, + 0.00012453540693968534, + -0.020591551437973976, + 0.04154150187969208, + 0.03155525028705597, + -0.00021979831217322499, + -0.01589980535209179, + -0.0025026716757565737, + -0.04359414055943489, + 3.4490643884055316e-5, + 0.007668886799365282, + -0.007436743006110191, + -0.01710532419383526, + -0.008821459487080574, + -0.006972455885261297, + 0.010898535139858723, + -0.00961970817297697, + 0.016184894368052483, + -0.015573989599943161, + 0.026000091806054115, + -0.010181739926338196, + 0.0037468804512172937, + -0.01777324639260769, + 0.004830217454582453, + 0.004292621742933989, + 0.021911105141043663, + 0.003355901688337326, + -0.01023875828832388, + 0.0004976325435563922, + 0.013293280266225338, + -0.01215292513370514, + -0.004651018884032965, + -0.028541455045342445, + 0.0042356038466095924, + 0.0007575214840471745, + 0.007127217948436737, + 0.005359668284654617, + 0.004793563392013311, + -0.0066262767650187016, + -0.00031767028849571943, + -0.019630394876003265, + -0.01654329150915146, + 0.020005082711577415, + 0.017007578164339066, + 0.009684870950877666, + -0.003624699544161558, + -0.013439897447824478, + -0.002239982830360532, + -0.004679527599364519, + 0.010882243514060974, + 0.009929233230650425, + -0.0013012264389544725, + 0.02459908463060856, + 0.015696171671152115, + -0.0031156125478446484, + -0.0030769219156354666, + -0.014816468581557274, + 0.017805827781558037, + 0.008650406263768673, + 0.001027846708893776, + -0.03188106417655945, + -0.0002559435088187456, + 0.0058076647110283375, + -0.00023990725458133966, + -0.009807052090764046, + 0.003262229496613145 + ], + "e89492ef-ec34-4846-bccb-77d98bebdea6": [ + -0.014037273824214935, + -0.035837020725011826, + -0.007583784870803356, + 0.001878285314887762, + -0.019796794280409813, + -0.012699203565716743, + 0.034075088798999786, + 0.04245257377624512, + -0.0006399467820301652, + 0.041887424886226654, + 0.0026241973973810673, + 0.010180971585214138, + 0.007002015132457018, + -0.01770242303609848, + 0.0068108621053397655, + 0.0210434440523386, + -0.020245589315891266, + 0.018550144508481026, + -0.0012009390629827976, + -0.04245257377624512, + 0.06120218336582184, + -0.011818237602710724, + -0.018832718953490257, + 0.03972656652331352, + 0.007272122427821159, + -0.004978287033736706, + 0.014004030264914036, + 0.014643976464867592, + -0.039892785251140594, + -0.028340499848127365, + 0.00468740239739418, + 0.026827897876501083, + 0.021708324551582336, + -0.0062332479283213615, + 0.010970516130328178, + -0.03646865487098694, + 0.01155228540301323, + 0.016779903322458267, + -0.011834859848022461, + -0.007787404116243124, + -0.020445052534341812, + 0.029204843565821648, + 0.024899747222661972, + 0.0021712479647248983, + -0.045577507466077805, + -0.018550144508481026, + -0.007010325789451599, + 0.0019302290165796876, + 0.0009864114690572023, + -0.019181780517101288, + 0.012050945311784744, + 0.009250139817595482, + 0.0025784869212657213, + 0.00704772537574172, + 0.015857381746172905, + -0.03257910907268524, + 0.025248808786273003, + 0.06721934676170349, + 0.0016299942508339882, + -0.06236572191119194, + 0.010771051980555058, + 0.0009521286119706929, + 0.021941032260656357, + -0.0059548295103013515, + -0.001518834731541574, + -0.02790832705795765, + -0.025016101077198982, + -0.014020651578903198, + -0.03809760883450508, + 0.007621184457093477, + 0.00896756537258625, + 0.023719584569334984, + -0.02556462585926056, + 0.013322528451681137, + -0.031864363700151443, + 0.028922269120812416, + 0.04541128873825073, + 0.009092230349779129, + 0.01828419417142868, + -0.0015354567440226674, + -0.031748007982969284, + 0.000845643924549222, + 0.014577488414943218, + 0.009657378308475018, + 0.05112925171852112, + 0.024301355704665184, + -0.033376965671777725, + -0.05215981602668762, + -0.011535664089024067, + -0.015333789400756359, + 0.00271977367810905, + 0.04228635132312775, + -0.010072927922010422, + 0.0070726582780480385, + -0.0223399605602026, + 0.02150885947048664, + 0.03839680552482605, + -0.0072181010618805885, + -0.010679631493985653, + -0.0284236092120409, + -0.003978889901190996, + 0.004305096343159676, + -0.04630887508392334, + 0.005913274362683296, + 0.007430031429976225, + 0.005850941874086857, + 0.015923870727419853, + -0.006694508250802755, + -0.025946931913495064, + 0.06027134880423546, + -0.010496789589524269, + -0.018018241971731186, + 0.029154976829886436, + -0.010646387003362179, + -0.04913461580872536, + -0.041987158358097076, + -0.02345363423228264, + -0.019913148134946823, + -0.016863012686371803, + -0.02185792289674282, + 0.056481536477804184, + 0.005294105038046837, + 0.01421180460602045, + 0.003548795823007822, + 0.015026282519102097, + 0.022522801533341408, + 0.012300275266170502, + 0.004172120708972216, + 0.006744374055415392, + 0.02621288411319256, + 0.0040308334864676, + -0.05362255126237869, + 0.003710860153660178, + -0.0035446402616798878, + 0.0018346526194363832, + 0.033742647618055344, + -0.011452553793787956, + 0.06402792036533356, + -0.006013006437569857, + 0.04251905903220177, + -0.04022522643208504, + -0.0332772321999073, + -0.015591430477797985, + 0.006694508250802755, + 0.016854701563715935, + 0.015458454377949238, + -0.04720646142959595, + 0.054719604551792145, + -0.024899747222661972, + 0.03527187183499336, + -0.040358200669288635, + -0.0034823077730834484, + 0.02508258819580078, + 0.019780172035098076, + -0.0056182341650128365, + -0.013937542214989662, + 0.0055309683084487915, + 0.014909928664565086, + -0.004039144609123468, + 0.031099751591682434, + 0.016247998923063278, + -0.07672712206840515, + -0.0068815057165920734, + -0.021525481715798378, + 0.02297159656882286, + 0.006295580416917801, + 0.03723326697945595, + 0.02519894205033779, + -0.03281181678175926, + 0.021126553416252136, + 0.0032495998311787844, + -0.005265016574412584, + 0.002865216229110956, + 0.019364623352885246, + -0.023536743596196175, + -0.0067942398600280285, + 0.04783809930086136, + 0.059772688895463943, + 0.0072014788165688515, + -0.030916908755898476, + -0.017253629863262177, + 0.0038043588865548372, + 0.0037399486172944307, + -0.014826818369328976, + -0.018949072808027267, + 0.032329779118299484, + 0.026096530258655548, + -0.012674270197749138, + -0.012524672783911228, + -0.012416629120707512, + -0.0011625007027760148, + -0.024484196677803993, + -0.009117163717746735, + 0.04800431802868843, + -0.02777535282075405, + -0.02649545855820179, + -0.0016819380689412355, + 0.014353091828525066, + 0.030052565038204193, + 0.0021961808670312166, + -0.0164142195135355, + -0.04797107353806496, + -0.0543871633708477, + 0.058476176112890244, + -0.0407903715968132, + 0.04707348719239235, + -0.004107710439711809, + 0.01898231729865074, + 0.03646865487098694, + -0.011901347897946835, + 0.002561864908784628, + -0.055185019969940186, + -0.0068108621053397655, + 0.00666957488283515, + -0.01520912442356348, + 0.002098526805639267, + -0.012167299166321754, + 0.024750148877501488, + 0.007837270386517048, + -0.01911529339849949, + -0.01898231729865074, + 0.014120384119451046, + -0.0009136902517639101, + -0.04172120615839958, + -0.04278501123189926, + -0.01828419417142868, + -0.0047829789109528065, + 0.04162147268652916, + -0.032379645854234695, + 0.029986077919602394, + 0.05006544664502144, + -0.0050821746699512005, + -0.008223731070756912, + -0.01811797358095646, + -0.004350807052105665, + 0.006727752275764942, + 0.025065967813134193, + 0.032097071409225464, + 0.019730307161808014, + -0.03809760883450508, + 0.03259573131799698, + 0.015192502178251743, + -0.013413948938250542, + -0.005032308865338564, + 0.013904297724366188, + 0.021010199561715126, + -0.032678838819265366, + 0.04730619490146637, + 0.04763863608241081, + -0.010904028080403805, + 0.017369983717799187, + 0.024600550532341003, + 0.005277483258396387, + 0.006316357757896185, + -0.019547464326024055, + 0.03680109605193138, + 0.04647509381175041, + -0.03670136258006096, + -0.004562737420201302, + -0.03922790661454201, + 0.01075442973524332, + -0.010480167344212532, + 0.017735667526721954, + -0.021675080060958862, + 0.02632923796772957, + -0.024135135114192963, + 0.04494587332010269, + -0.03095015324652195, + -0.013646656647324562, + 0.03570404276251793, + 0.00028491136617958546, + 0.02760913223028183, + -0.011593841016292572, + -0.011236468330025673, + 0.013555236160755157, + -0.004837000276893377, + -0.011361133307218552, + -0.013347460888326168, + 0.019148537889122963, + 0.0006004695314913988, + 0.009341560304164886, + -0.0018273805035278201, + 0.0012975543504580855, + -0.00470402417704463, + 0.012050945311784744, + -0.011086869984865189, + -0.02867293916642666, + -0.009657378308475018, + -0.0532236248254776, + -0.01740322820842266, + -0.024750148877501488, + 0.001071079750545323, + 0.008784723468124866, + 0.030152296647429466, + -0.005514346528798342, + 0.020262211561203003, + 0.008286063559353352, + 0.005277483258396387, + -0.00023205862089525908, + 0.021193042397499084, + -0.00858526024967432, + 0.0013297594850882888, + -0.002539009554311633, + -0.013364083133637905, + 0.007907913997769356, + -0.003280766075477004, + 0.01758606918156147, + -0.02561449259519577, + -0.02509921044111252, + 0.01500966027379036, + 0.0458434596657753, + -0.011244778521358967, + -0.01172681711614132, + -0.03454050421714783, + 0.009042364545166492, + -0.008768102154135704, + -0.0066238646395504475, + -0.002852749777957797, + -0.02960377186536789, + -0.04943380877375603, + 0.01063807588070631, + 0.011037004180252552, + -0.08304347842931747, + 0.04132227599620819, + 0.059639714658260345, + -0.03876249119639397, + 0.02626275084912777, + -8.927828457672149e-5, + -0.01770242303609848, + -0.02937106415629387, + -0.002052816329523921, + -0.02642896957695484, + -0.03213031589984894, + 0.004172120708972216, + -0.002782106166705489, + -0.05116249620914459, + -0.03389224410057068, + -0.04797107353806496, + -0.007313677575439215, + -0.018134595826268196, + -0.01775228977203369, + -0.010579898953437805, + 0.0136632788926363, + -0.0059756068512797356, + 0.020295454189181328, + 0.0136300353333354, + 0.028639696538448334, + 0.012624404393136501, + -0.03946061432361603, + 0.008419039659202099, + 0.0010232914937660098, + 0.00074175646295771, + 0.0396268330514431, + -0.020029501989483833, + 0.03700055927038193, + 0.013413948938250542, + -0.018134595826268196, + -0.0008269441896118224, + 0.029587149620056152, + -0.03389224410057068, + 0.0020850214641541243, + -0.03427455201745033, + -0.024833258241415024, + 0.0009661533986218274, + 0.006756840739399195, + -0.01099544856697321, + -0.004140954464673996, + -0.02443433180451393, + 0.025115832686424255, + 0.026179639622569084, + -0.035870261490345, + 0.012998399324715137, + 0.015865692868828773, + -0.013555236160755157, + -0.03440752625465393, + -0.05152818188071251, + 0.027742108330130577, + 0.0026948407758027315, + -0.013505370356142521, + 0.031847741454839706, + 0.01450269017368555, + 0.012582849711179733, + 0.011743438430130482, + 0.00553927943110466, + 0.026229506358504295, + 0.024700282141566277, + -0.012449873611330986, + -0.006062872242182493, + 0.008485527709126472, + -0.014436202123761177, + -0.022522801533341408, + 0.02644559182226658, + -0.02380269579589367, + 0.009150407277047634, + -0.0203951857984066, + 0.008464750833809376, + -0.005053086206316948, + 0.004157576244324446, + 0.011103492230176926, + -0.03246275335550308, + 0.0038563027046620846, + 2.8000917154713534e-5, + -0.011851482093334198, + 0.026645056903362274, + 0.0005708616226911545, + -0.01397909689694643, + 0.0039685009978711605, + -0.02707722783088684, + 0.0185833889991045, + -0.004637536127120256, + 0.010180971585214138, + 0.01886596344411373, + 0.005481102503836155, + 0.03646865487098694, + 0.06126866862177849, + -0.007982712239027023, + 0.02004612423479557, + 0.04537804424762726, + -0.03257910907268524, + -0.019946392625570297, + 0.011278023011982441, + 0.06170084327459335, + 0.00894263293594122, + 0.0064908885397017, + -0.014020651578903198, + 0.029204843565821648, + -0.007288744207471609, + 0.008489683270454407, + -0.02865631692111492, + -0.031232725828886032, + 0.008136466145515442, + 0.034606993198394775, + 0.0005254108691588044, + -0.00180244748480618, + -0.0030189696699380875, + -0.017968375235795975, + -0.0017806311370804906, + -0.022356582805514336, + -0.008859522640705109, + -0.0035882729571312666, + -0.016555506736040115, + 0.01953084208071232, + -0.027110472321510315, + 0.019963014870882034, + -0.02508258819580078, + -0.04308420792222023, + -0.047738365828990936, + 0.021891165524721146, + 0.006370379123836756, + -0.01119491271674633, + -0.0018772464245557785, + 0.03733299672603607, + -0.05674748867750168, + 0.02714371681213379, + -0.027625754475593567, + -0.02976999059319496, + -0.019264891743659973, + -0.006860727909952402, + 0.02466703951358795, + -0.03809760883450508, + -0.03188098594546318, + -0.0017099876422435045, + 0.03806436434388161, + 0.008884456008672714, + 0.0313989482820034, + -0.03316087648272514, + -0.004325874149799347, + 0.02707722783088684, + 0.009067297913134098, + -0.0017588147893548012, + 0.00032724550692364573, + -0.012624404393136501, + -0.039593588560819626, + 0.004359117709100246, + 0.011967835947871208, + -0.00893432181328535, + -0.01072949729859829, + 0.0040308334864676, + 0.027243448421359062, + -0.04477965086698532, + -0.033094391226768494, + -0.02445095404982567, + -0.0035799620673060417, + 0.005094641353935003, + 0.00964075606316328, + 0.008909388445317745, + -0.015026282519102097, + -0.030318517237901688, + 0.016422530636191368, + 0.004255230538547039, + 0.04318394139409065, + 0.005032308865338564, + -0.0027405512519180775, + -0.009590890258550644, + -0.013164618983864784, + -0.04823702573776245, + -0.014909928664565086, + -0.021359262987971306, + -0.01911529339849949, + -0.038363561034202576, + 0.02691100910305977, + -0.01099544856697321, + -0.02373620681464672, + -0.008709925226867199, + 0.0034573746379464865, + 0.026046665385365486, + -0.0034843855537474155, + 0.0032599885016679764, + -0.0010700408602133393, + 0.0020517774391919374, + -0.018683120608329773, + -0.001756737008690834, + -0.007633650675415993, + 0.004271852318197489, + 0.007317832671105862, + 0.03673460707068443, + -0.009840220212936401, + -0.008427350781857967, + 0.04391530901193619, + -0.013613413088023663, + -0.014245049096643925, + -0.012350141070783138, + -0.0010991293238475919, + 0.004940887913107872, + -0.030551224946975708, + 0.008859522640705109, + -0.0018928295467048883, + 0.007118368986994028, + 0.030933531001210213, + -0.004234453197568655, + -0.015466765500605106, + 0.011693572625517845, + -0.01594049297273159, + 0.03276195004582405, + 0.017984997481107712, + -0.019264891743659973, + -0.016031913459300995, + 0.03553782403469086, + 0.011967835947871208, + 0.011377754621207714, + -0.03995927423238754, + 0.01653888449072838, + -0.017153898254036903, + -0.01307319849729538, + -0.01939786784350872, + 0.04019198194146156, + -0.02303808368742466, + 0.018533524125814438, + -0.0028943046927452087, + 0.02064451575279236, + -0.031332459300756454, + 0.024417709559202194, + -0.011061936616897583, + -0.0047829789109528065, + 0.013596790842711926, + -0.025049345567822456, + 0.014909928664565086, + -0.018018241971731186, + -0.03530511632561684, + -0.018566766753792763, + -0.032495997846126556, + 0.038596268743276596, + 0.01652226224541664, + 0.0006840989226475358, + -0.019314756616950035, + 0.01278231292963028, + 0.002058010548353195, + 0.024750148877501488, + -0.016688482835888863, + 0.016688482835888863, + 0.025481516495347023, + 0.00317895645275712, + 0.030850421637296677, + -0.0036880047991871834, + -0.01509277056902647, + 0.04019198194146156, + -0.0210434440523386, + 0.004413139540702105, + -0.026279373094439507, + -0.016422530636191368, + 0.031149616464972496, + -0.027409667149186134, + -0.0006035861442796886, + -0.0055475905537605286, + -0.0017505037831142545, + 0.03527187183499336, + -0.017320116981863976, + -0.030102431774139404, + 0.0003233497263863683, + 0.005909118801355362, + 0.022074008360505104, + 0.01705416664481163, + 0.014826818369328976, + 0.01934800110757351, + -0.0335431843996048, + 0.013571858406066895, + 0.0043965172953903675, + 0.02398553676903248, + 0.011410999111831188, + 0.017486337572336197, + 0.02514907717704773, + 0.02345363423228264, + -0.015167569741606712, + 0.014785263687372208, + -0.00981528777629137, + 0.028573207557201385, + 0.018915828317403793, + 0.00488271052017808, + -0.0068815057165920734, + 0.02642896957695484, + -0.007384320721030235, + -0.01635604165494442, + 0.04564399644732475, + 0.007937001995742321, + 0.012923600152134895, + 0.013147997669875622, + 0.025897067040205002, + 0.0297201257199049, + -0.0069604599848389626, + -0.002854827558621764, + 0.02802468091249466, + -0.04118930175900459, + 0.05332335829734802, + 0.006112738512456417, + 0.005867563653737307, + 0.003282843856140971, + -0.03487294167280197, + -0.011477487161755562, + -0.018915828317403793, + -0.013089819811284542, + -0.005747054237872362, + 0.002489143516868353, + 0.024168379604816437, + -0.03266221657395363, + 0.035670798271894455, + 0.021143175661563873, + 0.00496582081541419, + -0.011419310234487057, + -0.009200274012982845, + 0.005456169601529837, + -0.003091690829023719, + -0.002580564469099045, + 0.002482910407707095, + 0.01751958206295967, + -0.010164349339902401, + 0.013131375424563885, + -0.013954163528978825, + 0.00847306102514267, + 0.04009224846959114, + -0.002514076652005315, + -0.01928151212632656, + 0.00614182697609067, + 0.019663818180561066, + 0.019181780517101288, + 0.0037503372877836227, + -0.02332065813243389, + 0.03417481854557991, + -0.006387001369148493, + -0.0014585800236091018, + -0.004483782686293125, + 0.019414488226175308, + -0.03083379939198494, + 0.02902200073003769, + 0.011269711889326572, + 0.02825739048421383, + 0.01274906937032938, + 0.010912339203059673, + -0.01004799548536539, + 0.03389224410057068, + 0.031797874718904495, + -0.0020403496455401182, + 0.012857112102210522, + 0.030385004356503487, + 0.00019400983001105487, + -0.0026512080803513527, + -0.020611273124814034, + 0.0016009057871997356, + -0.010795985348522663, + 0.002399800345301628, + 0.008248664438724518, + -0.018766231834888458, + -0.01986328326165676, + -0.018300814554095268, + 0.01692950166761875, + 0.01763593591749668, + -0.014477756805717945, + -0.010189282707870007, + 0.019497599452733994, + -0.00039321405347436666, + -0.02830725535750389, + 0.00038698079879395664, + 0.006116893608123064, + -0.0064908885397017, + 0.002825738862156868, + 0.006632175762206316, + 0.027226826176047325, + -0.007741693872958422, + -0.0075172968208789825, + 0.031980715692043304, + -0.012009390629827976, + -0.05009869113564491, + -0.027293313294649124, + -0.00032672606175765395, + -0.02122628688812256, + 0.014153627678751945, + 0.015849070623517036, + -0.02749277837574482, + -0.02027883194386959, + 0.014319848269224167, + 0.0015884393360465765, + 0.010696252807974815, + 0.017669180408120155, + -0.02069438248872757, + 0.028174279257655144, + 0.026063285768032074, + 0.013796254992485046, + -0.0020839825738221407, + 0.003945645876228809, + 0.002858982887119055, + 0.044214505702257156, + -0.020411808043718338, + 0.01198445726186037, + 0.0010939349886029959, + -0.04098983854055405, + -0.026628434658050537, + 0.013912608847022057, + 0.008917699567973614, + -0.009956574067473412, + -0.002478754846379161, + -0.00015751936007291079, + 0.039660077542066574, + 0.002482910407707095, + -0.012566227465867996, + 0.011951213702559471, + -0.0002485507575329393, + -0.01682145707309246, + -0.007953624241054058, + 0.02011261321604252, + 0.016106711700558662, + -0.01646408438682556, + 0.003432441735640168, + -0.023287413641810417, + 0.010097861289978027, + 0.0009510897216387093, + 0.01116166915744543, + -0.0036007394082844257, + 0.0242182444781065, + 0.016106711700558662, + -0.008419039659202099, + -0.015491697937250137, + 0.02426811121404171, + -0.02568098157644272, + 0.04364935681223869, + 0.0035550289321690798, + -0.021658457815647125, + 0.018732987344264984, + 0.013912608847022057, + 0.0028423608746379614, + -0.0272600706666708, + 0.018566766753792763, + -0.01005630660802126, + 0.018716365098953247, + 0.010264080949127674, + 0.0018263416131958365, + -0.004899332765489817, + -0.0026449747383594513, + 0.01658874936401844, + 0.02062789537012577, + 0.04245257377624512, + -0.0070311035960912704, + 0.031847741454839706, + 0.023636475205421448, + 0.04009224846959114, + 0.011618773452937603, + -0.021242909133434296, + -0.001141723245382309, + 0.026944251731038094, + -0.01571609452366829, + -0.04241932928562164, + -0.0055268132127821445, + -0.021608592942357063, + -0.057478856295347214, + 0.02450081892311573, + -0.03773192688822746, + 0.024716904386878014, + -0.01635604165494442, + 0.05239252373576164, + -0.03437428176403046, + 0.001171850599348545, + 0.005456169601529837, + -0.020727626979351044, + 0.0057886093854904175, + 0.005294105038046837, + 0.024118512868881226, + 0.011153358034789562, + -0.032446131110191345, + 0.011818237602710724, + -0.014710464514791965, + -0.024251488968729973, + 0.025115832686424255, + 0.017070787027478218, + -0.03143218904733658, + 0.05265847593545914, + 0.0582767091691494, + -0.019680440425872803, + -0.008306841365993023, + 0.001615450019016862, + 0.01775228977203369, + 0.00237486744299531, + -0.007301210891455412, + -0.004791289567947388, + -0.008331774733960629, + -0.0028215835336595774, + 0.013679901137948036, + -0.01999625936150551, + 0.005776142701506615, + -0.011851482093334198, + 0.019780172035098076, + 0.02696087397634983, + -0.0009438176057301462, + -0.0035446402616798878, + 0.009449603967368603, + 0.006062872242182493, + -0.016164889559149742, + 0.005688877310603857, + -0.015624674037098885, + 0.0023624009918421507, + 0.003825136460363865, + 0.004018367268145084, + 0.007833114825189114, + -0.005348126403987408, + -0.006964615546166897, + 0.0011126346653327346, + 0.04318394139409065, + 0.011020381934940815, + 0.039294395595788956, + -0.03872924670577049, + -0.004720646422356367, + -0.04045793414115906, + 0.025248808786273003, + -0.001384819857776165, + -0.05714641511440277, + -0.030916908755898476, + -0.019879905506968498, + -0.007134990766644478, + -0.010704563930630684, + 0.01664692722260952, + 0.010214215144515038, + 0.010164349339902401, + 0.029869724065065384, + 0.037598948925733566, + -0.02484988048672676, + -0.010538344271481037, + 0.003995511680841446, + -0.01653888449072838, + 0.015234057791531086, + -0.016563817858695984, + 0.014926550909876823, + 0.002443433040753007, + 0.00609611626714468, + 0.01210912223905325, + 0.01545014325529337, + -0.04215337708592415, + -0.016031913459300995, + 0.007176545914262533, + -0.026179639622569084, + -0.03365953639149666, + 0.02556462585926056, + 0.00027711980510503054, + 0.0020517774391919374, + 0.010131105780601501, + -0.003798125544562936, + -0.01717052049934864, + 0.014245049096643925, + -0.01004799548536539, + -0.008290219120681286, + -0.025232186540961266, + -0.00340750883333385, + -0.03756570816040039, + 0.006204159464687109, + -0.0026927629951387644, + 0.00993164163082838, + 0.001635188702493906, + 0.013015021570026875, + -0.02227347157895565, + -0.009441292844712734, + 0.013197863474488258, + 0.005884185899049044, + 0.005751209799200296, + -0.0030189696699380875, + 0.008111532777547836, + 0.015790894627571106, + -0.007085124962031841, + -0.021076688542962074, + -0.00949115864932537, + -0.014353091828525066, + -0.0015146791702136397, + -0.01717052049934864, + -0.004666624590754509, + 0.006877350155264139, + -0.0018014085944741964, + -0.04587670415639877, + -0.020411808043718338, + 0.0012528827646747231, + 0.01869974285364151, + -0.0468740239739418, + 0.008069978095591068, + 0.0019281513523310423, + -0.0014679298037663102, + 0.027991438284516335, + 0.008992498740553856, + 0.03593675047159195, + -0.010762740857899189, + -0.011593841016292572, + 0.03793139010667801, + 0.03779841586947441, + 0.01675496995449066, + 0.011593841016292572, + 0.0009916058043017983, + -0.022406447678804398, + 0.022905107587575912, + 0.01266595907509327, + 0.02533191815018654, + 0.012026012875139713, + 0.0060670278035104275, + -0.007928690873086452, + -0.004787134472280741, + -0.018899207934737206, + 0.007346921134740114, + 0.0266118124127388, + 0.02011261321604252, + 0.010554966516792774, + 0.04072388634085655, + -0.007064347621053457, + 0.03257910907268524, + 0.008676680736243725, + 0.0023811005521565676, + -0.00893432181328535, + -0.025764090940356255, + -0.020129235461354256, + -0.01670510321855545, + 0.005003220401704311, + 0.016871323809027672, + -0.01227534282952547, + 0.0018637410830706358, + 0.004924265667796135, + -0.0074965194799005985, + 0.009624134749174118, + -0.01284049078822136, + -0.017619313672184944, + 0.01946435496211052, + -0.00597976241260767, + -0.0009084958583116531, + 0.011361133307218552, + 0.01699598878622055, + 0.016663549467921257, + -0.010721186175942421, + -0.010006440803408623, + 0.012150677852332592, + -0.0010741963051259518, + 0.02187454327940941, + 0.024301355704665184, + -0.012807246297597885, + 0.005904963240027428, + -0.03823058679699898, + 0.003501007566228509, + -0.039826296269893646, + -0.0022543580271303654, + 0.001035757944919169, + 0.007467431016266346, + -0.006582309491932392, + -0.002640819177031517, + -0.0192316472530365, + 0.001288204570300877, + -0.012333519756793976, + -0.03440752625465393, + -0.01321448478847742, + -0.015383655205368996, + -0.030085809528827667, + 0.01210912223905325, + 0.014261670410633087, + 0.000668515800498426, + -0.013039954006671906, + -0.02222360670566559, + -0.01700429990887642, + -0.0067942398600280285, + 0.012300275266170502, + 0.031083129346370697, + -0.03919466212391853, + 0.010912339203059673, + 0.005452014040201902, + -0.034141574054956436, + -0.03749921917915344, + 0.006154293194413185, + 0.0026927629951387644, + 0.008743168786168098, + -0.0360032394528389, + -0.012524672783911228, + -0.004500404931604862, + -0.04810405150055885, + 0.018899207934737206, + 0.005206839647144079, + -0.014776952564716339, + 0.05857590585947037, + 0.03219680115580559, + 0.005136196035891771, + 0.0049699763767421246, + -0.03129921481013298, + 0.0004971015150658786, + 0.028390366584062576, + 0.0011884726118296385, + -0.04640860855579376, + -0.0020237278658896685, + -0.030318517237901688, + 0.005576679017394781, + 0.013829498551785946, + -0.006445178296416998, + -0.03229653462767601, + 0.014045584946870804, + 0.05033139884471893, + -0.026163019239902496, + -0.0432504266500473, + 0.005069707985967398, + -0.004388206638395786, + -0.010854162275791168, + 0.0043757399544119835, + -0.0027488621417433023, + 0.004928421229124069, + 0.019647197797894478, + -0.0029857256449759007, + 0.001106401439756155, + 0.004508716054260731, + -0.001288204570300877, + -0.0253152959048748, + -0.004662469495087862, + -0.014112072996795177, + 0.0104884784668684, + -0.07592926919460297, + -0.022788753733038902, + 0.007492363918572664, + 0.028440231457352638, + -0.0011074403300881386, + 0.00290053803473711, + 0.010363813489675522, + 0.0011438009096309543, + -0.013937542214989662, + -0.002667830092832446, + 0.02508258819580078, + -0.018184460699558258, + -0.002308379393070936, + 0.026811275631189346, + -0.01565791852772236, + 0.00552265765145421, + -0.00020258055883459747, + -0.0014585800236091018, + 0.015142636373639107, + -0.007097591646015644, + 0.006482577882707119, + 0.019098671153187752, + 0.019015561789274216, + -0.019613953307271004, + -0.004512871149927378, + 0.044114772230386734, + -0.026345860213041306, + 0.004716490861028433, + -0.023719584569334984, + -0.019913148134946823, + 0.004845311399549246, + 0.029221465811133385, + -0.0026366638485342264, + -0.011128424666821957, + 0.007754160091280937, + 0.020312076434493065, + 0.009233517572283745, + -0.014053896069526672, + 0.023004839196801186, + -0.009457914158701897, + 0.004463005345314741, + 0.009939952753484249, + -0.014735397882759571, + 0.0003321801486890763, + -0.0032599885016679764, + -0.02204076386988163, + 0.0018440023995935917, + -0.03876249119639397, + 0.006893971934914589, + 0.018965695053339005, + 0.017918510362505913, + 0.009441292844712734, + -0.002202414209023118, + -0.020594650879502296, + 0.00132664293050766, + 0.0023686341010034084, + 0.026362482458353043, + -0.02526543103158474, + 0.018600011244416237, + 0.017020922154188156, + 0.0815807431936264, + 0.013322528451681137, + 0.03254586458206177, + 0.013688212260603905, + -0.03078393265604973, + 0.01886596344411373, + 0.022589290514588356, + 0.028855782002210617, + 0.020777491852641106, + 8.096729288809001e-5, + -0.004064077511429787, + -0.005078019108623266, + -0.004787134472280741, + 0.023885805159807205, + -0.024932991713285446, + 0.03277857229113579, + 0.005181906744837761, + 0.00530657172203064, + 0.004224064294248819, + 0.017037544399499893, + -0.003548795823007822, + 0.010064617730677128, + 0.014494379051029682, + -0.02064451575279236, + -0.010771051980555058, + -0.014909928664565086, + -0.0021276152692735195, + -0.009890086017549038, + -0.003924868535250425, + -0.006864883471280336, + 0.030684201046824455, + -0.006478422321379185, + 0.042984478175640106, + 0.01210912223905325, + -0.02438446506857872, + 0.04148849844932556, + 0.001164578483439982, + 0.01397909689694643, + -0.008290219120681286, + -0.013846120797097683, + -0.004874399863183498, + -0.014710464514791965, + 0.00732614379376173, + -0.021525481715798378, + -0.01140268798917532, + 0.014835129491984844, + 0.02232333831489086, + 0.006200003903359175, + -0.009383115917444229, + -0.009283383376896381, + -0.009466225281357765, + -0.004280163440853357, + -0.03663487359881401, + -0.017087409272789955, + -0.03527187183499336, + 0.012458184733986855, + -0.006715285591781139, + -0.018450412899255753, + -0.0209769569337368, + 0.003939412534236908, + -0.0026117307133972645, + 0.030883664265275, + 0.002807039301842451, + -0.02790832705795765, + -0.01718714088201523, + 0.002103721024468541, + -0.0027654841542243958, + -0.019846661016345024, + 0.004172120708972216, + 0.02273888699710369, + -0.015500009059906006, + -0.012483117170631886, + -0.007380165159702301, + 0.006332979537546635, + -0.016605371609330177, + 0.002480832627043128, + 0.027176959440112114, + -0.008165554143488407, + 0.022655777633190155, + -0.04936732351779938, + -0.010746119543910027, + 0.008660058490931988, + 0.003949801437556744, + 0.03995927423238754, + -0.01623968780040741, + -0.020312076434493065, + 0.00457104854285717, + -0.007172390352934599, + 0.02976999059319496, + -0.015350411646068096, + -0.021010199561715126, + -0.0014004029799252748, + 0.0022689022589474916, + -0.014544244855642319, + -0.020677760243415833, + -0.023752829059958458, + -0.014544244855642319, + 0.017619313672184944, + 0.011244778521358967, + -0.008099067024886608, + -0.01565791852772236, + 0.008074133656919003, + 0.010937271639704704, + -0.01310644205659628, + 0.020478297024965286, + -0.0036796939093619585, + -0.02192441001534462, + 0.0033098545391112566, + -0.005481102503836155, + -0.012557916343212128, + -0.010347191244363785, + 0.0053979926742613316, + -0.007197323255240917, + -0.007716760504990816, + -0.00040568053373135626, + -0.013688212260603905, + -0.004562737420201302, + 0.017320116981863976, + 0.020029501989483833, + -0.0037357930559664965, + 0.011876414529979229, + 0.025298675522208214, + 0.001384819857776165, + 0.01171850599348545, + 0.008015956729650497, + -0.0026387416291981936, + 0.006208314560353756, + -0.004367428831756115, + -0.014294914901256561, + -0.004529493395239115, + 0.03816409781575203, + 0.009117163717746735, + -0.009017432108521461, + -0.00870161410421133, + 0.000480998947750777, + -0.0012798935640603304, + 0.02298821695148945, + 0.011560596525669098, + -0.0133059062063694, + -0.0048037562519311905, + -0.01992977038025856, + -0.008464750833809376, + 0.020528161898255348, + 0.012325208634138107, + -0.0013079431373625994, + 0.000607741647399962, + -0.05176088958978653, + 0.004496249370276928, + 0.02767561934888363, + -0.02232333831489086, + 0.010164349339902401, + 0.0025514760054647923, + -0.00841072853654623, + -0.006470111198723316, + 0.01823432743549347, + -0.006839950568974018, + 0.00635791290551424, + -0.010629764758050442, + -0.01284049078822136, + -0.01992977038025856, + 0.01781877689063549, + -0.005032308865338564, + 0.009806976653635502, + -0.034972675144672394, + 0.013164618983864784, + 0.019879905506968498, + -0.0032516776118427515, + -0.04215337708592415, + -0.009590890258550644, + 0.00024569383822381496, + -0.0014793574810028076, + 0.0053605930879712105, + -0.012366763316094875, + -0.005697188433259726, + -0.002665752312168479, + -0.007750004529953003, + 0.036202702671289444, + -0.02789170667529106, + 0.031615033745765686, + -0.011244778521358967, + -0.0020621661096811295, + -0.020445052534341812, + -0.009657378308475018, + -0.01195952482521534, + 0.04391530901193619, + -0.0036298278719186783, + -0.014344780705869198, + -0.0185169018805027, + 0.0071599241346120834, + 0.016447462141513824, + 0.022423069924116135, + -0.02027883194386959, + -0.010513410903513432, + 0.026013420894742012, + -0.0011895113857463002, + 0.0059756068512797356, + 0.013031642884016037, + 0.018184460699558258, + 0.0164142195135355, + 0.002239813795313239, + -0.01445282343775034, + -0.015475076623260975, + 0.030551224946975708, + -0.03676785156130791, + 0.016696792095899582, + 0.0075380741618573666, + -0.013031642884016037, + -0.0030792243778705597, + 0.022423069924116135, + -0.02696087397634983, + 0.01321448478847742, + 0.008651748299598694, + 0.001923995791003108, + 0.011685261502861977, + 0.019713684916496277, + 0.00760456221178174, + -0.01377963274717331, + -0.020029501989483833, + 0.010771051980555058, + 0.003663071896880865, + 0.007966090925037861, + -0.004508716054260731, + -0.025980176404118538, + 0.03394211083650589, + 0.004874399863183498, + 0.008693302981555462, + 0.021060066297650337, + 0.013006710447371006, + 0.0185169018805027, + -0.005726276896893978, + 0.027093850076198578, + 0.017735667526721954, + 0.03547133505344391, + -0.016247998923063278, + 0.0021099543664604425, + -0.005568367894738913, + 0.004961665254086256, + 0.010505099780857563, + 0.018068106845021248, + -0.01063807588070631, + 0.019431110471487045, + -0.020145855844020844, + -0.05312389135360718, + -0.00996488519012928, + -0.010180971585214138, + -0.0003636061155702919, + -0.002663674531504512, + 0.013006710447371006, + -0.010297325439751148, + 0.002759251045063138, + 0.012532983906567097, + 0.013355772010982037, + 0.011560596525669098, + -0.013247729279100895, + -0.0030522136949002743, + 0.011735127307474613, + 0.006756840739399195, + -0.019647197797894478, + 0.0035882729571312666, + -0.006116893608123064, + 0.020062746480107307, + -0.010089550167322159, + 0.011710194870829582, + -0.0004441188939381391, + -0.03030189499258995, + -0.0133391497656703, + 0.02051153965294361, + 0.0015136402798816562, + -0.004467160906642675, + -0.0010908183176070452, + -0.01520912442356348, + 0.0329614132642746, + -0.003419975284487009, + 0.004099399317055941, + 0.00597976241260767, + 0.0004129526496399194, + -0.010180971585214138, + -0.008398262783885002, + 0.006170915439724922, + 0.001174967153929174, + 0.0234370119869709, + 0.020711004734039307, + -0.004091088194400072, + 0.02438446506857872, + 0.02232333831489086, + 0.004157576244324446, + 0.007101746741682291, + 0.0235034991055727, + 0.03879573568701744, + -0.016696792095899582, + -0.015200813300907612, + 0.01893245056271553, + 0.009083920158445835, + 0.012449873611330986, + 0.010305636562407017, + 0.02273888699710369, + -0.010862473398447037, + 0.006037939339876175, + -0.022423069924116135, + -0.017802154645323753, + -0.007292899768799543, + -0.0038168253377079964, + -0.005443702917546034, + 0.03862951323390007, + 0.004770512226969004, + 0.031914226710796356, + 0.00486608874052763, + -0.024118512868881226, + 0.018450412899255753, + -0.026013420894742012, + 0.0036215169820934534, + 0.0028693717904388905, + -0.012026012875139713, + -0.007243033964186907, + -0.002210725098848343, + -0.014876684173941612, + 0.022306716069579124, + -0.005402148235589266, + -0.0024018781259655952, + -0.014710464514791965, + -0.0023457789793610573, + 0.0010316025000065565, + -0.02930457517504692, + -0.016921190544962883, + -0.009108852595090866, + 0.009083920158445835, + -0.010687941685318947, + 0.011228157207369804, + 0.004253152757883072, + -0.02760913223028183, + -0.007791559677571058, + 0.0068108621053397655, + 0.01553325355052948, + 0.0011895113857463002, + 0.009358182549476624, + 0.007076813839375973, + -0.03886222094297409, + 0.016081778332591057, + -0.019098671153187752, + 0.0033659536857157946, + -0.01254129409790039, + -0.0027634066063910723, + -0.013147997669875622, + 0.018899207934737206, + -0.014228426851332188, + 0.009649067185819149, + 0.011668640188872814, + 0.017901888117194176, + 0.02533191815018654, + -0.03204720467329025, + -0.016863012686371803, + 0.014261670410633087, + 0.007151613011956215, + -0.02473352663218975, + -0.008069978095591068, + -0.005497724283486605, + 0.007376009598374367, + 0.030168918892741203, + -0.017220385372638702, + 0.012882045470178127, + 0.0019437344744801521, + 0.0007339649018831551, + -0.004670780152082443, + -0.01946435496211052, + -0.03113299421966076, + 0.019131915643811226, + -0.02086060307919979, + -0.009241828694939613, + 0.0027530177030712366, + -0.00722641171887517, + 0.001171850599348545, + -0.0060462504625320435, + 0.0030189696699380875, + -0.012790624052286148, + 0.05707992613315582, + -0.005240083672106266, + 0.028506720438599586, + -0.024052025750279427, + 0.009416359476745129, + -0.03375926986336708, + -0.036601629108190536, + -0.012375074438750744, + 0.013264351524412632, + -0.008651748299598694, + -0.023835940286517143, + 0.010023062117397785, + 0.027393046766519547, + -0.015782583504915237, + 0.00826113112270832, + 0.00929169449955225, + 0.0036817716900259256, + -0.010771051980555058, + 0.04743916913866997, + 0.0017401149962097406, + -0.0011209456715732813, + 0.013297595083713531, + -0.00597976241260767, + 0.019547464326024055, + -0.02737642452120781, + 0.030351761728525162, + 0.014544244855642319, + -0.0179351307451725, + -0.017070787027478218, + 0.010496789589524269, + -0.007804026361554861, + 0.019879905506968498, + 0.03640216588973999, + -0.036601629108190536, + -0.019032182171940804, + -0.029969455674290657, + -0.0028382055461406708, + -0.014901617541909218, + -0.022655777633190155, + -0.010912339203059673, + -0.006673730444163084, + -0.010397057048976421, + -0.008443973027169704, + 0.007118368986994028, + 0.0027073072269558907, + 0.015632985159754753, + 0.021409127861261368, + -0.027110472321510315, + -0.023187682032585144, + 0.012050945311784744, + 0.025481516495347023, + 0.002258513355627656, + 0.030551224946975708, + -0.012491428293287754, + 0.0042676967568695545, + 0.019264891743659973, + -0.01634773053228855, + 0.01770242303609848, + -0.010480167344212532, + -0.00033607592922635376, + 0.01634773053228855, + -0.021242909133434296, + -0.01740322820842266, + -0.01823432743549347, + 0.02556462585926056, + -0.019547464326024055, + 0.002736395690590143, + -0.009092230349779129, + -0.0313989482820034, + -0.0005155415274202824, + 0.0053605930879712105, + -0.014020651578903198, + 0.0076461173593997955, + 0.007991023361682892, + -0.00066332146525383, + -0.004878555424511433, + -0.008281908929347992, + 0.016979366540908813, + -0.004741423763334751, + 0.0013702756259590387, + -0.008759791031479836, + -0.0003389328485354781, + -0.0025327764451503754, + -0.0031477902084589005, + -0.03041824884712696, + -0.015267301350831985, + -0.00984853133559227, + -0.01928151212632656, + -0.0003877599665429443, + -0.012798935174942017, + 0.017220385372638702, + 0.01951422169804573, + 0.0003290635359007865, + -0.012508050538599491, + -0.018533524125814438, + -0.004920110106468201, + 0.009806976653635502, + 0.0011251012329012156, + -0.005090485792607069, + 0.025813955813646317, + 0.00414718734100461, + 0.0014752019196748734, + -0.006723596714437008, + -0.007907913997769356, + -0.021791433915495872, + -0.0037586484104394913, + 0.016314487904310226, + 7.252643263200298e-5, + -0.015026282519102097, + 0.00639115646481514, + -0.006145982071757317, + 0.09354858100414276, + -0.0011095181107521057, + -0.0036838494706898928, + 0.006337135098874569, + 0.004986598156392574, + -0.03434104099869728, + 0.00035399652551859617, + 0.006611397955566645, + 0.014245049096643925, + -0.000259458931395784, + -0.007076813839375973, + -0.02298821695148945, + 0.025631114840507507, + 0.021409127861261368, + -0.019248269498348236, + 0.004575203638523817, + 0.02081073634326458, + 0.029587149620056152, + 0.005310727283358574, + 0.00976542104035616, + -0.0002438758237985894, + -0.003372187027707696, + -0.01899893954396248, + 0.02666167914867401, + -0.005464480724185705, + 0.025182321667671204, + -0.0031207792926579714, + 0.001640383037738502, + 0.013920919969677925, + 0.02779197320342064, + 0.008493838831782341, + 0.0004150304012000561, + -0.009624134749174118, + -0.016846390441060066, + 0.00020011322339996696, + 0.017369983717799187, + 0.0032953103072941303, + -0.0018325748387724161, + 0.00026296512805856764, + 0.012142366729676723, + -0.0011105570010840893, + 0.010446922853589058, + 0.03242950886487961, + 0.02257266826927662, + -0.010687941685318947, + -0.015990357846021652, + -0.005181906744837761, + -0.004620914347469807, + 0.029886344447731972, + 0.0012674269964918494, + -0.02076086960732937, + -0.00976542104035616, + 0.013488748110830784, + 0.009241828694939613, + 0.004961665254086256, + 0.013713144697248936, + 0.009449603967368603, + -0.006245714146643877, + -0.015840759500861168, + -0.003839680692180991, + -0.018766231834888458, + 0.005331504624336958, + -0.006993704009801149, + -0.02174156904220581, + -0.022356582805514336, + -0.017436470836400986, + -0.00981528777629137, + -0.024185001850128174, + -0.008032578974962234, + 0.006370379123836756, + -0.01735336147248745, + -0.002103721024468541, + -0.002865216229110956, + -0.027658997103571892, + -0.012183921411633492, + 0.02280537597835064, + -0.0015167569508776069, + 0.005855097435414791, + 0.0132726626470685, + 5.421627065516077e-5, + 0.01946435496211052, + 0.01735336147248745, + -0.005830164533108473, + -0.01728687435388565, + -0.013397326692938805, + 0.00344283040612936, + 0.016796525567770004, + -0.025647737085819244, + 0.000617610989138484, + -0.029753368347883224, + -0.010264080949127674, + -0.003937334753572941, + 0.0012341830879449844, + 0.0018491968512535095, + 0.004159654024988413, + 0.0018949073273688555, + -0.0133059062063694, + -0.02057802863419056, + 0.005684721749275923, + -0.007018636912107468, + 0.008693302981555462, + 0.01946435496211052, + -0.013156307861208916, + -0.011660329066216946, + 0.01128633413463831, + 0.0158324483782053, + 0.014810197055339813, + 0.001784786581993103, + -0.01061314344406128, + 0.00949946977198124, + -0.006166759878396988, + -0.01758606918156147, + 0.004816222935914993, + 0.00014674104750156403, + -0.013405637815594673, + 0.007745848968625069, + 0.0026117307133972645, + -0.00870161410421133, + -0.018766231834888458, + -0.02656194567680359, + -0.02333728037774563, + 0.027592509984970093, + -0.01776891201734543, + -0.02197427675127983, + -0.002052816329523921, + -0.00021426788589451462, + 0.008252820000052452, + -0.0036942381411790848, + -0.01805148459970951, + 0.002863138448446989, + 0.015907248482108116, + 0.008709925226867199, + 0.005302416160702705, + -0.015175880864262581, + 0.00929169449955225, + 0.001055496628396213, + 0.0023727896623313427, + -0.005967295728623867, + 0.030285272747278214, + -0.011735127307474613, + 0.021292774006724358, + -0.008543704636394978, + 0.007176545914262533, + 0.025065967813134193, + -0.0007511063595302403, + 0.023054705932736397, + -0.009241828694939613, + -0.00765027292072773, + 0.015408588573336601, + -0.007641961798071861, + 0.032678838819265366, + -0.028889024630188942, + -6.707234570058063e-5, + -0.004521182272583246, + 0.008867833763360977, + 0.0038750022649765015, + -0.016439152881503105, + 0.016306176781654358, + -0.02619626186788082, + -0.013438882306218147, + 0.002632508287206292, + 0.0023478567600250244, + -0.023054705932736397, + -0.007068502716720104, + -0.020262211561203003, + -0.0002562124573159963, + 0.01116166915744543, + 0.023004839196801186, + 0.016447462141513824, + -0.003372187027707696, + 0.008427350781857967, + -0.003958112094551325, + 0.010746119543910027, + -0.01735336147248745, + 0.003430363954976201, + -0.017303496599197388, + 0.0002727045794017613, + -0.006677886005491018, + -0.027758730575442314, + 0.012341830879449844, + 0.019946392625570297, + -0.01104531530290842, + 0.020943712443113327, + -0.008036734536290169, + 0.004612603224813938, + -0.01004799548536539, + 0.017453093081712723, + -0.018716365098953247, + -0.0008820045622996986, + 0.011585529893636703, + -0.010089550167322159, + 0.013048265129327774, + -0.0068815057165920734, + -0.005871719215065241, + -0.004629225470125675, + -0.01629786565899849, + 0.025248808786273003, + 0.013314217329025269, + 0.00840657390654087, + -0.0066820415668189526, + -0.007791559677571058, + -0.00468740239739418, + 0.01589062623679638, + -0.0020642438903450966, + 0.0007968168356455863, + -0.01763593591749668, + -0.0136300353333354, + -0.02069438248872757, + -0.005418770015239716, + -0.012117433361709118, + -0.01647239550948143, + -0.03547133505344391, + 0.010696252807974815, + 0.0013941697543486953, + -0.007654428016394377, + 0.00025984851527027786, + 0.0013307983754202724, + 0.014278292655944824, + -0.0021296930499374866, + 0.021542103961110115, + 0.009034053422510624, + 0.0011230234522372484, + 0.02157534845173359, + -0.01628955453634262, + -0.028157657012343407, + -0.0067526851780712605, + 0.018849341198801994, + 0.01565791852772236, + 0.016397597268223763, + 0.004670780152082443, + 0.03262897580862045, + -0.0029026155825704336, + -0.005269172135740519, + 0.02109331078827381, + -0.011502419598400593, + 0.02853996306657791, + 0.023470254614949226, + -0.003602817188948393, + 0.004487938247621059, + -0.007363543380051851, + -7.194206409621984e-5, + -0.0031685675494372845, + -0.014585799537599087, + -0.02573084644973278, + -0.004317563027143478, + -0.019131915643811226, + -0.0006264413823373616, + -0.012042634189128876, + 0.009083920158445835, + -2.9234581234049983e-5, + -0.009000809863209724, + -0.010239148512482643, + -0.005065552890300751, + 0.008365018293261528, + 0.010920650325715542, + -0.020843980833888054, + -0.004086932633072138, + 0.01365496776998043, + -0.016838079318404198, + -0.015175880864262581, + 0.007508985698223114, + -0.006295580416917801, + -0.021558726206421852, + -0.02227347157895565, + -0.006989548448473215, + 0.013123064301908016, + -0.02837374433875084, + -0.0004986597923561931, + 0.005780298262834549, + 0.0028382055461406708, + -0.001316254143603146, + 0.0077749378979206085, + 0.00949946977198124, + 0.004317563027143478, + -0.0013775477418676019, + -0.005535123869776726, + -0.003592428518459201, + -0.014785263687372208, + 0.0019946391694247723, + 0.005127884913235903, + 0.007384320721030235, + 0.0011625007027760148, + 0.016031913459300995, + -0.016306176781654358, + -2.2660453396383673e-5, + -0.024234866723418236, + -0.0060670278035104275, + 0.022123873233795166, + -0.008394107222557068, + 0.01394585333764553, + 0.001037835725583136, + -0.004949198570102453, + -0.006528288125991821, + -0.018151218071579933, + 0.005730432458221912, + 0.014835129491984844, + -0.011967835947871208, + -0.0012393774231895804, + 0.027742108330130577, + 0.005202684085816145, + -0.0008695380529388785, + -0.004140954464673996, + -0.0036443721037358046, + -0.01646408438682556, + 0.016971055418252945, + 0.0016445384826511145, + 0.015084459446370602, + -0.007633650675415993, + -0.010413679294288158, + 0.0185833889991045, + 0.0009375843219459057, + -0.0006944877095520496, + -0.01230858638882637, + -0.007750004529953003, + -0.020478297024965286, + -0.022522801533341408, + 0.023702964186668396, + 0.004512871149927378, + -0.03171476349234581, + -0.011643706820905209, + 0.01712065376341343, + -0.010338880121707916, + -0.0021837144158780575, + 0.019597331061959267, + 0.008809656836092472, + -0.003559184493497014, + 0.01886596344411373, + 0.013123064301908016, + 0.011560596525669098, + -0.01728687435388565, + 0.02679465338587761, + 0.0032973880879580975, + -0.019946392625570297, + -0.00047554486081935465, + 0.0056764110922813416, + 0.021076688542962074, + -0.0016611604951322079, + 0.00020634647808037698, + -0.008456439711153507, + -0.0019375011324882507, + -0.017203763127326965, + -0.01646408438682556, + -0.01278231292963028, + 0.001716220867820084, + 0.0025784869212657213, + 0.0036111280787736177, + -0.007579629309475422, + -0.007197323255240917, + 0.010139415971934795, + 0.006989548448473215, + 0.009050675667822361, + -0.004167965147644281, + 0.030983395874500275, + 0.002759251045063138, + -0.013280972838401794, + -0.010538344271481037, + 0.014411268755793571, + 0.02391904965043068, + -0.02755926549434662, + 0.009632445871829987, + -0.013081509619951248, + 0.01219223253428936, + -0.01028901431709528, + -0.018084729090332985, + 0.026994118466973305, + -0.006050406023859978, + -0.009449603967368603, + 0.008793034590780735, + -0.02209063060581684, + 0.005589145701378584, + -0.00788298062980175, + -0.010363813489675522, + -0.023702964186668396, + -0.016256310045719147, + -0.011178291402757168, + 0.0185833889991045, + -0.003187267342582345, + 0.008693302981555462, + 0.0007729227072559297, + -0.003199733793735504, + 0.01037212461233139, + -0.0067526851780712605, + -0.013679901137948036, + -0.008676680736243725, + 0.004271852318197489, + 0.02076086960732937, + 0.01893245056271553, + 0.011103492230176926, + 0.005053086206316948, + -0.010180971585214138, + -0.0054894136264920235, + -0.0011739283800125122, + 0.011585529893636703, + 0.0064908885397017, + -0.0002463431446813047, + 0.018034864217042923, + -0.020528161898255348, + 0.025464894250035286, + 0.0005402148235589266, + -0.0022065697703510523, + -0.011676950380206108, + -0.004203286953270435, + 0.009316627867519855, + -0.003710860153660178, + 0.007247189525514841, + -0.02450081892311573, + 0.007845581509172916, + -0.003870846936479211, + 0.01775228977203369, + -0.0105217220261693, + 0.008123999461531639, + 0.012117433361709118, + -0.0203951857984066, + 0.0015614285366609693, + 0.014851751737296581, + 0.007267966866493225, + -0.00614182697609067, + -0.010571587830781937, + -0.000759417365770787, + 0.0013858587481081486, + 0.01916515827178955, + -0.00905898679047823, + 0.010131105780601501, + 0.0009968002559617162, + 0.01210912223905325, + -0.005564212333410978, + 0.02431797794997692, + 0.0013827420771121979, + -0.009516091085970402, + 0.01198445726186037, + -0.009233517572283745, + -0.0019832116086035967, + -0.010862473398447037, + 0.013879365287721157, + -0.03593675047159195, + -0.010870784521102905, + 0.03173138573765755, + -0.02356998808681965, + 0.014660598710179329, + 0.026545325294137, + -0.020428430289030075, + 0.003766959300264716, + -0.0012092500692233443, + 0.004662469495087862, + 0.008402418345212936, + 0.016871323809027672, + 3.1490887977270177e-6, + 0.035072408616542816, + -0.005647322628647089, + -0.010696252807974815, + -0.012391696684062481, + 0.010787674225866795, + -0.014909928664565086, + -0.02220698446035385, + -0.00580107606947422, + -0.009798665530979633, + 0.011784994043409824, + 0.007712605409324169, + 0.016090089455246925, + -0.03939412534236908, + -0.0018232249421998858, + -0.0003134804137516767, + -0.010920650325715542, + 0.0019271124619990587, + -0.021425750106573105, + 0.021309396252036095, + 0.015757650136947632, + 0.0016819380689412355, + -0.0005802114610560238, + 0.010239148512482643, + -0.014137005433440208, + 0.010837540030479431, + 0.01565791852772236, + 0.011768371798098087, + 0.020910467952489853, + 0.00782895926386118, + -0.01401234045624733, + -0.0026865298859775066, + 0.007118368986994028, + -0.01389598660171032, + -0.015167569741606712, + -0.014195183292031288, + -0.01718714088201523, + -0.011178291402757168, + 0.023054705932736397, + -0.01946435496211052, + -0.009183651767671108, + 0.010239148512482643, + 0.005485258065164089, + 0.011253089644014835, + -0.011261400766670704, + 0.004313407465815544, + 0.010455233976244926, + -0.005518502090126276, + 0.011893036775290966, + -0.0074965194799005985, + -0.010771051980555058, + 0.026811275631189346, + -0.00399966724216938, + 0.0014513077912852168, + 0.00996488519012928, + -0.009798665530979633, + -0.005967295728623867, + 0.014943172223865986, + 0.014702153392136097, + -0.0036568387877196074, + -0.006864883471280336, + 0.009682311676442623, + 0.0203951857984066, + 0.020594650879502296, + -0.0020496996585279703, + 0.010230837389826775, + -0.01175174955278635, + 0.014020651578903198, + -0.0023624009918421507, + 0.02315443754196167, + -0.00949946977198124, + -0.010189282707870007, + 0.01700429990887642, + -0.005447858478873968, + 0.003924868535250425, + -0.016613682731986046, + 0.0026262749452143908, + 0.009948262944817543, + -0.00607949448749423, + 0.004039144609123468, + 0.017270252108573914, + 0.004828689154237509, + 0.0016009057871997356, + 0.0011728894896805286, + -0.037299755960702896, + -0.003953956998884678, + 0.006598931737244129, + -0.003941490314900875, + 0.025415029376745224, + 0.01353861391544342, + 0.018367303535342216, + 0.011909659020602703, + 0.017070787027478218, + -0.0005295663140714169, + -0.013871054165065289, + 0.011369443498551846, + 0.006378690246492624, + -0.00045294934534467757, + -0.013829498551785946, + -0.015275612473487854, + 0.007355232257395983, + 0.005256705451756716, + -0.012142366729676723, + -0.0036319056525826454, + -0.01969706267118454, + 0.011460864916443825, + 0.02011261321604252, + -0.007438342086970806, + 0.010122794657945633, + -0.009009120985865593, + -0.011776682920753956, + 0.006731907371431589, + -0.006387001369148493, + 0.006137671414762735, + 0.007986867800354958, + -0.019763551652431488, + 0.0011656173737719655, + 0.0007692866493016481, + -0.014178561046719551, + -0.0002414084883639589, + 0.013264351524412632, + 0.017453093081712723, + 0.0036672274582087994, + 0.009482847526669502, + -0.029387684538960457, + -0.004870244301855564, + -0.02438446506857872, + -0.00976542104035616, + 0.0014492301270365715, + 0.003133245976641774, + -0.033975355327129364, + -0.007280433550477028, + 0.00925845094025135, + -0.007662739139050245, + 0.006399467587471008, + -0.014170249924063683, + -0.01184317097067833, + -0.009050675667822361, + 0.021359262987971306, + 0.013696523383259773, + 0.002863138448446989, + -0.0032516776118427515, + 0.014718775637447834, + -0.01040536817163229, + 0.031531922519207, + -0.014053896069526672, + -0.005601611919701099, + 0.00319557823240757, + 0.001954123144969344, + -0.001577011658810079, + -0.004082777071744204, + 0.007272122427821159, + -0.03673460707068443, + -0.019547464326024055, + 0.007662739139050245, + 0.0024538219440728426, + 0.011743438430130482, + 0.0038189031183719635, + 0.024833258241415024, + 0.005493569187819958, + 0.01140268798917532, + -0.01545014325529337, + -0.0179351307451725, + 8.27853218652308e-5, + -0.006071183364838362, + 0.0011666561476886272, + 0.020611273124814034, + -0.003951879218220711, + -0.003731637727469206, + -0.006303891073912382, + 0.0018086807103827596, + 0.003000269876793027, + 0.023171059787273407, + -0.011652017943561077, + -0.0037357930559664965, + 0.004066155292093754, + -0.003789814654737711, + 0.020212344825267792, + -0.0034469859674572945, + -0.018034864217042923, + 0.012591160833835602, + 0.010330568999052048, + -0.0002060867554973811, + -0.018782854080200195, + 0.021558726206421852, + 0.004028755705803633, + -0.008327619172632694, + -0.029055245220661163, + -0.003384653478860855, + 0.008651748299598694, + -0.02691100910305977, + 0.02222360670566559, + 0.005418770015239716, + -0.021242909133434296, + 0.015142636373639107, + -0.0076294951140880585, + 0.0011895113857463002, + 0.008123999461531639, + 0.017536204308271408, + 0.005925741046667099, + 0.011577218770980835, + 0.0004781420575454831, + 0.0002664713538251817, + -0.016090089455246925, + -0.011136735789477825, + 0.0013868976384401321, + -0.005842630751430988, + 0.012208854779601097, + -0.00430925190448761, + -0.012200543656945229, + 0.014062207192182541, + -0.011909659020602703, + 0.02391904965043068, + -0.0009708283469080925, + -0.014843440614640713, + -0.02689438685774803, + -0.0038292917888611555, + -0.002422655699774623, + 0.012890356592833996, + -0.00881796795874834, + 0.002863138448446989, + 0.023536743596196175, + 0.010721186175942421, + -0.02046167477965355, + 0.0005339815397746861, + 0.0030875352676957846, + -0.01869974285364151, + 0.013580169528722763, + 0.007018636912107468, + -0.008901077322661877, + -0.012990088202059269, + -0.01705416664481163, + 0.0028922269120812416, + -0.0164807066321373, + -0.016671860590577126, + 0.012242098338901997, + -0.006819173227995634, + 0.0015884393360465765, + -1.4454966731136665e-5, + 0.0025597871281206608, + -0.0072014788165688515, + -0.03025202825665474, + -0.004799600690603256, + 0.0042261420749127865, + -0.01104531530290842, + -0.001407675095833838, + -0.010297325439751148, + -0.02466703951358795, + 0.01846703514456749, + 0.0022418913431465626, + -0.004936732351779938, + -0.011535664089024067, + -0.049267590045928955, + -0.0038874689489603043, + -0.008676680736243725, + -0.010471856221556664, + -0.0010970516595989466, + -0.010937271639704704, + -0.0025327764451503754, + -0.00033711481955833733, + 0.006137671414762735, + 0.015192502178251743, + 0.007533918600529432, + 0.0033576427958905697, + 0.005036463961005211, + -0.00047892119619064033, + 0.0035529511515051126, + -0.001177044934593141, + -0.008497994393110275, + -0.012391696684062481, + 0.002165014622732997, + 0.003908246289938688, + -0.019879905506968498, + 0.015591430477797985, + -0.008082444779574871, + 0.009324938990175724, + -0.0072388784028589725, + 0.006519977003335953, + 0.004566892981529236, + -0.02074424922466278, + 0.004915954545140266, + 0.011086869984865189, + -0.010205904021859169, + 0.018250949680805206, + 0.032213423401117325, + -0.007750004529953003, + -0.003133245976641774, + 0.012873734347522259, + -0.027160339057445526, + -0.00732614379376173, + 0.0052525498904287815, + 0.004429761320352554, + -0.002827816642820835, + 0.0160568468272686, + -0.031615033745765686, + -0.017070787027478218, + -0.011228157207369804, + 0.0005781337385997176, + 0.0290718674659729, + -0.0015531175304204226, + -0.012316897511482239, + 0.01928151212632656, + -0.015250679105520248, + 0.01040536817163229, + -0.006586465053260326, + -0.016796525567770004, + 0.011909659020602703, + 0.001124062342569232, + 0.015358722768723965, + -3.441272201598622e-5, + 0.015466765500605106, + -0.013696523383259773, + 0.004483782686293125, + 0.004508716054260731, + 0.01916515827178955, + 0.0019208792364224792, + -0.01008123904466629, + 0.016904568299651146, + 0.007970246486365795, + 0.0185169018805027, + -0.001037835725583136, + -0.008398262783885002, + -0.026877764612436295, + 0.02308795042335987, + 0.00046593527076765895, + -0.01652226224541664, + -0.0016871324041858315, + -0.032911546528339386, + -0.008917699567973614, + -0.018383925780653954, + -0.008543704636394978, + 0.002073593670502305, + 0.005107107572257519, + 0.009083920158445835, + 0.014552555978298187, + -0.01274906937032938, + -0.026478836312890053, + -0.00820710975676775, + -0.028988758102059364, + 0.0002807558630593121, + 0.018367303535342216, + 0.012848800979554653, + 0.011851482093334198, + 0.022522801533341408, + 0.022373203188180923, + 0.011543975211679935, + -0.0223399605602026, + -0.01588231511414051, + 0.024367842823266983, + 0.015001349151134491, + 0.0034365972969681025, + -0.008057511411607265, + -0.02942092902958393, + -0.017552826553583145, + -0.008007645606994629, + 0.009690622799098492, + -0.006802550982683897, + -0.01811797358095646, + 0.010313947685062885, + 0.010945582762360573, + -0.010646387003362179, + 0.017336739227175713, + 0.01462735515087843, + 4.605948106473079e-6, + 0.004500404931604862, + -0.0033680314663797617, + 0.0036422943230718374, + 0.007338610477745533, + 0.010147727094590664, + -0.013197863474488258, + -0.010338880121707916, + 0.008402418345212936, + 0.007970246486365795, + 0.026528703048825264, + -0.016663549467921257, + 0.02445095404982567, + 0.0015157180605456233, + -0.0129817770794034, + -0.04045793414115906, + 0.016563817858695984, + -0.008510461077094078, + -0.003787736874073744, + -0.0067900847643613815, + -0.01705416664481163, + -0.012857112102210522, + 0.008676680736243725, + -0.0111699802801013, + 0.02110993303358555, + 0.0009095347486436367, + -0.009225206449627876, + -0.013239418156445026, + -0.0007370815728791058, + 0.014602421782910824, + 0.008784723468124866, + 0.012532983906567097, + -0.025714224204421043, + 0.006482577882707119, + 0.005173595622181892, + 0.011801615357398987, + -6.317656516330317e-5, + 0.005464480724185705, + 0.00716407923027873, + -0.012557916343212128, + -0.021060066297650337, + -0.002376945223659277, + 0.004658313933759928, + -0.005871719215065241, + 0.0012778157833963633, + -0.004194975830614567, + 0.007816492579877377, + -0.0034054310526698828, + -0.013854431919753551, + 0.019298134371638298, + -0.01377963274717331, + -0.0051029520109295845, + 0.007006170228123665, + -0.002759251045063138, + 0.008182176388800144, + 0.011236468330025673, + -0.0027737952768802643, + -0.017203763127326965, + 0.010696252807974815, + -0.018899207934737206, + -0.01474370900541544, + -0.012034323997795582, + -0.006777618080377579, + -0.005821853410452604, + -0.0028195057529956102, + 0.003220511367544532, + 0.0023250014055520296, + 0.004207442048937082, + 0.003280766075477004, + -0.013613413088023663, + 0.019131915643811226, + 0.006183381658047438, + 0.007558851968497038, + -0.00776662677526474, + 0.004438072443008423, + -0.021941032260656357, + -0.005688877310603857, + 0.008801345713436604, + -0.01828419417142868, + -0.0041326433420181274, + 0.018184460699558258, + 0.009665689431130886, + 0.004566892981529236, + 0.01377132162451744, + -0.0019125682301819324, + -0.006075338926166296, + -0.009424670599400997, + 0.02185792289674282, + 0.0036796939093619585, + 0.000539175933226943, + -0.012358452193439007, + 0.008892767131328583, + 0.008768102154135704, + -0.016921190544962883, + 0.0021504703909158707, + -0.005971451289951801, + -0.008801345713436604, + -0.025232186540961266, + 0.004841155838221312, + -0.010579898953437805, + 0.008431506343185902, + -0.01061314344406128, + 0.0003815267118625343, + 0.0003812669892795384, + 0.0009339482639916241, + 0.002620041836053133, + 0.009690622799098492, + 0.0066446419805288315, + -0.00788298062980175, + -0.0033534872345626354, + -0.019314756616950035, + -0.01717052049934864, + 0.025165699422359467, + 0.002771717496216297, + 0.011136735789477825, + 0.008198798634111881, + 0.002029960975050926, + -0.031083129346370697, + -0.002667830092832446, + -0.01072949729859829, + -0.018367303535342216, + 0.0003612686414271593, + -0.0034802299924194813, + 0.011577218770980835, + -0.00045450765173882246, + -0.013563547283411026, + 0.01911529339849949, + 0.004537804517894983, + -0.008464750833809376, + -0.002100604586303234, + 0.006424400489777327, + 0.02744291163980961, + 0.002628352725878358, + -0.0006492966203950346, + -0.011735127307474613, + 0.0018138750456273556, + -0.0018699743086472154, + 0.0033659536857157946, + -0.004716490861028433, + 0.0006373495562002063, + 0.0038874689489603043, + 0.002237736014649272, + -0.00244135526008904, + 0.021010199561715126, + 0.00440898397937417, + 0.012291964143514633, + -0.0018751686438918114, + -0.004157576244324446, + -0.017685800790786743, + -0.017719045281410217, + -0.021675080060958862, + -0.0046749357134103775, + -0.0021816366352140903, + 0.018732987344264984, + -0.02257266826927662, + 0.012873734347522259, + -0.01765255816280842, + 0.006220781244337559, + -0.02883915975689888, + -0.02456730790436268, + -0.002058010548353195, + 0.0036194392014294863, + 0.01835068129003048, + 0.0031457124277949333, + 0.03886222094297409, + 0.027974816039204597, + 0.0040765441954135895, + -0.009308316744863987, + 0.0014139083214104176, + -0.015342100523412228, + 0.018367303535342216, + -0.02461717277765274, + 0.0007157846121117473, + 0.009790354408323765, + -0.010363813489675522, + 0.003779425984248519, + 0.004832844715565443, + 0.01939786784350872, + 0.01186810340732336, + 0.004907643888145685, + 0.004433916881680489, + -0.017685800790786743, + -0.02719358168542385, + -0.0009817364625632763, + 0.01195952482521534, + -0.013696523383259773, + -0.013763011433184147, + 0.027476156130433083, + 0.0033472541254013777, + -0.0008679797756485641, + -0.003640216775238514, + -0.0024122667964547873, + 0.006179226096719503, + -0.010189282707870007, + -0.011676950380206108, + 0.015990357846021652, + -0.007525607943534851, + 0.01763593591749668, + 0.00565563328564167, + -0.02533191815018654, + 0.015350411646068096, + 0.025514760985970497, + 0.006033783778548241, + -0.016854701563715935, + 0.013147997669875622, + -0.028224145993590355, + 0.02122628688812256, + 0.011294645257294178, + 0.01963057555258274, + 0.015258990228176117, + 0.017785534262657166, + -0.001174967153929174, + 0.021675080060958862, + 0.011701883748173714, + -0.013812877237796783, + -0.0049741314724087715, + -0.0022315026726573706, + -0.009250139817595482, + -0.02074424922466278, + -0.008543704636394978, + -0.02960377186536789, + 0.011643706820905209, + -0.0011406843550503254, + 0.0027758730575442314, + 0.008315152488648891, + -0.023304035887122154, + -0.001495979493483901, + -0.005011531058698893, + 0.02009599097073078, + -0.003835525130853057, + 0.013048265129327774, + 0.006000539753586054, + -0.0006196887115947902, + 0.01266595907509327, + 0.005971451289951801, + -0.005107107572257519, + -0.002108915476128459, + -0.0054894136264920235, + -0.0071807014755904675, + 0.003280766075477004, + 0.0008674603304825723, + -0.022672399878501892, + -0.0036651496775448322, + -0.0034573746379464865, + 0.000491127953864634, + 0.0005500841070897877, + 0.023669719696044922, + -8.189254003809765e-6, + 0.005859252996742725, + 0.005614078603684902, + 0.03146543353796005, + -0.014677220955491066, + -0.00023777243040967733, + -0.001506368163973093, + -0.014486067928373814, + 0.0010108250426128507, + -0.0031602566596120596, + -0.010530033148825169, + -0.007546385284513235, + 0.009167029522359371, + 0.010987138375639915, + -0.006162604317069054, + 0.029686881229281425, + -0.007725071627646685, + -0.0001711545919533819, + -0.00607949448749423, + 0.0029130044858902693, + 0.007986867800354958, + 0.024417709559202194, + -0.021076688542962074, + 0.013580169528722763, + 0.00925845094025135, + -0.008643437176942825, + -0.03001932054758072, + -0.0062374030239880085, + -0.012973465956747532, + -0.0026615967508405447, + 0.00074175646295771, + 0.011153358034789562, + -0.0024122667964547873, + -0.009507780894637108, + 0.006017161998897791, + -0.017270252108573914, + -0.0036215169820934534, + 0.020145855844020844, + 0.019215025007724762, + -0.004936732351779938, + 0.0023914894554764032, + -0.0024974546395242214, + 0.004724801983684301, + -0.005830164533108473, + 0.002025805413722992, + 0.014843440614640713, + -0.011452553793787956, + -0.016796525567770004, + -0.007384320721030235, + 0.0021608592942357063, + 0.005418770015239716, + 0.003945645876228809, + -0.004537804517894983, + 0.010978827252984047, + -0.011527352966368198, + -0.0030210474506020546, + -0.00791206955909729, + -1.5461375824088464e-6, + -0.0024995324201881886, + 0.003185189561918378, + -0.016189822927117348, + 0.027043983340263367, + 0.003336865222081542, + 0.015483387745916843, + -0.011494108475744724, + -0.0053398157469928265, + -0.008884456008672714, + -0.004612603224813938, + 0.00817802082747221, + 0.01999625936150551, + -0.008423195220530033, + -0.015982046723365784, + 0.0026117307133972645, + -0.003432441735640168, + -0.011701883748173714, + 0.008094911463558674, + 0.019098671153187752, + 0.018367303535342216, + 0.026977496221661568, + 0.004350807052105665, + -0.00028361278236843646, + -0.005776142701506615, + 0.023935671895742416, + -0.0073302993550896645, + 0.007292899768799543, + 0.018915828317403793, + -0.00016115543257910758, + 0.005813542287796736, + 0.008842900395393372, + -0.027875084429979324, + 0.010421990416944027, + -0.007841425947844982, + 0.005880030337721109, + 0.010646387003362179, + -0.018134595826268196, + 0.006133515853434801, + -0.00079473911318928, + -0.008718235418200493, + -0.0015759727684780955, + -0.00614182697609067, + -0.0006347523885779083, + -0.0066446419805288315, + -0.01500966027379036, + 0.03272870555520058, + 0.008103221654891968, + 0.0007069541607052088, + -0.01353861391544342, + -6.707234570058063e-5, + -0.0026699078734964132, + 0.005747054237872362, + -0.02508258819580078, + 0.007695983164012432, + 0.010588210076093674, + 0.005551746115088463, + -0.012291964143514633, + -0.016621993854641914, + -0.003137401305139065, + -0.010530033148825169, + 0.01353861391544342, + 0.015741027891635895, + 0.021026821807026863, + 0.002447588602080941, + -0.00414718734100461, + -0.0059382072649896145, + -0.01899893954396248, + -0.02320430427789688, + -0.012250409461557865, + -0.018068106845021248, + 0.006972926668822765, + -0.0035758065059781075, + -0.010912339203059673, + -0.009915019385516644, + 0.010804296471178532, + 0.0019478899193927646, + 0.021126553416252136, + -0.00858526024967432, + -0.021791433915495872, + 0.0002110214118147269, + 0.001101207104511559, + 0.002256435574963689, + -0.0076461173593997955, + -0.0007376009598374367, + -0.0036568387877196074, + -0.006869039032608271, + -0.008709925226867199, + -0.016904568299651146, + 0.012034323997795582, + -0.0023603232111781836, + -0.007903758436441422, + -0.0073676989413797855, + 0.012491428293287754, + 0.0031020797323435545, + 0.003744104178622365, + 0.03329385444521904, + -0.010854162275791168, + 0.0192316472530365, + -0.009283383376896381, + 0.0013609257293865085, + -0.007438342086970806, + 0.007542229723185301, + -0.014585799537599087, + -0.014062207192182541, + 0.03382575884461403, + 0.0008144776802510023, + -0.01671341434121132, + 0.013521991670131683, + 0.0008882377878762782, + -0.014901617541909218, + 0.015317167155444622, + -0.00917534064501524, + 0.004404828418046236, + -0.010156038217246532, + 0.0014824740355834365, + 0.015466765500605106, + 0.0012965155765414238, + 0.009806976653635502, + -0.002124498598277569, + -0.013330839574337006, + -0.0030522136949002743, + 0.01004799548536539, + 0.011095181107521057, + 0.022472936660051346, + -0.0011780838249251246, + 0.011319577693939209, + -0.018367303535342216, + 0.00760456221178174, + -0.01407051831483841, + 0.006736062932759523, + -0.01397909689694643, + 0.0013765088515356183, + -7.012403511907905e-5, + -0.003521784907206893, + 0.010097861289978027, + -0.02262253314256668, + 0.020445052534341812, + -0.016040224581956863, + -0.00023309749667532742, + 0.009416359476745129, + 0.02830725535750389, + -0.01228365395218134, + -0.012300275266170502, + 0.0015531175304204226, + 0.012557916343212128, + 0.015275612473487854, + -0.007338610477745533, + -0.013605101965367794, + 0.019963014870882034, + 0.00996488519012928, + -0.0012237943010404706, + -0.01565791852772236, + -0.005634855944663286, + -0.01676328107714653, + 0.004120176658034325, + -0.0007168235024437308, + -0.02368634194135666, + 0.0027654841542243958, + 0.0013650812907144427, + -0.005265016574412584, + 0.0025888755917549133, + -0.02830725535750389, + -0.004620914347469807, + -0.0061044273898005486, + 0.004107710439711809, + 0.004338340368121862, + 0.011859792284667492, + -0.009948262944817543, + -0.0011344511294737458, + -0.010588210076093674, + -0.005605767481029034, + 0.0020642438903450966, + 0.06761827319860458, + 0.023603230714797974, + 0.017270252108573914, + -0.005684721749275923, + 0.0007775976555421948, + -0.024816637858748436, + -0.0076461173593997955, + -0.01623968780040741, + -0.024401087313890457, + 0.002854827558621764, + 0.0019146458944305778, + 0.005921585485339165, + 0.02568098157644272, + 0.0049325767904520035, + 0.00488271052017808, + 0.003465685760602355, + -0.0067734625190496445, + -0.013829498551785946, + -0.014245049096643925, + 0.024251488968729973, + -0.006719441153109074, + 0.026246128603816032, + 0.007837270386517048, + -0.009482847526669502, + 0.00642024539411068, + -0.0018668577540665865, + 0.0021203430369496346, + -0.019148537889122963, + 0.006303891073912382, + 0.0037815035320818424, + 0.013089819811284542, + -0.026412349194288254, + -0.031615033745765686, + -0.0032516776118427515, + -0.012807246297597885, + 0.014901617541909218, + -0.008535393513739109, + 0.02243969216942787, + 0.0034469859674572945, + -0.022356582805514336, + -0.027858462184667587, + -0.005310727283358574, + 0.015375344082713127, + -0.01556649710983038, + -0.005219306331127882, + -0.00470402417704463, + -0.004438072443008423, + 0.0058260089717805386, + -0.0013359927106648684, + 0.013521991670131683, + -0.005580834578722715, + 0.007056036498397589, + -0.0178686436265707, + -0.010887405835092068, + -0.009948262944817543, + 0.0003581520286388695, + 0.017735667526721954, + -0.024534063413739204, + 0.008610192686319351, + -0.00949115864932537, + -0.016796525567770004, + 0.004194975830614567, + 0.004920110106468201, + 0.02320430427789688, + -0.005156973842531443, + 0.0178686436265707, + 0.00391447963193059, + 0.010272392071783543, + -0.011793305166065693, + -0.000524112256243825, + 0.015790894627571106, + -0.007583784870803356, + -0.013679901137948036, + -0.0217581894248724, + -0.010438612662255764, + -0.013280972838401794, + -0.021957654505968094, + -0.022290093824267387, + -0.0009869309142231941, + 0.02257266826927662, + 0.02022896707057953, + -0.01670510321855545, + 0.001412869431078434, + -0.011776682920753956, + -0.012333519756793976, + 0.00442560575902462, + -0.013081509619951248, + -0.005684721749275923, + 0.014868373982608318, + -0.0026512080803513527, + -0.02789170667529106, + -0.01723700761795044, + -0.022190362215042114, + -0.0010077083716169, + 0.013546925038099289, + -0.007679361384361982, + -0.00430925190448761, + -0.015367033891379833, + 0.00037373515078797936, + 0.017037544399499893, + 0.014851751737296581, + 0.00038853910518810153, + 0.0008981071296148002, + 0.009923330508172512, + -0.0077957152388989925, + -0.034906186163425446, + -0.0020361943170428276, + 0.0005308649269863963, + 0.006673730444163084, + 0.02431797794997692, + -0.012017701752483845, + 0.02092709019780159, + -0.004103554878383875, + 0.008834590204060078, + 0.01532547827810049, + 0.020478297024965286, + 0.015350411646068096, + 0.012774002738296986, + 0.009474536404013634, + 0.01061314344406128, + 0.005223461426794529, + -0.0007895447197370231, + 0.0360032394528389, + 0.009532713331282139, + 0.008286063559353352, + 0.00885121151804924, + 0.015549875795841217, + 0.03733299672603607, + -0.01005630660802126, + -0.009158718399703503, + 0.004907643888145685, + -0.0063454462215304375, + -0.004244841635227203, + 0.008718235418200493, + 0.014461134560406208, + -0.0019323067972436547, + 0.002256435574963689, + -0.0010196554940193892, + 0.008248664438724518, + -0.0154418321326375, + -0.005327349063009024, + 0.03377589210867882, + 0.025996798649430275, + 0.006150137633085251, + -0.016696792095899582, + 0.00558499014005065, + -0.03557106852531433, + -0.002260591136291623, + 0.007903758436441422, + -0.007085124962031841, + -0.01828419417142868, + -0.018600011244416237, + -0.012333519756793976, + 0.00019362026068847626, + -0.006129360292106867, + 0.021724946796894073, + -0.00917534064501524, + 0.01682145707309246, + -0.015258990228176117, + 0.00870161410421133, + -0.009324938990175724, + 0.012117433361709118, + -0.0006939682643860579, + 0.01939786784350872, + -0.00430925190448761, + -0.008768102154135704, + 0.008950944058597088, + 0.016439152881503105, + -0.005668099969625473, + -0.016447462141513824, + -0.0290053803473711, + 0.012798935174942017, + 0.015242368914186954, + 0.007733382750302553, + 0.004215753171592951, + 0.007359387818723917, + -0.0035882729571312666, + -0.0046541583724319935, + -0.018716365098953247, + -0.009457914158701897, + 0.01488499529659748, + 0.01254960522055626, + 0.008464750833809376, + -0.004093165975064039, + -0.02456730790436268, + 0.007471586111932993, + -0.0073676989413797855, + 0.004766356665641069, + 0.021060066297650337, + 0.0030085809994488955, + 0.016306176781654358, + 0.02180805616080761, + -0.006013006437569857, + -0.005298260599374771, + -0.02011261321604252, + 0.0217581894248724, + -0.006245714146643877, + 0.00025153750902973115, + -0.027708863839507103, + 0.0062166256830096245, + 0.0030542914755642414, + 0.0010596520733088255, + -0.025697601959109306, + 0.0041326433420181274 + ], + "a1d75aef-b074-4f53-83f9-9b37bb7cebe0": [ + -0.008901315741240978, + -0.007386612240225077, + -0.0036095886025577784, + 0.020684072747826576, + -0.008636534214019775, + -0.04881316423416138, + 0.01636969856917858, + 0.04102548584342003, + 0.008387329056859016, + 0.06046352908015251, + -0.024936143308877945, + 0.023409759625792503, + -0.008278300985693932, + -0.005517569836229086, + -0.0016256776871159673, + 0.03759890794754028, + -0.02414180152118206, + 0.03460843861103058, + 0.0345461368560791, + -0.031072834506630898, + 0.04604075103998184, + -0.01797395944595337, + -0.006853156257420778, + 0.030434245243668556, + -0.008613171987235546, + 0.00016171600145753473, + 0.011019564233720303, + -0.0009515568963252008, + -0.0247803907841444, + -0.004789421800523996, + 0.015474115498363972, + 0.01730421930551529, + 0.029826804995536804, + -0.02326958067715168, + 0.018067412078380585, + -0.05672544613480568, + 0.0006332355551421642, + 0.023814719170331955, + 0.009711233898997307, + 0.014134635217487812, + -0.0394679494202137, + 0.01008504256606102, + 0.006658464670181274, + 0.011494612321257591, + -0.03205408155918121, + 0.011323283426463604, + 0.006276868283748627, + -0.026415802538394928, + 0.007920068688690662, + -0.03806616738438606, + 0.0036738370545208454, + -0.022662142291665077, + 0.0004877033061347902, + 0.0014874464832246304, + 0.015178184024989605, + -0.00526836421340704, + -0.007857766933739185, + 0.06834466010332108, + 0.008029095828533173, + -0.0669117271900177, + 0.0006492976099252701, + -0.00665067695081234, + 0.047972094267606735, + 0.014469505287706852, + 0.001668509910814464, + 0.010435488075017929, + -0.0027568379882723093, + 0.001900193397887051, + -0.04012211412191391, + -0.015006855130195618, + 0.01861255057156086, + 0.038221921771764755, + -0.033362410962581635, + 0.006019874941557646, + -0.014150210656225681, + -0.006436515599489212, + 0.01705501414835453, + 0.006086070090532303, + -0.01842564530670643, + -0.007748739328235388, + -0.0065689063630998135, + -0.02149398997426033, + 0.01992087997496128, + 0.011564701795578003, + 0.06522958725690842, + 0.00023557724489364773, + -0.03361161798238754, + -0.054202236235141754, + -0.028238119557499886, + -0.03682013973593712, + 0.0044311885721981525, + 0.006121114827692509, + 0.00449738372117281, + -0.005093141458928585, + -0.01008504256606102, + 0.0022564795799553394, + 0.030963806435465813, + 0.017210768535733223, + 0.0030858672689646482, + -0.019687248393893242, + 0.011035139672458172, + 0.03647748380899429, + -0.02660270780324936, + 0.02990468218922615, + 0.024204103276133537, + 0.022677717730402946, + 0.0064053647220134735, + -0.022521963343024254, + -0.03781696408987045, + 0.06177185848355293, + -0.009236185811460018, + -0.015886861830949783, + -0.016245095059275627, + -0.021182483062148094, + -0.043548692017793655, + -0.06161610782146454, + -0.02791103720664978, + -0.03520030155777931, + -0.009656720794737339, + -0.02146283909678459, + 0.048844315111637115, + 0.006074388511478901, + 0.016042616218328476, + 0.0241729523986578, + 0.0038724227342754602, + 0.014928977936506271, + 0.002795776352286339, + 0.010684694163501263, + 0.02020123600959778, + 0.020263537764549255, + -0.01663447916507721, + -0.04211576282978058, + -0.01186063326895237, + -0.02636907622218132, + 0.006751916371285915, + 0.021447263658046722, + -0.0072814784944057465, + 0.06164725869894028, + -0.013737463392317295, + 0.04339294135570526, + -0.04227151349186897, + -0.03186717629432678, + 0.009002555161714554, + 0.01140894740819931, + 4.006395101896487e-5, + 0.01186063326895237, + -0.036041371524333954, + 0.04585384577512741, + -0.03214753419160843, + 0.011829482391476631, + -0.044420912861824036, + 0.006755810230970383, + 0.01973397471010685, + 0.0056149158626794815, + -0.01861255057156086, + -0.00058066874044016, + 0.017646877095103264, + 0.036197125911712646, + 0.014882252551615238, + -0.003726403694599867, + 0.013472682796418667, + -0.046414557844400406, + -0.01163479033857584, + -0.030044861137866974, + 0.03129088878631592, + 0.023549936711788177, + 0.027178995311260223, + 0.014469505287706852, + -0.03747430443763733, + 0.014337114989757538, + 0.02105788141489029, + -0.02573048695921898, + 0.004703757353127003, + 0.03482649475336075, + 0.006526073906570673, + 0.008909103460609913, + 0.031135136261582375, + 0.048190150409936905, + 0.031119560822844505, + -0.02678961120545864, + -0.030247339978814125, + -0.010606816969811916, + -0.004933493677526712, + 0.004524640738964081, + 0.005556507967412472, + 0.0017142625292763114, + 0.03166469931602478, + 0.009111583232879639, + -0.008932466618716717, + 0.012148777022957802, + -0.003290293738245964, + -0.029608750715851784, + -0.008823438547551632, + 0.04457666724920273, + -0.04588499665260315, + -0.036228276789188385, + -0.011260981671512127, + 0.018986357375979424, + 0.017397671937942505, + 0.014041182585060596, + -0.00748785212635994, + -0.05002804100513458, + -0.03548065945506096, + 0.030216189101338387, + -0.06423276662826538, + 0.04650801047682762, + -0.010887173004448414, + 0.0030079905409365892, + 0.03706934675574303, + 0.0014572691870853305, + 0.031586822122335434, + -0.051492124795913696, + -0.018783878535032272, + 0.012226654216647148, + 0.0009466895717196167, + 0.008348390460014343, + 3.175912206643261e-5, + 0.017444398254156113, + 0.00621067313477397, + -0.022459663450717926, + -0.008776713162660599, + 0.014119059778749943, + 0.004181982949376106, + -0.047131024301052094, + -0.0562581829726696, + -0.020450441166758537, + -0.02169647067785263, + 0.0438290499150753, + -0.04230266436934471, + -0.009952652268111706, + 0.034452687948942184, + 0.0013608966255560517, + 0.006140583660453558, + -0.035324905067682266, + 0.008636534214019775, + 0.003778970567509532, + 0.04276992753148079, + 0.023565512150526047, + 0.004727120511233807, + -0.032459039241075516, + 0.022272758185863495, + 0.020761948078870773, + -0.0006118194432929158, + 0.009391939267516136, + -0.010832659900188446, + 0.01593358814716339, + -0.006642889231443405, + 0.04426515847444534, + 0.029748929664492607, + -0.022553114220499992, + 0.01316896267235279, + 0.01353498362004757, + 0.015497478656470776, + 0.001531252171844244, + -0.008145910687744617, + 0.0491558201611042, + 0.03884493559598923, + -0.039779458194971085, + -0.007600773591548204, + -0.035574112087488174, + 0.007398293819278479, + 0.0102096451446414, + -0.0005845625419169664, + -0.034234631806612015, + 0.03759890794754028, + -0.02256868965923786, + 0.01643200032413006, + -0.03797271475195885, + 0.013893216848373413, + 0.03794156759977341, + -0.004236496519297361, + 0.0195314958691597, + -0.006440409459173679, + -0.02283347025513649, + 0.02256868965923786, + -0.0025699336547404528, + 0.008169273845851421, + 0.01384649146348238, + 0.018659275025129318, + 0.01929786615073681, + -0.017864933237433434, + 0.02526322565972805, + -0.00598483020439744, + 0.005303408484905958, + 0.01906423456966877, + -0.009243973530828953, + -0.022070279344916344, + 0.016354123130440712, + -0.044420912861824036, + -0.011113015934824944, + -0.009742384776473045, + -0.012359044514596462, + -0.006611738353967667, + 0.0048166788183152676, + -0.008122547529637814, + 0.018223166465759277, + -0.007959006354212761, + -0.005069778300821781, + -0.01769360341131687, + 0.019780701026320457, + -0.03283284977078438, + -0.006619526073336601, + -0.006202885415405035, + -0.012826304882764816, + 0.011206468567252159, + -0.017864933237433434, + 0.033082056790590286, + -0.014586320146918297, + -0.061927612870931625, + 0.030621148645877838, + 0.05127406865358353, + -0.01041991263628006, + 0.01053672842681408, + -0.02678961120545864, + -0.022210456430912018, + 0.005642172414809465, + 0.018051836639642715, + -0.01836334355175495, + 0.008823438547551632, + -0.025091897696256638, + 0.0456046424806118, + -0.005486418958753347, + -0.0819263681769371, + 0.015489690937101841, + 0.03697589412331581, + -0.03924989700317383, + 0.005459161940962076, + 0.005903059616684914, + -0.05613357946276665, + -0.001282046432606876, + -0.012413558550179005, + -0.009944864548742771, + -0.032926302403211594, + 0.010155132040381432, + -0.016463151201605797, + -0.06996449828147888, + -0.02638465166091919, + -0.024313129484653473, + -0.003574544098228216, + -1.1955302397836931e-5, + -0.01683695986866951, + 0.0009671322186477482, + 0.02060619555413723, + 0.011377797462046146, + 0.015123669989407063, + -0.0009291673195548356, + 0.013760826550424099, + 0.006234035827219486, + -0.028222544118762016, + 0.005455268081277609, + 0.0009695658809505403, + -0.0004804023774340749, + 0.002706218045204878, + 0.016027040779590607, + 0.03663323447108269, + 0.007935643196105957, + -0.022553114220499992, + -0.008940254338085651, + 0.012296742759644985, + 0.014376052655279636, + 0.012569312006235123, + -0.03538720682263374, + -0.021540716290473938, + -0.007565728854387999, + -0.01117531768977642, + -0.004139150492846966, + 0.019157687202095985, + -0.005856333766132593, + 0.011229831725358963, + 0.020730797201395035, + -0.03663323447108269, + 0.008317239582538605, + -0.018036261200904846, + -0.0048283603973686695, + -0.010007166303694248, + -0.036259427666664124, + 0.013332503847777843, + 0.0005242080660536885, + -0.016338547691702843, + 0.030699025839567184, + -0.0044545517303049564, + 0.013340291567146778, + -0.021353812888264656, + -0.021883374080061913, + 0.01841006986796856, + 0.014337114989757538, + -0.004022335633635521, + 0.01230453047901392, + -0.019157687202095985, + -0.022272758185863495, + -0.01794280856847763, + 0.018534673377871513, + -0.027381474152207375, + 0.012732853181660175, + -0.023331882432103157, + 0.039343349635601044, + -0.01660332828760147, + -0.0010211592307314277, + 0.01506915595382452, + -0.03144664317369461, + 0.009127158671617508, + -0.026696158573031425, + -0.020247962325811386, + 0.0034187904093414545, + 0.029764505103230476, + -0.03759890794754028, + -0.019391316920518875, + -0.02172762155532837, + 0.02789546176791191, + -0.0376923605799675, + 0.0020987791940569878, + 0.014321539551019669, + 0.014718710444867611, + 0.02747492678463459, + 0.03330010920763016, + 0.015606505796313286, + 0.026415802538394928, + 0.03647748380899429, + -0.05142982304096222, + -0.018285468220710754, + 0.04803439602255821, + 0.05563516914844513, + 0.013986669480800629, + 0.016541028395295143, + 0.013083298690617085, + 0.006911564152687788, + 0.00675970409065485, + -0.009890350513160229, + -0.008652109652757645, + -0.0034343658480793238, + -0.024328704923391342, + 0.04230266436934471, + 0.0206217709928751, + -0.008418479934334755, + 0.008948042057454586, + -0.02235063537955284, + -0.012117626145482063, + -0.0055526141077280045, + -0.0005159336724318564, + -0.0056499601341784, + 0.009952652268111706, + -0.004781634081155062, + -0.025200925767421722, + 0.00887016486376524, + -0.02613544650375843, + -0.03273939713835716, + -0.03819077089428902, + 0.000715492875315249, + 0.005626596976071596, + -0.00019955924653913826, + 0.0009783270070329309, + 0.028487324714660645, + -0.05987166613340378, + 0.015995889902114868, + -0.0018875383539125323, + 0.009586631320416927, + -0.026244474574923515, + -0.0005816422053612769, + 0.013044360093772411, + -0.03012273833155632, + -0.02548128180205822, + -0.02439100667834282, + 0.02440658211708069, + -0.01019406970590353, + 0.027116693556308746, + -0.0380973182618618, + -0.013714100234210491, + 0.005899165757000446, + 0.004723226651549339, + 0.003815962001681328, + -0.029063614085316658, + 0.004322160966694355, + -0.0536726750433445, + -0.0033642768394201994, + 0.006253505125641823, + -0.010116193443536758, + 0.0014319592155516148, + 0.00571226142346859, + 0.00318126636557281, + -0.017335370182991028, + -0.026275625452399254, + -0.025543583557009697, + -0.014329327270388603, + -0.006642889231443405, + 0.0044428701512515545, + -0.014477293007075787, + -0.0014864730183035135, + -0.031384341418743134, + 0.003907467238605022, + -0.006436515599489212, + 0.045978449285030365, + -0.005743412300944328, + 0.007608561310917139, + 0.019983181729912758, + -0.0170705895870924, + -0.05136752128601074, + -0.01797395944595337, + -0.03326895833015442, + -0.04625880718231201, + -0.012265592813491821, + 0.02640022709965706, + -0.01817644014954567, + -0.021182483062148094, + 0.020310264080762863, + 0.011588064022362232, + -0.001257709925994277, + -0.013511620461940765, + -0.014267025515437126, + -0.015575355850160122, + 0.0010552303865551949, + -0.024266403168439865, + -0.0012616037856787443, + -0.015653232112526894, + -0.006654570810496807, + -0.0059264227747917175, + 0.025870665907859802, + -0.033331260085105896, + -0.014017820358276367, + 0.05127406865358353, + -0.027646256610751152, + 0.002758784918114543, + -0.01506136916577816, + -0.016509877517819405, + 0.011486824601888657, + -0.038035016506910324, + -0.007106255739927292, + 0.0067908549681305885, + 0.0009077512077055871, + 0.029328394681215286, + -0.00036237036692909896, + 0.0019021403277292848, + 0.008465205319225788, + 0.007955112494528294, + 0.028487324714660645, + 0.0001715722755761817, + -0.021976826712489128, + 0.005322877783328295, + 0.018783878535032272, + 0.032490190118551254, + 0.010217432864010334, + -0.03834652528166771, + 0.02263099141418934, + -0.02727244794368744, + -0.006662358064204454, + 0.010155132040381432, + 0.034421537071466446, + -0.013963306322693825, + 0.03082362934947014, + 0.00841069221496582, + 0.027101118117570877, + -0.019547071307897568, + 0.02596411667764187, + -0.01929786615073681, + -0.004629774484783411, + -0.005661641713231802, + -0.04143044725060463, + 0.0487508624792099, + -0.029515298083424568, + -0.025091897696256638, + -0.009243973530828953, + -0.0050619905814528465, + 0.0005091194179840386, + 0.03057442232966423, + 0.00899476744234562, + -0.02211700566112995, + -0.006522180046886206, + -0.024219676852226257, + 0.025154199451208115, + -0.02194567583501339, + 0.023004800081253052, + 0.03261479362845421, + 0.0005436772480607033, + 0.039343349635601044, + 0.002758784918114543, + -0.019811851903796196, + 0.029390696436166763, + -0.022272758185863495, + -0.0077331638894975185, + -0.02040371485054493, + -0.017164042219519615, + 0.05177248269319534, + -0.03398542478680611, + -0.011798331514000893, + -0.010334248654544353, + -0.006751916371285915, + 0.010692481882870197, + -0.014282600954174995, + -0.01769360341131687, + -0.01474986132234335, + 0.05124291777610779, + 0.007982369512319565, + 0.014087908901274204, + 0.020684072747826576, + 0.0031131242867559195, + -0.03541835770010948, + 0.03370507061481476, + 0.013714100234210491, + 0.02789546176791191, + 0.006794748827815056, + 0.004104106221348047, + 0.016930410638451576, + 0.015754472464323044, + -0.012888606637716293, + -0.01576226018369198, + 9.436475374968722e-5, + 0.03875148296356201, + 0.002092938404530287, + 0.010334248654544353, + -0.010731419548392296, + 0.03417233005166054, + -0.010684694163501263, + 0.008971404284238815, + 0.029593175277113914, + 0.026945365592837334, + 0.00637810816988349, + 0.006786961108446121, + 0.04457666724920273, + 0.013488258235156536, + 0.0004400037869345397, + -0.0068025365471839905, + 0.02507632225751877, + -0.03323780745267868, + 0.05806492641568184, + -0.013020996935665607, + 0.012296742759644985, + 0.0056811110116541386, + -0.020699648186564445, + -0.019780701026320457, + -0.022007977589964867, + -0.012413558550179005, + 0.01974955014884472, + 0.002871706150472164, + 0.019313441589474678, + -0.018067412078380585, + 0.013254627585411072, + 0.008192637003958225, + 0.01175939291715622, + 0.009212822653353214, + -0.01682138442993164, + -0.026742884889245033, + -0.013784189708530903, + 0.003360382979735732, + 0.007121831178665161, + 0.02284904569387436, + -0.02040371485054493, + 0.024998445063829422, + -0.01638527400791645, + 0.01797395944595337, + 0.036882441490888596, + 0.01117531768977642, + -0.012164352461695671, + 0.008776713162660599, + 0.016011465340852737, + 0.01836334355175495, + -0.008924678899347782, + -0.03566756471991539, + 0.016681205481290817, + -0.006054919213056564, + -0.013207901269197464, + 0.018114138394594193, + 0.004512959159910679, + -0.02060619555413723, + 0.022303909063339233, + 0.019157687202095985, + 0.022942498326301575, + -1.8009004634222947e-5, + 0.0245779100805521, + 0.002400551689788699, + 0.030029285699129105, + -0.0014952340861782432, + -0.0019255033694207668, + -0.00046044643386267126, + 0.009469816461205482, + 0.024686938151717186, + 0.011899571865797043, + -0.013457107357680798, + -0.011821694672107697, + 0.005864121485501528, + -0.008223787881433964, + -0.010583453811705112, + -0.03417233005166054, + -0.024749239906668663, + -0.03192947804927826, + 0.020995579659938812, + 0.013612860813736916, + -0.0011399213690310717, + -0.011206468567252159, + 0.038626883178949356, + -0.012257805094122887, + -0.005829076748341322, + 0.031057259067893028, + -0.0019060340709984303, + 0.003921095747500658, + 0.008371753618121147, + 0.003675783984363079, + 0.010046103969216347, + -0.0063391695730388165, + 0.019375741481781006, + 0.011502400040626526, + -0.011440098285675049, + -0.028300421312451363, + -0.03102610819041729, + 0.003183213295415044, + -0.022553114220499992, + 0.0032922406680881977, + 0.013457107357680798, + -0.016977136954665184, + -0.019593797624111176, + 0.004302692133933306, + -0.029063614085316658, + -0.0058485460467636585, + 0.015590930357575417, + -0.018565824255347252, + 0.005007477011531591, + 0.040869731456041336, + 0.01819201558828354, + -0.007324310950934887, + 0.04034017026424408, + 0.015092519111931324, + 0.015310574322938919, + -0.025356678292155266, + 0.021992402151226997, + -0.010972837917506695, + -0.04248956963419914, + -0.02439100667834282, + 0.00631970027461648, + 0.009609994478523731, + -0.012257805094122887, + 0.002772413194179535, + -0.002198072150349617, + 0.033580467104911804, + -0.003642686177045107, + -0.018254317343235016, + -0.0050736721605062485, + -0.023160554468631744, + -0.031384341418743134, + -0.005829076748341322, + 0.018347768113017082, + 0.013418168760836124, + -0.00792396254837513, + -0.0004760218143928796, + -0.0316023975610733, + 0.03395427390933037, + -0.009547692723572254, + 0.022054703906178474, + 0.0009160256013274193, + 0.040464773774147034, + 0.00022231385810300708, + -0.006167840678244829, + 0.00669740280136466, + 0.030745752155780792, + -0.028066789731383324, + 0.04893776774406433, + 0.01441499125212431, + -0.022428512573242188, + 0.007289266213774681, + 0.02750607766211033, + 0.01747554913163185, + -0.050869110971689224, + 0.041586197912693024, + -0.01529499888420105, + 0.003270824672654271, + 0.011393372900784016, + -0.014843313954770565, + 0.005206062458455563, + 0.006125008687376976, + -0.020948853343725204, + 0.033082056790590286, + 0.03572986647486687, + -0.002542676869779825, + 0.04921812191605568, + 0.00044316754792816937, + 0.0031209117732942104, + 0.005992617923766375, + -0.018690425902605057, + -0.020076632499694824, + 0.02462463639676571, + -0.020902127027511597, + -0.043299488723278046, + -0.0033117099665105343, + -0.008418479934334755, + -0.049965739250183105, + 0.01842564530670643, + -0.03208523243665695, + 0.030231764540076256, + -0.03214753419160843, + 0.025154199451208115, + -0.012312318198382854, + -0.009243973530828953, + 0.007791571784764528, + -0.0120864761993289, + 0.013908792287111282, + -0.008652109652757645, + 0.029141489416360855, + 0.0030644512735307217, + -0.027630681172013283, + 0.02147841453552246, + -0.019827427342534065, + -0.02372126653790474, + 0.022335059940814972, + 0.025325527414679527, + -0.022646566852927208, + 0.05426453799009323, + 0.05161672830581665, + 0.0012538160663098097, + -0.023316306993365288, + -0.014742073602974415, + -0.0071023618802428246, + -0.007803252898156643, + 0.002139664487913251, + 0.0013560294173657894, + -0.006230141967535019, + -0.021898949518799782, + 0.02484269253909588, + -0.003068345133215189, + 0.01496012881398201, + -0.015217122621834278, + 0.0005310222622938454, + 0.003580384887754917, + 0.005311196204274893, + 0.014150210656225681, + 0.03476419299840927, + 0.0036134824622422457, + 0.0019439990865066648, + -0.007912280969321728, + 0.004061273764818907, + -0.0016850588144734502, + -0.0028911754488945007, + 0.013714100234210491, + 0.01909538544714451, + -0.0033564891200512648, + -0.00431437324732542, + -0.009820261970162392, + 0.03479534387588501, + 0.008192637003958225, + 0.04034017026424408, + -0.038253072649240494, + -0.0077331638894975185, + -0.021135756745934486, + 0.018316617235541344, + -0.012584887444972992, + -0.051087167114019394, + -0.016790233552455902, + -0.02174319699406624, + -0.009898138232529163, + -0.010046103969216347, + -0.0018982464680448174, + 0.01728864386677742, + 0.03884493559598923, + 0.03523145243525505, + 0.026774035766720772, + -0.009656720794737339, + 0.016354123130440712, + 0.0012022227747365832, + -0.014508443884551525, + 0.02545013092458248, + 0.001447534654289484, + 0.016089342534542084, + 0.009500966407358646, + 0.01117531768977642, + 0.03342471271753311, + 0.010357611812651157, + -0.021758772432804108, + -0.022926922887563705, + 0.014243662357330322, + -0.01473428588360548, + 0.00443508243188262, + 0.02749050222337246, + 0.0038821573834866285, + 0.01683695986866951, + 0.009018130600452423, + 0.009321849793195724, + 0.002735421760007739, + 0.019406892359256744, + -0.007604667451232672, + -0.005264470353722572, + -0.025387829169631004, + -0.02146283909678459, + -0.036695536226034164, + -0.008340602740645409, + -0.008161486126482487, + -0.004232602659612894, + -0.003475251141935587, + 0.01731979474425316, + -0.015925800427794456, + -0.014321539551019669, + 0.00776042090728879, + -0.019687248393893242, + -0.007480064406991005, + -0.008924678899347782, + 0.020045481622219086, + 0.021540716290473938, + 0.005836864467710257, + -0.03597906976938248, + -0.021416114643216133, + -0.0028814407996833324, + -0.007838297635316849, + -0.004392250441014767, + -0.011447886005043983, + -0.0007125725387595594, + -0.009532117284834385, + -0.034919947385787964, + -0.011338858865201473, + 0.008971404284238815, + 0.01362064853310585, + -0.04009096324443817, + 0.025590309873223305, + 0.015995889902114868, + 5.451374454423785e-5, + 0.0035005612298846245, + 0.020730797201395035, + 0.010396549478173256, + -0.02992025762796402, + -0.018487947061657906, + 0.05547941476106644, + 0.01397109404206276, + 0.01752227544784546, + 0.009999378584325314, + 0.0006814217776991427, + -0.0241729523986578, + 0.004158619791269302, + 0.01383091602474451, + 0.023207278922200203, + -0.0034363127779215574, + 0.007441126275807619, + -0.02347206138074398, + 0.01108965277671814, + -0.009617782197892666, + -0.004263753537088633, + 0.026041993871331215, + 0.01349604595452547, + 0.01749112457036972, + 0.01661890372633934, + -0.0206217709928751, + 0.029593175277113914, + -0.0065572247840464115, + -0.008262726478278637, + 0.01703943870961666, + -0.04049592465162277, + -0.031166287139058113, + -0.03706934675574303, + 0.026929790154099464, + 0.023004800081253052, + -0.016494302079081535, + 0.003940565045922995, + 0.003270824672654271, + 0.006627313792705536, + 0.049280423671007156, + 0.015536417253315449, + 0.033082056790590286, + -0.014773224480450153, + 0.01686811074614525, + 0.009243973530828953, + 0.0053734974935650826, + 0.03326895833015442, + 0.023627813905477524, + -0.0024044455494731665, + 0.012047537602484226, + 0.019671674817800522, + 0.0009875749237835407, + 0.011159742251038551, + -0.0029048037249594927, + 0.01638527400791645, + 0.0042676473967731, + -0.04523083195090294, + 0.0038549003656953573, + -0.0294997226446867, + -0.008060246706008911, + -0.01705501414835453, + -0.0079901572316885, + -0.005579871125519276, + -0.009929289110004902, + -0.008691048249602318, + -0.009890350513160229, + -0.01864369958639145, + -0.015076943673193455, + -0.01040433719754219, + -0.025823939591646194, + -0.012982058338820934, + 0.00602766266092658, + 0.034670740365982056, + -0.005758987739682198, + 0.001711342134512961, + -0.003128699492663145, + -0.01161921489983797, + 0.002860024571418762, + -0.00548252509906888, + 0.033767372369766235, + -0.009563268162310123, + 0.01951592043042183, + 0.001912848325446248, + -0.01770917885005474, + -0.03125973790884018, + 0.014477293007075787, + 0.011821694672107697, + -0.008449629880487919, + -0.0442340113222599, + -0.014126847498118877, + 0.0014592161169275641, + -0.021431688219308853, + 0.00030663982033729553, + 0.018487947061657906, + -0.007896705530583858, + 0.053953032940626144, + 0.01006946712732315, + 0.024702513590455055, + -0.014033394865691662, + -0.02174319699406624, + -0.011370009742677212, + 0.025372253730893135, + -0.017631301656365395, + -0.04040247201919556, + -0.005899165757000446, + -0.010022740811109543, + 0.028627503663301468, + 0.025403404608368874, + -0.0015818719984963536, + -0.04167965054512024, + -0.012647188268601894, + 0.05691234767436981, + -0.002466746838763356, + -0.017164042219519615, + -0.004400037694722414, + -0.017148466780781746, + -0.008418479934334755, + 1.4434582226385828e-5, + 0.009905925951898098, + 0.0014017820358276367, + 0.016790233552455902, + 0.002782147843390703, + -0.007043954450637102, + 0.00132877251598984, + 0.004773846361786127, + -0.015754472464323044, + -0.012351256795227528, + -0.032459039241075516, + 0.006607844494283199, + -0.0732041671872139, + -0.021587442606687546, + -0.00014796588220633566, + 0.011681516654789448, + 0.003726403694599867, + -0.0033233915455639362, + 0.01529499888420105, + 0.009212822653353214, + -0.019796276465058327, + -0.010692481882870197, + 0.03205408155918121, + -0.007040060590952635, + -0.006498816888779402, + 0.017896084114909172, + -0.00997601542621851, + 0.014827738516032696, + 0.009633357636630535, + -0.013355867005884647, + 0.020076632499694824, + 0.006771385669708252, + 0.0017648824723437428, + 0.01010061800479889, + 0.02038813941180706, + -0.026493679732084274, + 0.006755810230970383, + 0.040246717631816864, + -0.015871286392211914, + 0.010723631829023361, + -0.021976826712489128, + -0.028440598398447037, + -0.012888606637716293, + 0.0034343658480793238, + -0.02462463639676571, + -0.009719021618366241, + 0.009695658460259438, + 0.00830945186316967, + 0.02194567583501339, + -0.0016918729525059462, + 0.04513737931847572, + 0.012436921708285809, + 0.013316929340362549, + 0.002229222794994712, + -0.007515109144151211, + -0.00730484165251255, + -0.007573516573756933, + -0.026540406048297882, + 0.002645863452926278, + -0.013371442444622517, + -0.012982058338820934, + 0.01286524347960949, + 0.0029885212425142527, + 0.009929289110004902, + -0.017413247376680374, + -0.026929790154099464, + -0.004026229493319988, + 0.006950502283871174, + 0.01615164428949356, + -0.021353812888264656, + -0.008823438547551632, + 0.007861660793423653, + 0.07015140354633331, + 0.022895772010087967, + 0.01305993553251028, + 0.028939010575413704, + -0.02302037551999092, + 0.0082938764244318, + 0.00865989737212658, + 0.022070279344916344, + 0.02878325618803501, + -0.004014547914266586, + 0.0033876397646963596, + 0.0018077146960422397, + -0.009111583232879639, + 0.032677095383405685, + 0.003475251141935587, + 0.015092519111931324, + 0.014056758023798466, + 0.00985919963568449, + -0.0041975583881139755, + -0.014119059778749943, + -0.004201452247798443, + -0.0007169530726969242, + 0.006736341398209333, + -0.010458851233124733, + 0.004633668344467878, + -0.009064856916666031, + 0.024095075204968452, + -0.013675161637365818, + 0.010684694163501263, + -0.004808891098946333, + 0.04653916135430336, + 0.014843313954770565, + 0.03616597503423691, + 0.022708868607878685, + -0.01504579372704029, + 0.046881821006536484, + 0.01441499125212431, + 0.035075701773166656, + 0.003938618116080761, + -0.015263848006725311, + -0.007180239073932171, + -0.019360166043043137, + -0.003921095747500658, + -0.030730176717042923, + -0.015474115498363972, + 0.010700269602239132, + 0.0005135000101290643, + -0.0070478483103215694, + -0.020777523517608643, + -0.012834092602133751, + 0.0010464692022651434, + 0.0017794843297451735, + -0.03255249187350273, + -0.030449820682406425, + -0.03647748380899429, + 0.00725811580196023, + -0.012834092602133751, + -0.022085854783654213, + -0.0292193666100502, + 0.01275621633976698, + 0.01140116062015295, + 0.019188838079571724, + 0.007659181021153927, + -0.015287211164832115, + -0.016914835199713707, + 0.003521977225318551, + 0.0035492340102791786, + -0.0071023618802428246, + -0.010902748443186283, + 0.019017508253455162, + 0.0029690521769225597, + -0.0076552871614694595, + -0.009345212951302528, + 0.009944864548742771, + -0.026073144748806953, + 0.008247151039540768, + 0.036415182054042816, + -0.00016463638166897, + 0.009384151548147202, + -0.052426647394895554, + -0.00011298216850263998, + -0.004166407510638237, + -7.24010678823106e-5, + 0.014586320146918297, + -0.012109838426113129, + -0.00558765884488821, + -0.00015624029038008302, + -0.016681205481290817, + 0.013932155445218086, + -0.017117315903306007, + -0.004045698791742325, + -0.003784811357036233, + -0.004890661686658859, + -0.014936765655875206, + -0.03166469931602478, + -0.025418980047106743, + -0.021821072325110435, + 0.018659275025129318, + 0.005844652187079191, + -0.026462528854608536, + -0.015918012708425522, + 0.0034304719883948565, + 0.026976516470313072, + -0.011198680847883224, + 0.002836661646142602, + -0.007561834994703531, + -0.03205408155918121, + 0.002462852979078889, + -0.00207346910610795, + -0.02261541597545147, + -0.011829482391476631, + 0.019453618675470352, + 0.0032435678876936436, + -0.0014592161169275641, + 0.0049062371253967285, + 0.01814528927206993, + -0.006833687424659729, + -0.005805713590234518, + 0.024936143308877945, + -0.014983491972088814, + -0.0003854900423903018, + 0.01328577846288681, + -0.009586631320416927, + 0.006744129117578268, + -0.0014631099766120315, + 0.002877546939998865, + -0.0023635602556169033, + 0.022895772010087967, + 0.0012372672790661454, + 0.0036329517606645823, + 0.023207278922200203, + 0.01596473902463913, + -0.0072814784944057465, + 0.019656099379062653, + 0.0004784554475918412, + -0.002758784918114543, + 0.03258364275097847, + 0.017615726217627525, + -0.03174257278442383, + -0.0228023212403059, + -0.019422467797994614, + -0.0017658559372648597, + 0.010131768882274628, + 0.013005421496927738, + 0.005128185730427504, + 0.0057823508977890015, + -0.058189526200294495, + -0.007888917811214924, + 0.028020065277814865, + -0.01724191941320896, + 2.807822784234304e-5, + 0.007635817863047123, + 0.010614604689180851, + -0.006993334740400314, + -0.004618092905730009, + 0.012989846058189869, + 0.01284966804087162, + -0.011556914076209068, + 0.003152062650769949, + 0.005486418958753347, + 0.03766120970249176, + -0.0062379296869039536, + -0.005202168598771095, + -0.03217868506908417, + 0.025792788714170456, + 0.004653137642890215, + 0.004104106221348047, + -0.029546448960900307, + -0.002830820856615901, + -0.0030410881154239178, + -0.006187309976667166, + -0.002087097615003586, + -0.01161921489983797, + -0.00010732393275247887, + 0.0048283603973686695, + -0.010801509022712708, + 0.012989846058189869, + -0.026914214715361595, + 0.020902127027511597, + -0.004649243783205748, + -0.003360382979735732, + -0.0195314958691597, + -0.00874556228518486, + 0.007635817863047123, + 0.03217868506908417, + 0.004859510809183121, + -0.019391316920518875, + -0.012919757515192032, + -0.006008193362504244, + 0.014804375357925892, + 0.007378824520856142, + -0.031119560822844505, + -0.013052147813141346, + 0.01084044761955738, + 0.00047918554628267884, + 0.026244474574923515, + 0.008286088705062866, + -0.016447575762867928, + 0.009041493758559227, + -0.004376675002276897, + 0.005280045326799154, + -0.0002998255949933082, + 0.011120803654193878, + -0.044420912861824036, + 0.025855090469121933, + 0.001512756454758346, + 0.004481808748096228, + 0.004902343265712261, + 0.010178495198488235, + -0.02856520190834999, + 0.006058813072741032, + 0.0030858672689646482, + -0.01724191941320896, + 0.01682138442993164, + 0.008138122968375683, + 0.0082938764244318, + -0.0055526141077280045, + -0.013644011691212654, + 0.008714411407709122, + -0.0027802009135484695, + 0.003919148817658424, + 0.006300231441855431, + -0.027147844433784485, + 0.009726809337735176, + 0.00359985395334661, + -0.005116504151374102, + 0.014119059778749943, + 0.019889729097485542, + 0.025325527414679527, + -0.008550870232284069, + 0.01841006986796856, + 0.031181860715150833, + 0.030309641733765602, + -0.0003375471569597721, + -0.005556507967412472, + -0.003187107155099511, + 0.005330665502697229, + 0.0006361559499055147, + 0.017459973692893982, + 0.003891892032697797, + 0.013348079286515713, + 0.0027685193344950676, + -0.04189770668745041, + -0.01063018012791872, + 0.007378824520856142, + -0.00022499087208416313, + -0.012218866497278214, + 0.007378824520856142, + -0.01571553386747837, + -0.010552302934229374, + 0.010014954023063183, + 0.007230858784168959, + 0.00820042472332716, + 0.003558968659490347, + -0.010661331005394459, + 0.011977448128163815, + 0.012499222531914711, + -0.023113828152418137, + 0.0018885118188336492, + -0.008138122968375683, + 0.006642889231443405, + 0.0024336492642760277, + 0.012935332953929901, + 0.020450441166758537, + -0.029795654118061066, + 0.0062496112659573555, + 0.024998445063829422, + -0.005992617923766375, + 0.02080867439508438, + -0.00807582214474678, + -0.007873342372477055, + 0.037754662334918976, + -0.001907007535919547, + 0.035542961210012436, + 0.00943087786436081, + 0.009002555161714554, + -0.0074333385564386845, + -0.008208212442696095, + 0.0107547827064991, + 0.0018972730031237006, + 0.013293566182255745, + 0.014422778971493244, + -0.014383840374648571, + -0.001603288110345602, + 0.003605694742873311, + 0.013573922216892242, + 0.013239052146673203, + 0.03722510114312172, + 0.029826804995536804, + -0.015030218288302422, + -0.02725687250494957, + 0.018238741904497147, + -0.004407825414091349, + 0.008068034425377846, + 0.005941998213529587, + 0.023861445486545563, + 0.0006974838906899095, + 0.010046103969216347, + -0.02392374537885189, + -0.010365398600697517, + -0.012982058338820934, + -0.0014076227089390159, + 0.0049841138534247875, + 0.031150711700320244, + 0.007075105328112841, + 0.022771170362830162, + 0.013932155445218086, + -0.019313441589474678, + 0.0064793480560183525, + -0.02789546176791191, + -0.013457107357680798, + -0.0065572247840464115, + -0.02124478481709957, + -0.009516541846096516, + 6.789881445001811e-5, + 0.0017551478231325746, + 0.005918635055422783, + -0.006642889231443405, + 0.007585198152810335, + -0.017849357798695564, + -0.0011457620421424508, + 0.001364790485240519, + -0.03485764563083649, + -0.01339480560272932, + -0.027163419872522354, + 0.011899571865797043, + -0.004143044352531433, + 0.009018130600452423, + -0.013573922216892242, + -0.015918012708425522, + -0.0016908994875848293, + 0.0055526141077280045, + 0.02618217281997204, + -0.0079901572316885, + 0.011673728935420513, + 0.006097751669585705, + -0.03682013973593712, + 0.029406271874904633, + -0.031586822122335434, + 0.020933277904987335, + -0.023129403591156006, + 0.027147844433784485, + -0.015038006007671356, + 0.014002244919538498, + -0.017179617658257484, + 0.01108965277671814, + -0.00498021999374032, + 0.01683695986866951, + 0.011307707987725735, + -0.02504517138004303, + -0.03264594450592995, + 0.008901315741240978, + 0.013644011691212654, + -0.007040060590952635, + 0.0069582900032401085, + -0.012366832233965397, + 0.001132133649662137, + 0.006136690266430378, + 0.0014757649041712284, + -0.003611535532400012, + -0.01615164428949356, + -0.005501994397491217, + 0.0025056852027773857, + -0.0140645457431674, + -0.016572177410125732, + 0.013628436252474785, + -0.011050715111196041, + 0.0123901953920722, + -0.006938820704817772, + 0.023409759625792503, + 0.00865989737212658, + 0.0017327582463622093, + 0.00698554702103138, + 0.0036874653305858374, + 0.062394872307777405, + -0.004653137642890215, + 0.024562334641814232, + -0.03283284977078438, + 0.01217992790043354, + -0.014991279691457748, + -0.016556601971387863, + -0.0033740114886313677, + 0.00780714675784111, + -0.01731979474425316, + -0.026851912960410118, + -0.013963306322693825, + 0.030652299523353577, + -0.019391316920518875, + 0.011354434303939342, + 0.004898449406027794, + 0.004863404668867588, + -0.022226031869649887, + 0.04009096324443817, + -0.019157687202095985, + 0.007250328082591295, + 0.0016500141937285662, + -0.003722510067746043, + -0.0033817989751696587, + -0.028689805418252945, + 0.01861255057156086, + 0.006993334740400314, + -0.014843313954770565, + -0.0206217709928751, + 0.011611427180469036, + 0.0014426673296838999, + 0.020014332607388496, + 0.03526260331273079, + -0.013067723251879215, + -0.034047726541757584, + -0.03230328857898712, + 0.008021308109164238, + -0.02638465166091919, + -0.029343970119953156, + -0.011447886005043983, + 0.01541960146278143, + -0.007861660793423653, + -0.0035784379579126835, + 0.004777740221470594, + 0.01640084944665432, + -0.007406081538647413, + 0.0038938389625400305, + -0.020699648186564445, + -0.020325839519500732, + 0.010785933583974838, + 0.03171142190694809, + -0.0001714505924610421, + 0.02256868965923786, + -0.020543893799185753, + -0.007604667451232672, + 0.021556291729211807, + -0.03230328857898712, + 0.012857455760240555, + -0.01397109404206276, + 0.02573048695921898, + 0.01792723499238491, + -0.030060436576604843, + -0.017008287832140923, + 0.009391939267516136, + 0.042832229286432266, + -0.0007286345935426652, + 0.017459973692893982, + -0.012265592813491821, + -0.02524765208363533, + -0.009485391899943352, + -0.007269797381013632, + -0.006420940160751343, + -0.006140583660453558, + 0.0011272663250565529, + -0.010957262478768826, + -0.014648621901869774, + -0.005661641713231802, + 0.015006855130195618, + -0.006506604608148336, + 0.010746994987130165, + 0.006167840678244829, + -0.009820261970162392, + -0.0031150709837675095, + 0.00038622014108113945, + -0.016089342534542084, + -0.003504455089569092, + -0.019391316920518875, + -0.024001622572541237, + 0.0025699336547404528, + -0.02015450969338417, + 0.02350321225821972, + 0.02618217281997204, + -0.007277584634721279, + -0.000539783388376236, + -0.016930410638451576, + 0.001418330823071301, + -0.0026731204707175493, + -0.0032747185323387384, + -0.006187309976667166, + 0.009999378584325314, + 0.011307707987725735, + 0.008434055373072624, + 0.006814218126237392, + -0.014547381550073624, + -0.011463461443781853, + -0.017678027972579002, + 0.00470765121281147, + 0.017366521060466766, + -0.017382096499204636, + -0.006175628397613764, + -0.004575260449200869, + 0.10703384131193161, + 0.004341630265116692, + 0.007012803573161364, + 0.00797458179295063, + 0.011993023566901684, + -0.02769298292696476, + 0.003712775418534875, + -0.005751200020313263, + 0.013464895077049732, + 0.007717588450759649, + -0.010879386216402054, + -0.020107783377170563, + 0.027583954855799675, + 0.004571367055177689, + -0.02217930555343628, + -0.001192488125525415, + 0.026306774467229843, + 0.015349512919783592, + 0.02236621081829071, + 0.014477293007075787, + -0.006572800222784281, + -0.012156564742326736, + -0.0060042995028197765, + 0.016696780920028687, + -0.004240390378981829, + 0.019624948501586914, + -0.012647188268601894, + 0.01186063326895237, + 0.018020685762166977, + 0.03361161798238754, + 0.0014524018624797463, + -0.01328577846288681, + 0.006393683608621359, + -0.021135756745934486, + 0.0011642578756436706, + 0.005470843520015478, + -0.01084044761955738, + 0.00987477507442236, + -0.015100306831300259, + 0.007156875915825367, + -0.004594729747623205, + 0.008286088705062866, + 0.022226031869649887, + 0.02482711710035801, + -0.009446453303098679, + 0.006304125301539898, + -0.00403791107237339, + -0.00520995631814003, + 0.006631207652390003, + -0.00232267496176064, + -0.013332503847777843, + -0.020761948078870773, + 0.006522180046886206, + 0.005704473704099655, + 0.005965361371636391, + -0.015785623341798782, + 0.011665941216051579, + -0.009898138232529163, + -0.012701702304184437, + -0.003105336567386985, + -0.02211700566112995, + 0.007507321424782276, + -0.01372967567294836, + -0.026960941031575203, + -0.017646877095103264, + -0.026696158573031425, + -0.005903059616684914, + -0.018752727657556534, + -0.0029009098652750254, + -0.004065167624503374, + -0.023690115660429, + 0.004294904414564371, + -0.0074216569773852825, + -0.03398542478680611, + -0.013137812726199627, + 0.011486824601888657, + 3.391898644622415e-5, + 0.020948853343725204, + 0.026275625452399254, + -0.0019342644372954965, + 0.014633046463131905, + 0.009719021618366241, + -0.015271635726094246, + -0.01993645541369915, + 0.011222044005990028, + -0.008457417599856853, + 0.011689304374158382, + -0.021431688219308853, + 0.011720455251634121, + -0.020216811448335648, + -0.027163419872522354, + -0.012475859373807907, + 0.0028756000101566315, + -0.0022662142291665077, + 0.005560401827096939, + 0.004345524124801159, + -0.02040371485054493, + -0.026446953415870667, + 0.02105788141489029, + 0.0034538351465016603, + 0.0018972730031237006, + 0.01586349867284298, + -0.008722199127078056, + -0.002682854887098074, + -0.002192231360822916, + -0.0033233915455639362, + 0.025091897696256638, + 0.0068804132752120495, + -0.012779579497873783, + 0.017537850886583328, + 0.01682138442993164, + -0.0153962392359972, + 0.006455984897911549, + 0.0018262104131281376, + -0.012211078777909279, + 0.006962183862924576, + 0.01429038867354393, + 0.003732244484126568, + -0.010637967847287655, + -0.028861133381724358, + -0.02306710183620453, + 0.020123358815908432, + -0.010279734618961811, + -0.02194567583501339, + -0.003738085273653269, + 0.011455673724412918, + 0.0024219676852226257, + -0.0035414465237408876, + -0.013838703744113445, + -0.0025777213741093874, + -0.004878980107605457, + 0.01884618028998375, + 0.005299514625221491, + -0.005868015345185995, + 0.017179617658257484, + 0.0007992104510776699, + 0.0016519611235707998, + -0.004750483203679323, + 0.026026418432593346, + -0.022537538781762123, + 0.02772413194179535, + -0.003329232335090637, + 0.007522896863520145, + 0.015692170709371567, + 0.0037556076422333717, + 0.005097034852951765, + -0.011393372900784016, + -0.015567568130791187, + -0.0041469382122159, + 0.0035414465237408876, + 0.0038879981730133295, + -0.021976826712489128, + 0.0008045644499361515, + 0.008558657951653004, + 0.006366426590830088, + -0.00476995250210166, + -0.0165877528488636, + 0.00887016486376524, + -0.018114138394594193, + 0.0021007261238992214, + -0.0020773629657924175, + -0.0033740114886313677, + 0.004855616949498653, + -0.0028171923477202654, + -0.02104230597615242, + -0.004618092905730009, + 0.005416329950094223, + 0.009469816461205482, + 0.009820261970162392, + -0.0015458540292456746, + -0.0027704662643373013, + -0.006440409459173679, + 0.00874556228518486, + -0.0292193666100502, + 0.006701296661049128, + 0.020730797201395035, + 0.006771385669708252, + 0.0053189839236438274, + -0.011253193952143192, + 0.018737152218818665, + -0.005019158124923706, + -0.007059529889374971, + 0.010334248654544353, + 0.010264159180223942, + 0.001973202917724848, + -0.017444398254156113, + -0.001991698518395424, + -0.026010842993855476, + 0.0050736721605062485, + -0.005412436090409756, + -0.012802941724658012, + 0.0217120461165905, + -0.004236496519297361, + -0.0016977137420326471, + -0.010988413356244564, + -0.014757649041712284, + 0.022537538781762123, + 0.017818206921219826, + 0.012109838426113129, + -0.016042616218328476, + 0.00017315414152108133, + -0.002787988632917404, + 0.0201389342546463, + 0.00326498388312757, + 0.0011574436211958528, + -0.017802631482481956, + -0.016478726640343666, + -0.01383091602474451, + -0.011689304374158382, + -0.012242229655385017, + -0.026073144748806953, + -0.02773970738053322, + 0.019329017028212547, + 0.002515419851988554, + -0.012008599005639553, + -0.0038354313001036644, + 0.012218866497278214, + 0.01207090076059103, + 0.01107407733798027, + 0.02770855650305748, + 0.016478726640343666, + 0.004170301370322704, + 0.01328577846288681, + -0.028767680749297142, + -0.014594107866287231, + 0.015201547183096409, + 0.01686811074614525, + 0.001674350700341165, + 0.0047388020902872086, + 0.0024278084747493267, + 0.01886175572872162, + 0.0035725971683859825, + 0.005089247599244118, + 0.023861445486545563, + -0.003105336567386985, + 0.04635225608944893, + 0.011471249163150787, + 0.0029807337559759617, + 0.012631612829864025, + -0.015995889902114868, + -0.010271946899592876, + -0.0054513742215931416, + -0.012234441936016083, + -0.005871909204870462, + -0.008480780757963657, + -0.005283939186483622, + -0.002235063584521413, + 0.005973148625344038, + 0.007121831178665161, + -3.1941646739142016e-5, + -0.007020591292530298, + -0.018752727657556534, + -0.005809607449918985, + 0.015014642849564552, + 0.02107345685362816, + -0.005505888257175684, + 0.0012732853647321463, + 0.02059062011539936, + -0.006487135775387287, + -0.020902127027511597, + 0.0009768668096512556, + 0.005930316634476185, + -0.007830509915947914, + -0.01837891899049282, + -0.0024940038565546274, + 0.024998445063829422, + -0.032490190118551254, + 0.0008040777174755931, + 0.003050822764635086, + 0.013418168760836124, + -0.007678650319576263, + 0.012717277742922306, + 0.007008910179138184, + 0.005895271897315979, + -0.003636845387518406, + -0.01395551860332489, + 0.005494206678122282, + -0.010513365268707275, + -0.006222354713827372, + 0.0011068236781284213, + -0.005622703116387129, + 0.005572083406150341, + -0.003354542190209031, + -0.02569933608174324, + -5.874981525266776e-6, + -0.03038751892745495, + 0.013488258235156536, + 0.014601895585656166, + -0.004034017212688923, + -0.0024706406984478235, + -0.008963617496192455, + -0.01506136916577816, + -0.008013520389795303, + -0.010778145864605904, + -0.01073920726776123, + 0.004236496519297361, + -0.003025512909516692, + -0.0043649934232234955, + 0.018051836639642715, + -0.005595446564257145, + -0.011214256286621094, + 0.018674850463867188, + -0.009041493758559227, + -0.025200925767421722, + 0.019593797624111176, + 0.01195408497005701, + 0.02529437653720379, + -0.010279734618961811, + -0.00895582977682352, + 0.010061679407954216, + -0.0018670957069844007, + -0.005365709774196148, + -0.017646877095103264, + -0.015528629533946514, + -0.017896084114909172, + -0.01819201558828354, + 0.00897919200360775, + 0.038658034056425095, + -0.024733664467930794, + -0.004777740221470594, + 0.013449319638311863, + 0.004711545072495937, + -0.0002072252391371876, + 0.012366832233965397, + 0.013573922216892242, + -0.0075774104334414005, + 0.007402187678962946, + 0.018051836639642715, + 0.01750670000910759, + -0.022039128467440605, + 0.021883374080061913, + 0.0012654976453632116, + -0.021821072325110435, + 0.011572489514946938, + -0.0022272758651524782, + 0.02193010039627552, + -0.006514392327517271, + -0.014594107866287231, + -0.013838703744113445, + -0.005891378037631512, + -0.020933277904987335, + -0.0065689063630998135, + -0.007043954450637102, + 0.0031579032074660063, + 0.014150210656225681, + 0.013192325830459595, + -0.0033039222471415997, + 0.0005758014158345759, + 0.03055884689092636, + 0.01703943870961666, + 0.01175160612910986, + -0.0005845625419169664, + 0.021618593484163284, + 0.00654554320499301, + -0.011907359585165977, + -0.008465205319225788, + 0.02169647067785263, + 0.01703943870961666, + -0.010435488075017929, + 0.014812163077294827, + -0.010988413356244564, + 0.013246839866042137, + -0.015513054095208645, + -0.004423400852829218, + 0.01686811074614525, + -0.008807863108813763, + -0.0031734786462038755, + 0.008582021109759808, + -0.02898573689162731, + 0.0024706406984478235, + -0.016447575762867928, + -0.00753068458288908, + -0.019640523940324783, + -0.0065572247840464115, + -0.014695348218083382, + 0.012452497147023678, + -0.01408012118190527, + 0.005572083406150341, + -0.020777523517608643, + -0.017662452533841133, + 0.004625880625098944, + -0.000974919879809022, + -0.009508754126727581, + -0.014267025515437126, + -0.007966794073581696, + 0.0225998405367136, + 0.01928229071199894, + 0.0283315721899271, + 0.016681205481290817, + -0.018783878535032272, + -0.012787367217242718, + 0.001769749796949327, + 0.01274064090102911, + 0.00920503493398428, + 0.00841069221496582, + 0.01749112457036972, + -0.016556601971387863, + 0.029966983944177628, + 0.0018807242158800364, + 0.0016782445600256324, + -0.0036095886025577784, + -0.005611022002995014, + 0.022677717730402946, + 0.0037692359182983637, + -0.0009827075991779566, + -0.011774968355894089, + 0.004108000081032515, + 0.009002555161714554, + 0.022054703906178474, + -0.010583453811705112, + 0.012997633777558804, + 0.009454241022467613, + -0.026680583134293556, + 0.006066600792109966, + 0.013005421496927738, + 0.003907467238605022, + -0.0019517866894602776, + -0.02502959594130516, + 0.004571367055177689, + -0.007028379011899233, + 0.019796276465058327, + -0.014485080726444721, + 0.015092519111931324, + 0.017880508676171303, + -0.003290293738245964, + -0.020107783377170563, + 0.018721576780080795, + 0.004633668344467878, + -0.0056304908357560635, + -0.005466949660331011, + 0.00895582977682352, + -0.015590930357575417, + -0.015575355850160122, + 0.007347674109041691, + -0.03815962001681328, + -0.014882252551615238, + 0.0272412970662117, + -0.02594854310154915, + -0.003379852045327425, + 0.016914835199713707, + -0.017849357798695564, + -0.004956856835633516, + -0.0016772710951045156, + 0.010451063513755798, + 0.013682949356734753, + 0.009173884056508541, + -0.0008026175200939178, + 0.025200925767421722, + -0.002663385821506381, + -0.010723631829023361, + -0.005007477011531591, + 0.022677717730402946, + -0.01462525874376297, + -0.006681827362626791, + -0.00309754884801805, + -0.01640084944665432, + 0.013293566182255745, + -0.00040520261973142624, + 0.02789546176791191, + -0.03548065945506096, + -0.011556914076209068, + -0.0033993213437497616, + -0.015528629533946514, + 0.004228708799928427, + -0.015193759463727474, + -0.005731730721890926, + 0.0008590781944803894, + 0.004236496519297361, + -0.006086070090532303, + 0.010824872180819511, + -0.016338547691702843, + 0.015637656673789024, + 0.012577099725604057, + 0.014710923656821251, + 0.028456173837184906, + 0.01397109404206276, + -0.026976516470313072, + 0.015147033147513866, + 0.007468382827937603, + -0.014446142129600048, + -0.014601895585656166, + -0.007951218634843826, + -0.005751200020313263, + -0.0012878872221335769, + 0.012958696112036705, + -0.013932155445218086, + 0.014010032638907433, + 0.007814934477210045, + -0.0014738179743289948, + 0.012187715619802475, + -0.0010221326956525445, + 0.009298487566411495, + 0.0026147128082811832, + -0.005945892073214054, + 0.015372876077890396, + -0.0013550559524446726, + -0.0024531185626983643, + -0.003270824672654271, + 0.004154725931584835, + 0.0019206360448151827, + -0.0034168437123298645, + 0.0005923502612859011, + 0.00941530242562294, + 0.00939972698688507, + 0.024967294186353683, + 0.015092519111931324, + -0.006054919213056564, + 3.203290907549672e-5, + 0.023986047133803368, + -0.007008910179138184, + 0.010396549478173256, + -0.013566134497523308, + 0.006132796406745911, + 0.0011292132548987865, + 0.0048127849586308, + 0.024297554045915604, + -0.011821694672107697, + -0.021104605868458748, + 0.030060436576604843, + 0.0062379296869039536, + 0.008846801705658436, + -0.010957262478768826, + -0.0026594919618219137, + -0.0031442749314010143, + -0.001173992408439517, + 0.018986357375979424, + 0.020092207938432693, + -0.004065167624503374, + 0.007293160073459148, + -0.0028016171418130398, + -0.016541028395295143, + 0.002902856795117259, + 0.008114759810268879, + -0.014212511479854584, + 0.008737774565815926, + 0.015754472464323044, + 0.01596473902463913, + 0.00952432956546545, + 0.026524830609560013, + -0.0018125820206478238, + 0.002312940312549472, + 0.00575509387999773, + 0.00309754884801805, + 0.0003592066350392997, + -0.008371753618121147, + -0.0112999202683568, + 0.009687870740890503, + 0.013472682796418667, + -0.006740235257893801, + -0.009929289110004902, + -0.01686811074614525, + 0.00621067313477397, + 0.011385585181415081, + -0.0009578843601047993, + 0.023752417415380478, + -0.02216373011469841, + -0.0022311697248369455, + 0.013932155445218086, + -0.0026147128082811832, + 0.011486824601888657, + -0.0025543582160025835, + -0.01859697513282299, + -0.00030956018599681556, + -0.006148371379822493, + -0.013122237287461758, + -0.0014193042879924178, + 0.019313441589474678, + 0.002379135461524129, + 0.0014163838932290673, + 0.013402593322098255, + -0.011541338637471199, + -0.0028016171418130398, + -0.015676595270633698, + -0.007737057749181986, + -0.003669943194836378, + 0.015567568130791187, + -0.022755594924092293, + 0.009275124408304691, + 0.006518286187201738, + -0.0008464232087135315, + -0.0009997431188821793, + -0.01859697513282299, + -0.014897827059030533, + -0.0090804323554039, + 0.008823438547551632, + 0.015590930357575417, + -0.009267336688935757, + -0.007347674109041691, + 0.014087908901274204, + -0.017569001764059067, + 0.03129088878631592, + -0.014298176392912865, + -0.022070279344916344, + 0.008792288601398468, + 0.014742073602974415, + -0.003146221861243248, + -0.005330665502697229, + -0.002163027413189411, + -0.03903184086084366, + -0.007690331898629665, + -0.003930830396711826, + 0.007347674109041691, + 0.008582021109759808, + -0.0011584170861169696, + 0.005505888257175684, + 0.0027860417030751705, + -0.005720049142837524, + -0.017179617658257484, + 0.0002852237084880471, + -0.006685721222311258, + -0.01527942344546318, + -0.004294904414564371, + 0.015567568130791187, + -0.011517975479364395, + 0.009438665583729744, + -0.008301664143800735, + -0.006841474678367376, + 0.004762164782732725, + 0.018005110323429108, + -0.018129713833332062, + 0.0001500344806117937, + 0.01084044761955738, + 0.0026147128082811832, + 0.022412937134504318, + -0.008511931635439396, + -0.0016062085051089525, + 0.005735624581575394, + 0.007628030143678188, + 0.009804686531424522, + -0.010334248654544353, + -0.0003005556936841458, + -0.003122858703136444, + -0.01842564530670643, + -0.03164912387728691, + 0.006806430406868458, + -0.004294904414564371, + -0.02744377590715885, + 0.013659587129950523, + -0.010155132040381432, + -0.02373684197664261, + 0.0074995337054133415, + -0.011471249163150787, + -0.004536322318017483, + -0.004438976291567087, + 0.010396549478173256, + 0.002663385821506381, + 0.013020996935665607, + -0.008737774565815926, + -0.005786244757473469, + -0.014368265867233276, + -0.0017376255709677935, + 0.01408012118190527, + -0.017366521060466766, + 0.004933493677526712, + 0.004403931554406881, + -0.013418168760836124, + 0.00215718662366271, + -0.013737463392317295, + 0.017631301656365395, + 0.005634384695440531, + -0.010240796022117138, + -0.027630681172013283, + 0.0006239876965992153, + -0.0013122237287461758, + 0.0003774590149987489, + -0.010014954023063183, + -2.430607310088817e-5, + 0.016276245936751366, + -0.005171018186956644, + -0.010427700355648994, + 0.0023382501676678658, + -0.0005967307952232659, + -0.014002244919538498, + 0.02773970738053322, + 0.004411719273775816, + 0.001406649244017899, + -0.006269080564379692, + -0.02038813941180706, + 0.009267336688935757, + -0.02682076208293438, + -0.0048439353704452515, + 0.0063158064149320126, + 0.014983491972088814, + 0.0016704568406566978, + -1.0320193723600823e-5, + 0.013309141620993614, + -0.0035239241551607847, + -0.02898573689162731, + -0.012343469075858593, + 0.004376675002276897, + -0.020793098956346512, + -0.011354434303939342, + -0.024204103276133537, + -0.03501340001821518, + 0.0247803907841444, + -0.002978786826133728, + -0.0022136473562568426, + -0.011214256286621094, + -0.009376363828778267, + -0.012397983111441135, + -0.017023863270878792, + -0.0008503170683979988, + 0.006019874941557646, + -0.015240484848618507, + 0.013862065970897675, + -0.005256682634353638, + 0.013908792287111282, + 0.020014332607388496, + 0.004859510809183121, + 0.0036796776112169027, + 0.016681205481290817, + -0.003800386795774102, + -0.008613171987235546, + 0.011728242971003056, + -0.02945299632847309, + -0.014376052655279636, + -0.0022506387904286385, + 0.0012956748250871897, + -0.0071763452142477036, + 0.01408012118190527, + 0.004528534598648548, + -0.007382718380540609, + -0.0021727620624005795, + 0.004407825414091349, + -0.003924989607185125, + -0.005864121485501528, + 0.013433744199573994, + 0.005669429432600737, + -0.0067908549681305885, + 0.008800075389444828, + 0.015684382990002632, + 0.010248583741486073, + -0.02306710183620453, + 0.011642578057944775, + -0.020247962325811386, + -0.0019381582969799638, + 0.014134635217487812, + 0.018223166465759277, + -0.00019590876763686538, + 0.02859635278582573, + -0.038408827036619186, + -0.02594854310154915, + -0.011128591373562813, + 0.009773535653948784, + 0.021556291729211807, + -0.012343469075858593, + -0.008145910687744617, + 0.004793315660208464, + -0.015606505796313286, + 0.009493178687989712, + 0.0021786028519272804, + 0.0011535497615113854, + 0.0031559565104544163, + -0.002116301329806447, + -0.0026809079572558403, + -0.007982369512319565, + 0.019001932814717293, + -0.010560090653598309, + -0.003623217111453414, + -0.005751200020313263, + 0.0035005612298846245, + 0.020980004221200943, + -0.015785623341798782, + 0.015723321586847305, + 0.003009937470778823, + 0.01140116062015295, + -0.00039960522553883493, + 0.006323594134300947, + -0.01128434482961893, + 0.02725687250494957, + 0.00943087786436081, + 0.0035433934535831213, + -0.0033097630366683006, + -0.03367391973733902, + -0.011011776514351368, + -0.027085542678833008, + -0.008558657951653004, + -0.012218866497278214, + 0.0002864405105356127, + 0.013418168760836124, + 0.009360788390040398, + -0.008317239582538605, + -0.024718089029192924, + -0.003420737339183688, + -0.028315996751189232, + 0.014492868445813656, + 0.02191452495753765, + 0.011120803654193878, + 0.0004295390972401947, + 0.01561429351568222, + 0.005945892073214054, + -0.007966794073581696, + -0.012577099725604057, + 0.010443275794386864, + 0.02722572162747383, + 0.009516541846096516, + 0.0005125265452079475, + -0.014874464832246304, + -0.02169647067785263, + -0.014819950796663761, + -0.002945689018815756, + -0.001995592378079891, + -0.02551243267953396, + -0.013511620461940765, + -0.01574668474495411, + 0.02412622608244419, + -0.011642578057944775, + 0.02330073155462742, + -0.0016247042221948504, + -0.00818484928458929, + -0.0020170086063444614, + -0.008138122968375683, + 0.006335275713354349, + 0.0034655164927244186, + 0.003187107155099511, + -0.015513054095208645, + 0.0070322728715837, + -0.0019293971126899123, + -0.010388761758804321, + 0.008714411407709122, + -0.015435176901519299, + 0.017771480605006218, + -0.0022370105143636465, + 0.0008941227570176125, + -0.04339294135570526, + 0.008558657951653004, + 0.006783067248761654, + -0.013667374849319458, + -0.0018904587486758828, + -0.00985919963568449, + -0.0004098265490029007, + -0.003019672119989991, + -0.003177372505888343, + 0.016883686184883118, + -0.0007266876637004316, + -0.00918945949524641, + 0.0021824967116117477, + 0.01750670000910759, + 0.01263940054923296, + 0.019562646746635437, + 0.01564544439315796, + -0.01973397471010685, + 0.020528318360447884, + 0.010022740811109543, + -0.0008615118567831814, + 0.008846801705658436, + -0.008940254338085651, + 0.004567473195493221, + -0.011440098285675049, + -0.026540406048297882, + -0.0032085231505334377, + 0.01747554913163185, + -0.01087159849703312, + -8.76113772392273e-5, + -0.0038451659493148327, + -0.010910536162555218, + -0.014173573814332485, + -0.0038665819447487593, + 0.01096505019813776, + -0.011588064022362232, + 0.0009885483887046576, + 0.014492868445813656, + -0.0033214446157217026, + 0.01362064853310585, + 0.008839013986289501, + -0.015855710953474045, + -0.019656099379062653, + 0.0011876208009198308, + -0.019578222185373306, + -0.013013209216296673, + -0.011362222023308277, + 0.004302692133933306, + -0.008068034425377846, + 0.0004597163642756641, + -0.0038607411552220583, + 0.00885458942502737, + 0.021229209378361702, + 0.003878263523802161, + -0.011237618513405323, + 0.005688898731023073, + -0.00013141706585884094, + 0.009360788390040398, + -0.007413869258016348, + 0.0014465611893683672, + -0.020279113203287125, + -0.0009272203897126019, + 0.02323842979967594, + -0.005868015345185995, + -0.00842626765370369, + 0.03429693356156349, + 0.018565824255347252, + 0.005381285212934017, + 0.021618593484163284, + -0.005357922054827213, + -0.027381474152207375, + -0.0044428701512515545, + 0.025200925767421722, + -0.007262009661644697, + 0.0025465707294642925, + -0.011837270110845566, + 0.010326460935175419, + -0.007398293819278479, + -0.02126036025583744, + -0.0031481687910854816, + -0.009921501390635967, + -0.009617782197892666, + -0.019624948501586914, + -0.009376363828778267, + -0.004438976291567087, + 0.003140381071716547, + -0.02239736169576645, + -0.013262415304780006, + 0.008231575600802898, + 0.00299241510219872, + 0.011183105409145355, + 0.010334248654544353, + 0.001834971597418189, + -0.013316929340362549, + -0.0038237497210502625, + -0.016914835199713707, + -0.01085602305829525, + 0.012008599005639553, + 0.00028230331372469664, + 0.01131549570709467, + 0.006117220968008041, + -0.004368887282907963, + -0.03083920292556286, + 0.011245406232774258, + -0.020450441166758537, + -0.006354745011776686, + 0.016494302079081535, + -0.0027548910584300756, + 0.01117531768977642, + -0.0029943620320409536, + -0.005143761169165373, + -0.00021051066869404167, + 0.0031793194357305765, + -0.018285468220710754, + 0.0002922812709584832, + 0.010988413356244564, + 0.02593296766281128, + -0.012125413864850998, + -0.0016344388714060187, + -0.017459973692893982, + -0.0027918824926018715, + -0.011697092093527317, + -0.0001604991703061387, + -0.014119059778749943, + 0.0063391695730388165, + -0.0031637439969927073, + 0.005097034852951765, + -0.017179617658257484, + 0.013277990743517876, + 0.008278300985693932, + 0.011183105409145355, + 0.0076669687405228615, + 0.0009612914873287082, + -0.015053581446409225, + -0.025107473134994507, + -0.024686938151717186, + -0.014874464832246304, + -0.013916580006480217, + 0.018098562955856323, + -0.019780701026320457, + 0.009781323373317719, + -0.015372876077890396, + 0.01615164428949356, + -0.018005110323429108, + -0.012335681356489658, + 0.012312318198382854, + 0.004279328975826502, + 0.006553330924361944, + -0.003385692834854126, + 0.021400539204478264, + 0.026010842993855476, + 0.0228023212403059, + -0.012366832233965397, + 0.005965361371636391, + -0.017662452533841133, + 0.014212511479854584, + -0.023986047133803368, + 0.00221754121594131, + 0.002789935562759638, + -0.007121831178665161, + 0.016743507236242294, + 0.011852845549583435, + 0.009376363828778267, + 0.016790233552455902, + 0.021400539204478264, + -0.006716872099786997, + 0.0032202047295868397, + -0.029764505103230476, + 0.0076981196179986, + 0.004715438932180405, + -0.0022876302246004343, + -0.019983181729912758, + 0.02348763681948185, + 0.00587969645857811, + -0.0024570124223828316, + -0.0077331638894975185, + 0.007791571784764528, + -0.007838297635316849, + -0.019827427342534065, + 0.0020345307420939207, + -0.005688898731023073, + 0.005174912046641111, + 0.015365088358521461, + 0.01792723499238491, + -0.029966983944177628, + 0.014469505287706852, + 0.020948853343725204, + 0.003111177356913686, + -0.02706996724009514, + -0.013799765147268772, + -0.02124478481709957, + 0.018347768113017082, + 0.012351256795227528, + 0.021416114643216133, + 0.014617471024394035, + 0.008262726478278637, + 0.0146096833050251, + 0.027101118117570877, + 0.015123669989407063, + -0.014586320146918297, + 0.005910847336053848, + 0.004855616949498653, + -0.013020996935665607, + -0.008698835968971252, + -0.020061057060956955, + -0.0294997226446867, + 0.009298487566411495, + -0.0041469382122159, + 1.2578924724948592e-5, + -0.006234035827219486, + -0.01018628291785717, + -0.0039522466249763966, + -0.020325839519500732, + 0.009158308617770672, + 0.004045698791742325, + 0.011541338637471199, + 0.0015653232112526894, + -0.00014711410040035844, + 0.004976326134055853, + 0.006023768801242113, + -0.009057069197297096, + -0.01774032972753048, + 0.003099495777860284, + -0.01862812601029873, + 0.009251761250197887, + -0.021400539204478264, + -0.012374619953334332, + -0.011237618513405323, + 0.0020423184614628553, + -0.020980004221200943, + 0.0056499601341784, + 0.018098562955856323, + 0.00016451469855383039, + -0.003200735431164503, + 0.008729986846446991, + 0.032926302403211594, + -0.0005977042601443827, + -0.0022214350756257772, + -0.002556305145844817, + -0.012468071654438972, + -0.009586631320416927, + 0.008488568477332592, + -0.02526322565972805, + 0.015793411061167717, + 0.01643200032413006, + 0.002805511001497507, + -0.009197247214615345, + 0.031836025416851044, + 0.004080743063241243, + 0.004898449406027794, + -0.008698835968971252, + -0.002710111904889345, + 0.009648933075368404, + 0.019001932814717293, + -0.006420940160751343, + 0.008831226266920567, + 0.013052147813141346, + -0.019188838079571724, + -0.009547692723572254, + -0.014812163077294827, + -0.011455673724412918, + -0.010669118724763393, + 0.009898138232529163, + 0.0006454038084484637, + 0.0035725971683859825, + 0.000521287671290338, + -0.003545340383425355, + -0.01175939291715622, + 0.0033564891200512648, + 0.020528318360447884, + 0.013246839866042137, + -0.016011465340852737, + 0.008363965898752213, + 0.008013520389795303, + 0.006654570810496807, + 0.004621986765414476, + -0.009119370952248573, + 0.01053672842681408, + 0.0018339981324970722, + 0.005809607449918985, + -0.01384649146348238, + 0.010349824093282223, + 0.013013209216296673, + 0.014633046463131905, + -0.002945689018815756, + -0.018051836639642715, + -0.001591606647707522, + -0.0033214446157217026, + -0.013215688988566399, + -0.004178089089691639, + 0.016696780920028687, + 0.014531807042658329, + -0.014173573814332485, + -0.0021532929968088865, + 0.012841880321502686, + 0.0005728810210712254, + 0.011214256286621094, + -0.0010737261036410928, + -0.0010620445245876908, + -0.017382096499204636, + 0.007612455170601606, + 0.003307816106826067, + -0.005132079590111971, + -0.015022430568933487, + 0.00985919963568449, + 0.005910847336053848, + 0.00437278114259243, + -0.011214256286621094, + 0.01416578609496355, + 0.0009895218536257744, + 0.017802631482481956, + 0.007250328082591295, + -0.006000405643135309, + -0.0006896962295286357, + 0.016478726640343666, + -0.0032318863086402416, + 0.020886551588773727, + 0.00964114535599947, + 0.0029846273828297853, + -0.003909414168447256, + 0.008036883547902107, + -0.020107783377170563, + 0.01474986132234335, + -0.003778970567509532, + 0.011331071145832539, + 0.0009997431188821793, + -0.009952652268111706, + 0.01052115298807621, + 0.014126847498118877, + -0.010466638952493668, + 0.015980314463377, + 0.0035609155893325806, + -0.0058485460467636585, + 0.008114759810268879, + -0.021369388327002525, + 0.03501340001821518, + 0.010233008302748203, + -0.001847626524977386, + -0.0140645457431674, + -0.0044311885721981525, + -0.006619526073336601, + 0.020652921870350838, + -0.02502959594130516, + 0.005334559362381697, + 0.015707746148109436, + 0.006962183862924576, + -0.00730484165251255, + -0.006214566994458437, + 0.009882562793791294, + 6.668199057457969e-5, + -0.0011993023799732327, + 0.025200925767421722, + 0.01731979474425316, + -0.005392966791987419, + -0.006845368538051844, + -0.006736341398209333, + -0.024936143308877945, + -0.010637967847287655, + -0.014469505287706852, + -0.016229519620537758, + 0.0017356786411255598, + 0.0056304908357560635, + -0.01205532532185316, + -0.001436826540157199, + 0.010443275794386864, + 0.002170815132558346, + 0.029780080541968346, + -0.0063158064149320126, + -0.021400539204478264, + -0.004734908230602741, + 0.0025309952907264233, + 0.007390506099909544, + -0.012296742759644985, + 0.004804997239261866, + 0.009469816461205482, + -0.007491745986044407, + -0.016572177410125732, + -0.016790233552455902, + -0.001447534654289484, + -0.016930410638451576, + -0.019624948501586914, + -0.010053891688585281, + 0.006942714564502239, + -0.0018495734548196197, + 0.0030897611286491156, + 0.037785813212394714, + -0.0026439165230840445, + 0.009275124408304691, + 0.0033272854052484035, + -0.007452807389199734, + -0.012359044514596462, + 0.030714601278305054, + -0.004551897756755352, + -0.008550870232284069, + 0.033082056790590286, + -0.0011331071145832539, + 0.0033058691769838333, + 0.016712356358766556, + 0.0012742587132379413, + -0.02367454022169113, + 0.019547071307897568, + -0.01240577083081007, + 0.017148466780781746, + -0.012678339146077633, + -0.008971404284238815, + 0.020730797201395035, + -0.009446453303098679, + 0.009298487566411495, + -0.0034168437123298645, + -0.003975609317421913, + 0.005007477011531591, + 0.02018566057085991, + -0.0074216569773852825, + 0.029530873522162437, + 0.009726809337735176, + 0.008114759810268879, + -0.015583143569529057, + -0.0009116450091823936, + -0.003019672119989991, + 0.011580277234315872, + -0.020902127027511597, + -0.018082987517118454, + 0.006047131959348917, + -0.006039344239979982, + 0.005174912046641111, + -0.03479534387588501, + 0.02814466692507267, + -0.01641642488539219, + -0.006514392327517271, + -0.0014845260884612799, + 0.02415737695991993, + -0.007386612240225077, + -0.010591241531074047, + 0.012281167320907116, + 0.026633858680725098, + -0.00040812298539094627, + 0.005459161940962076, + -0.011128591373562813, + 0.026914214715361595, + 0.018114138394594193, + 0.006491029169410467, + -0.006012087222188711, + -0.001907007535919547, + -0.012413558550179005, + -0.0009710260783322155, + -0.0017921393737196922, + -0.008714411407709122, + 0.016681205481290817, + 0.005653853993862867, + -0.019001932814717293, + -0.014710923656821251, + -0.038035016506910324, + -0.016961561515927315, + -0.009757960215210915, + 0.006374214310199022, + 0.0043649934232234955, + 0.011229831725358963, + -0.004859510809183121, + -0.013978881761431694, + 0.00035945000126957893, + 0.0007471303106285632, + 0.015209334902465343, + 0.05977821350097656, + 0.013480470515787601, + 0.01584792509675026, + -0.009944864548742771, + 0.003886051243171096, + -0.03389197215437889, + -0.0036310048308223486, + -0.010528940707445145, + -0.03432808443903923, + -0.00973459705710411, + 0.004411719273775816, + -0.014056758023798466, + 0.015598718076944351, + 0.006798642687499523, + -0.012452497147023678, + 0.006522180046886206, + -0.011611427180469036, + 0.004127469379454851, + -0.017382096499204636, + 0.0017424928955733776, + 0.00011060936230933294, + 0.018098562955856323, + -0.0034421535674482584, + -0.011011776514351368, + 0.018347768113017082, + 0.00022657275258097798, + 0.0027198465541005135, + -0.00598483020439744, + 0.01296648383140564, + 0.003272771602496505, + 0.019126536324620247, + -0.013106661848723888, + -0.036446332931518555, + 0.02015450969338417, + -0.008839013986289501, + 0.022646566852927208, + 0.0025971904397010803, + 0.01643200032413006, + -0.00015952570538502187, + -0.01219550333917141, + -0.03169585019350052, + -0.004949069116264582, + -0.005794032011181116, + -0.01615164428949356, + 0.005665535572916269, + 0.004306585993617773, + 0.014228086918592453, + 0.014656409621238708, + -0.005704473704099655, + -0.0029281668830662966, + 0.007982369512319565, + 0.009648933075368404, + -0.033798519521951675, + -0.003521977225318551, + 0.008784500882029533, + 0.00790838710963726, + 0.020995579659938812, + -0.022646566852927208, + 0.005186593160033226, + -0.0070244851522147655, + -0.008402904495596886, + -0.0024920569267123938, + 0.015302786603569984, + 0.014679772779345512, + -0.004466233309358358, + 0.020076632499694824, + -0.0026030312292277813, + 0.016354123130440712, + 0.004804997239261866, + -0.00399507861584425, + 0.033549316227436066, + -0.016681205481290817, + -0.016478726640343666, + -0.025185350328683853, + -0.02147841453552246, + -0.017662452533841133, + -0.024017198011279106, + -0.019983181729912758, + -0.017600150778889656, + 0.010427700355648994, + -0.0013141706585884094, + -0.013005421496927738, + 0.0019809906370937824, + -0.003897732589393854, + -0.013402593322098255, + 0.0028386085759848356, + 0.0082938764244318, + 0.008301664143800735, + 0.010248583741486073, + 0.0074995337054133415, + -0.02773970738053322, + -0.012436921708285809, + -0.012888606637716293, + -0.009905925951898098, + 0.008527507074177265, + -0.011035139672458172, + -0.01593358814716339, + -0.00416251365095377, + 0.006783067248761654, + 0.019547071307897568, + 0.004104106221348047, + 0.018659275025129318, + 0.003420737339183688, + 0.0012723118998110294, + -0.019874153658747673, + -0.028518475592136383, + -0.005357922054827213, + -0.006276868283748627, + -0.009275124408304691, + 0.016058191657066345, + -4.407947199069895e-5, + 0.009384151548147202, + -0.008722199127078056, + 0.025637034326791763, + 0.01508473139256239, + 0.02858077734708786, + 0.0012771791080012918, + 0.009057069197297096, + 0.0011769128032028675, + 0.02395489625632763, + 0.0010532834567129612, + 0.0055409325286746025, + 0.03663323447108269, + 0.016058191657066345, + 0.0026127658784389496, + 0.009391939267516136, + 0.01006946712732315, + 0.024235252290964127, + -0.020279113203287125, + -0.012452497147023678, + 0.009843624196946621, + -0.0002905777364503592, + -0.0028853346593677998, + -0.001186647335998714, + 0.003486932720988989, + 0.0010990360751748085, + 0.007246434222906828, + -0.008068034425377846, + 0.01576226018369198, + -0.0043533118441700935, + -0.012281167320907116, + 0.032459039241075516, + 0.006272974424064159, + -0.006997228600084782, + -0.029406271874904633, + -0.0004570393357425928, + -0.03501340001821518, + 0.0009423089795745909, + 0.012335681356489658, + 0.0048127849586308, + -0.017849357798695564, + -0.009064856916666031, + 0.005264470353722572, + 0.0064053647220134735, + -0.004271541256457567, + 0.007803252898156643, + -0.004894555546343327, + 0.017008287832140923, + -0.008605384267866611, + 0.00952432956546545, + -0.011058502830564976, + 0.005723943002521992, + -0.000694563495926559, + 0.020263537764549255, + 0.011502400040626526, + -0.004777740221470594, + -0.0023401970975100994, + 0.020761948078870773, + -0.003726403694599867, + 0.0026186066679656506, + -0.009220610372722149, + 0.005969254765659571, + 0.008807863108813763, + 0.009500966407358646, + 0.0073554618284106255, + 0.007211389485746622, + -0.0033759581856429577, + -0.0019566540140658617, + -0.017880508676171303, + -0.01496012881398201, + 0.00820042472332716, + 0.011268769390881062, + 0.005591552704572678, + -0.008916891179978848, + -0.020512742921710014, + -0.005486418958753347, + -0.012031962163746357, + 0.007612455170601606, + -0.0023771885316818953, + 0.01186063326895237, + 0.007374930661171675, + 0.0247803907841444, + -0.007483958266675472, + -0.01621394418179989, + -0.008823438547551632, + 0.0053734974935650826, + 0.0023460378870368004, + 0.015840137377381325, + -0.033362410962581635, + 0.00025601990637369454, + 0.003056663554161787, + -0.001745413290336728, + -0.002914538374170661, + -0.012545948848128319 + ], + "3eee5d97-4fcf-4f68-b8ae-4a361882f81d": [ + 0.007620969321578741, + -0.0022198334336280823, + -0.0074518765322864056, + 0.005548600573092699, + -0.011545493267476559, + -0.04187207669019699, + 0.02469540201127529, + 0.036524027585983276, + 0.019315892830491066, + 0.06700790673494339, + -0.013244285248219967, + 0.032717473804950714, + -0.01438467763364315, + -0.0053441161289811134, + -0.01231624186038971, + 0.03888345882296562, + -0.026693055406212807, + 0.027888501062989235, + 0.03021647408604622, + -0.023138174787163734, + 0.045489873737096786, + -0.02362579107284546, + -0.0203855037689209, + 0.03900929540395737, + 0.004290236160159111, + 0.0020487746223807335, + 0.017192402854561806, + 0.0027566044591367245, + -0.03189953789114952, + -0.014510514214634895, + 0.024396538734436035, + 0.011576952412724495, + 0.019740590825676918, + -0.030924305319786072, + 0.0031164181418716908, + -0.05407821014523506, + 0.0030908575281500816, + 0.0023535345681011677, + 0.007042908109724522, + 0.008049599826335907, + -0.0340702161192894, + 0.016972189769148827, + 0.012788128107786179, + 0.005477817263454199, + -0.024317892268300056, + 0.009131006896495819, + 0.011514034122228622, + -0.006055878475308418, + 0.016626140102744102, + -0.03027939237654209, + -0.012040974572300911, + -0.00201043370179832, + 0.002300447318702936, + 0.02664586529135704, + 0.010916311293840408, + -0.011223037727177143, + 0.006991787347942591, + 0.08135325461626053, + 0.00435708649456501, + -0.05675223469734192, + 0.014070087112486362, + -0.01189940795302391, + 0.03762509673833847, + 0.011215172708034515, + 0.015477881766855717, + -0.003645324381068349, + -0.005308724939823151, + 0.0010843562195077538, + -0.02999626100063324, + -0.024097677320241928, + 0.02390892431139946, + 0.036209434270858765, + -0.03992161154747009, + 0.0120802978053689, + -0.013047665357589722, + -0.008706308901309967, + 0.00036005934816785157, + 0.006165985483676195, + -0.005289062857627869, + -0.0045458413660526276, + -0.015619448386132717, + -0.01100282371044159, + 0.017491264268755913, + -0.0063193487003445625, + 0.06801459193229675, + 0.01411727536469698, + -0.02628408558666706, + -0.0525052547454834, + -0.0324028842151165, + -0.04152602329850197, + 0.009532109834253788, + 0.022949419915676117, + 0.007876574993133545, + -0.01664186827838421, + -0.005324454512447119, + -0.013842008076608181, + 0.02041696198284626, + 0.023783087730407715, + 0.0022473600693047047, + -0.014534108340740204, + 0.012913964688777924, + 0.03200964257121086, + -0.033503953367471695, + 0.02574928104877472, + 0.01756991259753704, + -0.0003027939237654209, + 0.009060223586857319, + -0.020873120054602623, + -0.0441371314227581, + 0.055179279297590256, + -0.0037200397346168756, + -0.04108559712767601, + -0.0013537248596549034, + -0.03416459262371063, + -0.045930299907922745, + -0.055179279297590256, + -0.0227606650441885, + -0.03318936005234718, + 0.005021660588681698, + -0.03787676990032196, + 0.05080646276473999, + 0.01332293264567852, + 0.004805379081517458, + 0.007872642017900944, + -0.0035725750494748354, + 0.022839313372969627, + 0.00015643534425180405, + 0.009681541472673416, + 0.0244437288492918, + 0.020574258640408516, + -0.01793169230222702, + -0.020794471725821495, + -0.005045254714787006, + -0.02008664235472679, + 0.015399234369397163, + 0.02809298411011696, + -0.006586750969290733, + 0.06505744159221649, + -0.008989440277218819, + 0.05659493803977966, + -0.03731050342321396, + -0.027322236448526382, + 0.014848699793219566, + -0.0032127615995705128, + 0.013708307407796383, + 0.004494720138609409, + -0.0349196121096611, + 0.05011436343193054, + -0.02729077823460102, + 0.006051946431398392, + -0.06405074894428253, + 0.017774397507309914, + 0.017271051183342934, + -0.005497479345649481, + -0.004821108654141426, + -0.006224971264600754, + 0.010074780322611332, + 0.041179973632097244, + 0.02131354622542858, + -0.00026543624699115753, + 0.009996131993830204, + -0.05244233459234238, + -0.007109758909791708, + -0.012913964688777924, + 0.026441382244229317, + 0.030043449252843857, + 0.041211433708667755, + 0.03111306019127369, + -0.03664986416697502, + 0.022823583334684372, + 0.012520725838840008, + -0.023468496277928352, + 0.010483748279511929, + 0.022351697087287903, + -0.014290300197899342, + -0.0020251802634447813, + 0.02002372406423092, + 0.059898145496845245, + 0.025906577706336975, + -0.0312860831618309, + -0.02801433764398098, + -0.01756991259753704, + 0.0067283171229064465, + -0.007554118521511555, + 0.004482923075556755, + 0.0037003778852522373, + 0.04350794851779938, + 0.03049960732460022, + -0.02002372406423092, + -0.0024538105353713036, + 0.0063901315443217754, + -0.01930016465485096, + 0.002302413573488593, + 0.05275692790746689, + -0.03158494457602501, + -0.044986527413129807, + -0.01664186827838421, + 0.003112485632300377, + 0.0217854343354702, + 0.009996131993830204, + -0.010703962296247482, + -0.04935934394598007, + -0.03567463159561157, + 0.03756217658519745, + -0.05583991855382919, + 0.04004744812846184, + -0.009248978458344936, + -0.01790023408830166, + 0.02675597369670868, + 0.0018570706015452743, + 0.028973840177059174, + -0.02725931815803051, + -0.019473189488053322, + 0.013275744393467903, + -0.006547427270561457, + 0.004880094435065985, + -0.0010568294674158096, + 0.01742834597826004, + 0.012929693795740604, + -0.02474259026348591, + -0.0064963060431182384, + 0.019614754244685173, + -0.0040247999131679535, + -0.04577300325036049, + -0.0667562335729599, + -0.010947770439088345, + -0.02301233820617199, + 0.051435645669698715, + -0.04331919550895691, + -0.024113407358527184, + 0.04256417602300644, + -0.0009019916760735214, + 0.007031111046671867, + -0.03205683454871178, + -0.002512796316295862, + 0.015485746785998344, + 0.046968452632427216, + 0.009201789274811745, + -0.005772746633738279, + -0.01393638551235199, + 0.021407924592494965, + 0.017695749178528786, + -0.005910380277782679, + 0.01865525171160698, + -0.007955222390592098, + 0.018387850373983383, + -0.008501823991537094, + 0.04460901767015457, + 0.03856886923313141, + -0.016799164935946465, + 0.00012964593770448118, + 0.021407924592494965, + 0.012662291526794434, + 0.004471126012504101, + -0.013810548931360245, + 0.05033457651734352, + 0.0499885268509388, + -0.04388545826077461, + -0.016107063740491867, + -0.028832273557782173, + 0.013967844657599926, + 0.011608411557972431, + 0.001192496856674552, + -0.028533412143588066, + 0.03293768689036369, + -0.004962674342095852, + 0.016940729692578316, + -0.038474492728710175, + 0.02373589761555195, + 0.03027939237654209, + 0.00420372374355793, + -0.004950877279043198, + -0.016468843445181847, + -0.01815190725028515, + 0.014180193655192852, + -0.006578886415809393, + 0.019488917663693428, + 0.020102370530366898, + 0.014164464548230171, + 0.022713476791977882, + -0.008611931465566158, + 0.007884439080953598, + -0.012001650407910347, + 0.00420372374355793, + 0.030704090371727943, + -0.015635177493095398, + -0.02142365463078022, + 0.023861734196543694, + -0.039229508489370346, + -0.02653575874865055, + -0.015100372955203056, + -0.006138458847999573, + 0.012898234650492668, + -0.010578125715255737, + -0.004117210861295462, + 0.01156122237443924, + 0.0013743698364123702, + -0.015878986567258835, + -0.012969017960131168, + 0.015800338238477707, + -0.029005298390984535, + -0.018120447173714638, + -0.00746367359533906, + 0.0020291125401854515, + 0.024538105353713036, + -0.0209517665207386, + 0.025796469300985336, + -0.008258015848696232, + -0.06408220529556274, + 0.018214823678135872, + 0.040959760546684265, + -0.009555704891681671, + 0.01594976894557476, + -0.022996610030531883, + -0.022744936868548393, + -0.01125449687242508, + 0.024726860225200653, + -0.009893890470266342, + 0.008541148155927658, + -0.034007295966148376, + 0.03507690876722336, + -0.003041702788323164, + -0.07770399749279022, + 0.009123141877353191, + 0.0393868051469326, + -0.03441626578569412, + 0.022273050621151924, + 0.0034054487477988005, + -0.043948374688625336, + -0.004160467069596052, + -0.022304508835077286, + -0.011105066165328026, + -0.04102268069982529, + 0.006287889555096626, + -0.015878986567258835, + -0.05952063575387001, + -0.04111705720424652, + -0.029477186501026154, + 0.0025285258889198303, + -0.0037691944744437933, + -0.013692577369511127, + 0.007160879671573639, + 0.017947422340512276, + 0.012426348403096199, + 0.028580600395798683, + -0.00957929901778698, + 0.013385850936174393, + -0.002921764738857746, + -0.024113407358527184, + 0.0016112963203340769, + 0.001047981553710997, + -0.0019770085345953703, + 0.011624140664935112, + 0.00705863768234849, + 0.026095330715179443, + 0.013495958410203457, + -0.007510862313210964, + -0.011852219700813293, + -0.0024675738532096148, + 0.012253323569893837, + -0.0021116926800459623, + -0.024648211896419525, + -0.01818336546421051, + -0.00387930148281157, + -0.024868426844477654, + 0.0020507406443357468, + 0.019111409783363342, + 0.0009560619946569204, + 0.005304792430251837, + 0.011844354681670666, + -0.042186666280031204, + 0.007432214450091124, + -0.02195845916867256, + -0.018262013792991638, + 0.008816415444016457, + -0.01958329603075981, + 0.024113407358527184, + -0.002064503962174058, + -0.02541896142065525, + 0.026095330715179443, + 0.0027743002865463495, + 0.018859736621379852, + -0.010523072443902493, + -0.013134178705513477, + 0.022980879992246628, + 0.01134100928902626, + 0.00497053936123848, + -0.00162899203132838, + -0.012544319964945316, + -0.014573432505130768, + -0.014077951200306416, + 0.007392890751361847, + -0.01980350911617279, + 0.022697748616337776, + -0.020589986816048622, + 0.03633527085185051, + -0.009823107160627842, + -0.0008734818547964096, + 0.01739688776433468, + -0.0340702161192894, + 0.010365776717662811, + -0.014691404066979885, + -0.009539974853396416, + -0.007090096827596426, + 0.02181689254939556, + -0.04231250286102295, + -0.012591508217155933, + -0.025308853015303612, + 0.029068216681480408, + -0.032245587557554245, + 0.005741287488490343, + 0.008391717448830605, + 0.014825105667114258, + 0.024789778515696526, + 0.0287693552672863, + 0.014770052395761013, + 0.013401580974459648, + 0.03809698298573494, + -0.05272546783089638, + -0.011710654012858868, + 0.032497260719537735, + 0.0572555810213089, + 0.01470713410526514, + 0.01269375067204237, + 0.012709480710327625, + 0.014313895255327225, + 0.0010951702715829015, + 0.0003460502193775028, + -0.0073850261978805065, + 0.00957929901778698, + -0.014085816219449043, + 0.039984527975320816, + 0.02081020176410675, + -0.009484921582043171, + 0.010436560027301311, + -0.01213535200804472, + -0.012921829707920551, + -0.006142391357570887, + 0.0039953067898750305, + -0.012103892862796783, + 0.021848352625966072, + -0.00562724843621254, + -0.011215172708034515, + 0.0062131742015480995, + -0.02952437475323677, + -0.015690231695771217, + -0.026740243658423424, + 0.0032481530215591192, + 0.008981576189398766, + 0.01251286081969738, + 0.0011954461224377155, + 0.017774397507309914, + -0.05385799705982208, + 0.01868671178817749, + 0.012001650407910347, + 0.007550186477601528, + -0.031459107995033264, + -0.004714934155344963, + 0.018309202045202255, + -0.017978880554437637, + -0.03391291946172714, + -0.007707481738179922, + 0.03438480570912361, + -0.008006343618035316, + 0.03207256272435188, + -0.033220820128917694, + -0.013173501938581467, + -0.0005008880398236215, + 0.008077125996351242, + 0.009681541472673416, + -0.03558025136590004, + 0.015761014074087143, + -0.059929605573415756, + 0.0031006885692477226, + 0.001252465764991939, + -0.02145511284470558, + -0.0036807158030569553, + 0.006095202639698982, + 0.0025698160752654076, + -0.022461803629994392, + -0.028706436976790428, + -0.023279741406440735, + -0.022556181997060776, + -0.008777091279625893, + 0.0017705580685287714, + -0.005119970068335533, + -0.01616998203098774, + -0.041494566947221756, + -0.009642217308282852, + -0.013613929972052574, + 0.02711775340139866, + -0.002097929362207651, + 0.015847526490688324, + 0.0015385471051558852, + -0.011828625574707985, + -0.04753471538424492, + -0.004880094435065985, + -0.015061048790812492, + -0.0326860137283802, + -0.006677195895463228, + 0.01771147921681404, + -0.011600546538829803, + -0.01941027119755745, + 0.016578949987888336, + 0.004266641568392515, + 0.004286303650587797, + -0.014164464548230171, + -0.001759743900038302, + -0.004919418133795261, + 0.010318588465452194, + -0.01364538911730051, + 0.01057026069611311, + -0.015422828495502472, + -0.004640218801796436, + -0.0031852349638938904, + 0.01456556748598814, + -0.030011991038918495, + -0.007054705172777176, + 0.05634326487779617, + -0.023704439401626587, + 0.0020330450497567654, + -0.01013769768178463, + -0.01594976894557476, + 0.0036295948084443808, + -0.04979977011680603, + 0.0007328989449888468, + 0.01231624186038971, + -0.0003091840771958232, + 0.036209434270858765, + -0.005442426074296236, + 0.0030023788567632437, + 0.00548961479216814, + 0.011529764160513878, + 0.02063717693090439, + 0.005918244831264019, + -0.018560875207185745, + 0.006995719391852617, + 0.011215172708034515, + 0.028030067682266235, + 0.015438558533787727, + -0.0396699383854866, + 0.03432188928127289, + -0.019315892830491066, + -0.01695645973086357, + 0.01714521460235119, + 0.03900929540395737, + -0.014282436110079288, + 0.026126790791749954, + 0.007601307239383459, + 0.02909967675805092, + -0.018482226878404617, + 0.01332293264567852, + -0.029508644714951515, + -0.006976057775318623, + -0.004054292570799589, + -0.04778638854622841, + 0.05121542885899544, + -0.02653575874865055, + -0.028108714148402214, + -0.02186408080160618, + -0.00010506850958336145, + 0.011333144269883633, + 0.027510991320014, + 0.0012711446033790708, + -0.008722038008272648, + 0.0015080710873007774, + -0.02195845916867256, + 0.024538105353713036, + -0.012025244534015656, + 0.023578602820634842, + 0.03303206339478493, + 0.001304570003412664, + 0.039449725300073624, + 0.013291473500430584, + -0.010987093672156334, + 0.037499260157346725, + -0.013346527703106403, + -0.004919418133795261, + -0.013275744393467903, + 0.0019003268098458648, + 0.04457755759358406, + -0.03410167619585991, + -0.02008664235472679, + -0.012489266693592072, + -0.015037454664707184, + 0.011584817431867123, + -0.013967844657599926, + -0.018576605245471, + -0.021407924592494965, + 0.04401129484176636, + -0.004239114932715893, + 0.022839313372969627, + 0.017617100849747658, + 0.012937558814883232, + -0.02092030830681324, + 0.042186666280031204, + 0.018010340631008148, + 0.016987919807434082, + -0.001306536141782999, + 0.007628834340721369, + 0.02628408558666706, + 0.025434689596295357, + 0.006759776268154383, + -0.012835316359996796, + 0.004541908856481314, + 0.031522028148174286, + -0.0010646942537277937, + -0.003914692904800177, + -0.010515207424759865, + 0.04681115597486496, + 0.005753084551542997, + -0.0041408054530620575, + 0.022273050621151924, + 0.022729206830263138, + 0.009052358567714691, + 0.01628008857369423, + 0.028958110138773918, + 0.0037849240470677614, + -0.0022394952829927206, + 0.0015818033134564757, + 0.016248630359768867, + -0.03164786472916603, + 0.060086898505687714, + -0.013653253205120564, + 0.019252974539995193, + 0.006252497900277376, + -0.016689058393239975, + -0.020369773730635643, + -0.01348809339106083, + -0.005084578413516283, + 0.011498305015265942, + -0.008053531870245934, + 0.010436560027301311, + -0.011458980850875378, + 0.013228555209934711, + 0.0024774048943072557, + -0.00031926081283017993, + 0.00434922194108367, + -0.013668983243405819, + -0.02747953310608864, + -0.001981923822313547, + 0.005568262655287981, + 0.0015414963709190488, + 0.017522724345326424, + -0.02265055850148201, + 0.018450768664479256, + -0.01659468002617359, + 0.01620144210755825, + 0.03885199874639511, + 0.0070271785371005535, + -0.006987854838371277, + 0.0058749886229634285, + 0.0171766746789217, + 0.015139696188271046, + -0.0010175055358558893, + -0.03586338460445404, + 0.008438906632363796, + -0.002526559866964817, + -0.0020507406443357468, + 0.022084295749664307, + 0.006468779407441616, + -0.023326929658651352, + 0.02125062793493271, + 0.026268357411026955, + 0.025875117629766464, + -0.0029473253525793552, + 0.02692899852991104, + -0.0033621923066675663, + 0.035769008100032806, + -0.004266641568392515, + -0.0077939946204423904, + -0.01064104400575161, + 0.011435386724770069, + 0.021832622587680817, + 0.027353696525096893, + -0.005930042359977961, + -0.00983097217977047, + -0.0038517748471349478, + -0.0024597090668976307, + -0.00259734271094203, + -0.0444202646613121, + -0.028061525896191597, + -0.02787277102470398, + 0.016547491773962975, + 0.00562724843621254, + -0.005902515258640051, + 0.0006454032845795155, + 0.03010636754333973, + -0.03189953789114952, + -0.006016554776579142, + 0.03403875604271889, + -0.0011934799840673804, + 0.0018462565494701266, + -0.002290616510435939, + -0.0005529921618290246, + 0.013472363352775574, + -0.005037390161305666, + 0.00504918722435832, + 0.0054502906277775764, + -0.012040974572300911, + -0.034479185938835144, + -0.026331275701522827, + 0.003124282928183675, + -0.010090509429574013, + 0.01233197096735239, + 0.020479880273342133, + -0.019960805773735046, + -0.02070009335875511, + 0.0027408748865127563, + -0.02725931815803051, + -0.0034703330602496862, + 0.023421308025717735, + -0.01189940795302391, + 0.008069261908531189, + 0.041966453194618225, + 0.020936038345098495, + -0.0033838204108178616, + 0.03391291946172714, + 0.014313895255327225, + 0.0261110607534647, + -0.0215023010969162, + 0.025324583053588867, + -0.011915137991309166, + -0.05130980908870697, + -0.030955763533711433, + 0.023279741406440735, + -0.0020350110717117786, + -0.010177021846175194, + -0.005308724939823151, + 0.0043531544506549835, + 0.03916659206151962, + -0.007746805902570486, + -0.02401903085410595, + 0.0013635557843372226, + -0.016295818611979485, + -0.041431646794080734, + -0.0163430068641901, + 0.02088884823024273, + 0.02614252083003521, + -0.018859736621379852, + -0.0064963060431182384, + -0.041966453194618225, + 0.02692899852991104, + -0.013944250531494617, + 0.025513337925076485, + -0.011687058955430984, + 0.035706087946891785, + -0.0053598457016050816, + -0.00991748459637165, + 0.003747566370293498, + 0.04130581021308899, + -0.017758667469024658, + 0.058388106524944305, + 0.01296115294098854, + -0.009799513034522533, + -0.012685885652899742, + 0.030767008662223816, + 0.009657946415245533, + -0.04152602329850197, + 0.05908020958304405, + -0.02156521938741207, + 0.00581600284203887, + 0.0001541004894534126, + -0.01818336546421051, + 0.014793646521866322, + 0.0022689884062856436, + -0.02063717693090439, + 0.03558025136590004, + 0.03403875604271889, + 0.0039854757487773895, + 0.04536403715610504, + 0.00665360176935792, + 0.006051946431398392, + 0.0031675391364842653, + -0.03479377552866936, + -0.012969017960131168, + 0.026881808415055275, + -0.020181018859148026, + -0.032104022800922394, + -0.01134100928902626, + -0.012017379514873028, + -0.04187207669019699, + 0.006936733610928059, + -0.03935534507036209, + 0.02776266448199749, + -0.03705883026123047, + 0.029807506129145622, + -0.01753845438361168, + -0.007097961846739054, + 0.005705895833671093, + 0.0026641932781785727, + 0.0035666765179485083, + -0.0152891268953681, + 0.029335619881749153, + 0.006354740355163813, + -0.017554182559251785, + 0.010625313967466354, + -0.020464150235056877, + -0.025544798001646996, + 0.014832970686256886, + 0.027102023363113403, + -0.017727209255099297, + 0.056154511868953705, + 0.04586738348007202, + 0.008124315179884434, + -0.00438461359590292, + -0.019756320863962173, + -0.02052706852555275, + -0.015186885371804237, + 0.0030849589966237545, + -0.004679542500525713, + -0.003830146510154009, + -0.016217170283198357, + 0.02066863514482975, + -0.008383852429687977, + -0.0029787844978272915, + -0.018670981749892235, + 0.00014992231444921345, + -0.006378334481269121, + 0.014345354400575161, + -0.0021333207841962576, + 0.013543146662414074, + 0.013786954805254936, + 0.012229728512465954, + -0.005587924271821976, + -0.004001205321401358, + 0.014667809940874577, + 0.0038045861292630434, + 0.01944172941148281, + 0.025702092796564102, + 0.0016702821012586355, + -0.006366537418216467, + 0.0026563284918665886, + 0.04064517095685005, + -0.007168744690716267, + 0.04111705720424652, + -0.05571408197283745, + -0.008942252025008202, + -0.015957633033394814, + 0.013134178705513477, + -0.013063395395874977, + -0.05373216047883034, + -0.02469540201127529, + -0.016972189769148827, + -0.006252497900277376, + -0.0005775695899501443, + 0.0138262789696455, + 0.023846006020903587, + 0.029697399586439133, + 0.03605214133858681, + 0.03303206339478493, + -0.023956112563610077, + 0.01233197096735239, + -0.0002796911576297134, + -0.019174328073859215, + 0.01695645973086357, + 0.011010688729584217, + 0.006071608047932386, + -0.0038045861292630434, + 0.007286716252565384, + 0.03611505776643753, + 0.007145150098949671, + -0.032025374472141266, + -0.016248630359768867, + 0.00793162826448679, + -0.013291473500430584, + -0.0007938509806990623, + 0.028612060472369194, + 0.0010745251784101129, + -0.0013183333212509751, + 0.005434561055153608, + 0.011938732117414474, + 0.0136847123503685, + 0.013755495660007, + -0.00959502812474966, + -0.014038627967238426, + -0.02354714274406433, + -0.008187233470380306, + -0.03856886923313141, + -0.009744458831846714, + 0.0044593289494514465, + 0.012457807548344135, + 0.023326929658651352, + 0.01602841727435589, + -0.016390196979045868, + -0.01745980605483055, + 0.001989788608625531, + -0.011278090998530388, + -0.0009172296850010753, + -0.003657121444121003, + 0.01714521460235119, + 0.009886025451123714, + 0.005269400775432587, + -0.01731823943555355, + -0.02329547144472599, + -0.0009452479425817728, + -0.0011010688031092286, + -0.007927695289254189, + -0.0012249391293153167, + -0.001364538911730051, + -0.0048289732076227665, + -0.027715476229786873, + -0.00673224963247776, + -0.0063390107825398445, + 0.015556530095636845, + -0.04036203771829605, + 0.026189709082245827, + 0.009477056562900543, + -0.010106239467859268, + 0.007970951497554779, + 0.008682713843882084, + 0.00303383800201118, + -0.02779412269592285, + -0.01731823943555355, + 0.056123051792383194, + 0.005890718195587397, + 0.025827929377555847, + 0.009728729724884033, + -0.001625059638172388, + -0.019960805773735046, + -0.0005205499473959208, + 0.023783087730407715, + 0.01840357854962349, + -0.004585165064781904, + 0.006201377138495445, + -0.02120343968272209, + -0.004125075880438089, + -0.01454983837902546, + 0.001621127245016396, + 0.027448073029518127, + -0.003008277388289571, + 0.018718170002102852, + 0.01670478656888008, + -0.019504647701978683, + 0.03661840409040451, + -0.009068088605999947, + -0.016972189769148827, + 0.009610758163034916, + -0.05703536421060562, + -0.03583192452788353, + -0.031160248443484306, + 0.007632766384631395, + 0.03410167619585991, + -0.022241590544581413, + -0.008706308901309967, + 0.007868709973990917, + -0.0048486352898180485, + 0.042469799518585205, + 0.012536454945802689, + 0.036492567509412766, + -0.006905274465680122, + 0.022335967049002647, + 0.0120802978053689, + -0.004290236160159111, + 0.027243589982390404, + 0.01994507573544979, + -6.190440035425127e-5, + -0.0006817778921686113, + 0.0196934025734663, + -0.002493134466931224, + -0.010334317572414875, + -0.0091467360034585, + 0.020873120054602623, + 0.003452637232840061, + -0.037719473242759705, + 0.00871417298913002, + -0.026740243658423424, + -0.024223513901233673, + -0.013173501938581467, + -0.011136525310575962, + 0.0007186440634541214, + -0.010853393003344536, + -0.015234073624014854, + -0.011569087393581867, + -0.013700442388653755, + -0.022131484001874924, + -0.0007963087409734726, + -0.02661440707743168, + 0.0007933594170026481, + 0.01720813289284706, + 0.027275048196315765, + -0.0013320966390892863, + -0.005741287488490343, + -0.004730663727968931, + -0.0007432214915752411, + 0.008973711170256138, + -0.008037802763283253, + 0.037247586995363235, + -0.014683539047837257, + 0.020118100568652153, + -0.010648909024894238, + -0.015729553997516632, + -0.021486571058630943, + -0.001290806569159031, + 0.00188361422624439, + -0.008989440277218819, + -0.04410567134618759, + -0.01734969951212406, + 0.005698031280189753, + -0.0241605956107378, + 0.007349634543061256, + 0.015878986567258835, + -0.0120802978053689, + 0.05049186944961548, + 0.025938035920262337, + 0.022996610030531883, + -0.01882827654480934, + -0.023484226316213608, + -0.0038124509155750275, + 0.017868774011731148, + -0.01046015415340662, + -0.029319889843463898, + -0.0004731155058834702, + -0.006519900634884834, + 0.020825929939746857, + 0.028250280767679214, + -0.0012318207882344723, + -0.04706282913684845, + -0.0108927171677351, + 0.05401528999209404, + -0.011458980850875378, + -0.011498305015265942, + -0.015076777897775173, + -0.009083817712962627, + -0.011529764160513878, + -0.005025592632591724, + 0.00860406644642353, + 0.010625313967466354, + 0.020857390016317368, + 0.014243111945688725, + 0.001825611456297338, + -0.0037986875977367163, + 0.0017912030452862382, + -0.007935560308396816, + -0.012504995800554752, + -0.03038950078189373, + -0.010294993408024311, + -0.0882742628455162, + -0.017019378021359444, + -0.005792408715933561, + 0.01127022597938776, + 0.0020232140086591244, + 0.0013842008775100112, + 0.01882827654480934, + 0.011624140664935112, + -0.019819239154458046, + -0.0015680399956181645, + 0.027510991320014, + -0.016940729692578316, + -0.006264295428991318, + 0.017223862931132317, + -0.010829798877239227, + 0.007333904970437288, + 0.025717822834849358, + -0.01602841727435589, + 0.022886501625180244, + 0.0030869252514094114, + -0.001304570003412664, + 0.0005677386070601642, + 0.018057528883218765, + -0.025434689596295357, + -0.000526940100826323, + 0.04508090391755104, + -0.019111409783363342, + 0.012355565093457699, + -0.023578602820634842, + -0.013535281643271446, + -0.005957568995654583, + 0.013173501938581467, + -0.0216438677161932, + -0.012536454945802689, + 0.00299844634719193, + 0.0016496371245011687, + 0.027102023363113403, + 0.014573432505130768, + 0.03454210236668587, + 0.012607238255441189, + 0.01100282371044159, + 0.005131767131388187, + -0.012638697400689125, + 0.0007368313381448388, + 0.0007687819888815284, + -0.02614252083003521, + 0.014722863212227821, + -0.0168935414403677, + 0.0007997495704330504, + 0.016185712069272995, + 0.003543082159012556, + 0.014392542652785778, + -0.010090509429574013, + -0.023924652487039566, + -0.006154188420623541, + 0.0053795077838003635, + 0.01580820232629776, + -0.0216438677161932, + 9.8186828836333e-5, + -0.005104240495711565, + 0.07984322309494019, + 0.02016528882086277, + 0.014911618083715439, + 0.017050838097929955, + -0.016610410064458847, + 0.011923003010451794, + 0.01602841727435589, + 0.024506647139787674, + 0.03243434056639671, + -0.0005770780262537301, + 0.008273745886981487, + 0.0044042752124369144, + -0.013425175100564957, + 0.02703910507261753, + 0.017664290964603424, + 0.004966606851667166, + 0.013928520493209362, + 0.010326452553272247, + -0.0010794406989589334, + -0.014597026631236076, + -0.010051185265183449, + -0.0013615896459668875, + -0.002518695080652833, + -0.015580124221742153, + 0.0014215585542842746, + 0.0031734376680105925, + 0.017727209255099297, + -0.009272572584450245, + 0.02002372406423092, + 6.242666859179735e-5, + 0.04630780965089798, + 0.018450768664479256, + 0.031207436695694923, + 0.013747630640864372, + -0.023106716573238373, + 0.04136873036623001, + 0.0108219338580966, + 0.030326582491397858, + 0.0007510862196795642, + 0.004266641568392515, + -0.004675609990954399, + -0.014030762948095798, + 0.007341769523918629, + -0.0261110607534647, + -0.0263941939920187, + 0.011514034122228622, + 0.0033680908381938934, + 0.0030770942103117704, + -0.025686362758278847, + -0.011207307688891888, + -0.0017459805821999907, + -0.008399582467973232, + -0.025356043130159378, + -0.023814545944333076, + -0.0346364788711071, + -0.00039667970850132406, + -0.012339835986495018, + -0.008179368451237679, + -0.02394038252532482, + 0.01692500151693821, + 0.0011030350578948855, + 0.02703910507261753, + 0.0009850633796304464, + -0.020763011649250984, + -0.0196934025734663, + 0.0013773191021755338, + 0.0006449117790907621, + -0.00021923067106399685, + 0.009335490874946117, + 0.022162942215800285, + 0.009870295412838459, + -0.002715314505621791, + -0.011278090998530388, + 0.008541148155927658, + -0.0215023010969162, + -0.0007628833991475403, + 0.0324028842151165, + -0.0009260775404982269, + 0.014156599529087543, + -0.040959760546684265, + -0.006535630207508802, + 1.3294853488332592e-5, + -0.0046362862922251225, + 0.012166811153292656, + -0.006028351839631796, + -0.003047601319849491, + 0.004278439097106457, + -0.018419308587908745, + 0.01064104400575161, + -0.021628137677907944, + 0.0012770432513207197, + -0.016972189769148827, + 0.00402086740359664, + 0.0026504299603402615, + -0.02279212512075901, + -0.014785781502723694, + -0.023846006020903587, + 0.015855390578508377, + 0.014329624362289906, + -0.030232204124331474, + -0.012929693795740604, + 0.005843529477715492, + 0.024034759029746056, + -0.009720864705741405, + -0.00020079759997315705, + -0.0019868393428623676, + -0.02125062793493271, + 0.007007516920566559, + -0.001298671355471015, + -0.03219839930534363, + -0.018623793497681618, + 0.017774397507309914, + 0.001252465764991939, + -0.006307551637291908, + 0.0057176933623850346, + 0.004998065996915102, + -0.011553358286619186, + -0.008053531870245934, + 0.02368870936334133, + -0.016138523817062378, + -0.0018600198673084378, + 0.01156122237443924, + -0.005658707581460476, + 0.004164399579167366, + -0.004136872943490744, + -0.0006670314469374716, + 0.005698031280189753, + 0.012158946134150028, + -0.0015002063009887934, + 0.009453462436795235, + 0.017915962263941765, + 0.020228207111358643, + -0.008273745886981487, + 0.017019378021359444, + 0.0018551043467596173, + -0.0037967213429510593, + 0.03103441186249256, + 0.021911269053816795, + -0.02189554087817669, + -0.015021724626421928, + -0.02203710563480854, + -0.007908034138381481, + 0.008132180199027061, + 0.034762315452098846, + 0.002811657963320613, + 0.0016545525286346674, + -0.04835265129804611, + 0.014494785107672215, + 0.025560526177287102, + -0.013519552536308765, + 0.004451463930308819, + 0.012591508217155933, + 0.010546666570007801, + -0.008438906632363796, + 0.0052536712028086185, + 0.017082296311855316, + 0.01002759113907814, + -0.017129484564065933, + 0.0021195574663579464, + 0.013598199933767319, + 0.027448073029518127, + -0.0033995499834418297, + -0.017774397507309914, + -0.02714921161532402, + 0.011757842265069485, + 0.008132180199027061, + 0.011034282855689526, + -0.02837611734867096, + -0.0002331169234821573, + -0.006421590689569712, + -0.016751976683735847, + 0.00479751406237483, + -0.010696097277104855, + -0.00606767600402236, + -0.0026425651740282774, + -0.013519552536308765, + 0.01575314998626709, + -0.03230850398540497, + 0.020574258640408516, + -0.0026484637055546045, + -0.010719691403210163, + -0.019315892830491066, + -0.013291473500430584, + 0.015391369350254536, + 0.036429647356271744, + 0.005745219998061657, + -0.02301233820617199, + -0.006885612849146128, + -0.0028726099990308285, + 0.014510514214634895, + -0.0014618654968217015, + -0.02455383539199829, + -0.006806964986026287, + 0.018372120335698128, + -0.004396410658955574, + 0.022461803629994392, + 0.010759015567600727, + -0.020007994025945663, + 0.023484226316213608, + -0.008006343618035316, + 0.00640192860737443, + 0.004396410658955574, + 0.0108219338580966, + -0.04026766121387482, + 0.02145511284470558, + 0.002426283899694681, + -0.004109346307814121, + -1.752677962940652e-5, + -0.0013674881774932146, + -0.03545441851019859, + -0.0030633308924734592, + 0.002595376456156373, + -0.022713476791977882, + 0.01474645733833313, + -0.007054705172777176, + 0.016877813264727592, + -0.004549773875623941, + -0.009154601022601128, + 0.004986268933862448, + -0.0009948943043127656, + -0.003340564202517271, + 0.009657946415245533, + -0.02884800359606743, + 0.009248978458344936, + 0.018670981749892235, + 0.01093204040080309, + 0.022776395082473755, + 0.013165637850761414, + 0.02848622389137745, + -0.022556181997060776, + 0.01583966240286827, + 0.01631154865026474, + 0.022603370249271393, + 0.005108173005282879, + -0.0038144171703606844, + -0.008006343618035316, + 0.010412964969873428, + -0.0014598993584513664, + 0.005705895833671093, + 0.008493959903717041, + 0.012465672567486763, + 0.010287129320204258, + -0.04687407240271568, + -0.012835316359996796, + 0.001817746669985354, + -0.0002602749736979604, + 0.008328799158334732, + 0.01768001914024353, + -0.015186885371804237, + -0.010483748279511929, + 0.001871817046776414, + 0.012607238255441189, + -0.0010804238263517618, + -0.0015562428161501884, + -0.007212000899016857, + 0.018026070669293404, + 0.003358260029926896, + -0.017113756388425827, + -3.213499076082371e-5, + -0.01868671178817749, + 0.00606767600402236, + 7.336362614296377e-5, + 0.012253323569893837, + 0.017223862931132317, + -0.02427070401608944, + -0.0035902708768844604, + 0.02722785994410515, + -0.012654426507651806, + 0.029681669548153877, + -8.946184243541211e-5, + -0.011152254417538643, + 0.030483877286314964, + 0.0007225763984024525, + 0.029115406796336174, + 0.012009515427052975, + 0.009500650689005852, + -0.02077874168753624, + -0.00817150343209505, + 0.006779438350349665, + -0.0015582090709358454, + 0.01093204040080309, + 0.011388197541236877, + -0.0163430068641901, + -0.006012622267007828, + 0.013535281643271446, + 0.018309202045202255, + 0.007573780603706837, + 0.03097149357199669, + 0.030987223610281944, + -0.01807325892150402, + -0.011506169103085995, + 0.024207785725593567, + 0.004486855585128069, + 0.005650842562317848, + 0.004376748576760292, + 0.017884504050016403, + 0.0023181431461125612, + 0.0020025689154863358, + -0.03359832987189293, + -0.0038242479786276817, + -0.01620144210755825, + -0.014290300197899342, + 0.013440904207527637, + 0.03759363666176796, + -0.00417619664222002, + 0.024758320301771164, + 0.003739701583981514, + -0.01346449926495552, + 0.011820760555565357, + -0.03712175041437149, + -0.009091682732105255, + -0.0005407034768722951, + -0.019599026069045067, + -0.015477881766855717, + -0.004302033223211765, + 0.007487268187105656, + -0.0003524403437040746, + -0.006803032476454973, + 0.007223797962069511, + -0.030955763533711433, + -0.0031714714132249355, + 0.006527765188366175, + -0.026299815624952316, + -0.024726860225200653, + -0.030185015872120857, + 0.009854566305875778, + -0.0020527068991214037, + 0.0010509309358894825, + -0.013661118224263191, + -0.021124791353940964, + 0.002595376456156373, + -0.0024616753216832876, + 0.028250280767679214, + 0.0016447216039523482, + -0.002799860667437315, + 0.0013792853569611907, + -0.031065870076417923, + 0.019992263987660408, + -0.0324028842151165, + 0.019142867997288704, + -0.027605369687080383, + 0.019488917663693428, + -0.015438558533787727, + 0.025308853015303612, + -0.012418483383953571, + 0.006606413051486015, + -0.008006343618035316, + 0.011223037727177143, + 0.008108585141599178, + -0.015470017679035664, + -0.032748933881521225, + -0.0025658835656940937, + 0.011734248138964176, + -0.0006630990537814796, + 0.0003988916869275272, + -0.011679194867610931, + -0.0005141598521731794, + 0.001565090729855001, + 0.0011197476414963603, + 0.0037121749483048916, + -0.0017548284959048033, + -0.007593442685902119, + 0.004734596237540245, + -0.01930016465485096, + -0.013354391790926456, + 0.015367775224149227, + -0.010082644410431385, + -0.0025835793931037188, + -0.011388197541236877, + 0.008808550424873829, + 0.007082232274115086, + -0.0037888565566390753, + 0.0008213776745833457, + 0.011978056281805038, + 0.059866685420274734, + -0.016799164935946465, + 0.02585938759148121, + -0.025953765958547592, + 0.01090844627469778, + -0.01709802635014057, + -0.008187233470380306, + -0.01258364412933588, + 0.006374401971697807, + -0.042690012603998184, + -0.024821236729621887, + -0.02667732536792755, + 0.026582947000861168, + -0.018560875207185745, + 0.029838966205716133, + 0.0075973751954734325, + -0.003889132523909211, + -0.020007994025945663, + 0.04372816160321236, + -0.007896236144006252, + 0.0027743002865463495, + 0.006453049834817648, + 0.003350395243614912, + -0.007333904970437288, + -0.02563917450606823, + 0.024852696806192398, + 0.017113756388425827, + -0.0063901315443217754, + -0.021486571058630943, + 0.01319709699600935, + -0.00833666417747736, + 0.014777916483581066, + 0.03488815203309059, + -0.020039452239871025, + -0.023578602820634842, + -0.028439035639166832, + 0.0004709035565610975, + -0.035517334938049316, + -0.03141191974282265, + 0.0045655034482479095, + 0.007530524395406246, + -0.023814545944333076, + 0.007719279266893864, + 0.010743285529315472, + 0.004994133487343788, + -0.00464415131136775, + 0.01480151154100895, + -0.019064219668507576, + -0.012929693795740604, + 0.020652905106544495, + 0.028360387310385704, + 0.004506517667323351, + 0.02365725114941597, + -0.019787780940532684, + -0.007990613579750061, + 0.02887946367263794, + -0.03237142413854599, + 0.026016684249043465, + -0.01628008857369423, + 0.022619100287556648, + 0.01337798684835434, + -0.033000607043504715, + -0.02142365463078022, + 0.01101855281740427, + 0.03482523560523987, + 0.007286716252565384, + 0.0073653641156852245, + -0.018733900040388107, + -0.029445726424455643, + -0.005603653844445944, + -0.004561570938676596, + -0.011443250812590122, + -0.0049744718708097935, + 0.009870295412838459, + -0.013621794991195202, + -0.017884504050016403, + 0.0058749886229634285, + 0.012953288853168488, + -0.01188367884606123, + 0.010924176312983036, + 0.0016987919807434082, + -0.013920656405389309, + 0.0006547427037730813, + -0.0021549491211771965, + -0.02505718171596527, + -0.006079473067075014, + -0.0060008252039551735, + -0.017239592969417572, + 0.006386199500411749, + -0.01941027119755745, + 0.02002372406423092, + 0.017082296311855316, + -0.014156599529087543, + -0.0016417723381891847, + -0.018592333421111107, + 0.0012210067361593246, + 0.006059810984879732, + -0.0030829927418380976, + 0.0028313198126852512, + 0.006394064053893089, + 0.004396410658955574, + -0.0018020170973613858, + 0.0007412552949972451, + -0.00775860296562314, + -0.01561158336699009, + -0.015886850655078888, + 0.00482504116371274, + 0.017585642635822296, + -0.006767640821635723, + -0.006590683478862047, + -0.0014215585542842746, + 0.10683513432741165, + 0.0006601497298106551, + 0.013401580974459648, + 0.011749977245926857, + 0.009272572584450245, + -0.03539149835705757, + 0.004923350643366575, + -0.005226144567131996, + 0.009280437603592873, + -0.002270954428240657, + -0.016374466940760612, + -0.011034282855689526, + 0.021974187344312668, + 0.010365776717662811, + -0.007750737946480513, + 0.003790822811424732, + 0.027841312810778618, + 0.018026070669293404, + 0.012725209817290306, + 0.011120795272290707, + -0.00016331701772287488, + -0.01226118765771389, + -0.02103041484951973, + 0.019756320863962173, + -0.003436907660216093, + 0.018387850373983383, + -0.019567565992474556, + 0.01756991259753704, + 0.01656322181224823, + 0.028722167015075684, + -0.003853740869089961, + -0.00705863768234849, + 0.010059050284326077, + -0.018781088292598724, + 0.004447531420737505, + 0.007306378334760666, + -0.015705959871411324, + 0.006759776268154383, + -0.0076681580394506454, + 0.016185712069272995, + -0.00624856585636735, + -0.004887958988547325, + 0.016248630359768867, + 0.022524721920490265, + -0.0038360452745109797, + 0.0028942381031811237, + -0.014809375628829002, + -0.00497053936123848, + 0.005831732414662838, + -0.005646910052746534, + -0.014077951200306416, + -0.016799164935946465, + 0.005068848840892315, + 0.012560050003230572, + 0.007373228669166565, + -0.019599026069045067, + 0.009374815039336681, + -0.008957981131970882, + -0.0022473600693047047, + -0.003008277388289571, + -0.02254045195877552, + 0.0019367014756426215, + -0.005560397636145353, + -0.02293369174003601, + -0.014125140383839607, + -0.027463803067803383, + -0.014077951200306416, + -0.008816415444016457, + -0.009138870984315872, + -0.00793162826448679, + -0.016248630359768867, + 0.00867484975606203, + -0.0006645736866630614, + -0.036586944013834, + -0.012756668962538242, + 0.019992263987660408, + 0.0026995849329978228, + 0.01919005624949932, + 0.028564872220158577, + 0.006555291824042797, + 0.011293820105493069, + 0.007404687814414501, + -0.019897887483239174, + -0.017585642635822296, + 0.0009683507378213108, + -0.01107360702008009, + 0.010523072443902493, + -0.025686362758278847, + 0.004569435492157936, + -0.021549489349126816, + -0.02902102842926979, + -0.008745632134377956, + -0.00950851570814848, + 0.013582470826804638, + 0.00041216349927708507, + 0.004298100713640451, + -0.018230553716421127, + -0.021974187344312668, + 0.025340313091874123, + -0.005721625406295061, + -0.000806631229352206, + 0.017994610592722893, + -0.00858833733946085, + -0.006185647565871477, + 0.002807725453749299, + -0.005123902577906847, + 0.02549760788679123, + 0.012300511822104454, + -0.009248978458344936, + 0.009052358567714691, + 0.009712999686598778, + -0.020731553435325623, + -0.00523007707670331, + 0.00201141694560647, + -0.020070912316441536, + 0.003537183627486229, + 0.019457459449768066, + 0.00048565000179223716, + -0.013181366957724094, + -0.026205439120531082, + -0.028077255934476852, + 0.020039452239871025, + -0.011836489662528038, + -0.025183016434311867, + -0.00984670128673315, + 0.009854566305875778, + -0.0010617449879646301, + -0.00815577432513237, + -0.009429868310689926, + -0.006484508980065584, + 0.0007058637565933168, + 0.017585642635822296, + -0.0013153840554878116, + -0.00815577432513237, + 0.021580949425697327, + 0.0015395302325487137, + 0.0027978946454823017, + -0.007872642017900944, + 0.00984670128673315, + -0.026409922167658806, + 0.030074909329414368, + -0.012119621969759464, + 0.0006508103106170893, + 0.013354391790926456, + -0.006791235413402319, + -0.0012151080882176757, + -0.014062222093343735, + -0.013000477105379105, + -0.0005367710837163031, + -0.003242254490032792, + 0.014085816219449043, + -0.01958329603075981, + -0.004746393300592899, + 0.001246567233465612, + 0.011246631853282452, + -0.0019691437482833862, + -0.01664186827838421, + 0.00804173480719328, + -0.01807325892150402, + -0.007699617184698582, + 0.006508103106170893, + -0.004396410658955574, + 0.00842317659407854, + 0.003757397411391139, + -0.020243937149643898, + -0.0010676435194909573, + 0.010625313967466354, + 0.014990265481173992, + 0.0122218644246459, + -0.005001998506486416, + 0.0032756798900663853, + 1.0737264346971642e-5, + 0.008832145482301712, + -0.030011991038918495, + 0.002320109400898218, + 0.013904926367104053, + 0.0027782325632870197, + 0.002101861871778965, + -0.0076484959572553635, + 0.01620144210755825, + -0.002170678460970521, + -0.006771573331207037, + 0.004589097574353218, + 0.0057884762063622475, + 0.002599308965727687, + -0.012284782715141773, + 0.0032225926406681538, + -0.023075256496667862, + 0.010263534262776375, + 0.005804205778986216, + -0.004180129151791334, + 0.010145562700927258, + -0.007825453765690327, + -0.005945771932601929, + -0.0013301305007189512, + -0.011773571372032166, + 0.026236897334456444, + 0.026598677039146423, + 0.016940729692578316, + -0.023075256496667862, + 0.002522627357393503, + -0.0016899440670385957, + 0.01564304158091545, + -0.0006449117790907621, + 0.0007550186128355563, + -0.02041696198284626, + -0.01065677311271429, + -0.016767704859375954, + -0.010066915303468704, + -0.010845527984201908, + -0.023610061034560204, + -0.03353540971875191, + 0.01714521460235119, + 0.0018413410289213061, + -0.007558051031082869, + 0.004262709524482489, + 0.015470017679035664, + 0.011962326243519783, + 0.014880158938467503, + 0.024836966767907143, + 0.018372120335698128, + -0.003635493339970708, + 0.022713476791977882, + -0.03517128527164459, + -0.00666146632283926, + 0.010939905419945717, + 0.018277741968631744, + 0.009626487269997597, + 0.0030692294239997864, + 0.00544635858386755, + 0.014038627967238426, + 0.0003448213392402977, + -0.004738528281450272, + 0.008549013175070286, + 0.0027743002865463495, + 0.04401129484176636, + 0.0024538105353713036, + 0.0069406661204993725, + 0.006523832678794861, + -0.015768878161907196, + -0.016295818611979485, + -0.0071333530358970165, + -0.005698031280189753, + -0.010287129320204258, + -0.005076713860034943, + -0.011411791667342186, + -0.005882853642106056, + 0.006386199500411749, + -0.00043330006883479655, + -2.726558523136191e-5, + -0.002204103861004114, + -0.016020551323890686, + -0.0016683159628883004, + 0.016987919807434082, + 0.013543146662414074, + -0.0136847123503685, + 0.004109346307814121, + 0.02423924393951893, + -0.009005170315504074, + -0.015564394183456898, + 0.0002730552514549345, + -0.0021116926800459623, + -0.009996131993830204, + -0.019347352907061577, + -0.0035824060905724764, + 0.02829746901988983, + -0.033503953367471695, + 0.008108585141599178, + 0.006386199500411749, + 0.007129420526325703, + -0.008289474993944168, + 0.0074518765322864056, + 0.003448704956099391, + 0.015312721952795982, + 0.00014549838670063764, + -0.007070434745401144, + 0.010106239467859268, + -0.006295754108577967, + -0.0026641932781785727, + 0.012937558814883232, + -0.008666984736919403, + 0.009123141877353191, + 0.004927283152937889, + -0.023216823115944862, + 0.004593030083924532, + -0.018749630078673363, + 0.015155426226556301, + 0.015344181098043919, + -0.00439247814938426, + -0.0049351477064192295, + -0.004286303650587797, + -0.02343703620135784, + -0.003309105057269335, + -0.010593854822218418, + -0.010177021846175194, + -0.0028706437442451715, + 0.0023299402091652155, + -0.0002858355001080781, + 0.024333622306585312, + 0.003136079991236329, + -0.010381505824625492, + 0.011223037727177143, + -0.001503155566751957, + -0.02988615445792675, + 0.019221516326069832, + 0.0198349691927433, + 0.03369270637631416, + -0.001916056382469833, + -0.013716171495616436, + 0.010987093672156334, + 0.00032909176661632955, + -0.0006768624298274517, + -0.023232553154230118, + -0.013417310081422329, + -0.01681489497423172, + -0.01793169230222702, + 0.013763360679149628, + 0.038222819566726685, + -0.024947073310613632, + -0.0030436688102781773, + 0.016012687236070633, + 0.004471126012504101, + 4.402432023198344e-5, + 0.008682713843882084, + 0.012426348403096199, + -0.011836489662528038, + 0.014943077228963375, + 0.009296166710555553, + 0.02153376117348671, + -0.021801162511110306, + 0.014392542652785778, + 0.004345289431512356, + -0.02243034541606903, + 0.010318588465452194, + 0.0012190404813736677, + 0.02243034541606903, + -0.009681541472673416, + -0.016972189769148827, + -0.013338662683963776, + 0.0073457020334899426, + -0.01958329603075981, + -0.013810548931360245, + -0.006460914853960276, + -0.005123902577906847, + 0.017758667469024658, + 0.012119621969759464, + 0.0006911173113621771, + 0.003141978522762656, + 0.016264360398054123, + 0.017994610592722893, + 0.011569087393581867, + -2.2396183339878917e-5, + 0.01561158336699009, + 0.003124282928183675, + -0.004801446571946144, + -0.014140869490802288, + 0.023279741406440735, + 0.026740243658423424, + -0.010515207424759865, + 0.013598199933767319, + -0.007188406772911549, + 0.012174675241112709, + -0.012324105948209763, + -0.000325159402564168, + 0.024758320301771164, + -0.005131767131388187, + -0.0024538105353713036, + 0.008910792879760265, + -0.038443032652139664, + 0.002506897784769535, + -0.01790023408830166, + -0.018199095502495766, + -0.013071260415017605, + -0.01462062168866396, + -0.00994107872247696, + 0.008800686337053776, + -0.02239888533949852, + 0.004773919936269522, + -0.019205786287784576, + -0.014628485776484013, + 0.002618970815092325, + -0.005764882080256939, + -0.010302858427166939, + -0.01400716882199049, + -0.009791648015379906, + 0.02423924393951893, + 0.023169634863734245, + 0.018293472006917, + 0.0171766746789217, + -0.015186885371804237, + -0.00976018887013197, + 0.005753084551542997, + 0.014911618083715439, + 0.002803793177008629, + 0.005009863059967756, + 0.020715823397040367, + -0.02175397425889969, + 0.0230437982827425, + -0.005053119733929634, + -0.01002759113907814, + -0.0013232488417997956, + -0.014840834774076939, + 0.02142365463078022, + 0.001256398158147931, + -0.00015065964544191957, + -0.011388197541236877, + -0.0034074147697538137, + 0.0010794406989589334, + 0.02066863514482975, + -0.01346449926495552, + 0.015407099388539791, + 0.012560050003230572, + -0.0244437288492918, + 0.008832145482301712, + 0.01695645973086357, + -0.0004234691150486469, + -0.003967780154198408, + -0.015116102062165737, + 0.00044632612843997777, + -0.0014461359241977334, + 0.0091467360034585, + -0.007676022592931986, + 0.01742834597826004, + 0.005053119733929634, + 0.0069603282026946545, + -0.004085751716047525, + 0.022225860506296158, + 0.010239940136671066, + -0.011584817431867123, + -0.007581645622849464, + 0.002941426821053028, + -0.011443250812590122, + -0.0198349691927433, + 0.01709802635014057, + -0.038726165890693665, + -0.019032761454582214, + 0.03413313254714012, + -0.023232553154230118, + 0.0023279741872102022, + 0.024648211896419525, + -0.012127486988902092, + -0.01145111583173275, + -0.0007869692635722458, + 0.008619796484708786, + 0.009996131993830204, + 0.009178195148706436, + 0.0015011894283816218, + 0.03328373655676842, + -0.006071608047932386, + -0.02041696198284626, + -0.003751498879864812, + 0.021486571058630943, + -0.007963087409734726, + -0.010239940136671066, + -0.01009837444871664, + -0.010373641736805439, + 0.0018551043467596173, + -0.004451463930308819, + 0.02952437475323677, + -0.037027373909950256, + -0.009193925186991692, + 0.003415279556065798, + -0.011537628248333931, + 0.006012622267007828, + -0.016610410064458847, + -0.0013212825870141387, + -0.0014874259941279888, + 0.010145562700927258, + -0.003423144342377782, + 0.008918657898902893, + -0.02401903085410595, + 0.024758320301771164, + 0.008399582467973232, + 0.01321282610297203, + 0.03419605270028114, + 0.015509340912103653, + -0.03038950078189373, + 0.021580949425697327, + 0.0014058289816603065, + -0.005568262655287981, + -0.024097677320241928, + -0.007270986679941416, + -0.0026838553603738546, + -0.00022021376935299486, + 0.02019674889743328, + -0.01339371595531702, + 0.017129484564065933, + 0.0038183494471013546, + -0.002072368748486042, + 0.009366950020194054, + 0.0019543971866369247, + 0.008753497153520584, + -0.004596962593495846, + -0.006197444628924131, + 0.018340660259127617, + -0.0013832177501171827, + -0.0035234203096479177, + -0.0009393493528477848, + -0.0028450831305235624, + 0.007031111046671867, + 0.008006343618035316, + 0.005434561055153608, + 0.007790062110871077, + 0.013063395395874977, + 0.02254045195877552, + 0.01628008857369423, + -0.0007992580067366362, + 0.005721625406295061, + 0.02027539536356926, + -0.003259950317442417, + 0.009484921582043171, + -0.008391717448830605, + 0.003246186999604106, + 0.013802684843540192, + 0.0036099329590797424, + 0.025151558220386505, + -0.010743285529315472, + -0.014541973359882832, + 0.02740088477730751, + 0.007691752165555954, + 0.005363778211176395, + -0.01840357854962349, + 0.005355913657695055, + -0.001767608686350286, + 0.004380681086331606, + 0.017333969473838806, + 0.027573909610509872, + -0.011333144269883633, + 0.010114103555679321, + -0.0024321824312210083, + -0.0032029305584728718, + 0.006614277604967356, + 0.006012622267007828, + -0.018356390297412872, + -0.00011981496936641634, + 0.008116450160741806, + 0.012678021565079689, + 0.004050360526889563, + 0.022855043411254883, + -0.003448704956099391, + 0.005560397636145353, + 0.008140044286847115, + 0.00030476012034341693, + -0.005226144567131996, + -0.011616276577115059, + -0.015713825821876526, + 0.009382679127156734, + -0.005902515258640051, + -0.013228555209934711, + -0.00889506284147501, + -0.013928520493209362, + 0.008399582467973232, + 0.016689058393239975, + 0.0013212825870141387, + 0.023468496277928352, + -0.02505718171596527, + -0.006142391357570887, + 0.013842008076608181, + -0.00808499101549387, + 0.008541148155927658, + -0.00303383800201118, + -0.02117198146879673, + 0.0046166242100298405, + -0.0010135731426998973, + -0.020574258640408516, + 0.007243460044264793, + 0.026236897334456444, + -0.0015336315846070647, + 0.00321866013109684, + 0.006649669259786606, + -0.01879681833088398, + -0.0077546704560518265, + -0.014754322357475758, + -0.006350807845592499, + -0.0013743698364123702, + 0.014864428900182247, + -0.0168935414403677, + 0.0020527068991214037, + 0.0018098818836733699, + 0.0018845972372218966, + 0.0035135892685502768, + -0.014943077228963375, + -0.010074780322611332, + -0.017160944640636444, + 0.006421590689569712, + 0.017271051183342934, + -0.00438461359590292, + -0.003747566370293498, + -0.0008184284088201821, + -0.008470364846289158, + 0.027086293324828148, + -0.016626140102744102, + -0.019536107778549194, + 0.005300859920680523, + 0.01213535200804472, + -0.009217519313097, + -0.008415311574935913, + -0.006162052974104881, + -0.03536003828048706, + -0.018812548369169235, + 0.00029222562443464994, + 0.008902927860617638, + 0.007086164318025112, + 0.009131006896495819, + 0.003431009128689766, + 0.0067479792051017284, + -0.002497066743671894, + -0.005159294232726097, + 0.0009344338905066252, + -0.004408207722008228, + -0.015399234369397163, + -0.004899756517261267, + 0.02192699909210205, + -0.012827452272176743, + 0.016578949987888336, + -0.016405925154685974, + 0.005694098770618439, + 0.004199791233986616, + 0.012882505543529987, + -0.030515337362885475, + -0.0012377193197607994, + 0.0033051727805286646, + 0.0009221451473422348, + 0.02239888533949852, + -0.009123141877353191, + -0.0009206705144606531, + 0.0028745762538164854, + 0.008525419048964977, + 0.012858911417424679, + -0.01678343489766121, + -0.007412552833557129, + -0.0035666765179485083, + -0.014628485776484013, + -0.01840357854962349, + 0.007640631403774023, + -0.0008675832650624216, + -0.02661440707743168, + 0.023216823115944862, + -0.007227730471640825, + -0.018026070669293404, + -0.000208908153581433, + -0.011411791667342186, + 0.0020123999565839767, + -0.012339835986495018, + 0.005631180480122566, + -0.0013055530143901706, + 0.019473189488053322, + -0.008202962577342987, + -0.00035858468618243933, + -0.00835239328444004, + -0.0029630549252033234, + 0.022776395082473755, + -0.02211575396358967, + 0.016972189769148827, + 0.0021451180800795555, + -0.009893890470266342, + 0.008478229865431786, + -0.025812199339270592, + 0.012119621969759464, + -0.0026779568288475275, + -0.00790410116314888, + -0.03580046817660332, + 0.003230457426980138, + -0.00048098029219545424, + 0.0008444804698228836, + -0.010523072443902493, + -0.007821520790457726, + 0.007420417387038469, + -0.004718866664916277, + -0.014337489381432533, + 0.003161640604957938, + 0.01197019126266241, + -0.02189554087817669, + 0.025214476510882378, + 0.0007938509806990623, + 0.003849808592349291, + -0.0016348905628547072, + -0.025654904544353485, + 0.0003480164159554988, + -0.022414615377783775, + -0.005619383417069912, + 0.0036728510167449713, + 0.009178195148706436, + -0.0014372881269082427, + -1.3486864190781489e-5, + 0.011065742000937462, + -0.00686988327652216, + -0.02711775340139866, + -0.014486920088529587, + 0.0019121239893138409, + -0.02477404847741127, + -0.00661821011453867, + -0.028108714148402214, + -0.04426296800374985, + 0.018230553716421127, + -0.0049744718708097935, + -0.0012367363087832928, + -0.007967019453644753, + -0.009319760836660862, + -0.011506169103085995, + -0.01980350911617279, + -0.0022512925788760185, + -0.00018789444584399462, + -0.01280385721474886, + 0.014604891650378704, + -0.011136525310575962, + 0.009477056562900543, + 0.01418805867433548, + 0.01575314998626709, + -0.008258015848696232, + 0.005340184085071087, + 0.005249739158898592, + -0.007538388948887587, + 0.011372468434274197, + -0.031993914395570755, + -0.011867948807775974, + -3.0414568755077198e-5, + 3.179704799549654e-5, + -0.011050011962652206, + 0.015768878161907196, + 0.011042147874832153, + -0.0035765075590461493, + 0.0034093810245394707, + 0.007731076329946518, + 0.006751911249011755, + -0.012882505543529987, + 0.009304031729698181, + 0.011262360960245132, + -0.007381093688309193, + 0.0024459457490593195, + 0.01470713410526514, + 0.0037220059894025326, + -0.02480550855398178, + 0.004243047442287207, + -0.01681489497423172, + -0.003014175919815898, + 0.031207436695694923, + 0.022524721920490265, + 0.0011895475909113884, + 0.014077951200306416, + -0.04202936962246895, + -0.02491561509668827, + -0.004773919936269522, + 0.010578125715255737, + 0.017837315797805786, + -0.013275744393467903, + -0.01046015415340662, + -0.0023672981187701225, + -0.007845115847885609, + 0.014062222093343735, + 0.003950084559619427, + 0.0009250944713130593, + 0.006311483681201935, + -0.003432975383475423, + 0.0004151127941440791, + -0.003625662298873067, + 0.025324583053588867, + -0.00826588086783886, + 0.002475438639521599, + -0.00034285514266230166, + 0.01620144210755825, + 0.008556878194212914, + -0.019473189488053322, + 0.009359085001051426, + 0.0073850261978805065, + 0.002300447318702936, + 0.0021136589348316193, + -0.0018904958851635456, + -0.010247805155813694, + 0.029618751257658005, + 0.021549489349126816, + 0.0009993183193728328, + -0.019756320863962173, + -0.023531414568424225, + -0.011514034122228622, + -0.02653575874865055, + -0.005084578413516283, + -0.017412617802619934, + 0.011749977245926857, + 0.004105413798242807, + 0.013024071231484413, + -0.012434213422238827, + -0.02081020176410675, + -0.006759776268154383, + -0.036964453756809235, + 0.020936038345098495, + 0.012788128107786179, + 0.008871468715369701, + -0.005395237356424332, + 0.011946597136557102, + 0.007243460044264793, + -0.019897887483239174, + -0.009170330129563808, + 0.009201789274811745, + 0.025796469300985336, + 0.0074715386144816875, + 0.005422763992100954, + -0.008619796484708786, + -0.014612756669521332, + -0.017617100849747658, + 0.0025540865026414394, + 0.007711414247751236, + -0.02854914218187332, + -0.011852219700813293, + -0.00965008232742548, + 0.018954113125801086, + -0.010554531589150429, + 0.025308853015303612, + -0.0007648495957255363, + -0.013606064952909946, + -0.006582818925380707, + 0.0021234899759292603, + -0.003855707123875618, + 0.012174675241112709, + 0.0021431518252938986, + -0.009217519313097, + 0.004880094435065985, + -0.00402283389121294, + -0.0033877529203891754, + 0.014510514214634895, + -0.023641521111130714, + 0.012237593531608582, + -0.004962674342095852, + -0.00031754039810039103, + -0.03727904334664345, + 0.006948530673980713, + 0.0023731966502964497, + -0.011836489662528038, + 0.010129833593964577, + -0.011946597136557102, + -0.00548961479216814, + -0.001046015415340662, + -0.00896584615111351, + 0.015941902995109558, + -0.0018167635425925255, + -0.00946919247508049, + 0.0039854757487773895, + 0.0043138302862644196, + 0.011860084719955921, + 0.011576952412724495, + 0.009484921582043171, + -0.01499813050031662, + 0.02153376117348671, + 0.011191578581929207, + 0.003134113736450672, + 0.00984670128673315, + -0.01269375067204237, + 0.014101546257734299, + -0.010129833593964577, + -0.0244437288492918, + 0.0022355630062520504, + 0.018136177211999893, + -0.007656360976397991, + -0.00867484975606203, + -0.0016457047313451767, + -0.002263089641928673, + -0.01796315237879753, + -0.006799099966883659, + 0.016185712069272995, + -0.01197019126266241, + 0.0007550186128355563, + 0.010066915303468704, + 0.0007220848929136992, + 0.0030711956787854433, + 0.021722516044974327, + -0.022603370249271393, + -0.014770052395761013, + 0.0032796121668070555, + -0.020149560645222664, + -0.0030888912733644247, + -0.017019378021359444, + 0.0013615896459668875, + -0.004007104318588972, + 0.0015739385271444917, + -0.000392747315345332, + 0.011136525310575962, + 0.006409793626517057, + 0.0022611236199736595, + -0.012654426507651806, + 0.01020848099142313, + -0.0005991977523081005, + 0.010735421441495419, + -0.0006994736613705754, + -0.007911966182291508, + -0.0262526273727417, + -0.008383852429687977, + 0.02636273391544819, + 0.0008051565964706242, + 0.002500999253243208, + 0.03529712185263634, + 0.013881332240998745, + 0.007251324597746134, + 0.03284331038594246, + -0.01001186203211546, + -0.026661595329642296, + 0.004054292570799589, + 0.022162942215800285, + -0.004270574077963829, + 0.0014038627268746495, + -0.008808550424873829, + 0.006311483681201935, + -0.0017705580685287714, + -0.019567565992474556, + -0.010405100882053375, + -0.00833666417747736, + -0.012040974572300911, + -0.01818336546421051, + -0.0007766467751935124, + 0.0013242318527773023, + -0.004294168669730425, + -0.01709802635014057, + 4.534535764832981e-5, + 0.008666984736919403, + 0.012772399000823498, + 0.005481749773025513, + 0.007200203835964203, + 0.002066470216959715, + -0.011616276577115059, + 0.010759015567600727, + -0.006987854838371277, + -0.004526179283857346, + 0.014361083507537842, + -0.0025521202478557825, + 0.01321282610297203, + 0.004939080215990543, + -0.005481749773025513, + -0.025261664763092995, + -0.0023397712502628565, + -0.010947770439088345, + -0.00585925905033946, + 0.011207307688891888, + -0.0016427553491666913, + 0.0012721277307718992, + -0.0020153492223471403, + -0.004231250379234552, + -0.009044494479894638, + -0.004773919936269522, + -0.023562872782349586, + 0.002404655795544386, + 0.019536107778549194, + 0.0290524885058403, + -0.009335490874946117, + -0.0010066914837807417, + -0.010688232257962227, + -0.001999619649723172, + -0.007270986679941416, + 0.0043531544506549835, + -0.009571433998644352, + 0.00237712892703712, + 0.0006999651668593287, + 0.005403101909905672, + -0.01393638551235199, + 0.017617100849747658, + -0.0014117275131866336, + 0.017853043973445892, + 0.006055878475308418, + 0.006626075133681297, + -0.006850221194326878, + -0.02854914218187332, + -0.018781088292598724, + -0.011506169103085995, + -0.008147909305989742, + 0.011608411557972431, + -0.012701615691184998, + 0.01583966240286827, + -0.021077603101730347, + 0.0171766746789217, + -0.013983574695885181, + -0.01664186827838421, + 0.01097922958433628, + 0.00434922194108367, + 0.009068088605999947, + -0.01125449687242508, + 0.020243937149643898, + 0.025450419634580612, + 0.023216823115944862, + -0.018340660259127617, + -0.00012104384222766384, + -0.016500303521752357, + 0.01991361565887928, + -0.03193099796772003, + 0.005886785686016083, + 0.0024144866038113832, + -0.007038975600153208, + 0.01589471474289894, + 0.008297340013086796, + 0.01116011943668127, + 0.01404649205505848, + 0.009217519313097, + 0.002390892244875431, + -0.0022375292610377073, + -0.022052835673093796, + 0.015855390578508377, + -0.000524973904248327, + -0.0003981543704867363, + -0.017050838097929955, + 0.020841659978032112, + 0.0021510166116058826, + 0.0013655220391228795, + -0.010310723446309566, + 0.01616998203098774, + -0.0004394444404169917, + -0.021832622587680817, + -3.84022350772284e-5, + -0.01181289553642273, + 0.0014854598557576537, + 0.0249942634254694, + 0.013315068557858467, + -0.019724862650036812, + 0.009453462436795235, + 0.01438467763364315, + 0.013582470826804638, + -0.03460502251982689, + -0.005705895833671093, + -0.014227382838726044, + 0.016516031697392464, + 0.010468019172549248, + 0.02239888533949852, + 0.0157767441123724, + 0.014447595924139023, + 0.017978880554437637, + 0.027935689315199852, + 0.02027539536356926, + -0.01926870457828045, + 0.008792821317911148, + 0.00731817539781332, + -0.008462500758469105, + -0.006574953906238079, + -0.018482226878404617, + -0.02368870936334133, + 0.0048289732076227665, + -0.0010430661495774984, + 0.0037141412030905485, + -0.005674437154084444, + -0.0023456697817891836, + -0.003782958025112748, + -0.019142867997288704, + 0.014156599529087543, + -0.004290236160159111, + 0.013794819824397564, + -0.0015867188340052962, + -0.004164399579167366, + 0.0064963060431182384, + 0.0026523962151259184, + -0.01988215744495392, + -0.013818413950502872, + -0.0007992580067366362, + -0.014589162543416023, + -0.0030613646376878023, + -0.015438558533787727, + -0.003344496712088585, + -0.012158946134150028, + 0.008580472320318222, + -0.011042147874832153, + 0.007919831201434135, + 0.024223513901233673, + 0.008902927860617638, + 0.005764882080256939, + 0.015878986567258835, + 0.02801433764398098, + 0.007978816516697407, + 0.0035961694084107876, + 0.007035043556243181, + -0.011624140664935112, + -0.015084642916917801, + 0.0036964453756809235, + -0.021486571058630943, + 0.014329624362289906, + 0.01616998203098774, + -0.006944598630070686, + -0.015981227159500122, + 0.035485874861478806, + -0.010082644410431385, + 0.0017223862232640386, + -0.006055878475308418, + -0.009225384332239628, + 0.014699269086122513, + 0.0229022316634655, + -0.01782158575952053, + 0.00647271191701293, + 0.012355565093457699, + -0.01597336307168007, + -0.005340184085071087, + -0.009626487269997597, + -0.006114864256232977, + -0.005674437154084444, + 0.020841659978032112, + 0.0003499825834296644, + 0.0034113472793251276, + -0.002298481296747923, + -0.0045104497112333775, + -0.00959502812474966, + 0.005092443432658911, + 0.02567063271999359, + 0.00941413827240467, + -0.014133005402982235, + 0.007270986679941416, + 0.0076484959572553635, + 0.0023613993544131517, + -0.0061266617849469185, + -0.024144867435097694, + 0.021470842882990837, + 0.00160933006554842, + 0.015021724626421928, + -0.006456982344388962, + 0.008470364846289158, + 0.013480228371918201, + 0.01065677311271429, + 0.004160467069596052, + -0.015737419947981834, + -0.0023613993544131517, + 0.002383027458563447, + -0.019976533949375153, + -0.003352361498400569, + 0.0108927171677351, + 0.009131006896495819, + -0.014895888045430183, + -0.00840744748711586, + 0.019032761454582214, + -0.004962674342095852, + -0.0019327690824866295, + -0.002715314505621791, + -2.829476579790935e-5, + -0.024396538734436035, + 0.00808499101549387, + 0.013802684843540192, + -0.010436560027301311, + -0.006924936547875404, + 0.011348874308168888, + 0.004884026944637299, + 0.006547427270561457, + -0.006905274465680122, + 0.012937558814883232, + -0.005918244831264019, + 0.0168935414403677, + 0.01188367884606123, + -0.002404655795544386, + 0.003527352586388588, + 0.009217519313097, + -0.008541148155927658, + 0.017333969473838806, + 0.00563511298969388, + 0.004711001645773649, + -0.0023672981187701225, + 0.006114864256232977, + -0.024947073310613632, + 0.00966581143438816, + -0.0026504299603402615, + 0.011506169103085995, + -0.00011649701627902687, + -0.009854566305875778, + 0.012103892862796783, + -2.614424010971561e-5, + -0.010829798877239227, + 0.022383157163858414, + 0.006331145763397217, + -0.001659468049183488, + 0.006626075133681297, + -0.018435038626194, + 0.02387746423482895, + 0.010255670174956322, + 0.0007058637565933168, + -0.00727491918951273, + -0.009374815039336681, + -0.01125449687242508, + 0.019142867997288704, + -0.015005995519459248, + 3.0967559723649174e-5, + 0.009170330129563808, + 0.00775860296562314, + -0.00965008232742548, + -0.007160879671573639, + 0.00544635858386755, + -0.02114052139222622, + -0.00018175008881371468, + 0.016799164935946465, + 0.01670478656888008, + -0.0013301305007189512, + -0.007695684675127268, + -0.008926521986722946, + -0.02578074112534523, + -0.02826601080596447, + -0.012213999405503273, + -0.020259667187929153, + 0.0004576317442115396, + 0.0070665027014911175, + -0.009233248420059681, + 0.0020546731539070606, + 0.016122793778777122, + 0.006268227472901344, + 0.03636673092842102, + -0.009948943741619587, + -0.03053106553852558, + -0.00648057647049427, + -6.685061089228839e-5, + 0.011026417836546898, + -0.015462152659893036, + 0.005835664924234152, + 0.01328360941261053, + -0.012426348403096199, + -0.012033109553158283, + -0.007302445825189352, + -0.005587924271821976, + -0.016547491773962975, + -0.014895888045430183, + -0.005127835087478161, + 0.0016437384765595198, + 0.002843117108568549, + -0.00230437982827425, + 0.036272354423999786, + 0.0017302510095760226, + -0.001098119537346065, + -0.007581645622849464, + -0.014321759343147278, + -0.008808550424873829, + 0.033472493290901184, + -0.001661434187553823, + -0.007373228669166565, + 0.036020681262016296, + 0.0009334507631137967, + 0.005642978008836508, + 0.018875466659665108, + -0.014730728231370449, + -0.020589986816048622, + 0.019284434616565704, + -0.016405925154685974, + 0.014424001798033714, + -0.019866427406668663, + -0.0013763360911980271, + 0.02600095421075821, + -0.0074361469596624374, + 0.007813656702637672, + -0.002815590240061283, + -0.00851755402982235, + -0.0007196271326392889, + 0.01807325892150402, + -0.00941413827240467, + 0.017255321145057678, + 0.008934387005865574, + 0.0026681257877498865, + -0.014864428900182247, + 0.0068541537038981915, + -0.00017941523401532322, + 0.0016604511765763164, + -0.019504647701978683, + -0.013110583648085594, + 0.009988266974687576, + -0.015438558533787727, + 0.0070271785371005535, + -0.025450419634580612, + 0.03164786472916603, + -0.014919483102858067, + -0.010798339731991291, + -0.004998065996915102, + 0.021879810839891434, + 0.0005318555631674826, + -0.027306506410241127, + 0.005690166261047125, + 0.025466149672865868, + -0.0022100023925304413, + 0.0045301117934286594, + -0.017113756388425827, + 0.024962803348898888, + 0.012481401674449444, + 0.012269052676856518, + -0.00303777027875185, + -1.972338759514969e-5, + -0.015532935038208961, + 0.005045254714787006, + -0.012324105948209763, + -0.01364538911730051, + 0.018608063459396362, + -0.0010558463400229812, + -0.018104717135429382, + -0.00950851570814848, + -0.034730855375528336, + -0.005902515258640051, + 0.0011177815031260252, + 0.008564742282032967, + 0.00666146632283926, + 0.013653253205120564, + 0.0028391845989972353, + -0.003657121444121003, + 0.006449117325246334, + 0.00047925987746566534, + 0.017381157726049423, + 0.06376761198043823, + 0.017239592969417572, + 0.016012687236070633, + -0.005383440293371677, + -0.006441252771764994, + -0.03605214133858681, + 0.0072788516990840435, + -0.015477881766855717, + -0.04061371088027954, + -0.0055761272087693214, + 0.0032776459120213985, + -0.01057026069611311, + 0.009768053889274597, + 0.006004757713526487, + -0.014416136778891087, + 0.009815242141485214, + -0.010609584860503674, + -0.0062131742015480995, + -0.019787780940532684, + 0.002074335003271699, + 0.008777091279625893, + 0.014699269086122513, + -0.008729903027415276, + -0.014361083507537842, + 0.013661118224263191, + -0.0029925478156656027, + 0.00048048875760287046, + -0.012851046398282051, + 0.012906099669635296, + 0.007408620323985815, + 0.020369773730635643, + -0.015792472288012505, + -0.03021647408604622, + 0.013456634245812893, + -0.006327213253825903, + 0.00844677072018385, + 0.011175848543643951, + 0.01664186827838421, + 0.0019308028277009726, + -0.009618623182177544, + -0.0243021622300148, + -0.009461327455937862, + -0.004640218801796436, + -0.017475536093115807, + 0.001254432019777596, + -0.00146284862421453, + 0.0027605369687080383, + 0.0170351080596447, + -0.01125449687242508, + -0.008399582467973232, + 0.004420004785060883, + 0.004250911995768547, + -0.04325627535581589, + -0.007990613579750061, + 0.006736181676387787, + 0.008297340013086796, + 0.017868774011731148, + -0.01093204040080309, + 0.0032756798900663853, + -0.007341769523918629, + -0.013527417555451393, + -0.008871468715369701, + 0.0053991698659956455, + 0.011836489662528038, + -0.004687407519668341, + 0.02139219455420971, + -0.0023161768913269043, + 0.015218344517052174, + 0.00648057647049427, + -0.009343355894088745, + 0.033975839614868164, + -0.018372120335698128, + -0.010735421441495419, + -0.016358736902475357, + -0.0203855037689209, + -0.01988215744495392, + -0.025906577706336975, + -0.019394541159272194, + -0.024176325649023056, + 0.015084642916917801, + 0.005544668063521385, + -0.008399582467973232, + -0.008942252025008202, + -0.0038104846607893705, + -0.006803032476454973, + 0.00016491455608047545, + 0.007086164318025112, + 0.00643732026219368, + 0.020102370530366898, + 0.01262296736240387, + -0.03243434056639671, + -0.016232900321483612, + 0.0025737483520060778, + -0.0028529479168355465, + 0.0033897191751748323, + -0.021911269053816795, + -0.007420417387038469, + -0.004659880418330431, + 0.0052733332850039005, + 0.016012687236070633, + 0.006901342421770096, + 0.019929345697164536, + 0.007915898226201534, + 0.003016142174601555, + -0.009264707565307617, + -0.019929345697164536, + -0.005096375942230225, + -0.009925348684191704, + -0.013519552536308765, + 0.012780263088643551, + -0.007388958241790533, + 0.009862431325018406, + -0.007035043556243181, + 0.016248630359768867, + 0.02019674889743328, + 0.022367427125573158, + -0.008729903027415276, + 0.009123141877353191, + -0.0011797166662290692, + 0.01678343489766121, + 0.003020074451342225, + 0.004156535025686026, + 0.0416204035282135, + 0.01771147921681404, + 0.007805791683495045, + 0.005544668063521385, + 0.016751976683735847, + 0.024176325649023056, + -0.022461803629994392, + -0.0044042752124369144, + 0.017050838097929955, + -0.0038832337595522404, + -0.0064451852813363075, + -0.0022198334336280823, + -0.0018551043467596173, + 0.0008582438458688557, + 0.010428695008158684, + -0.004152602516114712, + 0.018844006583094597, + -0.006008689757436514, + -0.014659944921731949, + 0.03359832987189293, + 0.011765707284212112, + -0.006162052974104881, + -0.028612060472369194, + -0.00047114930930547416, + -0.023216823115944862, + -0.004663812927901745, + 0.013535281643271446, + 0.009673676453530788, + -0.000758459500502795, + -0.005466020200401545, + -0.004801446571946144, + 0.012449942529201508, + -0.001765642547979951, + -0.0030711956787854433, + 0.0009319761302322149, + 0.01952037774026394, + 0.00037136496393941343, + 0.008690578863024712, + -0.017774397507309914, + 0.009610758163034916, + 0.0030672631692141294, + 0.009256843477487564, + 0.013842008076608181, + -0.0024341486860066652, + -0.0054856822825968266, + 0.019032761454582214, + -0.011458980850875378, + 0.0013399614254012704, + -0.011348874308168888, + 0.016500303521752357, + 0.012339835986495018, + 0.014943077228963375, + 0.012182540260255337, + 0.009980402886867523, + 0.00029050520970486104, + 0.008902927860617638, + -0.01804179884493351, + -0.015635177493095398, + 0.004416072741150856, + 0.014589162543416023, + 0.004329559858888388, + -0.006897409912198782, + -0.02106187306344509, + 0.0005991977523081005, + -0.011569087393581867, + 0.010814068838953972, + 0.00417619664222002, + 0.010169156827032566, + 0.01456556748598814, + 0.028030067682266235, + -0.01127022597938776, + -0.01240275427699089, + -0.01093204040080309, + 0.00878495629876852, + 0.002717280527576804, + 0.007927695289254189, + -0.02949291467666626, + 0.00015373181668110192, + 0.004337424878031015, + 0.014015033841133118, + -0.0016260427655652165, + -0.009013035334646702 + ], + "01d0cf15-5368-4755-adef-b598719b3d15": [ + -0.006359681021422148, + -0.028123293071985245, + -0.001160348649136722, + 0.012614242732524872, + -0.027185311540961266, + -0.029174480587244034, + 0.026344360783696175, + 0.03247359022498131, + -0.003594250651076436, + 0.04618753492832184, + 0.0009566812077537179, + 0.013341987505555153, + -0.003980359528213739, + -0.00452819000929594, + 0.0145225515589118, + -0.0012088649673387408, + -0.03210163116455078, + 0.019455043599009514, + 0.015056231059134007, + -0.027751334011554718, + 0.069734126329422, + -0.02653842605650425, + -0.01299428753554821, + 0.042338576167821884, + 0.0009491005330346525, + -0.021088426932692528, + 0.010778709314763546, + 0.010317804291844368, + -0.019778486341238022, + -0.014069732278585434, + 0.010641246102750301, + 0.021638277918100357, + 0.026457566767930984, + -0.005478301085531712, + 0.024355191737413406, + -0.03324985131621361, + -0.004976965952664614, + 0.0021812128834426403, + -0.008765282109379768, + 0.009598145261406898, + -0.015808233991265297, + 0.03299109637737274, + 0.010738278739154339, + 0.022511571645736694, + -0.03354094922542572, + 0.02103991061449051, + 0.005850259680300951, + -0.004192618653178215, + -0.004855675157159567, + -0.01631765626370907, + 0.008595474995672703, + -0.004758642520755529, + 0.022091098129749298, + -0.005332752130925655, + 0.02758961357176304, + -0.006578004453331232, + 0.005906861741095781, + 0.077496737241745, + 0.021961720660328865, + -0.06562640517950058, + 0.008170956745743752, + 0.011457937769591808, + 0.04715786129236221, + 0.007491728290915489, + 0.026004746556282043, + -0.012978115119040012, + -0.007188501302152872, + -0.00785560067743063, + -0.05414421111345291, + -0.005805786233395338, + 0.01266275905072689, + 0.018517062067985535, + -0.045120175927877426, + 0.017692284658551216, + 0.0012513167457655072, + -0.011166839860379696, + 0.023562759160995483, + -0.008619733154773712, + -0.0019123515812680125, + -0.014813649468123913, + -0.014474035240709782, + -0.011174925602972507, + 0.028786350041627884, + 0.011926928535103798, + 0.06413857638835907, + 0.030241839587688446, + -0.03619317337870598, + -0.061227597296237946, + -0.03777804225683212, + -0.025778338313102722, + 0.007540244609117508, + 0.014991543255746365, + 0.013253041543066502, + 0.004596921149641275, + -0.0367753691971302, + 0.010980860330164433, + 0.03764866292476654, + -0.005365096498280764, + 0.002516784006729722, + -0.015428190119564533, + -0.011288130655884743, + 0.015800148248672485, + -0.04043026641011238, + 0.04214451089501381, + 0.031519435346126556, + 0.015193694271147251, + 0.0166572704911232, + 0.00756854610517621, + -0.03087255172431469, + 0.05120088905096054, + 0.008377151563763618, + -0.026797180995345116, + 0.005009309854358435, + -0.02298056334257126, + -0.049389611929655075, + -0.04660801216959953, + -0.028236497193574905, + -0.021832343190908432, + 0.0029918397776782513, + -0.04929257929325104, + 0.05362670496106148, + 0.002579451072961092, + 0.0017071679467335343, + -0.007839428260922432, + 0.017255637794733047, + 0.017255637794733047, + -0.007309792097657919, + 0.022220473736524582, + 0.02521231397986412, + 0.02660311572253704, + -0.008114354684948921, + -0.04259732738137245, + 0.004257306922227144, + -0.038392581045627594, + 0.00877336785197258, + 0.024193471297621727, + -0.02836587466299534, + 0.05226824805140495, + -0.01782166212797165, + 0.048678040504455566, + -0.030290355905890465, + -0.03603145480155945, + -0.010859569534659386, + -0.0020963093265891075, + 0.019729970023036003, + -0.0038206602912396193, + -0.03658130392432213, + 0.06028961390256882, + -0.022640949115157127, + 0.023077595978975296, + -0.058219585567712784, + 0.007491728290915489, + 0.017401186749339104, + 0.011805637739598751, + -0.016131676733493805, + 0.0034264649730175734, + 0.0048637608997523785, + 0.025503411889076233, + -0.0044068992137908936, + 0.02349807135760784, + 0.009258531033992767, + -0.06148634850978851, + -0.009355563670396805, + -0.03447893261909485, + 0.03324985131621361, + 0.00308078620582819, + 0.05058635026216507, + 0.032894063740968704, + -0.02920682542026043, + 0.012282715179026127, + 0.02359510399401188, + -0.020910533145070076, + 0.022349851205945015, + 0.016066987067461014, + -0.005676409229636192, + -0.012282715179026127, + 0.02681335248053074, + 0.058381304144859314, + 0.02893189899623394, + -0.015727372840046883, + -0.028026260435581207, + -0.002921086736023426, + -0.004718211945146322, + -0.003485088935121894, + -0.008203300647437572, + 0.023627446964383125, + 0.02731468714773655, + 0.034349553287029266, + -0.006387982051819563, + 0.0032101632095873356, + -0.004754599183797836, + -0.026344360783696175, + -0.009129154495894909, + 0.05236528068780899, + -0.032619137316942215, + -0.03260296583175659, + -0.026942729949951172, + -0.0031859050504863262, + 0.017692284658551216, + 0.022835014387965202, + -0.00038737247814424336, + -0.043955784291028976, + -0.04201513156294823, + 0.050327595323324203, + -0.04369703307747841, + 0.03303961455821991, + -0.002183234319090843, + -0.017643768340349197, + 0.020295994356274605, + -0.032295696437358856, + 0.014506380073726177, + -0.03399376943707466, + -0.0022054710425436497, + 0.004125908482819796, + -0.010115652345120907, + 0.008781453594565392, + -0.0026987201999872923, + 0.03764866292476654, + -0.005142729729413986, + -0.01777314580976963, + -0.020134272053837776, + 0.017692284658551216, + 0.007750482298433781, + -0.0410771518945694, + -0.0638798177242279, + -0.0041764467023313046, + -0.008458011783659458, + 0.048613350838422775, + -0.044732045382261276, + -0.003658939152956009, + 0.04091542959213257, + -0.002055878983810544, + 0.004459458403289318, + -0.04282373934984207, + -0.009921587072312832, + 0.016738129779696465, + 0.033411573618650436, + 0.007305749226361513, + 0.007584718056023121, + -0.035125814378261566, + 0.018921364098787308, + 0.023142283782362938, + -0.015646513551473618, + -0.008065838366746902, + -0.001986136892810464, + 0.02676483616232872, + -0.019697625190019608, + 0.05893115699291229, + 0.059545695781707764, + -0.003602336859330535, + -0.005381268449127674, + 0.013754376210272312, + 3.7966547097312286e-5, + -0.013665430247783661, + -0.017190949991345406, + 0.04246795177459717, + 0.04207982122898102, + -0.026409050449728966, + -0.009436423890292645, + -0.0020983307622373104, + 0.0045645772479474545, + 0.0032869805581867695, + -0.0009374768123961985, + -0.007180415093898773, + 0.04266201704740524, + -0.01444169133901596, + 0.04431157186627388, + -0.047610681504011154, + 0.0016717915423214436, + 0.02737937681376934, + 0.015969954431056976, + 0.009048293344676495, + -0.0325382798910141, + -0.008272032253444195, + 0.013867581263184547, + -0.013269213028252125, + 0.0009657780174165964, + -0.011983530595898628, + 0.02126632072031498, + 0.011902670376002789, + -0.01605081558227539, + 0.006780155468732119, + -0.0016414688434451818, + 0.01732032559812069, + 0.032182492315769196, + -0.004904191475361586, + 0.00459287827834487, + 0.005243805702775717, + -0.038230858743190765, + -0.02555192820727825, + -0.007107640616595745, + 0.0022822886239737272, + 0.012226112186908722, + 0.01720712147653103, + 0.009541543200612068, + 0.030128635466098785, + -0.0015929525252431631, + 0.0027714946772903204, + -0.005737054627388716, + 0.02049005962908268, + -0.021120771765708923, + -0.011207269504666328, + -0.0074108680710196495, + -0.0022721809800714254, + 0.001810265239328146, + -0.006796327885240316, + 0.020344510674476624, + 0.005878560710698366, + -0.050780415534973145, + 0.02621498517692089, + 0.039556972682476044, + -0.01335815992206335, + -0.004305823240429163, + -0.027524925768375397, + -0.005700667388737202, + -0.005049740429967642, + 0.008627818897366524, + -0.00479098642244935, + 0.001760738086886704, + -0.022867359220981598, + 0.01252529677003622, + -0.0055551184341311455, + -0.08396557718515396, + 0.03160029649734497, + 0.03965400531888008, + -0.04469970241189003, + 0.0067882416769862175, + 0.015541394241154194, + -0.05896349996328354, + -0.01309940591454506, + 0.0036629822570830584, + -0.021444212645292282, + -0.037454597651958466, + -0.0004482705844566226, + -0.0006347551825456321, + -0.057443320751190186, + -0.04408516362309456, + -0.031794361770153046, + -0.0011148646008223295, + -0.00646884273737669, + -0.021735310554504395, + -0.004129951819777489, + 0.03968634828925133, + 0.00033102280576713383, + 0.0065941764041781425, + 0.0023732567206025124, + 0.027185311540961266, + 0.019891690462827682, + -0.022010236978530884, + -0.003062592586502433, + 0.0008940142579376698, + -0.008967433124780655, + 0.01877581514418125, + 0.012129079550504684, + 0.041335903108119965, + 0.010584644041955471, + -0.03370267152786255, + 0.014150593429803848, + 0.016624925658106804, + 0.021314837038517, + -0.0051791169680655, + -0.024031750857830048, + -0.022511571645736694, + -0.009824554435908794, + -0.007989021018147469, + 0.006165615748614073, + 0.023012908175587654, + -0.00265222555026412, + 0.0045564910396933556, + 0.025503411889076233, + -0.03913649916648865, + 0.01738501526415348, + -0.0028220326639711857, + -0.01454680971801281, + -0.04152996838092804, + -0.0367753691971302, + 0.03596676513552666, + 0.005688538309186697, + -0.011668174527585506, + 0.02055474743247032, + 0.014021215960383415, + -0.011918842792510986, + -0.011377076618373394, + 0.00569258164614439, + 0.019406527280807495, + 0.03203694149851799, + 0.004859718028455973, + 0.0014251668471843004, + -0.02310994081199169, + -0.014732789248228073, + -0.01887284778058529, + 0.01027737371623516, + -0.035222847014665604, + 0.0005508624017238617, + -0.03826320543885231, + 0.018727298825979233, + -0.015517136082053185, + -0.013390503823757172, + 0.013317729346454144, + -0.022899702191352844, + 0.001266478095203638, + -0.014611498452723026, + -0.015428190119564533, + 0.008935089223086834, + 0.022915875539183617, + -0.033896736800670624, + 0.0052114613354206085, + -0.012476780451834202, + 0.020279821008443832, + -0.02082967385649681, + 0.006921661552041769, + 0.016948368400335312, + 0.022786498069763184, + 0.02788071148097515, + 0.04987477511167526, + -0.00532870925962925, + 0.02082967385649681, + 0.03593442216515541, + -0.05893115699291229, + -0.00830437708646059, + 0.021476557478308678, + 0.045055489987134933, + 0.007875815965235233, + 0.02220430225133896, + -0.00652544479817152, + 0.03193990886211395, + 0.001770845614373684, + -0.006197959650307894, + -0.02065178006887436, + -0.024500740692019463, + -7.113200263120234e-5, + 0.0356433242559433, + 0.005838130600750446, + -0.005199332255870104, + -0.005830044392496347, + -0.011126409284770489, + 0.00924235861748457, + -0.0012796178925782442, + -0.012460608035326004, + 0.013875667005777359, + -0.00371352001093328, + 0.005712796468287706, + -0.012007788754999638, + 0.0076413205824792385, + -0.04660801216959953, + -0.0333145409822464, + -0.03848961368203163, + -8.755679300520569e-5, + -0.00258955848403275, + -0.016180193051695824, + -0.0165521502494812, + 0.029352374374866486, + -0.06921661645174026, + 0.007576631847769022, + -0.010115652345120907, + 0.00238740723580122, + -0.015557566657662392, + -0.0047869435511529446, + 0.02875400520861149, + -0.03538456931710243, + -0.045346587896347046, + -0.00824373122304678, + 0.026781007647514343, + -0.013649257831275463, + 0.014506380073726177, + -0.03603145480155945, + 0.006420326419174671, + 0.005757269915193319, + 0.0073663946241140366, + 0.0016455118311569095, + -0.02137952484190464, + 0.011643916368484497, + -0.038780711591243744, + -0.0008818851783871651, + 0.011045549064874649, + 2.863284134946298e-5, + 0.0001482021907577291, + 0.0010132835013791919, + 0.019083086401224136, + -0.022786498069763184, + -0.029222996905446053, + -0.01571120135486126, + -0.01631765626370907, + 0.005247848574072123, + 0.007847514934837818, + 0.008013279177248478, + -0.0319722555577755, + -0.028834866359829903, + -0.005433827638626099, + -0.0001552774920128286, + 0.044958457350730896, + -0.0037256490904837847, + 0.014093990437686443, + -0.003612444270402193, + -0.004657566547393799, + -0.05291513353586197, + 0.0047060828655958176, + -0.026748664677143097, + -0.04201513156294823, + -0.04043026641011238, + 0.03871602192521095, + -0.008166913874447346, + -0.024678634479641914, + 0.015905266627669334, + 0.0029776890296489, + 0.017870178446173668, + 0.008263946510851383, + 0.014643842354416847, + 0.002258030464872718, + -0.0017334476578980684, + -0.018403857946395874, + -0.0007712073274888098, + -0.0004859212785959244, + 0.00226409500464797, + -0.0027775592170655727, + 0.03703412413597107, + -0.03004777431488037, + -0.007370437495410442, + 0.049842432141304016, + -0.009573887102305889, + -0.005587462801486254, + -0.012234198860824108, + -0.017190949991345406, + 0.011271958239376545, + -0.0429854579269886, + -0.005227633286267519, + 0.0004439748590812087, + -0.011983530595898628, + 0.04182106629014015, + -0.013608827255666256, + -0.013681601732969284, + 0.02564896084368229, + -0.008522700518369675, + 0.027217654511332512, + 0.020166616886854172, + -0.020570918917655945, + -0.0010855526197701693, + 0.004077392164617777, + 0.0028341617435216904, + 0.019002225250005722, + -0.03109896183013916, + 0.020360682159662247, + -0.02281884290277958, + -0.01799955405294895, + 0.012072477489709854, + 0.04207982122898102, + -0.02249540016055107, + 0.013940355740487576, + -0.006889317184686661, + 0.022446883842349052, + -0.019196290522813797, + 0.03538456931710243, + -0.010059050284326077, + -0.001957835629582405, + 0.00709551153704524, + -0.05149198696017265, + 0.02272181026637554, + -0.030290355905890465, + -0.034672997891902924, + -0.018905192613601685, + -0.010463353246450424, + 0.02272181026637554, + 0.009298961609601974, + -0.0006069593946449459, + -0.029805192723870277, + 0.010988946072757244, + -0.01152262557297945, + 0.0166572704911232, + -0.01421528123319149, + 0.017304154112935066, + 0.03226335346698761, + 0.008862314745783806, + 0.038295548409223557, + 0.002674462040886283, + -0.018727298825979233, + 0.03855430334806442, + -0.025179969146847725, + -0.007839428260922432, + -0.03082403540611267, + -0.021800000220537186, + 0.039168842136859894, + -0.02505059354007244, + -0.010988946072757244, + -0.004807158838957548, + -0.002975667594000697, + 0.018452374264597893, + -0.015452448278665543, + -0.01727180927991867, + 0.006351594813168049, + 0.032344214618206024, + 0.006816542707383633, + 0.026554599404335022, + 0.010916171595454216, + 0.007984977215528488, + -0.031131304800510406, + 0.014425518922507763, + 0.009945845231413841, + 0.03337922692298889, + 0.015557566657662392, + 0.02377299591898918, + 0.009654747322201729, + 0.021735310554504395, + -0.011870326474308968, + -0.01681899093091488, + -0.0036872404161840677, + 0.04447329416871071, + 0.010495697148144245, + 0.0205385759472847, + -0.00916149839758873, + 0.022754153236746788, + -0.004665652755647898, + 0.006383939180523157, + 0.024516914039850235, + 0.02087819017469883, + 0.025163797661662102, + 0.0017031249590218067, + 0.028689317405223846, + 0.017562907189130783, + -0.012638500891625881, + -0.007993063889443874, + 0.029077447950839996, + -0.05469406396150589, + 0.058510683476924896, + -0.016851335763931274, + 0.00018749535956885666, + 0.024727150797843933, + -0.03499643877148628, + -0.004936535377055407, + -0.023190800100564957, + 0.00344870169647038, + 0.0010683698346838355, + -0.005704710725694895, + 0.040559642016887665, + -0.01871112734079361, + 0.03848961368203163, + 0.0074795992113649845, + -0.002739150542765856, + -0.003115152008831501, + -0.010212684981524944, + -0.019002225250005722, + -0.02249540016055107, + 0.007669621612876654, + -0.007228931877762079, + 0.008098182268440723, + -0.01837151311337948, + 0.012501038610935211, + -0.014991543255746365, + 0.008417581208050251, + 0.03189139440655708, + 0.032958753407001495, + -0.010964687913656235, + 0.02171913906931877, + 0.030112462118268013, + 0.0199402067810297, + 0.005906861741095781, + -0.016131676733493805, + 0.012864910997450352, + 0.0026623329613357782, + -0.007455341052263975, + 0.010115652345120907, + 0.02865697257220745, + -0.023643620312213898, + 0.007742396090179682, + -0.0021892988588660955, + 0.025665132328867912, + 0.00499718077480793, + 0.03160029649734497, + 0.007629191502928734, + 0.022123441100120544, + 0.004904191475361586, + -0.016738129779696465, + 0.005975593347102404, + 0.012331231497228146, + 0.01609933190047741, + 0.011417507193982601, + -0.01224228460341692, + -0.005433827638626099, + -0.011029376648366451, + 0.002913000760599971, + -0.013802892528474331, + -0.03130919858813286, + -0.02343338169157505, + -0.017611423507332802, + 0.03158412501215935, + 0.004722255282104015, + -0.0035841430071741343, + -0.014045474119484425, + 0.039233531802892685, + -0.02632818929851055, + 0.0005422709509730339, + 0.005995808634907007, + 0.017093917354941368, + -0.027169138193130493, + 0.029789021238684654, + -0.00030575389973819256, + 8.502990385750309e-5, + 0.00013240912812761962, + -0.013107492588460445, + 0.02049005962908268, + -0.02703976258635521, + -0.03661365061998367, + -0.022123441100120544, + 0.010358233936131, + -0.02699124626815319, + 0.00569258164614439, + 0.010883827693760395, + -0.02188085950911045, + -0.0387483686208725, + -0.004879933316260576, + -0.011951186694204807, + 0.017239466309547424, + 0.011037462390959263, + -0.010398664511740208, + 0.009695177897810936, + 0.03370267152786255, + 0.014393175020813942, + -0.009460682049393654, + 0.018614094704389572, + -0.003068657126277685, + 0.030225668102502823, + -0.03616083040833473, + 0.030177151784300804, + -0.014304228127002716, + -0.036128487437963486, + -0.027298515662550926, + 0.03519050404429436, + 0.0034082713536918163, + -0.007491728290915489, + 0.0006276798667386174, + -0.005013353191316128, + 0.03816617280244827, + -0.02265712060034275, + -0.009986275807023048, + 0.013908011838793755, + -0.004904191475361586, + -0.012347402982413769, + -0.0034709384199231863, + 0.010956602171063423, + 0.01063316036015749, + -0.005381268449127674, + 0.010439095087349415, + -0.01524221058934927, + 0.025406379252672195, + -0.006537573877722025, + 0.019115429371595383, + -0.009557714685797691, + 0.03554629161953926, + 0.010317804291844368, + -0.012872996740043163, + 0.01377054862678051, + 0.043891098350286484, + -0.014498293399810791, + 0.022171957418322563, + 0.009129154495894909, + -0.03842492401599884, + 0.01850089058279991, + 0.01799955405294895, + 0.023643620312213898, + -0.03687240183353424, + 0.026117952540516853, + -0.02336869388818741, + -0.0020983307622373104, + 0.014368916861712933, + -0.018031898885965347, + -0.01385140884667635, + -0.0015697050839662552, + -0.01027737371623516, + 0.038004450500011444, + 0.04059198871254921, + -0.008126483298838139, + 0.044829078018665314, + -0.0023651705123484135, + 0.034446585923433304, + 0.015355415642261505, + -0.006933790631592274, + -0.028058605268597603, + 0.013010459952056408, + -0.019244806841015816, + -0.05285044386982918, + -0.00552681740373373, + -0.003058549715206027, + -0.059383977204561234, + 0.022171957418322563, + -0.0383278913795948, + 0.017579080536961555, + -0.019358010962605476, + 0.03299109637737274, + -0.02126632072031498, + -0.02754109725356102, + 0.0015211887657642365, + -0.013972699642181396, + -0.007665578741580248, + 0.0026097737718373537, + 0.021120771765708923, + 0.00654970295727253, + -0.04848397523164749, + 0.010980860330164433, + -0.004196661524474621, + -0.027638129889965057, + 0.024193471297621727, + 0.014805563725531101, + -0.030112462118268013, + 0.046058159321546555, + 0.04518486559391022, + -0.0009966060752049088, + -0.025131452828645706, + -0.010625073686242104, + -0.006848887074738741, + -0.0038954562041908503, + 0.012428264133632183, + -0.0009258530917577446, + -0.01174903567880392, + -0.028996586799621582, + 0.016754303127527237, + 0.0036892618518322706, + 0.0017769101541489363, + -0.0037559717893600464, + 0.007188501302152872, + 0.010471438989043236, + -0.002120567485690117, + 0.007232974749058485, + 0.018678782507777214, + 0.02042536996304989, + 0.012315059080719948, + 0.0018132975092157722, + -0.003529562149196863, + 0.005834087263792753, + -0.0077100517228245735, + 0.023061424493789673, + 0.01071402058005333, + -0.009266616776585579, + 0.002597644692286849, + -0.0019719861447811127, + 0.021233975887298584, + 0.006763983517885208, + 0.05430593341588974, + -0.025277001783251762, + -0.011377076618373394, + -0.027007417753338814, + 0.020522402599453926, + 0.0018234050367027521, + -0.06475311517715454, + -0.009048293344676495, + -0.02610177919268608, + -0.008086053654551506, + -0.007827299647033215, + 0.013527967035770416, + 0.014999628998339176, + 0.0253740344196558, + 0.04809584468603134, + 0.03282937780022621, + -0.0036892618518322706, + -0.0035720139276236296, + 0.004156231414526701, + -0.026942729949951172, + 0.02171913906931877, + -0.017223292961716652, + 0.029255341738462448, + 0.0021994065027683973, + 0.017368841916322708, + 0.027492580935359, + -0.006222217809408903, + -0.02272181026637554, + -0.013366245664656162, + 0.009501112625002861, + -0.007778783328831196, + -0.002739150542765856, + 0.031163649633526802, + 0.014393175020813942, + 0.008433753624558449, + 0.004382641054689884, + 0.006226261146366596, + 0.003198034130036831, + 0.02243071235716343, + -0.01592952571809292, + -0.011902670376002789, + -0.00460905022919178, + -0.004580749198794365, + -0.035513944923877716, + -0.0032465504482388496, + -0.015177521854639053, + 0.014263797551393509, + -0.01022077165544033, + -0.01099703274667263, + -0.03738991171121597, + -0.0069054896011948586, + -0.00516294501721859, + 0.001201789709739387, + -0.005078041460365057, + -0.010455266572535038, + 0.0023631490767002106, + 0.017093917354941368, + 0.0008343796362169087, + -0.024694805964827538, + -0.013883753679692745, + 0.002090244786813855, + -0.011660088784992695, + -0.025002077221870422, + 0.002090244786813855, + 0.007629191502928734, + 0.002553171245381236, + -0.03942759707570076, + -0.0406566746532917, + 0.012023961171507835, + 0.0395246297121048, + -0.046058159321546555, + 0.020312165841460228, + 0.016835162416100502, + -0.004012703895568848, + 0.020732641220092773, + 0.025794509798288345, + 0.012889169156551361, + -0.013786721043288708, + -0.016511721536517143, + 0.058834124356508255, + 0.012331231497228146, + 0.017401186749339104, + 0.006072625983506441, + -0.006396068260073662, + -0.023918544873595238, + 0.004605007357895374, + 0.009533456526696682, + 0.034899406135082245, + 0.006359681021422148, + 0.011312388814985752, + -0.00742704002186656, + -0.0019042656058445573, + -0.0024116653949022293, + -0.009541543200612068, + 0.020797329023480415, + 0.007798998616635799, + 0.008991691283881664, + 0.02210726961493492, + -0.010026706382632256, + 0.030581453815102577, + 0.006933790631592274, + 0.007576631847769022, + 0.00687314523383975, + -0.038392581045627594, + -0.03826320543885231, + -0.035513944923877716, + 0.007398738991469145, + 0.02365979179739952, + -0.011619658209383488, + -0.004188575781881809, + 0.0119107561185956, + 0.016147848218679428, + 0.029352374374866486, + -0.003913649823516607, + -0.012759791687130928, + -0.001271531917154789, + -0.0024379449896514416, + -0.0003805498708970845, + 0.0017839855281636119, + 0.018064243718981743, + 0.013277299702167511, + -0.00777474045753479, + 0.007475556340068579, + 0.013730118051171303, + 0.00016399526793975383, + 0.000381307938368991, + 0.014174851588904858, + -0.0044028558768332005, + 0.007346179336309433, + -0.030177151784300804, + 0.010431008413434029, + -0.03852195665240288, + -0.003511368529871106, + -0.006104970350861549, + 0.00391567125916481, + -0.01905074156820774, + 0.0023247404024004936, + -0.011999703012406826, + 0.0035801001358777285, + -0.02831735834479332, + -0.01149836741387844, + -0.015622255392372608, + -0.004738427232950926, + -0.019519733265042305, + 0.010940429754555225, + 0.02865697257220745, + -0.02377299591898918, + -0.02632818929851055, + -0.011740949004888535, + -0.020344510674476624, + 0.01185415405780077, + -0.03064614161849022, + 0.00905638001859188, + -0.012767878361046314, + 0.00707933958619833, + 0.01224228460341692, + -0.023578930646181107, + -0.015630340203642845, + 0.0065133157186210155, + 0.008595474995672703, + -0.017611423507332802, + -0.04072136431932449, + -0.0197623148560524, + -0.0007489706622436643, + -0.046122848987579346, + 0.002423794474452734, + 0.016236795112490654, + -0.011894584633409977, + 0.0705103874206543, + 0.030419733375310898, + 0.01576780341565609, + -0.012792136520147324, + -0.029530266299843788, + 0.0008945196168497205, + 0.018905192613601685, + -0.016673441976308823, + -0.042888425290584564, + -0.004067284986376762, + -0.01583249308168888, + 0.024808011949062347, + 0.02437136508524418, + 0.0071318987756967545, + -0.01832299679517746, + 0.002561257453635335, + 0.03616083040833473, + -0.016948368400335312, + -0.02658694237470627, + 0.002985775237902999, + -0.002987796673551202, + -0.01527455449104309, + 0.0026320102624595165, + 0.005842173472046852, + 0.010649331845343113, + 0.021185459569096565, + -0.0003065119672100991, + 0.00238740723580122, + 0.004782900679856539, + 0.006165615748614073, + -0.02044154331088066, + 0.005720882676541805, + -0.017643768340349197, + 0.0035315838176757097, + -0.07956676185131073, + -0.03171350061893463, + 0.0039419508539140224, + 0.006311164703220129, + 0.008203300647437572, + -0.0032586795277893543, + 0.0018820288823917508, + 0.012800222262740135, + -0.02443605288863182, + 0.0021225889213383198, + 0.022026408463716507, + -0.012953856959939003, + 0.01335815992206335, + 0.026748664677143097, + -0.00952537078410387, + 0.0029776890296489, + 0.00473438436165452, + -0.005021438933908939, + 0.026473738253116608, + 0.005530860275030136, + 0.004932492505759001, + 0.02032833732664585, + 0.024177299812436104, + -0.014845994301140308, + -0.006533531006425619, + 0.04990712180733681, + -0.023999406024813652, + 0.007346179336309433, + -0.017805488780140877, + -0.02443605288863182, + -0.005417655687779188, + 0.01598612777888775, + -0.0072168027982115746, + 0.0027714946772903204, + 0.003640745533630252, + 0.011846068315207958, + 0.00206901878118515, + -0.012104821391403675, + 0.03703412413597107, + 0.0214927289634943, + 0.01309940591454506, + 0.013762462884187698, + -0.00045686200610361993, + -0.004762685392051935, + 0.0033415614161640406, + -0.03557863458991051, + -0.0007469491683878005, + -0.018452374264597893, + 0.009250445291399956, + 0.008878486230969429, + 0.012800222262740135, + 0.013762462884187698, + -0.001959857065230608, + -0.01982700265944004, + -0.012282715179026127, + -0.005300407763570547, + 0.02731468714773655, + -0.018420029431581497, + 0.001291746972128749, + 0.007932418026030064, + 0.06281246244907379, + 0.011918842792510986, + 0.008563130162656307, + 0.006881231442093849, + -0.02081350050866604, + 0.01444169133901596, + 0.027411719784140587, + 0.024241987615823746, + 0.033411573618650436, + -0.009864985011518002, + 0.006662908010184765, + 0.0012230155989527702, + -0.016034644097089767, + 0.01704540103673935, + 0.0025653003249317408, + 0.02158976159989834, + 0.013996957801282406, + -0.00010227593884337693, + -0.004807158838957548, + -0.0029999257531017065, + -0.003068657126277685, + 0.005401483736932278, + 0.00871676579117775, + -0.016851335763931274, + -0.01377054862678051, + -0.02320697344839573, + 0.0042087906040251255, + -0.006885274313390255, + -0.009808382950723171, + -0.0016040707705542445, + 0.04182106629014015, + -0.0003504798805806786, + 0.023562759160995483, + 0.0182097926735878, + -0.016964539885520935, + 0.0518801175057888, + -0.006954005919396877, + 0.013188352808356285, + -0.0006751854671165347, + -0.012371661141514778, + -0.007127855904400349, + -0.0183876845985651, + 0.006941876839846373, + -0.03386439010500908, + -0.015007714740931988, + 0.014304228127002716, + 0.01588909514248371, + -0.0005791635485365987, + -0.014668100513517857, + -0.002452095737680793, + 0.012007788754999638, + -0.014975370839238167, + -0.02758961357176304, + -0.029562611132860184, + -0.03255445137619972, + 0.008393323048949242, + -0.014360830187797546, + -0.028462907299399376, + -0.032958753407001495, + 0.011312388814985752, + -0.003760014893487096, + 0.03441424295306206, + -0.0027310645673424006, + -0.013519881293177605, + -0.01798338256776333, + 0.0032505933195352554, + 0.000387119798688218, + -0.01921246200799942, + 0.017449703067541122, + 0.019131602719426155, + 0.005332752130925655, + -0.005498516373336315, + -0.011846068315207958, + 0.009517285041511059, + -0.016236795112490654, + 0.0069054896011948586, + 0.033346883952617645, + -0.01604272983968258, + 0.009226187132298946, + -0.034349553287029266, + 0.00777474045753479, + 0.004928449634462595, + 0.0025956230238080025, + 0.022624777629971504, + -0.015015801414847374, + -0.006416283082216978, + -0.0007767665083520114, + -0.011530712246894836, + 0.018290651962161064, + -0.014967285096645355, + -0.01987551897764206, + 0.0019669325556606054, + 0.00045054478687234223, + -0.0021852559875696898, + -0.030500592663884163, + -0.02865697257220745, + -0.03160029649734497, + 0.004362425766885281, + -0.0008566162432543933, + -0.008781453594565392, + -0.022479228675365448, + 0.008203300647437572, + 0.02915830910205841, + -0.0070186941884458065, + 0.020118100568652153, + -0.005243805702775717, + -0.026894213631749153, + 0.005660237278789282, + -0.005518731195479631, + -0.021557418629527092, + -0.008417581208050251, + -0.0018426093738526106, + -0.014894510619342327, + -0.011894584633409977, + -0.006828671786934137, + -0.008344806730747223, + -0.01229888666421175, + -0.01440934743732214, + 0.019196290522813797, + -0.01554948091506958, + -0.005797700025141239, + 0.013819064944982529, + -0.010487611405551434, + 0.01809658668935299, + 0.016576409339904785, + 0.00552681740373373, + -0.0005589484353549778, + 0.0021973850671201944, + 0.0040976074524223804, + 0.01271127536892891, + 0.02754109725356102, + 0.030791690573096275, + -0.008789540268480778, + -0.007103597745299339, + 0.005797700025141239, + 0.002359105972573161, + 0.02137952484190464, + 0.017368841916322708, + -0.03519050404429436, + -0.012929598800837994, + -0.010439095087349415, + -0.016964539885520935, + 0.004285608418285847, + 0.020619435235857964, + -0.0020760942716151476, + -0.004580749198794365, + -0.045281898230314255, + 0.013924183323979378, + 0.033007267862558365, + -0.020684124901890755, + 0.013924183323979378, + 0.006165615748614073, + 0.01110215112566948, + -0.0050618695095181465, + 0.00711976969614625, + -0.0006746800499968231, + 0.019746141508221626, + -0.004184532444924116, + 0.010544213466346264, + -0.003976316656917334, + 0.02809094823896885, + -0.008344806730747223, + 0.010988946072757244, + -0.029611127451062202, + 0.021072255447506905, + 0.02065178006887436, + 0.005005266983062029, + -0.04356765374541283, + -0.01405356079339981, + -0.0007752503734081984, + -0.01407781895250082, + 0.002793731400743127, + -0.014021215960383415, + 0.01060890220105648, + -0.010867655277252197, + -0.030969584360718727, + 0.023304006084799767, + -0.008179042488336563, + 0.03321750834584236, + -0.02120163105428219, + -0.006642692722380161, + -0.02954643964767456, + -0.009614317677915096, + 0.0008788529084995389, + 0.041400592774152756, + 0.023239316418766975, + -0.025002077221870422, + -0.006844844203442335, + -0.006028152536600828, + 0.01332581602036953, + 0.01594569720327854, + -0.023837685585021973, + -0.008017322048544884, + 0.035740356892347336, + -0.010139910504221916, + 0.02087819017469883, + 0.013156008906662464, + 0.00434625381603837, + 0.018646439537405968, + -0.006610348355025053, + 0.0028240540996193886, + -0.00010562407260295004, + 0.019244806841015816, + -0.04259732738137245, + 0.023805340752005577, + -0.003179840510711074, + 0.0016839206218719482, + 0.01909925788640976, + 0.020295994356274605, + -0.029174480587244034, + -0.006193916779011488, + 0.0006352605414576828, + -0.019147774204611778, + 0.005757269915193319, + 0.03014480695128441, + 0.011757121421396732, + -0.009307047352194786, + -0.019891690462827682, + 0.0014767154352739453, + -0.008195214904844761, + -0.004871847108006477, + -0.001354413921944797, + -0.02003723941743374, + 0.009169584140181541, + 0.015444361604750156, + -0.0017991468776017427, + 0.027751334011554718, + 0.013422848656773567, + 0.02758961357176304, + -0.009177670814096928, + 0.008943174965679646, + 0.01693219505250454, + 0.02309376746416092, + -0.01030163187533617, + 0.00513868685811758, + -0.021897032856941223, + 0.011611572466790676, + -0.001851706183515489, + 0.021476557478308678, + -0.011037462390959263, + 0.012436349876224995, + -0.02092670649290085, + -0.03693709149956703, + -0.015509050339460373, + 0.004455415531992912, + -0.0003234421310480684, + -0.006735682487487793, + 0.004463501274585724, + -0.013398590497672558, + 0.0014484142884612083, + 0.010528041049838066, + -0.0002820010995492339, + 0.006351594813168049, + 0.0024682676885277033, + -0.006396068260073662, + -0.00991350132972002, + 0.015452448278665543, + -0.020166616886854172, + -0.0010370363015681505, + -0.017174776643514633, + 0.009614317677915096, + 0.006335422862321138, + 0.015363501384854317, + 0.011029376648366451, + -0.03447893261909485, + -0.01330155786126852, + 0.02626350149512291, + -0.004799072630703449, + 0.009048293344676495, + 0.001737490645609796, + 0.008001149632036686, + 0.034187834709882736, + 0.003943972289562225, + 0.013002373278141022, + 0.00247028935700655, + -0.0024015577509999275, + -0.012306973338127136, + -0.015541394241154194, + 0.008130526170134544, + 0.0008177021518349648, + 0.021751483902335167, + 0.01893753744661808, + -0.0007752503734081984, + 0.00551064545288682, + 0.015145177952945232, + -0.0037175631150603294, + 0.015258383005857468, + 0.03321750834584236, + 0.028624627739191055, + -0.02110459841787815, + -0.018064243718981743, + 0.025406379252672195, + 0.006533531006425619, + 0.007483642548322678, + 0.002320697298273444, + 0.025018248707056046, + -0.001646522548981011, + 0.016802819445729256, + -0.03357329219579697, + -0.007714095059782267, + -0.015678856521844864, + -0.013980786316096783, + 0.002919065300375223, + 0.0476430244743824, + 0.006230304017663002, + 0.03777804225683212, + 0.01588909514248371, + -0.015864836052060127, + 0.014902596361935139, + -0.03236038610339165, + -0.003990467172116041, + 0.003640745533630252, + -0.010123739019036293, + 0.003988445736467838, + -0.0005281203775666654, + 0.0029109790921211243, + 0.00391567125916481, + -0.006242433097213507, + 0.005413612816482782, + -0.016899852082133293, + -0.0008075945661403239, + 0.004273479338735342, + -0.04046260938048363, + -0.018694955855607986, + -0.020457714796066284, + 0.012501038610935211, + -0.012541468255221844, + 0.015226038172841072, + 0.008999777026474476, + 0.0015292748576030135, + -0.010495697148144245, + -0.00010177055810345337, + 0.009565801359713078, + 0.005963464267551899, + 0.0017385014798492193, + 0.004447329323738813, + -0.03160029649734497, + 0.01032589003443718, + -0.02915830910205841, + 0.016738129779696465, + -0.006125185173004866, + 0.009638575837016106, + -0.0014716617297381163, + 0.014619584195315838, + -0.01816127635538578, + 0.006622477434575558, + 0.006687166169285774, + 0.014247626066207886, + 0.013422848656773567, + -0.02765430137515068, + -0.03376735746860504, + 0.003905563848093152, + 0.00785560067743063, + -0.02365979179739952, + -0.007224888540804386, + -0.012104821391403675, + 0.004972922615706921, + 0.009816468693315983, + -0.0016343934694305062, + -0.003917692694813013, + -0.013083234429359436, + -0.006962091661989689, + -0.0029898181091994047, + -0.023999406024813652, + -0.016503633931279182, + 0.010600815527141094, + -0.007653449662029743, + -0.006780155468732119, + -0.004419028293341398, + 0.002268137875944376, + 0.0010552299208939075, + -0.0003992488782387227, + -0.001994222868233919, + 0.005409569479525089, + 0.03942759707570076, + -0.008158828131854534, + 0.01921246200799942, + -0.014902596361935139, + 0.0052114613354206085, + -0.02959495596587658, + -0.027395548298954964, + -0.009541543200612068, + 0.005850259680300951, + -0.011207269504666328, + -0.02375682443380356, + -0.006569918245077133, + 0.019358010962605476, + -0.018517062067985535, + 0.015978042036294937, + 0.013948441483080387, + 0.00574918370693922, + -0.020457714796066284, + 0.041950445622205734, + -0.006666950881481171, + 0.012889169156551361, + 0.012953856959939003, + -0.005575333721935749, + 0.010374406352639198, + -0.02349807135760784, + 0.030807863920927048, + 0.017643768340349197, + -0.0023995363153517246, + -0.025568099692463875, + 0.004811201710253954, + -0.014377002604305744, + 0.015201780013740063, + 0.04524955525994301, + -0.02626350149512291, + -0.02354658767580986, + -0.028285013511776924, + -0.005239762365818024, + -0.014401260763406754, + -0.013503708876669407, + -0.013455192558467388, + -0.008789540268480778, + -0.013843323104083538, + -0.005450000055134296, + -0.006185830570757389, + 0.009072551503777504, + -0.007200630381703377, + 0.021525073796510696, + -0.020409198477864265, + -0.022479228675365448, + 0.007920289412140846, + 0.0340908020734787, + 0.008846142329275608, + 0.022333679720759392, + -0.016139762476086617, + -0.007904116995632648, + 0.016034644097089767, + -0.015420103445649147, + 0.011417507193982601, + -0.013107492588460445, + 0.015371587127447128, + 0.015476706437766552, + -0.034123145043849945, + -0.013115578331053257, + 0.005935163237154484, + 0.024031750857830048, + 0.0010491653811186552, + 0.014651929028332233, + -0.0253740344196558, + -0.028851037845015526, + -0.0011300259502604604, + 0.0026219028513878584, + -0.01309940591454506, + 0.003523497609421611, + 0.010067136026918888, + 0.003859068965539336, + -0.007414910942316055, + -0.010309717617928982, + 0.003012054832652211, + -0.006545660085976124, + 0.0053246659226715565, + -0.004212833940982819, + 0.001006208243779838, + 0.004507974721491337, + 0.0075968471355736256, + -0.027492580935359, + -0.0063637238927185535, + -0.014174851588904858, + -0.01254955492913723, + 0.0040976074524223804, + -0.010147997178137302, + 0.009048293344676495, + 0.016228709369897842, + -0.0015878987032920122, + -0.007103597745299339, + -0.02820415422320366, + -0.0072127594612538815, + 0.004301780369132757, + 0.011005118489265442, + -0.003943972289562225, + 0.011894584633409977, + 0.007160200271755457, + -0.00020455187768675387, + 0.0036650036927312613, + -0.014668100513517857, + -0.012953856959939003, + -0.01576780341565609, + -0.0022903745993971825, + 0.013156008906662464, + -0.020667951554059982, + -0.006772069726139307, + 0.00018610556435305625, + 0.08409495651721954, + 0.00031611413578502834, + 0.0003277378564234823, + 0.003677132772281766, + 0.0033354968763887882, + -0.02081350050866604, + 0.002993861213326454, + 0.0014029302401468158, + 0.013633085414767265, + -0.0019709754269570112, + -0.019455043599009514, + -0.03202077001333237, + 0.022349851205945015, + 0.0038994993083178997, + -0.02420964278280735, + 0.00916149839758873, + 0.008563130162656307, + 0.029837537556886673, + 0.01343902014195919, + 0.0013897904427722096, + -0.0025754079688340425, + -0.01149028167128563, + -0.006739725358784199, + 0.02877017669379711, + -0.005219547543674707, + 0.01932566799223423, + 0.004596921149641275, + 0.0072855339385569096, + 0.0025309347547590733, + 0.019309494644403458, + 0.0032121846452355385, + -0.0032040986698120832, + -0.015840578824281693, + -0.014781305566430092, + -0.0035437128972262144, + 0.009767952375113964, + -0.0072855339385569096, + -3.7208479625405744e-5, + -0.008235645480453968, + 0.013115578331053257, + -0.003559884848073125, + -0.001064326730556786, + 0.0315517783164978, + 0.022899702191352844, + -0.010342062450945377, + 0.00132611277513206, + -0.00756854610517621, + -0.006828671786934137, + 0.014627670869231224, + -0.00882996991276741, + -0.006117099430412054, + -0.018145103007555008, + 0.013754376210272312, + 0.00802136491984129, + 0.013560310937464237, + 0.00201949174515903, + 0.02631201781332493, + 0.005777485202997923, + -0.0029089576564729214, + -0.00916149839758873, + -0.02293204702436924, + -0.004075370728969574, + -0.016301482915878296, + -0.024500740692019463, + -0.005745140835642815, + -0.023999406024813652, + -0.011352818459272385, + -0.01593761146068573, + -0.0010183373233303428, + -0.0002214820560766384, + -0.00830437708646059, + -0.004778857342898846, + 0.013778634369373322, + -0.03557863458991051, + -0.01599421352148056, + 0.009460682049393654, + -0.0035538203082978725, + 0.016964539885520935, + 0.0126870172098279, + 0.005348924081772566, + 0.009379821829497814, + 0.01843620091676712, + -0.008247774094343185, + -0.01605081558227539, + -0.008482269942760468, + 0.010075222700834274, + 0.019180119037628174, + -0.03464065119624138, + 0.009816468693315983, + -0.03577269986271858, + -0.0214927289634943, + -0.0012149295071139932, + 0.0023752781562507153, + 0.00022666218865197152, + 0.007148071192204952, + 0.010519955307245255, + -0.019584421068429947, + -0.013980786316096783, + 0.015978042036294937, + 0.002154933288693428, + -0.0028058604802936316, + 0.01296194363385439, + -0.01102129090577364, + -1.9283341316622682e-5, + 0.0008182075107470155, + -0.00608071219176054, + 0.020522402599453926, + 0.010616987943649292, + -0.014708531089127064, + -0.0023732567206025124, + 0.002828097203746438, + -0.019309494644403458, + -0.00555107556283474, + 0.009274703450500965, + -0.016010385006666183, + 0.010285459458827972, + 0.00905638001859188, + -0.006998478900641203, + -0.010988946072757244, + -0.023837685585021973, + -0.014393175020813942, + 0.018339168280363083, + -0.0025026334915310144, + -0.013964613899588585, + 0.006958048790693283, + 0.010940429754555225, + 0.004576706327497959, + -0.0010193480411544442, + -0.011255785822868347, + 0.0016020493349060416, + -0.00021112179092597216, + 0.020862016826868057, + 0.010649331845343113, + -0.008272032253444195, + 0.011183011345565319, + 0.0033031527418643236, + -0.017854005098342896, + -0.001465597189962864, + 0.00759280426427722, + -0.02076498419046402, + 0.017304154112935066, + -0.017336498945951462, + 0.0037054340355098248, + 0.017255637794733047, + -0.0013483493821695447, + 0.019471216946840286, + -0.006088797934353352, + -0.013891839422285557, + 0.004152188543230295, + -0.010471438989043236, + 0.01385140884667635, + -0.03580504283308983, + 0.0033314540050923824, + -0.010123739019036293, + -0.0033193249255418777, + 0.006970177870243788, + -0.019358010962605476, + 0.017093917354941368, + -0.016673441976308823, + -0.0024824184365570545, + 0.003541691228747368, + -0.0020114057697355747, + -0.004883976187556982, + -0.0010602837428450584, + -0.0034527448005974293, + 0.0013867581728845835, + 0.0041643176227808, + 0.012784049846231937, + 0.017562907189130783, + -0.005931119900196791, + 0.009339391253888607, + -0.002286331495270133, + 0.009412165731191635, + -0.033961422741413116, + 0.0034264649730175734, + 0.004495845641940832, + -0.0012745641870424151, + 0.002413686830550432, + -0.022398367524147034, + 0.019584421068429947, + 0.004758642520755529, + -0.014554896391928196, + 0.01060890220105648, + 0.01418293733149767, + 0.004047069698572159, + -0.015145177952945232, + 0.00456862011924386, + -0.011336646974086761, + -0.00037473803968168795, + 0.0015444362070411444, + -0.01693219505250454, + 0.020231304690241814, + -0.008393323048949242, + 0.00047404487850144506, + -0.01604272983968258, + 0.008401409722864628, + 0.013875667005777359, + 0.015153263695538044, + 0.019341839477419853, + -0.009759866632521152, + 0.013924183323979378, + 0.002941301790997386, + 0.011813723482191563, + -0.0018325018463656306, + -0.0008050676551647484, + -0.0290451031178236, + -0.02099139429628849, + -0.016786646097898483, + -0.014514465816318989, + -0.0004950180882588029, + -0.025891542434692383, + -0.024791838601231575, + 0.009379821829497814, + 0.0072612757794559, + -0.019519733265042305, + -0.003962166141718626, + 0.012056305073201656, + 0.011902670376002789, + 0.021751483902335167, + 0.012897254899144173, + 0.01487833820283413, + 0.015209866687655449, + 0.01566268503665924, + -0.02799391560256481, + -0.014029302634298801, + -0.0001920437644002959, + 0.019083086401224136, + 0.001031477120704949, + 0.010390578769147396, + 0.00017536628001835197, + 0.02254391647875309, + -0.010511869564652443, + -0.011870326474308968, + 0.02542255073785782, + -0.0023368694819509983, + 0.04279139265418053, + 0.008195214904844761, + -0.0020760942716151476, + 0.010107566602528095, + 0.00240762229077518, + -0.005842173472046852, + 0.0006903468165546656, + -0.019697625190019608, + -0.010204599238932133, + -0.0033213463611900806, + -0.009323219768702984, + 0.012824480421841145, + 0.003042377531528473, + -0.0032505933195352554, + -3.417620973777957e-5, + 0.004196661524474621, + -0.008251816965639591, + -0.0002974151575472206, + 0.014498293399810791, + 0.013091320171952248, + -0.010802967473864555, + -0.002183234319090843, + 0.010948516428470612, + -0.004366468638181686, + -0.01871112734079361, + -0.001584866433404386, + 0.011377076618373394, + -0.016641097143292427, + -0.009096809662878513, + -0.012719362042844296, + 0.022851185873150826, + -0.030581453815102577, + -0.0033779486548155546, + 0.0007282501901499927, + 0.008999777026474476, + 0.004079414065927267, + 0.007920289412140846, + 0.012201854027807713, + 0.021185459569096565, + -0.010722106322646141, + 0.006185830570757389, + -0.0006377874524332583, + -0.022285163402557373, + 0.012104821391403675, + -0.008894658647477627, + -0.01174903567880392, + 0.012581898830831051, + 0.010754451155662537, + -0.01605081558227539, + -0.005918990820646286, + -0.036063797771930695, + 0.004653523676097393, + 0.018242135643959045, + -0.009404079988598824, + 0.006970177870243788, + -0.0039419508539140224, + -0.008514613844454288, + -0.003711498575285077, + -0.009145325981080532, + -0.011959272436797619, + 0.0024015577509999275, + -0.008951260708272457, + 0.005437870975583792, + 0.018306825309991837, + -0.002864484442397952, + -0.009848812595009804, + 0.007257232908159494, + -0.003381991758942604, + -0.025179969146847725, + 0.01232314482331276, + 0.015703115612268448, + 0.015007714740931988, + -0.010317804291844368, + -0.0067882416769862175, + 0.016018470749258995, + 0.0015575760044157505, + -0.00650927284732461, + -0.021136943250894547, + -0.018080415204167366, + -0.017304154112935066, + -0.02398323453962803, + 0.013722032308578491, + 0.016180193051695824, + -0.019034570083022118, + -0.0016657270025461912, + 0.0026421179063618183, + 0.0033193249255418777, + -0.003068657126277685, + 0.007265319116413593, + 0.012395919300615788, + -0.005296364892274141, + 0.013188352808356285, + 0.005927077028900385, + 0.0165521502494812, + -0.024241987615823746, + 0.02110459841787815, + 0.0008015300263650715, + -0.026683975011110306, + 0.006768026389181614, + 0.0030545066110789776, + 0.025454895570874214, + -0.0008313473663292825, + -0.010212684981524944, + -0.01605081558227539, + 0.0021872774232178926, + -0.022333679720759392, + -0.014651929028332233, + -0.007317878305912018, + -0.009201928973197937, + 0.013624999672174454, + 0.003660960588604212, + 0.005741097964346409, + -0.0040531340055167675, + 0.023627446964383125, + 0.017756972461938858, + 0.011320474557578564, + 0.006068583112210035, + 0.025778338313102722, + 0.008708679117262363, + -0.010964687913656235, + -0.006270734127610922, + 0.012751705944538116, + 0.020279821008443832, + -0.02003723941743374, + 0.005935163237154484, + -0.027945399284362793, + 0.006877188105136156, + -0.015169436112046242, + -0.0042532640509307384, + 0.02137952484190464, + -0.008150741457939148, + -0.005498516373336315, + 0.011433679610490799, + -0.033961422741413116, + 0.0033152818214148283, + -0.010333975777029991, + -0.016576409339904785, + -0.012436349876224995, + -0.019196290522813797, + -0.01592952571809292, + 0.016641097143292427, + -0.0031090874690562487, + -3.341814226587303e-5, + -0.010528041049838066, + -0.013730118051171303, + 0.014352744445204735, + 0.0012260478688403964, + -0.008377151563763618, + -0.009743694216012955, + 0.013924183323979378, + 0.03014480695128441, + 0.017627596855163574, + 0.023304006084799767, + 0.018242135643959045, + -0.020587092265486717, + -0.00799710676074028, + -0.002296439139172435, + 0.007026780396699905, + 0.0016758345300331712, + 0.001618221402168274, + 0.017190949991345406, + -0.031018100678920746, + 0.028252670541405678, + -0.0031737759709358215, + -0.0008025408023968339, + 0.004131973255425692, + -0.004188575781881809, + 0.015347328968346119, + 0.0044756303541362286, + 0.0011947143357247114, + -0.022915875539183617, + 0.0007019704789854586, + 0.007875815965235233, + 0.027492580935359, + -0.00742704002186656, + 0.018791988492012024, + 0.0042896512895822525, + -0.023967061191797256, + 0.0056723663583397865, + 0.026020919904112816, + -0.005239762365818024, + 0.0017455767374485731, + -0.01024502981454134, + 0.012614242732524872, + -0.0041400594636797905, + 0.030241839587688446, + -0.003842896781861782, + 0.022560087963938713, + 0.0025026334915310144, + 0.009905415587127209, + -0.018678782507777214, + 0.020959049463272095, + 0.0046009644865989685, + -0.004693953786045313, + 0.002191320527344942, + -0.0054419138468801975, + -0.0015292748576030135, + -0.014757047407329082, + 0.011085978709161282, + -0.03130919858813286, + -0.01524221058934927, + 0.032182492315769196, + -0.021508902311325073, + -0.001132047502323985, + 0.020473886281251907, + -0.01179755199700594, + 0.0015555544523522258, + -0.0005483354907482862, + 0.007871773093938828, + 0.011975444853305817, + 0.01022077165544033, + 0.0015424146549776196, + 0.023902373388409615, + -0.0017051465110853314, + -0.017287982627749443, + 0.001626307494007051, + 0.01843620091676712, + -0.00613731425255537, + -0.012784049846231937, + -0.009533456526696682, + -0.0031070660334080458, + 0.012557640671730042, + -0.0016384365735575557, + 0.041562315076589584, + -0.04971305653452873, + -0.008603560738265514, + -0.0070995548740029335, + 0.00047935135080479085, + 0.010980860330164433, + -0.012735533528029919, + -0.0018547384534031153, + 0.00846609752625227, + 0.004718211945146322, + 0.002195363398641348, + 0.01032589003443718, + -0.00952537078410387, + 0.018614094704389572, + 0.011013204231858253, + 0.0030160979367792606, + 0.01077062264084816, + 0.018290651962161064, + -0.022624777629971504, + 0.017174776643514633, + 0.0020033197943121195, + -0.009873070754110813, + -0.020004896447062492, + -0.005745140835642815, + -0.007172329351305962, + 0.0050254822708666325, + 0.01720712147653103, + -0.017336498945951462, + 0.003695326391607523, + 0.007346179336309433, + -0.00797284860163927, + 0.00838523730635643, + 0.00589877599850297, + 0.004641394596546888, + 0.014247626066207886, + -0.013980786316096783, + 0.014360830187797546, + -0.011401334777474403, + -0.00556724751368165, + 0.022301334887742996, + -0.011401334777474403, + -0.004065263085067272, + 0.0003643777745310217, + -0.0016252966597676277, + 0.0020518361125141382, + 0.019341839477419853, + 0.033023443073034286, + -0.004617136437445879, + -0.0010340040316805243, + 0.00871676579117775, + 0.012986201792955399, + 0.006007937714457512, + 0.001465597189962864, + 0.004087499808520079, + -0.012484866194427013, + 0.006420326419174671, + -0.002136739669367671, + 0.016673441976308823, + -0.006800370756536722, + -0.010147997178137302, + 0.018565578386187553, + 0.01293768547475338, + -0.0022054710425436497, + -0.021282492205500603, + 0.000976390962023288, + -0.009404079988598824, + 0.002213557017967105, + 0.0012179617770016193, + 0.019503559917211533, + 0.0031960124615579844, + 0.007815170101821423, + -0.0046333083882927895, + -0.02309376746416092, + 0.005801743362098932, + 0.004693953786045313, + -0.005231676623225212, + 0.015727372840046883, + 0.010875741951167583, + 0.021169288083910942, + 0.00793646089732647, + 0.033961422741413116, + -0.006315207574516535, + -0.002987796673551202, + 0.0001735974510665983, + 0.011538797989487648, + 0.009476854465901852, + -0.021460385993123055, + -0.023514242842793465, + 0.0019174054032191634, + 0.0032667655032128096, + -0.01576780341565609, + -0.009986275807023048, + -0.015040059573948383, + 0.0058219581842422485, + 0.02298056334257126, + -0.0034264649730175734, + 0.02076498419046402, + -0.01749821938574314, + -0.005437870975583792, + 0.01032589003443718, + 0.0049001481384038925, + 0.017093917354941368, + 0.009145325981080532, + -0.017676113173365593, + -0.0014100054977461696, + -0.003189947921782732, + -0.016180193051695824, + -3.799813202931546e-5, + 0.021735310554504395, + 0.0163742583245039, + -0.0012442414881661534, + 0.015412017703056335, + -0.009840726852416992, + -0.0004391737747937441, + -0.016754303127527237, + -0.0056723663583397865, + 0.002571364864706993, + -0.0015050166985020041, + -0.02454925701022148, + -0.008951260708272457, + 0.007459384389221668, + -0.004516060929745436, + 0.006561832036823034, + -0.017223292961716652, + -0.004212833940982819, + -0.003384013194590807, + 0.00999436154961586, + 0.013269213028252125, + -0.0011118323309347034, + -0.0012149295071139932, + 0.00628690654411912, + -0.02387002855539322, + 0.031195994466543198, + -0.019907863810658455, + -0.022463055327534676, + 0.0058219581842422485, + 0.02215578593313694, + -0.00836097914725542, + -0.0071318987756967545, + 0.009201928973197937, + -0.029287684708833694, + -0.022446883842349052, + -0.007613019086420536, + -0.0020619435235857964, + -0.002571364864706993, + 0.001129015232436359, + 0.010228857398033142, + 0.0012007788754999638, + -0.0033941208384931087, + -0.010164168663322926, + -0.009274703450500965, + 0.0031818619463592768, + -0.004596921149641275, + -0.005057826172560453, + 0.026457566767930984, + -0.014991543255746365, + 0.003974295221269131, + -0.0024500740692019463, + 0.017336498945951462, + -0.005433827638626099, + 0.025794509798288345, + -0.027120621874928474, + -0.01221802644431591, + 0.006347551941871643, + 0.0018597922753542662, + 0.019115429371595383, + -0.008255860768258572, + -0.0022539873607456684, + 0.004912277217954397, + 0.022737981751561165, + 0.009986275807023048, + -0.007629191502928734, + 0.0036326595582067966, + 0.01001861970871687, + -0.009371736086905003, + -0.033282194286584854, + -0.0064405412413179874, + -0.0017435551853850484, + -0.02988605387508869, + 0.01816127635538578, + 0.007499814499169588, + -0.028527595102787018, + 0.0030848293099552393, + -0.0059472923167049885, + 0.0049405787140131, + -0.012444435618817806, + 0.012775964103639126, + 0.009040207602083683, + 0.004063241649419069, + -0.002848312258720398, + -0.02243071235716343, + -0.0049810088239610195, + -0.007580675184726715, + 0.01837151311337948, + -0.009145325981080532, + 0.00516294501721859, + -0.004168360494077206, + -0.02254391647875309, + 0.007576631847769022, + -0.030355043709278107, + 0.02055474743247032, + -0.005369139369577169, + -0.014805563725531101, + -0.025956230238080025, + -0.002385385800153017, + 0.0029109790921211243, + 0.007689836900681257, + -0.017482047900557518, + 0.004718211945146322, + 0.014708531089127064, + -0.0012725426349788904, + -0.017482047900557518, + 0.0031474961433559656, + 0.013996957801282406, + -0.008991691283881664, + 0.01816127635538578, + 0.005158902145922184, + 0.009112982079386711, + -0.009622403420507908, + -0.02548724040389061, + 0.0009521328029222786, + -0.02210726961493492, + 0.0014110163319855928, + 0.013285385444760323, + 0.004099628888070583, + 0.005009309854358435, + -1.14183912955923e-5, + 0.0058219581842422485, + -0.005506602115929127, + -0.035125814378261566, + -0.016948368400335312, + 0.009784124791622162, + -0.024080267176032066, + -0.007200630381703377, + -0.00954962894320488, + -0.020862016826868057, + 0.02115311473608017, + -0.004071327857673168, + -0.011846068315207958, + -0.0028543767984956503, + -0.022463055327534676, + -0.00846609752625227, + -0.013932269997894764, + -0.011118323542177677, + 0.0060524106957018375, + -0.007350222673267126, + 0.004645437467843294, + -0.007572588976472616, + 0.015452448278665543, + 0.009517285041511059, + 0.0006024109898135066, + -0.00046772765927016735, + 0.01022077165544033, + 0.01291342731565237, + 0.006739725358784199, + -0.010261201299726963, + -0.022560087963938713, + -0.024225816130638123, + 0.001382715068757534, + -0.0020963093265891075, + -0.021007565781474113, + 0.013908011838793755, + 0.010131824761629105, + 0.0016273182118311524, + 5.113796942168847e-5, + 0.008902744390070438, + -0.010156082920730114, + -0.01149028167128563, + 0.018080415204167366, + 0.013374332338571548, + -0.005045697093009949, + -0.00026153327780775726, + 0.024694805964827538, + 0.0020295993890613317, + -0.019293323159217834, + 0.012007788754999638, + -0.027136795222759247, + -0.015533308498561382, + 0.0019386312924325466, + 0.007431082893162966, + -0.0022378151770681143, + 0.014174851588904858, + -0.02687804028391838, + -0.021525073796510696, + -0.005336795002222061, + 0.006367766764014959, + 0.02464628964662552, + -0.012638500891625881, + -0.006060496903955936, + 0.008821884170174599, + -0.01368968840688467, + 0.009776038117706776, + 0.0035457343328744173, + -0.01827448047697544, + 0.012897254899144173, + 0.002156954724341631, + 0.011320474557578564, + -0.0009142294293269515, + 0.020393026992678642, + -0.005571290850639343, + 0.007014651317149401, + 0.010552299208939075, + 0.02370830811560154, + 0.010681676678359509, + -0.014740874990820885, + 0.015007714740931988, + 0.0011532733915373683, + 0.01893753744661808, + 0.006941876839846373, + -0.0006878199055790901, + -0.019018396735191345, + 0.027751334011554718, + 0.007273404859006405, + -0.014304228127002716, + -0.008247774094343185, + -0.040786053985357285, + -0.0074432119727134705, + -0.03422017768025398, + -0.0034042284823954105, + -0.0022802669554948807, + 0.01343902014195919, + 0.011611572466790676, + 0.005429784767329693, + -0.003907585050910711, + -0.017611423507332802, + -0.00985689926892519, + -0.039168842136859894, + 0.005300407763570547, + 0.019293323159217834, + 0.013899925164878368, + 0.013616913929581642, + 0.019972551614046097, + 0.014069732278585434, + -0.008199257776141167, + -0.0199402067810297, + -0.0004363941843621433, + 0.025131452828645706, + 0.006456713657826185, + 0.0032566578593105078, + -0.017077744007110596, + -0.02653842605650425, + -0.009476854465901852, + 0.003466895315796137, + 0.00344870169647038, + -0.013398590497672558, + -0.015331157483160496, + -0.01754673570394516, + 0.012226112186908722, + -0.008312462829053402, + 0.006104970350861549, + 0.006379895843565464, + 0.007657492533326149, + -0.0034628522116690874, + -0.002987796673551202, + -0.006553746294230223, + -0.001344306394457817, + -0.0009021003497764468, + -0.012371661141514778, + 0.0005564215243794024, + -0.006610348355025053, + 0.001211897237226367, + 0.028349703177809715, + -0.014255711808800697, + 0.020409198477864265, + 0.00197906163521111, + -0.008033493533730507, + -0.04036557674407959, + 0.008352893404662609, + 0.004447329323738813, + -0.006565875373780727, + 1.4553316759702284e-5, + -0.008094139397144318, + -0.004859718028455973, + -0.005967507138848305, + -0.010285459458827972, + 0.0024379449896514416, + 0.0034871103707700968, + -0.013657343573868275, + -0.015031972900032997, + -0.0065941764041781425, + 0.017239466309547424, + 0.013592655770480633, + 0.018452374264597893, + -0.018290651962161064, + 0.00044599638204090297, + 0.008878486230969429, + -0.0015110812382772565, + 0.010188426822423935, + -0.005381268449127674, + 0.003329432336613536, + -0.008150741457939148, + -0.02909361943602562, + -0.00628690654411912, + 0.013576483353972435, + -0.0033759272191673517, + -7.871267735026777e-5, + -0.012735533528029919, + 0.0034871103707700968, + -0.006804413627833128, + -0.0009374768123961985, + 0.011635830625891685, + -0.004819287918508053, + 0.007313835434615612, + 0.02927151322364807, + -0.00499718077480793, + 0.004689910914748907, + 0.004002596251666546, + -0.01798338256776333, + -0.014926854521036148, + 0.0013089298736304045, + -0.0075604598969221115, + -0.010843397118151188, + -0.019422700628638268, + -0.00027644194778986275, + 0.008235645480453968, + -0.0019952335860580206, + 0.0098811574280262, + -0.002846290823072195, + 0.006699295248836279, + -9.848560148384422e-5, + -0.012080563232302666, + 0.008595474995672703, + 0.000832358084153384, + 0.007891988381743431, + -0.013560310937464237, + 0.003921736031770706, + -0.027524925768375397, + -0.00420474773272872, + 0.018177447840571404, + -0.007819213904440403, + 0.0010582621907815337, + 0.03713115677237511, + 0.006852929946035147, + 0.0018951687961816788, + 0.020085755735635757, + -0.003697347827255726, + -0.004390726797282696, + -0.006347551941871643, + 0.010455266572535038, + 0.002545085269957781, + 0.012347402982413769, + -0.01232314482331276, + 0.008781453594565392, + 0.006654821801930666, + -0.022446883842349052, + -0.0009263585088774562, + -0.016228709369897842, + -0.010075222700834274, + -0.029142135754227638, + -0.00011914294009329751, + -0.013123664073646069, + -0.0067073809914290905, + -0.017190949991345406, + -0.005870474502444267, + 0.0013008437817916274, + -0.004273479338735342, + 0.011870326474308968, + 0.009662833996117115, + 0.010253115557134151, + -0.01379480678588152, + -0.0034709384199231863, + -0.017223292961716652, + -0.012767878361046314, + 0.017449703067541122, + 0.0027310645673424006, + 0.02094287797808647, + 0.010042877867817879, + 0.0035174330696463585, + -0.02626350149512291, + 0.0008293258142657578, + -0.020021067932248116, + -0.010859569534659386, + 0.008878486230969429, + -0.0014777262695133686, + 0.013309643603861332, + 0.004414984956383705, + -0.02238219603896141, + -0.0031919695902615786, + -0.0035336052533239126, + -0.007111683953553438, + 0.00555107556283474, + 0.01587292179465294, + 0.022867359220981598, + -0.005656194407492876, + -0.0005336795002222061, + -0.008433753624558449, + 0.002793731400743127, + -0.0069378335028886795, + 0.00015818342217244208, + 0.00010360255691921338, + 0.010358233936131, + 0.009331305511295795, + 0.009436423890292645, + -0.003931843210011721, + 0.009096809662878513, + -0.0009875092655420303, + 0.02387002855539322, + 0.0023550631012767553, + 4.0651368180988356e-5, + -0.024306675419211388, + -0.016641097143292427, + -0.013390503823757172, + -0.0015474684769287705, + -0.012104821391403675, + 0.025632789358496666, + -0.016560237854719162, + 0.026522254571318626, + -0.020845845341682434, + 0.01960059255361557, + -0.019519733265042305, + -0.01377054862678051, + 0.006784198805689812, + 0.001152262557297945, + 0.017465874552726746, + -0.01335815992206335, + 0.02365979179739952, + 0.023061424493789673, + 0.011401334777474403, + -0.016349999234080315, + -0.00023171596694737673, + -0.010964687913656235, + 0.022398367524147034, + -0.02254391647875309, + 0.0072127594612538815, + 0.0010683698346838355, + -0.013317729346454144, + 0.006464799400418997, + 0.004665652755647898, + 0.012897254899144173, + 0.007123813033103943, + 0.020182788372039795, + -0.006060496903955936, + -0.007148071192204952, + -0.02703976258635521, + 0.00626264838501811, + 0.007580675184726715, + -0.016835162416100502, + -0.024921216070652008, + 0.022689465433359146, + 0.004952707793563604, + -0.009355563670396805, + 0.0025188056752085686, + -0.0016758345300331712, + 0.020134272053837776, + -0.016058901324868202, + -0.012484866194427013, + -0.0031474961433559656, + -0.0023732567206025124, + 0.00871676579117775, + 0.0016252966597676277, + -0.02581068128347397, + 0.017918694764375687, + 0.016624925658106804, + 0.004936535377055407, + -0.028479078784585, + 0.008482269942760468, + -0.01732032559812069, + 0.028689317405223846, + 0.009873070754110813, + 0.015695029869675636, + 0.0030363129917532206, + 0.015420103445649147, + -0.00267244060523808, + 0.03422017768025398, + 0.010180341079831123, + -0.020166616886854172, + 0.00844183936715126, + 0.01749821938574314, + -0.009015949442982674, + -0.014999628998339176, + -0.012622329406440258, + -0.026635458692908287, + 0.004985051695257425, + 0.002084180247038603, + 0.0011512518394738436, + -0.005316580180078745, + -0.016916023567318916, + 0.005053783301264048, + -0.016066987067461014, + 0.016964539885520935, + -0.001959857065230608, + 0.016867507249116898, + -0.0013584569096565247, + 0.0011451872996985912, + -0.0017496197251603007, + 0.010236943140625954, + -0.008943174965679646, + -0.015169436112046242, + 0.00919384229928255, + -0.022786498069763184, + 0.015258383005857468, + 0.005191246047616005, + -0.013657343573868275, + -0.009873070754110813, + -0.0037741654086858034, + -0.01982700265944004, + 0.019956380128860474, + 0.02121780440211296, + 0.0064081973396241665, + 0.014110162854194641, + 0.015589910559356213, + 0.028058605268597603, + 0.0010562407551333308, + -0.002508698031306267, + 0.006149443332105875, + -0.017352670431137085, + 0.0031960124615579844, + -0.006193916779011488, + -0.02387002855539322, + 0.010204599238932133, + 0.0026987201999872923, + 0.006630563642829657, + -0.010932344011962414, + 0.02703976258635521, + 0.003309217281639576, + 0.0008338742190971971, + -0.016673441976308823, + 0.007107640616595745, + -0.0004237597167957574, + 0.019422700628638268, + 0.003889391664415598, + 0.007734309881925583, + 0.009420252405107021, + -0.010705934837460518, + -0.019956380128860474, + -0.0038206602912396193, + -0.014279969967901707, + -0.01971379853785038, + 0.014142506755888462, + -0.0018446309259161353, + 0.01552522275596857, + -0.008259903639554977, + 0.004447329323738813, + -0.013649257831275463, + 0.003555841976776719, + 0.013511794619262218, + 0.01071402058005333, + -0.008377151563763618, + 0.006885274313390255, + 0.008263946510851383, + 0.01693219505250454, + -0.0030524851754307747, + -0.010786795057356358, + 0.014538723975419998, + -0.00226409500464797, + -0.00616157241165638, + 0.0012179617770016193, + 0.006695251911878586, + 0.008118397556245327, + 0.007798998616635799, + 0.006375852972269058, + -0.01626913994550705, + 0.0010936387116089463, + 1.4213766007742379e-5, + -0.014991543255746365, + -0.0057855709455907345, + 0.006893360521644354, + 0.0158810093998909, + -0.012638500891625881, + 0.0002387912682024762, + 0.019422700628638268, + 0.01943887211382389, + 0.0017344583757221699, + -0.0022155786864459515, + 0.004548404831439257, + -0.006104970350861549, + -0.002848312258720398, + 0.00869250763207674, + -0.0008429710287600756, + -0.017352670431137085, + 0.0011896606301888824, + 0.001787017798051238, + 0.0047141690738499165, + -0.008352893404662609, + 0.017643768340349197, + -0.001805211417376995, + 0.015848664566874504, + 0.011781379580497742, + -0.004689910914748907, + -0.005365096498280764, + 0.007176372222602367, + -0.011781379580497742, + 0.015031972900032997, + 0.010980860330164433, + 0.00038004451198503375, + -0.005049740429967642, + -0.0013251019408926368, + -0.022074924781918526, + 0.00882996991276741, + -0.003272830042988062, + 0.0073744808323681355, + -0.00011705825454555452, + -0.01704540103673935, + -0.0012957900762557983, + 0.012387833558022976, + -0.011757121421396732, + 0.0019406528444960713, + 0.004560533910989761, + -0.0064445845782756805, + 0.0095819728448987, + -0.02699124626815319, + 0.015023887157440186, + 0.00756854610517621, + 0.00010720337741076946, + -0.013908011838793755, + -0.003557863412424922, + -0.006181787699460983, + 0.022236647084355354, + -0.023999406024813652, + 0.013891839422285557, + 0.014651929028332233, + 0.0012230155989527702, + -0.01659258082509041, + -0.016786646097898483, + 0.002320697298273444, + -0.003430508077144623, + -0.0013008437817916274, + 0.020635608583688736, + 0.015031972900032997, + -0.012404005974531174, + -0.005571290850639343, + -0.021832343190908432, + -0.015751631930470467, + -0.012678931467235088, + -0.011627744883298874, + -0.01440934743732214, + 0.010924258269369602, + -0.002476353896781802, + -0.002012416487559676, + -0.003970252349972725, + 0.01631765626370907, + 0.0023004822432994843, + 0.02637670561671257, + -0.006011980585753918, + -0.021557418629527092, + 0.00587451783940196, + 0.00042350703733973205, + 0.010010533966124058, + -0.006104970350861549, + 0.006193916779011488, + 0.008037537336349487, + -0.005450000055134296, + -0.015153263695538044, + -0.016390429809689522, + 0.011029376648366451, + -0.00720467371866107, + -0.029303858056664467, + -0.013932269997894764, + 0.004948664456605911, + 0.004301780369132757, + 0.001105767791159451, + 0.03064614161849022, + -0.010115652345120907, + 0.016091246157884598, + -0.010390578769147396, + -0.006274777464568615, + -0.008126483298838139, + 0.017174776643514633, + -0.00816287100315094, + -0.01479747798293829, + 0.0267163198441267, + -0.002022524131461978, + -0.0005715828738175333, + 0.011094065383076668, + -0.009509198367595673, + -0.0119107561185956, + 0.022446883842349052, + -0.012420177459716797, + 0.018565578386187553, + -0.015007714740931988, + -0.007803041487932205, + 0.021897032856941223, + 0.007370437495410442, + 0.017449703067541122, + -0.005053783301264048, + -0.004892062395811081, + -0.00791220273822546, + 0.012695103883743286, + -0.00422091968357563, + 0.0282688420265913, + -0.0013422848423942924, + -0.0013069083215668797, + -0.009816468693315983, + 0.00573301175609231, + -0.00791624654084444, + 0.003559884848073125, + -0.0083286352455616, + -0.014142506755888462, + -0.0038489613216370344, + -0.02087819017469883, + -0.007281491067260504, + -0.03143857419490814, + 0.024775667116045952, + -0.002258030464872718, + -0.0069014462642371655, + -0.002710849279537797, + 0.039071809500455856, + -0.003897477639839053, + -0.010681676678359509, + -0.0043341247364878654, + 0.017789317294955254, + 0.007503857370465994, + -0.0045201038010418415, + -0.01338241808116436, + 0.030969584360718727, + 0.01615593396127224, + 0.0028543767984956503, + -0.009379821829497814, + -0.008563130162656307, + -0.014951112680137157, + 0.001644501113332808, + -0.012169510126113892, + -0.021638277918100357, + 0.00654970295727253, + 0.012565726414322853, + -0.02032833732664585, + -0.007600890006870031, + -0.03392907977104187, + -0.0083286352455616, + -0.004625222645699978, + 0.007588760927319527, + 0.003891413100063801, + 0.01152262557297945, + -0.0029716244898736477, + -0.007576631847769022, + -0.011069807223975658, + 0.0069742207415401936, + 0.029724331572651863, + 0.06675845384597778, + 0.023950889706611633, + 0.014643842354416847, + -0.008967433124780655, + 0.004107715096324682, + -0.0269265566021204, + -0.011377076618373394, + -0.008724851533770561, + -0.0277028176933527, + -0.0067882416769862175, + 0.00954962894320488, + -0.009387907572090626, + 0.025244658812880516, + 0.01293768547475338, + -0.0072168027982115746, + 0.006865059025585651, + 0.0032323997002094984, + -0.007346179336309433, + -0.009864985011518002, + 0.008433753624558449, + -0.0010142943356186152, + 0.020570918917655945, + -0.0037984235677868128, + -0.0010997032513841987, + 0.012056305073201656, + 0.005429784767329693, + 0.0039844028651714325, + -0.014174851588904858, + 0.012541468255221844, + 0.016026558354496956, + 0.01765993982553482, + -0.021007565781474113, + -0.02875400520861149, + 0.00764940632507205, + -0.008369064889848232, + 0.023449555039405823, + -0.005053783301264048, + 0.01621253602206707, + -0.008296290412545204, + -0.0165521502494812, + -0.029417062178254128, + -0.00991350132972002, + 0.008179042488336563, + -0.006816542707383633, + -0.014643842354416847, + -0.0008293258142657578, + 0.0020366746466606855, + 0.013859495520591736, + -0.005195289384573698, + -0.0002734096779022366, + 0.006416283082216978, + -0.00201949174515903, + -0.02332017756998539, + -0.022026408463716507, + -0.0016354043036699295, + 0.007075296714901924, + 0.02377299591898918, + -0.014328486286103725, + 0.006654821801930666, + -0.0034163575619459152, + 0.0019568249117583036, + 0.0032323997002094984, + 0.009250445291399956, + 0.01524221058934927, + -0.003974295221269131, + 0.007693879771977663, + 0.0007504867971874774, + 0.00985689926892519, + -0.006812499836087227, + -0.009824554435908794, + 0.032344214618206024, + -0.01218568254262209, + -0.013673515990376472, + -0.0267163198441267, + -0.013010459952056408, + -0.01335815992206335, + -0.02932002954185009, + -0.016010385006666183, + -0.008587388321757317, + 0.012153337709605694, + -0.0010006490629166365, + -0.014692358672618866, + 0.0016071030404418707, + -0.0020882233511656523, + -0.013924183323979378, + 0.006254562176764011, + -0.00885422807186842, + 0.004960793536156416, + 0.008967433124780655, + 0.0034426371566951275, + -0.02514762617647648, + -0.0017900500679388642, + -0.01843620091676712, + 0.003760014893487096, + 0.012978115119040012, + -0.01371394656598568, + -0.007556417025625706, + -0.01221802644431591, + 0.0048314169980585575, + 0.019341839477419853, + 0.007382566574960947, + 0.0033415614161640406, + 0.0027876668609678745, + 0.00916149839758873, + -0.02598857507109642, + -0.02653842605650425, + -0.012598071247339249, + -0.005280192941427231, + -0.009614317677915096, + 0.030225668102502823, + -0.006464799400418997, + 0.0065941764041781425, + -0.0064081973396241665, + 0.023724479600787163, + 0.008474184200167656, + 0.012169510126113892, + 0.008975518867373466, + -7.081613875925541e-5, + 0.0016141784144565463, + 0.024112610146403313, + -0.01187841221690178, + 0.002900871681049466, + 0.03242507204413414, + 0.015339243225753307, + 0.007706008851528168, + 0.011013204231858253, + 0.016641097143292427, + 0.012905340641736984, + -0.0106574185192585, + -0.015492877922952175, + 0.012444435618817806, + -0.003824703162536025, + 0.011757121421396732, + 0.005352967418730259, + 0.0062828632071614265, + -0.0069014462642371655, + -0.004026854410767555, + -0.00794050469994545, + 0.022560087963938713, + -0.011271958239376545, + -0.01594569720327854, + 0.018678782507777214, + 0.01440934743732214, + 0.010366320610046387, + -0.029691988602280617, + 0.002921086736023426, + -0.02409643866121769, + 0.0095819728448987, + 0.008643991313874722, + 0.0002693666610866785, + -0.010293546132743359, + -0.016673441976308823, + -0.005272106733173132, + -0.0023550631012767553, + -0.005935163237154484, + 0.01229888666421175, + 0.006084755063056946, + 0.007034866139292717, + -0.0023368694819509983, + 0.01032589003443718, + -0.018646439537405968, + -0.0015980062307789922, + 0.004892062395811081, + 0.008910831063985825, + -0.007196587510406971, + -0.01149836741387844, + 0.0062141320668160915, + 0.016471290960907936, + -0.016131676733493805, + -0.00495675066486001, + -0.02621498517692089, + -0.001613167580217123, + 0.015597997233271599, + 0.005987722426652908, + 0.01110215112566948, + 0.012695103883743286, + -0.007334050256758928, + -0.0083286352455616, + -0.018953708931803703, + -0.0030262053478509188, + 0.01187841221690178, + 0.011344732716679573, + 0.010342062450945377, + -0.004875889979302883, + -0.02943323366343975, + 0.0047505563125014305, + -0.01527455449104309, + -0.0016141784144565463, + 0.008943174965679646, + 0.0054863872937858105, + 0.0010390578536316752, + 0.03054910898208618, + -0.016641097143292427, + -0.01688367873430252, + -0.011757121421396732, + 0.022608604282140732, + 0.0043705119751393795, + -0.004540319088846445, + -0.030565282329916954, + 0.010827225632965565, + 0.011288130655884743, + 0.00020859490905422717, + -0.011926928535103798, + -0.002813946455717087 + ], + "f64f3cfd-812d-4232-9d9b-a3fad6f17d19": [ + -0.018299749121069908, + -0.014733266085386276, + -0.00428797909989953, + 0.020185476168990135, + -0.0394526869058609, + -0.01908683590590954, + 0.024514449760317802, + 0.03955107182264328, + -0.01892285980284214, + 0.04558539763092995, + -0.014470904134213924, + 0.017758628353476524, + -0.019349196925759315, + -0.012183435261249542, + 0.01567612960934639, + 0.015503954142332077, + -0.039255913347005844, + 0.030794739723205566, + -0.0015854453667998314, + -0.026514960452914238, + 0.05125897750258446, + -0.011240571737289429, + -0.03571402654051781, + 0.020185476168990135, + 0.005771963857114315, + -0.0004263382579665631, + 0.00029874424217268825, + 0.00022892621927894652, + -0.01892285980284214, + -0.0015413766959682107, + 0.023366615176200867, + 0.02146449126303196, + 0.027662793174386024, + -0.019447583705186844, + 0.016709180548787117, + -0.025088366121053696, + -0.008387384936213493, + 0.04102685675024986, + 0.0026236199773848057, + -0.0013343567261472344, + -0.029974859207868576, + 0.027498817071318626, + 0.004849597811698914, + 0.001244169776327908, + -0.04384724795818329, + 0.024366870522499084, + 0.008887512609362602, + -0.013921584002673626, + 0.0011673059780150652, + -0.01192107331007719, + 0.0017627447377890348, + -0.0182669535279274, + 0.015110411681234837, + 0.010568269528448582, + 0.014520096592605114, + -0.00117857928853482, + 0.024563642218708992, + 0.06880443543195724, + 0.008780928328633308, + -0.04535583034157753, + 0.013774004764854908, + -0.012208031490445137, + 0.050045549869537354, + 0.004517545457929373, + 0.011978465132415295, + -0.022858290001749992, + -0.0032938728109002113, + -0.0010740443831309676, + -0.05939219892024994, + -0.018726088106632233, + 0.020464235916733742, + 0.019988704472780228, + -0.018529316410422325, + 0.02889261581003666, + -0.005214444827288389, + -0.0002074043295579031, + 0.04204351082444191, + -0.005046369042247534, + 0.002058926736935973, + -0.0019092984730377793, + 0.0026215703692287207, + -0.004226488061249256, + -0.0054891048930585384, + 0.009748388081789017, + 0.0628357008099556, + 0.024481654167175293, + -0.0396166630089283, + -0.053259484469890594, + -0.014577488414943218, + -0.027318444103002548, + -0.002437097020447254, + 0.008342292159795761, + -0.007100171409547329, + -0.007866760715842247, + -0.033500347286462784, + -0.0006231097504496574, + 0.04929126054048538, + -0.0032098351512104273, + -0.0031626918353140354, + -0.024940786883234978, + 0.006345880683511496, + 0.03571402654051781, + -0.04679882153868675, + 0.044863902032375336, + 0.028417084366083145, + -0.0020148581825196743, + 0.012470393441617489, + -0.012986918911337852, + -0.035812411457300186, + 0.05102941021323204, + 0.0128065450116992, + -0.03276245296001434, + -0.0014511898625642061, + -0.0051939478144049644, + -0.045060671865940094, + -0.06565608829259872, + -0.022415554150938988, + -0.04607732594013214, + 0.00011734550207620487, + -0.05440732091665268, + 0.05184929072856903, + 0.030302811414003372, + 0.00494388397783041, + 0.0035275390837341547, + 7.840114267310128e-5, + 0.006513956468552351, + 0.0007281570578925312, + 0.017627445980906487, + 0.007842164486646652, + 0.030663559213280678, + -0.014503699727356434, + -0.033418361097574234, + -0.001891875988803804, + -0.018758883699774742, + 0.01364282425493002, + 0.027875961735844612, + -0.03041759505867958, + 0.043322525918483734, + -0.02485879883170128, + 0.04545421525835991, + -0.03614036366343498, + -0.02969609946012497, + 0.009174470789730549, + -0.013413256965577602, + 0.0039005849976092577, + 0.01398717425763607, + -0.03555005043745041, + 0.06539373099803925, + -0.03771453723311424, + 0.02625259757041931, + -0.06860766559839249, + -0.001382524729706347, + 0.01974274031817913, + 0.0159302931278944, + 0.007907754741609097, + 0.007260048296302557, + -0.00018306411220692098, + 0.021579274907708168, + 0.014044566079974174, + 0.004091207403689623, + 0.009674598462879658, + -0.0637211725115776, + 0.010297708213329315, + -0.0003679217188619077, + 0.03518930450081825, + 0.007559305056929588, + 0.05345625802874565, + 0.024563642218708992, + -0.04942244291305542, + 0.026826513931155205, + 0.01273275539278984, + -0.01199486292898655, + 0.03391028940677643, + 0.0036710184067487717, + -0.007563404738903046, + -0.017184710130095482, + 0.03159822151064873, + 0.04535583034157753, + 0.01402816828340292, + -0.03810808062553406, + -0.018463725224137306, + -0.015561345964670181, + -0.007940550334751606, + 0.006370477378368378, + 0.01034690160304308, + 0.04273220896720886, + 0.03699304163455963, + 0.017742229625582695, + -0.000440173753304407, + -0.0076166968792676926, + 0.017807820811867714, + -0.01980833150446415, + -0.011625915765762329, + 0.03571402654051781, + -0.022464746609330177, + -0.045027878135442734, + -0.01273275539278984, + -0.013282076455652714, + 0.0039825732819736, + 0.016332034021615982, + -0.012544183060526848, + -0.043256934732198715, + -0.03371351584792137, + 0.02966330386698246, + -0.03315599635243416, + 0.03850162401795387, + -0.0119538689032197, + -0.003121697809547186, + 0.025039173662662506, + -0.045749373733997345, + 0.02379295416176319, + -0.03033560700714588, + -0.011855483055114746, + -0.0023202640004456043, + -0.0003202661173418164, + 0.005825256463140249, + 0.0013077105395495892, + 0.03640272840857506, + 0.011740699410438538, + -0.018578508868813515, + -0.01641402207314968, + 0.018611304461956024, + 0.006870605051517487, + -0.04873374104499817, + -0.0479794517159462, + -0.026859309524297714, + -0.02477681078016758, + 0.019218016415834427, + -0.06155668571591377, + 0.005382520612329245, + 0.028466276824474335, + 0.02146449126303196, + -0.005456309765577316, + -0.04112524166703224, + -0.013593630865216255, + -0.0039969212375581264, + 0.03469737619161606, + 0.009035090915858746, + 0.0164796132594347, + -0.024399666115641594, + 0.017791423946619034, + 0.04886492341756821, + -0.0012287970166653395, + -0.008756332099437714, + 0.020136283710598946, + 0.0172503013163805, + -0.02138250321149826, + 0.04479831084609032, + 0.03571402654051781, + -0.024563642218708992, + 0.02461283467710018, + 0.011101191863417625, + 0.01022391952574253, + -0.022546734660863876, + -0.024514449760317802, + 0.0609663687646389, + 0.02294027805328369, + -0.04017418250441551, + 0.006296688225120306, + -0.016266444697976112, + 0.005124257877469063, + 0.01273275539278984, + 0.006513956468552351, + -0.02895820513367653, + 0.049914371222257614, + -0.010560070164501667, + 0.032418105751276016, + -0.03268046677112579, + 0.01488084439188242, + 0.029105784371495247, + -5.934531145612709e-5, + 0.00912527833133936, + -0.012617972679436207, + -0.026105018332600594, + 0.023251831531524658, + 0.008764530532062054, + -0.005821156781166792, + -0.0003679217188619077, + 0.014397114515304565, + 0.02879422903060913, + -0.016373028978705406, + 0.013003316707909107, + -0.007432223297655582, + 0.01905404031276703, + 0.0028634353075176477, + -0.005349725019186735, + -0.000352036498952657, + 0.019365595653653145, + -0.040666110813617706, + -0.03231971710920334, + -0.006727125495672226, + -0.010601064190268517, + 0.030040448531508446, + 0.012913129292428493, + 0.026760924607515335, + 0.02312065102159977, + 2.3635639081476256e-5, + 0.009330248460173607, + -0.0028408884536474943, + 0.012249025516211987, + -0.02813832461833954, + -0.015840105712413788, + -0.008534964174032211, + -0.022841891273856163, + -0.004476551432162523, + -0.004857796244323254, + 0.021858034655451775, + 0.0029187772888690233, + -0.0560142882168293, + 0.004570838063955307, + 0.04342091083526611, + -0.007743778172880411, + -0.0026441169902682304, + -0.013396859169006348, + -0.0035193401854485273, + -0.006850108038634062, + 0.02395693026483059, + 0.009486026130616665, + -0.002844987902790308, + -0.040075793862342834, + 0.036599498242139816, + -0.0017760677728801966, + -0.07287104427814484, + 0.024416062980890274, + 0.026170609518885612, + -0.03623875230550766, + 0.027777576819062233, + 0.025170354172587395, + -0.05506322532892227, + -0.005206245929002762, + -0.02302226610481739, + -0.02546551078557968, + -0.021595671772956848, + -8.077111124293879e-5, + -0.014306928031146526, + -0.04384724795818329, + -0.04296177625656128, + -0.01990671642124653, + 0.0009336397633887827, + -0.0018221860518679023, + -0.04342091083526611, + 0.013880589976906776, + 0.03430383279919624, + -0.0027752979658544064, + 0.007899555377662182, + -0.0030622563790529966, + 0.019300004467368126, + 0.02462923340499401, + -0.03286084160208702, + -0.004087108187377453, + 0.0010289510246366262, + -0.004554440267384052, + 0.029040193185210228, + 0.013126298785209656, + 0.03274605795741081, + -0.00391083350405097, + -0.022087600082159042, + 0.0016684583388268948, + 0.0035623840522021055, + 0.006493459455668926, + 0.006075319834053516, + -0.016750173643231392, + -0.03394308313727379, + -0.021923623979091644, + -0.025449113920331, + -0.0007799120503477752, + 0.0014204442268237472, + -0.011625915765762329, + 0.021989215165376663, + 0.017742229625582695, + -0.04368327185511589, + 0.006386874709278345, + -0.012699960730969906, + 0.0034639982040971518, + -0.019414788112044334, + -0.021972818300127983, + 0.0510622039437294, + -0.002730204490944743, + -0.006481161341071129, + 0.029417339712381363, + 0.01065025757998228, + -0.005337426904588938, + -0.024465257301926613, + -0.017643844708800316, + 0.01646321639418602, + 0.04712677374482155, + -0.0021419397089630365, + -0.0025272839702665806, + -0.035156507045030594, + -0.000814757018815726, + -0.0030602067708969116, + 0.02800714410841465, + -0.022513939067721367, + 0.0002323850931134075, + -0.02297307178378105, + 0.03213934600353241, + -0.01813577301800251, + 0.001316934241913259, + 0.013798600994050503, + -0.019431184977293015, + -0.01192927174270153, + -0.010199322365224361, + -0.00697718933224678, + -0.00046861337614245713, + 0.01977553591132164, + -0.027466021478176117, + -0.006936195306479931, + -0.01529078558087349, + 0.023268230259418488, + -0.012986918911337852, + 0.005673578474670649, + 0.01403636671602726, + 0.013593630865216255, + 0.008375086821615696, + 0.04640527814626694, + -0.021759647876024246, + 0.005714572500437498, + 0.04758590832352638, + -0.08113545179367065, + 0.0029044293332844973, + 0.02710527367889881, + 0.03627154603600502, + -0.0057268706150352955, + 0.018660496920347214, + 0.004628229420632124, + 0.016922349110245705, + 0.02230077050626278, + -0.011273367330431938, + -0.031040703877806664, + -0.0172503013163805, + 0.008137321099638939, + 0.03948548063635826, + -1.45560952660162e-5, + -0.0057842624373734, + -0.013446052558720112, + -0.016602594405412674, + -0.008862916380167007, + -0.002810142934322357, + -0.007260048296302557, + -0.004702019039541483, + 0.003960026428103447, + 0.01895565539598465, + -0.01898844912648201, + 0.00020522651902865618, + -0.03781292214989662, + -0.02210399881005287, + -0.044863902032375336, + 0.0027711985167115927, + 0.0007358434377238154, + -0.02635098248720169, + -0.018775280565023422, + 0.026728129014372826, + -0.06532813608646393, + -0.0005559819983318448, + 0.008043034933507442, + -0.0014050714671611786, + -0.011486535891890526, + -0.00904329027980566, + 0.012708159163594246, + -0.017020734027028084, + -0.03646831959486008, + -0.0181849654763937, + 0.04010859131813049, + -0.016774769872426987, + 0.02228437177836895, + -0.054046571254730225, + 0.014142951928079128, + 0.016332034021615982, + 0.0067886165343225, + -0.006587745621800423, + -0.02143169566988945, + 0.001786316279321909, + -0.05191488191485405, + 0.0019707896281033754, + -0.0003753518976736814, + 0.00039328678394667804, + -0.00861695222556591, + -0.0066369385458528996, + 0.024957185611128807, + -0.02703968435525894, + -0.022694313898682594, + -0.016184456646442413, + -0.016955144703388214, + 0.008715338073670864, + 0.010953613556921482, + 0.003119648201391101, + 0.0007158588268794119, + -0.008133222348988056, + -0.014233138412237167, + -0.014667675830423832, + 0.04279780015349388, + -0.009592610411345959, + 0.0013651022454723716, + 0.013593630865216255, + 0.002348959678784013, + -0.05630944296717644, + -0.020037896931171417, + -0.021152935922145844, + -0.04463433474302292, + -0.03222133219242096, + 0.026023030281066895, + -0.004126052372157574, + -0.009568014182150364, + 0.010527275502681732, + -0.006690231151878834, + 0.017119120806455612, + -0.0055710929445922375, + 0.004538042936474085, + 0.0020620012655854225, + -0.011207777075469494, + -0.036632295697927475, + 0.019332800060510635, + -0.000795797212049365, + -0.018709689378738403, + -0.01744707301259041, + 0.017791423946619034, + -0.034336626529693604, + -0.012060453183948994, + 0.04306016489863396, + -0.021841635927557945, + -0.006087618414312601, + -0.01196206733584404, + -0.013200088404119015, + 0.009207266382873058, + -0.03892796114087105, + -0.017578253522515297, + 0.0048250011168420315, + -0.0028490873519331217, + 0.03315599635243416, + -0.008030736818909645, + -0.003828845452517271, + 0.01315089501440525, + 0.010363299399614334, + 0.024563642218708992, + 0.011511133052408695, + -0.020005103200674057, + 0.02234996296465397, + 0.019923115149140358, + 0.026810117065906525, + 0.01026491355150938, + -0.037353791296482086, + 0.02720366045832634, + -0.021677659824490547, + -0.01910323277115822, + 0.006030226591974497, + 0.037517767399549484, + -0.019381992518901825, + 0.021940022706985474, + 0.001302586286328733, + 0.014938236214220524, + -0.02730204537510872, + 0.03568123281002045, + -0.013380462303757668, + -0.015159604139626026, + -1.641363814997021e-5, + -0.05607987567782402, + 0.027597201988101006, + -0.019201619550585747, + -0.02648216485977173, + -0.003634123597294092, + 0.006911599077284336, + 0.014610284008085728, + 0.026613345369696617, + -0.005021772813051939, + -0.030007652938365936, + -0.0029679702129215, + -0.019152425229549408, + 0.024907993152737617, + -0.011937471106648445, + 0.006956692319363356, + 0.012683562934398651, + 0.012568779289722443, + 0.04309295862913132, + 0.004205990582704544, + -0.006673833355307579, + 0.04358488693833351, + -0.030073244124650955, + -0.006518056150525808, + -0.01560233999043703, + -0.016332034021615982, + 0.02397332713007927, + -0.01808658055961132, + -0.007698684930801392, + -0.0068460083566606045, + 0.00289623043499887, + -0.006436067633330822, + -0.01984112709760666, + -0.025777066126465797, + -0.005050468724220991, + 0.0312538743019104, + 0.0060220276936888695, + 0.027728384360671043, + 0.013913384638726711, + -0.005239041056483984, + -0.026810117065906525, + 0.03650111332535744, + 0.006530354265123606, + 0.009690996259450912, + 0.010166527703404427, + 8.435809286311269e-5, + 0.01529078558087349, + 0.039255913347005844, + -0.0051939478144049644, + -0.02216958813369274, + 0.0049028899520635605, + 0.02979448437690735, + 0.009387640282511711, + 0.013347666710615158, + -0.0009239036589860916, + 0.02223517931997776, + -0.013052509166300297, + 0.005685876589268446, + 0.03981343284249306, + 0.012158839032053947, + 0.01823415979743004, + 0.003248779335990548, + 0.03532048314809799, + 0.02964690513908863, + -0.012601574882864952, + -0.021776046603918076, + 0.03518930450081825, + -0.02469482272863388, + 0.07018183171749115, + -0.01596308872103691, + 0.011732500977814198, + 0.011773495003581047, + -0.011470139026641846, + -0.02144809439778328, + -0.031040703877806664, + -0.012175236828625202, + 0.02226797491312027, + -0.0003171915595885366, + 0.021808840334415436, + -0.04342091083526611, + 0.024170098826289177, + 0.004599533975124359, + 0.005202146712690592, + -0.0010781438322737813, + -0.014987429603934288, + -0.02472761832177639, + -0.025022774934768677, + 0.007776573766022921, + 0.002668713452294469, + 0.03696024790406227, + -0.015881100669503212, + 0.009182670153677464, + -0.014692272059619427, + 0.010756841860711575, + 0.029860075563192368, + 0.021808840334415436, + -0.03646831959486008, + 0.01893925666809082, + 0.007977444678544998, + 0.029187772423028946, + 0.00310325063765049, + -0.0346645787358284, + 0.0028675347566604614, + 0.006329483352601528, + -0.019463980570435524, + 0.01078143808990717, + 0.006702529266476631, + -0.0238257497549057, + 0.006251594517379999, + 0.0033861096017062664, + 0.024170098826289177, + 0.001899049966596067, + 0.008395584300160408, + -0.005710472818464041, + 0.009838574565947056, + 0.004406861495226622, + -0.015487556345760822, + 0.005632583983242512, + 0.014347922056913376, + 0.034107059240341187, + 0.007809368893504143, + -0.014511898159980774, + -0.0017801671056076884, + -0.004550341051071882, + 0.0007635144283995032, + -0.014708669856190681, + -0.02967970073223114, + -0.016873156651854515, + -0.016889553517103195, + 0.024170098826289177, + 0.021218527108430862, + -0.008723536506295204, + -0.008879314176738262, + 0.017086325213313103, + -0.01574172079563141, + -0.004681522026658058, + 0.025006378069519997, + 0.008235706947743893, + -0.008821922354400158, + 0.011970266699790955, + 0.007928251288831234, + 0.0018785529537126422, + -0.00635817926377058, + 0.007555205840617418, + 0.03054877556860447, + -0.026859309524297714, + -0.03443501144647598, + -0.027580805122852325, + -0.006509857252240181, + -0.01565973274409771, + 0.004964380990713835, + 0.02139890007674694, + -0.016668185591697693, + -0.032664068043231964, + 0.004935685079544783, + -0.01967714913189411, + 0.010945415124297142, + 0.013446052558720112, + -0.006960792001336813, + 0.014208542183041573, + 0.025777066126465797, + -0.0068460083566606045, + -0.010322305373847485, + 0.02546551078557968, + -0.01715191639959812, + 0.0392887108027935, + -0.03277885168790817, + 0.027613600715994835, + 0.0071657621301710606, + -0.03879678249359131, + -0.040797289460897446, + 0.011707903817296028, + 0.016307437792420387, + -0.019480379298329353, + 0.014315126463770866, + -0.0035049922298640013, + 0.04089567810297012, + -0.01273275539278984, + -0.01744707301259041, + -0.004509347025305033, + -0.001607992104254663, + -0.02566228248178959, + -0.0011293863644823432, + 0.0017565955640748143, + 0.016422221437096596, + -0.025842657312750816, + 0.019480379298329353, + -0.018693292513489723, + 0.01406096387654543, + -0.011478337459266186, + 0.046470869332551956, + 0.004056362435221672, + 0.03650111332535744, + 0.011617717333137989, + -0.011781693436205387, + 0.01910323277115822, + 0.025252342224121094, + -0.02315344661474228, + 0.03810808062553406, + 0.012126043438911438, + -0.019349196925759315, + 0.02389133907854557, + -0.0005708422977477312, + 0.0037366088945418596, + -0.030368400737643242, + 0.030138835310935974, + -0.010683052241802216, + 0.0036464219447225332, + 0.004341271240264177, + -0.002922876738011837, + -0.011511133052408695, + -0.009371242485940456, + -0.01987392082810402, + 0.04207630455493927, + 0.027449624612927437, + -0.025285137817263603, + 0.034992530941963196, + -0.004620030988007784, + 0.03318879380822182, + 0.02148088812828064, + -0.007899555377662182, + -0.01273275539278984, + 0.013364064507186413, + -0.014331524260342121, + -0.04601173475384712, + -0.007760175969451666, + -0.00536612281575799, + -0.04686441272497177, + 0.024530846625566483, + -0.027843168005347252, + 0.013290274888277054, + -0.018414532765746117, + 0.03873119130730629, + -0.024399666115641594, + -0.024235690012574196, + -0.00820701103657484, + 0.000758390175178647, + 0.00040558501495979726, + -0.0033430657349526882, + 0.003939529415220022, + 0.00247399159707129, + -0.02710527367889881, + 0.010519076138734818, + -0.018529316410422325, + -0.028285903856158257, + 0.00042147020576521754, + 0.02151368372142315, + -0.02623620070517063, + 0.03794410452246666, + 0.037386585026979446, + -0.012855738401412964, + -0.033369168639183044, + 0.0006538552697747946, + -0.005935940425843, + -0.007678187917917967, + 0.02239915542304516, + -0.009207266382873058, + 0.011347156949341297, + -0.036697883158922195, + 0.021972818300127983, + -0.0017473718617111444, + 0.013380462303757668, + 0.005612086970359087, + -0.0035316385328769684, + -0.00639917328953743, + -0.0023981526028364897, + 0.015971286222338676, + 0.018299749121069908, + 0.023497795686125755, + 0.012527785263955593, + -0.020464235916733742, + -0.006415570620447397, + -0.006559050176292658, + 0.0017125270096585155, + 0.0320245623588562, + 0.024317678064107895, + -0.010535473935306072, + 0.009682797826826572, + -0.01271635852754116, + 0.028269505128264427, + 0.013798600994050503, + 0.060507237911224365, + -0.036632295697927475, + -0.004304376430809498, + -0.033352769911289215, + 0.02400612272322178, + 0.006419670302420855, + -0.04119083285331726, + -0.0027445524465292692, + -0.02228437177836895, + -0.013085304759442806, + -0.008953102864325047, + 0.008084028959274292, + 0.013806800357997417, + 0.03313960134983063, + 0.04109244793653488, + 0.02472761832177639, + 0.009387640282511711, + -0.0021931822411715984, + 0.0041608973406255245, + -0.02231716737151146, + 0.01646321639418602, + -0.003968225326389074, + 0.03696024790406227, + 0.005288233980536461, + 0.02649856172502041, + 0.01398717425763607, + 0.0022997669875621796, + -0.008112724870443344, + -0.01898844912648201, + -2.4292185116792098e-5, + -0.0008111700299195945, + -0.002861385466530919, + 0.01238020695745945, + 0.0025313834194093943, + 0.013380462303757668, + -0.005972834769636393, + 0.0231370497494936, + 8.832939056446776e-5, + 0.03476296365261078, + -0.021940022706985474, + 0.0010771190281957388, + -0.016922349110245705, + -0.0050627668388187885, + -0.020972562953829765, + -0.012404803186655045, + -0.004095306620001793, + 0.011388150975108147, + -0.003023312194272876, + 0.002683061407878995, + -0.03135225921869278, + -0.005739168729633093, + -0.003945678472518921, + -0.018627701327204704, + -0.015135007910430431, + -0.015012025833129883, + 0.005989232566207647, + 0.001568022882565856, + 0.002213679486885667, + -0.03154902905225754, + -0.012101447209715843, + 0.00639917328953743, + -0.002619520528241992, + -0.019595161080360413, + 0.006161407567560673, + 0.006349980365484953, + -0.004591335076838732, + -0.029482929036021233, + -0.02234996296465397, + 0.010059942491352558, + 0.026613345369696617, + -0.04374886304140091, + 0.024481654167175293, + 0.024498051032423973, + -0.019513173028826714, + 0.015036622062325478, + 0.008649746887385845, + 0.00536202359944582, + -0.017529061064124107, + -0.00992056354880333, + 0.044044021517038345, + -0.0009310776367783546, + 0.018529316410422325, + 0.015036622062325478, + 0.0014347921824082732, + -0.028613856062293053, + -0.0021603871136903763, + 0.018627701327204704, + 0.023268230259418488, + 0.008641548454761505, + 0.025973837822675705, + -1.076894818652363e-6, + 0.011822687461972237, + 0.003957976587116718, + -0.0032098351512104273, + 0.01892285980284214, + -0.0038021993823349476, + 0.010420690290629864, + 0.016741974279284477, + -0.010174726136028767, + 0.03981343284249306, + 0.0072149550542235374, + 0.0036771674640476704, + 0.005935940425843, + -0.04614291712641716, + -0.03064716048538685, + -0.04512626305222511, + 0.015077616088092327, + 0.014569289982318878, + -0.024514449760317802, + 0.006304886657744646, + 0.0024534945841878653, + 0.007743778172880411, + 0.040797289460897446, + 0.005735069513320923, + 0.011830886825919151, + 0.008243906311690807, + 0.011174981482326984, + 0.0020097338128834963, + -0.016274642199277878, + 0.005722770933061838, + 0.023694567382335663, + -0.009986153803765774, + -0.0010596965439617634, + 0.0018806025618687272, + 0.00857595819979906, + 0.010535473935306072, + 0.010961811989545822, + -0.004394563380628824, + 0.007948748767375946, + -0.052439603954553604, + 0.00289623043499887, + -0.04479831084609032, + -0.010568269528448582, + -0.01110939122736454, + -0.0026277194265276194, + -0.01479885634034872, + -0.008452976122498512, + -0.006411471404135227, + 0.0008419155492447317, + -0.017069928348064423, + 0.0003504992346279323, + -0.03430383279919624, + -0.01356903463602066, + -0.008715338073670864, + 0.002392003545537591, + 0.016922349110245705, + -0.026514960452914238, + -0.009035090915858746, + -0.011183179914951324, + -0.020972562953829765, + 0.02238275855779648, + -0.029220568016171455, + 0.017512664198875427, + -0.0008777853799983859, + -0.00043940512114204466, + -0.002502687508240342, + -0.03781292214989662, + -0.017086325213313103, + 0.014011770486831665, + 0.008813722990453243, + -0.025793464854359627, + -0.0247604139149189, + -0.027400432154536247, + -0.007776573766022921, + -0.037484969943761826, + 0.003949777688831091, + 0.00181193754542619, + -0.015938490629196167, + 0.060507237911224365, + 0.015094013884663582, + 0.02546551078557968, + -0.012363809160888195, + -0.015971286222338676, + 0.003133996156975627, + 0.016741974279284477, + -0.007325639016926289, + -0.03317239508032799, + 0.012462195008993149, + -0.008125022985041142, + 0.010994607582688332, + 0.033336371183395386, + -0.00017768364341463894, + -0.01602867804467678, + -0.0023879040963947773, + 0.03309040889143944, + -0.012257224880158901, + -0.03902634605765343, + -0.005300532095134258, + 0.0014101957203820348, + -0.005218544043600559, + -0.0018621552735567093, + 0.019496776163578033, + 0.0071657621301710606, + 0.017676640301942825, + 0.006542652379721403, + -0.013044310733675957, + 0.01229821890592575, + 0.0006553925923071802, + -0.024563642218708992, + 0.008452976122498512, + -0.024284882470965385, + -0.004722516052424908, + -0.08848158270120621, + -0.018562112003564835, + 0.007883158512413502, + 0.01150293368846178, + 0.00350704207085073, + -0.007792971096932888, + 0.0030581571627408266, + 0.0014870596351101995, + -0.01900484785437584, + -0.012101447209715843, + 0.019250812008976936, + -0.011798091232776642, + 0.01230641733855009, + 0.021677659824490547, + -0.005899045616388321, + -0.0018980250461027026, + -0.006796815432608128, + -0.008772728964686394, + 0.028679445385932922, + -0.009715592488646507, + 0.0027261050418019295, + 0.020005103200674057, + 0.03879678249359131, + -0.014257734641432762, + 0.018316147848963737, + 0.05191488191485405, + -0.02320263907313347, + 0.016471413895487785, + -0.022464746609330177, + -0.03318879380822182, + 0.0036628195084631443, + 0.020464235916733742, + -0.02133331075310707, + -3.058541551581584e-5, + 0.0016858808230608702, + 0.003113499144092202, + 0.013331268914043903, + -0.01106839720159769, + 0.053915392607450485, + 0.014118354767560959, + 0.015799110755324364, + -0.0009643853409215808, + 0.0047430130653083324, + -0.01361822709441185, + -0.0006646162364631891, + -0.025088366121053696, + -0.001371251419186592, + -0.02074299566447735, + -0.0014286431251093745, + 0.02130051515996456, + 0.0030766043346375227, + 0.002426848514005542, + 0.0028265404980629683, + -0.027728384360671043, + -0.007682287134230137, + -0.006255693733692169, + 0.012150639668107033, + -0.01905404031276703, + -0.0011673059780150652, + 0.0065549504943192005, + 0.06339322030544281, + 0.011986663565039635, + 0.0009397888788953424, + -0.0011334858136251569, + -0.008075830526649952, + 0.017824217677116394, + 0.007694585714489222, + 0.019496776163578033, + 0.03804248943924904, + -0.008137321099638939, + 0.014134752564132214, + 0.0052718366496264935, + -0.0062638926319777966, + 0.025088366121053696, + -0.0031257972586899996, + 0.013470648787915707, + 0.007612597197294235, + 0.007407627068459988, + 0.0007363558397628367, + -0.010174726136028767, + -0.0010955663165077567, + -0.00023891852470114827, + 0.00268101179972291, + -0.015364574268460274, + -0.010814233683049679, + -0.016233649104833603, + 0.01034690160304308, + -0.004312575329095125, + -0.014544693753123283, + -0.0031401452142745256, + 0.03568123281002045, + -0.0020128085743635893, + 0.03932150453329086, + 0.020152680575847626, + -0.016233649104833603, + 0.07267427444458008, + -0.003734559053555131, + 0.024940786883234978, + -0.004214189480990171, + -0.004173195455223322, + -0.0023305125068873167, + -0.007022283039987087, + 0.006038425490260124, + -0.03981343284249306, + -0.007891356945037842, + -0.001631563645787537, + 0.005025872029364109, + -0.008002040907740593, + -0.009149874560534954, + -0.013937980867922306, + 0.006776318419724703, + -0.0124212009832263, + -0.02320263907313347, + -0.02059541642665863, + -0.030253618955612183, + 0.010625661350786686, + -0.023530591279268265, + -0.020119884982705116, + -0.03059796802699566, + 0.0008808599086478353, + 0.008879314176738262, + 0.022792698815464973, + 0.0033676621969789267, + -0.020808586850762367, + -0.022481143474578857, + -0.000685625709593296, + 0.0060958173125982285, + -0.020808586850762367, + 0.013437854126095772, + 0.024219291284680367, + -0.005165251903235912, + 0.0020742996130138636, + -0.01107659563422203, + 0.009322050027549267, + -0.013962578028440475, + 0.027548009529709816, + 0.028187517076730728, + -0.007723281159996986, + 0.02236635982990265, + -0.05768684297800064, + 0.015766317024827003, + 0.011601319536566734, + 0.003267226740717888, + 0.023399410769343376, + -0.012626171112060547, + -0.0008885462884791195, + -0.006128612440079451, + -0.010330503806471825, + 0.0030110138468444347, + -0.01652880571782589, + -0.008731734938919544, + -0.004775808192789555, + -0.0007717132102698088, + -0.007661790121346712, + -0.028597457334399223, + -0.027711985632777214, + -0.02315344661474228, + -0.003279525088146329, + 0.006300787441432476, + -0.011847283691167831, + -0.03548445925116539, + -0.0043207742273807526, + 0.031171884387731552, + 0.006546751596033573, + 0.011273367330431938, + -0.018348941579461098, + -0.02812192775309086, + 0.0047471122816205025, + -0.010937215760350227, + -0.018594907596707344, + -0.01729949377477169, + 0.0023817550390958786, + 0.008493970148265362, + -0.0005903145065531135, + 0.0031688411254435778, + 0.003199586644768715, + -0.00046041456516832113, + -0.013716612942516804, + 0.022628722712397575, + -0.004870094824582338, + -0.009600809775292873, + 0.013577233068645, + 0.0016161908861249685, + 0.016873156651854515, + -0.0013251330237835646, + 0.006038425490260124, + 0.006587745621800423, + 0.009100682102143764, + 0.009166272357106209, + 0.012970521114766598, + 0.011281565763056278, + 0.03223773092031479, + -0.005095561966300011, + 0.004300277214497328, + 0.0028634353075176477, + 0.0009792456403374672, + 0.027875961735844612, + 0.0049028899520635605, + -0.039944615215063095, + -0.026842912659049034, + 0.012404803186655045, + -0.01641402207314968, + 0.006145009770989418, + 0.0070878732949495316, + -0.014315126463770866, + -0.011634115129709244, + -0.04515906050801277, + 0.02230077050626278, + 0.025170354172587395, + -0.012929527088999748, + 0.009289254434406757, + 0.017086325213313103, + 0.011691506952047348, + -0.006087618414312601, + 0.0014306927332654595, + -0.005312830675393343, + 0.0124212009832263, + 0.001091466867364943, + 0.008961302228271961, + -0.013462450355291367, + 0.03968225419521332, + -0.011716103181242943, + -0.002908528782427311, + -0.04299457371234894, + 0.021136539056897163, + 0.01661079376935959, + -0.0039005849976092577, + -0.04358488693833351, + -0.01560233999043703, + 0.002342810621485114, + 0.007055078167468309, + 0.006222898606210947, + -0.009797580540180206, + 0.016356630250811577, + -0.002664614003151655, + 0.0014142951695248485, + 0.024088110774755478, + -0.022858290001749992, + 0.034336626529693604, + -0.008420180529356003, + -0.009715592488646507, + -0.02305505983531475, + -0.003019212745130062, + 0.015651533380150795, + 0.02728564850986004, + 0.013306672684848309, + -0.025449113920331, + -0.01807018183171749, + -0.001509606372565031, + -0.004251084290444851, + 0.016668185591697693, + -0.030253618955612183, + -0.01641402207314968, + 0.019496776163578033, + 0.0016838310984894633, + 0.006132711656391621, + 0.006772219203412533, + -0.0075880009680986404, + 0.019447583705186844, + -0.01746346987783909, + 0.006546751596033573, + 0.01230641733855009, + 0.0017750428523868322, + -0.04197791963815689, + 0.0174142774194479, + -0.01364282425493002, + -0.00014924400602467358, + 0.012535984627902508, + 0.016840361058712006, + -0.022792698815464973, + 0.00025570046273060143, + 0.012232628650963306, + -0.013929782435297966, + 0.011634115129709244, + 0.012642568908631802, + 0.021185731515288353, + -0.015954889357089996, + -0.011888277716934681, + 0.013290274888277054, + 0.01394618023186922, + 2.1746069251094013e-5, + 0.0046938201412558556, + -0.01723390445113182, + -0.002506786957383156, + 0.006903400178998709, + -0.005960536655038595, + 0.011945669539272785, + 0.023530591279268265, + 0.018693292513489723, + 0.005698174703866243, + 0.020136283710598946, + 0.026760924607515335, + 0.01734868809580803, + -0.009207266382873058, + -0.00020932592451572418, + -0.011322559788823128, + -0.0067886165343225, + 0.006866505369544029, + 0.015241592191159725, + 0.0030520078726112843, + 0.020054295659065247, + -0.025449113920331, + -0.03781292214989662, + -0.0018949505174532533, + -0.000407378509407863, + -0.0002530102210585028, + -0.01723390445113182, + -0.00207020016387105, + -0.008887512609362602, + -0.004697919357568026, + 0.021038152277469635, + 0.004205990582704544, + -0.003267226740717888, + -0.00955161638557911, + -0.014962832443416119, + 0.005689975805580616, + 0.011675109155476093, + -0.004706118255853653, + 0.002535482868552208, + -0.018496520817279816, + 0.005821156781166792, + 0.014626681804656982, + 0.020431440323591232, + 0.019398391246795654, + -0.027843168005347252, + 0.002363307634368539, + 0.01892285980284214, + -0.015881100669503212, + 0.003265177132561803, + -0.005960536655038595, + -0.01360183022916317, + 0.029335351660847664, + -0.0030520078726112843, + 0.029400940984487534, + 0.0008449901361018419, + 0.0016756323166191578, + -0.014979230239987373, + -0.007969245314598083, + 0.018726088106632233, + -0.001046885852701962, + 0.008985898457467556, + 0.022661518305540085, + -0.018660496920347214, + -0.004097356460988522, + 0.004201891366392374, + 0.0031770397908985615, + 0.014339722692966461, + 0.02961411140859127, + 0.028548264876008034, + -0.028433481231331825, + -0.011650512926280499, + 0.02477681078016758, + 0.020152680575847626, + -0.0015956938732415438, + 0.003953877370804548, + 0.02385854348540306, + -0.01106839720159769, + 0.011273367330431938, + -0.04217469319701195, + -0.025990234687924385, + -0.0040830085054039955, + -0.00048347373376600444, + 0.0006512931431643665, + 0.03063076362013817, + 0.003019212745130062, + 0.03046678751707077, + 0.0160942692309618, + 0.0005503452848643064, + -0.003668968565762043, + -0.03814087435603142, + -0.008186514489352703, + -0.009986153803765774, + -0.015053019858896732, + -0.0032098351512104273, + 0.0068419091403484344, + -0.008346390910446644, + -0.0012831141939386725, + -0.0065549504943192005, + -0.009035090915858746, + -0.024530846625566483, + -0.003101200796663761, + -2.088135079247877e-5, + -0.04191232845187187, + -0.004816802218556404, + -0.012831141240894794, + 0.0008219309384003282, + -0.0020886475685983896, + 0.007989742793142796, + 0.013077106326818466, + -0.000577503873500973, + -0.013036112301051617, + -0.006251594517379999, + 0.02566228248178959, + -0.009158073924481869, + 0.010338702239096165, + 0.0028511369600892067, + -0.028499072417616844, + 0.02795794978737831, + -0.035779617726802826, + 0.0024022520519793034, + -0.006829611025750637, + 0.014946435578167439, + -0.010461684316396713, + 0.023235434666275978, + -0.019201619550585747, + 0.010666655376553535, + 0.004304376430809498, + 0.026777321472764015, + 0.01323288306593895, + -0.014749663881957531, + -0.04614291712641716, + -0.0068419091403484344, + 0.02726924978196621, + -0.015020224265754223, + -0.004997176118195057, + -0.010822432115674019, + 0.015389171428978443, + 0.01077323965728283, + 0.010133732110261917, + 0.006284389644861221, + -0.012158839032053947, + 0.007715082727372646, + -0.003847292857244611, + -0.01803738810122013, + -0.01273275539278984, + 0.017643844708800316, + -0.004673323128372431, + 0.004058412276208401, + -0.006829611025750637, + -0.0012646667892113328, + -0.0013507544063031673, + 0.0013282076688483357, + 0.005612086970359087, + 0.010092738084495068, + 0.04588055610656738, + -0.01580731011927128, + 0.010970011353492737, + -0.02318624220788479, + 0.0030294612515717745, + -0.03197536990046501, + -0.02136610448360443, + -0.011781693436205387, + 0.01322468463331461, + -0.01825055666267872, + -0.02477681078016758, + -0.006374576594680548, + 0.018529316410422325, + -0.012060453183948994, + 0.016618993133306503, + 0.01524979155510664, + 0.014921838417649269, + -0.012544183060526848, + 0.04538862779736519, + -0.01200306136161089, + 0.012650767341256142, + 0.004993076901882887, + -0.0009280031081289053, + 0.002654365496709943, + -0.01982472836971283, + 0.010617461986839771, + 0.009322050027549267, + -0.014561090618371964, + -0.02223517931997776, + 0.01364282425493002, + 0.016643589362502098, + 0.004919287282973528, + 0.02967970073223114, + -0.011642313562333584, + -0.015471159480512142, + -0.028236709535121918, + -0.012642568908631802, + -0.001516780350357294, + -0.016791168600320816, + -0.004550341051071882, + 0.0015311281895264983, + -0.015135007910430431, + -0.010338702239096165, + 0.007501913234591484, + 0.01646321639418602, + 0.0029966658912599087, + 0.015848305076360703, + -0.024170098826289177, + -0.020333055406808853, + 0.02722005732357502, + 0.03053237684071064, + 0.006161407567560673, + 0.013667420484125614, + -0.010437088087201118, + 0.01275735255330801, + 0.01816856861114502, + -0.038337647914886475, + 0.02134970761835575, + -0.005013573914766312, + 0.012667165137827396, + 0.024104509502649307, + -0.029810883104801178, + -0.007268247194588184, + 0.004763510078191757, + 0.03964945673942566, + 0.003470147494226694, + 0.008846518583595753, + -0.03210654854774475, + -0.02566228248178959, + -0.008030736818909645, + -0.012191634625196457, + -0.007280545309185982, + -0.000497565430123359, + 0.015094013884663582, + -0.0022382757160812616, + -0.017496265470981598, + -0.0064688632264733315, + 0.005960536655038595, + -0.0025785265024751425, + 0.004501148127019405, + 0.0009474752587266266, + -0.0164796132594347, + 0.006218799389898777, + 0.004394563380628824, + -0.029204169288277626, + 0.0047430130653083324, + -0.004130151588469744, + -0.012396604754030704, + 0.00823160819709301, + -0.021054551005363464, + 0.008297198452055454, + 0.022727107629179955, + -0.00452164513990283, + -0.011789892800152302, + -0.021251322701573372, + 0.004738913848996162, + 0.00318318884819746, + -0.0016448867972940207, + -0.004501148127019405, + 0.007354334928095341, + 0.016733776777982712, + 0.002506786957383156, + 0.010289509780704975, + -0.006915698293596506, + -0.012019459158182144, + -0.016455017030239105, + 0.003586980514228344, + 0.019201619550585747, + -0.017430676147341728, + -0.015077616088092327, + -0.003964125644415617, + 0.10835550725460052, + -0.0022075301967561245, + -0.006222898606210947, + 0.006604143418371677, + 0.013323070481419563, + -0.02239915542304516, + -0.004173195455223322, + 0.0038226963952183723, + 0.015585942193865776, + 0.0044560544192790985, + -0.018545713275671005, + -0.026711730286478996, + 0.026760924607515335, + 0.0016448867972940207, + -0.023579785600304604, + -0.008038935251533985, + 0.015823708847165108, + 0.030188027769327164, + 0.013429654762148857, + 0.0007630019681528211, + -0.0033820101525634527, + -0.01661079376935959, + -0.0016387376235798001, + 0.015864701941609383, + -0.00034973060246557, + 0.023219037801027298, + 0.0006118363817222416, + 0.0012308467412367463, + 0.009723791852593422, + 0.035943593829870224, + -0.0007665889570489526, + -0.005189848132431507, + -0.003929280675947666, + -0.026990490034222603, + 0.0068460083566606045, + 0.006444266531616449, + -0.007563404738903046, + 0.011740699410438538, + -0.004464253317564726, + 0.005308730993419886, + -0.0017473718617111444, + -0.0059687355533242226, + 0.028564663603901863, + 0.01898844912648201, + -0.01905404031276703, + 0.001986162271350622, + -0.0009474752587266266, + -0.004587235394865274, + -0.0042961775325238705, + 0.002143989549949765, + 0.005042269825935364, + -0.01892285980284214, + 0.016422221437096596, + 0.0015833956422284245, + 0.016676384955644608, + -0.002699458971619606, + 0.015380972065031528, + -0.006743523292243481, + -0.008018438704311848, + -0.0013948229607194662, + -0.009207266382873058, + -0.0026092720218002796, + -0.012675364501774311, + -0.021218527108430862, + -0.0076166968792676926, + -0.01399537269026041, + -0.006153208669275045, + -0.015012025833129883, + 0.004464253317564726, + 0.0076166968792676926, + -0.012060453183948994, + -0.0040153684094548225, + 0.011101191863417625, + -0.031155487522482872, + -0.017004337161779404, + 0.01580731011927128, + 0.00992876198142767, + 0.02052982710301876, + 0.025121161714196205, + 0.0010033296421170235, + 0.007276446092873812, + 0.011822687461972237, + 0.0004150648892391473, + -0.017168313264846802, + -0.008428378961980343, + -0.0075347088277339935, + 0.010387895628809929, + -0.029876472428441048, + 0.0052800350822508335, + -0.03127026930451393, + -0.023645374923944473, + -0.0009736089850775898, + -0.0009162172791548073, + -0.0022546735126525164, + 0.0002802968956530094, + 0.010133732110261917, + -0.024907993152737617, + -0.020906971767544746, + 0.013675618916749954, + -0.004931585863232613, + 0.007891356945037842, + 0.00744042219594121, + -0.00456673838198185, + 0.005374321714043617, + 0.009486026130616665, + -0.005632583983242512, + 0.02218598686158657, + 0.007928251288831234, + -0.01825055666267872, + 0.00946962833404541, + 0.012035856954753399, + -0.012462195008993149, + 0.0014973081415519118, + 0.0021603871136903763, + -0.030729148536920547, + 0.00016154222248587757, + 0.007493714801967144, + -0.004222388379275799, + -0.020169079303741455, + -0.02134970761835575, + -0.0081988126039505, + 0.012076850980520248, + -0.0036935650277882814, + -0.02049703150987625, + -0.0001831922127166763, + 0.014167548157274723, + -0.005743267945945263, + -0.0028265404980629683, + -0.012642568908631802, + -0.000472968997200951, + 0.00870713870972395, + 0.0248424019664526, + 0.01315089501440525, + -0.0070878732949495316, + 0.013921584002673626, + -0.0020732746925204992, + -0.004579036962240934, + 0.00805533304810524, + 0.007969245314598083, + -0.021284116432070732, + 0.028613856062293053, + -0.005456309765577316, + 0.013782204128801823, + 0.012904930859804153, + -0.0011396349873393774, + 0.015274387784302235, + -0.008194712921977043, + -0.02730204537510872, + 0.003523439634591341, + -0.00044939739746041596, + 0.01402816828340292, + -0.03128666803240776, + -4.5926160964882e-5, + -0.008994096890091896, + 0.005485005676746368, + -0.0024965384509414434, + -0.025875452905893326, + 0.017561856657266617, + -0.015471159480512142, + 0.0005677677690982819, + -0.008358689025044441, + 0.008350490592420101, + -0.0030950517393648624, + 0.007883158512413502, + -0.009207266382873058, + 0.004246985074132681, + 0.011880079284310341, + 0.019447583705186844, + 0.007563404738903046, + -0.0005744292866438627, + -0.0014686122303828597, + 0.00559568963944912, + 0.00904329027980566, + -0.03476296365261078, + -0.004210090264678001, + 0.009559815749526024, + 0.0032364812213927507, + 0.002098896075040102, + -0.008305396884679794, + 0.02728564850986004, + -0.0031913877464830875, + -0.014011770486831665, + 0.019923115149140358, + 0.005575192626565695, + 0.009231862612068653, + -0.012954123318195343, + 0.004968480207026005, + -0.005997431464493275, + 0.002248524222522974, + -0.013454250991344452, + -0.009912364184856415, + 0.028613856062293053, + -0.0009705344564281404, + -0.008551361039280891, + -0.00828899908810854, + -0.001227772212587297, + 0.009723791852593422, + 0.005911343730986118, + 0.01715191639959812, + -0.015520351938903332, + 0.009723791852593422, + 0.00362387509085238, + 0.010937215760350227, + 0.006116314325481653, + 0.008116824552416801, + -0.025809861719608307, + -0.021218527108430862, + -0.012954123318195343, + -0.005632583983242512, + -0.011675109155476093, + -0.020365850999951363, + -0.01970994472503662, + 0.014979230239987373, + 0.007706883829087019, + -0.02231716737151146, + -0.007710983045399189, + 0.010404293425381184, + -0.0013374312547966838, + 0.013388660736382008, + 0.012052254751324654, + -0.0003976424050051719, + 0.014110156334936619, + 0.003851392073556781, + -0.03564843535423279, + -0.010478082112967968, + 0.012093248777091503, + 0.010248515754938126, + -0.005480905994772911, + 0.010166527703404427, + -0.006427869200706482, + 0.01720110885798931, + 0.006063021719455719, + -0.009707394056022167, + 0.01980833150446415, + -0.0016817813739180565, + 0.038403239101171494, + 0.012478592805564404, + -0.009871370159089565, + 0.0068419091403484344, + 0.0011160633293911815, + -0.006669734138995409, + -0.004316674545407295, + -0.014290530234575272, + -0.0005467582959681749, + -0.002762999851256609, + -0.004119903314858675, + 0.005214444827288389, + -0.0045339432545006275, + 0.007026382256299257, + -3.609399209381081e-5, + 0.0009777083760127425, + -0.01229821890592575, + -0.01676657237112522, + 0.005025872029364109, + 0.00820701103657484, + -0.005624385550618172, + -0.006427869200706482, + 0.009158073924481869, + -0.00030719925416633487, + -0.01661079376935959, + -0.00946142990142107, + 0.01115038525313139, + -0.013331268914043903, + -0.014388916082680225, + 0.000880347506608814, + 0.02956491708755493, + -0.0348285548388958, + 0.005849852692335844, + -0.0012236727634444833, + 0.022022010758519173, + 0.006497558671981096, + 0.008780928328633308, + 0.0010028172982856631, + 0.013585432432591915, + -0.0007138091023080051, + -0.005521900020539761, + 0.002102995291352272, + -0.007309241220355034, + 0.005480905994772911, + -0.009190868586301804, + -0.0036628195084631443, + 0.006952593103051186, + 0.0017412228044122458, + -0.019381992518901825, + 0.002580576343461871, + -0.038468826562166214, + 0.01107659563422203, + 0.022579530254006386, + -0.004222388379275799, + 0.005997431464493275, + -0.006743523292243481, + -0.015471159480512142, + -0.000687675375957042, + -0.010838829912245274, + -0.002588775008916855, + 0.00992876198142767, + 0.0035767320077866316, + -0.00034768087789416313, + 0.024202894419431686, + -0.0019164724508300424, + -0.011240571737289429, + 0.005046369042247534, + -0.008838320150971413, + -0.031007908284664154, + 0.01907043717801571, + 0.012027657590806484, + 0.015897497534751892, + -0.01230641733855009, + -0.009838574565947056, + 0.008748132735490799, + 0.0024637430906295776, + -0.004554440267384052, + -0.010043545626103878, + -0.016250045970082283, + -0.005501403007656336, + -0.024104509502649307, + 0.005054567940533161, + 0.029417339712381363, + -0.017857013270258904, + -0.002953622257336974, + -0.0013015614822506905, + 0.01076504122465849, + 0.00782166700810194, + 0.008342292159795761, + 0.01521699596196413, + -0.00471841637045145, + 0.002291568089276552, + 0.01572532206773758, + 0.0037530064582824707, + -0.015003826469182968, + 0.022431951016187668, + -0.003683316521346569, + -0.020988959819078445, + -0.0039825732819736, + -0.014749663881957531, + 0.025121161714196205, + -0.002246474614366889, + -0.017611049115657806, + -0.01241300255060196, + 0.0022239279933273792, + -0.0080471346154809, + -0.00946962833404541, + -0.010396094061434269, + -0.0075388080440461636, + 0.005579291842877865, + 0.0231370497494936, + -0.005050468724220991, + -0.009445032104849815, + 0.013314871117472649, + 0.01567612960934639, + -0.0030745547264814377, + 0.0032549286261200905, + 0.021776046603918076, + 0.0035972290206700563, + -0.02558029443025589, + -0.010461684316396713, + 0.02136610448360443, + 0.018512917682528496, + -0.012068651616573334, + -0.007674088701605797, + -0.012224429287016392, + 0.014716868288815022, + -0.01322468463331461, + -0.010683052241802216, + 0.01889006420969963, + -0.010010750032961369, + 0.0014030217425897717, + 0.008010239340364933, + -0.039124734699726105, + -0.0025498305913060904, + -0.02626899443566799, + -0.012290019541978836, + -0.0004560589441098273, + -0.002506786957383156, + -0.01111758965998888, + 0.015438363887369633, + -0.01446270477026701, + -0.006329483352601528, + -0.014151150360703468, + -0.016733776777982712, + 0.008936705999076366, + 0.004583136178553104, + -0.004402762278914452, + -0.016299238428473473, + 0.0061040157452225685, + 0.031106295064091682, + 0.03228692337870598, + 0.022677915170788765, + 0.030237220227718353, + -0.011412747204303741, + -0.0031298967078328133, + 0.000702023331541568, + 0.0074527207762002945, + 0.01111758965998888, + -0.004976679105311632, + 0.01825055666267872, + -0.019283607602119446, + 0.01805378496646881, + -0.00862515065819025, + 0.009584411978721619, + 0.009322050027549267, + 0.004517545457929373, + 0.013044310733675957, + 0.00452164513990283, + 0.0024801408872008324, + -0.01736508496105671, + 0.006194202695041895, + 0.002426848514005542, + 0.023432206362485886, + -0.003988722339272499, + 0.010182925499975681, + 0.002605172572657466, + -0.00905148871243, + 0.0059400396421551704, + 0.020939767360687256, + 0.002777347806841135, + 0.0015639234334230423, + -0.012781948782503605, + 0.01970994472503662, + -0.0055710929445922375, + 0.03286084160208702, + -0.00720265693962574, + 0.02136610448360443, + 0.0044519552029669285, + -0.0006743523408658803, + -0.014183945953845978, + 0.0245964378118515, + -0.007801169995218515, + -0.0033348670694977045, + 0.002877783263102174, + -0.0019379942677915096, + -0.01907043717801571, + -0.010568269528448582, + 0.005919542629271746, + -0.021169334650039673, + -0.009805779904127121, + 0.026662537828087807, + -0.014995628036558628, + 0.008170116692781448, + 0.006128612440079451, + -0.014216740615665913, + -0.009289254434406757, + -0.0016940796049311757, + 0.01615985855460167, + 0.009658200666308403, + -0.011593121103942394, + 0.003556234994903207, + 0.02059541642665863, + -0.005550595931708813, + -0.007899555377662182, + -0.010986409150063992, + 0.02625259757041931, + -0.016807565465569496, + -0.008370987139642239, + -0.007788871880620718, + -0.011265167966485023, + 0.007469118107110262, + -0.0009505498455837369, + 0.030925920233130455, + -0.03381190448999405, + -0.009379441849887371, + -0.00701408414170146, + -0.005189848132431507, + 0.002519085071980953, + -0.015954889357089996, + 0.005771963857114315, + 0.0054399119690060616, + 0.006587745621800423, + -0.0009746338473632932, + 0.0034353025257587433, + -0.015577743761241436, + 0.01980833150446415, + 0.01607787050306797, + 0.019201619550585747, + 0.020251067355275154, + 0.020923368632793427, + -0.014093758538365364, + 0.024334074929356575, + 0.011650512926280499, + -0.01569252647459507, + -0.008161918260157108, + -0.003004864789545536, + -0.008387384936213493, + -0.0067927162162959576, + 0.010715847834944725, + -0.005923641845583916, + -0.005333327688276768, + -0.004394563380628824, + 0.0017709435196593404, + 0.0070837740786373615, + 0.004681522026658058, + -0.0048209019005298615, + 0.007116569206118584, + -0.0061696064658463, + 0.021267719566822052, + -0.018726088106632233, + 0.005468607880175114, + -0.0022731206845492125, + -0.0010407367954030633, + -0.0019728392362594604, + 0.0005795535398647189, + -0.0016940796049311757, + 0.001891875988803804, + 0.005985133349895477, + 0.020792188122868538, + -0.0007199582178145647, + -0.012134242802858353, + -0.0008542137802578509, + 0.020234668627381325, + 0.0070099844597280025, + 0.009207266382873058, + -0.009871370159089565, + -0.006452465429902077, + 0.005628484766930342, + 0.002137840259820223, + 0.025285137817263603, + -0.010461684316396713, + -0.01676657237112522, + 0.020398644730448723, + 0.006661535240709782, + 0.0004268506891094148, + -0.022841891273856163, + -0.004697919357568026, + -0.004997176118195057, + -0.003476296551525593, + 0.0071616629138588905, + 0.01897205226123333, + 0.004702019039541483, + 0.0020251066889613867, + 0.002072249772027135, + -0.018348941579461098, + 0.0011447592405602336, + -0.0027855464722961187, + -0.0006871629739180207, + 0.019349196925759315, + 0.013733010739088058, + 0.0167829692363739, + -0.0018631801940500736, + 0.03446780890226364, + -0.011379951611161232, + 0.011240571737289429, + 0.014470904134213924, + -0.006083518732339144, + -0.0013651022454723716, + -0.020234668627381325, + -0.027515213936567307, + 0.007387130055576563, + 0.005759665742516518, + -0.008375086821615696, + -0.013577233068645, + -0.01969354785978794, + 0.00494798319414258, + 0.015003826469182968, + 0.007596199866384268, + 0.030876727774739265, + -0.013692016713321209, + -0.0021542380563914776, + -0.0011447592405602336, + 0.0010135781485587358, + 0.018316147848963737, + 0.015528551302850246, + -0.014216740615665913, + 0.0033225687220692635, + -0.0011539828265085816, + -0.014585687778890133, + -0.003215984208509326, + 0.028302300721406937, + 0.008026637136936188, + -0.013905186206102371, + 0.011617717333137989, + -0.012978720478713512, + 0.0014686122303828597, + -0.01895565539598465, + -0.005546496715396643, + -0.005866250488907099, + -0.0014860347146168351, + -0.035878002643585205, + -0.0010028172982856631, + 0.003843193408101797, + -0.00701408414170146, + 0.00035741698229685426, + -0.017824217677116394, + -0.021710455417633057, + -0.01030590757727623, + -0.005046369042247534, + 0.0115685248747468, + -0.005669478792697191, + -0.00946962833404541, + 0.01810297742486, + -0.00786266103386879, + 0.04201071336865425, + -0.0173322893679142, + -0.027777576819062233, + -0.00040865957271307707, + 0.032598476856946945, + 0.006735324393957853, + -0.007173961028456688, + -0.002435047412291169, + -0.0360419787466526, + -0.007100171409547329, + 0.00724775018170476, + 0.012585177086293697, + 0.0005039707757532597, + -0.0076166968792676926, + -0.005054567940533161, + 0.014093758538365364, + -0.01076504122465849, + -0.01974274031817913, + -0.006522155366837978, + 0.002617470920085907, + -0.010150129906833172, + -0.015454761683940887, + 0.024481654167175293, + -0.015635134652256966, + 0.014552892185747623, + -0.004792205989360809, + 0.014700470492243767, + -0.009149874560534954, + 0.032664068043231964, + 0.0019943611696362495, + 0.001955416752025485, + 0.008789126761257648, + 0.0011252870317548513, + 0.008469372987747192, + -0.013487046584486961, + -0.002890081377699971, + -0.0039026348385959864, + 0.013905186206102371, + 0.014889043755829334, + -0.0026256695855408907, + 0.007514211814850569, + 0.002974119270220399, + -0.0033512646332383156, + -0.020234668627381325, + -0.0067927162162959576, + -0.009953358210623264, + -0.02649856172502041, + 0.00678041810169816, + 0.009633604437112808, + -0.004550341051071882, + 0.005169351119548082, + 0.0009454255923628807, + -0.0036894655786454678, + -0.006300787441432476, + 0.010929017327725887, + 0.017086325213313103, + -0.006809113547205925, + 0.009190868586301804, + -0.013290274888277054, + -0.006870605051517487, + -0.011888277716934681, + 0.01974274031817913, + -0.02295667491853237, + 0.004759410861879587, + 0.00828899908810854, + -0.013593630865216255, + -0.004603633191436529, + -0.015323580242693424, + 0.013544438406825066, + -0.008334092795848846, + -0.02464563027024269, + -0.030122436583042145, + -0.002574427053332329, + 0.007145265117287636, + -0.01119957771152258, + -0.007661790121346712, + 0.0023653574753552675, + 0.023678170517086983, + -0.009838574565947056, + -0.02136610448360443, + 0.003117598360404372, + 0.008043034933507442, + -0.006731225177645683, + 0.026137813925743103, + 0.00942863430827856, + 0.01323288306593895, + -0.0046938201412558556, + -0.011625915765762329, + -0.002459643641486764, + -0.02057901956140995, + -0.01034690160304308, + 0.017758628353476524, + 0.006874704267829657, + -0.009641803801059723, + -1.1529579751368146e-5, + 0.0007332813111133873, + -0.0007286694599315524, + -0.01889006420969963, + -0.004283879417926073, + 0.0058129578828811646, + -0.0165616013109684, + -0.0020343302749097347, + -0.016987940296530724, + -0.03397588059306145, + 0.031089896336197853, + -0.0005646931822411716, + 0.003441451583057642, + -0.015397369861602783, + -0.02405531518161297, + -0.016168057918548584, + -0.009986153803765774, + -0.01196206733584404, + 0.010560070164501667, + -0.013552636839449406, + 0.006112214643508196, + -0.002293617697432637, + 0.009658200666308403, + 0.01065025757998228, + -0.0025129360146820545, + 0.004324873443692923, + 0.023530591279268265, + -0.0075880009680986404, + -0.005058667156845331, + 0.0039333803579211235, + -0.023448603227734566, + -0.019250812008976936, + -0.0035316385328769684, + 7.938596354506444e-6, + -0.024219291284680367, + -0.00069946120493114, + -0.0024842401035130024, + 0.0010074290912598372, + -0.01196206733584404, + 0.004275680519640446, + -0.007465018890798092, + -0.010486281476914883, + 0.009764785878360271, + 0.022645119577646255, + 0.0015055069234222174, + 0.0004673323128372431, + 0.021284116432070732, + 0.017561856657266617, + -0.021021755412220955, + 0.004226488061249256, + -0.018430929630994797, + -0.002828590339049697, + 0.003218033816665411, + 0.011224173940718174, + -0.0017832417506724596, + 0.02648216485977173, + -0.01815217174589634, + -0.027433225885033607, + -0.009379441849887371, + 0.011511133052408695, + 0.011478337459266186, + -0.016807565465569496, + -0.015003826469182968, + 0.006108115427196026, + -0.026170609518885612, + 0.009289254434406757, + 0.006641038227826357, + -0.012790147215127945, + 0.022120395675301552, + 0.00010914669110206887, + 0.012437598779797554, + -0.0005641807802021503, + 0.02635098248720169, + 0.0031237476505339146, + 0.015364574268460274, + 0.0073748319409787655, + 0.014331524260342121, + 0.01897205226123333, + -0.020480632781982422, + 0.013626426458358765, + 0.0004201891424600035, + 0.004214189480990171, + 0.0001913910236908123, + -0.005075064953416586, + -0.008723536506295204, + 0.03728820011019707, + -0.006325383670628071, + -0.0048209019005298615, + -0.0005913393688388169, + -0.02644936926662922, + -2.6053648980450816e-5, + -0.024350473657250404, + -0.008477572351694107, + -0.009707394056022167, + 0.006956692319363356, + 0.014315126463770866, + 0.0074527207762002945, + -0.004308476112782955, + -0.01644681766629219, + 0.005845753476023674, + -0.022628722712397575, + 0.013937980867922306, + 0.0188736654818058, + 0.013273877091705799, + 0.011552127078175545, + 0.016200853511691093, + 0.002102995291352272, + -0.004640528000891209, + -0.0161762572824955, + 0.01034690160304308, + 0.02389133907854557, + 0.013364064507186413, + 0.0025252343621104956, + -0.02726924978196621, + -0.022497542202472687, + -0.011945669539272785, + 0.0028716339729726315, + -0.00034665604471229017, + -0.011404547840356827, + -0.015872901305556297, + -0.010707649402320385, + 0.022792698815464973, + -0.01897205226123333, + 0.01035510003566742, + 0.016217250376939774, + -0.003859590971842408, + -0.0026564153376966715, + -0.0011519331019371748, + 0.004460154101252556, + -0.009723791852593422, + 0.006776318419724703, + -0.016938745975494385, + -0.0021542380563914776, + -0.006534453481435776, + -0.0025272839702665806, + 0.006624640431255102, + -0.015503954142332077, + 0.00911707989871502, + 0.007981544360518456, + -0.003070455277338624, + -0.03371351584792137, + 0.01065845601260662, + -0.00012349461030680686, + 0.007989742793142796, + 0.0013138597132638097, + -0.01985752396285534, + -0.0009966681245714426, + -0.00268101179972291, + -0.006936195306479931, + 0.0011888277949765325, + 0.006423769518733025, + -0.017889808863401413, + 0.0019359445432201028, + 0.0059687355533242226, + 0.0157909132540226, + 0.02307145856320858, + 0.016086069867014885, + -0.01115858368575573, + 0.0061778053641319275, + 0.008133222348988056, + -0.004915188066661358, + 0.0014901341637596488, + -0.007710983045399189, + 0.00911707989871502, + -0.009141676127910614, + -0.024202894419431686, + 0.008375086821615696, + 0.008674344047904015, + 0.009592610411345959, + -0.0010873675346374512, + -0.018594907596707344, + -0.004968480207026005, + -0.015012025833129883, + -0.0068460083566606045, + 0.009248260408639908, + -0.011748897843062878, + 0.006489360239356756, + 0.032713260501623154, + -0.00951062235981226, + 0.002699458971619606, + 0.003865740029141307, + -0.014544693753123283, + -0.020480632781982422, + -0.00021483450836967677, + -0.0005390719161368906, + -0.012831141240894794, + -0.019480379298329353, + 0.0003084803174715489, + -0.0031975368037819862, + 0.0018078380962833762, + -0.005607987754046917, + -0.0003791950875893235, + 0.0012667165137827396, + -0.002340761013329029, + -0.009412236511707306, + 0.009207266382873058, + 0.001589544815942645, + 0.01318369060754776, + -0.008387384936213493, + 0.008805524557828903, + -0.0174142774194479, + -0.0007788871880620718, + 0.02961411140859127, + -0.008502168580889702, + -0.006833710242062807, + 0.03463178500533104, + 0.003654620610177517, + -0.008075830526649952, + 0.01908683590590954, + -0.007116569206118584, + -0.01815217174589634, + -0.007641293108463287, + 0.008293098770081997, + -0.010838829912245274, + -0.0071616629138588905, + -0.0079651465639472, + 0.003589030122384429, + 0.008002040907740593, + -0.024252086877822876, + -0.0020835231989622116, + -0.01238020695745945, + -0.005349725019186735, + -0.026793718338012695, + 0.0008408906869590282, + -0.021284116432070732, + 0.005386619828641415, + -0.010453485883772373, + -0.011322559788823128, + 0.00908428430557251, + -0.002603122964501381, + 0.0062597934156656265, + 0.014757862314581871, + 0.013044310733675957, + -0.014224939979612827, + -0.004003070294857025, + -0.021251322701573372, + -0.02720366045832634, + 0.016791168600320816, + 0.022727107629179955, + 0.019595161080360413, + 0.012355610728263855, + 0.00621060049161315, + -0.01314269658178091, + 0.00144606560934335, + -0.02236635982990265, + -0.008903910405933857, + 0.01150293368846178, + -3.849598579108715e-5, + 0.016487812623381615, + -0.011314361356198788, + -0.006936195306479931, + 0.008739934302866459, + 0.006837809458374977, + -0.003152443328872323, + 0.0031975368037819862, + 9.274906915379688e-5, + 0.018381737172603607, + -0.011683307588100433, + 0.007038680370897055, + -0.004554440267384052, + -0.007411726284772158, + -0.00471431715413928, + 0.0028675347566604614, + -0.005591589957475662, + -0.008485770784318447, + -0.0024821904953569174, + -0.002209580037742853, + 0.0015997933223843575, + 0.01900484785437584, + -0.0036115769762545824, + 0.008903910405933857, + 0.012945924885571003, + 0.002215729095041752, + -0.02059541642665863, + -0.026613345369696617, + -0.015380972065031528, + -0.01479885634034872, + -0.01279834657907486, + 0.015241592191159725, + -0.01825055666267872, + 0.02134970761835575, + -0.012863936834037304, + 0.00414449954405427, + -0.03064716048538685, + -0.03048318438231945, + 0.0051939478144049644, + -3.4364555176580325e-5, + 0.015356375835835934, + -0.002652315888553858, + 0.016102468594908714, + 0.026826513931155205, + 0.013716612942516804, + -0.02154647931456566, + 0.0026953595224767923, + -0.01565973274409771, + 0.010584667325019836, + -0.023563386872410774, + 0.005603888537734747, + 0.007321539334952831, + -0.011396349407732487, + 0.012101447209715843, + 0.016291040927171707, + 0.015397369861602783, + 0.00621469970792532, + 0.024907993152737617, + -0.010519076138734818, + -0.001488084439188242, + -0.02894180826842785, + 0.006813213229179382, + 0.004056362435221672, + -0.017102722078561783, + -0.018512917682528496, + 0.017004337161779404, + 0.006829611025750637, + -0.012740954756736755, + -0.0066861314699053764, + -0.000497565430123359, + 0.013396859169006348, + -0.007366633042693138, + -0.004142450168728828, + 9.268501162296161e-5, + 0.00014360732166096568, + 0.01150293368846178, + 0.0019328700145706534, + -0.028613856062293053, + 0.02143169566988945, + 0.017873411998152733, + 0.008153718896210194, + -0.027679191902279854, + -0.0009157048771157861, + -0.02138250321149826, + 0.02308785542845726, + 0.0180209893733263, + 0.01880807615816593, + 0.016709180548787117, + 0.010560070164501667, + 0.017069928348064423, + 0.029220568016171455, + 0.012855738401412964, + -0.020136283710598946, + 0.004960281774401665, + 0.0023981526028364897, + -0.018512917682528496, + -0.02213679440319538, + -0.00809632707387209, + -0.01982472836971283, + -0.005525999702513218, + 0.0002918264945037663, + 0.0017647943459451199, + -0.01977553591132164, + -0.014889043755829334, + -0.0038103980477899313, + -0.015200598165392876, + 0.011297963559627533, + 0.008944904431700706, + 0.019611559808254242, + -0.01112578809261322, + -0.0004601583641488105, + -0.00955161638557911, + 0.010068141855299473, + -0.015766317024827003, + -0.006718927063047886, + -5.431713361758739e-5, + -0.014725067652761936, + 0.020431440323591232, + -0.0028367892373353243, + -0.0239897258579731, + -0.01654520444571972, + -0.009067886509001255, + -0.012486791238188744, + 0.01729949377477169, + 0.015479357913136482, + -0.004115804098546505, + -0.005382520612329245, + 0.016971541568636894, + 0.019611559808254242, + 0.010961811989545822, + -0.009813978336751461, + 0.007096072193235159, + -0.0128065450116992, + -0.013085304759442806, + 0.005501403007656336, + -0.022858290001749992, + 0.020890574902296066, + -0.004439657088369131, + 0.013675618916749954, + 0.0025313834194093943, + 0.030188027769327164, + 0.008038935251533985, + -0.0005693050334230065, + -0.01069125160574913, + -0.0011355355381965637, + 0.0016469364054501057, + 0.02394053339958191, + -0.011445541866123676, + 0.002959771314635873, + 0.008526764810085297, + -0.010494479909539223, + -0.012527785263955593, + 0.0010064042871817946, + -0.013855992816388607, + -0.014643078669905663, + 0.011666909791529179, + -0.0028921312186867, + -0.0035849306732416153, + -0.0059441388584673405, + 0.006452465429902077, + -0.013929782435297966, + 0.00268511101603508, + 0.020169079303741455, + 0.009289254434406757, + -0.01521699596196413, + -0.003250829176977277, + 0.008227508515119553, + 0.00015833956422284245, + -0.006559050176292658, + -0.01073224563151598, + 0.012634370476007462, + -0.003252878785133362, + -0.005927741527557373, + 0.0010689201299101114, + 0.005714572500437498, + -0.003408656222745776, + -0.0020025598350912333, + 0.004197792150080204, + -0.012265423312783241, + -0.007149364333599806, + -0.007563404738903046, + -0.02056262083351612, + -0.001981038134545088, + 0.004415060393512249, + 0.00555469561368227, + -0.015118610113859177, + -0.005259538069367409, + 0.0172503013163805, + 0.012470393441617489, + -0.01196206733584404, + 0.0005416340427473187, + -0.016250045970082283, + -0.00827260222285986, + -0.0038185969460755587, + 0.012044055387377739, + -0.006747622508555651, + -0.0013251330237835646, + 0.019136028364300728, + 0.012117845006287098, + 0.01271635852754116, + -0.009658200666308403, + 0.010289509780704975, + -0.00044350451207719743, + 0.01821776106953621, + 0.02210399881005287, + -0.0026133714709430933, + -0.006063021719455719, + 0.011609518900513649, + -0.013692016713321209, + 0.003750956617295742, + 0.015684328973293304, + -0.0011488585732877254, + -0.0124212009832263, + 0.005460408981889486, + -0.014159348793327808, + 0.015405568294227123, + -0.0037099625915288925, + 0.009682797826826572, + 0.003638223046436906, + -0.01808658055961132, + 0.0008700990001671016, + 0.028663048520684242, + -0.024350473657250404, + 0.004154748283326626, + 0.005333327688276768, + -0.009969756007194519, + 0.010797835886478424, + -0.018627701327204704, + 0.010642058216035366, + 0.008129122667014599, + -0.010166527703404427, + -0.00785446260124445, + -0.002342810621485114, + -0.00909248273819685, + 0.01599588245153427, + -0.029253363609313965, + 0.00621060049161315, + 0.007620796095579863, + 0.0019964107777923346, + -0.009961557574570179, + -0.00946142990142107, + 0.011051999405026436, + -0.0003417879925109446, + -7.833709241822362e-5, + 0.03318879380822182, + 0.017102722078561783, + 0.0002134253445547074, + 0.0015403518918901682, + -0.015421966090798378, + -0.010920817963778973, + -0.012404803186655045, + -0.009830376133322716, + -0.00782166700810194, + 0.013700216077268124, + 0.0017115020891651511, + 0.004089157562702894, + -0.014634880237281322, + 0.021825239062309265, + 0.003054057713598013, + 0.02075939252972603, + -0.00724365096539259, + -0.02956491708755493, + 0.001899049966596067, + 0.0009326149011030793, + 0.014995628036558628, + 0.00041608972242102027, + -0.011306161992251873, + -0.006235196720808744, + -0.002922876738011837, + -0.012945924885571003, + -0.008100426755845547, + 0.0018068132922053337, + -0.009149874560534954, + -0.0180209893733263, + -0.007317440118640661, + 0.008317694999277592, + -0.0005523950094357133, + 0.006702529266476631, + 0.026105018332600594, + 0.0037940004840493202, + 0.01810297742486, + -0.006280290428549051, + -0.012273622676730156, + -0.005255438853055239, + 0.017988193780183792, + -0.01153572928160429, + 0.006034325808286667, + 0.02316984347999096, + 0.006997686345130205, + 0.0007942599477246404, + 0.004390464164316654, + -0.013298474252223969, + -0.024547245353460312, + 0.010338702239096165, + -0.013257480226457119, + 0.01987392082810402, + -0.010961811989545822, + -0.010379696264863014, + 0.022546734660863876, + -0.011215975508093834, + 0.02303866297006607, + -0.005952337756752968, + -0.00433307234197855, + -0.005333327688276768, + 0.008317694999277592, + -0.02062821201980114, + 0.037386585026979446, + -0.008202912285923958, + -0.004574937280267477, + -0.02057901956140995, + -0.00800614058971405, + -0.007809368893504143, + 0.010912619531154633, + -0.011773495003581047, + -0.013290274888277054, + -0.0019523422233760357, + -0.01529898401349783, + -0.00950242392718792, + -0.02876143343746662, + 0.02559669315814972, + -0.009338447824120522, + 0.006460664328187704, + 0.0017115020891651511, + 0.02881062775850296, + -0.0011744798393920064, + -0.01736508496105671, + -0.005185748916119337, + 0.019152425229549408, + 0.0034496502485126257, + -0.0055178008042275906, + -0.023579785600304604, + 0.025285137817263603, + 0.026990490034222603, + 0.00350704207085073, + -0.01028131041675806, + 0.006874704267829657, + -0.018529316410422325, + -0.009748388081789017, + -0.0017832417506724596, + -0.017479868605732918, + 0.007768374867737293, + 0.010970011353492737, + -0.024022521451115608, + -0.00900229625403881, + -0.034992530941963196, + -0.010978209786117077, + 0.00036869035102427006, + 0.008375086821615696, + 0.008559560403227806, + 0.015831906348466873, + -0.0015301033854484558, + -0.005763764958828688, + -0.006419670302420855, + 0.0018396085361018777, + 0.031122691929340363, + 0.0626717209815979, + 0.028679445385932922, + 0.016627192497253418, + -0.00863334909081459, + 0.0157909132540226, + -0.04023976996541023, + -0.014290530234575272, + -0.013044310733675957, + -0.0180209893733263, + -0.02143169566988945, + 0.009445032104849815, + -0.009879568591713905, + 0.012453996576368809, + 0.013323070481419563, + -0.0181849654763937, + 0.012290019541978836, + -0.008493970148265362, + -0.007104271091520786, + -0.0044560544192790985, + -0.006772219203412533, + 0.004648726899176836, + 0.013290274888277054, + -0.01238840539008379, + -0.007891356945037842, + 0.02631818875670433, + 0.006087618414312601, + 0.0011591070797294378, + -0.013085304759442806, + 0.009912364184856415, + 0.0006241346127353609, + 0.022759903222322464, + -0.01437251828610897, + -0.02971249632537365, + 0.01744707301259041, + 0.00031514186412096024, + 0.01739788055419922, + -0.0014327424578368664, + 0.01902124471962452, + 0.010609263554215431, + -0.008116824552416801, + -0.03049958311021328, + -0.002633868483826518, + 0.006583646405488253, + -0.013823198154568672, + 0.0015833956422284245, + -0.005407116841524839, + 0.012470393441617489, + 0.01323288306593895, + 0.001331282197497785, + -0.0001863948709797114, + 0.002974119270220399, + 0.00954341795295477, + -0.012281821109354496, + -0.0022075301967561245, + -0.00701408414170146, + 0.014864446595311165, + 0.017660241574048996, + -0.012560580857098103, + -0.007321539334952831, + -0.0035644336603581905, + 0.005263637751340866, + -0.005284134764224291, + 0.01149473525583744, + 0.02131691202521324, + -0.0036464219447225332, + 0.01315089501440525, + 0.0007860611658543348, + 0.012249025516211987, + 0.0091334767639637, + -0.005624385550618172, + 0.02546551078557968, + -0.023678170517086983, + -0.023497795686125755, + -0.01661079376935959, + -0.017791423946619034, + -0.013937980867922306, + -0.02810552902519703, + -0.02213679440319538, + -0.010510877706110477, + 0.008461174555122852, + -0.010683052241802216, + -0.015339978039264679, + 0.006460664328187704, + 0.0010832680854946375, + -0.009281056001782417, + -0.007780672982335091, + -0.008215210400521755, + 0.0009464503964409232, + 0.011716103181242943, + 0.01030590757727623, + -0.021120140329003334, + 0.01069945003837347, + -0.021005356684327126, + -0.0012318715453147888, + 0.007280545309185982, + -0.01487264595925808, + -0.01800459250807762, + -0.002551880432292819, + 0.012863936834037304, + 0.015421966090798378, + 0.0024452959187328815, + 0.020267464220523834, + 0.006149109452962875, + 0.01726669818162918, + -0.017873411998152733, + -0.03122107870876789, + -0.005308730993419886, + -0.005403017625212669, + -0.01898844912648201, + 0.01980833150446415, + -0.017037132754921913, + 0.011035601608455181, + -0.006382775492966175, + 0.006300787441432476, + 0.019234413281083107, + 0.012035856954753399, + 0.00720675615593791, + 0.015012025833129883, + 0.008284900337457657, + 0.014946435578167439, + -0.015749918296933174, + 0.0030663558281958103, + 0.03159822151064873, + 0.004410961177200079, + 0.012281821109354496, + -0.008428378961980343, + 0.01192927174270153, + 0.030056847259402275, + -0.00955161638557911, + -0.007637193892151117, + 0.010707649402320385, + 0.0022526236716657877, + 0.01565973274409771, + 0.011888277716934681, + -0.006251594517379999, + 0.0034312030766159296, + 0.005386619828641415, + 0.004661025013774633, + 0.018644100055098534, + -0.011215975508093834, + -0.023399410769343376, + 0.02308785542845726, + 0.01892285980284214, + -0.004386364482343197, + -0.024973582476377487, + 0.00021675610332749784, + -0.03394308313727379, + 0.004591335076838732, + 0.0027404529973864555, + -0.004267482087016106, + -0.017807820811867714, + -0.016102468594908714, + 0.0006933120894245803, + -0.002664614003151655, + -0.007317440118640661, + 0.0015311281895264983, + -0.00013246206799522042, + 0.02318624220788479, + -0.005296432878822088, + -0.005157053004950285, + -0.009969756007194519, + 0.0009008445194922388, + 0.0024452959187328815, + 0.02062821201980114, + 0.005706373602151871, + -0.004263382405042648, + -0.0012667165137827396, + 0.01406096387654543, + -0.009100682102143764, + -0.005349725019186735, + -0.009412236511707306, + 0.007924152538180351, + 0.0071657621301710606, + -0.0015782713890075684, + 0.008805524557828903, + 0.014093758538365364, + -0.006735324393957853, + -0.015135007910430431, + -0.007284644991159439, + -0.015176001936197281, + 0.020874176174402237, + 0.023317422717809677, + 0.016987940296530724, + -0.008260303176939487, + -0.0013651022454723716, + -0.001735073747113347, + -0.006226998288184404, + 0.011248771101236343, + -0.004074809607118368, + 0.016258245334029198, + 0.002064051106572151, + 0.014347922056913376, + -0.010576467961072922, + -0.009871370159089565, + -0.014290530234575272, + 0.025777066126465797, + 0.006723026279360056, + 0.0091334767639637, + -0.04191232845187187, + 0.010256714187562466, + 0.002232126658782363, + 0.006382775492966175, + -0.005189848132431507, + 0.0075921001844108105 + ], + "0d294764-3db7-4738-8456-a70e444b0210": [ + -0.018373072147369385, + -0.006960447411984205, + -0.010526892729103565, + 0.006584207061678171, + -0.03307780250906944, + -0.013285988941788673, + 0.03972471505403519, + 0.028249382972717285, + -0.010926648043096066, + 0.05364561080932617, + 0.0030667511746287346, + 0.03320321440696716, + -0.016883788630366325, + -0.0015088807558640838, + 0.0038838982582092285, + 0.019533148035407066, + -0.019125552847981453, + 0.030161937698721886, + -0.010667982511222363, + -0.029127277433872223, + 0.04518020153045654, + -0.02012886106967926, + -0.03778080642223358, + 0.046528395265340805, + 0.011718320660293102, + -0.008677043952047825, + 0.013333018869161606, + 0.007015315815806389, + -0.02401667833328247, + -0.007912806235253811, + 0.020473748445510864, + 0.013215444050729275, + 0.019423410296440125, + -0.02464374527335167, + 0.006388248410075903, + -0.03539795055985451, + -0.012235650792717934, + 0.023373935371637344, + -0.0023887346033006907, + -0.008120521903038025, + -0.017824389040470123, + 0.031886372715234756, + 0.0334540419280529, + 0.014610668644309044, + -0.036652084439992905, + 0.008935709483921528, + 0.008661366999149323, + -0.01111476868391037, + 0.0069800433702766895, + -0.019109876826405525, + -0.0050165387801826, + 0.004256219603121281, + 0.013191929087042809, + 0.023107431828975677, + 0.010801234282553196, + -0.0056004952639341354, + 0.01435984205454588, + 0.07857153564691544, + 0.0003341092960909009, + -0.04286004975438118, + 0.012329711578786373, + -0.004652055911719799, + 0.048002004623413086, + -0.006603802554309368, + 0.0064431168138980865, + -0.012361064553260803, + -0.005553464870899916, + -0.0014696890721097589, + -0.03759268671274185, + -0.01863957569003105, + 0.03662073239684105, + 0.039912834763526917, + -0.014579315669834614, + 0.02470645308494568, + -0.019125552847981453, + 0.0002341704530408606, + 0.025098370388150215, + -0.013050838373601437, + 0.027246074751019478, + -0.004409067332744598, + -0.014085499569773674, + -0.005886594299226999, + 0.0005672999541275203, + -0.010636629536747932, + 0.07041966170072556, + 0.02458103932440281, + -0.043016817420721054, + -0.04470989853143692, + -0.012141590937972069, + -0.03972471505403519, + 0.00858298409730196, + 0.023875588551163673, + -0.01283920370042324, + -0.006713539361953735, + -0.026650361716747284, + -0.0009092476102523506, + 0.036150429397821426, + -0.0049773468635976315, + 0.00773644307628274, + -0.008692720904946327, + 0.011224505491554737, + 0.02779475972056389, + -0.043016817420721054, + 0.0310555100440979, + 0.02475348301231861, + -0.012745142914354801, + -0.002208452671766281, + -0.009688190184533596, + -0.04925613850355148, + 0.042327042669057846, + 0.008677043952047825, + -0.0372791513800621, + 0.0031921647023409605, + -0.006352975964546204, + -0.03649531677365303, + -0.03680885210633278, + -0.003742808010429144, + -0.03900358825922012, + 0.012204297818243504, + -0.04075937718153, + 0.05662417784333229, + 0.026289798319339752, + 0.0004911210853606462, + 0.0040759374387562275, + 0.0004815681022591889, + 0.021132169291377068, + -0.003248992608860135, + 0.009554938413202763, + 0.015292604453861713, + 0.024283181875944138, + -0.010793396271765232, + -0.026885511353611946, + 0.009170860052108765, + -0.008128359913825989, + 0.0230917539447546, + 0.025411903858184814, + -0.013881702907383442, + 0.0605119951069355, + -0.00737979868426919, + 0.029926788061857224, + -0.045775916427373886, + -0.04395741969347, + -0.017510855570435524, + -0.009202213026583195, + 0.008285126648843288, + 0.006337299011647701, + -0.031039832159876823, + 0.050855159759521484, + -0.032576147466897964, + 0.026101676747202873, + -0.060543350875377655, + 0.00156276929192245, + 0.03674614429473877, + 0.019109876826405525, + 0.006145259831100702, + -0.005839564371854067, + -0.005431970581412315, + 0.04367524012923241, + 0.01838875003159046, + 0.012698112986981869, + 0.01729138195514679, + -0.08584551513195038, + 0.005322233773767948, + -0.00012982252519577742, + 0.024251827970147133, + 0.025662729516625404, + 0.05540139973163605, + 0.027387164533138275, + -0.04724952206015587, + 0.018122246488928795, + 0.015308281406760216, + -0.020583484321832657, + 0.015135837718844414, + -0.009335464797914028, + -0.01318409014493227, + -0.01939205639064312, + 0.03752997890114784, + 0.0589129738509655, + 0.007183840032666922, + -0.022558746859431267, + -0.010182005353271961, + -0.021978709846735, + 0.00657636858522892, + -0.009931178763508797, + 0.0014981030253693461, + 0.03765539452433586, + 0.036652084439992905, + 0.016319427639245987, + -0.016382133588194847, + -0.023859912529587746, + 0.00657636858522892, + -0.0331091545522213, + 0.005051811225712299, + 0.04323629289865494, + -0.014657698571681976, + -0.05834861472249031, + -0.008434055373072624, + 0.005024376790970564, + 0.016084276139736176, + 0.01752653159201145, + -0.017510855570435524, + -0.05674959346652031, + -0.02815532311797142, + 0.04518020153045654, + -0.03183934465050697, + 0.050792451947927475, + -0.017260028049349785, + 0.0032195989042520523, + 0.018874727189540863, + -0.01871795952320099, + 0.0054437280632555485, + -0.014093338511884212, + -0.008022543042898178, + 0.0019429288804531097, + -0.0114596551284194, + 0.003827070351690054, + 0.01095800194889307, + 0.041637271642684937, + 0.020034801214933395, + -0.019297996535897255, + -0.016883788630366325, + 0.0122591657564044, + 0.006247158162295818, + -0.05352019518613815, + -0.05816049501299858, + -0.022872280329465866, + -0.01392089482396841, + 0.030052201822400093, + -0.061139065772295, + 0.01771465130150318, + 0.046779222786426544, + -0.0026317231822758913, + 0.0006496025598607957, + -0.034049756824970245, + -0.01095800194889307, + 0.00019363153842277825, + 0.026227090507745743, + 0.012604053132236004, + 0.016146983951330185, + -0.03495900332927704, + 0.028562916442751884, + 0.020160214975476265, + -0.005087083671241999, + 0.007967674173414707, + 0.017871418967843056, + 0.017369765788316727, + -0.02599194087088108, + 0.05094921961426735, + 0.05565222352743149, + -0.03781215846538544, + 0.008332157507538795, + 0.02191600389778614, + 0.006474470254033804, + -0.00845757033675909, + -0.029425134882330894, + 0.04988320544362068, + 0.043926067650318146, + -0.02933107316493988, + -0.017212998121976852, + -0.02674442157149315, + 0.00975089706480503, + 0.0036350309383124113, + 0.012651083059608936, + -0.02580382116138935, + 0.05101192742586136, + -0.004389471374452114, + 0.0250043086707592, + -0.042076218873262405, + 0.006160936318337917, + 0.025302166119217873, + 0.0044365013018250465, + 0.006764488760381937, + -0.004130805842578411, + -0.012651083059608936, + 0.01555910799652338, + 0.004534480627626181, + -0.001437355880625546, + 0.0052673653699457645, + 0.003936807159334421, + 0.006403924897313118, + 0.0011581149883568287, + -0.009131668135523796, + -0.010330934077501297, + 0.017746005207300186, + 0.009970370680093765, + -0.014336327090859413, + -0.004773550201207399, + 0.009304111823439598, + -0.03715373948216438, + -0.024596715345978737, + -0.01547288615256548, + -0.0012178822653368115, + 0.025223782286047935, + 0.008904355578124523, + 0.00401323102414608, + 0.018184952437877655, + -0.009437363594770432, + -0.013756289146840572, + 0.016162659972906113, + 0.02685415744781494, + -0.026227090507745743, + -0.0076227872632443905, + -0.0010689537739381194, + -0.015167190693318844, + -0.0024259667843580246, + -0.0073602027259767056, + 0.01760491542518139, + -0.011953471228480339, + -0.040226370096206665, + 0.0018988382071256638, + 0.03696561977267265, + 0.006541096139699221, + -0.0018665051320567727, + -0.025647053495049477, + -0.022339273244142532, + -0.0012629528064280748, + 0.013348695822060108, + 0.013450593687593937, + -0.01062095258384943, + -0.046152155846357346, + 0.024424271658062935, + -0.005087083671241999, + -0.0789477750658989, + 0.023797204717993736, + 0.03821975365281105, + -0.028500210493803024, + 0.03301509469747543, + 0.023264197632670403, + -0.04975779354572296, + -0.017887094989418983, + -0.004824499133974314, + -0.04380065202713013, + -0.036463964730501175, + 0.004138644319027662, + 0.0058944327756762505, + -0.060543350875377655, + -0.05938327684998512, + -0.03549201041460037, + -0.004044584464281797, + -0.006403924897313118, + -0.03771809861063957, + 0.004032826516777277, + 0.0054437280632555485, + -0.005620090756565332, + 0.012988131493330002, + -0.00484801409766078, + 0.016146983951330185, + 0.007125052623450756, + -0.028139647096395493, + 0.0005178204155527055, + 0.0009450100478716195, + -0.0018282931996509433, + 0.027763405814766884, + 0.005757261998951435, + 0.021900326013565063, + 0.003286224789917469, + -0.01581777259707451, + 0.0008960204431787133, + 0.0021222310606390238, + -0.013646552339196205, + -0.012157267890870571, + -0.04000689461827278, + -0.02748122625052929, + -0.016585931181907654, + -0.021163521334528923, + -0.017871418967843056, + 0.012055369094014168, + -0.019658559933304787, + 0.017056230455636978, + 0.028076939284801483, + -0.03928576782345772, + 0.013199767097830772, + -0.007305334322154522, + -0.012831364758312702, + -0.012948940508067608, + -0.026446564123034477, + 0.03210584819316864, + -0.0009175758459605277, + -0.028374796733260155, + 0.0200661551207304, + 0.008645690977573395, + 0.00765805970877409, + -0.005624010227620602, + -0.016288073733448982, + 0.019783973693847656, + 0.03677750006318092, + -0.0060080885887146, + -0.014610668644309044, + -0.0028002476319670677, + -0.006870306562632322, + -0.012815688736736774, + 0.01624104380607605, + -0.02395397238433361, + 0.017307057976722717, + -0.015762904658913612, + 0.03724779933691025, + -0.01798115484416485, + -0.012948940508067608, + 0.009021931327879429, + -0.009437363594770432, + -0.002373057883232832, + -0.01262756809592247, + -0.010182005353271961, + 0.015613975934684277, + 0.013003808446228504, + -0.021900326013565063, + 0.002463198732584715, + -0.02433021180331707, + 0.01410901453346014, + -0.0077286045998334885, + 0.0037702422123402357, + 0.015488563105463982, + 0.014116853475570679, + 0.02111649140715599, + 0.04568185284733772, + -0.01370925921946764, + 0.007207354996353388, + 0.05261094868183136, + -0.054868392646312714, + -0.018545515835285187, + 0.015418018214404583, + 0.04204486310482025, + 0.00286491378210485, + 0.012635407038033009, + -0.018184952437877655, + 0.031949080526828766, + 0.01815359853208065, + 0.007415071129798889, + -0.03163554519414902, + -0.009570615366101265, + 0.01442254800349474, + 0.03326592221856117, + 0.0006789963226765394, + -0.0071720825508236885, + -0.008637852035462856, + -0.011530200019478798, + -0.0025905719958245754, + -0.02124190516769886, + -0.015339634381234646, + -0.01581777259707451, + 0.01754220761358738, + 0.032011788338422775, + -0.01624104380607605, + 0.008669205941259861, + -0.025176752358675003, + -0.012086722999811172, + -0.04549373313784599, + 0.01219645980745554, + 0.01009578350931406, + -0.016836756840348244, + -0.016225367784500122, + 0.020050477236509323, + -0.056906361132860184, + 0.01674269698560238, + 0.0007265163003467023, + -0.008716235868632793, + -0.019956417381763458, + -0.005392779130488634, + 0.013905217871069908, + -0.01642916351556778, + -0.04916207864880562, + -0.007618867792189121, + 0.03143174946308136, + -0.007266142405569553, + 0.03552336245775223, + -0.04765711724758148, + 0.008022543042898178, + 0.008622176013886929, + 0.001432456891052425, + -0.00685462960973382, + -0.021947355940937996, + 0.005004781298339367, + -0.07104672491550446, + 0.006329461000859737, + -0.01062095258384943, + -0.014830142259597778, + -0.007023153826594353, + -0.015175029635429382, + 0.01846713200211525, + -0.044239599257707596, + -0.02241765707731247, + -0.007160325068980455, + -0.030287351459264755, + 0.004083775915205479, + 0.008731912821531296, + -0.012455124408006668, + 0.002823762595653534, + -0.034614115953445435, + 0.008245935663580894, + -0.014007116667926311, + 0.03712238743901253, + 0.0200661551207304, + 0.0012551144463941455, + -0.0013717097463086247, + -0.0020928371232002974, + -0.05568357929587364, + -0.009648998267948627, + -0.014289296232163906, + -0.03821975365281105, + -0.013591684401035309, + 0.027340134605765343, + 0.00022914900910109282, + -0.015661006793379784, + 0.021257583051919937, + 0.005365344695746899, + 0.023389611393213272, + 0.006752731278538704, + -0.011663451790809631, + 0.012361064553260803, + 0.0062510771676898, + -0.02686983533203602, + 0.018686605617403984, + -0.0049930233508348465, + -0.00966467522084713, + -0.021226229146122932, + 0.01691514067351818, + -0.03599366545677185, + -0.009374656714498997, + 0.045901328325271606, + -0.01729138195514679, + -0.005761181004345417, + -0.005122356116771698, + -0.0031568920239806175, + 0.006462712772190571, + -0.04217027872800827, + -0.012274842709302902, + -0.0020007367711514235, + -0.0007299455464817584, + 0.027826111763715744, + -0.015535593032836914, + -0.00521641643717885, + 0.0117026437073946, + 0.00017293340351898223, + 0.024722129106521606, + 0.009429524652659893, + -0.020411040633916855, + 0.006388248410075903, + 0.01111476868391037, + 0.027199044823646545, + 0.019423410296440125, + -0.04445907473564148, + 0.028061263263225555, + -0.008387025445699692, + -0.01752653159201145, + 0.00858298409730196, + 0.046152155846357346, + -0.032199908047914505, + 0.03662073239684105, + -0.003907413221895695, + 0.016131306067109108, + -0.030914418399333954, + 0.03326592221856117, + -0.00788929034024477, + -0.010628791525959969, + 0.0073484452441334724, + -0.036401256918907166, + 0.030146261677145958, + -0.02364043891429901, + -0.029362427070736885, + -0.01754220761358738, + 0.007516969460994005, + 0.019282320514321327, + 0.028813743963837624, + -0.006658670958131552, + -0.027277428656816483, + 0.014908526092767715, + -0.030851712450385094, + 0.025035662576556206, + -0.013771966099739075, + 0.00673313532024622, + 0.020489424467086792, + 0.014054146595299244, + 0.0516076423227787, + 0.013599522411823273, + -0.026383858174085617, + 0.03477088361978531, + -0.019658559933304787, + 0.005490758456289768, + -0.017918448895215988, + -0.01111476868391037, + 0.02075592800974846, + -0.03138472139835358, + -0.016256719827651978, + 0.0018449496710672975, + -0.007285738363862038, + 0.019297996535897255, + -0.021978709846735, + -0.02155543863773346, + -0.01222781278192997, + 0.030271675437688828, + 0.013803319074213505, + 0.029362427070736885, + 0.015598299913108349, + 0.004362036939710379, + -0.0200661551207304, + 0.026713067665696144, + 0.0005584818427450955, + 0.010981516912579536, + 0.014618506655097008, + 0.008606499060988426, + 0.02649359405040741, + 0.029722990468144417, + -0.0003781999694183469, + -0.014681213535368443, + -0.009946855716407299, + 0.024048032239079475, + 0.01611563004553318, + 8.677288860781118e-5, + -0.0107463663443923, + 0.03044411912560463, + 0.0008671165560372174, + 0.0006402945145964622, + 0.03985012695193291, + 0.015143675729632378, + 0.01562965288758278, + 0.00657636858522892, + 0.025709759443998337, + 0.038690052926540375, + -0.012666760012507439, + -0.011475332081317902, + 0.021069461479783058, + -0.03376757726073265, + 0.07085860520601273, + -0.024189122021198273, + 0.013348695822060108, + 0.009813603945076466, + -0.02147705666720867, + -0.007528726942837238, + -0.02061483822762966, + -0.004393390379846096, + 0.018059538677334785, + -0.015026100911200047, + 0.0054515665397048, + -0.040038250386714935, + 0.026148706674575806, + 0.01222781278192997, + -0.014806627295911312, + 0.011851572431623936, + -0.020113185048103333, + -0.02191600389778614, + -0.00975089706480503, + 0.013489785604178905, + 0.012557023204863071, + 0.03539795055985451, + -0.016585931181907654, + 0.015088807791471481, + -0.028688330203294754, + 0.013293826952576637, + 0.03392434120178223, + -0.00028585450490936637, + -0.013960086740553379, + 0.007477778010070324, + 0.015370987355709076, + 0.02147705666720867, + -0.0004357628058642149, + -0.030961448326706886, + 0.0006030623917467892, + -0.00392896868288517, + -0.01547288615256548, + 0.0030197210144251585, + 0.01423442829400301, + -0.02044239453971386, + 0.013748451136052608, + 0.019439086318016052, + 0.019956417381763458, + 0.011216666549444199, + 0.013897379860281944, + 0.004224866162985563, + 0.023248521611094475, + 0.022386303171515465, + -0.013913055881857872, + 0.0019115755567327142, + 0.009437363594770432, + 0.025960586965084076, + 0.01198482420295477, + -0.009562776423990726, + -0.0072739808820188046, + -0.011169636622071266, + 0.009257080964744091, + -0.004201351199299097, + -0.028939157724380493, + -0.025521639734506607, + -0.022198183462023735, + 0.014689052477478981, + 0.019736943766474724, + -0.01838875003159046, + -0.010205520316958427, + 0.009797926992177963, + -0.016272397711873055, + -0.0035331323742866516, + 0.030397089198231697, + 0.0028198433574289083, + -0.004789226688444614, + -0.0035174558870494366, + -0.0029432971496134996, + 0.009374656714498997, + -0.0008279248140752316, + 0.003642869181931019, + 0.03229396790266037, + -0.006642994470894337, + -0.04323629289865494, + -0.027763405814766884, + -0.015951024368405342, + -0.01573939062654972, + 0.015457209199666977, + 0.021884649991989136, + -0.027826111763715744, + -0.023577731102705002, + 0.008873002603650093, + -0.014743920415639877, + 0.010573922656476498, + 0.012157267890870571, + -0.015512078069150448, + 0.014571476727724075, + 0.036150429397821426, + -0.005106679629534483, + -0.0027022683061659336, + 0.023326903581619263, + -0.011585068888962269, + 0.04508614167571068, + -0.010965839959681034, + 0.025584347546100616, + 0.006541096139699221, + -0.04718681797385216, + -0.04088478907942772, + 0.019783973693847656, + 0.001639193156734109, + -0.02464374527335167, + 0.0020908776205033064, + -0.006400005891919136, + 0.04000689461827278, + -0.011835895478725433, + -0.02685415744781494, + 0.010040915571153164, + -7.023888611001894e-5, + -0.01914123073220253, + -0.00882597267627716, + 0.014461739920079708, + 0.010229035280644894, + -0.02266848459839821, + 0.005290880333632231, + -0.03668344020843506, + 0.019611530005931854, + -0.00895138643682003, + 0.03768674656748772, + -0.00685462960973382, + 0.0429854653775692, + -0.006121744867414236, + -0.009727382101118565, + 0.018310366198420525, + 0.031713929027318954, + -0.0042483811266720295, + 0.03796892613172531, + 0.008261611685156822, + -0.01655457727611065, + 0.014046307653188705, + -0.00028732421924360096, + -0.0008553590159863234, + -0.02760663814842701, + 0.040100954473018646, + -0.009257080964744091, + -0.004385551903396845, + 0.005130194593220949, + -0.005306557286530733, + -0.0038819387555122375, + -0.005455485545098782, + -0.022809574380517006, + 0.03067926876246929, + 0.03731050714850426, + -0.017369765788316727, + 0.044803962111473083, + 0.016146983951330185, + 0.027183368802070618, + 0.029127277433872223, + -0.022260889410972595, + -0.008198904804885387, + 0.011130444705486298, + 0.002433805027976632, + -0.03746727108955383, + -0.01870228350162506, + -0.011106929741799831, + -0.05612252652645111, + 0.016946494579315186, + -0.04336170479655266, + 0.0015725672710686922, + -0.01945476420223713, + 0.029299721121788025, + -0.022637130692601204, + -0.01135775726288557, + -0.0012315993662923574, + -0.005518192425370216, + -0.008669205941259861, + -0.020975401625037193, + 0.0024416435044258833, + 0.005945382174104452, + -0.017824389040470123, + -0.0030647914391011, + -0.012619730085134506, + -0.025208106264472008, + 0.020897017791867256, + 0.005083164665848017, + -0.03389298915863037, + 0.04997726529836655, + 0.04323629289865494, + 8.861000242177397e-5, + -0.015394503250718117, + -0.0030785086564719677, + -0.0001321495365118608, + 0.0035488090943545103, + 0.0014510729815810919, + -0.017244352027773857, + 0.015386664308607578, + -0.025333520025014877, + 0.024596715345978737, + -0.019893711432814598, + 0.008112683892250061, + -0.003225477645173669, + 0.005957139655947685, + 0.00592970522120595, + 0.004040664993226528, + 0.004220947157591581, + 0.007763877511024475, + 0.01653890125453472, + 0.017385441809892654, + -0.0065175811760127544, + -0.009860633872449398, + 0.0009028789936564863, + 0.0005766079993918538, + 0.019658559933304787, + 0.021821942180395126, + -0.003642869181931019, + -0.0024788754526525736, + -0.017557885497808456, + 0.031713929027318954, + 0.009500069543719292, + 0.049381550401449203, + -0.04527426138520241, + 0.0008578085107728839, + -0.02063051424920559, + 0.017918448895215988, + 0.004103371873497963, + -0.05167034640908241, + -0.010785558260977268, + -0.015621814876794815, + -0.014485254883766174, + 0.002600369742140174, + 0.014469578862190247, + 0.012619730085134506, + 0.009406009688973427, + 0.03389298915863037, + 0.03260749951004982, + -0.010519054718315601, + -0.016695667058229446, + -0.007313172798603773, + -0.02241765707731247, + 0.013097868300974369, + -0.010887456126511097, + 0.027340134605765343, + -0.0008387025445699692, + 0.020081831142306328, + 0.016209689900279045, + -0.019407734274864197, + -0.024534009397029877, + -0.004636378958821297, + -0.003151013283059001, + -0.017401117831468582, + -0.021382994949817657, + 0.02926836721599102, + 0.008238096721470356, + 0.009727382101118565, + 0.012525670230388641, + 0.009155183099210262, + 0.001957625849172473, + 0.03209017217159271, + -0.021774912253022194, + -0.010182005353271961, + -0.03963065519928932, + -0.004475693218410015, + -0.033798929303884506, + -0.012894071638584137, + 0.0013501542853191495, + 0.0200661551207304, + 0.023248521611094475, + 0.006940851453691721, + -0.031572841107845306, + -0.009006254374980927, + -0.0027571367099881172, + -0.011592906899750233, + 0.0008524196455255151, + -0.013858187943696976, + 0.011263696476817131, + -0.003413597820326686, + -0.011976986192166805, + -0.02273119054734707, + -0.010040915571153164, + -0.01327815093100071, + 0.0033548101782798767, + -0.011561553925275803, + 0.013160575181245804, + 0.014352003112435341, + -0.006646913476288319, + -0.04204486310482025, + -0.032952386885881424, + -0.0038466660771518946, + 0.026164384558796883, + -0.046967342495918274, + 0.027057955041527748, + 0.013513300567865372, + -0.011349918320775032, + 0.03323456645011902, + 0.012925425544381142, + 0.02075592800974846, + -0.020160214975476265, + -0.009272757917642593, + 0.05157628655433655, + 0.005796453449875116, + 0.013795481063425541, + 0.01407766155898571, + -0.009515746496617794, + -0.023044724017381668, + 0.0025278651155531406, + 0.02186897210776806, + 0.036463964730501175, + 0.009962531737983227, + 0.009711705148220062, + -0.0006677287165075541, + -0.008136198855936527, + -0.0023926538415253162, + 0.0017557884566485882, + 0.02489457279443741, + 0.001544153317809105, + 0.005921867210417986, + 0.03593095764517784, + -0.01442254800349474, + 0.04552508890628815, + 0.00935114175081253, + -0.007697251625359058, + 0.0019115755567327142, + -0.043926067650318146, + -0.02248036302626133, + -0.026634683832526207, + 0.011506685055792332, + 0.028578592464327812, + -0.027873141691088676, + 0.004730439279228449, + 0.009202213026583195, + -0.010260389186441898, + 0.03342268988490105, + 0.008630014024674892, + 0.002459279727190733, + 0.017761681228876114, + 0.025019986554980278, + 0.0018655252642929554, + -0.00985279493033886, + 0.013889540918171406, + 0.020222920924425125, + -0.01315273717045784, + 0.004444339778274298, + -0.001103246584534645, + -0.006239319685846567, + 0.003137296298518777, + -0.003162770764902234, + -0.0015755066415295005, + 0.004126886837184429, + -0.05790966749191284, + -0.006278511602431536, + -0.039975542575120926, + -0.022762544453144073, + -0.0007946118712425232, + -0.0065175811760127544, + -0.0034704257268458605, + -0.014814465306699276, + -0.012024016119539738, + 0.004483531229197979, + -0.014493093825876713, + -0.0222922433167696, + -0.019376380369067192, + -0.010879618115723133, + 0.0025650972966104746, + 0.006960447411984205, + 0.02327987365424633, + -0.012564861215651035, + -0.006838953122496605, + -0.012823526747524738, + -0.015410179272294044, + 0.015292604453861713, + -0.004824499133974314, + 0.01932935044169426, + -0.00031279883114621043, + 0.014642021618783474, + -0.0022417656145989895, + -0.04088478907942772, + -0.018921757116913795, + 0.0021398672834038734, + 0.005580899305641651, + -0.016523223370313644, + -0.026038970798254013, + -0.0237188208848238, + -0.005286961328238249, + -0.03643261268734932, + 0.018326042219996452, + -0.004820580128580332, + -0.020818635821342468, + 0.03558607026934624, + 0.032638855278491974, + 0.01352113950997591, + -0.004017150029540062, + -0.024361565709114075, + -0.00020563398720696568, + 0.015245574526488781, + -0.0024161688052117825, + -0.036150429397821426, + 0.0019497874891385436, + -0.018184952437877655, + 0.014140368439257145, + 0.031102539971470833, + -0.008590822108089924, + -0.021398672834038734, + 0.001493204035796225, + 0.042891405522823334, + -0.019062846899032593, + -0.036526672542095184, + -0.0029178226832300425, + 0.0033802848774939775, + -0.0036467884201556444, + -0.008841649629175663, + 0.00589835224673152, + 0.010950163006782532, + 0.0240323543548584, + 0.00614134082570672, + -0.0010376004502177238, + 0.004201351199299097, + -0.0022672403138130903, + -0.009476554580032825, + -0.0037467272486537695, + -0.029174307361245155, + 0.005674959160387516, + -0.09054852277040482, + -0.019611530005931854, + -0.0025063096545636654, + 0.02476915903389454, + -0.0051733055151999, + 0.0026140869595110416, + 0.011161798611283302, + -0.008684882894158363, + -0.023577731102705002, + -0.005659282673150301, + 0.011765350587666035, + -0.027026601135730743, + 0.002727742772549391, + 0.028108293190598488, + -0.010722851380705833, + 0.002182978205382824, + 0.001035640831105411, + -0.006478389259427786, + 0.040038250386714935, + -0.010581760667264462, + 0.008175389841198921, + 0.011349918320775032, + 0.03317186236381531, + -0.01773032918572426, + 0.010730689391493797, + 0.06465063989162445, + -0.0310555100440979, + 0.022872280329465866, + -0.02124190516769886, + -0.00392896868288517, + 0.008535954169929028, + 0.015018261969089508, + -0.01932935044169426, + -0.009743058122694492, + 0.007634544745087624, + 0.010550407692790031, + 0.025647053495049477, + 0.005098841153085232, + 0.0350530631840229, + 0.007285738363862038, + 0.010417155921459198, + -0.006862468086183071, + -0.014963394030928612, + -0.01809089258313179, + 0.0003022660384885967, + -0.030397089198231697, + 0.007689413148909807, + -0.019736943766474724, + 0.006838953122496605, + 0.018514161929488182, + 0.009029769338667393, + 0.012118075974285603, + 0.007618867792189121, + -0.017260028049349785, + -0.009860633872449398, + -0.005208577960729599, + 0.01463418360799551, + -0.027512578293681145, + 0.0037859189324080944, + -0.0037682827096432447, + 0.07368040829896927, + 0.0067057013511657715, + 0.01567668281495571, + 0.008018623106181622, + -0.018263336271047592, + 0.021649498492479324, + 0.016821080818772316, + 0.021837620064616203, + 0.02679145149886608, + -0.008261611685156822, + 0.00020575647067744285, + -0.002373057883232832, + -0.00889651756733656, + 0.028704006224870682, + -0.012063208036124706, + 0.015512078069150448, + 0.011122606694698334, + 0.007944159209728241, + 0.007270061876624823, + -0.010628791525959969, + 0.003160811262205243, + 0.006164855789393187, + 0.008292965590953827, + -0.012580538168549538, + -0.014861495234072208, + -0.007250465918332338, + 0.011091253720223904, + 0.002271159552037716, + 0.0076384637504816055, + -0.0027532174717634916, + 0.038752760738134384, + 0.001413840800523758, + 0.04038313403725624, + 0.015269089490175247, + -0.02210412360727787, + 0.057878315448760986, + -0.004338521976023912, + 0.025239460170269012, + -0.0052516888827085495, + 0.00016497258911840618, + -0.006435278337448835, + -0.016570253297686577, + 0.01407766155898571, + -0.03495900332927704, + -0.013967924751341343, + 0.01773032918572426, + 0.014163883402943611, + 0.00038799791946075857, + -0.02235494926571846, + -0.000564360583666712, + 0.007219112478196621, + -0.020222920924425125, + -0.03082035854458809, + -0.02378152869641781, + -0.0245183315128088, + 0.009366817772388458, + -0.017275704070925713, + -0.015794258564710617, + -0.023750174790620804, + 0.0014020833186805248, + 0.004021069034934044, + 0.029973817989230156, + -0.005365344695746899, + -0.02321716770529747, + -0.030459795147180557, + -0.00362719246186316, + 0.00348806194961071, + -0.01834172010421753, + 0.0046128639951348305, + 0.020583484321832657, + -0.00013276191020850092, + -0.002559218555688858, + -0.0014285377692431211, + 0.01231403462588787, + -0.011467494070529938, + 0.017746005207300186, + 0.02784178964793682, + -0.011412625201046467, + 0.013411402702331543, + -0.05822320282459259, + -0.0020516859367489815, + 0.0028218028601258993, + -0.0037467272486537695, + 0.02970731444656849, + -0.01138911023736, + -0.01857686974108219, + -0.0017773439176380634, + -0.019031492993235588, + 0.012886233627796173, + -0.02464374527335167, + -0.008724073879420757, + 0.00040465439087711275, + 0.015370987355709076, + -0.0005668100784532726, + -0.022010063752532005, + -0.014869334176182747, + -0.020959725603461266, + 0.0004886715905740857, + 0.016084276139736176, + -0.018623899668455124, + -0.030099231749773026, + -0.003803555155172944, + 0.015276927500963211, + -0.013387887738645077, + 0.003603677498176694, + -0.0058513218536973, + -0.02235494926571846, + 0.0062549966387450695, + -0.003329335479065776, + -0.018263336271047592, + -0.01534747239202261, + 0.0015412139473482966, + 0.0028551158029586077, + 0.00044996978249400854, + 0.01179670449346304, + -0.004444339778274298, + 0.0029276206623762846, + -0.004706924315541983, + 0.021461378782987595, + -0.007842260412871838, + -0.008363510482013226, + 0.013630876317620277, + 0.006752731278538704, + 0.011083414778113365, + -0.0038231511134654284, + -0.00469124736264348, + 0.008724073879420757, + 0.007795230485498905, + -0.005741585046052933, + 0.0006496025598607957, + 0.010738528333604336, + 0.019486116245388985, + -0.012321872636675835, + 0.007042749784886837, + -0.0038623427972197533, + -0.003515496151521802, + 0.018247658386826515, + 0.0016470315167680383, + -0.02723039872944355, + -0.008034300059080124, + -0.004981265868991613, + -0.025897881016135216, + 0.00521641643717885, + 0.008559469133615494, + -0.019125552847981453, + -0.0050635687075555325, + -0.03903494030237198, + 0.01766762137413025, + 0.0208656657487154, + -0.014963394030928612, + 0.0004056341713294387, + 0.023499347269535065, + 0.0016088195843622088, + -0.020411040633916855, + -0.007775634992867708, + 0.003691858844831586, + 0.00953926146030426, + -0.0025023906491696835, + 0.0006221683579497039, + -0.010197682306170464, + 0.01617833785712719, + -0.0070858607068657875, + -0.008481085300445557, + -0.0372791513800621, + 0.008222420699894428, + 0.008488924242556095, + -0.0026042889803647995, + -0.021273259073495865, + -0.011632098816335201, + 0.010056592524051666, + -0.009500069543719292, + 0.002798287896439433, + -0.01716596819460392, + 0.005279122851788998, + -0.016648637130856514, + -0.003554687835276127, + 0.015135837718844414, + -0.025662729516625404, + 0.02914295345544815, + -0.006243239156901836, + -0.01179670449346304, + -0.029346751049160957, + -0.01087178010493517, + 0.007505211979150772, + 0.03969336301088333, + -0.001379548106342554, + -0.027340134605765343, + -0.01661728322505951, + 0.007783473003655672, + 0.0038349085953086615, + 0.011240181513130665, + -0.02271551452577114, + 0.004871529061347246, + 0.02168085239827633, + 0.0010944284731522202, + 0.006352975964546204, + 0.0056161717511713505, + 0.013701421208679676, + 0.021837620064616203, + -0.011538038961589336, + -0.008065653033554554, + 0.006756650283932686, + 0.012666760012507439, + -0.046528395265340805, + 0.015613975934684277, + -0.009100314229726791, + -0.0016989605501294136, + 0.0017028796719387174, + 0.008755427785217762, + -0.027340134605765343, + 0.0021241905633360147, + 0.007234789431095123, + -0.013967924751341343, + 0.009398171678185463, + 0.011381272226572037, + 0.018451455980539322, + -0.014618506655097008, + -0.013936570845544338, + 0.015151514671742916, + 0.004385551903396845, + 0.004675570875406265, + 0.0030314784962683916, + -0.028515886515378952, + 0.020113185048103333, + 0.010785558260977268, + -0.006627317983657122, + 0.026838481426239014, + 0.01182805746793747, + 0.023938294500112534, + 0.006835033651441336, + 0.018921757116913795, + 0.028453180566430092, + 0.020034801214933395, + -0.009743058122694492, + -0.005479000974446535, + -0.012831364758312702, + -0.003601717995479703, + 0.004859771579504013, + 0.015958864241838455, + 0.005310476291924715, + 0.015151514671742916, + -0.017761681228876114, + -0.05198388174176216, + -0.003989716060459614, + -0.0010767921339720488, + -0.0002547460899222642, + 0.003002084791660309, + 0.011036384850740433, + -0.00993901677429676, + -0.004667732398957014, + 0.020238598808646202, + 0.013607361353933811, + -0.007395475171506405, + -0.0011786905815824866, + -0.011232343502342701, + 0.02063051424920559, + 0.0030785086564719677, + -0.0019076563185080886, + 0.004040664993226528, + -0.014171721413731575, + 0.009923340752720833, + 0.016272397711873055, + 0.008810295723378658, + 0.008151874877512455, + -0.02290363423526287, + -0.018420102074742317, + 0.008700558915734291, + -0.009860633872449398, + 0.009084638208150864, + 0.0014412750024348497, + -0.01586480252444744, + 0.034112460911273956, + -0.0024769159499555826, + 0.016099954023957253, + 0.003023640252649784, + 0.004181755241006613, + -0.02031698077917099, + -0.005624010227620602, + 0.025976262986660004, + -0.00392896868288517, + 0.009225727990269661, + 0.0334540419280529, + -0.021649498492479324, + 0.008880840614438057, + 0.021445702761411667, + 0.006764488760381937, + 0.012361064553260803, + 0.021539762616157532, + 0.025474609807133675, + -0.02414209209382534, + -0.00673313532024622, + 0.031886372715234756, + 0.020395364612340927, + 0.006290269084274769, + 0.006106067914515734, + 0.02970731444656849, + -0.004514884669333696, + 0.001994858030229807, + -0.04044584184885025, + -0.019125552847981453, + -0.014767435379326344, + -0.008794618770480156, + -0.0018478890415281057, + 0.038313813507556915, + -0.004757873248308897, + 0.03916035592556, + 0.02284092642366886, + -0.013474109582602978, + 0.0038349085953086615, + -0.038125693798065186, + -0.007058426737785339, + -0.0033430526964366436, + -0.009100314229726791, + -0.0103466110303998, + 0.004126886837184429, + -0.009500069543719292, + 0.003699697321280837, + 0.002335825702175498, + -0.006501904223114252, + -0.022637130692601204, + 0.0018096771091222763, + 0.00022792427625972778, + -0.020646192133426666, + -0.01876498945057392, + -0.00870839785784483, + 0.0009396211826242507, + -0.0006515621207654476, + 0.007783473003655672, + 0.008191066794097424, + -0.025944910943508148, + -0.006960447411984205, + -0.004315007012337446, + 0.03069494478404522, + 0.0072739808820188046, + 0.004922478459775448, + 0.003527253633365035, + -0.03969336301088333, + 0.019109876826405525, + -0.030365735292434692, + 0.00334893143735826, + -0.019972093403339386, + 0.01444606389850378, + -0.007567918859422207, + 0.021633822470903397, + -0.0012590335682034492, + 0.007897129282355309, + 0.003799636149778962, + 0.02752825617790222, + 0.01914123073220253, + -0.01584128849208355, + -0.032450735569000244, + 0.0005795473698526621, + 0.02933107316493988, + -0.023076077923178673, + 0.008630014024674892, + -0.016899464651942253, + 0.007775634992867708, + 0.014500931836664677, + 0.004330683499574661, + 0.008418378420174122, + -0.009484393522143364, + -0.004942074418067932, + -0.0044208248145878315, + -0.018796343356370926, + -0.016632961109280586, + 0.013325180858373642, + -0.007669817190617323, + -0.001318800961598754, + -0.0016215569339692593, + -0.0030687106773257256, + 0.0021673014853149652, + -0.012423771433532238, + 0.006623398512601852, + 0.010291742160916328, + 0.04771982505917549, + -0.01827901229262352, + 0.02624276839196682, + -0.021288935095071793, + 0.01439119502902031, + -0.038878172636032104, + -0.022245213389396667, + -0.014908526092767715, + 0.01846713200211525, + -0.02075592800974846, + -0.024361565709114075, + -0.013654391281306744, + 0.022496040910482407, + -0.015276927500963211, + 0.017448147758841515, + 0.020708898082375526, + 0.010511215776205063, + -0.0064470358192920685, + 0.05339478328824043, + -0.008198904804885387, + 0.007830503396689892, + 0.009531423449516296, + 0.00938249472528696, + 0.005396698135882616, + -0.01987803354859352, + 0.01932935044169426, + 0.02588220313191414, + -0.013607361353933811, + -0.022307919338345528, + 0.009429524652659893, + 0.011600745841860771, + 0.01463418360799551, + 0.038062985986471176, + -0.026211414486169815, + -0.024173445999622345, + -0.01926664263010025, + -0.014297135174274445, + -0.017432471737265587, + -0.01138911023736, + -0.0026336826849728823, + 0.013325180858373642, + -0.024220475926995277, + -0.007669817190617323, + 0.005945382174104452, + 0.01463418360799551, + -0.014187398366630077, + 0.0234052874147892, + -0.021539762616157532, + -0.024220475926995277, + 0.028688330203294754, + 0.030789006501436234, + 0.01179670449346304, + 0.014273620210587978, + 0.0002035519282799214, + 0.001945868250913918, + 0.030522501096129417, + -0.0363071970641613, + 0.015073130838572979, + -0.005537788383662701, + 0.007873614318668842, + 0.022449010983109474, + -0.02679145149886608, + -0.010260389186441898, + 0.001518678618595004, + 0.0308830663561821, + -0.005322233773767948, + 0.002833560574799776, + -0.02476915903389454, + -0.03198043256998062, + -0.003838827833533287, + -0.009782250039279461, + -0.0026944298297166824, + -0.0037859189324080944, + 0.010448508895933628, + -0.0037957169115543365, + -0.004326764494180679, + -0.008873002603650093, + 0.01685243472456932, + -0.00492639746516943, + 0.0013736693654209375, + 0.006278511602431536, + -0.016162659972906113, + 0.003923090174794197, + -0.0021673014853149652, + -0.036463964730501175, + -0.0014589113416150212, + -0.00012082068860763684, + -0.01479095034301281, + 0.002659157384186983, + -0.014250105246901512, + 0.006870306562632322, + 0.015943186357617378, + 0.001165953348390758, + -0.01779303513467312, + -0.023812880739569664, + -0.001530436216853559, + 0.013513300567865372, + -0.008285126648843288, + -0.006501904223114252, + 0.013113545253872871, + 0.0013070434797555208, + -0.005333991255611181, + -0.0008137178374454379, + -0.0022515635937452316, + -0.013811158016324043, + -0.010048753581941128, + 0.006568530108779669, + 0.017150292173027992, + -0.018106568604707718, + -0.009210051037371159, + -0.0046128639951348305, + 0.09732084721326828, + 0.0011992662912234664, + 0.008065653033554554, + 0.0012394377263262868, + 0.005725908558815718, + -0.03464546799659729, + -0.0019997567869722843, + 0.003866262035444379, + 0.010479862801730633, + 0.0018008589977398515, + -0.014453901909291744, + -0.018984463065862656, + 0.01846713200211525, + 0.008481085300445557, + -0.011882925406098366, + -0.010205520316958427, + 0.01815359853208065, + 0.026963895186781883, + 0.024863218888640404, + 0.005314395762979984, + 0.00038383380160667, + -0.011232343502342701, + -0.0229193102568388, + 0.016319427639245987, + -0.007748200558125973, + 0.025427579879760742, + -0.010816911235451698, + 0.006717458833009005, + 0.012533508241176605, + 0.03370486944913864, + -0.004087694920599461, + 0.0017156170215457678, + -0.005549545865505934, + -0.013897379860281944, + 0.012988131493330002, + 0.015496401116251945, + 0.0024651584681123495, + -0.003838827833533287, + -0.010260389186441898, + 0.014963394030928612, + -0.0032548713497817516, + -0.0004048993287142366, + 0.02969163842499256, + 0.01642916351556778, + -0.013528977520763874, + -0.0018400506814941764, + -0.007140729110687971, + -0.005725908558815718, + 0.01228268165141344, + -0.0027630154509097338, + -0.0022789977956563234, + -0.01367790624499321, + 0.013011647388339043, + 0.01624104380607605, + 0.0015637491596862674, + -0.0024749564472585917, + 0.0117026437073946, + -0.010879618115723133, + -0.011083414778113365, + -0.005145871080458164, + -0.018012508749961853, + -0.004589349031448364, + -0.01312138419598341, + -0.02056780830025673, + -0.01555910799652338, + -0.020771605893969536, + -0.01722867414355278, + -0.008551630191504955, + -0.004538399633020163, + -0.0015911833615973592, + -0.00926491990685463, + -0.0010650346521288157, + 0.008308641612529755, + -0.032325319945812225, + -0.020912695676088333, + 0.014485254883766174, + 0.0067057013511657715, + 0.013905217871069908, + 0.027199044823646545, + 0.0013325180625542998, + 0.013615199364721775, + 0.015425856225192547, + -0.009131668135523796, + -0.027214722707867622, + -0.003241154132410884, + 0.001744030974805355, + 0.014226590283215046, + -0.02649359405040741, + 0.005823887884616852, + -0.023875588551163673, + -0.01964288391172886, + -0.0010669942712411284, + 0.0027865304145962, + 0.008465409278869629, + -0.002482794690877199, + -0.0025552993174642324, + -0.022323597222566605, + -0.03093009628355503, + 0.012165105901658535, + -0.00901409238576889, + 0.018043862655758858, + 0.008022543042898178, + -0.01231403462588787, + 0.0003647278354037553, + 0.0026513191405683756, + 0.007387636695057154, + 0.017369765788316727, + 0.007842260412871838, + -0.019564500078558922, + 0.010526892729103565, + 0.013043000362813473, + -0.023562055081129074, + -6.105333159212023e-5, + -0.004867610055953264, + -0.029237013310194016, + 0.0073641217313706875, + 0.009586291387677193, + -0.006227562204003334, + -0.0111461216583848, + -0.024486979469656944, + -0.02199438586831093, + 0.013254635967314243, + -0.01444606389850378, + -0.019893711432814598, + -0.004373794421553612, + 0.008488924242556095, + -0.003842746838927269, + -0.0022378466092050076, + -0.01666431501507759, + -0.0011110849445685744, + 0.009241404943168163, + 0.020818635821342468, + 0.0003823640872724354, + -0.004961670376360416, + 0.01827901229262352, + -0.0011365595273673534, + 0.0002409065346000716, + 0.006760569754987955, + 0.021398672834038734, + -0.018937433138489723, + 0.02994246408343315, + -0.010001723654568195, + 0.009719543159008026, + 0.020019125193357468, + -0.012078884057700634, + 0.0028413988184183836, + -0.01871795952320099, + -0.02525513619184494, + 0.0033097397536039352, + 0.0005506434827111661, + 0.02588220313191414, + -0.031651224941015244, + 0.008755427785217762, + -0.007505211979150772, + 0.012549185194075108, + -0.0017077786615118384, + -0.026650361716747284, + 0.006317703519016504, + -0.01704055443406105, + 0.0009567675879225135, + 0.0007025113445706666, + 0.0010376004502177238, + -0.005878756288439035, + -0.0025748952757567167, + -0.020834311842918396, + 0.005302638281136751, + 0.01336437277495861, + 0.01981532759964466, + 0.009813603945076466, + 0.005953220184892416, + 0.0009567675879225135, + 0.014367680065333843, + 0.017134614288806915, + -0.030036523938179016, + -0.005400617141276598, + 0.004652055911719799, + 0.0055142734199762344, + 0.001418739790096879, + -0.010119299404323101, + 0.019548824056982994, + 0.0029472163878381252, + -0.009155183099210262, + 0.015543431043624878, + 0.002243725350126624, + 0.0037486867513507605, + -0.01275298185646534, + 0.011483170092105865, + -0.006317703519016504, + -0.004003433044999838, + 0.004177836235612631, + -0.012619730085134506, + 0.016382133588194847, + 0.0014079620596021414, + -0.008622176013886929, + -0.006039442028850317, + -0.013889540918171406, + 0.01339572574943304, + 0.01882769726216793, + 0.011592906899750233, + -0.016335103660821915, + -0.000280465668765828, + -0.0007132890750654042, + 0.014689052477478981, + 0.0020516859367489815, + 0.005349668208509684, + -0.02580382116138935, + -0.01741679571568966, + -0.01852983981370926, + -0.007109375670552254, + -0.021069461479783058, + -0.017589237540960312, + -0.026760097593069077, + 0.019297996535897255, + 0.004765711724758148, + -0.017557885497808456, + 0.014524446800351143, + 0.014461739920079708, + 0.0009165960364043713, + 0.0020908776205033064, + 0.012557023204863071, + 0.000280465668765828, + 0.007795230485498905, + 0.010730689391493797, + -0.03307780250906944, + -0.011773188598453999, + 0.011318565346300602, + 0.018968787044286728, + 0.00032774065039120615, + 0.0032921035308390856, + -0.003002084791660309, + 0.023797204717993736, + -0.00019791812519542873, + -0.008089168928563595, + 0.01376412808895111, + -0.0009930199012160301, + 0.040602609515190125, + 0.009311949834227562, + -0.0027512579690665007, + 0.010550407692790031, + -0.0006099209422245622, + -0.010236874222755432, + -0.008022543042898178, + -0.0046285404823720455, + -0.007795230485498905, + -0.004565834067761898, + -0.01735408790409565, + -0.0044365013018250465, + 0.008347833529114723, + 0.00926491990685463, + -3.285367347416468e-5, + 0.0025063096545636654, + 0.0016989605501294136, + -0.0049930233508348465, + 0.006501904223114252, + 0.008528115227818489, + -0.013740613125264645, + -0.005949301179498434, + 0.008034300059080124, + -0.01584128849208355, + -0.011961309239268303, + 0.0004631970077753067, + -0.004981265868991613, + -0.013199767097830772, + -0.0122591657564044, + 0.006055118981748819, + 0.024110738188028336, + -0.03611907735466957, + 0.0028218028601258993, + -0.007881452329456806, + 0.01660160720348358, + 0.0010229035979136825, + 0.005941462703049183, + -0.002010534517467022, + 0.001657809247262776, + -0.0035586070735007524, + -0.005667121149599552, + 0.007136810105293989, + -0.012705951929092407, + 0.0018047781195491552, + 0.007266142405569553, + -0.0038094338960945606, + 0.013262473978102207, + -0.0015598299214616418, + -0.023170137777924538, + 0.0035311728715896606, + -0.03223126009106636, + 0.004416905343532562, + 0.018263336271047592, + 0.0018165356013923883, + 0.01547288615256548, + 0.0019272522768005729, + -0.025082692503929138, + -0.003539011115208268, + -0.011765350587666035, + -0.0039740391075611115, + 0.003623273456469178, + 0.0060080885887146, + 0.004918559454381466, + 0.019062846899032593, + 0.00641960185021162, + -0.009946855716407299, + 0.004397309385240078, + -0.006952608935534954, + -0.03593095764517784, + 0.025600023567676544, + 0.012376741506159306, + 0.019987771287560463, + -0.0014696890721097589, + -0.01346627064049244, + 0.0027649749536067247, + 0.003225477645173669, + -0.008128359913825989, + -0.017996832728385925, + -0.014171721413731575, + -0.015096645802259445, + -0.02481618896126747, + 0.012948940508067608, + 0.019235290586948395, + -0.031776636838912964, + -0.004730439279228449, + 0.006223643198609352, + 0.0019007978262379766, + 0.0037722019478678703, + 0.005823887884616852, + 0.015378826297819614, + -0.019470440223813057, + 0.018796343356370926, + 0.003229396650567651, + 0.006795842200517654, + -0.0035213748924434185, + 0.016507547348737717, + 0.01037796400487423, + -0.028265058994293213, + -0.0018292729509994388, + -0.00938249472528696, + 0.032137200236320496, + 0.0007563999388366938, + -0.010072268545627594, + -0.008786780759692192, + 0.006866387091577053, + -0.018184952437877655, + -0.013654391281306744, + -0.01006443053483963, + 0.0027532174717634916, + 0.004597187507897615, + 0.020489424467086792, + -1.9488688849378377e-5, + -0.00021665665553882718, + 0.008998416364192963, + 0.01095800194889307, + -0.0009998783934861422, + 0.00021726902923546731, + 0.017181644216179848, + 0.00516938604414463, + -0.021320289000868797, + -0.013999277725815773, + 0.02099107950925827, + 0.021978709846735, + -0.008049977011978626, + -0.0017734247958287597, + -0.015919672325253487, + 0.01460283063352108, + -0.013568169437348843, + -0.005188982002437115, + 0.023326903581619263, + -0.0007333748508244753, + 0.00334893143735826, + 0.011765350587666035, + -0.034112460911273956, + 0.0029060652013868093, + -0.016711344942450523, + -0.02588220313191414, + -0.007317091803997755, + -0.0077246855944395065, + -0.0118594104424119, + 0.017385441809892654, + -0.010542569682002068, + 0.0022535230964422226, + -0.0037173335440456867, + -0.013944409787654877, + 0.000800000736489892, + -0.006423520855605602, + -0.0059061902575194836, + -0.01976829767227173, + -0.002512188395485282, + 0.027057955041527748, + 0.023452317342162132, + 0.009547100402414799, + 0.015080968849360943, + -0.00979008898139, + -0.009703867137432098, + -0.004514884669333696, + 0.01358384545892477, + 0.00818322878330946, + -0.009500069543719292, + 0.025161076337099075, + -0.02179059013724327, + 0.024236151948571205, + -0.0013962045777589083, + 0.005635767709463835, + 0.0015960823511704803, + -0.009970370680093765, + 0.017636269330978394, + -0.005188982002437115, + 0.004381632898002863, + -0.01547288615256548, + 0.006309865042567253, + 0.006995719857513905, + 0.02964460849761963, + -0.01577858068048954, + 0.014007116667926311, + 0.007411152124404907, + -0.020113185048103333, + -0.006109987385571003, + 0.011506685055792332, + 0.003201962448656559, + 0.002619965700432658, + -0.006400005891919136, + 0.016099954023957253, + -0.0020516859367489815, + 0.02668171375989914, + -2.4510127332177944e-5, + 0.017557885497808456, + 0.0014873252948746085, + -0.0013256595702841878, + -0.009515746496617794, + 0.02864130027592182, + -0.005843483842909336, + -0.0010366206988692284, + 0.0030863469000905752, + -0.005816049408167601, + -0.015418018214404583, + -0.020144537091255188, + 0.005917947739362717, + -0.031071186065673828, + -0.01555910799652338, + 0.03928576782345772, + -0.013536815531551838, + 0.008927871473133564, + 0.012525670230388641, + -0.010291742160916328, + -0.007963755168020725, + 0.0008132279617711902, + 0.015708036720752716, + 0.008355672471225262, + -0.0033606889192014933, + 0.0036311117000877857, + 0.031008480116724968, + -0.007246546912938356, + -0.012204297818243504, + -0.015888318419456482, + 0.01790277287364006, + -0.021100815385580063, + -0.0013648512540385127, + -0.0026160464622080326, + 0.001293326378799975, + 0.012204297818243504, + -0.00975089706480503, + 0.029989494010806084, + -0.04094749689102173, + -0.005236011929810047, + -0.003981877584010363, + -0.009131668135523796, + -0.010495539754629135, + -0.02088134177029133, + 0.006160936318337917, + 0.01760491542518139, + 0.006842872127890587, + -0.0027395004872232676, + 0.006188370753079653, + -0.014007116667926311, + 0.02384423464536667, + 0.015943186357617378, + 0.017024878412485123, + 0.019376380369067192, + 0.018937433138489723, + -0.016099954023957253, + 0.019235290586948395, + 0.01062095258384943, + -0.006709620356559753, + -0.012423771433532238, + -0.002833560574799776, + -0.009648998267948627, + -0.006501904223114252, + 0.02284092642366886, + -0.008724073879420757, + -0.0007279859855771065, + 0.008535954169929028, + -0.001212003524415195, + -0.005953220184892416, + 0.0035977987572550774, + 0.009358979761600494, + 0.012361064553260803, + -0.006094310432672501, + 0.027700699865818024, + -0.013905217871069908, + 0.00047960851225070655, + 0.017260028049349785, + 0.0009499090374447405, + 0.010910971090197563, + 0.01983100362122059, + -0.0021124330814927816, + 0.0008514398359693587, + 0.011248020455241203, + 0.018310366198420525, + 0.010628791525959969, + -0.014814465306699276, + 0.004177836235612631, + 0.02044239453971386, + 0.006329461000859737, + 0.0050635687075555325, + -0.008089168928563595, + -0.01444606389850378, + 0.005326153244823217, + 0.007799149956554174, + 0.024189122021198273, + -0.01294110156595707, + -0.009068961255252361, + 0.02495727874338627, + 0.009837118908762932, + 0.003954443149268627, + -0.01870228350162506, + 0.0016372335376217961, + 0.0015157392481341958, + 0.0010091864969581366, + 0.011718320660293102, + 0.024173445999622345, + 0.00342731480486691, + -0.0027806516736745834, + -0.0006363753345794976, + -0.024486979469656944, + -0.0019684035796672106, + -0.004906801972538233, + -0.011867249384522438, + 0.016632961109280586, + 0.020536454394459724, + 0.01790277287364006, + 0.004032826516777277, + 0.01882769726216793, + -0.011569391936063766, + 0.004742196761071682, + 0.012988131493330002, + -0.0017969397595152259, + -0.016899464651942253, + -0.013285988941788673, + -0.010205520316958427, + 0.005780776962637901, + -0.0007941219955682755, + -0.01111476868391037, + -0.012329711578786373, + -0.017557885497808456, + 0.012047531083226204, + 0.022245213389396667, + 0.0018096771091222763, + 0.02376585081219673, + -0.009241404943168163, + -0.00601984653621912, + -0.005279122851788998, + 0.0018047781195491552, + 0.017307057976722717, + 0.015856964513659477, + -0.0245183315128088, + -0.001718556392006576, + 0.0015431734500452876, + -0.015794258564710617, + 0.00023221086303237826, + 0.02204141579568386, + 0.007136810105293989, + -0.01410901453346014, + 0.008042138069868088, + -0.012408094480633736, + 0.005769019480794668, + -0.019564500078558922, + -0.002796328393742442, + -0.009531423449516296, + 0.002974650589749217, + -0.026383858174085617, + -0.0020791201386600733, + 0.008716235868632793, + 0.0007319051655940711, + 0.0027179450262337923, + -0.006599883548915386, + -0.008974901400506496, + -0.011012869887053967, + -0.004879367537796497, + 0.006509742699563503, + -0.0016156781930476427, + -0.004475693218410015, + 0.01838875003159046, + -0.011624260805547237, + 0.03458276391029358, + -0.012721627950668335, + -0.020818635821342468, + 0.0024181283079087734, + 0.029425134882330894, + 0.007791311480104923, + -0.006423520855605602, + -0.00609822990372777, + -0.03599366545677185, + -0.013011647388339043, + 0.014587153680622578, + 0.007168163545429707, + 0.003554687835276127, + 0.003364608157426119, + 0.002096756361424923, + 0.00798335112631321, + -0.0002150645013898611, + -0.018435779958963394, + -0.016585931181907654, + 0.004021069034934044, + -0.0070858607068657875, + -0.009688190184533596, + 0.028453180566430092, + -0.016021570190787315, + 0.01117747463285923, + -0.010981516912579536, + 0.01722867414355278, + -0.0015363149577751756, + 0.026509271934628487, + -0.010158490389585495, + 0.009092476218938828, + 0.009045446291565895, + -0.004597187507897615, + 0.011969147250056267, + 0.0002390694135101512, + -0.005584818311035633, + -0.00026821825304068625, + 0.010887456126511097, + 0.016413487493991852, + -0.01540234126150608, + 0.004252300132066011, + -0.0020634434185922146, + -0.009625483304262161, + -0.019548824056982994, + 0.004863691050559282, + -0.009437363594770432, + -0.016821080818772316, + 0.009241404943168163, + -0.008410540409386158, + -0.007046669255942106, + 0.010981516912579536, + -0.004428662825375795, + 0.0037192930467426777, + -0.0012668719282373786, + 0.009570615366101265, + 0.0026062484830617905, + 0.009280596859753132, + 0.010550407692790031, + -0.005545626860111952, + -0.005298718810081482, + -0.01678972691297531, + 0.013662229292094707, + -0.020348334684967995, + 0.009570615366101265, + 0.0078109074383974075, + -0.002686591586098075, + 0.005369264166802168, + -0.011773188598453999, + 0.014939879067242146, + -0.006160936318337917, + -0.02285660430788994, + -0.038752760738134384, + -0.010472023859620094, + 0.010150652378797531, + -0.007575757335871458, + -0.011208828538656235, + -0.006286350078880787, + 0.008551630191504955, + -0.009656837210059166, + -0.013999277725815773, + 0.00046858584391884506, + 0.0063608139753341675, + -0.008653528988361359, + 0.025176752358675003, + 0.00898273941129446, + 0.0024396837688982487, + -0.00294917612336576, + -0.013207605108618736, + 0.005306557286530733, + -0.015127998776733875, + -0.011052061803638935, + 0.012572700157761574, + 0.0027257832698524, + -0.004895044490695, + -1.1183415153936949e-5, + 0.003601717995479703, + -0.00885732565075159, + -0.01884337328374386, + -0.012533508241176605, + 0.006145259831100702, + -0.02241765707731247, + -0.006525419186800718, + -0.026211414486169815, + -0.036338552832603455, + 0.022746866568922997, + 0.0022280486300587654, + 0.002143786521628499, + -0.013497624546289444, + -0.02487889677286148, + -0.013975762762129307, + -0.011882925406098366, + -0.012517831288278103, + 0.015457209199666977, + -0.00745818205177784, + 0.009186536073684692, + -0.012243489734828472, + 0.006917336490005255, + 0.011240181513130665, + 0.00039265191298909485, + -0.0008181268931366503, + 0.020646192133426666, + -0.0007270061760209501, + 0.0032960225362330675, + 0.006180532276630402, + -0.02624276839196682, + -0.01318409014493227, + -0.004393390379846096, + 0.00645487429574132, + -0.02519243024289608, + 0.0037722019478678703, + -0.0023044724948704243, + 0.014900687150657177, + 0.0014001238159835339, + -0.001537294709123671, + 0.007305334322154522, + -0.020708898082375526, + 0.007822664454579353, + 0.02346799522638321, + -0.0027061873115599155, + 0.010699336417019367, + 0.024283181875944138, + 0.008238096721470356, + -0.0011071657063439488, + 0.0062589156441390514, + -0.017087584361433983, + 0.007078022230416536, + 0.014955556020140648, + 0.01222781278192997, + -0.0019223532872274518, + 0.0214927326887846, + -0.02531784400343895, + -0.023875588551163673, + 0.0002917332749348134, + 0.002324068220332265, + 0.01667999103665352, + 0.0007284758612513542, + -0.017934124916791916, + 0.00757967634126544, + -0.012964616529643536, + 0.008018623106181622, + -0.002521986374631524, + -0.014014954678714275, + 0.022151153534650803, + 0.0025748952757567167, + 0.02130461297929287, + -0.004855852574110031, + 0.015535593032836914, + -0.0014471538597717881, + 0.007375879213213921, + 0.009037607349455357, + 0.019250966608524323, + -0.0007578696240670979, + -0.02353070117533207, + 0.004738277290016413, + 0.008316480554640293, + 0.003237235127016902, + 0.006827195640653372, + -0.002876671263948083, + -0.015206382609903812, + 0.03458276391029358, + 0.007646302226930857, + -0.006580287590622902, + -0.0013383968034759164, + -0.02864130027592182, + -0.0015343553386628628, + -0.016962170600891113, + -0.017620591446757317, + -0.008049977011978626, + 0.008535954169929028, + 0.007148567587137222, + 0.014540123753249645, + -0.01022119726985693, + -0.024863218888640404, + -0.0020124942529946566, + -0.024283181875944138, + 0.01630374975502491, + 0.009155183099210262, + 0.019799651578068733, + 0.004671651404350996, + 0.014101176522672176, + 0.006313784047961235, + -0.004644217435270548, + -0.01987803354859352, + 0.003327375976368785, + 0.02975434437394142, + 0.01798115484416485, + 0.005847402848303318, + -0.010111460462212563, + -0.014148206450045109, + -0.018059538677334785, + 0.007371960207819939, + 0.010001723654568195, + -0.01697784848511219, + -0.016194013878703117, + -0.01299597043544054, + 0.01383467298001051, + -0.020034801214933395, + 0.014563638716936111, + 0.01534747239202261, + -0.011506685055792332, + -0.0033352142199873924, + 0.0019801610615104437, + -0.0011532159987837076, + 0.0032235179096460342, + 0.0063568949699401855, + -0.02353070117533207, + -0.00013190459867473692, + 0.0013217403320595622, + 0.0013854268472641706, + 0.009484393522143364, + -0.016805404797196388, + 0.009515746496617794, + 0.001416780287399888, + -0.009163021109998226, + -0.03555471822619438, + 0.008810295723378658, + -0.001551011810079217, + 0.004761792719364166, + 0.003554687835276127, + -0.013137060217559338, + -0.009672513231635094, + -0.0015862843720242381, + -0.005674959160387516, + 0.0045227231457829475, + 0.004777469206601381, + -0.016585931181907654, + 0.0029080247040838003, + 0.0017401118529960513, + 0.017181644216179848, + 0.016382133588194847, + 0.013897379860281944, + -0.004867610055953264, + 0.01950179412961006, + 0.012572700157761574, + 0.0022300081327557564, + 0.0019850600510835648, + -0.008653528988361359, + 0.015723712742328644, + -0.013670067302882671, + -0.01779303513467312, + 0.0012384579749777913, + 0.002649359405040741, + -0.0003539501049090177, + -0.007583595346659422, + -0.003999513573944569, + 0.0037369292695075274, + -0.00592970522120595, + -0.014728243462741375, + 0.019925063475966454, + -0.020379688590765, + 0.00328818429261446, + 0.015331796370446682, + -0.0039720796048641205, + -0.0002694430004339665, + 0.006329461000859737, + -0.008465409278869629, + -0.009484393522143364, + 0.0006873245583847165, + -0.003727131523191929, + -0.009743058122694492, + -0.025035662576556206, + -0.00950790848582983, + -0.007987270131707191, + 0.0016215569339692593, + -0.00710153765976429, + -0.0031549325212836266, + -0.0005952240899205208, + 0.0037075355648994446, + -0.014806627295911312, + 0.015065292827785015, + 0.006678266916424036, + 0.010056592524051666, + -0.005561303347349167, + 0.0026669956278055906, + -0.02031698077917099, + -0.008081329986453056, + 0.024690775200724602, + -0.008684882894158363, + 0.0025690165348351, + 0.029001863673329353, + -0.00030030644848011434, + 0.007152486592531204, + 0.026289798319339752, + -0.007618867792189121, + -0.01355249248445034, + -0.015167190693318844, + 0.008065653033554554, + -0.008794618770480156, + -0.009601968340575695, + -0.008387025445699692, + 0.007415071129798889, + 0.0033214972354471684, + -0.02346799522638321, + -0.004463935736566782, + -0.01175751257687807, + -0.01878066547214985, + -0.01343491766601801, + -0.0035977987572550774, + -0.009225727990269661, + -0.0024063708260655403, + -0.008880840614438057, + 0.0010758123826235533, + 0.010229035280644894, + 0.004095533397048712, + -0.0030687106773257256, + 0.006862468086183071, + 0.011804542504251003, + -0.006196209229528904, + 0.006403924897313118, + -0.007877533324062824, + -0.02489457279443741, + 0.020113185048103333, + 0.015088807791471481, + 0.01939205639064312, + 0.0041582402773201466, + 0.007469939533621073, + -0.024502655491232872, + -0.0009244343964383006, + -0.007830503396689892, + -0.0069839623756706715, + 0.017181644216179848, + -0.003623273456469178, + 0.011538038961589336, + -0.012572700157761574, + -0.012298357672989368, + 0.0033038610126823187, + -0.005737666040658951, + -0.004017150029540062, + 0.006094310432672501, + 0.01596670225262642, + 0.016648637130856514, + -0.00782658439129591, + -0.0025572588201612234, + -0.011365595273673534, + -0.00913950614631176, + -0.008144036866724491, + 0.0017116977833211422, + -0.005118437111377716, + 0.0007799149607308209, + 0.001551011810079217, + -0.0013197807129472494, + -0.00024886734900064766, + 0.02876671403646469, + -0.009719543159008026, + 0.011553715914487839, + 0.013771966099739075, + -0.0013383968034759164, + -0.01661728322505951, + -0.028547240421175957, + -0.01876498945057392, + -0.012157267890870571, + -0.006015927065163851, + 0.012886233627796173, + -0.012745142914354801, + 0.024424271658062935, + -0.015480724163353443, + 0.004252300132066011, + -0.020144537091255188, + -0.028876449912786484, + -0.003262709593400359, + 0.004479612223803997, + 0.01878066547214985, + -0.00757967634126544, + 0.01987803354859352, + 0.03113389201462269, + 0.01575506664812565, + -0.018373072147369385, + 0.002282917033880949, + -0.02279389649629593, + 0.014900687150657177, + -0.030271675437688828, + 0.012572700157761574, + 0.008833810687065125, + -0.015488563105463982, + 0.0069839623756706715, + 0.00873975083231926, + 0.015566946007311344, + 0.008520277217030525, + 0.0011061859549954534, + -0.0012276802444830537, + 0.0016940615605562925, + -0.026038970798254013, + -0.003870181040838361, + 0.0048049031756818295, + -0.02296634018421173, + -0.011334242299199104, + 0.020081831142306328, + 0.0029687718488276005, + -0.0072622234001755714, + -0.015135837718844414, + 0.007979432120919228, + 0.018921757116913795, + -0.005004781298339367, + -0.0109893549233675, + -0.0008827932178974152, + 0.0010660144034773111, + 0.01735408790409565, + 0.007775634992867708, + -0.022025739774107933, + 0.014148206450045109, + 0.01920393668115139, + 0.007477778010070324, + -0.024189122021198273, + 0.008434055373072624, + -0.025019986554980278, + 0.018435779958963394, + 0.010252551175653934, + 0.02531784400343895, + 0.010950163006782532, + 0.014673375524580479, + 0.014610668644309044, + 0.03273291513323784, + 0.014563638716936111, + -0.021931679919362068, + 0.004452177789062262, + 0.0042444621212780476, + -0.018670929595828056, + -0.024722129106521606, + -0.00036276824539527297, + -0.019156906753778458, + -0.0009489292278885841, + 0.00019657090888358653, + 0.0028884289786219597, + -0.016131306067109108, + -0.005377102177590132, + -0.0034998194314539433, + -0.016335103660821915, + 0.010605276562273502, + 0.0034194765612483025, + 0.025051340460777283, + -0.012854879721999168, + -0.008379187434911728, + -0.003870181040838361, + -0.0011786905815824866, + -0.014399033039808273, + -0.009523585438728333, + 0.005620090756565332, + -0.002312310738489032, + 0.010683659464120865, + -0.0024063708260655403, + -0.014375518076121807, + -0.007513050455600023, + -0.00042596488492563367, + -0.002833560574799776, + 0.012376741506159306, + 0.018984463065862656, + 0.002118311822414398, + 0.0006109007517807186, + 0.011404787190258503, + 0.028139647096395493, + 0.003625232959166169, + 0.007121133152395487, + 0.006599883548915386, + -0.014885010197758675, + -0.00472651980817318, + 0.0003052054380532354, + -0.010268227197229862, + 0.011130444705486298, + -0.005236011929810047, + 0.0024651584681123495, + -0.00845757033675909, + 0.0413864441215992, + 0.0005893452907912433, + 0.0009807725436985493, + -0.01093448605388403, + 0.0046128639951348305, + 0.005028296262025833, + 0.02273119054734707, + -0.013348695822060108, + 0.0014461739920079708, + 0.0006858548731543124, + -0.0107463663443923, + -0.02075592800974846, + 0.0008945507579483092, + -0.010519054718315601, + -0.009100314229726791, + 0.010103622451424599, + 0.00033704869565553963, + -0.0001867729879450053, + -0.006243239156901836, + -0.0028433583211153746, + -0.016382133588194847, + 0.004432582296431065, + 0.02605464681982994, + 0.0021810184698551893, + -0.009029769338667393, + 0.007740362081676722, + 0.0025748952757567167, + 0.006995719857513905, + -0.009343302808701992, + -0.007418990135192871, + 0.015888318419456482, + -0.004220947157591581, + -0.0005158608546480536, + -0.0014755678130313754, + 0.0011845693225041032, + -0.004585430026054382, + -0.006055118981748819, + 0.002310351235792041, + -0.001049357932060957, + 0.0032215584069490433, + -0.006987881381064653, + -0.020520778372883797, + -0.004275815095752478, + 0.001179670449346304, + 0.00222412939183414, + -0.003537051612511277, + -0.0021888569463044405, + 0.015418018214404583, + 0.004338521976023912, + -0.01796547882258892, + -0.003399880602955818, + -0.016194013878703117, + -0.020599162206053734, + -0.0020007367711514235, + 0.006674347911030054, + -0.012400256469845772, + -0.005122356116771698, + 0.018482809886336327, + 0.011741835623979568, + 0.0042327046394348145, + 0.007642383221536875, + 0.011263696476817131, + 0.012737304903566837, + 0.01914123073220253, + 0.0208656657487154, + -0.002463198732584715, + -0.006321622524410486, + 0.009844956919550896, + -0.02186897210776806, + 0.012807849794626236, + 0.01395224779844284, + 0.004761792719364166, + 0.0005447647417895496, + 0.005992412101477385, + -0.010111460462212563, + 0.020081831142306328, + -0.0028022071346640587, + 0.013568169437348843, + 0.00029908173019066453, + -0.02266848459839821, + 0.006407844368368387, + 0.00935114175081253, + -0.011969147250056267, + 0.009311949834227562, + 0.0033567696809768677, + -0.00022596468625124544, + 0.0054437280632555485, + -0.012251327745616436, + 0.01939205639064312, + 0.003952483646571636, + -0.01111476868391037, + -0.016068600118160248, + -0.00456975307315588, + -0.009648998267948627, + 0.012212135829031467, + -0.022464687004685402, + 0.0111461216583848, + -0.0030197210144251585, + 0.002570976037532091, + -0.005647525191307068, + -0.011843734420835972, + 0.0020810796413570642, + -0.01884337328374386, + 0.00236325990408659, + 0.02538054995238781, + 0.02359340898692608, + 0.008622176013886929, + -0.000627067347522825, + -0.017620591446757317, + -0.010526892729103565, + -0.030898742377758026, + -0.017918448895215988, + -0.02044239453971386, + 0.006047280505299568, + -0.009727382101118565, + -0.008959224447607994, + -0.00757967634126544, + 0.02174356020987034, + 0.008551630191504955, + 0.029299721121788025, + -0.008006866089999676, + -0.028374796733260155, + 0.0007990209269337356, + -0.004679489880800247, + 0.013528977520763874, + -0.0042640576139092445, + -0.006188370753079653, + 0.003942685667425394, + -0.001161054358817637, + -0.011224505491554737, + -0.01278433483093977, + 0.008198904804885387, + -0.0023397449404001236, + -0.0007990209269337356, + -0.007881452329456806, + 0.008441894315183163, + 0.004283653572201729, + 0.007873614318668842, + 0.028609946370124817, + -0.0009308030712418258, + 0.019219612702727318, + -0.006262835115194321, + -0.012933263555169106, + -0.002159463008865714, + 0.02075592800974846, + -0.010119299404323101, + -0.0007201476255431771, + 0.02685415744781494, + 0.00035688947536982596, + 0.0018086973577737808, + 0.013905217871069908, + -0.01198482420295477, + -0.024095062166452408, + 0.012643245048820972, + -0.015762904658913612, + 0.01697784848511219, + -0.021320289000868797, + 0.006772327236831188, + 0.020975401625037193, + -0.014367680065333843, + 0.006940851453691721, + -0.006827195640653372, + -0.005200739484280348, + -0.00019546864496078342, + 0.0051654670387506485, + -0.005302638281136751, + 0.02785746566951275, + -0.004087694920599461, + -0.006282430607825518, + -0.012768658809363842, + -9.693823812995106e-5, + -0.013795481063425541, + 0.00750129297375679, + -0.01586480252444744, + -0.00877110380679369, + 0.0033038610126823187, + -0.017322733998298645, + 0.0035331323742866516, + -0.019125552847981453, + 0.036275845021009445, + -0.011937794275581837, + -0.006227562204003334, + 0.0041582402773201466, + 0.019674237817525864, + 0.00017379072960466146, + -0.023170137777924538, + -0.0050792451947927475, + 0.015794258564710617, + 0.001560809789225459, + 0.007093699183315039, + -0.024690775200724602, + 0.026462242007255554, + 0.013811158016324043, + -0.004953831899911165, + -0.012455124408006668, + 0.010926648043096066, + -0.01624104380607605, + 0.002837479580193758, + -0.006991800852119923, + -0.01884337328374386, + 0.006940851453691721, + 0.007775634992867708, + -0.018670929595828056, + -0.003778080688789487, + -0.036401256918907166, + -0.006662590429186821, + -0.00046197226038202643, + 0.01030741911381483, + 0.0060080885887146, + 0.01605292409658432, + 0.011122606694698334, + -0.001713657402433455, + 0.0010836507426574826, + -0.006925174966454506, + 0.026446564123034477, + 0.06004169583320618, + 0.0331091545522213, + 0.01596670225262642, + -0.004267977084964514, + 0.0011140243150293827, + -0.038188401609659195, + -0.008418378420174122, + -0.01889040321111679, + -0.026775775477290154, + -0.014226590283215046, + 0.006768407765775919, + -0.009758735075592995, + 0.010268227197229862, + 0.014704728499054909, + -0.006372571457177401, + 0.007991189137101173, + -0.0069800433702766895, + -0.018545515835285187, + -0.01247080136090517, + 0.008794618770480156, + -0.0001141458487836644, + 0.01722867414355278, + -0.008049977011978626, + -0.005784695968031883, + 0.02179059013724327, + -0.0005467243026942015, + -0.0009023890597745776, + -0.022809574380517006, + 0.0054162940941751, + 0.010848265141248703, + 0.026462242007255554, + -0.02353070117533207, + -0.027590962126851082, + 0.009711705148220062, + -0.004844095092266798, + 0.01798115484416485, + -0.009029769338667393, + 0.01592751033604145, + 0.003329335479065776, + -0.014869334176182747, + -0.03649531677365303, + -0.003537051612511277, + 0.010809073224663734, + -0.014579315669834614, + 0.0060668764635920525, + 0.004953831899911165, + -0.00034856123966164887, + 0.009986046701669693, + -0.017009200528264046, + 0.0002422537509119138, + -0.006204047240316868, + 0.012948940508067608, + -0.02044239453971386, + -0.00350569817237556, + -0.005506434943526983, + 0.0006912437384016812, + 0.01686811074614525, + -0.015551269985735416, + 0.006164855789393187, + -0.007567918859422207, + -0.0058905137702822685, + -0.006294188089668751, + 0.01573939062654972, + 0.02056780830025673, + -0.005087083671241999, + 0.016821080818772316, + -0.005286961328238249, + 0.010424993932247162, + 0.004467854741960764, + -0.005870917811989784, + 0.01691514067351818, + -0.01653890125453472, + -0.02191600389778614, + -0.017087584361433983, + -0.015856964513659477, + -0.018012508749961853, + -0.02061483822762966, + -0.026352504268288612, + -0.016146983951330185, + 0.01691514067351818, + 0.0017469703452661633, + -0.009656837210059166, + 0.0003267608699388802, + 0.0016538901254534721, + -0.010526892729103565, + 0.007242627441883087, + -0.008559469133615494, + 0.01077771931886673, + 0.017244352027773857, + 0.018420102074742317, + -0.018514161929488182, + 0.0016333144158124924, + -0.013176252134144306, + -0.00802646204829216, + 0.01062095258384943, + -0.017056230455636978, + -0.005330072250217199, + -0.004898963496088982, + 0.005710231605917215, + 0.017385441809892654, + 0.008002947084605694, + 0.017212998121976852, + 0.006772327236831188, + 0.01642916351556778, + -0.01287839561700821, + -0.028986187651753426, + -0.0013276190729811788, + -0.0001526027190266177, + -0.008394863456487656, + 0.015308281406760216, + -0.02649359405040741, + 0.011099091731011868, + -0.007971593178808689, + 0.0060080885887146, + 0.020834311842918396, + 0.01895310916006565, + -0.001267851796001196, + 0.015339634381234646, + 0.01151452399790287, + 0.01771465130150318, + -0.009570615366101265, + 0.00614134082570672, + 0.03715373948216438, + 0.018796343356370926, + 0.002921741921454668, + -0.001664667739532888, + 0.015363149344921112, + 0.025364873930811882, + -0.0054437280632555485, + -0.012078884057700634, + 0.009178698062896729, + -0.004381632898002863, + 0.0012345387367531657, + 0.008441894315183163, + -0.0025827335193753242, + 0.012964616529643536, + 0.011122606694698334, + 0.006059037987142801, + 0.022684160619974136, + -0.01447741687297821, + -0.014516608789563179, + 0.05458620935678482, + 0.014955556020140648, + 0.001959585351869464, + -0.02384423464536667, + 0.0006500924355350435, + -0.033610809594392776, + -0.0024886734317988157, + 0.006317703519016504, + 0.002059524180367589, + -0.007195597514510155, + -0.005557384341955185, + -0.0025043501518666744, + 0.004655974917113781, + 0.00011341100616846234, + 0.0027061873115599155, + -0.009398171678185463, + 0.02191600389778614, + -0.005988493096083403, + 0.0067057013511657715, + -0.01716596819460392, + 0.011749673634767532, + 0.005902271252125502, + 0.013176252134144306, + 0.007340606767684221, + -0.006693943869322538, + 0.0012276802444830537, + 0.015355311334133148, + -0.01376412808895111, + -0.005827806890010834, + -0.014038469642400742, + 0.011279373429715633, + 0.0033920423593372107, + 0.01182805746793747, + 0.006521500181406736, + 0.02067754417657852, + -0.007058426737785339, + -0.01339572574943304, + -0.012823526747524738, + -0.02075592800974846, + 0.024596715345978737, + 0.02265280671417713, + 0.0061726938001811504, + -0.012251327745616436, + -0.0024573199916630983, + -0.0011953470529988408, + -0.006838953122496605, + 0.017322733998298645, + 0.011585068888962269, + 0.011577230878174305, + 0.008543792180716991, + 0.009170860052108765, + -0.008504600264132023, + -0.011585068888962269, + -0.020348334684967995, + 0.01722867414355278, + -0.0014197196578606963, + 0.008473247289657593, + -0.04154321178793907, + 0.006599883548915386, + 0.004032826516777277, + 0.0009837119141593575, + -0.0008548691403120756, + 0.0072622234001755714 + ], + "5a2f200d-58d4-46f9-8e02-ab06be757e72": [ + -0.01779230125248432, + -0.01375743467360735, + -0.010816358029842377, + 0.009714466519653797, + -0.03210068121552467, + -0.029005663469433784, + 0.016423039138317108, + 0.0375291146337986, + -0.015539905987679958, + 0.041158873587846756, + -0.004427819978445768, + 0.01630960963666439, + -0.016115156933665276, + -0.007044811267405748, + -0.006271056830883026, + -0.007782106287777424, + -0.01923448219895363, + 0.018910396844148636, + -0.008636881597340107, + -0.02433883026242256, + 0.07441005855798721, + -0.02826026640832424, + -0.01353057473897934, + 0.022410521283745766, + 0.022151252254843712, + -0.02791997604072094, + 0.012979629449546337, + 0.006376384757459164, + -0.02829267457127571, + -0.005015225149691105, + 0.01332802139222622, + 0.014057214371860027, + 0.006813900079578161, + -0.005375770386308432, + 0.022086435928940773, + -0.03216549754142761, + -0.021697532385587692, + 0.028519535437226295, + 0.011002707295119762, + -0.015928808599710464, + -0.02698012813925743, + 0.03658926859498024, + 0.01134299673140049, + 0.012242334894835949, + -0.03824210539460182, + 0.008539656177163124, + -0.013781741261482239, + -0.009528117254376411, + 0.006846308708190918, + 0.011472631245851517, + 0.011731899343430996, + -0.014227358624339104, + 0.024922184646129608, + -0.007729442324489355, + 0.007656523026525974, + -0.017662666738033295, + 0.013838456012308598, + 0.06416895240545273, + 0.019850244745612144, + -0.06426618248224258, + 0.019040031358599663, + 0.02004469558596611, + 0.030431639403104782, + 0.009592934511601925, + 0.013449553400278091, + 0.010176288895308971, + -0.012461092323064804, + -0.009657751768827438, + -0.03843655437231064, + 0.012882404029369354, + 0.03581146150827408, + 0.04841839149594307, + -0.03704298660159111, + 0.009981837123632431, + -0.004196908790618181, + -0.006846308708190918, + 0.031533531844615936, + -0.029848286882042885, + 0.008312796242535114, + -0.01305254828184843, + -0.014146337285637856, + 0.0023151866625994444, + 0.03132287412881851, + 0.019509954378008842, + 0.059923432767391205, + 0.03273264691233635, + -0.033316001296043396, + -0.06439581513404846, + -0.026445386931300163, + -0.03927917778491974, + 0.010630008764564991, + 0.010500374250113964, + -0.007697033695876598, + -0.004520994611084461, + -0.036848533898591995, + 0.0032854180317372084, + 0.026331957429647446, + -0.004265776835381985, + 0.015215819701552391, + -0.013141672126948833, + -0.013838456012308598, + 0.023431390523910522, + -0.030593683943152428, + 0.02618611790239811, + 0.007782106287777424, + -0.0157343577593565, + 0.012007372453808784, + 0.0006861500442028046, + -0.018083978444337845, + 0.03451512008905411, + 0.01740339770913124, + -0.03056127391755581, + -0.004087530076503754, + -0.011197158135473728, + -0.041580185294151306, + -0.020303964614868164, + -0.00040105596417561173, + -0.0010755591792985797, + 0.0054284343495965, + -0.03863100707530975, + 0.048612844198942184, + 0.003186166752129793, + -0.007174445316195488, + -0.012793280184268951, + 0.0032165497541427612, + 0.01238817349076271, + -0.013481962494552135, + -0.0069516366347670555, + 0.036524448543787, + 0.03278126195073128, + -0.025521742179989815, + -0.04754336178302765, + -0.006781491916626692, + -0.033283594995737076, + 0.0037816741969436407, + 0.00128317647613585, + -0.008089987561106682, + 0.07240072637796402, + 0.0018077901331707835, + 0.03138769418001175, + -0.04744613543152809, + -0.04579329863190651, + -0.017743688076734543, + -0.028114428743720055, + 7.583097612950951e-5, + 0.00915541872382164, + -0.019364116713404655, + 0.04874247685074806, + -0.014097725041210651, + 0.013652106747031212, + -0.0647847130894661, + 0.015248228795826435, + 0.009276950731873512, + 0.029783468693494797, + -0.0016001728363335133, + 0.009463299997150898, + -0.010548987425863743, + 0.03833932802081108, + -0.0021470673382282257, + 0.019931266084313393, + 0.00535551505163312, + -0.0708451196551323, + -0.007372947875410318, + -0.025051819160580635, + 0.043330248445272446, + -0.0005327157559804618, + 0.03973289951682091, + 0.02571619488298893, + -0.027774138376116753, + 0.013911375775933266, + 0.04180704429745674, + 0.0002334429300390184, + 0.04187186434864998, + 0.015329250134527683, + 0.006907074712216854, + -0.02009330876171589, + 0.029913103207945824, + 0.057719651609659195, + -0.0020022415556013584, + -0.03892268240451813, + -0.027660708874464035, + -0.018375655636191368, + 0.018553901463747025, + -0.010143879801034927, + -0.029896898195147514, + 0.030642295256257057, + 0.0350012481212616, + 0.013198386877775192, + -0.006919228006154299, + -0.01327940821647644, + 0.011756205931305885, + -0.01698208600282669, + -0.003949793521314859, + 0.04287652671337128, + -0.0208711139857769, + -0.04180704429745674, + -0.008491043001413345, + 0.005460842978209257, + 0.02531108818948269, + 0.013174080289900303, + -0.0054486896842718124, + -0.027531074360013008, + -0.029362156987190247, + 0.03325118497014046, + -0.051237937062978745, + 0.0479646734893322, + -0.0417422279715538, + -0.007024555932730436, + 0.020190535113215446, + -0.04968232661485672, + 0.005894307512789965, + -0.04786744713783264, + 0.0041442448273301125, + 0.009860305115580559, + -0.02782275155186653, + -0.011804819107055664, + -0.010735336691141129, + 0.0350012481212616, + 0.0249059796333313, + -0.02351241186261177, + -0.023415187373757362, + 0.010443659499287605, + 0.005590477026998997, + -0.027547277510166168, + -0.062192030251026154, + -0.01568574458360672, + 0.017630258575081825, + 0.041191283613443375, + -0.039376404136419296, + -0.005071939900517464, + 0.045598845928907394, + -0.002021484076976776, + 0.02663983777165413, + -0.04025143384933472, + -4.361230458016507e-5, + 0.002961332444101572, + 0.01607464626431465, + 0.01131058856844902, + 0.00032180690323002636, + -0.031096015125513077, + 0.01327940821647644, + 0.02440364845097065, + 0.0021328884176909924, + -0.0008547758334316313, + -0.013587289489805698, + 0.02044980227947235, + -0.01151314191520214, + 0.052469462156295776, + 0.05869190767407417, + -0.004095632117241621, + -0.007988710887730122, + 0.027190783992409706, + 0.017565440386533737, + 0.01086497027426958, + -0.033769723027944565, + 0.05720111355185509, + 0.05392784997820854, + -0.020790092647075653, + -0.011189056560397148, + 0.014243563637137413, + -0.013319918885827065, + -0.025392109528183937, + 0.0024488719645887613, + -0.014997062273323536, + 0.03983012214303017, + -0.02040119096636772, + 0.033413227647542953, + -0.06099291518330574, + -0.0019799605943262577, + 0.028487127274274826, + 0.005946971010416746, + 0.0011879763333126903, + -0.0382096953690052, + 0.0035710185766220093, + -0.0009190865675918758, + -0.011756205931305885, + -0.00545679172500968, + 0.000501573143992573, + 0.019817836582660675, + 0.003196294419467449, + -0.0111080352216959, + -0.01071103010326624, + -0.003372516017407179, + 0.016722818836569786, + 0.0011383508099243045, + -0.011877737939357758, + -0.003516328986734152, + 0.017759893089532852, + -0.0318090058863163, + -0.014737794175744057, + -0.0014310405822470784, + -0.0024164633359760046, + 0.01545888464897871, + 0.0020883267279714346, + 0.020190535113215446, + 0.006781491916626692, + -0.022394316270947456, + 0.0034656906500458717, + -0.01741960272192955, + 0.029864490032196045, + -0.018456676974892616, + -0.016641797497868538, + 0.0064695593900978565, + -0.006979994010180235, + 0.02273460663855076, + -0.02484116330742836, + 0.027628298848867416, + 0.01546698622405529, + -0.046376653015613556, + 0.023269347846508026, + 0.023755475878715515, + -0.008491043001413345, + -0.01962338387966156, + -0.03364008665084839, + -0.0067774406634271145, + 0.01068672351539135, + -0.0037452145479619503, + 0.01086497027426958, + -0.007988710887730122, + -0.02218366041779518, + -0.0010461888741701841, + -0.0026210425421595573, + -0.092234767973423, + 0.035908687859773636, + 0.026461591944098473, + -0.030204780399799347, + 0.017095517367124557, + 0.011067524552345276, + -0.04456177353858948, + -0.019040031358599663, + -0.006040145643055439, + -0.023269347846508026, + -0.031630758196115494, + 0.005630987696349621, + -0.004832926671952009, + -0.04939064756035805, + -0.03869582340121269, + -0.05982620641589165, + -0.0187645573168993, + -0.012274743057787418, + -0.021940596401691437, + -0.01916966401040554, + 0.018035365268588066, + -0.012112700380384922, + 0.002319237682968378, + 0.0017844964750111103, + 0.022945262491703033, + -0.002756753470748663, + -0.02182716690003872, + -0.00457770936191082, + 0.0010502400109544396, + -0.017743688076734543, + 0.029718652367591858, + 0.02399853989481926, + 0.051626838743686676, + 0.016034135594964027, + -0.016690408810973167, + 0.004654679913073778, + 0.02049841545522213, + -0.005894307512789965, + -0.017144130542874336, + -0.03344563767313957, + -0.030318209901452065, + -0.023301756009459496, + 0.0066235000267624855, + 0.015620927326381207, + 0.012898608110845089, + -0.0006648818962275982, + 0.0035183546133339405, + 0.014421810396015644, + -0.027612095698714256, + 0.013117365539073944, + -0.026915311813354492, + -0.0366864912211895, + -0.02433883026242256, + -0.03445030376315117, + 0.027660708874464035, + -0.011448324657976627, + -0.03577905148267746, + 0.02172994054853916, + 0.004557454027235508, + -0.01006285846233368, + -0.016901064664125443, + -0.0031031197868287563, + 0.03710780292749405, + 0.024922184646129608, + -0.00631156750023365, + 0.004869386553764343, + 0.00565529428422451, + -0.004310338757932186, + -0.025456925854086876, + -0.004658730700612068, + -0.03539014980196953, + -0.00578087754547596, + -0.026785677298903465, + 0.00218757800757885, + 0.0009368099854327738, + -0.009617241099476814, + 0.027790341526269913, + -0.015612824819982052, + -0.008669290691614151, + 0.009649649262428284, + -0.03125805780291557, + -0.003329979721456766, + 0.02920011430978775, + -0.0175006240606308, + 0.0025805318728089333, + 0.0020245222840458155, + 0.026056485250592232, + 0.0022301143035292625, + -0.0018310837913304567, + 0.02002849243581295, + 0.024225400760769844, + 0.036427225917577744, + 0.04708964005112648, + -0.013830354437232018, + 0.012550216168165207, + 0.04355710744857788, + -0.032003454864025116, + -0.02438744343817234, + 0.027255600318312645, + 0.041158873587846756, + 0.021681329235434532, + 0.03788561001420021, + -0.026461591944098473, + 0.03830692172050476, + -0.005513506941497326, + 0.006060400977730751, + -0.029021868482232094, + -0.03957085311412811, + -0.022977670654654503, + 0.04349229112267494, + -0.0017956369556486607, + 0.003267188323661685, + -0.011926351115107536, + -0.028406105935573578, + 0.004747854545712471, + -0.008219622075557709, + 0.00532715767621994, + -0.014591955579817295, + -0.019736815243959427, + 0.006036094855517149, + -0.0012011423241347075, + -0.013562983833253384, + -0.045145127922296524, + -0.019688202068209648, + -0.038598597049713135, + 0.0037553422152996063, + 0.016820043325424194, + -0.012436785735189915, + -0.015142900869250298, + 0.02790377289056778, + -0.07019694894552231, + -0.001980973407626152, + -0.0069516366347670555, + 0.004772160667926073, + -0.009114908054471016, + 0.0016011855332180858, + 0.01174000184983015, + -0.034644752740859985, + -0.0375291146337986, + 0.011010808870196342, + 0.007178496569395065, + -0.004496688023209572, + 0.005205625202506781, + -0.030350618064403534, + -0.002276701619848609, + 0.0073000285774469376, + 0.019834039732813835, + 0.027612095698714256, + -0.016658000648021698, + 0.01620428077876568, + -0.0558723621070385, + 0.00813860073685646, + -0.009673955850303173, + -0.013117365539073944, + -0.016690408810973167, + 0.016196178272366524, + 0.008166957646608353, + -0.016998291015625, + -0.03276505693793297, + 0.002134914044290781, + -0.018926599994301796, + -0.002278727013617754, + -0.019380319863557816, + 0.014972755685448647, + -0.03587627783417702, + -0.02958901785314083, + 0.008555860258638859, + -0.0034494863357394934, + 0.0373670719563961, + 0.01955856755375862, + 0.0033866947051137686, + 0.004873437806963921, + -0.026899106800556183, + -0.0402190275490284, + -0.0025623019319027662, + -0.038144879043102264, + -0.03558460250496864, + -0.015726255252957344, + 0.027774138376116753, + -0.008450532332062721, + -0.03743188828229904, + 0.018100181594491005, + 0.001149491174146533, + 0.011480733752250671, + 0.00228885468095541, + -0.006368282716721296, + 0.0037128059193491936, + -0.010370739735662937, + -0.03973289951682091, + 0.007688931655138731, + -0.018229816108942032, + 0.0077213398180902, + -0.016487855464220047, + 0.03127426281571388, + -0.042001497000455856, + -0.0011616444680839777, + 0.0540250726044178, + -0.00029572812491096556, + -0.016520265489816666, + -0.004909897223114967, + -0.017533032223582268, + 0.005667447578161955, + -0.04504790157079697, + 0.013141672126948833, + -0.0069678411819040775, + -0.010873072780668736, + 0.02651020511984825, + -0.022054027765989304, + -0.010702927596867085, + 0.02179475873708725, + -0.008653086610138416, + 0.02172994054853916, + 0.016998291015625, + -0.002693961840122938, + 0.004367053974419832, + -0.0025926849339157343, + 0.013214590959250927, + 0.01918586902320385, + -0.026267139241099358, + 0.026866698637604713, + -0.003372516017407179, + -0.006886819377541542, + -0.008081885054707527, + 0.036880943924188614, + -0.0084991455078125, + 0.025602765381336212, + -0.009568627923727036, + 0.0041645001620054245, + -0.007263569161295891, + 0.018213612958788872, + -0.006165728904306889, + -0.005703906994313002, + 0.015539905987679958, + -0.04002457484602928, + 0.02260497212409973, + -0.021503081545233727, + -0.0252462700009346, + -0.013562983833253384, + -0.006510070059448481, + 0.0331539586186409, + 0.002614965895190835, + 0.0035305076744407415, + -0.029070479795336723, + 0.014032907783985138, + -0.03351045399904251, + 0.014284074306488037, + 0.008264183066785336, + 0.02741764485836029, + 0.03406139835715294, + 0.013514370657503605, + 0.035098474472761154, + 0.010338331572711468, + -0.006117116194218397, + 0.038955092430114746, + -0.00608065677806735, + 0.0006400691345334053, + -0.02487357147037983, + -0.011156647466123104, + 0.03255440294742584, + -0.0321492925286293, + -0.009698262438178062, + -0.009301257319748402, + -0.0008350268471986055, + 0.031598348170518875, + -0.010945991612970829, + -0.007684880401939154, + -0.0028053661808371544, + 0.028535738587379456, + 0.005371719133108854, + 0.024095766246318817, + 0.022491542622447014, + 0.007044811267405748, + -0.03539014980196953, + 0.01745201088488102, + 0.01740339770913124, + 0.021697532385587692, + 0.017257560044527054, + 0.015207718126475811, + 0.015807276591658592, + 0.016260996460914612, + -0.011237668804824352, + -0.02527867816388607, + -0.0222160704433918, + 0.03577905148267746, + 0.015985524281859398, + 0.014162542298436165, + -0.0014036959037184715, + 0.021211404353380203, + -0.0013601469108834863, + -0.009317461401224136, + 0.022767014801502228, + 0.02054702863097191, + 0.018861783668398857, + -0.0008973120711743832, + 0.014924143441021442, + 0.032862283289432526, + -0.01245298981666565, + 0.0007195713697001338, + 0.019056234508752823, + -0.04456177353858948, + 0.056909434497356415, + -0.056001994758844376, + 0.024970797821879387, + 0.015053777024149895, + -0.03344563767313957, + -0.02172994054853916, + -0.027174578979611397, + -0.0019212201004847884, + 0.0018513391260057688, + -0.022848036140203476, + 0.032521992921829224, + -0.02354482002556324, + 0.031954843550920486, + 0.02176235057413578, + -0.008223672397434711, + 0.017338581383228302, + -0.002337467623874545, + -0.022767014801502228, + -0.017144130542874336, + 0.009438993409276009, + 0.011577959172427654, + 0.013255102559924126, + -0.01267984975129366, + 0.027774138376116753, + -0.030642295256257057, + 0.009503810666501522, + 0.03934399411082268, + 0.03270024061203003, + -0.010921685956418514, + 0.029086684808135033, + 0.03697817027568817, + 0.023771680891513824, + 0.0164959579706192, + -0.01746821589767933, + 0.02012571692466736, + -0.013206489384174347, + 0.002440769923850894, + 0.016674205660820007, + 0.03129046782851219, + -0.02534349635243416, + 0.009884611703455448, + 0.005116501823067665, + 0.023674454540014267, + 0.01873214915394783, + 0.02576480805873871, + 0.008418124169111252, + 0.022410521283745766, + 0.02265358529984951, + 0.011383507400751114, + 0.00565529428422451, + 0.015523701906204224, + 0.0007727416814304888, + 0.010168186388909817, + -0.004367053974419832, + -0.009017682634294033, + -0.020773889496922493, + 0.00041751342359930277, + -0.007903638295829296, + -0.036038320511579514, + -0.022118844091892242, + -0.023463798686861992, + 0.030820542946457863, + 0.0009697249624878168, + -0.007887434214353561, + -0.01871594414114952, + 0.05480287969112396, + -0.01549129281193018, + -0.00631156750023365, + -0.0057970816269516945, + 0.019834039732813835, + -0.03211688622832298, + 0.04229317232966423, + 0.006955687887966633, + 0.011658980511128902, + 0.006789593957364559, + -0.0025906595401465893, + 0.022523950785398483, + -0.01834324561059475, + -0.032846078276634216, + -0.00827228557318449, + 0.00013634383503813297, + -0.03788561001420021, + 0.017289968207478523, + -0.002546097617596388, + -0.022945262491703033, + -0.011691388674080372, + 0.004326543305069208, + -0.0018634923035278916, + 0.01310116145759821, + 0.01706310734152794, + -0.007020504679530859, + 0.03824210539460182, + 0.032878488302230835, + 0.00467493524774909, + -0.023285552859306335, + 0.020384985953569412, + 0.0033846693113446236, + 0.019526159390807152, + -0.02132483385503292, + 0.02177855372428894, + -0.00847483891993761, + -0.045566439628601074, + -0.01878076232969761, + 0.022848036140203476, + 0.011229567229747772, + 0.0020093307830393314, + -0.001899951952509582, + -0.0032550350297242403, + 0.04083478823304176, + -0.025943053886294365, + -0.008268234319984913, + 0.016260996460914612, + 0.005740366876125336, + 0.007952251471579075, + -0.008596370927989483, + 0.0071055772714316845, + 0.004225266166031361, + -0.01202357653528452, + 0.005752519704401493, + -0.005063837859779596, + 0.01568574458360672, + 0.005363617092370987, + 0.02832508459687233, + 0.00633992487564683, + 0.02834128774702549, + 0.007441816385835409, + -0.009204031899571419, + 0.006578938104212284, + 0.025878237560391426, + -0.014227358624339104, + 0.035941094160079956, + 0.016852453351020813, + -0.029378361999988556, + 0.01787332259118557, + 0.013376634567975998, + 0.020660458132624626, + -0.03795042634010315, + 0.04187186434864998, + -0.0252462700009346, + 0.0012700106017291546, + 0.004715445917099714, + -0.005959124304354191, + -0.012274743057787418, + -0.003257060656324029, + 0.004367053974419832, + 0.029426975175738335, + 0.030626092106103897, + -0.02268599346280098, + 0.03973289951682091, + 0.027757933363318443, + 0.03759393095970154, + 0.018829375505447388, + 0.010832562111318111, + -0.03048025257885456, + 0.021081769838929176, + -0.014219257049262524, + -0.0461173839867115, + -0.014316482469439507, + -0.006461457349359989, + -0.05882154032588005, + -0.0004375155840534717, + -0.04047829285264015, + 0.006173830945044756, + -0.01068672351539135, + 0.025797216221690178, + -0.0074539692141115665, + -0.023350369185209274, + 0.0036479888949543238, + -0.0069678411819040775, + -0.01216941513121128, + -0.0095524238422513, + 0.0009985888609662652, + 0.01660938747227192, + -0.038566190749406815, + 0.0053150043822824955, + 0.007376999128609896, + -0.03317016363143921, + 0.013684515841305256, + 0.002069084206596017, + -0.03187382221221924, + 0.0435895174741745, + 0.04187186434864998, + -0.02741764485836029, + -2.2090993297751993e-5, + -0.0024265912361443043, + -0.01003855187445879, + -0.0015475088730454445, + 0.010840664617717266, + 0.008636881597340107, + -0.01349816657602787, + -0.022442929446697235, + 0.02563517354428768, + -0.0034839205909520388, + -0.020158125087618828, + 0.0009758015512488782, + 0.008547758683562279, + 0.024614302441477776, + -0.005254238378256559, + 0.007936046458780766, + 0.009187827818095684, + 0.00957673043012619, + 0.015928808599710464, + 0.018975213170051575, + -0.009041989222168922, + 0.01997987926006317, + -0.0008988312329165637, + 0.02172994054853916, + -0.001440155552700162, + -0.021486876532435417, + 0.006404742132872343, + -0.006619448773562908, + 0.03137148916721344, + 0.012655544094741344, + 0.04128850996494293, + -0.025424517691135406, + -0.017127925530076027, + -0.0313066728413105, + 0.03278126195073128, + -0.018634922802448273, + -0.06656718999147415, + -0.019688202068209648, + -0.016147566959261894, + -0.013020140118896961, + -0.013587289489805698, + 0.009511913172900677, + 0.018845578655600548, + 0.007761850953102112, + 0.0452747605741024, + 0.02093593217432499, + -0.010800153948366642, + 0.0051448591984808445, + -0.016755226999521255, + -0.037172622978687286, + 0.025100432336330414, + -0.025537947192788124, + 0.03211688622832298, + 0.002679782919585705, + 0.021697532385587692, + 0.014875530265271664, + -0.02095213532447815, + -0.02182716690003872, + -0.006303465459495783, + 0.004922050517052412, + -0.015053777024149895, + 0.0030200728215277195, + 0.02054702863097191, + -0.009746875613927841, + 0.018116386607289314, + 0.011480733752250671, + -0.003512277966365218, + 0.012509705498814583, + 0.013222693465650082, + -0.01565333642065525, + -0.009771181270480156, + -0.013911375775933266, + 0.003196294419467449, + -0.04977955296635628, + 0.012323356233537197, + -0.028049610555171967, + 0.009001478552818298, + 0.005387923680245876, + 0.008057578466832638, + -0.047770220786333084, + 0.0007069117855280638, + -0.008223672397434711, + -0.0021571950055658817, + -0.006672112736850977, + 0.004225266166031361, + -0.0032914946787059307, + 0.002787136472761631, + -0.004849131219089031, + -0.02963763102889061, + -0.011407813988626003, + 0.0004689113993663341, + -0.006753134075552225, + -0.005959124304354191, + 0.0015647258842363954, + -0.00044257944682613015, + 0.0015525727067142725, + -0.0513351634144783, + -0.04491826891899109, + 0.008985273540019989, + 0.013652106747031212, + -0.0419042706489563, + 0.018035365268588066, + 0.0024488719645887613, + -0.010945991612970829, + 0.01590450294315815, + 0.006222444120794535, + 0.025570355355739594, + -0.026429181918501854, + -0.02185957506299019, + 0.043330248445272446, + 0.007753748446702957, + 0.00981169193983078, + 0.018505290150642395, + -0.009366074576973915, + -0.020709071308374405, + 0.0069313813000917435, + 0.013449553400278091, + 0.049001745879650116, + 0.0016133387107402086, + 0.008871844038367271, + -0.01693347468972206, + -0.02138965204358101, + -0.0032003456726670265, + -0.010532782413065434, + 0.0304640494287014, + -0.0005372731829993427, + 0.017241355031728745, + 0.03140389546751976, + -0.009876509197056293, + 0.02955660969018936, + 0.012242334894835949, + 0.0037209081929177046, + -0.009187827818095684, + -0.019088642671704292, + -0.029751060530543327, + -0.023382777348160744, + -0.002309110015630722, + 0.017678871750831604, + -0.005995584186166525, + -0.010727234184741974, + 0.003909282851964235, + -0.01458385307341814, + 0.033704906702041626, + 0.00823987741023302, + -0.012088393792510033, + 0.003190217772498727, + 0.012760871089994907, + -0.005626936908811331, + 0.021081769838929176, + 0.023431390523910522, + 0.018440471962094307, + -0.002872208831831813, + 0.016658000648021698, + -0.0006775415386073291, + 0.0005919626564718783, + -0.018553901463747025, + -0.0011110060149803758, + -0.013255102559924126, + 0.004367053974419832, + -0.032473377883434296, + 0.008653086610138416, + -0.039408810436725616, + -0.018894191831350327, + -0.0054527404718101025, + -0.005391974467784166, + -0.015758663415908813, + -0.003032226115465164, + -0.013165978714823723, + 0.008284438401460648, + -0.03321877494454384, + -0.02437123842537403, + -0.03279746696352959, + -0.004456177353858948, + -0.005788979586213827, + 0.0222160704433918, + 0.02480875514447689, + -0.014559546485543251, + -0.028244061395525932, + -0.00016900559421628714, + -0.008385716006159782, + 0.0013044446241110563, + -0.010168186388909817, + 0.024922184646129608, + -0.026494000107049942, + 0.02048221230506897, + 0.020692866295576096, + -0.013222693465650082, + 0.0003299090312793851, + -0.0022361907176673412, + 0.012153211049735546, + 0.01091358345001936, + -0.02877880446612835, + -0.026882901787757874, + 0.0075673991814255714, + -0.03493643179535866, + -0.0017551261698827147, + 0.005562119651585817, + -0.0087503120303154, + 0.05415470898151398, + 0.028000997379422188, + -0.0036095036193728447, + -0.0019546414259821177, + -0.02615370973944664, + -0.009106806479394436, + 0.04323302209377289, + -0.021891983225941658, + -0.04060792922973633, + 0.01000614371150732, + -0.02009330876171589, + 0.011472631245851517, + 0.01832704246044159, + 0.0040166364051401615, + -0.006023941561579704, + -0.0077213398180902, + 0.03623277321457863, + -0.023010078817605972, + -0.01659318432211876, + 0.00535956583917141, + 0.01834324561059475, + -0.003441384295001626, + 0.006068503484129906, + 0.0037918018642812967, + 0.012639339081943035, + 0.035941094160079956, + 0.0005137263797223568, + -0.0009352908818982542, + 0.001884760451503098, + 0.013425246812403202, + -0.018618719652295113, + -0.0008132523507811129, + -0.019412729889154434, + -0.0017318325117230415, + -0.08724384754896164, + -0.03581146150827408, + -0.01955856755375862, + 0.029880695044994354, + 0.01915346086025238, + -0.00960913859307766, + -0.008685494773089886, + 0.012914812192320824, + -0.00890425220131874, + 0.017597850412130356, + 0.013895170763134956, + -0.03143630549311638, + 0.015385964885354042, + 0.018521493300795555, + 0.007490429095923901, + 0.012104597873985767, + 0.0019516031024977565, + -0.009511913172900677, + 0.018521493300795555, + -0.004760007839649916, + -0.003086915472522378, + 0.022313294932246208, + 0.01881317049264908, + -0.008969069458544254, + -0.013514370657503605, + 0.049066562205553055, + -0.026234731078147888, + 0.009341767989099026, + -0.02565137669444084, + -0.015151003375649452, + 0.014737794175744057, + 0.032975710928440094, + -0.016917269676923752, + 0.0016690409975126386, + 0.0022321396972984076, + 0.02049841545522213, + 0.011488835327327251, + -0.002248344011604786, + 0.0348392054438591, + -0.00041675387183204293, + 0.012542113661766052, + 0.007287875283509493, + -0.00027319404762238264, + -0.0032327540684491396, + -0.005845694337040186, + -0.03347804397344589, + 0.013814149424433708, + -0.03529292345046997, + 0.005979379639029503, + 0.0010512527078390121, + 0.020239146426320076, + 0.010314024984836578, + 0.013562983833253384, + -0.02479255013167858, + -0.009592934511601925, + 0.007061015348881483, + 0.025521742179989815, + -0.016131361946463585, + 0.01746821589767933, + -0.018408063799142838, + 0.05182129144668579, + 0.013449553400278091, + 0.005501353647559881, + 0.0024833062198013067, + -0.018197407945990562, + 0.007004300598055124, + 0.016536468639969826, + 0.02578101120889187, + 0.02223227359354496, + -0.012307151220738888, + 0.008369510993361473, + -0.014478525146842003, + -0.005302851088345051, + 0.028098223730921745, + -0.014008601196110249, + 0.026704655960202217, + 0.02393372356891632, + -0.00958483200520277, + 0.00771728903055191, + -0.005675549618899822, + -0.0038120571989566088, + 0.006392588838934898, + 0.008596370927989483, + -0.017646461725234985, + -0.011286281980574131, + -0.01267984975129366, + 0.010249207727611065, + -0.024484669789671898, + -0.013652106747031212, + -0.008685494773089886, + 0.03587627783417702, + -0.0004747348139062524, + 0.03367249667644501, + 0.018975213170051575, + -0.006416895426809788, + 0.038663413375616074, + -0.00545679172500968, + 0.01634201779961586, + 0.006242699455469847, + -0.00875841360539198, + -0.00223821634426713, + -0.013968090526759624, + 0.008353306911885738, + -0.032489582896232605, + -0.006177882198244333, + 0.025894440710544586, + 0.01352247316390276, + -0.00030180474277585745, + -0.005059786606580019, + -0.005744417663663626, + 0.013174080289900303, + 0.0014016702771186829, + -0.03879304975271225, + -0.02310730516910553, + -0.016026034951210022, + 0.018440471962094307, + -0.015693847090005875, + -0.016674205660820007, + -0.02529488317668438, + 0.007697033695876598, + -0.003370490623638034, + 0.018472880125045776, + 0.014948449097573757, + -0.02002849243581295, + -0.011424018070101738, + -0.002708140527829528, + -0.010751540772616863, + -0.023706862702965736, + 0.008871844038367271, + 0.014429912902414799, + 0.012234232388436794, + 0.0036824229173362255, + -0.02048221230506897, + 0.009212133474647999, + -0.021146586164832115, + 0.007595757022500038, + 0.01751682721078396, + -0.013036344200372696, + 0.0025805318728089333, + -0.039019908756017685, + 0.013255102559924126, + 0.005537813063710928, + -0.0036095036193728447, + 0.020806297659873962, + -0.009139214642345905, + -0.010046654380857944, + -0.0035082269459962845, + -0.012461092323064804, + 0.011099932715296745, + -0.009244542568922043, + -0.025116635486483574, + 0.003822184866294265, + 0.01751682721078396, + 0.0041017085313797, + -0.01153744850307703, + -0.029410770162940025, + -0.024954592809081078, + 0.00797655712813139, + -0.003615580266341567, + -0.003076787805184722, + -0.017176538705825806, + -0.00023369611881207675, + 0.0049706632271409035, + -0.02134103886783123, + 0.010929787531495094, + -0.015086186118423939, + -0.021989209577441216, + -0.006688317283987999, + 0.0006319669773802161, + -0.01698208600282669, + -0.021535489708185196, + 0.0039052318315953016, + -0.02445225976407528, + -0.014502831734716892, + -0.0019516031024977565, + -0.009868407621979713, + -0.01065431535243988, + 0.002673706505447626, + 0.01829463429749012, + -0.007571450434625149, + -0.009795487858355045, + 0.010792051441967487, + -0.0069718919694423676, + 0.011245771311223507, + 0.015548007562756538, + 0.008158856071531773, + -0.0024893826339393854, + -0.0037249592132866383, + -0.00503142923116684, + 0.0010796101996675134, + 0.029086684808135033, + 0.016739021986722946, + -0.0061211674474179745, + 0.003575069596990943, + -0.007786157075315714, + -0.00535551505163312, + 0.02443605661392212, + 0.018910396844148636, + -0.013797945342957973, + 0.0023131612688302994, + -0.029021868482232094, + -0.03137148916721344, + 0.012436785735189915, + 0.01792193576693535, + 0.009746875613927841, + 0.0018088029464706779, + -0.031160833314061165, + 0.02088731899857521, + 0.021033156663179398, + -0.005999634973704815, + 0.010216799564659595, + 0.0077780550345778465, + 0.013635902665555477, + -0.013571085408329964, + 0.0019941392820328474, + 0.004820773843675852, + 0.005088144447654486, + 0.0002591419033706188, + 0.00673692999407649, + -0.019704405218362808, + 0.02266979031264782, + -0.005946971010416746, + 0.01216941513121128, + -0.028665373101830482, + 0.016082748770713806, + 0.010597599670290947, + 0.016755226999521255, + -0.053863029927015305, + -0.0037918018642812967, + 0.006850359961390495, + -0.01738719455897808, + 0.003970048855990171, + -0.01179671660065651, + 0.003988278564065695, + 0.003228703048080206, + -0.028568148612976074, + 0.012331457808613777, + -0.0054729958064854145, + 0.036038320511579514, + -0.027660708874464035, + -0.004593913909047842, + -0.036880943924188614, + -0.019347911700606346, + 0.00732028391212225, + 0.03782079368829727, + 0.025116635486483574, + -0.03833932802081108, + -0.0075836037285625935, + -0.0036216569133102894, + 0.016423039138317108, + 0.026931514963507652, + -0.016641797497868538, + -0.006894921883940697, + 0.03354286402463913, + -0.0007140011293813586, + 0.009276950731873512, + 0.022491542622447014, + 0.0014735768781974912, + 0.00892855878919363, + -0.015207718126475811, + 0.008049476891756058, + -0.0027020638808608055, + 0.01738719455897808, + -0.029475588351488113, + 0.02881121262907982, + -0.002461025258526206, + -0.0011616444680839777, + 0.014219257049262524, + 0.01174000184983015, + -0.015377863310277462, + -0.002145041711628437, + -0.010873072780668736, + -0.0260888934135437, + 0.0037371122743934393, + 0.022054027765989304, + 0.012315253727138042, + -0.013587289489805698, + -0.019850244745612144, + -0.005582374986261129, + 0.01156175509095192, + -0.002685859566554427, + 0.005323106423020363, + -0.035519786179065704, + 0.010354535654187202, + 0.010557089000940323, + -0.013238897547125816, + 0.029086684808135033, + 0.016252893954515457, + 0.024581894278526306, + -0.024209195747971535, + 0.005813285708427429, + 0.013927579857409, + 0.013481962494552135, + 0.0011636699782684445, + 0.0182622242718935, + -0.013571085408329964, + -0.003575069596990943, + -0.003176039084792137, + 0.010362638160586357, + -0.0157343577593565, + 0.016066545620560646, + -0.016722818836569786, + -0.024549486115574837, + -0.0032833924051374197, + -0.00762006314471364, + -0.00027952383970841765, + 0.004893693141639233, + 0.011934453621506691, + -0.007672727108001709, + 0.0037350868806242943, + 0.021697532385587692, + 0.010395046323537827, + -0.012809484265744686, + -0.002367850625887513, + -0.0022017566952854395, + -0.0035629163030534983, + -0.004460228607058525, + -0.003022098448127508, + 0.0006572861457243562, + -0.03009135089814663, + 0.0028114428278058767, + 0.004504790063947439, + 0.0005899370880797505, + 0.009285053238272667, + -0.030431639403104782, + -0.025910645723342896, + 0.0038748488295823336, + -0.006424997467547655, + 0.017289968207478523, + 0.0063156187534332275, + 0.0046830372884869576, + 0.032862283289432526, + 0.00315375835634768, + 0.0038140828255563974, + -0.003595324931666255, + 0.0026169915217906237, + -0.017970547080039978, + -0.010800153948366642, + 0.011812920682132244, + 0.0015951088862493634, + 0.016026034951210022, + 0.02694771997630596, + -0.026801880449056625, + 0.01282568834722042, + 0.02740143984556198, + 0.003842440200969577, + 0.0014178745914250612, + 0.019834039732813835, + 0.03931158781051636, + -0.02349620871245861, + -0.009900815784931183, + 0.036329999566078186, + 0.002055918099358678, + 0.007960353046655655, + 0.020158125087618828, + 0.02007710374891758, + -0.0100547568872571, + 0.017565440386533737, + -0.030220985412597656, + -0.005039531271904707, + -0.02223227359354496, + -0.017160333693027496, + 0.004221215378493071, + 0.04051070287823677, + -0.002973485505208373, + 0.02830887958407402, + 0.02403094992041588, + -0.0008355332538485527, + 0.011035115458071232, + -0.026672247797250748, + 0.015329250134527683, + 0.005246135871857405, + -0.018877986818552017, + 0.004480483941733837, + -0.00957673043012619, + 0.009690159931778908, + -0.0029653834644705057, + -0.007166343275457621, + -0.001950590405613184, + -0.004225266166031361, + -0.0015687770210206509, + -0.0005555030074901879, + -0.036394815891981125, + -0.007668676320463419, + -0.008790822699666023, + 0.0013804022455587983, + -0.01049227174371481, + 0.00555806839838624, + 0.00706506660208106, + -0.006331822834908962, + -0.005610732361674309, + 0.010127675719559193, + 0.024549486115574837, + 0.011051319539546967, + 0.0021106076892465353, + -0.0009864355670288205, + -0.007713237777352333, + -0.0014725640648975968, + -0.042422808706760406, + 0.01741960272192955, + -0.007530939765274525, + -0.009341767989099026, + -0.003595324931666255, + 0.011075626127421856, + 0.005918613635003567, + 0.0071217818185687065, + 0.0028965151868760586, + 0.011934453621506691, + 0.013481962494552135, + -0.01829463429749012, + -0.03804765269160271, + 0.014664874412119389, + 0.019007621333003044, + -0.016301507130265236, + -0.009114908054471016, + -0.01694967783987522, + 0.0029694344848394394, + 0.021940596401691437, + 0.0030585580971091986, + 0.004269828088581562, + -0.022572563961148262, + -0.009649649262428284, + 0.004946356639266014, + -0.01656077615916729, + -0.0098035903647542, + 0.01108372863382101, + -0.004650628659874201, + -0.007539041806012392, + 0.010630008764564991, + 0.005813285708427429, + 0.00817100889980793, + -0.018148794770240784, + -0.001751075149513781, + 0.011983065865933895, + 0.026672247797250748, + -0.005075991153717041, + 0.019023826345801353, + -0.006388538051396608, + 0.012363866902887821, + -0.03535774350166321, + -0.018051570281386375, + -0.01350626815110445, + -1.5610863556503318e-5, + -0.009041989222168922, + -0.007688931655138731, + -0.01134299673140049, + 0.012250436469912529, + -0.004877488594502211, + 0.019412729889154434, + 0.011075626127421856, + -0.00041650066850706935, + -0.030350618064403534, + 0.0498119592666626, + -0.013538677245378494, + -0.006959738675504923, + 0.01654457114636898, + 0.00555401761084795, + 0.00937417708337307, + -0.02098454348742962, + 0.03746429830789566, + 0.028406105935573578, + 0.0008340140921063721, + -0.017662666738033295, + 0.008831333369016647, + -0.01703069917857647, + 0.016803840175271034, + 0.04410805553197861, + -0.013125468045473099, + -0.03282987326383591, + -0.015896400436758995, + -0.013157876208424568, + -0.028665373101830482, + -0.012882404029369354, + -0.010338331572711468, + -0.008252030238509178, + -0.015329250134527683, + -0.012428684160113335, + -0.005959124304354191, + 0.003494048258289695, + -0.01583968475461006, + 0.03125805780291557, + -0.021989209577441216, + -0.013992397114634514, + 0.009220235981047153, + 0.030755726620554924, + -0.0004739752330351621, + 0.0260888934135437, + -0.018651127815246582, + -0.017111720517277718, + 0.012574521824717522, + -0.012809484265744686, + 0.0021774503402411938, + -0.004241470713168383, + 0.013206489384174347, + 0.008831333369016647, + -0.021681329235434532, + -0.009309359826147556, + -0.010014246217906475, + 0.035941094160079956, + 0.0013753384118899703, + 0.003115273080766201, + -0.022345703095197678, + -0.025149043649435043, + -0.0008127460023388267, + -0.009285053238272667, + -0.010597599670290947, + 0.007462071720510721, + 0.007761850953102112, + -0.0023455696646124125, + -0.0037148315459489822, + -0.012971526943147182, + 0.0016234663780778646, + -0.011351099237799644, + -0.008482941426336765, + 0.0025683785788714886, + 0.004419717937707901, + 0.004557454027235508, + -0.002827647142112255, + -0.021227609366178513, + 0.0014533214271068573, + 0.0018715944606810808, + -0.012371968477964401, + -0.002193654654547572, + -0.005477047059684992, + 0.004938254598528147, + 0.005205625202506781, + 0.006202188786119223, + -0.016236688941717148, + -0.01824602112174034, + -0.021000748500227928, + 0.01281758677214384, + -0.0040308148600161076, + -0.00015229493146762252, + 0.013344225473701954, + -0.010508476756513119, + 0.001513074734248221, + 0.0004957497585564852, + -0.004221215378493071, + -0.009957530535757542, + -0.005080042406916618, + -0.003238830715417862, + 0.012590726837515831, + -0.011610367335379124, + 0.00010171984467888251, + -0.0014188874047249556, + 0.06624310463666916, + -0.003066660137847066, + 0.005849745590239763, + 0.011650878004729748, + 0.009471402503550053, + -0.017549237236380577, + -0.0005701881600543857, + 0.013919477351009846, + 0.006416895426809788, + -0.0005111944628879428, + -0.011415916495025158, + -0.02007710374891758, + 0.0069678411819040775, + -0.0034575886093080044, + -0.027385234832763672, + -0.0012538062874227762, + 0.008004914969205856, + 0.025068022310733795, + 0.0033461840357631445, + 0.008636881597340107, + 0.004273879341781139, + -0.008563962765038013, + -0.008377613499760628, + 0.013806047849357128, + -0.011893942020833492, + 0.025602765381336212, + 0.004772160667926073, + 0.009187827818095684, + 0.017079312354326248, + 0.008491043001413345, + -0.00470329262316227, + 0.013352327980101109, + -0.009852202609181404, + -0.003526456654071808, + -0.0051246038638055325, + 0.010808255523443222, + -0.0012963424669578671, + 0.010103369131684303, + -0.014624363742768764, + -0.0052947490476071835, + -0.004723547957837582, + -0.002880311105400324, + 0.03658926859498024, + 0.023398982360959053, + -0.0029350004624575377, + -8.722460916033015e-5, + -0.0031476817093789577, + -0.005485149100422859, + -0.001190001959912479, + 0.0002164790639653802, + -0.0056228856556117535, + -0.02043359912931919, + 0.009220235981047153, + 0.018472880125045776, + 0.008766516111791134, + 0.007482327055186033, + 0.01219372171908617, + -0.006230546161532402, + -0.012971526943147182, + -0.0037816741969436407, + -0.029345953837037086, + -0.005152961239218712, + -0.02012571692466736, + -0.01829463429749012, + -0.01310116145759821, + -0.024063358083367348, + -0.01284189336001873, + -0.02829267457127571, + 0.0052987998351454735, + -0.00039700488559901714, + -0.007243313826620579, + 0.0063156187534332275, + 0.003174013691022992, + -0.03211688622832298, + -0.01563713140785694, + 0.02012571692466736, + -0.00149585772305727, + 0.00640879338607192, + 0.009917019866406918, + 0.018537698313593864, + 0.002203782321885228, + 0.018035365268588066, + -0.009520015679299831, + -0.02618611790239811, + -0.009860305115580559, + 0.023804089054465294, + 0.0208711139857769, + -0.03749670833349228, + 0.016771432012319565, + -0.031144628301262856, + -0.01656077615916729, + -0.0021815013606101274, + 0.0037735719233751297, + 0.002058956539258361, + 0.008154804818332195, + -0.008936661295592785, + -0.009398482739925385, + -0.002870183438062668, + 0.004415666684508324, + 0.002882336499169469, + 0.004780263174325228, + 0.01738719455897808, + -0.016852453351020813, + -0.012598828412592411, + -0.0038363635540008545, + -0.02001228742301464, + 0.028082018718123436, + 0.012153211049735546, + -0.02796858921647072, + 0.006343976128846407, + -0.003163886023685336, + -0.02393372356891632, + 0.0008203417528420687, + 0.0035082269459962845, + -0.021956801414489746, + 0.02044980227947235, + 0.006254852749407291, + -0.014924143441021442, + -0.0056633963249623775, + -0.018910396844148636, + -0.013781741261482239, + 0.0012912786332890391, + 0.018926599994301796, + -0.013247000053524971, + -0.0064290487207472324, + 0.01245298981666565, + 0.0019516031024977565, + -0.005793030373752117, + -0.021940596401691437, + 0.005505404435098171, + 0.0016477728495374322, + 0.022977670654654503, + 0.007543093059211969, + -0.010678621008992195, + 0.013765537180006504, + 0.0013712872751057148, + -0.015620927326381207, + -0.008235826157033443, + 0.021632716059684753, + -0.029815876856446266, + 0.015402168966829777, + -0.03885786607861519, + -0.003822184866294265, + 0.009949428960680962, + -0.017776096239686012, + 0.019445138052105904, + -0.000790971505921334, + -0.007551195099949837, + 0.001619415357708931, + -0.001675117528066039, + 0.029313545674085617, + -0.03051266260445118, + 0.012185619212687016, + -0.009001478552818298, + -0.006935432553291321, + 0.012428684160113335, + -0.02393372356891632, + 0.01588829793035984, + -0.018440471962094307, + -0.01440560631453991, + 0.013149774633347988, + 0.0021308630239218473, + -0.02179475873708725, + 0.005724162328988314, + -0.005716060288250446, + 0.008871844038367271, + 0.0082479789853096, + 0.02743384800851345, + 0.0047964672558009624, + 0.0011251848191022873, + 0.001357108587399125, + 0.0084991455078125, + 0.007834769785404205, + -0.02219986543059349, + 0.008280388079583645, + -0.012809484265744686, + 0.009973735548555851, + 0.006117116194218397, + -0.009949428960680962, + 0.01502947136759758, + 0.0076241143979132175, + -0.014113929122686386, + 0.0065870401449501514, + 0.008276336826384068, + -0.0056228856556117535, + -0.017273763194680214, + 0.005015225149691105, + -0.01706310734152794, + -0.0020083182025700808, + 0.012704156339168549, + -0.01879696547985077, + 0.0025278679095208645, + -0.01066241692751646, + 0.0021693480666726828, + -0.01525633130222559, + -0.012566420249640942, + 0.012201824225485325, + 0.018408063799142838, + 0.014591955579817295, + -0.011205260641872883, + 0.0067571853287518024, + 0.003880925476551056, + 0.010338331572711468, + -0.011148545891046524, + -0.005185369867831469, + -0.023690659552812576, + -0.013425246812403202, + -0.022313294932246208, + -0.017273763194680214, + 0.0037128059193491936, + -0.013392838649451733, + -0.026348160579800606, + 0.008426226675510406, + 0.004978765267878771, + -0.02219986543059349, + 0.013084957376122475, + 7.393203122774139e-5, + 0.013919477351009846, + 0.010856868699193, + -1.2548823178804014e-5, + 0.017986752092838287, + 0.0074296630918979645, + 0.022912854328751564, + -0.02433883026242256, + -0.009981837123632431, + -0.003850542241707444, + 0.02096834033727646, + -0.0013864787761121988, + 0.0040267640724778175, + -0.005602630320936441, + 0.021130383014678955, + -0.006979994010180235, + -0.009309359826147556, + 0.026056485250592232, + -0.0015515598934143782, + 0.04060792922973633, + 0.008717902936041355, + 0.004209062084555626, + -0.0014715512515977025, + -0.008555860258638859, + -0.01238817349076271, + -0.004196908790618181, + -0.01352247316390276, + -0.007352692540735006, + 0.0018047518096864223, + -0.00196071807295084, + 0.0009920058073475957, + 0.009212133474647999, + -0.008669290691614151, + -3.150656630168669e-5, + -0.0029998174868524075, + -0.00913111213594675, + -0.00445212610065937, + 0.008089987561106682, + 0.022054027765989304, + -0.018229816108942032, + -0.009139214642345905, + 0.005566170439124107, + -0.008369510993361473, + -0.010646212846040726, + 0.003556839656084776, + 0.008547758683562279, + -0.01751682721078396, + 0.001025933539494872, + 0.005412229802459478, + 0.007150139193981886, + -0.03830692172050476, + -0.0033765670377761126, + -0.0005549966590479016, + 0.006416895426809788, + -0.0032449073623865843, + 0.007162292487919331, + 0.01045986358076334, + 0.01967199705541134, + -0.010354535654187202, + -0.0039862534031271935, + 0.007490429095923901, + -0.03561700880527496, + 0.016179975122213364, + 0.010467966087162495, + -0.025926850736141205, + 0.017354784533381462, + 0.0017318325117230415, + -0.016414936631917953, + -0.00016229601169470698, + -0.024646712467074394, + -0.004225266166031361, + 0.007899587042629719, + -0.0011859508231282234, + 0.006870615296065807, + 0.003698627231642604, + 0.00014647151692770422, + 0.009495709091424942, + -0.009244542568922043, + -0.0016011855332180858, + -0.014105826616287231, + -0.0044885859824717045, + 0.014543342404067516, + 0.01660938747227192, + -0.0009682058007456362, + -0.003544686594977975, + -0.00255217426456511, + 0.0003678878128994256, + -0.029070479795336723, + 0.02529488317668438, + 0.013716924004256725, + 0.019477546215057373, + -0.0012274743057787418, + -0.007769952993839979, + 0.017257560044527054, + 0.010597599670290947, + -0.01196686178445816, + -0.009520015679299831, + -0.01957477256655693, + -0.012590726837515831, + -0.02565137669444084, + 0.005019275937229395, + 0.01662559248507023, + -0.033316001296043396, + 0.00719064986333251, + 0.0010173250921070576, + -0.0016305558383464813, + 0.009714466519653797, + 0.01049227174371481, + 0.009398482739925385, + -0.0020781990606337786, + 0.021924393251538277, + 0.0004666326567530632, + 0.016836248338222504, + -0.022815627977252007, + 0.020368780940771103, + -0.000914529140572995, + -0.024760141968727112, + 0.0027344725094735622, + 0.010516578331589699, + 0.026785677298903465, + 0.003352260682731867, + -0.00392548693343997, + -0.01502947136759758, + -0.013635902665555477, + -0.019801631569862366, + -0.023188326507806778, + -0.017614053562283516, + 0.005075991153717041, + 0.004994969815015793, + 0.020158125087618828, + 0.01868353597819805, + -0.005075991153717041, + 0.012833790853619576, + 0.011812920682132244, + 0.009795487858355045, + 0.015394067391753197, + 0.018634922802448273, + 0.012461092323064804, + -0.012064087204635143, + -0.008636881597340107, + 0.020287759602069855, + 0.014753998257219791, + -0.009276950731873512, + 0.01091358345001936, + -0.031582143157720566, + 0.0033745416440069675, + -0.01222612988203764, + -0.004751905333250761, + 0.008183161728084087, + 0.00041295596747659147, + 0.007559297140687704, + 0.0158234816044569, + -0.02743384800851345, + -0.00233949301764369, + -0.008604473434388638, + -0.021875780075788498, + -0.013708822429180145, + -0.0037128059193491936, + -0.018959010019898415, + 0.01500516477972269, + -0.002675731899216771, + 0.014705385081470013, + -0.006027992814779282, + 0.007952251471579075, + 0.017695074900984764, + 0.0001095687912311405, + -0.009001478552818298, + -0.002033637370914221, + 0.007927944883704185, + 0.025554152205586433, + -0.000679567048791796, + 0.02228088676929474, + 0.01502947136759758, + -0.010605702176690102, + -0.006878717336803675, + -0.015272535383701324, + 0.01221802830696106, + 0.0008380651706829667, + -0.00024660889175720513, + 0.013668310828506947, + -0.02791997604072094, + 0.025440720841288567, + -0.006400691345334053, + 0.005039531271904707, + -0.01741960272192955, + -0.0007291926303878427, + 0.011821023188531399, + 0.01347385998815298, + 0.0015961216995492578, + -0.02403094992041588, + -0.005242085084319115, + 0.009641547687351704, + 0.028098223730921745, + -0.026412978768348694, + 0.01596931926906109, + 0.005286646541208029, + -0.021519284695386887, + 0.008677392266690731, + 0.014843122102320194, + -0.007931996136903763, + 0.007482327055186033, + -0.0048369779251515865, + 0.01042745541781187, + 0.0007783118635416031, + 0.02706114947795868, + -0.00503142923116684, + 0.021924393251538277, + -0.014146337285637856, + 0.012931016273796558, + -0.02001228742301464, + 0.03393176570534706, + -0.0018300709780305624, + 0.008766516111791134, + 0.011610367335379124, + -0.001874632784165442, + -0.00470329262316227, + -0.027628298848867416, + 0.005740366876125336, + -0.029832081869244576, + -0.01304444670677185, + 0.043362658470869064, + -0.032878488302230835, + -0.001675117528066039, + 0.0017703177873045206, + -0.011974964290857315, + -0.013660209253430367, + -0.0026372468564659357, + 0.0022321396972984076, + 0.014267869293689728, + 0.01785711757838726, + 0.0032651626970618963, + 0.025019410997629166, + 0.005055735819041729, + -0.0154426796361804, + -0.01003045029938221, + 0.004974714480340481, + -0.007956301793456078, + 0.007158241234719753, + -0.017273763194680214, + 0.0023962080013006926, + 0.009204031899571419, + -0.005541864316910505, + 0.026882901787757874, + -0.046441469341516495, + 0.0017125899903476238, + -0.006267005577683449, + 0.004302236717194319, + 0.02357723005115986, + -0.019526159390807152, + 0.0038849764969199896, + 0.0095524238422513, + 0.003165911417454481, + 9.58964301389642e-5, + 0.011496937833726406, + -0.015223922207951546, + 0.022054027765989304, + 0.024565691128373146, + 0.009520015679299831, + 0.010338331572711468, + 0.011399711482226849, + -0.026688450947403908, + 0.011683287099003792, + -0.013627800159156322, + -0.000876550329849124, + -0.015612824819982052, + -0.00981169193983078, + -0.01609085127711296, + 0.001778419828042388, + 0.01738719455897808, + -0.008166957646608353, + 0.005108399782329798, + 0.010500374250113964, + -0.0011535423109307885, + -0.015086186118423939, + 0.022880444303154945, + 0.015604723244905472, + 0.011780512519180775, + -0.014146337285637856, + 0.013352327980101109, + -0.011667082086205482, + 0.00338061829097569, + 0.0358438715338707, + -0.012428684160113335, + -0.00640879338607192, + -0.001271023298613727, + -0.002278727013617754, + -0.005942920222878456, + 0.025165248662233353, + 0.02707735449075699, + 0.002195680048316717, + -0.01199926994740963, + 0.00751878647133708, + 0.012039780616760254, + 0.015499395318329334, + -0.0071420371532440186, + 0.006651857402175665, + -0.023463798686861992, + -0.0009560526232235134, + 0.001210257294587791, + 0.009592934511601925, + 0.003927512560039759, + -0.0030808390583842993, + 0.014551444910466671, + 0.014737794175744057, + 0.009293155744671822, + -0.02967003919184208, + 0.008041374385356903, + -0.0005874051712453365, + 0.011383507400751114, + -0.00415234686806798, + 0.007304079830646515, + 0.0003643431409727782, + 0.00349607365205884, + 0.0010401123436167836, + -0.01751682721078396, + 0.0019890754483640194, + 0.006878717336803675, + 0.0034980992786586285, + 0.020239146426320076, + 0.023382777348160744, + 0.01745201088488102, + 0.007340539246797562, + 0.024565691128373146, + -0.00402271281927824, + -0.00545679172500968, + 0.008329000324010849, + 0.012112700380384922, + -0.0032408563420176506, + -0.01873214915394783, + -0.014616262167692184, + 0.004342747386544943, + 0.005302851088345051, + -0.01219372171908617, + -0.0020427522249519825, + -0.01748441904783249, + 0.006388538051396608, + 0.028227858245372772, + -0.005286646541208029, + 0.014737794175744057, + -0.020271556451916695, + 0.0020923777483403683, + -0.005788979586213827, + 0.007498531136661768, + 0.0208711139857769, + -0.011918248608708382, + -0.013141672126948833, + 0.003907257225364447, + -0.005242085084319115, + -0.010897379368543625, + 0.0028884131461381912, + 0.006684266030788422, + 0.018634922802448273, + -0.004658730700612068, + 0.0064898147247731686, + -0.00608065677806735, + 0.0009206057293340564, + -0.021162791177630424, + -0.00709342397749424, + 0.0010826485231518745, + -0.011237668804824352, + -0.024743936955928802, + -0.007263569161295891, + 0.016504060477018356, + -0.007522837724536657, + 0.015353556722402573, + -0.009463299997150898, + -0.017111720517277718, + -0.0012112699914723635, + 0.00017736092559061944, + 0.006578938104212284, + 0.0076079098507761955, + 0.007004300598055124, + 0.015321147628128529, + -0.013206489384174347, + 0.012250436469912529, + -0.023625841364264488, + -0.022750811651349068, + 0.0003696601779665798, + 0.0034697416704148054, + -0.00895286537706852, + 0.0018857732648029923, + -0.0012143083149567246, + -0.01305254828184843, + -0.02826026640832424, + 0.005367668345570564, + 0.006023941561579704, + -0.0005995584069751203, + 0.003022098448127508, + 0.01788952574133873, + 0.0029066428542137146, + -0.004711394663900137, + -0.016017932444810867, + -0.011667082086205482, + -0.003441384295001626, + -0.0007109628641046584, + -0.001690309145487845, + 0.015361658297479153, + -0.012785177677869797, + -0.0009646611288189888, + -0.011577959172427654, + 0.020563233643770218, + -0.005691753700375557, + 0.015758663415908813, + -0.004755956586450338, + -0.01477830484509468, + 0.00676528736948967, + -0.004253624007105827, + 0.01698208600282669, + 0.010589498095214367, + -0.012979629449546337, + 0.009973735548555851, + 0.029054276645183563, + 0.017192741855978966, + -0.014656772837042809, + 0.0019495775923132896, + 0.01706310734152794, + 0.003842440200969577, + -0.04183945432305336, + -0.0061049629002809525, + 0.0009935250272974372, + -0.02926493249833584, + 0.02054702863097191, + 0.014324584975838661, + -0.02090352214872837, + -0.005266391206532717, + -0.004922050517052412, + 0.006064452230930328, + -0.009673955850303173, + 0.011205260641872883, + -0.001680181361734867, + 0.005270442459732294, + 0.015782969072461128, + -0.015313046053051949, + 0.0019586924463510513, + -0.015142900869250298, + 0.007012402638792992, + -0.010597599670290947, + 0.01440560631453991, + -0.007705135736614466, + -0.024517077952623367, + 0.010921685956418514, + -0.03174418583512306, + 0.03004273772239685, + -0.002430642256513238, + -0.021875780075788498, + -0.0321492925286293, + -0.0063196695409715176, + -0.016463549807667732, + 0.005051684565842152, + -0.016034135594964027, + 0.010727234184741974, + 0.014689180999994278, + -0.00435084942728281, + -0.016423039138317108, + -0.0005909499013796449, + 0.0037634442560374737, + -0.020773889496922493, + 0.013571085408329964, + 0.0043346453458070755, + -0.004113861825317144, + -0.017160333693027496, + -0.018229816108942032, + 0.01590450294315815, + -0.03184141218662262, + -0.0028316981624811888, + 0.0009383291471749544, + 0.0031416050624102354, + -7.222298881970346e-5, + -1.4526885024679359e-5, + 0.010638110339641571, + -0.0038545934949070215, + -0.0331539586186409, + -0.011723797768354416, + 0.007903638295829296, + -0.028843620792031288, + -0.009868407621979713, + -0.024662915617227554, + -0.00872600544244051, + 0.008847537450492382, + -0.0005225880886428058, + -0.01435699313879013, + -0.011278179474174976, + -0.020790092647075653, + -0.01174000184983015, + -0.01915346086025238, + -0.0005327157559804618, + 0.0012902659364044666, + -0.0015353556955233216, + 0.003372516017407179, + -0.005035480484366417, + 0.01349816657602787, + 0.01737098954617977, + 0.0021106076892465353, + -0.008847537450492382, + 0.023253142833709717, + 0.009917019866406918, + 0.012720360420644283, + -0.0062953634187579155, + -0.024614302441477776, + -0.0213734470307827, + 0.004500739276409149, + 0.007688931655138731, + -0.00321857538074255, + 0.0008036310900934041, + -0.0014057214139029384, + -0.0021470673382282257, + 0.0010745463659986854, + 0.0008613588288426399, + -0.010565191507339478, + -0.014316482469439507, + 0.01395188644528389, + 0.020271556451916695, + -0.013660209253430367, + 0.004265776835381985, + 0.029524199664592743, + 0.0077577996999025345, + -0.0196071807295084, + 0.01438129972666502, + -0.02041739411652088, + -0.02002849243581295, + 0.004176653455942869, + 0.014251665212213993, + -0.00218757800757885, + 0.014024805277585983, + -0.019493751227855682, + -0.020336372777819633, + -0.009212133474647999, + 0.008098089136183262, + 0.018197407945990562, + -0.014729691669344902, + -0.0005894307396374643, + 0.00739320321008563, + -0.014527138322591782, + 0.020303964614868164, + -0.0007296990370377898, + -0.012274743057787418, + 0.017306173220276833, + -0.0033158010337501764, + -0.002317212289199233, + 0.002045790432021022, + 0.00415234686806798, + -0.008426226675510406, + 0.008636881597340107, + 0.006368282716721296, + 0.02051462046802044, + 0.002544072223827243, + -0.010119573213160038, + 0.006416895426809788, + -0.012566420249640942, + 0.022475337609648705, + 0.012696054764091969, + 0.0024954592809081078, + -0.026769472286105156, + 0.008774618618190289, + 0.010419352911412716, + -0.011675184592604637, + -0.002839800203219056, + -0.02791997604072094, + -0.005501353647559881, + -0.014292175881564617, + -0.015782969072461128, + -0.00676123658195138, + -0.004496688023209572, + 0.02004469558596611, + 0.01086497027426958, + -0.006526274140924215, + -0.02049841545522213, + -0.014697283506393433, + -0.02618611790239811, + -0.007445867173373699, + 0.000247621675953269, + 0.013352327980101109, + 0.015402168966829777, + -0.0003301622346043587, + 0.017208946868777275, + -0.0003934602136723697, + -0.027304213494062424, + -0.0077375443652272224, + 0.014591955579817295, + 0.013862762600183487, + 0.00895286537706852, + 0.0034069500397890806, + -0.02226468175649643, + 0.007328386418521404, + 0.008065680973231792, + 0.003951819147914648, + -0.009819794446229935, + -0.019023826345801353, + -0.009228338487446308, + 0.02305869199335575, + -0.009171622805297375, + 0.004391360096633434, + 0.0035791206173598766, + 0.01792193576693535, + 0.0012619084445759654, + -0.007235211785882711, + -0.005242085084319115, + -0.003228703048080206, + 0.005707958247512579, + -0.009973735548555851, + 0.008798925206065178, + -0.01330371480435133, + 0.006923279259353876, + 0.02004469558596611, + -0.016398733481764793, + 0.018521493300795555, + 0.0016477728495374322, + -0.01023300364613533, + -0.04433491453528404, + 0.0034879716113209724, + 0.008572065271437168, + -0.005440587643533945, + 0.009244542568922043, + -0.007940097711980343, + -0.005918613635003567, + 0.000550945580471307, + -0.0008264183416031301, + 0.0032145243603736162, + 0.005201574414968491, + -0.019931266084313393, + -0.008944762870669365, + -0.001725755981169641, + 0.022783219814300537, + 0.008831333369016647, + 0.009212133474647999, + -0.02435503527522087, + 0.01305254828184843, + 0.003994355443865061, + 0.001758164493367076, + 0.017354784533381462, + -0.0095524238422513, + 0.0016791686648502946, + -0.028454717248678207, + -0.015880195423960686, + -0.006773389410227537, + 0.005922664888203144, + 0.004504790063947439, + -0.002382029313594103, + -0.0021673226729035378, + 0.002756753470748663, + -0.011869636364281178, + -0.006793644744902849, + 0.0182622242718935, + -0.006364231463521719, + 0.0020326245576143265, + 0.014924143441021442, + -0.002872208831831813, + 0.010451761074364185, + 0.013449553400278091, + -0.011618469841778278, + 0.00533120846375823, + -0.001235576462931931, + -0.006647806614637375, + -0.01136730331927538, + -0.021956801414489746, + 0.007972506806254387, + 0.0064898147247731686, + -0.008231774903833866, + 0.011723797768354416, + -0.013352327980101109, + 0.005371719133108854, + -0.007571450434625149, + -0.009187827818095684, + 0.008393817581236362, + 0.007340539246797562, + 0.001746011315844953, + -0.0017601900035515428, + 0.007437765132635832, + -0.019850244745612144, + -0.02310730516910553, + 0.005242085084319115, + -0.004038916900753975, + -0.0015292790485545993, + 0.027563482522964478, + 0.004593913909047842, + 0.007648420985788107, + 0.023706862702965736, + 0.007988710887730122, + -0.013360429555177689, + -0.0040206871926784515, + 0.00934987049549818, + 0.004541249945759773, + 0.009309359826147556, + -0.011286281980574131, + 0.01694967783987522, + 0.0011099933180958033, + -0.01746821589767933, + -0.010638110339641571, + -0.01549129281193018, + -0.019785426557064056, + -0.034255851060152054, + -0.0021490927319973707, + -0.0036439376417547464, + -0.0056431409902870655, + -0.017630258575081825, + -0.0015292790485545993, + 0.009673955850303173, + -0.004772160667926073, + 0.0015444705495610833, + -0.005590477026998997, + 0.0032712393440306187, + 0.001455347053706646, + 0.0019353989046067, + -0.010022347792983055, + -0.008029221557080746, + 0.019801631569862366, + 0.0009484568145126104, + 0.028098223730921745, + -0.0016943601658567786, + -0.010856868699193, + -0.02740143984556198, + 0.012696054764091969, + -0.025473130866885185, + -0.01592070609331131, + 0.020271556451916695, + -0.005610732361674309, + 0.00875841360539198, + 3.6902718420606107e-5, + -0.008369510993361473, + 0.00771728903055191, + -0.0019272967474535108, + -0.008798925206065178, + 0.0025967361871153116, + 0.022102639079093933, + 0.022086435928940773, + -0.010581395588815212, + -0.003933589439839125, + -0.013174080289900303, + -0.0076079098507761955, + -0.0071258326061069965, + -0.002748651197180152, + -0.005647192243486643, + 0.012858097441494465, + 0.015248228795826435, + -0.001455347053706646, + 0.006190035492181778, + 0.020320169627666473, + 0.0043751560151577, + 0.01785711757838726, + 0.005477047059684992, + -0.0025785062462091446, + -0.017759893089532852, + -0.018489085137844086, + -0.017630258575081825, + 0.0006750096217729151, + -0.01349816657602787, + 0.028632964938879013, + -0.019850244745612144, + 0.022929057478904724, + -0.01913725584745407, + 0.00708937318995595, + -0.0008360396604984999, + -0.009633445180952549, + 0.005517557729035616, + 0.0001354576670564711, + 0.019396524876356125, + -0.006368282716721296, + 0.025797216221690178, + 0.02484116330742836, + 0.0128743015229702, + -0.01525633130222559, + 0.0009236440528184175, + -0.008434328250586987, + 0.0053352597169578075, + -0.017727483063936234, + 0.0061454735696315765, + -0.004273879341781139, + -0.02523006685078144, + 0.008215570822358131, + -0.005347413010895252, + 0.02662363462150097, + 0.010135778225958347, + 0.010605702176690102, + -0.004849131219089031, + -0.018132591620087624, + -0.019801631569862366, + 0.009106806479394436, + 0.0067976959981024265, + -0.02307489700615406, + -0.01925068534910679, + 0.026461591944098473, + 0.0014442065730690956, + -0.007247364614158869, + -0.001543457736261189, + 0.006173830945044756, + 0.01575056090950966, + -0.008628780022263527, + -0.016196178272366524, + 0.001485730055719614, + -0.0013135595945641398, + 0.015361658297479153, + 0.007632216438651085, + -0.024160582572221756, + 0.007725391071289778, + -0.0009823845466598868, + 0.012315253727138042, + -0.015248228795826435, + -0.00406930036842823, + -0.010978400707244873, + 0.022361908107995987, + 0.01199116837233305, + 0.016333915293216705, + -0.005080042406916618, + 0.025084227323532104, + -0.0020731352269649506, + 0.03412621468305588, + 0.0039862534031271935, + -0.007571450434625149, + 0.010621906258165836, + 0.009447095915675163, + -0.005440587643533945, + -0.023301756009459496, + -0.014041009359061718, + -0.02921631932258606, + 0.013514370657503605, + -0.009139214642345905, + -0.0076079098507761955, + -0.004861284513026476, + -0.005999634973704815, + 0.006919228006154299, + -0.019850244745612144, + 0.023723067715764046, + -0.001195065793581307, + 0.012096496298909187, + -0.006343976128846407, + -0.00014837045455351472, + 0.0014735768781974912, + 0.01913725584745407, + 0.0025906595401465893, + -0.021016953513026237, + -0.003074762411415577, + -0.0027121915481984615, + 0.021000748500227928, + 0.015596620738506317, + -0.015612824819982052, + -0.005262340418994427, + -0.0057768262922763824, + -0.009560526348650455, + 0.016066545620560646, + 0.009665853343904018, + 0.008013017475605011, + 0.01196686178445816, + 0.004237419459968805, + 0.03953844681382179, + 0.007474224548786879, + 0.007243313826620579, + 0.010022347792983055, + -0.028130631893873215, + 1.978061625607097e-8, + -0.0023253143299371004, + -0.016884861513972282, + 0.01790573075413704, + 0.004772160667926073, + 0.0028215704951435328, + -0.006040145643055439, + 0.02095213532447815, + -0.0002462291158735752, + -0.008450532332062721, + -0.013619698584079742, + 0.007344590499997139, + 0.008191264234483242, + 0.01245298981666565, + -0.0026028126012533903, + 0.008547758683562279, + 0.007761850953102112, + -0.011270077899098396, + -0.019072439521551132, + -0.016196178272366524, + -0.013862762600183487, + -0.00444807531312108, + 0.00039371338789351285, + -0.007081271149218082, + 0.012550216168165207, + 0.0008456609211862087, + 0.0021713736932724714, + -0.017127925530076027, + 0.0062589035369455814, + 0.005209676455706358, + 0.014008601196110249, + -0.0014087597373872995, + 0.010322127491235733, + 0.012947220355272293, + 0.00663565332069993, + -0.009171622805297375, + -0.018537698313593864, + 0.012104597873985767, + -0.006287260912358761, + 0.003998406231403351, + -0.0019890754483640194, + -0.0056633963249623775, + 0.0019485647790133953, + -0.0026169915217906237, + 0.0005843669059686363, + 0.0007291926303878427, + 0.0007160266977734864, + -0.0005286646774038672, + -0.007534991018474102, + -0.005424383096396923, + 0.005513506941497326, + 0.0001316597918048501, + -0.004877488594502211, + 0.009560526348650455, + 0.023350369185209274, + 0.009260746650397778, + -0.0037654698826372623, + 0.004326543305069208, + 0.006785542704164982, + 0.008482941426336765, + -0.0009793462231755257, + 0.01178861502557993, + -0.004132091533392668, + -0.01435699313879013, + 0.00914731714874506, + 0.0035426609683781862, + 0.0016275175148621202, + 0.003032226115465164, + 0.006040145643055439, + 0.0067976959981024265, + 0.0037229335866868496, + 0.0024792549666017294, + 0.013587289489805698, + 0.006352078169584274, + 0.0018462752923369408, + -0.014664874412119389, + 0.013765537180006504, + 0.025521742179989815, + 0.014227358624339104, + 0.008385716006159782, + -0.0008643971523270011, + -0.013635902665555477, + 0.01997987926006317, + 0.0056593450717628, + 0.013125468045473099, + -0.0037229335866868496, + -0.014267869293689728, + 0.0036439376417547464, + -0.00764436973258853, + -0.011205260641872883, + -0.005513506941497326, + 0.012112700380384922, + -0.010994604788720608, + 0.017695074900984764, + -0.021081769838929176, + 0.019056234508752823, + 0.0017824709648266435, + -0.00610901415348053, + -0.030172372236847878, + 0.005955073516815901, + -0.013109263963997364, + 0.0035973505582660437, + -0.0308853592723608, + 0.01630960963666439, + 0.010014246217906475, + -0.006404742132872343, + 0.0026575021911412477, + -0.016674205660820007, + -0.0015961216995492578, + -0.010281616821885109, + 0.00666401069611311, + 0.022086435928940773, + 0.012712258845567703, + -0.003368464997038245, + -0.006185984238982201, + -0.015126696787774563, + -0.011051319539546967, + -0.019088642671704292, + -0.007931996136903763, + -0.009730670601129532, + 0.010937890037894249, + 0.0016234663780778646, + -0.013806047849357128, + 0.01068672351539135, + 0.02749866619706154, + 0.006870615296065807, + 0.042455218732357025, + 0.008329000324010849, + -0.013546778820455074, + 0.008025170303881168, + -0.0017844964750111103, + -0.0005620860029011965, + 0.0028154938481748104, + 0.014770202338695526, + 0.003463665023446083, + -0.009106806479394436, + -0.028859825804829597, + -0.02260497212409973, + 0.01965579390525818, + 0.004533147905021906, + -0.018181202933192253, + -0.00666401069611311, + -0.004480483941733837, + 0.014818815514445305, + 0.0009388355538249016, + 0.028535738587379456, + -0.003011970780789852, + 0.012736565433442593, + -0.01330371480435133, + -0.0035912739112973213, + -0.010945991612970829, + 0.017289968207478523, + -0.0019283094443380833, + -0.009682058356702328, + 0.03125805780291557, + 0.003024124074727297, + -0.002114658709615469, + 0.01698208600282669, + -0.009487606585025787, + -0.006206239573657513, + 0.028924642130732536, + -0.011051319539546967, + 0.01460815966129303, + -0.010370739735662937, + -0.015410271473228931, + 0.017970547080039978, + 0.01779230125248432, + 0.01873214915394783, + -0.010905480943620205, + -0.008000863716006279, + 0.0031172987073659897, + 0.007166343275457621, + 0.0019667947199195623, + 0.01632581278681755, + -0.006177882198244333, + 0.0026818085461854935, + -0.012752769514918327, + 0.012258538976311684, + -0.004330594092607498, + 0.009933224879205227, + -0.033413227647542953, + -0.0009535207063890994, + 0.00445212610065937, + -0.020190535113215446, + 0.0033846693113446236, + -0.01374933309853077, + 0.0316469632089138, + -0.005861898884177208, + 0.0003620643983595073, + -0.010694826021790504, + 0.03098258562386036, + -0.011067524552345276, + -0.014697283506393433, + -0.0041645001620054245, + 0.004934203810989857, + 0.011278179474174976, + -0.0053150043822824955, + -0.01441370788961649, + 0.035066064447164536, + 0.018002957105636597, + 0.002768906531855464, + -0.01780850440263748, + -0.005367668345570564, + -0.012931016273796558, + 0.014818815514445305, + -0.008426226675510406, + -0.023625841364264488, + 0.004168551415205002, + 0.007895535789430141, + -0.014365095645189285, + -0.0024934338871389627, + -0.02955660969018936, + 0.010605702176690102, + -0.00040738575626164675, + 0.01869974099099636, + 0.006927330046892166, + 0.002039714017882943, + -0.0024589996319264174, + -0.0018007007893174887, + -0.014794508926570415, + -0.004403513390570879, + 0.02090352214872837, + 0.060798462480306625, + 0.02437123842537403, + 0.013109263963997364, + -0.00023622803564649075, + 0.0054284343495965, + -0.023868907243013382, + -0.005108399782329798, + -0.008969069458544254, + -0.01835945062339306, + -0.016771432012319565, + 0.015329250134527683, + -0.012112700380384922, + 0.011415916495025158, + 0.015515599399805069, + -0.005351463798433542, + 0.013644005171954632, + -0.004788365215063095, + -0.0025906595401465893, + -0.013571085408329964, + 0.0051651145331561565, + -0.007980608381330967, + 0.020838705822825432, + 0.0016518238699063659, + 0.0018715944606810808, + 0.013660209253430367, + 0.0028114428278058767, + 0.005412229802459478, + -0.00598343089222908, + -0.005865949671715498, + 0.005152961239218712, + 0.02270219847559929, + -0.015207718126475811, + -0.028681578114628792, + -0.0013044446241110563, + -0.0005099285044707358, + 0.028422309085726738, + -0.01264744158834219, + 0.012866199016571045, + -0.012242334894835949, + -0.014073418453335762, + -0.03733466565608978, + -0.013619698584079742, + 0.015807276591658592, + -0.015410271473228931, + -0.022848036140203476, + -0.008734107948839664, + 0.006343976128846407, + 0.020611844956874847, + -0.017662666738033295, + 0.0016305558383464813, + 0.012914812192320824, + 0.0087503120303154, + -0.024176787585020065, + -0.010500374250113964, + -0.004109811037778854, + -0.003994355443865061, + 0.014802610501646996, + -0.022361908107995987, + 0.0015019343700259924, + 9.431398211745545e-5, + -0.010646212846040726, + -0.004585811402648687, + 0.008191264234483242, + 0.015345454216003418, + -0.002546097617596388, + 0.01006285846233368, + 0.0069637899287045, + -0.006619448773562908, + 0.004146270453929901, + -0.007526888512074947, + 0.022864241153001785, + -0.004581760615110397, + -0.011885840445756912, + -0.02616991475224495, + -0.009301257319748402, + -0.009325563907623291, + -0.015977421775460243, + -0.017565440386533737, + -0.0196071807295084, + 0.007725391071289778, + -0.006813900079578161, + -0.003820159239694476, + 0.0015069982036948204, + -0.00271421717479825, + -0.006230546161532402, + 0.012145108543336391, + -0.010241106152534485, + 0.0012963424669578671, + 0.007599807810038328, + 0.008183161728084087, + -0.018942805007100105, + 0.00027699192287400365, + -0.02135724201798439, + 0.006068503484129906, + 0.028632964938879013, + -0.01020869705826044, + -0.005254238378256559, + -0.006562734022736549, + -0.0017541134729981422, + 0.015045675449073315, + 0.011197158135473728, + 6.80453231325373e-5, + -0.004772160667926073, + 0.009649649262428284, + -0.00630751671269536, + -0.026283344253897667, + -0.012404377572238445, + -0.006574887316673994, + -0.013287510722875595, + 0.014470423571765423, + -0.014802610501646996, + 0.018618719652295113, + -0.00512865511700511, + 0.012047883123159409, + 0.015766765922307968, + 0.02088731899857521, + 0.014105826616287231, + -0.006501968018710613, + -0.0037654698826372623, + 0.021016953513026237, + -0.006850359961390495, + 0.014454218558967113, + 0.030204780399799347, + 0.012598828412592411, + 0.012072189711034298, + 0.010322127491235733, + 0.004934203810989857, + 0.014745895750820637, + -0.005067889112979174, + -0.006688317283987999, + 0.0018756455974653363, + -0.004954459145665169, + -3.30415423377417e-5, + 0.006088758818805218, + 0.004585811402648687, + 0.00037953464197926223, + 0.0043184407986700535, + -0.010565191507339478, + 0.021697532385587692, + -0.018537698313593864, + -0.02181096188724041, + 0.022750811651349068, + 0.015766765922307968, + -0.00751473568379879, + -0.018618719652295113, + -0.00411993870511651, + -0.016439244151115417, + 0.026348160579800606, + 0.014567648991942406, + 9.576983575243503e-5, + 0.0023253143299371004, + -0.0034049246460199356, + -0.002053892705589533, + 0.0032368050888180733, + -0.0005706945084966719, + 0.030804337933659554, + -0.005865949671715498, + -0.0019597052596509457, + -0.015766765922307968, + -0.0010603676782920957, + -0.012436785735189915, + 0.0014158490812405944, + 0.002604838227853179, + 0.00555806839838624, + 0.00012868478370364755, + -0.013554881326854229, + -0.008572065271437168, + 0.020352577790617943, + -0.0073000285774469376, + -0.01199926994740963, + -0.03145251050591469, + -7.171660399762914e-5, + -0.0003456069389358163, + 0.004456177353858948, + 0.00222403765656054, + 0.01620428077876568, + -0.0017298070015385747, + -0.007214956451207399, + -0.029945511370897293, + -0.0023232889361679554, + 0.011902044527232647, + 0.011205260641872883, + 0.02618611790239811, + 0.0021166843362152576, + -0.024662915617227554, + 0.015094287693500519, + -0.007364845834672451, + -0.0012801382690668106, + 0.002021484076976776, + -0.006327772047370672, + 0.016350120306015015, + 0.026412978768348694, + -0.02001228742301464, + -0.0069516366347670555, + -0.02098454348742962, + 0.02224847860634327, + 0.0018837477546185255, + 0.005152961239218712, + -0.02955660969018936, + 0.016350120306015015, + 0.012201824225485325, + -0.004606066737323999, + -0.006072554271668196, + -0.003086915472522378 + ], + "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27": [ + -0.02752266265451908, + -0.01220469456166029, + -0.004508450627326965, + 0.008958941325545311, + -0.016543405130505562, + -0.03146393597126007, + 0.023962270468473434, + 0.047593340277671814, + -0.012660093605518341, + 0.045937344431877136, + 0.003568672575056553, + 0.015533247962594032, + -0.012751174159348011, + -0.011749295517802238, + -0.007741784211248159, + -0.003974391613155603, + -0.027605462819337845, + 0.024210670962929726, + -0.015094408765435219, + -0.02291899360716343, + 0.0633915513753891, + -0.02195851504802704, + -0.011625096201896667, + 0.04202919453382492, + -0.00895066186785698, + -0.020633717998862267, + 0.029344258829951286, + 0.0075265043415129185, + -0.020070679485797882, + -0.000705351063515991, + 0.021047716960310936, + 0.020335638895630836, + 0.03732616454362869, + -0.008809901773929596, + 0.024127870798110962, + -0.03061937727034092, + -0.007580324541777372, + 0.010416219010949135, + 0.017040204256772995, + -0.009753819555044174, + -0.03437848761677742, + 0.03848535940051079, + 0.015177208930253983, + 0.010490738786756992, + -0.036730002611875534, + 0.014067690819501877, + -0.0013351473025977612, + -0.006595006212592125, + -0.00438839104026556, + 0.0018122813198715448, + 0.020848996937274933, + -0.022637473419308662, + 0.03510712832212448, + -0.007468544412404299, + 0.005444088950753212, + -0.014233291149139404, + 0.0018309112638235092, + 0.07551344484090805, + 0.0073691848665475845, + -0.05706564337015152, + 0.013256252743303776, + 0.01968980021774769, + 0.039777036756277084, + 0.0068641058169305325, + 0.01220469456166029, + -0.009041741490364075, + -0.01080537773668766, + 0.00152248190715909, + -0.038882799446582794, + 0.004276611376553774, + 0.03378232941031456, + 0.02459155023097992, + -0.024144429713487625, + 0.021776355803012848, + -0.00012866317410953343, + -0.01294989325106144, + 0.046599745750427246, + -0.011360136792063713, + -0.015168928541243076, + -0.0008952731732279062, + -0.0016901515191420913, + 0.002461225027218461, + 0.02805258147418499, + 0.01247793436050415, + 0.07087665051221848, + 0.013297652825713158, + -0.04948117956519127, + -0.07438736408948898, + -0.01934204064309597, + -0.04030695557594299, + -0.0008507682359777391, + 0.026363465934991837, + 0.00395162170752883, + 0.005928467959165573, + -0.025154588744044304, + 0.004438071046024561, + 0.02603226713836193, + 0.0004287478805053979, + 0.012933333404362202, + -0.01790132373571396, + 0.0031898634042590857, + 0.011956294998526573, + -0.025634827092289925, + 0.030834656208753586, + 0.015243448317050934, + -0.0007255335221998394, + 0.009223900735378265, + -0.02268715389072895, + -0.015102689154446125, + 0.0514683723449707, + 0.0038853820879012346, + -0.020749637857079506, + -0.005626248195767403, + -0.03171233460307121, + -0.03719368204474449, + -0.04464566707611084, + -0.0021921254228800535, + -0.010540418326854706, + -0.0012068075593560934, + -0.022703712806105614, + 0.05209765210747719, + 0.010656338185071945, + 0.015210328623652458, + -0.021859154105186462, + 0.00647494662553072, + 0.016667606309056282, + 0.002829684177413583, + 0.006023687776178122, + 0.021975073963403702, + 0.03855160251259804, + -0.02142859622836113, + -0.04090311750769615, + -0.0034506828524172306, + -0.02257123403251171, + 0.0006023687892593443, + -0.0012088775401934981, + -0.016386086121201515, + 0.05809235945343971, + 0.017156124114990234, + 0.042592231184244156, + -0.03712744265794754, + -0.038584720343351364, + -0.023680752143263817, + -0.010325138457119465, + -0.011674775741994381, + 0.009041741490364075, + -0.026827145367860794, + 0.06720034033060074, + -0.01127733662724495, + 0.023349551483988762, + -0.06524626910686493, + 0.012875373475253582, + 0.012246094644069672, + 0.01462244987487793, + -0.009828339330852032, + -0.011285617016255856, + 0.013570891693234444, + 0.025518907234072685, + -0.009215621277689934, + 0.016808364540338516, + -0.0003606967511586845, + -0.05451540648937225, + -0.005713188089430332, + -0.022405633702874184, + 0.03401416912674904, + -0.0181497223675251, + 0.03307025134563446, + 0.04060503467917442, + -0.023531710729002953, + 0.01909364014863968, + 0.02399539016187191, + -0.006094067357480526, + 0.03364985063672066, + 0.015342808328568935, + -0.0022894153371453285, + -0.004111011512577534, + 0.03326897323131561, + 0.07471856474876404, + -0.010523858480155468, + -0.02782074362039566, + -0.0233329925686121, + -0.004102731589227915, + 0.0012575223809108138, + -0.016551686450839043, + -0.012080495245754719, + 0.005340589210391045, + 0.032805293798446655, + 0.011004097759723663, + -0.0017822663066908717, + -0.008511822670698166, + 0.015152368694543839, + -0.024045070633292198, + -0.016096286475658417, + 0.05676756426692009, + -0.0423935130238533, + -0.038352880626916885, + -0.015235168859362602, + -0.0018981860484927893, + 0.03109961561858654, + 0.0029435339383780956, + -0.010209218598902225, + -0.03702808544039726, + -0.04308903217315674, + 0.03838600218296051, + -0.046467263251543045, + 0.037988562136888504, + -0.030304737389087677, + 0.0024819248355925083, + 0.024972429499030113, + -0.04756022244691849, + 0.013835851103067398, + -0.045639265328645706, + 0.0033264830708503723, + 0.0033885829616338015, + -0.01659308560192585, + -0.001557671814225614, + -0.014937088824808598, + 0.03126521408557892, + 0.0169491246342659, + -0.021113956347107887, + -0.022488433867692947, + 0.0032540333922952414, + 0.003804652253165841, + -0.04113495722413063, + -0.06117251515388489, + -0.032739054411649704, + -0.010374818928539753, + 0.04424823075532913, + -0.043188389390707016, + 0.01074741780757904, + 0.04308903217315674, + -0.006392146926373243, + 0.0077128042466938496, + -0.04600358381867409, + -0.014340930618345737, + 0.00963790062814951, + 0.03871719911694527, + 0.012817413546144962, + 0.01630328595638275, + -0.04398326948285103, + 0.022223474457859993, + 0.02088211663067341, + -0.0075720446184277534, + -0.0051542893052101135, + 0.0049928296357393265, + 0.022637473419308662, + -0.02763858251273632, + 0.05206453427672386, + 0.060808196663856506, + -0.007969483733177185, + 0.025270508602261543, + 0.005456508602946997, + 0.029559539631009102, + -0.004396670963615179, + -0.027141783386468887, + 0.05723124369978905, + 0.061569955199956894, + -0.030851216986775398, + -0.016261886805295944, + -0.0020834507886320353, + -0.0036100726574659348, + 0.001410702127031982, + 0.0017139564733952284, + -0.002446735044941306, + 0.03822040185332298, + -0.009853179566562176, + 0.05269381031394005, + -0.056436363607645035, + -0.00666952645406127, + 0.02775450237095356, + 0.004197951406240463, + 0.01934204064309597, + -0.04017447680234909, + -0.020087238401174545, + 0.00885958131402731, + -0.00176881137304008, + -0.005025949794799089, + -0.018779002130031586, + 0.00024645886151120067, + -0.00031903808121569455, + -0.010267178528010845, + -0.012569013983011246, + 0.004046841524541378, + 0.0009604780352674425, + 0.026115065440535545, + -0.015889286994934082, + 0.0025274648796766996, + -0.007042125333100557, + -0.04030695557594299, + -0.02470747008919716, + -0.003937131725251675, + -0.0005671788239851594, + 0.012602133676409721, + 0.007940503768622875, + -0.0019323410233482718, + 0.01450653001666069, + 0.0007151835015974939, + -0.004421510733664036, + -0.010739138349890709, + 0.0155249685049057, + -0.015061289072036743, + -0.015574648045003414, + -0.012759453617036343, + -0.00826342310756445, + 0.003875032067298889, + -0.024972429499030113, + 0.04130055382847786, + 0.0005257789161987603, + -0.03802167996764183, + 0.006317627150565386, + 0.027721382677555084, + -0.014821169897913933, + -0.005170849151909351, + -0.032440971583127975, + -0.003574882633984089, + -0.011774135753512383, + 0.009091421030461788, + 0.007725223898887634, + -0.011269057169556618, + -0.025104908272624016, + 0.020103799179196358, + -0.004438071046024561, + -0.08915885537862778, + 0.05080597475171089, + 0.03129833564162254, + -0.03272249177098274, + 0.005398548673838377, + 0.021345796063542366, + -0.05719812214374542, + -0.017537003383040428, + 0.00830068252980709, + -0.019375160336494446, + -0.034941527992486954, + 0.01856372132897377, + 0.011376696638762951, + -0.05938403680920601, + -0.054813485592603683, + -0.04424823075532913, + 0.00784528348594904, + -0.010101579129695892, + -0.02179291471838951, + -0.007613444235175848, + 0.008246863260865211, + -0.00276965438388288, + 0.0032871533185243607, + 0.011053777299821377, + 0.036266326904296875, + 0.030586257576942444, + -0.011716175824403763, + 0.0033533931709825993, + 0.0009594430448487401, + -0.013926931656897068, + 0.015574648045003414, + 0.021461715921759605, + 0.03831976279616356, + 0.0211305171251297, + -0.027787622064352036, + 0.0070255654864013195, + 0.026777464896440506, + -0.0016559965442866087, + -0.0005666613578796387, + -0.03576952591538429, + -0.021991634741425514, + -0.009414340369403362, + 0.006574306637048721, + 0.0018060712609440088, + 0.01826564222574234, + 0.00999393966048956, + 0.004748570267111063, + 0.010358259081840515, + -0.023796670138835907, + 0.008201323449611664, + -0.026909945532679558, + -0.03153017535805702, + -0.030238498002290726, + -0.025402987375855446, + 0.03157985582947731, + -0.005738028325140476, + -0.04153239354491234, + 0.02603226713836193, + 0.0032623133156448603, + -0.007890824228525162, + -0.004268330987542868, + -0.018017243593931198, + 0.03682936355471611, + 0.025816986337304115, + 0.00782044418156147, + 0.021561075001955032, + -0.0015452518127858639, + -0.004694750532507896, + -0.02429346926510334, + 0.0016632415354251862, + -0.022786512970924377, + -0.004293171223253012, + -0.016617925837635994, + 0.014489970169961452, + -0.014465129934251308, + -0.0026578744873404503, + 0.014067690819501877, + -0.02601570636034012, + -0.012560734525322914, + -0.006392146926373243, + -0.015723688527941704, + 0.0032975031062960625, + 0.029410500079393387, + -0.03364985063672066, + -0.011683056131005287, + -0.000634971191175282, + 0.02225659415125847, + -0.013868971727788448, + 0.0012016325490549207, + 0.03490840643644333, + 0.01127733662724495, + 0.024078190326690674, + 0.05848979949951172, + -0.013380452059209347, + 0.0073567647486925125, + 0.03861784189939499, + -0.044380709528923035, + -0.025287067517638206, + 0.019805720075964928, + 0.04315527155995369, + 0.016046607866883278, + 0.020517798140645027, + -0.021941954270005226, + 0.029576098546385765, + -0.0056800683960318565, + 0.013372172601521015, + -0.017619803547859192, + -0.018066922202706337, + -0.024276910349726677, + 0.03689560294151306, + -0.00422486150637269, + -0.0060195475816726685, + 0.005481348838657141, + -0.03421289101243019, + -0.001100202789530158, + -0.01911020092666149, + -0.0006753361085429788, + -0.003334763227030635, + -0.014225010760128498, + 0.03762424364686012, + -0.006085787434130907, + 0.003815002040937543, + -0.05242885276675224, + -0.024144429713487625, + -0.045871105045080185, + -0.007961203344166279, + -0.005671788472682238, + -0.006069227587431669, + -0.0003363743016961962, + 0.031728893518447876, + -0.05517780780792236, + 0.009828339330852032, + -0.00952198076993227, + 0.0011033077025786042, + -0.005195689387619495, + -0.014870849438011646, + 0.012817413546144962, + -0.0347428098320961, + -0.042824070900678635, + -0.004040631465613842, + 0.020699957385659218, + -0.010706017725169659, + 0.024276910349726677, + -0.04116807505488396, + -0.0016611715545877814, + 0.012991293333470821, + 0.018646521493792534, + 0.012113614939153194, + -0.01044933870434761, + 0.010763977654278278, + -0.05073973536491394, + 0.023548271507024765, + 0.01593068800866604, + 0.002094835741445422, + -0.016286727041006088, + 0.02131267637014389, + 0.027969783172011375, + -0.012883653864264488, + -0.04345335066318512, + -0.0007069035200402141, + -0.015077848918735981, + 0.022703712806105614, + -0.0025129748973995447, + 0.0181497223675251, + -0.026115065440535545, + -0.02722458355128765, + -0.004959709942340851, + 0.00356660271063447, + 0.03457720950245857, + 0.012155015021562576, + 0.018646521493792534, + 0.0038522621616721153, + -0.022654034197330475, + -0.03437848761677742, + 0.010763977654278278, + -0.04113495722413063, + -0.035305846482515335, + -0.02631378546357155, + 0.027787622064352036, + -0.007083525415509939, + -0.03316961228847504, + 0.008851301856338978, + 0.0015255868202075362, + 0.003815002040937543, + 0.012469653971493244, + -0.008271702565252781, + -0.015516688115894794, + 0.001012227963656187, + -0.02351515181362629, + -0.0001919921051012352, + -0.011235936544835567, + 0.009472300298511982, + -0.022190354764461517, + 0.039478957653045654, + -0.018613401800394058, + -0.010888177901506424, + 0.0663723424077034, + -0.0038005122914910316, + -0.014531370252370834, + -0.0040054419077932835, + -0.006106487475335598, + 0.010598378255963326, + -0.045274946838617325, + 0.0015007469337433577, + -0.0016901515191420913, + -0.004139991477131844, + 0.03580264747142792, + -0.018464362248778343, + -0.009803500026464462, + 0.04328775033354759, + 0.010399658232927322, + 0.023680752143263817, + 0.012701493687927723, + -0.005456508602946997, + 0.007029705680906773, + 0.00441737100481987, + 0.013885531574487686, + 0.0030159838497638702, + -0.03008945845067501, + 0.02960921823978424, + -0.011931455694139004, + -0.028880581259727478, + -0.010896457359194756, + 0.03550456836819649, + -0.02883090078830719, + 0.029162099584937096, + -0.005651088431477547, + 0.008010883815586567, + -0.01803380250930786, + 0.01922612078487873, + -0.008801622316241264, + 0.0003705292474478483, + 0.003504502819851041, + -0.03971079736948013, + 0.0405719168484211, + -0.023846350610256195, + -0.021892275661230087, + -0.021229876205325127, + -0.019259240478277206, + 0.030238498002290726, + 0.002616474637761712, + -0.018050363287329674, + -0.02883090078830719, + 0.004558130633085966, + -0.022355953231453896, + 0.025237388908863068, + -0.0020451557356864214, + 0.018066922202706337, + 0.023531710729002953, + -0.0007436459418386221, + 0.030652496963739395, + -0.011260776780545712, + -0.01730516366660595, + 0.03653128445148468, + -0.013719932176172733, + -0.01310721319168806, + -0.0347428098320961, + -0.014713529497385025, + 0.0421285517513752, + -0.022952113300561905, + -0.015483568422496319, + -0.012759453617036343, + -0.0041213613003492355, + 0.014051130972802639, + -0.012933333404362202, + -0.020683396607637405, + 0.008230303414165974, + 0.04004199802875519, + 0.0041648312471807, + 0.019789159297943115, + 0.018729321658611298, + 0.0014303670031949878, + -0.032325051724910736, + 0.014390610158443451, + 0.013206573203206062, + 0.04434758797287941, + 0.028483141213655472, + 0.010085019282996655, + 0.011600255966186523, + 0.024922749027609825, + -0.002049295697361231, + -0.017570123076438904, + -0.018779002130031586, + 0.03696184232831001, + 0.010134698823094368, + 0.013918651267886162, + 0.0009190781274810433, + 0.017984123900532722, + 0.0041275713592767715, + -0.015839606523513794, + 0.028251301497220993, + 0.02273683249950409, + 0.022041315212845802, + -0.0008725032093934715, + 0.03210977464914322, + 0.025452667847275734, + 0.0031401836313307285, + -0.012676654383540154, + 0.037458643317222595, + -0.04149927571415901, + 0.057098761200904846, + -0.030039777979254723, + 0.02065027691423893, + 0.021925395354628563, + -0.040505677461624146, + -0.01319001242518425, + -0.023730430752038956, + -0.004868629854172468, + 0.0006080612656660378, + -0.007741784211248159, + 0.03934647887945175, + -0.03263969346880913, + 0.0256679467856884, + 0.025121469050645828, + 0.005059069488197565, + -0.0017532863421365619, + -0.006284506991505623, + -0.02763858251273632, + -0.01270977407693863, + 0.008917541243135929, + 0.013844131492078304, + 0.024558428674936295, + -0.01713956519961357, + 0.023564832285046577, + -0.03383200988173485, + 0.004732010420411825, + 0.043652068823575974, + 0.037392403930425644, + -0.005303329322487116, + 0.003467242931947112, + 0.02555202692747116, + 0.026578744873404503, + 0.002736534457653761, + -0.020335638895630836, + 0.01922612078487873, + 0.003891591913998127, + -0.0006722311372868717, + 0.016245326027274132, + 0.0314970538020134, + -0.0211305171251297, + 0.013661972247064114, + 0.0017895112978294492, + 0.024160990491509438, + 0.011840376071631908, + 0.020799316465854645, + 0.005477208644151688, + 0.01495364960283041, + 0.005054929759353399, + -0.0029166240710765123, + 0.0013372172834351659, + 0.03325241059064865, + 0.014903969131410122, + 0.007485104724764824, + -0.0013454972067847848, + -0.004558130633085966, + -0.02136235684156418, + 0.0031960734631866217, + -0.015210328623652458, + -0.027025863528251648, + -0.01879556104540825, + -0.023415792733430862, + 0.038286641240119934, + 0.002939393976703286, + -0.0034941527992486954, + -0.014167050831019878, + 0.04494374617934227, + -0.006002987734973431, + -0.005899487994611263, + 0.007853563874959946, + 0.02661186456680298, + -0.01920956000685692, + 0.035603925585746765, + -0.002647524466738105, + 0.010573538020253181, + -0.009894579648971558, + 0.00046083281631581485, + 0.01968980021774769, + -0.025518907234072685, + -0.0451093465089798, + -0.02214067429304123, + -0.0063631669618189335, + -0.029559539631009102, + -0.0027427442837506533, + 0.009314981289207935, + -0.018315322697162628, + -0.013769611716270447, + 0.005746308248490095, + 0.0007928083650767803, + 0.006971745751798153, + 0.0285825002938509, + -0.01050729863345623, + 0.01982227899134159, + 0.02167699486017227, + 0.01611284725368023, + -0.007253265008330345, + 0.027439864352345467, + 0.005224669352173805, + 0.022190354764461517, + -0.018050363287329674, + 0.026529066264629364, + -0.030106017366051674, + -0.03343456983566284, + -0.03437848761677742, + 0.01339701283723116, + 0.010995817370712757, + 0.0012595923617482185, + 0.007410584948956966, + -0.0033182031475007534, + 0.029046179726719856, + -0.011674775741994381, + -0.023448912426829338, + 0.01044933870434761, + -0.015458728186786175, + -0.006317627150565386, + 0.003968182019889355, + 0.0029787239618599415, + 0.013811011798679829, + -0.01570712774991989, + 0.003881242126226425, + -0.019010839983820915, + 0.002771724248304963, + -0.008048143237829208, + 0.030818097293376923, + 0.004508450627326965, + 0.03653128445148468, + 0.012825693935155869, + -0.006334186997264624, + -0.01587272807955742, + 0.019805720075964928, + -0.023382671177387238, + 0.022769954055547714, + 0.01190661545842886, + -0.023647630587220192, + 0.012395134195685387, + 0.007087665610015392, + 0.025171147659420967, + -0.03646504506468773, + 0.02811882272362709, + -0.01570712774991989, + 0.004500170703977346, + -0.00024982262402772903, + -0.007613444235175848, + 0.0019633909687399864, + -0.009770380333065987, + 0.0023825650569051504, + 0.024045070633292198, + 0.03144737705588341, + -0.009844900108873844, + 0.03831976279616356, + 0.015897566452622414, + 0.03540520742535591, + 0.01600520685315132, + -0.0018816260853782296, + -0.03576952591538429, + 0.01856372132897377, + -0.023846350610256195, + -0.05931779742240906, + -0.007451984565705061, + -0.010333418846130371, + -0.06282851099967957, + 0.013868971727788448, + -0.05117029324173927, + 0.007365044672042131, + -0.010970977135002613, + 0.028185062110424042, + -0.013753051869571209, + -0.029278019443154335, + 0.0034775929525494576, + -0.010581818409264088, + -0.014258130453526974, + 0.0008994131349027157, + 0.007108365185558796, + 0.003053243737667799, + -0.03151361644268036, + 0.022240033373236656, + -0.0068558258935809135, + -0.01563260704278946, + 0.02651250548660755, + 0.014705250039696693, + -0.027257703244686127, + 0.04792454093694687, + 0.04732838273048401, + -0.012742893770337105, + -0.02017003856599331, + -0.019888518378138542, + 0.006288647186011076, + -0.004781689960509539, + 0.009356380440294743, + 0.0023887751158326864, + -0.0018899061251431704, + -0.0225546732544899, + 0.012900213710963726, + -0.016990525647997856, + -0.005642808508127928, + -0.007087665610015392, + 0.010499018244445324, + 0.02339923195540905, + 0.0039536920376122, + 0.0023266752250492573, + 0.0098200598731637, + 0.009182500652968884, + 0.006027827505022287, + 0.02046811766922474, + -0.018663082271814346, + 0.012279214337468147, + -0.004293171223253012, + 0.012395134195685387, + 0.011467776261270046, + -0.033815450966358185, + 0.006135467439889908, + 0.005129449535161257, + 0.010482458397746086, + 0.01879556104540825, + 0.04597046598792076, + -0.029774818569421768, + -0.007423004601150751, + -0.029774818569421768, + 0.02770482376217842, + -0.010523858480155468, + -0.04752710089087486, + -0.02076619677245617, + -0.01713956519961357, + -0.01480460911989212, + -0.01630328595638275, + -0.011111737228929996, + 0.009687580168247223, + 0.01773572340607643, + 0.03288809210062027, + 0.0309836957603693, + -0.009000341407954693, + -0.00746026448905468, + -0.003862611949443817, + -0.02823474258184433, + 0.01462244987487793, + -0.008296542800962925, + 0.035537686198949814, + 0.00038294921978376806, + 0.018249083310365677, + 0.011948015540838242, + -0.017354844138026237, + -0.019176440313458443, + -0.007017285563051701, + 0.007273965049535036, + -0.029278019443154335, + -0.018100041896104813, + 0.013181732967495918, + -0.00499696983024478, + 0.004901750013232231, + 0.003123623551800847, + 0.000316709338221699, + 0.009952539578080177, + 0.030934017151594162, + -0.01676696538925171, + 0.0047154501080513, + -0.012138455174863338, + -0.001009122934192419, + -0.04918310046195984, + 0.011509176343679428, + -0.031016815453767776, + 0.01232061441987753, + -0.000969275482930243, + 0.007770764175802469, + -0.03808792307972908, + 0.004893470089882612, + 0.006048527546226978, + -0.008027443662285805, + -0.011691335588693619, + 0.0002597844577394426, + 0.005721468012779951, + 0.016319846734404564, + -0.008077123202383518, + -0.027075543999671936, + -0.006226547062397003, + -0.003932991996407509, + -0.00740230455994606, + -0.006160307209938765, + 0.003398932982236147, + -0.00856150221079588, + 0.0003643192467279732, + -0.03782296180725098, + -0.03997575864195824, + 0.0063424669206142426, + 0.019855398684740067, + -0.049514297395944595, + 0.011310456320643425, + -0.004034421872347593, + -0.006346607115119696, + 0.02835066244006157, + 0.004438071046024561, + 0.02142859622836113, + -0.01970635913312435, + -0.012519334442913532, + 0.03167921304702759, + 0.01300785318017006, + 0.008652581833302975, + 0.007928083650767803, + 0.0028193341568112373, + -0.032192572951316833, + 0.003804652253165841, + 0.0165268462151289, + 0.04361895099282265, + 0.012585573829710484, + 0.0037384124007076025, + -0.0013330772053450346, + -0.009091421030461788, + -0.001920956070534885, + 0.0007705559255555272, + 0.03427913039922714, + 0.011741016060113907, + 0.0143243707716465, + 0.026164745911955833, + -0.015359368175268173, + 0.03871719911694527, + 0.00889270193874836, + 0.015334528870880604, + 0.00249848491512239, + -0.03341801092028618, + -0.035074006766080856, + -0.017089884728193283, + 0.004636790603399277, + 0.030188817530870438, + -0.009033461101353168, + 0.001888871076516807, + 0.018580282106995583, + 0.000545443850569427, + 0.02406163141131401, + -0.008619462139904499, + -0.014498250558972359, + -0.001595966750755906, + 0.009927699342370033, + 0.00044918907224200666, + 0.005957447923719883, + 0.014026290737092495, + 0.0271583441644907, + -0.00787840411067009, + 0.0293608196079731, + 0.012585573829710484, + -0.0007110435399226844, + -0.009240460582077503, + 0.010962697677314281, + -0.00419381121173501, + 0.0005180164589546621, + -0.047361504286527634, + 0.00954682007431984, + -0.05083909630775452, + -0.010888177901506424, + -0.015955526381731033, + -0.008743662387132645, + -0.02179291471838951, + 0.004034421872347593, + -0.009215621277689934, + 0.015856167301535606, + -0.03682936355471611, + -0.019739478826522827, + -0.01497848890721798, + -0.0002784144307952374, + -0.010027059353888035, + 0.010441058315336704, + 0.03825351968407631, + -0.035968247801065445, + -0.011591976508498192, + -0.01104549691081047, + -0.026297226548194885, + -0.009199061430990696, + -0.01629500649869442, + 0.016278445720672607, + -0.029807938262820244, + 0.02046811766922474, + 0.008027443662285805, + -0.01934204064309597, + -0.012270934879779816, + 0.0019106060499325395, + 0.021693555638194084, + 0.01074741780757904, + -0.028251301497220993, + -0.01489568967372179, + 0.0023742851335555315, + -0.02972513809800148, + -0.005067349411547184, + -0.012701493687927723, + -0.016096286475658417, + 0.06282851099967957, + 0.02573418617248535, + 0.009844900108873844, + 0.002413615118712187, + -0.03343456983566284, + -0.009927699342370033, + 0.03749176114797592, + -0.0007317435229197145, + -0.032192572951316833, + 0.01576508767902851, + -0.02697618491947651, + 0.01564916782081127, + 0.032391294836997986, + 0.0011333227157592773, + -0.023250192403793335, + -0.008429022505879402, + 0.046831585466861725, + -0.02596602588891983, + -0.03451097011566162, + 0.012825693935155869, + 0.009232181124389172, + -0.0013030623085796833, + 0.008586342446506023, + 0.006433546543121338, + 0.008350363001227379, + 0.024624669924378395, + -0.002123815705999732, + -0.004268330987542868, + -0.008184763602912426, + 0.006690226029604673, + -0.023233631625771523, + 0.010946137830615044, + -0.01575680822134018, + -0.012022535316646099, + -0.08531694114208221, + -0.026727784425020218, + -0.008743662387132645, + 0.03138113394379616, + 0.007344345096498728, + -0.013355612754821777, + -0.008934102021157742, + 0.002823474118486047, + -0.012684933841228485, + 0.01316517312079668, + 0.009944259189069271, + -0.016990525647997856, + 0.007265685126185417, + 0.032275374978780746, + 0.00793636403977871, + 0.0011767925461754203, + 0.00027323944959789515, + -0.007323645055294037, + 0.026363465934991837, + -0.004980409983545542, + 0.0023266752250492573, + 0.018663082271814346, + 0.01879556104540825, + -0.009530260227620602, + -0.009124541655182838, + 0.04815638065338135, + -0.026694664731621742, + 0.001161267631687224, + -0.024160990491509438, + -0.002231455408036709, + 0.016675885766744614, + 0.03144737705588341, + -0.021229876205325127, + 0.010548698715865612, + 0.003446542890742421, + 0.0218425951898098, + 0.011360136792063713, + -0.0016860115574672818, + 0.034113530069589615, + 0.005978147499263287, + 0.0002258882886962965, + -0.009265300817787647, + -0.01790132373571396, + 0.0025150447618216276, + -0.005729748401790857, + -0.02493930794298649, + 0.010142979212105274, + -0.038054801523685455, + 0.007166325114667416, + 0.004582970403134823, + 0.019308920949697495, + 0.019027400761842728, + 0.007249125279486179, + -0.026297226548194885, + 0.012585573829710484, + 0.0008714682189747691, + 0.029294580221176147, + -0.020865557715296745, + 0.002777934307232499, + -0.012436534278094769, + 0.07279761135578156, + 0.017205804586410522, + 0.025237388908863068, + 0.005887067876756191, + -0.027539223432540894, + 0.005576568655669689, + 0.026909945532679558, + 0.03222569450736046, + 0.035074006766080856, + -0.003964041825383902, + -0.0024674348533153534, + -0.007418864872306585, + -0.011939735151827335, + 0.021759795024991035, + 0.00759688438847661, + 0.020451558753848076, + 0.015674008056521416, + 0.006470806896686554, + 0.001938550965860486, + -0.0012802924029529095, + 0.002363935112953186, + 0.008627742528915405, + 0.00025810260558500886, + -0.003705292474478483, + -0.01582304760813713, + -0.015185488387942314, + 0.011484336107969284, + -0.020683396607637405, + -0.01683320477604866, + -0.0035252028610557318, + 0.03186137601733208, + -0.005249509122222662, + 0.041035596281290054, + 0.01641920581459999, + -0.010068459436297417, + 0.03484216704964638, + -0.00797362346202135, + 0.026644984260201454, + -0.008925821632146835, + -0.017156124114990234, + -0.010929577052593231, + -0.010076738893985748, + 0.004185531288385391, + -0.0314970538020134, + -0.014225010760128498, + 0.019971318542957306, + 0.012991293333470821, + 0.001959251007065177, + -0.00356660271063447, + -0.009894579648971558, + 0.01915988139808178, + -0.012991293333470821, + -0.02979137934744358, + -0.019491080194711685, + -0.030238498002290726, + 0.018894921988248825, + -0.01543388795107603, + -0.017934443429112434, + -0.022902432829141617, + 7.419641042361036e-5, + 0.001472802017815411, + 0.03457720950245857, + 0.014597609639167786, + -0.022521553561091423, + -0.011169697158038616, + 0.010341698303818703, + -0.011393256485462189, + -0.021511396393179893, + 0.009290141053497791, + 0.021941954270005226, + 0.008122663013637066, + -0.012130174785852432, + -0.006905505899339914, + 0.0039992318488657475, + -0.026164745911955833, + 0.0039599016308784485, + 0.042592231184244156, + -0.01214673463255167, + 0.0039661116898059845, + -0.049149978905916214, + 0.010465898551046848, + 0.010383098386228085, + -0.014655569568276405, + 0.022306274622678757, + -0.0035852326545864344, + -0.011757575906813145, + -0.002037910744547844, + -0.014142210595309734, + 0.0218425951898098, + -0.02094835601747036, + -0.032970890402793884, + -0.0022273154463618994, + 0.01190661545842886, + -0.01235373504459858, + -0.021047716960310936, + -0.027721382677555084, + -0.01486256904900074, + 0.00937294028699398, + -0.008085403591394424, + -0.011981135234236717, + -0.010225779376924038, + 0.005858087912201881, + 0.013595731928944588, + -0.018166283145546913, + 0.022240033373236656, + -0.009588220156729221, + -0.02190883457660675, + 0.00035578053211793303, + -0.015798207372426987, + -0.01097925752401352, + -0.017818523570895195, + -0.004703030455857515, + -0.022306274622678757, + -0.019971318542957306, + -0.0033244132064282894, + 0.005444088950753212, + -0.01316517312079668, + -0.010755698196589947, + 0.014688690192997456, + -0.00589534780010581, + -0.006354887038469315, + 0.022422194480895996, + -0.0005371638690121472, + 0.014870849438011646, + 0.018365001305937767, + 0.005319889169186354, + 0.0001923802337842062, + -0.0017750213155522943, + -0.00378395221196115, + -0.0012026674812659621, + 0.02661186456680298, + 0.017752284184098244, + -0.0014541719574481249, + 0.0029104140121489763, + 0.002003755886107683, + -0.002941463841125369, + 0.020401878282427788, + 0.019060520455241203, + -0.020633717998862267, + -0.01945796050131321, + -0.010962697677314281, + -0.03073529712855816, + 0.023465471342206, + 0.013868971727788448, + 0.003719782456755638, + -0.0167255662381649, + -0.04232727363705635, + 0.019193001091480255, + 0.0162370465695858, + -0.009165940806269646, + 0.027125224471092224, + 0.007079385221004486, + 0.013786171562969685, + -0.0071953050792217255, + 0.00021967830252833664, + 0.0008119558333419263, + 0.004533290863037109, + 0.004777550231665373, + -0.0020927656441926956, + -0.02429346926510334, + 0.029592659324407578, + -0.004520870745182037, + 0.00823444314301014, + -0.029526419937610626, + 0.02454186975955963, + 0.008068843744695187, + 0.016642766073346138, + -0.048321980983018875, + -0.014432010240852833, + 0.01196457538753748, + -0.007915663532912731, + 0.002370145171880722, + -0.016046607866883278, + 0.008677422069013119, + -0.00012070662342011929, + -0.017338285222649574, + 0.024326590821146965, + -0.012047375552356243, + 0.028151942417025566, + -0.018779002130031586, + -0.0014624519972130656, + -0.026545625180006027, + -0.017702603712677956, + 0.005526888649910688, + 0.03204353526234627, + 0.013670251704752445, + -0.033219292759895325, + -0.006847545970231295, + -0.0029642339795827866, + 0.008304823189973831, + 0.01766948401927948, + -0.029112420976161957, + -0.012941613793373108, + 0.03398105129599571, + 0.003245753236114979, + 0.0011022727703675628, + 0.012676654383540154, + 0.013661972247064114, + 0.012386854737997055, + -0.008544942364096642, + 0.0002781556686386466, + 0.006483226548880339, + 0.02561826817691326, + -0.031132735311985016, + 0.019193001091480255, + -0.015591207891702652, + 0.0017843362875282764, + 0.015558088198304176, + 0.019325479865074158, + -0.028019461780786514, + -0.0010432779090479016, + -0.006143747363239527, + -0.008528382517397404, + -0.0056676482781767845, + 0.013587452471256256, + 0.009223900735378265, + -0.0157485269010067, + -0.022968672215938568, + 0.0012388924369588494, + 0.0016932565486058593, + -0.008313102647662163, + -0.008644302375614643, + -0.03043721802532673, + 0.0015183418290689588, + 0.005439948756247759, + -0.00010227072925772518, + 0.023796670138835907, + 0.007145625073462725, + 0.019540760666131973, + -0.0033740929793566465, + 0.002722044475376606, + 0.020020999014377594, + 0.012742893770337105, + -0.008495262823998928, + 0.009389501065015793, + -0.0003594029985833913, + -0.004951430018991232, + -0.0009314980707131326, + 0.019656678661704063, + -0.004084101412445307, + 0.004375970922410488, + -0.013686811551451683, + -0.03822040185332298, + -0.0019230260513722897, + -0.000953233044128865, + -0.00036664798972196877, + 0.010706017725169659, + -0.005228809081017971, + -0.014398890547454357, + 0.00034336053067818284, + 0.0017988262698054314, + -5.5210668506333604e-5, + -0.012171574868261814, + -0.013587452471256256, + -0.013388732448220253, + -0.006980025675147772, + -4.042960426886566e-5, + -0.0035479727666825056, + 0.004367690999060869, + -0.021561075001955032, + 0.010772258043289185, + -0.0024819248355925083, + 0.0079073840752244, + 0.019954759627580643, + -0.03497464954853058, + -0.011649936437606812, + 0.018646521493792534, + 0.0014676270075142384, + 0.016104567795991898, + 0.005663508549332619, + -0.006425266619771719, + 0.035835765302181244, + -0.0073691848665475845, + 0.006470806896686554, + -0.004765130113810301, + 0.002258365275338292, + -0.015160649083554745, + -0.025022108107805252, + 0.00441737100481987, + 0.0010722577571868896, + 0.03156329691410065, + 0.04441382735967636, + -0.026164745911955833, + 0.01363713201135397, + 0.029509859159588814, + 0.009596500545740128, + 0.002173495478928089, + 0.020219719037413597, + 0.048553820699453354, + -0.020567478612065315, + -0.00957994069904089, + 0.030404098331928253, + 0.001434507081285119, + 0.016030047088861465, + 0.00830068252980709, + 0.026396585628390312, + -0.0068641058169305325, + 0.01184865552932024, + -0.03146393597126007, + -0.012742893770337105, + -0.021511396393179893, + -0.012933333404362202, + -0.0008787132101133466, + 0.0377236008644104, + 0.004868629854172468, + 0.04275783151388168, + 0.016220485791563988, + -0.005974007770419121, + 0.005841528065502644, + -0.021859154105186462, + 0.005419248715043068, + 0.00556828873232007, + -0.014738369733095169, + 0.011683056131005287, + -0.016485445201396942, + -0.0015100619057193398, + -0.00644596666097641, + -0.01647716574370861, + -0.008213743567466736, + -0.0006251386948861182, + -0.014258130453526974, + -0.00299114384688437, + -0.03497464954853058, + -0.004433930851519108, + -0.005195689387619495, + -0.0019903008360415697, + -0.007004865445196629, + 0.00856150221079588, + 0.009944259189069271, + -0.011600255966186523, + -0.011053777299821377, + -0.004055121447890997, + 0.022637473419308662, + -0.0003208493290003389, + 0.011484336107969284, + -0.0029497439973056316, + -0.021975073963403702, + -0.0008725032093934715, + -0.02435971051454544, + 0.011741016060113907, + -0.004226931370794773, + 0.0034486129879951477, + -0.011144856922328472, + 0.009770380333065987, + 0.0006261736853048205, + 0.002680644392967224, + 0.01080537773668766, + 0.010341698303818703, + 0.014481689780950546, + -0.025055227801203728, + -0.03141425549983978, + 0.011956294998526573, + 0.005746308248490095, + -0.029741698876023293, + -0.01232061441987753, + -0.020931797102093697, + -0.0014707319205626845, + 0.026048826053738594, + 0.005245369393378496, + 0.010076738893985748, + -0.007253265008330345, + -0.0017543213907629251, + 0.00048515526577830315, + -0.014109090901911259, + -0.02030251733958721, + 0.01462244987487793, + -0.011840376071631908, + -0.022935552522540092, + 0.007948783226311207, + 0.02530362829566002, + -0.0026827144902199507, + -0.00010492291039554402, + 0.011451216414570808, + 0.0013496371684595942, + 0.03091745637357235, + -0.0025792147498577833, + 0.018398122861981392, + -0.028400341048836708, + 0.00829240307211876, + -0.04027383774518967, + -0.036266326904296875, + -0.011004097759723663, + 0.011211097240447998, + -0.01056525856256485, + -0.009331541135907173, + -0.002546094823628664, + 0.01849748194217682, + -0.021875714883208275, + 0.018282203003764153, + 0.003469312796369195, + 0.008068843744695187, + -0.02018659934401512, + 0.04597046598792076, + -0.021147076040506363, + 0.006595006212592125, + 0.02227315492928028, + 0.0024446649476885796, + 0.006288647186011076, + -0.023564832285046577, + 0.02965889871120453, + 0.014481689780950546, + 0.006077507510781288, + -0.028549380600452423, + 0.0039599016308784485, + -0.011128297075629234, + 0.011832095682621002, + 0.036928724497556686, + -0.013173452578485012, + -0.03696184232831001, + -0.02250499278306961, + -0.005510328803211451, + -0.03335177153348923, + -0.010142979212105274, + -0.00546064879745245, + -0.007344345096498728, + -0.006131327245384455, + -0.019921639934182167, + -0.0005770113202743232, + 0.0031815834809094667, + -0.017818523570895195, + 0.012974733486771584, + -0.0181497223675251, + -0.0188618004322052, + 0.010349978692829609, + 0.01968980021774769, + -0.0010086054680868983, + 0.022587792947888374, + -0.01333905290812254, + -0.0032478233333677053, + 0.023432351648807526, + -0.015077848918735981, + 0.01506956946104765, + -0.004171041306108236, + 0.011484336107969284, + 0.02560170739889145, + -0.014274690300226212, + -0.010383098386228085, + -0.00850354228168726, + 0.03540520742535591, + 0.0020482607651501894, + 0.010656338185071945, + -0.010656338185071945, + -0.02149483561515808, + 0.004264191258698702, + -0.002363935112953186, + -0.016907725483179092, + 0.0010179204400628805, + 0.012767734006047249, + -0.001017402857542038, + -0.0035065726842731237, + -0.008019163273274899, + 0.00877678208053112, + 0.003102923510596156, + -0.0036121425218880177, + 0.004901750013232231, + 0.002035840880125761, + 0.0016860115574672818, + 0.0037094324361532927, + -0.02406163141131401, + -0.004024071618914604, + -0.0009195955935865641, + -0.014365770854055882, + 0.001045865355990827, + -0.007894963957369328, + 0.020070679485797882, + 0.019540760666131973, + -0.003032543696463108, + -0.014846009202301502, + -0.02447563037276268, + -0.019805720075964928, + 0.005659368354827166, + 0.002167285652831197, + -0.008325522765517235, + 0.011716175824403763, + 0.0025440247263759375, + -0.00161873665638268, + 0.0009796255035325885, + -0.0077003841288387775, + -0.013612291775643826, + -0.014713529497385025, + 0.006599146407097578, + 0.01265181414783001, + -0.02131267637014389, + -0.001988230971619487, + 0.0021445155143737793, + 0.08505198359489441, + 0.001821596291847527, + -0.0028607340063899755, + -0.005009389482438564, + -0.0004243491275701672, + -0.02459155023097992, + 0.0007157010259106755, + 0.008209602907299995, + 0.01778540387749672, + -0.002815194195136428, + -0.007091805338859558, + -0.01998787932097912, + 0.007832864299416542, + 0.000598228769376874, + -0.0218425951898098, + -0.006988305598497391, + 0.0065370467491447926, + 0.02931113913655281, + 0.018878361210227013, + 0.006160307209938765, + 0.00370115227997303, + -0.02048467844724655, + -0.010300299152731895, + 0.002407405059784651, + -0.005845667794346809, + 0.013206573203206062, + -0.004951430018991232, + 0.01695740595459938, + 0.017288604751229286, + 0.015839606523513794, + -0.0027282543014734983, + 0.005468928720802069, + -0.006127187516540289, + -0.021643875166773796, + -0.0009071756503544748, + 0.009281860664486885, + -0.006371446885168552, + 0.0025833547115325928, + -0.004338711034506559, + 0.006756465882062912, + -0.01047417800873518, + -0.011484336107969284, + 0.025320187211036682, + 0.021759795024991035, + -0.009472300298511982, + -0.009165940806269646, + 0.001741901389323175, + -0.006781306117773056, + 0.002029630821198225, + 0.0021165707148611546, + -0.008077123202383518, + -0.022306274622678757, + 0.00948886014521122, + 0.01569056697189808, + 0.009563379921019077, + 0.005684208124876022, + 0.017570123076438904, + -0.0038377721793949604, + -0.0006023687892593443, + -0.005353008862584829, + -0.025518907234072685, + 0.002093800576403737, + -0.016733845695853233, + -0.023316431790590286, + -0.009728980250656605, + -0.026727784425020218, + -0.012958173640072346, + -0.024343149736523628, + -0.0023059751838445663, + -0.002314255340024829, + -0.011053777299821377, + -0.006197567097842693, + 0.0067274863831698895, + -0.03386513143777847, + -0.010027059353888035, + 0.01480460911989212, + 0.0017025715205818415, + 0.011542296037077904, + 0.005439948756247759, + 0.013546052388846874, + 0.011120016686618328, + 0.0121218953281641, + -0.012569013983011246, + -0.027141783386468887, + -0.018729321658611298, + 0.01119453739374876, + 0.013173452578485012, + -0.04153239354491234, + 0.01582304760813713, + -0.02131267637014389, + -0.02195851504802704, + 3.5028209822485223e-5, + 0.003645262448117137, + -0.010159539058804512, + 0.011004097759723663, + 0.0058622281067073345, + -3.20606773129839e-6, + -0.015185488387942314, + 0.016386086121201515, + -0.0019188860896974802, + 0.014390610158443451, + 0.01630328595638275, + -0.010598378255963326, + -0.002575074788182974, + -0.005195689387619495, + 0.0017046415014192462, + 0.019673239439725876, + 0.01017609890550375, + -0.01867964118719101, + 0.0017646714113652706, + 9.735448838910088e-5, + -0.02028595842421055, + 0.006077507510781288, + 0.012858813628554344, + -0.018315322697162628, + 0.0034341230057179928, + -0.00017064527492038906, + -0.0006950010429136455, + -0.0023183953016996384, + -0.017868204042315483, + -0.021461715921759605, + 0.01000221911817789, + 0.005949167534708977, + -0.013711651787161827, + -0.0014448569854721427, + 0.01501160953193903, + 0.005439948756247759, + -0.006251387298107147, + -0.01927580125629902, + -0.004185531288385391, + 0.0019261310808360577, + 0.029443619772791862, + 0.009223900735378265, + -0.02250499278306961, + 0.002680644392967224, + 0.006520486436784267, + -0.014332650229334831, + -0.009422620758414268, + 0.02005411870777607, + -0.021875714883208275, + 0.016940845176577568, + -0.024210670962929726, + 0.006052667740732431, + 0.014109090901911259, + -0.010697738267481327, + 0.018696201965212822, + -0.01232061441987753, + -0.012842253781855106, + 0.010896457359194756, + -0.004050981719046831, + 0.016460606828331947, + -0.030106017366051674, + 0.014630730263888836, + -0.005945027805864811, + 0.010010499507188797, + 0.006491506472229958, + -0.02447563037276268, + 0.009654460474848747, + -0.00595330772921443, + -0.004156551323831081, + 0.010515578091144562, + 0.007741784211248159, + -0.013115492649376392, + 0.003214703407138586, + -0.000686203595250845, + -0.0007358834845945239, + 0.007741784211248159, + 0.015409048646688461, + 0.00782044418156147, + -0.0043221511878073215, + 0.0025295347440987825, + 5.377137313189451e-6, + 0.01506956946104765, + -0.02280307374894619, + 0.0018733461620286107, + -0.0020596457179635763, + -0.002871084026992321, + -0.002757234266027808, + -0.00279863434843719, + 0.02118019573390484, + 0.005195689387619495, + -0.010192658752202988, + 0.008528382517397404, + 0.00276965438388288, + 0.008209602907299995, + 0.000202730210730806, + 0.009753819555044174, + -0.02083243802189827, + 0.006789586041122675, + -0.001448997063562274, + -0.020517798140645027, + 0.021710114553570747, + -0.005129449535161257, + -0.009836619719862938, + -0.01501160953193903, + -0.00913282111287117, + 0.010126419365406036, + 0.019789159297943115, + 0.016485445201396942, + -0.016328126192092896, + 0.005377849098294973, + -0.0023742851335555315, + 0.009447460994124413, + -0.006023687776178122, + 0.0015266218688338995, + -0.02459155023097992, + -0.005713188089430332, + -0.02548578754067421, + -0.012569013983011246, + -0.003328553168103099, + -0.018282203003764153, + -0.020219719037413597, + 0.005812548100948334, + 0.006110627204179764, + -0.01149261649698019, + 0.001516271848231554, + 0.0027820742689073086, + 0.014398890547454357, + 0.01647716574370861, + 0.0006380761624313891, + 0.01803380250930786, + 0.007758344057947397, + 0.015458728186786175, + -0.014183610677719116, + -0.0037259922828525305, + -0.004131711553782225, + 0.024459069594740868, + 0.0004704065213445574, + 0.0031567434780299664, + -0.005419248715043068, + 0.021279556676745415, + -0.009331541135907173, + -0.0055186087265610695, + 0.032275374978780746, + -0.0011198676656931639, + 0.03144737705588341, + 0.004839649889618158, + 0.001361022237688303, + 0.0024053349625319242, + -0.011948015540838242, + -0.008636021986603737, + -0.0021424456499516964, + -0.016162525862455368, + -0.016576526686549187, + 0.004827230237424374, + -0.005228809081017971, + -0.004181391559541225, + 0.00589534780010581, + -0.000954785558860749, + -3.24568864016328e-5, + 0.005762868095189333, + -0.010267178528010845, + -0.008466282859444618, + 0.021279556676745415, + 0.010242339223623276, + -0.014133931137621403, + -0.008271702565252781, + 0.004806530196219683, + -0.01543388795107603, + -0.007547204382717609, + 0.0037032223772257566, + 0.01587272807955742, + -0.017752284184098244, + -0.007178745232522488, + -0.009157661348581314, + 0.017205804586410522, + -0.035372085869312286, + -0.0026744345668703318, + 0.005448228679597378, + 0.015566367655992508, + -0.010225779376924038, + 0.004284891299903393, + 0.012527613900601864, + 0.020567478612065315, + -0.008453862741589546, + -0.00948886014521122, + -0.0028400341980159283, + -0.02358139120042324, + 0.009116261266171932, + 0.01006017904728651, + -0.02376355044543743, + 0.013902091421186924, + 3.553762326191645e-6, + -0.025634827092289925, + -0.014084250666201115, + -0.022786512970924377, + 0.005191549193114042, + 0.020848996937274933, + -0.0005283664213493466, + 0.00987801980227232, + 0.008867861703038216, + -0.004429790657013655, + 0.00069241359597072, + -0.015450447797775269, + -0.0020544708240777254, + 0.0011695475550368428, + -0.010316858999431133, + 0.01289193332195282, + 0.017768843099474907, + 0.007232564967125654, + -0.006218267139047384, + 0.002771724248304963, + -0.004711310379207134, + -0.028334101662039757, + 0.021809475496411324, + 0.012916773557662964, + 0.02273683249950409, + -0.0014024220872670412, + -0.003906081896275282, + 0.011467776261270046, + -0.00041995037463493645, + -0.010258899070322514, + -0.006156167481094599, + -0.013454972766339779, + -0.009505419991910458, + -0.007745923940092325, + 0.00408824160695076, + 0.02108083665370941, + -0.02571762725710869, + 0.011765855364501476, + -0.0035417627077549696, + 0.0058663678355515, + 0.003496222896501422, + 0.01922612078487873, + 0.011393256485462189, + -0.0051667094230651855, + 0.008346223272383213, + 0.00800260342657566, + 0.008246863260865211, + -0.026462825015187263, + 0.025932906195521355, + -0.006454246584326029, + -0.023068033158779144, + 0.009273581206798553, + 0.00948886014521122, + 0.023266751319169998, + -0.005949167534708977, + -0.0024736449122428894, + -0.009919419884681702, + 0.0009247706038877368, + -0.018315322697162628, + -0.01271805353462696, + -0.009803500026464462, + 0.0010370678501203656, + 0.0007451984565705061, + 0.00940606091171503, + 0.005253649316728115, + -0.005390268750488758, + 0.0039909519255161285, + 0.016874605789780617, + 0.005887067876756191, + -0.002152795670554042, + 0.00940606091171503, + 0.013074093498289585, + -0.0105321379378438, + -0.01310721319168806, + 0.023564832285046577, + 0.024194110184907913, + -0.010995817370712757, + 0.00940606091171503, + -0.03421289101243019, + -0.003643192583695054, + -0.007555484306067228, + -0.006404567044228315, + 0.010772258043289185, + -0.011227657087147236, + -0.006768885999917984, + 0.009414340369403362, + -0.024144429713487625, + -0.004351131152361631, + -0.007344345096498728, + -0.014465129934251308, + -0.017272043973207474, + -0.01116141676902771, + -0.016104567795991898, + 0.021627316251397133, + -0.006483226548880339, + 0.004409091081470251, + -0.009969099424779415, + -0.0027199743781238794, + 0.017288604751229286, + -0.004707170184701681, + -0.01023405883461237, + -0.0041358512826263905, + 0.010722577571868896, + 0.029228338971734047, + 0.009157661348581314, + 0.024376269429922104, + 0.0004178803937975317, + -0.012660093605518341, + -0.0001879814954008907, + -0.0043180109933018684, + 0.015243448317050934, + 0.005286769010126591, + -0.005845667794346809, + 0.015409048646688461, + -0.015061289072036743, + 0.02089867740869522, + -0.004959709942340851, + 0.007427144795656204, + -0.014092531055212021, + -0.008064703084528446, + 0.008727101609110832, + 0.010821937583386898, + -0.0002936806413345039, + -0.023465471342206, + 0.0032540333922952414, + 0.008267562836408615, + 0.04149927571415901, + -0.019722919911146164, + 0.007451984565705061, + 0.012519334442913532, + -0.02328331209719181, + 0.0029518138617277145, + 0.01635296642780304, + 0.0003982154303230345, + 0.0027820742689073086, + -0.003011843888089061, + 0.013546052388846874, + 0.0007224284927360713, + 0.01253589428961277, + -0.007675544358789921, + 0.029211780056357384, + 0.0019892659038305283, + 0.013835851103067398, + -0.014531370252370834, + 0.034113530069589615, + 0.004678190220147371, + 0.0022066154051572084, + -0.004624370485544205, + 0.008255142718553543, + -0.0017201664159074426, + -0.02692650444805622, + 0.015334528870880604, + -0.029559539631009102, + -0.013653691858053207, + 0.03547144681215286, + -0.020434997975826263, + 0.01044933870434761, + 0.0028876441065222025, + -0.014109090901911259, + -0.003777742153033614, + -0.0055186087265610695, + 0.004930729977786541, + 0.007265685126185417, + 0.019077081233263016, + 0.0021362355910241604, + 0.02667810581624508, + -0.0022397353313863277, + -0.015798207372426987, + -0.005754588171839714, + 0.01569056697189808, + -0.019921639934182167, + -0.006040247622877359, + -0.020501237362623215, + 0.00031489809043705463, + 0.005514468532055616, + -0.002780004171654582, + 0.02561826817691326, + -0.037458643317222595, + 0.0030780837405472994, + -0.011302176862955093, + 0.007257405202835798, + 0.015260008163750172, + -0.016733845695853233, + -0.002709624357521534, + 0.009472300298511982, + 0.012751174159348011, + -0.0043097310699522495, + 0.019557319581508636, + -0.012395134195685387, + 0.02452530898153782, + 0.013868971727788448, + 0.005626248195767403, + 0.008569782599806786, + 0.017106445506215096, + -0.024392830207943916, + 0.010341698303818703, + -0.008743662387132645, + -0.0026785745285451412, + -0.01155057642608881, + -0.005328169092535973, + -0.0070131453685462475, + 0.00238670501857996, + 0.005340589210391045, + -0.015177208930253983, + 0.007029705680906773, + 0.018398122861981392, + -0.008727101609110832, + 0.005092189647257328, + 0.021445155143737793, + 0.016245326027274132, + 0.012453094124794006, + -0.013173452578485012, + 0.01790132373571396, + -0.021627316251397133, + -0.0010437953751534224, + 0.018431242555379868, + -0.012701493687927723, + -0.003771532326936722, + -0.0009863530285656452, + -0.0030408238526433706, + 0.00803158339112997, + 0.013264533132314682, + 0.03427913039922714, + -0.01160853635519743, + -0.01849748194217682, + 0.010151258669793606, + 0.01688288524746895, + 0.012610414065420628, + -0.006412846967577934, + 0.005986427888274193, + -0.018878361210227013, + 0.003790162270888686, + -0.001495571923442185, + 0.00957994069904089, + 0.0024177550803869963, + -0.0019250960322096944, + 0.01975603960454464, + 0.002308045281097293, + 0.002185915596783161, + -0.029708579182624817, + 0.0038605420850217342, + -0.000900448125321418, + -0.003616282483562827, + 0.01217985525727272, + 0.009265300817787647, + 0.006785445846617222, + 0.007812163792550564, + -0.005742168053984642, + -0.01110345683991909, + 0.0035127827432006598, + 0.0035024327225983143, + 0.001284432364627719, + 0.017884762957692146, + 0.013777892105281353, + 0.018944600597023964, + 0.006806145887821913, + 0.024011950939893723, + -0.022289713844656944, + -0.0017739863833412528, + 0.009265300817787647, + 0.009149380959570408, + -0.0017957213567569852, + -0.013264533132314682, + -0.024425949901342392, + 0.0033016433008015156, + 0.01838156208395958, + -0.007779044099152088, + -0.013264533132314682, + -0.006566026713699102, + 0.011625096201896667, + 0.028085703030228615, + -0.005990567617118359, + 0.006383867003023624, + -0.02046811766922474, + 0.006027827505022287, + 0.004707170184701681, + -0.001390002085827291, + 0.013471532613039017, + -0.00024374200438614935, + -0.017984123900532722, + 0.00016171841707546264, + -0.006259667221456766, + -0.0027282543014734983, + 0.0011685126228258014, + 0.013678532093763351, + 0.014498250558972359, + 0.0008771606953814626, + 0.014514810405671597, + -0.020815877243876457, + 0.0025999145582318306, + -0.011757575906813145, + -0.0036845924332737923, + -0.0009832479991018772, + -0.0059988475404679775, + -0.013562612235546112, + -0.005920188035815954, + 0.022819632664322853, + -0.008288263343274593, + 0.008942381478846073, + -0.00546064879745245, + -0.015177208930253983, + -0.0031981433276087046, + -0.0005397513741627336, + 0.006462526507675648, + 0.001357917208224535, + 0.007617584429681301, + 0.024260349571704865, + -0.01611284725368023, + 0.028036022558808327, + -0.019722919911146164, + -0.01844780147075653, + 0.008578062057495117, + 0.00543166883289814, + -0.006160307209938765, + -0.0007829758687876165, + -0.0008497332455590367, + -0.015864446759223938, + -0.026595305651426315, + 0.005767008289694786, + 0.008660862222313881, + 0.005282629281282425, + 0.0025730046909302473, + 0.011376696638762951, + 0.005249509122222662, + -0.006710926070809364, + -0.008975501172244549, + -0.01294989325106144, + 0.007170465309172869, + -0.00039562792517244816, + -0.015417328104376793, + 0.01725548505783081, + -0.008039863780140877, + 9.347324521513656e-6, + -0.001703606452792883, + 0.01940828002989292, + 0.0015483568422496319, + 0.019176440313458443, + 0.0009418480913154781, + -0.004508450627326965, + 0.006735766306519508, + 0.004272471182048321, + 0.01642748713493347, + 0.006802006158977747, + -0.003945412114262581, + 0.0016973965102806687, + 0.010258899070322514, + 0.0094309002161026, + -0.009397780522704124, + 0.00895066186785698, + 0.003076013643294573, + 0.0009780729888007045, + -0.03414664790034294, + -0.008751941844820976, + -0.0021165707148611546, + -0.02195851504802704, + 0.018066922202706337, + 0.01009329967200756, + -0.016046607866883278, + 4.550756420940161e-5, + -0.002264575334265828, + 0.004727870225906372, + -0.0007203585118986666, + 0.00592432776466012, + 0.003407212905585766, + 0.00040597791667096317, + 0.010482458397746086, + -0.013926931656897068, + -0.00235772505402565, + -0.013314212672412395, + 0.005874647758901119, + -0.009927699342370033, + 0.0023597951512783766, + -0.009331541135907173, + -0.022405633702874184, + 0.00838762242347002, + -0.024806829169392586, + 0.022488433867692947, + -0.00543166883289814, + -0.02889714017510414, + -0.030934017151594162, + -0.009323260746896267, + 0.00023779076582286507, + 0.006768885999917984, + -0.010184379294514656, + 0.0028897139709442854, + 0.02906274050474167, + -0.004351131152361631, + -0.01945796050131321, + -0.003361673094332218, + -0.0036618225276470184, + -0.012370294891297817, + 0.03510712832212448, + -0.004516730550676584, + -0.005762868095189333, + -0.007224285043776035, + -0.018613401800394058, + 0.0015245518879964948, + -0.022538114339113235, + -0.0014303670031949878, + 0.00814750324934721, + 0.008296542800962925, + 0.010275458917021751, + -1.3932041838415898e-5, + 0.014879129827022552, + -0.001978915883228183, + -0.029857618734240532, + -0.011111737228929996, + 0.007563764229416847, + -0.021511396393179893, + -0.00913282111287117, + -0.02816850133240223, + -0.019358599558472633, + 0.016162525862455368, + -0.005125309340655804, + -0.009894579648971558, + -0.008197182789444923, + -0.02149483561515808, + -0.017156124114990234, + -0.017205804586410522, + 0.004260051064193249, + 0.003270593238994479, + -0.006073367316275835, + 0.006677806377410889, + -0.005514468532055616, + 0.0002890231553465128, + 0.01630328595638275, + 0.003765322268009186, + 0.0017698463052511215, + 0.015144089236855507, + 0.005001109559088945, + 0.013811011798679829, + -0.007737644016742706, + -0.02209099382162094, + -0.029178660362958908, + -0.0016901515191420913, + 0.0006603286601603031, + -0.012643533758819103, + -0.004050981719046831, + -0.0005045614670962095, + 0.006226547062397003, + 0.005833248142153025, + -0.0010867477394640446, + -0.010987536981701851, + -0.01826564222574234, + 0.006346607115119696, + 0.013612291775643826, + -0.013562612235546112, + 0.0035189928021281958, + 0.029758259654045105, + -0.0023183953016996384, + -0.013082372955977917, + 0.01700708456337452, + -0.01486256904900074, + -0.011674775741994381, + 0.009141101501882076, + 0.01050729863345623, + -0.001484186970628798, + 0.018414681777358055, + -0.012742893770337105, + -0.023266751319169998, + -0.011028937064111233, + 0.004009581636637449, + 0.016568245366215706, + -0.008433162234723568, + -0.005042509641498327, + 0.007120785303413868, + -0.017023645341396332, + 0.009199061430990696, + -0.01119453739374876, + -0.015723688527941704, + 0.013653691858053207, + 0.0077128042466938496, + 0.015409048646688461, + 0.009232181124389172, + 0.01600520685315132, + -0.013032693415880203, + 0.007273965049535036, + 0.007017285563051701, + 0.030072897672653198, + 0.006847545970231295, + -0.012842253781855106, + 0.014299530535936356, + -0.00488104997202754, + 0.020087238401174545, + 0.003419633023440838, + -0.0051625692285597324, + -0.026462825015187263, + 0.020020999014377594, + 0.0014759069308638573, + -0.0077210841700434685, + -0.005622108466923237, + -0.03742552176117897, + -0.010888177901506424, + -0.015417328104376793, + -0.016253607347607613, + -0.005332308821380138, + 0.0018495412077754736, + 0.009737259708344936, + 0.0024881348945200443, + -0.0105321379378438, + -0.02369731105864048, + 0.0026702946051955223, + -0.03398105129599571, + -0.0039992318488657475, + 0.01778540387749672, + 0.015781648457050323, + 0.014423730783164501, + 0.005299189127981663, + 0.00850354228168726, + 0.0018816260853782296, + -0.02227315492928028, + -0.006884805858135223, + 0.023978831246495247, + 0.025634827092289925, + 0.015351088717579842, + -0.006172727327793837, + -0.02876466140151024, + -0.004247631411999464, + -0.002997353905811906, + 0.0024943449534475803, + -0.011451216414570808, + -0.017454203218221664, + -0.008122663013637066, + 0.012362014502286911, + -0.019242679700255394, + 0.009157661348581314, + 0.014614169485867023, + 0.011302176862955093, + -0.005510328803211451, + -0.014109090901911259, + -0.006917925551533699, + 0.013413572683930397, + -0.001090887701138854, + -0.012751174159348011, + 0.0036349124275147915, + -0.002976653864607215, + 0.00523708900436759, + 0.024078190326690674, + -0.0009951504180207849, + 0.02667810581624508, + 0.002343235071748495, + 0.0012306125136092305, + -0.031083056703209877, + 0.012411694042384624, + 0.009720699861645699, + 0.0021755655761808157, + 0.006379726808518171, + -0.009422620758414268, + -0.001093992730602622, + 0.005121169611811638, + -0.009671020321547985, + 0.00913282111287117, + 0.008072983473539352, + -0.013322492130100727, + -0.02071651816368103, + 0.002064820844680071, + 0.02041843719780445, + 0.004313871264457703, + 0.011384977027773857, + -0.019292360171675682, + 0.010366538539528847, + 0.0049928296357393265, + 0.015003329142928123, + 0.003568672575056553, + -0.008528382517397404, + 0.0016973965102806687, + -0.02422722987830639, + -0.021412035450339317, + 0.006152027286589146, + 0.00617686752229929, + -0.0011560926213860512, + -0.001920956070534885, + -0.008751941844820976, + 0.006106487475335598, + -0.012701493687927723, + -0.009770380333065987, + 0.015119249001145363, + -0.010573538020253181, + 0.0020906957797706127, + 0.025353308767080307, + -0.016203926876187325, + 0.005965727847069502, + 0.009919419884681702, + -0.006632266566157341, + -0.016435766592621803, + 0.001741901389323175, + -0.006371446885168552, + -0.003469312796369195, + -0.02161075547337532, + 0.0049721295945346355, + 0.0012720123631879687, + 0.001924061099998653, + 0.00907486118376255, + -0.004545710515230894, + 0.0056924885138869286, + 0.0020710306707769632, + -7.975952030392364e-5, + 0.016916004940867424, + 0.008511822670698166, + 0.001516271848231554, + -0.023482032120227814, + 0.008077123202383518, + -0.027721382677555084, + -0.020633717998862267, + 0.0094309002161026, + -0.006652966141700745, + -0.008536661975085735, + 0.0377236008644104, + 0.013769611716270447, + 0.008267562836408615, + 0.02452530898153782, + 0.008251002989709377, + -0.00359558267518878, + -0.008342082612216473, + 0.014274690300226212, + -0.002457084832713008, + 0.007704524323344231, + -0.017619803547859192, + 0.013330772519111633, + 0.0033885829616338015, + -0.02023627795279026, + -0.0005599338328465819, + -0.009397780522704124, + -0.01324797235429287, + -0.014672129414975643, + -0.00353762274608016, + -0.012030815705657005, + 0.0036701024509966373, + -0.02310115285217762, + 0.0028524540830403566, + 0.004197951406240463, + -0.010167819447815418, + 0.0041337814182043076, + 0.0013941421639174223, + 0.0016001067124307156, + -0.006425266619771719, + -0.005228809081017971, + -0.008851301856338978, + -0.0189280416816473, + 0.015400768257677555, + -0.0011364276288077235, + 0.020087238401174545, + 0.004914169665426016, + -0.006980025675147772, + -0.03272249177098274, + 0.004578830674290657, + -0.02392915077507496, + -0.019077081233263016, + 0.012436534278094769, + 0.0003656129993032664, + 0.010772258043289185, + -0.010697738267481327, + -0.012171574868261814, + 0.016129406169056892, + -0.003216773271560669, + -0.008743662387132645, + 0.007795603945851326, + 0.01588100753724575, + 0.015334528870880604, + -0.004125501494854689, + -0.004806530196219683, + -0.017156124114990234, + -0.004119291435927153, + -0.0013154823100194335, + -0.004533290863037109, + 0.0018433312652632594, + -0.0021424456499516964, + 0.007249125279486179, + -0.0027489543426781893, + -0.0015680217184126377, + 0.017172684893012047, + 0.004682330414652824, + 0.017586683854460716, + -0.0015142018673941493, + -0.005907767917960882, + -0.022703712806105614, + -0.00901690125465393, + -0.025402987375855446, + -0.0046616303734481335, + -0.0071870251558721066, + 0.03444473072886467, + -0.023896031081676483, + 0.02649594470858574, + -0.011956294998526573, + 0.0073816049844026566, + -0.015102689154446125, + -0.009008621796965599, + 0.008437302894890308, + 0.003055313602089882, + 0.014340930618345737, + 0.0010795027483254671, + 0.021395476534962654, + 0.013802731409668922, + 0.0007627934101037681, + -0.010714298114180565, + 0.0066736661829054356, + -0.009894579648971558, + 0.01530968863517046, + -0.018414681777358055, + 0.010192658752202988, + -0.011616815812885761, + -0.01851404272019863, + 0.0029663038440048695, + 0.009836619719862938, + 0.01748732477426529, + 0.012577294372022152, + 0.017470763996243477, + -0.0015535318525508046, + -0.009033461101353168, + -0.0189280416816473, + -0.0004936939803883433, + 0.010035339742898941, + -0.03288809210062027, + -0.021445155143737793, + 0.021527955308556557, + 0.0032105634454637766, + -0.004026141948997974, + -0.00913282111287117, + 0.001583546749316156, + 0.023018352687358856, + -0.006466666702181101, + -0.011823815293610096, + -0.004951430018991232, + -0.006189287174493074, + 0.014879129827022552, + 0.00787840411067009, + -0.012155015021562576, + 0.01778540387749672, + 0.014415450394153595, + 0.012693214230239391, + -0.016460606828331947, + -0.0006515311542898417, + -0.01730516366660595, + 0.021147076040506363, + 0.002751024439930916, + 0.018249083310365677, + -0.0002985968894790858, + 0.018696201965212822, + -0.001108482712879777, + 0.035239607095718384, + 0.009778659790754318, + -0.012519334442913532, + 0.004396670963615179, + 0.00937294028699398, + -0.015301408246159554, + -0.020567478612065315, + -0.014961929060518742, + -0.030072897672653198, + -0.00042202038457617164, + -0.008768501691520214, + -0.0048106699250638485, + -0.00790324341505766, + -0.01849748194217682, + 0.010325138457119465, + -0.025750746950507164, + 0.01718924380838871, + 0.004429790657013655, + 0.012552454136312008, + 0.00296216388233006, + -0.0011478125816211104, + -0.0005764937959611416, + 0.018729321658611298, + 0.004578830674290657, + -0.010730857960879803, + 0.003949551843106747, + -0.014788049273192883, + 0.015168928541243076, + -0.0007167360163293779, + -0.0166593249887228, + -0.009265300817787647, + -0.011649936437606812, + -0.01223781518638134, + 0.013322492130100727, + 0.02285275235772133, + 0.005133589264005423, + 0.015574648045003414, + 0.011111737228929996, + 0.030784977599978447, + -0.0025502347853034735, + 0.009869739413261414, + 0.005249509122222662, + -0.02041843719780445, + -0.0006002987502142787, + -0.0036783823743462563, + -0.013719932176172733, + 0.006814425811171532, + 0.004831369966268539, + 0.009174221195280552, + 0.0013941421639174223, + 0.023564832285046577, + -0.006313486956059933, + 0.009671020321547985, + -0.011683056131005287, + 0.0053488691337406635, + 0.00895066186785698, + 0.018762441352009773, + 0.00015744904521852732, + 0.009737259708344936, + 0.01157541573047638, + -0.009107980877161026, + -0.018249083310365677, + -0.017619803547859192, + -0.013670251704752445, + -0.008569782599806786, + -0.00658258656039834, + -0.0008404182735830545, + 0.010217498987913132, + -0.005216389428824186, + 0.010648057796061039, + -0.004098591394722462, + -0.0011146926553919911, + 0.018066922202706337, + 0.01059009786695242, + -0.005882927682250738, + 0.004086171742528677, + 0.009671020321547985, + 0.013802731409668922, + -0.004326290916651487, + -0.023018352687358856, + 0.012585573829710484, + 0.005419248715043068, + -0.004351131152361631, + -0.01009329967200756, + 0.004545710515230894, + -0.010631497949361801, + 0.006942765787243843, + 0.0018940460868179798, + 0.00035396928433328867, + -0.010548698715865612, + -0.005555868614464998, + -0.0035707426723092794, + -0.0016177017241716385, + 0.002037910744547844, + 0.005282629281282425, + -0.00491002993658185, + 0.0047154501080513, + 0.02083243802189827, + 0.014349210076034069, + -0.00033326930133625865, + 0.0008311033016070724, + -0.0068889460526406765, + -0.0019395860144868493, + 0.0018205612432211637, + 0.006975885480642319, + -0.0061934273689985275, + -0.017437644302845, + 0.00444635096937418, + 0.009745540097355843, + -0.008553222753107548, + -0.004092381801456213, + 0.009613060392439365, + 0.00447533093392849, + 0.020136918872594833, + 0.0014738369500264525, + -0.004831369966268539, + -0.0043180109933018684, + 0.00589534780010581, + -0.01593896746635437, + 0.019855398684740067, + 0.022289713844656944, + -0.002724114339798689, + 0.004947289824485779, + 0.005576568655669689, + -0.014523089863359928, + 0.011707896366715431, + -0.005733888130635023, + 0.015773367136716843, + 0.004338711034506559, + -0.02060059830546379, + 0.0014407170237973332, + 0.004669910296797752, + -0.011898335069417953, + -0.0010608728043735027, + -0.003146393457427621, + -0.021229876205325127, + 0.002672364469617605, + -0.03179513290524483, + 0.0189280416816473, + 0.01346325222402811, + -0.00638800673186779, + -0.021875714883208275, + -0.0003073943662457168, + -0.016675885766744614, + 0.0049928296357393265, + -0.026065386831760406, + 0.014498250558972359, + 0.006222407333552837, + -0.00031489809043705463, + -0.009389501065015793, + -0.007977763190865517, + 0.007630004081875086, + -0.008660862222313881, + 0.010325138457119465, + 0.022968672215938568, + 0.016866324469447136, + -0.0003938166773878038, + -0.006458386778831482, + -0.018249083310365677, + -0.018282203003764153, + -0.018729321658611298, + -0.01444857008755207, + -0.011699615977704525, + 0.020550917834043503, + 0.011807255446910858, + -0.010316858999431133, + 0.005928467959165573, + 0.011757575906813145, + -0.002883504144847393, + 0.028036022558808327, + 0.0036970123182982206, + -0.011227657087147236, + 0.0041544814594089985, + 0.010316858999431133, + -0.007621724158525467, + -0.006334186997264624, + 0.011368416249752045, + -0.0038087922148406506, + -0.00976209994405508, + -0.01376133132725954, + -0.01684148609638214, + 0.001231647445820272, + -0.007534784730523825, + -0.01525172870606184, + -0.0036473325453698635, + 0.010697738267481327, + 0.008081262931227684, + 0.006433546543121338, + 0.030304737389087677, + -0.011683056131005287, + 0.020501237362623215, + -0.004831369966268539, + 0.00296216388233006, + -0.0005203451728448272, + 0.01179069560021162, + -0.002893853932619095, + -0.01050729863345623, + 0.025568587705492973, + 0.010167819447815418, + -0.0013589522568508983, + 0.014473410323262215, + 0.002672364469617605, + -0.013206573203206062, + 0.02530362829566002, + -0.006818566005676985, + 0.02058403752744198, + -0.01330593228340149, + -0.009033461101353168, + 0.014928809367120266, + 0.012569013983011246, + 0.011699615977704525, + -0.012825693935155869, + -0.003191933501511812, + -0.005245369393378496, + 0.005096329376101494, + 0.0006779236136935651, + 0.025237388908863068, + 0.001026717945933342, + 0.0073898849077522755, + -0.007745923940092325, + 0.0022749253548681736, + -0.007203585002571344, + 0.009712420403957367, + -0.014556210488080978, + 0.004872770048677921, + 0.002058610785752535, + -0.011931455694139004, + -0.00268685445189476, + -0.011939735151827335, + 0.011782416142523289, + 3.561039557098411e-5, + -0.004189671482890844, + -0.0005640738527290523, + 0.023862911388278008, + -0.005762868095189333, + -0.022521553561091423, + 0.0024425950832664967, + 0.002777934307232499, + 0.01492052897810936, + -0.00011760163033613935, + -0.007638284470885992, + 0.020269397646188736, + 0.01226265449076891, + 6.384643347701058e-5, + -0.017868204042315483, + -0.005398548673838377, + -0.02142859622836113, + 0.008801622316241264, + -0.014746650122106075, + -0.03116585500538349, + 0.016634486615657806, + 0.009331541135907173, + -0.019739478826522827, + -0.00901690125465393, + -0.031364575028419495, + -0.0012140525504946709, + 0.003146393457427621, + 0.010913017205893993, + 0.0016011417610570788, + 0.004355270881205797, + -0.00013260910054668784, + -0.006781306117773056, + -0.01713956519961357, + 0.006922065746039152, + 0.021859154105186462, + 0.07001553475856781, + 0.021279556676745415, + 0.016286727041006088, + -0.005129449535161257, + 0.006267947144806385, + -0.016874605789780617, + -0.0055310288444161415, + -0.00841660238802433, + -0.01742108352482319, + -0.013902091421186924, + 0.00835864245891571, + -0.0070586856454610825, + 0.00823444314301014, + 0.010813658125698566, + -0.00787426345050335, + -0.0019364809850230813, + 0.004396670963615179, + 0.008470422588288784, + 0.0006406636675819755, + 0.004028211813420057, + -0.002821404254063964, + 0.019954759627580643, + 0.00190646608825773, + -0.0012088775401934981, + 0.005779427941888571, + 0.003651472507044673, + 0.0014748719986528158, + -0.013372172601521015, + 0.006313486956059933, + -4.3890377128263935e-5, + 0.018961161375045776, + -0.01796756312251091, + -0.025055227801203728, + -0.0039930217899382114, + -0.016319846734404564, + 0.03169577568769455, + -0.010606658644974232, + 0.016377806663513184, + -0.004239351488649845, + -0.009786940179765224, + -0.029162099584937096, + -0.020335638895630836, + 0.016990525647997856, + -0.005059069488197565, + -0.02149483561515808, + -0.0016591015737503767, + -0.005878787953406572, + 0.01915988139808178, + -0.01665104553103447, + 0.008085403591394424, + 0.016493726521730423, + 0.01330593228340149, + -0.022604353725910187, + -0.014771489426493645, + -0.006479086820036173, + -0.008644302375614643, + 0.026297226548194885, + -0.022289713844656944, + 0.005547588691115379, + -0.0006939660524949431, + -0.007116645574569702, + 0.0017367263790220022, + 0.012163295410573483, + 0.021345796063542366, + -0.008039863780140877, + 0.015558088198304176, + 0.003343043150380254, + 0.005419248715043068, + -0.007286385167390108, + 0.004723730497062206, + 0.023614510893821716, + -0.007638284470885992, + -0.014175331220030785, + -0.030072897672653198, + -0.010548698715865612, + 0.0015235168393701315, + -0.01665104553103447, + -0.027307383716106415, + -0.015798207372426987, + 0.023482032120227814, + -0.0033244132064282894, + -0.007791463751345873, + 0.004183461423963308, + -0.002955953823402524, + -0.007754203863441944, + -0.0016611715545877814, + -0.00787840411067009, + 0.005228809081017971, + 0.007129065226763487, + 0.011004097759723663, + -0.027357064187526703, + 0.006561886519193649, + -0.023680752143263817, + 0.006752326153218746, + 0.015168928541243076, + -0.016924284398555756, + -0.010010499507188797, + -0.0028462442569434643, + 0.0020513657946139574, + 0.020666837692260742, + 0.010714298114180565, + -0.007298804819583893, + 0.004818950314074755, + 0.010126419365406036, + -0.016394365578889847, + -0.0285825002938509, + -0.0012419974664226174, + 0.0006727486033923924, + -0.0006820635753683746, + 0.024310030043125153, + -0.012825693935155869, + 0.014928809367120266, + -0.006309347227215767, + 0.006578446365892887, + 0.019176440313458443, + 0.02422722987830639, + 0.011509176343679428, + -0.007729364093393087, + 0.005543448496609926, + 0.017222365364432335, + -0.0056800683960318565, + 0.008727101609110832, + 0.025684507563710213, + 0.005709048360586166, + 0.017106445506215096, + 4.421381527208723e-5, + 0.004019931890070438, + 0.02243875339627266, + -0.003815002040937543, + -0.010027059353888035, + 0.008226162753999233, + 0.010871618054807186, + -0.000866810732986778, + 0.002531604841351509, + 0.008578062057495117, + 0.0027406744193285704, + -0.001217157463543117, + -0.01217985525727272, + 0.019424840807914734, + -0.011202816851437092, + -0.013173452578485012, + 0.026131626218557358, + 0.018050363287329674, + 0.005613828543573618, + -0.01270977407693863, + 0.0019219910027459264, + -0.014663849957287312, + 0.01682492531836033, + 0.007605164311826229, + -0.004375970922410488, + -0.004404950886964798, + -0.009141101501882076, + -0.005299189127981663, + -0.0060195475816726685, + -0.0075182244181632996, + 0.024988988414406776, + 0.011732735671103, + 0.00710422545671463, + -0.011525736190378666, + 0.005083909723907709, + -0.006959325633943081, + 0.006951045710593462, + -0.00537370890378952, + 0.004438071046024561, + 0.001361022237688303, + -0.004438071046024561, + 0.01023405883461237, + 0.012395134195685387, + -0.008346223272383213, + -0.010018778964877129, + -0.016162525862455368, + 0.009422620758414268, + 0.0009904929902404547, + 0.002225245349109173, + 0.003496222896501422, + 0.004119291435927153, + -0.005584848579019308, + -0.01399317104369402, + -0.01700708456337452, + -0.00713320542126894, + 0.015086129307746887, + 0.020020999014377594, + 0.01844780147075653, + -0.0021020807325839996, + -0.010424498468637466, + 0.001181967556476593, + -0.012800853699445724, + -0.006802006158977747, + 0.00529504893347621, + 0.0058291079476475716, + 0.015715407207608223, + 0.02108083665370941, + -0.01874588057398796, + -0.017272043973207474, + -0.011956294998526573, + 0.018828680738806725, + 0.005232949275523424, + 0.0041648312471807, + -0.030586257576942444, + 0.012684933841228485, + 0.01665104553103447, + -0.003413422964513302, + -0.0009894579416140914, + -0.002341165207326412 + ], + "6811ba89-1843-4937-94f8-6dcfb72d2d0e": [ + -0.030148422345519066, + -0.000618182064499706, + -0.015123419463634491, + 0.006614445708692074, + -0.04628881812095642, + -0.021208874881267548, + 0.01585334539413452, + 0.03241201490163803, + -0.0014393493765965104, + 0.048355575650930405, + 0.010243574157357216, + 0.021044844761490822, + -0.003346179611980915, + -0.009841704741120338, + -0.0010200516553595662, + -0.026129726320505142, + -0.012220117263495922, + 0.019289741292595863, + -0.014631334692239761, + -0.013425725512206554, + 0.06643150746822357, + -0.02698267437517643, + -0.01649305783212185, + 0.0237021055072546, + 0.012753209099173546, + -0.03651272505521774, + 0.017616651952266693, + 0.006216676905751228, + -0.03149345517158508, + -0.005527757573872805, + 0.022603115066885948, + 0.013991624116897583, + 0.00899695884436369, + -0.005712289363145828, + 0.021520528942346573, + -0.03136223182082176, + -0.015066009946167469, + 0.021947002038359642, + 0.0038813224527984858, + -0.01756744273006916, + -0.019322548061609268, + 0.03257604315876961, + 0.0021016141399741173, + 0.019617797806859016, + -0.03989170864224434, + -0.003214956959709525, + -0.01645204983651638, + 0.0025506417732685804, + 0.013638962991535664, + 0.02642497792840004, + 0.015008599497377872, + -0.015672914683818817, + 0.011285155080258846, + -0.014147451147437096, + 0.011522996239364147, + -0.03311733528971672, + 0.012490763328969479, + 0.08844412118196487, + 0.008340844884514809, + -0.05531037971377373, + 0.012293929234147072, + 0.011276953853666782, + 0.030656911432743073, + 0.007692932616919279, + 0.00972688477486372, + 0.007774946745485067, + -0.016099389642477036, + 0.011810045689344406, + -0.0299023799598217, + 0.008152212016284466, + 0.02775360830128193, + 0.036283086985349655, + -0.03569258376955986, + 0.02580166980624199, + -0.0015726224519312382, + 0.002644958207383752, + 0.030558492988348007, + -0.018026722595095634, + 0.014262271113693714, + 0.0013993674656376243, + -0.012277526780962944, + 0.007713436149060726, + 0.03815300762653351, + 0.024292608723044395, + 0.057278722524642944, + 0.02816367894411087, + -0.039629265666007996, + -0.06771092861890793, + -0.02014268934726715, + -0.039137180894613266, + 0.02001146599650383, + 0.022143835201859474, + 0.001195357064716518, + -0.007738040294498205, + -0.031755901873111725, + 0.008841131813824177, + 0.0014372989535331726, + 0.0024153185077011585, + 0.027359940111637115, + -0.003711142810061574, + -0.007963579148054123, + 0.02599850296974182, + -0.04002293199300766, + 0.019142115488648415, + 0.012991050258278847, + -0.01896168477833271, + 0.011875657364726067, + 0.0035860713105648756, + -0.01709176041185856, + 0.011342564597725868, + 0.02552282065153122, + -0.04468134045600891, + 0.002813087310642004, + -0.014942988753318787, + -0.04238494113087654, + -0.019076503813266754, + -0.0014106443850323558, + -0.01203148439526558, + -0.0030201731715351343, + -0.03930120915174484, + 0.03828423097729683, + -0.006856387946754694, + -0.0015070110093802214, + -0.013753782957792282, + 0.01080127153545618, + 0.031148996204137802, + -0.014442701824009418, + -0.0009862208971753716, + 0.030853744596242905, + 0.0347084142267704, + -0.02007707767188549, + -0.04704334959387779, + 0.00115024927072227, + -0.0374968945980072, + -0.0028417923022061586, + 0.011580405756831169, + -0.006274086888879538, + 0.06862948834896088, + 0.00486344238743186, + 0.034609995782375336, + -0.04933974891901016, + -0.04559990018606186, + -0.022422684356570244, + -0.031001370400190353, + -0.0023784120567142963, + 0.005318621173501015, + -0.01763305440545082, + 0.03959646075963974, + -0.014352486468851566, + 0.017731470987200737, + -0.061937130987644196, + 0.021569736301898956, + 0.00014736928278580308, + 0.03249402716755867, + 0.016123993322253227, + 0.004240134730935097, + -0.007709335535764694, + 0.040121350437402725, + -0.005802505183964968, + 0.024079371243715286, + 0.007984083145856857, + -0.05432621017098427, + -0.011350766755640507, + -0.03032885305583477, + 0.05389973893761635, + -0.007783148437738419, + 0.04051501676440239, + 0.027589580044150352, + -0.02078239992260933, + 0.008980555459856987, + 0.03282208740711212, + 0.015312052331864834, + 0.044779758900403976, + 0.011654218658804893, + 0.009530050680041313, + -0.02468627691268921, + 0.03647992014884949, + 0.05347326397895813, + 0.004637903533875942, + -0.04714176803827286, + -0.012072491459548473, + -0.015148024074733257, + 0.023439660668373108, + -0.01728859543800354, + -0.037759341299533844, + 0.015820540487766266, + 0.031116189435124397, + 0.0075330049730837345, + -0.0010005732765421271, + -0.003813660703599453, + 0.0067948768846690655, + -0.00834494549781084, + 0.003647581906989217, + 0.05370290204882622, + -0.017239386215806007, + -0.05130808800458908, + -0.009062569588422775, + -0.008947749622166157, + 0.020946428179740906, + 0.025703253224492073, + 0.000489778583869338, + -0.026671020314097404, + -0.0244730394333601, + 0.034970857203006744, + -0.0662674829363823, + 0.03766092285513878, + -0.04071185365319252, + -0.010071344673633575, + 0.008275233209133148, + -0.03638150170445442, + 0.018108736723661423, + -0.04412364214658737, + 0.010424005798995495, + 0.006885092705488205, + -0.03752969950437546, + -0.006889193318784237, + -0.01855161413550377, + 0.029885977506637573, + 0.031247412785887718, + -0.022143835201859474, + -0.014409895986318588, + 0.011170335114002228, + 0.014385292306542397, + -0.02872137539088726, + -0.06433194130659103, + -0.004736320581287146, + 0.0047445218078792095, + 0.05235787108540535, + -0.0322151817381382, + -0.01641104370355606, + 0.044156450778245926, + -0.0008191168890334666, + 0.027228716760873795, + -0.04510781541466713, + -0.0032416116446256638, + 0.004756824113428593, + 0.006269986275583506, + 0.005519556347280741, + -0.002448124112561345, + -0.031690288335084915, + 0.012933640740811825, + 0.023734912276268005, + -0.006577539257705212, + -0.0019642403349280357, + -0.02565404400229454, + 0.016164999455213547, + -0.021651750430464745, + 0.05688505247235298, + 0.054424628615379333, + 0.006823582109063864, + -0.012720403261482716, + 0.02056916244328022, + 0.022816352546215057, + 0.012638389132916927, + -0.03306812793016434, + 0.05583527311682701, + 0.048552412539720535, + -0.029607128351926804, + -0.009226598776876926, + 0.02155333384871483, + -0.019010894000530243, + -0.01380299124866724, + -0.014090040698647499, + -0.008271132595837116, + 0.044090837240219116, + -0.020339522510766983, + 0.046321623027324677, + -0.05744275078177452, + 0.012630187906324863, + 0.020880816504359245, + 0.018699239939451218, + -0.000244889291934669, + -0.038448259234428406, + 0.012613785453140736, + -0.002661361126229167, + -0.010588034056127071, + 5.020166645408608e-5, + -0.012006879784166813, + 0.008131708949804306, + 0.006971207447350025, + -0.013138676062226295, + -0.00451488234102726, + -0.0001540329394629225, + 0.006007540505379438, + 0.0034815031103789806, + -0.006405309773981571, + 0.0037665024865418673, + 0.011842851527035236, + -0.023062394931912422, + -0.0187484472990036, + 0.001983718713745475, + 0.006298691034317017, + 0.01188385859131813, + -0.0010631091427057981, + 0.01613219454884529, + 0.014967592433094978, + -0.01623881235718727, + -0.002197980647906661, + -0.010678249411284924, + 0.035955026745796204, + -0.019142115488648415, + -0.005310419946908951, + -0.006155166309326887, + -0.014147451147437096, + 0.029033029451966286, + -0.020339522510766983, + 0.031821511685848236, + 0.012786014936864376, + -0.04838838055729866, + 0.012909036129713058, + 0.023390451446175575, + -0.010424005798995495, + -0.02211103029549122, + -0.038317035883665085, + -0.0022471891716122627, + 0.003393337829038501, + -0.004527184180915356, + 0.021290889009833336, + -0.008283435367047787, + -0.02155333384871483, + -0.01606658287346363, + -0.003233410185202956, + -0.08805045485496521, + 0.03769373148679733, + 0.014705147594213486, + -0.032805681228637695, + 0.022963978350162506, + 0.017977513372898102, + -0.04189285635948181, + -0.01737060956656933, + -0.008554081432521343, + -0.021044844761490822, + -0.030427271500229836, + 0.0032067555002868176, + 0.001149224117398262, + -0.03651272505521774, + -0.03667675331234932, + -0.048978883773088455, + -0.016189604997634888, + -0.012088893912732601, + -0.019355352967977524, + -0.0207659974694252, + 0.006151065696030855, + -0.018420390784740448, + 0.009382424876093864, + 0.011252349242568016, + 0.01792830601334572, + 0.0030570796225219965, + -0.01694413460791111, + -0.008808325976133347, + 0.0010795120615512133, + -0.01979823037981987, + 0.0319199301302433, + 0.02398095466196537, + 0.056786637753248215, + 0.009218396618962288, + -0.036545529961586, + 0.008394153788685799, + 0.020093480125069618, + -0.010022136382758617, + -0.02593289315700531, + -0.03483963385224342, + -0.029787560924887657, + -0.023538077250123024, + 0.003668085439130664, + 0.021094053983688354, + 0.018174348399043083, + 0.0030119717121124268, + -0.00412941537797451, + 0.0022738438565284014, + -0.02822929061949253, + 0.00498236296698451, + -0.03579099848866463, + -0.04789629578590393, + -0.01070285402238369, + -0.026047712191939354, + 0.04320508614182472, + -0.008685304783284664, + -0.03313374146819115, + 0.014762557111680508, + 0.002189779421314597, + -0.002433771500363946, + -0.026720229536294937, + -0.006192072760313749, + 0.04412364214658737, + 0.024358220398426056, + -0.01035019289702177, + 0.009275807067751884, + 0.004699414130300283, + -0.006872790399938822, + -0.011145730502903461, + -0.005306319333612919, + -0.021077651530504227, + -0.00825883075594902, + -0.023242825642228127, + -0.0015880001010373235, + 0.00601574219763279, + -0.018568016588687897, + 0.02936108596622944, + -0.024276206269860268, + -0.024292608723044395, + 0.011383571662008762, + -0.00837775133550167, + 4.64533586637117e-5, + 0.019568590447306633, + -0.01965060457587242, + 0.008320340886712074, + -0.0030427270103245974, + 0.017403414472937584, + 0.000436469359556213, + 0.0032252087257802486, + 0.02398095466196537, + 0.02112686075270176, + 0.039760489016771317, + 0.04254896938800812, + -0.020667580887675285, + -0.002747475868090987, + 0.050225500017404556, + -0.037890564650297165, + -0.021422110497951508, + 0.015467879362404346, + 0.042712997645139694, + 0.0073033650405704975, + 0.04107271507382393, + -0.0252439733594656, + 0.03985890373587608, + -0.006007540505379438, + 0.006081353407353163, + -0.013671768829226494, + -0.04051501676440239, + -0.015484282746911049, + 0.0603952631354332, + -0.0001533922040835023, + 0.010653645731508732, + -0.019010894000530243, + -0.02252110093832016, + 0.007672429084777832, + -0.006446316838264465, + 0.004502580035477877, + -0.007414084393531084, + -0.011719830334186554, + 0.014508313499391079, + 0.001853521098382771, + -0.011728031560778618, + -0.0517345629632473, + -0.023128006607294083, + -0.039498042315244675, + -0.0036291286814957857, + 0.0173542071133852, + 0.0016269568586722016, + -0.008246528916060925, + 0.030000796541571617, + -0.07407522946596146, + -0.000576149788685143, + 0.0028048858512192965, + 0.006118259858340025, + -0.011080119758844376, + -0.005589268170297146, + 0.0077872490510344505, + -0.04418925568461418, + -0.03264165297150612, + 0.02434181608259678, + 0.017518235370516777, + -0.011867456138134003, + 0.0019785927142947912, + -0.030902953818440437, + 0.0007001963094808161, + -0.0004326249472796917, + 0.02224225364625454, + 0.02014268934726715, + -0.03401949256658554, + 0.008808325976133347, + -0.052128229290246964, + 0.0306733138859272, + -0.00837775133550167, + -0.016296222805976868, + -0.017665861174464226, + 0.011998678557574749, + 0.005052075255662203, + -0.022603115066885948, + -0.04071185365319252, + -0.020191898569464684, + -0.01889607310295105, + -0.01429507602006197, + -0.028458930552005768, + 0.015418671071529388, + -0.047371406108140945, + -0.018371181562542915, + 0.005298117641359568, + 0.0009898089338093996, + 0.028983820229768753, + 0.037398479878902435, + -0.009833503514528275, + 0.006991710979491472, + -0.02629375457763672, + -0.031181801110506058, + 0.009497244842350483, + -0.038087397813797, + -0.035036470741033554, + -0.008914944715797901, + 0.028114469721913338, + 0.0006566262454725802, + -0.026310157030820847, + 0.02224225364625454, + -0.012720403261482716, + 0.020487148314714432, + 0.005818908102810383, + -0.020601969212293625, + -0.0016146546695381403, + -0.02745835669338703, + -0.023226423189044, + 0.009185590781271458, + -0.0195193812251091, + 0.006647251546382904, + -0.014098241925239563, + 0.025047138333320618, + -0.035725388675928116, + -0.005064377095550299, + 0.05767238885164261, + -0.006438115146011114, + -0.0224554892629385, + -0.0007576062344014645, + -0.02622814290225506, + 0.0028848496731370687, + -0.043533142656087875, + 0.01454111933708191, + -0.00592552637681365, + -0.008447463624179363, + 0.019010894000530243, + -0.024653470143675804, + -0.010391199961304665, + 0.022881964221596718, + -0.011555802077054977, + 0.02258671261370182, + 0.018945282325148582, + -0.0019242583075538278, + 0.005728692281991243, + -0.007783148437738419, + 0.0103829987347126, + 0.01135896798223257, + -0.022881964221596718, + 0.03101777285337448, + -0.000789899320807308, + -0.012252922169864178, + -0.008906742557883263, + 0.032034751027822495, + -0.0029115043580532074, + 0.017108162865042686, + -0.005593368783593178, + 0.013056661933660507, + -0.01314687728881836, + 0.01973261870443821, + -0.012687597423791885, + -0.009243001230061054, + 0.015615505166351795, + -0.026326561346650124, + 0.01400802657008171, + -0.006393007468432188, + -0.0153366569429636, + -0.011588607914745808, + 0.0016105540562421083, + 0.0173542071133852, + -0.0005254035349935293, + 0.009193792939186096, + -0.027376342564821243, + 0.003342078998684883, + -0.01986384019255638, + 0.027786413207650185, + 0.0027638787869364023, + 0.02383332885801792, + 0.03267446160316467, + 0.010612638667225838, + 0.03319935128092766, + 0.012736806645989418, + -0.00536782993003726, + 0.03129662200808525, + -0.00672516506165266, + -0.004883945919573307, + -0.02657260373234749, + -0.000133529378217645, + 0.024719081819057465, + -0.03710322827100754, + -0.0003544551436789334, + -0.0027331234887242317, + -0.008082499727606773, + 0.030870147049427032, + -0.023866133764386177, + -0.013294503092765808, + -0.0060198428109288216, + 0.020962830632925034, + 0.0012076592538505793, + 0.02134009636938572, + 0.018863268196582794, + -0.0006504752091132104, + -0.03697200492024422, + 0.009948323480784893, + 0.01223651971668005, + 0.0163454320281744, + 0.016263417899608612, + 0.012080692686140537, + 0.019322548061609268, + 0.02383332885801792, + -0.006146964617073536, + -0.0278848297894001, + -0.019355352967977524, + 0.03752969950437546, + 0.022963978350162506, + 0.004908550530672073, + -0.0195193812251091, + 0.019010894000530243, + -0.013360114768147469, + -0.015074211172759533, + 0.025014333426952362, + 0.017272192984819412, + 0.01805952936410904, + 0.0025055340956896544, + 0.027163105085492134, + 0.019913049414753914, + -0.012080692686140537, + 0.008385952562093735, + 0.03415071591734886, + -0.03877631574869156, + 0.048421189188957214, + -0.048421189188957214, + 0.0334617979824543, + 0.012113498523831367, + -0.025260375812649727, + -0.02522757090628147, + -0.021110456436872482, + 0.0017838090425357223, + -0.00042544869938865304, + -0.024358220398426056, + 0.037890564650297165, + -0.01992945186793804, + 0.02962353080511093, + 0.019355352967977524, + -0.00958746112883091, + 0.01530385110527277, + -0.00016466915258206427, + -0.015033204108476639, + -0.005052075255662203, + 0.002452224725857377, + 0.013294503092765808, + 0.0175018310546875, + -0.01554169226437807, + 0.018141543492674828, + -0.028278497979044914, + 0.010604437440633774, + 0.03828423097729683, + 0.024292608723044395, + -0.012211915105581284, + 0.035102080553770065, + 0.02878698706626892, + 0.022193044424057007, + 0.02014268934726715, + -0.016829315572977066, + 0.004650205373764038, + -0.009956524707376957, + 0.006950703915208578, + 0.021799376234412193, + 0.035036470741033554, + -0.02977115660905838, + -0.0008068147581070662, + 0.0042360336519777775, + 0.030279645696282387, + 0.012802417390048504, + 0.026671020314097404, + 0.010866882279515266, + 0.015812339261174202, + 0.012548173777759075, + 0.01632082648575306, + -0.001361435861326754, + 0.015623706392943859, + -0.001087713404558599, + 0.005339124705642462, + 0.004178623668849468, + -0.004379558842629194, + -0.025473613291978836, + 0.010087747126817703, + -0.012909036129713058, + -0.03805459290742874, + -0.028327707201242447, + -0.01722298376262188, + 0.01855161413550377, + -0.017304997891187668, + -0.01356515008956194, + -0.02050355263054371, + 0.05688505247235298, + -0.020339522510766983, + -0.002042153850197792, + -0.009743288159370422, + 0.02216023951768875, + -0.02629375457763672, + 0.035233303904533386, + 0.013187884353101254, + 0.0001482663064962253, + 0.0036127257626503706, + -0.010588034056127071, + 0.007286962121725082, + -0.01937175542116165, + -0.036545529961586, + 0.004908550530672073, + 0.01709176041185856, + -0.03324855864048004, + 0.02063477411866188, + 0.009579258970916271, + -0.026621811091899872, + -0.013138676062226295, + 0.015353059396147728, + 0.004199127200990915, + 0.007450990844517946, + 0.011399975046515465, + -0.0051914993673563, + 0.03129662200808525, + 0.025260375812649727, + -0.0008047643932513893, + -0.02056916244328022, + 0.023259229958057404, + -0.005294017028063536, + 0.025670446455478668, + -0.011252349242568016, + 0.02739274501800537, + 0.004174523055553436, + -0.04566550999879837, + -0.015607303939759731, + 0.021487722173333168, + 0.011186737567186356, + 0.0009857082040980458, + 0.0010282531147822738, + -0.0012394397053867579, + 0.03772653639316559, + -0.014836370013654232, + -0.013811192475259304, + 0.013376517221331596, + 0.013458531349897385, + 0.00216927588917315, + -0.0032723669428378344, + 0.0022184844128787518, + -0.0047445218078792095, + -0.016911329701542854, + 0.005006967578083277, + -0.005412937607616186, + 0.017190176993608475, + -0.003622977528721094, + 0.032313596457242966, + 0.014557521790266037, + 0.029180655255913734, + 0.004428767133504152, + -0.013876804150640965, + 0.014131047762930393, + 0.03073892556130886, + -0.021094053983688354, + 0.04103991016745567, + 0.016960538923740387, + -0.026933465152978897, + 0.015180829912424088, + 0.014942988753318787, + 0.016673488542437553, + -0.024112176150083542, + 0.03707042336463928, + -0.014688744209706783, + 0.00784055795520544, + -0.019142115488648415, + 0.002047279616817832, + -0.008742714300751686, + -0.004176573362201452, + 0.005831209942698479, + 0.018518807366490364, + 0.03242841735482216, + -0.024144982919096947, + 0.047240182757377625, + 0.038513872772455215, + 0.038513872772455215, + 0.013663566671311855, + 0.01523823942989111, + -0.04031818360090256, + 0.024571456015110016, + -0.005597469862550497, + -0.05632735788822174, + -0.02432541362941265, + -0.004547687713056803, + -0.0542277954518795, + 0.005056175868958235, + -0.0374968945980072, + -0.0004157095099799335, + -0.018879670649766922, + 0.01276141032576561, + -0.009062569588422775, + -0.021241679787635803, + 0.012613785453140736, + -0.004691212438046932, + -0.013589753769338131, + -0.0064873239025473595, + 0.0025649943854659796, + 0.007984083145856857, + -0.04084307700395584, + 0.012293929234147072, + 0.009923718869686127, + -0.023193618282675743, + 0.014811765402555466, + 0.002364059444516897, + -0.02886900119483471, + 0.0387435108423233, + 0.0461575947701931, + -0.018633628264069557, + 0.008242428302764893, + 0.003212906653061509, + -0.01067004818469286, + -0.001724348752759397, + 0.000574612058699131, + 0.0025854979176074266, + -0.0017745824297890067, + -0.019765423610806465, + 0.03278927877545357, + 0.00707782618701458, + -0.03255964070558548, + -0.013040258549153805, + 0.0039735883474349976, + 0.022832754999399185, + -0.004814234096556902, + 0.004559990018606186, + 0.004806032404303551, + 0.007725738454610109, + 0.03247762471437454, + 0.016976941376924515, + -0.006634949240833521, + 0.008857534267008305, + 0.006540633272379637, + 0.013458531349897385, + 0.0035081577952951193, + -0.031181801110506058, + 0.0075822132639586926, + 0.005991138052195311, + 0.026408575475215912, + 0.009349619969725609, + 0.0492413304746151, + -0.03539733216166496, + -0.010136956349015236, + -0.021733764559030533, + 0.027491161599755287, + -0.02496512420475483, + -0.06669395416975021, + -0.007610918488353491, + -0.022816352546215057, + -0.014524715952575207, + -0.007176243234425783, + 0.011801844462752342, + 0.010916090570390224, + 0.005056175868958235, + 0.04648565128445625, + 0.03543013706803322, + -0.0017417767085134983, + 0.003134993137791753, + -0.01314687728881836, + -0.02599850296974182, + 0.02294757589697838, + -0.026392171159386635, + 0.025834474712610245, + -0.006544733885675669, + 0.023603688925504684, + 0.02065117657184601, + -0.014483708888292313, + -0.01778068020939827, + 0.0032928704749792814, + -0.003366683144122362, + -0.013269898481667042, + -0.0008878037915565073, + 0.008767318911850452, + 0.0017007696442306042, + 0.01737060956656933, + 0.007291063200682402, + -0.01247436087578535, + 0.004151969216763973, + 0.020241105929017067, + -0.02217664197087288, + -0.004678910598158836, + -0.013630760833621025, + 0.007664227858185768, + -0.03467560559511185, + 0.0029935184866189957, + -0.023177215829491615, + 0.009095375426113605, + 0.01282702200114727, + 0.01017796341329813, + -0.044386088848114014, + 0.007368976715952158, + -0.008898541331291199, + -0.008914944715797901, + -0.00427294010296464, + 0.00405355216935277, + -0.0002059325488517061, + -0.004297544248402119, + -0.012047886848449707, + -0.025555627420544624, + -0.021028442308306694, + 0.022275058552622795, + -0.004145818296819925, + -0.007487897295504808, + 0.0022451388649642467, + 0.01217090804129839, + -0.0008396204211749136, + -0.034117911010980606, + -0.04504220187664032, + -0.005396534688770771, + 0.008369550108909607, + -0.04871644079685211, + 0.014401694759726524, + -0.0034979060292243958, + -0.009784295223653316, + 0.02188139036297798, + 0.005179197061806917, + 0.02573605813086033, + -0.026031309738755226, + -0.024440234526991844, + 0.05439182370901108, + 0.0091363824903965, + 0.015000398270785809, + 0.01979823037981987, + -0.005896821618080139, + -0.020372329279780388, + 0.00089549261610955, + 0.013335510157048702, + 0.06219957396388054, + -0.00030601551407016814, + -0.005601570475846529, + -0.0070696244947612286, + -0.013950617052614689, + -0.008652498945593834, + -0.02857374958693981, + 0.01917492225766182, + -0.0037870060186833143, + 0.007065523881465197, + 0.028081664815545082, + -0.010596235282719135, + 0.02678583934903145, + 0.012868029065430164, + 0.0044410694390535355, + -0.01105551514774561, + -0.024440234526991844, + -0.041367966681718826, + -0.02216023951768875, + -0.010235372930765152, + 0.015197232365608215, + -0.01073565986007452, + -0.011834650300443172, + -0.004789629485458136, + -0.010276379995048046, + 0.02801605314016342, + 0.0077872490510344505, + -0.012211915105581284, + 0.010473214089870453, + 0.008221924304962158, + -0.0158697497099638, + 0.01642744615674019, + 0.019158517941832542, + 0.024489441886544228, + -0.0023804623633623123, + 0.005675383377820253, + 0.0014865074772387743, + 0.0016064533265307546, + -0.020044272765517235, + 0.0010379923041909933, + -0.0023066496942192316, + 0.004990564659237862, + -0.031608276069164276, + 0.01799391768872738, + -0.04455011710524559, + -0.011219543404877186, + -0.00616746861487627, + -0.0052325064316391945, + -0.018699239939451218, + -0.004371357150375843, + -0.016911329701542854, + 0.02886900119483471, + -0.026589006185531616, + -0.032329998910427094, + -0.019896646961569786, + -0.009119980037212372, + -0.00029115044162608683, + 0.022340670228004456, + 0.02419419027864933, + -0.006434014532715082, + -0.02475188858807087, + -0.007061423268169165, + -0.0029504611156880856, + 0.01439349353313446, + -0.0173542071133852, + 0.028081664815545082, + -0.037332866340875626, + 0.030624104663729668, + 0.02936108596622944, + -0.012359540909528732, + 0.007032718509435654, + -0.0022902467753738165, + 0.013425725512206554, + 0.009357821196317673, + -0.028048858046531677, + -0.02265232428908348, + 0.012416951358318329, + -0.028901806101202965, + -0.016993343830108643, + -0.0067661721259355545, + -0.010645444504916668, + 0.044648535549640656, + 0.026474185287952423, + -0.014992197044193745, + 0.002068808302283287, + -0.021143263205885887, + -0.010120552964508533, + 0.04294263944029808, + -0.026506992056965828, + -0.037890564650297165, + 0.007594515569508076, + -0.02489951252937317, + 0.015599102713167667, + 0.01513162162154913, + 0.007660126779228449, + -0.008627894334495068, + -0.01049781870096922, + 0.03039446473121643, + -0.04035098850727081, + -0.02015909180045128, + 0.007541206199675798, + 0.015574498102068901, + -0.007286962121725082, + 0.0062330798245966434, + 0.00754940789192915, + 0.013097668997943401, + 0.03930120915174484, + -0.006823582109063864, + 0.005425239913165569, + -0.005396534688770771, + 0.008554081432521343, + -0.016812913119792938, + -0.008832930587232113, + -0.013294503092765808, + -0.0069753085263073444, + -0.09074051678180695, + -0.037267256528139114, + -0.01771506853401661, + 0.02872137539088726, + 0.016911329701542854, + -0.003942832816392183, + -0.005265312269330025, + 0.013926012441515923, + -0.01164601743221283, + 0.032379209995269775, + 0.0009077947470359504, + -0.03743128478527069, + 0.020241105929017067, + 0.022078225389122963, + 0.00798818375915289, + 0.016976941376924515, + -0.01289263367652893, + 0.003998192492872477, + 0.017124567180871964, + -0.010087747126817703, + 0.0030980866868048906, + 0.02189779281616211, + 0.007036819122731686, + -0.008627894334495068, + -0.012105297297239304, + 0.05147211626172066, + -0.032953307032585144, + 0.0049987658858299255, + -0.03026324324309826, + -0.01597636751830578, + 0.01945376954972744, + 0.033576615154743195, + -0.004350853618234396, + 0.010276379995048046, + 0.005060276482254267, + 0.0173542071133852, + 0.01737060956656933, + -0.0009426507749594748, + 0.041105519980192184, + -0.0004756824055220932, + 0.00515869352966547, + 0.015623706392943859, + -0.007487897295504808, + -0.009177389554679394, + -0.005892721004784107, + -0.03149345517158508, + 0.012974647805094719, + -0.030214034020900726, + 0.010128754191100597, + -0.003104237839579582, + 0.011137529276311398, + 0.004055602476000786, + 0.0022471891716122627, + -0.02837691642343998, + -0.00923480000346899, + 0.011859253980219364, + 0.014352486468851566, + -0.010407603345811367, + 0.0084392623975873, + -0.025604834780097008, + 0.06203554570674896, + 0.016099389642477036, + 0.0062330798245966434, + 0.007122933864593506, + -0.0111539326608181, + 0.006183871068060398, + 0.019978661090135574, + 0.01073565986007452, + 0.01641104370355606, + -0.008906742557883263, + 0.00660624448210001, + -0.017272192984819412, + -0.012597382068634033, + 0.022291461005806923, + -0.016550466418266296, + 0.01848600246012211, + 0.028344109654426575, + -0.002325102686882019, + 0.0023066496942192316, + -0.013269898481667042, + -0.007930774241685867, + 0.002407117048278451, + 0.005277614109218121, + -0.02503073588013649, + -0.006729265674948692, + -0.010604437440633774, + 0.011383571662008762, + -0.023128006607294083, + -0.013335510157048702, + -0.0023968652822077274, + 0.026474185287952423, + -0.0023517573717981577, + 0.038317035883665085, + 0.01574672758579254, + -0.00807429850101471, + 0.04323789104819298, + 0.007881565019488335, + 0.013064863160252571, + 0.005946029908955097, + -0.005437541753053665, + 0.0006986585212871432, + -0.0046871118247509, + 0.010588034056127071, + -0.03638150170445442, + -0.01614859700202942, + 0.019913049414753914, + 0.002554742619395256, + 0.009325015358626842, + -0.0062781875021755695, + -0.00025655070203356445, + 0.0207659974694252, + 0.005683584604412317, + -0.029672740027308464, + -0.026867853477597237, + -0.016829315572977066, + 0.015000398270785809, + -0.020585566759109497, + -0.017944708466529846, + -0.0207659974694252, + 0.01418845821171999, + -0.005843512248247862, + 0.0237021055072546, + 0.01327810063958168, + -0.027523968368768692, + 0.0029340581968426704, + -0.012851626612246037, + -0.010473214089870453, + -0.026999076828360558, + 0.01513162162154913, + 0.017469026148319244, + 0.011244148015975952, + 0.006200273986905813, + -0.015623706392943859, + 0.009300410747528076, + -0.015008599497377872, + 0.006544733885675669, + 0.01675550267100334, + -0.017272192984819412, + 0.00140756880864501, + -0.031969137489795685, + 0.011826449073851109, + 0.006749769207090139, + -0.007360775023698807, + 0.014262271113693714, + -0.004851140547543764, + -0.005642577540129423, + -0.0008503848221153021, + -0.014877377077937126, + 0.015057808719575405, + -0.013967019505798817, + -0.020372329279780388, + 0.023259229958057404, + 0.015689317137002945, + 0.00515869352966547, + -0.002708519110456109, + -0.03129662200808525, + -0.011949470266699791, + 0.0036557833664119244, + -0.008873937651515007, + 0.0019652654882520437, + -0.012720403261482716, + -0.0016546365804970264, + 0.0024194191209971905, + -0.017042553052306175, + 0.004033048637211323, + -0.020060675218701363, + -0.016394639387726784, + -0.01049781870096922, + 0.00040853326208889484, + -0.017600249499082565, + -0.014508313499391079, + -0.004067904781550169, + -0.0257196556776762, + -0.0025014332495629787, + -0.01132616214454174, + -0.0091363824903965, + -0.019978661090135574, + -0.003873120993375778, + 0.012917237356305122, + -0.014631334692239761, + -0.007401782087981701, + 0.01686212047934532, + -0.006688258610665798, + 0.023554479703307152, + 0.015754928812384605, + 0.004342652391642332, + -0.003793157171458006, + -0.004260638263076544, + -0.0005500077968463302, + 0.01230213139206171, + 0.025752460584044456, + 0.004617400001734495, + -0.0044615729711949825, + 0.0035881216172128916, + -0.010424005798995495, + -0.00622077751904726, + 0.019765423610806465, + 0.026621811091899872, + -0.005433441139757633, + 0.002688015578314662, + -0.023095201700925827, + -0.03395388275384903, + 0.020372329279780388, + 0.016288021579384804, + 0.009325015358626842, + -0.006643150933086872, + -0.025129152461886406, + 0.022422684356570244, + 0.02621174044907093, + 0.004986463580280542, + 0.010547026991844177, + -0.0038956748321652412, + 0.020470745861530304, + -0.012023283168673515, + 0.000640223384834826, + 0.010547026991844177, + 0.0009744312847033143, + -0.003104237839579582, + 0.0012906985357403755, + -0.013310905545949936, + 0.018387585878372192, + -0.006163367535918951, + 0.017108162865042686, + -0.01715737208724022, + 0.013958818279206753, + 0.013474934734404087, + 0.025194764137268066, + -0.04950377717614174, + -0.005622074007987976, + -0.0044410694390535355, + -0.0202903151512146, + 0.006634949240833521, + -0.005859915167093277, + 0.005601570475846529, + -0.004605097696185112, + -0.026244547218084335, + 0.01820715330541134, + -0.007893867790699005, + 0.03539733216166496, + -0.02929547429084778, + -0.0077913496643304825, + -0.03123101033270359, + -0.0195193812251091, + 0.003961286041885614, + 0.034052297472953796, + 0.02265232428908348, + -0.03693920001387596, + -0.004322148859500885, + -0.001552118919789791, + 0.012687597423791885, + 0.025670446455478668, + -0.023603688925504684, + -0.008882138878107071, + 0.03026324324309826, + -0.004395961295813322, + 0.010850479826331139, + 0.02376771718263626, + -0.005831209942698479, + 0.01568111591041088, + -0.014762557111680508, + 0.01017796341329813, + 0.0031493455171585083, + 0.01883046142756939, + -0.011137529276311398, + 0.023193618282675743, + -0.007697033230215311, + 0.0033502804581075907, + 0.019781826063990593, + 0.016337230801582336, + -0.01341752428561449, + -0.003645531600341201, + -0.010087747126817703, + -0.030443673953413963, + 0.0009436759864911437, + 0.017764277756214142, + 0.017452623695135117, + -0.009702281095087528, + -0.02063477411866188, + -0.01181824691593647, + 0.020519955083727837, + -0.0007165991119109094, + 0.002667512046173215, + -0.031247412785887718, + 0.004094559233635664, + 0.011350766755640507, + -0.0062289792113006115, + 0.024144982919096947, + 0.004621500615030527, + 0.02614612877368927, + -0.03150985762476921, + 0.008000485599040985, + 0.0054621463641524315, + 0.02070038579404354, + -0.002852044068276882, + 0.013286301866173744, + -0.01606658287346363, + -0.010046740062534809, + 0.005097182933241129, + 0.01108832098543644, + -0.011965872719883919, + 0.01825636252760887, + -0.013761984184384346, + -0.027523968368768692, + -0.001619780552573502, + 0.007311566732823849, + -0.00032036800985224545, + 0.014729751273989677, + 0.004277040716260672, + -0.010817673988640308, + 0.0028253893833607435, + 0.01958499290049076, + 0.014450903050601482, + -0.00816041324287653, + 0.0010118503123521805, + 0.0049536582082509995, + -0.005339124705642462, + -0.0022943473886698484, + 0.0014813815942034125, + 0.0005382182425819337, + -0.04310666769742966, + 0.00566308107227087, + 0.01067004818469286, + -0.000266289891442284, + 0.005950130522251129, + -0.02627735212445259, + -0.025014333426952362, + 0.0005066940211690962, + -0.006876891478896141, + 0.02419419027864933, + 0.009464439935982227, + 0.0022184844128787518, + 0.022324267774820328, + -0.0018012369982898235, + -0.0057655987329781055, + -0.0052284058183431625, + 0.004535385873168707, + -0.027294328436255455, + -0.009915517643094063, + 0.010678249411284924, + -0.0003226746339350939, + 0.01994585432112217, + 0.025818072259426117, + -0.021717362105846405, + 0.01917492225766182, + 0.02593289315700531, + 0.007692932616919279, + 0.002669562352821231, + 0.0163454320281744, + 0.034544385969638824, + -0.02900022454559803, + -0.008873937651515007, + 0.04071185365319252, + -0.004104811232537031, + 0.006786675658077002, + 0.019765423610806465, + 0.018272764980793, + -0.010325588285923004, + 0.00613466277718544, + -0.03490524739027023, + -0.006880992092192173, + -0.02211103029549122, + -0.02642497792840004, + 0.003983840346336365, + 0.04081026837229729, + -0.007118833251297474, + 0.022504698485136032, + 0.027589580044150352, + -0.0034015392884612083, + 0.006331496872007847, + -0.029049431905150414, + 0.0032990213949233294, + 0.006085454020649195, + -0.0072828615084290504, + -0.0012701950035989285, + -0.004637903533875942, + 0.016739100217819214, + -0.014262271113693714, + -0.018502404913306236, + -0.008800124749541283, + -0.003992041572928429, + -0.005691785831004381, + -0.00019542447989806533, + -0.03680797666311264, + 0.003436395199969411, + -0.004510781262069941, + -0.005589268170297146, + -0.015197232365608215, + -0.0057902028784155846, + -0.0032744172494858503, + -0.009472641162574291, + -0.006569338031113148, + 0.01108832098543644, + 0.023439660668373108, + 0.015410469844937325, + -0.0037849557120352983, + -0.005150492303073406, + -0.002341505605727434, + -0.0034774024970829487, + -0.04622320830821991, + 0.021028442308306694, + -0.0054908511228859425, + -0.01664068177342415, + -0.0016505359672009945, + 0.0047486224211752415, + 0.003323625773191452, + 0.01564010977745056, + -0.0015234139282256365, + 0.014344285242259502, + 0.013105870224535465, + -0.01855161413550377, + -0.021028442308306694, + 0.018912475556135178, + 0.003454848425462842, + -0.01763305440545082, + -0.013097668997943401, + -0.006565237417817116, + 0.006007540505379438, + 0.027868427336215973, + 0.0072500561363995075, + -0.006192072760313749, + -0.014483708888292313, + -0.002681864658370614, + 0.008841131813824177, + -0.015394066460430622, + -0.006614445708692074, + 0.012941841967403889, + -0.0014229464577510953, + -0.0054621463641524315, + 0.0003959748428314924, + 0.0072828615084290504, + 0.004264738876372576, + -0.019978661090135574, + -0.0006504752091132104, + 0.010834076441824436, + 0.03424913436174393, + -0.005880418699234724, + 0.016255216673016548, + -0.010251776315271854, + 0.015377664007246494, + -0.026031309738755226, + -0.01582874171435833, + -0.019781826063990593, + 0.0052366070449352264, + -0.01090788934379816, + -0.011957671493291855, + -0.013630760833621025, + 0.015328455716371536, + 0.00011103954602731392, + 0.02168455719947815, + 0.007922572083771229, + -0.0044164652936160564, + -0.023226423189044, + 0.04484536871314049, + -0.015820540487766266, + -0.008832930587232113, + 0.014180256053805351, + 0.007127034477889538, + 0.0006320219836197793, + -0.019158517941832542, + 0.03408510610461235, + 0.0317394994199276, + 0.0006299716187641025, + -0.017239386215806007, + 0.009915517643094063, + -0.019502978771924973, + 0.019683409482240677, + 0.03930120915174484, + -0.017879096791148186, + -0.02642497792840004, + -0.014401694759726524, + -0.013622559607028961, + -0.030574897304177284, + -0.017403414472937584, + -0.006298691034317017, + -0.0003006333427038044, + -0.018043125048279762, + -0.014942988753318787, + -0.011014508083462715, + 0.00463380292057991, + -0.013679970055818558, + 0.018223557621240616, + -0.011777239851653576, + -0.00023732861154712737, + 0.0029689143411815166, + 0.03333057463169098, + 0.0014629283687099814, + 0.025621239095926285, + -0.015312052331864834, + -0.01958499290049076, + 0.020733192563056946, + -0.021454917266964912, + 0.0004262175934854895, + -0.006196173373609781, + 0.012523569166660309, + 0.008078399114310741, + -0.023603688925504684, + -0.015418671071529388, + -0.012810619547963142, + 0.04642004147171974, + 0.002214383566752076, + 0.004838838241994381, + -0.01902729645371437, + -0.03337978199124336, + -0.003495855489745736, + -0.006798977963626385, + -0.006356101017445326, + 0.008365449495613575, + 0.003323625773191452, + -0.009940122254192829, + -6.503470649477094e-5, + -0.011834650300443172, + 0.0019529632991179824, + -0.014959391206502914, + -0.009841704741120338, + 0.004838838241994381, + 0.0024235197342932224, + 0.008513074368238449, + -0.0009083073236979544, + -0.022225849330425262, + -0.0021631247363984585, + 0.000767858000472188, + -0.010440408252179623, + -0.0101451575756073, + -0.00754940789192915, + -0.006212576292455196, + 0.004814234096556902, + -0.004892147611826658, + -0.014565723016858101, + -0.012400547973811626, + -0.019486576318740845, + 0.012835223227739334, + 0.00195501372218132, + 0.0005154080572538078, + -0.0022533403243869543, + -0.0062535833567380905, + -0.00595833221450448, + -0.0027392746414989233, + -0.003992041572928429, + -0.004428767133504152, + -0.008414657786488533, + -0.010727458633482456, + 0.001747927744872868, + -0.00031242286786437035, + -0.0019027296220883727, + 0.0026531596668064594, + 0.06315094232559204, + -0.004326249472796917, + 0.0014557521790266037, + 0.007036819122731686, + 0.005626174621284008, + -0.018928879871964455, + -0.0016095287865027785, + 0.011949470266699791, + 0.00463380292057991, + 0.0029976193327456713, + -0.009366022422909737, + -0.0210612490773201, + 0.01108832098543644, + 0.007040919736027718, + -0.021094053983688354, + -0.0038710706867277622, + 0.012097095139324665, + 0.027064688503742218, + -0.002575246151536703, + 0.0037644521798938513, + 0.012950043193995953, + -0.008349046111106873, + -0.006089555099606514, + 0.010218970477581024, + -0.016288021579384804, + 0.017255788668990135, + 0.0005833260365761817, + 0.015984568744897842, + 0.012605583295226097, + 0.007770846132189035, + -0.005064377095550299, + 0.014073638245463371, + -0.02099563740193844, + -0.001897603739053011, + -0.010776666924357414, + 0.010727458633482456, + -0.008168615400791168, + 0.007081926800310612, + -0.014016227796673775, + -0.0007340271840803325, + -0.006347899790853262, + -0.0153366569429636, + 0.027720801532268524, + 0.026064114645123482, + -0.0038423656951636076, + -0.0025075844023376703, + -0.006356101017445326, + -0.006913797464221716, + -0.0057696993462741375, + -0.0019621900282800198, + -0.009062569588422775, + -0.01230213139206171, + 0.007213149685412645, + 0.015779534354805946, + 0.016927732154726982, + 0.008718110620975494, + 0.011170335114002228, + -0.0037829054053872824, + -0.013056661933660507, + -0.004141717683523893, + -0.032100360840559006, + -0.006290489807724953, + -0.03331417217850685, + -0.022127432748675346, + -0.012162706814706326, + -0.030919356271624565, + -0.012728605419397354, + -0.029328281059861183, + 0.006753869820386171, + 0.0007355649140663445, + -0.0021590241231024265, + 0.010834076441824436, + 0.006561136804521084, + -0.030771730467677116, + -0.01359795592725277, + 0.023177215829491615, + 0.0032559640239924192, + 0.0036496322136372328, + 0.007446890231221914, + 0.014483708888292313, + 0.00047619498218409717, + 0.010054942220449448, + -0.0029545617289841175, + -0.026884257793426514, + -0.009702281095087528, + 0.019699811935424805, + 0.009661274030804634, + -0.03995732218027115, + 0.01791190356016159, + -0.036151863634586334, + -0.022685129195451736, + 0.006269986275583506, + -0.0026982673443853855, + 0.003987940959632397, + 0.010227171704173088, + 0.0008831904851831496, + -0.00916918832808733, + -0.0077913496643304825, + 0.003237510798498988, + -0.0011235945858061314, + 0.003579920157790184, + 0.015812339261174202, + -0.013040258549153805, + 0.0009103576885536313, + -0.0009006184991449118, + -0.01889607310295105, + 0.029951589182019234, + 0.012925439514219761, + -0.022898366674780846, + 0.002390714129433036, + 0.0015377664240077138, + -0.028327707201242447, + -0.0006243331590667367, + 0.0003900800656992942, + -0.0244730394333601, + 0.016812913119792938, + 0.005088981706649065, + -0.02211103029549122, + 0.002041128696873784, + -0.02622814290225506, + -0.010013935156166553, + 0.00048875343054533, + 0.022783547639846802, + -0.015353059396147728, + -0.002897151978686452, + 0.021290889009833336, + 0.006602143868803978, + -0.003471251344308257, + -0.019470172002911568, + 0.0003349767648614943, + 0.00331952515989542, + 0.024177787825465202, + 0.007656026165932417, + -0.00775444321334362, + 0.014795362949371338, + -0.0018053377280011773, + -0.012835223227739334, + -0.003108338452875614, + 0.01722298376262188, + -0.03046007640659809, + 0.01883046142756939, + -0.041597604751586914, + -0.0021590241231024265, + 0.011982276104390621, + -0.023226423189044, + 0.01609118841588497, + -0.002878698753193021, + -0.001953988568857312, + 0.012736806645989418, + -0.0035061072558164597, + 0.026966271921992302, + -0.02586728148162365, + 0.010054942220449448, + -0.0047158170491456985, + -0.005322722252458334, + 0.0034835534170269966, + -0.02252110093832016, + 0.008947749622166157, + -0.011375370435416698, + -0.015385865233838558, + 0.0070204162038862705, + 0.011449183337390423, + -0.018666433170437813, + 0.0052038016729056835, + -0.008496671915054321, + 0.006212576292455196, + 0.013499538414180279, + 0.02850813791155815, + 0.0021651750430464745, + 0.002321002073585987, + -0.0011594758834689856, + 0.004576392937451601, + 0.013376517221331596, + -0.027983248233795166, + 0.012843424454331398, + -0.013073064386844635, + 0.004654306452721357, + -0.010169761255383492, + -0.009333216585218906, + 0.01053062453866005, + 0.007713436149060726, + -0.01617320254445076, + 0.005310419946908951, + 0.009431634098291397, + -0.000383929000236094, + -0.009776093065738678, + 0.0003283131227362901, + -0.013647164218127728, + 0.004457472357898951, + 0.015312052331864834, + -0.025604834780097008, + 0.005134089384227991, + -0.015312052331864834, + 0.0011881808750331402, + -0.015558094717562199, + -0.013335510157048702, + 0.013122273609042168, + 0.023193618282675743, + 0.01855161413550377, + -0.013843998312950134, + 0.007606817875057459, + 5.606440026895143e-5, + 0.014860974624752998, + -0.010022136382758617, + -0.006274086888879538, + -0.023259229958057404, + -0.015492483973503113, + -0.020372329279780388, + -0.011129328049719334, + 0.009300410747528076, + -0.025063542649149895, + -0.023554479703307152, + 0.001789960078895092, + 0.011900261044502258, + -0.014483708888292313, + 0.015459678135812283, + 0.006327396258711815, + 0.009702281095087528, + 0.019273338839411736, + 0.003944883588701487, + 0.020372329279780388, + 0.006602143868803978, + 0.019913049414753914, + -0.02043794095516205, + -0.011621412821114063, + -0.005568764638155699, + 0.015328455716371536, + 0.005761498119682074, + 0.005294017028063536, + -0.0020749594550579786, + 0.024309011176228523, + -0.006823582109063864, + -0.004477975890040398, + 0.021044844761490822, + 0.007176243234425783, + 0.03592222183942795, + 0.007348473183810711, + -0.00396743742749095, + -0.0028663964476436377, + 0.004051501862704754, + -0.015517087653279305, + -0.0033543810714036226, + -0.016140395775437355, + -0.008488470688462257, + 0.005675383377820253, + -0.007746241986751556, + 0.009210195392370224, + 0.004588694777339697, + -0.01439349353313446, + -2.956996650027577e-5, + 0.004248335957527161, + -0.007574012037366629, + -0.010653645731508732, + 0.003854667767882347, + 0.015041405335068703, + -0.012105297297239304, + -0.00119433191139251, + 0.002685965271666646, + -0.009849905967712402, + -0.011539398692548275, + 0.0031903525814414024, + 0.009603863582015038, + -0.01498399581760168, + 0.005154592916369438, + -0.0019283590372651815, + 0.008800124749541283, + -0.036217473447322845, + -0.0029730149544775486, + -0.003083734307438135, + 0.008734513074159622, + -0.00587221747264266, + 0.0025075844023376703, + 0.007799551356583834, + 0.020487148314714432, + -0.004781428258866072, + -0.005909123457968235, + 0.004240134730935097, + -0.03011561743915081, + 0.01679650880396366, + 0.010063143447041512, + -0.02850813791155815, + 0.018289167433977127, + 0.004342652391642332, + -0.01910931058228016, + -0.006036245729774237, + -0.025965698063373566, + -0.008340844884514809, + 0.0014372989535331726, + 0.0065324315801262856, + 0.0025014332495629787, + 0.00557696633040905, + -0.005339124705642462, + 0.008627894334495068, + -0.0070245168171823025, + -0.00044928406714461744, + -0.011063716374337673, + 0.004240134730935097, + 0.023193618282675743, + 0.011350766755640507, + -0.0037131933495402336, + -0.014877377077937126, + 0.0020903372205793858, + -0.005736893974244595, + -0.03631589189171791, + 0.029115043580532074, + 0.013819393701851368, + 0.024555053561925888, + -0.0017633055103942752, + -0.006171569228172302, + 0.02063477411866188, + 0.017485428601503372, + -0.0046953135170042515, + -0.010415804572403431, + -0.020257508382201195, + -0.011736232787370682, + -0.023898940533399582, + 0.004543587099760771, + 0.019502978771924973, + -0.02795044146478176, + 0.01053062453866005, + 0.0017510033212602139, + -0.0018842763965949416, + 0.010612638667225838, + 0.00972688477486372, + 0.011014508083462715, + 0.0020800852216780186, + 0.02099563740193844, + 0.00019580892694648355, + 0.018502404913306236, + -0.015558094717562199, + 0.0187484472990036, + -0.007520702667534351, + -0.018157945945858955, + -0.004248335957527161, + 0.018174348399043083, + 0.027770010754466057, + 0.0025034837890416384, + -0.01321248896420002, + -0.016960538923740387, + -0.018945282325148582, + -0.015049607492983341, + -0.029590725898742676, + -0.017403414472937584, + 0.009160987101495266, + 0.000372652051737532, + 0.013204287737607956, + 0.01609118841588497, + 0.005552361719310284, + 0.008472067303955555, + 0.016206007450819016, + 0.013540545478463173, + 0.017108162865042686, + 0.015246441587805748, + 0.00899695884436369, + -0.021389305591583252, + 0.005080780014395714, + 0.019749021157622337, + 0.01373737957328558, + -0.008603290654718876, + 0.012433353811502457, + -0.02837691642343998, + -0.0010743860621005297, + -0.017534637823700905, + -0.00601574219763279, + 0.0009318864322267473, + 0.003409740747883916, + 0.002323052380234003, + 0.01471334882080555, + -0.024276206269860268, + -0.007414084393531084, + -0.005302218720316887, + -0.025637641549110413, + -0.011137529276311398, + -0.000574612058699131, + -0.013155078515410423, + 0.008595088496804237, + -0.00022131021250970662, + 0.016263417899608612, + -0.007344372104853392, + 0.015066009946167469, + 0.010227171704173088, + -0.0047199176624417305, + -0.011047313921153545, + 0.00831213966012001, + 0.008504873141646385, + 0.022553907707333565, + -0.008791922591626644, + 0.01709176041185856, + 0.011367169208824635, + -0.009251202456653118, + 0.0015705720288679004, + -0.008340844884514809, + 0.014721550047397614, + 0.0062822881154716015, + -0.005076679401099682, + 0.012154505588114262, + -0.023341244086623192, + 0.022898366674780846, + -0.01606658287346363, + 0.0038813224527984858, + -0.016484856605529785, + -0.0012281627859920263, + -0.0007565810810774565, + 0.019995063543319702, + -0.012023283168673515, + -0.024850305169820786, + -0.006315093953162432, + 0.013237092643976212, + 0.030902953818440437, + -0.02850813791155815, + 0.020815206691622734, + 0.0033297769259661436, + -0.014901981689035892, + 0.016550466418266296, + 0.020585566759109497, + -0.0014967592433094978, + 0.003836214542388916, + -0.004806032404303551, + 0.011990477330982685, + 0.00489624822512269, + 0.023669300600886345, + 0.0011348716216161847, + 0.027310730889439583, + -0.010825875215232372, + 0.01568111591041088, + -0.01868283562362194, + 0.03359301760792732, + -0.005371930543333292, + 0.001937585650011897, + 0.008914944715797901, + 0.007824155502021313, + -0.0018022621516138315, + -0.023226423189044, + 0.008201420307159424, + -0.026310157030820847, + -0.00328671932220459, + 0.040186960250139236, + -0.029443100094795227, + -0.005593368783593178, + 0.006938402075320482, + -0.01675550267100334, + -0.016501259058713913, + -0.0015869749477133155, + 0.0018863268196582794, + 0.010858681052923203, + 0.022471893578767776, + 0.003725495422258973, + 0.0264905896037817, + 0.004309846553951502, + -0.017173774540424347, + -0.014869175851345062, + 0.014639535918831825, + -0.00230049854144454, + 0.00993192009627819, + -0.02132369391620159, + 0.005269412882626057, + 0.00837775133550167, + -0.005294017028063536, + 0.031329426914453506, + -0.04343472421169281, + 0.003672186052426696, + -0.004625601228326559, + 0.010128754191100597, + 0.02795044146478176, + -0.018272764980793, + 0.0015828742180019617, + 0.00669235922396183, + 0.0035512151662260294, + -0.0042073288932442665, + 0.014582126401364803, + -0.013540545478463173, + 0.022619517520070076, + 0.028393318876624107, + 0.011334363371133804, + 0.004883945919573307, + 0.004022797103971243, + -0.03474121913313866, + 0.015426872298121452, + -0.013688171282410622, + -0.0035040569491684437, + -0.019617797806859016, + -0.01666528731584549, + -0.019486576318740845, + 0.004014595411717892, + 0.014631334692239761, + -0.006540633272379637, + -0.01240874920040369, + 0.006417611613869667, + 0.0007519677747040987, + -0.0026921164244413376, + 0.028114469721913338, + 0.017797082662582397, + 0.009653071872889996, + -0.01743622124195099, + 0.0072295526042580605, + -0.013991624116897583, + 0.0021590241231024265, + 0.034970857203006744, + -0.01756744273006916, + -0.012375944294035435, + -0.0034240931272506714, + 0.0006340723484754562, + -0.007590414956212044, + 0.02279995009303093, + 0.02342325821518898, + 0.00031831764499656856, + -0.0073074656538665295, + 0.012933640740811825, + 0.0033728342968970537, + 0.012941841967403889, + -0.007619119714945555, + -0.0025014332495629787, + -0.015025002881884575, + 0.0013522092485800385, + -0.0019703912548720837, + 0.00533502409234643, + 0.006807179190218449, + 0.0011810045689344406, + 0.0168785247951746, + 0.008016888983547688, + 0.00993192009627819, + -0.029393892735242844, + 0.004151969216763973, + 0.007155739702284336, + 0.009128181263804436, + 0.004588694777339697, + 0.010169761255383492, + -0.000937012315262109, + 0.0013716876273974776, + 0.0019919201731681824, + -0.013712775893509388, + 0.0038628692273050547, + 0.0052038016729056835, + 0.0013788638170808554, + 0.0143278818577528, + 0.02977115660905838, + 0.009054368361830711, + 0.0067948768846690655, + 0.01621420867741108, + -0.010268178768455982, + -0.008176816627383232, + 0.010358394123613834, + 0.022816352546215057, + -0.005987036973237991, + -0.019880244508385658, + -0.021454917266964912, + 0.0029545617289841175, + -0.004039199557155371, + -0.011875657364726067, + 0.00391002744436264, + -0.008857534267008305, + 0.007705234922468662, + 0.03762811794877052, + -0.005011068191379309, + 0.00802098959684372, + -0.017895499244332314, + 0.008144010789692402, + -0.007815954275429249, + 0.005683584604412317, + 0.02432541362941265, + -0.011178536340594292, + -0.01324529480189085, + 0.0028684469871222973, + -0.004363155923783779, + -0.012572778388857841, + -0.00030422143754549325, + 0.0034404960460960865, + 0.023948147892951965, + -0.01021076925098896, + -0.0005474448553286493, + -0.008250629529356956, + -0.004584594164043665, + -0.017108162865042686, + -0.006110058631747961, + 0.0033728342968970537, + -0.00616746861487627, + -0.012220117263495922, + -0.011531197465956211, + 0.01909290812909603, + -0.006064950488507748, + 0.015500685200095177, + -0.01181824691593647, + -0.012704000808298588, + 0.003469201037660241, + -0.002429670887067914, + 0.007959478534758091, + 0.00822602491825819, + 0.0008457715157419443, + 0.018272764980793, + -0.012884432449936867, + 0.011949470266699791, + -0.021307291463017464, + -0.02279995009303093, + 0.010842278599739075, + 0.0028725476004183292, + -0.009841704741120338, + -0.0032252087257802486, + -0.002345606219023466, + -0.008287535980343819, + -0.026031309738755226, + 0.00831213966012001, + 0.003727545728906989, + -0.002573195844888687, + 0.002956612268462777, + 0.02398095466196537, + 0.0005048999446444213, + -0.003214956959709525, + -0.009415230713784695, + -0.017485428601503372, + -0.0073074656538665295, + -0.0015726224519312382, + -0.004736320581287146, + 0.01300745364278555, + -0.0060034398920834064, + -0.003938732203096151, + -0.0017294746357947588, + 0.03011561743915081, + -0.0035819704644382, + 0.02434181608259678, + -0.001836093026213348, + -0.008082499727606773, + 0.003364632837474346, + -0.0029033028986305, + 0.011129328049719334, + 0.011826449073851109, + -0.012039685621857643, + 0.01011235173791647, + 0.02406296879053116, + 0.012786014936864376, + -0.014147451147437096, + -0.006848186254501343, + 0.01442629937082529, + 0.001001598546281457, + -0.035102080553770065, + -0.006803078576922417, + -0.0005782001535408199, + -0.026687422767281532, + 0.019913049414753914, + 0.01240874920040369, + -0.013040258549153805, + -0.000394949660403654, + 0.0036803875118494034, + 0.005265312269330025, + -0.006889193318784237, + 0.006823582109063864, + 0.0006909696967341006, + 0.004024847410619259, + 0.016353633254766464, + -0.012539972551167011, + 0.004400062374770641, + -0.01317968312650919, + 0.004121214151382446, + -0.009464439935982227, + 0.012121699750423431, + -0.014836370013654232, + -0.017797082662582397, + 0.020405134186148643, + -0.02754037082195282, + 0.029738351702690125, + -0.004293443635106087, + -0.020683983340859413, + -0.03039446473121643, + -0.007676529698073864, + -0.02134009636938572, + -0.001488557900302112, + -0.01737060956656933, + 0.013483135960996151, + 0.012261124327778816, + 0.0014403745299205184, + -0.010415804572403431, + 0.0013962918892502785, + 0.011842851527035236, + -0.025900086387991905, + 0.007877464406192303, + 0.0014321730704978108, + -0.004654306452721357, + -0.01764945685863495, + -0.005170995835214853, + 0.013885005377233028, + -0.03369143605232239, + -0.0004213479987811297, + 0.007180343847721815, + -0.0022225850261747837, + 0.0015818490646779537, + -1.6659136235830374e-5, + 0.01453291717916727, + -0.003178050508722663, + -0.03018122911453247, + -0.002448124112561345, + 0.01230213139206171, + -0.025145556777715683, + -0.014237666502594948, + -0.022635921835899353, + -0.008841131813824177, + 0.004933154676109552, + -0.004785528872162104, + -0.01627982035279274, + -0.003602473996579647, + -0.02224225364625454, + -0.010661846958100796, + -0.021996211260557175, + -0.0011625513434410095, + 0.008619693107903004, + 0.0014957340899854898, + 0.0037152436561882496, + -0.004252436570823193, + 0.007155739702284336, + 0.010924292728304863, + 0.0091363824903965, + -0.011481989175081253, + 0.026736631989479065, + 0.022685129195451736, + 0.006089555099606514, + -0.0037849557120352983, + -0.025424404069781303, + -0.025047138333320618, + 0.002663411432877183, + 0.010727458633482456, + -0.0030775831546634436, + 0.0003021711017936468, + 0.0028007852379232645, + -0.00396743742749095, + -0.0007816979195922613, + -0.004551788326352835, + -0.01076846569776535, + -0.018010320141911507, + 0.012687597423791885, + 0.015418671071529388, + -0.015435073524713516, + -0.0005807630950585008, + 0.02350527234375477, + 0.00822602491825819, + -0.020093480125069618, + 0.014828168787062168, + -0.019060101360082626, + -0.023177215829491615, + 0.01087508350610733, + 0.01547608058899641, + 0.003305172547698021, + 0.006413511000573635, + -0.02014268934726715, + -0.012950043193995953, + -0.008176816627383232, + 0.007729839067906141, + 0.023866133764386177, + -0.017797082662582397, + -0.008287535980343819, + 0.0012179110199213028, + -0.011998678557574749, + 0.02327563241124153, + -0.006499625742435455, + -0.021930599585175514, + 0.020339522510766983, + 0.0047240182757377625, + 0.004178623668849468, + 0.00492905406281352, + 0.013163280673325062, + -0.0006955830031074584, + 0.009243001230061054, + 0.012015081010758877, + 0.018699239939451218, + 0.007368976715952158, + -0.010399401187896729, + 0.002138520358130336, + -0.007262357976287603, + 0.017600249499082565, + 0.017518235370516777, + -0.0005699987523257732, + -0.02404656633734703, + 0.027146702632308006, + 0.00975969061255455, + -0.010604437440633774, + -0.0011010407470166683, + -0.020798802375793457, + 9.245820547221228e-5, + -0.019552186131477356, + -0.014065437018871307, + -0.009513648226857185, + 0.003795207478106022, + 0.016402840614318848, + 0.011965872719883919, + 0.002977115800604224, + -0.021651750430464745, + -0.011596809141337872, + -0.02713030017912388, + -0.01645204983651638, + 0.0052530099637806416, + 0.005474448204040527, + 0.019404562190175056, + -0.001957064028829336, + 0.021077651530504227, + 9.713557665236294e-5, + -0.022504698485136032, + -0.0064873239025473595, + 0.00831213966012001, + 0.012851626612246037, + 0.011875657364726067, + 0.006212576292455196, + -0.027064688503742218, + 0.008283435367047787, + 0.006208475679159164, + 0.006105957552790642, + -0.003050928469747305, + -0.011457384563982487, + -0.01220371387898922, + 0.012835223227739334, + -0.007770846132189035, + -0.007032718509435654, + -0.001152299577370286, + 0.01574672758579254, + -0.002061632229015231, + -0.005946029908955097, + -0.013286301866173744, + 0.00763552263379097, + 0.0052571105770766735, + -0.0022246353328227997, + 0.005347326397895813, + -0.01080127153545618, + 0.01799391768872738, + 0.02063477411866188, + -0.016296222805976868, + 0.024243399500846863, + -0.002556792926043272, + -0.009349619969725609, + -0.03041086718440056, + 0.0065365321934223175, + 0.01240874920040369, + 0.0007868238026276231, + 0.01080127153545618, + -0.011342564597725868, + -0.009636669419705868, + 0.002216433873400092, + -0.008365449495613575, + 0.005560563411563635, + 0.006179770454764366, + -0.02175016701221466, + -0.007504299748688936, + -0.00439186068251729, + 0.029131446033716202, + 0.0025116850156337023, + 0.011104723438620567, + -0.02168455719947815, + 0.012572778388857841, + 0.0019427115330472589, + 0.005724591668695211, + 0.012187311425805092, + -0.010473214089870453, + 0.005035672336816788, + -0.03018122911453247, + -0.0029115043580532074, + -0.0014875326305627823, + 0.011252349242568016, + -0.0006827682955190539, + -0.006872790399938822, + -0.004531284794211388, + 0.0012640439672395587, + -0.01608298532664776, + -0.006146964617073536, + 0.015090614557266235, + -0.009308612905442715, + 0.0037829054053872824, + 0.015074211172759533, + 0.0023538076784461737, + 0.000448002596385777, + 0.0067415679804980755, + -0.013786587864160538, + -0.0031226908322423697, + -0.0036106754560023546, + -0.0004908037954010069, + -0.016657086089253426, + -0.017682263627648354, + 0.00460099708288908, + 0.015582699328660965, + -0.009808898903429508, + 0.019420964643359184, + -0.006007540505379438, + 0.009292209520936012, + -0.010891486890614033, + -0.009956524707376957, + 0.01574672758579254, + 0.013876804150640965, + -0.006643150933086872, + 0.006331496872007847, + 0.005933728069067001, + -0.019289741292595863, + -0.019765423610806465, + 0.005683584604412317, + -0.009193792939186096, + 0.0032559640239924192, + 0.031903527677059174, + -0.0024788794107735157, + 0.010596235282719135, + 0.020962830632925034, + 0.007409983780235052, + -0.00707782618701458, + 0.002386613516137004, + -0.0013040258781984448, + 0.0016331078950315714, + 0.005224305205047131, + -0.006675956305116415, + 0.014614931307733059, + 0.010325588285923004, + -0.02078239992260933, + -0.014795362949371338, + -0.015262844040989876, + -0.012277526780962944, + -0.021930599585175514, + -0.0029689143411815166, + -0.00020413848687894642, + -0.005027471110224724, + -0.014303278177976608, + 0.00672516506165266, + 0.013040258549153805, + 0.002321002073585987, + 0.0025321885477751493, + -0.013606157153844833, + 0.003811610396951437, + 0.007221350912004709, + 0.0012404648587107658, + -0.013097668997943401, + -0.007200847379863262, + 0.016460251063108444, + -0.006667755078524351, + 0.021930599585175514, + -0.0015685217222198844, + -0.01439349353313446, + -0.024522248655557632, + 0.006885092705488205, + -0.024637067690491676, + -0.01454111933708191, + 0.017551040276885033, + -0.008693506009876728, + 0.00854588020592928, + 0.002938159042969346, + -0.009480842389166355, + 0.01021076925098896, + 1.0323858987248968e-5, + -0.014992197044193745, + 0.0008657624712213874, + 0.018666433170437813, + 0.013712775893509388, + -0.00825883075594902, + -0.007733939681202173, + -0.013630760833621025, + -0.0006878941785544157, + -0.008660700172185898, + -0.011777239851653576, + -0.011810045689344406, + 0.003083734307438135, + 0.019420964643359184, + -0.00592552637681365, + 0.0009503395995125175, + 0.01825636252760887, + -0.0006899445434100926, + 0.01958499290049076, + 0.01300745364278555, + -0.00463380292057991, + -0.010448610410094261, + -0.020683983340859413, + -0.012384145520627499, + 0.00010065962851513177, + -0.00958746112883091, + 0.02822929061949253, + -0.02140570804476738, + 0.02335764653980732, + -0.018518807366490364, + 0.0020154991652816534, + -0.003454848425462842, + -0.005786102265119553, + 0.007914370857179165, + 0.0005274538998492062, + 0.02440742775797844, + -0.008980555459856987, + 0.02348886989057064, + 0.03054209053516388, + 0.016763703897595406, + -0.02475188858807087, + 0.0033707839902490377, + -0.00955465529114008, + 0.0032682660967111588, + -0.013097668997943401, + 0.015648311004042625, + -0.002111865906044841, + -0.017879096791148186, + 0.006958905607461929, + -0.0033810357563197613, + 0.020585566759109497, + 0.013548746705055237, + 0.006917898543179035, + 0.004564090631902218, + -0.008939548395574093, + -0.016222409904003143, + 0.008759117685258389, + 0.007504299748688936, + -0.024997930973768234, + -0.013630760833621025, + 0.029935184866189957, + 0.0010549077996984124, + -0.006450417451560497, + 0.00820552185177803, + 0.005585167557001114, + 0.011555802077054977, + -0.0017356256721541286, + -0.01686212047934532, + -0.006803078576922417, + -0.002942259656265378, + 0.01094069518148899, + 0.015197232365608215, + -0.02091362327337265, + 0.005162794142961502, + 0.00038290381780825555, + 0.014336083084344864, + -0.015836942940950394, + -0.0028951014392077923, + -0.012146304361522198, + 0.024276206269860268, + 0.010653645731508732, + 0.016657086089253426, + -0.011974073946475983, + 0.013425725512206554, + 0.0032231584191322327, + 0.03418352082371712, + 0.005868116393685341, + -0.007938975468277931, + -0.000979557167738676, + 0.007627321407198906, + -0.0030570796225219965, + -0.026113323867321014, + -0.01233493722975254, + -0.02363649383187294, + 0.014795362949371338, + -0.007040919736027718, + -0.00014339671179186553, + -0.0012281627859920263, + -0.008082499727606773, + 0.009710482321679592, + -0.02050355263054371, + 0.021733764559030533, + 0.000831419019959867, + 0.019699811935424805, + -0.009767891839146614, + 0.0008647373178973794, + 0.0005894771311432123, + 0.015992769971489906, + 0.004502580035477877, + -0.011219543404877186, + -0.0025895985309034586, + -0.007332070264965296, + 0.015992769971489906, + 0.01167882326990366, + -0.011990477330982685, + -0.007996384985744953, + -0.0030099214054644108, + -0.004067904781550169, + 0.016271619126200676, + 0.0060239434242248535, + 0.004164271522313356, + 0.01011235173791647, + 0.005757397506386042, + 0.03401949256658554, + 0.0069753085263073444, + 0.011112924665212631, + 0.01108832098543644, + -0.0294266976416111, + 0.002597799990326166, + 0.003965387120842934, + -0.01090788934379816, + 0.021110456436872482, + 0.007401782087981701, + 0.0009472640813328326, + -0.00510538462549448, + 0.02831130474805832, + 0.0011605010367929935, + -0.00035701808519661427, + -0.02043794095516205, + 0.005675383377820253, + 0.005941929295659065, + 0.013220690190792084, + 0.0009636669419705868, + 0.00416222121566534, + 0.011908463202416897, + -0.021241679787635803, + -0.013926012441515923, + -0.0034425463527441025, + -0.012966446578502655, + -0.007984083145856857, + -0.005724591668695211, + -0.011219543404877186, + 0.006212576292455196, + -0.0025670446921139956, + 0.0018412189092487097, + -0.021947002038359642, + 0.005289916414767504, + 0.003914128057658672, + 0.01670629344880581, + -0.0012425152817741036, + 0.002624454675242305, + 0.005962432827800512, + 0.006585740949958563, + -0.009243001230061054, + -0.021225277334451675, + 0.012720403261482716, + -0.00610185693949461, + 0.002540390007197857, + 0.0009211220894940197, + -0.008152212016284466, + 0.0007504299865104258, + 0.003996142186224461, + 0.003852617461234331, + 0.0075822132639586926, + -0.0027577276341617107, + -0.0012640439672395587, + -0.013852199539542198, + -0.0071639409288764, + 0.003516359254717827, + -0.00234355591237545, + -0.006335597485303879, + 0.0064627197571098804, + 0.024292608723044395, + 0.012457958422601223, + -0.0019283590372651815, + 0.010136956349015236, + 0.008865735493600368, + 0.004008444491773844, + 0.000918046513106674, + 0.0057163904421031475, + -0.003430244280025363, + -0.008767318911850452, + 0.009415230713784695, + 0.0025055340956896544, + 0.007553508505225182, + 0.0021836282685399055, + -0.001836093026213348, + 0.003770603099837899, + -3.584917794796638e-5, + 0.0033769349101930857, + 0.007475594989955425, + 0.011490190401673317, + 0.00234355591237545, + -0.01554169226437807, + 0.005170995835214853, + 0.028754180297255516, + 0.010842278599739075, + 0.009661274030804634, + -0.0019693661015480757, + -0.00878372136503458, + 0.011047313921153545, + 0.0014957340899854898, + 0.0091363824903965, + 0.0021262182854115963, + -0.021733764559030533, + 0.007516602054238319, + 0.0005997288972139359, + -0.005589268170297146, + -0.015287448652088642, + 0.013507739640772343, + -0.01709176041185856, + 0.012580979615449905, + -0.02335764653980732, + 0.024489441886544228, + 0.0014424248365685344, + -0.011334363371133804, + -0.02936108596622944, + 0.0030570796225219965, + -0.006921999156475067, + -0.0016546365804970264, + -0.026506992056965828, + 0.015377664007246494, + 0.00663905031979084, + -0.008029190823435783, + -0.0012496914714574814, + -0.010243574157357216, + -0.010292783379554749, + -0.009349619969725609, + 0.012777813710272312, + 0.01778068020939827, + 0.013606157153844833, + 0.00089549261610955, + 0.0027987349312752485, + -0.015082412399351597, + -0.012982849031686783, + -0.02544080652296543, + -0.015590900555253029, + -0.0028069361578673124, + 0.01530385110527277, + 0.002905353205278516, + -0.00456819124519825, + 0.019831035286188126, + 0.02209462784230709, + -0.0018155894940719008, + 0.038645096123218536, + 0.007487897295504808, + -0.014565723016858101, + 0.0020790600683540106, + -0.0029135546647012234, + -0.0036988407373428345, + -0.0017222983296960592, + 0.01909290812909603, + 0.005138189997524023, + -0.008914944715797901, + -0.027589580044150352, + -0.015049607492983341, + 0.0163454320281744, + 0.004707615356892347, + -0.02043794095516205, + -0.0026019008364528418, + -0.006663654465228319, + 0.015918957069516182, + 0.008701707236468792, + 0.026802243664860725, + 0.00025885735522024333, + 0.015033204108476639, + -0.012367742136120796, + -0.00813991017639637, + -0.01223651971668005, + 0.019142115488648415, + -0.00554416049271822, + -0.008156312629580498, + 0.027704399079084396, + 0.0022307864855974913, + 0.0022246353328227997, + 0.022963978350162506, + -0.011974073946475983, + -0.009661274030804634, + 0.027425551787018776, + -0.01171162910759449, + 0.01853521168231964, + -0.015615505166351795, + -0.01108832098543644, + 0.021225277334451675, + 0.010341991670429707, + 0.014869175851345062, + -0.010989903472363949, + -0.004941355902701616, + 0.005876318085938692, + 0.004117113072425127, + -0.0002536032989155501, + 0.017403414472937584, + -0.0027638787869364023, + -0.0008657624712213874, + -0.015558094717562199, + 0.007758543826639652, + -0.013409323059022427, + 0.003989991266280413, + -0.02488311007618904, + 0.006081353407353163, + -0.010095949284732342, + -0.019224129617214203, + -0.0032580143306404352, + -0.006352000404149294, + 0.026687422767281532, + -0.006290489807724953, + 0.001406543655321002, + -0.01666528731584549, + 0.030361659824848175, + -0.010850479826331139, + -0.020454343408346176, + -0.0032252087257802486, + -0.00011373063898645341, + 0.010588034056127071, + -0.007541206199675798, + -0.014557521790266037, + 0.02550641819834709, + 0.015943562611937523, + 0.002466577338054776, + -0.019404562190175056, + -0.0011553751537576318, + -0.018371181562542915, + 0.009210195392370224, + -0.00952184945344925, + -0.022767143324017525, + 0.007824155502021313, + 0.0063027916476130486, + -0.008865735493600368, + 0.00012180391058791429, + -0.017862694337964058, + 0.019010894000530243, + 0.0013706624740734696, + 0.013606157153844833, + 0.005031571723520756, + 0.009251202456653118, + -0.0033379781525582075, + -0.006368403322994709, + -0.01523823942989111, + -0.008049694821238518, + 0.02063477411866188, + 0.06213396415114403, + 0.02885259874165058, + 0.009243001230061054, + -0.0008811401203274727, + 0.011810045689344406, + -0.02035592682659626, + -0.004756824113428593, + -0.00899695884436369, + -0.016222409904003143, + -0.009472641162574291, + 0.008947749622166157, + -0.010596235282719135, + 0.007848760113120079, + 0.012015081010758877, + -0.009284008294343948, + 0.013712775893509388, + 0.0034015392884612083, + 0.000186197881703265, + -0.011170335114002228, + 0.009210195392370224, + -0.00690149562433362, + 0.025391599163413048, + -0.003797257784754038, + -0.0001630032347748056, + 0.005622074007987976, + 0.004445170052349567, + 0.0006279212539084256, + -0.0021200673654675484, + -0.004445170052349567, + 0.0009964726632460952, + 0.016829315572977066, + -0.012523569166660309, + -0.024374622851610184, + 0.006729265674948692, + -0.0010297908447682858, + 0.026129726320505142, + -0.009111778810620308, + 0.015123419463634491, + -0.00583941163495183, + -0.012933640740811825, + -0.023374048992991447, + -0.01653406396508217, + 0.013310905545949936, + -0.016099389642477036, + -0.024489441886544228, + -0.011637816205620766, + 0.0010262028081342578, + 0.018994489684700966, + -0.017944708466529846, + -0.001024664961732924, + 0.015492483973503113, + 0.0065119280479848385, + -0.03011561743915081, + -0.012950043193995953, + -0.0057163904421031475, + -0.01129335630685091, + 0.01709176041185856, + -0.021012039855122566, + 0.007623220793902874, + -0.001043118187226355, + -0.0052530099637806416, + -0.0024583758786320686, + 0.005216103512793779, + 0.007471494376659393, + -0.008603290654718876, + 0.007233653217554092, + 0.0035655677784234285, + -0.001833017566241324, + 0.0015838993713259697, + -0.003065281081944704, + 0.013876804150640965, + -0.010161560028791428, + -0.009448036551475525, + -0.017895499244332314, + -0.009062569588422775, + -0.004888046532869339, + -0.019256936386227608, + -0.012539972551167011, + -0.02391534298658371, + 0.0031185902189463377, + -0.005019269417971373, + -0.003663984825834632, + 0.011580405756831169, + 0.0035327619407325983, + -0.011769038625061512, + 0.00763552263379097, + -0.0018309671431779861, + -0.0004920852370560169, + 0.007118833251297474, + 0.01021076925098896, + -0.015000398270785809, + 8.111717761494219e-5, + -0.019355352967977524, + 0.011654218658804893, + 0.019962258636951447, + -0.00810710433870554, + 0.0006043422035872936, + -0.010998105630278587, + -0.0011000155936926603, + 0.008209622465074062, + 0.006130562163889408, + -0.0030119717121124268, + -0.008320340886712074, + 0.011186737567186356, + 0.0008980555576272309, + -0.029738351702690125, + -0.012982849031686783, + -0.005777901038527489, + -0.01429507602006197, + 0.016050180420279503, + -0.014803564175963402, + 0.015689317137002945, + -0.009456237778067589, + 0.011375370435416698, + 0.011334363371133804, + 0.020815206691622734, + 0.008361348882317543, + -0.008070197887718678, + -0.007159840315580368, + 0.014590327627956867, + -0.007061423268169165, + 0.012088893912732601, + 0.03401949256658554, + 0.014688744209706783, + -0.003647581906989217, + -0.0018678735941648483, + -0.00011853616160806268, + 0.00975969061255455, + -0.007651925552636385, + -0.00540063576772809, + 0.005876318085938692, + 0.00613466277718544, + -0.003239561105147004, + 0.010957098565995693, + 0.005642577540129423, + -0.003994091879576445, + 0.003108338452875614, + -0.016099389642477036, + 0.021766571328043938, + -0.017534637823700905, + -0.019699811935424805, + 0.02627735212445259, + 0.01439349353313446, + 0.0011348716216161847, + -0.0029853172600269318, + -0.0012107347138226032, + -0.005371930543333292, + 0.022849157452583313, + 0.010374797508120537, + -0.003112439066171646, + 0.006585740949958563, + -0.01053062453866005, + 0.002366109983995557, + 0.0002411730238236487, + 0.004773227032274008, + 0.038251426070928574, + 0.0010385048808529973, + -0.0007857986493036151, + -0.014237666502594948, + 0.0025075844023376703, + -0.007040919736027718, + 0.011629614979028702, + 0.003153446363285184, + 0.005437541753053665, + 0.001641309354454279, + -0.010424005798995495, + 0.0002678276505321264, + 0.024932319298386574, + -0.009013361297547817, + -0.009874510578811169, + -0.02754037082195282, + -0.0038977251388132572, + -0.005843512248247862, + 0.007746241986751556, + 0.0036127257626503706, + 0.022061821073293686, + 0.00281513761729002, + -0.003327726386487484, + -0.02739274501800537, + 0.0015756979119032621, + 0.014377090148627758, + 0.005966533441096544, + 0.026113323867321014, + -0.0002181065356126055, + -0.02747475914657116, + 0.015197232365608215, + -0.005806605797261, + 0.0017397264018654823, + -0.0013050510315224528, + -0.006298691034317017, + 0.01149839162826538, + 0.018371181562542915, + -0.018026722595095634, + -0.012244720943272114, + -0.023193618282675743, + 0.020667580887675285, + 0.009210195392370224, + 0.009415230713784695, + -0.025637641549110413, + 0.011506592854857445, + 0.018502404913306236, + 0.0020954629871994257, + -0.005240707658231258, + -0.0022758941631764174 + ], + "f96265c5-d43a-4e42-9bd9-350aafc277ab": [ + -0.01751403510570526, + -0.026367133483290672, + -0.02069840580224991, + 0.023512180894613266, + -0.02709459699690342, + 0.003059122944250703, + 0.00845505204051733, + -0.00947075616568327, + -0.01704736053943634, + 0.054271548986434937, + 0.03445159271359444, + 0.014041425660252571, + 0.004972146824002266, + -0.006114814430475235, + 0.005840299651026726, + 0.016978731378912926, + -0.012037468142807484, + 0.01907876878976822, + 0.0016067686956375837, + -0.015990478917956352, + 0.04139681160449982, + -0.009662915952503681, + -0.023223940283060074, + -0.018172871321439743, + 0.017294423654675484, + -0.01268944051116705, + 0.004045660141855478, + 0.0022647459991276264, + -0.05608334764838219, + -0.005802553612738848, + 0.03744380176067352, + 0.007988376542925835, + -0.007974650710821152, + 0.020629776641726494, + 0.014755163341760635, + -0.050373442471027374, + -0.0019078769255429506, + 0.005603530909866095, + -0.028467170894145966, + -0.003688790835440159, + -0.007542290724813938, + 0.02358081005513668, + -0.006883455440402031, + 0.018378756940364838, + -0.01839248277246952, + 0.006540311966091394, + -0.03752615675330162, + -0.027533821761608124, + -0.0010182778351008892, + -0.014206133782863617, + 0.009463893249630928, + 0.0048932237550616264, + -0.019147397950291634, + -0.021467046812176704, + 0.04351057484745979, + -0.018351305276155472, + 0.03307901695370674, + 0.057702984660863876, + 0.005569216329604387, + -0.07746803760528564, + 0.00028416558052413166, + -0.0234847292304039, + 0.015592433512210846, + -0.0008454194176010787, + 0.010074688121676445, + 0.0036441823467612267, + -0.02528280019760132, + 0.026847533881664276, + -0.005627550650388002, + 0.0028738253749907017, + 0.00727463886141777, + 0.03302411362528801, + -0.028961297124624252, + 0.037361446768045425, + -0.004536354914307594, + 0.018968963995575905, + 0.04488314688205719, + 0.021343516185879707, + 0.0033919718116521835, + -0.0011924230493605137, + -0.018461111932992935, + 0.01648460514843464, + 0.05053815245628357, + 0.011776679195463657, + 0.03307901695370674, + 0.009388402104377747, + -0.026669099926948547, + -0.04869890213012695, + 0.0018358168890699744, + -0.036702610552310944, + 0.02213960886001587, + 0.03140447661280632, + -0.006859435234218836, + -0.02071213163435459, + -0.017953259870409966, + 0.022167058661580086, + 0.0184885635972023, + -0.014020836912095547, + 0.02010819874703884, + -0.004206937272101641, + 0.019051317125558853, + 0.02116508036851883, + -0.0014188976492732763, + -0.003040249925106764, + -0.0011924230493605137, + -0.026833808049559593, + 0.008908000774681568, + 0.01806306466460228, + -0.026188699528574944, + 0.012668851763010025, + 0.012078645639121532, + -0.04776555299758911, + 0.017445407807826996, + -0.0006849998608231544, + -0.022867072373628616, + 0.0008677237201482058, + -0.05847162380814552, + -0.03349078819155693, + 0.006183443125337362, + -0.019902313128113747, + 0.009498207829892635, + -0.011591382324695587, + -0.006643254775553942, + -9.881455480353907e-5, + -0.013108075596392155, + 0.02047879435122013, + -0.028961297124624252, + 0.01626499369740486, + 0.0395575650036335, + 0.028741685673594475, + -0.028110302984714508, + -0.057977497577667236, + 0.01128255296498537, + -0.01876307837665081, + 0.009134476073086262, + 0.031761348247528076, + 0.01162569597363472, + 0.060008905827999115, + -0.012847286649048328, + 0.01884543150663376, + -0.023059232160449028, + -0.020780760794878006, + -0.04427921772003174, + 0.010246260091662407, + 0.01004723645746708, + 0.0009916842682287097, + -0.032639794051647186, + 0.03181625157594681, + -0.04488314688205719, + -0.005908928345888853, + -0.054683323949575424, + -0.006138834170997143, + -0.019655250012874603, + -0.012215903028845787, + 0.0303338710218668, + 0.0027828924357891083, + -0.01677284575998783, + -0.0033250588458031416, + 0.010706071741878986, + 0.07543662935495377, + 0.020163102075457573, + -0.044581182301044464, + -0.008564857766032219, + 0.005596667993813753, + 0.03983207792043686, + 0.004333900287747383, + 0.042769383639097214, + 0.01315611507743597, + -0.003158634528517723, + 0.008448189124464989, + 0.002630193717777729, + -0.01755521260201931, + 0.037224188446998596, + -0.0001926964323502034, + 0.008324657566845417, + -0.03651045262813568, + 0.03159663826227188, + 0.029290715232491493, + 0.035879068076610565, + -0.04139681160449982, + -0.0016410830430686474, + -0.010500186122953892, + 0.028878943994641304, + 0.0017491731559857726, + -0.032996661961078644, + 0.022963151335716248, + 0.02588673308491707, + 0.011687462218105793, + 0.003908402752131224, + 0.013663968071341515, + -0.01116588432341814, + -0.01465908344835043, + -0.016319897025823593, + 0.0019885157234966755, + -0.031706444919109344, + -0.03368294984102249, + -0.011735501699149609, + 0.003980462905019522, + -0.020355261862277985, + 0.04381253942847252, + 0.015002226456999779, + -0.015647336840629578, + 0.0053496044129133224, + 0.03741635009646416, + -0.011083529330790043, + 0.0123462975025177, + -0.025543589144945145, + -0.012085508555173874, + 0.010863917879760265, + -0.012490417808294296, + 0.0018409639596939087, + -0.03140447661280632, + 0.010891369543969631, + 0.008413874544203281, + -0.013629653491079807, + 0.012366886250674725, + -0.02381414733827114, + 0.020218005403876305, + -0.005353035870939493, + -0.011488438583910465, + -0.0012370317708700895, + -0.018639545887708664, + 0.017404230311512947, + -0.011577656492590904, + -0.042357612401247025, + -0.0303338710218668, + -0.026147522032260895, + 0.03766341134905815, + -0.012833560816943645, + 0.00861289817839861, + 0.07340522110462189, + -0.0359339714050293, + 0.04279683530330658, + -0.026971066370606422, + 0.01201687939465046, + 0.021974898874759674, + 0.023100409656763077, + -0.0012490417575463653, + -0.030827997252345085, + -0.019476816058158875, + 0.010664895176887512, + -0.019092494621872902, + -0.03093780390918255, + -0.01523556374013424, + -0.05092247202992439, + 0.0034417277202010155, + 0.0012687725247815251, + 0.03686732053756714, + -0.002661076607182622, + 0.011467850767076015, + 0.00873642973601818, + 0.032584890723228455, + 0.013032583519816399, + 0.024678869172930717, + -0.013348275795578957, + 0.02014937624335289, + 0.0469694584608078, + -0.030553482472896576, + -0.013814950361847878, + 0.017198344692587852, + 0.010109002701938152, + 0.009306047111749649, + -0.00875701755285263, + 0.01081587839871645, + 0.009292321279644966, + -0.08345246315002441, + 0.026888711377978325, + -0.029263263568282127, + 0.026737729087471962, + 0.04364783316850662, + 0.008304068818688393, + 0.0011864181142300367, + 0.011145295575261116, + 0.04482824727892876, + 0.0021772445179522038, + -0.0209866464138031, + 0.02561221830546856, + 0.013259058818221092, + 0.017019908875226974, + 0.021782739087939262, + -0.02089056558907032, + -0.001063744304701686, + 0.022167058661580086, + 0.017857179045677185, + 0.01890033483505249, + 0.010115865617990494, + -0.05962458625435829, + -0.008379559963941574, + -0.032173119485378265, + -0.008880549110472202, + -0.0066466862335801125, + 0.018461111932992935, + 0.011900210753083229, + 0.028412267565727234, + 0.005740787833929062, + 0.0010628864401951432, + -0.021741561591625214, + 0.007720725145190954, + -0.00609079422429204, + 0.015606159344315529, + 0.0044745891354978085, + -0.0019799370784312487, + 0.0038260482251644135, + -0.030635837465524673, + 0.04351057484745979, + -0.007233461365103722, + 0.03382020816206932, + 0.04164387658238411, + -0.021741561591625214, + 0.02065722830593586, + 0.0026576451491564512, + -0.005167738534510136, + -0.014713985845446587, + -0.016292445361614227, + -0.002647350775077939, + 0.029482875019311905, + -0.017266971990466118, + -0.0043167429976165295, + -0.017637567594647408, + -0.04422431439161301, + -0.021796464920043945, + 0.0020554286893457174, + -0.08367206901311874, + 0.04642042890191078, + 0.03195350617170334, + -0.05331074818968773, + 0.019476816058158875, + -0.029675036668777466, + -0.010630580596625805, + 0.0014549277257174253, + -0.028878943994641304, + 0.011536478996276855, + -0.014837518334388733, + 0.010342339985072613, + -0.04762829467654228, + -0.03747125342488289, + -0.024720046669244766, + -0.035082973539829254, + 0.010754112154245377, + -0.048479288816452026, + 0.0007806511130183935, + 0.008667800575494766, + 0.014521826058626175, + -0.03283195570111275, + 0.014590454287827015, + -0.02255138009786606, + -0.012325708754360676, + 0.001486668479628861, + -0.003668202320113778, + 0.012037468142807484, + 0.0008325515082105994, + -0.0037436936981976032, + 0.012099234387278557, + -0.016731668263673782, + 0.05720885843038559, + -0.003023092867806554, + -0.014247311279177666, + -0.010170768946409225, + 0.01071979757398367, + 0.012819834984838963, + -0.008908000774681568, + -0.03296921029686928, + -0.0048451838083565235, + -0.038184989243745804, + -0.00975213386118412, + 0.03307901695370674, + -0.00770013639703393, + -0.0014652220997959375, + -0.030086807906627655, + -0.019998393952846527, + -0.028096577152609825, + 0.00015441450523212552, + -0.023457277566194534, + -0.042357612401247025, + -0.0031002999749034643, + -0.009793310426175594, + 0.06110696494579315, + -0.012751206755638123, + -0.010857054963707924, + 0.01211296021938324, + 0.00868152640759945, + -0.002899561310186982, + -0.019710153341293335, + 0.028878943994641304, + 0.03428688272833824, + 0.010692345909774303, + -0.010177630931138992, + 0.03047112748026848, + -0.02389650233089924, + 0.003232410177588463, + -0.0278769638389349, + -0.0022132745943963528, + -0.020959194749593735, + 0.0456792414188385, + -0.02334747277200222, + -0.03354569151997566, + -0.015070855617523193, + -0.004968715365976095, + 0.01583949662744999, + 7.74083127907943e-6, + -0.019421912729740143, + -0.002920149825513363, + -0.006979535333812237, + -0.004148602951318026, + 0.01179040502756834, + -0.01162569597363472, + 0.022523928433656693, + -0.002178960246965289, + 0.018735626712441444, + -0.0025066621601581573, + -0.013259058818221092, + 0.01769247092306614, + 0.015812044963240623, + 0.05553431808948517, + 0.017623841762542725, + 0.010335477069020271, + -0.002235578838735819, + 0.06407172232866287, + 0.013114938512444496, + 0.012929640710353851, + 0.0346437506377697, + 0.018914060667157173, + 0.010081551037728786, + 0.03189860284328461, + -0.026765180751681328, + 0.02218078449368477, + -0.012401199899613857, + 0.01229825709015131, + -0.017843453213572502, + -0.003963305614888668, + 0.01257963478565216, + 0.05891084671020508, + -0.022070979699492455, + 0.0016882652416825294, + -0.020808212459087372, + -0.02352590672671795, + 0.003688790835440159, + -0.024898480623960495, + 0.010088413953781128, + 0.02584555558860302, + 0.016841474920511246, + -0.00034185656113550067, + -0.017486585304141045, + -0.016196366399526596, + -0.04924793168902397, + -0.014178683049976826, + -0.05053815245628357, + 0.006183443125337362, + 0.007672685198485851, + -0.017678745090961456, + 0.0007283217273652554, + 0.008908000774681568, + -0.09163299947977066, + -0.02876913733780384, + -0.010754112154245377, + 0.004913812503218651, + 0.03450649231672287, + 0.0020502815023064613, + 0.03261234238743782, + -0.03552219644188881, + -0.010074688121676445, + -0.0063138375990092754, + 0.01556498184800148, + -0.019023867323994637, + 0.017994437366724014, + -0.029867196455597878, + -0.0167179424315691, + -0.014521826058626175, + -0.0035343763884156942, + 0.038843825459480286, + -0.029263263568282127, + -0.015263015404343605, + -0.04900086671113968, + 0.03596142306923866, + 0.008585446514189243, + -0.024541610851883888, + -0.0015046835178509355, + 0.006029028445482254, + -0.017129715532064438, + -0.037910476326942444, + -0.028878943994641304, + 0.023333746939897537, + 0.01745913363993168, + -0.006873161066323519, + -0.0012824982404708862, + 0.0076315077021718025, + -0.028220107778906822, + -0.013519847765564919, + 0.031020157039165497, + -0.01174236461520195, + 0.019380735233426094, + 0.026243602856993675, + 0.0014025983400642872, + -0.0015355664072558284, + -0.018584642559289932, + -0.01332082413136959, + 0.015221838839352131, + -0.05545196309685707, + 0.003270155983045697, + -0.04145171493291855, + 0.022400397807359695, + 0.004804006777703762, + -0.02543378435075283, + -0.01796698570251465, + -0.0002719410986173898, + 0.038843825459480286, + -0.01806306466460228, + 0.02264746092259884, + 0.003134614322334528, + -0.016361074522137642, + -0.04664004221558571, + -0.00042335307807661593, + -0.04493805021047592, + 0.0006142265629023314, + 0.0058437311090528965, + 0.01737677864730358, + -0.017541486769914627, + 0.0023951404727995396, + 0.04219290614128113, + 0.0011529616313055158, + -0.011934525333344936, + -0.011687462218105793, + -0.023978855460882187, + -0.02506318874657154, + -0.02612007036805153, + 0.011598245240747929, + -0.0006283812108449638, + -0.032035861164331436, + 0.033380985260009766, + -0.043894894421100616, + -0.023882776498794556, + 0.031761348247528076, + -0.01866699755191803, + 0.020272908732295036, + 0.032777052372694016, + 0.006986398249864578, + 0.003309617517516017, + -0.0033833933994174004, + 0.014288488775491714, + -0.004409391898661852, + -0.03340843692421913, + 0.026765180751681328, + -0.011989427730441093, + 0.015770867466926575, + 0.016800297424197197, + 0.02209843136370182, + 0.03368294984102249, + 0.013808087445795536, + -0.015853222459554672, + 0.016896378248929977, + -0.04123210161924362, + 0.022908249869942665, + -0.017637567594647408, + -0.022716088220477104, + 0.006783943623304367, + 0.006245208904147148, + -0.0004010487755294889, + 0.027396563440561295, + -0.0018512583337724209, + -0.030004452913999557, + 0.0065986462868750095, + 0.03604377433657646, + 0.02200235053896904, + 0.022263139486312866, + -0.020080748945474625, + -0.016566960141062737, + -0.012394336983561516, + 0.031431928277015686, + -0.0017809139098972082, + 0.023649439215660095, + 0.036894772201776505, + 0.003946148324757814, + 0.007535427808761597, + 0.03708693012595177, + 0.0011864181142300367, + 0.017170893028378487, + 0.027025969699025154, + 0.012998269870877266, + 0.00719228433445096, + -0.017912082374095917, + 0.01393848191946745, + 0.009765859693288803, + -0.025392606854438782, + -0.003949579782783985, + -0.007556016091257334, + 0.037169285118579865, + -0.032584890723228455, + 0.016045382246375084, + -0.0020005255937576294, + 0.004141740035265684, + 0.01222962886095047, + 0.030910352244973183, + -0.005994713865220547, + 0.019216027110815048, + -0.0034554533194750547, + 0.05517745018005371, + 0.002880688291043043, + 0.02779461070895195, + 0.010081551037728786, + -0.0102119455114007, + 0.014288488775491714, + 0.018653271719813347, + -0.0029973569326102734, + -0.0024672006256878376, + -0.01111784391105175, + -0.002343669068068266, + 0.019998393952846527, + -0.01811796799302101, + -0.014961049892008305, + 0.005253524519503117, + -0.03862421214580536, + -0.0095874248072505, + 0.014796340838074684, + -0.02487102895975113, + 0.006468251813203096, + 0.0021309200674295425, + 0.0129708182066679, + 0.014933598227798939, + 0.009004081599414349, + 0.01954544521868229, + 0.018982689827680588, + -0.02219451032578945, + 0.04804006591439247, + -0.027025969699025154, + 0.032639794051647186, + 0.024157291278243065, + -0.009807036258280277, + 0.0005262960912659764, + -0.010253123007714748, + 0.013169840909540653, + -0.012936503626406193, + -0.028961297124624252, + 0.0135953389108181, + -0.013005132786929607, + -0.01523556374013424, + 0.012696303427219391, + -0.009642328135669231, + 0.00953938439488411, + 0.0014609327772632241, + -0.02520044706761837, + -0.002076017204672098, + -0.0035086406860500574, + 0.009861939586699009, + 0.08800940215587616, + -0.011708050966262817, + 0.024171017110347748, + -0.033188823610544205, + 0.008592309430241585, + 0.027135774493217468, + 0.010898232460021973, + -0.00214293017052114, + 0.023608261719346046, + -0.0076452335342764854, + 0.019490541890263557, + 0.018268952146172523, + -0.012627675198018551, + 0.013835539110004902, + 0.012538457289338112, + 0.017239520326256752, + 0.013636516407132149, + 0.017623841762542725, + -0.01354729849845171, + -0.0014146084431558847, + -0.005620687734335661, + 0.020904291421175003, + -0.0011975702363997698, + 0.03159663826227188, + -0.007017281372100115, + 0.0197376050055027, + 0.008036416955292225, + 0.009971745312213898, + -0.0022081274073570967, + 0.0014180397847667336, + -0.019106220453977585, + -0.011255101300776005, + 0.005751082208007574, + 0.01065803226083517, + 0.00014497805386781693, + 0.011069804430007935, + -0.006550606340169907, + -0.027725981548428535, + -0.03922814503312111, + -0.017527760937809944, + 0.01593557745218277, + -0.027259306982159615, + 0.00715797021985054, + -0.016470879316329956, + 0.03983207792043686, + -0.015441450290381908, + 0.007281501777470112, + 0.01150902733206749, + 0.0015510078519582748, + 0.0003821759019047022, + -0.00041198646067641675, + 0.013705144636332989, + -0.023594535887241364, + 0.01190707366913557, + -0.01489242073148489, + 0.010513911955058575, + -0.005785396788269281, + -0.01132373046129942, + -0.014508100226521492, + 0.01839248277246952, + -0.0396399199962616, + 0.042220357805490494, + 0.0016247837338596582, + -0.015043403953313828, + -0.01991603896021843, + 0.002163518685847521, + 0.021919995546340942, + -0.0019078769255429506, + 0.01626499369740486, + 0.0021892543882131577, + 0.027259306982159615, + 0.005936379544436932, + 0.03167899325489998, + -0.008002102375030518, + 0.04905577003955841, + -0.021796464920043945, + 0.030498579144477844, + -0.024280821904540062, + 0.018131693825125694, + 0.016292445361614227, + -0.030965255573391914, + -0.011008038185536861, + 0.00558294216170907, + -0.020039571449160576, + -0.00017886346904560924, + -0.01093254704028368, + -0.002858384046703577, + 0.03738889843225479, + -0.0023265117779374123, + 0.018145419657230377, + 0.001104921568185091, + -0.022990602999925613, + -0.016429703682661057, + -0.005208916030824184, + 0.024912206456065178, + -0.004097131546586752, + -0.023320021107792854, + 0.015304192900657654, + 0.01088450662791729, + 0.020547423511743546, + -0.03461629897356033, + 0.009498207829892635, + -0.00879819504916668, + 0.034396689385175705, + -0.012915914878249168, + -0.0029132869094610214, + 0.005099109839648008, + 0.04219290614128113, + -0.021974898874759674, + 0.0284397192299366, + 0.0078030796721577644, + -0.010863917879760265, + 0.006379034835845232, + -0.012044331058859825, + 0.0064202118664979935, + -0.006186874583363533, + 0.03329863026738167, + 0.001789492554962635, + 0.00942271575331688, + -0.01185903325676918, + -0.006965809501707554, + -0.01482379250228405, + 0.0017474574269726872, + 0.004035365767776966, + 0.0016796865966171026, + 0.025859281420707703, + -0.008475640788674355, + 0.04202819615602493, + 0.033380985260009766, + 0.02904365211725235, + 0.005689316429197788, + 0.0015355664072558284, + -0.025269076228141785, + 0.013622790575027466, + -0.03738889843225479, + -0.02849462255835533, + -0.009223693050444126, + -0.032118216156959534, + -0.05600099265575409, + 0.019339557737112045, + -0.048287130892276764, + 0.004323605913668871, + -0.02084938995540142, + 0.04392234608530998, + -0.002302491804584861, + -9.999411122407764e-5, + 0.011364907026290894, + 0.02024545706808567, + -0.003524082014337182, + -0.0007064463570713997, + 0.006845709402114153, + 0.0431811586022377, + -0.02047879435122013, + 0.01415123138576746, + 0.02931816689670086, + -0.041616424918174744, + 0.008393285796046257, + 0.012675714679062366, + -0.022221961989998817, + 0.037306543439626694, + 0.036153580993413925, + -0.005219209939241409, + -0.010266848839819431, + -0.007967788726091385, + -0.009477619081735611, + -0.024102387949824333, + 0.010383517481386662, + 0.001520124962553382, + 0.013217881321907043, + -0.010019785724580288, + -0.0028343640733510256, + -0.0259416364133358, + -0.0008732997812330723, + 0.003139761509373784, + -0.01566106267273426, + 0.050373442471027374, + 0.011708050966262817, + -0.003616730682551861, + -0.005716768093407154, + 0.015043403953313828, + 0.007336404640227556, + -0.0005061364499852061, + 0.003367951838299632, + 0.013485533185303211, + -0.01123451255261898, + 0.01806306466460228, + 0.0010877643944695592, + -0.008564857766032219, + 0.00035386657691560686, + -0.01663558930158615, + 0.010740386322140694, + -0.007569741923362017, + 0.024074936285614967, + 0.010067825205624104, + 0.015510078519582748, + -0.016937555745244026, + 0.05586373433470726, + -0.016827749088406563, + -0.052459754049777985, + -0.0002399858640274033, + -0.013897305354475975, + 0.002251020399853587, + 0.006900612730532885, + 0.00707561569288373, + 0.03469865396618843, + -0.010177630931138992, + 0.06802473217248917, + 0.031514283269643784, + -0.02644948847591877, + -0.008530543185770512, + 0.022221961989998817, + -0.00986880250275135, + 0.02014937624335289, + -0.04024384915828705, + 0.039392855018377304, + -0.005160875618457794, + 0.0020091042388230562, + 0.024253370240330696, + -0.003216968849301338, + -0.03733399510383606, + 0.026339681819081306, + -0.018186597153544426, + -0.01964152418076992, + 0.015921851620078087, + 0.009045258164405823, + 0.010534500703215599, + 0.05105973035097122, + 0.006005008239299059, + -0.015510078519582748, + 0.0021412144415080547, + 0.009100161492824554, + -0.01691010408103466, + -0.005243230145424604, + 0.0021360672544687986, + 0.0347261056303978, + -0.02057487517595291, + 0.0007922321674413979, + -0.026792632415890694, + 0.015715964138507843, + 0.017870904877781868, + -0.0046530235558748245, + -0.02923581190407276, + -0.001400024862959981, + -0.017033634707331657, + 0.01341004204005003, + 0.01997094228863716, + 0.006005008239299059, + -0.006221188697963953, + 0.00722659844905138, + -0.014137505553662777, + -0.032777052372694016, + -0.03988698124885559, + 0.016621863469481468, + -0.00020470644813030958, + -0.013183566741645336, + -0.009649191051721573, + 0.029071103781461716, + 0.004900086671113968, + -0.024074936285614967, + -0.05001657456159592, + -0.023704342544078827, + 0.046722397208213806, + -0.02514554373919964, + 0.00015141199401114136, + 0.01104921568185091, + -1.617867201275658e-5, + 0.0061216773465275764, + 0.012099234387278557, + 0.023923953995108604, + -0.007748176343739033, + -0.02219451032578945, + 0.053530361503362656, + 0.02450043335556984, + 0.0396399199962616, + -0.017719922587275505, + -0.017912082374095917, + -0.00605648010969162, + 0.017212070524692535, + 0.0041623287834227085, + 0.038981083780527115, + 0.010733523406088352, + -0.012195314280688763, + 0.021384691819548607, + -0.01626499369740486, + -0.008235439658164978, + -0.027355385944247246, + 0.005455979146063328, + -0.006186874583363533, + 0.005517744924873114, + -0.0035086406860500574, + -0.012675714679062366, + -0.0047731236554682255, + -0.002379699144512415, + 0.00011666873615467921, + -0.02334747277200222, + -0.007466799113899469, + 0.0001160253377747722, + -0.014096328057348728, + -0.0027074008248746395, + -0.0016891231061890721, + 0.011996290646493435, + -0.033188823610544205, + -0.028192656114697456, + 0.007535427808761597, + -0.0013374011032283306, + -0.01071979757398367, + 0.03651045262813568, + -0.004625572357326746, + 0.017170893028378487, + -0.005191758740693331, + 0.007652096450328827, + 0.01769247092306614, + 0.00931291002780199, + -0.009237418882548809, + -0.001478089950978756, + -0.009113887324929237, + 0.015015952289104462, + 0.006835415493696928, + 0.0026336251758038998, + 0.012339434586465359, + -0.00035772693809121847, + -0.03242018073797226, + 0.04392234608530998, + -0.008461914956569672, + 0.011941388249397278, + 0.0007772196549922228, + -0.006550606340169907, + -0.007034438196569681, + 0.009855076670646667, + -0.028549525886774063, + 0.04156152158975601, + -0.002263030270114541, + -0.007494250312447548, + -0.021096453070640564, + -0.003189517417922616, + -0.021659206598997116, + -0.01273748092353344, + 0.0332711786031723, + -0.009772722609341145, + -0.038981083780527115, + -0.023937679827213287, + -0.007048164028674364, + 0.0042824288830161095, + -0.018323853611946106, + 0.013403179123997688, + -0.02524162456393242, + 0.01352671068161726, + 0.013959070667624474, + -0.0049309697933495045, + -0.013423766940832138, + 0.005284407176077366, + 0.010829603299498558, + 0.003290744498372078, + -0.008345246315002441, + -0.019490541890263557, + -0.017266971990466118, + -0.011110980994999409, + -0.01737677864730358, + 0.015276741236448288, + -0.028741685673594475, + 0.019010141491889954, + 0.02172783575952053, + -0.0038946769200265408, + -0.0074873873963952065, + -0.005504019092768431, + -0.005610393360257149, + 0.024980835616588593, + -0.02293570153415203, + -0.016896378248929977, + -0.0025375450495630503, + 0.0005005603306926787, + 0.006698158103972673, + 0.003880951087921858, + 0.02256510592997074, + -0.003081427188590169, + -0.005243230145424604, + 0.004906949587166309, + -0.017719922587275505, + -0.012826697900891304, + 0.011220786720514297, + -0.012483554892241955, + -0.005987851414829493, + 0.009319772943854332, + 0.01155706774443388, + 0.026655374094843864, + 0.030635837465524673, + -0.02176901325583458, + 0.01630617119371891, + -0.026092618703842163, + -0.006248640362173319, + -0.01174236461520195, + 0.015359095297753811, + -0.007652096450328827, + 0.0035206505563110113, + -0.09575071930885315, + -0.03895363211631775, + -0.007017281372100115, + -0.00468047522008419, + 0.011104118078947067, + -0.005232935771346092, + 0.006691295187920332, + 0.01732187531888485, + 0.002947601256892085, + 0.036428097635507584, + 0.003935853950679302, + -0.020767034962773323, + 0.03760850802063942, + 0.01732187531888485, + -0.0013228175230324268, + -0.004392234608530998, + 0.004333900287747383, + -0.0038843825459480286, + 0.0007519128266721964, + -0.01415123138576746, + -0.0075834677554667, + 0.01685520075261593, + 0.03294175863265991, + -0.009457030333578587, + -0.0030934372916817665, + 0.017445407807826996, + -0.02570829913020134, + 0.022304316982626915, + 0.007556016091257334, + -0.03524768352508545, + 0.006083931308239698, + -0.0011701188050210476, + -0.01566106267273426, + -0.017129715532064438, + 0.007178558502346277, + 0.022263139486312866, + -0.0049652839079499245, + -0.009855076670646667, + 0.0020005255937576294, + 0.005867750849574804, + 0.0021669501438736916, + 0.006241777446120977, + -0.008606035262346268, + 0.023663165047764778, + -0.002235578838735819, + 0.010115865617990494, + -0.005751082208007574, + -0.0184885635972023, + 0.009347224608063698, + -0.00047439566696994007, + 0.015304192900657654, + -0.01465908344835043, + -0.028467170894145966, + -0.01699245721101761, + -0.004423117730766535, + -0.0018100810702890158, + -0.004447137471288443, + -0.015427724458277225, + 0.0023779834154993296, + 0.0023453847970813513, + 0.05182836949825287, + 0.021741561591625214, + -0.011611970141530037, + -0.00840701162815094, + 0.0035721221938729286, + 0.008214851841330528, + 0.015921851620078087, + -0.007411896251142025, + 0.020176827907562256, + 0.015619884245097637, + 0.023004328832030296, + -0.0004312882956583053, + -0.026188699528574944, + 0.004248114302754402, + -0.00023247960780281574, + 0.011708050966262817, + 0.011378632858395576, + 0.005709905177354813, + 0.01292277779430151, + -0.0024260233622044325, + -0.02131606452167034, + -0.0069589470513165, + 0.0099099799990654, + 0.005980988498777151, + -0.018076790496706963, + -0.007734450977295637, + 0.008859961293637753, + -0.02006702311336994, + -0.002184107434004545, + 0.0003427143965382129, + 0.015386546961963177, + -0.005205484572798014, + 0.031569186598062515, + 0.011364907026290894, + -0.005593236535787582, + 0.017266971990466118, + 0.0050030299462378025, + -0.008949178270995617, + 0.01958662085235119, + -0.0016402251785621047, + 0.0013820098247379065, + -0.0369771271944046, + -0.006801100913435221, + -0.0271906778216362, + -0.002360826125368476, + 0.01183844543993473, + -0.0053152902983129025, + 0.012263942509889603, + -0.01308748684823513, + -0.008310931734740734, + 0.010465871542692184, + 0.032914310693740845, + -0.0334358848631382, + 0.004217231646180153, + -0.017761098220944405, + 0.020231731235980988, + 0.0016573823522776365, + 0.0018769940361380577, + -0.020821938291192055, + 0.012751206755638123, + 0.0021926858462393284, + 0.03511042520403862, + 9.500781015958637e-5, + -0.020959194749593735, + 0.00936095044016838, + 0.00320152728818357, + -0.010575677268207073, + -0.006427074782550335, + 0.014521826058626175, + 0.026325955986976624, + 0.01465908344835043, + 0.02020427957177162, + -0.017870904877781868, + 0.000566615432035178, + -0.003252998925745487, + 0.02732793614268303, + 0.03233782947063446, + -0.0046324352733790874, + 0.00783053133636713, + -0.028961297124624252, + 0.008324657566845417, + 0.008935452438890934, + 0.007672685198485851, + 0.010280574671924114, + -0.014480648562312126, + 0.011817856691777706, + -0.0076315077021718025, + 0.005068227183073759, + -0.026339681819081306, + 0.0011349465930834413, + -0.012634538114070892, + 0.017568938434123993, + 0.03596142306923866, + 0.021974898874759674, + -0.001617062953300774, + -0.05177346616983414, + -0.007010418456047773, + 0.01634734869003296, + -0.00436478340998292, + 0.006464820355176926, + -0.02422592043876648, + -0.0002659360761754215, + 0.013574750162661076, + 0.0017826296389102936, + 0.009402127005159855, + -0.012751206755638123, + -0.01640225201845169, + -0.002352247480303049, + -0.005898633971810341, + 0.00047225100570358336, + 0.0029132869094610214, + -0.00778249092400074, + -0.021343516185879707, + 0.011035489849746227, + -0.00569617934525013, + -0.005874613765627146, + -0.008935452438890934, + -0.009024669416248798, + 0.029208360239863396, + -0.00861289817839861, + -0.009793310426175594, + 0.05262446030974388, + -0.017253246158361435, + -0.0036922222934663296, + 0.0051094042137265205, + 0.0036476135719567537, + 0.003179223043844104, + 0.0032221160363405943, + 0.013746322132647038, + 0.013451218605041504, + 0.012943366542458534, + -0.0008441326208412647, + -0.0034382962621748447, + 0.003117457265034318, + -0.003829479683190584, + 0.0013048024848103523, + 0.01315611507743597, + 0.0246925950050354, + -0.013368864543735981, + -0.0032392730936408043, + -0.03645554929971695, + -0.02135724201798439, + 0.004035365767776966, + 0.021549401804804802, + -0.008345246315002441, + 0.01081587839871645, + -0.01968270167708397, + -0.0036235935986042023, + 0.02182391658425331, + -0.019188575446605682, + -0.012799246236681938, + -0.006032459903508425, + 0.020972920581698418, + -0.010877643711864948, + -0.01128255296498537, + 0.007672685198485851, + -0.006605509202927351, + -0.03681241720914841, + 0.014425746165215969, + -0.02863188087940216, + 0.029400521889328957, + -0.0068628666922450066, + 0.022496476769447327, + -0.008304068818688393, + 0.000313761702273041, + 0.0172806978225708, + 0.011735501699149609, + -0.03815753757953644, + -0.01769247092306614, + 0.009690367616713047, + -0.014508100226521492, + 0.0035412393044680357, + 0.006341288797557354, + -0.010287437587976456, + -0.017157167196273804, + -0.002951032714918256, + 0.0253788810223341, + -0.019696427509188652, + 0.01761011593043804, + -0.0026456350460648537, + -0.0006433937815017998, + -0.03329863026738167, + -0.02213960886001587, + 0.00016310031060129404, + 0.03280450403690338, + -0.0008853098261170089, + -0.01806306466460228, + -0.003994188271462917, + 0.005329016130417585, + 0.00026293357950635254, + 0.0184885635972023, + -0.012867875397205353, + -0.004519197624176741, + -0.002257883083075285, + -0.02658674493432045, + -0.019298382103443146, + 0.011653147637844086, + -0.007837394252419472, + 0.026847533881664276, + 0.00379173387773335, + -0.02477494813501835, + -0.008207988925278187, + 0.022290591150522232, + -0.032447632402181625, + -0.00024620533804409206, + -0.00965605303645134, + 0.00042871470213867724, + 0.012565908953547478, + 0.023567084223031998, + -0.008262891322374344, + 0.012106097303330898, + -0.010843329131603241, + -0.02756127342581749, + -0.020972920581698418, + 0.00873642973601818, + 0.010308025404810905, + 0.00436478340998292, + 0.0016325043980032206, + -0.00499273557215929, + 0.01722579635679722, + -0.01913367211818695, + 0.001712285215035081, + -0.020300360396504402, + 0.020080748945474625, + 0.03093780390918255, + 0.01899641565978527, + 0.00051085464656353, + 0.0029596113599836826, + 0.043565478175878525, + -0.035275135189294815, + 0.006694726645946503, + 0.005181464366614819, + 0.020451342687010765, + -0.01890033483505249, + -0.0026748022064566612, + -0.004625572357326746, + 0.018955238163471222, + -0.004783418029546738, + 0.021837642416357994, + -0.014906146563589573, + 0.021837642416357994, + -0.012339434586465359, + -0.015715964138507843, + -0.015180661343038082, + -0.0036819279193878174, + -0.00019773634267039597, + 0.014096328057348728, + -0.015427724458277225, + -0.0016196365468204021, + -0.006904043722897768, + 0.011248238384723663, + 0.001283356104977429, + -0.004570669028908014, + -0.014521826058626175, + 0.011447262018918991, + 0.01798071153461933, + 0.03321627527475357, + 0.0013434061547741294, + 0.0009899685392156243, + -0.020231731235980988, + -0.02385532483458519, + -0.0075834677554667, + 0.021947447210550308, + -0.01454927772283554, + -0.026147522032260895, + -0.008544269017875195, + -0.02487102895975113, + -0.00852368026971817, + -0.009875665418803692, + 0.012366886250674725, + 0.017541486769914627, + 0.03909089043736458, + 0.001406029798090458, + -0.021055275574326515, + 0.0007420474430546165, + 0.004961852449923754, + -0.01218158844858408, + -0.001252473215572536, + -0.022249413654208183, + 0.0013785783667117357, + 0.014329665340483189, + 0.0018220911733806133, + -0.014013973996043205, + -0.0013871568953618407, + 0.023772969841957092, + 0.01253159437328577, + 0.01566106267273426, + 0.027025969699025154, + 0.027780884876847267, + -0.0030110827647149563, + 0.013684555888175964, + 0.02084938995540142, + 0.015688512474298477, + -0.012215903028845787, + 0.0076109194196760654, + 0.04589885100722313, + -0.010266848839819431, + 0.008997218683362007, + -0.02028663456439972, + -0.030031904578208923, + -0.032914310693740845, + -0.013231607154011726, + 0.021851368248462677, + 0.019147397950291634, + -0.009004081599414349, + 0.015221838839352131, + 0.030169162899255753, + -0.002151508815586567, + -0.005335879046469927, + -0.01253159437328577, + -0.0008600029977969825, + 0.012778657488524914, + -0.0035034934990108013, + -0.019353283569216728, + 0.0005837726057507098, + 0.002961327088996768, + -0.004097131546586752, + 0.013952207751572132, + -9.977964509744197e-5, + -0.017623841762542725, + 0.002168665872886777, + 0.007130518555641174, + -0.011227649636566639, + -0.011433536186814308, + -0.016965007409453392, + -0.006444232072681189, + -0.014192407950758934, + 0.01482379250228405, + -0.009848213754594326, + 0.008413874544203281, + -0.015770867466926575, + -0.004951558541506529, + 0.002727989573031664, + 0.016649315133690834, + 0.02274353988468647, + 0.021919995546340942, + -0.029400521889328957, + -0.0067187463864684105, + -0.03867911547422409, + -0.021412143483757973, + -0.007494250312447548, + 0.009649191051721573, + -0.008811920881271362, + 0.014768889173865318, + -0.002154940040782094, + 0.006735903676599264, + 0.023745518177747726, + 0.016374800354242325, + 0.0026868123095482588, + -0.013739459216594696, + 0.005102541297674179, + 0.00025821535382419825, + -0.019792508333921432, + -0.008008965291082859, + -0.011296278797090054, + -0.024665143340826035, + 0.0022784718312323093, + 0.01691010408103466, + 0.028741685673594475, + -0.026573019102215767, + -0.01150902733206749, + 0.003429717617109418, + -0.002549554919824004, + -0.023443553596735, + -0.012929640710353851, + -0.003699085209518671, + -0.030141711235046387, + 0.027863238006830215, + 0.014068876393139362, + 0.006691295187920332, + 0.006481977645307779, + -0.012943366542458534, + 0.016841474920511246, + 0.0025873007252812386, + 0.020863115787506104, + -0.010802152566611767, + -0.008297205902636051, + -0.030553482472896576, + 0.020327812060713768, + -0.036290839314460754, + -0.0011297994060441852, + -0.01741795614361763, + 0.0034331490751355886, + -0.017335601150989532, + 0.017953259870409966, + -0.016566960141062737, + 0.020739583298563957, + 0.0004465152742341161, + 0.0030076513066887856, + 0.00861289817839861, + 0.006904043722897768, + -0.021206257864832878, + 0.01890033483505249, + -0.0003236270567867905, + -0.0013313961680978537, + 0.010321751236915588, + -0.011447262018918991, + -0.006924632471054792, + -0.007906022481620312, + 0.024857303127646446, + 0.0016179208178073168, + -0.006293248850852251, + -0.0022921974305063486, + 0.013753185048699379, + -0.022674912586808205, + 0.020863115787506104, + 0.04211055114865303, + -0.03524768352508545, + -0.015592433512210846, + -0.021686658263206482, + 0.00408683717250824, + -0.01958662085235119, + -0.01750030927360058, + 0.005603530909866095, + 0.016800297424197197, + -0.006197168491780758, + -0.012668851763010025, + -0.004134877119213343, + 0.01133059337735176, + -0.023059232160449028, + 0.025255350396037102, + -0.010891369543969631, + 0.021563127636909485, + 0.0216729324311018, + 0.01750030927360058, + -0.016292445361614227, + 0.04051836580038071, + -0.02520044706761837, + -0.016278719529509544, + 0.019092494621872902, + -0.020080748945474625, + 0.0006446805200539529, + -0.00660207774490118, + -0.004471157677471638, + 0.011474712751805782, + -0.003014514222741127, + -0.008832509629428387, + -0.014055151492357254, + 0.013821813277900219, + -0.0011821287916973233, + 0.019517993554472923, + -0.015496352687478065, + -0.05210288241505623, + 0.016608137637376785, + -0.0015192670980468392, + -0.007878570817410946, + 0.006989829707890749, + 0.017129715532064438, + 0.00715797021985054, + 0.0066466862335801125, + -0.00872956681996584, + 0.009800173342227936, + -0.01415123138576746, + 0.00507165864109993, + -0.013856127858161926, + -0.00868838932365179, + 0.025186721235513687, + -0.013032583519816399, + -0.011879622004926205, + -0.007377581670880318, + -0.02061605080962181, + -0.008976629935204983, + -0.01714344136416912, + -0.004889792762696743, + -0.002101752907037735, + -0.0038157538510859013, + 0.006907475180923939, + 0.0031071628909558058, + -0.008832509629428387, + -0.020437616854906082, + -0.004011345561593771, + -0.0020262612961232662, + 0.02329256944358349, + -0.003287313273176551, + 0.010596266016364098, + -0.007006986998021603, + 0.006327562965452671, + 0.0050373440608382225, + -0.019435638561844826, + 0.00021886111062485725, + -0.016278719529509544, + 0.004454000387340784, + -0.005308427382260561, + 0.010596266016364098, + 0.0009805320296436548, + 0.07768765091896057, + -0.011591382324695587, + -0.02038271352648735, + -0.014412020333111286, + 0.019023867323994637, + -0.006162854377180338, + 0.006118245888501406, + 0.0072471871972084045, + 0.015276741236448288, + -0.011495301499962807, + -0.0047731236554682255, + -0.025406332686543465, + 0.027822062373161316, + -0.0009976892033591866, + -0.010774700902402401, + 0.00628981739282608, + 0.02752009592950344, + 0.016621863469481468, + -0.010115865617990494, + 0.025035737082362175, + 0.021741561591625214, + 0.005397644825279713, + -0.0012653410667553544, + 0.010946272872388363, + -0.008070731535553932, + 0.009223693050444126, + 0.010150180198252201, + 0.017843453213572502, + 0.0006047901115380228, + 0.008372697047889233, + 0.0029596113599836826, + 0.011261964216828346, + -0.013862990774214268, + 0.007302090059965849, + 0.0015329928137362003, + 0.016937555745244026, + -0.0023282275069504976, + 0.00875015463680029, + -0.012936503626406193, + 0.020684679970145226, + -0.019517993554472923, + -0.026243602856993675, + 0.026202425360679626, + 0.019216027110815048, + -0.00020524261344689876, + -0.005095678381621838, + -0.01004723645746708, + -0.0011649716179817915, + -0.00812563393265009, + -0.006059911102056503, + -0.002647350775077939, + -0.014247311279177666, + 0.012456103228032589, + 0.002096605719998479, + 0.006248640362173319, + -0.006900612730532885, + 0.007906022481620312, + -0.015029678121209145, + -0.01944936439394951, + 0.01644342951476574, + -0.011124706827104092, + -0.015866948291659355, + -0.026984792202711105, + -0.023457277566194534, + 0.004158897325396538, + -0.021618030965328217, + 0.004265271592885256, + -0.023333746939897537, + 0.01621009036898613, + 0.014686535112559795, + -0.011474712751805782, + 0.016882652416825294, + -0.001931897015310824, + -0.033792756497859955, + -0.011886484920978546, + 0.013739459216594696, + 0.005737356375902891, + -0.0011375201866030693, + -0.021878819912672043, + -0.003019661409780383, + 0.0021309200674295425, + 0.0006348151946440339, + 0.00014701546751894057, + -0.017349326983094215, + 0.005044206976890564, + -0.006502566393464804, + 0.015633611008524895, + -0.02301805466413498, + 0.001976505620405078, + -0.019655250012874603, + -0.01589439995586872, + 0.017486585304141045, + -0.009676641784608364, + 0.008379559963941574, + 0.014007111079990864, + -0.007391307502985001, + -0.01009527686983347, + -0.003072848543524742, + 0.0032547146547585726, + 0.00451576616615057, + 0.0160316564142704, + 0.006969240959733725, + 0.006210894323885441, + -0.0014489227905869484, + -0.013883579522371292, + -0.021508224308490753, + 0.018694449216127396, + 0.01663558930158615, + -0.026737729087471962, + -0.01005409937351942, + -0.014110053889453411, + -0.0027828924357891083, + 0.0016162050887942314, + -0.023827873170375824, + -0.042083099484443665, + 0.020918017253279686, + 0.01607283391058445, + -0.003014514222741127, + 0.0053496044129133224, + -0.025090640410780907, + -0.01505712978541851, + 0.00730895297601819, + -0.0014858106151223183, + -0.001756036072038114, + 0.017019908875226974, + 0.005020187236368656, + -0.005483430344611406, + -0.002983631333336234, + -0.025516139343380928, + 0.010301163420081139, + 0.0030900058336555958, + 0.006015302613377571, + 6.980822217883542e-5, + 0.004141740035265684, + -0.004502040799707174, + -0.014357117004692554, + 0.008791332133114338, + 0.010369791649281979, + 0.005799122620373964, + -0.002884119749069214, + 0.01570223830640316, + -0.0015827486058697104, + -0.013423766940832138, + 0.007240324281156063, + 0.0024826419539749622, + 0.010040374472737312, + -0.017719922587275505, + 0.00038024570676498115, + 0.011220786720514297, + -0.0050030299462378025, + 0.0259416364133358, + -0.039585016667842865, + 8.396288467338309e-5, + 0.00880505796521902, + 0.009443304501473904, + -0.0018495426047593355, + 0.010362928733229637, + 0.013382590375840664, + -0.005431958939880133, + -0.0003566546074580401, + 0.007926611229777336, + -0.008050142787396908, + -0.008557994849979877, + -0.009855076670646667, + -0.011419810354709625, + 0.011735501699149609, + 0.0076315077021718025, + 0.025873007252812386, + 0.023004328832030296, + 0.00884623546153307, + -0.01461790595203638, + -0.005181464366614819, + 0.001230168854817748, + -0.028247559443116188, + 0.01991603896021843, + 0.0009342077537439764, + -0.005009892862290144, + -0.003994188271462917, + -0.024665143340826035, + 0.01540027279406786, + 0.006166285835206509, + -0.027808336541056633, + 0.01640225201845169, + -0.005703042261302471, + 0.0014437756035476923, + -0.023265117779374123, + 0.0020159671548753977, + -0.02709459699690342, + 0.0043544890359044075, + 0.0017568939365446568, + -0.02418474294245243, + 0.02143959514796734, + 0.0038672254886478186, + -0.0006656980840489268, + -0.012195314280688763, + 0.004423117730766535, + 0.008008965291082859, + 0.02492593228816986, + -0.003206674475222826, + -0.020025845617055893, + 0.004429980646818876, + -0.0033833933994174004, + 0.012270805425941944, + -0.01940818689763546, + 0.00778249092400074, + 0.002443180652335286, + -0.0014883842086419463, + -0.015029678121209145, + 0.0003798167745117098, + 0.00997860822826624, + -0.07461308687925339, + -0.027108322829008102, + 0.019792508333921432, + -0.0027262738440185785, + -0.025076914578676224, + 0.016896378248929977, + 0.024061210453510284, + 0.01648460514843464, + 0.009738408029079437, + 0.009388402104377747, + 0.009463893249630928, + 0.02139841765165329, + 0.014713985845446587, + -0.008118771016597748, + -0.0129708182066679, + -0.0003853928647004068, + 0.009292321279644966, + 0.026010265573859215, + 0.0076109194196760654, + -0.02071213163435459, + 0.037498705089092255, + 0.008468777872622013, + -0.002007388509809971, + 0.006622666493058205, + 0.015853222459554672, + 0.009916841983795166, + 0.017953259870409966, + 0.0161140114068985, + -0.0066123721189796925, + -0.02574947662651539, + -0.001339116832241416, + -0.004097131546586752, + -0.02200235053896904, + 0.0012181588681414723, + 0.014755163341760635, + 0.006691295187920332, + 0.014906146563589573, + -0.013032583519816399, + -0.018090516328811646, + -2.727721403061878e-5, + -0.013567887246608734, + -0.007755039259791374, + -0.012476691976189613, + 0.008324657566845417, + 0.01903759315609932, + 0.016319897025823593, + 0.0026130364276468754, + 0.01936700940132141, + 0.005510882008820772, + -0.019106220453977585, + -0.0108364662155509, + 0.010184493847191334, + 0.005586373619735241, + 0.010417832061648369, + 0.0026627923361957073, + 0.01292277779430151, + -0.028522074222564697, + 0.0089629041031003, + -0.006886886898428202, + 0.009559973143041134, + -0.00857172068208456, + 0.005627550650388002, + 0.02176901325583458, + -0.00016524495731573552, + -0.0013820098247379065, + -0.0008055290090851486, + 0.0009479334694333375, + -0.019325831905007362, + -0.0036647708620876074, + -0.011762953363358974, + -0.01607283391058445, + 0.0006601220229640603, + -0.0036956537514925003, + -0.015880674123764038, + 0.0024483276065438986, + -0.033188823610544205, + -0.028192656114697456, + 0.003319911891594529, + -0.019119946286082268, + -0.01268944051116705, + 0.011481575667858124, + 0.0032495674677193165, + 0.009065846912562847, + -0.0151669355109334, + 0.006859435234218836, + -0.014329665340483189, + -0.010136454366147518, + 0.013972796499729156, + 0.016292445361614227, + -0.0030333870090544224, + 0.0037025166675448418, + -0.0021944015752524137, + -0.002357394667342305, + -0.004670180846005678, + 0.012209040112793446, + 0.0002637914440128952, + 0.006694726645946503, + 0.003273587441071868, + -0.0005250092945061624, + 0.026751454919576645, + 0.013464944437146187, + 0.005888339597731829, + -0.009230555966496468, + -0.01054136361926794, + -0.00942271575331688, + -0.00997860822826624, + 0.011179610155522823, + 0.020629776641726494, + -0.003050544299185276, + -0.011131569743156433, + 0.00715797021985054, + 0.002407150575891137, + -0.009621739387512207, + 0.009107024408876896, + 0.009141338057816029, + 0.02200235053896904, + 0.021851368248462677, + 0.013211018405854702, + 0.003206674475222826, + -0.0017517467495054007, + -0.0007446210365742445, + -0.0038157538510859013, + -0.009731545113027096, + -0.0037333995569497347, + -0.004241251852363348, + 0.01303944643586874, + -0.018186597153544426, + -0.007329541724175215, + -0.004900086671113968, + -0.011172747239470482, + -0.026792632415890694, + 0.011536478996276855, + 0.004948127083480358, + -0.0026439193170517683, + 0.004804006777703762, + 0.02093174308538437, + 0.008777606301009655, + -0.019325831905007362, + -0.0017774824518710375, + 0.015194387175142765, + 0.016663040965795517, + 0.01899641565978527, + 0.01211296021938324, + -0.0009384970180690289, + -0.014796340838074684, + -0.0011100686388090253, + 0.005260387435555458, + 0.003237557364627719, + -0.006066774018108845, + 0.01782972738146782, + -0.010671758092939854, + 0.012106097303330898, + -0.02237294614315033, + -0.003362804651260376, + -0.0037231051828712225, + 0.00010406893852632493, + -0.014357117004692554, + 0.008887412026524544, + -0.02352590672671795, + 0.01331396121531725, + -0.006773649249225855, + -0.028096577152609825, + -0.011797267943620682, + -0.006502566393464804, + -0.014631631784141064, + 0.00986880250275135, + -0.004529491998255253, + -0.0032444202806800604, + -0.004855478182435036, + 0.020368987694382668, + 0.030690740793943405, + 0.01788463070988655, + -0.00448145205155015, + 0.009903117083013058, + 0.0080158282071352, + 0.012915914878249168, + 0.010479597374796867, + 0.019710153341293335, + 0.004567238036543131, + -0.027684804052114487, + -0.0058437311090528965, + 0.006989829707890749, + 0.01354729849845171, + 0.0037265366408973932, + -0.00789915956556797, + -0.007267775945365429, + -0.007658959366381168, + 0.027986770495772362, + 0.020039571449160576, + -0.01065803226083517, + -0.0031002999749034643, + -0.018886609002947807, + 0.01128255296498537, + 0.0020502815023064613, + -0.0179258082062006, + -0.020080748945474625, + -0.009614876471459866, + 0.030498579144477844, + 0.013718870468437672, + -0.01398652233183384, + 0.008969767019152641, + 0.029208360239863396, + 0.0017002752283588052, + 0.014164957217872143, + -0.0072471871972084045, + 0.0037368310149759054, + 0.026202425360679626, + 0.0013897304888814688, + 0.0017191481310874224, + 0.00334050040692091, + 0.007356992922723293, + 0.0038260482251644135, + 0.014590454287827015, + -0.019806234166026115, + 0.004145171493291855, + -0.008228577673435211, + 0.01472771167755127, + 0.006742766592651606, + -0.006193737033754587, + 0.03409472107887268, + 0.004958420991897583, + -0.016059108078479767, + -0.0002843800466507673, + 0.007233461365103722, + -0.006560900714248419, + -0.006210894323885441, + 0.009690367616713047, + -0.016374800354242325, + 0.007240324281156063, + 0.018982689827680588, + -0.019325831905007362, + -0.008091320283710957, + 0.017802275717258453, + 0.016841474920511246, + 0.0043167429976165295, + 0.020876839756965637, + -5.265105573926121e-5, + -0.00030561204766854644, + 0.0065265861339867115, + -2.4033437512116507e-5, + -0.002321364590898156, + 0.015880674123764038, + 0.0012481838930398226, + -0.005953536834567785, + -0.018474837765097618, + -0.011927662417292595, + -0.010115865617990494, + -0.005980988498777151, + 0.04252232238650322, + -0.018310127779841423, + -0.0017328738467767835, + 0.0031071628909558058, + -0.008098183199763298, + 0.014988500624895096, + 0.0017491731559857726, + 0.005479998886585236, + -0.008901137858629227, + 0.01825522631406784, + 0.005020187236368656, + 0.009800173342227936, + -0.01382867619395256, + 0.0025461234617978334, + 0.0041966428980231285, + -0.002697106683626771, + -0.002101752907037735, + 0.00953938439488411, + -0.021604305133223534, + 0.006221188697963953, + 0.0009453598759137094, + -0.010623717680573463, + -0.020835664123296738, + 0.0036510450299829245, + -0.03011425957083702, + 0.009882528334856033, + 0.011145295575261116, + 0.004025071393698454, + -0.0020005255937576294, + 0.012078645639121532, + -0.0005151439108885825, + -0.0108364662155509, + -0.003565259277820587, + 0.006945221219211817, + 0.0006416780524887145, + -0.00541823310777545, + 0.0066844322718679905, + 0.0023694047704339027, + 0.014288488775491714, + 0.037361446768045425, + -0.010911958292126656, + -0.0038123223930597305, + -0.005830005276948214, + -0.014919872395694256, + -0.005799122620373964, + 0.026874985545873642, + 0.00041670468635857105, + 0.0065986462868750095, + -0.007995239458978176, + 0.009614876471459866, + 0.002709116553887725, + 0.013959070667624474, + 0.022359220311045647, + -0.0161140114068985, + 0.006691295187920332, + 0.013718870468437672, + -0.0056138248182833195, + 0.005215778946876526, + -0.0006734188064001501, + -0.00335765746422112, + 0.03242018073797226, + -0.0005739072221331298, + -0.0020588599145412445, + -0.021370967850089073, + -0.012387474067509174, + 0.007768765091896057, + 0.02075330913066864, + -0.006667274981737137, + 0.0028738253749907017, + 0.011406084522604942, + 0.015276741236448288, + -0.0029596113599836826, + 0.008386422879993916, + 0.012476691976189613, + 0.005799122620373964, + -0.009559973143041134, + 0.0038157538510859013, + 0.021508224308490753, + 0.008592309430241585, + 0.01111784391105175, + 0.013897305354475975, + 0.0034743263386189938, + 0.000943644146900624, + 0.0166767667979002, + 0.019655250012874603, + -0.011536478996276855, + -0.011193335987627506, + -0.02209843136370182, + -0.017170893028378487, + -0.011611970141530037, + 0.0005438821972347796, + 0.004742240998893976, + -0.0014643642352893949, + 0.009676641784608364, + 0.03489081561565399, + 0.001104921568185091, + 0.01625126786530018, + -0.004673612304031849, + 0.011515890248119831, + -0.007096203975379467, + 0.0021720973309129477, + 0.015194387175142765, + -0.007151107303798199, + -0.01438456866890192, + -0.0011975702363997698, + 0.012696303427219391, + -0.03401236608624458, + 0.0026936752256006002, + 0.013512984849512577, + 0.014055151492357254, + 0.0009196241153404117, + 0.0010491607245057821, + -0.009745270945131779, + -0.009889391250908375, + -0.019106220453977585, + -0.0007772196549922228, + -0.0066844322718679905, + -0.00028673914493992925, + -0.0014566434547305107, + -0.010795289650559425, + 0.02391022816300392, + -0.003501777769997716, + 0.0037196737248450518, + 0.005325584672391415, + -0.03475355729460716, + -0.012147273868322372, + -0.00527068180963397, + 0.029565230011940002, + 0.010507049039006233, + -0.015002226456999779, + -0.004656455013900995, + -0.02278471738100052, + 0.0014609327772632241, + 0.0006862866575829685, + -0.006279523018747568, + 0.010822740383446217, + -0.006478546187281609, + -0.023361198604106903, + -0.0042343889363110065, + -0.002705685095861554, + 0.0049652839079499245, + -0.03711438179016113, + -0.006015302613377571, + -0.009683504700660706, + 0.012195314280688763, + -0.008784469217061996, + 0.005737356375902891, + 0.0017757667228579521, + 0.018214048817753792, + -0.03250253573060036, + -0.007377581670880318, + -0.018516015261411667, + -0.026367133483290672, + 0.00021564414782915264, + 0.014645357616245747, + -0.011735501699149609, + -0.007041301112622023, + -0.014782615005970001, + 0.04040855914354324, + -0.014604180119931698, + 0.02297687716782093, + -0.002830932615324855, + -0.015263015404343605, + 0.0019421912729740143, + 0.01958662085235119, + -0.001520124962553382, + 0.009669778868556023, + 0.0011460987152531743, + 0.006447663065046072, + 0.01597675308585167, + 0.005232935771346092, + -0.012593360617756844, + 0.005030481144785881, + 0.014302214607596397, + 0.0021000371780246496, + -0.013403179123997688, + 0.009958019480109215, + -0.008626623079180717, + -0.021576853469014168, + -0.008997218683362007, + 0.012291394174098969, + -0.0129708182066679, + 0.02266118675470352, + -0.006557469256222248, + -0.011213923804461956, + -0.01722579635679722, + 0.004498609341681004, + -0.005335879046469927, + 0.003953011240810156, + -0.005435390397906303, + -0.00942271575331688, + 0.010603128932416439, + 0.005922654177993536, + 0.008159948512911797, + 0.00021425011800602078, + -0.007720725145190954, + 0.001319386181421578, + -0.009944293648004532, + 0.021329790353775024, + -0.005850594025105238, + 0.025035737082362175, + 0.009161926805973053, + -0.006653549149632454, + -0.027355385944247246, + 0.013327687047421932, + 0.01806306466460228, + 0.034067269414663315, + -0.010692345909774303, + 0.011172747239470482, + 0.0023179331328719854, + 0.00710992980748415, + 0.0004906949470750988, + -0.007940337061882019, + 0.03933795168995857, + -0.023278843611478806, + -0.0074873873963952065, + -0.016333622857928276, + -0.011090392246842384, + -0.022867072373628616, + 0.001708853873424232, + 0.009690367616713047, + -0.03428688272833824, + 9.779584797797725e-5, + 0.010589403100311756, + -0.004615277983248234, + -0.0017603252781555057, + -1.617867201275658e-5, + 0.007356992922723293, + 0.001792923896573484, + -0.007569741923362017, + -0.009628602303564548, + 0.009093298576772213, + -0.015304192900657654, + -0.0022836190182715654, + -0.01523556374013424, + -0.0017234374536201358, + 0.022029802203178406, + 0.001873562578111887, + -0.022770991548895836, + 0.007494250312447548, + -0.00812563393265009, + 0.001990231452509761, + -0.02441808022558689, + -0.01964152418076992, + 0.016978731378912926, + -0.009463893249630928, + 0.011021764017641544, + -0.012140410952270031, + 0.01788463070988655, + -0.004021639935672283, + 0.007652096450328827, + -0.006282954476773739, + 0.009408989921212196, + 0.014782615005970001, + 0.021041549742221832, + 0.0021360672544687986, + -0.007494250312447548, + -0.027135774493217468, + 0.012236491777002811, + -0.010850192047655582, + -0.005126561503857374, + 0.019902313128113747, + -0.015537530183792114, + -0.0005816279444843531, + -9.784946450963616e-5, + 0.012826697900891304, + 0.0051231300458312035, + 0.003747125156223774, + 0.009045258164405823, + 0.023539632558822632, + -0.013190429657697678, + 0.014782615005970001, + 0.01686892658472061, + 0.018310127779841423, + -0.015015952289104462, + 0.00640305457636714, + -0.010287437587976456, + -0.01691010408103466, + 0.003076280001550913, + 0.0014454913325607777, + -0.005984419956803322, + 0.005956968292593956, + -0.02297687716782093, + -0.010404106229543686, + -0.007151107303798199, + 0.0069829667918384075, + 0.016059108078479767, + -0.01774737425148487, + -0.004038797225803137, + 0.012751206755638123, + 0.00017800560453906655, + 0.017802275717258453, + -0.028192656114697456, + -0.02204352803528309, + 0.02028663456439972, + -0.010706071741878986, + -0.001603337237611413, + -0.018968963995575905, + 0.006077068392187357, + 0.009916841983795166, + -0.0014935313956812024, + 0.008043279871344566, + 0.022208236157894135, + 0.015112032182514668, + -0.005040775518864393, + 0.021192532032728195, + -0.010809015482664108, + 0.01782972738146782, + 0.012998269870877266, + 0.007624644786119461, + -0.016223816201090813, + -0.011220786720514297, + 0.013217881321907043, + -0.006032459903508425, + 0.008537406101822853, + -0.009223693050444126, + -0.0064922720193862915, + -0.010417832061648369, + 0.006619235035032034, + 0.02403375878930092, + 0.0027074008248746395, + 0.006667274981737137, + 0.0014120348496362567, + 0.022853346541523933, + -0.023045506328344345, + -0.02084938995540142, + -0.012380611151456833, + -0.025406332686543465, + 0.008516817353665829, + -0.0036647708620876074, + 0.022167058661580086, + 0.0204238910228014, + -0.0055074505507946014, + 0.020135650411248207, + -0.023265117779374123, + -0.007178558502346277, + 0.006845709402114153, + 0.0049309697933495045, + 0.015537530183792114, + 0.01003351155668497, + -0.016800297424197197, + 0.0020056727807968855, + 0.00190444546751678, + 0.0028961298521608114, + -0.009065846912562847, + -0.007556016091257334, + -0.015592433512210846, + 0.029894648119807243, + -0.011255101300776005, + 0.003211821662262082, + 0.004519197624176741, + 0.0015132621629163623, + 0.007041301112622023, + -0.0072128730826079845, + -0.019119946286082268, + -0.023498455062508583, + 0.009326635859906673, + 0.0021257728803902864, + 0.012696303427219391, + -0.013108075596392155, + -0.012263942509889603, + 0.01380122546106577, + -0.006921201013028622, + -0.011708050966262817, + 0.011412947438657284, + -0.004783418029546738, + -0.020451342687010765, + -0.010410969145596027, + 0.004093700088560581, + -0.007535427808761597, + 0.0029973569326102734, + 0.006005008239299059, + -0.014576729387044907, + 0.0166767667979002, + -0.004083405714482069, + 0.01183844543993473, + 0.004141740035265684, + -0.033655498176813126, + -0.014192407950758934, + -0.01579831913113594, + 0.013121801428496838, + 0.01167373638600111, + 0.010555089451372623, + -0.03475355729460716, + 0.010225671343505383, + -0.0013768626376986504, + -0.0005164307076483965, + 0.0035172190982848406, + -0.018653271719813347, + 0.008194263093173504, + -0.013602201826870441, + -0.01065803226083517, + -0.015812044963240623, + 0.018351305276155472, + 0.0055795107036828995, + 0.015812044963240623, + -0.015606159344315529, + 0.016059108078479767, + -0.0076109194196760654, + 0.013561024330556393, + 0.014851243235170841, + -0.014604180119931698, + -0.0011907073203474283, + 0.0019524855306372046, + 0.011152158491313457, + 0.00408683717250824, + 0.0061216773465275764, + -0.01512575801461935, + -0.013286509551107883, + -0.0095874248072505, + -0.004862341098487377, + -0.018955238163471222, + -0.013005132786929607, + 0.013464944437146187, + 0.008249165490269661, + -0.0019833685364574194, + 0.015413998626172543, + 0.0030968685168772936, + -0.001063744304701686, + -0.014961049892008305, + 0.0007120224181562662, + 0.017527760937809944, + -0.00829034298658371, + 0.0028926983941346407, + 0.02574947662651539, + 0.00840701162815094, + -0.02547496184706688, + -0.016566960141062737, + 0.00880505796521902, + -0.011577656492590904, + -0.0011486723087728024, + 0.01625126786530018, + 0.001411176985129714, + -0.002812059596180916, + 0.02329256944358349, + 0.01415123138576746, + 0.004591257777065039, + 0.01394534483551979, + 0.018172871321439743, + -0.008557994849979877, + 0.007363855838775635, + -0.012394336983561516, + 0.014906146563589573, + 0.022523928433656693, + -0.015578707680106163, + -0.01903759315609932, + -0.008166811428964138, + 0.007535427808761597, + -0.0519656278192997, + 0.002374551957473159, + 0.010397243313491344, + -0.0038226167671382427, + 0.0029853470623493195, + -0.0009230555733665824, + 0.01648460514843464, + -0.013615927658975124, + 0.017857179045677185, + -0.00330103887245059, + 0.0025461234617978334, + -0.010637443512678146, + -0.000212963335798122, + -0.010959997773170471, + 0.008956041187047958, + 3.2142881536856294e-5, + -0.010472734458744526, + 0.021700384095311165, + -0.020025845617055893, + -0.0034863362088799477, + 0.002635340904816985, + -0.009944293648004532, + -0.007562879007309675, + -0.003319911891594529, + 0.019984668120741844, + 0.0026748022064566612, + 0.007096203975379467, + 0.0009822477586567402, + -0.0001293221430387348, + -0.019984668120741844, + 0.005284407176077366, + -0.017198344692587852, + 0.01128255296498537, + -0.0005099967820569873, + 0.02463769167661667, + 0.00034764708834700286, + -0.008606035262346268, + -0.004289291799068451, + 0.006131971254944801, + 0.0117217767983675, + -0.02408866211771965, + -0.025131817907094955, + -0.012373749166727066, + 0.01139235869050026, + -0.02241412363946438, + 0.02268863655626774, + 0.021069001406431198, + -0.009813899174332619, + 0.00436478340998292, + -0.0025015149731189013, + -0.01273748092353344, + -0.007425621617585421, + -0.028055399656295776, + -0.0060118711553514, + 0.011872759088873863, + -0.003198095830157399, + 0.003918697126209736, + -0.03252998739480972, + 0.014274762943387032, + -0.012607086449861526, + 0.019339557737112045, + -0.00502361822873354, + -0.005799122620373964, + -0.007816805504262447, + -0.009669778868556023, + 0.013561024330556393, + -0.006265797186642885, + 0.02112390473484993, + 0.026833808049559593, + 0.023361198604106903, + -0.014961049892008305, + 0.010905095376074314, + -0.011337456293404102, + 0.015208113007247448, + -0.004189779981970787, + 0.01677284575998783, + 0.01071979757398367, + 0.0033696675673127174, + 0.0006107951630838215, + 0.0044608633033931255, + -0.009498207829892635, + 0.010184493847191334, + 0.02205725386738777, + -0.0012764931889250875, + -0.006330994423478842, + -0.007919748313724995, + -0.00873642973601818, + -0.012401199899613857, + -0.008496228605508804, + -0.013451218605041504, + 0.024939658120274544, + 0.030443677678704262, + -0.022263139486312866, + -0.002808628138154745, + 0.017198344692587852, + 0.01144039910286665, + -0.006138834170997143, + -0.008214851841330528, + -0.0032718717120587826, + -0.0022973446175456047, + -0.00031998116173781455, + -0.005610393360257149, + -0.03483591228723526, + 0.01866699755191803, + 0.015249289572238922, + 0.011886484920978546, + -0.03519278019666672, + 0.0003871085646096617, + -0.007459936197847128, + 0.040655624121427536, + 0.023553358390927315, + 0.011749227531254292, + -0.006128539796918631, + 0.013499259017407894, + 0.0010002627968788147, + 0.00440252898260951, + -0.010946272872388363, + -0.011255101300776005, + 0.0014695113059133291, + 0.033243726938962936, + -0.00861289817839861, + -0.013814950361847878, + -0.012696303427219391, + -0.027039695531129837, + 0.020451342687010765, + 0.00479371240362525, + 0.023745518177747726, + 0.0031637814827263355, + -0.01607283391058445, + -0.003014514222741127, + -0.01403456274420023, + 0.023978855460882187, + 0.0033851091284304857, + 0.0056515708565711975, + 0.0006330994656309485, + 0.020629776641726494, + -0.010925684124231339, + 0.029208360239863396, + -0.01899641565978527, + -0.0032444202806800604, + 0.017431681975722313, + 0.012202177196741104, + 0.02020427957177162, + 0.009546247310936451, + -0.01065116934478283, + -0.008619760163128376, + 0.013931619003415108, + -0.004924106877297163, + 0.02102782391011715, + 0.006471683271229267, + 0.001792923896573484, + 0.009258007630705833, + 0.03126722201704979, + 0.02672400325536728, + -0.0025512706488370895, + 0.016965007409453392, + 0.0022784718312323093, + -0.009065846912562847, + 0.011131569743156433, + 0.010733523406088352, + -0.013272784650325775, + 0.011145295575261116, + 0.014631631784141064, + 0.015496352687478065, + 0.005864319391548634, + 0.005867750849574804, + -0.007885433733463287, + 0.01922975294291973, + -0.04043601080775261, + -0.010232534259557724, + 0.004069679882377386, + 0.02584555558860302, + 0.0020777329336851835, + 0.029345618560910225, + 0.011927662417292595, + -0.003657907946035266, + 0.0044745891354978085, + -0.001339116832241416, + -0.0008471350884065032, + -0.009855076670646667, + -0.007473662029951811, + 0.0007411895785480738, + -0.009374676272273064, + -0.01876307837665081, + -0.0002612178504932672, + -0.01946309022605419, + 0.0038054597098380327, + 0.015386546961963177, + 0.023429827764630318, + 0.00822171475738287, + -0.012243354693055153, + 0.002973336959257722, + 0.025049462914466858, + 0.008276617154479027, + 0.013492396101355553, + 0.006886886898428202, + -0.004800575319677591, + 0.00947075616568327, + -0.010081551037728786, + -0.004594689235091209, + 0.018406208604574203, + 0.006186874583363533, + -0.004272134508937597, + 0.006626097951084375, + -0.012998269870877266, + 0.0023093547206372023, + -0.005847162567079067, + 0.020670954138040543, + 0.008935452438890934, + -0.0018255225149914622, + 0.012394336983561516, + 0.006766786798834801, + 0.014919872395694256, + 0.03376530483365059, + -0.00997860822826624, + 0.005967262666672468, + 0.01195511408150196, + 0.016237542033195496, + -0.01634734869003296, + 0.016196366399526596, + -0.0033439318649470806, + -0.01714344136416912, + 0.018817979842424393, + -0.00875015463680029, + 0.005926085636019707, + 0.00612510833889246, + -0.010479597374796867, + 0.005390781909227371, + 0.010218808427453041, + 0.017157167196273804, + 0.014631631784141064, + 0.01194825116544962, + 0.008262891322374344, + -0.004189779981970787, + 0.018323853611946106, + 0.037773218005895615, + 0.007926611229777336, + 0.01343062985688448, + 0.010205082595348358, + 0.005239798687398434, + -0.0010320035507902503, + -0.0076109194196760654, + -0.01574341580271721, + -0.005641276482492685, + 0.0015664492966607213, + -0.008544269017875195, + 0.0004606699221767485, + -0.010088413953781128, + -0.016141463071107864, + -0.016553234308958054, + -0.009758996777236462, + 0.0036819279193878174, + -0.02034153789281845, + 0.03560455143451691, + 0.0007544864201918244, + -0.016457155346870422, + -0.007384444586932659, + -0.011193335987627506, + 0.008084457367658615, + 0.03395746275782585, + -0.01194825116544962, + 0.0037025166675448418, + 0.004450568929314613, + 0.022867072373628616, + 0.00482802651822567, + -0.010225671343505383, + 0.0013965934049338102, + -0.0020056727807968855, + 0.017019908875226974, + -0.015015952289104462, + 0.014055151492357254, + 0.012950229458510876, + 0.004069679882377386, + -0.03733399510383606, + -0.01593557745218277, + -0.006046185735613108, + -0.016923829913139343, + 0.004172623157501221, + 0.024994561448693275, + -0.00817367434501648, + -0.02038271352648735, + -0.0026147521566599607, + -0.012332571670413017, + 0.005857456941157579, + 0.0173630528151989, + -0.004646160639822483, + -0.021796464920043945, + 0.0005528897163458169, + -0.0025649964809417725, + 0.01798071153461933, + -0.008036416955292225, + 0.02654556930065155, + 0.012167862616479397, + -0.016786571592092514, + -0.025694573298096657, + -0.0007210299372673035, + 0.03428688272833824, + -0.002335090423002839, + -0.011062941513955593, + -0.005397644825279713, + -0.010074688121676445, + -0.005095678381621838, + -0.0023145019076764584, + 0.021206257864832878, + 0.019325831905007362, + 0.0007120224181562662, + -0.007398170419037342, + -0.025955362245440483, + -0.013286509551107883, + 0.024761222302913666, + -0.02923581190407276, + -0.014000248163938522, + 0.05509509518742561, + 0.0029716212302446365, + 0.01788463070988655, + 0.03354569151997566, + -0.002443180652335286, + -0.000556750048417598, + 0.008509954437613487, + 0.004220663104206324, + 0.020176827907562256, + -0.011213923804461956, + -0.014247311279177666, + 0.025461236014962196, + 0.012627675198018551, + 0.01691010408103466, + -0.003345647593960166, + 0.0056515708565711975, + 0.012833560816943645, + 0.03829479590058327, + 0.003949579782783985, + 0.020163102075457573, + -0.008084457367658615, + 0.010486460290849209, + -0.010671758092939854, + 0.00951879657804966, + -0.01574341580271721, + 0.008626623079180717, + -0.008139359764754772, + -0.020643502473831177, + 0.004261840134859085, + -0.005709905177354813, + -0.0018152282573282719, + -0.01150902733206749, + 0.02857697755098343, + -0.01885915733873844, + 0.003582416335120797, + -0.007926611229777336, + 0.021796464920043945, + -0.011378632858395576, + -0.013979659415781498, + -0.008379559963941574, + 0.003134614322334528, + 0.00761778187006712, + -0.012305120006203651, + -0.0035892792511731386, + 0.02071213163435459, + 0.029757389798760414, + 0.009107024408876896, + -0.00722659844905138, + -0.006094225682318211, + -0.012078645639121532, + -0.005572647787630558, + 0.0015458607813343406, + -0.008461914956569672, + 0.015455176122486591, + 0.012771794572472572, + -0.0020622913725674152, + 0.0030059355776757, + -0.024541610851883888, + 0.010280574671924114, + 0.006087362766265869, + 0.0018992983968928456, + 0.007542290724813938, + 0.004244682844728231, + -0.010925684124231339, + -0.007967788726091385, + -0.019998393952846527, + -0.007034438196569681, + 0.016663040965795517, + 0.04117720201611519, + 0.02849462255835533, + 0.017623841762542725, + -0.01540027279406786, + 0.008036416955292225, + -0.028549525886774063, + -0.006475114729255438, + 0.004323605913668871, + -0.01167373638600111, + -0.0008793047745712101, + 0.004786849487572908, + 0.002148077357560396, + -0.002084595849737525, + 0.008873687125742435, + -0.004814301151782274, + 0.01438456866890192, + 0.01579831913113594, + -0.010561952367424965, + -0.010692345909774303, + 0.011310004629194736, + -0.010287437587976456, + 0.005898633971810341, + -0.02112390473484993, + 0.005850594025105238, + 0.001216443139128387, + -0.0075971935875713825, + 0.022770991548895836, + -0.006907475180923939, + 0.001024282886646688, + 0.0020382713992148638, + 0.009628602303564548, + 0.0018632683204486966, + -0.033655498176813126, + 0.00510597275570035, + 0.009697230532765388, + -0.0023676890414208174, + 0.01747285947203636, + 0.003367951838299632, + 0.006663843523710966, + -0.015194387175142765, + -0.04145171493291855, + -0.000993399997241795, + 0.016141463071107864, + -0.013561024330556393, + 0.0005258671590127051, + 0.007459936197847128, + 0.0003705947892740369, + 0.03382020816206932, + -0.014247311279177666, + -0.008345246315002441, + 0.014494374394416809, + 0.01313552726060152, + -0.01570223830640316, + -0.009800173342227936, + 0.014288488775491714, + 0.003939285408705473, + 0.012929640710353851, + -0.021741561591625214, + -0.013183566741645336, + 0.000704301695805043, + 0.012140410952270031, + -0.0026765179354697466, + 0.007089341524988413, + 0.0037848709616810083, + -0.007954062893986702, + 0.013567887246608734, + 0.002510093618184328, + 0.007185421418398619, + 0.008159948512911797, + -0.0002805196854751557, + 0.04035365581512451, + -0.005713336635380983, + -0.014768889173865318, + -0.020176827907562256, + -0.0035206505563110113, + -0.005630982108414173, + -0.027533821761608124, + -0.024857303127646446, + -0.009772722609341145, + -0.008825646713376045, + 0.0051094042137265205, + -0.012661988846957684, + 0.011364907026290894, + -0.00527068180963397, + 0.0050750900991261005, + 0.023141587153077126, + -0.003627025056630373, + -0.01505712978541851, + 0.021096453070640564, + 0.014837518334388733, + 0.010486460290849209, + -0.0063721719197928905, + 0.0020948899909853935, + 0.012215903028845787, + 0.01364337932318449, + -0.0010277143446728587, + -0.0022561673540621996, + -0.007391307502985001, + 0.013615927658975124, + 0.02172783575952053, + 0.0023110704496502876, + -0.010520774871110916, + -0.006746198050677776, + 0.016937555745244026, + 0.0019078769255429506, + -0.01825522631406784, + -0.0035103564150631428, + -0.011042352765798569, + -0.017541486769914627, + 0.011913936585187912, + 0.008468777872622013, + 0.02691616304218769, + -0.011056078597903252, + 0.021700384095311165, + 0.010788426734507084, + 0.0068388464860618114, + -0.01313552726060152, + -0.009690367616713047, + 0.015043403953313828, + 0.011145295575261116, + -0.0020279770251363516, + 0.012380611151456833, + 0.014302214607596397, + -0.005514313466846943, + -0.009024669416248798, + 0.0027623039204627275, + 0.00026443484239280224, + -0.003637319430708885, + -0.0012619096087291837, + -0.0034554533194750547, + 0.006341288797557354, + -0.017912082374095917, + 0.0008591451332904398, + 0.012360023334622383, + 0.0005606104386970401, + -0.013011995702981949, + 0.0028240696992725134, + -0.0013940198114141822, + 0.01741795614361763, + -0.014988500624895096, + -0.019559171050786972, + 0.0419732928276062, + 0.01364337932318449, + 0.002252735896036029, + -0.014123779721558094, + 0.006869729608297348, + -0.02705342136323452, + -0.0024586219806224108, + 0.0006871445220895112, + 0.01431594043970108, + -0.006883455440402031, + -0.008853098377585411, + -0.0029407383408397436, + 0.0014660798478871584, + 0.009024669416248798, + 0.025818103924393654, + -0.013512984849512577, + -0.011660010553896427, + -0.007151107303798199, + 0.005600099451839924, + 0.012071782723069191, + 0.00010256769019179046, + 0.007144244387745857, + 0.0010182778351008892, + 0.00012052909733029082, + -0.0008252597181126475, + 0.0001144168563769199, + 0.0072952271439135075, + -0.008153085596859455, + -0.002232147380709648, + -0.006934926845133305, + 0.00628638593479991, + -0.00924428179860115, + 0.015345370396971703, + -0.0036922222934663296, + 0.021069001406431198, + 0.0021051843650639057, + 0.0009110455866903067, + -0.020767034962773323, + -0.0021497930865734816, + -0.0017277266597375274, + -0.005449116230010986, + 0.02612007036805153, + 0.008853098377585411, + -0.01167373638600111, + 0.019421912729740143, + -0.0027828924357891083, + 0.014233585447072983, + 0.001057739369571209, + 0.0054216645658016205, + 0.008901137858629227, + 0.0027211266569793224, + -0.011227649636566639, + -0.004025071393698454, + -0.011982565745711327, + 0.01566106267273426, + 0.008544269017875195, + -0.011248238384723663, + -0.021686658263206482, + 0.009038395248353481, + 0.012044331058859825, + 0.002583869267255068, + -0.024006307125091553, + -0.0001617062953300774 + ], + "a1677329-df20-406a-a4a6-05c587756fcf": [ + -0.016116341575980186, + -0.004096532706171274, + -0.01172162126749754, + 0.03566894307732582, + -0.022051699459552765, + -0.007788381539285183, + 0.024763787165284157, + -0.004799403715878725, + -0.01242449227720499, + 0.06571491062641144, + 0.02675170637667179, + 0.015676159411668777, + -0.004320173524320126, + 0.00886753760278225, + 0.0058785597793757915, + -0.009613007307052612, + -0.008874637074768543, + 0.014362713322043419, + -0.008519651368260384, + 0.011707421392202377, + 0.04095112532377243, + -0.012303796596825123, + -0.0074262963607907295, + -0.003940338734537363, + 0.015576763078570366, + -0.011579626239836216, + 0.00848415307700634, + -0.005828861612826586, + -0.06770282983779907, + 0.0043911705724895, + 0.033482231199741364, + 0.01191331259906292, + 0.022009100764989853, + 0.013752138242125511, + 0.017479484900832176, + -0.05353181064128876, + -0.00908052921295166, + 0.01206950657069683, + -0.02425260841846466, + -0.009179924614727497, + -0.0013240958796814084, + 0.037600062787532806, + -0.0009220748324878514, + 0.0061589982360601425, + -0.029761983081698418, + -0.011345336213707924, + -0.025842944160103798, + -0.01169322244822979, + -0.006027653813362122, + 0.009407115168869495, + 0.0003738440864253789, + 0.00821436382830143, + -0.0061483485624194145, + -0.02892421744763851, + 0.029818780720233917, + -0.014582803472876549, + 0.0057401154190301895, + 0.06031913310289383, + 0.0011652398388832808, + -0.07150827348232269, + -0.015576763078570366, + -0.004018435720354319, + 0.01625833474099636, + 0.015221777372062206, + 0.00818596500903368, + 0.01587495021522045, + -0.02421000972390175, + 0.03121032379567623, + -0.029932375997304916, + 0.018643837422132492, + 0.029449597001075745, + 0.018729034811258316, + -0.03155111148953438, + 0.04617651179432869, + -0.002886031987145543, + 0.0053105829283595085, + 0.024238409474492073, + 0.022534478455781937, + -0.00333863846026361, + -0.0019861438777297735, + -0.0029534792993217707, + -0.012793676927685738, + 0.0450405590236187, + 0.0018193005817010999, + 0.03143751621246338, + 0.006531733088195324, + -0.017365889623761177, + -0.043052639812231064, + 0.006396838463842869, + -0.038906410336494446, + 0.031636305153369904, + 0.05160069093108177, + -0.005974405910819769, + -0.0025984938256442547, + -0.023457441478967667, + 0.025274965912103653, + 0.010585667565464973, + -0.021384326741099358, + 0.026552913710474968, + -0.002213334431871772, + 0.017933866009116173, + 0.028043853119015694, + 0.0017625029431656003, + 0.00048189281369559467, + -0.0016320458380505443, + -0.003862242214381695, + 0.01188491377979517, + 0.018743233755230904, + -0.01185651496052742, + 0.019226014614105225, + 0.02142692357301712, + -0.042825449258089066, + 0.004210127983242273, + -0.010876755230128765, + -0.018615439534187317, + 0.004274025093764067, + -0.04396140202879906, + -0.023287048563361168, + -0.005470326170325279, + -0.03555534780025482, + 0.010358477011322975, + -0.034447792917490005, + -0.02067435532808304, + -0.007767082657665014, + -0.009740801528096199, + 0.03936079144477844, + -0.025530556216835976, + 0.027120891958475113, + 0.03393661230802536, + 0.04381940886378288, + -0.028895819559693336, + -0.0634998008608818, + 0.0007144082919694483, + -0.009400015696883202, + -0.00818596500903368, + 0.023968620225787163, + -0.006929316557943821, + 0.07451855391263962, + -0.01351074781268835, + 0.004771004896610975, + -0.035044167190790176, + -0.02050396241247654, + -0.0450405590236187, + 0.01708190143108368, + 0.011089746840298176, + 0.006670177448540926, + -0.03251666948199272, + 0.03606652468442917, + -0.041689496487379074, + 0.0014980387641116977, + -0.04248466342687607, + -0.00026934524066746235, + -0.017607280984520912, + -0.010422374121844769, + 0.03376622125506401, + 0.0019222464179620147, + -0.0027316133491694927, + 0.01321255974471569, + 0.027049893513321877, + 0.069804348051548, + 0.009776300750672817, + -0.04256986081600189, + -0.012417392805218697, + -0.0013631442561745644, + 0.04575052857398987, + 0.0019985681865364313, + 0.031465914100408554, + 0.009662704542279243, + 0.007980073802173138, + 0.00309902336448431, + -0.014142622239887714, + -0.0043130735866725445, + 0.051146309822797775, + -0.0014030801830813289, + 0.014270416460931301, + -0.032175883650779724, + 0.02196650207042694, + 0.0288816187530756, + 0.019268611446022987, + -0.0271350909024477, + -0.0050549935549497604, + -0.020574958994984627, + 0.04058194160461426, + -0.004834902472794056, + -0.04237106814980507, + 0.0013631442561745644, + 0.02279006876051426, + 0.007167156785726547, + 0.020844748243689537, + 0.02828524447977543, + -0.009279320947825909, + -0.023514239117503166, + -0.006979014724493027, + 0.0014714148128405213, + -0.007561190985143185, + -0.04333662986755371, + -0.008228563703596592, + 0.009577508084475994, + -0.018203655257821083, + 0.04373421147465706, + 0.011622224934399128, + -0.013759237714111805, + -0.0003871560620609671, + 0.038480427116155624, + -0.04274025186896324, + 0.014256217516958714, + -0.0014811769360676408, + -0.03268706426024437, + -0.002846983727067709, + -0.01001059077680111, + 0.005818211939185858, + -0.028427237644791603, + 0.02474958822131157, + 0.013901231810450554, + -0.021625716239213943, + 0.011906213127076626, + -0.03413540497422218, + 0.011679022572934628, + 0.00802267249673605, + -0.02959159016609192, + -0.00959880743175745, + -0.02098674140870571, + 0.016457127407193184, + -0.013794736005365849, + -0.05026594549417496, + -0.027262885123491287, + -0.025374362245202065, + 0.045381344854831696, + 0.0009948468068614602, + -0.01476739626377821, + 0.06571491062641144, + -0.03223268315196037, + 0.059467170387506485, + -0.03183509781956673, + -0.004689358174800873, + 0.019552601501345634, + 0.02142692357301712, + 0.0022719071712344885, + -0.020759550854563713, + -0.03774205595254898, + 0.000494761043228209, + -0.0176214799284935, + -0.02953479252755642, + -0.02338644489645958, + -0.020475562661886215, + -0.0030865988228470087, + -0.0006935528945177794, + 0.02283266745507717, + 0.008235663175582886, + 0.009939593262970448, + -0.008448654785752296, + 0.03529975563287735, + 0.011288538575172424, + 0.013965128920972347, + -0.03697528690099716, + 0.030102768912911415, + 0.05177108198404312, + -0.015349572524428368, + 0.003659900277853012, + 0.017806071788072586, + -0.004685808438807726, + -0.00751859275624156, + -0.031181925907731056, + 0.016300933435559273, + 0.0032942653633654118, + -0.06259103864431381, + 0.036464110016822815, + -0.02257707715034485, + 0.020518161356449127, + 0.04072393476963043, + 0.005221836734563112, + 0.005537773482501507, + -0.0029730035457760096, + 0.05929677560925484, + -0.016215737909078598, + -0.023485839366912842, + 0.003606652608141303, + 0.023130854591727257, + 0.015406370162963867, + 0.02354263700544834, + -0.03410700708627701, + -0.014227818697690964, + 0.013290656730532646, + 0.012956970371305943, + 0.01397932879626751, + 0.019708793610334396, + -0.046630892902612686, + -0.01221150066703558, + -0.018643837422132492, + 0.0012664106907323003, + -0.01512238197028637, + 0.018856829032301903, + 0.0071458579041063786, + 0.032119087874889374, + -0.012119204737246037, + 0.012353494763374329, + -0.03223268315196037, + 0.008313760161399841, + -0.0014927139272913337, + 0.01614473946392536, + 0.007752883248031139, + -0.007767082657665014, + -0.004873950965702534, + -0.028739625588059425, + 0.0386224202811718, + 0.0013178836088627577, + 0.03757166489958763, + 0.05083392187952995, + -0.016357731074094772, + 0.020972542464733124, + 0.008959833532571793, + -0.0415475033223629, + -0.026567114517092705, + -0.020873146131634712, + -0.012672982178628445, + 0.03941758722066879, + -0.0273622814565897, + 0.012012708932161331, + -0.02256287820637226, + -0.022065898403525352, + -0.020915744826197624, + 0.02044716477394104, + -0.08809319883584976, + 0.042711853981018066, + 0.0286544281989336, + -0.044898565858602524, + 0.029790382832288742, + -0.01804746314883232, + -0.01735169067978859, + 0.001583235221914947, + -0.011948811821639538, + -0.002254157792776823, + -0.027859261259436607, + 0.017919667065143585, + -0.031181925907731056, + -0.04205868020653725, + -0.02984718047082424, + -0.035754136741161346, + 0.009307719767093658, + -0.03214748576283455, + -0.010102886706590652, + 0.003997136373072863, + 0.028271043673157692, + -0.03694688901305199, + -0.0014101798878982663, + -0.03600972890853882, + -0.0065672313794493675, + 0.00460771145299077, + 0.006162547972053289, + -0.008015572093427181, + 0.0008683832711540163, + 0.005285733845084906, + 0.013148662634193897, + -0.019339609891176224, + 0.056258101016283035, + -0.023585235700011253, + -0.021625716239213943, + -0.030954735353589058, + 0.0144976070150733, + 0.019240213558077812, + 0.0015965471975505352, + -0.013013768009841442, + -0.002980103250592947, + -0.037770457565784454, + -0.008370557799935341, + 0.03285745531320572, + 0.0014190544607117772, + -0.0058785597793757915, + -0.017848670482635498, + -0.013858633115887642, + -0.029392799362540245, + -0.012665881775319576, + -0.016272535547614098, + -0.03833843395113945, + -0.004969796631485224, + -0.01806166209280491, + 0.06412457674741745, + 0.008910135366022587, + -0.0034930570982396603, + 0.005807562731206417, + 0.012105004861950874, + -0.011047148145735264, + -0.02240668423473835, + 0.03899160772562027, + 0.02594233863055706, + 0.0037912449333816767, + 0.00022131126024760306, + 0.020134776830673218, + -0.01860123872756958, + 0.0020908645819872618, + -0.025147171691060066, + 0.004249176476150751, + -0.014163920655846596, + 0.019297011196613312, + -0.02746167778968811, + -0.01614473946392536, + -0.008910135366022587, + 0.0006926654605194926, + 0.021838707849383354, + 0.004927198402583599, + -0.01465380098670721, + -0.025970738381147385, + 0.010947752743959427, + 0.021398525685071945, + 0.02323025092482567, + -0.010344277136027813, + 0.021185534074902534, + -0.0176214799284935, + 0.013098964467644691, + 0.013737938366830349, + -0.02382662519812584, + 0.014234918169677258, + 0.020745351910591125, + 0.04802243784070015, + 0.017380090430378914, + -0.0011466031428426504, + 3.0811632313998416e-5, + 0.07309861481189728, + 0.0008657208527438343, + 0.020432963967323303, + 0.031238723546266556, + 0.006240644957870245, + 0.009286420419812202, + 0.04969796910881996, + -0.031295519322156906, + 0.02959159016609192, + -0.008874637074768543, + 0.019978582859039307, + -0.030471954494714737, + -0.030159566551446915, + 0.022875264286994934, + 0.06605570018291473, + -0.00429887417703867, + 0.0023908272851258516, + -0.027887659147381783, + -0.013205460272729397, + -9.151969425147399e-5, + -0.016031144186854362, + 0.01288597285747528, + 0.018402447924017906, + 0.005906958598643541, + -0.005285733845084906, + -0.008420255966484547, + -0.02936439961194992, + -0.0417746938765049, + -0.02323025092482567, + -0.032545071095228195, + 0.006695026531815529, + 0.00375929637812078, + -0.0024068015627563, + 0.005349631421267986, + 0.011806817725300789, + -0.07502973079681396, + -0.03399341180920601, + -0.013290656730532646, + 0.006237095221877098, + 0.010969051159918308, + 0.002900231396779418, + 0.02621212787926197, + -0.049129992723464966, + 0.005243135616183281, + -0.0008568462217226624, + 0.009123126976191998, + -0.028697026893496513, + 0.003926139324903488, + -0.02344324253499508, + -0.01062826532870531, + -0.03507256507873535, + 0.01625833474099636, + 0.03626531735062599, + -0.025218168273568153, + -0.0051508392207324505, + -0.017422687262296677, + 0.04075233265757561, + -0.0021103888284415007, + -0.031295519322156906, + 0.006734074559062719, + -0.00011220869782846421, + -0.034021809697151184, + -0.023457441478967667, + -0.03203389048576355, + 0.009456813335418701, + 0.005722366273403168, + -0.01995018497109413, + 0.00012624172086361796, + -0.006687926594167948, + -0.04214387759566307, + -0.016244135797023773, + 0.01735169067978859, + 8.258959132945165e-5, + 0.020915744826197624, + 0.019126618281006813, + -0.013049266301095486, + 0.0018636737950146198, + -0.01071346178650856, + -0.010763159953057766, + 0.01329775620251894, + -0.053105827420949936, + 0.0008368783164769411, + -0.028895819559693336, + 0.028540832921862602, + 0.00649978406727314, + -0.014966187998652458, + -0.01789126917719841, + -0.0009273996111005545, + 0.035356555134058, + -0.01095485221594572, + 0.026084333658218384, + -0.0068796188570559025, + -0.000648735964205116, + -0.03799764811992645, + 0.015136580914258957, + -0.05421338230371475, + 0.00807947013527155, + 0.008661645464599133, + 0.03288585692644119, + -0.017323290929198265, + -0.0057507650926709175, + 0.034987371414899826, + 0.008761041797697544, + -0.016329333186149597, + 0.005910508334636688, + -0.016883110627532005, + -0.014313015155494213, + -0.01729489304125309, + 0.014376912266016006, + -0.0016888434765860438, + -0.01631513237953186, + 0.03251666948199272, + -0.051259905099868774, + -0.030926335602998734, + 0.04580732807517052, + -0.014277515932917595, + 0.011089746840298176, + 0.026467718183994293, + 0.011487330310046673, + 0.001009046216495335, + -0.013390053063631058, + 0.013737938366830349, + -0.010855455882847309, + -0.011934611946344376, + 0.031636305153369904, + -0.01746528595685959, + -0.0013249833136796951, + 0.0022949811536818743, + 0.014611202292144299, + 0.04149070382118225, + -0.0005271534319035709, + -0.03606652468442917, + 0.03078434243798256, + -0.03845202922821045, + 0.02186710573732853, + -0.00456866342574358, + -0.010528869926929474, + 0.006258394103497267, + 0.013908331282436848, + 0.016570722684264183, + 0.012985369190573692, + -0.014305914752185345, + -0.04535294696688652, + 0.011927512474358082, + 0.03405020758509636, + 0.010379775427281857, + 0.01777767390012741, + -0.01941060647368431, + -0.01215470302850008, + -0.011416333727538586, + 0.015235977247357368, + 0.0007570065790787339, + 0.02175351046025753, + 0.022278890013694763, + -0.004643210209906101, + 0.017451087012887, + 0.04367741569876671, + 0.0019080470083281398, + 0.02240668423473835, + 0.010017690248787403, + -0.002145887352526188, + -0.016996705904603004, + -0.0128646744415164, + 0.020404566079378128, + 0.0035356555599719286, + -0.012587785720825195, + 0.0032676414120942354, + 0.00746179511770606, + 0.044018201529979706, + -0.03507256507873535, + -0.003943888936191797, + -0.008171766065061092, + 0.00532833207398653, + 0.007767082657665014, + 0.023343846201896667, + -0.008058170787990093, + 0.021398525685071945, + -0.006109300069510937, + 0.03453298658132553, + 0.0011040049139410257, + 0.025814544409513474, + 0.025700949132442474, + -0.01332615502178669, + 0.01098325103521347, + 0.01860123872756958, + 0.005456126760691404, + -0.002797285560518503, + -0.01033007726073265, + -0.0006997651653364301, + 0.039020005613565445, + -0.017862869426608086, + -0.009662704542279243, + -0.0074475957080721855, + -0.02729128487408161, + -0.007688985671848059, + 0.004220777656883001, + -0.026410920545458794, + 0.008498352952301502, + 0.0013764562318101525, + -0.0031451713293790817, + 0.0067305248230695724, + 0.008406056091189384, + 0.029875578358769417, + 0.007071311119943857, + -0.02855503186583519, + 0.037060484290122986, + -0.03018796630203724, + 0.04373421147465706, + 0.03811124339699745, + -0.01289307326078415, + 0.008803640492260456, + -0.013929630629718304, + 0.016783714294433594, + 0.001302796765230596, + -0.03740127012133598, + 0.02094414457678795, + 0.00047568054287694395, + -0.012921472080051899, + 0.012459990568459034, + -0.015406370162963867, + 0.013411351479589939, + 0.00015364216233137995, + -0.03084114007651806, + 0.002117488533258438, + -0.006829920690506697, + -0.00020356199820525944, + 0.07576810568571091, + -0.00647138524800539, + 0.033794619143009186, + -0.018828431144356728, + -0.009818898513913155, + 0.027262885123491287, + 0.012964069843292236, + -0.007412096951156855, + 0.01664171926677227, + -0.00827116146683693, + 0.008043970912694931, + 0.014313015155494213, + -0.029108809307217598, + 0.001948870369233191, + 0.005228936206549406, + 0.017422687262296677, + 0.034987371414899826, + 0.014639601111412048, + -0.0136527419090271, + -0.006638228427618742, + -0.0010188083397224545, + 0.015505766496062279, + -0.0022665823344141245, + 0.049243588000535965, + -0.002506197663024068, + 0.005693967454135418, + -0.004969796631485224, + 0.02288946509361267, + 0.0007317138370126486, + -0.004675158765166998, + -0.0030280263163149357, + -0.01452600583434105, + 0.01332615502178669, + 0.008207264356315136, + 0.0047426060773432255, + 0.011416333727538586, + -0.01679791323840618, + -0.014838393777608871, + -0.03774205595254898, + -0.03779885545372963, + 0.014171021059155464, + -0.03671969845890999, + -0.005921158008277416, + -0.03612332418560982, + 0.030216364189982414, + -0.020915744826197624, + 0.0008173540700227022, + 0.0011856515193358064, + 0.008036871440708637, + -0.011707421392202377, + 0.016187338158488274, + 0.013858633115887642, + -0.015647759661078453, + 0.023855024948716164, + -0.007032262627035379, + 0.006521083414554596, + -0.011359536089003086, + -0.01946740411221981, + -0.015278575010597706, + 0.02219369262456894, + -0.048533614724874496, + 0.04254145920276642, + 0.00697546498849988, + -0.013830234296619892, + -0.018615439534187317, + -0.012105004861950874, + 0.03811124339699745, + -0.012431591749191284, + 0.017039302736520767, + -0.002610918367281556, + 0.034192200750112534, + 0.02892421744763851, + 0.024706989526748657, + -0.0036031026393175125, + 0.04265505447983742, + -0.01509398315101862, + 0.026311524212360382, + -0.009414215572178364, + 0.02534596435725689, + 0.008988232351839542, + -0.02430940605700016, + -0.004476367030292749, + -0.005725916009396315, + -0.02507617510855198, + -0.0144976070150733, + -1.888633778435178e-5, + -0.00031305282027460635, + 0.027049893513321877, + 0.002028742106631398, + 0.015179179608821869, + -0.0006829033372923732, + -0.0015051384689286351, + 0.00018104260379914194, + 0.003659900277853012, + 0.011345336213707924, + -0.014242017641663551, + -0.022804267704486847, + 0.01968039572238922, + -0.01898462325334549, + 0.02127072960138321, + -0.039843570441007614, + 0.011608025059103966, + -0.008555150590837002, + 0.029066212475299835, + -0.005491625517606735, + -0.025757746770977974, + 0.010862556286156178, + 0.04861881211400032, + -0.018643837422132492, + 0.02430940605700016, + 0.006521083414554596, + 0.004994645714759827, + 0.015889151021838188, + 0.006407488137483597, + -0.003260541707277298, + -0.0001212497300002724, + 0.024678591638803482, + -0.005633619613945484, + 0.006332940887659788, + -0.027859261259436607, + -0.006315191742032766, + -0.008441555313766003, + -0.014476308599114418, + 0.015264376066625118, + 0.010876755230128765, + 0.018303051590919495, + -0.008370557799935341, + 0.026183729991316795, + 0.034561388194561005, + 0.02828524447977543, + -0.0027848612517118454, + 0.023074056953191757, + -0.03018796630203724, + 0.004405369982123375, + -0.01702510379254818, + -0.03964477777481079, + -0.009875696152448654, + -0.0176214799284935, + -0.05850160866975784, + 0.02473538927733898, + -0.04333662986755371, + 0.004018435720354319, + -0.005122440401464701, + 0.035328157246112823, + -0.004000686574727297, + -0.005512924864888191, + 0.011679022572934628, + 0.005938907153904438, + -0.013006668537855148, + -0.0063755395822227, + -0.004380520898848772, + 0.03796924650669098, + -0.028569232672452927, + 0.02805805392563343, + 0.025871342048048973, + -0.030216364189982414, + -0.0019506452372297645, + 0.013823134824633598, + -0.027177689597010612, + 0.035271357744932175, + 0.022477680817246437, + -0.025871342048048973, + -0.004355671815574169, + -0.006847670301795006, + -0.01892782561480999, + -0.024352004751563072, + -0.004781654570251703, + 0.0016817437717691064, + 0.0046254610642790794, + -0.016229936853051186, + 0.01392253115773201, + -0.013020867481827736, + -0.0012761728139594197, + 0.009314819239079952, + -0.020262571051716805, + 0.03887801244854927, + 0.00921542290598154, + -0.0011013424955308437, + 0.0015317624201998115, + 0.026197928935289383, + 0.0016888434765860438, + 0.008292460814118385, + -0.0005346969119273126, + 0.011203342117369175, + 0.005424178205430508, + 0.01675531454384327, + 0.004384070634841919, + -0.00932901818305254, + 0.009485212154686451, + 0.0007383698248304427, + 0.007291401736438274, + -0.007838079705834389, + 0.04160429909825325, + 0.018942026421427727, + 0.01620153710246086, + -0.015335372649133205, + 0.049783166497945786, + -0.015676159411668777, + -0.05361700803041458, + 0.002845208626240492, + -0.033908214420080185, + 0.0030794991180300713, + 0.0018867478938773274, + 0.0010303453309461474, + 0.022449282929301262, + 0.0013223208952695131, + 0.06270463764667511, + 0.029875578358769417, + -0.010557268746197224, + -0.005733015481382608, + 0.03257346898317337, + -0.008966933004558086, + 0.0016870684921741486, + -0.04029795154929161, + 0.045494940131902695, + -0.011636423878371716, + 0.0013338580029085279, + 0.03305624797940254, + -0.005047893617302179, + -0.039843570441007614, + 0.03316984325647354, + -0.022165294736623764, + -0.017706675454974174, + 0.016215737909078598, + -0.0067979721352458, + 0.010479171760380268, + 0.04788044095039368, + 0.013702440075576305, + -0.020645955577492714, + 0.009804699569940567, + 0.004007786046713591, + -0.023031458258628845, + -0.007234604097902775, + 0.003471757983788848, + 0.037060484290122986, + -0.003555179573595524, + 0.0007920613861642778, + -0.03720247745513916, + 0.010259080678224564, + 0.000644742394797504, + -0.013468149118125439, + -0.02669490873813629, + 0.004671609029173851, + -0.026410920545458794, + 0.011103945784270763, + 0.011636423878371716, + 0.02137012593448162, + -0.0037060484755784273, + 0.012403192929923534, + -0.01679791323840618, + -0.027816662564873695, + -0.03964477777481079, + 0.044671375304460526, + -0.005456126760691404, + -0.01804746314883232, + -0.008377657271921635, + 0.02223629131913185, + 0.00112796644680202, + -0.028157448396086693, + -0.06622609496116638, + -0.020077979192137718, + 0.04986836016178131, + -0.024025417864322662, + 0.007532792165875435, + -0.008477053605020046, + -0.001302796765230596, + -0.0046254610642790794, + 0.005047893617302179, + 0.03342543542385101, + 0.012829175218939781, + -0.013375853188335896, + 0.06883878260850906, + 0.012623284012079239, + 0.03484537452459335, + -0.024763787165284157, + -0.017990663647651672, + -0.013823134824633598, + -0.002925080480054021, + -0.002401476725935936, + 0.03779885545372963, + 0.022719072178006172, + -0.005828861612826586, + 0.0206601545214653, + -0.026836903765797615, + -0.017564682289958, + -0.011494429782032967, + 0.002877157414332032, + 0.00013689127808902413, + 0.006258394103497267, + 0.009471013210713863, + -0.010386875830590725, + -0.004075233358889818, + -0.023244449868798256, + -0.017635678872466087, + -0.018416646867990494, + -0.011650623753666878, + -0.012353494763374329, + -0.004082333296537399, + -0.006063152104616165, + 0.007561190985143185, + -0.009407115168869495, + -0.02290366403758526, + -0.012956970371305943, + 0.0015867851907387376, + 0.01637193001806736, + -0.012133403681218624, + 0.016386130824685097, + -0.0028345591854304075, + 0.01963779702782631, + -0.008256962522864342, + -0.003473533084616065, + 0.008384757675230503, + 0.019808189943432808, + -0.0030564251355826855, + 0.0015033636009320617, + -0.022335687652230263, + 0.007745783310383558, + -0.006815721280872822, + 0.00025004291092045605, + 0.007660586852580309, + -0.00807947013527155, + -0.014192319475114346, + 0.0445861779153347, + -0.01735169067978859, + 0.011245939880609512, + 0.015505766496062279, + -0.01625833474099636, + -0.0095136109739542, + 0.024408802390098572, + -0.023485839366912842, + 0.041632696986198425, + -0.0007951675215736032, + -0.007582489866763353, + -0.025544755160808563, + -0.005502275191247463, + -0.021398525685071945, + -0.004117831587791443, + 0.015761354938149452, + -0.014050325378775597, + -0.038650818169116974, + -0.02990397810935974, + -0.002259482629597187, + 0.018317250534892082, + -0.022335687652230263, + 0.008917235769331455, + -0.02234988659620285, + 0.026893701404333115, + 0.011316937394440174, + -0.004700007848441601, + -0.005189887713640928, + -0.00033146768691949546, + 0.015590962953865528, + 0.00018204099615104496, + -0.00565491896122694, + -0.015051384456455708, + -0.010670864023268223, + -0.009918294847011566, + -0.024224210530519485, + -0.006091550923883915, + -0.01719549670815468, + 0.022435082122683525, + 0.018998824059963226, + 0.00532833207398653, + 0.008746842853724957, + 0.000413114350521937, + 0.002259482629597187, + 0.027759864926338196, + -0.01865803636610508, + -0.00875394232571125, + 0.017536282539367676, + 0.0019417706644162536, + 0.01142343319952488, + 0.0016702067805454135, + 0.016286734491586685, + 0.0054277279414236546, + 0.015860751271247864, + 0.0190840195864439, + -0.017522083595395088, + -0.016684317961335182, + 0.011203342117369175, + -0.014597003348171711, + -0.008583549410104752, + 0.01338295266032219, + 0.024664390832185745, + 0.013084765523672104, + 0.03779885545372963, + -0.011778418906033039, + 0.016130540519952774, + -0.01509398315101862, + -0.010876755230128765, + -0.015108182094991207, + 0.008945634588599205, + -0.007468894589692354, + 0.003597778035327792, + -0.10359896719455719, + -0.03879281505942345, + -0.0058785597793757915, + 0.0033031399361789227, + 0.01476739626377821, + 0.010720562189817429, + 0.010109987109899521, + 0.017422687262296677, + -2.7844174837809987e-5, + 0.025487957522273064, + 0.003635051427409053, + -0.013851533643901348, + 0.03938918933272362, + 0.02250608056783676, + 0.00854095071554184, + 0.0017003804678097367, + -0.0038764416240155697, + 0.005218286532908678, + 0.0008848013239912689, + -0.02127072960138321, + -0.010486271232366562, + 0.007042912300676107, + 0.02609853260219097, + -0.008107868954539299, + -0.020163176581263542, + 0.014291715808212757, + -0.01708190143108368, + 0.01679791323840618, + 0.004792304243892431, + -0.03351062908768654, + 0.028512435033917427, + 0.0045899623073637486, + -0.010202283039689064, + -0.005101141519844532, + 0.00538512971252203, + 0.02029097080230713, + 0.003296040231361985, + -0.011508629657328129, + 0.020645955577492714, + 0.011608025059103966, + 0.01740848831832409, + 0.0194248054176569, + -0.0067518241703510284, + 0.020361967384815216, + -0.014696399681270123, + -0.0033759120851755142, + -0.01963779702782631, + -0.01810426078736782, + 0.018885228782892227, + 0.0037273475900292397, + 0.001122641609981656, + -0.016215737909078598, + -0.025274965912103653, + -0.019211813807487488, + 0.00032392426510341465, + -0.009037930518388748, + 0.006748273968696594, + -0.01500878669321537, + 0.0032445674296468496, + -0.0016631069593131542, + 0.05074872449040413, + 0.0176214799284935, + -0.016599120572209358, + -0.0033581627067178488, + 0.002270132303237915, + 0.008640347048640251, + 0.0011501529952511191, + 0.006574331317096949, + 0.01625833474099636, + 0.011373735032975674, + 0.020418765023350716, + -0.00026357671595178545, + -0.015235977247357368, + 0.006506884004920721, + 0.013936730101704597, + 0.0017740399343892932, + 0.018132658675312996, + 0.006982564460486174, + 0.0030812739860266447, + 0.0031948694959282875, + -0.021086137741804123, + 0.000759668939281255, + 0.011778418906033039, + -0.004188828635960817, + -0.004430219065397978, + 0.0068583195097744465, + 0.0023997018579393625, + -0.009989291429519653, + -0.009918294847011566, + 0.009059229865670204, + 0.015690358355641365, + -0.00460771145299077, + 0.029705185443162918, + 0.011714520864188671, + -0.007266553118824959, + 0.01500878669321537, + 0.011892014183104038, + -0.0030102769378572702, + 0.006261943839490414, + -0.001657782238908112, + 0.004337922669947147, + -0.035867732018232346, + 0.002282556612044573, + -0.02332964539527893, + -0.00342738488689065, + 0.012225700542330742, + -0.00048278027679771185, + 0.030301561579108238, + -0.015292774885892868, + -0.005615870468318462, + 0.023130854591727257, + 0.022917862981557846, + -0.004504765849560499, + -0.004167529754340649, + -0.011984310112893581, + 0.006574331317096949, + 0.012601984664797783, + 0.0038906410336494446, + -0.0173942893743515, + 0.019282812252640724, + -0.007511492818593979, + 0.02892421744763851, + -0.00429887417703867, + -0.025147171691060066, + 0.018856829032301903, + 0.004249176476150751, + -0.00842735543847084, + -0.010422374121844769, + 0.01642872765660286, + 0.021497922018170357, + 0.002747587626799941, + 0.024068016558885574, + -0.02121393196284771, + 0.0032640916761010885, + -0.01112524513155222, + 0.01729489304125309, + 0.018132658675312996, + -0.004852651618421078, + 0.008768141269683838, + -0.020489761605858803, + 0.005658468697220087, + 0.0126942815259099, + -0.005228936206549406, + 0.015732957050204277, + -0.007117459084838629, + 0.016570722684264183, + -0.0014190544607117772, + 0.008363458327949047, + -0.014611202292144299, + -0.011657723225653172, + -0.009279320947825909, + 0.023585235700011253, + 0.03629371523857117, + 0.02463599294424057, + -0.0018122008768841624, + -0.03416380286216736, + -0.02142692357301712, + 0.015264376066625118, + -0.008519651368260384, + -0.00634714076295495, + -0.022633874788880348, + 0.0016728690825402737, + 0.016130540519952774, + -0.008058170787990093, + 0.007845179177820683, + -0.0137095395475626, + -0.017877068370580673, + -0.010557268746197224, + 0.0010631815530359745, + -0.010933552868664265, + -0.005896308925002813, + -0.010294578969478607, + -0.017919667065143585, + 0.01587495021522045, + -0.011387934908270836, + -0.007838079705834389, + -0.010763159953057766, + -0.015619361773133278, + 0.021668314933776855, + -0.011728720739483833, + -0.004671609029173851, + 0.028200047090649605, + -0.011515729129314423, + 0.00040734585491009057, + 0.007894877344369888, + 0.013943829573690891, + 0.0010134836193174124, + 0.008029771968722343, + 0.016343532130122185, + 0.031039930880069733, + 0.005243135616183281, + 0.002037616679444909, + -0.0074475957080721855, + -0.006702126003801823, + 0.005381579976528883, + -0.009520710445940495, + 0.004256275948137045, + 0.015463167801499367, + -0.004320173524320126, + -0.0020979642868041992, + -0.033851414918899536, + -0.02953479252755642, + 0.006734074559062719, + 0.018970424309372902, + -0.00889593642205, + 0.015321173705160618, + -0.0271350909024477, + -0.00038804352516308427, + 0.01968039572238922, + -0.013020867481827736, + -0.012041107751429081, + -0.02452239766716957, + 0.02381242625415325, + -0.013574644923210144, + -0.012559386901557446, + 0.008604847826063633, + -0.020305169746279716, + -0.030699145048856735, + 0.01708190143108368, + -0.017280694097280502, + 0.04112152010202408, + -0.009833098389208317, + 0.019992781803011894, + -0.01441241055727005, + -0.0037876951973885298, + 0.0004743493627756834, + 0.009875696152448654, + -0.033141445368528366, + -0.016130540519952774, + 0.010159684345126152, + -0.014966187998652458, + 0.01473899744451046, + 0.01620153710246086, + -0.008342158980667591, + -0.011118145659565926, + -0.015974346548318863, + 0.014263316988945007, + -0.0005963756120763719, + 0.01614473946392536, + -0.032715462148189545, + -0.008966933004558086, + -0.034447792917490005, + -0.03288585692644119, + -0.00568331778049469, + 0.04052514210343361, + 0.0005062980344519019, + -0.0270214956253767, + -0.0008839138899929821, + 0.002525721676647663, + 0.01740848831832409, + 0.010209382511675358, + 0.0020642406307160854, + -0.007887777872383595, + 0.009059229865670204, + -0.02012057788670063, + -0.007117459084838629, + 0.015136580914258957, + -0.004760355222970247, + 0.01898462325334549, + 0.008306660689413548, + -0.010031890124082565, + -0.00751859275624156, + 0.02638252079486847, + -0.0380544438958168, + 0.014838393777608871, + -0.0071636070497334, + -0.0096272062510252, + 0.009676904417574406, + 0.018132658675312996, + 0.0014190544607117772, + -0.002955254167318344, + -0.011671923100948334, + -0.02163991518318653, + -0.019510002806782722, + 0.012261198833584785, + -0.0012122754706069827, + -0.009293519891798496, + -0.01838824898004532, + -0.011331136338412762, + 0.022818466648459435, + -0.021199733018875122, + 0.0003487732319626957, + -0.01539217121899128, + 0.019282812252640724, + 0.02638252079486847, + 0.007767082657665014, + 0.007035812363028526, + -0.0031380716245621443, + 0.03725927695631981, + -0.02801545523107052, + 0.007511492818593979, + -0.0036776496563106775, + 0.02115713432431221, + -0.004369871225208044, + 0.007830980233848095, + -0.00013001343177165836, + 0.02067435532808304, + -0.003349288133904338, + 0.03697528690099716, + -0.019382208585739136, + 0.02181030809879303, + -0.02110033668577671, + -0.0071387579664587975, + -0.008519651368260384, + 0.011955911293625832, + -0.00021887074399273843, + 0.022051699459552765, + -0.007632188033312559, + -0.00031438402947969735, + 0.0058927591890096664, + 0.004873950965702534, + 0.009144426323473454, + 0.0024245509412139654, + -0.018303051590919495, + 0.00619804672896862, + 0.01652812398970127, + 0.02000698260962963, + 0.003745096968486905, + -0.0006749161402694881, + -0.0192544125020504, + -0.013560445979237556, + -0.00496269715949893, + 0.02740488015115261, + -0.014809994958341122, + -0.014504707418382168, + -0.015576763078570366, + -0.04265505447983742, + -0.012800776399672031, + -0.004558013752102852, + 0.0027298384811729193, + 0.000959348282776773, + 0.026879500597715378, + -0.008171766065061092, + -0.025147171691060066, + 0.0018760983366519213, + 0.00924382172524929, + -0.003709598444402218, + -0.0012344620190560818, + -0.03441939130425453, + 0.007081960327923298, + 0.0194248054176569, + 0.011331136338412762, + -0.012346395291388035, + -0.0063116420060396194, + 0.01652812398970127, + -0.005619420204311609, + 0.008640347048640251, + 0.035697340965270996, + 0.021526319906115532, + -0.0011403908720239997, + 0.016556523740291595, + 0.01476739626377821, + 0.01821785606443882, + -0.00142792914994061, + 0.016769515350461006, + 0.044245392084121704, + -0.011735820211470127, + 0.007845179177820683, + -0.022037498652935028, + -0.03762846067547798, + -0.04330822825431824, + -0.013091864995658398, + 0.012701380997896194, + -0.007046462036669254, + -0.016783714294433594, + 0.017749274149537086, + 0.034674983471632004, + -0.013425551354885101, + 0.009527810849249363, + -0.025431159883737564, + -0.004075233358889818, + 0.011899113655090332, + -0.008782341144979, + -0.009428414516150951, + -0.005946007091552019, + -0.00030550939845852554, + -0.025984937325119972, + 0.017806071788072586, + -0.004178179427981377, + -0.019836589694023132, + 0.0011048923479393125, + -0.0029623538721352816, + -0.014064525254070759, + -0.00998219195753336, + -0.022761669009923935, + -0.005523574072867632, + -0.00598505511879921, + 0.008356358855962753, + 0.0037060484755784273, + 0.012935671024024487, + -0.007731583900749683, + 0.004100082442164421, + -0.0029712284449487925, + 0.013879932463169098, + 0.001441241125576198, + 0.01318416092544794, + -0.018175257369875908, + -0.01506558433175087, + -0.025913940742611885, + -0.0096272062510252, + 0.007096159737557173, + 0.00565491896122694, + -0.008043970912694931, + 0.012850474566221237, + -0.0017057053046301007, + 0.007681885734200478, + 0.0049023497849702835, + 0.023514239117503166, + 0.004575762897729874, + -0.01985078863799572, + -0.005839511286467314, + -0.0012397868558764458, + -0.01691150851547718, + -0.005938907153904438, + -0.01101164985448122, + -0.010017690248787403, + 0.007972974330186844, + 0.02027677185833454, + 0.023159252479672432, + -0.023045657202601433, + -0.010053189471364021, + 0.005200537387281656, + 0.0022222092375159264, + -0.032005492597818375, + -0.0054383776150643826, + -0.005324782337993383, + -0.02545955963432789, + 0.0193680077791214, + 0.0173942893743515, + 0.0023659782018512487, + -0.0005138415144756436, + -0.02447979897260666, + 0.015519965440034866, + 0.0032197183463722467, + 0.02442300133407116, + -0.022222092375159264, + 0.001977269072085619, + -0.013787636533379555, + 0.01297116931527853, + -0.03353903070092201, + -0.023301247507333755, + -0.021952303126454353, + -0.0036918490659445524, + -0.007483093999326229, + 0.01871483586728573, + -0.01188491377979517, + 0.01941060647368431, + -0.0002157646231353283, + 0.02163991518318653, + 0.01637193001806736, + -0.0030812739860266447, + -0.02127072960138321, + 0.009676904417574406, + -0.013177061453461647, + -0.00691866734996438, + 0.016670119017362595, + -0.019935984164476395, + -0.014242017641663551, + -0.014455009251832962, + 0.031352318823337555, + 0.010734761133790016, + -0.0006993213901296258, + 0.0003370143531356007, + 0.011032949201762676, + -0.013517847284674644, + 0.016329333186149597, + 0.045267749577760696, + -0.030102768912911415, + -0.028626030310988426, + -0.008931434713304043, + -0.014277515932917595, + -0.014447909779846668, + -0.01446920819580555, + -0.0057294657453894615, + 0.019609399139881134, + -0.0021671864669770002, + -0.015605161897838116, + 0.004817152861505747, + 0.007916176691651344, + -0.021682513877749443, + 0.02463599294424057, + -0.016016945242881775, + 0.014611202292144299, + 0.026993095874786377, + 0.018672237172722816, + -0.014533106237649918, + 0.042172275483608246, + -0.006687926594167948, + -0.009414215572178364, + 0.01133823674172163, + -0.020191574469208717, + -0.0017669402295723557, + -0.018232055008411407, + -0.0003782814019359648, + 0.010038989596068859, + -0.022960461676120758, + -0.008008472621440887, + -0.007089060265570879, + 0.022108497098088264, + 0.004423119127750397, + 0.010060288943350315, + -0.024834785610437393, + -0.042882248759269714, + 0.01969459466636181, + -0.0024795737117528915, + -0.009967992082238197, + 0.0031149976421147585, + 0.017550483345985413, + 0.0007121896487660706, + 0.003033350920304656, + -0.007152957376092672, + -0.0050443438813090324, + -0.012594885192811489, + -0.0001688399788690731, + -0.0023801776114851236, + -0.009804699569940567, + 0.024777987971901894, + -0.005218286532908678, + -0.013766337186098099, + -0.013439750298857689, + -0.01821785606443882, + -0.00017849114374257624, + -0.014242017641663551, + 0.003122097346931696, + -0.007099709939211607, + -0.011551227420568466, + -0.006609829608350992, + 0.002403251826763153, + -0.0075682904571294785, + -0.019069820642471313, + -0.005292833782732487, + -0.008640347048640251, + 0.013915430754423141, + -0.016016945242881775, + 0.013617243617773056, + -0.012715579941868782, + 0.0020642406307160854, + 0.012587785720825195, + -0.01946740411221981, + 0.0007951675215736032, + -0.016499726101756096, + -0.0009300619713030756, + -0.006091550923883915, + 0.0018902977462857962, + 0.006652427837252617, + 0.0642949715256691, + -0.014447909779846668, + -0.02186710573732853, + -0.006776672787964344, + 0.012254099361598492, + -0.00015097975847311318, + -0.002023417269811034, + 0.011551227420568466, + 0.009946693666279316, + -0.017323290929198265, + -0.011806817725300789, + -0.024281008169054985, + 0.020219974219799042, + -0.010812858119606972, + -0.0029392798896878958, + 0.009634305723011494, + 0.02061755768954754, + 0.019226014614105225, + -0.008356358855962753, + 0.029989173635840416, + 0.017578881233930588, + 0.004668059293180704, + 0.012786577455699444, + 0.008285361342132092, + -0.008122067898511887, + -0.004071683622896671, + 0.015051384456455708, + 0.013794736005365849, + -0.008803640492260456, + 0.0006984339561313391, + 0.0075895898044109344, + 0.0206601545214653, + -0.023074056953191757, + 0.005338981747627258, + -0.005821762140840292, + 0.009556209668517113, + -0.005686867516487837, + 0.013461049646139145, + -0.014178120531141758, + 0.022932061925530434, + -0.011963010765612125, + -0.03623691946268082, + 0.02953479252755642, + 0.0206601545214653, + -0.0053105829283595085, + -0.0046148113906383514, + -0.005079842172563076, + -0.0030209266114979982, + 0.002200910123065114, + -0.000783186755143106, + -0.003950988408178091, + -0.012403192929923534, + 0.010031890124082565, + -0.004128481261432171, + 0.007468894589692354, + -0.0017145798774436116, + 0.010734761133790016, + 0.0003840499266516417, + -0.015917548909783363, + 0.007901976816356182, + -0.000888794893398881, + 0.0025913941208273172, + -0.031068330630660057, + -0.042285870760679245, + 0.01380893588066101, + -0.017436888068914413, + -0.005757864564657211, + -0.0257293488830328, + 0.0049981954507529736, + 0.00694706616923213, + -0.0020251921378076077, + 0.02279006876051426, + 0.0009114252170547843, + -0.031948693096637726, + -0.009506511501967907, + 0.009314819239079952, + 0.0008386532426811755, + -0.002234633546322584, + -0.01881423033773899, + -0.009236722253262997, + -0.002239958383142948, + 0.0006957715377211571, + -0.0013382952893152833, + -0.009144426323473454, + 0.0012131629046052694, + -0.008178865537047386, + 0.007774182129651308, + -0.021114537492394447, + -0.007745783310383558, + -0.014966187998652458, + -0.013404252007603645, + 0.02294626273214817, + -0.010237781330943108, + 0.0036031026393175125, + 0.024664390832185745, + 0.0007893989677540958, + -0.011288538575172424, + -0.018260452896356583, + 0.0018423746805638075, + -0.00664887810125947, + 0.0023464541882276535, + -0.0014510031323879957, + 0.005367380566895008, + 0.004029085393995047, + -0.020958343520760536, + -0.016627520322799683, + 0.019992781803011894, + 0.026197928935289383, + -0.009719503112137318, + 0.006098650861531496, + -0.013290656730532646, + -0.024706989526748657, + -0.0027209636755287647, + -0.023571036756038666, + -0.038253236562013626, + 0.01185651496052742, + 0.005931807681918144, + 0.003052875166758895, + 0.0037770455237478018, + -0.025516357272863388, + -0.009321918711066246, + -0.0034096355084329844, + 0.006091550923883915, + 0.002816809806972742, + 0.003993586637079716, + 0.000391593377571553, + -0.010571467690169811, + -0.015377971343696117, + -0.023244449868798256, + 0.010202283039689064, + 0.007646387442946434, + 0.008974033407866955, + 0.0015051384689286351, + 0.0034646582789719105, + -0.004788754042237997, + -0.011295638047158718, + -0.0051508392207324505, + 0.011217541061341763, + 0.00827116146683693, + -0.009861497208476067, + 0.01614473946392536, + 0.002531046513468027, + -0.013446850702166557, + -0.010152584873139858, + 0.006957715377211571, + -0.0014146171743050218, + -0.012438691221177578, + 0.0014297040179371834, + 0.012729779817163944, + 0.0023642033338546753, + 0.018672237172722816, + -0.0383952297270298, + 0.0033262139186263084, + 0.006936416495591402, + 0.003047550329938531, + 0.0025967189576476812, + 0.0037521966733038425, + 0.009634305723011494, + 0.0017456411151215434, + 0.004018435720354319, + 0.018828431144356728, + -0.0064500863663852215, + -0.012949870899319649, + -0.0007197330705821514, + -0.017522083595395088, + 0.011118145659565926, + 0.009733702056109905, + 0.023343846201896667, + 0.018899427726864815, + 0.014582803472876549, + -0.014043225906789303, + 0.007838079705834389, + 0.0013090090360492468, + -0.020816348493099213, + 0.010457872413098812, + 0.008462853729724884, + -0.0021529870573431253, + -0.013290656730532646, + -0.021341728046536446, + 0.014114223420619965, + 0.007216854952275753, + -0.016357731074094772, + 0.007859379053115845, + -0.005370930302888155, + -0.00026402046205475926, + -0.028086451813578606, + 0.0032072938047349453, + -0.028143249452114105, + -0.002456499496474862, + 0.0056123207323253155, + -0.022065898403525352, + 0.021512120962142944, + -0.005796913057565689, + -0.005644269287586212, + -0.01338295266032219, + 0.0035693789832293987, + 0.011643524281680584, + 0.008107868954539299, + -0.003872891655191779, + -0.008952734060585499, + 0.006528183352202177, + -0.005267984699457884, + 0.008782341144979, + -0.013617243617773056, + 0.008441555313766003, + -0.0026570663321763277, + 0.007010963279753923, + -0.004838452208787203, + -0.0006766910664737225, + 0.012417392805218697, + -0.06236385181546211, + -0.030386757105588913, + 0.019609399139881134, + 0.0010267954785376787, + -0.02947799488902092, + 0.02636832185089588, + 0.015945948660373688, + 0.0193112101405859, + 0.013915430754423141, + 0.017053503543138504, + 0.00746179511770606, + 0.0065672313794493675, + 0.016400329768657684, + -0.017692476511001587, + -0.012232800014317036, + -0.0005471213953569531, + 0.0007423633942380548, + 0.025658350437879562, + 0.011600925587117672, + -0.014050325378775597, + 0.03061394765973091, + 0.005725916009396315, + 0.0032818408217281103, + 0.0077386838383972645, + 0.015917548909783363, + 0.017223896458745003, + 0.011764219030737877, + 0.003526780754327774, + -0.007483093999326229, + -0.018501844257116318, + -0.006162547972053289, + 0.0006367551977746189, + -0.026354122906923294, + 0.010898054577410221, + 0.012090805917978287, + -0.00021332409232854843, + 0.02283266745507717, + -0.0041959285736083984, + -0.0287112258374691, + -2.845430572051555e-5, + -0.003526780754327774, + -0.011139445006847382, + -0.012303796596825123, + 0.009918294847011566, + 0.017209695652127266, + 0.025317564606666565, + 0.009314819239079952, + 0.022392485290765762, + 0.00556262256577611, + -0.013958029448986053, + -0.011920413002371788, + 0.01071346178650856, + 0.0037770455237478018, + 0.009201223962008953, + 0.0004663621948566288, + 0.01723809540271759, + -0.03365262597799301, + 0.0032623165752738714, + -0.00927222054451704, + 0.014533106237649918, + -0.009343218058347702, + -0.004685808438807726, + 0.012325095944106579, + 0.0071707069873809814, + -0.005179238505661488, + 0.007944575510919094, + 0.007674786262214184, + -0.013723739422857761, + 0.0013578195357695222, + -0.016655918210744858, + -0.017933866009116173, + 0.004526065196841955, + 0.0011679022572934628, + -0.02484898455440998, + -0.006670177448540926, + -0.02528916671872139, + -0.03430579602718353, + 0.0043911705724895, + -0.03183509781956673, + -0.002930405316874385, + 0.01468219980597496, + 0.003734447294846177, + 0.004227877128869295, + -0.009179924614727497, + 0.011551227420568466, + -0.014937789179384708, + -0.007923276163637638, + 0.009776300750672817, + 0.0062974425964057446, + 0.011728720739483833, + -0.007117459084838629, + -0.006400388199836016, + 0.0018148632952943444, + -0.009087628684937954, + 0.005349631421267986, + 0.008938534185290337, + -0.0011599151184782386, + 0.0051721385680139065, + -0.0015867851907387376, + 0.028356241062283516, + 0.0031558210030198097, + 0.025090374052524567, + -0.007199105806648731, + -0.006645328365266323, + 0.0029375050216913223, + -0.004802953451871872, + -0.002421000972390175, + 0.020134776830673218, + -0.006812171544879675, + -0.009733702056109905, + 0.0028984565287828445, + -0.01194171141833067, + 0.0026410920545458794, + 0.026126932352781296, + 0.008342158980667591, + 0.020802149549126625, + 0.01386573351919651, + 0.012168902903795242, + 0.01708190143108368, + 0.008945634588599205, + -0.0012601985363289714, + -0.004490566439926624, + -0.013248058035969734, + -0.009854396805167198, + 7.38813541829586e-5, + 0.013120263814926147, + -0.0014731897972524166, + -0.000870601914357394, + -0.0013551571173593402, + -0.0071707069873809814, + -0.03813964128494263, + 0.0010693938238546252, + -0.004490566439926624, + -0.006127049680799246, + 0.0007889552507549524, + 0.01503718551248312, + 0.01191331259906292, + -0.004444418475031853, + 0.013191260397434235, + 0.011047148145735264, + 0.015264376066625118, + 0.01962359808385372, + 0.0024405252188444138, + 0.0036031026393175125, + -0.014220718294382095, + -0.0059034088626503944, + 0.01498038787394762, + 0.0034469091333448887, + -0.005431278143078089, + 0.027646269649267197, + -0.02284686639904976, + 0.011600925587117672, + -0.021015141159296036, + -0.0029481544625014067, + -0.009343218058347702, + 0.0037699458189308643, + -0.016783714294433594, + 0.009534910321235657, + -0.026879500597715378, + 0.013993527740240097, + 0.005026594735682011, + -0.03280065953731537, + -0.00571171659976244, + -0.012786577455699444, + -0.006123499479144812, + 0.00812916737049818, + 0.0036634502466768026, + -0.001991468481719494, + -0.001724342000670731, + 0.013830234296619892, + 0.024266807362437248, + 0.031181925907731056, + -0.0049023497849702835, + 0.0013107839040458202, + 0.017806071788072586, + 0.01473899744451046, + 0.008966933004558086, + 0.014994586817920208, + 0.006900917738676071, + -0.02626892551779747, + -0.004305974114686251, + 0.0025612202007323503, + 0.014284616336226463, + -0.009421315044164658, + 0.001713692443445325, + -0.01996438391506672, + -0.01242449227720499, + 0.027660468593239784, + 0.024408802390098572, + -0.015022985637187958, + 0.0011705646757036448, + -0.015732957050204277, + 0.0016347081400454044, + 0.017053503543138504, + -0.009584608487784863, + -0.031891897320747375, + -0.0031700204126536846, + 0.016599120572209358, + 0.019978582859039307, + -0.004838452208787203, + 0.015264376066625118, + 0.02148372121155262, + -0.006503334268927574, + 0.004309523850679398, + -0.003072399413213134, + 0.003808994311839342, + 0.027759864926338196, + 0.006872518919408321, + 0.012218600139021873, + 0.005917608272284269, + 0.0012735103955492377, + 0.007944575510919094, + 0.02006378024816513, + -0.013375853188335896, + 0.008093669079244137, + 0.005260884761810303, + 0.028640229254961014, + 0.0031256473157554865, + -0.01821785606443882, + 0.0388496108353138, + 0.012346395291388035, + -0.012530988082289696, + 0.007074860855937004, + 0.012197301723062992, + -0.0024387503508478403, + -0.003901290474459529, + 0.016954107210040092, + -0.01729489304125309, + 0.00989699549973011, + 0.0013480574125424027, + -0.01471059862524271, + -0.009726602584123611, + 0.010422374121844769, + 0.017039302736520767, + 0.010230681858956814, + 0.023130854591727257, + -0.002461824333295226, + 0.01468219980597496, + 0.0013764562318101525, + -0.009556209668517113, + 0.004490566439926624, + 0.025644151493906975, + 0.008803640492260456, + -0.002825684379786253, + -0.01772087626159191, + -0.001106667215935886, + -0.006453636102378368, + 0.0010685062734410167, + 0.029506394639611244, + -0.028043853119015694, + 0.006080901250243187, + -0.001435916288755834, + 0.006269043777137995, + 0.021668314933776855, + 0.004504765849560499, + 0.006088001187890768, + -0.005346081685274839, + 0.010102886706590652, + 0.00647138524800539, + 0.011863615363836288, + -0.0175078846514225, + 0.010386875830590725, + 0.008228563703596592, + -0.005370930302888155, + 0.0013107839040458202, + 0.02023417316377163, + -0.028086451813578606, + 0.008264061994850636, + -0.006932866759598255, + -0.012034008279442787, + -0.018203655257821083, + -0.005551972892135382, + -0.022917862981557846, + 0.005307033192366362, + 0.005789813119918108, + 0.00040823331801220775, + -0.004444418475031853, + 0.01735169067978859, + -0.004387620836496353, + 0.001549511682242155, + -0.0008284474024549127, + 0.003837393131107092, + -0.007117459084838629, + -0.00886753760278225, + 0.007752883248031139, + 0.0054490272887051105, + 0.013084765523672104, + 0.044302187860012054, + -0.014781596139073372, + -0.012573585845530033, + -0.009045029990375042, + -0.015477367676794529, + 0.0031788949854671955, + 0.019779792055487633, + -0.0008657208527438343, + 0.014639601111412048, + -0.012587785720825195, + 0.0015539489686489105, + 0.0044408682733774185, + 0.004199478309601545, + 0.02002118155360222, + -0.006119949743151665, + 0.0004796741413883865, + 0.018246253952383995, + -0.006187397055327892, + 0.005278634373098612, + -0.001798889017663896, + 0.0030067272018641233, + 0.028725426644086838, + 0.0023127305321395397, + 0.0026410920545458794, + -0.011288538575172424, + -0.005129540339112282, + -0.0016560072544962168, + 0.017820270732045174, + 8.031546894926578e-5, + 0.005331881809979677, + 0.0074475957080721855, + 0.00456866342574358, + 0.007767082657665014, + -0.004444418475031853, + 0.014582803472876549, + 0.010351376608014107, + -0.013311956077814102, + -0.010464971885085106, + 0.014866792596876621, + 0.0033599375747144222, + -0.0003651913139037788, + 0.006641778629273176, + -0.011700321920216084, + -0.004550913814455271, + 0.013638542033731937, + 0.029165606945753098, + -0.012573585845530033, + -0.01909821853041649, + -0.007184906397014856, + -0.008711343631148338, + -0.013368753716349602, + 0.005885659251362085, + 0.0027103142347186804, + -0.006964815314859152, + 0.0050194947980344296, + 0.03629371523857117, + 0.0002637986035551876, + 0.01794806681573391, + -0.0012823850847780704, + 0.005179238505661488, + -0.006109300069510937, + 0.0054383776150643826, + 0.0064287870191037655, + -0.008952734060585499, + -0.019169216975569725, + 0.005246685352176428, + 0.009591707959771156, + -0.030216364189982414, + 0.006510433740913868, + 0.014809994958341122, + 0.020589157938957214, + 0.0012380118714645505, + 0.008363458327949047, + 0.0038160940166562796, + -0.004327272996306419, + -0.026283126324415207, + -0.0017376539763063192, + -0.0064607360400259495, + -0.0061802975833415985, + 0.0061589982360601425, + -0.016826312988996506, + 0.02425260841846466, + 9.359969226352405e-6, + 0.0007286077016033232, + -0.0038941907696425915, + -0.03615172207355499, + -0.012637482956051826, + -0.016939908266067505, + 0.028043853119015694, + 0.0014190544607117772, + -0.013532047159969807, + -6.827923789387569e-5, + -0.013524946756660938, + 0.0026996645610779524, + -0.0003545417566783726, + -0.0018583490746095777, + 0.010024790652096272, + 0.0050230445340275764, + -0.017848670482635498, + -0.008107868954539299, + 0.011167843826115131, + 0.007167156785726547, + -0.03359582647681236, + -0.004959147423505783, + -0.005253785289824009, + 0.008001373149454594, + 0.0026162429712712765, + 0.01172162126749754, + 0.0002706764207687229, + 0.019921785220503807, + -0.019055621698498726, + -0.007241704035550356, + -0.017976464703679085, + -0.02740488015115261, + 0.01218310184776783, + 0.023301247507333755, + -0.019297011196613312, + -0.0018689986318349838, + -0.005725916009396315, + 0.03294265270233154, + -0.014220718294382095, + 0.034987371414899826, + 0.0009074316476471722, + -0.013716639019548893, + -0.0013737938133999705, + 0.005800462793558836, + -0.00032547733280807734, + 7.587814616272226e-5, + -0.0056016710586845875, + -0.001106667215935886, + 0.020589157938957214, + 0.010756060481071472, + -0.010834157466888428, + -0.0030546500347554684, + 0.01811845973134041, + 0.00406458368524909, + -0.02283266745507717, + 0.0011900888057425618, + -0.008611948229372501, + -0.01625833474099636, + -0.0008022672263905406, + 0.009321918711066246, + -0.012729779817163944, + 0.022988859564065933, + -0.005285733845084906, + -0.008043970912694931, + -0.009882795624434948, + 0.010173884220421314, + -0.01221150066703558, + 0.002568319905549288, + -0.004930748604238033, + -0.008477053605020046, + 0.03223268315196037, + -0.002472474006935954, + -0.0023162802681326866, + 0.00024139013839885592, + 0.010450772941112518, + -0.008796540088951588, + -0.022151093930006027, + 0.008150466717779636, + -0.01482419390231371, + 0.02142692357301712, + 0.011679022572934628, + -0.005484525579959154, + -0.019992781803011894, + 0.007376598659902811, + 0.011359536089003086, + 0.028569232672452927, + -0.008817839436233044, + 0.0193112101405859, + 0.0009300619713030756, + 0.01291437167674303, + 0.006584980990737677, + -0.004852651618421078, + 0.023670433089137077, + -0.022094296291470528, + 0.00032703037140890956, + -0.012616184540092945, + -0.007603789214044809, + -0.020645955577492714, + -0.001708367606624961, + 0.0007490193820558488, + -0.03731607273221016, + 0.0025629953015595675, + 0.005800462793558836, + -0.009449713863432407, + 0.004781654570251703, + -1.5988212908268906e-5, + -0.00031460588797926903, + 0.00604895269498229, + -0.0018956224666908383, + -0.01386573351919651, + 0.016059543937444687, + -0.009265121072530746, + 0.003423835150897503, + -0.018317250534892082, + 0.007483093999326229, + 0.02034776844084263, + 0.0003567604289855808, + -0.019992781803011894, + 0.002752912463620305, + -0.010961951687932014, + 0.00913732685148716, + -0.03001757338643074, + -0.018629638478159904, + 0.02256287820637226, + -0.006382639054208994, + 0.011345336213707924, + -0.011764219030737877, + 0.018771633505821228, + -0.01625833474099636, + 0.0035782537888735533, + -0.012190201319754124, + 0.016414528712630272, + 0.025842944160103798, + 0.023585235700011253, + 0.0007232829229906201, + -0.015235977247357368, + -0.025970738381147385, + 0.0175078846514225, + -0.009229622781276703, + -0.0006305429851636291, + 0.013262257911264896, + -0.006837020628154278, + 0.0012557611335068941, + 0.005793363321572542, + 0.0058572604320943356, + 0.007944575510919094, + 0.005211187060922384, + 0.01462540216743946, + 0.031352318823337555, + -0.005754314828664064, + 0.009662704542279243, + 0.009101827628910542, + 0.016897309571504593, + -0.020873146131634712, + 0.0014483408303931355, + -0.009343218058347702, + -0.025487957522273064, + 0.009258021600544453, + -0.002841658890247345, + -0.0021192634012550116, + -0.003911939915269613, + -0.03356742858886719, + -0.003695399034768343, + -0.013574644923210144, + 0.005214736796915531, + 0.019921785220503807, + -0.02734808251261711, + 0.0029730035457760096, + -0.0009708853322081268, + 0.011217541061341763, + 0.020404566079378128, + -0.012630383484065533, + -0.02225049026310444, + 0.01245289109647274, + -0.0007641062838956714, + -0.0024884482845664024, + -0.0144976070150733, + 0.011054248549044132, + 0.010677963495254517, + 0.0015353122726082802, + 0.012729779817163944, + 0.028839021921157837, + 0.012587785720825195, + -0.009641406126320362, + 0.014937789179384708, + -0.00886753760278225, + 0.009669804945588112, + 0.0128646744415164, + 0.013737938366830349, + -0.012985369190573692, + 0.003950988408178091, + 0.010472072288393974, + -0.01115364395081997, + 0.01729489304125309, + -0.008015572093427181, + 0.0013152211904525757, + -0.009037930518388748, + -0.0005213849362917244, + 0.012658782303333282, + 0.001666656811721623, + 0.019126618281006813, + -0.0017616155091673136, + 0.026453519240021706, + -0.01544896885752678, + -0.011004550382494926, + -0.01329775620251894, + -0.027916058897972107, + 0.016400329768657684, + 0.0005914945504628122, + 0.02125653065741062, + 0.013148662634193897, + -8.630584488855675e-5, + 0.008846238255500793, + -0.010805758647620678, + -0.000200677735847421, + 0.013702440075576305, + 0.01506558433175087, + 0.0024795737117528915, + 0.016343532130122185, + -0.026070134714245796, + 0.009016631171107292, + 0.009045029990375042, + -0.002351778792217374, + -0.007475994527339935, + -0.0019612947944551706, + -0.014064525254070759, + 0.033255040645599365, + -0.009854396805167198, + 0.0017465285491198301, + 0.01136663556098938, + 0.014909390360116959, + 0.010919353924691677, + -0.005704616662114859, + -0.015903349965810776, + -0.005747214891016483, + 0.002882482251152396, + 0.00812916737049818, + 0.006063152104616165, + -0.017280694097280502, + -0.01718129776418209, + 0.026680709794163704, + -0.010784459300339222, + -0.003720247885212302, + 0.01321255974471569, + -0.004795853979885578, + -0.03629371523857117, + 0.007710285019129515, + -0.00932901818305254, + -0.0018707734998315573, + 0.001341845141723752, + 0.01356754545122385, + -0.012374794110655785, + 0.02158311754465103, + -0.02354263700544834, + 0.003823193721473217, + 0.0004277575062587857, + -0.028853220865130424, + -0.015051384456455708, + -0.025857143104076385, + 0.02413901314139366, + 0.0025931689888238907, + 0.011501530185341835, + -0.03192029520869255, + -0.0014589903876185417, + -0.01471059862524271, + 0.002997852396219969, + -0.004536714404821396, + -0.009755001403391361, + 0.0001049980492098257, + -0.014582803472876549, + -0.01400062721222639, + -0.018146857619285583, + 0.01772087626159191, + 0.007894877344369888, + 0.009861497208476067, + -0.024919981136918068, + 0.005864360369741917, + -0.01696830615401268, + -0.0004721306904684752, + 0.0075753903947770596, + -0.007497293408960104, + 0.003936788998544216, + 0.01587495021522045, + 0.006982564460486174, + -0.002692564856261015, + 0.004447968211025, + -0.007731583900749683, + -0.005953106563538313, + 0.0004929861170239747, + -0.001904497155919671, + -0.014994586817920208, + -0.019268611446022987, + 0.00751859275624156, + 0.012410292401909828, + -0.0011111046187579632, + 0.018175257369875908, + 0.0075540910474956036, + 0.006496234331279993, + -0.017309091985225677, + 0.0014030801830813289, + 0.010699262842535973, + -0.003990036901086569, + -0.011686122044920921, + 0.030273161828517914, + 0.003285390790551901, + -0.026297325268387794, + -0.0044621676206588745, + 0.00369894877076149, + -0.008981132879853249, + -0.007916176691651344, + 0.018998824059963226, + -0.0030706245452165604, + -0.002186710713431239, + 0.030415156856179237, + 0.00905213039368391, + 0.014284616336226463, + 0.00456866342574358, + 0.013872832991182804, + -0.0010241331765428185, + 0.008938534185290337, + -0.010259080678224564, + 0.027561074122786522, + 0.01065666414797306, + -0.017522083595395088, + -0.021512120962142944, + -0.01614473946392536, + 0.004724856931716204, + -0.04552333801984787, + 0.0045935120433568954, + 0.00017649434448685497, + -0.008718444034457207, + -0.0030812739860266447, + 0.0040539344772696495, + 0.02338644489645958, + -0.013404252007603645, + 0.020702753216028214, + -0.010493370704352856, + 0.004274025093764067, + -0.017593080177903175, + -0.007305601146072149, + -0.012758178636431694, + 0.008846238255500793, + 0.000369406770914793, + -0.022917862981557846, + 0.01539217121899128, + -0.019836589694023132, + -0.01500878669321537, + -0.009336118586361408, + 0.0021032891236245632, + -0.00848415307700634, + -0.005154389422386885, + 0.010024790652096272, + -0.00012424492160789669, + 0.0022665823344141245, + -0.007475994527339935, + -0.0006824596202932298, + -0.0135391466319561, + -0.00736949872225523, + -0.026396721601486206, + 0.0047319564037024975, + 0.0040432848036289215, + 0.019808189943432808, + 4.137799624004401e-5, + -0.024181611835956573, + -0.011501530185341835, + 0.0004514971806202084, + 0.012041107751429081, + -0.016726916655898094, + -0.03399341180920601, + -0.004494116175919771, + 0.01664171926677227, + -0.024721190333366394, + 0.026197928935289383, + 0.020589157938957214, + -0.007617988623678684, + 0.0003398986009415239, + -0.006553031969815493, + -0.019112419337034225, + -0.00640393840149045, + -0.014156821183860302, + -0.004927198402583599, + 0.00875394232571125, + 0.00436277175322175, + 0.004543814342468977, + -0.03078434243798256, + 0.005012395326048136, + -0.016002746298909187, + 0.02208009734749794, + -0.0037912449333816767, + -0.012062407098710537, + 0.0020038930233567953, + -0.010124186053872108, + 0.013425551354885101, + -0.003256991971284151, + 0.010152584873139858, + 0.020248372107744217, + 0.026226328685879707, + -0.016897309571504593, + 0.0028292343486100435, + -0.011572526767849922, + 0.014937789179384708, + -0.009293519891798496, + 0.018090059980750084, + -0.00228433171287179, + -0.00028043854399584234, + -0.0019382208120077848, + -0.005246685352176428, + 0.007610888686031103, + 0.01226829830557108, + 0.030926335602998734, + 0.008448654785752296, + -0.015818152576684952, + -0.002500872826203704, + 0.01713869906961918, + -0.016556523740291595, + -0.024082215502858162, + -0.01696830615401268, + 0.016712717711925507, + 0.026936298236250877, + -0.015803953632712364, + -0.0041604298166930676, + 0.012545187026262283, + 0.01441241055727005, + 0.008881736546754837, + -0.011664822697639465, + -0.001771377632394433, + -0.013375853188335896, + 0.0014634276740252972, + 0.002744037890806794, + -0.037770457565784454, + 0.010180983692407608, + 0.021625716239213943, + 0.01351074781268835, + -0.038537222892045975, + 0.010067388415336609, + 0.0006780222756788135, + 0.04197348281741142, + 0.01979399099946022, + 0.01631513237953186, + -0.00869714468717575, + 0.01681211218237877, + 0.005605220794677734, + 0.016556523740291595, + -0.0037912449333816767, + 0.0029357299208641052, + -0.005850160960108042, + 0.01996438391506672, + -0.011331136338412762, + -0.0031487212982028723, + -0.010464971885085106, + -0.029790382832288742, + 0.015278575010597706, + 0.0006354240467771888, + 0.020049581304192543, + 0.0029020062647759914, + -0.010734761133790016, + 0.0027191888075321913, + -0.010841256938874722, + 0.03876441717147827, + -0.0007707622135058045, + 0.0019896936137229204, + 0.006386188790202141, + 0.02033356949687004, + -0.020816348493099213, + 0.03268706426024437, + 0.0009549109381623566, + -0.007930375635623932, + 0.017564682289958, + 0.00992539431899786, + 0.015676159411668777, + 0.00294992933049798, + -0.009577508084475994, + -0.010819957591593266, + 0.001979044172912836, + 0.005672668106853962, + 0.011899113655090332, + -0.00102324562612921, + -0.0033776869531720877, + 0.018587039783596992, + 0.012580685317516327, + 0.02056076005101204, + 0.00192402140237391, + 0.013588844798505306, + -0.0025150722358375788, + -0.019126618281006813, + 0.007284302264451981, + 0.010976151563227177, + -0.006819271016865969, + 0.009698203764855862, + 0.024167412891983986, + 0.022988859564065933, + 0.004426668863743544, + 0.011835216544568539, + -0.0012513238471001387, + 0.022719072178006172, + -0.03910520300269127, + -0.008122067898511887, + 0.004416019655764103, + 0.024706989526748657, + 0.004263375885784626, + 0.021682513877749443, + 0.012246998958289623, + -0.015193378552794456, + -0.004416019655764103, + -0.0017527408199384809, + 0.004263375885784626, + -0.021554719656705856, + -0.016684317961335182, + -0.0020802149083465338, + -0.008434454910457134, + -0.012552286498248577, + -0.003173570381477475, + -0.03410700708627701, + 0.00919412449002266, + 0.007951674982905388, + 0.01870063506066799, + 0.0009140876354649663, + -0.004916549194604158, + 0.002728063380345702, + 0.02415321208536625, + 0.009265121072530746, + 0.01800486445426941, + 0.01351074781268835, + -0.00258429441601038, + 0.01658492162823677, + 0.0004115613119211048, + -0.0013045716332271695, + 0.02002118155360222, + -0.006904467940330505, + -0.007050011772662401, + -0.00013356328418012708, + -0.008058170787990093, + 0.0037805954925715923, + -0.017252294346690178, + 0.02250608056783676, + 0.012374794110655785, + -0.0043237232603132725, + 0.007859379053115845, + 0.0013134463224560022, + 0.008505452424287796, + 0.035328157246112823, + -0.007046462036669254, + 0.007412096951156855, + 0.017806071788072586, + 0.020319368690252304, + -0.024777987971901894, + 0.0194248054176569, + 0.001533537288196385, + -0.01299956813454628, + 0.013553345575928688, + -0.004739056341350079, + 0.014320114627480507, + 0.004504765849560499, + -0.0025807444471865892, + 0.0007485756650567055, + 0.017664078623056412, + 0.012644583359360695, + 0.0005045231082476676, + 0.00749019393697381, + 0.015193378552794456, + 0.0020251921378076077, + 0.01033717766404152, + 0.03893480822443962, + 0.003872891655191779, + 0.014092924073338509, + 0.006815721280872822, + -0.0031398467253893614, + -0.007184906397014856, + 0.0010427698725834489, + -0.01735169067978859, + -0.002486673416569829, + -0.006837020628154278, + -0.006808621808886528, + -0.00015719201473984867, + 0.0015175630105659366, + -0.020248372107744217, + -0.009435513988137245, + -0.011551227420568466, + -0.00571171659976244, + -0.016087941825389862, + 0.031238723546266556, + 0.005686867516487837, + -0.018175257369875908, + -0.014391112141311169, + -0.0033865615259855986, + 0.010230681858956814, + 0.01996438391506672, + -0.02154051885008812, + 0.0014865017728880048, + 0.009889896027743816, + 0.01392253115773201, + 0.013631442561745644, + -0.0051934379152953625, + -0.0007618875824846327, + -0.02000698260962963, + 0.01848764345049858, + -0.006492684595286846, + 0.008441555313766003, + 0.02605593577027321, + 0.00225593289360404, + -0.03001757338643074, + -0.025757746770977974, + -0.011821016669273376, + -0.008675845339894295, + -0.004337922669947147, + 0.0176214799284935, + 0.012161802500486374, + -0.02323025092482567, + 0.008327959105372429, + -0.005118890665471554, + 0.002811484970152378, + 0.009620106779038906, + 0.0011687896912917495, + -0.02012057788670063, + 0.0011545902816578746, + -0.002076665172353387, + 0.019297011196613312, + -0.005246685352176428, + 0.021015141159296036, + 0.0063009923323988914, + -0.007873577997088432, + -0.011764219030737877, + -0.00013744593888986856, + 0.030159566551446915, + 0.00607735151425004, + -0.0011723395437002182, + -0.003972287755459547, + -0.011615125462412834, + -0.005786263383924961, + -0.003168245544657111, + 0.01583235338330269, + 0.009385816752910614, + 0.0016622195253148675, + -0.00682637095451355, + -0.013823134824633598, + -0.0021529870573431253, + 0.02457919530570507, + -0.02746167778968811, + -0.012985369190573692, + 0.03316984325647354, + 0.007965873926877975, + 0.011018749326467514, + 0.028256844729185104, + -0.007053561508655548, + -0.0033368635922670364, + 0.0058892094530165195, + -0.00169949303381145, + 0.024295207113027573, + -0.015264376066625118, + -0.009499412029981613, + 0.023855024948716164, + 0.007497293408960104, + 0.03157950937747955, + -0.0037912449333816767, + 0.0061589982360601425, + 0.008888836950063705, + 0.01539217121899128, + -0.0013382952893152833, + 0.011267239227890968, + -0.02317345328629017, + 0.007504393346607685, + -0.01848764345049858, + 0.01827465370297432, + -0.020035380497574806, + 0.001538862125016749, + -0.01191331259906292, + -0.014852592721581459, + 0.004447968211025, + -0.0012850475031882524, + -0.017976464703679085, + -0.012985369190573692, + 0.016840511932969093, + -0.017749274149537086, + 0.011316937394440174, + -0.007830980233848095, + 0.0290520116686821, + -0.008555150590837002, + -0.014852592721581459, + -0.0005919383256696165, + 0.007223954889923334, + 0.015690358355641365, + -0.022037498652935028, + 0.0021973601542413235, + 0.014724798500537872, + 0.01723809540271759, + 0.02359943464398384, + -0.001167014823295176, + -0.012793676927685738, + -0.013965128920972347, + 0.00040734585491009057, + 0.00848415307700634, + -0.01810426078736782, + 0.01001059077680111, + 0.00927222054451704, + 0.003826743457466364, + 0.0006163435755297542, + -0.014163920655846596, + 0.00014720804756507277, + 0.016684317961335182, + 0.009804699569940567, + 0.006939966231584549, + 0.0013232084456831217, + -0.0032197183463722467, + -0.0074475957080721855, + -0.008391857147216797, + -0.004572213161736727, + 0.014142622239887714, + 0.044074997305870056, + 0.02284686639904976, + -0.004774554632604122, + -0.009364517405629158, + 0.005644269287586212, + -0.015335372649133205, + -0.009634305723011494, + 0.0028487585950642824, + -0.009336118586361408, + 0.007504393346607685, + 0.006371989380568266, + -0.005026594735682011, + 0.009442614391446114, + 0.005026594735682011, + -0.004376971162855625, + 0.018800031393766403, + 0.00881073996424675, + -0.010855455882847309, + -0.006808621808886528, + 0.016726916655898094, + -0.006876069121062756, + 0.015647759661078453, + -0.016073742881417274, + 0.0033279890194535255, + -0.006538832560181618, + -0.006893818266689777, + 0.019893387332558632, + -0.0015672609442844987, + 0.0051934379152953625, + -0.005527124274522066, + 0.008633246645331383, + 0.003615527180954814, + -0.031068330630660057, + 0.0010800433810800314, + 0.005906958598643541, + -0.009002432227134705, + 0.017593080177903175, + 0.011437632143497467, + -0.0012415617238730192, + -0.003517906181514263, + -0.03018796630203724, + -0.0070180632174015045, + 0.023201851174235344, + -0.0128078768029809, + -0.009967992082238197, + 0.015548364259302616, + -0.004373421426862478, + 0.03762846067547798, + -0.015903349965810776, + -0.005225386470556259, + 0.01473899744451046, + 0.01539217121899128, + -0.014781596139073372, + -0.016116341575980186, + -0.0010028340620920062, + 3.158122808599728e-6, + 0.017649877816438675, + -0.031068330630660057, + -0.01669851690530777, + 0.007383698131889105, + 0.008526751771569252, + 0.0029481544625014067, + 0.0080510713160038, + -0.0077173844911158085, + -0.00824276264756918, + 0.009527810849249363, + 0.006130599416792393, + 0.002733388217166066, + 0.017706675454974174, + 0.003388336393982172, + 0.025360163301229477, + -0.0035835783928632736, + -0.011636423878371716, + -0.02382662519812584, + 0.004717756994068623, + -0.007060661446303129, + -0.019439006224274635, + -0.004650309681892395, + -0.008654545992612839, + -0.015079783275723457, + -0.007873577997088432, + -0.021838707849383354, + 0.014128422364592552, + -0.005062093026936054, + 0.0025878441520035267, + 0.010777359828352928, + 0.00010155912605114281, + -0.02229308895766735, + 0.021469522267580032, + 0.012168902903795242, + 0.00807947013527155, + -0.0018920726142823696, + 0.00749019393697381, + 0.01566196046769619, + 0.018203655257821083, + 4.179399547865614e-5, + -0.001169677241705358, + -0.014895191416144371, + 0.007774182129651308, + 0.012502589263021946, + 0.004639660473912954, + 0.0041959285736083984, + 0.0008639459265395999, + 0.01139503438025713, + -0.003840942867100239, + -0.0192544125020504, + 0.0033173393458127975, + -0.01479579508304596, + -0.0054596769623458385, + 0.020035380497574806, + 0.00625484436750412, + 0.02127072960138321, + -0.013560445979237556, + 0.028086451813578606, + 0.014171021059155464, + -0.003260541707277298, + -0.00187964818906039, + -0.01033007726073265, + 0.003265866544097662, + 0.01598854549229145, + 0.00508339237421751, + 0.011494429782032967, + 0.015789754688739777, + -0.009435513988137245, + -0.015491566620767117, + -0.014092924073338509, + -0.012814976274967194, + 0.001109329634346068, + -0.007795481476932764, + -0.002023417269811034, + -0.005360281094908714, + -0.011757119558751583, + -0.0030067272018641233, + 0.015250176191329956, + 0.006336491089314222, + -0.011288538575172424, + 0.004572213161736727, + -0.004629010800272226, + 0.02344324253499508, + -0.022420883178710938, + -0.014667999930679798, + 0.05347501486539841, + 0.009392916224896908, + 0.007972974330186844, + -0.015803953632712364, + 0.016386130824685097, + -0.01654232293367386, + -3.1394029065268114e-5, + 0.0006287680589593947, + 0.011118145659565926, + -0.008235663175582886, + -0.015250176191329956, + -0.007270102854818106, + -0.01194171141833067, + 0.006187397055327892, + 0.027149289846420288, + -0.011032949201762676, + -0.003601327771320939, + -0.0041639795526862144, + -0.0035693789832293987, + 0.0077173844911158085, + 0.007845179177820683, + -0.007781282067298889, + 0.004529614932835102, + 0.0012202626094222069, + -0.00044750358210876584, + -0.012055307626724243, + 0.009719503112137318, + -0.009378716349601746, + -0.013723739422857761, + -0.013943829573690891, + 0.0024192261043936014, + -0.008356358855962753, + 0.006325841415673494, + 0.007930375635623932, + 0.026581313461065292, + 0.010557268746197224, + -0.004817152861505747, + -0.016300933435559273, + -0.003656350541859865, + 0.0017509659519419074, + 0.00427047535777092, + 0.02832784131169319, + 0.0031380716245621443, + -0.027277084067463875, + 0.024508198723196983, + 0.003965187817811966, + 0.0160453449934721, + 0.0031930943951010704, + 0.0014634276740252972, + 0.008278261870145798, + 0.0013347454369068146, + -0.009037930518388748, + -0.0037947949022054672, + -0.0068547697737813, + 0.020787950605154037, + 0.0014430159935727715, + -0.025218168273568153, + -0.023514239117503166, + 0.002412126399576664, + 0.011863615363836288, + -0.004203028045594692, + -0.015761354938149452, + -0.0006332053453661501 + ], + "32ec23f8-e456-4acc-9c38-fa5019e6ec28": [ + -0.025497352704405785, + -0.01407185010612011, + -0.01493996474891901, + 0.038477059453725815, + -0.04881041869521141, + -0.010935437865555286, + 0.02068071998655796, + 0.015654059126973152, + -0.010921436361968517, + 0.04573001340031624, + 0.022136909887194633, + 0.032092221081256866, + 0.005002157762646675, + -0.01372180413454771, + 0.00010233376815449446, + -0.022136909887194633, + -0.027387600392103195, + 0.0026410971768200397, + -1.8541501049185172e-5, + -0.0038680084981024265, + 0.05581133812665939, + -0.007960046641528606, + -0.0087301479652524, + 0.016158124431967735, + 0.016998235136270523, + -0.02867577038705349, + -0.002928134985268116, + -0.0012129094684496522, + -0.04124942421913147, + -0.007455980405211449, + 0.031588152050971985, + 0.011775548569858074, + 0.005254190880805254, + 0.007715014275163412, + 0.018300406634807587, + -0.052674926817417145, + 0.005656743887811899, + 0.01373580563813448, + -0.02500728890299797, + -0.026687508448958397, + 0.006577364634722471, + 0.0373569130897522, + 0.003295683301985264, + 0.015990102663636208, + -0.027093563228845596, + -0.006825897376984358, + -0.024503221735358238, + -0.013952834531664848, + 0.005884273909032345, + -0.008541123010218143, + 0.009234214201569557, + 0.006965916138142347, + -0.016662191599607468, + -0.024447213858366013, + 0.04615006968379021, + -0.018846478313207626, + -0.0031031579710543156, + 0.042257554829120636, + -0.007224950008094311, + -0.0400172621011734, + -0.020050635561347008, + -0.004144544713199139, + 0.024377204477787018, + 0.0028493746649473906, + 0.006097801961004734, + -5.174117904971354e-5, + -0.030243976041674614, + 0.04026929661631584, + -0.021856874227523804, + 0.005635741166770458, + 0.008688142523169518, + 0.023593101650476456, + -0.04208953306078911, + 0.02286500670015812, + 0.004158546682447195, + 0.01580807939171791, + 0.01841242052614689, + 0.017964361235499382, + 0.014981970191001892, + 0.00857612770050764, + 0.0004272749356459826, + -0.014078850857913494, + 0.04581402242183685, + 0.01318973395973444, + 0.0270235538482666, + 0.022528961300849915, + -0.025763386860489845, + -0.043881770223379135, + -0.006818896625190973, + -0.042649608105421066, + 0.022066902369260788, + 0.031308118253946304, + -0.01583608239889145, + -0.01568206213414669, + -0.017922356724739075, + 0.014176864176988602, + 0.0039415182545781136, + -0.013105723075568676, + 0.012727673165500164, + 0.007329963613301516, + -0.0013599288649857044, + 0.03312835469841957, + -0.010382365435361862, + 0.0032256741542369127, + -0.0001784140767995268, + -0.00353371468372643, + 0.0174602959305048, + 0.027233580127358437, + -0.02378912828862667, + -0.005632240325212479, + 0.016144122928380966, + -0.05690348148345947, + -0.0034724564757198095, + -0.013840819709002972, + -0.0309720728546381, + -0.00026384717784821987, + -0.049314484000205994, + -0.04192151129245758, + 0.013826818205416203, + -0.03072003833949566, + 0.012328621000051498, + -0.009605263359844685, + -0.009521251544356346, + 0.004687116481363773, + -0.01825840026140213, + 0.026071427389979362, + -0.022472955286502838, + 0.02990793250501156, + 0.04556199163198471, + 0.04166948050260544, + -0.03153214603662491, + -0.04973454028367996, + 0.021730856969952583, + -0.047018181532621384, + 0.022262927144765854, + 0.006416343618184328, + 0.004519094247370958, + 0.04539396986365318, + -0.009913303889334202, + 0.02527332305908203, + -0.021212788298726082, + -0.02299102209508419, + -0.023831132799386978, + 0.00673138489946723, + 0.0052611916325986385, + -0.0064303455874323845, + -0.03029998391866684, + 0.029431870207190514, + -0.038085006177425385, + 0.008072061464190483, + -0.04040931165218353, + -0.009108197875320911, + -0.004939149599522352, + -0.008401104249060154, + 0.03959720581769943, + 0.013238741084933281, + -0.017278272658586502, + 0.020862743258476257, + 0.032260242849588394, + 0.06250421702861786, + 0.0247692558914423, + -0.03853306546807289, + -0.02269698493182659, + -0.008884168229997158, + 0.034808576107025146, + 0.0011910316534340382, + 0.049314484000205994, + 0.0162421353161335, + -0.0056602442637085915, + 0.004382576327770948, + -0.014995971694588661, + -0.008639136329293251, + 0.049314484000205994, + 0.001582208089530468, + 0.022640977054834366, + -0.03111209161579609, + 0.05082668364048004, + 0.021268796175718307, + 0.052674926817417145, + -0.01771232858300209, + -0.006272824946790934, + -0.035760700702667236, + 0.02665950544178486, + 0.004414080176502466, + -0.046738144010305405, + 0.012860691174864769, + 0.028787784278392792, + 0.016312144696712494, + -0.002257796935737133, + 0.017488298937678337, + 0.006535359192639589, + -0.007140939123928547, + -0.008520119823515415, + 0.01339276134967804, + -0.023019026964902878, + -0.06373637914657593, + -0.005173680372536182, + 0.003678983775898814, + -0.024041160941123962, + 0.06530458480119705, + 0.008751150220632553, + -0.01244763657450676, + -0.003608974628150463, + 0.03237225487828255, + -0.04365773871541023, + 0.023159045726060867, + -0.011299485340714455, + -0.03231624886393547, + -0.009024186991155148, + -0.012328621000051498, + 0.02258496917784214, + -0.015332016162574291, + 0.021198786795139313, + 0.023425079882144928, + -0.02608543075621128, + 0.014855952933430672, + -0.0028493746649473906, + 0.016816211864352226, + 0.005180681124329567, + -0.014547912403941154, + -0.005719752050936222, + -0.008562126196920872, + 0.015107986517250538, + -0.015037977136671543, + -0.04228556156158447, + -0.023719118908047676, + -0.04620607569813728, + 0.03528463840484619, + -0.020064638927578926, + 0.010564388707280159, + 0.063792385160923, + -0.031728170812129974, + 0.06418444216251373, + -0.044161807745695114, + -0.0025273323990404606, + 0.013560783118009567, + 0.034416526556015015, + -0.02639346942305565, + -0.020358676090836525, + -0.03422049805521965, + 0.020120644941926003, + -0.01718025840818882, + -0.029823921620845795, + -0.019168520346283913, + -0.03984924033284187, + 0.002557086292654276, + -0.021576836705207825, + 0.034276507794857025, + 0.001977760111913085, + -0.007743018213659525, + -0.004568100441247225, + 0.026869533583521843, + 0.012895695865154266, + 0.023327067494392395, + -0.03312835469841957, + 0.0251753106713295, + 0.03951319679617882, + -0.03338038921356201, + -0.003997525665909052, + 0.009661270305514336, + -0.01760031469166279, + -0.00250457925722003, + -0.008170073851943016, + 0.009402235969901085, + 0.010501381009817123, + -0.058359675109386444, + 0.04071735218167305, + -0.03783297538757324, + 0.03192419931292534, + 0.041697483509778976, + 0.008345097303390503, + -0.007469982374459505, + -0.01621413230895996, + 0.042005524039268494, + -0.016396155580878258, + -0.014631924219429493, + 0.014757940545678139, + 0.017222264781594276, + 0.03181218355894089, + 0.018216395750641823, + -0.01935054361820221, + 0.0011752794962376356, + 0.012356624938547611, + 0.009248215705156326, + 0.018020369112491608, + 0.009073193185031414, + -0.041473452001810074, + -0.020092641934752464, + -0.02959989197552204, + -0.0014990720665082335, + -0.013973837718367577, + 0.012685667723417282, + 0.003153914585709572, + 0.026337463408708572, + -0.004480589181184769, + 0.021058768033981323, + -0.024643240496516228, + -0.005831766873598099, + -0.0016705946763977408, + 0.014365889132022858, + 0.0014964467845857143, + -0.0059787859208881855, + -0.005810764152556658, + -0.021982889622449875, + 0.02353709563612938, + -0.00029994567739777267, + 0.041053399443626404, + 0.05194683000445366, + -0.01529001072049141, + 0.02462923899292946, + 0.026743516325950623, + -0.02138081192970276, + -0.03436051681637764, + -0.01460392028093338, + -0.028731778264045715, + 0.0408293679356575, + -0.04256559535861015, + 0.004162047058343887, + -0.01690022274851799, + -0.03175617381930351, + -0.016872217878699303, + -0.009983312338590622, + -0.09403636306524277, + 0.05029461160302162, + 0.028563756495714188, + -0.042929645627737045, + 0.025371335446834564, + -0.023313065990805626, + -0.016172125935554504, + 0.01211159210652113, + -0.008002052083611488, + 0.011439504101872444, + -0.023159045726060867, + 0.018734462559223175, + -0.022752990946173668, + -0.03461255133152008, + -0.047662265598773956, + -0.025539357215166092, + 0.00892617367208004, + -0.013819817453622818, + 0.006332332734018564, + 0.015121988020837307, + 0.02420918270945549, + -0.02703755535185337, + 0.007652006112039089, + -0.02692553959786892, + -0.003794498974457383, + 0.020932752639055252, + -0.0012811684282496572, + 0.01243363507091999, + 0.0009232463780790567, + 0.006447847932577133, + 0.018076376989483833, + -0.007406973745673895, + 0.046710141003131866, + -0.0008436109055764973, + -0.015051978640258312, + -0.012356624938547611, + 0.0043195681646466255, + -0.007981049828231335, + -0.009871297515928745, + -0.024671243503689766, + -0.011747544631361961, + -0.040633343160152435, + -0.02110077440738678, + 0.009150203317403793, + -0.002933385781943798, + 0.00283887330442667, + -0.015878086909651756, + 0.005506223998963833, + -0.02135280705988407, + 0.005121173337101936, + -0.04256559535861015, + -0.03382844850420952, + -0.021156782284379005, + -0.018636450171470642, + 0.06709682196378708, + -0.004592604003846645, + -0.023313065990805626, + 0.012419632636010647, + 0.0046801152639091015, + -0.0247692558914423, + -0.021002762019634247, + 0.030468005686998367, + 0.04080136492848396, + 0.01000431552529335, + -0.0077080135233700275, + 0.013049716129899025, + -0.016718197613954544, + -0.0019095010356977582, + 9.801288979360834e-5, + -0.006206315942108631, + -0.0050161597318947315, + 0.013630792498588562, + -0.026029422879219055, + -0.020638713613152504, + -0.013553782366216183, + -0.0030541515443474054, + 0.007918041199445724, + 0.01719425991177559, + -0.008142070844769478, + -0.021828869357705116, + -0.0003826440661214292, + 0.0010116329649463296, + 0.01758631318807602, + -0.013238741084933281, + 0.017670324072241783, + -0.01811838150024414, + 0.01692822575569153, + -0.00214403192512691, + -0.014316882006824017, + 0.014827949926257133, + 0.01946255937218666, + 0.06278425455093384, + 0.03245626762509346, + 0.007329963613301516, + -0.0008086063317023218, + 0.06284026056528091, + 0.003330687992274761, + 0.011390497907996178, + 0.027261584997177124, + 0.013742807321250439, + -0.0004506842524278909, + 0.043741751462221146, + -0.019154518842697144, + 0.019686589017510414, + -0.011397498659789562, + 0.02177286334335804, + -0.040241289883852005, + -0.011320488527417183, + 0.01705424301326275, + 0.05841568112373352, + -0.001300420961342752, + 0.011957571841776371, + -0.020218659192323685, + -0.011187470518052578, + -0.001674095168709755, + -0.009248215705156326, + 0.009143202565610409, + 0.01799236610531807, + -0.0064303455874323845, + 0.003302684286609292, + -0.004522594623267651, + -0.008814158849418163, + -0.04026929661631584, + -0.009850295260548592, + -0.03870108723640442, + 0.007841031067073345, + 0.014099854044616222, + -0.004088537767529488, + -0.0005071291816420853, + 0.026071427389979362, + -0.08154672384262085, + -0.016886219382286072, + -0.018860479816794395, + 0.024447213858366013, + 0.022907011210918427, + 0.004984655417501926, + 0.00757499597966671, + -0.03797299414873123, + -0.001722226501442492, + 0.007455980405211449, + 0.028045687824487686, + -0.003085655625909567, + 0.009080193936824799, + -0.030468005686998367, + -0.014575916342437267, + -0.017516303807497025, + 0.013238741084933281, + 0.01495396625250578, + -0.03612475097179413, + -0.007595998700708151, + -0.03811301290988922, + 0.03539665415883064, + -0.003227424342185259, + -0.021800866350531578, + 0.0004294627287890762, + 0.006493353750556707, + -0.021576836705207825, + -0.03354841098189354, + -0.016452163457870483, + -0.004879641812294722, + 0.0035477164201438427, + -0.017936358228325844, + -0.010816422291100025, + 0.006934411823749542, + -0.04516993835568428, + -0.0251753106713295, + 0.013847820460796356, + -0.014232871122658253, + 0.011572521179914474, + 0.013490773737430573, + -0.01865045167505741, + 0.026603497564792633, + -0.02976791374385357, + -0.03931716829538345, + 0.008492116816341877, + -0.049314484000205994, + -0.013455769047141075, + -0.03674083203077316, + 0.025805393233895302, + 0.021548833698034286, + -0.01358878705650568, + -0.016172125935554504, + -0.0004721245786640793, + 0.02636546641588211, + -0.01021434273570776, + 0.013616790063679218, + -0.014148860238492489, + -0.02016265131533146, + -0.032932329922914505, + 0.014771942049264908, + -0.03466855734586716, + 0.007925041951239109, + 0.006353335455060005, + 0.019826607778668404, + -0.025623369961977005, + -0.00031722921994514763, + 0.042789626866579056, + 0.0014535661321133375, + -0.017376285046339035, + -0.017068244516849518, + -0.013420764356851578, + -0.01999462954699993, + -0.021800866350531578, + 0.0061258054338395596, + 0.005698749329894781, + -0.01974259503185749, + 0.03125210851430893, + -0.04262160509824753, + -0.024825263768434525, + 0.02987992949783802, + -0.01729227416217327, + 0.01935054361820221, + 0.020876744762063026, + 0.010095327161252499, + -0.00017163193842861801, + -0.00358272111043334, + 0.01014433428645134, + -0.0075399912893772125, + -0.013217737898230553, + 0.012713671661913395, + -0.009304223582148552, + -0.008422107435762882, + 0.008919172920286655, + 0.023621106520295143, + 0.015864085406064987, + 0.011971574276685715, + -0.0179783646017313, + 0.02811569720506668, + -0.04046532139182091, + 0.024559229612350464, + -0.0097452811896801, + -0.011166468262672424, + -0.005002157762646675, + 0.010305355302989483, + 0.007469982374459505, + 0.001026510028168559, + -0.031056083738803864, + -0.03934517502784729, + 0.014631924219429493, + 0.024237187579274178, + 0.011453505605459213, + -0.004764126613736153, + -0.004925147630274296, + -0.004494591150432825, + -0.021436817944049835, + 0.01841242052614689, + -0.005240188911557198, + 0.03343639522790909, + 0.032512273639440536, + 0.002177286194637418, + 0.017348280176520348, + 0.033744435757398605, + -0.010228345170617104, + 0.03245626762509346, + 0.015640055760741234, + 0.010130331851541996, + -0.006412843242287636, + 0.00040167782572098076, + 0.02474125288426876, + 0.006440846715122461, + -0.020204655826091766, + 0.008702144026756287, + -0.015934094786643982, + 0.03730090335011482, + -0.02866176888346672, + 0.0007976673659868538, + -0.006811895873397589, + 0.013021712191402912, + 0.0035232133232057095, + 0.023999156430363655, + -0.012202604673802853, + 0.011460507288575172, + -0.011495511047542095, + 0.026939542964100838, + -0.004956651944667101, + 0.016060112044215202, + 0.0207087229937315, + 0.0006909033400006592, + 0.019588574767112732, + 0.015500037930905819, + 0.009423239156603813, + -0.015079982578754425, + -0.012251610867679119, + 0.0005858895601704717, + 0.029011813923716545, + -0.010179338045418262, + -0.013903828337788582, + 0.011719540692865849, + -0.03001994639635086, + -0.02230493351817131, + 0.01513599045574665, + -0.009080193936824799, + -0.003692985512316227, + -0.008275087922811508, + 0.00798805058002472, + 0.008324094116687775, + 0.002439820906147361, + 0.03774896264076233, + 0.014197866432368755, + -0.03601273521780968, + 0.05830366536974907, + -0.03749693185091019, + 0.03531264141201973, + 0.01231461949646473, + -0.017418289557099342, + 0.0046801152639091015, + -0.004886642564088106, + -0.014239871874451637, + 0.005856269970536232, + -0.039541199803352356, + 0.017404288053512573, + -0.014911960810422897, + -0.004344071261584759, + 0.007588997948914766, + -0.020344674587249756, + 0.000999381416477263, + -0.0015200749039649963, + -0.015065981075167656, + 0.015654059126973152, + -0.001184905762784183, + 0.00884916353970766, + 0.07695411890745163, + -0.012552650645375252, + 0.0341084860265255, + -0.03419249504804611, + -0.004144544713199139, + 0.014477903954684734, + 0.003510961541905999, + -0.002299802377820015, + 0.01907050795853138, + -0.002445071469992399, + 0.01169153768569231, + 0.022766994312405586, + -0.008961178362369537, + 0.005292695946991444, + 0.002088024513795972, + 0.020988760516047478, + 0.004193551372736692, + 0.006850400939583778, + -0.024545228108763695, + 0.01513599045574665, + -0.0072949593886733055, + 0.018342411145567894, + -0.001094768987968564, + 0.03609674796462059, + -0.014155860990285873, + 0.011341490782797337, + 0.005418712273240089, + 0.028353728353977203, + 0.010347360745072365, + 0.002116028219461441, + 0.004771127365529537, + -0.009892300702631474, + 0.0005136925610713661, + 0.0055867345072329044, + 0.0004038655897602439, + 0.022346938028931618, + -0.01571006514132023, + -0.005366205703467131, + -0.038589075207710266, + -0.027555624023079872, + 0.0005311948480084538, + -0.038617078214883804, + -0.001606711302883923, + -0.026869533583521843, + 0.03452853858470917, + -0.028199708089232445, + -0.007420975714921951, + 0.007595998700708151, + 0.00866713933646679, + -0.012657664716243744, + 0.019406551495194435, + 0.02394314855337143, + -0.028199708089232445, + 0.012881693430244923, + -0.008695143274962902, + 0.031728170812129974, + -0.006965916138142347, + -0.023691115900874138, + -0.013238741084933281, + 0.03948519006371498, + -0.04925847798585892, + 0.032512273639440536, + 0.0013459270121529698, + -0.014883956871926785, + -0.028031686320900917, + -0.01433088444173336, + 0.01839841902256012, + -0.010165336541831493, + 0.005943781696259975, + 0.0030103959143161774, + 0.03161615878343582, + 0.02300502546131611, + 0.01304271537810564, + -0.002947387518361211, + 0.05427113547921181, + -0.03301634266972542, + 0.032792311161756516, + -0.002053020056337118, + 0.01813238486647606, + 0.018314408138394356, + -0.03396846726536751, + -0.01176854781806469, + 0.014981970191001892, + -0.019028501585125923, + -0.00577575946226716, + -0.003766495268791914, + -0.0041725486516952515, + 0.017936358228325844, + -0.00986429676413536, + 0.004354572389274836, + -0.006272824946790934, + -0.0040780361741781235, + -0.016662191599607468, + -0.0001402371854055673, + 0.015556045807898045, + -0.016536174342036247, + -0.024825263768434525, + 0.02542734332382679, + -0.007715014275163412, + 0.008016053587198257, + -0.024573231115937233, + 0.01278368104249239, + -0.012818685732781887, + 0.04166948050260544, + -0.005555230658501387, + -0.017796339467167854, + 0.0022402945905923843, + 0.057267528027296066, + -0.013672797940671444, + 0.023201050236821175, + 0.011341490782797337, + -0.0053347013890743256, + 0.017250267788767815, + 0.017138253897428513, + -0.003180168103426695, + -0.012755677103996277, + 0.037804972380399704, + -0.0003638290800154209, + 0.005737254396080971, + -0.03072003833949566, + -0.006682378705590963, + -0.014302880503237247, + -0.011677535250782967, + 0.011033451184630394, + 0.005975285544991493, + 0.02703755535185337, + -0.02041468396782875, + 0.0446658730506897, + 0.05175080522894859, + 0.020848741754889488, + -8.067466978900484e-7, + 0.004781628493219614, + -0.035228632390499115, + 0.007322962861508131, + -0.029795918613672256, + -0.029403865337371826, + -0.02107277140021324, + 0.000626582361292094, + -0.04844636842608452, + 0.026197444647550583, + -0.0357326976954937, + 0.008205078542232513, + -0.01648016646504402, + 0.029935935512185097, + -0.008219080977141857, + -0.008324094116687775, + 0.02003663405776024, + 0.0022963020019233227, + -0.014204868115484715, + -0.011033451184630394, + 0.003230924718081951, + 0.02259897068142891, + -0.01838441751897335, + 0.021394813433289528, + 0.027667637914419174, + -0.023831132799386978, + 0.005502723623067141, + 0.006328832358121872, + -0.021170783787965775, + 0.05217086151242256, + 0.032512273639440536, + -0.00831709336489439, + 0.0004051782889291644, + 0.007631003390997648, + -0.011068454943597317, + -0.028073690831661224, + 0.0038925118278712034, + 0.0018954991828650236, + 0.008114066906273365, + -0.013091721571981907, + 0.016536174342036247, + -0.013399762101471424, + 0.00311190914362669, + 0.004249558784067631, + -0.025609366595745087, + 0.03620875999331474, + 0.003938017878681421, + -0.001228661509230733, + -0.0062203179113566875, + 0.009724278934299946, + 0.008352098055183887, + 0.009878299199044704, + -0.01325274258852005, + 0.01636815257370472, + 0.014204868115484715, + 0.006129305809736252, + 0.006192313972860575, + -0.013763809576630592, + -0.007385971024632454, + -0.006815396249294281, + 0.004673114512115717, + -0.009045189246535301, + 0.021142780780792236, + 0.004858638625591993, + 0.021744858473539352, + -0.020848741754889488, + 0.05124673992395401, + -0.021814867854118347, + -0.05533527582883835, + 0.007441978435963392, + -0.007392972242087126, + -0.0020565204322338104, + 0.0066403732635080814, + 0.008961178362369537, + 0.02257096767425537, + 0.001420311746187508, + 0.06446447968482971, + 0.043209683150053024, + -0.013966836035251617, + -0.01069040596485138, + 0.015234002843499184, + -0.030468005686998367, + 0.015023975633084774, + -0.03777696564793587, + 0.032792311161756516, + 0.007175943348556757, + -0.00033626295044086874, + 0.04203352704644203, + 0.002672601491212845, + -0.05407511070370674, + 0.01813238486647606, + -0.011152466759085655, + -0.0302719809114933, + 0.017474297434091568, + 0.01919652335345745, + 0.008625133894383907, + 0.0548592135310173, + 0.013217737898230553, + -0.026841528713703156, + -0.005632240325212479, + 0.011236477643251419, + -0.030327986925840378, + -0.014827949926257133, + -0.005898275412619114, + 0.01853843778371811, + -0.002534333150833845, + 0.006027792580425739, + -0.029795918613672256, + 0.008289089426398277, + 0.020596707239747047, + -0.014757940545678139, + -0.026715513318777084, + -0.012594656087458134, + -0.02027466520667076, + 0.01495396625250578, + 0.009276219643652439, + 0.003762994660064578, + -0.014106854796409607, + 0.004746624268591404, + -0.01622813381254673, + -0.02177286334335804, + -0.02787766605615616, + 0.0416414737701416, + 0.001814988674595952, + -0.018622448667883873, + -0.0010510132415220141, + 0.03200820833444595, + 0.00686790281906724, + -0.032792311161756516, + -0.03732890635728836, + -0.012902696616947651, + 0.057407546788454056, + -0.042005524039268494, + 0.02364910952746868, + -0.013014711439609528, + -0.008051058277487755, + -0.00017775774176698178, + 0.021884877234697342, + 0.03385645151138306, + 0.017250267788767815, + -0.01702623814344406, + 0.06059996783733368, + 0.022542964667081833, + 0.028983810916543007, + -0.021534832194447517, + -0.015738070011138916, + 0.011397498659789562, + 0.01853843778371811, + 0.003934517502784729, + 0.052422892302274704, + 0.014085851609706879, + -0.011677535250782967, + -0.0032221737783402205, + -0.034976597875356674, + -0.02503529191017151, + -0.03363242372870445, + 0.011390497907996178, + -0.009913303889334202, + -0.0039625209756195545, + 0.016060112044215202, + -0.02355109713971615, + 0.002621844643726945, + 0.0012409131741151214, + 0.0024328199215233326, + -0.015570047311484814, + -0.012895695865154266, + -0.004480589181184769, + -0.017390286549925804, + -0.007371969521045685, + 0.00966827105730772, + -0.020624712109565735, + -0.0273175910115242, + -0.013483772985637188, + 0.007102434057742357, + 0.02069472149014473, + -0.009346229024231434, + 0.006899407133460045, + -0.0012382877757772803, + 0.034024473279714584, + -0.0175723098218441, + 0.010893432423472404, + 0.010221343487501144, + 0.03452853858470917, + 0.00014144046872388572, + -0.004627608228474855, + -0.007820027880370617, + 0.02544134482741356, + 0.00947224535048008, + -0.00791104044765234, + 0.010011316277086735, + 0.006878404412418604, + -0.01810437999665737, + 0.046598125249147415, + -0.028479743748903275, + 0.0033324381802231073, + 0.007308960892260075, + -0.0019672587513923645, + -0.014575916342437267, + 0.01907050795853138, + -0.02689753659069538, + 0.03828103467822075, + -0.005226186942309141, + -0.02339707687497139, + -0.02840973623096943, + -0.0064303455874323845, + -0.023999156430363655, + 0.0034076981246471405, + 0.020358676090836525, + -0.0018027370097115636, + -0.052954964339733124, + -0.032484270632267, + 0.004386076703667641, + 0.015051978640258312, + -0.010732411406934261, + 0.015304012224078178, + -0.03531264141201973, + 0.029991943389177322, + 0.00473612267524004, + -0.001486820518039167, + -0.013406762853264809, + -0.013679798692464828, + 0.001576957292854786, + -0.013567783869802952, + -0.01810437999665737, + 0.0002975391107611358, + 0.0005740755004808307, + -0.016662191599607468, + -0.022682981565594673, + 0.011593524366617203, + -0.023187048733234406, + 0.029319854453206062, + 0.025511354207992554, + -0.010893432423472404, + -0.0034794574603438377, + -0.009836293756961823, + -0.0027513618115335703, + 0.03217623010277748, + -0.015850083902478218, + -0.0237751267850399, + 0.003071653889492154, + 0.005940280854701996, + 0.013777812011539936, + 0.0034497035667300224, + 0.02987992949783802, + 0.009374232962727547, + -0.00925521645694971, + 0.021870875731110573, + -0.027093563228845596, + -0.004603105131536722, + 0.023047029972076416, + -0.009696274995803833, + -0.006647374015301466, + 0.008905170485377312, + 0.009101197123527527, + 0.01662018522620201, + 0.044693876057863235, + -8.866009738994762e-5, + 0.011621528305113316, + -0.021436817944049835, + -0.0030804050620645285, + -0.015262006781995296, + 0.01029135286808014, + -0.016158124431967735, + 0.013812815770506859, + -0.09890900552272797, + -0.03436051681637764, + -0.010606394149363041, + 0.003351690713316202, + 0.020190654322504997, + -0.0008869291050359607, + 0.005257691256701946, + 0.020330673083662987, + -0.007813027128577232, + 0.022682981565594673, + 0.01378481276333332, + -0.02259897068142891, + 0.037944987416267395, + 0.022486956790089607, + 0.0018289905274286866, + 0.010347360745072365, + -0.008723147213459015, + 0.004102539271116257, + 0.011327489279210567, + -0.02703755535185337, + -0.011194472201168537, + 0.021576836705207825, + 0.02217891626060009, + -0.00879315659403801, + -0.010641398839652538, + 0.006612369325011969, + -0.019672587513923645, + 0.021422816440463066, + 0.0026445977855473757, + -0.02892780303955078, + 0.022248925641179085, + 0.005446716211736202, + -0.005485221277922392, + 0.003966021351516247, + 0.011677535250782967, + 0.017894353717565536, + -0.007259954698383808, + -0.014253874309360981, + 0.03259628638625145, + 0.001324924174696207, + 0.003465455723926425, + 0.011166468262672424, + -0.004095538519322872, + 0.011796550825238228, + -0.010634398087859154, + -0.005880773067474365, + -0.020344674587249756, + -0.023705117404460907, + 0.03419249504804611, + 0.0019900116603821516, + 0.013917829841375351, + -0.012405631132423878, + -0.029711905866861343, + -0.02392914704978466, + 0.005681246984750032, + 0.003997525665909052, + 0.00945824384689331, + -0.019252531230449677, + 0.0029596390668302774, + 0.00884916353970766, + 0.045926038175821304, + 0.021968888118863106, + -0.011719540692865849, + 0.0021807868033647537, + 0.0027583627961575985, + 0.005478220526129007, + 0.017544306814670563, + 0.0016977231716737151, + 0.02124079316854477, + 0.0003563906066119671, + 0.012517645955085754, + -0.01035436149686575, + -0.015093985013663769, + 0.005516725592315197, + 0.024181179702281952, + 0.011845557950437069, + 0.01596209965646267, + 0.0040570334531366825, + -0.0030594023410230875, + -0.007715014275163412, + -0.022893009707331657, + -0.006279825698584318, + 0.003467205911874771, + 0.0023645609617233276, + -0.003181918291375041, + -0.006486352998763323, + 0.0012295367196202278, + -0.019938621670007706, + 0.0007967922720126808, + -0.004820133559405804, + 0.010242346674203873, + -0.004277562256902456, + 0.03581671044230461, + 0.007778022903949022, + -0.021800866350531578, + 0.012279614806175232, + 0.015920093283057213, + -0.01020034123212099, + 0.015934094786643982, + -0.008821159601211548, + 0.0025955913588404655, + -0.03626476973295212, + -0.004757125396281481, + -0.02840973623096943, + -0.013014711439609528, + 0.015906091779470444, + -0.00236806133762002, + 0.020456690341234207, + -0.01677420549094677, + -0.0068433997221291065, + 0.009528253227472305, + 0.029123829677700996, + -0.012629660777747631, + -0.006066297646611929, + -0.004484089557081461, + 0.028423737734556198, + -0.00851311907172203, + 0.0026410971768200397, + -0.012272614054381847, + 0.0020355177111923695, + 0.013217737898230553, + 0.02747161127626896, + -0.0006659625796601176, + -0.016676193103194237, + -0.00043755752267315984, + -0.003738491563126445, + -0.0060522956773638725, + -0.01190156489610672, + -0.007504986599087715, + 0.023579100146889687, + -0.0021720356307923794, + 0.01922452822327614, + -0.024307195097208023, + 0.00686790281906724, + -0.008408105932176113, + 0.014365889132022858, + 0.023593101650476456, + -0.0045646000653505325, + 0.015248005278408527, + -0.02058270573616028, + 0.007715014275163412, + 0.004655612166970968, + -0.009206210263073444, + 0.008086062967777252, + -0.0034794574603438377, + 0.009164204820990562, + -0.007764020934700966, + 0.0040990388952195644, + -0.0031469138339161873, + -0.01332975272089243, + -0.020190654322504997, + 0.012944702059030533, + 0.03220423310995102, + 0.02623944915831089, + -0.0032186731696128845, + -0.033184364438056946, + -0.021184785291552544, + 0.01204158365726471, + -0.012629660777747631, + -0.005555230658501387, + -0.019420552998781204, + 0.003889011451974511, + 0.013119724579155445, + -0.011509513482451439, + 0.0009670021245256066, + -0.015121988020837307, + -0.029291851446032524, + -0.0087301479652524, + 0.003671982791274786, + -0.009507250040769577, + 0.006927411071956158, + 0.0015130739193409681, + -0.028451740741729736, + 0.006038294173777103, + -0.006647374015301466, + -0.01500997319817543, + -0.007018422707915306, + -0.016606183722615242, + 0.024041160941123962, + -0.019714592024683952, + -0.011376495473086834, + 0.02486727014183998, + -0.004088537767529488, + 0.006965916138142347, + -0.0006213316810317338, + 0.005723252426832914, + -0.004676614888012409, + -0.0007771021919324994, + 0.02138081192970276, + 0.007820027880370617, + 0.014435898512601852, + 0.004718620330095291, + -0.01935054361820221, + 0.0008650512318126857, + -0.004270561505109072, + -0.000730283500161022, + 0.021002762019634247, + 0.026337463408708572, + -0.0047956304624676704, + -0.0015174495056271553, + -0.04346171393990517, + -0.03634877875447273, + 0.0014273126143962145, + 0.012692668475210667, + -0.015444030985236168, + 0.010431371629238129, + -0.03136412426829338, + 0.004851637873798609, + 0.023061031475663185, + -0.019042503088712692, + -0.003833004040643573, + 0.0020775231532752514, + 0.019126513972878456, + -0.00865313783288002, + -0.010480377823114395, + 0.001600585412234068, + 0.0024118172004818916, + -0.021394813433289528, + 0.020050635561347008, + -0.016592182219028473, + 0.04012927785515785, + -0.005859770346432924, + 0.008009052835404873, + -0.019308539107441902, + 0.0060522956773638725, + 0.0009232463780790567, + 2.1399298930191435e-5, + -0.03959720581769943, + -0.021198786795139313, + 0.011453505605459213, + -0.024153176695108414, + 0.01548603642731905, + -0.00720394728705287, + -0.01237062644213438, + -0.015220001339912415, + -0.021800866350531578, + 0.012867691926658154, + -0.013035713694989681, + 0.021226791664958, + -0.005800262559205294, + -0.02044268697500229, + -0.025721382349729538, + -0.019308539107441902, + -0.0005171929951757193, + 0.04155746474862099, + 0.0005648867809213698, + -0.011831555515527725, + -0.00510717136785388, + 0.008401104249060154, + 0.006129305809736252, + 0.019028501585125923, + -0.007694011554121971, + -0.005884273909032345, + 0.023593101650476456, + -0.018314408138394356, + -0.013882825151085854, + 0.017908355221152306, + -0.0024765755515545607, + 0.011999578215181828, + -0.0051316749304533005, + -0.026715513318777084, + -0.004515593871474266, + 0.0232570581138134, + -0.03178418055176735, + 0.0227389894425869, + -0.0006020791479386389, + -0.014323883689939976, + 0.011950571089982986, + 0.019294537603855133, + -0.0002911945339292288, + -0.006538859568536282, + -0.011341490782797337, + -0.018216395750641823, + -0.00925521645694971, + 0.020722724497318268, + 0.0008387977723032236, + -0.01536001916974783, + -0.016872217878699303, + -0.001534951850771904, + 0.015934094786643982, + -0.013532779179513454, + -0.003678983775898814, + -0.011460507288575172, + 0.010830423794686794, + 0.02243094891309738, + 0.005023160483688116, + 0.022907011210918427, + 0.0007390346727333963, + 0.03828103467822075, + -0.017544306814670563, + 0.0077080135233700275, + 0.0034567045513540506, + 0.030131962150335312, + -0.007217949256300926, + 0.014561914838850498, + -0.008821159601211548, + 0.02328506112098694, + 0.003931016661226749, + 0.03245626762509346, + -0.005968284793198109, + 0.03396846726536751, + -0.013945833779871464, + -0.007680009584873915, + -0.007406973745673895, + 0.0013345504412427545, + -0.0001865088997874409, + 0.019378548488020897, + 0.007946045137941837, + -0.00391701515763998, + 0.0013783061876893044, + -0.0006134556606411934, + 0.017488298937678337, + -0.005719752050936222, + -0.013763809576630592, + 0.02042868547141552, + 0.010704407468438148, + 0.02486727014183998, + -0.003302684286609292, + -0.004617107100784779, + -0.03475257009267807, + -0.0073159621097147465, + 0.000721094838809222, + 0.028087692335247993, + -0.010620396584272385, + -0.024447213858366013, + -0.030496010556817055, + -0.020470691844820976, + -0.003208171809092164, + 0.0053977095521986485, + -0.002410066779702902, + 0.011845557950437069, + 0.042817629873752594, + -0.0008221705793403089, + -0.022346938028931618, + -0.0011796550825238228, + 0.004144544713199139, + -0.005296196322888136, + 0.0008379226783290505, + -0.01164253056049347, + -0.00022424822964239866, + 0.00246607419103384, + 0.01972859352827072, + -0.0018412420758977532, + -0.0016828462248668075, + 0.019700590521097183, + 0.00043580730562098324, + -0.005730253644287586, + 0.023229055106639862, + 0.008002052083611488, + -0.012804683297872543, + 0.015864085406064987, + 0.018202394247055054, + -0.006447847932577133, + -0.005887774284929037, + 0.00994130689650774, + 0.04166948050260544, + -0.008142070844769478, + 0.002354059601202607, + -0.021198786795139313, + -0.022276928648352623, + -0.045225948095321655, + -0.01460392028093338, + 0.006990419235080481, + 0.013322751969099045, + -0.013630792498588562, + 0.02355109713971615, + 0.022360939532518387, + -0.009689274244010448, + 0.010235345922410488, + -0.03136412426829338, + -0.00851311907172203, + 0.008702144026756287, + -0.017796339467167854, + -0.007631003390997648, + -0.015121988020837307, + 0.0052611916325986385, + -0.0343325138092041, + 0.01785234734416008, + -0.00810706615447998, + -0.025595365092158318, + 0.002436320297420025, + -0.010046320967376232, + -0.01986861228942871, + -0.014771942049264908, + -0.02230493351817131, + -0.015079982578754425, + -0.005810764152556658, + 0.0029631396755576134, + -0.00557973375543952, + 0.005453716963529587, + -0.010704407468438148, + -0.00031788554042577744, + 0.001231286907568574, + 0.022360939532518387, + 0.010851426981389523, + 0.002840623492375016, + -0.028493747115135193, + -0.0058632707223296165, + -0.035900719463825226, + -0.007638004142791033, + -0.005044163204729557, + -0.004039531107991934, + -0.0007626627921126783, + 0.013700801879167557, + 0.0025238317903131247, + 0.0018202393548563123, + 0.011250479146838188, + 0.017908355221152306, + 0.005177180748432875, + -0.03788898140192032, + -0.012958703562617302, + -0.001252289628610015, + -0.013973837718367577, + -0.01704023964703083, + -0.013700801879167557, + -0.0028283719439059496, + -0.0021667848341166973, + 0.015276008285582066, + 0.015276008285582066, + -0.026883535087108612, + -0.018706459552049637, + 0.0012575403088703752, + 0.01041737012565136, + -0.02542734332382679, + -0.023341068997979164, + 0.006531858816742897, + -0.03368842974305153, + 0.011866560205817223, + 0.006034793332219124, + 0.01035436149686575, + 0.0061258054338395596, + -0.013819817453622818, + 0.007196946069598198, + -0.0023505589924752712, + 0.029291851446032524, + 0.000278286577668041, + -0.0035704695619642735, + -0.023033028468489647, + 0.01069040596485138, + -0.03842105343937874, + -0.011173469014465809, + -0.025189312174916267, + 0.0042670611292123795, + -0.02111477591097355, + 0.013567783869802952, + -0.013378758914768696, + 0.026995548978447914, + -0.0034427025821059942, + 0.02381713129580021, + 0.010263349860906601, + 0.011117462068796158, + -0.028185706585645676, + 0.02825571596622467, + -0.0005946406745351851, + 0.0021947885397821665, + 2.9890648875152692e-5, + -0.0009144952637143433, + -0.009129200130701065, + -0.014673929661512375, + 0.03136412426829338, + 0.0109634418040514, + -0.005866771563887596, + 0.003762994660064578, + 0.011537517420947552, + -0.014785944484174252, + 0.012300617061555386, + 0.026001418009400368, + -0.038337040692567825, + -0.012804683297872543, + -0.013987839221954346, + -0.0014693181728944182, + -0.011418500915169716, + -0.008688142523169518, + -0.0010352610843256116, + 0.022766994312405586, + -0.003201170824468136, + -0.015304012224078178, + 0.004928648006170988, + 0.0174602959305048, + -0.027261584997177124, + 0.026561493054032326, + -0.011047452688217163, + 0.00966827105730772, + 0.016690194606781006, + 0.020190654322504997, + -0.0071059344336390495, + 0.0351446196436882, + -0.019574573263525963, + -0.022388944402337074, + 0.03310035169124603, + -0.02189887873828411, + -0.015528041869401932, + -0.02555336058139801, + -0.00025947162066586316, + 0.020876744762063026, + -0.018062375485897064, + -0.014141859486699104, + -0.005898275412619114, + 0.0341084860265255, + -0.005327700637280941, + 0.01648016646504402, + -0.022668980062007904, + -0.042537592351436615, + 0.01677420549094677, + -0.005474719684571028, + -0.006601868197321892, + 0.0021282797679305077, + 0.008471113629639149, + -0.0013056716416031122, + 0.0059787859208881855, + -0.007025423925369978, + -0.005999789107590914, + -0.016606183722615242, + -0.003990524914115667, + -0.00659486697986722, + -0.005870271939784288, + 0.023327067494392395, + -0.012475640513002872, + -0.018888482823967934, + 0.004438583739101887, + -0.018496431410312653, + -0.011313487775623798, + -0.007056927774101496, + 0.00041524210246279836, + -0.0030524013563990593, + -0.0007114685722626746, + -0.004900644533336163, + -0.007890037260949612, + -0.010389366187155247, + -0.009430239908397198, + 0.0049636526964604855, + -0.006143307778984308, + 0.017796339467167854, + -0.0029578888788819313, + 0.008163073100149632, + -0.0075819967314600945, + 0.008212080225348473, + 0.0003126348601654172, + -0.02542734332382679, + -4.744764373754151e-5, + -0.019952623173594475, + -0.011775548569858074, + -0.004690616857260466, + 0.013686799444258213, + 0.001345051801763475, + 0.05830366536974907, + -0.009276219643652439, + -0.017096247524023056, + -0.006517856847494841, + 0.008422107435762882, + 0.0033744436223059893, + 0.007483983878046274, + 0.007406973745673895, + 0.005320699419826269, + -0.015093985013663769, + -0.012944702059030533, + -0.020876744762063026, + 0.024531224742531776, + -0.007385971024632454, + -0.004372074734419584, + 0.001185780856758356, + 0.018762467429041862, + 0.030748043209314346, + -0.00456109968945384, + 0.021548833698034286, + 0.015472033992409706, + 0.004704618360847235, + 0.011320488527417183, + 0.02191288210451603, + -0.011593524366617203, + -0.0014386891853064299, + 0.0021510329097509384, + 0.014365889132022858, + 0.005096670240163803, + 0.006311330012977123, + 0.003857507137581706, + 0.019182521849870682, + -0.027513617649674416, + 0.0038715091068297625, + -0.007960046641528606, + 0.012482641264796257, + -0.0012627909891307354, + 0.01975659839808941, + -0.01594809629023075, + 0.018286405131220818, + -0.007841031067073345, + -0.024419210851192474, + 0.02639346942305565, + 0.018496431410312653, + -0.010732411406934261, + -0.006759388837963343, + -0.022290930151939392, + -0.0014614422107115388, + 0.013560783118009567, + -0.008702144026756287, + -0.009416238404810429, + -0.002742610638961196, + 0.009045189246535301, + 0.013063717633485794, + 0.011243478395044804, + 0.0065248580649495125, + 0.01481394749134779, + -0.0005412586615420878, + -0.012006578966975212, + -2.0838677301071584e-5, + 0.001228661509230733, + -0.007932042703032494, + -0.03220423310995102, + -0.03909314051270485, + -0.00017622629820834845, + -0.014981970191001892, + -0.005919278133660555, + -0.028577757999300957, + 0.006650874391198158, + 0.005110671743750572, + 0.000522006128448993, + 0.024041160941123962, + 0.0012199104530736804, + -0.016130121424794197, + -0.011033451184630394, + 0.016452163457870483, + 0.00399402529001236, + -0.0006103927735239267, + -0.008492116816341877, + -0.010396366938948631, + 0.0008882418042048812, + 0.00641984399408102, + 0.002074022777378559, + -0.012860691174864769, + -0.00933222658932209, + -0.010431371629238129, + 0.018230397254228592, + -0.023635108023881912, + -0.0068854051642119884, + -0.006440846715122461, + -0.021030765026807785, + 0.014106854796409607, + -0.020498694851994514, + 0.010914434678852558, + 0.010599393397569656, + 0.0002603467437438667, + -0.010284352116286755, + -0.016942227259278297, + 0.006986918859183788, + -0.0033831947948783636, + 0.014533910900354385, + 0.005019660107791424, + 0.009087194688618183, + -0.0016128370771184564, + -0.006713882554322481, + -0.0220388974994421, + 0.0179783646017313, + 0.022935016080737114, + -0.021870875731110573, + 0.00326067884452641, + -0.0009048689971677959, + -0.023341068997979164, + -0.0003027898201253265, + -0.036292772740125656, + -0.040493324398994446, + 0.022921014577150345, + 0.00919920951128006, + 0.0021492824889719486, + 0.016970232129096985, + -0.023201050236821175, + -0.002226292621344328, + -8.598005661042407e-5, + 0.008884168229997158, + -0.004337070044130087, + 0.004610106348991394, + 0.006951914168894291, + -0.008051058277487755, + -0.005198183469474316, + -0.014827949926257133, + 0.00334819033741951, + -0.0003752055927179754, + 0.012741675600409508, + 0.002074022777378559, + 0.010256348177790642, + -0.0008689892711117864, + -0.010816422291100025, + -0.008065060712397099, + 0.006577364634722471, + 0.014225870370864868, + -0.01692822575569153, + 0.01399483997374773, + 0.001974259503185749, + -0.014995971694588661, + 0.008310092613101006, + -0.003304434474557638, + -0.001348552294075489, + -0.017754334956407547, + -0.011103459633886814, + 0.01013733260333538, + -0.0005049413884989917, + 0.018440425395965576, + -0.03951319679617882, + 0.00652135768905282, + 0.007624002639204264, + -0.0020092641934752464, + 0.0062623233534395695, + -0.003085655625909567, + 0.003598473034799099, + 0.0010195090435445309, + 0.0020022632088512182, + 0.007175943348556757, + 0.0023505589924752712, + -0.021268796175718307, + 0.0016872218111529946, + -0.01534601766616106, + 0.011873560957610607, + 0.01474393904209137, + 0.013679798692464828, + 0.020610710605978966, + 0.007000920362770557, + -0.009738280437886715, + 0.004711619578301907, + 0.009836293756961823, + -0.015402025543153286, + 0.013021712191402912, + 0.014757940545678139, + -0.016970232129096985, + -0.005502723623067141, + -0.022808998823165894, + 0.01771232858300209, + 0.014204868115484715, + -0.020232660695910454, + 0.02030267007648945, + 0.008170073851943016, + 0.001953256782144308, + -0.016690194606781006, + 0.012734674848616123, + -0.026547489687800407, + -0.0069379121996462345, + 0.006563363131135702, + -0.025637371465563774, + 0.014547912403941154, + -0.005842268001288176, + -0.0034742068964987993, + -0.011180469766259193, + 0.003118910128250718, + 0.007175943348556757, + 0.02107277140021324, + -0.0016102116787806153, + -0.02231893502175808, + -0.002621844643726945, + -0.0032729303929954767, + 0.00270235538482666, + -0.014421896077692509, + 0.01182455476373434, + 0.001993512036278844, + -0.010466376319527626, + -0.0073159621097147465, + 0.00422855606302619, + 0.019686589017510414, + -0.048082321882247925, + -0.0292358435690403, + 0.01622813381254673, + 0.012083589099347591, + -0.020652715116739273, + 0.010256348177790642, + 0.009241214953362942, + 0.015318013727664948, + 0.01933654211461544, + 0.0162421353161335, + 0.017250267788767815, + 0.007112935185432434, + 0.011544518172740936, + -0.01974259503185749, + -0.011362493969500065, + 0.006815396249294281, + 0.009024186991155148, + 0.018846478313207626, + 0.005383708048611879, + -0.02058270573616028, + 0.02825571596622467, + 0.006311330012977123, + 0.010669402778148651, + 0.009584260173141956, + 0.02013464830815792, + 0.021128777414560318, + 0.01393883302807808, + 0.014449900016188622, + -0.006468850653618574, + -0.01047337707132101, + -0.0063358331099152565, + 0.0035914722830057144, + -0.01963058114051819, + 0.0031311616767197847, + 0.005768758710473776, + 0.0021037766709923744, + 0.02797567844390869, + -0.0021755360066890717, + -0.02040068246424198, + -2.48313899646746e-5, + 0.0007359717856161296, + -0.007939043454825878, + 0.004648611415177584, + 0.0070114219561219215, + 0.012321620248258114, + 0.015023975633084774, + 0.015878086909651756, + 0.02420918270945549, + 0.0006077674333937466, + -0.006384839303791523, + 0.0033201866317540407, + 0.01461792178452015, + 0.0020547702442854643, + -0.001533201546408236, + -0.0014474403578788042, + 0.017264269292354584, + -0.029179837554693222, + -0.008744149468839169, + -0.011411500163376331, + 0.01074641291052103, + -0.0075609940104186535, + -0.006423344369977713, + 0.013931832276284695, + 0.009220212697982788, + 0.0009556256700307131, + 0.001393183134496212, + 0.014715935103595257, + -0.01419086568057537, + 0.002410066779702902, + -0.012552650645375252, + -0.00838010199368, + 0.003787497989833355, + 0.006671877112239599, + -0.01115946751087904, + -0.0002588152710814029, + -0.03055201657116413, + -0.031140094622969627, + 0.0006615869933739305, + -0.02002263255417347, + -0.013224738650023937, + 0.014491905458271503, + 0.006612369325011969, + -0.007897038012742996, + -0.012874692678451538, + -0.0003218235506210476, + -0.015738070011138916, + -0.00032357379677705467, + 0.017642319202423096, + 0.00791104044765234, + 0.003229174530133605, + -0.007007921580225229, + 0.0008589254575781524, + -0.004158546682447195, + -0.0007827904191799462, + 0.012650663033127785, + 0.007827029563486576, + 0.00798805058002472, + 0.002625345252454281, + 0.0051876818761229515, + 0.03284832090139389, + -0.0001850868429755792, + 0.016340147703886032, + -0.008737148717045784, + -0.013483772985637188, + -0.012223606929183006, + -0.015584048815071583, + 0.009654269553720951, + 0.01372180413454771, + -0.009080193936824799, + -0.010620396584272385, + -0.005331201013177633, + -0.005278693977743387, + 0.0045856027863919735, + 0.022010894492268562, + 0.00784803181886673, + 0.018440425395965576, + 0.027289588004350662, + 0.013182733207941055, + 0.01947656087577343, + 0.0013581785606220365, + 0.00886316504329443, + -0.009857296012341976, + -0.01933654211461544, + -0.0036754831671714783, + -0.008744149468839169, + 0.017824344336986542, + -0.0048691402189433575, + -0.005054664798080921, + -0.010935437865555286, + -0.007827029563486576, + -0.030215973034501076, + -0.00510717136785388, + 0.0014281878247857094, + 0.0011954071233049035, + 0.007967047393321991, + 0.0220388974994421, + 0.011530515737831593, + -0.011684536002576351, + 0.016830213367938995, + 0.013875824399292469, + 0.011229476891458035, + 0.0024468216579407454, + 0.0031311616767197847, + 0.009997314773499966, + -0.015416027046740055, + 0.0005276943556964397, + 0.009661270305514336, + 0.004690616857260466, + 0.001020384137518704, + 0.024979284033179283, + -0.013700801879167557, + 0.02324305661022663, + -0.021982889622449875, + -0.006510856095701456, + 0.0025080798659473658, + -0.007897038012742996, + -0.02202489599585533, + 0.011845557950437069, + -0.01674620248377323, + 0.004270561505109072, + 0.001928753568790853, + -0.04150145500898361, + -0.008016053587198257, + -0.009983312338590622, + -0.014827949926257133, + 0.02040068246424198, + 0.0023838134948164225, + 0.002865126822143793, + -0.0021195285953581333, + 0.029319854453206062, + 0.024237187579274178, + 0.011656532995402813, + -0.0014334385050460696, + 0.006118804682046175, + 0.0006068922812119126, + 0.033884454518556595, + -0.0018062375020235777, + 0.007490985095500946, + 0.006538859568536282, + -0.026071427389979362, + -0.007995051331818104, + 0.008443109691143036, + 0.02013464830815792, + -0.008933174423873425, + -0.008170073851943016, + -0.0104103684425354, + -0.014435898512601852, + 0.033324383199214935, + 0.018580442294478416, + -0.013063717633485794, + -0.006780391559004784, + -0.012972705997526646, + 0.003906513564288616, + 0.011530515737831593, + -0.007939043454825878, + -0.0194905623793602, + -0.01230761781334877, + 0.0179783646017313, + 0.020470691844820976, + -0.01413485873490572, + 0.022921014577150345, + 0.024041160941123962, + 0.005726752802729607, + 0.00683289859443903, + 0.009080193936824799, + 0.0010317607084289193, + 0.021030765026807785, + -0.017068244516849518, + 0.0014465651474893093, + 0.010942438617348671, + 0.016816211864352226, + 0.021828869357705116, + 0.011572521179914474, + -0.008835162036120892, + 0.006612369325011969, + -0.0019480061018839478, + 0.028325723484158516, + 0.004333569668233395, + -0.008828160353004932, + 0.039177149534225464, + 0.005296196322888136, + -0.026029422879219055, + 0.011509513482451439, + 0.01636815257370472, + -0.023019026964902878, + -0.0022700484842061996, + 0.015163993462920189, + -0.014197866432368755, + 0.014239871874451637, + 0.010571390390396118, + -0.017264269292354584, + -0.014827949926257133, + 0.012244610115885735, + 0.011285483837127686, + 0.007231950759887695, + 0.020862743258476257, + -0.009206210263073444, + 0.016522172838449478, + 0.01148851029574871, + 0.0033586916979402304, + 0.0075189885683357716, + 0.0272055771201849, + 0.008065060712397099, + -0.005467718932777643, + -0.012972705997526646, + -0.001579582691192627, + -0.004624107852578163, + 0.008093063719570637, + 0.03273630514740944, + -0.022794997319579124, + 0.00798805058002472, + 0.0002452509943395853, + -0.0020145149901509285, + 0.012426634319126606, + -0.005229687783867121, + 0.0011472759069874883, + 0.0025833395775407553, + 0.005705750081688166, + 0.002096775686368346, + 0.005768758710473776, + -0.013546781614422798, + -0.002326055895537138, + 0.025903405621647835, + -0.0011726542143151164, + -0.001928753568790853, + 0.00767300883308053, + -0.025651372969150543, + 0.008135070092976093, + -0.003136412473395467, + -0.010186339728534222, + -0.01919652335345745, + -0.0024713249877095222, + -0.02233293652534485, + 0.003622976364567876, + 0.03489258885383606, + -0.0004091162991244346, + -0.002443321282044053, + 0.0136587955057621, + 0.001723101595416665, + -0.010753413662314415, + 0.0032641792204231024, + 0.002539583947509527, + 0.0029858925845474005, + -0.005023160483688116, + 0.007925041951239109, + -0.006895906757563353, + 0.0017292273696511984, + 0.03634877875447273, + -0.012958703562617302, + -0.018076376989483833, + 0.004785129334777594, + -0.024797260761260986, + -0.0019200023962184787, + 0.03396846726536751, + 0.0016977231716737151, + 0.011600525118410587, + -0.017348280176520348, + 0.004928648006170988, + 0.007182944566011429, + 0.01020034123212099, + 0.018832476809620857, + -0.009857296012341976, + -0.0022157912608236074, + 0.010361362248659134, + -0.012013579718768597, + 0.010900433175265789, + 0.003920515533536673, + -0.010893432423472404, + 0.030496010556817055, + 0.007168942596763372, + 0.011719540692865849, + -0.0047536250203847885, + -0.010795419104397297, + -0.001142900320701301, + 0.007953045889735222, + 0.006213317159563303, + 0.008828160353004932, + 0.011040451936423779, + 0.01121547445654869, + 0.018230397254228592, + -0.003118910128250718, + 0.017908355221152306, + 0.005702249705791473, + -0.0009906302439048886, + -0.003997525665909052, + 0.019826607778668404, + 0.0003752055927179754, + 0.014225870370864868, + 0.026323461905121803, + -0.011131463572382927, + -0.006395340897142887, + 0.01326674409210682, + 0.027639634907245636, + -0.017264269292354584, + -0.017474297434091568, + -0.0017152255168184638, + -0.014981970191001892, + -0.01905650645494461, + -0.010375363752245903, + 0.003601973643526435, + -0.008702144026756287, + 0.0027076059486716986, + 0.030355991795659065, + 0.002410066779702902, + 0.01493996474891901, + -0.003745492547750473, + 0.005968284793198109, + -0.011033451184630394, + 0.009164204820990562, + 0.00015948971849866211, + -0.0033079348504543304, + -0.02717757411301136, + -0.0027303590904921293, + 0.004389577079564333, + -0.026407472789287567, + -0.0008401104714721441, + 0.012531647458672523, + 0.023999156430363655, + -0.007925041951239109, + -0.0008488615858368576, + -0.008114066906273365, + -0.011747544631361961, + -0.027499616146087646, + -0.009689274244010448, + -0.002977141411975026, + 0.0004896268947049975, + 0.00673138489946723, + -0.008233082480728626, + 0.014785944484174252, + 0.0067698899656534195, + 0.0030751542653888464, + -0.014288878999650478, + -0.027079559862613678, + -0.009353229776024818, + -0.012895695865154266, + 0.025777390226721764, + 0.015654059126973152, + -0.010795419104397297, + -0.010116330347955227, + -0.01493996474891901, + 0.010718408972024918, + -0.010193340480327606, + -0.006143307778984308, + 0.012391629628837109, + 0.004186550620943308, + -0.02611343376338482, + -0.010074324905872345, + -0.0013065467355772853, + 0.010221343487501144, + -0.024237187579274178, + 0.002483576536178589, + -0.0058632707223296165, + 0.0019252531928941607, + -0.0065458607859909534, + 0.017670324072241783, + 0.005817764904350042, + 0.0026621001306921244, + -0.021688852459192276, + -0.009437240660190582, + -0.012391629628837109, + -0.033212367445230484, + 0.012076588347554207, + 0.015416027046740055, + -0.011740543879568577, + -0.007189945317804813, + -0.01055038720369339, + 0.03984924033284187, + -0.017796339467167854, + 0.029795918613672256, + -0.004974153824150562, + 0.0014080600813031197, + -0.006384839303791523, + -0.0017126002348959446, + -0.0053031970746815205, + 0.000928497058339417, + 0.0021825369913131, + 0.012804683297872543, + 0.010039320215582848, + 0.01203458197414875, + -0.014323883689939976, + -0.009514250792562962, + 0.02310303784906864, + 0.001628589117899537, + -0.021562835201621056, + 0.005135175306349993, + -0.01358878705650568, + -0.017796339467167854, + 0.0008996182586997747, + 0.003724489826709032, + -0.01514999195933342, + 0.017656320706009865, + -0.010088326409459114, + -0.005096670240163803, + -0.005866771563887596, + 0.005530727095901966, + -0.0038225026801228523, + 0.019378548488020897, + -0.007778022903949022, + -0.011859559454023838, + 0.020526699721813202, + 0.007532990537583828, + 0.004281063098460436, + -0.009920304641127586, + 0.0031084087677299976, + -0.004935648757964373, + -0.02054070122539997, + 0.0051316749304533005, + -0.01811838150024414, + 0.015892090275883675, + 0.013000709004700184, + -0.011558519676327705, + -0.02635146491229534, + -0.002620094455778599, + 0.013651794753968716, + 0.012944702059030533, + -0.010669402778148651, + 0.01650817133486271, + 0.005331201013177633, + 0.007158441003412008, + 0.00022840502788312733, + -0.012790681794285774, + 0.0215208288282156, + -0.028787784278392792, + 0.009143202565610409, + -0.018748465925455093, + -0.016872217878699303, + -0.018720461055636406, + -0.005765257868915796, + 0.005436214618384838, + -0.04309766739606857, + -0.0012662914814427495, + 0.002606092719361186, + -0.00022709235781803727, + -0.005044163204729557, + -1.6025544027797878e-5, + -0.0012024081079289317, + -0.0038190020713955164, + -0.01702623814344406, + -0.01041737012565136, + 0.025049293413758278, + -0.020204655826091766, + -0.015276008285582066, + -0.005180681124329567, + -0.002770614344626665, + 0.017348280176520348, + 0.0009109947714023292, + -0.02230493351817131, + -0.00818407628685236, + -0.013007710687816143, + 0.008555124513804913, + -0.03326837345957756, + -0.01935054361820221, + 0.012139596045017242, + -0.005191182717680931, + 0.0019550069700926542, + -0.008870166726410389, + 0.0003843942831736058, + -0.006825897376984358, + 0.0013074219459667802, + -0.011418500915169716, + 0.020456690341234207, + 0.030215973034501076, + 0.015248005278408527, + 0.004767626989632845, + -0.03083205409348011, + -0.01223760936409235, + 0.02490927465260029, + -0.007137438282370567, + -0.009150203317403793, + 0.016438161954283714, + -0.0055447290651500225, + 0.0026393469888716936, + 0.007981049828231335, + 0.010046320967376232, + 0.0194905623793602, + 0.008737148717045784, + 0.016018105670809746, + 0.025217315182089806, + -0.017810340970754623, + 0.010641398839652538, + 0.013567783869802952, + 0.009367231279611588, + -0.011866560205817223, + 0.0037489929236471653, + -0.019112512469291687, + -0.019588574767112732, + 0.010186339728534222, + -2.6116715162061155e-5, + 0.0037979993503540754, + -0.001346802106127143, + -0.02364910952746868, + -0.006965916138142347, + -0.009563256986439228, + -0.0008641761378385127, + 0.02747161127626896, + -0.03242826461791992, + 0.0011805301764979959, + 0.005985787138342857, + 0.0039415182545781136, + 0.010459375567734241, + -0.01596209965646267, + -0.027359597384929657, + 0.020610710605978966, + -0.003274680580943823, + -0.004333569668233395, + -0.010753413662314415, + -0.00046774899237789214, + 0.011481509543955326, + 0.007158441003412008, + 0.013791813515126705, + 0.022220922634005547, + 3.5770328395301476e-5, + -0.0037979993503540754, + 0.013434766791760921, + -0.004141044337302446, + 0.01223060768097639, + 0.012629660777747631, + 0.007694011554121971, + -0.00585276959463954, + 0.010256348177790642, + 0.01947656087577343, + -0.013168731704354286, + 0.01358878705650568, + -0.01608811505138874, + 0.020484693348407745, + -0.021814867854118347, + 0.006699881050735712, + 0.008772153407335281, + 0.00892617367208004, + 0.01074641291052103, + 0.006517856847494841, + 0.022346938028931618, + -0.01662018522620201, + -0.006006789859384298, + -0.0179783646017313, + -0.016452163457870483, + 0.006325331516563892, + 0.007939043454825878, + 0.01891648769378662, + 0.0024748253636062145, + 0.0037909983657300472, + 0.0032239239662885666, + -0.01810437999665737, + -0.009857296012341976, + 0.012468639761209488, + 0.004655612166970968, + 0.00311190914362669, + 0.006342833861708641, + -0.023761123418807983, + -0.003622976364567876, + 0.007841031067073345, + 0.007371969521045685, + -0.004557599313557148, + -0.0050371624529361725, + -0.01211159210652113, + 0.027513617649674416, + -0.017376285046339035, + 0.004473588429391384, + -0.0011691537220031023, + 0.014631924219429493, + 0.008191077038645744, + -0.009598261676728725, + -0.011236477643251419, + -0.007112935185432434, + 0.009374232962727547, + 0.013644794002175331, + 0.005982286762446165, + -0.01607411354780197, + -0.013875824399292469, + 0.026477482169866562, + -0.011194472201168537, + -0.0008169198990799487, + 0.017782337963581085, + -0.016004104167222977, + -0.04122142121195793, + 0.007308960892260075, + -0.0023593101650476456, + -0.0003428263298701495, + 0.0116285290569067, + 0.011278483085334301, + -0.019700590521097183, + 0.01047337707132101, + -0.013931832276284695, + 0.01569606363773346, + 0.0010133832693099976, + -0.02705155685544014, + -0.0065458607859909534, + -0.019826607778668404, + 0.009283220395445824, + 0.007588997948914766, + 0.014561914838850498, + -0.028899800032377243, + 0.012475640513002872, + -0.019266532734036446, + 0.0039415182545781136, + 0.004890142939984798, + -0.012594656087458134, + 0.006398841273039579, + -0.010977443307638168, + -0.017656320706009865, + -0.01344876829534769, + 0.017390286549925804, + -0.0015034476527944207, + 0.004484089557081461, + -0.015262006781995296, + 0.00686790281906724, + -0.017096247524023056, + -0.00500915851444006, + 0.014064849354326725, + -0.013287747278809547, + 0.0007140939123928547, + 0.010620396584272385, + 0.013308749534189701, + 0.016886219382286072, + 0.0027933672536164522, + -0.0036159753799438477, + -0.004781628493219614, + -0.004715119954198599, + -0.0027548621874302626, + -0.011509513482451439, + -0.012069586664438248, + -0.009423239156603813, + -0.00031175973708741367, + -0.0038505063857883215, + 0.016592182219028473, + -0.0017047241562977433, + 0.0066543747670948505, + -0.008765152655541897, + 0.00011573396477615461, + 0.0054817209020257, + 0.0038715091068297625, + -0.0024468216579407454, + 0.03368842974305153, + -0.0008851788588799536, + -0.014869955368340015, + -0.00953525397926569, + 7.881505007389933e-5, + -0.013336753472685814, + -0.006804894655942917, + 0.019266532734036446, + -0.0009810039773583412, + 0.0035949726589024067, + 0.028633764013648033, + -0.0005206934874877334, + 0.00767300883308053, + 0.001070265774615109, + 0.01534601766616106, + -0.007925041951239109, + 0.018608447164297104, + -0.01972859352827072, + 0.014477903954684734, + 0.0155420433729887, + -0.015458032488822937, + -0.027275586500763893, + -0.005296196322888136, + 0.006668376736342907, + -0.04214554280042648, + 0.004935648757964373, + 0.011411500163376331, + 0.0021947885397821665, + -0.0006602742942050099, + -0.0011656532296910882, + 0.01188756339251995, + -0.0070324246771633625, + 0.021044766530394554, + -0.013679798692464828, + 0.007602999452501535, + -0.005789761431515217, + 0.004106040112674236, + -0.009115198627114296, + 0.009500249288976192, + -0.003889011451974511, + -0.017964361235499382, + 0.014015843160450459, + -0.0200086310505867, + -0.01677420549094677, + -0.005212185438722372, + -0.01062739733606577, + -0.014393892139196396, + -0.0035407154355198145, + 0.01571006514132023, + 0.002817870583385229, + 0.005747755523771048, + 0.009171205572783947, + -0.007743018213659525, + -0.014288878999650478, + -0.006118804682046175, + -0.024139173328876495, + 0.007039425428956747, + 0.018286405131220818, + 0.002138781128451228, + -0.007392972242087126, + -0.017628317698836327, + -0.011124462820589542, + -0.006461849436163902, + 0.008828160353004932, + -0.013777812011539936, + -0.022556966170668602, + -0.0029158834367990494, + 0.012069586664438248, + -0.017796339467167854, + 0.015570047311484814, + 0.019252531230449677, + -0.010347360745072365, + 0.005093169864267111, + 0.004743123427033424, + -0.013406762853264809, + 0.0009643767843954265, + -0.005548229441046715, + -0.01974259503185749, + 0.023887140676379204, + -0.002490577520802617, + 0.010249347425997257, + -0.031056083738803864, + 0.009633266367018223, + -0.013756808824837208, + 0.02689753659069538, + 0.0007635378860868514, + 0.014771942049264908, + 0.010326357558369637, + -0.01164253056049347, + 0.02178686484694481, + -0.0016627185977995396, + 0.012146596796810627, + 0.023341068997979164, + 0.022346938028931618, + -0.026141436770558357, + 0.010095327161252499, + -0.014029844664037228, + 0.007413974963128567, + -0.008408105932176113, + 0.008688142523169518, + 0.0022000393364578485, + 0.0033551910892128944, + -0.0029858925845474005, + -0.009717277251183987, + -0.00043143171933479607, + 0.016256136819720268, + 0.026169441640377045, + -0.0005863271071575582, + -0.004739623051136732, + -0.011089458130300045, + 0.010732411406934261, + -0.005044163204729557, + -0.011719540692865849, + -0.024307195097208023, + 0.017418289557099342, + 0.015177995897829533, + -0.00953525397926569, + -0.0019200023962184787, + 0.018566440790891647, + 0.010263349860906601, + 0.005646242294460535, + -0.022066902369260788, + 0.0023085535503923893, + -0.015037977136671543, + 0.00432656891644001, + -0.004519094247370958, + -0.029963940382003784, + 0.014078850857913494, + 0.008758151903748512, + 0.0024958280846476555, + -0.04609405994415283, + 0.008758151903748512, + -0.012055585160851479, + 0.03990524634718895, + 0.02744360826909542, + 0.014337885193526745, + 0.008156072348356247, + 0.013875824399292469, + -0.000296882790280506, + 0.005264692008495331, + 0.0005368830752559006, + -0.017376285046339035, + -0.005772259086370468, + 0.00767300883308053, + -0.003295683301985264, + -0.020078640431165695, + -0.015248005278408527, + -0.03587271645665169, + 0.01209759060293436, + 0.0023383074440062046, + 0.021744858473539352, + 0.0013205485884100199, + -0.013336753472685814, + -0.0036474796943366528, + -0.02216491475701332, + 0.03394046425819397, + 0.0012426633620634675, + 0.004389577079564333, + -0.0016767204506322742, + 0.016326146200299263, + -0.010592392645776272, + 0.0237751267850399, + -0.002534333150833845, + -0.02069472149014473, + 0.015023975633084774, + 0.002749611623585224, + 0.0011218974832445383, + 0.01176854781806469, + -0.016032107174396515, + -0.010053321719169617, + 0.008478114381432533, + -0.0023033027537167072, + 0.007060428149998188, + -0.0017826093826442957, + -0.005030161235481501, + 0.016312144696712494, + 0.0077080135233700275, + 0.02784966118633747, + -0.011747544631361961, + 0.00428806385025382, + 0.0009118699235841632, + -0.00865313783288002, + 0.006164310500025749, + 0.014687931165099144, + -0.016872217878699303, + 0.01379881426692009, + 0.017376285046339035, + 0.016004104167222977, + -0.003794498974457383, + 0.01678820699453354, + -0.009206210263073444, + 0.01460392028093338, + -0.03881310299038887, + 0.00032269867369905114, + 0.00973127968609333, + 0.02920784056186676, + -0.014449900016188622, + 0.032232239842414856, + 0.007960046641528606, + -0.009780285879969597, + -0.009437240660190582, + 0.008569126948714256, + -0.007694011554121971, + -0.01865045167505741, + -0.02044268697500229, + 0.0009162454516626894, + -0.007638004142791033, + -0.015374021604657173, + -0.014967967756092548, + -0.01921052671968937, + 0.004764126613736153, + 0.020498694851994514, + 0.011208473704755306, + 0.0069169094786047935, + -0.007063928991556168, + -8.231551328208297e-5, + 0.025861401110887527, + 0.016606183722615242, + 0.014589918777346611, + 0.01170553918927908, + 0.0023348070681095123, + 0.01674620248377323, + 0.0043755751103162766, + 0.006923910230398178, + 0.01664818823337555, + -0.0011962823336943984, + -0.005915777757763863, + -0.002837123116478324, + -0.00608730036765337, + 0.007137438282370567, + -0.02164684608578682, + 0.015444030985236168, + 0.014106854796409607, + -0.012356624938547611, + 0.0035267136991024017, + 6.191439024405554e-5, + 0.00595078244805336, + 0.022374941036105156, + -0.008100065402686596, + 0.004897143691778183, + 0.024041160941123962, + 0.01156552042812109, + -0.021702853962779045, + 0.01677420549094677, + -0.002606092719361186, + -0.009213211014866829, + 0.023635108023881912, + -0.006300828419625759, + 0.011075456626713276, + 0.006279825698584318, + -0.010725410655140877, + -0.011649531312286854, + 0.013273744843900204, + 0.005670745391398668, + 0.014771942049264908, + 0.02973991073668003, + 0.006500354502350092, + 0.0075819967314600945, + -0.0011752794962376356, + 0.026309458538889885, + 0.0194905623793602, + 0.01006732415407896, + 0.005646242294460535, + -0.005936780478805304, + -0.010851426981389523, + -0.015220001339912415, + -0.0069589149206876755, + 0.006013790611177683, + -0.0013424265198409557, + 0.0002931635535787791, + -0.0018097379943355918, + 0.004578602034598589, + -0.020988760516047478, + -0.02219291776418686, + -0.0054712193086743355, + -0.0011315237497910857, + -0.012426634319126606, + 0.03438851982355118, + 0.0030086454935371876, + -0.0014290629187598825, + -0.017824344336986542, + -0.004841136746108532, + 0.0035179625265300274, + 0.023719118908047676, + -0.020092641934752464, + 0.009493248537182808, + -0.003510961541905999, + 0.020372679457068443, + -0.0009363731369376183, + -0.005254190880805254, + 0.0029613894876092672, + -0.024153176695108414, + 0.010424370877444744, + -0.010102327913045883, + 0.011516514234244823, + 0.014519909396767616, + 0.002137030940502882, + -0.024265190586447716, + -0.023859137669205666, + -0.008562126196920872, + -0.012181601487100124, + -0.006836398970335722, + 0.02286500670015812, + 0.002585089998319745, + -0.01691422425210476, + 0.004536596592515707, + 0.0002445946738589555, + 0.003980023320764303, + 0.01582208089530468, + -0.002161534270271659, + -0.026449477300047874, + 0.0002496265806257725, + -0.01034035999327898, + 0.019392549991607666, + -0.01378481276333332, + 0.020106643438339233, + 0.008688142523169518, + -0.012279614806175232, + -0.023019026964902878, + 0.0033201866317540407, + 0.012181601487100124, + -0.0038400047924369574, + -0.01238462794572115, + -6.268011929932982e-5, + -0.0021685350220650434, + -0.0005071291816420853, + -0.008268087171018124, + 0.009850295260548592, + 0.009353229776024818, + -0.0063148303888738155, + -0.0002640659804455936, + -0.011957571841776371, + -0.009129200130701065, + 0.022094905376434326, + -0.018566440790891647, + -0.009290221147239208, + 0.04516993835568428, + 0.010984444059431553, + 0.011131463572382927, + 0.02625345252454281, + -0.0007854157593101263, + -0.0031696667429059744, + 0.007035925053060055, + -0.006010290235280991, + 0.02217891626060009, + -0.013378758914768696, + -0.0021685350220650434, + 0.015402025543153286, + 0.008611132390797138, + 0.015780074521899223, + -0.0008212954853661358, + -0.000953875423874706, + 0.0075399912893772125, + 0.016606183722615242, + 0.0011560269631445408, + 0.016732199117541313, + -0.014519909396767616, + 0.0182724017649889, + -0.01136949472129345, + 0.017642319202423096, + -0.010025317780673504, + 0.007511987816542387, + -0.005649742670357227, + -0.013777812011539936, + 0.00018016430840361863, + -0.012678666971623898, + -0.004088537767529488, + -0.016144122928380966, + 0.01866445317864418, + -0.022472955286502838, + 0.017628317698836327, + -0.012853690423071384, + 0.03461255133152008, + -0.008548123762011528, + -0.01433088444173336, + -0.01495396625250578, + 0.004904144909232855, + 0.004330069292336702, + -0.017488298937678337, + 0.00015051978698465973, + 0.018832476809620857, + 0.023999156430363655, + 0.00912219937890768, + -0.014253874309360981, + -0.007378970272839069, + -0.01594809629023075, + 0.0028948807157576084, + -0.0031766677275300026, + -0.012895695865154266, + 0.00918520800769329, + -6.191439024405554e-5, + 0.0027828658930957317, + 0.0015297011705115438, + -0.028031686320900917, + 0.011075456626713276, + 0.019112512469291687, + 0.002831872319802642, + 0.008177075535058975, + -0.0010860178153961897, + -0.015037977136671543, + 0.004998657386749983, + -0.006199315190315247, + -0.00720394728705287, + 0.023733120411634445, + 0.04189350828528404, + 0.021968888118863106, + 0.01041737012565136, + -0.010361362248659134, + 0.0037804970052093267, + -0.02759762853384018, + -0.02097475714981556, + 0.0035739699378609657, + -0.013714803382754326, + -0.0022945518139749765, + 0.0010527634294703603, + -0.0067908926866948605, + 0.009416238404810429, + 0.011649531312286854, + -0.002210540696978569, + 0.023985153064131737, + 0.00675588846206665, + -0.006143307778984308, + 0.0004646861052606255, + 0.013231739401817322, + -0.0017694826237857342, + 0.022640977054834366, + -0.004123541992157698, + -0.0028721275739371777, + -0.008016053587198257, + -0.0046801152639091015, + 0.010900433175265789, + 0.0044910903088748455, + 0.005439715459942818, + 0.004197051748633385, + 0.006759388837963343, + -0.00783403031527996, + -0.043209683150053024, + 0.002858125837519765, + 0.007427976466715336, + -0.004421081393957138, + 0.01692822575569153, + 0.0038190020713955164, + 0.002212290884926915, + -0.015612052753567696, + -0.024027159437537193, + -0.007778022903949022, + 0.018482429906725883, + -0.013077719137072563, + -0.005534227471798658, + 0.016830213367938995, + -0.006608868949115276, + 0.025875402614474297, + -0.011173469014465809, + 0.010494380258023739, + 0.019266532734036446, + 0.01905650645494461, + -0.021044766530394554, + -0.014309881255030632, + 0.005600736476480961, + 0.004218054469674826, + 0.0032676795963197947, + -0.033352386206388474, + -0.014869955368340015, + 0.008919172920286655, + -0.002005763817578554, + -0.00019985440303571522, + 0.00831709336489439, + -0.010816422291100025, + -0.006122305057942867, + -0.0015865835594013333, + -0.004589103627949953, + 0.015500037930905819, + 0.017796339467167854, + -0.013875824399292469, + 0.032820314168930054, + -0.0064968541264534, + -0.008429108187556267, + -0.016816211864352226, + -0.00038286283961497247, + -0.003234425326809287, + -0.018552439287304878, + 0.00534520298242569, + -0.0025430843234062195, + -0.014351886697113514, + -0.004158546682447195, + -0.027793655171990395, + 0.01851043291389942, + -0.00028703775024041533, + 0.0032484270632267, + 0.009500249288976192, + -0.0019340042490512133, + -0.010795419104397297, + 0.021394813433289528, + 0.01413485873490572, + 0.013763809576630592, + -0.003425200469791889, + 0.00395552022382617, + 0.0138618228957057, + 0.012363625690340996, + -0.010228345170617104, + -0.0029911433812230825, + -0.012300617061555386, + 0.01407185010612011, + 0.014869955368340015, + -0.00353371468372643, + 0.008604131639003754, + -0.009549255482852459, + 0.02166084758937359, + -0.0016548426356166601, + -0.03214822709560394, + 0.003316686023026705, + -0.01908450946211815, + -0.01607411354780197, + 0.011264480650424957, + -0.004337070044130087, + 0.009787286631762981, + -0.019042503088712692, + 0.02864776737987995, + 0.024573231115937233, + -0.0011726542143151164, + -0.006066297646611929, + -0.004900644533336163, + 0.006636872421950102, + 0.008954177610576153, + 0.0073369648307561874, + 0.0075819967314600945, + 0.017082246020436287, + 0.00061651854775846, + -0.01908450946211815, + -0.0012540399329736829, + 0.0012724172556772828, + 0.006454848684370518, + -0.00973127968609333, + -0.0053031970746815205, + 0.00334643991664052, + -0.01238462794572115, + 0.005744255147874355, + 0.014757940545678139, + 0.012412631884217262, + -0.013819817453622818, + 0.0009775034850463271, + -0.0028073692228645086, + 0.018874481320381165, + -0.02623944915831089, + -0.012125594541430473, + 0.023593101650476456, + 0.013217737898230553, + 0.006944912951439619, + -0.017614316195249557, + 0.010459375567734241, + -0.014120856299996376, + -0.008597129955887794, + 0.007252953480929136, + 0.014393892139196396, + -0.003913514781743288, + -0.007722015492618084, + -0.005859770346432924, + -0.01135549321770668, + 0.009549255482852459, + 0.017656320706009865, + -0.00659486697986722, + -0.0001049591155606322, + -0.014883956871926785, + -0.001814988674595952, + 0.0038750094827264547, + 0.0005696999141946435, + -0.00652135768905282, + 0.008219080977141857, + 0.010725410655140877, + 0.004484089557081461, + -0.002719857729971409, + 0.006461849436163902, + -0.008114066906273365, + -0.012636661529541016, + -0.010893432423472404, + 0.005023160483688116, + 0.004333569668233395, + 0.015388023108243942, + 0.012559651397168636, + 0.040241289883852005, + 0.009353229776024818, + -0.004624107852578163, + -0.02058270573616028, + 0.007063928991556168, + 0.01691422425210476, + -0.002410066779702902, + 0.02962789498269558, + 0.009815290570259094, + -0.022416947409510612, + 0.03156014904379845, + -0.004295064602047205, + 0.018174389377236366, + 0.0009258717182092369, + 0.0034742068964987993, + 0.0006580865010619164, + 0.009899301454424858, + -0.009031187742948532, + 0.0032186731696128845, + -0.017768336459994316, + 0.007743018213659525, + -0.008471113629639149, + 0.0015883338637650013, + -0.028493747115135193, + -0.000710155873093754, + 0.013427765108644962, + 0.005100170616060495, + -0.008324094116687775, + -0.002165034646168351 + ], + "ee6324cb-cfa3-4721-974a-db01834600a4": [ + -0.014731970615684986, + -0.01590324006974697, + -0.0179594699293375, + 0.03742857649922371, + -0.045445267111063004, + -0.010053398087620735, + -0.01431551855057478, + 0.0037968659307807684, + -0.013306926004588604, + 0.042816415429115295, + -0.008075254037976265, + 0.016606001183390617, + 0.021304095163941383, + -0.0077173663303256035, + 0.000660465972032398, + -0.0023767014499753714, + 0.0013152383035048842, + 0.025169285014271736, + -0.006422462407499552, + -0.012103120796382427, + 0.04804808646440506, + -0.024922017008066177, + -0.0068779559805989265, + 0.0011672028340399265, + 0.02745976857841015, + -0.031155774369835854, + -0.01257813535630703, + 0.0031884564086794853, + -0.058719657361507416, + -0.013599743135273457, + 0.005810799077153206, + 0.002088764449581504, + -0.005885630380362272, + 0.020132824778556824, + 0.005130812060087919, + -0.046928875148296356, + -0.006305335555225611, + -0.001411217381246388, + 0.008329029195010662, + 0.003089223988354206, + -0.019000597298145294, + 0.015161436051130295, + -0.014094279147684574, + 0.003370654070749879, + -0.017985496670007706, + -0.000703575205989182, + -0.028735151514410973, + -0.020653389394283295, + 0.00023120376863516867, + -0.018362905830144882, + 0.013794954866170883, + 0.023087028414011, + -0.019781444221735, + -0.00959139782935381, + 0.05465925484895706, + -0.003725288435816765, + -3.848312553600408e-5, + 0.06829804182052612, + -0.0076067461632192135, + -0.04791794717311859, + -0.0062337578274309635, + -0.011764753609895706, + 0.028110474348068237, + 0.0025654060300439596, + 0.01945609226822853, + -0.0014624603791162372, + -0.015968311578035355, + 0.03435724601149559, + -0.011315766721963882, + 0.004297909326851368, + -0.0060320389457046986, + 0.02438843809068203, + -0.06376913189888, + 0.012226754799485207, + 0.006139405537396669, + 0.010482864454388618, + 0.025143256410956383, + -0.011198639869689941, + 0.009695510379970074, + -0.008244437165558338, + 0.010873286984860897, + 0.0043141767382621765, + 0.027928275987505913, + 0.04224379360675812, + 0.033498313277959824, + 0.0027036808896809816, + -0.012070585042238235, + -0.038417648524045944, + -0.016124479472637177, + -0.04180131480097771, + 0.008673902601003647, + 0.04044784978032112, + -0.017022453248500824, + -0.002981857629492879, + -0.007496126461774111, + -0.012936023063957691, + -0.016202565282583237, + -0.010137990117073059, + 0.021668490022420883, + -0.007893056608736515, + 0.014966224320232868, + 0.023919930681586266, + -0.0007784063345752656, + 0.012012021616101265, + 0.005368319805711508, + -0.018805386498570442, + 0.009675988927483559, + 0.03289966657757759, + -0.034018877893686295, + 0.007626267150044441, + 0.011035963892936707, + -0.04718915745615959, + 0.009422214701771736, + -0.010749652981758118, + -0.027850192040205002, + 0.0011379211209714413, + -0.015890225768089294, + -0.03750665858387947, + -0.008856100961565971, + -0.04312875494360924, + 0.02043214999139309, + -0.02066640369594097, + -0.00018860289128497243, + -0.009780102409422398, + -0.004141740035265684, + 0.025468610227108, + -0.00032840287894941866, + 0.009181452915072441, + 0.037324462085962296, + 0.0034259639214724302, + -0.016124479472637177, + -0.03727240487933159, + -0.003072956344112754, + -0.04643433913588524, + 0.013860025443136692, + 0.020601334050297737, + 0.014666900038719177, + 0.05052076652646065, + -0.01760808750987053, + 0.03425313159823418, + -0.0070796748623251915, + -0.00959139782935381, + -0.044352080672979355, + 0.014094279147684574, + 0.015213492326438427, + 0.0007296034600585699, + -0.02673097886145115, + 0.020861614495515823, + -0.03448738530278206, + 0.014185377396643162, + -0.03823544830083847, + 0.00012302398681640625, + -0.030739324167370796, + 0.0028761178255081177, + 0.032847609370946884, + 0.016775185242295265, + -0.005879123229533434, + 0.0249090027064085, + 0.015187463723123074, + 0.058407317847013474, + 0.03178045153617859, + -0.03891218453645706, + -0.010398272424936295, + -0.00021615620062220842, + 0.03391476720571518, + 0.033159948885440826, + 0.06543493270874023, + 0.018519075587391853, + 0.0019065667875111103, + 0.011257203295826912, + 0.004421543329954147, + -0.020080769434571266, + 0.060541629791259766, + 0.013912081718444824, + 0.027511823922395706, + -0.027069345116615295, + 0.049479637295007706, + 0.020809559151530266, + 0.04682476073503494, + -0.032483212649822235, + -0.032613355666399, + -0.03872998431324959, + 0.03690801188349724, + -0.010573962703347206, + -0.04182734340429306, + 0.010209567844867706, + -0.006214236840605736, + 0.021668490022420883, + -0.00151939713396132, + 0.008927677758038044, + -0.012005514465272427, + -0.013820982538163662, + 0.004912825766950846, + 0.01340453140437603, + -0.04026564955711365, + -0.04841248318552971, + 0.006578631699085236, + 0.0015600662445649505, + 0.002584927249699831, + 0.04950566589832306, + 0.0028419557493180037, + 0.00045549377682618797, + -0.014289490878582, + 0.04437810927629471, + -0.029724223539233208, + 0.028891319409012794, + -0.015408704057335854, + -0.06012517958879471, + 0.013066164217889309, + -0.036439504474401474, + 0.03964097425341606, + -0.03677786886692047, + 0.03638744726777077, + 0.024726806208491325, + -0.01395112369209528, + 0.010137990117073059, + -0.008693424053490162, + 0.02329525351524353, + 0.0035073021426796913, + -0.019612260162830353, + -0.0051275584846735, + 0.00918796006590128, + 0.0034715132787823677, + 0.010190046392381191, + -0.03568468615412712, + -0.0009126143413595855, + -0.037324462085962296, + 0.02296990156173706, + -0.018024539574980736, + -0.010242102667689323, + 0.04474250227212906, + -0.027511823922395706, + 0.0702761858701706, + -0.03378462418913841, + 0.002015559934079647, + -0.0033478792756795883, + 0.01435456145554781, + 0.008127310313284397, + -0.02688714675605297, + -0.022917844355106354, + -0.011068498715758324, + -0.0017422636738047004, + -0.020861614495515823, + -0.012363403104245663, + -0.034825753420591354, + 0.009539341554045677, + 0.010346216149628162, + 0.05632505938410759, + -0.013469601981341839, + -0.004450825043022633, + -0.009578383527696133, + 0.031233860179781914, + -0.0019098203629255295, + 0.012415459379553795, + -0.009396186098456383, + 0.019807472825050354, + 0.031962648034095764, + -0.05398251861333847, + -0.0013778686989098787, + 0.02079654484987259, + 0.015278562903404236, + -0.0038521760143339634, + 0.001368108089081943, + -0.001255861483514309, + 0.035476457327604294, + -0.04849056527018547, + 0.03133797273039818, + -0.031103719025850296, + 0.01989857107400894, + 0.05918816477060318, + -0.0020513487979769707, + -0.02632754109799862, + -0.01914375275373459, + 0.0541907474398613, + -0.008348550647497177, + -0.006689251400530338, + 0.006481025833636522, + 0.016814228147268295, + 0.03846970200538635, + 0.014888139441609383, + -0.023711705580353737, + -0.010528413578867912, + 0.004161261022090912, + 0.011231175623834133, + 0.02467474900186062, + 0.0053878407925367355, + -0.04008345305919647, + -0.0061231376603245735, + -0.021980827674269676, + -0.0025231102481484413, + -0.003274674993008375, + -0.027954304590821266, + 0.02241029404103756, + 0.04242599382996559, + 0.0006734800990670919, + 0.01998966932296753, + -0.025624778121709824, + -0.01322233397513628, + -0.0008166352636180818, + -0.006464758422225714, + 0.0004575272323563695, + -0.010033877566456795, + 0.007580718025565147, + -0.04125472158193588, + 0.040473874658346176, + -0.006943026557564735, + 0.03180648013949394, + 0.059344332665205, + -0.035528514534235, + 0.027850192040205002, + 0.015877211466431618, + -0.0008015877101570368, + -0.03558057174086571, + -0.007431055884808302, + -0.023880887776613235, + 0.008699931204319, + -0.06319651007652283, + 0.015044309198856354, + 0.004662304185330868, + -0.04242599382996559, + -0.016293663531541824, + -0.00034243371919728816, + -0.06512259691953659, + 0.020601334050297737, + 0.05684562399983406, + -0.04430002346634865, + 0.03901629522442818, + -0.01958623342216015, + -0.020523248240351677, + 0.012233261950314045, + -0.05663739889860153, + 0.02293085865676403, + -0.01716560870409012, + 0.005719700362533331, + -0.01922183856368065, + -0.015512816607952118, + -0.052394799888134, + -0.021252037957310677, + 0.0020920177921652794, + -0.013560700230300426, + -0.023594578728079796, + -0.011296246200799942, + 0.021017784252762794, + -0.011406865902245045, + -0.013677828013896942, + -0.024922017008066177, + 0.0026207161135971546, + 0.005622094497084618, + 0.008621846325695515, + -0.006188208237290382, + 0.000785726762842387, + 0.014341547153890133, + 0.02709537371993065, + -0.005742475390434265, + 0.033212002366781235, + -0.02915160171687603, + -0.0020822572987526655, + -0.0010126603301614523, + -0.0030583154875785112, + -0.012844924814999104, + -0.005940940231084824, + -0.04914127290248871, + -0.025859033688902855, + -0.03719432279467583, + -0.02022392489016056, + 0.016749156638979912, + 0.002023693872615695, + 0.0003306396829430014, + -0.011029456742107868, + 0.010268131271004677, + -0.042295850813388824, + -0.009337622672319412, + -0.02615835703909397, + -0.043545205146074295, + -0.015695014968514442, + -0.01712656579911709, + 0.036257304251194, + -0.02054927684366703, + 0.002391342306509614, + 0.017295749858021736, + 0.010736639611423016, + -0.015538845211267471, + -0.03172839432954788, + 0.029724223539233208, + 0.013599743135273457, + 0.013807968236505985, + -0.018636202439665794, + 0.013085685670375824, + -0.027954304590821266, + 0.006409448105841875, + 0.0032177381217479706, + -0.011719204485416412, + -0.017048481851816177, + 0.037402547895908356, + -0.00827697291970253, + -0.017595075070858, + 0.0015755204949527979, + -0.015981324017047882, + 0.020718460902571678, + -0.01715259440243244, + -0.03469561040401459, + -0.021707532927393913, + -0.007008097134530544, + 0.011179118417203426, + 0.007821478880941868, + -0.01582515612244606, + 0.020054740831255913, + -0.014510730281472206, + 0.024935031309723854, + 0.008407114073634148, + 0.009884214960038662, + 0.0028809981886297464, + 0.029984505847096443, + 0.016671072691679, + 0.03318597748875618, + 0.022163026034832, + -0.010515399277210236, + 0.07194198668003082, + 0.0011615091934800148, + 0.012343881651759148, + 0.017894398421049118, + 0.030947549268603325, + -0.013573714531958103, + 0.02083558775484562, + -0.0010777307907119393, + 0.012421966530382633, + -0.014810054562985897, + 0.0023148844484239817, + -0.013105207122862339, + -0.013625770807266235, + 0.04250407591462135, + 0.05976078286767006, + -0.007658802438527346, + -0.0014787280233576894, + -0.0263665821403265, + -0.018545104190707207, + 0.03511206433176994, + 0.007040632423013449, + -0.009526327252388, + -0.010541427880525589, + 0.008738973177969456, + 0.006923505570739508, + 0.00851773377507925, + -0.01257813535630703, + -0.04206159710884094, + -0.010092440992593765, + -0.034070935100317, + 0.037532687187194824, + 0.024974074214696884, + -0.027121400460600853, + -0.011088020168244839, + 0.002672772388905287, + -0.09099464118480682, + -0.008485198020935059, + -0.006721786689013243, + 0.02373773232102394, + 0.010749652981758118, + -0.004275134298950434, + 0.01901361159980297, + -0.02062736079096794, + -0.012975065968930721, + 0.018753329291939735, + 0.038053251802921295, + -0.03053109720349312, + 0.022462351247668266, + -0.02479187585413456, + -0.010788695886731148, + -0.0033543864265084267, + 0.00017752057465258986, + 0.02224110998213291, + -0.03404490649700165, + -0.011946951039135456, + -0.055335987359285355, + 0.04078621417284012, + -0.007834493182599545, + -0.016970396041870117, + -0.014289490878582, + -0.016085438430309296, + -0.017256706953048706, + -0.02552066557109356, + -0.02596314623951912, + 0.019768429920077324, + 0.0032258720602840185, + -0.03144208341836929, + 0.00348778092302382, + -0.01699642464518547, + -0.0432068407535553, + -0.01279937569051981, + 0.023425394669175148, + -0.02951599657535553, + 0.032639384269714355, + 0.03633539006114006, + -0.023282239213585854, + 0.040551960468292236, + -0.027511823922395706, + -0.020497219637036324, + 0.009513312950730324, + -0.04016153886914253, + -0.01615050807595253, + -0.013534672558307648, + 0.02200685627758503, + -0.0041059511713683605, + 0.003767584217712283, + 0.007118717301636934, + 0.0034422315657138824, + 0.007463591173291206, + -0.013137741945683956, + 0.0052284179255366325, + 0.01780330017209053, + -0.02022392489016056, + -0.05367018282413483, + 0.013469601981341839, + -0.02870912291109562, + 0.020171867683529854, + 0.013651799410581589, + 0.024687763303518295, + -0.013781940564513206, + 0.0050429669208824635, + 0.01801152527332306, + 0.00703412527218461, + -0.021291080862283707, + 0.0008939065737649798, + -0.010710611008107662, + -0.01607242412865162, + -0.012909995391964912, + 0.017412876710295677, + 0.005931179970502853, + -0.025338469073176384, + 0.04591377452015877, + -0.054607197642326355, + -0.01626763492822647, + -0.0035073021426796913, + -0.03800119459629059, + 0.029047489166259766, + 0.02980230748653412, + 0.01958623342216015, + -0.007541675586253405, + -0.007372492458671331, + 0.015955297276377678, + -0.005742475390434265, + 0.0014177244156599045, + 0.016462847590446472, + 0.03313392028212547, + -0.004255613312125206, + 0.016475860029459, + 0.01562994346022606, + 0.028761178255081177, + -0.0023506733123213053, + -0.03443533182144165, + 0.04411782696843147, + -0.039510831236839294, + 0.01399016659706831, + -0.012168191373348236, + -0.01447168830782175, + -0.0024417720269411802, + -0.001644657924771309, + -0.024961059913039207, + 0.008394099771976471, + -0.006272800266742706, + -0.008712945505976677, + 0.012324360199272633, + 0.014614843763411045, + 0.011289739049971104, + 0.013977152295410633, + -0.012012021616101265, + -0.00946776382625103, + -0.017217665910720825, + 0.025273397564888, + 0.0004721681179944426, + 0.019052654504776, + 0.034096963703632355, + 0.013807968236505985, + 0.022228097543120384, + 0.02385486103594303, + 0.005583052523434162, + 0.010827737860381603, + 0.028396783396601677, + 0.008751987479627132, + 0.0016072423895820975, + -0.018597161397337914, + 0.039667002856731415, + -0.011081513017416, + 0.005134065635502338, + -0.02475283294916153, + -0.0002873271005228162, + 0.015330619178712368, + -0.028318699449300766, + -0.013794954866170883, + -0.005221910774707794, + 0.023711705580353737, + 0.004558191169053316, + 0.0033478792756795883, + -0.004070162307471037, + 0.02269660495221615, + -0.021369164809584618, + 0.028683094307780266, + 0.02248837798833847, + 0.023074014112353325, + 0.006754321977496147, + 0.009083847515285015, + 0.02066640369594097, + -0.005735968239605427, + 0.0028891318943351507, + -0.00803621206432581, + -0.00918796006590128, + 0.0033771609887480736, + 0.010626018978655338, + 0.0017764257499948144, + -0.011198639869689941, + 0.029411884024739265, + -0.007281393278390169, + 0.012571628205478191, + 0.010866779834032059, + -0.021551363170146942, + 0.008621846325695515, + -0.005439897067844868, + -0.006019025109708309, + 0.01680121384561062, + -0.007541675586253405, + 0.033342145383358, + 0.023060999810695648, + -0.04783986136317253, + 0.04815220087766647, + -0.029776278883218765, + 0.03144208341836929, + 0.018961556255817413, + -0.024817904457449913, + -0.004327191039919853, + -0.008986241184175014, + -0.018219752237200737, + 0.0010891181882470846, + -0.03690801188349724, + 0.012018528766930103, + 0.004463838879019022, + 0.005104783922433853, + -0.007066660560667515, + -0.011211654171347618, + 0.007040632423013449, + -0.0014771012356504798, + -0.004122218582779169, + -0.0006909677758812904, + 0.013072671368718147, + -0.007372492458671331, + 0.055335987359285355, + -0.008498212322592735, + 0.029047489166259766, + -0.0074050272814929485, + -0.0011330407578498125, + 0.023191140964627266, + 0.033368173986673355, + -0.02304798550903797, + 0.03344625607132912, + -0.00864136777818203, + 0.013027122244238853, + 0.03342023119330406, + -0.008140324614942074, + -0.006565617397427559, + 0.009662975557148457, + 0.023321282118558884, + 0.01395112369209528, + 0.023828832432627678, + -0.03318597748875618, + 0.02277468889951706, + -0.01395112369209528, + 0.026067258790135384, + -0.015929268673062325, + 0.017933441326022148, + 0.013677828013896942, + 0.012558613903820515, + 0.00840060692280531, + 0.021694518625736237, + 0.004854262340813875, + -0.008628353476524353, + -0.006949533708393574, + 0.015356647782027721, + 0.004001838155090809, + 0.02269660495221615, + 0.004141740035265684, + 0.0041547538712620735, + -0.030947549268603325, + -0.030947549268603325, + -0.033576399087905884, + -0.029177630320191383, + 0.016970396041870117, + -0.022670576348900795, + -0.012012021616101265, + -0.01755603216588497, + 0.035190150141716, + -0.04666859284043312, + 0.016749156638979912, + -0.012343881651759148, + 0.003933514002710581, + 0.0006527388468384743, + 0.01784234307706356, + -0.00715775927528739, + -0.011894894763827324, + 0.007749901153147221, + -0.01172571163624525, + 0.026431653648614883, + 0.013378502801060677, + -0.0009866320760920644, + 0.00418078200891614, + 0.030505068600177765, + -0.04219174012541771, + 0.04711107164621353, + -0.013781940564513206, + -0.02043214999139309, + -0.014679914340376854, + -0.00529999565333128, + 0.006409448105841875, + -0.017022453248500824, + -0.0075156474485993385, + 0.000828835996799171, + 0.03331611678004265, + -0.004486613906919956, + -0.007092688698321581, + -0.020861614495515823, + 0.014406617730855942, + -0.03154619783163071, + 0.035346318036317825, + -0.009799623861908913, + 0.004340204875916243, + 0.026301512494683266, + -0.02277468889951706, + -0.02196781523525715, + 0.014927182346582413, + -0.012753825634717941, + 0.0016048022080212831, + 0.0001005034864647314, + 0.0006161367055028677, + 0.028839264065027237, + -0.009233510121703148, + 0.0065103075467050076, + -0.004857515916228294, + 0.0006787671009078622, + -0.018362905830144882, + 0.006936519406735897, + 0.01643681898713112, + -0.008348550647497177, + -0.0289433766156435, + 0.013873038813471794, + 0.011914416216313839, + 0.018232764676213264, + -0.028110474348068237, + 0.03427916020154953, + -0.01047635730355978, + 0.039953310042619705, + -0.009825651533901691, + -0.0026467442512512207, + 0.011042471043765545, + 0.04182734340429306, + -0.0030192730482667685, + 0.034903839230537415, + 0.01820673793554306, + -0.012389430776238441, + -0.001151748583652079, + 0.008550268597900867, + 0.0038131335750222206, + -0.02083558775484562, + 0.05627300217747688, + -0.010385258123278618, + -0.011920923367142677, + -0.012714783661067486, + -0.008550268597900867, + -0.009994834661483765, + 0.0015608796384185553, + 0.011823317036032677, + -0.0017325031803920865, + 0.02552066557109356, + -0.005124304909259081, + 0.025273397564888, + 0.037532687187194824, + 0.015408704057335854, + 0.0047924453392624855, + 0.00577501067891717, + -0.029776278883218765, + 0.015642957761883736, + -0.013925096020102501, + -0.04656447842717171, + 0.00977359525859356, + -0.0011273471172899008, + -0.058563485741615295, + 0.009415707550942898, + -0.044872645288705826, + 0.025273397564888, + -0.03839161992073059, + 0.032483212649822235, + -0.006695758551359177, + 0.017868369817733765, + -0.0019683837890625, + 0.009597904980182648, + 0.009923257865011692, + 0.0028500896878540516, + 0.0020041726529598236, + 0.04070812836289406, + -0.03105166181921959, + 0.010938357561826706, + 0.006949533708393574, + -0.02264454774558544, + 0.0010720371501520276, + -0.00289238546974957, + -0.02310004271566868, + 0.030426984652876854, + 0.026171371340751648, + -0.008862607181072235, + -0.00470460020005703, + 0.022267138585448265, + -0.018076596781611443, + -0.03024478815495968, + -0.010268131271004677, + 0.01728273555636406, + 0.03201470524072647, + -0.005534249357879162, + 0.024843933060765266, + -0.018037553876638412, + 0.012480529956519604, + 0.005225164350122213, + -0.015642957761883736, + 0.03703815117478371, + 0.002584927249699831, + 0.01239593792706728, + 0.005407361779361963, + 0.009942778386175632, + 0.027407711371779442, + 0.008804043754935265, + -0.022865787148475647, + 0.022995928302407265, + -0.0032258720602840185, + 0.02502612955868244, + -0.011836331337690353, + -0.012597656808793545, + -0.00390097894705832, + 0.007613253314048052, + 0.015109379775822163, + -0.008309507742524147, + 0.012044557370245457, + 0.0019748909398913383, + -0.0004742015735246241, + -0.03237910196185112, + 0.0630403384566307, + -0.021811645478010178, + -0.046928875148296356, + -0.0060255322605371475, + -0.029463941231369972, + -0.014224420301616192, + 0.01889648474752903, + 0.020783530548214912, + 0.020523248240351677, + 0.013313432224094868, + 0.05939638987183571, + 0.02300894260406494, + -0.010456835851073265, + -0.004050641320645809, + 0.008381085470318794, + -0.03146811202168465, + 0.019781444221735, + -0.04169720411300659, + 0.012447994202375412, + -0.0033641469199210405, + 0.014731970615684986, + 0.047215186059474945, + 0.01954719051718712, + -0.027225514873862267, + 0.009695510379970074, + -0.006956040859222412, + -0.0225274208933115, + 0.01358672883361578, + 0.016853269189596176, + 0.01910470984876156, + 0.055492155253887177, + 0.023724719882011414, + -0.03141605854034424, + 0.009506805799901485, + 0.007886549457907677, + -0.014731970615684986, + -0.02442748099565506, + 0.023750746622681618, + 0.0020920177921652794, + -0.028006359934806824, + -0.0027947796043008566, + -0.029125573113560677, + 0.019065668806433678, + 0.016163522377610207, + -0.015551859512925148, + -0.020978741347789764, + -0.007795450743287802, + -0.020653389394283295, + 0.0007422108319588006, + 0.008908157236874104, + -0.0031347733456641436, + -0.0028240615501999855, + -0.010157511569559574, + -0.0091619323939085, + -0.024661734700202942, + -0.03500794991850853, + 0.01945609226822853, + -0.009025284089148045, + -0.022501392289996147, + -0.015642957761883736, + 0.0304009560495615, + 0.005443150643259287, + -0.025663821026682854, + -0.024336382746696472, + -0.006152419839054346, + 0.037610772997140884, + -0.04036976397037506, + 0.00679336441680789, + -0.00041197784594260156, + 0.016606001183390617, + 0.001691834069788456, + 0.01933896541595459, + 0.030661238357424736, + -0.024115141481161118, + -0.019755415618419647, + 0.06762130558490753, + 0.018427977338433266, + 0.01724369265139103, + -0.04271230101585388, + -0.023243196308612823, + -0.00815333891659975, + 0.036960065364837646, + -0.0007133358158171177, + 0.045601435005664825, + 0.007600239012390375, + -0.023607593029737473, + 0.018128652125597, + -0.01966431736946106, + -0.034175049513578415, + -0.04086429998278618, + 0.016827242448925972, + -0.008342043496668339, + -0.010177032090723515, + 0.020315023139119148, + -0.023060999810695648, + -0.01483608316630125, + 0.02075750194489956, + -0.01453675888478756, + -0.014666900038719177, + -0.0026353569701313972, + -0.015356647782027721, + -0.016241606324911118, + -9.033620881382376e-5, + 0.018154680728912354, + 0.004730628337711096, + -0.040473874658346176, + -0.005488700233399868, + -0.012096613645553589, + 0.031962648034095764, + 0.01512239407747984, + 0.004831487778574228, + -0.000422958517447114, + 0.013742898590862751, + -0.025221342220902443, + 0.003289315849542618, + 0.004463838879019022, + 0.013189798220992088, + -0.004310923162847757, + -0.020601334050297737, + -0.007502633146941662, + 0.011348302476108074, + 0.007984155789017677, + -0.006028785370290279, + 0.012929516844451427, + 0.008029704913496971, + -0.02054927684366703, + 0.031494140625, + -0.019794458523392677, + -0.0026597583200782537, + -0.014224420301616192, + -0.007951620034873486, + 0.00011072159395553172, + -0.0010281145805492997, + -0.02264454774558544, + 0.03323803097009659, + 0.0036244289949536324, + -0.030270814895629883, + -0.028396783396601677, + -0.008159846067428589, + -0.03602305054664612, + 0.003897725371643901, + 0.03279555216431618, + -0.011432893574237823, + -0.04445619508624077, + -0.03589291125535965, + -0.003956289030611515, + 0.018232764676213264, + -0.0011159597197547555, + 0.014016194269061089, + -0.018141666427254677, + 0.025364495813846588, + 0.02434939704835415, + -0.009780102409422398, + 0.012181204743683338, + 0.011048978194594383, + -0.00021696957992389798, + 0.012194219045341015, + -0.028318699449300766, + -0.020158853381872177, + -0.018128652125597, + 0.0012664353707805276, + -0.016488874331116676, + 0.012161684222519398, + -0.00892117153853178, + 0.037376519292593, + 0.028605010360479355, + -0.0027150684036314487, + -0.0029119066894054413, + -0.00970852468162775, + -0.012532586231827736, + 0.008003676310181618, + -0.01857113279402256, + -0.01874031499028206, + -0.010775681585073471, + 0.015642957761883736, + -0.008895142935216427, + 0.003793612588196993, + 0.028605010360479355, + -0.002230292884632945, + -0.03136400133371353, + 0.01530459150671959, + -0.01312472764402628, + -0.01285793911665678, + 0.029385855421423912, + -0.0009874454699456692, + -0.016775185242295265, + 0.005911658518016338, + 0.015031294897198677, + 0.0016194430645555258, + 0.01985952816903591, + -0.009981821291148663, + -0.01221374049782753, + -0.008283480070531368, + -0.011706190183758736, + -0.02172054722905159, + 0.010528413578867912, + -0.011914416216313839, + -0.006646955851465464, + -0.0813121497631073, + -0.0311297457665205, + -0.0034454851411283016, + -0.00894069205969572, + 0.014875125139951706, + -0.0021424475125968456, + 0.016684086993336678, + 0.044430166482925415, + -0.019026625901460648, + 0.024037057533860207, + 0.01659298874437809, + -0.02229316718876362, + 0.03516412153840065, + 0.012734305113554, + 0.01897456869482994, + -0.0018447497859597206, + -0.007860520854592323, + -0.003108744975179434, + 0.01929992251098156, + -0.01998966932296753, + -0.010164018720388412, + 0.026991259306669235, + 0.03669978305697441, + -0.02192877233028412, + -0.014419632032513618, + 0.01760808750987053, + -0.003500794991850853, + 0.006087349262088537, + 0.012291825376451015, + -0.025364495813846588, + 0.012779854238033295, + 0.019325951114296913, + -0.0033072102814912796, + 0.0015177703462541103, + -0.002412490313872695, + 0.023113055154681206, + 0.011471936479210854, + -0.004535416606813669, + 0.043258894234895706, + 0.021265052258968353, + -0.004613501485437155, + 0.0122723039239645, + 0.016788199543952942, + -0.011771260760724545, + -0.013092192821204662, + -0.013508643954992294, + -0.010469850152730942, + -0.007756408303976059, + 0.01594228297472, + 0.0037643308751285076, + -0.0018968062940984964, + -0.014823068864643574, + -0.014016194269061089, + -0.013690841384232044, + -0.0018024540040642023, + 0.0017373834270983934, + 0.004141740035265684, + -0.003237259341403842, + 0.0010248610051348805, + -0.005225164350122213, + 0.029203658923506737, + 0.02248837798833847, + 0.006542842835187912, + -0.007008097134530544, + -0.01395112369209528, + 0.010970893315970898, + -0.00038269610377028584, + -0.008569790050387383, + 0.013925096020102501, + 0.01784234307706356, + 0.011621598154306412, + -0.00642896955832839, + -0.007066660560667515, + -0.009090354666113853, + 0.0018886724719777703, + 0.027199486270546913, + 0.009090354666113853, + -0.002020440297201276, + -0.004740389063954353, + -0.018844429403543472, + -0.025507651269435883, + -0.018623188138008118, + 0.0179594699293375, + 0.01998966932296753, + -0.01406825054436922, + -0.010762667283415794, + -0.010040384717285633, + -0.022618519142270088, + 0.0024320115335285664, + 0.007470097858458757, + 0.012174698524177074, + 0.013873038813471794, + 0.02463570609688759, + 0.01680121384561062, + -0.004525655880570412, + 0.026913175359368324, + 0.01743890531361103, + -0.017530003562569618, + 0.00955235492438078, + 0.023282239213585854, + -0.0027459769044071436, + -0.03781899809837341, + -0.0025995681062340736, + -0.03165031224489212, + -0.0011948577594012022, + -0.0053878407925367355, + 0.00924652349203825, + 0.006487532984465361, + -0.03521617501974106, + -0.006653463002294302, + 0.008699931204319, + 0.025989172980189323, + -0.008765001781284809, + -0.0044313035905361176, + -0.004646036773920059, + 0.025468610227108, + -0.013781940564513206, + -0.008862607181072235, + -0.022839760407805443, + 0.011179118417203426, + 0.0011061992263421416, + 0.01512239407747984, + -0.008068746887147427, + -0.025872046127915382, + 0.007352971006184816, + 0.005869362968951464, + -0.003064822405576706, + 0.007242351304739714, + 0.012389430776238441, + 0.012988080270588398, + 0.014341547153890133, + 0.021252037957310677, + -0.03560660034418106, + 0.004073415882885456, + -0.0025491383858025074, + 0.012831910513341427, + 0.003975810017436743, + 0.0008979734848253429, + 0.022071927785873413, + -0.011719204485416412, + -0.004935600329190493, + -0.01053492072969675, + 0.004977896343916655, + -0.006035292521119118, + -0.007548182737082243, + 0.0015047562774270773, + -0.019078683108091354, + 0.009038298390805721, + -0.011042471043765545, + -0.008693424053490162, + -0.01274081226438284, + 0.027746077626943588, + 0.03188456594944, + 0.021408207714557648, + 0.011706190183758736, + -0.02738168276846409, + -0.01691834069788456, + 0.014588815160095692, + -0.016293663531541824, + 0.0014470061287283897, + -0.02623644284904003, + 0.0030274069868028164, + 0.005433389917016029, + 0.005023445934057236, + 0.0005246312357485294, + -0.022982914000749588, + -0.011777767911553383, + -0.010359230451285839, + -0.003284435486420989, + -0.01126371044665575, + -0.007990662008523941, + 0.013625770807266235, + -0.019039640203118324, + 0.012461008504033089, + -0.009825651533901691, + -0.00811429601162672, + -0.0024173706769943237, + -0.012753825634717941, + 0.027798134833574295, + -0.014862111769616604, + -0.021551363170146942, + 0.023113055154681206, + -0.008966720663011074, + 0.010730132460594177, + 0.0016080557834357023, + -0.003897725371643901, + 0.0060060108080506325, + 0.008817058056592941, + 0.018076596781611443, + 0.014185377396643162, + 0.011953458189964294, + -0.011953458189964294, + -0.013820982538163662, + 0.004258866887539625, + -0.0035235697869211435, + 0.008303000591695309, + 0.013137741945683956, + 0.01755603216588497, + -0.01328089740127325, + 0.004444317892193794, + -0.022358236834406853, + -0.020614346489310265, + 0.018115637823939323, + 0.009266044944524765, + -0.000979311647824943, + 0.008075254037976265, + -0.022071927785873413, + 0.01760808750987053, + 0.022110968828201294, + -0.01560391578823328, + -0.004252359736710787, + 0.011615091934800148, + 0.0073074218817055225, + -0.018961556255817413, + -0.010339708998799324, + 0.011680161580443382, + 0.01417236402630806, + -0.023919930681586266, + 0.03433121740818024, + -0.01712656579911709, + 0.026835091412067413, + -0.016319692134857178, + 0.0028289416804909706, + 0.004444317892193794, + 0.01031368039548397, + 0.0054301368072628975, + 0.02273564599454403, + -0.028084445744752884, + -0.023724719882011414, + -0.006539589259773493, + -0.010573962703347206, + 0.00537157291546464, + 0.00044776665163226426, + -0.008732466958463192, + -0.040395792573690414, + 0.0023278985172510147, + 0.020406121388077736, + -0.021212996914982796, + -0.001605615601874888, + -0.0055472636595368385, + -0.01743890531361103, + -0.020054740831255913, + -0.008068746887147427, + -0.004525655880570412, + 0.03342023119330406, + 0.015018280595541, + -0.005374826490879059, + -0.013742898590862751, + 0.0032421397045254707, + -0.007476605009287596, + 0.011517485603690147, + -0.007190294563770294, + -0.006916998419910669, + 0.008856100961565971, + -0.015695014968514442, + -0.024245282635092735, + 0.036725811660289764, + -0.00560257351025939, + 0.019000597298145294, + -0.008550268597900867, + -0.002214025240391493, + -0.009480778127908707, + 0.020249951630830765, + -0.02281373180449009, + 0.031832508742809296, + 0.011153090745210648, + -0.005417122505605221, + 0.01760808750987053, + 0.03901629522442818, + 0.0034454851411283016, + 0.009324608370661736, + -0.00995579268783331, + -0.033368173986673355, + -0.01962527446448803, + -0.002010679803788662, + -0.004870529752224684, + -0.0033039567060768604, + -0.01985952816903591, + -0.005404108203947544, + 0.025182299315929413, + -0.032639384269714355, + -0.01358672883361578, + -0.004831487778574228, + 0.019768429920077324, + 0.017894398421049118, + 0.0034194570034742355, + 0.006084095686674118, + -0.004990910645574331, + 0.03836559131741524, + -0.02385486103594303, + 0.0023197648115456104, + 0.01067807525396347, + 0.02112189680337906, + -0.008608832955360413, + 0.00785401463508606, + -0.0007946739788167179, + 0.02119998261332512, + 0.013261375948786736, + 0.028370754793286324, + -0.016332706436514854, + 0.032222930341959, + -0.012402445077896118, + -0.009994834661483765, + -0.02777210623025894, + 0.0007735260296612978, + -0.00016155795310623944, + -0.005592812784016132, + 0.008875621482729912, + 0.00446058576926589, + 0.00034914413117803633, + 0.016619015485048294, + 0.018180709332227707, + -0.02006775513291359, + -0.018401948735117912, + 0.011706190183758736, + 0.013860025443136692, + 0.027876218780875206, + -0.0026174625381827354, + -0.006321602966636419, + -0.030635209754109383, + -0.0029379348270595074, + -0.009897229261696339, + 0.02680906280875206, + 0.0016820734599605203, + -0.024661734700202942, + -0.020536262542009354, + -0.016970396041870117, + -0.005618841387331486, + 0.014263462275266647, + 0.009747566655278206, + 0.004073415882885456, + 0.033081863075494766, + -0.013599743135273457, + -0.029854364693164825, + 0.008725959807634354, + -0.0038944717962294817, + -0.02233221009373665, + -0.008439648896455765, + -0.02224110998213291, + -0.0024791876785457134, + -0.011946951039135456, + 0.00566113693639636, + -0.015577887184917927, + -0.004548430908471346, + 0.014367575757205486, + 0.020523248240351677, + -0.0013225587317720056, + 0.02826664224267006, + 0.01049587782472372, + -0.009942778386175632, + 0.006858434993773699, + 0.027407711371779442, + 0.005156840197741985, + -0.023516492918133736, + 0.007977648638188839, + 0.027121400460600853, + 0.0011972979409620166, + 0.03053109720349312, + -0.03854778781533241, + -0.02390691637992859, + -0.04187940061092377, + 0.004027866292744875, + -0.014276476576924324, + 0.031025633215904236, + -0.012949037365615368, + 0.004255613312125206, + 0.02350347861647606, + 0.0030664491932839155, + -0.0073074218817055225, + -0.019469106569886208, + -0.003517062636092305, + -0.009975314140319824, + -0.011907909065485, + -0.012044557370245457, + -0.006890970282256603, + 0.01193393673747778, + -0.01805056817829609, + 0.0026467442512512207, + 0.0061166309751570225, + -0.02575491927564144, + 0.022722633555531502, + 0.000688527652528137, + -0.011341795325279236, + -0.0036699785850942135, + -0.01279937569051981, + -0.0057977852411568165, + -0.016970396041870117, + -0.001467340742237866, + 0.0028500896878540516, + 0.014276476576924324, + -0.018024539574980736, + -0.011589063331484795, + -0.0039042325224727392, + 0.008830072358250618, + 0.01853208988904953, + 0.01471895631402731, + -0.019651303067803383, + 0.0008442902471870184, + -0.023529507219791412, + -0.01995062828063965, + -0.013729884289205074, + 0.012467515654861927, + -0.005719700362533331, + 0.0009516566642560065, + -0.022995928302407265, + 0.014445659704506397, + 0.0069690546952188015, + 0.03396682068705559, + 0.004499627742916346, + -0.02329525351524353, + 0.005992996972054243, + 0.02010679617524147, + -0.005446404218673706, + 0.001368108089081943, + -0.028240615501999855, + -0.011094527319073677, + 0.0010769173968583345, + 0.018128652125597, + 0.024050071835517883, + -0.03201470524072647, + -0.019469106569886208, + -0.012363403104245663, + 0.0022709618788212538, + -0.013794954866170883, + -0.013690841384232044, + 0.003020899835973978, + -0.01523952092975378, + -0.0002972910297103226, + 0.005840080790221691, + -0.01582515612244606, + 0.01909169740974903, + 0.0011598824057728052, + -0.00761976046487689, + 0.010951371863484383, + 0.035997021943330765, + -0.03240513056516647, + -0.024817904457449913, + -0.006799871567636728, + 0.0001838242751546204, + -0.025728892534971237, + -0.0026874132454395294, + -0.016579974442720413, + -0.011563034728169441, + -0.016280649229884148, + 0.007665309589356184, + -0.009266044944524765, + 0.0194170493632555, + 0.014419632032513618, + 0.0153826754540205, + 0.019638288766145706, + 0.013027122244238853, + -0.028761178255081177, + 0.012506557628512383, + 0.001087491400539875, + 6.029192445566878e-5, + -0.013833996839821339, + 0.005010431632399559, + -0.012747318483889103, + -0.02988039143383503, + 0.029828336089849472, + 0.014771012589335442, + 0.009747566655278206, + -0.008042719215154648, + 0.009526327252388, + -0.03466958552598953, + 0.014367575757205486, + 0.034175049513578415, + -0.02753785252571106, + -0.012447994202375412, + -0.00955235492438078, + 0.019768429920077324, + -0.0025735399685800076, + -0.008966720663011074, + -0.007014604285359383, + 0.015161436051130295, + -0.00922700297087431, + -0.02172054722905159, + 0.008875621482729912, + 0.011218161322176456, + -0.013170277699828148, + 0.014940195716917515, + -0.0114459078758955, + 0.028448840603232384, + 0.029489969834685326, + 0.012135655619204044, + -0.01816769503057003, + 0.028318699449300766, + -0.015343633480370045, + -0.020406121388077736, + 0.020692432299256325, + -0.038339562714099884, + -0.010320187546312809, + -0.013033629395067692, + 0.015577887184917927, + -0.002929801121354103, + -0.009786609560251236, + -0.006289067678153515, + -0.0002112759102601558, + 0.02043214999139309, + 0.010372243821620941, + -0.00041075778426602483, + -0.017829328775405884, + -0.033940792083740234, + 0.010541427880525589, + -0.006389927119016647, + -0.012122641317546368, + -0.002334405668079853, + 0.014081264846026897, + -0.003399935783818364, + 0.0036114149261265993, + -0.016046395525336266, + -0.0075091402977705, + -0.020926686003804207, + 0.003910739440470934, + -0.007300914730876684, + 8.530341438017786e-5, + 0.019443077966570854, + -0.012506557628512383, + -0.023152098059654236, + 0.0019521162612363696, + -0.008407114073634148, + -0.008016690611839294, + -0.01788138411939144, + -0.013170277699828148, + -0.0007271632784977555, + -0.014562786556780338, + 0.003107118420302868, + -0.0013990165898576379, + 0.005748982075601816, + -0.005947447381913662, + -0.008140324614942074, + -0.0027297092601656914, + 0.013716869987547398, + 0.0035886403638869524, + 0.00715775927528739, + 0.0020741235930472612, + 0.0037610772997140884, + 0.005283727776259184, + -0.006376912817358971, + 0.0073074218817055225, + -0.015838170424103737, + -0.010118468664586544, + 0.010255116969347, + 0.002744350116699934, + -0.013938109390437603, + 0.07350368052721024, + -0.0034194570034742355, + -0.011309259571135044, + -0.007411534432321787, + 0.006497293245047331, + -0.006682744715362787, + 0.005807545967400074, + 0.02296990156173706, + 0.012506557628512383, + 0.0011916043004021049, + -0.013573714531958103, + -0.019807472825050354, + 0.007099195849150419, + 0.0078084650449454784, + -0.007216323167085648, + 0.007138238288462162, + 0.020249951630830765, + 0.027303598821163177, + -0.003177069127559662, + 0.016020366922020912, + 0.010710611008107662, + 0.002179863164201379, + -0.005791278090327978, + 0.017829328775405884, + -0.01897456869482994, + 0.014211405999958515, + 0.005856348667293787, + 0.028032388538122177, + 0.00918796006590128, + 0.024700777605175972, + 0.008394099771976471, + 0.009962299838662148, + -0.03105166181921959, + -0.002279095584526658, + 0.0008613712852820754, + 0.015551859512925148, + 0.003331611631438136, + 0.01395112369209528, + -0.005944193806499243, + 0.014120307750999928, + -0.020887643098831177, + -0.016488874331116676, + 0.01828482188284397, + 0.022163026034832, + -0.007300914730876684, + 0.010762667283415794, + -0.023594578728079796, + 0.0007178094238042831, + -0.0018870456842705607, + 0.0002543851442169398, + -0.011374330148100853, + -0.010873286984860897, + 0.002339286031201482, + -0.0009036671253852546, + 0.0012111254036426544, + 0.0012615551240742207, + 0.025143256410956383, + -0.010749652981758118, + -0.009506805799901485, + -0.0006673797033727169, + -0.009929764084517956, + -0.015642957761883736, + -0.016619015485048294, + -0.024479538202285767, + -0.0040636551566421986, + -0.006067827809602022, + -0.0007202495471574366, + -0.02652275189757347, + 0.015408704057335854, + 0.012415459379553795, + -0.005260953214019537, + 0.028605010360479355, + 0.0014030835591256618, + -0.014953210018575191, + -0.007639281451702118, + 0.017998510971665382, + 0.00264999782666564, + 0.0037643308751285076, + -0.008211902342736721, + -0.00017548711912240833, + -0.002318138023838401, + 0.0014819815987721086, + -0.01120514702051878, + -0.033290088176727295, + 0.011185625568032265, + 0.00505598122254014, + 0.025208327919244766, + -0.02264454774558544, + 0.008166353218257427, + -0.004184035584330559, + -0.027928275987505913, + 0.022826746106147766, + -0.01889648474752903, + 0.013293911702930927, + -0.0053618126548826694, + -0.01281889621168375, + -0.009142410941421986, + -0.010216074995696545, + 0.0034942880738526583, + 0.011589063331484795, + 0.00638016639277339, + 0.013742898590862751, + 0.0019683837890625, + 0.0024206240195780993, + -0.00769133772701025, + -0.02293085865676403, + 0.018037553876638412, + 0.028396783396601677, + -0.03982317075133324, + 0.004616755060851574, + -0.007457084022462368, + -0.027433739975094795, + 0.0020773769356310368, + -0.02548162452876568, + -0.029750250279903412, + 0.02196781523525715, + 0.009279059246182442, + -0.008712945505976677, + -0.008608832955360413, + -0.026678921654820442, + -0.005384587217122316, + 0.002983484184369445, + 0.010541427880525589, + -0.010151004418730736, + -0.002183116739615798, + -0.0012924636248499155, + 0.005550517234951258, + -0.0036406966391950846, + -0.028683094307780266, + 0.01651490293443203, + 0.005514728371053934, + 0.00529999565333128, + -0.008908157236874104, + 0.015109379775822163, + 0.007021111436188221, + -0.009253030642867088, + 0.007502633146941662, + 0.011061991564929485, + 0.004847755189985037, + -0.019430063664913177, + 0.01168666873127222, + -0.001877285074442625, + -0.021772602573037148, + 0.027641965076327324, + -0.003595147281885147, + 0.004177528899163008, + -0.012012021616101265, + -0.0027524838224053383, + 0.00882356520742178, + -0.00405714800581336, + 0.026106301695108414, + -0.035476457327604294, + 0.004558191169053316, + 0.008166353218257427, + -0.0055277422070503235, + 0.019963642582297325, + -0.022995928302407265, + 0.006253278814256191, + 0.0047013466246426105, + -0.004034373443573713, + 0.011537007056176662, + 0.0015690134605392814, + -0.02615835703909397, + -0.001605615601874888, + -0.014484702609479427, + -0.0009036671253852546, + 0.019039640203118324, + 0.014914168044924736, + 0.02596314623951912, + 0.009311594069004059, + -0.011855852790176868, + -0.0005563531303778291, + -0.0057066865265369415, + -0.02450556494295597, + 0.017230678349733353, + 0.011491457000374794, + -0.004024612717330456, + 0.0028029135428369045, + -0.020093783736228943, + 0.009669482707977295, + 0.019325951114296913, + -0.019755415618419647, + 0.009298580698668957, + -0.018297836184501648, + -0.0014551399508491158, + -0.02834472805261612, + -0.001554372487589717, + -0.0054789395071566105, + -0.006916998419910669, + 0.010814723558723927, + -0.02091367170214653, + 0.007294407580047846, + -0.002866357332095504, + 0.002861476968973875, + -0.010769174434244633, + 0.006930012721568346, + 0.0006067827926017344, + 0.023230183869600296, + -0.006617674138396978, + -0.0034389779902994633, + -0.0014901154208928347, + 0.009057818911969662, + 0.012467515654861927, + -0.013625770807266235, + -0.008016690611839294, + -0.0007361104944720864, + -0.012265796773135662, + -0.02333429642021656, + -0.0014868618454784155, + 0.01603338122367859, + -0.04953169450163841, + -0.01570802927017212, + 0.01586419716477394, + -0.008420128375291824, + -0.0186882596462965, + 0.013150756247341633, + 0.015031294897198677, + 0.006806378718465567, + 0.03891218453645706, + 0.00964996125549078, + 0.017139580100774765, + 0.021811645478010178, + 0.011478443630039692, + -0.009116382338106632, + -0.016059409826993942, + 0.005296742077916861, + -0.0032551537733525038, + 0.00011489017197163776, + 0.018844429403543472, + -0.0057977852411568165, + 0.0296721663326025, + -0.0018854188965633512, + -0.0056806583888828754, + -0.009565369226038456, + 0.01691834069788456, + 0.020731473341584206, + 0.019833501428365707, + 0.00458096619695425, + -0.005908404942601919, + -0.007541675586253405, + -0.004171021748334169, + 0.002248187083750963, + -0.021538348868489265, + 0.007541675586253405, + 0.004379247315227985, + -0.0091619323939085, + 0.012500050477683544, + -0.0028061671182513237, + -0.015174450352787971, + -2.437603507132735e-5, + -0.0013396397698670626, + -0.004831487778574228, + 0.005794531665742397, + -0.0011468682205304503, + 0.012129148468375206, + 0.010456835851073265, + 0.00630858913064003, + 0.0225274208933115, + 0.019195809960365295, + -0.015734056010842323, + -0.01358672883361578, + 0.014367575757205486, + 0.008986241184175014, + 0.0018154680728912354, + 0.00715775927528739, + 0.010020863264799118, + -0.03152016922831535, + -0.020119810476899147, + -0.0061166309751570225, + 0.017777271568775177, + -0.008433141745626926, + 0.006956040859222412, + 0.015213492326438427, + 0.008660889230668545, + -0.005557024385780096, + -0.011478443630039692, + 0.020132824778556824, + -0.015851182863116264, + 0.009871200658380985, + 0.007906070910394192, + -0.009994834661483765, + 0.007678323891013861, + 0.0018512568203732371, + 0.0018528836080804467, + -0.002109912224113941, + -0.04453427717089653, + -0.017712201923131943, + -0.0023327788803726435, + -0.017543017864227295, + -0.00955235492438078, + -0.009155425243079662, + -0.002490574959665537, + 0.009747566655278206, + -0.0027476034592837095, + -0.018870456144213676, + -0.014328532852232456, + 0.0008324962109327316, + 0.005609080661088228, + -0.007300914730876684, + -0.006386673543602228, + -0.008550268597900867, + 0.006389927119016647, + -0.0007422108319588006, + -0.01594228297472, + 0.008817058056592941, + -0.00793209858238697, + 0.0029102799016982317, + 0.001600735355168581, + 5.9173522458877414e-5, + 0.02220206893980503, + 0.009090354666113853, + 0.01542171835899353, + -0.007919085212051868, + -0.011517485603690147, + -0.005313009489327669, + -0.015890225768089294, + 0.012480529956519604, + 0.017503974959254265, + 0.006295574828982353, + -0.004994163755327463, + -0.0017292496049776673, + 0.011211654171347618, + -0.00650054682046175, + 0.009786609560251236, + 0.014328532852232456, + 0.013014107942581177, + 0.021408207714557648, + 0.009253030642867088, + 0.020861614495515823, + 0.004131979309022427, + 0.008738973177969456, + -0.009031791239976883, + -0.01618955098092556, + 0.003370654070749879, + -0.017855355516076088, + 0.013508643954992294, + -0.008316014893352985, + -0.01853208988904953, + -0.0146538857370615, + -0.01199250016361475, + -0.020249951630830765, + -0.010821230709552765, + 0.003517062636092305, + -0.0040148524567484856, + 0.0042230780236423016, + 0.031155774369835854, + 0.014823068864643574, + 0.004011598881334066, + 0.026457682251930237, + 0.03172839432954788, + 0.011315766721963882, + -0.0022937364410609007, + 0.018597161397337914, + -0.0022579478099942207, + -0.027928275987505913, + -0.0026402371004223824, + -0.011419880203902721, + -0.007027618587017059, + 0.01233737450093031, + 0.0009435228421352804, + -0.003020899835973978, + 0.026067258790135384, + -0.009200974367558956, + 0.0029883645474910736, + 0.005944193806499243, + 0.00630858913064003, + -0.003504048567265272, + 0.032847609370946884, + -0.005882376804947853, + 0.01007291954010725, + -0.003474766854196787, + -0.03209279105067253, + -0.01186886616051197, + -0.012571628205478191, + -0.009851680137217045, + 0.0015291577437892556, + -0.005690418649464846, + 0.015174450352787971, + 0.001099692191928625, + 0.016215579584240913, + 0.023971987888216972, + -0.002762244548648596, + -0.00505598122254014, + 0.00014620537695009261, + 0.02054927684366703, + 0.01995062828063965, + -0.00955235492438078, + 0.014627857133746147, + 0.000893093179911375, + -0.0258330050855875, + 0.006995083298534155, + 0.013007600791752338, + 0.023594578728079796, + -0.01566898636519909, + 0.009916750714182854, + -0.01179078221321106, + -0.02147327922284603, + 0.025104215368628502, + 0.006494040135294199, + -0.009090354666113853, + 0.0026044484693557024, + -0.020731473341584206, + -0.008387592621147633, + 0.01019655354321003, + -0.019690345972776413, + -0.012389430776238441, + -0.019364992156624794, + 0.01376892626285553, + 0.022215083241462708, + -0.03243115916848183, + 0.007047139573842287, + 0.019234851002693176, + 0.007626267150044441, + 0.029750250279903412, + 0.009728046134114265, + -0.008849593810737133, + 0.02608027309179306, + -0.012988080270588398, + 0.017699187621474266, + 0.00745057687163353, + 0.034461356699466705, + 0.010866779834032059, + 0.008543762378394604, + -0.0025491383858025074, + 0.006071081385016441, + -0.004740389063954353, + 0.023646634072065353, + -0.002135940594598651, + 0.011048978194594383, + 0.02442748099565506, + 0.012103120796382427, + -0.018401948735117912, + 0.028396783396601677, + 0.011582556180655956, + -0.015148421749472618, + -0.01435456145554781, + 0.018753329291939735, + -0.018870456144213676, + 3.6525925679598004e-5, + 0.026535766199231148, + -0.010795203037559986, + -0.004327191039919853, + 0.003917246591299772, + 0.009968806989490986, + 0.007183787878602743, + 0.01824577897787094, + 0.001204618369229138, + 0.0031705619767308235, + 0.0021766095887869596, + -0.007860520854592323, + -0.0003605314705055207, + 0.006406194530427456, + 0.008016690611839294, + 0.0122723039239645, + -0.02431035414338112, + -0.019026625901460648, + -0.005072248633950949, + 0.018440991640090942, + 0.02075750194489956, + -0.017295749858021736, + 0.010059905238449574, + -0.0005433390033431351, + 0.01926087960600853, + 0.00851773377507925, + -0.006041799671947956, + 0.008875621482729912, + -0.000422958517447114, + 0.005628601647913456, + 0.0062337578274309635, + -0.004769670777022839, + -0.0004864022776018828, + 0.0006181701319292188, + 0.030088618397712708, + -0.008875621482729912, + 0.005163347348570824, + 0.0033381187822669744, + -0.020484205335378647, + 0.011120554991066456, + -0.0017015946796163917, + -0.0017813059967011213, + -0.01772521436214447, + 0.0026272230315953493, + -0.017334792762994766, + -0.0006921878666616976, + -0.00039916709647513926, + -0.003024153411388397, + -0.020900657400488853, + 0.008504719473421574, + 0.0017975736409425735, + -0.008088268339633942, + 0.001696714316494763, + -0.0026516246143728495, + 0.0006568057578988373, + 0.0015584394568577409, + 0.012623684480786324, + -0.011563034728169441, + 0.0018073342507705092, + 0.04492470249533653, + 0.005748982075601816, + -0.015408704057335854, + 0.008843086659908295, + -0.02665289305150509, + -0.024336382746696472, + 0.025585737079381943, + 0.014601829461753368, + 0.008185873739421368, + 0.0020074262283742428, + 0.005407361779361963, + 0.00262396945618093, + 0.031676340848207474, + 0.013430560007691383, + -0.021343138068914413, + -0.0052284179255366325, + 0.013560700230300426, + -0.00589539110660553, + 0.00888212863355875, + 0.0013323193415999413, + 0.010359230451285839, + 0.02515627071261406, + 0.004141740035265684, + 0.018883470445871353, + -0.010287652723491192, + 0.004317430313676596, + 0.003211231203749776, + 0.014992252923548222, + 0.005960461683571339, + 0.010970893315970898, + 0.0054301368072628975, + 0.0058661093935370445, + 0.01556487288326025, + -0.014549773186445236, + 0.027746077626943588, + 0.008797537535429, + 0.005791278090327978, + -0.0023539268877357244, + 0.013612757436931133, + 0.01023559644818306, + 0.00036459838156588376, + 0.023152098059654236, + -0.023308267816901207, + 0.0014917420921847224, + 0.0031396534759551287, + 0.036986093968153, + -0.01221374049782753, + -0.02160342037677765, + -0.013046643696725368, + -0.020406121388077736, + -0.022345224395394325, + -0.021226011216640472, + 0.0050429669208824635, + -0.017269721254706383, + 0.005026699043810368, + 0.022097956389188766, + -0.0024954553227871656, + 0.015005266293883324, + -0.004574459046125412, + -0.0037090207915753126, + -0.015356647782027721, + -0.0027898994740098715, + 0.01877935789525509, + -0.02813650108873844, + -0.005524489097297192, + 0.008667396381497383, + 0.006995083298534155, + -0.023789789527654648, + -0.0017926933942362666, + 0.014458674006164074, + 0.007320435717701912, + -0.011406865902245045, + -0.010665061883628368, + -0.01562994346022606, + -0.015408704057335854, + -0.024648720398545265, + -0.014289490878582, + -0.005452911369502544, + 0.008602325804531574, + -0.013508643954992294, + -0.01291650254279375, + 0.013703855685889721, + 0.005475685931742191, + -0.0006258972571231425, + -0.010918837040662766, + -0.014432646334171295, + 0.002477560890838504, + -0.008289987221360207, + 0.028761178255081177, + 0.005657883360981941, + 0.0018707780400291085, + -0.01130275335162878, + -0.02260550670325756, + 0.014640871435403824, + -0.002205891301855445, + -0.0045907264575362206, + -0.0017682919278740883, + 0.004659050609916449, + -0.02337333746254444, + -0.012474022805690765, + 0.0007698658155277371, + -0.0010411286493763328, + -0.011048978194594383, + 0.00021371606271713972, + 0.0007275699754245579, + -0.0032177381217479706, + -0.0003759857208933681, + 0.017660144716501236, + 0.002858223393559456, + 0.014419632032513618, + -0.01291650254279375, + -0.00726837944239378, + -0.008446156047284603, + -0.010521906428039074, + 0.005169854499399662, + 0.005218657199293375, + -0.012057570740580559, + 0.0009776848601177335, + -0.01618955098092556, + 0.031077690422534943, + -0.012304839678108692, + 0.012994586490094662, + -0.004281641449779272, + -0.022839760407805443, + -0.00930508691817522, + 0.014888139441609383, + -0.007925591431558132, + 0.014601829461753368, + -0.018623188138008118, + 0.015018280595541, + 0.016475860029459, + 0.003055061912164092, + -0.020419135689735413, + 0.007645788602530956, + 0.018506061285734177, + -0.005449657794088125, + -0.035710711032152176, + 0.00015057729615364224, + -0.007144745439291, + -0.029568053781986237, + 0.00034324711305089295, + -0.0036179220769554377, + -0.027511823922395706, + 0.019573219120502472, + -0.019443077966570854, + -0.010769174434244633, + -0.0026142089627683163, + 0.009942778386175632, + -0.015447746030986309, + 0.007320435717701912, + -0.01691834069788456, + -0.017673159018158913, + 0.0077173663303256035, + -0.0019618768710643053, + 0.00566439051181078, + -0.019195809960365295, + 0.008003676310181618, + -0.00040486076613888144, + -0.002425504382699728, + 0.011257203295826912, + -0.02273564599454403, + 0.023685676977038383, + 0.005208896938711405, + -0.007027618587017059, + -0.0046330224722623825, + 0.0013355728005990386, + 0.006292321253567934, + 0.008732466958463192, + -0.024518579244613647, + 0.01269526220858097, + 4.3998868932249025e-5, + 0.008472184650599957, + 0.0005217844154685736, + -0.003953035455197096, + 0.018037553876638412, + -0.026626864448189735, + 0.011309259571135044, + -0.009871200658380985, + -0.011530499905347824, + -0.013677828013896942, + -0.0091619323939085, + -0.0051796152256429195, + -0.0384436771273613, + 0.0032600341364741325, + -0.003046927973628044, + -0.015682000666856766, + -0.00864136777818203, + -1.624221658858005e-5, + 0.00405714800581336, + -0.015174450352787971, + -0.015174450352787971, + -0.01756904646754265, + 0.019312936812639236, + -0.015981324017047882, + -0.011660641059279442, + -0.018987582996487617, + 0.008270465768873692, + 0.01918279565870762, + 0.0017422636738047004, + -0.0203410517424345, + 0.009200974367558956, + -0.00761976046487689, + 0.006702265702188015, + -0.01937800645828247, + -0.0036276825703680515, + 0.010118468664586544, + -0.005807545967400074, + 0.008088268339633942, + -0.008322522044181824, + 0.013196305371820927, + -0.0028647305443882942, + 0.009357144124805927, + 0.006227250676602125, + 0.005615587811917067, + 0.013228841125965118, + 0.0007621386903338134, + -0.000451020197942853, + -0.021265052258968353, + -0.023074014112353325, + 0.012838417664170265, + -0.012252782471477985, + -0.0022921098861843348, + 0.03128591552376747, + -0.019026625901460648, + 0.0004847755189985037, + -0.005973475519567728, + 0.014849097467958927, + 0.0010256743989884853, + 0.004236092325299978, + 0.01816769503057003, + 0.022631533443927765, + -0.016658058390021324, + 0.021668490022420883, + 0.018219752237200737, + 0.019078683108091354, + -0.014666900038719177, + 0.0018431231146678329, + -0.008608832955360413, + -0.00918796006590128, + 0.0028468361124396324, + -0.0002360840589972213, + -0.0029184138402342796, + 0.008446156047284603, + -0.03092152066528797, + -0.0040376270189881325, + 0.0018463765736669302, + 0.006360645405948162, + 0.009942778386175632, + -0.02164246141910553, + -0.0005677404697053134, + 0.009083847515285015, + 0.002096898155286908, + 0.022982914000749588, + -0.00014620537695009261, + -0.03258732706308365, + 0.026470696553587914, + 0.00875849463045597, + -0.002511722967028618, + -0.00416776817291975, + -0.0026093285996466875, + 0.02200685627758503, + -0.0004888424300588667, + 0.006113377399742603, + 0.0006202036165632308, + 0.01172571163624525, + 0.005631855223327875, + 0.004294655751436949, + -0.006676237564533949, + -0.0012290198355913162, + -0.0057294610887765884, + 0.0031575479079037905, + -0.00637040613219142, + 0.011153090745210648, + 0.014797041192650795, + -0.012350388802587986, + 0.00745057687163353, + -0.00452240277081728, + 0.0013591608731076121, + 0.004626515321433544, + 0.002171729225665331, + 0.00477617746219039, + 0.012870952486991882, + 0.012480529956519604, + 0.004512642044574022, + 0.01287745963782072, + -0.022189054638147354, + -0.009422214701771736, + -0.015838170424103737, + -0.009018776938319206, + 0.020158853381872177, + 0.006347631104290485, + 0.024232270196080208, + 0.013573714531958103, + 0.001730876392684877, + 0.008426634594798088, + -0.021512320265173912, + 0.008381085470318794, + 0.01279937569051981, + -0.0050201923586428165, + 0.012096613645553589, + -0.002900519408285618, + -0.015838170424103737, + 0.010333201847970486, + 0.015538845211267471, + 0.016684086993336678, + -0.006152419839054346, + -0.010606498457491398, + -0.007476605009287596, + 0.028735151514410973, + -0.019482119008898735, + 0.0012477276613935828, + -0.0033478792756795883, + 0.0033218511380255222, + 0.015721041709184647, + -0.006354138255119324, + -0.004252359736710787, + -0.012421966530382633, + 0.009266044944524765, + 0.006422462407499552, + 0.006910491269081831, + -0.008810550905764103, + -0.00803621206432581, + 0.00035666790790855885, + -0.01991158537566662, + -0.004737135488539934, + 0.007431055884808302, + -0.013508643954992294, + -0.024622691795229912, + 0.0026011948939412832, + 0.005579798948019743, + -0.003871697233989835, + 0.01126371044665575, + 0.02438843809068203, + -0.013534672558307648, + 0.0014958090614527464, + -0.008127310313284397, + 0.023607593029737473, + 0.003712274366989732, + -0.04042182117700577, + -0.012083599343895912, + -0.007060153875499964, + 0.003393428632989526, + 0.0075091402977705, + 0.020523248240351677, + -0.034175049513578415, + 0.0065103075467050076, + -0.009929764084517956, + -0.011829824186861515, + -0.0032079776283353567, + -0.008075254037976265, + 0.012057570740580559, + -0.0037480632308870554, + -0.004789191763848066, + -0.021408207714557648, + 0.01570802927017212, + 0.0011899775126948953, + -0.00026333233108744025, + -0.0184930469840765, + 0.0030973576940596104, + -0.020679417997598648, + 0.0012501677265390754, + 0.005462672095745802, + -0.00656236382201314, + 0.004252359736710787, + 0.013033629395067692, + 0.013007600791752338, + 0.005400855094194412, + 0.01643681898713112, + -0.012805882841348648, + -0.0063248565420508385, + 0.0011590690119192004, + -0.0005575732211582363, + -0.02337333746254444, + -0.011166105046868324, + -0.020419135689735413, + 0.013560700230300426, + -0.0003538210585247725, + 0.006982068996876478, + -0.006715280003845692, + -0.005856348667293787, + -0.013938109390437603, + -0.01720465160906315, + 0.006451744120568037, + -0.005644869524985552, + -0.01618955098092556, + 0.023971987888216972, + -0.003177069127559662, + -0.018141666427254677, + -0.014263462275266647, + 0.008992748335003853, + -0.01715259440243244, + -0.0045907264575362206, + 0.026418639346957207, + 0.00815333891659975, + -0.013092192821204662, + 0.025325454771518707, + 0.002415743889287114, + 0.011172612197697163, + -0.002041588304564357, + 0.009233510121703148, + -0.0015559992752969265, + -0.006715280003845692, + -0.017673159018158913, + 0.004955121781677008, + 0.020158853381872177, + -0.024661734700202942, + -0.013599743135273457, + -0.012441487051546574, + -0.020497219637036324, + -0.03235307335853577, + -0.0011289739049971104, + 0.007320435717701912, + 0.009578383527696133, + 0.009565369226038456, + 0.0013136115157976747, + 0.004184035584330559, + 0.007710859179496765, + 0.004616755060851574, + 0.003517062636092305, + -0.005332530941814184, + -0.016384761780500412, + -0.00946776382625103, + -0.01067807525396347, + 0.018349891528487206, + -0.0036406966391950846, + -0.0043825008906424046, + 0.022345224395394325, + -0.013417545706033707, + -0.013742898590862751, + -0.01203154306858778, + -0.008270465768873692, + -0.0028077939059585333, + 0.005283727776259184, + 0.022032884880900383, + 0.011029456742107868, + 0.001825228682719171, + 0.0033478792756795883, + -0.009109876118600368, + -0.02542956732213497, + 0.004730628337711096, + -0.022306181490421295, + 0.017503974959254265, + -0.0001594228233443573, + 0.009422214701771736, + 0.0047241211868822575, + -0.004089683294296265, + -0.013378502801060677, + 0.01760808750987053, + 0.013118221424520016, + 0.0015982951736077666, + -0.006747814826667309, + 0.005537502933293581, + 0.013833996839821339, + -0.007216323167085648, + 0.022826746106147766, + 0.014666900038719177, + 0.002706934465095401, + 0.0010736639378592372, + 0.012558613903820515, + -0.009454749524593353, + -0.004219824448227882, + -0.004340204875916243, + -0.0006995082949288189, + 0.01560391578823328, + -0.010040384717285633, + 0.017621101811528206, + -0.013521658256649971, + 0.004851008765399456, + -0.012350388802587986, + 0.03047904185950756, + -0.005257699638605118, + 0.005885630380362272, + 0.0028435825370252132, + -0.01322233397513628, + -0.007131731137633324, + -0.016684086993336678, + 0.012428473681211472, + 0.020419135689735413, + 0.029359828680753708, + -0.0146538857370615, + 0.023308267816901207, + -0.006061320658773184, + 0.017334792762994766, + -0.01914375275373459, + 0.009825651533901691, + 0.015929268673062325, + -0.001574707101099193, + -0.00035605786251835525, + -0.0015421718126162887, + -0.010411286726593971, + 0.002277469029650092, + 0.02119998261332512, + -0.0055212355218827724, + -0.006464758422225714, + -0.00697556184604764, + 0.011576049029827118, + -0.004971389193087816, + -0.0028940122574567795, + -0.014797041192650795, + 0.023633619770407677, + 0.007190294563770294, + -0.0052284179255366325, + 0.0017552778590470552, + 0.014445659704506397, + 0.004906318616122007, + -0.010788695886731148, + -0.016020366922020912, + 0.008498212322592735, + -0.008289987221360207, + -0.008257451467216015, + 0.002994871698319912, + -0.02782416343688965, + 0.014692927710711956, + 0.0194170493632555, + 0.008224916644394398, + -0.046174056828022, + -0.009558862075209618, + -0.01376892626285553, + 0.04541923850774765, + 0.03240513056516647, + 0.019495133310556412, + -0.0006511121173389256, + -0.001173709868453443, + 0.0029411884024739265, + 0.011745232157409191, + -0.010404779575765133, + -0.007339957170188427, + 0.006051560398191214, + 0.008283480070531368, + -0.01274081226438284, + -0.016827242448925972, + -0.022423308342695236, + -0.03880807012319565, + 0.019872542470693588, + 0.006682744715362787, + 0.016579974442720413, + 0.009142410941421986, + -0.012220247648656368, + -0.004327191039919853, + -0.0043825008906424046, + 0.025624778121709824, + -0.003108744975179434, + 0.0007373305852524936, + -0.011602077633142471, + 0.004441064316779375, + -0.006279306951910257, + 0.01837592013180256, + 0.004112458322197199, + 0.0007239097612909973, + 0.019716374576091766, + 0.00040425072074867785, + 0.00787353515625, + 0.015538845211267471, + -0.018831415101885796, + -0.020445164293050766, + 0.015577887184917927, + -0.0016771932132542133, + 0.012936023063957691, + -0.009565369226038456, + -0.00910336896777153, + -0.00697556184604764, + 0.02175958827137947, + 0.030192730948328972, + -0.015005266293883324, + 0.02277468889951706, + 0.0009801250416785479, + -0.012083599343895912, + -0.000666566367726773, + 0.011009935289621353, + 0.0017715455032885075, + 0.027433739975094795, + 0.006943026557564735, + 0.0012111254036426544, + 0.0001898229675134644, + -0.0015226505929604173, + -0.007567703723907471, + 0.019729387015104294, + -0.03198867663741112, + -0.012142162770032883, + 0.009994834661483765, + 0.013300418853759766, + -0.011159597896039486, + 0.026223428547382355, + 0.0024922017473727465, + 0.0043987687677145, + -0.002083884086459875, + 0.005631855223327875, + -0.0037220348604023457, + -0.013254868797957897, + -0.008062239736318588, + 0.005215403623878956, + 0.014081264846026897, + -0.021980827674269676, + -0.0013241855194792151, + -0.023828832432627678, + 0.020770516246557236, + 0.024726806208491325, + 0.008368071168661118, + 0.010593484155833721, + -0.002485694596543908, + -0.005013685207813978, + 0.019755415618419647, + -0.017178623005747795, + 0.02196781523525715, + -0.0019391020759940147, + -0.004138486459851265, + 0.010938357561826706, + 0.0025963145308196545, + -0.0019456091104075313, + 0.005869362968951464, + -0.00518937548622489, + -4.000821354566142e-5, + 0.0035463443491607904, + -0.006786857265979052, + 0.002851716475561261, + -0.016658058390021324, + 0.009012269787490368, + -0.0003304363344796002, + -0.011133569292724133, + -0.0047924453392624855, + -0.008289987221360207, + 0.008719452656805515, + 0.021265052258968353, + -0.014224420301616192, + -0.007235844153910875, + 0.016749156638979912, + 0.005836827680468559, + 0.0006112564005888999, + -0.0043825008906424046, + 0.0032941962126642466, + -0.015929268673062325, + 0.029099546372890472, + -0.012558613903820515, + 0.015044309198856354, + 0.02002871222794056, + -0.01031368039548397, + -0.007261872291564941, + 0.01162810530513525, + 0.0014437526697292924, + 0.01566898636519909, + 0.013703855685889721, + 0.0023636873811483383, + -0.00045590047375299037, + -0.003500794991850853, + 0.0225274208933115, + 0.012233261950314045, + 0.016319692134857178, + 0.003871697233989835, + -0.005807545967400074, + -0.0008914663922041655, + -0.009545848704874516, + 0.0015177703462541103, + 0.012252782471477985, + 0.0005579798598773777, + 0.011198639869689941, + 0.0054789395071566105, + -0.005397601518779993, + -0.02273564599454403, + -0.015148421749472618, + -0.022097956389188766, + 0.01808961108326912, + -0.019000597298145294, + 0.03289966657757759, + -0.001177776837721467, + -0.00324539327993989, + -0.00897973496466875, + -0.020484205335378647, + 0.017191637307405472, + 0.033654484897851944, + -0.013417545706033707, + 0.01857113279402256, + 0.023568550124764442, + 0.01031368039548397, + 0.009077340364456177, + -0.018831415101885796, + 0.012591149657964706, + -0.012936023063957691, + 0.008751987479627132, + -0.005404108203947544, + 0.008901650086045265, + -0.0005469992174766958, + 0.02241029404103756, + -0.02112189680337906, + -0.01435456145554781, + -0.0066437022760510445, + -0.009454749524593353, + 0.004987657070159912, + 0.011537007056176662, + -0.002472680527716875, + -0.023360323160886765, + -0.002277469029650092, + 0.0057782637886703014, + -0.0021473278757184744, + 0.02479187585413456, + -0.00038594965008087456, + -0.012988080270588398, + 0.0001325812190771103, + -0.027850192040205002, + 0.011172612197697163, + -0.014588815160095692, + 0.019690345972776413, + 0.019521161913871765, + -0.006425715982913971, + -0.03120783157646656, + -0.0006368778995238245, + 0.02624945528805256, + -0.007294407580047846, + -0.020002683624625206, + -0.012688755057752132, + -0.016163522377610207, + 0.005459418520331383, + -0.008101282641291618, + 0.024726806208491325, + 0.01861017383635044, + -0.006184954661875963, + -0.01663202978670597, + -0.023152098059654236, + -0.0047241211868822575, + 0.028605010360479355, + -0.013176784850656986, + -0.011582556180655956, + 0.034096963703632355, + 0.013977152295410633, + 0.016749156638979912, + 0.02519531361758709, + 0.003149414202198386, + -0.006903984118252993, + 0.0029802308417856693, + 0.019573219120502472, + 0.02696523256599903, + -0.008973227813839912, + 6.395213858922943e-5, + 0.033498313277959824, + 0.0040864297188818455, + 0.007749901153147221, + -0.0018447497859597206, + 0.003409696277230978, + -0.0016104958485811949, + 0.027225514873862267, + -0.00955235492438078, + 0.020783530548214912, + -0.016020366922020912, + -0.006663223262876272, + -0.0012200726196169853, + 0.02293085865676403, + -0.021694518625736237, + 0.0019391020759940147, + -0.002135940594598651, + -0.01251957193017006, + 0.009864693507552147, + -0.005192629061639309, + 0.009715031832456589, + -0.014927182346582413, + 0.02390691637992859, + -0.015721041709184647, + -0.004402021877467632, + 0.003172188764438033, + 0.024974074214696884, + -0.00946776382625103, + -0.0029281743336468935, + -0.022475365549325943, + 0.013053150847554207, + 0.013794954866170883, + -0.0031705619767308235, + 0.002262827940285206, + 0.00021351271425373852, + 0.02385486103594303, + -0.0007731193327344954, + 0.00875849463045597, + -0.007958127185702324, + -0.012330867350101471, + 0.0015804007416591048, + 0.010229089297354221, + -0.006995083298534155, + 0.008745480328798294, + 0.00023893089382909238, + 0.003133146557956934, + -0.0026304766070097685, + -0.02341238036751747, + 0.012461008504033089, + 0.022709619253873825, + -0.0038131335750222206, + 0.0024368916638195515, + 0.008608832955360413, + 0.0027378429658710957, + -0.012194219045341015, + -0.013482616282999516, + -0.001467340742237866, + 0.015682000666856766, + 0.03602305054664612, + 0.016697101294994354, + 0.015135407447814941, + -0.020653389394283295, + -0.00023852419690229, + -0.02188972942531109, + -0.017386848106980324, + -0.0038912182208150625, + -0.007762915454804897, + -0.003578879637643695, + -0.0036146685015410185, + -0.017699187621474266, + 0.007834493182599545, + 6.268123252084479e-5, + 0.004981149919331074, + 0.020848602056503296, + 0.015525830909609795, + 0.00022815358533989638, + -0.001044382224790752, + 0.0015795873478055, + -0.0076067461632192135, + 0.010944864712655544, + -0.02406308613717556, + -0.007151252590119839, + -0.0021034053061157465, + -0.0006991015980020165, + 0.013274390250444412, + -0.005934433080255985, + 0.0024303847458213568, + 0.005504967644810677, + 0.009051311761140823, + -0.005989743396639824, + -0.02725154161453247, + -0.0057294610887765884, + 0.018883470445871353, + 0.007411534432321787, + 0.020315023139119148, + 0.010808216407895088, + -0.008673902601003647, + 0.00010396035941084847, + -0.025208327919244766, + -0.011595570482313633, + 0.026939203962683678, + -0.0055700382217764854, + -0.006903984118252993, + 0.012239769101142883, + -0.010157511569559574, + 0.0249090027064085, + -0.014679914340376854, + 0.004366233479231596, + 0.008530748076736927, + 0.0033120904117822647, + -0.015356647782027721, + -0.0024108635261654854, + 0.0031445338390767574, + 0.004554938059300184, + -0.002248187083750963, + -0.010912329889833927, + -0.02131710946559906, + -0.01635873317718506, + 0.0038944717962294817, + 0.009721538983285427, + 0.011816809885203838, + 0.0028598501812666655, + -0.003020899835973978, + 0.005501714069396257, + 0.01120514702051878, + 0.005992996972054243, + 0.00523817865177989, + -0.013651799410581589, + 0.028891319409012794, + -0.008836579509079456, + -0.02010679617524147, + -0.003383668139576912, + -0.0006820206181146204, + -0.016566960141062737, + -0.021941786631941795, + -0.0040376270189881325, + -0.011289739049971104, + -0.00845917034894228, + 0.0046818251721560955, + -0.017595075070858, + 0.015838170424103737, + 0.005348798353224993, + 0.0036699785850942135, + 0.007333450019359589, + -0.004873783327639103, + -0.009031791239976883, + 0.013391517102718353, + 0.0170354675501585, + 0.011706190183758736, + -0.006175194401293993, + -0.0028191811870783567, + 0.0018610174302011728, + 0.007131731137633324, + 0.007333450019359589, + -0.0023165112361311913, + -0.003409696277230978, + 0.01279937569051981, + 0.009272552095353603, + 0.0012696889461949468, + 0.013027122244238853, + -0.008263958618044853, + 0.03378462418913841, + -0.006956040859222412, + -0.023763760924339294, + 0.001730876392684877, + -0.02362060546875, + -0.01910470984876156, + 0.0034292174968868494, + -0.012883966788649559, + 0.019781444221735, + -0.024726806208491325, + 0.025013115257024765, + 0.016059409826993942, + 0.005391094367951155, + -0.009884214960038662, + -0.0024401452392339706, + 0.000619390222709626, + -0.0011631358647719026, + 0.00250358902849257, + 0.00912288948893547, + 0.027121400460600853, + 0.008010183461010456, + -0.009689003229141235, + 0.0006096296128816903, + -0.010749652981758118, + 0.012408952228724957, + -0.01395112369209528, + -0.025182299315929413, + 0.004362979903817177, + -0.00785401463508606, + 0.011803796514868736, + 0.007945112884044647, + -0.0015901613514870405, + -0.0217986311763525, + 0.006708772853016853, + -0.020249951630830765, + 0.01001435611397028, + -0.01728273555636406, + -0.016163522377610207, + 0.031103719025850296, + -0.0015771472826600075, + 0.015721041709184647, + -0.01023559644818306, + -0.0017764257499948144, + -0.017217665910720825, + 0.004402021877467632, + -0.008185873739421368, + 0.014185377396643162, + -0.008296494372189045, + -0.023321282118558884, + -0.004112458322197199, + -0.004447571467608213, + 0.005934433080255985, + 0.03165031224489212, + -0.011211654171347618, + -0.009623932652175426, + -0.008465677499771118, + -0.0016283902805298567, + -0.007339957170188427, + -0.0016373374965041876, + -0.0043499656021595, + 0.0010899315821006894, + 0.0115435142070055, + -0.0005295115406624973, + -0.011771260760724545, + 0.012831910513341427, + -0.014784026890993118, + -0.012766839936375618, + -0.010261624120175838, + 0.004811966326087713, + -0.005488700233399868, + 0.019755415618419647, + 0.005449657794088125, + 0.03125988692045212, + 0.002435264876112342, + -0.005322770215570927, + -0.033290088176727295, + -0.003829401219263673, + 0.014757998287677765, + 0.0025393778923898935, + 0.01747794635593891, + 0.006246771663427353, + -0.030947549268603325, + 0.019521161913871765, + 0.008537255227565765, + 0.02285277470946312, + 0.0037480632308870554, + 0.002088764449581504, + 0.013716869987547398, + 0.00894069205969572, + -0.010912329889833927, + 0.006448490545153618, + -0.019638288766145706, + 0.0024710537400096655, + 0.011218161322176456, + 0.013964137993752956, + -0.02160342037677765, + 0.010847259312868118, + 0.015734056010842323, + 0.011771260760724545, + -0.015695014968514442, + 0.0053878407925367355 + ], + "5c74fb88-e897-420e-882b-3945dea9c505": [ + -0.010368791408836842, + -0.01879262924194336, + -0.017440179362893105, + 0.030217621475458145, + -0.048945847898721695, + -0.022283241152763367, + -0.009319031611084938, + 0.006807337049394846, + -0.019835948944091797, + 0.03274219483137131, + 0.006717173382639885, + 0.018084201961755753, + 0.03070707991719246, + -0.014361741952598095, + 0.004865603521466255, + -0.0029190401546657085, + -0.011122300289571285, + 0.03284524008631706, + -0.00604094797745347, + -0.0085977241396904, + 0.053788911551237106, + -0.026714129373431206, + -0.016049085184931755, + 0.01425869856029749, + 0.03204664960503578, + -0.02926446497440338, + -0.006891060154885054, + 0.004244120325893164, + -0.06692700833082199, + -0.005667414050549269, + 0.004118535667657852, + -0.0024537325371056795, + 0.01588163897395134, + 0.015855878591537476, + 0.0030075935646891594, + -0.03735341131687164, + -0.016783272847533226, + -0.007927939295768738, + -0.004968647379428148, + -0.0011197972344234586, + -0.01648702286183834, + 0.03129957988858223, + -0.025864016264677048, + 0.013189617544412613, + -0.018522139638662338, + 0.007129349280148745, + -0.04029016196727753, + -0.006923261564224958, + -0.007045626174658537, + 0.0007708165794610977, + 0.017234090715646744, + 0.013807881623506546, + -0.019513936713337898, + -0.007303235586732626, + 0.05528304725885391, + -0.004009051248431206, + -0.008552642539143562, + 0.06914245337247849, + -0.0075222039595246315, + -0.03539557754993439, + 0.0009563760831952095, + -0.027564240619540215, + 0.018187247216701508, + 0.008224190212786198, + 0.02408650889992714, + 0.007090707775205374, + -0.021871065720915794, + 0.05144466087222099, + -0.013369944877922535, + -0.010542677715420723, + -0.008507560938596725, + 0.014876961708068848, + -0.05064607039093971, + 0.025979941710829735, + 0.009885773062705994, + -0.003265203209593892, + 0.020402690395712852, + 0.007110028527677059, + 0.017169687896966934, + -0.003580775111913681, + 0.007477122358977795, + 0.002307217102497816, + 0.012448989786207676, + 0.036838192492723465, + 0.035575903952121735, + -0.0034197689965367317, + -0.0029270905070006847, + -0.037945911288261414, + -0.012320185080170631, + -0.04879128187894821, + 0.008423837833106518, + 0.0328194797039032, + 0.007354757748544216, + -0.005548269487917423, + -0.009132265113294125, + -0.020673179998993874, + -0.02224460057914257, + -0.007470682263374329, + 0.017053764313459396, + -0.00018616327724885195, + 0.014026849530637264, + 0.010813168250024319, + 0.008623485453426838, + 0.010336589999496937, + 0.002564826747402549, + -0.025645047426223755, + 0.01746593974530697, + 0.03065555728971958, + -0.033721111714839935, + 0.015237615443766117, + 0.004240900278091431, + -0.04984748363494873, + 0.009280390106141567, + 0.00033690521377138793, + -0.039285484701395035, + -0.001533582923002541, + -0.014117012731730938, + -0.023197755217552185, + 0.003303844714537263, + -0.039079394191503525, + 0.020042037591338158, + -0.025129828602075577, + -0.006247035693377256, + -0.004572572652250528, + -0.0037707623559981585, + 0.031814802438020706, + -0.01642262004315853, + 0.006627010181546211, + 0.03343774378299713, + 0.004920345731079578, + -0.006878179498016834, + -0.041938863694667816, + -0.007367637939751148, + -0.04227375611662865, + 0.019977634772658348, + 0.03011457622051239, + 0.009215988218784332, + 0.047760844230651855, + -0.008230630308389664, + 0.028543157503008842, + -0.014348861761391163, + -0.012114097364246845, + -0.04503018036484718, + 0.007502883207052946, + 0.019578339532017708, + 0.0007712191436439753, + -0.012287983670830727, + 0.017092404887080193, + -0.04351028427481651, + 0.009106503799557686, + -0.040212877094745636, + 0.008848894387483597, + -0.02211579494178295, + -0.0006178608164191246, + 0.04175853729248047, + 0.017981158569455147, + -0.00254872627556324, + 0.02547760121524334, + 0.019810188561677933, + 0.051599226891994476, + 0.03493187949061394, + -0.039079394191503525, + -0.014039729721844196, + 0.006466004066169262, + 0.03343774378299713, + 0.016770392656326294, + 0.05461326241493225, + 0.03176327794790268, + 0.003258763113990426, + 0.012384587898850441, + 0.0017469159793108702, + -0.011701921932399273, + 0.06666939705610275, + 0.0077733732759952545, + 0.03784286975860596, + -0.03269067406654358, + 0.04018711671233177, + 0.022412046790122986, + 0.05435565114021301, + -0.03761101886630058, + -0.029573597013950348, + -0.040418967604637146, + 0.04005831107497215, + -0.01419429574161768, + -0.04436039552092552, + 0.008610605262219906, + -0.012217141687870026, + 0.013666195794939995, + -0.002065707929432392, + 0.009029220789670944, + -0.01986170932650566, + -0.018483497202396393, + 0.012932008132338524, + 0.019410893321037292, + -0.0504399836063385, + -0.04904889315366745, + 0.014812558889389038, + -0.00847535952925682, + 0.0014329541008919477, + 0.033515024930238724, + 0.010149823501706123, + -0.011772764846682549, + -0.025168471038341522, + 0.048095736652612686, + -0.01952681690454483, + 0.037044279277324677, + -0.012609995901584625, + -0.060383718460798264, + 0.020467093214392662, + -0.0402386374771595, + 0.04284049570560455, + -0.03642601519823074, + 0.0516507513821125, + 0.015121690928936005, + -0.02223171852529049, + 0.0071744308806955814, + -0.012249342165887356, + 0.0253616776317358, + 0.009389874525368214, + -0.018367573618888855, + -0.013150976970791817, + -0.0034648508299142122, + -0.0014643502654507756, + 0.00045564721222035587, + -0.02648228034377098, + 0.009750528261065483, + -0.022798459976911545, + 0.014052610844373703, + -0.01033014990389347, + -0.02661108411848545, + 0.052526623010635376, + -0.019513936713337898, + 0.06945158541202545, + -0.039285484701395035, + 0.0063468595035374165, + -0.008565523661673069, + 0.011225343681871891, + 0.00844315905123949, + -0.016190771013498306, + -0.011714802123606205, + -0.015971802175045013, + 0.0007760492735542357, + -0.02851739712059498, + -0.012139858677983284, + -0.031067732721567154, + 0.004694937262684107, + 0.007122908718883991, + 0.045442353934049606, + -0.0037965234369039536, + -0.009370554238557816, + -0.010929092764854431, + 0.03500916063785553, + -0.007509323302656412, + 0.007225953042507172, + -0.010684363543987274, + 0.0395946130156517, + 0.02681717276573181, + -0.06605113297700882, + 0.0009861622238531709, + 0.0246146097779274, + 0.008127586916089058, + 0.0013830421958118677, + -0.007985901087522507, + -0.005039490293711424, + 0.02766728401184082, + -0.053376734256744385, + 0.02759000100195408, + -0.03111925534904003, + 0.014876961708068848, + 0.05852892994880676, + 0.007386958692222834, + -0.034184809774160385, + -0.02746119722723961, + 0.044102784246206284, + -0.016641588881611824, + -0.0015915450640022755, + -0.0004262636066414416, + 0.015469464473426342, + 0.02561928704380989, + 0.023790258914232254, + -0.022914385423064232, + -0.011901569552719593, + -0.006214834749698639, + 0.003651617793366313, + 0.014477666467428207, + 0.014155654236674309, + -0.031995128840208054, + -0.005696394946426153, + -0.022450687363743782, + -0.0018402994610369205, + -0.0027773547917604446, + -0.03593655675649643, + 0.016860555857419968, + 0.03565318509936333, + 0.022811342030763626, + 0.028878049924969673, + -0.026327714323997498, + 0.00797946099191904, + -0.00037997434264980257, + -0.019977634772658348, + -0.009653924033045769, + -0.009383434429764748, + 0.013331303372979164, + -0.025039665400981903, + 0.03243306279182434, + -0.017775071784853935, + 0.024460043758153915, + 0.05579826608300209, + -0.01799403876066208, + 0.012268663384020329, + 0.011470072902739048, + -0.0031573292799293995, + -0.0343908965587616, + -0.010066100396215916, + -0.01134770829230547, + 0.006330758798867464, + -0.04971867799758911, + 0.02223171852529049, + 0.000557081017177552, + -0.030166098847985268, + -0.03240730240941048, + -0.002233154373243451, + -0.06326895207166672, + 0.019681382924318314, + 0.05306760221719742, + -0.037224605679512024, + 0.044102784246206284, + -0.029599357396364212, + -0.03817776218056679, + 0.0028836189303547144, + -0.055952832102775574, + 0.006633450277149677, + -0.018625183030962944, + -0.009306151419878006, + -0.019217684864997864, + -0.018380453810095787, + -0.04500441998243332, + -0.028156742453575134, + 0.005429124925285578, + -0.00499762874096632, + -0.03191784396767616, + -0.010703683830797672, + 0.02085350640118122, + -0.009802049957215786, + -0.02528439462184906, + -0.029470551759004593, + 0.0025793174281716347, + 0.0034197689965367317, + 0.023803139105439186, + -0.011309066787362099, + 0.0008436718489974737, + 0.01820012740790844, + 0.02211579494178295, + -0.0037997434847056866, + 0.03480307385325432, + -0.030088815838098526, + -0.0020898589864373207, + 0.006356520112603903, + 0.00147642579395324, + -0.02163921669125557, + -0.003970409743487835, + -0.0520114041864872, + -0.01634533703327179, + -0.044308871030807495, + -0.02977968379855156, + 0.01728561334311962, + 0.016525663435459137, + 0.010536237619817257, + 0.0011326777748763561, + 0.0034197689965367317, + -0.04376789182424545, + -0.010046779178082943, + -0.022141555324196815, + -0.050336942076683044, + -0.01158599741756916, + -0.028105221688747406, + 0.04492713510990143, + -0.016371097415685654, + 0.00559335108846426, + 0.0016229412285611033, + 0.017530342563986778, + -0.007438480854034424, + -0.03212393447756767, + 0.015044407919049263, + 0.016448380425572395, + 0.020402690395712852, + -0.010729445144534111, + 0.00979560986161232, + -0.020106438547372818, + -0.009164465591311455, + -0.009441396221518517, + -0.012004612945020199, + -0.021755142137408257, + 0.03343774378299713, + -0.0010248037287965417, + -0.021858185529708862, + 0.00999525748193264, + -0.01393668632954359, + 0.0222961213439703, + -0.004170057363808155, + -0.034184809774160385, + -0.012023934163153172, + 0.004347164183855057, + 0.015211854130029678, + 0.01653854362666607, + -0.025374557822942734, + 0.02152329310774803, + -0.016126368194818497, + 0.01419429574161768, + 0.013318423181772232, + 0.014748157002031803, + 0.0026002482045441866, + 0.024524446576833725, + 0.0037707623559981585, + 0.02998577244579792, + 0.02376449666917324, + -0.0020882487297058105, + 0.0801166221499443, + -0.0105942003428936, + 0.005071691703051329, + 0.01273880060762167, + 0.015276256948709488, + -0.012126977555453777, + 0.020505733788013458, + -0.007605927065014839, + 0.014748157002031803, + -0.016731752082705498, + 0.00983425136655569, + -0.011998172849416733, + 0.0019707144238054752, + 0.05216597020626068, + 0.05564370006322861, + -0.0035582343116402626, + -0.006742934696376324, + -0.032330021262168884, + -0.019578339532017708, + 0.01827741041779518, + 0.015765715390443802, + -0.015611149370670319, + -0.01965562254190445, + 0.015675552189350128, + 0.020351167768239975, + -0.004901024978607893, + -0.011405671015381813, + -0.035241011530160904, + -0.01069080363959074, + -0.04016135632991791, + 0.02574809268116951, + 0.022064272314310074, + -0.02024812437593937, + -0.022927265614271164, + 0.008829573169350624, + -0.0721307247877121, + -0.017568983137607574, + -0.0036966996267437935, + 0.011244664900004864, + 0.018097084015607834, + -0.015778595581650734, + 0.01648702286183834, + -0.02269541658461094, + -0.006768695544451475, + 0.028414351865649223, + 0.034262094646692276, + -0.031737517565488815, + 0.027847612276673317, + -0.03421057015657425, + -0.010510477237403393, + -0.009776288643479347, + 0.004137856420129538, + 0.018367573618888855, + -0.028105221688747406, + 0.00215104129165411, + -0.05672566220164299, + 0.02648228034377098, + -0.0023056070785969496, + -0.03024338185787201, + -0.013254020363092422, + -0.018779749050736427, + -0.015031527727842331, + -0.024305477738380432, + -0.042866259813308716, + 0.02833707071840763, + 0.004176497459411621, + -0.008430277928709984, + -0.010078980587422848, + -0.003059115493670106, + -0.05149618536233902, + -0.021536173298954964, + -0.004205478820949793, + -0.030990449711680412, + 0.03320589289069176, + 0.036760907620191574, + -0.03184056282043457, + 0.047683559358119965, + -0.016049085184931755, + -0.019217684864997864, + 0.016371097415685654, + -0.029882729053497314, + -0.016912078484892845, + 0.001494136406108737, + 0.014413264580070972, + -0.005174735561013222, + 0.0015311677707359195, + 0.006916821002960205, + 0.0010948412818834186, + 0.00474967947229743, + -0.0033231654670089483, + -0.003105807350948453, + 0.020145080983638763, + -0.017504580318927765, + -0.045906051993370056, + 0.030758600682020187, + -0.020093558356165886, + 0.03521525114774704, + 0.008288593031466007, + 0.007161550223827362, + -0.017955398187041283, + 0.007290355395525694, + 0.018547900021076202, + 0.002196122892200947, + -0.02442140132188797, + 0.0032394423615187407, + -0.01313809584826231, + -0.010420313104987144, + -0.01499288622289896, + 0.014825440011918545, + 0.0045242710039019585, + -0.01257779449224472, + 0.0445922426879406, + -0.061723291873931885, + -0.017375776544213295, + 0.0009201497305184603, + -0.03969765827059746, + 0.015366420149803162, + 0.02534879744052887, + 0.01680903509259224, + -0.021162638440728188, + -0.012880486436188221, + 0.007728291675448418, + -0.0037707623559981585, + -0.013292661868035793, + 0.027383914217352867, + 0.029960010200738907, + -0.006723613943904638, + 0.015018646605312824, + 0.010542677715420723, + 0.014722395688295364, + -0.003154108999297023, + -0.029547834768891335, + 0.032793719321489334, + -0.03830656781792641, + 0.007232393138110638, + -0.022785579785704613, + -0.01986170932650566, + 0.0018306390848010778, + -0.011734123341739178, + -0.00020155948004685342, + 0.008662126958370209, + -0.004968647379428148, + -0.020866388455033302, + 0.022824222221970558, + 0.024382760748267174, + 0.00929971132427454, + 0.015443703159689903, + -0.020415570586919785, + -0.005528948735445738, + -0.02560640685260296, + 0.03289676085114479, + 0.011109419167041779, + 0.015520986169576645, + 0.020093558356165886, + 0.013344183564186096, + 0.03356654569506645, + 0.028362831100821495, + 0.0064466833136975765, + 0.014413264580070972, + 0.024988142773509026, + 0.005657753441482782, + 0.007631687913089991, + -0.00946071743965149, + 0.03632296994328499, + -0.019681382924318314, + 0.012783882208168507, + -0.030990449711680412, + 0.0019707144238054752, + 0.007947259582579136, + -0.03459698706865311, + -0.02223171852529049, + -0.002502034418284893, + 0.017156807705760002, + -0.0076960907317698, + 0.008913296274840832, + 0.0016744632739573717, + 0.01204325444996357, + -0.01164395920932293, + 0.03529253229498863, + 0.0174788199365139, + 0.010671483352780342, + 0.002627619309350848, + 0.02223171852529049, + 0.022399164736270905, + 0.0014965515583753586, + -0.004685277119278908, + -0.01944953389465809, + -0.014580710791051388, + 0.0036709385458379984, + 0.02112399786710739, + 0.009505799040198326, + -0.017826592549681664, + 0.012713040225207806, + -0.00026002482627518475, + 0.018238767981529236, + 0.005986206233501434, + -0.028491634875535965, + 0.009003459475934505, + -0.010581319220364094, + 0.0011471683392301202, + 0.013756358996033669, + 0.0028900590259581804, + 0.03369535133242607, + 0.020106438547372818, + -0.04528779163956642, + 0.048353344202041626, + -0.01973290555179119, + 0.02918718196451664, + 0.024807816371321678, + -0.018509259447455406, + 0.0012783883139491081, + -0.017298493534326553, + -0.009744088165462017, + 0.003241052385419607, + -0.03575623035430908, + 0.0067815762013196945, + 0.001954613719135523, + 0.015443703159689903, + -0.01680903509259224, + -0.0034294293727725744, + 0.004392245784401894, + 0.009789169766008854, + -0.009132265113294125, + -0.003279693890362978, + 0.007490002550184727, + -0.0004419616889208555, + 0.04889432713389397, + -0.008088945411145687, + 0.04057353362441063, + -0.003365027019754052, + 0.0014619352295994759, + 0.0164097398519516, + 0.032278500497341156, + -0.025838255882263184, + 0.029006855562329292, + -0.011463632807135582, + 0.0123073048889637, + 0.02905837632715702, + -0.022746939212083817, + -0.012391027994453907, + 0.016757512465119362, + 0.019423773512244225, + 0.013093014247715473, + 0.017118167132139206, + -0.03614264354109764, + 0.015147452242672443, + -0.005174735561013222, + 0.02859468013048172, + -0.007142229471355677, + 0.012159178964793682, + 0.008752290159463882, + 0.005889602471143007, + 0.016396859660744667, + 0.006185853388160467, + 0.0019079219782724977, + -0.015907401219010353, + -0.021922588348388672, + 0.017156807705760002, + 0.002864298177883029, + 0.025593526661396027, + 0.01148939412087202, + 0.004054132848978043, + -0.022811342030763626, + -0.028234025463461876, + -0.020505733788013458, + -0.018573660403490067, + 0.01622941344976425, + -0.02753848023712635, + -0.013163857161998749, + -0.013627554289996624, + 0.022824222221970558, + -0.04732290655374527, + 0.011804965324699879, + -0.019191924482584, + -0.010233546607196331, + 0.0008191184024326503, + 0.017762189731001854, + -0.009595962241292, + -0.013769240118563175, + 0.006420922465622425, + -0.008507560938596725, + 0.02297878824174404, + 0.002502034418284893, + -0.011025696061551571, + 0.01682191528379917, + 0.02044133096933365, + -0.034854594618082047, + 0.04508170112967491, + -0.0027805750723928213, + -0.02218019776046276, + -0.014426144771277905, + -0.00779269402846694, + -0.0005852570757269859, + -0.011270425282418728, + -0.009840691462159157, + -0.00640160171315074, + 0.02872348390519619, + 0.011315506882965565, + -0.014039729721844196, + -0.01872822642326355, + 0.0028192163445055485, + -0.0307843629270792, + 0.0411660335958004, + -0.013988208025693893, + 0.012816083617508411, + 0.007547964807599783, + -0.030063055455684662, + -0.02370009571313858, + 0.006961903069168329, + -0.0015786646399646997, + -0.010716564953327179, + 0.0022412047255784273, + 0.0011447531869634986, + 0.022077154368162155, + -0.0053582824766635895, + 0.0058477409183979034, + -0.003014033893123269, + 0.011779204942286015, + -0.015366420149803162, + 0.013820761814713478, + 0.0065915887244045734, + -0.010323709808290005, + -0.012094777077436447, + 0.014245817437767982, + 0.00040976048330776393, + 0.01347298827022314, + -0.040135595947504044, + 0.03145414590835571, + -0.008430277928709984, + 0.03691547363996506, + -0.016049085184931755, + -0.001305759302340448, + 0.008333674632012844, + 0.03580775111913681, + -0.0064499033614993095, + 0.026301953941583633, + 0.01728561334311962, + -0.014168535359203815, + -0.005329301115125418, + 0.011399229988455772, + 0.010684363543987274, + -0.013344183564186096, + 0.044308871030807495, + -0.009737648069858551, + -0.004356824327260256, + -0.0256836898624897, + -0.004569352604448795, + -0.0017646265914663672, + 0.0013854573480784893, + 0.00919666700065136, + -0.009029220789670944, + 0.02753848023712635, + -0.0012212310684844851, + 0.022077154368162155, + 0.03727612644433975, + 0.010239986702799797, + 0.003909227438271046, + 0.00474967947229743, + -0.03892482817173004, + 0.007116468623280525, + -0.011141620576381683, + -0.038358088582754135, + 0.006878179498016834, + -0.008114706724882126, + -0.05667414143681526, + 0.0070263054221868515, + -0.03129957988858223, + 0.009319031611084938, + -0.019372250884771347, + 0.029753923416137695, + -0.011573117226362228, + 0.009331912733614445, + -0.0023796698078513145, + 0.01452918816357851, + 0.020415570586919785, + 0.0014104133006185293, + -0.004611214157193899, + 0.04196462407708168, + -0.021484650671482086, + 0.010658602230250835, + 0.004221579525619745, + -0.02859468013048172, + -0.006710733287036419, + -0.0013508410193026066, + -0.028543157503008842, + 0.030140338465571404, + 0.01727273128926754, + -0.017092404887080193, + -0.018187247216701508, + 0.012655077502131462, + -0.01786523498594761, + -0.03673514723777771, + 0.000610213028267026, + 0.023120472207665443, + 0.013691957108676434, + -0.015469464473426342, + 0.022656776010990143, + -0.012294423766434193, + 0.009879332967102528, + 0.006910380907356739, + -0.009170906618237495, + 0.04436039552092552, + 0.0016664129216223955, + 0.0038416050374507904, + 0.007161550223827362, + 0.011321947909891605, + 0.025181351229548454, + 0.0032491027377545834, + -0.022463567554950714, + 0.0381004773080349, + 0.00043713150080293417, + 0.03225273638963699, + 0.00033167251967824996, + -0.017697788774967194, + -0.0029254804830998182, + 0.001536802970804274, + 0.016190771013498306, + -0.007895737886428833, + 0.023043189197778702, + -0.004904245026409626, + 0.004794761072844267, + -0.03415904939174652, + 0.049667153507471085, + -0.022540850564837456, + -0.04036744311451912, + 0.0017565763555467129, + -0.04217071086168289, + -0.007386958692222834, + 0.019488176330924034, + 0.018831271678209305, + 0.022811342030763626, + 0.011515154503285885, + 0.055695224553346634, + 0.016512783244252205, + -0.009048542007803917, + -0.004688497167080641, + 0.01280320342630148, + -0.030964689329266548, + 0.016332456842064857, + -0.035833511501550674, + 0.020093558356165886, + -0.006646330934017897, + 0.011379909701645374, + 0.05157346650958061, + 0.021999871358275414, + -0.03184056282043457, + 0.00873940996825695, + -0.009595962241292, + -0.012629317119717598, + 0.01581723801791668, + 0.006845978554338217, + 0.011476512998342514, + 0.045828770846128464, + 0.02077622525393963, + -0.030629796907305717, + 0.010903331451117992, + 0.004321403335779905, + -0.012126977555453777, + -0.026121625676751137, + 0.014413264580070972, + -0.002849807497113943, + -0.032871000468730927, + -0.003371467348188162, + -0.01885703206062317, + 0.00910006370395422, + 0.013279781676828861, + -0.012700159102678299, + -0.01939801312983036, + -0.001110941986553371, + -0.01932073011994362, + 0.0014659602893516421, + -0.004508170299232006, + 0.00883601326495409, + -0.010903331451117992, + -0.004099214915186167, + -0.005596571136265993, + -0.0225794930011034, + -0.0386672206223011, + 0.021858185529708862, + -0.010735885240137577, + -0.019694263115525246, + -0.014413264580070972, + 0.03238154202699661, + 0.0054935272783041, + -0.025129828602075577, + -0.03428785502910614, + -0.020995192229747772, + 0.029753923416137695, + -0.03936276584863663, + 0.013588912785053253, + -0.009441396221518517, + 0.010729445144534111, + 0.007651008665561676, + 0.01792963780462742, + 0.018084201961755753, + -0.029573597013950348, + -0.008533322252333164, + 0.0656389594078064, + 0.01393668632954359, + 0.011959531344473362, + -0.03493187949061394, + -0.013170297257602215, + -0.012474751099944115, + 0.034056004136800766, + -0.006559387780725956, + 0.032072409987449646, + 0.010529797524213791, + -0.021420247852802277, + 0.013743478804826736, + -0.02800217643380165, + -0.03395296260714531, + -0.03289676085114479, + 0.013408586382865906, + -0.012584235519170761, + -0.013292661868035793, + 0.013820761814713478, + -0.02111111767590046, + 0.00019763495947699994, + 0.0035646746400743723, + -0.012796763330698013, + -0.012468311004340649, + -0.010838929563760757, + -0.019024478271603584, + -0.011515154503285885, + -0.012069015763700008, + 0.018019801005721092, + 0.0014184635365381837, + -0.03846113383769989, + -0.0034873916301876307, + -0.010922652669250965, + 0.0211884006857872, + 0.014413264580070972, + -0.0012212310684844851, + 0.01194665115326643, + 0.019951872527599335, + -0.02158769592642784, + -0.0005530558992177248, + 0.0014812559820711613, + 0.018689585849642754, + -0.006385501008480787, + -0.020106438547372818, + -0.016126368194818497, + 0.011624638922512531, + 0.012584235519170761, + -0.0034294293727725744, + 0.004511390347033739, + 0.009183786809444427, + -0.024447163566946983, + 0.02779608964920044, + -0.017375776544213295, + 0.009673245251178741, + -0.014013969339430332, + 0.004492069594562054, + -0.00210112938657403, + 0.008758730255067348, + -0.019307848066091537, + 0.028182504698634148, + 0.008185548707842827, + -0.039414286613464355, + -0.037507977336645126, + -0.011199582368135452, + -0.033721111714839935, + 0.011856487952172756, + 0.03719884529709816, + -0.02456308715045452, + -0.03871874138712883, + -0.05036270245909691, + 0.008765171281993389, + 0.025232871994376183, + -0.012552034109830856, + 0.009666805155575275, + -0.018019801005721092, + 0.02403498813509941, + 0.018431976437568665, + -0.013279781676828861, + 0.019114641472697258, + 0.012854725122451782, + 0.005206936504691839, + 0.014439024962484837, + -0.014284458942711353, + -0.017491700127720833, + -0.01892143487930298, + 0.009228868409991264, + -0.014838320203125477, + -0.0005095842643640935, + -0.0028449774254113436, + 0.04229951649904251, + 0.020557256415486336, + -0.009544440545141697, + 0.0020979091059416533, + 0.011360588483512402, + -0.006833097897469997, + 0.00963460374623537, + -0.02892957255244255, + -0.01707952469587326, + 0.0011334827868267894, + 0.013730598613619804, + -0.008584843948483467, + 0.005316420923918486, + 0.03361807018518448, + -0.00638872105628252, + -0.028440114110708237, + 0.013563152402639389, + -0.008546202443540096, + -0.013975327834486961, + 0.03235578164458275, + 0.002714562462642789, + -0.011933770962059498, + 0.014683754183351994, + 0.011727682314813137, + -0.0006379865808412433, + 0.00764456856995821, + -0.015379300341010094, + -0.012416788376867771, + -0.00913870520889759, + -0.01906311884522438, + -0.02587689645588398, + 0.006050608586519957, + -0.01595892198383808, + -0.005786558613181114, + -0.09299711138010025, + -0.039543092250823975, + -0.0016156960045918822, + -0.017620505765080452, + 0.012249342165887356, + -0.0021558713633567095, + 0.010536237619817257, + 0.04832758381962776, + -0.016577186062932014, + 0.021291444078087807, + 0.005132874008268118, + -0.02251509018242359, + 0.024679012596607208, + 0.029032615944743156, + 0.012609995901584625, + -0.003790083108469844, + -0.006005526520311832, + 0.0023764497600495815, + 0.023455364629626274, + -0.026559563353657722, + -0.001912752166390419, + 0.016268054023385048, + 0.04309810698032379, + -0.009319031611084938, + -0.020067797973752022, + 0.015933161601424217, + -0.00830147322267294, + 0.010078980587422848, + 0.007161550223827362, + -0.017710668966174126, + 0.014748157002031803, + 0.02310759201645851, + -0.004717478062957525, + 0.00714867003262043, + -0.0012381367851048708, + 0.021497530862689018, + 0.016332456842064857, + -0.005078131798654795, + 0.05703479424118996, + 0.03214969485998154, + 0.0005848545697517693, + 0.007393399253487587, + 0.010748765431344509, + -0.013859403319656849, + -0.024872219190001488, + -0.010272188112139702, + -0.005754357203841209, + -0.0014240987366065383, + 0.015675552189350128, + 0.01805844157934189, + 0.007116468623280525, + -0.005764017812907696, + -0.01347298827022314, + -0.012133417651057243, + -0.003257152857258916, + 0.012062575668096542, + 0.00995661597698927, + 0.005712495651096106, + 0.005487087182700634, + -0.01661582663655281, + 0.03307708725333214, + 0.02189682610332966, + 0.0014772308059036732, + -0.01892143487930298, + -0.0002013582270592451, + 0.01899871788918972, + 0.008056744001805782, + -0.014374623075127602, + 0.010336589999496937, + 0.00847535952925682, + 0.007567285560071468, + -0.0021945128683000803, + -0.014039729721844196, + -0.01364043541252613, + 0.005979765672236681, + 0.02555488422513008, + 0.011566677130758762, + 0.0011519985273480415, + -0.0027242228388786316, + -0.012719480320811272, + -0.02210291475057602, + -0.01906311884522438, + 0.00979560986161232, + 0.012571354396641254, + -0.004933226387947798, + 0.005528948735445738, + -0.007103587966412306, + -0.029109898954629898, + -0.001284828525967896, + 0.009666805155575275, + 0.007702530827373266, + 0.00734831765294075, + 0.022927265614271164, + 0.01741441711783409, + -0.002469833241775632, + 0.033386219292879105, + 0.011908009648323059, + -0.012004612945020199, + -0.0012365266447886825, + 0.0211884006857872, + 0.0009129044483415782, + -0.03441666066646576, + 0.012275103479623795, + -0.031531430780887604, + -0.0006516720750369132, + 0.0036709385458379984, + 0.012783882208168507, + 0.014670873992145061, + -0.03640025481581688, + -0.021136878058314323, + 0.009454277344048023, + 0.02753848023712635, + -0.010072540491819382, + -0.004012271296232939, + -0.002395770512521267, + 0.015714192762970924, + -0.008288593031466007, + -0.013730598613619804, + -0.019642742350697517, + 0.009042100980877876, + 0.008829573169350624, + 0.012494071386754513, + 0.002320097526535392, + -0.023455364629626274, + 0.00893905758857727, + 0.0037643220275640488, + -0.0011053067864850163, + -0.0003562259371392429, + 0.01535353995859623, + 0.003542133839800954, + 0.015456583350896835, + 0.021536173298954964, + -0.035318292677402496, + 0.0018225888488814235, + -0.0023442485835403204, + 0.0012469920329749584, + -0.0010248037287965417, + -0.0038126239087432623, + 0.011927329935133457, + -0.007573726121336222, + -0.01309945434331894, + -0.004585453309118748, + -0.0007752442616038024, + -0.011508714407682419, + -0.006015187129378319, + 0.0007052066503092647, + -0.017118167132139206, + 0.01594604179263115, + 0.0034165489487349987, + -0.017787951976060867, + -0.020157961174845695, + 0.04155245050787926, + 0.02972816303372383, + 0.02402210608124733, + 0.011740563437342644, + -0.01986170932650566, + -0.017259851098060608, + 0.013923806138336658, + -0.012912687845528126, + 0.0012518222210928798, + -0.032201215624809265, + -0.0001307168131461367, + 0.009950175881385803, + -0.0035646746400743723, + 0.0024344120174646378, + -0.015971802175045013, + -0.006259916350245476, + -0.017440179362893105, + -0.008771611377596855, + -0.013820761814713478, + -0.006871739402413368, + 0.008359435945749283, + -0.021729379892349243, + 0.006308217998594046, + -0.01452918816357851, + -0.012004612945020199, + -0.006276017054915428, + -0.008932617492973804, + 0.02867196314036846, + -0.01735001429915428, + -0.01832893118262291, + 0.018509259447455406, + -0.005062031093984842, + 0.00673649413511157, + 0.0015947652282193303, + 0.005686734803020954, + 0.007663889322429895, + 0.011817846447229385, + 0.013357064686715603, + 0.0164097398519516, + 0.01320249866694212, + -0.012616435997188091, + -0.016139250248670578, + 0.006247035693377256, + -0.003403668524697423, + 0.0059540048241615295, + 0.012333065271377563, + 0.015868758782744408, + -0.016113488003611565, + 8.608793723396957e-5, + -0.010903331451117992, + -0.0340302437543869, + 0.017259851098060608, + 0.0004419616889208555, + -0.0016664129216223955, + 0.005918583367019892, + -0.011444312520325184, + 0.022012751549482346, + 0.015894519165158272, + -0.015675552189350128, + -0.002519745146855712, + 0.0022025632206350565, + 0.005284219514578581, + -0.029960010200738907, + -0.008410957641899586, + 0.01581723801791668, + 0.010207785293459892, + -0.02158769592642784, + 0.03441666066646576, + -0.0164097398519516, + 0.02673988975584507, + -0.01680903509259224, + 0.007625247817486525, + -0.0041958182118833065, + -0.0005598986172117293, + -0.0027950655203312635, + 0.025271514430642128, + -0.033128611743450165, + -0.020428450778126717, + 0.0016760732978582382, + -0.00999525748193264, + 0.00284658744931221, + -0.005100672598928213, + -0.013666195794939995, + -0.048817042261362076, + 0.004968647379428148, + 0.02283710241317749, + -0.01535353995859623, + 0.0020141860004514456, + -0.009319031611084938, + -0.018496377393603325, + -0.02541320025920868, + -0.01700224168598652, + -0.0048720440827310085, + 0.030964689329266548, + 0.010085420683026314, + -0.005261678714305162, + -0.016590066254138947, + -0.00939631462097168, + -0.0027918454725295305, + 0.01840621419250965, + -0.009866452775895596, + -0.004752899520099163, + 0.015173212625086308, + -0.015984684228897095, + -0.03235578164458275, + 0.036297209560871124, + 0.00192402268294245, + 0.017646266147494316, + -0.0006629425333812833, + -0.004121755715459585, + -0.007470682263374329, + 0.022734059020876884, + -0.02031252719461918, + 0.04085690155625343, + 0.0014563000295311213, + -0.008823133073747158, + 0.007361197844147682, + 0.03214969485998154, + 0.009615283459424973, + 0.0014595200773328543, + -0.012957769446074963, + -0.029341747984290123, + -0.014645112678408623, + -0.010033898986876011, + -0.009080742485821247, + 0.0033231654670089483, + -0.028646200895309448, + 0.0024086509365588427, + 0.03256186842918396, + -0.024782055988907814, + -0.002175192115828395, + -0.004392245784401894, + 0.018367573618888855, + 0.01094841305166483, + 0.002452122513204813, + 0.0017581863794475794, + -0.005210156552493572, + 0.04588029161095619, + -0.024073628708720207, + 0.012751681730151176, + 0.010961294174194336, + 0.027744567021727562, + -0.0010763256577774882, + 0.008687888272106647, + -0.0022025632206350565, + 0.019282087683677673, + 0.015160332433879375, + 0.03678666800260544, + -0.01668022945523262, + 0.025116948410868645, + -0.011566677130758762, + -0.01893431507050991, + -0.03194360435009003, + 0.00559335108846426, + -0.00012930801312904805, + 0.000315974437398836, + 0.008398077450692654, + -0.001700224238447845, + 0.0011254324344918132, + 0.014374623075127602, + 0.017620505765080452, + -0.021561933681368828, + -0.018045561388134956, + 0.007805574685335159, + 0.01746593974530697, + 0.012590675614774227, + 0.0011053067864850163, + 0.0044373273849487305, + -0.03573046997189522, + -0.0053743827156722546, + -0.008565523661673069, + 0.0340302437543869, + 0.006807337049394846, + -0.014451906085014343, + -0.029573597013950348, + -0.018689585849642754, + 0.007947259582579136, + 0.02005491778254509, + 0.008919736370444298, + -0.003241052385419607, + 0.03251034766435623, + -0.019088881090283394, + -0.022051392123103142, + 0.004756119567900896, + 0.000944300671108067, + -0.018354693427681923, + -0.006987663917243481, + -0.020016275346279144, + -0.0017823373200371861, + -0.010600640438497066, + 0.011798525229096413, + -0.01899871788918972, + 0.002398990560323, + 0.012880486436188221, + 0.021355846896767616, + -0.003819064237177372, + 0.026971738785505295, + 0.00415073661133647, + -0.00864280667155981, + 0.008514001034200191, + 0.027255108579993248, + 0.012809643521904945, + -0.023313680663704872, + 0.003790083108469844, + 0.025915538892149925, + 0.0019047019304707646, + 0.029212942346930504, + -0.02608298510313034, + -0.03400448337197304, + -0.04227375611662865, + 0.005132874008268118, + -0.005715715698897839, + 0.025065425783395767, + -0.015276256948709488, + 0.005223037209361792, + 0.01568843238055706, + -0.0016921738861128688, + -0.021484650671482086, + -0.02787337265908718, + -0.013408586382865906, + -0.007966580800712109, + -0.019346490502357483, + -0.003918888047337532, + -0.00022077959147281945, + 0.011869368143379688, + -0.03567894548177719, + 0.006704293191432953, + 0.01045251451432705, + -0.022025631740689278, + 0.029702400788664818, + -0.0061053503304719925, + -0.011856487952172756, + -0.0026002482045441866, + 0.00064965954516083, + -0.011753443628549576, + -0.013704837299883366, + -0.002909379778429866, + 0.014683754183351994, + 0.013923806138336658, + -0.013962446711957455, + -0.01463223248720169, + -0.0018821610137820244, + 0.01148939412087202, + 0.00038862842484377325, + 0.002772524720057845, + -0.020866388455033302, + 0.009621723555028439, + -0.01845773681998253, + -0.014516307972371578, + -0.012384587898850441, + 0.009653924033045769, + -0.004141076467931271, + -0.00933835282921791, + -0.0222961213439703, + 0.01821300759911537, + -0.00320080085657537, + 0.0358850359916687, + 0.0009322252008132637, + -0.02018372155725956, + -0.004369704984128475, + 0.016049085184931755, + -0.004501729737967253, + -0.0018129284726455808, + -0.030475230887532234, + -0.013170297257602215, + -0.00605382863432169, + 0.021871065720915794, + 0.01792963780462742, + -0.02601858228445053, + -0.013292661868035793, + -0.014052610844373703, + -0.00249881437048316, + -0.003754661651328206, + -0.015559627674520016, + 0.00187411077786237, + -0.006968343164771795, + -0.002817606320604682, + 0.0006738104275427759, + -0.018573660403490067, + 0.012932008132338524, + 0.00354857393540442, + -0.013421466574072838, + 0.01899871788918972, + 0.033849917352199554, + -0.033978722989559174, + -0.022669656202197075, + -0.007477122358977795, + 0.011804965324699879, + -0.02362281270325184, + -0.00032865366665646434, + -0.017311373725533485, + -0.019745785742998123, + -0.01253915298730135, + 0.0055128480307757854, + -0.013015731237828732, + 0.015405061654746532, + 0.010916212573647499, + 0.02653380110859871, + 0.027512717992067337, + 0.0037128000985831022, + -0.015598269179463387, + 0.013511629775166512, + -0.0009249799186363816, + 0.0022637455258518457, + -0.0017436958150938153, + 0.003247492713853717, + -0.014361741952598095, + -0.03328317776322365, + 0.03627144917845726, + 0.017259851098060608, + 0.0023555189836770296, + -0.002672700909897685, + 0.009576641954481602, + -0.03137686476111412, + 0.013460108079016209, + 0.03627144917845726, + -0.026224670931696892, + -0.0072839148342609406, + -0.0018080982845276594, + 0.016061967238783836, + 0.0018725006375461817, + -0.0033907881006598473, + -0.01647414267063141, + 0.013923806138336658, + -0.012056135572493076, + -0.020235244184732437, + 0.015173212625086308, + 0.013035052455961704, + 0.0012590675614774227, + 0.015855878591537476, + -0.02117551863193512, + 0.023133354261517525, + 0.03176327794790268, + 0.012287983670830727, + -0.023481126874685287, + 0.0331028513610363, + -0.019629860296845436, + -0.021098235622048378, + 0.014967124909162521, + -0.04773508384823799, + -0.0174788199365139, + -0.02144601009786129, + 0.024253955110907555, + -0.004817301873117685, + -0.007953700609505177, + -0.012333065271377563, + -0.004797981120646, + 0.02421531453728676, + 0.005876721814274788, + 0.002316877478733659, + -0.02224460057914257, + -0.035447098314762115, + 0.01707952469587326, + -0.007992342114448547, + -0.015842998400330544, + -0.0012019104324281216, + 0.019243447110056877, + -0.006150432396680117, + 0.001040099305100739, + -0.014104132540524006, + -0.01105145737528801, + -0.025503363460302353, + 0.0037353411316871643, + -0.00969900656491518, + 0.006514305714517832, + 0.027177825570106506, + -0.01707952469587326, + -0.013743478804826736, + 0.0009515459532849491, + -0.01188224833458662, + -0.005139314103871584, + -0.01826453022658825, + -0.004765779711306095, + -0.004231239669024944, + -0.016564305871725082, + 0.0021945128683000803, + 0.0023619590792804956, + 0.004347164183855057, + -0.010510477237403393, + -0.00943495612591505, + -0.015804355964064598, + 0.005348621867597103, + -0.0001436979218851775, + 0.0089004160836339, + -0.0009145145304501057, + -0.0005176345584914088, + 0.006263136398047209, + -0.005068471189588308, + 0.0009346402948722243, + -0.011167381890118122, + -0.0014973565703257918, + 0.007309676147997379, + -0.0032555428333580494, + -0.012861165218055248, + 0.0771283507347107, + -0.006575488485395908, + -0.00863636564463377, + -0.0031734297517687082, + 0.01164395920932293, + -0.005174735561013222, + 0.003542133839800954, + 0.020879268646240234, + 0.007992342114448547, + -0.0032201216090470552, + -0.014735275879502296, + -0.01834181323647499, + 0.0033940081484615803, + 0.011927329935133457, + -0.007193751633167267, + 0.002764474367722869, + 0.00800522230565548, + 0.03356654569506645, + -0.0015947652282193303, + 0.01621653139591217, + 0.014078371226787567, + -0.0024263616651296616, + -0.0025712670758366585, + 0.017530342563986778, + -0.015237615443766117, + 0.012410348281264305, + 0.008732969872653484, + 0.0346742682158947, + 0.010246426798403263, + 0.02275981940329075, + 0.01866382546722889, + 0.019771546125411987, + -0.029599357396364212, + -0.009557320736348629, + 0.0021462109871208668, + 0.011663280427455902, + 0.006031287834048271, + 0.015057288110256195, + 0.007966580800712109, + 0.01845773681998253, + -0.020621659234166145, + -0.024253955110907555, + 0.018895672634243965, + 0.024537326768040657, + -0.0031363985035568476, + 0.009009900502860546, + -0.008030983619391918, + 0.0010763256577774882, + 0.0004934836179018021, + -0.0019191924948245287, + -0.013975327834486961, + -0.006218054797500372, + 0.009467157535254955, + 0.006134331692010164, + 0.0019739344716072083, + -0.000844476860947907, + 0.016319576650857925, + -0.009415635839104652, + -0.0064338031224906445, + 0.004047692753374577, + -0.001888601342216134, + -0.010066100396215916, + -0.018316050991415977, + -0.02787337265908718, + -0.0013387654908001423, + -0.013563152402639389, + -0.0028449774254113436, + -0.014516307972371578, + 0.001327495090663433, + 0.006218054797500372, + 0.002630839357152581, + 0.023056071251630783, + 0.009911534376442432, + -0.02098231203854084, + -0.012165619060397148, + 0.013112335465848446, + 0.009782729670405388, + 0.0027982855681329966, + -0.012693719007074833, + -0.0029866627883166075, + -0.002878788625821471, + -0.0028449774254113436, + -0.01035591121762991, + -0.0312480591237545, + 0.005838080309331417, + 0.0011689041275531054, + 0.020930789411067963, + -0.020157961174845695, + 0.014876961708068848, + -0.009409194812178612, + -0.01575283519923687, + 0.023777376860380173, + -0.020016275346279144, + 0.008861774578690529, + -0.009048542007803917, + -0.009306151419878006, + -0.018032681196928024, + -0.019011598080396652, + 0.007251713890582323, + 0.005519288592040539, + 0.008533322252333164, + 0.005815539509057999, + 0.0008750680135563016, + 0.0019964752718806267, + -0.00913870520889759, + -0.014606471173465252, + 0.009492918848991394, + 0.025374557822942734, + -0.03436513617634773, + 0.007393399253487587, + -0.0038995672948658466, + -0.02574809268116951, + -0.004466308746486902, + -0.02297878824174404, + -0.029831206426024437, + 0.015134571120142937, + 0.00824351143091917, + -0.008088945411145687, + -0.012094777077436447, + -0.024782055988907814, + -0.007399839349091053, + 0.0022943366784602404, + 0.004759339615702629, + -0.010864689946174622, + -0.003551793983206153, + 0.0005671438993886113, + 0.002531015546992421, + -0.00724527332931757, + -0.028079459443688393, + 0.015997564420104027, + -0.0005607036873698235, + 0.007779813837260008, + -0.016396859660744667, + 0.0009346402948722243, + -0.0009998477762565017, + -0.003403668524697423, + 0.006227714940905571, + 0.0032233416568487883, + 0.001948173507116735, + -0.020673179998993874, + 0.010053219273686409, + -0.005132874008268118, + -0.016100607812404633, + 0.030191859230399132, + -0.0046788365580141544, + -0.009093623608350754, + -0.018161484971642494, + -0.00625347625464201, + 0.017633385956287384, + -0.00364839774556458, + 0.022257480770349503, + -0.02694597654044628, + 0.000551848323084414, + 0.0036355173215270042, + -0.0006858858978375793, + 0.02071182243525982, + -0.024704772979021072, + -0.004562912043184042, + 0.006044168025255203, + -0.010568439029157162, + 0.01655142568051815, + 0.0034229892771691084, + -0.027718806639313698, + -0.0019932552240788937, + -0.01892143487930298, + -0.005915363319218159, + 0.013576032593846321, + 0.00744492094963789, + 0.027899133041501045, + 0.011437871493399143, + -0.015302017331123352, + -0.003609756240621209, + -0.00205121748149395, + -0.013756358996033669, + 0.008114706724882126, + 0.0007732316735200584, + -0.00433750357478857, + 0.005976545624434948, + -0.017697788774967194, + 0.0171954482793808, + 0.02237340435385704, + -0.019410893321037292, + 0.0034519704058766365, + -0.018522139638662338, + 0.007889297790825367, + -0.0337468758225441, + 0.005651313345879316, + -0.004443767946213484, + -0.00529387965798378, + 0.013717717491090298, + -0.02587689645588398, + 0.005033050198107958, + 0.005100672598928213, + 0.0006391941569745541, + -0.015662671998143196, + 0.004012271296232939, + 0.0017855573678389192, + 0.011476512998342514, + 0.00021212550927884877, + -0.00519727636128664, + -0.0009539609891362488, + 0.002587367780506611, + 0.00884245429188013, + -0.00880381278693676, + 0.0020496074575930834, + 0.001458715065382421, + -0.012964209541678429, + -0.031196538358926773, + -0.003967189695686102, + 0.019037358462810516, + -0.04255712777376175, + -0.011953091248869896, + 0.01668022945523262, + -0.004427667241543531, + -0.018547900021076202, + 0.016177890822291374, + 0.013157417066395283, + -0.003651617793366313, + 0.029960010200738907, + 0.007960140705108643, + 0.0160877276211977, + 0.016242293640971184, + 0.008823133073747158, + -0.014761037193238735, + -0.014683754183351994, + -0.0011415331391617656, + -0.010832488536834717, + 0.0032426624093204737, + 0.009647483937442303, + -0.007779813837260008, + 0.026662606745958328, + -0.0034873916301876307, + -0.004826962016522884, + -0.007303235586732626, + 0.012172059156000614, + 0.024060748517513275, + 0.02064741961658001, + 0.002136550610885024, + -0.017311373725533485, + -0.00879737176001072, + -0.004079894162714481, + 0.00594112416729331, + -0.019887471571564674, + 0.009963056072592735, + -0.002608298556879163, + -9.74589929683134e-5, + 0.009357673116028309, + -0.0018145384965464473, + -0.01185004785656929, + -2.2993681341176853e-5, + 0.002605078276246786, + -0.0052971001714468, + 0.013118775561451912, + -0.00025137074408121407, + 0.009357673116028309, + 0.006878179498016834, + 0.004263441078364849, + 0.01821300759911537, + 0.01499288622289896, + -0.010510477237403393, + -0.01049115601927042, + 0.01009186077862978, + 0.007605927065014839, + 0.006507865618914366, + 0.020402690395712852, + 0.009447836317121983, + -0.040006790310144424, + -0.017710668966174126, + -0.014129893854260445, + 0.019578339532017708, + -0.0066785323433578014, + 0.008121146820485592, + 0.01807132177054882, + 0.010658602230250835, + -0.0024344120174646378, + -0.003542133839800954, + 0.019642742350697517, + -0.011263985186815262, + 0.01700224168598652, + -0.0054613263346254826, + -0.007090707775205374, + 0.011263985186815262, + -0.005557929631322622, + -0.0050169494934380054, + -0.004334283526986837, + -0.043716371059417725, + -0.022128675132989883, + -0.00469815731048584, + -0.014001088216900826, + -0.01680903509259224, + -0.00415073661133647, + 0.0038448250852525234, + 0.004762559663504362, + 0.008346554823219776, + -0.022746939212083817, + -0.02211579494178295, + 0.00714867003262043, + 0.005577250383794308, + 0.0027628643438220024, + -0.004794761072844267, + -0.0023378082551062107, + 0.0035936557687819004, + 0.0031814801041036844, + -0.016371097415685654, + 0.012906246818602085, + -0.0067815762013196945, + 0.008275712840259075, + -0.0016374317929148674, + -0.003104197094216943, + 0.014245817437767982, + 0.012526272796094418, + 0.007367637939751148, + -0.003616196569055319, + -0.01118670217692852, + 0.0005848545697517693, + -0.016306696459650993, + 0.015971802175045013, + 0.011824286542832851, + 0.00943495612591505, + -0.0032072411850094795, + 0.0036355173215270042, + 0.013047932647168636, + 0.006511085666716099, + 0.005925023928284645, + 0.019423773512244225, + 0.013691957108676434, + 0.02084062620997429, + 0.012365266680717468, + 0.024460043758153915, + 0.0026356694288551807, + 0.012101217173039913, + -0.008694328367710114, + -0.020763343200087547, + 0.0033167251385748386, + -0.014786798506975174, + 0.009222428314387798, + 0.003751441603526473, + -0.017787951976060867, + -0.009763408452272415, + -0.006430582609027624, + -0.022412046790122986, + -0.00929971132427454, + 0.004327843431383371, + -0.0011407280107960105, + -0.0018789409659802914, + 0.03956885263323784, + 0.010368791408836842, + 0.0040348125621676445, + 0.0260057020932436, + 0.035318292677402496, + 0.010008137673139572, + 0.0029770024120807648, + 0.008391636423766613, + -0.00484950328245759, + -0.029831206426024437, + -0.0069297016598284245, + -0.004208698868751526, + -0.0018370794132351875, + 0.006073149386793375, + 0.003967189695686102, + -0.004514610394835472, + 0.02363569289445877, + -0.008855334483087063, + -0.0020431671291589737, + 0.013447227887809277, + 0.0017855573678389192, + 0.0033231654670089483, + 0.02905837632715702, + -0.0010392942931503057, + 0.008823133073747158, + 0.0013435956789180636, + -0.02952207438647747, + -0.008481800556182861, + -0.028414351865649223, + -0.004942886531352997, + 0.0035872154403477907, + -0.010697243735194206, + 0.022592373192310333, + 0.002086638705804944, + 0.016834795475006104, + 0.018753988668322563, + -0.003307064762338996, + 0.0033811277244240046, + 0.0035228130873292685, + 0.01820012740790844, + 0.021136878058314323, + -0.017246970906853676, + 0.017852354794740677, + 0.0010392942931503057, + -0.023609930649399757, + 0.008855334483087063, + 0.011637519113719463, + 0.027306631207466125, + -0.012049694545567036, + 0.00850112084299326, + -0.01991323195397854, + -0.017826592549681664, + 0.014941364526748657, + 0.010252866894006729, + -0.008391636423766613, + -0.0014265138888731599, + -0.009679685346782207, + -0.011895129457116127, + 0.01078740693628788, + -0.019475296139717102, + -0.01429734006524086, + -0.007902177982032299, + 0.007354757748544216, + 0.02349400706589222, + -0.03191784396767616, + 0.01109009888023138, + 0.013292661868035793, + 0.009789169766008854, + 0.024782055988907814, + 0.00574469706043601, + -0.005039490293711424, + 0.027255108579993248, + -0.0031138574704527855, + 0.022334763780236244, + 0.010838929563760757, + 0.0346742682158947, + 0.013125215657055378, + 0.016912078484892845, + -0.00729679549112916, + 0.008410957641899586, + -0.008262831717729568, + 0.027693046256899834, + -0.0033875678200274706, + 0.015920281410217285, + 0.0395946130156517, + 0.007341877091675997, + -0.025580646470189095, + 0.02269541658461094, + 0.011534475721418858, + -0.013318423181772232, + -0.013015731237828732, + 0.016641588881611824, + -0.014709515497088432, + -0.00229916675016284, + 0.02587689645588398, + -0.010806728154420853, + -0.007683210074901581, + 0.009686125442385674, + 0.00893905758857727, + -0.002374839736148715, + 0.015520986169576645, + -0.004617654252797365, + 0.007857096381485462, + 0.0037450012750923634, + -0.015095929615199566, + 0.006369400303810835, + 0.012861165218055248, + 0.008262831717729568, + 0.011231783777475357, + -0.025464721024036407, + -0.013150976970791817, + -0.010272188112139702, + 0.009119383990764618, + 0.02104671485722065, + -0.019114641472697258, + 0.007586606312543154, + -0.0023925502318888903, + 0.025735212489962578, + 0.004607994109392166, + -0.006285677198320627, + 0.010040339082479477, + 0.007702530827373266, + 0.008159788325428963, + 0.0018016580725088716, + -0.0014852810418233275, + -5.343389057088643e-5, + -0.0013146146666258574, + 0.03598807752132416, + -0.001441004453226924, + 0.0017018342623487115, + -0.0021768021397292614, + -0.024112271144986153, + 0.0029448012355715036, + -0.008385196328163147, + -0.002289506373926997, + -0.009254629723727703, + -0.0013669416075572371, + -0.014735275879502296, + -0.009003459475934505, + 0.005184395704418421, + -0.008320794440805912, + -0.028826529160141945, + 0.006398381665349007, + -0.0019256327068433166, + -0.0034133289009332657, + -0.004305302631109953, + 0.0047754403203725815, + -0.0006633450393564999, + 0.012365266680717468, + 0.007116468623280525, + -0.014748157002031803, + -0.0011238224105909467, + 0.04436039552092552, + 0.003992950543761253, + -0.01452918816357851, + 0.0035163727588951588, + -0.02434411831200123, + -0.017775071784853935, + 0.01781371235847473, + 0.020364047959446907, + 0.004624094348400831, + -0.004691717214882374, + 0.000184553224244155, + -0.001930462894961238, + 0.020351167768239975, + 0.015186093747615814, + -0.024202434346079826, + -0.0028771786019206047, + 0.0038416050374507904, + -0.008584843948483467, + 0.00933835282921791, + 0.0045307110995054245, + -0.0014538848772644997, + 0.021033834666013718, + 0.004353604279458523, + 0.015211854130029678, + -0.017169687896966934, + 0.0026485500857234, + 0.000557081017177552, + 0.01320249866694212, + 0.015276256948709488, + 0.004215138964354992, + 0.01013050228357315, + 0.0032764736097306013, + 0.01039455272257328, + -0.02013220079243183, + 0.01992611214518547, + 0.0022106135729700327, + 0.0029737823642790318, + 0.0021381606347858906, + 0.019539697095751762, + 0.011714802123606205, + -0.005796218756586313, + 0.018380453810095787, + -0.029702400788664818, + -0.0038770262617617846, + 0.0013677466195076704, + 0.0381004773080349, + -0.0164097398519516, + -0.028105221688747406, + -0.026314834132790565, + -0.01879262924194336, + -0.03212393447756767, + -0.016371097415685654, + 0.0038351647090166807, + -0.019230566918849945, + 0.005210156552493572, + 0.022218838334083557, + -0.0014659602893516421, + 0.005580470897257328, + -0.0030317443888634443, + -0.004559691995382309, + -0.01425869856029749, + 0.005757577251642942, + 0.011032136157155037, + -0.019410893321037292, + -0.010304388590157032, + 0.013266900554299355, + 0.005206936504691839, + -0.020698942244052887, + -0.005110332742333412, + 0.0012944889022037387, + 0.006089250091463327, + -0.0016487021930515766, + -0.011309066787362099, + -0.009074302390217781, + -0.007477122358977795, + -0.026662606745958328, + -0.014722395688295364, + -0.011424991302192211, + 0.011135180480778217, + 4.24905119871255e-5, + -0.017169687896966934, + 0.01449054665863514, + 0.0024714432656764984, + 0.0007241248385980725, + -0.010001697577536106, + -0.011553796008229256, + 0.006852418649941683, + -0.008752290159463882, + 0.022476447746157646, + 0.015044407919049263, + 0.013730598613619804, + -0.005963664967566729, + -0.024872219190001488, + 0.016113488003611565, + -0.0022975567262619734, + -0.008385196328163147, + -0.006826657801866531, + 0.0030043735168874264, + -0.020801985636353493, + -0.012584235519170761, + -0.007303235586732626, + -0.0017131046624854207, + -0.021085355430841446, + 0.007734732236713171, + 0.004408346489071846, + 0.0033972281962633133, + -0.0012357216328382492, + 0.01620365120470524, + 0.0035968758165836334, + 0.023326560854911804, + -0.00814046710729599, + -0.006176193244755268, + -0.004543591756373644, + -0.008191989734768867, + 0.002423141384497285, + 0.01648702286183834, + -0.015456583350896835, + 0.005541829392313957, + -0.015546746551990509, + 0.032536108046770096, + -0.026894455775618553, + 0.024846458807587624, + 0.0022154436446726322, + -0.021136878058314323, + -0.009666805155575275, + 0.018702466040849686, + -0.009563760831952095, + 0.012751681730151176, + -0.017890995368361473, + 0.011914449743926525, + 0.01680903509259224, + 0.008295033127069473, + -0.02236052416265011, + 0.007386958692222834, + 0.008778051473200321, + 2.138361878678552e-6, + -0.035498619079589844, + -0.005583690945059061, + -0.013653315603733063, + -0.0307843629270792, + 0.006086029578000307, + -0.00574147654697299, + -0.014645112678408623, + 0.015533866360783577, + -0.024176672101020813, + -0.011553796008229256, + -0.0010811558458954096, + 0.019410893321037292, + -0.017710668966174126, + 0.007625247817486525, + -0.014864081516861916, + -0.014812558889389038, + 0.009009900502860546, + -0.004472748842090368, + -0.004730358719825745, + -0.019423773512244225, + 0.0009587911772541702, + -0.003925328142940998, + -0.0028771786019206047, + 0.0008919736719690263, + -0.028491634875535965, + 0.02382889948785305, + -0.0009145145304501057, + -0.005480647087097168, + -0.004826962016522884, + 0.0006090055103413761, + 0.00042264096555300057, + 0.01055555883795023, + -0.018444856628775597, + 0.01720833033323288, + 0.003783642780035734, + 0.014709515497088432, + 0.011244664900004864, + -0.0028514177538454533, + 0.01459359098225832, + -0.018753988668322563, + 0.011856487952172756, + -0.005577250383794308, + -0.01528913713991642, + -0.014361741952598095, + -0.012191380374133587, + -0.0056094517931342125, + -0.04812149703502655, + 0.01349874958395958, + -0.007419160101562738, + -0.018779749050736427, + -0.020801985636353493, + -1.749683178786654e-5, + 0.007393399253487587, + -0.014104132540524006, + -0.01045251451432705, + -0.023597050458192825, + 0.017710668966174126, + -0.0056062317453324795, + -0.013228259049355984, + -0.029393270611763, + 0.005306760314851999, + 0.01720833033323288, + -0.0013186397263780236, + -0.013408586382865906, + 0.010961294174194336, + -0.01138634979724884, + 0.0040380326099693775, + -0.022798459976911545, + -0.010362351313233376, + 0.009473597630858421, + -0.005960444919764996, + 0.005554709583520889, + -0.009570200927555561, + 0.011495834216475487, + 0.002130110515281558, + 0.006865299306809902, + -0.001954613719135523, + 0.011837166734039783, + 0.02091790921986103, + -0.0008726529194973409, + -0.0017453058389946818, + -0.021986989304423332, + -0.019179044291377068, + 0.008333674632012844, + -0.012655077502131462, + -0.010735885240137577, + 0.029161421582102776, + -0.014722395688295364, + 0.0024923740420490503, + -0.007934379391372204, + 0.011804965324699879, + 0.004260221030563116, + -0.0006556972512044013, + 0.010420313104987144, + 0.018766868859529495, + -0.013421466574072838, + 0.02357129007577896, + 0.024846458807587624, + 0.021832425147294998, + -0.01277744211256504, + 0.004920345731079578, + -0.015933161601424217, + -0.017981158569455147, + 0.007187311537563801, + 0.006308217998594046, + -0.004340724088251591, + 0.011991732753813267, + -0.028955332934856415, + 0.0021446009632200003, + 0.006321098655462265, + 0.009550880640745163, + 0.006652771029621363, + -0.024176672101020813, + -0.00834011472761631, + -0.0034229892771691084, + 0.0028691282495856285, + 0.022334763780236244, + 0.0015359979588538408, + -0.02825978770852089, + 0.025696570053696632, + 0.0044373273849487305, + -0.004675616510212421, + 0.0005607036873698235, + 0.0016197211807593703, + 0.015211854130029678, + 0.004463088698685169, + 0.01558538805693388, + 0.006137551739811897, + 0.010632841847836971, + 0.004521050490438938, + -0.0008984139421954751, + -0.0044341073371469975, + -0.0022637455258518457, + -0.00022560976503882557, + 0.003105807350948453, + -0.01284184493124485, + 0.01343434676527977, + 0.015173212625086308, + -0.007167990785092115, + 0.006884620059281588, + -0.001930462894961238, + 0.0037450012750923634, + 0.0009112944244407117, + -0.0027161724865436554, + -0.0052745589055120945, + 0.008352994918823242, + 0.021858185529708862, + 0.00117453932762146, + 0.018148604780435562, + -0.016628708690404892, + 0.00943495612591505, + -0.012732360512018204, + -0.014516307972371578, + 0.022991668432950974, + -0.0009708666475489736, + 0.02223171852529049, + 0.005963664967566729, + -0.0007357978029176593, + 0.006327538751065731, + -0.019076000899076462, + 0.009106503799557686, + 0.024730533361434937, + -0.006517526227980852, + 0.015997564420104027, + 0.005696394946426153, + -0.018019801005721092, + 0.006089250091463327, + 0.012751681730151176, + 0.011734123341739178, + -0.003212071256712079, + -0.0123073048889637, + -0.010684363543987274, + 0.028079459443688393, + -0.02031252719461918, + -0.003083266317844391, + -0.003960749600082636, + 0.004376145079731941, + 0.0034551904536783695, + -0.00983425136655569, + -0.003109027398750186, + -0.009814930148422718, + 0.014542069286108017, + 0.0019578339997678995, + 0.01735001429915428, + -0.011875808238983154, + -0.01045251451432705, + 0.0020496074575930834, + -0.024279717355966568, + -0.0059572248719632626, + 0.009080742485821247, + -0.019565459340810776, + -0.026250431314110756, + 0.002331367926672101, + 0.0015158721944317222, + 0.0019578339997678995, + 0.007090707775205374, + 0.014052610844373703, + -0.010639281943440437, + 0.007052066270262003, + -0.016177890822291374, + 0.024640370160341263, + 0.0017984379082918167, + -0.04436039552092552, + -0.018161484971642494, + 0.001593960216268897, + 0.003365027019754052, + -0.0005759992636740208, + 0.015198973938822746, + -0.032664913684129715, + 0.007805574685335159, + -0.011360588483512402, + -0.009525119327008724, + -0.0028127762489020824, + -0.007406279444694519, + 0.005577250383794308, + -0.009080742485821247, + -0.007225953042507172, + -0.02178090251982212, + 0.012384587898850441, + -0.0023217075504362583, + -0.0006086030043661594, + -0.020827746018767357, + 0.001352451043203473, + -0.021613456308841705, + 0.007657449226826429, + 0.0006206784164533019, + -0.00969900656491518, + 0.010323709808290005, + 0.010922652669250965, + 0.020402690395712852, + 0.007882857695221901, + 0.015121690928936005, + -0.0048784841783344746, + -0.010098300874233246, + -0.0007651813793927431, + 0.0038480453658849, + -0.02032540738582611, + -0.015443703159689903, + -0.013872283510863781, + 0.014748157002031803, + 0.0022637455258518457, + 0.006723613943904638, + -0.007599486969411373, + 0.003532473463565111, + -0.01622941344976425, + -0.01013050228357315, + 0.003683818969875574, + -0.0033135050907731056, + -0.018573660403490067, + 0.01892143487930298, + 0.00660124933347106, + -0.02728087082505226, + 0.0016406519571319222, + 0.013975327834486961, + -0.0016905638622120023, + -0.0051167733035981655, + 0.02813098207116127, + 0.001028828788548708, + -0.010542677715420723, + 0.033849917352199554, + 0.001511847134679556, + 0.006755814887583256, + 0.006527186371386051, + 0.004408346489071846, + 0.00660124933347106, + -0.011734123341739178, + -0.012886926531791687, + 0.0057607972994446754, + 0.010014577768743038, + -0.02176802232861519, + -0.017427297309041023, + -0.009705446660518646, + -0.025567764416337013, + -0.031402625143527985, + -0.0029770024120807648, + 0.008449599146842957, + 0.013292661868035793, + 0.011296186596155167, + 0.00021031418873462826, + 0.0017565763555467129, + 0.01168904174119234, + 0.0065014255233109, + -0.008810252882540226, + -0.010735885240137577, + -0.01821300759911537, + 0.0009837471880018711, + -0.00574469706043601, + 0.008166228421032429, + -0.004488849546760321, + -0.012996410951018333, + 0.02037693001329899, + -0.010008137673139572, + -0.011779204942286015, + -0.020273884758353233, + -0.005680294241756201, + 0.0010521747171878815, + 0.0014852810418233275, + 0.019217684864997864, + 0.015495224855840206, + 0.004910685587674379, + -0.004913905635476112, + -0.006237375549972057, + -0.020286766812205315, + 0.000922564824577421, + -0.02581249363720417, + 0.021458890289068222, + 0.0017098844982683659, + 0.010143383406102657, + 0.003208851208910346, + -0.0028272666968405247, + -0.013035052455961704, + 0.012230021879076958, + 0.010233546607196331, + 0.0028916692826896906, + -0.009016340598464012, + 0.005313200410455465, + 0.004620874300599098, + -0.009125824086368084, + 0.023661453276872635, + 0.01760762557387352, + -0.002661430509760976, + 0.008468919433653355, + 0.01317673735320568, + -0.0026662605814635754, + -0.012300864793360233, + -0.0008565523312427104, + -0.00030228891409933567, + 0.014812558889389038, + -0.006826657801866531, + 0.023919062688946724, + -0.008977699093520641, + 0.006285677198320627, + -0.014941364526748657, + 0.02627619169652462, + -0.005590131040662527, + 0.0020946890581399202, + 0.004031592048704624, + -0.012275103479623795, + -0.004028372000902891, + -0.019114641472697258, + 0.0037578819319605827, + 0.02825978770852089, + 0.027152065187692642, + -0.0070263054221868515, + 0.026314834132790565, + -0.02250220999121666, + 0.013614674098789692, + -0.019758665934205055, + 0.010632841847836971, + 0.018290290609002113, + -0.006826657801866531, + 0.0025583866517990828, + -0.003854485461488366, + -0.00099743262398988, + -0.0012614825973287225, + 0.024318357929587364, + -0.006575488485395908, + -0.004694937262684107, + -0.00744492094963789, + 0.013035052455961704, + -0.005148974247276783, + -0.013691957108676434, + -0.012300864793360233, + 0.017259851098060608, + 0.010838929563760757, + -0.011418551206588745, + 0.0006943386979401112, + 0.010239986702799797, + 0.013228259049355984, + -0.007754052523523569, + -0.0058058793656528, + 0.002949631307274103, + -0.010304388590157032, + -0.008514001034200191, + -0.004079894162714481, + -0.02574809268116951, + 0.012365266680717468, + 0.018960075452923775, + 0.010697243735194206, + -0.0414494052529335, + -0.008217750117182732, + -0.01879262924194336, + 0.04276321455836296, + 0.030011532828211784, + 0.016847675666213036, + -0.005876721814274788, + -0.004112095106393099, + 0.014078371226787567, + 0.006994104012846947, + -0.01892143487930298, + -0.0085977241396904, + -0.0012308914447203279, + 0.006955462507903576, + -0.011405671015381813, + -0.017092404887080193, + -0.023146234452724457, + -0.035704709589481354, + 0.012764561921358109, + 0.0004439742479007691, + 0.016165010631084442, + 0.005802658852189779, + -0.00804386381059885, + -0.0016406519571319222, + -0.006179413292557001, + 0.02728087082505226, + 0.00014440232189372182, + 0.00389634701423347, + -0.0112897465005517, + 0.004047692753374577, + -0.009370554238557816, + 0.020892148837447166, + 0.0032845239620655775, + -0.004839842673391104, + 0.02520711161196232, + -0.004517830442637205, + 0.009885773062705994, + 0.015211854130029678, + -0.01701512187719345, + -0.015920281410217285, + 0.006968343164771795, + 0.006185853388160467, + 0.022077154368162155, + 0.0032957943622022867, + 0.0036419574171304703, + -0.01165040023624897, + 0.024408521130681038, + 0.01535353995859623, + -0.018290290609002113, + 0.021342966705560684, + 0.003973629791289568, + -0.010884011164307594, + -0.002009355928748846, + 0.005467766430228949, + 0.003864145837724209, + 0.03274219483137131, + 0.008217750117182732, + -0.0014595200773328543, + -0.0018080982845276594, + 0.0026920216623693705, + -0.009228868409991264, + 0.018689585849642754, + -0.030269142240285873, + -0.014709515497088432, + 0.0074256001971662045, + 0.016989361494779587, + -0.009319031611084938, + 0.013447227887809277, + 0.007399839349091053, + -0.0017871675081551075, + -0.009383434429764748, + 0.004459868185222149, + -0.007142229471355677, + -0.01794251799583435, + -0.003677378874272108, + 0.0054613263346254826, + 0.005731816403567791, + -0.021433129906654358, + -0.0037578819319605827, + -0.02310759201645851, + 0.020415570586919785, + 0.021136878058314323, + 0.003120297798886895, + 0.009937294758856297, + 0.0018982617184519768, + -0.01728561334311962, + 0.025323035195469856, + -0.025400318205356598, + 0.018779749050736427, + -0.0020979091059416533, + -0.0024215313605964184, + 0.008088945411145687, + 0.005316420923918486, + -0.0012477971613407135, + 0.007045626174658537, + -0.006379060912877321, + 0.0044405474327504635, + 0.002917430130764842, + -0.008456039242446423, + -0.0044405474327504635, + -0.015276256948709488, + 0.002403820864856243, + 0.006520746275782585, + -0.015186093747615814, + -0.004060573410242796, + -0.015456583350896835, + 0.008288593031466007, + 0.019951872527599335, + -0.006659211590886116, + 0.00043149630073457956, + 0.00953155942261219, + 0.004012271296232939, + 1.988676558539737e-5, + -0.004472748842090368, + -0.001320249866694212, + -0.015804355964064598, + 0.02614738792181015, + -0.009048542007803917, + 0.016834795475006104, + 0.024447163566946983, + -0.009009900502860546, + -0.01628093421459198, + 0.00680089695379138, + 0.0013283001026138663, + 0.008172668516635895, + 0.022849982604384422, + 0.004488849546760321, + -0.0004508170241024345, + 0.0029077697545289993, + 0.026636846363544464, + 0.01105145737528801, + 0.010896891355514526, + 0.004566132556647062, + -0.006672091782093048, + 1.412576784787234e-5, + -0.00879737176001072, + -0.00790861900895834, + 0.01449054665863514, + -0.0021639217156916857, + 0.010697243735194206, + 0.0017936077201738954, + -0.009080742485821247, + -0.027435434982180595, + -0.015031527727842331, + -0.02013220079243183, + 0.022862862795591354, + -0.013550271280109882, + 0.03366959095001221, + -0.0016583625692874193, + -0.007509323302656412, + -0.005599791184067726, + -0.022128675132989883, + 0.018625183030962944, + 0.03482883423566818, + -0.015495224855840206, + 0.015211854130029678, + 0.02085350640118122, + 0.00749644311144948, + 0.011837166734039783, + -0.019758665934205055, + 0.00790861900895834, + -0.018702466040849686, + 0.0044308872893452644, + -0.006807337049394846, + 0.006234155502170324, + 0.0016551425214856863, + 0.016512783244252205, + -0.018303170800209045, + -0.014026849530637264, + -0.008468919433653355, + -0.006565827876329422, + 0.008327234536409378, + 0.004018711857497692, + -0.0076960907317698, + -0.018908554688096046, + 0.0027371032629162073, + 0.006845978554338217, + -0.010523357428610325, + 0.024575967341661453, + -0.005564370192587376, + -0.014387503266334534, + 8.447787695331499e-5, + -0.028027938678860664, + 0.00584130035713315, + -0.011077217757701874, + 0.015984684228897095, + 0.015198973938822746, + -0.00744492094963789, + -0.04304658621549606, + 0.0021558713633567095, + 0.030732840299606323, + -0.004095994867384434, + -0.016899198293685913, + -0.012101217173039913, + -0.018818389624357224, + -0.0018145384965464473, + -0.015611149370670319, + 0.029006855562329292, + 0.016499903053045273, + -0.008855334483087063, + -0.006337199360132217, + -0.02309471182525158, + -0.002444072160869837, + 0.02317199483513832, + -0.019307848066091537, + -0.015598269179463387, + 0.025529123842716217, + 0.02251509018242359, + 0.016383979469537735, + 0.025168471038341522, + 0.0018129284726455808, + -0.004797981120646, + 0.005464546382427216, + 0.01164395920932293, + 0.030629796907305717, + -0.017375776544213295, + -0.007412720005959272, + 0.03271643444895744, + 0.006552947219461203, + 0.01634533703327179, + -0.001093231257982552, + 0.0024827136658132076, + 0.006794456392526627, + 0.020286766812205315, + -0.020402690395712852, + 0.009608842432498932, + -0.01959121972322464, + -0.004356824327260256, + -0.0015955702401697636, + 0.02376449666917324, + -0.02740967459976673, + 0.004971867892891169, + -0.0038351647090166807, + -0.0029303105548024178, + -0.00023486762074753642, + -0.006923261564224958, + 0.0146966353058815, + -0.010607080534100533, + 0.02275981940329075, + -0.011830726638436317, + 0.0072839148342609406, + 0.0012357216328382492, + 0.02833707071840763, + -0.0072710346430540085, + -0.006005526520311832, + -0.020608777180314064, + 0.002967342035844922, + 0.015482344664633274, + -0.008076065219938755, + 0.006523966323584318, + 0.0052648987621068954, + 0.017388656735420227, + 0.002701682038605213, + 0.004933226387947798, + -0.005783338565379381, + -0.02131720446050167, + 0.006427362561225891, + 0.007077827118337154, + -0.007451361510902643, + 0.0069297016598284245, + -0.009383434429764748, + -0.004453428089618683, + -0.005776898004114628, + -0.008694328367710114, + 0.008584843948483467, + 0.02130432426929474, + 0.0034197689965367317, + 0.0052681188099086285, + 0.0123781468719244, + 0.002004525624215603, + -0.00933835282921791, + -0.01105145737528801, + 0.004128195811063051, + 0.014374623075127602, + 0.037224605679512024, + 0.013885164633393288, + -0.001270337961614132, + -0.017324253916740417, + -0.00654972717165947, + -0.026044342666864395, + -0.007567285560071468, + 0.003059115493670106, + -0.00979560986161232, + -0.006527186371386051, + -0.008398077450692654, + -0.015186093747615814, + 0.008224190212786198, + 0.002484323689714074, + 0.004179717972874641, + 0.024575967341661453, + 0.01773642934858799, + -7.436468149535358e-5, + -0.002175192115828395, + 0.005764017812907696, + -0.008056744001805782, + 0.01273880060762167, + -0.019359370693564415, + -0.006031287834048271, + -0.0031927505042403936, + -0.007857096381485462, + 0.005306760314851999, + -0.01349874958395958, + -0.00817910861223936, + -0.003822284284979105, + 0.011605317704379559, + -0.010272188112139702, + -0.0209050290286541, + -0.007045626174658537, + 0.013460108079016209, + 0.01773642934858799, + 0.012159178964793682, + 0.01075520645827055, + -0.014851200394332409, + 0.0017646265914663672, + -0.031222298741340637, + -0.016113488003611565, + 0.028697723522782326, + -0.0047754403203725815, + -0.019578339532017708, + 0.00993085466325283, + -0.011354148387908936, + 0.025374557822942734, + -0.019436653703451157, + 0.0076960907317698, + 0.002413481008261442, + 0.010607080534100533, + -0.01722121052443981, + -0.0022154436446726322, + 0.003980070352554321, + 0.0050233895890414715, + -9.655333269620314e-5, + -0.013421466574072838, + -0.020299647003412247, + -0.014748157002031803, + 0.007721851579844952, + 0.01208189595490694, + 0.011109419167041779, + 0.00374822155572474, + -0.0003119492903351784, + 0.0024617828894406557, + 0.015224735252559185, + 0.008288593031466007, + 0.007960140705108643, + -0.016190771013498306, + 0.02104671485722065, + -0.006411261856555939, + -0.007019864860922098, + -0.006391941104084253, + -0.007000544108450413, + -0.01528913713991642, + -0.015701312571763992, + -0.00709714787080884, + -0.00784421619027853, + -0.006884620059281588, + 0.006047388538718224, + -0.01642262004315853, + 0.01821300759911537, + 0.008372316136956215, + 0.002988272812217474, + -0.00012638977204915136, + -0.0028530277777463198, + -0.013756358996033669, + 0.013962446711957455, + 0.02018372155725956, + 0.014284458942711353, + 0.007200191728770733, + -0.005925023928284645, + 0.0038351647090166807, + 0.0011053067864850163, + 0.007721851579844952, + -0.004978307988494635, + 0.00784421619027853, + 0.010362351313233376, + 0.007973020896315575, + 0.001668022945523262, + 0.010806728154420853, + -0.008256391622126102, + 0.03225273638963699, + -0.01049115601927042, + -0.013872283510863781, + -0.001387872383929789, + -0.03433937579393387, + -0.022128675132989883, + 0.010613520629703999, + -0.02112399786710739, + 0.011663280427455902, + -0.029960010200738907, + 0.02349400706589222, + 0.01495424471795559, + 0.004952547140419483, + -0.005896042566746473, + 0.006807337049394846, + -0.000644426851067692, + 0.007116468623280525, + 0.0021945128683000803, + 0.014065491035580635, + 0.025889776647090912, + 0.006710733287036419, + -0.007367637939751148, + -0.006230935454368591, + -0.010439634323120117, + 0.013524510897696018, + -0.013923806138336658, + -0.01880550943315029, + 0.0029979331884533167, + -0.009750528261065483, + 0.01759474352002144, + 0.011444312520325184, + -0.004366484936326742, + -0.026044342666864395, + 0.014464786276221275, + -0.015868758782744408, + 0.013331303372979164, + -0.01499288622289896, + -0.023725856095552444, + 0.023841779679059982, + 0.0013210548786446452, + 0.01939801312983036, + -0.009016340598464012, + 0.0020238463766872883, + -0.010420313104987144, + 0.010400992818176746, + -0.003034964669495821, + 0.017955398187041283, + -0.000901634048204869, + -0.025928419083356857, + 0.0023217075504362583, + -0.004975087940692902, + 0.005139314103871584, + 0.021265683695673943, + -0.009950175881385803, + -0.00244890246540308, + -0.0005691564874723554, + 0.00012357217201497406, + -0.004720698110759258, + 0.00398973049595952, + -0.0012397468090057373, + -0.001628576428629458, + 0.010607080534100533, + 0.003477731253951788, + -0.0065014255233109, + 0.013949566520750523, + -0.022012751549482346, + -0.005480647087097168, + -0.008906856179237366, + -0.002551946323364973, + -0.009029220789670944, + 0.0164097398519516, + 0.005551489535719156, + 0.03251034766435623, + 0.0042924219742417336, + -0.0037256807554513216, + -0.040006790310144424, + -0.004366484936326742, + 0.012088336050510406, + 0.007039185613393784, + 0.016049085184931755, + 0.002487543970346451, + -0.021355846896767616, + 0.02152329310774803, + 0.012448989786207676, + 0.019179044291377068, + 0.01693783886730671, + 0.004585453309118748, + 0.005564370192587376, + 0.009029220789670944, + -0.0072710346430540085, + -0.001558538875542581, + -0.017968278378248215, + 0.002072148257866502, + 0.008456039242446423, + 0.010929092764854431, + -0.023326560854911804, + 0.00969256553798914, + 0.013183177448809147, + 0.01700224168598652, + -0.0062051741406321526, + 0.0031573292799293995 + ], + "85a82ba3-b051-4df7-ba6e-7a0bcbc27353": [ + -0.011488188058137894, + 0.005852815229445696, + -0.007422022055834532, + 0.0261075422167778, + -0.06291323155164719, + -0.033718012273311615, + 0.0016072591533884406, + 0.012162258848547935, + -0.02934017963707447, + 0.029673591256141663, + 0.009654426947236061, + 0.026629403233528137, + 0.030354909598827362, + 0.0006414540112018585, + -0.01903342641890049, + 0.006334811449050903, + -0.01894645020365715, + 0.02619451843202114, + -0.0039030846673995256, + -0.015510865487158298, + 0.05421555042266846, + -0.027165759354829788, + -0.04392329230904579, + 0.03441382944583893, + 0.01475706696510315, + -0.02767312526702881, + 0.0005957005778327584, + 0.003662086557596922, + -0.042067788541316986, + 0.00282855867408216, + 0.010219776071608067, + 0.00567161338403821, + 0.026295991614460945, + 0.008777410723268986, + -0.003015196416527033, + -0.061869509518146515, + -0.025281261652708054, + 4.801845352631062e-5, + -0.00015696597984060645, + 0.01523543894290924, + 0.0006835834356024861, + 0.015293424017727375, + -0.010879349894821644, + 0.029296692460775375, + -0.017540324479341507, + 0.016728540882468224, + -0.02551320008933544, + 0.006842176429927349, + 0.011162024922668934, + 0.014568616636097431, + -0.007733688689768314, + 0.0062405867502093315, + -0.013800322078168392, + 0.009915357455611229, + 0.04377833008766174, + -0.009734155610203743, + -0.011988304555416107, + 0.07497401535511017, + -0.009038341231644154, + -0.04006732255220413, + -0.0014931020559743047, + -0.04992469400167465, + 0.0416908897459507, + 0.011567916721105576, + -0.007835161872208118, + 0.007146595045924187, + -0.026353975757956505, + 0.06714610010385513, + -0.019772730767726898, + -0.01106055174022913, + 0.007084986660629511, + 0.02854289300739765, + -0.023585213348269463, + 0.0454888753592968, + -0.027397697791457176, + -0.012894312851130962, + 0.01696047931909561, + 0.006863920483738184, + 0.0032326383516192436, + 0.026774363592267036, + -0.00957469828426838, + -0.025455215945839882, + 0.02271544560790062, + 0.03679119423031807, + 0.05012764036655426, + -0.00011296793672954664, + -0.022918391972780228, + -0.0611736960709095, + -0.026716379448771477, + -0.0269338209182024, + -0.013024778105318546, + 0.042009804397821426, + -0.006693590898066759, + -0.02744118683040142, + -0.02752816304564476, + 0.003024256555363536, + 0.007316924631595612, + -0.0005898115341551602, + 0.018279628828167915, + 0.0004693124210461974, + 0.019323348999023438, + 0.03566049411892891, + -0.0419808104634285, + 0.01725040189921856, + 0.0031021730974316597, + -0.03171754628419876, + 0.015989238396286964, + 0.020207613706588745, + -0.046938490122556686, + 0.0035443054512143135, + 0.005660741124302149, + -0.043575387448072433, + 0.0028702348936349154, + -0.003056872868910432, + -0.034993674606084824, + -0.028397930786013603, + -0.020439552143216133, + -0.038443755358457565, + 0.013205979950726032, + -0.0178737360984087, + 0.040937088429927826, + 0.008458495140075684, + 0.017482340335845947, + 0.0050482796505093575, + -0.022382033988833427, + 0.028426922857761383, + -0.0034283362329006195, + 0.04076313599944115, + 0.008110588416457176, + -0.003301494987681508, + 0.005062775686383247, + -0.0381828248500824, + 0.0027597020380198956, + -0.03403692692518234, + 0.048446089029312134, + 0.042183756828308105, + 0.019613273441791534, + 0.036037396639585495, + -0.004573530983179808, + 0.03803786262869835, + -0.05149027705192566, + -0.018221642822027206, + -0.015684818848967552, + -0.008813651278614998, + 0.0035732975229620934, + 0.010205280035734177, + -0.027310721576213837, + 0.018598543480038643, + -0.04279259592294693, + 0.005591884721070528, + -0.050765469670295715, + -0.00012423642328940332, + -0.01447439193725586, + -0.022251568734645844, + 0.04035724326968193, + -0.008400510996580124, + -0.0012031793594360352, + 0.04888097196817398, + 0.00038460062933154404, + 0.031369637697935104, + 0.025571184232831, + -0.035138633102178574, + -0.010371985845267773, + -0.022758934646844864, + 0.017859239131212234, + 0.022671956568956375, + 0.03539956361055374, + 0.029978010803461075, + -0.013843810185790062, + 0.019308853894472122, + 0.030064987018704414, + -0.0030369404703378677, + 0.03832778334617615, + -0.0062478347681462765, + 0.028412427753210068, + -0.03328312933444977, + 0.05740470066666603, + 0.042415693402290344, + 0.024628935381770134, + -0.03580545634031296, + 0.006287699099630117, + -0.039864376187324524, + 0.04163290187716484, + -0.01858404651284218, + -0.030325917527079582, + -0.004174887202680111, + 0.026469945907592773, + 0.014720826409757137, + 0.013003034517168999, + 0.016801021993160248, + 0.00735678942874074, + -0.03076080232858658, + 0.006218842696398497, + 0.030209947377443314, + -0.03531258925795555, + -0.05966609716415405, + 0.024962347000837326, + -0.007682952098548412, + 0.0025730642955750227, + 0.04424220696091652, + -0.001038285787217319, + -0.01070539653301239, + -0.008944116532802582, + 0.06007198989391327, + -0.002875671023502946, + 0.04789523407816887, + -0.037487007677555084, + -0.0048924461007118225, + -0.0003891306696459651, + -0.027600644156336784, + 0.020410560071468353, + -0.030905762687325478, + 0.03047087788581848, + -0.023773662745952606, + -0.012430436909198761, + 0.012995786033570766, + -0.020381567999720573, + 0.02271544560790062, + 0.01954079233109951, + -0.0075234947726130486, + -0.009828380309045315, + -0.02090342901647091, + 0.032500337809324265, + -0.02093242108821869, + -0.02633948065340519, + -0.0009938913863152266, + -0.03447181358933449, + 0.029412660747766495, + -0.017119936645030975, + -0.019975675269961357, + 0.02583211474120617, + -0.0333121232688427, + 0.07468409836292267, + -0.032529331743717194, + -0.0024462230503559113, + -0.0023139456752687693, + 0.005903551355004311, + 0.005225857254117727, + -0.022642964497208595, + -0.01370609737932682, + 0.000587999529670924, + -7.65010918257758e-5, + 0.0027905062306672335, + -0.008588960394263268, + -0.014256950467824936, + 0.013401677832007408, + -0.033544059842824936, + 0.055578187108039856, + -0.0005562892183661461, + -0.015162958763539791, + 0.025846611708402634, + 0.02577413059771061, + -0.012553653679788113, + 0.02033807896077633, + -0.005729597993195057, + 0.03192049264907837, + 0.008857139386236668, + -0.0669141635298729, + -0.0036566504277288914, + 0.02713676728308201, + -0.015641331672668457, + 0.006102873478084803, + -0.01817815564572811, + -0.006798687856644392, + 0.04632965102791786, + -0.04053119570016861, + 0.041024066507816315, + -0.03339909762144089, + 0.03824080899357796, + 0.051896169781684875, + 0.00014031806495040655, + 0.008386014960706234, + -0.005443299189209938, + 0.0031782779842615128, + -0.006722583435475826, + 0.0025023955386132, + -0.023889632895588875, + -0.007878649979829788, + 0.001937046181410551, + 0.00794388260692358, + -0.009784892201423645, + -0.023889632895588875, + 0.011205513030290604, + 0.004356089048087597, + 0.004939558450132608, + 0.00858171284198761, + -0.021207846701145172, + -0.009350008331239223, + -0.03058684803545475, + -0.027064286172389984, + -0.011676637455821037, + -0.0304418858140707, + 0.005258473567664623, + 0.009618186391890049, + 0.014278694055974483, + 0.022324049845337868, + 0.005432426929473877, + -0.019308853894472122, + -0.000275653088465333, + -0.03290623053908348, + -0.022193584591150284, + -0.026064053177833557, + -0.002370118396356702, + -0.03180452436208725, + 0.01656908355653286, + -0.014764314517378807, + 0.02681785263121128, + 0.02390412800014019, + 0.01230722013860941, + -0.011270745657384396, + 0.03679119423031807, + -0.0330221988260746, + -0.022237073630094528, + -0.03145661577582359, + -0.00825554970651865, + -0.007856905460357666, + -0.03432685136795044, + 0.016916990280151367, + -0.024831881746649742, + -0.04809818044304848, + -0.004457561764866114, + -0.026180021464824677, + -0.03215242922306061, + 0.014293190091848373, + 0.04047321155667305, + -0.04209677875041962, + 0.03189149871468544, + -0.021222343668341637, + -0.032355375587940216, + -0.0048090931959450245, + -0.03940049931406975, + -0.018033193424344063, + -0.0503595769405365, + -0.0028720470145344734, + -8.26166506158188e-5, + -0.054534465074539185, + -0.06094175577163696, + -0.008588960394263268, + 0.007418397814035416, + 0.005312833935022354, + -0.01029225718230009, + 0.004254615865647793, + 0.010002333670854568, + -0.023034360259771347, + -0.027455681934952736, + -0.0430535264313221, + -0.0031674057245254517, + -0.005809326656162739, + 0.022932887077331543, + -0.005211361218243837, + 0.0009522149339318275, + 0.006251459009945393, + 0.02684684470295906, + -0.02058451436460018, + 0.01315524335950613, + -0.013372685760259628, + -0.0261075422167778, + -0.021454282104969025, + 0.007077738642692566, + -0.01162590179592371, + -0.007367661222815514, + -0.0424736812710762, + -0.01843908615410328, + -0.036182355135679245, + -0.011973808519542217, + -0.0035406812094151974, + 0.013292957097291946, + 0.013698848895728588, + 0.03337010741233826, + 0.005646245088428259, + -0.03400793671607971, + 0.0017504084389656782, + -0.01817815564572811, + -0.031108709052205086, + -0.010495202615857124, + -0.027789093554019928, + 0.049634769558906555, + -0.01097357552498579, + 0.0013626368017867208, + 0.004417697433382273, + -0.004316224716603756, + 0.011770863085985184, + -0.06024594232439995, + -0.006385548040270805, + 0.04264763370156288, + -0.00740027753636241, + -0.01585877314209938, + 0.0032580066472291946, + -0.009661674499511719, + 0.005733221769332886, + -0.0036874546203762293, + -0.004606147296726704, + 0.004613395314663649, + 0.005646245088428259, + 0.012191250920295715, + -0.0005766744143329561, + -0.006142737809568644, + -0.02339676395058632, + 0.020570017397403717, + 0.007668456062674522, + -0.032500337809324265, + -0.013278461061418056, + 0.014974508434534073, + 0.029528629034757614, + 0.030064987018704414, + -0.004468434024602175, + -0.012640630826354027, + -0.03171754628419876, + 0.010451714508235455, + 0.024150563403964043, + -0.020265597850084305, + 0.012466677464544773, + 0.011140280403196812, + 0.019845210015773773, + 0.022295057773590088, + 0.023570718243718147, + -0.0016743037849664688, + 0.08976007997989655, + -0.018395597115159035, + -0.013104507699608803, + 0.009407992474734783, + -4.6857629058649763e-5, + -0.004667756147682667, + 0.019888699054718018, + -0.011865087784826756, + 0.012568150646984577, + 0.0007433799910359085, + 0.027789093554019928, + -0.029238706454634666, + 0.006824056152254343, + 0.03157258406281471, + 0.031369637697935104, + -0.002467967104166746, + -0.0026129286270588636, + -0.02616552636027336, + -0.03647227957844734, + 0.006077505182474852, + -0.01817815564572811, + -0.013611871749162674, + -0.03592142462730408, + 0.019047923386096954, + 0.05009864643216133, + -0.004870702046900988, + 0.00028607220156118274, + -0.010299504734575748, + -0.009458729065954685, + -0.04563383758068085, + 0.04261863976716995, + 0.020946916192770004, + 0.003024256555363536, + -0.017453348264098167, + 0.027339713647961617, + -0.030296925455331802, + -0.017801254987716675, + 0.01656908355653286, + -0.019468311220407486, + 0.004087910521775484, + -0.010531443171203136, + 0.0021109997760504484, + -0.008451247587800026, + -0.01447439193725586, + 0.0010265076998621225, + 0.052012138068675995, + -0.036211349070072174, + 0.024150563403964043, + -0.049402832984924316, + 0.0024969594087451696, + -0.012734855525195599, + 0.007907642051577568, + 0.025759633630514145, + -0.035138633102178574, + 0.01832311600446701, + -0.052186090499162674, + 0.00515337660908699, + -0.015293424017727375, + -0.0185550544410944, + -0.020917924121022224, + 0.005678861401975155, + -0.009937101043760777, + -0.02639746479690075, + -0.02319381758570671, + -0.012901561334729195, + -0.03203646093606949, + -0.021932654082775116, + -0.008987604640424252, + -0.011067800223827362, + -0.014764314517378807, + -0.01003857422620058, + -0.008400510996580124, + -0.039835382252931595, + 0.013024778105318546, + 0.021816685795783997, + 0.0008117836550809443, + 0.041198018938302994, + -0.032297391444444656, + -0.02800653502345085, + 0.007316924631595612, + -0.03563150390982628, + -0.007132099010050297, + 0.0037798676639795303, + 0.017569316551089287, + 0.014235205948352814, + -0.023541726171970367, + -0.0014351174468174577, + 0.026948317885398865, + -0.0010754321701824665, + -0.025788625702261925, + -0.019236372783780098, + 0.028368938714265823, + 0.00478734914213419, + -0.026643898338079453, + -0.006534133572131395, + -0.019439319148659706, + 0.01665606163442135, + -0.009647178463637829, + -0.005584636703133583, + -0.02934017963707447, + -0.01032124925404787, + 0.031224677339196205, + 0.0006396420067176223, + -0.0035515534691512585, + -0.008886131457984447, + -0.016743037849664688, + -0.0007497220649383962, + -0.0027252736035734415, + -0.00032457755878567696, + -0.013648112304508686, + -0.003154721576720476, + 0.03339909762144089, + -0.03192049264907837, + -0.01447439193725586, + 0.0075379908084869385, + -0.012118769809603691, + 0.029862040653824806, + 0.015510865487158298, + -0.005396186839789152, + -0.03641429543495178, + -0.002625612774863839, + 0.01838110014796257, + 0.01648210734128952, + -0.03139863163232803, + 0.02197614312171936, + 0.01594574935734272, + -0.017366372048854828, + 0.012705863453447819, + 0.0049830470234155655, + -0.023889632895588875, + 0.03064483217895031, + -0.013488654978573322, + 0.019859706982970238, + -0.037544991821050644, + 0.011676637455821037, + -0.02432451769709587, + -0.0012385136215016246, + 0.007893146015703678, + -0.026556922122836113, + -0.008154076524078846, + 0.0031275413930416107, + -0.023657694458961487, + -0.018931953236460686, + 0.02515079639852047, + 0.0038269800134003162, + 0.025788625702261925, + 0.0130537711083889, + -0.02064249850809574, + -0.014293190091848373, + -0.036124370992183685, + 0.03571847826242447, + -0.005381690803915262, + 0.009610938839614391, + 0.009690667502582073, + 0.014887532219290733, + 0.030934754759073257, + 0.017772262915968895, + 0.005769462324678898, + 0.013176987878978252, + 0.0190914124250412, + -0.0038378520403057337, + 0.0267888605594635, + -0.04142995923757553, + 0.05247601494193077, + -0.0351676270365715, + 0.017569316551089287, + -0.0225994773209095, + -0.012212994508445263, + 0.005867311265319586, + -0.037400033324956894, + -0.020207613706588745, + -0.02607855014503002, + 0.009502217173576355, + -0.018511565402150154, + 0.02854289300739765, + 0.017656294628977776, + 0.00722269993275404, + -0.004377833101898432, + 0.03687817230820656, + -0.01796071231365204, + 0.006269578821957111, + 0.0061391135677695274, + 0.02461444027721882, + 0.02016412653028965, + 0.023657694458961487, + 0.012517414055764675, + -0.03049987182021141, + -0.011379467323422432, + 0.00011834736505988985, + 0.0077046966180205345, + 0.0262525025755167, + -0.01707644946873188, + 0.0037073867861181498, + -0.017917225137352943, + 0.012423188425600529, + 0.016264665871858597, + -0.028137000277638435, + 0.001920738024637103, + -0.004069790244102478, + 0.005323706194758415, + 0.022671956568956375, + 0.007791673298925161, + 0.005773086100816727, + 0.004011805634945631, + -0.04293755441904068, + 0.032384369522333145, + -0.03313816711306572, + 0.02741219475865364, + 0.01029225718230009, + -0.0031003612093627453, + -0.027064286172389984, + -0.005012039095163345, + -0.009719659574329853, + 0.02497684210538864, + -0.04125600308179855, + 0.017003968358039856, + -0.017743270844221115, + 0.023860640823841095, + -0.0030278805643320084, + 0.0005653492989949882, + -0.011589661240577698, + 0.005218609236180782, + 0.0006346589652821422, + -0.0028720470145344734, + 0.00920504704117775, + -0.007690200582146645, + 0.04508298262953758, + -0.01665606163442135, + 0.028586380183696747, + 0.011633149348199368, + -0.008168572559952736, + 0.03221041336655617, + -0.011720126494765282, + -0.013930787332355976, + 0.006631982512772083, + -0.004863453563302755, + 0.015307920053601265, + 0.01134322676807642, + -0.01370609737932682, + 0.0012376076774671674, + 0.024396996945142746, + -0.013553887605667114, + -0.004290856420993805, + 0.030905762687325478, + -0.03386297449469566, + 0.017496837303042412, + 0.009683419018983841, + 0.04757631942629814, + 0.0010518758790567517, + 0.0024897113908082247, + -0.005443299189209938, + -2.9048898795736022e-5, + 0.00861070491373539, + -0.013597375713288784, + -0.010712645016610622, + -0.020772963762283325, + -0.0013055582530796528, + 0.008125084452331066, + 0.0023828023113310337, + 0.006367427762597799, + 0.006592118181288242, + 0.006802312098443508, + -0.0016770217334851623, + -0.009886365383863449, + -0.017467845231294632, + -0.03702313080430031, + 0.00640729209408164, + 0.012720359489321709, + -0.01263338327407837, + -0.007055994588881731, + 0.03510964289307594, + -0.030325917527079582, + -0.01636613719165325, + -0.006834928411990404, + -0.007951131090521812, + 0.005907175596803427, + 0.021657228469848633, + 0.004385081119835377, + -0.005950664170086384, + 0.0076394639909267426, + -0.007508998736739159, + 0.02922421135008335, + -0.0058201989158988, + -0.016887998208403587, + -0.01522094290703535, + 0.007316924631595612, + -0.04287957027554512, + 0.034877702593803406, + 0.020091645419597626, + -0.020236605778336525, + -0.002763326046988368, + -0.0031819019932299852, + -0.015249935910105705, + -0.018902961164712906, + 0.003442832501605153, + 0.011024312116205692, + 0.031079716980457306, + 0.012872569262981415, + -0.013887298293411732, + -0.0085962088778615, + 0.0006930965464562178, + -0.03429785743355751, + 0.018801487982273102, + 0.005225857254117727, + 0.029717080295085907, + 0.011676637455821037, + -0.030209947377443314, + -0.035950418561697006, + -0.000927299726754427, + 0.009371751919388771, + -0.017351875081658363, + -0.0075452388264238834, + -0.0032815628219395876, + 0.003007948398590088, + -0.015409393236041069, + -0.011118536815047264, + -0.009915357455611229, + -0.00503378314897418, + -0.014844044111669064, + -0.007494502700865269, + 0.0076612080447375774, + -0.012836328707635403, + -0.012988538481295109, + -0.000813142629340291, + -0.008762914687395096, + 0.01817815564572811, + -0.02099040523171425, + 0.026093045249581337, + 0.002020399086177349, + 0.016801021993160248, + -0.017395364120602608, + -0.012111522257328033, + 0.02271544560790062, + 0.02565816231071949, + -0.0013309265486896038, + 0.03052886389195919, + 0.004029925912618637, + -0.011241753585636616, + -0.001953354338183999, + 0.013307453133165836, + -0.01577179692685604, + -0.025904595851898193, + 0.0354575477540493, + -0.03209444507956505, + -0.013017530553042889, + -0.02574513852596283, + -0.001519376295618713, + -0.022932887077331543, + -0.015554354526102543, + -0.01606171950697899, + 0.017801254987716675, + 0.03139863163232803, + -0.011335978284478188, + 0.02560017630457878, + 0.034906696528196335, + 0.002011338947340846, + 0.018424589186906815, + 0.0006699932855553925, + -0.013909042812883854, + -0.0015547106740996242, + -0.016235671937465668, + -0.04258964955806732, + -0.008697682060301304, + -0.02075846679508686, + -0.06755199283361435, + 0.021178854629397392, + -0.03792189434170723, + 0.016134200617671013, + -0.02319381758570671, + 0.03667522594332695, + -0.0028466787189245224, + 0.003899460658431053, + -0.017830247059464455, + -0.004008181858807802, + 0.015104973688721657, + -0.016902495175600052, + 0.005392562597990036, + -0.0019225501455366611, + -0.029804056510329247, + 0.021207846701145172, + -0.021700715646147728, + -0.027354208752512932, + 0.007726440671831369, + -0.01070539653301239, + -0.027122270315885544, + 0.034384835511446, + 0.015003501437604427, + -0.012379700317978859, + -0.012655126862227917, + -0.007632215972989798, + -0.014858540147542953, + -0.020178621634840965, + 0.010560435242950916, + 0.006628358270972967, + 0.012821832671761513, + 0.0004987576976418495, + 0.01843908615410328, + -0.014764314517378807, + 0.018308620899915695, + -0.002875671023502946, + -0.018772495910525322, + 0.02823847346007824, + 0.025368237867951393, + 0.00531645817682147, + 0.021671723574399948, + -0.003328675404191017, + 0.010190783999860287, + -0.017293890938162804, + -0.0012801900738850236, + 0.03305119276046753, + -0.007559735327959061, + 0.03174654021859169, + 0.016801021993160248, + -0.005675237625837326, + -0.0060593849048018456, + 0.003913956694304943, + 0.0378929004073143, + -0.00855272077023983, + 0.02381715178489685, + -0.024701416492462158, + 0.008900627493858337, + -0.022758934646844864, + 0.04177786409854889, + -0.018337612971663475, + -0.027223743498325348, + 0.00015934424300212413, + -0.01790272817015648, + -0.003935701213777065, + 0.010538690723478794, + 0.02710777521133423, + 0.009328263811767101, + 0.009908108972012997, + 0.05050453916192055, + 0.022353041917085648, + -0.008030859753489494, + -0.01588776521384716, + 0.0100095821544528, + -0.031369637697935104, + 0.040908098220825195, + -0.045720815658569336, + 0.009415240958333015, + -0.00829903781414032, + 0.009429736994206905, + 0.050736475735902786, + 0.01942482218146324, + -0.03310917690396309, + 0.011227257549762726, + -0.00410603079944849, + -0.03447181358933449, + 0.013988771475851536, + 0.01846807822585106, + 0.02432451769709587, + 0.04166189581155777, + 0.016206679865717888, + -0.016192184761166573, + 0.02200513519346714, + 0.031079716980457306, + -0.014539624564349651, + -0.02072947472333908, + -0.004196631256490946, + 0.004142270889133215, + -0.014285942539572716, + 0.0022088487166911364, + -0.008741170167922974, + 0.022222576662898064, + 0.016902495175600052, + 0.014931020326912403, + -0.01471357885748148, + 0.013256716541945934, + 0.005649869330227375, + -0.01247392501682043, + -0.009639930911362171, + -0.0038306040223687887, + 0.005783958360552788, + -0.009052837267518044, + -0.011952064000070095, + -0.0234257560223341, + -0.023527229204773903, + 0.016264665871858597, + -0.0036149739753454924, + -0.008204813115298748, + -0.0021544883493334055, + 0.04369135573506355, + 0.005599132739007473, + -0.05285291373729706, + -0.015394897200167179, + -0.005646245088428259, + 0.012923305854201317, + -0.031311653554439545, + 0.023512734100222588, + 0.010248768143355846, + 0.01314074732363224, + 0.027803588658571243, + 0.033602043986320496, + 0.02313583344221115, + -0.01817815564572811, + -0.008154076524078846, + 0.07439417392015457, + 0.016641564667224884, + 0.009922605007886887, + -0.022584980353713036, + 0.001406125258654356, + -0.022758934646844864, + 0.030383901670575142, + 0.009654426947236061, + 0.025962579995393753, + 0.02093242108821869, + -0.02194715104997158, + -0.009335512295365334, + -0.010451714508235455, + -0.01642412319779396, + -0.01725040189921856, + 0.00674795126542449, + -0.037342049181461334, + 0.0037400030996650457, + 0.01829412393271923, + -0.024512967094779015, + 0.022860407829284668, + -0.0003941137110814452, + -0.01775776781141758, + -0.005555644165724516, + -0.011567916721105576, + -0.018801487982273102, + -0.025426223874092102, + -0.008067100308835506, + 0.019642265513539314, + 0.002777822082862258, + -0.02096141315996647, + -0.016105206683278084, + -0.011364971287548542, + 0.021425290033221245, + 0.019801722839474678, + 0.0004915096214972436, + 0.009371751919388771, + 0.01954079233109951, + -0.03319615125656128, + 0.004048046190291643, + 0.0008521010167896748, + 0.01372059341520071, + -0.006443532649427652, + 0.0023302538320422173, + -0.00896586012095213, + 0.026658395305275917, + 0.024396996945142746, + -0.00792938657104969, + -0.003602289827540517, + 0.001813829061575234, + -0.029238706454634666, + -0.004182135220617056, + -0.0487070195376873, + 0.008690433576703072, + -0.011408459395170212, + 0.008045355789363384, + -0.0022523372899740934, + 0.00274701789021492, + 0.012981289997696877, + 0.03812483698129654, + 0.00570060545578599, + -0.029862040653824806, + -0.04508298262953758, + -0.005291089881211519, + -0.01772877387702465, + 0.01348140649497509, + 0.03542855754494667, + -0.005030159372836351, + -0.02515079639852047, + -0.02636847272515297, + 0.02209211140871048, + 0.019105907529592514, + -0.009647178463637829, + 0.007994619198143482, + -0.014010515995323658, + 0.010908342897891998, + 0.008864386938512325, + -0.01654009148478508, + 0.009089077822864056, + -0.003294246969744563, + -0.001259351847693324, + 0.015090477652847767, + -0.001995030790567398, + -0.02934017963707447, + -0.022947384044528008, + 0.0015492745442315936, + -0.014293190091848373, + 0.005744094029068947, + -0.013213228434324265, + 0.021874669939279556, + 0.009784892201423645, + 0.0031855260021984577, + -0.0002754266024567187, + 0.02402009814977646, + -0.00822655763477087, + 0.007864153943955898, + -0.010219776071608067, + -0.030412893742322922, + 0.0038487243000417948, + 0.02143978513777256, + 0.02438250184059143, + 0.009864620864391327, + 0.00570060545578599, + -0.033689022064208984, + -0.009531209245324135, + 0.012734855525195599, + -0.006055761128664017, + -0.0289777759462595, + 0.018931953236460686, + -0.0075959754176437855, + -0.0037617473863065243, + 0.009038341231644154, + 0.02004815638065338, + 0.005218609236180782, + 0.021686220541596413, + -0.00999508611857891, + -0.016148695722222328, + -0.0014967260649427772, + -0.0029300316236913204, + -0.03887863829731941, + -0.005762214306741953, + -0.028441419824957848, + 0.002614740515127778, + -0.0852372795343399, + -0.02823847346007824, + 0.015713810920715332, + -0.008545472286641598, + -0.0027578899171203375, + -0.010183535516262054, + 0.01233621221035719, + 0.03154359385371208, + 9.462126763537526e-5, + 0.007233572192490101, + 0.016916990280151367, + -0.04012530669569969, + 0.02404909022152424, + 0.040879104286432266, + -0.002893791301175952, + 0.0034210882149636745, + -0.005193240940570831, + -0.013655360788106918, + 0.021251335740089417, + -0.032297391444444656, + -0.007027002051472664, + 0.0020240230951458216, + 0.04650360718369484, + -0.02064249850809574, + 0.009581945836544037, + 0.02945614978671074, + -0.01939583010971546, + 0.023976609110832214, + -0.005584636703133583, + -0.0061391135677695274, + 0.004276360385119915, + 0.00735678942874074, + -0.008799155242741108, + 0.012778344564139843, + 0.003172841854393482, + 0.010212528519332409, + 0.02262846939265728, + 0.017293890938162804, + 0.03589243441820145, + 0.012111522257328033, + 0.0023320659529417753, + 0.0048272134736180305, + 0.005055527668446302, + -0.012314467690885067, + -0.022324049845337868, + -0.0015737367793917656, + -0.013343693688511848, + 0.013800322078168392, + 0.035022664815187454, + 0.018337612971663475, + 0.004877950064837933, + -0.0127855921164155, + 0.013459662906825542, + -0.02586110681295395, + 0.005519404076039791, + 0.019207380712032318, + 0.016163192689418793, + -0.027832582592964172, + -0.002592996461316943, + -0.012437685392796993, + 0.06500067561864853, + 0.02467242442071438, + -0.004243744071573019, + 0.0018419153057038784, + 0.004116902593523264, + -0.002255961298942566, + 0.00282855867408216, + 0.01752582937479019, + 0.014902028255164623, + -0.0006473431130871177, + 0.0027415817603468895, + 0.003979189321398735, + -0.008646945469081402, + 0.007559735327959061, + 0.015481873415410519, + 0.006490644998848438, + 0.015394897200167179, + -0.0029463397804647684, + 0.0024226668756455183, + -0.01639513112604618, + -0.026614906266331673, + -0.009407992474734783, + 0.002123683923855424, + 0.0021617363672703505, + 0.0005825634580105543, + 0.0061753541231155396, + -0.0031420376617461443, + -0.018163658678531647, + 0.0015003500739112496, + 0.012147761881351471, + 0.020685987547039986, + -0.001528436434455216, + 0.03644328564405441, + 0.001430587493814528, + -0.0025948083493858576, + 0.0378929004073143, + 0.027934053912758827, + -0.004316224716603756, + -0.0014070312026888132, + 0.00412052683532238, + -0.007081362418830395, + -0.018801487982273102, + -0.0010926462709903717, + -0.02013513259589672, + 0.0028086265083402395, + -0.0017630925867706537, + 0.017975209280848503, + 0.030789794400334358, + -0.024933354929089546, + -0.008429503068327904, + -0.010582179762423038, + 0.009451480582356453, + -0.01311175525188446, + -0.013198732398450375, + -0.005581012461334467, + 0.014648346230387688, + 0.018482573330402374, + -0.0100095821544528, + -0.0013381745666265488, + 0.004225623793900013, + 0.009842876344919205, + 0.012089777737855911, + -0.014220709912478924, + -0.037081118673086166, + -0.005715101957321167, + 0.00865419302135706, + -0.00703062629327178, + -0.03192049264907837, + -0.0008099715923890471, + 0.009371751919388771, + 0.010198031552135944, + 0.024266531690955162, + -0.019700249657034874, + 0.01974373683333397, + -0.0021436160895973444, + 0.0005404340918175876, + 0.004508298356086016, + -0.0027597020380198956, + -0.009103573858737946, + -0.01912040449678898, + -0.016974976286292076, + -0.006490644998848438, + -0.007150219287723303, + 0.005602756515145302, + 0.00039298119372688234, + 0.015148462727665901, + -0.022918391972780228, + -0.003547929460182786, + -0.0025875603314489126, + -0.009531209245324135, + -0.005885431542992592, + 0.029035761952400208, + 0.008784658275544643, + 0.01522094290703535, + 0.007197331637144089, + -0.02215009555220604, + -0.008661441504955292, + 0.014699081890285015, + -0.0077119446359574795, + 0.010712645016610622, + -0.01659807562828064, + -0.02381715178489685, + -0.00043352507054805756, + -0.013974275439977646, + 0.028412427753210068, + -0.025165293365716934, + -0.02512180432677269, + -0.02509281225502491, + -0.009886365383863449, + -0.037313055247068405, + -0.010545939207077026, + 0.016409626230597496, + -0.01778675988316536, + 0.009581945836544037, + 0.007306052837520838, + 0.003334111301228404, + -0.012524661608040333, + -0.006646478548645973, + 0.03432685136795044, + -0.03047087788581848, + -0.030325917527079582, + 0.025049323216080666, + 0.012350708246231079, + 0.014017763547599316, + -0.009806636720895767, + 0.0009422488510608673, + 0.00429810443893075, + 0.012923305854201317, + 0.008784658275544643, + -0.0010736200492829084, + 0.017395364120602608, + -0.010640163905918598, + -0.021033894270658493, + 0.0234257560223341, + -0.00798737071454525, + 0.012966793961822987, + 0.004848957527428865, + 0.013358189724385738, + -0.025991572067141533, + -0.006269578821957111, + -0.00827004574239254, + -0.03919755294919014, + -0.0007633121567778289, + -0.00027678560581989586, + -0.0038523483090102673, + 0.028513900935649872, + -0.014017763547599316, + 0.018931953236460686, + 0.01168388593941927, + -0.02948514185845852, + -0.019830714911222458, + 0.006856672465801239, + 0.0037400030996650457, + -0.018960947170853615, + -0.0030007001478224993, + -0.004450313746929169, + 0.012415940873324871, + -0.005088143981993198, + 0.016844511032104492, + -0.014177221804857254, + 0.02452746219933033, + -0.0036312821321189404, + 0.008067100308835506, + -0.007081362418830395, + -0.009741404093801975, + -0.01522094290703535, + 0.022237073630094528, + -0.03386297449469566, + -0.022976376116275787, + 0.015351408161222935, + -0.013923538848757744, + 0.0005870935274288058, + 0.003783491672948003, + -0.010886598378419876, + -0.03835677728056908, + 0.009842876344919205, + 0.01917838864028454, + -0.018076682463288307, + 0.013350941240787506, + -0.002277705352753401, + -0.030093979090452194, + -0.0340949110686779, + -0.01585877314209938, + 0.007084986660629511, + 0.03209444507956505, + -0.002959023928269744, + -0.0023737424053251743, + -0.007360413204878569, + -0.004823589231818914, + 0.013430669903755188, + 0.019047923386096954, + -0.0075452388264238834, + -0.015061485581099987, + 0.010074814781546593, + -0.01648210734128952, + -0.006824056152254343, + 0.016974976286292076, + -0.00622971449047327, + 0.013046522624790668, + 0.0038451002910733223, + -0.016351642087101936, + 0.01201004907488823, + 0.03400793671607971, + -0.029238706454634666, + 0.036820188164711, + 0.005374442785978317, + -0.012640630826354027, + -0.015090477652847767, + 0.005407059099525213, + -0.003841476049274206, + -0.02568715438246727, + -0.023266298696398735, + -0.03589243441820145, + -0.009110821411013603, + -0.004617019556462765, + 0.01784474402666092, + -0.0048670778051018715, + -0.01162590179592371, + 0.0008081595879048109, + 0.010915590450167656, + -0.007001633755862713, + 0.0049830470234155655, + -0.0017141681164503098, + 0.015322416089475155, + 0.010683652944862843, + -0.0006233338499441743, + 0.0062550827860832214, + 0.004642387852072716, + 0.022440019994974136, + -0.01642412319779396, + 0.013430669903755188, + 0.016714045777916908, + 0.01588776521384716, + -0.004794597160071135, + 0.011930320411920547, + -0.004649635870009661, + 0.00855272077023983, + 0.015322416089475155, + 0.0200191643089056, + -0.009857372380793095, + 0.01846807822585106, + -0.02251249924302101, + -0.015061485581099987, + -0.015307920053601265, + -0.025643665343523026, + -0.00018720401567406952, + 0.0028158745262771845, + 0.009610938839614391, + 6.80638913763687e-5, + -0.0006976265576668084, + 0.01645311526954174, + 0.02877483144402504, + 0.0032743148040026426, + -0.009632682427763939, + -0.0008276387816295028, + 0.02574513852596283, + 0.004993918817490339, + 0.007566983345896006, + 0.0038487243000417948, + -0.027818085625767708, + 0.015612338669598103, + 0.015684818848967552, + 0.027934053912758827, + -0.012191250920295715, + -0.007668456062674522, + -0.02526676654815674, + -0.008081596344709396, + 0.010712645016610622, + 0.013430669903755188, + -0.0012376076774671674, + 0.000927299726754427, + 0.02491885796189308, + -0.029659094288945198, + 0.025078315287828445, + 0.005986904259771109, + -0.0010962702799588442, + -0.0158297810703516, + -0.0109590794891119, + 0.004450313746929169, + -0.002212472725659609, + -0.007813417352735996, + 0.030122971162199974, + -0.005280217621475458, + 0.012502918019890785, + 0.02438250184059143, + 0.008016363717615604, + 0.005910799838602543, + 0.018598543480038643, + 0.007755432743579149, + -0.022860407829284668, + -0.005410682875663042, + 0.033428091555833817, + 0.007128475233912468, + -0.028354443609714508, + -0.008168572559952736, + 0.012792840600013733, + -0.01609071157872677, + 0.012357956729829311, + -0.015307920053601265, + -0.03270328417420387, + -0.030789794400334358, + -0.006918281316757202, + 0.00432709651067853, + 0.03821181505918503, + -0.016757532954216003, + 0.0050410316325724125, + 0.04183584824204445, + -0.015119470655918121, + -0.020323583856225014, + -0.029644599184393883, + -0.005566516425460577, + -0.007922138087451458, + -0.033486075699329376, + -0.019265364855527878, + 0.005265721585601568, + 0.016438618302345276, + -0.025933587923645973, + -0.002214284846559167, + 0.010161791928112507, + -0.02257048524916172, + 0.02348374016582966, + -0.018685519695281982, + -0.01472807489335537, + -0.0063565559685230255, + -0.003982813563197851, + -0.012046289630234241, + -0.007327796891331673, + 0.013133499771356583, + 0.005526652093976736, + -0.0033051189966499805, + -0.011306986212730408, + -0.007016129791736603, + 0.015481873415410519, + -0.011553420685231686, + 0.0006183508085086942, + 0.00222334498539567, + -0.027934053912758827, + 0.018656527623534203, + -0.004537290893495083, + -0.0027017174288630486, + -0.019845210015773773, + 0.0038632203359156847, + -0.00028607220156118274, + -0.00044349118252284825, + -0.011133032850921154, + 0.003604101948440075, + 0.022164592519402504, + 0.02506382018327713, + 0.0018754376797005534, + -0.015554354526102543, + -0.01971474476158619, + -0.0007895864546298981, + 0.017743270844221115, + -0.0021544883493334055, + -0.024165058508515358, + -0.01611970365047455, + 0.00048743258230388165, + 0.02104838937520981, + 0.009176054038107395, + -0.004566282965242863, + -0.01645311526954174, + -0.009734155610203743, + 0.010640163905918598, + -0.008494735695421696, + -0.016105206683278084, + 0.00037395503022708, + -0.012865320779383183, + -0.002812250517308712, + -0.008820898830890656, + 0.013010282069444656, + -0.010886598378419876, + -0.008661441504955292, + -0.012212994508445263, + 0.013684352859854698, + 0.048243142664432526, + -0.011633149348199368, + -0.0137350894510746, + -0.008262798190116882, + 0.013619120232760906, + -0.011111288331449032, + -0.011611404828727245, + -0.03902360051870346, + -0.00828454177826643, + -0.008509231731295586, + -0.017003968358039856, + -0.00274701789021492, + 0.014510632492601871, + 0.004116902593523264, + 0.025977076962590218, + 0.023889632895588875, + 0.012430436909198761, + -0.0074655101634562016, + 0.036066386848688126, + -0.021222343668341637, + 0.006947273388504982, + 0.009328263811767101, + 0.0074872542172670364, + -0.0207004826515913, + -0.030934754759073257, + 0.01701846346259117, + 0.014329430647194386, + -0.01280008815228939, + -0.005856439005583525, + 0.013561135157942772, + -0.004569907207041979, + 0.024599943310022354, + 0.02622351050376892, + -0.019323348999023438, + -0.022411026060581207, + -0.012546406127512455, + 0.010850357823073864, + 0.006646478548645973, + -0.005773086100816727, + -0.01342342235147953, + 0.023295290768146515, + -0.011676637455821037, + -0.0207004826515913, + -0.00016591281746514142, + 0.017714278772473335, + -0.010748885571956635, + 0.02025110274553299, + -0.0113722188398242, + 0.003564237616956234, + 0.027484674006700516, + 0.01769978180527687, + -0.0021200599148869514, + 0.0295141339302063, + -0.009060084819793701, + -0.008929619565606117, + 0.017772262915968895, + -0.0378929004073143, + -0.0060014002956449986, + -0.010089310817420483, + 0.015177454799413681, + 0.026209015399217606, + -0.01798970438539982, + -0.02271544560790062, + 0.006979889702051878, + 0.036269333213567734, + 0.005812950897961855, + 0.007266188506036997, + -0.036095380783081055, + -0.03458778187632561, + 0.01281458418816328, + -0.019961180165410042, + -0.007313300855457783, + -0.009552953764796257, + 0.010589427314698696, + -0.016772029921412468, + -0.01039372943341732, + -0.009096325375139713, + -0.004160391166806221, + -0.0056861094199121, + -0.0030985490884631872, + -0.0038487243000417948, + -0.018366605043411255, + 0.012205746956169605, + -0.01725040189921856, + -0.0009585570078343153, + -0.011241753585636616, + -0.0010283197043463588, + -0.006762447766959667, + -0.0106909004971385, + -0.0026437328197062016, + -0.010212528519332409, + 0.013829314149916172, + -0.0037146350368857384, + 0.004946806468069553, + 0.0019026178633794188, + -0.005566516425460577, + -0.01374958548694849, + -0.01380756963044405, + 0.012270979583263397, + -0.0009114446002058685, + 0.012372452765703201, + 0.0024136067368090153, + -0.009538457728922367, + 0.005291089881211519, + -0.012155010364949703, + 0.000910991569980979, + -0.010270512662827969, + 0.0015846089227125049, + -0.008023611269891262, + -0.0009304707637056708, + -0.011546172201633453, + 0.07816316932439804, + -0.012589894235134125, + -0.019337845966219902, + -0.0010998944053426385, + 0.013445166870951653, + -0.017061952501535416, + 0.006711711175739765, + 0.013938034884631634, + 0.006813183892518282, + -0.018004201352596283, + -0.01196656096726656, + -0.02393312193453312, + 0.014300438575446606, + 0.015728307887911797, + 0.0007198237581178546, + -0.014546873047947884, + 0.00926303118467331, + 0.022990873083472252, + -0.009581945836544037, + 0.009531209245324135, + 0.009929853491485119, + -0.014017763547599316, + -0.011350475251674652, + -0.00141427933704108, + -0.007233572192490101, + 0.015003501437604427, + 0.007287932559847832, + 0.021541258320212364, + 0.018671024590730667, + 0.02220808155834675, + 0.025498703122138977, + 0.019816217944025993, + -0.01942482218146324, + -0.0159747414290905, + 0.0004344310727901757, + 0.004508298356086016, + -0.0006727113504894078, + 0.01945381425321102, + -0.006048513110727072, + 0.02262846939265728, + -0.012126018293201923, + -0.0200191643089056, + 0.017482340335845947, + 0.01698947139084339, + 0.0013100883224979043, + 0.003064120886847377, + -0.01959877647459507, + -0.007121227215975523, + 0.0016815518029034138, + -0.004091534297913313, + -0.005128008313477039, + -0.01275660004466772, + 0.011560669168829918, + 0.014510632492601871, + -0.0024063587188720703, + -0.003312367247417569, + 0.01129973866045475, + -0.017598310485482216, + -0.00924853514879942, + 0.013894546777009964, + -0.007161091547459364, + -0.0220631193369627, + -0.007508998736739159, + -0.029079249128699303, + -0.01275660004466772, + -0.011524428613483906, + -0.01370609737932682, + -0.015162958763539791, + -0.0025531321298331022, + 0.002500583417713642, + -0.004410449415445328, + 0.020033661276102066, + 0.003373975632712245, + -0.019584279507398605, + -0.007077738642692566, + 0.003056872868910432, + 0.0200191643089056, + 0.008161325007677078, + 0.0046858759596943855, + -0.005852815229445696, + 0.01444539986550808, + 0.0019805345218628645, + 0.00033884719596244395, + -0.02381715178489685, + -0.009944349527359009, + 0.004015429876744747, + 0.02607855014503002, + -0.026440951973199844, + 0.01767078973352909, + 0.0013508587144315243, + -0.009777643717825413, + 0.023411260917782784, + -0.021932654082775116, + 0.014111989177763462, + -0.017235906794667244, + -0.004153143148869276, + -0.01440191175788641, + -0.03641429543495178, + 0.007965627126395702, + 0.003172841854393482, + 0.020207613706588745, + 0.005740469787269831, + 0.009958845563232899, + -0.0024915235117077827, + -0.008835394866764545, + 0.0010156355565413833, + 0.00898035615682602, + 0.007063242606818676, + -0.01668505370616913, + 0.020888932049274445, + 0.002150864340364933, + -0.009321015328168869, + -0.013698848895728588, + -0.026498937979340553, + -0.038559723645448685, + 0.017192417755723, + 0.012865320779383183, + 0.0020965037401765585, + -0.006809560116380453, + -0.0261075422167778, + -0.010125551372766495, + -0.004200255498290062, + -0.0007664831937290728, + -0.013256716541945934, + -0.010509698651731014, + 0.00041517839417792857, + -0.010835861787199974, + -0.009139814414083958, + -0.017888233065605164, + 0.014887532219290733, + -0.009835628792643547, + 0.018424589186906815, + -0.03154359385371208, + 0.0008656911668367684, + 0.0030278805643320084, + -0.007501750718802214, + 0.00534545024856925, + 0.014039508067071438, + 0.012589894235134125, + -0.002940903650596738, + 0.012539157643914223, + -0.00969791505485773, + -0.009176054038107395, + 0.023860640823841095, + -0.014836795628070831, + -0.028368938714265823, + -0.014612105675041676, + -0.008545472286641598, + 0.02580312266945839, + -0.010285008698701859, + 0.014916524291038513, + -0.01948280818760395, + 0.002261397195979953, + 0.00707411440089345, + 0.004381457343697548, + 0.006052136886864901, + -0.013785826042294502, + -0.012343459762632847, + -0.007458262145519257, + 0.00515337660908699, + 0.012314467690885067, + 0.013604624196887016, + -0.024831881746649742, + -0.005715101957321167, + -0.020541025325655937, + -0.0025966204702854156, + 0.007277060300111771, + 0.008328030817210674, + 0.017656294628977776, + 0.025411726906895638, + -0.006584870163351297, + 0.006367427762597799, + 0.0011959312250837684, + -0.021860172972083092, + 0.0020729475654661655, + 0.01820714771747589, + -0.0178737360984087, + 0.007798921316862106, + -0.010835861787199974, + 0.012227491475641727, + 0.008465743623673916, + -0.023527229204773903, + 0.010922838933765888, + -0.005088143981993198, + 0.010872102342545986, + -0.03786390647292137, + 0.0159747414290905, + -0.016714045777916908, + 0.0011624089675024152, + 0.014025012031197548, + -0.01656908355653286, + 0.012553653679788113, + 0.014960012398660183, + 0.006070257164537907, + -0.0013263964792713523, + -0.007186459843069315, + 0.00788589846342802, + 0.005602756515145302, + -0.0026926572900265455, + -0.01793172024190426, + -0.0015320604434236884, + 0.005841942969709635, + 0.009944349527359009, + -0.008726674132049084, + 0.00969791505485773, + -0.014467144384980202, + -0.016945984214544296, + -0.031949482858181, + -0.0037291310727596283, + 0.010248768143355846, + -0.03928453102707863, + -0.012807336635887623, + 0.01609071157872677, + 0.0113722188398242, + -0.011480939574539661, + 0.027687620371580124, + 0.014749818481504917, + 0.00180567498318851, + 0.023744670674204826, + 0.03073180839419365, + 0.006889288779348135, + 0.0035841697826981544, + 0.014010515995323658, + -0.024150563403964043, + -0.011459195986390114, + -0.005903551355004311, + 0.005921671632677317, + 0.014242454431951046, + 0.006842176429927349, + -0.03189149871468544, + 0.010314000770449638, + 0.01444539986550808, + -0.0050736479461193085, + 0.000273614568868652, + 0.01948280818760395, + 0.023802656680345535, + 0.018105674535036087, + -0.0013689788756892085, + -0.011589661240577698, + -0.007287932559847832, + -0.007827913388609886, + 0.021671723574399948, + -0.03293522074818611, + 0.0032888108398765326, + -0.010227024555206299, + -0.017351875081658363, + 0.007295180577784777, + 0.0009118975722230971, + -0.018685519695281982, + -2.9048898795736022e-5, + -0.0002996623225044459, + -0.004555410705506802, + 0.009741404093801975, + -0.0017929908353835344, + -0.006842176429927349, + 0.0033159912563860416, + -0.003279750933870673, + 0.01917838864028454, + -0.006102873478084803, + -0.003335923422127962, + -0.014626601710915565, + 0.0037871156819164753, + 0.02061350643634796, + 0.0017603745218366385, + 0.019874202087521553, + 0.019888699054718018, + -0.03394995257258415, + 0.002591184340417385, + -0.01340892631560564, + 0.03200747072696686, + -0.019830714911222458, + 0.009654426947236061, + 0.013582879677414894, + -0.003718259045854211, + -0.005421555135399103, + 0.011502684094011784, + 0.020439552143216133, + -0.01956978440284729, + 0.0006319409585557878, + 0.014322183094918728, + 0.007451014127582312, + 0.015713810920715332, + -0.0007696542306803167, + -0.015365904197096825, + 0.0013517647748813033, + -0.042154762893915176, + -0.01772877387702465, + 0.006530509330332279, + -0.009676171466708183, + -0.00045073922956362367, + 0.004747484810650349, + -0.005903551355004311, + 0.005972408223897219, + 0.010248768143355846, + -0.01063291635364294, + -0.01040822546929121, + 0.000138845804031007, + -0.006990761961787939, + 0.016830014064908028, + -0.0012312656035646796, + -0.0028575509786605835, + 0.005283841863274574, + -0.0002448488085065037, + -0.0246434323489666, + 0.028108008205890656, + -0.0012557278387248516, + 0.025527697056531906, + -0.0001960375957423821, + -0.017482340335845947, + 0.013024778105318546, + -0.0011225445196032524, + 0.00892237201333046, + -0.018801487982273102, + -0.009458729065954685, + -0.011785359121859074, + -0.010248768143355846, + 0.022947384044528008, + 0.01656908355653286, + -0.00172413419932127, + 0.004910566378384829, + -0.007566983345896006, + 0.004819965455681086, + 0.014648346230387688, + 0.012705863453447819, + 0.02506382018327713, + 0.007806169334799051, + 0.031427621841430664, + 0.004044421948492527, + 0.02093242108821869, + 0.009407992474734783, + -0.001813829061575234, + -0.004211127758026123, + -0.018337612971663475, + 0.011691134423017502, + -0.014532377012073994, + 0.012778344564139843, + 0.013887298293411732, + -0.013698848895728588, + 0.005207736976444721, + 0.0004054388264194131, + -0.01523543894290924, + -0.01752582937479019, + -0.0030043241567909718, + 0.002477027243003249, + -0.005555644165724516, + 0.022816918790340424, + -0.0023139456752687693, + 0.010872102342545986, + 0.026643898338079453, + 0.0327322743833065, + -0.0006863014423288405, + 0.0061826021410524845, + 0.015496369451284409, + -0.0001824474602472037, + -0.03218142315745354, + 0.005751342047005892, + 0.01662706770002842, + 0.012379700317978859, + 0.023498237133026123, + 0.010205280035734177, + 0.0012385136215016246, + 0.024266531690955162, + -0.017859239131212234, + -0.009777643717825413, + 0.007864153943955898, + 0.0008231087704189122, + 0.01340892631560564, + -0.003326863283291459, + -0.013590128161013126, + 0.0076974486000835896, + -0.009871868416666985, + -0.029862040653824806, + -0.0027343337424099445, + -0.029108241200447083, + -0.015046989545226097, + 0.005624501034617424, + -0.0025893724523484707, + 0.0030441887211054564, + -0.00028403368196450174, + 0.005595508497208357, + -0.0030496246181428432, + 0.001700578024610877, + 0.009212294593453407, + -0.011814351193606853, + 0.008168572559952736, + 0.025107307359576225, + -0.008081596344709396, + 0.003913956694304943, + -0.006592118181288242, + -0.038675691932439804, + -0.005102640017867088, + 0.009850124828517437, + 0.01342342235147953, + 0.002353810239583254, + -0.0048743258230388165, + -0.022425523027777672, + -0.019250869750976562, + 0.013329197652637959, + 0.0026709132362157106, + -0.00668996712192893, + 0.0017431604210287333, + -0.004928686190396547, + -0.0019026178633794188, + 0.009016596712172031, + 0.009690667502582073, + -0.014220709912478924, + -0.014278694055974483, + 0.014887532219290733, + 0.02104838937520981, + -0.03539956361055374, + 0.01370609737932682, + 0.014039508067071438, + 0.01196656096726656, + 0.015423889271914959, + 0.0113722188398242, + 0.008393262512981892, + -0.001838291296735406, + -0.0026346726808696985, + 0.022222576662898064, + 0.0038704683538526297, + 0.026556922122836113, + 0.0077626812271773815, + 0.015902262181043625, + 5.5266518756980076e-5, + 0.001275660004466772, + 0.00926303118467331, + 0.021599242463707924, + 0.0015429324703291059, + 0.013104507699608803, + 0.020236605778336525, + 0.013350941240787506, + -0.02749917097389698, + 0.017337379977107048, + 0.014343926683068275, + -0.017467845231294632, + -0.008436751551926136, + 0.017119936645030975, + 0.0017639986472204328, + -0.006269578821957111, + 0.027093278244137764, + -0.007095858920365572, + -0.0020475792698562145, + -0.002891979180276394, + -0.0013137123314663768, + 0.008168572559952736, + 0.005030159372836351, + 0.00414951890707016, + 0.012539157643914223, + 0.0008992134826257825, + -0.017235906794667244, + 0.0014731698902323842, + 0.0060992492362856865, + 0.00048244954086840153, + -0.0046605076640844345, + -0.019163891673088074, + -0.01600373536348343, + 0.007389405742287636, + -0.008248301222920418, + 0.021062886342406273, + -0.030209947377443314, + 0.014409159310162067, + -0.00031234644120559096, + 0.013814818114042282, + -0.005388938821852207, + -0.0004969456931576133, + -0.005414307117462158, + 0.010444466024637222, + 0.013575632125139236, + -0.00020124713773839176, + 0.009313767775893211, + -0.005751342047005892, + 0.022860407829284668, + 0.032471343874931335, + 0.003982813563197851, + -0.00029717080178670585, + -0.00397194130346179, + -0.01656908355653286, + 0.00899485219269991, + -0.004345216788351536, + -0.00969791505485773, + -0.02444048598408699, + -0.0165110994130373, + -0.017337379977107048, + -0.007164715323597193, + 0.008784658275544643, + -0.006425412371754646, + -0.016496602445840836, + 0.014735322445631027, + 0.0026111165061593056, + -0.0013635428622364998, + -0.004526418633759022, + 0.008110588416457176, + 0.00856721680611372, + 0.017351875081658363, + 0.004729364532977343, + -0.006729831453412771, + -0.004062542226165533, + 0.027600644156336784, + -0.0002489258476998657, + -0.004334344994276762, + 0.015438385307788849, + -0.017395364120602608, + -0.015597842633724213, + 0.005421555135399103, + 0.004946806468069553, + 0.01303927507251501, + -0.017496837303042412, + -0.01416272483766079, + -0.007200955878943205, + 0.011393963359296322, + 0.019961180165410042, + -0.02515079639852047, + -0.004649635870009661, + 0.007806169334799051, + -0.010256016626954079, + 0.008755666203796864, + -0.00501928711310029, + -0.0012493857648223639, + 0.03441382944583893, + 0.002261397195979953, + 0.016322650015354156, + -0.028137000277638435, + -0.0023085097782313824, + -0.004888821858912706, + 0.013880050741136074, + 0.02749917097389698, + 0.008487488143146038, + -0.00014983116125222296, + -0.005436051171272993, + 0.0007098576752468944, + -0.017395364120602608, + 0.018989939242601395, + 0.007055994588881731, + 0.0004582138208206743, + 0.0077771772630512714, + 0.01606171950697899, + 0.0005988716147840023, + 0.0019406703067943454, + 0.00797287467867136, + -0.01829412393271923, + -0.0008145016618072987, + -0.00137350894510746, + 0.01337993424385786, + -0.0025132675655186176, + -0.015336912125349045, + 0.0014079372631385922, + -0.009306519292294979, + -0.028644366189837456, + -0.023918624967336655, + -0.0013635428622364998, + -0.013684352859854698, + 0.014960012398660183, + 0.023657694458961487, + -0.009067333303391933, + 0.019787225872278214, + -0.010980823077261448, + -0.013010282069444656, + -0.0014668278163298965, + 0.006226090714335442, + 0.013401677832007408, + -0.002997076138854027, + -0.006236962508410215, + -0.0046858759596943855, + 0.0015184702351689339, + -0.024889865890145302, + -0.007019754033535719, + 0.003961069043725729, + 0.021729707717895508, + -0.002625612774863839, + -0.013256716541945934, + -0.0020149629563093185, + -0.0022088487166911364, + -0.02248350717127323, + -0.008835394866764545, + -0.008697682060301304, + 0.01003857422620058, + -0.01196656096726656, + -0.015351408161222935, + 0.02283141389489174, + 0.0004552692698780447, + 0.0030840530525892973, + -0.014648346230387688, + -0.021193351596593857, + -0.01002407819032669, + -0.010371985845267773, + 0.0006659162463620305, + 0.006769695784896612, + 0.00564262131229043, + 0.004077038262039423, + -0.014496136456727982, + 0.03200747072696686, + -0.00929202325642109, + -0.010198031552135944, + 0.002525951713323593, + 0.004598899278789759, + -0.00889337994158268, + -0.008864386938512325, + 0.014931020326912403, + -5.58894025743939e-5, + -0.016206679865717888, + 0.015177454799413681, + 0.017627302557229996, + -0.00012310390593484044, + 0.0016851758118718863, + 0.013532143086194992, + 0.004029925912618637, + 0.002246901160106063, + -0.016322650015354156, + -0.0037871156819164753, + 0.005421555135399103, + -0.018163658678531647, + -0.0063384356908500195, + 0.025571184232831, + -0.018642030656337738, + 0.011959312483668327, + -0.018120169639587402, + 0.020656993612647057, + -0.02283141389489174, + 0.03522561118006706, + 0.013698848895728588, + -0.012568150646984577, + -0.005142504349350929, + 0.016018230468034744, + -0.006497893016785383, + 0.015278927981853485, + -0.002533199731260538, + -0.008574464358389378, + 0.012698615901172161, + 0.010256016626954079, + -0.02860087715089321, + 0.0077191926538944244, + 0.005062775686383247, + 0.0031202933751046658, + -0.02375916764140129, + -0.0019986547995358706, + -0.012270979583263397, + -0.007965627126395702, + 0.009770396165549755, + -0.013938034884631634, + -0.02058451436460018, + 0.04151693359017372, + -0.018627535551786423, + -0.007066866382956505, + 0.009502217173576355, + 0.009625434875488281, + -0.006925529334694147, + 0.011444699950516224, + -0.008009115234017372, + 0.0025023955386132, + 0.009871868416666985, + -0.015278927981853485, + -0.0006568561657331884, + -0.023005368188023567, + 0.006476148962974548, + -0.007501750718802214, + 0.012930553406476974, + 0.016076214611530304, + -0.010183535516262054, + 0.01201004907488823, + 0.009915357455611229, + -0.015626834705471992, + -0.0220631193369627, + -0.0011406646808609366, + 0.006476148962974548, + -0.01134322676807642, + -0.0063710520043969154, + 0.005378066562116146, + 0.01311175525188446, + 0.009683419018983841, + 0.0002731615677475929, + 0.009161558002233505, + 0.009335512295365334, + -0.020178621634840965, + 0.01475706696510315, + -0.005573764443397522, + -0.006624734494835138, + 0.002527763834223151, + -0.019381335005164146, + -0.01002407819032669, + -0.04006732255220413, + -0.002190728671848774, + 0.0076539600268006325, + -0.01942482218146324, + -0.016670556738972664, + -1.5911775335553102e-5, + 0.013090010732412338, + -0.004472058266401291, + -0.019047923386096954, + -0.025136301293969154, + 0.0012892500963062048, + -0.007273436523973942, + -0.005305585917085409, + -0.029238706454634666, + 0.001168751041404903, + 0.014264198020100594, + 0.00485620554536581, + 0.008393262512981892, + 0.004664131905883551, + -0.004928686190396547, + 0.0063565559685230255, + -0.02441149391233921, + -0.009016596712172031, + 0.021671723574399948, + -0.016148695722222328, + 0.02093242108821869, + -0.01885947398841381, + 0.003473636694252491, + 0.004247367847710848, + -0.0047583566047251225, + -0.003783491672948003, + 0.01798970438539982, + 0.016525596380233765, + -0.000633752963040024, + 0.00831353385001421, + -0.027368705719709396, + -0.005088143981993198, + -0.001356294727884233, + -0.011125784367322922, + -0.01781575195491314, + 0.016134200617671013, + 0.0033304872922599316, + 0.0017911788308992982, + 0.016380634158849716, + 0.008132332935929298, + -0.006320315413177013, + 0.0048018451780080795, + 0.010611171834170818, + 0.028557388111948967, + -0.006102873478084803, + 0.02622351050376892, + 0.014836795628070831, + 0.015177454799413681, + -0.014989005401730537, + 0.009081829339265823, + -0.014481640420854092, + -0.015423889271914959, + 0.010111055336892605, + 0.010473458096385002, + 0.005548396147787571, + 0.028789326548576355, + -0.036066386848688126, + -0.003147473558783531, + 0.008451247587800026, + -0.009089077822864056, + 0.013343693688511848, + -0.005566516425460577, + -0.024846376851201057, + -0.0016280972631648183, + 0.011647645384073257, + 0.024165058508515358, + -0.003196398029103875, + -0.023005368188023567, + 0.030412893742322922, + 0.01230722013860941, + -0.010140047408640385, + -0.0010101995430886745, + 9.971756662707776e-5, + 0.0046532596461474895, + 0.014423655346035957, + 0.009350008331239223, + 0.008617953397333622, + 0.004584403242915869, + 0.009741404093801975, + 0.009125317446887493, + -0.005805702414363623, + -0.0014641097513958812, + 0.006294947117567062, + 0.005544772371649742, + -0.01098807156085968, + 0.03522561118006706, + -0.0014858539216220379, + 0.01006756629794836, + 0.004091534297913313, + -0.019207380712032318, + 0.004457561764866114, + -0.008146828971803188, + -0.0025476959999650717, + 0.005918047856539488, + 0.005903551355004311, + 0.009444233030080795, + -0.010263264179229736, + 0.017946217209100723, + -0.018004201352596283, + 0.008342526853084564, + -0.024802889674901962, + -0.008016363717615604, + -0.004765604622662067, + 0.0038523483090102673, + 0.020917924121022224, + -0.009552953764796257, + -0.0011008003493770957, + 0.007951131090521812, + -0.0007094047032296658, + 0.01769978180527687, + 0.026440951973199844, + 0.0034790728241205215, + 0.016163192689418793, + -0.004062542226165533, + -0.02348374016582966, + -0.014213461428880692, + 0.00819756556302309, + -0.0010600299574434757, + -0.023150330409407616, + -0.0019008058588951826, + -0.012655126862227917, + 0.02960111014544964, + -0.01471357885748148, + -0.011604157276451588, + 0.000637830002233386, + -0.005504907574504614, + 0.00518236868083477, + -0.0012058973079547286, + -0.005454171448945999, + -0.002917347475886345, + 0.0076612080447375774, + -0.007070490624755621, + 0.011466443538665771, + -0.020323583856225014, + -0.0061318655498325825, + 0.012821832671761513, + -0.029021264985203743, + 0.004548162687569857, + 0.004029925912618637, + -0.012444932945072651, + -0.03525460511445999, + 0.001397971180267632, + 0.018062185496091843, + 0.005160624627023935, + -0.0012783780694007874, + 0.0018102050526067615, + -0.01370609737932682, + 0.0015728308353573084, + -0.01852606236934662, + 0.008458495140075684, + 0.0061644818633794785, + -0.03519662097096443, + -0.014691834338009357, + 0.005436051171272993, + 0.005649869330227375, + 0.0029390917625278234, + 0.00010538011702010408, + -0.02619451843202114, + 0.012763848528265953, + -0.015206446871161461, + -0.0012240174692124128, + 0.004142270889133215, + -0.017409859225153923, + 0.021149862557649612, + -0.009777643717825413, + 0.003450080519542098, + -0.004142270889133215, + 0.009951598010957241, + -0.0030532486271113157, + -0.002239653142169118, + -0.021628236398100853, + -0.004026301670819521, + -0.018844977021217346, + 0.006979889702051878, + 0.003997309599071741, + -0.012966793961822987, + 0.004167639184743166, + 0.013677104376256466, + 0.01600373536348343, + 0.0165110994130373, + 0.014720826409757137, + -0.005907175596803427, + -0.014931020326912403, + -0.005624501034617424, + -0.012415940873324871, + -0.025339245796203613, + -0.021686220541596413, + -0.019671257585287094, + 0.005519404076039791, + -0.006113745737820864, + 0.0027905062306672335, + -0.008900627493858337, + -0.002239653142169118, + -0.012676871381700039, + -0.006903784815222025, + 0.006077505182474852, + -0.005421555135399103, + -0.012075281701982021, + 0.02271544560790062, + 0.008472992107272148, + -0.030818786472082138, + 0.008545472286641598, + 0.0025567561388015747, + -0.01199555303901434, + -0.006425412371754646, + 0.017453348264098167, + -0.008386014960706234, + -0.002884731162339449, + 0.02809351310133934, + -0.004069790244102478, + -0.004921438172459602, + 0.003924828954041004, + 0.01755482144653797, + 0.005468667484819889, + -0.0102777611464262, + -0.00921954307705164, + 0.0024299148935824633, + 0.0005340920179150999, + -0.027658628299832344, + -0.007443766109645367, + -0.006693590898066759, + -0.02126583270728588, + -0.03464576601982117, + -0.012713111937046051, + -0.005744094029068947, + 0.005664365366101265, + 0.007092234678566456, + -0.004417697433382273, + 0.005251225549727678, + 0.013474158942699432, + 0.01639513112604618, + -0.008052603341639042, + -0.006545005366206169, + 0.001299216179177165, + 0.002337502082809806, + -0.012205746956169605, + 0.008690433576703072, + 0.0026364848017692566, + 0.006523261312395334, + 0.027397697791457176, + -0.017511332407593727, + -0.0023248179350048304, + -0.011169273406267166, + -0.006628358270972967, + -0.007566983345896006, + -0.010770629160106182, + 0.01968575268983841, + 0.0015157522866502404, + 0.007171963341534138, + -0.004501050338149071, + -0.004598899278789759, + -0.026353975757956505, + -0.0031855260021984577, + -0.02636847272515297, + 0.020120637491345406, + 0.008117835968732834, + 0.0063565559685230255, + -0.005272969603538513, + -0.017380867153406143, + -0.014249701984226704, + 0.010299504734575748, + 0.006987137719988823, + 0.009183302521705627, + -0.019729241728782654, + 0.004794597160071135, + 0.005570140201598406, + -0.011575165204703808, + 0.03174654021859169, + 0.016525596380233765, + -0.009893612936139107, + 0.0016987660201266408, + 0.010640163905918598, + -0.004008181858807802, + -0.0063493079505860806, + -0.003401156049221754, + -0.005570140201598406, + 0.00668996712192893, + 0.0048996941186487675, + 0.013880050741136074, + -0.02093242108821869, + 0.012546406127512455, + -0.015496369451284409, + 0.013575632125139236, + -0.016308153048157692, + 0.006936401128768921, + 0.003979189321398735, + 0.003357667475938797, + 0.004457561764866114, + -0.022700950503349304, + -0.0015891389921307564, + 0.034732744097709656, + 0.023512734100222588, + 0.0015972930705174804, + 0.030383901670575142, + -0.027180256322026253, + 0.015293424017727375, + -0.024788392707705498, + 0.003620410105213523, + 0.013887298293411732, + -0.012684118933975697, + -0.005385314580053091, + 0.0032996830996125937, + 0.007204579655081034, + 0.0095457062125206, + 0.008357022888958454, + -0.0007515340694226325, + -0.004240119829773903, + -0.01603272743523121, + 0.0261075422167778, + 0.0030115724075585604, + -0.02752816304564476, + -0.003979189321398735, + 0.01696047931909561, + 0.008668689988553524, + -0.009052837267518044, + -0.0024063587188720703, + 0.013611871749162674, + 0.018033193424344063, + -0.010792373679578304, + -0.004798220936208963, + 0.0030786169227212667, + -0.0063638039864599705, + 0.021657228469848633, + 0.00035742035834118724, + -0.025223277509212494, + 1.1459592315077316e-5, + 0.024150563403964043, + 0.0022813293617218733, + -0.029630102217197418, + -0.017946217209100723, + -0.029079249128699303, + 0.02639746479690075, + 0.024295523762702942, + 0.021062886342406273, + 0.006334811449050903, + 0.004337968770414591, + 0.019105907529592514, + 0.0019986547995358706, + -0.01668505370616913, + -0.010886598378419876, + -0.0014179033460095525, + 0.00276151392608881, + -0.01280008815228939, + -0.016902495175600052, + -0.017467845231294632, + -0.039777398109436035, + 0.003874092362821102, + -0.002076571574434638, + 0.007798921316862106, + -0.008335278369486332, + -0.01832311600446701, + 0.00929202325642109, + -0.0006967205554246902, + 0.017917225137352943, + 0.004722116515040398, + 0.009350008331239223, + -0.009784892201423645, + -0.0006101967301219702, + -0.015075981616973877, + 0.011038808152079582, + -0.007610471453517675, + -0.02268645353615284, + 0.010169039480388165, + 0.00274701789021492, + 0.0030876770615577698, + 0.00550853181630373, + -0.004432193469256163, + -0.014054004102945328, + 0.0013273025397211313, + 0.004145895130932331, + -0.0014015951892361045, + 0.0008697682060301304, + -0.0037979877088218927, + -0.02087443694472313, + 0.008088843896985054, + 0.019801722839474678, + -0.01406125258654356, + 0.005939791910350323, + -0.004388705361634493, + -0.012829081155359745, + -0.0009594630100764334, + 0.01245942898094654, + 0.012017296627163887, + 0.030007002875208855, + -0.012647879309952259, + -0.0075959754176437855, + -0.007994619198143482, + 0.012234739027917385, + -0.020743971690535545, + 0.0165110994130373, + -0.01600373536348343, + -0.0061064972542226315, + 0.018772495910525322, + 0.025411726906895638, + -0.014206213876605034, + 0.029137233272194862, + 0.005410682875663042, + -0.006334811449050903, + 0.00552302785217762, + 0.012270979583263397, + -0.014169973321259022, + -0.026122037321329117, + -0.006019520573318005, + 0.0010654659708961844, + 0.0006776943919248879, + -0.010487955063581467, + -0.015032493509352207, + -0.02435350976884365, + 0.011393963359296322, + 0.023831648752093315, + 0.016859006136655807, + -0.004381457343697548, + 0.013640864752233028, + -0.014612105675041676, + -0.0020874436013400555, + -0.012205746956169605, + 0.019584279507398605, + 0.0062079704366624355, + 0.0024878995027393103, + 0.009139814414083958, + 0.015409393236041069, + 0.0024045465979725122, + -0.0008113306248560548, + -0.012713111937046051, + -0.0048090931959450245, + -0.008465743623673916, + -0.011705630458891392, + -0.018671024590730667, + -0.013430669903755188, + 0.001478605903685093, + 0.007157467305660248, + -0.0075959754176437855, + -0.0076394639909267426, + -0.007320548873394728, + 0.006722583435475826, + -0.00047927850391715765, + -0.018308620899915695, + 0.0016643377020955086, + -0.0003961522306781262, + -0.010611171834170818, + 0.0006101967301219702, + 0.0095457062125206, + -0.0009322827681899071, + -0.006563125643879175, + 0.02877483144402504, + -0.005178744904696941, + 0.008386014960706234, + 0.013010282069444656, + -0.005526652093976736, + -0.024165058508515358, + 0.018569551408290863, + 0.01248842105269432, + 0.00025572089361958206, + 0.018815984949469566, + -0.008646945469081402, + -0.02455645427107811, + 0.0013427046360448003, + 0.023353274911642075, + 0.012002800591289997, + 0.005867311265319586, + 0.009973341599106789, + -0.0039030846673995256, + 0.01447439193725586, + -0.01040822546929121, + -0.017511332407593727, + 0.006044888868927956, + -0.01939583010971546, + 0.007211827673017979, + 0.010451714508235455, + -0.0063891722820699215, + -1.8360828107688576e-5, + -0.010908342897891998, + -0.008248301222920418, + 0.017424356192350388, + 0.0025966204702854156, + 0.02886180765926838, + -0.002866610884666443, + -0.009364504367113113, + -0.03180452436208725, + -0.015539858490228653, + 0.011053304187953472, + 0.041140034794807434, + -0.010234272107481956, + 0.010937334969639778, + 0.012133265845477581, + 0.016351642087101936, + 0.01843908615410328, + -0.01410474069416523, + -0.00014246984210330993, + -0.02404909022152424, + -0.0007306959014385939, + -0.01104605570435524, + 0.0109590794891119, + 0.022077616304159164, + -0.011567916721105576, + -0.011821599677205086, + -0.015293424017727375, + -0.022425523027777672, + -0.01752582937479019, + -0.0009621810750104487, + 0.0062152184545993805, + -0.02188916504383087, + -0.015177454799413681, + 0.0014641097513958812, + 0.008842643350362778, + -0.00335223157890141, + 0.02212110348045826, + 2.0413504898897372e-5, + -0.027745604515075684, + -0.004207503516227007, + -0.03177553042769432, + 0.0016362513415515423, + 0.0003578733594622463, + 0.012140514329075813, + 0.012140514329075813, + -0.007922138087451458, + -0.021628236398100853, + -0.0028303705621510744, + 0.019700249657034874, + -0.013184236362576485, + -0.011734622530639172, + -0.004479306284338236, + -0.012191250920295715, + -0.0010980822844430804, + -0.012589894235134125, + 0.02197614312171936, + 0.010524194687604904, + 0.0025966204702854156, + -0.004511922597885132, + -0.027992039918899536, + -0.008132332935929298, + 0.029122738167643547, + -0.012908809818327427, + -0.011191016994416714, + 0.038588713854551315, + 0.018004201352596283, + 0.003982813563197851, + 0.026629403233528137, + -0.0026292367838323116, + -0.017482340335845947, + 0.004435817711055279, + 0.012278227135539055, + 0.02517978847026825, + -0.03197847679257393, + -0.0034700126852840185, + 0.02248350717127323, + -0.0034283362329006195, + 0.011321482248604298, + -0.0010600299574434757, + 0.009132565930485725, + 0.020033661276102066, + 0.007150219287723303, + -0.01965676061809063, + 0.017496837303042412, + -0.0031275413930416107, + 0.00516787264496088, + -0.0022505251690745354, + 0.012126018293201923, + -0.018613038584589958, + 0.011589661240577698, + -0.009828380309045315, + 0.00024915233370848, + 0.01591675728559494, + 0.0014940080000087619, + 0.0014115612721070647, + 0.0006024956819601357, + 0.03183351457118988, + -0.007748184725642204, + 0.014467144384980202, + 0.004374209325760603, + 0.016830014064908028, + 0.009060084819793701, + -0.00821206159889698, + -0.022613972425460815, + -0.0014079372631385922, + 0.01948280818760395, + -0.0008502890123054385, + -0.006668222602456808, + 0.019758233800530434, + 0.016743037849664688, + 0.00761771947145462, + 0.0009277527569793165, + 0.005754966288805008, + -0.015264431945979595, + 0.001741348416544497, + 0.0031583458185195923, + -1.5416300811921246e-5, + 0.00972690712660551, + -0.005265721585601568, + -0.005012039095163345, + -0.01308276318013668, + -0.024715913459658623, + 0.0030188204254955053, + 0.015554354526102543, + 0.017801254987716675, + 0.007733688689768314, + 0.0017431604210287333, + -0.015568850561976433, + 0.015249935910105705, + -0.01764179766178131, + -0.006581245921552181, + 0.006664598826318979, + 0.05015663057565689, + 0.035080648958683014, + 0.008530976250767708, + -0.014546873047947884, + 0.0026509808376431465, + -0.0441262386739254, + -0.013590128161013126, + 0.009987837634980679, + -0.01600373536348343, + -0.004533666651695967, + 0.006889288779348135, + -0.025948084890842438, + 0.008603457361459732, + 0.003172841854393482, + -0.007309676613658667, + 0.010415473952889442, + -0.0030423766002058983, + -0.012858073227107525, + 0.0015374964568763971, + 0.013988771475851536, + 0.0018237951444461942, + 0.01538040116429329, + -0.01778675988316536, + -0.0036077259574085474, + -0.0026854092720896006, + 0.009415240958333015, + -0.0027995663695037365, + -0.036211349070072174, + -0.0026346726808696985, + -0.004526418633759022, + 0.014691834338009357, + -0.017235906794667244, + -0.033602043986320496, + -0.0002844866830855608, + 0.003892212640494108, + 0.02146877720952034, + 0.00719370786100626, + 0.016728540882468224, + -0.008900627493858337, + -0.0011261686449870467, + -0.02960111014544964, + -0.020207613706588745, + 0.027629636228084564, + -0.013119003735482693, + -0.004109654575586319, + 0.005776710342615843, + -0.0037400030996650457, + 0.006102873478084803, + -0.021787693724036217, + 0.008125084452331066, + 0.019772730767726898, + 0.013234972953796387, + -0.012879816815257072, + -0.00831353385001421, + 0.0014831359731033444, + -0.003401156049221754, + 0.005867311265319586, + -0.0008321688510477543, + -0.010190783999860287, + -0.019975675269961357, + 0.008603457361459732, + 0.008784658275544643, + 0.005432426929473877, + 0.004087910521775484, + -0.0035823576617985964, + -0.010140047408640385, + 0.0010446278611198068, + 0.01416272483766079, + 0.008929619565606117, + -0.021280327811837196, + 0.0059434156864881516, + -0.015322416089475155, + -0.015989238396286964, + -0.015525362454354763, + -0.016438618302345276, + -0.01609071157872677, + -0.016612572595477104, + -0.013626367785036564, + -0.015278927981853485, + -0.003406591946259141, + 0.0073495409451425076, + -0.000637830002233386, + 0.004185759462416172, + 0.0095457062125206, + -0.0030170083045959473, + -0.014655593782663345, + 0.010770629160106182, + -0.005802078638225794, + -0.0025458838790655136, + 0.02061350643634796, + 0.005171496886759996, + -0.003506253007799387, + -0.01580078899860382, + -0.0002326176909264177, + 0.013292957097291946, + 0.007135723251849413, + -0.0029028512071818113, + 0.0008964954176917672, + 0.006566749885678291, + 0.007610471453517675, + -0.0073495409451425076, + 0.017206914722919464, + -0.002908287337049842, + 0.02934017963707447, + -0.009900861419737339, + -0.03264530003070831, + 0.010814118199050426, + -0.031311653554439545, + -0.011270745657384396, + 0.01172737404704094, + -0.014532377012073994, + 0.006708086933940649, + -0.01202454511076212, + 0.026498937979340553, + 0.0013716969406232238, + 0.015365904197096825, + -0.013880050741136074, + 0.021512266248464584, + 0.008349774405360222, + 0.009719659574329853, + -0.014793307520449162, + 0.013916291296482086, + 0.027876069769263268, + 0.013851058669388294, + -0.004780101124197245, + -0.011633149348199368, + -0.01202454511076212, + 0.009190550073981285, + -0.01574280485510826, + -0.009096325375139713, + -0.0004869795811828226, + 0.0017712466651573777, + 0.008944116532802582, + 0.010219776071608067, + -0.0013943471712991595, + -0.013756833039224148, + 0.019787225872278214, + -0.010241520591080189, + 0.02957211807370186, + -0.00738578150048852, + -0.03386297449469566, + 0.019584279507398605, + -0.004540914669632912, + 0.008820898830890656, + -0.019366838037967682, + 0.0030260684434324503, + -0.015626834705471992, + 0.006653726566582918, + 0.0047511085867881775, + 0.008059851825237274, + -0.002518703695386648, + -0.014452648349106312, + -0.004646011628210545, + -0.002239653142169118, + -0.0004575343045871705, + 0.005718725733458996, + -0.018091177567839622, + 0.005287465639412403, + -0.014604857191443443, + -0.007675704080611467, + -0.006885665003210306, + 0.01522094290703535, + -0.003417464205995202, + -0.006650102790445089, + 0.0010174475610256195, + 0.00013295674580149353, + -0.003015196416527033, + 0.01033574528992176, + -0.024962347000837326, + -0.012988538481295109, + -0.002656416967511177, + 0.003055060748010874, + -0.007298804819583893, + 0.020830947905778885, + -0.0011062363628298044, + 0.02101939730346203, + -0.0015927630010992289, + -0.005214984994381666, + -0.04543089121580124, + -0.01303927507251501, + 0.01636613719165325, + 0.023715678602457047, + 0.016873503103852272, + -0.005095391999930143, + -0.007552486844360828, + 0.013488654978573322, + 0.002810438396409154, + 0.01580078899860382, + 0.036095380783081055, + 0.008023611269891262, + -0.01480055507272482, + 0.024150563403964043, + -0.014082996174693108, + -0.001700578024610877, + -0.02458544820547104, + -0.004087910521775484, + 0.0004337515856605023, + -0.002130931941792369, + -0.013988771475851536, + 0.0075959754176437855, + 7.916249160189182e-5, + 0.009241286665201187, + -0.010147295892238617, + 0.0032580066472291946 + ], + "d8dd091c-aa13-44d1-938f-a12292d48d95": [ + -0.00617631571367383, + 0.014712282456457615, + -0.008116630837321281, + 0.005693013779819012, + -0.048131197690963745, + -0.03914746642112732, + 0.023454364389181137, + 0.006016399711370468, + -0.004541617818176746, + 0.01944579929113388, + 0.002507129218429327, + 0.029794149100780487, + 0.029111839830875397, + 0.005220372695475817, + -0.04520295560359955, + 0.005209711845964193, + -0.016389625146985054, + 0.03411543741822243, + 0.007533825933933258, + -0.013333450071513653, + 0.056489478796720505, + -0.019374726340174675, + -0.04443535953760147, + 0.014236087910830975, + 0.013788322918117046, + -0.018521839752793312, + -0.001856803777627647, + -0.016034256666898727, + -0.04173455387353897, + 0.0013735017273575068, + 0.03619079291820526, + -0.003937490284442902, + 0.03169892728328705, + -0.010106698609888554, + -0.0025924178771674633, + -0.05822367966175079, + -0.04127968102693558, + 0.005856483709067106, + 0.02241668477654457, + 0.003036629408597946, + 0.010355456732213497, + 0.010639752261340618, + 0.010113805532455444, + 0.02253040298819542, + -0.02093834988772869, + 0.015181370079517365, + -0.0009657156770117581, + -0.0007644878933206201, + 0.007306389510631561, + 0.012075443752110004, + -0.03243809565901756, + -0.004534510429948568, + -0.012011476792395115, + 0.024648403748869896, + 0.029936296865344048, + -0.002375642769038677, + 0.0007458309992216527, + 0.0852317363023758, + -0.0053589665330946445, + -0.04039836302399635, + -0.006048382725566626, + -0.04932523891329765, + 0.01955951750278473, + 0.0038486479315906763, + -0.005710782017558813, + -0.014086833223700523, + -0.02904076687991619, + 0.029652001336216927, + -0.036674097180366516, + -0.016489127650856972, + 0.007874980568885803, + 0.04767632484436035, + -0.010135128162801266, + 0.023923451080918312, + -0.033148832619190216, + 0.018251759931445122, + 0.03857887536287308, + -0.008734973147511482, + 0.016787638887763023, + 0.03249495476484299, + 0.006432181689888239, + -0.02078198827803135, + 0.001150507596321404, + 0.01661706157028675, + 0.033973291516304016, + -0.013312128372490406, + -0.036361370235681534, + -0.049865398555994034, + -0.030675465241074562, + -0.01213940978050232, + -0.010312812402844429, + 0.05444255471229553, + -0.0175552349537611, + -0.03348998725414276, + -0.014399557374417782, + -0.029652001336216927, + 0.013312128372490406, + -0.009467033669352531, + 0.003294271882623434, + -0.0032498508226126432, + 0.013781215064227581, + 0.02697962522506714, + -0.06004317104816437, + 0.013347664847970009, + 0.00998587254434824, + -0.023994524031877518, + -0.007775476668030024, + 0.0016418054001405835, + -0.01970166526734829, + 0.03309197351336479, + 0.023568082600831985, + -0.040284644812345505, + -0.0022850236855447292, + -0.015707315877079964, + -0.02280048467218876, + 0.0025710957124829292, + -0.022374041378498077, + -0.0459136925637722, + 0.0006174538866616786, + -0.016773423179984093, + 0.0405120812356472, + 0.007747047580778599, + 0.021976027637720108, + 0.020597195252776146, + -0.02457733079791069, + 0.037868134677410126, + -0.0013521795626729727, + 0.041933558881282806, + -0.010852973908185959, + 0.037470120936632156, + 0.00221039610914886, + -0.03374585509300232, + 0.008528859354555607, + -0.004498973488807678, + 0.016247477382421494, + 0.051087867468595505, + 0.01810961216688156, + 0.030192162841558456, + -0.005522436462342739, + 0.021791236475110054, + -0.056205183267593384, + -0.04147868603467941, + -0.032892968505620956, + 0.0031663391273468733, + -0.013418738730251789, + 0.013646175153553486, + -0.02968043088912964, + 0.01363196037709713, + -0.011535282246768475, + 0.013418738730251789, + -0.05046241730451584, + -0.017071934416890144, + 0.010845866054296494, + 0.004690872505307198, + 0.045430392026901245, + -0.02875647135078907, + 0.002962001832202077, + 0.05884912982583046, + 0.004196909721940756, + 0.03022059239447117, + 0.03536633774638176, + -0.05617675557732582, + -0.004335503559559584, + -0.008834476582705975, + 0.027889370918273926, + 0.0024005186278373003, + 0.022317182272672653, + 0.002283246722072363, + -0.027505571022629738, + 0.01957373321056366, + 0.046766579151153564, + -0.04184827208518982, + 0.02011389285326004, + -0.012878578156232834, + 0.037470120936632156, + -0.024065598845481873, + 0.05356123670935631, + 0.027462927624583244, + 0.010483389720320702, + -0.048273343592882156, + 0.006943913176655769, + -0.035025183111429214, + 0.026538968086242676, + -0.021165786311030388, + -0.021407436579465866, + 0.0009763767011463642, + 0.03857887536287308, + -0.0012997626326978207, + 0.016290120780467987, + 0.02821630984544754, + 0.005739211570471525, + -0.027590859681367874, + 0.02076777257025242, + 0.03010687418282032, + -0.01903357170522213, + -0.06737799197435379, + 0.01658863201737404, + 0.006705815903842449, + -0.006872839294373989, + 0.014307161793112755, + -0.018294403329491615, + -0.02739185281097889, + 0.0070007722824811935, + 0.04594212397933006, + 0.0023934112396091223, + 0.049495816230773926, + -0.01687292754650116, + 0.010469174943864346, + -0.0045913695357739925, + 0.015550953336060047, + -0.0073632486164569855, + -0.021833879873156548, + 0.011357598006725311, + -0.024264605715870857, + -0.021379007026553154, + 0.018052753061056137, + -0.012388168834149837, + -0.004868557211011648, + 0.003713607555255294, + -0.01944579929113388, + 0.012103873305022717, + -0.023298000916838646, + 0.034769315272569656, + -0.040966954082250595, + -0.03468402847647667, + -0.000500182097312063, + -0.037725988775491714, + 0.008223242126405239, + -0.024207746610045433, + -0.00830142293125391, + 0.007874980568885803, + -0.04923994839191437, + 0.038124002516269684, + -0.03024902194738388, + 0.001451682997867465, + 0.0119475107640028, + 0.028557464480400085, + -0.008322745561599731, + -0.025728726759552956, + -0.04045522212982178, + 0.02280048467218876, + 0.015224014408886433, + -0.000996810500510037, + 0.0036531947553157806, + 0.011570819653570652, + -0.0026368391700088978, + -0.03229594603180885, + 0.026553181931376457, + 0.02432146482169628, + -0.00493252370506525, + 0.03724268451333046, + -0.00031427957583218813, + 0.005913342349231243, + 0.016517557203769684, + -0.015181370079517365, + 0.007747047580778599, + 0.025202779099345207, + -0.06078233942389488, + 0.00042044612928293645, + 0.01045496016740799, + -0.008351175114512444, + 0.007931839674711227, + -0.022743625566363335, + -0.007583577651530504, + 0.039488621056079865, + -0.03010687418282032, + 0.02619781345129013, + -0.04389519616961479, + 0.027860941365361214, + 0.05805310234427452, + 0.016290120780467987, + 0.0045842621475458145, + 0.006542345974594355, + -0.010447853244841099, + -0.0068053193390369415, + -0.015565168112516403, + -0.022359825670719147, + 0.0039161681197583675, + -0.00630780216306448, + 0.0017244287300854921, + -0.0034470807295292616, + -0.048813506960868835, + 0.017100363969802856, + 0.015849463641643524, + 0.004157818853855133, + 0.014740712009370327, + -0.00438525527715683, + 0.009879262186586857, + -0.020824631676077843, + -0.031784217804670334, + -0.007132258731871843, + -0.0095096779987216, + 1.814326060411986e-5, + 0.005263017024844885, + -0.006830194965004921, + 0.003040183102712035, + 0.008806047029793262, + -0.039488621056079865, + -0.024634189903736115, + -0.01661706157028675, + -0.021265288814902306, + -0.02348279394209385, + -0.02604145184159279, + -0.03331940993666649, + 0.029538283124566078, + -0.004260876215994358, + 0.018663987517356873, + 0.0238950215280056, + 0.010462068021297455, + -0.013290805742144585, + 0.02160644344985485, + -0.027860941365361214, + 0.017967464402318, + -0.047989048063755035, + -0.0003133911523036659, + 0.0012500109151005745, + -0.021634873002767563, + -0.012843040749430656, + -0.01958794705569744, + -0.03175578638911247, + 0.013120228424668312, + -0.016915570944547653, + -0.062146954238414764, + 0.003127248492091894, + -0.004982275422662497, + -0.025941947475075722, + 0.02985100820660591, + -0.012835933826863766, + -0.013809644617140293, + 0.00019423144112806767, + -0.01728515513241291, + -0.002066471613943577, + -0.039744485169649124, + -0.01809539645910263, + -0.01261560432612896, + -0.05057613551616669, + -0.06771914660930634, + -0.02697962522506714, + 0.030817613005638123, + 0.0076546515338122845, + 0.002466261852532625, + 0.011357598006725311, + -0.03090290166437626, + -0.010497604496777058, + -0.033006686717271805, + -0.03545162454247475, + -0.020042819902300835, + -0.012402383610606194, + 0.012743537314236164, + 0.0025089061819016933, + 0.0008546627941541374, + -0.0024253944866359234, + 0.012928329408168793, + -3.725823262357153e-5, + 0.019090430811047554, + 0.012949652038514614, + -0.018450766801834106, + -0.02346857823431492, + 0.011983047239482403, + -0.00188167963642627, + -0.007203332614153624, + -0.0345134511590004, + -0.028273168951272964, + -0.0170292891561985, + -0.0028944816440343857, + -0.010618429630994797, + 0.01417212188243866, + 0.015323517844080925, + 0.012487671338021755, + 0.02968043088912964, + -0.01661706157028675, + -0.009182739071547985, + -0.035565342754125595, + -0.046738151460886, + 0.005849376320838928, + -0.01863555796444416, + 0.047448888421058655, + -0.006584990303963423, + -0.011577926576137543, + -0.007405892945826054, + -0.004196909721940756, + 0.003130802186205983, + -0.06498990952968597, + -0.026752188801765442, + -0.012096765451133251, + 0.0005259463214315474, + -0.019673235714435577, + -0.022757839411497116, + 0.004342610947787762, + 0.018038537353277206, + -0.032580241560935974, + 0.023056350648403168, + 0.007583577651530504, + 0.013788322918117046, + 0.03147149085998535, + -0.003969473298639059, + -0.015238229185342789, + 0.0030721663497388363, + 0.015138725750148296, + 0.020426617935299873, + -0.03266553208231926, + -0.0027825403958559036, + -0.0012997626326978207, + 0.0288844034075737, + 0.031215624883770943, + -0.016261691227555275, + 0.0016453590942546725, + -0.02629731595516205, + 0.020469263195991516, + 0.014854430221021175, + -0.02702227048575878, + 0.008187704719603062, + 0.00905480608344078, + 0.025430215522646904, + 0.02497534267604351, + -0.0008782059885561466, + 0.00803134310990572, + 0.0779537782073021, + 0.00017335351731162518, + -0.007747047580778599, + 0.003129025222733617, + 0.0008435575291514397, + 0.0006103464984335005, + 0.03471245989203453, + -0.01985802687704563, + 0.019943315535783768, + 0.00837249681353569, + 0.017782671377062798, + -0.03215380012989044, + 0.002437832299619913, + 0.023937664926052094, + 0.03914746642112732, + 0.012302880175411701, + -0.012295772321522236, + -0.010390994139015675, + -0.036929961293935776, + 0.001437468221411109, + -0.02645367942750454, + 0.008400926366448402, + -0.027363423258066177, + -0.010966692119836807, + 0.07113068550825119, + 0.00310592632740736, + -0.0018870101775974035, + -0.002924688160419464, + -0.023539653047919273, + -0.033973291516304016, + 0.03417229652404785, + 0.0018550269305706024, + 0.014626993797719479, + -0.018976712599396706, + 0.02322692796587944, + -0.027704577893018723, + -0.018578698858618736, + 0.026922766119241714, + -0.031954795122146606, + 0.029197128489613533, + -0.01633276604115963, + -0.00665251025930047, + 0.008976624347269535, + -0.021236859261989594, + -0.011691644787788391, + 0.03539476543664932, + -0.020838847383856773, + 0.03710053861141205, + -0.04392362758517265, + -0.020057033747434616, + -0.023113209754228592, + 0.0018168247770518064, + 0.021535370498895645, + -0.033831141889095306, + -0.007313496898859739, + -0.045003946870565414, + 0.016020040959119797, + -0.024349894374608994, + -0.023283787071704865, + -0.014726497232913971, + -0.0027043591253459454, + -0.0014037081273272634, + -0.0224309004843235, + -0.004925416316837072, + -0.032466523349285126, + -0.04727831110358238, + -0.027477141469717026, + 0.0014783355873078108, + -0.022203464061021805, + -0.016844497993588448, + -0.020625624805688858, + -0.003887738334015012, + -0.0440373457968235, + 0.004857896361500025, + 0.04480494186282158, + 0.019062001258134842, + -0.00015014345990493894, + -0.020426617935299873, + 0.00265105371363461, + 0.00200783577747643, + -0.03130091354250908, + -0.0026883676182478666, + 0.007448537275195122, + 0.024890054017305374, + 0.020966779440641403, + -0.03661723807454109, + 0.005977308843284845, + 0.02877068519592285, + 0.006446396466344595, + -0.023966094478964806, + -0.014321376569569111, + 0.018024323508143425, + 0.012061228975653648, + -0.0052665709517896175, + 7.149027965169807e-7, + -0.021563800051808357, + 0.010348349809646606, + -0.005188389681279659, + -0.011059087701141834, + -0.040313076227903366, + 0.003766912966966629, + 0.022246109321713448, + -0.012189161963760853, + -0.002238825662061572, + -0.011833792552351952, + -0.004609137773513794, + 0.03078918345272541, + 0.0016560201765969396, + 0.00708606094121933, + -0.04889879375696182, + -0.004868557211011648, + 0.0004886325914412737, + -0.01580682024359703, + -0.0149112893268466, + -0.002556880936026573, + -0.020085463300347328, + 0.026794834062457085, + -0.01754102110862732, + -0.011499745771288872, + -0.02956671267747879, + 0.0017386435065418482, + 0.020057033747434616, + 0.019104644656181335, + -0.026524752378463745, + 0.054186686873435974, + 0.01658863201737404, + -0.026126738637685776, + 0.01228155754506588, + 0.020980995148420334, + -0.01567888632416725, + 0.05233876779675484, + -0.02629731595516205, + 0.00823034904897213, + -0.012054121121764183, + 0.005263017024844885, + -0.0345134511590004, + -0.01296386681497097, + 0.02294263243675232, + -0.022231893613934517, + 0.0010590000310912728, + 0.015096081420779228, + -0.021137356758117676, + -0.023013705387711525, + -0.004424345679581165, + 0.009630504064261913, + 0.006329124327749014, + 0.006961681414395571, + -0.020042819902300835, + 0.004257322289049625, + -0.03738483414053917, + 0.03681624308228493, + -0.03562220185995102, + 0.015749961137771606, + 0.012203376740217209, + 0.01329791359603405, + 0.06299984455108643, + 0.003898399416357279, + -0.0199575312435627, + -0.001584057928994298, + 0.008017128333449364, + -0.011670323088765144, + 0.03420072793960571, + -0.02346857823431492, + 0.025188565254211426, + -0.023838162422180176, + 0.008862906135618687, + -0.02130793407559395, + -0.0226583369076252, + 0.021123141050338745, + -0.027747223153710365, + -0.010909833014011383, + -0.03496832400560379, + 0.019687451422214508, + -0.003781127743422985, + 0.03493989259004593, + 0.00442079221829772, + 0.014527490362524986, + 0.0008404480176977813, + 0.043013881891965866, + -0.04142182692885399, + 0.027207061648368835, + 0.018308619037270546, + 0.014115262776613235, + 0.02658161148428917, + 0.032466523349285126, + 0.012587174773216248, + -0.016531772911548615, + 0.005913342349231243, + -0.008813154883682728, + 0.03471245989203453, + 0.016020040959119797, + -0.010646859183907509, + 0.004086744971573353, + -0.01715722307562828, + -0.012835933826863766, + 0.012935437262058258, + -0.014342698268592358, + -0.0021944043692201376, + 0.002263701520860195, + 0.016958216205239296, + 0.02862853743135929, + 0.006268711760640144, + -0.015821034088730812, + 0.008614148013293743, + -0.02727813646197319, + 0.015508309938013554, + -0.033688995987176895, + 0.04750574752688408, + 0.001217139302752912, + 0.010447853244841099, + -0.02253040298819542, + -0.0064997016452252865, + -0.0007449425756931305, + 0.014186336658895016, + -0.03752698004245758, + -0.004079637583345175, + -0.02362493984401226, + 0.027349209412932396, + 0.01356088649481535, + -0.005927557125687599, + 0.0010012525599449873, + -0.005675245076417923, + -0.0036851780023425817, + -0.006268711760640144, + 0.0016098222695291042, + 0.010924047790467739, + 0.04304230958223343, + -0.016517557203769684, + 0.017484162002801895, + -0.006840855814516544, + -0.013169980607926846, + 0.03184107691049576, + -0.014897074550390244, + 0.0073632486164569855, + 0.011179912835359573, + -0.020881490781903267, + 0.012373954057693481, + 0.028003089129924774, + -0.0005379400681704283, + 0.019644806161522865, + 0.014712282456457615, + -0.01012091338634491, + -0.0009195176535286009, + 0.03093133121728897, + -0.019786953926086426, + -0.021805450320243835, + 0.0276477187871933, + 0.029054980725049973, + 0.01498236320912838, + 0.019189933314919472, + 0.01403708104044199, + 0.004353271797299385, + 0.02889861911535263, + -0.021350577473640442, + -0.023866591975092888, + -0.009339100681245327, + -0.0030579515732824802, + 0.0024804766289889812, + -0.0006698708166368306, + 0.002507129218429327, + -0.011705859564244747, + -0.0044669900089502335, + -0.0009177408064715564, + -0.02484741061925888, + -0.015152940526604652, + -0.04011406749486923, + 0.00910455733537674, + -0.004108067136257887, + -0.006073258817195892, + -0.023184282705187798, + 0.03849358484148979, + -0.010625537484884262, + -0.040426794439554214, + -0.004978721495717764, + -0.009523892775177956, + -0.006744906306266785, + 0.004907648079097271, + 0.0042999666184186935, + 0.005277231801301241, + 0.004847235046327114, + -0.006474826019257307, + 0.00884158443659544, + 0.0030721663497388363, + -0.02201867289841175, + -0.0044598826207220554, + 0.0028305151499807835, + -0.039374902844429016, + 0.028813330456614494, + 0.028685396537184715, + -0.01647491380572319, + 0.011741396971046925, + 0.011151484213769436, + -0.0021979580633342266, + -0.01727094128727913, + -0.002846506889909506, + 0.012082550674676895, + 0.006147886160761118, + 0.012779074721038342, + -0.018678201362490654, + -0.003976580686867237, + 0.02373865805566311, + -0.041336540132761, + 0.01465542335063219, + 0.014882859773933887, + 0.020213397219777107, + 0.002372089074924588, + -0.03994349017739296, + -0.0253591425716877, + -0.006218960043042898, + 0.004875664599239826, + -0.006361107807606459, + -0.01066818181425333, + -0.003130802186205983, + 0.0018799027893692255, + -0.0009066355414688587, + 0.0028767131734639406, + -0.0012713330797851086, + -0.006641849409788847, + -0.013731463812291622, + -0.014449309557676315, + -0.012366846203804016, + -0.0030579515732824802, + -0.006634742021560669, + 0.007590685039758682, + -0.03090290166437626, + 0.014925504103302956, + -0.057427652180194855, + 0.025686081498861313, + 0.0013432953273877501, + 0.013376094400882721, + -0.02497534267604351, + 0.0020415957551449537, + 0.024364108219742775, + 0.014996577985584736, + -0.0036709632258862257, + 0.04145025834441185, + -0.010007195174694061, + -0.0033564616460353136, + -0.0006521024042740464, + 0.012864363379776478, + 0.002997538773342967, + -0.028983907774090767, + 0.0367593839764595, + -0.023113209754228592, + -0.001112305442802608, + -0.03212537243962288, + -0.012288665398955345, + -0.011705859564244747, + -0.040000349283218384, + -0.019005142152309418, + 0.007249530404806137, + 0.030305881053209305, + -0.013994436711072922, + 0.015622027218341827, + 0.025316497310996056, + 0.0122104836627841, + 0.01242370530962944, + -0.004267983604222536, + 0.026538968086242676, + 0.003283610800281167, + -0.021805450320243835, + -0.01957373321056366, + -0.0017350898124277592, + -0.04054051265120506, + -0.05560816451907158, + 0.025885088369250298, + -0.041649263352155685, + 0.030163733288645744, + -0.015835249796509743, + 0.05128687620162964, + -0.015835249796509743, + -0.024236176162958145, + -0.0036745169200003147, + -0.01877770572900772, + 0.004356825724244118, + -0.014897074550390244, + -0.009815296158194542, + 0.0029158038087189198, + -0.02348279394209385, + -0.003717161249369383, + -0.0010092483134940267, + -0.0361623652279377, + 0.015394591726362705, + 0.01308469194918871, + -0.009012161754071712, + 0.04361090064048767, + 0.02646789327263832, + -0.0038557553198188543, + -0.005323429591953754, + -0.012253127992153168, + -0.026524752378463745, + -0.008784725330770016, + -0.011250986717641354, + -0.0062225135043263435, + 0.01998596079647541, + -0.007903410121798515, + 0.031215624883770943, + -0.019062001258134842, + 0.02457733079791069, + -0.011599249206483364, + 0.00580673199146986, + 0.027462927624583244, + 0.020824631676077843, + 0.007796798832714558, + 0.01916150376200676, + -0.03647508844733238, + 0.01052603404968977, + -0.013148657977581024, + 0.0016213717171922326, + 0.04085323587059975, + -0.002658161101862788, + 0.034740887582302094, + 0.02523120865225792, + 0.014754926785826683, + -0.005483346059918404, + 0.0016853382112458348, + 0.02697962522506714, + -0.018990926444530487, + 0.0027203508652746677, + -0.02877068519592285, + 0.004914755467325449, + -0.0184934101998806, + 0.03977291285991669, + 0.007199778687208891, + -0.025899304077029228, + -0.01891985349357128, + -0.0013122005620971322, + -0.001489885151386261, + 0.011904866434633732, + 0.017654739320278168, + 0.007704403251409531, + 0.0026368391700088978, + 0.049069371074438095, + 0.03525261953473091, + -0.004470543935894966, + -0.01874927617609501, + 0.009850832633674145, + -0.021691732108592987, + 0.020028604194521904, + -0.036645665764808655, + 0.012238913215696812, + -0.005657476838678122, + -0.017242511734366417, + 0.03954548016190529, + 0.003139686305075884, + -0.017512591555714607, + 0.014392450451850891, + -0.0024715925101190805, + -0.035707492381334305, + 0.009758437052369118, + 0.024662619456648827, + 0.007910517044365406, + 0.03846515715122223, + 0.005515329074114561, + -0.013177087530493736, + 0.023795517161488533, + 0.0318126454949379, + 0.0007218435639515519, + 0.013027832843363285, + -0.01985802687704563, + 0.014129477553069592, + -0.020199181511998177, + -0.008315637707710266, + -0.02090992033481598, + 0.03104504756629467, + 0.011208342388272285, + 0.017185652628540993, + -0.035167329013347626, + 0.006919037085026503, + 0.003033075714483857, + -0.016020040959119797, + 0.00021244412346277386, + -0.0058102854527533054, + 0.005319876130670309, + -0.009331993758678436, + 0.003511047223582864, + -0.021123141050338745, + -0.03749855235219002, + 0.016673920676112175, + 0.033262550830841064, + 0.003994349390268326, + 0.0027932014781981707, + 0.040711089968681335, + 0.009936121292412281, + -0.034911464899778366, + -0.004214677959680557, + -0.019474228844046593, + 0.008592826314270496, + -0.023539653047919273, + 0.019687451422214508, + -0.013319235295057297, + 0.005597063805907965, + 0.026510538533329964, + 0.03809557110071182, + 0.015366162173449993, + -0.016247477382421494, + 0.01201858464628458, + 0.04923994839191437, + -0.00038824079092592, + 0.015849463641643524, + -0.01073925569653511, + -0.008344067260622978, + -0.022203464061021805, + 0.011762718670070171, + 0.015465665608644485, + 0.024094028398394585, + 0.015892108902335167, + -0.016147973015904427, + 0.001965191448107362, + -0.026396820321679115, + -0.019786953926086426, + -0.016275906935334206, + 0.01646069809794426, + -0.0351104699075222, + -0.005010704975575209, + 0.013049154542386532, + -0.020341329276561737, + 0.03846515715122223, + -0.0005237252917140722, + -0.00749118160456419, + -0.02159222960472107, + -0.017740027979016304, + -0.014150799252092838, + -0.009061913006007671, + 0.019929101690649986, + 0.014499060809612274, + -0.016659704968333244, + 0.005881359335035086, + -0.018038537353277206, + 0.0018248205306008458, + 0.011172805912792683, + -0.00972289964556694, + 0.021279504522681236, + 0.021677518263459206, + 0.02199024334549904, + -0.02254461869597435, + 0.006446396466344595, + -0.001629367470741272, + 0.004026332404464483, + -0.00046464515617117286, + 0.006375322584062815, + 0.004335503559559584, + 0.008415141142904758, + -0.0068692853674292564, + -0.01620483212172985, + 0.002947787055745721, + 0.002452047076076269, + -0.030675465241074562, + -0.022729409858584404, + -0.030305881053209305, + 0.009417282417416573, + 0.02348279394209385, + -0.015408806502819061, + -0.00012471235822886229, + -0.0010367895010858774, + -0.0015893884701654315, + 0.02616938389837742, + 0.001643582247197628, + -0.027093343436717987, + -0.03363213688135147, + -0.0020895705092698336, + -0.004470543935894966, + -0.007853657938539982, + -0.0010687727481126785, + 0.020298685878515244, + -0.02807416208088398, + -0.019516874104738235, + 0.005924003664404154, + 0.011983047239482403, + -0.011535282246768475, + 0.010177772492170334, + -0.019275221973657608, + 0.026354175060987473, + 0.015209799632430077, + -0.010973799042403698, + -0.004200463183224201, + 0.016304336488246918, + 0.010071161203086376, + -0.003898399416357279, + -0.011606356129050255, + -0.030163733288645744, + -0.017469946295022964, + -0.018294403329491615, + -0.014570134691894054, + 0.0028518373146653175, + 0.016688134521245956, + 0.022786268964409828, + 0.012949652038514614, + 0.005714335944503546, + -0.005191943142563105, + 0.012395275756716728, + 0.009850832633674145, + -0.009161416441202164, + 0.0004717525443993509, + -0.025145919993519783, + 0.004829466808587313, + 0.018706630915403366, + 0.03627608343958855, + 0.01891985349357128, + 0.0017608541529625654, + -0.02105206809937954, + -0.010938262566924095, + 0.01997174508869648, + -0.011151484213769436, + -0.020881490781903267, + -0.011236771941184998, + -0.001125631737522781, + -0.008550181984901428, + 0.0045984769240021706, + 0.017981678247451782, + -0.003287164494395256, + 0.03317726403474808, + 0.0017599656712263823, + 0.006549453362822533, + -0.008315637707710266, + 0.003038406139239669, + -0.018393907696008682, + 0.002752334112301469, + -0.022246109321713448, + 0.000451985135441646, + -0.09080392122268677, + -0.020725129172205925, + 0.0008906439179554582, + -0.000590801180806011, + -0.0054478091187775135, + -0.019659021869301796, + 0.015693102031946182, + 0.022615691646933556, + -0.0068550705909729, + 0.005401610862463713, + 0.023298000916838646, + -0.042047277092933655, + 0.012238913215696812, + 0.03658880665898323, + 0.010952477343380451, + -0.011172805912792683, + 0.015096081420779228, + -0.005227480083703995, + 0.018322832882404327, + -0.028031518682837486, + -0.010717933066189289, + -0.0014294723514467478, + 0.04901251196861267, + -0.005373181309551001, + 0.023454364389181137, + 0.04753417521715164, + -0.01887720823287964, + 0.009658933617174625, + -0.013397417031228542, + 0.004193355794996023, + 0.009061913006007671, + -0.00011860445374622941, + -0.012174947187304497, + -0.013034939765930176, + 0.020568765699863434, + -0.012793289497494698, + 0.015295088291168213, + 0.014484846033155918, + 0.023425934836268425, + -0.0010590000310912728, + -0.0003600333584472537, + -0.0045629399828612804, + -0.010106698609888554, + -0.016545986756682396, + -0.006851517129689455, + -0.0028109699487686157, + 0.004072530195116997, + -0.005110208410769701, + 0.02011389285326004, + 0.013496920466423035, + 0.012047014199197292, + -0.008017128333449364, + 0.019616376608610153, + -0.01566467247903347, + -0.0052381413988769054, + 0.021435866132378578, + -0.010327027179300785, + -0.02388080582022667, + -0.009822403080761433, + -0.006428627762943506, + 0.06260182708501816, + 0.01012091338634491, + -0.003043736796826124, + 0.010675288736820221, + 0.020753558725118637, + 0.0071606882847845554, + -0.003724268637597561, + 0.008322745561599731, + 0.00434971833601594, + 0.00549756083637476, + 0.0051350840367376804, + -0.005714335944503546, + -0.007132258731871843, + 0.01850762590765953, + 0.01860712841153145, + 0.008550181984901428, + 0.005792517215013504, + 0.0012908783974125981, + 0.0019243239657953382, + -0.005511775612831116, + -0.02403716929256916, + -0.009836617857217789, + -0.006197637878358364, + -0.0017946141306310892, + 0.009132986888289452, + 0.014996577985584736, + -0.0011602803133428097, + -0.0098650474101305, + -0.012629819102585316, + 0.007747047580778599, + 0.0206682700663805, + -0.006752013694494963, + 0.022615691646933556, + 0.00829431600868702, + -0.0018941175658255816, + 0.03892002999782562, + 0.018166471272706985, + -0.006531684659421444, + -0.006862177979201078, + 0.0007600457756780088, + -0.005103101022541523, + -0.011691644787788391, + 0.001538748387247324, + -0.017370443791151047, + -0.0038770774845033884, + 0.0025053524877876043, + 0.011521067470312119, + 0.02874225564301014, + -0.018138041719794273, + -0.002004282083362341, + -0.025970377027988434, + -0.007718618027865887, + -0.01701507531106472, + -0.015877893194556236, + -0.02039818838238716, + 0.02281469851732254, + 0.01647491380572319, + -0.00997876562178135, + -0.0083653898909688, + 0.010611322708427906, + 0.01038388628512621, + 0.01538037694990635, + -0.005088886246085167, + -0.04537353292107582, + -0.003622988471761346, + 0.0002151093794964254, + -0.029396135360002518, + -0.0407395176589489, + 0.005980862770229578, + 0.022345611825585365, + 0.010142235085368156, + 0.009523892775177956, + -0.0013237500097602606, + 0.021265288814902306, + -0.015408806502819061, + -0.00029029216966591775, + 0.019403155893087387, + -0.01847919635474682, + -0.022189250215888023, + -0.035167329013347626, + -0.0005117315449751914, + -0.015025007538497448, + -0.0051421914249658585, + 0.012771966867148876, + 0.004431453067809343, + 0.015323517844080925, + 0.00232944474555552, + -0.010369671508669853, + -0.016986645758152008, + -0.006361107807606459, + -0.007811013609170914, + 0.010255953297019005, + 0.0007045193342491984, + 0.019104644656181335, + -0.0014063733397051692, + -0.02039818838238716, + -0.0022050654515624046, + 0.023454364389181137, + 0.005049795377999544, + 0.007519611157476902, + -0.00789630226790905, + -0.01837969198822975, + 0.008948194794356823, + -0.003413320519030094, + 0.022871557623147964, + -0.02942456491291523, + -0.025316497310996056, + -0.006385983433574438, + -0.0380387119948864, + -0.025074847042560577, + 0.004637567326426506, + -0.0017413088353350759, + -0.003132578916847706, + 0.007498288992792368, + 0.01946001499891281, + 0.008798940107226372, + -0.007292174734175205, + -0.0013344110921025276, + 0.02162065915763378, + -0.036105506122112274, + -0.016958216205239296, + 0.01970166526734829, + -0.005042687989771366, + 0.010234631597995758, + -0.026126738637685776, + -0.002766548888757825, + 0.004175587557256222, + 0.006393090821802616, + 0.004648228641599417, + -0.01619061827659607, + -0.016389625146985054, + -0.018166471272706985, + -0.004559386055916548, + 0.019488444551825523, + -0.010518927127122879, + 0.008720758371055126, + 0.01545145083218813, + 0.009673148393630981, + -0.04585683345794678, + -0.0010128020076081157, + -0.01715722307562828, + -0.03235280513763428, + 0.012835933826863766, + 0.0061087957583367825, + -0.005184835754334927, + 0.02860010787844658, + -0.00614077877253294, + 0.01557938288897276, + 0.01073925569653511, + -0.011855114251375198, + -0.005525990389287472, + 0.01268667820841074, + 0.012004369869828224, + -0.00884869135916233, + -0.020838847383856773, + -0.007803906220942736, + 0.014044188894331455, + 0.00665251025930047, + -0.0005841380334459245, + -0.005710782017558813, + 0.02011389285326004, + 0.009019268676638603, + 0.0026688221842050552, + -0.018806135281920433, + -0.006204745266586542, + -0.011236771941184998, + 0.005749872885644436, + -0.009147201664745808, + -0.009012161754071712, + 0.01863555796444416, + -0.018806135281920433, + 0.013980221934616566, + 0.018393907696008682, + 0.0015396368689835072, + -0.03309197351336479, + -0.00011716076551238075, + 0.010355456732213497, + -0.04181984066963196, + 0.004040547180920839, + 0.005390950012952089, + -0.023013705387711525, + -0.040682658553123474, + -0.01634697988629341, + 0.023241141811013222, + 0.02968043088912964, + -0.012835933826863766, + -0.0013877165038138628, + -0.01946001499891281, + -0.003336916211992502, + 0.0194315854460001, + 0.008351175114512444, + -0.003702946472913027, + -0.006823087576776743, + 0.01019198726862669, + -0.00943860411643982, + -0.002787871053442359, + 0.015735745429992676, + -0.0007413888815790415, + 0.012608497403562069, + 0.004847235046327114, + -0.018692417070269585, + 0.011904866434633732, + 0.031926363706588745, + -0.021236859261989594, + 0.02699384093284607, + 8.401148807024583e-5, + -0.004054761957377195, + -0.01033413503319025, + -0.007327711675316095, + -0.002165975049138069, + -0.010852973908185959, + -0.01512451097369194, + -0.017455732449889183, + -0.02616938389837742, + 0.00012449025234673172, + 0.019644806161522865, + -0.013354772701859474, + 0.0018372584600001574, + 0.007100275717675686, + 0.0005748096155002713, + -0.01567888632416725, + 0.008351175114512444, + -0.004523849114775658, + 0.020298685878515244, + 0.006641849409788847, + 0.00046420094440691173, + 0.006965235341340303, + 0.00844357069581747, + 0.028841760009527206, + -0.010419423691928387, + 0.037470120936632156, + 0.010319920256733894, + 0.02645367942750454, + -0.010867188684642315, + -0.009836617857217789, + -0.040995385497808456, + 0.012587174773216248, + 0.01658863201737404, + 0.008798940107226372, + -0.00021555359126068652, + 0.0023791964631527662, + -0.008535967208445072, + -0.03630451112985611, + -0.013767000287771225, + -0.04980853945016861, + -0.00024054049572441727, + 0.02643946371972561, + 0.011641893535852432, + 0.0014507945161312819, + -0.004761946387588978, + 0.008919765241444111, + 0.019943315535783768, + -0.008926873095333576, + -0.015309303067624569, + -0.0076617589220404625, + 0.0315852090716362, + -0.014996577985584736, + 0.006531684659421444, + 0.02604145184159279, + -0.02063984051346779, + -0.0009417282417416573, + 0.03280767798423767, + 0.03144306316971779, + -0.02552971988916397, + -0.011705859564244747, + -0.022985275834798813, + -0.015039222314953804, + 0.010213308967649937, + 0.014769141562283039, + -0.009879262186586857, + -0.009815296158194542, + 0.014939718879759312, + -0.03275081887841225, + 0.01809539645910263, + 0.012253127992153168, + 0.007150026969611645, + -0.011897758580744267, + -0.0073703560046851635, + -0.004634013865143061, + -0.0026634917594492435, + -0.0019634144846349955, + 0.025160135701298714, + -0.00998587254434824, + 0.010149342939257622, + 0.019275221973657608, + -0.002350766910240054, + -0.0014081501867622137, + 0.019630592316389084, + 0.007576470263302326, + -0.024890054017305374, + 0.0007271741051226854, + 0.02496112883090973, + 0.011592141352593899, + -0.016446484252810478, + 0.008948194794356823, + 0.01590632274746895, + -0.01181246992200613, + -0.004530956503003836, + -0.028841760009527206, + -0.02297106198966503, + -0.024932699277997017, + -0.019630592316389084, + 0.005295000039041042, + 0.02739185281097889, + -0.021236859261989594, + 0.020469263195991516, + 0.030561747029423714, + -0.027107559144496918, + -0.002928241854533553, + -0.019246792420744896, + -0.0018585806246846914, + 0.0008941976120695472, + -0.03783970698714256, + -0.01739887334406376, + -0.006872839294373989, + 0.010952477343380451, + -0.012224698439240456, + 0.003129025222733617, + -0.00014225870836526155, + -0.03090290166437626, + -0.004733516834676266, + -0.002297461498528719, + -0.0152666587382555, + 0.004307074006646872, + -0.006911929696798325, + 0.016304336488246918, + 0.006528131198137999, + 0.011677430011332035, + -0.008194812573492527, + -0.022899987176060677, + -0.012708000838756561, + 0.001468562986701727, + 0.022061316296458244, + 0.01566467247903347, + -0.0034435270354151726, + -0.0014045964926481247, + -0.021009424701333046, + 0.009594966657459736, + -0.031073477119207382, + -0.0007560478406958282, + -0.021691732108592987, + 0.012508993968367577, + -0.008379604667425156, + -0.001863911165855825, + 0.002153537003323436, + 0.019374726340174675, + 0.027590859681367874, + 0.019474228844046593, + 0.006943913176655769, + 0.019815383478999138, + -0.01590632274746895, + -0.018990926444530487, + 0.010369671508669853, + -0.005412272177636623, + -0.014072618447244167, + -0.011762718670070171, + 0.014335591346025467, + 0.018791919574141502, + 0.0006623192457482219, + 0.007203332614153624, + -0.027377638965845108, + 0.004928970243781805, + 0.0009044144535437226, + -0.017100363969802856, + -0.0007116267224773765, + 0.00782522838562727, + -0.008969517424702644, + 0.00641441298648715, + 0.0030615052673965693, + 0.013148657977581024, + -0.007263745181262493, + 0.0007844773936085403, + 0.006613419856876135, + -0.009154309518635273, + 0.03764069825410843, + -0.006041275337338448, + 0.011208342388272285, + -0.009701577946543694, + 0.01545145083218813, + -0.020611410960555077, + -0.035309478640556335, + -0.037441693246364594, + 0.0202560406178236, + -0.006389537360519171, + -0.014456416480243206, + -0.0003351575287524611, + 0.018450766801834106, + -0.011279416270554066, + 0.01519558485597372, + 0.015039222314953804, + 0.022899987176060677, + -0.011926188133656979, + 0.03130091354250908, + -0.023397505283355713, + -0.0026155170053243637, + 0.001993621001020074, + 0.0028251847252249718, + -0.013262376189231873, + -0.03303511440753937, + 0.014349806122481823, + 0.017867960035800934, + -0.021535370498895645, + -0.0061230105347931385, + 0.011933295987546444, + -0.010028516873717308, + 0.012587174773216248, + 0.031130336225032806, + -0.04375305026769638, + -0.028955478221178055, + -0.004360379185527563, + -0.007476966828107834, + 0.011848007328808308, + 0.006776889786124229, + 0.0006951909163035452, + 0.03835143893957138, + -0.012501886114478111, + -0.015025007538497448, + -0.004168480169028044, + 0.01175561174750328, + -0.03115876577794552, + 0.03209694102406502, + -0.012942544184625149, + 0.01769738271832466, + 0.012722215615212917, + 0.0167307797819376, + -0.0020682483445852995, + 0.021506940945982933, + -0.013873611576855183, + -0.007903410121798515, + 0.016034256666898727, + -0.03022059239447117, + -0.002514236606657505, + -0.018408121541142464, + 0.005430040415376425, + 0.028145236894488335, + -0.003816664684563875, + -0.015337732620537281, + 0.015408806502819061, + 0.019602162763476372, + 0.009701577946543694, + 0.008251671679317951, + -0.027320779860019684, + -0.038550443947315216, + 0.012601389549672604, + -0.02550129033625126, + -0.0021002315916121006, + -0.005426486954092979, + 0.010362564586102962, + -0.005227480083703995, + -0.011940402910113335, + -0.012324201874434948, + 0.009324885904788971, + -0.00577119505032897, + -0.011286524124443531, + 0.0020096125081181526, + -0.010533141903579235, + 0.012907007709145546, + -0.020568765699863434, + -0.0002791868755593896, + 0.0030721663497388363, + -0.015565168112516403, + -0.01944579929113388, + -0.012061228975653648, + 0.006698708515614271, + 0.0010643305722624063, + 0.017711598426103592, + -0.005295000039041042, + -0.0034808407071977854, + -0.007039862684905529, + -0.022331397980451584, + 0.0023170069325715303, + -0.007075399626046419, + 0.012302880175411701, + 0.003770466661080718, + 0.006894161459058523, + -0.0038628627080470324, + -0.012572959996759892, + 0.016162188723683357, + -0.003813110990449786, + -0.00011121943680336699, + -0.012260235846042633, + 0.0033902216237038374, + -0.0012722215615212917, + -0.0028518373146653175, + -0.00884158443659544, + 0.06595651060342789, + -0.00823034904897213, + -0.01093115471303463, + -0.0001990067248698324, + 0.0019314313540235162, + -0.034342873841524124, + 0.019758524373173714, + 0.0027470034547150135, + 0.011165698990225792, + -0.01382385939359665, + -0.011926188133656979, + -0.03312040492892265, + 0.023724444210529327, + 0.020582981407642365, + 0.006158547475934029, + -0.01701507531106472, + 0.005525990389287472, + 0.0042786444537341595, + -0.008265886455774307, + 0.007981590926647186, + 0.015565168112516403, + -0.004836574196815491, + -0.019488444551825523, + -0.003987242002040148, + 0.00830142293125391, + 0.0007644878933206201, + 0.005390950012952089, + 0.003756251884624362, + -0.00249646813608706, + 0.016005827113986015, + 0.014420880004763603, + 0.005422933027148247, + -0.011983047239482403, + -0.006929698400199413, + -0.0053305369801819324, + 0.0130917988717556, + 0.004513188265264034, + 0.015423021279275417, + -0.022629907354712486, + 0.016403838992118835, + -0.017910605296492577, + -0.006410859525203705, + 0.02778986655175686, + 0.01121545024216175, + -0.011222557164728642, + 0.004154265392571688, + -0.016702350229024887, + -0.01173428911715746, + -0.008592826314270496, + 0.013781215064227581, + -0.0056503694504499435, + -0.019644806161522865, + 0.0013006511144340038, + 0.012736430391669273, + 0.012601389549672604, + -0.017114577814936638, + 0.0038344331551343203, + -0.01634697988629341, + -0.004921862855553627, + 0.013347664847970009, + -0.01147842314094305, + -0.02282891422510147, + -0.01766895316541195, + -0.023184282705187798, + -0.013724355958402157, + -0.01140024233609438, + -0.016446484252810478, + -0.008855799213051796, + 0.01154239010065794, + -0.0202560406178236, + -0.015693102031946182, + 0.028642753139138222, + 0.01289279293268919, + -0.014726497232913971, + -0.0025551042053848505, + -0.0004637567326426506, + 0.015152940526604652, + 0.018152255564928055, + -0.0020362650975584984, + -0.0033919985871762037, + 0.018393907696008682, + 0.0033102636225521564, + 0.005074671469628811, + -0.00971579272300005, + -0.01566467247903347, + 0.009374638088047504, + 0.011386027559638023, + -0.02443518303334713, + 0.011990155093371868, + 0.006755567621439695, + -0.01140734925866127, + 0.02214660495519638, + -0.009061913006007671, + 0.01928943768143654, + -0.018251759931445122, + 0.022374041378498077, + -0.002123330719769001, + -0.03860730305314064, + 0.007228208240121603, + -0.010504712350666523, + -0.0011887097498402, + 0.006933251861482859, + -0.0003402659494895488, + 0.013525350019335747, + -0.00788919534534216, + 0.0017528582829982042, + 0.013873611576855183, + -0.011016443371772766, + -0.0015058767748996615, + 0.01606268621981144, + 0.006531684659421444, + -0.014378235675394535, + -0.011428671889007092, + -0.031016619876027107, + -0.036389801651239395, + 0.02362493984401226, + 0.022729409858584404, + -0.00778969144448638, + -0.00307038938626647, + -0.024662619456648827, + -0.011250986717641354, + -0.003951705060899258, + -0.015181370079517365, + -0.00045442828559316695, + -0.019204149022698402, + -0.01823754422366619, + -0.016403838992118835, + 0.002517790300771594, + -0.0035892282612621784, + 0.0036709632258862257, + 0.0028482836205512285, + 0.024477826431393623, + -0.029481424018740654, + 0.0013548448914662004, + -0.007046970073133707, + -0.00489698676392436, + 0.013567994348704815, + 0.007107383105903864, + 0.021663302555680275, + -0.007612007204443216, + 0.018791919574141502, + 0.0018621343187987804, + -0.011627678759396076, + 0.011620570905506611, + -0.011940402910113335, + -0.014712282456457615, + -0.015963181853294373, + -0.027448711916804314, + 0.009047698229551315, + 0.01458434946835041, + 0.0063255708664655685, + -0.024079812690615654, + 0.014996577985584736, + -0.001133627607487142, + 0.0038522016257047653, + -0.015224014408886433, + -0.009154309518635273, + 0.006389537360519171, + -0.014165014028549194, + 0.00857861153781414, + 0.01228155754506588, + 0.0014134807279333472, + -0.027917800471186638, + -0.010568678379058838, + -0.03269395977258682, + 0.022885773330926895, + 0.008024235256016254, + 0.021535370498895645, + 0.018052753061056137, + 0.023710228502750397, + -0.0068906075321137905, + 0.008472000248730183, + -0.008997946977615356, + -0.023795517161488533, + 0.009367530234158039, + 0.011933295987546444, + -0.018934067338705063, + 0.002217503497377038, + 0.007462752051651478, + 0.016659704968333244, + -0.0007778141880407929, + -0.017867960035800934, + 0.02484741061925888, + 0.0028305151499807835, + -0.017654739320278168, + -0.04471965134143829, + 0.022729409858584404, + -0.03104504756629467, + -0.0012198046315461397, + 0.02942456491291523, + -0.014484846033155918, + 0.01019198726862669, + 0.005870698485523462, + 0.006361107807606459, + -0.006574328988790512, + -0.0071820104494690895, + 0.012452134862542152, + 0.009204060770571232, + -0.0031627854332327843, + -0.004427899606525898, + -0.0015858347760513425, + -0.0025444431230425835, + 0.02211817540228367, + -0.0016453590942546725, + 0.006332678254693747, + 0.00025431104586459696, + -0.020469263195991516, + -0.02860010787844658, + 0.006517469882965088, + -0.011570819653570652, + -0.0386357344686985, + -0.017469946295022964, + 0.007349033840000629, + -0.00042022400884889066, + -0.009545215405523777, + 0.04688029736280441, + 0.008862906135618687, + 0.022743625566363335, + 0.01685871183872223, + 0.02643946371972561, + 0.006151440087705851, + 0.011421564035117626, + 0.015849463641643524, + -0.018450766801834106, + -0.009154309518635273, + -0.012985188513994217, + 0.016645491123199463, + 0.012096765451133251, + -0.0027167971711605787, + -0.038010284304618835, + 0.020867276936769485, + 0.0011389581486582756, + 0.00017701825709082186, + 0.02214660495519638, + 0.034769315272569656, + 0.013049154542386532, + 0.01147131621837616, + 0.0025906411465257406, + -0.013973115012049675, + -0.01592053845524788, + -0.002874936442822218, + 0.02334064617753029, + -0.024634189903736115, + 0.00608036620542407, + -0.008763402700424194, + -0.019246792420744896, + 0.0012917668791487813, + -0.004140050616115332, + -0.018806135281920433, + -2.5153472961392254e-5, + -0.014470631256699562, + -0.012416597455739975, + -0.010838759131729603, + -0.0003835765819530934, + -0.007235315628349781, + -0.003955258522182703, + -0.007690188474953175, + 0.0010963138192892075, + -0.005309214815497398, + -0.009140094742178917, + -0.01195461768656969, + -0.0016951108118519187, + 0.02024182677268982, + -0.00829431600868702, + 0.02238825522363186, + 0.0026119633112102747, + -0.027363423258066177, + 0.008905550464987755, + -0.014555919915437698, + 0.016020040959119797, + -0.027974659577012062, + 0.004879218526184559, + 0.00815927516669035, + -0.014811785891652107, + 0.0024040723219513893, + 0.01430005393922329, + 0.02227453887462616, + -0.006606312468647957, + 0.0040831915102899075, + 0.008017128333449364, + -0.008528859354555607, + 0.007910517044365406, + 0.006965235341340303, + -0.024534685537219048, + -0.0004886325914412737, + -0.017740027979016304, + -0.005223926622420549, + 0.015735745429992676, + 0.0011185243492946029, + 0.0012420151615515351, + 0.007292174734175205, + -0.012004369869828224, + -0.010511819273233414, + -0.0007333930698223412, + -0.0008515533409081399, + 0.0017413088353350759, + -0.005131530575454235, + -0.00945992674678564, + 0.022075532004237175, + 0.002102008555084467, + 0.0011522844433784485, + 0.00023343310749623924, + -0.005021365825086832, + -0.020710913464426994, + 0.03010687418282032, + 0.012636926956474781, + 0.020483477041125298, + 0.007548040710389614, + -0.020057033747434616, + 0.015224014408886433, + -0.005241694860160351, + 0.0019172165775671601, + -0.01688714139163494, + 0.01498236320912838, + -0.017384657636284828, + -0.00910455733537674, + 0.030135303735733032, + 0.041905131191015244, + 0.0017999446718022227, + 0.0005437147920019925, + 0.001035012654028833, + 0.003431088989600539, + 0.0033315857872366905, + 0.006073258817195892, + 0.016972430050373077, + -0.006197637878358364, + 0.027860941365361214, + 0.011627678759396076, + 0.025174349546432495, + 0.00972289964556694, + -0.021165786311030388, + -0.01059710793197155, + -0.018038537353277206, + -0.0049751680344343185, + -0.006258050445467234, + 0.0040974062867462635, + 0.005355413071811199, + -0.003098818939179182, + 0.0016951108118519187, + -0.00725308433175087, + -0.022459330037236214, + -0.002402295358479023, + 0.0008484438294544816, + 0.001441021915525198, + -0.007612007204443216, + 0.02036975882947445, + -0.0007222878048196435, + 0.005554419942200184, + 0.008329852484166622, + 0.007711510639637709, + 0.0035554682835936546, + 0.013795429840683937, + 0.030561747029423714, + 0.0019580840598791838, + -0.007299282122403383, + -0.005177728366106749, + 0.02968043088912964, + 0.014968148432672024, + 0.01941736973822117, + 0.013276590965688229, + 0.017228296026587486, + 0.012935437262058258, + -0.01351113524287939, + -0.014740712009370327, + 0.00031961011700332165, + -0.002853614278137684, + 0.01430005393922329, + -0.0027967551723122597, + -0.031215624883770943, + 0.01181246992200613, + -0.004250214900821447, + -0.02081041783094406, + -0.002274362603202462, + -0.029339276254177094, + -0.0175552349537611, + 0.015110296197235584, + 0.0015885001048445702, + 0.005405164789408445, + -0.009069020859897137, + -0.013169980607926846, + -0.02105206809937954, + -0.009225383400917053, + -0.010312812402844429, + -0.023440148681402206, + 0.0152666587382555, + 0.026155168190598488, + 0.0067982119508087635, + 0.012814611196517944, + -0.0026261780876666307, + -0.022786268964409828, + -0.012629819102585316, + 0.0042786444537341595, + 0.008855799213051796, + -0.007604899816215038, + -0.009111665189266205, + -0.014314268715679646, + -0.010284382849931717, + 0.012651141732931137, + 0.013113121502101421, + -0.0066951545886695385, + 0.008564396761357784, + 0.0018372584600001574, + 0.012537423521280289, + 0.01045496016740799, + 0.013354772701859474, + -0.028529034927487373, + -0.0018585806246846914, + 0.012047014199197292, + 0.02497534267604351, + -0.025160135701298714, + 0.02063984051346779, + 0.018464980646967888, + -0.006172762252390385, + 0.0034222048707306385, + 0.003809557296335697, + 0.003738483414053917, + -0.011279416270554066, + 0.006531684659421444, + 0.0006667613633908331, + 0.013944685459136963, + 0.023667585104703903, + 0.004221785347908735, + 0.017725812271237373, + 0.0049609532579779625, + -0.004331950098276138, + 0.014335591346025467, + 0.015536738559603691, + 0.0007085172110237181, + -0.005490453448146582, + 0.011130161583423615, + -0.011819577775895596, + -0.017839530482888222, + -0.003116587409749627, + 0.02039818838238716, + -0.017043504863977432, + -0.009410174563527107, + 0.007132258731871843, + -0.015138725750148296, + 0.008329852484166622, + 0.006823087576776743, + -0.009090342558920383, + -0.003766912966966629, + -0.006872839294373989, + 0.0003520375466905534, + 0.03130091354250908, + 0.025984592735767365, + 0.00606970489025116, + 0.021535370498895645, + 0.0007165130227804184, + -0.0035856745671480894, + 0.005248802248388529, + 0.014769141562283039, + -0.0038308794610202312, + -0.014698067680001259, + -0.017498375847935677, + -0.013482705689966679, + -0.004477651324123144, + -0.0040902988985180855, + 0.015096081420779228, + -0.01957373321056366, + 0.020156538113951683, + 0.011435778811573982, + 0.0009985873475670815, + -0.008209027349948883, + -0.009374638088047504, + -0.012331309728324413, + 0.0014872198225930333, + 0.018848778679966927, + 0.008223242126405239, + 0.005124423187226057, + 0.001853250083513558, + 0.020867276936769485, + 0.02769036404788494, + 0.010938262566924095, + 0.011919081211090088, + 0.0016258138930425048, + -0.006094580981880426, + 0.014626993797719479, + -0.012978081591427326, + -0.007118043955415487, + -0.020284470170736313, + -0.015152940526604652, + -0.028912832960486412, + -0.013759893365204334, + 0.01173428911715746, + 0.014427986927330494, + -0.009132986888289452, + 0.005646815523505211, + 0.026382604613900185, + -0.016830282285809517, + 0.002510682912543416, + 0.00752671854570508, + -0.0028518373146653175, + 0.01903357170522213, + -0.0006791992927901447, + -0.0026315085124224424, + -0.00432484271004796, + 0.03485460579395294, + -0.004907648079097271, + -0.005209711845964193, + 0.029339276254177094, + -0.013582209125161171, + -0.0014419102808460593, + -0.002455600770190358, + -0.011258094571530819, + 0.024747908115386963, + -0.008962409570813179, + -0.01809539645910263, + 0.0025515505112707615, + 0.0010128020076081157, + 0.014754926785826683, + -0.017469946295022964, + -0.004175587557256222, + 0.009829510934650898, + -0.007341926451772451, + 0.008322745561599731, + -0.008727866224944592, + 0.001185156055726111, + 0.04477651044726372, + -0.0008835365297272801, + 0.01033413503319025, + -0.0226583369076252, + 0.004900540690869093, + -0.003898399416357279, + 0.025216994807124138, + 0.01742730289697647, + 0.015508309938013554, + -0.003713607555255294, + -0.010753470472991467, + -0.028301598504185677, + -0.0059737553820014, + 0.002940679667517543, + 0.0056219398975372314, + -0.011791148222982883, + 0.009019268676638603, + 0.0221323911100626, + 0.0013210847973823547, + 0.01140734925866127, + 0.016631275415420532, + -0.014797571115195751, + -0.0052523561753332615, + 0.010618429630994797, + 2.1558136722887866e-5, + -0.015849463641643524, + -0.023539653047919273, + -0.005984416231513023, + -0.008457785472273827, + -0.014072618447244167, + -0.008535967208445072, + 0.001486331457272172, + -0.008479108102619648, + 0.010021409951150417, + 0.015550953336060047, + 0.009154309518635273, + 0.03647508844733238, + -0.010760577395558357, + -0.003756251884624362, + 0.00026763739879243076, + 0.0025302283465862274, + -0.0011131938081234694, + 0.011961725540459156, + -0.010760577395558357, + -0.0013335227267816663, + 0.024861624464392662, + -0.033262550830841064, + -0.0019332082010805607, + 0.012878578156232834, + 0.026098309084773064, + 0.0033600153401494026, + -0.013255269266664982, + -0.006162100937217474, + -0.002658161101862788, + -0.007046970073133707, + -0.012857255525887012, + 0.00314146326854825, + -0.005291446577757597, + -0.01566467247903347, + 0.0027274582535028458, + 0.011649000458419323, + 0.0032605119049549103, + 0.014754926785826683, + -0.007747047580778599, + -0.009587859734892845, + -0.018564485013484955, + -0.004207570571452379, + 0.0003997902967967093, + -0.0018905638717114925, + 0.003011753549799323, + 0.007213993463665247, + -0.012572959996759892, + 0.022302968427538872, + 0.005095993634313345, + -0.002153537003323436, + -0.0076688663102686405, + 0.00810952391475439, + -0.0036460873670876026, + -0.005895574111491442, + 0.008081094361841679, + -0.007146473508328199, + -0.006705815903842449, + 0.022445114329457283, + 0.00630780216306448, + -0.001122966525144875, + 0.006535238586366177, + 0.029253987595438957, + 0.0025337820407003164, + 0.00884158443659544, + -0.017100363969802856, + -0.0047583929263055325, + 0.0025817567948251963, + -0.021293718367815018, + 0.010725040920078754, + 0.01675920933485031, + -0.010469174943864346, + 0.01512451097369194, + -0.0095096779987216, + 0.016119545325636864, + -0.02253040298819542, + 0.02417931705713272, + -0.0006196749745868146, + -0.009523892775177956, + 0.012516100890934467, + -0.002073579002171755, + 0.003612327389419079, + 0.003052620915696025, + -0.014996577985584736, + -0.0016409170348197222, + 0.003809557296335697, + 0.014378235675394535, + -0.02889861911535263, + -0.003161008469760418, + -0.00295134074985981, + 0.005316322203725576, + -0.014335591346025467, + -0.005753426346927881, + -0.013425846584141254, + -0.010348349809646606, + -0.0076475441455841064, + -0.013937577605247498, + -0.015010792762041092, + 0.04346875473856926, + -0.015636242926120758, + 0.004520295653492212, + 0.007341926451772451, + 0.014214766211807728, + -0.026553181931376457, + 0.014093940146267414, + -0.008727866224944592, + -0.00482591288164258, + 0.0244209673255682, + -0.023980310186743736, + 0.005113761872053146, + -0.00869943667203188, + -0.003633649554103613, + 0.009836617857217789, + 0.008223242126405239, + 0.013397417031228542, + -0.006943913176655769, + 0.028927048668265343, + 0.004356825724244118, + -0.019516874104738235, + -0.02525963820517063, + -0.010803221724927425, + 0.008791832253336906, + -0.017910605296492577, + -0.0019669681787490845, + -0.0029531174805015326, + 0.01410815492272377, + -0.01505343709141016, + 0.007114490494132042, + 0.0011869329027831554, + 0.02928241714835167, + -0.026013022288680077, + 0.007540933322161436, + -0.005444255191832781, + -0.0015227567637339234, + -0.0029851007275283337, + -0.0032853877637535334, + 0.005916896276175976, + -0.040682658553123474, + -0.021492725238204002, + 0.00869943667203188, + -0.009637610986828804, + -0.005575742106884718, + -1.521424110251246e-5, + 0.017782671377062798, + -0.015025007538497448, + -0.005753426346927881, + -0.02511749044060707, + 0.009061913006007671, + -0.025998806580901146, + -0.004520295653492212, + -0.010241738520562649, + -0.009012161754071712, + 0.0067982119508087635, + -0.00016102664812933654, + 0.004093852359801531, + -0.009410174563527107, + -0.008919765241444111, + -0.0024733692407608032, + -0.032040081918239594, + -0.01519558485597372, + 0.020000174641609192, + -0.026766404509544373, + 0.011904866434633732, + -0.02537335641682148, + 0.00796737615019083, + 0.004157818853855133, + -0.004239554051309824, + -0.0076688663102686405, + 0.021009424701333046, + 0.01621904782950878, + 0.000989703112281859, + -0.00584226893261075, + 0.006186977028846741, + -0.013923362828791142, + 0.0008066879818215966, + -0.008877120912075043, + -0.015821034088730812, + -0.0001869019615696743, + 0.011691644787788391, + 0.0012748867738991976, + 0.007519611157476902, + 0.00701498705893755, + -0.009431497193872929, + 0.00037602498196065426, + 0.004847235046327114, + 0.033262550830841064, + -0.012914114631712437, + 0.015209799632430077, + -0.0003966808144468814, + 0.004449221771210432, + -0.019332081079483032, + 0.011798255145549774, + -0.006314909551292658, + 0.012771966867148876, + 0.0022814699914306402, + 0.012153624556958675, + 0.018393907696008682, + 0.032068513333797455, + -0.039090607315301895, + -0.01793903484940529, + 0.0003769134054891765, + -0.014797571115195751, + 0.009132986888289452, + 0.0010430084075778723, + -0.016773423179984093, + 0.000739612034521997, + 0.0013646174920722842, + 0.0004510967119131237, + -0.014520383439958096, + -0.005952433217316866, + 0.023397505283355713, + 2.8138018024037592e-5, + -0.003702946472913027, + 0.011322060599923134, + 0.0060270605608820915, + -0.00808820128440857, + 0.014854430221021175, + 0.015295088291168213, + 0.015351947396993637, + 0.0022850236855447292, + -0.017100363969802856, + 0.014356913045048714, + -0.0015618473989889026, + -0.00037224916741251945, + 0.0014774472219869494, + 0.02227453887462616, + -0.014086833223700523, + 0.02751978673040867, + -0.0035199313424527645, + 0.000937286124099046, + 0.006364661268889904, + -0.01671656407415867, + -0.015025007538497448, + -0.012068335898220539, + 0.0014765587402507663, + 0.013120228424668312, + -0.016489127650856972, + 0.0032889414578676224, + 0.00110519805457443, + 0.012672463431954384, + -0.012736430391669273, + -0.007256637793034315, + -0.025273853912949562, + -0.023027921095490456, + -0.029623571783304214, + 0.01351113524287939, + 0.010618429630994797, + -0.012459241785109043, + 0.007640436757355928, + 0.008472000248730183, + 0.006133671384304762, + 0.0011451770551502705, + 0.027107559144496918, + 0.0016027148813009262, + 0.014826000668108463, + -0.0025622115936130285, + -0.030590176582336426, + -0.01235263142734766, + 0.006872839294373989, + 0.010206202045083046, + -0.02443518303334713, + -0.009360423311591148, + -0.016901357099413872, + 0.023994524031877518, + -0.03459874168038368, + -0.008997946977615356, + -0.005753426346927881, + -0.017512591555714607, + 0.017384657636284828, + 0.018464980646967888, + -0.0033475772943347692, + -0.006844409741461277, + 0.014392450451850891, + 0.0024538240395486355, + -0.005899127572774887, + -0.011848007328808308, + 0.011108839884400368, + 0.013404523953795433, + -0.03792499378323555, + -0.006400198210030794, + 0.0009497240534983575, + -0.002983323996886611, + -0.028827544301748276, + -0.0017901720711961389, + 0.018848778679966927, + 0.007519611157476902, + 0.006563668139278889, + 0.01052603404968977, + -0.015351947396993637, + -0.008479108102619648, + -0.007619114592671394, + 0.005241694860160351, + 0.007061184849590063, + -0.013987329788506031, + -0.0014507945161312819, + -0.009111665189266205, + 0.015821034088730812, + 0.006393090821802616, + -0.011414457112550735, + -0.019346296787261963, + 0.02009967900812626, + 0.002510682912543416, + 0.01188354380428791, + 0.009431497193872929, + -0.024136671796441078, + 0.026695329695940018, + -0.01634697988629341, + -0.003175223246216774, + 0.0006378876278176904, + -0.009132986888289452, + -0.001430360833182931, + 0.008450678549706936, + -0.009026376530528069, + 0.009936121292412281, + -0.003315594047307968, + 0.013106013648211956, + 0.015593597665429115, + -0.010717933066189289, + 0.009076127782464027, + 0.0049538458697497845, + 0.017370443791151047, + 0.01619061827659607, + 0.006663171574473381, + 0.0032534045167267323, + -0.014307161793112755, + 0.004331950098276138, + -0.011236771941184998, + -0.02051190659403801, + -0.024790551513433456, + -0.0012970974203199148, + -0.0027061360888183117, + -0.0006254496984183788, + 0.018934067338705063, + -0.0036318725906312466, + 0.010348349809646606, + -0.010504712350666523, + 0.0128288259729743, + 0.00829431600868702, + 0.009808188304305077, + -0.009850832633674145, + 0.019616376608610153, + 0.010433638468384743, + -0.016645491123199463, + -0.0013557332567870617, + 0.014598564244806767, + -0.021947598084807396, + -0.0009239597711712122, + 0.01484021544456482, + -0.0044740973971784115, + 0.020213397219777107, + 0.02794623002409935, + -0.004950292408466339, + -0.015877893194556236, + 0.0017199866706505418, + 0.017512591555714607, + 0.00021544254559557885, + -0.01617640256881714, + 0.0025231209583580494, + 0.002896258607506752, + -0.005554419942200184, + -0.005255909636616707, + -0.010760577395558357, + -0.0076617589220404625, + -0.014534598216414452, + -0.03064703568816185, + -0.00265105371363461, + 0.0062154061160981655, + -0.0012055898550897837, + -0.0006636518519371748, + -0.006538792047649622, + 0.010767685249447823, + -0.001853250083513558, + 0.0128288259729743, + 0.0022263876162469387, + 0.01437112782150507, + 0.013042047619819641, + 0.009225383400917053, + -0.010355456732213497, + -0.006087473593652248, + -0.0010030294070020318, + 0.009097450412809849, + 0.027050700038671494, + -0.011343383230268955, + 0.007299282122403383, + -0.01114437635987997, + 0.0031983223743736744, + -0.010774792172014713, + -0.01580682024359703, + 0.01100222859531641, + 0.0119475107640028, + 0.00458781560882926, + -0.002931795548647642, + -0.004047654569149017, + -0.01781110092997551, + -0.00036269862903282046, + -0.017583664506673813, + 0.012302880175411701, + 0.014044188894331455, + -0.010469174943864346, + -0.01593475230038166, + -0.008464893326163292, + 0.0029229111969470978, + 0.003615881083533168, + 0.00789630226790905, + 0.013376094400882721, + -0.018010107800364494, + 0.00810952391475439, + 0.01173428911715746, + -0.015423021279275417, + 0.01344006136059761, + 0.00778969144448638, + -0.021123141050338745, + -0.005216819234192371, + 0.004477651324123144, + -0.0067022619768977165, + -0.013681711629033089, + -0.00752671854570508, + -0.017384657636284828, + -0.006691601127386093, + -0.00553309777751565, + 0.01647491380572319, + -0.00796737615019083, + 0.024548901244997978, + -0.0017430856823921204, + 0.011663215234875679, + -0.02133636362850666, + -0.020184967666864395, + 0.007803906220942736, + 0.006279372610151768, + 0.01201858464628458, + -0.011577926576137543, + -0.003036629408597946, + 0.011869329027831554, + 0.011968832463026047, + -0.006371768657118082, + -0.0023027921561151743, + -0.021293718367815018, + 0.013141551055014133, + -0.021805450320243835, + 0.01078900694847107, + 0.016005827113986015, + -0.014925504103302956, + 0.0020522568374872208, + 0.009076127782464027, + 0.0067093693651258945, + 0.013830967247486115, + 0.01577839069068432, + 0.0035092702601104975, + -0.004744178149849176, + -0.010390994139015675, + 0.02036975882947445, + 0.009360423311591148, + -0.022587262094020844, + -0.00434971833601594, + 0.011656108312308788, + 0.005145745351910591, + 0.004705087281763554, + -0.012843040749430656, + 0.006016399711370468, + 0.008791832253336906, + -0.006194084417074919, + -0.011243879795074463, + 0.01505343709141016, + -0.010284382849931717, + 0.01887720823287964, + 0.018180685117840767, + -0.02292841672897339, + -0.004047654569149017, + 0.023838162422180176, + -9.611625137040392e-5, + -0.006410859525203705, + -0.010511819273233414, + -0.04116596281528473, + 0.011293631047010422, + 0.021634873002767563, + 0.021549584344029427, + 0.004985828883945942, + 0.01607690006494522, + 0.019786953926086426, + 0.017171436920762062, + -0.008898443542420864, + -0.017469946295022964, + -0.004733516834676266, + -0.006535238586366177, + -0.012665356509387493, + -0.014385342597961426, + -0.004506080877035856, + -0.043667759746313095, + 0.01634697988629341, + 0.0013104237150400877, + 0.020014390349388123, + -0.007938946597278118, + -0.011933295987546444, + 0.02970886044204235, + -0.021634873002767563, + 0.011627678759396076, + -0.0069048223085701466, + 0.024605760350823402, + -0.0049751680344343185, + 0.01216073241084814, + -0.024236176162958145, + 0.005380288697779179, + -0.0014330260455608368, + -0.021379007026553154, + 0.005231034010648727, + 0.008472000248730183, + 0.008742081001400948, + -0.004921862855553627, + -0.0020415957551449537, + -0.00844357069581747, + -0.008237456902861595, + 0.012523208744823933, + 0.002084240084514022, + 0.005760533735156059, + -0.0002847395371645689, + -0.02297106198966503, + 0.014598564244806767, + 0.019914885982871056, + -0.01567888632416725, + 0.011165698990225792, + 0.008642577566206455, + -0.01593475230038166, + -0.00031494590803049505, + 0.0021251074504107237, + -0.002375642769038677, + 0.022345611825585365, + 0.0021180000621825457, + -0.007270852569490671, + -0.019261008128523827, + 0.03093133121728897, + -0.027349209412932396, + 0.03022059239447117, + -0.01498236320912838, + -0.0026208474300801754, + 0.019275221973657608, + 0.016929786652326584, + -0.007462752051651478, + 0.011087517254054546, + -2.820742520270869e-5, + -0.029481424018740654, + 0.014307161793112755, + 0.008166383020579815, + -0.021236859261989594, + -0.018735060468316078, + 0.006218960043042898, + -0.003962365910410881, + -0.01315576583147049, + -0.013340557925403118, + -0.023525437340140343, + -0.023113209754228592, + -0.004164926242083311, + 0.02334064617753029, + 0.012338416650891304, + -0.014122369699180126, + 0.012324201874434948, + -0.002979770302772522, + -0.011172805912792683, + 5.127865733811632e-5, + 0.0038699700962752104, + 0.030703894793987274, + -0.006169208325445652, + 0.022743625566363335, + 0.010867188684642315, + -0.005366073921322823, + -0.0010820990428328514, + -0.008734973147511482, + -0.0004193355853203684, + -0.0044954195618629456, + -0.00032449644641019404, + -0.005376735236495733, + -0.025416001677513123, + 0.0042857518419623375, + 0.006670278962701559, + -0.016631275415420532, + -0.011769826523959637, + 0.007313496898859739, + 0.015550953336060047, + -0.0038735237903892994, + 0.004260876215994358, + -0.01931786723434925, + -0.0028269614558666945, + -0.013660389930009842, + -0.004513188265264034, + -0.0006512139807455242, + -0.0008266774821095169, + -0.009914799593389034, + 0.025998806580901146, + -0.010895618237555027, + 0.010298597626388073, + 0.009687363170087337, + -0.012537423521280289, + -0.002510682912543416, + 0.028017302975058556, + 0.009381745010614395, + 0.010803221724927425, + 0.006951020564883947, + -0.006179869640618563, + -0.030078444629907608, + 0.00763332936912775, + 0.01739887334406376, + 0.009950336068868637, + 0.0034559648483991623, + 0.008962409570813179, + -0.004847235046327114, + 0.025316497310996056, + -0.013269484043121338, + -0.023198498412966728, + -0.0009586082887835801, + -0.022061316296458244, + 0.005188389681279659, + 0.00176263100001961, + 0.008187704719603062, + -0.0006174538866616786, + -0.0167307797819376, + -0.009666040539741516, + 0.012871470302343369, + 0.010398101061582565, + 0.031073477119207382, + -0.0014889966696500778, + -0.018280189484357834, + -0.01484021544456482, + -0.014207658357918262, + 0.0019296545069664717, + 0.019815383478999138, + -0.012174947187304497, + 0.0068053193390369415, + 0.007604899816215038, + 0.01958794705569744, + 0.017583664506673813, + -0.0019953977316617966, + -0.016816068440675735, + -0.030846042558550835, + 0.0014961040578782558, + 0.0021837432868778706, + 0.01634697988629341, + 0.018578698858618736, + -0.01073925569653511, + -0.0021286611445248127, + 0.002318783663213253, + -0.02956671267747879, + -0.015138725750148296, + -0.014228980988264084, + -0.004321288783103228, + -0.0007929173880256712, + -0.005476238671690226, + -0.008095309138298035, + -0.0042999666184186935, + 0.011798255145549774, + 0.01874927617609501, + 0.006073258817195892, + -0.02579979971051216, + -0.003564352635294199, + -0.0015964958583936095, + 0.006535238586366177, + 0.001619594870135188, + -0.0054335943423211575, + 0.004580708220601082, + -0.003214313881471753, + -0.024591544643044472, + 0.0006356665398925543, + 0.03238123655319214, + -0.020142322406172752, + -0.004413684830069542, + -0.009914799593389034, + -0.004140050616115332, + 0.005263017024844885, + -0.01261560432612896, + 0.01261560432612896, + 0.008194812573492527, + 0.004477651324123144, + -0.0061372253112494946, + -0.023127423599362373, + 0.0012384614674374461, + 0.017867960035800934, + -0.020867276936769485, + 0.0044598826207220554, + 0.042331572622060776, + -0.0016480244230479002, + 0.0008169048232957721, + 0.01917571946978569, + -0.007747047580778599, + -0.025416001677513123, + -0.006218960043042898, + -0.005071117542684078, + 0.014051295816898346, + -0.052566204220056534, + -0.004307074006646872, + 0.01891985349357128, + -0.010092483833432198, + -0.002976216608658433, + 0.0013015394797548652, + 0.009040591306984425, + 0.02130793407559395, + 0.010639752261340618, + 0.006094580981880426, + 0.008180597797036171, + 0.012999403290450573, + 0.00808820128440857, + -0.005430040415376425, + 0.009971657767891884, + -0.008990839123725891, + -0.0045629399828612804, + -0.028983907774090767, + 0.0077683692798018456, + 0.0007982479291968048, + -0.0130917988717556, + -0.004367486573755741, + -0.0003769134054891765, + 0.02511749044060707, + -0.008429355919361115, + 0.012395275756716728, + 0.0030721663497388363, + 0.00032671750523149967, + 0.0028802668675780296, + -0.008123738691210747, + -0.008671007119119167, + 0.005685906391590834, + 0.010916939936578274, + -0.011848007328808308, + -0.012338416650891304, + 0.01685871183872223, + 0.015025007538497448, + 0.0063042487017810345, + -0.003564352635294199, + 0.0021872969809919596, + -0.01275064516812563, + 0.0042857518419623375, + -0.009445711970329285, + -0.007640436757355928, + 0.010362564586102962, + 0.003926828969269991, + -0.01727094128727913, + -0.007089614402502775, + -0.02902655117213726, + -0.010362564586102962, + 0.015394591726362705, + 0.011855114251375198, + 0.006279372610151768, + 0.007224654778838158, + -0.00438525527715683, + 0.01296386681497097, + -0.023923451080918312, + -0.02346857823431492, + 0.011911973357200623, + 0.04389519616961479, + 0.04534510150551796, + 0.014868644997477531, + -0.011833792552351952, + -0.009154309518635273, + -0.04224628210067749, + -0.002318783663213253, + 0.010540248826146126, + -0.017867960035800934, + -0.00286782905459404, + 0.00330848665907979, + -0.000930178735870868, + 0.005749872885644436, + 0.0013583985855802894, + -0.005213265307247639, + 0.014477739110589027, + -0.0034577418118715286, + -0.02416510134935379, + -0.010291490703821182, + 0.01242370530962944, + 0.009523892775177956, + 0.025302283465862274, + -0.015977397561073303, + 0.0031983223743736744, + 0.008983732201159, + -0.009168524295091629, + -0.015593597665429115, + -0.021535370498895645, + 0.013873611576855183, + -0.014484846033155918, + 0.026084095239639282, + -0.024463612586259842, + -0.025131706148386, + 0.004619799088686705, + -0.00725308433175087, + 0.008408034220337868, + 0.0033582383766770363, + 0.004722855985164642, + -0.0029566711746156216, + -0.005508221685886383, + -0.026268886402249336, + -0.008685221895575523, + 0.022700980305671692, + -0.022786268964409828, + 0.016673920676112175, + 0.010817436501383781, + 0.0049680606462061405, + 0.01505343709141016, + -0.01484021544456482, + 0.004733516834676266, + 0.022075532004237175, + 0.02390923537313938, + -0.020611410960555077, + -0.006290033925324678, + 0.004172033630311489, + 0.0018168247770518064, + -0.0003784681321121752, + 0.0016240370459854603, + -0.0008591049117967486, + -0.0004864115035161376, + 0.0020931242033839226, + 0.002485807053744793, + 0.006560114212334156, + 0.02551550418138504, + -0.003633649554103613, + -0.003990795463323593, + 0.01425030268728733, + 0.017512591555714607, + 0.012409490533173084, + -0.01782531663775444, + 0.0016444707289338112, + 0.002165975049138069, + -0.02416510134935379, + -0.012068335898220539, + -0.001545855775475502, + -0.00945992674678564, + -0.023113209754228592, + -0.02968043088912964, + -0.0224309004843235, + 0.0010207978775724769, + 0.01254453044384718, + 0.0005721443449147046, + -0.0035163776483386755, + 0.009019268676638603, + -0.009623396210372448, + -0.001377943903207779, + 0.015693102031946182, + -0.004417238291352987, + 0.002254817169159651, + 0.02307056449353695, + -0.005341198295354843, + -0.0036425336729735136, + -0.009502571076154709, + -0.003734929719939828, + 0.005191943142563105, + 0.0086283627897501, + 0.008173489943146706, + 0.011961725540459156, + 0.00661697331815958, + 0.00590268149971962, + -0.004502526950091124, + 0.022217679768800735, + 0.009225383400917053, + 0.003997902851551771, + 0.004545171279460192, + -0.012636926956474781, + -0.0005401610978879035, + -0.0149112893268466, + 0.008585718460381031, + 0.004150711465626955, + -0.002942456630989909, + 0.0038593090139329433, + -0.004722855985164642, + 0.006634742021560669, + 0.007974484004080296, + 0.005348305683583021, + -0.009914799593389034, + 0.023696014657616615, + 0.023568082600831985, + -0.0007906963583081961, + -0.0039090607315301895, + 0.013219731859862804, + 0.038550443947315216, + 0.01970166526734829, + -0.013482705689966679, + -0.00330848665907979, + -0.010426530614495277, + 0.017597880214452744, + 0.004022778943181038, + 0.0012144740903750062, + -0.015337732620537281, + -0.006592097692191601, + -0.0007005213992670178, + 0.021108927205204964, + -0.009730007499456406, + -0.009431497193872929, + 0.011975940316915512, + 0.006329124327749014, + 0.02510327659547329, + 0.009602074511349201, + -0.038692593574523926, + 0.056517910212278366, + 0.001178048667497933, + -0.004246661439538002, + -0.024094028398394585, + 0.008251671679317951, + -0.019786953926086426, + -0.0038308794610202312, + -0.0005397169152274728, + 0.0036567484494298697, + 0.015508309938013554, + 0.01126520149409771, + -0.016147973015904427, + 0.007178456522524357, + 0.0047726077027618885, + -0.004086744971573353, + -0.016631275415420532, + 0.018280189484357834, + -0.024378323927521706, + -0.003276503412052989, + -0.007818121463060379, + 0.01862134225666523, + 0.0006343339337036014, + -0.01741308718919754, + 0.004079637583345175, + -0.00752671854570508, + -0.011051980778574944, + 0.013127336278557777, + -0.04267272725701332, + -0.013219731859862804, + -0.008521752431988716, + 0.008599933236837387, + -0.0015929421642795205, + 0.020000174641609192, + 0.018692417070269585, + 0.02349700778722763, + 0.0039161681197583675, + -0.0024786998983472586, + -0.027377638965845108, + -0.02308478020131588, + 0.013475597836077213, + 0.009523892775177956, + 0.011179912835359573, + 0.00493252370506525, + -0.004680211655795574, + 0.010696611367166042, + -0.0026368391700088978, + 0.01769738271832466, + 0.032210659235715866, + -0.0006378876278176904, + -0.02118000015616417, + 0.019914885982871056, + -0.01782531663775444, + 0.014165014028549194, + -0.02715020254254341, + 0.010838759131729603, + 0.008791832253336906, + -0.00877761747688055, + -0.012487671338021755, + 0.001126520219258964, + -0.0017652962123975158, + 0.002354320604354143, + -0.01308469194918871, + 0.0005650369566865265 + ], + "98320e0a-868d-4352-a07e-071e5897432d": [ + -0.011309690773487091, + 0.009977245703339577, + -0.009449416771531105, + 0.010569442994892597, + -0.04426034912467003, + -0.03550611808896065, + 0.01909194141626358, + 0.010505073703825474, + -0.006588200572878122, + 0.007228675298392773, + 0.009455854073166847, + 0.013762162066996098, + 0.030717041343450546, + 0.0021225784439593554, + -0.02252926304936409, + -0.012043501250445843, + -0.021229002624750137, + 0.021113138645887375, + 0.00012220113421790302, + -0.023224452510476112, + 0.059683237224817276, + -0.0321846641600132, + -0.030794285237789154, + 0.010736803524196148, + 0.007151431869715452, + -0.021640967577695847, + -0.0057771471329033375, + -0.006958323996514082, + -0.03566060587763786, + -0.003865377977490425, + 0.03022783435881138, + -0.02134486846625805, + 0.027962034568190575, + -0.021834075450897217, + -0.00467643141746521, + -0.06709858775138855, + -0.030305078253149986, + 0.010981407016515732, + 0.02940390817821026, + -0.002246489515528083, + 0.02250351570546627, + 0.017572825774550438, + 0.011103708297014236, + 0.017843177542090416, + -0.022104427218437195, + 0.02500104531645775, + 0.005014370661228895, + -0.016246818006038666, + 0.017765933647751808, + 0.02453758753836155, + -0.025516001507639885, + -0.013581927865743637, + -0.017778808251023293, + 0.00221108621917665, + 0.02178257890045643, + -0.0001436240563634783, + 5.209892333368771e-5, + 0.06884942948818207, + -0.0056419712491333485, + -0.042355015873909, + -0.0035531867761164904, + -0.03370377793908119, + 0.021962814033031464, + -0.002928804373368621, + 0.0022223510313779116, + -0.0009888737695291638, + -0.028708718717098236, + 0.01994161680340767, + -0.04266398772597313, + -0.023456182330846786, + 0.02695787325501442, + 0.05031106621026993, + -0.018795842304825783, + 0.032776858657598495, + -0.012140055187046528, + 0.007968922145664692, + 0.02448609098792076, + 0.0011948555475100875, + 0.021164633333683014, + 0.01710936613380909, + 0.004486542195081711, + -0.019001824781298637, + 0.020726922899484634, + 0.009282057173550129, + 0.05587257444858551, + -0.01804915815591812, + -0.03300859034061432, + -0.04552198573946953, + -0.023675037547945976, + -0.0272668469697237, + 0.000323455868056044, + 0.056078556925058365, + -0.003997335210442543, + -0.03496541827917099, + -0.0064594619907438755, + -0.02313433587551117, + 0.017366843298077583, + -0.0026310961693525314, + 0.014341485686600208, + 0.0027373055927455425, + 0.006803837604820728, + 0.03427023068070412, + -0.03450195863842964, + 0.013736413791775703, + -0.01008023601025343, + -0.031180500984191895, + 0.010878415778279305, + 0.014109755866229534, + -0.025631865486502647, + 0.026069575920701027, + 0.007222238462418318, + -0.04948713630437851, + -0.022683750838041306, + -0.013427441008388996, + -0.0191176887601614, + 0.01490793563425541, + -0.023726534098386765, + -0.04062991961836815, + 0.01368491817265749, + -0.01955540105700493, + 0.05427621677517891, + -0.009706893935799599, + 0.015384268946945667, + 0.001486931461840868, + -0.017006374895572662, + 0.04026944935321808, + -0.0007165110437199473, + 0.03463069722056389, + -0.0006388655747286975, + 0.044826798141002655, + -0.011734528467059135, + -0.030665546655654907, + -7.573453331133351e-5, + -0.016929132863879204, + 0.013517558574676514, + 0.061279598623514175, + 0.0031154754105955362, + 0.03141223266720772, + -0.00682314857840538, + 0.017611447721719742, + -0.04809676110744476, + -0.022052930667996407, + -0.03527439013123512, + -0.018358131870627403, + -0.033987004309892654, + 0.015834854915738106, + -0.020585309714078903, + 0.0034662880934774876, + 0.005236444529145956, + 0.003965150564908981, + -0.05298882722854614, + -0.017070744186639786, + -0.010311965830624104, + -0.015332773327827454, + 0.030717041343450546, + -0.021666714921593666, + -0.0077178822830319405, + 0.03954851254820824, + 0.014946557581424713, + 0.021525101736187935, + 0.03205592557787895, + -0.058086879551410675, + 0.0026648901402950287, + -0.018950330093503, + 0.03669051453471184, + 0.007756503764539957, + 0.032004427164793015, + -0.009372173808515072, + -0.019079068675637245, + 0.018576987087726593, + 0.031592465937137604, + -0.03741145133972168, + -0.001395205152221024, + -0.01826801523566246, + 0.03591808304190636, + -0.01058875396847725, + 0.03903355821967125, + 0.005155982915312052, + 0.0148950619623065, + -0.045985445380210876, + 0.019980238750576973, + -0.047633301466703415, + 0.03342055529356003, + -0.006964760832488537, + -0.03705098479986191, + -0.006681535858660936, + 0.03097451850771904, + 0.02635280229151249, + 0.011959820985794067, + 0.020392201840877533, + 0.01468908041715622, + -0.02971288003027439, + 0.01892458088696003, + 0.010015866719186306, + -0.038904819637537, + -0.06920989602804184, + 0.0052010416984558105, + 0.0032458233181387186, + -0.004444702062755823, + 0.01526840403676033, + -0.0063242861069738865, + -0.046860869973897934, + 0.00931424181908369, + 0.05417322367429733, + -0.014096882194280624, + 0.04948713630437851, + -0.02475644275546074, + 0.007775814738124609, + -0.005770709831267595, + 0.014856440015137196, + -0.010479326359927654, + -0.005844734609127045, + 0.013826531358063221, + -0.014714827761054039, + -0.016375556588172913, + 0.0081298453733325, + 0.005181730724871159, + -0.012951108627021313, + -0.002326951129361987, + -0.03530013933777809, + 0.008908715099096298, + -0.012494086287915707, + 0.03532588481903076, + -0.04062991961836815, + -0.023700784891843796, + 0.0045058527030050755, + -0.04536750167608261, + 0.034347470849752426, + -0.02860572747886181, + -0.015410016290843487, + 0.020868536084890366, + -0.05113499239087105, + 0.04410586133599281, + -0.04423459991812706, + -0.00935286283493042, + 0.017366843298077583, + 0.026751890778541565, + 0.005223570857197046, + -0.025812098756432533, + -0.04351366311311722, + 0.033188823610544205, + 0.010002993047237396, + -0.002011541510000825, + 0.0031203031539916992, + 0.008895840495824814, + -0.009500912390649319, + -0.026005206629633904, + 0.03213316574692726, + 0.022799614816904068, + 0.007499026600271463, + 0.04230352118611336, + 0.004093889147043228, + 0.01691625826060772, + -0.004309526178985834, + -0.018551239743828773, + 0.006584981922060251, + 0.028322502970695496, + -0.04446633160114288, + -0.007318792399019003, + 0.004538037348538637, + -0.012893175706267357, + 0.0015352084301412106, + -0.02337893843650818, + -0.001573830028064549, + 0.04348791763186455, + -0.02635280229151249, + 0.03295709565281868, + -0.05175293609499931, + 0.009648961946368217, + 0.06292745471000671, + 0.017984788864850998, + 0.024576207622885704, + 0.0039297472685575485, + 0.017984788864850998, + -0.014315738342702389, + -0.00412607379257679, + -0.020752670243382454, + 0.00973907858133316, + -0.01528127770870924, + 0.014328612014651299, + 0.003578934585675597, + -0.0478135347366333, + 0.010505073703825474, + 0.03203017637133598, + 0.006784527096897364, + 0.025219902396202087, + -0.019902994856238365, + 0.006752342451363802, + -0.0020147599279880524, + -0.02085566148161888, + -0.004081015009433031, + -0.026005206629633904, + -0.021331993862986565, + 0.020508067682385445, + -0.00896664708852768, + 0.020314959809184074, + 0.011502798646688461, + -0.027009369805455208, + -0.03568635508418083, + 0.0003341170377098024, + -0.018435373902320862, + -0.013929521664977074, + -0.025902217254042625, + -0.012358910404145718, + 0.022207416594028473, + -0.004219409078359604, + 0.04171132296323776, + 0.025786351412534714, + -0.003418011125177145, + 0.006292101461440325, + 0.005847953259944916, + -0.019619770348072052, + 0.0050851767882704735, + -0.04670638218522072, + 4.724607788375579e-5, + 0.027653062716126442, + -0.026726143434643745, + -0.009211250580847263, + -0.0016993501922115684, + -0.02371365949511528, + 0.01713511534035206, + -0.0059960028156638145, + -0.045985445380210876, + 0.02814226970076561, + -0.01259707659482956, + -0.04111912474036217, + 0.028271008282899857, + -0.00865123700350523, + -0.009591029025614262, + 0.0012809495674446225, + -0.017804555594921112, + 0.013697792775928974, + -0.04186581075191498, + 0.016620159149169922, + -0.017624320462346077, + -0.05463668331503868, + -0.07605879753828049, + -0.04691236466169357, + 0.03094877116382122, + 0.006308193784207106, + -0.005081958137452602, + 0.011959820985794067, + -0.017585700377821922, + -0.03053680807352066, + -0.016105204820632935, + -0.014946557581424713, + -0.029970357194542885, + -0.020005986094474792, + 0.018087780103087425, + 0.009488038718700409, + 0.0007949611754156649, + -0.00020427202980499715, + 0.0005547830951400101, + 0.008786412887275219, + 0.028296755626797676, + -0.007202927488833666, + -0.009661835618317127, + -0.024022631347179413, + 0.01152854599058628, + -0.0013622158439829946, + 0.003575715934857726, + -0.02695787325501442, + -0.016208196058869362, + -0.019709886983036995, + -0.014933683909475803, + -0.002512012841179967, + 0.016079457476735115, + 0.023752281442284584, + 0.01870572566986084, + 0.05304032564163208, + -0.005497140344232321, + -0.0024251143913716078, + -0.04413161054253578, + -0.06457530707120895, + 0.014856440015137196, + -0.0033182387705892324, + 0.05432771146297455, + -0.023018470034003258, + -0.017289601266384125, + -0.011979131028056145, + -0.02528427168726921, + -0.019156310707330704, + -0.0730205625295639, + -0.029455402866005898, + -0.0030285767279565334, + -0.008921588771045208, + 0.0031042108312249184, + 0.004499415867030621, + 0.02327594719827175, + 0.023481929674744606, + -0.007164306007325649, + 0.009713331237435341, + -0.008258584886789322, + 0.012191549874842167, + 0.021550850942730904, + -0.006005657836794853, + -0.004438264761120081, + 0.015538754872977734, + 0.0215122289955616, + 0.008310079574584961, + -0.026442918926477432, + 0.00785305816680193, + -0.01315065287053585, + 0.007840183563530445, + 0.03939402848482132, + -0.01783030293881893, + 0.021911317482590675, + -0.017572825774550438, + 0.02927516959607601, + 0.022155921906232834, + -0.03746294602751732, + 0.00805903971195221, + -0.004895287100225687, + 0.03172120451927185, + 0.020070355385541916, + -0.003443758934736252, + 0.00984850712120533, + 0.06951887160539627, + -0.0031090383417904377, + 0.0019745291210711002, + -0.005947725847363472, + 0.0007861104095354676, + -0.008155593648552895, + 0.021216129884123802, + -0.020392201840877533, + 0.015152539126574993, + -0.010582316666841507, + 0.018448248505592346, + -0.04454357177019119, + -0.010614501312375069, + 0.008322954177856445, + 0.05098050460219383, + 0.018280887976288795, + -0.009674709290266037, + -0.013569054193794727, + -0.03658752515912056, + 0.004000553395599127, + -0.02652016282081604, + 0.019812878221273422, + -0.033137328922748566, + -0.012107870541512966, + 0.060558661818504333, + 0.016221070662140846, + -0.001747627160511911, + 0.018332384526729584, + -0.018280887976288795, + -0.03972874581813812, + 0.040037721395492554, + 0.01705787144601345, + 0.019272176548838615, + -0.0015400360571220517, + 0.02930091693997383, + -0.023198705166578293, + -0.018409626558423042, + 0.00825214758515358, + -0.006234169006347656, + 0.024988172575831413, + 0.0012391095515340567, + -0.014225620776414871, + 0.00047753992839716375, + -0.012796621769666672, + 0.0018393534701317549, + 0.032699618488550186, + -0.018963202834129333, + 0.022992722690105438, + -0.04088739678263664, + -0.0134660629555583, + -0.02071404829621315, + -0.00027437423705123365, + 0.012326725758612156, + -0.044028617441654205, + 0.0019986676052212715, + -0.0627729669213295, + 0.022014308720827103, + -0.008232836611568928, + -0.0028225949499756098, + -0.013157090172171593, + 0.0059734731912612915, + 0.000957493728492409, + -0.003530657384544611, + 0.0018683196976780891, + -0.018885960802435875, + -0.03573784977197647, + -0.009945061057806015, + -0.010498637333512306, + -0.020340707153081894, + -0.027472827583551407, + -0.013581927865743637, + 0.005526106804609299, + -0.037977900356054306, + -0.0007981796516105533, + 0.038364116102457047, + 0.01989012211561203, + -0.018409626558423042, + -0.014148377813398838, + 0.010131731629371643, + -0.00785305816680193, + -0.026146819815039635, + -0.009275619871914387, + 0.027138108387589455, + 0.035892337560653687, + 0.014084008522331715, + -0.0341157428920269, + 0.0017942949198186398, + 0.02250351570546627, + 0.015178287401795387, + -0.03177269920706749, + -0.0012181894853711128, + 0.01329870242625475, + 0.022374777123332024, + -0.021911317482590675, + -0.009018142707645893, + -0.01867997832596302, + 0.010884853079915047, + -0.010176789946854115, + -0.022645128890872, + -0.03658752515912056, + 0.0023237327113747597, + 0.027112359181046486, + -0.00026411539874970913, + -0.007215801160782576, + 0.007370287552475929, + 0.0010685308370739222, + 0.020314959809184074, + -0.0012004879536107183, + 0.014264242723584175, + -0.04613993316888809, + -0.015615998767316341, + 0.004370677284896374, + 0.0018136057769879699, + -0.011123019270598888, + 0.004081015009433031, + -0.025026794523000717, + 0.035995326936244965, + -0.008181340992450714, + -0.008078350685536861, + -0.024640576913952827, + -0.0048566656187176704, + 0.030459564179182053, + 0.013504684902727604, + -0.025026794523000717, + 0.06164006516337395, + 0.03051106072962284, + -0.016826141625642776, + 0.014650458469986916, + 0.024357352405786514, + 0.002512012841179967, + 0.05659351125359535, + -0.012577766552567482, + 0.010569442994892597, + -0.02577347867190838, + 0.004454357549548149, + -0.025593243539333344, + -0.005246100015938282, + -0.0004103544633835554, + -0.020237715914845467, + 0.011296816170215607, + 0.00966827291995287, + -0.022928353399038315, + -0.023507677018642426, + 0.00902457907795906, + 0.012996166944503784, + 0.007544084917753935, + 0.0006436932599171996, + -0.016414178535342216, + 0.007003382779657841, + -0.03146372735500336, + 0.02063680626451969, + -0.026777639985084534, + 0.007949612103402615, + 0.021602345630526543, + 0.013337324373424053, + 0.04088739678263664, + 0.004940345883369446, + -0.03138648346066475, + 0.005371620412915945, + -0.00168003945145756, + -0.007112810388207436, + 0.0353773795068264, + -0.025490252301096916, + 0.022490642964839935, + -0.03653603047132492, + -0.011837518773972988, + -0.0011184170143678784, + -0.012140055187046528, + 0.016568664461374283, + -0.021988561376929283, + -0.005474611185491085, + -0.020430823788046837, + 0.029249422252178192, + 0.001151406322605908, + 0.025258522480726242, + 0.011393371038138866, + 0.009423669427633286, + 0.004293433856219053, + 0.02657165750861168, + -0.02494955062866211, + 0.013762162066996098, + 0.017675817012786865, + 0.013556179590523243, + 0.03831262141466141, + 0.025400135666131973, + 0.01950390636920929, + -0.027962034568190575, + -0.005062647629529238, + -0.008065476082265377, + 0.029429655522108078, + 0.023675037547945976, + -0.007885242812335491, + 0.010485762730240822, + -0.0318499431014061, + -0.012442590668797493, + 0.018358131870627403, + -0.019761383533477783, + 0.0016148654976859689, + 0.0067909639328718185, + 0.027035117149353027, + 0.020289210602641106, + 0.006208421662449837, + -0.007904552854597569, + 0.020237715914845467, + -0.01906619407236576, + 0.030691293999552727, + -0.052036162465810776, + 0.032699618488550186, + -0.005394149571657181, + 0.009603903628885746, + -0.01547438558191061, + 0.00618267385289073, + 0.010833357460796833, + 0.024138497188687325, + -0.03164396062493324, + -0.0018731473246589303, + -0.009005269035696983, + 0.0309230238199234, + 0.006964760832488537, + -0.006868206895887852, + 0.004142166115343571, + -0.010736803524196148, + 0.00482769962400198, + -0.0012061202432960272, + 0.0008649628143757582, + 0.00865123700350523, + 0.033575039356946945, + -0.013337324373424053, + 0.01771443895995617, + -0.013350198045372963, + -0.011509235017001629, + 0.022104427218437195, + -0.009249872528016567, + 0.0003365308803040534, + 0.0009220906067639589, + -0.00168003945145756, + 0.004309526178985834, + 0.009359300136566162, + -0.0208814088255167, + 0.016980627551674843, + 0.01829376257956028, + -0.0043932064436376095, + 0.0020405075047165155, + 0.022567884996533394, + -0.006414403207600117, + -0.02310858853161335, + 0.016710277646780014, + 0.02393251471221447, + 0.013427441008388996, + 0.012384658679366112, + 0.01914343796670437, + 0.004293433856219053, + 0.02194993942975998, + -0.01041495706886053, + -0.028708718717098236, + -0.021499354392290115, + -0.001828088890761137, + 0.005741743836551905, + 0.003427666611969471, + 0.004196879919618368, + -0.004148602951318026, + 0.00013658366515301168, + -0.018641356378793716, + -0.028837457299232483, + -0.02049519307911396, + -0.04853447154164314, + 0.013878026977181435, + -0.012249482795596123, + -0.004100325983017683, + -0.010189664550125599, + 0.021846948191523552, + 3.4573367884149775e-5, + -0.038338370621204376, + 0.0034212295431643724, + 9.4190429081209e-5, + -0.0010958877392113209, + 0.004364240448921919, + -0.006758779287338257, + -0.005439207889139652, + 0.0023575264494866133, + 0.008355138823390007, + 6.844269955763593e-5, + 0.0006058762664906681, + -0.004956438206136227, + -0.015010926872491837, + 0.028399746865034103, + -0.025271397083997726, + 0.03300859034061432, + 0.01732822321355343, + -0.008985958062112331, + 0.011786023154854774, + 0.014431602321565151, + 0.0014129066839814186, + -0.013047662563621998, + 8.23726222733967e-5, + -0.005130235105752945, + 0.01097496971487999, + 0.01511391717940569, + -0.005297595635056496, + 0.004602406639605761, + 0.027498574927449226, + -0.035531867295503616, + 0.022349029779434204, + 0.012210860848426819, + 0.015229782089591026, + 0.008496751077473164, + -0.02049519307911396, + -0.012069248594343662, + 0.006153707392513752, + -0.016903385519981384, + -0.009301367215812206, + 0.0011288770474493504, + -0.01024759653955698, + 0.024962425231933594, + -0.01076898816972971, + 0.014508846215903759, + 0.00020175760437268764, + -0.015332773327827454, + -0.010376335121691227, + -0.003533876035362482, + -0.007042004261165857, + -0.008548246696591377, + -0.021525101736187935, + 0.01255845557898283, + -0.025541748851537704, + 0.009835632517933846, + -0.05906529352068901, + 0.03133498877286911, + 0.011026465333998203, + 0.027189603075385094, + -0.028348250314593315, + -0.0005314492154866457, + 0.017392592504620552, + 0.0009518613805994391, + 0.0030382322147488594, + 0.032725363969802856, + -0.009539534337818623, + -0.0027067300397902727, + -0.00015720196824986488, + 0.018782969564199448, + 0.007672823499888182, + -0.031618211418390274, + 0.05540911480784416, + -0.004998278338462114, + 0.0051366719417274, + -0.023945389315485954, + -0.0102733438834548, + 0.0021000492852181196, + -0.044414833188056946, + -0.012133617885410786, + 0.003984461072832346, + 0.025541748851537704, + -0.024601956829428673, + 0.02891470119357109, + 0.02170533686876297, + 0.01582198031246662, + 0.021937066689133644, + 0.0013718712143599987, + 0.02068830095231533, + -0.005239663179963827, + -0.01506242249161005, + -0.03215891495347023, + 0.010653123259544373, + -0.03617556020617485, + -0.04933265224099159, + 0.017559951171278954, + -0.0373084619641304, + 0.010447141714394093, + -0.020070355385541916, + 0.050826020538806915, + -0.007994670420885086, + -0.03648453205823898, + 0.009945061057806015, + -0.006253479979932308, + -0.000824732007458806, + -0.01925930194556713, + -0.012809495441615582, + -0.00856755767017603, + -0.012197987176477909, + -0.005139890592545271, + -0.011766713112592697, + -0.02695787325501442, + 0.02063680626451969, + 0.013311576098203659, + -0.01405826024711132, + 0.0570569708943367, + 0.021331993862986565, + -0.013311576098203659, + -0.011554294265806675, + -0.009990119375288486, + -0.027035117149353027, + -0.00856755767017603, + -0.0033375495113432407, + -0.01328582875430584, + 0.026777639985084534, + -0.020456571131944656, + 0.033626534044742584, + -0.03048531338572502, + 0.03293134644627571, + -0.008586867712438107, + -0.001686476287432015, + 0.027859043329954147, + 0.008400197140872478, + -0.018358131870627403, + 0.017508456483483315, + -0.03408999368548393, + 0.0029931736644357443, + -0.0003168177790939808, + 0.009288493543863297, + 0.013607675209641457, + -0.01884733885526657, + 0.03455345332622528, + 0.014006765559315681, + 0.015551629476249218, + -0.009983682073652744, + 0.005629097577184439, + 0.0272668469697237, + -0.0048566656187176704, + 0.013388819992542267, + -0.029584141448140144, + 0.006053935270756483, + -0.008316516876220703, + 0.034759435802698135, + 0.013607675209641457, + -0.0240741278976202, + -0.03172120451927185, + -0.012622824870049953, + -0.0039587137289345264, + 0.010704618878662586, + 0.0035016913898289204, + 0.011889014393091202, + 0.017070744186639786, + 0.05757192522287369, + 0.020649679005146027, + -0.02095865271985531, + -0.02189844474196434, + 0.01705787144601345, + -0.033626534044742584, + 0.014251369051635265, + -0.025181280449032784, + 0.019246429204940796, + -0.006588200572878122, + -0.006144051905721426, + 0.044389087706804276, + -0.012667883187532425, + -0.023250199854373932, + 0.018190771341323853, + -0.004000553395599127, + -0.03645878657698631, + 0.01405826024711132, + 0.022992722690105438, + 0.004129292443394661, + 0.036870747804641724, + 0.006079682614654303, + -0.011020028963685036, + 0.019220679998397827, + 0.045676473528146744, + -0.001125658629462123, + 0.010163916274905205, + -0.00918550230562687, + 0.035222895443439484, + -0.01082692015916109, + -0.015989340841770172, + -0.02533576637506485, + 0.008303643204271793, + 0.011586478911340237, + 0.020417949184775352, + -0.017431212589144707, + -0.003075244603678584, + 0.005706340540200472, + -0.0008850782178342342, + 0.0004308721690904349, + 0.006549579091370106, + -0.00241384981200099, + -0.018641356378793716, + -0.023121461272239685, + -0.02558037079870701, + -0.020559562370181084, + 0.0016003823839128017, + 0.021640967577695847, + 0.008310079574584961, + 0.00822640024125576, + 0.052782848477363586, + 0.013375945389270782, + -0.02618544176220894, + -0.006147270556539297, + -0.02816801704466343, + 0.012358910404145718, + -0.023893892765045166, + 0.01746983453631401, + 0.0006742686964571476, + 0.0009188721305690706, + 0.02819376438856125, + 0.027086611837148666, + 0.013569054193794727, + -0.006520612630993128, + 0.010807610116899014, + 0.04735007509589195, + 0.0020791292190551758, + 0.01529415138065815, + -0.0030446690507233143, + -0.018306635320186615, + -0.016594411805272102, + -0.0018924581818282604, + 0.006498083472251892, + 0.042458005249500275, + 0.029069187119603157, + -0.02068830095231533, + 0.00031641547684557736, + -0.009970808401703835, + -0.03172120451927185, + 0.007151431869715452, + 0.03174695000052452, + -0.028348250314593315, + 0.005619442090392113, + -0.0024798281956464052, + 0.0027228223625570536, + 0.028837457299232483, + -0.0011135893873870373, + 0.005455300211906433, + -0.024189991876482964, + 0.004377114120870829, + -0.021280499175190926, + -0.00022408571385312825, + 0.02349480427801609, + 0.016414178535342216, + -0.016542917117476463, + -0.027627315372228622, + -0.009121133014559746, + -0.007486152462661266, + 0.020263463258743286, + 0.0064465878531336784, + 0.007711444981396198, + 0.020559562370181084, + 0.03416723757982254, + -0.01674889773130417, + 0.009880691766738892, + 0.0028805274050682783, + -0.0017041779356077313, + 0.008960209786891937, + 0.005400586407631636, + -0.008689858950674534, + 0.002684200881049037, + -0.01074324082583189, + -0.026623152196407318, + 0.00877353921532631, + 0.0003677097847685218, + -0.02937816083431244, + 0.0023012033198028803, + -0.028734466060996056, + -0.005954162683337927, + 0.01674889773130417, + -0.018435373902320862, + 0.01257132925093174, + 0.007080625742673874, + 0.0049532195553183556, + 0.021023022010922432, + -0.01468908041715622, + -0.00826502125710249, + -0.0191176887601614, + -0.0012254309840500355, + -0.014225620776414871, + -0.015912096947431564, + -0.004689305555075407, + 0.014148377813398838, + -0.032004427164793015, + -0.02335319109261036, + 0.010891289450228214, + 0.02368791215121746, + -0.006700846832245588, + 0.009404358454048634, + -0.0051366719417274, + 0.02412562258541584, + 0.020585309714078903, + -0.027936287224292755, + -0.009063201025128365, + 0.01349181029945612, + 0.001216580276377499, + -0.012725815176963806, + -0.009539534337818623, + -0.021550850942730904, + -0.005191386211663485, + -0.020726922899484634, + -0.010801172815263271, + -0.012178676202893257, + 0.027575818821787834, + 0.028245259076356888, + 0.0023848835844546556, + -0.0008271458209492266, + 0.005786802154034376, + -0.004264467861503363, + 0.00336007890291512, + 0.007402472198009491, + -0.007750066928565502, + -0.021138885989785194, + 0.009867817163467407, + 0.015564503148198128, + 0.019400915130972862, + 0.01964551769196987, + 0.0024009759072214365, + -0.021357743069529533, + -0.024215741083025932, + 0.029532646760344505, + -0.015770485624670982, + -0.018190771341323853, + -0.020314959809184074, + -0.001563369994983077, + 0.006945450324565172, + 0.00984850712120533, + 0.01449597254395485, + -0.0009373783250339329, + 0.036716263741254807, + 0.006816711742430925, + -0.0007893288275226951, + -0.005217134021222591, + 0.002970644272863865, + -0.019297923892736435, + 0.008477440103888512, + -0.02052094042301178, + 0.0004135729104746133, + -0.07199065387248993, + -0.010009430348873138, + 0.0006143247592262924, + 0.004447920247912407, + -0.008187778294086456, + -0.010717492550611496, + 0.009784137830138206, + 0.026236936450004578, + -0.006453024689108133, + 0.007544084917753935, + 0.030330825597047806, + -0.0366390198469162, + 0.016761772334575653, + 0.02456333488225937, + 0.015371395274996758, + -0.005403805058449507, + 0.023263074457645416, + 0.0025393699761480093, + 0.018422501161694527, + -0.04194305092096329, + -0.011554294265806675, + -0.005796457640826702, + 0.043153196573257446, + -0.004544474184513092, + 0.0036239931359887123, + 0.04070715978741646, + -0.021962814033031464, + 0.009500912390649319, + -0.006803837604820728, + 0.006485209334641695, + 0.008657674305140972, + -0.0026697178836911917, + -0.014573215506970882, + -0.0043835509568452835, + 0.005339435767382383, + -0.00638865539804101, + 0.02780754864215851, + 0.018576987087726593, + 0.011071523651480675, + 0.000287851580651477, + 0.016568664461374283, + -0.0019777475390583277, + -0.006507738959044218, + 0.004399643279612064, + -0.005600131116807461, + 0.005361964926123619, + -0.009758389554917812, + -0.007222238462418318, + 0.0312577448785305, + 0.014779197052121162, + 0.013066972605884075, + -0.008728480897843838, + 0.014367233030498028, + -0.021795453503727913, + -0.009082511998713017, + 0.037952154874801636, + -0.009359300136566162, + -0.03813238814473152, + -0.004727927036583424, + -0.006362907588481903, + 0.045650724321603775, + 0.011367622762918472, + 0.007756503764539957, + 0.01589922420680523, + 0.013021914288401604, + 0.006584981922060251, + -0.00973907858133316, + 0.0037205470725893974, + 0.0032876632176339626, + 0.010859104804694653, + -0.012088559567928314, + 0.006868206895887852, + -0.02082991413772106, + 0.009751953184604645, + 0.006256698630750179, + 0.013800783082842827, + -0.008104098029434681, + 0.0015142883639782667, + -0.002552243648096919, + 0.003646522294729948, + -0.007956048473715782, + -0.023430434986948967, + -0.009745515882968903, + 0.012146491557359695, + 0.01364629715681076, + 0.015564503148198128, + 0.01145774032920599, + -0.017920419573783875, + -0.016851888969540596, + 0.0064594619907438755, + 0.002154763089492917, + -0.006636477541178465, + 0.014367233030498028, + 0.0036207744851708412, + -0.00619554752483964, + 0.0215122289955616, + 0.018692852929234505, + -0.008895840495824814, + -0.0038492856547236443, + 0.002891791984438896, + -0.001700959401205182, + -0.018358131870627403, + -0.016684528440237045, + -0.024138497188687325, + 0.003295709379017353, + 0.004914598073810339, + 0.017096493393182755, + 0.012101433239877224, + -0.014830692671239376, + 0.008162030018866062, + -0.00653992360457778, + 0.0021885570604354143, + -0.016658781096339226, + -0.032390642911195755, + 0.002729259431362152, + 0.024202866479754448, + 0.010305529460310936, + -0.0006119108875282109, + 0.0008545027812942863, + 0.006362907588481903, + 0.0014837129274383187, + 0.03164396062493324, + -0.005484266672283411, + -0.056490518152713776, + -0.00965539924800396, + 0.00028181695961393416, + -0.01645280048251152, + -0.033987004309892654, + -0.002571554621681571, + 0.01694200560450554, + 0.0012922142632305622, + 0.013787909410893917, + 0.004927471745759249, + 0.025348640978336334, + -0.014727701433002949, + -0.0017798118060454726, + 0.021396363154053688, + -0.01510104350745678, + -0.0015086560742929578, + -0.03532588481903076, + -0.014753449708223343, + -0.023237327113747597, + -0.009835632517933846, + 0.00762776518240571, + 0.001548082334920764, + 0.00823927391320467, + -0.0033987003844231367, + -0.009893565438687801, + -0.018525492399930954, + -0.008091224357485771, + -0.016388429328799248, + 0.015603124164044857, + 0.011161641217768192, + 0.01490793563425541, + -0.010073799639940262, + -0.0160923320800066, + -0.007486152462661266, + 0.03051106072962284, + -0.0013372726971283555, + 0.007074188906699419, + -0.01766294240951538, + -0.019027572125196457, + -0.0006758779054507613, + -0.009307804517447948, + 0.01964551769196987, + -0.030717041343450546, + -0.024743568152189255, + -0.0008009957964532077, + -0.03527439013123512, + -0.03205592557787895, + 0.010447141714394093, + 0.0013485373929142952, + 0.0015786576550453901, + 0.010659560561180115, + 0.022426273673772812, + 0.006234169006347656, + -0.006485209334641695, + -0.008619052357971668, + 0.02409987524151802, + -0.026249811053276062, + -0.019465284422039986, + 0.024859433993697166, + -0.018525492399930954, + 0.002923976629972458, + -0.009694020263850689, + -0.002510403748601675, + 0.015010926872491837, + -0.0012696849880740047, + 0.0011996832909062505, + -0.018396753817796707, + -0.022168796509504318, + -0.017765933647751808, + -0.002125796861946583, + 0.00863836333155632, + -0.012223734520375729, + -0.0007756503764539957, + 0.003107429249212146, + 0.00847100280225277, + -0.04946139082312584, + 0.0006742686964571476, + -0.03303433954715729, + -0.03262237459421158, + 0.005593694280833006, + 0.006939013488590717, + -0.011161641217768192, + 0.012384658679366112, + -6.894558464409783e-5, + 0.029197925701737404, + -0.004444702062755823, + -0.024395974352955818, + 0.003210420021787286, + 0.009372173808515072, + 0.02519415318965912, + -0.010601627640426159, + -0.03264812007546425, + 0.00826502125710249, + 0.010073799639940262, + -0.0013179619563743472, + 0.007634202018380165, + -0.006597856059670448, + 0.011972694657742977, + 0.010299092158675194, + -0.0005873700720258057, + -0.026262685656547546, + -0.006707283668220043, + -0.018177896738052368, + 0.006694409996271133, + -0.010556569322943687, + 0.001426585135050118, + 0.0301248449832201, + -0.023636415600776672, + 0.016736024990677834, + 0.0024572990369051695, + -0.007988233119249344, + -0.042020294815301895, + -0.02305709198117256, + 0.0009285275009460747, + -0.016851888969540596, + 0.008213525637984276, + 0.007383161690086126, + -0.023700784891843796, + -0.0350426621735096, + -0.013182837516069412, + 0.01870572566986084, + 0.047298580408096313, + -0.01507529616355896, + -0.015345646999776363, + -0.008992394432425499, + 0.023584920912981033, + 0.01024759653955698, + 0.011670158244669437, + -0.016259690746665, + -0.019632644951343536, + 0.014766323380172253, + -0.01928504928946495, + -0.0037398578133434057, + 0.01038277242332697, + 0.0049821860156953335, + 0.020585309714078903, + -0.0032876632176339626, + -0.025876468047499657, + 0.0064498065039515495, + 0.020340707153081894, + -0.02148648165166378, + 0.028065025806427002, + -0.013401693664491177, + -0.01405826024711132, + 0.005455300211906433, + -0.0025184499099850655, + -0.005133453756570816, + -0.01732822321355343, + -0.016362681984901428, + -0.012700067833065987, + -0.024601956829428673, + 0.013002603314816952, + 0.01293179765343666, + -0.010665996931493282, + -0.0009631260181777179, + 0.013414567336440086, + 0.00774362962692976, + -0.012017752975225449, + 0.021035894751548767, + -0.0009872645605355501, + 0.028476988896727562, + 0.018576987087726593, + -0.002790410304442048, + 0.007293044589459896, + 0.0088443448767066, + 0.0183195099234581, + -0.007782251574099064, + 0.026005206629633904, + 0.0032265123445540667, + 0.017765933647751808, + 0.002907884307205677, + -0.013594801537692547, + -0.013981017284095287, + -0.0024235050659626722, + 0.020791292190551758, + 0.016156701371073723, + 0.000369117857189849, + 0.008657674305140972, + -0.00902457907795906, + -0.02388102002441883, + -0.009282057173550129, + -0.033188823610544205, + -0.00017751853738445789, + 0.01986437290906906, + 0.006247043143957853, + 0.0059960028156638145, + 0.001518311444669962, + 0.010286218486726284, + 0.03506840765476227, + -0.020598184317350388, + -0.015989340841770172, + -0.00744753098115325, + 0.038415614515542984, + 0.00032727778307162225, + 0.01562887243926525, + 0.018770094960927963, + -0.01936229318380356, + 9.348638559458777e-5, + 0.0321846641600132, + 0.01889883354306221, + -0.02973862923681736, + -0.016208196058869362, + -0.02731834165751934, + -0.022271785885095596, + 0.030717041343450546, + 0.00954597070813179, + -0.0013606066349893808, + -0.010749677196145058, + 0.004669994581490755, + -0.0357121005654335, + 0.024009758606553078, + 0.008664111606776714, + 0.012468338012695312, + -0.013556179590523243, + -0.01294467132538557, + 0.007363850716501474, + -0.0049532195553183556, + -0.009616777300834656, + 0.016594411805272102, + -0.012146491557359695, + 0.021602345630526543, + 0.019207807257771492, + -0.0009228952112607658, + -0.0071321213617920876, + 0.01986437290906906, + -0.00447044987231493, + -0.030382322147488594, + -0.0016832578694447875, + 0.019400915130972862, + 0.0026600623968988657, + -0.005139890592545271, + 0.01829376257956028, + 0.024846559390425682, + -0.02470494620501995, + -0.007685697637498379, + -0.029069187119603157, + -0.009063201025128365, + -0.028065025806427002, + -0.03020208701491356, + 0.0004799537709914148, + 0.036381542682647705, + -0.025683360174298286, + 0.01206281129270792, + 0.02572198212146759, + -0.017611447721719742, + -0.0014941729605197906, + -0.01368491817265749, + 0.0024975298438221216, + 0.0036272115539759398, + -0.05376126244664192, + -0.014006765559315681, + -0.017984788864850998, + 0.00017299255705438554, + -0.01570611633360386, + -0.005464955698698759, + 0.008799286559224129, + -0.027627315372228622, + 0.0040552676655352116, + -0.0056548453867435455, + -0.01313777919858694, + -0.010163916274905205, + -0.0087606655433774, + 0.013826531358063221, + 0.010215411894023418, + 0.011792460456490517, + -0.003126739989966154, + -0.011683032847940922, + 0.005806113127619028, + 0.019902994856238365, + 0.011425555683672428, + 0.012487648986279964, + 0.004853446967899799, + -0.007685697637498379, + -0.027163855731487274, + 0.003585371421650052, + -0.031618211418390274, + 0.008528935723006725, + -0.025104036554694176, + 0.015963593497872353, + -0.0017991226632148027, + 0.006504520308226347, + 0.015358520671725273, + 0.028245259076356888, + 0.020263463258743286, + 0.015165412798523903, + 0.0018618827452883124, + 0.00972620490938425, + -0.015783358365297318, + -0.03666476905345917, + 0.004129292443394661, + -0.008902277797460556, + -0.0013662389246746898, + -0.019684139639139175, + 0.008709169924259186, + 0.02327594719827175, + 4.0758859540801495e-5, + 0.0005523692816495895, + -0.015010926872491837, + 0.0031154754105955362, + 0.009449416771531105, + -0.021821200847625732, + -0.003549968358129263, + 0.012300978414714336, + -0.012822370044887066, + -0.00457344064489007, + -0.0022529263515025377, + 0.020611058920621872, + -0.010614501312375069, + -0.008516062051057816, + 0.013569054193794727, + -0.00972620490938425, + 0.02296697534620762, + -0.010196100920438766, + 0.011032902635633945, + -0.008992394432425499, + 0.002042116830125451, + -0.029893115162849426, + -0.025644740089774132, + -0.038389865309000015, + 0.012352473102509975, + -0.007962485775351524, + -0.008779975585639477, + -0.021550850942730904, + 0.011496361345052719, + -0.007009819615632296, + 0.01732822321355343, + 0.020340707153081894, + 0.023224452510476112, + -0.017405465245246887, + 0.029172178357839584, + -0.024370227009058, + -0.00430630799382925, + -0.001324398908764124, + 0.005242881365120411, + -0.009990119375288486, + -0.020611058920621872, + 0.010910600423812866, + 0.01928504928946495, + -0.013375945389270782, + -0.00528794014826417, + 0.006140833720564842, + 0.0011377278715372086, + 0.02170533686876297, + 0.030845779925584793, + -0.028425494208931923, + -0.02770455740392208, + 0.014457350596785545, + -0.02547737956047058, + 0.011386933736503124, + 0.004492979031056166, + -0.010151042602956295, + 0.027472827583551407, + -0.0013944004895165563, + -0.007608454208821058, + -0.00014141136489342898, + 0.008889404125511646, + -0.03020208701491356, + 0.03365228325128555, + -0.004785859491676092, + 0.008689858950674534, + 0.02032783254981041, + 0.024936676025390625, + 0.0035274389665573835, + 0.02148648165166378, + -0.022207416594028473, + -0.01853836514055729, + 0.0018087780335918069, + -0.019207807257771492, + -0.014830692671239376, + -0.009513786062598228, + 0.019207807257771492, + 0.022001435980200768, + -0.0024476435501128435, + -0.018770094960927963, + 0.023842398077249527, + 0.02016047202050686, + -0.0008392150630243123, + 0.008715606294572353, + -0.02025059051811695, + -0.04101613536477089, + 0.009751953184604645, + -0.02492380328476429, + 0.0005974277737550437, + -0.0023285604547709227, + 0.0008287550881505013, + 0.00039365864358842373, + -0.007061314769089222, + -0.00822640024125576, + 0.015937844291329384, + -0.004937127232551575, + -0.014792070724070072, + 0.008219962939620018, + -0.018255140632390976, + 0.022490642964839935, + -0.014920809306204319, + -0.010331276804208755, + -0.005596912931650877, + 0.0023961481638252735, + -0.0070355674251914024, + -0.006462680175900459, + -0.003210420021787286, + -0.011560730636119843, + 0.009990119375288486, + -0.002302812645211816, + 0.00972620490938425, + -0.010060925967991352, + -0.02305709198117256, + 0.01255845557898283, + -0.009449416771531105, + 0.022155921906232834, + 0.0011264631757512689, + -0.004966093227267265, + -0.004901723936200142, + -0.01525553036481142, + 0.025013919919729233, + 0.0016542916418984532, + 0.001700959401205182, + -0.007396035362035036, + 0.017572825774550438, + -0.004377114120870829, + 0.0015617607859894633, + -0.008928025141358376, + 0.06200053542852402, + -0.023018470034003258, + -0.005899448879063129, + 0.005648408085107803, + 0.020314959809184074, + -0.032751113176345825, + 0.009513786062598228, + 0.010833357460796833, + 0.0038235378451645374, + -0.018087780103087425, + -0.011232446879148483, + -0.04431184381246567, + 0.025413010269403458, + 0.01645280048251152, + -0.004447920247912407, + -0.009069638326764107, + -0.002143498510122299, + -0.0012656619073823094, + -0.002170855412259698, + 0.0065817637369036674, + 0.021280499175190926, + -0.0014000327792018652, + -0.024795064702630043, + -0.0035531867761164904, + 0.0006811079219914973, + 0.018692852929234505, + 0.007499026600271463, + 0.012867428362369537, + -0.0007144995033740997, + 0.003540312871336937, + 0.0014346312964335084, + 0.01511391717940569, + -0.011895451694726944, + -0.0010886462405323982, + -0.014611836522817612, + 0.008123409003019333, + 0.009526659734547138, + 0.01405826024711132, + -0.02129337377846241, + 0.023224452510476112, + -0.016542917117476463, + -0.011934072710573673, + 0.03429597616195679, + 0.029455402866005898, + -0.006951887160539627, + -0.0008826643461361527, + -0.020791292190551758, + -0.011374060064554214, + -0.006185892038047314, + 0.01766294240951538, + -0.012770874425768852, + -0.017019249498844147, + -0.0026568439789116383, + 0.017765933647751808, + 0.013234333135187626, + -0.022992722690105438, + 0.0022802832536399364, + -0.001634980901144445, + 0.003076853696256876, + 0.004241938702762127, + -0.007183616515249014, + -0.025812098756432533, + -0.027086611837148666, + -0.021113138645887375, + -0.009893565438687801, + -0.006237387657165527, + -0.007453967817127705, + -0.0009357690578326583, + -0.008406633511185646, + -0.020649679005146027, + -0.015345646999776363, + 0.011683032847940922, + 0.014328612014651299, + -0.015384268946945667, + -0.02104876935482025, + 0.005818986799567938, + 0.018615609034895897, + 0.017843177542090416, + 0.008593305014073849, + 0.002919148886576295, + 0.006276009138673544, + -0.003829974913969636, + 0.006063590291887522, + -0.014547467231750488, + -0.009301367215812206, + -0.0031186938285827637, + -3.525226202327758e-5, + -0.028425494208931923, + 0.009391484782099724, + 0.005413460079580545, + -0.017289601266384125, + 0.021937066689133644, + -0.0014217575080692768, + 0.019375167787075043, + -0.009880691766738892, + 0.021821200847625732, + -0.0013815267011523247, + -0.03262237459421158, + 0.00966827291995287, + -0.0009365736623294652, + 0.005976691842079163, + -0.002505576005205512, + -0.005091613624244928, + 0.011296816170215607, + -0.006420840043574572, + 0.0015553238335996866, + 0.001395205152221024, + -0.0036851437762379646, + 0.004019864369183779, + 0.004895287100225687, + 0.006565671414136887, + -0.014586089178919792, + -0.0004049232811667025, + -0.04099038615822792, + -0.040758658200502396, + 0.013620548881590366, + 0.020044608041644096, + -0.006530268117785454, + -0.014766323380172253, + -0.027987781912088394, + -0.012519833631813526, + -0.004174350760877132, + -0.020598184317350388, + 0.003974806051701307, + -0.02415137179195881, + -0.0050755213014781475, + -0.014161251485347748, + 0.004618498962372541, + 0.0014644021866843104, + 0.0063435970805585384, + -0.00646589882671833, + 0.017984788864850998, + -0.028708718717098236, + 0.001375089748762548, + 0.0018506180495023727, + -0.006102212239056826, + 0.01582198031246662, + -0.002980299759656191, + 0.03365228325128555, + -0.00968114659190178, + 0.015525881201028824, + -0.007724319119006395, + -0.012616387568414211, + 0.011522109620273113, + -0.02855423279106617, + -0.014779197052121162, + -0.020224841311573982, + -0.03617556020617485, + 0.00594128854572773, + 0.01134831178933382, + 0.00968114659190178, + -0.02357204630970955, + 0.013530432246625423, + -0.0019841843750327826, + -0.00011043362610507756, + -0.013221459463238716, + -0.005555072799324989, + 0.003855722490698099, + -0.007125684525817633, + 0.007260859943926334, + 0.013697792775928974, + 0.0011425554985180497, + -0.01631118729710579, + -0.004332055803388357, + -0.03097451850771904, + 0.023816650733351707, + -0.0007519141654483974, + 0.011966257356107235, + 0.017701564356684685, + 0.028271008282899857, + -0.011380496434867382, + -0.0006613947916775942, + -0.0011007154826074839, + -0.025297144427895546, + 0.010447141714394093, + 0.013710666447877884, + -0.018448248505592346, + 0.018190771341323853, + 0.009410795755684376, + 0.024576207622885704, + 0.003916873596608639, + -0.013993890956044197, + 0.019877247512340546, + 0.004885631613433361, + -0.01994161680340767, + -0.040784403681755066, + 0.015757611021399498, + -0.027009369805455208, + 0.0016373947728425264, + 0.03166970983147621, + -0.021473607048392296, + 0.014341485686600208, + 0.0048470101319253445, + 0.0047150528989732265, + 4.22675148001872e-5, + -0.003533876035362482, + 0.01076898816972971, + 0.006964760832488537, + -0.0055196695029735565, + -0.002571554621681571, + 0.0031846724450588226, + 0.0008665720233693719, + 0.01127750612795353, + 0.00014915579231455922, + 0.015912096947431564, + 0.0069969454780220985, + -0.02156372368335724, + -0.026829134672880173, + 0.0010138169163838029, + -0.011728091165423393, + -0.041247863322496414, + -0.017096493393182755, + 0.015860602259635925, + -0.0024428158067166805, + -0.01154141966253519, + 0.034707941114902496, + 0.01223017182201147, + 0.014122629538178444, + 0.019954491406679153, + 0.018551239743828773, + 0.012770874425768852, + 0.008973084390163422, + 0.01653004251420498, + -0.0186542309820652, + -0.006424058694392443, + -0.008825034834444523, + 0.01837100461125374, + 0.0160923320800066, + -0.003743076231330633, + -0.030253583565354347, + 0.01810065470635891, + 0.006292101461440325, + 0.007022693287581205, + 0.013144216500222683, + 0.02385527268052101, + 0.01568036712706089, + 0.012346036732196808, + -0.00041598675306886435, + -0.01952965371310711, + -0.01793329417705536, + -0.0011192216770723462, + 0.028348250314593315, + -0.014392981305718422, + -0.002817767206579447, + -0.006861770059913397, + -0.010505073703825474, + 0.0034695067442953587, + 0.0006557625019922853, + -0.015590250492095947, + -2.036685691564344e-5, + -0.0075955805368721485, + -0.004798733163625002, + -0.0081298453733325, + 0.008779975585639477, + -0.005947725847363472, + -0.00984850712120533, + -0.010215411894023418, + 0.004354584962129593, + -0.00993218645453453, + -0.0028193765319883823, + -0.0095588443800807, + -0.00807191338390112, + 0.027987781912088394, + 0.005909103900194168, + 0.021203255280852318, + 0.005699903704226017, + -0.03339480608701706, + 0.014392981305718422, + -0.020482318475842476, + 0.014843566343188286, + -0.023649290204048157, + 0.0047247083857655525, + 0.013350198045372963, + -0.01506242249161005, + -0.00279201939702034, + 0.004087452311068773, + 0.013993890956044197, + -0.0025844285264611244, + 0.0007579487864859402, + -0.00015338003868237138, + -0.017598573118448257, + 0.015229782089591026, + -0.001313938875682652, + -0.017534203827381134, + -0.00881859753280878, + -0.0018811934860423207, + 0.0026970747858285904, + 0.01570611633360386, + -0.0014241713797673583, + 0.0012761218240484595, + 0.0028901826590299606, + -0.003197546349838376, + -0.011496361345052719, + -0.005503577180206776, + 0.007312355563044548, + -0.00033130086376331747, + 0.00032023739186115563, + -0.003723765490576625, + 0.010897726751863956, + 0.0024910930078476667, + 0.009610339999198914, + -0.002989955246448517, + 0.0031090383417904377, + -0.013594801537692547, + 0.030433816835284233, + 0.01327295508235693, + 0.024769317358732224, + 0.0067909639328718185, + -0.009462290443480015, + 0.011805334128439426, + -0.006044279783964157, + 0.004628154449164867, + -0.01525553036481142, + -0.004068141337484121, + -0.018757222220301628, + -0.007775814738124609, + 0.025413010269403458, + 0.03867309167981148, + 0.011586478911340237, + 0.006881081033498049, + -0.0001650469785090536, + -0.006887517869472504, + 0.001604405464604497, + 0.014019639231264591, + 0.014277116395533085, + -0.014534593559801579, + 0.02821951173245907, + 0.007093499880284071, + 0.02194993942975998, + 0.013414567336440086, + -0.02431873045861721, + -0.016182448714971542, + -0.024408848956227303, + -0.005513232666999102, + -0.01074324082583189, + 0.007125684525817633, + 0.013607675209641457, + -0.0044961972162127495, + 0.008007544092833996, + -0.013543305918574333, + -0.019001824781298637, + -0.004525163676589727, + 0.0001291409571422264, + 0.004225846379995346, + 0.007389598526060581, + -7.377328438451514e-5, + -0.005574383772909641, + -0.00467643141746521, + 0.01134831178933382, + 0.00039365864358842373, + 0.0009277228964492679, + 0.015332773327827454, + 0.017353970557451248, + -0.0025200590025633574, + -0.004447920247912407, + -0.002270627999678254, + 0.03257087990641594, + 0.013942396268248558, + 0.023816650733351707, + 0.001017839997075498, + 0.01367204450070858, + 0.006752342451363802, + -0.020173346623778343, + -0.014676205813884735, + 0.0016180839156731963, + -0.001416125101968646, + 0.001116003142669797, + 0.006739468313753605, + -0.025052541866898537, + 0.0035628422629088163, + 0.002734087174758315, + -0.02855423279106617, + -0.0076985713094472885, + -0.006617166567593813, + -0.01667165569961071, + 0.004399643279612064, + -0.008554683066904545, + 0.0022175232879817486, + -0.014006765559315681, + -0.010254033841192722, + -0.02068830095231533, + -0.0020051044411957264, + -0.0036947992630302906, + -0.02308283932507038, + 0.01862848363816738, + 0.013787909410893917, + 0.0026198315899819136, + 0.01672315038740635, + 0.0023752280976623297, + -0.038415614515542984, + -0.00638865539804101, + 0.004077796824276447, + 0.015152539126574993, + -0.011612226255238056, + -0.009198376908898354, + -0.007795125246047974, + -0.008689858950674534, + 0.02574772946536541, + 0.01667165569961071, + -0.008374448865652084, + 0.004853446967899799, + -0.004731145221740007, + 0.0012286495184525847, + 0.005806113127619028, + 0.015345646999776363, + -0.01386515237390995, + -0.001849008840508759, + 0.009957934729754925, + 0.03051106072962284, + -0.01703212410211563, + 0.016594411805272102, + 0.025683360174298286, + 3.8345009670592844e-5, + -0.006475554313510656, + -0.0025796007830649614, + 0.004045612178742886, + -0.008541809394955635, + 0.0037913531996309757, + 0.006771652959287167, + 0.017598573118448257, + 0.02618544176220894, + 0.005703122355043888, + 0.00877353921532631, + 0.0006276009371504188, + 0.00016062158101703972, + 0.013993890956044197, + 0.021795453503727913, + -0.005069084465503693, + 0.00309777376241982, + 0.009835632517933846, + 0.0059960028156638145, + -0.02971288003027439, + -0.004863102454692125, + 0.017173735424876213, + -0.028245259076356888, + 0.007087062578648329, + 0.009224124252796173, + -0.02126762457191944, + 0.0013018696336075664, + 0.004763329867273569, + -0.009217686951160431, + -0.008696296252310276, + 0.002846733434125781, + 0.0012753172777593136, + 0.020508067682385445, + 0.024988172575831413, + 0.006488427985459566, + 0.017353970557451248, + -0.005172075238078833, + -0.002573163714259863, + -0.0003508128284011036, + 0.013388819992542267, + -0.007067752070724964, + -0.0005024830461479723, + -0.006131178233772516, + -0.009919312782585621, + -0.0020598184783011675, + -0.00663004070520401, + 0.007956048473715782, + -0.011148767545819283, + 0.029069187119603157, + -0.0030945553444325924, + 0.014663332141935825, + -0.0028097210451960564, + -0.016710277646780014, + -0.009925750084221363, + -0.004006990697234869, + 0.015126791782677174, + 0.003672270104289055, + -0.004332055803388357, + 0.007956048473715782, + 0.02695787325501442, + 0.023224452510476112, + 0.004547692835330963, + 0.02296697534620762, + -0.000305553141515702, + -0.017186610028147697, + 0.02511691115796566, + -0.012609951198101044, + -0.0037816979456692934, + -0.01882159151136875, + -0.01079473551362753, + -0.014122629538178444, + -0.017160862684249878, + 0.017559951171278954, + 0.021602345630526543, + -0.006881081033498049, + -0.006971198134124279, + 0.025400135666131973, + -0.028013531118631363, + -7.85506927059032e-5, + 0.012642135843634605, + 0.002857998013496399, + 0.012088559567928314, + 0.008895840495824814, + -0.004879194777458906, + 0.00022187302238307893, + 0.027859043329954147, + -0.002388102002441883, + -0.011695906519889832, + 0.03808089345693588, + -0.008310079574584961, + -0.003025358309969306, + -0.0007265687454491854, + -0.00056041544303298, + 0.026121072471141815, + -0.01259707659482956, + -0.008310079574584961, + -0.0012672711163759232, + -0.006939013488590717, + 0.02819376438856125, + -0.00511092459782958, + -0.01239109504967928, + 0.016027962788939476, + -0.002175683155655861, + 0.008342264220118523, + -0.0041550397872924805, + -0.002322123385965824, + 0.04261249303817749, + 0.009771263226866722, + 0.016169574111700058, + -0.015976466238498688, + -0.007782251574099064, + -0.010865542106330395, + 0.02030208520591259, + 0.021447859704494476, + 0.013775035738945007, + -0.009938623756170273, + -0.0008203065954148769, + -0.011818207800388336, + -0.006906828843057156, + 0.0023913204204291105, + 0.005709559191018343, + -0.004853446967899799, + 0.010337714105844498, + 0.017173735424876213, + -0.00026250616065226495, + 0.0029835181776434183, + 0.01273868978023529, + -0.020199093967676163, + -0.009056763723492622, + 0.002573163714259863, + -0.002251317258924246, + -0.011341875419020653, + -0.023559173569083214, + 0.0034920359030365944, + -0.011264631524682045, + -0.015229782089591026, + -0.019207807257771492, + 0.01623394340276718, + -0.012552018277347088, + 0.01611807942390442, + 0.010331276804208755, + 0.011071523651480675, + 0.03228765353560448, + -0.016800394281744957, + 0.0004055267490912229, + 0.003065589116886258, + -0.0020437261555343866, + 0.0018860212294384837, + 0.01254558190703392, + -0.012281667441129684, + -0.008516062051057816, + 0.010215411894023418, + -0.018448248505592346, + -0.00020376914471853524, + 0.019877247512340546, + 0.021229002624750137, + 0.01145774032920599, + -0.010859104804694653, + -0.006803837604820728, + -0.004554129671305418, + -0.00201797834597528, + -0.011341875419020653, + 0.007061314769089222, + -0.0127515634521842, + -0.01732822321355343, + -0.00762776518240571, + 0.01633693464100361, + 0.011509235017001629, + 0.009539534337818623, + -0.003138004569336772, + -0.008973084390163422, + -0.012790185399353504, + -0.010350587777793407, + -0.0017411902081221342, + -0.0007623741985298693, + -0.00664291437715292, + 0.01259707659482956, + -0.0001339686568826437, + 0.010138168931007385, + -0.007280170917510986, + 0.0031203031539916992, + 0.0080461660400033, + 0.011895451694726944, + -0.00933998916298151, + -0.005902667064219713, + 0.005786802154034376, + -0.003356860252097249, + -0.0013976190239191055, + 0.01058875396847725, + 0.007891679182648659, + 0.014959431253373623, + 0.005783583968877792, + 0.028425494208931923, + 0.004026301205158234, + 0.0033793896436691284, + -0.02247776836156845, + -0.004801951814442873, + 0.003743076231330633, + -0.022760992869734764, + 0.019709886983036995, + 0.015358520671725273, + -0.02291548065841198, + 0.016465673223137856, + -0.005207478534430265, + 0.017920419573783875, + -0.011959820985794067, + 0.019182058051228523, + 0.0040423935279250145, + -0.005503577180206776, + 0.008451692759990692, + -0.0034469773527234793, + 0.015564503148198128, + 0.00646589882671833, + -0.010208974592387676, + -0.019491031765937805, + -0.00040210713632404804, + 0.01846112310886383, + -0.029558394104242325, + -0.005999221000820398, + 0.004628154449164867, + 0.020314959809184074, + -0.006868206895887852, + -0.0004819653113372624, + -0.014161251485347748, + -0.012455464340746403, + -0.0070355674251914024, + -0.011502798646688461, + -0.0044028619304299355, + 0.03815813735127449, + -0.018718600273132324, + -0.009333551861345768, + -0.00046466608182527125, + 0.01364629715681076, + -0.03506840765476227, + 0.026365675032138824, + 0.0022271787747740746, + -0.005358746275305748, + 0.017379717901349068, + -0.01368491817265749, + 0.007576269563287497, + -0.005448863375931978, + 0.004698960576206446, + 0.019928744062781334, + 0.007917427457869053, + 0.003759168554097414, + -0.006681535858660936, + 0.024962425231933594, + 0.0067909639328718185, + -0.01749558188021183, + -0.02046944573521614, + -0.014444476924836636, + 0.0052911583334207535, + -0.014817818999290466, + -0.009372173808515072, + 0.0025892560370266438, + 0.012590640224516392, + -0.02189844474196434, + 0.001614060834981501, + -0.00025224729324691, + 0.009751953184604645, + -0.0034501957707107067, + 0.013530432246625423, + -0.002729259431362152, + -0.0063371602445840836, + 0.003253869479522109, + -0.004892068915069103, + -0.0019310797797515988, + -0.02816801704466343, + -0.0057578361593186855, + 0.011393371038138866, + -0.005149546079337597, + 0.0018377442611381412, + -1.7600987121113576e-5, + 0.014779197052121162, + -0.007762940600514412, + 0.005497140344232321, + -0.025013919919729233, + 0.0002898631209973246, + -0.015796232968568802, + -0.005432771053165197, + -0.007872368209064007, + 0.00255546229891479, + 0.016195321455597878, + -0.0041775694116950035, + -0.002550634555518627, + -0.019220679998397827, + -0.0009405967430211604, + -0.009179065935313702, + -0.033188823610544205, + -0.014920809306204319, + 0.02063680626451969, + -0.026623152196407318, + 0.004438264761120081, + -0.023288821801543236, + 0.004451138898730278, + -0.003086509183049202, + -0.010022304020822048, + -0.01631118729710579, + 0.02409987524151802, + 0.01785605028271675, + 0.0011755448067560792, + -0.015590250492095947, + 0.006491646636277437, + -0.011708780191838741, + 0.00467643141746521, + -0.012700067833065987, + -0.02110026404261589, + -0.0026858102064579725, + 0.013247206807136536, + -0.0047150528989732265, + -0.0029255859553813934, + 0.0061183045618236065, + -0.001649464014917612, + 0.004489760380238295, + -0.0010258861584588885, + 0.024138497188687325, + -0.018036285415291786, + 0.01686476357281208, + 0.005365183111280203, + 0.0021515446715056896, + -0.013124905526638031, + 0.012275230139493942, + -0.008889404125511646, + 0.01570611633360386, + 0.0033343310933560133, + 0.009359300136566162, + 0.022632254287600517, + 0.028322502970695496, + -0.02729259431362152, + -0.027833295986056328, + 0.015834854915738106, + -0.018177896738052368, + 0.013968143612146378, + -0.016208196058869362, + -0.00323938624933362, + -0.0030832907650619745, + -0.0008713997667655349, + 0.011032902635633945, + -0.01647854782640934, + 0.0016687747556716204, + 0.007164306007325649, + 0.0010355415288358927, + -0.020340707153081894, + 0.0015714161563664675, + -0.0062406063079833984, + -0.0061183045618236065, + 0.01887308619916439, + 0.025824973359704018, + 0.03267386928200722, + 0.00031963392393663526, + -0.011670158244669437, + 0.006034624297171831, + 0.018435373902320862, + -0.0002745754027273506, + -0.00046989606926217675, + 0.02129337377846241, + -0.01628543995320797, + 0.02318583056330681, + -0.011148767545819283, + -0.003298928029835224, + 0.008187778294086456, + -0.0071385581977665424, + -0.011946946382522583, + -0.00968114659190178, + -0.001445895992219448, + 0.015963593497872353, + -0.020392201840877533, + 0.008921588771045208, + -0.0023060310631990433, + 0.01364629715681076, + -0.020559562370181084, + -0.009114696644246578, + -0.022104427218437195, + -0.022271785885095596, + -0.028245259076356888, + 0.000580530846491456, + 0.004818044137209654, + -0.02819376438856125, + 0.008329390548169613, + 0.005223570857197046, + 0.011316127143800259, + -0.011534983292222023, + 0.040758658200502396, + 0.013015477918088436, + 0.02288973145186901, + 0.005593694280833006, + -0.021859822794795036, + -0.021203255280852318, + 0.0007885242230258882, + 0.006243824493139982, + -0.021422112360596657, + -0.005989565514028072, + -0.023031344637274742, + 0.035892337560653687, + -0.0366390198469162, + -0.010086673311889172, + -0.005751399323344231, + -0.012140055187046528, + 0.013813657686114311, + 0.008001106791198254, + -0.009507349692285061, + -0.0005917954840697348, + 0.02286398410797119, + 0.013929521664977074, + -0.0065721082501113415, + -0.018010538071393967, + 0.0006014509126543999, + 0.010183227248489857, + -0.04292146489024162, + -0.00030112775857560337, + -0.0011216355487704277, + 0.0029416782781481743, + -0.023044219240546227, + 0.004924253560602665, + 0.02194993942975998, + 0.01708361878991127, + 0.01154141966253519, + 0.0154615119099617, + -0.013311576098203659, + -0.003916873596608639, + -0.0053136879578232765, + 0.016195321455597878, + 0.011734528467059135, + -0.013723540119826794, + -0.01225591916590929, + -0.013182837516069412, + 0.013890900649130344, + 0.011908325366675854, + -0.013581927865743637, + -0.01730247400701046, + 0.009320678189396858, + 0.0011345093371346593, + 0.006176236551254988, + 0.014019639231264591, + -0.014380107633769512, + 0.03100026771426201, + -0.02577347867190838, + 0.002450861968100071, + 0.007569832727313042, + -0.0008114558295346797, + 0.012912486679852009, + 0.005835079122334719, + -0.016259690746665, + 0.0008826643461361527, + -0.014830692671239376, + 0.012294541113078594, + 0.019619770348072052, + 0.005751399323344231, + 0.010022304020822048, + -0.0003148062387481332, + 0.016633033752441406, + 0.020405076444149017, + 0.0019874030258506536, + 0.009970808401703835, + -0.012500522658228874, + 0.005658063571900129, + -0.00215959083288908, + -0.019465284422039986, + -0.03254513069987297, + -0.017212357372045517, + -0.00877353921532631, + -0.011786023154854774, + 0.016169574111700058, + -0.016130952164530754, + 0.0005020807147957385, + -0.015860602259635925, + 0.02013472467660904, + 0.006179455202072859, + 0.010157479904592037, + -0.003926529083400965, + 0.007795125246047974, + 0.010022304020822048, + -0.013826531358063221, + 0.004628154449164867, + 0.011219573207199574, + -0.012075685895979404, + -0.004335273988544941, + 0.019632644951343536, + -0.011077960953116417, + 0.01470195408910513, + 0.024421721696853638, + -0.011464176699519157, + -0.011683032847940922, + -0.008149156346917152, + 0.01365917082875967, + -0.0026986838784068823, + -0.014186999760568142, + -0.004888850264251232, + 0.005619442090392113, + 0.0020308522507548332, + -0.010363461449742317, + -0.004866321105509996, + -0.00023112610506359488, + -0.004657120909541845, + -0.021010147407650948, + -0.015358520671725273, + 0.0051881675608456135, + -0.022606506943702698, + 0.011824645102024078, + 0.0009084120974875987, + 0.004592751152813435, + -0.010228285565972328, + 0.02223316580057144, + -0.0029931736644357443, + 0.01763719506561756, + 0.008413070812821388, + -0.001176349469460547, + -0.010524384677410126, + -0.01313777919858694, + 0.005844734609127045, + 0.012152928858995438, + 0.040346693247556686, + -0.010286218486726284, + -0.002286720322445035, + -0.008219962939620018, + 0.00521391537040472, + 0.0013356634881347418, + -0.005802894476801157, + 0.028734466060996056, + 0.015500133857131004, + -0.0015287714777514338, + -0.01470195408910513, + -0.002119360025972128, + -0.031026015058159828, + -0.005030462983995676, + -0.022052930667996407, + 0.003846067236736417, + 0.011090834625065327, + -0.001247155712917447, + -0.011309690773487091, + -0.01783030293881893, + 0.005452082026749849, + -0.005719214677810669, + 0.02030208520591259, + 0.0015955546405166388, + -0.005957380868494511, + -8.413272007601336e-5, + 0.007653512991964817, + -0.014161251485347748, + 0.007814436219632626, + 0.012725815176963806, + -0.01127750612795353, + 0.0023913204204291105, + -0.00288213649764657, + -0.005793239455670118, + -0.0027775363996624947, + -0.012107870541512966, + -0.021216129884123802, + -0.019825752824544907, + -0.013530432246625423, + 0.013993890956044197, + 0.014457350596785545, + 0.022567884996533394, + -0.015834854915738106, + 0.012815932743251324, + -0.010131731629371643, + -0.013157090172171593, + 0.013710666447877884, + 0.0007631788030266762, + 0.012423279695212841, + -0.006610729731619358, + 0.010286218486726284, + 0.016349809244275093, + 0.009603903628885746, + -0.0031959370244294405, + -0.012719378806650639, + -0.017379717901349068, + 0.02073979750275612, + -0.02349480427801609, + 0.008522498421370983, + 0.013118468225002289, + -0.014071134850382805, + 0.001644636271521449, + 0.006247043143957853, + 0.005027244333177805, + 0.01994161680340767, + 0.021576598286628723, + -0.0014112974749878049, + -0.007260859943926334, + 0.000320840859785676, + 0.014714827761054039, + 0.018499745056033134, + -0.027472827583551407, + -0.006407966371625662, + 0.010228285565972328, + 0.0059960028156638145, + -0.002006713766604662, + -0.02376515418291092, + 0.017727311700582504, + 0.0063371602445840836, + -0.013009040616452694, + -0.004682868253439665, + 0.008644800633192062, + -0.019388040527701378, + 0.027447080239653587, + 0.011110145598649979, + -0.03408999368548393, + -0.0066557880491018295, + 0.02894044853746891, + -0.007608454208821058, + 0.007273733615875244, + -0.01237822137773037, + -0.0331115797162056, + 0.02308283932507038, + 0.003595026908442378, + 0.025927964597940445, + 0.004808388650417328, + 0.020417949184775352, + 0.014650458469986916, + 0.010839794762432575, + -0.006514175795018673, + -0.010839794762432575, + 0.0007985819247551262, + -0.016105204820632935, + -0.004361021798104048, + -0.016298312693834305, + -0.008902277797460556, + -0.033137328922748566, + 0.018718600273132324, + -0.00351456506177783, + 0.01947815716266632, + 0.0025812098756432533, + -0.008747790940105915, + 0.011380496434867382, + -0.02027633786201477, + 0.01774018630385399, + 0.0001624319702386856, + 0.02371365949511528, + -0.008245710283517838, + 0.01826801523566246, + -0.033240318298339844, + 0.004904942587018013, + -0.006504520308226347, + -0.030691293999552727, + 0.0034823804162442684, + 0.013929521664977074, + 0.0012318679364398122, + -0.01664590835571289, + -0.007756503764539957, + 0.000189688362297602, + -0.007112810388207436, + 0.016954880207777023, + 0.0005085176671855152, + 0.004235501401126385, + -0.0025490252301096916, + -0.017585700377821922, + 0.01528127770870924, + 0.025039667263627052, + -0.004206535406410694, + 0.007003382779657841, + 0.008812160231173038, + -0.017353970557451248, + -0.004425391089171171, + 0.002455689711496234, + -0.019001824781298637, + 0.028785962611436844, + -0.007048441097140312, + -0.0015006099129095674, + -0.015950718894600868, + 0.025039667263627052, + -0.012165802530944347, + 0.02695787325501442, + -0.02552887424826622, + 0.005252536851912737, + 0.011329000815749168, + 0.014483097940683365, + -0.0032409955747425556, + 0.00914688128978014, + -0.0073574138805270195, + -0.03385826572775841, + 0.008348701521754265, + 0.014431602321565151, + -0.014302863739430904, + -0.01889883354306221, + 0.004303089343011379, + -0.00673303147777915, + -0.0023864926770329475, + -0.01223017182201147, + -0.02736983634531498, + -0.03493966907262802, + -0.0016213023336604238, + 0.027086611837148666, + 0.017611447721719742, + -0.0033246756065636873, + 0.015937844291329384, + 0.011637973599135876, + -0.004248375538736582, + 0.0012865818571299314, + 0.00022931571584194899, + 0.02453758753836155, + -0.002862825756892562, + 0.015950718894600868, + 0.004312744829803705, + -0.0017427995335310698, + -0.009082511998713017, + -0.01258420292288065, + -0.00805903971195221, + -0.0023752280976623297, + 0.0038106641732156277, + 0.004914598073810339, + -0.02852848544716835, + 0.005117361433804035, + 0.006829585414379835, + -0.02731834165751934, + -0.0066557880491018295, + 0.0034147927071899176, + 0.02134486846625805, + -0.0008665720233693719, + 0.0107561144977808, + -0.01568036712706089, + -0.011425555683672428, + 0.00612152274698019, + -0.011734528467059135, + 0.007614891044795513, + -0.004985404200851917, + -0.015538754872977734, + 0.016362681984901428, + -0.013762162066996098, + 0.017727311700582504, + 0.020186221227049828, + -0.01862848363816738, + -0.004415735602378845, + 0.0277303047478199, + 0.00786593183875084, + 0.013736413791775703, + 0.010125295259058475, + -0.0027533979155123234, + -0.026172567158937454, + 0.0064369323663413525, + 0.0272668469697237, + 0.002623050007969141, + -0.00583829777315259, + -0.003978024236857891, + 0.0031701892148703337, + 0.026005206629633904, + -0.01277731079608202, + -0.015963593497872353, + -0.0008697904995642602, + -0.017585700377821922, + 0.01506242249161005, + 0.0004916207399219275, + 0.013112031854689121, + -0.0019342981977388263, + -0.0078015620820224285, + -0.006533486302942038, + 0.016272565349936485, + 0.013388819992542267, + 0.027138108387589455, + 0.0029271950479596853, + -0.021216129884123802, + -0.025374388322234154, + -0.02434447966516018, + 0.0016478546895086765, + 0.018435373902320862, + -0.015152539126574993, + 0.0020952215418219566, + 0.0032249032519757748, + 0.02073979750275612, + 0.015886349603533745, + -0.007042004261165857, + -0.013581927865743637, + -0.023507677018642426, + 0.004795514512807131, + 0.006269572302699089, + 0.01385227870196104, + 0.022851111367344856, + -0.003117084503173828, + -0.008406633511185646, + -0.0036207744851708412, + -0.033188823610544205, + -0.0301248449832201, + -0.018435373902320862, + 0.002098439959809184, + 0.0002663280756678432, + -0.007544084917753935, + -0.008528935723006725, + -0.01725097931921482, + 0.0102733438834548, + 0.031978681683540344, + 0.0035113466437906027, + -0.027421332895755768, + 0.001196464872919023, + -0.002857998013496399, + 0.013826531358063221, + -0.005947725847363472, + -0.001375894295051694, + 0.009301367215812206, + -0.008110535331070423, + -0.03674200922250748, + 0.011226010508835316, + 0.011695906519889832, + -0.026803387328982353, + 0.0024621267803013325, + -0.01383940503001213, + 0.0030478874687105417, + 0.013388819992542267, + -0.019027572125196457, + 0.007305918261408806, + 0.005043336655944586, + -3.0726296245120466e-5, + -0.0022191323805600405, + -0.024035505950450897, + 0.002674545394256711, + 0.016594411805272102, + -0.01628543995320797, + -0.0042805601842701435, + 0.03684500232338905, + 0.008329390548169613, + 0.00393296591937542, + 0.019761383533477783, + -0.016324060037732124, + -0.020482318475842476, + 0.006427277345210314, + -0.005616223439574242, + 0.02189844474196434, + -0.049693118780851364, + -0.01062093861401081, + 0.024434596300125122, + -0.0058897933922708035, + -0.0046313730999827385, + -0.005149546079337597, + 0.011979131028056145, + 0.01239109504967928, + 0.007589143700897694, + 0.009101822972297668, + 0.008728480897843838, + 0.01972276158630848, + -0.000131152497488074, + -0.008219962939620018, + 0.019053319469094276, + -0.0016124516259878874, + -0.005255755502730608, + -0.02335319109261036, + 0.008380886167287827, + 0.00188441202044487, + -0.014534593559801579, + -0.011824645102024078, + 0.01664590835571289, + 0.006427277345210314, + -0.011734528467059135, + 0.0026471884921193123, + -0.006951887160539627, + 0.010601627640426159, + 0.00323938624933362, + -0.008516062051057816, + -0.004370677284896374, + 0.0005600131116807461, + 0.013775035738945007, + -0.010189664550125599, + -0.012912486679852009, + 0.00646589882671833, + 0.01206281129270792, + 0.016594411805272102, + 0.0001850618136813864, + -0.007318792399019003, + 0.00043529755203053355, + 0.006868206895887852, + -0.011625099927186966, + -0.008960209786891937, + 0.01853836514055729, + 0.01614382676780224, + -0.008110535331070423, + -0.01063381228595972, + -0.029223673045635223, + -0.005371620412915945, + 0.01606658287346363, + 0.008702732622623444, + 0.004538037348538637, + -0.0016357854474335909, + -0.008593305014073849, + 0.014470224268734455, + -0.03174695000052452, + -0.012783748097717762, + 0.028065025806427002, + 0.03468219190835953, + 0.04619142785668373, + 0.010460015386343002, + -0.015577376820147038, + -0.002957770600914955, + -0.039522767066955566, + -0.0008713997667655349, + 0.005017588846385479, + -0.017624320462346077, + 0.0019069412956014276, + 0.010299092158675194, + 0.0020195876713842154, + 0.017534203827381134, + 0.005896230228245258, + -0.00683602225035429, + 0.02385527268052101, + -0.008374448865652084, + -0.022297535091638565, + -0.008181340992450714, + 0.005619442090392113, + 0.023842398077249527, + 0.018203645944595337, + -0.012056374922394753, + -0.004988622851669788, + 0.008850782178342342, + -0.01807490736246109, + -0.00301570282317698, + -0.025953711941838264, + 0.006771652959287167, + -0.005613005254417658, + 0.010865542106330395, + -0.022632254287600517, + -0.026751890778541565, + -0.00224166177213192, + -0.00673303147777915, + 0.008876529522240162, + -0.000152776570757851, + 0.002999610500410199, + -0.0001710815995465964, + -0.007170742843300104, + -0.015422889962792397, + -0.005770709831267595, + 0.015577376820147038, + -0.01669740304350853, + 0.01725097931921482, + 0.014006765559315681, + -0.004187224432826042, + 0.024370227009058, + -0.015783358365297318, + 0.010891289450228214, + 0.021666714921593666, + 0.016105204820632935, + -0.03169545531272888, + -0.011045776307582855, + -0.009481601417064667, + 0.004547692835330963, + 0.005609786603599787, + 0.0034598512575030327, + -0.0005036899819970131, + 0.006662225350737572, + -0.00219016638584435, + 0.00037454901030287147, + 0.012873864732682705, + 0.01904044672846794, + 0.001574634574353695, + -0.0009059982839971781, + 0.0009687583660706878, + 0.01328582875430584, + 0.027035117149353027, + -0.018885960802435875, + -0.0016221069963648915, + 0.004927471745759249, + -0.022954100742936134, + -0.020186221227049828, + 0.004428609739989042, + -0.009397921152412891, + -0.026030955836176872, + -0.03661327064037323, + -0.026442918926477432, + 0.004560566507279873, + 0.0042998711578547955, + -0.0011168078053742647, + 0.01604083552956581, + 0.008696296252310276, + -0.0027163855265825987, + -0.004605625290423632, + 0.022954100742936134, + -0.0064401510171592236, + 0.009359300136566162, + 0.011464176699519157, + -0.012539144605398178, + 0.003142832312732935, + -0.011934072710573673, + 0.006208421662449837, + 0.002157981740310788, + 0.0010822092881426215, + 0.005551854148507118, + 0.020533815026283264, + 0.005638753063976765, + 0.011534983292222023, + 0.0028483427595347166, + 0.01882159151136875, + 0.0014748622197657824, + 0.013015477918088436, + -0.0026825915556401014, + 0.001747627160511911, + -0.0003630832361523062, + -0.015693241730332375, + 0.005361964926123619, + 0.019130563363432884, + 0.005931633524596691, + 0.009069638326764107, + -0.0049500009045004845, + 0.02245202101767063, + 0.010479326359927654, + 0.007112810388207436, + -0.004222627729177475, + 0.019542526453733444, + 0.0277303047478199, + 0.0017814211314544082, + 0.0043738954700529575, + 0.016710277646780014, + 0.027472827583551407, + 0.00856755767017603, + -0.010653123259544373, + -0.0018779750680550933, + -0.015513007529079914, + 0.009488038718700409, + -0.010228285565972328, + 0.009816322475671768, + -0.009648961946368217, + -0.0029014472384005785, + 0.01008023601025343, + 0.015577376820147038, + -0.018306635320186615, + -0.015036674216389656, + 0.010736803524196148, + 0.012938234023749828, + 0.028271008282899857, + 0.009578155353665352, + -0.022490642964839935, + 0.031978681683540344, + 0.004441483411937952, + -0.013034787960350513, + -0.010917037725448608, + 0.00931424181908369, + -0.015204034745693207, + -0.01746983453631401, + 0.000290265423245728, + -0.0014676206046715379, + 0.03094877116382122, + 0.007634202018380165, + -0.015551629476249218, + -0.0005893816123716533, + 0.005133453756570816, + 0.009970808401703835, + -0.02417711913585663, + 0.005622660741209984, + -0.00823927391320467, + -0.009900001809000969, + -0.007885242812335491, + 0.0021515446715056896, + -0.002840296598151326, + -0.017765933647751808, + -0.001717051723971963, + -0.005883356556296349, + -0.011419118382036686, + 0.015912096947431564, + -0.04415735602378845, + -0.01674889773130417, + -0.00825214758515358, + 0.005081958137452602, + -0.013530432246625423, + 0.02236190438270569, + 0.020598184317350388, + 0.02393251471221447, + 0.0074797156266868114, + -0.0056451898999512196, + -0.0309230238199234, + -0.015603124164044857, + 0.015950718894600868, + 0.015010926872491837, + 0.017405465245246887, + 0.004763329867273569, + 0.002835468854755163, + 0.006481991149485111, + -0.006848896387964487, + 0.007087062578648329, + 0.02608245052397251, + -0.005979910492897034, + -0.00993218645453453, + 0.015809105709195137, + -0.012873864732682705, + 0.004760111682116985, + -0.02736983634531498, + 0.006810274440795183, + 0.005040118005126715, + -0.00682314857840538, + -0.009616777300834656, + -0.004354584962129593, + -0.004193661734461784, + 0.006575326435267925, + -0.00084001972572878, + 0.00764063885435462 + ], + "46c5a59c-4489-44df-a1fd-dc958dd937c9": [ + 0.0039022048003971577, + 0.026186920702457428, + -0.005299248732626438, + 0.01019739918410778, + -0.037798359990119934, + -0.016886893659830093, + 0.020816290751099586, + 0.003094910643994808, + -0.0074373031966388226, + 0.01115595456212759, + -0.009395203553140163, + 0.033556241542100906, + 0.02761455811560154, + -0.00047672842629253864, + -0.012359247542917728, + 0.00725375022739172, + -0.01388205960392952, + 0.040082577615976334, + 0.0011616537813097239, + -0.009571959264576435, + 0.05770368501543999, + -0.0299395639449358, + -0.035731688141822815, + -0.008273489773273468, + 0.014181183651089668, + -0.02492244355380535, + 0.002916456200182438, + -0.0031441980972886086, + -0.03690098971128464, + 0.0011659027077257633, + 0.028226401656866074, + -0.0176754929125309, + 0.027532977983355522, + 0.007716032210737467, + 0.0012279368238523602, + -0.06134755536913872, + -0.04698961600661278, + 0.004320298321545124, + -0.003293759888038039, + -0.003285262268036604, + 0.018722424283623695, + 0.0034909097012132406, + 0.0013707004254683852, + 0.013746093958616257, + -0.017702685669064522, + 0.019823744893074036, + 0.008253094740211964, + -0.018871987238526344, + 0.025058409199118614, + 0.019007952883839607, + -0.0021312565077096224, + -0.014181183651089668, + -0.01559522282332182, + 0.023997880518436432, + 0.020789097994565964, + -0.0010962204542011023, + -0.005462407134473324, + 0.05732298269867897, + -0.019198304042220116, + -0.03630274161696434, + -0.004211525898426771, + -0.03771677985787392, + 0.039375558495521545, + 0.0037322482094168663, + 0.010129416361451149, + -0.007403311785310507, + -0.04152381047606468, + 0.01660136692225933, + -0.022284716367721558, + -0.0172268059104681, + 0.020014096051454544, + 0.04522206634283066, + -0.022964542731642723, + 0.024881653487682343, + -0.020612342283129692, + -0.005792122799903154, + 0.023576388135552406, + 0.028770262375473976, + 0.021033836528658867, + 0.01627505011856556, + -0.019239094108343124, + -0.026866748929023743, + 0.02577902562916279, + -0.0006649554125033319, + 0.05541946738958359, + -0.04470539838075638, + -0.03380097821354866, + -0.039674680680036545, + -0.02267901599407196, + -0.030755355954170227, + -0.00017537402163725346, + 0.04201328381896019, + -0.014357938431203365, + -0.034997474402189255, + -0.0042319209314882755, + -0.023277264088392258, + 0.030864128842949867, + -0.00035882098018191755, + 0.01771628111600876, + 0.0008281138143502176, + -0.0004089582071173936, + 0.0452764518558979, + -0.035840459167957306, + 0.013066267594695091, + 0.00035605920129455626, + -0.026676395907998085, + 0.00761405797675252, + 0.011937755160033703, + -0.02547990158200264, + 0.04671768471598625, + 0.02798166312277317, + -0.041333459317684174, + -0.009143668226897717, + -0.0008880235254764557, + -0.022556647658348083, + -0.013576137833297253, + -0.02341322973370552, + -0.044460661709308624, + 0.013073066249489784, + -0.022039979696273804, + 0.03907643258571625, + 0.02364436909556389, + 0.015146536752581596, + 0.00448345672339201, + -0.029558861628174782, + 0.019742164760828018, + 0.0050647081807255745, + 0.03796152025461197, + 0.005241463426500559, + 0.05128611996769905, + -0.007430505007505417, + -0.02610534243285656, + 0.011937755160033703, + 0.0033736396580934525, + 0.018423302099108696, + 0.04761505499482155, + 0.012495213188230991, + 0.039674680680036545, + 0.002890962641686201, + 0.0010350360535085201, + -0.05041594058275223, + -0.036765024065971375, + -0.04157819598913193, + -0.002649624366313219, + -0.016696542501449585, + 0.00735572399571538, + -0.01369850616902113, + 0.018804004415869713, + -0.014018025249242783, + -0.0030796146020293236, + -0.03627554699778557, + -0.022515857592225075, + -0.0014820219948887825, + -0.002297814004123211, + 0.021740855649113655, + 0.006295194383710623, + -0.015364081598818302, + 0.041958898305892944, + 0.020313220098614693, + 0.010843235068023205, + 0.0416053906083107, + -0.06510020047426224, + 0.019116723909974098, + -0.012162098661065102, + 0.01627505011856556, + 0.01229806337505579, + 0.03110886551439762, + -0.007362522184848785, + -0.0495457649230957, + 0.01845049485564232, + 0.018749618902802467, + -0.021047431975603104, + -0.0026547228917479515, + 0.0010086927795782685, + 0.012338853441178799, + -0.003142498666420579, + 0.02809043601155281, + -0.0007571569294668734, + 0.00992546882480383, + -0.03453519195318222, + 0.014561885967850685, + -0.03638432174921036, + 0.02912377193570137, + -0.022733401507139206, + -0.03537817671895027, + -0.005917890928685665, + 0.03255010023713112, + 0.021863223984837532, + 0.02614613249897957, + 0.03434484079480171, + 0.020897870883345604, + -0.019361462444067, + 0.038831695914268494, + 0.041034333407878876, + -0.01336539164185524, + -0.06466510891914368, + 0.004952536895871162, + 0.01331100519746542, + 0.00027341776876710355, + 0.03622116148471832, + 0.006366576533764601, + -0.03736327216029167, + 0.004405276384204626, + 0.043236974626779556, + -0.002415084047242999, + 0.051857173442840576, + -0.035514142364263535, + 0.012284466996788979, + -0.016614962369203568, + 0.03143518418073654, + -0.006002868991345167, + -0.015404871664941311, + 0.007994760759174824, + -0.023331649601459503, + -0.009143668226897717, + 0.015173730440437794, + 0.019361462444067, + -0.018545670434832573, + 0.009130071848630905, + -0.03692818060517311, + -0.007342127617448568, + -0.015105747617781162, + 0.030728163197636604, + -0.04690803587436676, + -0.02746499516069889, + 0.0004805524367839098, + -0.03964748978614807, + 0.03516063466668129, + -0.03393694385886192, + -0.030918514356017113, + 0.028552718460559845, + -0.04282907769083977, + 0.027927277609705925, + -0.04310100898146629, + -0.0014658761210739613, + -0.013922849670052528, + 0.010285777039825916, + -0.009306826628744602, + -0.012637976557016373, + -0.0464729480445385, + 0.0333658903837204, + 0.02069392241537571, + 0.008593008853495121, + 0.012250475585460663, + 0.008103533647954464, + 0.010523715987801552, + -0.019742164760828018, + 0.031054480001330376, + 0.017757071182131767, + 0.0036540681030601263, + 0.03826064243912697, + -0.008932922035455704, + 0.008572613820433617, + -0.021414538845419884, + -0.0027991861570626497, + 0.009102878160774708, + 0.010550908744335175, + -0.04413434490561485, + 0.00828708615154028, + -0.007729628589004278, + -0.0017624505562707782, + 0.016995664685964584, + -0.030347460880875587, + 0.008096734993159771, + 0.042801883071660995, + -0.020775500684976578, + 0.023589983582496643, + -0.046962421387434006, + 0.016873296350240707, + 0.06042299047112465, + 0.009048492647707462, + 0.009435993619263172, + 0.01126472745090723, + -0.002839975757524371, + 0.006400567479431629, + -0.004789378494024277, + -0.009334019385278225, + 0.003987183328717947, + -0.010034240782260895, + 0.01925268955528736, + 0.0026564225554466248, + -0.028933420777320862, + 0.006475348491221666, + 0.028552718460559845, + 0.0025952381547540426, + 0.01907593570649624, + -0.01862724870443344, + 0.019796552136540413, + -0.008960114791989326, + -0.011461877264082432, + -0.0017726479563862085, + -0.022515857592225075, + -0.022543050348758698, + 0.030347460880875587, + -0.006502541713416576, + 0.019742164760828018, + -0.00032100564567372203, + -0.033637821674346924, + -0.038315027952194214, + 0.009565160609781742, + -0.015309695154428482, + -0.0217952411621809, + -0.032414134591817856, + -0.03507905453443527, + -0.0013757991837337613, + -0.02157769724726677, + 0.023141298443078995, + 0.02496323361992836, + 0.0024745690170675516, + -0.025371128693223, + 0.02286936715245247, + -0.014167587272822857, + 0.019007952883839607, + -0.03717292100191116, + 0.003531699301674962, + 0.010605295188724995, + -0.024936040863394737, + 0.001732708071358502, + -0.009252440184354782, + -0.03067377768456936, + 0.03233255445957184, + -0.0069478279910981655, + -0.04345451667904854, + 0.01441232394427061, + -0.025982974097132683, + -0.020014096051454544, + 0.021808838471770287, + -0.005975676234811544, + -0.012841925024986267, + -0.015105747617781162, + -0.03056500479578972, + 0.00442907027900219, + -0.04641856253147125, + -0.002285917056724429, + -0.011407490819692612, + -0.04761505499482155, + -0.059661585837602615, + -0.05006243288516998, + 0.018953565508127213, + 0.00738291721791029, + 0.009517572820186615, + 0.00883774645626545, + -0.024976830929517746, + -0.00566975399851799, + -0.01472504436969757, + -0.02554788440465927, + -0.02562946453690529, + -0.016886893659830093, + 0.02352200075984001, + -0.0074169086292386055, + 0.000801770540419966, + 0.011611438356339931, + -0.0016528285341337323, + -0.012502011843025684, + 0.013263417407870293, + -0.020421991124749184, + -0.01778426393866539, + -0.01947023533284664, + 0.009782705456018448, + -0.011128761805593967, + 0.010482926853001118, + -0.03143518418073654, + -0.022366296499967575, + -0.03078254871070385, + -0.012393238954246044, + -0.005425016395747662, + 0.010550908744335175, + 0.02882464788854122, + 0.018532073125243187, + 0.04837646335363388, + -0.01862724870443344, + -0.001172700896859169, + -0.03067377768456936, + -0.049464184790849686, + 0.008423051796853542, + 0.004959335085004568, + 0.03836941346526146, + -0.03964748978614807, + -0.026757976040244102, + 0.0006173675647005439, + -0.02455533854663372, + -0.0016307340702041984, + -0.05743175372481346, + -0.027804909273982048, + -0.00634278217330575, + -0.006077650003135204, + -0.004442667122930288, + 0.0034127295948565006, + 0.016628559678792953, + 0.014004428870975971, + -0.02942289598286152, + 0.012828328646719456, + -0.005414818879216909, + 0.02006848156452179, + 0.030972901731729507, + 0.0056833503767848015, + -0.010170206427574158, + -0.0026428259443491697, + 0.03543256223201752, + 0.0037186515983194113, + -0.01323622465133667, + -0.012651573866605759, + 0.004459662828594446, + 0.015880750492215157, + 0.012175695039331913, + -0.02923254482448101, + 0.0032427730038762093, + -0.019755762070417404, + 0.022039979696273804, + 0.026757976040244102, + -0.026241308078169823, + -0.001105568022467196, + -0.0022621231619268656, + 0.038097482174634933, + 0.03855976462364197, + 0.006067452486604452, + 0.0010282377479597926, + 0.08413534611463547, + -0.00028977610054425895, + -0.019538216292858124, + -0.007654847577214241, + 0.021033836528658867, + -6.203418161021546e-5, + 0.04035450890660286, + -0.0029351513367146254, + 0.016207067295908928, + 0.007478092797100544, + 0.019932515919208527, + -0.034480806440114975, + -0.008756167255342007, + 0.014371534809470177, + 0.045004524290561676, + 0.011611438356339931, + -0.002710808767005801, + -0.01789303682744503, + -0.040082577615976334, + -0.006896840874105692, + -0.024215424433350563, + 0.006482146680355072, + -0.027900084853172302, + 0.012148501351475716, + 0.07091951370239258, + -0.012542800977826118, + -0.008491034619510174, + 0.032305359840393066, + -0.02533034048974514, + -0.03983784094452858, + 0.0350518599152565, + 0.017213210463523865, + 0.03206062316894531, + -0.009565160609781742, + 0.004881155211478472, + -0.019239094108343124, + -0.010571303777396679, + 0.009211651049554348, + -0.013406180776655674, + 0.01089762058109045, + -0.0043814824894070625, + 0.0009798001265153289, + 3.1973097065929323e-5, + -0.00922524742782116, + -0.004051766823977232, + 0.04407995939254761, + -0.019837340340018272, + 0.024351390078663826, + -0.04046327993273735, + -0.019130321219563484, + -0.016207067295908928, + -0.0004818271263502538, + 0.010489724576473236, + -0.04193170741200447, + -0.0002984863822348416, + -0.05370630323886871, + -0.011665824800729752, + -0.03067377768456936, + -0.01789303682744503, + -0.0056833503767848015, + 0.004500452429056168, + -0.004384881816804409, + -0.0036370723973959684, + 0.004989927634596825, + -0.013344996608793736, + -0.042502760887145996, + -0.018056195229291916, + -0.0016273349756374955, + -0.009748714044690132, + -0.009857486002147198, + -0.019116723909974098, + -0.00870857946574688, + -0.03575887903571129, + 0.022556647658348083, + 0.030429039150476456, + 0.003939595073461533, + 0.002095565665513277, + -0.007967568002641201, + 0.014752238057553768, + -0.019021548330783844, + -0.022502262145280838, + -0.0057105435989797115, + 0.036792218685150146, + 0.027791311964392662, + 0.009469985030591488, + -0.0364387072622776, + 0.0034246265422552824, + 0.017471544444561005, + 0.008069542236626148, + -0.03545975685119629, + -0.01815137080848217, + 0.010591698810458183, + 0.024582531303167343, + -0.028552718460559845, + 0.00585330743342638, + -0.022447874769568443, + 0.0020836684852838516, + 0.000468655489385128, + -0.018871987238526344, + -0.03747204318642616, + 0.0036540681030601263, + 0.01763470284640789, + -0.01847768761217594, + -0.004364486783742905, + 0.02138734608888626, + -0.0016162877436727285, + 0.03393694385886192, + -0.005900895223021507, + 0.010177004151046276, + -0.04625540226697922, + 0.010333364829421043, + 0.0017794461455196142, + 0.007505286019295454, + -0.01441232394427061, + -0.009469985030591488, + -0.019524620845913887, + 0.01862724870443344, + -0.021251380443572998, + 0.0068390560336411, + -0.030320268124341965, + -0.014861010015010834, + 0.03638432174921036, + 0.015839960426092148, + -0.014371534809470177, + 0.06335984170436859, + 0.015132940374314785, + -0.008246297016739845, + 0.017770668491721153, + 0.04005538299679756, + -0.01445311401039362, + 0.05199313908815384, + -0.014099604450166225, + -0.0011013190960511565, + -0.022665418684482574, + -0.011604640632867813, + -0.017362771555781364, + -0.014956185594201088, + 0.017797861248254776, + -0.02828078716993332, + 0.025371128693223, + 0.015581626445055008, + -0.016846103593707085, + -0.02819920890033245, + 0.008953317068517208, + 0.020897870883345604, + 0.017498737201094627, + -0.0022400286979973316, + -0.017729878425598145, + 0.019646989181637764, + -0.03159834071993828, + 0.028987806290388107, + -0.030401846393942833, + 0.001629034522920847, + 0.02819920890033245, + -0.0025969375856220722, + 0.04168696701526642, + 0.0048505631275475025, + -0.03203343227505684, + 0.005132691003382206, + 0.012678766623139381, + 0.0028535721357911825, + 0.026499642059206963, + -0.040708016604185104, + 0.019932515919208527, + -0.020775500684976578, + 0.004816571716219187, + -0.02091146633028984, + -0.018504880368709564, + 0.004544640891253948, + -0.030293073505163193, + -0.002566345501691103, + -0.03203343227505684, + 0.031380798667669296, + -0.01559522282332182, + 0.014153989963233471, + 0.013154645450413227, + 0.006686094682663679, + 0.004738391377031803, + 0.04535803198814392, + -0.02565665729343891, + 0.021142607554793358, + 0.019198304042220116, + 0.00292665371671319, + 0.04163258150219917, + 0.02375314198434353, + 0.01947023533284664, + -0.020571554079651833, + 0.0034977078903466463, + 0.004405276384204626, + 0.02058514952659607, + 0.011930957436561584, + -0.0024677705951035023, + 0.01741715893149376, + -0.029368510469794273, + -0.006162628531455994, + 0.03274045139551163, + -0.029993951320648193, + 0.006247606594115496, + 0.020204447209835052, + 0.005261857993900776, + 0.0370369553565979, + 0.014126797206699848, + 0.007246951572597027, + 0.010075030848383904, + -0.03681940957903862, + 0.03439922630786896, + -0.04361767694354057, + 0.03736327216029167, + -0.007206161972135305, + 0.014861010015010834, + -0.0172268059104681, + 0.0021448528859764338, + 0.016546979546546936, + 0.01726759597659111, + -0.027587363496422768, + -0.013746093958616257, + -0.006533133797347546, + 0.035405371338129044, + -0.00566975399851799, + -0.014589079655706882, + 0.012991487048566341, + -0.004704400431364775, + 0.028443945571780205, + -0.0005396123742684722, + 9.32637121877633e-5, + 0.012060124427080154, + 0.046010665595531464, + -0.01789303682744503, + 0.016193469986319542, + -0.017077244818210602, + -0.005289051216095686, + 0.027709733694791794, + 0.004561636596918106, + -0.002064973348751664, + -0.00554058700799942, + -0.01910312846302986, + 0.0034348240587860346, + 0.0027380017563700676, + -0.014018025249242783, + 0.016506189480423927, + 0.01612548716366291, + -0.005887298379093409, + 0.00738291721791029, + 0.009211651049554348, + 0.003405931405723095, + -0.02095225639641285, + 0.021305765956640244, + 0.022855771705508232, + 0.01498337835073471, + 0.01664215512573719, + 0.03004833683371544, + 0.008402656763792038, + 0.04084398224949837, + -0.010877225548028946, + -0.03453519195318222, + -0.013147846795618534, + -0.004717996809631586, + 0.00761405797675252, + 0.0005226167268119752, + -0.002760095987468958, + -0.006403966806828976, + -0.0037900335155427456, + -0.009211651049554348, + -0.03575887903571129, + -0.020299622789025307, + -0.049436990171670914, + -0.0036234757862985134, + -0.007716032210737467, + -0.0005523591535165906, + 0.004106152802705765, + 0.02513998933136463, + -0.006832257378846407, + -0.02934131771326065, + 0.006009667180478573, + -0.00452764518558979, + 0.008579411543905735, + -0.012128107249736786, + -0.004279508721083403, + 0.005047712475061417, + 0.001278923824429512, + 0.005571179091930389, + 0.0076956371776759624, + -0.0046670096926391125, + -0.02798166312277317, + -0.015404871664941311, + 0.026893941685557365, + -0.043753642588853836, + 0.032604485750198364, + 0.030510619282722473, + -0.01100639346987009, + -0.0012347351294010878, + 0.009728319011628628, + -0.005142888519912958, + -0.02964043989777565, + 0.0021108617074787617, + -0.00883774645626545, + 0.022882964462041855, + 0.0007359122973866761, + 0.0016137384809553623, + -0.004259113688021898, + 0.012087317183613777, + -0.02931412309408188, + 0.026010166853666306, + 0.01476583443582058, + 0.013290610164403915, + 0.006009667180478573, + -0.01888558268547058, + -0.018912777304649353, + 0.0023742944467812777, + -0.012440826743841171, + -0.012522405944764614, + 0.007178969215601683, + -0.0014284857315942645, + 0.015731187537312508, + -0.008423051796853542, + 0.008450244553387165, + 0.004643215797841549, + -0.01918470673263073, + -0.032495710998773575, + -0.007974366657435894, + -0.013378988020122051, + -0.007110986392945051, + -0.045521192252635956, + 0.00023517751833423972, + -0.02942289598286152, + 0.02444656565785408, + -0.035514142364263535, + 0.024324197322130203, + 0.012066922150552273, + 0.01100639346987009, + -0.03543256223201752, + -0.004340692888945341, + 0.024256214499473572, + 0.011679421178996563, + -0.008436648175120354, + 0.044678207486867905, + -0.012372844852507114, + -0.007518882397562265, + -0.008259893395006657, + 0.004959335085004568, + -0.00030294773750938475, + -0.038342222571372986, + 0.04650014266371727, + -0.007994760759174824, + -0.015404871664941311, + -0.023481210693717003, + -0.0045378427021205425, + -0.003094910643994808, + -0.042502760887145996, + -0.025942184031009674, + 0.004616022575646639, + 0.03431764617562294, + -0.024052266031503677, + 0.017104437574744225, + 0.014439517632126808, + 0.004514048807322979, + 0.01944304071366787, + -0.003067717654630542, + 0.009673932567238808, + -0.016247855499386787, + 0.007525680586695671, + -0.026499642059206963, + 0.006427760701626539, + -0.02647244930267334, + -0.05525630712509155, + 0.03287641704082489, + -0.03195185214281082, + 0.024976830929517746, + -0.029912371188402176, + 0.05357033759355545, + -0.008538622409105301, + -0.02923254482448101, + 0.0010248386533930898, + -0.024065863341093063, + 0.005900895223021507, + -0.03350185602903366, + -0.007607259787619114, + 0.006081049330532551, + -0.009157264605164528, + -0.0018321326933801174, + -0.021332958713173866, + -0.026132535189390182, + 0.03214220330119133, + 0.00841625314205885, + -0.0240794587880373, + 0.04495013505220413, + 0.0178250540047884, + -0.009673932567238808, + -0.010115819983184338, + -0.015989521518349648, + -0.024392180144786835, + 0.005503196734935045, + 0.015173730440437794, + -0.03567730262875557, + 0.021931206807494164, + -0.010720865800976753, + 0.018056195229291916, + -0.019211899489164352, + 0.02367156371474266, + -0.020272430032491684, + 0.010788848623633385, + 0.025643059983849525, + 0.010265382006764412, + -0.009395203553140163, + 0.0287974551320076, + -0.030755355954170227, + -0.0013605030253529549, + -0.006828858517110348, + 0.008035550825297832, + 0.03110886551439762, + -0.005295849405229092, + 0.03173430636525154, + 0.012379642575979233, + 0.017607510089874268, + -0.01191056240350008, + 0.005428415723145008, + 0.017063647508621216, + -0.019157513976097107, + -0.005632363725453615, + -0.02242068201303482, + 0.014629868790507317, + -0.012943899258971214, + 0.04171416163444519, + 0.02518077753484249, + -0.025167182087898254, + -0.031462375074625015, + -0.014303551986813545, + -0.006893442012369633, + 0.0299395639449358, + 0.022298313677310944, + 0.016995664685964584, + 0.008429850451648235, + 0.06847213953733444, + 0.00808313861489296, + -0.008035550825297832, + -0.026458851993083954, + 0.017186017706990242, + -0.023318052291870117, + 0.0043168989941477776, + -0.023290859535336494, + 0.019755762070417404, + -0.0008497833041474223, + -0.008232700638473034, + 0.04565715417265892, + -0.0026003369130194187, + -0.03132640942931175, + 0.013120654039084911, + 0.0014182883314788342, + -0.029830792918801308, + 0.0094835814088583, + 0.031380798667669296, + 0.01756672002375126, + 0.04065363109111786, + 0.01227766927331686, + -0.00038495182525366545, + 0.026635607704520226, + 0.03309395909309387, + -0.0056255655363202095, + 0.004265911877155304, + -0.01597592607140541, + 0.011475473642349243, + -0.03121763840317726, + -0.01998690329492092, + -0.01730838604271412, + 0.012733153067529202, + 0.018069792538881302, + 0.004422272089868784, + -0.02058514952659607, + 0.00949717778712511, + 0.013433374464511871, + -0.00878336001187563, + 0.018572863191366196, + -0.011278323829174042, + 0.008885334245860577, + -0.027709733694791794, + -0.009388405829668045, + -0.03195185214281082, + -0.022175945341587067, + -0.007811207789927721, + 0.013916051015257835, + -0.00375604210421443, + 0.013005083426833153, + 0.06232650578022003, + 0.011502666398882866, + -0.0240794587880373, + -0.01507855486124754, + -0.020489973947405815, + 0.0195110235363245, + -0.003271665656939149, + 0.008688184432685375, + 0.008089937269687653, + 0.0035079054068773985, + 0.03274045139551163, + 0.02964043989777565, + 0.029069386422634125, + -0.012372844852507114, + 0.005577977281063795, + 0.04307381436228752, + 0.004109552130103111, + 0.012753547169268131, + 0.011672623455524445, + -0.02492244355380535, + -0.015962328761816025, + 0.015581626445055008, + 0.016655752435326576, + 0.030429039150476456, + 0.02768254093825817, + -0.013419777154922485, + 0.0018321326933801174, + -0.010788848623633385, + -0.021224187687039375, + 0.0032002837397158146, + 0.023073315620422363, + -0.034698352217674255, + -0.00015030542272143066, + -0.002722705714404583, + -0.011359903030097485, + 0.03940274938941002, + -0.007178969215601683, + -0.008021954447031021, + -0.02694832719862461, + -0.0017420557560399175, + -0.025792622938752174, + -0.0005090201739221811, + 0.02412024885416031, + 0.02452814392745495, + -0.01955181360244751, + -0.002625830238685012, + -0.0165333840996027, + -0.017661895602941513, + 0.04378083348274231, + 0.014221972785890102, + 0.014793027192354202, + 0.021400941535830498, + 0.03377378731966019, + -0.019823744893074036, + 0.0053978231735527515, + 0.005499797407537699, + 0.0009475083788856864, + 0.00305582070723176, + 0.021659275516867638, + -0.006944429129362106, + 0.021047431975603104, + -0.010761655867099762, + -0.028933420777320862, + -0.007892787456512451, + 0.004605825524777174, + -0.03268606588244438, + -0.00034309999318793416, + -0.02724745124578476, + 0.0061728255823254585, + 0.016818910837173462, + -0.030021144077181816, + 0.005095300730317831, + 0.010353759862482548, + 0.011849378235638142, + 0.01987813040614128, + -0.014752238057553768, + -0.01763470284640789, + -0.02267901599407196, + 0.002501762006431818, + -0.004782580304890871, + -0.02116980031132698, + 0.010394548997282982, + 0.0018712227465584874, + -0.02713867835700512, + -0.02224392630159855, + -0.00019088256522081792, + 0.027900084853172302, + -0.009048492647707462, + -0.0021312565077096224, + 0.013963638804852962, + 0.021006641909480095, + 0.0035045063123106956, + -0.01331100519746542, + -0.011312315240502357, + 0.024419372901320457, + 0.009517572820186615, + -0.005316243972629309, + -0.022774191573262215, + -0.021808838471770287, + -0.011461877264082432, + -0.023657966405153275, + -0.004089157097041607, + -0.014303551986813545, + 0.004061963874846697, + 0.017321981489658356, + -0.008130726404488087, + 0.007267346605658531, + -0.006624910514801741, + 0.006390370428562164, + 0.00999345164746046, + 0.001245782244950533, + -0.012393238954246044, + -0.016914086416363716, + 0.009402002207934856, + -0.00022859169985167682, + 0.04652733355760574, + 0.01940225251019001, + 0.0066147129982709885, + -0.0265132375061512, + -0.021781645715236664, + 0.025982974097132683, + -0.010353759862482548, + -0.0063087912276387215, + -0.015894345939159393, + -0.0009220148785971105, + -0.009510774165391922, + 0.01947023533284664, + 0.011625035665929317, + -0.0021737455390393734, + 0.033855367451906204, + -0.006091246381402016, + -0.002224732656031847, + -0.008049147203564644, + -0.007294539827853441, + -0.00582611421123147, + 0.0012321857502683997, + -0.014221972785890102, + 0.0033600430469959974, + -0.08413534611463547, + -0.00828708615154028, + 0.01019739918410778, + 0.006040259730070829, + -0.011169551871716976, + -0.010047837160527706, + 0.01586715318262577, + 0.02386191487312317, + -0.020775500684976578, + 0.009694327600300312, + 0.029993951320648193, + -0.029722020030021667, + 0.02554788440465927, + 0.024310600012540817, + 0.008701780810952187, + -0.014697851613163948, + 0.01056450605392456, + -0.0060606542974710464, + 0.02809043601155281, + -0.036765024065971375, + -0.017729878425598145, + -0.014888202771544456, + 0.031353604048490524, + -0.010285777039825916, + 0.01976935751736164, + 0.04225802421569824, + -0.025765428319573402, + 0.01855926588177681, + -0.006825459189713001, + 0.014928992837667465, + 0.01616627722978592, + -0.013079863972961903, + -0.01793382689356804, + -0.011543456465005875, + 0.0102517856284976, + -0.01273995079100132, + 0.035514142364263535, + 0.036574672907590866, + 0.012603985145688057, + 0.017729878425598145, + 0.010170206427574158, + 1.2726832210319117e-5, + -0.010578102432191372, + -0.01575838029384613, + -0.020993046462535858, + -0.012121308594942093, + -0.011298718862235546, + -0.014561885967850685, + 0.028063243255019188, + 0.008851342834532261, + 0.020530764013528824, + -0.005900895223021507, + 0.019646989181637764, + -0.015731187537312508, + -0.015214519575238228, + 0.023617176339030266, + -0.018532073125243187, + -0.034997474402189255, + -0.006186422426253557, + -0.0029793402645736933, + 0.06575283408164978, + 0.003528300207108259, + 0.0014063913840800524, + 0.01866803877055645, + 0.009136869572103024, + 0.008559017442166805, + -0.0003322652482893318, + 0.022026382386684418, + 0.0054420121014118195, + 0.007552873808890581, + -0.006570524536073208, + -0.005499797407537699, + -0.0041401442140340805, + 0.016438208520412445, + 0.021332958713173866, + 0.011638632044196129, + 0.002605435438454151, + 0.004653413314372301, + 0.001533858827315271, + -0.0022536253090947866, + -0.022039979696273804, + -0.017240403220057487, + 0.011461877264082432, + 0.0016604765551164746, + 0.000688324449583888, + -0.008375464007258415, + 0.008409455418586731, + -0.013154645450413227, + -0.010285777039825916, + 0.009877881035208702, + 0.0037662393879145384, + 0.0108228400349617, + 0.012005737982690334, + 0.0010052935685962439, + 0.004480057395994663, + 0.016873296350240707, + 0.019415847957134247, + -0.0036472699139267206, + -0.00962634477764368, + -0.004853961989283562, + -0.0017369569977745414, + -0.01907593570649624, + -0.011353104375302792, + -0.012549599632620811, + 0.005934886634349823, + 0.008531823754310608, + 0.006567125208675861, + 0.021509714424610138, + -0.016846103593707085, + -0.0010273880325257778, + -0.009728319011628628, + 0.0009024698520079255, + -0.015690399333834648, + -0.03369220718741417, + -0.0050273179076612, + 0.023481210693717003, + 0.003501107217743993, + -0.007117784582078457, + -0.002760095987468958, + 0.0064583527855575085, + -0.004976330790668726, + 0.014181183651089668, + -0.013562541455030441, + -0.04242118075489998, + -0.019538216292858124, + 0.008185112848877907, + -0.02654043212532997, + -0.02828078716993332, + -0.003976985812187195, + 0.014357938431203365, + -0.011638632044196129, + 0.00808313861489296, + 4.7189529141178355e-5, + 0.026350079104304314, + -0.0044732592068612576, + -0.004520846996456385, + 0.027804909273982048, + -0.009259238839149475, + -0.002974241506308317, + -0.039022047072649, + -0.012318458408117294, + -0.010748058557510376, + -0.008314279839396477, + -0.002250226214528084, + 0.01579917035996914, + 0.002267221687361598, + 0.0003188811824657023, + -0.009701126255095005, + -0.020204447209835052, + -0.011128761805593967, + -0.008960114791989326, + 0.026961924508213997, + 0.010149811394512653, + 0.010802445001900196, + 0.0038376213051378727, + -0.006580721586942673, + 0.00735572399571538, + 0.03472554311156273, + -0.0026105341967195272, + 0.00243377941660583, + -0.02397068589925766, + -0.0176754929125309, + 0.003613278502598405, + -0.009334019385278225, + 0.016152679920196533, + -0.010843235068023205, + -0.028144821524620056, + 0.0007019210024736822, + -0.028688684105873108, + -0.020150061696767807, + -0.0003312030457891524, + 0.011828983202576637, + -0.0021108617074787617, + 0.010659681633114815, + 0.01944304071366787, + 0.0031611938029527664, + 0.007403311785310507, + -0.01987813040614128, + 0.009524370543658733, + -0.029803598299622536, + -0.013746093958616257, + 0.020571554079651833, + -0.008810552768409252, + 0.005187076982110739, + -0.013786884024739265, + -0.010979199782013893, + 0.007994760759174824, + 0.011373499408364296, + -0.004938940517604351, + -0.016302242875099182, + -0.027424205094575882, + -0.017757071182131767, + -0.013868463225662708, + 0.02481367252767086, + -0.012896311469376087, + -0.004027972929179668, + 0.007321732584387064, + -0.0007805259665474296, + -0.042910657823085785, + 0.00940880086272955, + -0.03502466902136803, + -0.04380802810192108, + 0.007981164380908012, + -0.0014318848261609674, + -0.010149811394512653, + 0.011461877264082432, + -0.007464496418833733, + 0.013317803852260113, + 0.011788194067776203, + -0.018069792538881302, + -0.014901799149811268, + 0.013412979431450367, + 0.019497428089380264, + -0.00848423596471548, + -0.028879035264253616, + 0.00027724180836230516, + 0.007940375246107578, + -0.0032359748147428036, + -0.004959335085004568, + 0.004561636596918106, + -0.004687404725700617, + -0.0028076840098947287, + -0.010985998436808586, + -0.0021754452027380466, + -0.008021954447031021, + -0.025969376787543297, + -0.013093460351228714, + 0.001374099520035088, + -0.00219923909753561, + 0.03497027978301048, + -0.011237533763051033, + 0.011230736039578915, + 0.003820625599473715, + 0.00013522176595870405, + -0.05095980316400528, + -0.007491689175367355, + 0.003688059514388442, + -0.012468020431697369, + -0.005890697706490755, + 0.007872392423450947, + -0.037308886647224426, + -0.037907131016254425, + 0.005805719178169966, + 0.025017619132995605, + 0.05150366574525833, + -0.00556778023019433, + -0.001220288802869618, + -0.01955181360244751, + 0.011060778982937336, + 0.0029521470423787832, + 0.015241713263094425, + -0.023984283208847046, + -0.016954876482486725, + 0.021971996873617172, + 0.0021584494970738888, + 0.013746093958616257, + 0.003190086456015706, + 0.008375464007258415, + 0.014385131187736988, + 0.001869523199275136, + -0.017757071182131767, + 0.009707923978567123, + 0.01929347962141037, + -0.026186920702457428, + 0.025670252740383148, + -0.0059518818743526936, + -0.010938410647213459, + -0.0025629464071244, + 0.0017777465982362628, + -0.004378083627671003, + -0.019755762070417404, + -0.018899179995059967, + -0.025248760357499123, + -0.008762964978814125, + 0.005615368019789457, + 0.02463691681623459, + 0.0072605484165251255, + 0.00036519436980597675, + 0.00691383657976985, + 0.010088627226650715, + 0.003942994400858879, + 0.021264975890517235, + 0.007056600414216518, + 0.023440422490239143, + 0.009905073791742325, + -0.00712458323687315, + -0.00230631185695529, + 0.007369320373982191, + 0.005812517832964659, + -0.003990582190454006, + 0.039593104273080826, + -0.002141453791409731, + 0.009490380063652992, + 0.008239498361945152, + 0.003327751299366355, + -0.021033836528658867, + 0.009306826628744602, + 0.011380298063158989, + 0.013637322001159191, + 0.01292350422590971, + 0.006135435309261084, + 0.0007057450129650533, + -0.040109772235155106, + -0.02087067812681198, + -0.02882464788854122, + -0.0002443126868456602, + 0.022339103743433952, + 0.0022689213510602713, + -0.0004627069865819067, + -0.008300683461129665, + 0.006465150974690914, + 0.028307979926466942, + -0.011896966025233269, + -0.026241308078169823, + -0.00047672842629253864, + 0.03589484468102455, + 0.01292350422590971, + 0.01255639735609293, + 0.02341322973370552, + -0.006930832285434008, + -0.005564380902796984, + 0.02518077753484249, + 0.023114105686545372, + -0.031081672757864, + -0.0042251222766935825, + -0.02021804451942444, + -0.02477288246154785, + 0.014697851613163948, + 0.007974366657435894, + -0.0071041882038116455, + -0.00722655700519681, + 0.0032563696149736643, + -0.041034333407878876, + 0.01471144799143076, + 0.02617332525551319, + 0.026907537132501602, + -0.003953191917389631, + -0.002372595015913248, + 0.009068886749446392, + -0.006808463484048843, + -0.009830293245613575, + 0.01660136692225933, + -0.0030133314430713654, + 0.011380298063158989, + 0.01649259403347969, + -0.002955546136945486, + -0.014425921253859997, + 0.011584245599806309, + -0.0042319209314882755, + -0.01804259791970253, + -0.004085758235305548, + 0.01198534294962883, + 0.004405276384204626, + 0.0019290080526843667, + 0.0008608304779045284, + 0.026445256546139717, + -0.015812767669558525, + -0.017702685669064522, + -0.029042193666100502, + -0.031163252890110016, + -0.04764224961400032, + -0.03222378343343735, + -0.013079863972961903, + 0.03244132548570633, + -0.015581626445055008, + 0.02403866872191429, + 0.046037860214710236, + -0.01862724870443344, + 0.022284716367721558, + -0.020625939592719078, + -0.0023437023628503084, + -0.006268001627177, + -0.029368510469794273, + -0.016220662742853165, + -0.005979075096547604, + 0.0005255909636616707, + 0.0005209171213209629, + 0.0032104812562465668, + 0.01671013794839382, + -0.02720666117966175, + 0.00953796785324812, + -0.0030966103076934814, + -0.011366700753569603, + 0.000551509321667254, + -0.004561636596918106, + 0.013317803852260113, + 0.004065363202244043, + 0.01719961315393448, + -0.0026989115867763758, + -0.019211899489164352, + 0.004177534487098455, + 0.019646989181637764, + 0.021360153332352638, + 0.005088502075523138, + 0.0014590779319405556, + -0.00011206517228856683, + -0.03972906619310379, + 0.02058514952659607, + -0.04193170741200447, + 0.011509465053677559, + -0.023358842357993126, + 0.01612548716366291, + -0.012196090072393417, + 0.010985998436808586, + 0.006070851814001799, + 0.0344536118209362, + 0.023073315620422363, + 0.008932922035455704, + 0.007287741173058748, + 0.01804259791970253, + -0.017607510089874268, + -0.026961924508213997, + 0.013120654039084911, + -0.020000498741865158, + -0.011509465053677559, + -0.009286431595683098, + 0.010625690221786499, + 0.0100546358153224, + -0.0062442077323794365, + 0.003749243915081024, + -0.02809043601155281, + -0.007960769347846508, + 0.007933576591312885, + -0.020965853706002235, + -0.002913057105615735, + 0.011808588169515133, + -0.01038095261901617, + -0.0036948577035218477, + -0.0038444194942712784, + 0.011353104375302792, + -0.004208126571029425, + 0.001586545375175774, + 0.025575077161192894, + -0.005479402374476194, + 0.026893941685557365, + -0.01998690329492092, + 0.002042879117652774, + -0.0008553068619221449, + 0.011536657810211182, + -0.022950947284698486, + -0.021183397620916367, + -0.03358343616127968, + 0.0036234757862985134, + -0.008606605231761932, + -0.003817226504907012, + -0.010210995562374592, + 0.007661646232008934, + 0.0038444194942712784, + 0.02341322973370552, + 0.02231190912425518, + 0.022801384329795837, + 0.008898930624127388, + 0.03714572638273239, + -0.01834172196686268, + 0.0028858641162514687, + 0.004245517309755087, + -0.0011149157071486115, + -0.009701126255095005, + -0.02731543406844139, + 0.006332585122436285, + 0.028063243255019188, + -0.02378033474087715, + -0.0051564848981797695, + 0.012841925024986267, + -0.009531169198453426, + 0.012250475585460663, + 0.01255639735609293, + -0.042285215109586716, + -0.02319568395614624, + 0.011625035665929317, + -0.010306171141564846, + 0.008205506950616837, + 0.007600461598485708, + -0.012264071963727474, + 0.02412024885416031, + -0.007607259787619114, + -0.002073471201583743, + 0.003302257740870118, + 0.005268656183034182, + -0.039783455431461334, + 0.03847818821668625, + -0.014181183651089668, + 0.012461221776902676, + 0.009803099557757378, + 0.027736926451325417, + -0.0033634421415627003, + 0.007348925806581974, + -0.007036205381155014, + -0.012957495637238026, + 0.009435993619263172, + -0.021196994930505753, + -0.002636027755215764, + -0.004208126571029425, + 0.010530514642596245, + 0.019089531153440475, + -0.026812361553311348, + -0.0074169086292386055, + 0.01336539164185524, + 0.010149811394512653, + 0.0056255655363202095, + 0.0016375323757529259, + -0.027845699340105057, + -0.03836941346526146, + 0.008300683461129665, + -0.014167587272822857, + -0.0007631054031662643, + -0.004412074573338032, + -0.00013171641330700368, + -0.018423302099108696, + -0.016329435631632805, + -0.003769638715311885, + 0.021482521668076515, + -0.0028739669360220432, + -0.00181343755684793, + 0.010972402058541775, + -0.008735772222280502, + 0.019796552136540413, + -0.02912377193570137, + -0.009748714044690132, + -0.006352979689836502, + 0.0058669038116931915, + -0.012678766623139381, + -0.014480306766927242, + 0.0019239092944189906, + -0.0011319112963974476, + 0.010911216959357262, + -0.0012066923081874847, + 0.0034518197644501925, + -0.00892612338066101, + -0.012284466996788979, + 0.006594318430870771, + -0.011862974613904953, + 0.007784015033394098, + -0.0021227586548775434, + 0.0005349385901354253, + -0.0012432329822331667, + -0.012495213188230991, + 0.019932515919208527, + 0.0035418968182057142, + 0.004847163800150156, + -0.009605949744582176, + 0.004150341730564833, + -0.005979075096547604, + -0.002454174216836691, + -0.009952661581337452, + 0.06830897927284241, + -0.017729878425598145, + -0.0037900335155427456, + 0.005261857993900776, + 0.015200923196971416, + -0.03660186380147934, + 0.009837090969085693, + -0.001519412500783801, + 0.0030490225180983543, + -0.01601671613752842, + -0.0027278042398393154, + -0.029150964692234993, + 0.02606455236673355, + 0.012576792389154434, + 0.000676002586260438, + -0.00879695639014244, + 0.012236879207193851, + -0.011543456465005875, + 0.007274144794791937, + -0.0019069137051701546, + 0.013895655982196331, + 0.001995291095227003, + -0.02047637850046158, + 0.003366841236129403, + 0.0051258928142488, + 0.0149697819724679, + 0.009320423007011414, + 0.0050273179076612, + -0.006043658591806889, + -0.001424236805178225, + 0.008892131969332695, + 0.008749368600547314, + -0.008409455418586731, + -0.0032427730038762093, + -0.004099354613572359, + 0.009048492647707462, + 0.007335329428315163, + 0.013487759977579117, + -0.0166829451918602, + 0.016764525324106216, + -0.017512334510684013, + 0.002280818298459053, + 0.02367156371474266, + 0.01631583832204342, + -0.014099604450166225, + 0.007654847577214241, + -0.02002769149839878, + -0.008844544179737568, + -0.008946518413722515, + 0.010503320954740047, + -0.009558361954987049, + -0.006016465835273266, + 0.002319908235222101, + 0.024582531303167343, + 0.012060124427080154, + -0.014820219948887825, + -0.004109552130103111, + -0.0012287866557016969, + 0.00709739001467824, + 0.010632487945258617, + -0.005843109916895628, + -0.028172016143798828, + -0.021183397620916367, + -0.024677706882357597, + -0.007043004035949707, + -0.009843889623880386, + -0.019279882311820984, + -0.00032652923255227506, + -0.011917361058294773, + -0.02364436909556389, + -0.0091096768155694, + 0.017621105536818504, + 0.009639941155910492, + -0.030320268124341965, + -0.01586715318262577, + 0.0149697819724679, + 0.005003524012863636, + 0.023467615246772766, + 0.006047057919204235, + -0.0014871207531541586, + 0.001687669544480741, + 0.0025238562375307083, + 0.012100913561880589, + -0.010931611992418766, + -0.00962634477764368, + 0.012121308594942093, + -0.013508155010640621, + -0.02452814392745495, + 0.023426825180649757, + 0.007627654820680618, + -0.01631583832204342, + 0.014752238057553768, + -0.0018270340515300632, + 0.027519382536411285, + -0.018532073125243187, + 0.012916705571115017, + 0.003484111512079835, + -0.03616677597165108, + -0.00104948238003999, + -0.0029453488532453775, + -0.010265382006764412, + -0.0022349299397319555, + 0.0026700191665440798, + 0.006050456780940294, + -0.009986652992665768, + 6.654865137534216e-5, + 0.005788723472505808, + -0.01063928660005331, + 0.0023912901524454355, + 0.014004428870975971, + 0.001326511730439961, + -0.013351795263588428, + -0.005421617534011602, + -0.03638432174921036, + -0.02798166312277317, + 0.015771977603435516, + 0.017757071182131767, + -0.004146942403167486, + -0.013317803852260113, + -0.031163252890110016, + -0.01851847767829895, + -0.0031696916557848454, + -0.02945008873939514, + -0.0016664250288158655, + -0.02069392241537571, + -0.007525680586695671, + -0.024324197322130203, + 0.005829513072967529, + -0.007049802225083113, + 0.0005829513538628817, + -0.002454174216836691, + 0.024718495085835457, + -0.02127857320010662, + 0.00828708615154028, + -0.005003524012863636, + 0.0001344782067462802, + 0.015146536752581596, + -0.0005298398900777102, + 0.021564099937677383, + -0.01100639346987009, + 0.019347865134477615, + 0.009245642460882664, + -0.009837090969085693, + 0.015364081598818302, + -0.009435993619263172, + -0.00988467875868082, + -0.006278198678046465, + -0.024324197322130203, + 0.0027719931676983833, + 0.0031968846451491117, + 0.01638382114470005, + -0.023277264088392258, + 0.004044968634843826, + 0.0012253874447196722, + -0.00486755883321166, + -0.014425921253859997, + -0.00847063958644867, + -0.00230631185695529, + -0.0102517856284976, + 0.003349845763295889, + 0.008089937269687653, + 0.007940375246107578, + -0.023399632424116135, + -0.01100639346987009, + -0.03078254871070385, + 0.029504476115107536, + 0.008021954447031021, + 0.0006619811756536365, + 0.002483066637068987, + 0.021115414798259735, + -0.005727539304643869, + 0.015839960426092148, + 0.0004081084334757179, + -0.030401846393942833, + -0.0051258928142488, + 0.019089531153440475, + -0.017661895602941513, + 0.010149811394512653, + 0.005275454372167587, + 0.023290859535336494, + 0.006645305082201958, + -0.008130726404488087, + 0.02942289598286152, + 0.00800835806876421, + -0.017362771555781364, + -0.026268500834703445, + 0.021332958713173866, + -0.028443945571780205, + 0.0037900335155427456, + 0.03361062705516815, + -0.014385131187736988, + 0.011271525174379349, + 0.00931362435221672, + 0.0025136589538306, + -0.0044256714172661304, + 0.0016273349756374955, + 0.013113855384290218, + 0.005734337493777275, + -0.007144977804273367, + -0.008205506950616837, + -0.0007818005979061127, + 0.003501107217743993, + 0.02452814392745495, + 0.006376773584634066, + 0.009476782754063606, + -0.007505286019295454, + -0.012046528048813343, + -0.022121557965874672, + 0.013508155010640621, + -0.009198054671287537, + -0.029259737581014633, + -0.012692363001406193, + 0.017281193286180496, + -0.00505451112985611, + -0.012937100604176521, + 0.03945713862776756, + 0.010578102432191372, + 0.004340692888945341, + 0.017553122714161873, + 0.032196588814258575, + 0.013372189365327358, + 0.000839585904031992, + 0.02267901599407196, + -0.01121034100651741, + -0.01019739918410778, + -0.01012261863797903, + 0.02565665729343891, + 0.01297789067029953, + -0.0033736396580934525, + -0.026757976040244102, + 0.01976935751736164, + 0.0020275828428566456, + -0.01032656617462635, + 0.0011871472233906388, + 0.01560881920158863, + 0.030293073505163193, + 0.014031621627509594, + 0.001376648899167776, + -0.002695512492209673, + -0.01785224676132202, + -0.001729308976791799, + 0.027709733694791794, + -0.010659681633114815, + 0.005176879931241274, + -0.013542146421968937, + -0.019497428089380264, + 0.003657467197626829, + 0.011536657810211182, + -0.010088627226650715, + -2.2983982489677146e-5, + -0.012066922150552273, + -0.0036540681030601263, + -0.016696542501449585, + -0.007178969215601683, + 0.006624910514801741, + -0.000656457559671253, + -0.022135155275464058, + 0.0043610879220068455, + -0.005571179091930389, + -0.020884273573756218, + -0.011217139661312103, + -0.005057909991592169, + 0.02429700270295143, + 0.005448810290545225, + 0.02013646438717842, + 0.010836436413228512, + -0.024392180144786835, + 0.00917086098343134, + -0.020163657143712044, + 0.015200923196971416, + -0.014561885967850685, + -0.001432734658010304, + -0.0027719931676983833, + -0.0052482616156339645, + -0.004306701477617025, + 0.0014930692268535495, + 0.012413633987307549, + -0.007185767404735088, + 0.0031526959501206875, + 0.01657417230308056, + 0.002921554958447814, + 0.01266517024487257, + 0.005238064099103212, + -0.020775500684976578, + -0.011060778982937336, + -0.0036030809860676527, + -0.0011072675697505474, + 0.011033586226403713, + -0.0010630788747221231, + -0.009605949744582176, + -0.006091246381402016, + -0.014697851613163948, + -0.014221972785890102, + -0.004442667122930288, + 0.006512739229947329, + -0.010850032791495323, + 0.01356933917850256, + -0.01808338798582554, + 0.018436897546052933, + 0.0025289549957960844, + 0.00779761141166091, + -0.010673278011381626, + 0.004819970577955246, + -0.025384726002812386, + 0.02397068589925766, + 0.006132035981863737, + 0.019211899489164352, + 0.01597592607140541, + -0.01113556046038866, + 0.009830293245613575, + 0.001309516024775803, + 0.010319768451154232, + -0.028443945571780205, + -0.006981819402426481, + -0.01789303682744503, + 0.0020411794539541006, + 0.021496117115020752, + 0.03556852787733078, + 0.01012261863797903, + 0.002700611250475049, + 0.0012661770451813936, + -0.004497053101658821, + 0.004415473900735378, + 0.007552873808890581, + 0.019565410912036896, + -0.02246147207915783, + 0.021781645715236664, + 0.009816696867346764, + 0.02599656954407692, + 0.00045803317334502935, + -0.022910157218575478, + 0.0024813672062009573, + -0.01976935751736164, + -0.007478092797100544, + -0.015894345939159393, + 0.008062743581831455, + 0.020122868940234184, + -0.000878675899002701, + 0.011794991791248322, + -0.016737330704927444, + -0.02146892435848713, + -0.01465706154704094, + -0.002890962641686201, + -0.002342002699151635, + 0.016506189480423927, + 0.012196090072393417, + -0.005037515424191952, + 0.006716687232255936, + 0.024582531303167343, + 0.000657732249237597, + -0.003531699301674962, + 0.023739546537399292, + 0.023943493142724037, + 0.005999470129609108, + -0.006699691526591778, + 0.005139489192515612, + 0.03358343616127968, + 0.014820219948887825, + 0.004078959580510855, + 0.012943899258971214, + 0.00026619460550136864, + 0.010890822857618332, + -0.011359903030097485, + -0.013705304823815823, + -0.0002967868058476597, + -0.007362522184848785, + -6.883244350319728e-5, + 2.6635394533514045e-5, + -0.03314834460616112, + 0.01185617595911026, + 0.010299373418092728, + -0.02577902562916279, + -0.011251131072640419, + -0.009347615763545036, + -0.011828983202576637, + 0.006900240201503038, + -0.004320298321545124, + -0.007784015033394098, + -0.013480962254106998, + -0.015826363116502762, + -0.020204447209835052, + -0.005023918580263853, + -0.0027549974620342255, + -0.027111485600471497, + 0.018069792538881302, + 0.014004428870975971, + 0.004955936223268509, + 0.004262513015419245, + 0.007994760759174824, + -0.02912377193570137, + -0.010537312366068363, + 0.008749368600547314, + 0.004320298321545124, + -0.008898930624127388, + -0.010843235068023205, + -0.006288396194577217, + -0.02426980994641781, + 0.02315489389002323, + 0.009898276068270206, + -0.010890822857618332, + -0.004578632302582264, + 0.003660866292193532, + 0.0016171375755220652, + 0.012053325772285461, + 0.0020479776430875063, + -0.009089281782507896, + -0.007960769347846508, + 0.01826014369726181, + 0.03774397447705269, + -0.01502416841685772, + 0.007573268376290798, + 0.031163252890110016, + -0.006879845634102821, + -0.0015117644798010588, + 0.011930957436561584, + -0.0013112155720591545, + -0.011455078609287739, + 0.010931611992418766, + 0.013766488991677761, + 0.01634303294122219, + 0.010448935441672802, + -0.008205506950616837, + 0.012855521403253078, + 0.007811207789927721, + -0.011162753216922283, + 0.013039074838161469, + 0.027165871113538742, + 0.0013503056252375245, + 0.004959335085004568, + 0.0006509340018965304, + 0.0010792247485369444, + -0.028688684105873108, + -0.008660990744829178, + 0.020625939592719078, + -0.014928992837667465, + -0.004983128979802132, + 0.020354008302092552, + 0.0005587324849329889, + 0.0033855366054922342, + 0.013297408819198608, + -0.013426575809717178, + 0.008089937269687653, + 0.004677207209169865, + 0.001454829005524516, + 0.0333658903837204, + 0.02412024885416031, + -0.0012653273297473788, + 0.007267346605658531, + -0.004531044512987137, + -0.008946518413722515, + -0.00634278217330575, + 0.0183689147233963, + -0.005890697706490755, + -0.005241463426500559, + 0.003970187623053789, + -0.013950042426586151, + 0.007403311785310507, + -0.014616272412240505, + 0.010095424950122833, + -0.016438208520412445, + 0.028743069618940353, + 0.00037241753307171166, + 0.01198534294962883, + -0.0023046121932566166, + -0.017512334510684013, + -0.012461221776902676, + 0.006206816993653774, + 0.011053981259465218, + 0.004734992515295744, + 0.00813752505928278, + 0.008144322782754898, + 0.023589983582496643, + 0.01976935751736164, + 0.004384881816804409, + 0.013739296235144138, + -0.0034637167118489742, + -0.017865844070911407, + 0.019266286864876747, + -0.00872897356748581, + -0.010870427824556828, + -0.00986428465694189, + -0.006227212026715279, + -0.015812767669558525, + -0.011060778982937336, + 0.016954876482486725, + 0.01586715318262577, + -0.016356628388166428, + 0.0026241308078169823, + 0.025615867227315903, + -0.015255309641361237, + 0.0014378332998603582, + 0.010081828571856022, + 0.0013834472047165036, + 0.012060124427080154, + 0.01616627722978592, + -0.007525680586695671, + 6.591131386812776e-5, + 0.020354008302092552, + -0.005700346082448959, + 0.005476003512740135, + 0.036139585077762604, + -0.005394424311816692, + 0.0016103392699733377, + -0.007967568002641201, + -0.004643215797841549, + 0.016247855499386787, + -0.010299373418092728, + -0.014330745674669743, + -0.003592883702367544, + -0.0017361072823405266, + 0.015323292464017868, + -0.012454424053430557, + -0.007294539827853441, + 0.010972402058541775, + -0.006584120914340019, + 0.018096985295414925, + -0.0014352839207276702, + 0.009966257959604263, + 0.05210191383957863, + -0.0006420112913474441, + 0.01338578574359417, + -0.012971092015504837, + -0.007002214435487986, + -0.011951352469623089, + 0.030347460880875587, + 0.020489973947405815, + 0.019538216292858124, + -0.009014501236379147, + -0.013814076781272888, + -0.02338603511452675, + -0.005985873285681009, + 0.00813752505928278, + 0.0033124552574008703, + -0.012801134958863258, + -0.0011234134435653687, + 0.011053981259465218, + 0.007777216378599405, + 0.019524620845913887, + 0.00691383657976985, + -0.027193065732717514, + 0.012787538580596447, + 0.009000904858112335, + -0.02054436132311821, + -0.005367231089621782, + -0.02252945490181446, + 0.008756167255342007, + -0.01038095261901617, + -0.012950696982443333, + -0.006580721586942673, + 0.001861025346443057, + -0.013229425996541977, + 0.011944553814828396, + 0.005214270204305649, + 0.007770418189466, + 0.031054480001330376, + -0.012726354412734509, + 0.007246951572597027, + -0.0019375059055164456, + -0.002622431144118309, + 0.0025680451653897762, + 0.0143987275660038, + -0.016356628388166428, + -0.013209030963480473, + 0.006019864697009325, + -0.030211495235562325, + 0.0029504476115107536, + 0.018871987238526344, + 0.02662201039493084, + 0.018287336453795433, + -0.01242723036557436, + -0.00487095769494772, + -0.0030133314430713654, + -0.011516262777149677, + -0.01393644604831934, + 0.0023233075626194477, + -0.009143668226897717, + -0.024949636310338974, + -0.004082358907908201, + 0.014167587272822857, + 0.0002179694129154086, + 0.003864814294502139, + 0.0015355583745986223, + -0.0003622201329562813, + -0.009490380063652992, + 0.0006738781230524182, + 0.010482926853001118, + -0.005985873285681009, + -6.654865137534216e-5, + 0.01414039358496666, + -0.0016094895545393229, + 0.01235244981944561, + 0.002868868410587311, + -0.0011523060966283083, + 0.008225901983678341, + 0.017294788733124733, + 0.0008208906510844827, + -0.0025918390601873398, + -0.008565815165638924, + -0.0059518818743526936, + 5.438613152364269e-5, + 0.014086008071899414, + 0.010482926853001118, + 0.013297408819198608, + 0.010816041380167007, + 0.023997880518436432, + 0.001097070169635117, + 0.00471459748223424, + -0.018831197172403336, + -0.0024031870998442173, + 0.0007622556295245886, + -0.013419777154922485, + 0.017512334510684013, + 0.02444656565785408, + -0.013990831561386585, + 0.014262762852013111, + -0.0083414725959301, + 0.01873602159321308, + -0.01627505011856556, + 0.02996675670146942, + -0.0012415333185344934, + -0.0009492079261690378, + 0.010850032791495323, + 0.00015391698980238289, + 0.016003118827939034, + 0.0037152525037527084, + -0.0113938944414258, + -0.0022230329923331738, + -0.0027719931676983833, + 0.01759391278028488, + -0.02610534243285656, + -0.006754077505320311, + -0.002625830238685012, + 0.006312190089374781, + -0.005418218206614256, + 0.00489815091714263, + -0.012400037609040737, + -0.014752238057553768, + -0.012814732268452644, + -0.020557956770062447, + -0.012597187422215939, + 0.044460661709308624, + -0.00953796785324812, + -0.005846508778631687, + -0.0008225901983678341, + 0.007056600414216518, + -0.012216484174132347, + 0.01976935751736164, + -0.0059314873069524765, + 0.00476898392662406, + 0.0136781120672822, + -0.0003214305324945599, + 0.020449185743927956, + -0.009605949744582176, + 0.0037084543146193027, + 0.018912777304649353, + 0.01185617595911026, + 0.00696822302415967, + -0.009068886749446392, + 0.017512334510684013, + 0.005632363725453615, + -0.01318183820694685, + -0.03200623765587807, + -0.006465150974690914, + 0.007770418189466, + -0.016329435631632805, + -0.006434558890759945, + -0.003596282796934247, + 0.01502416841685772, + -0.0022689213510602713, + 0.005323042627424002, + 0.005999470129609108, + -0.0005098699475638568, + -0.012889512814581394, + 0.02084348350763321, + 0.0013562540989369154, + -0.0008272640407085419, + 0.01419478002935648, + 0.0030320268124341965, + 0.014289955608546734, + -0.023290859535336494, + -0.01152306143194437, + 0.010686874389648438, + -0.009803099557757378, + -0.013712102547287941, + -1.8031338186119683e-5, + 0.023807527497410774, + -0.004476658534258604, + 0.008946518413722515, + -0.01476583443582058, + -0.005112296435981989, + -0.02360358089208603, + -0.006400567479431629, + -0.010047837160527706, + -0.009082484059035778, + 0.013814076781272888, + -0.0013791982783004642, + 0.006230610888451338, + -0.01948383077979088, + -0.011550254188477993, + -0.01529609877616167, + -0.02440577559173107, + -0.012366046197712421, + 0.015092151239514351, + -0.02289655990898609, + -0.0007924229139462113, + -0.022407084703445435, + -0.0004805524367839098, + 0.006849253084510565, + -0.009850687347352505, + -0.014602676033973694, + 0.028253594413399696, + 0.0047315931878983974, + -0.0039633894339203835, + -0.001939205452799797, + -0.00694102980196476, + -0.01414039358496666, + -0.0044256714172661304, + -0.00034076310112141073, + -0.01748513989150524, + -0.010007048025727272, + 0.020857080817222595, + 0.0019511024001985788, + 0.009633143432438374, + 0.006900240201503038, + -0.0017208111239597201, + 0.002141453791409731, + -0.0031000094022601843, + 0.015513643622398376, + -0.009728319011628628, + 0.015962328761816025, + 0.012590388767421246, + 0.0032189791090786457, + -0.010333364829421043, + 0.004347491078078747, + -0.009503976441919804, + 0.01126472745090723, + -0.002498362911865115, + 0.011387095786631107, + 0.015812767669558525, + 0.023399632424116135, + -0.03181588649749756, + -0.018137773498892784, + 0.012671967968344688, + -0.022189540788531303, + -0.0025765427853912115, + -0.006764275021851063, + -0.0016434808494523168, + -4.615385478246026e-5, + 0.00678466958925128, + 0.011645429767668247, + -0.0189671628177166, + 0.004401877522468567, + 0.030347460880875587, + 0.00156700040679425, + -0.013800480403006077, + -0.00448345672339201, + 0.0023318054154515266, + -0.007716032210737467, + 0.014072410762310028, + 0.01851847767829895, + 0.030836936086416245, + 0.0004146942519582808, + -0.007790813222527504, + 0.0028195809572935104, + 0.018029002472758293, + 0.005329840816557407, + 0.01056450605392456, + 0.013011881150305271, + -0.011040383949875832, + 0.034372035413980484, + -0.005360432900488377, + 0.0016332834493368864, + -0.004391680005937815, + -0.011101569049060345, + -0.016111891716718674, + -0.003973586484789848, + -0.007478092797100544, + 0.016451803967356682, + -0.007552873808890581, + 0.014113200828433037, + -0.002449075458571315, + 0.009177659638226032, + -0.01471144799143076, + -0.012488415464758873, + -0.019279882311820984, + -0.016927683725953102, + -0.03401852399110794, + 0.009191256016492844, + 0.004106152802705765, + -0.009089281782507896, + 0.00367786199785769, + 0.009966257959604263, + 0.007532478775829077, + -0.0006007967749610543, + 0.04524926096200943, + 0.011686219833791256, + 0.01959260366857052, + 0.0056969472207129, + -0.01535048522055149, + -0.01715882308781147, + -0.007811207789927721, + 0.010727664455771446, + -0.02326366677880287, + -0.0029623445589095354, + -0.02047637850046158, + 0.02378033474087715, + -0.03268606588244438, + -0.008103533647954464, + -0.0032733650878071785, + -0.015486450865864754, + 0.01752592995762825, + 0.01503776479512453, + -0.015445660799741745, + -0.0031441980972886086, + 0.013372189365327358, + -0.0015992921544238925, + 0.0006802515126764774, + -0.0018933170940726995, + 0.006903639528900385, + -0.0008582810987718403, + -0.03004833683371544, + -0.003402532311156392, + -0.007457698229700327, + -0.003592883702367544, + -0.02698911726474762, + -0.0016536782495677471, + 0.020299622789025307, + 0.001956201158463955, + 0.000867628725245595, + 0.018314529210329056, + -0.008511429652571678, + -0.012801134958863258, + -0.0032954595517367125, + 0.011903763748705387, + 0.017580317333340645, + -0.0132566187530756, + -0.004928743001073599, + -0.00538422679528594, + 0.012134904973208904, + 0.015445660799741745, + -0.010394548997282982, + -0.017172420397400856, + 0.019361462444067, + 0.0015941933961585164, + 0.002506860764697194, + 0.005605170503258705, + -0.013589734211564064, + 0.026241308078169823, + -0.01664215512573719, + -0.008375464007258415, + -0.008144322782754898, + 0.009558361954987049, + 0.0037152525037527084, + 0.005414818879216909, + -0.01255639735609293, + 0.010625690221786499, + -0.013263417407870293, + 0.005849908106029034, + 0.021700065582990646, + 0.001995291095227003, + 0.02673078328371048, + -0.011387095786631107, + 0.01671013794839382, + 0.026499642059206963, + 0.008015155792236328, + 0.009395203553140163, + -0.008762964978814125, + 0.006754077505320311, + 0.0010154909687116742, + -0.017621105536818504, + -0.03796152025461197, + -0.01299828477203846, + -0.004972931928932667, + -0.002505161100998521, + 0.0075936634093523026, + -0.009306826628744602, + 0.008572613820433617, + -0.0028705678414553404, + 0.013290610164403915, + 0.0048505631275475025, + -0.00419792952015996, + -0.0015746484277769923, + 0.0201092716306448, + 0.01711803488433361, + -0.016261452808976173, + 0.0002978490374516696, + 0.01203972939401865, + -0.010115819983184338, + -0.005292450077831745, + 0.015064957551658154, + -0.009775906801223755, + 0.018436897546052933, + 0.03388255834579468, + -0.02323647402226925, + -0.015581626445055008, + -0.010843235068023205, + 0.00691383657976985, + 0.00045973274973221123, + -0.01419478002935648, + 6.442419544328004e-5, + 0.006403966806828976, + -0.0024303800892084837, + -0.0165333840996027, + -0.0012984687928110361, + -0.003942994400858879, + -0.014208376407623291, + -0.023372439667582512, + -0.01671013794839382, + 0.007342127617448568, + -0.021196994930505753, + -0.0024745690170675516, + -0.010394548997282982, + 0.002008887706324458, + -0.0048437644727528095, + 0.012202887795865536, + 0.009089281782507896, + 0.003892007516697049, + 0.015744784846901894, + 0.013746093958616257, + -0.002982739359140396, + 0.002336903940886259, + -0.004976330790668726, + 0.02709788829088211, + 0.03929397836327553, + -0.009456388652324677, + -0.000746959529351443, + -0.012733153067529202, + -0.0017038154182955623, + 3.436311089899391e-5, + -0.013528550043702126, + 0.028172016143798828, + 0.02224392630159855, + -0.0022179344668984413, + -0.0024303800892084837, + -0.001589944469742477, + -0.02768254093825817, + -0.0005757281905971467, + -0.010829637758433819, + 0.011013191193342209, + 0.01819216087460518, + -0.005034116096794605, + -0.0149697819724679, + -0.012903109192848206, + 0.009585555642843246, + -0.02429700270295143, + 0.01323622465133667, + 0.007811207789927721, + -0.007403311785310507, + -0.008681385777890682, + 0.0005396123742684722, + -0.011380298063158989, + 0.00808313861489296, + 0.0014310349943116307, + -0.019415847957134247, + 0.014072410762310028, + -0.006808463484048843, + -0.011713412590324879, + 0.007933576591312885, + -0.010612093843519688, + -0.008293884806334972, + -0.013277013786137104, + -0.020313220098614693, + 0.010931611992418766, + 0.01555443275719881, + 0.02964043989777565, + -0.006149031687527895, + 0.0126855643466115, + -0.02515358477830887, + -0.012821529991924763, + 0.010394548997282982, + 0.013542146421968937, + 0.005520191974937916, + -0.003037125337868929, + 0.00551339378580451, + 0.023589983582496643, + 0.008205506950616837, + 0.006247606594115496, + -0.001343507319688797, + -0.022121557965874672, + 0.017648298293352127, + -0.017104437574744225, + 0.0072809429839253426, + 0.016519786790013313, + -0.01507855486124754, + 0.0058669038116931915, + 0.010720865800976753, + 0.008253094740211964, + 0.012515608221292496, + 0.015921538695693016, + -0.0047859796322882175, + -0.009388405829668045, + -0.007552873808890581, + 0.015064957551658154, + 0.0178250540047884, + -0.022597437724471092, + -0.010489724576473236, + 0.011183148249983788, + 0.013079863972961903, + -0.011244332417845726, + -0.013093460351228714, + 0.015500047244131565, + -0.0005094450898468494, + -0.012141703628003597, + 0.004782580304890871, + 0.012542800977826118, + -0.01318183820694685, + 0.02640446648001671, + 0.01649259403347969, + -0.03268606588244438, + -0.00748489098623395, + 0.03410010412335396, + -0.004378083627671003, + -0.0045548384077847, + 0.001323962351307273, + -0.04625540226697922, + 0.021156204864382744, + 0.016438208520412445, + 0.01972856931388378, + -0.0009560061735101044, + 0.019524620845913887, + 0.014589079655706882, + 0.020258832722902298, + 0.002712508197873831, + -0.0046296194195747375, + 0.0009721520473249257, + -0.02032681554555893, + 0.0008140924037434161, + -0.011903763748705387, + -0.014874606393277645, + -0.031870272010564804, + 0.011189945973455906, + 0.003915801178663969, + 0.014099604450166225, + 0.009272835217416286, + -0.006488945335149765, + 0.011794991791248322, + -0.026866748929023743, + 0.006482146680355072, + -0.0027193063870072365, + 0.015241713263094425, + -0.003072816412895918, + 0.01222328282892704, + -0.027342626824975014, + 0.00725375022739172, + -0.004660211503505707, + -0.027750521898269653, + 0.010884024202823639, + 0.008334673941135406, + 0.002714207861572504, + -0.00725375022739172, + -0.006257804110646248, + 0.0031866873614490032, + -0.01076845359057188, + 0.009714722633361816, + -0.0001197132223751396, + -0.0005702045746147633, + -0.010170206427574158, + -0.013990831561386585, + 0.020408395677804947, + 0.025602269917726517, + -0.006247606594115496, + 0.00028828898211941123, + 0.0022910158149898052, + -0.021224187687039375, + -0.003008232917636633, + 0.003739046398550272, + -0.010754857212305069, + 0.01737636886537075, + -0.012393238954246044, + 0.0009568559471517801, + -0.026975519955158234, + 0.0276553463190794, + -0.01102678757160902, + 0.03110886551439762, + -0.009871082380414009, + 0.004201328381896019, + 0.009232045151293278, + 0.013277013786137104, + -0.005367231089621782, + 0.008620201610028744, + 0.007301338016986847, + -0.021292170509696007, + 0.010489724576473236, + 0.013759691268205643, + -0.00883774645626545, + -0.0240794587880373, + 0.001172700896859169, + -0.0009228646522387862, + -0.017213210463523865, + -0.007110986392945051, + -0.025765428319573402, + -0.02882464788854122, + 0.006873046979308128, + 0.013188636861741543, + 0.01715882308781147, + -0.004106152802705765, + 0.014833817258477211, + -0.0108228400349617, + -0.000832362740766257, + 0.0016536782495677471, + 0.0014233869733288884, + 0.012454424053430557, + -0.0033821375109255314, + 0.005333239678293467, + 0.008089937269687653, + -0.008545421063899994, + 0.0040109772235155106, + -0.0028110831044614315, + 0.000898220925591886, + -0.006845854222774506, + 0.0053128451108932495, + 0.0027974864933639765, + -0.036792218685150146, + 0.004541242029517889, + 0.0008718776516616344, + -0.02985798567533493, + -0.0038444194942712784, + 0.004500452429056168, + 0.0034433219116181135, + -0.006696292199194431, + 0.0026938130613416433, + -0.00961274839937687, + 0.004065363202244043, + -0.014113200828433037, + -0.016628559678792953, + -0.00841625314205885, + -0.0016213865019381046, + -0.007559671998023987, + 0.015404871664941311, + -0.01696847192943096, + 0.007947172969579697, + 0.01664215512573719, + -0.017689088359475136, + -0.004486855585128069, + 0.021414538845419884, + 0.005999470129609108, + 0.014480306766927242, + 0.013066267594695091, + -0.0009976455476135015, + -0.020258832722902298, + 0.0011973446235060692, + 0.02194480411708355, + 0.0063019925728440285, + -0.00828708615154028, + 0.0049797301180660725, + 0.00120329309720546, + 0.020829888060688972, + -0.0005757281905971467, + -0.017906634137034416, + 0.007090591825544834, + -0.017172420397400856, + 0.005051111802458763, + 0.029912371188402176, + 0.020789097994565964, + 0.0005417368374764919, + -0.0029521470423787832, + 0.006016465835273266, + 0.022135155275464058, + 0.004480057395994663, + 0.023698756471276283, + 0.008348271250724792, + -0.027261046692728996, + -0.02095225639641285, + -0.012984688393771648, + -0.0006798265967518091, + 0.030755355954170227, + -0.014793027192354202, + -0.0035079054068773985, + 0.000574878416955471, + 0.010306171141564846, + 0.004303302615880966, + -0.021496117115020752, + -0.007675242610275745, + -0.027329029515385628, + 0.005119094625115395, + 0.015160134062170982, + 0.014344342052936554, + 0.0183689147233963, + -0.0008710278780199587, + -0.012420432642102242, + 0.0017862444510683417, + -0.03896766155958176, + -0.022882964462041855, + -0.01690048910677433, + 0.00212105899117887, + -0.008110331371426582, + 5.9006826631957665e-5, + -0.01465706154704094, + -0.006607914809137583, + 0.009286431595683098, + 0.025683850049972534, + -0.0034875106066465378, + -0.0201092716306448, + -0.008198709227144718, + 0.0012075420236214995, + 0.010183802805840969, + -0.0012542800977826118, + -0.005751333199441433, + 0.018436897546052933, + -0.004938940517604351, + -0.030755355954170227, + 0.013032276183366776, + 0.026200518012046814, + -0.02694832719862461, + -0.006281598005443811, + -0.025860603898763657, + 0.008191910572350025, + 0.010442136786878109, + -0.006502541713416576, + 0.0027363020926713943, + -0.0011242632754147053, + 0.0049797301180660725, + -0.004860760178416967, + -0.017770668491721153, + -0.0037288491148501635, + 0.013555742800235748, + -0.021088222041726112, + -0.004493653774261475, + 0.03151676058769226, + 0.011679421178996563, + 0.01152306143194437, + 0.01642461121082306, + -0.015663204714655876, + -0.026336483657360077, + 0.009823494590818882, + -0.007770418189466, + 0.018205756321549416, + -0.04669049382209778, + -0.0036676647141575813, + 0.028552718460559845, + -0.013270216062664986, + -0.010598497465252876, + -0.008660990744829178, + 0.006461752112954855, + 0.009218448773026466, + 0.0036030809860676527, + 0.013759691268205643, + 0.010442136786878109, + 0.01705005206167698, + -0.006352979689836502, + -0.013249821029603481, + 0.021373748779296875, + 0.0004174560308456421, + 0.0025952381547540426, + -0.027600960806012154, + 0.012332054786384106, + 0.0004000354674644768, + -0.022298313677310944, + -0.0024048867635428905, + 0.008932922035455704, + 0.02440577559173107, + -0.011373499408364296, + 0.011842579580843449, + -0.006183023098856211, + 0.0005689298850484192, + -0.00468400539830327, + -0.004221723414957523, + -0.006505940575152636, + 0.0015126141952350736, + 0.0096807312220335, + -0.002025883411988616, + -0.020639536902308464, + 0.007940375246107578, + 0.0004123573307879269, + -0.0006802515126764774, + -0.004109552130103111, + -0.002972541842609644, + -0.009673932567238808, + 0.010272180661559105, + -0.006026662886142731, + 0.0037288491148501635, + 0.027641750872135162, + 0.009891477413475513, + -0.013589734211564064, + -0.016914086416363716, + -0.026554027572274208, + -0.0069750212132930756, + 0.004503851290792227, + 0.0019426045473665, + 0.0036234757862985134, + 0.013079863972961903, + -0.0096807312220335, + 0.0036506690084934235, + -0.01998690329492092, + -0.0054895998910069466, + 0.020925063639879227, + 0.04065363109111786, + 0.05294489860534668, + 0.00621361518278718, + -0.004055165685713291, + 0.0032835626043379307, + -0.0373360775411129, + 0.0019375059055164456, + 0.0017539527034386992, + -0.007342127617448568, + -0.011325911618769169, + 0.006689494010061026, + -0.005115695297718048, + 0.01476583443582058, + 1.4087813724472653e-5, + -0.00847063958644867, + 0.020993046462535858, + -0.013875260949134827, + -0.016030311584472656, + -0.010972402058541775, + 0.0044256714172661304, + 0.015064957551658154, + 0.00986428465694189, + -0.011502666398882866, + 0.001114065875299275, + 0.021196994930505753, + -0.0053978231735527515, + -0.016696542501449585, + -0.026132535189390182, + 0.002709109103307128, + -0.01235244981944561, + 0.01907593570649624, + -0.02360358089208603, + -0.01685970090329647, + 0.0006985218496993184, + -0.004772382788360119, + 0.009048492647707462, + 0.01128512155264616, + 0.0017913432093337178, + -0.008389060385525227, + 0.0034637167118489742, + -0.012060124427080154, + -0.01349455863237381, + 0.018681636080145836, + -0.02326366677880287, + 0.01840970478951931, + 0.012644775211811066, + 0.004690803587436676, + 0.009857486002147198, + -0.01834172196686268, + 0.005095300730317831, + 0.005720741115510464, + 0.013705304823815823, + -0.020082078874111176, + -0.0020615742541849613, + -0.011828983202576637, + 0.011162753216922283, + 0.002518757712095976, + -0.0007843499770388007, + 0.00442907027900219, + -0.004928743001073599, + -0.009062089025974274, + 0.005030717235058546, + 0.0063733747228980064, + 0.02095225639641285, + -0.004507250618189573, + 0.005819316022098064, + 0.005584775935858488, + 0.002782190451398492, + 0.028307979926466942, + -0.023916300386190414, + -0.0033855366054922342, + -0.0012219883501529694, + -0.01922549679875374, + -0.015268906019628048, + 0.0009628044790588319, + -0.005975676234811544, + -0.015187326818704605, + -0.022488664835691452, + -0.025167182087898254, + 0.004089157097041607, + 0.014289955608546734, + -0.006149031687527895, + 0.005448810290545225, + 0.006767673883587122, + -0.0058669038116931915, + 0.0071993637830019, + 0.020639536902308464, + -0.015948733314871788, + -0.0033787384163588285, + 0.01877681165933609, + -0.017770668491721153, + 0.004191131331026554, + -0.0044562635011971, + 0.002107462612912059, + 0.00936801079660654, + -0.0010316368425264955, + 0.002426980994641781, + 0.013888858258724213, + 0.007206161972135305, + 0.010557707399129868, + -0.009435993619263172, + 0.02552069164812565, + 0.008511429652571678, + 0.0036404714919626713, + 0.006580721586942673, + -0.002211136044934392, + 0.0023437023628503084, + -0.008253094740211964, + 0.0183689147233963, + 0.005102098919451237, + -0.005261857993900776, + 0.009748714044690132, + -0.010476128198206425, + 0.022026382386684418, + 0.02654043212532997, + 0.004690803587436676, + -0.007777216378599405, + 0.021808838471770287, + 0.02401147596538067, + 0.008314279839396477, + 0.006747279316186905, + 0.021754451096057892, + 0.012651573866605759, + 0.019579006358981133, + -0.005465805996209383, + 0.002588439965620637, + -0.0038478185888379812, + 0.020517166703939438, + -0.014072410762310028, + 0.00029721169266849756, + -0.0028552717994898558, + 0.0008417103090323508, + 0.006318988278508186, + 0.003786634188145399, + -0.02013646438717842, + -0.01998690329492092, + 0.021591292694211006, + -0.010075030848383904, + 0.022325506433844566, + 0.015663204714655876, + -0.016478996723890305, + 0.039565909653902054, + 0.004259113688021898, + -0.01972856931388378, + -0.024364985525608063, + 0.007246951572597027, + -0.0252215676009655, + -0.02364436909556389, + -0.0036506690084934235, + 0.001757351798005402, + 0.03472554311156273, + 0.00922524742782116, + -0.010265382006764412, + 0.0032988586463034153, + 0.004500452429056168, + 0.004833567421883345, + -0.021523311734199524, + 0.02058514952659607, + -0.004724794998764992, + 0.001454829005524516, + -0.012937100604176521, + 0.010618891566991806, + 0.005200673826038837, + -0.013596532866358757, + 0.004452864173799753, + -0.008015155792236328, + -0.009558361954987049, + 0.007396513596177101, + -0.029803598299622536, + -0.009048492647707462, + -0.005295849405229092, + -0.0015678501222282648, + -0.014616272412240505, + 0.02422902174293995, + 0.020897870883345604, + 0.022488664835691452, + 0.004571834113448858, + -0.014004428870975971, + -0.030211495235562325, + -0.015418468043208122, + 0.026812361553311348, + 0.011638632044196129, + 0.009327221661806107, + -0.0030541210435330868, + -0.008225901983678341, + -0.00458543049171567, + 0.004894751589745283, + 0.002285917056724429, + 0.02746499516069889, + -0.009062089025974274, + -0.00821230560541153, + 0.00904169399291277, + -0.00414354307577014, + -0.00942919496446848, + -0.023997880518436432, + 0.001796441851183772, + 0.012128107249736786, + -0.008762964978814125, + -0.011971746571362019, + 0.00048352667363360524, + -0.012529204599559307, + -0.004167336970567703, + -0.00953796785324812, + 0.004578632302582264 + ], + "8c101002-338f-44e2-aa49-eea62c29b026": [ + -0.00395575724542141, + 0.017477571964263916, + -0.00890967808663845, + 0.013679113239049911, + -0.04349973425269127, + -0.007895979098975658, + 0.010144759900867939, + 0.008140664547681808, + -0.009282533079385757, + 0.020056486129760742, + 0.01243626419454813, + 0.051360759884119034, + 0.01194689143449068, + -0.001540939323604107, + -0.036601919680833817, + 0.017617393285036087, + -0.025152169167995453, + 0.034830860793590546, + -0.0017079472308978438, + -0.004015957936644554, + 0.08078522235155106, + -0.040330469608306885, + -0.05232396721839905, + 0.028072865679860115, + 0.015116157941520214, + -0.016063831746578217, + 0.00298283901065588, + -0.0005646226927638054, + -0.04088975116610527, + 0.0012816886883229017, + 0.03240730240941048, + -0.004373277071863413, + 0.026115376502275467, + -0.0005505435401573777, + -0.004233456216752529, + -0.0581342913210392, + -0.043655093759298325, + 0.023272357881069183, + -0.003299377392977476, + 0.007286205887794495, + -0.002431324450299144, + 0.020491482689976692, + 0.0003374142397660762, + 0.002413847018033266, + -0.03170819953083992, + 0.01158957276493311, + -0.007659060414880514, + -0.006792949978262186, + 0.01552785187959671, + -0.0037421423476189375, + -0.00024128759105224162, + -0.015294818207621574, + 0.0028333086520433426, + 0.0285233985632658, + 0.02495020627975464, + -0.011177878826856613, + -0.005915187299251556, + 0.06611959636211395, + -0.012902332469820976, + -0.05903535708785057, + -0.012560548260807991, + -0.04148010537028313, + 0.027637867256999016, + -0.006004516966640949, + 0.005682153161615133, + -0.01699596829712391, + -0.03420943394303322, + 0.007169688586145639, + -0.04132474958896637, + -0.003499398473650217, + 0.011131271719932556, + 0.05331824719905853, + -0.027606796473264694, + 0.02729608491063118, + -0.024748243391513824, + 0.02495020627975464, + 0.04670007526874542, + 0.0203205905854702, + 0.02198290266096592, + 0.02975071221590042, + -0.029331250116229057, + -0.015791958197951317, + 0.024608422070741653, + 0.01551231648772955, + 0.0613967701792717, + -0.012319746427237988, + -0.04359294846653938, + -0.04623400419950485, + -0.015737583860754967, + -0.03713013231754303, + 0.0038450658321380615, + 0.03734762966632843, + 0.00025391028611920774, + -0.025214310735464096, + -0.02277521789073944, + -0.010432168841362, + 0.03464443236589432, + -0.017337752506136894, + 0.0060744271613657475, + -0.03018570877611637, + -0.004443187266588211, + 0.03309087082743645, + -0.04536401107907295, + -0.0051306383684277534, + 0.011193414218723774, + -0.008521287702023983, + 0.007794997189193964, + 0.012001266703009605, + -0.0397711880505085, + 0.053349319845438004, + 0.025121096521615982, + -0.04306473955512047, + 0.0028352506924420595, + 0.0068007176741957664, + -0.039211906492710114, + -0.028445720672607422, + -0.03778262808918953, + -0.06099284440279007, + 0.013585899956524372, + -0.018565066158771515, + 0.035048358142375946, + 0.010851630941033363, + 0.0014506385196000338, + -0.003359577851369977, + -0.02350539341568947, + 0.03511049970984459, + 3.765567089430988e-5, + 0.02490359917283058, + -0.0028333086520433426, + 0.05434359982609749, + -0.020848801359534264, + -0.019248632714152336, + 0.00016700790729373693, + -0.0060744271613657475, + 0.02263539843261242, + 0.035265855491161346, + 0.02067790925502777, + 0.036570850759744644, + -0.01164394710212946, + 0.012319746427237988, + -0.05042862147092819, + -0.043903663754463196, + -0.04315795376896858, + 0.028445720672607422, + -0.004528633318841457, + 0.014906426891684532, + -0.021175049245357513, + 0.01576865464448929, + -0.033525869250297546, + 0.003835356095805764, + -0.039646901190280914, + -0.016390079632401466, + 0.022278079763054848, + 0.027793224900960922, + 0.04244331270456314, + -0.0039596413262188435, + -0.004695641342550516, + 0.029269108548760414, + 0.006225899793207645, + 0.019279703497886658, + 0.03206551820039749, + -0.06848101317882538, + 0.0006423007580451667, + -0.01612597331404686, + 0.04931005835533142, + 0.01991666480898857, + 0.043189022690057755, + 0.00414024293422699, + -0.04952755570411682, + 0.01525597833096981, + 0.011713857762515545, + -0.03127320110797882, + 0.016063831746578217, + -0.004691757261753082, + 0.012110015377402306, + -0.01424616388976574, + 0.03386764973402023, + 0.025245381519198418, + 0.018502922728657722, + -0.04328223690390587, + 0.010766184888780117, + -0.02996821142733097, + 0.004951979033648968, + -0.023816104978322983, + -0.01525597833096981, + 0.01659204252064228, + 0.025214310735464096, + 0.013399472460150719, + 0.0037537941243499517, + 0.018207745626568794, + 0.013174206018447876, + -0.013640274293720722, + 0.02563377283513546, + 0.04464937001466751, + -0.006206480320543051, + -0.05984320864081383, + -0.0007389129023067653, + 0.002274026395753026, + -0.004917023703455925, + 0.01985452137887478, + 0.0021439155098050833, + -0.02089540846645832, + 0.0029731292743235826, + 0.05993642285466194, + -0.020491482689976692, + 0.032158732414245605, + -0.027668939903378487, + 0.0070648230612277985, + 0.014611250720918179, + -0.008575662039220333, + 0.011713857762515545, + -0.03800012543797493, + 0.017042575404047966, + -0.0008311556885018945, + -0.023520927876234055, + 0.0036450447514653206, + 0.0008680527680553496, + -0.010059313848614693, + 0.020273983478546143, + -0.03138195350766182, + -0.0025556094478815794, + -0.023163609206676483, + 0.02704751491546631, + -0.04287831112742424, + -0.03250051662325859, + -0.0014564644079655409, + -0.04160438850522041, + 0.018409710377454758, + -0.038124412298202515, + -0.011822606436908245, + 0.04980719834566116, + -0.019761309027671814, + 0.0384661965072155, + -0.0343337208032608, + 0.00015438522677868605, + -0.005289878696203232, + 0.015108390711247921, + 0.006404559127986431, + -0.004361625295132399, + -0.05484073981642723, + 0.013671345077455044, + 0.03209659084677696, + -0.022169329226017, + 0.004792738705873489, + 0.002782817929983139, + 0.026224127039313316, + -0.017399894073605537, + 0.05785464867949486, + 0.035234786570072174, + -0.011675018817186356, + 0.009057266637682915, + 0.01514722965657711, + 0.002242955146357417, + -0.030884811654686928, + -0.013655809685587883, + 0.04061011224985123, + 0.027389297261834145, + -0.041915103793144226, + 0.0014050026657059789, + -0.0033110289368778467, + 0.0033362742979079485, + 0.024453066289424896, + -0.01314313430339098, + -0.008762089535593987, + 0.04312688112258911, + -0.042971525341272354, + 0.03576299548149109, + -0.033463723957538605, + 0.033215153962373734, + 0.05717108026146889, + -0.006983261089771986, + 0.013174206018447876, + -0.008878606371581554, + 0.0020176887046545744, + -0.007060939446091652, + -0.0033401583787053823, + -0.00012841161515098065, + 0.013531524688005447, + 0.004035377409309149, + 0.01724453829228878, + -0.004361625295132399, + -0.03072945587337017, + -0.0032042216043919325, + 0.014657857827842236, + -0.0018400000408291817, + -0.0007520210929214954, + -0.009406818076968193, + 0.011744928546249866, + -0.0309158843010664, + -0.011247788555920124, + -0.016312401741743088, + -0.012304211035370827, + 0.007569730747491121, + 0.01006708201020956, + -0.0034100685734301805, + 0.010152528062462807, + -0.005561751779168844, + -0.021749867126345634, + -0.030061423778533936, + -0.0032372348941862583, + -0.0033129709772765636, + -0.03159945085644722, + -0.011107968166470528, + -0.04486687108874321, + 0.03268694505095482, + -0.0057520633563399315, + 0.016871683299541473, + 0.023924855515360832, + -0.018782565370202065, + -0.00717745628207922, + 0.036384422332048416, + -0.006796833593398333, + -5.652902473229915e-5, + -0.03949154540896416, + 0.0038567176088690758, + 0.012444031424820423, + -0.022355757653713226, + -0.0005136464606039226, + -0.014836517162621021, + -0.025260917842388153, + 0.024561814963817596, + 0.0076396409422159195, + -0.07587596774101257, + 0.00311877578496933, + 0.009694227017462254, + -0.03719227388501167, + 0.02582019940018654, + -0.0005131609505042434, + -0.024142352864146233, + -0.014253931120038033, + -0.033898722380399704, + 0.0005117044784128666, + -0.04862648993730545, + 0.0011476939544081688, + -0.016576506197452545, + -0.05232396721839905, + -0.06058891862630844, + -0.038093339651823044, + 0.027684474363923073, + -0.012987778522074223, + -0.017524179071187973, + -0.0027245592791587114, + -0.011620643548667431, + -0.023691819980740547, + -0.003293551504611969, + -0.015970617532730103, + -0.00638902373611927, + -0.002200232120230794, + 0.021563440561294556, + -0.017415430396795273, + 0.001039915601722896, + 0.0012370237382128835, + 0.02650376781821251, + -0.012669297866523266, + 0.019901128485798836, + 0.008878606371581554, + -0.004136358853429556, + -0.014114110730588436, + 0.0047888546250760555, + 0.0016021108021959662, + 0.0048354617320001125, + -0.04968291148543358, + -0.028616612777113914, + -0.021610047668218613, + -0.0069599575363099575, + 5.1552771765273064e-5, + -0.004668453708291054, + 0.0049675144255161285, + 0.028212685137987137, + 0.03396086394786835, + -0.02241789922118187, + 0.003757677972316742, + -0.02010309137403965, + -0.04244331270456314, + -0.005293762311339378, + -0.003757677972316742, + 0.03663299232721329, + -0.009973867796361446, + -0.02335003763437271, + 0.0026527070440351963, + -0.0011049709282815456, + 0.0037402005400508642, + -0.03430264815688133, + -0.009865118190646172, + 0.010937076061964035, + -0.005604474805295467, + -0.033246226608753204, + -0.024126818403601646, + 0.011667250655591488, + 0.0040819840505719185, + -0.05238610878586769, + 0.03018570877611637, + -0.020398268476128578, + 0.015760885551571846, + -0.00569380447268486, + 0.02310146763920784, + -0.006152105517685413, + 0.0028896252624690533, + 0.03337051346898079, + 0.009305836632847786, + -0.016188116744160652, + -0.024064674973487854, + -0.006373487878590822, + -0.0024701636284589767, + 0.012412960641086102, + -0.022899502888321877, + 0.004847113508731127, + -0.013383936136960983, + 0.024173425510525703, + 0.013306258246302605, + -0.02509002573788166, + 0.0055734035558998585, + 0.010898237116634846, + 0.022480042651295662, + 0.04148010537028313, + 0.006334648933261633, + 0.005697688553482294, + 0.09023088216781616, + -0.006583218928426504, + -0.009865118190646172, + 0.009725297801196575, + 0.02122165635228157, + -0.00835039559751749, + 0.04092082381248474, + -0.01397429034113884, + 0.022169329226017, + 0.013228580355644226, + 0.006777414120733738, + -0.045208655297756195, + -0.012055641040205956, + 0.027793224900960922, + 0.047383639961481094, + -0.0021788706071674824, + -0.01735328696668148, + -0.01963702403008938, + -0.03865262120962143, + 0.010028243064880371, + -0.04791185259819031, + 0.0036139735020697117, + -0.008832000195980072, + 0.008466912433505058, + 0.056456442922353745, + -0.014269466511905193, + 0.001001076539978385, + -0.0002891081676352769, + -0.028290363028645515, + -0.02968856878578663, + 0.02661251649260521, + 0.009173783473670483, + 0.021485762670636177, + -0.016359006986021996, + 0.011954659596085548, + -0.04045475274324417, + -0.013073224574327469, + 0.002062353538349271, + -0.028647683560848236, + 0.001697266474366188, + -0.02299271710216999, + 0.009810743853449821, + 0.0028954511508345604, + -0.02650376781821251, + -9.278891957364976e-5, + 0.037254415452480316, + 0.0033129709772765636, + 0.024639492854475975, + -0.04862648993730545, + -0.02631733939051628, + 0.0032702479511499405, + 0.006866743788123131, + 0.011814839206635952, + -0.044556159526109695, + -0.012980010360479355, + -0.045208655297756195, + 0.0029789551626890898, + -0.03784476965665817, + -0.0146423215046525, + -0.012513942085206509, + -0.011395377106964588, + 0.010300115682184696, + -0.018192211166024208, + -0.01457241177558899, + -0.012630458921194077, + -0.045208655297756195, + -0.0020837150514125824, + 0.01514722965657711, + -0.016001688316464424, + -0.0022584907710552216, + -0.013881076127290726, + 0.01680953986942768, + -0.04862648993730545, + 0.013616970740258694, + 0.03355693817138672, + 0.007794997189193964, + 0.019932201132178307, + -0.007391071412712336, + -0.0033382163383066654, + -0.016421150416135788, + -0.02588234283030033, + 0.011511893942952156, + -0.004660686012357473, + 0.0382486954331398, + 0.0006641477230004966, + -0.013391704298555851, + 0.01220322959125042, + 0.022247007116675377, + 0.025074491277337074, + -0.03170819953083992, + -0.020848801359534264, + 0.025121096521615982, + 0.013220812194049358, + -0.03127320110797882, + 0.002031282288953662, + -0.030278922989964485, + -0.0026973721105605364, + 0.004792738705873489, + -0.0068745119497179985, + -0.036601919680833817, + 0.0017749445978552103, + 0.006532728206366301, + -0.015900706872344017, + -0.024592885747551918, + 0.00039154617115855217, + -0.0005461741238832474, + 0.00922039058059454, + -0.0062220157124102116, + 0.014168485067784786, + -0.02672126702964306, + 0.008358163759112358, + 0.009942797012627125, + -0.012956706807017326, + -0.0057792505249381065, + 0.008995124138891697, + -0.011325467377901077, + 0.015558923594653606, + 0.011480823159217834, + -0.0017254247795790434, + -0.013943218626081944, + -0.006629826035350561, + 0.008428073488175869, + 0.02288396842777729, + -0.008226110599935055, + 0.047849711030721664, + 0.0006617202889174223, + -0.025540558621287346, + 0.017011504620313644, + 0.05188896879553795, + -0.021749867126345634, + 0.043033666908741, + -0.010323419235646725, + 0.0071852244436740875, + -0.019838986918330193, + 0.009880654513835907, + -0.019466131925582886, + -0.005709340330213308, + 0.024701636284589767, + -0.041635461151599884, + 0.02549395151436329, + 0.025695916265249252, + -0.03108677640557289, + -0.03930511698126793, + 0.0179281048476696, + 0.018627207726240158, + 0.030636241659522057, + -0.0051461742259562016, + -0.027824295684695244, + 0.011822606436908245, + -0.028072865679860115, + 0.02571145072579384, + -0.0054685380309820175, + 0.030092496424913406, + 0.03843512386083603, + -0.007806648965924978, + 0.05129861831665039, + -0.0006578363827429712, + -0.014619017951190472, + 0.022215936332941055, + 0.012677066028118134, + -0.007670712191611528, + -0.006078311242163181, + -0.04169760271906853, + 0.013119830749928951, + -0.03883904963731766, + 0.01254501286894083, + -0.02212272211909294, + -0.0274359043687582, + 0.02849232777953148, + -0.047414712607860565, + -0.007771694101393223, + -0.021703261882066727, + 0.032376233488321304, + -0.0060744271613657475, + 0.03178587928414345, + 0.014556875452399254, + 0.019326310604810715, + 0.0030391556210815907, + 0.026379482820630074, + -0.028119472786784172, + 0.019714701920747757, + 0.02089540846645832, + 0.00335375196300447, + 0.01980791613459587, + 0.031723737716674805, + 0.008412538096308708, + -0.013671345077455044, + 0.010269044898450375, + 0.010789488442242146, + 0.017524179071187973, + 0.006610406097024679, + -0.003421720350161195, + -0.0003925171331502497, + -0.011776000261306763, + -0.012280907481908798, + 0.03187909349799156, + 0.003025562036782503, + 0.008109593763947487, + 0.008047451265156269, + 0.017632927745580673, + 0.027233941480517387, + 0.014619017951190472, + -0.00760080199688673, + 0.0033498681150376797, + -0.03793798387050629, + 0.035048358142375946, + -0.027466975152492523, + 0.039646901190280914, + 0.012117783538997173, + 0.005095683503895998, + -0.023955926299095154, + -0.0032663641031831503, + 0.013904379680752754, + 0.005519028753042221, + -0.02111290767788887, + -0.0052044326439499855, + -0.013306258246302605, + 0.03908761963248253, + 0.0033382163383066654, + -0.009018427692353725, + -0.005122870672494173, + -0.016623113304376602, + 0.015644369646906853, + -0.0032275249250233173, + 0.010144759900867939, + 0.01280135102570057, + 0.06167641282081604, + -0.015807492658495903, + 0.01963702403008938, + -0.018161140382289886, + 0.007103662006556988, + 0.03815548121929169, + -0.0036100896541029215, + -0.00447425851598382, + -0.0028294248040765524, + 0.005491841584444046, + 0.007802764885127544, + 0.012047872878611088, + -0.010168063454329967, + 0.0014855936169624329, + -0.000390332454117015, + 0.001781741390004754, + 0.001730279647745192, + 0.03278015926480293, + -0.005491841584444046, + -0.006544379983097315, + 0.028911788016557693, + 0.03340158239006996, + 0.020631304010748863, + 0.014292770065367222, + 0.032811228185892105, + 0.022076115012168884, + 0.044556159526109695, + -0.013554828241467476, + -0.005386976059526205, + 0.023085931316018105, + -0.0028935091104358435, + -0.012809118255972862, + 0.0029440000653266907, + 0.0008384379907511175, + -0.01659204252064228, + 0.004878184758126736, + -0.002266258466988802, + -0.030543029308319092, + -0.024204496294260025, + -0.031475167721509933, + 0.0020118628162890673, + -0.010284580290317535, + -0.004819925874471664, + -0.021718796342611313, + 0.028476791456341743, + -0.013601435348391533, + -0.020615767687559128, + 0.0197768434882164, + -0.0006481266464106739, + -0.014704464003443718, + -0.004276179242879152, + 0.005981213878840208, + 0.013508221134543419, + -0.006882279645651579, + -0.012381888926029205, + 0.009228157810866833, + -0.0042878310196101665, + -0.03908761963248253, + -0.01865828037261963, + 0.012444031424820423, + -0.022759683430194855, + 0.033463723957538605, + 0.024530744180083275, + -0.0207555890083313, + -0.0048937201499938965, + 0.0003359577676746994, + -0.0013826701324433088, + -0.024126818403601646, + -0.008653339929878712, + -0.014059736393392086, + 0.014976337552070618, + 0.01216439064592123, + -0.008591197431087494, + -0.013407239690423012, + 0.0036508706398308277, + -0.033215153962373734, + 0.03551442548632622, + -0.008870839141309261, + 0.026767872273921967, + -0.0010088443523272872, + -0.03532800078392029, + -0.02961089089512825, + 0.020491482689976692, + -0.00038984697312116623, + -0.00862226914614439, + -0.002503176685422659, + -0.0010632190387696028, + 0.02672126702964306, + -0.009430121630430222, + 0.003765445901080966, + -0.002806121250614524, + -0.01258385181427002, + -0.03015463799238205, + -0.0015195778105407953, + 0.0024818151723593473, + -0.005880231969058514, + -0.0360737107694149, + 0.006757994648069143, + -0.024701636284589767, + 0.033898722380399704, + -0.02495020627975464, + 0.021501297131180763, + 0.000534522405359894, + 0.021268263459205627, + -0.0178193561732769, + -0.003992654383182526, + 0.007899862714111805, + 0.02549395151436329, + -0.021610047668218613, + 0.05011790990829468, + -0.00890967808663845, + -0.008109593763947487, + 0.013655809685587883, + 0.013492685742676258, + 0.006117150187492371, + -0.018378637731075287, + 0.0408586822450161, + -0.019357383251190186, + 0.004575239960104227, + -0.0136092035099864, + -0.0071968757547438145, + -0.0022293615620583296, + -0.0380311980843544, + -0.026985371485352516, + -0.003660580376163125, + 0.028647683560848236, + -0.029300179332494736, + 0.018829170614480972, + 0.020507019013166428, + 0.01547347754240036, + 0.015232675708830357, + -0.003938279580324888, + 0.008055218495428562, + -3.0297493140096776e-5, + -0.004501445684581995, + -0.02574252150952816, + 0.006159873213618994, + -0.034395862370729446, + -0.05962570756673813, + 0.017990248277783394, + -0.042101528495550156, + 0.024530744180083275, + -0.01691829040646553, + 0.04160438850522041, + -0.024142352864146233, + -0.01620365120470524, + -0.010237973183393478, + -0.0095077995210886, + 0.009111640974879265, + -0.01811453327536583, + -0.010517614893615246, + 0.03309087082743645, + -0.02108183689415455, + 0.003429488046094775, + -0.00461796298623085, + -0.032593730837106705, + 0.01959041692316532, + 0.008925213478505611, + -0.03775155544281006, + 0.04735257104039192, + 0.018642744049429893, + -0.0046568019315600395, + -0.018378637731075287, + -0.01604829542338848, + -0.03492407500743866, + -0.011496358551084995, + 0.005837509408593178, + -0.029191430658102036, + 0.012879028916358948, + -0.007169688586145639, + 0.018844706937670708, + -0.021175049245357513, + 0.01131769921630621, + -0.001201097620651126, + 0.007565847132354975, + 0.029657498002052307, + 0.016141509637236595, + 0.000813678081613034, + 0.013026617467403412, + -0.016716327518224716, + 0.010750648565590382, + -0.020662374794483185, + 0.00929030030965805, + 0.02574252150952816, + -0.006284158211201429, + 0.021672189235687256, + 0.025012347847223282, + 0.021703261882066727, + 0.013174206018447876, + 0.001375873340293765, + 0.030822670087218285, + 0.000551028992049396, + 0.00414801063016057, + -0.01980791613459587, + 0.00929030030965805, + -0.029952675104141235, + 0.04272295534610748, + -0.004326669964939356, + -0.037658341228961945, + -0.019108813256025314, + 0.006691968068480492, + -0.00596567802131176, + 0.014727767556905746, + 0.0185806006193161, + 0.015628833323717117, + -0.0018633033614605665, + 0.05300753563642502, + 0.019357383251190186, + -0.03377443924546242, + -0.020180771127343178, + 0.02704751491546631, + -0.020864337682724, + 0.02129933424293995, + -0.031910162419080734, + 0.020149698480963707, + -0.0092359259724617, + 0.004901488311588764, + 0.036166924983263016, + -0.008668876253068447, + -0.03551442548632622, + 0.031941235065460205, + -0.011325467377901077, + -0.024965740740299225, + 0.00261192605830729, + 0.019838986918330193, + 0.028399113565683365, + 0.038994405418634415, + 0.008738785982131958, + -0.022759683430194855, + 0.00044130871538072824, + 0.02603769861161709, + -0.011869213543832302, + -0.010346722789108753, + -0.018067926168441772, + 0.016405614092946053, + -0.033681225031614304, + -0.0189068503677845, + -0.018098996952176094, + 0.013174206018447876, + 0.005491841584444046, + -0.0020215725526213646, + -0.03728548809885979, + 0.00021422163990791887, + -0.006994912866503, + -0.01364804245531559, + 0.015302585437893867, + -0.00671527162194252, + -7.525066030211747e-5, + 0.0008379524806514382, + -0.0004031978896819055, + -0.024825921282172203, + -0.0309158843010664, + 0.02372289076447487, + 0.017912570387125015, + -0.0070337518118321896, + 0.011201182380318642, + 0.0272184070199728, + -0.005138406064361334, + -0.04026832804083824, + -0.01680953986942768, + -0.007822184823453426, + 0.023443249985575676, + -0.02053808979690075, + 0.009127176366746426, + 0.0016380369197577238, + -0.007301741279661655, + 0.033712293952703476, + 0.03240730240941048, + 0.03094695508480072, + -0.010867166332900524, + -0.005103451199829578, + 0.04666900262236595, + 0.0027439789846539497, + 0.021159514784812927, + 0.0013729603961110115, + -0.016825076192617416, + -0.007344464305788279, + 0.009430121630430222, + 0.030278922989964485, + 0.032624803483486176, + 0.020724516361951828, + -0.014751071110367775, + -0.0006423007580451667, + -0.007985308766365051, + -0.006750226952135563, + 0.007080358918756247, + 0.01999434269964695, + -0.021998437121510506, + -0.006159873213618994, + 0.002466279547661543, + -0.02317914552986622, + 0.03908761963248253, + -0.01039332989603281, + 0.006136569660156965, + -0.024359852075576782, + -0.019605953246355057, + -0.014766606502234936, + -0.02538520283997059, + 0.023163609206676483, + 0.028212685137987137, + -0.023443249985575676, + -0.00856789480894804, + -0.011224485002458096, + -0.016250258311629295, + 0.02696983702480793, + -0.0019283588044345379, + 0.006544379983097315, + 0.02487252838909626, + 0.025866806507110596, + -0.011162342503666878, + -0.005814205855131149, + 0.020196305587887764, + 0.020864337682724, + -0.014580179005861282, + 0.0037557361647486687, + -0.00900289136916399, + 0.01634347252547741, + -0.0042140367440879345, + -0.014417055062949657, + -0.010859398171305656, + -0.009733065962791443, + -0.0432511642575264, + 0.005293762311339378, + -0.025369666516780853, + 0.0032760738395154476, + 0.021936295554041862, + -0.020662374794483185, + -0.010797255672514439, + 0.0013506279792636633, + -0.00591907138004899, + 0.02936232089996338, + -0.017990248277783394, + -0.03706799075007439, + -0.0393361896276474, + -0.004252876155078411, + -0.013189741410315037, + -0.0007277466938830912, + 0.014370448887348175, + -0.010882701724767685, + -0.029999282211065292, + -0.017850426957011223, + -0.002074005315080285, + 0.01800578273832798, + -0.015442405827343464, + 0.0023148073814809322, + -0.012692601419985294, + 0.019963271915912628, + 0.011395377106964588, + -0.023552000522613525, + -0.00030245911329984665, + 0.010828327387571335, + 0.01254501286894083, + -0.009096105583012104, + -0.011915820650756359, + -0.0273271556943655, + -0.010346722789108753, + -0.02881857566535473, + -0.006315229460597038, + -0.007150269113481045, + -0.0006544379866681993, + 0.038776908069849014, + 0.020957551896572113, + 7.713192462688312e-5, + -0.0009374775690957904, + 0.006614290177822113, + -0.0032022795639932156, + -0.004245107993483543, + -0.019870057702064514, + -0.03582514077425003, + 0.01577642187476158, + -0.004594659432768822, + 0.029191430658102036, + 0.0019846754148602486, + 0.0020273984409868717, + -0.027280548587441444, + -0.008785393089056015, + 0.026161983609199524, + -0.01104582566767931, + -0.010509846732020378, + -0.011232253164052963, + 0.0022953879088163376, + 0.0018866067985072732, + 0.006210363935679197, + 0.0011321583297103643, + 0.005243271589279175, + 0.020817730575799942, + 0.0034042426850646734, + -0.003590670181438327, + 0.00011851979070343077, + -0.009142712689936161, + -0.013174206018447876, + 0.00019079682533629239, + -0.0023633562959730625, + 0.0006884221802465618, + -0.11862999200820923, + -0.02064683847129345, + -0.001239936682395637, + 0.01579972542822361, + -0.004819925874471664, + -0.0033770552836358547, + 0.0209730863571167, + 0.017912570387125015, + -0.006466701626777649, + 0.003664464456960559, + 0.0016166754066944122, + -0.02773108147084713, + 0.009787440299987793, + 0.038372982293367386, + 0.0005524854641407728, + -0.00783383660018444, + -0.0026973721105605364, + -0.003520759753882885, + 0.022650934755802155, + -0.03309087082743645, + -0.007530891802161932, + -0.008241645991802216, + 0.03840405121445656, + -0.004252876155078411, + 0.017260074615478516, + 0.04157331958413124, + -0.029952675104141235, + 0.009942797012627125, + -0.015333657152950764, + -0.0019002004992216825, + 0.015178300440311432, + 0.006474469788372517, + -0.02103522978723049, + -0.010222437791526318, + 0.01691829040646553, + -0.014945266768336296, + 0.03467550501227379, + 0.01435491256415844, + 0.02429770864546299, + 0.0027439789846539497, + 0.01374125573784113, + -0.013422776013612747, + -0.0012292559258639812, + -0.020087556913495064, + -0.02353646419942379, + -0.012879028916358948, + -0.014937498606741428, + -0.01623472198843956, + 0.0028100053314119577, + 0.017881497740745544, + 0.019031133502721786, + -0.00046970974653959274, + 0.01572204753756523, + -0.025618236511945724, + -0.010012706741690636, + 0.017586322501301765, + -0.016436686739325523, + -0.02968856878578663, + -0.005600591190159321, + 0.007651292718946934, + 0.08376806229352951, + 0.009593245573341846, + -0.0008564010495319963, + 0.016856146976351738, + 0.00033620052272453904, + 0.010603060945868492, + 0.0028702057898044586, + 0.02136147767305374, + 0.01991666480898857, + -0.005623894277960062, + -0.002000211039558053, + -0.005328717641532421, + -0.016172580420970917, + 0.010517614893615246, + -0.0022565487306565046, + 0.02089540846645832, + 0.020413804799318314, + 0.012902332469820976, + 0.008311556652188301, + -0.001272949855774641, + -0.040547966957092285, + -0.009111640974879265, + 0.013383936136960983, + -0.003293551504611969, + -0.006132686045020819, + -0.0013593666953966022, + 0.004322786349803209, + -0.008233878761529922, + -0.013368400745093822, + 0.00043621109216473997, + 0.00794258527457714, + -0.0036139735020697117, + 0.020864337682724, + 0.004485910292714834, + -0.0010641899425536394, + 0.041728675365448, + 0.012234300374984741, + -0.0012477044947445393, + -0.01137207355350256, + -0.010867166332900524, + -0.01375679112970829, + -0.02198290266096592, + -0.004171314183622599, + -0.016312401741743088, + -0.005992865189909935, + 0.01364804245531559, + 0.014020897448062897, + 0.02190522477030754, + -0.019838986918330193, + -0.00684344070032239, + -0.007787229493260384, + -0.004276179242879152, + -0.028476791456341743, + -0.023816104978322983, + -0.010525382123887539, + 0.024530744180083275, + -0.005421931389719248, + -0.015628833323717117, + -0.019574880599975586, + -0.005654965527355671, + -0.006206480320543051, + 0.02266646921634674, + -0.013896612450480461, + -0.03815548121929169, + -0.0053092981688678265, + -0.004854881204664707, + -0.030465351417660713, + -0.024686099961400032, + 0.000813678081613034, + 0.021501297131180763, + -0.0037557361647486687, + 0.007472633384168148, + -0.00810182560235262, + 0.021594511345028877, + -0.02328789420425892, + 0.014844284392893314, + 0.029983745887875557, + -0.011395377106964588, + -0.0089640524238348, + -0.04654471576213837, + -0.0004893720033578575, + 0.0003842638398054987, + -0.010471007786691189, + 0.008179503493010998, + 0.002204115968197584, + 0.0005956939421594143, + 0.0018535936251282692, + -0.0076124537736177444, + -0.0016545435646548867, + -0.011954659596085548, + -0.005802554078400135, + 0.027684474363923073, + 0.009018427692353725, + 0.006187060847878456, + -0.004311134573072195, + -0.004765551537275314, + 0.003289667423814535, + 0.01699596829712391, + -0.001201097620651126, + -0.0009418469853699207, + -0.01887577772140503, + 0.0030080843716859818, + 0.006322997156530619, + -0.015395799651741982, + 0.014580179005861282, + -0.024064674973487854, + -0.030465351417660713, + -0.00480050640180707, + -0.017741678282618523, + -0.011154575273394585, + -0.0032061636447906494, + 0.0021672190632671118, + -0.00862226914614439, + 0.002914870623499155, + 0.018021319061517715, + -0.0024915251415222883, + -0.007088126614689827, + 0.0040547968819737434, + 0.01402866467833519, + -0.016359006986021996, + -0.0136092035099864, + 0.0216255821287632, + -0.006909466814249754, + 0.017959177494049072, + -0.01865828037261963, + -0.004695641342550516, + 0.005068495869636536, + 0.016871683299541473, + -0.007189108058810234, + -0.0008180474978871644, + -0.010028243064880371, + 0.004990817978978157, + -0.014378216117620468, + 0.02454627864062786, + -0.0027303851675242186, + 0.0005238417070358992, + 0.029735175892710686, + -7.713192462688312e-5, + -0.03952261805534363, + 0.006474469788372517, + -0.033215153962373734, + -0.033059798181056976, + 0.005608358886092901, + 0.00811736099421978, + -0.006051124073565006, + 0.011364306323230267, + -0.02122165635228157, + 0.01923309825360775, + 0.019932201132178307, + -0.016110436990857124, + 0.00027527177007868886, + 0.02234022133052349, + 0.022355757653713226, + -0.017850426957011223, + -0.0006204537930898368, + 0.006839556619524956, + 0.01106136105954647, + -0.01937291771173477, + -0.004412116017192602, + -0.0032411187421530485, + 0.0033479260746389627, + 0.004217920824885368, + -0.010439937002956867, + -0.012809118255972862, + 0.00810182560235262, + -0.007915398105978966, + 0.006878395564854145, + -0.037471916526556015, + -0.016405614092946053, + 0.0207555890083313, + -0.010338954627513885, + 0.01100698672235012, + -0.009352442808449268, + -0.003860601456835866, + -0.02707858569920063, + -0.004509213846176863, + 0.008397002704441547, + -0.01746203750371933, + 0.0033789973240345716, + 0.0004039261257275939, + -0.020227376371622086, + -0.03535906970500946, + -0.006377371959388256, + 0.009072802029550076, + 0.045643649995326996, + -0.0059113032184541225, + -0.0027672823052853346, + -0.0274359043687582, + 0.01310429535806179, + -0.0026934880297631025, + 0.019978806376457214, + -0.016296865418553352, + -0.009756369516253471, + 0.02277521789073944, + 0.008420306257903576, + 0.01048654317855835, + 0.001445783651433885, + 0.011286627501249313, + 0.019435061141848564, + -0.006105498410761356, + -0.014852052554488182, + 0.001441899687051773, + 0.017850426957011223, + -0.019403988495469093, + 0.016250258311629295, + 0.005682153161615133, + -0.0014059735694900155, + 0.001976907718926668, + 0.009958332404494286, + -0.014385984279215336, + 0.0021672190632671118, + -0.01187698170542717, + -0.03018570877611637, + 0.007930934429168701, + -0.0007520210929214954, + 0.02133040688931942, + -0.002060411497950554, + -0.012420727871358395, + -0.0018817519303411245, + 0.007363883778452873, + -0.00019905013323295861, + 0.01934184692800045, + -0.005282111000269651, + 0.026332875713706017, + 0.01985452137887478, + -0.00405868049710989, + 0.020802194252610207, + 0.020273983478546143, + 0.025695916265249252, + 0.0019040844636037946, + 0.0421636737883091, + 0.005720992106944323, + 0.010113688185811043, + -0.01291009970009327, + -0.0006554089486598969, + -0.02367628552019596, + 0.005018005147576332, + 0.005569519940763712, + 0.02443752996623516, + 0.0005893826019018888, + 0.0035848442930728197, + -0.014393751509487629, + -0.03914976119995117, + -0.01615704409778118, + -0.029191430658102036, + -0.00023291292018257082, + 0.021175049245357513, + 0.007037635892629623, + -0.005480189807713032, + 0.0035032823216170073, + 0.005243271589279175, + 0.024266637861728668, + -0.007126965560019016, + -0.034364789724349976, + 0.0008457202930003405, + 0.033463723957538605, + -0.001794364070519805, + -0.005227736197412014, + 0.017229001969099045, + -0.02386271208524704, + -0.0026527070440351963, + 0.010843862779438496, + 0.033028729259967804, + -0.01743096485733986, + -0.020056486129760742, + -0.015784189105033875, + -0.009049498476088047, + 0.008793161250650883, + 0.00493644317612052, + -0.019870057702064514, + -0.005181129090487957, + 0.02129933424293995, + -0.029564285650849342, + 0.006730807479470968, + 0.018611673265695572, + 0.015869636088609695, + -0.00731339305639267, + -0.01753971539437771, + 0.00894851703196764, + -0.004198501352220774, + -0.005608358886092901, + 0.022495577111840248, + 0.0029012770392000675, + 0.006187060847878456, + 0.03212766349315643, + 0.011131271719932556, + -0.0009020369034260511, + 0.006470585707575083, + 0.012350818142294884, + -0.014805445447564125, + 0.0010457413736730814, + 0.021672189235687256, + 0.0029304062481969595, + -0.008816463872790337, + 0.00894851703196764, + 0.02133040688931942, + -0.002788643818348646, + -0.0024041372817009687, + -0.028725361451506615, + -0.02881857566535473, + -0.015628833323717117, + -0.030760526657104492, + 0.004652918316423893, + 0.030791599303483963, + -0.009950564242899418, + 0.02103522978723049, + 0.0291758943349123, + -0.021345941349864006, + 0.005103451199829578, + -0.020942015573382378, + 0.0033032612409442663, + 0.0015710395528003573, + -0.02819715067744255, + -0.0151860686019063, + -0.00261192605830729, + 0.0026663008611649275, + 0.0039596413262188435, + 0.006691968068480492, + 0.0013787862844765186, + -0.023660749197006226, + 0.005950142629444599, + -0.008630037307739258, + -0.023303430527448654, + -0.006420094985514879, + 0.001258385251276195, + -0.0034896887373179197, + 0.011271092109382153, + 0.013989825733006, + 0.0065637994557619095, + -0.020118627697229385, + -0.010331187397241592, + 0.01315866969525814, + 0.02653483860194683, + 0.002681836485862732, + 0.0004680105485022068, + 0.011853678151965141, + -0.03015463799238205, + 0.029735175892710686, + -0.033525869250297546, + 0.0013380052987486124, + -0.030744992196559906, + -0.003186743939295411, + -0.0047538997605443, + 0.02234022133052349, + -0.011690554209053516, + 0.02353646419942379, + 0.009134944528341293, + 0.01127886027097702, + 0.011628411710262299, + 0.010968147777020931, + -0.012591619975864887, + -0.015869636088609695, + 0.0058841160498559475, + -0.0280884001404047, + -0.00020572559151332825, + 9.806860180106014e-5, + 0.02266646921634674, + 0.008264949545264244, + 0.0041868495754897594, + -0.011807071045041084, + -0.004299482796341181, + -0.01197019498795271, + -0.00275174668058753, + -0.025587165728211403, + -0.005519028753042221, + 0.0216255821287632, + -0.00167881790548563, + 0.0010069023119285703, + -0.0085834302008152, + 0.006575451232492924, + -0.00652496051043272, + -0.007589150220155716, + 0.0007102691452018917, + -0.0005621952586807311, + 0.041449032723903656, + -0.019543809816241264, + 0.02223147265613079, + -0.012125551700592041, + 0.01893792115151882, + -0.023909319192171097, + -0.030139103531837463, + -0.03731656074523926, + 0.006820137146860361, + -0.005519028753042221, + 0.00032357784220948815, + -0.014067503623664379, + 0.01945059560239315, + -0.00321393134072423, + 0.02230915054678917, + 0.012506173923611641, + 0.008824232034385204, + -0.01314313430339098, + 0.032376233488321304, + -0.019714701920747757, + 0.0005194722907617688, + 0.0028022374026477337, + -0.005553984083235264, + -7.974142499733716e-5, + -0.018207745626568794, + 0.014727767556905746, + 0.0178193561732769, + -0.03604263812303543, + -0.019621487706899643, + 0.0146423215046525, + -0.0006918205763213336, + 0.013383936136960983, + 0.021858617663383484, + -0.04421437531709671, + -0.03399193659424782, + -0.004777203314006329, + -0.007328928913921118, + -0.006082195322960615, + -0.002676010597497225, + -0.018067926168441772, + 0.017477571964263916, + -0.007414374500513077, + -0.014564643613994122, + -0.015403566882014275, + -0.006136569660156965, + -0.02307039499282837, + 0.03228301927447319, + -0.010525382123887539, + 0.009212622418999672, + 0.014890891499817371, + 0.016063831746578217, + 0.0011214775731787086, + 0.02816607803106308, + -0.004047029186040163, + -0.006008401047438383, + 0.007049287669360638, + -0.032811228185892105, + -0.003324622754007578, + -0.015706511214375496, + 0.005724875722080469, + 0.010292348451912403, + -0.0389011912047863, + -0.022045044228434563, + 0.004784971009939909, + 0.018953455612063408, + 0.0028216568753123283, + 0.002534247934818268, + -0.023412179201841354, + -0.03949154540896416, + 0.0072706700302660465, + -0.011791535653173923, + -0.009367979131639004, + 0.0031673244666308165, + 0.00981851201504469, + -0.010191367007791996, + -0.004256759770214558, + -0.00335763581097126, + 0.01778828538954258, + -0.00945342518389225, + -0.010517614893615246, + -0.008863070979714394, + -0.003291609464213252, + 0.004501445684581995, + -0.019466131925582886, + -0.010688506066799164, + -0.0034527915995568037, + -0.004691757261753082, + -0.023412179201841354, + -0.009088337421417236, + 0.006229783408343792, + -0.0003230923321098089, + 0.016219187527894974, + -0.006420094985514879, + 6.0048812883906066e-5, + -0.015100622549653053, + -0.020708981901407242, + 0.0034450236707925797, + 0.0005772453732788563, + 0.003757677972316742, + -0.003468327224254608, + 0.005961793940514326, + -0.007146385032683611, + -0.009352442808449268, + 0.011574036441743374, + -0.00047893403097987175, + 0.007391071412712336, + -0.009500031359493732, + 0.010696274228394032, + -0.016825076192617416, + -0.0015681266086176038, + -0.010408865287899971, + 0.09035516530275345, + -0.009647619910538197, + -0.0059889815747737885, + 0.0024818151723593473, + 0.015364727936685085, + -0.0365087054669857, + 0.01485982071608305, + 0.00563943013548851, + 0.021594511345028877, + -0.012063409201800823, + -0.01999434269964695, + -0.030465351417660713, + 0.026224127039313316, + 0.01277804747223854, + -0.004540285095572472, + -0.004307250492274761, + 0.01893792115151882, + 0.01764846406877041, + -0.003909150138497353, + 0.004295598715543747, + 0.00597344571724534, + 0.00704151950776577, + -0.027125192806124687, + 0.007336696609854698, + -0.0021439155098050833, + 0.0290671456605196, + 0.00016652242629788816, + 0.003324622754007578, + 1.5057717973832041e-5, + 0.009577709250152111, + 0.011170110665261745, + 0.006346300709992647, + -0.008995124138891697, + -0.005219968501478434, + -0.007934818044304848, + 0.01430053822696209, + 0.008497984148561954, + 0.01343054324388504, + -0.013749023899435997, + 0.01865828037261963, + -0.011977963149547577, + -0.011123503558337688, + 0.03380550816655159, + 0.023878248408436775, + -0.018161140382289886, + 0.00032794722937978804, + -0.01645222119987011, + -0.008187271654605865, + -0.011612876318395138, + 0.006726923398673534, + 0.004078100435435772, + -0.021143978461623192, + 0.010867166332900524, + 0.01702703908085823, + 0.013150902464985847, + -0.005390860140323639, + 0.006284158211201429, + 0.0007661002455279231, + -0.013818933628499508, + 0.018813636153936386, + -0.00918155163526535, + -0.018813636153936386, + -0.008863070979714394, + -0.01920202560722828, + -0.004307250492274761, + -0.015085087157785892, + -0.007876559160649776, + -0.007472633384168148, + -0.0065909866243600845, + -0.00856789480894804, + -0.007002680562436581, + 0.024266637861728668, + 0.014727767556905746, + -0.03105570375919342, + -0.007806648965924978, + 0.01959041692316532, + 0.005006353370845318, + 0.016545435413718224, + 0.014960802160203457, + -0.011123503558337688, + 0.012521709315478802, + 0.008707715198397636, + 0.01066520344465971, + -0.01601722463965416, + -0.0038237045519053936, + 0.013749023899435997, + -0.004027609247714281, + -0.02465502917766571, + 0.014991872943937778, + 3.5076518543064594e-5, + -0.0214080847799778, + 0.013034384697675705, + 0.000874364108312875, + 0.017850426957011223, + -0.017151324078440666, + 0.010797255672514439, + -0.00047893403097987175, + -0.02964196354150772, + -0.0009117466979660094, + -0.0067696464248001575, + -0.003524643834680319, + 0.014036432839930058, + -0.010471007786691189, + 0.01127886027097702, + -0.004443187266588211, + -0.0010282638249918818, + 0.009298068471252918, + 0.0023944273125380278, + -0.019838986918330193, + 0.018347566947340965, + -0.00945342518389225, + -0.021998437121510506, + -0.004280063323676586, + -0.020118627697229385, + -0.030651777982711792, + 0.009010659530758858, + 0.019621487706899643, + -0.012319746427237988, + -0.00900289136916399, + -0.025509487837553024, + -0.006917234975844622, + 0.00018048021593131125, + -0.02397146075963974, + 5.8379948313813657e-5, + -0.006490005180239677, + -0.004210153128951788, + -0.012980010360479355, + 0.0023264591582119465, + -0.010424400679767132, + -0.007604686077684164, + 0.00866110809147358, + 0.02990606799721718, + -0.010836094617843628, + 0.005239387974143028, + 0.00685120839625597, + -0.003505224362015724, + 0.004248992074280977, + 0.016219187527894974, + 0.023583071306347847, + -0.019497202709317207, + 0.0151860686019063, + 0.00984958279877901, + -0.006587103009223938, + 0.015504548326134682, + -0.006128801964223385, + 0.0014166543260216713, + -0.01158957276493311, + -0.02103522978723049, + 0.001901171519421041, + 0.0025633773766458035, + 0.02473270706832409, + -0.023039324209094048, + 0.009748601354658604, + -0.005328717641532421, + 0.0050995671190321445, + -0.0017215409316122532, + -0.001528316643089056, + 0.020693445578217506, + -0.016980431973934174, + 0.0038897308986634016, + 0.006225899793207645, + 0.0023517045192420483, + -0.02700090780854225, + -0.00414801063016057, + -0.03152177110314369, + 0.03253158926963806, + 0.007169688586145639, + 0.018378637731075287, + 0.007099778391420841, + 0.008769857697188854, + -0.002613868098706007, + 0.0053092981688678265, + 0.005748179275542498, + -0.0302633885294199, + 0.00247210543602705, + 0.007721202913671732, + -0.0013214986538514495, + 0.009585477411746979, + -0.007631873246282339, + 0.016296865418553352, + 0.0036392188630998135, + -0.016856146976351738, + 0.017042575404047966, + 0.004905371926724911, + -0.022293614223599434, + -0.033215153962373734, + 0.020957551896572113, + -0.020382734015583992, + -0.003996537998318672, + 0.022806290537118912, + -0.014106342568993568, + 0.01131769921630621, + 0.0021905223838984966, + 0.0024041372817009687, + -0.003946047276258469, + 0.0005374353495426476, + 0.027358226478099823, + 0.005600591190159321, + -0.008171736262738705, + -0.006684200372546911, + -0.0015156939625740051, + -0.0005024801939725876, + 0.027700010687112808, + -0.0007966859848238528, + 0.0035848442930728197, + -0.017399894073605537, + -0.012319746427237988, + -0.010416633449494839, + 0.01068073883652687, + -0.0039402213878929615, + -0.03713013231754303, + -0.02574252150952816, + 0.010082617402076721, + -0.0044664908200502396, + -0.016607576981186867, + 0.0428161695599556, + 0.01991666480898857, + 0.016421150416135788, + 0.010408865287899971, + 0.016063831746578217, + 0.02364521287381649, + 0.006183176767081022, + 0.022355757653713226, + -0.021889688447117805, + -0.02909821644425392, + -0.014518036507070065, + 0.015224907547235489, + 0.013073224574327469, + -0.010944844223558903, + -0.03004588931798935, + 0.022759683430194855, + -0.006796833593398333, + 0.002909044735133648, + 0.010385561734437943, + 0.021143978461623192, + 0.028756432235240936, + 0.015970617532730103, + 0.008707715198397636, + 0.004540285095572472, + -0.021998437121510506, + -0.010595292784273624, + 0.010036010295152664, + -0.021345941349864006, + 9.460949513595551e-5, + -0.01127886027097702, + -0.01645222119987011, + 0.012669297866523266, + 0.008482448756694794, + -0.010906005278229713, + -3.0843668355373666e-5, + -0.006462818011641502, + -0.008140664547681808, + -0.017399894073605537, + -0.004349973518401384, + 0.0073172771371901035, + -0.00013253826182335615, + -0.0092359259724617, + 0.0062530869618058205, + -0.008428073488175869, + -0.00862226914614439, + 0.006653129123151302, + 0.0017506701406091452, + 0.00038329287781380117, + -0.006229783408343792, + 0.014176253229379654, + 0.011791535653173923, + -0.032624803483486176, + 0.005418047308921814, + -0.012420727871358395, + 0.019792379811406136, + -0.0197768434882164, + -0.00042674405267462134, + 0.0032275249250233173, + -0.0019186490681022406, + -0.00420238496735692, + -0.005029656924307346, + 0.0066958521492779255, + -0.016949361190199852, + 0.01197019498795271, + 0.013259652070701122, + -0.007802764885127544, + 0.010525382123887539, + 0.006392907816916704, + -0.013213044963777065, + 0.0004519894428085536, + -0.010354490950703621, + 0.0029634195379912853, + 0.017229001969099045, + -0.00019188917940482497, + -0.0006277361535467207, + -0.004206269048154354, + -0.01876702904701233, + -0.008699947036802769, + -0.0196680948138237, + 0.004773319233208895, + 0.0059579103253781796, + 0.0054685380309820175, + -0.02201397344470024, + 0.008785393089056015, + 0.0024623956996947527, + 0.0008243588381446898, + -0.007616337854415178, + 0.0017827124102041125, + -0.028554469347000122, + 0.013236348517239094, + -0.0065637994557619095, + 0.021237192675471306, + 0.003761562053114176, + -0.021237192675471306, + 0.011403145268559456, + 0.008094058372080326, + 0.013119830749928951, + -0.022915039211511612, + -0.00807852204889059, + -0.022682005539536476, + -0.010975915938615799, + 0.03145962953567505, + 0.027715545147657394, + -0.0024837572127580643, + -0.008148432709276676, + -0.001087493379600346, + -0.0029129288159310818, + 0.00746486522257328, + 0.014471430331468582, + 0.01732221618294716, + -0.012886797077953815, + 0.02378503419458866, + 0.009981635957956314, + 0.01887577772140503, + -0.0015234617749229074, + -0.013391704298555851, + -0.00018921899027191103, + -0.02313253842294216, + -0.01110020000487566, + -0.020444875583052635, + 0.019823450595140457, + 0.003565424820408225, + -0.004116939380764961, + 0.0007374564302153885, + -0.005235503893345594, + -0.015077318996191025, + -0.006672548595815897, + -0.002138089621439576, + -0.003967409022152424, + 0.014556875452399254, + 0.009973867796361446, + 0.004132474772632122, + -0.007492052856832743, + 0.015092854388058186, + 0.0034003588370978832, + -0.01304992102086544, + 0.021314870566129684, + 0.019792379811406136, + 0.009709762409329414, + -0.00867664348334074, + 0.005961793940514326, + 0.024453066289424896, + 0.017446501180529594, + -0.006909466814249754, + 0.004606311209499836, + -0.00043451186502352357, + 0.00954663846641779, + -0.01670079119503498, + -0.008653339929878712, + 0.00289156730286777, + -0.006051124073565006, + 0.010199134238064289, + 0.01566767320036888, + -0.03361907973885536, + 0.0027692243456840515, + 0.006031704600900412, + -0.020693445578217506, + -0.016949361190199852, + -0.01543463859707117, + -0.0183631032705307, + 0.017058109864592552, + -0.0005471450858749449, + -0.012063409201800823, + -0.014751071110367775, + -0.013057688251137733, + -0.013593667186796665, + 0.0007554195472039282, + 0.004812158178538084, + -0.029222501441836357, + 0.005270459223538637, + 0.018052389845252037, + 0.02078665979206562, + 0.010028243064880371, + -0.0021575093269348145, + -0.028911788016557693, + -0.0059113032184541225, + -0.000973403686657548, + -0.0030080843716859818, + 0.004971398506313562, + -0.006097730714827776, + -0.007923166267573833, + -0.007367767859250307, + 0.009841815568506718, + 0.010937076061964035, + 0.006288042291998863, + -0.005511261057108641, + -0.00433832174167037, + 0.02013416402041912, + -0.00149141950532794, + 0.0028896252624690533, + -0.025369666516780853, + -0.01216439064592123, + 0.005142290145158768, + 0.029890533536672592, + -0.01626579463481903, + 0.01308875996619463, + 0.015543388202786446, + -0.010509846732020378, + -0.005876348353922367, + 0.010750648565590382, + 0.007946469821035862, + -0.003458617487922311, + 0.0136092035099864, + 0.005305414088070393, + 0.00954663846641779, + 0.0035673666279762983, + 0.001845825812779367, + 0.021128444001078606, + -0.0016050237463787198, + -0.012055641040205956, + 0.016359006986021996, + 0.03243837505578995, + -0.0016797889256849885, + 0.005254923366010189, + 0.004847113508731127, + -0.0033401583787053823, + -0.03155284374952316, + -0.004812158178538084, + 0.008319324813783169, + -0.014362680725753307, + -0.005091799423098564, + 0.015574458986520767, + 0.003043039469048381, + 0.009484495967626572, + 0.005767598748207092, + -0.012172157876193523, + 0.0019807915668934584, + -0.005344253033399582, + 0.015349192544817924, + 0.024421993643045425, + 0.018968991935253143, + 0.006940538063645363, + 0.015924010425806046, + -0.007161920890212059, + -0.004272295627743006, + -0.013213044963777065, + 0.01814560405910015, + -0.008342628367245197, + -0.009134944528341293, + -0.006750226952135563, + -0.012420727871358395, + -0.0037440843880176544, + -0.00746486522257328, + 0.010587524622678757, + -0.018502922728657722, + 0.025260917842388153, + 0.00698714517056942, + -0.00652496051043272, + 0.0009899103315547109, + -0.012102248147130013, + -0.0008826174307614565, + 0.002004094887524843, + 0.0060161687433719635, + 0.009694227017462254, + 0.006455049850046635, + 0.0036139735020697117, + 0.018300959840416908, + 0.020988622680306435, + 0.004408231936395168, + 0.004606311209499836, + 0.00031969393603503704, + -0.010859398171305656, + 0.011441984213888645, + -0.008125129155814648, + -0.006808485370129347, + -0.016421150416135788, + -0.012319746427237988, + -0.02241789922118187, + -0.00829602126032114, + 0.03517264500260353, + 0.0014321899507194757, + -0.012964474968612194, + 0.018673814833164215, + 0.013127598911523819, + -0.011201182380318642, + 0.0010913773439824581, + 0.005670501384884119, + 0.0025886227376759052, + 0.004423767793923616, + 0.011713857762515545, + -0.0020448758732527494, + 0.009733065962791443, + 0.025540558621287346, + -0.004769435152411461, + 0.009018427692353725, + 0.018487388268113136, + -0.018378637731075287, + -0.00918155163526535, + 0.0016545435646548867, + -0.0014846227131783962, + 0.02173433266580105, + -0.008575662039220333, + 0.00137393141631037, + -0.018347566947340965, + 0.0011593456147238612, + 0.01496856939047575, + -0.024810384958982468, + -0.005522912833839655, + 0.014960802160203457, + -0.009756369516253471, + 0.02223147265613079, + -0.0059889815747737885, + 0.008808696642518044, + 0.04160438850522041, + 0.010859398171305656, + 0.009259229525923729, + -0.0290671456605196, + 0.0060899630188941956, + -0.004959746729582548, + 0.022433435544371605, + 0.010152528062462807, + 0.014417055062949657, + -0.002299271756783128, + -0.001827377243898809, + -0.021252727136015892, + -0.008832000195980072, + 0.012148854322731495, + 0.004241224378347397, + -0.012187694199383259, + 0.006004516966640949, + 0.014199556782841682, + 0.004951979033648968, + 0.01198573037981987, + 0.004594659432768822, + -0.02686108648777008, + 0.004295598715543747, + 0.020413804799318314, + -0.007336696609854698, + -0.0032081054523587227, + -0.01926416903734207, + -0.0026565908920019865, + -0.0018215514719486237, + -0.003831472247838974, + 0.002646881155669689, + 0.0014972453936934471, + -0.004687873180955648, + 0.006233667489141226, + 0.016933824867010117, + 0.01095261238515377, + 0.035265855491161346, + -0.01066520344465971, + 0.006020052824169397, + -0.002722617471590638, + 0.0016166754066944122, + 0.0028760316781699657, + 0.014797678217291832, + -0.0073172771371901035, + -0.006645361427217722, + 0.009445657022297382, + -0.0358562096953392, + -0.0033149130176752806, + 0.016623113304376602, + 0.008311556652188301, + 0.01931077614426613, + -0.003771271789446473, + 0.002745920792222023, + -0.01454910822212696, + -0.01156626921147108, + -0.014494732953608036, + -0.004311134573072195, + -0.005464654415845871, + -0.022899502888321877, + -0.005511261057108641, + 0.0069793774746358395, + 0.0033401583787053823, + 0.005802554078400135, + -0.010269044898450375, + -0.008839767426252365, + -0.006738575175404549, + -0.00022635883942712098, + 0.013873308897018433, + 0.00311877578496933, + 0.004435419570654631, + 0.014906426891684532, + -0.008140664547681808, + 0.02476377785205841, + -0.002575028920546174, + 0.0005301530472934246, + 0.014580179005861282, + 0.01825435273349285, + 0.001658427412621677, + -0.006645361427217722, + 0.007492052856832743, + -0.014137414284050465, + -0.0098884217441082, + 0.01572204753756523, + 0.0031634406186640263, + -3.413588274270296e-7, + 0.00535978889092803, + 0.020957551896572113, + 0.0076124537736177444, + 0.0034411398228257895, + -0.01666972041130066, + -0.006835672538727522, + 0.0005369498394429684, + -0.022247007116675377, + 0.021703261882066727, + 0.03337051346898079, + -0.009865118190646172, + 0.0019924433436244726, + -0.014611250720918179, + 0.022076115012168884, + -0.018611673265695572, + 0.0367262065410614, + -0.011597339995205402, + -0.011247788555920124, + 0.001901171519421041, + -0.005421931389719248, + 0.011993498541414738, + 0.005553984083235264, + -0.007954237051308155, + -0.0005092770443297923, + 0.002345878630876541, + 0.01803685538470745, + -0.03072945587337017, + 0.004256759770214558, + 0.0028702057898044586, + 0.009010659530758858, + -0.013811166398227215, + -0.002674068557098508, + -0.01579972542822361, + -0.018021319061517715, + 0.0006418153061531484, + -0.002990606939420104, + -0.024919133633375168, + 0.028756432235240936, + -0.014020897448062897, + -0.003231409005820751, + 0.008109593763947487, + 0.003458617487922311, + -0.01743096485733986, + 0.00894851703196764, + -0.00011402902600821108, + 0.006392907816916704, + 0.0184718519449234, + -0.0029673033859580755, + 0.007068707142025232, + -0.01077395211905241, + 0.005196664948016405, + 0.009010659530758858, + 0.002448802115395665, + 0.007352232001721859, + -0.01887577772140503, + 0.02288396842777729, + 0.009709762409329414, + -0.024018067866563797, + -0.030232315883040428, + -0.00039688654942438006, + 0.011341002769768238, + -0.011465287767350674, + -0.01854952983558178, + -0.009577709250152111, + 0.01746203750371933, + 0.002545899711549282, + -0.00638125604018569, + 0.000600548810325563, + 0.012591619975864887, + -0.016436686739325523, + 0.006672548595815897, + 0.004221804905682802, + 0.0008311556885018945, + -0.00029614774393849075, + -0.001188474940136075, + 0.01127886027097702, + -0.027249477803707123, + -0.015613297931849957, + 0.005418047308921814, + -0.010269044898450375, + -0.003969350829720497, + -1.5254947356879711e-5, + 0.0037130131386220455, + -0.0015516200801357627, + -0.001612791558727622, + -0.01974577270448208, + 0.009966100566089153, + -0.015403566882014275, + -0.003254712326452136, + -0.0011583747109398246, + -0.013834469951689243, + 0.012102248147130013, + -0.0052044326439499855, + -0.00045344591489993036, + -0.0069483062252402306, + -0.01637454330921173, + -0.024033604189753532, + -0.01133323460817337, + -0.013772327452898026, + 0.022278079763054848, + -0.018021319061517715, + 0.003870311425998807, + -0.01920202560722828, + 0.0085834302008152, + 0.005888000130653381, + -0.005150057841092348, + -0.007624105550348759, + 0.01974577270448208, + 0.010237973183393478, + 0.0038839050102978945, + -0.004120822995901108, + -0.01243626419454813, + -0.020367197692394257, + -0.011302163824439049, + 0.002988664899021387, + -0.023194679990410805, + -0.002307039452716708, + 0.002029340248554945, + 0.0009656358743086457, + -0.0034644431434571743, + 0.0008311556885018945, + -0.001392379985190928, + 0.006183176767081022, + -0.007192992139607668, + 0.021159514784812927, + -0.01258385181427002, + 0.006649245508015156, + 0.008187271654605865, + -0.012622690759599209, + -0.007899862714111805, + 0.006944422144442797, + -0.012117783538997173, + 0.008226110599935055, + -0.001305963029153645, + 0.011092432774603367, + 0.014292770065367222, + 0.02230915054678917, + -0.032345160841941833, + -0.014199556782841682, + 0.0008685382781550288, + -0.011131271719932556, + 0.0032644220627844334, + 0.002068179426714778, + -0.0007680422277189791, + 0.008940748870372772, + 0.0036528126802295446, + 0.008428073488175869, + -0.030434278771281242, + -0.010859398171305656, + 0.028803039342164993, + -0.010074849240481853, + 0.002742036944255233, + -0.0031498470343649387, + 0.020600231364369392, + -0.004268411546945572, + 0.014518036507070065, + 0.01582302898168564, + 0.018891314044594765, + 0.001785625354386866, + -0.010144759900867939, + -0.0030275038443505764, + 5.5982847698032856e-5, + 0.007282321806997061, + 0.009243694134056568, + 0.010525382123887539, + -0.020382734015583992, + 0.030744992196559906, + -0.00890967808663845, + -0.00200215307995677, + 0.004586891736835241, + -0.012055641040205956, + -0.01308875996619463, + -0.008684411644935608, + -0.016623113304376602, + 0.014471430331468582, + -0.0011913878843188286, + 0.006893931422382593, + 0.004396580625325441, + 0.007627989165484905, + -0.022107187658548355, + -0.004637382458895445, + -0.015341424383223057, + -0.009880654513835907, + -0.01408303901553154, + 0.006998796947300434, + 0.013562596403062344, + 0.0010661318665370345, + 0.0006898785941302776, + 0.01110020000487566, + -0.006474469788372517, + -0.005006353370845318, + 0.03750298544764519, + 0.005320949945598841, + 0.01656097173690796, + 0.0007355145062319934, + -0.022464506328105927, + -0.019139884039759636, + 0.004951979033648968, + 0.015287050046026707, + -0.020553624257445335, + -0.011014754883944988, + -0.017291145399212837, + 0.016545435413718224, + -0.028989465907216072, + -0.0040237256325781345, + -0.0016710500931367278, + -0.0024837572127580643, + 0.02639501914381981, + 0.0050257728435099125, + -0.013958754949271679, + -0.013259652070701122, + 0.01677846908569336, + 0.0021924644242972136, + -0.0011807071277871728, + -0.003866427345201373, + 0.005519028753042221, + 0.00261192605830729, + -0.030325530096888542, + -0.001001076539978385, + 0.0019807915668934584, + -0.019512739032506943, + -0.03598049655556679, + 4.156992144999094e-5, + 0.019714701920747757, + 0.0012370237382128835, + 0.0008170765358954668, + -0.007818300276994705, + -0.013772327452898026, + 0.0032683061435818672, + -0.003957699052989483, + 0.01587740331888199, + 0.016219187527894974, + -0.013764559291303158, + 0.007010448724031448, + -0.006152105517685413, + 0.012568316422402859, + 0.014424823224544525, + -0.0017963061109185219, + -0.025074491277337074, + 0.010805023834109306, + 0.0016292980872094631, + 0.004769435152411461, + 0.01245179958641529, + -0.015784189105033875, + 0.01710471697151661, + -0.018176674842834473, + -0.017943641170859337, + -0.005060728173702955, + 0.000925825850572437, + 0.007876559160649776, + -0.005235503893345594, + -0.006423979066312313, + -0.000441794196376577, + -0.004175197798758745, + -0.013725720345973969, + 0.018161140382289886, + -0.0067696464248001575, + 0.013181973248720169, + 0.0010952611919492483, + 0.0018409709446132183, + 0.011822606436908245, + 0.012366353534162045, + 0.00890967808663845, + -0.004579124040901661, + 0.014090807177126408, + -9.721899550640956e-5, + -0.007018216419965029, + -0.02751358225941658, + 5.977572436677292e-5, + 0.007756158243864775, + -0.008466912433505058, + 0.005701572634279728, + -0.0014700579922646284, + 0.007659060414880514, + 0.004353857599198818, + 0.009935028851032257, + 0.01811453327536583, + 0.003491630544885993, + 0.0022546069230884314, + 0.023381108418107033, + 0.017881497740745544, + -0.022837361320853233, + 0.005616126582026482, + 0.02552502416074276, + -0.021563440561294556, + -0.005689920857548714, + 0.017632927745580673, + -0.013958754949271679, + 0.006991028785705566, + 0.02252664975821972, + -0.012506173923611641, + -0.007259018253535032, + -0.0035110500175505877, + 0.019155418500304222, + -0.009973867796361446, + -0.014541340060532093, + 0.0011292453855276108, + -0.005755946971476078, + 0.001575894420966506, + -0.01680953986942768, + -0.0022177097853273153, + -0.018067926168441772, + -0.0136092035099864, + -0.027109656482934952, + -0.01601722463965416, + 0.0023012137971818447, + -0.0037557361647486687, + -0.004349973518401384, + -0.004377160686999559, + 0.006726923398673534, + -0.010711809620261192, + 0.010245741344988346, + -0.001915736123919487, + 0.008816463872790337, + 0.006423979066312313, + 0.009826279245316982, + -0.006711388006806374, + -0.007437678053975105, + 0.0015661846846342087, + 0.020196305587887764, + 0.024359852075576782, + -0.00643563037738204, + -0.009686458855867386, + -0.011908052489161491, + -0.00026459101354703307, + -0.01430053822696209, + -0.019295239821076393, + 0.018953455612063408, + 0.01767953485250473, + -0.0024216147139668465, + -0.0009078627917915583, + -0.007907630875706673, + -0.006940538063645363, + 0.00298283901065588, + -0.011076897382736206, + 0.008785393089056015, + 0.016545435413718224, + -0.010315652005374432, + -0.005557868164032698, + -0.006447282154113054, + 0.004132474772632122, + -0.014168485067784786, + 0.005814205855131149, + 0.013189741410315037, + 0.00582974124699831, + 0.008497984148561954, + 0.002844960428774357, + -0.01106136105954647, + 0.01585409976541996, + 0.013150902464985847, + -0.00956217385828495, + 0.018627207726240158, + -0.001021467032842338, + -0.0011593456147238612, + -0.00657933484762907, + -0.007818300276994705, + -0.015807492658495903, + -0.006909466814249754, + -0.020631304010748863, + 0.016141509637236595, + -0.006105498410761356, + 0.023909319192171097, + -0.006497772876173258, + 0.003491630544885993, + -0.01699596829712391, + -0.015924010425806046, + 0.0058103217743337154, + 0.0033187968656420708, + 0.016421150416135788, + -0.0014681160682812333, + 0.0023186912294477224, + 0.008381467312574387, + 0.01789703406393528, + -0.003907208330929279, + 0.009375746361911297, + -0.017151324078440666, + 0.010727345943450928, + -0.017959177494049072, + 0.005216084420681, + 0.02394038997590542, + -0.014417055062949657, + 0.007022100035101175, + 0.007022100035101175, + 0.026923229917883873, + 0.013764559291303158, + 0.022464506328105927, + -0.003981002606451511, + -0.017260074615478516, + -0.020398268476128578, + 0.0191243477165699, + 0.016250258311629295, + -0.027746617794036865, + -0.005511261057108641, + 0.006816253066062927, + 0.00890967808663845, + -0.002613868098706007, + -0.0032003377564251423, + 0.009259229525923729, + 0.01601722463965416, + -0.007666828576475382, + -0.00712308194488287, + 0.009756369516253471, + -0.019838986918330193, + 0.018829170614480972, + 0.01789703406393528, + -0.03343265503644943, + -0.0049675144255161285, + 0.026301804929971695, + -0.005165593698620796, + -0.01189251709729433, + 0.005522912833839655, + -0.031910162419080734, + 0.02252664975821972, + 0.01797471195459366, + 0.017726141959428787, + 0.0001691926154308021, + 0.01844078116118908, + 0.015729814767837524, + 0.013018849305808544, + -0.005876348353922367, + -0.0075813825242221355, + -0.007239598780870438, + -0.0034023008774966, + -0.004579124040901661, + -0.013679113239049911, + -0.005301530472934246, + -0.043220095336437225, + 0.0214080847799778, + -0.003316854825243354, + 0.005588939413428307, + 0.006882279645651579, + -0.009981635957956314, + -0.00013314512034412473, + -0.007802764885127544, + 0.008956285193562508, + -0.0004437361494638026, + 0.006878395564854145, + -0.008723250590264797, + 0.00623755156993866, + -0.011232253164052963, + 0.010129224509000778, + -0.013578131794929504, + -0.019108813256025314, + 0.007709551602602005, + 0.011752696707844734, + 0.006420094985514879, + 0.00100301846396178, + -0.0021264380775392056, + -0.0023148073814809322, + -0.011395377106964588, + 0.01336063351482153, + 0.00405868049710989, + -0.0045519364066421986, + -0.006043356377631426, + -0.0006724010454490781, + 0.009142712689936161, + 0.02133040688931942, + -0.008031915873289108, + 0.015054015442728996, + 0.003085762495175004, + -0.01735328696668148, + 0.003664464456960559, + 0.004015957936644554, + -0.006008401047438383, + 0.005375324282795191, + -0.003903324482962489, + 0.0056471978314220905, + -0.018083462491631508, + 0.04182188957929611, + -0.008731018751859665, + 0.014836517162621021, + -0.017834892496466637, + 0.0053830924443900585, + 0.009748601354658604, + 0.01833203062415123, + -0.013803398236632347, + 0.017865963280200958, + 0.0038877888582646847, + -0.015372496098279953, + -0.0014554933877661824, + 0.0016225012950599194, + -0.00018278627248946577, + -0.012444031424820423, + 0.00027211609994992614, + 0.007387187331914902, + -0.011488591320812702, + -0.009826279245316982, + -0.024717170745134354, + -0.02089540846645832, + 0.009857350960373878, + 0.015846332535147667, + 0.00956217385828495, + -0.004909256007522345, + 0.011162342503666878, + -0.01254501286894083, + 0.006276390515267849, + 0.000356348289642483, + -0.0011952717322856188, + 0.012304211035370827, + -0.003114891704171896, + 0.005950142629444599, + 0.006490005180239677, + -0.012024570256471634, + 0.0017603798769414425, + -0.004132474772632122, + -0.006198712158948183, + -0.0032061636447906494, + -0.005227736197412014, + -0.010999218560755253, + -0.028973931446671486, + 0.013554828241467476, + 0.004241224378347397, + -0.008412538096308708, + -0.012117783538997173, + 0.00638902373611927, + 0.013345097191631794, + 0.0005170448566786945, + -0.004979166202247143, + -0.015310353599488735, + 0.0020118628162890673, + -0.012995545752346516, + 0.005790902301669121, + -0.0008131926297210157, + -0.004777203314006329, + -0.003365403739735484, + 0.01073511317372322, + -0.004182965494692326, + 0.003184802131727338, + 0.014160717837512493, + -0.015574458986520767, + 0.0030605171341449022, + 0.021423619240522385, + 0.012506173923611641, + 0.020491482689976692, + 0.012280907481908798, + 0.009088337421417236, + -0.022868432104587555, + 0.007806648965924978, + 0.013857772573828697, + 0.013042152859270573, + -0.0022934458684176207, + 0.013943218626081944, + -0.010144759900867939, + 0.02411128208041191, + -0.012467334978282452, + -0.009632084518671036, + 0.006416210904717445, + -0.01249063853174448, + 0.0015127810183912516, + 0.02541627362370491, + 0.0042878310196101665, + -0.004303366877138615, + 0.008668876253068447, + -0.002303155604749918, + 0.033028729259967804, + 0.004501445684581995, + 0.041262608021497726, + 0.00717745628207922, + -0.02035166136920452, + -0.015924010425806046, + 0.0005927809979766607, + 0.004326669964939356, + 0.029222501441836357, + -0.026301804929971695, + 0.0021963482722640038, + 0.016188116744160652, + 0.007437678053975105, + 0.00782995205372572, + -0.015100622549653053, + -0.015489012934267521, + -0.02111290767788887, + 8.884432463673875e-5, + 0.015861868858337402, + 0.014059736393392086, + 0.014921963214874268, + -0.009150479920208454, + -0.0034450236707925797, + 0.00043281266698613763, + -0.02566484361886978, + -0.015108390711247921, + -0.010975915938615799, + 0.005759831052273512, + -0.0020235145930200815, + 0.000182300791493617, + -0.0190155990421772, + 0.0006092875846661627, + 0.018394174054265022, + 0.03253158926963806, + -0.006816253066062927, + -0.023660749197006226, + -0.0037013613618910313, + -0.007950353436172009, + 0.012599388137459755, + -0.0012438205303624272, + -0.002677952405065298, + 0.0042917151004076, + -0.00200603692792356, + -0.016794005408883095, + -0.0005665646167472005, + 0.03228301927447319, + -0.005992865189909935, + -0.006190944463014603, + -0.012754743918776512, + -0.005833625327795744, + 0.005266575142741203, + -0.0006991028785705566, + 0.012568316422402859, + -0.0001514722971478477, + 0.010742881335318089, + -0.005891883745789528, + -0.0044975620694458485, + -0.0013768443604931235, + 0.012599388137459755, + -0.018518459051847458, + -0.016032759100198746, + 0.0369437038898468, + -0.004198501352220774, + -0.00042844327981583774, + 0.022480042651295662, + -0.005519028753042221, + -0.016312401741743088, + 0.01868935115635395, + -0.008132897317409515, + 0.015621066093444824, + -0.024344315752387047, + -0.007278437726199627, + 0.02157897688448429, + -0.01656097173690796, + 0.0018768970621749759, + -0.008342628367245197, + -0.007484284695237875, + 0.004548052791506052, + 0.019963271915912628, + 0.005728759802877903, + 0.010851630941033363, + -0.0008131926297210157, + -0.0037421423476189375, + -0.01272367313504219, + 0.010370026342570782, + 0.0012428496265783906, + 0.0098884217441082, + -0.027684474363923073, + 0.0066220578737556934, + -0.0012185751693323255, + -0.02509002573788166, + 0.0014982162974774837, + -0.005258807446807623, + 0.0280884001404047, + -0.011752696707844734, + 0.012708136811852455, + 0.0003277044743299484, + 0.0024041372817009687, + -0.022045044228434563, + -0.011581804603338242, + -0.0027575725689530373, + 0.000129989450215362, + 0.0017060053069144487, + -0.003147904993966222, + -0.012234300374984741, + 0.024095745757222176, + 0.024748243391513824, + 0.005790902301669121, + -0.012117783538997173, + 0.0014817097689956427, + -0.02198290266096592, + 0.00788821093738079, + -0.0022254774812608957, + -0.0006840527639724314, + 0.010571989230811596, + 0.0012117783771827817, + -0.018192211166024208, + -0.009709762409329414, + -0.03040320798754692, + -0.017446501180529594, + 0.009080570191144943, + 0.0008428074070252478, + 0.007655176799744368, + 0.00550349336117506, + -0.011255556717514992, + -0.009204855188727379, + -0.013057688251137733, + -0.004660686012357473, + 0.014137414284050465, + 0.05459216982126236, + 0.040579039603471756, + 0.012879028916358948, + 0.00028061214834451675, + -0.0025012348778545856, + -0.03983332961797714, + 0.007231831084936857, + 0.0010719577549025416, + -0.011939124204218388, + -0.009841815568506718, + 0.005654965527355671, + -0.006893931422382593, + 0.017275609076023102, + 0.015465709380805492, + -0.011014754883944988, + 0.010199134238064289, + -0.01926416903734207, + -0.01457241177558899, + -0.005472422111779451, + 0.007903746329247952, + -0.0037207810673862696, + 0.019870057702064514, + -0.0036528126802295446, + -0.011170110665261745, + 0.011690554209053516, + -0.0025983324740082026, + 0.001388496020808816, + -0.019388454034924507, + 0.0024701636284589767, + -0.018052389845252037, + 0.030651777982711792, + -0.01760185696184635, + -0.02317914552986622, + 0.013368400745093822, + -0.011915820650756359, + -0.0033052030485123396, + 0.0040819840505719185, + 0.010509846732020378, + 0.0038897308986634016, + -0.007053171284496784, + -0.024468600749969482, + -0.0012273140018805861, + 0.025027884170413017, + -0.02985946089029312, + 0.0016380369197577238, + 0.007503704633563757, + 0.0006418153061531484, + 0.005732643883675337, + -0.016141509637236595, + 0.0054685380309820175, + 0.010913773439824581, + 0.013531524688005447, + -0.010043778456747532, + -0.0009850553469732404, + -0.010253509506583214, + 0.004660686012357473, + 0.0015487071359530091, + -0.008552358485758305, + 0.006567683536559343, + -0.014580179005861282, + -0.00807852204889059, + 0.007962005212903023, + 0.011480823159217834, + 0.022650934755802155, + 0.006575451232492924, + 0.013671345077455044, + 0.020196305587887764, + 0.00979520846158266, + 0.005577287636697292, + -0.033215153962373734, + -0.013329561799764633, + -0.014696696773171425, + -0.025835735723376274, + -0.018565066158771515, + -0.004268411546945572, + 0.0009748601587489247, + -0.023660749197006226, + -0.03815548121929169, + -0.0178193561732769, + 0.0071114301681518555, + 0.008109593763947487, + -0.006513308733701706, + -0.0032042216043919325, + 0.0012515883427113295, + -0.0070648230612277985, + 0.010634131729602814, + 0.0052510397508740425, + -0.01133323460817337, + 0.008979588747024536, + 0.027358226478099823, + -0.02244897000491619, + -0.006334648933261633, + -0.002569203032180667, + -0.000824844348244369, + 0.012715904973447323, + 0.0036139735020697117, + 0.00335375196300447, + 0.0009641794022172689, + 0.010237973183393478, + 0.020009879022836685, + -0.01346938218921423, + 0.026239661499857903, + 0.002644939348101616, + 0.016141509637236595, + -0.003085762495175004, + -0.030247852206230164, + 0.002553667640313506, + -0.013904379680752754, + 0.01615704409778118, + 0.006583218928426504, + -0.011511893942952156, + 0.007682363968342543, + -0.005243271589279175, + 0.005763715133070946, + 0.0179281048476696, + 0.009857350960373878, + -0.009399049915373325, + 0.022946109995245934, + 0.02296164631843567, + 0.009298068471252918, + -0.018456315621733665, + 0.014518036507070065, + 0.023256823420524597, + 0.015162765048444271, + 0.005418047308921814, + 0.007826068438589573, + -0.0052510397508740425, + 0.017726141959428787, + 0.0006311345496214926, + 0.002128379885107279, + 0.0014283061027526855, + -0.008653339929878712, + -0.003697477513924241, + 0.011706089600920677, + -0.0076862480491399765, + -0.007499820552766323, + 0.02133040688931942, + -0.009950564242899418, + 0.030465351417660713, + 0.00642786268144846, + -0.021672189235687256, + 0.027125192806124687, + -0.0038120527751743793, + -0.001952633261680603, + -0.03228301927447319, + 0.011069129221141338, + -0.03827976807951927, + -0.006925002671778202, + -0.0029381741769611835, + 0.0015069551300257444, + 0.00929030030965805, + 0.006183176767081022, + -0.00974083412438631, + 0.007072590757161379, + 0.0016885276418179274, + -0.003188685979694128, + -0.00856789480894804, + 0.016871683299541473, + -0.0110846646130085, + -0.002542015863582492, + -0.00554233230650425, + 0.006870627868920565, + 0.013197509571909904, + -0.009437888860702515, + 0.013228580355644226, + -0.009026194922626019, + -0.012645994313061237, + 0.013174206018447876, + -0.02860107645392418, + -0.019217561930418015, + 0.0012661530636250973, + 0.010269044898450375, + -2.8385884434101172e-5, + 0.018161140382289886, + 0.01797471195459366, + 0.030884811654686928, + 0.006082195322960615, + -0.008847535587847233, + -0.02609984204173088, + -0.02313253842294216, + 0.021703261882066727, + 0.012809118255972862, + 0.009880654513835907, + -0.0044820262119174, + -0.006000633351504803, + 0.012343049980700016, + -0.001309846993535757, + -0.0024604538921266794, + 0.02541627362370491, + -0.001981762470677495, + -0.0071114301681518555, + 0.01760185696184635, + -0.0016487176762893796, + -0.003600379917770624, + -0.0280884001404047, + 0.013220812194049358, + 0.016296865418553352, + -0.0009267968125641346, + -0.019326310604810715, + 0.007775577716529369, + -0.007771694101393223, + -0.007569730747491121, + -0.005418047308921814, + -0.002672126516699791 + ], + "20952efe-090a-45aa-b177-e53ec486e3f1": [ + -0.005884380079805851, + 0.0009734383784234524, + -0.010157301090657711, + 0.010500009171664715, + -0.04042503610253334, + -0.022852104157209396, + 0.04395420476794243, + 0.012337511405348778, + -0.032841697335243225, + 0.018316682428121567, + 0.005071358755230904, + 0.05016671121120453, + -0.01645001396536827, + -0.007517714984714985, + -0.02579793892800808, + 0.015560430474579334, + -0.04757087677717209, + 0.03937503695487976, + -0.009333341382443905, + -0.0006908860523253679, + 0.07991673797369003, + -0.023114604875445366, + -0.03071252815425396, + 0.03164586052298546, + 0.010157301090657711, + -0.026279190555214882, + -0.0015458347043022513, + 0.001168490620329976, + -0.021583352237939835, + -0.004086982924491167, + 0.030479194596409798, + 0.004498962312936783, + 0.033133361488580704, + 0.00013068046246189624, + 0.010638550855219364, + -0.06276672333478928, + -0.01569168083369732, + 0.03768336772918701, + 0.0035765657667070627, + -0.011776052415370941, + -0.030683360993862152, + 0.035962533205747604, + 0.014350012876093388, + 0.0011985687306150794, + -0.03730420023202896, + 0.036750033497810364, + 0.011127092875540257, + -0.02451460435986519, + 0.00150664197281003, + -0.02307085320353508, + -0.004546358250081539, + -0.02683335728943348, + 0.012271885760128498, + 0.0010864592622965574, + 0.022910436615347862, + -0.0026213563978672028, + -0.004626566544175148, + 0.06994172930717468, + -0.01140417717397213, + -0.06270839273929596, + -0.00932605005800724, + -0.007123964838683605, + 0.031966693699359894, + -0.0015777357621118426, + 0.008662507869303226, + -0.025097938254475594, + -0.008254174143075943, + -0.003140888176858425, + -0.05264588072896004, + 0.006048442795872688, + 0.02696460671722889, + 0.0585375539958477, + -0.0021710956934839487, + 0.022618770599365234, + -0.022968770936131477, + 0.022487519308924675, + 0.04920421168208122, + -0.013890637084841728, + 0.020416684448719025, + 0.020168768242001534, + -0.008268757723271847, + 3.0790230084676296e-5, + 0.018112516030669212, + 0.02244376949965954, + 0.06504172831773758, + 0.01566251367330551, + -0.017456265166401863, + -0.04375004023313522, + -0.005578130017966032, + -0.03199586272239685, + -0.0006029302021488547, + 0.028597941622138023, + 0.00275625241920352, + -0.013876054435968399, + -0.02875835821032524, + -0.0106312595307827, + 0.04235003888607025, + -0.0168437659740448, + 0.01903126761317253, + -0.023741688579320908, + 0.00887396652251482, + 0.03470836579799652, + -0.045179206877946854, + 0.02009585127234459, + 0.005785942543298006, + -0.0031645861454308033, + 0.006387505680322647, + 0.002070835093036294, + -0.034650031477212906, + 0.05013754591345787, + 0.01891460083425045, + -0.04809587821364403, + -0.03082919493317604, + 0.008509382605552673, + -0.02216668613255024, + -0.016172930598258972, + -0.014590637758374214, + -0.044245872646570206, + 0.033133361488580704, + 0.00440781656652689, + 0.03406669571995735, + -0.016260432079434395, + -0.00861146580427885, + -0.0042182328179478645, + -0.012556261382997036, + 0.022254185751080513, + -0.013372928835451603, + -0.0009488289942964911, + 0.03135419636964798, + 0.06300005316734314, + -0.022589603438973427, + -0.017135431990027428, + 0.015531264245510101, + -0.015895847231149673, + 0.02127710171043873, + 0.03850003331899643, + 0.01400730386376381, + 0.055650047957897186, + -0.016668764874339104, + 0.02890419214963913, + -0.03587503358721733, + -0.051770880818367004, + -0.037508368492126465, + 0.01400730386376381, + 0.0008367195259779692, + 0.01347501203417778, + -0.04509170725941658, + 0.007823965512216091, + -0.018608350306749344, + 0.006230734754353762, + -0.037508368492126465, + -0.00212005409412086, + 0.036079198122024536, + 0.020533351227641106, + 0.019877100363373756, + 0.022064603865146637, + -0.012184386141598225, + 0.0019122413359582424, + 0.02305627055466175, + 0.02242918685078621, + 0.01841876655817032, + -0.05947088822722435, + 0.0026322940830141306, + -0.0112000098451972, + 0.04538337513804436, + 0.017966682091355324, + 0.04162086918950081, + 0.019847935065627098, + -0.029706276953220367, + 0.0158083476126194, + 0.019133349880576134, + -0.02308543771505356, + 0.04573337361216545, + -0.006795839406549931, + 0.021204184740781784, + -0.007751048542559147, + 0.049962542951107025, + 0.03879170119762421, + 0.019789600744843483, + -0.052675046026706696, + 0.00020542010315693915, + -0.03567086532711983, + -0.008093757554888725, + 0.006536984816193581, + -0.02953127585351467, + 0.009800008498132229, + 0.02113126963376999, + 0.01503542996942997, + -0.02801460772752762, + -0.003911982756108046, + -0.004765108227729797, + -0.0056182341650128365, + -0.002683335682377219, + 0.05588338151574135, + 0.013504179194569588, + -0.04675420746207237, + 0.010441675782203674, + 0.01736876554787159, + -0.0008731778361834586, + 0.02592919021844864, + -0.013321886770427227, + -0.03179169446229935, + -0.03360002860426903, + 0.04678337648510933, + -0.06702505797147751, + 0.025725023820996284, + -0.02254585362970829, + 0.010514592751860619, + 0.03645836561918259, + -0.021291686221957207, + 0.016916681081056595, + -0.005184379871934652, + -0.007692715153098106, + 0.02226877026259899, + -0.034270863980054855, + 0.006489589344710112, + -0.0007200527470558882, + 0.012213552370667458, + 0.009019799530506134, + -0.03164586052298546, + -0.008997924625873566, + 0.003129950724542141, + -0.0004885420785285532, + -0.02226877026259899, + -0.03940420225262642, + -0.015968764200806618, + -0.025870855897665024, + 0.028145859017968178, + -0.05142087861895561, + -0.0031554715242236853, + 0.04570420831441879, + -0.022181270644068718, + 0.04299170523881912, + -0.039083369076251984, + -0.004283857997506857, + 0.013701054267585278, + 0.01426251232624054, + 0.016275014728307724, + -0.014145845547318459, + -0.050341710448265076, + 0.023420853540301323, + 0.011929177679121494, + -0.004681254271417856, + -0.0006216151523403823, + 0.0007679043337702751, + -0.0024718772619962692, + -0.014962512999773026, + 0.03645836561918259, + 0.03345419839024544, + -0.012286469340324402, + -0.019235434010624886, + 0.011900010518729687, + -0.003831774229183793, + -0.03126669302582741, + -0.0222979374229908, + 0.04940837621688843, + 0.03587503358721733, + -0.025477105751633644, + -0.0024591167457401752, + -0.01698959805071354, + -0.004513545893132687, + 0.011768760159611702, + 0.027533357962965965, + -0.002440887503325939, + 0.0239896047860384, + -0.02345002070069313, + 0.04952504485845566, + -0.05856671929359436, + 0.018506266176700592, + 0.05623338371515274, + -0.03333752974867821, + 0.001968751661479473, + -0.007546881679445505, + -0.0028747422620654106, + -0.012293760664761066, + -0.008276049047708511, + -0.007517714984714985, + 0.0011320322519168258, + 0.00670833932235837, + -0.01393438782542944, + -0.009697925299406052, + -0.011440635658800602, + -0.01970210112631321, + 0.020241685211658478, + 0.01618751510977745, + -0.01789376512169838, + -0.0234354380518198, + 0.0020252622198313475, + -0.038529202342033386, + -0.014204178936779499, + -0.009712508879601955, + 0.007918757386505604, + -3.6230499972589314e-5, + -0.001267839688807726, + 0.003355992492288351, + 0.004932817071676254, + -0.021072935312986374, + -0.017077099531888962, + -0.023143770173192024, + 0.016945848241448402, + 0.010128133930265903, + -0.026614606380462646, + -0.012942720204591751, + -0.038675036281347275, + 0.030654193833470345, + -0.01697501540184021, + 0.035320863127708435, + 0.027533357962965965, + -0.03339586406946182, + 0.02537502348423004, + 0.024004187434911728, + 0.003817190881818533, + -0.010616675950586796, + -0.022312520071864128, + -0.00044433632865548134, + 0.010252092964947224, + -0.020533351227641106, + -0.001994272693991661, + -0.018243765458464622, + -0.002659637713804841, + 0.034416697919368744, + 0.00348359695635736, + -0.1020250916481018, + 0.029356276616454124, + 0.045908372849226, + -0.028350025415420532, + 0.036633364856243134, + -0.007539589889347553, + -0.04080420359969139, + -0.018870851024985313, + -0.024820854887366295, + -0.020241685211658478, + -0.029472943395376205, + 0.019395850598812103, + 0.004564587492495775, + -0.05223754793405533, + -0.03602086380124092, + -0.017660431563854218, + 0.013496886938810349, + -0.0024955752305686474, + -0.0011429698206484318, + -0.014962512999773026, + -0.004553650040179491, + -0.02708127349615097, + 0.029312526807188988, + -0.02852502465248108, + 0.0050531295128166676, + 0.030100027099251747, + -0.00038691441295668483, + 0.030537527054548264, + 0.0009570320835337043, + -0.0020726581569761038, + 0.02670210786163807, + 0.005377608817070723, + 0.038179200142621994, + -0.005807817913591862, + -0.005705734249204397, + -0.01595418155193329, + 0.029750026762485504, + -0.006901568733155727, + -0.0013626314466819167, + -0.018345849588513374, + -0.005811463575810194, + -0.03333752974867821, + -0.0026177107356488705, + -0.0020325540099292994, + 0.024777105078101158, + 0.0016360691515728831, + 0.02308543771505356, + 0.004732295870780945, + -0.019133349880576134, + 0.026250023394823074, + -0.033629197627305984, + -0.03342502936720848, + 0.0005382166127674282, + -0.026089606806635857, + 0.039200033992528915, + -0.004159899428486824, + -0.04095003753900528, + 0.02032918483018875, + 0.0016625014832243323, + 0.009027091786265373, + 0.0003609378181863576, + -0.015604180283844471, + 0.012556261382997036, + 0.013168761506676674, + -0.024193771183490753, + -0.009829175658524036, + -0.0011411468731239438, + 0.004506254103034735, + -0.03511669859290123, + -0.001037240494042635, + -0.029312526807188988, + 0.011017718352377415, + -0.011688551865518093, + 0.021043768152594566, + -0.011389593593776226, + -0.0021309915464371443, + 0.031033361330628395, + -0.026235440745949745, + -0.014116679318249226, + -0.027752108871936798, + 0.00016429051174782217, + -0.0026796897873282433, + 0.03380419686436653, + -0.021991686895489693, + -0.0012359386309981346, + -0.014612512663006783, + 0.01802501641213894, + -0.027533357962965965, + -0.009989592246711254, + -0.0020179706625640392, + 0.026629190891981125, + 0.010857301764190197, + 0.025214605033397675, + -0.001276954310014844, + 0.0133583452552557, + 0.04506254196166992, + -0.014473970979452133, + -0.00648229755461216, + 0.015531264245510101, + 0.029502110555768013, + -0.01866668276488781, + 0.03150002658367157, + -0.019600016996264458, + 0.014787512831389904, + 0.007083860691636801, + 0.015764597803354263, + -0.04366254061460495, + -0.004502607975155115, + 0.0009761727415025234, + 0.03537919744849205, + 0.00010823577758856118, + -0.015997931361198425, + -0.027402108535170555, + -0.033220864832401276, + 0.0031828153878450394, + -0.030537527054548264, + -0.007182298228144646, + -0.0039046909660100937, + 0.012286469340324402, + 0.0182583499699831, + -0.00881563313305378, + -0.0005960942944511771, + -0.003868232714012265, + -0.04754170775413513, + -0.01904585026204586, + 0.020022934302687645, + 0.011506260372698307, + 0.025214605033397675, + -0.014029178768396378, + 0.007324485573917627, + -0.06830839812755585, + -0.019745850935578346, + -0.017806265503168106, + -0.01219167746603489, + -0.005231775343418121, + -0.006245317868888378, + 0.019497934728860855, + -0.013504179194569588, + -0.03797503560781479, + -0.003839066019281745, + 0.015195846557617188, + -0.010572926141321659, + 0.019775018095970154, + -0.060841720551252365, + -0.03406669571995735, + 0.005009379703551531, + -0.0015731784515082836, + 0.0007132167811505497, + -0.017266681417822838, + -0.014160429127514362, + -0.06066672131419182, + 0.006383860018104315, + -0.016683347523212433, + -0.020650018006563187, + -0.008225006982684135, + 0.0016661473782733083, + 0.0308583602309227, + -0.015560430474579334, + -0.006001046858727932, + -0.027781274169683456, + -0.04016253724694252, + 0.0039046909660100937, + 0.03605003282427788, + 0.012796886265277863, + -0.03342502936720848, + -0.018068766221404076, + 0.03255002945661545, + -0.03342502936720848, + 0.01672709919512272, + 0.023931272327899933, + 0.0017864599358290434, + 0.023391688242554665, + -0.017062515020370483, + -0.03733336552977562, + -0.0007164069102145731, + -0.04275837168097496, + -0.004994796123355627, + -0.03126669302582741, + 0.05206254497170448, + 0.02073751948773861, + 0.002112762304022908, + 0.03045002743601799, + 0.03345419839024544, + 0.017806265503168106, + -0.011375010013580322, + -0.017310433089733124, + 0.01723751612007618, + 0.015137513168156147, + -0.023683354258537292, + -0.03371669724583626, + -0.018856266513466835, + 0.013307303190231323, + -0.012403136119246483, + 0.0057349009439349174, + -0.012877094559371471, + 0.001976043451577425, + 0.027766691520810127, + -0.016041681170463562, + 0.006529693491756916, + -0.018725017085671425, + -0.00495104631409049, + -0.0007332689128816128, + -0.039083369076251984, + -0.00773646542802453, + -0.006052088923752308, + -0.005877088755369186, + 0.029895860701799393, + -0.034300029277801514, + -0.006052088923752308, + 0.014597930014133453, + -0.0035273469984531403, + 0.01464167982339859, + 0.024164605885744095, + -0.0044515663757920265, + -0.01011355035007, + 0.013591678813099861, + 0.009340633638203144, + 0.035816699266433716, + -0.00841459073126316, + 0.006653651595115662, + 0.009763550013303757, + -0.027883358299732208, + -0.0019067724933847785, + 0.02913752570748329, + -0.018433349207043648, + 0.04488753899931908, + 0.004225524608045816, + 0.007714590057730675, + -0.03873336687684059, + 0.01838959939777851, + -0.0028091170825064182, + 0.00325573212467134, + 0.022458354011178017, + -0.02435418777167797, + 0.03572919964790344, + 0.007331777364015579, + -0.04039587080478668, + -0.03514586389064789, + 0.00531562976539135, + 0.022122936323285103, + 0.01916251704096794, + 0.0018402360146865249, + -0.03339586406946182, + 0.0031973987352102995, + -0.03187919408082962, + 0.016902098432183266, + 0.011776052415370941, + 0.01748543232679367, + 0.023479187861084938, + 0.00023276387946680188, + 0.03333752974867821, + 0.033629197627305984, + -0.019527100026607513, + 0.019410433247685432, + -0.0008153002127073705, + 0.01023021712899208, + -0.02307085320353508, + -0.026979191228747368, + 0.02410627156496048, + -0.02489377185702324, + -0.009851050563156605, + -0.01432084571570158, + -0.0006307297153398395, + 0.008531257510185242, + -0.044770874083042145, + -0.010361467488110065, + -0.022093769162893295, + 0.028452109545469284, + -0.010011467151343822, + 0.017572931945323944, + 0.006234380416572094, + -0.0006216151523403823, + -0.004994796123355627, + 0.03485419601202011, + -0.02412085421383381, + 0.026512524113059044, + 0.026979191228747368, + -0.003824482671916485, + 0.025068772956728935, + 0.015895847231149673, + -0.001629689009860158, + -0.013205219991505146, + 0.00398125359788537, + 0.008400007151067257, + 0.017325015738606453, + 0.007415631785988808, + -0.008866674266755581, + 0.015006263740360737, + -0.016872931271791458, + -0.012417719699442387, + 0.02537502348423004, + 0.00946459174156189, + 0.012818761169910431, + 0.00277083576656878, + 0.012548969127237797, + 0.013139595277607441, + 0.00990209262818098, + -0.0112000098451972, + -0.005607296712696552, + -0.0502542108297348, + 0.06860005855560303, + -0.035962533205747604, + 0.032054197043180466, + 0.007444798480719328, + -0.006394797470420599, + -0.02603127248585224, + -0.016522930935025215, + -0.0015503920149058104, + -0.002309637377038598, + -0.02696460671722889, + 0.014860429801046848, + -0.01288438681513071, + 0.02915211021900177, + -0.0106312595307827, + 0.0016506524989381433, + -0.010339592583477497, + -0.025856273248791695, + -0.019512517377734184, + -0.005198962986469269, + 0.011323968879878521, + 0.012126052752137184, + 0.04354587197303772, + -0.010507301427423954, + 0.02473335526883602, + -0.028320858255028725, + 0.024572938680648804, + 0.01930835098028183, + -0.0016816421411931515, + -0.026643773540854454, + 0.011571885086596012, + 0.00502760848030448, + 0.017543764784932137, + 0.01799584925174713, + -0.018185433000326157, + 0.024572938680648804, + 0.0040833367966115475, + 0.0002565757604315877, + -0.012322927825152874, + 0.029895860701799393, + -0.017966682091355324, + -0.003831774229183793, + 0.022647937759757042, + 0.011309385299682617, + 0.013511470519006252, + 0.03109169378876686, + 0.019410433247685432, + 0.0357583649456501, + 0.009552092291414738, + -0.0005391280865296721, + -0.005224484018981457, + 0.023347938433289528, + 0.006052088923752308, + 0.014153137803077698, + 0.011061468161642551, + -0.00804271548986435, + -0.009450008161365986, + -0.00434583704918623, + -0.008502091281116009, + -0.02021251805126667, + -0.020022934302687645, + -0.01812709867954254, + 0.013146886602044106, + -0.0029640651773661375, + -0.009683341719210148, + -0.009194799698889256, + 0.035700030624866486, + -0.019745850935578346, + -0.005702088586986065, + 0.04331253841519356, + -0.0036403678823262453, + -0.020504185929894447, + -0.010842718183994293, + 0.0054031298495829105, + 0.02032918483018875, + -0.005202608648687601, + 0.005417712964117527, + 0.022983353585004807, + -0.0042619830928742886, + -0.04302087053656578, + -0.02969169244170189, + -0.0015959650045260787, + -0.008057299070060253, + 0.019672933965921402, + 0.018477099016308784, + -0.016639597713947296, + -0.023639604449272156, + 0.006263547111302614, + -0.010587509721517563, + -0.013642720878124237, + 0.009019799530506134, + 0.009369799867272377, + 0.019497934728860855, + 0.026920856907963753, + 0.013351053930819035, + -0.009085425175726414, + 0.01582293026149273, + 0.0062927138060331345, + 0.042029205709695816, + -0.024062521755695343, + 0.023814605548977852, + 0.0012669282732531428, + -0.022618770599365234, + -0.019731268286705017, + 0.001644272357225418, + 0.018593765795230865, + 0.01470001321285963, + 0.005013025365769863, + 4.688317858381197e-5, + 0.029764609411358833, + 0.01685834862291813, + -1.0909026968874969e-5, + -0.006121359765529633, + -0.003613024018704891, + -0.01801043190062046, + -0.009909383952617645, + 0.009172924794256687, + 0.004750525113195181, + -0.03327919542789459, + 0.006380213890224695, + -0.0016880223993211985, + 0.0125635527074337, + -0.017981266602873802, + 0.006653651595115662, + -0.00323932571336627, + 0.014481263235211372, + -0.0004671228234656155, + 0.004418754018843174, + 0.006230734754353762, + 0.03747919946908951, + -0.023493770509958267, + 0.026366690173745155, + 0.0008399095968343318, + -0.011732302606105804, + 0.019862517714500427, + 0.01160105224698782, + -0.018579183146357536, + -0.022458354011178017, + 0.03033336065709591, + -0.010572926141321659, + 0.012133344076573849, + 0.006609901785850525, + 0.011622927151620388, + -0.014678138308227062, + -0.014882304705679417, + -0.011156260035932064, + 0.011105217970907688, + 0.028831275179982185, + -0.02928335964679718, + 0.04739587754011154, + 0.038558367639780045, + 0.01955626718699932, + 0.01295730285346508, + -0.0019213558407500386, + 0.007787507027387619, + 0.015210430137813091, + -0.01735418289899826, + -0.03240419551730156, + -0.001062761410139501, + -0.009894800372421741, + -0.044245872646570206, + 0.015181263908743858, + -0.048650044947862625, + -0.0018037776462733746, + -0.007896882481873035, + 0.03470836579799652, + -0.002630471019074321, + -0.0321708619594574, + -0.017543764784932137, + -0.015195846557617188, + 0.002324220724403858, + -0.009260425344109535, + -0.012344802729785442, + 0.027547940611839294, + -0.020431268960237503, + 0.0029786485247313976, + -0.02280835434794426, + -0.019133349880576134, + 0.017587516456842422, + -0.0026177107356488705, + -0.04275837168097496, + 0.06142505630850792, + 0.04987504333257675, + -0.007014589384198189, + -0.0038427116815000772, + 0.008400007151067257, + -0.003963024355471134, + 0.005381254944950342, + -0.005873442627489567, + -0.03018752671778202, + 2.8169784854981117e-5, + -0.004940108396112919, + 0.006584380753338337, + -0.026410439983010292, + -0.009121882729232311, + -0.0036895866505801678, + 0.0052427127957344055, + 0.038179200142621994, + 0.00985834188759327, + -0.010478134267032146, + 0.008436465635895729, + 0.0036622427869588137, + 0.01133855152875185, + -0.015370846726000309, + -0.0069854226894676685, + 0.012993761338293552, + 0.0011666676728054881, + 0.01074792630970478, + 0.03225836157798767, + 0.010383342392742634, + 0.010069800540804863, + 0.018739599734544754, + 0.0212625190615654, + 0.017850015312433243, + 0.0067776101641356945, + -0.023945854976773262, + 0.00040126987732946873, + -0.025856273248791695, + 0.02982294373214245, + -0.004965629428625107, + -0.03564170002937317, + -0.018360432237386703, + 6.243494863156229e-5, + 0.002318751998245716, + -0.006351047195494175, + -0.001172136515378952, + 0.013154178857803345, + 0.009821883402764797, + 0.04608337581157684, + 0.026745857670903206, + -0.033629197627305984, + -0.011666676960885525, + 0.012877094559371471, + -0.027008358389139175, + 0.035029198974370956, + -0.03397919610142708, + 0.02011043392121792, + 0.008348966017365456, + 0.011331260204315186, + 0.024777105078101158, + -0.009821883402764797, + -0.05142087861895561, + 0.00881563313305378, + 0.00417812867090106, + -0.034270863980054855, + 0.001393621088936925, + 0.008837508037686348, + 0.013460428453981876, + 0.06130838766694069, + -0.0008576830732636154, + -0.02823335863649845, + 0.0042692748829722404, + 0.007794798817485571, + -0.030391693115234375, + -0.013562512584030628, + -0.009369799867272377, + 0.016668764874339104, + -0.02241460420191288, + 0.008166673593223095, + -0.0303041934967041, + 0.010835425928235054, + 0.036983367055654526, + -0.011987511068582535, + -0.032462529838085175, + 0.00488906679674983, + -0.013372928835451603, + -0.0016178400255739689, + 0.0029458359349519014, + -0.025229189544916153, + -0.013008344918489456, + 0.014554179273545742, + 0.008050006814301014, + -0.022093769162893295, + -0.024427104741334915, + 0.0036494825035333633, + 0.008465632796287537, + -0.014153137803077698, + 0.006817714311182499, + 0.0024937521666288376, + -0.008458340540528297, + -0.032841697335243225, + -0.0385875329375267, + -0.007003651931881905, + 0.02331877127289772, + -0.011039593257009983, + 0.02773752436041832, + 0.0038901076186448336, + -0.0036731804721057415, + 0.019366683438420296, + -0.0019377621356397867, + 0.035583365708589554, + -0.011571885086596012, + -0.025841690599918365, + 0.03126669302582741, + 0.013351053930819035, + 0.010806259699165821, + -0.0023880230728536844, + -0.011127092875540257, + -0.004203649703413248, + 0.017952099442481995, + 0.014605221338570118, + 0.011579177342355251, + 0.017339598387479782, + -0.006044797133654356, + -0.008582299575209618, + -0.008954174816608429, + -0.013234387151896954, + -0.015502097085118294, + 0.022312520071864128, + -0.009960426017642021, + -0.018360432237386703, + 0.011287510395050049, + -0.0125125115737319, + 0.02269168756902218, + 0.001401824178174138, + 0.004498962312936783, + -0.0030880235135555267, + -0.040891703218221664, + -0.04162086918950081, + -0.012344802729785442, + 0.04972920939326286, + 0.011316676624119282, + -0.04235003888607025, + 0.003377867629751563, + -0.009894800372421741, + -0.02242918685078621, + 0.02410627156496048, + 0.0018147152150049806, + 0.009872925467789173, + 0.028802109882235527, + 0.02734377421438694, + -0.015050013549625874, + -0.0021000017877668142, + 0.01945418491959572, + 0.036079198122024536, + -0.003607555292546749, + 0.010390634648501873, + -0.004189066123217344, + 0.0012386729940772057, + 0.010354176163673401, + -0.002083595609292388, + -0.04377920553088188, + 0.0001979005610337481, + -0.07297506183385849, + 0.015720847994089127, + -0.03835419937968254, + -0.007076568901538849, + 0.017135431990027428, + -0.008436465635895729, + -0.014226054772734642, + -0.000516341591719538, + -0.02915211021900177, + 0.04617087543010712, + -0.033862531185150146, + -0.026147939264774323, + -0.01621668040752411, + 0.00888854917138815, + -0.011170843616127968, + -0.005764067638665438, + 0.02553544007241726, + -0.019993767142295837, + -0.033629197627305984, + -0.006606256123632193, + -0.011039593257009983, + 0.016625015065073967, + 0.015122930519282818, + 0.0017718765884637833, + -0.025054188445210457, + 0.024004187434911728, + 0.015983346849679947, + -0.017704183235764503, + -0.010835425928235054, + 0.0026140648405998945, + 0.014357304200530052, + -0.014539596624672413, + -0.026760440319776535, + -0.023158354684710503, + -0.0010718759149312973, + -0.04042503610253334, + 0.005446879658848047, + -0.00012464204337447882, + 0.0008157559204846621, + 0.03432919830083847, + 0.027577107772231102, + 0.013482303358614445, + -0.011776052415370941, + -0.030012527480721474, + 0.002340627135708928, + -0.005326567217707634, + -5.941574272583239e-5, + -0.03552503138780594, + 0.01814168319106102, + -0.019468767568469048, + 0.024397937580943108, + 0.011885426938533783, + 0.02060626819729805, + -0.018068766221404076, + -0.026775024831295013, + 0.041795872151851654, + -0.00867709144949913, + -0.003266669576987624, + -0.006431255955249071, + 0.003350523766130209, + -0.0011019541416317225, + -0.0029768256936222315, + 0.003596617840230465, + 0.014284388162195683, + 0.024295855313539505, + 0.004513545893132687, + -0.011564593762159348, + -0.005494275595992804, + -0.013212512247264385, + -0.006405734922736883, + -0.009158341214060783, + -0.03138336166739464, + 0.008400007151067257, + -0.08796674758195877, + -0.03759586811065674, + -0.010128133930265903, + 0.021335436031222343, + 0.00212005409412086, + -1.5679945136071183e-5, + 0.006908860523253679, + -0.0020671894308179617, + -4.431970228324644e-5, + -0.0033013049978762865, + -0.004458858165889978, + -0.013693762011826038, + 0.030391693115234375, + 0.031412526965141296, + -0.0028291691560298204, + 0.009829175658524036, + -0.007532298564910889, + -0.013270845636725426, + 0.023552104830741882, + -0.020766684785485268, + -0.0005404952680692077, + 0.014313554391264915, + 0.02772294171154499, + -0.0005427739233709872, + 0.011440635658800602, + 0.03470836579799652, + -0.024966688826680183, + 0.005271879490464926, + -0.019906267523765564, + -0.017704183235764503, + 0.01725209876894951, + 0.011907302774488926, + -0.026468774303793907, + -0.014218762516975403, + 0.02684793993830681, + -0.00233151251450181, + 0.028481274843215942, + 0.01302292849868536, + 0.01930835098028183, + -0.004972921218723059, + 0.01736876554787159, + -0.010565634816884995, + -0.009668759070336819, + -0.023872938007116318, + -0.004590108059346676, + -0.014291679486632347, + 0.00017921565449796617, + -0.011294801719486713, + 0.010966676287353039, + 0.022093769162893295, + 0.022604186087846756, + -0.007700006943196058, + 0.008706257678568363, + -0.022575020790100098, + 0.00152122532017529, + -0.003926565870642662, + -0.0038755242712795734, + -0.010332301259040833, + 0.009880216792225838, + 0.0042619830928742886, + 0.05678755044937134, + 0.004717712756246328, + 0.010675009340047836, + 0.004050524439662695, + -0.0022859396412968636, + 0.008917716331779957, + 0.012337511405348778, + 0.017310433089733124, + 0.025462523102760315, + -0.00952292513102293, + -0.010215634480118752, + -0.0005960942944511771, + 0.0049364627338945866, + 0.02461668848991394, + -0.012592719867825508, + 0.023931272327899933, + 0.02591460570693016, + 0.0007164069102145731, + 0.008261465467512608, + 0.0023825541138648987, + -0.016800014302134514, + -0.0015029961941763759, + 0.008195840753614902, + 0.007911465130746365, + -0.004247399512678385, + -0.01801043190062046, + 0.01863751746714115, + -0.02642502449452877, + -0.0074958400800824165, + 0.00424010818824172, + 0.015327096916735172, + 0.0038973994087427855, + 0.043108370155096054, + 0.00990209262818098, + -0.005439588334411383, + 0.029312526807188988, + 0.012913553044199944, + -0.017150014638900757, + 0.0063364640809595585, + -0.004958337638527155, + -0.011112510226666927, + -0.021743768826127052, + 0.008764591068029404, + -0.027387524023652077, + -0.016902098432183266, + 0.014546887949109077, + 0.008166673593223095, + 0.0168437659740448, + -0.0024828147143125534, + -0.002546616829931736, + 0.010937510058283806, + 0.004331253934651613, + -0.0417667031288147, + -0.012395844794809818, + -0.005158858839422464, + 0.027008358389139175, + -0.02046043425798416, + -0.006460422649979591, + -0.021947937086224556, + -0.018739599734544754, + 0.0006913417601026595, + 0.01108334306627512, + -0.007255214732140303, + -0.025856273248791695, + -0.010244800709187984, + -0.005760421976447105, + -0.016231264919042587, + -0.005450525786727667, + -0.001284245983697474, + 0.027372941374778748, + 0.008968758396804333, + -0.00019265967421233654, + -0.006861464586108923, + 0.0020763040520250797, + -0.015837514773011208, + 0.013817721046507359, + 0.034679196774959564, + -0.004502607975155115, + -0.0012158865574747324, + -0.037362534552812576, + 0.015385430306196213, + -0.0021619810722768307, + 0.006165109574794769, + -0.001972397556528449, + 0.0009424487361684442, + -0.0008421882521361113, + -0.004170836880803108, + -0.00551250483840704, + -0.010478134267032146, + -0.02047501876950264, + -0.0171208493411541, + 0.012279178015887737, + 0.02501043863594532, + 0.00037962273927405477, + -0.018754184246063232, + -0.012847928330302238, + 0.0021382831037044525, + 0.008633340708911419, + 0.0007729173521511257, + -0.01993543468415737, + -0.023129187524318695, + -0.002670575398951769, + -0.005898963660001755, + -0.004885421134531498, + 0.018112516030669212, + -0.030800027772784233, + -0.0261625237762928, + -0.0022713562939316034, + -0.015064597129821777, + -0.016508348286151886, + -0.010645843110978603, + 0.010857301764190197, + -0.03045002743601799, + -0.01049271784722805, + 0.020650018006563187, + -0.01140417717397213, + -0.005920838564634323, + -0.0021583351772278547, + 0.004076045472174883, + -0.004779691807925701, + -0.010026050731539726, + 0.01776251569390297, + -0.0019523454830050468, + 0.032345861196517944, + -0.00894688256084919, + -0.01154271885752678, + -0.012045844458043575, + 0.009770842269062996, + -0.003715107450261712, + -0.016114598140120506, + 0.014437512494623661, + 0.04045420140028, + -0.013139595277607441, + 0.0188125167042017, + 0.00016679702093824744, + -0.001389975193887949, + 0.028962526470422745, + -0.00946459174156189, + -0.02451460435986519, + 0.0028492212295532227, + -0.03056669421494007, + -0.03721670061349869, + 0.009121882729232311, + 0.021320851519703865, + -0.009333341382443905, + 0.002989585977047682, + -0.03214169666171074, + 0.014787512831389904, + 0.020562518388032913, + -0.016508348286151886, + -0.004673962481319904, + 0.024018771946430206, + 0.01736876554787159, + -0.013715636916458607, + 0.014021887443959713, + 0.005898963660001755, + 0.019250016659498215, + -0.04249587282538414, + -0.018870851024985313, + -0.018302099779248238, + 0.013890637084841728, + 0.008604174479842186, + -5.6909229897428304e-5, + -0.015327096916735172, + -0.004725004080682993, + 0.00534479646012187, + 0.016931265592575073, + -0.017295848578214645, + -0.018083348870277405, + 0.01698959805071354, + -0.0049182334914803505, + 0.0015558607410639524, + -0.019381267949938774, + -0.007809381932020187, + 0.00045481810229830444, + -0.007634381763637066, + 0.024543771520256996, + -0.027241691946983337, + 0.014269804581999779, + -0.005508859176188707, + -0.022618770599365234, + -0.03327919542789459, + -0.010485425591468811, + -0.0014601575676351786, + 0.029852110892534256, + 0.012228135950863361, + -0.01631876453757286, + -0.006197922397404909, + 0.019075017422437668, + -0.003126304829493165, + 0.012585427612066269, + -0.02006668411195278, + 0.0007970710285007954, + 0.03176252916455269, + -0.013212512247264385, + 0.0023059917148202658, + 0.004276566207408905, + 0.009136466309428215, + 0.009829175658524036, + -0.01152084395289421, + -0.004746879450976849, + -0.006303651258349419, + 0.02060626819729805, + -0.022356269881129265, + 0.008451049216091633, + -0.00321015901863575, + 0.0007186855655163527, + 0.014255221001803875, + 0.00767813203856349, + -0.011958343908190727, + 0.008509382605552673, + -0.01450313813984394, + -0.02537502348423004, + 0.0066864644177258015, + 0.012658344581723213, + 0.017543764784932137, + -0.008458340540528297, + -0.015866680070757866, + 0.015706263482570648, + -0.0023643251042813063, + -0.010806259699165821, + 0.015779180452227592, + -0.02266252040863037, + 0.03240419551730156, + 0.023887520655989647, + -0.010762509889900684, + 0.03864586725831032, + 0.028670858591794968, + 0.024558356031775475, + 0.0035237011034041643, + 0.03864586725831032, + 0.0005350265419110656, + 0.012096885591745377, + -0.028043774887919426, + 0.001289714709855616, + -0.015341680496931076, + -0.00045322306687012315, + 0.008633340708911419, + 0.02642502449452877, + -0.0024645854718983173, + 0.007984382100403309, + -0.01643543131649494, + -0.025433355942368507, + 0.0005924484576098621, + -0.01049271784722805, + -0.00021430682681966573, + 0.021700019016861916, + 0.012950011529028416, + -0.003817190881818533, + 0.006278130691498518, + 0.011039593257009983, + 0.02321668714284897, + -0.01620209775865078, + -0.016027098521590233, + -0.010952092707157135, + 0.007641673553735018, + -0.0026213563978672028, + 0.0024007833562791348, + 0.01341667864471674, + -0.03459169715642929, + -0.0013589855516329408, + -0.008108340203762054, + 0.015254179947078228, + -7.120774534996599e-5, + -0.03628336638212204, + -0.01250521931797266, + 0.006701047532260418, + -0.007700006943196058, + 0.010813551023602486, + -0.004881775006651878, + 0.0025046898517757654, + 0.032316695898771286, + -0.013744804076850414, + 0.012651053257286549, + 0.006150526460260153, + 0.006114067975431681, + -0.018681267276406288, + -0.019483350217342377, + 0.01647918112576008, + -0.0025994814932346344, + 0.004980213008821011, + 0.025302106514573097, + -0.012454178184270859, + 0.006806776858866215, + 0.02253127098083496, + 0.03150002658367157, + 0.005217192228883505, + 0.01971668377518654, + 0.012483344413340092, + -0.007123964838683605, + 0.0039010450709611177, + 0.027825023978948593, + -0.0060119847767055035, + 0.010332301259040833, + 0.004196357913315296, + 0.016012514010071754, + 0.011827093549072742, + 0.027781274169683456, + -0.023741688579320908, + -0.012293760664761066, + -0.0013863294152542949, + -0.023800021037459373, + 0.010259384289383888, + 0.038150034844875336, + 0.010806259699165821, + 0.020168768242001534, + 0.008122923783957958, + -0.01697501540184021, + 0.0028054711874574423, + -0.01682918146252632, + 0.002781773218885064, + -0.0032776070293039083, + -0.004247399512678385, + 0.006325526628643274, + -0.0106312595307827, + 0.006617193575948477, + 0.0017764338990673423, + 0.013066678307950497, + 0.002460939809679985, + -0.005158858839422464, + 0.010361467488110065, + -0.013526054099202156, + -0.02422293834388256, + -0.025754189118742943, + 0.006070318166166544, + -0.007488548289984465, + 0.017835432663559914, + 0.011105217970907688, + 0.003846357576549053, + -0.01381042879074812, + -0.011469801887869835, + 0.007634381763637066, + 0.03176252916455269, + 0.019731268286705017, + 0.0025393252726644278, + 0.009573967196047306, + -0.022764604538679123, + 0.014415637589991093, + -0.026381272822618484, + -0.0022695332299917936, + -0.024427104741334915, + -0.004739587660878897, + -0.008706257678568363, + 0.026075024157762527, + -0.01646459847688675, + 0.013125011697411537, + 0.004265628755092621, + 0.030012527480721474, + -0.0058515677228569984, + -0.00699271447956562, + -0.017266681417822838, + 0.0032684924080967903, + 0.002769012935459614, + -0.009887509047985077, + 0.0013717460678890347, + -0.0039046909660100937, + 0.021481269970536232, + 0.013876054435968399, + 0.005745838396251202, + -0.012913553044199944, + -0.003359638387337327, + -0.013496886938810349, + 0.0032940134406089783, + -0.03470836579799652, + -0.013846887275576591, + 0.018054183572530746, + -0.012804178521037102, + 0.0009246753179468215, + 0.002761721145361662, + 0.017514599487185478, + -0.005443233996629715, + -0.008567715995013714, + -0.018068766221404076, + 0.007853131741285324, + 0.05191671475768089, + -0.007889590226113796, + 0.025462523102760315, + -0.01812709867954254, + 0.022195853292942047, + -0.03785836696624756, + -0.020970851182937622, + -0.015589597634971142, + 0.00901250820606947, + -0.01134584378451109, + 0.011017718352377415, + -0.013598970137536526, + 0.019075017422437668, + -0.006259901449084282, + 0.02165626920759678, + 0.005898963660001755, + -0.01904585026204586, + -0.03255002945661545, + 0.02537502348423004, + -0.008232299238443375, + -0.001403647125698626, + -0.007590631954371929, + 4.4034870370524004e-5, + 0.004783337470144033, + 0.003326825797557831, + 0.023479187861084938, + 0.019760433584451675, + -0.01542918011546135, + -0.018564600497484207, + 0.012993761338293552, + 0.008086465299129486, + 0.015268763527274132, + 0.02501043863594532, + -0.03610836714506149, + -0.035000029951334, + 0.0010910165729001164, + -0.002198439557105303, + -0.02136460319161415, + -0.00492187961935997, + -0.000577865110244602, + 0.007466673385351896, + -0.01276042778044939, + -0.019629184156656265, + -0.021685436367988586, + -0.0015996107831597328, + -0.030479194596409798, + 0.031820863485336304, + -0.021204184740781784, + -0.00673750601708889, + 0.007291673216968775, + 0.019206266850233078, + -0.013526054099202156, + 0.029706276953220367, + 5.5912321840878576e-5, + -0.0007004563813097775, + 0.01876876689493656, + -0.02746044099330902, + -0.0030880235135555267, + -0.02396043762564659, + 0.005629171617329121, + 0.014743763022124767, + -0.037654198706150055, + -0.009318758733570576, + -0.010215634480118752, + 0.03689586743712425, + 0.006489589344710112, + 0.013744804076850414, + -0.01566251367330551, + -0.02667294070124626, + 0.0092677166685462, + -0.0068942769430577755, + -0.007113027386367321, + 0.007481256499886513, + 0.01152084395289421, + -0.006901568733155727, + 0.0021565123461186886, + -0.001296094967983663, + 0.015400013886392117, + -0.013285428285598755, + -0.02072293497622013, + -0.01685834862291813, + -0.0020398455671966076, + 0.00036868522875010967, + -0.001745444256812334, + -0.01620209775865078, + 0.0004454756563063711, + 0.004367712419480085, + -0.020533351227641106, + 0.0032976591028273106, + -0.004236462060362101, + 0.009530216455459595, + 0.017937516793608665, + -0.004976566880941391, + -0.004429691471159458, + -0.028466692194342613, + -0.024047939106822014, + -0.005275525618344545, + 0.0036604199558496475, + 0.008451049216091633, + 0.005435942206531763, + 0.004302087239921093, + -0.001172136515378952, + 0.0025958355981856585, + -0.00977813359349966, + -0.011418759822845459, + 0.0034562530927360058, + -0.0035109405871480703, + 0.010587509721517563, + -0.016493765637278557, + 0.005877088755369186, + -0.01658126525580883, + 0.08936674892902374, + -0.008669799193739891, + -0.0057349009439349174, + 0.01153542660176754, + 0.0073791733011603355, + -0.01725209876894951, + 0.009880216792225838, + 0.005957297049462795, + 0.03176252916455269, + -0.0017281265463680029, + -0.01497709657996893, + -0.017179181799292564, + 0.033483363687992096, + 0.022954186424613, + -0.011331260204315186, + -0.007277089636772871, + 0.02254585362970829, + 0.014597930014133453, + 0.02732919156551361, + 0.01786459982395172, + -0.004564587492495775, + 0.017310433089733124, + -0.026468774303793907, + 0.016537515446543694, + -0.005523442290723324, + 0.026877107098698616, + -0.0022877624724060297, + 0.0010035164887085557, + 0.012534386478364468, + 0.025360438972711563, + 0.005067713093012571, + 0.012213552370667458, + -0.0112000098451972, + 0.0006553390994668007, + -0.007619798649102449, + 0.008443757891654968, + 0.01503542996942997, + 0.018681267276406288, + -0.012497927993535995, + 0.012045844458043575, + 0.0050349002704024315, + -0.011878135614097118, + 0.03992920368909836, + 0.02629377320408821, + -0.01621668040752411, + -0.005625525955110788, + -0.011921885423362255, + -0.004553650040179491, + 0.002776304492726922, + 0.007204173132777214, + 0.008225006982684135, + -0.02786877565085888, + 0.00881563313305378, + 0.002648700261488557, + 0.018681267276406288, + -0.006416672375053167, + 0.00576771330088377, + -0.009573967196047306, + -0.012621886096894741, + 0.008443757891654968, + -0.009712508879601955, + -0.01955626718699932, + -0.01139688491821289, + -0.004681254271417856, + -0.012140636332333088, + -0.003705992829054594, + -0.009121882729232311, + -0.0144448047503829, + -0.0021528664510697126, + -0.0008854825864546001, + -0.009938550181686878, + 0.024325022473931313, + 0.004502607975155115, + -0.024806272238492966, + -0.021685436367988586, + 0.013825012370944023, + 0.012235427275300026, + 0.022910436615347862, + 0.012432302348315716, + 0.0029476589988917112, + 0.01618751510977745, + 0.013846887275576591, + -0.015502097085118294, + -0.03164586052298546, + 0.0017044285777956247, + 0.010091675445437431, + 0.012228135950863361, + -0.02410627156496048, + 0.0001508464920334518, + -0.000642122991848737, + -0.031675029546022415, + 0.007018235512077808, + 0.01289896946400404, + 0.0042619830928742886, + -0.006394797470420599, + -0.005446879658848047, + -0.010259384289383888, + -0.025593772530555725, + 0.00560365105047822, + 0.0008066413574852049, + 0.008764591068029404, + 0.010303134098649025, + -0.007700006943196058, + -0.006416672375053167, + -0.009668759070336819, + -0.004703129176050425, + 0.007320839911699295, + 0.008392715826630592, + -0.02175835333764553, + 0.004750525113195181, + -0.016916681081056595, + -0.026118773967027664, + 0.01876876689493656, + -0.016945848241448402, + -0.043487537652254105, + 0.009479175321757793, + -0.004732295870780945, + -0.01316147018224001, + -0.00047031292342580855, + -0.030537527054548264, + -0.004003128502517939, + 0.00952292513102293, + -0.011725010350346565, + -0.011272926814854145, + 0.0028710963670164347, + 0.002125522820279002, + -0.006037505343556404, + -0.0010973968310281634, + -0.013402095064520836, + -0.004553650040179491, + 0.0030679714400321245, + 0.016231264919042587, + 0.011790635995566845, + -0.013722929172217846, + 0.012140636332333088, + -0.008720841258764267, + -0.00716042285785079, + 0.013781262561678886, + 0.02918127551674843, + -0.02048960141837597, + 0.03082919493317604, + -0.008429174311459064, + 0.004057816229760647, + 0.022079186514019966, + 0.009625008329749107, + 0.006186984479427338, + -0.020402101799845695, + -0.020839601755142212, + 0.003970316145569086, + -0.005508859176188707, + 0.03045002743601799, + -0.024150021374225616, + 0.00887396652251482, + -0.008910425007343292, + 0.004327608272433281, + 0.01321980357170105, + -0.014605221338570118, + 0.016260432079434395, + -0.00946459174156189, + 0.0017773453146219254, + 0.009887509047985077, + 0.005363025702536106, + -0.01672709919512272, + 0.003148179966956377, + -0.014904179610311985, + 0.005898963660001755, + 0.01005521696060896, + 0.02345002070069313, + 0.014284388162195683, + -0.003458075923845172, + -0.005235421471297741, + 0.008516673929989338, + 0.01735418289899826, + -0.024193771183490753, + -0.0006849615601822734, + 0.00508958799764514, + 0.009573967196047306, + 0.005548963323235512, + -0.009829175658524036, + 0.022225020453333855, + 0.00855313241481781, + -0.011630218476057053, + 0.023537520319223404, + 0.0005341150681488216, + -0.015720847994089127, + -0.029225025326013565, + 0.024281272664666176, + -0.013948970474302769, + 0.004721358418464661, + 0.007277089636772871, + -0.017456265166401863, + 0.0092677166685462, + -0.000860873144119978, + -0.004925525281578302, + 0.0034325551241636276, + -0.00894688256084919, + 0.02072293497622013, + 0.005246358923614025, + -0.0046119834296405315, + 0.00035410188138484955, + -0.0028382837772369385, + 0.00346719054505229, + 0.008859382942318916, + -0.005439588334411383, + 0.004535420797765255, + -0.022312520071864128, + -0.016377098858356476, + -0.018491683527827263, + 0.0018110693199560046, + 0.01126563549041748, + -0.03056669421494007, + -0.033891696482896805, + 0.0059609427116811275, + 0.001623308751732111, + -0.025477105751633644, + 0.018754184246063232, + 0.00855313241481781, + 0.022720852866768837, + 0.006635422818362713, + 0.014109387993812561, + 0.012556261382997036, + -0.0009597665048204362, + 0.014422929845750332, + -0.01878334954380989, + -0.016887515783309937, + -0.0030825547873973846, + 0.026527106761932373, + -1.3031017260800581e-5, + -0.004057816229760647, + -0.019614601507782936, + 0.0417667031288147, + -0.006274484563618898, + 0.000378027674742043, + 0.017835432663559914, + 0.0003775719669647515, + 0.037012532353401184, + 0.015064597129821777, + 0.0019432308617979288, + 0.001149349962361157, + -0.010602092370390892, + -0.014036471024155617, + 0.0007501308573409915, + -0.012928136624395847, + -0.007277089636772871, + -0.007109381258487701, + -0.009872925467789173, + -0.0028000024612993, + 0.00557083822786808, + -0.021408353000879288, + -2.7144393243361264e-5, + -0.0047286502085626125, + -0.00722240237519145, + -0.0023533874191343784, + 0.013372928835451603, + -0.004167191218584776, + 0.007743756752461195, + -7.821458711987361e-5, + 0.003751565935090184, + -0.0003980797773692757, + -0.015720847994089127, + 0.00634375587105751, + -0.0002684247156139463, + -0.01128021813929081, + 1.5622979844920337e-5, + -0.0059864637441933155, + 0.02473335526883602, + -0.04512087255716324, + 0.00867709144949913, + -0.004396879114210606, + 0.012665635906159878, + -0.010150008834898472, + 0.0047286502085626125, + 0.017295848578214645, + 0.0044333371333777905, + -5.9985406551277265e-5, + 0.0018083349568769336, + 0.009275007992982864, + -0.019643766805529594, + 0.014473970979452133, + 0.00580052612349391, + -0.00325390906073153, + 0.008254174143075943, + 0.002070835093036294, + -0.009457300417125225, + 0.0053593795746564865, + -0.02770835906267166, + 0.014517721720039845, + 0.018491683527827263, + -0.003359638387337327, + 0.003273961367085576, + 0.008771882392466068, + -0.0125125115737319, + 0.010879176668822765, + -0.03316253051161766, + -0.0027252628933638334, + -0.004426045808941126, + 0.0076125068590044975, + 0.0024882834404706955, + 0.008487507700920105, + -0.002550262724980712, + -2.2743754016119055e-5, + -0.01634793169796467, + -0.00036458365502767265, + -0.021072935312986374, + 0.0226771030575037, + 0.006216151174157858, + 0.023814605548977852, + 0.014991680160164833, + -0.022604186087846756, + 0.010769801214337349, + 0.009151049889624119, + 0.0060776094906032085, + -0.022881271317601204, + -0.007955215871334076, + -0.02463127113878727, + -0.007357298396527767, + 0.010288550518453121, + 0.02127710171043873, + -0.004447920713573694, + -0.007105735596269369, + 0.004167191218584776, + 0.00039671259582974017, + 0.01698959805071354, + 0.0023862000089138746, + 0.010959384962916374, + -0.0005085942102596164, + 0.002900263061746955, + 0.006405734922736883, + 0.011790635995566845, + -0.014080220833420753, + 0.001159375999122858, + 0.009996883571147919, + -0.025068772956728935, + 0.009289591573178768, + -0.013540636748075485, + 0.01993543468415737, + -0.007933340035378933, + -0.02527293935418129, + -0.003580211428925395, + 0.0037552115973085165, + -0.02011043392121792, + -0.012833344750106335, + -0.014517721720039845, + -0.00849479902535677, + 0.015254179947078228, + 0.023770853877067566, + 0.007342714816331863, + -0.008852091617882252, + 0.022122936323285103, + -0.00796250719577074, + -0.0030497421976178885, + 0.014867722056806087, + 0.00022957377950660884, + 0.013555220328271389, + -0.012993761338293552, + 0.003011461114510894, + 0.02369793877005577, + 0.015866680070757866, + 0.011323968879878521, + 0.008910425007343292, + -0.009121882729232311, + 0.013876054435968399, + -0.011878135614097118, + -0.008903132751584053, + 0.005643755197525024, + -0.01760209910571575, + -0.01003334205597639, + 0.028422942385077477, + -0.03380419686436653, + -0.006547922734171152, + 0.004105212166905403, + -0.03278336301445961, + -0.01876876689493656, + -0.01929376646876335, + -0.015764597803354263, + 0.024791689589619637, + 0.003603909397497773, + 0.0024919293355196714, + -0.007787507027387619, + -0.016260432079434395, + 0.010806259699165821, + -0.006423964165151119, + -0.0030716173350811005, + -0.02760627493262291, + -0.011163551360368729, + 0.02992502599954605, + 0.028860442340373993, + 0.0055453176610171795, + 0.010842718183994293, + -0.023639604449272156, + -0.0005195317207835615, + 0.004757816903293133, + 0.005640109069645405, + 0.003326825797557831, + -0.0021528664510697126, + -0.0036348991561681032, + -0.008283340372145176, + 0.012723969295620918, + 0.007021881174296141, + 0.007926048710942268, + 0.009821883402764797, + -0.0007975267362780869, + 0.019147934392094612, + 0.0053849006071686745, + -0.007087506353855133, + -0.014218762516975403, + -0.015502097085118294, + 0.012235427275300026, + 0.028437525033950806, + -0.016406264156103134, + 0.009457300417125225, + 0.007401048205792904, + -0.021729186177253723, + -0.003999482840299606, + 0.014298970811069012, + 0.012045844458043575, + 0.005082296207547188, + -0.006416672375053167, + 0.0002365236432524398, + 0.005158858839422464, + 0.010106259025633335, + 0.011907302774488926, + 0.02269168756902218, + -0.004400524776428938, + 0.00022911804262548685, + -0.001284245983697474, + 0.02721252478659153, + -0.0053119841031730175, + 0.0028638045769184828, + 0.001721746288239956, + 0.0012158865574747324, + -0.01879793405532837, + -0.007605215068906546, + -0.0019122413359582424, + -0.025185439735651016, + -0.016158347949385643, + 0.03488336503505707, + -0.004447920713573694, + 0.01631876453757286, + -0.0076125068590044975, + -0.0013343761675059795, + -0.009056258015334606, + -0.0027216169983148575, + 0.039987534284591675, + 0.015400013886392117, + 0.01140417717397213, + 0.003129950724542141, + 0.021422935649752617, + -0.0072442772798240185, + -0.002101824851706624, + -0.02149585261940956, + 0.003478127997368574, + -0.02292502112686634, + -0.009245841763913631, + -0.011571885086596012, + -0.004192712251096964, + 0.012862511910498142, + -0.017937516793608665, + 0.0125125115737319, + -0.022706270217895508, + 0.022720852866768837, + 0.005377608817070723, + -0.0038901076186448336, + 0.007229694165289402, + -0.017791682854294777, + -0.003802607534453273, + 0.016012514010071754, + 0.013212512247264385, + 0.0008403653628192842, + 0.009471883065998554, + 0.005527088418602943, + 0.010120842605829239, + 0.027752108871936798, + 0.011054176837205887, + -0.01373022049665451, + 0.0011320322519168258, + -0.019672933965921402, + 0.001523048267699778, + -0.005136983934789896, + -0.01509376335889101, + -0.01535626407712698, + -0.010572926141321659, + -0.02127710171043873, + 0.0030588568188250065, + 0.022254185751080513, + -0.012425011023879051, + -0.010120842605829239, + 0.01996460184454918, + 0.006697401870042086, + -0.016231264919042587, + -0.00020701515313703567, + 0.008757299743592739, + -0.0018885433673858643, + -0.009646883234381676, + 0.015516680665314198, + -0.013832303695380688, + 0.015020846389234066, + 0.028160441666841507, + -0.0009871103102341294, + 0.003948441240936518, + 0.010011467151343822, + -0.010791676118969917, + -0.004138024523854256, + 0.021043768152594566, + 0.0074958400800824165, + 0.016683347523212433, + -0.01970210112631321, + 0.022954186424613, + -0.012775011360645294, + 0.006788547616451979, + 0.014532304368913174, + -0.012315635569393635, + -0.01055105123668909, + 0.013693762011826038, + 0.00848021637648344, + 0.02824794128537178, + 0.0034453156404197216, + 0.0008285163785330951, + 0.027956275269389153, + 0.009923967532813549, + 0.004805212840437889, + -0.016420848667621613, + 0.005275525618344545, + -0.0003053388209082186, + 0.005680213216692209, + 0.004714066628366709, + -0.004542712587863207, + 0.0011949229519814253, + 0.0010108081623911858, + -0.01154271885752678, + -0.01160105224698782, + 0.01799584925174713, + -0.00012486989726312459, + -0.009960426017642021, + 0.01760209910571575, + 0.02175835333764553, + 0.002783596282824874, + 0.014342721551656723, + 0.01055105123668909, + -0.023012520745396614, + 0.010500009171664715, + 0.01554584689438343, + -0.00647865142673254, + -0.010397925972938538, + -0.014415637589991093, + -0.003018752671778202, + 0.0043166703544557095, + 0.005877088755369186, + 0.0069854226894676685, + -0.00434583704918623, + -0.010740634985268116, + 0.004309379030019045, + 0.020547935739159584, + 0.013307303190231323, + 0.020402101799845695, + -0.012920845299959183, + 0.004560941364616156, + -0.013139595277607441, + 0.003131773555651307, + 0.018375016748905182, + 0.008327091112732887, + -0.0006143234786577523, + 0.0010263030417263508, + -0.00277083576656878, + -0.05130421370267868, + -0.0010654957732185721, + 0.010572926141321659, + -0.0014145845780149102, + 0.005931776016950607, + 0.0064093805849552155, + -0.008786465972661972, + -0.007339069154113531, + -0.009668759070336819, + -0.0035619824193418026, + -0.011907302774488926, + 0.009989592246711254, + -0.019847935065627098, + -0.010653134435415268, + 0.007488548289984465, + 0.013176053762435913, + 0.0053849006071686745, + -0.002568491967394948, + -0.009450008161365986, + 9.849455091170967e-5, + -0.008451049216091633, + 0.004189066123217344, + 0.02967710979282856, + 0.0012404959416016936, + 0.023129187524318695, + -0.012322927825152874, + 0.022239603102207184, + -0.019206266850233078, + -0.004608337301760912, + 0.014284388162195683, + 0.012534386478364468, + 0.0009934904519468546, + -0.0029549505561590195, + 0.00644948473200202, + -0.013846887275576591, + -0.007196881342679262, + 0.00446614995598793, + 0.004382295534014702, + -0.0006015630206093192, + -0.004444274585694075, + 0.006015630438923836, + 0.005665630102157593, + -0.003381513524800539, + -0.02537502348423004, + -0.017310433089733124, + -0.012534386478364468, + -0.028145859017968178, + 0.004272920545190573, + 0.013496886938810349, + -0.015852097421884537, + 0.0027307316195219755, + -0.020795851945877075, + 0.026891691610217094, + -0.0064093805849552155, + 0.02566668950021267, + -0.005902609322220087, + -0.006741151679307222, + 0.011185426265001297, + 0.002883856650441885, + 0.012847928330302238, + -0.004531774669885635, + -0.0035583365242928267, + -0.0020416683983057737, + 0.01930835098028183, + 0.013212512247264385, + -0.01955626718699932, + 0.010901051573455334, + 0.018856266513466835, + 0.003583857323974371, + -0.03094586171209812, + 0.0015403659781441092, + -0.010587509721517563, + -0.019337518140673637, + 0.007350006606429815, + 0.005016671027988195, + -0.019920852035284042, + 0.02022710070014, + -0.009282300248742104, + -0.016916681081056595, + 0.001044532167725265, + 0.0114770932123065, + -0.007597923278808594, + 0.002289585303515196, + -0.0050786505453288555, + -0.0026796897873282433, + 0.012315635569393635, + -0.010478134267032146, + -0.00440417043864727, + -0.02642502449452877, + 0.012060427106916904, + 0.010478134267032146, + -0.009712508879601955, + 0.008378132246434689, + -0.005720317829400301, + 0.02244376949965954, + 0.006886985152959824, + -0.025345856323838234, + -0.03179169446229935, + -0.002661460777744651, + 0.017660431563854218, + -0.0087500074878335, + -0.01367917936295271, + -0.008020840585231781, + 0.008837508037686348, + 0.003018752671778202, + -0.01230834424495697, + -0.006868756376206875, + 0.009676050394773483, + -0.020664602518081665, + 0.015881264582276344, + -0.004057816229760647, + -0.0012332042679190636, + -0.004797921050339937, + -0.01569168083369732, + 0.009420841932296753, + -0.02318751998245716, + -0.0035309926606714725, + 0.003461721818894148, + 5.277918171486817e-5, + -0.003685940755531192, + -1.5423598597408272e-5, + -8.129076013574377e-5, + 0.0028273463249206543, + -0.01891460083425045, + -0.019745850935578346, + 0.016902098432183266, + -0.017952099442481995, + 0.001737241167575121, + -0.012264594435691833, + -0.02059168554842472, + 0.023012520745396614, + -0.01023021712899208, + -0.005158858839422464, + -0.008130216039717197, + -0.011214593425393105, + -0.011827093549072742, + -0.013883345760405064, + -0.005016671027988195, + 0.013176053762435913, + -0.012950011529028416, + 0.00044843790237791836, + -0.007353652268648148, + 0.01295730285346508, + -0.004852608311921358, + -0.009282300248742104, + -0.009048966690897942, + 0.030800027772784233, + 0.006241672206670046, + 0.01930835098028183, + 0.014145845547318459, + -0.013132303021848202, + -0.022764604538679123, + 0.008859382942318916, + -0.004276566207408905, + -0.0139270955696702, + -0.007933340035378933, + -0.01023750938475132, + 0.013343761675059795, + 0.010463550686836243, + -0.010164592415094376, + -0.0033377634827047586, + -0.0023697938304394484, + -0.0020125017035752535, + 0.029502110555768013, + -0.01569168083369732, + 0.012235427275300026, + 0.01669793203473091, + -0.00488906679674983, + -0.004819795954972506, + 0.017004182562232018, + -0.004480733070522547, + 0.007481256499886513, + 0.01108334306627512, + 0.004619274754077196, + 0.005158858839422464, + 0.023231271654367447, + -0.02149585261940956, + -0.025943772867321968, + -0.008319798856973648, + 0.009158341214060783, + 0.004615629091858864, + -0.01658126525580883, + 0.004017712082713842, + 0.009559383615851402, + -0.009056258015334606, + 0.016493765637278557, + -0.014408346265554428, + -0.01633334718644619, + 0.017850015312433243, + -0.005414067301899195, + 0.021422935649752617, + 0.010405217297375202, + 0.01529793068766594, + 0.00867709144949913, + 0.0027216169983148575, + 0.015997931361198425, + 0.025681272149086, + -0.003355992492288351, + -0.01381042879074812, + 0.001990626798942685, + -0.0028091170825064182, + 0.01863751746714115, + -0.0028546899557113647, + -0.003335940418764949, + -0.008181257173418999, + 0.016770849004387856, + -0.004874483682215214, + -0.012271885760128498, + 0.008341673761606216, + -0.021481269970536232, + -0.007397402543574572, + -0.00940625835210085, + -0.015531264245510101, + 0.00887396652251482, + 0.0003643558011390269, + 0.004389587324112654, + 0.0027289087884128094, + -0.006052088923752308, + -0.027912525460124016, + -0.00322474236600101, + -0.018229182809591293, + 0.002078126883134246, + 0.011958343908190727, + 0.003820836776867509, + 0.011294801719486713, + -0.0009460945730097592, + 0.010813551023602486, + 0.01542918011546135, + -0.02022710070014, + 0.014568762853741646, + 0.028583358973264694, + 0.010966676287353039, + 0.008917716331779957, + -0.005191671196371317, + -0.015866680070757866, + -0.011360426433384418, + 0.03135419636964798, + 0.009851050563156605, + -0.012490635737776756, + 0.0011858083307743073, + -0.014401054941117764, + 0.014554179273545742, + -0.017689598724246025, + 0.005366671364754438, + -0.009085425175726414, + 0.004987504333257675, + 0.015866680070757866, + -0.0024591167457401752, + -0.003908336628228426, + -0.014233346097171307, + 0.005257296375930309, + 0.006081255618482828, + -0.012556261382997036, + -0.014255221001803875, + 0.002648700261488557, + 0.025681272149086, + -0.018622932955622673, + -0.00022011737746652216, + 0.00511875469237566, + -0.009683341719210148, + -0.0321708619594574, + 0.007426569238305092, + 0.022312520071864128, + 0.00026728538796305656, + 0.011827093549072742, + -0.0040833367966115475, + -0.011768760159611702, + -0.0015467461198568344, + -0.004032295197248459, + 0.016610432416200638, + 0.004061461891978979, + -0.004790629260241985, + -0.0002476890222169459, + -0.00126419379375875, + 0.020941685885190964, + 0.016625015065073967, + 0.02292502112686634, + -0.02953127585351467, + 0.006434901617467403, + -0.012301052920520306, + 0.010106259025633335, + -0.0038098993245512247, + -0.014393762685358524, + 0.00810104887932539, + -0.013766678981482983, + -0.019775018095970154, + 0.0008499356335960329, + 0.0012049489887431264, + -0.010835425928235054, + 0.0022221372928470373, + -0.0021419289987534285, + 0.0008549487101845443, + -0.01554584689438343, + -0.023931272327899933, + 0.01799584925174713, + 0.0007205084548331797, + 0.022647937759757042, + 0.01438647136092186, + 0.006741151679307222, + 0.004353128839284182, + 0.01497709657996893, + 0.0018065120093524456, + 0.002309637377038598, + -0.0048015667125582695, + -0.013285428285598755, + -0.003503649029880762, + -0.00557083822786808, + -0.006044797133654356, + 0.010441675782203674, + -0.004765108227729797, + 0.003000523429363966, + -0.0029604192823171616, + -0.0035473990719765425, + 0.001954168314114213, + 0.003117190208286047, + 0.02875835821032524, + 0.014473970979452133, + 0.009398967027664185, + 0.006748443469405174, + 0.010507301427423954, + -0.01838959939777851, + -0.002335158409550786, + 0.0237125214189291, + -0.014517721720039845, + -0.004998441785573959, + 0.00804271548986435, + -0.0036804720293730497, + -0.008822924457490444, + 0.01879793405532837, + -0.006726568564772606, + -0.008166673593223095, + -0.007831256836652756, + 0.017208348959684372, + -0.004192712251096964, + -0.005023962818086147, + -0.005625525955110788, + -0.014138554222881794, + 0.009202091954648495, + -0.013394803740084171, + -0.006719276774674654, + -0.019629184156656265, + -0.009318758733570576, + -0.030741693452000618, + -0.007149485405534506, + -0.01547293085604906, + -0.0031682320404797792, + -0.011812510900199413, + -0.012009385973215103, + 0.013190636411309242, + -0.0033979197032749653, + 0.004772400017827749, + 0.0032703154720366, + 0.023522937670350075, + -0.007955215871334076, + 0.005931776016950607, + 0.0053849006071686745, + -0.006577089428901672, + 0.014823971316218376, + 0.009194799698889256, + 0.01605626381933689, + 0.01023021712899208, + 0.00018958350119646639, + -0.02009585127234459, + 0.0032958362717181444, + -0.010383342392742634, + -0.02139376848936081, + 0.018302099779248238, + 0.0009679695940576494, + 0.010448968037962914, + 0.0015686211409047246, + -0.005275525618344545, + 0.00554167153313756, + 0.0012067719362676144, + 0.0023770853877067566, + -0.00018627945974003524, + 0.026804190129041672, + -0.010937510058283806, + -0.009807300753891468, + -0.011272926814854145, + 0.0007063808152452111, + -0.013088553212583065, + 0.00414896197617054, + 0.0047104209661483765, + 0.0006535162101499736, + 0.0027434921357780695, + -0.004805212840437889, + -0.008575007319450378, + 0.004134378861635923, + 0.028831275179982185, + -0.00907084159553051, + 0.01367917936295271, + 0.0038973994087427855, + -0.00209088739939034, + -0.015400013886392117, + -0.01643543131649494, + -0.014590637758374214, + -0.0027179711032658815, + -0.012541677802801132, + 0.018068766221404076, + -0.03112086094915867, + 0.024777105078101158, + -0.013598970137536526, + 0.0045500039122998714, + -0.015968764200806618, + -0.0036221386399120092, + -0.0023789084516465664, + 0.007255214732140303, + 0.013628137297928333, + 0.004655733238905668, + 0.017193766310811043, + 0.015647931024432182, + 0.024470854550600052, + -0.021422935649752617, + -0.00557083822786808, + -0.007867715321481228, + -0.0018630224512889981, + -0.0168437659740448, + 0.015735430642962456, + -0.0015549493255093694, + -0.007000006269663572, + 0.012425011023879051, + 0.0068031311966478825, + 0.013496886938810349, + 0.005527088418602943, + 0.006022922229021788, + 0.010908342897891998, + -0.01669793203473091, + -0.024033354595303535, + 0.00906354933977127, + 0.009552092291414738, + -0.022618770599365234, + -0.01865210011601448, + 0.003106252755969763, + 0.012271885760128498, + 0.005563546437770128, + -0.014291679486632347, + 0.016566680744290352, + 0.025870855897665024, + -0.0032994821667671204, + -0.014867722056806087, + 5.03438786836341e-6, + -0.01736876554787159, + 0.01216980256140232, + 0.006923443637788296, + -0.01968751847743988, + -0.015910431742668152, + 0.013562512584030628, + 0.002929429756477475, + -0.01631876453757286, + -0.004167191218584776, + -0.038150034844875336, + 0.034008365124464035, + 0.013052094727754593, + 0.01763126626610756, + 0.001401824178174138, + 0.012330219149589539, + -0.007061985321342945, + 0.014692721888422966, + -0.007787507027387619, + -0.009792717173695564, + -0.0021565123461186886, + 0.004765108227729797, + -0.0030497421976178885, + -0.02279376983642578, + -0.009894800372421741, + -0.03266669437289238, + 0.0039848992601037025, + -0.011579177342355251, + 0.008144798688590527, + -0.0015348972519859672, + -0.009923967532813549, + -0.0011848969152197242, + -0.022750020027160645, + 0.020154185593128204, + 0.00420729536563158, + 0.005855213385075331, + -0.011972927488386631, + -0.003926565870642662, + -0.012104177847504616, + 0.007517714984714985, + -0.01055105123668909, + -0.027781274169683456, + 0.019512517377734184, + 0.00348359695635736, + 0.00019152034656144679, + 0.005100525449961424, + -0.017033347859978676, + -0.001972397556528449, + -0.00511510856449604, + -0.00023424500250257552, + 0.016508348286151886, + 0.013409387320280075, + 0.01497709657996893, + 0.006879693828523159, + 0.0004069665155839175, + 0.02992502599954605, + -0.0015795587096363306, + 0.0212625190615654, + -0.0017199234571307898, + -0.012592719867825508, + 0.006289068143814802, + -0.0034598989877849817, + 0.0014300794573500752, + 0.007236985489726067, + -0.0012860688148066401, + 0.011236468330025673, + -0.014736471697688103, + 0.023800021037459373, + -0.006697401870042086, + 0.006402089260518551, + -0.00907084159553051, + 0.00010869149991776794, + 0.006048442795872688, + 0.019235434010624886, + -0.013635428622364998, + 0.011426052078604698, + 0.0029367213137447834, + -0.007441152352839708, + -0.011076051741838455, + -0.0036731804721057415, + -0.01764584891498089, + -0.015895847231149673, + 0.010069800540804863, + -0.0030697945039719343, + -0.011367718689143658, + -0.01432813797146082, + -0.0028893256094306707, + -0.0029804713558405638, + 0.02086876891553402, + 0.016406264156103134, + 0.0037807326298207045, + -0.009865634143352509, + -0.0034015655983239412, + -0.010091675445437431, + 0.0055927131325006485, + 0.002214845735579729, + -0.012373968958854675, + 0.01128021813929081, + -0.00023561218404211104, + -0.004170836880803108, + 0.0006571620469912887, + 0.005235421471297741, + 0.004998441785573959, + -0.010988551191985607, + -0.012177093885838985, + -0.005702088586986065, + -0.00713125616312027, + -0.008837508037686348, + -0.024325022473931313, + 0.009172924794256687, + -0.0016998712671920657, + 0.005585421808063984, + -0.017295848578214645, + -0.0004894535522907972, + 0.01761668175458908, + 0.012541677802801132, + 0.0028492212295532227, + -0.005807817913591862, + 0.009231258183717728, + 0.014087512157857418, + 0.00414896197617054, + 0.002583075314760208, + -0.018097933381795883, + -0.0034927113447338343, + 0.005421359091997147, + 0.0026140648405998945, + 0.009967717342078686, + 0.007058339659124613, + -0.0002882489643525332, + -0.0036312532611191273, + 0.02088335156440735, + 0.0027143254410475492, + 0.022181270644068718, + 0.0014966159360483289, + 0.013314595445990562, + -0.013978137634694576, + 0.005979171954095364, + 0.006445839069783688, + 0.010529176332056522, + 0.0016415378777310252, + 0.0067776101641356945, + -0.012330219149589539, + 0.019789600744843483, + -0.013504179194569588, + 0.0031791694927960634, + 0.013562512584030628, + 0.0026942731346935034, + 0.004480733070522547, + 0.006748443469405174, + -0.00990209262818098, + 0.007911465130746365, + 0.017077099531888962, + -0.004673962481319904, + 0.00770729873329401, + -0.019775018095970154, + 0.03745003417134285, + 0.0026888044085353613, + -0.007590631954371929, + -0.027285441756248474, + 0.01268751174211502, + -0.005687505006790161, + 0.017310433089733124, + -0.02110210247337818, + 0.009894800372421741, + 0.006201568059623241, + 0.00796250719577074, + -0.004571879282593727, + -0.005443233996629715, + -0.008458340540528297, + -0.014430221170186996, + 0.00044205767335370183, + 0.0023898459039628506, + 0.00881563313305378, + 0.007061985321342945, + 0.008378132246434689, + -0.024456271901726723, + -0.006722922902554274, + -0.015137513168156147, + -0.02525835670530796, + -0.00392292020842433, + 0.012731261551380157, + -0.012381261214613914, + -0.009887509047985077, + -0.010762509889900684, + 0.01133855152875185, + 0.021700019016861916, + 0.036604199558496475, + -0.010623968206346035, + -0.021087517961859703, + -0.0025101585779339075, + -0.003111721482127905, + 0.015050013549625874, + -0.013183345086872578, + -0.016770849004387856, + 0.01381042879074812, + -0.003487242618575692, + -0.022327102720737457, + -0.017077099531888962, + 0.01814168319106102, + -0.0007647142047062516, + 0.00041015661554411054, + -0.00602656789124012, + -0.008392715826630592, + -0.00043795612873509526, + 0.002191147767007351, + 0.020912518724799156, + -0.010820843279361725, + 0.024266688153147697, + -0.010784384794533253, + -0.0019122413359582424, + -0.004717712756246328, + 0.015604180283844471, + -0.016902098432183266, + -0.018112516030669212, + 0.04538337513804436, + -0.006146880332380533, + -0.001863933983258903, + 0.020300017669796944, + -0.016362514346837997, + -0.017791682854294777, + 0.018870851024985313, + -0.017529182136058807, + 0.012359386309981346, + -0.01761668175458908, + -0.006890631280839443, + 0.01023750938475132, + 0.003377867629751563, + 0.0040359413251280785, + -0.010244800709187984, + -0.01400730386376381, + 0.00048261761548928916, + 0.025739606469869614, + 0.004455212503671646, + 0.022079186514019966, + -0.0069854226894676685, + 0.006978131365031004, + -0.018608350306749344, + 0.013781262561678886, + -0.005064066965132952, + 0.002790887840092182, + -0.017500014975667, + -0.00411979528144002, + -0.010733342729508877, + -0.024966688826680183, + 0.007309902459383011, + -0.022312520071864128, + 0.023391688242554665, + -0.01316147018224001, + 0.009275007992982864, + 0.010193759575486183, + 0.010784384794533253, + -0.0014957045204937458, + -0.009537508711218834, + -0.010120842605829239, + 0.011375010013580322, + -0.004028649535030127, + 0.00281640887260437, + -0.018695849925279617, + 0.022137518972158432, + 0.023625021800398827, + -0.003798961639404297, + -0.010922926478087902, + -0.0035419303458184004, + -0.034679196774959564, + 0.014167721383273602, + 0.0029257838614284992, + -0.0022257831878960133, + 0.011768760159611702, + -0.00255937734618783, + -0.028860442340373993, + -0.009945842437446117, + -0.03537919744849205, + -0.0199500173330307, + 0.02550627291202545, + -0.00022456074657384306, + 0.009107300080358982, + 0.009748967364430428, + -0.007156777195632458, + -0.015050013549625874, + 0.005363025702536106, + 0.012658344581723213, + 0.009245841763913631, + 0.05226671323180199, + 0.03135419636964798, + 0.007554173469543457, + -0.005446879658848047, + -0.003244794672355056, + -0.04004586860537529, + -0.00321015901863575, + -0.004870837554335594, + -0.012067719362676144, + -0.018433349207043648, + 0.01547293085604906, + -0.0067776101641356945, + 0.00631458917632699, + 0.015997931361198425, + -0.014284388162195683, + 0.006143234670162201, + -0.010638550855219364, + -0.005909901112318039, + -0.008779174648225307, + 0.010850009508430958, + 0.007087506353855133, + 0.008115632459521294, + -0.01037605106830597, + -0.015020846389234066, + 0.004513545893132687, + -0.0037807326298207045, + 0.00042861365363933146, + -0.0044333371333777905, + -0.0008677091100253165, + -0.007853131741285324, + 0.013176053762435913, + -0.008392715826630592, + -0.016377098858356476, + 0.0078020901419222355, + -0.015122930519282818, + 0.004987504333257675, + -0.00207448098808527, + 0.014175012707710266, + 0.006143234670162201, + -0.021933352574706078, + -0.033862531185150146, + -0.008290632627904415, + 0.02046043425798416, + -0.022502103820443153, + 0.00019243180577177554, + 0.006190630607306957, + 0.001736329635605216, + 0.0034927113447338343, + -0.009756258688867092, + 0.001861199620179832, + 0.01037605106830597, + 0.019279183819890022, + -0.01646459847688675, + -0.010062509216368198, + -0.0030625027138739824, + -0.000926042499486357, + 0.011156260035932064, + -0.003937503322958946, + 0.0005947271129116416, + 0.003835420124232769, + -0.00702552730217576, + 0.020125018432736397, + 0.014291679486632347, + 0.016741681843996048, + -0.0017691422253847122, + 0.009238549508154392, + 0.008895841427147388, + 0.01827293261885643, + 0.002564846072345972, + -0.017500014975667, + -3.6088084016228095e-5, + -0.015983346849679947, + -0.01646459847688675, + -0.011695844121277332, + -0.005559900775551796, + -0.0015950534725561738, + -0.008465632796287537, + -0.022458354011178017, + -0.013861470855772495, + 0.013890637084841728, + 0.004524483345448971, + -0.019279183819890022, + 0.005355733912438154, + 0.004619274754077196, + -0.001859376672655344, + 0.020970851182937622, + -0.02127710171043873, + -0.008451049216091633, + 0.020139601081609726, + 0.026629190891981125, + -0.014670846052467823, + -0.002450002124533057, + -0.007331777364015579, + -0.0020361996721476316, + 0.005530734080821276, + -0.0021747415885329247, + -0.01710626482963562, + -0.005764067638665438, + 0.010682301595807076, + 0.017500014975667, + -0.006697401870042086, + 0.009989592246711254, + 0.0052427127957344055, + 0.007969798520207405, + -0.02770835906267166, + -0.03485419601202011, + 0.013846887275576591, + -0.012322927825152874, + -0.003040627809241414, + -0.012527094222605228, + -0.01735418289899826, + 0.020533351227641106, + -0.011309385299682617, + 0.012395844794809818, + 0.01827293261885643, + -0.0006872402154840529, + -0.010390634648501873, + 0.001979689346626401, + 0.014021887443959713, + 0.01133855152875185, + -0.005807817913591862, + 0.007087506353855133, + 0.013620845973491669, + 0.015327096916735172, + 0.005100525449961424, + 0.009610425680875778, + 0.002428127219900489, + 0.019352100789546967, + -0.004342191386967897, + 0.0007423834758810699, + 0.018375016748905182, + 0.004498962312936783, + -0.007473965175449848, + 0.009165633469820023, + 0.006227089092135429, + -0.004422399681061506, + 0.01631876453757286, + -0.014772930182516575, + 0.03056669421494007, + 0.0022622416727244854, + -0.012009385973215103, + 0.042058371007442474, + 0.004531774669885635, + 0.0014419283252209425, + -0.02216668613255024, + 0.006755735259503126, + -0.026352107524871826, + 0.0009488289942964911, + 0.0002520184498280287, + -0.0056619844399392605, + -0.002475523157045245, + 0.0022859396412968636, + -0.0028309922199696302, + 0.0226771030575037, + 0.0038645868189632893, + -0.004094274714589119, + -0.0009816414676606655, + 0.01696043275296688, + -0.017806265503168106, + -0.008348966017365456, + -0.012016677297651768, + -0.0021601582411676645, + 0.005815109238028526, + 0.013314595445990562, + 0.01760209910571575, + -0.012060427106916904, + -0.008793758228421211, + 0.013970845378935337, + -0.013650012202560902, + -0.021977102383971214, + -0.013300011865794659, + 0.017952099442481995, + -0.001504819025285542, + 0.019220851361751556, + 0.008268757723271847, + 0.03097502700984478, + -0.0025174501352012157, + -0.001288803294301033, + -0.014466679655015469, + -0.012410427443683147, + 0.02461668848991394, + 0.01244688592851162, + 0.013372928835451603, + 0.00045071655767969787, + 0.013664595782756805, + 0.018506266176700592, + -0.005782296881079674, + 0.0025101585779339075, + 0.021933352574706078, + 0.0011967458995059133, + -0.0029640651773661375, + 0.01548751350492239, + -0.012920845299959183, + -0.0037023471668362617, + -0.022487519308924675, + 0.004838025197386742, + 0.010186467319726944, + 0.009019799530506134, + -0.030479194596409798, + 0.0067046936601400375, + 0.0017709651729092002, + -0.017835432663559914, + -0.00958125852048397, + -0.019468767568469048 + ], + "f7adff25-5877-4d67-a53a-1a54527b2cc6": [ + -0.00287218252196908, + -0.004900932312011719, + -0.010114246979355812, + 0.02372717671096325, + -0.02979433722794056, + -0.018243130296468735, + 0.031071634963154793, + 0.004269225988537073, + -0.03293204307556152, + 0.0033164597116410732, + 0.03906862437725067, + 0.05736728757619858, + -0.010655710473656654, + -0.02249153144657612, + -0.01875682733952999, + 0.021158700808882713, + -0.040790196508169174, + 0.036319658160209656, + -0.029377827420830727, + 5.2660292567452416e-5, + 0.08807794749736786, + -0.017312925308942795, + -0.027031488716602325, + 0.02317183092236519, + 0.020048007369041443, + -0.026795467361807823, + 0.009371471591293812, + 0.0075804791413247585, + -0.038679879158735275, + -0.001580134266987443, + 0.04012378305196762, + 0.0017979341791942716, + 0.028225483372807503, + 0.01492493599653244, + 0.021908417344093323, + -0.03865211457014084, + -0.00808723270893097, + 0.03146037831902504, + 0.015508050099015236, + -0.00026899593649432063, + -0.020367331802845, + 0.021505791693925858, + 0.012863212265074253, + 0.00373817584477365, + -0.04042922332882881, + 0.0133491400629282, + -0.020714422687888145, + -0.04106787219643593, + -0.00947559904307127, + -0.021658511832356453, + -0.010544640943408012, + -0.05486822873353958, + 0.0038457741029560566, + 0.002854827791452408, + 0.04012378305196762, + -0.02197783626616001, + -0.010412746109068394, + 0.058477982878685, + -0.01870129257440567, + -0.06458679586648941, + 0.0057165976613759995, + -0.013036757707595825, + 0.03059959039092064, + 0.013238071464002132, + -0.004293522331863642, + -0.01671592891216278, + 0.001055158325470984, + 0.010662651620805264, + -0.03373729810118675, + 0.019034499302506447, + 0.03909638896584511, + 0.07758189737796783, + -0.008253837004303932, + 0.025559820234775543, + -0.015022121369838715, + 0.041345544159412384, + 0.036208588629961014, + -0.016826998442411423, + 0.021478023380041122, + -0.004373353440314531, + -0.012578597292304039, + 0.00011150315549457446, + 0.046787939965724945, + 0.00907297246158123, + 0.058311376720666885, + 0.03665286675095558, + -0.00727503839880228, + -0.030210847035050392, + 0.026601094752550125, + -0.05742282420396805, + 0.005119600333273411, + -0.006653744727373123, + 0.017687784507870674, + -0.009787981398403645, + -0.03659733012318611, + -0.0025979802012443542, + 0.021505791693925858, + -0.019964704290032387, + 0.006292769685387611, + -0.008843892253935337, + 0.006383013445883989, + 0.03693053871393204, + -0.03970727324485779, + 0.03407050669193268, + 0.004272697027772665, + -0.001193127129226923, + 0.01938159205019474, + 0.01291180495172739, + -0.024351941421628, + 0.03976280614733696, + 0.03404273837804794, + -0.051619451493024826, + -0.05536804348230362, + 0.015716305002570152, + -0.03590314835309982, + -0.016452139243483543, + -0.03284874185919762, + -0.011190230958163738, + 0.013980846852064133, + 0.02464349940419197, + -0.006566972006112337, + -0.031127169728279114, + -0.007129260338842869, + 0.0033164597116410732, + -0.023463387042284012, + 0.01889566332101822, + -0.020353447645902634, + 0.010003178380429745, + 0.03856880962848663, + 0.07463856041431427, + -0.025781959295272827, + -0.017049135640263557, + 0.012162087485194206, + -0.032487768679857254, + 0.009815748780965805, + 0.02526826411485672, + 0.004251871258020401, + 0.05642319843173027, + -0.002591038355603814, + 0.029211223125457764, + -0.05098080635070801, + -0.04303935170173645, + -0.01728515885770321, + 0.01889566332101822, + -0.003877012524753809, + -0.0025528583209961653, + -0.021936185657978058, + 0.013557394966483116, + -0.017562830820679665, + -0.007774850353598595, + -0.02378271147608757, + -0.0034240579698234797, + 0.024574080482125282, + 0.030210847035050392, + 0.03454254940152168, + 0.032432232052087784, + -0.025670889765024185, + 0.0066745700314641, + 0.026240119710564613, + 0.027475766837596893, + 0.025379333645105362, + -0.0678633376955986, + 0.01328666415065527, + -0.019228871911764145, + 0.04267837479710579, + 0.025990214198827744, + 0.02973880246281624, + 0.0322100929915905, + -0.010919500142335892, + 0.0085801025852561, + 0.029211223125457764, + -0.0009822690626606345, + 0.04767649248242378, + -0.0049842344596982, + 0.02210278809070587, + -0.025962447747588158, + 0.0390130877494812, + 0.03507012873888016, + 0.006060218438506126, + -0.0290446188300848, + 0.002247417578473687, + -0.03915192559361458, + 0.026031864807009697, + 0.01155120600014925, + -0.03451478108763695, + 0.015619118697941303, + 0.011641450226306915, + 0.006990423426032066, + -0.00830242969095707, + 0.005241082049906254, + 0.004834984894841909, + 0.006695395801216364, + -0.009621377103030682, + 0.050758667290210724, + 0.01610504649579525, + -0.026212353259325027, + 0.03820783644914627, + 0.005303558893501759, + -0.026531677693128586, + 0.03937406465411186, + 0.005987328942865133, + -0.03504236042499542, + -0.007573537528514862, + 0.03534780070185661, + -0.06875189393758774, + 0.015063772909343243, + -0.027989462018013, + 0.014105799607932568, + 0.03562547639012337, + -0.008739764802157879, + 0.022033371031284332, + -0.00839267298579216, + -0.007691548205912113, + 0.017979340627789497, + -0.04253953695297241, + -0.0011193702230229974, + 0.006313594989478588, + -0.0011575502576306462, + -0.004949525464326143, + -0.03698607534170151, + -0.00018797176016960293, + 0.005501400679349899, + -0.00860786996781826, + -0.018617989495396614, + -0.027017604559659958, + -0.00971856340765953, + -0.021408606320619583, + 0.03945736587047577, + -0.03734704852104187, + -0.004293522331863642, + 0.048287373036146164, + -0.03362622857093811, + 0.033903900533914566, + -0.042650606483221054, + -0.0010681742569431663, + 0.018534688279032707, + 0.021589092910289764, + -0.000571833283174783, + -0.007226445712149143, + -0.03615305572748184, + 0.029711036011576653, + 0.006615564692765474, + -0.016632625833153725, + -0.015396980568766594, + -0.018840128555893898, + -0.019367707893252373, + -0.0071847946383059025, + 0.017729435116052628, + 0.04962020739912987, + -0.003120352979749441, + -0.029683267697691917, + -0.002861769637092948, + -0.010204491205513477, + -0.018923429772257805, + -0.04626036062836647, + 0.04531627148389816, + 0.0630873590707779, + -0.027697904035449028, + -0.010627943091094494, + -0.006469786167144775, + 0.012675782665610313, + 0.025920795276761055, + 0.04001271352171898, + -0.003682641079649329, + -0.01461949571967125, + -0.036264125257730484, + 0.033653996884822845, + -0.05067536234855652, + 0.017993224784731865, + 0.06081043556332588, + -0.03343185782432556, + 0.012585539370775223, + -0.010718186385929585, + 0.010655710473656654, + 0.0004598962841555476, + -0.00316547485999763, + 0.0175905991345644, + 0.004165098536759615, + 0.005997741594910622, + -0.022005602717399597, + -0.00619558384642005, + -0.004772508516907692, + -0.01796545833349228, + 0.01099586021155119, + 0.030127545818686485, + -0.012481411918997765, + -0.039790574461221695, + 0.0009831368224695325, + -0.026309538632631302, + -0.0032140675466507673, + 0.0009302053367719054, + 0.02254706621170044, + -0.006258060224354267, + -0.011426253244280815, + 0.0014647262869402766, + 0.0016374043188989162, + -0.024240873754024506, + -0.007226445712149143, + -0.007885919883847237, + 0.027795089408755302, + -0.00016465154476463795, + -0.010169781744480133, + -0.016632625833153725, + -0.030127545818686485, + 0.04742658883333206, + -0.024601848796010017, + 0.035458870232105255, + 0.030432986095547676, + -0.0190761499106884, + 0.03781909495592117, + 0.012300924398005009, + -0.005411156918853521, + -0.020769957453012466, + -0.02025626227259636, + -0.01263413205742836, + 0.013571279123425484, + -0.013369966298341751, + -0.009801864624023438, + -0.02526826411485672, + 0.024449128657579422, + 0.024879520758986473, + 0.025990214198827744, + -0.09640814363956451, + 0.03187688812613487, + 0.04203972592949867, + -0.017937690019607544, + -0.001385762938298285, + -0.019589846953749657, + -0.031043866649270058, + -0.010940325446426868, + -0.05350762978196144, + 0.0071500856429338455, + -0.03748588636517525, + 0.025532053783535957, + -0.008066407404839993, + -0.039596203714609146, + -0.024726800620555878, + -0.0101836659014225, + -0.022533182054758072, + -0.0030387863516807556, + -0.005608999170362949, + -0.02532379887998104, + -0.0003399327688384801, + -0.01864575780928135, + 0.029572198167443275, + -0.03084949590265751, + -0.007344456855207682, + 0.02773955464363098, + 0.014140509068965912, + 0.03404273837804794, + 0.0008963638683781028, + 0.002774996915832162, + 0.008913310244679451, + 0.017687784507870674, + 0.03984610736370087, + -0.0025511228013783693, + 0.006063689012080431, + -0.016632625833153725, + 0.02335231937468052, + -0.013085351325571537, + -0.015022121369838715, + -0.011634508147835732, + 0.005647179204970598, + -0.06347610056400299, + -0.0009302053367719054, + -0.004036674741655588, + 0.007108434569090605, + -0.0006625109817832708, + -0.0027472295332700014, + 0.0034761216957122087, + 0.0003930811653845012, + 0.027336928993463516, + -0.03584761545062065, + -0.03290427848696709, + 0.019117802381515503, + -0.022075021639466286, + 0.03906862437725067, + -0.005640237592160702, + -0.06142131984233856, + 0.02247764728963375, + 0.013696231879293919, + 0.009364529512822628, + 0.013085351325571537, + -0.010079538449645042, + 0.011447078548371792, + 0.001867352519184351, + -0.03568100929260254, + 0.0058241961523890495, + 0.016924183815717697, + 0.0018985907081514597, + -0.04498306289315224, + -0.008864717558026314, + -0.03879094868898392, + 0.014126625843346119, + 0.014112741686403751, + 0.016313301399350166, + 0.015771839767694473, + -0.019214987754821777, + 0.046593569219112396, + -0.0015567055670544505, + -0.002257830463349819, + -0.017660018056631088, + -0.008927194401621819, + -0.0006304049747996032, + 0.025976330041885376, + -0.010232258588075638, + 0.01173863559961319, + -0.008177476935088634, + 0.019173337146639824, + -0.035514406859874725, + 0.0030891145579516888, + -0.003595868358388543, + 0.013675406575202942, + 0.042956046760082245, + 0.019784217700362206, + 0.009336762130260468, + -0.004987705498933792, + 0.03184911981225014, + -0.009864341467618942, + 0.007802617736160755, + 0.016868649050593376, + 0.01148873008787632, + -0.006098398473113775, + 0.033293019980192184, + 0.008295487612485886, + 0.018867895007133484, + -0.013696231879293919, + 0.009892108850181103, + -0.027572952210903168, + -0.03448701649904251, + 0.02551816962659359, + 0.036264125257730484, + -0.00029242460732348263, + -0.005779074039310217, + -0.029183456674218178, + -0.03665286675095558, + 0.003201919374987483, + -0.026656629517674446, + 0.004182452801615, + 0.006240705959498882, + -0.018506919965147972, + -0.015258143655955791, + 0.0002833134785760194, + -0.0063031823374331, + -0.011134696193039417, + -0.029183456674218178, + -0.016813114285469055, + 0.009031321853399277, + 0.01741011068224907, + 0.023019110783934593, + -0.006098398473113775, + -0.004283109679818153, + -0.06802994012832642, + -0.019548194482922554, + -0.005702713970094919, + -0.018381968140602112, + -0.0013120060320943594, + -0.001289445091970265, + 0.013605988584458828, + -0.02854480780661106, + -0.03176581859588623, + -0.009211809374392033, + 0.022755321115255356, + 0.009440889582037926, + 0.018590223044157028, + -0.03809676691889763, + -0.04587161913514137, + -0.005865846760571003, + 0.013335256837308407, + 0.01350186113268137, + -0.02489340491592884, + -0.015063772909343243, + -0.043011583387851715, + -0.0001603129057912156, + -0.03004424273967743, + -0.025309914723038673, + 0.002393196104094386, + -0.002058252692222595, + 0.04120670631527901, + -0.016688160598278046, + 0.018187597393989563, + -0.02464349940419197, + -0.03493129089474678, + -0.0036236357409507036, + 0.01920110359787941, + 0.015133190900087357, + -0.006841174326837063, + -0.0014543135184794664, + 0.028336552903056145, + -0.02843373827636242, + -0.00767766498029232, + 0.0072403294034302235, + 0.006570442579686642, + 0.015896791592240334, + 0.0022699786350131035, + -0.03809676691889763, + -0.003299104981124401, + -0.03765248879790306, + 0.012557771988213062, + -0.025684773921966553, + 0.0360419861972332, + 0.0479263998568058, + -0.0030283736996352673, + 0.02625400386750698, + 0.023060761392116547, + 0.026101283729076385, + -0.007177853025496006, + -0.029211223125457764, + 0.0037208213470876217, + 0.017562830820679665, + -0.02898908592760563, + -0.032432232052087784, + -0.03368176147341728, + 0.021505791693925858, + 0.0009796658996492624, + -0.0032279512379318476, + -0.018854012712836266, + 0.0006924475892446935, + 0.020103542134165764, + -0.012037134729325771, + -0.004040145315229893, + -0.01795157417654991, + -0.011683100834488869, + -0.016979718580842018, + -0.038485508412122726, + 0.0034223224502056837, + 0.0013128736754879355, + -0.006292769685387611, + 0.018687408417463303, + -0.051924895495176315, + -0.012807677499949932, + 0.024615731090307236, + -0.0072958641685545444, + 0.001193127129226923, + 0.02464349940419197, + -0.003096056403592229, + -0.002486910903826356, + 0.018298665061593056, + 0.011051394045352936, + 0.012162087485194206, + -0.016438255086541176, + 0.0015436896355822682, + 0.017604483291506767, + 0.001009168685413897, + 0.002150231972336769, + 0.011204115115106106, + -0.004355998709797859, + 0.03523673117160797, + 0.01269660796970129, + 0.00808723270893097, + -0.029572198167443275, + 0.020825492218136787, + -0.00020966498414054513, + -0.012932630255818367, + 0.018965082243084908, + 0.0035021535586565733, + 0.024074269458651543, + -0.00024014395603444427, + -0.025684773921966553, + -0.04392790421843529, + 0.0207560732960701, + 0.024504661560058594, + 0.03084949590265751, + 0.0008876866195350885, + -0.029377827420830727, + 0.00963526125997305, + -0.026406724005937576, + 0.005345209501683712, + 0.005012001842260361, + 0.022810855880379677, + 0.014494542963802814, + -0.02428252436220646, + 0.03146037831902504, + 0.041845355182886124, + -0.011044452898204327, + 0.013147827237844467, + 0.006362187676131725, + 0.004501777235418558, + -0.003942959941923618, + -0.025157194584608078, + 0.024074269458651543, + 0.00044384330976754427, + -0.008246894925832748, + 0.008843892253935337, + -0.014661146327853203, + 0.0023584868758916855, + -0.040040478110313416, + 0.00767766498029232, + -0.017562830820679665, + 0.03357069194316864, + -0.0042241038754582405, + 0.016826998442411423, + 0.011224940419197083, + 0.004821101203560829, + -0.010815372690558434, + 0.03912415727972984, + -0.014911052770912647, + 0.008649521507322788, + 0.029988707974553108, + 0.006924476008862257, + 0.005539580713957548, + 0.011197173036634922, + -0.006834232248365879, + -0.011030568741261959, + 0.007948395796120167, + 0.01105833612382412, + 0.03562547639012337, + 0.010787605307996273, + 0.0071847946383059025, + 0.00631706602871418, + -0.03748588636517525, + -0.026226235553622246, + 0.03096056543290615, + 0.0014655940467491746, + 0.0017380608478561044, + -0.01040580403059721, + -0.011349893175065517, + -0.0006481934688054025, + 0.006476728245615959, + -0.0012833710061386228, + -0.020658887922763824, + -0.04203972592949867, + 0.06408698111772537, + -0.04903709143400192, + 0.03418157622218132, + 0.0010404068743810058, + -0.012467527762055397, + -0.03593091666698456, + -0.008934136480093002, + 0.0058936141431331635, + -0.008337138220667839, + -0.05103633925318718, + 0.0028930080588907003, + -0.0022404759656637907, + 0.01269660796970129, + -0.003141178283840418, + -0.00836490560323, + 0.009329820051789284, + -0.022713670507073402, + -0.031071634963154793, + 0.0006260663503780961, + 0.002627482870593667, + 0.017299043014645576, + 0.041290007531642914, + -0.00709108030423522, + 0.03537556901574135, + -0.05442395433783531, + 0.04317818582057953, + 0.020825492218136787, + 0.013238071464002132, + -0.006993894465267658, + 0.022269392386078835, + 0.0026691339444369078, + 0.019742567092180252, + 0.009774097241461277, + -0.005602057557553053, + 0.013008990325033665, + -0.005289675202220678, + 0.001479477621614933, + -0.01902061700820923, + 0.0436224639415741, + -0.012099610641598701, + -0.006292769685387611, + 0.002500794595107436, + -0.0007145747076719999, + -0.0018864425364881754, + 0.025129426270723343, + 0.026739932596683502, + 0.028905782848596573, + 0.0192705225199461, + 0.006494082510471344, + -0.0033129886724054813, + 0.005654121283441782, + 0.0021172582637518644, + 0.004831514321267605, + 0.021033747121691704, + -0.004394178744405508, + -0.008031697943806648, + -0.01609116420149803, + -0.003505624597892165, + -0.03218232840299606, + -0.018423618748784065, + 0.013883661478757858, + 0.02088102698326111, + -0.03351515904068947, + -0.003219274105504155, + -0.006622506305575371, + 0.029072387143969536, + -0.006667628418654203, + -0.014230753295123577, + 0.04606598988175392, + 0.0003381973074283451, + -0.028517041355371475, + 0.0011835821205750108, + 0.006806464865803719, + 0.007913687266409397, + -0.00699736550450325, + 0.000617389043327421, + 0.006594739388674498, + 0.012071843259036541, + -0.031682513654232025, + -0.007098021917045116, + 0.00698348181322217, + -0.00024556726566515863, + 0.018534688279032707, + -0.0021866767201572657, + -0.011828879825770855, + -0.020422866567969322, + 0.008295487612485886, + -0.0190761499106884, + -0.013203362002968788, + 0.01198159996420145, + 0.01852080412209034, + 0.015702420845627785, + 0.03912415727972984, + 0.010829255916178226, + -0.004064441658556461, + 0.012779910117387772, + 0.00033255707239732146, + 0.030432986095547676, + -0.014314054511487484, + -0.0017076903022825718, + 0.0145223094150424, + -0.0252127293497324, + 0.0012937836581841111, + 0.001966273644939065, + 0.027767322957515717, + 0.01900673285126686, + -0.0012182912323623896, + -0.0037138795014470816, + 0.008628695271909237, + -0.0007045958191156387, + 0.01010036375373602, + -0.01179417036473751, + -0.019589846953749657, + -0.006789110600948334, + -0.0031915067229419947, + 0.020589469000697136, + 0.0031793585512787104, + -0.05622882768511772, + 0.010030945762991905, + 0.012731317430734634, + 0.005001589190214872, + 0.003977668937295675, + -0.0007141408277675509, + -0.002490381710231304, + 0.03468138724565506, + 0.010752895846962929, + -0.027045372873544693, + -0.013842010870575905, + 0.01956207863986492, + -0.02197783626616001, + 0.019992472603917122, + -0.003533391747623682, + -0.00966302864253521, + 0.02854480780661106, + 0.014883285388350487, + -0.014841633848845959, + -0.023255132138729095, + 0.026434490457177162, + -0.009239576756954193, + 0.014098858460783958, + -0.009218751452863216, + 0.01628553494811058, + -0.013432442210614681, + 0.004460126161575317, + 0.011814995668828487, + 0.0031359719578176737, + 0.012349517084658146, + -0.02211667224764824, + 0.061532385647296906, + 0.05792263522744179, + 0.02025626227259636, + 0.006802994292229414, + 0.00839267298579216, + -0.025976330041885376, + 0.013446326367557049, + -0.01660485938191414, + -0.020645003765821457, + -0.0021779993548989296, + -0.020034123212099075, + -0.02910015359520912, + 0.020783841609954834, + -0.026476142928004265, + -0.001673848950304091, + -0.013196419924497604, + 0.03967950493097305, + 0.00045685924123972654, + -0.03284874185919762, + -0.006976539734750986, + 0.011134696193039417, + -0.013828126713633537, + -0.01424463652074337, + -0.03293204307556152, + 0.028461506590247154, + -0.015563584864139557, + -0.009496424347162247, + -0.00602203793823719, + -0.01882624439895153, + 0.005921381525695324, + -0.009329820051789284, + -0.02910015359520912, + 0.05370200425386429, + 0.046593569219112396, + -0.0013527892297133803, + -0.0013796888524666429, + 0.009211809374392033, + -0.003870070679113269, + 0.013363024219870567, + -0.01024614181369543, + 0.002674340270459652, + -0.011377660557627678, + -0.00114626984577626, + 0.0008390938164666295, + -0.040540292859077454, + -0.030210847035050392, + -0.006185171194374561, + 0.016632625833153725, + 0.04178982228040695, + 0.0180209930986166, + -0.008711997419595718, + 0.006921005435287952, + -0.014980470761656761, + 0.01666039414703846, + -0.005452807992696762, + 0.010412746109068394, + 0.013008990325033665, + 0.014411240816116333, + -0.01334219891577959, + 0.022880274802446365, + -0.0015862083528190851, + -0.011988542042672634, + 0.02854480780661106, + 0.02136695571243763, + 0.01579960621893406, + -0.007108434569090605, + 0.002568477299064398, + 0.0006889767246320844, + -0.029877640306949615, + 0.023796595633029938, + -0.01641048863530159, + -0.03368176147341728, + -0.014772215858101845, + -0.0011705661891028285, + -0.003396290587261319, + -0.0014048529556021094, + -0.009107681922614574, + 0.013487976975739002, + -0.002967632608488202, + 0.046038221567869186, + 0.03751365467905998, + -0.02532379887998104, + -0.008774474263191223, + -0.0007740141008980572, + -0.015396980568766594, + 0.026184584945440292, + -0.02576807513833046, + 0.023005226626992226, + 0.0057131266221404076, + -0.004644084721803665, + 0.02018684335052967, + -0.008725881576538086, + -0.03834667429327965, + 0.016979718580842018, + 0.0008265117066912353, + -0.035014595836400986, + 0.0180209930986166, + -0.0010308618657290936, + 0.010600175708532333, + 0.05881119146943092, + 0.00863563735038042, + -0.04812077060341835, + 0.00926040206104517, + -0.007136201951652765, + -0.029766570776700974, + -0.005841550417244434, + -0.015369213186204433, + 0.011683100834488869, + -0.018923429772257805, + 0.011322125792503357, + -0.021950067952275276, + -0.004362940788269043, + 0.03282097727060318, + -0.018381968140602112, + -0.028655877336859703, + 0.00238451873883605, + -0.024629615247249603, + 0.013383849523961544, + 0.00969773717224598, + -0.026240119710564613, + -0.018229248002171516, + 0.003911721520125866, + 0.010759837925434113, + -0.005886672530323267, + -0.03584761545062065, + 0.008753648959100246, + 0.0012556036235764623, + 0.0014508425956591964, + -7.673977233935148e-5, + 0.0023272486869245768, + -0.013022874481976032, + -0.043705765157938004, + -0.047593191266059875, + -0.017729435116052628, + 0.022033371031284332, + -0.013175594620406628, + 0.013960021547973156, + -0.0013267573667690158, + -0.006271943915635347, + 0.002346338704228401, + -0.017632249742746353, + 0.03287651017308235, + -0.020700538530945778, + -0.025101659819483757, + 0.030238615348935127, + 0.014140509068965912, + 0.01489716861397028, + 0.008531509898602962, + -0.008031697943806648, + 0.016771463677287102, + 0.018229248002171516, + 0.019909171387553215, + 0.032987579703330994, + 0.005921381525695324, + -0.012620247900485992, + -0.014577844180166721, + -0.01010036375373602, + -0.013661522418260574, + -0.005577760748565197, + 0.00944783166050911, + 0.0014786099782213569, + -0.029461128637194633, + 0.009336762130260468, + 0.002146761165931821, + 0.00018211458518635482, + -0.010961150750517845, + -0.009676911868155003, + 0.007365282159298658, + -0.02496282383799553, + -0.027239743620157242, + 0.0026118638925254345, + 0.03418157622218132, + -0.0010707774199545383, + -0.032543301582336426, + -0.017798854038119316, + -0.025934679433703423, + -0.010697361081838608, + 0.012175970710814, + -0.00947559904307127, + 0.031987957656383514, + 0.011662275530397892, + 0.03165474906563759, + -0.008587044663727283, + -0.00031607021810486913, + 0.008219127543270588, + 0.02737857960164547, + 0.011120812967419624, + -0.004463597200810909, + -0.018798477947711945, + 0.011231882497668266, + 0.019048383459448814, + -0.00623723492026329, + -0.019187219440937042, + 0.001337170135229826, + -0.0500367172062397, + 0.01617446541786194, + -0.028628109022974968, + -0.021963952109217644, + -0.006473257206380367, + -0.013453267514705658, + 0.0027038431726396084, + 0.01198159996420145, + -0.036514028906822205, + 0.0521470308303833, + -0.028878016397356987, + -0.03554217144846916, + 0.007545770145952702, + -0.0015384831931442022, + -0.005796428769826889, + -0.010919500142335892, + 0.03196018934249878, + -0.030682891607284546, + -0.04023485258221626, + -0.0037624721881002188, + 0.0025945091620087624, + 0.023074645549058914, + 0.00956584233790636, + -0.001477742218412459, + -0.031182702630758286, + 0.03276544064283371, + 0.005133484024554491, + -0.0007983105606399477, + -0.00851762667298317, + -0.006695395801216364, + 0.002162380376830697, + 0.009669969789683819, + -0.0156746543943882, + -0.017923807725310326, + -0.0038110651075839996, + -0.0275590680539608, + 0.0024070797953754663, + -0.004175511188805103, + -0.0003804990847129375, + 0.016993600875139236, + 0.033653996884822845, + -0.007802617736160755, + -0.014508426189422607, + -0.030544055625796318, + -0.013848952017724514, + 0.014425124041736126, + -0.0028044995851814747, + -0.024365825578570366, + 0.009350646287202835, + -0.015480282716453075, + 0.016146698966622353, + -0.0016052983701229095, + 0.0019766862969845533, + -0.013543511740863323, + -0.010121189057826996, + 0.025184961035847664, + -0.019520428031682968, + -0.003118617460131645, + -0.020395098254084587, + -0.0044774808920919895, + -0.0008373583550564945, + 0.001292916014790535, + 0.00028049334650859237, + 0.005032827146351337, + 0.02074219100177288, + 0.002733345841988921, + 0.005765190348029137, + -0.01721573993563652, + -0.01684088073670864, + 0.006157403811812401, + -0.015063772909343243, + -0.017382344231009483, + 0.014980470761656761, + -0.0770820900797844, + -0.037680257111787796, + -0.016021745279431343, + 0.006341362372040749, + 0.01875682733952999, + -0.00458507938310504, + 0.02020072750747204, + -0.013078409247100353, + 0.02068665623664856, + 0.004085267428308725, + -0.012904862873256207, + -0.017423994839191437, + 0.020325681194663048, + 0.009350646287202835, + -0.012425877153873444, + 0.0016990130534395576, + -0.010086479596793652, + -0.012120436877012253, + 0.01684088073670864, + -0.008836950175464153, + -0.004508718848228455, + 0.006553088314831257, + 0.03332078829407692, + 0.0025025298818945885, + 0.004206749610602856, + 0.023629991337656975, + -0.014480658806860447, + -0.006566972006112337, + -0.013363024219870567, + -0.019964704290032387, + 0.023074645549058914, + 0.014605611562728882, + -0.01920110359787941, + -0.022269392386078835, + 0.03065512515604496, + 0.010732070542871952, + 0.0256431233137846, + 0.004380295053124428, + 0.016299419105052948, + -0.004841926973313093, + 0.002613599179312587, + -0.014786099083721638, + -0.006646803114563227, + -0.018659640103578568, + 0.007608246523886919, + -0.00744858430698514, + -0.001952389837242663, + -0.014084974303841591, + 0.019353823736310005, + 0.018742943182587624, + 0.017576714977622032, + -0.00991293415427208, + -0.0004451448912732303, + -0.024240873754024506, + 0.00011020155943697318, + -0.003908250480890274, + -0.0009605758241377771, + -0.004952996037900448, + 0.02172793075442314, + 0.0003674831532407552, + 0.055451344698667526, + 0.006976539734750986, + 0.022158322855830193, + 0.008156650699675083, + -0.006830761209130287, + -0.0018066114280372858, + 0.00438376609236002, + 0.009732446633279324, + 0.04048475623130798, + -0.018965082243084908, + 0.0020877555944025517, + 0.003977668937295675, + -0.015105423517525196, + 0.030266381800174713, + -0.018729059025645256, + 0.03740258514881134, + 0.02737857960164547, + 0.008524567820131779, + 0.010759837925434113, + 0.009774097241461277, + -0.023546690121293068, + 0.004564253613352776, + 0.008531509898602962, + -0.005817254073917866, + 0.004775979556143284, + -0.02501835860311985, + 0.02644837461411953, + -0.027850624173879623, + -0.002735081361606717, + 0.0016599652590230107, + 0.006417722441256046, + 0.0011549470946192741, + 0.02693430334329605, + 0.010940325446426868, + -0.01489716861397028, + 0.016993600875139236, + 0.009454773738980293, + -0.02031179703772068, + 0.014980470761656761, + 0.005525697022676468, + -0.018687408417463303, + -0.02024237811565399, + 0.01666039414703846, + -0.008177476935088634, + -0.02068665623664856, + 0.01807652786374092, + 0.001393572543747723, + 0.022838622331619263, + -0.0008746706880629063, + 0.0011731693521142006, + 0.012745201587677002, + 0.01130130048841238, + -0.0470656119287014, + -0.0011801111977547407, + -5.580581273534335e-5, + 0.03709714487195015, + -0.016216116026043892, + -0.0066745700314641, + -0.015063772909343243, + -0.011995483189821243, + 0.014772215858101845, + 0.008614812046289444, + 0.01157897338271141, + -0.01832643337547779, + -0.005702713970094919, + -0.013043699786067009, + -0.005973445251584053, + -0.0025129427667707205, + -0.01455007679760456, + 0.019173337146639824, + -0.00383189064450562, + 0.013647639192640781, + -0.0025962446816265583, + 0.005431982688605785, + -0.008781415410339832, + 0.011572032235562801, + 0.02873917855322361, + 0.004203278571367264, + -0.006924476008862257, + -0.015757955610752106, + 0.020103542134165764, + 0.0038492451421916485, + -0.013557394966483116, + -0.02043674886226654, + 0.004213691223412752, + -0.002868711482733488, + -0.00517166405916214, + 0.008705055341124535, + -0.019742567092180252, + 0.002379312412813306, + -0.026059633120894432, + 0.006893238052725792, + 0.027017604559659958, + 0.02056170254945755, + -0.01176640298217535, + -0.010176723822951317, + 0.006421193480491638, + 0.008788357488811016, + -0.0027611132245510817, + -0.004057500045746565, + -0.016132814809679985, + -1.2839675036957487e-5, + -0.0013423764612525702, + -0.0002614033001009375, + 0.004355998709797859, + -0.02124200202524662, + -0.008246894925832748, + -0.01938159205019474, + 0.003911721520125866, + -0.008469033055007458, + -0.01943712681531906, + 0.013335256837308407, + -0.03426487743854523, + -0.0075249443762004375, + 0.01380730140954256, + -0.03779132664203644, + -0.008975787088274956, + -0.007379165850579739, + -0.0028010287787765265, + -0.0207560732960701, + -0.012613306753337383, + 0.010142014361917973, + 0.0025563291274011135, + 0.03426487743854523, + 0.0010629678145051003, + -0.011856647208333015, + -0.017174089327454567, + 0.0008668610826134682, + -0.011217998340725899, + -0.0012772968038916588, + 0.01943712681531906, + 0.01832643337547779, + -0.018742943182587624, + 0.02174181304872036, + -0.003904779674485326, + 0.0022560949437320232, + 0.021269768476486206, + -0.007851210422813892, + -0.007212562020868063, + 0.023296784609556198, + -0.038374438881874084, + -0.05314665660262108, + 0.001292048254981637, + 0.023449504747986794, + -0.011009743437170982, + 0.019548194482922554, + -0.017118554562330246, + 0.01288403756916523, + 0.01820147968828678, + -0.015188725665211678, + -0.004571195691823959, + 0.011162463575601578, + 0.01455007679760456, + -0.011724752373993397, + 0.020825492218136787, + 0.018992848694324493, + 0.01875682733952999, + -0.03462585061788559, + -0.01635495387017727, + -0.014827750623226166, + 0.01269660796970129, + 0.005098774563521147, + 0.01132906787097454, + -0.011967715807259083, + -0.01059323363006115, + 0.009531133808195591, + 0.022519299760460854, + -0.019923053681850433, + -0.02117258310317993, + 0.005192489363253117, + 0.00191941624507308, + 2.116444920829963e-5, + -0.018312549218535423, + -0.017909923568367958, + -0.007281980477273464, + -0.005473633296787739, + 0.016646509990096092, + -0.019478777423501015, + 0.005143896676599979, + -0.007969222031533718, + -0.021783465519547462, + -0.032793208956718445, + -0.008128883317112923, + -0.006299711298197508, + 0.028905782848596573, + 0.010759837925434113, + -0.01604951173067093, + -0.010669593699276447, + 0.013626813888549805, + -0.004644084721803665, + 0.004657968413084745, + -0.0021346129942685366, + 0.006591268349438906, + 0.04609375447034836, + -0.01529979519546032, + -0.00766378128901124, + 0.02558758854866028, + -0.00044319251901470125, + 0.00835796445608139, + -0.014091916382312775, + -0.013744824565947056, + -0.0019853636622428894, + 0.010426629334688187, + -0.00928816944360733, + 0.012425877153873444, + 0.009066031314432621, + 0.008774474263191223, + 0.015105423517525196, + 0.011009743437170982, + -0.012772968970239162, + -0.0012130849063396454, + -0.019367707893252373, + -0.024865638464689255, + 0.0008473371854051948, + 0.0018482623854652047, + 0.0017658282304182649, + 0.008809182792901993, + -0.006268473342061043, + 0.015383096411824226, + -0.006185171194374561, + -0.01334219891577959, + 0.005827666725963354, + -0.018590223044157028, + 0.029266757890582085, + 0.01777108572423458, + -0.01350186113268137, + 0.03457031771540642, + 0.0220472551882267, + 0.018159829080104828, + -0.002672604750841856, + 0.03831890597939491, + 0.0007310615619644523, + 0.021394722163677216, + -0.015757955610752106, + 0.01192606519907713, + 0.0005466691800393164, + 0.01461949571967125, + 0.01418216060847044, + 0.03587538003921509, + -0.012030192650854588, + 0.006077572703361511, + -0.011960774660110474, + -0.01672981120646, + -0.005532639101147652, + 0.0023307197261601686, + -0.00021400362311396748, + 0.02571254037320614, + 0.008920252323150635, + 0.005234140437096357, + -0.000765336852055043, + 0.015827374532818794, + 0.020894911140203476, + -0.00248517538420856, + -0.0060567473992705345, + 0.002070401096716523, + 0.012002425268292427, + 0.009572784416377544, + -0.005057123489677906, + 0.01642437092959881, + -0.04131777584552765, + -0.009211809374392033, + -0.014577844180166721, + 0.005671475548297167, + 0.0009866077452898026, + -0.028655877336859703, + -0.013258896768093109, + -0.010287793353199959, + -0.020422866567969322, + 0.009343704208731651, + 0.002002718159928918, + 0.0145223094150424, + 0.036319658160209656, + 0.006369129754602909, + 0.0036132228560745716, + -0.006081043742597103, + 0.008725881576538086, + -0.01721573993563652, + -0.0054632206447422504, + 0.006337891332805157, + -0.001294651417993009, + -0.00602203793823719, + -0.0064663151279091835, + -0.013335256837308407, + 0.008698114193975925, + 0.016007861122488976, + 0.031071634963154793, + 0.013946138322353363, + 0.011884414590895176, + 0.010884790681302547, + 0.0007753157406114042, + 0.00023819156922399998, + 0.02496282383799553, + -0.016077280044555664, + 0.017049135640263557, + -0.008031697943806648, + 0.020422866567969322, + 0.02236657775938511, + 0.008656462654471397, + -0.017326809465885162, + -0.0002735515299718827, + -0.0042449296452105045, + -0.0266982801258564, + 0.01148873008787632, + 0.0299054067581892, + -0.0018083469476550817, + 0.00552916806191206, + 0.0057131266221404076, + -0.016438255086541176, + -0.0032140675466507673, + -0.012627189978957176, + 0.014147451147437096, + -0.00678216852247715, + -0.006306653376668692, + 0.004165098536759615, + -0.00836490560323, + 0.00956584233790636, + 0.011204115115106106, + 0.012745201587677002, + -0.002301216823980212, + -0.006587797310203314, + 0.015813490375876427, + -0.023505039513111115, + -0.031238237395882607, + -0.00851762667298317, + 0.00666068634018302, + -0.0258791446685791, + 0.006053276360034943, + -0.0013024610234424472, + 0.0014569166814908385, + 0.0015931501984596252, + -0.0024591435212641954, + 0.005890143569558859, + 0.015147075057029724, + 0.026365073397755623, + 0.004001965280622244, + 0.009364529512822628, + -0.018784593790769577, + 0.0047655669040977955, + -0.020853258669376373, + -0.0072611547075212, + -0.02007577382028103, + -0.020048007369041443, + -0.010523815639317036, + 0.025934679433703423, + -0.00904520507901907, + 0.013696231879293919, + -0.002811441430822015, + 0.018062643706798553, + -0.003356375265866518, + -0.005740894004702568, + -0.0077817924320697784, + 0.016452139243483543, + -0.00028374732937663794, + -0.0030439926777035, + 0.0016842617187649012, + -0.004696148447692394, + 0.009767156094312668, + 0.015688536688685417, + 0.009211809374392033, + -0.027045372873544693, + 0.003399761626496911, + -0.03009977750480175, + 0.0025528583209961653, + -0.023380085825920105, + -0.017063019797205925, + 0.01789603941142559, + -0.0076151881366968155, + 0.01328666415065527, + 0.0018482623854652047, + 0.016202233731746674, + -0.0038874251767992973, + -0.0028739178087562323, + -0.0199369378387928, + 0.0018014051020145416, + 0.04873165115714073, + -0.009433947503566742, + 0.019867518916726112, + -0.019312173128128052, + 0.02830878645181656, + -0.026045748963952065, + -0.015313678421080112, + -0.0028027640655636787, + 0.0018864425364881754, + -0.00969079602509737, + 0.008337138220667839, + -0.014994353987276554, + 0.01653544045984745, + 0.006028980016708374, + 0.011648392304778099, + 0.008427382446825504, + -0.011703926138579845, + -0.04717668145895004, + 0.007976163178682327, + -0.004380295053124428, + 0.0026188057381659746, + -0.009954585693776608, + -0.0033251368440687656, + -0.0015193931758403778, + 0.006990423426032066, + 0.03509789705276489, + 0.019659264013171196, + -0.01405720692127943, + -0.008566219359636307, + 0.016757579520344734, + 0.0031915067229419947, + 0.023754945024847984, + 0.027572952210903168, + -0.02812829799950123, + -0.039040856063365936, + -0.0010239200200885534, + -0.0003496947174426168, + -0.013147827237844467, + -0.0012582067865878344, + -0.013835068792104721, + 0.00316547485999763, + -0.01331443153321743, + -0.025282148271799088, + -0.023185715079307556, + 0.00028353038942441344, + -0.03856880962848663, + 0.02700372226536274, + 0.0015810019103810191, + -0.0068619996309280396, + 0.0053729768842458725, + 0.023754945024847984, + -0.02768402174115181, + 0.02179734781384468, + 0.00792757049202919, + -0.003634048392996192, + 0.016632625833153725, + -0.015008238144218922, + 0.005504871718585491, + -0.03376506641507149, + 0.009794923476874828, + 0.007157027255743742, + -0.03246000036597252, + -0.012092669494450092, + -0.00956584233790636, + 0.03795792907476425, + 0.017993224784731865, + 0.01609116420149803, + -0.013668464496731758, + -0.031738050282001495, + 0.012932630255818367, + 0.0011992012150585651, + -0.0007740141008980572, + 0.010711245238780975, + 0.003241834929212928, + -0.015619118697941303, + 0.012509179301559925, + -0.012356458231806755, + 0.003113411134108901, + -0.029516663402318954, + -0.026545559987425804, + -0.021200351417064667, + 0.0012200267519801855, + -0.005057123489677906, + 0.0019437125883996487, + -0.004741270560771227, + -0.003030109219253063, + 0.02086714282631874, + -0.018284782767295837, + 0.00574436504393816, + 0.0016981452936306596, + -0.0013172123581171036, + -0.0011731693521142006, + -0.015424747951328754, + -0.009135449305176735, + -0.02421310544013977, + -0.011384602636098862, + 0.0009293375769630075, + -0.00016150603187270463, + 0.015702420845627785, + -0.005102245602756739, + -0.002816647756844759, + -0.0066641573794186115, + 0.016674276441335678, + -0.004713503178209066, + -0.014355706050992012, + 0.013946138322353363, + 0.0016556265763938427, + 0.0062545896507799625, + -0.0012078785803169012, + 0.017146321013569832, + -0.018659640103578568, + 0.07924793660640717, + -0.0018118178704753518, + -0.005567348096519709, + 0.005268849432468414, + 0.011641450226306915, + -0.0133491400629282, + 0.016813114285469055, + 0.01721573993563652, + 0.024296406656503677, + 0.0072958641685545444, + -0.00842044036835432, + -0.016757579520344734, + 0.026781583204865456, + 0.015591351315379143, + -0.017118554562330246, + -0.0012087462237104774, + 0.029627732932567596, + 0.002820118796080351, + 0.021700162440538406, + 0.018923429772257805, + -0.008816124871373177, + 0.02100597880780697, + -0.018965082243084908, + 0.01535532996058464, + -0.0029120980761945248, + 0.0220472551882267, + -0.0018257014453411102, + -0.0018447914626449347, + -0.004841926973313093, + 0.019367707893252373, + -0.007344456855207682, + 0.021755697205662727, + -0.022505415603518486, + 0.0029363944195210934, + -0.014397356659173965, + 0.009975410997867584, + 0.007379165850579739, + 0.021075397729873657, + -0.013543511740863323, + 0.011259649880230427, + 0.0032765441574156284, + 6.773708446417004e-5, + 0.03284874185919762, + 0.025309914723038673, + -0.009857399389147758, + -0.0042796386405825615, + -0.001869087922386825, + -0.006622506305575371, + 0.005563877522945404, + 0.011648392304778099, + -0.001971479970961809, + -0.005869317799806595, + 0.006709279492497444, + -0.0010369359515607357, + 0.010572408325970173, + 0.0007935379981063306, + 0.009572784416377544, + -0.01520260889083147, + -0.02984987199306488, + 0.006938359700143337, + 0.003549010958522558, + -0.021019862964749336, + -0.0192705225199461, + 0.0008980993297882378, + -0.004716973751783371, + -0.019312173128128052, + -0.003443147987127304, + -0.0243935938924551, + 0.0005987329059280455, + 0.0037624721881002188, + 0.006212938576936722, + 0.026531677693128586, + 0.012772968970239162, + -0.028281018137931824, + -0.027295278385281563, + 0.012890979647636414, + -0.004029732663184404, + 0.016368836164474487, + 0.003880483331158757, + -0.0036236357409507036, + 0.007281980477273464, + 0.004185923840850592, + -0.0066849831491708755, + -0.022324927151203156, + 0.006851586978882551, + 0.01353656966239214, + 0.003148120129480958, + -0.021519675850868225, + 0.0027142558246850967, + -0.010121189057826996, + -0.00947559904307127, + 0.011127755045890808, + 0.003118617460131645, + 0.0076151881366968155, + -0.004678793717175722, + -0.01359210442751646, + 0.0043698824010789394, + -0.024574080482125282, + 0.0015549700474366546, + 0.017909923568367958, + 0.002403608988970518, + 0.0007080667419359088, + -0.005223727785050869, + -0.019714798778295517, + -0.008524567820131779, + -0.015049888752400875, + 0.002334190532565117, + 0.015341445803642273, + -0.028628109022974968, + 0.004307406023144722, + -0.010801488533616066, + -0.014911052770912647, + 0.021963952109217644, + -0.023005226626992226, + -0.036264125257730484, + 0.010739011690020561, + -0.005390331614762545, + -0.016368836164474487, + 0.002820118796080351, + -0.02687876857817173, + -0.00354554015211761, + -0.0022213857155293226, + -0.0015905469190329313, + -0.018409734591841698, + 0.005508342757821083, + 0.014355706050992012, + -0.0029485425911843777, + -0.004602433647960424, + -0.0038041232619434595, + -0.010697361081838608, + -0.005109187215566635, + -0.005289675202220678, + 0.01646602153778076, + 0.0004117373318877071, + 0.006709279492497444, + -0.009489482268691063, + -0.012710492126643658, + 0.00923263467848301, + 0.033792831003665924, + -0.03151591122150421, + 0.01832643337547779, + -0.003821477759629488, + 0.005633295513689518, + 0.02575419284403324, + 0.01176640298217535, + 0.015216493047773838, + -0.02179734781384468, + -0.019103918224573135, + 9.669753490015864e-5, + -0.01037803664803505, + 0.03420934081077576, + -0.017076903954148293, + -0.0042241038754582405, + -0.009142391383647919, + 0.00221270858310163, + 0.004720444791018963, + -0.005411156918853521, + 0.012738259509205818, + -0.004446242470294237, + -0.01291180495172739, + 0.008323254995048046, + 0.005025885533541441, + -0.01641048863530159, + 0.0016660393448546529, + -0.01402943953871727, + -0.014286288060247898, + 0.016993600875139236, + 0.025504285469651222, + 0.008295487612485886, + -0.01146096270531416, + -0.005685359239578247, + 0.005876259878277779, + 0.022324927151203156, + -0.02401873469352722, + 0.016299419105052948, + 0.009031321853399277, + 0.0071500856429338455, + -6.952677358640358e-5, + -0.021019862964749336, + 0.018992848694324493, + 0.008698114193975925, + -0.011197173036634922, + 0.01882624439895153, + 0.005751306656748056, + -0.009704679250717163, + -0.027531299740076065, + 0.022685902193188667, + -0.012710492126643658, + 0.013168652541935444, + 0.017854388803243637, + -0.011731693521142006, + 0.008226069621741772, + -0.006639861036092043, + 0.001865616999566555, + -0.00393254728987813, + -0.014508426189422607, + 0.017923807725310326, + 0.018590223044157028, + -0.011481788009405136, + -0.008871659636497498, + -0.005234140437096357, + 0.0028982143849134445, + 0.003960314206779003, + -0.007885919883847237, + 0.0003978536697104573, + -0.025837494060397148, + -0.01647990569472313, + -0.013390791602432728, + 0.0028565633110702038, + 0.021019862964749336, + -0.045677244663238525, + -0.0428449809551239, + 0.001817024196498096, + -0.004151214845478535, + -0.028655877336859703, + 0.017937690019607544, + 0.01148873008787632, + 0.04212302714586258, + 0.007712373975664377, + 0.00315853301435709, + 0.02385213039815426, + -0.00019231039914302528, + 0.020700538530945778, + -0.024199221283197403, + -0.0063795424066483974, + -0.002289068652316928, + 0.029988707974553108, + -0.001718103070743382, + -0.007629071827977896, + -0.024935055524110794, + 0.03426487743854523, + -0.009427006356418133, + 0.004484422504901886, + 0.006580855697393417, + 0.0030561410821974277, + 0.045982684940099716, + 0.01710467040538788, + 0.012648015283048153, + 0.008226069621741772, + -0.005591644439846277, + 0.008413499221205711, + -2.093395778501872e-5, + -0.005265378393232822, + -0.005418098997324705, + -0.008718939498066902, + -0.0012243654346093535, + 0.001479477621614933, + 0.008573160506784916, + -0.00885083433240652, + -2.2723648726241663e-5, + -0.0029450717847794294, + -0.0018066114280372858, + -0.015771839767694473, + 0.014071091078221798, + -0.013154769316315651, + 0.014536193571984768, + 0.009794923476874828, + -0.004147743806242943, + -0.010558524169027805, + -0.013578221201896667, + 0.006240705959498882, + 0.004928699694573879, + -0.010745953768491745, + -0.00022137931955512613, + -0.0033824071288108826, + 0.01857633888721466, + -0.02775343880057335, + 0.0036583447363227606, + -0.006348303984850645, + 0.012807677499949932, + -0.004040145315229893, + 0.007281980477273464, + 0.018659640103578568, + -0.0023671642411500216, + -0.006108811125159264, + 0.0020304855424910784, + 0.003550746478140354, + -0.013217245228588581, + 0.015216493047773838, + 0.011537322774529457, + -0.005588173866271973, + 0.009517249651253223, + -0.0020374273881316185, + -0.015272027812898159, + 0.0046753231436014175, + -0.025101659819483757, + 0.003021431853994727, + 0.007587420754134655, + -0.009218751452863216, + -0.010961150750517845, + 0.018729059025645256, + -0.008760590106248856, + 0.02249153144657612, + -0.019770333543419838, + 0.0024174924474209547, + 0.0032834860030561686, + 0.019478777423501015, + 0.007538828067481518, + 0.015063772909343243, + -0.0031758875120431185, + 0.0015853405930101871, + -0.022574832662940025, + -0.008899427019059658, + -0.023879896849393845, + 0.015827374532818794, + 0.002766319550573826, + 0.012349517084658146, + 0.00842044036835432, + -0.014577844180166721, + 0.0051404256373643875, + 0.004932170733809471, + 0.0047447411343455315, + -0.018173713237047195, + -0.015147075057029724, + -0.023116296157240868, + -0.008871659636497498, + 0.001721573993563652, + 0.019034499302506447, + -0.013425501063466072, + -0.006226822268217802, + 0.009489482268691063, + -0.010496048256754875, + 0.007795675657689571, + 0.004994647111743689, + 0.008441266603767872, + 0.004057500045746565, + 0.013717057183384895, + 0.00833019707351923, + 0.0020912264008075, + -0.01529979519546032, + -0.006136578507721424, + 0.0068967086263000965, + -0.021075397729873657, + 0.005074478220194578, + -0.023324551060795784, + 0.02179734781384468, + -0.00543545326218009, + -0.017979340627789497, + -0.008816124871373177, + -0.006927947048097849, + -0.015688536688685417, + -0.003540333593264222, + -0.013744824565947056, + -0.0004698751727119088, + 0.0049842344596982, + 0.031432610005140305, + 0.0021328774746507406, + -0.007996989414095879, + 0.021103166043758392, + -0.007386107929050922, + 0.004671852104365826, + 0.02303299494087696, + -0.0011749048717319965, + 0.011315183714032173, + -0.010496048256754875, + 0.021894533187150955, + 0.009572784416377544, + -0.0004236685927025974, + 0.006490611936897039, + 0.004321289714425802, + -0.005820725113153458, + 0.013883661478757858, + -0.011481788009405136, + 0.00509183295071125, + 0.013043699786067009, + -0.013293606229126453, + -0.010829255916178226, + 0.026601094752550125, + -0.03404273837804794, + -0.004699619486927986, + 0.0038041232619434595, + -0.03443147987127304, + -0.02056170254945755, + -0.01195383258163929, + -0.02360222488641739, + 0.01347409375011921, + 0.014425124041736126, + 0.0048002758994698524, + 0.0027541713789105415, + 0.0006338758976198733, + 0.005008530803024769, + -0.007035545539110899, + -0.007163969334214926, + -0.014341821894049644, + -0.007157027255743742, + 0.016743695363402367, + 0.024699034169316292, + -0.007323631551116705, + 0.002676075790077448, + -0.025046125054359436, + -0.00421022018417716, + -0.010537698864936829, + 0.006153932772576809, + -0.0012495295377448201, + -0.003595868358388543, + -0.012363400310277939, + -0.0133491400629282, + 0.021089281886816025, + 0.001382292015478015, + 0.009857399389147758, + 0.010468280874192715, + 0.0021311419550329447, + 0.015771839767694473, + 0.026712164282798767, + -0.005629824940115213, + -0.010579350404441357, + -0.0339316688477993, + 0.02619846910238266, + 0.015466398559510708, + -0.02211667224764824, + 0.02174181304872036, + 0.0003063082695007324, + -0.017729435116052628, + -0.0015315413475036621, + 0.007288922090083361, + -0.002047840040177107, + -0.0017597540281713009, + -0.01660485938191414, + -0.0030491992365568876, + 0.003960314206779003, + 0.015285911038517952, + 0.013557394966483116, + 0.030321916565299034, + -0.016674276441335678, + -0.006074101664125919, + -0.002476498018950224, + 0.022213857620954514, + -0.00811500009149313, + -0.0028062351047992706, + 0.0018916488625109196, + -0.0008716336451470852, + -0.012071843259036541, + 0.0007931041764095426, + 0.0001478392950957641, + -0.014480658806860447, + -0.01269660796970129, + 0.03618082031607628, + -0.0015948856016620994, + 0.01710467040538788, + -0.002875653328374028, + -0.00172591267619282, + -0.005289675202220678, + 0.008677287958562374, + 0.03751365467905998, + 0.0074763516895473, + 0.027725672349333763, + 0.0035923973191529512, + 0.016757579520344734, + -0.005161250941455364, + 0.004321289714425802, + -0.028100531548261642, + 0.002401873469352722, + -0.015216493047773838, + -0.007518002763390541, + -0.011336009949445724, + -0.008059465326368809, + -0.004390707705169916, + -0.011877472512423992, + 0.00104908412322402, + -0.02104763127863407, + 0.017618365585803986, + 0.01204407587647438, + -0.010489106178283691, + 0.0235328059643507, + -0.010350269265472889, + -0.0017510767793282866, + 0.018687408417463303, + 0.012731317430734634, + 0.00029068917501717806, + 0.01666039414703846, + 0.0031810938380658627, + 0.017507297918200493, + 0.022810855880379677, + 0.025171078741550446, + -0.028322668746113777, + 0.0037902395706623793, + -0.014827750623226166, + -0.011106928810477257, + -0.004588549956679344, + -0.013147827237844467, + -0.021339187398552895, + -0.010509931482374668, + -0.0216168612241745, + 0.011988542042672634, + 0.027545183897018433, + -0.027267511934041977, + -0.022019486874341965, + 0.012113494798541069, + 0.005855434108525515, + -0.013008990325033665, + 0.01108610350638628, + 0.007358340546488762, + -0.0034448835067451, + -0.016646509990096092, + 0.01219679694622755, + -0.006435077171772718, + 0.016979718580842018, + 0.037374816834926605, + 0.004255342297255993, + -0.0025181490927934647, + 0.008267720229923725, + -0.011099987663328648, + 0.000715442409273237, + 0.01845138520002365, + 0.0014005143893882632, + 0.020950445905327797, + -0.019423242658376694, + 0.03293204307556152, + -0.024601848796010017, + 0.012988165020942688, + 0.00668845372274518, + -0.016202233731746674, + 0.004439300857484341, + 0.006216409616172314, + 0.004727386869490147, + 0.024171454831957817, + -0.002155438531190157, + 0.0075249443762004375, + 0.02342173643410206, + 0.006389955058693886, + 0.007760966662317514, + -0.012432819232344627, + 0.0029745744541287422, + 0.00972550455480814, + 0.010440513491630554, + 0.0020339563488960266, + -0.010273909196257591, + -0.0051404256373643875, + 0.00032886923872865736, + -0.006518378853797913, + -0.009628319181501865, + 0.0175905991345644, + 0.0015081127639859915, + 0.0028392088133841753, + 0.009517249651253223, + 0.023518921807408333, + -0.0016478170873597264, + 0.00687588332220912, + 0.0030787019059062004, + -0.02800334431231022, + 0.009107681922614574, + 0.006879354361444712, + -0.006362187676131725, + -0.010384978726506233, + -0.01089867390692234, + 0.0017840504879131913, + -0.003488269867375493, + 0.009496424347162247, + 0.011933007277548313, + 0.00679605221375823, + -0.0029468070715665817, + 0.008371847681701183, + 0.013550453819334507, + 0.011558148078620434, + 0.02607351541519165, + -0.015424747951328754, + 0.004071383737027645, + -0.021839000284671783, + 0.010496048256754875, + 0.0057131266221404076, + 0.0025198846124112606, + -0.01666039414703846, + 0.015285911038517952, + -4.2518713598838076e-5, + -0.05061982944607735, + 0.003828419605270028, + -0.0020513110794126987, + 0.004071383737027645, + 0.002582360990345478, + 0.006150462199002504, + -0.008739764802157879, + -0.0014291494153439999, + -0.0020808137487620115, + -0.005459750071167946, + -0.005806841421872377, + 0.01603562943637371, + -0.00555693544447422, + -0.016993600875139236, + 0.018854012712836266, + 0.017937690019607544, + 0.00842044036835432, + 0.011093045584857464, + -0.006914063356816769, + 0.0033338142093271017, + 0.00042735645547509193, + 0.0033737297635525465, + 0.02929452620446682, + 0.0013423764612525702, + 0.01814594492316246, + -0.009739388711750507, + -0.002344603417441249, + -0.030072011053562164, + 5.7161636505043134e-5, + 0.02129753679037094, + 0.0035316564608365297, + 0.003200183855369687, + 0.004536486230790615, + 0.008239952847361565, + -0.004543428309261799, + -0.0063240076415240765, + -0.0027472295332700014, + 0.007104963529855013, + -0.0090104965493083, + -0.0012148204259574413, + 0.007399991620332003, + 0.003540333593264222, + 0.011308242566883564, + -0.017757203429937363, + -0.01628553494811058, + -0.023088529706001282, + -0.03879094868898392, + -0.001665171585045755, + 0.0034205871634185314, + -0.006473257206380367, + -0.008427382446825504, + -0.022186091169714928, + 0.03209902346134186, + 0.005775603000074625, + 0.02131142094731331, + -0.007219504099339247, + 0.0018152886768803, + 0.0003384142473805696, + -0.0031255593057721853, + 0.008698114193975925, + -0.003988081589341164, + 0.000813495775219053, + -0.0005314839072525501, + 0.021714046597480774, + 0.0070633129216730595, + -0.013744824565947056, + 0.0009380148840136826, + 0.014494542963802814, + 0.0075249443762004375, + -0.023241249844431877, + 0.003963785246014595, + 0.009239576756954193, + -0.024074269458651543, + 0.019034499302506447, + 0.0027055784594267607, + -0.022699786350131035, + 0.011099987663328648, + -0.016577091068029404, + -0.011051394045352936, + -0.011669217608869076, + 0.008746706880629063, + -0.008656462654471397, + 0.013730941340327263, + 0.0018465269822627306, + 4.208484824630432e-5, + 0.015105423517525196, + 0.0013501860667020082, + -0.014841633848845959, + -0.01517484150826931, + 0.009982352145016193, + 0.011016685515642166, + -0.020408982411026955, + 0.0005345209501683712, + 0.0036132228560745716, + 0.02675381489098072, + 0.013703173957765102, + -0.020908793434500694, + -0.029933173209428787, + -0.003627106547355652, + 0.0032886923290789127, + -0.009510308504104614, + -0.01685476489365101, + -0.0057131266221404076, + -0.004123447462916374, + 0.010739011690020561, + -0.024129804223775864, + -0.004074854776263237, + 0.005865846760571003, + -0.015285911038517952, + 0.00229253969155252, + -0.007365282159298658, + -0.01489716861397028, + -0.014036381617188454, + -0.008816124871373177, + 0.006612093653529882, + -0.031987957656383514, + 0.005095303524285555, + 0.002620541024953127, + -0.0038908962160348892, + -0.009107681922614574, + -1.681224603089504e-5, + -0.003450089832767844, + 0.009281227365136147, + -0.016118930652737617, + -0.016271650791168213, + 0.012543887831270695, + -0.02018684335052967, + -0.0017614895477890968, + 0.0031342366710305214, + -0.00972550455480814, + 0.0192705225199461, + -0.0065565588884055614, + -0.010391920804977417, + -0.005872788839042187, + -5.054520443081856e-5, + -0.012509179301559925, + -0.004730857443064451, + 0.00011670953244902194, + -0.0015237318584695458, + -0.0047690374776721, + 0.018909547477960587, + -0.00014881549577694386, + 0.022533182054758072, + -0.0038631288334727287, + -0.014855518005788326, + -0.004095680080354214, + 0.03004424273967743, + 0.022144440561532974, + 0.02514331042766571, + 0.015258143655955791, + -0.01925663836300373, + -0.017368460074067116, + 0.010947266593575478, + -0.0032748086377978325, + -0.009135449305176735, + -0.005740894004702568, + -0.008739764802157879, + 0.018104294314980507, + 0.0085801025852561, + -0.003007548162713647, + -0.008899427019059658, + 0.005060594528913498, + 0.001959331799298525, + 0.030294150114059448, + -0.019034499302506447, + 0.00792757049202919, + 0.008441266603767872, + -0.011842763051390648, + -0.003347697900608182, + 0.02013130858540535, + 0.002920775208622217, + 0.005411156918853521, + 0.019645381718873978, + 0.017146321013569832, + -0.003967256285250187, + -0.0010204490972682834, + -0.01393919624388218, + -0.010322501882910728, + -0.017201855778694153, + 0.014202985912561417, + 0.008024755865335464, + -0.0180209930986166, + 0.013168652541935444, + 0.008274662308394909, + -0.011308242566883564, + 0.016813114285469055, + -0.012745201587677002, + -0.027406347915530205, + 0.013605988584458828, + -0.0015731924213469028, + 0.01902061700820923, + 0.011884414590895176, + 0.009510308504104614, + 0.018257014453411102, + -0.012585539370775223, + 0.012988165020942688, + 0.025476519018411636, + 0.00623723492026329, + -0.009919876232743263, + -0.010024003684520721, + -0.009801864624023438, + 0.027447998523712158, + 0.01653544045984745, + -0.0023550160694867373, + -0.008351022377610207, + 0.001246926374733448, + 0.0003214935422874987, + -0.02222774177789688, + 0.013390791602432728, + -0.011120812967419624, + 0.0002107496402459219, + -0.014855518005788326, + 0.0013744825264438987, + 0.010787605307996273, + -0.012897921726107597, + 0.004824572242796421, + 0.0028930080588907003, + 0.006841174326837063, + -0.03301534801721573, + -0.009551959112286568, + -0.0011254443088546395, + -0.007622130215167999, + 0.011009743437170982, + -0.010121189057826996, + 0.015036005526781082, + -0.003772885072976351, + 0.007393049541860819, + 0.025837494060397148, + -0.02224162593483925, + 0.007656839210540056, + 0.010454396717250347, + 0.020783841609954834, + -0.00020695332204923034, + 0.0028131769504398108, + -0.015313678421080112, + -0.012571655213832855, + 0.0343204103410244, + 0.0070945508778095245, + -0.0002726837992668152, + 0.0016990130534395576, + -0.018562454730272293, + 0.01604951173067093, + -0.015091540291905403, + 0.004557312000542879, + -0.011905239894986153, + 0.00766378128901124, + 0.016202233731746674, + -0.0022630367893725634, + -0.0030318445060402155, + -0.009649144485592842, + 0.006265002302825451, + 0.005966503638774157, + 0.0026396310422569513, + -0.0085801025852561, + -0.0010829255916178226, + 0.0145223094150424, + -0.00021356975776143372, + 0.008941077627241611, + -0.0036583447363227606, + -0.009649144485592842, + -0.03426487743854523, + 0.0018499979050830007, + 0.023949315771460533, + -0.010565466247498989, + 0.01641048863530159, + 0.006934888660907745, + 0.010412746109068394, + -0.0018378497334197164, + 0.0024192279670387506, + 0.014536193571984768, + -0.006535733584314585, + 0.002061723731458187, + 0.007941454648971558, + -0.0017354576848447323, + 0.009746329858899117, + 0.019298288971185684, + 0.024046501144766808, + -0.02582360990345478, + 0.01832643337547779, + -0.028572576120495796, + 0.002500794595107436, + -0.0036062810104340315, + -0.01560523547232151, + 0.01560523547232151, + -0.016007861122488976, + -0.008274662308394909, + -0.002007924485951662, + -6.426616891985759e-5, + -0.007497176993638277, + 0.006927947048097849, + -0.0022300630807876587, + -0.012335632927715778, + -0.01777108572423458, + -0.0271286740899086, + 0.007212562020868063, + 0.009774097241461277, + 0.028392087668180466, + 0.006348303984850645, + 0.017604483291506767, + -0.0035923973191529512, + 0.0171602051705122, + 0.005039769224822521, + 0.025629239156842232, + 0.001957596279680729, + -0.018284782767295837, + 0.015563584864139557, + -0.010266968049108982, + 0.008593986742198467, + -0.005490988027304411, + 0.003391084261238575, + 0.003005812643095851, + -0.002346338704228401, + -0.0005627221544273198, + -0.0037138795014470816, + -0.003922134172171354, + 0.014813866466283798, + 0.005425040610134602, + 0.0013067995896562934, + 0.010169781744480133, + 0.0057131266221404076, + -0.0015046418411657214, + -0.009468656964600086, + 0.021880650892853737, + -0.0062545896507799625, + 0.00555693544447422, + 0.003877012524753809, + -0.005279262084513903, + -0.011537322774529457, + 0.01696583442389965, + -0.002099903766065836, + -0.008031697943806648, + 0.004095680080354214, + 0.009864341467618942, + -0.02347727119922638, + 0.01532756257802248, + -0.009468656964600086, + -0.008219127543270588, + 0.008614812046289444, + -0.013522686436772346, + -0.012495295144617558, + -0.0085801025852561, + 0.0012790323235094547, + -0.034847989678382874, + -0.009669969789683819, + -0.01309923455119133, + 0.009190984070301056, + -0.009079914540052414, + -0.007497176993638277, + 0.005147367250174284, + -0.004071383737027645, + 0.013043699786067009, + -0.007844268344342709, + 0.01975644938647747, + -0.0035542172845453024, + -0.007823443040251732, + 0.0062892986461520195, + -0.019992472603917122, + 0.010489106178283691, + -0.0057131266221404076, + 0.0027038431726396084, + -0.010739011690020561, + -0.01393919624388218, + -0.0235328059643507, + 0.01179417036473751, + 0.002787145087495446, + -0.01784050464630127, + 0.01846526935696602, + -0.007323631551116705, + 0.012578597292304039, + 0.014466775581240654, + 0.004293522331863642, + -0.005789486691355705, + -0.00191247439943254, + -0.002899949671700597, + -0.007788734044879675, + 0.03343185782432556, + -0.0015445572789758444, + -0.014911052770912647, + -0.029155688360333443, + 0.009843516163527966, + 0.0015211286954581738, + -0.008378789760172367, + 0.006535733584314585, + -0.014383473433554173, + -0.0010135072516277432, + -0.0019228870514780283, + -0.00833019707351923, + -0.011724752373993397, + 0.02626788802444935, + -0.012432819232344627, + 0.011898297816514969, + -0.00641078082844615, + 0.0010447455570101738, + -0.019187219440937042, + -0.010551583021879196, + -0.010232258588075638, + 0.0031151464208960533, + -0.00478292116895318, + 0.02465738356113434, + -0.016299419105052948, + 0.01010036375373602, + -0.012918747030198574, + 0.0066641573794186115, + -0.014327938668429852, + 0.005209844093769789, + 0.008323254995048046, + 0.001057761488482356, + 0.009468656964600086, + 0.00124258769210428, + 0.020658887922763824, + 0.021894533187150955, + 0.02557370439171791, + -0.029072387143969536, + -0.0031758875120431185, + -0.0011532115750014782, + -0.004158156458288431, + -0.008024755865335464, + -0.0032904278486967087, + -0.007427759002894163, + 0.0038110651075839996, + 0.01087090652436018, + -0.0006022038287483156, + 0.01200936734676361, + 0.005154309328645468, + 0.0020408981945365667, + 0.01560523547232151, + -0.018187597393989563, + -0.009996236301958561, + 0.011252707801759243, + 0.012425877153873444, + -0.01486940123140812, + -0.005487516988068819, + 0.017979340627789497, + 0.01671592891216278, + 0.004914816003292799, + -0.0003434036916587502, + 0.023269016295671463, + 0.018978964537382126, + 0.0018795006908476353, + -0.014341821894049644, + -0.0017996695823967457, + -0.005216785706579685, + 0.0071500856429338455, + -0.0007058974006213248, + -0.019423242658376694, + -0.0062892986461520195, + 0.0023775771260261536, + 0.007962279953062534, + -0.017923807725310326, + -0.014466775581240654, + -0.02843373827636242, + 0.035014595836400986, + 0.0009649144485592842, + 0.022630367428064346, + 0.0017154999077320099, + 0.01746564544737339, + -0.0031863003969192505, + 0.011266591027379036, + -0.013133944012224674, + -0.013446326367557049, + 0.008371847681701183, + 0.008649521507322788, + 0.00032800150802358985, + -0.025615354999899864, + -0.004501777235418558, + -0.026670513674616814, + 0.006032451055943966, + -0.01807652786374092, + 0.011683100834488869, + 0.004140802193433046, + 0.00010331396333640441, + -0.007691548205912113, + -0.033653996884822845, + 0.004574666265398264, + -0.0047100321389734745, + -0.009190984070301056, + -0.018257014453411102, + -0.013717057183384895, + -0.007559653837233782, + 0.0021675867028534412, + -0.021130932494997978, + -0.028600342571735382, + 0.01957596279680729, + 0.021214235574007034, + 0.005334796849638224, + -0.0012044076574966311, + -0.01803487539291382, + 0.0024747627321630716, + 0.004640613682568073, + -0.003581984667107463, + 0.031377073377370834, + 0.006855058018118143, + 0.004015848971903324, + 0.016771463677287102, + 0.005182076711207628, + 0.026337305083870888, + -0.006417722441256046, + 0.015938444063067436, + -0.010732070542871952, + -0.01200936734676361, + 0.013515744358301163, + -0.0018933843821287155, + -0.005136954598128796, + 0.001964538125321269, + -0.0007436436135321856, + 0.014175218529999256, + -0.018923429772257805, + 0.019339939579367638, + -0.0029919289518147707, + 0.012016309425234795, + -0.019090034067630768, + 0.002151967491954565, + 0.009086856618523598, + 0.023518921807408333, + -0.012738259509205818, + 0.010773721151053905, + 0.0033685234375298023, + -0.0042449296452105045, + -0.006473257206380367, + -0.0007505854591727257, + -0.01646602153778076, + -0.013293606229126453, + 0.009683853946626186, + -0.004182452801615, + -0.027031488716602325, + -0.008177476935088634, + -0.00901743769645691, + -0.015591351315379143, + 0.024823985993862152, + -0.004043616354465485, + 0.01845138520002365, + -0.008121942169964314, + -0.0004251871432643384, + -0.0028530925046652555, + 0.005931794177740812, + 0.0013519215863198042, + -0.020020239055156708, + 0.0045677246525883675, + 0.0032279512379318476, + -0.0009892109083011746, + 0.004432358779013157, + 0.012890979647636414, + -0.0025077364407479763, + -6.827941251685843e-5, + -0.0035611591301858425, + 0.004557312000542879, + 0.0014786099782213569, + -0.014494542963802814, + -0.011856647208333015, + 0.011717810295522213, + 0.007622130215167999, + 0.0028582988306879997, + -0.007858152501285076, + 0.007878977805376053, + 0.009156274609267712, + 0.015091540291905403, + -0.005341738928109407, + -0.0029867226257920265, + 0.026739932596683502, + 0.02793392725288868, + -0.0052862041629850864, + 0.012030192650854588, + -0.01173863559961319, + -0.0066086226142942905, + 0.004331702366471291, + 0.002018337370827794, + 0.007851210422813892, + -0.0029259815346449614, + 0.01152343861758709, + 0.00441153347492218, + 0.020478401333093643, + 0.00823301076889038, + 0.02854480780661106, + 0.002000982640311122, + 0.0058033703826367855, + 0.0019437125883996487, + -0.0018326432909816504, + 0.011454020626842976, + 0.011745577678084373, + 0.0021294066682457924, + 0.01157897338271141, + -0.02129753679037094, + 0.0041026221588253975, + -0.021602977067232132, + 0.004161627497524023, + 0.018923429772257805, + -0.004522602539509535, + 0.008954961784183979, + -0.0087952995672822, + -0.010565466247498989, + -0.0090104965493083, + 0.023810479789972305, + -0.008628695271909237, + -0.0018413205398246646, + -0.030460752546787262, + 0.040096014738082886, + -0.004248400218784809, + -0.017382344231009483, + -0.039429597556591034, + 0.011919123120605946, + 0.004914816003292799, + 0.011287416331470013, + -0.010239200666546822, + 0.00903826393187046, + -0.0072056204080581665, + 0.009649144485592842, + -0.0071847946383059025, + -0.009107681922614574, + -0.010065654292702675, + -0.018229248002171516, + -0.008267720229923725, + 0.0026691339444369078, + 0.00497035076841712, + 0.014084974303841591, + 0.010857023298740387, + -0.014091916382312775, + -0.01834031753242016, + -0.024060385301709175, + -0.010745953768491745, + 0.010364153422415257, + 0.006108811125159264, + -0.00808723270893097, + -0.01710467040538788, + 0.012967339716851711, + 0.010773721151053905, + 0.02317183092236519, + 0.041401077061891556, + -0.0045121898874640465, + -0.013696231879293919, + -0.006421193480491638, + -0.011960774660110474, + 0.017423994839191437, + -0.013029816560447216, + -0.007497176993638277, + 0.016368836164474487, + 0.00619558384642005, + -0.03154367953538895, + -0.011808053590357304, + 0.011044452898204327, + 0.00903826393187046, + 0.014202985912561417, + 0.00029416006873361766, + -0.005591644439846277, + -0.009440889582037926, + 0.011481788009405136, + 0.012280098162591457, + -0.011606740765273571, + 0.01520260889083147, + -0.005279262084513903, + -0.007552711758762598, + -0.006355246063321829, + 0.012300924398005009, + -0.010461338795721531, + -0.019423242658376694, + 0.041900891810655594, + -0.004050558432936668, + 0.015396980568766594, + 0.03004424273967743, + -0.014425124041736126, + -0.004175511188805103, + 0.02748964913189411, + -0.012932630255818367, + 0.011814995668828487, + -0.011016685515642166, + -0.014466775581240654, + 0.005883201491087675, + 0.007406933233141899, + 0.01012813113629818, + -0.004012377932667732, + -0.014084974303841591, + 0.0006455902475863695, + 0.024726800620555878, + 0.002672604750841856, + 0.019284404814243317, + -0.01307146716862917, + 0.007052899803966284, + -0.014383473433554173, + 0.01200936734676361, + 0.002821854082867503, + 0.012155145406723022, + -0.019478777423501015, + -0.0041893948800861835, + -0.023560574278235435, + -0.026975953951478004, + 0.009156274609267712, + -0.008003930561244488, + 0.02965550124645233, + -0.015938444063067436, + 0.0038075940683484077, + 0.01012813113629818, + 0.014383473433554173, + 0.0016521556535735726, + -0.01877070963382721, + -0.01902061700820923, + 0.0036965247709304094, + 0.004161627497524023, + -0.0002876521029975265, + 0.0031620038207620382, + 0.024851754307746887, + 0.023824362084269524, + -0.001955860760062933, + -0.01173863559961319, + -0.0015072450041770935, + -0.03368176147341728, + 0.014563960954546928, + -0.011905239894986153, + 0.008038640022277832, + 0.011231882497668266, + -0.008691172115504742, + -0.026212353259325027, + -0.008621754124760628, + -0.024699034169316292, + -0.005740894004702568, + 0.021589092910289764, + -0.003866599639877677, + 0.007851210422813892, + 0.004463597200810909, + -0.003578513627871871, + -0.015105423517525196, + 0.011079161427915096, + 0.022311042994260788, + 0.005508342757821083, + 0.04051252454519272, + 0.03004424273967743, + 0.0010308618657290936, + -0.0007254212978295982, + -0.010044828988611698, + -0.02954443171620369, + -0.006327478680759668, + -0.002257830463349819, + 0.0066294483840465546, + 0.0077817924320697784, + 0.0010334650287404656, + -0.013307489454746246, + 0.010412746109068394, + 0.01642437092959881, + -0.014202985912561417, + 0.004689206834882498, + 0.0026552502531558275, + 0.010697361081838608, + -0.004092209041118622, + 0.007858152501285076, + 0.0017441349336877465, + 0.001341508817858994, + -0.0018499979050830007, + -0.003911721520125866, + -0.00257889018394053, + 0.00010499518975848332, + 0.009822690859436989, + 0.0017528122989460826, + 0.007170910947024822, + -0.004498306196182966, + 0.013057583943009377, + 0.007288922090083361, + -0.007962279953062534, + 0.011863588355481625, + -0.008691172115504742, + 0.0010759837459772825, + -0.0020738719031214714, + 0.011204115115106106, + -0.002287333132699132, + -0.018784593790769577, + -0.04073466360569, + -0.009350646287202835, + 0.010968092828989029, + -0.006872412282973528, + -0.0028149124700576067, + 0.017132438719272614, + -0.0017961986595764756, + 0.013585162349045277, + -0.010308618657290936, + 0.012384225614368916, + 0.01888177916407585, + 0.022533182054758072, + -0.010079538449645042, + -0.004342115018516779, + -0.002296010497957468, + -0.01616058126091957, + 0.004546899348497391, + -0.008802241645753384, + -0.013210304081439972, + 0.005567348096519709, + -0.012585539370775223, + 0.015396980568766594, + 0.011946890503168106, + 0.011648392304778099, + 0.001537615549750626, + 0.003908250480890274, + 0.0001528287393739447, + 0.02229716069996357, + 0.005782545078545809, + -0.023616107180714607, + -0.0015558378072455525, + -0.021783465519547462, + -0.0014456362696364522, + -0.023116296157240868, + 0.0009614435257390141, + -9.810759365791455e-5, + -0.00495646707713604, + -0.017576714977622032, + -0.010211433283984661, + -0.006802994292229414, + 0.008177476935088634, + -0.023269016295671463, + 0.00842044036835432, + 0.009628319181501865, + -0.006858528591692448, + 0.03357069194316864, + -0.019117802381515503, + -0.016618743538856506, + 0.010398861952126026, + 0.019978588446974754, + -0.013043699786067009, + -0.007858152501285076, + 0.012988165020942688, + 0.011176347732543945, + 0.009135449305176735, + 0.0066745700314641, + -0.01914556883275509, + -0.0017059548990800977, + 0.01352962851524353, + 0.02408815175294876, + 0.002424434293061495, + -0.0006330081960186362, + 0.002537239110097289, + -0.0009119830210693181, + -0.009399238973855972, + -0.009808806702494621, + 0.010003178380429745, + -0.0180209930986166, + -0.009836574085056782, + -0.019867518916726112, + -0.010586291551589966, + 0.023893781006336212, + -0.02154744230210781, + 0.016243884339928627, + 0.025115543976426125, + -0.00969079602509737, + -0.00022387404169421643, + -0.007163969334214926, + 0.017937690019607544, + 0.012224564328789711, + -0.009586668573319912, + -0.0047655669040977955, + 0.004991176072508097, + 0.023824362084269524, + -0.002101639285683632, + 0.0051751346327364445, + -0.004380295053124428, + 0.00333728501573205, + -0.015036005526781082, + 0.0033216660376638174, + 0.028156064450740814, + -0.004661439452320337, + -0.00851762667298317, + -0.005057123489677906, + 0.008045582100749016, + -0.006469786167144775, + 0.01839585229754448, + -0.018062643706798553, + 0.025046125054359436, + -0.0063031823374331, + 0.001774505479261279, + 0.025559820234775543, + 0.0020877555944025517, + -0.007962279953062534, + -0.020520051941275597, + 0.004237987566739321, + -0.010537698864936829, + -0.014758331701159477, + -0.005046710837632418, + -0.0030734955798834562, + -0.010516873560845852, + 0.005709655582904816, + -0.002908627036958933, + 0.03276544064283371, + 0.003201919374987483, + -0.0014673294499516487, + 0.00994070153683424, + 0.0012243654346093535, + -0.023449504747986794, + 0.0008447340223938227, + -0.013036757707595825, + -7.923448720248416e-5, + 0.0030249026603996754, + 0.014966586604714394, + 0.011322125792503357, + -0.0090104965493083, + -0.02061723731458187, + 0.013425501063466072, + 0.003859657794237137, + -0.02181123197078705, + -0.009267344139516354, + 0.0023827834520488977, + -0.002440053503960371, + 0.011106928810477257, + 0.0018916488625109196, + 0.03315418213605881, + -0.0016035628505051136, + 0.012335632927715778, + -0.010176723822951317, + -0.0009397503454238176, + 0.03662509843707085, + 0.0023602223955094814, + 0.02068665623664856, + 0.003595868358388543, + -0.008212185464799404, + 0.0290446188300848, + -0.0008260778267867863, + 0.005553464405238628, + 0.023255132138729095, + 0.005976916290819645, + -0.005546522792428732, + 0.015896791592240334, + -0.0035125664435327053, + -0.006320537067949772, + -0.030266381800174713, + 0.006612093653529882, + 0.00928816944360733, + 0.004043616354465485, + -0.04067912697792053, + 0.010003178380429745, + -0.0015549700474366546, + -0.012703550048172474, + -0.009545017033815384, + -0.009468656964600086 + ], + "55164bf4-f736-40f9-9876-a5f6c32c463a": [ + -0.015253589488565922, + -0.004162432625889778, + -0.009579908102750778, + 0.041111916303634644, + -0.025026580318808556, + -0.03365592285990715, + -0.006876740138977766, + 0.016441795974969864, + -0.03935931250452995, + -0.0005319076590240002, + 0.023778965696692467, + 0.04880554601550102, + -0.02284325286746025, + -0.013463854789733887, + -0.00995864812284708, + 0.02088271453976631, + -0.04250805452466011, + 0.023986900225281715, + -0.026021702215075493, + -0.00572566594928503, + 0.07194585353136063, + 0.003601748263463378, + -0.020199496299028397, + 0.03582439944148064, + 0.003063342534005642, + -0.022932369261980057, + 0.0053283595480024815, + 0.01314452476799488, + -0.009394250810146332, + 0.02382352203130722, + 0.020541105419397354, + -0.0072777592577040195, + 0.014934259466826916, + 0.0058481995947659016, + 0.02337794564664364, + -0.04363685101270676, + -0.021075796335935593, + 0.03496295213699341, + 0.017867641523480415, + -0.016055628657341003, + -0.014043104834854603, + 0.05397424101829529, + -0.02357102930545807, + 0.011042886413633823, + -0.051657240837812424, + 0.004823372233659029, + -0.0002462277770973742, + -0.017006192356348038, + -0.005996725056320429, + 0.0016170735470950603, + -0.010003206320106983, + -0.04981552064418793, + 0.006497999653220177, + 0.0035070632584393024, + 0.04238923639059067, + -0.0049013481475412846, + 0.013545543886721134, + 0.05572684481739998, + -0.01412479393184185, + -0.049637291580438614, + -0.016189301386475563, + -0.028754575178027153, + 0.023793818429112434, + 0.014258467592298985, + -0.00607098825275898, + -0.005027594976127148, + 0.007496834732592106, + 0.009579908102750778, + -0.027536666020751, + 0.04072574898600578, + 0.01913011074066162, + 0.0834120362997055, + 0.011822645552456379, + 0.019872739911079407, + -0.011874630115926266, + 0.027120793238282204, + 0.029081333428621292, + -0.028947658836841583, + 0.019545981660485268, + 0.025160254910588264, + 0.002608482725918293, + 0.007723336573690176, + 0.032051846385002136, + 0.001940116984769702, + 0.07349051535129547, + 0.014020826667547226, + -0.03834933787584305, + -0.03686407953500748, + -0.00669108284637332, + -0.05082549527287483, + 0.022219445556402206, + 0.007589663378894329, + 0.00026479348889552057, + -0.04030987620353699, + -0.02793768420815468, + 0.022798694670200348, + 0.029779402539134026, + -0.022501643747091293, + 0.03644820675253868, + -0.024581003934144974, + 0.025085991248488426, + 0.04265658184885979, + -0.054776277393102646, + 0.004437205381691456, + 0.003438370069488883, + 0.005450893193483353, + -0.005075865890830755, + 0.011080017313361168, + -0.024462183937430382, + 0.056410063058137894, + 0.0485382005572319, + -0.04815203323960304, + -0.014852570369839668, + -0.012587552890181541, + -0.017392359673976898, + -0.01763000153005123, + -0.025412747636437416, + -0.0386463887989521, + -0.003727995092049241, + -0.005250383634120226, + 0.03318064287304878, + -0.00439264765009284, + -0.00747084291651845, + -0.0016217150259763002, + -0.006186095532029867, + 0.05563772842288017, + -0.00891154259443283, + -0.005948454607278109, + 0.024462183937430382, + 0.04648854583501816, + -0.04782527685165405, + -0.005376630462706089, + 0.0068581742234528065, + 0.0022705867886543274, + 0.0012123410124331713, + -0.0019178381189703941, + 0.018134988844394684, + 0.03828992694616318, + -0.004125301260501146, + 0.02734358236193657, + -0.02922985889017582, + -0.047557931393384933, + -0.02317000925540924, + 0.001118584186770022, + -0.009334840811789036, + 0.002309574745595455, + -0.04443889111280441, + 0.004541173577308655, + -0.022620463743805885, + 0.00306891230866313, + -0.03585410490632057, + 0.0014406993286684155, + 0.02507113851606846, + 0.021239176392555237, + 0.01945686712861061, + -0.003215581411495805, + -0.010263126343488693, + 0.00136643648147583, + 0.01295144110918045, + 0.008993231691420078, + 0.030507178977131844, + -0.04544886574149132, + 0.011228542774915695, + -0.008740738034248352, + 0.056469470262527466, + 0.019367750734090805, + 0.0513007789850235, + 0.0282495878636837, + -0.010211141780018806, + 0.01926378346979618, + 0.03377474471926689, + -0.007923846133053303, + 0.041824836283922195, + -0.02388293296098709, + 0.023318534716963768, + -0.02226400189101696, + 0.04948876425623894, + 0.05721209943294525, + -0.002602912951260805, + -0.025338483974337578, + 0.001246687606908381, + -0.03021012805402279, + 0.017986463382840157, + -0.008258028887212276, + -0.050736378878355026, + 0.01862512342631817, + 0.013003425672650337, + 0.01305540930479765, + -0.007663926109671593, + 0.006709648761898279, + -0.00607098825275898, + -0.0025212238542735577, + -0.010352241806685925, + 0.041230734437704086, + 0.00030703048105351627, + -0.030180422589182854, + 0.019293488934636116, + 0.0023355665616691113, + 0.013203934766352177, + 0.025991998612880707, + -0.02663065865635872, + -0.015610051341354847, + -0.02024405263364315, + 0.033626217395067215, + -0.08269911259412766, + 0.0010415364522486925, + -0.029437793418765068, + -0.015624904073774815, + 0.02343735657632351, + -0.02368984930217266, + 0.015966512262821198, + -0.008569933474063873, + -0.004080743528902531, + 0.027031678706407547, + -0.03451737388968468, + 0.005476885475218296, + -0.02441762574017048, + 0.00773076293990016, + 0.0014574084198102355, + -0.04081486165523529, + -0.010233420878648758, + 0.0036704414524137974, + -0.003980488982051611, + -0.015446673147380352, + -0.038765206933021545, + -0.009193740785121918, + -0.024328509345650673, + 0.02031831629574299, + -0.05430099740624428, + -0.0061452509835362434, + 0.04809262230992317, + -0.027313876897096634, + 0.03944842517375946, + -0.024298805743455887, + -0.02083815634250641, + 0.01243160106241703, + -0.0015493087703362107, + 0.0026623231824487448, + -0.0024116861168295145, + -0.03837904334068298, + 0.006249218713492155, + 0.01379803754389286, + -0.0036852939520031214, + -0.005242957267910242, + -0.022471938282251358, + -0.0036500191781669855, + 0.0016189301386475563, + 0.030165569856762886, + 0.012349911965429783, + -0.010426504537463188, + 0.004849364049732685, + 0.009327414445579052, + 0.002994649577885866, + -0.037398770451545715, + -0.02064507268369198, + 0.06968826055526733, + 0.04737969860434532, + -0.0414089672267437, + -0.015862544998526573, + -0.0043815081007778645, + -0.011072590947151184, + 0.020734187215566635, + 0.03175479546189308, + -0.0005927103920839727, + 0.03196272999048233, + -0.025561273097991943, + 0.02024405263364315, + -0.0362996831536293, + 0.007864436134696007, + 0.04197336360812187, + -0.04176542907953262, + 0.02037772722542286, + -0.010159158147871494, + 0.016322974115610123, + -0.024581003934144974, + -0.004789954051375389, + 0.03558675944805145, + 0.01275835745036602, + 0.009416529908776283, + -0.008555080741643906, + -0.006672517396509647, + -0.01641209051012993, + 0.006037569604814053, + 0.02024405263364315, + 0.020615367218852043, + 0.0015539501328021288, + 0.000835457060020417, + -0.030774526298046112, + -0.028873397037386894, + -0.004622862674295902, + 0.00555114820599556, + 7.060772622935474e-5, + 0.015728872269392014, + 0.009164036251604557, + -0.0006980707985349, + -0.007886715233325958, + -0.02844267152249813, + 0.0021183479111641645, + -0.013708922080695629, + 0.04434977471828461, + -0.014496108517050743, + -0.004975610878318548, + 0.024120574817061424, + -0.03353710472583771, + 0.05747944861650467, + -0.02648213319480419, + 0.020214349031448364, + 0.029972486197948456, + -0.03523029759526253, + 0.014273320324718952, + 0.02986851893365383, + -0.02082330361008644, + -0.013449002057313919, + -0.021328290924429893, + -0.008087224327027798, + 0.014533240348100662, + -0.02949720434844494, + 0.01849145069718361, + -0.018134988844394684, + 0.00715893879532814, + 0.0518057644367218, + 0.01789734698832035, + -0.07331229001283646, + 0.021759014576673508, + 0.020288610830903053, + -0.03894343972206116, + 0.0069287242367863655, + -0.020912418141961098, + -0.017659705132246017, + -0.013946563005447388, + -0.0320221409201622, + 0.01926378346979618, + -0.04268628731369972, + 0.01025569997727871, + -0.020555958151817322, + -0.02630390226840973, + -0.0433398000895977, + -0.034012384712696075, + -0.0007161723915487528, + -0.0012884604511782527, + -0.02851693518459797, + -0.014347583055496216, + -0.030685409903526306, + -0.018446892499923706, + 0.02994278073310852, + -0.02459585666656494, + -0.00923829898238182, + 0.009268003515899181, + 0.026274196803569794, + 0.009765565395355225, + 0.0008419550722464919, + 0.0014518387615680695, + 0.04434977471828461, + 0.033745039254426956, + 0.03365592285990715, + -0.00358875235542655, + -0.008933820761740208, + -5.004039849154651e-5, + 0.016352679580450058, + -0.0017479618545621634, + 0.005540008656680584, + -0.027744600549340248, + -0.01777852699160576, + -0.04039899259805679, + 0.00042144168401136994, + 0.02499687485396862, + -0.0011872773757204413, + -0.004567165393382311, + 0.023912638425827026, + -0.0211649127304554, + 0.013686643913388252, + 0.021833278238773346, + -0.023392798379063606, + -0.04170601814985275, + -0.018506303429603577, + -0.005662542302161455, + 0.007908993400633335, + 0.011674120090901852, + -0.05780620500445366, + 0.02513054944574833, + 0.01559519860893488, + 0.0020143799483776093, + -0.032051846385002136, + -0.022308560088276863, + 0.02337794564664364, + 0.01145133189857006, + -0.02994278073310852, + 0.013166803866624832, + 0.018714237958192825, + 0.022887811064720154, + -0.0273287296295166, + -0.00634576054289937, + -0.04485476389527321, + -0.0035200591664761305, + -0.019115258008241653, + 0.026185082271695137, + -0.00303549412637949, + -0.008094650693237782, + 0.03104187175631523, + 0.00793869886547327, + -0.004867929965257645, + -0.0006084912456572056, + 0.01546152587980032, + 0.0015771572943776846, + 0.0456865057349205, + -0.007069823332130909, + 0.01939745619893074, + 0.009505645371973515, + 0.008866984397172928, + -0.018565712496638298, + -0.017481476068496704, + 0.015803134068846703, + 0.02239767648279667, + 0.017526032403111458, + 0.020986681804060936, + 5.9250733102089725e-6, + -0.015803134068846703, + 0.017407212406396866, + -0.02370470203459263, + 0.009973500855267048, + 0.028724871575832367, + 0.024491887539625168, + 0.005773936863988638, + 0.03891373425722122, + -0.01659032143652439, + 0.02324427291750908, + 0.01706560328602791, + 0.005974446423351765, + 0.009089772589504719, + -0.05498421564698219, + 0.006980707868933678, + 0.049459058791399, + -0.00191969471052289, + -0.028427818790078163, + -0.01985788717865944, + -0.03223007917404175, + 0.01841718703508377, + -0.029318973422050476, + 0.010530472733080387, + -0.011273100972175598, + -0.002612195909023285, + 0.010723555460572243, + 0.015669461339712143, + -0.0093051353469491, + -0.01535755768418312, + -0.0461023785173893, + -0.00747084291651845, + 0.012216239236295223, + 0.003980488982051611, + 0.001118584186770022, + -0.02505628578364849, + 0.00845853891223669, + -0.06909415870904922, + -0.00033836011425592005, + 0.007303751539438963, + -0.01314452476799488, + 0.001960539259016514, + -0.02201150916516781, + -0.010976049117743969, + -0.013694069348275661, + -0.02863575518131256, + 0.0160110704600811, + 0.010664145462214947, + 0.014852570369839668, + 0.020927270874381065, + -0.04087427258491516, + -0.018268661573529243, + 0.0028089922852814198, + 0.009995779953897, + 0.012127123773097992, + -0.03799287602305412, + -0.013047982938587666, + -0.07034177333116531, + 0.010901786386966705, + -0.03977518156170845, + -0.032259780913591385, + 0.0012253370368853211, + 0.010248273611068726, + 0.012060287408530712, + -0.014592650346457958, + -0.00859221164137125, + -0.02018464356660843, + -0.017080456018447876, + -0.010159158147871494, + 0.01913011074066162, + 0.0013311615912243724, + 0.003999054431915283, + -0.00038082918035797775, + 0.0471123531460762, + -0.04345862194895744, + 0.002905534114688635, + 0.0013617950025945902, + 0.03377474471926689, + 0.006290063727647066, + -0.006553696468472481, + -0.03650761768221855, + 0.021135207265615463, + -0.03119039721786976, + 0.013025703839957714, + -0.017526032403111458, + 0.04235953092575073, + 0.024313656613230705, + -0.0075116874650120735, + 0.039745479822158813, + 0.026378164067864418, + 0.005142702255398035, + -0.004749109502881765, + 1.9581025298975874e-6, + -0.001108373049646616, + 0.00016152170428540558, + -0.03006160259246826, + -0.009869532659649849, + -0.058875586837530136, + -0.01112457551062107, + -0.028427818790078163, + -0.001256898744031787, + -0.01849145069718361, + -0.03255683556199074, + 0.01951627805829048, + -0.00529122818261385, + -0.01737750694155693, + -0.018862763419747353, + -0.009862106293439865, + -0.011406773701310158, + -0.03380445018410683, + 0.0017256829887628555, + -0.013389592058956623, + 0.00865904800593853, + 0.021952098235487938, + -0.04880554601550102, + -0.023481912910938263, + 0.018253808841109276, + -0.0045820181258022785, + 0.009193740785121918, + 0.029586320742964745, + 0.02642272226512432, + -0.004162432625889778, + -0.0006196306785568595, + 0.004114162176847458, + 0.024625562131404877, + 0.006122971884906292, + 0.0296308770775795, + 0.013025703839957714, + -0.0051946863532066345, + -0.012780636548995972, + 0.029200153425335884, + -0.0016161452513188124, + 0.03858697786927223, + -0.0002212800900451839, + 0.004077030345797539, + -0.014585223980247974, + 0.008748163469135761, + -0.009134330786764622, + -0.005699673667550087, + 0.009201167151331902, + 0.0076119424775242805, + 0.034071795642375946, + -0.007002986967563629, + -0.025427600368857384, + -0.03279447555541992, + 0.008354570716619492, + 0.012542995624244213, + 0.027061382308602333, + 0.026140524074435234, + -0.027818864211440086, + -0.011028033681213856, + -0.01964995078742504, + 0.0016969061689451337, + -0.011570151895284653, + 0.03475501388311386, + 0.02878428064286709, + -0.008116929791867733, + 0.03169538453221321, + 0.024328509345650673, + -0.0006683656829409301, + 0.023273978382349014, + 0.002588060451671481, + 0.009260577149689198, + -0.010589882731437683, + -0.02266502194106579, + 0.03757700324058533, + -0.009624465368688107, + 0.00527266226708889, + 0.004129014443606138, + -0.011213690973818302, + 0.013916858471930027, + -0.029794255271553993, + -0.02467011846601963, + -0.02680888958275318, + 0.03240830823779106, + -0.0031301791314035654, + 0.017169570550322533, + 0.01327819749712944, + 0.014963964931666851, + -0.0017767386743798852, + 0.0270762350410223, + -0.012127123773097992, + 0.018565712496638298, + 0.03968606889247894, + -0.01783793605864048, + 0.018521154299378395, + -0.0022056067828089, + -0.01985788717865944, + -0.005681108217686415, + -0.015565494075417519, + 0.018313219770789146, + 0.025234516710042953, + 0.017748821526765823, + -0.014882275834679604, + 0.010797818191349506, + -0.01350841298699379, + -0.01730324514210224, + 0.026779184117913246, + 0.004333237186074257, + 0.0006442302255891263, + -0.0008609849610365927, + -0.0007700129644945264, + 0.02492261305451393, + 0.028724871575832367, + 0.0058481995947659016, + 0.0020032403990626335, + -0.022561054676771164, + 0.032319191843271255, + -0.06033113971352577, + 0.027714896947145462, + 0.01201572921127081, + -0.005447180010378361, + -0.010419078171253204, + -0.016055628657341003, + 0.02486320212483406, + -0.006817329674959183, + -0.04443889111280441, + 0.019085552543401718, + -0.016887372359633446, + 0.02603655494749546, + 0.008361997082829475, + 0.012186533771455288, + 0.01077554002404213, + -0.03597292676568031, + -0.02603655494749546, + -0.005376630462706089, + 0.012045434676110744, + 0.0018872047076001763, + 0.05534067749977112, + -0.009832401759922504, + 0.0075413924641907215, + -0.03326975554227829, + 0.007493121549487114, + 0.02565038949251175, + 0.02278384193778038, + -0.015966512262821198, + 0.023214567452669144, + 0.009461087174713612, + 0.0137683330103755, + 0.01513476949185133, + -0.0011882056714966893, + 0.01229792833328247, + 0.0016783404862508178, + -3.399846173124388e-5, + -0.012253370136022568, + 0.05153841897845268, + -0.016025923192501068, + -0.0183577761054039, + 0.002877685474231839, + 0.006004151422530413, + -0.01168897282332182, + 0.013775759376585484, + 0.0235561765730381, + 0.0225907601416111, + 0.00836942344903946, + 0.004199564456939697, + -0.004106735810637474, + 0.012825194746255875, + 0.00643116282299161, + -0.012372191064059734, + 0.021432258188724518, + 0.007051257882267237, + -0.025293927639722824, + -0.029913077130913734, + 0.003677867818623781, + -0.025427600368857384, + -0.021120354533195496, + -0.0104784881696105, + 0.007589663378894329, + -0.020214349031448364, + -0.006030143704265356, + -0.02174416370689869, + 0.04194365814328194, + 0.005268949083983898, + -0.020392578095197678, + 0.037784937769174576, + 0.004786240868270397, + -0.0160110704600811, + 0.011265674605965614, + 0.006390318274497986, + 0.023140303790569305, + -0.016620026901364326, + 0.00943880807608366, + 0.0023764113429933786, + 0.013166803866624832, + -0.03490354120731354, + -0.019486572593450546, + 0.002066363813355565, + -0.011986023746430874, + 0.018847912549972534, + 0.011889482848346233, + -0.012439027428627014, + -0.007374301087111235, + 0.021655047312378883, + -0.0012903170427307487, + -0.03460649028420448, + 0.0009941939497366548, + 0.030685409903526306, + 0.027625780552625656, + 0.024165131151676178, + 0.00013088827836327255, + -0.0025732077192515135, + -0.00015479163266718388, + -0.011629562824964523, + 0.025279074907302856, + -0.022887811064720154, + 0.0073817274533212185, + 0.012223665602505207, + -0.023734407499432564, + -0.03977518156170845, + 0.0029556613881140947, + 0.038438450545072556, + 0.014176778495311737, + -0.015082784928381443, + 0.003325119148939848, + 0.018075577914714813, + -0.0004887423710897565, + 0.014652060344815254, + -0.012847472913563251, + 0.014963964931666851, + -0.012439027428627014, + -7.226848538266495e-6, + 0.01777852699160576, + -0.00389879965223372, + -0.03071511536836624, + -0.001975391758605838, + -0.008243176154792309, + 0.030685409903526306, + -0.009164036251604557, + 0.011466184630990028, + 0.0036500191781669855, + 0.02663065865635872, + 0.012127123773097992, + -0.012713800184428692, + 0.009097198955714703, + 0.03312123194336891, + -0.019442014396190643, + 0.036091744899749756, + -0.0012726796558126807, + -0.011540447361767292, + 0.01086465548723936, + 0.018342923372983932, + -0.002879542065784335, + -0.024001752957701683, + 0.03710171952843666, + -0.019219225272536278, + 0.025219663977622986, + 0.009401677176356316, + -0.019813328981399536, + 0.0032230077777057886, + -0.005967020057141781, + -0.006215800531208515, + 0.0022557340562343597, + 0.01730324514210224, + -0.05159782990813255, + 0.04028017073869705, + 0.05147900804877281, + 0.013166803866624832, + 0.009906664490699768, + 0.032972704619169235, + 0.006497999653220177, + 0.021328290924429893, + -0.008206045255064964, + -0.04004253074526787, + -0.0055325822904706, + -0.006557409651577473, + -0.04120102897286415, + 0.019679656252264977, + -0.026081113144755363, + 0.025531567633152008, + -0.002047798130661249, + 0.03727995231747627, + -0.004942192696034908, + -0.0035349116660654545, + -0.015053080394864082, + 0.00963189173489809, + 0.006683656480163336, + -0.00908234715461731, + -0.0160110704600811, + 0.021432258188724518, + -0.03885432332754135, + 0.018966732546687126, + -0.017481476068496704, + -0.025605831295251846, + 0.01725868694484234, + 0.000689252105075866, + -0.04328038915991783, + 0.04758763685822487, + 0.03971577435731888, + -0.014020826667547226, + 0.0023931204341351986, + 0.015966512262821198, + -0.018699385225772858, + -0.014288172125816345, + -0.001230906811542809, + -0.01220881287008524, + 0.012349911965429783, + 0.0014109942130744457, + 0.01927863620221615, + -0.02890310250222683, + -0.013805463910102844, + -0.0062714978121221066, + 0.00836942344903946, + 0.030774526298046112, + 0.02551671490073204, + -0.015610051341354847, + 0.015788281336426735, + -0.0017377507174387574, + 0.01067157182842493, + -0.005621697753667831, + 0.00028219883097335696, + 0.007983256131410599, + -0.0034643621183931828, + -1.2829197657993063e-5, + 0.018966732546687126, + -0.010886933654546738, + -0.002031089039519429, + 0.010315109975636005, + 0.009535349905490875, + 0.009906664490699768, + 0.001938260393217206, + 0.0024042597506195307, + -0.010990901850163937, + -0.03686407953500748, + 0.04684500768780708, + -0.02603655494749546, + -0.0446765311062336, + -0.014897127635776997, + 0.02012523263692856, + 0.0011575721437111497, + -0.009357118979096413, + -0.005814781412482262, + 0.00222231587395072, + 0.011354790069162846, + 0.020065821707248688, + 0.02505628578364849, + -0.03442825749516487, + 0.000965417071711272, + -0.00191969471052289, + -0.007404006086289883, + 0.018521154299378395, + -0.05409305915236473, + 0.030685409903526306, + -0.005068439524620771, + 0.02011037990450859, + -0.0012903170427307487, + -0.006906445138156414, + -0.02318486198782921, + 0.013367312960326672, + 0.003709429409354925, + -0.030952757224440575, + -0.007753041572868824, + -0.011042886413633823, + 0.025100843980908394, + 0.03989400342106819, + 0.0063012028113007545, + -0.03555705398321152, + 0.008970952592790127, + -0.007663926109671593, + -0.03019527532160282, + -0.008258028887212276, + 0.00025527854450047016, + 0.023318534716963768, + -0.02115005999803543, + -0.021788720041513443, + -0.02628904953598976, + 0.0072183492593467236, + 0.030254686251282692, + -0.007359448354691267, + -0.05290485545992851, + -0.017600296065211296, + -0.03255683556199074, + 0.006609393749386072, + 0.0029519484378397465, + -0.019575687125325203, + 0.004125301260501146, + -0.001105588162317872, + 0.018773648887872696, + -0.008748163469135761, + -0.04054751619696617, + 0.002459957031533122, + 0.00028196675702929497, + -0.012676668353378773, + -0.02694256231188774, + -0.003287987783551216, + -0.015699166804552078, + -0.02949720434844494, + -0.0367155522108078, + -0.02166990004479885, + 0.0008512379135936499, + -0.019947001710534096, + -0.0004581089597195387, + 0.0023726981598883867, + 0.0039062260184437037, + 0.010396799072623253, + -0.0009505645139142871, + 0.012446453794836998, + -0.03502235934138298, + -0.03389356657862663, + 0.007812452036887407, + 0.010812670923769474, + 0.015157047659158707, + -0.0032192945946007967, + -0.022100623697042465, + 0.020273758098483086, + 0.0015576633159071207, + 0.015639755874872208, + 0.02928926795721054, + 0.014882275834679604, + -0.0035089196171611547, + 0.006256645079702139, + -0.012676668353378773, + -0.009290282614529133, + 0.01158500462770462, + 0.018892468884587288, + 0.005540008656680584, + -0.027105940505862236, + 0.005770223680883646, + 0.0006753277848474681, + 0.024179983884096146, + -0.02349676564335823, + 0.003039207076653838, + -0.018773648887872696, + -0.03040321171283722, + -0.018313219770789146, + -0.006494286470115185, + 0.013419297523796558, + 0.013694069348275661, + -0.04176542907953262, + 0.00021791504696011543, + -0.026081113144755363, + -0.018966732546687126, + -0.00525781000033021, + -0.017006192356348038, + -0.0007695488166064024, + 0.005042447708547115, + 0.03561646491289139, + 0.011028033681213856, + 0.003182163229212165, + 0.012067713774740696, + 0.027759453281760216, + -0.0025230804458260536, + -0.007946125231683254, + -0.02545730583369732, + -0.0029779402539134026, + -0.0048753563314676285, + -0.010426504537463188, + -0.015402114950120449, + 0.0029965059366077185, + -0.06137081980705261, + 0.025947440415620804, + -0.042597170919179916, + -0.01659032143652439, + 0.0136643648147583, + -0.006583401933312416, + -0.014496108517050743, + -0.009282856248319149, + -0.030239833518862724, + 0.025605831295251846, + -0.019813328981399536, + -0.027492107823491096, + -0.009676449932157993, + -0.0005964235169813037, + -0.009787843562662601, + -0.011466184630990028, + 0.015907103195786476, + -0.01951627805829048, + -0.02596229314804077, + -0.009431381709873676, + 0.007715910207480192, + 0.03196272999048233, + 0.00750426109880209, + 0.00767877884209156, + -0.023273978382349014, + 0.03392327204346657, + 0.027061382308602333, + -0.015038227662444115, + 3.4897737350547686e-5, + -0.022367971017956734, + -0.002231598598882556, + -0.007455990184098482, + 0.002894394565373659, + -0.0212094709277153, + -0.012379617430269718, + -0.0315171554684639, + -0.007879288867115974, + -0.008948673494160175, + -0.016872519627213478, + 0.003939644433557987, + 0.037131424993276596, + -0.0058816177770495415, + -0.00045277131721377373, + -0.003287987783551216, + -0.019174668937921524, + 0.03410150110721588, + -0.0014778306940570474, + -0.009097198955714703, + 0.028427818790078163, + -0.010463635437190533, + -0.004500328563153744, + 0.001091663958504796, + 0.021699605509638786, + -0.03383415564894676, + -0.003339971648529172, + 0.01685766689479351, + -0.017600296065211296, + -0.023585882037878036, + 0.00029635519604198635, + -0.015699166804552078, + 0.0018361490219831467, + 0.0012253370368853211, + 0.012646963819861412, + -0.002864689566195011, + 0.0261108186095953, + 0.02043713629245758, + -0.016308121383190155, + -0.009319988079369068, + -0.0008414909243583679, + -0.012825194746255875, + -0.003995341248810291, + -0.021194618195295334, + 0.0029742273036390543, + -0.07663926482200623, + -0.03653732314705849, + -0.015476378612220287, + 0.01979847624897957, + 0.02389778569340706, + 0.003469931660220027, + 0.00584448641166091, + 0.006468294188380241, + 0.02434336207807064, + 0.003321405965834856, + -0.01067157182842493, + -0.011406773701310158, + 0.012736079283058643, + 0.010367093607783318, + -0.005666255485266447, + -0.0012680381769314408, + -0.023080894723534584, + -0.02036287449300289, + 0.005814781412482262, + -0.007908993400633335, + 0.00686560058966279, + 0.016887372359633446, + 0.03508177027106285, + 0.001511248992756009, + 0.027299024164676666, + 0.016322974115610123, + -0.026125671342015266, + -0.0171844232827425, + -0.014199057593941689, + -0.027195056900382042, + 0.018446892499923706, + 0.008413980714976788, + -0.012312781065702438, + -0.01776367425918579, + 0.02088271453976631, + 0.01314452476799488, + 0.03196272999048233, + -0.010938918218016624, + 0.005187259986996651, + -0.007489408366382122, + 0.007255480624735355, + -0.004199564456939697, + 0.01914496347308159, + -0.013040556572377682, + -0.01103546004742384, + -0.02324427291750908, + -0.005662542302161455, + -0.019026141613721848, + -0.0016393524128943682, + 0.010790391825139523, + 0.016322974115610123, + -0.0034123780205845833, + 0.009527923539280891, + -0.02851693518459797, + -0.010136879049241543, + -0.002805279102176428, + 0.00579250231385231, + -0.007355735637247562, + 0.0010480345226824284, + -0.0034959237091243267, + 0.04562709480524063, + 0.029259562492370605, + 0.009312561713159084, + 0.009089772589504719, + -0.004440918564796448, + 0.005643976852297783, + -0.0017711690161377192, + 0.009423956274986267, + 0.028665460646152496, + -0.012958867475390434, + 0.0029835100285708904, + -0.006022717338055372, + 0.0025806340854614973, + 0.017659705132246017, + -0.007225775625556707, + 0.024566151201725006, + 0.03175479546189308, + 0.0025045147631317377, + 0.014689192175865173, + -0.010441357269883156, + -0.03019527532160282, + 0.018536007031798363, + 0.015847692266106606, + 0.007132946979254484, + -0.0051352763548493385, + -0.031606268137693405, + 0.0057813627645373344, + -0.021907541900873184, + 0.0025249370373785496, + 0.007307464722543955, + 0.00969872809946537, + 0.0013989264843985438, + 0.024952318519353867, + 0.001652348437346518, + -0.014406993053853512, + 0.01918952167034149, + 0.013263345696032047, + -0.015624904073774815, + 0.006438589189201593, + -0.011533020995557308, + -0.01899643801152706, + -0.02765548601746559, + -0.0057219527661800385, + -0.0008967239409685135, + -0.01645664870738983, + 0.020095527172088623, + -0.01672399416565895, + 0.02343735657632351, + -0.0026641797740012407, + -0.004697125405073166, + -2.831996425811667e-6, + 0.01712501421570778, + -0.038765206933021545, + -0.004570878576487303, + -0.005707100033760071, + 0.01782308518886566, + -0.029957633465528488, + -0.01782308518886566, + -0.00917888805270195, + -0.0072220624424517155, + 0.009862106293439865, + 0.01685766689479351, + -0.004155006725341082, + -0.04066633805632591, + -0.0025212238542735577, + 0.010099748149514198, + -0.017927052453160286, + -0.008614490740001202, + -0.009126904420554638, + 0.018862763419747353, + 0.012379617430269718, + 0.008339717984199524, + -0.009394250810146332, + 0.006776485126465559, + -0.011577578261494637, + 0.03038835898041725, + 0.014102515764534473, + -0.0007723336457274854, + -0.01770426332950592, + -0.028368409723043442, + 0.010329962708055973, + -0.003909938968718052, + -0.011399347335100174, + 0.0017191850347444415, + 0.004812232684344053, + 0.0014601933071389794, + -0.007533966097980738, + 3.243198079871945e-5, + -0.02786342240869999, + -0.024684971198439598, + -0.0020088101737201214, + 0.015966512262821198, + 0.026927709579467773, + 0.014911980368196964, + -0.00865162257105112, + -0.0028479802422225475, + 0.0005073081119917333, + -0.013255919329822063, + -0.005343212280422449, + -0.005699673667550087, + -0.03526000306010246, + -8.609849464846775e-5, + -0.0037799791898578405, + -0.005889044143259525, + -0.006731927394866943, + -0.02031831629574299, + -0.01054532453417778, + -0.020392578095197678, + -0.01438471395522356, + -0.007329743355512619, + -0.006356900092214346, + 0.011674120090901852, + -0.029586320742964745, + 0.0006716146599501371, + 0.011815219186246395, + -0.0212094709277153, + -0.022160034626722336, + 0.01587739773094654, + 0.0197836235165596, + -0.004808519501239061, + -0.014822864904999733, + 0.01607048138976097, + -0.009275429882109165, + 0.018981585279107094, + -0.00773076293990016, + -0.006182382348924875, + -0.005436040926724672, + 0.02018464356660843, + -0.007370587904006243, + 0.00278300023637712, + 0.01526844222098589, + 0.027625780552625656, + -0.010924065485596657, + 0.03181420639157295, + 0.009936369955539703, + -0.01177808828651905, + 0.02336309291422367, + -0.006212087348103523, + -0.0105824563652277, + 0.01422876212745905, + -0.04001282528042793, + -0.030477473512291908, + 0.00415129354223609, + 0.007493121549487114, + -0.004786240868270397, + 0.01920437254011631, + -0.009067494422197342, + 0.01951627805829048, + 0.015773430466651917, + -0.017600296065211296, + -0.00943880807608366, + 0.001655133324675262, + 0.012788062915205956, + -0.02798224240541458, + 0.019932148978114128, + 0.00249894498847425, + 0.009253151714801788, + -0.02869516611099243, + -0.011934040114283562, + -0.013515839353203773, + 0.01526844222098589, + 0.0003887196071445942, + 0.0037985448725521564, + -0.002476666122674942, + 6.405171006917953e-5, + -0.006590827833861113, + 0.021432258188724518, + -0.0404881052672863, + -0.019902443513274193, + 0.010901786386966705, + 0.006743066944181919, + 0.007199783343821764, + -0.016367532312870026, + 0.0008971880888566375, + -0.013671791180968285, + -0.010203715413808823, + 0.011904334649443626, + -0.018313219770789146, + 0.008310013450682163, + -0.011042886413633823, + -0.014295598492026329, + -0.021328290924429893, + 0.002894394565373659, + -0.011540447361767292, + 0.018966732546687126, + 0.010961196385324001, + -0.02772974781692028, + -0.013226213864982128, + 0.011117149144411087, + -0.0021740449592471123, + 0.005413761828094721, + -0.01051562000066042, + 0.007378014270216227, + 0.02174416370689869, + -0.007259193807840347, + -0.013441575691103935, + 0.01227564923465252, + 0.0007152440957725048, + 0.026719773188233376, + -0.02251649647951126, + -0.01077554002404213, + 0.005361777730286121, + 0.009193740785121918, + -0.01607048138976097, + 0.01757059060037136, + -0.011481036432087421, + 0.018714237958192825, + 0.006910158321261406, + -0.006754206493496895, + 0.0022594472393393517, + 0.005313506815582514, + -0.007953551597893238, + -0.030804229900240898, + -0.009097198955714703, + 0.004266400821506977, + 0.009104625321924686, + 0.012654390186071396, + -0.011094870045781136, + 0.0049013481475412846, + -0.019248930737376213, + -0.007500547915697098, + -0.005569713655859232, + -0.016709141433238983, + 0.022739285603165627, + 0.026586100459098816, + -0.0017303244676440954, + 0.020333169028162956, + 0.013330182060599327, + 0.02786342240869999, + -0.007196070160716772, + 0.02426910027861595, + -0.007864436134696007, + 0.021580783650279045, + -0.013560396619141102, + 0.012186533771455288, + 0.010760687291622162, + 0.009899238124489784, + 0.015862544998526573, + 0.05251868814229965, + -0.011644414626061916, + -0.0012661815853789449, + -0.019961854442954063, + 0.010114599950611591, + -0.0087184589356184, + -0.015387263149023056, + -0.00031190397567115724, + 0.018446892499923706, + -0.011020607315003872, + 0.01197117194533348, + -0.004756535403430462, + 0.013463854789733887, + 0.03034380078315735, + -0.01113200094550848, + -0.015788281336426735, + 0.008584785275161266, + 0.018714237958192825, + 0.004548599477857351, + -0.002361558610573411, + 0.01647149957716465, + -0.04087427258491516, + 0.0018556430004537106, + -0.023808669298887253, + 0.006000438239425421, + -0.00032350755645893514, + -0.014340156689286232, + -0.0006484074983745813, + -0.006238079629838467, + -0.0033975255209952593, + 0.015127343125641346, + -0.012067713774740696, + 0.007894140668213367, + 0.016560615971684456, + -0.027744600549340248, + 0.005306080915033817, + -0.004630288574844599, + 0.008755589835345745, + -0.013983694836497307, + -0.013701495714485645, + 0.018892468884587288, + -0.00584448641166091, + 0.008443686179816723, + 0.021105501800775528, + -0.015788281336426735, + 0.009654170833528042, + 0.030299242585897446, + 0.03380445018410683, + 0.0031004741322249174, + 0.0111691327765584, + 0.03285388648509979, + 0.0033678202889859676, + -0.008220897987484932, + 0.033418282866477966, + -0.012721226550638676, + 0.017941905185580254, + 0.000273148063570261, + 0.026467280462384224, + 0.0017349658301100135, + 0.0043480899184942245, + -0.028086209669709206, + -0.004808519501239061, + -0.007233201526105404, + -0.020199496299028397, + 0.004084456712007523, + 0.020392578095197678, + 0.007114381063729525, + -0.008139208890497684, + 0.026987120509147644, + -0.005101857706904411, + -0.0015446672914549708, + -0.006757919676601887, + 0.012602405622601509, + 0.0029742273036390543, + -0.0035553339403122663, + -0.01262468472123146, + -0.00447804993018508, + -0.006802477408200502, + -0.003729851683601737, + 0.02161048911511898, + -0.010634439997375011, + -0.0212094709277153, + 0.0021573358681052923, + -0.004255261272192001, + -0.03683437407016754, + -0.023972047492861748, + -0.0037966882809996605, + -0.007686205208301544, + 0.014414419420063496, + -0.0012671098811551929, + 0.013263345696032047, + 0.00191969471052289, + 0.002237168373540044, + 0.014711471274495125, + 0.018847912549972534, + -0.0012596836313605309, + 0.007998108863830566, + 0.005049874074757099, + -0.0022705867886543274, + 0.007140373345464468, + -0.03534911572933197, + -0.007455990184098482, + -0.026600953191518784, + -0.0009236442274414003, + -0.008770442567765713, + 0.01899643801152706, + -0.0075710974633693695, + 0.004051038529723883, + 0.002903677523136139, + 0.026600953191518784, + -0.0019883878994733095, + 0.00496447179466486, + 0.0005764653906226158, + -0.0003313979832455516, + 0.017080456018447876, + -0.00914918351918459, + 0.003991628065705299, + -0.001526101608760655, + 0.007649073842912912, + 0.018907321617007256, + -0.0063012028113007545, + -0.01711016148328781, + -0.0072517674416303635, + -0.01158500462770462, + 0.0043518031015992165, + -0.02070448361337185, + -0.01639723777770996, + 0.0015390976332128048, + -0.015550641342997551, + 0.017273539677262306, + 0.006000438239425421, + 0.01568431407213211, + -0.005202112719416618, + 0.004942192696034908, + -0.006472007371485233, + 0.01194889284670353, + 0.043904196470975876, + -0.02318486198782921, + 0.03015071712434292, + -0.013894579373300076, + 0.017674557864665985, + -0.02291751652956009, + -0.03332916647195816, + -0.02064507268369198, + 0.0036611584946513176, + 0.010953770950436592, + 0.019427161663770676, + -0.011087443679571152, + 0.012676668353378773, + 0.009654170833528042, + 0.005231817718595266, + 0.015639755874872208, + -0.014325303956866264, + -0.025873176753520966, + 0.021640194579958916, + 0.008176339790225029, + 0.008176339790225029, + -0.002081216312944889, + -0.018847912549972534, + 0.0048010931350290775, + 0.007827304303646088, + 0.018580565229058266, + 0.03353710472583771, + -0.02174416370689869, + -0.008815000765025616, + 0.0149416858330369, + 0.008213471621274948, + 0.02636331133544445, + 0.027447549626231194, + -0.006720787845551968, + -0.034368846565485, + 0.009862106293439865, + -0.0036722980439662933, + -0.0009268932044506073, + -0.01416192576289177, + -0.014176778495311737, + 0.0010740264551714063, + -0.01249843742698431, + -0.0437556728720665, + -0.013218787498772144, + -0.010879507288336754, + -0.03935931250452995, + 0.020006412640213966, + -0.005302367731928825, + -0.0030726254917681217, + 0.0033362586982548237, + 0.0171844232827425, + -0.0024283952079713345, + 0.01490455400198698, + 0.01386487390846014, + -0.001784165040589869, + 0.01620415411889553, + -0.01822410337626934, + 0.0010573173640295863, + -0.011674120090901852, + 0.020541105419397354, + 0.004292392637580633, + -0.03493324667215347, + -0.00579250231385231, + 0.0008693395066075027, + 0.042923927307128906, + 0.029244711622595787, + 0.007203496526926756, + -0.016902225092053413, + -0.02896251156926155, + 0.009728433564305305, + -0.011443905532360077, + -0.008191192522644997, + 0.008614490740001202, + 0.014666913077235222, + -0.003765126457437873, + 0.005068439524620771, + -0.008243176154792309, + 0.007285185623914003, + -0.005814781412482262, + -0.026467280462384224, + -0.005814781412482262, + -0.0012745361309498549, + -0.006976994685828686, + 0.004077030345797539, + -0.0070178392343223095, + -0.009104625321924686, + 0.03306182101368904, + -0.021402554586529732, + 0.004960758611559868, + -0.01314452476799488, + 0.016233859583735466, + 0.006531417835503817, + -0.010641866363584995, + 0.016025923192501068, + -0.012632111087441444, + -0.019560834392905235, + -0.021521374583244324, + 0.0008883693371899426, + 0.006160103715956211, + -0.003939644433557987, + 0.005796215496957302, + -0.005785075947642326, + 0.0003847744083032012, + -0.003178450046107173, + -0.005020168609917164, + 0.014213909395039082, + -0.013463854789733887, + 0.016352679580450058, + -0.0025973431766033173, + 0.0062752109952270985, + -0.0010192575864493847, + 0.076282799243927, + -0.007054971065372229, + -0.004437205381691456, + 0.003401238704100251, + -0.0064645810052752495, + -0.009104625321924686, + 0.001369221368804574, + 0.02207092009484768, + 0.026927709579467773, + 0.0016031493432819843, + -0.01321136113256216, + -0.021506521850824356, + 0.022353118285536766, + -0.000348107103491202, + -0.015446673147380352, + -0.011956319212913513, + 0.03288359194993973, + -0.006880453322082758, + -0.001096305320970714, + 0.02115005999803543, + 0.014562944881618023, + 0.007879288867115974, + -0.007953551597893238, + -0.0004673918301705271, + -0.0051983995363116264, + 0.03727995231747627, + -0.005142702255398035, + 0.00660568056628108, + -0.006178669165819883, + 0.011072590947151184, + 0.007455990184098482, + 0.01685766689479351, + -0.019739065319299698, + 0.018729090690612793, + 0.007597089745104313, + 0.006483146920800209, + 0.005506590474396944, + 0.02570979855954647, + -0.013649512082338333, + 0.0031376054976135492, + 0.0029389522969722748, + -0.008688753470778465, + 0.03508177027106285, + 0.022308560088276863, + -0.015699166804552078, + 0.009230872616171837, + -0.01194889284670353, + -0.010530472733080387, + -0.01737750694155693, + 0.007686205208301544, + -0.00029449863359332085, + -0.014251041226089, + 0.008844705298542976, + 0.0024302517995238304, + -0.007444850634783506, + -0.0062455059960484505, + 0.004374081734567881, + -0.010753260925412178, + -0.02643757499754429, + 0.007849583402276039, + -0.025680093094706535, + -0.003401238704100251, + -0.007140373345464468, + -0.02030346356332302, + -0.006349473726004362, + -0.009193740785121918, + -0.007002986967563629, + -0.02012523263692856, + 0.007062396965920925, + -0.0005151985096745193, + -0.01933804713189602, + 0.026333607733249664, + 0.004983037244528532, + -0.02161048911511898, + -0.009639318101108074, + -0.005889044143259525, + 0.003291700966656208, + 0.01866968162357807, + 0.004882782697677612, + -0.0051389895379543304, + 0.00891154259443283, + 0.004433492198586464, + 0.0012977432925254107, + -0.036151155829429626, + 0.0259028822183609, + 0.01162213645875454, + 0.009401677176356316, + -0.026600953191518784, + 0.0007222062558867037, + -0.002588060451671481, + -0.018387481570243835, + 0.014362435787916183, + 0.004923627246171236, + 0.02149166911840439, + -0.011094870045781136, + -0.0004017156024929136, + -0.0016254282090812922, + -0.020986681804060936, + 0.012416748329997063, + -0.002070076996460557, + -0.00017637427663430572, + 0.002883255248889327, + 0.0028182752430438995, + -0.013070262037217617, + -0.016842814162373543, + -0.014711471274495125, + 0.01549123041331768, + 0.017719116061925888, + -0.018001314252614975, + 0.012030581943690777, + -0.005859339144080877, + -0.02057080902159214, + 0.028680313378572464, + -0.013872300274670124, + -0.03808198869228363, + 0.013434150256216526, + -0.000691572786308825, + -0.009156609885394573, + -0.0031301791314035654, + -0.025085991248488426, + 0.00461914949119091, + 0.0014044961426407099, + -0.0011900621466338634, + -0.011837498284876347, + -0.0025676381774246693, + 0.010292830877006054, + -0.014845144003629684, + 0.002032945631071925, + -0.013686643913388252, + 0.002491518622264266, + 0.00773076293990016, + 0.005406335461884737, + 0.003869094653055072, + 0.010768113657832146, + 0.02799709513783455, + -0.018402334302663803, + -0.017228981480002403, + 0.010248273611068726, + 0.027120793238282204, + -0.03053688444197178, + 0.0162190068513155, + -0.010307683609426022, + 0.0018807067535817623, + 0.010211141780018806, + -0.006809903308749199, + 0.002935239113867283, + -0.004604296758770943, + -0.018847912549972534, + 0.014109942130744457, + 4.061249637743458e-5, + 0.03040321171283722, + -0.019234078004956245, + 0.0035330550745129585, + -0.020481694489717484, + 0.009646744467318058, + 0.004734256770461798, + -0.0036351666785776615, + 0.03119039721786976, + -0.019739065319299698, + -0.0014119225088506937, + 0.009557629004120827, + 0.00525781000033021, + -0.01568431407213211, + 0.0025249370373785496, + -0.007663926109671593, + 6.8983223172836e-5, + 0.024506740272045135, + 0.025546420365571976, + 0.007901567034423351, + -0.005142702255398035, + 0.005231817718595266, + -0.01021856814622879, + 0.01266181655228138, + -0.021773867309093475, + 0.023511618375778198, + 0.014867423102259636, + 0.020095527172088623, + -0.005502877291291952, + -0.01672399416565895, + 0.009394250810146332, + 0.002383837476372719, + -0.013397018425166607, + 0.01461492944508791, + 0.012394470162689686, + -0.010827523656189442, + -0.03719083592295647, + 0.027254465967416763, + -0.016560615971684456, + 0.012409322895109653, + 0.018847912549972534, + -0.012335059233009815, + 0.008510522544384003, + -0.013114819303154945, + -0.004823372233659029, + -0.009483366273343563, + -0.0066688042134046555, + 0.02037772722542286, + 0.014109942130744457, + -0.009728433564305305, + -0.010708702728152275, + -0.003306553466245532, + -0.0025416461285203695, + 0.01731809601187706, + -0.0004803878255188465, + -0.006082127336412668, + -0.005658829119056463, + -0.01593680866062641, + -0.02949720434844494, + 0.003299127100035548, + 0.015847692266106606, + -0.03540852665901184, + -0.03416091203689575, + 0.0006344832363538444, + -0.007162651978433132, + -0.0334479883313179, + 0.015981364995241165, + 0.004496615845710039, + 0.031665679067373276, + 0.0026771756820380688, + 0.003456935752183199, + 0.018521154299378395, + 0.008347144350409508, + 0.0329429991543293, + -0.021268879994750023, + -0.013716348446905613, + -0.01559519860893488, + 0.02382352203130722, + 0.008800148032605648, + -0.0054286145605146885, + -0.01266181655228138, + 0.033032115548849106, + -0.003417947795242071, + 0.007975829765200615, + 0.01249843742698431, + 0.011792941018939018, + 0.017392359673976898, + 0.015580345876514912, + -0.010723555460572243, + 0.0028684025164693594, + -0.011815219186246395, + -0.024625562131404877, + -0.010946344584226608, + -0.012572701089084148, + 0.005443466827273369, + 0.010976049117743969, + 0.0036815807688981295, + -0.009513070806860924, + 0.014132220298051834, + -0.01093149185180664, + -2.693478745641187e-5, + 0.000973771617282182, + -0.015624904073774815, + -0.022679874673485756, + -0.001781380153261125, + -0.007262906990945339, + 0.01142905279994011, + 0.017615148797631264, + -0.011339937336742878, + -0.014043104834854603, + -0.0315171554684639, + 0.002641900908201933, + -0.0051649813540279865, + -0.004526320844888687, + -0.005629124119877815, + -0.00013529762509278953, + 0.011347363702952862, + -0.03573528304696083, + 0.0007997180800884962, + -0.01711016148328781, + 0.02253134921193123, + 0.006631672848016024, + 0.009282856248319149, + 0.024328509345650673, + -0.0017386790132150054, + -0.005387770012021065, + 0.00300950207747519, + 0.0014704044442623854, + -0.010924065485596657, + 0.013783184811472893, + 0.020422283560037613, + -0.012424174696207047, + 0.010961196385324001, + 0.0005917820963077247, + -0.018565712496638298, + 0.00047853123396635056, + -0.030625998973846436, + 0.0055325822904706, + 0.003488497342914343, + -0.01272865291684866, + 0.013530691154301167, + 0.01481543853878975, + -0.010181437246501446, + 0.019813328981399536, + -0.020867861807346344, + 0.004596870392560959, + 0.01822410337626934, + 0.01353811752051115, + 0.0087184589356184, + 0.0018723520915955305, + 0.004533747211098671, + -0.005892757326364517, + -0.024239394813776016, + -0.007894140668213367, + -0.018595417961478233, + 0.026645511388778687, + -0.0015381693374365568, + 0.02382352203130722, + 0.00845853891223669, + -0.007600802928209305, + 0.003486640751361847, + 0.004518894478678703, + 0.010441357269883156, + -0.0087184589356184, + 0.00040380426798947155, + -0.023526471108198166, + -0.004515181295573711, + 0.0037818357814103365, + 6.9331334088929e-5, + -0.013092541135847569, + 0.021254027262330055, + -0.013998547568917274, + -0.012802915647625923, + 0.0014304881915450096, + 0.0012949585216119885, + 0.017852788791060448, + -0.011570151895284653, + 0.013218787498772144, + -0.0009408175246790051, + 0.01338216569274664, + -0.03034380078315735, + 0.003341828240081668, + 0.009832401759922504, + -0.010396799072623253, + -0.00845853891223669, + -0.0038171105552464724, + 0.024506740272045135, + -0.021179765462875366, + -0.01025569997727871, + -0.0018983441404998302, + -0.006022717338055372, + -0.00665766466408968, + -0.004069604445248842, + -0.016382385045289993, + 0.0018342924304306507, + -0.004485476296395063, + 0.026081113144755363, + 0.005807355046272278, + -0.008688753470778465, + 0.006509138736873865, + 0.01614474318921566, + 0.006048709154129028, + 0.007229488343000412, + 0.01633782684803009, + 0.0003163133224006742, + -0.02051139995455742, + 0.01972421258687973, + 0.007864436134696007, + 0.003473644843325019, + 0.017199276015162468, + 0.022160034626722336, + -0.018461745232343674, + 0.016174448654055595, + -0.010589882731437683, + -0.00610440643504262, + 0.005970733240246773, + -0.010122026316821575, + -0.002606626134365797, + 0.02172931097447872, + -0.027239613234996796, + 0.007931272499263287, + 0.00222231587395072, + -0.03157656267285347, + -0.0197836235165596, + -0.01647149957716465, + -0.006809903308749199, + -0.006204661447554827, + 0.011815219186246395, + -0.006653951480984688, + -0.0019698222167789936, + -0.006007864605635405, + 0.01549123041331768, + -0.006947289686650038, + -0.019293488934636116, + -0.01712501421570778, + -0.015476378612220287, + 0.0058816177770495415, + 0.01402825303375721, + 0.0010285405442118645, + -0.007240627892315388, + -0.015416967682540417, + 0.0036425928119570017, + 0.004051038529723883, + 0.010753260925412178, + -0.002201893599703908, + -0.0032341470941901207, + -0.006059848703444004, + -0.014733749441802502, + 0.02474438212811947, + -0.0018398620886728168, + 0.0018964875489473343, + -0.00137943250592798, + -0.0012188390828669071, + 0.023660143837332726, + 0.016100186854600906, + -0.012327632866799831, + -0.013062835671007633, + -0.02897736430168152, + 0.015446673147380352, + 0.02370470203459263, + -0.024506740272045135, + 0.018580565229058266, + 0.0014861853560432792, + -0.008948673494160175, + -0.004544886294752359, + 0.006713361945003271, + 0.0047119781374931335, + 0.002207463141530752, + -0.008094650693237782, + 0.008555080741643906, + 0.009319988079369068, + 0.0001582726981723681, + 0.013523264788091183, + 0.021892689168453217, + -0.0020589374471455812, + -0.002198180416598916, + 0.005903896875679493, + 0.03282418102025986, + -0.009141757152974606, + -0.008896689862012863, + 0.005450893193483353, + 0.008139208890497684, + -0.01171125192195177, + -0.0012968149967491627, + -0.0025230804458260536, + -0.007415145635604858, + -0.010315109975636005, + 0.028279293328523636, + -0.01791219972074032, + 0.01899643801152706, + -0.0025806340854614973, + -0.005889044143259525, + -0.00529122818261385, + -0.008451112546026707, + 0.026734625920653343, + 0.01112457551062107, + 0.024506740272045135, + 0.00011586165055632591, + 0.009646744467318058, + -0.02030346356332302, + -0.009461087174713612, + -0.0390622615814209, + 0.006839608773589134, + -0.002619622042402625, + 0.0010248273611068726, + -0.022798694670200348, + 9.851431241258979e-5, + -0.007132946979254484, + -0.004849364049732685, + 0.0011399347567930818, + -0.015253589488565922, + 0.022947220131754875, + 0.009535349905490875, + -0.01243160106241703, + 0.012283075600862503, + -0.011221116408705711, + 0.026734625920653343, + 0.004407500382512808, + 0.0025713511276990175, + 0.007274046074599028, + 0.012676668353378773, + -0.01312224566936493, + 0.011533020995557308, + 0.022605611011385918, + 0.008993231691420078, + -0.018847912549972534, + 0.0014741176273673773, + -0.0325271300971508, + -0.006290063727647066, + -0.013434150256216526, + 0.0005068439641036093, + -0.027447549626231194, + -0.007908993400633335, + -0.016426943242549896, + 0.010716129094362259, + 0.01803101971745491, + -0.02786342240869999, + -0.01829836703836918, + 0.01711016148328781, + -0.007634221110492945, + -0.009141757152974606, + 0.020793598145246506, + 0.014978816732764244, + -0.0026808888651430607, + -0.006096980068832636, + 0.022026361897587776, + -0.01660517416894436, + 0.01875879615545273, + 0.035378821194171906, + -0.0066947960294783115, + -0.0029519484378397465, + 0.0197836235165596, + -0.027581222355365753, + -0.01866968162357807, + 0.01520160585641861, + 0.00496447179466486, + 0.028472376987338066, + -0.002458100439980626, + 0.004125301260501146, + -0.025100843980908394, + -0.00445948401466012, + 0.006160103715956211, + -0.01416192576289177, + 0.006394031457602978, + 0.008547654375433922, + -0.014273320324718952, + 0.02088271453976631, + 0.001092592254281044, + 0.014236188493669033, + 0.029779402539134026, + -0.005870478227734566, + 0.019308341667056084, + -0.03552734851837158, + 0.011733530089259148, + 0.004515181295573711, + 0.01197117194533348, + -0.00010524438403081149, + -0.009483366273343563, + -0.00610440643504262, + -0.0015288864960893989, + 0.006999273784458637, + -0.00037688398151658475, + 0.011896909214556217, + -0.001789734698832035, + -0.007196070160716772, + 0.007021552417427301, + 0.032319191843271255, + -0.004507754929363728, + 0.002920386614277959, + 0.01474860217422247, + -0.01866968162357807, + 0.009431381709873676, + 0.008970952592790127, + -3.263504186179489e-5, + -0.013159377500414848, + -0.008161487057805061, + -0.004329524002969265, + -0.010768113657832146, + 0.007407719269394875, + 0.0057516577653586864, + 0.014451551251113415, + -0.010716129094362259, + 0.011533020995557308, + 0.018788501620292664, + 0.017139866948127747, + 0.02187783643603325, + -0.0019642524421215057, + 0.012379617430269718, + -0.01227564923465252, + 0.01913011074066162, + 0.01442184578627348, + -0.0047453963197767735, + 0.0010517475893720984, + 0.0148377176374197, + -0.0012633968144655228, + -0.04868672415614128, + 0.007455990184098482, + 0.011020607315003872, + -0.00833229161798954, + 0.006026430521160364, + 0.013946563005447388, + -0.008139208890497684, + -0.01918952167034149, + -0.011666693724691868, + -0.0033808161970227957, + -0.0023726981598883867, + -0.0020979256369173527, + -0.014072810299694538, + -0.017941905185580254, + 0.02068963088095188, + 0.0049347663298249245, + 0.01080524455755949, + -0.00800553523004055, + -0.021595636382699013, + 0.01513476949185133, + 0.0009361760457977653, + 0.014005973935127258, + 0.025412747636437416, + -0.002381980884820223, + 0.025219663977622986, + -0.01549123041331768, + 0.009282856248319149, + -0.016694288700819016, + -0.0047453963197767735, + 0.011807793751358986, + -0.008577358908951283, + 0.009282856248319149, + -0.0037874053232371807, + 0.00963189173489809, + -0.002612195909023285, + -0.009639318101108074, + -0.01763000153005123, + 0.0014536953531205654, + -0.0012986715883016586, + 0.013151951134204865, + 0.0033344021067023277, + -0.00014179563731886446, + 0.010070042684674263, + -0.01402825303375721, + -0.01660517416894436, + -0.008310013450682163, + -0.026348460465669632, + 0.011889482848346233, + 0.016352679580450058, + -0.02936353161931038, + -0.0002991400542668998, + -0.01090921275317669, + 0.027566369622945786, + 0.003191445954144001, + 0.02655639499425888, + -0.00330284028314054, + -0.010790391825139523, + 8.354571036761627e-5, + -0.009089772589504719, + 0.009052641689777374, + 0.009067494422197342, + -0.020719336345791817, + 0.0035553339403122663, + 0.020481694489717484, + 0.01587739773094654, + -0.008933820761740208, + -0.00473796995356679, + 0.01828351430594921, + 0.005491737741976976, + -0.019159816205501556, + 0.001230906811542809, + -0.008050093427300453, + -0.009617039002478123, + -0.0016226433217525482, + 0.01520160585641861, + -0.02701682597398758, + 0.021506521850824356, + -0.008547654375433922, + -0.008644196204841137, + 0.003984202165156603, + 0.0021387701854109764, + -0.02407601661980152, + 0.008703606203198433, + 0.010961196385324001, + 0.004229269456118345, + 0.03267565369606018, + -0.0018862764118239284, + -0.014986243098974228, + -0.020229199901223183, + 0.0068284692242741585, + 0.007656499743461609, + -0.00992894358932972, + -0.00039684210787527263, + -0.007396580185741186, + 0.048270855098962784, + 3.321521944599226e-5, + -0.022353118285536766, + -0.03234889730811119, + -0.0061118328012526035, + 0.0024321083910763264, + -0.005398909095674753, + -0.016976486891508102, + -0.004849364049732685, + 0.009386824443936348, + 0.0116518409922719, + -0.016129890456795692, + -0.004867929965257645, + 0.016902225092053413, + -0.023734407499432564, + 0.0008851203601807356, + -0.0013534404570236802, + -0.010270552709698677, + -0.004983037244528532, + -0.004173572175204754, + 0.012082565575838089, + -0.03508177027106285, + 0.004778814502060413, + -0.0036555889528244734, + -0.0009264290565624833, + -0.014481255784630775, + -1.6259502444881946e-5, + 0.011607283726334572, + 0.01546152587980032, + -0.008384276181459427, + -0.018402334302663803, + 0.0032954139169305563, + -0.004255261272192001, + -0.015342704951763153, + -0.0020403717644512653, + 0.007303751539438963, + 0.01028540451079607, + -0.0043518031015992165, + -0.01979847624897957, + 0.002194467233493924, + 0.006163816433399916, + -0.017852788791060448, + -0.012602405622601509, + 0.009253151714801788, + -0.0017136152600869536, + -0.016174448654055595, + 0.0011315802112221718, + -0.007370587904006243, + 0.007693631574511528, + 0.01158500462770462, + 0.009743286296725273, + 0.006044995971024036, + 0.01639723777770996, + 0.0061155459843575954, + 0.01633782684803009, + 0.0014165638713166118, + -0.015639755874872208, + -0.026660364121198654, + 0.003739134641364217, + -0.004400074016302824, + -0.008280307985842228, + -0.012342485599219799, + 0.000411230546887964, + 0.01093149185180664, + 0.010389372706413269, + 0.007270333357155323, + -0.014718896709382534, + -0.017332948744297028, + -0.008243176154792309, + 0.03656702861189842, + -0.014592650346457958, + 0.008815000765025616, + 0.015981364995241165, + -0.014785734005272388, + -0.015283294953405857, + 0.03653732314705849, + -0.005807355046272278, + -0.001975391758605838, + 0.008480818010866642, + 0.009461087174713612, + -0.0024302517995238304, + 0.020006412640213966, + -0.02037772722542286, + -0.015535788610577583, + -0.011510741896927357, + 0.008577358908951283, + 0.0022575906477868557, + -0.0021109215449541807, + 0.00885213166475296, + 0.002073790179565549, + -0.004507754929363728, + 0.013738627545535564, + -0.01757059060037136, + -0.006717075128108263, + 0.006349473726004362, + -0.00487906951457262, + 0.010485914535820484, + 0.004563452210277319, + 0.009743286296725273, + -0.00014933795318938792, + -0.005707100033760071, + 0.02089756727218628, + 0.009579908102750778, + 0.001393356709741056, + -0.0034810712095350027, + -0.006887879688292742, + 0.005105570890009403, + 0.02251649647951126, + 0.023214567452669144, + -0.0041178748942911625, + -0.01673884689807892, + 0.010716129094362259, + 0.005681108217686415, + -0.013842595741152763, + 0.015372410416603088, + -0.018922174349427223, + -0.005268949083983898, + 0.0025472159031778574, + -0.010136879049241543, + 0.012231091968715191, + -0.0010610304307192564, + -0.005079579073935747, + 0.0029612311627715826, + 0.012008302845060825, + -0.03457678481936455, + -0.005083292257040739, + -0.0036388796288520098, + -0.01327819749712944, + 0.02257590740919113, + 0.0001496860641054809, + 0.023452209308743477, + -0.0017368224216625094, + -0.003325119148939848, + 0.0233036819845438, + -0.02700197324156761, + 0.006531417835503817, + 0.007207209710031748, + 0.017733968794345856, + 0.012312781065702438, + 0.0004430243279784918, + -0.009609612636268139, + -0.012164254672825336, + 0.02982396073639393, + -0.00787186250090599, + -0.005439753644168377, + 0.007106954697519541, + -0.01575857773423195, + 0.013953989371657372, + -0.013397018425166607, + 0.005209539085626602, + 0.0028516934253275394, + -0.012335059233009815, + 0.02624449133872986, + -0.004403787199407816, + 0.002337423153221607, + -0.0036593019030988216, + -0.004756535403430462, + 0.006338334176689386, + 0.006182382348924875, + -0.018313219770789146, + -0.006130398251116276, + 0.01751117967069149, + -0.012439027428627014, + -0.0038096841890364885, + 0.009245725348591805, + -0.014986243098974228, + -0.04206248000264168, + 0.017214128747582436, + 0.028724871575832367, + -0.007214636076241732, + 0.027566369622945786, + -0.008161487057805061, + -0.011941466480493546, + -0.006553696468472481, + -0.006969568785279989, + 0.001797160948626697, + 0.011770661920309067, + -0.00787186250090599, + 0.0036852939520031214, + -0.0015530218370258808, + 0.01507535856217146, + 0.023467060178518295, + 0.013850022107362747, + -0.025145402178168297, + 0.018372628837823868, + -0.005803641863167286, + 0.01866968162357807, + 0.005320933181792498, + -0.014458976686000824, + 0.01451096124947071, + -0.011503315530717373, + -0.010961196385324001, + -0.0012949585216119885, + -0.0019902444910258055, + 0.009201167151331902, + -0.0021554792765527964, + -0.0002462277770973742, + -0.004500328563153744, + -0.01777852699160576, + -0.03288359194993973, + 0.01136221643537283, + -0.015907103195786476, + 0.015446673147380352, + 0.026541542261838913, + -0.0025917734019458294, + -0.010723555460572243, + 0.01448868215084076, + -0.0020106667652726173, + 0.009847254492342472, + -0.0035293418914079666, + -0.017941905185580254, + 0.0010396798606961966, + -0.016426943242549896, + -0.0010136879282072186, + 0.0048753563314676285, + -0.014035678468644619, + 0.003577612806111574, + -0.0020143799483776093, + 0.0067245010286569595, + -0.006772771943360567, + -0.005525155924260616, + 0.023674996569752693, + -0.0017479618545621634, + -0.012580127455294132, + 0.010122026316821575, + 0.012788062915205956, + 0.014191631227731705, + -0.020956976339221, + 0.025412747636437416, + -0.004077030345797539, + 0.010263126343488693, + 0.012409322895109653, + -0.015372410416603088, + -0.010678998194634914, + 0.008896689862012863, + 0.02036287449300289, + 0.003299127100035548, + 0.003861668286845088, + 0.01269152108579874, + -0.018595417961478233, + 0.010782966390252113, + -0.004678559489548206, + 0.0016969061689451337, + 0.008176339790225029, + -0.018862763419747353, + -0.012446453794836998, + -0.015654608607292175, + 0.0038356762379407883, + -0.03380445018410683, + -0.009164036251604557, + -0.003753987140953541, + 0.013159377500414848, + -0.014072810299694538, + -0.007132946979254484, + 0.007058683782815933, + -0.005755370948463678, + 0.006861887406557798, + 0.010010632686316967, + 0.007879288867115974, + 0.007578523829579353, + -0.0028127054683864117, + 0.0015613764990121126, + -0.015580345876514912, + 0.0046117231249809265, + -0.003308410057798028, + 0.010248273611068726, + 0.004496615845710039, + -0.006795051041990519, + -0.010797818191349506, + -0.0018361490219831467, + -0.02049654722213745, + -0.011822645552456379, + 0.01018886361271143, + 0.006148964166641235, + 0.006472007371485233, + -0.00859221164137125, + 0.0002592237724456936, + 0.008324865251779556, + 0.0010805245256051421, + -0.005049874074757099, + -0.0017674558330327272, + 0.01862512342631817, + -0.007455990184098482, + -0.015119916759431362, + -0.016842814162373543, + -0.0014954681973904371, + 0.0030206413939595222, + -0.0044112135656178, + 0.007080962881445885, + -0.009594760835170746, + 0.003326975740492344, + 0.004797380417585373, + -0.01321136113256216, + 0.0055585745722055435, + 0.035111475735902786, + -0.003141318680718541, + 0.003451365977525711, + 0.0021202045027166605, + -0.006163816433399916, + -0.008777868933975697, + -0.012587552890181541, + -0.0039062260184437037, + 0.006973281502723694, + -0.01880335435271263, + 0.024194836616516113, + -0.022353118285536766, + 0.011666693724691868, + -0.017214128747582436, + 0.0009969787206500769, + -0.007170078344643116, + -0.004177285358309746, + -0.012394470162689686, + 0.008168913424015045, + 0.03001704439520836, + -0.011644414626061916, + 0.02628904953598976, + 0.003189589362591505, + 0.030685409903526306, + -0.028427818790078163, + 0.017035897821187973, + -0.006895305588841438, + -0.0011798510095104575, + -0.024892907589673996, + 0.0021536226850003004, + -0.0019809615332633257, + -0.006323481909930706, + 0.009995779953897, + -0.001110229641199112, + 0.009691301733255386, + 0.007593376561999321, + -0.00517240772023797, + 0.014109942130744457, + -0.01757059060037136, + -0.012283075600862503, + 0.0020422283560037613, + 0.011644414626061916, + -0.016753699630498886, + 0.0032360036857426167, + 0.005283801816403866, + 0.010092321783304214, + -0.0077753206714987755, + -0.01685766689479351, + 0.01724383421242237, + 0.03040321171283722, + -0.0039879148826003075, + -0.01647149957716465, + -0.005061013158410788, + -0.0071218074299395084, + 0.0034847843926399946, + 0.01490455400198698, + -0.022308560088276863, + -0.0011854207841679454, + 0.008428833447396755, + 0.007968404330313206, + -0.03282418102025986, + -0.00465256767347455, + -0.04179513454437256, + 0.03638879582285881, + 0.028026800602674484, + 0.02265016920864582, + -0.0012810342013835907, + 0.010040337219834328, + -0.002768147736787796, + 0.007426285184919834, + -0.0087184589356184, + -0.0017368224216625094, + -0.010174010880291462, + 0.00305220321752131, + -0.000205615273443982, + -0.030744820833206177, + -0.01822410337626934, + -0.024313656613230705, + 0.0007774392142891884, + 0.013426723890006542, + 0.008770442567765713, + -0.0005838916404172778, + -0.011094870045781136, + -0.0039062260184437037, + -0.017852788791060448, + 0.010092321783304214, + -0.003601748263463378, + 0.0009306063293479383, + -0.005863052327185869, + -0.004103022627532482, + -0.01142905279994011, + 0.0019159815274178982, + -0.0025676381774246693, + -0.033358871936798096, + 0.005651402752846479, + 0.013708922080695629, + 0.009461087174713612, + -0.008087224327027798, + -0.004385221283882856, + 0.00043304526479914784, + 0.006869313772767782, + -0.005398909095674753, + 0.02018464356660843, + 0.0006265927804633975, + 5.993244121782482e-5, + 0.006549983285367489, + 0.010634439997375011, + 0.02915559522807598, + 0.003566473489627242, + 0.03300241008400917, + 0.0050350213423371315, + -0.019055847078561783, + -0.006523991469293833, + 0.011904334649443626, + -0.0031079002656042576, + 0.0004998818039894104, + -0.00963189173489809, + 0.01829836703836918, + -0.006186095532029867, + 0.03255683556199074, + -0.009728433564305305, + 0.02257590740919113, + -0.023066041991114616, + -0.003724281908944249, + 0.007864436134696007, + 0.011978598311543465, + -0.018342923372983932, + 0.01770426332950592, + 0.0023986902087926865, + 0.0035571905318647623, + 0.004708264954388142, + -0.006939863320440054, + -0.020867861807346344, + -0.012840046547353268, + 0.0017535316292196512, + -0.004006480798125267, + -0.011206264607608318, + -0.01795675791800022, + -0.007849583402276039, + -0.007032691966742277, + 0.01880335435271263, + 0.011176559142768383, + 0.0036407362204045057, + -0.0023726981598883867, + 0.0014926833100616932, + -0.013879726640880108, + -0.007693631574511528, + -0.004433492198586464, + -0.001644922187551856, + 0.009312561713159084, + 0.006449728738516569, + -0.008577358908951283, + 0.006817329674959183, + 0.004782527685165405, + 0.0027997095603495836, + -0.007782747037708759, + -0.006969568785279989, + 0.0018482167506590486, + -0.00221303291618824, + -3.031432697753189e-6, + -0.02134314365684986, + 0.009505645371973515, + 0.018194397911429405, + -0.0008721243357285857, + -0.0038133973721414804, + 0.005276375450193882, + 0.029007069766521454, + 0.02245708554983139, + -0.0062417928129434586, + -0.007663926109671593, + 0.01614474318921566, + 0.008035240694880486, + 0.004585730843245983, + 0.011280527338385582, + -0.003453222569078207, + -0.018907321617007256, + 0.01145133189857006, + 0.016887372359633446, + -0.004355516284704208, + -0.007322316989302635, + -0.00891154259443283, + 0.0024024031590670347, + 0.00556600047275424, + 0.008815000765025616, + 0.03291329741477966, + -0.0017024758271872997, + 0.011785514652729034, + -0.01809043064713478, + 0.011904334649443626, + 0.0075413924641907215, + 0.011926613748073578, + 0.005603132303804159, + -0.00830258708447218, + -0.03053688444197178, + 0.01776367425918579, + -0.012676668353378773, + -0.0037725528236478567, + 0.0081317825242877, + -0.012023155577480793, + -0.0032192945946007967, + 0.012669241987168789, + -0.005287514999508858, + -0.009282856248319149, + 0.015654608607292175, + -0.025754356756806374, + 0.01032253634184599, + -0.017555737867951393, + 0.04684500768780708, + 0.009914090856909752, + -0.014897127635776997, + -0.04889466241002083, + -0.0017488901503384113, + -0.015157047659158707, + 0.00856250710785389, + -0.009706154465675354, + 0.008324865251779556, + -0.0014741176273673773, + -7.774391997372732e-5, + 0.00748569518327713, + -0.013686643913388252, + -0.004370369017124176, + -0.0014054244384169579, + 0.0038059712387621403, + 0.007738189306110144, + 0.010463635437190533, + 0.026541542261838913, + -0.005016455426812172, + -0.0043815081007778645, + -0.0036574453115463257, + -0.02474438212811947, + -0.008763016201555729, + 0.009847254492342472, + 0.016174448654055595, + 0.006382891908288002, + -0.03371533378958702, + 0.00995864812284708, + 0.01608533412218094, + 0.015610051341354847, + 0.0400722362101078, + -0.0040584648959338665, + -0.007507974281907082, + -0.010307683609426022, + 0.004121588077396154, + 0.01044878363609314, + -0.015907103195786476, + 0.008176339790225029, + 0.011377069167792797, + 0.0076416474767029285, + -0.014570371247828007, + -0.012639537453651428, + 0.01041165180504322, + 0.01899643801152706, + 0.00014643705799244344, + 0.0030967609491199255, + -0.01559519860893488, + 0.0034996368922293186, + 0.02018464356660843, + 0.011726104654371738, + -0.009000657126307487, + 0.012847472913563251, + -0.001096305320970714, + 0.00888926349580288, + -0.0010350384982302785, + 0.019694508984684944, + 0.002784856827929616, + -0.017481476068496704, + 0.042864516377449036, + -0.00921601988375187, + 0.0055882795713841915, + 0.024952318519353867, + -0.00767877884209156, + -0.011547873727977276, + 0.027358435094356537, + -0.0007588735315948725, + 0.018699385225772858, + -0.006267784629017115, + -0.0071218074299395084, + 0.01464463397860527, + -0.0018639975460246205, + -0.0018305792473256588, + -0.021120354533195496, + -0.012973720207810402, + -0.005662542302161455, + 0.03255683556199074, + 0.008087224327027798, + 0.025041433051228523, + -0.024774087592959404, + 0.0049978899769485, + -0.007207209710031748, + 0.005770223680883646, + -0.010307683609426022, + 0.003742847591638565, + -0.02434336207807064, + 0.0008336005266755819, + -0.0036611584946513176, + -0.021981803700327873, + -0.007946125231683254, + -0.0025954865850508213, + 0.023333387449383736, + -0.0009988353122025728, + 0.009542776271700859, + 0.0016105755930766463, + 0.016560615971684456, + -0.001540954108349979, + -0.004225556273013353, + -0.01060473546385765, + 0.008012961596250534, + 0.01520160585641861, + -0.0008670187671668828, + 0.012936588376760483, + 0.01286232564598322, + 0.03321034833788872, + 0.005974446423351765, + 0.01018886361271143, + 0.0017006193520501256, + -0.03475501388311386, + 0.011666693724691868, + -0.003154314588755369, + -0.0027105940971523523, + 0.010456209070980549, + -0.005480598192662001, + -0.0008549510966986418, + 0.002777430694550276, + -0.010530472733080387, + 0.01972421258687973, + 0.019739065319299698, + 0.010485914535820484, + 0.005098144523799419, + 0.004563452210277319, + 0.016620026901364326, + -0.01770426332950592, + -0.008168913424015045, + 0.010441357269883156, + 0.00743742473423481, + 0.046637069433927536, + 0.027224760502576828, + 0.01281776838004589, + -0.009253151714801788, + 0.00859221164137125, + -0.025947440415620804, + 0.0036871505435556173, + -0.010240847244858742, + 0.002788570011034608, + 0.0047119781374931335, + 0.009676449932157993, + 0.00445948401466012, + 0.01932319439947605, + 0.017941905185580254, + -0.007923846133053303, + 0.014666913077235222, + 0.003768839640542865, + 0.01795675791800022, + 0.0017358941258862615, + 0.016813108697533607, + -0.007233201526105404, + -0.00665766466408968, + -0.021432258188724518, + -0.004333237186074257, + -0.00774561520665884, + -0.008770442567765713, + -0.001380360801704228, + -0.009156609885394573, + 0.004678559489548206, + -0.022234298288822174, + 0.022100623697042465, + -0.0014778306940570474, + -0.01084237638860941, + 0.005231817718595266, + -0.016382385045289993, + 0.006186095532029867, + 0.009795269928872585, + 0.012773210182785988, + 0.004708264954388142, + -0.0038133973721414804, + -0.02576920948922634, + -0.016129890456795692, + 0.02630390226840973, + -0.01947171986103058, + -0.000830815639346838, + 0.014295598492026329, + 0.004388934466987848, + 0.022768991068005562, + -0.007292611990123987, + 0.00601900415495038, + 0.023214567452669144, + 0.03846815600991249, + -0.0021759015507996082, + -0.012958867475390434, + -0.011087443679571152, + -0.014570371247828007, + 0.017021045088768005, + -0.027254465967416763, + -0.013783184811472893, + -0.005900183692574501, + -0.01932319439947605, + 0.01041165180504322, + 0.015773430466651917, + 0.028606049716472626, + -0.0035052066668868065, + 0.01945686712861061, + 0.01034481544047594, + 0.008310013450682163, + 6.1498922150349244e-6, + -0.012929162010550499, + 0.007203496526926756, + -0.020466841757297516, + -0.016189301386475563, + -0.012639537453651428, + 0.00819861888885498, + -0.0052652363665401936, + -0.031130988150835037, + -0.008963526226580143, + 0.00018287227430846542, + 0.0035070632584393024, + 0.006260358262807131, + -0.0078050256706774235, + 0.0010387516813352704, + 0.00862934347242117, + -0.012127123773097992, + 0.0032489998266100883, + -0.010686424560844898, + -0.008681327104568481, + 0.0033863859716802835, + 0.028264440596103668, + -0.014206483028829098, + 0.0007788316579535604, + 0.002747725462540984, + -0.005506590474396944, + 0.008287734352052212, + -0.00549916410818696, + -0.0017312527634203434, + 0.0020960690453648567, + 0.0061452509835362434, + 0.03350739926099777, + -0.00598558597266674, + 0.0017071173060685396, + 0.0019512564176693559, + 0.02759607508778572, + -0.008035240694880486, + -0.023853227496147156, + -0.0017080456018447876, + -0.011867203749716282, + -0.014666913077235222, + -0.005662542302161455, + -0.016426943242549896, + 0.020229199901223183, + -0.013827743008732796, + 0.009260577149689198, + 0.014035678468644619, + 0.0025490722618997097, + -0.014741175808012486, + -0.007144086062908173, + 0.015312999486923218, + 0.0025676381774246693, + -0.008094650693237782, + -0.004604296758770943, + 0.010159158147871494, + 0.025991998612880707, + -0.004155006725341082, + -0.013753480277955532, + -0.008012961596250534, + 0.0015465238830074668, + -0.0237641129642725, + -0.009980927221477032, + 0.010107174515724182, + 0.00773076293990016, + -0.010426504537463188, + 0.011458758264780045, + -0.0011510741896927357, + -0.0056885345838963985, + 0.021640194579958916, + -0.006613106932491064, + 0.03148745000362396, + -0.018238956108689308, + -0.011718678288161755, + 0.03184391185641289, + -0.004860503599047661, + -0.005773936863988638, + -0.021521374583244324, + 0.011577578261494637, + -0.013478707522153854, + 0.005027594976127148, + -0.0021740449592471123, + -0.006316055543720722, + 0.009906664490699768, + -0.004180998541414738, + -0.00471940403804183, + 0.00921601988375187, + 0.003007645485922694, + 0.005959593690931797, + 0.015550641342997551, + 0.01249843742698431, + -0.01678340509533882, + -0.0054286145605146885, + -0.005317219998687506, + 0.000684610684402287, + 0.003599891671910882, + 0.010916639119386673, + 0.02539789490401745, + 0.004366655834019184, + -0.009453660808503628, + 0.015312999486923218, + 0.00014852570893708616, + -0.01269152108579874, + 0.0009849111083894968, + 0.005684821400791407, + -9.845629392657429e-5, + 0.006906445138156414, + 0.0038282498717308044, + 0.019412308931350708, + 0.004422352649271488, + -0.010745834559202194, + -0.013894579373300076, + 0.006286350544542074, + 0.03086364082992077, + 0.010656719096004963, + 0.04001282528042793, + 0.009921517223119736, + -0.02765548601746559, + 0.03594322130084038, + -0.00637917872518301, + 0.007597089745104313, + 0.026660364121198654, + -0.00043281319085508585, + -0.005142702255398035, + 0.020065821707248688, + -0.01513476949185133, + -0.010790391825139523, + -0.02147681638598442, + 0.020674778148531914, + 0.006089553702622652, + 0.004255261272192001, + -0.03086364082992077, + -0.01272865291684866, + 0.00487906951457262, + -0.00917888805270195, + -0.004630288574844599, + -0.008258028887212276 + ], + "59d8dd96-da6f-49c9-8c16-c219c359561d": [ + -0.0014941211557015777, + -0.005092761479318142, + -0.007202520035207272, + 0.011652573943138123, + -0.027608495205640793, + -0.028614472597837448, + 0.005662116687744856, + -0.007181562017649412, + -0.03297371044754982, + 0.0048552388325333595, + 0.019574647769331932, + 0.048650193959474564, + -0.012064744718372822, + -0.026490742340683937, + -0.037137337028980255, + 0.01879221946001053, + -0.024255236610770226, + 0.018680443987250328, + -0.029955776408314705, + 0.0012103167828172445, + 0.06622685492038727, + -0.007977960631251335, + -0.04546459764242172, + 0.023067625239491463, + 0.013601655140519142, + -0.03437089920043945, + 0.006804320495575666, + 0.001395444618538022, + -0.012323224917054176, + 0.014963916502892971, + 0.03601958602666855, + -0.009647604078054428, + -0.0035209215711802244, + 0.016039753332734108, + 0.013231399469077587, + -0.051612239331007004, + -0.036382853984832764, + 0.022802159190177917, + 0.013943967409431934, + 0.00782427005469799, + -0.008802304044365883, + 0.04345264285802841, + -0.01890399493277073, + 0.028125455603003502, + -0.023710332810878754, + -0.008334244601428509, + -0.021712349727749825, + -0.008145623840391636, + 0.02503766492009163, + -0.008676556870341301, + -0.003431850578635931, + -0.03954050689935684, + 0.0032414833549410105, + 0.011226430535316467, + 0.04842664301395416, + 0.0016975871985778213, + 0.006416600197553635, + 0.09037031978368759, + 0.01923932135105133, + -0.035153329372406006, + 0.004069318994879723, + -0.0344826765358448, + 0.00316813075914979, + 0.021418938413262367, + -0.012616635300219059, + 0.004247460979968309, + -0.009591716341674328, + 0.02028721384704113, + -0.026923872530460358, + 0.006584262941032648, + 0.018107596784830093, + 0.06969188898801804, + -0.01325934287160635, + 0.02526121400296688, + 4.016924503957853e-5, + 0.018680443987250328, + 0.03073820285499096, + -0.03498566523194313, + 0.028376949951052666, + 0.023011736571788788, + -0.0005252565024420619, + 0.020007776096463203, + 0.011820236220955849, + 0.004034389276057482, + 0.0534844733774662, + 0.012861143797636032, + -0.01490802876651287, + -0.03791976720094681, + -0.010178537108004093, + -0.040518540889024734, + 0.006961504463106394, + 0.03087792359292507, + 0.004341771360486746, + -0.03828303515911102, + -0.04409535229206085, + 0.016444938257336617, + 0.00295680551789701, + -0.01194598339498043, + 0.031045585870742798, + -0.013406048528850079, + 0.03909340500831604, + 0.047197114676237106, + -0.0581231489777565, + 0.02229917049407959, + -0.001510712900198996, + -0.0005737215979024768, + 0.0010068508563563228, + 0.021097585558891296, + -0.0065877558663487434, + 0.048231035470962524, + 0.04227900132536888, + -0.03981994464993477, + -0.008893121033906937, + -0.013287287205457687, + -0.025484764948487282, + -0.00924241915345192, + -0.020860062912106514, + -0.06455022841691971, + 0.01559265237301588, + -0.004425602965056896, + 0.010017859749495983, + 0.023933883756399155, + 0.013224413618445396, + 0.004732984583824873, + -0.0028659882955253124, + 0.04957234114408493, + -0.028698304668068886, + 0.003096524626016617, + 0.03400763124227524, + 0.034706227481365204, + -0.03655051812529564, + -0.021949872374534607, + 0.004757435526698828, + -0.00850190781056881, + -0.005952034145593643, + -0.005029887892305851, + 0.02579214796423912, + 0.05739660933613777, + -0.0014565717428922653, + 0.03241483122110367, + -0.011764348484575748, + -0.046330854296684265, + -0.020454877987504005, + -0.001680122222751379, + -0.007272379472851753, + -0.014006840996444225, + -0.05845847353339195, + 0.016542742028832436, + -0.029452787712216377, + -0.011177528649568558, + -0.03805948421359062, + -0.002286153845489025, + 0.02471631020307541, + 0.0008514132932759821, + 0.04110535979270935, + -0.0074819582514464855, + -0.037137337028980255, + 0.015438961796462536, + -0.004327799193561077, + 0.020426932722330093, + 0.034706227481365204, + -0.05840258672833443, + 0.01267252303659916, + -0.004023910500109196, + 0.04247460886836052, + 0.024856029078364372, + 0.035991642624139786, + 0.027622466906905174, + -0.02238300070166588, + 0.01342700608074665, + 0.04429095610976219, + -0.01051386259496212, + 0.0253590177744627, + -0.024967804551124573, + 0.03750060871243477, + -0.0243111252784729, + 0.05630680173635483, + 0.04521310329437256, + 0.01671040616929531, + -0.029452787712216377, + 0.016654517501592636, + -0.038841910660266876, + 0.01944890059530735, + -0.01798184961080551, + -0.055859699845314026, + 0.006217500194907188, + 0.029844000935554504, + 0.014405040070414543, + -0.006276880856603384, + -0.0013360639568418264, + -0.015872091054916382, + -0.01659863069653511, + -0.003244976280257106, + 0.04403946176171303, + -0.009584730491042137, + -0.05300942808389664, + 0.035460710525512695, + 0.008767373859882355, + -0.006762404926121235, + 0.031632404774427414, + -0.004464025609195232, + -0.015299241989850998, + -0.003456301521509886, + 0.04314526170492172, + -0.047616273164749146, + -0.006413107272237539, + -0.04278199002146721, + -0.002670381451025605, + -0.004271911922842264, + -0.012120632454752922, + 0.00570752564817667, + -0.012078716419637203, + -0.008774359710514545, + 0.010416059754788876, + -0.037668272852897644, + 0.009368166327476501, + -0.021907955408096313, + -0.007195534184575081, + -0.004167122300714254, + -0.028237231075763702, + -0.01193899754434824, + -0.015397045761346817, + 0.015201439149677753, + -0.01965847797691822, + -0.06863002479076385, + 0.01289607398211956, + -0.011785306967794895, + 0.02018941193819046, + -0.044654227793216705, + -0.01616550050675869, + 0.058290813118219376, + -0.007607705425471067, + 0.04482188820838928, + -0.017045730724930763, + 0.0007095111068338156, + 0.023165427148342133, + 0.010946991853415966, + 0.00642009312286973, + -0.027622466906905174, + -0.04946056380867958, + 0.0001485607062932104, + -0.0041426713578403, + 0.0036641336046159267, + -0.009109686128795147, + -0.018261287361383438, + -0.013210441917181015, + -0.017674466595053673, + 0.03140885382890701, + 0.022648466750979424, + 0.015271298587322235, + 0.007335253059864044, + 0.004816816188395023, + 0.028921855613589287, + -0.03705350682139397, + -0.018261287361383438, + 0.03981994464993477, + 0.0585702508687973, + -0.030710259452462196, + -0.027762187644839287, + 0.006329275667667389, + -0.003056355519220233, + 0.01146395318210125, + 0.0335884727537632, + -0.008711486123502254, + 0.028810080140829086, + -0.03076614812016487, + 0.025205327197909355, + -0.036075472831726074, + 0.0227043554186821, + 0.04364825040102005, + -0.028167372569441795, + 0.0070488289929926395, + 0.001968292985111475, + 0.010430031456053257, + -0.031967733055353165, + -0.007279365323483944, + 0.01061166636645794, + 0.00902585405856371, + 0.003190835239365697, + -0.00935419462621212, + 0.011820236220955849, + -0.021432911977171898, + 0.0014268814120441675, + 0.03733294457197189, + 0.014244362711906433, + 0.01975628174841404, + 0.008222469128668308, + 0.0006566797965206206, + -0.030151383951306343, + -0.029089517891407013, + 0.011289304122328758, + -0.0019909972324967384, + 0.005033380817621946, + 0.02925718203186989, + 5.8616533351596445e-5, + -0.03353258594870567, + -0.021893983706831932, + -0.025638455525040627, + -0.015187467448413372, + 0.01721339486539364, + -0.0071745761670172215, + -0.014614618383347988, + 0.014600646682083607, + -0.029676338657736778, + 0.06617096811532974, + -0.0238640233874321, + 0.02981605753302574, + 0.00982225313782692, + -0.014076700434088707, + 0.0060917530208826065, + 0.01722736656665802, + 0.0027262691874057055, + -0.014516815543174744, + -0.022634495049715042, + 0.0023595064412802458, + 0.015411017462611198, + -0.019169460982084274, + -0.015173494815826416, + -0.046023473143577576, + -0.01404875610023737, + 0.04152451828122139, + 0.0003100017784163356, + -0.06605919450521469, + 0.033029597252607346, + 0.006482966709882021, + -0.02366841770708561, + 0.0027472269721329212, + -0.021824125200510025, + -0.025498736649751663, + -0.025596540421247482, + -0.033979687839746475, + 0.025722287595272064, + -0.03993172198534012, + -0.0033288076519966125, + -0.0016163754044100642, + -0.034203238785266876, + -0.03180006891489029, + -0.03509743884205818, + 0.004802844487130642, + 0.0006627925322391093, + -0.006825278513133526, + -0.02059459686279297, + -0.03750060871243477, + -0.015522792935371399, + 0.028390923514962196, + -0.03666229546070099, + -0.02482808567583561, + 0.011484910733997822, + 0.018764276057481766, + 0.007705508731305599, + 0.0008383146487176418, + -0.0006291726022027433, + 0.03210745006799698, + 0.02271832711994648, + 0.031772125512361526, + 0.0021534208208322525, + -0.03166034817695618, + -0.015522792935371399, + 0.010409073904156685, + -0.024073602631688118, + 0.0034824986942112446, + -0.02989988960325718, + -0.011561756022274494, + -0.04004349559545517, + 0.0008632020908407867, + 0.0255825687199831, + 0.004037882201373577, + 0.019071659073233604, + 0.021209361031651497, + -0.010856174863874912, + -0.004579293541610241, + 0.00860669743269682, + -0.024995747953653336, + -0.0407700352370739, + -0.0064620086923241615, + -0.007440042681992054, + 0.02939690090715885, + 0.004181094467639923, + -0.04071414843201637, + 0.014125601388514042, + -0.005578285548835993, + 0.025219298899173737, + -0.04311731830239296, + -0.04001555219292641, + 0.029452787712216377, + 0.004722505807876587, + -0.032498665153980255, + 0.012379112653434277, + 0.031213248148560524, + 0.02936895564198494, + -0.026602517813444138, + -0.007321281358599663, + -0.011848180554807186, + -0.0003936149296350777, + -0.02155865915119648, + 0.0255825687199831, + -0.0006889898795634508, + -0.004498955328017473, + 0.03023521415889263, + 0.02007763646543026, + -0.013860135339200497, + 0.005497946869581938, + 0.00428239069879055, + 0.008872163482010365, + 0.05667006969451904, + -0.0069754766300320625, + 0.014391068369150162, + 0.011233416385948658, + 0.013406048528850079, + -0.031744182109832764, + -0.014866112731397152, + -0.003999459557235241, + 0.006182570476084948, + 0.004736477974802256, + 0.01536910142749548, + -0.012071730569005013, + 0.0017464888514950871, + 0.0047085341066122055, + -0.02228519693017006, + -0.021852068603038788, + 0.01573237217962742, + 0.03283398970961571, + -0.008019876666367054, + 0.030402878299355507, + -0.021321136504411697, + 0.027734242379665375, + -0.000957949145231396, + 0.01325934287160635, + 0.015550736337900162, + -0.02653265930712223, + -0.013895065523684025, + 0.02642088383436203, + 0.011086711660027504, + -0.018093625083565712, + -0.026812097057700157, + -0.029676338657736778, + 0.010444003157317638, + -0.009654589928686619, + -0.0033480192068964243, + -0.016333162784576416, + 0.006842743139714003, + 0.026169389486312866, + 0.011589700356125832, + -0.006657615303993225, + -0.0037479649763554335, + -0.0335884727537632, + -0.011722433380782604, + -0.00016973688616417348, + -0.008145623840391636, + 0.0036885845474898815, + -0.00778934033587575, + 0.015886062756180763, + -0.04090975597500801, + 0.0010688512120395899, + 0.019309179857373238, + 0.000322445499477908, + 0.006489952560514212, + -0.02883802354335785, + -0.020971838384866714, + -0.012553761713206768, + -0.020664455369114876, + 0.021390995010733604, + 0.004900647792965174, + 0.016416994854807854, + 0.03836686536669731, + -0.020371045917272568, + -0.015886062756180763, + -0.006329275667667389, + 0.014460927806794643, + 0.02568037249147892, + -0.035460710525512695, + 0.003007453866302967, + -0.0875200480222702, + 0.006748432759195566, + -0.044011518359184265, + -0.045073382556438446, + 0.005525890737771988, + -0.0005789610440842807, + 0.008271371014416218, + -0.006241951137781143, + 0.0059380619786679745, + -0.003894670167937875, + -0.03319726139307022, + -0.017576664686203003, + -0.008152609691023827, + 0.003807345638051629, + -0.004030896350741386, + -0.022969821467995644, + 0.036829955875873566, + -0.03557248413562775, + 0.0007274125819094479, + 0.03275015950202942, + 0.01427230704575777, + 0.018736332654953003, + 0.002308858325704932, + -0.013804247602820396, + 0.02284407429397106, + -0.024269208312034607, + -0.00334103312343359, + -0.00134741619694978, + 0.0228161308914423, + 0.031716238707304, + -0.032386887818574905, + 0.0585702508687973, + 0.03691378980875015, + -0.0008147370535880327, + -0.005176593083888292, + -0.01775829866528511, + -0.005319804884493351, + 0.0008509766776114702, + -0.02020338363945484, + -0.014698450453579426, + -0.03836686536669731, + -0.009801295585930347, + -0.022145478054881096, + -0.009577744640409946, + -0.029536619782447815, + -0.010059775784611702, + 0.021600574254989624, + -0.008026862516999245, + -0.002343788044527173, + -0.01617947220802307, + -0.0027524663601070642, + 0.01732516847550869, + -0.021083613857626915, + 0.0061546266078948975, + -0.03529304638504982, + 0.0046456605195999146, + 0.03752855211496353, + -0.04023910313844681, + -0.03674612566828728, + 0.0003193891607224941, + -0.008935037069022655, + -0.0007885397062636912, + 0.011149585247039795, + 0.014922000467777252, + -0.012742382474243641, + 0.004984479397535324, + 0.01188310980796814, + 0.02822325937449932, + 0.007024378050118685, + 0.013482893817126751, + 0.03140885382890701, + -0.017073674127459526, + 0.013936980627477169, + 0.030374934896826744, + -0.0058018360286951065, + 0.049712058156728745, + -0.006441050674766302, + -0.00470504118129611, + -0.010974936187267303, + -0.0030860458500683308, + -0.01627727597951889, + -0.015900034457445145, + 0.018331147730350494, + -0.003768922993913293, + 0.019602591171860695, + 0.004079797770828009, + -0.01700381562113762, + -0.0240875743329525, + 0.008683542720973492, + 0.007314295507967472, + 0.013762332499027252, + 0.03146474435925484, + -0.014195461757481098, + -0.006776376627385616, + -0.03224717080593109, + 0.012497873976826668, + -0.01215556263923645, + 0.033756136894226074, + 0.014530787244439125, + -0.004540870897471905, + 0.028460782021284103, + 0.031157361343503, + -0.012029815465211868, + -0.0011928519234061241, + 0.011617643758654594, + 0.0007400746690109372, + 0.01754871942102909, + -0.008145623840391636, + 0.027496719732880592, + -0.02378019131720066, + 0.0032310043461620808, + -0.004373208153992891, + -0.011456966400146484, + 0.00302317226305604, + -0.03269427269697189, + -0.021265247836709023, + -0.02305365353822708, + 0.014656534418463707, + -0.00573546951636672, + 0.03230305761098862, + 0.019169460982084274, + -0.0005318058538250625, + 0.007607705425471067, + 0.039987608790397644, + -0.007356211077421904, + -0.00023381119535770267, + 0.044346846640110016, + 0.004568814765661955, + 0.020538708195090294, + 0.01882016472518444, + -0.016947926953434944, + -0.012120632454752922, + -0.013343174941837788, + -0.0039051491767168045, + 0.001809362438507378, + 0.018009793013334274, + -0.008369174785912037, + -0.010206480510532856, + -0.03417529538273811, + 0.001237387303262949, + 0.009570758789777756, + -0.009528842754662037, + 0.010178537108004093, + 0.001227781642228365, + -0.0011710207909345627, + 0.008243427611887455, + 0.017101619392633438, + -0.0021254769526422024, + -0.013874107040464878, + -0.02936895564198494, + 0.026881955564022064, + -0.06471788883209229, + 0.035768091678619385, + 0.016836153343319893, + 0.007963988929986954, + -0.01954670250415802, + -0.01606769673526287, + 0.014488871209323406, + 0.003110496560111642, + -0.03973611444234848, + -0.012288295663893223, + -0.0037759088445454836, + 0.03942873328924179, + -0.0037654300685971975, + 0.012330211699008942, + 0.0012155562872067094, + -0.025862006470561028, + -0.04778393357992172, + -0.00024014220980461687, + 0.009626646526157856, + 0.002665142063051462, + 0.05275793373584747, + -0.010800287127494812, + 0.012539790011942387, + -0.033867910504341125, + 0.031213248148560524, + 0.019588619470596313, + 0.0063711912371218204, + -0.007991933263838291, + 0.017367085441946983, + -0.008362188935279846, + 0.01637507975101471, + 0.020231327041983604, + 0.008362188935279846, + 0.009333236142992973, + -0.013112638145685196, + 0.0056586237624287605, + -0.014020812697708607, + 0.030067551881074905, + -0.018093625083565712, + -0.023919912055134773, + 0.011547784321010113, + 0.013895065523684025, + -0.0008252160041593015, + 0.005421101581305265, + 0.02176823653280735, + 0.017674466595053673, + 0.00998293049633503, + 0.0017150520579889417, + -0.014628591015934944, + 0.014586674980819225, + -0.01691998355090618, + 0.004956535529345274, + 0.01616550050675869, + 0.0029341012705117464, + -0.024017713963985443, + -0.024562619626522064, + 0.00459326570853591, + -0.015816202387213707, + -0.01341303437948227, + -0.014027798548340797, + 0.028893912211060524, + 0.005773892160505056, + -0.004212531261146069, + -0.015201439149677753, + 0.05544054135680199, + -0.003922613803297281, + -0.010136621072888374, + 0.03909340500831604, + 0.002238998655229807, + -0.02165646106004715, + 0.007447028532624245, + 0.0058751883916556835, + 0.01199488528072834, + -0.023179400712251663, + 0.009235433302819729, + 0.014488871209323406, + 0.00774043845012784, + -0.030151383951306343, + 0.00042570664663799107, + 0.019909972324967384, + -0.021614545956254005, + 0.029871944338083267, + 0.016556713730096817, + -0.017786242067813873, + -0.0049250987358391285, + 0.02070637233555317, + 0.0016644038259983063, + -0.023514725267887115, + 0.013517824001610279, + 0.03833892196416855, + 0.021838096901774406, + 0.020049691200256348, + -0.008655598387122154, + 0.004652646370232105, + -0.0020294201094657183, + -0.0314926877617836, + 0.01870838925242424, + -0.011009865440428257, + -0.004827294964343309, + 0.03300165385007858, + -0.049712058156728745, + -0.04060237109661102, + 0.023528696969151497, + 0.03205156326293945, + 0.022257253527641296, + -0.029089517891407013, + -0.0002853326150216162, + 0.010744399391114712, + -0.006210514344274998, + 0.008921065367758274, + -0.019672449678182602, + -0.0019071658607572317, + -0.024856029078364372, + -0.006444544065743685, + 0.02482808567583561, + 0.011009865440428257, + -0.02315145544707775, + -0.007970974780619144, + -0.0085647813975811, + 0.0412171371281147, + -0.011666545644402504, + 0.01131026167422533, + -0.0056481449864804745, + 0.025848034769296646, + -0.017576664686203003, + -0.017045730724930763, + 0.016626574099063873, + 0.032386887818574905, + -0.028181344270706177, + 0.039792001247406006, + 0.011708461679518223, + 0.003657147753983736, + 0.010332227684557438, + 0.016780264675617218, + 0.01420943345874548, + -0.013713430613279343, + 0.022033702582120895, + -0.028893912211060524, + 0.004757435526698828, + -0.008152609691023827, + -0.01680820807814598, + 0.0006846236065030098, + -0.006395642179995775, + -0.016123585402965546, + -0.0015238114865496755, + 0.029313068836927414, + -0.04261432960629463, + 0.04336881265044212, + 0.04764421656727791, + 0.018680443987250328, + 0.0075448318384587765, + 0.020734315738081932, + 0.017911989241838455, + 0.017506804317235947, + -0.01337111834436655, + -0.028055597096681595, + -0.007080265786498785, + -0.010960963554680347, + -0.04244666546583176, + 0.01616550050675869, + -0.01880619116127491, + 0.02030118554830551, + -0.0039785015396773815, + 0.024576591327786446, + -0.010108677670359612, + -0.01798184961080551, + -0.01432120893150568, + -0.0015316706849262118, + -0.011980913579463959, + -0.011918039992451668, + -0.019728338345885277, + 0.01220446452498436, + -0.019183432683348656, + 0.00393658597022295, + -0.025959810242056847, + -0.009647604078054428, + 0.019826142117381096, + -0.018135540187358856, + -0.043592359870672226, + 0.049712058156728745, + 0.03677406907081604, + -0.016654517501592636, + 0.005934569053351879, + 0.01500583253800869, + 0.002518436871469021, + -0.007461000233888626, + -0.017674466595053673, + 0.0036606406792998314, + 0.027720270678400993, + 0.005187071859836578, + 0.006252429913729429, + -0.03487388789653778, + -0.015173494815826416, + -0.0071221813559532166, + 0.030905866995453835, + 0.03361641615629196, + 0.029508676379919052, + -0.01214857678860426, + 0.019169460982084274, + -0.011233416385948658, + 0.021949872374534607, + -0.00782427005469799, + -0.011841194704174995, + 0.03353258594870567, + -0.030486708506941795, + 0.02336103469133377, + 0.019700394943356514, + 0.010059775784611702, + -0.0034353435039520264, + 0.009333236142992973, + 0.013867121189832687, + 0.006458515767008066, + -0.00563067989423871, + -0.006964997388422489, + -0.011715447530150414, + -0.04320114850997925, + 0.030486708506941795, + -0.01003183238208294, + -0.022257253527641296, + -0.002741987584158778, + -0.00207133567892015, + 0.00850190781056881, + 0.0023507738951593637, + 0.0180656798183918, + 0.007656607311218977, + 0.006441050674766302, + 0.027077563107013702, + 0.01965847797691822, + -0.036354910582304, + -0.011806264519691467, + 0.005983470939099789, + -0.007146632298827171, + 0.017087647691369057, + -0.05038271099328995, + 0.007363196928054094, + 0.0026494236662983894, + 0.008921065367758274, + -5.9544352552620694e-5, + -0.005704032722860575, + -0.00929830688983202, + -0.008830247446894646, + 0.02303967997431755, + -0.03775210306048393, + 0.003220525337383151, + -0.012868129648268223, + 0.019602591171860695, + 0.03727705776691437, + 0.002579563995823264, + -0.031548574566841125, + 0.021195389330387115, + -0.01986805722117424, + -0.021838096901774406, + -0.0019508280092850327, + -0.019253293052315712, + 0.0252472423017025, + -0.01912754587829113, + -0.005686567630618811, + -0.022243281826376915, + 0.023738276213407516, + 0.03233100101351738, + -0.007181562017649412, + -0.04965617135167122, + -0.0005431580357253551, + -0.021488798782229424, + 0.001612009247764945, + 0.004684083163738251, + -0.0042544468306005, + 0.00384227535687387, + -0.0033480192068964243, + 0.01288908813148737, + -0.01711559109389782, + -0.03730500116944313, + 0.012497873976826668, + 0.011652573943138123, + -0.0035156819503754377, + -0.008515879511833191, + 0.01615152880549431, + -0.005040366668254137, + -0.0338120236992836, + -0.025526681914925575, + -0.007509902119636536, + -0.0006261162343434989, + -0.01267252303659916, + -0.00027310720179229975, + 0.010492905043065548, + 0.007073279935866594, + 0.03453856334090233, + 0.010437017306685448, + 0.013692472130060196, + -0.01988202892243862, + -0.03677406907081604, + 0.035879865288734436, + 0.004223010037094355, + 0.017911989241838455, + 0.0007876664749346673, + -0.01420943345874548, + 0.015662511810660362, + 0.01050687674432993, + 0.015229382552206516, + 0.01485214103013277, + 0.022564636543393135, + -0.024492759257555008, + 0.011813250370323658, + -0.016249332576990128, + 0.0013596415519714355, + -0.024325096979737282, + 0.008550809696316719, + 0.00010173297778237611, + -0.015103635378181934, + 0.01073042768985033, + -0.0013343174941837788, + 0.017772270366549492, + -0.009724450297653675, + -0.0014556985115632415, + -0.02398977056145668, + -0.030291102826595306, + -0.020245298743247986, + -0.014244362711906433, + 0.007523873820900917, + 0.01052084844559431, + -0.029536619782447815, + -0.0065877558663487434, + -0.03347669914364815, + -0.02113950066268444, + 0.010052789933979511, + -0.015411017462611198, + -0.014712422154843807, + 0.027077563107013702, + 0.025205327197909355, + -0.003143679816275835, + 0.003831796580925584, + 0.016766292974352837, + 0.022047676146030426, + -0.0043487572111189365, + 0.007118688430637121, + -0.007062800694257021, + 0.006723982281982899, + 0.008376160636544228, + -0.005518904887139797, + -0.005120705347508192, + 0.0012688240967690945, + -0.06555620580911636, + 0.025526681914925575, + -0.031855955719947815, + -0.007852213457226753, + 0.019574647769331932, + -0.00782427005469799, + 0.005578285548835993, + -0.016095642000436783, + -0.028977742418646812, + 0.02197781577706337, + -0.020999781787395477, + -0.01325235702097416, + 0.0009928789222612977, + -0.010849189013242722, + -0.00040300231194123626, + -0.01278429850935936, + 0.021907955408096313, + -0.0069580115377902985, + -0.021209361031651497, + -0.0008121173013933003, + 0.008369174785912037, + 0.038646306842565536, + 0.016123585402965546, + -0.02241094410419464, + -0.02241094410419464, + 0.02939690090715885, + 0.017925960943102837, + -0.028404895216226578, + -0.01658465899527073, + -0.02883802354335785, + 0.004327799193561077, + -0.021810153499245644, + -0.019504787400364876, + -0.03685789927840233, + -0.006231472361832857, + -0.023221315816044807, + -0.01627727597951889, + -0.012372126802802086, + -0.0049250987358391285, + 0.002810100559145212, + 0.01416751742362976, + -0.00716060446575284, + -0.0032275114208459854, + -0.008152609691023827, + -0.003615231951698661, + 0.039987608790397644, + -0.00016449742543045431, + -0.011519839987158775, + 0.008383146487176418, + -0.008781345561146736, + 0.01120547205209732, + 0.001063611707650125, + 0.009389123879373074, + -0.028069568797945976, + -0.033560529351234436, + -0.0023140977136790752, + -0.012553761713206768, + -0.014754338189959526, + -0.0155786806717515, + -0.010856174863874912, + 0.0028502698987722397, + 0.009535829536616802, + 0.020035719498991966, + -0.007600719574838877, + 0.01965847797691822, + 0.018931938335299492, + -0.008907092735171318, + -0.008851205930113792, + -0.006339754443615675, + -0.026700321584939957, + -0.016514798626303673, + -0.01953273080289364, + 0.018149511888623238, + -0.08137241005897522, + -0.02820928767323494, + -0.010800287127494812, + 0.030682316049933434, + 0.010136621072888374, + 0.0044011520221829414, + 0.004596758633852005, + 0.009368166327476501, + 0.023542670533061028, + 0.0037724159192293882, + -0.012602663598954678, + -0.009689520113170147, + 0.006961504463106394, + 0.014544758945703506, + -0.008012890815734863, + -0.010807272978127003, + -0.026351023465394974, + -0.004823802039027214, + 0.011645588092505932, + -0.008753402158617973, + 0.0034353435039520264, + -0.0011133865918964148, + 0.03437089920043945, + -0.003681598464027047, + 0.04624702408909798, + 0.03649463132023811, + -0.025107523426413536, + -0.004125206731259823, + -0.0182892307639122, + -0.010793301276862621, + 0.016025781631469727, + 0.009968958795070648, + -0.010632623918354511, + -0.0031995675526559353, + 0.025275185704231262, + 0.003119229106232524, + 0.029452787712216377, + -0.007073279935866594, + 0.005194057710468769, + 0.012700466439127922, + 0.01289607398211956, + -0.010967950336635113, + 0.01072344183921814, + -0.02239697240293026, + -0.005379185546189547, + -0.022690383717417717, + -0.0068951379507780075, + -0.0013063736259937286, + 0.009710477665066719, + 0.010143606923520565, + 0.023402949795126915, + -0.0070488289929926395, + 0.013881093822419643, + -0.025917895138263702, + -0.018359091132879257, + -0.005176593083888292, + -0.0017770524136722088, + -0.009920056909322739, + -0.004261432681232691, + -0.007677564863115549, + 0.07556009292602539, + 0.02482808567583561, + -0.0056481449864804745, + 0.00919351726770401, + -0.005085775628685951, + -0.002944580279290676, + 0.0013945713872089982, + 0.006919588893651962, + 0.020426932722330093, + -0.003382948925718665, + 0.00280136801302433, + 0.006374684162437916, + -0.004327799193561077, + 0.00774043845012784, + -0.0003846641629934311, + 0.026378966867923737, + 0.026714293286204338, + 0.0007191167678683996, + 0.013943967409431934, + -0.019993804395198822, + -0.015131579712033272, + 0.0037339930422604084, + 0.010604680515825748, + -0.00042592495447024703, + 0.006165105849504471, + -0.007094237487763166, + 0.012986890971660614, + -0.014558730646967888, + 0.00934720877557993, + 0.014977888204157352, + 0.0014164024032652378, + 0.012029815465211868, + 0.01050687674432993, + 0.0082853427156806, + -0.006964997388422489, + 0.017045730724930763, + 0.02303967997431755, + -0.007523873820900917, + 0.013615626841783524, + 0.0010854428401216865, + -0.02175426483154297, + -0.034091461449861526, + 0.01626330427825451, + -0.006772883702069521, + -0.004823802039027214, + 0.01119150035083294, + -0.011596686206758022, + 0.030291102826595306, + -0.009654589928686619, + -0.0016050232807174325, + -0.006514403503388166, + 0.01986805722117424, + -0.02758055180311203, + -0.003835289506241679, + -0.022355057299137115, + 0.02714742347598076, + -0.02250874787569046, + -0.018107596784830093, + -0.012658551335334778, + -0.023081596940755844, + -0.0019752788357436657, + 0.013182497583329678, + -0.023291176185011864, + -0.03931695595383644, + 0.00316813075914979, + 0.0030458765104413033, + -0.01787007413804531, + -0.030598483979701996, + -0.010388115420937538, + 0.022327113896608353, + 0.03252660855650902, + 0.03166034817695618, + -0.013161540031433105, + 0.014488871209323406, + -0.0009640618227422237, + 0.023640472441911697, + 0.017576664686203003, + 0.010241410695016384, + -0.015802230685949326, + -0.026881955564022064, + -0.0023455345071852207, + 0.0024084080941975117, + -0.014279292896389961, + 0.006032372359186411, + 0.009710477665066719, + -0.009556787088513374, + 0.007558803539723158, + 0.005047352984547615, + -0.04004349559545517, + -0.037472665309906006, + 0.004289376549422741, + 0.021111557260155678, + 0.01869441755115986, + 0.024045659229159355, + 6.6516663537186105e-6, + -0.010646595619618893, + 0.003239736892282963, + 0.00028576923068612814, + -0.0023822106886655092, + 0.00573546951636672, + -0.02218739502131939, + -0.004285883624106646, + -0.004090277012437582, + 0.0015666005201637745, + 0.0031978210899978876, + -0.028153400868177414, + -0.009207488968968391, + -0.026253219693899155, + -0.011044795624911785, + -0.018987827003002167, + -0.010471947491168976, + 0.022243281826376915, + -0.03761238232254982, + 0.012609649449586868, + 0.022229310125112534, + -0.019309179857373238, + -0.02355664223432541, + -0.004341771360486746, + 0.01626330427825451, + -0.024492759257555008, + -0.03129708021879196, + 0.017017787322402, + -0.0023664922919124365, + 0.019518759101629257, + -0.0069056167267262936, + -0.011044795624911785, + -0.004114727955311537, + 0.0013919515768066049, + 0.0028956783935427666, + -0.0052778893150389194, + 0.007258407771587372, + 0.018191426992416382, + -0.006350233219563961, + 0.03210745006799698, + -0.008439034223556519, + -0.002275675069540739, + 0.01468447782099247, + 0.0031786097679287195, + -0.006849729456007481, + 0.0031017642468214035, + -0.04297759756445885, + -0.029201293364167213, + 0.013238385319709778, + -0.009647604078054428, + -0.0006178204203024507, + 0.02822325937449932, + -0.007384154945611954, + 0.02157263085246086, + 0.01432120893150568, + -0.013538781553506851, + -0.008536837063729763, + -0.008942022919654846, + 0.013874107040464878, + -0.009703491814434528, + 0.011429022997617722, + 0.006531868129968643, + 0.0023036187049001455, + -0.00786618608981371, + -0.015983866527676582, + -0.011897082440555096, + 0.022215338423848152, + 0.00195432105101645, + 0.0030458765104413033, + -0.005382678471505642, + -0.0090328399091959, + -0.00861368328332901, + 0.011575727723538876, + 0.002740240888670087, + -0.03230305761098862, + 0.005805328954011202, + 0.005986963864415884, + 0.006716995965689421, + 0.0011369641870260239, + -0.012714439071714878, + -0.006703024264425039, + -0.002160406671464443, + 0.012937989085912704, + -0.03465033695101738, + 0.014726393856108189, + -0.012637592852115631, + -0.024883972480893135, + -0.027119478210806847, + 0.003327061189338565, + 0.010660568252205849, + 0.02484205737709999, + 0.013168525882065296, + -0.02379416488111019, + -0.009975944645702839, + 0.005501439794898033, + 0.0003700373345054686, + 0.01209967490285635, + -0.02326323091983795, + 0.0026249727234244347, + 0.023486781865358353, + -0.007649620994925499, + -0.022885989397764206, + 0.011925025843083858, + -0.0026162404101341963, + 0.025750230997800827, + -0.015327186323702335, + -0.018219372257590294, + 0.021474827080965042, + 0.03213539347052574, + -0.01420943345874548, + 0.011156571097671986, + -0.011862152256071568, + 0.01204378716647625, + 0.010395101271569729, + -0.002555113285779953, + 0.005166113842278719, + -0.003382948925718665, + -0.01256773341447115, + -0.039261069148778915, + -0.001371867023408413, + -0.004778393544256687, + 0.01659863069653511, + -0.00355235836468637, + 0.014866112731397152, + 0.01009470596909523, + -0.012854157947003841, + -0.008019876666367054, + -0.007045336067676544, + -0.009179545566439629, + 0.010360172018408775, + 0.021838096901774406, + -0.0024590562097728252, + 0.0228161308914423, + 0.017367085441946983, + 0.0368020124733448, + -0.006577277090400457, + 0.03305754065513611, + 0.0018669965211302042, + 0.01337111834436655, + 0.00301269325427711, + 0.014586674980819225, + -0.01861058548092842, + 0.00157882587518543, + 0.009458983317017555, + 0.03772415965795517, + -0.011079724878072739, + -0.015215410850942135, + -0.01775829866528511, + 0.0005981724243611097, + 0.0032676805276423693, + -0.016947926953434944, + -0.00018851163622457534, + 0.02566640079021454, + -0.008103707805275917, + 0.006329275667667389, + -0.009808281436562538, + 0.0018215879099443555, + 0.026155417785048485, + -0.005665609613060951, + -0.013189483433961868, + 0.015788258984684944, + 0.0014574449742212892, + -0.005952034145593643, + 0.011631615459918976, + 0.015327186323702335, + -0.018219372257590294, + 0.018666472285985947, + -0.009158587083220482, + 0.002011955250054598, + -0.0004091150185558945, + 0.00027943821623921394, + -0.017269281670451164, + -0.008886135183274746, + 0.004160136450082064, + 0.022355057299137115, + -0.010709469206631184, + 0.012882101349532604, + -0.001308993436396122, + -0.02664443477988243, + 0.0018215879099443555, + 0.0037479649763554335, + 0.0044919694773852825, + -0.013985882513225079, + 0.00029864959651604295, + 0.028083540499210358, + -0.01256773341447115, + -0.014866112731397152, + 0.014460927806794643, + -0.008697514422237873, + 0.021111557260155678, + 0.029005687683820724, + 0.02716139517724514, + 0.014286278747022152, + -0.0025708316825330257, + 0.031045585870742798, + -0.010150592774152756, + 0.002329816110432148, + 0.03054259717464447, + -0.012476916424930096, + 0.009067770093679428, + -0.007272379472851753, + 0.036829955875873566, + -0.004292869474738836, + -0.017381057143211365, + -0.03532098978757858, + 0.006730968132615089, + 0.010374143719673157, + -0.014223405160009861, + 0.004062333144247532, + 0.016095642000436783, + 0.0003366357123013586, + 0.007579761557281017, + 0.032079506665468216, + -0.011659559793770313, + -0.0002707057574298233, + -0.0006719615776091814, + 0.00018654683663044125, + 0.0012958947336301208, + -0.008222469128668308, + -0.013713430613279343, + 0.006165105849504471, + 0.00351393548771739, + -0.009465969167649746, + 0.006951025687158108, + -0.021097585558891296, + -0.030710259452462196, + -0.011268345639109612, + -0.0045478567481040955, + -0.04725300148129463, + -0.009710477665066719, + 0.013294273056089878, + 0.003730500116944313, + 0.01489405706524849, + -0.0009457237320020795, + 0.017073674127459526, + -0.009445011615753174, + 0.012616635300219059, + -0.004212531261146069, + 0.014446956105530262, + 0.011959956027567387, + -0.002757705980911851, + 0.009214474819600582, + -0.005424594506621361, + -0.003702556248754263, + -0.03906546160578728, + -0.0065423473715782166, + -0.031101472675800323, + 0.009018868207931519, + -0.004970507230609655, + 0.00774043845012784, + -0.018778247758746147, + 0.0021446882747113705, + -0.010339213535189629, + 0.01795390620827675, + 0.002397929085418582, + 0.017059702426195145, + -0.009326250292360783, + 0.004471011459827423, + 0.0252472423017025, + -0.00924940500408411, + -0.0022791679948568344, + -0.0029131434857845306, + 0.0077613964676856995, + 0.017478860914707184, + -0.005742455366998911, + -0.002728015650063753, + -0.015257326886057854, + -0.005683074705302715, + 0.005637666210532188, + -0.019616562873125076, + -0.012875115498900414, + -0.005197550635784864, + 0.0007784974295645952, + -0.0023961826227605343, + 0.002464295830577612, + 0.02027324214577675, + -0.006133669055998325, + -0.001193725154735148, + 0.0013159794034436345, + 0.02820928767323494, + 0.041356854140758514, + -0.009011882357299328, + 0.03615930676460266, + -0.009493913501501083, + 0.029145406559109688, + -0.006643643602728844, + -0.005599243100732565, + -0.017478860914707184, + -0.001670516561716795, + 0.0053512416779994965, + 0.0006121443584561348, + -0.007447028532624245, + 0.008508893661201, + -0.0016390797682106495, + 0.01421641930937767, + 0.015173494815826416, + -0.008683542720973492, + -0.019826142117381096, + 0.019686421379446983, + 0.004610730335116386, + -0.002965538064017892, + 0.011107669211924076, + -0.006619192659854889, + 0.002469535218551755, + 0.004928591661155224, + 0.024325096979737282, + 0.03699762001633644, + -0.04683384671807289, + -0.0010793301044031978, + 0.01733914203941822, + 0.007412098813802004, + 0.03325314819812775, + 0.015914006158709526, + -0.01416053157299757, + -0.028265176340937614, + 0.009591716341674328, + -0.0058123148046433926, + -0.019183432683348656, + -0.008180554024875164, + -0.015438961796462536, + 0.007523873820900917, + -0.016668489202857018, + -0.037668272852897644, + -0.013294273056089878, + 0.005728483200073242, + -0.0454087108373642, + 0.0041426713578403, + 0.005627186968922615, + -0.0039680227637290955, + 0.008257399313151836, + 0.026015697047114372, + -0.012239393778145313, + 0.01205077301710844, + 0.0024101545568555593, + -0.004264925606548786, + 0.019365068525075912, + -0.02355664223432541, + 0.0019822649192065, + -0.016430966556072235, + 0.012525818310678005, + 0.016137557104229927, + -0.02579214796423912, + -0.014977888204157352, + -0.005871695466339588, + 0.05007532984018326, + 0.018876051530241966, + 0.010898089967668056, + -0.02334706299006939, + -0.032806046307086945, + 0.010185522958636284, + -0.027440832927823067, + -0.009479941800236702, + 0.011149585247039795, + 0.007656607311218977, + -0.010255382396280766, + 0.004823802039027214, + -0.0034161321818828583, + 0.009221460670232773, + -0.0020468849688768387, + -0.018205400556325912, + -0.004851745907217264, + -0.002228519879281521, + 0.0025306623429059982, + -0.008536837063729763, + 0.00774043845012784, + -0.01283320039510727, + 0.034398842602968216, + -0.028670361265540123, + -0.002324576722458005, + -0.0084530059248209, + 0.0018809684552252293, + 0.005896146409213543, + -0.004816816188395023, + 0.009417068213224411, + 0.0024223800282925367, + -0.024269208312034607, + -0.014188474975526333, + -0.002728015650063753, + 0.006353726610541344, + -0.008851205930113792, + 0.005529383663088083, + -0.0022599566727876663, + -0.0091446153819561, + -0.0082853427156806, + -0.0010985415428876877, + 0.0015238114865496755, + -0.015802230685949326, + 0.013776304200291634, + -0.0024328590370714664, + 0.007272379472851753, + -0.0018460387364029884, + 0.09009087830781937, + 0.006482966709882021, + -0.01067453995347023, + 0.0010033578146249056, + -0.007929059676826, + -0.016123585402965546, + 0.0019124052487313747, + 0.015201439149677753, + 0.029089517891407013, + -0.00834821630269289, + -0.017520776018500328, + -0.013322217389941216, + 0.02725919708609581, + 0.009172559715807438, + -0.008641626685857773, + -0.01944890059530735, + 0.027231253683567047, + -0.005620201118290424, + -0.01283320039510727, + 0.022257253527641296, + 0.024380983784794807, + -0.0025708316825330257, + -0.009004896506667137, + -0.010604680515825748, + 0.007020885124802589, + 0.018345119431614876, + -0.005330284126102924, + 0.024017713963985443, + 0.008369174785912037, + 0.0239757988601923, + 0.0018268272979184985, + 0.019490815699100494, + -0.016514798626303673, + 0.01068152580410242, + 0.01267252303659916, + 0.011373135261237621, + 0.007090744562447071, + 0.027748214080929756, + -0.01914151757955551, + 0.0011518093524500728, + -0.0025498736649751663, + -0.0023036187049001455, + 0.034035574644804, + 0.026784153655171394, + -0.006004428490996361, + 0.00918653141707182, + -0.020538708195090294, + -0.014782281592488289, + -0.013916023075580597, + -0.007412098813802004, + 0.00935419462621212, + -0.012323224917054176, + 0.006179077550768852, + 0.014880085363984108, + -0.0052778893150389194, + -0.011785306967794895, + -0.0029236222617328167, + -0.020552679896354675, + -0.010178537108004093, + 0.016458911821246147, + -0.019406983628869057, + -0.023528696969151497, + -0.01584414765238762, + -0.025331074371933937, + -0.006133669055998325, + -0.008068778552114964, + -0.006374684162437916, + -0.032191284000873566, + 0.006947532761842012, + -0.012162548489868641, + -0.012749368324875832, + 0.021516742184758186, + 0.01073042768985033, + -0.021377023309469223, + -0.01215556263923645, + -0.001410289783962071, + 0.007670579012483358, + 0.027454804629087448, + 0.0012216689065098763, + 0.00779632618650794, + 0.011086711660027504, + 0.00705581484362483, + -0.0006776376976631582, + -0.026672378182411194, + 0.011638601310551167, + 0.019574647769331932, + -0.003398667322471738, + -0.026378966867923737, + 0.008718471974134445, + -0.004767914768308401, + -0.018554696813225746, + 0.023067625239491463, + 0.000520017056260258, + 0.02038501761853695, + -0.008166581392288208, + -0.0007985820411704481, + -0.000885906454641372, + -0.032917823642492294, + 0.011219444684684277, + 0.003110496560111642, + 0.008439034223556519, + -0.0020102085545659065, + 0.0026162404101341963, + -0.018428949639201164, + -0.020999781787395477, + -0.006350233219563961, + 0.011792292818427086, + 0.004540870897471905, + -0.006825278513133526, + 0.013182497583329678, + -0.004471011459827423, + -0.022774213925004005, + 0.015466905198991299, + -0.020636511966586113, + -0.046219080686569214, + 0.02600172534584999, + 0.0074190846644341946, + -0.005889160558581352, + -0.0076356492936611176, + -0.02186604030430317, + 0.006165105849504471, + -0.013755345717072487, + -0.006406120955944061, + -0.00457230769097805, + -0.00768455071374774, + 0.013769318349659443, + -0.012365140952169895, + 0.0036466687452048063, + -0.008376160636544228, + -0.005609722342342138, + 0.013790275901556015, + 0.001116006402298808, + -0.007859200239181519, + -0.0007147505530156195, + 0.0061546266078948975, + -0.00014506772276945412, + -0.0032659340649843216, + 0.012525818310678005, + 0.027077563107013702, + -0.03353258594870567, + 0.011582713574171066, + -0.019686421379446983, + 0.002790889237076044, + 0.01404875610023737, + -0.005365213844925165, + -0.002944580279290676, + 0.00028314950759522617, + -0.005309326108545065, + 0.020650483667850494, + 0.006510910578072071, + 0.04406740516424179, + -0.02313748374581337, + -0.00302317226305604, + -0.0038876840844750404, + 0.008802304044365883, + 0.00602538650855422, + -0.0004283263988327235, + 0.01135916355997324, + -0.013154554180800915, + 0.0055852713994681835, + 0.015704426914453506, + 0.011722433380782604, + -0.026267191395163536, + 0.003845768515020609, + -0.013741374015808105, + -0.005291861016303301, + 0.023612529039382935, + 0.015438961796462536, + 0.00934720877557993, + 0.003961036913096905, + 0.004292869474738836, + -0.015187467448413372, + 0.011820236220955849, + -0.020580625161528587, + 0.013552753254771233, + 0.01416751742362976, + 0.012057758867740631, + 0.003244976280257106, + -0.008005904965102673, + 0.01506172027438879, + 0.008732444606721401, + -0.019085630774497986, + 0.0079849474132061, + 0.01691998355090618, + -0.01816348358988762, + -0.0359078124165535, + 0.022536691278219223, + -0.03467828407883644, + 0.0058123148046433926, + 0.0032694272231310606, + -0.009689520113170147, + 0.017520776018500328, + -0.00020499412494245917, + -0.015257326886057854, + -0.004795858170837164, + -0.005145156290382147, + 0.015201439149677753, + 0.012302267365157604, + -0.0021149979438632727, + -0.012393085286021233, + -0.008425062522292137, + 2.9526576327043585e-5, + 0.012008856981992722, + -0.005103240255266428, + 0.008411089889705181, + -0.003080806229263544, + -0.010695497505366802, + -0.033225204795598984, + 0.0071745761670172215, + 0.022327113896608353, + -0.03920518234372139, + -0.033225204795598984, + -0.0019438420422375202, + -0.0013692472130060196, + -0.030179327353835106, + 0.020007776096463203, + -0.001660910900682211, + 0.025498736649751663, + 0.00037418524152599275, + 0.009675548411905766, + 0.0038143317215144634, + 0.0035121890250593424, + 0.0063257827423512936, + -0.020412961021065712, + 0.005187071859836578, + -0.017255309969186783, + 0.03283398970961571, + 0.006650629453361034, + -0.0071012238040566444, + -0.029341012239456177, + 0.03506949543952942, + 9.327341831522062e-5, + 0.009514871053397655, + 0.005539862439036369, + 0.021432911977171898, + 0.01548087690025568, + 0.014977888204157352, + -0.007558803539723158, + -0.0046386742033064365, + -0.006521389354020357, + -0.018987827003002167, + 0.0009509631781838834, + -0.018121568486094475, + 0.013545767404139042, + 0.0029236222617328167, + -0.010290312580764294, + -0.010632623918354511, + 0.015914006158709526, + -0.01848483830690384, + -2.8980799470446073e-5, + 0.0027734243776649237, + -0.010660568252205849, + -0.014076700434088707, + 0.00971746351569891, + -0.011484910733997822, + 0.005365213844925165, + 0.004418616648763418, + -0.012903059832751751, + -0.017185449600219727, + -0.03621519356966019, + -0.0006811306229792535, + -0.0038108385633677244, + 0.0019438420422375202, + 0.002897425089031458, + 0.013378104194998741, + 0.011177528649568558, + -0.03498566523194313, + 0.013147568330168724, + -0.023919912055134773, + 0.02094389498233795, + 0.003103510709479451, + 0.005501439794898033, + 0.031716238707304, + -0.012344183400273323, + 0.007859200239181519, + 0.008900106884539127, + 0.001370993792079389, + -0.016933955252170563, + 0.008823261596262455, + 0.01078631542623043, + -0.017297225072979927, + 0.010115663520991802, + 0.003503456711769104, + -0.015508821234107018, + 0.007970974780619144, + -0.02727317065000534, + -0.009968958795070648, + -0.0020870540756732225, + -0.00929830688983202, + 0.012260351330041885, + 0.014880085363984108, + -0.00502290204167366, + 0.011498882435262203, + -0.007908101193606853, + 0.0011072739725932479, + -0.006350233219563961, + 0.015997838228940964, + -0.0027018182445317507, + 0.011554770171642303, + 0.006465501617640257, + 0.004795858170837164, + -0.01700381562113762, + -0.002170885680243373, + -0.013860135339200497, + 0.03962434083223343, + -0.006584262941032648, + 0.030486708506941795, + 0.0068846591748297215, + -0.015438961796462536, + 0.00467709731310606, + 0.005731976591050625, + 0.0029288618825376034, + -0.01209967490285635, + 0.001395444618538022, + -0.021209361031651497, + -0.0028467767406255007, + 0.013923008926212788, + 0.0062978388741612434, + -0.004488476552069187, + 0.015550736337900162, + -0.0031559052877128124, + -0.002151674358174205, + 0.016975872218608856, + 0.008376160636544228, + 0.02133510820567608, + -0.010639609768986702, + 0.008781345561146736, + 0.0017298972234129906, + 0.014244362711906433, + -0.016347136348485947, + 0.005222001578658819, + 0.012721424922347069, + -0.019365068525075912, + -0.005064817611128092, + -0.0028694812208414078, + 0.01721339486539364, + -0.016640545800328255, + -0.012868129648268223, + -0.0021342092659324408, + -0.009857183322310448, + 0.0004479743947740644, + -0.011952969245612621, + -0.019365068525075912, + 0.0050787897780537605, + -0.010423045605421066, + 0.024674395099282265, + 0.0010129634756594896, + 0.007384154945611954, + -7.155146158766001e-5, + 0.01965847797691822, + 0.0063187964260578156, + 0.009256390854716301, + 0.02080417424440384, + -0.0049809860065579414, + -0.022173423320055008, + 0.03140885382890701, + 0.01882016472518444, + -6.958666199352592e-5, + 0.01209268905222416, + 0.01977025344967842, + -0.019001798704266548, + 0.021488798782229424, + -0.0062978388741612434, + 0.001034794608131051, + 0.005588764324784279, + 0.002672127913683653, + 0.002935847733169794, + 0.01263060700148344, + -0.022159449756145477, + 0.0027227760292589664, + -3.298544470453635e-6, + -0.028125455603003502, + -0.025526681914925575, + -0.019574647769331932, + -0.004432588815689087, + 0.0019455886213108897, + 0.003754951059818268, + 0.010248396545648575, + -0.0003499526937957853, + 0.0027367479633539915, + 0.006147640757262707, + -0.012162548489868641, + -0.010926034301519394, + 8.12663056422025e-5, + -0.006067302078008652, + 0.020231327041983604, + 0.013007848523557186, + 0.014062727801501751, + -0.013273315504193306, + -0.00918653141707182, + -0.009333236142992973, + 0.004540870897471905, + 0.005270903464406729, + -0.0025690849870443344, + -0.0023420415818691254, + -0.005606229417026043, + -0.021195389330387115, + 0.01785610243678093, + -0.0015124593628570437, + 0.003706049406901002, + 0.0007330887019634247, + 0.007216491736471653, + 0.014377095736563206, + 0.013629598543047905, + -0.015159523114562035, + -0.01500583253800869, + -0.019323153421282768, + 0.028865966945886612, + 0.022438889369368553, + -0.02229917049407959, + 0.011582713574171066, + -0.009403095580637455, + -0.01358069758862257, + 0.0028502698987722397, + 0.024143461138010025, + 0.004851745907217264, + 0.004034389276057482, + -0.00710471672937274, + 0.004139178432524204, + 0.018359091132879257, + 0.004240475129336119, + 0.014432983472943306, + 0.02283010259270668, + -0.009647604078054428, + -0.0010068508563563228, + -0.00159803731366992, + 0.03241483122110367, + -0.005850737448781729, + 0.0025690849870443344, + 0.0067414469085633755, + 0.007195534184575081, + -0.010981922037899494, + -0.018973855301737785, + 0.011701474897563457, + -0.005690060555934906, + -0.007691537030041218, + 0.018987827003002167, + -0.003536639967933297, + 0.003508696099743247, + 0.012588691897690296, + 0.006140654906630516, + 0.003964529838413, + -0.0028956783935427666, + 0.03392380103468895, + 0.016109613701701164, + 0.022997764870524406, + -0.00493907043710351, + 0.006395642179995775, + -0.019616562873125076, + -0.005064817611128092, + -0.04130096733570099, + -0.00281184702180326, + -0.01404875610023737, + 0.0059380619786679745, + -0.02473028190433979, + -0.0026494236662983894, + 0.00032288211514241993, + -0.02239697240293026, + -0.010981922037899494, + -0.016933955252170563, + 0.01870838925242424, + 0.00779632618650794, + -0.0013631345937028527, + 0.01119848620146513, + 0.0007195533835329115, + 0.02588994987308979, + 0.013168525882065296, + 0.010003888048231602, + 0.002141195349395275, + 0.017171477898955345, + -0.01010169181972742, + 0.029033631086349487, + 0.02989988960325718, + 0.010024845600128174, + -0.024492759257555008, + 0.0020259269513189793, + -0.026141444221138954, + 0.0007819903548806906, + -0.02051076479256153, + -0.012931003235280514, + -0.023416923359036446, + -0.012910045683383942, + -0.024045659229159355, + -0.00048115768004208803, + 0.021586602553725243, + -0.01358768343925476, + -0.003629203885793686, + 0.01289607398211956, + -0.009228447452187538, + -0.011778321117162704, + 0.013699458912014961, + 0.0061720917001366615, + 0.0025830569211393595, + 0.006294345948845148, + 0.013231399469077587, + -0.01691998355090618, + 0.015564708970487118, + 0.04303348436951637, + -0.007950017228722572, + 0.0038876840844750404, + 0.022215338423848152, + -0.010926034301519394, + -0.019742310047149658, + 0.0028275654185563326, + -0.004009938333183527, + 0.027706298977136612, + 0.0033584979828447104, + -0.0012871623039245605, + -0.030095495283603668, + -0.009389123879373074, + 0.015117607079446316, + -0.031045585870742798, + 0.0019228842575103045, + 0.01421641930937767, + -0.008019876666367054, + 0.01996586099267006, + -0.0012400071136653423, + 0.022885989397764206, + 0.03473417088389397, + -0.005609722342342138, + -0.0012653311714529991, + -0.03160446137189865, + 0.004044868052005768, + 0.005777385085821152, + 0.02123730443418026, + 0.00792207382619381, + -0.004869210999459028, + 0.0007374549168162048, + -0.02020338363945484, + -0.001039160881191492, + -0.0018652500584721565, + 0.01946287229657173, + 0.001343049923889339, + -0.010541806928813457, + 0.007143139373511076, + 0.03984788805246353, + 0.008466977626085281, + 0.01548087690025568, + 0.008858191780745983, + -0.0169060118496418, + 0.010290312580764294, + 0.005979978013783693, + 0.001674882834777236, + -0.014670506119728088, + -0.006360712461173534, + 0.001996236853301525, + 0.0022058153990656137, + -0.005138169974088669, + 0.008145623840391636, + 0.015187467448413372, + -0.014991859905421734, + 0.013238385319709778, + 0.017786242067813873, + 0.020357074216008186, + 0.022760242223739624, + -0.005033380817621946, + 0.016025781631469727, + 0.0014111630152910948, + 0.016836153343319893, + 0.010430031456053257, + 0.002448577433824539, + -0.010234424844384193, + 0.014244362711906433, + 0.009319264441728592, + -0.04767215996980667, + 0.0038178246468305588, + -0.006116203963756561, + -0.007244435604661703, + -0.002951566129922867, + -0.008928051218390465, + -0.009640618227422237, + -0.013014835305511951, + -0.009843210689723492, + -0.005833272822201252, + 0.00605333037674427, + 0.007607705425471067, + -0.017464889213442802, + -0.019490815699100494, + 0.019043713808059692, + 0.011813250370323658, + 0.010087719187140465, + -0.003327061189338565, + -0.019728338345885277, + 0.003327061189338565, + -0.002930608345195651, + 0.006210514344274998, + 0.02039898931980133, + -0.0041950661689043045, + 0.022760242223739624, + -0.010835216380655766, + 0.0074819582514464855, + -0.02368238940834999, + -0.003335793735459447, + 0.014991859905421734, + -0.011575727723538876, + -0.007003420498222113, + -0.0009605688392184675, + 0.01594194956123829, + -0.0058647096157073975, + -0.028670361265540123, + -0.021432911977171898, + 0.00151158613152802, + -0.0055678063072264194, + 0.008411089889705181, + 0.005808821879327297, + -0.0014478391967713833, + 0.0006623559165745974, + -0.0021062656305730343, + -0.007454014383256435, + -0.01267252303659916, + -0.015774287283420563, + 0.008208497427403927, + 0.013978896662592888, + -0.02039898931980133, + 0.00982923898845911, + -0.010828230530023575, + 0.025736259296536446, + -0.007600719574838877, + 0.017911989241838455, + -0.0007937791524454951, + -0.0039016560185700655, + 0.01336413249373436, + -0.00015903964231256396, + 0.01056975033134222, + 0.009088727645576, + -0.016193443909287453, + 0.0005239466554485261, + 0.021516742184758186, + 0.021600574254989624, + -0.003975008614361286, + 0.0016469389665871859, + 0.019951889291405678, + 0.010464961640536785, + -0.018442921340465546, + 0.0074819582514464855, + -0.002450323896482587, + -0.01267950888723135, + 0.0024049151688814163, + 0.005868202541023493, + -0.023486781865358353, + 0.022872017696499825, + -0.018233343958854675, + -0.00779632618650794, + 0.005120705347508192, + -0.004977493081241846, + -0.01594194956123829, + 0.008026862516999245, + 0.0037619369104504585, + -0.004495462402701378, + 0.030794091522693634, + 0.0019455886213108897, + 0.012490888126194477, + -0.010269354097545147, + 0.010255382396280766, + 0.0035837951581925154, + 0.0035244144964963198, + 0.004278897773474455, + -0.0009256390621885657, + 0.035125382244586945, + -0.004247460979968309, + -0.014125601388514042, + -0.03585192188620567, + -0.0046910690143704414, + 0.013105652295053005, + -0.01210666075348854, + -0.00499495817348361, + 0.01193201169371605, + 0.00019724408048205078, + 0.0011902321130037308, + 0.0005187072092667222, + 0.001858264091424644, + 0.002146434737369418, + -0.029871944338083267, + -0.012462944723665714, + 0.0014286278747022152, + -0.010171551257371902, + 0.002160406671464443, + -0.004055347293615341, + 0.008201511576771736, + -0.03277810290455818, + 0.003940078895539045, + -0.010716455988585949, + -0.006636657752096653, + -0.024576591327786446, + -1.4149288290354889e-5, + 0.017800213769078255, + 0.01200187113136053, + -0.006273387931287289, + -0.02854461409151554, + 0.0032083000987768173, + -0.015313214622437954, + -0.011708461679518223, + -0.016403023153543472, + 0.0012871623039245605, + 0.01489405706524849, + -0.014768309891223907, + -0.021321136504411697, + -0.007859200239181519, + 0.02101375348865986, + -0.011652573943138123, + -0.01489405706524849, + 0.006130175665020943, + 0.0049181124195456505, + -0.013049764558672905, + 0.010870146565139294, + -0.01912754587829113, + 0.013140582479536533, + -0.0008042581030167639, + 0.007803312037140131, + -0.005396650638431311, + 0.03300165385007858, + 0.023640472441911697, + 0.011275332421064377, + -0.001833813264966011, + 0.0014687970979139209, + -0.024171406403183937, + -0.00010478933108970523, + 0.014377095736563206, + -0.006902123801410198, + -0.020007776096463203, + 0.009535829536616802, + 0.0023507738951593637, + 0.013329203240573406, + 0.003283398924395442, + -0.0008793571614660323, + -0.016975872218608856, + -0.0035872880835086107, + 0.04851047322154045, + -0.012169534340500832, + 0.0078172842040658, + 0.003754951059818268, + -0.012183506041765213, + -0.007251421920955181, + 0.02262052334845066, + -0.0047644213773310184, + 0.0012356408406049013, + 0.0030144397169351578, + 0.007649620994925499, + 0.002055617282167077, + 0.028293119743466377, + -0.024814113974571228, + -0.01732516847550869, + -0.014034784398972988, + -0.005270903464406729, + 0.01331523060798645, + -0.010052789933979511, + 0.0016713897930458188, + -0.005222001578658819, + -0.0006444543832913041, + 0.01331523060798645, + 0.00029275519773364067, + -0.003499963553622365, + -0.0015893048839643598, + -0.007300323341041803, + 0.0002652480034157634, + 0.0035191751085221767, + -0.0036850913893431425, + -0.0018407992320135236, + -0.0063257827423512936, + 0.022676412016153336, + 0.005986963864415884, + -0.011338206008076668, + 0.0011614151298999786, + -0.010171551257371902, + 0.0014312475686892867, + 0.019742310047149658, + 0.021293191239237785, + 0.006996434181928635, + -0.01912754587829113, + 0.02302570827305317, + 0.012120632454752922, + -0.011848180554807186, + 0.005644652061164379, + -0.015676483511924744, + -0.006863701157271862, + 0.012386098504066467, + -0.00389816309325397, + 0.0037759088445454836, + -0.012868129648268223, + -0.005780878011137247, + -0.0029952283948659897, + 0.013336189091205597, + -0.02600172534584999, + -0.009745407849550247, + -0.01432120893150568, + -0.012924017384648323, + 0.0043312921188771725, + -0.008355203084647655, + 0.0241993498057127, + -0.01141505129635334, + -0.007363196928054094, + 0.004512927029281855, + -0.012169534340500832, + 0.011023838073015213, + 0.0017936440417543054, + 0.014698450453579426, + 0.008739430457353592, + -0.002804861171171069, + -0.009619660675525665, + -0.010248396545648575, + 0.021209361031651497, + -0.012078716419637203, + -0.018149511888623238, + -0.0045478567481040955, + -0.015788258984684944, + 0.01346892211586237, + -0.018191426992416382, + 0.001227781642228365, + -0.023542670533061028, + -0.010416059754788876, + 0.010066761635243893, + 0.002970777451992035, + 0.003975008614361286, + -0.003782894928008318, + -0.0005951160565018654, + 0.004477997310459614, + -0.00840410403907299, + -0.011016851291060448, + 0.003615231951698661, + 0.011498882435262203, + -0.01775829866528511, + -0.0075448318384587765, + 0.003300864016637206, + -0.005899639334529638, + -0.032191284000873566, + 0.0068951379507780075, + 0.02154468558728695, + -0.0060917530208826065, + 0.017995821312069893, + -0.005110226571559906, + -0.007230463903397322, + -0.010709469206631184, + 0.0008658218430355191, + -0.002258209977298975, + 0.02568037249147892, + -0.01199488528072834, + 0.0037374862004071474, + -0.004223010037094355, + 0.016961900517344475, + 0.018359091132879257, + 0.01077932957559824, + -0.021279219537973404, + 0.026029670611023903, + 0.0033759628422558308, + 0.009535829536616802, + 0.01204378716647625, + -0.01489405706524849, + 0.01731119677424431, + -0.022676412016153336, + -0.008851205930113792, + 0.004725998733192682, + 0.008983938954770565, + -0.006353726610541344, + -0.0020538708195090294, + -0.008578753098845482, + 0.002036405960097909, + -0.02303967997431755, + -0.015620596706867218, + 0.013874107040464878, + -0.006367698311805725, + 0.010311270132660866, + 0.02167043276131153, + 0.010304284282028675, + -0.01147093903273344, + 0.013231399469077587, + -0.012504859827458858, + 0.0007405112846754491, + -0.004540870897471905, + -0.01946287229657173, + -0.0041217138059437275, + -0.020985810086131096, + -0.0007540465448983014, + 0.003470273455604911, + -0.015690455213189125, + 0.012127618305385113, + -0.0026843533851206303, + -0.0005628060316666961, + -0.009752393700182438, + -0.008928051218390465, + 0.016039753332734108, + -0.001458318205550313, + -0.006381670478731394, + 0.018778247758746147, + 0.010087719187140465, + -0.013832191936671734, + -0.014810224995017052, + 0.02588994987308979, + -0.006060316227376461, + 0.00430334871634841, + 0.012316239066421986, + -0.01119150035083294, + -0.003947064746171236, + 0.011617643758654594, + 0.015676483511924744, + -0.0033812024630606174, + -0.0016163754044100642, + 0.008271371014416218, + -0.005326791200786829, + 0.0055119190365076065, + -0.006839250214397907, + 0.004191573243588209, + -0.0022075618617236614, + -0.007440042681992054, + -0.013881093822419643, + -0.014572703279554844, + -0.0007352717802859843, + -0.035041552037000656, + -0.01193899754434824, + -0.0026075078640133142, + 0.017171477898955345, + -0.006657615303993225, + -0.009563772939145565, + 0.005718004424124956, + 0.003629203885793686, + 0.01009470596909523, + 0.0015316706849262118, + 0.012323224917054176, + -0.0032676805276423693, + 0.004631688352674246, + 0.0065248822793364525, + -0.008585738949477673, + 0.0006069048540666699, + -0.0024590562097728252, + 0.01861058548092842, + -0.006961504463106394, + 0.0032624411396682262, + -0.02154468558728695, + -0.009417068213224411, + -0.005847244523465633, + -0.010946991853415966, + 0.021726321429014206, + -0.0017691932152956724, + 0.00902585405856371, + -0.001266204402782023, + -0.008327258750796318, + 0.010800287127494812, + -0.002218040870502591, + -0.009591716341674328, + -0.0007736945408396423, + 0.016347136348485947, + 0.005127691198140383, + -0.022774213925004005, + -0.015383074060082436, + -0.01827525906264782, + 0.0020521243568509817, + -0.013629598543047905, + 0.0034475689753890038, + -0.009417068213224411, + 0.002815339947119355, + 0.01795390620827675, + -0.0045653218403458595, + 0.008550809696316719, + 0.026015697047114372, + -0.009654589928686619, + -0.0035593442153185606, + 0.009584730491042137, + -0.0026354517322033644, + -0.011897082440555096, + -0.012707453221082687, + -0.018247315660119057, + 0.003311342792585492, + -0.012085703201591969, + 0.025848034769296646, + -0.013943967409431934, + 0.01594194956123829, + -0.015145551413297653, + 0.00902585405856371, + -0.003940078895539045, + -0.0008771740249358118, + -0.012113646604120731, + 0.00642009312286973, + 0.005187071859836578, + -0.005724990274757147, + 0.01859661377966404, + 0.012944974936544895, + 0.023528696969151497, + -0.03263838216662407, + 0.009584730491042137, + -0.015438961796462536, + 0.007908101193606853, + -0.02218739502131939, + 0.0031541588250547647, + -0.014391068369150162, + -0.002497479086741805, + 0.00935419462621212, + 0.005414115265011787, + 0.008376160636544228, + 0.010450989007949829, + -0.011128626763820648, + -0.0013701204443350434, + -0.0048901685513556, + -0.019197406247258186, + -0.00014288461534306407, + 0.01131026167422533, + -0.03305754065513611, + 0.0016932209255173802, + 0.006266402080655098, + -0.0013177258661016822, + 0.003601260017603636, + -0.018303202465176582, + 0.013601655140519142, + 0.02791587822139263, + -0.0034301041159778833, + -0.024059630930423737, + -0.0024870000779628754, + 0.004299855325371027, + 0.012917031534016132, + 0.019714366644620895, + -0.014202447608113289, + -0.012029815465211868, + 0.004788872320204973, + 0.013594669289886951, + -0.025233270600438118, + -0.022592579945921898, + -0.03378408029675484, + 0.02113950066268444, + 0.01985408551990986, + 0.013063736259937286, + -0.0030493694357573986, + 0.013699458912014961, + 0.005843751598149538, + 0.01131026167422533, + -0.013825206086039543, + -0.0016163754044100642, + 0.005036873742938042, + 0.007059307768940926, + -0.01659863069653511, + -0.025317102670669556, + -0.013846163637936115, + -0.018345119431614876, + -0.0023507738951593637, + 0.011275332421064377, + 0.01072344183921814, + -0.006116203963756561, + -0.013685486279428005, + -8.355857426067814e-5, + -0.023486781865358353, + -0.0016582912066951394, + -0.004869210999459028, + 0.003988980315625668, + 0.0034440760500729084, + 0.0027262691874057055, + -0.009172559715807438, + 0.00538966478779912, + -0.016235360875725746, + -0.04130096733570099, + 0.020105579867959023, + 0.004457039758563042, + 0.009500899352133274, + -0.00628735963255167, + 0.0026546630542725325, + 0.004893661942332983, + 0.0021027724724262953, + 0.004177601542323828, + 0.019686421379446983, + -0.006566797848790884, + -0.0005828906432725489, + 0.0016390797682106495, + 0.009046812541782856, + 0.04641468822956085, + 0.0021918434649705887, + 0.047616273164749146, + 0.00501591619104147, + -0.019574647769331932, + -0.007251421920955181, + 0.01787007413804531, + 0.0028380444273352623, + -0.00488318270072341, + -0.0022058153990656137, + 0.01553676463663578, + -0.018764276057481766, + 0.022676412016153336, + -0.01072344183921814, + 0.018945911899209023, + -0.02262052334845066, + 0.0014635577099397779, + -0.003716528182849288, + 0.003720021340996027, + -0.0157463438808918, + 0.0156345684081316, + 0.0019403491169214249, + -0.014377095736563206, + 0.004202052019536495, + -0.010388115420937538, + -0.028502697125077248, + -0.011666545644402504, + -0.0027839031536132097, + -0.010835216380655766, + -0.00778934033587575, + -0.019686421379446983, + -0.014516815543174744, + -0.013811233453452587, + 0.01136614941060543, + 0.006437557749450207, + 0.0027839031536132097, + -0.008893121033906937, + 0.013734388165175915, + -0.009312278591096401, + -0.005497946869581938, + -0.0013063736259937286, + 0.0036711194552481174, + 0.007136153522878885, + 0.006489952560514212, + -0.011289304122328758, + 0.004477997310459614, + 0.004858731757849455, + 0.0005990456556901336, + -0.007010406348854303, + 0.008194525726139545, + 0.00017726862279232591, + 0.003264187602326274, + -0.009633632376790047, + -0.033672306686639786, + 0.002670381451025605, + 0.017562691122293472, + 0.0010609920136630535, + -0.005616708192974329, + 0.013559739105403423, + 0.03532098978757858, + 0.008466977626085281, + -0.005480481777340174, + -0.00302317226305604, + -0.000890709285158664, + -0.008990924805402756, + -0.012316239066421986, + 0.01536910142749548, + 0.0017779256450012326, + -0.01912754587829113, + 0.03065437264740467, + 0.008788332343101501, + 0.0047190128825604916, + 0.0032310043461620808, + -0.012910045683383942, + -0.004352250136435032, + 0.020482821390032768, + 0.009710477665066719, + 0.028027653694152832, + -0.008292329497635365, + 0.0004650026676245034, + -0.020412961021065712, + -0.0011535559315234423, + 0.010828230530023575, + 0.02241094410419464, + 0.0042754048481583595, + 0.0037863878533244133, + -0.01416053157299757, + 0.033448755741119385, + -0.006992941256612539, + -0.0018215879099443555, + 0.011708461679518223, + -0.012917031534016132, + 0.005718004424124956, + 0.0033375401981174946, + -0.007454014383256435, + -0.008508893661201, + 0.008739430457353592, + -0.017702411860227585, + 0.017814185470342636, + -0.0035977670922875404, + 0.0463029108941555, + -0.002238998655229807, + -0.01870838925242424, + -0.049404677003622055, + 0.00010397066216683015, + -0.011128626763820648, + 0.015676483511924744, + 0.005868202541023493, + 0.00993402861058712, + 0.007894129492342472, + -0.004327799193561077, + 0.012330211699008942, + -0.011554770171642303, + -0.012365140952169895, + 0.0039016560185700655, + 0.0073911407962441444, + 0.012400071136653423, + 0.008152609691023827, + 0.005145156290382147, + -0.015271298587322235, + -0.003257201751694083, + -0.009968958795070648, + -0.03437089920043945, + -0.01337111834436655, + 0.016221389174461365, + 0.007991933263838291, + -0.004586279857903719, + -0.019476843997836113, + 0.015089663676917553, + 0.013168525882065296, + 0.0052883680909872055, + 0.03308548405766487, + 0.001761334016919136, + -0.015285270288586617, + -0.01352480985224247, + 0.005064817611128092, + 0.018233343958854675, + -0.010143606923520565, + 0.00354187935590744, + 0.022033702582120895, + -0.008278356865048409, + -0.02854461409151554, + -0.007523873820900917, + 0.014349152334034443, + 0.008585738949477673, + -0.014712422154843807, + -0.00918653141707182, + -0.025848034769296646, + 0.011037809774279594, + 0.014405040070414543, + 0.003084299387410283, + -0.004443067591637373, + 0.020482821390032768, + -0.008830247446894646, + -0.002810100559145212, + -0.0009221461368724704, + 0.005815807729959488, + -0.0015386566519737244, + -0.012903059832751751, + 0.03582397848367691, + 0.010953977704048157, + -0.0004842140187975019, + 0.030905866995453835, + -0.0025446342770010233, + -0.013231399469077587, + 0.026867983862757683, + 0.0013308244524523616, + 0.016822179779410362, + -0.009871155023574829, + -0.007279365323483944, + 0.012756354175508022, + -0.002790889237076044, + 0.0010863160714507103, + -0.00295680551789701, + -0.007230463903397322, + 0.010884118266403675, + 0.010388115420937538, + -0.001029555220156908, + 0.02482808567583561, + -0.010772342793643475, + 0.009004896506667137, + -0.008942022919654846, + 0.010409073904156685, + -0.011687503196299076, + 0.0016731363721191883, + -0.03445473313331604, + -0.0024817606899887323, + -0.007244435604661703, + -0.03764032945036888, + -0.003258948214352131, + 0.011736405082046986, + 0.025512708351016045, + -0.01136614941060543, + 0.0034283576533198357, + 0.0022512241266667843, + 0.02007763646543026, + 0.011603672057390213, + -0.014349152334034443, + -0.022592579945921898, + 0.003999459557235241, + 0.017087647691369057, + 0.010849189013242722, + 0.011973927728831768, + 0.016864096745848656, + 0.029313068836927414, + -0.0020818146876990795, + -0.006165105849504471, + -0.00013535287871491164, + -0.028865966945886612, + 0.016081668436527252, + -0.0071291676722466946, + 0.004953042604029179, + 0.0024188871029764414, + 0.0016146289417520165, + -0.005410622339695692, + -0.00384227535687387, + -0.008201511576771736, + 0.01336413249373436, + 0.009857183322310448, + 0.03263838216662407, + 0.010052789933979511, + 0.0034528083633631468, + 0.006186063401401043, + 0.0078172842040658, + -0.0015273045282810926, + -0.0018128554802387953, + 0.012518832460045815, + 0.04457039386034012, + 0.02832106314599514, + 0.007977960631251335, + 0.003856247290968895, + -0.001415529171936214, + -0.03995966538786888, + 0.007537845987826586, + -0.0024031687062233686, + -0.000760595896281302, + 0.010933020152151585, + 0.006496938411146402, + -0.001102034468203783, + 0.007607705425471067, + 0.012651565484702587, + -0.0017508551245555282, + 0.020343102514743805, + 0.000111338660644833, + -0.0047714076936244965, + -0.0018128554802387953, + 0.014516815543174744, + -0.011848180554807186, + -0.0013439231552183628, + -0.019490815699100494, + -0.0007575395284220576, + -0.003601260017603636, + -0.01954670250415802, + -0.0167942363768816, + -0.0034143857192248106, + -0.00030738202622160316, + -0.008229455910623074, + 0.03160446137189865, + -0.013902051374316216, + -0.017017787322402, + 0.005560820456594229, + -0.010905076749622822, + 0.015397045761346817, + 0.01273539662361145, + -0.00052481988677755, + 0.0025778175331652164, + 0.006528375204652548, + -0.01135916355997324, + -0.01474036555737257, + 0.01796787790954113, + -0.019406983628869057, + -0.011331219226121902, + 0.005452538374811411, + 0.005456031300127506, + 0.02588994987308979, + -0.02312351204454899, + 0.0001376451546093449, + 0.018959883600473404, + 0.032386887818574905, + 0.00322401849552989, + -0.014474899508059025, + -0.0002864241832867265, + -0.01658465899527073, + 0.010003888048231602, + -0.012302267365157604, + -0.010108677670359612, + -0.003527907421812415, + -0.006465501617640257, + 0.0068322643637657166, + 0.015131579712033272, + 0.015131579712033272, + 0.004093769937753677, + 0.015145551413297653, + 0.003929600119590759, + 0.011121640913188457, + 0.012504859827458858, + -0.01330824475735426, + 0.0028083540964871645, + -0.017297225072979927, + -0.017353113740682602, + -0.0042754048481583595, + -0.004236981738358736, + -0.0042544468306005, + -0.029229236766695976, + -0.013406048528850079, + -0.0009125404176302254, + 0.009752393700182438, + 0.004778393544256687, + 0.006594741716980934, + 0.006329275667667389, + 0.014656534418463707, + -0.010073747485876083, + 0.0014067967422306538, + -0.009102700278162956, + -0.004055347293615341, + -0.008173568174242973, + 0.018135540187358856, + -0.003061594907194376, + 0.0025289158802479506, + 0.0008042581030167639, + -0.002364745829254389, + 0.0169060118496418, + 0.006147640757262707, + -0.0019578139763325453, + 0.012644579634070396, + 0.0018757290672510862, + 0.019001798704266548, + -0.0024380984250456095, + 0.0024765213020145893, + 0.002963791601359844, + 0.012616635300219059, + -0.007894129492342472, + -0.024548647925257683, + -0.009591716341674328, + 0.0004298545536585152, + -0.01489405706524849, + -0.0006981589249335229, + -0.021474827080965042, + 0.012777312658727169, + -0.011778321117162704, + 0.005808821879327297, + 0.003643175819888711, + 0.004135685507208109, + -0.017017787322402, + -0.005752934142947197, + 0.018568668514490128, + 0.009745407849550247, + -0.018973855301737785, + 0.004065826069563627, + 0.012546775862574577, + 0.023947855457663536, + -0.016528770327568054, + -0.014279292896389961, + -0.0055223978124558926, + -0.0005029888125136495, + -0.023528696969151497, + -0.012763340957462788, + 0.010444003157317638, + 0.012476916424930096, + -0.0010845696087926626, + -0.0013893318828195333, + 0.008725457824766636, + -0.0049250987358391285, + 0.018624557182192802, + -0.005581778474152088, + 0.02566640079021454, + -0.011240402236580849, + -0.019518759101629257, + 0.041161250323057175, + 0.004139178432524204, + -0.003220525337383151, + -0.016542742028832436, + 0.003426611190661788, + 0.0018897008849307895, + 0.006350233219563961, + -0.0013098666677251458, + 0.0018111089011654258, + 0.010534821078181267, + 0.0015185720985755324, + 0.0015927978092804551, + 0.01742297224700451, + 0.007642635144293308, + 0.009521856904029846, + 0.0039086421020329, + 0.0014801493380218744, + -0.010115663520991802, + -0.011869138106703758, + -0.008627654984593391, + 0.010660568252205849, + 0.007852213457226753, + 0.00525693129748106, + 0.006563304923474789, + -0.010981922037899494, + -0.014866112731397152, + 0.005903132259845734, + -0.000818230037111789, + -0.014544758945703506, + -0.008962980471551418, + 0.00676589785143733, + -0.003161144908517599, + 0.02313748374581337, + 0.006640150677412748, + 0.011561756022274494, + 0.005414115265011787, + -0.009913071058690548, + -0.016235360875725746, + 0.008236441761255264, + 0.022215338423848152, + 0.012868129648268223, + 0.038422755897045135, + 0.0032624411396682262, + -0.007649620994925499, + 0.02925718203186989, + 0.005515411961823702, + 0.01188310980796814, + 0.029229236766695976, + -0.00030541722662746906, + -0.012120632454752922, + 0.024562619626522064, + -0.016822179779410362, + -0.02303967997431755, + -0.02092992328107357, + 0.022327113896608353, + 0.012197477743029594, + 0.0078731719404459, + -0.02303967997431755, + 0.002859002212062478, + -0.006032372359186411, + -0.0008448640001006424, + -0.00792207382619381, + -0.013769318349659443 + ], + "eec8cb18-5fef-47f2-8774-3e3d70b92ec5": [ + 0.0020574915688484907, + -0.005653576459735632, + -0.004691201262176037, + -0.0012678310740739107, + 0.010257288813591003, + -0.05092442408204079, + 0.025510482490062714, + 0.029203105717897415, + -0.01884927786886692, + -0.003955089952796698, + -0.01078825443983078, + 0.060385264456272125, + -0.001083049108274281, + -0.04037751629948616, + -0.04937979578971863, + -0.0114519614726305, + -0.01607377640902996, + 0.023965854197740555, + 0.010233154520392418, + 0.00040312655619345605, + 0.05015211179852486, + -0.0339093916118145, + -0.04925912246108055, + -0.0075179897248744965, + -0.006287114694714546, + -0.00821789912879467, + 0.003912854008376598, + -0.008893673308193684, + -0.02768261358141899, + -0.008030854165554047, + 0.011626939289271832, + 0.00034656061325222254, + -0.005487649701535702, + 0.007632629945874214, + -0.008664392866194248, + -0.048366136848926544, + -0.02691029943525791, + 0.00716803502291441, + 0.020936938002705574, + -0.0012210699496790767, + -0.0125621622428298, + 0.033885255455970764, + 0.00432616239413619, + 0.013901643455028534, + 0.007373180706053972, + 0.008688527159392834, + -0.032026875764131546, + -0.007379214745014906, + 0.019283704459667206, + -0.010595176368951797, + -0.03740893676877022, + -0.024074461311101913, + -0.013829239644110203, + 0.017594268545508385, + 0.009165189228951931, + -0.0157238207757473, + 0.026210390031337738, + 0.08205831050872803, + 0.00436839833855629, + -0.029106566682457924, + 0.015530742704868317, + -0.03695037588477135, + 0.000718387367669493, + 0.023036664351820946, + -0.05464118346571922, + 0.008477347902953625, + -0.04139117896556854, + -0.003231046022847295, + -0.02214367687702179, + -0.014070587232708931, + 0.021081745624542236, + 0.04742487892508507, + -0.02763434313237667, + -0.0017920087557286024, + 5.279487231746316e-5, + 0.015615214593708515, + 0.0022641457617282867, + -0.020985206589102745, + 0.015458337962627411, + -0.010233154520392418, + 0.022457430139183998, + -0.025510482490062714, + -0.021286891773343086, + -0.006178508512675762, + 0.016966763883829117, + 0.0218781940639019, + 0.015747955068945885, + -0.014734294265508652, + -0.027006838470697403, + -0.04423908516764641, + -0.02024909481406212, + 0.033523235470056534, + 0.003116405801847577, + -0.03086840733885765, + -0.030023688450455666, + 0.006124204955995083, + -0.004932549316436052, + 0.025027785450220108, + 0.012194106355309486, + 0.021697184070944786, + 0.04254964739084244, + 0.01322586927562952, + -0.015277327038347721, + 0.01322586927562952, + 0.007469720207154751, + -0.03147177770733833, + 0.02157650887966156, + -0.010721883736550808, + 0.01813730038702488, + 0.03359564021229744, + -0.003783129621297121, + -0.02686203084886074, + -0.028985893353819847, + 0.0036383208353072405, + -0.036491815000772476, + 0.016472000628709793, + -0.027755018323659897, + -0.02763434313237667, + 0.029420318081974983, + -0.03499545902013779, + 0.018535524606704712, + -0.011759680695831776, + 0.002746841637417674, + -0.022119542583823204, + 0.0014805190730839968, + 0.03714345395565033, + -0.029613398015499115, + 0.022928059101104736, + 0.01536179892718792, + 0.01538593415170908, + -0.009213458746671677, + -0.03405420109629631, + 0.005276470445096493, + -0.03878461942076683, + -0.02127482369542122, + 0.02768261358141899, + 0.021950598806142807, + 0.07182516157627106, + 0.012779375538229942, + 0.0008665900677442551, + -0.024955380707979202, + -0.012755241245031357, + 0.014299867674708366, + 0.009702188894152641, + 0.00960564985871315, + -0.002422530436888337, + -0.023603832349181175, + -0.010209019295871258, + -0.003976208157837391, + 0.02676549181342125, + -0.04947633668780327, + -0.02835838869214058, + 0.013708565384149551, + -0.010746018961071968, + 0.038446731865406036, + -0.0255346167832613, + -0.010782221332192421, + 0.05623408034443855, + -0.008748864755034447, + 0.017377054318785667, + 0.027417130768299103, + -0.0490901805460453, + 0.007789506111294031, + 0.0005694304127246141, + 0.014987709932029247, + -0.009792693890631199, + 0.011512299068272114, + 0.00852561742067337, + -0.05102096498012543, + 0.007554191630333662, + 0.020562848076224327, + -0.017123639583587646, + 0.004329179413616657, + -0.01884927786886692, + 0.04001549631357193, + -0.027851557359099388, + 0.029830610379576683, + 0.01957332156598568, + 0.05343444272875786, + -0.003107355209067464, + 0.02024909481406212, + -0.020309433341026306, + 0.03709518536925316, + -0.014529148116707802, + -0.05328963324427605, + -0.018668266013264656, + 0.057102933526039124, + 0.039267316460609436, + 0.006691372953355312, + 0.0033094841055572033, + -0.00906865019351244, + -0.0009005296742543578, + -0.013479284942150116, + 0.033571504056453705, + -0.011210613884031773, + -0.06221950799226761, + 0.003403006587177515, + 0.0029444454703480005, + 0.025413941591978073, + 0.005538936238735914, + -0.006950821727514267, + -0.03364390879869461, + -0.000453281681984663, + 0.030120227485895157, + -0.02116621844470501, + 0.013455149717628956, + -0.017352920025587082, + 0.02455715648829937, + 0.00048345018876716495, + -0.005155796185135841, + -0.0018975985003635287, + -0.006697406526654959, + -0.005354908294975758, + -0.012182039208710194, + -0.035164400935173035, + 0.017135705798864365, + 0.0049415999092161655, + -0.0035508321598172188, + 0.013925778679549694, + -0.02681376039981842, + 0.0009254186879843473, + -0.03188207000494003, + -0.015808293595910072, + -0.04525274783372879, + -0.03313707932829857, + 0.01582035981118679, + -0.021383430808782578, + 0.024786436930298805, + -0.026524143293499947, + -0.001433003693819046, + 0.020128421485424042, + -0.025244999676942825, + 0.0114519614726305, + -0.009617717005312443, + 0.011029602959752083, + 0.0167495496571064, + 0.03574363514780998, + 0.009672020561993122, + -0.00865232478827238, + -0.034343816339969635, + 0.008121359162032604, + 0.009931469336152077, + 0.0075722928158938885, + -0.025920772925019264, + 0.022010935470461845, + -0.033523235470056534, + -0.04093261808156967, + 0.0007655256194993854, + 0.029468588531017303, + 0.0036141860764473677, + -0.00017148905317299068, + 0.0068784174509346485, + 0.010558973997831345, + -0.012242376804351807, + -0.036395274102687836, + 0.02116621844470501, + 0.039074238389730453, + -0.02111794799566269, + -0.000751572719309479, + -0.01592896692454815, + -0.008000685833394527, + -0.030796002596616745, + 0.026741355657577515, + -0.03873635083436966, + 0.021081745624542236, + -0.02044217474758625, + -0.006081969011574984, + -0.02630692906677723, + 0.03248543664813042, + -0.001556694507598877, + -0.03289572894573212, + -0.007131832651793957, + 0.0007651485502719879, + -0.03304053843021393, + -0.045952655375003815, + 0.025100190192461014, + -0.013455149717628956, + -0.004470971412956715, + -0.007451619021594524, + 0.014601552858948708, + 0.017630470916628838, + -0.06279874593019485, + 0.012646634131669998, + 0.04264618828892708, + 0.023977922275662422, + 0.023350417613983154, + -0.005038138944655657, + -0.0034814446698874235, + -0.00996767170727253, + -0.023302147164940834, + -0.008447179570794106, + -0.016725415363907814, + 0.000969917222391814, + 0.010697749443352222, + -0.0318579338490963, + -0.007397315464913845, + 0.01608584262430668, + -0.018559658899903297, + -0.0016351325903087854, + -0.018209705129265785, + -0.012706970795989037, + -0.012121702544391155, + -0.033257752656936646, + -0.037529610097408295, + 0.04966941475868225, + -0.029251376166939735, + 0.02018875814974308, + -0.02306080050766468, + 0.011228715069591999, + -0.000843209505546838, + 0.018885480239987373, + -0.01653233729302883, + -0.004247724544256926, + -0.028961757197976112, + -0.002151013817638159, + 0.011089939624071121, + -0.007789506111294031, + -0.036805566400289536, + -0.0408843494951725, + -0.03410246968269348, + 0.008048955351114273, + -0.002819246146827936, + -0.044359758496284485, + 0.023591764271259308, + 0.004060679581016302, + 0.006818080320954323, + -0.013660295866429806, + -0.020574916154146194, + -0.025510482490062714, + -0.039532799273729324, + -0.05280693992972374, + -0.030385710299015045, + -0.021866127848625183, + -0.02466576360166073, + -0.01608584262430668, + -0.06270220875740051, + -0.028937622904777527, + -0.05039345845580101, + 0.011524366214871407, + 0.02840665727853775, + 0.01425159815698862, + 0.0031314899679273367, + -0.005315689370036125, + -0.015289394184947014, + -0.016628876328468323, + -0.04797997698187828, + -0.022228149697184563, + 0.009985772892832756, + -0.006305215880274773, + 0.0188010074198246, + 0.0005539690610021353, + 0.014263665303587914, + 0.024158932268619537, + 0.029034161940217018, + 0.009678053669631481, + 0.01905442401766777, + -0.036033254116773605, + -0.012538027949631214, + 0.02831011824309826, + -0.021347228437662125, + -0.02604144625365734, + -0.02599317766726017, + -0.033668044954538345, + -0.0255346167832613, + -0.003964140545576811, + 0.0026322014164179564, + 0.012972453609108925, + 0.03195447102189064, + 0.022433293983340263, + 0.011759680695831776, + -0.015434203669428825, + -0.0034995456226170063, + -0.03900183364748955, + -0.020683521404862404, + -0.008404943160712719, + 0.004350297152996063, + 0.029468588531017303, + -0.004121016710996628, + -0.01966986060142517, + 0.0024376146029680967, + -0.014396406710147858, + 0.012827645055949688, + -0.06550183892250061, + -0.040715403854846954, + 0.029734071344137192, + -0.032533708959817886, + -0.005629441700875759, + 0.01443260908126831, + 0.035888444632291794, + 0.019549187272787094, + -0.020369770005345345, + 0.02091280184686184, + 0.013443082571029663, + -0.039122506976127625, + 0.01518078800290823, + -0.0032823325600475073, + 0.003949056379497051, + -0.005219149868935347, + 0.016001371666789055, + 0.03591258078813553, + -0.037215858697891235, + -0.00537904305383563, + 0.022155744954943657, + 0.003879668889567256, + 0.061978161334991455, + -0.01322586927562952, + -0.003529714187607169, + 0.003336635883897543, + 0.03328188508749008, + -0.03581603989005089, + -0.007095630746334791, + -0.001793517149053514, + -0.022360891103744507, + 0.03646767884492874, + 0.02526913397014141, + -0.015084248967468739, + 0.03651595115661621, + -0.009678053669631481, + -0.018559658899903297, + 0.00662500225007534, + 0.01886134408414364, + -0.00643192371353507, + 0.025872504338622093, + 0.019500916823744774, + -0.004627847578376532, + 0.0007221584091894329, + -0.0494280681014061, + 0.04742487892508507, + 0.01009437907487154, + 0.003918888047337532, + -0.03796403855085373, + 0.01757013238966465, + 0.04505966976284981, + 0.019971545785665512, + -0.003683573566377163, + -0.027755018323659897, + 0.02835838869214058, + 0.018475187942385674, + 0.01222427561879158, + -0.027730882167816162, + -0.01653233729302883, + 0.04254964739084244, + 0.019042355939745903, + 0.01854759268462658, + 0.02110588178038597, + 0.0031707091256976128, + 0.0036654723808169365, + -0.025703560560941696, + 3.8040590879973024e-5, + 0.006745676044374704, + -0.0037951970007270575, + 0.04146358370780945, + 0.008646291680634022, + -0.003611169056966901, + 0.019500916823744774, + 0.0030605942010879517, + 0.013213802129030228, + -0.005541952792555094, + -0.012513892725110054, + -0.0035055794287472963, + -0.0339093916118145, + -0.02485884167253971, + 0.014529148116707802, + 0.033668044954538345, + 0.03818124905228615, + -0.025824233889579773, + -0.0157238207757473, + -0.0035719501320272684, + 0.019838804379105568, + 0.04783517122268677, + -0.03205101191997528, + 0.02635519951581955, + -0.06154373660683632, + -0.017123639583587646, + 0.0050321053713560104, + -0.026982704177498817, + -0.017389122396707535, + 0.0157238207757473, + -3.554225986590609e-5, + 0.015518675558269024, + 0.02357969805598259, + -0.0010249747429043055, + -0.03458516672253609, + -0.022481564432382584, + -0.0012142820050939918, + 0.0061513567343354225, + -0.020043950527906418, + -0.021359296515583992, + 0.014034384861588478, + 0.004537342116236687, + 0.007843809202313423, + 0.02481057308614254, + 0.010112480260431767, + -0.006594833452254534, + -0.029154835268855095, + 0.024593358859419823, + 0.04851094260811806, + -0.008664392866194248, + -0.023205608129501343, + -0.011759680695831776, + 0.026475872844457626, + 0.02748953551054001, + -0.04073954001069069, + 0.012001028284430504, + 0.02044217474758625, + 0.029420318081974983, + -0.01222427561879158, + -0.016158247366547585, + -0.024388212710618973, + 0.03545401990413666, + -0.010492603294551373, + 0.017992492765188217, + -0.04069127142429352, + -0.007312844041734934, + -0.025027785450220108, + -0.01096323225647211, + -0.026837894693017006, + -0.013443082571029663, + 0.03909837454557419, + 0.009810795076191425, + -0.008018787018954754, + -0.004736454226076603, + 0.006407788954675198, + 0.012139803729951382, + 0.014951507560908794, + 0.026475872844457626, + -0.030578788369894028, + -0.024882975965738297, + 0.01433607004582882, + -0.001486552762798965, + -0.022228149697184563, + -0.020152555778622627, + 0.0003848368942271918, + -0.003502562642097473, + -0.0462181381881237, + -0.01518078800290823, + -0.01436020527034998, + -0.012501825578510761, + 0.03600911796092987, + -0.003952073398977518, + -0.007065461948513985, + 0.03446449339389801, + 0.022433293983340263, + -0.015096316114068031, + 0.013829239644110203, + 0.01433607004582882, + -0.018740670755505562, + 0.05835794284939766, + -0.030433980748057365, + 0.009521177969872952, + 0.01771494187414646, + -0.013237936422228813, + -0.03014436364173889, + -0.01623065210878849, + 0.042139358818531036, + 0.0011818509083241224, + 0.03818124905228615, + 0.002763434313237667, + 2.8990039936616085e-5, + -0.0031857932917773724, + 0.0007941856747493148, + -0.014854968525469303, + -0.025196729227900505, + 0.02481057308614254, + -0.0037077083252370358, + 0.008284269832074642, + -0.00348747824318707, + -0.0062750475481152534, + -0.017171908169984818, + 0.03246130421757698, + 0.025655290111899376, + -0.0015091791283339262, + 0.04493899270892143, + -0.008175662718713284, + -0.015144585631787777, + -0.020405972376465797, + -0.004799807909876108, + -0.014698091894388199, + 0.005041155964136124, + -0.021142082288861275, + 0.01792008802294731, + -0.03123042918741703, + -0.01771494187414646, + -0.014565350487828255, + 0.009237593971192837, + 0.028165308758616447, + -0.009466874413192272, + -0.01787181757390499, + -0.03851913660764694, + 0.00540619483217597, + 0.010058176703751087, + 0.05015211179852486, + 0.023459022864699364, + 0.005496700294315815, + 0.00451924093067646, + 0.033016402274370193, + -0.012779375538229942, + -0.015060113742947578, + 0.038760486990213394, + 0.0031616585329174995, + 0.020104287192225456, + 0.03673316165804863, + 0.002623150823637843, + -0.013310341164469719, + -0.02845492772758007, + -0.00040010971133597195, + 0.00963581819087267, + 0.031037351116538048, + -0.04561476781964302, + -0.031664855778217316, + -0.01957332156598568, + -0.010794288478791714, + 0.023772776126861572, + -0.005704862996935844, + 0.025655290111899376, + 0.011409725993871689, + 0.011826051399111748, + -0.014348137192428112, + 0.01906649023294449, + -0.021974733099341393, + 0.0059824129566550255, + -0.02671722136437893, + 0.017171908169984818, + -0.05020038038492203, + 0.041946280747652054, + -0.02116621844470501, + 0.030120227485895157, + -0.03651595115661621, + 0.015482473187148571, + 0.02517259493470192, + 0.01029952522367239, + -0.016628876328468323, + -0.015784157440066338, + -0.002357668010517955, + 0.04370811954140663, + -0.0005053223576396704, + 0.003973191138356924, + -0.011071838438510895, + -0.015325596556067467, + -0.018330378457903862, + 0.03168898820877075, + -0.010383997112512589, + -0.009472908452153206, + -0.015796225517988205, + -0.007228372152894735, + 0.03970174118876457, + -0.04016030579805374, + 0.014408474788069725, + 0.0076386635191738605, + -0.004676117096096277, + -0.0318579338490963, + 0.01849932223558426, + -0.02291599102318287, + 0.010202986188232899, + 0.023857247084379196, + 0.0018161435145884752, + 0.029734071344137192, + 0.01445674430578947, + -0.006262979935854673, + 0.002182690892368555, + 0.004860145039856434, + -0.021769588813185692, + -0.012133769690990448, + 0.02039390429854393, + 0.024002056568861008, + -0.029758205637335777, + 0.007294742856174707, + -0.008772999048233032, + 0.01726844720542431, + 0.012501825578510761, + 0.015458337962627411, + -0.03979828208684921, + 0.03299226984381676, + -0.014710159040987492, + 0.02398998849093914, + -0.004142134916037321, + 0.02172131836414337, + -0.026934435591101646, + -0.004196438007056713, + -0.004552426282316446, + 0.0017211127560585737, + -0.009955604560673237, + -0.04706285521388054, + 0.02908243238925934, + 0.0045463927090168, + -0.008658358827233315, + -0.021431701257824898, + 0.038495004177093506, + -0.0038344161584973335, + -0.03427141159772873, + 0.013153464533388615, + -0.0012459589634090662, + -0.024786436930298805, + 0.009291897527873516, + 0.027561940252780914, + 0.004606729373335838, + 0.014867035672068596, + 0.0101185142993927, + 0.022626373916864395, + -0.01032969355583191, + -0.04638708382844925, + 0.0011524365982040763, + 0.025800099596381187, + -0.038398463279008865, + 0.027368860319256783, + 0.030989080667495728, + -0.007222338113933802, + -0.01649613492190838, + 0.011874320916831493, + -0.004271859303116798, + -0.031978607177734375, + 0.022481564432382584, + 0.0171598419547081, + 0.012912116944789886, + 0.029010027647018433, + -0.001376437721773982, + -0.0035236806143075228, + 0.037215858697891235, + -0.023857247084379196, + 0.005813469644635916, + -0.0005366221303120255, + 0.0008718695607967675, + 0.010251255705952644, + -0.03806057572364807, + -0.034126605838537216, + 0.010015941224992275, + -0.005273453425616026, + 0.007542124483734369, + -0.032944001257419586, + -7.900375203462318e-5, + 0.008489415049552917, + -0.011771747842431068, + -0.00934620015323162, + -0.003149591153487563, + -0.004422701895236969, + -0.01302072312682867, + -0.02567942440509796, + 0.010383997112512589, + 0.0034814446698874235, + -0.047859303653240204, + -0.02727232128381729, + -0.02193853072822094, + 0.034898918122053146, + -0.034898918122053146, + 0.0012783900601789355, + 0.004253758117556572, + 0.017690807580947876, + -0.03263024613261223, + -0.030385710299015045, + 0.009991806000471115, + 0.011168377473950386, + 0.004265825729817152, + 0.025920772925019264, + 0.01771494187414646, + 0.013382745906710625, + -0.0050321053713560104, + 0.037312399595975876, + 0.026234526187181473, + -0.017280515283346176, + 0.019911209121346474, + -0.03299226984381676, + 0.0004476250906009227, + -0.015603147447109222, + -0.01752186380326748, + 0.024786436930298805, + -0.04361157864332199, + -0.024569224566221237, + 0.013262071646749973, + 0.033933527767658234, + -0.03738480061292648, + 0.01813730038702488, + 0.031109753996133804, + 0.002553763333708048, + 0.011313186958432198, + -0.005557037424296141, + 0.03400592878460884, + -0.004344263579696417, + -0.02958926185965538, + 0.010100413113832474, + 0.0037137421313673258, + -0.0212627574801445, + -0.021817857399582863, + -0.0057591660879552364, + -0.029878880828619003, + 0.015760023146867752, + -0.014022317714989185, + 0.02507605589926243, + 0.0072585404850542545, + -0.02584836818277836, + 0.01612204499542713, + 0.0052342345006763935, + -0.011186478659510612, + 0.002374260686337948, + -0.023145271465182304, + 0.007825708016753197, + -0.0011486655566841364, + 0.00574106490239501, + -0.010860659182071686, + 0.013443082571029663, + 0.0222884863615036, + 0.00026585988234728575, + 0.0011946725426241755, + 0.04397360235452652, + 0.02886521816253662, + -0.015892764553427696, + -0.014553283341228962, + 0.004190404433757067, + -0.01788388565182686, + -0.016858156770467758, + -0.015615214593708515, + 0.02003188244998455, + 0.03991895541548729, + -0.01096926536411047, + 0.015506607480347157, + -0.026210390031337738, + -0.006305215880274773, + -0.004193420987576246, + -0.005852688569575548, + 0.02594490721821785, + 0.00451924093067646, + -0.012320814654231071, + 0.001377191860228777, + -0.023977922275662422, + 0.007711067795753479, + -0.005541952792555094, + -0.026065582409501076, + 0.04638708382844925, + 0.004498123191297054, + 0.04344263672828674, + -0.011639006435871124, + 0.0050441729836165905, + 0.001466943183913827, + -0.00471231946721673, + 0.009714256040751934, + -0.009497042745351791, + 0.006148339714854956, + -0.029661666601896286, + -0.0017708907835185528, + -0.03137523680925369, + 0.0271757822483778, + -0.001669826335273683, + -0.033716313540935516, + -0.029444454237818718, + -0.010130581445991993, + 0.014879102818667889, + -0.0035116132348775864, + 0.02244536206126213, + -0.003562899539247155, + 0.00894194282591343, + 0.014782563783228397, + 0.022312620654702187, + -0.02168511599302292, + -0.02260223776102066, + 0.007904146797955036, + -0.0157238207757473, + 0.015591079369187355, + -0.033933527767658234, + 0.009931469336152077, + -0.02804463542997837, + -0.02481057308614254, + 0.01566348411142826, + -0.02522086352109909, + 0.0021525223273783922, + -0.01276730839163065, + 0.007071495987474918, + -0.0035749669186770916, + 0.012489758431911469, + -0.013032791204750538, + 0.0115364333614707, + 0.023808978497982025, + 0.017811480909585953, + 0.009122953750193119, + 0.025003651157021523, + 0.01741325668990612, + -0.010227120481431484, + 0.007566259242594242, + -0.04052232578396797, + 0.0075843604281544685, + -0.01916302926838398, + 0.01875273883342743, + -0.022674642503261566, + 0.03501959145069122, + 0.0021721317898482084, + 0.026572411879897118, + -0.03250957280397415, + 0.004796791356056929, + 0.0015551859978586435, + 0.0022143677342683077, + -0.016158247366547585, + -0.007892078720033169, + -0.00821789912879467, + -0.012996588833630085, + 0.038446731865406036, + -0.018969951197504997, + -0.013105195015668869, + 0.021492037922143936, + 0.03856740891933441, + 0.017039166763424873, + 0.00942463893443346, + 0.0255346167832613, + 0.017594268545508385, + -0.05015211179852486, + -0.005360941868275404, + -0.018463119864463806, + -0.006081969011574984, + -0.029613398015499115, + 0.00873679667711258, + -0.00030225064256228507, + 0.002233977196738124, + 0.029734071344137192, + 0.02563115581870079, + 0.004510190337896347, + -0.041439447551965714, + 0.01086669322103262, + 0.02650000900030136, + 0.003297416726127267, + 0.009726323187351227, + 0.025510482490062714, + 0.005511784460395575, + -0.004932549316436052, + -0.00661293463781476, + 0.005596256349235773, + 0.01597723551094532, + 0.011801916174590588, + -0.02604144625365734, + 0.02203506976366043, + -0.011826051399111748, + -0.010396064259111881, + 0.0034241245593875647, + 0.022107474505901337, + -0.018933748826384544, + -0.0009676545741967857, + 0.000535113736987114, + -0.012694903649389744, + -0.002330516465008259, + -0.018728602677583694, + 0.0015137044247239828, + 0.008290302939713001, + -0.017196044325828552, + -0.007216304540634155, + -0.012851780280470848, + 0.02326594479382038, + 0.019947411492466927, + 0.005179930943995714, + -0.00662500225007534, + -0.02507605589926243, + -0.012815577909350395, + 0.022372957319021225, + -0.014082654379308224, + 0.022252283990383148, + 0.020309433341026306, + 0.012188073247671127, + -0.01602550595998764, + 0.026282794773578644, + 0.01258629746735096, + 0.00975649245083332, + 0.007867944426834583, + 0.015011844225227833, + 0.020949004217982292, + -0.0045825946144759655, + 0.011331288143992424, + 0.0036715061869472265, + -0.030530519783496857, + -0.0004080289218109101, + -0.06188162416219711, + 0.016653010621666908, + -0.012097567319869995, + 0.006643102969974279, + 0.018064895644783974, + -0.008459246717393398, + 0.011114074848592281, + -0.00023927389702294022, + 0.01977846771478653, + 0.01148212980479002, + -0.0018312277970835567, + -0.0017527897143736482, + -0.03333015739917755, + -0.007264574058353901, + 0.03149591013789177, + -0.013780970126390457, + 0.045494094491004944, + 0.0021917412523180246, + 0.010854625143110752, + -0.007855876348912716, + 0.009008313529193401, + 0.029830610379576683, + 0.006914619822055101, + -0.004262808710336685, + -0.006109120789915323, + 0.031158024445176125, + 0.014106789603829384, + -0.02567942440509796, + -0.011608838103711605, + -0.017545998096466064, + 0.00042349027353338897, + -0.02881694957613945, + -0.04059473052620888, + -0.01292418409138918, + 0.0157238207757473, + -0.01659267395734787, + -0.027851557359099388, + -0.02250569872558117, + 0.03045811504125595, + 0.0008575395331718028, + -0.0005158812855370343, + -0.004947633482515812, + -0.0470387227833271, + 0.017039166763424873, + 0.021636847406625748, + 0.03318534791469574, + 0.022421227768063545, + -0.005029088351875544, + 0.013551688753068447, + -0.010009907186031342, + 0.043128885328769684, + -0.006739642471075058, + 0.022023003548383713, + -0.015711752697825432, + -0.03272678703069687, + 0.023097001016139984, + 0.002917293692007661, + -0.020128421485424042, + -0.013841306790709496, + -0.005300605203956366, + -0.011204579845070839, + 0.00876093190163374, + -0.01415505912154913, + -0.01936817541718483, + 0.017545998096466064, + 0.01813730038702488, + 0.008242033421993256, + -0.021286891773343086, + 0.006649137008935213, + -0.021660981699824333, + 0.0017075369833037257, + -0.021564442664384842, + 0.014215395785868168, + -0.047593820840120316, + 0.0004453624424058944, + -0.014734294265508652, + 0.0029821558855473995, + 0.025003651157021523, + -0.025148458778858185, + -0.010444333776831627, + 0.007107697892934084, + 0.01582035981118679, + -0.00816359557211399, + 0.003918888047337532, + -0.038857024163007736, + 0.008996246382594109, + 0.01235098298639059, + 0.02250569872558117, + -0.001793517149053514, + -0.0001424518704880029, + 0.02250569872558117, + -0.0067215412855148315, + -0.02326594479382038, + -0.02096107229590416, + -0.009412570856511593, + 0.023507293313741684, + -0.017992492765188217, + 0.025389807298779488, + 0.03149591013789177, + 0.0007956941262818873, + -0.006673271767795086, + -0.03374044597148895, + 0.00611515436321497, + 0.028575601056218147, + 0.015132518485188484, + -0.017340851947665215, + 0.0029489705339074135, + 0.021612711250782013, + -0.017027100548148155, + 0.006510361563414335, + -0.012236342765390873, + 0.018101098015904427, + -0.00590699166059494, + -0.00824806746095419, + 0.004163252655416727, + -0.03200274333357811, + -0.008772999048233032, + 0.003016849746927619, + -0.012815577909350395, + -0.014420541934669018, + 0.005023054778575897, + 0.014287800528109074, + 0.006763777229934931, + 0.02594490721821785, + -0.026524143293499947, + 0.017630470916628838, + -0.020321499556303024, + -0.021600645035505295, + -0.0026186255272477865, + -0.0004774164699483663, + -0.010064210742712021, + 0.004769639577716589, + -0.021202420815825462, + 0.020418038591742516, + 0.02342282235622406, + 0.016761617735028267, + 0.01633925922214985, + 0.019090624526143074, + -0.002887125127017498, + -0.011258883401751518, + 0.0013847340596839786, + 0.018475187942385674, + 0.004377448931336403, + -0.00978666078299284, + 0.009466874413192272, + 0.004763606004416943, + 0.014082654379308224, + 0.00891177449375391, + 0.005439380183815956, + -0.0005136186955496669, + -0.009147088043391705, + -0.0044408030807971954, + -0.01132525410503149, + -0.020007748156785965, + 0.0007949399296194315, + -0.015506607480347157, + -0.009955604560673237, + 0.01839071698486805, + 0.001713570673018694, + 0.0028479062020778656, + 0.00991336815059185, + -0.015168720856308937, + 0.006178508512675762, + -0.011114074848592281, + -0.003378871828317642, + 0.01884927786886692, + 0.002783044008538127, + -0.018788941204547882, + 0.0240985956043005, + -0.0015582029009237885, + -0.0014518589014187455, + 0.00590699166059494, + -0.01520492322742939, + -0.010438299737870693, + -0.019549187272787094, + 0.03991895541548729, + -0.02876867912709713, + 0.0036745229735970497, + 0.006178508512675762, + -0.0029474622569978237, + 0.01941644586622715, + -0.008507516235113144, + -0.014082654379308224, + -0.030578788369894028, + 0.005300605203956366, + 0.006757743656635284, + 0.010106447152793407, + -0.010009907186031342, + 0.01137955766171217, + 0.009696154855191708, + -0.003689607372507453, + -0.016834022477269173, + -0.026548277586698532, + 0.017751144245266914, + 0.005493683274835348, + -0.003783129621297121, + -0.005258369259536266, + -0.006163423880934715, + -0.0003876652044709772, + 0.005680728238075972, + -0.014661889523267746, + 0.00036032500793226063, + 0.013286205939948559, + 0.027368860319256783, + 0.029396183788776398, + 0.0033909392077475786, + 0.016713347285985947, + -0.008242033421993256, + -0.00804292131215334, + 0.0251243244856596, + -0.0020378821063786745, + 0.015579012222588062, + -0.020104287192225456, + -0.01117441151291132, + 0.009080717340111732, + -0.014553283341228962, + 0.00611213780939579, + 0.00798861775547266, + -0.015253192745149136, + 0.01240528654307127, + -0.008537684567272663, + -0.040860213339328766, + -0.017328785732388496, + -0.008947976864874363, + -0.012658701278269291, + 0.017630470916628838, + 0.022541901096701622, + 0.024955380707979202, + -0.006066884845495224, + -0.0024858841206878424, + 0.02147996984422207, + 0.021745452657341957, + 0.015615214593708515, + -0.029565127566456795, + -0.010667581111192703, + 0.007873977534472942, + -0.006637069396674633, + -0.006643102969974279, + -0.019766399636864662, + -0.02625866048038006, + -0.018221773207187653, + -0.019187165424227715, + -0.03542988374829292, + -0.028623871505260468, + -0.0006086494540795684, + -0.015615214593708515, + 0.016858156770467758, + 0.009442740119993687, + 0.0027317574713379145, + -0.002672928851097822, + -0.010770153254270554, + 0.006703440099954605, + -0.03272678703069687, + -0.03335428982973099, + -0.003246130421757698, + 0.0004645948647521436, + 0.0157238207757473, + -0.0020876601338386536, + -0.018366580829024315, + -0.028937622904777527, + -0.009816829115152359, + 0.006896518636494875, + -0.019645726308226585, + 0.010528805665671825, + -0.01515665277838707, + -0.015023911371827126, + 0.026596548035740852, + -0.012984521687030792, + 0.020466309040784836, + 0.009189324453473091, + 0.007813640870153904, + -0.01376890204846859, + -0.010432266630232334, + -0.038084711879491806, + -0.01843898557126522, + 0.020152555778622627, + -0.021564442664384842, + -0.013189666904509068, + 0.04365985095500946, + 0.02034563571214676, + 0.0010604227427393198, + 0.018571726977825165, + -0.013503419235348701, + -0.01343101542443037, + -0.010317626409232616, + 0.016146179288625717, + 0.014022317714989185, + -0.007910179905593395, + -0.011180445551872253, + 0.0006026157643646002, + -0.011421793140470982, + -0.03306467458605766, + -0.005514801479876041, + 0.02548634633421898, + 0.02367623709142208, + -0.020056016743183136, + -0.02353142760694027, + 0.0005298342439346015, + -0.00641985610127449, + 0.003436191938817501, + 0.022891856729984283, + -0.013032791204750538, + -0.00032563123386353254, + -0.0032521639950573444, + 0.009328099898993969, + 0.00680601317435503, + -0.005439380183815956, + -0.007029260043054819, + -0.014915305189788342, + 0.0024542072787880898, + -0.0049084145575761795, + 0.010486570186913013, + 0.014879102818667889, + -0.011747612617909908, + -0.033306021243333817, + -0.010432266630232334, + 0.008754897862672806, + 0.02327801287174225, + -0.0060487836599349976, + -0.0032551807817071676, + -0.0058587221428751945, + 0.020780060440301895, + -0.014505013823509216, + 0.007252506911754608, + -0.0019473765278235078, + -0.01664094254374504, + 0.005161829758435488, + -0.009141054935753345, + -0.016942627727985382, + 0.009720290079712868, + -0.011807950213551521, + 0.001980561763048172, + -0.03195447102189064, + -0.005300605203956366, + 0.0218781940639019, + 0.042453110218048096, + -0.02053871378302574, + 0.023302147164940834, + -0.01870446838438511, + -0.007873977534472942, + 0.007650731131434441, + -0.03009609319269657, + 0.006000514142215252, + -0.0016094893217086792, + -0.0070352936163544655, + -0.009364301338791847, + -0.012815577909350395, + -0.02146790362894535, + 0.013455149717628956, + 0.008356673642992973, + 0.01792008802294731, + 0.010571041144430637, + -0.01828210987150669, + -0.0367814339697361, + 0.0019684943836182356, + -0.013684430159628391, + 0.01189242210239172, + 0.015699686482548714, + 0.015277327038347721, + -0.002330516465008259, + 0.017196044325828552, + 0.025196729227900505, + 0.00646209204569459, + 0.039436258375644684, + 0.017497729510068893, + 0.01204929780215025, + 0.025293268263339996, + -0.0017558066174387932, + -0.0054785991087555885, + 0.013298274017870426, + 0.0028222629334777594, + 0.022167811170220375, + -0.006799979601055384, + -0.011699343100190163, + -0.003686590353026986, + -0.010927029885351658, + -0.011307152919471264, + -0.022481564432382584, + -0.00019590668671298772, + 0.005306638777256012, + -0.01772700995206833, + 0.014094722457230091, + 0.004486055579036474, + 0.013117263093590736, + 0.03376458212733269, + -0.018004558980464935, + -0.014806699007749557, + 0.0004687430337071419, + 0.0125621622428298, + -0.008181696757674217, + 0.007922247052192688, + 0.00965995341539383, + -0.009225526824593544, + 0.022433293983340263, + 0.010263322852551937, + 0.021443767473101616, + -0.022578103467822075, + -0.022578103467822075, + -0.04303234443068504, + 0.01294831931591034, + 0.038253653794527054, + 0.03982241824269295, + -0.01725638099014759, + -0.013081060722470284, + 0.010908928699791431, + 0.006799979601055384, + 0.024738168343901634, + 0.0012014603707939386, + 0.009074684232473373, + 0.01725638099014759, + 0.01201912946999073, + 0.012338915839791298, + 0.004757571965456009, + -0.02193853072822094, + 0.004027494229376316, + -0.009056583046913147, + -0.003813298186287284, + 0.00436538178473711, + -0.011645040474832058, + 0.0005200294544920325, + -0.0029685802292078733, + 0.00748782092705369, + -0.006003531161695719, + 0.0057380483485758305, + 0.025751829147338867, + 0.0011795882601290941, + -0.025824233889579773, + -0.004648965317755938, + 0.03641941025853157, + 0.0034754108637571335, + -0.020936938002705574, + -0.011982927098870277, + -0.012851780280470848, + -0.0007557208882644773, + -0.011470062658190727, + 0.01941644586622715, + 0.00225358665920794, + -0.04187387600541115, + 0.009617717005312443, + 0.008845403790473938, + -0.006661204155534506, + -0.01199499424546957, + -0.019537119194865227, + -0.01171141117811203, + -0.014263665303587914, + -0.029661666601896286, + -0.014867035672068596, + 0.0010483552468940616, + 0.012755241245031357, + -0.027296457439661026, + -0.01700296439230442, + -0.011180445551872253, + -0.02753780409693718, + -0.001730163348838687, + 0.004114983137696981, + -0.048269595950841904, + -0.013841306790709496, + -0.006661204155534506, + -0.007011158857494593, + 0.02326594479382038, + -0.012176006101071835, + 0.0125621622428298, + -0.005888890940696001, + 0.015229057520627975, + -0.00749988853931427, + 0.02090073563158512, + 0.0056354752741754055, + -0.0050984760746359825, + -0.002595999278128147, + -0.024786436930298805, + -0.03576777130365372, + -0.0334990993142128, + -0.007306810002774, + -0.015784157440066338, + 0.02826184779405594, + 0.0022626372519880533, + 0.009237593971192837, + 0.0251243244856596, + 0.011856219731271267, + 0.006968922913074493, + -0.007023226469755173, + -0.027755018323659897, + -0.013624093495309353, + 0.002763434313237667, + -0.0296375323086977, + 0.011904489248991013, + -0.0009322065743617713, + -0.028937622904777527, + -0.003113389015197754, + 0.005023054778575897, + -0.01063137874007225, + 0.013491352088749409, + -0.01730464957654476, + -0.027296457439661026, + -0.008742830716073513, + 0.017039166763424873, + -0.004703268874436617, + -0.018197637051343918, + -0.0012180530466139317, + -0.005089425481855869, + -0.01163297239691019, + 0.00612722197547555, + 0.005388093646615744, + -0.009316031821072102, + -0.0015506608178839087, + 0.008145494386553764, + -0.00965995341539383, + 0.023205608129501343, + 0.015832427889108658, + 0.015627281740307808, + -0.023857247084379196, + 0.02440028078854084, + -0.0380123071372509, + -0.026162121444940567, + -0.011940691620111465, + 0.023410754278302193, + -0.007819674909114838, + -0.016423730179667473, + -0.006594833452254534, + 0.01153040025383234, + -0.02096107229590416, + 0.026693087071180344, + 0.004597679246217012, + 0.020514577627182007, + 0.003460326697677374, + 0.02018875814974308, + -0.008308404125273228, + 0.0006176999886520207, + 0.025365673005580902, + 0.019959477707743645, + -0.014830833300948143, + -0.013515487313270569, + 0.011518332175910473, + 0.02151617221534252, + -0.01499977707862854, + 0.008700594305992126, + 0.008785066194832325, + -0.010492603294551373, + 0.011108040809631348, + 0.033112943172454834, + -0.03697451204061508, + -0.021552374586462975, + -0.004748521372675896, + 0.012163938023149967, + -0.009358268231153488, + -0.01445674430578947, + -0.016568539664149284, + 0.02239709347486496, + -0.013201734982430935, + -0.018221773207187653, + -0.006492260843515396, + 0.017425324767827988, + -0.02460542693734169, + -0.010064210742712021, + -0.0023350417613983154, + 0.010981333442032337, + -0.002866007387638092, + 0.022734979167580605, + -0.03190620243549347, + 0.03451276198029518, + -0.019090624526143074, + 0.01843898557126522, + 0.017039166763424873, + -0.03118215873837471, + -0.0007198957609944046, + -0.0212627574801445, + 0.011602804064750671, + 0.028599735349416733, + -0.02414686605334282, + -0.017244312912225723, + -0.008622156456112862, + 0.03545401990413666, + 0.017642537131905556, + -0.004308061674237251, + -0.03422314301133156, + -0.010003874078392982, + -0.006763777229934931, + -0.013394813053309917, + 0.012417353689670563, + -0.011403691954910755, + 0.016146179288625717, + 0.010166783817112446, + -0.012260477058589458, + -0.004513207357376814, + 0.004341247025877237, + 0.004467954393476248, + -0.005653576459735632, + 0.0011275475844740868, + -0.005161829758435488, + 0.022566035389900208, + -0.028285983949899673, + -0.004178336821496487, + 0.011512299068272114, + 0.01905442401766777, + -0.0036141860764473677, + 0.011874320916831493, + 0.0013161007082089782, + -0.007843809202313423, + 0.012296679429709911, + -0.009539279155433178, + 0.0037016747519373894, + -0.02167304791510105, + -0.011397658847272396, + 0.011614871211349964, + -0.00436538178473711, + 0.006643102969974279, + 0.0034573099110275507, + -0.001156961894594133, + 0.012731106020510197, + -0.0032491472084075212, + 0.0020816263277083635, + -0.021588576957583427, + -0.003469377290457487, + -0.0033094841055572033, + 0.018330378457903862, + 0.008821268565952778, + 0.006311249919235706, + -0.011126141995191574, + 0.03072359785437584, + -0.008030854165554047, + -0.007053394801914692, + -0.005204065702855587, + 0.011862252838909626, + -0.014903238043189049, + 0.022578103467822075, + 0.01854759268462658, + 0.0021012357901781797, + -0.009261729195713997, + -0.01747359335422516, + -0.0208524651825428, + 0.013563756830990314, + -0.005653576459735632, + 0.004980818834155798, + -0.018270041793584824, + 0.007186136208474636, + 0.004579578060656786, + -0.015023911371827126, + 0.016170315444469452, + 0.030675329267978668, + 0.012417353689670563, + -0.022167811170220375, + -0.00801275297999382, + 0.008899706415832043, + -0.01518078800290823, + 0.0012942285975441337, + 0.01302072312682867, + 0.01998361200094223, + 0.02799636498093605, + 0.004932549316436052, + 0.018994085490703583, + -0.0013975556939840317, + -0.01415505912154913, + -0.021805789321660995, + 0.009720290079712868, + -0.01035382878035307, + 0.0021117948926985264, + -0.013237936422228813, + -0.01220014039427042, + -0.008441145531833172, + -0.0029293610714375973, + 0.023760708048939705, + 0.021021408960223198, + -0.0013688956387341022, + 0.011385590769350529, + -0.01286384742707014, + -0.007686933036893606, + 0.015760023146867752, + 0.01664094254374504, + 0.011940691620111465, + -0.002840364119037986, + 0.008483381941914558, + 0.023133203387260437, + -0.0080670565366745, + -0.01752186380326748, + -0.009774593636393547, + 0.010498637333512306, + -0.01181398332118988, + -0.006045767106115818, + -0.008694561198353767, + -0.020731791853904724, + -0.03383698686957359, + -0.030216766521334648, + -0.01839071698486805, + -0.025872504338622093, + -0.002746841637417674, + -0.009714256040751934, + 0.007017192430794239, + -0.01536179892718792, + -0.0006226023542694747, + 0.00011322614591335878, + 0.007071495987474918, + -0.014758429490029812, + -0.010595176368951797, + -0.0020680504385381937, + -0.00020401446090545505, + 0.010552940890192986, + 0.015989303588867188, + 0.001953410217538476, + 0.0027724849060177803, + 0.016834022477269173, + -0.008754897862672806, + -0.011102006770670414, + -0.0025160526856780052, + 0.0021872161887586117, + 0.007916213944554329, + -0.008133427239954472, + 0.0234831590205431, + -0.007288708817213774, + -0.008694561198353767, + 0.0037077083252370358, + -0.010571041144430637, + 0.0017452476313337684, + -0.018004558980464935, + -0.0007146162679418921, + 0.014263665303587914, + -0.03277505561709404, + -0.0014360204804688692, + -0.01119854673743248, + -0.002595999278128147, + 0.00031148974085226655, + -0.004443819634616375, + 0.004543375689536333, + -0.007162001449614763, + 0.00834460649639368, + 0.005155796185135841, + -0.007958449423313141, + 0.0061845420859754086, + 0.033571504056453705, + 0.0048541114665567875, + -0.013563756830990314, + -0.0012059856671839952, + -0.018716536462306976, + -0.044770050793886185, + 0.021190352737903595, + 0.007113731931895018, + 0.004537342116236687, + -0.016158247366547585, + -0.013141397386789322, + -0.008604055270552635, + 0.0038917362689971924, + -0.00697495648637414, + 0.009702188894152641, + -0.022988395765423775, + 0.0009691629675216973, + -0.021238623186945915, + 0.00040388075285591185, + 0.0240985956043005, + 0.002270179335027933, + 0.003206911263987422, + 0.03376458212733269, + -0.024315809831023216, + 0.0005777267506346107, + 0.00399430887773633, + 0.01653233729302883, + 0.021347228437662125, + -0.014854968525469303, + 0.015518675558269024, + -0.03180966526269913, + 0.02572769485414028, + 0.002713656285777688, + 0.0032551807817071676, + -0.005554020404815674, + -0.01968192867934704, + -0.010727917775511742, + 0.0022038088645786047, + -0.01240528654307127, + 0.02080419659614563, + 0.014263665303587914, + 0.03902596980333328, + -0.02029736526310444, + -0.010468469001352787, + 0.029806476086378098, + 0.0006931212265044451, + -0.0024526987690478563, + -0.01189242210239172, + -0.02044217474758625, + 0.0017361970385536551, + 0.020586982369422913, + 0.0022219098173081875, + 0.02033356763422489, + -0.04370811954140663, + -0.013455149717628956, + -0.007294742856174707, + -0.00044423111830838025, + 0.0062810811214149, + -0.006606901064515114, + 0.014118856750428677, + 0.002900701016187668, + 0.0006629527197219431, + -0.006208676844835281, + -0.013334476388990879, + -0.024436483159661293, + -0.012151870876550674, + 0.01515665277838707, + -0.004733437206596136, + 0.01443260908126831, + -0.0043050446547567844, + 0.009816829115152359, + 0.026113850995898247, + -0.014529148116707802, + 0.02917897142469883, + 9.639777999836951e-5, + -0.02454509027302265, + -0.027803286910057068, + 0.02872041054069996, + -0.029010027647018433, + 0.008682494051754475, + 0.03045811504125595, + 0.0024376146029680967, + 0.012912116944789886, + -0.009883199818432331, + 0.009267762303352356, + -0.011071838438510895, + -0.011331288143992424, + 0.023253878578543663, + -0.0021691150031983852, + -0.002283755224198103, + -0.008447179570794106, + -0.00011812852608272806, + 0.0010558974463492632, + 0.004000342916697264, + -0.018270041793584824, + 0.001083049108274281, + -0.013624093495309353, + -0.009116919711232185, + -0.020164623856544495, + 0.0043382300063967705, + -0.013467217795550823, + -0.015711752697825432, + -0.012525959871709347, + 0.005662627052515745, + -0.0037137421313673258, + -0.002256603678688407, + 0.008815235458314419, + -0.00883333571255207, + 0.007155967876315117, + 0.0021208454854786396, + 0.021504106000065804, + -0.0027227068785578012, + -0.0031013216357678175, + 0.001086820149794221, + -0.027103377506136894, + 0.009080717340111732, + -0.004193420987576246, + 0.016363393515348434, + 0.0033215514849871397, + -0.012182039208710194, + -0.03468170389533043, + 0.023398686200380325, + 0.007596427574753761, + 0.000793431478086859, + -0.00011973122309427708, + 0.01623065210878849, + 0.024677831679582596, + 0.01479463092982769, + 0.006437957286834717, + -0.0001635698281461373, + -0.01700296439230442, + -0.010830490849912167, + 0.015916898846626282, + -0.01709950529038906, + -0.00036635869764722884, + -0.016315123066306114, + 0.0026352182030677795, + -0.005499717313796282, + 0.02151617221534252, + -0.012157904915511608, + -2.055228833341971e-5, + -0.009153122082352638, + -0.025510482490062714, + -0.011276984587311745, + 0.01998361200094223, + -0.011246816255152225, + 0.0017165874596685171, + -0.0071921697817742825, + 0.004084814805537462, + -0.021190352737903595, + -0.007336978800594807, + -0.0032491472084075212, + 0.002129895845428109, + 0.014505013823509216, + -0.0018010593485087156, + 0.022216081619262695, + 0.014215395785868168, + -0.029347915202379227, + 0.02208334021270275, + -0.003722792724147439, + 0.01633925922214985, + -0.029734071344137192, + 0.013780970126390457, + 0.006311249919235706, + 0.006030682474374771, + 0.011017534881830215, + 0.011524366214871407, + -0.012574229389429092, + -0.030651193112134933, + -0.0060849860310554504, + -6.481513264589012e-5, + -0.006480193231254816, + 0.006371586583554745, + 0.005436363164335489, + -0.015651416033506393, + 0.012157904915511608, + -0.01137955766171217, + -0.014203328639268875, + 0.011862252838909626, + -0.0003706954012159258, + 0.009122953750193119, + 0.016677144914865494, + -0.0030349509324878454, + 0.0015928966458886862, + -0.010896861553192139, + -0.0018779889214783907, + -0.022312620654702187, + 0.017039166763424873, + 0.0023380585480481386, + 0.02753780409693718, + 0.013177599757909775, + 0.023953787982463837, + 0.00993750337511301, + -0.009883199818432331, + 0.01096323225647211, + 0.027730882167816162, + -0.0047183530405163765, + 0.03369217738509178, + 0.009859064593911171, + -0.013780970126390457, + 0.017956290394067764, + -0.009877165779471397, + -0.007065461948513985, + 0.0015506608178839087, + -0.007777438499033451, + -0.0069327205419540405, + -0.00855578575283289, + 0.0135878911241889, + 0.036033254116773605, + -0.013575823977589607, + 0.013093127869069576, + 0.01941644586622715, + -0.015096316114068031, + 0.0037378768902271986, + 0.025703560560941696, + 0.0070352936163544655, + -0.015579012222588062, + 0.025317402556538582, + 0.003810281166806817, + 0.04520447552204132, + -0.005692795384675264, + -0.0017452476313337684, + -0.00348747824318707, + -0.0222884863615036, + 0.004811875522136688, + 0.002853939775377512, + 0.007608495187014341, + -0.003722792724147439, + 0.016037574037909508, + -0.006238845176994801, + -0.013382745906710625, + -0.014167126268148422, + -0.021226555109024048, + -0.015422135591506958, + -0.018113166093826294, + -0.004775673151016235, + 0.03369217738509178, + -0.002733265981078148, + 0.010209019295871258, + -0.0009193849400617182, + 0.012779375538229942, + 0.0070352936163544655, + 0.013394813053309917, + 0.003692624159157276, + 0.0025929822586476803, + 0.002526611788198352, + 0.009491009637713432, + 0.022686710581183434, + 0.00039784706314094365, + 0.024339944124221802, + 0.009334133006632328, + 0.01443260908126831, + 0.03272678703069687, + -0.026017311960458755, + -0.007451619021594524, + 0.011982927098870277, + 0.004651982337236404, + 0.0014571384526789188, + -0.008471313863992691, + -0.0022113509476184845, + -0.002769468119367957, + 0.0045825946144759655, + -0.037215858697891235, + -0.01322586927562952, + -0.014589485712349415, + -0.010571041144430637, + 0.00012350229371804744, + -0.008754897862672806, + 0.011156310327351093, + -0.012169972062110901, + -0.019247502088546753, + -0.01222427561879158, + -0.021914396435022354, + -0.007650731131434441, + 0.001796534052118659, + 0.00801275297999382, + 0.016834022477269173, + 0.00903848186135292, + 0.02732059173285961, + -0.0003989783872384578, + -0.01624271832406521, + -0.01890961453318596, + -0.0013960471842437983, + 0.01750979572534561, + -0.012900049798190594, + -0.0075843604281544685, + -0.00017997394024860114, + -0.014891170896589756, + -0.002697063609957695, + 0.003372838022187352, + -0.0016939610941335559, + 0.00647415965795517, + 0.008754897862672806, + 0.0067758443765342236, + 0.0011456486536189914, + -0.006208676844835281, + -0.019380243495106697, + -0.0004713827802333981, + 0.01394991297274828, + 0.0005287029198370874, + -0.016158247366547585, + 0.016194449737668037, + -0.008187729865312576, + -0.014106789603829384, + 0.004093864932656288, + 0.019850870594382286, + 0.007650731131434441, + -0.013286205939948559, + 0.008990212343633175, + 0.0008748864056542516, + 0.01283971220254898, + 0.005499717313796282, + -0.005913025699555874, + 0.013467217795550823, + 0.01063137874007225, + -0.01379303727298975, + 0.0069809905253350735, + 0.02826184779405594, + -0.01302072312682867, + 0.006347451824694872, + 0.015784157440066338, + 0.012218241579830647, + -0.0030922710429877043, + -0.001026483136229217, + 0.011699343100190163, + -0.023145271465182304, + -0.021226555109024048, + 0.0177752785384655, + -0.004992886446416378, + 0.004398567136377096, + -0.004118000157177448, + -0.011651073582470417, + -0.018523458391427994, + -0.0015257718041539192, + -0.007934315130114555, + 0.01993534341454506, + 0.029806476086378098, + -0.004489072598516941, + 0.0010076278122141957, + -0.009798727929592133, + 0.01602550595998764, + -0.02255396917462349, + 0.034440357238054276, + -0.017401188611984253, + -0.029516858980059624, + 0.0033818886149674654, + -0.008839369751513004, + 0.010347794741392136, + -0.011904489248991013, + -0.002850922988727689, + -0.011283017694950104, + -0.00226565427146852, + 0.003587034298107028, + -0.0011343355290591717, + 0.010703782550990582, + -0.0024195134174078703, + 0.021914396435022354, + 0.025389807298779488, + 0.033161211758852005, + 0.003173725912347436, + -0.0035236806143075228, + -0.009322065860033035, + 0.03492305427789688, + 0.02526913397014141, + 0.0007036802126094699, + 0.011210613884031773, + 0.005774250254034996, + -0.020273230969905853, + -0.007668832316994667, + -0.006968922913074493, + -0.009086751379072666, + -0.017389122396707535, + -0.01808903180062771, + -0.029830610379576683, + -0.005502733867615461, + 0.008386841975152493, + 0.018994085490703583, + 0.013551688753068447, + 0.021854059770703316, + 0.0021857076790183783, + -0.007620562333613634, + 0.0003354359942022711, + 0.004591645207256079, + 0.006842215079814196, + 0.016761617735028267, + -0.0054454137571156025, + -0.002832822035998106, + 0.003873635083436966, + 0.028213579207658768, + 0.0044046007096767426, + -0.0033909392077475786, + 0.0314476415514946, + 0.0009623750811442733, + -0.0030756783671677113, + -0.006042750086635351, + 0.0017120622796937823, + 0.019187165424227715, + 0.00803688820451498, + -0.0025854401756078005, + -0.008115326054394245, + -0.021130016073584557, + 0.01705123484134674, + -0.015506607480347157, + 0.003644354408606887, + 0.022976327687501907, + -0.004724386613816023, + 0.021033477038145065, + -0.01081238966435194, + 0.011795882135629654, + 0.04291167110204697, + 0.009979738853871822, + 0.00314657436683774, + -0.004848077427595854, + 0.0036141860764473677, + 0.004302027635276318, + 0.013237936422228813, + 0.024122729897499084, + 0.013998182490468025, + 0.0063957213424146175, + -0.004410634282976389, + -0.009611682966351509, + -0.022071272134780884, + 0.0013854881981387734, + -0.014227463863790035, + 0.002686504740267992, + 0.007071495987474918, + 0.01274317316710949, + -0.012755241245031357, + 0.015108383260667324, + 0.020888667553663254, + 0.002766451332718134, + 0.005641508847475052, + -0.008875572122633457, + -0.014263665303587914, + -0.012887982651591301, + -0.015337664633989334, + 0.011228715069591999, + -0.00047553094918839633, + -0.0035116132348775864, + -0.0010423215571790934, + 0.009545312263071537, + -0.020261162891983986, + 0.019126826897263527, + 0.016097910702228546, + 0.020261162891983986, + 0.04134291037917137, + -0.02286772057414055, + -0.006081969011574984, + -0.0008213373366743326, + 0.03627460077404976, + 0.009352234192192554, + 0.00558720575645566, + -0.0029489705339074135, + 0.009460841305553913, + 0.021636847406625748, + -0.016037574037909508, + 0.01425159815698862, + 0.01258629746735096, + 0.023640034720301628, + -0.014613620005548, + -0.028430791571736336, + -0.006576732266694307, + 0.015506607480347157, + -0.004983835853636265, + -0.009153122082352638, + 0.0012670769356191158, + -0.0013575823977589607, + -0.014480878598988056, + -0.009466874413192272, + 0.004256775137037039, + 0.007433517836034298, + 0.005454464349895716, + -0.0034995456226170063, + -0.025800099596381187, + -0.022614305838942528, + 0.006347451824694872, + -0.012151870876550674, + -0.007686933036893606, + -0.023760708048939705, + 0.005831570830196142, + 0.014094722457230091, + 0.006425890140235424, + -0.02589663863182068, + -0.019766399636864662, + 0.009997840039432049, + -0.006437957286834717, + -0.006661204155534506, + 0.005382060073316097, + 0.010130581445991993, + -0.013467217795550823, + -0.025244999676942825, + 0.012109635397791862, + 0.007717101834714413, + 0.011126141995191574, + 0.009672020561993122, + 0.02732059173285961, + -0.010643445886671543, + -0.007439551409333944, + 0.004522257950156927, + 0.009810795076191425, + -0.009080717340111732, + -0.010613277554512024, + 0.002859973581507802, + 0.011077872477471828, + -0.004437786061316729, + 0.030989080667495728, + 0.008465280756354332, + 0.02886521816253662, + -0.014275733381509781, + 0.02476230263710022, + -0.00024323351681232452, + 0.0027558922301977873, + -0.007397315464913845, + 0.002325991168618202, + 0.01627892069518566, + 0.020828330889344215, + 0.0008273710263893008, + 0.004154202062636614, + 0.007922247052192688, + -0.00024172509438358247, + -0.017956290394067764, + -0.004766622558236122, + -0.0034090401604771614, + 0.011856219731271267, + -0.018113166093826294, + 0.009509110823273659, + 0.010136615484952927, + -0.012900049798190594, + 0.02572769485414028, + -0.0018689384451135993, + -0.008145494386553764, + 0.0171598419547081, + -0.025389807298779488, + 0.0034754108637571335, + 0.0035749669186770916, + -0.0005253089475445449, + -0.0007579834782518446, + 0.023772776126861572, + 0.008923841640353203, + -0.011373523622751236, + 0.013684430159628391, + -0.008284269832074642, + 0.000440082949353382, + 0.0006029928335919976, + -0.011192512698471546, + 0.0014224447077140212, + -0.011910523287951946, + 0.02213161066174507, + -0.015216990374028683, + 0.008604055270552635, + -0.007711067795753479, + -0.024533022195100784, + -0.03538161516189575, + -0.0012693395838141441, + 0.015434203669428825, + 0.0015054080868139863, + 0.006534496787935495, + 0.006558631546795368, + 0.009629784151911736, + -0.011626939289271832, + 0.011976893991231918, + -0.0021449802443385124, + 0.006872383877635002, + -0.02744126506149769, + 0.014106789603829384, + -0.006054817698895931, + 0.00855578575283289, + 0.006528462748974562, + -0.0038615677040070295, + 0.002357668010517955, + -0.048824697732925415, + -0.0002639743615873158, + -0.004286943469196558, + -0.01436020527034998, + -0.023808978497982025, + -1.4695358004246373e-5, + 0.014070587232708931, + -0.013382745906710625, + -0.015108383260667324, + -0.0009450282086618245, + 0.0021283875685185194, + -0.01068568229675293, + -0.005925092846155167, + -0.0033336190972477198, + -0.03395766019821167, + 0.00996767170727253, + -0.0167495496571064, + -0.008254100568592548, + -0.004839026834815741, + -0.004869195632636547, + -0.0019338007550686598, + -0.031013214960694313, + 0.007662798278033733, + -0.0024014124646782875, + -0.00960564985871315, + 0.0022641457617282867, + -0.025462212041020393, + 0.00492048216983676, + 0.027417130768299103, + -0.015844494104385376, + -0.007264574058353901, + 0.023048732429742813, + 0.017859751358628273, + -0.0072042373940348625, + 0.00025360393919982016, + -0.012212207540869713, + -0.008356673642992973, + 0.019657792523503304, + 0.0002647285582497716, + -0.011566601693630219, + -0.016834022477269173, + 0.0005158812855370343, + -0.014529148116707802, + 0.022155744954943657, + 0.0006535250577144325, + -0.004679134115576744, + -0.004492089152336121, + 0.0010973791358992457, + 0.02872041054069996, + -0.014758429490029812, + 0.013189666904509068, + 0.011108040809631348, + -0.00016074153245426714, + -0.003421107539907098, + 0.012441487982869148, + -0.0075722928158938885, + 0.007849843241274357, + 0.021383430808782578, + 0.006088003050535917, + -0.0030952878296375275, + 0.009563413448631763, + -0.028285983949899673, + -0.009261729195713997, + -0.000980476150289178, + -0.0017829581629484892, + 0.021286891773343086, + -0.011488163843750954, + -0.01413092389702797, + -0.013455149717628956, + 0.01597723551094532, + 0.0054574813693761826, + -0.00017884263070300221, + 0.005885873921215534, + -0.0010151698952540755, + 0.00524026807397604, + -0.012369084171950817, + -0.0031857932917773724, + 0.0044046007096767426, + -0.003009307663887739, + 0.0018659215420484543, + -0.0033155179116874933, + 0.01884927786886692, + -0.003988275304436684, + -0.012984521687030792, + -0.013153464533388615, + 0.026234526187181473, + 0.0032551807817071676, + 0.008199797943234444, + 0.020719723775982857, + -0.022722912952303886, + 0.019042355939745903, + 0.003725809510797262, + -0.004857128020375967, + -0.014770496636629105, + -0.005710896570235491, + 0.006250912789255381, + -0.014468811452388763, + -0.004763606004416943, + 0.0068663498386740685, + -0.008495449088513851, + 0.02389344945549965, + -0.005937160458415747, + 0.008694561198353767, + -0.029782341793179512, + -0.004428735468536615, + -0.015687618404626846, + 0.0021042528096586466, + -0.02635519951581955, + 0.018583795055747032, + 0.0014563841978088021, + -0.032702650874853134, + -0.004226606339216232, + -0.005744081921875477, + -0.005155796185135841, + -0.009846997447311878, + 0.017956290394067764, + 0.010335727594792843, + 0.016568539664149284, + -0.00718010263517499, + -0.012960386462509632, + -0.01720811054110527, + 0.01750979572534561, + -0.005360941868275404, + -0.027392996475100517, + 0.007222338113933802, + -0.014673957601189613, + 0.008483381941914558, + -0.02301253005862236, + 0.014782563783228397, + -0.032340630888938904, + -0.00768089946359396, + -0.0005260632024146616, + 0.011910523287951946, + 0.0033275852911174297, + -0.00027170503744855523, + 0.02271084487438202, + 0.004247724544256926, + 0.0009095802088268101, + -0.00011765713861677796, + 0.012133769690990448, + 0.01063741184771061, + -0.01670128107070923, + -0.013720632530748844, + 0.014010250568389893, + -0.0018267025006935, + -0.041680797934532166, + -0.00798861775547266, + 0.028961757197976112, + 0.0047726561315357685, + 0.017545998096466064, + 0.0019488849211484194, + 0.0023425838444381952, + 0.00610007019713521, + -0.007367147132754326, + 0.017799412831664085, + -0.001303279073908925, + -0.008905740454792976, + 0.01597723551094532, + -0.007228372152894735, + 0.0055811721831560135, + -0.0035387647803872824, + 0.001377191860228777, + -0.017087437212467194, + 0.023133203387260437, + 0.00885747093707323, + 0.020418038591742516, + 0.014299867674708366, + -0.01966986060142517, + 0.008018787018954754, + -0.019223365932703018, + -0.0007715593092143536, + 0.0025085106026381254, + 0.004525274503976107, + -0.002970088506117463, + -0.00855578575283289, + -0.0067215412855148315, + 0.009895266965031624, + -0.0363711416721344, + 0.015446270816028118, + 0.026982704177498817, + -0.010528805665671825, + -0.004857128020375967, + 0.0029127683956176043, + 0.016616808250546455, + 0.001143386005423963, + 0.011614871211349964, + 0.003879668889567256, + 0.009744424372911453, + -0.016773683950304985, + -0.011844152584671974, + -0.0043925330974161625, + -0.016508201137185097, + -0.013322408311069012, + 0.005035122390836477, + -0.003686590353026986, + 0.01156056858599186, + 0.0022747046314179897, + 0.001986595569178462, + -0.010878760367631912, + -0.006703440099954605, + 0.004863161593675613, + 0.016459932550787926, + 0.010896861553192139, + 0.017063302919268608, + -0.003430158132687211, + -0.011693309992551804, + -0.02388138324022293, + 0.011252849362790585, + -0.0019322922453284264, + -0.010643445886671543, + 0.010836523957550526, + -0.0040787807665765285, + 0.014046452939510345, + 0.0192112997174263, + -0.006109120789915323, + -0.01889754645526409, + 0.0045494092628359795, + 0.007162001449614763, + 0.006522429175674915, + -0.01497564185410738, + 0.0031586417462676764, + -0.004280909895896912, + -0.016520269215106964, + 0.00297310552559793, + -0.02351936139166355, + 0.013032791204750538, + 0.003743910463526845, + -0.027465399354696274, + 0.007626596372574568, + 0.011367489583790302, + -0.007288708817213774, + 0.007536090910434723, + -0.012682836502790451, + 0.0045946622267365456, + 0.0025990160647779703, + 0.015482473187148571, + -0.01725638099014759, + 0.004857128020375967, + -0.005735031329095364, + -0.004688184708356857, + -0.0033275852911174297, + -0.007379214745014906, + 0.00399430887773633, + -0.009889233857393265, + 0.02090073563158512, + -0.01812523417174816, + -0.016556471586227417, + -0.02244536206126213, + 0.004477004986256361, + -0.0039007868617773056, + -0.020007748156785965, + 0.03164071962237358, + -0.01294831931591034, + 0.01927163638174534, + -0.002816229360178113, + -0.005541952792555094, + -0.006027665920555592, + -0.006178508512675762, + -0.0008937417296692729, + -0.0029308695811778307, + 0.013684430159628391, + 0.008471313863992691, + -0.012248409911990166, + -0.002372752409428358, + 0.0008296336745843291, + -0.021335162222385406, + 0.005191998556256294, + -0.016158247366547585, + -0.012815577909350395, + 0.014022317714989185, + 0.014275733381509781, + -0.008724729530513287, + -0.01394991297274828, + 0.009334133006632328, + -0.019645726308226585, + 0.00027736162883229554, + 0.008073089644312859, + -0.009509110823273659, + -0.009563413448631763, + 0.0046308645978569984, + -0.023772776126861572, + -0.0036473714280873537, + -0.004576561041176319, + 0.019790533930063248, + 0.012296679429709911, + 0.005529885645955801, + 0.005149762611836195, + 0.014492946676909924, + 0.02090073563158512, + -0.007976550608873367, + -0.0021253705490380526, + -0.004127050284296274, + -0.011518332175910473, + 0.013708565384149551, + 0.013913711532950401, + 0.03219582140445709, + 0.03231649473309517, + -0.00891177449375391, + -0.017968356609344482, + -0.0083747748285532, + 0.0014616637490689754, + -0.009406537748873234, + 0.00022890347463544458, + 0.0125621622428298, + 0.005418261978775263, + 0.01479463092982769, + -0.010534839704632759, + 0.0018885479075834155, + 0.003964140545576811, + 0.02640346996486187, + -0.013322408311069012, + -0.023821046575903893, + -0.031568314880132675, + 0.02446061745285988, + 0.010196952149271965, + -0.023821046575903893, + -0.01612204499542713, + 0.00697495648637414, + 0.015687618404626846, + -0.006558631546795368, + -0.015941035002470016, + 0.008205831050872803, + 0.01026935689151287, + 0.0037137421313673258, + -0.03258197754621506, + -0.008175662718713284, + 0.002193249762058258, + 0.022771181538701057, + -0.004902380984276533, + -0.005695812404155731, + -0.03335428982973099, + 0.020611118525266647, + 0.016206517815589905, + -0.019175097346305847, + -0.01417919434607029, + -0.005436363164335489, + 0.015253192745149136, + 0.005038138944655657, + 0.013346543535590172, + 0.005538936238735914, + 0.021069679409265518, + 0.010432266630232334, + 0.005385076627135277, + 0.000836421619169414, + 0.007451619021594524, + 0.027658479288220406, + -0.009309998713433743, + -0.016146179288625717, + -0.025003651157021523, + -0.02219194732606411, + -0.02876867912709713, + -0.00208615162409842, + -0.009792693890631199, + 0.03359564021229744, + -0.011210613884031773, + 0.008694561198353767, + -0.002866007387638092, + -0.024979516863822937, + 0.0062810811214149, + 0.011663141660392284, + 0.035936713218688965, + 0.009696154855191708, + -0.0022973311133682728, + -0.015096316114068031, + -0.007481787353754044, + 0.0015348222805187106, + -0.020116353407502174, + -0.004069730173796415, + -0.01012454740703106, + 0.011518332175910473, + 0.0022747046314179897, + 0.006103087216615677, + 0.0003239342477172613, + -0.007813640870153904, + 0.005997497122734785, + 0.012598364613950253, + 0.010583109222352505, + -0.01304485835134983, + 0.0009420113638043404, + 0.004935566335916519, + 0.04711112752556801, + -0.006558631546795368, + 0.017340851947665215, + -0.008543718606233597, + -0.008356673642992973, + -0.018463119864463806, + -0.0003305335994809866, + -0.033016402274370193, + 0.009569447487592697, + 0.007777438499033451, + 0.0050984760746359825, + -0.0296375323086977, + 0.02517259493470192, + -0.011958792805671692, + 0.021081745624542236, + 0.00226716254837811, + 0.010655513033270836, + 0.012218241579830647, + 0.0022641457617282867, + -0.014529148116707802, + 0.0038887192495167255, + 0.0064982944168150425, + -0.03830192610621452, + 0.032799191772937775, + -0.003339652670547366, + -0.02173338644206524, + -0.005173897370696068, + -0.0003335504443384707, + -0.009340167045593262, + -0.016411662101745605, + -0.0027091309893876314, + -0.0111442431807518, + -0.0014284783974289894, + -0.002043915679678321, + 0.02753780409693718, + 0.00748782092705369, + -0.013213802129030228, + 0.022252283990383148, + 0.006202643271535635, + -0.0007964483229443431, + 0.018101098015904427, + -0.0067094736732542515, + 0.004407617729157209, + 0.0010770154185593128, + 0.03180966526269913, + 0.00524026807397604, + -0.0006652153679169714, + 0.00976252555847168, + -0.0040244776755571365, + 0.0063293506391346455, + 0.00643192371353507, + -0.01752186380326748, + 0.01679782010614872, + -0.008356673642992973, + -0.0005520834820345044, + 0.006570698693394661, + -0.009159156121313572, + -0.002529628574848175, + 0.005282504018396139, + 0.014734294265508652, + -0.008966077119112015, + -0.0047304206527769566, + -0.003710725111886859, + 0.01993534341454506, + -0.012815577909350395, + -0.012538027949631214, + 0.019500916823744774, + -0.008610089309513569, + 0.0004374432028271258, + 0.023048732429742813, + -0.0012625516392290592, + 0.03574363514780998, + 0.005695812404155731, + -0.02744126506149769, + -0.009509110823273659, + 0.011910523287951946, + -0.015325596556067467, + 0.0208524651825428, + 0.007433517836034298, + -0.004280909895896912, + -0.0027739934157580137, + 0.013503419235348701, + -0.009780626744031906, + 0.014746361412107944, + -0.00022814926342107356, + 0.007747270166873932, + -0.008447179570794106, + 0.03772268816828728, + -0.005430329591035843, + -0.012133769690990448, + 0.011645040474832058, + -0.023410754278302193, + 0.00014961689885240048, + -0.01792008802294731, + 0.009997840039432049, + 0.0071378666907548904, + 0.0034814446698874235, + 0.010872726328670979, + -0.0010438300669193268, + -0.010534839704632759, + 0.026475872844457626, + -0.01859586127102375, + -0.023084934800863266, + -0.008947976864874363, + -0.007566259242594242, + -0.02640346996486187, + -0.00716803502291441, + -0.007825708016753197, + -0.0005328510887920856, + -0.015349731780588627, + -0.007077529560774565, + -0.001976036699488759, + -0.006133255548775196, + -0.0054122284054756165, + -0.0067215412855148315, + 0.006842215079814196, + 0.008471313863992691, + 0.000645228719804436, + 0.014770496636629105, + -0.009032447822391987, + -0.006468126084655523, + -0.003626253455877304, + -0.037939902395009995, + -0.005107526667416096, + -0.006486226804554462, + -0.0012844237498939037, + 0.010082311928272247, + -0.0058255367912352085, + 0.007747270166873932, + 0.00027170503744855523, + 0.00524026807397604, + 0.03765028342604637, + 0.00973235722631216, + -0.018270041793584824, + -0.01306899357587099, + 0.008809201419353485, + 0.026186255738139153, + -0.0122544439509511, + 0.0006037470884621143, + 0.01664094254374504, + -0.016134113073349, + -0.002923327498137951, + 0.004703268874436617, + -0.0005645279888994992, + -0.009973705746233463, + -0.0015416102251037955, + -0.013394813053309917, + -0.013141397386789322, + -0.007391281891614199, + 0.015627281740307808, + 0.002140454947948456, + -0.0008537684916518629, + -0.0001118119980674237, + -0.0016592673491686583, + -0.015747955068945885, + 0.00122031569480896, + 0.0022581119555979967, + -0.02327801287174225, + 0.002042407402768731, + 0.03972587734460831, + 0.01588069647550583, + -0.0066008674912154675, + 0.03164071962237358, + -0.015627281740307808, + -0.009141054935753345, + 0.013105195015668869, + -0.011071838438510895, + 0.011554534547030926, + -0.00572598073631525, + -0.0013462691567838192, + -0.006081969011574984, + -0.018921682611107826, + 0.0017482644179835916, + -0.02239709347486496, + 0.006353485397994518, + 0.014094722457230091, + -0.0240985956043005, + 0.005852688569575548, + 0.013213802129030228, + 0.019030287861824036, + 0.005843637976795435, + 0.006516395602375269, + -0.002882600063458085, + -0.003502562642097473, + 0.007711067795753479, + -0.03738480061292648, + 0.0067215412855148315, + 0.0018840227276086807, + -0.01163297239691019, + -0.017437390983104706, + 0.0038615677040070295, + 0.027972230687737465, + -0.002683487953618169, + -0.003620219649747014, + 0.0019896123558282852, + 0.012091534212231636, + 0.02753780409693718, + -0.012393218465149403, + -0.032268226146698, + -0.0024044292513281107, + -0.005146745592355728, + -0.01413092389702797, + 0.008591988123953342, + 0.012875914573669434, + 0.014698091894388199, + 0.007409383077174425, + -0.007873977534472942, + -0.015132518485188484, + -0.007149933837354183, + 0.0051316614262759686, + -0.012851780280470848, + -0.007053394801914692, + 0.0038223485462367535, + -0.006968922913074493, + -0.0048541114665567875, + -0.005146745592355728, + -0.030796002596616745, + -0.009979738853871822, + 0.008242033421993256, + 0.007976550608873367, + 0.005071324296295643, + 0.002341075334697962, + -0.009478941559791565, + 0.03118215873837471, + -0.013274138793349266, + -0.010860659182071686, + 0.0037348601035773754, + 0.025341538712382317, + 0.032268226146698, + -0.004232640378177166, + -0.008459246717393398, + -0.006133255548775196, + -0.04947633668780327, + 0.0029987485613673925, + 0.0022686710581183434, + -0.015518675558269024, + 0.005336807109415531, + -0.0060487836599349976, + -0.013382745906710625, + 0.0029142769053578377, + 0.01725638099014759, + 0.008236000314354897, + 0.004504156764596701, + -0.009189324453473091, + -0.02368830516934395, + 0.0025386791676282883, + 0.017642537131905556, + 0.004069730173796415, + 0.0016140146180987358, + 0.005315689370036125, + -0.0052674198523163795, + 0.006030682474374771, + -0.012218241579830647, + -0.012803510762751102, + -0.010106447152793407, + 0.013105195015668869, + -0.017558066174387932, + 0.03765028342604637, + -0.03888116031885147, + -0.0188010074198246, + -0.015735888853669167, + -0.001496357494033873, + 0.021069679409265518, + 0.0012082483153790236, + 0.001903632190078497, + -0.007771404925733805, + -0.006570698693394661, + -0.0040455954149365425, + -0.01927163638174534, + 0.009973705746233463, + -0.015084248967468739, + -0.007433517836034298, + 0.004175320267677307, + 0.015434203669428825, + 0.025800099596381187, + -0.005484632682055235, + -0.003617202863097191, + -0.0010144157567992806, + 0.01993534341454506, + -0.025051919743418694, + -0.00854975264519453, + -0.0050773583352565765, + -0.005312672350555658, + 0.010239188559353352, + -0.014034384861588478, + -0.003047018311917782, + 0.013696498237550259, + -0.0222884863615036, + -0.0017542981076985598, + -0.009997840039432049, + 0.006178508512675762, + -0.0004559214285109192, + 0.009207425639033318, + 0.004745504818856716, + 0.02322974242269993, + 0.035984985530376434, + -0.02337455190718174, + 0.006383654195815325, + -0.01454121619462967, + -0.004193420987576246, + -0.018837209790945053, + -0.018378648906946182, + 0.014673957601189613, + -0.0233142152428627, + -0.010166783817112446, + -0.02157650887966156, + 0.011566601693630219, + -0.0061845420859754086, + -0.001589879859238863, + -0.0006814309163019061, + 0.00865232478827238, + 0.002595999278128147, + 0.0006671008886769414, + 0.008127393200993538, + -0.0022188930306583643, + -0.011373523622751236, + 0.011083905585110188, + -0.006956855766475201, + -0.011771747842431068, + 0.011476096697151661, + -0.003231046022847295, + -0.004323145840317011, + -0.005508767440915108, + 0.009931469336152077, + 0.01292418409138918, + 0.0025009685195982456, + 0.005680728238075972, + -0.004419684875756502, + 0.0004943862440995872, + 0.016580605879426003, + 0.0012044772738590837, + -0.005885873921215534, + -0.011391624808311462, + -0.022578103467822075, + -0.015579012222588062, + -9.323951235273853e-5, + -0.00978666078299284, + -0.011626939289271832, + 0.006854282692074776, + -0.009780626744031906, + 0.02584836818277836, + -0.0008417011122219265, + 0.007071495987474918, + -0.0037891631945967674, + 0.0072585404850542545, + 0.018197637051343918, + -0.01445674430578947, + -0.002893158933147788, + -0.012453556060791016, + 0.008531651459634304, + 0.0021857076790183783, + -0.012887982651591301, + -0.006335384678095579, + -0.001553677604533732, + 0.015035979449748993, + -0.018535524606704712, + -0.006564665120095015, + 0.004286943469196558, + 0.0032883661333471537, + 0.008519583381712437, + 0.0031918270979076624, + 0.0010574058396741748, + 0.005155796185135841, + 0.02625866048038006, + 0.005176914390176535, + 0.03682970255613327, + 0.00349351204931736, + -0.0021781655959784985, + -0.007602461613714695, + 0.007421450223773718, + -0.015144585631787777, + -0.019838804379105568, + -0.00540619483217597, + -0.004036544822156429, + -0.0018221772043034434, + 0.0012949827359989285, + 0.002796619664877653, + 0.012085500173270702, + 0.02460542693734169, + -0.028141174465417862, + 0.022626373916864395, + -0.004980818834155798, + -0.0008839369984343648, + -0.00942463893443346, + 0.0052885375916957855, + -0.019645726308226585, + -0.010028008371591568, + -0.035116132348775864, + 0.014601552858948708, + -0.002182690892368555, + -0.015398001298308372, + 0.009376369416713715, + 0.007922247052192688, + -0.02917897142469883, + 0.008694561198353767, + -0.015796225517988205, + -0.01711157150566578, + 0.004600695800036192, + -0.00436538178473711, + -0.007632629945874214, + 0.0011946725426241755, + 0.029034161940217018, + 0.016206517815589905, + -0.001876480528153479, + 0.004470971412956715, + -0.018885480239987373, + 0.006570698693394661, + -0.004099898971617222, + 0.011421793140470982, + -0.003882685676217079, + 0.003973191138356924, + 0.01705123484134674, + -0.0043714153580367565, + -0.007246473338454962, + 0.01936817541718483, + 0.02425547130405903, + 0.013503419235348701, + -0.021648913621902466, + 0.03424727916717529, + -0.016616808250546455, + -0.004027494229376316, + -0.023953787982463837, + 0.00041707948548719287, + -0.009316031821072102, + 0.004760588984936476, + -0.007934315130114555, + -0.0030243918299674988, + -0.006588799878954887, + 0.005554020404815674, + -0.0037077083252370358, + -0.004808858502656221 + ], + "12269a25-c023-442d-bd65-064bfae06e67": [ + -0.018315397202968597, + -0.022106671705842018, + -0.019720077514648438, + 0.03537612780928612, + -0.004718635696917772, + 0.010139611549675465, + -0.005997167434543371, + 0.02003374509513378, + -0.0025331981014460325, + 0.0640970766544342, + 0.00741889514029026, + 0.008223517797887325, + 0.016951629891991615, + -0.02108384482562542, + 0.00651198998093605, + 0.023020396009087563, + -0.028148161247372627, + 0.03390325978398323, + -0.012103436514735222, + 0.004196994472295046, + 0.034394215792417526, + -0.01827448420226574, + -0.04593168944120407, + -0.02791632153093815, + -0.004302686545997858, + -0.026729842647910118, + -0.018547238782048225, + -0.006948395632207394, + -0.06240599974989891, + -0.005881247576326132, + -0.003682172391563654, + 0.00396856339648366, + -0.01103287935256958, + -0.0060176239348948, + 0.01767442747950554, + -0.032375842332839966, + -0.0240704957395792, + -0.0038560526445508003, + -0.03087569586932659, + 0.016910716891288757, + -0.004046980291604996, + 0.01643339917063713, + 0.017101645469665527, + -0.0030054026283323765, + -0.03071204386651516, + 0.02488875761628151, + -0.0628969594836235, + -0.026948045939207077, + 0.02625252492725849, + -0.008271249942481518, + 0.007521177642047405, + 0.01295579131692648, + -0.015519673936069012, + 0.028639117255806923, + 0.034039635211229324, + -0.02528424933552742, + 0.026197973638772964, + 0.040640272200107574, + 0.012826233170926571, + -0.01967916451394558, + 0.03286679834127426, + -0.04677722603082657, + 0.023034032434225082, + -0.021124757826328278, + 0.009750938042998314, + 0.010623749345541, + -0.044458821415901184, + 0.013324008323252201, + 0.03450331836938858, + 0.011994334869086742, + 0.025775205343961716, + 0.03406691178679466, + -0.00546188885346055, + 0.01847904920578003, + 0.02284310571849346, + 0.0027445820160210133, + 0.0688975378870964, + 0.014319558627903461, + 0.029948335140943527, + -0.02428869903087616, + 0.006484714336693287, + -0.00861219223588705, + -0.02611614763736725, + 0.011667030863463879, + 0.04601351544260979, + 0.003651487408205867, + -0.031830333173274994, + -0.05678727850317955, + -0.016965268179774284, + -0.0013407539809122682, + -0.01012597419321537, + 0.024165960028767586, + 0.011428372003138065, + 0.026961684226989746, + 0.009055416099727154, + -0.010248713195323944, + 0.02806633524596691, + -0.0066620041616261005, + 0.008162148296833038, + -0.02711169794201851, + 0.002004738198593259, + 0.007896213792264462, + 0.05092307925224304, + -0.004050389397889376, + -0.0010032214922830462, + -0.026838945224881172, + 0.017197107896208763, + -0.006061946507543325, + 0.008741749450564384, + 0.012989885173738003, + -0.010398726910352707, + -0.02711169794201851, + 0.011312451213598251, + 0.01052146591246128, + -0.02467055432498455, + -0.008694018237292767, + -0.03256676718592644, + -0.01253302302211523, + -0.021711178123950958, + -0.007971220649778843, + 0.04017658904194832, + 0.015083268284797668, + 0.014210457913577557, + 0.042222242802381516, + -0.02445235103368759, + 0.03011198714375496, + -0.027057146653532982, + 0.023934120312333107, + 0.01946096308529377, + 0.04287685081362724, + -0.029948335140943527, + 0.004224269650876522, + 0.0031110947020351887, + -0.009941864758729935, + -0.0068017905578017235, + 0.0208929181098938, + 0.008905401453375816, + 0.07446170598268509, + -0.04293140023946762, + -0.027848131954669952, + -0.02068835310637951, + 0.012273907661437988, + -0.06082402914762497, + 0.005032301880419254, + -0.024002308025956154, + -0.02787540853023529, + -0.029157349839806557, + 0.05512348189949989, + -0.0325394943356514, + 0.013576305471360683, + -0.004677722696214914, + 0.02525697462260723, + -0.02528424933552742, + 0.007637097965925932, + 0.04415879026055336, + -0.005731232929974794, + -0.004647037945687771, + 0.026838945224881172, + 0.0004119004006497562, + 0.02866639383137226, + 0.015001442283391953, + -0.05275052785873413, + 0.007957583293318748, + 0.030575668439269066, + 0.035621605813503265, + -0.021806642413139343, + 0.037421781569719315, + 0.030412014573812485, + -0.004046980291604996, + 0.02085200510919094, + 0.005005026701837778, + -0.04928655922412872, + 0.03654896840453148, + -0.004248135723173618, + 0.038540069013834, + -0.02128841169178486, + 0.0522322952747345, + 0.04634081944823265, + -0.003999248147010803, + -0.04014931619167328, + -0.011189712211489677, + -0.016719790175557137, + 0.05640542507171631, + -0.01704709418118, + 0.009594104252755642, + 0.04535890743136406, + 0.015806065872311592, + -0.0033361162059009075, + -0.030630217865109444, + 0.015383297577500343, + -0.007930307649075985, + -0.00557439960539341, + 0.006266511511057615, + -0.017769889906048775, + -0.02147933840751648, + -0.02446598932147026, + -0.02308858372271061, + -0.005734642501920462, + 0.021411150693893433, + 0.004469748120754957, + -0.04999571666121483, + -0.022393062710762024, + -0.005230048205703497, + 0.019911006093025208, + -0.0016041315393522382, + 0.034230563789606094, + -0.006055127829313278, + -0.004285639617592096, + 0.05452342331409454, + -0.004121987149119377, + 0.02188846841454506, + -0.01665160059928894, + 0.031421203166246414, + -0.004936838522553444, + 0.006235826760530472, + 0.03537612780928612, + -0.006147182080894709, + 0.012198900803923607, + 0.006423344835639, + -0.01054192241281271, + 0.025243336334824562, + -0.029811957851052284, + -0.019951919093728065, + -0.030766595155000687, + -0.038649171590805054, + 0.0004926610272377729, + -0.05441432446241379, + 0.013624037615954876, + -0.011987516656517982, + 0.011298813857138157, + 0.01748349890112877, + -0.005850562825798988, + 0.01948823779821396, + -0.00446633854880929, + 0.007793931290507317, + 0.0333850271999836, + 0.02368864230811596, + 0.005383472424000502, + 0.002751400927081704, + 0.0009793555364012718, + 0.005325512029230595, + 0.022365787997841835, + -0.02686621993780136, + -0.008646286092698574, + -0.024520540609955788, + 0.029566479846835136, + 0.0031605311669409275, + 0.04134942963719368, + 0.008421264588832855, + 0.02023831009864807, + 0.023565903306007385, + 0.020551975816488266, + 0.006385841406881809, + 0.031230276450514793, + -0.0026218430139124393, + 0.06360611319541931, + 0.03172123059630394, + -0.02349771372973919, + -0.031148450449109077, + -0.038212765008211136, + -0.006205142010003328, + 0.030466565862298012, + 0.0047254543751478195, + -0.009266800247132778, + 0.008284887298941612, + -0.028229987248778343, + 0.03753088042140007, + 0.04197676479816437, + 0.007459808140993118, + 0.041867662221193314, + 0.040612995624542236, + -0.04233134165406227, + -0.011169255711138248, + 0.02428869903087616, + -0.015696963295340538, + 0.001247847219929099, + 0.01948823779821396, + -0.023388613015413284, + -0.007323431316763163, + 0.013671768829226494, + -0.024015946313738823, + -0.035812534391880035, + 0.01003732904791832, + -0.018751803785562515, + -0.015028717927634716, + 0.0216702651232481, + -0.020824730396270752, + -0.029975609853863716, + -0.004067436791956425, + 0.004677722696214914, + 0.023129496723413467, + -0.023402251303195953, + -0.010207800194621086, + 0.01363767497241497, + -0.0017933542840182781, + -0.013699044473469257, + -0.02929372526705265, + -0.01193978451192379, + 0.014196819625794888, + -0.0011430076556280255, + -0.014237732626497746, + 0.041431255638599396, + -0.02888459526002407, + -0.0240704957395792, + -0.014865065924823284, + -0.013583124615252018, + 0.0361398383975029, + 0.026948045939207077, + -0.0534324124455452, + 0.00962819904088974, + 0.004387922119349241, + 0.005438022781163454, + -0.0231158584356308, + -0.023224961012601852, + 0.015369660221040249, + 0.030412014573812485, + -0.016542499884963036, + 0.013167175464332104, + -0.01963825151324272, + -0.01948823779821396, + -0.005386881530284882, + -0.011182893998920918, + -0.0633879154920578, + 0.021424787119030952, + 0.03354867920279503, + -0.02970285713672638, + 0.03128482773900032, + 0.0005727823590859771, + -0.025025133043527603, + 0.0008779253112152219, + -0.03417601436376572, + -0.0023780695628374815, + 0.02645708993077278, + -0.00045814065379090607, + -0.05924206227064133, + -0.053459685295820236, + -0.01865633949637413, + -0.03848551958799362, + -0.016378847882151604, + -0.03551250696182251, + -0.012914878316223621, + -0.012819414958357811, + -0.005966482684016228, + -0.009184974245727062, + -0.019774628803133965, + -0.03330320119857788, + -0.003426465904340148, + 0.032784972339868546, + 0.016583412885665894, + -0.01786535419523716, + 0.0008357337792403996, + -0.0017447700956836343, + 0.04246772080659866, + -0.003757179481908679, + 0.039849285036325455, + -0.025952495634555817, + -0.027616292238235474, + 0.0016237356467172503, + 0.047022704035043716, + 0.0026133195497095585, + -0.015342384576797485, + -0.04227679222822189, + 0.02913007326424122, + -0.00861901044845581, + -0.014142269268631935, + 0.017006181180477142, + -0.006648366805166006, + -0.0008161296136677265, + -0.04841374605894089, + 0.005949435755610466, + 0.0007769212825223804, + 0.0024138684384524822, + -0.03725812956690788, + -0.030193813145160675, + -0.0056289504282176495, + -0.03731267899274826, + 0.0349397249519825, + -0.012710313312709332, + -0.0071529606357216835, + 0.0003690695739351213, + -0.006065356079488993, + 0.008353075943887234, + -0.01746986247599125, + 0.006038080435246229, + 0.03112117387354374, + 0.0016424874775111675, + 0.012096617370843887, + -0.020388323813676834, + -0.017947180196642876, + 0.02747991494834423, + -0.016187921166419983, + -0.01988372951745987, + 0.010057785548269749, + 0.050077542662620544, + 0.0260479599237442, + -0.02068835310637951, + 0.011223806999623775, + 0.005434613674879074, + 0.000738565344363451, + 0.009648655541241169, + -0.02025194838643074, + -0.008891764096915722, + -0.011680669151246548, + -0.015028717927634716, + -0.011762495152652264, + -0.037449054419994354, + -0.016965268179774284, + 0.007548453286290169, + 0.0024718286003917456, + -0.012014791369438171, + 0.017142558470368385, + -0.019351860508322716, + -0.027957234531641006, + 0.015083268284797668, + 0.023975033313035965, + 0.038021836429834366, + -0.02611614763736725, + 0.04680450260639191, + -0.0101464306935668, + 0.008734931237995625, + 0.023565903306007385, + 0.038621895015239716, + 0.03815821558237076, + 0.002705373801290989, + -0.027439001947641373, + -0.0031127992551773787, + 0.004660675302147865, + -0.03630349040031433, + 0.000356071162968874, + 0.014783239923417568, + 0.018956368789076805, + 0.03886737301945686, + -0.026020683348178864, + 0.01584697887301445, + -0.037449054419994354, + -0.031993985176086426, + 0.008455358445644379, + 0.013078530319035053, + -0.025202423334121704, + 0.011223806999623775, + 0.006505170837044716, + 0.02465691603720188, + -0.011898871511220932, + -0.009184974245727062, + -0.03725812956690788, + 0.005417566280812025, + -0.042494997382164, + 0.011394277215003967, + -0.02284310571849346, + -0.02607523463666439, + 0.001861542696133256, + 0.0014191705267876387, + -0.08722656965255737, + -0.016610687598586082, + 0.015887891873717308, + -0.0200473815202713, + 0.040612995624542236, + 0.001719199470244348, + 0.02728898823261261, + -0.04276774823665619, + 0.028420915827155113, + -0.001483097206801176, + 0.026429815217852592, + -0.010112335905432701, + 0.03605801239609718, + -0.022815831005573273, + -0.0125466613098979, + 0.0036651252303272486, + -0.012464835308492184, + 0.025434264913201332, + -0.01243755966424942, + -0.00106544338632375, + -0.017728976905345917, + 0.04170401021838188, + 0.028202712535858154, + -0.017783528193831444, + 0.0020950878970324993, + -0.008257612586021423, + 0.01003732904791832, + -0.003975382074713707, + -0.008680379949510098, + 0.023552265018224716, + 0.009062235243618488, + 0.03245766833424568, + 0.010623749345541, + -0.0017899448284879327, + -0.0013842240441590548, + -0.004691360052675009, + 0.006119906902313232, + 0.029211899265646935, + -0.021833917126059532, + 0.0033548681531101465, + -0.003927650395780802, + 0.02913007326424122, + -0.001091866404749453, + 0.0023900025989860296, + 0.02244761399924755, + -0.03450331836938858, + 0.00179505895357579, + 0.016528861597180367, + -0.018574513494968414, + -0.0042924582958221436, + 0.005523258354514837, + 0.021711178123950958, + -0.02529788762331009, + 0.026988958939909935, + 0.0022570351138710976, + 0.008516727946698666, + -0.015696963295340538, + -7.197070226538926e-5, + -0.03935832902789116, + 0.0067608775570988655, + -0.019201846793293953, + 0.008898583240807056, + -0.019406411796808243, + 0.0022144175600260496, + -0.02366136573255062, + -0.0025536546017974615, + 0.029811957851052284, + 0.015765152871608734, + 0.01155111100524664, + -0.01665160059928894, + -0.024179598316550255, + -0.020156484097242355, + -0.02287038043141365, + 0.013071711175143719, + -0.021943019703030586, + -0.022638540714979172, + 0.0019535969477146864, + -0.031393926590681076, + -0.02525697462260723, + 0.023334061726927757, + -0.007930307649075985, + 0.012089799158275127, + 0.0016484539955854416, + 0.004595896694809198, + 0.0030309732537716627, + 0.02306130900979042, + 0.014960529282689095, + -0.028748219832777977, + -0.03556705638766289, + 0.04759548604488373, + 0.012423922307789326, + 0.010030509904026985, + -0.01463322527706623, + -0.0036617156583815813, + 0.022529440000653267, + 0.012178444303572178, + -0.013937704265117645, + 0.004217450972646475, + -0.04950476065278053, + 0.003109389916062355, + -0.03949470818042755, + -0.003879918484017253, + -0.002725830301642418, + -0.04110395163297653, + 0.006900663487613201, + 0.011707943864166737, + -0.013767233118414879, + -0.03474879637360573, + -0.017960818484425545, + 0.00992822740226984, + 0.004977751523256302, + 0.022938570007681847, + -0.01063056755810976, + -0.007357525639235973, + -0.0501866452395916, + 0.03174850717186928, + 0.012444378808140755, + 0.011285176500678062, + 0.02426142431795597, + 0.012860327959060669, + 0.023129496723413467, + 0.014483210630714893, + -0.02506604604423046, + 0.01273076981306076, + -0.013194451108574867, + 0.002164980862289667, + -0.026852581650018692, + 0.004483385477215052, + 0.013385377824306488, + 0.013903609476983547, + 0.007098409812897444, + -0.015219645574688911, + 0.014415022917091846, + -0.009505459107458591, + -0.007098409812897444, + 0.011360183358192444, + -0.0007048973347991705, + 0.024970583617687225, + 0.013992254622280598, + 0.024547815322875977, + -0.023347700014710426, + -0.012042067013680935, + 0.009157698601484299, + 0.026743480935692787, + 0.0031127992551773787, + -0.0005787488189525902, + 0.016583412885665894, + -0.005059577524662018, + 0.015001442283391953, + 0.02288401871919632, + -0.010882864706218243, + -0.013760413974523544, + -0.02367500402033329, + 0.024820568040013313, + -0.008959952741861343, + 0.008966770954430103, + -0.023334061726927757, + 0.006893844809383154, + 0.011380639858543873, + -0.02527061104774475, + 0.043667834252119064, + -0.025406988337635994, + 0.011244263499975204, + -0.0017490318277850747, + 0.035648882389068604, + 0.03387598320841789, + 0.02246125042438507, + -0.003394076367840171, + 0.030630217865109444, + 0.006522218231111765, + 0.05116855725646019, + -0.005230048205703497, + -0.013180812820792198, + 0.04991389065980911, + -0.03153030574321747, + -0.014469573274254799, + -0.026020683348178864, + -0.008468995802104473, + -0.02246125042438507, + -0.026538915932178497, + -0.008680379949510098, + 0.007016583811491728, + 0.008796300739049911, + -0.0210702084004879, + 0.01583334058523178, + 0.011489741504192352, + -0.008578097447752953, + -0.0218475554138422, + 0.01603790558874607, + -0.023211322724819183, + 0.03496699780225754, + 0.05179588869214058, + -0.013071711175143719, + 0.022365787997841835, + -0.0072347866371273994, + -0.007357525639235973, + 0.015178732573986053, + 0.026525277644395828, + 0.02847546525299549, + -0.010350995697081089, + -0.0042344979010522366, + 0.01586061529815197, + -0.025147872045636177, + -0.0033020221162587404, + -0.006852931808680296, + -0.0029713085386902094, + 0.011817045509815216, + -0.0037742266431450844, + 0.0011762494686990976, + -0.04134942963719368, + 0.01787899248301983, + 0.014087717980146408, + 0.02085200510919094, + 0.018997281789779663, + -0.0025809300132095814, + 0.018315397202968597, + -0.009791851043701172, + 0.02648436464369297, + 0.0029150531627237797, + -0.028966421261429787, + 0.0020678124856203794, + 0.0012512566754594445, + 0.015137819573283195, + -0.00881675723940134, + 0.034394215792417526, + 0.00691771088168025, + -0.014728689566254616, + -0.004224269650876522, + -0.01786535419523716, + -0.05253232270479202, + -0.03335775434970856, + 0.04601351544260979, + -0.03210308775305748, + 0.002766743302345276, + -0.019774628803133965, + 0.007337069138884544, + -0.001673172228038311, + -0.01474232692271471, + 0.002171799773350358, + 0.005840334575623274, + -0.0048072803765535355, + 0.018151745200157166, + -0.008966770954430103, + 0.005373244173824787, + 0.012860327959060669, + -0.0038765091449022293, + 0.028530016541481018, + 0.025447901338338852, + -0.024956945329904556, + -0.021397512406110764, + -0.0381854884326458, + -0.01603790558874607, + 0.009594104252755642, + 0.005141403526067734, + -0.0022553305607289076, + -0.005761917680501938, + 0.007337069138884544, + -0.0025604735128581524, + -0.014401384629309177, + -0.01606518216431141, + 0.007841663435101509, + -0.009191793389618397, + 0.011278357356786728, + -0.010269169695675373, + -0.03316682577133179, + 0.009457727894186974, + -0.03788546100258827, + 0.021342961117625237, + -0.028366364538669586, + 0.011271538212895393, + -0.025338800624012947, + -0.018819991499185562, + 0.009239524602890015, + -0.004084483720362186, + -0.007200692314654589, + -0.027384452521800995, + 0.0071529606357216835, + -0.008584916591644287, + 0.03526702895760536, + 0.005894884932786226, + 0.02992105856537819, + 0.011319270357489586, + -0.014469573274254799, + -0.01648794859647751, + 0.00718023581430316, + 0.02506604604423046, + 0.013480842113494873, + 0.03316682577133179, + 0.026538915932178497, + 0.01789262890815735, + -0.010814676061272621, + -0.05624177306890488, + 0.014469573274254799, + 0.004831146448850632, + 0.024602366611361504, + -0.002473533386364579, + -0.009089510887861252, + -5.119455454405397e-5, + -0.0033412303309887648, + -0.024329612031579018, + 0.010555560700595379, + 0.0005335740279406309, + 0.008018952794373035, + 0.0033071362413465977, + 0.0007790522067807615, + -0.003452036529779434, + -0.0017507364973425865, + 0.04265864938497543, + -0.011251081712543964, + 0.010453278198838234, + 0.003232128918170929, + -0.002541721798479557, + 0.025802481919527054, + 0.017906267195940018, + -0.008168967440724373, + -0.01562877558171749, + 0.011428372003138065, + 0.008066684938967228, + 0.03472151979804039, + 0.013501298613846302, + 0.003141779452562332, + 0.02109748311340809, + -0.0011259604943916202, + -0.04189493879675865, + -0.0016535681206732988, + -0.0393856056034565, + 0.01245801616460085, + 0.00044194591464474797, + -0.03333047777414322, + -0.04233134165406227, + 0.02304767072200775, + 0.009184974245727062, + 0.014701413922011852, + -0.022038482129573822, + 0.035812534391880035, + -0.012655762955546379, + -0.019229121506214142, + -0.0036208026576787233, + 0.0020149664487689734, + -0.019297311082482338, + -0.02266581542789936, + 0.020961105823516846, + 0.03196670860052109, + 0.012178444303572178, + 0.008012134581804276, + 0.02326587401330471, + -0.012894421815872192, + -2.9352964702411555e-5, + 0.014892341569066048, + -0.011598842218518257, + 0.051686789840459824, + 0.044458821415901184, + -0.0035560238175094128, + -0.008305343799293041, + -0.0010279397247359157, + -0.018315397202968597, + -0.027548104524612427, + 0.02546153962612152, + 0.010528285056352615, + 0.04699542745947838, + 0.009089510887861252, + 0.0016808434156700969, + -0.03570343181490898, + -0.010603292845189571, + 0.022638540714979172, + 0.021152034401893616, + 0.037012651562690735, + 0.014128630980849266, + 0.009512278251349926, + -0.020224671810865402, + 0.009805488400161266, + 0.01012597419321537, + 0.03875827416777611, + -0.01767442747950554, + -0.009846401400864124, + -0.016297021880745888, + -0.00022864414495415986, + 0.0022706729359924793, + -0.019406411796808243, + -0.009437271393835545, + -0.04156763479113579, + 0.017292572185397148, + 0.01283987145870924, + 0.004053798969835043, + -0.015683326870203018, + -0.005860791075974703, + -0.040994852781295776, + 0.034639693796634674, + 0.0016433398704975843, + -0.06600634753704071, + 0.01704709418118, + -0.015315108932554722, + -0.0007394176791422069, + 0.009355445392429829, + 0.010903321206569672, + -0.016160644590854645, + 0.008250793442130089, + 0.05755098909139633, + 0.030766595155000687, + 0.01103969756513834, + 0.03431238979101181, + 0.025147872045636177, + -0.00021319522056728601, + 0.014183182269334793, + -0.004572030622512102, + 0.02027922309935093, + -0.007534815464168787, + 0.011428372003138065, + 0.030248362571001053, + -0.02430233731865883, + -0.006280149333178997, + -0.006573359481990337, + -0.010487372055649757, + 0.013494479469954967, + 0.004531117621809244, + 0.011748856864869595, + 0.0015879367711022496, + 0.02929372526705265, + 0.005305055528879166, + 0.006208551581948996, + 0.013617218472063541, + 0.023920482024550438, + 0.006457439158111811, + -0.027193523943424225, + -0.014674138277769089, + -0.0022911294363439083, + -0.01232163980603218, + -0.003675353480502963, + -0.005884656682610512, + -0.004957295022904873, + 0.02666165493428707, + 0.006597225554287434, + -0.01322854496538639, + 0.000104519996966701, + 0.018983643501996994, + -0.002224645810201764, + 0.01888817921280861, + 0.0007884280639700592, + -0.0031946254894137383, + 0.01153747271746397, + 0.004237907472997904, + -0.023634091019630432, + -0.01845177449285984, + 0.0168698038905859, + 0.008578097447752953, + -1.2319188499532174e-5, + 0.019174572080373764, + 0.028448190540075302, + 0.008380351588129997, + -0.01963825151324272, + -0.011257900856435299, + -0.014865065924823284, + 0.023947756737470627, + -0.02910279855132103, + 0.00476295780390501, + 0.00038057638448663056, + 0.02986650913953781, + -0.0025979771744459867, + 0.006617682054638863, + 0.004780005197972059, + -0.007868938148021698, + -0.03916740417480469, + 0.06567904353141785, + -0.006508580408990383, + 0.003951516468077898, + -0.025625191628932953, + 0.003104275790974498, + -0.03491244837641716, + 0.001336492132395506, + -0.013869515620172024, + 0.023429526016116142, + 0.002611614763736725, + -0.038403693586587906, + 0.019147295504808426, + -0.018342673778533936, + -0.011210168711841106, + -0.0433405302464962, + -0.001552137895487249, + -0.017210746183991432, + -0.015301471576094627, + -0.01607881858944893, + -0.017797166481614113, + -0.0004952180897817016, + -0.03837641701102257, + -0.020020106807351112, + 0.007439351640641689, + -0.014769602566957474, + 0.00954637210816145, + 0.01963825151324272, + -0.02008829452097416, + 0.024029582738876343, + 0.010385089553892612, + -0.028857320547103882, + -0.015315108932554722, + 0.009062235243618488, + 0.01748349890112877, + 0.004541345871984959, + 0.02486148104071617, + 0.0006149738910607994, + 0.03431238979101181, + -0.010269169695675373, + 0.0031554170418530703, + 0.029020972549915314, + 0.005796012002974749, + -0.012512566521763802, + -0.007064315490424633, + -0.009532734751701355, + -0.020415600389242172, + -0.006433573085814714, + -0.011994334869086742, + 0.02186119370162487, + -0.005478935781866312, + -0.02707078494131565, + 0.04115850478410721, + -0.010091879405081272, + -0.00037333136424422264, + -0.021029295399785042, + -0.02225668542087078, + -0.022338511422276497, + -0.013699044473469257, + -0.02010193280875683, + 0.015765152871608734, + -0.019270034506917, + -0.030657494440674782, + -0.008380351588129997, + 0.007793931290507317, + -0.023811381310224533, + -0.031584855169057846, + 0.038594622164964676, + -0.011367002502083778, + -0.0009529325761832297, + -0.033630505204200745, + -0.005086852703243494, + 0.007943945936858654, + -0.0005578661221079528, + -0.011101067066192627, + -0.016133369877934456, + -0.0052198199555277824, + 0.030766595155000687, + -0.01883362978696823, + 0.011107886210083961, + 0.034421492367982864, + 0.005465298425406218, + -0.007262061815708876, + -0.0029099390376359224, + -0.03810366243124008, + -0.003088933415710926, + -0.016215195879340172, + -0.0184926874935627, + -0.019951919093728065, + -0.0280936099588871, + 0.037012651562690735, + 0.01404680497944355, + 0.007773474790155888, + 0.007323431316763163, + -0.01905183121562004, + -0.0033088410273194313, + 0.023361338302493095, + -0.011155618354678154, + -0.022011207416653633, + -0.016610687598586082, + 0.007841663435101509, + -0.022720366716384888, + 0.03867644816637039, + 0.044022414833307266, + -0.009955503046512604, + -0.034639693796634674, + 0.006597225554287434, + -0.003818548982962966, + 0.007425714284181595, + 0.024534177035093307, + -0.007957583293318748, + 0.0016902193892747164, + 0.022583989426493645, + 0.0019996240735054016, + -0.006982489489018917, + 0.02027922309935093, + -0.03191215917468071, + -0.027002597227692604, + -0.00782120693475008, + -0.010610111057758331, + -0.008237156085669994, + -0.0035832992289215326, + -0.008796300739049911, + -0.029811957851052284, + -0.07833480834960938, + -0.017360759899020195, + -0.011864777654409409, + -0.004179947543889284, + -0.008959952741861343, + -0.0062494645826518536, + 0.011448828503489494, + 0.019733715802431107, + 0.0015606614761054516, + 0.014646862633526325, + 0.018697252497076988, + -0.0038287772331386805, + -0.002260444685816765, + 0.02409777231514454, + 0.015546949580311775, + -0.01112152449786663, + -0.011673850007355213, + -0.00951909739524126, + -0.004360646475106478, + -0.02168390341103077, + -0.02044287510216236, + 0.011401096358895302, + 0.038540069013834, + -0.003777635982260108, + -0.004585668444633484, + 0.023784104734659195, + 0.011803408153355122, + -0.0006055980338715017, + -0.010405546054244041, + -0.006481305230408907, + 0.01602426916360855, + -0.011271538212895393, + -0.008400808088481426, + -0.013180812820792198, + -0.012301183305680752, + 0.023374974727630615, + 0.00813487358391285, + -0.023211322724819183, + 0.02951192855834961, + 0.02146570011973381, + 0.013664950616657734, + -0.011789769865572453, + 0.0032065582927316427, + -0.011803408153355122, + 0.017006181180477142, + 0.026388902217149734, + 0.022406700998544693, + -0.039412882179021835, + 0.011932965368032455, + -0.0004964966210536659, + 0.01225345116108656, + -0.008496271446347237, + 0.0008438311633653939, + -0.004486795049160719, + -0.001334787462837994, + 0.009873677045106888, + 0.014374109916388988, + 0.01647431217133999, + -0.007630279287695885, + 0.007337069138884544, + 0.04655902460217476, + 0.018588151782751083, + 0.0018308578291907907, + -0.012539842166006565, + -0.014265008270740509, + 0.015342384576797485, + 0.010610111057758331, + -0.007043858990073204, + 0.0036446687299758196, + 0.01663796417415142, + 0.003903784556314349, + -0.02430233731865883, + -0.014019530266523361, + 0.012376190163195133, + 0.01385587826371193, + -0.004820918198674917, + 0.022161221131682396, + 0.02630707435309887, + -0.010494191199541092, + -0.010916958563029766, + 0.00029001367511227727, + -0.004633400123566389, + -0.0059187510050833225, + 0.012226175516843796, + -0.026838945224881172, + -0.01821993477642536, + 0.0004964966210536659, + 0.00455839280039072, + -0.013583124615252018, + -0.017210746183991432, + 0.00692111998796463, + 0.013808146119117737, + 0.027984509244561195, + 0.014442297630012035, + -0.030793869867920876, + 0.05798739567399025, + -0.03011198714375496, + 0.009655473753809929, + -0.0196246150881052, + 0.005090262275189161, + -0.01114198099821806, + -0.013671768829226494, + 0.002436029724776745, + -0.023988669738173485, + -0.016569774597883224, + -0.012505748309195042, + -0.012403465807437897, + -0.004742501303553581, + -0.0070711346343159676, + -0.002490580314770341, + -0.0034418082796037197, + 0.026566190645098686, + -0.011701125651597977, + 0.005707366857677698, + -0.0022314644884318113, + 0.00703022163361311, + -0.002025194698944688, + -0.00812123529613018, + -0.008598553948104382, + 0.009791851043701172, + 0.017715340480208397, + 0.016147008165717125, + -0.014210457913577557, + -0.02428869903087616, + 0.01433319691568613, + 0.0280936099588871, + -0.017947180196642876, + -0.033194102346897125, + -0.002456486225128174, + 0.0006925381603650749, + -0.01663796417415142, + -0.010085061192512512, + -0.015737876296043396, + -0.0011788065312430263, + -0.004278820473700762, + 0.0015146342338994145, + 0.01802900619804859, + -0.011871595866978168, + 0.027016233652830124, + -0.02445235103368759, + -0.01526055857539177, + 0.0007816092693246901, + 0.013126262463629246, + 0.009416814893484116, + -0.022161221131682396, + 0.025979770347476006, + -0.022215772420167923, + -0.003100866451859474, + -0.0016279974952340126, + 0.003305431455373764, + -0.013071711175143719, + 0.044049691408872604, + 0.029020972549915314, + 0.03526702895760536, + -0.00922588724642992, + -0.035594332963228226, + 0.020701991394162178, + 0.0004751877277158201, + -0.007807569112628698, + 0.002690031426027417, + 0.00572100467979908, + -0.002071221824735403, + -0.0003541533660609275, + 0.016515225172042847, + 0.010582835413515568, + -0.026961684226989746, + -0.004773186054080725, + -0.0031963300425559282, + -0.02630707435309887, + 0.0022297599352896214, + 0.022624902427196503, + 0.008482634089887142, + 0.007207511458545923, + -0.004619762301445007, + 0.0194473247975111, + -0.002016671234741807, + -0.021165670827031136, + 0.0029150531627237797, + 0.01456503663212061, + -0.003900374984368682, + -0.006280149333178997, + 0.030248362571001053, + 0.0010969805298373103, + 0.0034145328681916, + 0.0059596640057861805, + 0.00953955389559269, + 0.0063687944784760475, + 0.012294364161789417, + -0.018970005214214325, + -0.006566540338099003, + 0.027234436944127083, + -0.014346834272146225, + -0.0006286115967668593, + 0.01415590662509203, + -0.000992140849120915, + 0.001827448490075767, + 0.002084859646856785, + 0.0258706696331501, + -0.023374974727630615, + -0.028011783957481384, + -0.004595896694809198, + -0.018110832199454308, + 0.01603790558874607, + 0.001754145952872932, + 0.004111758898943663, + -0.007391619961708784, + -0.03935832902789116, + 0.05515075847506523, + 0.021138396114110947, + -0.021588439121842384, + -0.01264212466776371, + 0.0010211209300905466, + -0.0010560674127191305, + -0.026920771226286888, + 0.0014276941074058414, + 0.0029849461279809475, + -0.008605373091995716, + -0.016187921166419983, + 0.003109389916062355, + -0.0344487689435482, + 0.002787199802696705, + -0.018601788207888603, + 0.04674994945526123, + -0.007371163461357355, + 0.00516526959836483, + 0.007541634142398834, + 0.03594890981912613, + -0.017006181180477142, + -0.004295867867767811, + 0.0028587975539267063, + -0.0023337472230196, + -0.026607103645801544, + -0.0015598090831190348, + -0.008905401453375816, + -0.020947469398379326, + 0.0033957811538130045, + 0.028393639251589775, + -0.007296156138181686, + 0.016515225172042847, + 0.004687950946390629, + -0.014865065924823284, + -0.008646286092698574, + 7.623247074661776e-5, + 0.002945737913250923, + 0.032184913754463196, + -0.0003170759591739625, + -0.011578385718166828, + -0.02408413402736187, + 0.006808609236031771, + 0.0032150819897651672, + 0.010323720052838326, + -0.006031261757016182, + -0.006604044232517481, + -0.01064420584589243, + -0.01535602193325758, + -0.03155757859349251, + 0.03856734558939934, + -0.0004849898105021566, + 0.0032696325797587633, + 0.020224671810865402, + -0.030384739860892296, + 0.002456486225128174, + 0.020920192822813988, + -0.027957234531641006, + -0.0076643736101686954, + -0.0035048825666308403, + 0.015083268284797668, + 0.032212190330028534, + 0.046859052032232285, + -0.008359895087778568, + 0.011571567505598068, + 0.017728976905345917, + 0.004970932379364967, + 0.0030258591286838055, + -0.0038560526445508003, + 0.00370944757014513, + -0.008203061297535896, + 0.003059953451156616, + 0.005935797933489084, + 0.019120020791888237, + -0.03774908557534218, + -6.69631190248765e-5, + -0.0008186866762116551, + 0.01666523888707161, + 0.010412365198135376, + 0.004217450972646475, + -0.007841663435101509, + -0.045658934861421585, + 0.021329324692487717, + -0.026170698925852776, + 0.029621031135320663, + 0.021779367700219154, + 0.004381102975457907, + 0.013651312328875065, + 0.004507251549512148, + 0.00811441708356142, + -0.014946891926229, + 0.030412014573812485, + 0.013896791264414787, + 0.0035321577452123165, + 0.01806991919875145, + 0.015315108932554722, + -0.015274195931851864, + 0.009907770901918411, + 0.014510486274957657, + -0.00015800524852238595, + 0.02327951230108738, + -0.0194473247975111, + 0.006907482631504536, + 0.005069805774837732, + 0.010732850059866905, + -0.0027138972654938698, + -0.032403115183115005, + -0.013794508762657642, + 0.0005634064436890185, + 0.017306210473179817, + -0.0008459620294161141, + -0.0013884857762604952, + 0.035185202956199646, + -0.00703022163361311, + -0.006586997304111719, + -0.004715226124972105, + -0.0005553090595640242, + 0.0076643736101686954, + -0.010991966351866722, + -0.008850851096212864, + -0.011503378860652447, + 0.004831146448850632, + 0.004616353195160627, + 0.0011285175569355488, + -0.008516727946698666, + 0.0006554607534781098, + -0.0004709259665105492, + -0.020579252392053604, + -0.003024154342710972, + -0.011012422852218151, + 0.0013987140264362097, + -0.004752729553729296, + -0.015969717875123024, + -0.003634440479800105, + 0.026347989216446877, + 0.02728898823261261, + -0.019229121506214142, + 0.0194473247975111, + -0.0009520801831968129, + 0.026170698925852776, + 0.014401384629309177, + 0.03286679834127426, + -0.0010151544120162725, + -0.010978328064084053, + 0.00992822740226984, + -0.003244061954319477, + -0.015410573221743107, + -0.023552265018224716, + -0.00283322692848742, + 0.04500432685017586, + 0.009096329100430012, + -0.0016271451022475958, + -0.03589436039328575, + -0.0484955720603466, + -0.015887891873717308, + 0.002086564199998975, + 0.028202712535858154, + 0.028420915827155113, + -0.005345968529582024, + 0.0013578010257333517, + -0.008053047582507133, + -0.020906556397676468, + 0.01322854496538639, + 0.009307713247835636, + -0.0055471244268119335, + -0.009716843254864216, + -0.003542385995388031, + -0.012308001518249512, + 0.012983066961169243, + 0.013644494116306305, + -0.011510198004543781, + 0.002632071264088154, + 0.0029559661634266376, + -0.023361338302493095, + 0.017142558470368385, + 0.007616641465574503, + -0.0035867085680365562, + -0.017306210473179817, + 0.0030872286297380924, + -0.008168967440724373, + -0.01033053919672966, + 0.02128841169178486, + -0.011135161854326725, + -0.005363015923649073, + -0.013726320117712021, + -0.02625252492725849, + -0.002238283399492502, + 0.01703345589339733, + 0.010664662346243858, + 0.02306130900979042, + -0.0068427035585045815, + -0.009900951758027077, + -0.047868240624666214, + -0.0316939577460289, + -0.016897078603506088, + 0.035185202956199646, + 0.0023286330979317427, + 0.018519962206482887, + -0.015396934933960438, + 0.014292283914983273, + 0.02449326403439045, + 0.03155757859349251, + -0.007507540285587311, + -0.016719790175557137, + 0.016147008165717125, + 0.0064301639795303345, + 0.012880784459412098, + -0.016392486169934273, + -0.038840100169181824, + -0.005963073577731848, + -0.0038526433054357767, + 0.0013782575260847807, + 0.012914878316223621, + -0.026825306937098503, + -0.008264430798590183, + 0.01273076981306076, + -0.018001731485128403, + 0.005888066254556179, + -0.021602077409625053, + -0.005884656682610512, + -0.022938570007681847, + 0.01821993477642536, + -0.009014503099024296, + -0.022133946418762207, + -0.005932388827204704, + 0.006246055010706186, + 0.02123386040329933, + 0.0034418082796037197, + 0.02689349465072155, + -0.0033838481176644564, + -0.011414733715355396, + 0.005993758328258991, + -0.010855589061975479, + -0.016187921166419983, + 0.0010569198057055473, + -0.006184685509651899, + -0.0036208026576787233, + 0.004677722696214914, + 0.010119155049324036, + -0.02567974291741848, + 0.01456503663212061, + -0.02626616135239601, + 0.01987009309232235, + 0.011728400364518166, + 0.01726529747247696, + -0.009055416099727154, + 0.01433319691568613, + 0.011387459002435207, + 0.016160644590854645, + -0.0009606037638150156, + -0.0022553305607289076, + 0.010119155049324036, + -0.014128630980849266, + 0.02225668542087078, + -0.00042319411295466125, + 0.033412303775548935, + -0.004534527193754911, + 0.010951053351163864, + -0.014919616281986237, + 0.0031673500780016184, + 0.03624894097447395, + -0.014196819625794888, + -0.03273041918873787, + -0.0009103147895075381, + 0.03657624498009682, + -0.015219645574688911, + -0.012608030810952187, + 0.00115323590580374, + 0.019174572080373764, + -0.0373399555683136, + -0.0014686071081086993, + 0.012335277162492275, + 0.011428372003138065, + -0.021997569128870964, + 0.021315686404705048, + 0.0016910716658458114, + 0.041867662221193314, + 0.030739320442080498, + 0.0071529606357216835, + -0.04156763479113579, + 0.015792427584528923, + -0.014769602566957474, + -0.0036242122296243906, + 0.032021261751651764, + -0.033412303775548935, + 0.003675353480502963, + 0.00913724210113287, + -0.019392773509025574, + 0.015015080571174622, + -0.02188846841454506, + -0.027370814234018326, + -0.012846689671278, + -0.00580964982509613, + 0.01144200935959816, + 0.005932388827204704, + -0.009266800247132778, + -0.009382720105350018, + 0.0037537701427936554, + 0.004531117621809244, + -0.013869515620172024, + -0.013439929112792015, + 0.006563131231814623, + -0.0007470888667739928, + -0.00391401257365942, + -0.02047014981508255, + 0.022324874997138977, + 0.002988355467095971, + -0.006242645904421806, + -0.013678587973117828, + -0.008039409294724464, + 0.027138972654938698, + -0.03267586976289749, + -0.021561164408922195, + 0.0034844260662794113, + -0.003784454893320799, + -0.010398726910352707, + -0.006948395632207394, + -0.02488875761628151, + -0.004074255470186472, + 0.005693729501217604, + 0.008994046598672867, + 0.010364633053541183, + -0.007950764149427414, + -0.009873677045106888, + -0.002468419261276722, + 0.005799421109259129, + 0.005035711452364922, + 0.0007330250227823853, + 0.017551688477396965, + -0.0004871207056567073, + 0.01821993477642536, + 0.0014387747505679727, + 0.004575440194457769, + -0.0024854661896824837, + 0.0003057822468690574, + -0.001112322905100882, + -0.018970005214214325, + -0.0008148510823957622, + 0.006563131231814623, + 0.07648008316755295, + -0.017988093197345734, + 0.0013032503193244338, + -0.006638138554990292, + 0.012417103163897991, + -0.010057785548269749, + 0.005049349274486303, + 0.01648794859647751, + -0.0036651252303272486, + -0.005816468503326178, + -0.0015921986196190119, + -0.03030291385948658, + -0.0009546372457407415, + -0.01193978451192379, + -0.021997569128870964, + -0.011169255711138248, + 0.012089799158275127, + 0.007657554466277361, + 0.0115579292178154, + 0.003467378905043006, + 0.032212190330028534, + 0.011101067066192627, + -2.3493026674259454e-5, + 0.028584567829966545, + -0.0012998408637940884, + 0.011564748361706734, + -0.0088235754519701, + 0.015901528298854828, + 0.003157121827825904, + 0.029239175841212273, + 0.00814169179648161, + 0.012853508815169334, + -0.024534177035093307, + -0.009437271393835545, + 0.00951909739524126, + 0.024397801607847214, + -0.01123744435608387, + -0.0004696474352385849, + 0.0029934695921838284, + 0.02366136573255062, + -0.015424210578203201, + -0.018179021775722504, + 0.004681131802499294, + 0.00022757869737688452, + -0.007950764149427414, + 0.011912508867681026, + -0.0010756716364994645, + 0.006361975334584713, + -0.02443871460855007, + 0.003508291905745864, + -0.024616003036499023, + -0.00791667029261589, + 0.005328921601176262, + -0.0037742266431450844, + 0.01723802089691162, + -0.007412076462060213, + 0.0009196907049044967, + -0.02649800293147564, + -0.008475814945995808, + 0.008046228438615799, + -0.01943368650972843, + -0.006355156656354666, + -0.02206575870513916, + -0.031012073159217834, + 0.006341518834233284, + -0.015069630928337574, + -0.0072347866371273994, + -0.002400230849161744, + 0.012273907661437988, + 0.029239175841212273, + 0.0003780192928388715, + 0.022024845704436302, + -0.0011361888609826565, + -0.019760990515351295, + 0.007746199611574411, + 0.01605154387652874, + 0.026429815217852592, + -0.004214041400700808, + -0.010712393559515476, + 0.007705286610871553, + 0.011796589009463787, + -0.00016365210467483848, + -0.0021888469345867634, + -0.023184048011898994, + 0.0068222470581531525, + -0.02288401871919632, + 0.011114705353975296, + -0.0025451311375945807, + 0.007725743111222982, + -0.005397109780460596, + -0.03436694294214249, + 0.001039020367898047, + 0.001112322905100882, + 0.01073966920375824, + -0.005032301880419254, + -0.0032219006679952145, + -0.008005315437912941, + -0.004340189974755049, + 0.009096329100430012, + -0.007262061815708876, + 0.004428835120052099, + -0.017101645469665527, + 0.0013816669816151261, + 0.013699044473469257, + 0.0042549544014036655, + -0.005141403526067734, + 0.00854400359094143, + 0.012355733662843704, + -0.028748219832777977, + -0.01628338359296322, + -0.0029031201265752316, + -0.013392196968197823, + -0.012683037668466568, + -9.0163148342981e-6, + -0.009975959546864033, + 0.017797166481614113, + 0.0021172489505261183, + 0.017292572185397148, + -0.007064315490424633, + -0.021206585690379143, + -0.004589077550917864, + -0.0007381391478702426, + 0.011210168711841106, + 0.0052368673495948315, + -0.00943045224994421, + -0.014905978925526142, + 0.0028434551786631346, + -0.0021308867726475, + -0.021997569128870964, + 0.005322102922946215, + 0.01566968858242035, + -0.007262061815708876, + 0.011019241064786911, + 0.0037401323206722736, + -0.013208088465034962, + -0.014687775634229183, + 0.01133290771394968, + -0.00627333065494895, + 0.02165662869811058, + -0.0208929181098938, + 0.002025194698944688, + 0.026334350928664207, + -0.011189712211489677, + 0.00475954869762063, + 0.017006181180477142, + 0.010971509851515293, + -0.004947066772729158, + -0.0027735622134059668, + 0.030139261856675148, + 0.019310947507619858, + 0.001424284651875496, + -0.004336780868470669, + 0.00601421482861042, + -0.004087893292307854, + 0.015192369930446148, + 0.009887314401566982, + -0.006358566228300333, + -0.0024138684384524822, + 0.006034671328961849, + -0.01647431217133999, + -0.008584916591644287, + 0.0019945099484175444, + -0.008182604797184467, + -0.006689279805868864, + -0.017824441194534302, + 0.014933254569768906, + 0.01474232692271471, + 0.012260270304977894, + 0.017551688477396965, + 0.00405720854178071, + -0.01245801616460085, + 0.02768447995185852, + -0.0009384425356984138, + -0.03226673975586891, + -0.000253149337368086, + 0.016528861597180367, + -0.00017313454009126872, + -0.003675353480502963, + -0.01553331222385168, + 0.0133581031113863, + 0.007262061815708876, + -0.006488123908638954, + 0.006709736306220293, + -0.013719500973820686, + 0.018192658200860023, + -0.004834556020796299, + 0.008257612586021423, + -0.01303079817444086, + 0.004592487122863531, + -0.017742615193128586, + -0.003862871555611491, + 0.021547526121139526, + 0.0033565727062523365, + -0.006996127311140299, + 0.0007781998137943447, + -0.006573359481990337, + -0.0032542902044951916, + 0.025638829916715622, + -0.01153747271746397, + 0.007166598457843065, + -0.01842449977993965, + 1.0201620170846581e-5, + 0.004425425548106432, + -0.02304767072200775, + -0.007739380467683077, + -0.013705863617360592, + -0.018397223204374313, + -0.02689349465072155, + -0.0023968215100467205, + 0.0025655876379460096, + -0.06022397428750992, + -0.009560010395944118, + 0.024165960028767586, + 0.00592556968331337, + -0.008468995802104473, + 0.02285674400627613, + -0.013017160817980766, + 0.006201732903718948, + 0.007991677150130272, + 0.007057496812194586, + 0.002178618684411049, + 0.0186699777841568, + 0.0010986851993948221, + -0.017797166481614113, + 0.006644957233220339, + 0.019310947507619858, + 0.01024189405143261, + 0.0009614560985937715, + 0.023415887728333473, + -0.0049061537720263, + 0.033821433782577515, + -0.011782951653003693, + -0.02389320731163025, + -0.0030991616658866405, + 0.009478184394538403, + 0.02307494543492794, + 0.022747641429305077, + -0.007221148815006018, + 0.010282807052135468, + -0.023374974727630615, + 0.0017004476394504309, + 0.013753595761954784, + -0.01322854496538639, + 0.007909851148724556, + 0.004210632294416428, + 0.011571567505598068, + -0.003083819290623069, + -0.01114879921078682, + -0.006904073059558868, + -2.6409677957417443e-5, + 0.00647789565846324, + -0.002928690752014518, + -0.025966133922338486, + 0.01566968858242035, + 0.019324585795402527, + 0.023006757721304893, + 0.007371163461357355, + -0.017415311187505722, + 0.008148510940372944, + -0.01243755966424942, + -0.004006067290902138, + 0.006767696235328913, + 0.008550822734832764, + 0.0032082630787044764, + -0.0011438600486144423, + 0.015192369930446148, + -0.010030509904026985, + 0.0020473559852689505, + -0.015124181285500526, + 0.000978503143414855, + 4.325700137997046e-5, + 0.009280437603592873, + 0.005744870752096176, + 0.00820988044142723, + -0.0011643165489658713, + 0.00046240241499617696, + 0.020401962101459503, + 0.021806642413139343, + -0.0004223417490720749, + -0.004780005197972059, + -0.0190927442163229, + -0.003061658004298806, + -0.015710601583123207, + -0.0194473247975111, + 0.019774628803133965, + -0.01907910779118538, + -0.002374660223722458, + 0.001100389868952334, + -0.0021019065752625465, + -0.006869978737086058, + -0.0017319847829639912, + -0.012171625159680843, + 0.002354203723371029, + -0.020592888817191124, + -0.013221725821495056, + 0.015615138225257397, + -0.0024172780103981495, + 0.0033889622427523136, + 0.007800749968737364, + -0.016160644590854645, + -0.006604044232517481, + -0.004367465618997812, + -0.014005891978740692, + -0.016978904604911804, + 0.003879918484017253, + 0.004336780868470669, + 0.03248494118452072, + -0.008168967440724373, + 0.011469285003840923, + -0.00557439960539341, + 0.01603790558874607, + 0.0004883992369286716, + 0.01064420584589243, + -0.005755099002271891, + 0.004752729553729296, + -0.02025194838643074, + -0.001301545649766922, + 0.029757406562566757, + 0.008973590098321438, + -0.012314820662140846, + -0.0036583063192665577, + 0.022365787997841835, + 0.015956079587340355, + 0.002751400927081704, + -5.227331598689489e-7, + 0.00813487358391285, + 0.011898871511220932, + 0.013603581115603447, + -0.001004073885269463, + 0.0031861017923802137, + 0.005103900097310543, + -0.017510775476694107, + -0.006593815982341766, + -0.00014596573601011187, + 0.0028826636262238026, + 8.39569402160123e-5, + -0.013726320117712021, + -0.017197107896208763, + -0.02510695904493332, + 0.004016295541077852, + -0.010228256694972515, + -0.0024598955642431974, + 0.011912508867681026, + -0.014401384629309177, + -0.008468995802104473, + 0.037421781569719315, + -0.000768823956605047, + -0.026416176930069923, + -0.004135624971240759, + 0.027984509244561195, + -0.0002427080034976825, + -0.009307713247835636, + -0.005083443596959114, + -0.0274935532361269, + 0.0029440331272780895, + -0.015437847934663296, + -0.018015367910265923, + -0.001841086195781827, + -0.026129785925149918, + -0.012062523514032364, + -0.0005949435872025788, + -0.0011413029860705137, + -0.01556058693677187, + -0.010112335905432701, + -0.009600923396646976, + -0.003958335146307945, + 0.007316612638533115, + 0.008919039741158485, + -0.005363015923649073, + 0.03188488259911537, + -0.0017984684091061354, + -0.008155330084264278, + -0.003648078069090843, + -0.012833052314817905, + -0.0002985372266266495, + -0.006982489489018917, + 0.015301471576094627, + 0.019351860508322716, + -0.016337934881448746, + 0.03368505835533142, + 0.018915455788373947, + 0.011653393507003784, + -0.011455646716058254, + 0.004391331225633621, + 0.012410284020006657, + 0.007753018289804459, + 0.013303551822900772, + 0.027370814234018326, + 0.0013595056952908635, + -0.006607453804463148, + -0.0009461137233301997, + 0.030739320442080498, + 0.009750938042998314, + -0.0020183760207146406, + -0.010371452197432518, + -0.01768806390464306, + -0.005243686027824879, + 0.013528573326766491, + -0.001786535489372909, + -0.0007445318042300642, + 0.0166925135999918, + -0.0028144752141088247, + 0.00014894898049533367, + 0.0056289504282176495, + 0.014019530266523361, + -0.018738165497779846, + 0.0034844260662794113, + 0.03488517180085182, + 0.013699044473469257, + 0.006324471905827522, + 0.015287834219634533, + 0.02648436464369297, + -0.012703494168817997, + 0.0200473815202713, + 0.012260270304977894, + -0.008196243084967136, + 0.026620741933584213, + 0.018547238782048225, + -0.0015777085209265351, + 0.005605084355920553, + 0.016787977889180183, + -0.005993758328258991, + 8.720654295757413e-5, + -0.005543714854866266, + -0.00501866452395916, + 0.015424210578203201, + 0.019951919093728065, + -0.009471365250647068, + -0.009232706390321255, + 0.020401962101459503, + -0.003971972968429327, + -0.01433319691568613, + 0.016978904604911804, + -0.010780582204461098, + -0.0017149376217275858, + -0.004152671899646521, + 0.0186699777841568, + -0.015424210578203201, + -0.002710487926378846, + 0.015751514583826065, + -0.006839293986558914, + -0.004418606869876385, + 0.010487372055649757, + 0.006893844809383154, + -0.0218475554138422, + 0.011769313365221024, + -0.009757756255567074, + 0.006938167382031679, + 0.005860791075974703, + -0.00852354709059, + -3.862232347273675e-7, + 0.012669400312006474, + -0.0007419747416861355, + 0.0056289504282176495, + -0.010691937059164047, + -0.006474486086517572, + -0.00811441708356142, + 0.019379137083888054, + 0.011094248853623867, + -0.003648078069090843, + -0.01887454278767109, + -0.0038424150552600622, + 0.0010560674127191305, + 0.0013134785695001483, + 0.011810226365923882, + 0.0023917073849588633, + -0.0001809122768463567, + 0.0098123075440526, + 0.0016970381839200854, + 0.006119906902313232, + 0.0019246168667450547, + 0.0036378498189151287, + 0.01644703559577465, + -0.0016851052641868591, + -0.010453278198838234, + 0.011101067066192627, + -0.017538050189614296, + 0.016610687598586082, + 0.01826084777712822, + -0.018506325781345367, + -0.012880784459412098, + 0.008857670240104198, + -0.007439351640641689, + 0.011517016217112541, + 0.0006985046784393489, + 0.02366136573255062, + -0.01283987145870924, + 0.007609822787344456, + 0.0029099390376359224, + 0.010855589061975479, + 0.012621668167412281, + 0.01526055857539177, + -0.010882864706218243, + 0.01083513256162405, + -0.009600923396646976, + -0.006211961153894663, + 0.008714474737644196, + 0.030030161142349243, + 0.0067199645563960075, + 0.00045686212251894176, + 0.0013731434009969234, + 0.002183732809498906, + 0.011087429709732533, + 0.014510486274957657, + 0.007459808140993118, + -0.008332619443535805, + -0.002921871840953827, + 0.007398438639938831, + 0.011114705353975296, + -0.0008983818697743118, + 0.00952591560781002, + -0.00953955389559269, + -0.0018734756158664823, + 0.02446598932147026, + -0.0117352195084095, + -0.0015163390198722482, + 0.008762205950915813, + 0.01703345589339733, + 0.016297021880745888, + -0.008905401453375816, + -0.019583702087402344, + -0.012478472664952278, + -0.00601421482861042, + 0.0017882401589304209, + 0.00391401257365942, + 0.018997281789779663, + 0.00861219223588705, + 0.02348407730460167, + -0.007964402437210083, + 0.00040252451435662806, + -0.03090297244489193, + 0.010248713195323944, + 0.0026286619249731302, + -0.008646286092698574, + -0.0004178668896201998, + 0.017101645469665527, + 0.0036787628196179867, + -0.012983066961169243, + 0.03510337695479393, + -0.0036992193199694157, + 0.0001410646946169436, + 0.004104940220713615, + 0.018806353211402893, + -0.007855300791561604, + -0.0025314935483038425, + -0.026729842647910118, + -0.02806633524596691, + 0.0005143960588611662, + -0.0004594191850628704, + 0.00861901044845581, + -0.0011097658425569534, + 0.011189712211489677, + 0.02866639383137226, + 0.02109748311340809, + 0.0172243844717741, + -0.02246125042438507, + -0.007616641465574503, + 0.003671943908557296, + 0.00531528377905488, + 0.011012422852218151, + 0.003143484005704522, + -0.002867321250960231, + -0.020579252392053604, + 0.009560010395944118, + -0.005731232929974794, + 0.0009077577269636095, + 0.005768736358731985, + 0.012901240959763527, + -0.003438398940488696, + 0.017210746183991432, + -0.031175725162029266, + 0.006767696235328913, + -0.013562668114900589, + -0.006757467985153198, + -0.011053335852921009, + 0.01252620480954647, + -0.01515145692974329, + -0.0120352478697896, + 0.008919039741158485, + -0.018397223204374313, + 0.002874139929190278, + 0.0007031926070339978, + -0.012608030810952187, + -0.002787199802696705, + -0.005328921601176262, + 0.0005987791810184717, + -0.0032747467048466206, + -0.00612672558054328, + 0.0172243844717741, + -0.014933254569768906, + 0.030248362571001053, + 0.013774052262306213, + -0.01786535419523716, + 0.013085349462926388, + 0.004306096117943525, + -0.0053118746727705, + -0.014114993624389172, + -0.026948045939207077, + -0.013576305471360683, + -0.010930596850812435, + 0.00141661346424371, + 0.014905978925526142, + 0.011264720000326633, + 0.00981912575662136, + -0.009505459107458591, + 0.0117352195084095, + 0.0014754260191693902, + -0.017524411901831627, + 3.473345350357704e-5, + -0.009798669256269932, + -0.007896213792264462, + -0.004268592223525047, + -0.009716843254864216, + 0.011926147155463696, + -0.007050678133964539, + -0.024425076320767403, + 0.021779367700219154, + 0.0002467566810082644, + 0.021752091124653816, + 0.0007735118851996958, + -0.017183471471071243, + -0.010153248906135559, + 0.018015367910265923, + -0.010596473701298237, + 0.01884726621210575, + -0.0028639116790145636, + 0.004019704647362232, + 0.009219068102538586, + 0.01583334058523178, + 0.009089510887861252, + -0.004186766222119331, + 0.012314820662140846, + 0.013678587973117828, + -0.0034776071552187204, + 0.0009231001604348421, + -0.026129785925149918, + -0.0032542902044951916, + -0.014033167622983456, + 0.013167175464332104, + -0.0015973127447068691, + 0.009409995749592781, + -0.0062903775833547115, + -0.02651164121925831, + 0.0072143301367759705, + -0.0006064503686502576, + -0.026007046923041344, + 0.009975959546864033, + -0.0038355961441993713, + -0.01868361420929432, + -0.011380639858543873, + -0.009000865742564201, + -0.005230048205703497, + -0.014142269268631935, + 0.00014830971485935152, + -0.00040934333810582757, + 0.01205570437014103, + 0.017728976905345917, + -0.012417103163897991, + 0.0004756139242090285, + -0.03106662444770336, + 0.00015885761240497231, + -0.021588439121842384, + 0.005857381504029036, + 0.013821783475577831, + 0.008666742593050003, + -0.02025194838643074, + 0.011469285003840923, + 0.015792427584528923, + -0.002981536788865924, + 0.0020678124856203794, + -0.004306096117943525, + 0.02145206369459629, + -0.006167638581246138, + -0.005956254433840513, + -0.012157987803220749, + -0.019815541803836823, + -0.005015254952013493, + -0.01535602193325758, + 0.005963073577731848, + -0.05984211713075638, + 0.005359606351703405, + 0.005363015923649073, + -0.023565903306007385, + -0.013767233118414879, + -1.361103932140395e-5, + 0.025134235620498657, + -0.004381102975457907, + 0.0027769715525209904, + -0.017497137188911438, + 0.00014223669131752104, + -0.006539265159517527, + -0.015969717875123024, + 0.009212249889969826, + -0.023934120312333107, + 0.01967916451394558, + 0.01013279240578413, + -0.010262350551784039, + -0.0034452176187187433, + 0.0024854661896824837, + -0.004462928976863623, + -0.02687985822558403, + -0.02003374509513378, + -0.0021752091124653816, + -0.013794508762657642, + 0.02967558056116104, + -0.017578963190317154, + 0.01606518216431141, + -0.0037401323206722736, + 0.01907910779118538, + 0.011701125651597977, + -0.0038696902338415384, + -0.012594392523169518, + -0.014578674919903278, + -0.005697138607501984, + -0.007425714284181595, + -0.014415022917091846, + 0.01662432588636875, + -0.012928515672683716, + -0.004265183117240667, + -0.0016944811213761568, + -0.013528573326766491, + 0.010582835413515568, + -0.005908522754907608, + 0.011632937006652355, + -0.019801903516054153, + -0.01252620480954647, + -0.028339087963104248, + 0.0051175374537706375, + -0.021943019703030586, + 0.015328747220337391, + 0.007814387790858746, + 0.01903819479048252, + -0.006849522236734629, + -0.0016637963708490133, + -0.004565211944282055, + -0.009471365250647068, + -0.008516727946698666, + 0.002427506260573864, + 0.012151168659329414, + 0.01084877084940672, + 0.006777924485504627, + 0.003675353480502963, + -0.015206007286906242, + 0.01906546950340271, + 0.012117073871195316, + 0.0003368931938894093, + -0.005144813098013401, + 0.000826357863843441, + -0.012873965315520763, + 0.006283558905124664, + -0.02291129343211651, + -0.020306497812271118, + 0.025447901338338852, + -0.019583702087402344, + 0.010494191199541092, + 0.00020083607523702085, + -0.014033167622983456, + -0.007002945989370346, + 0.02026558481156826, + 0.009962321259081364, + -0.008032591082155704, + -0.005011845380067825, + 0.0047663673758506775, + 0.0051175374537706375, + -0.009594104252755642, + -0.0076848301105201244, + 0.0022894246503710747, + -0.01213753130286932, + -0.004094711970537901, + -0.00651198998093605, + 0.026416176930069923, + -0.008789481595158577, + -0.01354221161454916, + 0.004135624971240759, + -0.0026133195497095585, + -0.015096906572580338, + -6.898745778016746e-5, + -0.005693729501217604, + 0.005615312606096268, + 0.007487083785235882, + -0.0028758447151631117, + 0.014128630980849266, + -0.015546949580311775, + 0.009655473753809929, + -0.0364944189786911, + -0.018001731485128403, + 0.023470439016819, + 0.004367465618997812, + 0.010153248906135559, + 0.003324183402583003, + 0.004162900149822235, + 0.0015410572523251176, + -0.014824152924120426, + -0.009300894103944302, + 0.01787899248301983, + 0.014687775634229183, + 0.03052111715078354, + -0.009273619391024113, + -0.007350706961005926, + -0.011796589009463787, + 0.006143772508949041, + 0.0032934986520558596, + -0.014401384629309177, + -0.020224671810865402, + 0.003150302916765213, + 0.02585703134536743, + 0.0016433398704975843, + 0.0014549695188179612, + 0.01033735740929842, + 0.012178444303572178, + -0.014578674919903278, + 0.004889106377959251, + -0.01789262890815735, + 0.00024228182155638933, + 0.006951804738491774, + -0.010964690707623959, + 0.00820988044142723, + 0.01706073246896267, + 0.0027019644621759653, + 0.007855300791561604, + -0.0023507941514253616, + -0.0035253390669822693, + 0.014755964279174805, + 0.005209591705352068, + -0.01114198099821806, + -0.00833943858742714, + 0.0001825104554882273, + -0.0072143301367759705, + 0.0003089785750489682, + -0.024997858330607414, + -0.005680091679096222, + -0.0007862971979193389, + 0.0021019065752625465, + 0.022133946418762207, + 0.006123316008597612, + -0.021002018824219704, + -0.002517855726182461, + 0.016297021880745888, + -0.010964690707623959, + -0.018356310203671455, + 5.5349781177937984e-5, + -0.03788546100258827, + 0.015028717927634716, + 0.035185202956199646, + -0.003818548982962966, + -0.008162148296833038, + -0.003971972968429327, + 0.03513064980506897, + -0.01707436889410019, + 0.004244726151227951, + 0.010773763060569763, + 0.0028093610890209675, + 0.00952591560781002, + 0.0019996240735054016, + -0.010691937059164047, + 0.010787401348352432, + 0.010664662346243858, + 0.007616641465574503, + 0.0017507364973425865, + -0.009157698601484299, + -0.012117073871195316, + -0.003455445868894458, + 0.018697252497076988, + -0.004422015976160765, + 0.007984858937561512, + -0.019720077514648438, + -0.018724527209997177, + -0.002089973771944642, + 0.009716843254864216, + -0.006280149333178997, + -0.028857320547103882, + -0.0029235766269266605, + -0.008714474737644196, + 0.013071711175143719, + -0.006341518834233284, + 0.004462928976863623, + -0.0023047670256346464, + -0.0002740320342127234, + -0.011728400364518166, + 0.017810802906751633, + 0.0026627560146152973, + -0.001881999196484685, + -0.0019280263222754002, + -0.0017643742030486465, + -0.011987516656517982, + -0.018165383487939835, + 0.025516090914607048, + -0.005686910357326269, + -0.020388323813676834, + 0.006157410331070423, + 0.012308001518249512, + 0.020729266107082367, + 0.02750719152390957, + 0.013317190110683441, + -0.00012998409511055797, + 0.00831898208707571, + 0.009689568541944027, + -0.005478935781866312, + -0.004203813150525093, + -0.0033429351169615984, + 0.010003234259784222, + 0.020511062815785408, + 0.0002836210187524557, + -0.01184432115405798, + -0.026784393936395645, + -0.027534466236829758, + -0.04795006662607193, + -0.014783239923417568, + -0.007903032936155796, + 0.011305633001029491, + 0.004619762301445007, + -0.0024036401882767677, + 0.00854400359094143, + -0.007282518316060305, + 0.00461294362321496, + 0.00651539908722043, + -0.016160644590854645, + -0.017319846898317337, + -0.015110543929040432, + -0.018751803785562515, + 0.011544291861355305, + 0.003671943908557296, + 0.003542385995388031, + 0.00913724210113287, + -0.035185202956199646, + -0.003886737395077944, + -0.018588151782751083, + 0.01985645480453968, + -0.00370944757014513, + -0.01073966920375824, + 0.013760413974523544, + 0.009860038757324219, + -0.0052368673495948315, + -0.013583124615252018, + -0.028366364538669586, + 0.003958335146307945, + -0.0036412591580301523, + -0.025161510333418846, + 0.0037810453213751316, + -0.012185262516140938, + 0.03313954919576645, + -0.00546188885346055, + 0.0014481506077572703, + -0.01646067388355732, + -0.01556058693677187, + 0.03030291385948658, + -0.01204888615757227, + -0.003109389916062355, + -0.006982489489018917, + 0.006794971413910389, + -0.0024854661896824837, + 0.008482634089887142, + -0.006815427914261818, + -0.010207800194621086, + 0.0038526433054357767, + 0.0007321726880036294, + -0.011667030863463879, + -0.013092167675495148, + -0.0011029469314962626, + -0.0008830394363030791, + 0.002737763337790966, + -0.0109237777069211, + 0.013760413974523544, + -0.018792716786265373, + -0.012164806015789509, + 0.006733601912856102, + 0.0039856103248894215, + 0.005025483202189207, + -0.02310222201049328, + -0.019720077514648438, + -0.0010228255996480584, + 0.004326552618294954, + -0.001220571924932301, + 0.04320415481925011, + 0.026838945224881172, + 0.037203576415777206, + -0.01969280280172825, + 0.00391401257365942, + -0.03954925760626793, + 0.020006468519568443, + 0.00018645258387550712, + -0.002649118425324559, + 0.01643339917063713, + -0.0026388901751488447, + -0.0012239813804626465, + 0.023143135011196136, + 0.0035628427285701036, + -0.007787112612277269, + 0.011257900856435299, + -0.004974341951310635, + 0.006631319411098957, + -0.005564171355217695, + -0.02003374509513378, + 0.004009476397186518, + 0.013071711175143719, + -0.023415887728333473, + 0.019174572080373764, + 0.032784972339868546, + -0.01084877084940672, + -0.010460096411406994, + 0.02443871460855007, + 0.02690713293850422, + -0.005305055528879166, + 0.008100778795778751, + 0.006044899579137564, + -0.009266800247132778, + 0.0012376189697533846, + 0.0027752667665481567, + -0.02869366854429245, + 0.03425784036517143, + 0.01483779028058052, + 0.010616930201649666, + -0.021943019703030586, + -0.008598553948104382, + -0.014114993624389172, + -0.0020149664487689734, + 0.001024530385620892, + 0.01982918009161949, + 0.0055062114261090755, + -0.0023047670256346464, + 0.012860327959060669, + 0.002865616464987397, + -0.012062523514032364, + -0.023825017735362053, + -0.005782374180853367, + 0.006501761730760336, + -0.013678587973117828, + -0.015928804874420166, + -0.0067199645563960075, + -0.022379424422979355, + 0.007050678133964539, + -0.006747239734977484, + 0.009785031899809837, + -0.012914878316223621, + -0.016201557591557503, + 0.010405546054244041, + -0.020974744111299515, + 0.02487511932849884, + -0.007248424459248781, + -0.0018462003208696842, + 0.01703345589339733, + 0.004623171873390675, + -0.006907482631504536, + 0.02006101980805397, + -0.005148222204297781, + -0.003859461983665824, + 0.013978617265820503, + -0.0012308001751080155, + 0.013712682761251926, + -0.004479976370930672, + -0.042849574238061905, + -0.03251221776008606, + 0.02066107839345932, + 0.016801616176962852, + 0.011755676008760929, + -0.002805951749905944, + 0.005744870752096176, + -0.00904177874326706, + 0.03191215917468071, + 0.03273041918873787, + -0.004882287699729204, + 0.016815252602100372, + 0.017292572185397148, + -7.623247074661776e-5, + 5.0874921726062894e-5, + -0.0025792252272367477, + -0.0019382545724511147, + 0.0352943018078804, + -0.010173705406486988, + -0.003487835405394435, + 0.014605949632823467, + 0.00580964982509613, + 0.003259404329583049, + 0.023006757721304893, + -0.011019241064786911, + -0.007350706961005926, + 0.0136581314727664, + 0.021220222115516663, + -0.002475237939506769, + 0.006931348238140345, + 0.001511224894784391, + -0.020729266107082367, + 0.006733601912856102, + -0.013514935970306396, + 0.007657554466277361, + -0.013712682761251926, + 0.026798032224178314, + 0.011476103216409683, + -0.02409777231514454, + -0.02146570011973381, + -0.02325223572552204, + -0.011980697512626648, + 0.017142558470368385, + 0.013583124615252018, + 0.00012870556383859366, + -0.0027684480883181095, + -0.012614849023520947, + -0.0025860441382974386, + 0.03354867920279503, + -0.010637386702001095, + -0.01562877558171749, + 0.010289626196026802, + 0.005035711452364922, + -0.023743191733956337, + -0.007541634142398834, + 0.016583412885665894, + 0.015683326870203018, + -0.0025076274760067463, + -0.0054482510313391685, + 0.0046845413744449615, + -0.02546153962612152, + 0.009887314401566982, + -0.006621091160923243, + 0.017169833183288574, + -0.00048882543342188, + -0.00039187006768770516, + -0.01624247059226036, + 0.008066684938967228, + 0.02008829452097416, + 0.021533889696002007, + 0.0051959543488919735, + -0.011367002502083778, + 0.0054687075316905975, + -0.007889394648373127, + -0.001888817991130054, + 0.0015495808329433203, + 0.006464257836341858, + -0.015519673936069012, + 0.01304443646222353, + 0.004524298943579197, + 0.010112335905432701, + 0.016365209594368935, + 0.002497399225831032, + 0.0009563419735059142, + -0.006672232411801815, + -0.002819589339196682, + -0.006525627337396145, + -0.00420722272247076, + 0.0035457955673336983, + 0.015587862581014633, + 0.007412076462060213, + 0.020524701103568077, + 0.02284310571849346, + 0.0035662520676851273, + 0.006003986578434706, + 0.0029559661634266376, + -0.00662450073286891, + -0.0013305257307365537, + -0.0005152483936399221, + -0.015206007286906242, + 0.015315108932554722, + -0.015015080571174622, + 0.0109237777069211, + 0.0009998120367527008, + -0.027207162231206894, + -0.0030139260925352573, + -0.02165662869811058, + -0.007432532962411642, + -0.024561453610658646, + 0.03717630356550217, + 0.0020320136100053787, + -0.020811092108488083, + 0.019310947507619858, + 0.010112335905432701, + 0.018301760777831078, + 0.03551250696182251, + 0.004387922119349241, + 0.0035594331566244364, + -0.0027769715525209904, + -0.004404969047755003, + -0.010466915555298328, + -0.01054192241281271, + 0.0013373445253819227, + 0.022938570007681847, + 0.012880784459412098, + 0.00627333065494895, + 0.0176471509039402, + -0.0009213954326696694, + 0.028339087963104248, + -0.04034024477005005, + -0.010903321206569672, + -0.019174572080373764, + 0.0007696762913838029, + 0.005045939702540636, + 0.0166925135999918, + 0.012996704317629337, + 0.004186766222119331, + -0.02668892964720726, + -0.008496271446347237, + 0.007337069138884544, + 0.009757756255567074, + -0.019570063799619675, + -0.01648794859647751, + -0.012908059172332287, + -0.014442297630012035, + -0.006089222151786089, + 0.002705373801290989, + -0.004940247628837824, + 0.018738165497779846, + -0.005080034025013447, + -0.03665807098150253, + 0.003324183402583003, + 0.03526702895760536, + -0.02348407730460167, + -0.030030161142349243, + 0.0019075698219239712, + 0.02086564339697361, + -0.003682172391563654, + -0.010207800194621086, + 0.006007395684719086, + 0.02690713293850422, + 0.003041201503947377, + -0.009219068102538586, + -0.032403115183115005, + -0.0023235189728438854, + 0.02206575870513916, + -0.016556138172745705, + 0.0039617447182536125, + 0.018779078498482704, + 0.013630855828523636, + 0.028557291254401207, + 0.02445235103368759, + 0.016801616176962852, + -0.0232931487262249, + 0.010364633053541183, + 0.007309793960303068, + 0.0013237068196758628, + -0.021602077409625053, + -5.293921958582359e-7, + 0.027793582528829575, + 0.01644703559577465, + 0.011980697512626648, + -0.0028758447151631117, + 0.000482432747958228, + -0.0033344116527587175, + 0.01606518216431141, + -0.002792313927784562, + -0.000335614662617445, + -0.02330678701400757, + 0.008850851096212864, + -0.02006101980805397, + 0.03349412977695465, + -0.025243336334824562, + 0.007330250460654497, + -0.0018785897409543395, + -0.0016245880397036672, + -0.0002488875761628151, + -0.010098698548972607, + 0.01064420584589243, + -0.004848193377256393, + 0.01827448420226574, + -0.019201846793293953, + -0.0018393814098089933, + -0.005185726098716259, + 0.024534177035093307, + -0.0048856972716748714, + -0.00227919640019536, + -0.005864200182259083, + 0.02345680072903633, + 0.009014503099024296, + -0.006321062333881855, + 0.014415022917091846, + -0.00904177874326706, + 0.006529036909341812, + -0.0093349888920784, + -0.009362263604998589, + 0.008803118951618671, + -0.0011489741737022996, + -0.008393988944590092, + -0.007759836968034506, + -0.017115281894803047, + 0.014087717980146408, + 0.0036992193199694157, + 0.01384223997592926, + 0.00017846176342573017, + -0.029757406562566757, + -0.0019518922781571746, + 0.010821495205163956, + -0.0020814500749111176, + 0.001692776451818645, + 0.013869515620172024, + -0.006123316008597612, + -0.01688344217836857, + -0.019010918214917183, + -0.007227967958897352, + 0.01213753130286932, + 0.035430680960416794, + 0.0030514297541230917, + 0.031584855169057846, + -0.0352943018078804, + -0.0014856542693451047, + -0.025311525911092758, + 0.016760703176259995, + -0.002534902887418866, + -0.011469285003840923, + 0.008087141439318657, + -0.011660212650895119, + -0.004981160629540682, + -0.002062698360532522, + 0.008250793442130089, + -0.0012896126136183739, + -0.005444841925054789, + 0.012655762955546379, + -0.01183068286627531, + -0.008809938095510006, + 0.0273162629455328, + -0.0018905226606875658, + 0.0008830394363030791, + -0.012771682813763618, + -0.01842449977993965, + 0.019501876085996628, + 0.005069805774837732, + 0.0010910140117630363, + -0.00531528377905488, + -0.006416526157408953, + -0.0020967924501746893, + -0.006846113130450249, + -0.0007534815231338143, + -0.0083462567999959, + -0.00861219223588705, + 0.008257612586021423, + 0.021997569128870964, + 0.003992429468780756, + -0.0025792252272367477, + 0.0060210335068404675, + -0.018997281789779663, + -0.038240041583776474, + -0.008884944953024387, + 0.004510661121457815, + 0.020783817395567894, + -0.001815515453927219, + 0.012942153960466385, + -0.007582547143101692, + 0.006675641983747482, + -0.01682889088988304, + -0.001740508247166872, + -0.0010577721986919641, + -0.004957295022904873, + -0.01433319691568613, + 0.007500721141695976, + 0.013010341674089432, + -0.0029031201265752316, + 0.012076160870492458, + -0.01024189405143261, + -0.018397223204374313, + 0.030221087858080864, + 0.0010893093422055244, + -0.000951227848418057, + 0.025229698047041893, + 0.012335277162492275, + -0.0028042469639331102, + 0.012192081660032272, + -0.008775844238698483, + -0.00016418482118751854, + -8.640745363663882e-5, + -0.005086852703243494, + 0.02529788762331009, + 0.004497023299336433, + -0.0033310020808130503, + -0.01313989982008934, + -0.011135161854326725, + 0.0016825482016429305, + -0.00776665611192584, + -0.01433319691568613, + -0.027752669528126717, + -0.009798669256269932, + 0.0016100980574265122, + -0.00820988044142723, + 0.01193978451192379, + 0.0016825482016429305, + 0.0004208501195535064, + -0.021779367700219154, + 0.0034861306194216013, + 0.0034281706903129816, + 0.0014208753127604723, + 0.008128054440021515, + 0.0008472405606880784, + -0.019542789086699486, + -0.008482634089887142, + 0.005499392282217741, + 0.007753018289804459, + -0.0018854085355997086, + -0.027384452521800995, + 0.008496271446347237, + 0.01183068286627531, + 0.015383297577500343, + -0.01643339917063713, + 0.004841374699026346, + -0.00671655498445034, + 0.002253625774756074, + -0.006696098484098911, + -0.006194913759827614, + 0.014987804926931858, + -0.012846689671278, + -0.008387169800698757, + -2.0003699319204316e-5, + -0.011080610565841198, + 0.009198611602187157, + -0.03630349040031433, + 0.009423633106052876, + 0.004609534051269293, + 0.0063108340837061405, + 0.013480842113494873, + -0.006361975334584713, + 0.019365498796105385, + -0.005942617077380419, + 0.0003959187597502023, + 0.020906556397676468, + 0.038649171590805054, + 9.002996375784278e-5, + -0.020551975816488266, + -0.0009861743310466409, + 0.002719011390581727, + 0.0067199645563960075, + 0.020415600389242172, + -0.002023490145802498, + -0.007868938148021698, + -0.012676219455897808, + 0.010746488347649574, + -0.008393988944590092, + -0.019529150798916817, + -0.021833917126059532, + 0.013883152976632118, + -0.01723802089691162, + 0.0049061537720263, + -0.016569774597883224, + -0.013787689618766308, + 0.028011783957481384, + 0.002940623788163066, + 0.005305055528879166, + 0.01988372951745987, + -0.003276451490819454, + 0.004033342469483614, + -0.017538050189614296, + -0.0022962435614317656, + 0.0036378498189151287, + 0.008959952741861343, + -0.022815831005573273, + 0.008939496241509914, + 0.017742615193128586, + -0.01114879921078682, + 0.03008471056818962, + 0.010357813909649849, + 0.0030139260925352573, + -0.00042425954598002136, + 0.02023831009864807, + 0.008959952741861343, + 0.005264142528176308, + -0.01324900146573782, + 0.022174859419465065, + 0.010473734699189663, + -0.00033156597055494785, + -0.004012885969132185, + -0.002009852323681116, + -0.005690319929271936, + 0.016092456877231598, + -0.008994046598672867, + -0.014074080623686314, + -0.003631030907854438, + 0.015110543929040432, + 0.008053047582507133, + -0.006927939131855965, + 0.002942328341305256, + 0.019270034506917, + 0.013133080676198006, + -0.003056543879210949, + 0.009941864758729935, + 0.013774052262306213, + 0.020538339391350746, + -0.015069630928337574, + 0.009982777759432793, + 0.009716843254864216, + 0.0016237356467172503, + 0.012157987803220749, + -0.010139611549675465, + 0.002582634799182415, + 0.018383586779236794, + 0.008857670240104198, + 0.00793712679296732, + 0.00016461100312881172, + 0.002625252353027463, + 0.0038424150552600622, + 0.013964978978037834, + 0.004121987149119377, + -0.02246125042438507, + -0.0049061537720263, + 0.020770179107785225, + 0.01313989982008934, + 0.013944522477686405, + -0.009778212755918503 + ], + "476220ea-1795-47f7-997b-8eb19792ef78": [ + -0.02526317909359932, + -0.027722053229808807, + -0.012666716240346432, + 0.0243358314037323, + -0.039932120591402054, + -0.0021427334286272526, + 0.019263524562120438, + 0.022874558344483376, + 0.011458355002105236, + 0.04336049407720566, + -0.004717526491731405, + 0.010004106909036636, + -0.013917230069637299, + -0.02040163241326809, + 0.007770043332129717, + 0.03386221453547478, + -0.01818162016570568, + 0.021033914759755135, + 0.004471638705581427, + 0.00793162640184164, + 0.047210391610860825, + -0.017661744728684425, + -0.022565443068742752, + -0.005009078420698643, + 0.010959554463624954, + -0.014907805249094963, + -0.010790945962071419, + 0.012477031908929348, + -0.04313568398356438, + -0.014120965264737606, + 0.018701497465372086, + 0.027370786294341087, + -0.013144440948963165, + 0.013594062998890877, + 0.008247767575085163, + -0.03799312189221382, + -0.000432059372542426, + -0.008022956550121307, + -0.041758716106414795, + -0.04470936208963394, + -0.03996022418141365, + 0.024026716127991676, + -0.0012180210324004292, + -0.01643933169543743, + -0.033637404441833496, + 0.0030261720530688763, + 0.01863124407827854, + -0.02051403932273388, + -0.007362572941929102, + -0.004562968388199806, + 0.016523636877536774, + 0.006452789064496756, + 0.0173947811126709, + -0.008310995995998383, + 0.02408291958272457, + -0.03394651785492897, + 0.011619938537478447, + 0.0544886589050293, + 0.006733803544193506, + -0.056259047240018845, + -0.009891700930893421, + 0.01494995690882206, + -0.0016079283086583018, + -0.013678367249667645, + 0.006905924528837204, + -0.006333358120173216, + -0.01865934394299984, + -0.010973605327308178, + -0.022565443068742752, + 0.0033335313200950623, + -0.0007099999929778278, + 0.035379692912101746, + -0.006930513307452202, + 0.0020742362830787897, + 0.0002742084034252912, + 0.002501026727259159, + 0.06463327258825302, + 0.006747853942215443, + 0.019052764400839806, + 0.016706295311450958, + -0.020359480753540993, + 0.020471885800361633, + 0.02711787261068821, + 0.035632602870464325, + 0.05167851597070694, + 0.021286828443408012, + -0.010980631224811077, + -0.04937420040369034, + 0.01083309855312109, + -0.03189511597156525, + 0.022621644660830498, + 0.03299107030034065, + -0.016130216419696808, + 0.006688138470053673, + -0.024125071242451668, + 0.0016281261341646314, + 0.06002463772892952, + -0.013868052512407303, + 0.02153974026441574, + -0.005448163487017155, + 0.010418602265417576, + 0.00607693288475275, + -0.002924304222688079, + 0.012835324741899967, + -0.007657637819647789, + -0.010980631224811077, + 0.008107260800898075, + 0.003452962264418602, + -0.02156784199178219, + 0.017858454957604408, + -0.008563908748328686, + -0.03335638716816902, + -0.00524442782625556, + 0.02572685293853283, + -0.02003631368279457, + -0.011135188862681389, + -0.011641014367341995, + -0.008079159073531628, + 0.015961607918143272, + -0.01933377981185913, + 0.029000667855143547, + 0.01657984033226967, + -0.01589135453104973, + 0.00961771234869957, + -0.014570587314665318, + 0.028677502647042274, + -0.002054916461929679, + -0.02064049430191517, + 0.016059963032603264, + 0.02791876345872879, + -0.003098181914538145, + -0.03641944378614426, + 0.008261818438768387, + -0.02096366137266159, + 0.015821101143956184, + 0.0029717255383729935, + 0.00817048829048872, + 0.05957501754164696, + -0.011837724596261978, + 0.01646743342280388, + -0.018139468505978584, + -0.05013293772935867, + -0.037037674337625504, + 0.012315448373556137, + 0.0225935447961092, + -0.011957155540585518, + -0.04333239421248436, + 0.025305330753326416, + -0.02759559638798237, + 0.004678886849433184, + -0.04111238196492195, + 0.009680939838290215, + -0.008985430002212524, + 0.006983203813433647, + 0.00288390857167542, + 0.015497935004532337, + -0.016074012964963913, + 0.015610340051352978, + 0.01575084775686264, + 0.0637340247631073, + -0.004429486580193043, + -0.059743624180555344, + -0.004854520782828331, + 0.0035144342109560966, + 0.0579451322555542, + 0.0004050556744914502, + 0.022270377725362778, + 0.009294545277953148, + 0.009308596141636372, + 0.007467953022569418, + 0.00793162640184164, + -0.021343030035495758, + 0.017436932772397995, + 0.005521929822862148, + 0.011900953017175198, + -0.03431183844804764, + 0.038189832121133804, + 0.03450854867696762, + 0.016748448833823204, + -0.014008559286594391, + -0.009168089367449284, + -0.013776722364127636, + 0.018125418573617935, + -0.01296880654990673, + -0.005785380490124226, + 0.019263524562120438, + 0.02224227599799633, + 0.018013011664152145, + -0.005082844756543636, + -0.021624045446515083, + -0.0010722449515014887, + -0.009364799596369267, + -0.009603661485016346, + 0.015315275639295578, + -0.015554137527942657, + -0.03394651785492897, + -0.0010397526202723384, + -0.0021321955136954784, + 0.005061768926680088, + 0.04760381206870079, + -0.008177514187991619, + -0.03847084939479828, + -0.033665504306554794, + 0.03293486684560776, + -0.04549620300531387, + 0.043613407760858536, + -0.03796502202749252, + -0.0061928508803248405, + 0.023492788895964622, + -0.04529949277639389, + 0.02468710020184517, + -0.024040767922997475, + 0.0050758193247020245, + 0.028129523620009422, + -0.026092171669006348, + 0.019080866128206253, + -0.012385701760649681, + 0.040494151413440704, + 0.037487298250198364, + -0.012266270816326141, + -0.01269481796771288, + 0.02191910892724991, + -0.006013704463839531, + 0.00503718014806509, + -0.048025332391262054, + -0.02165214717388153, + -0.0335812009871006, + 0.043388597667217255, + -0.03987592086195946, + 0.009062709286808968, + 0.05280257388949394, + -0.03290676698088646, + 0.03560450300574303, + -0.013945330865681171, + -0.016481485217809677, + 0.008599035441875458, + 0.008423401042819023, + 0.0015069388318806887, + 0.003092912957072258, + -0.016818702220916748, + 0.011704242788255215, + 0.010509932413697243, + -0.004580531734973192, + -0.0043732840567827225, + -0.03327208384871483, + -0.0009176870808005333, + 0.013622164726257324, + 0.037824515253305435, + -0.0013374520931392908, + -0.012406778521835804, + 0.00153416208922863, + 0.05305548757314682, + 0.03299107030034065, + -0.01095252949744463, + -0.01499210949987173, + 0.04206782951951027, + 0.024349883198738098, + -0.04010073095560074, + 0.015132616274058819, + -0.0035811751149594784, + 0.0020531602203845978, + 0.0021058502607047558, + 0.035969819873571396, + 0.024363933131098747, + 0.0197131484746933, + -0.047210391610860825, + 0.04094377160072327, + -0.030209029093384743, + 0.0019091403810307384, + 0.02118847332894802, + -0.017998961731791496, + 0.006726778112351894, + -0.0012751020258292556, + 0.021806703880429268, + 0.017240222543478012, + -0.013720519840717316, + 0.00023688621877226979, + -0.012814248912036419, + -0.0014805936953052878, + -0.00167906004935503, + -0.01982555352151394, + 0.024251528084278107, + -0.011261644773185253, + 0.006681113503873348, + -0.005107433535158634, + 0.00019231911574024707, + -0.04695747792720795, + 0.00558515777811408, + -0.03394651785492897, + 0.02766585163772106, + 0.020710749551653862, + -0.0016553493915125728, + 0.02538963593542576, + -0.0038639456033706665, + -0.0040887570939958096, + 0.00961771234869957, + -0.027300532907247543, + -0.01036942470818758, + -0.0370938777923584, + 0.028368385508656502, + 0.0044435374438762665, + 0.0026994929648935795, + -0.00903460755944252, + -0.0306867528706789, + 0.009884675033390522, + -0.029590798541903496, + 0.016706295311450958, + 0.03484576568007469, + -0.015694644302129745, + 0.028438640758395195, + 0.02016277052462101, + -0.029253581538796425, + -0.0405784547328949, + -0.010362399742007256, + -0.0016000247560441494, + -0.00014347094111144543, + -0.0009633519221097231, + 0.011760445311665535, + -0.009477204643189907, + -0.020766951143741608, + -0.022635696455836296, + -0.032372839748859406, + -0.07593004405498505, + 0.03996022418141365, + 0.031473591923713684, + -0.047435201704502106, + 0.050442054867744446, + -0.005567594431340694, + -0.015961607918143272, + -0.03490196540951729, + -0.012441905215382576, + -0.021975312381982803, + -0.020556190982460976, + 0.00460863346233964, + -0.04021313786506653, + -0.048699766397476196, + -0.021750500425696373, + -0.020190872251987457, + -0.0266541987657547, + -0.01646743342280388, + 0.004640247672796249, + 0.004647272638976574, + 0.013643240556120872, + -0.024644948542118073, + 0.022410884499549866, + -0.00013161564129404724, + -0.00036465987795963883, + -0.003451206022873521, + -0.009926827624440193, + 0.03231663629412651, + 0.0009001236758194864, + -0.013263871893286705, + 0.01901061274111271, + -0.0009045145707204938, + 0.04796912893652916, + -0.006491428706794977, + -0.016144268214702606, + -0.02075290121138096, + 0.01875769905745983, + -0.020331379026174545, + -0.003138577565550804, + -0.014668942429125309, + -0.014823500998318195, + -0.010011131875216961, + -0.01898251101374626, + 0.01600375957787037, + -0.0053181941621005535, + -0.033215880393981934, + -0.016945157200098038, + -0.004190624691545963, + -0.042461249977350235, + 0.012645640410482883, + -0.016397180035710335, + -0.022087719291448593, + -0.018223771825432777, + -0.05167851597070694, + 0.034227531403303146, + -0.004447050392627716, + -0.03532348945736885, + 0.016017811372876167, + -0.002288509625941515, + 0.011050884611904621, + 0.004682399798184633, + 0.006329845637083054, + 0.019895806908607483, + 0.0006902412278577685, + -0.010966580361127853, + 0.0023991588968783617, + -0.013643240556120872, + 0.011943104676902294, + -0.03774021193385124, + -0.02200341410934925, + -0.032485246658325195, + 0.028368385508656502, + -0.030180927366018295, + -0.007411750499159098, + -0.010046258568763733, + -0.03105207160115242, + 0.031023971736431122, + -0.010053284466266632, + -0.02130087837576866, + -0.023844057694077492, + -0.02398456446826458, + 0.010123537853360176, + -0.006797031499445438, + -0.013987483456730843, + 0.0064071244560182095, + -0.015259072184562683, + 0.03419943153858185, + -0.011591836810112, + -0.0049528758972883224, + 0.009645813144743443, + 0.039089079946279526, + 0.014542486518621445, + 0.06637556105852127, + 0.0064773778431117535, + -0.012905578128993511, + 0.05935020372271538, + -0.010910377837717533, + -0.0018722573295235634, + 0.03779641538858414, + 0.02766585163772106, + -0.004267903510481119, + 0.04271416366100311, + -0.0266260989010334, + 0.014514384791254997, + 0.015807051211595535, + 0.023577094078063965, + -0.022635696455836296, + -0.0074890293180942535, + -0.019980112090706825, + 0.03796502202749252, + -0.0024904885794967413, + 0.010292146354913712, + -0.0005339270574040711, + -0.03276626020669937, + 0.007784094195812941, + -0.018167570233345032, + 0.0035811751149594784, + -0.013355201110243797, + -0.020907457917928696, + 0.005342782940715551, + -0.006832158658653498, + -0.018336178734898567, + -0.03372170776128769, + -0.020921509712934494, + -0.019179221242666245, + -0.013699444010853767, + 0.024293679744005203, + -0.023563042283058167, + 0.010861200280487537, + 0.008409351110458374, + -0.1147662103176117, + -0.009020556695759296, + -0.024476340040564537, + 0.013341150246560574, + 0.026443438604474068, + -0.005831045098602772, + 0.01774604804813862, + -0.04726659506559372, + -0.029225479811429977, + -0.017647692933678627, + 0.0030226593371480703, + -0.012582411989569664, + 0.014654891565442085, + -0.036672357469797134, + 0.007805170025676489, + 0.009076759219169617, + 0.006505479570478201, + 0.03917338326573372, + -0.006038293242454529, + -0.019389981403946877, + -0.02307126857340336, + 0.034705258905887604, + 0.0004904576344415545, + -0.023324180394411087, + -0.02642938867211342, + 0.0061050341464579105, + 0.012498107738792896, + -0.007060482632368803, + -0.027946865186095238, + -0.0008149412460625172, + -0.011760445311665535, + 0.0038744837511330843, + 0.006635448429733515, + 0.007158837281167507, + -0.022453036159276962, + -0.018027063459157944, + 0.04931799694895744, + -0.018575040623545647, + 0.03928579017519951, + 0.004626196809113026, + 0.0012996908044442534, + 0.0405503548681736, + -0.030096624046564102, + -0.028579147532582283, + 0.006839183624833822, + -0.04018503427505493, + -0.01783035323023796, + -0.023703550919890404, + 0.029703203588724136, + -0.022523289546370506, + -0.0012513914844021201, + 0.035042475908994675, + 0.006133135408163071, + 0.030630551278591156, + -0.0074539026245474815, + 0.01771794632077217, + 0.0016158318612724543, + -0.012498107738792896, + -0.04139339551329613, + -0.0049704392440617085, + -0.025670649483799934, + 0.0020619418937712908, + 0.0010599505621939898, + 0.026668250560760498, + -0.0016395424026995897, + 0.021722400560975075, + 0.027370786294341087, + -0.003695337101817131, + 0.00402904162183404, + -0.02295886166393757, + -0.02075290121138096, + -0.023338232189416885, + -0.01783035323023796, + 0.013811849057674408, + -0.0035513173788785934, + -0.037121981382369995, + 0.032485246658325195, + -0.040859468281269073, + -0.026007866486907005, + 0.024827606976032257, + -0.019628843292593956, + 0.014500333927571774, + 0.028466740623116493, + -0.01076987013220787, + -0.003152628429234028, + 0.007748967502266169, + -0.006414149887859821, + 0.001422634581103921, + -0.014640841633081436, + 0.014921855181455612, + 0.03093966655433178, + -0.002251626458019018, + -0.013109313324093819, + 0.044653162360191345, + 0.0012364626163616776, + 0.011331899091601372, + -0.01119139138609171, + 0.02409696951508522, + -0.054460559040308, + 0.020022263750433922, + -0.003106963587924838, + 0.011015757918357849, + 0.006842696573585272, + -0.030209029093384743, + 0.030096624046564102, + -0.020106568932533264, + 0.0036496722605079412, + -0.02571280114352703, + -0.022101769223809242, + 0.04015693441033363, + -0.003955275285989046, + 0.008001879788935184, + -0.028312183916568756, + -0.012898553162813187, + -0.008008905686438084, + 0.022565443068742752, + 0.00909081008285284, + 0.02652774378657341, + 0.045580506324768066, + 0.017071614041924477, + 0.010088411159813404, + 0.023338232189416885, + 0.008908150717616081, + 0.018842004239559174, + 0.014345776289701462, + 0.01842048205435276, + -0.041871119290590286, + -0.018799852579832077, + 0.015104514546692371, + 0.004710501059889793, + -0.01291260402649641, + 0.004362745676189661, + 0.030518144369125366, + 0.03948250040411949, + -0.0021304390393197536, + -0.007155324798077345, + -0.007784094195812941, + -1.5367966170742875e-6, + -0.004907210823148489, + 0.018560990691184998, + -0.004692937713116407, + -0.007601434830576181, + -0.02121657505631447, + 0.010861200280487537, + 0.023197725415229797, + 0.025895461440086365, + 0.011577785946428776, + -0.0016799381701275706, + 0.012287347577512264, + 0.011458355002105236, + 0.001956561580300331, + -0.007018330506980419, + -0.034339938312768936, + 0.02422342635691166, + 0.006674088072031736, + 0.011458355002105236, + 0.006410636939108372, + 0.03315968066453934, + 0.005795918405056, + 0.0023868645075708628, + 0.04310758411884308, + -0.01586325280368328, + 0.02978750877082348, + 0.016776548698544502, + -0.0024465802125632763, + 0.023464687168598175, + -0.0009528138907626271, + 0.007042919285595417, + 0.021511638537049294, + -0.025291280820965767, + 0.05684917792677879, + -0.017296425998210907, + 0.021820755675435066, + 0.023815955966711044, + -0.019755300134420395, + 0.012498107738792896, + -0.03116447851061821, + -0.024181274697184563, + -0.005613259039819241, + -0.017998961731791496, + 0.013594062998890877, + -0.01047480572015047, + 0.019544539973139763, + 0.010292146354913712, + -0.013565962202847004, + 0.023197725415229797, + -0.008289920166134834, + 0.004728064406663179, + 0.0032773283310234547, + -0.00029594311490654945, + 0.002613432239741087, + 0.056034237146377563, + -0.016270723193883896, + 0.03838654235005379, + -0.032485246658325195, + 0.013067161664366722, + 0.0324290432035923, + 0.00995492935180664, + -0.02235468104481697, + 0.007162350229918957, + -0.009413976222276688, + 0.013249821029603481, + 0.009926827624440193, + -0.02118847332894802, + 0.01702946238219738, + -0.009357773698866367, + 0.020921509712934494, + 0.015371478162705898, + 0.032710056751966476, + -0.009702016599476337, + 0.01499210949987173, + -0.010573159903287888, + 0.01784440316259861, + 0.021286828443408012, + 0.02097771130502224, + -0.005381422583013773, + 0.01287045143544674, + 0.024729251861572266, + 0.02527722902595997, + -0.002009251620620489, + 0.016411231830716133, + 0.0006024242611601949, + -0.009814421646296978, + 0.004162523429840803, + -0.0019126530969515443, + 0.004144960083067417, + 0.002915522549301386, + -0.010516957379877567, + 0.006213927175849676, + -0.04094377160072327, + -0.044540755450725555, + -0.004032554104924202, + -0.020345430821180344, + -0.005599208641797304, + -0.012933679856359959, + 0.04678886756300926, + -0.023928361013531685, + -0.00939290039241314, + -0.0027223252691328526, + 0.006133135408163071, + 0.010053284466266632, + -0.0011231787502765656, + 0.013572987169027328, + -0.0005286580417305231, + 0.017057564109563828, + 0.007608460262417793, + 0.029253581538796425, + -0.005550031084567308, + -0.05527549982070923, + -0.005609746556729078, + 0.0019108967389911413, + -0.032822463661432266, + 0.0021708349231630564, + -0.010699616745114326, + -0.024012666195631027, + -0.01853288896381855, + -0.003145602997392416, + 0.013741595670580864, + -0.004440024960786104, + 0.00857093371450901, + -0.005957501474767923, + 0.023478738963603973, + 0.018856054171919823, + 0.02989991381764412, + -0.012013358063995838, + 0.03987592086195946, + 0.003712900448590517, + 0.013516784645617008, + -0.0050582559779286385, + 0.030967768281698227, + -0.002810142235830426, + -0.02744103968143463, + -0.039398193359375, + 0.03807742893695831, + 0.011676141060888767, + 0.009505306370556355, + 0.012020383961498737, + -0.003085887525230646, + 0.04144959896802902, + 0.009807396680116653, + 0.0012039702851325274, + 0.010228917934000492, + 0.027553444728255272, + 0.00677595566958189, + -0.021146319806575775, + 0.020134668797254562, + 0.03543589264154434, + -0.02652774378657341, + 0.0039096106775105, + 0.004113345872610807, + 0.02130087837576866, + -0.010341323912143707, + 0.016495535150170326, + 0.0054903156124055386, + 0.021595943719148636, + -7.299783464986831e-5, + -0.0009387631434947252, + -0.009561508893966675, + 0.045580506324768066, + -0.03599792346358299, + 0.03599792346358299, + 0.024363933131098747, + -0.01759149134159088, + 0.029956117272377014, + 0.00393771193921566, + -0.011015757918357849, + -0.006793519016355276, + 0.03453664854168892, + -0.006523042917251587, + 0.0012513914844021201, + -0.01402963511645794, + -0.010959554463624954, + 0.010615312494337559, + -0.007425800897181034, + 0.0024781941901892424, + 0.007046431768685579, + 0.01494995690882206, + 6.520408351207152e-5, + 0.019755300134420395, + 0.01690300554037094, + 0.028340285643935204, + 0.008486629463732243, + -0.0016281261341646314, + -0.02492596209049225, + 0.03560450300574303, + -0.02224227599799633, + -0.03383411467075348, + -0.01830807700753212, + -0.015216920524835587, + -0.055893730372190475, + 0.006849722005426884, + -0.03324398398399353, + 0.01842048205435276, + -0.027553444728255272, + 0.021876957267522812, + 0.005665949545800686, + -0.010172715410590172, + -0.023914311081171036, + 0.003416079329326749, + 0.011268670670688152, + -0.008247767575085163, + 0.03276626020669937, + 0.025080520659685135, + -0.016888955608010292, + 0.026035968214273453, + -0.003691824385896325, + 0.012947730720043182, + 0.01117031555622816, + 0.017872504889965057, + -0.04560860991477966, + 0.04900887981057167, + 0.03116447851061821, + -0.011669116094708443, + -0.021624045446515083, + 0.0173947811126709, + -0.0058802226558327675, + -0.02260759472846985, + 0.018336178734898567, + -0.006568707525730133, + -0.014682993292808533, + -0.015778949484229088, + 0.005546518135815859, + -0.014092863537371159, + -0.013896153308451176, + -0.006438738666474819, + -0.012947730720043182, + 0.032850563526153564, + 0.005936425644904375, + -0.016270723193883896, + 0.001290030893869698, + 0.03220422938466072, + -0.017212120816111565, + -0.0033317748457193375, + -0.03408702462911606, + -0.006217439658939838, + 0.003470525611191988, + 0.0147672975435853, + -0.01107196044176817, + -0.023577094078063965, + -0.008254792541265488, + -0.011732343584299088, + 0.025530142709612846, + -0.002820680383592844, + 0.015511985868215561, + -0.006066394504159689, + 0.019614793360233307, + -0.03810552880167961, + 0.032738156616687775, + -0.03521108254790306, + -0.05063876509666443, + -0.007896499708294868, + -0.0067724427208304405, + -0.014444131404161453, + -0.013966407626867294, + 0.013875077478587627, + 0.000577835482545197, + 0.008121311664581299, + 0.06002463772892952, + 0.03394651785492897, + -0.009751194156706333, + 0.015582239255309105, + 0.006379023194313049, + -0.00723611656576395, + 0.010516957379877567, + -0.03762780502438545, + 0.002023302484303713, + -0.020823154598474503, + 0.02422342635691166, + 0.02120252326130867, + 0.00744687719270587, + -0.04695747792720795, + 0.01749313622713089, + -0.0179568100720644, + -0.010720692574977875, + -0.0018213234143331647, + 0.002067210851237178, + -0.00931562203913927, + 0.04808153584599495, + 0.013418429531157017, + -0.02260759472846985, + 0.011493481695652008, + 0.0197131484746933, + -0.026457490399479866, + -0.03883616626262665, + -0.0043557207100093365, + 0.01797086000442505, + -0.04111238196492195, + -0.0016483240760862827, + -0.007190451491624117, + 0.00567648746073246, + 0.02975940704345703, + -0.0030367099680006504, + -0.04296707734465599, + 0.003962300717830658, + 0.026808757334947586, + -0.010235942900180817, + 0.016762498766183853, + 0.012786147184669971, + 0.018813902512192726, + 0.0052830674685537815, + -0.006396586541086435, + -0.022635696455836296, + -0.009385875426232815, + -0.008718466386198997, + -0.014416029676795006, + -0.028003068640828133, + 0.00527604203671217, + -0.009997081011533737, + 0.009968980215489864, + -0.04333239421248436, + -0.023310130462050438, + 0.02560039609670639, + 0.02651369199156761, + -0.04411923512816429, + 0.010207842104136944, + 0.002566011156886816, + 0.004798317793756723, + 0.01256836112588644, + -0.005434112623333931, + 0.02978750877082348, + 0.015132616274058819, + -0.028213828802108765, + 0.04032554104924202, + 0.028565095737576485, + 0.016045913100242615, + -0.013509758748114109, + -0.010580185800790787, + 0.004766704048961401, + 0.01657984033226967, + 0.010383475571870804, + 0.021497588604688644, + 0.009694990701973438, + -0.011374050751328468, + -0.003157897386699915, + -0.016762498766183853, + -0.0038393568247556686, + -0.02083720453083515, + -0.007573333568871021, + -0.004777241963893175, + -0.012097662314772606, + 0.01631287671625614, + 0.0016404205234721303, + -0.004647272638976574, + 0.01632692664861679, + -0.0012390970950946212, + -0.0173947811126709, + -0.006586270872503519, + -0.014444131404161453, + -0.025459889322519302, + -0.005044205579906702, + 0.002629239344969392, + 0.016059963032603264, + 0.0011407420970499516, + -0.017338577657938004, + -0.016832752153277397, + 0.03487386554479599, + -0.0010546814883127809, + 0.017324527725577354, + -0.022424936294555664, + 0.012203043326735497, + -0.0013304267777130008, + 0.004612145945429802, + 0.03369360417127609, + 0.023773804306983948, + -0.0053357575088739395, + -0.0012926654890179634, + 0.01437387801706791, + 0.007130736019462347, + 0.006368484813719988, + -0.025923563167452812, + 0.0013040816411376, + -0.0017256030114367604, + -0.025459889322519302, + 0.021975312381982803, + -0.026485590264201164, + 0.003962300717830658, + -0.00903460755944252, + -0.016509585082530975, + -0.01523097138851881, + 0.0007872789283283055, + -0.03254144638776779, + 0.020570240914821625, + 0.014542486518621445, + -0.03071485459804535, + -0.010053284466266632, + 0.015582239255309105, + -0.0029892888851463795, + 0.011345949023962021, + 0.037009574472904205, + -0.01279317308217287, + -0.01107196044176817, + -0.0208653062582016, + -0.038161732256412506, + -0.006793519016355276, + -0.0024676562752574682, + 5.664192940457724e-5, + -0.02191910892724991, + 0.022214174270629883, + 0.030771058052778244, + -0.03779641538858414, + -0.001949536264874041, + 0.004524329211562872, + -0.001433172612451017, + -0.004229264333844185, + -0.024265578016638756, + -0.015961607918143272, + -0.007460927590727806, + -0.026218626648187637, + -0.00549734104424715, + 0.01820972189307213, + -0.025979764759540558, + 0.03391841799020767, + -0.013692418113350868, + 0.016621991991996765, + -0.008858973160386086, + -0.028326233848929405, + -0.003660210408270359, + 0.01878580078482628, + -0.015188818797469139, + -0.031333085149526596, + 0.0003099938330706209, + 0.010088411159813404, + 0.012174941599369049, + 0.020766951143741608, + 0.002277971478179097, + -0.012736969627439976, + -0.005114458967000246, + 0.031445492058992386, + -0.017001360654830933, + 0.0019196784123778343, + 0.019727198407053947, + 0.005103921052068472, + -0.015736795961856842, + -0.00014050710888113827, + -0.009716066531836987, + -0.005223351996392012, + 0.019066816195845604, + -0.013249821029603481, + -0.01819567196071148, + -0.01691705733537674, + 0.0030156339053064585, + -0.016621991991996765, + 0.0034793075174093246, + -0.019853655248880386, + -0.002866345224902034, + -0.07834676653146744, + -0.027764204889535904, + -0.03071485459804535, + 0.02120252326130867, + 0.0202751774340868, + 0.0008188930223695934, + 0.0010502906516194344, + 0.019066816195845604, + -0.0010906864190474153, + 0.017661744728684425, + 0.018560990691184998, + -0.018279975280165672, + 0.04445645213127136, + 0.027511293068528175, + -0.0036461595445871353, + 0.019755300134420395, + -0.005240915343165398, + -0.008627137169241905, + 0.018462635576725006, + -0.023001015186309814, + -0.005079332273453474, + 0.02697736583650112, + 0.005427087191492319, + -0.009147013537585735, + -0.013060136698186398, + 0.030995870009064674, + -0.0012575386790558696, + 0.0017545826267451048, + -0.014240396209061146, + -0.037824515253305435, + 0.022200124338269234, + 0.012863426469266415, + -0.010797971859574318, + -0.002190154744312167, + 0.022270377725362778, + 0.029141174629330635, + -0.000195282933418639, + -0.01552603580057621, + 0.021820755675435066, + -0.008374224416911602, + 0.01589135453104973, + 0.016888955608010292, + -0.0056729745119810104, + -0.016369078308343887, + -0.011605887673795223, + -0.018926307559013367, + -0.01171126775443554, + -0.030658653005957603, + -0.01025701966136694, + 0.014149066060781479, + 0.01153563428670168, + 0.01818162016570568, + -0.012652665376663208, + -0.01982555352151394, + 0.0041590104810893536, + -0.009877650067210197, + 0.01499210949987173, + -0.0047737290151417255, + 0.018027063459157944, + 0.004875597078353167, + 0.05280257388949394, + 0.015315275639295578, + -0.0033739269711077213, + -0.0018933333922177553, + -0.00686728535220027, + 0.022663798183202744, + 0.012779122218489647, + 0.015821101143956184, + 0.03754350170493126, + -0.004699963144958019, + -0.00317370449192822, + -0.016397180035710335, + 0.017816301435232162, + 0.014240396209061146, + -0.010868225246667862, + -0.0023675449192523956, + 0.017071614041924477, + 0.01693110726773739, + 0.0012188992695882916, + -0.02503836713731289, + -0.007671688217669725, + -0.007847322151064873, + 0.008767643943428993, + -0.016734397038817406, + -0.024827606976032257, + -0.016200469806790352, + 0.00793865229934454, + -0.03670045733451843, + 0.01192905381321907, + 0.004102807957679033, + 0.018097316846251488, + -0.003507408779114485, + 0.040522251278162, + 0.01912301778793335, + -0.01747908443212509, + 0.007784094195812941, + 0.001569288782775402, + -0.01175342034548521, + -0.003423104528337717, + -0.00044171925401315093, + 0.0021813728380948305, + -0.03523918241262436, + 0.01541363075375557, + -0.030040420591831207, + -0.004601608030498028, + 0.000858849729411304, + 0.0021585405338555574, + 0.001549969078041613, + -0.028340285643935204, + -0.0038815089501440525, + 0.00903460755944252, + 0.024153172969818115, + -0.026387235149741173, + 0.01736667938530445, + -0.006540606264024973, + 0.028551045805215836, + -0.018856054171919823, + -0.01546983327716589, + -0.027623698115348816, + -0.006386048160493374, + -0.0002665244392119348, + 0.023787854239344597, + 0.0044786641374230385, + 0.005911836866289377, + -0.004468126222491264, + 0.010299171321094036, + -0.000862362387124449, + -0.005346295889467001, + -0.0018142980989068747, + 0.02118847332894802, + -0.0033300186041742563, + -0.0033229931723326445, + -0.012849375605583191, + -0.003340556751936674, + -0.015933506190776825, + 0.011514558456838131, + 0.022438986226916313, + -0.004081731662154198, + 0.021455436944961548, + -0.04024123772978783, + -0.010664490051567554, + 0.000853580713737756, + 0.006147186271846294, + -0.0008368954877369106, + -0.02503836713731289, + -0.004303030204027891, + -0.0019302164437249303, + -0.0017387755215168, + 0.008325046859681606, + -0.016481485217809677, + -0.012203043326735497, + 0.019530488178133965, + 0.024153172969818115, + -0.0028874212875962257, + -0.010102461092174053, + -0.020823154598474503, + -0.019305678084492683, + 0.008360173553228378, + -0.005571106914430857, + -0.008936252444982529, + -0.01701541244983673, + 0.008044032379984856, + 0.0003416079271119088, + 0.01912301778793335, + -1.1278989404672757e-5, + -0.0026696352288126945, + -0.02422342635691166, + -0.0038534076884388924, + -0.007959728129208088, + -0.010165689513087273, + -0.010088411159813404, + -0.0006388683104887605, + -0.002253382932394743, + -0.017774149775505066, + -0.0035126779694110155, + -0.005908324383199215, + -0.013509758748114109, + -0.028775857761502266, + 0.02975940704345703, + 0.013587038032710552, + -0.008894100785255432, + 0.02061239443719387, + -0.006329845637083054, + 0.02687901072204113, + 0.003498627105727792, + 0.016031861305236816, + -0.0013198887463659048, + 0.002871614182367921, + 0.014697044156491756, + -0.012132789008319378, + 0.029450291767716408, + 0.022186072543263435, + -0.014584638178348541, + 0.010299171321094036, + 0.01631287671625614, + -0.019516438245773315, + 0.03383411467075348, + 0.02363329753279686, + -0.0016843290068209171, + -0.017549337819218636, + -0.02689306251704693, + -0.0035776623990386724, + 0.011254619807004929, + -0.0032158566173166037, + -0.021708348765969276, + 0.0013813605764880776, + -0.05342080444097519, + 0.0035179469268769026, + 0.017984909936785698, + -0.008472578600049019, + 0.010748794302344322, + 0.011577785946428776, + 0.01759149134159088, + -0.011338924057781696, + -0.0009730117744766176, + -0.004278441425412893, + -0.003899072529748082, + -0.03335638716816902, + 0.0016518367920070887, + -0.024012666195631027, + 0.03487386554479599, + 0.0024184787180274725, + 0.015202869661152363, + -0.01199228223413229, + 0.00497746467590332, + 0.023436587303876877, + -0.0032299072481691837, + -0.037121981382369995, + -0.03557640314102173, + -0.005876710172742605, + -0.0101375887170434, + 0.02222822606563568, + -0.004562968388199806, + -0.014036661013960838, + -0.003772615920752287, + -0.0040536304004490376, + 0.045243289321660995, + -0.009069734252989292, + 0.017465034499764442, + 0.010046258568763733, + -0.021146319806575775, + -0.02307126857340336, + 0.003196536796167493, + 0.007678713649511337, + 0.03692527115345001, + 0.028705604374408722, + -0.02385810762643814, + -0.010039233602583408, + 0.0023921336978673935, + 0.024743303656578064, + 0.015301224775612354, + -0.018013011664152145, + -0.021834805607795715, + 0.016860853880643845, + -0.003930686507374048, + -0.003208831185474992, + 0.0007025355589576066, + -0.01898251101374626, + 0.015020210295915604, + -0.0030700804200023413, + -0.004404897801578045, + -0.021820755675435066, + 0.012280321680009365, + -0.01922137290239334, + 0.021272776648402214, + -0.021132269874215126, + 0.006393073592334986, + 0.021609993651509285, + 0.013931280001997948, + -0.002067210851237178, + 0.012034433893859386, + 0.004780754446983337, + -0.011254619807004929, + 0.004383821971714497, + 0.018336178734898567, + 0.003691824385896325, + 0.01736667938530445, + -0.00875359307974577, + -0.01291260402649641, + 0.024940012022852898, + -0.013601088896393776, + 0.013615139760077, + -0.016355028375983238, + 0.017760099843144417, + 0.008339096792042255, + -9.720238449517637e-5, + 0.02361924573779106, + -0.006393073592334986, + 0.04243315011262894, + -0.03313157707452774, + 0.021806703880429268, + 0.004928287118673325, + 0.015694644302129745, + -0.0013717006659135222, + 0.004187112208455801, + -0.021371131762862206, + 0.007531181443482637, + 5.3595780627802014e-5, + 0.01655173860490322, + 0.002782040974125266, + 0.023661397397518158, + 0.0024307731073349714, + -0.028916364535689354, + 0.0013295485405251384, + 0.002936598611995578, + -0.00017113327339757234, + -0.0019477799069136381, + 0.014612739905714989, + 0.0015122077893465757, + 0.0061928508803248405, + -0.0047034756280481815, + 0.005876710172742605, + -0.028466740623116493, + -0.015020210295915604, + 0.002357006771489978, + 0.003396759508177638, + 0.029141174629330635, + 0.006877823267132044, + -0.008964354172348976, + -0.030040420591831207, + -0.02700546756386757, + -0.03012472577393055, + 0.024012666195631027, + 0.0036250834818929434, + -0.03785261511802673, + -0.001111762598156929, + 0.005743228364735842, + -0.014584638178348541, + 0.019558589905500412, + -0.010299171321094036, + -0.004362745676189661, + 0.05651196092367172, + 0.002831218298524618, + -0.02561444602906704, + 0.01047480572015047, + -0.010151638649404049, + -0.0035214596427977085, + -0.004766704048961401, + -0.0047561656683683395, + 0.003110476303845644, + 0.021174421533942223, + 0.020528089255094528, + -0.0009747681324370205, + 0.008556882850825787, + 0.0359417200088501, + 0.008844923228025436, + 0.012589437887072563, + 0.03428373485803604, + 0.027483191341161728, + 0.014837550930678844, + 0.0037691034376621246, + -0.005964526906609535, + 0.0014867408899590373, + -0.003698849817737937, + 0.02964700199663639, + 0.021343030035495758, + 0.003976351115852594, + 0.01701541244983673, + -0.023956462740898132, + -0.028354335576295853, + -0.024771403521299362, + -0.01223114412277937, + 0.008739542216062546, + 0.017998961731791496, + -0.006393073592334986, + 0.013495707884430885, + 0.029253581538796425, + 0.002002226421609521, + 0.0020777489989995956, + -0.015385529026389122, + 0.0104326531291008, + 0.012996908277273178, + -0.0008140630670823157, + -0.011275695636868477, + -0.01223114412277937, + 0.008592010475695133, + -0.0040360670536756516, + 0.006312282290309668, + 0.021638095378875732, + 0.000694632064551115, + 0.012814248912036419, + 0.009238342754542828, + -0.012434879317879677, + -0.026485590264201164, + -0.010516957379877567, + -0.0033475819509476423, + 0.007741942070424557, + 0.010664490051567554, + -0.012982857413589954, + 0.004657811019569635, + -0.013748621568083763, + -0.014205269515514374, + 0.002541422378271818, + 0.03672856092453003, + 0.009322647005319595, + 0.02444823831319809, + -0.04243315011262894, + -0.004492715001106262, + -0.027764204889535904, + -0.023548992350697517, + 0.00048431046889163554, + -0.006112059578299522, + -0.002854050835594535, + 0.014057736843824387, + 0.004749140236526728, + 0.019151119515299797, + 0.016748448833823204, + 0.023563042283058167, + -0.008163463324308395, + -0.025544192641973495, + -0.00393771193921566, + 0.02641533687710762, + 0.0012259245850145817, + -0.019193271175026894, + -0.023085318505764008, + -0.01528717391192913, + 0.015146667137742043, + 0.019432133063673973, + 0.016059963032603264, + -0.014338751323521137, + -0.02699141576886177, + 0.0007749845390208066, + 0.0004531354352366179, + -0.01600375957787037, + -0.020682647824287415, + 0.010847149416804314, + -0.0075592827051877975, + 0.0005782746011391282, + 0.006582758389413357, + -0.0040887570939958096, + 0.040859468281269073, + -0.013242795132100582, + 0.012013358063995838, + 0.0023693011607974768, + 0.03658805415034294, + -0.005476264748722315, + -0.01728237420320511, + -0.030630551278591156, + 0.00738364877179265, + -0.027497243136167526, + -0.017521237954497337, + -0.015034261159598827, + 0.009336697869002819, + -0.014120965264737606, + 0.026204576715826988, + -0.008774668909609318, + 0.028677502647042274, + 0.01863124407827854, + -0.004225751385092735, + 0.03071485459804535, + -0.003684799186885357, + -0.018799852579832077, + 0.043613407760858536, + 0.007896499708294868, + 0.003474038327112794, + 0.0010713667143136263, + 0.00869036465883255, + 0.0024764379486441612, + -0.015540086664259434, + 0.018378330394625664, + -0.013530835509300232, + -0.0032474705949425697, + -0.020078467205166817, + 0.003979864064604044, + -0.02109011821448803, + 0.01784440316259861, + 0.036559950560331345, + -0.022214174270629883, + -0.011437279172241688, + -0.004050117451697588, + 0.004471638705581427, + -0.03847084939479828, + -0.023253927007317543, + 0.02073884941637516, + 0.01704351231455803, + -0.018560990691184998, + -0.011078986339271069, + -0.0024202349595725536, + -0.00016520562348887324, + -0.0214273352175951, + 0.02769395150244236, + -0.016481485217809677, + 0.01736667938530445, + 0.02271999977529049, + 0.034930068999528885, + -0.02132898010313511, + 0.039932120591402054, + -0.013003933243453503, + -0.026949264109134674, + 0.028241930529475212, + -0.005528954789042473, + 0.0075241560116410255, + -0.0051776873879134655, + 0.000993209658190608, + 0.015736795961856842, + -0.03060244955122471, + -0.015034261159598827, + -0.020781002938747406, + 0.02767990157008171, + 0.0008614842663519084, + 0.028888262808322906, + -0.0144722331315279, + -0.0335812009871006, + -0.003438911633566022, + 0.021638095378875732, + -0.01413501612842083, + 0.00282419309951365, + 0.017099715769290924, + 0.010004106909036636, + 0.0011389857390895486, + -0.01500615943223238, + 0.005718639586120844, + -0.024630896747112274, + 0.0026854423340409994, + 0.0006669696886092424, + -0.009666889905929565, + 0.00582401966676116, + -0.006010191980749369, + -0.01031322218477726, + -0.002501026727259159, + -0.016748448833823204, + -0.014598689042031765, + -0.015146667137742043, + -0.003941224422305822, + -0.0010722449515014887, + 0.014106914401054382, + -0.004826419521123171, + 0.004910723771899939, + 0.0011995794484391809, + -0.010516957379877567, + -0.0009958441369235516, + 0.007085071410983801, + -0.00909783598035574, + 0.027188125997781754, + 0.010102461092174053, + -0.0010880519403144717, + 0.009421002119779587, + -0.006575732957571745, + -0.021525690332055092, + -0.00515661109238863, + 0.012350575067102909, + -0.00692348787561059, + 0.0032790848053991795, + 0.014809450134634972, + -0.007418775465339422, + 0.06778062880039215, + 0.0046507855877280235, + -0.00043096166336908937, + -0.004299517720937729, + 0.023183673620224, + -0.005479777231812477, + -0.005918862298130989, + 0.0028154111932963133, + 0.02048593759536743, + -0.006898899096995592, + 0.0011266914661973715, + -0.003138577565550804, + 0.003979864064604044, + 0.0043908474035561085, + -0.021595943719148636, + 0.011345949023962021, + 0.024237478151917458, + 0.018813902512192726, + -0.0005198763101361692, + 0.02096366137266159, + 0.002265677321702242, + -0.003755052573978901, + -0.00631579477339983, + 0.031220680102705956, + -0.022649746388196945, + 0.027511293068528175, + 0.010439679026603699, + -0.0014041929971426725, + 0.03374980762600899, + 0.02353494241833687, + -0.0059329126961529255, + 0.00115215836558491, + -0.025754954665899277, + 0.00869036465883255, + 0.003101694630458951, + 0.002292022341862321, + 0.007099121809005737, + 0.007320420816540718, + -0.007615485694259405, + 0.009062709286808968, + 0.003691824385896325, + -0.014654891565442085, + 0.012849375605583191, + 0.023253927007317543, + -0.01256836112588644, + -0.006670575123280287, + 0.00100726040545851, + -0.005402498412877321, + -0.009800370782613754, + 0.00032206866308115423, + -0.01107196044176817, + -0.012083611451089382, + -0.0023464688565582037, + -0.00283824373036623, + 0.009470179677009583, + -0.0005453432095237076, + 0.007053457200527191, + -0.008648212999105453, + -0.0012101174797862768, + 0.007078045979142189, + -0.02094961144030094, + -0.011704242788255215, + -0.020415684208273888, + -0.014289573766291142, + -0.03419943153858185, + -0.01181664876639843, + -0.008444477804005146, + -0.025291280820965767, + -0.0011653308756649494, + -0.0015069388318806887, + -0.003927174024283886, + 0.02596571482717991, + -0.012385701760649681, + -0.03197941929101944, + -0.009680939838290215, + 0.021933160722255707, + 0.006990228779613972, + -0.002919035265222192, + 0.0036145455669611692, + 0.015371478162705898, + 0.0026713914703577757, + 0.012596462853252888, + -0.005388448014855385, + -0.00643522571772337, + 0.0089713791385293, + -0.0019460235489532351, + 0.023661397397518158, + -0.028087371960282326, + 0.019544539973139763, + -0.020935559645295143, + -0.022214174270629883, + 0.0018125417409464717, + -2.490433644197765e-6, + -0.009301571175456047, + 0.007868397980928421, + -0.013397353701293468, + -0.011950129643082619, + 0.009048658423125744, + 0.015540086664259434, + -0.003986889496445656, + 0.012343550100922585, + 0.003447693306952715, + -0.012308423407375813, + -0.0017633643001317978, + -0.007587383966892958, + -0.013903179205954075, + 0.007847322151064873, + 0.024490389972925186, + -0.041871119290590286, + 0.0021111194510012865, + -0.005304143764078617, + -0.0101375887170434, + 0.01413501612842083, + -0.0035003835801035166, + -0.027511293068528175, + 0.012364625930786133, + 0.01714186742901802, + -0.004808856174349785, + -0.0008355782483704388, + -0.024251528084278107, + -0.004281954374164343, + 0.007482003886252642, + 0.012069561518728733, + 0.0029629438649863005, + 0.006586270872503519, + -0.001961830537766218, + -0.010559109970927238, + -0.00744687719270587, + -0.022691898047924042, + 0.006905924528837204, + 0.014879703521728516, + -0.0040571428835392, + 0.013558936305344105, + 0.0027188125532120466, + -0.003951762802898884, + -0.009385875426232815, + -0.005528954789042473, + 0.0136081138625741, + 0.013467607088387012, + -0.022888608276844025, + 0.015511985868215561, + 0.017858454957604408, + 0.001708917785435915, + 0.008093209937214851, + 0.020176822319626808, + 0.021806703880429268, + -0.00402904162183404, + -0.01343248039484024, + 0.024125071242451668, + 0.00019747835176531225, + 0.04549620300531387, + -0.03369360417127609, + -0.0021936672274023294, + -0.0008671923424117267, + -0.013193617574870586, + 0.0029594311490654945, + -0.009238342754542828, + 0.013629189692437649, + -0.015315275639295578, + 0.008184539154171944, + -0.008669288828969002, + 0.005153098609298468, + 0.007643586955964565, + -0.009533408097922802, + -0.01152860838919878, + 0.007208014838397503, + 0.024771403521299362, + 0.016186419874429703, + 0.026373185217380524, + -0.014092863537371159, + -0.021624045446515083, + 0.010278095491230488, + 0.0058802226558327675, + -0.029337884858250618, + 0.01797086000442505, + -0.00985657423734665, + -3.498956357361749e-5, + -0.014809450134634972, + -0.02779230661690235, + 0.005528954789042473, + -0.007257192395627499, + -0.007278268691152334, + 0.008093209937214851, + -0.005528954789042473, + 0.021736450493335724, + -0.027019517496228218, + 0.008943277411162853, + 0.002019789768382907, + 0.008374224416911602, + -0.013291972689330578, + -0.02224227599799633, + 0.010158664546906948, + 0.009758219122886658, + -6.196583126438782e-5, + -0.012027408927679062, + -0.012322474271059036, + 0.009568534791469574, + 0.031220680102705956, + 0.0019407544750720263, + -0.0014393198071047664, + -0.009336697869002819, + -0.000857093371450901, + 0.009891700930893421, + -0.0075241560116410255, + -0.0030173903796821833, + -0.012420828454196453, + 0.003709387732669711, + -0.011029808782041073, + -0.011964180506765842, + 0.02190505899488926, + -0.04392252489924431, + -0.028705604374408722, + 0.008957328274846077, + 0.012835324741899967, + -0.011015757918357849, + 0.017352629452943802, + 0.005269016604870558, + 0.009484230540692806, + 0.008556882850825787, + 0.008325046859681606, + 0.00961771234869957, + 0.00029945580172352493, + 0.015357427299022675, + 0.0070218429900705814, + -0.024588745087385178, + 0.005911836866289377, + 0.016270723193883896, + 0.020373530685901642, + 0.01783035323023796, + 0.0018757699290290475, + 0.03254144638776779, + -0.017436932772397995, + -0.01216791570186615, + 0.008486629463732243, + -0.015919456258416176, + 0.03661615401506424, + 0.009027581661939621, + -0.016846802085638046, + 0.007805170025676489, + 0.0044962274841964245, + -0.010039233602583408, + -0.010826073586940765, + -0.016888955608010292, + -0.0030103649478405714, + 0.010172715410590172, + -0.007467953022569418, + 0.0023833520244807005, + -0.002643289975821972, + 0.005332245025783777, + -2.800537367875222e-5, + -0.010826073586940765, + -0.020218973979353905, + -0.004900185391306877, + 0.011718293651938438, + 0.017310475930571556, + 0.008549857884645462, + -0.014528435654938221, + 0.011584811843931675, + -0.0032773283310234547, + -0.017858454957604408, + 0.01982555352151394, + 0.012336524203419685, + -0.01899656094610691, + 0.011381076648831367, + -0.002583574503660202, + 0.012336524203419685, + -0.01597565971314907, + -0.006898899096995592, + 0.014654891565442085, + -0.006993741728365421, + 0.00692348787561059, + 0.0072642178274691105, + 0.011662090197205544, + 0.018364280462265015, + -0.004527841694653034, + 0.001993444748222828, + 0.0124559560790658, + -0.0179427582770586, + -0.003456474980339408, + 0.0037972046993672848, + -0.010285120457410812, + 0.000987940700724721, + -0.01760554127395153, + -0.0038182807620614767, + 0.006976178381592035, + -0.034592851996421814, + -0.00671624019742012, + 0.006393073592334986, + -0.002820680383592844, + 0.003163166344165802, + -0.006565195042639971, + -0.018518837168812752, + 0.011381076648831367, + -0.01912301778793335, + -0.008936252444982529, + -0.006066394504159689, + -0.016074012964963913, + 0.018223771825432777, + 0.00921726692467928, + 0.011324873194098473, + 0.01140917744487524, + 0.006217439658939838, + -0.016846802085638046, + -0.012090637348592281, + 0.0026942240074276924, + 0.008072134107351303, + 0.021005813032388687, + 0.007179913576692343, + -0.002569523872807622, + 0.027708003297448158, + 0.015511985868215561, + -0.0016887198435142636, + 0.008563908748328686, + -0.011641014367341995, + -0.01216791570186615, + -0.004345182329416275, + -0.004875597078353167, + 0.004847495350986719, + -0.013917230069637299, + 0.0014542486751452088, + -0.009413976222276688, + 0.001996957464143634, + 0.003384465118870139, + -0.00857093371450901, + 0.009498280473053455, + 0.04389442130923271, + 0.0197131484746933, + 0.007636561524122953, + 0.007278268691152334, + -0.02107606641948223, + 0.026092171669006348, + 0.005160123575478792, + -0.010397526435554028, + -0.009428027085959911, + 0.002646802691742778, + 0.007601434830576181, + -0.009111885912716389, + -0.005051230546087027, + -0.01899656094610691, + -0.0020391095895320177, + -0.027862560003995895, + -0.00020186920301057398, + -0.01565249264240265, + -0.009449103847146034, + 0.016523636877536774, + 0.034339938312768936, + 0.011317848227918148, + 0.0006300865788944066, + 0.01180962286889553, + 0.016959208995103836, + 0.012006333097815514, + 0.01100873202085495, + 0.01077689602971077, + -0.013804824091494083, + -0.011121137998998165, + 0.007172888144850731, + -0.003688311669975519, + 0.026794707402586937, + -0.008521756157279015, + 0.01634097658097744, + -0.02572685293853283, + 0.00961068645119667, + -0.012097662314772606, + 0.009406951256096363, + -0.012125764042139053, + 0.01065043918788433, + -0.00628769351169467, + 0.021750500425696373, + -0.004984490107744932, + 0.005609746556729078, + -0.006825133226811886, + -0.028354335576295853, + -0.015638442710042, + -0.008008905686438084, + -0.020598342642188072, + 0.010320247150957584, + -0.001707161427475512, + 0.023661397397518158, + -0.012174941599369049, + 0.02828408218920231, + 0.04563670977950096, + 0.004327618982642889, + -0.0038147680461406708, + -0.0008614842663519084, + 0.009589610621333122, + 0.029618900269269943, + 0.011577785946428776, + 0.018251873552799225, + 0.011465380899608135, + -0.00949125550687313, + -0.02850889414548874, + 0.010966580361127853, + 0.01383292581886053, + -0.0024026716127991676, + -0.0005541249411180615, + -0.013186592608690262, + -0.01899656094610691, + 0.03546399623155594, + 0.0004469882696866989, + 0.0006709214649163187, + -0.014598689042031765, + -0.004450562875717878, + 0.014626790769398212, + -0.014416029676795006, + 0.004808856174349785, + -0.01715591922402382, + -0.01773199811577797, + 0.02016277052462101, + 0.01968504674732685, + -0.01655173860490322, + 0.005398985929787159, + 0.014015584252774715, + -0.010840123519301414, + -0.0021392207127064466, + 0.007200989406555891, + -0.006733803544193506, + 0.0214273352175951, + 0.000777619075961411, + 0.00341783557087183, + 0.003979864064604044, + 0.006115572061389685, + 0.010172715410590172, + -0.0024079405702650547, + 0.004784267395734787, + 0.01863124407827854, + -0.024363933131098747, + 0.02048593759536743, + -0.007106147240847349, + -0.010531008243560791, + 0.005139047745615244, + 0.0038709710352122784, + -0.010734743438661098, + 0.004815881140530109, + 0.007306369952857494, + -0.030742956325411797, + -0.014261472038924694, + 0.030518144369125366, + -0.01736667938530445, + 0.008254792541265488, + 0.008908150717616081, + -0.02191910892724991, + -0.016059963032603264, + 0.005511391442269087, + 0.011317848227918148, + 0.0018283488461747766, + -0.009336697869002819, + 0.0020180335268378258, + 0.002335930708795786, + 0.012905578128993511, + -0.0015877303667366505, + -0.005620284471660852, + 0.011184366419911385, + -0.002634508302435279, + 0.0012162646744400263, + -0.0029734817799180746, + -0.009189165197312832, + 0.013355201110243797, + 0.0038147680461406708, + 0.04262986034154892, + -0.03996022418141365, + 0.004102807957679033, + -0.006593296304345131, + -0.012624564580619335, + 0.020373530685901642, + -0.001457761274650693, + -0.0019583178218454123, + 0.014697044156491756, + -0.0009835497476160526, + -0.0017765368102118373, + 0.009322647005319595, + -0.011655065231025219, + 0.015062362886965275, + 0.020471885800361633, + -0.0028066295199096203, + -0.0013453556457534432, + 0.01296880654990673, + -0.020682647824287415, + 0.012245194986462593, + 0.022537341341376305, + -0.014261472038924694, + -0.017774149775505066, + 0.018237823620438576, + -0.016383130103349686, + 0.01944618485867977, + 0.036784764379262924, + -0.009582585655152798, + -0.013200643472373486, + 0.01863124407827854, + -0.012076586484909058, + -0.00857795961201191, + 0.00943505298346281, + 0.009983030147850513, + 0.012491082772612572, + -0.017324527725577354, + 0.018701497465372086, + -0.0037901795003563166, + 0.0044962274841964245, + 0.02176455222070217, + -0.0013330612564459443, + -0.005082844756543636, + 0.00445758830755949, + -0.012505133636295795, + 0.0067548793740570545, + 0.027862560003995895, + 0.019080866128206253, + 0.019656945019960403, + -0.023717600852251053, + 0.021230624988675117, + 0.00793865229934454, + 0.006055856589227915, + 0.0032123439013957977, + -0.0055254423059523106, + -0.008184539154171944, + 0.015385529026389122, + -0.0007284415769390762, + 0.006691651418805122, + 0.01437387801706791, + 0.005110946483910084, + 0.011851775459945202, + 0.005142560228705406, + -0.018392382189631462, + -0.004706988111138344, + -0.010917402803897858, + 0.006937538739293814, + 0.025853309780359268, + -0.013945330865681171, + -0.00010000154725275934, + -0.010706641711294651, + 0.013411403633654118, + -0.007200989406555891, + -0.017113765701651573, + 0.012224119156599045, + -0.004759678617119789, + -0.013509758748114109, + 0.012954755686223507, + 0.022902660071849823, + 0.015497935004532337, + 0.013523809611797333, + 0.03675666078925133, + -0.007805170025676489, + 0.013003933243453503, + 0.0173807293176651, + 0.015778949484229088, + -0.002223525196313858, + 0.0030841310508549213, + -0.02280430495738983, + -0.0032615214586257935, + 0.007545231841504574, + -0.016481485217809677, + 0.010018156841397285, + -0.0225794930011034, + 0.004359233193099499, + 0.0370657779276371, + 0.012996908277273178, + 0.015132616274058819, + -0.01153563428670168, + -0.005887248087674379, + 0.005016103852540255, + -0.002580061787739396, + 0.029731305316090584, + -0.01990985870361328, + -0.010116511955857277, + -0.012343550100922585, + -0.014570587314665318, + -0.01691705733537674, + -0.001253147842362523, + 0.019038714468479156, + 0.015048312023282051, + 0.002580061787739396, + 0.017675794661045074, + -0.021258726716041565, + -0.011064935475587845, + 0.00014895950153004378, + 0.009772269986569881, + -0.005103921052068472, + 0.006765417754650116, + -0.033637404441833496, + -0.004766704048961401, + 0.037712108343839645, + -0.009083785116672516, + -0.00011811379226855934, + 0.0029488930013030767, + -0.029028769582509995, + -0.004555942956358194, + -0.015146667137742043, + 0.024855708703398705, + 0.019614793360233307, + -0.002889177529141307, + 0.013249821029603481, + -0.014289573766291142, + 0.024701150134205818, + -0.002330661751329899, + -0.022734051570296288, + 0.009442077949643135, + 0.018504787236452103, + -0.004127396270632744, + -0.005430600140243769, + -0.0016465677181258798, + -0.015371478162705898, + -0.02062644436955452, + -0.015245022252202034, + -0.0018634756561368704, + 0.01175342034548521, + -0.002011008094996214, + 0.004180086776614189, + 0.00031745826709084213, + 0.006586270872503519, + -0.01691705733537674, + -0.007063995115458965, + -0.031108275055885315, + -0.0051952507346868515, + -0.0011021026875823736, + -0.0068918741308152676, + 0.0007170253666117787, + 0.004538379609584808, + -0.006235003005713224, + 0.03920148313045502, + 0.004120371304452419, + 0.02593761309981346, + 0.012596462853252888, + -0.009020556695759296, + 0.003758565289899707, + 0.00787542387843132, + 0.006073419936001301, + 0.0057924059219658375, + -0.005356833804398775, + 0.017001360654830933, + 0.007650612387806177, + 0.004847495350986719, + -0.019305678084492683, + -0.0026485591661185026, + 0.031445492058992386, + -0.01205551065504551, + -0.026808757334947586, + 0.019038714468479156, + 0.0006845330935902894, + -0.018954409286379814, + -0.02110416814684868, + 0.001719455816783011, + -0.02212987095117569, + 0.001514842384494841, + -0.00317370449192822, + -0.011619938537478447, + 0.0011820161016657948, + 0.00026696352870203555, + -0.014500333927571774, + -0.007148299366235733, + -0.0008140630670823157, + -0.0014603958697989583, + -0.003402028465643525, + -0.009505306370556355, + 0.009863599203526974, + -0.01489375438541174, + 0.013980457559227943, + -0.004387334454804659, + -0.025769004598259926, + 0.00738364877179265, + -0.03332828730344772, + 0.04265796020627022, + -0.0008079159306362271, + -0.01608806475996971, + -0.02547393925487995, + -0.004260878078639507, + -0.0038323316257447004, + 1.9059021724388003e-5, + -0.014036661013960838, + 0.02144138514995575, + 0.0032544960267841816, + 0.003452962264418602, + -0.016818702220916748, + -0.004770216532051563, + 0.002873370423913002, + -0.028340285643935204, + 0.013277922756969929, + -0.0032369326800107956, + -0.015497935004532337, + -0.006273642648011446, + -7.645563164260238e-5, + 0.015722746029496193, + -0.018013011664152145, + 0.0074539026245474815, + -0.0012803710997104645, + 0.014001534320414066, + -0.017169969156384468, + -1.5807050658622757e-5, + 0.009132962673902512, + -0.006322820205241442, + -0.009997081011533737, + -0.0007815708522684872, + 0.011774496175348759, + -0.008402325212955475, + -0.0002889177412725985, + -0.015947557985782623, + -0.015568188391625881, + 0.003387977834790945, + -0.004310055635869503, + -0.02710382267832756, + -0.014317674562335014, + -0.0214273352175951, + -0.005592183209955692, + -0.0046507855877280235, + 0.00723611656576395, + 0.006653011776506901, + -0.012849375605583191, + -0.007411750499159098, + -0.01761959120631218, + 0.008381249383091927, + 0.004735089838504791, + 0.005149585660547018, + 0.0032299072481691837, + 0.0028364872559905052, + 0.014416029676795006, + 0.009976005181670189, + 0.0006537971785292029, + -0.024420136585831642, + -0.0248978603631258, + 0.015961607918143272, + -0.010214867070317268, + -0.00744687719270587, + 0.018139468505978584, + -0.007102634757757187, + 0.013320074416697025, + -0.009259418584406376, + 0.012891528196632862, + 0.007099121809005737, + -0.012828299775719643, + 0.0005321706994436681, + 0.015807051211595535, + -0.006312282290309668, + -0.004506765864789486, + 0.020991763100028038, + 0.011788547039031982, + 0.005592183209955692, + -0.0049353125505149364, + -0.013467607088387012, + -0.012786147184669971, + 0.0013269140617921948, + 0.001546456478536129, + -0.01832212693989277, + 0.008774668909609318, + -0.027946865186095238, + -0.02724432945251465, + -0.03223233297467232, + 0.008001879788935184, + 0.02616242505609989, + 0.0024553618859499693, + 0.002551960526034236, + 0.012835324741899967, + -0.02168024703860283, + 0.011760445311665535, + 0.0035882005468010902, + -0.01280722301453352, + 0.0202751774340868, + -0.005592183209955692, + 0.00013249382027424872, + -0.016987310722470284, + 0.01771794632077217, + 0.0034757948014885187, + -0.004018503241240978, + -0.008901125751435757, + 0.016158318147063255, + -0.004440024960786104, + -0.008788719773292542, + 0.026499642059206963, + -0.004320593550801277, + 0.02168024703860283, + 0.0019337291596457362, + -0.004148472566157579, + -0.004260878078639507, + 0.0020795052405446768, + 0.021258726716041565, + -0.009983030147850513, + -0.00949125550687313, + -0.035379692912101746, + -0.0020795052405446768, + -0.027033569291234016, + -0.0011995794484391809, + 0.007411750499159098, + 0.016734397038817406, + 0.0036215707659721375, + 0.009168089367449284, + -0.006266617216169834, + -0.009006505832076073, + -0.020668596029281616, + -0.014444131404161453, + -0.019895806908607483, + 0.019530488178133965, + 0.004882622044533491, + 0.010882276110351086, + 0.0072642178274691105, + 0.010102461092174053, + 0.014359827153384686, + -0.03397462144494057, + -0.008606060408055782, + 0.013453556224703789, + -0.007113172672688961, + 0.006326332688331604, + -0.00506528140977025, + -0.005153098609298468, + -0.010559109970927238, + 0.004591070115566254, + 0.010762845166027546, + -0.012505133636295795, + -0.00021251701400615275, + -0.0003253617906011641, + 0.03172650560736656, + -0.004963413812220097, + 0.013875077478587627, + 0.0002152612869394943, + 0.006554656662046909, + 0.008205615915358067, + -0.02212987095117569, + -0.00619636382907629, + -0.0015894867246970534, + 0.0012786147417500615, + 0.007777068763971329, + 0.009603661485016346, + -0.0008838775684125721, + 0.011317848227918148, + 0.024616846814751625, + -0.014113939367234707, + 0.0001836471928982064, + 0.023380383849143982, + -0.028017118573188782, + -0.008353147655725479, + -0.003993914928287268, + 0.0025080519262701273, + -0.01761959120631218, + -0.00283824373036623, + -0.020204922184348106, + -0.012582411989569664, + 0.009287520311772823, + -0.006568707525730133, + 0.022326581180095673, + 0.0011214223923161626, + -0.016298824921250343, + -0.0038217934779822826, + -0.0024518491700291634, + 0.01232949923723936, + 0.007573333568871021, + 0.006498454138636589, + -0.03209182620048523, + 0.012596462853252888, + -0.00196885596960783, + 0.0005225108470767736, + -0.012589437887072563, + -0.01269481796771288, + -0.0002542300499044359, + -0.01924947462975979, + -0.016411231830716133, + -0.004710501059889793, + 0.013615139760077, + -0.00869036465883255, + 0.02398456446826458, + -0.025881409645080566, + 0.010362399742007256, + -0.0036637228913605213, + 0.004584044683724642, + 0.006747853942215443, + 0.001431416254490614, + 0.01164803933352232, + 0.006565195042639971, + -0.004541892558336258, + -0.0089713791385293, + 0.009905751794576645, + -0.003681286470964551, + 0.002796091604977846, + -0.02121657505631447, + -0.008599035441875458, + -0.015554137527942657, + -0.012617538683116436, + 0.002915522549301386, + 0.0025888436939567327, + -0.010327273048460484, + 0.005051230546087027, + 0.0030314410105347633, + 0.02048593759536743, + -0.0030015832744538784, + -0.01645338349044323, + 0.02028922736644745, + 0.006048831157386303, + 0.006161237135529518, + -0.0009405195014551282, + 0.022565443068742752, + -0.019952010363340378, + -0.004833444952964783, + 0.03560450300574303, + -0.008858973160386086, + 0.007208014838397503, + 0.021005813032388687, + 0.010706641711294651, + 0.0032615214586257935, + 0.02040163241326809, + 0.00665652472525835, + -0.0007956215413287282, + -0.004671861417591572, + 0.023703550919890404, + -0.013341150246560574, + -0.005831045098602772, + 0.0036110328510403633, + 0.003080618567764759, + 0.01958669163286686, + -0.005679999943822622, + -0.009940878488123417, + -0.011367025785148144, + 0.0009326159488409758, + -0.0486716628074646, + -0.01025701966136694, + -0.005427087191492319, + 0.026555845513939857, + -0.009645813144743443, + -0.00747497845441103, + 0.010629363358020782, + 0.003941224422305822, + 0.0005699319881387055, + -0.001167965354397893, + 0.006856746971607208, + -0.00869739055633545, + -0.007432826329022646, + -0.025347484275698662, + -0.0020742362830787897, + 0.013987483456730843, + 0.0036250834818929434, + 0.03093966655433178, + 0.0032615214586257935, + -0.006663549691438675, + -0.01111411303281784, + -0.007418775465339422, + -0.012322474271059036, + -0.015666542574763298, + 0.010685565881431103, + -0.016973258927464485, + 0.0202751774340868, + 0.0011056154035031796, + -0.0026977364905178547, + -0.00032382499193772674, + 0.009161063469946384, + -0.01656578853726387, + -0.004699963144958019, + 0.004303030204027891, + 0.019502388313412666, + 0.009596635587513447, + 0.008374224416911602, + -0.023253927007317543, + -0.0018107853829860687, + 0.013629189692437649, + -0.011226518079638481, + -0.003958787769079208, + -0.01783035323023796, + -0.0036285961978137493, + 0.0009466666961088777, + 0.00445758830755949, + 0.009111885912716389, + 0.0010731230722740293, + 0.016383130103349686, + 0.007917575538158417, + 0.010531008243560791, + -0.005574619863182306, + -0.016720347106456757, + -0.026963315904140472, + 0.011022782884538174, + -0.017914656549692154, + 0.02676660567522049, + -0.026921162381768227, + 0.006045318674296141, + -0.026555845513939857, + -0.0028962029609829187, + -0.008086184039711952, + 0.0074890293180942535, + -0.010341323912143707, + 0.011198417283594608, + -0.0073344712145626545, + 0.013924255035817623, + 0.02828408218920231, + 0.030630551278591156, + 0.014261472038924694, + -0.021694298833608627, + 0.01864529401063919, + -0.013769697397947311, + 0.0013576500350609422, + -0.017085665836930275, + -0.0016632529441267252, + 0.0009510575328022242, + -0.0042117005214095116, + 0.014198243618011475, + -0.005226864479482174, + 0.016397180035710335, + 0.002869857707992196, + -0.0001332622196059674, + -0.005950476508587599, + -0.01436685211956501, + -0.027974966913461685, + -0.0139102041721344, + 0.010495881550014019, + -0.006249053869396448, + -0.012343550100922585, + 0.018729599192738533, + 0.013980457559227943, + -0.010004106909036636, + 0.0016922325594350696, + 0.02350684069097042, + 0.016158318147063255, + 0.010327273048460484, + -0.018013011664152145, + 0.0112967723980546, + -0.01309526339173317, + 0.008521756157279015, + 0.010945504531264305, + -0.03866755962371826, + 0.010840123519301414, + 0.01355191133916378, + -0.003962300717830658, + -0.037487298250198364, + 0.007587383966892958, + -0.010685565881431103, + 0.031108275055885315, + 0.03501437231898308, + 0.011598862707614899, + 0.0035355102736502886, + 0.0069094374775886536, + -0.02978750877082348, + 0.01611616648733616, + -0.001535918447189033, + -0.009020556695759296, + 0.0006775077199563384, + -0.00047948051360435784, + 0.004868571646511555, + -0.016158318147063255, + -0.032850563526153564, + -0.03554829955101013, + 0.0016474459553137422, + -0.008430426940321922, + 0.014106914401054382, + 0.004503252916038036, + -0.013987483456730843, + -0.01489375438541174, + -0.005444650538265705, + 0.020766951143741608, + -0.004394359886646271, + 0.008648212999105453, + -0.0017229685327038169, + -0.0021146321669220924, + 0.016523636877536774, + 0.008507706224918365, + -0.01296880654990673, + -0.0039025850128382444, + 0.016860853880643845, + 0.017099715769290924, + 0.006400099024176598, + 0.020795052871108055, + -0.028171677142381668, + 0.0005940816481597722, + 0.008732517249882221, + -0.0007060482748784125, + 0.02342253550887108, + -0.003955275285989046, + -0.0036215707659721375, + 0.014978058636188507, + -0.0038815089501440525, + 0.038302239030599594, + 0.004629709292203188, + 0.005465726833790541, + -0.00448568956926465, + -0.005936425644904375, + 0.008465553633868694, + 0.0035934695042669773, + -0.02942219004034996, + 0.02062644436955452, + 0.000494848471134901, + -0.011830698698759079, + 0.004352207761257887, + 0.010840123519301414, + 0.01251215860247612, + 0.005205788649618626, + -0.016158318147063255, + 0.019530488178133965, + -0.007847322151064873, + 0.008908150717616081, + -0.018729599192738533, + 0.009933852590620518, + 0.024153172969818115, + 0.0017642424209043384, + -0.018125418573617935, + -0.004288979806005955, + 0.004130909219384193, + -0.007046431768685579, + -0.0016360296867787838, + 0.0015183549840003252, + -0.011338924057781696, + -0.015273123048245907, + 0.011971206404268742, + -0.00967391487210989, + 0.01715591922402382, + 0.015792999416589737, + 0.0036426468286663294, + 0.0006498454022221267, + -0.002857563551515341, + 0.00017541434499435127, + 0.02246708795428276, + 0.005103921052068472, + 0.0016474459553137422, + 0.012947730720043182, + -0.006761904805898666, + -0.0026713914703577757, + -0.0127510204911232, + -0.00931562203913927, + 0.004074706230312586, + 0.00396932614967227, + -0.00845150277018547, + -0.010088411159813404, + -0.013854001648724079, + 0.0017853184835985303, + -0.014022610150277615, + 0.012287347577512264, + 0.0037901795003563166, + -0.000779375375714153, + 0.001974124927073717, + 0.0112967723980546, + 0.010910377837717533, + 0.02863534912467003, + -0.017310475930571556, + -0.004018503241240978, + 0.012413803488016129, + -0.0020478912629187107, + 0.00343188620172441, + 0.006147186271846294, + 0.005711614154279232, + 0.0008628015057183802, + -0.014598689042031765, + -0.0016211008187383413, + 0.011303797364234924, + 0.018912257626652718, + 0.013783748261630535, + 0.00686728535220027, + 0.005297118332237005, + 0.0015043042367324233, + 0.004833444952964783, + 0.007531181443482637, + 0.03276626020669937, + 0.009245367720723152, + 0.01171126775443554, + 0.028536994010210037, + 0.02582520805299282, + 0.0112967723980546, + -0.0016553493915125728, + -0.013025009073317051, + 0.0023815955501049757, + 0.0050687943585217, + 0.008128336630761623, + -0.0009326159488409758, + -0.0005374397151172161, + -0.000782888091634959, + 0.0006314038182608783, + -0.02121657505631447, + -0.024026716127991676, + 0.014387928880751133, + 0.0014287817757576704, + -0.003444180591031909, + -0.00011624768376350403, + 0.022214174270629883, + 0.012027408927679062, + 0.007141273934394121, + -0.00961068645119667, + 0.014057736843824387, + 0.009006505832076073, + 0.020233023911714554, + -0.021624045446515083, + 0.005996141117066145, + -0.004197650123387575, + 0.008247767575085163, + -0.007085071410983801, + -0.02048593759536743, + 0.0009124180651269853, + 0.0026520718820393085, + 0.006983203813433647, + 0.006083957850933075, + 0.019783401861786842, + 0.0008443599217571318, + 0.019080866128206253, + -0.029113074764609337, + -0.019066816195845604, + 0.0017062833067029715, + -0.02411102131009102, + 0.006547631695866585, + 0.018097316846251488, + 0.005701076239347458, + -0.015792999416589737, + -0.0049528758972883224, + 0.017408831045031548, + 0.008029981516301632, + 0.03970731049776077, + -0.006400099024176598, + -0.012006333097815514, + 0.006523042917251587, + -0.009132962673902512, + -0.009624737314879894, + -0.0006393073708750308, + 0.014921855181455612, + 0.009919802658259869, + 0.006600321736186743, + -0.02234063111245632, + -0.0061928508803248405, + 0.025867359712719917, + -0.0007350278319790959, + -0.019656945019960403, + 0.006554656662046909, + 0.013102288357913494, + 0.016298824921250343, + -0.009638788178563118, + 0.027623698115348816, + -0.004239802248775959, + 0.005511391442269087, + -0.019404033198952675, + 0.008289920166134834, + -0.005444650538265705, + 0.01933377981185913, + -0.01419121865183115, + -0.022157972678542137, + 0.03268195316195488, + 0.0024448237381875515, + 0.0038112555630505085, + 0.00833207182586193, + 0.004675374366343021, + -0.0062104142270982265, + 0.009364799596369267, + -0.0005589548381976783, + 0.016256673261523247, + 0.0011987013276666403, + 0.007798145059496164, + 0.018715547397732735, + 0.012420828454196453, + 0.0006735560018569231, + -0.010790945962071419, + -0.0112967723980546, + -0.012814248912036419, + 0.010397526435554028, + -0.00515661109238863, + 0.002306072972714901, + -0.012603487819433212, + 0.012533234432339668, + -0.008851948194205761, + 0.0101305628195405, + 0.007713840808719397, + 0.00018650124548003078, + -0.015329326502978802, + -0.01025701966136694, + 0.01608806475996971, + -0.01875769905745983, + 0.0026187014300376177, + -0.024743303656578064, + 0.015778949484229088, + -0.024630896747112274, + 0.013425454497337341, + 0.0002900154795497656, + 0.022874558344483376, + -0.0039025850128382444, + -0.004752653185278177, + -0.009118911810219288, + 0.011107087135314941, + -0.0019425108330324292, + -0.005687025375664234, + -0.001431416254490614, + 0.04566481336951256, + 0.024954063817858696, + -0.001993444748222828, + -0.014331725426018238, + 0.004243314731866121, + -0.023675449192523956, + -0.009139987640082836, + 0.0167906004935503, + -0.019670996814966202, + 0.013348176144063473, + 5.617540227831341e-5, + -0.002063698135316372, + 0.0003045052581001073, + -0.02998421899974346, + 0.0013708225451409817, + -0.005019616801291704, + 0.014556537382304668, + 0.008149412460625172, + -0.006853234488517046, + 0.011542659252882004, + -0.023605195805430412, + -0.00262221391312778, + -0.0034757948014885187, + -0.000996722374111414, + 0.04437214508652687, + 0.014331725426018238, + 0.005012591369450092, + -0.006487916223704815, + 0.003101694630458951, + -0.030096624046564102, + 0.002924304222688079, + -0.009406951256096363, + -0.005834558047354221, + -0.011964180506765842, + 0.00230431673116982, + 0.004938825033605099, + -0.0030033395159989595, + 0.01783035323023796, + -0.005251453258097172, + 0.001592121203429997, + 0.008662263862788677, + -0.012617538683116436, + -0.005483290180563927, + 0.008507706224918365, + -0.0026801731437444687, + 0.0033528509084135294, + -0.019741250202059746, + -0.005743228364735842, + 0.004503252916038036, + 0.014170142821967602, + 0.006396586541086435, + -0.011907977983355522, + -0.007327445782721043, + -0.014043685980141163, + 0.020204922184348106, + -0.0024606308434158564, + -0.03765590488910675, + 0.006463327445089817, + -0.013587038032710552, + 0.005985603202134371, + 0.0009940877789631486, + 0.007987829856574535, + 0.016945157200098038, + -0.011598862707614899, + -0.019867705181241035, + -0.012666716240346432, + 0.014528435654938221, + -0.019389981403946877, + -0.000722733442671597, + -0.0004131787281949073, + 0.0014823500532656908, + 0.00041098330984823406, + -0.004998540505766869, + -0.02316962368786335, + 0.00827586930245161, + -0.013418429531157017, + -0.030405739322304726, + -0.005606234073638916, + 0.00576781714335084, + -0.007601434830576181, + 0.00921726692467928, + -0.02537558414041996, + -0.008226691745221615, + -0.013776722364127636, + -0.0019302164437249303, + 0.0167906004935503, + 0.01597565971314907, + 0.015778949484229088, + -0.010018156841397285, + 0.022186072543263435, + -0.001595633919350803, + -0.007692764513194561, + 0.004229264333844185, + -0.020008213818073273, + 0.032400939613580704, + -0.003407297423109412, + -0.004327618982642889, + -0.013839950785040855, + -0.017535287886857986, + -0.025979764759540558, + -0.013418429531157017, + -0.0027346196584403515, + -0.012786147184669971, + 0.009498280473053455, + -0.00961068645119667, + -0.024153172969818115, + -0.006653011776506901, + -0.012069561518728733, + -0.0010388744994997978, + 0.010278095491230488, + -0.011879876255989075, + -0.004601608030498028, + 0.021581891924142838, + 0.004584044683724642, + 0.022972913458943367, + -0.0214273352175951, + -0.008044032379984856, + 0.009364799596369267, + 0.012673742137849331, + -0.014345776289701462, + -0.00887302402406931, + -0.00619636382907629, + 0.004552430473268032, + 0.01982555352151394, + 0.007327445782721043, + 0.006484403274953365, + -0.02361924573779106, + -0.001272467547096312, + -0.015301224775612354, + -0.028579147532582283, + 0.014978058636188507, + 0.00285229436121881, + -0.015441731549799442, + 0.0029699690639972687, + -0.04243315011262894, + 0.018041113391518593, + -0.012076586484909058, + 0.03209182620048523, + 0.014781348407268524, + 0.009006505832076073, + 0.0044786641374230385, + -5.2223640523152426e-5, + -0.01808326505124569, + 0.00408524414524436, + -0.011577785946428776, + 0.009336697869002819, + 0.02744103968143463, + -0.00015159400936681777, + -0.020457835868000984, + 0.006396586541086435, + -0.0017589734634384513, + 0.02006441541016102, + -0.001284761936403811, + -0.01597565971314907, + 0.0127510204911232, + 0.0005681756301783025, + 0.002566011156886816, + 0.003366901772096753, + -0.007713840808719397, + -0.014668942429125309, + 0.007510105147957802, + -0.017169969156384468, + 0.008781694807112217, + -0.02574090287089348, + -0.020584292709827423, + 0.020022263750433922, + 0.004907210823148489, + -0.00040264069684781134, + 0.01153563428670168, + -0.004938825033605099, + -0.005588670261204243, + 0.00799485482275486, + -0.007049944251775742, + -0.0003304112469777465, + -0.002357006771489978, + -0.004120371304452419, + -0.009378849528729916, + 0.011029808782041073, + -0.0009782807901501656, + 0.03138928860425949, + -0.006941051222383976, + 0.004007965326309204, + -0.024237478151917458, + 0.012315448373556137, + 0.01774604804813862, + -0.005838070530444384, + 0.010088411159813404, + 0.01864529401063919, + 0.004836957436054945, + -0.010439679026603699, + -0.0035091652534902096, + -0.007028868421912193, + -0.0051776873879134655, + -9.275664524466265e-6, + -0.00735554751008749, + 0.0017976128729060292, + -0.008163463324308395, + -0.0013409648090600967, + -0.009118911810219288, + -0.005778355058282614, + -0.006825133226811886, + 0.009111885912716389, + -0.02548799104988575, + -0.013263871893286705, + 0.011999307200312614, + 0.014598689042031765, + 0.03183891251683235, + -0.007903525605797768, + -0.035632602870464325, + 0.023787854239344597, + -0.0021023377776145935, + 0.010706641711294651, + -0.00961771234869957, + -0.006990228779613972, + 0.01946023479104042, + 0.005785380490124226, + 0.0015385529259219766, + 0.01600375957787037, + -0.010959554463624954, + -0.000424155849032104, + 0.01541363075375557, + 0.001979393884539604, + -0.03487386554479599, + 0.0061577241867780685, + 0.01832212693989277, + -0.005451675970107317, + -0.011865825392305851, + -0.02329607866704464 + ], + "bbe211a7-04dd-4fea-a58d-54870d8ff0c6": [ + -0.01531303208321333, + -0.023814264684915543, + -0.005210215225815773, + 0.037248644977808, + -0.0504397489130497, + -0.023111460730433464, + 0.010988079942762852, + 0.021259840577840805, + 0.012684272602200508, + 0.03251823037862778, + -0.008089011535048485, + 0.02339528501033783, + 0.0012949513038620353, + -0.00992035772651434, + 0.011907132342457771, + 0.004923011641949415, + -0.003110248362645507, + 0.02271951176226139, + 0.0006669041467830539, + 0.008460686542093754, + 0.05633249506354332, + -0.02744992822408676, + -0.006497564259916544, + -0.000545264920219779, + 0.007771397475153208, + -0.021732881665229797, + -0.004392528906464577, + 0.012393689714372158, + -0.05222379043698311, + -0.011427333578467369, + 0.00930540356785059, + 0.02570643089711666, + -0.006473911926150322, + 0.018827054649591446, + 0.013697933405637741, + -0.0281932782381773, + -0.011224601417779922, + -0.00036280599306337535, + -0.017164651304483414, + -0.021273355931043625, + -0.03876237943768501, + 0.04011392593383789, + -0.0030561864841729403, + 0.0006567675736732781, + -0.03538351133465767, + -0.02516581304371357, + 0.016488878056406975, + -0.006906407419592142, + -0.008609357289969921, + 0.0022385003976523876, + 0.012772123329341412, + 0.024949565529823303, + 0.001895545283332467, + -0.012961339205503464, + 0.021705850958824158, + -0.03373462334275246, + 0.007683547213673592, + 0.0672530010342598, + -0.002593281678855419, + -0.051088493317365646, + -0.019394705072045326, + 0.016907857730984688, + -0.00015204907685983926, + -0.018299952149391174, + 0.0006217118352651596, + -0.0034092783462256193, + -0.011393544264137745, + 0.002951441565528512, + -0.023003336042165756, + -0.00285514397546649, + -0.0010964428074657917, + 0.03403196483850479, + -0.03273447975516319, + -0.003534296527504921, + 0.0034768558107316494, + -0.00658541452139616, + 0.03416711837053299, + -0.0019969113636761904, + 0.01921900361776352, + 0.010433945804834366, + 0.003916108515113592, + 0.0005642710602842271, + 0.044601064175367355, + 0.0417628139257431, + 0.027409382164478302, + 0.020232664421200752, + -0.013245164416730404, + -0.031436990946531296, + -0.0034903711639344692, + -0.029004206880927086, + 0.025463152676820755, + 0.04092485457658768, + -0.03049090877175331, + -0.0009215864120051265, + -0.028409525752067566, + 0.009521651081740856, + 0.030112477019429207, + 0.0040411269292235374, + 0.018408074975013733, + 0.003162620821967721, + 0.017015982419252396, + 0.013630355708301067, + -0.013265437446534634, + 0.01727277599275112, + -0.010778590105473995, + -0.001843172824010253, + -0.0008544313604943454, + 0.015799589455127716, + -0.01563740335404873, + -0.0009536856669001281, + 0.012055803090333939, + -0.04846648871898651, + 0.003133900463581085, + 0.005463630426675081, + -0.023138491436839104, + -0.007264567073434591, + -0.01796206459403038, + 0.0027351940516382456, + -0.000563848705496639, + -0.03776223585009575, + 0.03789738938212395, + 0.003541054204106331, + -0.019273066893219948, + -0.01729980669915676, + -0.010683982633054256, + 0.01686731167137623, + 0.004686490632593632, + -0.007453783880919218, + 0.0166780948638916, + 0.013616840355098248, + 0.012508571147918701, + -0.012197715230286121, + 0.022935759276151657, + -0.040411267429590225, + -0.007088866084814072, + -0.003111938014626503, + -0.0022199165541678667, + 0.0643877163529396, + -0.010346095077693462, + 0.017191683873534203, + -0.02103007771074772, + -0.03722161427140236, + -0.031382929533720016, + 0.011346240527927876, + 0.04633104428648949, + -0.005510934628546238, + -0.04000580310821533, + 0.048736799508333206, + -0.027260711416602135, + 0.012062560766935349, + -0.03968143090605736, + 0.008582325652241707, + -0.0009815612575039268, + 0.007980887778103352, + 0.016961919143795967, + 0.005284550134092569, + -0.016313176602125168, + 0.023111460730433464, + -0.013988515362143517, + 0.06406334787607193, + -0.005494039971381426, + -0.07028046250343323, + -0.01611044444143772, + 0.009028336964547634, + 0.04195203259587288, + 0.013062705285847187, + 0.026220019906759262, + 0.018786508589982986, + 0.02100304700434208, + -0.0006685936241410673, + 0.011393544264137745, + -0.010636677965521812, + 0.033194005489349365, + 8.209594670915976e-5, + 0.0017071733018383384, + -0.03597819060087204, + 0.03700536862015724, + 0.022314047440886497, + 0.015529279597103596, + -0.014245309866964817, + -0.025963226333260536, + -0.016975434496998787, + 0.02219240926206112, + -0.017191683873534203, + -0.01563740335404873, + 0.03184245526790619, + -0.0028619016520678997, + 0.03405899554491043, + -0.001895545283332467, + -0.00959598645567894, + -0.008325532078742981, + 0.000697313982527703, + -6.129478424554691e-5, + 0.027287742123007774, + -0.013116767629981041, + -0.03584303706884384, + 0.01500217616558075, + 0.013096494600176811, + 0.004980452358722687, + 0.05500797927379608, + -0.012028771452605724, + -0.024976596236228943, + -0.019529860466718674, + 0.031977612525224686, + -0.051115524023771286, + 0.04057345166802406, + -0.04500652849674225, + -0.031491056084632874, + 0.021286871284246445, + -0.03430227190256119, + 0.040330175310373306, + -0.020165087655186653, + -0.002948062727227807, + 0.009190522134304047, + -0.027233680710196495, + 0.01528600137680769, + -0.004551335703581572, + 0.03062606416642666, + 0.025368545204401016, + -0.0321938581764698, + -0.015934742987155914, + 0.025476668030023575, + -0.0039025931619107723, + 0.007974130101501942, + -0.044709187000989914, + -0.013407350517809391, + -0.015948260203003883, + 0.038059573620557785, + -0.03527538850903511, + -0.009048609994351864, + 0.029517795890569687, + -0.02455761656165123, + 0.03397790342569351, + -0.013278952799737453, + -0.004818266723304987, + 0.006213739048689604, + 0.012576148845255375, + -0.013049189932644367, + 0.008291743695735931, + -0.029031237587332726, + 0.025300966575741768, + 0.012130137532949448, + -0.0006428297492675483, + 0.011224601417779922, + -0.027139071375131607, + 0.01435343362390995, + 0.01670512557029724, + 0.027706721797585487, + 0.012089591473340988, + -0.01669161021709442, + -0.005460251588374376, + 0.02755805104970932, + 0.008562052622437477, + -0.00992035772651434, + -0.01317082904279232, + 0.027247196063399315, + 0.02643626742064953, + -0.03549163416028023, + 0.006294832099229097, + 0.013393835164606571, + -0.0010626541916280985, + -0.003078149165958166, + 0.008393109776079655, + 0.01788097247481346, + 0.033950868993997574, + -0.043384671211242676, + 0.033166974782943726, + -0.00929188821464777, + -0.014002030715346336, + 0.018854087218642235, + -0.018070189282298088, + -0.00480475090444088, + -0.003645799122750759, + 0.02150311879813671, + 0.004213449079543352, + -0.014164216816425323, + -0.010278518311679363, + 0.007028046529740095, + 0.017786363139748573, + -0.006315105129033327, + -0.0068489667028188705, + 0.024787379428744316, + -0.0009722693939693272, + -0.009217553772032261, + 0.0026980265974998474, + 0.006960469298064709, + -0.03484289348125458, + 0.018354013562202454, + -0.029031237587332726, + 0.02697688713669777, + 0.009514893405139446, + 0.005811654031276703, + 0.023070914670825005, + 0.012359901331365108, + 0.00930540356785059, + 0.013893906958401203, + -0.022543810307979584, + -0.012704545632004738, + -0.03835691511631012, + 0.02027321048080921, + -0.008460686542093754, + 0.0007306803017854691, + -0.006511079613119364, + -0.02150311879813671, + 0.014123670756816864, + -0.026071349158883095, + -0.002287494018673897, + 0.026747122406959534, + -0.01401554699987173, + 0.0430602990090847, + 0.016961919143795967, + -0.036843180656433105, + -0.059684332460165024, + -0.004943284671753645, + -0.021841006353497505, + 0.0026203126180917025, + -0.022030223160982132, + 0.02523338980972767, + -0.006092099938541651, + -0.005700150970369577, + -0.019029786810278893, + -0.025909163057804108, + -0.06849642097949982, + 0.04000580310821533, + 0.0280581247061491, + -0.04497949779033661, + 0.06114400550723076, + -0.012880247086286545, + -0.0324641689658165, + -0.04568230360746384, + -0.010069028474390507, + -0.018137766048312187, + -0.011569245718419552, + -0.00992035772651434, + -0.031004497781395912, + -0.039275966584682465, + -0.043411701917648315, + -0.029734043404459953, + -0.034951016306877136, + 0.0020459049846976995, + -0.00035372530692256987, + -0.0036593147087842226, + 0.00990684237331152, + -0.024246759712696075, + 0.016961919143795967, + 0.0012366658775135875, + 0.006122509948909283, + -0.011576003395020962, + -0.010656950995326042, + 0.025395575910806656, + 0.0009063814650289714, + -0.0010913745500147343, + 0.028571711853146553, + 0.0005325941601768136, + 0.047033850103616714, + -0.02097601629793644, + -0.020151572301983833, + -0.025963226333260536, + 0.0013515474274754524, + -0.0021658546756953, + -0.006190087180584669, + -0.020097509026527405, + -0.03184245526790619, + -0.023192552849650383, + -0.02034078910946846, + 0.035626791417598724, + -0.015907712280750275, + -0.03111262060701847, + -0.01619153842329979, + 0.002681132173165679, + -0.04595261067152023, + 0.0036255258601158857, + -0.0041593872010707855, + -0.011771977879106998, + -0.028571711853146553, + -0.039816588163375854, + 0.027868907898664474, + 0.012873489409685135, + -0.018678385764360428, + 0.020016416907310486, + -0.0037099975161254406, + 0.014231794513761997, + -0.0002344090025871992, + 0.018732447177171707, + 0.010690740309655666, + -0.00028509204275906086, + -0.01850268431007862, + -0.003084906842559576, + -0.009521651081740856, + 0.007041561882942915, + -0.022543810307979584, + -0.015704980120062828, + -0.03227495029568672, + 0.025571277365088463, + -0.03303181752562523, + -0.01494811475276947, + -0.007980887778103352, + -0.05979245901107788, + 0.02211131528019905, + -0.011758462525904179, + -0.007825459353625774, + -0.019597437232732773, + -0.030842311680316925, + 0.03659990429878235, + -0.013082979246973991, + -0.021138200536370277, + 0.02509823441505432, + -0.001520490855909884, + 0.03054497204720974, + -0.017502538859844208, + -0.004750689025968313, + 0.01677270419895649, + 0.047655560076236725, + 0.030193569138646126, + 0.055954061448574066, + 0.012663999572396278, + -0.025517214089632034, + 0.0537915863096714, + 0.0005423083784990013, + -0.012251777574419975, + 0.03400493413209915, + 0.029625918716192245, + -0.012670757248997688, + 0.03346431255340576, + -0.020165087655186653, + 0.026598453521728516, + 0.019610952585935593, + 0.021124685183167458, + -0.012900520116090775, + -0.02693633921444416, + -0.005020998418331146, + 0.05387267842888832, + 0.008034949190914631, + 0.00865666102617979, + 0.001731670112349093, + -0.015367094427347183, + 0.025625338777899742, + 0.011042142286896706, + 0.0033315643668174744, + -0.023557471111416817, + -0.032058704644441605, + 6.340658001136035e-5, + 0.0003742096887435764, + -0.01742144674062729, + -0.04238452762365341, + -0.025557762011885643, + -0.022949274629354477, + -0.016326691955327988, + 0.03305884823203087, + -0.00925809983164072, + 0.01015687920153141, + 0.012055803090333939, + -0.10217698663473129, + -0.006291453260928392, + -0.012670757248997688, + 0.011771977879106998, + 0.008764784783124924, + -0.009460831992328167, + 0.0007146307034417987, + -0.05352127552032471, + -0.03649178147315979, + -0.010852925479412079, + 0.03778926655650139, + 0.005132501479238272, + 0.015164362266659737, + -0.047087911516427994, + 0.01498866081237793, + -0.001980016939342022, + 0.007426753174513578, + 0.029490765184164047, + -0.007879521697759628, + -0.0048486762680113316, + -0.00862963031977415, + 0.04433075338602066, + 0.0075416346080601215, + -0.023165522143244743, + -0.026044318452477455, + 0.003530917689204216, + 0.003196409670636058, + -0.020665159448981285, + -0.018056673929095268, + -0.013272195123136044, + -0.01313028298318386, + -0.004983831197023392, + 0.006146161817014217, + 0.009102671407163143, + -0.027977030724287033, + -0.019340643659234047, + 0.03649178147315979, + -0.014502103440463543, + 0.036329593509435654, + 0.004328330513089895, + 0.008102526888251305, + 0.04792587086558342, + -0.011197570711374283, + -0.025341514497995377, + 0.00987305399030447, + -0.04954772815108299, + -0.0346536748111248, + -0.03365353122353554, + 0.032653383910655975, + -0.006463775411248207, + -0.01109620463103056, + 0.02462519332766533, + 0.006521216128021479, + 0.029220454394817352, + -0.0179080031812191, + 0.021313901990652084, + 0.017651209607720375, + -0.02639572136104107, + -0.04030314460396767, + 0.008906697854399681, + -0.013218133710324764, + 0.010048754513263702, + 0.012684272602200508, + 0.023841295391321182, + 0.0017105521401390433, + 0.011184054426848888, + 0.028328433632850647, + 0.011826040223240852, + 0.0028027715161442757, + -0.016286145895719528, + -0.001131076249293983, + -0.01980016939342022, + -0.03184245526790619, + 0.003571463981643319, + -0.02215186133980751, + -0.038681287318468094, + 0.04438481852412224, + -0.031004497781395912, + -0.025314483791589737, + 0.017110589891672134, + -0.017840426415205002, + 0.014867021702229977, + 0.04354685917496681, + -0.002628759713843465, + -0.010082543827593327, + -0.0030950435902923346, + -0.0003011416702065617, + 0.0023533818311989307, + -0.007142927963286638, + 0.016461847350001335, + 0.019556891173124313, + -0.0012881936272606254, + -0.01786745712161064, + 0.0514669269323349, + 0.006446881219744682, + 0.003885698737576604, + -0.00894048623740673, + 0.04070860892534256, + -0.053115811198949814, + 0.00688951276242733, + -0.01019742526113987, + 0.010961049236357212, + -0.0012425788445398211, + -0.02461167797446251, + 0.00923782680183649, + -0.023652080446481705, + -0.023625047877430916, + -0.021084139123558998, + -0.025530731305480003, + 0.02685524709522724, + -0.014921083115041256, + 0.012968097813427448, + -0.02585510164499283, + -0.0037606805562973022, + -0.00046712858602404594, + 0.008758027106523514, + 0.004101946484297514, + 0.028436558321118355, + 0.041032977402210236, + 0.010873198509216309, + 0.03054497204720974, + 0.02273302711546421, + 0.018827054649591446, + 0.03281557187438011, + 0.025571277365088463, + 0.005162911023944616, + -0.045168712735176086, + -0.026584938168525696, + 0.020489457994699478, + 0.00217261235229671, + -0.015204908326268196, + 0.003963412716984749, + 0.027652660384774208, + 0.026652514934539795, + -0.0012147031957283616, + -0.014812959358096123, + -0.0023871706798672676, + 0.00835256278514862, + 0.005629194900393486, + 0.0166780948638916, + -0.004916253499686718, + 0.005409568548202515, + -0.023179037496447563, + 0.006159677170217037, + 0.04089782387018204, + 0.02704446390271187, + 0.0042877839878201485, + 0.0023753445129841566, + 0.01527248602360487, + 0.0022418792359530926, + -0.011988225392997265, + -0.014502103440463543, + -0.02457113191485405, + 0.03359946981072426, + 0.0031389689538627863, + 0.017705271020531654, + 0.0047304159961640835, + 0.03727567568421364, + -0.011136750690639019, + 0.010278518311679363, + 0.03578897565603256, + -0.0033940733410418034, + 0.027179617434740067, + 0.008393109776079655, + -0.006146161817014217, + 0.02458464726805687, + -0.0022537054028362036, + 0.020854376256465912, + 0.024990111589431763, + -0.030923403799533844, + 0.056656867265701294, + -0.024827925488352776, + 0.008095769211649895, + 0.019543375819921494, + -0.022043738514184952, + 0.012481540441513062, + -0.023679111152887344, + -0.0382758229970932, + 0.008568810299038887, + -0.012224745936691761, + 0.03270744904875755, + -0.011961194686591625, + 0.021935613825917244, + 0.0014562923461198807, + -0.017732301726937294, + 0.02865280583500862, + -0.0036795877385884523, + 0.001561037264764309, + 0.005740697495639324, + 0.008744511753320694, + -0.0018600671319290996, + 0.05617031082510948, + -0.014583196491003036, + 0.03965440019965172, + -0.024922534823417664, + 0.0048486762680113316, + 0.036221470683813095, + 0.03546460345387459, + -0.018975725397467613, + 0.023462863638997078, + 0.01285997312515974, + 0.014610227197408676, + 0.018691901117563248, + -0.013028916902840137, + 0.014772413298487663, + -0.011839555576443672, + 0.01792151853442192, + 0.017151135951280594, + 0.03900565952062607, + -0.0026456541381776333, + 0.012062560766935349, + -0.015448186546564102, + 0.02986919693648815, + 0.023814264684915543, + 0.028977176174521446, + -0.0020864512771368027, + 0.015340062789618969, + 0.03341025114059448, + 0.02881499007344246, + -0.00925134215503931, + 0.011994983069598675, + 0.01608341373503208, + 0.0008067048620432615, + 0.011325967498123646, + 0.009460831992328167, + 0.004199933726340532, + 0.005061544943600893, + -0.018989240750670433, + -0.006102236453443766, + -0.026598453521728516, + -0.03765410929918289, + -0.011650338768959045, + -0.020043447613716125, + -0.004639186430722475, + -0.0037066186778247356, + 0.04981803894042969, + -0.029166392982006073, + -0.00984602328389883, + -0.011197570711374283, + -0.007386206649243832, + -0.0018735826015472412, + 0.013819572515785694, + 0.015853650867938995, + -0.0016480431659147143, + 0.019435251131653786, + -0.003868804546073079, + 0.02153014950454235, + -0.01861080713570118, + -0.045763395726680756, + -0.008034949190914631, + 0.005784622859209776, + -0.043979354202747345, + 0.014867021702229977, + -0.007534876931458712, + -0.024152152240276337, + -0.016029352322220802, + -0.00464932294562459, + 0.02220592461526394, + -8.452450856566429e-5, + 0.0029227212071418762, + -0.015542794950306416, + 0.019570406526327133, + 0.02323310077190399, + 0.026071349158883095, + -0.0043317093513906, + 0.016407785937190056, + 0.0068253143690526485, + 0.02334122359752655, + 0.00899454765021801, + 0.021259840577840805, + 0.0026118652895092964, + -0.027341803535819054, + -0.035005077719688416, + 0.04500652849674225, + -0.00172068877145648, + 0.00481150858104229, + 0.010623162612318993, + 0.0016767635243013501, + 0.033194005489349365, + -0.012582906521856785, + -0.01502920687198639, + 0.0041357348673045635, + 0.01980016939342022, + 0.006176571827381849, + -0.003841773606836796, + 0.0012400447158142924, + 0.03573491424322128, + -0.037464894354343414, + -0.007224021013826132, + 0.012576148845255375, + 0.017232229933142662, + -0.0008071272168308496, + 0.02090843766927719, + 0.005632573738694191, + 0.01858377642929554, + 0.0018161417683586478, + -0.0086634187027812, + -0.0056967721320688725, + 0.04735822230577469, + -0.030977467074990273, + 0.03643771633505821, + 0.04330357909202576, + -0.0198542308062315, + 0.0228276364505291, + 0.03005841374397278, + -0.013387077488005161, + -0.007257809396833181, + 0.03551866486668587, + -0.014853506349027157, + 0.0008113508229143918, + -0.00955544039607048, + -0.027760783210396767, + 0.006163056008517742, + 0.011143508367240429, + -0.004389150068163872, + 0.005227109417319298, + 0.022895213216543198, + 0.0012282186653465033, + 0.02331419289112091, + 0.02030024118721485, + 0.03551866486668587, + 0.012353143654763699, + 0.0008088166359812021, + -0.0455201156437397, + 0.02986919693648815, + 0.0018668248085305095, + -0.040411267429590225, + -0.022597871720790863, + 0.0012130137765780091, + -0.05022350326180458, + 0.02034078910946846, + -0.015056238509714603, + 0.030409816652536392, + -0.029247485101222992, + 0.0016624033451080322, + 0.020124541595578194, + 0.011758462525904179, + -0.013218133710324764, + 0.0015542794717475772, + 0.00956219807267189, + -0.005899504292756319, + 0.029139362275600433, + 0.010400157421827316, + -0.012231503613293171, + 0.03135589882731438, + -0.010940776206552982, + 0.011231359094381332, + -0.0034836134873330593, + 0.012697787955403328, + -0.04119516536593437, + 0.05019646883010864, + 0.036194439977407455, + -0.008825604803860188, + -0.013224891386926174, + 0.029544826596975327, + -0.022922243922948837, + -0.020665159448981285, + 0.005622437223792076, + -0.014515618793666363, + -0.017245745286345482, + -0.01851619966328144, + 0.009514893405139446, + -0.01565091870725155, + -0.0345185212790966, + -0.012603179551661015, + -0.01679973490536213, + 0.029598888009786606, + -0.00270647369325161, + -0.011670611798763275, + 0.01558334194123745, + 0.03516726195812225, + -0.008007918484508991, + 0.012778881005942822, + -0.0173268374055624, + -0.013988515362143517, + 0.021286871284246445, + 0.017083559185266495, + -0.01796206459403038, + -0.02153014950454235, + -0.0014731866540387273, + -0.0026676165871322155, + 0.0349239856004715, + -0.01974610798060894, + 0.022368108853697777, + -0.0009697352652437985, + 0.015367094427347183, + -0.03830285370349884, + 0.03484289348125458, + -0.03432930260896683, + -0.053007688373327255, + -0.016556454822421074, + -0.012373416684567928, + -0.009109429083764553, + -0.022922243922948837, + 0.01053531188517809, + -0.002361829159781337, + 0.019962355494499207, + 0.05925183743238449, + 0.04295217618346214, + 0.0026507223956286907, + 0.0003383092116564512, + 0.003929623868316412, + -0.011616550385951996, + 0.021868037059903145, + -0.04711494222283363, + 0.0025392198003828526, + -0.02938264049589634, + 0.021449057385325432, + 0.013008643873035908, + -0.0031271427869796753, + -0.035032108426094055, + 0.005608921870589256, + -0.017610663548111916, + -0.0005262587801553309, + 0.0035106444265693426, + 0.018151281401515007, + 0.0021574075799435377, + 0.02690930850803852, + 0.021854521706700325, + -0.039357058703899384, + 0.014623742550611496, + 0.021367965266108513, + -0.039140813052654266, + -0.0274769589304924, + 0.0033129805233329535, + 0.011305694468319416, + -0.04711494222283363, + -0.011988225392997265, + -0.02270599640905857, + 0.022989820688962936, + 0.028301402926445007, + -0.010677224956452847, + -0.04114110395312309, + 0.01438046433031559, + 0.019462281838059425, + -0.010312306694686413, + 0.01969204656779766, + 0.012576148845255375, + 0.01789448782801628, + -0.012650483287870884, + -0.012089591473340988, + 0.000404197140596807, + 0.0020340788178145885, + -0.0018482410814613104, + -0.02105710841715336, + -0.03343728184700012, + -0.00010294990352122113, + -0.012190957553684711, + 0.009447316639125347, + -0.04752040654420853, + -0.035086169838905334, + 0.019894778728485107, + 0.04206015542149544, + -0.04206015542149544, + 0.018732447177171707, + 0.007575422991067171, + -0.007636243011802435, + 0.0034261727705597878, + -0.002948062727227807, + 0.0347888320684433, + 0.003459961386397481, + -0.01921900361776352, + 0.05216972902417183, + 0.029707012698054314, + 0.01729980669915676, + -0.008737754076719284, + -0.025530731305480003, + -0.001075324951671064, + -0.005426462739706039, + 0.012772123329341412, + 0.03705943003296852, + 0.004095188807696104, + -0.020138056948781013, + -0.0020273211412131786, + -0.004470243118703365, + -0.01736738346517086, + -0.028896084055304527, + -1.2835740562877618e-5, + -0.001149659976363182, + 0.0003841351135633886, + 0.016475362703204155, + 0.008257954381406307, + 0.0012147031957283616, + 0.0015855340752750635, + -0.015110299922525883, + -0.018124250695109367, + -0.0022705995943397284, + -0.017597146332263947, + -0.04027611389756203, + -0.005490661133080721, + 0.010069028474390507, + 0.01438046433031559, + -0.008798573166131973, + -0.016380755230784416, + -0.021678820252418518, + 0.03373462334275246, + 0.002926100045442581, + 0.007365933153778315, + -0.015096784569323063, + 0.01623208448290825, + -0.009122945368289948, + 0.009089156053960323, + 0.01923251897096634, + 0.016961919143795967, + 0.008082253858447075, + -0.003963412716984749, + 0.025409091264009476, + 0.0030528076458722353, + -0.009352708235383034, + -0.03592412918806076, + 0.01681325025856495, + -0.0014588264748454094, + -0.003407588927075267, + 0.03305884823203087, + -0.03292369470000267, + -0.005936671979725361, + 0.007717335596680641, + -0.018083704635500908, + 0.002503741532564163, + 0.0008392264717258513, + -0.028301402926445007, + 0.02753102034330368, + 0.008697208017110825, + -0.022895213216543198, + -0.001980016939342022, + 0.0022773572709411383, + -0.015204908326268196, + 0.007474057376384735, + 0.02577400952577591, + 0.005024377256631851, + -0.017110589891672134, + -0.018894633278250694, + -0.026030803099274635, + 0.0026490329764783382, + -0.009636533446609974, + -0.0042877839878201485, + -0.02638220600783825, + 0.008426898159086704, + 0.040519390255212784, + -0.03059903346002102, + 0.0012138584861531854, + 0.002681132173165679, + -0.007663273718208075, + 0.007237536367028952, + -0.018975725397467613, + -0.02277357317507267, + -0.01739441603422165, + -0.02405754290521145, + -0.021976159885525703, + 0.017110589891672134, + -0.02090843766927719, + 0.03165324032306671, + -0.0007889657863415778, + 0.018299952149391174, + -0.018178312107920647, + -0.028247341513633728, + 0.0068320720456540585, + 0.013522231951355934, + -0.018083704635500908, + -0.029166392982006073, + -0.004091809969395399, + 0.025287451222538948, + 0.005967081990092993, + 0.006507700774818659, + 0.006000870373100042, + -0.0017789743142202497, + 0.0020121161360293627, + 0.013839845545589924, + -0.022489748895168304, + -0.0023010093718767166, + 0.012657241895794868, + 0.006027901545166969, + -0.012143653817474842, + -0.006649613380432129, + -0.002177680842578411, + 0.003541054204106331, + 0.030112477019429207, + -0.011859828606247902, + -0.011447606608271599, + -0.015623888000845909, + 0.005338612478226423, + -0.0048790862783789635, + -8.684748172527179e-5, + -0.0262470506131649, + 0.004328330513089895, + -0.06811799108982086, + -0.01847565360367298, + -0.024111606180667877, + 0.002730125794187188, + 0.026071349158883095, + 0.011217843741178513, + 0.013042432256042957, + 0.014177732169628143, + -0.011548972688615322, + 0.024692771956324577, + 0.026125410571694374, + -0.014272340573370457, + 0.04857461526989937, + 0.02627408131957054, + -0.005494039971381426, + 0.01466428954154253, + -0.007528119254857302, + -0.002981851575896144, + 0.02688227780163288, + -0.02047594264149666, + -0.012217988260090351, + 0.03046387806534767, + 0.006457017734646797, + -0.020016416907310486, + -0.009967662394046783, + 0.03251823037862778, + 0.005024377256631851, + 0.004267510958015919, + -0.014258825220167637, + -0.03781629726290703, + 0.03649178147315979, + 0.01617802307009697, + -0.007818701677024364, + 0.005159532185643911, + 0.0031406583730131388, + 0.03665396571159363, + 0.003162620821967721, + -0.005071681458503008, + 0.029544826596975327, + -0.0015880682040005922, + 0.012434235773980618, + 0.03419414907693863, + 0.0011657096911221743, + -0.016380755230784416, + -0.015137330628931522, + -0.030977467074990273, + -0.02509823441505432, + -0.023706141859292984, + 0.00013325412874110043, + 0.00657865684479475, + 0.015786074101924896, + 0.021273355931043625, + -0.01372496411204338, + -0.0179080031812191, + 0.00836607813835144, + -0.012258535251021385, + 0.013833087868988514, + -0.0057204244658350945, + 0.016015836969017982, + 0.00641647120937705, + 0.04660135507583618, + 0.018908148631453514, + -0.0022283638827502728, + -0.003652556799352169, + -0.012130137532949448, + 0.018110735341906548, + -0.006605688016861677, + 0.013988515362143517, + 0.02163827419281006, + -0.0027605355717241764, + 0.003270744811743498, + -0.010697497986257076, + 0.01734035275876522, + 0.01406960841268301, + -0.009406769648194313, + 0.006865860894322395, + 0.02585510164499283, + 0.008568810299038887, + 0.004328330513089895, + -0.015880681574344635, + -0.0033315643668174744, + -0.003301154589280486, + 0.01284645777195692, + -0.023679111152887344, + -0.02028672583401203, + -0.009954147040843964, + -0.008426898159086704, + -0.024733318015933037, + 0.015542794950306416, + 0.005933293141424656, + 0.008163345977663994, + 0.0013599945232272148, + 0.03830285370349884, + 0.016542939469218254, + -0.020138056948781013, + 0.016934888437390327, + 0.0006804196746088564, + -0.012995128519833088, + -0.006940195802599192, + -0.0008793505257926881, + 0.003372110892087221, + -0.032085735350847244, + 0.013103252276778221, + -0.013819572515785694, + -0.0036255258601158857, + 0.007014531176537275, + 0.013224891386926174, + 0.003047739388421178, + -0.025652369484305382, + -0.005662983749061823, + 0.0014343296643346548, + 0.02088140696287155, + -0.023773718625307083, + 0.01671864092350006, + 0.004835160914808512, + 0.018705416470766068, + -0.028004061430692673, + -0.025922678411006927, + -0.019529860466718674, + -0.00496693653985858, + -0.0056933932937681675, + 0.021394995972514153, + 0.001427571987733245, + -0.009764930233359337, + -0.004392528906464577, + 0.0030798385851085186, + 0.005176426377147436, + -0.009427043609321117, + -0.01401554699987173, + 0.010981322266161442, + -0.005781244020909071, + -0.00016968254931271076, + -0.023746687918901443, + 0.006835450883954763, + -0.01345465425401926, + 0.011021869257092476, + 0.004882465116679668, + -0.021394995972514153, + 0.012691030278801918, + -0.020773284137248993, + -0.017110589891672134, + 0.0027166102081537247, + 0.009994693100452423, + -0.00019829734810627997, + -0.024868471547961235, + -0.011947679333388805, + -0.005308202467858791, + -0.0020002902019768953, + 0.011778735555708408, + -0.01678621955215931, + -0.020232664421200752, + 0.009825749322772026, + 0.003431241028010845, + -0.006054932251572609, + -0.015461701899766922, + -0.012420720420777798, + -0.03368056192994118, + 0.006223876029253006, + -0.020246179774403572, + -0.015475218184292316, + -0.006277937907725573, + 0.012474782764911652, + -0.004274268634617329, + 0.013218133710324764, + -0.005260898265987635, + -0.004054642282426357, + -0.009670321829617023, + -0.002057730918750167, + -0.002169233513996005, + -0.01973259262740612, + -0.0028534545563161373, + 0.0057170456275343895, + -0.0013405660865828395, + 0.0021861279383301735, + -0.006886133924126625, + -0.02150311879813671, + -0.010420430451631546, + -0.0198542308062315, + 0.029490765184164047, + 0.01442101038992405, + -0.014150701463222504, + -0.009116187691688538, + -0.00962301716208458, + 0.027706721797585487, + 0.019273066893219948, + 0.006778010167181492, + 0.010778590105473995, + 0.005135880317538977, + 0.015245454385876656, + -0.008089011535048485, + 0.023449348285794258, + 0.007710577920079231, + -0.016326691955327988, + -0.003019019030034542, + 0.006750979460775852, + -0.007818701677024364, + 0.0293556097894907, + 0.02096250094473362, + 0.005933293141424656, + 0.0007281461730599403, + -0.014299371279776096, + 0.004696627147495747, + 0.015083269216120243, + -0.00492639048025012, + -0.015907712280750275, + -0.0009697352652437985, + -0.03897862881422043, + 0.0050041042268276215, + 0.03170730173587799, + -0.004230343271046877, + -0.00868369173258543, + 0.014623742550611496, + 0.02042188122868538, + -0.020246179774403572, + 0.014258825220167637, + -0.006926680449396372, + 0.006335378624498844, + -0.0323290154337883, + 0.004666217602789402, + -0.014785928651690483, + 0.036140378564596176, + -0.0022165377158671618, + 0.021705850958824158, + -0.006960469298064709, + -0.006642855703830719, + 0.008575567975640297, + 0.0032876390032470226, + -0.04008689522743225, + -0.036248501390218735, + -0.007075350731611252, + -0.007210505194962025, + 0.02644978277385235, + -0.005811654031276703, + -0.01284645777195692, + -0.01465077418833971, + -0.0029683359898626804, + 0.03659990429878235, + -0.01079210638999939, + 0.016380755230784416, + 0.0054163262248039246, + -0.02467925474047661, + -0.01973259262740612, + 0.0014588264748454094, + 0.007176716811954975, + 0.04122219607234001, + 0.02930154837667942, + -0.028869053348898888, + -0.0017485644202679396, + -0.0029750936664640903, + 0.0300043523311615, + 0.013907423242926598, + -0.010312306694686413, + -0.02090843766927719, + 0.00959598645567894, + -0.004409423563629389, + 0.0072510517202317715, + 0.007082108408212662, + -0.01528600137680769, + -0.004277647472918034, + -0.018624322488904, + 0.012143653817474842, + -0.012447752058506012, + 0.028409525752067566, + -0.026828216388821602, + 0.02461167797446251, + -0.010292033664882183, + -0.0014250377425923944, + 0.027922969311475754, + 0.012873489409685135, + 0.007676789071410894, + 0.002970025409013033, + 0.012150411494076252, + -0.023746687918901443, + -0.01406960841268301, + 0.018110735341906548, + 0.003214993281289935, + 0.022881697863340378, + 0.0033535270486027002, + -0.011298935860395432, + 0.036275532096624374, + -0.012373416684567928, + -0.0013507027179002762, + -0.012015256099402905, + 0.008116042241454124, + 0.005771107506006956, + -0.014002030715346336, + 0.021692335605621338, + -0.0003476011042948812, + 0.03965440019965172, + -0.034437429159879684, + 0.008170103654265404, + -0.0033433903008699417, + 0.016421301290392876, + 0.007149685639888048, + 0.008906697854399681, + -0.027328288182616234, + 0.010940776206552982, + 0.005061544943600893, + 0.017664724960923195, + -0.0044601066038012505, + 0.0172592606395483, + -0.010089301504194736, + -0.00897427462041378, + -0.0102176982909441, + 0.0014858574140816927, + -7.195933721959591e-5, + 0.005933293141424656, + 0.009393254294991493, + 0.007615969516336918, + 0.0089877899736166, + 0.003473476739600301, + 0.005429841578006744, + -0.017164651304483414, + 0.0013025538064539433, + 0.008879666216671467, + 0.010251486673951149, + 0.03454555198550224, + 0.0056967721320688725, + -0.02822030894458294, + -0.03311290964484215, + -0.02339528501033783, + -0.02986919693648815, + 0.025652369484305382, + -0.00806873757392168, + -0.03341025114059448, + -0.002941305050626397, + 0.012015256099402905, + -0.019678529351949692, + 0.025963226333260536, + -0.012691030278801918, + -0.01467780489474535, + 0.048250243067741394, + -0.0016640927642583847, + -0.017245745286345482, + 0.004818266723304987, + -0.014312886632978916, + -0.00893372856080532, + -0.01982720009982586, + -0.005882610101252794, + -0.005788001697510481, + 0.009413527324795723, + 0.01916494220495224, + 0.01981368474662304, + 0.025544246658682823, + 0.03600522130727768, + 0.0010221077827736735, + 0.018948694691061974, + 0.03535648062825203, + 0.02627408131957054, + 0.008143072947859764, + 0.0066834017634391785, + -0.010271760635077953, + -0.005595406051725149, + -0.00131269043777138, + 0.018813539296388626, + 0.04143844172358513, + -0.002515567699447274, + 0.01465077418833971, + -0.037302710115909576, + -0.024814410135149956, + -0.028923114761710167, + -0.013670901767909527, + 0.004561472684144974, + 0.011751704849302769, + -0.003612010506913066, + -0.0010035239392891526, + 0.03227495029568672, + -0.006196844857186079, + 0.016569972038269043, + -0.00961625948548317, + 0.004885843954980373, + 0.005206836387515068, + 0.007980887778103352, + -0.012407205067574978, + -0.015623888000845909, + 0.01740793138742447, + -0.007507845759391785, + 0.0058690947480499744, + 0.01735386811196804, + -0.017624178901314735, + 0.006872618570923805, + 0.011062415316700935, + -0.01798909530043602, + -0.02220592461526394, + -0.021084139123558998, + 0.009109429083764553, + -0.002444611396640539, + -9.930705709848553e-5, + -0.007710577920079231, + 0.004054642282426357, + -0.002135444898158312, + 0.00027094301185570657, + -0.011589518748223782, + 0.01851619966328144, + 0.003456582548096776, + 0.019543375819921494, + -0.033950868993997574, + -0.010285275988280773, + -0.029517795890569687, + -0.02107062377035618, + 9.703687828732654e-5, + -0.009683837182819843, + -0.004003959242254496, + 0.016286145895719528, + -0.0067002964206039906, + 0.021084139123558998, + 0.01141381822526455, + 0.015961775556206703, + -0.005933293141424656, + -0.03654584288597107, + -0.0007568665314465761, + 0.027301257476210594, + -0.001768837682902813, + -0.018164796754717827, + -0.013218133710324764, + -0.005744076333940029, + 0.012035530060529709, + 0.017732301726937294, + 0.006480669602751732, + -0.011380028910934925, + -0.031464025378227234, + -0.0019293338991701603, + 0.007784912828356028, + -0.017691755667328835, + -0.012190957553684711, + 0.018191827461123466, + -0.0017823531525209546, + -0.0018685143440961838, + 0.0044364542700350285, + -0.01527248602360487, + 0.032085735350847244, + 0.0035849795676767826, + 0.013610082678496838, + 0.00020146503811702132, + 0.03819473087787628, + -0.010704255662858486, + -0.027395866811275482, + -0.018745962530374527, + 0.0011910510947927833, + -0.028382495045661926, + -0.019016271457076073, + -0.017151135951280594, + 0.006693538744002581, + -0.015975290909409523, + 0.014907567761838436, + -0.00688951276242733, + 0.022949274629354477, + 0.011994983069598675, + -0.0014588264748454094, + 0.033761654049158096, + -0.00026904241531156003, + -0.028436558321118355, + 0.030220599845051765, + 0.004618913400918245, + 0.008001160807907581, + 0.0032504715491086245, + 0.007676789071410894, + 0.0040411269292235374, + -0.024435976520180702, + 0.02759859710931778, + 0.005031135398894548, + 0.010325822047889233, + -0.010623162612318993, + 0.008230923675000668, + -0.025395575910806656, + 0.010906987823545933, + 0.035599756985902786, + -0.018786508589982986, + -0.006872618570923805, + -0.0052946871146559715, + 0.004517547320574522, + -0.03338322043418884, + -0.019597437232732773, + 0.02340880036354065, + 0.004801372066140175, + -0.023476378992199898, + -0.013407350517809391, + 0.013697933405637741, + -0.010271760635077953, + -0.017637694254517555, + 0.020138056948781013, + -0.005848821252584457, + 0.009481105022132397, + 0.022273501381278038, + 0.03470773622393608, + -0.00688275508582592, + 0.03289666399359703, + -0.009474347345530987, + -0.020773284137248993, + 0.03184245526790619, + 0.000845561851747334, + 0.012447752058506012, + -0.006386061664670706, + 0.0003066323115490377, + 0.01409663911908865, + -0.038113635033369064, + -0.018313467502593994, + -0.011211086064577103, + 0.02692282386124134, + 0.0032217511907219887, + 0.02165178954601288, + -0.02873389795422554, + -0.03781629726290703, + -0.006710432935506105, + 0.018205342814326286, + -0.008460686542093754, + 0.005821790546178818, + 0.02211131528019905, + 0.006453638896346092, + 0.0076903048902750015, + -0.008257954381406307, + -0.001438553212210536, + -0.023206068202853203, + 0.007622727192938328, + -0.012299081310629845, + -0.008879666216671467, + 0.01141381822526455, + 0.004335088189691305, + -0.01527248602360487, + 0.0019681910052895546, + -0.007278082892298698, + -0.01401554699987173, + -0.01804315857589245, + -0.011812523938715458, + -0.0032014779280871153, + 0.011548972688615322, + 0.0017806637333706021, + 0.001190206385217607, + 0.002032389398664236, + -0.00987305399030447, + -0.007264567073434591, + 0.00658541452139616, + -0.010001450777053833, + 0.029058268293738365, + 0.0071226549334824085, + -0.007460541557520628, + 0.0026473435573279858, + -0.007480815052986145, + -0.015542794950306416, + -0.012772123329341412, + 0.0029159635305404663, + -0.019327128306031227, + 0.009974420070648193, + 0.010934018529951572, + -0.015434671193361282, + 0.050574902445077896, + 0.005287929438054562, + 0.0014850127045065165, + -0.01110971998423338, + 0.021908583119511604, + -0.021381480619311333, + -0.0051460168324410915, + 0.014461557380855083, + 0.018881117925047874, + -0.006446881219744682, + 0.003730270778760314, + -0.010406915098428726, + 0.0006943574990145862, + 0.010967806912958622, + -0.018340498208999634, + 0.018097219988703728, + 0.02524690516293049, + 0.0198542308062315, + 0.005068302620202303, + 0.0167456716299057, + 0.006122509948909283, + -0.004754067864269018, + -0.012393689714372158, + 0.02205725386738777, + -0.019273066893219948, + 0.034491490572690964, + 0.008609357289969921, + 0.01442101038992405, + 0.018245890736579895, + 0.01980016939342022, + -0.002255394821986556, + -0.00867017637938261, + -0.027950000017881393, + 0.007737609092146158, + 9.777600644156337e-5, + 0.006913165096193552, + 0.0007657360984012485, + 0.009116187691688538, + -0.011859828606247902, + 0.0022705995943397284, + 0.010974564589560032, + -0.0021371343173086643, + 0.009481105022132397, + 0.02746344357728958, + 0.00016588132712058723, + -0.009683837182819843, + -0.0044533489271998405, + -0.006490806583315134, + 3.687718344735913e-5, + -0.006477290764451027, + -0.0034295516088604927, + -0.007568665314465761, + 0.0005596250994130969, + 0.0059839761815965176, + 0.01111647766083479, + 0.005899504292756319, + 0.0073929643258452415, + 0.0005592027446255088, + -0.007940340787172318, + 0.004713521804660559, + -0.018340498208999634, + -0.005612300708889961, + -0.02517932839691639, + -0.018326982855796814, + -0.02507120370864868, + -0.006926680449396372, + -0.00627455860376358, + -0.022597871720790863, + 0.0027706720866262913, + -0.013373561203479767, + -0.00464932294562459, + 0.03338322043418884, + -0.0007311026565730572, + -0.027895938605070114, + -0.0024361643008887768, + 0.026747122406959534, + -0.007751124445348978, + 0.0019884640350937843, + 0.0003471787495072931, + 0.021084139123558998, + 0.00047219687257893384, + 0.0051493956707417965, + -0.0023668974172323942, + -0.005997491534799337, + 0.00953516736626625, + 0.017718786373734474, + 0.017489023506641388, + -0.025490183383226395, + 0.01627263054251671, + -0.011961194686591625, + -0.020138056948781013, + -0.012109864503145218, + -0.00985278096050024, + -0.006717190612107515, + 0.008014676161110401, + -0.000593413773458451, + -0.017705271020531654, + 0.007960613816976547, + 0.01051503885537386, + -0.007372691296041012, + 0.0014453110052272677, + 0.008798573166131973, + -0.011177296750247478, + 0.006038038060069084, + 0.0011293868301436305, + -0.012677514925599098, + 0.0022013329435139894, + 0.015691464766860008, + -0.03054497204720974, + 0.004044505767524242, + -0.0006255130283534527, + -0.024354884400963783, + 0.006369167007505894, + -0.0027284363750368357, + -0.029707012698054314, + 0.024354884400963783, + 0.016340207308530807, + -0.006619203370064497, + -0.010961049236357212, + -0.018827054649591446, + 0.0034869923256337643, + 0.0044567277655005455, + 0.01401554699987173, + 0.00047853225260041654, + 0.002328040311113, + -0.006044795736670494, + -0.018354013562202454, + -0.01254911720752716, + -0.007602454163134098, + 0.00402761111035943, + 0.005173047538846731, + -0.010575858876109123, + 0.014921083115041256, + 0.011859828606247902, + -0.011373271234333515, + -0.007196989841759205, + -0.0016176332719624043, + 0.012184199877083302, + 0.015556310303509235, + -0.024179182946681976, + 0.01497514545917511, + 0.004179660230875015, + -0.0064367447048425674, + 0.00806197989732027, + 0.005510934628546238, + 0.017110589891672134, + 0.0012028771452605724, + -0.006419850047677755, + 0.0064097135327756405, + -0.005341991316527128, + 0.040330175310373306, + -0.03105855919420719, + 0.00925809983164072, + 0.004612155724316835, + -0.007217263337224722, + -0.0008181085577234626, + -0.02217889204621315, + 0.0102176982909441, + -0.011724674142897129, + 5.4220279707806185e-5, + -0.0034396881237626076, + 0.0052710347808897495, + -0.004531062673777342, + -0.004916253499686718, + -0.015623888000845909, + 0.0007986800628714263, + 0.02704446390271187, + 0.01469132024794817, + 0.018935179337859154, + -0.005646089091897011, + -0.026598453521728516, + 0.011305694468319416, + 0.019489314407110214, + -0.03600522130727768, + 0.015150845982134342, + -0.0047270371578633785, + -0.0014976834645494819, + -0.00958922877907753, + -0.0324641689658165, + -0.00032014778116717935, + 0.00804846454411745, + -0.004193176049739122, + 0.011596276424825191, + 0.001123473746702075, + 0.008433655835688114, + -0.02524690516293049, + 0.002441232558339834, + -0.0003868804487865418, + 0.002057730918750167, + 0.005831927061080933, + -0.02462519332766533, + 0.012643725611269474, + -0.0026929581072181463, + -0.0018735826015472412, + -0.017205199226737022, + -0.008562052622437477, + 0.013515474274754524, + 0.03122074529528618, + 0.001241734134964645, + 0.0044533489271998405, + -0.01082589477300644, + 0.005970460828393698, + 0.005683256778866053, + 0.0012290633749216795, + -0.019313612952828407, + -0.009312161244452, + 0.0005803206586278975, + -0.010677224956452847, + -0.021205779165029526, + 0.018151281401515007, + -0.03470773622393608, + -0.03792442008852959, + 0.007156443316489458, + 0.00869044940918684, + -0.013326257467269897, + 0.010028481483459473, + -0.002113482216373086, + 0.013197860680520535, + 0.0190703347325325, + 0.011880101636052132, + 0.012515328824520111, + 0.0045851245522499084, + 0.023679111152887344, + 0.0015103542245924473, + -0.019962355494499207, + -0.004882465116679668, + 0.023733172565698624, + 0.011657096445560455, + 0.03538351133465767, + 0.0024006860330700874, + 0.023827780038118362, + -0.014231794513761997, + -0.008764784783124924, + 0.00835932046175003, + -0.010278518311679363, + 0.024354884400963783, + 0.012501813471317291, + -0.026801185682415962, + 0.010697497986257076, + 0.0035613274667412043, + -0.013589808717370033, + -0.013907423242926598, + -0.0179080031812191, + -0.001765458844602108, + 0.010697497986257076, + -0.007913310080766678, + 0.007737609092146158, + 0.00011361445649527013, + -0.0025341513101011515, + -2.858839616237674e-5, + -0.0027723615057766438, + -0.02276005782186985, + 0.004666217602789402, + 0.005490661133080721, + 0.020083993673324585, + -0.00336028472520411, + -0.013637113384902477, + 0.009109429083764553, + -0.0029649571515619755, + -0.014204762876033783, + 0.007805186323821545, + 0.012251777574419975, + -0.02323310077190399, + 0.01736738346517086, + 0.002768982667475939, + 0.019367674365639687, + -0.007724093273282051, + -0.0089877899736166, + 0.006382682826370001, + -0.004291162826120853, + 0.00835932046175003, + 0.006541489623486996, + 0.008163345977663994, + 0.015799589455127716, + -0.015394125133752823, + 0.006048174574971199, + 0.009818991646170616, + -0.020097509026527405, + 0.0024615058209747076, + 0.013806057162582874, + 0.0014419321669265628, + 0.008920213207602501, + -0.005706909112632275, + -0.015164362266659737, + 0.012062560766935349, + -0.03703239932656288, + -3.708836084115319e-5, + 0.0024361643008887768, + -0.0002933280193246901, + 0.010988079942762852, + -0.0014672736870124936, + -0.024422461166977882, + 0.012481540441513062, + -0.003463340224698186, + -0.004595261067152023, + -0.007419995032250881, + -0.01616450771689415, + 0.02047594264149666, + 0.008034949190914631, + 0.006085342261940241, + -0.0086634187027812, + 0.0075483922846615314, + -0.018854087218642235, + -0.011319209821522236, + 0.0107988640666008, + -0.0036356626078486443, + 0.005480524618178606, + 0.00953516736626625, + -0.001019573537632823, + 0.030680125579237938, + 0.018854087218642235, + -0.0026507223956286907, + 0.0033096016850322485, + -0.011258389800786972, + -0.01470483560115099, + -0.010690740309655666, + -0.0064333658665418625, + 0.0028973796870559454, + -0.022584356367588043, + 0.008190377615392208, + -0.012501813471317291, + -0.002863591071218252, + -0.0013811124954372644, + -0.002895690267905593, + 0.0027081631124019623, + 0.04054642096161842, + 0.02581455558538437, + 0.010292033664882183, + 0.011630065739154816, + -0.021435542032122612, + 0.026030803099274635, + -8.837853238219395e-5, + -0.005899504292756319, + -0.011454364284873009, + 0.008393109776079655, + 0.007994403131306171, + -0.004068157635629177, + 0.0006212894222699106, + -0.0167456716299057, + -0.007068593055009842, + -0.02628759667277336, + -0.014785928651690483, + -0.0179755799472332, + -0.014556165784597397, + 0.00954868271946907, + 0.032058704644441605, + 0.01371820643544197, + 0.00027009830228053033, + 0.013603325001895428, + 0.01796206459403038, + 0.01018390990793705, + 0.0040377480909228325, + 0.021895067766308784, + -0.007838974706828594, + -0.0107988640666008, + 0.01796206459403038, + -0.011799008585512638, + 0.0204353965818882, + -0.001986774615943432, + 0.01284645777195692, + -0.01969204656779766, + 0.00954192504286766, + -0.009156733751296997, + 0.006808420177549124, + -0.013211376033723354, + 0.02266545034945011, + -0.013819572515785694, + 0.021111169829964638, + -0.008737754076719284, + 0.004906116984784603, + -0.007453783880919218, + -0.03343728184700012, + -0.007818701677024364, + -0.005794759374111891, + -0.025044173002243042, + -0.005791380535811186, + 0.0015804657014086843, + 0.027287742123007774, + -0.0033839368261396885, + 0.024706287309527397, + 0.03373462334275246, + 0.0016125650145113468, + -0.0045783668756484985, + 0.010555584914982319, + 0.019583921879529953, + 0.02640923671424389, + 0.003255539806559682, + 0.013880391605198383, + -0.000971424684394151, + -0.009359465911984444, + -0.01911088079214096, + 0.002600039355456829, + 0.006845587398856878, + -0.004882465116679668, + -0.004747310187667608, + -0.012616694904863834, + -0.03176136314868927, + 0.03951924666762352, + -0.007298355922102928, + -0.005882610101252794, + -0.007933583110570908, + -0.0072713252156972885, + 0.0025983499363064766, + -0.002194575034081936, + -0.0010803932091221213, + -0.022476233541965485, + -0.027950000017881393, + 0.010711013339459896, + 0.010940776206552982, + -0.02223295532166958, + 0.00900806300342083, + 0.004399286583065987, + -0.0061089941300451756, + -0.0014993728836998343, + 0.009089156053960323, + -0.0071023814380168915, + 0.02330067753791809, + -0.0111232353374362, + -0.0026541012339293957, + 0.016313176602125168, + 0.009055367670953274, + 0.013312742114067078, + -0.009048609994351864, + 0.00029607335454784334, + 0.028301402926445007, + -0.023084430024027824, + 0.022422172129154205, + -0.002807839773595333, + -0.01498866081237793, + 0.019989386200904846, + 0.0013844913337379694, + -0.019313612952828407, + 0.011488152667880058, + 0.01346141193062067, + -0.035005077719688416, + -0.01497514545917511, + 0.029220454394817352, + -0.016542939469218254, + -0.005078439600765705, + 0.01528600137680769, + -0.016556454822421074, + -0.01613747514784336, + 0.006000870373100042, + 0.007730850949883461, + 0.010116332210600376, + -0.0058454424142837524, + 0.006480669602751732, + 0.003645799122750759, + 0.01171791646629572, + -0.015353578142821789, + -0.006750979460775852, + 0.00674084248021245, + -0.0068489667028188705, + 0.013630355708301067, + -0.012190957553684711, + 0.004000580403953791, + 0.011224601417779922, + 0.0019006135407835245, + 0.03654584288597107, + -0.03165324032306671, + 0.017070043832063675, + -0.01053531188517809, + -0.0058690947480499744, + 0.0197190772742033, + -0.0008413382456637919, + 0.0035140232648700476, + 0.010900230146944523, + 0.005831927061080933, + 0.007460541557520628, + 0.01316407136619091, + -0.008183619938790798, + 0.010711013339459896, + 0.023773718625307083, + -0.0016776082338765264, + -0.008034949190914631, + 0.011461121961474419, + -0.01984071545302868, + 0.006811799015849829, + 0.02103007771074772, + -0.017570115625858307, + -0.002503741532564163, + 0.012407205067574978, + -0.01496163010597229, + 0.01981368474662304, + 0.030815280973911285, + -0.01470483560115099, + -0.019962355494499207, + 0.017826911062002182, + 0.0021928856149315834, + -0.015056238509714603, + 0.013961484655737877, + 0.005646089091897011, + 0.018894633278250694, + -0.026693060994148254, + 0.015948260203003883, + -0.00478447787463665, + -0.00925134215503931, + 0.03476179763674736, + 0.0019850851967930794, + -0.012076076120138168, + 0.02089492231607437, + -0.006494185421615839, + 0.004564851522445679, + 0.02404402755200863, + 0.013373561203479767, + 0.014177732169628143, + -0.009386496618390083, + 0.020192118361592293, + 0.008541779592633247, + 0.012157169170677662, + -0.006575278006494045, + 0.0026929581072181463, + -0.003187962342053652, + 0.018313467502593994, + 0.009068883024156094, + 0.005487282294780016, + 0.024300822988152504, + 0.01982720009982586, + 0.009994693100452423, + 0.006490806583315134, + -0.011508425697684288, + -0.0036052525974810123, + -0.007196989841759205, + 0.0013836466241627932, + 0.02331419289112091, + -0.016556454822421074, + -0.012400447390973568, + -0.002191196195781231, + 0.002061109757050872, + 0.00524400407448411, + -0.015042722225189209, + 0.016340207308530807, + -0.0023010093718767166, + -0.005487282294780016, + 0.013191103003919125, + 0.027220165356993675, + 0.012265292927622795, + 0.01375875249505043, + 0.03573491424322128, + -0.02749047428369522, + 0.012799154035747051, + 0.010961049236357212, + 0.02161124348640442, + -0.012204472906887531, + -0.0019597436767071486, + -0.02163827419281006, + -0.005899504292756319, + -0.006666507571935654, + -0.021719366312026978, + 0.019273066893219948, + -0.03057200275361538, + -0.0011961194686591625, + 0.033761654049158096, + 0.010677224956452847, + 0.008920213207602501, + -0.011211086064577103, + -0.0035072655882686377, + -0.012711303308606148, + -0.00894724391400814, + 0.02336825430393219, + -0.02158421277999878, + -0.007683547213673592, + -0.012157169170677662, + -0.018097219988703728, + -0.01529951673001051, + -0.004787856712937355, + 0.021922098472714424, + 0.027814846485853195, + 0.0047033848240971565, + 0.013643871061503887, + -0.009190522134304047, + -0.007257809396833181, + 0.004639186430722475, + 0.008453928865492344, + -0.005730560980737209, + 0.008622872643172741, + -0.03297775611281395, + -0.0021438919939100742, + 0.033950868993997574, + -0.008190377615392208, + -0.00336704240180552, + -0.006619203370064497, + -0.0215977281332016, + 0.008082253858447075, + -0.004186417907476425, + 0.020827345550060272, + 0.008426898159086704, + -0.0011918959207832813, + 0.018651355057954788, + -0.014934598468244076, + 0.013880391605198383, + -0.001472341944463551, + -0.014177732169628143, + 0.0021709229331463575, + 0.02459816262125969, + -0.007798428647220135, + 0.0009688905556686223, + 0.001616788562387228, + -0.01346816960722208, + -0.020692190155386925, + -0.017732301726937294, + -0.0032775024883449078, + -0.001049983431585133, + 0.004091809969395399, + 0.015732012689113617, + -0.006054932251572609, + 0.011988225392997265, + -0.01728629134595394, + -0.0032842601649463177, + -0.017799878492951393, + -0.007832217030227184, + 0.00022786244517192245, + 0.008879666216671467, + -0.007534876931458712, + 0.0017941792029887438, + -0.012380174361169338, + 0.03949221596121788, + 0.0035511907190084457, + 0.021827491000294685, + 0.014596711844205856, + -0.0021489604841917753, + 0.0030392922926694155, + 0.0058657159097492695, + 0.00928513053804636, + 0.007609211839735508, + -0.006379303522408009, + 0.016326691955327988, + 0.009062125347554684, + 0.005740697495639324, + -0.022976305335760117, + -0.002652411814779043, + 0.02876092866063118, + -0.01052179653197527, + -0.030950436368584633, + 0.017151135951280594, + 0.00108292733784765, + -0.02284115180373192, + -0.0056900144554674625, + -0.0028940008487552404, + -0.030382785946130753, + 0.005527828820049763, + -0.0006124199135228992, + -0.002755467314273119, + -0.0037877114955335855, + 0.007730850949883461, + -0.012386932037770748, + -0.0032808813266456127, + 0.0024429219774901867, + -0.00962977483868599, + 0.006291453260928392, + -0.00867693405598402, + 0.012143653817474842, + -0.01558334194123745, + 0.021192263811826706, + -0.008028191514313221, + -0.02339528501033783, + 0.014137186110019684, + -0.031950581818819046, + 0.04368201270699501, + 0.01847565360367298, + -0.008034949190914631, + -0.018124250695109367, + -0.01079210638999939, + -0.012663999572396278, + -0.00985953863710165, + -0.029112331569194794, + 0.023057399317622185, + 0.003919487353414297, + 0.010379884392023087, + -0.005929914303123951, + -0.008872908540070057, + -0.0005127433105371892, + -0.029625918716192245, + 0.007683547213673592, + 0.008244439028203487, + -0.014191247522830963, + -0.01401554699987173, + -0.010859683156013489, + 0.014867021702229977, + -0.015988806262612343, + 0.0001861545315477997, + 0.005034514237195253, + 0.0061123729683458805, + -0.012582906521856785, + -1.4162210391077679e-5, + -0.004645944107323885, + -0.013893906958401203, + -0.019462281838059425, + 0.007933583110570908, + 0.013191103003919125, + -0.003807984758168459, + -0.0026642377488315105, + -0.02213834598660469, + -0.0031305216252803802, + 0.0007403945783153176, + -0.0062846955843269825, + -0.02639572136104107, + -0.011548972688615322, + -0.020557036623358727, + -0.010569100268185139, + -0.006382682826370001, + 0.005467009264975786, + 0.005885988939553499, + -0.015353578142821789, + -0.011467879638075829, + 0.0007006928790360689, + 0.010075786150991917, + 0.00402085343375802, + 0.011001596227288246, + -0.0052946871146559715, + 0.0071226549334824085, + 0.01284645777195692, + 0.00835932046175003, + -0.0015517453430220485, + -0.02751750499010086, + -0.027233680710196495, + 0.015745528042316437, + 0.0008649903465993702, + 0.0028027715161442757, + 0.019489314407110214, + -0.004838539753109217, + 0.007825459353625774, + -0.0062644220888614655, + 0.012893762439489365, + 0.00837959349155426, + -0.009650048799812794, + -0.003713376587256789, + 0.012684272602200508, + -0.007001015357673168, + -0.010427188128232956, + 0.02340880036354065, + 0.01438046433031559, + -0.008730996400117874, + 0.0004869794356636703, + -0.018286436796188354, + -0.01851619966328144, + 0.005159532185643911, + -0.003081528004258871, + -0.006909786257892847, + 0.003431241028010845, + -0.02340880036354065, + -0.017543084919452667, + -0.01912439614534378, + 0.016448331996798515, + 0.02574697881937027, + -0.0034869923256337643, + 0.0014562923461198807, + 0.008089011535048485, + -0.020151572301983833, + 0.011846313253045082, + -0.0005545567837543786, + -0.007764639798551798, + 0.021746397018432617, + 0.012042287737131119, + -0.005139259155839682, + -0.019367674365639687, + 0.02154366485774517, + -0.0008113508229143918, + -0.0014241930330172181, + -0.00955544039607048, + 0.01377902552485466, + -0.007906552404165268, + -0.00898103229701519, + 0.01923251897096634, + -0.00836607813835144, + 0.01804315857589245, + 0.010420430451631546, + -0.0004983831313438714, + -0.0011783804511651397, + 0.001075324951671064, + 0.028301402926445007, + -0.011190812103450298, + -0.010136605240404606, + -0.022489748895168304, + 0.009095913730561733, + -0.019975870847702026, + -0.00899454765021801, + 0.007805186323821545, + 0.011082688346505165, + 0.004210070241242647, + 0.00985278096050024, + 0.0016818317817524076, + -0.011954437009990215, + -0.015759043395519257, + -0.022557325661182404, + -0.01734035275876522, + 0.01565091870725155, + 0.007920067757368088, + 0.012657241895794868, + 0.009643291123211384, + 0.018110735341906548, + 0.013920938596129417, + -0.022503264248371124, + -0.005970460828393698, + 0.0083390474319458, + -0.02154366485774517, + 0.0008573879022151232, + -0.009650048799812794, + -0.01440749503672123, + -0.007507845759391785, + 0.021219294518232346, + 0.010325822047889233, + -0.0061157518066465855, + 0.00018900545546784997, + -0.0038181215059012175, + 0.024936050176620483, + -0.007474057376384735, + 0.016042867675423622, + -0.004561472684144974, + 0.006163056008517742, + 0.007440268527716398, + -0.008541779592633247, + -0.005213594064116478, + 0.0021574075799435377, + 0.0024750211741775274, + 0.0022638419177383184, + 0.004983831197023392, + -0.009014821611344814, + 0.013576293364167213, + 0.02046242728829384, + -0.007365933153778315, + -0.0015475217951461673, + 0.01734035275876522, + -0.024990111589431763, + -0.006392819341272116, + -0.0004481224459595978, + 0.005534586496651173, + -0.027841877192258835, + -0.004389150068163872, + -0.00925809983164072, + -0.017489023506641388, + 0.004108704160898924, + -0.011900374665856361, + 0.026787670329213142, + 0.004210070241242647, + -0.01675918698310852, + -0.015921227633953094, + -0.003473476739600301, + 0.015542794950306416, + 0.007048319559544325, + 0.014245309866964817, + -0.023138491436839104, + 0.008203892968595028, + -0.007913310080766678, + 0.0015694844769313931, + -0.004253995604813099, + -0.007507845759391785, + -0.004294541664421558, + -0.019610952585935593, + -0.0086634187027812, + -0.008217408321797848, + 0.01440749503672123, + -0.005500798113644123, + 0.02584158629179001, + -0.026206504553556442, + 0.004058021120727062, + -0.011373271234333515, + 0.006396198179572821, + -0.003868804546073079, + 3.737873339559883e-5, + 0.01619153842329979, + 0.008325532078742981, + 0.0020932089537382126, + -0.004213449079543352, + 0.0025611822493374348, + -0.014799444004893303, + 0.003071391489356756, + -0.016069898381829262, + 0.00031866953941062093, + -0.012880247086286545, + -0.008724238723516464, + -0.00806873757392168, + -0.003791090566664934, + 0.002454747911542654, + 0.017718786373734474, + 0.00925809983164072, + 0.01411015447229147, + -0.005534586496651173, + -0.02340880036354065, + 0.007899794727563858, + 0.012069318443536758, + -0.00028086843667551875, + 0.003939760848879814, + 0.009440558962523937, + -0.007852490060031414, + -0.0051223644986748695, + 0.023070914670825005, + -0.007771397475153208, + 0.01624559983611107, + 0.0274769589304924, + 0.008771542459726334, + 0.0010280207497999072, + 0.021759912371635437, + -0.0007420839974656701, + 0.0029683359898626804, + -0.009771687909960747, + 0.020056962966918945, + -0.006186708342283964, + 0.001964811934158206, + 0.0010398468002676964, + 0.007426753174513578, + 0.0071023814380168915, + -0.0018685143440961838, + -0.011528699658811092, + -0.01141381822526455, + 0.0012620073975995183, + -0.04260077327489853, + -0.011332725174725056, + -0.00034274396602995694, + 0.019637983292341232, + -0.002748709637671709, + -0.0047337948344647884, + 0.006315105129033327, + 0.0033585953060537577, + -0.00048528998740948737, + -0.0002703094796743244, + -0.0031389689538627863, + -0.012988370843231678, + -0.012319354340434074, + -0.029815135523676872, + 0.001079548499546945, + 0.012988370843231678, + -0.001572863315232098, + 0.03673505783081055, + 0.005007483065128326, + -0.006203602533787489, + -0.010069028474390507, + -0.015759043395519257, + -0.0041391137056052685, + -0.004047884605824947, + 0.012447752058506012, + -0.02157069742679596, + 0.026206504553556442, + 0.003230198286473751, + -0.003012261353433132, + -0.0035579486284404993, + -0.0011547283502295613, + -0.018151281401515007, + -0.0012307529104873538, + 0.00834580510854721, + 0.01531303208321333, + 0.005811654031276703, + 0.005409568548202515, + -0.03243713825941086, + -7.042829383863136e-5, + 0.014258825220167637, + -0.0032504715491086245, + -0.00329270726069808, + -0.021205779165029526, + 0.0021337554790079594, + 0.005054787266999483, + 0.0035849795676767826, + 0.005510934628546238, + 0.008028191514313221, + 0.005676499102264643, + 0.006649613380432129, + 0.005659604910761118, + 0.00494666351005435, + -0.0191379114985466, + -0.029544826596975327, + 0.013664144091308117, + -0.013380318880081177, + 0.02692282386124134, + -0.027355318889021873, + 0.004669596441090107, + -0.021367965266108513, + -0.004713521804660559, + -0.00688275508582592, + 0.007082108408212662, + 0.0032910178415477276, + 0.022624904289841652, + -0.005646089091897011, + 0.006345515139400959, + 0.02992326021194458, + 0.027098525315523148, + 0.020124541595578194, + -0.024341369047760963, + 0.02524690516293049, + -0.009149976074695587, + 0.0020340788178145885, + -0.016394270583987236, + 0.001746875001117587, + 0.0048723286017775536, + -8.135681855492294e-5, + 0.008460686542093754, + -0.002895690267905593, + 0.008467444218695164, + 0.005537965334951878, + -0.0027284363750368357, + -0.00015563913621008396, + -0.018259406089782715, + -0.028301402926445007, + -0.0008759716874919832, + 0.008447171188890934, + -0.010961049236357212, + -0.0051223644986748695, + 0.029842166230082512, + 0.015813104808330536, + -0.007224021013826132, + 0.00869044940918684, + 0.020178603008389473, + 0.011278662830591202, + 0.011427333578467369, + -0.017489023506641388, + 0.01438046433031559, + -0.006210360210388899, + 0.014529134146869183, + 0.019489314407110214, + -0.03668099641799927, + 0.0031355898827314377, + 0.009433801285922527, + -0.007717335596680641, + -0.04076267033815384, + 0.018286436796188354, + -0.022003192454576492, + 0.035113200545310974, + 0.03570788353681564, + 0.004422938916832209, + -0.00016229128232225776, + 0.010717771016061306, + -0.029193423688411713, + 0.013603325001895428, + 0.00033767567947506905, + 0.00016809870430734009, + -0.006206981372088194, + -0.003649177961051464, + -0.005014240741729736, + -0.01738089881837368, + -0.03122074529528618, + -0.044087477028369904, + 0.007960613816976547, + 0.003493750002235174, + 0.0092445844784379, + -0.0017823531525209546, + -0.00985278096050024, + -0.006129267625510693, + -0.005929914303123951, + 0.028409525752067566, + -0.008224165998399258, + 0.0003756879305001348, + -0.004301299806684256, + -0.005135880317538977, + 0.007021288853138685, + 0.004858812782913446, + -0.015921227633953094, + -0.0068286932073533535, + 0.018935179337859154, + 0.014785928651690483, + 0.013245164416730404, + 0.017732301726937294, + -0.017015982419252396, + -0.011177296750247478, + 0.021124685183167458, + -0.004125598352402449, + 0.02685524709522724, + 0.0005211904644966125, + -0.0011690885294228792, + 0.010339337401092052, + -0.009663564153015614, + 0.038032542914152145, + 0.006352272816002369, + -0.0005439978558570147, + -0.010379884392023087, + -0.013001886196434498, + 0.0025915922597050667, + 0.011799008585512638, + -0.026044318452477455, + 0.019665013998746872, + 0.00223343214020133, + 0.007190232165157795, + -0.0010398468002676964, + 0.013069462962448597, + 0.015786074101924896, + 0.008075496181845665, + -0.02034078910946846, + 0.017070043832063675, + -0.004355361685156822, + 0.0007598230731673539, + -0.003990443889051676, + 0.012082833796739578, + 0.02822030894458294, + 0.0006930903764441609, + -0.015083269216120243, + 0.016313176602125168, + 0.006717190612107515, + -0.011994983069598675, + -0.008332289755344391, + 0.0033687318209558725, + -0.005669741425663233, + -0.009095913730561733, + 0.007764639798551798, + -0.016597002744674683, + 0.0250847190618515, + 0.005020998418331146, + 0.0021371343173086643, + 0.010271760635077953, + -0.0008979343110695481, + 0.005629194900393486, + 0.014312886632978916, + -0.0006221341900527477, + 0.006598930340260267, + 0.02323310077190399, + -0.005156153347343206, + -0.0036626935470849276, + 0.0003437998821027577, + -0.015759043395519257, + 0.006774631328880787, + -0.0102176982909441, + -0.010325822047889233, + -0.014529134146869183, + -0.0045817457139492035, + -0.0037809538189321756, + -0.00990684237331152, + 0.013387077488005161, + 0.012501813471317291, + -0.02100304700434208, + 0.0030697020702064037, + -0.0017823531525209546, + 0.0029193423688411713, + 0.02220592461526394, + -0.021300386637449265, + 0.0075416346080601215, + 0.011562488041818142, + -0.0015661055222153664, + 0.006315105129033327, + 0.00011276973964413628, + 0.006767873652279377, + -0.007717335596680641, + -0.006038038060069084, + -0.0015779315726831555, + 0.014839990064501762, + 0.01613747514784336, + 0.005321717821061611, + 0.004781099036335945, + 0.012184199877083302, + -0.0016632480546832085, + 0.001479944447055459, + 0.0018448622431606054, + 0.028409525752067566, + 0.0069807423278689384, + 0.009947389364242554, + 0.023598017171025276, + 0.02405754290521145, + 0.028301402926445007, + -0.009204037487506866, + -0.010129847563803196, + 0.005825169384479523, + 0.0013194481143727899, + -0.0007175871869549155, + 0.004760825540870428, + -0.002907516434788704, + 0.00511560682207346, + -0.005206836387515068, + -0.01500217616558075, + -0.021286871284246445, + 0.01532654743641615, + -0.006487427745014429, + -0.004821645561605692, + -0.001865135389380157, + 0.017826911062002182, + 0.0076903048902750015, + 0.006426607724279165, + -0.01624559983611107, + 0.017137620598077774, + 0.008034949190914631, + 0.025449637323617935, + -0.020570551976561546, + 0.006987500004470348, + -0.011292178183794022, + -0.007926825433969498, + -0.0024260275531560183, + -0.028382495045661926, + 0.015231939032673836, + 0.0009807165479287505, + 0.008886423893272877, + 0.0019850851967930794, + 0.013197860680520535, + 0.0014241930330172181, + 0.01788097247481346, + -0.01911088079214096, + -0.01739441603422165, + -0.006838829722255468, + -0.020773284137248993, + -0.0027723615057766438, + 0.015529279597103596, + 0.0021151716355234385, + -0.019408220425248146, + 0.005385916214436293, + 0.0107988640666008, + -0.006693538744002581, + 0.029625918716192245, + 0.0053014447912573814, + -0.020840860903263092, + -0.0002339866477996111, + -0.01734035275876522, + 0.003274123650044203, + -0.002522325376048684, + 0.02220592461526394, + 0.012657241895794868, + 0.01254911720752716, + -0.036167409271001816, + -0.0036289046984165907, + 0.029788104817271233, + -0.012900520116090775, + -0.009474347345530987, + 0.003223440609872341, + 0.016529424116015434, + 0.02526042051613331, + -0.006163056008517742, + 0.02326013147830963, + -0.012724818661808968, + 0.014569681137800217, + -0.02274654246866703, + 0.003966791555285454, + -0.008825604803860188, + 0.03589709848165512, + -0.013880391605198383, + -0.01854323036968708, + 0.018881117925047874, + 0.005203457549214363, + 0.0054197050631046295, + 0.0102176982909441, + -0.008284986019134521, + 0.0016902789939194918, + 0.011771977879106998, + 0.0007070282590575516, + 0.022976305335760117, + -0.008582325652241707, + 0.010129847563803196, + 0.02280060388147831, + 0.01313028298318386, + -0.0016024283831939101, + -0.014583196491003036, + -0.010569100268185139, + -0.010454218834638596, + 0.007284840568900108, + -0.007994403131306171, + 0.014164216816425323, + -0.010596131905913353, + 0.006183329503983259, + -0.0005490661133080721, + 0.005649467930197716, + 0.00869044940918684, + 0.0013152245664969087, + -0.007906552404165268, + -0.009163491427898407, + 0.008487717248499393, + -0.020502973347902298, + 0.0004709298082161695, + -0.026165958493947983, + 0.011893616989254951, + -0.005142637994140387, + 0.011697642505168915, + -0.0013025538064539433, + 0.020165087655186653, + -0.0030578759033232927, + -0.0055447230115532875, + 0.0017088627209886909, + 0.022422172129154205, + 0.007534876931458712, + -0.005260898265987635, + -0.0038215003442019224, + 0.02151663415133953, + 0.02097601629793644, + 0.00867693405598402, + -0.01435343362390995, + 0.008487717248499393, + -0.024152152240276337, + 0.0019377811113372445, + 0.007467299234122038, + -0.019286582246422768, + 0.011143508367240429, + 0.0024310958106070757, + 0.000685910286847502, + 0.003372110892087221, + -0.02267896570265293, + 0.016029352322220802, + 0.0004886688548140228, + 0.013975000008940697, + 0.009528408758342266, + -0.003713376587256789, + 0.01565091870725155, + -0.021908583119511604, + -0.0027841876726597548, + 0.006142782978713512, + -0.001809384091757238, + 0.03949221596121788, + 0.009014821611344814, + 0.010879956185817719, + -0.013008643873035908, + -0.0054467362351715565, + -0.029734043404459953, + -0.001986774615943432, + -0.016353724524378777, + -0.0068489667028188705, + -0.010373126715421677, + 0.006926680449396372, + -0.0005216128192842007, + 0.00508181843906641, + 0.013866876251995564, + -0.002765603829175234, + 0.009460831992328167, + 0.0017147758044302464, + -0.004058021120727062, + 0.0008244439377449453, + 0.0009106050711125135, + -0.00321161444298923, + -0.0022824257612228394, + -0.024773864075541496, + 0.0004324951732996851, + -0.005598785355687141, + 0.02400348149240017, + -0.006788146682083607, + -0.011805766262114048, + -0.007838974706828594, + -0.004000580403953791, + 0.018272921442985535, + -0.006940195802599192, + -0.03789738938212395, + -0.006058311089873314, + -0.007088866084814072, + 0.007771397475153208, + -0.008913455531001091, + 0.007744366768747568, + 0.01406960841268301, + -0.006490806583315134, + -0.004618913400918245, + -0.008839120157063007, + 0.009359465911984444, + -0.018772993236780167, + -0.004409423563629389, + -0.007575422991067171, + -0.007953856140375137, + 0.012353143654763699, + -0.022327562794089317, + -0.012582906521856785, + 0.009758172556757927, + -0.011792250908911228, + -0.025341514497995377, + -0.013001886196434498, + 0.0009173628059215844, + -0.009677079506218433, + 0.016340207308530807, + -0.027639145031571388, + -0.010312306694686413, + -0.020692190155386925, + -0.0066766440868377686, + 0.014461557380855083, + 0.01986774615943432, + 0.009028336964547634, + -0.0030697020702064037, + 0.006994257681071758, + -0.0006022833404131234, + -0.001475720782764256, + 0.01376551017165184, + -0.02096250094473362, + 0.028436558321118355, + -0.010643435642123222, + -0.0018043158343061805, + -0.0102176982909441, + -0.00896075926721096, + -0.025517214089632034, + -0.026571422815322876, + 0.01739441603422165, + -0.006696917582303286, + 0.0006335378275252879, + -0.010393399745225906, + -0.011826040223240852, + 0.000979027128778398, + -0.004389150068163872, + -0.008433655835688114, + 0.012934308499097824, + -0.007284840568900108, + 0.0012096349382773042, + 0.021800460293889046, + 0.01052179653197527, + 0.02039485052227974, + -0.022368108853697777, + -0.011177296750247478, + 0.004220206756144762, + 0.008751269429922104, + -0.01015687920153141, + -0.011609791778028011, + -0.01623208448290825, + 0.007609211839735508, + 0.01738089881837368, + 0.001883719232864678, + 0.0041323560290038586, + -0.017137620598077774, + 0.016637548804283142, + -0.021435542032122612, + -0.014218279160559177, + 0.0078119440004229546, + -0.0019563648384064436, + -0.011069172993302345, + 0.014745382592082024, + -0.025044173002243042, + 0.015502248890697956, + -0.013184345327317715, + 0.03722161427140236, + 0.001995221944525838, + 0.0011302315397188067, + 0.009149976074695587, + -0.008886423893272877, + -0.020827345550060272, + 0.015245454385876656, + -0.010251486673951149, + 0.01046773511916399, + 0.028301402926445007, + 0.002022252883762121, + -0.016313176602125168, + -0.001412366982549429, + -0.0034329304471611977, + 0.020705705508589745, + -0.013650628738105297, + -0.018881117925047874, + 0.006507700774818659, + 0.006190087180584669, + 0.009805476292967796, + 0.008190377615392208, + -0.0058454424142837524, + -0.018624322488904, + 0.005700150970369577, + -0.012184199877083302, + 0.01743496209383011, + -0.03170730173587799, + -0.027125556021928787, + 0.0008134625968523324, + 0.009737898595631123, + -0.0018043158343061805, + 0.004504031501710415, + -0.0040411269292235374, + -0.0007906552054919302, + 0.012974855490028858, + -0.004507410805672407, + -0.004301299806684256, + 0.0026642377488315105, + -0.006524594966322184, + -0.016434816643595695, + 0.01082589477300644, + -0.004504031501710415, + 0.041032977402210236, + -0.0026794427540153265, + -0.0032910178415477276, + -0.025422606617212296, + 0.012116622179746628, + 0.007534876931458712, + 0.006490806583315134, + 0.005892746616154909, + 0.014312886632978916, + 0.0026456541381776333, + -0.01110971998423338, + -0.01620505377650261, + 0.007940340787172318, + 0.0027014054358005524, + -0.0062846955843269825, + -0.006230633705854416, + -0.004051263444125652, + 0.001784042571671307, + -0.005227109417319298, + -0.008555294945836067, + -0.006051553413271904, + 0.0065516261383891106, + 0.002358450321480632, + -0.02865280583500862, + -0.008224165998399258, + 0.010602889582514763, + 0.011920647695660591, + 0.020732738077640533, + -0.006011006888002157, + -0.04268186539411545, + 0.026571422815322876, + -0.003110248362645507, + 0.027071494609117508, + 0.0019124395912513137, + -0.007514603435993195, + 0.013697933405637741, + 0.010981322266161442, + -0.005162911023944616, + 0.009521651081740856, + -0.007413237355649471, + 0.00508857611566782, + 0.015083269216120243, + -0.0034903711639344692, + -0.03154511749744415, + -0.008149830624461174, + 0.026206504553556442, + -0.0040140957571566105, + -0.019665013998746872, + -0.00479123555123806 + ], + "21b34534-9d4e-4e1e-9763-792a8f50b398": [ + -0.027724994346499443, + -0.026935722678899765, + -0.010655180551111698, + 0.04104217514395714, + -0.061075352132320404, + -0.0010009411489591002, + 0.016589075326919556, + 0.01611551269888878, + 0.008710700087249279, + 0.03343645855784416, + -0.008660472929477692, + 0.011975417844951153, + 0.008179734461009502, + -0.01645992137491703, + -0.001615318120457232, + 0.011810388416051865, + -0.015139684081077576, + 0.014472389593720436, + -0.005374229047447443, + 0.008337588980793953, + 0.06296960264444351, + -0.01657472550868988, + -0.0228889063000679, + -0.0044916789047420025, + 0.0024252193979918957, + -0.0148526756092906, + -0.002916721161454916, + 0.0007587780128233135, + -0.057975661009550095, + -0.003702406072989106, + -0.004864789545536041, + 0.02060719020664692, + -0.013238254003226757, + 0.004290773067623377, + 0.006113275419920683, + -0.04523249715566635, + -0.010518851689994335, + -0.013848146423697472, + -0.01671822927892208, + -0.037138864398002625, + -0.049537621438503265, + 0.04164489358663559, + 0.005198436323553324, + -0.0032109045423567295, + -0.02706487476825714, + 0.009277541190385818, + 0.002624331507831812, + -0.007110628765076399, + -0.0109708895906806, + 0.0005197539576329291, + 0.008172559551894665, + 0.029016532003879547, + -0.005478269420564175, + -0.015842853114008904, + 0.037110164761543274, + -0.026993123814463615, + 0.021138155832886696, + 0.07272788137197495, + 0.0008910708711482584, + -0.06727472692728043, + -0.023018060252070427, + 0.02037758380174637, + -0.0013408665545284748, + -0.017694057896733284, + -0.006299830507487059, + -0.0031337710097432137, + -0.010899137705564499, + -0.014178206212818623, + -0.016560373827815056, + -0.0074263378046453, + -0.00825866125524044, + 0.024969715625047684, + -0.028040703386068344, + -0.011731461621820927, + 0.010554727166891098, + 0.004724872764199972, + 0.040267255157232285, + 0.007899901829659939, + 0.02717967890202999, + -0.0014960303669795394, + -0.024510502815246582, + 0.014293009415268898, + 0.031427402049303055, + 0.03601953387260437, + 0.05702853575348854, + 0.01628771610558033, + -0.0015857204562053084, + -0.03194401413202286, + 0.0020377584733068943, + -0.019688764587044716, + 0.01750750094652176, + 0.0441705659031868, + -0.009607600048184395, + 0.014572842977941036, + -0.024768810719251633, + 0.0029705350752919912, + 0.031427402049303055, + -0.00999506190419197, + 0.01759360358119011, + -0.005166147835552692, + 0.011473153717815876, + -0.001219784957356751, + -0.022731050848960876, + -0.013848146423697472, + -0.012657063081860542, + -0.017263544723391533, + -0.01770840771496296, + 0.010188791900873184, + -0.030824683606624603, + 0.01819632202386856, + -0.006877434439957142, + -0.05444546043872833, + 0.0033095635008066893, + 0.01889949105679989, + -0.0224009919911623, + -0.023692529648542404, + -0.015756752341985703, + -0.004097042605280876, + 0.005058520007878542, + -0.028815625235438347, + 0.04164489358663559, + 0.021611718460917473, + -0.0222287867218256, + -0.01654602400958538, + -0.016158562153577805, + 0.025974243879318237, + 0.0018673472804948688, + -0.025228023529052734, + 0.0044019888155162334, + 0.020851148292422295, + -0.008674823679029942, + -0.02723708003759384, + 0.010762808844447136, + -0.03205882012844086, + -0.0020072637125849724, + 0.00604869844391942, + 0.006346469279378653, + 0.05714333802461624, + -0.01822502166032791, + 0.02791154943406582, + -0.025055818259716034, + -0.036966659128665924, + -0.022157035768032074, + 0.004656708333641291, + 0.034211382269859314, + -0.0002540471323300153, + -0.03492889925837517, + 0.048848800361156464, + -0.02578768879175186, + 0.012527909129858017, + -0.05111616477370262, + 0.02416609227657318, + 0.012004119344055653, + -0.0063931080512702465, + 0.009162737987935543, + 0.016158562153577805, + -0.008689174428582191, + 0.03340775892138481, + -0.004947304259985685, + 0.06199377775192261, + -0.007455038838088512, + -0.06251039355993271, + -0.013360233046114445, + 0.009887433610856533, + 0.05189108848571777, + 0.01941610686480999, + 0.03633524104952812, + 0.025113219395279884, + 0.0111861452460289, + 0.006647828035056591, + -0.0004486745747271925, + -0.009923309087753296, + 0.03291984274983406, + 0.012441806495189667, + 0.009248839691281319, + -0.037827685475349426, + 0.04408446326851845, + 0.01773710921406746, + 0.02492666430771351, + 0.0001672719808993861, + -0.017550552263855934, + -0.012535084038972855, + 0.011071342043578625, + -0.01811021938920021, + -0.0011570019414648414, + 0.04419926553964615, + 0.01788061298429966, + 0.023089811205863953, + 0.004010939970612526, + -0.009062284603714943, + -0.002387549728155136, + 0.003070987993851304, + 0.0034315420780330896, + 0.013797920197248459, + -0.013446335680782795, + -0.03291984274983406, + 0.011645358987152576, + 0.01756490394473076, + 0.01186779048293829, + 0.05338352918624878, + -0.012879493646323681, + -0.04460107907652855, + -0.03909052163362503, + 0.04101347550749779, + -0.04253461956977844, + 0.05410104990005493, + -0.043194737285375595, + -0.0037490448448807, + 0.027308832854032516, + -0.03297724574804306, + 0.04236241430044174, + -0.02930353954434395, + -0.0031158330384641886, + 0.009234489873051643, + -0.03501500189304352, + 0.0112148467451334, + -0.007813799194991589, + 0.022960657253861427, + 0.019947072491049767, + -0.01889949105679989, + -0.024323947727680206, + 0.020506737753748894, + -0.016646476462483406, + -0.0005753617733716965, + -0.05057084932923317, + -0.01395577471703291, + -0.031140392646193504, + 0.043768756091594696, + -0.03894701600074768, + 0.012133272364735603, + 0.037339769303798676, + -0.014249958097934723, + 0.01511098351329565, + -0.02865777164697647, + -0.019114747643470764, + 0.006034348160028458, + 0.031312596052885056, + 0.00021738630312029272, + 0.006576076149940491, + -0.020535439252853394, + 0.018956894055008888, + 0.015684999525547028, + -0.0018386464798823, + 0.026146449148654938, + -0.030422871932387352, + 0.01915779896080494, + 0.020851148292422295, + 0.03027936816215515, + -0.008036230690777302, + -0.01782320998609066, + 0.015053581446409225, + 0.04448627308011055, + 0.02086549811065197, + -0.005410104990005493, + -0.012958421371877193, + 0.034842800348997116, + 0.03257543221116066, + -0.03504370525479317, + 0.003702406072989106, + -0.004563430789858103, + 0.0010197761002928019, + -0.010827384889125824, + 0.008079281076788902, + 0.020406285300850868, + 0.04204670339822769, + -0.03880351036787033, + 0.03501500189304352, + -0.009499972686171532, + -0.00899770762771368, + 0.031197793781757355, + -0.019172148779034615, + 0.0053957547061145306, + -0.025371527299284935, + 0.027897199615836143, + 0.002046727342531085, + -0.017134390771389008, + -0.008811152540147305, + 0.0015839266125112772, + 0.014881376177072525, + -0.002694289665669203, + -0.011336824856698513, + 0.020004473626613617, + -0.012377229519188404, + -0.026132099330425262, + 0.0016144212568178773, + 0.010734107345342636, + -0.036909256130456924, + 0.029346590861678123, + -0.0591810941696167, + 0.021511266008019447, + 0.004574193619191647, + -0.0035858089104294777, + 0.01256378460675478, + 0.0221139844506979, + 0.0012978153536096215, + 0.013783570379018784, + -0.0225444957613945, + -0.00206466531381011, + -0.03228842467069626, + 0.019487857818603516, + -0.009435395710170269, + 0.0003423918387852609, + -0.004147268831729889, + -0.02234359085559845, + 0.015699349343776703, + -0.04735635593533516, + 0.015369290485978127, + 0.030738580971956253, + -0.026993123814463615, + 0.026117747649550438, + 0.00892595574259758, + -0.03200141713023186, + -0.060960546135902405, + 0.0036988183856010437, + -0.010698231868445873, + 0.01759360358119011, + -0.012757515534758568, + 0.022788453847169876, + -0.0015848235925659537, + -0.027280131354928017, + 0.00016760831931605935, + -0.0067231678403913975, + -0.06164936721324921, + 0.025486329570412636, + 0.017320945858955383, + -0.05163278058171272, + 0.04959502071142197, + -0.0023660240694880486, + -0.0220852829515934, + -0.03604823350906372, + -0.0029561847914010286, + -0.012886669486761093, + -0.009959185495972633, + -0.004172381944954395, + -0.027954600751399994, + -0.04985332861542702, + -0.03989414498209953, + -0.03837300091981888, + -0.04758596420288086, + -0.0029795041773468256, + -0.01770840771496296, + 0.008947481401264668, + 0.013510912656784058, + -0.028858676552772522, + 0.010762808844447136, + 0.008509794250130653, + 0.00957889948040247, + -0.003227048786357045, + -0.01282209251075983, + 0.026505209505558014, + 0.0009677558555267751, + -0.0014413194730877876, + 0.004358937498182058, + 0.002566929906606674, + 0.03177180886268616, + -0.0030261429492384195, + -0.021984830498695374, + -0.02197047881782055, + 0.011989768594503403, + -0.01689043454825878, + -0.01283644326031208, + -0.0297340527176857, + -0.021496916189789772, + -0.020047524943947792, + -0.023290717974305153, + 0.026935722678899765, + -0.022975008934736252, + -0.03685185685753822, + -0.007928602397441864, + -0.0033723467495292425, + -0.04173099622130394, + -0.004000177141278982, + 0.005349115934222937, + -0.005829854402691126, + -0.0298775564879179, + -0.03877481073141098, + 0.04402706027030945, + 0.009004883468151093, + -0.021425163373351097, + 0.012728814966976643, + -0.0027176090516149998, + 0.028528617694973946, + -0.011674059554934502, + 0.016129862517118454, + 0.024438749998807907, + 0.02112380601465702, + -0.0025507856626063585, + -0.0017938014352694154, + 6.581009074579924e-5, + 0.002131036017090082, + -0.026505209505558014, + 0.005585897713899612, + -0.03524461016058922, + 0.01836852729320526, + -0.02993495762348175, + -0.018999945372343063, + -0.017263544723391533, + -0.03840170055627823, + 0.027466686442494392, + -0.014881376177072525, + -0.01257813535630703, + -0.024237845093011856, + -0.026361705735325813, + 0.015397991053760052, + 0.0022458394523710012, + -0.008079281076788902, + 0.010160091333091259, + -0.021870026364922523, + 0.03581862524151802, + -0.01201129425317049, + -0.007203906308859587, + 0.006206552963703871, + 0.051833685487508774, + 0.018268072977662086, + 0.058147866278886795, + -0.00104488932993263, + -0.015828503295779228, + 0.05760255083441734, + -0.00449885381385684, + -0.015039230696856976, + 0.036966659128665924, + 0.03762677684426308, + -0.00645409757271409, + 0.026878319680690765, + -0.027509737759828568, + 0.01600070856511593, + 0.016904784366488457, + 0.025888141244649887, + -0.023778632283210754, + -0.012979947030544281, + -0.02950444631278515, + 0.052034590393304825, + 0.00355352065525949, + -0.00091932323994115, + -0.007333060260862112, + -0.01631641760468483, + 0.01756490394473076, + 0.005937482696026564, + 0.005015468690544367, + -0.020822446793317795, + -0.020406285300850868, + 0.015541495755314827, + -0.008796801790595055, + -0.024438749998807907, + -0.04241981729865074, + -0.027753695845603943, + -0.02495536580681801, + -0.00818690937012434, + 0.03386697173118591, + -0.005786803551018238, + 0.013912723399698734, + 0.024682708084583282, + -0.07973088324069977, + -0.0010305389296263456, + -0.022099632769823074, + 0.0034315420780330896, + 0.008660472929477692, + -0.011903665959835052, + 0.012922544963657856, + -0.046122223138809204, + -0.05019773915410042, + -0.003322120290249586, + 0.01654602400958538, + 0.009528673253953457, + 0.009198613464832306, + -0.040382057428359985, + 0.020736344158649445, + 0.011602307669818401, + 0.006159914191812277, + 0.020478036254644394, + -0.008351939730346203, + -0.015512794256210327, + -0.023018060252070427, + 0.02248709462583065, + 0.004290773067623377, + -0.018555082380771637, + -0.007376111578196287, + 0.0068594967015087605, + 0.001222475664690137, + -0.018583782017230988, + -0.03547421842813492, + -0.01290819514542818, + -0.023089811205863953, + 0.005704288370907307, + 0.0027821860276162624, + -0.009614775888621807, + -0.028758224099874496, + -0.02135341241955757, + 0.05039864405989647, + -0.019918370991945267, + 0.05355573445558548, + 5.6000237236730754e-5, + 0.007089103106409311, + 0.04709804803133011, + -0.018913842737674713, + -0.00673751812428236, + 0.008316063322126865, + -0.046351827681064606, + -0.0299923587590456, + -0.012341354042291641, + 0.030595077201724052, + -0.02854296751320362, + -0.004875552374869585, + 0.0146804703399539, + 0.010992415249347687, + 0.02515627071261406, + -0.01023184321820736, + 0.012283951975405216, + 0.011501854285597801, + -0.019315654411911964, + -0.03940622881054878, + 0.015555845573544502, + -0.01330283097922802, + 0.009557373821735382, + 0.017636654898524284, + 0.025113219395279884, + 0.000879411119967699, + 0.01677563041448593, + 0.03177180886268616, + -0.000201914765057154, + 0.009299066849052906, + -0.010841735638678074, + -0.003914074506610632, + -0.016675177961587906, + -0.023922136053442955, + 0.0018709348514676094, + -0.026964422315359116, + -0.030652478337287903, + 0.02782544679939747, + -0.03564641997218132, + -0.026261253282427788, + 0.01918650045990944, + -0.02729448303580284, + 0.02402258850634098, + 0.03866000846028328, + -0.01402752660214901, + -0.01331718172878027, + -0.0037992713041603565, + -0.0039427755400538445, + 0.008366289548575878, + -0.01405622810125351, + 0.01924390159547329, + 0.01924390159547329, + 0.010755633004009724, + -0.013776394538581371, + 0.045950017869472504, + -0.009162737987935543, + 0.004814562853425741, + -0.015412341803312302, + 0.02564418502151966, + -0.05059954896569252, + 0.007519615348428488, + -0.009464096277952194, + 0.0008542979485355318, + -0.006457685027271509, + -0.02649085968732834, + 0.0146804703399539, + -0.010999590158462524, + -0.005793978460133076, + -0.02277410216629505, + -0.020090576261281967, + 0.03240322694182396, + -0.013812270946800709, + 0.015225786715745926, + -0.034412287175655365, + -0.0018691411241889, + -0.012865143828094006, + 0.014163855463266373, + -0.003415397834032774, + 0.01272163912653923, + 0.03831559792160988, + 0.010935013182461262, + 0.022845854982733727, + 0.013919899240136147, + 0.019932720810174942, + 0.021726522594690323, + 0.021697821095585823, + 0.01347503624856472, + -0.04460107907652855, + -0.018655534833669662, + 0.010482975281774998, + -0.018210671842098236, + -0.0019086047541350126, + 0.0026494446210563183, + 0.027753695845603943, + 0.027495387941598892, + -0.005026231519877911, + -0.021626070141792297, + 0.003664736170321703, + 0.013324356637895107, + -0.0003544999926816672, + 0.014192556962370872, + -0.008847028948366642, + -0.006683703977614641, + -0.013238254003226757, + 0.009047933854162693, + 0.04419926553964615, + 0.03306334838271141, + 0.005471094511449337, + -0.00346741802059114, + 0.026218201965093613, + 0.01802411675453186, + -0.010791509412229061, + -0.023233314976096153, + -0.031255196779966354, + 0.031513504683971405, + -0.006952774245291948, + 0.01511098351329565, + 0.005905194208025932, + 0.03524461016058922, + -0.002457507885992527, + -0.002760660368949175, + 0.03576122596859932, + -0.013711817562580109, + 0.03860260546207428, + 0.007272070739418268, + -0.010741283185780048, + 0.018999945372343063, + 0.002123860875144601, + 0.015197085216641426, + 0.02202788181602955, + -0.025959894061088562, + 0.0600421205163002, + -0.017493151128292084, + 0.017206143587827682, + 0.018770337104797363, + -0.026763517409563065, + -0.00045136528206057847, + -0.02529977448284626, + -0.026089048013091087, + 0.0057150512002408504, + -0.00707116536796093, + 0.012549434788525105, + -0.003076369408518076, + 0.0220852829515934, + 0.004843263886868954, + -0.015527145005762577, + 0.023161564022302628, + -0.01053320150822401, + 0.014393462799489498, + -0.010425574146211147, + 0.009901783429086208, + -0.004739223513752222, + 0.04104217514395714, + -0.01842592842876911, + 0.05022643879055977, + -0.0298488549888134, + 0.022874554619193077, + 0.031398698687553406, + 0.02410869114100933, + -0.03601953387260437, + 0.007835324853658676, + 0.013123450800776482, + 0.020162327215075493, + 0.014314535073935986, + -0.031054290011525154, + -0.0025615484919399023, + -0.02782544679939747, + 0.017191791906952858, + 0.031169094145298004, + 0.037282370030879974, + -0.01793801411986351, + 0.018784688785672188, + 0.00206466531381011, + 0.028959129005670547, + 0.008552845567464828, + 0.03613433614373207, + -0.014400637708604336, + 0.01508228201419115, + 0.0445149764418602, + 0.016947835683822632, + 0.0048468513414263725, + 0.018454628065228462, + 0.0065366122871637344, + -0.004574193619191647, + 0.005022644065320492, + 0.010640829801559448, + -0.006098924670368433, + 0.010906312614679337, + -0.010540377348661423, + 0.00023476376372855157, + -0.027481038123369217, + -0.03314945101737976, + -0.010841735638678074, + -0.012161973863840103, + -0.0113583505153656, + -0.004836088512092829, + 0.03286244347691536, + -0.030595077201724052, + -0.014644594863057137, + -0.009141212329268456, + 0.0013175471685826778, + 0.001887079095467925, + 0.006963537074625492, + 0.012764690443873405, + 0.004509616643190384, + 0.01508228201419115, + -0.0036683238577097654, + 0.027194028720259666, + -0.01793801411986351, + -0.04810258001089096, + -0.0012619392946362495, + 0.0031319772824645042, + -0.04540470242500305, + 0.0297340527176857, + -0.00016166635032277554, + -0.02550068125128746, + -0.01602941006422043, + -0.004574193619191647, + 0.021855676546692848, + 0.0005560784484259784, + -0.0009300860110670328, + -0.013726168312132359, + 0.028299011290073395, + 0.024481801316142082, + 0.016531674191355705, + -0.010102689266204834, + 0.015297538600862026, + 0.005130271892994642, + 0.018770337104797363, + -0.003349027130752802, + 0.023161564022302628, + 0.003548139240592718, + -0.03507240489125252, + -0.031169094145298004, + 0.036966659128665924, + 0.000441723590483889, + -0.0026978773530572653, + 0.007914251647889614, + 0.001270908280275762, + 0.03811469301581383, + -0.00320911081507802, + -0.0009058697032742202, + 0.007914251647889614, + 0.01828242465853691, + 0.0019050170667469501, + -0.018512031063437462, + 0.008237135596573353, + 0.04721285402774811, + -0.0438261553645134, + 0.004100630059838295, + 0.008473917841911316, + 0.026677414774894714, + -0.008803977631032467, + 0.030824683606624603, + -0.004114980343729258, + 0.026734815910458565, + -0.006479210685938597, + -0.0014736078446730971, + 0.0027768046129494905, + 0.049566321074962616, + -0.025428928434848785, + 0.03314945101737976, + 0.034010473638772964, + -0.020119275897741318, + 0.013855322264134884, + 0.028586018830537796, + 0.002202788135036826, + -0.011092867702245712, + 0.015670649707317352, + 0.00044912303565070033, + 0.005133859813213348, + -0.016215965151786804, + -0.009708053432404995, + 0.009499972686171532, + 0.025744637474417686, + 0.008811152540147305, + 0.012915370054543018, + 0.01790931262075901, + -0.007333060260862112, + 0.027538439258933067, + 0.011580782011151314, + 0.04448627308011055, + -0.0003796132223214954, + -0.003356202505528927, + -0.025457629933953285, + 0.024151742458343506, + -0.012118922546505928, + -0.049566321074962616, + -0.011659708805382252, + -0.021310361102223396, + -0.04781556874513626, + 0.012786216102540493, + -0.02532847598195076, + 0.03667965158820152, + -0.034354884177446365, + 0.01782320998609066, + 0.01799541525542736, + 0.0025848678778856993, + -0.017105691134929657, + 0.008021879941225052, + 0.017076989635825157, + -0.004915015771985054, + 0.024826211854815483, + 0.008961832150816917, + -0.00559307262301445, + 0.021626070141792297, + -0.019660063087940216, + 0.003261131001636386, + 0.0037777458783239126, + 0.01469482108950615, + -0.03647874668240547, + 0.040037646889686584, + 0.03891831636428833, + -0.025113219395279884, + -0.024151742458343506, + 0.01756490394473076, + -0.01178168784826994, + -0.031398698687553406, + 0.005065695382654667, + -0.014981829561293125, + -0.028413813561201096, + -0.00973675400018692, + 0.021453864872455597, + -0.012348528951406479, + -0.01493877824395895, + -0.0025866616051644087, + -0.00682362075895071, + 0.027538439258933067, + -0.004749986343085766, + -0.015283187851309776, + 0.01614421233534813, + 0.04709804803133011, + -0.014443689025938511, + 0.007483739405870438, + -0.02944704331457615, + 0.0068594967015087605, + 0.007376111578196287, + 0.01978921703994274, + -0.0055787223391234875, + -0.010052463039755821, + -0.012054345570504665, + 0.0015785451978445053, + 0.028973480686545372, + -0.007028114050626755, + 0.031427402049303055, + -0.025285424664616585, + 0.020090576261281967, + -0.03200141713023186, + 0.03848780319094658, + -0.034412287175655365, + -0.049250610172748566, + -0.02112380601465702, + -0.025400228798389435, + -0.01397012546658516, + -0.028040703386068344, + 0.005898018833249807, + 0.008904430083930492, + 0.01677563041448593, + 0.05326872691512108, + 0.030767282471060753, + -0.010482975281774998, + -0.0012018469860777259, + 0.011365525424480438, + -0.013022998347878456, + 0.00640387088060379, + -0.03240322694182396, + -0.010224668309092522, + -0.020506737753748894, + 0.020104926079511642, + 0.02643345668911934, + 0.011250722222030163, + -0.0442279689013958, + 0.018268072977662086, + -0.02405129000544548, + -0.016302067786455154, + -0.009557373821735382, + 0.015684999525547028, + 0.0035876028705388308, + 0.024481801316142082, + 0.008036230690777302, + -0.03527330979704857, + 0.001915779896080494, + 0.027495387941598892, + -0.024539202451705933, + -0.02057849057018757, + -0.004114980343729258, + 0.01668952777981758, + -0.04715545102953911, + -0.004201082978397608, + -0.006188614759594202, + -0.0008605762268416584, + 0.020033173263072968, + -0.015340589918196201, + -0.05286691337823868, + 0.016043759882450104, + 0.030595077201724052, + -0.018468979746103287, + 0.006170677021145821, + 0.014630244113504887, + 0.015957657247781754, + -0.00751244043931365, + -0.014572842977941036, + -0.021841326728463173, + -0.008653298020362854, + -0.0005659443559125066, + -0.0301645640283823, + -0.030910786241292953, + 0.003953538369387388, + -0.0113583505153656, + -9.277316712541506e-5, + -0.03825819492340088, + -0.021525617688894272, + 0.019803566858172417, + 0.022386642172932625, + -0.055679596960544586, + 0.020707642659544945, + -0.0006184130324982107, + 0.019315654411911964, + 0.01199694350361824, + 0.009449745528399944, + 0.030968187376856804, + 0.0036737052723765373, + -0.02628995291888714, + 0.03811469301581383, + 0.027366233989596367, + 0.008229960687458515, + -0.005058520007878542, + -0.01833982579410076, + 0.008660472929477692, + 0.0012413106160238385, + -0.00028319639386609197, + 0.024065639823675156, + 0.007605717983096838, + -0.013274130411446095, + -0.01290819514542818, + -0.005230724811553955, + -0.03013586439192295, + -0.01625901646912098, + 0.007871200330555439, + -0.005173323210328817, + 0.0035696648992598057, + 0.027409285306930542, + 0.01137270126491785, + 0.0010700025595724583, + 0.0011686616344377398, + -0.01668952777981758, + -0.01645992137491703, + -0.0011166413314640522, + -0.004706935025751591, + -0.04164489358663559, + -0.008976181969046593, + 0.016919134184718132, + 0.01790931262075901, + -0.006533024832606316, + -0.011013940908014774, + -0.021583018824458122, + 0.043366942554712296, + 0.010030937381088734, + 0.010418398305773735, + -0.010282069444656372, + 0.004175969865173101, + -0.013654416427016258, + 0.01765100657939911, + 0.011415752582252026, + 0.024295246228575706, + -0.0032683061435818672, + 0.004165207035839558, + 0.022817153483629227, + 0.00414368137717247, + 0.0015498443972319365, + -0.023376820608973503, + 0.008244311437010765, + 0.0028611132875084877, + -0.02396518737077713, + 0.020262781530618668, + -0.021898727864027023, + 0.0005919544491916895, + 0.007555491756647825, + -0.013654416427016258, + -0.006278304848819971, + 0.0011982592986896634, + -0.02868647128343582, + 0.022587547078728676, + 0.003189378883689642, + -0.023405520245432854, + -0.020793745294213295, + -0.0017220493173226714, + -0.014551317319273949, + 0.009600425139069557, + 0.0449741892516613, + -0.0020323770586401224, + -0.011738636530935764, + -0.014637419022619724, + -0.022644948214292526, + 0.023175913840532303, + -0.0035427578259259462, + 0.008136683143675327, + -0.018885141238570213, + 0.020592840388417244, + 0.028385113924741745, + -0.04500288888812065, + -0.0026350943371653557, + 0.007185968570411205, + 0.008165383711457253, + 0.008502618409693241, + -0.02640475705265999, + -0.01476657297462225, + -0.01411362923681736, + -0.02976275235414505, + -0.006834383588284254, + 0.0037167565897107124, + -0.014099279418587685, + 0.033895671367645264, + -0.002260189736261964, + 0.01976051554083824, + -0.02382168360054493, + -0.023247666656970978, + 0.012535084038972855, + 0.019975772127509117, + -0.031800512224435806, + -0.04517509415745735, + -0.001163280219770968, + 0.010095514357089996, + 0.008438041433691978, + 0.025744637474417686, + -0.01252073422074318, + -0.012312652543187141, + -0.005589485168457031, + 0.03205882012844086, + -0.018885141238570213, + -0.002622537547722459, + 0.013381758704781532, + 0.0022404580377042294, + -0.005384991876780987, + -0.006468447856605053, + -0.0052558379247784615, + 0.000526480725966394, + 0.025170620530843735, + -0.01819632202386856, + -0.009004883468151093, + -0.008581546135246754, + 0.011831914074718952, + -0.014651769772171974, + 0.010920663364231586, + -0.02735188417136669, + 0.0004089867288712412, + -0.08306018263101578, + -0.02550068125128746, + -0.024740109220147133, + 0.027251431718468666, + 0.010468625463545322, + 0.005600247997790575, + 0.011674059554934502, + 0.031255196779966354, + 0.0010996002238243818, + 0.018842089921236038, + 0.012312652543187141, + -0.015742400661110878, + 0.03294854238629341, + 0.03633524104952812, + -0.01493877824395895, + 0.009873082861304283, + -0.009708053432404995, + -0.0018996356520801783, + 0.028069404885172844, + -0.023247666656970978, + -0.005611010827124119, + 0.021583018824458122, + 0.01053320150822401, + -0.01805281825363636, + -0.016833031550049782, + 0.028155507519841194, + -0.0067159924656152725, + 0.001488855225034058, + -0.009485621936619282, + -0.046294428408145905, + 0.03771287947893143, + 0.016244664788246155, + 0.0013130626175552607, + 0.001591998734511435, + 0.0034189855214208364, + 0.028815625235438347, + 0.0150966327637434, + -0.002807299140840769, + 0.01765100657939911, + 0.00515179755166173, + 0.018181970342993736, + 0.03515850752592087, + 0.001440422493033111, + -0.01469482108950615, + -0.01361854001879692, + -0.03556031733751297, + -0.012219374999403954, + -0.024180442094802856, + -0.014321709983050823, + 0.010963713750243187, + 0.023721229285001755, + 0.011982593685388565, + -6.558586756000295e-5, + -0.02083679661154747, + 0.010239018127322197, + -0.0005529393092729151, + 0.002315797610208392, + -0.003831559792160988, + 0.02347727306187153, + -0.003105070209130645, + 0.04173099622130394, + 0.018512031063437462, + -0.010927838273346424, + 0.00041436811443418264, + -0.022788453847169876, + 0.02043498493731022, + 0.0037490448448807, + 0.011874965392053127, + 0.020076224580407143, + -0.008581546135246754, + -0.0070855156518518925, + -0.023979537189006805, + 0.012463332153856754, + 0.028471216559410095, + -0.016531674191355705, + 0.00908381026238203, + 0.015986358746886253, + 0.011961068026721478, + -0.011796037666499615, + -0.009636301547288895, + -0.018870791420340538, + -0.004064754117280245, + 0.01753620244562626, + -0.020879847928881645, + -0.02260189689695835, + -0.023778632283210754, + 0.001478989259339869, + -0.037282370030879974, + -0.011487504467368126, + 0.012068696320056915, + 0.014321709983050823, + -0.011143093928694725, + 0.02982015535235405, + 0.011760162189602852, + -0.013941424898803234, + 0.013080399483442307, + -0.013431984931230545, + -0.012068696320056915, + -0.015699349343776703, + -0.010497326031327248, + 0.0035068816505372524, + -0.02265929989516735, + 0.01790931262075901, + -0.019286952912807465, + 0.003374140476807952, + -0.0023552612401545048, + 0.014099279418587685, + 0.004818150773644447, + -0.021396463736891747, + -0.018512031063437462, + -0.004409163724631071, + 0.026447808369994164, + -0.014013176783919334, + 0.014651769772171974, + -0.004036053083837032, + 0.0110426414757967, + -0.02538587711751461, + -0.021884378045797348, + -0.015742400661110878, + -0.015340589918196201, + -0.0041221557185053825, + 0.017392698675394058, + 0.0024090753868222237, + -0.009198613464832306, + -0.00016547818086110055, + 0.020090576261281967, + -0.0027211967390030622, + -0.011580782011151314, + 0.003433335805311799, + 0.018239373341202736, + -0.0030386995058506727, + -0.011638183146715164, + -0.020478036254644394, + -0.00023027925635688007, + -0.015584547072649002, + 0.014106454327702522, + 0.011537730693817139, + -0.009449745528399944, + 0.0147809237241745, + -0.04391225799918175, + -0.01199694350361824, + 0.003350821090862155, + 0.019114747643470764, + -0.0014942365232855082, + -0.02521367184817791, + -0.011552081443369389, + -0.0018350587924942374, + 0.0011767337564378977, + -0.006830795668065548, + -0.017392698675394058, + -0.027882849797606468, + 0.013941424898803234, + 0.009521497413516045, + 0.005743752233684063, + -0.018555082380771637, + -0.024567903950810432, + -0.03248932957649231, + 0.009449745528399944, + -0.005589485168457031, + -0.027897199615836143, + -0.01648862287402153, + 0.00818690937012434, + -0.0032808627001941204, + 0.005198436323553324, + -0.0038172095082700253, + -0.0052988892421126366, + -0.015225786715745926, + -0.00891160499304533, + -0.012312652543187141, + -0.0150966327637434, + -0.003766983048990369, + 0.0009686527773737907, + -0.005227137356996536, + -0.014823975041508675, + 0.0018655534368008375, + -0.018483329564332962, + -0.02703617513179779, + -0.0293896421790123, + 0.026160798966884613, + 0.01518273539841175, + -0.014106454327702522, + 0.0016009677201509476, + -0.015326239168643951, + 0.01620161347091198, + 0.015283187851309776, + 0.008330414071679115, + -0.0017426781123504043, + 0.0034010475501418114, + 0.0011946717277169228, + -0.005761689972132444, + 0.028959129005670547, + 0.01955961063504219, + -0.01918650045990944, + 0.0006080986931920052, + 0.012779041193425655, + -0.010877612046897411, + 0.030336769297719002, + 0.030652478337287903, + -0.007010175846517086, + -0.004861201625317335, + -0.01921520009636879, + -0.00821561086922884, + 0.004183144774287939, + 0.006974299903959036, + -0.016187263652682304, + -0.009528673253953457, + -0.0445723757147789, + 0.013467861339449883, + 0.024180442094802856, + -0.009435395710170269, + -0.007110628765076399, + 0.005270188674330711, + 0.014006000943481922, + -0.016703879460692406, + 0.009858732111752033, + -0.0019731814973056316, + 0.005431630648672581, + -0.03561772033572197, + 0.002552579389885068, + -0.010762808844447136, + 0.0299923587590456, + -0.00314812152646482, + 0.014120805077254772, + -0.010023762471973896, + 0.001332794432528317, + 0.00010146189015358686, + 0.008179734461009502, + -0.03779898211359978, + -0.046610135585069656, + 0.004075516946613789, + -0.011609482578933239, + 0.018468979746103287, + -0.015240136533975601, + -0.005844205152243376, + -0.00894030649214983, + 0.004240546375513077, + 0.04824608191847801, + 0.0002187316567869857, + 0.01756490394473076, + -0.00844521727412939, + -0.025113219395279884, + -0.016876082867383957, + -0.0025436102878302336, + 0.004789449740201235, + 0.05412974953651428, + 0.037081461399793625, + -0.015684999525547028, + -0.009672177024185658, + -0.007971653714776039, + 0.02573028765618801, + 0.013941424898803234, + -0.012190674431622028, + -0.026060346513986588, + 0.001065518008545041, + 0.0011713523417711258, + -0.0004870170960202813, + 0.013948599807918072, + -0.014422163367271423, + 0.008789626881480217, + -0.019258251413702965, + 0.013805096037685871, + -0.011236372403800488, + 0.030508974567055702, + -0.02419479377567768, + 0.026017295196652412, + -0.008143858052790165, + 0.010518851689994335, + 0.02399388700723648, + 0.011674059554934502, + 0.007706170901656151, + 0.01654602400958538, + 0.005241487640887499, + -0.017076989635825157, + -0.004104217514395714, + 0.021984830498695374, + 0.002095160074532032, + 0.017392698675394058, + -0.0036396230570971966, + -0.02228618785738945, + 0.034039177000522614, + -0.014823975041508675, + 0.006328531540930271, + -0.02083679661154747, + 0.01967441290616989, + 0.0029561847914010286, + -0.0015731637831777334, + 0.017105691134929657, + 0.0019014294957742095, + 0.03934882581233978, + -0.02720838040113449, + 0.015369290485978127, + -0.006396695971488953, + 0.023061111569404602, + 0.007533966097980738, + 0.001217094250023365, + -0.030422871932387352, + 0.004416339099407196, + -0.007003000471740961, + 0.02086549811065197, + -0.004631595220416784, + 0.013525262475013733, + -0.0014233813853934407, + -0.021884378045797348, + -0.003766983048990369, + -0.0014108248287811875, + -0.00015146410441957414, + 0.005097983404994011, + 0.02057849057018757, + 0.010195966809988022, + 0.007598542608320713, + 0.007914251647889614, + 0.017249194905161858, + -0.013819445855915546, + -0.005241487640887499, + 0.0002836448547895998, + 0.010992415249347687, + 0.02407998964190483, + 0.013015823438763618, + -0.019631363451480865, + -0.04204670339822769, + -0.022845854982733727, + -0.014242783188819885, + 0.02837076224386692, + -0.00892595574259758, + -0.03335035592317581, + -0.010863261297345161, + 0.009557373821735382, + -0.009679351933300495, + 0.014206906780600548, + -0.021296009421348572, + -0.01750750094652176, + 0.04442887380719185, + -0.013166502118110657, + -0.016933485865592957, + 0.0007655047229491174, + -0.008194085210561752, + -0.007971653714776039, + -0.012865143828094006, + 0.008387815207242966, + -0.0011883934494107962, + 0.022415341809391975, + 0.016761280596256256, + 0.012348528951406479, + 0.003214492229744792, + 0.02112380601465702, + 0.002046727342531085, + 0.016330767422914505, + 0.04264942184090614, + 0.02837076224386692, + 0.0053132399916648865, + 0.0028844326734542847, + -0.006249604281038046, + -0.00036907463800162077, + -0.004965242464095354, + 0.022415341809391975, + 0.037253666669130325, + 0.00014641904272139072, + 0.01628771610558033, + -0.017392698675394058, + -0.029116984456777573, + -0.023922136053442955, + -0.01750750094652176, + -0.004836088512092829, + 0.004086279775947332, + 0.008990532718598843, + 0.002685320796445012, + 0.01643122173845768, + -0.019086046144366264, + -0.0003009101783391088, + -0.009464096277952194, + 0.015627598389983177, + 0.0038602605927735567, + -0.011229196563363075, + -0.015742400661110878, + -0.0042656599543988705, + 0.012771866284310818, + -0.007483739405870438, + -7.819852908141911e-5, + 0.020793745294213295, + -0.011631008237600327, + 0.009356467984616756, + 0.005112334154546261, + -0.02527107484638691, + -0.03266153484582901, + -0.015857204794883728, + 0.0029848855920135975, + -0.004506029188632965, + -0.0018171208212152123, + -0.006647828035056591, + 0.006672941148281097, + 0.008789626881480217, + -0.012312652543187141, + 0.00010959005157928914, + 0.014601543545722961, + -0.007533966097980738, + 0.01331718172878027, + -0.030480273067951202, + 0.0016404313500970602, + -0.03174310922622681, + -0.0052558379247784615, + -0.008495443500578403, + 0.0009856938850134611, + -0.009421044960618019, + 0.01264988724142313, + -0.0005506970337592065, + 0.020937250927090645, + 0.017421400174498558, + 0.026318654417991638, + -0.004366112407296896, + -0.02871517278254032, + -0.005324002355337143, + 0.021224258467555046, + -0.004204670432955027, + -0.028040703386068344, + -0.018971243873238564, + -0.011788862757384777, + 0.010762808844447136, + 0.015225786715745926, + 0.010490150190889835, + -0.0035696648992598057, + -0.021453864872455597, + -0.004915015771985054, + -0.0003027039929293096, + -0.01323107909411192, + -0.010353821329772472, + 0.008954656310379505, + 0.009499972686171532, + -0.0012359292013570666, + -0.007921426557004452, + -0.003230636240914464, + 0.02882997691631317, + -0.006924073211848736, + 0.003417191794142127, + -0.0017839354695752263, + 0.029188737273216248, + -0.0076272436417639256, + -0.008861378766596317, + -0.02054978907108307, + 0.016388170421123505, + -0.01628771610558033, + -0.021798275411128998, + -0.02717967890202999, + -0.002509528072550893, + -0.010597778484225273, + 0.017105691134929657, + 0.002220726106315851, + 0.025543732568621635, + 0.010640829801559448, + 0.0025866616051644087, + 0.02524237334728241, + 0.0009143902570940554, + -0.023147214204072952, + 0.03573252260684967, + 0.007541141007095575, + 0.004039640538394451, + -0.0067231678403913975, + 0.005819091573357582, + 0.012542259879410267, + -0.03320685029029846, + 0.030795982107520103, + -0.0010260543785989285, + 0.003756220219656825, + -0.0037705705035477877, + 0.008237135596573353, + -0.027724994346499443, + -0.0002589800860732794, + 0.04138658568263054, + -0.024036938324570656, + -0.005743752233684063, + -0.010174441151320934, + 0.009629125706851482, + -0.03610563650727272, + -0.02979145385324955, + 0.02370687946677208, + 0.0072218445129692554, + -0.0227454025298357, + -0.015785451978445053, + 0.007232607342302799, + 0.0018404402071610093, + -0.01120049599558115, + 0.016990887001156807, + -0.012865143828094006, + 0.01602941006422043, + 0.0149244274944067, + 0.030566375702619553, + -0.01680433191359043, + 0.022329239174723625, + -0.021740872412919998, + -0.021382112056016922, + 0.020090576261281967, + -0.011688410304486752, + 0.002886226400732994, + -0.008093631826341152, + 0.004437864758074284, + 0.0055392589420080185, + -0.02930353954434395, + -0.02416609227657318, + -0.023089811205863953, + 0.027882849797606468, + -0.0008363599190488458, + 0.016531674191355705, + -0.018540730699896812, + -0.03645004332065582, + -0.005682762712240219, + 0.020592840388417244, + -0.011659708805382252, + -0.0018781101098284125, + 0.01790931262075901, + 0.013130626641213894, + 0.001178527483716607, + -0.014565667137503624, + -0.006802095100283623, + -0.01756490394473076, + 0.002428807085379958, + -0.006382345221936703, + -0.008000354282557964, + 0.011035466566681862, + 0.00011783032823586836, + -0.012448981404304504, + -0.0007408399833366275, + -0.012513558380305767, + -0.010181616991758347, + -0.01802411675453186, + -0.01046144962310791, + -0.010504500940442085, + 0.01689043454825878, + 0.002462889300659299, + 0.0015597103629261255, + -0.002136417431756854, + -0.015713701024651527, + -0.007336647715419531, + 0.003140946151688695, + -0.012197849340736866, + 0.02882997691631317, + 0.009923309087753296, + -0.005402929615229368, + -0.0027481038123369217, + -0.010891961865127087, + -0.013166502118110657, + -0.012047170661389828, + 0.002385755768045783, + -0.0056791752576828, + 0.005768865346908569, + 0.0006466654012911022, + -0.018956894055008888, + 0.07490914314985275, + 0.002005469985306263, + 0.009241664782166481, + -0.006970712449401617, + 0.012154798023402691, + -0.017091339454054832, + -0.007411987520754337, + 0.020420635119080544, + 0.02729448303580284, + -0.0012879493879154325, + 0.006816445384174585, + -0.011229196563363075, + 0.007505265064537525, + 0.0046674711629748344, + -0.01944480650126934, + 0.00843086652457714, + 0.02277410216629505, + 0.028586018830537796, + 0.00247006444260478, + 0.016531674191355705, + -0.004645945504307747, + -0.004915015771985054, + -0.010353821329772472, + 0.02231488935649395, + -0.016589075326919556, + 0.030394170433282852, + 0.014551317319273949, + 0.013130626641213894, + 0.028944779187440872, + 0.030738580971956253, + 0.0076344190165400505, + -0.01921520009636879, + -0.015570196323096752, + 0.01063365489244461, + 0.005212787073105574, + 0.012714464217424393, + 0.006515086628496647, + 0.00980850588530302, + -0.005363466218113899, + 0.017335297539830208, + 0.007806623820215464, + -0.0037239317316561937, + 0.007820974104106426, + 0.018268072977662086, + -0.00314812152646482, + -0.010597778484225273, + 0.001633256208151579, + -0.005370641592890024, + -0.0018054611282423139, + -0.0008596793049946427, + -0.0064827981404960155, + -0.009040758945047855, + 0.003137358697131276, + 0.004936541430652142, + 0.00458495644852519, + -0.0029902670066803694, + 0.0019749754574149847, + -0.011810388416051865, + -0.0024180442560464144, + 0.011652533896267414, + -0.026677414774894714, + -0.0032647184561938047, + -0.02344857156276703, + -0.019401755183935165, + -0.017263544723391533, + -0.013188027776777744, + -0.007713346276432276, + -0.021382112056016922, + 0.007541141007095575, + -0.010597778484225273, + -0.015512794256210327, + 0.024036938324570656, + -0.0048934901133179665, + -0.02376428060233593, + -0.0023355295415967703, + 0.027595840394496918, + -0.008237135596573353, + 0.00668729143217206, + 0.004925778601318598, + 0.016947835683822632, + 0.0020449336152523756, + 0.013238254003226757, + -0.003027936676517129, + -0.006766218692064285, + 0.0031804097816348076, + 0.00804340559989214, + 0.02484056167304516, + -0.02413739264011383, + 0.015154033899307251, + -0.016215965151786804, + -0.026246901601552963, + -0.010138565674424171, + -0.0028467627707868814, + -0.0059410701505839825, + -0.00026705217896960676, + -0.00041862839134410024, + -0.007322297431528568, + 0.013812270946800709, + 0.011078517884016037, + -0.007799448445439339, + 0.009241664782166481, + 0.02231488935649395, + -0.02034888230264187, + 0.006540199741721153, + 0.005428043194115162, + -0.004323061555624008, + 0.011121568270027637, + 0.008237135596573353, + -0.03269023820757866, + 0.0050728702917695045, + 0.004692584276199341, + -0.01605810970067978, + 0.010117040015757084, + 0.004229783546179533, + -0.026103397831320763, + 0.0147091718390584, + 0.011874965392053127, + -0.010339471511542797, + -0.0016036584274843335, + -0.013525262475013733, + -0.0026045995764434338, + -0.0021920253057032824, + 0.009327767416834831, + 0.0009471271187067032, + -3.621236464823596e-5, + -0.00633211899548769, + -0.01822502166032791, + -0.00710704131051898, + -0.012441806495189667, + 0.015254487283527851, + 0.007469389121979475, + 0.012126097455620766, + 0.010927838273346424, + 0.004448627587407827, + 0.00483250105753541, + -0.0025256723165512085, + -0.0008933130884543061, + 0.004552667960524559, + 0.020965950563549995, + -0.02515627071261406, + 0.022185735404491425, + 0.009385168552398682, + -0.004732048138976097, + 0.020564138889312744, + 0.023893434554338455, + 0.020191028714179993, + 0.005625361111015081, + -0.011559256352484226, + 0.01486702635884285, + 0.0024252193979918957, + 0.05002553388476372, + -0.0299923587590456, + 0.01493877824395895, + -0.0055787223391234875, + -0.008229960687458515, + 0.007641593925654888, + -0.02413739264011383, + 0.01257813535630703, + -0.007028114050626755, + -0.0063034179620444775, + -0.00916991289705038, + -0.009377993643283844, + -0.005420867819339037, + -0.012499208562076092, + -0.026074696332216263, + 0.002082603517919779, + 0.02581639029085636, + 0.01776580885052681, + 0.021525617688894272, + -0.009349293075501919, + -0.021984830498695374, + 0.010856086388230324, + 0.005618186201900244, + -0.03940622881054878, + 0.005611010827124119, + -0.004570606164634228, + -0.007297184318304062, + -0.006622714921832085, + -0.024754459038376808, + 0.0032700998708605766, + 0.002821649657562375, + -0.002034170785918832, + 0.00693483604118228, + -0.010296420194208622, + 0.013109100982546806, + -0.01970311440527439, + 0.007268483284860849, + 0.00047984186676330864, + -0.0009722403483465314, + -0.002744516124948859, + -0.020061874762177467, + 0.007964477874338627, + -0.004778686910867691, + -0.006963537074625492, + -0.0223722904920578, + -0.006052285898476839, + 0.015340589918196201, + 0.03174310922622681, + 0.0006273820181377232, + -0.0013955774484202266, + -0.004007352516055107, + -0.002172293607145548, + 0.010274894535541534, + 0.007533966097980738, + -0.01430018525570631, + -0.007139329798519611, + 0.001761512947268784, + -0.003845910308882594, + -0.014092103578150272, + 0.010518851689994335, + -0.040726467967033386, + -0.031341299414634705, + 0.006220903247594833, + 0.00909816101193428, + -0.02098030038177967, + 0.022759752348065376, + -0.0005246869404800236, + 0.015297538600862026, + 0.014307360164821148, + 0.0021274485625326633, + 0.015656298026442528, + 0.00015011875075288117, + 0.018655534833669662, + 0.003166059497743845, + -0.028973480686545372, + 0.004333824384957552, + 0.01631641760468483, + 0.013116275891661644, + 0.029375292360782623, + 0.00891160499304533, + 0.02834206260740757, + -0.007526790723204613, + -0.012291126884520054, + -0.005951832979917526, + -0.009306241758167744, + 0.02436699904501438, + 0.019057346507906914, + -0.0075770169496536255, + 0.013259779661893845, + 0.005356290843337774, + -0.016101161018013954, + -1.3965024663775694e-5, + -0.01623031497001648, + 0.0009076634887605906, + 0.005801153834909201, + -0.011652533896267414, + 0.003533788723871112, + 0.006744693499058485, + 0.0008081075502559543, + -2.857469553418923e-5, + -0.005087220575660467, + -0.018468979746103287, + -0.013826621696352959, + 0.005460331682115793, + 0.017952363938093185, + -0.005363466218113899, + -0.014737872406840324, + 0.011961068026721478, + 0.001196465571410954, + -0.01674693077802658, + 0.01686173304915428, + 0.012334178201854229, + -0.026304304599761963, + 0.0037920961622148752, + -0.009270365349948406, + 0.026060346513986588, + -0.01386967208236456, + -0.006841558497399092, + 0.016330767422914505, + -0.004602894186973572, + 0.003397459862753749, + 0.004810975398868322, + -0.001078074681572616, + 0.020678943023085594, + -0.003476387122645974, + 0.010870436206459999, + 0.015283187851309776, + -0.02095160074532032, + -8.45889444462955e-5, + 0.005837029777467251, + -0.001481679966673255, + 0.006913310848176479, + -0.003874611109495163, + -0.020592840388417244, + 0.012793391942977905, + -0.0295331459492445, + -0.004283597692847252, + 0.01169558521360159, + -0.011616657488048077, + 0.015225786715745926, + -0.002665588865056634, + -0.027768045663833618, + 0.016818681731820107, + -0.005951832979917526, + -0.006848733872175217, + -0.007993179373443127, + -0.005564372055232525, + 0.011458802968263626, + 0.014393462799489498, + 0.00458495644852519, + -0.004857614170759916, + -0.00028566288528963923, + -0.013424810022115707, + -0.00820126011967659, + 0.005776040721684694, + 0.0009803124703466892, + 0.017249194905161858, + 0.007135741878300905, + -0.0020359645131975412, + 0.024826211854815483, + 0.008509794250130653, + -0.0011193320387974381, + 0.003227048786357045, + -0.02550068125128746, + -0.00673751812428236, + -0.011831914074718952, + 0.0069886501878499985, + 0.011243547312915325, + -0.011946717277169228, + 0.0070388768799602985, + -0.008825503289699554, + 0.006547375116497278, + 0.0024431576021015644, + -0.0072648958303034306, + 0.013790745288133621, + 0.03297724574804306, + 0.019430456683039665, + 0.010296420194208622, + 0.013862497173249722, + -0.018038466572761536, + 0.025400228798389435, + 0.00990895926952362, + -0.007060402538627386, + -0.007318709511309862, + 0.0043876380659639835, + 0.011774512007832527, + -0.0016834826674312353, + 0.00402170279994607, + -0.007121391594409943, + -0.014881376177072525, + -0.02075069397687912, + -0.01120049599558115, + -0.02123860828578472, + -0.015369290485978127, + 0.0006605673697777092, + 0.030882084742188454, + 0.005162560380995274, + -0.014723521657288074, + 0.014522615820169449, + 0.022013530135154724, + 0.0016933485167101026, + 0.005324002355337143, + 0.013482211157679558, + -0.013711817562580109, + -0.007978828623890877, + 0.004516792017966509, + -0.00410780543461442, + 0.02669176459312439, + -0.009033584035933018, + 0.01631641760468483, + -0.015742400661110878, + 0.001689760945737362, + -0.005112334154546261, + 0.0045813689939677715, + -0.007971653714776039, + 0.020320182666182518, + -0.0028467627707868814, + 0.008394991047680378, + 0.00040719291428104043, + 0.006601189263164997, + -0.007110628765076399, + -0.02993495762348175, + -0.01671822927892208, + -0.01770840771496296, + -0.01674693077802658, + 0.008882904425263405, + 0.0020305830985307693, + 0.02336246892809868, + -0.006744693499058485, + 0.017407048493623734, + 0.034383583813905716, + 0.004760748706758022, + -0.008595895953476429, + -0.00261895009316504, + 0.021339060738682747, + 0.024094341322779655, + 0.0008309785043820739, + 0.01973181590437889, + 0.015225786715745926, + -0.007899901829659939, + -0.023118512704968452, + 0.0031768223270773888, + 0.012843618169426918, + 0.0024323947727680206, + 0.011882140301167965, + -0.0004168346058577299, + -0.023190265521407127, + 0.016416870057582855, + 0.010274894535541534, + -0.00825866125524044, + -0.017923664301633835, + 0.0015955863054841757, + 0.0076272436417639256, + -0.010073988698422909, + -0.0007637109374627471, + -0.028356412425637245, + -0.011408576741814613, + 0.008222785778343678, + 0.01736399717628956, + -0.024725759401917458, + 0.0030440809205174446, + 0.004430689383298159, + -0.01686173304915428, + -0.007605717983096838, + 0.013848146423697472, + -0.0004042779910378158, + 0.010748458094894886, + -0.01021749246865511, + -0.002712227636948228, + 0.01414233073592186, + 0.01660342514514923, + 0.008000354282557964, + -0.005026231519877911, + -0.009256015531718731, + 0.016761280596256256, + -0.02251579612493515, + 0.021927427500486374, + -0.009528673253953457, + -0.009055109694600105, + 0.01493877824395895, + -0.0016117305494844913, + -0.005632536485791206, + 0.005743752233684063, + 0.016904784366488457, + -0.02735188417136669, + -0.017134390771389008, + 0.026189500465989113, + -0.00794295221567154, + 0.0004457596514839679, + 0.026203850284218788, + -0.026089048013091087, + -0.0147091718390584, + -0.011745811440050602, + -0.00013318975106813014, + 0.012936895713210106, + -0.0028826389461755753, + -0.000788375735282898, + 0.0025920430198311806, + -0.008280186913907528, + -0.018325475975871086, + -0.011717110872268677, + 0.0019247488817200065, + -0.009478447027504444, + 0.00027534851687960327, + -0.015283187851309776, + -0.0015229374403133988, + 0.017894962802529335, + 0.010059637948870659, + 0.037483274936676025, + -0.03512980788946152, + 0.007132154423743486, + -0.009313416667282581, + 0.0009946628706529737, + 0.009657827205955982, + -0.0037203440442681313, + 0.003957125823944807, + 0.00837346538901329, + 0.010841735638678074, + 0.0015005149180069566, + 0.017148740589618683, + -0.008653298020362854, + 0.00810080673545599, + 0.020305832847952843, + -0.00965065136551857, + -0.013345882296562195, + 0.02063589170575142, + -0.014587192796170712, + 0.003928425256162882, + 0.018669884651899338, + -0.014572842977941036, + -0.003505087923258543, + 0.015527145005762577, + -0.019229551777243614, + 0.011013940908014774, + 0.02862907014787197, + -0.01021749246865511, + -0.0111861452460289, + 0.022501444444060326, + -0.004315886180847883, + -0.0036252725403755903, + 0.0046674711629748344, + 0.0008197672432288527, + 0.021640419960021973, + -0.020191028714179993, + 0.016129862517118454, + -0.005618186201900244, + 0.0024897963739931583, + 0.0298488549888134, + 0.007971653714776039, + -0.011702760122716427, + 0.010540377348661423, + 0.0010753839742392302, + -0.0015848235925659537, + 0.00844521727412939, + 0.02433829754590988, + 0.01680433191359043, + -0.013030173256993294, + 0.021339060738682747, + 0.00837346538901329, + 0.0040252902545034885, + -0.005263013299554586, + 0.0003190724237356335, + -0.006507911719381809, + 0.010145740583539009, + 0.011609482578933239, + 0.007871200330555439, + 0.012305477634072304, + 0.010705406777560711, + 0.007505265064537525, + 0.010368172079324722, + -0.019832268357276917, + -0.005718638654798269, + -0.007246957626193762, + 0.006328531540930271, + 0.023319417610764503, + -0.011064167134463787, + -0.007993179373443127, + -0.0015417722752317786, + 0.019688764587044716, + -0.0008632669341750443, + -0.015297538600862026, + 0.00670164218172431, + -0.010181616991758347, + -0.0036808804143220186, + 0.01588590443134308, + 0.017521852627396584, + 0.01348938699811697, + 0.01430018525570631, + 0.040582962334156036, + -0.020678943023085594, + 0.008481092751026154, + 0.016589075326919556, + 0.01990402117371559, + -0.012743164785206318, + -0.0006843352457508445, + -0.027839798480272293, + 0.0026512385811656713, + 0.004495266359299421, + -0.013288481160998344, + 0.012843618169426918, + -0.027624541893601418, + -0.006863084156066179, + 0.030422871932387352, + -0.003533788723871112, + 0.004269247408956289, + -0.009952010586857796, + -0.003438717219978571, + -0.0024503327440470457, + -0.010576252825558186, + 0.02538587711751461, + -0.018239373341202736, + -0.011566431261599064, + -0.007706170901656151, + -0.020191028714179993, + -0.021611718460917473, + -0.00641822163015604, + 0.006873846985399723, + 0.012032819911837578, + 0.010497326031327248, + 0.01404187735170126, + -0.005148210097104311, + -0.0065366122871637344, + 0.002156149363145232, + 0.0053455280140042305, + 0.008746575564146042, + 0.006163501646369696, + -0.02950444631278515, + -0.005718638654798269, + 0.026677414774894714, + -0.008481092751026154, + -0.002260189736261964, + -0.014823975041508675, + -0.017163092270493507, + -0.0032055231276899576, + -0.0054818568751215935, + 0.020449336618185043, + 0.01660342514514923, + -0.0007345617050305009, + 0.015139684081077576, + -0.020765045657753944, + 0.019344354048371315, + -0.0034189855214208364, + -0.021396463736891747, + -0.008229960687458515, + 0.021339060738682747, + -0.002796536311507225, + -0.004254897125065327, + 0.0007466698298230767, + -0.02854296751320362, + -0.014336060732603073, + -0.01323107909411192, + 0.007562666665762663, + -0.0004049506678711623, + 0.004434277303516865, + 0.014077753759920597, + -0.0017480595270171762, + 0.0018834915244951844, + -0.016445571556687355, + -0.005295301787555218, + -0.023749930784106255, + -0.00837346538901329, + 0.0027337532956153154, + 0.0064002834260463715, + -0.0018386464798823, + -0.00034956703893840313, + -0.007892725989222527, + 0.03369476646184921, + 0.0015902048908174038, + 0.01617291383445263, + 0.012068696320056915, + -0.00805775634944439, + 0.0013928867410868406, + 0.01021749246865511, + 0.0010036318562924862, + -0.004997530952095985, + -0.0020879849325865507, + 0.019487857818603516, + 0.013137801550328732, + 0.004437864758074284, + -0.018827740103006363, + 0.005004705861210823, + 0.030709879472851753, + -0.008574370294809341, + -0.03191531449556351, + 0.024941014125943184, + 0.005011881235986948, + -0.020119275897741318, + -0.014981829561293125, + -0.0024180442560464144, + -0.022946307435631752, + 0.004818150773644447, + -0.01501053012907505, + -0.0062639545649290085, + 0.013137801550328732, + 0.007526790723204613, + -0.014257133938372135, + -0.009772630408406258, + 0.004803800024092197, + -0.0022171386517584324, + -0.00417955731973052, + -0.017191791906952858, + 0.013654416427016258, + -0.01666082814335823, + 0.02364947833120823, + -0.009456921368837357, + -0.017751459032297134, + 0.017249194905161858, + -0.02796895243227482, + 0.03963583707809448, + 0.002624331507831812, + -0.01668952777981758, + -0.022644948214292526, + -0.006425396539270878, + 0.004871964454650879, + 0.0016987299313768744, + -0.016789982095360756, + 0.01252073422074318, + 0.006055873353034258, + 0.009657827205955982, + -0.012542259879410267, + -0.0045813689939677715, + 0.005054932553321123, + -0.02535717748105526, + 0.00915556214749813, + 0.007153680082410574, + -0.022673649713397026, + 0.0007659532129764557, + -0.016388170421123505, + 0.008703524246811867, + -0.018799038603901863, + -0.002581280190497637, + 7.22565600881353e-5, + 0.0033956661354750395, + -0.009973536245524883, + -1.4981044841988478e-5, + 0.005725814029574394, + 0.0011211258824914694, + -0.004979592747986317, + 0.00710704131051898, + 0.010418398305773735, + -0.005801153834909201, + -0.000807659060228616, + -0.020793745294213295, + -0.021783923730254173, + -0.0015399785479530692, + -0.0037203440442681313, + -0.025256723165512085, + -0.00950714759528637, + -0.023419871926307678, + -0.004552667960524559, + -0.009227314032614231, + -0.0006054079858586192, + -0.00029171694768592715, + -0.0074406880885362625, + -0.006220903247594833, + -0.004728460684418678, + 0.009385168552398682, + 0.004714109934866428, + 0.002405487699434161, + 0.003230636240914464, + -0.0021148917730897665, + 0.01640252023935318, + 0.008337588980793953, + 0.005162560380995274, + -0.019688764587044716, + -0.025314126163721085, + 0.015412341803312302, + -0.001910398481413722, + -0.002410869114100933, + 0.01611551269888878, + -0.004785862285643816, + 0.0027660417836159468, + -0.0006036142003722489, + 0.015814153477549553, + 0.009715228341519833, + -0.02364947833120823, + -0.006364407483488321, + 0.013015823438763618, + -0.01112874411046505, + -0.004437864758074284, + 0.028772573918104172, + 0.005363466218113899, + -0.0009327767184004188, + -0.0013803301844745874, + -0.016560373827815056, + -0.01950220949947834, + 0.009851557202637196, + 0.0034853562247008085, + -0.008875729516148567, + 0.002773216925561428, + -0.01921520009636879, + -0.022501444444060326, + -0.013008647598326206, + 0.005948245525360107, + 0.018497679382562637, + 0.002636888064444065, + 0.005270188674330711, + 0.006959949620068073, + -0.016646476462483406, + 0.011293773539364338, + 0.004197495523840189, + -0.008394991047680378, + 0.01689043454825878, + 0.012039994820952415, + -0.002339116996154189, + -0.019057346507906914, + 0.025027116760611534, + -0.005478269420564175, + 0.003551726695150137, + -0.005158972926437855, + 0.020478036254644394, + -0.0034548614639788866, + -0.008516969159245491, + 0.015412341803312302, + -0.009191438555717468, + 0.016933485865592957, + 0.0056791752576828, + 0.0010610335739329457, + -0.009700877591967583, + 0.0026081872638314962, + 0.013159327208995819, + -0.010978064499795437, + -0.005370641592890024, + -0.029030881822109222, + 0.001327413017861545, + -0.016158562153577805, + 0.00033185325446538627, + 0.005632536485791206, + 0.013159327208995819, + 0.0026117749512195587, + 0.009614775888621807, + -0.00017848324205260724, + -0.007734871469438076, + -0.00886855460703373, + -0.01947350800037384, + -0.006339294370263815, + 0.023749930784106255, + 0.0013830208918079734, + 0.01645992137491703, + 0.01120049599558115, + 0.022874554619193077, + 0.014522615820169449, + -0.02646215818822384, + -0.00975110474973917, + 0.010518851689994335, + -0.018124569207429886, + 0.014414988458156586, + -0.0017722757766023278, + -0.007885551080107689, + -0.00891160499304533, + 0.015512794256210327, + 0.00892595574259758, + -0.0056755878031253815, + -0.011537730693817139, + -0.0046208323910832405, + 0.027595840394496918, + -0.0059016067534685135, + 0.015742400661110878, + -0.005069282837212086, + 0.0007803036132827401, + 0.010081163607537746, + -0.019057346507906914, + -0.009858732111752033, + -0.003140946151688695, + 0.008696349337697029, + 0.003314944915473461, + 0.01193954236805439, + -0.001558813382871449, + 0.012872318737208843, + 0.020334532484412193, + -0.01418538112193346, + -0.003420779248699546, + 0.02891607955098152, + -0.025830740109086037, + -0.015771102160215378, + -0.0032521618995815516, + 2.648659938131459e-5, + -0.015426692552864552, + -0.0033041820861399174, + -0.015699349343776703, + -0.012793391942977905, + 0.003612715983763337, + -0.0149531289935112, + 0.02672046609222889, + 0.007950128056108952, + -0.024711407721042633, + -0.011013940908014774, + 0.0015220404602587223, + 0.01314497645944357, + -0.0017695850692689419, + 0.009004883468151093, + -0.019631363451480865, + 0.00021054744138382375, + 0.000540382694453001, + -0.006730342749506235, + -0.011573607102036476, + -0.00834476388990879, + -0.0038997242227196693, + -0.025845089927315712, + -0.01921520009636879, + -0.007089103106409311, + 0.016129862517118454, + 0.009966360405087471, + 0.01666082814335823, + -0.030996888875961304, + 0.004882727283984423, + -0.005761689972132444, + 0.0020252016838639975, + -0.004850438795983791, + -0.0008211125968955457, + 0.01819632202386856, + 0.014723521657288074, + -0.00633211899548769, + -0.0008578855195082724, + 0.004079104401171207, + -0.011910841800272465, + -0.0022296952083706856, + -0.018009766936302185, + 0.0011740430491045117, + -0.015154033899307251, + -0.00957889948040247, + -0.00261895009316504, + -0.004003764595836401, + -0.015039230696856976, + 0.008990532718598843, + 0.006131213158369064, + 0.00843086652457714, + -0.006733930669724941, + -0.024510502815246582, + 0.005263013299554586, + 0.00016323593445122242, + 0.004527554847300053, + -0.00039867236046120524, + 0.019229551777243614, + -0.023721229285001755, + -0.0026028058491647243, + 0.02677786722779274, + -0.0033364705741405487, + 0.019086046144366264, + 0.018296774476766586, + 0.011616657488048077, + -0.005689938087016344, + 0.013396108523011208, + 0.000751154322642833, + 0.006224490702152252, + -0.002647650893777609, + 0.02794025093317032, + -0.005772452801465988, + -0.007835324853658676, + 0.0065796636044979095, + -0.003928425256162882, + 0.010253368876874447, + 0.00020169054914731532, + -0.012800566852092743, + -0.011774512007832527, + 0.0002574104873929173, + -0.037913788110017776, + -0.008832678198814392, + -0.005632536485791206, + 0.02504146844148636, + -0.0035858089104294777, + -0.013754868879914284, + 0.01924390159547329, + 0.01501053012907505, + 0.0017776571912690997, + 0.0002511322090867907, + 0.0012359292013570666, + -0.017521852627396584, + -0.006794919725507498, + -0.03639264404773712, + 0.0017041113460436463, + 0.018612483516335487, + -0.009313416667282581, + 0.03633524104952812, + -0.0021992004476487637, + -0.012147623114287853, + -0.019932720810174942, + -0.009973536245524883, + -0.009076635353267193, + -0.016101161018013954, + 0.014006000943481922, + -0.01501053012907505, + 0.027079226449131966, + -0.0013372789835557342, + 0.0005314136506058276, + 0.003090719925239682, + -0.0022996533662080765, + -0.00972240325063467, + -0.0014942365232855082, + 0.0038172095082700253, + 0.021683471277356148, + 0.01144445315003395, + 0.01765100657939911, + -0.03822949528694153, + -0.005654062144458294, + 0.027323182672262192, + -0.006009234581142664, + -0.007835324853658676, + -0.01620161347091198, + -0.00892595574259758, + -0.0011175383115187287, + 0.00486837700009346, + -0.0017884200206026435, + -0.0057150512002408504, + 0.009765454567968845, + 0.009987886063754559, + 0.014493915252387524, + -0.0010753839742392302, + -0.010992415249347687, + -0.02489796280860901, + 0.00734023516997695, + -0.008710700087249279, + 0.026246901601552963, + -0.02393648587167263, + 0.009543023072183132, + -0.03246062994003296, + -0.00454908050596714, + -0.010683881118893623, + -0.002166912192478776, + 0.0008605762268416584, + 0.015713701024651527, + 0.006952774245291948, + 0.012879493646323681, + 0.04078386723995209, + 0.02715097740292549, + 0.013130626641213894, + -0.024682708084583282, + 0.027954600751399994, + -0.017694057896733284, + 0.010260543785989285, + -0.008122332394123077, + -0.0049437168054282665, + 0.008983357809484005, + -0.002683526836335659, + 0.002647650893777609, + 0.006931248586624861, + 0.018382877111434937, + 0.004674646537750959, + -0.0011435484047979116, + -0.0020843972451984882, + -0.019688764587044716, + -0.026648713275790215, + 0.0031624718103557825, + 0.010296420194208622, + -0.016589075326919556, + -0.009743928909301758, + 0.028528617694973946, + 0.0150248808786273, + -0.014293009415268898, + -0.0031929665710777044, + 0.01634511910378933, + 0.024410050362348557, + 0.01202564500272274, + -0.01918650045990944, + 0.011659708805382252, + -0.002493384061381221, + 0.010117040015757084, + 0.011566431261599064, + -0.03949233144521713, + 0.004929366055876017, + 0.01430018525570631, + -0.0017059051897376776, + -0.03653614595532417, + 0.011717110872268677, + -0.022357940673828125, + 0.02433829754590988, + 0.031542204320430756, + 0.008760926313698292, + 0.0038351474795490503, + 0.002696083625778556, + -0.02214268408715725, + 0.007663119584321976, + -0.002159736817702651, + -0.003989414311945438, + 0.001994707155972719, + 0.003867435734719038, + -0.006719579920172691, + -0.014414988458156586, + -0.03182921186089516, + -0.02723708003759384, + 0.006863084156066179, + -0.0018601720221340656, + 0.01493877824395895, + -0.0015570196555927396, + -0.00988025777041912, + -0.015527145005762577, + 0.0027785983402282, + 0.02672046609222889, + -0.013116275891661644, + -0.0018834915244951844, + -0.002041345927864313, + -0.005600247997790575, + 0.019545260816812515, + -0.0015399785479530692, + -0.00892595574259758, + 0.006522262003272772, + 0.01831112429499626, + 0.010447099804878235, + -0.00299923587590456, + 0.01799541525542736, + -0.024639656767249107, + -0.015469742938876152, + 0.006550962571054697, + -0.0013650829205289483, + 0.018512031063437462, + -0.004079104401171207, + 0.009363642893731594, + 0.0005179601721465588, + -0.0014072372578084469, + 0.03487149998545647, + 0.008588721044361591, + 0.0033956661354750395, + -0.000898694503121078, + -0.009607600048184395, + 0.004086279775947332, + 0.00665141548961401, + -0.020090576261281967, + 0.009543023072183132, + 0.0052091991528868675, + 0.01192519161850214, + 0.0036575610283762217, + 0.018153270706534386, + 0.02109510451555252, + 0.014795273542404175, + -0.027050524950027466, + 0.007042464334517717, + -0.004089867230504751, + 0.0004722182347904891, + -0.012671412900090218, + 0.00908381026238203, + 0.02364947833120823, + -0.0030207615345716476, + -0.024323947727680206, + 0.00844521727412939, + 0.005194848868995905, + -0.012635537423193455, + 0.001618008827790618, + 0.004696172196418047, + 0.0002614465483929962, + -0.016101161018013954, + 0.02356337569653988, + -0.007067577447742224, + 0.013238254003226757, + 0.009248839691281319, + 0.002825237112119794, + -0.0016036584274843335, + 0.0007874788134358823, + -0.0014036495704203844, + 0.018971243873238564, + -0.0030727817211300135, + 0.002850350458174944, + 0.024582253769040108, + -0.00825866125524044, + -0.0026512385811656713, + 0.0005632536485791206, + -0.000973137270193547, + 0.00483250105753541, + -0.008409340865910053, + -0.009019233286380768, + -0.008481092751026154, + -0.011910841800272465, + -0.0035445515532046556, + -0.0018673472804948688, + 0.010138565674424171, + 0.005524908192455769, + -0.01805281825363636, + 0.006507911719381809, + 0.0005215477431192994, + 0.0009901783196255565, + 0.03303464502096176, + -0.014536966569721699, + 0.008524144068360329, + 0.007971653714776039, + -0.0026924959383904934, + 0.005829854402691126, + 0.0010789715452119708, + 0.010138565674424171, + 0.004857614170759916, + -0.013503736816346645, + -0.0018996356520801783, + 0.0220852829515934, + 0.014623069204390049, + 0.009162737987935543, + 0.005858555436134338, + 0.012929720804095268, + -0.003533788723871112, + 0.0149531289935112, + -0.006310593336820602, + 0.027796747162938118, + 0.014379112049937248, + 0.012685763649642467, + 0.02703617513179779, + 0.020678943023085594, + 0.023003708571195602, + 0.0012771865585818887, + -0.006916898302733898, + 0.0150248808786273, + 0.010784334503114223, + -0.0010439924662932754, + 0.0028485567308962345, + 0.0038997242227196693, + 0.003481768537312746, + 0.006335706450045109, + -0.015441042371094227, + -0.021640419960021973, + 0.01095653884112835, + 0.0018476154655218124, + -0.0028180619701743126, + 0.002575898775830865, + 0.02521367184817791, + 0.014221257530152798, + 0.008158208802342415, + -0.013266955502331257, + 0.00802905485033989, + 0.01192519161850214, + 0.017220493406057358, + -0.028815625235438347, + 0.00722901988774538, + -2.8897018637508154e-5, + -0.007555491756647825, + -0.0008188703213818371, + -0.02654826082289219, + 0.00965065136551857, + 0.016947835683822632, + 0.011135919019579887, + 0.015627598389983177, + 0.01364724151790142, + -0.005471094511449337, + 0.021525617688894272, + -0.015728050842881203, + -0.0147091718390584, + -0.0015229374403133988, + -0.018038466572761536, + 0.0021148917730897665, + 0.005370641592890024, + -0.00021267757983878255, + -0.021195556968450546, + -0.008732224814593792, + 0.009600425139069557, + 0.0003876853152178228, + 0.031714409589767456, + 0.0037346945609897375, + -0.01799541525542736, + -0.011300948448479176, + -0.015541495755314827, + -0.003004617290571332, + -0.0019606249406933784, + 0.01767970621585846, + 0.005822679493576288, + 0.0046674711629748344, + -0.030882084742188454, + 0.0009291891474276781, + 0.026648713275790215, + -0.012865143828094006, + -0.019229551777243614, + -0.00023947248701006174, + 0.019114747643470764, + 0.02098030038177967, + -0.0013767426135018468, + 0.016990887001156807, + -0.010992415249347687, + 0.014608718454837799, + -0.01918650045990944, + -0.0007152783218771219, + -0.0074478634633123875, + 0.021769573912024498, + -0.012219374999403954, + -0.02132471092045307, + 0.02063589170575142, + 0.0065366122871637344, + 0.005123096983879805, + 0.007914251647889614, + -0.006235253531485796, + -0.007806623820215464, + 0.004871964454650879, + -0.006719579920172691, + 0.02347727306187153, + -0.004053991287946701, + 0.0064397468231618404, + 0.01249203272163868, + 0.011738636530935764, + -0.005105158779770136, + -0.009004883468151093, + -0.01395577471703291, + -0.00636799493804574, + 0.01216914877295494, + -0.005212787073105574, + 0.012283951975405216, + -0.02066459134221077, + 0.01061930414289236, + -0.01054755225777626, + 0.012255251407623291, + 0.0053957547061145306, + 0.003557108109816909, + -0.01024619396775961, + -0.0034297483507543802, + 0.009256015531718731, + -0.013367407955229282, + -0.00511592160910368, + -0.017521852627396584, + 0.017105691134929657, + -0.017464449629187584, + 0.015225786715745926, + -0.0037992713041603565, + 0.025055818259716034, + -0.0025741050485521555, + -0.004706935025751591, + 5.8018264098791406e-5, + 0.0037167565897107124, + 0.0007695407839491963, + -0.004516792017966509, + -0.015067932195961475, + 0.028069404885172844, + 0.022357940673828125, + 0.008301712572574615, + -0.018913842737674713, + -0.0006421809084713459, + -0.019932720810174942, + 0.0029418342746794224, + 0.005087220575660467, + -0.018440278246998787, + 0.01518273539841175, + -0.004993943031877279, + -0.002868288429453969, + -0.0031355649698525667, + -0.016876082867383957, + 0.011717110872268677, + 0.005503382533788681, + 0.014723521657288074, + 0.009858732111752033, + 0.003392078448086977, + 0.012499208562076092, + -0.023692529648542404, + -0.008394991047680378, + 0.004656708333641291, + -0.0029974421486258507, + 0.04396966099739075, + -0.0005202023894526064, + 0.01023184321820736, + -0.01144445315003395, + 0.001976769184693694, + -0.02544327825307846, + -0.00227454025298357, + -0.010712581686675549, + -0.01252073422074318, + -0.01330283097922802, + 0.006289067678153515, + -0.0007847881061024964, + 0.006931248586624861, + 0.012965596280992031, + 0.004244134295731783, + 0.013776394538581371, + 0.0027714231982827187, + -0.007792273536324501, + -0.0017651006346568465, + 0.005133859813213348, + -0.0049437168054282665, + 0.004681821446865797, + -0.021166857331991196, + -0.007907076738774776, + 0.004793037194758654, + 0.013496561907231808, + -0.0033669653348624706, + -0.0077707478776574135, + -0.014077753759920597, + -0.0016529880231246352, + 0.019229551777243614, + -0.008638947270810604, + -0.03957843407988548, + -0.001502308645285666, + -0.012448981404304504, + 0.013008647598326206, + -0.008423691615462303, + 0.008638947270810604, + 0.013022998347878456, + -0.009535848163068295, + -0.007268483284860849, + -0.013410459272563457, + 0.010554727166891098, + -0.014099279418587685, + -0.004785862285643816, + -0.013912723399698734, + -0.007749222218990326, + 0.00751244043931365, + -0.0030458748806267977, + -0.009126861579716206, + 0.005761689972132444, + -0.01674693077802658, + -0.02263059839606285, + -0.010411223396658897, + -0.0029741227626800537, + 0.007526790723204613, + 0.010174441151320934, + -0.018095867708325386, + -0.0059912968426942825, + -0.013654416427016258, + -0.0012440013233572245, + 0.014486740343272686, + 0.012707289308309555, + 0.014658944681286812, + -0.001163280219770968, + 0.02396518737077713, + 0.00346741802059114, + -0.009693702682852745, + 0.012398755177855492, + -0.01805281825363636, + 0.02825595997273922, + -0.008825503289699554, + 0.0020987477619200945, + -0.015756752341985703, + -0.017249194905161858, + -0.027308832854032516, + -0.019430456683039665, + 0.0025328476913273335, + -0.009758279658854008, + 0.004882727283984423, + -0.00988025777041912, + -0.014278659597039223, + 0.006098924670368433, + -0.009528673253953457, + -0.0149244274944067, + 0.004911428317427635, + -0.0048073879443109035, + -0.002825237112119794, + 0.024697057902812958, + 0.013166502118110657, + 0.013905548490583897, + -0.018325475975871086, + -0.013209553435444832, + 0.009442570619285107, + 0.0018144301138818264, + -0.01501053012907505, + -0.01508228201419115, + -0.01047580037266016, + 0.011516205035150051, + 0.010927838273346424, + -0.0010188792366534472, + 0.012463332153856754, + -0.014551317319273949, + 0.012936895713210106, + -0.014558492228388786, + -0.020219730213284492, + 0.014242783188819885, + 0.003345439676195383, + -0.010368172079324722, + 0.00346741802059114, + -0.028471216559410095, + 0.014981829561293125, + -0.014981829561293125, + 0.03246062994003296, + 0.0022279012482613325, + 0.013977300375699997, + 0.015283187851309776, + -0.010626479983329773, + -0.0111143933609128, + 0.008323238231241703, + -0.021568669006228447, + 0.010712581686675549, + 0.021583018824458122, + 0.0021740873344242573, + -0.015598896890878677, + 0.0020269956439733505, + -0.008072106167674065, + 0.017694057896733284, + -0.007648769300431013, + -0.016703879460692406, + 0.00405757874250412, + 0.0027857734821736813, + -0.0024844149593263865, + 0.009614775888621807, + -0.00734023516997695, + -0.014809624291956425, + 0.023132862523198128, + -0.005743752233684063, + 0.010518851689994335, + -0.031283896416425705, + -0.025715937837958336, + 0.020061874762177467, + 0.0068451459519565105, + 0.01105699222534895, + 0.006009234581142664, + -0.0046136570163071156, + -0.01046144962310791, + 0.01437193714082241, + -0.004692584276199341, + -8.817655179882422e-5, + 0.0032952132169157267, + -0.004384050611406565, + -0.013396108523011208, + 0.0022530145943164825, + -0.004114980343729258, + 0.021568669006228447, + -0.006009234581142664, + -0.0002367817796766758, + -0.022329239174723625, + 0.007114216219633818, + 0.005162560380995274, + 0.013130626641213894, + -0.002138211391866207, + 0.010834560729563236, + 0.00020034519548062235, + -0.012657063081860542, + -0.015871554613113403, + 0.004082691855728626, + -0.0013641859404742718, + -0.0026440632063895464, + -0.003648592159152031, + -0.00032041777740232646, + 0.002581280190497637, + -0.004434277303516865, + -0.0030727817211300135, + -0.005363466218113899, + 0.00010706752073019743, + -0.00149961793795228, + -0.023319417610764503, + -0.00020864153339061886, + 0.005158972926437855, + 0.01105699222534895, + 0.018612483516335487, + -0.01654602400958538, + -0.031369999051094055, + 0.021884378045797348, + -0.007121391594409943, + 0.021252959966659546, + 0.0012897432316094637, + -0.016215965151786804, + 0.01031794585287571, + 0.009435395710170269, + -0.008007529191672802, + -0.0012727021239697933, + -0.01518273539841175, + 0.004201082978397608, + 0.018727285787463188, + -0.00017287761147599667, + -0.031341299414634705, + 0.006511499173939228, + 0.01264988724142313, + -0.012398755177855492, + -0.020621541887521744, + -0.011889316141605377 + ], + "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd": [ + -0.023965131491422653, + -0.010232124477624893, + -0.006520393770188093, + 0.01007299404591322, + -0.051017407327890396, + -0.02216695249080658, + 0.021562254056334496, + 0.04318815842270851, + -0.0014321792405098677, + 0.017329368740320206, + 0.015467535704374313, + 0.020893903449177742, + -0.0005231432733125985, + -0.009221643209457397, + -0.04646626114845276, + 0.021737297996878624, + -0.03688657283782959, + 0.032303597778081894, + 0.0025361506268382072, + 0.013852356001734734, + 0.07078147679567337, + -0.010168472304940224, + -0.05209949612617493, + 0.00025610148441046476, + -0.017106585204601288, + -0.005692912265658379, + 0.021594079211354256, + -0.00836233515292406, + -0.03513612970709801, + -0.015650536864995956, + 0.015348187647759914, + 0.035486217588186264, + 0.01312035322189331, + -0.027943408116698265, + -0.00733594037592411, + -0.04420660063624382, + -0.012873699888586998, + 0.0006564154755324125, + 0.007248418405652046, + -0.001476934878155589, + -0.033162906765937805, + 0.03981458395719528, + 0.01989137753844261, + 0.02097346819937229, + -0.03602726384997368, + 0.012237176299095154, + 0.00039360063965432346, + -0.014377487823367119, + 0.0012054175604134798, + 0.018109111115336418, + 0.023503651842474937, + 0.014974229037761688, + -0.00012512919784057885, + 0.0006086761713959277, + 0.00011400246148696169, + -0.035454392433166504, + 0.016581453382968903, + 0.09363269805908203, + 0.007725811097770929, + -0.03978275507688522, + 0.0034233061596751213, + -0.006603937596082687, + -0.0011606619227677584, + -0.005394541658461094, + -0.02441069856286049, + -0.021387210115790367, + -0.02523818053305149, + -0.004519321024417877, + -0.03462691232562065, + -0.004352233372628689, + 0.009555818513035774, + 0.03885979577898979, + -0.011274432763457298, + 0.012857786379754543, + -0.02426748163998127, + 0.0013466463424265385, + 0.04519321024417877, + 0.01885702647268772, + 0.015117447823286057, + 0.029073238372802734, + -0.029773414134979248, + -0.006166327279061079, + 0.014608228579163551, + 0.04032380133867264, + 0.07300931215286255, + -0.006778981536626816, + -0.011767739430069923, + -0.04869409278035164, + 0.005127997137606144, + -0.016565538942813873, + 0.004368146415799856, + 0.04770748317241669, + -0.017727196216583252, + -0.0020527902524918318, + -0.021578166633844376, + 0.0034551324788480997, + 0.043665554374456406, + 0.0056491512805223465, + 0.013343136757612228, + -0.00471027847379446, + 0.006965960841625929, + 0.04964888095855713, + -0.047102782875299454, + 0.026017922908067703, + -0.025604182854294777, + -0.014950360171496868, + 0.006405023857951164, + -0.00900681596249342, + -0.01324765756726265, + 0.03066454827785492, + 0.0037694161292165518, + -0.028675410896539688, + -0.00026430669822730124, + 0.029009586200118065, + -0.01785450056195259, + -0.026129314675927162, + -0.004125471692532301, + -0.036504656076431274, + 0.026734013110399246, + -0.02019372768700123, + 0.03777770698070526, + 0.029884805902838707, + -0.010765213519334793, + 0.004785865545272827, + -0.026574881747364998, + 0.013016917742788792, + -0.006420936901122332, + 0.008728336542844772, + 0.01169613003730774, + 0.015483449213206768, + -0.03723666071891785, + -0.03618639335036278, + 0.011186910793185234, + -0.008242987096309662, + 0.016080189496278763, + 0.026049748063087463, + 0.002466531004756689, + 0.052322279661893845, + -0.019207114353775978, + 0.021785037592053413, + -0.033035602420568466, + -0.06670772284269333, + 0.005418411456048489, + 0.00042592413956299424, + 0.0070693958550691605, + 0.013088527135550976, + -0.03040993958711624, + 0.05525029078125954, + -0.0011308247921988368, + 0.03130107372999191, + -0.035263434052467346, + -0.012802091427147388, + 0.0008170383516699076, + 0.01777493581175804, + -0.0016022505005821586, + -0.016549626365303993, + 0.0056451731361448765, + 0.04758017510175705, + 0.0034173387102782726, + 0.008386204950511456, + -0.022644344717264175, + -0.08834954351186752, + -0.016008581966161728, + 0.002377019729465246, + 0.03831874951720238, + 0.011727956123650074, + 0.0316670723259449, + 0.02743418887257576, + -0.026909057050943375, + 0.014449097216129303, + 0.02834123559296131, + 0.006775003392249346, + 0.02103712223470211, + -0.01102778036147356, + 0.01987546496093273, + -0.0041055805049836636, + 0.03924171254038811, + 0.03481786698102951, + 0.020575640723109245, + -0.026017922908067703, + -0.008242987096309662, + -0.003852959955111146, + 0.0008975984528660774, + -0.008004290983080864, + -0.006504480727016926, + 0.01421040017157793, + 0.006719307508319616, + -0.002808662597090006, + 0.0063771759159862995, + -0.020511988550424576, + 0.017138412222266197, + -0.02003459632396698, + 0.011982565745711327, + 0.027895668521523476, + -0.014894664287567139, + -0.02622479386627674, + 0.021800950169563293, + -0.004169232677668333, + 0.024872180074453354, + 0.020464248955249786, + -0.009810428135097027, + -0.03777770698070526, + -0.052258629351854324, + 0.03707752749323845, + -0.04652991145849228, + 0.05092192813754082, + -0.022692084312438965, + 0.02947106584906578, + 0.04649808630347252, + -0.03669561445713043, + 0.03551804646849632, + -0.050158098340034485, + 0.003918601665645838, + 0.008338465355336666, + -0.014807142317295074, + 0.012515654787421227, + -0.0188729390501976, + 0.02859584614634514, + 0.02733870968222618, + -0.043792858719825745, + -0.014425227418541908, + -0.01205417513847351, + -0.027911581099033356, + -0.022660257294774055, + -0.029996197670698166, + -0.03777770698070526, + -0.026749925687909126, + 0.050030793994665146, + -0.02617705427110195, + -0.013279483653604984, + 0.02219877764582634, + 0.007789463736116886, + 0.015443665906786919, + -0.022771649062633514, + -0.009245513007044792, + 0.00848168320953846, + 0.025588268414139748, + 0.01809319667518139, + 0.011019823141396046, + -0.02219877764582634, + 0.01323174498975277, + 0.03048950433731079, + -0.012539524585008621, + 0.0110357366502285, + 0.006023109424859285, + 0.029025498777627945, + 6.881173612782732e-5, + 0.016119973734021187, + 0.01366139855235815, + -0.03262186050415039, + 0.020273292437195778, + 0.02853219211101532, + 0.012332654558122158, + -0.008688554167747498, + -0.008386204950511456, + 0.04866226762533188, + 0.04089667275547981, + -0.04773930832743645, + 0.000684760685544461, + -0.028309408575296402, + -0.014035356231033802, + -0.0017404955578967929, + -0.006098696496337652, + -0.009834297001361847, + 0.04961705207824707, + -0.0484076589345932, + 0.02210330031812191, + -0.00781333353370428, + 0.005016605369746685, + 0.0506991446018219, + -0.001539592631161213, + -0.006727264262735844, + 0.02326495572924614, + -0.016151798889040947, + 0.01317604910582304, + -0.011409694328904152, + -0.031062375754117966, + -0.010319647379219532, + -0.03399038687348366, + -0.005875912960618734, + 0.005211540963500738, + 0.028739063069224358, + -0.019764073193073273, + 0.006174283567816019, + -0.027847928926348686, + 0.03898710012435913, + -0.013406788930296898, + 0.04306085407733917, + -0.023742349818348885, + -0.0033715886529535055, + -0.003136870451271534, + -0.008911337703466415, + 0.02940741367638111, + -0.009929776191711426, + -0.0016201527323573828, + 0.0022795519325882196, + -0.0050723012536764145, + -0.02336043491959572, + -0.01777493581175804, + 0.005191649775952101, + -0.0016668974421918392, + -0.0199391171336174, + -0.008282769471406937, + -0.007033591158688068, + -0.0006534317508339882, + -0.003916612360626459, + 0.0283889751881361, + 0.008736292831599712, + -0.03244681656360626, + 0.02846853993833065, + 0.05047636106610298, + -0.024919917806982994, + -0.006313523277640343, + -0.03173072636127472, + -0.00997751485556364, + -0.016127929091453552, + 0.018300067633390427, + 0.02129173092544079, + -0.034372299909591675, + -0.02409243769943714, + 0.012284914962947369, + -0.012030305340886116, + -0.05770090967416763, + 0.04567060247063637, + 0.02005050890147686, + -0.025731487199664116, + 0.045957040041685104, + -0.01989137753844261, + -0.03815962001681328, + -0.04032380133867264, + -0.033290211111307144, + -0.04341094195842743, + -0.023058084771037102, + -0.00449545169249177, + -0.014393401332199574, + -0.07663749903440475, + -0.04029197618365288, + -0.013916008174419403, + -0.019461724907159805, + -0.03206489980220795, + 0.007912790402770042, + -0.004921127110719681, + 0.0025361506268382072, + -0.004511364735662937, + 0.0111550847068429, + -0.00605095736682415, + -0.008433944545686245, + 0.006194175221025944, + -0.011059606447815895, + 0.009293251670897007, + 0.0010159520898014307, + -0.0273227971047163, + -0.00841803103685379, + 0.012666829861700535, + 0.03885979577898979, + 0.007586571853607893, + -0.030394025146961212, + -0.03297194838523865, + 0.002890217350795865, + -0.000986115075647831, + 0.013438615016639233, + -0.024442525580525398, + -0.03892344981431961, + -0.0031289136968553066, + -0.017393020913004875, + -0.008258900605142117, + -0.00417718943208456, + -0.020543815568089485, + -0.023885566741228104, + 0.015475491993129253, + -0.028850454837083817, + 0.004284603055566549, + -0.005732695106416941, + -0.020257379859685898, + -0.03146020323038101, + -0.020862078294157982, + 0.03991005942225456, + -0.012873699888586998, + 0.008823815733194351, + 0.01890476606786251, + -0.02210330031812191, + 0.05413637310266495, + 0.013454528525471687, + -0.03717300668358803, + 0.021944168955087662, + 0.0037455465644598007, + 0.013900094665586948, + -0.02013007551431656, + 0.019334418699145317, + 0.014663923531770706, + -0.04843948408961296, + 0.03190577030181885, + -0.020623380318284035, + -0.0024824440479278564, + -0.007423462346196175, + 0.008187291212379932, + -0.018729722127318382, + -0.0039026883896440268, + 0.017456673085689545, + -0.01591310277581215, + 0.006468676030635834, + 0.014345661737024784, + -0.01324765756726265, + 0.02122807875275612, + 0.01689971424639225, + -0.016000624746084213, + -0.01625523343682289, + -0.016501886770129204, + 0.019811812788248062, + 0.018793374300003052, + -0.003007576335221529, + -0.01216556690633297, + 0.022723911330103874, + 0.008585118688642979, + 0.0465935654938221, + 0.016279103234410286, + 0.007518941070884466, + 0.03244681656360626, + -0.0379050113260746, + -0.02423565462231636, + 0.02423565462231636, + 0.03908257931470871, + 0.004077732563018799, + -0.00018225474923383445, + -0.014011486433446407, + 0.017456673085689545, + 0.024999484419822693, + 0.03704570233821869, + -0.03142837807536125, + 0.017456673085689545, + -0.01901615783572197, + 0.033067427575588226, + -0.003315892769023776, + -0.015746014192700386, + -0.00834642257541418, + -0.03484969586133957, + -0.001393391052260995, + -0.01911163702607155, + -0.0022357909474521875, + -0.012666829861700535, + 0.010836822912096977, + 0.03796866163611412, + -0.007443353533744812, + -0.017090672627091408, + -0.025031309574842453, + -0.0001302885211771354, + -0.04748469963669777, + -0.0089033804833889, + 0.024744873866438866, + 0.012189436703920364, + 0.002116442658007145, + 0.04134223982691765, + -0.06432075798511505, + -0.0006191191496327519, + -0.021785037592053413, + -0.013056701049208641, + 0.013908051885664463, + -0.015491405501961708, + 0.02005050890147686, + -0.03574083000421524, + -0.0487259216606617, + 0.0012591242557391524, + 0.030378112569451332, + -0.0031905770301818848, + 0.006138479337096214, + -0.05238593369722366, + 0.007705919910222292, + 0.016064276918768883, + 0.009746775031089783, + 0.00029762473423033953, + -0.0044874949380755424, + -0.00900681596249342, + -0.01794997975230217, + -0.013454528525471687, + -0.01158473826944828, + -0.01533227413892746, + -0.017536239698529243, + 0.009030685760080814, + 0.01424222718924284, + -0.01898433081805706, + -0.02016190066933632, + -0.0037932859268039465, + -0.03930536285042763, + 0.00578839099034667, + -0.0020846163388341665, + -0.013756876811385155, + -0.03060089610517025, + -0.044811297208070755, + -0.007160895969718695, + 0.0032403054647147655, + 0.07326392084360123, + -0.01799771934747696, + 0.013916008174419403, + 0.016247278079390526, + -0.010136646218597889, + -0.010271907784044743, + -0.0008951119962148368, + -0.028802715241909027, + -0.02307399921119213, + -0.0018081262242048979, + 0.01156086940318346, + -0.019779985770583153, + 4.8143352614715695e-5, + 0.004869409371167421, + 0.01216556690633297, + 0.012810047715902328, + -0.005275193601846695, + 0.009563774801790714, + -0.006015152670443058, + 0.0025361506268382072, + -0.01622340828180313, + 0.013263571076095104, + -0.015125404112040997, + 0.011871174909174442, + -0.01001729816198349, + -0.0003364129224792123, + -0.013677312061190605, + -0.0026873252354562283, + 0.011958696879446507, + -0.011552912183105946, + 0.004161276388913393, + -0.00578043470159173, + -0.008235030807554722, + 0.009985472075641155, + -0.007411527447402477, + 0.00611460953950882, + -0.014568445272743702, + -0.03376760333776474, + 0.019175289198756218, + -0.024569829925894737, + -0.029789328575134277, + 0.005478085484355688, + -0.00893520750105381, + 0.004758017603307962, + 0.03376760333776474, + -0.009022729471325874, + -0.02421974204480648, + 0.01418653130531311, + 0.023965131491422653, + 0.011958696879446507, + -0.032271772623062134, + 0.03146020323038101, + 0.023806001991033554, + -0.00417718943208456, + -0.02130764350295067, + 0.03879614546895027, + -0.025126788765192032, + 0.024522090330719948, + 0.0121019147336483, + 0.01775902323424816, + -0.02321721613407135, + -0.010781127028167248, + -0.007793441880494356, + 0.010367386043071747, + 0.017615804448723793, + -0.05687342956662178, + 0.03701387718319893, + -0.015419796109199524, + -0.01051060389727354, + -0.01674058474600315, + -0.0030612831469625235, + 0.019811812788248062, + 0.002379008801653981, + 0.01793406717479229, + -0.03755492344498634, + -0.015069708228111267, + -0.01594492793083191, + 0.027847928926348686, + -0.014035356231033802, + 0.009516035206615925, + 0.028022972866892815, + -0.003335784189403057, + 0.058751173317432404, + -0.009452383033931255, + 0.00031328920158557594, + 0.007355831563472748, + 0.0009562780032865703, + -0.002488411497324705, + -0.030107589438557625, + -0.015658492222428322, + 0.01597675494849682, + -0.045734256505966187, + 0.0012203360674902797, + -0.003071228740736842, + -0.0017673489637672901, + 0.02846853993833065, + -0.019620856270194054, + -0.027672884985804558, + -0.011067562736570835, + 0.005147888790816069, + -0.016613278537988663, + 0.04442938044667244, + 0.023471826687455177, + -0.01211782731115818, + -0.019573116675019264, + 0.021769125014543533, + 0.0019682517740875483, + 0.01900024525821209, + 0.0064885676838457584, + -0.0024406721349805593, + -0.0017106585437431931, + 0.021259905770421028, + -0.0046386695466935635, + -0.02837306261062622, + -0.009738818742334843, + 0.013955790549516678, + 0.00030955957481637597, + 0.0242038294672966, + -0.0064925458282232285, + 0.03481786698102951, + -0.008728336542844772, + -0.003628187347203493, + 0.04309268295764923, + -0.0011984555749222636, + 0.02334452047944069, + -0.014480923302471638, + 0.021832777187228203, + 0.030839592218399048, + 0.014544575475156307, + -0.0223101694136858, + 0.0044874949380755424, + -0.035422567278146744, + 0.05840108543634415, + -0.006198153365403414, + 0.024553917348384857, + 0.01672467030584812, + -0.0023193347733467817, + -0.03271733969449997, + 0.002140312222763896, + -0.02617705427110195, + 0.003214446594938636, + 0.015714189037680626, + 0.012125784531235695, + -0.043792858719825745, + 0.03287646919488907, + -0.00953194871544838, + -0.010104820132255554, + 0.02008233591914177, + -0.02619296684861183, + -0.016151798889040947, + -0.03060089610517025, + -0.013438615016639233, + -0.017679456621408463, + 0.021721385419368744, + -0.012754351831972599, + 0.027036361396312714, + -0.02434704639017582, + 0.01686788909137249, + 0.04041928052902222, + 0.0012750372989103198, + -0.01903207041323185, + -0.02751375362277031, + 0.0015962830511853099, + 0.009197773411870003, + 0.010629952885210514, + -0.029948458075523376, + 0.018475111573934555, + 0.008187291212379932, + 0.0011238629231229424, + -0.0005922658019699156, + 0.02643166296184063, + -0.011926870793104172, + 0.005585499107837677, + 0.02210330031812191, + 0.013995573855936527, + 0.002717162249609828, + 0.030919158831238747, + 0.0006768041639588773, + 0.0060668704099953175, + 0.028914107009768486, + -0.0050723012536764145, + -0.012093957513570786, + 0.03570900112390518, + 0.00010909177944995463, + -0.007781506981700659, + -0.0013187984004616737, + -0.0005609368672594428, + -0.016127929091453552, + 0.004996714182198048, + 0.010876605287194252, + 0.002963815350085497, + -0.021498601883649826, + -0.04869409278035164, + 0.00845781434327364, + 0.03058498352766037, + -0.020814338698983192, + 0.0016370604280382395, + 0.011799565516412258, + -0.027147753164172173, + -0.02019372768700123, + 0.012372436933219433, + 0.005911717656999826, + -0.012515654787421227, + -0.0025063136126846075, + 0.01702702045440674, + 0.024538004770874977, + 0.008863598108291626, + -0.006206110119819641, + 0.026033835485577583, + -0.029868893325328827, + -0.03660013526678085, + -0.014457053504884243, + 0.005505933426320553, + -0.04236067831516266, + 0.013876225799322128, + 0.019620856270194054, + -0.020862078294157982, + -0.00900681596249342, + 0.0029498913791030645, + -0.008075899444520473, + -0.0020299151074141264, + 0.014815098606050014, + -0.009691079147160053, + 0.031237419694662094, + 0.01779084838926792, + 0.02307399921119213, + 0.0025978139601647854, + 0.0038151664193719625, + 0.00793268159031868, + 0.01430587936192751, + 0.00235513923689723, + 0.01707475818693638, + -0.007240461651235819, + -0.037427615374326706, + -0.050253577530384064, + 0.01885702647268772, + 0.007841181010007858, + -0.0017991751665249467, + 0.021816862747073174, + 0.005342824384570122, + 0.04439755529165268, + 0.01794997975230217, + -0.013931921683251858, + -0.011067562736570835, + -0.008266856893897057, + -0.009221643209457397, + -0.025588268414139748, + -0.004043917171657085, + 0.01911163702607155, + -0.023869654163718224, + 0.006043000612407923, + -0.010637909173965454, + 0.02644757553935051, + -0.009181859903037548, + 0.0022775628603994846, + 0.022071473300457, + 0.02114851400256157, + -0.001893659238703549, + -0.014441140927374363, + 0.004575016908347607, + 0.02520635351538658, + -0.04512955993413925, + 0.05139932036399841, + 0.0201778132468462, + -0.003634154796600342, + 0.0022875084541738033, + 0.022644344717264175, + 0.01596084237098694, + -0.013892138376832008, + 0.02110077440738678, + 0.00020985404262319207, + 0.020862078294157982, + -0.021594079211354256, + 0.005732695106416941, + 0.00713304802775383, + 0.0008438916993327439, + -0.013916008174419403, + 0.023933306336402893, + 0.029073238372802734, + -0.022596605122089386, + 0.030282633379101753, + 0.016358669847249985, + 0.017233889549970627, + 0.010375343263149261, + -0.00552184646949172, + -0.012563394382596016, + 0.008028159849345684, + -0.012833917513489723, + -0.036250047385692596, + -0.013613658957183361, + -0.016390495002269745, + -0.051303841173648834, + 0.006723285652697086, + -0.016645105555653572, + 0.023694610223174095, + -0.02967793680727482, + 0.022994432598352432, + 0.006942091044038534, + -0.02843671478331089, + -0.01056629978120327, + -0.009897950105369091, + 0.01376483403146267, + -0.022405648604035378, + 0.020766599103808403, + -0.008099769242107868, + -0.01885702647268772, + 0.03203307464718819, + -0.015443665906786919, + 0.0012899559224024415, + 0.018618330359458923, + 0.02425156906247139, + -0.038350578397512436, + 0.043665554374456406, + 0.030218981206417084, + -0.03784135729074478, + -0.038477882742881775, + 0.010049124248325825, + -0.004586951807141304, + 0.006039022468030453, + 0.010852735489606857, + -0.01777493581175804, + -0.037491269409656525, + 0.0013734996318817139, + 0.02745010145008564, + -0.01893659122288227, + 0.00685456907376647, + -0.019477637484669685, + 0.0038788188248872757, + 0.0336402989923954, + -0.01814093627035618, + 0.004658560734242201, + 0.006930156145244837, + 0.04617982357740402, + 0.0025520639028400183, + -0.029964372515678406, + -0.02856401912868023, + 0.02336043491959572, + -0.004630712792277336, + 0.0020209639333188534, + 0.03469056263566017, + 0.0013536083279177547, + -0.01779084838926792, + -0.013844398781657219, + 0.035263434052467346, + 0.010454908013343811, + 0.019732248038053513, + -0.03171481192111969, + -0.006233958061784506, + -0.02643166296184063, + 0.02301034703850746, + -0.025922443717718124, + -0.037650398910045624, + -0.01785450056195259, + -0.02441069856286049, + -0.008608988486230373, + -0.03133289888501167, + -0.0071131568402051926, + -0.003337773261591792, + 0.037427615374326706, + 0.018379634246230125, + 0.020241467282176018, + 0.0032840664498507977, + 0.0018707840936258435, + 0.032303597778081894, + -0.04780295863747597, + 0.030823679640889168, + -0.024904005229473114, + 0.005549694411456585, + -0.010343516245484352, + -0.0025938358157873154, + 0.03179438039660454, + -0.001079107285477221, + -0.03449960798025131, + -0.005541738122701645, + -0.0070693958550691605, + -0.011966653168201447, + -0.02009824849665165, + -0.009165947325527668, + 0.0018091208767145872, + 0.0025978139601647854, + 0.002965804422274232, + -0.0018797352677211165, + 0.009078425355255604, + 0.02624070644378662, + -0.010677691549062729, + -0.025842878967523575, + -0.029296021908521652, + -0.00887951161712408, + -0.03408586606383324, + 0.003067250596359372, + 0.003475023666396737, + 0.009699036367237568, + 0.019843637943267822, + 0.0035287304781377316, + -0.06116996705532074, + 0.003918601665645838, + 0.036377351731061935, + -0.018236415460705757, + -0.02423565462231636, + -0.009706992655992508, + 0.007097243797034025, + -0.0011765749659389257, + -0.009579687379300594, + -0.03408586606383324, + 0.0007533859461545944, + -0.0029598369728773832, + -0.01061403937637806, + -0.030441764742136, + -0.0034014256671071053, + -0.005891826003789902, + 0.004129450302571058, + -0.04334729164838791, + -0.033194731920957565, + 0.018570590764284134, + 0.006755112204700708, + -0.04458851367235184, + 0.013016917742788792, + 0.02331269532442093, + 0.01372505072504282, + 0.03596361353993416, + 0.02429930679500103, + 0.018156850710511208, + -0.0033059469424188137, + -0.006472654640674591, + 0.042647115886211395, + 0.004411907866597176, + 0.0036878616083413363, + -0.02110077440738678, + -0.009460339322686195, + 0.0022875084541738033, + 0.017456673085689545, + 0.00021843219292350113, + 0.006285675335675478, + 0.0014331737766042352, + -0.006691459566354752, + -0.012308784760534763, + 0.003029456827789545, + 0.0031925661023706198, + 0.006715329363942146, + 0.033353861421346664, + 0.002424759091809392, + -0.002291486831381917, + 0.019811812788248062, + 0.004125471692532301, + 0.030012112110853195, + -0.0059196739457547665, + -0.034276824444532394, + -0.005903760902583599, + -0.001625125645659864, + -0.01270661223679781, + -0.028086625039577484, + -0.007304114289581776, + 0.01569031924009323, + -0.00530304154381156, + 0.007411527447402477, + -0.022787563502788544, + -0.006771025247871876, + 0.031221507117152214, + 0.013597746379673481, + 0.016661018133163452, + -0.005287128500640392, + 0.010709517635405064, + 0.004077732563018799, + -0.0032641752623021603, + 0.022883040830492973, + 0.04296537861227989, + -0.00030011116177774966, + 0.020862078294157982, + 0.017170237377285957, + -0.008640814572572708, + 0.01904798299074173, + -0.00712906988337636, + 0.005438302643597126, + 0.005752586759626865, + -0.024633482098579407, + -0.0029936523642390966, + -0.033290211111307144, + -0.0021502580493688583, + -0.019366245716810226, + -0.014138791710138321, + -0.01373300701379776, + -0.014138791710138321, + -0.007638289127498865, + 0.007865050807595253, + 0.010741344653069973, + -0.025047224014997482, + -0.03066454827785492, + -0.01425813976675272, + -0.001869789557531476, + -0.008000312373042107, + 0.0401964969933033, + 0.0062220231629908085, + 0.003381534246727824, + -0.007001765072345734, + -0.02211921289563179, + 0.011314216069877148, + 0.012786177918314934, + 0.016191581264138222, + -0.014807142317295074, + 0.018109111115336418, + -0.008211161009967327, + -0.03924171254038811, + -0.011242606677114964, + 0.0055258250795304775, + 0.023471826687455177, + 0.005736673250794411, + -0.0170588456094265, + -0.013613658957183361, + 0.001480913138948381, + -0.038668837398290634, + 0.016119973734021187, + 0.015348187647759914, + -0.02200782112777233, + 0.05400906875729561, + -0.006082783453166485, + 0.04115128144621849, + 0.004563082009553909, + 0.0016678920947015285, + 0.007180787622928619, + 0.01578579843044281, + -0.0022676170337945223, + -0.026734013110399246, + 0.006548241712152958, + 0.0002093567600240931, + 0.03184211999177933, + 0.03399038687348366, + -0.014409313909709454, + -0.03873249143362045, + -0.02410835027694702, + 0.03475421667098999, + -0.006512437015771866, + 0.01431383565068245, + 0.002583889989182353, + -0.01312035322189331, + -0.012746395543217659, + 0.014274053275585175, + 0.003256218507885933, + 0.00476995250210166, + 0.013939877972006798, + -0.00685854721814394, + -0.019636768847703934, + -0.001469972892664373, + 0.004578995052725077, + -0.017297541722655296, + -0.020702946931123734, + -0.018793374300003052, + -0.011234650388360023, + -0.07523714751005173, + -0.010192342102527618, + -0.0006554208812303841, + 0.044843122363090515, + 0.004459646996110678, + -0.028866367414593697, + -0.0018538763979449868, + 0.016613278537988663, + -0.011807521805167198, + -0.011648391373455524, + 0.019254853948950768, + -0.03567717596888542, + 0.019509464502334595, + 0.033290211111307144, + -0.011274432763457298, + -0.01108347624540329, + -0.0041016023606061935, + 0.0014669891679659486, + -0.008040094748139381, + -0.02725914493203163, + -0.01324765756726265, + 0.013088527135550976, + 0.03723666071891785, + -0.015793753787875175, + 0.0008483672863803804, + 0.035772655159235, + -0.007467223331332207, + 0.01426609605550766, + -0.027736537158489227, + -0.012189436703920364, + 0.02950289286673069, + 0.0024148132652044296, + -0.004586951807141304, + -0.008147508837282658, + 0.006711351219564676, + 0.008024182170629501, + 0.020750686526298523, + -0.00504047516733408, + 0.02843671478331089, + -0.0035386760719120502, + 0.02509496361017227, + 0.0030533266253769398, + -0.03055315650999546, + -0.018570590764284134, + -0.0057963477447628975, + -0.025524616241455078, + -0.008091812953352928, + -0.02113259956240654, + 0.009404643438756466, + 0.01702702045440674, + 0.038446053862571716, + 0.0011437542270869017, + 0.015220882371068, + -0.028118452057242393, + 0.02006642147898674, + 0.01060608308762312, + 0.007041547913104296, + -0.006794894579797983, + 0.004960909485816956, + 0.0026873252354562283, + 0.07771959155797958, + 0.024888092651963234, + 0.010526517406105995, + 0.022739823907613754, + -0.02129173092544079, + 0.013008961454033852, + 0.013096483424305916, + 0.013820529915392399, + 0.011998479254543781, + -0.011895043775439262, + -0.005100149195641279, + -0.01807728409767151, + 0.006210088264197111, + 0.027959320694208145, + 0.0049489750526845455, + 0.007753659039735794, + 0.020559728145599365, + 6.682259845547378e-5, + 0.008863598108291626, + -0.01578579843044281, + -0.010144602507352829, + -0.001961289905011654, + 0.007053482811897993, + -0.025779226794838905, + -0.006707372609525919, + -0.006584045942872763, + 0.017615804448723793, + -0.022739823907613754, + -0.007526897359639406, + 0.009388730861246586, + 0.024490265175700188, + -0.00011785641254391521, + 0.03580448031425476, + 0.019398072734475136, + -0.00356055679731071, + 0.03354481980204582, + -0.00038887644768692553, + 0.005155845079571009, + -0.0010820910101756454, + -0.014226313680410385, + -0.005597434006631374, + -0.013955790549516678, + 0.006790916435420513, + -0.019223026931285858, + -0.001954327803105116, + -0.0007404565694741905, + 0.01168021745979786, + 0.03803231567144394, + -0.03168298676609993, + -0.025779226794838905, + -0.002472498221322894, + 0.011298302561044693, + -0.023917393758893013, + 0.006950047332793474, + 0.00019568143761716783, + 0.01008095033466816, + -0.00019394094124436378, + -0.031062375754117966, + -0.009500122629106045, + -0.00954786129295826, + -0.0034889476373791695, + 0.028309408575296402, + 0.022548865526914597, + -0.015173143707215786, + -0.01532431785017252, + -0.001168618444353342, + -0.017647631466388702, + -0.0028345214668661356, + -0.014130835421383381, + 0.015133360400795937, + -0.008616944774985313, + -0.007514962460845709, + -0.012945309281349182, + 0.010232124477624893, + -0.010542429983615875, + -0.01912754960358143, + 0.03259003534913063, + -0.00799633376300335, + 0.005812260787934065, + -0.06094718351960182, + -0.0058003258891403675, + 0.007582593243569136, + -0.0009353920468129218, + 0.0011298302561044693, + -0.008561248891055584, + -0.013295397162437439, + 0.0037733945064246655, + 0.010908431373536587, + 0.004563082009553909, + -0.021975994110107422, + -0.016008581966161728, + 0.005673021078109741, + 0.019270766526460648, + -0.017170237377285957, + -0.017408933490514755, + -0.0019762085285037756, + -0.015594840049743652, + 0.013390875421464443, + 0.008099769242107868, + -0.010383299551904202, + -0.013367006555199623, + 0.0012113848933950067, + -0.006142457481473684, + -0.020289205014705658, + 0.010669735260307789, + -0.010574257001280785, + -0.03612274304032326, + 0.0005544721498154104, + -0.025492791086435318, + -0.02547687664628029, + -0.004348255228251219, + 0.01108347624540329, + -0.0022178885992616415, + -0.017743108794093132, + -0.012205349281430244, + -0.00845781434327364, + -0.008736292831599712, + -0.018602417781949043, + 0.015029924921691418, + -0.014393401332199574, + -0.011353998444974422, + 0.01898433081805706, + -0.0038211336359381676, + 0.004877366125583649, + 0.0009214680758304894, + 0.006671568378806114, + 0.00887951161712408, + 0.006619850639253855, + -0.016183625906705856, + 0.0028782824520021677, + 0.0313488133251667, + 0.007542810402810574, + -0.016000624746084213, + 0.004185146186500788, + 0.004352233372628689, + -0.0075388322584331036, + 0.023869654163718224, + 0.02224651724100113, + -0.03453143313527107, + -0.01693154126405716, + -0.009150033816695213, + -0.0070733739994466305, + 0.0048057567328214645, + 0.004702321719378233, + -0.01313626579940319, + 0.004000156186521053, + -0.0546455942094326, + 0.022787563502788544, + 0.016565538942813873, + -0.013104439713060856, + 0.01216556690633297, + -0.0045272777788341045, + -0.010478777810931206, + -0.019413985311985016, + 0.009722905233502388, + -0.0007583588012494147, + -0.003471045522019267, + -0.024426613003015518, + -0.011974609456956387, + -0.013024874031543732, + 0.013748920522630215, + -0.003952417057007551, + 0.003677915781736374, + -0.019843637943267822, + -0.007172830868512392, + 0.0007891904097050428, + 0.011059606447815895, + -0.060501616448163986, + -0.04108763113617897, + -0.0005574558745138347, + -0.003938492853194475, + -0.008008268661797047, + -0.010144602507352829, + -0.008632858283817768, + 0.00027922523440793157, + -0.018188675865530968, + 0.03507247939705849, + -0.029216457158327103, + 0.021482689306139946, + -0.009508078917860985, + -0.01669284515082836, + -0.023853741586208344, + -0.007467223331332207, + 0.01688380166888237, + 0.04134223982691765, + 0.012969178147614002, + -0.014465009793639183, + -0.02517452836036682, + 0.010200298391282558, + 0.0262566190212965, + 0.004885322414338589, + -0.02749784104526043, + -0.021800950169563293, + 0.018570590764284134, + 0.012619090266525745, + 0.007765593938529491, + -0.0059515004977583885, + -0.01697928085923195, + -0.0029220434371382, + -0.006500502582639456, + -0.007837203331291676, + 0.00794063787907362, + 0.024028785526752472, + -0.018761547282338142, + 0.024617569521069527, + -0.020496075972914696, + -0.002363095758482814, + 0.01576988399028778, + -0.025938356295228004, + -0.017281629145145416, + 0.01995502971112728, + 0.001963278977200389, + -0.010685648769140244, + 9.659750503487885e-5, + 0.011751825921237469, + 0.013470441102981567, + -0.006253849249333143, + -0.0032621859572827816, + 0.007367766462266445, + 0.01909572258591652, + -0.009754732251167297, + 0.0024824440479278564, + -0.024808526039123535, + 0.024490265175700188, + -0.022564779967069626, + -0.0008717396412976086, + 0.028866367414593697, + 0.0026117379311472178, + 0.03720483556389809, + -0.007240461651235819, + 0.030171241611242294, + 0.015730101615190506, + 0.023901479318737984, + -0.005883869715034962, + 0.015372057445347309, + -0.004388038069009781, + -0.0019394094124436378, + -0.001891670050099492, + 0.03268551081418991, + -0.003136870451271534, + 0.013104439713060856, + 0.022453388199210167, + -0.032048989087343216, + 0.005995261482894421, + -0.019764073193073273, + -0.00027474964736029506, + -0.004252776503562927, + 0.03564535081386566, + -0.001369521371088922, + -0.004276646301150322, + 0.0002212915860582143, + 0.014823054894804955, + -0.013271527364850044, + -0.02005050890147686, + -0.018522851169109344, + 0.0242038294672966, + -0.002448628656566143, + 0.002375030657276511, + -0.017393020913004875, + -0.025508703663945198, + -0.006146435625851154, + 0.0014958316460251808, + 0.034181345254182816, + -0.009905906394124031, + -0.033322036266326904, + 0.006969938986003399, + 0.006564154755324125, + 0.010041167959570885, + 0.012356524355709553, + -0.02727505750954151, + -0.022517040371894836, + 0.009118207730352879, + 0.006313523277640343, + 0.018570590764284134, + 0.011497216299176216, + -0.004093645606189966, + -0.011544955894351006, + -0.003785329172387719, + 0.012977135367691517, + 0.0023989002220332623, + 0.03876431658864021, + 0.010407169349491596, + -0.024076523259282112, + -0.004511364735662937, + 0.006671568378806114, + 0.0153402304276824, + 0.008433944545686245, + 0.021625906229019165, + 0.035231608897447586, + 0.0052234758622944355, + -0.014075139537453651, + 0.01168021745979786, + 0.00042045401642099023, + -0.01055038720369339, + 0.019620856270194054, + 0.02097346819937229, + -0.024490265175700188, + 0.022532952949404716, + -0.018618330359458923, + -0.017377108335494995, + -0.009500122629106045, + -0.014512749388813972, + -0.021275818347930908, + 0.020305119454860687, + -0.0010999932419508696, + 0.01807728409767151, + 0.022914867848157883, + -0.020671119913458824, + -0.012436090037226677, + -0.015777841210365295, + 0.018793374300003052, + -0.00407176511362195, + -0.028882281854748726, + -0.020448336377739906, + 0.003136870451271534, + 0.006727264262735844, + -0.014035356231033802, + 0.002562009496614337, + 0.004992736037820578, + -0.017599891871213913, + 0.021880516782402992, + -0.021928254514932632, + -0.03469056263566017, + -0.011497216299176216, + -0.014019443653523922, + 0.004889300558716059, + -0.004598886705935001, + 0.020591555163264275, + -0.002273584483191371, + -0.01888885349035263, + 0.01483896840363741, + -0.0025958248879760504, + 0.01269069965928793, + -0.0004351238894741982, + -0.010327603667974472, + 0.007304114289581776, + -0.03064863570034504, + 0.023742349818348885, + -0.03917805850505829, + -0.0009304191917181015, + -0.01697928085923195, + 0.00020202180894557387, + 0.005076279863715172, + 0.016151798889040947, + 0.019445810467004776, + 0.021737297996878624, + 0.017249803990125656, + -0.004024025984108448, + -0.00026903089019469917, + -0.020464248955249786, + -0.03206489980220795, + 0.007873007096350193, + -0.005963435396552086, + -0.021530427038669586, + -0.014337705448269844, + -0.0037972640711814165, + 0.018443286418914795, + 0.012666829861700535, + 0.00305730476975441, + 0.0015157230664044619, + -0.008967033587396145, + 0.0029916632920503616, + 0.014472967013716698, + -0.004678451921790838, + -0.019175289198756218, + 0.023455912247300148, + 0.004960909485816956, + -0.0009244518005289137, + 0.0027211406268179417, + 0.007148961536586285, + 0.009372817352414131, + 0.004276646301150322, + -0.001435162965208292, + -0.00022191318566910923, + 0.03653648495674133, + -0.0016509843990206718, + -0.002466531004756689, + -0.03723666071891785, + 0.013756876811385155, + 0.005541738122701645, + -0.013637528754770756, + -0.017504412680864334, + 0.0178863275796175, + -0.00760248489677906, + -0.017408933490514755, + -0.015093578025698662, + 0.016215451061725616, + -0.0017027020221576095, + 0.00848168320953846, + 0.01210987102240324, + 0.010248037986457348, + -0.007208635564893484, + 0.023662783205509186, + -0.022612519562244415, + -0.007327983621507883, + 0.0016281092539429665, + 0.007586571853607893, + 0.01378074660897255, + -0.03351299464702606, + 0.030043937265872955, + 0.0047619957476854324, + 0.0030533266253769398, + -0.005609368439763784, + 0.004073754418641329, + 0.0019225017167627811, + 0.016470061615109444, + 0.022707996889948845, + -0.01312035322189331, + -0.01998685672879219, + -0.00836233515292406, + 0.0033318058121949434, + -0.022898955270648003, + -0.024776700884103775, + -0.0011218737345188856, + 0.013168091885745525, + -0.020591555163264275, + -0.002269606338813901, + 0.001502793631516397, + 0.006353306118398905, + -0.010773170739412308, + 0.02735462412238121, + -0.022437473759055138, + -0.006687481421977282, + 0.014075139537453651, + 0.016231365501880646, + -0.015165186487138271, + 0.01102778036147356, + -0.009667209349572659, + -0.011433564126491547, + 0.01104369293898344, + -0.013923964463174343, + 0.023567304015159607, + -0.01680423691868782, + -0.012444046325981617, + 0.020336944609880447, + -0.03481786698102951, + -0.0036719483323395252, + -0.010200298391282558, + 0.03615456819534302, + 0.0040618195198476315, + 0.00845781434327364, + -0.019238941371440887, + -0.030362199991941452, + -0.010279864072799683, + -0.007916768081486225, + -0.019366245716810226, + -0.0031289136968553066, + 0.017679456621408463, + 0.009038642048835754, + -0.012078044936060905, + -0.008839728310704231, + -0.008632858283817768, + 0.005112084094434977, + 0.004869409371167421, + -0.010868648998439312, + 0.006715329363942146, + 0.010104820132255554, + -0.014289965853095055, + -0.013367006555199623, + -0.011592695489525795, + -0.00558152049779892, + -0.023726435378193855, + -0.006607915740460157, + -0.007443353533744812, + 0.00852942280471325, + 0.02851627953350544, + 0.004598886705935001, + -0.00449545169249177, + -0.016390495002269745, + -0.006878438405692577, + 0.0017196096014231443, + 0.013016917742788792, + -0.005048431921750307, + 0.01260317675769329, + 0.009786558337509632, + 0.00901477225124836, + -0.0066437204368412495, + -0.01205417513847351, + -0.0019364256877452135, + -0.009945688769221306, + 0.004861452616751194, + 0.011887087486684322, + -0.006452762987464666, + -0.0052234758622944355, + -0.023806001991033554, + 0.07339122891426086, + 0.014823054894804955, + 0.011751825921237469, + 0.009086381644010544, + 0.009730862453579903, + -0.027227317914366722, + -0.011059606447815895, + 0.004252776503562927, + 0.015650536864995956, + -0.0028981738723814487, + -0.015356143936514854, + -0.01206213142722845, + 0.013565920293331146, + 0.017408933490514755, + -0.01672467030584812, + -0.024426613003015518, + -0.0010741343721747398, + 0.01791815273463726, + 0.017743108794093132, + 0.028007060289382935, + -0.0039544058963656425, + -0.005895804613828659, + 0.0006201136857271194, + 0.007371744606643915, + -0.02229425683617592, + 0.024808526039123535, + 0.008497596718370914, + 0.005597434006631374, + 0.03389490768313408, + 0.035486217588186264, + 0.0013744942843914032, + -0.009348947554826736, + -0.019589029252529144, + -0.017361195757985115, + 0.007690006867051125, + 0.009348947554826736, + 0.008258900605142117, + 0.01785450056195259, + -0.005720760207623243, + 0.00733991852030158, + -0.01060608308762312, + -0.0035705023910850286, + 0.01877746172249317, + 0.018697895109653473, + 0.00019878946477547288, + -0.017345281317830086, + 0.015300448052585125, + -0.003926557954400778, + -0.0031567616388201714, + 0.004901235457509756, + -0.023901479318737984, + -0.014552532695233822, + 0.01260317675769329, + 0.016470061615109444, + 0.017424847930669785, + -0.00034685590071603656, + -0.0039006993174552917, + -0.012531568296253681, + -0.014043312519788742, + 0.015857405960559845, + -0.026797665283083916, + -0.014902620576322079, + -0.004121493548154831, + -0.029136890545487404, + -0.02324904315173626, + -0.01885702647268772, + -0.006126544438302517, + -0.010924344882369041, + -0.00279076024889946, + -0.004706299863755703, + -0.016470061615109444, + -0.0030413917265832424, + -0.003894731868058443, + -0.030266720801591873, + -0.0013038798933848739, + 0.02315356396138668, + 0.011258520185947418, + 0.0027489885687828064, + 0.02129173092544079, + 0.011226694099605083, + 0.014592315070331097, + 0.010940258391201496, + -0.0017733164131641388, + -0.01911163702607155, + 0.001915539731271565, + -0.003184609580785036, + 0.013518180698156357, + -0.02232608199119568, + 0.014465009793639183, + -0.02232608199119568, + -0.02095755562186241, + -0.01210987102240324, + -0.008577162399888039, + -0.005927630700170994, + 0.0064885676838457584, + -0.009364861063659191, + -0.004165254533290863, + -0.01567440666258335, + 0.007821289822459221, + -0.015133360400795937, + 0.014878750778734684, + 0.026097487658262253, + -0.020639294758439064, + 0.002894195495173335, + -0.004578995052725077, + 0.0016957400366663933, + 0.024792613461613655, + -0.017599891871213913, + -0.014982186257839203, + 0.013303353451192379, + -0.007964507676661015, + -0.011465390212833881, + 0.02304217219352722, + 0.008911337703466415, + -0.020877990871667862, + 0.023694610223174095, + 0.006607915740460157, + -0.0002234050480183214, + -0.011751825921237469, + -0.014480923302471638, + -0.029041411355137825, + -0.017552152276039124, + -0.014138791710138321, + -0.011982565745711327, + 0.014926490373909473, + -0.0021701494697481394, + -0.018347807228565216, + -0.009301208890974522, + -0.0021263882517814636, + -0.008831772021949291, + 0.009866124019026756, + 0.017345281317830086, + 0.008799945935606956, + -0.01312830951064825, + 0.002158214570954442, + -0.003097087610512972, + -0.012316741049289703, + -0.0021701494697481394, + 0.02950289286673069, + -0.023885566741228104, + 0.035327088087797165, + 0.006584045942872763, + -0.0007210624753497541, + 0.007861072197556496, + 0.011735913343727589, + 0.012953265570104122, + -0.010319647379219532, + -0.021912341937422752, + 0.005637216381728649, + 0.0019970943685621023, + 0.05703255906701088, + -0.044715818017721176, + 0.015570971183478832, + -0.012030305340886116, + -0.00551786832511425, + 0.0050603668205440044, + -0.009372817352414131, + 0.014552532695233822, + -0.025747399777173996, + 0.004634690936654806, + 0.013168091885745525, + -0.006524371914565563, + -0.018602417781949043, + -0.010590169578790665, + -0.011656347662210464, + 0.0029916632920503616, + 0.012483828701078892, + 0.010383299551904202, + 0.019811812788248062, + 0.009818384423851967, + -0.012356524355709553, + 0.006747155450284481, + 0.02119625173509121, + -0.026161139830946922, + 0.011123258620500565, + -0.006464697886258364, + 0.007542810402810574, + 0.010351473465561867, + -0.005537759512662888, + 0.01104369293898344, + 0.006564154755324125, + -0.0011696129804477096, + 0.00407176511362195, + 0.0039026883896440268, + 0.00900681596249342, + -0.022501127794384956, + 0.021848689764738083, + -0.0052194977179169655, + 0.0001151213509729132, + -0.013446571305394173, + -0.018172763288021088, + 0.02334452047944069, + -0.004694365430623293, + -0.010948214679956436, + -0.003673937637358904, + -0.01581762358546257, + 0.01615975610911846, + 0.020384684205055237, + 0.00020985404262319207, + -0.00471425661817193, + -0.002649531466886401, + -0.001994110643863678, + 0.007833224721252918, + 0.0065363068133592606, + -0.0031667074654251337, + -0.01049469131976366, + -0.011887087486684322, + -0.007634310983121395, + 0.0021940190345048904, + -0.01108347624540329, + -0.015634622424840927, + -0.024585742503404617, + 0.010860692709684372, + 0.006206110119819641, + -0.011489260010421276, + 0.014457053504884243, + 0.006910264957696199, + 0.022548865526914597, + 0.017249803990125656, + 0.01807728409767151, + 0.00766613706946373, + 0.009078425355255604, + 0.00834642257541418, + 0.01319196168333292, + -0.0242038294672966, + -0.008171377703547478, + 0.0033298167400062084, + 0.0188729390501976, + 0.025620095431804657, + 0.008036117069423199, + 0.03141246363520622, + -0.005911717656999826, + -0.011727956123650074, + -0.0003376561508048326, + -0.001780278398655355, + 0.03975092992186546, + 0.024665309116244316, + -0.0020289206877350807, + 0.011409694328904152, + -0.003938492853194475, + 0.0004898252082057297, + 0.0003610285057220608, + -0.00948420912027359, + -0.013931921683251858, + -0.01689971424639225, + -0.01672467030584812, + -0.004992736037820578, + 0.006977895274758339, + 0.005470129195600748, + -3.1468782253796235e-5, + -0.011282389983534813, + -0.010176429525017738, + -0.015467535704374313, + 0.011258520185947418, + 0.01915937475860119, + -0.0012680753134191036, + -0.023455912247300148, + 0.009038642048835754, + -0.0012650917051360011, + -0.01265887264162302, + 0.007025634869933128, + 0.0036838832311332226, + -0.017679456621408463, + -0.006747155450284481, + 0.00739959254860878, + 0.03367212414741516, + -0.021514514461159706, + 0.015531187877058983, + 0.008768119849264622, + -0.0034849694930016994, + -0.01109938882291317, + -0.00038166582817211747, + -0.0016559571959078312, + 0.017663544043898582, + 0.004626734647899866, + 0.006703394465148449, + -0.004296537488698959, + -0.02323313057422638, + -0.017647631466388702, + -0.00498080113902688, + 0.00450340798124671, + -0.005752586759626865, + 0.00605095736682415, + -0.019573116675019264, + -0.007029613014310598, + -0.027863843366503716, + -0.0013118364149704576, + 0.02534957230091095, + -0.0061066532507538795, + 0.010868648998439312, + -0.002054779324680567, + -0.015125404112040997, + -0.003051337320357561, + -0.0058003258891403675, + -0.00445169024169445, + 0.0006539290770888329, + -0.0013376951683312654, + -0.010128689929842949, + 0.018109111115336418, + 0.009317121468484402, + -0.001476934878155589, + -0.011775695718824863, + -0.006794894579797983, + -0.009333034977316856, + 0.014433183707296848, + 0.007697963155806065, + 0.029884805902838707, + 0.02105303481221199, + -0.018252328038215637, + 0.02301034703850746, + 0.0064885676838457584, + -0.01002525445073843, + 0.0028345214668661356, + -0.016215451061725616, + -0.014377487823367119, + -0.008632858283817768, + 0.015618709847331047, + 0.02617705427110195, + -0.02122807875275612, + -0.0007489103591069579, + -0.020368771627545357, + -0.006301588378846645, + 0.016080189496278763, + 0.005557651165872812, + 0.015411839820444584, + -0.003542654449120164, + 0.012825960293412209, + -0.003654046216979623, + 0.0008244976052083075, + -0.014695750549435616, + 0.017186149954795837, + 0.002094562165439129, + -0.014990142546594143, + -0.007984398864209652, + 0.007761615794152021, + 0.012324698269367218, + -0.010582213290035725, + 0.012324698269367218, + -0.0012153631541877985, + -0.000208610828849487, + -0.020782511681318283, + -0.012857786379754543, + -0.01467188075184822, + -0.005012627225369215, + 0.00035729887895286083, + 0.020527902990579605, + 0.005466150585561991, + 0.008314596489071846, + 0.007845159620046616, + 0.009293251670897007, + -0.008179334923624992, + 0.006826721131801605, + 0.01807728409767151, + 0.007964507676661015, + -0.015069708228111267, + 0.003892742795869708, + 0.01777493581175804, + 0.018172763288021088, + -0.0069619822315871716, + 0.004658560734242201, + -0.004193102475255728, + 0.0020527902524918318, + -0.005438302643597126, + -0.008871554397046566, + 0.012181480415165424, + 0.008680597878992558, + 0.010287820361554623, + -0.0031249355524778366, + -0.01807728409767151, + 0.016016537323594093, + -0.020750686526298523, + -0.012284914962947369, + -0.029152803122997284, + -0.01783858798444271, + -0.006476632785052061, + 0.014465009793639183, + -0.0034571215510368347, + 0.013072613626718521, + -0.02539731189608574, + 0.005963435396552086, + 0.019573116675019264, + 0.0064885676838457584, + -0.00760248489677906, + -0.0053786286152899265, + 0.00852146651595831, + 0.02108485996723175, + 0.007168852724134922, + 0.024506177753210068, + -0.00029513833578675985, + -0.01007299404591322, + -0.01572214439511299, + 0.004630712792277336, + 0.008338465355336666, + -0.0049529531970620155, + 0.001092036603949964, + -0.00498080113902688, + -0.023424087092280388, + 0.024888092651963234, + -0.0009905906626954675, + -0.0008170383516699076, + -0.025636008009314537, + -0.00658802455291152, + 0.017090672627091408, + 0.001358581124804914, + 0.006778981536626816, + -0.01707475818693638, + 0.015873320400714874, + 0.007503028027713299, + 0.01271456852555275, + -0.005048431921750307, + 0.002470509149134159, + 0.0045312559232115746, + -0.0199391171336174, + -0.02229425683617592, + 0.031285159289836884, + 0.002848445437848568, + -0.013740964233875275, + -0.0010179412784054875, + -0.001683805137872696, + -0.0025779225397855043, + 0.007841181010007858, + -0.0019095722818747163, + 0.00556958606466651, + 0.005028540268540382, + -0.0004791335668414831, + -0.014886707067489624, + 0.03475421667098999, + -0.003540665376931429, + -0.00138046161737293, + 0.017361195757985115, + 0.004738126415759325, + -0.005291106645017862, + -0.0003692337195388973, + 0.010383299551904202, + -0.02097346819937229, + -0.0060748266987502575, + 0.019636768847703934, + 0.00034188307472504675, + -0.0027450101915746927, + 0.012619090266525745, + -0.018395546823740005, + -0.005744630005210638, + -0.014759402722120285, + 0.0028345214668661356, + 0.014894664287567139, + 0.0005261269398033619, + 0.0034670671448111534, + 0.012802091427147388, + 0.0021721385419368744, + -0.012499742209911346, + -0.01002525445073843, + 0.009691079147160053, + -0.013478397391736507, + -0.005501955281943083, + -0.0043721250258386135, + -0.012881656177341938, + 0.007857094518840313, + 0.005386585369706154, + 0.01912754960358143, + -0.036218222230672836, + 0.0042249285615980625, + -0.006977895274758339, + -0.00356055679731071, + -0.0019145451951771975, + -0.002092573093250394, + -0.003073217812925577, + -0.001256140531040728, + 0.014130835421383381, + -0.009834297001361847, + 0.01704293303191662, + -0.003805220592767, + 0.02211921289563179, + 0.03055315650999546, + -0.007164874579757452, + 0.008720380254089832, + 0.02103712223470211, + -0.017170237377285957, + 0.013939877972006798, + 0.007761615794152021, + -0.017090672627091408, + -0.0089033804833889, + 0.0006947063957341015, + -0.02110077440738678, + 0.009142077527940273, + 0.030028024688363075, + -0.0022974542807787657, + 0.004455668851733208, + 0.027100013568997383, + 0.0035068499855697155, + 0.008585118688642979, + -0.0003540665202308446, + 0.009309165179729462, + 0.016676930710673332, + -0.0016877833986654878, + 0.004392016213387251, + 0.0017335335724055767, + 0.013828486204147339, + 0.020798424258828163, + 0.012022349052131176, + -0.013748920522630215, + 0.005911717656999826, + 0.013382919132709503, + 0.005935587454587221, + -0.010399212129414082, + 0.019429897889494896, + 0.01430587936192751, + -0.011863217689096928, + 0.010208255611360073, + 0.024012871086597443, + 0.0020020671654492617, + 0.0027509776409715414, + -0.004423842299729586, + -0.016032449901103973, + 0.008712423965334892, + 0.026909057050943375, + 0.02224651724100113, + 0.0050683231092989445, + 0.008696510456502438, + 0.018156850710511208, + -0.0050723012536764145, + -0.006973917130380869, + -0.013032831251621246, + -0.0006822742871008813, + 0.0059196739457547665, + 0.01425813976675272, + 0.0035585674922913313, + 0.01260317675769329, + 0.006253849249333143, + -0.010160516016185284, + -0.0029936523642390966, + -0.006838656030595303, + -0.006345349829643965, + -0.004869409371167421, + -0.018204588443040848, + 0.02020964026451111, + 0.02199190855026245, + 0.018284155055880547, + 0.014146747998893261, + 0.021530427038669586, + -0.0059156958013772964, + 0.00530304154381156, + 0.017170237377285957, + 0.0034014256671071053, + -0.0026117379311472178, + 0.0026793687138706446, + -0.00765818078070879, + 0.015594840049743652, + 0.006285675335675478, + 0.0019762085285037756, + -0.0006335403886623681, + -0.012420176528394222, + -0.006878438405692577, + 0.029932545498013496, + -0.007304114289581776, + 0.016191581264138222, + -0.028739063069224358, + 0.0023531499318778515, + 0.017122497782111168, + -0.009921818971633911, + 0.01269865594804287, + -0.008847684599459171, + -0.01269865594804287, + -0.015069708228111267, + 0.0006603937363252044, + -0.018300067633390427, + 0.0011457434156909585, + 0.009197773411870003, + 0.01569031924009323, + 0.004455668851733208, + 0.009571731090545654, + 0.0003528233210090548, + 0.004089667461812496, + -0.019191201776266098, + -0.0018598438473418355, + 0.004201059229671955, + 0.003994188737124205, + -0.03147611767053604, + -0.010327603667974472, + 0.01484692469239235, + -0.02940741367638111, + -0.0003918601432815194, + -0.0056491512805223465, + -0.023551391437649727, + -0.017361195757985115, + -0.007304114289581776, + 0.00449545169249177, + 0.0023471827153116465, + 0.009913862682878971, + 0.02935967408120632, + -0.02304217219352722, + 0.03618639335036278, + -0.0010045146336778998, + -0.003212457522749901, + 0.001900621224194765, + 0.024713048711419106, + 0.0006758095696568489, + 0.007244439795613289, + 0.0032621859572827816, + -0.02098938263952732, + -0.0010293788509443402, + 0.0005972386570647359, + -0.0005882874829694629, + 0.0030016088858246803, + -0.008028159849345684, + 0.012674786150455475, + 0.002472498221322894, + -0.013390875421464443, + -0.007037569768726826, + -0.008919293992221355, + -0.011903000995516777, + 0.01109143253415823, + -0.003952417057007551, + 0.026606706902384758, + -0.01425018347799778, + 0.00894316378980875, + -0.010311690159142017, + 0.006015152670443058, + -0.007638289127498865, + 0.002048811875283718, + 0.008016224950551987, + -0.004897257313132286, + 0.00942851323634386, + 0.008807902224361897, + -0.00022526986140292138, + -0.008688554167747498, + -0.009118207730352879, + 0.005024562124162912, + 0.01625523343682289, + 0.022660257294774055, + -0.01258726418018341, + 0.011592695489525795, + 0.012985091656446457, + -0.00530304154381156, + -0.01998685672879219, + -0.006759090349078178, + 0.019413985311985016, + -0.018538763746619225, + -0.0034670671448111534, + -0.010216211900115013, + -0.013748920522630215, + 0.015173143707215786, + -0.0023989002220332623, + -0.010041167959570885, + 0.026924969628453255, + -0.004853496327996254, + -0.005187671631574631, + 0.003093109233304858, + -0.005732695106416941, + -0.0020508011803030968, + -0.014870794489979744, + -0.019652681425213814, + 0.006436849944293499, + -0.0016310929786413908, + 0.008322552777826786, + 0.008119660429656506, + -0.007467223331332207, + 0.01689971424639225, + -0.015292491763830185, + 0.03231951221823692, + -0.0007056466420181096, + -0.01116304099559784, + -0.02215103805065155, + -0.00733991852030158, + 0.006046978756785393, + -0.019620856270194054, + -0.015475491993129253, + 0.025890618562698364, + 0.015777841210365295, + -0.005056388210505247, + -0.0013575865887105465, + -0.003051337320357561, + -0.0040478953160345554, + -0.028102539479732513, + 0.014568445272743702, + 0.0094364695250988, + 0.0026873252354562283, + 0.0017206042539328337, + -0.019843637943267822, + 0.005505933426320553, + -0.010343516245484352, + -0.007367766462266445, + 0.010852735489606857, + 0.0027649016119539738, + -0.014035356231033802, + -1.471651194151491e-5, + 0.003007576335221529, + 0.005557651165872812, + -0.008378248661756516, + 0.000995066249743104, + -0.00047813900164328516, + -0.005084236152470112, + -0.005497977137565613, + -0.01269069965928793, + -0.02216695249080658, + 0.006146435625851154, + -0.005812260787934065, + -0.0012501730816438794, + -0.015053794719278812, + -0.02533365972340107, + -0.01109938882291317, + -0.025636008009314537, + 0.012555438093841076, + -0.006261806003749371, + -0.003514806507155299, + 0.004435777198523283, + -0.03158750757575035, + -0.0010273896623402834, + 0.0009264409309253097, + 0.01008095033466816, + -0.006277719046920538, + 0.018681982532143593, + -0.007558723911643028, + 0.010653821751475334, + 0.01775902323424816, + -0.007308092433959246, + -0.01990729197859764, + -0.007817311212420464, + 0.0002772360749077052, + -0.00249437871389091, + 0.00018735192134045064, + 0.0007384674390777946, + 0.003522763028740883, + 0.0089033804833889, + 0.011600651778280735, + -0.012006435543298721, + -0.029232369735836983, + -0.0040697758086025715, + 0.001240227371454239, + -0.010208255611360073, + 0.007853115908801556, + 0.011314216069877148, + -0.018156850710511208, + 0.004479538183659315, + 0.013024874031543732, + -0.0210052952170372, + -0.00552184646949172, + 0.009850210510194302, + 0.022819388657808304, + -0.003516795579344034, + 0.018109111115336418, + -0.03586813434958458, + -0.0252700075507164, + -0.016629192978143692, + 0.005696890875697136, + 0.019366245716810226, + -0.010892518796026707, + -0.011958696879446507, + 0.010375343263149261, + -0.012444046325981617, + 0.02218286506831646, + -0.01372505072504282, + -0.013303353451192379, + 0.015069708228111267, + 0.0020199695136398077, + 0.0030394026543945074, + 0.005450237542390823, + 0.010884562507271767, + -0.02441069856286049, + -0.008823815733194351, + -0.0010552376043051481, + 0.024665309116244316, + 0.006584045942872763, + -0.016613278537988663, + 0.008000312373042107, + -0.007264331448823214, + 0.002311378251761198, + -0.000953294278588146, + -0.0063731977716088295, + -0.018506938591599464, + 0.015435709618031979, + -0.004435777198523283, + 0.004964888095855713, + -0.022485213354229927, + -0.026049748063087463, + 0.0033934691455215216, + -0.007005743216723204, + -0.0100889066234231, + 0.017377108335494995, + 0.007546789012849331, + 0.01430587936192751, + -0.007976442575454712, + -0.014974229037761688, + -0.03147611767053604, + 0.0032920229714363813, + -0.01378870289772749, + 0.001627114717848599, + 0.02227834425866604, + 0.01911163702607155, + -0.006659633480012417, + 0.015029924921691418, + 0.004567060619592667, + 0.004559103865176439, + -0.00444771209731698, + -0.005593455396592617, + 0.02020964026451111, + -0.0029956414364278316, + 0.01061403937637806, + -0.013327223248779774, + -0.01678832247853279, + -0.0044914730824530125, + 0.010399212129414082, + 0.0019364256877452135, + -0.022596605122089386, + -0.021562254056334496, + -0.011767739430069923, + 0.023487739264965057, + -0.011322172358632088, + 0.024792613461613655, + -0.015531187877058983, + 0.008982946164906025, + 0.0015187066746875644, + -0.0010771180968731642, + -0.001104966038838029, + 0.017393020913004875, + 0.008823815733194351, + -0.015555057674646378, + -0.01002525445073843, + -0.006516415625810623, + 0.009794514626264572, + 0.007172830868512392, + -0.01570623181760311, + 0.014433183707296848, + 0.028086625039577484, + -0.024538004770874977, + -0.03612274304032326, + 0.00841803103685379, + -0.0012810047483071685, + -0.017329368740320206, + -0.008282769471406937, + -0.015921059995889664, + 0.002430726308375597, + 0.009706992655992508, + -0.009285295382142067, + 0.013971704058349133, + 0.01001729816198349, + -0.017552152276039124, + -0.0004050381830893457, + 0.0027131838724017143, + 0.020734772086143494, + 0.004582973662763834, + 0.007682050112634897, + -0.017281629145145416, + 0.007773550692945719, + -0.013581832870841026, + 0.00552184646949172, + -0.0004105083062313497, + -0.018315980210900307, + -0.003673937637358904, + -0.018522851169109344, + -0.012125784531235695, + 0.013470441102981567, + 0.0033536863047629595, + 0.010343516245484352, + 0.013343136757612228, + -0.004316429141908884, + 0.014274053275585175, + -0.008974989876151085, + -0.0025043245404958725, + -0.0010020281188189983, + -0.0023969111498445272, + 0.007463245186954737, + 0.01002525445073843, + -0.003926557954400778, + -0.005446259398013353, + 0.01675649732351303, + 0.007284222636371851, + -0.013550006784498692, + -0.008179334923624992, + 0.002627650974318385, + -0.02752966806292534, + -0.022676171734929085, + -0.009356903843581676, + 0.015292491763830185, + 0.0016062287613749504, + -0.0008876527426764369, + 0.006333414930850267, + 0.004575016908347607, + -0.011974609456956387, + -0.009882036596536636, + 0.0043721250258386135, + -0.008056008256971836, + 0.001996099716052413, + -0.012261045165359974, + 0.018379634246230125, + -0.033226557075977325, + 0.008147508837282658, + 0.03338569030165672, + -0.015053794719278812, + 0.0033099253196269274, + 0.01677240990102291, + 0.02730688452720642, + 0.0005639205919578671, + 0.00948420912027359, + 0.007033591158688068, + 0.0017007128335535526, + -0.012213306501507759, + 0.02316947653889656, + 0.014289965853095055, + -0.01522883865982294, + 0.004730169661343098, + -0.0002309886331204325, + 0.010765213519334793, + -0.0010751290246844292, + -0.004300516098737717, + -0.0043721250258386135, + -0.0066835032775998116, + -0.03456325829029083, + -0.01152108609676361, + 0.004022036679089069, + 0.01007299404591322, + -0.015141316689550877, + -0.015435709618031979, + 0.005143910180777311, + 0.024474352598190308, + 0.0005629259976558387, + 0.004758017603307962, + 0.00423288531601429, + -0.008585118688642979, + 0.01000934187322855, + -0.02130764350295067, + -0.005824195686727762, + 0.020543815568089485, + 0.000262068904703483, + 0.023917393758893013, + 0.006635763682425022, + 0.005143910180777311, + -0.022660257294774055, + -0.014457053504884243, + -0.02105303481221199, + -0.02014598809182644, + 0.02959837019443512, + -0.022532952949404716, + 0.026097487658262253, + 0.004212993662804365, + -0.002072681672871113, + 0.00498477928340435, + 0.012197392992675304, + 0.0021900406572967768, + -0.013796660117805004, + -0.0038808078970760107, + 0.01699519343674183, + 0.005708825308829546, + 0.0007692990475334227, + -0.02757740579545498, + -0.002955858828499913, + 0.013645485043525696, + -0.0011457434156909585, + -0.015117447823286057, + -0.005935587454587221, + -0.01472757663577795, + -0.004169232677668333, + 0.0038688729982823133, + -0.003743557259440422, + -0.012969178147614002, + 0.0012223251396790147, + -0.004392016213387251, + 0.0009329056483693421, + -0.006544263567775488, + -0.010359429754316807, + -0.019795900210738182, + -0.00017243338515982032, + -0.004260733257979155, + 0.01796589232981205, + -0.027784276753664017, + 0.022485213354229927, + -0.020877990871667862, + -0.008091812953352928, + -0.017727196216583252, + 0.000305829948047176, + 0.005565607454627752, + 0.013438615016639233, + 0.01265887264162302, + 0.02223060466349125, + 0.023408174514770508, + 0.028309408575296402, + 0.007164874579757452, + -0.014282009564340115, + 0.005728716962039471, + -0.014106965623795986, + 0.017408933490514755, + -0.007873007096350193, + -0.0023929327726364136, + 0.004205037374049425, + -0.006838656030595303, + 0.010375343263149261, + 0.01216556690633297, + 0.013526136986911297, + -0.0012183468788862228, + 0.006261806003749371, + -0.006436849944293499, + -0.010303733870387077, + -0.03478604182600975, + -0.0018966429634019732, + 0.024983571842312813, + -0.014146747998893261, + -0.0200186837464571, + 0.01793406717479229, + 0.011727956123650074, + -0.01109143253415823, + -0.012086001224815845, + -0.0055258250795304775, + 0.023408174514770508, + 0.001836968818679452, + -0.009913862682878971, + 0.014958316460251808, + -0.00949216540902853, + -0.001836968818679452, + 0.010343516245484352, + -0.028930019587278366, + 0.015650536864995956, + 0.030330372974276543, + 0.0021940190345048904, + -0.01312035322189331, + -0.006671568378806114, + -0.017202064394950867, + 0.01783858798444271, + 0.026829490438103676, + 0.008219117298722267, + 0.01370913814753294, + 0.004602864850312471, + -0.0007379701128229499, + 0.02118033915758133, + 0.009945688769221306, + -0.011863217689096928, + 0.006727264262735844, + 0.008919293992221355, + 0.0025560420472174883, + -0.007948595099151134, + -0.0380641408264637, + -0.019509464502334595, + 0.003719687694683671, + -0.0024545961059629917, + 0.00477393064647913, + -0.005139932036399841, + -0.027688797563314438, + 0.0030632722191512585, + -0.009508078917860985, + 0.027100013568997383, + 0.003029456827789545, + 0.02861175872385502, + 0.017440760508179665, + -0.007252396550029516, + 0.018729722127318382, + 0.006818764377385378, + -0.014767359010875225, + -0.013884182088077068, + 0.02539731189608574, + 0.0016609301092103124, + 0.00893520750105381, + -0.004043917171657085, + -0.02428339421749115, + -0.018602417781949043, + -0.003604317782446742, + 0.012818004004657269, + 0.00605891365557909, + 0.007081330753862858, + 0.0019244907889515162, + -0.005688934121280909, + 0.005155845079571009, + 0.02620887942612171, + -0.005000692326575518, + 0.01211782731115818, + 0.003741568187251687, + -0.018491026014089584, + -0.009356903843581676, + -0.005386585369706154, + -0.01479122880846262, + 0.004551147110760212, + -0.0004537720524240285, + 0.004185146186500788, + 0.008147508837282658, + 0.011186910793185234, + 0.010637909173965454, + 0.005458194296807051, + -0.014624141156673431, + 0.003811188042163849, + 0.005100149195641279, + -0.0026634554378688335, + -0.013271527364850044, + -0.01779084838926792, + 0.027800189331173897, + -0.018825199455022812, + -0.016080189496278763, + -0.0021979971788823605, + 0.005824195686727762, + -0.021498601883649826, + 0.014162661507725716, + 0.0009672182495705783, + -0.010995954275131226, + -0.013494310900568962, + 0.004415886010974646, + 0.0001480664504924789, + -0.00024192889395635575, + 0.015921059995889664, + 0.0013187984004616737, + -0.010438995435833931, + 0.020766599103808403, + 0.01157678198069334, + -0.002116442658007145, + 0.007021656259894371, + -0.013160135596990585, + 0.019175289198756218, + 0.0006623828667216003, + -0.01615975610911846, + 0.009842254221439362, + -0.009444426745176315, + -0.00028419806039892137, + -0.007017678115516901, + -0.008179334923624992, + -0.019764073193073273, + -0.02116442658007145, + -0.009603557176887989, + -0.013677312061190605, + -0.005454215686768293, + 0.003874840447679162, + 0.001292939530685544, + 0.00046869058860465884, + 0.012961221858859062, + 0.00834642257541418, + 0.009516035206615925, + -0.009189817123115063, + 0.007976442575454712, + -0.0026097488589584827, + -0.009882036596536636, + -0.008107725530862808, + 0.008211161009967327, + 0.00893520750105381, + -0.0033298167400062084, + -0.005314976442605257, + -0.007976442575454712, + 0.019191201776266098, + 0.005207562819123268, + 0.010741344653069973, + -0.004972844384610653, + 0.019413985311985016, + -0.011338085867464542, + 0.004921127110719681, + -0.023678695783019066, + 0.02005050890147686, + -0.016295017674565315, + 0.0423288531601429, + 0.01997094415128231, + 0.023917393758893013, + 0.004845539573580027, + 0.014926490373909473, + 0.0006216055480763316, + 0.013319266960024834, + 0.009333034977316856, + -0.0037117311730980873, + -0.00525530194863677, + 0.011258520185947418, + -0.008585118688642979, + 0.01569031924009323, + -0.008799945935606956, + 0.009691079147160053, + 0.018713807687163353, + -0.003473034594208002, + 0.0031050441320985556, + 0.005728716962039471, + 0.031285159289836884, + 0.007204656954854727, + 0.006584045942872763, + -0.0030811745673418045, + 0.009850210510194302, + 0.006448784843087196, + 0.02950289286673069, + -0.0178067609667778, + 0.005696890875697136, + 0.017393020913004875, + 0.004614799749106169, + 0.01479122880846262, + -0.029296021908521652, + -0.008967033587396145, + -0.005983326584100723, + 0.018681982532143593, + 0.01777493581175804, + 0.011425607837736607, + -0.003648078767582774, + 0.008103747852146626, + -0.0021721385419368744, + -0.023471826687455177, + -0.003182620508596301, + -0.011115302331745625, + -0.012276958674192429, + -0.008095790632069111, + -0.01707475818693638, + -0.021785037592053413, + 0.002498357091099024, + 0.015292491763830185, + -0.004081710707396269, + 0.033258385956287384, + -0.004109558649361134, + -0.04506590589880943, + 0.0017673489637672901, + -0.011807521805167198, + -0.011250563897192478, + 0.0024864221923053265, + 0.003850970882922411, + -0.0017196096014231443, + -0.009078425355255604, + -0.006743177305907011, + -0.00852146651595831, + 0.019684508442878723, + -0.004925105255097151, + -0.010224168188869953, + -0.008632858283817768, + 0.010677691549062729, + 0.0031547725666314363, + 0.01484692469239235, + 0.02955063059926033, + -0.009181859903037548, + 0.0019423930207267404, + -0.005263258703052998, + -0.00557356420904398, + -0.010964127257466316, + 0.015555057674646378, + -0.011330128647387028, + 0.006615872494876385, + 0.019795900210738182, + -0.00030011116177774966, + -0.002056768396869302, + 0.023599131032824516, + -0.0007504022214561701, + -0.019207114353775978, + 0.013939877972006798, + -0.015873320400714874, + 0.015539144165813923, + -0.008664684370160103, + -0.00503649702295661, + 0.02016190066933632, + 0.007857094518840313, + -0.0026813577860593796, + -0.0073797013610601425, + -0.0027967276982963085, + -0.002160203643143177, + 0.008063964545726776, + -0.007252396550029516, + 0.013080569915473461, + 0.008147508837282658, + 0.01591310277581215, + -0.024888092651963234, + -0.0005251324037089944, + 0.01696336641907692, + -0.0031965444795787334, + -0.010255994275212288, + -0.003972308244556189, + 0.012770264409482479, + -0.012666829861700535, + -0.005943543743342161, + -0.02439478598535061, + 0.024012871086597443, + -0.012284914962947369, + -0.003361642826348543, + 0.003226381493732333, + 0.017202064394950867, + -0.01000934187322855, + -0.013096483424305916, + -0.017297541722655296, + -0.008171377703547478, + 0.004563082009553909, + 0.00530304154381156, + -0.012786177918314934, + 0.016072234138846397, + 0.019207114353775978, + 0.01528453454375267, + -0.011767739430069923, + 0.016072234138846397, + -0.01116304099559784, + 0.018220502883195877, + 0.007061439100652933, + -0.0262566190212965, + 0.00841007474809885, + 0.0059156958013772964, + -0.010096863843500614, + 0.001762376050464809, + -0.03399038687348366, + 0.0018757570069283247, + -0.00852942280471325, + 0.0046466258354485035, + 0.007451310288161039, + 0.00847372692078352, + -0.0001125727649196051, + -0.0032184249721467495, + -0.01313626579940319, + 0.004960909485816956, + 0.005561629310250282, + 0.058464739471673965, + 0.03055315650999546, + 0.006782960146665573, + -0.004658560734242201, + 0.009786558337509632, + -0.03351299464702606, + 0.01114712841808796, + 0.007176809012889862, + -0.026113402098417282, + -0.00658802455291152, + -0.004618777893483639, + -0.0007757637649774551, + 0.014695750549435616, + 0.020448336377739906, + -0.0015177121385931969, + 0.008839728310704231, + -0.010001384653151035, + -0.00497682299464941, + 0.010574257001280785, + 0.004141384735703468, + -0.007423462346196175, + 0.009134121239185333, + -0.011966653168201447, + -0.0006250865408219397, + 0.014544575475156307, + -0.000845383561681956, + -0.03179438039660454, + -0.02429930679500103, + -0.0050643449649214745, + -0.007081330753862858, + 0.02619296684861183, + -0.02227834425866604, + -0.04656173661351204, + 0.013908051885664463, + -0.01903207041323185, + 0.03386308252811432, + -0.01204621884971857, + 0.009364861063659191, + 0.00712111359462142, + -0.014608228579163551, + -0.026797665283083916, + -0.010900475084781647, + 0.009691079147160053, + -0.023567304015159607, + -0.008656728081405163, + 0.0031547725666314363, + -0.0017196096014231443, + 0.007503028027713299, + 0.002201975556090474, + -0.011831391602754593, + -0.004885322414338589, + 0.0024844331201165915, + -0.012221262790262699, + -0.02431522123515606, + -0.002671412192285061, + -0.0063731977716088295, + 0.024506177753210068, + -0.014170617796480656, + -0.0026853361632674932, + -0.012181480415165424, + -0.0011536999372765422, + 0.008680597878992558, + 0.004559103865176439, + 0.018650155514478683, + -0.0017295553116127849, + 0.03351299464702606, + 0.007081330753862858, + 0.008704466745257378, + 0.0089033804833889, + -0.017743108794093132, + 0.006790916435420513, + -0.022517040371894836, + 0.011353998444974422, + -0.015053794719278812, + -0.02329678274691105, + -0.004014079924672842, + -0.009205729700624943, + -0.02226242981851101, + -0.013740964233875275, + 0.017536239698529243, + 0.0007494076853618026, + -0.009563774801790714, + -0.00449942983686924, + -0.0047182347625494, + -0.013454528525471687, + -0.007192722521722317, + -0.00034486677031964064, + 0.0024148132652044296, + 0.009038642048835754, + 0.009364861063659191, + -0.016056319698691368, + -0.0061066532507538795, + -0.01520496979355812, + 0.008704466745257378, + 0.005279171746224165, + -0.015117447823286057, + -0.016501886770129204, + 0.0019453767454251647, + 0.0052274540066719055, + 0.01312830951064825, + -0.006775003392249346, + 0.007936660200357437, + 0.005505933426320553, + -0.003942470997571945, + -0.006639741826802492, + -0.042806245386600494, + 0.011115302331745625, + 0.0036898506805300713, + -0.001692756311967969, + 0.01108347624540329, + -0.019493550062179565, + 0.012436090037226677, + -0.005175736732780933, + 0.024935832247138023, + 0.011831391602754593, + 0.028086625039577484, + 0.005426367744803429, + -0.012929395772516727, + -0.007148961536586285, + 0.01479918509721756, + -0.007976442575454712, + 0.015531187877058983, + 0.024713048711419106, + 0.018570590764284134, + -0.00019381660968065262, + -0.0017723217606544495, + -0.007371744606643915, + 0.0339585617184639, + 0.007455288432538509, + -0.012515654787421227, + 0.006739198695868254, + -0.0005594450049102306, + -0.007745702750980854, + -0.0010940257925540209, + -0.006210088264197111, + 0.006233958061784506, + 0.003071228740736842, + -0.016183625906705856, + 0.022548865526914597, + -0.009380773641169071, + -0.018602417781949043, + 0.021864602342247963, + 0.008020203560590744, + 0.00899885967373848, + 0.010526517406105995, + 0.00027599287568591535, + -0.009317121468484402, + 0.010972084477543831, + 0.0040478953160345554, + -0.009038642048835754, + 0.0008921283297240734, + 0.008807902224361897, + 0.001146737951785326, + 0.024028785526752472, + -0.008378248661756516, + 0.00739163625985384, + -0.010701561346650124, + 0.02410835027694702, + -0.009022729471325874, + 0.009157990105450153, + -0.006699416320770979, + 0.022405648604035378, + -0.0020846163388341665, + 0.012627046555280685, + 0.009937732480466366, + -0.013048743829131126, + 0.00025610148441046476, + 0.019700421020388603, + -0.008585118688642979, + -0.005442281253635883, + -0.016438234597444534, + -0.004861452616751194, + 0.007148961536586285, + 0.005000692326575518, + 0.0032840664498507977, + 0.008227073587477207, + -0.007156917825341225, + 0.00021258910419419408, + -0.024601656943559647, + -0.0053746504709124565, + 0.005418411456048489, + 0.019223026931285858, + 0.0008871554746292531, + -0.0061106313951313496, + -0.0061106313951313496, + 0.008799945935606956, + -0.002180095063522458, + 0.009269381873309612, + 0.01484692469239235, + -0.002645553322508931, + 0.0011676239082589746, + 0.00846577063202858, + -0.008147508837282658, + -0.013756876811385155, + -0.0029001629445701838, + 0.002098540309816599, + 0.0007200678810477257, + -0.005637216381728649, + -0.03803231567144394, + 0.0201778132468462, + 0.004031982272863388, + -0.0005877902149222791, + -0.01572214439511299, + -0.008577162399888039 + ], + "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac": [ + -0.02378707192838192, + -0.011502782814204693, + -0.006333450321108103, + 0.008417464792728424, + -0.04926740378141403, + -0.027027063071727753, + 0.030055396258831024, + 0.033295389264822006, + 0.004074411001056433, + 0.015955736860632896, + 0.014229911379516125, + 0.01133996993303299, + 0.009874646551907063, + -0.011510923504829407, + -0.04314561188220978, + 0.022859033197164536, + -0.0342559888958931, + 0.040801096707582474, + 0.008067415095865726, + 0.0003828664484899491, + 0.06584183126688004, + -0.014930009841918945, + -0.052719052881002426, + 0.011820269748568535, + -0.004343053791671991, + -0.014498554170131683, + 0.009695552289485931, + -0.012805292382836342, + -0.04054059460759163, + -0.017616435885429382, + 0.009239673614501953, + 0.03288835287094116, + 0.009068719111382961, + -0.030918309465050697, + -0.0023974308278411627, + -0.0450342521071434, + -0.006211339961737394, + 0.002419817727059126, + -0.0012170318514108658, + 0.0063904351554811, + -0.02925761044025421, + 0.030706651508808136, + 0.03140674903988838, + 0.016550006344914436, + -0.030364742502570152, + 0.021214615553617477, + 0.011494642123579979, + -0.022859033197164536, + -0.00481521338224411, + 0.012373835779726505, + 0.010053741745650768, + 0.025301238521933556, + -0.006089230068027973, + 0.0016332243103533983, + 0.0030853182543069124, + -0.027287565171718597, + 0.019212009385228157, + 0.08791936188936234, + 0.005971190053969622, + -0.03839145600795746, + 0.0012038033455610275, + 0.005576367024332285, + 0.00084764847997576, + -0.008987312205135822, + -0.017600154504179955, + -0.027303846552968025, + -0.030250772833824158, + -0.012544790282845497, + -0.03357217088341713, + -0.0037426783237606287, + 0.010835247114300728, + 0.03705638274550438, + -0.004554711282253265, + -0.005108277779072523, + -0.0288994200527668, + -0.0044610933400690556, + 0.04418762028217316, + 0.019016632810235023, + 0.02445460855960846, + 0.011014342308044434, + -0.04073597118258476, + -0.0001441155036445707, + 0.02119833417236805, + 0.033832672983407974, + 0.06746996939182281, + 0.006378224119544029, + -0.01011886727064848, + -0.05206780135631561, + 0.011567908339202404, + -0.01584990695118904, + 0.0032847649417817593, + 0.04366661608219147, + -0.015752218663692474, + -0.00815289281308651, + -0.021475117653608322, + -0.008889623917639256, + 0.04884409159421921, + 0.0020453461911529303, + 0.00870238896459341, + -0.006321239285171032, + 0.025464052334427834, + 0.04747645556926727, + -0.0423966683447361, + 0.014522976242005825, + -0.020612206310033798, + -0.007900531403720379, + -0.0014643050963059068, + -0.011429516598582268, + -0.0185933168977499, + 0.03783788904547691, + -0.008352339267730713, + -0.035753872245550156, + -3.6792065657209605e-5, + 0.021768182516098022, + -0.02518726885318756, + -0.02942042425274849, + -0.004497726447880268, + -0.03432111442089081, + 0.02022145316004753, + -0.037154071033000946, + 0.043015360832214355, + 0.03246503695845604, + -0.0030018764082342386, + 0.0029978060629218817, + -0.019912106916308403, + 0.02735269069671631, + -0.007200432941317558, + -0.0007825230131857097, + 0.011779566295444965, + 0.010704996064305305, + -0.02466626465320587, + -0.030625244602560997, + 0.00018074856780003756, + 0.006101441103965044, + 0.01485674362629652, + 0.02000979520380497, + 0.005515311844646931, + 0.056952208280563354, + -0.019830700010061264, + 0.02036798559129238, + -0.041452351957559586, + -0.062129683792591095, + -0.014124082401394844, + 0.002837027655914426, + 0.02289159595966339, + 0.005275161936879158, + -0.030576400458812714, + 0.050211723893880844, + -0.00010544726683292538, + 0.020921552553772926, + -0.03432111442089081, + -0.01151906419545412, + 0.0048599871806800365, + 0.014653227292001247, + -0.0023323053028434515, + -0.015426591970026493, + -0.002002607798203826, + 0.05711502209305763, + 0.002482907846570015, + 0.013489109463989735, + -0.015068401582539082, + -0.08700760453939438, + -0.009418768808245659, + 0.008140681311488152, + 0.04233154281973839, + 0.019439948722720146, + 0.03253016248345375, + 0.029908863827586174, + -0.03191147372126579, + 0.01508468296378851, + 0.02868776209652424, + -0.005918275564908981, + 0.019228290766477585, + -0.013635641895234585, + 0.02593621239066124, + -0.002875695703551173, + 0.02696193754673004, + 0.028704043477773666, + 0.01696518063545227, + -0.018202563747763634, + -0.016688397154211998, + -0.00997233483940363, + 0.00870238896459341, + -0.013171622529625893, + -0.002513435436412692, + 0.024991892278194427, + 0.017762968316674232, + 0.00505943363532424, + 0.004501796793192625, + -0.021230896934866905, + 0.001886602956801653, + -0.014433428645133972, + 0.010786402970552444, + 0.029062233865261078, + -0.01890266314148903, + -0.03163468837738037, + 0.027580630034208298, + 0.00874309241771698, + 0.033604733645915985, + 0.025284957140684128, + -0.017079150304198265, + -0.03594924882054329, + -0.06668846309185028, + 0.04285254701972008, + -0.04851846396923065, + 0.05385874956846237, + -0.02000979520380497, + 0.019277134910225868, + 0.05174217373132706, + -0.04047546908259392, + 0.03507005795836449, + -0.05239342898130417, + 0.014246192760765553, + 0.005832798313349485, + -0.02075873874127865, + 0.013529812917113304, + -0.009638567455112934, + 0.02282647229731083, + 0.015467295423150063, + -0.029550675302743912, + -0.01873984932899475, + -0.0023933604825288057, + -0.024845359846949577, + -0.018837537616491318, + -0.040052153170108795, + -0.029892582446336746, + -0.01875613071024418, + 0.049462780356407166, + -0.04031265527009964, + -0.011372532695531845, + 0.03757738694548607, + 0.017225682735443115, + 0.014995135366916656, + -0.01978185586631298, + -0.01022469624876976, + 0.010395650751888752, + 0.01615111157298088, + 0.019960951060056686, + 0.020693613216280937, + -0.015206793323159218, + 0.017062868922948837, + 0.028704043477773666, + -0.008857062086462975, + 0.026180433109402657, + 0.015434732660651207, + 0.028704043477773666, + -0.0001910516293719411, + 0.024568576365709305, + 0.010240977630019188, + -0.04125697538256645, + 0.016183674335479736, + 0.028785450384020805, + 0.020335422828793526, + -0.015589405782520771, + -0.008669826202094555, + 0.04542500525712967, + 0.03956371173262596, + -0.05304468050599098, + 0.004509937483817339, + -0.021947277709841728, + 0.00035208449116908014, + -0.008181384764611721, + -0.0008588419295847416, + -0.01104690507054329, + 0.0426897332072258, + -0.04155004024505615, + 0.022842753678560257, + -0.016493020579218864, + -0.00087308807997033, + 0.05092810466885567, + -0.01963532343506813, + -0.009842083789408207, + 0.018495628610253334, + -0.022338030859827995, + 0.021214615553617477, + -0.013757752254605293, + -0.020351704210042953, + -0.008315706625580788, + -0.022435719147324562, + -0.00919082947075367, + 0.013977549970149994, + 0.020465673878788948, + -0.01821884512901306, + 0.012544790282845497, + -0.012324991635978222, + 0.029208766296505928, + -0.016281362622976303, + 0.04099647328257561, + -0.02652234025299549, + -0.007513849064707756, + -0.002078926656395197, + -0.008055204525589943, + 0.028997108340263367, + -0.00757490424439311, + 0.013098357245326042, + -0.005397271830588579, + -0.015744078904390335, + -0.027092188596725464, + -0.019212009385228157, + 0.02030286006629467, + 0.0006476929993368685, + -0.020319141447544098, + -0.013578657060861588, + -0.00731847295537591, + 0.00609330041334033, + -0.01322860736399889, + 0.01852819137275219, + 0.012935543432831764, + -0.02756434865295887, + 0.02741781622171402, + 0.053012117743492126, + -0.019960951060056686, + -0.0185933168977499, + -0.020628487691283226, + -0.0011946450686082244, + -0.01011886727064848, + 0.02066105045378208, + 0.0183002520352602, + -0.021979840472340584, + -0.025138424709439278, + 0.004379686899483204, + -0.0019924319349229336, + -0.06948886066675186, + 0.03156956285238266, + 0.025073299184441566, + -0.036046937108039856, + 0.05685451999306679, + -0.012618056498467922, + -0.02572455443441868, + -0.04581575468182564, + -0.03207428753376007, + -0.029078515246510506, + -0.028915701434016228, + -0.018283970654010773, + -0.01651744358241558, + -0.07691316306591034, + -0.0368935689330101, + -0.02385219745337963, + -0.020856427028775215, + -0.025740835815668106, + -0.005218177102506161, + -0.004137501586228609, + 0.0004243330331519246, + -0.005100137088447809, + 0.020433111116290092, + 0.0012282253010198474, + -0.011356251314282417, + 0.0028858715668320656, + -0.018495628610253334, + 0.02053079940378666, + 0.0010384457418695092, + -0.01667211577296257, + -0.003734537633135915, + 0.00717194052413106, + 0.04874640330672264, + 0.0012902980670332909, + -0.017648998647928238, + -0.031895190477371216, + 0.01374961156398058, + -0.006561389192938805, + 0.015239356085658073, + -0.031081123277544975, + -0.04408993199467659, + 0.000188507663551718, + -0.031537000089883804, + -0.009321080520749092, + -0.005364709068089724, + -0.027222439646720886, + -0.026880530640482903, + 0.022403156384825706, + -0.03887989744544029, + 0.003272554138675332, + -0.0014459885424003005, + -0.00859655998647213, + -0.02942042425274849, + -0.02675027959048748, + 0.02712475135922432, + -0.014172926545143127, + -0.016932617872953415, + 0.022354312241077423, + -0.013871721923351288, + 0.041680291295051575, + 0.015955736860632896, + -0.024780234321951866, + 0.01903291419148445, + 0.0122680077329278, + 0.008087767288088799, + -0.017209401354193687, + 0.0007362228934653103, + 0.01426247414201498, + -0.04067084565758705, + 0.02912735939025879, + -0.011567908339202404, + 0.003760994877666235, + -0.0011600471334531903, + 0.0028227814473211765, + -0.01586618833243847, + -0.010582885704934597, + 0.01911432109773159, + -0.024845359846949577, + 0.008580278605222702, + 0.008938468061387539, + -0.020270297303795815, + 0.029371580109000206, + 0.024991892278194427, + -0.01267504133284092, + -0.005254810210317373, + -0.011812129057943821, + 0.021507680416107178, + 0.01381473708897829, + -0.003999109845608473, + -0.008099977858364582, + 0.017323371022939682, + -0.0017217542044818401, + 0.05737552419304848, + 0.014799759723246098, + 0.022338030859827995, + 0.034483928233385086, + -0.02933901734650135, + -0.01600458100438118, + 0.03150443732738495, + 0.05122116953134537, + 0.0019089898560196161, + -0.0014602347509935498, + -0.018137438222765923, + 0.020579643547534943, + 0.015157949179410934, + 0.03238363191485405, + -0.02748294174671173, + 0.012495946139097214, + -0.020319141447544098, + 0.0354282483458519, + -0.0012027857592329383, + -0.007692944258451462, + 0.0016199956880882382, + -0.026782842352986336, + 0.0014673578552901745, + -0.009304799139499664, + -0.006508475169539452, + -0.010582885704934597, + 8.267879456980154e-5, + 0.03682844340801239, + -0.012154038064181805, + -0.020563362166285515, + -0.03008795902132988, + -0.01570337451994419, + -0.04721595346927643, + -0.006427068263292313, + 0.02372194640338421, + 0.011022482998669147, + 0.008971030823886395, + 0.03822864219546318, + -0.06665590405464172, + -0.0006695710471831262, + -0.018332814797759056, + -0.01455553900450468, + 0.01763271726667881, + -0.018283970654010773, + 0.010444494895637035, + -0.034939806908369064, + -0.046206507831811905, + -0.006642796099185944, + 0.023982448503375053, + -0.010061882436275482, + 0.014205489307641983, + -0.05314236879348755, + -0.0029286101926118135, + 0.020335422828793526, + 0.01085966918617487, + 0.005783954169601202, + 0.007123096380382776, + 0.0011346074752509594, + -0.02986001968383789, + -0.012064490467309952, + -0.012088912539184093, + -0.02044939249753952, + -0.007196362596005201, + 0.0033966994378715754, + 0.00948389433324337, + -0.02051451802253723, + -0.021068084985017776, + -0.010892231948673725, + -0.028476104140281677, + 0.010444494895637035, + 0.0009443190647289157, + -0.008873343467712402, + -0.02660374715924263, + -0.04392711818218231, + 0.004550640936940908, + -0.008800077252089977, + 0.072028748691082, + -0.009557160548865795, + 0.020954115316271782, + 0.01041193213313818, + -0.01673724129796028, + -0.008889623917639256, + 0.01155976764857769, + -0.025529177859425545, + -0.024112699553370476, + -0.007753999438136816, + 0.017990905791521072, + -0.02666887268424034, + -0.004005215596407652, + 0.020433111116290092, + 0.015255637466907501, + 0.015654530376195908, + -0.003608357161283493, + 0.0030893885996192694, + 0.003394664265215397, + 0.0034618249628692865, + -0.022712502628564835, + 0.009019874967634678, + -0.015687093138694763, + 0.014091519638895988, + -0.01366820465773344, + -0.0020260121673345566, + -0.017290808260440826, + 0.000947880616877228, + 0.008246510289609432, + -0.019374823197722435, + 0.008832640014588833, + -0.000473940308438614, + -0.007697014603763819, + 0.007127166725695133, + -0.01659885048866272, + -0.0033641366753727198, + -0.01911432109773159, + -0.03432111442089081, + 0.021670494228601456, + -0.031146248802542686, + -0.023380037397146225, + 0.009793239645659924, + -0.015385888516902924, + 0.013741470873355865, + 0.032872073352336884, + -0.012284288182854652, + -0.015141667798161507, + 0.00997233483940363, + 0.01584990695118904, + 0.01815371960401535, + -0.03809839114546776, + 0.028801731765270233, + 0.02705962583422661, + -0.006341591011732817, + -0.017616435885429382, + 0.03914039582014084, + -0.023542851209640503, + 0.024649983271956444, + 0.012088912539184093, + 0.021621650084853172, + -0.03200916200876236, + 0.0001787133951438591, + -0.009475753642618656, + 0.00017197190027218312, + 0.013277451507747173, + -0.051025792956352234, + 0.04422018304467201, + -0.017176838591694832, + -0.028183039277791977, + -0.019814418628811836, + -0.0213448666036129, + 0.016216237097978592, + -0.002193913795053959, + 0.011136452667415142, + -0.037088945508003235, + -0.006072948686778545, + -0.02207752875983715, + 0.029143640771508217, + -0.009956053458154202, + 0.01911432109773159, + 0.029029671102762222, + 0.009166407398879528, + 0.05884084850549698, + -0.007725507020950317, + 0.008433746173977852, + 0.010273540392518044, + 0.007375457789748907, + 0.005779883824288845, + -0.027955099940299988, + -0.02000979520380497, + 0.019993513822555542, + -0.04438299685716629, + 0.004607625771313906, + -0.004290139302611351, + 0.010395650751888752, + 0.02950183115899563, + -0.007363246753811836, + -0.025464052334427834, + -6.722422403981909e-5, + 0.013847299851477146, + -0.005796165205538273, + 0.03910783305764198, + 0.008474449627101421, + -0.005262950900942087, + -0.024340638890862465, + 0.016867492347955704, + 0.007456864230334759, + 0.025545459240674973, + 0.0026009478606283665, + -0.0027230579871684313, + -0.004570992663502693, + 0.02364053949713707, + -0.010428213514387608, + -0.024975610896945, + -0.004562851972877979, + 0.02238687500357628, + -0.0054542566649615765, + 0.006952142342925072, + -0.0046239071525633335, + 0.03783788904547691, + -0.006479982752352953, + -0.004904760513454676, + 0.03803326562047005, + 0.0010888162069022655, + 0.02683168649673462, + -0.01238197647035122, + 0.025024455040693283, + 0.0258548054844141, + 0.008979171514511108, + -0.015402169898152351, + 0.009679270908236504, + -0.045229628682136536, + 0.07430814206600189, + -0.011136452667415142, + 0.022354312241077423, + 0.011445797979831696, + -0.012121475301682949, + -0.023103253915905952, + -0.009198970161378384, + -0.020840145647525787, + 0.009939772076904774, + 0.008791936561465263, + 0.015255637466907501, + -0.03774020075798035, + 0.034190863370895386, + -0.006146214436739683, + -0.01063172984868288, + 0.023005565628409386, + -0.02800394408404827, + -0.007595255970954895, + -0.02652234025299549, + -0.005482749082148075, + -0.0086372634395957, + 0.03083690255880356, + -0.022549688816070557, + 0.02881801314651966, + -0.026050182059407234, + 0.016419755294919014, + 0.04255948215723038, + 0.004005215596407652, + -0.02378707192838192, + -0.012088912539184093, + 0.0007555570336990058, + 0.015304481610655785, + 0.0070254080928862095, + -0.03461417928338051, + 0.01725824549794197, + 0.002564314752817154, + 0.007611537352204323, + 0.0031077051535248756, + 0.027368972077965736, + -0.011494642123579979, + 0.0062764654867351055, + 0.028736606240272522, + 0.018121156841516495, + 0.014368303120136261, + 0.030250772833824158, + 0.0005820587393827736, + 0.01440900657325983, + 0.03887989744544029, + -0.01381473708897829, + -0.016484880819916725, + 0.03406061232089996, + 0.0005795147735625505, + -0.001814354443922639, + -4.2420582758495584e-5, + -0.0024055715184658766, + -0.011649315245449543, + 0.004076446406543255, + 0.004746017511934042, + -0.0001913060259539634, + -0.0188863817602396, + -0.04343867674469948, + 0.0017553344368934631, + 0.02053079940378666, + -0.017307089641690254, + -0.004416320007294416, + 0.015011416748166084, + -0.021230896934866905, + -0.024063855409622192, + 0.012390117160975933, + 0.0022854963317513466, + -0.004452952649444342, + -0.0029794895090162754, + 0.00707832258194685, + 0.02414526231586933, + 0.00422501377761364, + -0.007127166725695133, + 0.02505701780319214, + -0.032204534858465195, + -0.0493650920689106, + -0.013847299851477146, + 0.0037671003956347704, + -0.04060572013258934, + 0.012324991635978222, + 0.014905587770044804, + -0.024210387840867043, + -0.015825485810637474, + 0.003919738344848156, + -0.0013106497935950756, + 0.000947880616877228, + 0.01440900657325983, + 0.0009402487194165587, + 0.030413586646318436, + 0.020351704210042953, + 0.027743443846702576, + -0.002572455443441868, + 0.0051571219228208065, + 0.008010431192815304, + 0.01199936494231224, + 0.006138073746114969, + 0.01911432109773159, + -0.004363405518233776, + -0.03585156053304672, + -0.053012117743492126, + 0.025529177859425545, + 0.0037548893596976995, + 0.01026539970189333, + 0.019358541816473007, + -0.0018163896165788174, + 0.03832633048295975, + 0.009549019858241081, + -0.019960951060056686, + -0.004725665785372257, + -0.016273222863674164, + -0.0016963145462796092, + -0.03340935707092285, + -0.003565618535503745, + 0.027743443846702576, + -0.0351351834833622, + -0.000487932120449841, + -0.009638567455112934, + 0.022549688816070557, + -0.0028736605308949947, + 0.013090216554701328, + 0.015507998876273632, + 0.015214934013783932, + -0.002828886965289712, + -0.010729418136179447, + -0.002039240673184395, + 0.023510288447141647, + -0.04102903604507446, + 0.04128953814506531, + 0.023152098059654236, + -0.0029062232933938503, + 0.006866665091365576, + 0.01815371960401535, + 0.011673737317323685, + -0.02303812839090824, + 0.027141032740473747, + -0.012007505632936954, + 0.01523121539503336, + -0.012007505632936954, + 3.200623541488312e-5, + 0.011274844408035278, + -0.0024605209473520517, + -0.0141566451638937, + 0.025838524103164673, + 0.03380011022090912, + -0.023168379440903664, + 0.032106850296258926, + 0.012699463404715061, + 0.021002959460020065, + 0.004117149859666824, + -0.010802684351801872, + -0.006211339961737394, + 0.009272236377000809, + -0.011234140954911709, + -0.04379686713218689, + -0.01514980848878622, + -0.024063855409622192, + -0.04529475420713425, + 0.003079212736338377, + -0.019098039716482162, + 0.027385253459215164, + -0.025512896478176117, + 0.026066463440656662, + 0.0005510224145837128, + -0.02608274482190609, + -0.013489109463989735, + 0.0021409993059933186, + 0.008132540620863438, + -0.017372215166687965, + 0.0175675917416811, + -0.0025012244004756212, + -0.019586479291319847, + 0.02051451802253723, + -0.02416154369711876, + -4.184819044894539e-5, + 0.02443832717835903, + 0.026050182059407234, + -0.03334423154592514, + 0.04425274580717087, + 0.04112672433257103, + -0.025447770953178406, + -0.03251388296484947, + 0.011331829242408276, + 0.0009957071160897613, + -0.0023831846192479134, + 0.0063619427382946014, + -0.019065476953983307, + -0.03757738694548607, + -0.009011734277009964, + 0.02430807612836361, + -0.012911121360957623, + -0.0007102745003066957, + -0.011396954767405987, + -0.0006838172557763755, + 0.02466626465320587, + -0.0012231373693794012, + 0.010998060926795006, + 0.01326931081712246, + 0.03966140002012253, + 0.008800077252089977, + -0.027434097602963448, + -0.024877922609448433, + 0.016932617872953415, + 4.595033169607632e-5, + 0.008042993023991585, + 0.026424651965498924, + 0.010680573992431164, + -0.017746686935424805, + -0.0147427748888731, + 0.04128953814506531, + 0.0034150159917771816, + 0.018495628610253334, + -0.029436705633997917, + -0.0077906325459480286, + -0.03082062117755413, + 0.03510262072086334, + -0.02207752875983715, + -0.040052153170108795, + -0.01185283251106739, + -0.02253340743482113, + -0.007595255970954895, + -0.029143640771508217, + 0.007086463272571564, + -0.0036958695854991674, + 0.03326282650232315, + 0.029387861490249634, + 0.019619042053818703, + -0.005975260399281979, + -0.0009488982032053173, + 0.02756434865295887, + -0.04728107899427414, + 0.022403156384825706, + -0.01986326277256012, + -0.005344357341527939, + -0.008645404130220413, + -0.004823354072868824, + 0.028410978615283966, + 0.006797469221055508, + -0.04096391052007675, + -0.005682196002453566, + -0.0033885587472468615, + -0.009597864001989365, + -0.025219831615686417, + -0.006345661357045174, + 0.0114050954580307, + 0.00487219775095582, + 0.0003920246963389218, + -0.004310491029173136, + 0.0057473210617899895, + 0.023103253915905952, + -0.010363087989389896, + -0.016338348388671875, + -0.02950183115899563, + -0.012072631157934666, + -0.053012117743492126, + 0.0020555220544338226, + 0.013733330182731152, + 0.017600154504179955, + 0.021068084985017776, + 0.005779883824288845, + -0.05320749431848526, + 0.00242795841768384, + 0.03261157125234604, + -0.019000351428985596, + -0.0258548054844141, + -0.012162178754806519, + 0.014083378948271275, + 0.004790791310369968, + -0.00796565692871809, + -0.03282322734594345, + 0.0008135593961924314, + -0.011755144223570824, + -0.010208414867520332, + -0.026408370584249496, + -0.0022468280512839556, + -0.006256113760173321, + -0.0005034502828493714, + -0.0374796986579895, + -0.04050803184509277, + 0.020498236641287804, + 0.0035167743917554617, + -0.044448122382164, + 0.019146883860230446, + 0.024242950603365898, + 0.006268324796110392, + 0.028557511046528816, + 0.017974624410271645, + 0.026033900678157806, + -0.00683410232886672, + -0.016476739197969437, + 0.039531148970127106, + 0.019895825535058975, + 0.0027413745410740376, + -0.009117563255131245, + -0.021377429366111755, + -0.005226317793130875, + 0.018804974853992462, + 0.002629440277814865, + 0.003321398049592972, + -0.002875695703551173, + -0.009866505861282349, + -0.011226000264286995, + 0.008091837167739868, + 0.0029489619191735983, + 0.0060648079961538315, + 0.026506058871746063, + 0.0017878971993923187, + 0.003726396942511201, + 0.016102267429232597, + 0.005051292944699526, + 0.03251388296484947, + -0.006366013083606958, + -0.026050182059407234, + -0.009923490695655346, + -0.015947595238685608, + -0.022549688816070557, + -0.032872073352336884, + -0.0015385887818410993, + 0.005385060794651508, + -0.009606004692614079, + 0.0020178714767098427, + -0.014400865882635117, + -0.013114637695252895, + 0.03445136547088623, + 0.015589405782520771, + 0.016265081241726875, + -0.00737138744443655, + 0.009752536192536354, + 0.007949375547468662, + -0.003233885858207941, + 0.016476739197969437, + 0.02600133791565895, + -0.0068870168179273605, + 0.015735937282443047, + 0.019733011722564697, + -0.011738862842321396, + 0.020205171778798103, + -0.00422501377761364, + 0.0024381340481340885, + 0.004892549477517605, + -0.018283970654010773, + 0.008059274405241013, + -0.03332795202732086, + 0.00012141063780291006, + -0.005881642457097769, + -0.00974439550191164, + -0.012463383376598358, + -0.01688377372920513, + -0.021084366366267204, + 0.00540948286652565, + 0.014148504473268986, + -0.02007492072880268, + -0.023217223584651947, + -0.014718352816998959, + -0.009198970161378384, + -0.001541641540825367, + 0.037447135895490646, + 0.008734951727092266, + -0.00047750186058692634, + -0.011364392004907131, + -0.021475117653608322, + 0.007123096380382776, + 0.007688873913139105, + 0.016110409051179886, + -0.019684167578816414, + 0.00904429703950882, + 0.004237224813550711, + -0.03979165107011795, + -0.016688397154211998, + 0.0054542566649615765, + 0.014506694860756397, + 0.014889306388795376, + -0.019439948722720146, + -0.016436036676168442, + -0.005275161936879158, + -0.03695869445800781, + 0.01449041347950697, + 0.006988774985074997, + -0.01860959827899933, + 0.05043966323137283, + -0.004803002346307039, + 0.04721595346927643, + -0.005303653888404369, + -0.003999109845608473, + 0.011974942870438099, + 0.015507998876273632, + -0.010387510061264038, + -0.027531785890460014, + -0.004530289210379124, + -0.00012249182327650487, + 0.03090202808380127, + 0.03562362119555473, + -0.0127808703109622, + -0.03428855165839195, + -0.014986994676291943, + 0.03682844340801239, + -0.018479347229003906, + 0.0036144626792520285, + 0.01129926647990942, + -0.009752536192536354, + -0.005755461752414703, + 0.003547301981598139, + 0.0026864248793572187, + 0.0028227814473211765, + 0.016468599438667297, + 0.0016637517837807536, + -0.019456230103969574, + 0.003225745167583227, + 0.005511241499334574, + -0.02051451802253723, + -0.019358541816473007, + -0.020140046253800392, + -0.0077132959850132465, + -0.07925767451524734, + -0.01875613071024418, + -0.006789328530430794, + 0.04200591892004013, + 0.0018001082353293896, + -0.020319141447544098, + 0.007937164977192879, + 0.006858524400740862, + -0.010135148651897907, + -0.005918275564908981, + 0.02357541397213936, + -0.030560119077563286, + 0.012577353045344353, + 0.03653537854552269, + -0.011478360742330551, + -0.006541037932038307, + -0.0020606101024895906, + -0.0031667251605540514, + -0.0007158711669035256, + -0.026766560971736908, + -0.0028777308762073517, + 0.0147427748888731, + 0.03966140002012253, + -0.015613827854394913, + 0.0023017777130007744, + 0.03705638274550438, + -0.007460934575647116, + 0.00170852558221668, + -0.02762947417795658, + -0.01875613071024418, + 0.017388496547937393, + 0.0086372634395957, + -0.003476071171462536, + -0.011022482998669147, + 0.004257576540112495, + -0.000255413877312094, + 0.01696518063545227, + -0.008572137914597988, + 0.028329571709036827, + -0.003539161290973425, + 0.0228101909160614, + 0.012088912539184093, + -0.031374186277389526, + -0.026994500309228897, + 0.0016434000572189689, + -0.027075907215476036, + -0.0004795370332431048, + -0.01963532343506813, + -0.000628358859103173, + 0.017681561410427094, + 0.031178811565041542, + 0.006785258185118437, + 0.01688377372920513, + -0.0255617406219244, + 0.018170000985264778, + 0.006581740919500589, + 0.008580278605222702, + -0.011234140954911709, + 0.011812129057943821, + -0.007245206739753485, + 0.08153706789016724, + 0.011877254582941532, + 0.0045425002463161945, + 0.013179763220250607, + -0.020986678078770638, + 0.01637091115117073, + 0.010949216783046722, + 0.017909498885273933, + 0.011014342308044434, + -0.01459624245762825, + -0.006304957903921604, + -0.0147427748888731, + 0.00023239101574290544, + 0.04096391052007675, + 0.00452214851975441, + 0.01478347834199667, + 0.015507998876273632, + 0.005629281513392925, + 0.004302350338548422, + -0.013570516370236874, + -0.015394029207527637, + 0.0023241646122187376, + 0.013065794482827187, + -0.02401501126587391, + -0.007249277085065842, + -0.01214589737355709, + 0.006121792830526829, + -0.018430503085255623, + -0.0037080803886055946, + 0.010444494895637035, + 0.02127974107861519, + 0.004400038626044989, + 0.02867148071527481, + 0.019537635147571564, + -0.006565459538251162, + 0.033604733645915985, + -0.005405412521213293, + -3.297612056485377e-5, + -0.004652399569749832, + -0.012072631157934666, + -0.0018418292747810483, + -0.014392725192010403, + 0.012251726351678371, + -0.014286896213889122, + 0.006056667305529118, + 0.0065736002288758755, + 0.012154038064181805, + 0.03166725113987923, + -0.026864249259233475, + -0.01926085352897644, + -0.004990237765014172, + 0.0061991289258003235, + -0.019684167578816414, + 0.007534200791269541, + -0.005934556946158409, + 0.005755461752414703, + -0.006532897241413593, + -0.03666562959551811, + -0.00989092793315649, + -0.00948389433324337, + 0.0010888162069022655, + 0.033246543258428574, + 0.022435719147324562, + -0.012219163589179516, + -0.024275513365864754, + -0.0013737400295212865, + -0.014474132098257542, + -0.0032522024121135473, + -0.009288517758250237, + 0.02334747463464737, + -0.005792094860225916, + -0.007228925358504057, + -0.008059274405241013, + 0.0072614881210029125, + -0.006532897241413593, + -0.004953604657202959, + 0.0286063551902771, + -0.014213629998266697, + -0.001104080001823604, + -0.059915415942668915, + -0.00958972331136465, + 0.004261646885424852, + 0.0020463638938963413, + -0.0008089802577160299, + -0.010468916967511177, + -0.01629764400422573, + 0.005405412521213293, + 0.01552428025752306, + -0.0020524694118648767, + -0.02201240323483944, + -0.009581582620739937, + -0.002491048537194729, + 0.008026712574064732, + -0.019472509622573853, + -0.02245200052857399, + 0.002399466000497341, + -0.01994466967880726, + 0.015760360285639763, + 0.007053900510072708, + -0.013961268588900566, + -0.008425605483353138, + 0.003321398049592972, + -0.0062031992711126804, + -0.01673724129796028, + 0.013847299851477146, + -0.006960283033549786, + -0.030511274933815002, + 0.0006420962745323777, + -0.022061247378587723, + -0.026131588965654373, + -0.008938468061387539, + 0.004039813298732042, + -0.0013951093424111605, + -0.020579643547534943, + -0.012373835779726505, + -0.010249118320643902, + -0.013432124629616737, + -0.007863898761570454, + 0.013692626729607582, + -0.003343784948810935, + -0.011364392004907131, + 0.007257417775690556, + -0.0009387223399244249, + 0.00836862064898014, + 0.007395809516310692, + 0.007232995703816414, + 0.011063186451792717, + 0.0076359594240784645, + -0.012129615992307663, + -0.0011651350650936365, + 0.03966140002012253, + 0.013684486038982868, + -0.018984070047736168, + -2.5073935830732808e-5, + 0.004163958597928286, + -0.00615028478205204, + 0.03334423154592514, + 0.020921552553772926, + -0.031243937090039253, + -0.0175675917416811, + -0.012373835779726505, + -0.00629681721329689, + 0.013261170126497746, + 0.007330683991312981, + -0.015735937282443047, + 0.00407848134636879, + -0.048127710819244385, + 0.02696193754673004, + 0.01592317409813404, + -0.016354629769921303, + 0.009451331570744514, + 0.0004660540143959224, + -0.010289821773767471, + -0.01838165894150734, + 0.009036156348884106, + 0.0021654213778674603, + 0.0016047318931668997, + -0.025154706090688705, + -0.002865519840270281, + -0.015605687163770199, + 0.013163481839001179, + 0.0036795882042497396, + 0.0030893885996192694, + -0.022256623953580856, + -0.007888320833444595, + 0.0030486853793263435, + 0.010973638854920864, + -0.05503100901842117, + -0.03096715360879898, + -0.000248672382440418, + -0.00252971681766212, + -7.428372191498056e-5, + -0.013139059767127037, + -0.013179763220250607, + 0.007204503286629915, + -0.017014024779200554, + 0.04106159880757332, + -0.02912735939025879, + 0.030706651508808136, + -0.012577353045344353, + -0.019472509622573853, + -0.031455595046281815, + -0.008344198577105999, + 0.019684167578816414, + 0.047834645956754684, + 0.011250422336161137, + -0.019619042053818703, + -0.01860959827899933, + 0.0030324039980769157, + 0.029208766296505928, + 0.009964194148778915, + -0.01719311997294426, + -0.01992838829755783, + 0.013985690660774708, + 0.008840780705213547, + 0.007273699156939983, + 0.0005176964914426208, + -0.016354629769921303, + -0.00481521338224411, + -0.009329221211373806, + 0.0009951983811333776, + 0.00306700193323195, + 0.01600458100438118, + -0.01963532343506813, + 0.023949885740876198, + -0.016997743397951126, + -0.01129926647990942, + 0.010615448467433453, + -0.01755131036043167, + -0.013440265320241451, + 0.018772412091493607, + 0.0019873438868671656, + -0.019244572147727013, + -0.0029672784730792046, + 0.014319458976387978, + 0.011991224251687527, + -0.009475753642618656, + -0.002389290137216449, + 0.012211022898554802, + 0.01616739295423031, + -0.012194741517305374, + 0.0007092569139786065, + -0.027987662702798843, + 0.029241329059004784, + -0.010802684351801872, + -0.006614303681999445, + 0.03165097162127495, + 0.0011763285147026181, + 0.037968140095472336, + -0.005096066743135452, + 0.022419437766075134, + 0.017095431685447693, + 0.028476104140281677, + -0.012023787014186382, + 0.016208097338676453, + -0.02127974107861519, + -0.007424301467835903, + 0.003207428613677621, + 0.023070691153407097, + -0.0014510764740407467, + 0.01178770698606968, + 0.01628950424492359, + -0.035753872245550156, + 0.010957357473671436, + -0.013920566067099571, + -0.0002938277320936322, + -0.006492193788290024, + 0.026994500309228897, + -0.006663147825747728, + -0.009207110852003098, + -0.002653862116858363, + 0.010354947298765182, + -0.012601775117218494, + -0.01779552921652794, + -0.013220466673374176, + 0.0185933168977499, + 0.012243585661053658, + -0.0032359210308641195, + -0.01965160481631756, + -0.021768182516098022, + -0.008686107583343983, + -0.002134893788024783, + 0.02852494828402996, + -0.010257259011268616, + -0.038196079432964325, + 0.003126021707430482, + 0.011022482998669147, + 0.006614303681999445, + 0.018577035516500473, + -0.026033900678157806, + -0.019391104578971863, + 0.021898433566093445, + 0.010615448467433453, + 0.017844373360276222, + 0.015027698129415512, + -0.0030812479089945555, + -0.008482590317726135, + -0.004986167419701815, + 0.011795847676694393, + 3.129074684693478e-5, + 0.03669819235801697, + 0.022956721484661102, + -0.018772412091493607, + -0.0014592171646654606, + 0.012715744785964489, + 0.007969727739691734, + -0.001512131653726101, + 0.019016632810235023, + 0.03614462539553642, + 0.004514007829129696, + -0.01673724129796028, + 0.01208077184855938, + 0.013717048801481724, + -0.00967113021761179, + 0.017681561410427094, + 0.026636309921741486, + -0.013944988138973713, + 0.022142654284834862, + -0.029290173202753067, + -0.022614814341068268, + -0.006764906458556652, + -0.01252850890159607, + -0.01434388104826212, + 0.01704658754169941, + 0.004052024334669113, + 0.020709894597530365, + 0.020937833935022354, + -0.02815047651529312, + -0.009255954995751381, + -0.01748618483543396, + 0.01777924783527851, + -0.00011276116129010916, + -0.01651744358241558, + -0.016720959916710854, + -0.006227621342986822, + 0.009988616220653057, + -0.008661685511469841, + 0.005177473649382591, + 0.015735937282443047, + -0.013920566067099571, + 0.014376443810760975, + -0.01244710199534893, + -0.02504073642194271, + -0.01341584324836731, + -0.014392725192010403, + 0.007705155294388533, + -0.004819283727556467, + 0.015011416748166084, + -0.008026712574064732, + -0.020058639347553253, + 0.018039749935269356, + -0.007241136394441128, + 0.01831653341650963, + -0.00204839906655252, + -0.010346806608140469, + 0.014042675495147705, + -0.02512214332818985, + 0.019960951060056686, + -0.03881477192044258, + 0.0010369193041697145, + -0.017502466216683388, + 0.004452952649444342, + 0.00020504341227933764, + 0.02075873874127865, + 0.01155976764857769, + 0.02986001968383789, + 0.014270614832639694, + 0.003647025441750884, + -0.0016627341974526644, + -0.01771412417292595, + -0.026766560971736908, + 0.011690018698573112, + 0.005881642457097769, + -0.030576400458812714, + -0.013065794482827187, + -0.007872039452195168, + 0.017225682735443115, + 0.013831018470227718, + 0.0010532006854191422, + 0.010127007961273193, + -0.01422177068889141, + 0.004229084122925997, + 0.005629281513392925, + -0.013261170126497746, + -0.019293416291475296, + 0.014148504473268986, + 0.008824499323964119, + 0.00041720992885529995, + 0.0011559767881408334, + 0.008580278605222702, + 0.014710212126374245, + -0.004400038626044989, + -0.00319521757774055, + 0.00233434047549963, + 0.03474443033337593, + -0.011356251314282417, + 0.0022549687419086695, + -0.03578643500804901, + 0.010680573992431164, + -0.0012068561045452952, + -0.018707286566495895, + -0.014067097567021847, + 0.01911432109773159, + -0.016566287726163864, + -0.015166089870035648, + -0.004986167419701815, + 0.016354629769921303, + -0.0030405446887016296, + 0.00668756989762187, + 0.01792578026652336, + 0.004579133354127407, + -0.017844373360276222, + 0.03257900848984718, + -0.018853818997740746, + -0.005055363290011883, + 0.0015019557904452085, + 0.00550310080870986, + 0.01419734861701727, + -0.034353677183389664, + 0.027385253459215164, + 0.009060578420758247, + -0.007367317099124193, + -0.006113652139902115, + 0.009312939830124378, + -0.0026558972895145416, + 0.008547715842723846, + 0.02066105045378208, + -0.02572455443441868, + -0.024780234321951866, + -0.014604383148252964, + 0.0006329379975795746, + -0.029452987015247345, + -0.023021847009658813, + -0.004347124136984348, + 0.02066105045378208, + -0.02429179474711418, + -0.0023139887489378452, + 0.002452380256727338, + 0.0026477565988898277, + -0.015117245726287365, + 0.028345853090286255, + -0.032790664583444595, + -0.0038586831651628017, + 0.016411613672971725, + 0.01675352267920971, + -0.01957019791007042, + 0.014628805220127106, + -0.013171622529625893, + -0.01370890811085701, + 0.0074812863022089005, + -0.0147427748888731, + 0.0213448666036129, + -0.016834929585456848, + -0.01178770698606968, + 0.011429516598582268, + -0.027971381321549416, + -0.00910942256450653, + -0.009996756911277771, + 0.02748294174671173, + 0.004281998611986637, + 0.0043267724104225636, + -0.019667886197566986, + -0.033165138214826584, + -0.014693930745124817, + 0.00023620696447324008, + -0.02259853295981884, + 0.0007168887532316148, + 0.022728784009814262, + 0.007583044935017824, + -0.010721277445554733, + -0.007737718056887388, + -0.005543804261833429, + -0.003569688880816102, + 0.006207269616425037, + -0.010884091258049011, + 0.003565618535503745, + 0.004204662051051855, + -0.01485674362629652, + -0.008360479958355427, + -0.011364392004907131, + -0.005849079694598913, + -0.01638719253242016, + -0.010192133486270905, + -0.007135307416319847, + 0.016395332291722298, + 0.03059268184006214, + 0.0004797914298251271, + -0.002808535238727927, + -0.011958661489188671, + -0.005625211168080568, + 0.0023709735833108425, + 0.007664451841264963, + -0.0037162210792303085, + 0.01238197647035122, + 0.00971183367073536, + 0.006154355127364397, + -0.012789011001586914, + -0.0076400297693908215, + -0.008177314884960651, + -0.007444653194397688, + 0.007680733222514391, + 0.004233154468238354, + -0.006089230068027973, + 0.002065697917714715, + -0.021540243178606033, + 0.08388158679008484, + 0.014930009841918945, + 0.009817661717534065, + 0.00836862064898014, + 0.003058861242607236, + -0.019895825535058975, + -0.009703692980110645, + 0.0025582092348486185, + 0.015133527107536793, + 6.894140096846968e-5, + -0.01366820465773344, + -0.01119343750178814, + 0.01570337451994419, + 0.02207752875983715, + -0.012992528267204762, + -0.015011416748166084, + 0.0012170318514108658, + 0.012064490467309952, + 0.01978185586631298, + 0.03244875743985176, + -0.0034882822073996067, + -0.010729418136179447, + -0.014376443810760975, + 0.013098357245326042, + -0.01719311997294426, + 0.02748294174671173, + 0.008079626597464085, + 0.005576367024332285, + 0.037088945508003235, + 0.03386523574590683, + 0.004518078174442053, + -0.006455560680478811, + -0.014840462245047092, + -0.015385888516902924, + 0.009899068623781204, + 0.00910942256450653, + 0.010436354205012321, + 0.009394346736371517, + -0.005470538046211004, + 0.008824499323964119, + -0.007823195308446884, + -0.0008654562407173216, + 0.01844678446650505, + 0.02201240323483944, + -0.004039813298732042, + -0.013676345348358154, + 0.009597864001989365, + -0.002865519840270281, + -0.0015446942998096347, + 0.00525888055562973, + -0.016037143766880035, + -0.02267993986606598, + 0.006577670574188232, + 0.013179763220250607, + 0.020628487691283226, + -0.003095494117587805, + 0.001712595927529037, + -0.010338665917515755, + -0.012666900642216206, + 0.015890611335635185, + -0.02572455443441868, + -0.019960951060056686, + -0.005873501766473055, + -0.03230222314596176, + -0.022631095722317696, + -0.017388496547937393, + -0.01360307913273573, + -0.01115273404866457, + 0.0035757943987846375, + -0.008938468061387539, + -0.010957357473671436, + -0.002403536345809698, + -0.007456864230334759, + -0.031309060752391815, + -8.3060389442835e-5, + 0.025757117196917534, + 0.0018967788200825453, + 0.011250422336161137, + 0.023249786347150803, + 0.014946291223168373, + 0.014457850717008114, + 0.013399561867117882, + -0.008327917195856571, + -0.013863581232726574, + 0.005442045629024506, + 0.0017024200642481446, + 0.008889623917639256, + -0.02297300286591053, + 0.01519051194190979, + -0.020123764872550964, + -0.02370566502213478, + -0.009426909498870373, + -0.004794861655682325, + -0.007241136394441128, + 0.004554711282253265, + -0.005678125657141209, + -0.009182688780128956, + -0.013253029435873032, + 0.009646708145737648, + -0.018121156841516495, + 0.013839159160852432, + 0.02881801314651966, + -0.018984070047736168, + -0.0020809618290513754, + -0.0029021529480814934, + -0.006345661357045174, + 0.026473496109247208, + -0.016997743397951126, + -0.025089580565690994, + 0.011282985098659992, + -0.007863898761570454, + -0.011209718883037567, + 0.02333119325339794, + 0.010151430033147335, + -0.022484563291072845, + 0.022126372903585434, + 0.003447578754276037, + -0.0015772570623084903, + -0.0091501260176301, + -0.007123096380382776, + -0.029306454584002495, + -0.01244710199534893, + -0.011950520798563957, + -0.014522976242005825, + 0.008800077252089977, + -0.0022325818426907063, + -0.011095749214291573, + -0.009573441930115223, + -0.007973797619342804, + -0.010851528495550156, + 0.009076859802007675, + 0.009247814305126667, + 0.01607784628868103, + -0.019293416291475296, + 0.00564963323995471, + 0.00060698960442096, + -0.007782491855323315, + -0.003264413448050618, + 0.02587108686566353, + -0.025431489571928978, + 0.03770763799548149, + -6.906859925948083e-5, + 0.004310491029173136, + 0.014286896213889122, + 0.01170630007982254, + 0.017290808260440826, + -0.00815289281308651, + -0.021458836272358894, + 0.005035011563450098, + -0.00025299712433479726, + 0.051970113068819046, + -0.039824213832616806, + 0.02127974107861519, + -0.009956053458154202, + 0.0008720705518499017, + 0.005665914621204138, + -0.011779566295444965, + 0.016997743397951126, + -0.02844354137778282, + 0.0015324833802878857, + 0.009353643283247948, + -0.008482590317726135, + -0.019977232441306114, + -0.004049988929182291, + -0.015809204429388046, + 0.004595414735376835, + 0.010159570723772049, + 0.011226000264286995, + 0.012935543432831764, + 0.005942697636783123, + -0.019667886197566986, + 0.006215410307049751, + 0.01673724129796028, + -0.033376794308423996, + 0.008120330050587654, + -0.003386523574590683, + 0.009646708145737648, + 0.013261170126497746, + -0.007070181891322136, + 0.011991224251687527, + 0.010151430033147335, + -0.009768817573785782, + 0.007986009120941162, + -0.002134893788024783, + 0.007688873913139105, + -0.0245360154658556, + 0.017730405554175377, + -0.006166566163301468, + -0.00698470463976264, + -0.007294050883501768, + -0.01815371960401535, + 0.02460113912820816, + -0.006300887558609247, + -0.013863581232726574, + -0.013798455707728863, + -0.01903291419148445, + 0.014759056270122528, + 0.022354312241077423, + -0.00836862064898014, + -0.002708811778575182, + -0.0065206862054765224, + -0.0020728211384266615, + 0.012805292382836342, + 0.007082392927259207, + -0.006935860961675644, + -0.009158266708254814, + -0.00452214851975441, + -0.011673737317323685, + 0.0009351607877761126, + -0.010004897601902485, + -0.02333119325339794, + -0.030332179740071297, + 0.01508468296378851, + 0.0007626801379956305, + -0.0094431908801198, + 0.013782174326479435, + 0.007298121228814125, + 0.0172745268791914, + 0.009369924664497375, + 0.010599167086184025, + 0.011087608523666859, + 0.01274016685783863, + 0.017583873122930527, + 0.01356237567961216, + -0.018984070047736168, + -0.00418431032449007, + 0.007505708374083042, + 0.0185933168977499, + 0.02504073642194271, + 0.004839635454118252, + 0.030364742502570152, + -0.011103889904916286, + -0.009882787242531776, + 0.003581899916753173, + -0.008275003172457218, + 0.041680291295051575, + 0.01994466967880726, + -0.007395809516310692, + 0.010509620420634747, + -0.0015406239544972777, + -0.006260184105485678, + -0.0029896653722971678, + -0.012137756682932377, + -0.0124878054484725, + -0.018349096179008484, + -0.019358541816473007, + 0.0015569053357467055, + 0.007782491855323315, + 0.006227621342986822, + -3.237192868255079e-5, + -0.013847299851477146, + -0.006333450321108103, + -0.005857220385223627, + 0.01601272076368332, + 0.017730405554175377, + 0.005132699850946665, + -0.024031292647123337, + 0.006292746867984533, + -0.003278659423813224, + -0.010932935401797295, + 0.00982580240815878, + -0.00195478112436831, + -0.016566287726163864, + -0.006386364810168743, + 0.009508316405117512, + 0.027368972077965736, + -0.021247178316116333, + 0.014873025007545948, + 0.008791936561465263, + -0.0007469075499102473, + -0.009687411598861217, + 0.0019802208989858627, + 0.0030446150340139866, + 0.01771412417292595, + -0.0001756606507115066, + 0.008824499323964119, + 0.0013645817525684834, + -0.01934226043522358, + -0.014726493507623672, + 0.00014449709851760417, + 0.007135307416319847, + -0.0005729004624299705, + 0.009272236377000809, + -0.020481955260038376, + -0.001149871270172298, + -0.032790664583444595, + 0.005771743133664131, + 0.0261478703469038, + -0.006764906458556652, + 0.02518726885318756, + -0.005421693902462721, + -0.014107801020145416, + -0.0022590390872210264, + -0.004113079514354467, + 0.00016446721565444022, + 0.0014388654381036758, + -0.00845002755522728, + -0.009247814305126667, + 0.02429179474711418, + 0.003144338261336088, + 0.0007280822028405964, + -0.014905587770044804, + -0.007587115280330181, + -0.013098357245326042, + 0.003854612819850445, + 0.006703851278871298, + 0.030104240402579308, + 0.02274506539106369, + -0.020107483491301537, + 0.01585804857313633, + 0.003647025441750884, + -0.00937806535512209, + 0.004823354072868824, + -0.014628805220127106, + -0.014970713295042515, + -0.012552930973470211, + 0.014522976242005825, + 0.026913093402981758, + -0.020026076585054398, + 0.0007123096729628742, + -0.01263433787971735, + 0.00027423922438174486, + 0.0086372634395957, + 0.000190161241334863, + 0.01541845127940178, + -0.005478678736835718, + 0.0219309963285923, + -0.004554711282253265, + 0.004420390352606773, + -0.023298630490899086, + 0.01994466967880726, + 0.0062764654867351055, + -0.011909817345440388, + -0.004746017511934042, + 0.0040906923823058605, + 0.011282985098659992, + -0.013000668957829475, + 0.006256113760173321, + 0.001430724747478962, + 0.005991541780531406, + -0.025382645428180695, + -0.014767196960747242, + -0.014050816185772419, + 0.0038668238557875156, + 0.0049210418947041035, + 0.024861641228199005, + 0.008808217942714691, + 0.007912742905318737, + 0.013822877779603004, + 0.006394505500793457, + -0.008083696477115154, + 0.007937164977192879, + 0.023135816678404808, + 0.004261646885424852, + -0.006988774985074997, + -0.0023628328926861286, + 0.017388496547937393, + 0.01628950424492359, + -0.005881642457097769, + 0.012365695089101791, + -0.004436671733856201, + 0.0010888162069022655, + -0.006068878341466188, + -0.005954908672720194, + 0.01630578562617302, + 0.010151430033147335, + 0.00896289013326168, + -0.00985022448003292, + -0.017681561410427094, + 0.014213629998266697, + -0.014661367982625961, + -0.015402169898152351, + -0.02639208920300007, + -0.01696518063545227, + -0.017355933785438538, + 0.02504073642194271, + -0.00727776950225234, + 0.01986326277256012, + -0.02253340743482113, + 0.009809521026909351, + 0.0258548054844141, + 0.0015497822314500809, + -0.00989092793315649, + -0.003919738344848156, + 0.009557160548865795, + 0.020416829735040665, + 0.012951824814081192, + 0.022924158722162247, + 0.0047826506197452545, + -0.011120171286165714, + -0.02053079940378666, + -0.001341177267022431, + 0.005055363290011883, + -0.008946608752012253, + 0.003079212736338377, + 0.002159315859898925, + -0.024975610896945, + 0.02572455443441868, + 0.0030568260699510574, + -0.002525646472349763, + -0.022403156384825706, + -0.005861290730535984, + 0.022956721484661102, + 5.0624865252757445e-5, + 0.004982097074389458, + -0.021540243178606033, + 0.011510923504829407, + 0.005629281513392925, + 0.01504397951066494, + -0.009768817573785782, + -0.0007184151327237487, + 0.007505708374083042, + -0.024194106459617615, + -0.02266365848481655, + 0.025464052334427834, + 0.004632047843188047, + -0.014091519638895988, + -0.0017797565087676048, + 0.006182847544550896, + 0.0011101855197921395, + 0.009329221211373806, + -0.0033376794308423996, + 0.008604700677096844, + 0.004485515411943197, + 0.0028716253582388163, + -0.014767196960747242, + 0.035688746720552444, + -0.003531020600348711, + -0.0007443635840900242, + 0.019000351428985596, + -0.0036958695854991674, + -0.010029319673776627, + -0.0046279774978756905, + 0.011226000264286995, + -0.018642161041498184, + -0.005564155988395214, + 0.02305440977215767, + -0.0024768023286014795, + 0.0035411964636296034, + 0.016493020579218864, + -0.01896778866648674, + -0.00624390272423625, + -0.015621968545019627, + 0.0010099533246830106, + 0.018642161041498184, + 0.0022732852958142757, + 0.003925843629986048, + 0.013220466673374176, + -0.004953604657202959, + -0.010851528495550156, + -0.009695552289485931, + 0.00989092793315649, + -0.009939772076904774, + -0.006007823161780834, + -0.01286227721720934, + -0.008775655180215836, + 0.012691322714090347, + 0.0006975546712055802, + 0.021296022459864616, + -0.03966140002012253, + 0.00409679813310504, + -0.005975260399281979, + -0.000538811378646642, + -0.0049943081103265285, + -0.01077826227992773, + -0.005096066743135452, + 0.009907209314405918, + 0.016948899254202843, + -0.005490889772772789, + 0.015198652632534504, + 0.00170852558221668, + 0.025008173659443855, + 0.03617718815803528, + 0.0029794895090162754, + 0.012935543432831764, + 0.021882152184844017, + -0.014612523838877678, + 0.024715108796954155, + 0.00910942256450653, + -0.013888003304600716, + 0.0016932617872953415, + 0.0028736605308949947, + -0.024584857746958733, + 0.00427792826667428, + 0.029306454584002495, + -0.007566763553768396, + 0.002338410820811987, + 0.024177825078368187, + 0.001299456343986094, + 0.0026945655699819326, + -0.004310491029173136, + 0.008401183411478996, + 0.012137756682932377, + 0.0017838268540799618, + 0.0029326805379241705, + 0.001780774095095694, + 0.010639870539307594, + 0.019765574485063553, + 0.01508468296378851, + -0.006410786882042885, + 0.011543486267328262, + 0.01274016685783863, + 0.009158266708254814, + -0.007245206739753485, + 0.022256623953580856, + 0.014612523838877678, + -0.009646708145737648, + 0.011242281645536423, + 0.021019240841269493, + 0.007143448106944561, + -0.0010023214854300022, + 0.001998537452891469, + -0.009093141183257103, + 0.009166407398879528, + 0.02771088108420372, + 0.021605368703603745, + 0.004811143036931753, + 0.00978509895503521, + 0.013692626729607582, + -0.0027719021309167147, + -0.009036156348884106, + -0.019374823197722435, + 0.001806213753297925, + 0.00737138744443655, + 0.01948879100382328, + 0.0013187904842197895, + 0.013163481839001179, + 0.004599485080689192, + -0.0031423030886799097, + 4.413775968714617e-5, + -0.009646708145737648, + 0.0008374726166948676, + -0.00703761912882328, + -0.020807582885026932, + 0.018804974853992462, + 0.01681864820420742, + 0.01940738596022129, + 0.015198652632534504, + 0.025154706090688705, + -0.008466308936476707, + 0.0029102936387062073, + 0.013920566067099571, + 0.009549019858241081, + -0.004876268096268177, + -0.0010440424084663391, + -0.009988616220653057, + 0.014140363782644272, + 0.008401183411478996, + 0.002104366198182106, + -0.004017426632344723, + -0.011315547861158848, + -0.004428531043231487, + 0.02038426697254181, + -0.008612841367721558, + 0.01742105931043625, + -0.025154706090688705, + 0.002216300694271922, + 0.005812446586787701, + -0.009353643283247948, + 0.018511909991502762, + -0.005287372972816229, + -0.011991224251687527, + -0.010753840208053589, + 0.0005820587393827736, + -0.016932617872953415, + -0.0031077051535248756, + 0.00952459778636694, + 0.0065125455148518085, + 0.007867968641221523, + 0.015491717495024204, + 0.0013442300260066986, + 0.002322129439562559, + -0.016647694632411003, + -0.0036755178589373827, + 0.002330270130187273, + 0.00564963323995471, + -0.04255948215723038, + -0.009028015658259392, + 0.017307089641690254, + -0.014050816185772419, + -0.005120488815009594, + -0.009874646551907063, + -0.021442554891109467, + -0.015475436113774776, + -0.009793239645659924, + 0.006418927572667599, + 0.005482749082148075, + 0.007774351164698601, + 0.0245360154658556, + -0.022126372903585434, + 0.04014984145760536, + -0.00040703409467823803, + -0.003441473236307502, + -0.0021572806872427464, + 0.020270297303795815, + 0.00025007157819345593, + 0.007517919410020113, + -0.0004395967989694327, + -0.023103253915905952, + 0.0009962159674614668, + -0.0013472827849909663, + 0.002521576127037406, + -0.005836868658661842, + -0.008095907978713512, + 0.021247178316116333, + 0.004778580274432898, + -0.006207269616425037, + -0.01322860736399889, + -0.009288517758250237, + -0.014978853985667229, + 0.0029021529480814934, + -0.002444239566102624, + 0.027320127934217453, + -0.013513531535863876, + 0.010159570723772049, + -0.011860973201692104, + 0.005739180371165276, + -0.00811625923961401, + -0.0006354819633997977, + 0.004656469915062189, + -0.0013218432432040572, + 0.013033231720328331, + 0.007257417775690556, + -0.0030995644629001617, + -0.005332146305590868, + -0.011991224251687527, + 0.006504404824227095, + 0.01569523476064205, + 0.022061247378587723, + -0.01852819137275219, + 0.008620982058346272, + 0.015955736860632896, + 0.00013711961219087243, + -0.018202563747763634, + 0.00030044204322621226, + 0.022110091522336006, + -0.021751901134848595, + -0.00487219775095582, + -0.012357554398477077, + -0.014832321554422379, + 0.017437340691685677, + -0.00211250688880682, + -0.011177156120538712, + 0.021475117653608322, + 0.006663147825747728, + -0.01300880964845419, + 0.0006466754130087793, + -0.00845002755522728, + -0.0004963271785527468, + -0.00974439550191164, + -0.0252686757594347, + 0.014018253423273563, + -0.004990237765014172, + 0.013700767420232296, + 0.006952142342925072, + -0.011307407170534134, + 0.01185283251106739, + -0.014205489307641983, + 0.03200916200876236, + 8.36327817523852e-5, + -0.009117563255131245, + -0.017241964116692543, + -0.004290139302611351, + 0.01007816381752491, + -0.011364392004907131, + -0.02051451802253723, + 0.024503452703356743, + 0.011950520798563957, + -0.0044651636853814125, + -0.007359176408499479, + -0.0009270200971513987, + -0.00028059910982847214, + -0.02854122966527939, + 0.012202882207930088, + 0.0063578723929822445, + -0.00015111140965018421, + -0.0010460775811225176, + -0.024422045797109604, + 0.008987312205135822, + -0.012618056498467922, + -0.00923153292387724, + 0.007289980538189411, + 0.0029672784730792046, + -0.005144910886883736, + -1.5096830793481786e-5, + 0.004400038626044989, + 0.001639329711906612, + -0.008653544820845127, + -0.0015569053357467055, + 0.001771615818142891, + -0.009728115051984787, + 0.005417623557150364, + -0.016932617872953415, + -0.025838524103164673, + -0.004359335172921419, + -0.004636118188500404, + -0.0005469520692713559, + -0.017909498885273933, + -0.03067408874630928, + -0.01071313675493002, + -0.015426591970026493, + 0.0130739351734519, + -0.0057473210617899895, + -0.006129933521151543, + 0.006105511449277401, + -0.02816675789654255, + 0.00170852558221668, + -0.0037976279854774475, + 0.006882946472615004, + -0.007916812784969807, + 0.01630578562617302, + -0.005421693902462721, + 0.016948899254202843, + 0.010998060926795006, + -0.011763284914195538, + -0.022191498428583145, + -0.006036315578967333, + 0.003744713496416807, + -0.012544790282845497, + 1.9079721823800355e-5, + 0.0021633862052112818, + 0.011926098726689816, + 0.007412090431898832, + 0.005564155988395214, + -0.0012322956463322043, + -0.023673102259635925, + -0.0032277803402394056, + 0.007322543300688267, + -0.009679270908236504, + 0.013537953607738018, + 0.012829714454710484, + -0.011014342308044434, + 0.008995452895760536, + 0.008352339267730713, + -0.01593945547938347, + -0.0014337775064632297, + 0.0038240852300077677, + 0.02157280594110489, + -0.01092479471117258, + 0.02157280594110489, + -0.029290173202753067, + -0.029013389721512794, + -0.01844678446650505, + 0.005267021246254444, + 0.02074245736002922, + -0.0047215954400599, + -0.008620982058346272, + 0.009939772076904774, + -0.016175534576177597, + 0.019472509622573853, + -0.010981779545545578, + -0.012479664757847786, + 0.018397940322756767, + 0.004554711282253265, + 0.004896619822829962, + 0.001788914785720408, + 0.01263433787971735, + -0.016623271629214287, + -0.004066270310431719, + -0.005637422204017639, + 0.02201240323483944, + 0.0037711707409471273, + -0.014018253423273563, + 0.00585315003991127, + -0.005804305896162987, + 0.005783954169601202, + -0.0027149172965437174, + -0.004188380669802427, + -0.015744078904390335, + 0.012715744785964489, + -0.002053486881777644, + 0.010949216783046722, + -0.0185933168977499, + -0.03075549565255642, + -0.0037121507339179516, + -0.007049830164760351, + -0.013643782585859299, + 0.01422177068889141, + 0.0067282733507454395, + 0.011527204886078835, + -0.0025358223356306553, + -0.008531434461474419, + -0.034483928233385086, + -0.0017482113325968385, + -0.01836537756025791, + 0.00481521338224411, + 0.01860959827899933, + 0.016362769529223442, + -0.003968582488596439, + 0.013586797751486301, + 0.01274016685783863, + 0.0076400297693908215, + -0.007908672094345093, + -0.010591026395559311, + 0.021312303841114044, + -0.0052914428524672985, + 0.013293732888996601, + -0.009939772076904774, + -0.015312622301280499, + -0.010900372639298439, + 0.009899068623781204, + 0.00540948286652565, + -0.02429179474711418, + -0.021442554891109467, + -0.004153782967478037, + 0.025154706090688705, + -0.01170630007982254, + 0.017828091979026794, + -0.008189525455236435, + 0.000843578134663403, + 0.004680891986936331, + -0.002832957310602069, + -0.00046249249135144055, + 0.020921552553772926, + 0.014058956876397133, + -0.014205489307641983, + -0.01104690507054329, + -0.004505867138504982, + 0.01007816381752491, + 0.013358858413994312, + -0.01896778866648674, + 0.007957516238093376, + 0.025464052334427834, + -0.024926766753196716, + -0.036795880645513535, + 0.0022101951763033867, + -0.007725507020950317, + -0.014107801020145416, + -0.004047953989356756, + -0.022859033197164536, + -0.004351194482296705, + 0.00978509895503521, + -0.008531434461474419, + 0.018837537616491318, + 0.004851846490055323, + -0.009451331570744514, + -0.00830349512398243, + 0.0011000096565112472, + 0.013472828082740307, + 0.007619678042829037, + 0.009508316405117512, + -0.01189353596419096, + 0.010607307776808739, + -0.0002877222141250968, + 0.004851846490055323, + 0.003915667999535799, + -0.020628487691283226, + -0.005963049363344908, + -0.017583873122930527, + -0.016566287726163864, + 0.0027230579871684313, + -7.644608558621258e-5, + 0.008030782453715801, + 0.014767196960747242, + -0.003826120402663946, + 0.007408020086586475, + -0.006707921624183655, + 0.00033580310991965234, + 0.0025154706090688705, + -0.005262950900942087, + 0.007745858747512102, + 0.008173244073987007, + -0.0008593507227487862, + -0.0015070437220856547, + 0.010851528495550156, + -0.0017909499583765864, + -0.013594938442111015, + -0.00575953209772706, + -0.0022285114973783493, + -0.03112996742129326, + -0.008873343467712402, + -0.007827265188097954, + 0.007489426992833614, + -0.0008293319260701537, + -0.004076446406543255, + -0.0004289121716283262, + 0.008161033503711224, + -0.010468916967511177, + -0.0027250931598246098, + 0.009321080520749092, + -0.01214589737355709, + 0.0033071518409997225, + -0.004933252930641174, + 0.015068401582539082, + -0.022484563291072845, + 0.00594676798209548, + 0.03800070285797119, + -0.018804974853992462, + 0.00496581569314003, + 0.017583873122930527, + 0.02474767155945301, + 0.009418768808245659, + 0.015915032476186752, + 0.008791936561465263, + -0.0062723951414227486, + 0.0012902980670332909, + 0.02971348725259304, + 0.017079150304198265, + -0.013497250154614449, + 0.005120488815009594, + 0.00277800764888525, + 0.012943684123456478, + -0.00207485631108284, + -0.005897923838347197, + -0.011201578192412853, + -0.000262028188444674, + -0.025105861946940422, + -0.013423983938992023, + -0.0014449709560722113, + 0.011095749214291573, + -0.01696518063545227, + -0.012585493735969067, + 0.009174548089504242, + 0.021002959460020065, + -0.003305116668343544, + 0.009549019858241081, + 0.007986009120941162, + -0.008319776505231857, + 0.01022469624876976, + -0.03585156053304672, + -0.007192292250692844, + 0.02474767155945301, + -0.002377079101279378, + 0.027010781690478325, + 0.01660699024796486, + 0.002552103716880083, + -0.017893217504024506, + -0.01166559662669897, + -0.01703030616044998, + -0.022500844672322273, + 0.025008173659443855, + -0.020872708410024643, + 0.022956721484661102, + -0.0025398926809430122, + -0.004526218865066767, + 0.0002882310072891414, + 0.011803988367319107, + -0.001320825656875968, + -0.008226159028708935, + -0.001141730579547584, + 0.014441569335758686, + 0.007542341481894255, + 0.006007823161780834, + -0.026945656165480614, + -0.004497726447880268, + 0.010363087989389896, + -0.00011555952369235456, + -0.017876936122775078, + -0.0057432507164776325, + -0.005560085643082857, + -0.004518078174442053, + 0.0020453461911529303, + 0.0024605209473520517, + -0.0063578723929822445, + 0.005478678736835718, + 0.007517919410020113, + 0.005812446586787701, + -0.014832321554422379, + -0.01252850890159607, + -0.024649983271956444, + -0.0015304482076317072, + -0.007497567683458328, + 0.020807582885026932, + -0.02460113912820816, + 0.011877254582941532, + -0.018577035516500473, + -0.00993163138628006, + -0.010908513329923153, + -0.01026539970189333, + 0.0013421948533505201, + 0.015589405782520771, + 0.012707604095339775, + 0.02305440977215767, + 0.024470889940857887, + 0.03332795202732086, + 0.012259867042303085, + -0.022403156384825706, + 0.006406716536730528, + -0.011274844408035278, + 0.007241136394441128, + -0.013725189492106438, + 0.0016464528162032366, + 0.00807555578649044, + -0.005617070477455854, + 0.009369924664497375, + 0.010648011229932308, + 0.01500327605754137, + -0.0030690368730574846, + 0.0006039368454366922, + -0.005340286996215582, + -0.010550323873758316, + -0.039238084107637405, + 0.004290139302611351, + 0.022272905334830284, + -0.0065695298835635185, + -0.018511909991502762, + 0.024405764415860176, + 0.00633752066642046, + -0.008661685511469841, + -0.010810825042426586, + 0.0024381340481340885, + 0.02311953529715538, + -0.001966992160305381, + -0.010656151920557022, + 0.019130602478981018, + -0.01055846456438303, + -0.005181543994694948, + 0.007127166725695133, + -0.03223709762096405, + 0.013879862613976002, + 0.022110091522336006, + 0.008124399930238724, + -0.01860959827899933, + 0.0019578339997678995, + -0.018023468554019928, + 0.019244572147727013, + 0.023021847009658813, + 0.012837855145335197, + 0.012544790282845497, + 0.015239356085658073, + -0.012007505632936954, + 0.022924158722162247, + 0.007753999438136816, + -0.01092479471117258, + 0.012015646323561668, + 0.009817661717534065, + -0.0031321272253990173, + -0.01100620161741972, + -0.038717083632946014, + -0.021230896934866905, + 0.005242599174380302, + -0.003425191855058074, + 0.004049988929182291, + -0.008482590317726135, + -0.026261838153004646, + -0.007513849064707756, + -0.010240977630019188, + 0.02829700894653797, + -0.0038831052370369434, + 0.024877922609448433, + 0.006231691688299179, + -0.010485198348760605, + 0.015882469713687897, + 0.003062931587919593, + -0.01725824549794197, + -0.013456546701490879, + 0.02443832717835903, + 0.005515311844646931, + 0.004811143036931753, + 0.005576367024332285, + -0.023461444303393364, + -0.01771412417292595, + -0.0008491748594678938, + 0.005022800527513027, + 0.00599968247115612, + 0.005482749082148075, + 0.00431863171979785, + -0.0010155499912798405, + 0.006178777199238539, + 0.029664643108844757, + -0.002682354534044862, + 0.019846981391310692, + 0.00978509895503521, + -0.018137438222765923, + -0.010468916967511177, + 0.0001530193694634363, + -0.011657455936074257, + 0.0014602347509935498, + 0.0001483130472479388, + 0.0017878971993923187, + -0.002869590185582638, + 0.01638719253242016, + 0.007432442158460617, + 0.00713123707100749, + -0.020335422828793526, + -0.0027759724762290716, + 0.0026192644145339727, + -0.005515311844646931, + -0.011356251314282417, + -0.009899068623781204, + 0.024780234321951866, + -0.013285592198371887, + -0.017209401354193687, + -0.0019181481329724193, + -0.00022577671916224062, + -0.013936847448348999, + 0.01374961156398058, + 3.4311702620470896e-5, + -0.011437657289206982, + -0.011624893173575401, + 0.004827424418181181, + -0.00663465540856123, + 0.0020473813638091087, + 0.009207110852003098, + 0.0027881835121661425, + -0.007969727739691734, + 0.013912425376474857, + 0.005340286996215582, + 0.0015558877494186163, + 0.01045263558626175, + -0.011209718883037567, + 0.01846306584775448, + -0.002739339368417859, + -0.012894839979708195, + 0.00525888055562973, + -0.010192133486270905, + 0.0008914046338759363, + -0.009060578420758247, + -0.001729894895106554, + -0.020416829735040665, + -0.013586797751486301, + -0.010664292611181736, + -0.03098343499004841, + -0.0065695298835635185, + -0.0023546922020614147, + -0.0015965912025421858, + -0.0044651636853814125, + 0.015125386416912079, + 0.008128470741212368, + 0.010257259011268616, + -0.008604700677096844, + 0.007770280819386244, + -0.004957675002515316, + -0.004395968280732632, + -0.011909817345440388, + 0.009166407398879528, + 0.0026436864864081144, + 0.0009748466545715928, + -0.00010156772623304278, + -0.005792094860225916, + 0.02053079940378666, + 0.005307724233716726, + 0.017144275829195976, + -0.004440742079168558, + 0.020107483491301537, + -0.012455242685973644, + 0.00727776950225234, + -0.02733640931546688, + 0.025089580565690994, + -0.015817344188690186, + 0.03764251247048378, + 0.017958343029022217, + 0.023380037397146225, + 0.013358858413994312, + 0.004774509929120541, + -0.003215569304302335, + 0.013041372410953045, + 0.011120171286165714, + 0.0019954845774918795, + 0.0010542182717472315, + 0.009956053458154202, + -0.0037243617698550224, + 0.012007505632936954, + -0.0060648079961538315, + 0.008971030823886395, + 0.010623589158058167, + -0.0003225745167583227, + 0.0025765257887542248, + 0.004933252930641174, + 0.03096715360879898, + 0.009329221211373806, + 0.003531020600348711, + -0.007692944258451462, + 0.01430317759513855, + 0.004570992663502693, + 0.025675710290670395, + -0.01926085352897644, + 0.011828410439193249, + 0.012243585661053658, + -0.007216714322566986, + 0.007322543300688267, + -0.03259528800845146, + -0.005340286996215582, + -0.0037162210792303085, + 0.017746686935424805, + 0.016183674335479736, + 0.012959965504705906, + -0.0015609756810590625, + 0.0070213377475738525, + -0.004505867138504982, + -0.010680573992431164, + -0.005861290730535984, + -0.00707832258194685, + -0.013407702557742596, + -0.005279232282191515, + -0.01890266314148903, + -0.024194106459617615, + 0.002482907846570015, + 0.016419755294919014, + -0.007977868430316448, + 0.03516774624586105, + -0.0033763477113097906, + -0.040931347757577896, + -0.004746017511934042, + -0.009728115051984787, + -0.009793239645659924, + -0.0007428372045978904, + -0.000592234602663666, + -0.00224072253331542, + -0.006459631025791168, + -0.018723567947745323, + -0.013342577032744884, + 0.022468281909823418, + -0.007049830164760351, + -0.00985022448003292, + -0.011348110623657703, + 0.01077826227992773, + 0.006626514717936516, + -0.0005606894264928997, + 0.027743443846702576, + -0.01214589737355709, + 0.0014541292330250144, + -0.008816358633339405, + -0.0006690622540190816, + -0.013358858413994312, + 0.01459624245762825, + -0.01022469624876976, + 0.00299984123557806, + 0.0283132903277874, + -0.0038179797120392323, + -0.002423888072371483, + 0.020628487691283226, + 0.0021796675864607096, + -0.014360162429511547, + 0.009654848836362362, + -0.01100620161741972, + 0.012430820614099503, + -0.01282157376408577, + -0.0034068753011524677, + 0.014018253423273563, + 0.011079467833042145, + -0.003500493010506034, + -0.013676345348358154, + -0.002452380256727338, + -0.007505708374083042, + 0.012015646323561668, + -0.0016963145462796092, + 0.012772729620337486, + 0.009215251542627811, + 0.020547080785036087, + -0.01592317409813404, + -0.004778580274432898, + 0.012943684123456478, + 0.0049169715493917465, + -0.014083378948271275, + -0.0034150159917771816, + 0.011714440770447254, + -0.016769804060459137, + -0.004163958597928286, + -0.022256623953580856, + 0.0225171260535717, + -0.010403791442513466, + -0.0018163896165788174, + 0.0002397685166215524, + 0.017323371022939682, + -0.00746907526627183, + -0.014295036904513836, + -0.0059874714352190495, + -0.007408020086586475, + 0.0065695298835635185, + -0.0009646707912907004, + -0.015092823654413223, + 0.020400548353791237, + 0.027010781690478325, + 0.0037162210792303085, + -0.01322860736399889, + 0.012072631157934666, + -0.017241964116692543, + 0.018170000985264778, + 0.012235444970428944, + -0.02334747463464737, + 0.00963042676448822, + 0.0020372055005282164, + -0.01711171306669712, + 0.0049169715493917465, + -0.02639208920300007, + 0.0010511655127629638, + -0.0006303940317593515, + 0.017388496547937393, + 0.010493339039385319, + 0.006980634294450283, + 0.007680733222514391, + -0.0003686202398966998, + -0.009776958264410496, + 0.00014538748655468225, + 0.0034658953081816435, + 0.060143355280160904, + 0.028248164802789688, + 0.0029123288113623857, + -0.003309187013655901, + 0.007147518452256918, + -0.03192775323987007, + 0.009093141183257103, + -0.001627118792384863, + -0.026945656165480614, + -0.011983083561062813, + -0.0051571219228208065, + 0.002696600742638111, + 0.014295036904513836, + 0.009435050189495087, + -0.008840780705213547, + 0.009459472261369228, + -0.009036156348884106, + -0.010477057658135891, + 0.010525901801884174, + 0.006630585063248873, + -0.008881484158337116, + 0.00985022448003292, + -0.009606004692614079, + -0.0011580119607970119, + 0.020921552553772926, + 0.0030324039980769157, + -0.02829700894653797, + -0.01896778866648674, + -0.008279073052108288, + -0.0010124972322955728, + 0.02372194640338421, + -0.026115307584404945, + -0.04317817464470863, + 0.007110885344445705, + -0.019895825535058975, + 0.024177825078368187, + -0.010444494895637035, + 0.009247814305126667, + 0.00855585653334856, + -0.01523121539503336, + -0.026913093402981758, + -0.007070181891322136, + 0.007587115280330181, + -0.017437340691685677, + -0.006882946472615004, + -0.0031321272253990173, + -0.0001834197319112718, + 0.008177314884960651, + -0.0023282349575310946, + -0.012316850945353508, + -0.009833943098783493, + 0.0036999399308115244, + -0.02142627350986004, + -0.020937833935022354, + -0.009272236377000809, + -0.005767672788351774, + 0.020709894597530365, + -0.017014024779200554, + -0.009532738476991653, + -0.011429516598582268, + -0.010900372639298439, + 0.003561548190191388, + 0.0032603431027382612, + 0.02735269069671631, + 1.8968425138155e-5, + 0.02994142659008503, + 0.0035717240534722805, + 0.006422997917979956, + 0.006089230068027973, + -0.012202882207930088, + 0.013619360513985157, + -0.019163165241479874, + 0.00648405309766531, + -0.015076542273163795, + -0.025838524103164673, + -0.00878379587084055, + -0.01675352267920971, + -0.02925761044025421, + -0.011592330411076546, + 0.020709894597530365, + 0.0008766496321186423, + -0.0009962159674614668, + -0.004689032677561045, + -0.0043308427557349205, + -0.006878876127302647, + -0.0030853182543069124, + -0.00546239735558629, + 0.003647025441750884, + 0.011681878007948399, + 0.0051530515775084496, + -0.014726493507623672, + -0.006488123442977667, + -0.016867492347955704, + 0.006089230068027973, + 0.001982256071642041, + -0.01755131036043167, + -0.015874329954385757, + -0.0003190129646100104, + 0.00044671990326605737, + 0.0191794466227293, + -0.0028349924832582474, + 0.009540879167616367, + 0.003581899916753173, + -0.006541037932038307, + -0.008201736956834793, + -0.038130953907966614, + 0.006899227853864431, + 0.0030059467535465956, + 0.0024015011731535196, + 0.009956053458154202, + -0.02000979520380497, + 0.015915032476186752, + -0.00836862064898014, + 0.02349400706589222, + 0.0033417497761547565, + 0.0255617406219244, + 0.008694248273968697, + -0.00811625923961401, + 0.0011508888565003872, + 0.012569212354719639, + -0.010656151920557022, + 0.0127808703109622, + 0.026701435446739197, + 0.024812797084450722, + 0.0019883615896105766, + -0.0034394380636513233, + -0.003681623376905918, + 0.039824213832616806, + 0.0023099184036254883, + -0.016427895054221153, + 0.008295354433357716, + 0.0004217890673317015, + -0.011812129057943821, + 0.0038139093667268753, + -0.001197697827592492, + 0.002564314752817154, + 0.0045465705916285515, + -0.011364392004907131, + 0.024324357509613037, + -0.016240660101175308, + -0.009321080520749092, + 0.01932597905397415, + 0.013692626729607582, + 0.016419755294919014, + 0.008914045989513397, + -0.0001483130472479388, + -0.01792578026652336, + 0.0180071871727705, + 0.0013951093424111605, + -0.013155341148376465, + -0.0057473210617899895, + 0.008718670345842838, + 0.0030934589449316263, + 0.02342888154089451, + -0.0011997330002486706, + 0.005954908672720194, + -0.015027698129415512, + 0.019960951060056686, + -0.014571820385754108, + 0.010468916967511177, + -0.008136611431837082, + 0.01711171306669712, + 0.0009356695809401572, + 0.016484880819916725, + 0.009988616220653057, + -0.011584189720451832, + -0.0006359907565638423, + 0.016476739197969437, + -0.008580278605222702, + -0.009573441930115223, + -0.018642161041498184, + 0.0001307596976403147, + 0.0031361975707113743, + 0.003012052271515131, + 0.003976723179221153, + 0.008914045989513397, + -0.004395968280732632, + 0.00153757119551301, + -0.01978185586631298, + -0.00422501377761364, + 0.010297962464392185, + 0.023217223584651947, + 0.00559671875089407, + -0.007880180142819881, + -0.011372532695531845, + 0.01267504133284092, + -0.004477374721318483, + 0.012723885476589203, + 0.017648998647928238, + -0.006292746867984533, + 0.006850383710116148, + 0.022565970197319984, + -0.01170630007982254, + -0.020693613216280937, + -0.008038923144340515, + 0.0017573696095496416, + 0.0031382327433675528, + -0.004526218865066767, + -0.03428855165839195, + 0.011095749214291573, + 0.0023017777130007744, + 0.0010796579299494624, + -0.020921552553772926, + -0.012178460136055946 + ], + "f0bf7748-c987-4c01-9cd8-09a87939938b": [ + -0.005033770110458136, + -0.002276043640449643, + -0.0070634568110108376, + 0.004184390418231487, + -0.026488881558179855, + -0.04091730713844299, + 0.029018636792898178, + 0.03565188869833946, + -0.004070404451340437, + 0.027180152013897896, + -0.017443539574742317, + 0.04394713044166565, + 0.0031658699735999107, + -0.008685000240802765, + -0.035298898816108704, + -0.0030243066139519215, + -0.04741818830370903, + 0.03421051800251007, + -0.002678671618923545, + -0.020252743735909462, + 0.06859752535820007, + -0.006739883683621883, + -0.025974106043577194, + 0.011898670345544815, + -0.013568013906478882, + -0.03276914358139038, + 0.006504557561129332, + 2.4589728127466515e-5, + -0.037828654050827026, + -0.007662802468985319, + 0.0029801831115037203, + 0.02054690010845661, + 0.037946317344903946, + -0.027062488719820976, + -0.002748534083366394, + -0.0466533787548542, + -0.008765893056988716, + 0.004831536673009396, + 0.006828130688518286, + -0.002456214977428317, + -0.021326418966054916, + 0.0334751233458519, + 0.025665240362286568, + 0.016546359285712242, + -0.03609312325716019, + 0.016693437471985817, + 0.030886536464095116, + 0.0006875931285321712, + 0.00023808372498024255, + 0.02060573175549507, + -0.011876609176397324, + 0.008317302912473679, + -0.008523213677108288, + -0.0034324503503739834, + 0.009626303799450397, + -0.026768332347273827, + 0.005030093248933554, + 0.07630445063114166, + 0.02206181176006794, + -0.025032803416252136, + 0.01666402257978916, + 0.008758539333939552, + 0.01997329294681549, + 0.010170495137572289, + -0.040446653962135315, + -0.03721092268824577, + -0.0072289202362298965, + -0.003673291765153408, + -0.04788884148001671, + -0.013097362592816353, + 0.012788496911525726, + 0.03759332746267319, + -0.021061675623059273, + -0.0041255587711930275, + -0.03097478300333023, + 0.011729530058801174, + 0.023017823696136475, + -0.004107173997908831, + 0.013869525864720345, + 0.010567608289420605, + -0.04382946714758873, + 0.0027761112432926893, + 0.015207942575216293, + 0.030268805101513863, + 0.08812958747148514, + -0.0018504344625398517, + -0.022826621308922768, + -0.04444719851016998, + -0.008199640549719334, + -0.02622414007782936, + -0.001491929986514151, + 0.04597681760787964, + -0.008273179642856121, + -0.004956553690135479, + -0.0197379682213068, + -0.01817893236875534, + 0.04371180385351181, + 0.01328856498003006, + 0.014251930639147758, + -0.013670969754457474, + 0.023091362789273262, + 0.051036324352025986, + -0.04974203184247017, + 0.010391113348305225, + -0.0041255587711930275, + -0.0006958662997931242, + -0.007721634116023779, + -0.027062488719820976, + -0.021282294765114784, + 0.03403402119874954, + 0.0006140537443570793, + -0.012692895717918873, + 0.0016987595008686185, + -0.001676697749644518, + -0.025488747283816338, + -0.02253246307373047, + 0.0006875931285321712, + -0.02819499559700489, + 0.006857546512037516, + -0.03276914358139038, + 0.053007181733846664, + 0.0026952179614454508, + 0.02419445291161537, + 0.027768466621637344, + 0.0038461091462522745, + 0.019487934187054634, + 0.014950554817914963, + -0.00045065846643410623, + 0.018679000437259674, + 0.0031640315428376198, + -0.02444448694586754, + -0.030768873170018196, + 0.0070634568110108376, + 0.016869932413101196, + 0.0002477357629686594, + 0.02107638493180275, + -0.008162870071828365, + 0.06142008304595947, + -0.0072436281479895115, + 0.04585915431380272, + -0.05736071243882179, + -0.0355636402964592, + -0.018075978383421898, + -0.008523213677108288, + 0.0057875486090779305, + 0.02807733230292797, + -0.03165134787559509, + 0.040152497589588165, + 0.0014505641302093863, + 0.037387415766716, + -0.03756391257047653, + -0.006041259504854679, + 0.006107444874942303, + 0.014141621068120003, + 0.003414065344259143, + 0.00013271559146232903, + 0.005960366223007441, + 0.033151548355817795, + 0.008059915155172348, + 0.0011757106985896826, + 0.005019062198698521, + -0.0795401856303215, + 0.002086679683998227, + -0.0046734269708395, + 0.02697424218058586, + 0.0017750565893948078, + 0.027944961562752724, + 0.009111528284847736, + -0.028577400371432304, + 0.022326553240418434, + 0.02965107560157776, + -0.023635555058717728, + 0.01851721480488777, + 0.006000812631100416, + 0.015487391501665115, + -0.003673291765153408, + 0.042123351246118546, + 0.02135583385825157, + 0.01539914496243, + -0.036328449845314026, + -0.011442726477980614, + -0.03091595321893692, + 0.007868712767958641, + 0.004585179965943098, + -0.03265148028731346, + 0.019546765834093094, + 0.023885589092969894, + -0.02478276938199997, + 0.004463839810341597, + -0.002674994757398963, + -0.0013871364062651992, + -0.017002303153276443, + -0.0016187854344025254, + 0.03729917109012604, + -0.03115127794444561, + -0.02107638493180275, + 0.017208212986588478, + -0.017472954466938972, + 0.03391635790467262, + 0.03191608935594559, + -0.027062488719820976, + -0.040564317256212234, + -0.05806668847799301, + 0.04121146351099014, + -0.06353801488876343, + 0.04650630056858063, + -0.024871015921235085, + -0.006953147705644369, + 0.02391500398516655, + -0.039976004511117935, + 0.028400905430316925, + -0.03532831370830536, + 0.013957773335278034, + -0.01389158796519041, + -0.027577264234423637, + 0.008685000240802765, + -0.01331798080354929, + 0.023900296539068222, + 0.011942794546484947, + -0.023988543078303337, + -0.007144350092858076, + 0.0030831382609903812, + -0.019090821966528893, + -0.03085712157189846, + -0.02888626605272293, + -0.03576955199241638, + 0.0032412479631602764, + 0.03994658589363098, + -0.035181235522031784, + -0.02592998370528221, + 0.03756391257047653, + 0.007427476812154055, + 0.011185338720679283, + -0.01146478857845068, + 0.0025775551330298185, + 0.005210264585912228, + -0.0033717802725732327, + 0.02014978788793087, + -0.009692489169538021, + -0.023709094151854515, + 0.016575774177908897, + 0.02038511447608471, + 0.009964585304260254, + 0.020238036289811134, + 0.018840787932276726, + 0.018899619579315186, + -0.012369322590529919, + 0.024768060073256493, + 0.030327636748552322, + -0.028474444523453712, + 0.022017687559127808, + 0.0228707455098629, + -0.003882878925651312, + 0.00111136375926435, + -0.0012915352126583457, + 0.036681439727544785, + 0.028739187866449356, + -0.04138796031475067, + -0.010273450054228306, + -0.0014193098759278655, + -0.008787955157458782, + -0.004842567723244429, + 0.012817912735044956, + -0.02350318431854248, + 0.042476341128349304, + -0.03341628983616829, + 0.022253014147281647, + -0.049359627068042755, + -0.0021804424468427896, + 0.03182784095406532, + -0.021282294765114784, + 0.013854817487299442, + 0.008824724704027176, + -0.016766976565122604, + -0.011501558125019073, + -0.007912836968898773, + -0.02779788337647915, + 0.0025683625135570765, + -0.014516672119498253, + -0.010574962012469769, + 0.008552629500627518, + 0.01074410229921341, + -0.008655584417283535, + 0.024532735347747803, + 0.00037183344829827547, + -0.003380972659215331, + -0.014759352430701256, + 0.02367967739701271, + -0.02704778127372265, + 0.0032118321396410465, + -0.005747102200984955, + -0.032798562198877335, + 0.02066456340253353, + -0.004081435035914183, + 0.03168076276779175, + 0.007934898138046265, + -0.018281888216733932, + -0.017237629741430283, + -0.027989085763692856, + 0.01916436105966568, + -0.0068869623355567455, + -0.015825673937797546, + -0.008420257829129696, + -0.014524025842547417, + 0.029371624812483788, + -0.006839161738753319, + 0.035298898816108704, + 0.010030770674347878, + -0.02304723858833313, + 0.025444623082876205, + 0.057301878929138184, + 0.009883691556751728, + -0.027018366381525993, + -0.012729665264487267, + 0.009876337833702564, + -0.0046954890713095665, + 0.02756255678832531, + 0.0034765738528221846, + -0.0037688929587602615, + -0.025032803416252136, + 0.02066456340253353, + -0.007530431728810072, + -0.07036247104406357, + 0.03791690245270729, + 0.0406525656580925, + -0.01870841719210148, + 0.0472416914999485, + -0.034534089267253876, + -0.0391523614525795, + -0.04129971191287041, + -0.024165038019418716, + -0.016472820192575455, + -0.03541656211018562, + -0.016605190932750702, + -0.00487566040828824, + -0.05547810345888138, + -0.023650262504816055, + -0.015296190045773983, + -0.0144210709258914, + -0.014259284362196922, + 0.0039343563839793205, + 0.007335552480071783, + -0.010560253635048866, + -0.002470922889187932, + 0.019134944304823875, + 0.003989511169493198, + 0.0057875486090779305, + -0.0036383604165166616, + -0.01563447155058384, + 0.0034030345268547535, + 0.000926596112549305, + -0.03468116745352745, + 0.019384978339076042, + -0.012994407676160336, + 0.04938904196023941, + 0.011354479007422924, + -0.004632980562746525, + -0.034769415855407715, + 0.012891451828181744, + -0.009648365899920464, + 0.02409149892628193, + -0.025974106043577194, + -0.05009502172470093, + 0.009001219645142555, + -0.009596887975931168, + -0.0035501131787896156, + 0.016399281099438667, + -0.008258471265435219, + -0.0012207536492496729, + 0.018075978383421898, + -0.03391635790467262, + 0.011560389772057533, + 0.005177171900868416, + -0.03394577279686928, + -0.028047917410731316, + -0.022782497107982635, + 0.02159116044640541, + 0.0027853038627654314, + -0.016649313271045685, + 0.019090821966528893, + -0.002060940954834223, + 0.023900296539068222, + 0.010038124397397041, + -0.045241422951221466, + 0.019384978339076042, + 0.012266367673873901, + -0.0015921273734420538, + -0.013685677200555801, + 0.013163547962903976, + 0.02032628282904625, + -0.02888626605272293, + 0.013825402595102787, + -0.011957501992583275, + 0.015516807325184345, + -0.011935439892113209, + 0.014038666151463985, + 0.006217753980308771, + -0.00286619714461267, + 0.013222379609942436, + -0.04253517463803291, + -0.0020407175179570913, + -0.008052561432123184, + -0.00857469066977501, + 0.03535773232579231, + 0.029092175886034966, + -0.029106883332133293, + -0.012104581110179424, + -0.01672285422682762, + 0.018679000437259674, + -0.002426799386739731, + -0.007250982336699963, + 0.0017750565893948078, + 0.020179204642772675, + 0.0027448569890111685, + 0.043623555451631546, + -0.0039453874342143536, + 0.03971126303076744, + 0.03226907551288605, + -0.05574284493923187, + -0.04812416434288025, + 0.036269620060920715, + 0.06783271580934525, + -0.013935711234807968, + 0.028121456503868103, + -0.01950264163315296, + 0.010567608289420605, + 0.018899619579315186, + 0.035181235522031784, + -0.03318096697330475, + -0.012413445860147476, + -0.03600487858057022, + 0.029195131734013557, + -0.011567743495106697, + 0.0019322470761835575, + -0.0036401990801095963, + -0.0313866026699543, + 0.018605461344122887, + -0.004688134882599115, + -0.013281210325658321, + -0.011295647360384464, + 0.012987053021788597, + 0.029959941282868385, + -0.01979679986834526, + -0.019267315044999123, + -0.026533005759119987, + -0.029489288106560707, + -0.03300447016954422, + 0.01713467389345169, + 0.03300447016954422, + 0.01545797660946846, + -0.002415768336504698, + 0.026150600984692574, + -0.050977494567632675, + 0.013369457796216011, + -0.007357614114880562, + -0.01754649356007576, + -0.018796663731336594, + -0.009707197546958923, + 0.0012814236106351018, + -0.03182784095406532, + -0.022017687559127808, + -0.0019359239377081394, + 0.023488475009799004, + -0.013840110041201115, + -0.002136318711563945, + -0.05536044016480446, + 0.004405008628964424, + 0.025856442749500275, + 0.014560796320438385, + 0.00801579188555479, + -0.010677916929125786, + 0.005960366223007441, + -0.043329399079084396, + -0.005861088167876005, + -0.011008843779563904, + -0.025562286376953125, + -0.006923731882125139, + 0.006221430841833353, + -0.009126235730946064, + -0.014443133026361465, + -0.042299848049879074, + -0.019296731799840927, + -0.02072339504957199, + -0.01111915335059166, + -0.005202910862863064, + -0.005721363238990307, + -0.018605461344122887, + -0.034828245639801025, + -0.0007845732034184039, + -0.013906295411288738, + 0.060478780418634415, + 0.013391519896686077, + 0.012619356624782085, + 0.006214077118784189, + -0.02738606184720993, + -0.030357053503394127, + 0.009280668571591377, + -0.022797206416726112, + -0.01812010072171688, + -0.019296731799840927, + 0.016840515658259392, + -0.011854547075927258, + -0.009317438118159771, + 0.029151007533073425, + 0.01091324258595705, + 0.014141621068120003, + -0.025400498881936073, + -0.01386217214167118, + -0.005438236519694328, + 0.00029783445643261075, + -0.013273856602609158, + -0.01360478438436985, + -0.023532599210739136, + 0.006129506975412369, + -0.01354595273733139, + 0.007824589498341084, + -0.03982892259955406, + 0.011052967980504036, + 0.036622606217861176, + -0.03385752812027931, + 0.009574826806783676, + 0.0015645502135157585, + -0.020002709701657295, + 7.876755989855155e-5, + -0.011244170367717743, + -0.009346853941679, + 0.008383488282561302, + -0.018149517476558685, + 0.022900160402059555, + -0.0068612233735620975, + -0.025282835587859154, + 0.015781549736857414, + -0.012523755431175232, + 0.013950418680906296, + 0.03191608935594559, + -0.017414122819900513, + -0.01386217214167118, + 0.0016344125615432858, + 0.029386334121227264, + 0.042064521461725235, + -0.038181643933057785, + 0.01575213298201561, + 0.016943471506237984, + 0.005541191902011633, + -0.01673756167292595, + 0.023591430857777596, + -0.024738645181059837, + 0.019031990319490433, + -0.0009642850491218269, + 0.020914597436785698, + -0.023414935916662216, + 0.014229868538677692, + -0.005960366223007441, + 0.011420664377510548, + 0.03332804515957832, + -0.040328990668058395, + 0.032504402101039886, + -0.02217947505414486, + -0.029327502474188805, + -0.022841328755021095, + -0.016884639859199524, + 0.014134267345070839, + -0.004526348318904638, + 0.0014137944672256708, + -0.04759468138217926, + -0.00880266260355711, + -0.02866564691066742, + 0.044270701706409454, + 0.011655990965664387, + 0.01812010072171688, + 0.03776982054114342, + 0.0148770147934556, + 0.06312619894742966, + -0.0027981731109321117, + -0.013134132139384747, + 0.004522671457380056, + -0.0055816383101046085, + -0.00045065846643410623, + -0.008273179642856121, + -0.010619085282087326, + 0.040034834295511246, + -0.04082905873656273, + -0.00544191338121891, + -0.01766415685415268, + 0.01882607862353325, + 0.03838755190372467, + -0.01598745957016945, + -0.029827570542693138, + -0.020767519250512123, + 0.01957618072628975, + -0.019899753853678703, + 0.042005691677331924, + 0.019870338961482048, + 0.008405550383031368, + -0.04465310648083687, + 0.02592998370528221, + 0.0020388790871948004, + 0.017678866162896156, + 0.008824724704027176, + -0.023017823696136475, + 0.0027889807242900133, + 0.01297234557569027, + 0.014582857489585876, + -0.004798443987965584, + -0.011883962899446487, + 0.01539914496243, + 0.0026566097512841225, + 0.020061541348695755, + -0.032327909022569656, + 0.013465058989822865, + -0.01253846287727356, + 9.979523019865155e-5, + 0.010119018144905567, + 0.004129235632717609, + 0.02460627444088459, + 0.015207942575216293, + 0.02403266727924347, + 0.03938768804073334, + -0.010508776642382145, + -0.011825131252408028, + -0.0006172711146064103, + -0.055272191762924194, + 0.06094943359494209, + -0.027636095881462097, + 0.0313866026699543, + 0.016825808212161064, + -0.029562827199697495, + -0.0098689841106534, + -0.005401466973125935, + -0.019782090559601784, + 0.023488475009799004, + -0.004574148915708065, + 0.01817893236875534, + -0.029665783047676086, + 0.05577225983142853, + 0.006692083086818457, + 0.015678593888878822, + 0.02976873889565468, + -0.021797070279717445, + -0.007662802468985319, + -0.04650630056858063, + -0.008824724704027176, + -0.006548681296408176, + 0.02912159264087677, + -0.013134132139384747, + 0.02803320810198784, + -0.023841464892029762, + 0.0013135970802977681, + 0.034357596188783646, + 0.0059861051850020885, + -0.02373850904405117, + 0.003691676538437605, + 0.014950554817914963, + 0.00938362441956997, + 0.009515995159745216, + -0.01969384402036667, + 0.014465195126831532, + 0.0016491204733029008, + 0.0009371673804707825, + 0.002277882071211934, + 0.022208889946341515, + -0.024856308475136757, + -0.009332146495580673, + 0.021517621353268623, + 0.0158550888299942, + 0.025268128141760826, + 0.027062488719820976, + 0.0032283784821629524, + 0.02657712996006012, + 0.04091730713844299, + -0.0035519516095519066, + -0.016708144918084145, + 0.01772298850119114, + 0.009832214564085007, + 0.006754591595381498, + -0.007320844568312168, + 4.387944954942213e-6, + -0.02420916222035885, + -0.006475141737610102, + 0.0011858224170282483, + -0.007328198291361332, + -0.008589399047195911, + -0.04671220853924751, + -0.00033161661121994257, + 0.008758539333939552, + -0.010641147382557392, + -0.011883962899446487, + 0.04709461331367493, + -0.0076333871111273766, + -0.01882607862353325, + 0.00732452142983675, + 0.0013954095775261521, + -0.0052286493591964245, + -0.006063321139663458, + 0.009986646473407745, + 0.029959941282868385, + -0.0009367077727802098, + 0.003204478183761239, + 0.013244440779089928, + -0.017561202868819237, + -0.04094672203063965, + -0.021326418966054916, + 0.003540920792147517, + -0.03665202483534813, + 0.001241896185092628, + 0.007449538446962833, + -0.01892903447151184, + -0.00017431129526812583, + 0.01685522496700287, + -0.023959128186106682, + 0.007559847552329302, + 0.008501151576638222, + 0.0024801152758300304, + 0.03226907551288605, + 0.026606544852256775, + 0.01407543569803238, + -0.008714416064321995, + 0.0014781414065510035, + 0.007751049939543009, + 0.009824859909713268, + -0.011729530058801174, + 0.014413717202842236, + -0.0028036886360496283, + -0.045594412833452225, + -0.04868306592106819, + 0.0061405375599861145, + 0.017678866162896156, + 0.01894374191761017, + 0.0020664564799517393, + -0.00476167444139719, + 0.03897586837410927, + 0.013994542881846428, + -0.017296461388468742, + -0.006625897716730833, + -0.009994001127779484, + -0.005919919349253178, + -0.016649313271045685, + -0.005173495039343834, + 0.0070891957730054855, + -0.029562827199697495, + -0.011163276620209217, + -0.02970990724861622, + 0.03062179498374462, + -0.0007211454794742167, + 0.005144079215824604, + 0.014693167060613632, + 0.009707197546958923, + -0.011986917816102505, + -7.687162724323571e-5, + 0.02651829831302166, + 0.03194550424814224, + -0.03771099075675011, + 0.055036865174770355, + 0.011420664377510548, + -0.008162870071828365, + -0.0043277922086417675, + 0.0056184083223342896, + 0.02710661292076111, + -0.020708687603473663, + 0.04506492614746094, + -0.0036126216873526573, + 0.01534031331539154, + 0.002235596999526024, + -0.0013522051740437746, + 0.0021988272201269865, + -8.778763003647327e-5, + -0.023870879784226418, + 0.034651752561330795, + 0.0391523614525795, + -0.01473729033023119, + 0.021032260730862617, + 0.0033423644490540028, + 0.025371083989739418, + 0.006449403241276741, + 0.00010536813351791352, + -0.01169276051223278, + 0.01673756167292595, + -0.016943471506237984, + -0.04485901817679405, + -0.017355291172862053, + -0.010699979029595852, + -0.057184215635061264, + -0.011832484975457191, + -0.03456350415945053, + 0.02176765352487564, + -0.02009095624089241, + 0.025106342509388924, + -0.00027347455034032464, + -0.01760532520711422, + 0.0017787335673347116, + -0.0197379682213068, + 0.01459021121263504, + -0.028915680944919586, + 0.012428154237568378, + 0.0036530683282762766, + -0.016237493604421616, + 0.01528148166835308, + -0.047624096274375916, + -0.002906643785536289, + 0.025665240362286568, + 0.01766415685415268, + -0.029430456459522247, + 0.04471193999052048, + 0.05059508979320526, + -0.007765757851302624, + 0.001338416594080627, + 0.022473633289337158, + 0.012428154237568378, + 0.03576955199241638, + 0.0016399279702454805, + -0.01536972913891077, + -0.028224410489201546, + -0.00017637958808336407, + 0.034416425973176956, + -0.004691812209784985, + 0.005004354286938906, + -0.02101755328476429, + 0.028415612876415253, + 0.025488747283816338, + -0.011773653328418732, + 0.010641147382557392, + 0.02519458904862404, + 0.02320902608335018, + 0.009251252748072147, + -0.02669479325413704, + -0.027062488719820976, + 0.007824589498341084, + -0.010148433037102222, + 0.017634741961956024, + 0.027636095881462097, + 0.019708551466464996, + -0.013016468845307827, + -0.00396377220749855, + 0.04830066114664078, + 0.017531786113977432, + 0.01125887781381607, + -0.04018191248178482, + -0.014509318396449089, + -0.02993052452802658, + 0.01638457179069519, + -0.010427882894873619, + -0.029562827199697495, + -0.021988272666931152, + -0.019899753853678703, + -0.01294292975217104, + -0.018546629697084427, + 0.00017557526007294655, + 0.011450080201029778, + 0.03971126303076744, + 0.03456350415945053, + 0.00798637606203556, + -0.004824182949960232, + -0.007103903219103813, + 0.009655719622969627, + -0.030710041522979736, + 0.03388694301247597, + -0.012656126171350479, + 0.012656126171350479, + 0.013067946769297123, + -0.0020682949107140303, + 0.006769299507141113, + -0.0005933708162046969, + -0.04771234467625618, + -0.024238577112555504, + 0.00946451723575592, + -0.02269425056874752, + -0.017414122819900513, + -0.002632709452882409, + -0.00479109026491642, + 0.015134402550756931, + -0.0002360154321650043, + -0.0015810965560376644, + 0.0013779440196231008, + 0.004456486087292433, + -0.019414395093917847, + -0.0067251757718622684, + -0.01784065179526806, + -0.0189878661185503, + -0.050506841391325, + 0.008721769787371159, + -0.006221430841833353, + 0.02079693414270878, + 0.021179338917136192, + 0.01691405661404133, + -0.04827124625444412, + -0.00558899249881506, + 0.023547306656837463, + -0.012413445860147476, + 0.0008861494716256857, + -0.010082247667014599, + 0.007236274424940348, + 0.014325469732284546, + -0.005243357270956039, + -0.023150194436311722, + 0.0035519516095519066, + -0.020649855956435204, + -0.0010194395435974002, + -0.008287887088954449, + 0.002906643785536289, + -0.016575774177908897, + 0.008206994272768497, + -0.04621214047074318, + -0.019296731799840927, + 0.02003212459385395, + -0.009486579336225986, + -0.03682851791381836, + 0.02732723020017147, + 0.023179611191153526, + 0.0020499101374298334, + 0.032563235610723495, + 0.011214754544198513, + 0.029974648728966713, + -0.0037725698202848434, + -0.008457028307020664, + 0.02965107560157776, + 0.025959398597478867, + 0.009023280814290047, + 0.0014285023789852858, + -0.01725233718752861, + 0.006589127704501152, + 0.014376947656273842, + -4.04466554755345e-5, + 0.004522671457380056, + -0.006934762932360172, + -0.017811236903071404, + -0.01482553780078888, + 0.0016482011415064335, + 0.004070404451340437, + 0.00121891510207206, + 0.03515182062983513, + 0.006162599660456181, + 0.013251795433461666, + 0.019782090559601784, + -0.013119423761963844, + 0.031004199758172035, + -0.01528148166835308, + -0.011891316622495651, + -0.018267180770635605, + -0.023959128186106682, + -0.007831943221390247, + -0.02634180337190628, + 0.014200452715158463, + 0.001733690733090043, + -0.016075706109404564, + 0.013222379609942436, + -0.014178391546010971, + -0.022797206416726112, + 0.03150426596403122, + 0.02298840880393982, + 0.023150194436311722, + -0.006118475925177336, + 0.019885046407580376, + 0.012751727364957333, + 0.010016062296926975, + 0.020752811804413795, + 0.03594604507088661, + -0.0015038801357150078, + 0.01542856078594923, + 0.034534089267253876, + -0.0052543883211910725, + -0.00424322159960866, + -0.004566795192658901, + -0.00021280455985106528, + 0.010501422919332981, + -0.05609583482146263, + 0.006078029051423073, + -0.03538714721798897, + 0.016458110883831978, + -0.00405201967805624, + 0.005629438906908035, + -0.0017539140535518527, + -0.030945368111133575, + -0.019208483397960663, + 0.015781549736857414, + -0.010692624375224113, + -0.028459737077355385, + -0.019414395093917847, + -0.008883556351065636, + -0.015575638972222805, + 0.015222650021314621, + 0.031063031405210495, + 0.008199640549719334, + 0.005780194886028767, + -0.010096956044435501, + -0.008626168593764305, + -0.005780194886028767, + 0.010449944995343685, + 0.007103903219103813, + -0.010597024112939835, + 0.015090279281139374, + 0.010266096331179142, + -0.033210381865501404, + -0.03062179498374462, + -0.010199910961091518, + 0.014862307347357273, + 0.015193234197795391, + -0.03056296333670616, + -0.03373986482620239, + 0.012817912735044956, + -0.009501286782324314, + 0.012634064070880413, + -0.01311207003891468, + -0.019899753853678703, + 0.05756662040948868, + -0.00584638025611639, + 0.028327366337180138, + -0.0006200288189575076, + -0.010096956044435501, + 0.015090279281139374, + 0.02032628282904625, + -0.0002930084301624447, + -0.03397519141435623, + -0.00795696023851633, + -0.0015967236831784248, + 0.03844638541340828, + 0.04371180385351181, + -0.004699165932834148, + -0.04315290227532387, + -0.021385248750448227, + 0.04094672203063965, + -0.004691812209784985, + -0.012325199320912361, + 0.006997271440923214, + -0.01256787870079279, + -0.014038666151463985, + -0.0014956069644540548, + 0.0034894433338195086, + 0.0018136647995561361, + 0.018840787932276726, + 0.001008408609777689, + -0.019929170608520508, + -0.011994271539151669, + 0.002752210944890976, + -0.0061515686102211475, + -0.018208349123597145, + -0.028474444523453712, + -0.014141621068120003, + -0.0747160017490387, + -0.019782090559601784, + 0.003517020493745804, + 0.024106206372380257, + 0.006975209340453148, + -0.004294699523597956, + -0.0005823398823849857, + 0.01117798499763012, + -0.005372051149606705, + -0.011729530058801174, + 0.01709054969251156, + -0.025326959788799286, + 0.012832620181143284, + 0.031298357993364334, + -0.008743831887841225, + 0.01719350554049015, + 0.004191744141280651, + -0.010383759625256062, + 0.003118069376796484, + -0.034710582345724106, + -0.002274205209687352, + 0.012759081088006496, + 0.038769956678152084, + -0.01770828105509281, + 0.0006531215622089803, + 0.032916221767663956, + -0.026606544852256775, + 0.010111663490533829, + -0.020473361015319824, + -0.0076480950228869915, + 0.016252201050519943, + 0.0018623846117407084, + -0.005945658311247826, + -0.005202910862863064, + 0.019473226740956306, + 0.006603835616260767, + 0.02403266727924347, + 0.002834942890331149, + 0.02773905172944069, + -0.009758674539625645, + 0.014671104960143566, + 0.018281888216733932, + -0.013950418680906296, + -0.008876202628016472, + -0.005129371304064989, + -0.038063980638980865, + 0.0014450487215071917, + -0.021223463118076324, + -0.0012906159972772002, + 0.014972615987062454, + 0.03194550424814224, + 0.021679406985640526, + 0.019958585500717163, + -0.026444759219884872, + 0.02113521657884121, + 0.003276179078966379, + 0.020517485216259956, + -0.017870068550109863, + 0.004382946528494358, + -0.0005501664127223194, + 0.08542333543300629, + 0.013979834504425526, + 0.010244034230709076, + 0.0013283048756420612, + -0.011141215451061726, + 0.015038801357150078, + 0.012141350656747818, + 0.022370677441358566, + 0.0026529328897595406, + -0.018973158672451973, + 0.002586747519671917, + -0.012700249440968037, + 0.023650262504816055, + 0.027253691107034683, + -0.004728581756353378, + 0.024120913818478584, + 0.026885995641350746, + -0.001647281926125288, + 0.006975209340453148, + -0.012612002901732922, + -0.012163412757217884, + 0.0038461091462522745, + 0.007883421145379543, + -0.02228243090212345, + 0.00048168288776651025, + -0.015575638972222805, + 0.009913107380270958, + -0.02078222669661045, + 0.005349989514797926, + 0.01206781156361103, + 0.01847309060394764, + 0.006394248455762863, + 0.024062082171440125, + 0.024223869666457176, + -0.0008581125875934958, + 0.043329399079084396, + 0.0032283784821629524, + 0.009067405015230179, + 0.0048499214462935925, + 0.0011086059967055917, + -0.009037989191710949, + 0.001594885136000812, + -0.008662938140332699, + -0.018502505496144295, + -0.007942251861095428, + 0.0036144601181149483, + 0.012803205288946629, + 0.021620575338602066, + -0.022767789661884308, + -0.027842005714774132, + -0.011876609176397324, + 0.00333684915676713, + -0.013420935720205307, + 0.00199659401550889, + -0.012361968867480755, + 0.010795580223202705, + -0.0192820243537426, + -0.03365161642432213, + -0.032298494130373, + -0.02322373352944851, + 0.0033607494551688433, + 0.03550481051206589, + 0.01620807871222496, + -0.019767383113503456, + -0.018561337143182755, + -0.009530702605843544, + -0.01638457179069519, + -0.01638457179069519, + -0.008986511267721653, + 0.02385617233812809, + -0.0006747237639501691, + 0.006074352189898491, + -0.0012244305107742548, + 0.007464246358722448, + -0.018267180770635605, + 0.0022098582703620195, + 0.02837149053812027, + -0.021958855912089348, + 0.011354479007422924, + -0.04262341931462288, + -0.0018688193522393703, + 0.012979699298739433, + -0.002632709452882409, + 0.0041365898214280605, + -0.006346447858959436, + -0.016281617805361748, + 0.005802256520837545, + 0.004489578772336245, + 0.00236612930893898, + -0.029783446341753006, + -0.006681052036583424, + -0.0034011960960924625, + 0.010464652441442013, + -0.016075706109404564, + -0.0041512977331876755, + -0.019943878054618835, + -0.02062044106423855, + 0.019487934187054634, + 0.012376676313579082, + -0.014325469732284546, + -0.01770828105509281, + 0.0033166257198899984, + -0.0063207088969647884, + -0.025032803416252136, + 0.019370270892977715, + -0.0032872098963707685, + -0.036740269511938095, + 0.004276314750313759, + -0.005747102200984955, + -0.02141466550529003, + -0.005210264585912228, + -0.0012998083839192986, + -0.012111934833228588, + -0.0018550306558609009, + 0.0013310626382008195, + -0.013700385577976704, + -0.007751049939543009, + -0.0026988950558006763, + 0.020223326981067657, + -0.01592862792313099, + -0.00653029652312398, + 0.01610512286424637, + 0.004857275635004044, + 0.027930254116654396, + 0.004364561755210161, + 0.004816828761249781, + 0.003588721388950944, + -0.0007050587446428835, + -0.011339771561324596, + -0.009949876926839352, + 0.028621524572372437, + 0.008059915155172348, + -0.015943335369229317, + 0.009655719622969627, + -0.006158922333270311, + -0.007545139640569687, + 0.03485766425728798, + 0.015075571835041046, + -0.0233266893774271, + -0.00681710010394454, + -0.025503454729914665, + -0.0059861051850020885, + 0.013729801401495934, + -0.005776517558842897, + -0.005629438906908035, + 0.006188338156789541, + -0.04806533455848694, + 0.015163818374276161, + 0.00981015246361494, + -0.014987324364483356, + 0.013178255409002304, + 0.004449131898581982, + -0.004997000563889742, + -0.01951734907925129, + 0.0025113695301115513, + 0.00752675486728549, + 0.004265283700078726, + -0.02200298011302948, + -0.0010396628640592098, + -0.006026551593095064, + 0.02194414846599102, + 0.0020057864021509886, + -0.011052967980504036, + -0.015207942575216293, + -0.01363420020788908, + 0.013597429729998112, + 0.0054455907084047794, + -0.02738606184720993, + -0.014178391546010971, + -0.011773653328418732, + 0.0014514833455905318, + 0.01062643900513649, + -0.0028000115416944027, + -0.005478683393448591, + -0.007309813518077135, + -0.01467845868319273, + 0.027591973543167114, + -0.028577400371432304, + 0.028180288150906563, + -0.005941981449723244, + -0.021841194480657578, + -0.041946858167648315, + -0.01094265840947628, + 0.0059897820465266705, + 0.029827570542693138, + 0.015075571835041046, + -0.005684593692421913, + -0.016575774177908897, + -0.0036806457210332155, + 0.017796527594327927, + 0.018914327025413513, + -0.013869525864720345, + -0.018046561628580093, + 0.027224276214838028, + 0.010067540220916271, + 0.014612273313105106, + -0.0061515686102211475, + -0.020591024309396744, + -0.0011196369305253029, + -0.003678807057440281, + 0.011104444973170757, + -0.012398738414049149, + 0.02067927084863186, + -0.017061134800314903, + 0.02807733230292797, + -0.012781143188476562, + -0.005324250552803278, + 0.017399415373802185, + -0.0014211484231054783, + -0.01575213298201561, + 0.0027558880392462015, + -0.011758945882320404, + -0.016987595707178116, + -0.010155787691473961, + 0.008464382030069828, + 0.012656126171350479, + -0.01679639331996441, + -0.007721634116023779, + 0.012332553043961525, + 0.009398331865668297, + 0.00010864293290069327, + 0.0020682949107140303, + -0.02500338666141033, + 0.028268534690141678, + -0.008479089476168156, + -0.013972480781376362, + 0.01539914496243, + -0.005331604741513729, + 0.03759332746267319, + -0.0023054592311382294, + 0.02344435267150402, + 0.015649178996682167, + 0.020488068461418152, + -0.00833201128989458, + 0.013648907653987408, + -0.013369457796216011, + 0.0007652690983377397, + 0.004971261601895094, + 0.030592380091547966, + 0.0019800476729869843, + 0.022385384887456894, + 0.010199910961091518, + -0.02634180337190628, + 0.010082247667014599, + -0.012612002901732922, + -0.0002399221993982792, + 0.0032283784821629524, + 0.016516942530870438, + -0.006015520542860031, + -0.005868441890925169, + -0.004614595789462328, + 0.009802798740565777, + -0.006309678312391043, + -0.016546359285712242, + -0.006379540544003248, + 0.00772898830473423, + 0.00195430894382298, + -0.010119018144905567, + -0.004533702507615089, + -0.01539914496243, + -0.000856274098623544, + -0.01125887781381607, + 0.02037040702998638, + -0.0016224624123424292, + -0.029327502474188805, + -0.0024212838616222143, + 0.015119695104658604, + 0.008354072459042072, + 0.025974106043577194, + -0.026415342465043068, + -0.02322373352944851, + 0.018781956285238266, + 0.002103226026520133, + 0.018134810030460358, + 0.01957618072628975, + -0.021208755671977997, + -0.011472142301499844, + -0.00350415101274848, + 0.011597159318625927, + -0.0004676644457504153, + 0.007626032922416925, + 0.019311439245939255, + -0.03212199732661247, + 0.007765757851302624, + 0.01528148166835308, + 0.024694520980119705, + 0.0023348750546574593, + 0.016987595707178116, + 0.04862423241138458, + -0.011523619294166565, + -0.008508505299687386, + 0.006364832632243633, + 0.0009449809440411627, + 0.0034489966928958893, + 0.02442977949976921, + 0.018620168790221214, + -0.027489017695188522, + 0.022091228514909744, + -0.03168076276779175, + -0.0059640430845320225, + -0.012582587078213692, + -0.0225765872746706, + -0.018281888216733932, + 0.02438565529882908, + 0.00929537694901228, + 0.000626003893557936, + 0.022091228514909744, + -0.008258471265435219, + -0.013921002857387066, + -0.014200452715158463, + -0.00192489312030375, + -0.0017392061417922378, + -0.008251117542386055, + -0.01528148166835308, + -0.010435236617922783, + -0.0006705871783196926, + 0.0035096665378659964, + -0.006618543528020382, + 0.009920461103320122, + -0.007217889651656151, + -0.007405414711683989, + -0.007699572481215, + -0.03585779666900635, + -0.013148839585483074, + -0.004541056230664253, + 0.018370134755969048, + 0.0030371760949492455, + 0.010199910961091518, + -0.006438372191041708, + -0.026385927572846413, + 0.012376676313579082, + 0.005199233535677195, + 0.02460627444088459, + -0.004401331301778555, + -0.009714551270008087, + 0.0013246280141174793, + -0.032622065395116806, + 0.01351653691381216, + -0.038593463599681854, + 0.02326785773038864, + -0.026135893538594246, + -0.007199504412710667, + 0.0029048051219433546, + 0.012229598127305508, + -0.003274340648204088, + 0.007317167706787586, + -0.00653029652312398, + 0.015031447634100914, + -0.0005552222719416022, + -0.003289048559963703, + -0.023767925798892975, + 0.012575232423841953, + 0.012089872732758522, + -0.02506221830844879, + -0.004320438019931316, + -0.008442319929599762, + 0.014656396582722664, + 0.02345906011760235, + -0.010692624375224113, + 0.01534031331539154, + 0.0011223946930840611, + 0.007890774868428707, + 0.005338958464562893, + -0.017561202868819237, + -0.020414529368281364, + 0.01673756167292595, + -0.0013512859586626291, + -0.000511558260768652, + 0.004427070263773203, + 0.02628297172486782, + 0.00894974172115326, + 0.0033864881843328476, + 0.0017134674126282334, + 0.0065339733846485615, + 0.03550481051206589, + -0.01473729033023119, + 0.005493391305208206, + -0.012428154237568378, + 0.016575774177908897, + -0.023414935916662216, + -0.013501828536391258, + -0.01644340343773365, + 0.014354885555803776, + -0.0029305440839380026, + -0.016590483486652374, + -0.010067540220916271, + 0.017870068550109863, + -0.007559847552329302, + 0.01916436105966568, + 0.027989085763692856, + 0.010538192465901375, + -0.015149110928177834, + 0.03694618120789528, + -0.0072693671099841595, + -0.013523890636861324, + 0.01770828105509281, + 0.006048613227903843, + 0.02020861953496933, + -0.030768873170018196, + 0.025724072009325027, + 0.023767925798892975, + -0.027547849342226982, + -0.016163954511284828, + 0.00473225861787796, + -0.0007119530346244574, + 0.012317844666540623, + 0.024650398641824722, + -0.030651209875941277, + -0.02843032218515873, + -0.003485766239464283, + -0.006192015018314123, + -0.00932479277253151, + -0.03721092268824577, + -0.017575910314917564, + 0.002500338712707162, + -0.010810287669301033, + -0.006000812631100416, + 0.003377295797690749, + 0.005993458908051252, + -0.017575910314917564, + 0.036034293472766876, + -0.03312213346362114, + -0.012891451828181744, + 0.0192820243537426, + 0.02026745118200779, + -0.023547306656837463, + 0.041888028383255005, + -0.015737425535917282, + 0.0025812319945544004, + 0.0029636367689818144, + -0.01997329294681549, + 0.007692218292504549, + -0.006236138753592968, + 0.004739612806588411, + 0.013472412712872028, + -0.01870841719210148, + -0.0056184083223342896, + 0.005144079215824604, + 0.03462233766913414, + 0.001390813384205103, + 0.004644011612981558, + -0.026268264278769493, + -0.02918042242527008, + -0.012310490943491459, + -0.011736883781850338, + -0.007262012921273708, + 0.0003688459109980613, + 0.02014978788793087, + -0.0074568926356732845, + -0.001959824236109853, + -0.003487604670226574, + -0.0030812998302280903, + 0.00037068439996801317, + 0.008383488282561302, + -0.007195827551186085, + 0.002970990724861622, + 0.014700520783662796, + -0.010060186497867107, + -0.0061552454717457294, + -0.0063170320354402065, + -0.002410253044217825, + -0.018693707883358, + -0.008251117542386055, + -0.008229055441915989, + -0.003217347664758563, + 0.023429643362760544, + -0.005842703394591808, + -0.00946451723575592, + -0.00914829783141613, + -0.006048613227903843, + 0.0015112340915948153, + 0.009413039311766624, + -0.009001219645142555, + 0.006037582643330097, + 0.006486172787845135, + 0.005030093248933554, + -0.01302382256835699, + -0.012354614213109016, + -0.007751049939543009, + -0.006949470844119787, + 0.006515588611364365, + 0.010898535139858723, + -0.005916242487728596, + 0.009221836924552917, + -0.023709094151854515, + 0.07459834218025208, + 0.012273721396923065, + 0.009398331865668297, + 0.00983956828713417, + 0.003042691620066762, + -0.03665202483534813, + -0.0010938982013612986, + 0.010096956044435501, + 0.017590617761015892, + -0.003217347664758563, + -0.022679543122649193, + -0.005725040100514889, + 0.020135080441832542, + 0.015722718089818954, + -0.02107638493180275, + -0.016634605824947357, + 0.007559847552329302, + 0.003114392515271902, + 0.010898535139858723, + 0.010413175448775291, + 0.018384844064712524, + -0.011832484975457191, + -0.014751997776329517, + 0.015502099879086018, + -0.02084105834364891, + 0.0257093645632267, + -0.007111257407814264, + -0.001704275025986135, + 0.025900566950440407, + 0.038711126893758774, + 0.0061405375599861145, + -0.005294834729284048, + -0.008317302912473679, + -0.01505350973457098, + -0.0033074333332479, + 0.00906005036085844, + 0.0030059218406677246, + 0.01800243929028511, + -0.013737155124545097, + 0.00016982998931780457, + 0.007780465763062239, + 0.0007657287060283124, + 0.028680356219410896, + 0.02135583385825157, + -0.016296325251460075, + -0.00021648152323905379, + -0.005019062198698521, + -0.0020021095406264067, + 0.0010258742840960622, + 0.02675362303853035, + -0.012663479894399643, + -0.02941574901342392, + 0.000849839358124882, + 0.015104987658560276, + 0.019193775951862335, + 0.00038539228262379766, + 0.011126507073640823, + -0.01303117722272873, + -0.001094817416742444, + -7.095400360412896e-5, + -0.020105663686990738, + 0.0019212161423638463, + -0.0019745321478694677, + -0.029959941282868385, + -0.027842005714774132, + -0.00555957667529583, + -0.0056220851838588715, + -0.0221206434071064, + -0.002084841253235936, + -0.005519129801541567, + -0.01975267566740513, + -0.00920712947845459, + -0.01294292975217104, + -0.02870977111160755, + -0.0013310626382008195, + 0.014788768254220486, + 0.006122152786701918, + 0.015678593888878822, + 0.02529754489660263, + 0.018561337143182755, + 0.022547172382473946, + 0.005206587724387646, + -0.012214889749884605, + -0.01847309060394764, + 0.0030059218406677246, + -0.012891451828181744, + 0.011957501992583275, + -0.03238673880696297, + 0.008618814870715141, + -0.02484160102903843, + -0.02669479325413704, + -0.0010938982013612986, + -0.0006710467860102654, + 0.0029783446807414293, + -0.010045478120446205, + 0.003410388482734561, + -0.009221836924552917, + -0.019605597481131554, + 0.008052561432123184, + -0.00772898830473423, + 0.011986917816102505, + 0.006640605162829161, + -0.01436223927885294, + -0.014641689136624336, + -0.00036218142486177385, + -0.008309949189424515, + 0.031063031405210495, + -0.0032577943056821823, + -0.020944014191627502, + 0.013950418680906296, + -0.005537514574825764, + -0.016634605824947357, + 0.0026658023707568645, + -0.00042606875649653375, + -0.023370813578367233, + 0.013781278394162655, + 0.010163141414523125, + -0.0019009928219020367, + -0.012869390659034252, + -0.01691405661404133, + -0.005680916365236044, + 0.0014882530085742474, + -0.005861088167876005, + -0.016708144918084145, + 0.0028036886360496283, + -0.00047432896099053323, + -0.012817912735044956, + -0.007743695750832558, + -0.012634064070880413, + -0.008898263797163963, + 0.005379405338317156, + 0.014626981690526009, + 0.00880266260355711, + -0.022047104313969612, + 0.01598745957016945, + 0.00011927167361136526, + -0.005320573691278696, + 0.004879337269812822, + 0.0334751233458519, + -0.014487256295979023, + 0.04265283793210983, + -0.014943200163543224, + -0.00464768847450614, + 0.013906295411288738, + -0.01117798499763012, + -0.006611189804971218, + -0.0029948910232633352, + -0.018781956285238266, + 0.010030770674347878, + -0.012288428843021393, + 0.04444719851016998, + -0.03874054178595543, + 0.011354479007422924, + -0.013075300492346287, + 0.0003637900808826089, + 0.009743967093527317, + -0.016546359285712242, + 0.020649855956435204, + -0.027768466621637344, + 0.008001083508133888, + 0.02026745118200779, + 0.013531244359910488, + -0.030092312023043633, + 0.010950013063848019, + -0.019487934187054634, + 0.011398603208363056, + 0.012832620181143284, + 0.019370270892977715, + 0.015134402550756931, + -0.0009022362064570189, + -0.01018520351499319, + -0.0024047375191003084, + 0.01829659566283226, + -0.02588585950434208, + 0.010501422919332981, + 0.008449673652648926, + 0.017590617761015892, + 0.004107173997908831, + -0.007912836968898773, + 0.01673756167292595, + 0.0034361272118985653, + -0.0035225360188633204, + 0.012060456909239292, + -0.004364561755210161, + -0.015502099879086018, + -0.018311303108930588, + 0.024738645181059837, + -0.024768060073256493, + -0.005136725027114153, + -0.0030665919184684753, + -0.010839703492820263, + 0.024400364607572556, + -0.006225107703357935, + -0.0027080874424427748, + -0.0039600953459739685, + -0.019943878054618835, + 0.012906160205602646, + 0.021399958059191704, + 0.013795986771583557, + -0.007074487861245871, + -0.004427070263773203, + 0.0017658642027527094, + 0.0074385073967278, + 0.008501151576638222, + -0.006144214421510696, + -0.005136725027114153, + -0.020811643451452255, + -0.014788768254220486, + 0.00039688279503025115, + -0.012332553043961525, + -0.01784065179526806, + -0.027400771155953407, + 0.00798637606203556, + 0.008177578449249268, + -0.0035776905715465546, + 0.009243899025022984, + -0.005118340253829956, + 0.0015139918541535735, + 0.008795308880507946, + 0.027533141896128654, + 0.009788090363144875, + 0.00801579188555479, + 0.01077351812273264, + 0.0043020532466471195, + -0.01632574014365673, + -0.004257929511368275, + 0.0038939097430557013, + 0.019252607598900795, + 0.015708010643720627, + 0.007059779949486256, + 0.018899619579315186, + 0.003557467134669423, + -0.0036549067590385675, + 0.015531515702605247, + -0.0022411122918128967, + 0.04144679009914398, + 0.010236680507659912, + -0.0072436281479895115, + 2.8209244192112237e-5, + -0.0018394035287201405, + -0.011457433924078941, + -0.004048342350870371, + -0.007662802468985319, + -0.004713873844593763, + -0.01490643061697483, + -0.019120236858725548, + 0.0027742728125303984, + 0.008442319929599762, + -0.00043641022057272494, + -2.74049070867477e-5, + -0.005088924430310726, + -0.0072583360597491264, + 0.0010828672675415874, + 0.010722040198743343, + 0.02710661292076111, + -0.005136725027114153, + -0.016237493604421616, + 0.013965127058327198, + -0.010729394853115082, + -0.019120236858725548, + 0.0012363806599751115, + -0.004180713556706905, + -0.0027099258732050657, + -0.00833201128989458, + 0.001800795434974134, + 0.02848915383219719, + -0.03010701946914196, + 0.008559983223676682, + 0.006100091151893139, + 0.0032853714656084776, + -0.017531786113977432, + -0.0017005980480462313, + 0.015531515702605247, + 0.014612273313105106, + 0.003642037510871887, + -0.006820776965469122, + 0.00894974172115326, + -0.018384844064712524, + -3.9642316551180556e-5, + -0.004375592805445194, + -0.0028092041611671448, + -0.0044932556338608265, + 1.1368440027581528e-5, + -0.020488068461418152, + 0.005232326220721006, + -0.03282797709107399, + 0.009861630387604237, + 0.012634064070880413, + 0.006081706378608942, + 0.025841735303401947, + 0.01363420020788908, + -0.01531089749187231, + -0.005508099216967821, + -0.0068759312853217125, + -0.00693108607083559, + 0.0014055212959647179, + -0.025312252342700958, + -0.0014000057708472013, + 0.020811643451452255, + -0.019899753853678703, + -0.0031989626586437225, + -0.011986917816102505, + 0.0019065082306042314, + -0.01650223508477211, + 0.014281346462666988, + 0.017855359241366386, + 0.029724614694714546, + 0.004919784143567085, + -0.01985563151538372, + 0.019870338961482048, + 0.00390861788764596, + -0.009413039311766624, + 0.007920190691947937, + -0.01149420440196991, + -0.022782497107982635, + -0.017237629741430283, + 0.017296461388468742, + 0.020061541348695755, + -0.013104716315865517, + -0.004210128914564848, + -0.006335416808724403, + -0.0022539817728102207, + -0.0013062431244179606, + 0.008699707686901093, + 0.014487256295979023, + 4.759950752486475e-5, + 0.02216476760804653, + -0.005383082199841738, + 0.00992781575769186, + -0.01598745957016945, + 0.01887020282447338, + 0.010589669458568096, + -0.0158550888299942, + -0.01062643900513649, + 0.00801579188555479, + 0.01847309060394764, + -0.0029948910232633352, + -0.013509183190762997, + -0.012097226455807686, + 0.009170359931886196, + -0.023709094151854515, + -0.0037192536983639, + -0.019134944304823875, + 0.0010387436486780643, + 0.00479109026491642, + 0.006872254423797131, + 0.00558899249881506, + -0.004772705491632223, + 0.006978886667639017, + 0.018855495378375053, + 0.00023624523601029068, + 0.0009201614302583039, + 0.027341939508914948, + 0.0014091982739046216, + -0.013773924671113491, + -0.009596887975931168, + 0.018208349123597145, + 0.012288428843021393, + 0.014538734219968319, + 0.009045342914760113, + -0.008648230694234371, + 0.019723260775208473, + -0.014112205244600773, + -0.00767015665769577, + 0.013854817487299442, + 0.0003925164055544883, + 0.0023311981931328773, + -0.0028864203486591578, + -0.02263541892170906, + 0.00877324678003788, + -0.009221836924552917, + -0.023061947897076607, + -0.027136027812957764, + -0.01776711270213127, + -0.028577400371432304, + 0.019664429128170013, + -0.009736613370478153, + 0.01770828105509281, + -0.02442977949976921, + -0.005544868763536215, + 0.018737832084298134, + -0.006184661295264959, + 4.846129741054028e-5, + 0.0003258713404648006, + -0.0011352640576660633, + 0.025503454729914665, + -0.0024176070000976324, + 0.025856442749500275, + -0.0005800417857244611, + -0.01800243929028511, + -0.015487391501665115, + 0.003327656537294388, + 0.01077351812273264, + -0.002401060424745083, + -0.016943471506237984, + 0.010530837811529636, + -0.021282294765114784, + 0.024973971769213676, + 0.00647146487608552, + -0.004662396386265755, + -0.02240009233355522, + -0.005055831745266914, + 0.01835542730987072, + -0.005912565626204014, + 0.007023009937256575, + -0.028621524572372437, + 0.0005221295286901295, + 0.01200897991657257, + 0.019031990319490433, + -0.010494068264961243, + 0.006294970400631428, + 0.005353666376322508, + -0.020046833902597427, + -0.017222920432686806, + 0.02038511447608471, + -0.003175062360242009, + -0.010457298718392849, + 2.6298943339497782e-5, + 0.007416445761919022, + 0.0025334313977509737, + 0.009199775755405426, + 0.002717279829084873, + 0.00975132081657648, + 0.007684864569455385, + -0.0008135293028317392, + -0.01149420440196991, + 0.03456350415945053, + -0.006055967416614294, + 0.006750914268195629, + 0.003513343632221222, + 0.005030093248933554, + -0.006681052036583424, + -0.013751862570643425, + 0.009398331865668297, + -0.02685657888650894, + -0.00738335307687521, + 0.03312213346362114, + -0.01459021121263504, + 0.01166334468871355, + 0.008626168593764305, + -0.0074458615854382515, + -0.007846650667488575, + -0.028695063665509224, + -0.0022411122918128967, + 0.013222379609942436, + 0.002312813187018037, + 0.0010764325270429254, + 0.02750372514128685, + 0.007831943221390247, + -0.011685406789183617, + -0.023709094151854515, + 0.00048719835467636585, + -0.021561743691563606, + 0.0032265400514006615, + -0.011714821681380272, + 0.0035206975881010294, + 0.012053103186190128, + -0.013994542881846428, + 0.021929441019892693, + -0.04250575602054596, + 0.000978992902673781, + -0.0017189828213304281, + 0.0020793257281184196, + -0.008927679620683193, + -0.004894045181572437, + 0.004397654440253973, + 0.0019451164407655597, + 0.009677781723439693, + -0.009861630387604237, + 0.014487256295979023, + 0.000717468501534313, + 0.03659319132566452, + 0.027606680989265442, + 0.01354595273733139, + 0.018737832084298134, + 0.009574826806783676, + -0.028180288150906563, + 0.01476670615375042, + 0.001214318908751011, + -0.013803340494632721, + -0.0011545681627467275, + -0.005897857714444399, + -0.022826621308922768, + -0.010457298718392849, + 0.0197379682213068, + -0.012236951850354671, + 0.016340449452400208, + 0.019958585500717163, + 0.008067268878221512, + -0.0027724343817681074, + 0.0006894316175021231, + 0.02170882374048233, + 0.008383488282561302, + 0.0077878194861114025, + 0.0046587190590798855, + 0.008184932172298431, + 0.012376676313579082, + 0.03203375265002251, + 0.006916378159075975, + -0.0015103148762136698, + 0.01604629121720791, + 0.003395680570974946, + 0.0052543883211910725, + -0.006982563529163599, + 0.026606544852256775, + 0.025724072009325027, + -0.003425096394494176, + 0.017002303153276443, + 0.02592998370528221, + -0.0009357884991914034, + 0.01320031750947237, + 0.005603700410574675, + -0.009486579336225986, + 0.005511776078492403, + 0.01137654110789299, + 0.010604377835988998, + -0.00638321740552783, + -0.005666208919137716, + 0.017620034515857697, + -0.005805933382362127, + -0.007221566513180733, + -0.019002573564648628, + -0.0033699418418109417, + 0.013840110041201115, + 0.015207942575216293, + -0.007626032922416925, + 0.015237358398735523, + -0.006747237406671047, + -0.008229055441915989, + -0.0024304762482643127, + -0.008118746802210808, + 0.00550074502825737, + -0.005173495039343834, + -0.012531109154224396, + 0.010560253635048866, + 0.03350453823804855, + 0.018796663731336594, + 0.011803069151937962, + 0.01788477599620819, + -0.008648230694234371, + 0.0057875486090779305, + 0.01348712109029293, + 0.018664292991161346, + -0.009390978142619133, + -0.0012464923784136772, + -0.003042691620066762, + 0.01122946199029684, + 0.010383759625256062, + -0.0035317284055054188, + 0.008251117542386055, + -0.005140402354300022, + -0.0003568957617972046, + 0.007423799484968185, + -0.0076113250106573105, + 0.018223056569695473, + -0.010574962012469769, + -0.001206045737490058, + 0.022679543122649193, + -0.0010157625656574965, + 0.025326959788799286, + -0.009655719622969627, + -0.006662667263299227, + -0.01103090588003397, + -0.0043167611584067345, + -0.012148704379796982, + -0.0009100497700273991, + 0.008214347995817661, + 0.0032283784821629524, + 0.006629574578255415, + 0.008023145608603954, + -0.004544733092188835, + -0.01111915335059166, + -0.02553286962211132, + -0.006636928301304579, + -0.005294834729284048, + 0.002130803419277072, + -0.04327056556940079, + 0.0005258065066300333, + 0.016649313271045685, + -0.01062643900513649, + 0.0020204943139106035, + -0.010405821725726128, + -0.02373850904405117, + -0.011479496024549007, + 0.00019074275041930377, + 0.004452809225767851, + -0.006967855617403984, + 0.012288428843021393, + 0.02963636815547943, + -0.027489017695188522, + 0.020340990275144577, + -0.001433098572306335, + -0.009361562319099903, + 0.019134944304823875, + 0.01795831508934498, + 0.003042691620066762, + 0.0024359917733818293, + -0.008420257829129696, + -0.02529754489660263, + -0.007662802468985319, + -0.010391113348305225, + -0.003368103178218007, + 0.008133454248309135, + 0.0023698064032942057, + 0.028518568724393845, + -0.0023017823696136475, + 0.002678671618923545, + -0.010788225568830967, + -0.008133454248309135, + -0.004581503104418516, + 0.0034324503503739834, + -0.009846922010183334, + 0.011766299605369568, + -0.016928764060139656, + 0.012464923784136772, + -0.0011711145052686334, + -0.0010277127148583531, + -0.0007790577365085483, + 0.0007078164489939809, + -0.0063280630856752396, + -0.0035390823613852262, + 0.017002303153276443, + 0.002660286845639348, + 0.0027099258732050657, + -0.004566795192658901, + -0.0035464363172650337, + 0.004390300717204809, + 0.009538056328892708, + 0.016884639859199524, + -0.010854411870241165, + -0.002998567884787917, + 0.02089988999068737, + -0.009457163512706757, + -0.021929441019892693, + 0.005125694442540407, + 0.007512046955525875, + -0.027062488719820976, + 0.011678052134811878, + 0.0017107096500694752, + -0.023944420740008354, + 0.006232461892068386, + -0.0022172119934111834, + -0.0037118997424840927, + 0.009390978142619133, + 0.003868171013891697, + -0.003393842140212655, + 0.000635655946098268, + 0.006114799063652754, + -0.001447806367650628, + -0.014560796320438385, + -0.015649178996682167, + 0.014862307347357273, + -0.009111528284847736, + 0.012347260490059853, + 0.00032380304764956236, + -0.023900296539068222, + 0.00992781575769186, + -0.01847309060394764, + 0.03753449767827988, + -0.0012069649528712034, + -0.007030364125967026, + -0.024856308475136757, + -0.01259729452431202, + -0.011428019031882286, + -0.016928764060139656, + -0.013273856602609158, + 0.013523890636861324, + 0.016178661957383156, + 0.0006742640980519354, + -0.0027871422935277224, + -0.0005129371420480311, + -0.005820641294121742, + -0.032916221767663956, + -0.0013770248042419553, + 0.007581909187138081, + 0.02373850904405117, + -0.000978992902673781, + -0.021208755671977997, + 0.015487391501665115, + -0.01969384402036667, + -0.0013696708483621478, + -4.630682451534085e-5, + 0.011876609176397324, + 0.003428773256018758, + -1.5296764104277827e-5, + 0.01276643481105566, + 0.002733826171606779, + -0.025915274396538734, + -0.0026988950558006763, + -0.01320031750947237, + -0.008655584417283535, + 0.008148162625730038, + -0.015575638972222805, + -0.029430456459522247, + 0.0017548332689329982, + -0.0037872777320444584, + -0.0002493444480933249, + -0.018046561628580093, + -0.022150058299303055, + -0.008795308880507946, + -0.022958992049098015, + 0.00981015246361494, + -0.003132777288556099, + -0.012332553043961525, + 0.003952741157263517, + -0.01389158796519041, + 0.01305323839187622, + -0.004511640407145023, + 0.013185609132051468, + -0.021561743691563606, + 0.023812048137187958, + 0.003555628703907132, + 0.012266367673873901, + 0.017987729981541634, + -0.017414122819900513, + -0.02576819621026516, + -0.002588585950434208, + 0.005423528607934713, + -0.008846786804497242, + 0.00940568558871746, + -0.003471058327704668, + 0.0076333871111273766, + 0.006600158754736185, + -0.005055831745266914, + -0.005202910862863064, + -0.024518027901649475, + 0.003208155045285821, + 0.025621118023991585, + -0.017164088785648346, + 0.011111799627542496, + 0.01604629121720791, + -0.004018926527351141, + 0.006375863682478666, + 0.017590617761015892, + -0.018252471461892128, + 0.004956553690135479, + 0.0022411122918128967, + 0.020296866074204445, + -0.0027742728125303984, + 0.034945908933877945, + -0.026385927572846413, + -0.02951870486140251, + -0.012295783497393131, + 0.002645578933879733, + 0.022444216534495354, + -0.011832484975457191, + -0.00992781575769186, + 0.007519400678575039, + -0.009273314848542213, + 0.030445300042629242, + -0.0019635013304650784, + -0.01383275631815195, + 0.013766570948064327, + -0.0046844580210745335, + 0.00048398098442703485, + 0.004632980562746525, + 0.017061134800314903, + -0.02084105834364891, + 0.001302566146478057, + -0.0009909430518746376, + 0.012156058102846146, + 0.0038240475114434958, + -0.012612002901732922, + 0.021958855912089348, + 0.0035666595213115215, + 0.005820641294121742, + -0.0020664564799517393, + -0.0016500396886840463, + -0.007765757851302624, + 0.02044394612312317, + -0.007773111574351788, + -0.0034067113883793354, + -0.022885452955961227, + -0.03341628983616829, + -0.0050374469719827175, + -0.010111663490533829, + -0.014751997776329517, + 0.012839974835515022, + 0.007964313961565495, + 0.010957366786897182, + 0.002382675651460886, + -0.01447990257292986, + -0.0240767914801836, + 0.003382811089977622, + -0.0340634360909462, + 0.0031640315428376198, + 0.005721363238990307, + 0.023988543078303337, + -0.0019083467777818441, + 0.01667873002588749, + 0.02657712996006012, + 0.0007689460762776434, + -0.01975267566740513, + -0.006625897716730833, + 0.01404601987451315, + 0.010258742608129978, + 0.009832214564085007, + -0.00798637606203556, + -0.018693707883358, + -0.0025187234859913588, + -0.0037192536983639, + 0.0020958720706403255, + -0.021282294765114784, + -0.018605461344122887, + -0.011472142301499844, + 0.016928764060139656, + -0.00978073664009571, + 0.008677645586431026, + -0.0010258742840960622, + -0.005482360254973173, + 0.006283939350396395, + -0.006283939350396395, + 0.01175159215927124, + 0.020458653569221497, + 0.011817777529358864, + -0.025488747283816338, + -0.012759081088006496, + -0.015384436585009098, + 0.008317302912473679, + 0.022076519206166267, + -0.02326785773038864, + 0.0074458615854382515, + 0.028577400371432304, + -0.011898670345544815, + -0.023664969950914383, + 0.007721634116023779, + 0.00405201967805624, + -0.013222379609942436, + 0.00978073664009571, + -0.021782362833619118, + -0.020340990275144577, + 0.00134668976534158, + -0.010964720509946346, + 0.0011922570411115885, + 0.0002766918914858252, + -0.012619356624782085, + -0.0016160276718437672, + -0.0020554254297167063, + 0.023179611191153526, + 0.0055963462218642235, + 0.0041108508594334126, + -0.020017417147755623, + 0.026797747239470482, + 0.0043020532466471195, + 0.006806069053709507, + -0.0029011282604187727, + -0.01383275631815195, + -0.011589805595576763, + -0.01847309060394764, + -0.013759216293692589, + 0.014318116009235382, + -0.0050484780222177505, + -0.0007891693967394531, + 0.006416310090571642, + 0.002014978788793087, + 0.002219050657004118, + -0.024929847568273544, + -0.004783736076205969, + -0.004636657424271107, + -0.006008166819810867, + 0.014023958705365658, + 0.008405550383031368, + 0.0026382249779999256, + 0.005515452940016985, + 0.020532192662358284, + 0.0005726878880523145, + -0.011530973948538303, + 0.0036843225825577974, + 5.3028783440822735e-5, + -0.030415885150432587, + -0.0018292919266968966, + -0.003978480119258165, + 0.0022576588671654463, + 0.00664428249001503, + 0.00405201967805624, + -0.002840458182618022, + 0.0048609524965286255, + -0.007618679199367762, + 0.01445048674941063, + 0.007773111574351788, + -0.004585179965943098, + -0.011670698411762714, + -0.015266774222254753, + 0.01222224347293377, + -0.01604629121720791, + -0.004500609822571278, + 0.024973971769213676, + -0.02072339504957199, + -0.007000948302447796, + 0.01882607862353325, + 0.022708958014845848, + 0.0038130164612084627, + 0.018384844064712524, + 0.002261335728690028, + -0.01383275631815195, + -0.0025352698285132647, + 0.02101755328476429, + 0.02941574901342392, + -0.010920597240328789, + 0.006030228454619646, + 0.016605190932750702, + -0.00735393725335598, + -0.01308265421539545, + -0.0007997406646609306, + -0.008412904106080532, + -0.005129371304064989, + -0.003642037510871887, + -0.0038497862406075, + -0.0034489966928958893, + 0.009427747689187527, + -0.005489713978022337, + -0.004379269666969776, + 0.011038259603083134, + 0.007298782933503389, + 0.006177307106554508, + 0.01018520351499319, + 0.010324927978217602, + -0.0012510885717347264, + 0.00626923143863678, + -0.008780601434409618, + 5.4378917411668226e-5, + 0.021900026127696037, + -0.00653029652312398, + 0.026209432631731033, + 0.019649719819426537, + 0.004438101314008236, + -0.02292957715690136, + -0.014318116009235382, + -0.020914597436785698, + -0.01788477599620819, + 0.009824859909713268, + -0.01672285422682762, + 0.020576316863298416, + -0.00981015246361494, + -9.818655234994367e-5, + 0.008912972174584866, + 0.0027099258732050657, + -0.0018072300590574741, + -0.007214212324470282, + 0.013384166173636913, + 0.028798017650842667, + -0.0034508351236581802, + -0.004574148915708065, + -0.01922319270670414, + -0.009067405015230179, + -0.00573239428922534, + -7.193069905042648e-5, + -0.009471870958805084, + -0.0013990865554660559, + -0.012810559011995792, + 0.004158651456236839, + -0.006250846665352583, + 0.013913649134337902, + 0.013847463764250278, + 0.0031382928136736155, + 0.004029957577586174, + -0.0006995432777330279, + -0.005728716962039471, + -0.011883962899446487, + -0.043505892157554626, + -0.009155651554465294, + -0.02037040702998638, + 0.028503861278295517, + -0.027077198028564453, + 0.01317090168595314, + -0.019120236858725548, + -0.0038424322847276926, + -0.018973158672451973, + -0.011126507073640823, + 0.007000948302447796, + 0.010516130365431309, + 0.008434966206550598, + 0.013803340494632721, + 0.024635689333081245, + 0.024459196254611015, + -0.0004812232800759375, + -0.010677916929125786, + 0.0015121533069759607, + -0.010494068264961243, + 0.004118205048143864, + -0.026003522798419, + 0.007765757851302624, + 0.0020535869989544153, + -0.011501558125019073, + 0.0197379682213068, + -0.0014965262962505221, + 0.0036273295991122723, + 0.002327521098777652, + 0.010891181416809559, + -6.285318522714078e-5, + -0.01080293394625187, + -0.0233266893774271, + -0.006806069053709507, + 0.016340449452400208, + -0.014112205244600773, + -0.01609041541814804, + 0.024826891720294952, + 0.013273856602609158, + -0.00455944100394845, + 0.001897315843962133, + -0.002779788337647915, + 0.016987595707178116, + -0.007453215308487415, + -0.00609641382470727, + 0.019826214760541916, + 0.0039233253337442875, + 0.015649178996682167, + 0.015531515702605247, + -0.01737000048160553, + 0.0033129488583654165, + 0.005309542641043663, + -0.0036346835549920797, + -0.003673291765153408, + -0.01851721480488777, + -0.01695817895233631, + 0.00958218052983284, + 0.0158550888299942, + 0.012457570061087608, + 0.01597275212407112, + 0.00836142711341381, + -0.0039049407932907343, + 0.02490043081343174, + 0.004640334285795689, + -0.009648365899920464, + 0.018281888216733932, + 0.001014843350276351, + -0.011214754544198513, + -0.017296461388468742, + -0.03941710293292999, + -0.02413562312722206, + 0.010854411870241165, + -0.0001148478186223656, + 0.003513343632221222, + -0.012987053021788597, + -0.023003116250038147, + -0.002515046624466777, + -0.01776711270213127, + 0.014060728251934052, + 0.0022576588671654463, + 0.026135893538594246, + 0.003761539002880454, + -0.006600158754736185, + 0.011280939914286137, + 0.001309000886976719, + -0.016472820192575455, + -0.017046427354216576, + 0.008751185610890388, + -0.005144079215824604, + 0.009045342914760113, + -0.000591532327234745, + -0.015104987658560276, + 0.001663828268647194, + -0.0013779440196231008, + 0.005710332188755274, + 0.0055963462218642235, + 0.014119559898972511, + -0.005927273537963629, + -0.0011738722678273916, + 0.01638457179069519, + 0.030151143670082092, + 0.0011040098033845425, + 0.011082383804023266, + -0.0019322470761835575, + -0.010707332752645016, + -0.008898263797163963, + 0.010361697524785995, + -0.014001896604895592, + -0.0009072920074686408, + -0.004213806241750717, + -0.0065229423344135284, + -0.004956553690135479, + 0.01876724883913994, + -0.004401331301778555, + -0.0054198517464101315, + -0.022782497107982635, + 0.003469219896942377, + 0.0020352022256702185, + -0.007765757851302624, + -0.00883207842707634, + -0.0028018502052873373, + 0.01695817895233631, + -0.017355291172862053, + -0.010302865877747536, + -0.00880266260355711, + -0.006784006953239441, + -0.00672885263338685, + 0.011185338720679283, + -0.0036806457210332155, + -0.0005386759294196963, + -0.0010323089081794024, + 0.004375592805445194, + 0.005081570707261562, + 0.0026878640055656433, + 0.014126913622021675, + 0.011354479007422924, + -0.012501693330705166, + 0.008148162625730038, + 0.0016279778210446239, + 0.0004083733365405351, + 0.005092601757496595, + -0.005177171900868416, + 0.010501422919332981, + -0.0008622491732239723, + 0.0035445978865027428, + -0.0014505641302093863, + -0.00795696023851633, + -0.007618679199367762, + -0.011979564093053341, + 0.001315435511060059, + -0.009861630387604237, + -0.013413581997156143, + -0.0010258742840960622, + -0.03394577279686928, + -0.001828372711315751, + 0.011560389772057533, + 0.0008640876621939242, + -0.007394384127110243, + 0.016119830310344696, + 0.016766976565122604, + -0.005258065182715654, + -0.006044936366379261, + -0.0030353376641869545, + -0.006177307106554508, + -0.0025058542378246784, + -0.008626168593764305, + 0.007743695750832558, + -0.0019340855069458485, + -0.0052543883211910725, + 0.0063317399471998215, + 0.0034379656426608562, + 0.017208212986588478, + 0.012707604095339775, + 0.012523755431175232, + 0.001447806367650628, + 0.011413310654461384, + -0.00581696443259716, + 0.009743967093527317, + -0.006265554577112198, + 0.024709228426218033, + -0.02020861953496933, + 0.02582702785730362, + 0.012810559011995792, + 0.017399415373802185, + 0.0036824841517955065, + 0.009163006208837032, + -0.010508776642382145, + 0.014068081974983215, + 0.0029617983382195234, + 0.006511911284178495, + -0.006258200854063034, + 0.005202910862863064, + -0.009111528284847736, + 0.0010267934994772077, + -0.013678323477506638, + 0.008265825919806957, + 0.025547578930854797, + 0.0015452461084350944, + 0.00983956828713417, + 0.010324927978217602, + 0.02425328455865383, + 0.003978480119258165, + 0.007048748899251223, + -0.016252201050519943, + 0.0028036886360496283, + -0.007162734866142273, + 0.012582587078213692, + -0.01351653691381216, + 0.008655584417283535, + 0.01305323839187622, + -0.01276643481105566, + -0.00935420859605074, + -0.01882607862353325, + -0.01169276051223278, + -0.00427263742312789, + 0.017164088785648346, + 0.00031989626586437225, + 0.016708144918084145, + 0.0009431424550712109, + -0.0016665860312059522, + -0.009229191578924656, + -0.008368780836462975, + -0.0088909100741148, + -0.007618679199367762, + -0.007971667684614658, + -0.006000812631100416, + -0.01784065179526806, + -0.02425328455865383, + 0.00641263322904706, + 0.015605054795742035, + 0.004279991611838341, + 0.03624020144343376, + -0.0008820128277875483, + -0.034475259482860565, + -0.000485359865706414, + -0.006552358157932758, + 0.0005230488022789359, + -0.01569330133497715, + -0.002281558932736516, + 0.00041710614459589124, + 0.004018926527351141, + -0.017340583726763725, + -0.003794631687924266, + 0.011280939914286137, + 0.005497068166732788, + -0.01545797660946846, + -0.013972480781376362, + 0.009795444086194038, + 0.01065585482865572, + -0.0008480008691549301, + 0.02710661292076111, + -0.006232461892068386, + 0.002189634833484888, + 0.0005046639707870781, + 0.013479767367243767, + -0.009824859909713268, + 0.007346583530306816, + 0.0029893754981458187, + -0.008662938140332699, + 0.029048051685094833, + 0.005158787127584219, + -0.003040853189304471, + 0.019179068505764008, + 0.006089060101658106, + -0.010266096331179142, + 0.01782594434916973, + -0.01536972913891077, + 0.004195421002805233, + -0.014465195126831532, + -0.0008686838555149734, + 0.02326785773038864, + 0.01325914915651083, + 8.721309859538451e-5, + -0.020238036289811134, + 0.004662396386265755, + 0.007831943221390247, + 0.0014468871522694826, + 0.007449538446962833, + 0.020017417147755623, + 0.005574284587055445, + 0.005088924430310726, + -0.012023687362670898, + -0.0052543883211910725, + 0.00320631661452353, + 0.014310762286186218, + -0.011523619294166565, + -0.0033699418418109417, + 0.010155787691473961, + -0.01294292975217104, + 0.008155516348779202, + -0.020914597436785698, + 0.019090821966528893, + -0.015825673937797546, + -0.0032302169129252434, + -0.005754455924034119, + 0.011097091250121593, + -0.008258471265435219, + -0.006276585627347231, + -0.009163006208837032, + 0.0029893754981458187, + 0.007103903219103813, + 0.0059493351727724075, + -0.02298840880393982, + 0.02541520819067955, + 0.017752405256032944, + -0.003366264747455716, + -0.02565053291618824, + 0.015222650021314621, + -0.022341260686516762, + 0.016163954511284828, + 7.313720561796799e-5, + -0.024297408759593964, + 0.0028790663927793503, + 0.0016509589040651917, + -0.019532058387994766, + -0.0019469548715278506, + -0.02872447855770588, + -0.004691812209784985, + -0.0016123508103191853, + 0.018693707883358, + 0.007993729785084724, + 0.014038666151463985, + 0.006283939350396395, + -0.011766299605369568, + -0.01291351392865181, + -0.0015884505119174719, + 0.006942116655409336, + 0.05556635186076164, + 0.03385752812027931, + 0.012964991852641106, + -0.008118746802210808, + -0.0015562769258394837, + -0.017855359241366386, + 0.01485495362430811, + -0.007854005321860313, + -0.03165134787559509, + -0.004831536673009396, + 0.0035354052670300007, + -0.009538056328892708, + 0.0035832058638334274, + 0.009692489169538021, + -0.015443268232047558, + 0.01528148166835308, + 0.0004660557897295803, + -0.008530567400157452, + -0.006081706378608942, + -0.001174791483208537, + 0.0074568926356732845, + 0.008905618451535702, + -0.008317302912473679, + -0.002605132292956114, + 0.014068081974983215, + -0.0022705281153321266, + -0.016281617805361748, + -0.01892903447151184, + -0.009596887975931168, + 0.009001219645142555, + 0.02176765352487564, + -0.021223463118076324, + -0.036681439727544785, + 0.016766976565122604, + -0.02101755328476429, + 0.02269425056874752, + -0.005721363238990307, + 0.006169953383505344, + 0.003029822139069438, + -0.011928086169064045, + -0.027533141896128654, + -0.009971939027309418, + 0.004346176981925964, + -0.021297002211213112, + -0.009626303799450397, + 0.0033460415434092283, + 0.004827859811484814, + 0.004769028164446354, + -0.011678052134811878, + -0.018105393275618553, + -0.006379540544003248, + 0.010221973061561584, + -0.027297815307974815, + -0.0025334313977509737, + -0.023767925798892975, + 4.4755601265933365e-5, + 0.023429643362760544, + -0.016075706109404564, + -0.006772976368665695, + -0.01308265421539545, + -0.014604919590055943, + 0.003151162061840296, + 0.005908888764679432, + 0.026650669053196907, + -0.011192692443728447, + 0.021797070279717445, + -0.009052696637809277, + 0.01143537275493145, + 0.004261606838554144, + -0.013715093024075031, + 0.0008259390597231686, + -0.02629767917096615, + -0.0005864765262231231, + -0.009229191578924656, + -0.019414395093917847, + -0.011994271539151669, + -0.01806127093732357, + -0.025812320411205292, + -0.020944014191627502, + 0.018017146736383438, + 0.003835078328847885, + -0.0002792198210954666, + -0.0007698652916587889, + 0.003187931841239333, + 0.0006531215622089803, + 0.008508505299687386, + -0.006236138753592968, + 0.010141079314053059, + 0.005879472941160202, + 0.00399318803101778, + -0.033033885061740875, + -0.0026216786354780197, + -0.02819499559700489, + -0.00033621283364482224, + 0.009288023225963116, + -0.0024764384143054485, + -0.0057838717475533485, + 0.0006659909267909825, + -0.005320573691278696, + 0.01363420020788908, + 0.004397654440253973, + 0.01950264163315296, + -0.002629032591357827, + -0.0019396009156480432, + -0.018384844064712524, + -0.032975055277347565, + -0.007603971287608147, + -0.0006719660013914108, + 0.007453215308487415, + 0.010074893943965435, + -0.015193234197795391, + 0.016840515658259392, + 0.006408956367522478, + 0.017443539574742317, + 0.0048719835467636585, + 0.022444216534495354, + -0.0013062431244179606, + -0.005276449955999851, + 0.003794631687924266, + 0.021664699539542198, + -0.010464652441442013, + 0.013192963786423206, + 0.03885820508003235, + 0.017002303153276443, + 0.006486172787845135, + -0.0015498423017561436, + -0.004063050262629986, + 0.032622065395116806, + 0.0014781414065510035, + -0.014597565867006779, + 0.008986511267721653, + -0.0012216728646308184, + -0.004254252649843693, + -0.005519129801541567, + -0.006236138753592968, + 0.0014505641302093863, + 0.010413175448775291, + -0.020473361015319824, + 0.02003212459385395, + -0.004217483103275299, + -0.005383082199841738, + 0.03318096697330475, + 0.030651209875941277, + 0.004757997579872608, + -0.005813287571072578, + -0.0018357265507802367, + -0.009596887975931168, + 0.02454744279384613, + 0.003425096394494176, + -0.005666208919137716, + -0.00042560911970213056, + -0.007574555464088917, + 0.0030077602714300156, + 0.011295647360384464, + -7.537785859312862e-5, + 0.007883421145379543, + -0.0011297486489638686, + 0.015075571835041046, + -0.008736477233469486, + 0.005912565626204014, + -0.000570389733184129, + 0.023606138303875923, + 0.0036089448258280754, + 0.006883285474032164, + 0.008971803821623325, + -0.0017346099484711885, + -0.008993864990770817, + 0.01108973752707243, + -0.018679000437259674, + -0.0022116967011243105, + -0.017384707927703857, + 0.0013871364062651992, + 0.0013053239090368152, + 0.011508911848068237, + 0.01134712528437376, + 0.0007813558331690729, + -0.010449944995343685, + -0.004897722043097019, + -0.039858341217041016, + -0.017855359241366386, + 0.00767015665769577, + 0.025841735303401947, + 0.01259729452431202, + -0.00382037041708827, + -0.01253846287727356, + 0.02141466550529003, + -0.0021418342366814613, + 0.010413175448775291, + 0.013759216293692589, + -0.0032982409466058016, + 0.002515046624466777, + 0.018796663731336594, + -0.012501693330705166, + -0.012670833617448807, + -0.015163818374276161, + 0.010302865877747536, + 0.00638321740552783, + 0.001286019803956151, + -0.01039846707135439, + -0.007015656214207411, + 0.0020572638604789972, + -0.014979970641434193, + -0.01713467389345169, + -0.008685000240802765 + ], + "3295a522-57b4-4146-a414-09bc00dbc9e7": [ + -0.015387664549052715, + -0.006393799092620611, + -0.005322256591171026, + 0.011913030408322811, + -0.03901674970984459, + -0.04090770706534386, + 0.024440621957182884, + 0.024330316111445427, + -0.006405617576092482, + 0.01722346991300583, + -0.007079271133989096, + 0.02470850758254528, + -0.004853456746786833, + -0.004806182812899351, + -0.0400252602994442, + 0.01812167465686798, + -0.037220340222120285, + 0.037503983825445175, + 0.00238536368124187, + -0.013347006402909756, + 0.07292792201042175, + -0.009242053143680096, + -0.044059302657842636, + 0.008304454386234283, + -0.005294680129736662, + -0.010092983953654766, + -0.0030471987556666136, + -0.0012586683733388782, + -0.04204228147864342, + -0.016388297080993652, + 0.01057360228151083, + 0.01820046454668045, + 0.029546206817030907, + -0.03194142132997513, + 0.004329504445195198, + -0.05972273275256157, + -0.0054995338432490826, + -0.0078001986257731915, + -0.008556582033634186, + -0.01980777643620968, + -0.029829850420355797, + 0.02212419919669628, + 0.0322723388671875, + 0.004037981852889061, + -0.038512494415044785, + 0.018578654155135155, + 0.02073749713599682, + -0.013157910667359829, + -0.01225182693451643, + -0.0007770652300678194, + -0.007516555022448301, + 0.018783507868647575, + -0.007020178716629744, + 0.006697140168398619, + 0.018231980502605438, + -0.01913018338382244, + 0.005062249954789877, + 0.06775930523872375, + 0.015230084769427776, + -0.06265372037887573, + -0.011676660738885403, + 0.017333775758743286, + 0.009068716317415237, + 0.0020485371351242065, + -0.02462971769273281, + -0.030507443472743034, + -0.029388627037405968, + -0.0027162812184542418, + -0.04714786633849144, + -0.005003157537430525, + 0.008265059441328049, + 0.019886566326022148, + -0.007957778871059418, + -0.0026040056254714727, + -0.03129534423351288, + 0.0015029170317575336, + 0.05039400979876518, + 0.022218747064471245, + 0.029309837147593498, + 0.02102114073932171, + -0.03854401037096977, + -0.0011739692417904735, + 0.03216203302145004, + 0.02984560839831829, + 0.07954626530408859, + 0.012440922670066357, + -0.01727074384689331, + -0.04090770706534386, + -0.012866388075053692, + -0.02158842794597149, + 0.0007105862605385482, + 0.03542393445968628, + -0.015434938482940197, + -0.009982678107917309, + -0.010266321711242199, + -0.01779075711965561, + 0.040371935814619064, + 0.0046761794947087765, + 0.016451328992843628, + -0.008217785507440567, + 0.014867651276290417, + 0.03889068588614464, + -0.054774727672338486, + 0.021446606144309044, + -0.009273569099605083, + -0.008627492934465408, + 0.002923104679211974, + -0.014914925210177898, + -0.019177457317709923, + 0.043649595230817795, + -0.015387664549052715, + -0.021336300298571587, + -0.012314858846366405, + -0.018909571692347527, + -0.04985823854804039, + -0.0374409519135952, + -0.005716206040233374, + -0.015655551105737686, + 0.004754969384521246, + -0.033911168575286865, + 0.057516615837812424, + 0.019792018458247185, + 0.0004481174692045897, + 0.020769013091921806, + -0.0023026345297694206, + 0.01879926584661007, + 0.022045409306883812, + 0.008328091353178024, + 0.007138363551348448, + 0.003539635566994548, + -0.008083842694759369, + -0.03753549978137016, + -3.9025613659759983e-5, + -0.003679487621411681, + 0.006350464653223753, + 0.026331579312682152, + 0.003021592041477561, + 0.061203982681035995, + -0.011369380168616772, + 0.04528842493891716, + -0.04554055258631706, + -0.04513084515929222, + -0.010053589008748531, + -0.016246475279331207, + 0.01711316406726837, + 0.007236850913614035, + -0.04147499427199364, + 0.05546807870268822, + -0.004534358158707619, + 0.01936655305325985, + -0.04030890390276909, + -0.03113776259124279, + 0.026016419753432274, + 0.014954320155084133, + -0.014812498353421688, + -0.004790424834936857, + 0.0015856464160606265, + 0.055657174438238144, + 0.010337232612073421, + 0.003313114633783698, + -3.323948476463556e-5, + -0.07595344632863998, + 0.0013059423072263598, + 0.002105659805238247, + 0.04301927611231804, + 0.01328397449105978, + 0.030271073803305626, + 0.017885304987430573, + -0.037945207208395004, + 0.022187231108546257, + 0.030964424833655357, + -0.012306979857385159, + 0.020548401400446892, + 0.0019530042773112655, + 0.010132378898561, + -0.00029423096566461027, + 0.03699972853064537, + 0.03545545041561127, + 0.026615222916007042, + -0.013614892028272152, + -0.01763317734003067, + -0.012370011769235134, + 0.00553104979917407, + -0.011519080959260464, + -0.023952124640345573, + 0.0249133612960577, + 0.029089225456118584, + 0.011716055683791637, + 0.0027241602074354887, + 0.004246775060892105, + -0.008406881242990494, + -0.01727074384689331, + 0.0054325624369084835, + 0.042515020817518234, + -0.021903587505221367, + -0.026741286739706993, + 0.007508676033467054, + -0.008462034165859222, + 0.02883709780871868, + 0.02288058213889599, + -0.022738760337233543, + -0.03146868199110031, + -0.07860078662633896, + 0.04897579178214073, + -0.03473058342933655, + 0.05357712134718895, + -0.01682952046394348, + 0.006062881555408239, + 0.039647068828344345, + -0.020469611510634422, + 0.025323068723082542, + -0.04617087170481682, + 0.020832045003771782, + -0.0018230009591206908, + -0.01698710024356842, + 0.004238896071910858, + -0.013843382708728313, + 0.025969145819544792, + 0.010195410810410976, + -0.02819102071225643, + -0.015923436731100082, + 0.008816588670015335, + -0.0147809823974967, + -0.023227257654070854, + -0.04714786633849144, + -0.03469906747341156, + -0.00562165817245841, + 0.03488816320896149, + -0.0300819780677557, + -0.0044240523129701614, + 0.05260012671351433, + 0.0018525471678003669, + 0.007508676033467054, + -0.026016419753432274, + -0.0038547951262444258, + 0.019760502502322197, + 0.01722346991300583, + 0.023463627323508263, + 0.006708958651870489, + -0.0303341057151556, + 0.023479385301470757, + 0.02086356095969677, + -0.0029073467012494802, + 0.02726130001246929, + 0.004420112818479538, + 0.019744744524359703, + -0.009801461361348629, + 0.024046672508120537, + 0.021257510408759117, + -0.026394611224532127, + 0.011676660738885403, + 0.019665954634547234, + 0.006078639533370733, + 0.0032737196888774633, + -0.023605449125170708, + 0.046486031264066696, + 0.03482513129711151, + -0.05329347774386406, + 0.004778606351464987, + -0.015710704028606415, + 0.02236056886613369, + -0.00810747966170311, + 0.007382612209767103, + -0.01711316406726837, + 0.04547752067446709, + -0.03826036676764488, + 0.018830781802535057, + -0.04153802618384361, + 0.002655219053849578, + 0.04875518009066582, + -0.01629374921321869, + -0.006464709993451834, + 0.018452592194080353, + -0.017365291714668274, + 0.015261600725352764, + -0.013378522358834743, + -0.019760502502322197, + 0.007689892780035734, + -0.009155385196208954, + -0.0009646836551837623, + 0.0024720325600355864, + -0.0008282786584459245, + -0.016002226620912552, + 0.007993234321475029, + -0.0013670044718310237, + -0.0037444892805069685, + -0.02426728419959545, + 0.022943614050745964, + -0.04333443567156792, + -0.007256548386067152, + -0.021887829527258873, + -0.01403247844427824, + 0.019792018458247185, + 0.007768682669848204, + 0.012102126143872738, + -0.004971641581505537, + -0.00810747966170311, + -0.025748534128069878, + -0.016451328992843628, + 0.012598502449691296, + -0.013906414620578289, + -0.028127988800406456, + -0.008525066077709198, + -0.008911136537790298, + 0.020832045003771782, + -0.029215289279818535, + 0.015986468642950058, + 0.006760172080248594, + -0.027970409020781517, + 0.011849998496472836, + 0.052064355462789536, + -0.008391123265028, + -0.017538629472255707, + -0.02166721783578396, + 0.00820990651845932, + -0.0031456861179322004, + 0.01214940007776022, + 0.005527110304683447, + -0.0022277841344475746, + -0.03495119512081146, + 0.019965356215834618, + -0.006287432741373777, + -0.07179334759712219, + 0.02866376005113125, + 0.04034041985869408, + -0.03728337213397026, + 0.0578317753970623, + -0.005121342372149229, + -0.016593150794506073, + -0.03860704228281975, + -0.017444081604480743, + -0.022139957174658775, + -0.027308573946356773, + -0.014977957122027874, + -0.006701079662889242, + -0.05685478076338768, + -0.04075012728571892, + -0.038953717797994614, + -0.009896009229123592, + -0.01057360228151083, + -0.0042585935443639755, + 0.007839594036340714, + -0.005306498613208532, + 0.0015777674270793796, + 0.013803987763822079, + -0.0030550777446478605, + -0.0005835375632159412, + 0.005873785819858313, + -0.017239227890968323, + 0.012826993130147457, + 0.0010380567982792854, + -0.014914925210177898, + 0.01077845599502325, + -0.004896791186183691, + 0.03885916993021965, + 0.01307912077754736, + -0.01552948635071516, + -0.03138989210128784, + 0.013764592818915844, + -0.008091721683740616, + 0.0213047843426466, + -0.027513427659869194, + -0.043208371847867966, + 0.007394430693238974, + -0.024030914530158043, + 0.003604637226089835, + 0.001506856526248157, + -0.01714468002319336, + 0.003651911159977317, + 0.02636309526860714, + -0.039205845445394516, + -0.002310513285920024, + 0.008036568760871887, + -0.01504098903387785, + -0.03359600901603699, + -0.023148467764258385, + 0.025496406480669975, + -0.008375365287065506, + -0.021887829527258873, + 0.022849066182971, + -0.009470543824136257, + 0.031122004613280296, + 0.005846209358423948, + -0.024235768243670464, + 0.021210236474871635, + 0.008438397198915482, + 0.006200763862580061, + -0.01207061018794775, + 0.01698710024356842, + 0.0016920127673074603, + -0.03681063652038574, + 0.012661534361541271, + -0.020642949268221855, + 0.018058642745018005, + -0.01585252583026886, + 0.010723303072154522, + -0.0069610862992703915, + -0.010683908127248287, + 0.007232911419123411, + -0.028332842513918877, + 0.014914925210177898, + -0.0012419255217537284, + -0.021746007725596428, + 0.02987712435424328, + 0.02551216445863247, + -0.01698710024356842, + -0.02563822828233242, + -0.02187207154929638, + 0.012180916033685207, + -0.005932878237217665, + -0.014796740375459194, + 0.0039000993128865957, + 0.026221273466944695, + 0.013937930576503277, + 0.045225393027067184, + 0.0087771937251091, + 0.022455116733908653, + 0.04081315919756889, + -0.03636941313743591, + -0.02321149967610836, + 0.03643244504928589, + 0.0733061134815216, + 0.00039985866169445217, + 0.02442486397922039, + -0.010723303072154522, + 0.014710071496665478, + 0.02179328165948391, + 0.03586515784263611, + -0.031185036525130272, + -0.004443749785423279, + -0.026142483577132225, + 0.022833308205008507, + -0.005215890239924192, + -0.003953282721340656, + 0.0022218748927116394, + -0.026315821334719658, + 0.001581706921570003, + -0.013819745741784573, + -0.00012532516848295927, + -0.005704387556761503, + -0.008761435747146606, + 0.033564493060112, + -0.02393636666238308, + -0.006901993881911039, + -0.03517180681228638, + -0.03138989210128784, + -0.04015132412314415, + -0.0017156497342512012, + 0.015836767852306366, + 0.024440621957182884, + 0.006992602255195379, + 0.023794544860720634, + -0.07336914539337158, + 0.0034608456771820784, + -0.00857234001159668, + -0.010282079689204693, + -0.001954974140971899, + -0.015813130885362625, + 0.026378853246569633, + -0.027592217549681664, + -0.0521589033305645, + -0.0034982708748430014, + 0.027923135086894035, + -0.027150994166731834, + 0.01251183357089758, + -0.056917812675237656, + -0.012409406714141369, + 0.02923104725778103, + 0.01722346991300583, + -0.006362283136695623, + -0.011999699287116528, + 0.001259653246961534, + -0.033911168575286865, + -0.008430518209934235, + -0.0034608456771820784, + -0.023920608684420586, + -0.012708808295428753, + 0.0009582819766364992, + 0.0018505774205550551, + -0.02138357423245907, + -0.03283962607383728, + -0.013307611458003521, + -0.04141196236014366, + -0.006996541749686003, + 0.010360869579017162, + 0.00429798848927021, + -0.029672270640730858, + -0.04305079206824303, + 0.01739680767059326, + -0.028821339830756187, + 0.05981728062033653, + 0.005310438107699156, + 0.019098667427897453, + -0.004762848373502493, + -0.02648915909230709, + -0.010423901490867138, + 0.008249301463365555, + -0.029057709500193596, + -0.015813130885362625, + -0.01235425379127264, + 0.03425784409046173, + -0.015072504989802837, + -0.01928776316344738, + 0.03611728549003601, + 0.020264757797122, + -0.004309806972742081, + -0.024188494309782982, + 0.016467086970806122, + 0.0028659820090979338, + 0.0031141701620072126, + -0.013228821568191051, + 0.008532945066690445, + -0.015379785560071468, + 0.0147809823974967, + -0.005759540479630232, + 0.006988662760704756, + -0.03016076795756817, + 0.004542237147688866, + 0.032934173941612244, + -0.013276095502078533, + 0.005160737317055464, + -0.016798004508018494, + -0.012165158055722713, + 0.014024599455296993, + -0.023873334750533104, + 0.003657820401713252, + -0.02199813537299633, + -0.016719214618206024, + 0.015781614929437637, + -0.027481911703944206, + -0.023463627323508263, + 0.02050112746655941, + -0.015734340995550156, + 0.014331880025565624, + 0.01698710024356842, + -0.010928156785666943, + -0.007024118211120367, + 0.006523802410811186, + 0.016404055058956146, + 0.02850618027150631, + -0.03159474581480026, + 0.030113494023680687, + 0.0192404892295599, + 0.0008011946338228881, + -0.0013985204277560115, + 0.035360902547836304, + -0.040781643241643906, + 0.027182510122656822, + 0.004427991807460785, + 0.011393017135560513, + -0.021005382761359215, + 0.016073137521743774, + -0.010817850939929485, + 0.0031220491509884596, + 0.016246475279331207, + -0.04528842493891716, + 0.03126382827758789, + -0.01892532967031002, + -0.022329052910208702, + -0.01913018338382244, + -0.010589360259473324, + 0.027072204276919365, + 0.0036085767205804586, + -0.01008510496467352, + -0.035486966371536255, + -0.0005461124237626791, + -0.02450365386903286, + 0.026741286739706993, + -0.0036184254568070173, + 0.025606712326407433, + 0.028742549940943718, + 0.006098337005823851, + 0.048219408839941025, + 0.004932246636599302, + 0.0028600727673619986, + 0.008099600672721863, + 0.002318392274901271, + 0.00841476023197174, + -0.013425796292722225, + -0.012370011769235134, + 0.019476858898997307, + -0.027103720232844353, + -0.008989926427602768, + -0.011818482540547848, + 0.016435571014881134, + 0.047368478029966354, + -0.007654437329620123, + -0.02199813537299633, + -0.019272005185484886, + 0.025748534128069878, + -0.01532463263720274, + 0.04238895699381828, + 0.007965657860040665, + 0.009659639559686184, + -0.03498271107673645, + 0.017491355538368225, + 0.0067207771353423595, + 0.028521938249468803, + 0.01170817669481039, + -0.0003973964776378125, + 0.017806515097618103, + 0.020248999819159508, + 0.006366222631186247, + -0.005460138898342848, + -0.013220942579209805, + 0.02773403935134411, + 0.0013748834608122706, + -0.006007728632539511, + -0.0187204759567976, + 0.02223450504243374, + 0.0031535651069134474, + -0.007591405417770147, + 0.02329028956592083, + 0.003868583356961608, + 0.03236688673496246, + 0.012401527725160122, + 0.032776594161987305, + 0.022549664601683617, + 0.0014901136746630073, + -0.019019877538084984, + 0.012858509086072445, + -0.056192945688962936, + 0.07790743559598923, + -0.03230385482311249, + 0.027749797329306602, + 0.01300033088773489, + -0.024456379935145378, + -0.007264427375048399, + -0.01419005822390318, + -0.018909571692347527, + 0.019539890810847282, + -0.00486133573576808, + 0.017034374177455902, + -0.035486966371536255, + 0.04115983471274376, + 0.008233543485403061, + 0.0069610862992703915, + 0.025937629863619804, + -0.020847802981734276, + -0.013150031678378582, + -0.028490422293543816, + 0.007922323420643806, + -0.006697140168398619, + 0.02571701817214489, + -0.018499864265322685, + 0.032130517065525055, + -0.020201725885272026, + 0.011440291069447994, + 0.042483504861593246, + 0.0017195892287418246, + -0.025401858612895012, + -0.01075481902807951, + 0.013220942579209805, + 0.01485977228730917, + 0.004250714555382729, + -0.03359600901603699, + 0.024409106001257896, + -0.0020189909264445305, + 0.015080383978784084, + 0.010360869579017162, + 0.02037506364285946, + -0.009911767207086086, + -0.0027596156578511, + 0.01920897327363491, + 0.01621495932340622, + 0.01385126169770956, + 0.03064926527440548, + -0.0014635220868512988, + 0.026252789422869682, + 0.027592217549681664, + -0.020248999819159508, + -0.019145941361784935, + 0.025055183097720146, + 0.0049007306806743145, + 0.004672240000218153, + -0.006192884873598814, + -0.0007534282631240785, + -0.013213063590228558, + -0.00018047807679977268, + 0.005223769228905439, + -0.00982509832829237, + -0.009951162151992321, + -0.03715730831027031, + -0.005215890239924192, + 0.024440621957182884, + -0.01300033088773489, + -0.011259074322879314, + 0.03756701573729515, + -0.009407511912286282, + -0.0322723388671875, + 0.002001263201236725, + 0.008706282824277878, + -0.001026238314807415, + -0.0011513172648847103, + 0.001432006130926311, + 0.02406243048608303, + 0.0025015787687152624, + -0.003523877589032054, + 0.007461402099579573, + -0.027765555307269096, + -0.05004733428359032, + -0.014221574179828167, + 0.0019983085803687572, + -0.04043496772646904, + 0.0033702373038977385, + 0.007536252494901419, + -0.022266020998358727, + -0.014851893298327923, + 0.006622289773076773, + -0.009320843033492565, + 0.006362283136695623, + 0.003695245599374175, + -0.003777974983677268, + 0.032209306955337524, + 0.02522852085530758, + 0.016065258532762527, + -0.001814137096516788, + 0.014308243058621883, + 0.002089901827275753, + 0.014276727102696896, + -0.0045737531036138535, + 0.0269776564091444, + 0.002511427504941821, + -0.04169560596346855, + -0.04314533993601799, + 0.023321805521845818, + 0.005838330369442701, + 0.013134273700416088, + -0.0020485371351242065, + 0.0006702064420096576, + 0.023668481037020683, + 0.01160574983805418, + -0.012204553000628948, + -0.0017796665197238326, + -0.017444081604480743, + -0.013504586182534695, + -0.021730249747633934, + 0.00043309814645908773, + 0.017081648111343384, + -0.031720809638500214, + -0.006854719948023558, + -0.03986768051981926, + 0.02243935875594616, + -0.0027477971743792295, + 0.008485671132802963, + 0.007488978561013937, + 0.017081648111343384, + -0.008556582033634186, + 0.0013098818017169833, + 0.012519712559878826, + 0.030995940789580345, + -0.03372207283973694, + 0.04547752067446709, + 0.014268848113715649, + -0.017333775758743286, + 0.0021253572776913643, + 0.01835804432630539, + 0.022171473130583763, + -0.0384809784591198, + 0.030791087076067924, + -0.007126545067876577, + 0.019539890810847282, + -0.0016427690861746669, + -0.015986468642950058, + 0.006965025793761015, + 0.003756307763978839, + -0.02062719129025936, + 0.03826036676764488, + 0.03280811011791229, + -0.016041621565818787, + 0.02705644629895687, + 0.0078001986257731915, + 0.013914293609559536, + 0.001911639585159719, + -0.009013563394546509, + -0.005944696720689535, + 0.015994347631931305, + -0.020816287025809288, + -0.047210898250341415, + -0.016782246530056, + -0.02790737710893154, + -0.04588722810149193, + -0.00954145472496748, + -0.03178384155035019, + 0.029672270640730858, + -0.024566685780882835, + 0.03703124448657036, + 0.002353847725316882, + -0.005783177446573973, + -0.008477792143821716, + -0.015111899934709072, + 0.01884653978049755, + -0.01485977228730917, + 0.017570145428180695, + 0.0053498330526053905, + -0.021210236474871635, + 0.015237963758409023, + -0.03539241850376129, + -0.002231723628938198, + 0.026173999533057213, + 0.025575196370482445, + -0.036779120564460754, + 0.053072866052389145, + 0.055373530834913254, + -0.01905139349400997, + -0.01791682094335556, + 0.009817219339311123, + 0.0004653527576010674, + 0.008564461022615433, + 0.0033938742708414793, + -0.020642949268221855, + -0.02401515655219555, + -0.007461402099579573, + 0.025827324017882347, + 0.00041438554762862623, + -0.003679487621411681, + -0.009454785846173763, + 0.007496857549995184, + 0.016971342265605927, + 0.017034374177455902, + 0.008280817419290543, + 0.009769945405423641, + 0.014623402617871761, + -0.0069532073102891445, + -0.02106841467320919, + -0.02976681850850582, + 0.01665618270635605, + -0.008982047438621521, + 0.02329028956592083, + 0.015687067061662674, + 0.008083842694759369, + -0.017932578921318054, + -0.006563197355717421, + 0.043208371847867966, + -0.004400415346026421, + 0.01908290944993496, + -0.03901674970984459, + -0.006102276500314474, + -0.025780050083994865, + 0.03230385482311249, + -0.019792018458247185, + -0.0384809784591198, + -0.03296568989753723, + -0.011487565003335476, + -0.004940125625580549, + -0.020233241841197014, + 0.01158211287111044, + 0.006661684717983007, + 0.03611728549003601, + 0.02847466431558132, + 0.019429584965109825, + -0.013764592818915844, + -0.008682645857334137, + 0.013685802929103374, + -0.035045742988586426, + 0.021257510408759117, + -0.01403247844427824, + 0.002407030900940299, + -0.00048628132208250463, + -0.007075331639498472, + 0.02321149967610836, + 0.011314227245748043, + -0.04632845148444176, + -0.015419180504977703, + -0.0006441072910092771, + -0.03167353570461273, + -0.019744744524359703, + 0.005538928788155317, + 0.0004796334251295775, + 0.018736233934760094, + 0.008509308099746704, + -0.005101644899696112, + 0.004459507763385773, + 0.021698733791708946, + -0.029624996706843376, + -0.009911767207086086, + -0.0287898238748312, + -0.0003868090861942619, + -0.05767419561743736, + 0.012299100868403912, + 0.00982509832829237, + 0.026820076629519463, + 0.01840531826019287, + -0.00035627800389193, + -0.03844946250319481, + 0.001462537213228643, + 0.0351087749004364, + -0.009896009229123592, + -0.00820990651845932, + -0.010636634193360806, + 0.005842269863933325, + 0.016798004508018494, + -0.003681457368656993, + -0.01727074384689331, + -0.007607163395732641, + -0.024771539494395256, + -0.0026453703176230192, + -0.025118215009570122, + 0.010999067686498165, + -0.014040357433259487, + 0.002253390848636627, + -0.04475265368819237, + -0.0207847710698843, + 0.021367816254496574, + 0.005397106986492872, + -0.05237951502203941, + 0.03137413412332535, + 0.02499215118587017, + -0.004301927983760834, + 0.02381030283868313, + 0.01059723924845457, + 0.02135205827653408, + -0.005629537161439657, + -0.020264757797122, + 0.03803975507616997, + 0.024929119274020195, + 0.01493856217712164, + 0.012236068956553936, + -0.019839292392134666, + -0.004916488658636808, + 0.010321474634110928, + 0.014489459805190563, + 0.006102276500314474, + 8.642265311209485e-5, + -0.002046567387878895, + -0.021746007725596428, + 0.0093602379783988, + -0.005861967336386442, + 0.006523802410811186, + 0.03271356225013733, + -0.0006431224173866212, + 0.013662165962159634, + 0.016002226620912552, + -0.0046761794947087765, + 0.030822603031992912, + 0.003350539831444621, + -0.0044910237193107605, + -0.012212431989610195, + -0.024803055450320244, + -0.022108441218733788, + -0.034037232398986816, + 0.012125763110816479, + 0.014276727102696896, + -0.013977325521409512, + 0.011211800388991833, + -0.012306979857385159, + -0.019319279119372368, + 0.03457300364971161, + 0.012385769747197628, + 0.032776594161987305, + -0.0032500827219337225, + 0.02393636666238308, + 0.010620876215398312, + 0.007414128165692091, + 0.009675397537648678, + 0.010534207336604595, + -0.008052326738834381, + 0.01859441213309765, + 0.020107178017497063, + -0.0009902904275804758, + -0.006441073026508093, + -0.01106209959834814, + 0.0016368598444387317, + 0.0007578601944260299, + -0.0374409519135952, + 0.01887805573642254, + -0.03425784409046173, + 0.010195410810410976, + 0.0026217333506792784, + 0.001123740803450346, + -0.00865112990140915, + -0.02184055559337139, + -0.007114726584404707, + 0.01887805573642254, + 0.0012064700713381171, + -0.02641036920249462, + -0.01957140676677227, + -0.004621026571840048, + -0.003852825378999114, + -0.0021332362666726112, + 0.028254052624106407, + 0.005452259909361601, + -0.004022223874926567, + -0.010479054413735867, + -0.007047755178064108, + 0.0024090006481856108, + 0.014836135320365429, + 0.003915857523679733, + -0.016640424728393555, + 0.002871891250833869, + 0.0118106035515666, + -0.028537696227431297, + -0.022675728425383568, + -0.005991970654577017, + 0.014891288243234158, + 0.008367486298084259, + -0.022108441218733788, + -0.028364358469843864, + -0.0017077707452699542, + -0.034352391958236694, + 0.005097705405205488, + -0.001969747245311737, + -0.01367004495114088, + 0.06542712450027466, + -0.007666255813091993, + 0.0317523255944252, + -0.015332511626183987, + -0.011314227245748043, + 0.015844646841287613, + 0.008391123265028, + -0.0024641535710543394, + -0.038071271032094955, + -0.002474002307280898, + -0.002310513285920024, + 0.039205845445394516, + 0.019256247207522392, + -0.021493880078196526, + -0.03826036676764488, + -0.015576760284602642, + 0.03756701573729515, + -0.008064145222306252, + -0.003963131457567215, + 0.004250714555382729, + -0.01018753182142973, + -0.011054220609366894, + -0.007622921373695135, + 0.003015682799741626, + 0.008446276187896729, + 0.024850329384207726, + -0.005550747271627188, + -0.01589979976415634, + -0.006011668127030134, + 0.012708808295428753, + -0.005924999248236418, + -0.009675397537648678, + -0.023904850706458092, + 0.0006421375437639654, + -0.07828562706708908, + -0.032335370779037476, + -0.004510721191763878, + 0.02437759004533291, + 0.004195561632514, + -0.012890025041997433, + 0.0071856374852359295, + 0.0035888792481273413, + -0.015442817471921444, + -0.010865124873816967, + 0.02240784280002117, + -0.02798616699874401, + 0.01637253910303116, + 0.04232592508196831, + -0.0075677684508264065, + 0.007091089617460966, + 0.015781614929437637, + -0.01199182029813528, + 0.009391753934323788, + -0.020816287025809288, + -0.006472588982433081, + 0.011794845573604107, + 0.026898866519331932, + -0.013094878755509853, + -0.002946741646155715, + 0.041096802800893784, + -0.021651459857821465, + 0.013126394711434841, + -0.03283962607383728, + -0.02143084816634655, + 0.019224731251597404, + 0.009880251251161098, + 0.0011394987814128399, + 0.002511427504941821, + 0.01093603577464819, + -0.0012616229942068458, + 0.030554717406630516, + 0.005917120259255171, + 0.025417616590857506, + -0.004368899390101433, + 0.01916169933974743, + 0.01722346991300583, + -0.01719195395708084, + -0.017444081604480743, + 0.003961161710321903, + -0.022187231108546257, + 0.007772622164338827, + -0.024046672508120537, + -0.00599591014906764, + 0.014056115411221981, + 0.035203322768211365, + 0.004073437303304672, + 0.0180744007229805, + -0.023463627323508263, + 0.02341635338962078, + 0.005834390874952078, + 0.01158211287111044, + -0.024598201736807823, + 0.014379153959453106, + -0.00025877554435282946, + 0.07948323339223862, + 0.00775292469188571, + 0.0143949119374156, + 0.011842119507491589, + -0.013945809565484524, + 0.013126394711434841, + 0.013859140686690807, + 0.03328084945678711, + 0.020264757797122, + -0.010825729928910732, + -0.008666887879371643, + -0.015600397251546383, + 0.01235425379127264, + 0.04516236111521721, + 0.004617087543010712, + 0.01654587686061859, + 0.02070598118007183, + 0.006949267815798521, + 0.001514735515229404, + -0.015300995670258999, + -0.01593131572008133, + 0.004443749785423279, + 0.01150332298129797, + -0.021210236474871635, + -0.003657820401713252, + -0.024645475670695305, + 0.014016720466315746, + -0.018231980502605438, + -0.005468017887324095, + 0.004758908879011869, + 0.02644188515841961, + 0.001439885119907558, + 0.030554717406630516, + 0.018421076238155365, + 0.0006165308295749128, + 0.022533906623721123, + 0.003486452391371131, + 0.008233543485403061, + -0.0008854013285599649, + -0.008146874606609344, + -0.008580219000577927, + -0.01654587686061859, + 0.006775930058211088, + -0.012842751108109951, + 0.005672871600836515, + 0.007882928475737572, + 0.013630650006234646, + 0.02135205827653408, + -0.018231980502605438, + -0.01758590340614319, + -0.004786485340446234, + 0.0007007375243119895, + -0.022786034271121025, + 0.006397738587111235, + -0.027592217549681664, + 0.011290590278804302, + -0.013457312248647213, + -0.02305391989648342, + -0.016687698662281036, + -0.012204553000628948, + -0.0011198013089597225, + 0.031169278547167778, + -0.0027123417239636183, + -0.013031846843659878, + -0.02422001026570797, + -0.002068234607577324, + -0.01786954700946808, + -0.011495443992316723, + -0.012826993130147457, + 0.02179328165948391, + 0.009194780141115189, + -0.003082654206082225, + -0.0034312994685024023, + 0.011660902760922909, + -0.01385126169770956, + -0.0004520569636952132, + 0.03797672316431999, + -0.01747559756040573, + 0.004542237147688866, + -0.0549953393638134, + -0.007362914737313986, + 0.001694967388175428, + 0.01423733215779066, + 0.012031215243041515, + -0.009785703383386135, + -0.01682952046394348, + 0.0019273975631222129, + 0.0007819895981810987, + 0.0032441734801977873, + -0.020532643422484398, + 0.0008258164743892848, + -0.0027320391964167356, + 0.010581481270492077, + -0.005385288503021002, + -0.013520344160497189, + -0.0071974559687078, + -0.011716055683791637, + 0.01199182029813528, + 0.008714161813259125, + -0.01421369519084692, + -0.013126394711434841, + -0.00021039361308794469, + -0.008485671132802963, + -0.009013563394546509, + 0.022912098094820976, + -0.0004289124335628003, + -0.03558151423931122, + 0.005137100350111723, + -0.01775924116373062, + -0.02971954457461834, + -0.012377890758216381, + 0.007449583616107702, + -0.0077095902524888515, + -0.02094235084950924, + -0.00021901125728618354, + -0.011731813661754131, + -0.002393242670223117, + 0.001101088710129261, + 0.0147809823974967, + -0.009100232273340225, + 0.000311220035655424, + 0.01637253910303116, + 0.003547514555975795, + 0.01121967937797308, + 0.0038114606868475676, + 0.004089195281267166, + -0.002345968736335635, + 0.006295311730355024, + -0.02187207154929638, + -0.009588728658854961, + 0.031232310459017754, + 0.02166721783578396, + -0.021777523681521416, + 0.0037582775112241507, + 0.01227546390146017, + -0.008659008890390396, + 0.035928189754486084, + 0.020107178017497063, + -0.03061774931848049, + -0.010762698017060757, + -0.022029651328921318, + -0.007953839376568794, + 0.01382762473076582, + 0.006185005884617567, + -0.009919646196067333, + 0.014993715099990368, + -0.046233903616666794, + 0.011203921400010586, + 0.011905151419341564, + -0.01106209959834814, + 0.005117402877658606, + 0.01840531826019287, + -0.0029743181075900793, + -0.01318154763430357, + 0.006456831004470587, + -0.0034982708748430014, + 0.004372838884592056, + -0.024740023538470268, + -0.000615053519140929, + -0.007524434011429548, + 0.02184055559337139, + -0.0009011593065224588, + 0.0024267283733934164, + -0.0262055154889822, + -0.008359607309103012, + 0.004652542527765036, + 0.0052749826572835445, + -0.06293736398220062, + -0.01835804432630539, + 0.004999218042939901, + -0.007796259131282568, + 0.013173668645322323, + -0.0091632641851902, + 0.004000556655228138, + 0.006311069708317518, + -0.024676991626620293, + 0.045918744057416916, + -0.026914624497294426, + 0.033217817544937134, + -0.005991970654577017, + -0.022912098094820976, + -0.039205845445394516, + -0.01532463263720274, + 0.007362914737313986, + 0.04387020692229271, + 0.01475734543055296, + -0.020107178017497063, + -0.014142784290015697, + -0.0019362614257261157, + 0.03145292401313782, + 0.015884041786193848, + -0.016435571014881134, + -0.018909571692347527, + 0.021698733791708946, + 0.01083360891789198, + 0.01245668064802885, + -0.010636634193360806, + -0.010053589008748531, + 0.006622289773076773, + -0.0014339758781716228, + 0.010809971950948238, + -0.0038784320931881666, + 0.0187204759567976, + -0.03283962607383728, + 0.031248068436980247, + -0.00341751123778522, + -0.007788380142301321, + 0.006366222631186247, + -0.016561634838581085, + -0.008399002254009247, + -0.0015886010369285941, + -0.007985355332493782, + -0.011180284433066845, + -0.0028974979650229216, + 0.0063544041477143764, + 0.022754518315196037, + -0.005085886921733618, + -0.008422639220952988, + 0.0006406602333299816, + -0.0034017532598227262, + -0.00446738675236702, + 0.005345893558114767, + -0.03198869526386261, + 0.03121655248105526, + -0.0035494843032211065, + -0.009202659130096436, + 0.01840531826019287, + 0.009888130240142345, + 0.030018946155905724, + -0.012448801659047604, + 0.029940156266093254, + 0.009604486636817455, + 0.02277027629315853, + -0.010943914763629436, + 0.00875355675816536, + -0.01887805573642254, + 0.0032737196888774633, + -0.0005988031043671072, + 0.012472438625991344, + -0.004762848373502493, + 0.012188795022666454, + 0.005322256591171026, + -0.04030890390276909, + 0.009659639559686184, + -0.014710071496665478, + -0.00024683395167812705, + 0.0009691155864857137, + 0.022108441218733788, + -0.00683502247557044, + -0.011377259157598019, + -0.011842119507491589, + 0.010022073052823544, + -0.010715424083173275, + -0.015718583017587662, + 0.0015334481140598655, + 0.010258442722260952, + 0.0035553935449570417, + -0.015757977962493896, + -0.017727725207805634, + -0.02499215118587017, + 0.0026355215813964605, + -0.0063386461697518826, + 0.021525396034121513, + -0.0032362944912165403, + -0.03854401037096977, + -0.00229081604629755, + 0.015600397251546383, + 0.003449027193710208, + 0.016892552375793457, + -0.014796740375459194, + -0.02127326838672161, + 0.029987430199980736, + 0.00869840383529663, + 0.01711316406726837, + 0.019177457317709923, + -0.0023873334284871817, + -0.010400264523923397, + -0.003029471030458808, + 0.015419180504977703, + 0.0002868444425985217, + 0.017097406089305878, + 0.03181535750627518, + -0.021399332210421562, + 0.007622921373695135, + 0.018893813714385033, + 0.011448170058429241, + 0.00149897753726691, + 0.026552191004157066, + 0.034352391958236694, + -0.019508374854922295, + -0.007130484562367201, + 0.022502390667796135, + 0.01204697322100401, + 0.002564610680565238, + 0.022061167284846306, + 0.009407511912286282, + -0.015592518262565136, + 0.019303521141409874, + -0.02584308199584484, + -0.027481911703944206, + -0.004392536357045174, + -0.02555943839251995, + -0.008178390562534332, + 0.02834860049188137, + -0.00644895201548934, + 0.022455116733908653, + 0.02713523618876934, + -0.017286501824855804, + -0.008430518209934235, + -0.01944534294307232, + 0.002353847725316882, + -0.001724513596855104, + -0.005605900194495916, + -0.0034352389629930258, + -0.017964094877243042, + -0.002121417783200741, + 0.0007056618924252689, + 0.0028443147893995047, + 0.011999699287116528, + -0.017207711935043335, + 0.011109373532235622, + -9.707159915706143e-5, + -0.02313270978629589, + -0.031232310459017754, + -0.01297669392079115, + 0.019665954634547234, + 0.003454936435446143, + 0.016876794397830963, + -0.007331398781388998, + -0.020359305664896965, + 0.0012084398185834289, + 0.002438546856865287, + 0.021399332210421562, + -0.009769945405423641, + -0.0010016164742410183, + 0.0003299326344858855, + -0.030759571120142937, + 0.015915557742118835, + -0.03444693982601166, + 0.017948336899280548, + -0.020264757797122, + -0.005184374283999205, + -0.0018978513544425368, + 0.02256542257964611, + 0.006287432741373777, + 0.014985836111009121, + 0.004380717873573303, + 0.010219047777354717, + -0.005464078392833471, + -0.00921841710805893, + -0.03239840269088745, + 0.012062731198966503, + 0.008509308099746704, + -0.017885304987430573, + -0.013252458535134792, + -0.013559739105403423, + 0.014670676551759243, + 0.01848410628736019, + -0.003943433985114098, + 0.013740955851972103, + -0.014268848113715649, + -0.007047755178064108, + -0.0026414308231323957, + -0.0187204759567976, + -0.008603855967521667, + 0.01815319061279297, + 0.0024543048348277807, + -0.008714161813259125, + 0.005298619624227285, + 0.014481580816209316, + 0.010683908127248287, + -0.003096442436799407, + 0.0012557137524709105, + -0.0057319640181958675, + 0.03020804189145565, + -0.014820377342402935, + 0.01595495268702507, + -0.026032177731394768, + 0.022707244381308556, + -0.022376326844096184, + -0.02507094107568264, + -0.01447370182722807, + 0.005586202722042799, + -0.0143949119374156, + -0.019303521141409874, + -0.0027714341413229704, + 0.02021748386323452, + -0.0052828616462647915, + 0.009533575735986233, + 0.026741286739706993, + 0.019461100921034813, + -0.026757044717669487, + 0.04598177596926689, + -0.008769314736127853, + -0.0053498330526053905, + 0.01892532967031002, + 0.004699816461652517, + 0.0220769252628088, + -0.035613030195236206, + 0.0315001979470253, + 0.01540342252701521, + -0.023952124640345573, + -0.019256247207522392, + 0.010305716656148434, + -0.016049500554800034, + 0.005223769228905439, + 0.027387363836169243, + -0.02741887979209423, + -0.02166721783578396, + -0.010345111601054668, + -0.0050583104602992535, + -0.025039425119757652, + -0.02462971769273281, + 0.00019365076150279492, + 0.007615042384713888, + -0.011290590278804302, + -0.002068234607577324, + 0.00784747302532196, + 0.005460138898342848, + -0.013189426623284817, + 0.04040345177054405, + -0.031405650079250336, + -0.012425164692103863, + 0.015813130885362625, + 0.019177457317709923, + -0.016356781125068665, + 0.02923104725778103, + -0.02251814864575863, + -0.004699816461652517, + 0.001731407712213695, + -0.01124331634491682, + 0.015104020945727825, + -0.005826511885970831, + 0.0011710146209225059, + 0.005160737317055464, + -0.022990887984633446, + -0.015592518262565136, + 0.00016927513934206218, + 0.031720809638500214, + 0.0057477219961583614, + 0.015151294879615307, + -0.024645475670695305, + -0.033911168575286865, + -0.008359607309103012, + -0.0017639085417613387, + -0.009864493273198605, + -0.0010222988203167915, + 0.018578654155135155, + 0.007315640803426504, + -0.0114245330914855, + 0.004987399559468031, + 0.005511352326720953, + -0.009005684405565262, + 0.013268216513097286, + -0.0025606711860746145, + 0.0005264149513095617, + 0.004325564950704575, + -0.022738760337233543, + -0.004896791186183691, + -0.014568249695003033, + -0.005322256591171026, + -0.01613616943359375, + -0.002172631211578846, + -0.006673503201454878, + 0.008871741592884064, + 0.031358376145362854, + -0.0039217667654156685, + -0.0123306168243289, + -0.013591255061328411, + -0.0009154399740509689, + 0.0027773433830589056, + 0.00885598361492157, + 0.003163413843140006, + 0.019067151471972466, + 0.01207061018794775, + 0.007315640803426504, + -0.005334075074642897, + -0.012031215243041515, + -0.01111725252121687, + -0.006665624212473631, + 0.002239602617919445, + 0.0071856374852359295, + -0.001882093376480043, + 0.005444380920380354, + -0.022612696513533592, + 0.08124812692403793, + 0.002917195437476039, + 0.006705019157379866, + 0.012346374802291393, + 0.002893558470532298, + -0.030743813142180443, + 0.005483775865286589, + 0.003141746623441577, + 0.020122935995459557, + -0.003651911159977317, + -0.01413490530103445, + -0.010053589008748531, + 0.02248663268983364, + 0.011881514452397823, + -0.01227546390146017, + -0.004427991807460785, + 0.016671940684318542, + 0.015104020945727825, + 0.010668150149285793, + 0.025669744238257408, + 0.0033919045235961676, + -0.004073437303304672, + -0.017002858221530914, + 0.015356148593127728, + -0.009667518548667431, + 0.02398364059627056, + -0.00038557799416594207, + -0.0016545875696465373, + 0.03643244504928589, + 0.025811566039919853, + 0.010305716656148434, + -0.004337383434176445, + -0.005861967336386442, + -0.015237963758409023, + -0.00783565454185009, + 0.013063362799584866, + 0.006118034478276968, + 0.013378522358834743, + 0.001394580933265388, + 0.0032934171613305807, + 0.005846209358423948, + 0.006701079662889242, + 0.020280515775084496, + 0.014733708463609219, + -0.01289790403097868, + -0.010786334984004498, + -0.009549333713948727, + -0.005129221361130476, + 0.0009380920673720539, + 0.011763329617679119, + -0.006125913467258215, + -0.0317523255944252, + 0.005330135580152273, + 0.018783507868647575, + 0.026946140453219414, + -0.004640724044293165, + 0.01289790403097868, + -0.013583376072347164, + -0.0018033034866675735, + 0.004936186131089926, + -0.026615222916007042, + -0.00818626955151558, + -0.00257839891128242, + -0.028978919610381126, + -0.02543337456882, + -0.018688960000872612, + -0.0151670528575778, + -0.015757977962493896, + 0.00048160317237488925, + -0.005412864964455366, + -0.013591255061328411, + 0.0009287357679568231, + -0.008517187088727951, + -0.02321149967610836, + 0.00019722092838492244, + 0.019902324303984642, + -0.0009095307323150337, + 0.012850630097091198, + 0.020485369488596916, + 0.015576760284602642, + 0.01613616943359375, + 0.0106523921713233, + -0.014347638003528118, + -0.016593150794506073, + -0.004024193622171879, + -0.0003030948282685131, + 0.011172405444085598, + -0.03105897270143032, + 0.008919015526771545, + -0.014985836111009121, + -0.012165158055722713, + -0.0027694643940776587, + 0.002885679481551051, + -0.002588247647508979, + 0.003590848995372653, + 0.0025468829553574324, + -0.005223769228905439, + -0.019539890810847282, + 0.005310438107699156, + -0.01121967937797308, + 0.001882093376480043, + 0.019792018458247185, + -0.01597858965396881, + -0.0064962259493768215, + -0.0027418879326432943, + -0.004487084224820137, + 0.025386100634932518, + -0.013394280336797237, + -0.021761765703558922, + 0.012480317614972591, + -0.009328722022473812, + -0.010896640829741955, + 0.009580849669873714, + 0.0022199051454663277, + -0.026504917070269585, + 0.00962024461477995, + 0.006058942060917616, + -0.002460214076563716, + -0.014694313518702984, + -0.009431148879230022, + -0.021777523681521416, + 0.00043679142254404724, + -0.006452891509979963, + -0.013772471807897091, + 0.002284906804561615, + -0.0036460019182413816, + -0.019193215295672417, + -0.006752293091267347, + -0.007552010472863913, + -0.008556582033634186, + 0.00903720036149025, + 0.020185967907309532, + 0.007638679351657629, + -0.017176195979118347, + 0.00599591014906764, + -0.003502210369333625, + -0.005160737317055464, + 0.0044831447303295135, + 0.030712297186255455, + -0.022108441218733788, + 0.03939494118094444, + 0.0005495594814419746, + 0.0023341502528637648, + 0.011014825664460659, + -0.0017816362669691443, + 0.0052080112509429455, + -0.006610471289604902, + -0.01758590340614319, + 0.012724566273391247, + -0.006921691354364157, + 0.04229440912604332, + -0.0413174144923687, + 0.012220310978591442, + -0.006527741905301809, + 0.0015019321581348777, + 0.011534838937222958, + -0.016325265169143677, + 0.017365291714668274, + -0.025386100634932518, + 0.005137100350111723, + 0.017207711935043335, + 0.004699816461652517, + -0.008895378559827805, + 0.0030471987556666136, + -0.01634102314710617, + 0.005846209358423948, + 0.017806515097618103, + 0.014103389345109463, + 0.018184706568717957, + 0.00024671084247529507, + -0.005759540479630232, + 0.003716912819072604, + 0.01693982630968094, + -0.031768083572387695, + 0.0026138543616980314, + 0.00223369337618351, + -0.0016407993389293551, + 0.004065558314323425, + -0.009517817758023739, + 0.013772471807897091, + -0.00013012642739340663, + -0.008619613945484161, + 0.010274200700223446, + -0.007067452650517225, + -0.007351096253842115, + -0.014670676551759243, + 0.020674465224146843, + -0.021210236474871635, + -0.002436577109619975, + 0.0013187456643208861, + -0.019256247207522392, + 0.0114245330914855, + 0.002542943460866809, + -0.01121967937797308, + -0.003494331380352378, + -0.016451328992843628, + 0.018531380221247673, + 0.01579737290740013, + 0.007906565442681313, + -0.0022730883210897446, + -0.003104321425780654, + 0.00014785413804929703, + 0.011660902760922909, + 0.009100232273340225, + -0.006972904782742262, + -0.016971342265605927, + -0.004652542527765036, + -0.014851893298327923, + -0.003336751600727439, + -0.018909571692347527, + -0.027592217549681664, + -0.03551848232746124, + 0.009076595306396484, + 0.007689892780035734, + -0.006090458016842604, + 0.01654587686061859, + 0.004912549164146185, + 0.007386551704257727, + 0.0028246173169463873, + 0.018988361582159996, + 0.010770577006042004, + 0.00710684759542346, + 0.0213047843426466, + 0.013536102138459682, + -0.013811866752803326, + -0.0025468829553574324, + 0.009186901152133942, + 0.01354398112744093, + 0.018468350172042847, + 0.002775373635813594, + 0.022313294932246208, + 0.00019168101425748318, + -0.01354398112744093, + 0.012519712559878826, + -0.01121967937797308, + 0.0402773879468441, + 0.01300033088773489, + -0.0007455492741428316, + 0.011448170058429241, + -0.002150963991880417, + -0.016451328992843628, + 0.0037228220608085394, + -0.008194148540496826, + -0.015497970394790173, + -0.012054852209985256, + -0.028852855786681175, + -0.0019008059753105044, + 0.011779087595641613, + -0.004853456746786833, + -3.170061972923577e-5, + -0.015986468642950058, + -0.00027601083274930716, + -0.002594156889244914, + 0.005826511885970831, + 0.015387664549052715, + -0.003949343226850033, + -0.02057991735637188, + 0.013520344160497189, + -0.0026827955152839422, + -0.011148768477141857, + 0.002781282877549529, + -0.007162000518292189, + -0.01506462600082159, + -0.006251977290958166, + 0.005511352326720953, + 0.018090158700942993, + -0.0200126301497221, + 0.007276245858520269, + 0.010053589008748531, + 0.0023499082308262587, + -0.012968814931809902, + 0.0010873004794120789, + 0.018105916678905487, + 0.012598502449691296, + 0.004577692598104477, + 0.0058068144135177135, + 0.011282711289823055, + -0.020185967907309532, + -0.0061968243680894375, + 0.008887499570846558, + -0.004069497808814049, + 0.000509179662913084, + 0.0026512795593589544, + -0.02042233757674694, + 0.002730069449171424, + -0.028285568580031395, + 0.008391123265028, + 0.022329052910208702, + -0.004794364329427481, + 0.017097406089305878, + 0.01611253246665001, + -0.013504586182534695, + -0.0020702043548226357, + -0.010376627556979656, + -0.008217785507440567, + 0.004250714555382729, + -0.01018753182142973, + -0.004160106182098389, + 0.020816287025809288, + -0.004337383434176445, + 0.0038587346207350492, + -0.01493856217712164, + -0.0015728430589661002, + -0.02094235084950924, + 0.013480949215590954, + 0.006598652806133032, + 0.03236688673496246, + 0.018704717978835106, + -0.02005990408360958, + 0.02042233757674694, + 0.006094397511333227, + -0.0013551859883591533, + 0.003575091017410159, + -0.0055152918212115765, + -0.023999398574233055, + -0.015576760284602642, + 0.01289790403097868, + 0.019508374854922295, + -0.012188795022666454, + -0.008635371923446655, + -0.006866538431495428, + 0.008257180452346802, + -0.006098337005823851, + 0.00341751123778522, + 0.01686103641986847, + -0.0030491685029119253, + 0.019634438678622246, + 0.007977476343512535, + 0.015174931846559048, + -0.026898866519331932, + 0.012133642099797726, + 0.010817850939929485, + -0.024566685780882835, + -0.00012107789370929822, + 0.004849517252296209, + 0.012598502449691296, + -0.012834872119128704, + 0.00010082642984343693, + -4.78894762636628e-5, + 0.00571226654574275, + -0.02734008990228176, + -0.006259856279939413, + -0.00946266483515501, + -0.006433194037526846, + 0.006295311730355024, + 0.009494180791079998, + 0.0067286561243236065, + -0.0025232459884136915, + 0.017822273075580597, + 0.01307912077754736, + -0.0001682902657194063, + 0.0024129401426762342, + 0.026173999533057213, + 0.0053577120415866375, + -0.00846991315484047, + -0.007264427375048399, + 0.015001594088971615, + 0.017727725207805634, + -0.005960454698652029, + 0.012945177964866161, + 0.0050661894492805, + 0.009872372262179852, + -0.016640424728393555, + -0.01168453972786665, + 0.01603374257683754, + 0.008335970342159271, + 0.0010725273750722408, + -0.0029368929099291563, + -0.026347337290644646, + 0.014000962488353252, + -0.012322737835347652, + -0.021493880078196526, + -0.024156978353857994, + -0.019823534414172173, + -0.02814374677836895, + 0.027513427659869194, + -0.004494963213801384, + 0.013016088865697384, + -0.022990887984633446, + -0.005034673493355513, + 0.022455116733908653, + -0.006342585664242506, + -0.0065710763446986675, + -0.01763317734003067, + 0.009706913493573666, + 0.03162626177072525, + 0.007607163395732641, + 0.02858497016131878, + 0.009407511912286282, + -0.007843533530831337, + -0.025622470304369926, + -0.004687997978180647, + 0.0097463084384799, + -0.0052828616462647915, + -0.0004990847082808614, + 0.013575497083365917, + -0.027607975527644157, + 0.030428653582930565, + 0.00607470003888011, + -0.0022080866619944572, + -0.0140088414773345, + -0.006102276500314474, + 0.02494487725198269, + -0.006657745223492384, + 0.007067452650517225, + -0.028978919610381126, + 0.00133450364228338, + 0.0065789553336799145, + 0.024030914530158043, + -0.013504586182534695, + 0.0022671790793538094, + 0.009612365625798702, + -0.0213047843426466, + -0.021036898717284203, + 0.015884041786193848, + 0.002625672845169902, + -0.004372838884592056, + -0.0009188870317302644, + 0.0027950711082667112, + 0.006062881555408239, + 0.010100862942636013, + -0.0013236700324341655, + 0.013819745741784573, + 0.00813111662864685, + 0.002558701438829303, + -0.009297206066548824, + 0.032934173941612244, + 0.0016053438885137439, + 0.0033702373038977385, + 0.0034450876992195845, + -0.001536402734927833, + -0.011093615554273129, + -0.021099930629134178, + 0.01292154099792242, + -0.017491355538368225, + -0.01093603577464819, + 0.022297536954283714, + -0.007587465923279524, + 0.019870808348059654, + 0.013937930576503277, + -0.023841818794608116, + -0.002355817472562194, + -0.02171449176967144, + 0.003082654206082225, + 0.018657444044947624, + 0.0002289831027155742, + -0.0012773809721693397, + 0.02150963805615902, + 0.0022415723651647568, + -0.00720927445217967, + -0.0039020690601319075, + 0.008343849331140518, + -0.01095967274159193, + -0.014276727102696896, + -0.010061467997729778, + -0.009021442383527756, + 0.010817850939929485, + -0.010802092961966991, + 0.028884371742606163, + -0.03450997173786163, + 0.0005983106675557792, + -0.005645295139402151, + -0.0023597569670528173, + -0.0038508556317538023, + -0.014174300245940685, + 0.00262370309792459, + 0.0005746737588196993, + 0.020690223202109337, + 0.0006864568567834795, + 0.021005382761359215, + -0.011353622190654278, + 0.024409106001257896, + 0.028127988800406456, + 0.005389227997511625, + 0.012960935942828655, + 0.02013869397342205, + -0.017743483185768127, + 0.01835804432630539, + 0.0018082278547808528, + -0.014016720466315746, + -0.006783809047192335, + 0.001251774257980287, + -0.017097406089305878, + -0.004766787867993116, + 0.026189757511019707, + -0.005487715359777212, + 0.012409406714141369, + 0.019019877538084984, + 0.010518449358642101, + -0.007536252494901419, + -0.002119448035955429, + 0.00903720036149025, + 0.0068113855086266994, + 0.00015844152949284762, + 0.0011326046660542488, + 0.007232911419123411, + -0.0014270817628130317, + 0.022029651328921318, + 0.0035494843032211065, + -0.0024109703954309225, + 0.013252458535134792, + 0.003449027193710208, + 0.001146392896771431, + -0.004431931301951408, + 0.025622470304369926, + 0.027749797329306602, + -0.01522220578044653, + 0.017459839582443237, + 0.024929119274020195, + 0.010991188697516918, + 0.005928938742727041, + 0.002540973713621497, + -0.01693982630968094, + 0.01670345664024353, + 0.01771196722984314, + 0.01693982630968094, + -0.002737948438152671, + -0.002527185482904315, + 0.013803987763822079, + -0.009667518548667431, + -0.005909241270273924, + -0.019350795075297356, + 0.010809971950948238, + 0.006019547116011381, + 0.014970078133046627, + 0.00373464054428041, + 0.01367004495114088, + 0.005464078392833471, + 0.00562165817245841, + -0.008950531482696533, + -0.011849998496472836, + 0.0023026345297694206, + -0.0027241602074354887, + -0.0012035154504701495, + 0.021682975813746452, + 0.01916169933974743, + 0.013890656642615795, + 0.01629374921321869, + 0.020075662061572075, + -0.0013985204277560115, + 0.006929570343345404, + 0.017522871494293213, + 0.018625928089022636, + -0.004345262423157692, + -0.004435870796442032, + -0.007351096253842115, + 0.018830781802535057, + 0.008848104625940323, + 0.0024996090214699507, + -0.003074775217100978, + -0.012606381438672543, + 0.0018761841347441077, + 0.02070598118007183, + 0.0014576128451153636, + 0.024535169824957848, + -0.019067151471972466, + 0.0020879320800304413, + 0.014182179234921932, + -0.005952575709670782, + 0.01835804432630539, + -0.003403723007068038, + -0.01467855554074049, + -0.00964388158172369, + -0.006799567025154829, + -0.01840531826019287, + -0.004317685961723328, + 0.016065258532762527, + 0.009533575735986233, + 0.013693681918084621, + 0.012299100868403912, + -0.005696508567780256, + -0.0015423119766637683, + -0.012086368165910244, + -0.0031535651069134474, + 0.0008858937653712928, + 0.003703124588355422, + -0.036211833357810974, + -0.004010405391454697, + 0.02288058213889599, + -0.00784747302532196, + 0.0021529337391257286, + -0.011022704653441906, + -0.018310770392417908, + -0.012779719196259975, + 0.0003735132922884077, + 0.007496857549995184, + 0.009179022163152695, + 0.00010199596727034077, + 0.015868283808231354, + -0.02158842794597149, + 0.026788560673594475, + 0.0003163906221743673, + -0.0039887381717562675, + -0.0038272186648100615, + 0.017128922045230865, + -0.004546176642179489, + 0.004656482022255659, + -0.010731182061135769, + -0.03195717930793762, + -0.013031846843659878, + -0.002196268178522587, + 0.0013561708619818091, + 0.008619613945484161, + 0.004715574439615011, + 0.026883108541369438, + 0.0018269404536113143, + 0.00571226654574275, + -0.014481580816209316, + -0.013985204510390759, + -0.0068862359039485455, + -0.0048258802853524685, + -0.008745677769184113, + 0.01771196722984314, + -0.011148768477141857, + 0.01812167465686798, + -0.008737798780202866, + 0.012165158055722713, + -0.0008346803369931877, + 0.004715574439615011, + -0.002164752222597599, + -0.009951162151992321, + 0.01036874856799841, + 0.003305235644802451, + 0.0019648228771984577, + -0.009998436085879803, + -0.004640724044293165, + 0.011849998496472836, + 0.0071107870899140835, + 0.02062719129025936, + -0.021903587505221367, + 0.002633551834151149, + 0.007985355332493782, + -0.008083842694759369, + -0.027923135086894035, + 0.008887499570846558, + 0.008556582033634186, + -0.025827324017882347, + -0.005523170810192823, + -0.007812017109245062, + -0.031642019748687744, + 0.014331880025565624, + -0.007414128165692091, + -0.0012941238237544894, + 0.014245211146771908, + 0.0054995338432490826, + -0.007272306364029646, + -0.0015836766688153148, + -0.002119448035955429, + 0.0014182179002091289, + -0.0065041049383580685, + -0.01750711351633072, + 0.007965657860040665, + -0.02009142003953457, + 0.01799561083316803, + -0.004195561632514, + -0.014079752378165722, + 0.018468350172042847, + -0.024456379935145378, + 0.037062760442495346, + 0.010896640829741955, + -0.016719214618206024, + -0.02894740365445614, + -0.007284124847501516, + 0.008162632584571838, + -0.009029321372509003, + -0.014662797562777996, + 0.0018633807776495814, + 0.0106523921713233, + -0.006634108256548643, + -0.0029959853272885084, + 0.0020702043548226357, + -0.004912549164146185, + -0.02571701817214489, + 0.00982509832829237, + 0.004396475851535797, + 0.015884041786193848, + 0.0006101291510276496, + -0.021367816254496574, + 0.014662797562777996, + -0.017050132155418396, + -0.010739061050117016, + 0.004020254127681255, + 0.007607163395732641, + -0.004656482022255659, + -1.511934806330828e-5, + 0.003515998600050807, + -0.0011040433309972286, + -0.011463928036391735, + -0.011014825664460659, + -0.005436501931399107, + -0.0060392445884644985, + 0.011054220609366894, + -0.02341635338962078, + -0.030901392921805382, + -0.001649663201533258, + -0.01307912077754736, + -0.009092353284358978, + -0.017239227890968323, + -0.03668457269668579, + -0.009943283163011074, + -0.014670676551759243, + 0.007256548386067152, + -0.001806258107535541, + -0.01227546390146017, + -0.00037080488982610404, + -0.01423733215779066, + 0.013291853480041027, + 0.008154753595590591, + 0.006082579027861357, + -0.012842751108109951, + 0.009423269890248775, + -0.003021592041477561, + 0.01467855554074049, + 0.01550584938377142, + -0.019272005185484886, + -0.022329052910208702, + 0.007827775552868843, + -0.0012960935709998012, + -0.011014825664460659, + 0.002990076085552573, + -0.003240233985707164, + 0.008485671132802963, + 0.004546176642179489, + 0.004447689279913902, + -0.01093603577464819, + -0.023684239014983177, + -0.0061140949837863445, + 0.016025863587856293, + -0.005850148852914572, + 0.013039725832641125, + 0.025338826701045036, + -0.012559107504785061, + 0.004684058483690023, + 0.011077857576310635, + -0.01727074384689331, + 0.006933509837836027, + 0.007993234321475029, + 0.014071873389184475, + -0.0026276425924152136, + 0.019634438678622246, + -0.03394268453121185, + -0.02951469086110592, + -0.007433825638145208, + -0.006322888191789389, + 0.02612672559916973, + -0.005865906830877066, + -0.0031890205573290586, + 0.01271668728441, + -0.01243304368108511, + 0.02770252339541912, + -0.006984723266214132, + -0.0036164557095617056, + 0.0123306168243289, + 0.00541680445894599, + 0.006901993881911039, + 0.0036716086324304342, + 0.019177457317709923, + -0.018815023824572563, + 0.0010016164742410183, + -0.006110155489295721, + 0.02122599445283413, + -0.0015856464160606265, + -0.0175543874502182, + 0.016309507191181183, + 0.0001122755857068114, + 0.011290590278804302, + 0.007445644121617079, + 0.00571226654574275, + -0.013331248424947262, + 0.028411632403731346, + 0.005779237952083349, + -0.0006337661179713905, + -0.019098667427897453, + -0.034478455781936646, + -0.011369380168616772, + -0.010014194063842297, + -0.010203289799392223, + 0.006894114892929792, + 0.014000962488353252, + 0.012078489176928997, + 0.0032047785352915525, + -0.016892552375793457, + -0.026678254827857018, + -0.005550747271627188, + -0.033217817544937134, + -0.007989294826984406, + 0.014662797562777996, + 0.019476858898997307, + -0.0013738985871896148, + 0.011109373532235622, + 0.025858839973807335, + 0.006098337005823851, + -0.005188313778489828, + -0.00022356629779096693, + 0.028931645676493645, + 0.005334075074642897, + 0.00729988282546401, + -0.009092353284358978, + -0.016719214618206024, + -0.015757977962493896, + 0.002856133272871375, + 0.0027911316137760878, + -0.008942652493715286, + -0.016766488552093506, + -0.00420738011598587, + 0.01985505037009716, + -0.00598409166559577, + 0.009549333713948727, + -0.004337383434176445, + -0.009990557096898556, + -0.00024338687944691628, + -0.007114726584404707, + 0.007595344912260771, + 0.012929419986903667, + 0.008745677769184113, + -0.02215571515262127, + -0.004687997978180647, + -0.0009897979907691479, + 0.005810753908008337, + 0.018058642745018005, + -0.028049198910593987, + 0.003939494490623474, + 0.028317084535956383, + -0.012834872119128704, + -0.032335370779037476, + 0.008036568760871887, + 0.008060205727815628, + -0.004223138093948364, + 0.0017629236681386828, + -0.017885304987430573, + -0.015119778923690319, + 0.00956509169191122, + -0.009202659130096436, + 0.011802724562585354, + 0.00046756872325204313, + -0.006295311730355024, + -0.01597858965396881, + 0.007827775552868843, + 0.014544612728059292, + 0.0038134304340928793, + 0.00737867271527648, + -0.020832045003771782, + 0.009714792482554913, + -0.0018751992611214519, + 0.013433675281703472, + 0.004049800336360931, + -0.006445012520998716, + -0.0010833609849214554, + -0.01603374257683754, + -0.024314558133482933, + 0.006098337005823851, + -0.008296575397253036, + 0.0032126575242727995, + 0.004640724044293165, + -0.005334075074642897, + 0.005160737317055464, + -0.009683276526629925, + -0.007382612209767103, + 0.012283342890441418, + -0.013315490446984768, + 0.008052326738834381, + 0.003561302786692977, + 5.4445041314465925e-5, + -0.0025074880104511976, + 0.016246475279331207, + -0.0004249729390721768, + -0.017002858221530914, + -0.004227077588438988, + -0.001783606014214456, + -0.029262563213706017, + -0.008375365287065506, + -0.004250714555382729, + 0.0015728430589661002, + 0.00040675277705304325, + 0.0009760097018443048, + 0.0015098111471161246, + 0.004144348204135895, + -0.0021627824753522873, + 0.008769314736127853, + 0.008477792143821716, + 0.002217935398221016, + 0.004455568268895149, + -0.01542705949395895, + 0.013993083499372005, + -0.03283962607383728, + -0.009651760570704937, + 0.02923104725778103, + -0.014071873389184475, + -0.004723453428596258, + 0.011329985223710537, + 0.019713228568434715, + -0.002840375294908881, + 0.020469611510634422, + -0.002901437459513545, + -0.00903720036149025, + -0.0009917677380144596, + 0.029892882332205772, + 0.01441854890435934, + -0.013016088865697384, + 0.0023597569670528173, + 0.010518449358642101, + 0.010557844303548336, + -0.0068035065196454525, + 0.00956509169191122, + -0.015316753648221493, + -0.0001622579147806391, + -0.021809039637446404, + -0.010431780479848385, + -0.002663098042830825, + 0.007693832274526358, + -0.009762066416442394, + -0.010991188697516918, + 0.009423269890248775, + 0.010329353623092175, + -0.00331508438102901, + 0.01682952046394348, + 0.01722346991300583, + 0.002730069449171424, + 0.004920428153127432, + -0.02163570187985897, + -0.009171143174171448, + 0.023243015632033348, + -0.001573827932588756, + 0.0249133612960577, + 0.029861366376280785, + 0.005763479974120855, + -0.02243935875594616, + -0.009549333713948727, + -0.015434938482940197, + -0.018625928089022636, + 0.01980777643620968, + -0.019665954634547234, + 0.022581180557608604, + -0.010644513182342052, + -0.013331248424947262, + 0.0016437539597973228, + 0.011976062320172787, + -0.011006946675479412, + -0.0041837431490421295, + 0.008257180452346802, + 0.022707244381308556, + 0.0072604878805577755, + -0.0025843081530183554, + -0.022187231108546257, + -0.010337232612073421, + 0.008588097989559174, + -3.8933281757635996e-5, + -0.008036568760871887, + 0.005062249954789877, + -0.007173819001764059, + -0.0012586683733388782, + -0.0018013337394222617, + 0.012606381438672543, + -0.002150963991880417, + 0.008296575397253036, + 0.008919015526771545, + 0.005625597666949034, + -0.014749466441571712, + -0.013031846843659878, + -0.033217817544937134, + 0.00017543059948366135, + -0.01279547717422247, + 0.02021748386323452, + -0.026662496849894524, + 0.006334706675261259, + -0.019398069009184837, + -0.004766787867993116, + -0.0246612336486578, + -0.015230084769427776, + 0.0007332383538596332, + 0.014505217783153057, + 0.008115358650684357, + 0.008280817419290543, + 0.023463627323508263, + 0.02842739038169384, + 0.004215259104967117, + -0.010234805755317211, + 0.0005160737782716751, + -0.009068716317415237, + 0.0077923196367919445, + -0.028679518029093742, + -0.002915225690230727, + 0.0005712267011404037, + -0.014308243058621883, + 0.021761765703558922, + 0.0019205034477636218, + 0.009320843033492565, + -0.002550822449848056, + 0.004609208554029465, + -0.003831158159300685, + -0.0091632641851902, + -0.027308573946356773, + 0.0012616229942068458, + 0.006594713311642408, + -0.009549333713948727, + -0.019114425405859947, + 0.022675728425383568, + 0.010486933402717113, + 0.001611253130249679, + -0.00887962058186531, + -0.003082654206082225, + 0.013796108774840832, + -0.006055002566426992, + -0.010053589008748531, + 0.011369380168616772, + -0.0040044961497187614, + 0.01114088948816061, + 0.020816287025809288, + -0.025669744238257408, + 0.00028068898245692253, + 0.018421076238155365, + 0.010849366895854473, + -0.013772471807897091, + -0.0009065761114470661, + -0.010171773843467236, + 0.01657739281654358, + 0.027403121814131737, + 0.015939194709062576, + 0.010683908127248287, + 0.02171449176967144, + -0.011597870849072933, + 0.02519700489938259, + 0.003628274193033576, + -0.009872372262179852, + 0.018988361582159996, + 0.008138995617628098, + -0.0023203620221465826, + -0.012700929306447506, + -0.03583364188671112, + -0.03036562167108059, + 0.004049800336360931, + -0.009478422813117504, + 0.006185005884617567, + -0.006094397511333227, + -0.01739680767059326, + -7.11571192368865e-5, + -0.011495443992316723, + 0.026347337290644646, + -0.002009142190217972, + 0.025244278833270073, + -0.00011233714030822739, + -0.005649234633892775, + 0.011479686014354229, + -0.002781282877549529, + -0.01851562224328518, + -0.017412565648555756, + 0.018625928089022636, + 0.0031811415683478117, + 0.010794213972985744, + 0.0055901422165334225, + -0.010329353623092175, + -0.005089826416224241, + -0.007236850913614035, + 0.0052080112509429455, + 0.013835503719747066, + 0.019067151471972466, + -0.0021686917170882225, + -0.004577692598104477, + 0.0018151219701394439, + 0.03299720585346222, + 0.008343849331140518, + 0.011842119507491589, + 0.0038547951262444258, + -0.016782246530056, + -0.0032481129746884108, + 0.0035888792481273413, + -0.010620876215398312, + -0.0021746009588241577, + -8.140596037264913e-6, + -0.004628905560821295, + -0.012023336254060268, + 0.024803055450320244, + -0.0052080112509429455, + -0.002663098042830825, + -0.024078188464045525, + -0.005810753908008337, + 0.007851412519812584, + 0.002369605703279376, + -0.01522220578044653, + 0.0041010137647390366, + 0.013961567543447018, + -0.006259856279939413, + -0.011983941309154034, + -0.0034391784574836493, + -0.0020623253658413887, + -0.0019224731950089335, + 0.008785072714090347, + 0.0013906414387747645, + -0.01274032425135374, + -0.010053589008748531, + 0.005239527206867933, + 0.003651911159977317, + -0.0020485371351242065, + 0.02215571515262127, + 0.005483775865286589, + -0.005117402877658606, + 0.011432412080466747, + -7.589681626996025e-5, + 0.0007140333182178438, + 0.008257180452346802, + -0.014465822838246822, + 0.014024599455296993, + -0.0028817399870604277, + -0.0011296500451862812, + -0.0028305265586823225, + -0.012527591548860073, + -0.00170875561889261, + -0.011227558366954327, + 0.0016023892676457763, + -0.0162622332572937, + -0.012023336254060268, + -0.008115358650684357, + -0.03134261816740036, + -0.0015029170317575336, + -0.003982828930020332, + 0.005999849643558264, + -0.008517187088727951, + 0.010612997226417065, + 0.006295311730355024, + 0.005164676811546087, + -0.015655551105737686, + -0.0018052732339128852, + -0.0020879320800304413, + -0.0044240523129701614, + -0.001041011419147253, + 0.0042664725333452225, + -0.0028305265586823225, + -0.004164045676589012, + 0.0054995338432490826, + -0.000689903914462775, + 0.008446276187896729, + 0.010557844303548336, + 0.009990557096898556, + 0.00401434488594532, + 0.016750730574131012, + -0.00664198724552989, + 0.012228189967572689, + -0.01160574983805418, + 0.03179959952831268, + -0.017727725207805634, + 0.01682952046394348, + 0.004112832248210907, + 0.01727074384689331, + 0.007024118211120367, + 0.005172555800527334, + -0.011054220609366894, + 0.021698733791708946, + 0.006381980609148741, + 0.0007534282631240785, + -0.007733227219432592, + -0.003978889435529709, + -0.0015718581853434443, + 0.001596480025909841, + -0.017538629472255707, + 0.013504586182534695, + 0.018657444044947624, + -0.0008706282242201269, + 0.009076595306396484, + 0.009226296097040176, + 0.023904850706458092, + 0.0059722731821238995, + 0.005491654854267836, + -0.011282711289823055, + 0.01385126169770956, + -0.007331398781388998, + 0.015442817471921444, + -0.01629374921321869, + 0.006775930058211088, + 0.0077923196367919445, + -8.039030217332765e-5, + -0.002976287854835391, + -0.015687067061662674, + -0.006011668127030134, + -0.004707695450633764, + 0.01423733215779066, + 0.013378522358834743, + 0.013244579546153545, + -0.0023046042770147324, + 0.006035305093973875, + -0.005558626260608435, + -0.010802092961966991, + -0.01972898654639721, + -0.012566986493766308, + -0.01251183357089758, + 0.0006800551782362163, + -0.003200839040800929, + -0.022266020998358727, + 0.0010646483860909939, + 0.006988662760704756, + 0.007615042384713888, + 0.03570757806301117, + -0.004112832248210907, + -0.0371888242661953, + -0.0069610862992703915, + -0.005259224679321051, + -0.004739211406558752, + -0.010321474634110928, + 0.003976919688284397, + 0.0027871921192854643, + -0.009399632923305035, + -0.019335037097334862, + -0.011542717926204205, + 0.017081648111343384, + -0.006240158807486296, + -0.01253547053784132, + -0.008383244276046753, + 0.010620876215398312, + 0.010589360259473324, + 0.006590773817151785, + 0.028695276007056236, + -0.013922172598540783, + 0.008729919791221619, + -0.01693982630968094, + 0.0019283824367448688, + -0.0075598894618451595, + 0.013228821568191051, + -0.0032934171613305807, + -0.011211800388991833, + 0.03539241850376129, + 0.0031535651069134474, + 0.0014950380427762866, + 0.01227546390146017, + 0.0015058716526255012, + -0.0040044961497187614, + 0.012960935942828655, + -0.01129846926778555, + 0.007934141904115677, + -0.020359305664896965, + 0.0030412895139306784, + 0.013890656642615795, + 0.01649860292673111, + -0.008619613945484161, + -0.012228189967572689, + 0.0017806513933464885, + 0.002917195437476039, + 0.01010874193161726, + 0.00036563430330716074, + 0.010542086325585842, + -0.0038882808294147253, + 0.0023656662087887526, + -0.002765524899587035, + 0.0035928187426179647, + 0.005078007932752371, + 0.00599591014906764, + -0.019665954634547234, + 2.117478106811177e-5, + 0.016514360904693604, + -0.011976062320172787, + 0.008194148540496826, + -0.023479385301470757, + 0.028127988800406456, + -0.00982509832829237, + 0.006965025793761015, + -0.00616530841216445, + 0.015293116681277752, + -0.00331508438102901, + -0.006898054387420416, + -0.0010070332791656256, + -5.76458805880975e-5, + 0.014339759014546871, + -0.0008573324303142726, + -0.024314558133482933, + 0.03072805516421795, + 0.018090158700942993, + 0.004219198599457741, + -0.015111899934709072, + 0.004175864160060883, + -0.02344786934554577, + 0.015151294879615307, + 0.0025074880104511976, + -0.02329028956592083, + 0.01318154763430357, + -0.0028738609980791807, + -0.011290590278804302, + -0.004211319610476494, + -0.028033440932631493, + -0.0018486076733097434, + 0.0011345744132995605, + 0.013859140686690807, + 0.010880882851779461, + 0.00846991315484047, + 0.010841487906873226, + -0.016955584287643433, + -0.005401046480983496, + -0.0006185005768202245, + -0.0007883912767283618, + 0.06013244017958641, + 0.0183265283703804, + 0.010423901490867138, + -0.005148918833583593, + -0.0008381273946724832, + -0.0387331061065197, + 0.007394430693238974, + -0.0049007306806743145, + -0.03384813666343689, + -0.02450365386903286, + 0.0055074128322303295, + 0.0044910237193107605, + 0.010266321711242199, + 0.008304454386234283, + -0.010014194063842297, + 0.005491654854267836, + -0.0056571136228740215, + -0.016199201345443726, + -0.008485671132802963, + 0.005527110304683447, + 0.0036834271159023046, + 0.013031846843659878, + -0.004278291016817093, + 0.004250714555382729, + 0.01411126833409071, + 0.0018929269863292575, + -0.017286501824855804, + -0.016073137521743774, + -0.007165940012782812, + 0.00962024461477995, + 0.019792018458247185, + -0.02535458467900753, + -0.03109048865735531, + 0.005976212676614523, + -0.02555943839251995, + 0.016876794397830963, + -0.010250563733279705, + 0.012519712559878826, + -0.0010282080620527267, + -0.014205816201865673, + -0.025386100634932518, + -0.007138363551348448, + 0.008627492934465408, + -0.023684239014983177, + -0.001303972559981048, + 0.0004222645366098732, + 0.002505518263205886, + 0.008501429110765457, + -0.00562165817245841, + -0.01859441213309765, + -0.010612997226417065, + 0.010163894854485989, + -0.03093290887773037, + -0.014127026312053204, + -0.01686103641986847, + -0.005850148852914572, + 0.02070598118007183, + -0.011566354893147945, + -0.005838330369442701, + -0.012700929306447506, + -0.018105916678905487, + 0.005728024523705244, + 0.010156015865504742, + 0.024156978353857994, + -0.002879770239815116, + 0.02393636666238308, + -0.003433269215747714, + 0.006941388826817274, + 0.002497639274224639, + -0.014765224419534206, + 0.010077225975692272, + -0.017964094877243042, + -0.00903720036149025, + -0.010163894854485989, + -0.015364027582108974, + -0.02199813537299633, + -0.01579737290740013, + -0.02927832119166851, + -0.012133642099797726, + 0.020611433312296867, + 0.010400264523923397, + -0.000325993139995262, + -0.011290590278804302, + -0.001828910200856626, + -0.005783177446573973, + 0.006378041114658117, + 0.0013916263123974204, + 0.0028147685807198286, + 0.007445644121617079, + 0.0024996090214699507, + -0.019886566326022148, + -0.003866613609716296, + -0.02017020992934704, + 0.0005495594814419746, + 0.00810747966170311, + 0.000645092164631933, + -0.003679487621411681, + -0.005271043162792921, + -0.002316422527655959, + 0.02615824155509472, + 0.0008435441995970905, + 0.012787598185241222, + -0.00027896545361727476, + -0.006905933376401663, + -0.018263496458530426, + -0.029168015345931053, + -0.002706432482227683, + -0.005605900194495916, + 0.005692569073289633, + 0.007039876189082861, + -0.018610170111060143, + 0.017491355538368225, + -0.0020209606736898422, + 0.026504917070269585, + 0.009305085055530071, + 0.020280515775084496, + -0.0036676691379398108, + -0.004353141412138939, + 0.0058895437978208065, + 0.0200126301497221, + -0.004506781697273254, + 0.011976062320172787, + 0.03190990537405014, + 0.02277027629315853, + 0.007942020893096924, + 0.006303190719336271, + -0.004487084224820137, + 0.03384813666343689, + -0.0007982400129549205, + -0.004707695450633764, + 0.0054325624369084835, + -0.0035416053142398596, + -0.010691787116229534, + 0.003521907841786742, + -0.002938862657174468, + -0.002540973713621497, + 0.010991188697516918, + -0.005672871600836515, + 0.018247738480567932, + 0.0003149133117403835, + -0.01864168606698513, + 0.03230385482311249, + 0.021982377395033836, + 0.00644895201548934, + -0.0010587391443550587, + 0.0024562745820730925, + -0.025449132546782494, + 0.024487895891070366, + 0.004605269059538841, + -0.015781614929437637, + 0.010077225975692272, + 0.003567212028428912, + 0.0015314783668145537, + 0.013843382708728313, + -0.001783606014214456, + 0.006535620894283056, + -0.006216521840542555, + 0.020107178017497063, + -0.01763317734003067, + 0.004585571587085724, + -0.006362283136695623, + 0.015986468642950058, + 0.0008007021970115602, + 0.004806182812899351, + 0.0071777584962546825, + -0.012133642099797726, + -0.006425315048545599, + 0.004195561632514, + -0.01928776316344738, + -0.0033997835125774145, + -0.011637265793979168, + 0.00409313477575779, + -0.0005741813220083714, + 0.010400264523923397, + 0.0026729467790573835, + 0.004601329565048218, + -0.0046761794947087765, + -0.0008957425015978515, + -0.03501422703266144, + -0.014442185871303082, + 0.005826511885970831, + 0.023227257654070854, + 0.01008510496467352, + -0.003110230667516589, + -0.0026887047570198774, + 0.01611253246665001, + -0.007528373505920172, + 0.011069978587329388, + 0.011589991860091686, + -0.003192960051819682, + 0.011164526455104351, + 0.03450997173786163, + -0.006756232585757971, + -0.007819896563887596, + -0.011251195333898067, + 0.0037208523135632277, + 0.010581481270492077, + -0.007682013791054487, + -0.022171473130583763, + 0.003090533195063472, + 0.0044161733239889145, + -0.0017491354374215007, + -0.020769013091921806, + -0.007579586934298277 + ], + "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2": [ + -0.014250527136027813, + -0.019216271117329597, + -0.017799686640501022, + 0.004257450811564922, + -0.03615368902683258, + -0.030872292816638947, + 0.015890376642346382, + 0.022649947553873062, + 0.02050967328250408, + 0.012148748151957989, + -0.026745721697807312, + 0.018384797498583794, + 0.00246939854696393, + -0.025144366547465324, + -0.01662946492433548, + 0.0027850503101944923, + -0.020709842443466187, + 0.014989614486694336, + 0.009061518125236034, + -0.00781045900657773, + 0.08949115872383118, + -0.01313419733196497, + -0.02546771802008152, + 0.0011557863326743245, + 0.006563249509781599, + -0.044376034289598465, + -0.009654328227043152, + -0.005443070083856583, + -0.051243387162685394, + 0.006855804938822985, + -0.006397724617272615, + 0.023696986958384514, + 0.011255684308707714, + -0.002640697406604886, + -0.012387411668896675, + -0.04480716958642006, + -0.011671420186758041, + 0.007413969840854406, + -0.012233435176312923, + -0.019154679030179977, + -0.01726076751947403, + 0.03855572268366814, + -0.006297640036791563, + -0.0009998850291594863, + -0.04877976328134537, + 0.019785983487963676, + 0.020971601828932762, + -0.011255684308707714, + 0.008422516286373138, + 0.0007650708430446684, + -0.00023325037909671664, + 0.008984530344605446, + -0.007906694896519184, + 0.0050619784742593765, + 0.015782594680786133, + -0.01622912660241127, + -0.005131267476826906, + 0.06688740104436874, + 0.0059242467395961285, + -0.020355695858597755, + 0.005843409337103367, + 0.042928654700517654, + -0.005724077112972736, + -0.016906622797250748, + -0.011617529205977917, + -0.030302580446004868, + -0.013249680399894714, + 0.0017553323414176702, + -0.03504505753517151, + -0.017430143430829048, + -0.0017043276457116008, + 0.030240990221500397, + -0.034613922238349915, + -0.010031570680439472, + -0.014951120130717754, + -0.024328291416168213, + 0.05287553742527962, + -0.0019997700583189726, + 0.017399346455931664, + -0.0012173769064247608, + -0.02425130270421505, + 0.023142671212553978, + 0.01290323305875063, + 0.028778212144970894, + 0.03649243712425232, + 0.0056586372666060925, + -0.0028466410003602505, + -0.04394489899277687, + 0.0023904854897409678, + -0.033228132873773575, + 0.012880136258900166, + 0.035414598882198334, + -0.010516596958041191, + 0.01025483664125204, + -0.00966972578316927, + -0.0014348687836900353, + 0.015567027032375336, + 0.0035029659047722816, + 0.03168836981058121, + 0.01702980324625969, + 0.014673963189125061, + 0.014797143638134003, + -0.03732391074299812, + -0.0062591456808149815, + -0.01704520173370838, + -0.0005143778398633003, + 0.020371094346046448, + -0.004380632191896439, + -0.011240286752581596, + 0.0046423920430243015, + -0.0055123595520854, + -0.046624090522527695, + -0.0039879921823740005, + 0.007156059145927429, + -0.04591580107808113, + -0.005150514654815197, + 0.006101320032030344, + -0.03107246197760105, + -0.003880208358168602, + -0.042004797607660294, + 0.02234199456870556, + 0.012749256566166878, + 0.013688513077795506, + 0.021510520949959755, + -0.012133350595831871, + 0.02668413147330284, + -0.0026368480175733566, + -0.025375330820679665, + 0.008253141306340694, + 0.0018708148272708058, + -0.0021633701398968697, + -0.00852260086685419, + -0.005473865661770105, + -0.0026310738176107407, + 0.029070768505334854, + 0.029193948954343796, + 0.01484333723783493, + 0.0587882362306118, + -0.00935407355427742, + 0.02811611257493496, + -0.053676217794418335, + -0.0590038038790226, + -0.03445994481444359, + 0.0069327931851148605, + 0.001336708664894104, + 0.013265077956020832, + -0.02962508425116539, + 0.032365866005420685, + -0.017229972407221794, + 0.0520748607814312, + -0.04237433895468712, + 0.01605975069105625, + 0.0030872293282300234, + 0.01824621856212616, + -0.006952039897441864, + 0.006436218973249197, + -0.02154131606221199, + 0.02229580096900463, + 0.021849269047379494, + 0.043575357645750046, + 0.00313342222943902, + -0.04705522581934929, + -0.00268496572971344, + 0.004942646250128746, + 0.045299895107746124, + -2.296866568940459e-6, + 0.037847429513931274, + 0.00024383625714108348, + -0.0014570028288289905, + 0.004334439057856798, + 0.020063141360878944, + -0.013103402219712734, + 0.03094928152859211, + 0.010393415577709675, + 0.03997230529785156, + -0.0010730238864198327, + 0.04089616611599922, + 0.006948190741240978, + 0.03726232051849365, + -0.03747788444161415, + 0.0027523303870111704, + -0.02332744374871254, + 0.0009248214773833752, + -0.020879216492176056, + -0.021279556676745415, + -0.0012934028636664152, + 0.016028955578804016, + -0.007787362672388554, + 0.008591890335083008, + -0.003046810394152999, + -0.010177847929298878, + -0.01311110146343708, + 0.0011981298448517919, + 0.02817770466208458, + -0.020047742873430252, + -0.03615368902683258, + 0.0023808619007468224, + -0.007898995652794838, + 0.01933945156633854, + 0.04012628272175789, + -0.008045273832976818, + -0.030872292816638947, + -0.05007316544651985, + 0.024574654176831245, + -0.03430597111582756, + 0.03492187708616257, + -0.01923166774213314, + -0.023635396733880043, + 0.020925410091876984, + -0.032304275780916214, + 0.015005012042820454, + -0.030826101079583168, + 0.033289723098278046, + 0.02321965992450714, + -0.031503595411777496, + 0.017414744943380356, + -0.006709527224302292, + 0.01958581432700157, + 0.021926257759332657, + -0.010008473880589008, + -0.01570560596883297, + -0.0007645896985195577, + -0.004646241664886475, + -0.004222806077450514, + -0.041789229959249496, + -0.02164909988641739, + -0.00895373523235321, + 0.05053509399294853, + -0.02967127598822117, + -0.002305798465386033, + 0.046808864921331406, + -0.01166372187435627, + 0.02956349216401577, + -0.03618448227643967, + -0.012341218069195747, + -0.004557705018669367, + -0.018631160259246826, + 0.027577195316553116, + -0.009361772798001766, + -0.015728702768683434, + 0.002717685652896762, + 0.03215029835700989, + 0.0020286408253014088, + 0.0036299966741353273, + -0.008638083003461361, + 0.013765501789748669, + 0.003570330562070012, + 0.021279556676745415, + 0.03458312898874283, + -0.015305266715586185, + 0.0045885005965828896, + 0.03125723451375961, + 0.01866195537149906, + 0.0030679821502417326, + -0.010778356343507767, + 0.02973286621272564, + 0.011101707816123962, + -0.053491443395614624, + 0.002748480997979641, + 0.02055586688220501, + -0.020756036043167114, + 0.007514054421335459, + 0.004396029748022556, + 0.009092314168810844, + 0.020925410091876984, + -0.04520750790834427, + 0.026252998039126396, + -0.03148819878697395, + 0.019216271117329597, + 0.03393642604351044, + -0.01796906068921089, + -0.011355768889188766, + -0.01371160987764597, + -0.005135117098689079, + -0.005223653744906187, + -0.019770585000514984, + -0.0004345024935901165, + 0.003778198966756463, + 0.0021133278496563435, + 0.005412274971604347, + 0.0044576204381883144, + -0.011147900484502316, + -0.0034067307133227587, + 0.024913402274250984, + -0.016444692388176918, + 0.03084149770438671, + -0.020016947761178017, + 0.04308263212442398, + -0.029471106827259064, + 0.00586265604943037, + 0.016413897275924683, + -0.02569868229329586, + 0.03378244861960411, + 0.007914393208920956, + 0.029578890651464462, + 0.03726232051849365, + -0.04040344059467316, + -0.038648106157779694, + -0.042066387832164764, + 0.008607287891209126, + 0.0015484264586120844, + 0.009438760578632355, + -0.005639390088617802, + -0.020371094346046448, + 0.015659412369132042, + -0.011417359113693237, + 0.02326585352420807, + 0.04606977477669716, + -0.02563709206879139, + 0.00526984641328454, + 0.02408192865550518, + 0.0014300569891929626, + -0.03449074178934097, + -0.005931945517659187, + -0.007310035638511181, + -0.016552476212382317, + 0.004415276926010847, + -0.00029303657356649637, + 0.007841254584491253, + -0.016537079587578773, + -0.006055126897990704, + -0.01923166774213314, + -0.06627149879932404, + 0.022218812257051468, + 0.029948433861136436, + -0.03633845970034599, + 0.05721767619252205, + -0.005643239710479975, + -0.019447235390543938, + -0.01599816046655178, + -0.003934100270271301, + -0.01264147274196148, + -0.04585421085357666, + -0.02813151106238365, + -0.019262462854385376, + -0.057771991938352585, + -0.032304275780916214, + -0.020817626267671585, + -0.025021186098456383, + -0.006289941258728504, + 0.009608135558664799, + -0.012741557322442532, + 0.0035222130827605724, + -0.02425130270421505, + 0.0056586372666060925, + -0.005543155129998922, + 0.008999927900731564, + -0.005547004286199808, + -0.008407117798924446, + -0.003044885816052556, + 0.0010335674742236733, + -0.02015552669763565, + 0.01790747046470642, + 0.01360382605344057, + 0.04927248880267143, + -0.00929248332977295, + -0.02418971247971058, + -0.02576027251780033, + 0.02072524093091488, + -0.02091001160442829, + 0.007714224047958851, + -0.06380787491798401, + -0.05161293223500252, + 0.0014608523342758417, + -0.023820169270038605, + 0.031041666865348816, + -0.02685350552201271, + -0.016321511939167976, + -0.02280392311513424, + 0.03452153503894806, + -0.04631613940000534, + 0.021171772852540016, + -0.007005931809544563, + -0.0424051359295845, + -0.021402737125754356, + -0.022480573505163193, + 0.044037286192178726, + -0.003487568348646164, + -0.032889384776353836, + 0.01696821302175522, + 0.006952039897441864, + -0.007275390904396772, + -0.0012722309911623597, + -0.005246750079095364, + 0.021294953301548958, + 0.01950882561504841, + -0.0010345297632738948, + -0.0018121112370863557, + 0.016537079587578773, + 0.016490885987877846, + -0.03886367380619049, + 0.010177847929298878, + -0.0008117450051940978, + 0.035722553730010986, + -0.007259993348270655, + -0.016182933002710342, + 0.0033278176560997963, + -0.006559399887919426, + 0.02477482333779335, + -0.008707372471690178, + -0.01917007751762867, + -0.010285631753504276, + -0.015590122900903225, + 0.028362475335597992, + 0.009969980455935001, + -0.024898003786802292, + 0.006428519729524851, + -0.022834718227386475, + 0.03753947839140892, + -0.00529679236933589, + -0.00182943360414356, + -0.005304491147398949, + 0.020863819867372513, + 0.008992228657007217, + 0.06774967163801193, + 0.01824621856212616, + 0.025791067630052567, + 0.05256758630275726, + -0.026237599551677704, + -0.02212642692029476, + 0.039879921823740005, + 0.05681733787059784, + -0.03818617761135101, + 0.02985604852437973, + -0.02431289292871952, + 0.03159598261117935, + 0.008822854608297348, + 0.019016100093722343, + -0.03550698608160019, + -0.02794673852622509, + -0.011055514216423035, + 0.03713913634419441, + -0.0066671837121248245, + 0.0011471251491457224, + -0.0028716621454805136, + -0.029594287276268005, + 0.023758577182888985, + 0.02389715611934662, + 0.0032739259768277407, + -0.012872437946498394, + -0.008884445764124393, + 0.01275695487856865, + -0.008969132788479328, + -0.031195644289255142, + -0.0028601139783859253, + -0.00793749000877142, + -0.021325748413801193, + -0.0038821331690996885, + 0.024466870352625847, + 0.010262534953653812, + -0.006182157434523106, + 0.03741629421710968, + -0.05980448052287102, + 0.008014477789402008, + 0.00033321481896564364, + -0.010924634523689747, + 0.0026291492395102978, + -0.012479797005653381, + 0.007063672877848148, + -0.029871445149183273, + -0.03130342811346054, + -0.005600896198302507, + -0.024913402274250984, + -0.014435299672186375, + 0.003435601247474551, + -0.04606977477669716, + 0.005331437103450298, + 0.044837962836027145, + 0.006701828446239233, + 0.03941798955202103, + -0.0305489432066679, + -0.003995690960437059, + -0.037508681416511536, + 0.031626779586076736, + 0.0012337368680164218, + -0.027577195316553116, + -0.024528460577130318, + 0.0036550178192555904, + -0.013981068506836891, + -0.00854569673538208, + -0.05198247358202934, + -0.014096550643444061, + -0.007086769677698612, + 0.021387338638305664, + -0.020602058619260788, + -0.005416124127805233, + -0.018492581322789192, + -0.027223048731684685, + 0.02338903397321701, + 0.0020459629595279694, + 0.06303799152374268, + 0.013503741472959518, + 0.012449001893401146, + 0.035260625183582306, + -0.02968667447566986, + -0.03609209880232811, + 0.020016947761178017, + -0.03159598261117935, + -0.017106791958212852, + -0.01587498001754284, + 0.027761967852711678, + -0.01582878641784191, + -0.03048735111951828, + 0.045361485332250595, + 0.00912310928106308, + 0.021849269047379494, + -0.00636692950502038, + -0.004823314491659403, + -0.005204406566917896, + -0.014096550643444061, + -0.04422205686569214, + -0.006493960041552782, + -0.025852657854557037, + 0.020833024755120277, + -0.018153831362724304, + 0.014543082565069199, + -0.024744028225541115, + 0.013950273394584656, + 0.03596891462802887, + -0.004911851137876511, + 0.004107323940843344, + 0.015097398310899734, + -0.006363079883158207, + 0.0015830711927264929, + -0.027746569365262985, + 0.005570100620388985, + -0.007448614574968815, + -0.02817770466208458, + 0.045299895107746124, + -0.013241981156170368, + -0.03037956915795803, + 0.020632853731513023, + -0.022218812257051468, + 0.012556785717606544, + 0.02021711692214012, + 0.00952344760298729, + -0.0077989110723137856, + -0.004453770816326141, + 0.008307033218443394, + 0.023804770782589912, + -0.009392567910254002, + 0.01893911324441433, + 0.03633845970034599, + -0.0008319544140249491, + -0.008068369701504707, + 0.03701595589518547, + -0.008037574589252472, + 0.016783440485596657, + -0.023527612909674644, + 0.04197400063276291, + -0.05121259391307831, + 0.0025117420591413975, + -0.009946883656084538, + -0.004068829584866762, + 0.028901394456624985, + -0.032027117908000946, + 0.03227347880601883, + -0.02534453570842743, + -0.016906622797250748, + -0.012810846790671349, + -0.016306113451719284, + 0.02217262051999569, + -0.013026414439082146, + 0.02274233289062977, + -0.02414351888000965, + -0.004022636916488409, + -0.008445612154901028, + 0.04111173376441002, + 0.0032681517768651247, + 0.02332744374871254, + 0.04603898152709007, + 0.018785135820508003, + 0.02916315384209156, + 0.0032065610866993666, + 0.018908318132162094, + 0.018215423449873924, + -0.0031507445964962244, + -0.007775814738124609, + -0.03556857630610466, + -0.020694445818662643, + 0.020586661994457245, + -0.03803220018744469, + -0.002273078542202711, + -0.013472946360707283, + 0.015466941520571709, + 0.020771432667970657, + -0.0014329440891742706, + -0.016644861549139023, + 0.006655635312199593, + 0.023835565894842148, + -0.006532453931868076, + 0.026252998039126396, + 0.0013521063374355435, + 0.0010508897248655558, + -0.03787822648882866, + 0.020771432667970657, + 0.005404576193541288, + 0.010447307489812374, + 0.012071759440004826, + -0.022311197593808174, + -0.008006779477000237, + 0.03264302387833595, + 0.011340371333062649, + -0.011555938050150871, + -0.024728629738092422, + 0.017476335167884827, + 0.013442150317132473, + -0.003260452998802066, + -0.009546544402837753, + 0.03059513494372368, + -0.027053674682974815, + 0.003739704843610525, + 0.03251984342932701, + -0.004088076762855053, + 0.04145048186182976, + -0.005635540932416916, + 0.01365771796554327, + 0.02599123679101467, + -0.006001234985888004, + 0.017014406621456146, + 0.0183693990111351, + -0.05650938302278519, + 0.053091105073690414, + -0.04591580107808113, + 0.03393642604351044, + 0.03476789966225624, + -0.023250455036759377, + 0.002659944584593177, + -0.017229972407221794, + -0.0190007034689188, + 0.012148748151957989, + -0.022095631808042526, + 0.03019479662179947, + -0.025252150371670723, + 0.034675512462854385, + 0.012248832732439041, + -0.012872437946498394, + 0.04810226708650589, + -0.018323207274079323, + -0.006297640036791563, + -0.016152137890458107, + -0.01538995373994112, + 0.011825396679341793, + 0.05035032331943512, + -0.017399346455931664, + 0.025252150371670723, + -0.000687601394020021, + 0.0016138664213940501, + 0.0371699333190918, + 0.012194940820336342, + -0.014966518618166447, + 0.019832177087664604, + 0.009754412807524204, + 0.009046120569109917, + 0.022141823545098305, + -0.024389881640672684, + 0.00553160673007369, + 0.004038034472614527, + 0.013673115521669388, + 0.014735553413629532, + 0.02805452235043049, + -0.007233047392219305, + -0.01992456242442131, + -0.0045846509747207165, + 0.01738394983112812, + 0.025098172947764397, + 0.016937417909502983, + 0.01356533169746399, + 0.023604601621627808, + 0.03732391074299812, + 0.004265149589627981, + -0.028362475335597992, + 0.008330130018293858, + 0.0038821331690996885, + 0.005404576193541288, + 0.003102626884356141, + 0.005008086562156677, + -0.004765573423355818, + -0.0041227214969694614, + -0.021094784140586853, + -0.0008574567618779838, + -0.03168836981058121, + -0.03495267033576965, + 0.006128265522420406, + -0.03661561757326126, + -0.0075063556432724, + -0.02320426143705845, + 0.06057436391711235, + -0.014042658731341362, + -0.0011721462942659855, + -0.01021634228527546, + 0.03621527925133705, + -0.005385329015552998, + 0.009939184412360191, + -0.0008608250063844025, + -0.0005865543498657644, + 0.003999540116637945, + -0.0057856678031384945, + 0.02229580096900463, + -0.014596974477171898, + -0.028793610632419586, + 0.006074374075978994, + 0.025945045053958893, + -0.05115099996328354, + 0.021264158189296722, + -0.010940032079815865, + -0.024913402274250984, + -0.01550543587654829, + 0.0019997700583189726, + -0.00496574304997921, + 0.014789445325732231, + 0.0020690595265477896, + -0.004754025023430586, + 0.03861731290817261, + 0.015312965027987957, + 0.030579738318920135, + -0.024328291416168213, + 0.01275695487856865, + -0.004915700759738684, + 0.011902385391294956, + 0.006570948287844658, + 0.027561798691749573, + 0.007567946333438158, + -0.042466726154088974, + -0.021849269047379494, + 0.030641328543424606, + -0.00036737837945111096, + 0.020602058619260788, + -0.0038455636240541935, + -0.002502118470147252, + 0.046223752200603485, + 0.008930638432502747, + -0.02482101507484913, + 0.014381407760083675, + -0.0030602833721786737, + 0.0028581891674548388, + -0.022326596081256866, + -0.004284396767616272, + 0.027623388916254044, + -0.03304336220026016, + 0.011540540494024754, + 0.0010172073962166905, + 0.00987759418785572, + -0.0071291131898760796, + 0.03245825320482254, + 0.019832177087664604, + 0.00434598745778203, + -0.015721002593636513, + 0.030271785333752632, + 0.014227431267499924, + 0.028732020407915115, + -0.026745721697807312, + 0.04474557936191559, + 0.031626779586076736, + -0.022788526490330696, + 0.006274543236941099, + 0.014966518618166447, + -0.00714836036786437, + -0.029070768505334854, + 0.03307415917515755, + -0.012479797005653381, + 0.006374628283083439, + -0.01652168110013008, + -0.019647404551506042, + -0.0033201188780367374, + 0.019370246678590775, + -0.02366619184613228, + 0.019493428990244865, + 0.037570271641016006, + -0.010716766119003296, + 0.022896308451890945, + 0.007629537023603916, + 0.027977535501122475, + 0.0235122162848711, + 0.005777969025075436, + -0.03489108011126518, + 0.0403110533952713, + 0.0037531778216362, + -0.06269924342632294, + -0.031626779586076736, + 0.00047395899309776723, + -0.044376034289598465, + -0.0024616997689008713, + -0.030702918767929077, + 0.03627686947584152, + -0.02800833061337471, + 0.012549086473882198, + 0.009869894944131374, + -0.016614066436886787, + -0.02893218956887722, + -0.011255684308707714, + 0.015513135120272636, + 0.007306186016649008, + 0.01749173365533352, + 0.01593657024204731, + -0.022265005856752396, + 0.02188006415963173, + -0.02876281552016735, + -0.0007251331699080765, + 0.007872049696743488, + 0.024990389123558998, + -0.030394965782761574, + 0.049980778247117996, + 0.05610904470086098, + -0.016198329627513885, + -0.0042497520335018635, + 0.01923166774213314, + -0.00254061259329319, + -0.011771505698561668, + 0.0023423677776008844, + -0.02408192865550518, + -0.02315806970000267, + -0.023235058411955833, + 0.0323350690305233, + 0.001292440458200872, + -0.003905229503288865, + 0.002172993728891015, + 0.0027215350419282913, + 0.031903937458992004, + -0.0007227273308672011, + 0.004242053255438805, + 0.006944341119378805, + 0.002305798465386033, + 0.021171772852540016, + -0.00912310928106308, + -0.016706453636288643, + -8.210076339310035e-5, + -0.009969980455935001, + 0.04268229380249977, + -0.011679119430482388, + 0.010378018021583557, + 0.007560247555375099, + -0.011802300810813904, + 0.035075850784778595, + 0.004165065009146929, + 0.0003923995536752045, + -0.03036417067050934, + -0.004896453581750393, + -0.02460544928908348, + 0.027931341901421547, + -0.023927951231598854, + -0.03870970010757446, + -0.03430597111582756, + -0.03445994481444359, + -0.02095620520412922, + -0.010693669319152832, + 0.0004085189721081406, + -0.01258758082985878, + 0.04379092529416084, + 0.05466166511178017, + 0.01935485005378723, + 0.006955889519304037, + -0.01986297219991684, + 0.012572183273732662, + -0.024112723767757416, + 0.013850188814103603, + -0.03563016653060913, + 0.02402033843100071, + -0.007121414411813021, + 0.012518291361629963, + 0.016259921714663506, + 0.004311342723667622, + -0.05158213526010513, + -0.0018082618480548263, + -0.008222346194088459, + -0.007259993348270655, + -0.0010787979699671268, + 0.004757874645292759, + -0.017645709216594696, + 0.03304336220026016, + -0.009284784086048603, + -0.011694516986608505, + -0.002249981975182891, + 0.013472946360707283, + -0.0333821102976799, + -0.010054667480289936, + -0.004804067779332399, + 0.007891297340393066, + -0.05860346555709839, + -0.007837405428290367, + -0.020109334960579872, + 0.011717613786458969, + 0.015166687779128551, + 0.010839947499334812, + -0.037570271641016006, + 0.0022095630411058664, + 0.01532836351543665, + -0.01344984956085682, + 0.011525142937898636, + -0.018892919644713402, + 0.013011015951633453, + 0.014450697228312492, + -0.03393642604351044, + -0.02263454906642437, + 0.001785165281035006, + -0.00848410651087761, + -0.01544384565204382, + -0.018631160259246826, + -0.008753565140068531, + 0.0065247551538050175, + 0.006728773936629295, + -0.03726232051849365, + -0.057895172387361526, + 0.02147972583770752, + 0.01344984956085682, + -0.023773975670337677, + 0.022249607369303703, + 0.0021056290715932846, + -0.0024924951139837503, + 0.0041111730970442295, + -0.010524295270442963, + 0.024004939943552017, + 0.0047232299111783504, + -0.009954581968486309, + 0.05404575914144516, + 0.019832177087664604, + 0.008514901623129845, + -0.01950882561504841, + -0.020756036043167114, + 0.001004696823656559, + 0.016367703676223755, + 0.013041811995208263, + 0.01322658360004425, + 0.010455005802214146, + -0.010555090382695198, + 7.686796743655577e-5, + 0.013573030941188335, + -0.005042731296271086, + 0.004896453581750393, + 0.011194093152880669, + -0.012449001893401146, + 0.002427055034786463, + 0.00029688599170185626, + 0.017753493040800095, + -0.0009787132730707526, + 0.020894614979624748, + 0.011009321548044682, + -0.015844184905290604, + -0.015474640764296055, + -0.028670428320765495, + -0.01973978988826275, + 0.014350611716508865, + -0.006378477439284325, + -0.007845103740692139, + 0.008245442993938923, + -0.0015070452354848385, + -0.033874835819005966, + 0.0356917567551136, + -0.01209485623985529, + 0.01610594429075718, + -0.015336061827838421, + 0.025313740596175194, + -0.013026414439082146, + -0.004484566394239664, + 0.015097398310899734, + 0.029317131265997887, + 0.002275003120303154, + 0.0065940446220338345, + 0.01230272464454174, + 0.0002615195116959512, + 0.00334898941218853, + -0.0045846509747207165, + -0.007067522499710321, + 0.0073369815945625305, + -0.03846333548426628, + 0.025837261229753494, + -0.04643931984901428, + 0.015597822144627571, + 0.005446919705718756, + -0.00978520791977644, + -0.012387411668896675, + -0.009138506837189198, + -0.025144366547465324, + 0.014981916174292564, + -0.0036723401863127947, + -0.027577195316553116, + -0.005966590251773596, + -0.005316039547324181, + 0.007614139001816511, + 0.01669105514883995, + 0.026006635278463364, + 0.0033682365901768208, + -0.021972449496388435, + -0.029424913227558136, + -0.014620071277022362, + 0.02790054678916931, + -0.0130187151953578, + 0.016598669812083244, + -0.02790054678916931, + 0.015420748852193356, + 0.023696986958384514, + -0.03538380563259125, + -0.011155598796904087, + 0.006028180941939354, + 0.013326668180525303, + 0.010347222909331322, + -0.01935485005378723, + -0.02177228033542633, + -0.012649171985685825, + -0.023250455036759377, + -0.021264158189296722, + -0.012425906024873257, + -0.0030352622270584106, + 0.04277467727661133, + -0.0005836672498844564, + -0.004931098315864801, + 0.010585886426270008, + -0.016906622797250748, + -0.0014319816837087274, + 0.025452319532632828, + -0.0254061259329319, + -0.025205956771969795, + 0.008730469271540642, + 0.0075987414456903934, + 0.0220494382083416, + 0.01881593093276024, + 0.004192010965198278, + -0.018030650913715363, + -0.021525917574763298, + 0.029871445149183273, + -0.01940104179084301, + 0.0013049510307610035, + 0.02395874820649624, + 0.01796906068921089, + -0.01241820678114891, + 0.007875898852944374, + -0.0018708148272708058, + 0.0027831257320940495, + 0.03723152354359627, + -0.019909163936972618, + -0.011863891035318375, + -0.013519139029085636, + 0.010224041528999805, + -0.011856192722916603, + 0.002490570303052664, + -0.023804770782589912, + -0.004230504855513573, + -0.08117642253637314, + -0.02223421074450016, + 0.0008569756173528731, + 0.01698361150920391, + 0.010732163675129414, + -0.009569641202688217, + -0.003329742467030883, + 0.02668413147330284, + -0.013057209551334381, + 0.03504505753517151, + 0.009715918451547623, + -0.021618304774165154, + 0.012372014112770557, + 0.038648106157779694, + -0.006617140956223011, + 0.021587509661912918, + -0.0013809769880026579, + 0.0009609097614884377, + 0.011263382621109486, + -0.028162306174635887, + -0.012941726483404636, + 0.028916791081428528, + -0.0053814793936908245, + -0.008091466501355171, + -0.011956277303397655, + 0.021756883710622787, + -0.016429295763373375, + 0.004103474318981171, + -0.015228278003633022, + -0.01946263201534748, + 0.007302336860448122, + 0.014712456613779068, + -0.0057163783349096775, + 0.013172691687941551, + 0.019478030502796173, + -0.004754025023430586, + 0.007610289845615625, + -3.9095601096050814e-5, + 0.04881056025624275, + -0.008245442993938923, + 0.010955429635941982, + 0.021803075447678566, + -0.004761723801493645, + -0.02859344147145748, + -0.021233363077044487, + -0.020463479682803154, + -0.0021999396849423647, + -0.02714606188237667, + -0.005770270247012377, + 0.005670185666531324, + 0.01686042919754982, + 0.0065824962221086025, + 0.001696628867648542, + -0.01883132942020893, + -0.007313884794712067, + 0.015382254496216774, + 0.019816778600215912, + -0.00046024544280953705, + 0.02366619184613228, + -0.0006428519845940173, + 0.04382171854376793, + 0.008730469271540642, + 0.0010759109864011407, + 0.002942876424640417, + 0.0011115180095657706, + 0.02805452235043049, + -0.014543082565069199, + 0.008060671389102936, + 0.00938486959785223, + -0.00724459532648325, + -0.0036684907972812653, + -0.014712456613779068, + 0.018446387723088264, + 0.02154131606221199, + 0.0016610217280685902, + 0.002715761074796319, + 0.020109334960579872, + 0.0010480027412995696, + -0.010878441855311394, + -0.015451543964445591, + -0.009484954178333282, + -0.004757874645292759, + 0.009323278442025185, + 0.004288246389478445, + -0.002009393647313118, + -0.02200324460864067, + 0.004465319216251373, + -0.02853184938430786, + -0.01111710537225008, + 0.007779663894325495, + 0.004877206403762102, + 0.011994771659374237, + 0.04105013981461525, + 0.024913402274250984, + -0.005104321986436844, + 0.03347449749708176, + 0.024682436138391495, + 0.004141968674957752, + 0.011394263245165348, + -0.0033778599463403225, + 0.004738627467304468, + -0.0020459629595279694, + 0.009469556622207165, + -0.03535300865769386, + -0.004626994486898184, + 0.0005470978212542832, + -0.0005129342898726463, + 0.01622912660241127, + -0.03171916306018829, + -0.03452153503894806, + 0.010316426865756512, + 0.01679883897304535, + -0.02015552669763565, + 0.0017678430303931236, + -0.011656022630631924, + 0.017306961119174957, + -0.019247066229581833, + -0.02471323311328888, + -0.031087860465049744, + -0.009230893105268478, + 0.0034394506365060806, + 0.03932560607790947, + 0.027438616380095482, + -0.03550698608160019, + -0.00976211205124855, + -0.01230272464454174, + 0.0023808619007468224, + -0.009939184412360191, + 0.0071945530362427235, + 0.0218338705599308, + -0.009723617695271969, + 0.003196937497705221, + -0.004800218157470226, + 0.008176153525710106, + -0.023173466324806213, + 0.002147972583770752, + 0.0359073244035244, + -0.030964680016040802, + -0.000756890862248838, + -0.027330832555890083, + 2.5803097742027603e-5, + -0.00655555073171854, + 0.004207408521324396, + 0.003050660016015172, + -0.0025290644261986017, + -0.004284396767616272, + 0.012487496249377728, + -0.020063141360878944, + 0.0035279870498925447, + -0.021864665672183037, + -0.020971601828932762, + 0.016075149178504944, + 0.030179398134350777, + -0.009508050046861172, + 0.005196707788854837, + -0.008060671389102936, + -0.028223896399140358, + 0.01917007751762867, + -0.0026618691626936197, + 0.0032527539879083633, + -0.014681661501526833, + -0.001168296905234456, + -0.0038320908788591623, + -0.02275772951543331, + 0.016783440485596657, + -0.003816693089902401, + -0.03319733962416649, + -0.007525602821260691, + -0.022850116714835167, + -0.02101779542863369, + -0.00848410651087761, + 0.010224041528999805, + -0.017568722367286682, + -0.014458395540714264, + 0.0009931485401466489, + -0.00636692950502038, + -0.022203415632247925, + -0.021525917574763298, + 0.028377873823046684, + -0.004576952196657658, + 0.006605593021959066, + 0.005119719542562962, + 0.014011863619089127, + 0.027731172740459442, + 0.005119719542562962, + -0.0006375590455718338, + 0.004831013269722462, + -0.0006038766587153077, + 0.0012549086241051555, + -0.004684735555201769, + 0.02435908652842045, + 0.0031045516952872276, + -0.01719917729496956, + -0.007325433194637299, + -0.0014887605793774128, + -0.008322430774569511, + 0.03538380563259125, + 0.029132358729839325, + -0.019832177087664604, + -0.013188089244067669, + -0.0265609510242939, + -0.016891224309802055, + 0.028454862534999847, + 0.005331437103450298, + -0.0011913933558389544, + 0.005881903227418661, + -0.040218669921159744, + 0.014119647443294525, + 0.01047810260206461, + -0.016198329627513885, + 0.014235129579901695, + 0.017984457314014435, + 0.004738627467304468, + -0.010616681538522243, + -0.004091925919055939, + 0.005069677252322435, + -0.004434524103999138, + -0.00318346475251019, + 0.017276166006922722, + -0.002709986874833703, + 0.03205791115760803, + 0.011525142937898636, + -0.0054507688619196415, + -0.030456556007266045, + -0.013965670950710773, + 0.01388868223875761, + -0.005600896198302507, + -0.06331514567136765, + -0.01192548219114542, + 2.8028538508806378e-5, + -0.01429672073572874, + 0.004619295708835125, + 0.00040635367622599006, + -0.020124731585383415, + -0.0033220434561371803, + -0.007410120218992233, + 0.030056217685341835, + -0.0004936872282996774, + 0.017337756231427193, + -0.010747561231255531, + -0.03529141843318939, + -0.025606296956539154, + -0.02050967328250408, + 0.011809999123215675, + 0.021156374365091324, + 0.013272776268422604, + -0.031026270240545273, + -0.014589276164770126, + -0.022434379905462265, + 0.02084842137992382, + 0.011109406128525734, + -0.01761491410434246, + -0.02893218956887722, + 0.025036582723259926, + -0.0073331319727003574, + 0.008253141306340694, + -0.0012135275173932314, + -0.019447235390543938, + 0.01175610814243555, + 0.0013444075593724847, + 0.02217262051999569, + -0.01696821302175522, + 0.004503813572227955, + -0.007017480209469795, + 0.038956061005592346, + -0.013426752761006355, + 0.0011423133546486497, + -0.0003890313091687858, + 0.003449074225500226, + -0.008661179803311825, + -0.0029236292466521263, + -0.0005658637383021414, + -0.0220494382083416, + -0.0269766878336668, + 0.025821862742304802, + 0.009323278442025185, + -0.015674810856580734, + -0.002382786711677909, + 0.0024039584677666426, + 0.021063989028334618, + -0.015097398310899734, + 0.016352307051420212, + -0.021587509661912918, + 0.0191084872931242, + 0.012071759440004826, + -0.004465319216251373, + 0.017075996845960617, + -0.007891297340393066, + 0.03535300865769386, + -0.012464399449527264, + 0.02349681779742241, + 0.008930638432502747, + 0.022265005856752396, + -0.0044460720382630825, + 0.01633690856397152, + -0.01365771796554327, + 0.01070906687527895, + 0.005947343073785305, + -0.005777969025075436, + -0.00016805094492156059, + 0.022957900539040565, + -0.01726076751947403, + -0.009623533114790916, + 0.006944341119378805, + -0.002532913815230131, + -0.00022326596081256866, + 0.015451543964445591, + -0.005816463381052017, + 0.008160755969583988, + 0.012841641902923584, + -0.0007540038204751909, + 0.00512741832062602, + -0.03215029835700989, + -0.0012654946185648441, + -0.0035857283510267735, + -0.012102554552257061, + -0.00396874500438571, + 0.016598669812083244, + -0.010732163675129414, + -0.021464327350258827, + -0.01328047551214695, + -0.0156440157443285, + 0.02506737783551216, + 0.006374628283083439, + -0.0451459176838398, + -0.012826244346797466, + 0.004569253418594599, + -0.009169301949441433, + 0.03310495242476463, + -0.01975518837571144, + -0.02015552669763565, + 0.03014860302209854, + -0.014781746082007885, + -0.0029217046685516834, + 0.018738942220807076, + -0.011602130718529224, + -0.016182933002710342, + 0.0005750060663558543, + -0.00785665214061737, + 0.006655635312199593, + 0.020879216492176056, + 0.012064061127603054, + -0.019031498581171036, + 0.01772269792854786, + 0.007698826026171446, + 0.009161603637039661, + -0.006925094407051802, + 0.02326585352420807, + 0.029317131265997887, + -0.0007174343918450177, + -0.011309576220810413, + 0.015520833432674408, + 0.008830553852021694, + -0.002452076179906726, + 0.033874835819005966, + 0.023543011397123337, + -0.00966972578316927, + 0.03251984342932701, + -0.027962137013673782, + -0.019077692180871964, + -0.022218812257051468, + -0.029286334291100502, + 0.004665488842874765, + 0.014874132350087166, + -0.00826084055006504, + 0.006135964300483465, + 0.0225729588419199, + -0.012410507537424564, + 0.0037955213338136673, + -0.02355840802192688, + 0.0035530084278434515, + 0.003425977658480406, + -0.009269386529922485, + -0.006493960041552782, + -0.009892991743981838, + 0.008622685447335243, + -0.004680886399000883, + 0.0011923557613044977, + -0.0001488038687966764, + -0.002665718551725149, + -0.0005764496163465083, + 0.012056361883878708, + -0.021726088598370552, + -0.013673115521669388, + -0.013195788487792015, + 0.003999540116637945, + 0.007537150755524635, + 0.000942625047173351, + 0.009477254934608936, + -0.008407117798924446, + -0.0018977606669068336, + 0.007410120218992233, + 0.0022076384630054235, + 0.01106321346014738, + -0.004099625162780285, + 0.02120256796479225, + -0.029009176418185234, + 0.0033258928451687098, + -0.03938719630241394, + 0.016444692388176918, + -0.008191551081836224, + 0.004623145330697298, + -0.002765803365036845, + 0.013780899345874786, + 0.0011076686205342412, + 0.015536230988800526, + 0.01345754787325859, + 0.02338903397321701, + 0.00014050357276573777, + -0.021294953301548958, + -0.001643699361011386, + 0.025852657854557037, + -0.001965125324204564, + -0.008830553852021694, + -0.011301876977086067, + -0.01860036328434944, + 0.02043268457055092, + 0.017229972407221794, + 0.003678114153444767, + -0.01998615264892578, + -0.016999008134007454, + -0.00010561827366473153, + 0.0031295728404074907, + -0.019816778600215912, + -0.008114563301205635, + 0.01507430151104927, + -0.010116257704794407, + 0.0038205424789339304, + 0.00486565800383687, + 0.021510520949959755, + 0.022942502051591873, + -0.01360382605344057, + 0.004430674482136965, + -0.008291635662317276, + 0.02632998488843441, + -0.01801525428891182, + 0.005797216203063726, + -0.02425130270421505, + 0.00880745705217123, + -0.03760106861591339, + -0.0003401918802410364, + -0.01605975069105625, + 0.00337208597920835, + -0.026868904009461403, + 0.0035241376608610153, + -0.0007982720271684229, + 0.011586733162403107, + 0.005550853908061981, + 0.018169229850172997, + 0.02996383234858513, + -0.00929248332977295, + -0.022726934403181076, + 0.016136739403009415, + -0.005011935718357563, + -0.009885292500257492, + 0.014774047769606113, + 0.002686890307813883, + -0.00022567184350918978, + -0.022495970129966736, + 0.019785983487963676, + 0.012002469971776009, + -0.01187159027904272, + -0.0003336959925945848, + 0.0066517856903374195, + -0.02395874820649624, + 0.014774047769606113, + 0.03405960649251938, + -0.03205791115760803, + -0.03347449749708176, + 0.004900302737951279, + -0.017830481752753258, + -0.012279627844691277, + -0.024205109104514122, + 0.005142815876752138, + 0.0017832405865192413, + -0.013850188814103603, + 0.0010200944961979985, + -0.011809999123215675, + 0.0006900072912685573, + -0.0134883439168334, + 0.02737702615559101, + -0.01587498001754284, + 0.0004287283809389919, + 0.012148748151957989, + 0.026068225502967834, + -0.008776661939918995, + 0.03199632093310356, + -0.009415664710104465, + -0.01692201942205429, + 0.010262534953653812, + -0.02559089846909046, + -0.0011144051095470786, + -0.0038628859911113977, + 0.007879748940467834, + -0.007848952896893024, + -0.0380014069378376, + -0.015890376642346382, + -0.00045206546201370656, + 0.01570560596883297, + 0.006216802168637514, + -0.0028389422222971916, + -0.02355840802192688, + -0.024035735055804253, + -0.013634621165692806, + 0.0010441533522680402, + -0.025667887181043625, + 0.006008933763951063, + 0.012187241576611996, + 0.0076025910675525665, + -0.0214181337505579, + -0.002806222066283226, + -0.005223653744906187, + -0.02361999824643135, + -0.010031570680439472, + 0.008283937349915504, + 0.0003986548399552703, + 0.01405805628746748, + -0.01365771796554327, + -0.005816463381052017, + -0.010262534953653812, + -0.006686430424451828, + -0.019539620727300644, + 0.00015397652168758214, + -0.003678114153444767, + 0.007945188321173191, + 0.007541000377386808, + 0.0035164388827979565, + 0.012541388161480427, + -0.00272923381999135, + -0.0077257719822227955, + 0.008122261613607407, + -0.006424670573323965, + 0.0007592967594973743, + 0.010208643972873688, + -0.0005307378596626222, + 0.01345754787325859, + -0.0047232299111783504, + 0.0012828168692067266, + -0.015628617256879807, + -0.007387023884803057, + -0.004526909906417131, + -0.009939184412360191, + 0.006355381105095148, + 0.006032030563801527, + -0.01766110770404339, + 0.07298487424850464, + 0.019431836903095245, + 0.0025367632042616606, + 0.005650938488543034, + 0.007779663894325495, + -0.008607287891209126, + -0.005473865661770105, + 0.008584191091358662, + 0.0031372716184705496, + -0.013465247116982937, + -0.005227502901107073, + -0.024513062089681625, + 0.002931328024715185, + 0.008822854608297348, + -0.02662254124879837, + -0.0055777993984520435, + 0.01604435406625271, + 0.0020055442582815886, + -0.0035337612498551607, + 0.005496961995959282, + 0.022711537778377533, + -0.018092241138219833, + -0.017306961119174957, + 0.026376178488135338, + -0.015235977247357368, + 0.021217964589595795, + 0.021957052871584892, + -0.0109708271920681, + 0.01853877305984497, + 0.016367703676223755, + 0.002507892670109868, + -0.0026445467956364155, + -0.01790747046470642, + -0.004680886399000883, + -0.007256143726408482, + 0.0014136970276013017, + 0.007498656865209341, + 0.02114097774028778, + -0.00021484536409843713, + 0.010585886426270008, + 0.009654328227043152, + -0.010462705045938492, + 0.02223421074450016, + 0.020833024755120277, + -0.020586661994457245, + 0.005208256188780069, + -0.007891297340393066, + -0.0059242467395961285, + 0.0026060526724904776, + 0.021926257759332657, + -0.005493112374097109, + -0.02563709206879139, + -0.01622912660241127, + 0.0030737563502043486, + 0.006936642341315746, + 0.006786515470594168, + 0.0043883309699594975, + -0.014550781808793545, + -0.005300641991198063, + 0.0038359402678906918, + -0.025775671005249023, + -0.021556712687015533, + -0.027869751676917076, + -0.022711537778377533, + -0.026838108897209167, + 7.650708721484989e-5, + -0.01426592469215393, + -0.020833024755120277, + 0.00632073637098074, + -0.0067364731803536415, + -0.006232199724763632, + 0.015582424588501453, + -0.0019333676900714636, + -0.0356917567551136, + 0.0020074688363820314, + 0.031503595411777496, + 0.00782200787216425, + 0.010547392070293427, + -0.0025444619823247194, + 0.012710762210190296, + 0.007514054421335459, + 0.010824549943208694, + -0.019816778600215912, + -0.019909163936972618, + 0.013349764980375767, + -0.010401113890111446, + 0.009746714495122433, + -0.017645709216594696, + 0.015320664271712303, + -0.008014477789402008, + -0.010431909933686256, + -0.010401113890111446, + -0.0062475972808897495, + -0.012626075185835361, + 0.011332672089338303, + -0.002952499780803919, + -0.004026486072689295, + -0.010431909933686256, + 0.007975984364748001, + 0.0011711838888004422, + 0.007644934579730034, + -0.000516302534379065, + -0.010531994514167309, + 0.006851955316960812, + -0.009092314168810844, + -0.02338903397321701, + 0.01669105514883995, + 0.0072676921263337135, + -0.029132358729839325, + 0.005331437103450298, + -0.009338675998151302, + -0.015551629476249218, + 0.014366010203957558, + 0.006463164463639259, + -0.026714926585555077, + 0.018785135820508003, + 0.0068635037168860435, + -0.006624840199947357, + -0.0069173951633274555, + -0.013734705746173859, + -0.008230045437812805, + 0.00515436427667737, + 0.007945188321173191, + -0.02546771802008152, + 0.005339135881513357, + 0.00836862437427044, + -0.0025925796944648027, + -0.010247137397527695, + -0.018754340708255768, + 0.009100012481212616, + 0.0149588193744421, + 0.013950273394584656, + 0.029363323003053665, + -0.00978520791977644, + 0.006682581268250942, + -0.003903304925188422, + 0.010624379850924015, + -0.00044653192162513733, + 0.025898851454257965, + -0.0325506366789341, + 0.02679191529750824, + -0.011809999123215675, + -0.00831473246216774, + 0.010447307489812374, + 0.006443917751312256, + -0.002407807856798172, + 0.009092314168810844, + -0.022034041583538055, + 0.017399346455931664, + -0.013719308190047741, + 0.03661561757326126, + -0.0405266210436821, + -0.006809611804783344, + -0.005346834659576416, + 0.001963200746104121, + 0.01189468614757061, + -0.01123258750885725, + 0.016660260036587715, + -0.012602978385984898, + -0.0007010743720456958, + -0.005770270247012377, + 0.009715918451547623, + -0.01749173365533352, + 0.00799908023327589, + -0.015921171754598618, + 0.02459005080163479, + 0.006686430424451828, + 0.02114097774028778, + 0.021987847983837128, + -0.007179155480116606, + -0.01870814710855484, + 0.0032912481110543013, + 0.0021826173178851604, + -0.024759424850344658, + 0.0293941181153059, + -0.00033995130797848105, + 0.012572183273732662, + -0.0025829561054706573, + -0.014504588209092617, + 0.01673724874854088, + -0.005743324290961027, + -0.018107639625668526, + 0.020309504121541977, + -0.003755102399736643, + 0.007052124943584204, + -0.020756036043167114, + 0.009284784086048603, + -0.01957041583955288, + -0.001339595764875412, + 0.010886140167713165, + -0.015028108842670918, + 0.005516209173947573, + -0.00031517070601694286, + -0.0011086310259997845, + -0.01111710537225008, + -0.017691902816295624, + 0.0047925193794071674, + 0.020987000316381454, + 0.015343761071562767, + -0.002571407938376069, + -0.002097930060699582, + 0.012895533815026283, + 0.004422975704073906, + -0.006182157434523106, + -0.005824162159115076, + -0.007356228306889534, + -0.00016203623090405017, + -0.02830088511109352, + -0.010324126109480858, + 0.009985378012061119, + -0.026145214214920998, + -0.01686042919754982, + 0.0070713721215724945, + 0.01766110770404339, + 0.0033066459000110626, + 0.0184771828353405, + -0.004896453581750393, + 0.006628689356148243, + 0.01197937410324812, + 0.01151744369417429, + 0.013611524365842342, + 0.0006154249422252178, + 0.013026414439082146, + -0.0009541732724756002, + -0.015359158627688885, + -0.005173611454665661, + 0.003385558957234025, + 0.0059242467395961285, + 0.02454385720193386, + 0.00912310928106308, + 0.027992932125926018, + -0.00027475185925140977, + 0.0008550508646294475, + 0.02418971247971058, + -0.014789445325732231, + 0.034613922238349915, + 0.004245902877300978, + -0.004357535857707262, + -0.007783513516187668, + 0.015605520457029343, + -0.0183693990111351, + -0.0007183967391029, + -0.028516452759504318, + -0.008984530344605446, + -0.006501658819615841, + -0.014065755531191826, + 0.0028023726772516966, + -0.008915240876376629, + 0.004261300433427095, + -3.052464307984337e-5, + -0.014442997984588146, + -0.009469556622207165, + -0.0025733327493071556, + 0.02228040248155594, + 0.02632998488843441, + -0.008730469271540642, + -0.01128647942095995, + 0.00702902814373374, + -0.004565403796732426, + -0.017368551343679428, + 0.007510204799473286, + -0.003362462390214205, + -0.0004665007581934333, + 0.012864738702774048, + -0.0019449159735813737, + 0.01813843473792076, + -0.026745721697807312, + -0.009962281212210655, + 0.013311270624399185, + 0.0014079228276386857, + -0.004353686235845089, + 0.002269228920340538, + 0.015189784578979015, + 0.024928798899054527, + 0.006012783385813236, + 0.00534298550337553, + 0.017922867089509964, + -0.014781746082007885, + -0.0013982993550598621, + 0.001763031235896051, + -0.0027619539760053158, + 0.0001466385874664411, + 0.006039729341864586, + -0.018030650913715363, + 0.0028139210771769285, + -0.039695147424936295, + -0.005088923964649439, + 0.0055123595520854, + 0.0058549572713673115, + 0.018230820074677467, + -0.0073908730410039425, + -0.014450697228312492, + 0.0029467258136719465, + -0.013834790326654911, + 0.01187159027904272, + -0.01080145314335823, + -0.022157222032546997, + 0.0015792216872796416, + -0.0039206272922456264, + 0.005828011315315962, + -0.004342137835919857, + -0.007375475484877825, + 0.0005033107590861619, + -0.012279627844691277, + -0.006844256538897753, + -0.004811766557395458, + 0.030933883041143417, + 0.022957900539040565, + -0.002463624347001314, + 0.02477482333779335, + 0.00534298550337553, + -0.009477254934608936, + 0.024528460577130318, + -0.00976211205124855, + -0.009130807593464851, + -0.004915700759738684, + 0.0010114333126693964, + 0.006640237756073475, + 0.001253946335054934, + 0.004303643945604563, + -0.007914393208920956, + 0.006848106160759926, + 0.020802227780222893, + 0.009246290661394596, + 0.010678271763026714, + 0.016090547665953636, + 0.019909163936972618, + 0.007009781431406736, + 0.023235058411955833, + -0.023111876100301743, + 0.02345062419772148, + -0.0012789674801751971, + -0.018908318132162094, + -0.013996466062963009, + 0.002571407938376069, + 0.015890376642346382, + 0.0011962051503360271, + -0.012857039459049702, + -0.01510509755462408, + 0.0016735323006287217, + -0.019308656454086304, + -0.012918630614876747, + -0.02061745710670948, + 0.009715918451547623, + -0.006216802168637514, + 0.02788514830172062, + 0.008176153525710106, + 0.0045153615064918995, + 0.012803148478269577, + 0.020232515409588814, + 0.01339595764875412, + 0.021803075447678566, + 0.009600436314940453, + -0.005801065359264612, + -0.0036627165973186493, + 0.007945188321173191, + 0.013141896575689316, + 0.004138119053095579, + 0.010277933441102505, + 0.001951652462594211, + -0.021341146901249886, + 0.014358310960233212, + -0.013234281912446022, + -0.0037955213338136673, + -0.00534298550337553, + 0.012141048908233643, + -0.009130807593464851, + 0.0029852199368178844, + -0.009600436314940453, + 0.0006539190653711557, + 0.004626994486898184, + -0.02754640020430088, + -0.0179536622017622, + -0.000691931985784322, + -0.024528460577130318, + 0.015628617256879807, + 0.0022480571642518044, + 0.026668734848499298, + -0.016075149178504944, + 0.0095003517344594, + 0.03059513494372368, + -0.001763031235896051, + 0.00024058831331785768, + 0.008768962696194649, + 0.013880983926355839, + 0.019308656454086304, + -0.004669337999075651, + 0.029655879363417625, + -0.0046539404429495335, + -0.007829706184566021, + -0.013904079794883728, + 0.013780899345874786, + 0.014974216930568218, + -0.019370246678590775, + -0.013549934141337872, + -0.0036723401863127947, + -0.0229886956512928, + 0.018692750483751297, + 0.01059358473867178, + -0.0014329440891742706, + -0.020001551136374474, + -0.0005403613904491067, + 0.007233047392219305, + 0.003235431620851159, + -0.012518291361629963, + -0.023404432460665703, + -0.0036954365205019712, + 0.009854497388005257, + 0.022957900539040565, + -0.018969908356666565, + 0.0018400194821879268, + 0.019139282405376434, + -0.012187241576611996, + -0.003046810394152999, + 0.017075996845960617, + 0.00762183777987957, + 0.0009772697230800986, + -0.0015339910751208663, + 0.0037955213338136673, + 0.010832248255610466, + 0.011217189952731133, + -0.010655175894498825, + 0.0005331436987034976, + -0.0027330832090228796, + 0.01593657024204731, + -0.011671420186758041, + 0.03840174525976181, + -0.00016636682266835123, + 0.006343832705169916, + 0.006467014085501432, + 0.012348917312920094, + -0.03479869291186333, + -0.00843021459877491, + 0.014920325018465519, + -0.023312045261263847, + -0.01187159027904272, + 0.02529834397137165, + -0.01420433446764946, + 0.011555938050150871, + 0.008661179803311825, + -0.02483641356229782, + -0.01627531833946705, + -0.008137659169733524, + -0.009823702275753021, + 0.01929325796663761, + -0.0014541158452630043, + 0.006413122173398733, + 0.009631231427192688, + 0.014727854169905186, + 0.009107711724936962, + -0.001106706215068698, + -0.0004984990227967501, + 0.010177847929298878, + 0.0054507688619196415, + -0.025021186098456383, + -0.005285244435071945, + 0.01160982996225357, + -0.0010258685797452927, + 0.02870122343301773, + -0.04111173376441002, + 0.0015907699707895517, + -0.006497809197753668, + 0.013619223609566689, + -0.0041111730970442295, + -0.008491805754601955, + 0.0017774665029719472, + 0.010123956948518753, + 0.007983682677149773, + -0.0037820483557879925, + 0.010847645811736584, + -0.0057856678031384945, + 0.019308656454086304, + 0.02552930824458599, + 2.2931073544896208e-5, + 0.017060598358511925, + 0.00976211205124855, + -0.012656870298087597, + 0.021726088598370552, + 0.0024944196920841932, + -0.01610594429075718, + -0.01813843473792076, + 0.0004621701664291322, + -0.02529834397137165, + 0.001273193396627903, + 0.024297496303915977, + -0.008214647881686687, + -0.0004624107386916876, + 0.012672267854213715, + -0.007625687401741743, + -0.017229972407221794, + 0.02189546264708042, + 0.029717469587922096, + 0.009100012481212616, + -0.0023269702214747667, + 0.002754255197942257, + -0.005762571468949318, + 0.009469556622207165, + 0.03870970010757446, + 0.0033605375792831182, + -0.023604601621627808, + 0.002128725405782461, + 0.0014262076001614332, + -0.007848952896893024, + 0.014550781808793545, + 0.011101707816123962, + 0.014604673720896244, + -0.0077411700040102005, + 0.012656870298087597, + 0.01522057969123125, + 0.006963588297367096, + 0.011194093152880669, + 0.007641084957867861, + -0.0064593153074383736, + 0.009169301949441433, + -0.0032700763549655676, + 0.005612444132566452, + 0.0025502361822873354, + -0.000578374310862273, + 0.019447235390543938, + 0.002969822147861123, + -0.006089771632105112, + -0.02177228033542633, + -0.00496574304997921, + 0.019416440278291702, + 0.03772424906492233, + -0.01532836351543665, + 0.018446387723088264, + -0.010177847929298878, + 0.005496961995959282, + -0.0027215350419282913, + -0.002848565811291337, + 0.006474712863564491, + -0.008884445764124393, + -0.005092773586511612, + 0.018061446025967598, + 0.03221188858151436, + 0.026145214214920998, + 0.020940806716680527, + 0.034860286861658096, + -0.022896308451890945, + 0.010200944729149342, + 0.0043074931018054485, + 0.03661561757326126, + -0.01420433446764946, + -0.0005114907398819923, + -0.013249680399894714, + 0.0014579652342945337, + -0.007021329365670681, + -0.010385716333985329, + 0.001860228949226439, + -0.030179398134350777, + -0.006255296524614096, + 0.028516452759504318, + 0.0023462173994630575, + 0.024974992498755455, + -0.0060512772761285305, + 0.011324973776936531, + 0.002596429083496332, + -0.01669105514883995, + 0.021756883710622787, + -0.009769810363650322, + 0.00017466711869928986, + -0.010778356343507767, + 0.000492003106046468, + -0.01437370851635933, + 0.007806609850376844, + 0.013796296902000904, + 0.012987920083105564, + 0.015097398310899734, + 0.01669105514883995, + -0.005065827630460262, + -0.010809152387082577, + -0.0027888996992260218, + -0.0034933423157781363, + 0.005743324290961027, + 0.004265149589627981, + -0.03449074178934097, + -0.009438760578632355, + 0.010470403358340263, + 0.0034837189596146345, + 0.001873701810836792, + 0.0033066459000110626, + -0.03218109533190727, + -0.0021595207508653402, + -0.008537998422980309, + 0.012572183273732662, + -0.0025425374042242765, + 0.007383174262940884, + 0.01864655688405037, + -0.018569568172097206, + 0.016490885987877846, + -0.0005928096361458302, + -0.009969980455935001, + -0.0010335674742236733, + 0.013003317639231682, + -0.006478562485426664, + 0.0001892227155622095, + -0.011109406128525734, + -0.028316283598542213, + -0.01860036328434944, + -0.021926257759332657, + -0.0062629953026771545, + 0.00848410651087761, + 0.0021268008276820183, + 0.017707299441099167, + 8.420590893365443e-5, + 0.005277545191347599, + -0.009685123339295387, + -0.014689360745251179, + -0.013072607107460499, + 0.004011088516563177, + 0.0010557015193626285, + 0.0035992013290524483, + -0.004434524103999138, + 0.004973441828042269, + 0.0003016977570950985, + 0.0184771828353405, + -0.006628689356148243, + 0.014027261175215244, + 0.010701368562877178, + 0.016721850261092186, + 0.025837261229753494, + 5.190692900214344e-5, + 0.0024924951139837503, + 0.011486648581922054, + -0.003441375447437167, + 0.0071984026581048965, + 0.00788359809666872, + 0.014550781808793545, + -0.025791067630052567, + -0.01273385901004076, + 0.025483114644885063, + -0.005527757108211517, + -0.026129815727472305, + -0.00039191838004626334, + 0.011371166445314884, + -0.021094784140586853, + 0.0029024574905633926, + 0.010062365792691708, + -0.01669105514883995, + 0.010393415577709675, + -0.009600436314940453, + -0.005146665498614311, + -0.008645782247185707, + 0.01958581432700157, + -0.03037956915795803, + 0.00012095578131265938, + 0.013573030941188335, + -0.005246750079095364, + -0.010208643972873688, + -0.019216271117329597, + 0.01094773132354021, + -0.01709139347076416, + 0.006501658819615841, + -4.386977707326878e-6, + -0.010870742611587048, + 0.009885292500257492, + -0.035722553730010986, + 0.04465319216251373, + 0.012071759440004826, + -0.011194093152880669, + -0.0061205667443573475, + -0.0095003517344594, + -0.012818546034395695, + -0.008099164813756943, + -0.017630312591791153, + 0.024174313992261887, + -0.0026137514505535364, + -0.010439608246088028, + 0.00296789756976068, + -0.0017861276865005493, + -0.003526062471792102, + -0.0323350690305233, + 0.01639850065112114, + 0.0024963445030152798, + 0.01010086014866829, + -0.00886134896427393, + -0.01284934114664793, + 0.018230820074677467, + -0.023281250149011612, + 0.0038590366020798683, + -0.011910084635019302, + 0.009338675998151302, + -0.006713376380503178, + -1.6224674254772253e-5, + 0.01518208533525467, + -0.007202251814305782, + -0.012202640064060688, + -0.008060671389102936, + -0.0038705850020051003, + -0.017075996845960617, + 0.007756567560136318, + -0.026314588263630867, + -0.01704520173370838, + -0.019878368824720383, + -0.009477254934608936, + -0.007745019160211086, + -0.02632998488843441, + -0.02021711692214012, + -0.0023808619007468224, + -0.012102554552257061, + -0.0027600291650742292, + 0.00677111791446805, + -0.01587498001754284, + -0.021587509661912918, + -0.026714926585555077, + 0.009454159066081047, + 0.0065940446220338345, + 0.013549934141337872, + -0.01344984956085682, + 0.013865586370229721, + 0.017830481752753258, + 0.006420820951461792, + 0.013318969868123531, + -0.020863819867372513, + -0.03445994481444359, + 0.011155598796904087, + 0.0026060526724904776, + -0.0015898075653240085, + 0.0014493040507659316, + 0.006836557760834694, + -0.004769423045217991, + -0.012464399449527264, + 0.016783440485596657, + -6.261310772970319e-5, + -0.007760416716337204, + 0.003260452998802066, + 0.015905775129795074, + -0.01813843473792076, + -0.007356228306889534, + 0.02015552669763565, + 0.005023484118282795, + 0.0063284351490437984, + 0.004153516609221697, + -0.024035735055804253, + -0.016721850261092186, + -0.0013097628252580762, + 0.011425058357417583, + -0.004603898152709007, + 0.0068635037168860435, + -0.030826101079583168, + -0.03944878652691841, + -0.024744028225541115, + 0.00204211357049644, + 0.007156059145927429, + -0.005173611454665661, + 0.00026897774660028517, + 7.743936293991283e-6, + -0.01973978988826275, + 0.022388186305761337, + -0.0016003935597836971, + -0.005847258493304253, + 0.016306113451719284, + -0.0035414600279182196, + -0.0030429610051214695, + -0.0016475488664582372, + 0.015951968729496002, + 0.009685123339295387, + 0.010870742611587048, + 0.005920397583395243, + 0.007375475484877825, + -0.012341218069195747, + 0.006944341119378805, + 0.014789445325732231, + 0.010732163675129414, + 0.019077692180871964, + 0.0059242467395961285, + -0.01047810260206461, + -0.013757802546024323, + 0.01773809641599655, + 0.011086310259997845, + -0.002405883278697729, + -0.023604601621627808, + -0.031780753284692764, + -0.0043767825700342655, + -0.01853877305984497, + -0.0047501758672297, + 0.004138119053095579, + 0.00351451407186687, + 0.007698826026171446, + -0.001355955726467073, + 0.0041111730970442295, + -0.018384797498583794, + -0.013465247116982937, + -0.027115266770124435, + -0.01789207197725773, + -0.0058588068932294846, + 0.0013164993142709136, + 0.01279544923454523, + 0.0075871930457651615, + 0.02563709206879139, + 0.00906921736896038, + -0.01650628261268139, + -0.005489263217896223, + 0.022188017144799232, + -0.008245442993938923, + 0.00819925032556057, + -0.00895373523235321, + -0.009484954178333282, + -0.008584191091358662, + 0.003146895207464695, + 0.011109406128525734, + -0.005239051301032305, + -0.013519139029085636, + -0.003810918889939785, + 0.02211102843284607, + -0.014473793096840382, + -0.0008295485167764127, + -0.016259921714663506, + 0.006374628283083439, + 0.008476407267153263, + 0.0019170077284798026, + 0.001990146469324827, + -0.004280547611415386, + 0.010339523665606976, + -0.003945648670196533, + -0.0006096508004702628, + -0.0024963445030152798, + 0.032027117908000946, + 0.022218812257051468, + -0.02147972583770752, + -0.005797216203063726, + 0.016244523227214813, + -0.010632079094648361, + -0.03538380563259125, + 0.010878441855311394, + 0.005920397583395243, + -0.009192398749291897, + 0.01646009087562561, + -0.013126499019563198, + -0.012787749990820885, + 0.0018044124590232968, + -0.0034837189596146345, + 0.002086381893604994, + 0.01489722914993763, + -0.015967365354299545, + -0.01610594429075718, + 0.00598968705162406, + 0.023712385445833206, + 0.006867352873086929, + 0.0005360307986848056, + -0.02535993419587612, + 0.012087156996130943, + 0.0006433331873267889, + -0.006228350568562746, + -0.005947343073785305, + -0.014943421818315983, + -0.0220494382083416, + -0.011586733162403107, + -0.016644861549139023, + -0.0024347538128495216, + 0.009400267153978348, + 0.005500811152160168, + 0.017122190445661545, + -0.013380560092628002, + 0.0014550781343132257, + -0.009076915681362152, + 0.0023789373226463795, + -0.0033335918560624123, + 0.0002593542158138007, + 0.017291564494371414, + -0.005346834659576416, + -0.0033451400231570005, + 0.008337829262018204, + 0.022188017144799232, + -0.001790939480997622, + -0.0013973369495943189, + -0.013626922853291035, + 0.006878901273012161, + -0.026376178488135338, + 0.007259993348270655, + -0.001696628867648542, + 0.009153904393315315, + -0.006116717588156462, + 0.006755719892680645, + -0.007952887564897537, + 0.016152137890458107, + -0.010978526435792446, + 0.01818462833762169, + 0.006232199724763632, + -0.004973441828042269, + -0.006948190741240978, + 0.0008617873536422849, + 0.023312045261263847, + -0.0323350690305233, + -0.0075063556432724, + 0.03136501833796501, + -0.02101779542863369, + -0.00667103286832571, + 0.023250455036759377, + 0.004292095545679331, + 0.008122261613607407, + 0.014550781808793545, + 0.0012164145009592175, + -0.012995618395507336, + 0.008114563301205635, + 0.027761967852711678, + 0.016552476212382317, + -0.007710374426096678, + 0.01726076751947403, + 0.01328047551214695, + 0.002471323125064373, + -0.011709914542734623, + 0.003399031702429056, + -0.00636692950502038, + 0.005535455886274576, + -0.02857804298400879, + -0.003691587131470442, + -0.00032070421730168164, + 0.003233507042750716, + -0.002432829001918435, + 0.01275695487856865, + 0.003822467289865017, + -5.876369687030092e-5, + -0.011201792396605015, + -0.002178767928853631, + 0.007679579313844442, + -0.0076025910675525665, + 0.007448614574968815, + -0.025313740596175194, + -0.010023871436715126, + 0.014943421818315983, + 0.003893681336194277, + 0.033412907272577286, + 0.017353154718875885, + -0.01368081383407116, + -0.009392567910254002, + -0.02038649283349514, + -0.0038821331690996885, + -0.006609442178159952, + 0.01377320010215044, + -0.012056361883878708, + 0.017106791958212852, + -0.012287327088415623, + -0.0063861762173473835, + -0.0002771577564999461, + 0.017306961119174957, + -0.009831401519477367, + -0.0025175162591040134, + 0.004519211128354073, + 0.01986297219991684, + 0.011702216230332851, + -0.0001407441741321236, + -0.015536230988800526, + -0.00852260086685419, + 0.007294638082385063, + -0.0023616149555891752, + -0.01016245037317276, + -0.021510520949959755, + 0.00633998354896903, + 0.008915240876376629, + -0.007868200540542603, + 0.01975518837571144, + 0.0045885005965828896, + 0.01194857805967331, + -0.0015676735201850533, + 0.00396874500438571, + -0.011763806454837322, + -0.01715298555791378, + -0.02777736447751522, + 0.0055123595520854, + -0.016845032572746277, + 0.04151207208633423, + -0.018738942220807076, + -0.0012857039691880345, + -0.006343832705169916, + 0.005547004286199808, + -0.008360925130546093, + -0.012194940820336342, + 0.0004436448507476598, + 0.00940796546638012, + 0.001895835972391069, + 0.016783440485596657, + 0.008022177033126354, + 0.030117807909846306, + 0.01322658360004425, + -0.011032418347895145, + 0.00906921736896038, + -0.006305338814854622, + -0.003221958875656128, + -0.02689969912171364, + 0.013334367424249649, + 0.0050581288523972034, + -0.021987847983837128, + 0.02164909988641739, + -0.008799758739769459, + 0.020401889458298683, + -0.0024289796128869057, + 0.012194940820336342, + -0.007660332135856152, + -0.000609169655945152, + -0.02754640020430088, + -0.007652633357793093, + 0.006963588297367096, + -0.013349764980375767, + -0.02529834397137165, + 0.017799686640501022, + 0.009862196631729603, + 0.00055768369929865, + -0.009438760578632355, + 0.004338288679718971, + -0.002219186630100012, + 0.003437525825574994, + -0.015797991305589676, + 0.021217964589595795, + -0.0077950614504516125, + 0.013588428497314453, + 0.014366010203957558, + -0.033412907272577286, + 0.008815156295895576, + -0.0026618691626936197, + 0.014212033711373806, + -0.01883132942020893, + 0.007868200540542603, + -0.01057048887014389, + 0.023188864812254906, + 0.027454014867544174, + 0.013842489570379257, + -0.01652168110013008, + 0.015744099393486977, + 0.0053121899254620075, + 0.029317131265997887, + -0.004334439057856798, + 0.0028909093234688044, + 0.014381407760083675, + -0.011417359113693237, + -0.005766421090811491, + -0.015682509168982506, + -0.05121259391307831, + -0.02559089846909046, + 0.02212642692029476, + 0.00023264890478458256, + 0.020894614979624748, + 0.0006794214132241905, + -0.027099868282675743, + 0.0008300297195091844, + -0.008206948637962341, + 0.03393642604351044, + -0.0028466410003602505, + 0.010601283982396126, + -0.005885752849280834, + -0.0011249909875914454, + 0.014358310960233212, + 0.012572183273732662, + -0.014042658731341362, + -0.009261688217520714, + 0.01940104179084301, + -0.005373780615627766, + 0.02124875970184803, + 0.01927786134183407, + -4.2674353608163074e-5, + -0.0011047815205529332, + 0.0007150284945964813, + -0.003814768511801958, + 0.012841641902923584, + 0.002096005482599139, + -0.005250599700957537, + 0.020355695858597755, + 0.010123956948518753, + 0.03581494092941284, + 0.002565633738413453, + 0.006967437919229269, + 0.0032508294098079205, + -0.019308656454086304, + -0.003495267126709223, + 0.005031182896345854, + -0.02374318055808544, + 0.015605520457029343, + -0.0005182272288948298, + -0.011032418347895145, + -0.009115410037338734, + 0.022218812257051468, + -0.009577339515089989, + 0.002898608101531863, + -0.01612134277820587, + 0.012425906024873257, + -0.009808304719626904, + 0.0011538616381585598, + -0.015051205642521381, + 0.01562091801315546, + 0.010901537723839283, + -0.013950273394584656, + -0.013303571380674839, + -0.007113715633749962, + -0.010123956948518753, + -0.005908849183470011, + -0.001658134744502604, + -0.004804067779332399, + -0.00669797882437706, + -0.013164992444217205, + -0.006540152709931135, + -0.009261688217520714, + 0.016829634085297585, + 0.011240286752581596, + 0.0009830439230427146, + 0.004357535857707262, + -0.005550853908061981, + -0.011902385391294956, + 0.010316426865756512, + 0.006282242015004158, + 0.006205253768712282, + 0.020771432667970657, + -0.0002761953801382333, + 0.010447307489812374, + -0.003481794148683548, + -0.0015176311135292053, + 0.0007799873128533363, + -0.0007501543732360005, + 0.004292095545679331, + 0.002432829001918435, + -0.006563249509781599, + -0.0059126983396708965, + -0.051890090107917786, + -0.001339595764875412, + 0.016306113451719284, + -0.0004898378392681479, + -0.02009393647313118, + 0.006089771632105112, + 0.006767268292605877, + 0.0036338460631668568, + 0.005874204449355602, + 0.005331437103450298, + -0.0018332829931750894, + -0.0015984687488526106, + -0.0056586372666060925, + 0.011448154225945473, + -0.015921171754598618, + 0.000804046168923378, + 0.004426824860274792, + -0.007352379150688648, + 0.020478878170251846, + 0.020247913897037506, + 0.005304491147398949, + 0.011802300810813904, + 0.018384797498583794, + 0.00016263770521618426, + 0.0067210751585662365, + -0.002950575202703476, + 0.022942502051591873, + -0.008114563301205635, + 0.01360382605344057, + 0.010131655260920525, + 0.02164909988641739, + 0.00510817114263773, + -0.016768043860793114, + -0.00285049038939178, + 0.0044576204381883144, + 0.007637235801666975, + 0.006728773936629295, + -0.005092773586511612, + -0.0007294637616723776, + 0.005493112374097109, + 0.013973369263112545, + -0.006890449672937393, + -0.02859344147145748, + 0.014073454774916172, + -0.012387411668896675, + 0.0027196104638278484, + -0.002819695044308901, + 0.01906229369342327, + 0.004188161343336105, + 0.004669337999075651, + -0.024898003786802292, + 0.003651168430224061, + -0.0020286408253014088, + 0.014827939681708813, + -0.012402809225022793, + 0.00805297214537859, + -0.0003806107270065695, + -0.016152137890458107, + 0.0025309892371296883, + -0.022188017144799232, + -0.012425906024873257, + -0.006782665848731995, + 0.01732235960662365, + -0.0014233205001801252, + 0.012064061127603054, + -0.01053969282656908, + 0.007367776706814766, + -0.018153831362724304, + -0.017075996845960617, + -0.004018787294626236, + -0.0029274786356836557, + 0.0021152524277567863, + 0.01114020124077797, + -0.002047887770459056, + -0.006228350568562746, + 0.0114943478256464, + -0.004769423045217991, + -0.013757802546024323, + 0.04006469249725342, + -0.009708220139145851, + -0.027269242331385612, + -0.0016821934841573238, + -0.005604745354503393, + -0.007960585877299309, + -0.010208643972873688, + 0.008407117798924446, + -0.0011798450723290443, + 0.016152137890458107, + -0.02189546264708042, + -0.00456155464053154, + 0.020863819867372513, + -0.0059280963614583015, + -0.01486643310636282, + 0.0032065610866993666, + 0.002482871524989605, + 0.014951120130717754, + -0.02737702615559101, + 0.024497665464878082, + -0.0013376710703596473, + 0.00016648712335154414, + -0.006778816692531109, + -0.0026753421407192945, + -0.009854497388005257, + 0.006532453931868076, + -0.009469556622207165, + -0.002942876424640417, + 0.030641328543424606, + 0.010616681538522243, + 0.0032200340647250414, + 0.015405351296067238, + 0.013811694458127022, + -0.009939184412360191, + 0.021294953301548958, + -0.011817698366940022, + 0.010524295270442963, + -0.006470863241702318, + 0.004811766557395458, + 0.00030723129748366773, + 0.0025887303054332733, + -0.0005793366581201553, + -0.007864351384341717, + 0.006882750894874334, + -0.009823702275753021, + 0.0027003632858395576, + -0.005466166418045759, + 0.006520905997604132, + 0.004807916935533285, + 0.007206101436167955, + -0.004049582406878471, + 0.005493112374097109, + 0.01322658360004425, + 0.003810918889939785, + -0.022203415632247925, + -0.0009820815175771713, + 0.014104249887168407, + -0.020740637555718422, + -0.0053814793936908245, + -0.007729621604084969, + 0.016537079587578773, + -0.011455853469669819, + 0.016152137890458107, + -0.010293330997228622, + 0.01215644646435976, + -0.00555855268612504, + -0.016383102163672447, + 0.003531836438924074, + -0.004095775540918112, + 0.012672267854213715, + -0.0009195285383611917, + -0.022018643096089363, + 0.025021186098456383, + 0.0295019019395113, + 0.0006914508412592113, + -0.01704520173370838, + 0.016413897275924683, + -0.0254061259329319, + -0.0001882603537524119, + 0.011933180503547192, + -0.018569568172097206, + -0.007860501296818256, + 0.009223193861544132, + -0.023004092276096344, + 0.005597046576440334, + -0.018107639625668526, + 0.018723545596003532, + 0.0012010169448330998, + 0.015228278003633022, + 0.006128265522420406, + -0.012672267854213715, + 0.010023871436715126, + -0.01866195537149906, + -0.019539620727300644, + -0.014543082565069199, + -0.0027561797760427, + 0.05265996977686882, + 0.031087860465049744, + -0.007764266338199377, + -0.010431909933686256, + 0.005866505671292543, + -0.018908318132162094, + 0.005974289029836655, + 0.00026994009385816753, + -0.015259074047207832, + -0.00852260086685419, + 0.013203486800193787, + -0.0033316670451313257, + -0.013095703907310963, + -0.004419126082211733, + -0.010277933441102505, + 0.002740782219916582, + -0.0019093089504167438, + -0.017568722367286682, + -0.0062629953026771545, + 0.001765918219462037, + 0.00826084055006504, + -0.001106706215068698, + -0.003855187213048339, + 0.014781746082007885, + 0.005131267476826906, + 0.007617988623678684, + -0.007764266338199377, + -0.00021725124679505825, + -0.011733011342585087, + -0.008684275671839714, + 0.025775671005249023, + -0.011933180503547192, + -0.03741629421710968, + 0.0061937058344483376, + -0.019200872629880905, + 0.012749256566166878, + -0.00529679236933589, + 0.007298487238585949, + -0.0038128437008708715, + -0.0014820240903645754, + -0.018692750483751297, + -0.005951192695647478, + 0.015890376642346382, + -0.020463479682803154, + -0.008884445764124393, + -0.002015167847275734, + -0.008799758739769459, + -0.0009228967828676105, + -0.011371166445314884, + -0.021864665672183037, + 0.0220494382083416, + -0.01073986291885376, + -0.027746569365262985, + -0.0036030507180839777, + -0.02437448315322399, + 0.003449074225500226, + 0.008930638432502747, + -0.017768891528248787, + -0.0144891906529665, + -0.0064554656855762005, + -0.009138506837189198, + 0.0033124200999736786, + 0.008283937349915504, + 0.005920397583395243, + -0.007371626328676939, + 0.008029875345528126, + -7.392076076939702e-5, + -0.00993148609995842, + 0.009269386529922485, + -0.005781818646937609, + 0.014227431267499924, + -0.029409516602754593, + -0.018107639625668526, + 0.002579106716439128, + -0.017922867089509964, + -0.02725384570658207, + -0.016583271324634552, + -0.02679191529750824, + -0.015413050539791584, + 0.0002858189109247178, + 0.002825469244271517, + -0.01057048887014389, + 0.006501658819615841, + 0.0012789674801751971, + -0.005366081837564707, + 0.007898995652794838, + -0.014242828823626041, + -0.008006779477000237, + 0.009138506837189198, + 0.01935485005378723, + 0.00976211205124855, + -0.007352379150688648, + -0.013272776268422604, + 0.004407578147947788, + 0.007802760228514671, + -0.003689662553369999, + -0.005208256188780069, + 0.0009628344560042024, + 0.001256833435036242, + 0.019185474142432213, + 0.0008829591097310185, + 0.019878368824720383, + -0.005777969025075436, + 0.004788669757544994, + -0.012810846790671349, + -0.03479869291186333, + 0.01151744369417429, + -0.010239439085125923, + -0.006851955316960812, + 0.01656787469983101, + -0.020602058619260788, + 0.015351459383964539, + 0.00191219593398273, + 0.008353226818144321, + 0.0114943478256464, + 0.006116717588156462, + -0.00010970827133860439, + -0.0073331319727003574, + 0.007806609850376844, + 0.011686818674206734, + -0.004507662728428841, + 0.01241820678114891, + 0.015567027032375336, + 0.004145817831158638, + -0.015366856940090656, + 0.007556397933512926, + -0.0002959236444439739, + 0.012202640064060688, + 0.005265997257083654, + -0.019478030502796173, + 0.0016629464225843549, + 0.00836862437427044, + -0.004881056025624275, + 0.004415276926010847, + -0.008391720242798328, + -0.013503741472959518, + -0.0025983538944274187, + -0.02466703951358795, + 0.02061745710670948, + -0.011086310259997845, + -0.018200024962425232, + 0.011694516986608505, + 0.016829634085297585, + -0.00032936540083028376, + 0.011555938050150871, + -0.013034112751483917, + -0.0003993766149505973, + 0.016875827684998512, + -0.001643699361011386, + 0.007510204799473286, + -0.0012529839295893908, + 0.012626075185835361, + 0.008230045437812805, + 0.014181237667798996, + 0.010447307489812374, + 0.035537783056497574, + -0.018985304981470108, + 0.006486261263489723, + -0.00313342222943902, + 0.009900690987706184, + 0.001417546416632831, + 0.00020281595061533153, + 0.00510817114263773, + 0.01451998669654131, + -0.008299334906041622, + -0.005481564439833164, + 0.0006851955549791455, + 0.006805762182921171, + -0.013796296902000904, + -0.010347222909331322, + -0.020001551136374474, + -0.010224041528999805, + -0.008245442993938923, + 0.00536993145942688, + 0.010847645811736584, + 0.0032893235329538584, + -0.005851108115166426, + -0.005385329015552998, + -0.033690065145492554, + -0.009223193861544132, + 0.012017867527902126, + 0.00930018164217472, + 0.02338903397321701, + 0.0013915628660470247, + -0.04058821126818657, + 0.016367703676223755, + -0.006089771632105112, + 0.004207408521324396, + 0.00041020309436134994, + -0.018354002386331558, + 0.011971674859523773, + 0.023650793358683586, + -0.0008824779652059078, + -0.005885752849280834, + -0.006817310582846403, + 0.0001281132863368839, + 0.012010169215500355, + -0.007144510746002197, + -0.020294105634093285, + 0.007591042667627335, + 0.0184771828353405, + -0.006952039897441864, + -0.0075871930457651615, + -0.007325433194637299 + ], + "13afaf92-1e65-43e2-831c-2ecd72c108a2": [ + -0.015102751553058624, + -0.013414633460342884, + -0.019826702773571014, + 0.010878982953727245, + -0.03915322199463844, + -0.017992697656154633, + 0.006870571058243513, + 0.008510059677064419, + 0.030594533309340477, + -4.2767394916154444e-5, + -0.012615730054676533, + 0.021452298387885094, + 0.003079252317547798, + -0.025106413289904594, + 0.011274960823357105, + 0.0031435119453817606, + -0.0179093349725008, + -0.0030566744972020388, + 0.004866364877671003, + -0.008510059677064419, + 0.08258578926324844, + -0.01115686260163784, + -0.011740409769117832, + -0.005814628675580025, + 0.013963445089757442, + -0.03656894341111183, + -0.000957815907895565, + -0.0031417752616107464, + -0.04565560445189476, + 0.0017775604501366615, + 0.001378977089188993, + 0.025425974279642105, + 0.0016490411944687366, + 0.004185560159385204, + -0.01679781638085842, + -0.024508973583579063, + -0.011677886359393597, + 0.004081355407834053, + -0.007551375776529312, + -0.021980268880724907, + -0.01199050061404705, + 0.0246479120105505, + -0.00855174195021391, + -0.002665906446054578, + -0.041987594217061996, + 0.005161611828953028, + 0.013213170692324638, + -0.008885197341442108, + -0.002002469263970852, + -0.011650098487734795, + 0.009809146635234356, + 0.016144799068570137, + -0.0011679623275995255, + 0.008114081807434559, + 0.02318904548883438, + -0.014241324737668037, + -0.017520302906632423, + 0.06808047741651535, + 0.009183918125927448, + -0.023953214287757874, + -0.0021691969595849514, + 0.03595760837197304, + 0.0035325433127582073, + -0.028371497988700867, + 0.010066185146570206, + -0.023522499948740005, + -0.0026763270143419504, + 0.0011419111397117376, + -0.02096600830554962, + -0.02211920917034149, + -0.0033883932046592236, + 0.027649011462926865, + -0.032178446650505066, + -0.006287023890763521, + -0.006155031267553568, + -0.027760162949562073, + 0.046072423458099365, + -0.0035603311844170094, + 0.015825238078832626, + 0.005283184349536896, + -0.008940773084759712, + 0.02505083754658699, + 0.013803664594888687, + 0.021368933841586113, + 0.01218501664698124, + 0.00713455630466342, + 0.008760151453316212, + -0.026426341384649277, + 0.001887843944132328, + -0.028566014021635056, + 0.018326153978705406, + 0.015714086592197418, + -0.018840231001377106, + 0.010767831467092037, + -0.01240732055157423, + 0.009774412028491497, + 0.013324322178959846, + -0.0017871125601232052, + 0.019229261204600334, + 0.011816825717687607, + 0.001263483427464962, + -0.0017150376224890351, + -0.024050472304224968, + -0.0021848275791853666, + 0.0065614297054708, + -0.007183185312896967, + 0.013261799700558186, + 0.01575576886534691, + -0.01679781638085842, + -0.0017289315583184361, + 0.009225599467754364, + -0.05752106010913849, + 0.006134190130978823, + 0.01393565721809864, + -0.05493677780032158, + 0.00014751494745723903, + -0.004543330054730177, + -0.013477155938744545, + -0.026773691177368164, + -0.04276565834879875, + 0.012963078916072845, + 0.02532871812582016, + 0.00960768386721611, + 0.019701657816767693, + -0.012553206644952297, + 0.013192329555749893, + 0.01093455869704485, + -0.013088124804198742, + 0.01310201920568943, + 0.013115912675857544, + 0.009475691244006157, + -0.009955033659934998, + 0.010788671672344208, + -0.025662172585725784, + 0.010872036218643188, + 0.02826034650206566, + 0.012344797141849995, + 0.04501648247241974, + -0.020618660375475883, + 0.027857420966029167, + -0.03870861604809761, + -0.06157809868454933, + -0.04120953008532524, + 0.016144799068570137, + 0.010906770825386047, + -0.012358691543340683, + -0.019201474264264107, + 0.03326217830181122, + -0.030789049342274666, + 0.027760162949562073, + -0.04685048386454582, + 0.01071920245885849, + 0.001160146901383996, + 0.02323072776198387, + -0.0065614297054708, + 0.028440967202186584, + -0.03979234769940376, + 0.01686728559434414, + 0.03259526565670967, + 0.07280442863702774, + 0.00851700734347105, + -0.04457187280058861, + -0.017172953113913536, + 0.020299097523093224, + 0.04593348130583763, + 0.013893975876271725, + 0.0396256186068058, + 0.002058045007288456, + 0.012858874164521694, + -0.004848997574299574, + 0.02036856859922409, + -0.0040848287753760815, + 0.03604097291827202, + 0.02009068801999092, + 0.03520733490586281, + -0.020535295829176903, + 0.034123603254556656, + 0.022397087886929512, + 0.05276931822299957, + -0.020590871572494507, + -0.004314079415053129, + -0.012136387638747692, + -0.002886473434045911, + -0.0248563215136528, + -0.020549189299345016, + 0.0020528349559754133, + 0.0007402884075418115, + 0.004821209702640772, + -0.0007402884075418115, + -0.011406953446567059, + -0.02323072776198387, + -0.00514077115803957, + 0.011747356504201889, + 0.011955766007304192, + -0.024286668747663498, + -0.05313056334853172, + 0.008565636351704597, + -0.010274594649672508, + 0.009642419405281544, + 0.04526657238602638, + 0.007273496128618717, + -0.03251190111041069, + -0.03195614367723465, + 0.005957041867077351, + -0.017714818939566612, + 0.025064731016755104, + -0.02513420209288597, + -0.030400019139051437, + 0.011941871605813503, + -0.036846823990345, + 0.005297078285366297, + -0.025064731016755104, + 0.016144799068570137, + 0.03442927077412605, + -0.03906985744833946, + 0.025189777836203575, + 0.007586110848933458, + 0.031150292605161667, + 0.019701657816767693, + 0.00030935805989429355, + -0.015283373184502125, + 0.0037201119121164083, + -0.004189033526927233, + 0.004980990197509527, + -0.04387717321515083, + -0.00024813771597109735, + -0.009003296494483948, + 0.04529435932636261, + -0.04073713719844818, + -0.00865594670176506, + 0.04901794716715813, + -0.029205136001110077, + 0.01977112703025341, + -0.03998686000704765, + -0.007037298753857613, + -0.009051925502717495, + -0.01750640943646431, + 0.01763145439326763, + 0.004227241966873407, + -0.007169291377067566, + -0.007558322511613369, + 0.034595999866724014, + -0.005515908356755972, + -0.004939308390021324, + -0.026426341384649277, + 0.01426911260932684, + 0.014255219139158726, + 0.031817205250263214, + 0.037736035883426666, + -0.018215002492070198, + -0.009704941883683205, + 0.029121773317456245, + 0.025912264361977577, + -0.006721210666000843, + -0.0034439691808074713, + 0.016728347167372704, + 0.010496898554265499, + -0.04287680983543396, + 0.017367469146847725, + 0.018965275958180428, + 0.0068879383616149426, + 0.010351011529564857, + 0.01846509426832199, + 0.022008057683706284, + 0.026537492871284485, + -0.035513002425432205, + 0.027440601959824562, + -0.03442927077412605, + 0.002144882455468178, + 0.028649376705288887, + -0.008093240670859814, + -0.01639489084482193, + -0.021646814420819283, + -0.00508172158151865, + 0.003931995015591383, + -0.021896906197071075, + 0.0035742251202464104, + -0.00583546981215477, + 0.012393426150083542, + 0.00653016846626997, + -0.012657411396503448, + -0.004303658846765757, + 0.0007303020684048533, + 0.020674236118793488, + -0.007815361022949219, + 0.030233290046453476, + -0.038097281008958817, + 0.03631885349750519, + -0.0251619890332222, + 0.003292872104793787, + 0.02802414819598198, + -0.0037374794483184814, + 0.041626349091529846, + 0.011955766007304192, + 0.03720806539058685, + 0.028788316994905472, + -0.040903862565755844, + -0.018520670011639595, + -0.05132434517145157, + 0.012678252533078194, + 0.011525052599608898, + 0.013636937364935875, + -0.005008778069168329, + -0.025231460109353065, + 0.013352110050618649, + -0.011872402392327785, + 0.00012558851449284703, + 0.05271374434232712, + -0.03576309233903885, + 0.008030718192458153, + 0.0077111562713980675, + -0.015158327296376228, + -0.038402948528528214, + 0.02056308463215828, + -0.006200186442583799, + -0.003744426416233182, + 0.0030149926897138357, + -0.005182452965527773, + 0.009267281740903854, + -0.020590871572494507, + -0.02203584462404251, + -0.03192835673689842, + -0.06007755175232887, + 0.021938586607575417, + 0.014658143743872643, + -0.04365487024188042, + 0.05652069300413132, + -0.0045537506230175495, + -0.005241502076387405, + -0.009454850107431412, + 0.006481539458036423, + -0.0044182841666042805, + -0.046155788004398346, + -0.01977112703025341, + -0.02838539145886898, + -0.051713377237319946, + -0.02719051018357277, + -0.02819087542593479, + -0.038013916462659836, + 0.00371663854457438, + 0.012768563814461231, + -0.009809146635234356, + 0.015074963681399822, + -0.01865960843861103, + 0.019507141783833504, + -0.0005197215359658003, + -0.008030718192458153, + -0.002469654195010662, + 0.002408867934718728, + -0.002740586642175913, + 0.0008675050921738148, + -0.013852293603122234, + 0.01306033693253994, + 0.02926071174442768, + 0.04760076105594635, + -0.02088264562189579, + -0.007183185312896967, + -0.001246115891262889, + 0.013970392756164074, + -0.02659306861460209, + 0.0022977162152528763, + -0.06824720650911331, + -0.05679857358336449, + 0.002160513075068593, + -0.03609654679894447, + 0.04248777776956558, + -0.028927257284522057, + -0.015213903039693832, + -0.03629106283187866, + 0.025384293869137764, + -0.05346401780843735, + 0.01675613410770893, + -0.017812076956033707, + -0.030261078849434853, + -0.011386113241314888, + -0.0451832078397274, + 0.045238785445690155, + -0.009857775643467903, + -0.0469338484108448, + 0.009760517627000809, + 0.008523954078555107, + -0.01829836517572403, + -0.005356127396225929, + 0.02517588436603546, + 0.011754303239285946, + 0.03545742481946945, + -0.0025894897989928722, + 0.013296534307301044, + 0.0022577710915356874, + -0.01071920245885849, + -0.03351226821541786, + 0.012039129622280598, + -0.0039285216480493546, + 0.034679364413022995, + -0.010712254792451859, + -0.03893091902136803, + 0.007190132513642311, + -0.01284498069435358, + 0.025036944076418877, + -0.004661428742110729, + -0.02432835102081299, + -0.0022838222794234753, + -0.02564827911555767, + 0.022063633427023888, + -0.0036680095363408327, + -0.023647546768188477, + 0.016047541052103043, + -0.009149182587862015, + 0.05021282657980919, + -0.010427428409457207, + 0.01405375637114048, + -0.006814994849264622, + 0.022452663630247116, + 0.005269290413707495, + 0.07074812054634094, + 0.019562717527151108, + 0.012386479414999485, + 0.061077915132045746, + -0.01343547459691763, + -0.00609250832349062, + 0.03554078936576843, + 0.04176529124379158, + -0.042654503136873245, + 0.03215065971016884, + -0.005939674563705921, + 0.03362341970205307, + 0.004956675693392754, + -0.002205668715760112, + -0.024356139823794365, + -0.02652359940111637, + 0.002742323325946927, + 0.050046101212501526, + -0.010990134440362453, + -0.0028500016778707504, + -0.004574591293931007, + -0.03009435161948204, + 0.023494713008403778, + 0.03592982143163681, + 0.008510059677064419, + -0.0025599650107324123, + -0.017923228442668915, + -0.006988669745624065, + -0.02481464110314846, + -0.02620403841137886, + -0.007169291377067566, + -0.00743327708914876, + -0.021382829174399376, + -0.0007758917054161429, + 0.021174417808651924, + 0.005411703605204821, + -0.0023428716231137514, + 0.028760530054569244, + -0.07491631805896759, + 0.011858507990837097, + -0.006054299883544445, + 0.00843364279717207, + 0.01917368546128273, + -0.01324095856398344, + 0.015338948927819729, + -0.029288500547409058, + -0.04354371875524521, + -0.0038521047681570053, + -0.016700558364391327, + -0.001276509021408856, + 0.017436938360333443, + -0.0381806455552578, + 0.00972578302025795, + 0.03668009489774704, + 0.0032980823889374733, + 0.03851410001516342, + -0.020118476822972298, + -0.014908235520124435, + -0.029594168066978455, + 0.04040367901325226, + -0.0008075873483903706, + -0.022688861936330795, + -0.034679364413022995, + -0.00194515660405159, + -0.0055680107325315475, + -0.010177336633205414, + -0.041737500578165054, + -0.005967462435364723, + -0.01727021113038063, + 0.034595999866724014, + -0.012129440903663635, + -0.005620113108307123, + -0.023244621232151985, + -0.015102751553058624, + 0.031150292605161667, + -0.0026919578667730093, + 0.06396786123514175, + 0.01853456348180771, + 0.01240732055157423, + 0.036068759858608246, + -0.02989983558654785, + -0.021146630868315697, + 0.015311161056160927, + -0.03759709745645523, + -0.020660340785980225, + -0.028093619272112846, + 0.0378749780356884, + -0.00438702292740345, + -0.020938221365213394, + 0.04248777776956558, + 0.011469476856291294, + 0.018395623192191124, + -0.007530534639954567, + 0.011448635719716549, + -0.0037235855124890804, + -0.022938953712582588, + -0.055353596806526184, + 0.00025660436949692667, + -0.02898283302783966, + 0.0241338349878788, + -0.007141503505408764, + 0.010781724937260151, + -0.009329804219305515, + 0.014852659776806831, + 0.027579542249441147, + -0.00039988599019125104, + -0.0007211841875687242, + 0.00045980376307852566, + 0.002018099883571267, + -0.0007680763374082744, + -0.03673567250370979, + 0.0007272627553902566, + -0.02227204293012619, + -0.028010254725813866, + 0.036819033324718475, + -0.01679781638085842, + -0.01782597042620182, + 0.016130905598402023, + -0.02870495431125164, + 0.019382094964385033, + 0.02250824123620987, + 0.010983187705278397, + 0.00829470343887806, + 0.007537481840699911, + -0.0006855808314867318, + 0.004359234590083361, + -0.004213348031044006, + 0.01232395600527525, + 0.039403315633535385, + -0.011323589831590652, + -0.0052206614054739475, + 0.04243220016360283, + -0.004741318989545107, + 0.01746472716331482, + -0.0253703985363245, + 0.04721172899007797, + -0.062189433723688126, + 0.0023393980227410793, + -0.014713720418512821, + -0.017297999933362007, + 0.01949324831366539, + -0.029510803520679474, + 0.021771859377622604, + -0.022202573716640472, + -0.006703843362629414, + -0.01538063120096922, + -0.017923228442668915, + 0.023925425484776497, + 0.0026780636981129646, + 0.016047541052103043, + -0.007155397441238165, + -0.002582542598247528, + 0.015672404319047928, + 0.026384659111499786, + -0.0042619770392775536, + 0.02263328619301319, + 0.04215432330965996, + 0.019243156537413597, + 0.007891777902841568, + 0.00527971051633358, + 0.020104583352804184, + 0.027204403653740883, + 0.005036565940827131, + 0.004789947997778654, + -0.03698576241731644, + -0.02306399866938591, + 0.009218652732670307, + -0.027843527495861053, + -0.000438745686551556, + -0.007169291377067566, + 0.014908235520124435, + 0.01596417836844921, + 0.0024488132912665606, + -0.006933094002306461, + 0.0016160430386662483, + 0.011983553878962994, + 0.005658321548253298, + 0.009440956637263298, + -0.0051720323972404, + 0.00014990297495387495, + -0.03165047615766525, + 0.020493613556027412, + 0.00211883126758039, + -0.0006052562966942787, + 0.0124281607568264, + -0.01240732055157423, + -0.003803475759923458, + 0.0340680293738842, + 0.0024713908787816763, + -0.025342611595988274, + -0.023730909451842308, + 0.01936820149421692, + 0.008114081807434559, + -0.009385380893945694, + -2.027109258051496e-5, + 0.048212096095085144, + -0.02810751274228096, + 0.003440495580434799, + 0.033206600695848465, + -0.004532909486442804, + 0.03970898315310478, + -0.006662161089479923, + 0.01810385100543499, + 0.011358325369656086, + -5.104407682665624e-5, + 0.0251619890332222, + 0.027523964643478394, + -0.055242445319890976, + 0.04851776361465454, + -0.05399198830127716, + 0.037374794483184814, + 0.03176162764430046, + -0.018729079514741898, + 0.011663992889225483, + -0.01925705000758171, + -0.016269845888018608, + -0.004036199767142534, + -0.030066562816500664, + 0.03351226821541786, + -0.019187580794095993, + 0.0206881295889616, + 0.008607317693531513, + -0.01829836517572403, + 0.04596127197146416, + -0.022285936400294304, + 0.0036819034721702337, + -0.0029524697456508875, + -0.004845523741096258, + 0.012011341750621796, + 0.05446438491344452, + -0.013942604884505272, + 0.018270578235387802, + -0.008023770526051521, + 0.0027214824222028255, + 0.041542988270521164, + 0.025731641799211502, + -0.010906770825386047, + 0.021730177104473114, + 0.006804574280977249, + 0.015088857151567936, + 0.02520367130637169, + -0.015908602625131607, + -0.001479708356782794, + -0.006596164777874947, + 0.015700193122029305, + 0.018590139225125313, + 0.02468959428369999, + -0.011955766007304192, + -0.011747356504201889, + -0.020229628309607506, + 0.0212022066116333, + 0.023314090445637703, + 0.010253753513097763, + 0.013213170692324638, + 0.024884110316634178, + 0.039681192487478256, + 0.01074004266411066, + -0.021355040371418, + 0.006801100913435221, + -0.002367186127230525, + 0.0029976251535117626, + 0.007474958896636963, + 0.005953568499535322, + 0.013366004452109337, + 0.0026798006147146225, + -0.02314736321568489, + 0.002365449443459511, + -0.025064731016755104, + -0.016617193818092346, + 0.0011801195796579123, + -0.05268595367670059, + -0.00891298521310091, + -0.005842416547238827, + 0.05707645043730736, + -0.022577710449695587, + 0.012039129622280598, + -0.014560886658728123, + 0.03120586834847927, + -0.015936389565467834, + 0.014644250273704529, + 0.0011097813257947564, + -0.004657955374568701, + 0.006283550523221493, + -0.007857043296098709, + 0.026982100680470467, + -0.005342233460396528, + -0.028010254725813866, + 0.01444973424077034, + 0.026690326631069183, + -0.045877907425165176, + 0.03045559488236904, + -0.018089955672621727, + -0.03056674636900425, + -0.020576978102326393, + -0.009038031101226807, + 0.005373495165258646, + 0.02013237029314041, + -0.0029159982223063707, + -0.005828522611409426, + 0.023480819538235664, + 0.013289587572216988, + 0.0396256186068058, + -0.028566014021635056, + 0.00942706223577261, + -0.0005344838718883693, + 0.01468593254685402, + 0.010753937065601349, + 0.018367836251854897, + 0.006603111978620291, + -0.04315468668937683, + -0.014255219139158726, + 0.04601684585213661, + -0.0022126156836748123, + 0.020660340785980225, + 0.0040987227112054825, + -0.003556857816874981, + 0.043210264295339584, + -0.004453019239008427, + -0.029232924804091454, + 0.009795253165066242, + -0.0012435108656063676, + 0.003541226964443922, + -0.018478987738490105, + 0.007287390064448118, + 0.039959073066711426, + -0.03781940042972565, + 0.013081178069114685, + 0.014477522112429142, + -0.00033410670584999025, + -0.009135289117693901, + 0.033123236149549484, + 0.0212022066116333, + 0.0166727714240551, + -0.0017749554244801402, + 0.026940418407320976, + 0.00702687818557024, + 0.028038041666150093, + -0.0350961834192276, + 0.04001465067267418, + 0.038208432495594025, + -0.025036944076418877, + 0.016450466588139534, + 0.013254852965474129, + -0.019604399800300598, + -0.02926071174442768, + 0.023828167468309402, + -0.01793712191283703, + -0.011024869978427887, + -0.013775876723229885, + -0.03295651078224182, + -0.015505677089095116, + 0.01949324831366539, + -0.007384648080915213, + 0.013039495795965195, + 0.027218297123908997, + -0.012011341750621796, + 0.029594168066978455, + 0.012532365508377552, + 0.03620770201086998, + 0.020660340785980225, + -0.0005796392797492445, + -0.0531027726829052, + 0.03951446712017059, + 0.011129074729979038, + -0.05852142348885536, + -0.029288500547409058, + 0.006394702009856701, + -0.03470715135335922, + 0.006922673434019089, + -0.031706053763628006, + 0.03390130028128624, + -0.0389031320810318, + 0.009204758331179619, + 0.0127616161480546, + -0.006168925203382969, + -0.0223831944167614, + 0.0012600099435076118, + 0.009295069612562656, + 0.0222303606569767, + 0.020868750289082527, + 0.019312625750899315, + -0.01486655417829752, + 0.03309544920921326, + -0.014324688352644444, + -0.002007679548114538, + 0.007669474463909864, + 0.019354308024048805, + -0.0424044132232666, + 0.03392908722162247, + 0.04676712304353714, + -0.00722486712038517, + -0.00014729784743394703, + 0.01795101724565029, + -0.002754480578005314, + -0.026537492871284485, + -0.001799269812181592, + -0.022105315700173378, + -0.027815738692879677, + -0.020257417112588882, + 0.030705686658620834, + -0.005352654028683901, + -0.011142968200147152, + 0.011400006711483002, + -0.01583913154900074, + 0.03020550310611725, + 0.0212022066116333, + -0.005998724140226841, + -0.003487387904897332, + 0.0065266950987279415, + 0.020021218806505203, + -0.013289587572216988, + -0.00942706223577261, + -0.010872036218643188, + -0.004515542183071375, + 0.039597831666469574, + -0.02759343571960926, + -0.005804208107292652, + 0.004011885263025761, + -0.009142235852777958, + 0.033012084662914276, + 0.00022968478151597083, + -0.0034057607408612967, + -0.027093252167105675, + -0.0019260523840785027, + -0.02075759880244732, + 0.04112616926431656, + -0.03065010905265808, + -0.05396420136094093, + -0.03167826309800148, + -0.028955044224858284, + -0.01647825539112091, + -0.00898940209299326, + -0.005661794915795326, + -0.0025287035387009382, + 0.04437735676765442, + 0.05410313978791237, + 0.027204403653740883, + 0.010260701179504395, + -0.018729079514741898, + 0.002219562651589513, + -0.004557223990559578, + 0.00869762897491455, + -0.039236586540937424, + 0.013074231334030628, + -0.02028520405292511, + 0.027259979397058487, + 0.021730177104473114, + 0.003235559444874525, + -0.041265107691287994, + 0.01357441395521164, + -0.013900922611355782, + -0.009670207276940346, + -0.006957408040761948, + -0.006130716763436794, + -0.011663992889225483, + 0.033373329788446426, + -0.002665906446054578, + -0.015408419072628021, + 0.01683949865400791, + 0.013261799700558186, + -0.029760895296931267, + -0.019910067319869995, + -0.0045815384946763515, + 0.01258794218301773, + -0.05490899085998535, + -0.006460698787122965, + -0.01468593254685402, + 0.005019198637455702, + 0.01575576886534691, + 0.004091775976121426, + -0.021382829174399376, + 0.0030115190893411636, + 0.004289764910936356, + -0.0028552119620144367, + 0.019062533974647522, + -0.0034040240570902824, + 0.01367861870676279, + -0.004512068349868059, + -0.030983565375208855, + -0.02167460136115551, + 0.0018600559560582042, + -0.002266454743221402, + -0.02028520405292511, + -0.019118109717965126, + -0.006144610699266195, + 0.005644427612423897, + 0.0017332735005766153, + -0.04234883561730385, + -0.05791008844971657, + 0.014602568000555038, + 0.03456820920109749, + -0.0340680293738842, + 0.020451931282877922, + -0.0021865644957870245, + -0.010767831467092037, + -0.00542907090857625, + -0.004817735869437456, + 0.010614997707307339, + 0.005154665093868971, + -0.017839863896369934, + 0.04965706914663315, + 0.022327618673443794, + 0.013949551619589329, + -0.017200741916894913, + -0.024467291310429573, + 0.0011644888436421752, + 0.010371852666139603, + 0.02318904548883438, + 0.031706053763628006, + 0.014880447648465633, + -0.003018466290086508, + -0.002478337846696377, + 0.00791956577450037, + -0.002817003522068262, + -0.0094687445089221, + -0.00833638571202755, + -0.004685743246227503, + -0.0044738599099218845, + 0.0011957503156736493, + 0.019229261204600334, + -0.01532505452632904, + 0.023967107757925987, + 0.007982089184224606, + -0.027301661670207977, + -0.005123403389006853, + -0.029149560257792473, + -0.021563449874520302, + -0.0032320860773324966, + -0.011872402392327785, + -0.009614630602300167, + 0.003942415583878756, + -0.014602568000555038, + -0.037180278450250626, + 0.034040238708257675, + -0.020507507026195526, + 0.015589040704071522, + -0.011274960823357105, + 0.02862158976495266, + -0.02250824123620987, + -0.014783189631998539, + 0.007606951519846916, + 0.018451198935508728, + 0.003570751752704382, + 0.004393969662487507, + 0.004230715334415436, + 0.010913717560470104, + 0.005984829738736153, + -0.013949551619589329, + 0.01185156125575304, + 0.0013980813091620803, + -0.014991599135100842, + 0.03390130028128624, + -0.03831958398222923, + -0.0047934213653206825, + 0.002948996378108859, + -0.0045398566871881485, + -0.015477888286113739, + -0.004425231367349625, + -0.02266107313334942, + 0.01444973424077034, + -0.0048594181425869465, + -0.02656528167426586, + 0.010594156570732594, + 0.00577642023563385, + 0.009656312875449657, + 0.01825668290257454, + 0.016881180927157402, + 0.0005023540579713881, + -0.03306766226887703, + -0.036263275891542435, + -0.023480819538235664, + 0.03373457118868828, + -0.032095082104206085, + 0.017881546169519424, + -0.032650843262672424, + 0.013491050340235233, + 0.01917368546128273, + -0.03590203449130058, + 0.0012947448994964361, + 0.00497404346242547, + -0.008086293935775757, + 0.0036402216646820307, + -0.02148008532822132, + -0.014199643395841122, + -0.02116052433848381, + -0.03362341970205307, + -0.02064644731581211, + -0.0005731264827772975, + -0.006175871938467026, + 0.03868082910776138, + -0.003468283684924245, + -0.011747356504201889, + -0.006050826516002417, + -0.01089982409030199, + -0.008510059677064419, + 0.018173320218920708, + -0.03693018853664398, + -0.022855589166283607, + 0.010552474297583103, + 0.018201107159256935, + 0.004029253032058477, + 0.008308596909046173, + 0.007898724637925625, + -0.0030723053496330976, + -0.013824505731463432, + 0.014408052898943424, + -0.02881610579788685, + 0.006259236019104719, + 0.028371497988700867, + 0.023327985778450966, + -0.02041025087237358, + 0.009100553579628468, + -0.0007754575344733894, + 0.0016177797224372625, + 0.03937552496790886, + -0.025703854858875275, + -0.009760517627000809, + -0.01467203814536333, + 0.009892510250210762, + -0.008065452799201012, + 0.0171868484467268, + -0.015241690911352634, + -0.002264718059450388, + -0.08558689057826996, + -0.017409151419997215, + -0.006700369529426098, + 0.017450833693146706, + 0.0101634431630373, + -0.009225599467754364, + 0.0018478987039998174, + 0.027454495429992676, + -0.021744072437286377, + 0.04596127197146416, + 0.005005304701626301, + -0.015658510848879814, + 0.018215002492070198, + 0.027385026216506958, + -0.0085934242233634, + 0.0212022066116333, + -0.0037478997837752104, + 0.009329804219305515, + 0.014185748994350433, + -0.01620037481188774, + -0.017881546169519424, + 0.03554078936576843, + -0.007704209536314011, + -0.006148084066808224, + -0.014755401760339737, + 0.01699233241379261, + -0.01793712191283703, + -0.000762866111472249, + 0.0013251379132270813, + -0.02000732533633709, + 0.006606585346162319, + 0.020035112276673317, + 0.0018739498918876052, + 0.0085934242233634, + 0.01063583791255951, + -0.0037062179762870073, + -0.0022317199036478996, + -0.000789785641245544, + 0.036124337464571, + -0.005519381724298, + 0.004682269878685474, + 0.03001098707318306, + -0.004063987638801336, + -0.021813541650772095, + -0.030344443395733833, + -0.01053858082741499, + -0.011240226216614246, + -0.023828167468309402, + -0.0005527196917682886, + 0.012303114868700504, + 0.00757221644744277, + 0.004324499983340502, + -0.013518838211894035, + -0.011900190263986588, + -0.015213903039693832, + 0.00855174195021391, + 0.024675700813531876, + -0.0006491091917268932, + 0.01814553141593933, + -0.001073309569619596, + 0.03545742481946945, + 0.007474958896636963, + -0.003018466290086508, + 0.00678720697760582, + -0.0029385758098214865, + 0.019868385046720505, + -0.0016368839424103498, + -0.001334690023213625, + 0.02441171556711197, + -0.003602013224735856, + -0.008530900813639164, + -0.010267647914588451, + 0.0016933282604441047, + 0.014095437712967396, + -0.0015057595446705818, + 0.003225139109417796, + 0.017798183485865593, + -0.001452788827009499, + 0.0018444252200424671, + -0.013428526930510998, + -0.006314811762422323, + -0.005012251436710358, + 0.009003296494483948, + 0.013366004452109337, + -0.0020267837680876255, + -0.01310201920568943, + -0.011406953446567059, + -0.020271310582756996, + -0.0012712987372651696, + 0.001652514678426087, + 0.005317918956279755, + 0.004411337431520224, + 0.029232924804091454, + 0.016047541052103043, + -0.007822307758033276, + 0.025425974279642105, + 0.027051569893956184, + -0.007454117760062218, + 0.006714263465255499, + 0.00029524698038585484, + 0.007773679215461016, + -0.008197445422410965, + 0.012872768566012383, + -0.04029252752661705, + -0.00839890819042921, + 0.006901832297444344, + -0.018478987738490105, + 0.005557590164244175, + -0.03734700754284859, + -0.023689229041337967, + 0.01603364758193493, + 0.01722852885723114, + -0.030705686658620834, + 0.007096347864717245, + -0.009489585645496845, + 0.02532871812582016, + -0.027204403653740883, + -0.025995628908276558, + -0.02834370918571949, + -0.0020649922080338, + -0.0036541156005114317, + 0.03251190111041069, + 0.027968572452664375, + -0.03979234769940376, + -0.004397443030029535, + -0.006856677122414112, + 0.005342233460396528, + -0.0032633475493639708, + 0.002594699850305915, + 0.022105315700173378, + -0.007863990031182766, + 0.005811155308037996, + -0.006366914138197899, + 0.008412802591919899, + -0.02353639528155327, + 0.009100553579628468, + 0.03048338182270527, + -0.02020183950662613, + 0.004557223990559578, + -0.014199643395841122, + -0.00012037827400490642, + -0.01055942103266716, + 0.005439491476863623, + -0.006971302442252636, + -0.01654772460460663, + -0.005939674563705921, + 0.0092881228774786, + -0.020868750289082527, + 0.002685010666027665, + -0.007468011695891619, + -0.018590139225125313, + 0.02214699611067772, + 0.03020550310611725, + 2.909051181632094e-5, + 0.008558688685297966, + -0.0018756866920739412, + -0.0198128093034029, + 0.010788671672344208, + -0.016130905598402023, + 0.009795253165066242, + -0.016144799068570137, + 0.008266915567219257, + -0.011108233593404293, + -0.014922129921615124, + 0.01012176088988781, + -0.005936201196163893, + -0.022897271439433098, + -0.012198910117149353, + -0.017020119354128838, + -0.014588674530386925, + -0.003727058880031109, + 0.015200009569525719, + -0.0222303606569767, + -0.02675979770720005, + -0.00817660428583622, + -0.010017556138336658, + -0.02505083754658699, + -0.030733473598957062, + 0.031066929921507835, + 0.0026450655423104763, + 0.022216467186808586, + -0.005029619205743074, + 0.009524320252239704, + 0.02596784010529518, + 0.004571117926388979, + -0.0042064012959599495, + -0.00449470104649663, + -0.005151191260665655, + 0.009267281740903854, + 0.0013277430552989244, + 0.01988227851688862, + -7.880489283706993e-5, + -0.010038397274911404, + -0.011615363880991936, + 0.008947719819843769, + -0.00968410074710846, + 0.04632251337170601, + 0.02742670848965645, + -0.004720478318631649, + -0.01583913154900074, + -0.020771494135260582, + -0.017603667452931404, + 0.020507507026195526, + 0.008426696062088013, + -0.004852470941841602, + -0.0058736782521009445, + -0.017339682206511497, + 0.0048733120784163475, + 0.009746624156832695, + -0.012525418773293495, + 0.01331737544387579, + 0.017214635387063026, + 0.008718469180166721, + -0.009802199900150299, + -0.005147717893123627, + 0.006551009602844715, + 0.0059014661237597466, + -0.014039861969649792, + 0.024898003786802292, + -0.0026033837348222733, + 0.03342890366911888, + -0.0056861094199121, + -0.0041404045186936855, + -0.019312625750899315, + -0.007815361022949219, + 0.0117334621027112, + -0.01280329842120409, + -0.05371410772204399, + -0.02291116490960121, + 0.002002469263970852, + -0.0077111562713980675, + 0.004091775976121426, + -0.003886839607730508, + -0.0250091552734375, + -0.005762526299804449, + -0.0038243166636675596, + 0.03020550310611725, + -0.0013685566373169422, + 0.009802199900150299, + -0.0029090510215610266, + -0.022133102640509605, + -0.0192987322807312, + -0.010878982953727245, + 0.0023011895827949047, + 0.027857420966029167, + 0.01310201920568943, + -0.043766021728515625, + -0.011323589831590652, + -0.029121773317456245, + 0.01953492872416973, + 0.010712254792451859, + -0.02167460136115551, + -0.019562717527151108, + 0.0212022066116333, + -0.0038277902640402317, + -0.0031608794815838337, + -0.002947259461507201, + -0.012976973317563534, + 0.011782091110944748, + -0.0007090269355103374, + 0.023564182221889496, + -0.00458501186221838, + 0.008371120318770409, + 0.0033692889846861362, + 0.04151519760489464, + -0.011170756071805954, + -0.006120296195149422, + 0.003410971025004983, + 0.007190132513642311, + -0.004796895198523998, + -0.008009877055883408, + 0.017159059643745422, + -0.014616462402045727, + -0.02973310835659504, + 0.02992762252688408, + 0.0014449734007939696, + -0.012073865160346031, + 0.005863257683813572, + -0.0042619770392775536, + 0.021771859377622604, + -0.013546626083552837, + 0.028649376705288887, + -0.01825668290257454, + 0.01405375637114048, + 0.006946987938135862, + -0.005637480411678553, + 0.004519015550613403, + -0.012449001893401146, + 0.03195614367723465, + -0.02092432789504528, + 0.02306399866938591, + 0.004956675693392754, + 0.019048640504479408, + -0.0024453396908938885, + 0.019632186740636826, + -0.020118476822972298, + 0.009642419405281544, + 0.0028899468015879393, + -0.009885563515126705, + -0.006346073467284441, + 0.017117377370595932, + -0.027093252167105675, + -0.023133469745516777, + 0.0019468932878226042, + 0.007273496128618717, + -0.00017269777890760452, + 0.007054666057229042, + 0.0001589123421581462, + 0.016186481341719627, + 0.013331269845366478, + 0.001886107143945992, + -0.0037096915766596794, + -0.03420696780085564, + 0.0006017828127369285, + 0.01426911260932684, + -0.010878982953727245, + 0.009322857484221458, + 0.01426911260932684, + -0.014338582754135132, + -0.019951749593019485, + -0.023314090445637703, + -0.014025968499481678, + 0.024634018540382385, + 0.006349546834826469, + -0.0479620024561882, + -0.020229628309607506, + 0.00015543885820079595, + -0.010232913307845592, + 0.025106413289904594, + -0.014220483601093292, + -0.01818721368908882, + 0.05363074690103531, + -0.02075759880244732, + -0.005897992756217718, + 0.009065818972885609, + -0.013428526930510998, + -0.010969293303787708, + 0.003367552300915122, + -0.013220117427408695, + 0.004105669911950827, + 0.017687030136585236, + 0.013268746435642242, + -0.006356493569910526, + 0.016561618074774742, + 0.0129422377794981, + 0.0016776975244283676, + -0.000789785641245544, + 0.031817205250263214, + 0.011511159129440784, + -0.0006621347856707871, + -0.008829621598124504, + 0.0244950782507658, + 0.0051129828207194805, + -0.0044182841666042805, + 0.03281756862998009, + 0.020187946036458015, + 0.006599638145416975, + 0.021577343344688416, + -0.033123236149549484, + -0.02778795175254345, + -0.021660707890987396, + -0.032095082104206085, + 0.008058506064116955, + 0.01089982409030199, + -0.017047908157110214, + 0.014060703106224537, + 0.023883743211627007, + -0.01624205708503723, + 0.03573530539870262, + -0.019479352980852127, + 0.0057521057315170765, + 0.00502267200499773, + -0.004664902109652758, + -0.012900556437671185, + -0.011205491609871387, + 0.01037879940122366, + -0.01055942103266716, + 0.0013824505731463432, + 0.006054299883544445, + -0.003872945671901107, + 0.003074042033404112, + 0.005130350589752197, + -0.010545527562499046, + -0.0127616161480546, + -0.01357441395521164, + 0.007252654992043972, + 0.004081355407834053, + -0.002660696394741535, + 0.011254120618104935, + 0.0029785209335386753, + 0.003496071556583047, + -9.33501505642198e-5, + 0.005272763781249523, + 0.00873236358165741, + -0.007954301312565804, + 0.026620857417583466, + -0.029232924804091454, + 0.004664902109652758, + -0.031178081408143044, + 0.0012218015035614371, + 0.002553018042817712, + 0.005147717893123627, + -0.004213348031044006, + 0.0122475391253829, + -0.0018183740321546793, + 0.015352843329310417, + 0.02199416235089302, + 0.02851043827831745, + -0.008482271805405617, + -0.024995261803269386, + 0.00287257949821651, + 0.028051936998963356, + -0.010774778202176094, + -0.003789581824094057, + -0.017409151419997215, + -0.014338582754135132, + 0.01647825539112091, + 0.00815576408058405, + 0.011858507990837097, + -0.02731555514037609, + -0.017214635387063026, + -0.01064278557896614, + -0.001435421290807426, + -0.016881180927157402, + -0.00371663854457438, + 0.020854856818914413, + -0.008648999966681004, + 0.008232180029153824, + 0.009885563515126705, + -0.0017046171706169844, + 0.027065463364124298, + -0.018729079514741898, + 0.014046809636056423, + 0.0010003662900999188, + 0.012518472038209438, + -0.014185748994350433, + -0.0005396940978243947, + -0.020035112276673317, + -0.004689216613769531, + -0.03203950822353363, + 0.0031851939857006073, + -0.013748088851571083, + -0.00803766492754221, + -0.02342524193227291, + 0.006693422794342041, + 0.011031816713511944, + 0.01607532985508442, + 0.010990134440362453, + 0.010399640537798405, + 0.03398466482758522, + -0.0040570409037172794, + -0.028399286791682243, + 0.015158327296376228, + -0.0017680083401501179, + -0.006304391194134951, + 0.009968927130103111, + 0.00014946878945920616, + -0.0055819046683609486, + -0.023480819538235664, + 0.0265513863414526, + 0.007190132513642311, + 0.00633217953145504, + -0.0033744992688298225, + 0.011358325369656086, + -0.03187277913093567, + 0.008107135072350502, + 0.035790879279375076, + -0.024842428043484688, + -0.027093252167105675, + 0.007280443329364061, + -0.011031816713511944, + -0.022994529455900192, + -0.012317009270191193, + 0.011122127063572407, + -0.012719934806227684, + -0.01829836517572403, + 0.00761389872059226, + -0.0001951669401023537, + 0.0028065829537808895, + -0.015589040704071522, + 0.027454495429992676, + -0.012935291044414043, + 0.003478704020380974, + 0.009628525003790855, + 0.022133102640509605, + 0.0009473954560235143, + 0.0180621687322855, + -0.011858507990837097, + -0.01731189340353012, + 0.022772226482629776, + -0.01250457763671875, + -0.0001895225141197443, + -0.002438392722979188, + 0.006255762651562691, + -0.001247852691449225, + -0.03759709745645523, + -0.01210859976708889, + -0.013741142116487026, + 0.020299097523093224, + 0.008787939324975014, + -0.0045954324305057526, + -0.019604399800300598, + -0.018478987738490105, + -0.015547358430922031, + 0.006078614387661219, + -0.023508606478571892, + 0.008489219471812248, + 0.017687030136585236, + 0.011288855224847794, + -0.016019754111766815, + -0.006238394882529974, + -0.003367552300915122, + -0.030900200828909874, + -0.009538213722407818, + 0.0032598739489912987, + 0.011545893736183643, + 0.009711888618767262, + -0.012692146934568882, + -0.01972944475710392, + -0.006089034955948591, + -0.016783922910690308, + -0.026648644357919693, + -0.0032737678848206997, + 0.0006117690936662257, + 0.00021893865778110921, + -0.002377606462687254, + 0.0026051204185932875, + 0.0041265105828642845, + -0.00523108197376132, + -0.008968560956418514, + 0.007454117760062218, + -0.01250457763671875, + 0.0036749565042555332, + 0.022397087886929512, + -0.0042619770392775536, + 0.015422312542796135, + -0.0019486300880089402, + 0.0032772414851933718, + -0.01232395600527525, + -0.003959782887250185, + -0.0003395340172573924, + -0.02453676052391529, + 0.011754303239285946, + 0.008225233294069767, + -0.013546626083552837, + 0.06613532453775406, + 0.023133469745516777, + 0.0025738589465618134, + 0.0001505542459199205, + 0.0039285216480493546, + -0.009218652732670307, + -0.009593790397047997, + 0.004637114237993956, + 0.0036089601926505566, + -0.010969293303787708, + 0.001971207791939378, + -0.030594533309340477, + 0.002349818591028452, + 0.005547169595956802, + -0.024383926764130592, + 0.009531266987323761, + 0.01913200505077839, + 0.0005492462078109384, + -0.01588081382215023, + 0.013115912675857544, + 0.015102751553058624, + -0.022008057683706284, + -0.016422679647803307, + 0.028732741251587868, + -0.008635105565190315, + 0.027204403653740883, + 0.017728712409734726, + -0.005408229772001505, + 0.013588308356702328, + 0.010837300680577755, + 0.004341867286711931, + -0.012671305797994137, + -0.015602934174239635, + 0.007593057584017515, + -0.0010125234257429838, + -0.001801006612367928, + 0.010573315434157848, + 0.010253753513097763, + 0.0021257782354950905, + 0.015602934174239635, + 0.012115546502172947, + -0.005894518923014402, + 0.015894707292318344, + 0.017575878649950027, + -0.013289587572216988, + 0.007766732480376959, + -0.004998357500880957, + -0.004081355407834053, + 0.0037791612558066845, + 0.012372585013508797, + -0.007669474463909864, + -0.018284471705555916, + -0.014810977503657341, + 0.001742825610563159, + 0.005793788004666567, + 0.006502380594611168, + 0.002021573483943939, + -0.01468593254685402, + -0.0054464382119476795, + 0.00044764651102013886, + -0.023953214287757874, + -0.01579744927585125, + -0.035318486392498016, + -0.02020183950662613, + -0.024634018540382385, + -0.00284305470995605, + -0.007877884432673454, + -0.021730177104473114, + 0.00497404346242547, + -0.001538757816888392, + -0.0008071531192399561, + 0.02600952237844467, + 0.006467645522207022, + -0.031539324671030045, + 0.0016811710083857179, + 0.0315948985517025, + 0.00398062402382493, + 0.011087392456829548, + -0.012997814454138279, + 0.010066185146570206, + 0.0004348380025476217, + 0.0077389441430568695, + -0.0244950782507658, + -0.0160058606415987, + 0.012421214021742344, + -0.005293604452162981, + 0.0004641456180252135, + -0.009503479115664959, + 0.010809512808918953, + -0.005547169595956802, + -0.006089034955948591, + -0.012053024023771286, + -0.01654772460460663, + -0.012393426150083542, + 0.011511159129440784, + -0.01030238252133131, + 0.004400916863232851, + 0.004314079415053129, + 0.008454483933746815, + 0.007419383153319359, + -0.00012406885798554868, + 0.008822674863040447, + 0.0019329993519932032, + 0.013970392756164074, + 0.0005631402018480003, + -0.03048338182270527, + 0.005811155308037996, + 0.018395623192191124, + -0.034123603254556656, + 0.0017888493603095412, + -0.013442421332001686, + -0.017798183485865593, + 0.02607899159193039, + -0.00033649473334662616, + -0.032289598137140274, + 0.01846509426832199, + 0.003008045721799135, + -0.01746472716331482, + -0.001625595148652792, + -0.01053858082741499, + -0.0032633475493639708, + 0.002162249991670251, + 0.008822674863040447, + -0.018868017941713333, + 0.011142968200147152, + 0.004977516829967499, + -0.0029090510215610266, + -0.005046986509114504, + -0.008739310316741467, + 0.008968560956418514, + 0.010260701179504395, + 0.007308231201022863, + 0.027176616713404655, + 0.00843364279717207, + 0.005894518923014402, + -0.005786840803921223, + 0.009899457916617393, + 0.0007237892714329064, + 0.017478620633482933, + -0.035513002425432205, + 0.02163291908800602, + 0.000175954177393578, + -0.016936756670475006, + 0.009531266987323761, + 0.007551375776529312, + 0.006683002226054668, + 0.008739310316741467, + -0.018201107159256935, + 0.01913200505077839, + -0.0171868484467268, + 0.0409594401717186, + -0.022772226482629776, + -0.009482637979090214, + 0.002219562651589513, + -0.007579163648188114, + 0.010983187705278397, + -0.014741508290171623, + 0.01599196530878544, + -0.021493980661034584, + -0.008996348828077316, + -0.017770394682884216, + -0.0031244077254086733, + -0.013880081474781036, + -0.004192506894469261, + -0.012115546502172947, + 0.028329815715551376, + 0.0035203860606998205, + 0.016269845888018608, + 0.012449001893401146, + -0.011941871605813503, + -0.028871681541204453, + 0.003671483136713505, + -0.005481173284351826, + -0.026051204651594162, + 0.03156711161136627, + -0.010017556138336658, + 0.006630899850279093, + -0.00024292747548315674, + -0.0218691173940897, + 0.013914816081523895, + -0.007558322511613369, + -0.021355040371418, + 0.026370765641331673, + 0.003223402425646782, + 0.0032546636648476124, + -0.013588308356702328, + 0.0017185111064463854, + -0.0032859251368790865, + -0.01129580195993185, + 0.008565636351704597, + -0.016061436384916306, + -0.0005813760217279196, + 0.006735104601830244, + 0.0016507779946550727, + -0.01603364758193493, + -0.0036054865922778845, + 0.009600737132132053, + 0.02211920917034149, + 0.016325421631336212, + -0.009642419405281544, + -0.0002526966854929924, + 0.018965275958180428, + 0.004963622894138098, + -0.011768197640776634, + -0.009663259610533714, + -0.016978438943624496, + 0.01349799707531929, + -0.018868017941713333, + -0.008343332447111607, + 0.020993797108530998, + -0.031178081408143044, + -0.023994896560907364, + 0.002594699850305915, + 0.01738136261701584, + 0.005727791227400303, + 0.008107135072350502, + -0.002177880611270666, + 0.013984286226332188, + 0.010232913307845592, + -0.0015925969928503036, + 0.01671445183455944, + 0.008121028542518616, + 0.021660707890987396, + -0.005807681940495968, + -0.016603300347924232, + -0.005470752716064453, + 0.017131272703409195, + -0.006252288818359375, + 0.033484481275081635, + 0.006606585346162319, + 0.025953946635127068, + -0.008371120318770409, + -0.001451920485123992, + 0.02139672264456749, + -0.018395623192191124, + 0.03176162764430046, + 0.005366547964513302, + -0.009253387339413166, + 0.0025200198870152235, + 0.020632553845643997, + -0.02556491456925869, + 0.005158138461410999, + -0.0255232322961092, + -0.0037652673199772835, + 0.00269890483468771, + -0.015074963681399822, + 0.00048542078002355993, + -0.0122475391253829, + 0.011573681607842445, + -2.7000987756764516e-5, + -0.005502014420926571, + -0.007273496128618717, + -0.011691780760884285, + 0.014560886658728123, + 0.016964543610811234, + -0.015616828575730324, + -0.010608050040900707, + 0.0036402216646820307, + -0.0021309885196387768, + -0.007245708256959915, + 0.008503112941980362, + 0.0031869306694716215, + -0.012400372885167599, + 0.028357604518532753, + -0.006050826516002417, + 0.011420847848057747, + -0.017159059643745422, + -0.013470209203660488, + 0.020618660375475883, + -0.0027162721380591393, + 0.001349452417343855, + 0.006217554211616516, + 0.01639489084482193, + 0.03565194085240364, + 0.0053908624686300755, + 0.0054325442761182785, + 0.005755579564720392, + -0.01482487190514803, + 0.0006660424405708909, + 0.01727021113038063, + 0.0038243166636675596, + 0.009336751885712147, + 0.004894152749329805, + -0.010316276922821999, + 0.007322125136852264, + -0.03704134002327919, + -0.018923595547676086, + -0.002771848114207387, + 0.0051268767565488815, + 0.012636570259928703, + -0.012539313174784184, + -0.010010609403252602, + 0.009802199900150299, + -0.01564461551606655, + 0.013817558996379375, + -0.008503112941980362, + -0.014727613888680935, + 0.012553206644952297, + -0.007940406911075115, + 0.012101653032004833, + 0.0029229451902210712, + -0.011274960823357105, + 0.006502380594611168, + -0.008628158830106258, + -0.010969293303787708, + -0.005981356371194124, + 0.019312625750899315, + 0.03195614367723465, + 0.003341501113027334, + 0.028121406212449074, + 0.020229628309607506, + -0.008808780461549759, + 0.023842062801122665, + -0.00968410074710846, + -0.005502014420926571, + 2.445014069962781e-5, + 0.0005453385529108346, + 0.002975047565996647, + 0.007530534639954567, + 0.005328339524567127, + -0.0038000023923814297, + 0.008607317693531513, + 0.022091420367360115, + 0.008266915567219257, + 0.006252288818359375, + 0.028927257284522057, + 0.015672404319047928, + 0.017617560923099518, + 0.02075759880244732, + -0.02079928107559681, + 0.02710714563727379, + -0.00843364279717207, + -0.014616462402045727, + -0.016367103904485703, + 0.011525052599608898, + 0.011580628342926502, + 0.0002055874210782349, + 0.0010333644459024072, + -0.014039861969649792, + 0.0003265084233134985, + -0.012025236152112484, + -0.017325786873698235, + -0.013914816081523895, + 0.012893609702587128, + -0.006474592722952366, + 0.03915322199463844, + 0.005700003355741501, + 3.340524199302308e-5, + 0.014255219139158726, + 0.01060110330581665, + 0.015714086592197418, + 0.025064731016755104, + 0.004453019239008427, + -0.011573681607842445, + -0.011789037846028805, + 0.0111915972083807, + 0.010545527562499046, + 0.005029619205743074, + -0.00348391430452466, + 0.001610832754522562, + -0.024508973583579063, + 0.009489585645496845, + -0.01793712191283703, + 0.0031139871571213007, + -0.003994517959654331, + 0.023717015981674194, + -0.010941505432128906, + 0.012712987139821053, + -0.005894518923014402, + 0.0028691058978438377, + 0.010962346568703651, + -0.03679124638438225, + -0.01317843608558178, + 0.011254120618104935, + -0.02323072776198387, + 0.012171122245490551, + -5.818102363264188e-5, + 0.024828534573316574, + -0.007989035919308662, + 0.0179093349725008, + 0.03165047615766525, + 0.0006391228525899351, + -0.007759785279631615, + 0.0177009254693985, + 0.021855223923921585, + 0.0177009254693985, + -0.004772580694407225, + 0.017117377370595932, + 0.0027909523341804743, + -0.012296168133616447, + -0.008072399534285069, + 0.007148450240492821, + 0.009079713374376297, + -0.022883377969264984, + -0.008121028542518616, + -0.002332451054826379, + -0.02766290493309498, + 0.022021951153874397, + -0.0020719391759485006, + 0.009197811596095562, + -0.014574780128896236, + 0.0003241203958168626, + -0.003661062568426132, + -0.005074774380773306, + -0.02282780222594738, + -0.017478620633482933, + -0.014199643395841122, + 0.01393565721809864, + 0.024119941517710686, + -0.02791299670934677, + -0.0005097352550365031, + 0.017367469146847725, + -0.009406221099197865, + 0.010524686425924301, + 0.012831086292862892, + -0.005957041867077351, + 0.007488852832466364, + -0.007092874497175217, + -0.0017462990945205092, + 0.01624205708503723, + 0.02353639528155327, + -0.01620037481188774, + -0.012532365508377552, + -0.011323589831590652, + 0.020451931282877922, + -0.018048273399472237, + 0.033484481275081635, + 0.00185831927228719, + -0.006762892473489046, + 0.012011341750621796, + 0.013074231334030628, + -0.03345669433474541, + -0.005015725269913673, + 0.01603364758193493, + -0.025036944076418877, + -0.014519204385578632, + 0.026537492871284485, + -0.012157228775322437, + 0.0017176427645608783, + 0.008996348828077316, + -0.023119574412703514, + -0.009142235852777958, + -0.0055680107325315475, + -0.0063773347064852715, + 0.01643657311797142, + -0.011601469479501247, + 0.006575324106961489, + -0.0005331813008524477, + 0.008350279182195663, + 0.01496381126344204, + 0.0022768753115087748, + 0.0037374794483184814, + 0.00761389872059226, + 0.015616828575730324, + -0.023550288751721382, + -0.0163115281611681, + 0.007516640704125166, + 0.0074054887518286705, + 0.027732376009225845, + -0.03804170340299606, + 0.006130716763436794, + -0.010413534939289093, + 0.00833638571202755, + 0.012719934806227684, + -0.0058319964446127415, + -0.005609692540019751, + 0.012080811895430088, + 0.013852293603122234, + 0.005963989067822695, + 0.008232180029153824, + -0.008308596909046173, + 0.0056861094199121, + 0.0190903227776289, + -0.0037965287920087576, + 0.0019364728359505534, + 0.0122475391253829, + -0.010003662668168545, + 0.024106048047542572, + 0.0006187161197885871, + -0.015338948927819729, + -0.013081178069114685, + 0.006415543146431446, + -0.0180621687322855, + 0.013379898853600025, + 0.03173384070396423, + -0.010191231034696102, + -0.005411703605204821, + 0.0070859272964298725, + -0.009434008970856667, + -0.018645714968442917, + 0.01714516617357731, + 0.022772226482629776, + 0.01750640943646431, + -0.006797627545893192, + 0.004619746934622526, + -0.008107135072350502, + 0.011268014088273048, + 0.03879198059439659, + -0.004786474630236626, + -0.018326153978705406, + -0.007850096561014652, + -0.00266938004642725, + -0.010927611961960793, + 0.02616235613822937, + 0.008780992589890957, + 0.0099828215315938, + -0.008468378335237503, + 0.011087392456829548, + 0.0052206614054739475, + 0.016047541052103043, + -0.0031712998170405626, + 0.00726654939353466, + -0.002203931799158454, + 0.00817660428583622, + -0.006533641833811998, + 0.009121394716203213, + 0.009538213722407818, + 0.011879349127411842, + 0.015936389565467834, + 0.009711888618767262, + -0.007947353646159172, + -0.0227444376796484, + -0.002478337846696377, + 0.01727021113038063, + 0.04482196643948555, + -0.019993430003523827, + 0.015950283035635948, + -0.006109875626862049, + 0.010670573450624943, + 0.0003475664707366377, + -0.0010255490196868777, + 0.01248373743146658, + -0.0006625689566135406, + 0.010080079548060894, + 0.024078259244561195, + 0.029705319553613663, + 0.012233645655214787, + 0.02330019697546959, + 0.03781940042972565, + -0.030177714303135872, + 0.02127167582511902, + 0.0024331824388355017, + 0.03315102681517601, + -0.007947353646159172, + 0.002264718059450388, + -0.022480452433228493, + -0.0015292057069018483, + -0.00935064535588026, + -0.017061801627278328, + 0.005060880444943905, + -0.03295651078224182, + -0.0060577732510864735, + 0.022925060242414474, + 0.0028656325303018093, + 0.022452663630247116, + -0.0011375691974535584, + 0.008718469180166721, + -0.008107135072350502, + -0.018506774678826332, + 0.013206223957240582, + -0.011608416214585304, + -0.010371852666139603, + -0.01889580674469471, + 0.0017089589964598417, + -0.00972578302025795, + 0.008843515068292618, + 0.012636570259928703, + 0.01742304489016533, + 0.01467203814536333, + 0.021938586607575417, + -0.00817660428583622, + -0.01063583791255951, + 0.002078886143863201, + -0.00363327469676733, + 0.011420847848057747, + 0.0006617005565203726, + -0.025509338825941086, + -0.011719568632543087, + 0.012553206644952297, + 0.002162249991670251, + 0.001610832754522562, + -0.004001465160399675, + -0.02556491456925869, + 0.003233822761103511, + -0.008586476556956768, + 0.019243156537413597, + 0.006401649210602045, + 0.008301650173962116, + 0.017756501212716103, + -0.011281908489763737, + 0.014644250273704529, + -0.002973310649394989, + -0.005995250307023525, + -0.0019833650439977646, + 0.017242424190044403, + -0.01453309878706932, + -0.007009510416537523, + -0.007551375776529312, + -0.02330019697546959, + -0.019312625750899315, + -0.025745537132024765, + -0.013011707924306393, + 0.00726654939353466, + 0.0018357415683567524, + 0.01115686260163784, + -0.005449912045150995, + 0.00821828655898571, + -0.003744426416233182, + -0.01707569509744644, + -0.017673136666417122, + -0.001204433967359364, + -0.009142235852777958, + -0.0024609703104943037, + -0.003296345705166459, + -0.0013016918674111366, + -0.004876785445958376, + 0.02945522777736187, + -0.009510425850749016, + 0.011587576009333134, + 0.0087740458548069, + 0.015408419072628021, + 0.017172953113913536, + -0.0008753204601816833, + -0.00553674902766943, + 0.01583913154900074, + -0.0003814330557361245, + 0.022605497390031815, + 0.013880081474781036, + 0.015811344608664513, + -0.02787131443619728, + -0.013463262468576431, + 0.022688861936330795, + -0.0074054887518286705, + -0.02691263146698475, + 0.006849729921668768, + 0.007356860209256411, + -0.027885209769010544, + -0.0008944246801547706, + 0.005661794915795326, + -0.010010609403252602, + 0.006109875626862049, + -0.00891298521310091, + -0.003371025901287794, + -0.014658143743872643, + 0.019701657816767693, + -0.02934407629072666, + 0.00473437225446105, + 0.015311161056160927, + -0.013011707924306393, + -0.0012869294732809067, + -0.018770761787891388, + 0.011795985512435436, + -0.02175796590745449, + 0.010726149193942547, + -0.00583546981215477, + -0.016297632828354836, + 0.01453309878706932, + -0.0378749780356884, + 0.04557223990559578, + 0.022994529455900192, + -0.013914816081523895, + 0.005251922644674778, + -0.009302016347646713, + -0.007731997407972813, + -0.0070442454889416695, + -0.013838399201631546, + 0.02481464110314846, + -0.010517739690840244, + -0.010351011529564857, + -0.004605852998793125, + -0.007162344176322222, + -0.0052484492771327496, + -0.02909398451447487, + 0.028440967202186584, + 0.0005123403389006853, + -0.006200186442583799, + -0.020979903638362885, + 0.0026103307027369738, + 0.014560886658728123, + -0.0189374890178442, + 0.0020840964280068874, + -0.01042048167437315, + 0.0013833189150318503, + -0.015088857151567936, + -1.481662275182316e-5, + 0.010587208904325962, + -0.015658510848879814, + -0.01435247715562582, + -0.008378067053854465, + 0.011962712742388248, + -0.007815361022949219, + 0.0014545255107805133, + -0.030038775876164436, + -0.010496898554265499, + -0.01949324831366539, + -0.0035047552082687616, + -0.01367861870676279, + -0.016464360058307648, + -0.022494345903396606, + -0.0012565364595502615, + -0.0044599659740924835, + -0.011580628342926502, + 0.013331269845366478, + -0.008544795215129852, + -0.0218691173940897, + -0.026495810598134995, + 0.011587576009333134, + 0.00921170599758625, + 0.018840231001377106, + -0.0020667288918048143, + 0.005849363747984171, + 0.0237725917249918, + 0.0013416369911283255, + 0.014505309984087944, + -0.01902085170149803, + -0.03084462508559227, + 0.009364539757370949, + -0.0009968926897272468, + 0.002440129406750202, + -0.005012251436710358, + 0.004512068349868059, + -0.0003892483946401626, + -0.02727387472987175, + 0.02235540747642517, + 0.004116090014576912, + -0.013331269845366478, + 0.002193511463701725, + 0.009343698620796204, + -0.017687030136585236, + -0.018826337531208992, + 0.023453030735254288, + 0.002961153630167246, + -0.0065683769062161446, + 0.006776786409318447, + -0.02043803781270981, + -0.02370312251150608, + -0.0035603311844170094, + 0.013991232961416245, + -0.01004534400999546, + -0.006557956337928772, + -0.024106048047542572, + -0.030316654592752457, + -0.022730544209480286, + -0.0002689786779228598, + 0.01129580195993185, + 0.005158138461410999, + -0.003131354693323374, + -0.002233456587418914, + -0.023091787472367287, + 0.023730909451842308, + -0.00229250593110919, + -0.01111518032848835, + 0.017242424190044403, + -0.004598905798047781, + -0.011900190263986588, + -0.0014319478068500757, + 0.015477888286113739, + 0.012442055158317089, + 0.002205668715760112, + 0.006012618076056242, + 0.009260335005819798, + -0.0044182841666042805, + 0.004133457783609629, + 0.01037879940122366, + 0.0054186503402888775, + 0.018548456951975822, + 0.013657777570188046, + -0.009183918125927448, + -0.01426911260932684, + 0.013504943810403347, + 0.02092432789504528, + 0.001582176424562931, + -0.02600952237844467, + -0.02992762252688408, + -0.008287756703794003, + -0.011497264727950096, + -0.004157772287726402, + -0.0014545255107805133, + 0.0021292518358677626, + 0.0014840502990409732, + -0.003626327496021986, + 0.010774778202176094, + -0.016644982621073723, + -0.01750640943646431, + -0.019798915833234787, + -0.015116645023226738, + -0.0011132548097521067, + -0.00799598265439272, + 0.015491782687604427, + 0.00028113590087741613, + 0.0163115281611681, + 0.006467645522207022, + -0.017687030136585236, + 0.003140038577839732, + 0.024008790031075478, + -0.016450466588139534, + 0.007308231201022863, + -0.006995616480708122, + -0.009552108123898506, + -0.008996348828077316, + 0.0026884842664003372, + 0.014095437712967396, + -0.00025421634200029075, + -0.003935468383133411, + -0.00399799132719636, + 0.01532505452632904, + -0.017798183485865593, + 0.003647168632596731, + -0.01763145439326763, + 0.01008702628314495, + 0.012136387638747692, + 0.0005075642839074135, + 0.0004472123400773853, + -0.021104948595166206, + 0.004282818175852299, + 0.005682636052370071, + 0.005453385412693024, + -0.0037096915766596794, + 0.024078259244561195, + 0.013942604884505272, + -0.01551957055926323, + -0.006557956337928772, + 0.010267647914588451, + -0.01074004266411066, + -0.033289965242147446, + 0.004546803422272205, + -0.0013824505731463432, + -0.0125809945166111, + 0.006478066090494394, + -0.010990134440362453, + -0.01431079488247633, + -0.004359234590083361, + 0.0012877978151664138, + 0.0041542984545230865, + 0.0185762457549572, + -0.0258844755589962, + -0.014039861969649792, + 0.00810018740594387, + 0.016255950555205345, + 0.009281175211071968, + 0.010649732314050198, + -0.023397454991936684, + 0.00399799132719636, + -0.001160146901383996, + -0.020062901079654694, + 0.006262709386646748, + -0.007259602192789316, + -0.02124388888478279, + -0.01063583791255951, + -0.015283373184502125, + -0.00601609144359827, + 0.017728712409734726, + 0.0028899468015879393, + 0.026134567335247993, + -0.022619392722845078, + 0.009156130254268646, + -0.0033032926730811596, + 0.009670207276940346, + 0.0032807148527354, + -0.009253387339413166, + 0.016978438943624496, + -0.008899091742932796, + -0.0031278813257813454, + 0.000515379651915282, + 0.017325786873698235, + -0.0015422313008457422, + 0.001046390039846301, + -0.01774260587990284, + 0.008642052300274372, + -0.01331737544387579, + 0.00778062641620636, + -0.003876419272273779, + -0.0008544794982299209, + -0.014769296161830425, + 0.00717623857781291, + 0.0007129345904104412, + 0.02909398451447487, + -0.003952836152166128, + 0.0076833683997392654, + 0.00028026752988807857, + -0.006457224953919649, + -0.0077250502072274685, + 0.009114447981119156, + 0.01683949865400791, + -0.027162721380591393, + -0.001497075892984867, + 0.02596784010529518, + -0.01778428815305233, + -0.001130622229538858, + 0.02477295882999897, + 0.0073915948159992695, + 0.00647111888974905, + 0.012310062535107136, + 0.0018531089881435037, + -0.005682636052370071, + -0.00032303493935614824, + 0.02004900574684143, + 0.00016661915287841111, + 0.003629801096394658, + 0.017520302906632423, + 0.006325232330709696, + 0.017798183485865593, + -0.004755212925374508, + -0.0008987665642052889, + -0.0046440614387393, + 0.007217920385301113, + -0.030622322112321854, + -0.004894152749329805, + 0.0019052113639190793, + 0.013115912675857544, + -0.00043223288957960904, + 0.009065818972885609, + -0.0027961626183241606, + -0.004956675693392754, + -0.010351011529564857, + -0.01023986004292965, + 0.01042048167437315, + -0.0016464360523968935, + 0.010760883800685406, + -0.029705319553613663, + -0.016533831134438515, + 0.01917368546128273, + 0.01482487190514803, + 0.03390130028128624, + 0.016881180927157402, + -0.01714516617357731, + -0.00028222138644196093, + -0.008204392157495022, + 0.001976418076083064, + -0.0009170023840852082, + 0.02013237029314041, + 0.000499748915899545, + 0.0120669174939394, + -0.0013181909453123808, + -0.015366736799478531, + 0.0012000921415165067, + 0.017450833693146706, + -0.0064850132912397385, + -0.002134461887180805, + 0.002712798770517111, + 0.018951382488012314, + 0.00921170599758625, + 0.0007646028534509242, + -0.0027770583983510733, + -0.005891045555472374, + 0.013171488419175148, + -0.004678796045482159, + -0.010489951819181442, + -0.03215065971016884, + 0.012198910117149353, + 0.008169657550752163, + -0.0031973510049283504, + 0.01797880418598652, + -0.004095249343663454, + 0.01556125283241272, + 0.009072765707969666, + 0.009399274364113808, + -0.01556125283241272, + -0.02468959428369999, + -0.01977112703025341, + 0.005453385412693024, + -0.011142968200147152, + 0.03362341970205307, + -0.009197811596095562, + 0.00761389872059226, + -0.005918833427131176, + 0.017061801627278328, + 0.002247350523248315, + -0.003178246784955263, + 0.0032129818573594093, + 0.005106036085635424, + 0.0024627072270959616, + 0.01042048167437315, + 0.009614630602300167, + 0.02870495431125164, + 0.01046216394752264, + -0.021785752847790718, + 0.016089223325252533, + 0.00016292856889776886, + -0.005119930021464825, + -0.02302231825888157, + 0.004456492606550455, + 0.014283007010817528, + -0.016603300347924232, + 0.01663108915090561, + -0.012567101046442986, + 0.014644250273704529, + -0.008280809037387371, + 0.016172587871551514, + -0.0032025612890720367, + 0.005265816580504179, + -0.022285936400294304, + -0.005470752716064453, + 0.0036367480643093586, + -0.006353020202368498, + -0.02250824123620987, + 0.021355040371418, + 0.004161245655268431, + -0.0026103307027369738, + 0.001609964412637055, + 0.012393426150083542, + -0.006946987938135862, + 0.007002563681453466, + -0.011149914935231209, + 0.008322491310536861, + -0.008947719819843769, + 0.004428704734891653, + 0.010781724937260151, + -0.03687461093068123, + 0.014109332114458084, + -0.008669841103255749, + 0.01992396079003811, + -0.02143840491771698, + 0.011573681607842445, + -0.01607532985508442, + 0.02214699611067772, + 0.02338356152176857, + 0.011934924870729446, + -0.017214635387063026, + 0.01375503558665514, + -0.008246074430644512, + 0.01579744927585125, + -0.005908412858843803, + 0.006596164777874947, + 0.008940773084759712, + -0.014421946369111538, + 0.0015430996427312493, + -0.015116645023226738, + -0.036846823990345, + -0.031344808638095856, + 0.022285936400294304, + -0.008440590463578701, + 0.013039495795965195, + 0.0005631402018480003, + -0.020590871572494507, + 0.002726692706346512, + 0.002144882455468178, + 0.03770824894309044, + -0.008246074430644512, + -0.00015717560017947108, + -0.008371120318770409, + -0.003442232497036457, + 0.011691780760884285, + 0.013643884100019932, + -0.012282274663448334, + 0.006731631234288216, + 0.018840231001377106, + -0.004307132214307785, + 0.0204797200858593, + 0.02819087542593479, + 0.000566179514862597, + 0.006009144242852926, + 0.0037513733841478825, + -0.004755212925374508, + 0.018645714968442917, + 3.942958210245706e-5, + 0.002224772935733199, + 0.020215734839439392, + 0.01268519926816225, + 0.031900566071271896, + -0.00356727815233171, + -0.0057521057315170765, + 0.0030670950654894114, + -0.016325421631336212, + 0.0016203848645091057, + 0.004466913174837828, + -0.01746472716331482, + 0.015366736799478531, + 0.0029976251535117626, + 0.0001861575583461672, + -0.006269656587392092, + 0.02072981186211109, + -0.0009230810101144016, + 0.011900190263986588, + -0.006564903538674116, + 0.014713720418512821, + -0.010844248346984386, + 0.0082599688321352, + -0.016770027577877045, + 0.011351377703249454, + 0.013880081474781036, + -0.01467203814536333, + -0.018993064761161804, + -0.00653016846626997, + -0.003464810084551573, + -0.002249087207019329, + -0.011511159129440784, + -0.00592578062787652, + -0.0008800965151749551, + -0.012310062535107136, + -0.0005601008888334036, + -0.01055942103266716, + 0.016297632828354836, + 0.013379898853600025, + 0.0002843922993633896, + 0.002261244459077716, + 0.0019798914436250925, + -0.0060855611227452755, + 0.009440956637263298, + 0.006502380594611168, + 0.007141503505408764, + 0.016853392124176025, + -0.00403967360034585, + -0.0014032914768904448, + 0.002874316181987524, + -0.0019521035719662905, + 0.010351011529564857, + 0.0065544829703867435, + 0.00363327469676733, + -0.0006330442847684026, + -1.728606002870947e-5, + -0.005957041867077351, + -0.038208432495594025, + -0.002558228326961398, + 0.012636570259928703, + -0.010580262169241905, + -0.011705674231052399, + 0.003699271008372307, + 0.0044738599099218845, + 0.011497264727950096, + -0.005463805980980396, + 0.006797627545893192, + 0.005929253995418549, + 0.005439491476863623, + -0.003911153879016638, + 0.009295069612562656, + -0.007822307758033276, + 0.002158776391297579, + 0.002803109586238861, + -0.005571484100073576, + 0.020979903638362885, + 0.019632186740636826, + 0.010531633161008358, + 0.009281175211071968, + 0.013143700547516346, + 0.0080793472006917, + 0.0013268747134134173, + 0.010809512808918953, + 0.022299829870462418, + -0.0020406777039170265, + 0.006255762651562691, + 0.01463035587221384, + 0.020465826615691185, + 0.008489219471812248, + -0.01258794218301773, + -0.0039285216480493546, + -0.004025779198855162, + 0.0038972601760178804, + 0.004730898886919022, + -0.0023602391593158245, + 0.0009222126100212336, + 0.004063987638801336, + 0.01496381126344204, + -0.007009510416537523, + -0.03248411417007446, + 0.012817192822694778, + -0.017534196376800537, + -0.0023341879714280367, + -0.01435247715562582, + 0.018506774678826332, + -0.005439491476863623, + 0.006269656587392092, + -0.01985449157655239, + 0.004710057750344276, + 0.0041126166470348835, + 0.008642052300274372, + -0.006995616480708122, + 0.009850828908383846, + -0.0025738589465618134, + -0.014560886658728123, + 0.0027770583983510733, + -0.021049372851848602, + -0.005147717893123627, + 0.0008818332571536303, + 0.01881244219839573, + -0.0006525826756842434, + 0.009677154012024403, + -0.006231448147445917, + 0.012490684166550636, + -0.015436206944286823, + -0.017172953113913536, + -0.00261554098688066, + -0.002877789782360196, + 0.008280809037387371, + 0.01735357567667961, + 0.006891411729156971, + -0.004199454095214605, + 0.008669841103255749, + -0.0036054865922778845, + -0.012768563814461231, + 0.03845852240920067, + -0.006867097225040197, + -0.00986472237855196, + 0.005012251436710358, + -0.011351377703249454, + -0.001161015359684825, + -0.012643517926335335, + 0.01985449157655239, + 0.005644427612423897, + 0.020952114835381508, + -0.030872413888573647, + -0.005050459876656532, + 0.020549189299345016, + -0.009718836285173893, + -0.012601835653185844, + 0.0006894885445944965, + -0.0012817191891372204, + 0.02330019697546959, + -0.024522867053747177, + 0.020785387605428696, + 0.0020945167634636164, + 0.0003288964508101344, + -0.011726515367627144, + -0.004560697358101606, + -0.007183185312896967, + 0.006189765874296427, + -0.009628525003790855, + -0.0029246818739920855, + 0.027482284232974052, + 0.012928344309329987, + 0.008322491310536861, + 0.013748088851571083, + 0.009121394716203213, + -0.0029924148693680763, + 0.017450833693146706, + -0.007870936766266823, + 0.01763145439326763, + -0.001436289749108255, + 0.005995250307023525, + 0.007329071871936321, + -0.001277377363294363, + -0.0036888504400849342, + -0.005953568499535322, + -0.003148722229525447, + -0.013366004452109337, + 0.0063808080740273, + -0.00861426442861557, + -0.0014206590130925179, + -0.0015066280029714108, + 0.007287390064448118, + -0.0033606053330004215, + 0.0045259627513587475, + 0.01596417836844921, + 0.002971573965623975, + -0.011844614520668983, + 0.001917368615977466, + 0.019910067319869995, + -0.023675333708524704, + -0.006672581657767296, + -0.006196713075041771, + 0.012511525303125381, + -0.006502380594611168, + 0.019187580794095993, + -0.01167093962430954, + 0.02580111287534237, + -0.013414633460342884, + -0.01639489084482193, + 0.009295069612562656, + -0.004869838245213032, + 0.008635105565190315, + -0.003786108223721385, + -0.01722852885723114, + 0.019395990297198296, + 0.020674236118793488, + 0.00020927800505887717, + -0.0031817203853279352, + 0.0131228594109416, + -0.03498503193259239, + -0.004685743246227503, + 9.448988566873595e-5, + -0.021507874131202698, + -0.004119563847780228, + 0.003907680511474609, + -0.01556125283241272, + 0.004439125303179026, + -0.015700193122029305, + 0.01874297298491001, + 0.0042341891676187515, + 0.018729079514741898, + 0.004453019239008427, + -0.014019020833075047, + 0.013671671971678734, + -0.02406436577439308, + -0.01467203814536333, + -0.01115686260163784, + -0.002332451054826379, + 0.039959073066711426, + 0.01870129071176052, + 0.002917734906077385, + -0.009385380893945694, + 0.004105669911950827, + -0.023633651435375214, + 0.005408229772001505, + -0.0036228541284799576, + -0.001929525868035853, + -0.0120669174939394, + 0.0074054887518286705, + 0.005297078285366297, + -0.014783189631998539, + -0.0048872060142457485, + -0.00566874211654067, + -0.008190498687326908, + 0.0006113349227234721, + -0.01284498069435358, + -0.0031018301378935575, + -0.002224772935733199, + 0.0013008234091103077, + -0.003727058880031109, + -0.005634007044136524, + 0.017436938360333443, + 0.0008579529821872711, + 0.017617560923099518, + 0.0011948818573728204, + -0.002582542598247528, + -0.008558688685297966, + -0.011129074729979038, + 0.019270943477749825, + -0.009086660109460354, + -0.03587424382567406, + 0.007454117760062218, + -0.015477888286113739, + 0.0060855611227452755, + -0.008378067053854465, + 0.0074054887518286705, + -0.0026311716064810753, + 0.004258503671735525, + -0.012337850406765938, + -0.008899091742932796, + 0.021382829174399376, + -0.012949185445904732, + -0.011483370326459408, + -0.005286657717078924, + -0.01199050061404705, + 0.005804208107292652, + -0.006988669745624065, + -0.006304391194134951, + 0.01504717580974102, + -0.01738136261701584, + -0.017659243196249008, + -0.005616639740765095, + -0.02116052433848381, + 0.0008427564753219485, + -0.004102196078747511, + -0.024717383086681366, + -0.012059970758855343, + -0.014769296161830425, + -0.0011957503156736493, + 0.0021883011795580387, + 0.006644793786108494, + 0.004543330054730177, + -0.004011885263025761, + 0.011142968200147152, + 0.014560886658728123, + -0.014880447648465633, + 0.009628525003790855, + -0.004321026150137186, + 0.018951382488012314, + -0.02520367130637169, + -0.016283739358186722, + 0.00592578062787652, + -0.008468378335237503, + -0.030677897855639458, + -0.021132737398147583, + -0.009559054858982563, + -0.017561985179781914, + -0.013741142116487026, + -0.007148450240492821, + -0.023967107757925987, + 0.011309696361422539, + 0.0005032223998568952, + -0.005147717893123627, + 0.005130350589752197, + -0.01934041455388069, + -0.012518472038209438, + 0.013532731682062149, + 0.01889580674469471, + 0.023411348462104797, + -0.009968927130103111, + -0.013227065093815327, + 0.006995616480708122, + 0.010677520185709, + -0.0013312165392562747, + -0.0024748644791543484, + -0.004776054061949253, + 0.005529802292585373, + 0.020021218806505203, + -0.004331446718424559, + 0.013942604884505272, + -0.009197811596095562, + 0.004925414454191923, + -0.008808780461549759, + -0.024286668747663498, + 0.01028154231607914, + -0.016742240637540817, + -0.010781724937260151, + 0.010691414587199688, + -0.023161256685853004, + 0.016422679647803307, + -0.008864356204867363, + 0.006005670875310898, + 0.015352843329310417, + -0.003598539624363184, + -0.003018466290086508, + -0.007033824920654297, + -0.0012000921415165067, + 0.01133053656667471, + -0.003744426416233182, + 0.014505309984087944, + 0.012733828276395798, + 0.013407686725258827, + -0.017492515966296196, + 0.010288489051163197, + -0.0003004572063218802, + 0.005981356371194124, + 0.00017421742086298764, + -0.017812076956033707, + 0.0013685566373169422, + 0.000544035981874913, + -0.005838943179696798, + 0.012754669412970543, + -0.006137663498520851, + -0.005283184349536896, + 0.0013972129672765732, + -0.018353940919041634, + 0.01556125283241272, + -0.016047541052103043, + -0.021896906197071075, + 0.01568629778921604, + 0.01089982409030199, + 0.0014484470011666417, + 0.014477522112429142, + -0.00861426442861557, + -0.000943921972066164, + 0.012344797141849995, + -0.005411703605204821, + 0.01262267678976059, + 0.0012582731433212757, + 0.009364539757370949, + -0.00010512746666790918, + 0.017047908157110214, + 0.00869068130850792, + 0.03590203449130058, + -0.019201474264264107, + 0.009559054858982563, + -0.0037478997837752104, + 0.016186481341719627, + 0.002394973998889327, + -0.009635471738874912, + 0.008385013788938522, + 0.015853026881814003, + -0.00873236358165741, + -0.006658687721937895, + 0.003991044592112303, + 0.007648633327335119, + -0.006926146801561117, + -0.004796895198523998, + -0.007210973184555769, + -0.00717623857781291, + -0.014560886658728123, + -0.00158304488286376, + 0.004244609735906124, + -0.001159278559498489, + -0.005755579564720392, + 0.001699406886473298, + -0.02981647104024887, + -0.01053858082741499, + 0.013657777570188046, + 0.0014623409369960427, + 0.022855589166283607, + 0.0050990888848900795, + -0.05165779963135719, + 0.008975508622825146, + -0.009065818972885609, + 0.007766732480376959, + -0.009753570891916752, + -0.016144799068570137, + 0.024147730320692062, + 0.017812076956033707, + 0.0008371120202355087, + -0.0019937853794544935, + -0.006981722544878721, + -0.0008214812842197716, + 0.018312260508537292, + -0.008058506064116955, + -0.01383145246654749, + 0.010962346568703651, + 0.02036856859922409, + -0.001625595148652792, + -0.008996348828077316, + -0.00817660428583622 + ], + "d7a173a7-0882-41b9-b755-1972cdcf4e78": [ + -0.02320222742855549, + -0.02063121274113655, + -0.011837709695100784, + 0.029322190210223198, + -0.04795021936297417, + 0.0008685062057338655, + 0.02668808214366436, + 0.018722668290138245, + -0.002547355368733406, + 0.025899427011609077, + -0.002718887757509947, + 0.01659329980611801, + -9.673345630289987e-5, + 0.004016225226223469, + 0.012768322601914406, + 0.03178279101848602, + -0.012279356829822063, + 0.015749437734484673, + -0.014195788651704788, + -0.01163265947252512, + 0.06511134654283524, + -0.024053974077105522, + -0.03249258175492287, + -0.013722595758736134, + 0.0027326892595738173, + -0.011719412170350552, + -0.011348743923008442, + -0.0041680410504341125, + -0.03482700139284134, + 0.006774545647203922, + 0.014929237775504589, + 0.00957427080720663, + 0.018517617136240005, + 0.01895926333963871, + 0.022634396329522133, + -0.045268792659044266, + -0.023580782115459442, + 0.017792055383324623, + -0.01842297799885273, + -0.018044423311948776, + -0.02594674564898014, + 0.04179871082305908, + -0.017965558916330338, + 0.005244554951786995, + -0.0565938763320446, + -0.005130200181156397, + 0.01962173357605934, + -0.008943346329033375, + -0.016025466844439507, + 0.010820345021784306, + 0.01173518504947424, + 0.00042661299812607467, + -0.015236812643706799, + 0.006372331641614437, + 0.038896460086107254, + -0.045615799725055695, + 0.010638955049216747, + 0.06504825502634048, + -0.009203602559864521, + -0.042587365955114365, + 0.0016226574080064893, + 0.021498732268810272, + -0.0025631284806877375, + -0.022429345175623894, + 0.0019489633850753307, + -0.01774473488330841, + -0.01788669265806675, + 0.006754829082638025, + -0.03555256128311157, + -0.016482887789607048, + -0.0019302328582853079, + 0.03208248317241669, + -0.03318659961223602, + 0.017098037526011467, + -0.034921638667583466, + -0.017445046454668045, + 0.0461205393075943, + 0.00399256544187665, + 0.013501771725714207, + 0.016025466844439507, + 0.026940451934933662, + 0.016293609514832497, + 0.023438824340701103, + 0.026861585676670074, + 0.04741393402218819, + -0.009140510112047195, + -0.01324151549488306, + -0.05183039978146553, + 0.017855146899819374, + -0.03274495154619217, + 0.007350263651460409, + 0.038486357778310776, + -0.013714708387851715, + -0.005666485521942377, + -0.015370883978903294, + 0.032713405787944794, + 0.044606320559978485, + 0.000176461529918015, + 0.028596626594662666, + 0.0140222841873765, + 0.022145429626107216, + 0.03134114667773247, + -0.025158090516924858, + 0.018706893548369408, + -0.013351927511394024, + -0.004996128845959902, + 0.002229921752586961, + 0.01943245716392994, + -0.022539757192134857, + 0.024101294577121735, + 0.006920446641743183, + -0.05466955900192261, + -0.00111397507134825, + 0.005832103081047535, + -0.0066917366348207, + -0.006439367309212685, + -0.012586932629346848, + -0.01526047196239233, + -0.0017261684406548738, + -0.042524270713329315, + 0.02602561190724373, + 0.03435380756855011, + 0.0024901777505874634, + -0.0060371533036231995, + -0.02217697538435459, + 0.037539973855018616, + 0.006029266864061356, + -0.007141270209103823, + 0.022902538999915123, + 0.03974820673465729, + -0.005256385076791048, + -0.019747918471693993, + 0.02479531057178974, + 0.005019788630306721, + -0.006932276766747236, + 0.027729107066988945, + 0.010780912823975086, + 0.027602922171354294, + -0.02446407452225685, + 0.029763836413621902, + -0.062082912772893906, + -0.05306070297956467, + -0.03126227855682373, + 0.019747918471693993, + -0.0038348345551639795, + -0.0011258048471063375, + -0.034038346260786057, + 0.028423123061656952, + -0.01220049150288105, + 0.012153171934187412, + -0.04006366804242134, + -5.234080890659243e-5, + 0.015915056690573692, + 0.011743071489036083, + -0.007610519882291555, + -0.014093263074755669, + -0.007661782205104828, + 0.008288763463497162, + 0.0017784168012440205, + 0.0724300667643547, + -0.0004283381858840585, + -0.04671991616487503, + -0.01714535802602768, + -0.002714944537729025, + 0.05713016167283058, + -0.020520800724625587, + 0.06246146932244301, + 0.019400911405682564, + 0.0057414076291024685, + 0.0006491615786217153, + 0.007385753095149994, + -0.021861514076590538, + 0.04416467621922493, + 0.012066420167684555, + 0.003633727552369237, + -0.0022989290300756693, + 0.039022643119096756, + 0.01842297799885273, + 0.0109544163569808, + -0.030536718666553497, + 1.5180066839093342e-5, + -0.0032453148160129786, + -0.003420790657401085, + -0.0318143405020237, + 0.003919614944607019, + 0.025457780808210373, + 0.007062404882162809, + 0.017397727817296982, + 0.027729107066988945, + -0.002825356088578701, + -0.003984679002314806, + -0.017381954938173294, + -0.005015845410525799, + 0.021482959389686584, + -0.010867664590477943, + -0.03514246270060539, + 0.01659329980611801, + 0.012042759917676449, + 0.019069675356149673, + 0.06274538487195969, + -0.001192840514704585, + -0.037350695580244064, + -0.04239808768033981, + 0.04028449207544327, + -0.032902684062719345, + 0.04517415165901184, + -0.022965630516409874, + -0.006660190876573324, + 0.022429345175623894, + -0.03520555421710014, + 0.025867881253361702, + -0.02965342439711094, + 0.014235220849514008, + 0.020079154521226883, + -0.03220866620540619, + 0.03429071605205536, + -0.0014452100731432438, + 0.019243178889155388, + 0.01509485486894846, + -0.02722436748445034, + 0.0021293682511895895, + 0.026072930544614792, + 0.01078879926353693, + -0.0090064387768507, + -0.05183039978146553, + -0.026199115440249443, + -0.020757397636771202, + 0.045205697417259216, + -0.040095213800668716, + 0.0027050862554460764, + 0.03605730086565018, + -0.022350480780005455, + 0.030031979084014893, + -0.03299732133746147, + -0.015157947316765785, + -0.0026991714257746935, + -0.005394399631768465, + 0.020047606900334358, + 0.006210657302290201, + -0.014164241962134838, + 0.007397583220154047, + 0.0054653785191476345, + 0.032303303480148315, + 0.009045871905982494, + 0.010662614367902279, + 0.009905505925416946, + 0.0334705151617527, + 0.03798162192106247, + 0.006727226544171572, + -0.002381737809628248, + 0.024763764813542366, + 0.014345632866024971, + 0.02776065282523632, + -0.01529201865196228, + -0.020820489153265953, + 0.03099413774907589, + 0.016656391322612762, + -0.04053686186671257, + 0.018911944702267647, + -0.00023992361093405634, + -0.005765067413449287, + 0.016246290877461433, + 0.007575030438601971, + 0.03495318442583084, + 0.0133834732696414, + -0.045079514384269714, + 0.0461205393075943, + -0.02742941677570343, + 0.015142174437642097, + 0.014164241962134838, + -0.024763764813542366, + 0.043186742812395096, + -0.006052926182746887, + 0.003582464996725321, + -0.013864553533494473, + -0.006486686412245035, + -0.019795238971710205, + 0.01129353791475296, + -0.007334490772336721, + -0.004976412281394005, + -0.006159394979476929, + 0.007231965661048889, + 0.011238332837820053, + 0.0008596338448114693, + -0.028154980391263962, + 0.016782576218247414, + -0.03211402893066406, + 0.01634093001484871, + -0.028154980391263962, + 0.030836407095193863, + 0.020520800724625587, + 0.026341073215007782, + 0.04000057652592659, + -0.0024270855356007814, + 0.0041719842702150345, + 0.024369437247514725, + -0.03763461112976074, + -0.017523912712931633, + -0.03187743201851845, + 0.008509586565196514, + -0.005142029840499163, + 0.004006366711109877, + -0.02372273989021778, + -0.04031603783369064, + 0.012752549722790718, + -0.02272903360426426, + 0.03406989201903343, + 0.033849067986011505, + -0.0295114666223526, + -0.005950401071459055, + -0.013202083297073841, + -0.030237028375267982, + -0.02749251015484333, + -0.028060341253876686, + -0.0020485310815274715, + -0.0036258408799767494, + -0.01580464467406273, + 0.009621589444577694, + -0.0008285805815830827, + -0.008422834798693657, + 0.0014885860728099942, + -0.0029495693743228912, + -0.05514274910092354, + 0.012074306607246399, + 0.041388608515262604, + -0.04448013752698898, + 0.05668851360678673, + -0.0006767644663341343, + -0.030095070600509644, + -0.030300121754407883, + -0.008832935243844986, + -0.011616886593401432, + -0.029590332880616188, + -0.007212249096482992, + -0.022397799417376518, + -0.04485869035124779, + -0.02662498876452446, + -0.017902465537190437, + -0.006348671857267618, + -0.03071022219955921, + -0.007748534437268972, + -0.0004317885614000261, + -0.005347080063074827, + -0.0026124194264411926, + -0.00017301116895396262, + -0.011892915703356266, + -0.0027307176496833563, + -0.01914854161441326, + -0.00472404295578599, + 0.00503950472921133, + 0.0010636983206495643, + -0.02380160428583622, + 0.03132537379860878, + 0.005981947295367718, + 0.06952781975269318, + -0.018375659361481667, + -0.010765139013528824, + -0.024495622143149376, + 0.009408652782440186, + -0.014030170626938343, + 0.013556977733969688, + -0.033659789711236954, + -0.027192821726202965, + -0.010394471697509289, + -0.0032985492143779993, + 0.010733593255281448, + -0.021262135356664658, + -0.017634322866797447, + -0.02735055238008499, + 0.00396693404763937, + -0.03201938793063164, + 0.023281091824173927, + -0.009897619485855103, + -0.02345459721982479, + -0.026404166594147682, + -0.022098110988736153, + 0.04889660328626633, + -0.0022673828061670065, + -0.019448230043053627, + 0.020946674048900604, + -0.015307791531085968, + -0.0009286411223001778, + 0.005769010633230209, + 0.027460964396595955, + 0.01502387598156929, + 0.012208377942442894, + -0.003466138383373618, + -0.005855762865394354, + 0.014337746426463127, + 0.029558785259723663, + -0.046751461923122406, + -0.008320309221744537, + -0.016064900904893875, + 0.016719484701752663, + -0.03233484923839569, + -0.03044207952916622, + 0.0064669703133404255, + -0.014818825758993626, + 0.03905419260263443, + -0.005713804624974728, + -0.00934556033462286, + 0.0008034422062337399, + -0.016561752185225487, + 0.037066780030727386, + -0.002151056192815304, + -0.017855146899819374, + -0.0043454887345433235, + -0.022807899862527847, + 0.022539757192134857, + 0.002987030427902937, + -0.013517544604837894, + 0.0033793861512094736, + 0.02903827279806137, + 0.0020840205252170563, + 0.05271369218826294, + 0.0020721908658742905, + 0.008186237886548042, + 0.04820258915424347, + -0.015599594451487064, + -0.03608884662389755, + 0.05444873496890068, + 0.02574169635772705, + -0.02788683772087097, + 0.029069820418953896, + -0.009392879903316498, + 0.033849067986011505, + -0.002338361693546176, + 0.028628172352910042, + -0.02749251015484333, + -0.020615439862012863, + 6.487919017672539e-5, + 0.037003688514232635, + 0.00793386809527874, + -0.0014422526583075523, + -0.011821936815977097, + -0.044669412076473236, + 0.0159702617675066, + 0.004041856154799461, + -0.003468109993264079, + -0.024290570989251137, + -0.02500035986304283, + 0.012444973923265934, + 0.011419722810387611, + -0.01854916289448738, + -0.034385353326797485, + -0.02716127410531044, + -0.0321928933262825, + 0.002634107368066907, + 0.027177048847079277, + -0.004838397726416588, + 0.007090007420629263, + 0.03514246270060539, + -0.05772953853011131, + -0.003773713717237115, + 0.011892915703356266, + -0.0017458847723901272, + -0.003661330323666334, + -0.020615439862012863, + 0.02757137455046177, + -0.05523739010095596, + -0.0307259950786829, + -0.007433072663843632, + 0.004944866057485342, + -0.006557665299624205, + 0.029479920864105225, + -0.03968511521816254, + 0.02526850253343582, + 0.02291831187903881, + 0.003959047608077526, + 0.045079514384269714, + -0.01889617182314396, + -0.029527239501476288, + 0.015039648860692978, + 0.04571043699979782, + -0.001203684601932764, + -0.012523840181529522, + -0.02089935541152954, + -0.0067193396389484406, + -0.02258707582950592, + 0.011277765035629272, + -0.02998465858399868, + -0.019590187817811966, + -0.008659430779516697, + -0.013722595758736134, + 0.006991425529122353, + -0.004016225226223469, + -0.012768322601914406, + -0.016230517998337746, + 0.03738224133849144, + -0.0030047751497477293, + 0.04236654192209244, + 0.014881918206810951, + 0.004597858060151339, + 0.030079297721385956, + -0.03195629641413689, + -0.03719296678900719, + 0.0019203746924176812, + -0.040915414690971375, + -0.007247738540172577, + -0.026325300335884094, + 0.032713405787944794, + -0.02231893315911293, + -0.009968598373234272, + 0.03864409029483795, + -0.01949554868042469, + 0.018107516691088676, + -0.03656204044818878, + 0.015284132212400436, + 0.008146804757416248, + -0.031703926622867584, + -0.03501627594232559, + -0.01599392108619213, + -0.01968482695519924, + 0.014014397747814655, + 0.002492149593308568, + 0.031435783952474594, + -0.0026104478165507317, + 0.00873829610645771, + 0.02205079048871994, + -0.008146804757416248, + -0.006920446641743183, + -0.008690977469086647, + -0.0011425637640058994, + -0.008008790202438831, + -0.015418203547596931, + 0.008690977469086647, + -0.02474799007177353, + -0.04646754637360573, + 0.035457924008369446, + -0.030079297721385956, + -0.004380978178232908, + 0.029968885704874992, + -0.025047680363059044, + 0.021135952323675156, + 0.010796685703098774, + 0.02930641546845436, + -0.011995441280305386, + 0.003736252663657069, + -0.0028845053166151047, + 0.016782576218247414, + -0.005303704179823399, + 0.007622349541634321, + 0.015205266885459423, + -0.015299905091524124, + -0.019243178889155388, + 0.03476390987634659, + 0.014440271072089672, + 0.012137399055063725, + -0.011577454395592213, + 0.029606105759739876, + -0.03429071605205536, + -0.0005510725895874202, + 0.0009912406094372272, + 0.027271686121821404, + 0.01968482695519924, + -0.017161130905151367, + 0.016861442476511, + -0.02231893315911293, + -0.018501844257116318, + -0.010402358137071133, + -0.030410533770918846, + 0.03668822720646858, + -0.007026914972811937, + 0.02582056075334549, + -0.01720844954252243, + -0.016656391322612762, + 0.015347224660217762, + 0.02205079048871994, + -0.004408580716699362, + 0.03113609552383423, + 0.0383286289870739, + -0.0008852651226334274, + 0.011711525730788708, + 0.001231287489645183, + 0.014668981544673443, + 0.0121689448133111, + -0.014329859986901283, + 0.005481151398271322, + -0.024968814104795456, + -0.036814410239458084, + 0.009085304103791714, + -0.010504883714020252, + 0.0015851963544264436, + -0.0026203058660030365, + 0.00591491162776947, + 0.030237028375267982, + -0.00048674794379621744, + -0.019858330488204956, + 0.013052239082753658, + 0.011545907706022263, + 0.008825048804283142, + 0.020520800724625587, + 0.0053510237485170364, + -0.0034286770969629288, + -0.021135952323675156, + 0.005205122288316488, + 0.0010962303495034575, + 0.021199043840169907, + 0.027271686121821404, + -0.013422906398773193, + -0.002440887037664652, + 0.009471745230257511, + 0.001516189076937735, + -0.004085232503712177, + -0.03099413774907589, + 0.02460603229701519, + 0.020410388708114624, + 0.0013062097132205963, + -0.015110627748072147, + 0.038770273327827454, + -0.016829894855618477, + 0.021467186510562897, + 0.038486357778310776, + -0.007835286669433117, + 0.029432600364089012, + 0.009022211655974388, + -0.017034946009516716, + 0.044732507318258286, + 0.0005303703946992755, + 0.03265031427145004, + 0.042524270713329315, + -0.029132911935448647, + 0.057918816804885864, + -0.029290642589330673, + 0.018927717581391335, + 0.029874248430132866, + -0.018470298498868942, + 0.008801388554275036, + -0.028612399473786354, + -0.02265016920864582, + 0.006565552204847336, + -0.0231233611702919, + 0.030757540836930275, + -0.018596483394503593, + 0.0037323094438761473, + 0.0017153244698420167, + -0.014203675091266632, + 0.013541204854846, + -0.007760364096611738, + -0.005611279513686895, + -0.0033261519856750965, + -0.00039383454713970423, + -0.005753237288445234, + 0.05451182648539543, + -0.007610519882291555, + 0.034322261810302734, + 0.007417299319058657, + 0.016766803339123726, + 0.042114172130823135, + 0.025789014995098114, + -0.007784023880958557, + 0.017113812267780304, + -0.0025966463144868612, + 0.008604224771261215, + 0.010914984159171581, + -0.024243252351880074, + 0.021672237664461136, + 4.2975530959665775e-5, + 0.018722668290138245, + 0.019306272268295288, + 0.037476882338523865, + -0.013572750613093376, + 0.004282396286725998, + -0.01156168058514595, + 0.01314687728881836, + 0.010465450584888458, + 0.02091512829065323, + 0.022019244730472565, + 0.014408725313842297, + 0.03228753060102463, + 0.02938528172671795, + -0.02783951722085476, + 0.01916431449353695, + 0.0033202371560037136, + -0.0021372546907514334, + 0.014353519305586815, + 0.008825048804283142, + 0.00177743099629879, + -0.01253961306065321, + -0.024653352797031403, + -0.0177605077624321, + -0.022224295884370804, + -0.040379129350185394, + 0.001235230709426105, + -0.033849067986011505, + -0.006664134096354246, + -0.011640545912086964, + 0.04589971527457237, + -0.021688010543584824, + -0.002632135758176446, + -0.02279212698340416, + 0.00934556033462286, + -0.003769770497456193, + 0.004751645959913731, + -0.0016749058850109577, + -0.010922870598733425, + 0.012090079486370087, + 0.0008290734840556979, + -0.010362925007939339, + -0.015355111099779606, + -0.01570211909711361, + 0.004909376613795757, + 0.01828102022409439, + -0.02487417496740818, + 0.012547499500215054, + -0.02089935541152954, + -0.01377780083566904, + -0.010299833491444588, + 0.015512841753661633, + -0.005236668512225151, + -0.0020781056955456734, + 0.005725634749978781, + -0.008107372559607029, + 0.04665682464838028, + 0.019747918471693993, + 0.024826856330037117, + 0.0037934300489723682, + 0.017239995300769806, + -0.014448157511651516, + 0.027476737275719643, + 0.006186997517943382, + 0.037413787096738815, + 0.005418059416115284, + -0.035331740975379944, + -0.03662513196468353, + 0.023580782115459442, + 0.0043297153897583485, + 0.02145141363143921, + 0.014471817761659622, + 0.004231133498251438, + 0.047634754329919815, + -0.007898379117250443, + -0.0017833459423854947, + 0.010496996343135834, + 0.018675347790122032, + -0.001994311111047864, + -0.027382098138332367, + 0.0005564946332015097, + 0.044259313493967056, + -0.03678286448121071, + 0.013501771725714207, + -0.012768322601914406, + 0.02110440470278263, + -0.0027011430356651545, + 0.01881730556488037, + 0.013620070181787014, + 0.01883307844400406, + 0.00888025388121605, + -0.004692496731877327, + 0.013020692393183708, + 0.03058403730392456, + -0.024842629209160805, + 0.047697849571704865, + 0.01902235671877861, + -0.014093263074755669, + 0.007756420876830816, + 0.021419867873191833, + -0.015481295995414257, + -0.019180087372660637, + 0.015386656858026981, + -0.003038292983546853, + 0.0011997412657365203, + -0.01448759064078331, + -0.023833151906728745, + -0.00737786665558815, + -0.00021774269407615066, + -0.006092359311878681, + 0.013817233964800835, + 0.018675347790122032, + -0.0018809419125318527, + 0.016309384256601334, + 0.033123504370450974, + 0.017902465537190437, + 0.018044423311948776, + 0.006640474312007427, + -0.03045785240828991, + 0.024968814104795456, + -0.02056811936199665, + -0.04432240501046181, + -0.024322116747498512, + -0.0044440701603889465, + -0.04148324951529503, + 0.015473409555852413, + -0.02963765151798725, + 0.031420011073350906, + -0.033438969403505325, + 0.010544315911829472, + -0.0017616578843444586, + 0.0028411292005330324, + -0.021893059834837914, + 0.007937811315059662, + 0.014739960432052612, + 0.005374683067202568, + 0.019385136663913727, + 0.0036258408799767494, + -0.04646754637360573, + 0.03489009290933609, + -0.004589971620589495, + -0.001665047719143331, + 0.01941668428480625, + 0.017587004229426384, + -0.008974893018603325, + 0.046562183648347855, + 0.017918240278959274, + -0.00625403318554163, + -0.03536328673362732, + 0.02553664520382881, + -0.00535891018807888, + -0.0219719260931015, + 0.008296649903059006, + -0.008083712309598923, + -0.028533535078167915, + -0.008604224771261215, + 0.03066290356218815, + 0.007231965661048889, + -0.019511321559548378, + -0.0021648576948791742, + -0.005481151398271322, + 0.0407576858997345, + 5.0245944294147193e-5, + -0.015733664855360985, + 0.013154763728380203, + 0.011482815258204937, + 0.0009340631659142673, + 0.00839917454868555, + -0.03093104623258114, + 0.003306435653939843, + -0.0064669703133404255, + 0.028265392407774925, + -0.0063092391937971115, + -0.011411836370825768, + 0.0050552780739963055, + 0.005847875960171223, + 0.030536718666553497, + 0.006265863310545683, + 0.01572577841579914, + -0.011806163936853409, + 0.021751102060079575, + -0.024558713659644127, + 0.04018985480070114, + -0.020268430933356285, + -0.04533188417553902, + -0.02421170473098755, + -0.02569437585771084, + 0.002519752364605665, + -0.015213153325021267, + 0.01943245716392994, + -0.008462266996502876, + 0.026609215885400772, + 0.044669412076473236, + 0.026782721281051636, + 0.01492135040462017, + 0.0010666557354852557, + 0.006186997517943382, + -0.013825120404362679, + 0.003306435653939843, + -0.0385809987783432, + 0.002874647034332156, + -0.03306041285395622, + 0.02340727671980858, + 0.0019026299705728889, + 0.018911944702267647, + -0.05580522119998932, + -0.005938571412116289, + -0.020063381642103195, + -0.02071007713675499, + 0.01714535802602768, + -0.021293682977557182, + -0.011790391057729721, + 0.03200361505150795, + 0.0011051027104258537, + -0.026640763506293297, + 0.003548947162926197, + 0.005004015285521746, + -0.007653895765542984, + -0.012681570835411549, + 0.009732001461088657, + 0.012373995035886765, + -0.033659789711236954, + -0.012926054187119007, + -0.01546552311629057, + 0.03201938793063164, + 0.00759869022294879, + -0.0018405233277007937, + -0.04996917396783829, + -0.0033498117700219154, + 0.026309527456760406, + -0.007413356099277735, + 0.01139606349170208, + -0.0032255984842777252, + 0.014479704201221466, + 0.013249401934444904, + -0.0229340847581625, + -0.00995282456278801, + 0.014787279069423676, + -0.010631067678332329, + -0.008107372559607029, + -0.023044496774673462, + -0.0031013854313641787, + 0.006565552204847336, + 0.002543412148952484, + -0.03466926887631416, + -0.032776497304439545, + 0.01609644666314125, + 0.03212980180978775, + -0.03416452929377556, + 0.010536429472267628, + 0.01358063705265522, + 0.010268286801874638, + 0.0025946747045964003, + 0.013785687275230885, + 0.03785543516278267, + 0.003686961717903614, + -0.019653279334306717, + 0.053754717111587524, + 0.03085217997431755, + -0.0004384428320918232, + -0.012492293491959572, + -0.02170378342270851, + -0.0012825500452890992, + 0.011750957928597927, + 0.005930684972554445, + 0.02332841232419014, + 0.018312565982341766, + -0.007787967100739479, + 0.011758844368159771, + 0.003964962437748909, + 0.004499276168644428, + -0.003927501384168863, + -0.009534837678074837, + -0.006821864750236273, + -0.0074488455429673195, + 0.013643729500472546, + 0.02178264781832695, + -0.0015802672132849693, + 0.02553664520382881, + -0.00934556033462286, + -0.012586932629346848, + 0.012460747733712196, + -0.015063309110701084, + -0.01821792870759964, + 0.0011080601252615452, + 0.0015211181016638875, + -0.006510346196591854, + 0.0021806308068335056, + -0.005291874520480633, + -0.017839374020695686, + 0.022413572296500206, + 0.0330919586122036, + 0.004960639402270317, + -0.017634322866797447, + -0.013375586830079556, + -0.02339150384068489, + -0.020788943395018578, + 0.021561825647950172, + 0.01197178103029728, + -0.0031408180948346853, + -0.006778488866984844, + 0.02427479811012745, + 0.009739887900650501, + -0.003174335928633809, + -0.0008502685814164579, + 0.005287931300699711, + 0.01304435171186924, + -0.03763461112976074, + 0.02258707582950592, + -0.04690919443964958, + 0.0019203746924176812, + 0.0026676252018660307, + -0.020930901169776917, + -0.018517617136240005, + -0.009243035688996315, + -0.03725605830550194, + 0.03618348762392998, + 0.004763475619256496, + -0.0459943525493145, + 0.00070584611967206, + 0.004085232503712177, + -0.0024014541413635015, + 0.00586759252473712, + 0.03561565652489662, + -0.0035095142666250467, + -0.023312639445066452, + -0.032902684062719345, + -0.016987627372145653, + 0.0028273279312998056, + -0.033123504370450974, + 0.01943245716392994, + -0.011009622365236282, + 0.02802879549562931, + 0.031420011073350906, + -0.03470081463456154, + 0.010260400362312794, + 0.01889617182314396, + 0.01982678472995758, + -0.0007684456068091094, + -0.02077317051589489, + -0.03151464834809303, + -0.01613587886095047, + -0.005489038303494453, + -0.02788683772087097, + 0.004546595737338066, + -0.008903914131224155, + 0.027255913242697716, + 0.0067193396389484406, + 0.014258881099522114, + 0.024322116747498512, + -0.015134287998080254, + -0.013588524423539639, + 0.013627956621348858, + -0.01543397642672062, + -0.014763619750738144, + 0.011120034381747246, + 0.012042759917676449, + 0.009243035688996315, + 0.01735040731728077, + -0.0009138538734987378, + -0.02015801891684532, + -0.018265247344970703, + 0.03466926887631416, + -0.012981259264051914, + -0.005579733289778233, + -0.001987410243600607, + -0.01170363835990429, + -0.0037559689953923225, + 0.006948049645870924, + -0.0043297153897583485, + -0.0037599122151732445, + 0.04047377035021782, + -0.007622349541634321, + -0.005406229291111231, + 0.0016127992421388626, + 0.01327306218445301, + -0.0012569187674671412, + -0.005721691530197859, + -0.008911800570786, + -0.005891252309083939, + -0.07747745513916016, + -0.015228926204144955, + -0.009463858790695667, + 0.023549234494566917, + 0.0005426931311376393, + 0.006948049645870924, + 0.014676867984235287, + 0.026057157665491104, + -0.00039087707409635186, + 0.031167641282081604, + 0.02394356206059456, + -0.01105694193392992, + 0.020079154521226883, + 0.03668822720646858, + 0.011506474576890469, + 0.015915056690573692, + -0.007961471565067768, + -0.004984299186617136, + 0.01377780083566904, + -0.024416755884885788, + 0.00022193242330104113, + 0.024322116747498512, + -0.0031033570412546396, + 0.0040497430600225925, + -0.022019244730472565, + 0.02145141363143921, + -0.015268359333276749, + -0.002760292263701558, + -0.0021372546907514334, + -0.046625278890132904, + 0.016640618443489075, + -0.005970117636024952, + -0.01098596304655075, + -0.005658599082380533, + 0.021877286955714226, + 0.029811155050992966, + 0.016640618443489075, + -0.010276173241436481, + 0.03567874804139137, + -0.005410172510892153, + 0.027508283033967018, + 0.010386585257947445, + 0.006411764305084944, + -0.024101294577121735, + -0.00344445020891726, + -0.015820417553186417, + -0.010142101906239986, + -0.016435567289590836, + -0.004676723387092352, + 0.003976792562752962, + 0.009250922128558159, + 0.013730482198297977, + 0.004144381731748581, + -0.026451485231518745, + -0.0015704090474173427, + 0.005047391168773174, + 0.022271614521741867, + -0.006112075410783291, + 0.02386469766497612, + 0.007977244444191456, + 0.051861945539712906, + 0.005232725292444229, + -0.02769755944609642, + -0.0068573541939258575, + -0.0010577833745628595, + 0.022098110988736153, + -9.266695269616321e-5, + 0.005201179068535566, + 0.014085376635193825, + -0.009889732114970684, + 0.0096452496945858, + -0.013769914396107197, + 0.018170608207583427, + 0.02097821980714798, + -0.00650245975703001, + 0.005366796627640724, + 0.02802879549562931, + 0.028990954160690308, + -0.005197235848754644, + -0.007626292761415243, + -0.02071007713675499, + -0.0016196999931707978, + 0.0031073002610355616, + -0.0048738871701061726, + -0.017366180196404457, + -0.020426161587238312, + -0.009440199472010136, + -0.02897518128156662, + 0.0027878950349986553, + 0.002657766919583082, + 0.030552491545677185, + -0.006116018630564213, + 0.04987453669309616, + 0.014479704201221466, + -0.01720844954252243, + 0.011995441280305386, + 0.0167983490973711, + 0.005989834200590849, + -0.0015851963544264436, + -0.008517473004758358, + 0.0011287623783573508, + -0.007969358004629612, + 0.01132508460432291, + -0.024369437247514725, + -0.01468475442379713, + -0.0004051714495290071, + 0.00017584540182724595, + 0.02582056075334549, + -0.012255697511136532, + -0.020063381642103195, + 0.019937196746468544, + 0.019747918471693993, + -0.024306343868374825, + 0.009534837678074837, + 0.001573366578668356, + 0.0060174367390573025, + -0.029196005314588547, + -0.006431480869650841, + -0.01391975861042738, + -0.0032453148160129786, + 0.0004290775686968118, + 0.02936950884759426, + -0.0013831035466864705, + -0.016356702893972397, + -0.007653895765542984, + 0.01307589840143919, + 0.004818681627511978, + -0.03249258175492287, + 0.006123905535787344, + 0.025568192824721336, + -0.003499656217172742, + -0.003683018498122692, + -0.007918095216155052, + 0.0073108309879899025, + -0.006995369214564562, + 0.008178351446986198, + 0.043186742812395096, + -0.010512770153582096, + -0.002929853042587638, + -0.03416452929377556, + -0.014779392629861832, + -0.007906265556812286, + 0.006810035090893507, + 0.011120034381747246, + -0.01041813101619482, + -0.014101149514317513, + 0.0031309600453823805, + -0.00484234094619751, + -0.002981115598231554, + -0.02137254737317562, + -0.009471745230257511, + 0.02116749808192253, + 0.024905722588300705, + -0.021561825647950172, + 0.00361401098780334, + -0.014574342407286167, + -0.01613587886095047, + 0.016908761113882065, + -0.014314086176455021, + -0.0057611241936683655, + -0.011072714813053608, + 0.007145213428884745, + -0.012090079486370087, + 0.001994311111047864, + 0.013209969736635685, + -0.020016061142086983, + 0.009424425661563873, + -0.0031349032651633024, + -0.02858085371553898, + -0.028754357248544693, + 0.00258087320253253, + -0.009755660779774189, + -0.015670573338866234, + -0.025994066148996353, + -0.00520906550809741, + -0.02850198745727539, + -0.017965558916330338, + -0.025457780808210373, + 0.010268286801874638, + 0.010773026384413242, + -0.0015152032719925046, + -0.010126329027116299, + -0.0018888284685090184, + 0.04378611966967583, + 0.00027627567760646343, + 0.006636531092226505, + -0.027981476858258247, + 0.0008788573322817683, + 0.015394543297588825, + -0.009739887900650501, + 0.020820489153265953, + 0.011774617247283459, + -0.0019233321072533727, + -0.012689457274973392, + -0.004148324951529503, + -0.0046254610642790794, + 0.02656189724802971, + 0.01071782037615776, + -0.007780080661177635, + -0.009069531224668026, + -0.015623253770172596, + -0.00793386809527874, + 0.014716300182044506, + 0.005437775515019894, + -0.005145973060280085, + 0.0013574722688645124, + -0.06990636885166168, + 0.004798965062946081, + 0.014329859986901283, + -0.014661095105111599, + 0.005354966968297958, + 0.004657007288187742, + 0.020142246037721634, + -0.017918240278959274, + 0.01700340025126934, + 0.0006225444376468658, + -0.008312422782182693, + -0.0217195563018322, + -0.003330095438286662, + -0.015402430668473244, + 0.04410158097743988, + 0.004960639402270317, + 0.01728731580078602, + -0.005863649304956198, + 0.0013239544350653887, + 0.01632515713572502, + 0.0035371172707527876, + -0.060063958168029785, + -0.02837580256164074, + 0.017902465537190437, + -0.014858257956802845, + 0.010938643477857113, + 0.01414846908301115, + -0.015386656858026981, + -0.011845597065985203, + -0.0009463859023526311, + 0.04047377035021782, + -0.005642825737595558, + 0.022366253659129143, + -0.013588524423539639, + -0.02870703861117363, + -0.019669054076075554, + -0.0027031146455556154, + -0.0006757786613889039, + 0.01996874250471592, + 0.014038057066500187, + -0.012523840181529522, + 0.0027819802053272724, + -0.012350335717201233, + 0.02285521849989891, + 0.016514433547854424, + -0.01018153503537178, + -0.033375874161720276, + -0.002549326978623867, + 0.007350263651460409, + 0.004112835507839918, + -0.003383329603821039, + -0.014006511308252811, + 0.021135952323675156, + -0.0009360347758047283, + 0.01263425126671791, + 0.004763475619256496, + 0.018943490460515022, + -0.016577526926994324, + 0.017965558916330338, + -0.018596483394503593, + 0.008935459889471531, + 0.013154763728380203, + 0.01828102022409439, + -0.0030185766518115997, + -0.006514289416372776, + 0.0018139062449336052, + -0.02373851276934147, + -0.036467403173446655, + 0.017445046454668045, + 0.009550610557198524, + 0.016782576218247414, + -0.002689313143491745, + -0.0167983490973711, + 0.02547355368733406, + -0.008872367441654205, + -0.002904221648350358, + -0.019952969625592232, + 0.0051104836165905, + 0.027792198583483696, + -0.007539540994912386, + 0.014077490195631981, + -0.002139226533472538, + 0.028060341253876686, + -0.024921495467424393, + 0.02473221719264984, + -0.0015960403252393007, + 0.02151450514793396, + 0.0010272229555994272, + 0.020205339416861534, + 0.009290354326367378, + 0.008604224771261215, + 0.002578901592642069, + 0.014779392629861832, + -0.005930684972554445, + 0.010244627483189106, + -0.006687793415039778, + -0.010039577260613441, + 0.004795021843165159, + -0.012389768846333027, + -0.0002342551451874897, + 0.006368388421833515, + -0.0015930829104036093, + 0.008974893018603325, + 0.016861442476511, + -0.0038900403305888176, + 0.0014185929903760552, + -0.04542652145028114, + -0.005339193623512983, + -0.0047555891796946526, + 0.0004335137491580099, + 0.03892800584435463, + 0.023170681670308113, + 0.00421536061912775, + -0.02831271104514599, + -0.02116749808192253, + -0.02662498876452446, + 0.01842297799885273, + 0.012933940626680851, + -0.046625278890132904, + -0.011403949931263924, + -0.009858186356723309, + -0.015875622630119324, + 0.024053974077105522, + -0.019400911405682564, + -0.023896243423223495, + 0.02272903360426426, + -0.030205482617020607, + -0.010008030571043491, + 0.017934013158082962, + -0.00411677872762084, + 0.002324560424312949, + -0.01970059983432293, + -0.03422762453556061, + 0.0005044926656410098, + 0.02749251015484333, + 0.032965775579214096, + -0.008367628790438175, + 0.02225584164261818, + 0.01728731580078602, + 0.012855075299739838, + 0.0050119017250835896, + 0.035868026316165924, + 0.04851805046200752, + 0.01735040731728077, + 0.0029219663701951504, + -0.004558425396680832, + -0.010914984159171581, + -0.0049172635190188885, + 0.023091815412044525, + 0.03239794448018074, + -0.016388248652219772, + 0.01605701446533203, + -0.028959408402442932, + -0.028470441699028015, + -0.03064712882041931, + -0.020599666982889175, + 0.012815642170608044, + 0.011348743923008442, + -0.0027287460397928953, + -0.0033261519856750965, + 0.01365161594003439, + -0.005295817740261555, + 0.00011589530186029151, + -0.016120105981826782, + 0.023565009236335754, + -0.006021379958838224, + 0.01552861463278532, + -0.009605816565454006, + -0.02151450514793396, + 0.014692640863358974, + -0.0035686634946614504, + 0.009101077914237976, + 0.002275269478559494, + 0.00866731721907854, + 0.017918240278959274, + 0.015489182434976101, + -0.03187743201851845, + -0.010907097719609737, + -0.004779248498380184, + 0.008288763463497162, + 0.013730482198297977, + 0.00850170012563467, + -0.0031841942109167576, + -0.007093950640410185, + 0.001167209236882627, + -5.2310002502053976e-5, + -0.009022211655974388, + 0.002002197550609708, + 0.015796758234500885, + 0.019732145592570305, + -0.03268186002969742, + 6.272271275520325e-5, + -0.038423266261816025, + -0.019858330488204956, + 0.008722523227334023, + 0.016482887789607048, + -0.018170608207583427, + 0.009164170362055302, + -0.013722595758736134, + 0.0219088327139616, + 0.015844076871871948, + 0.01509485486894846, + 0.0018562964396551251, + -0.015071195550262928, + 9.858186240307987e-5, + 0.02668808214366436, + -0.0034089607652276754, + -0.016766803339123726, + -0.03356515243649483, + -0.025300050154328346, + 0.004948809742927551, + 0.03804471343755722, + 0.022476665675640106, + -0.016482887789607048, + -0.016309384256601334, + 0.013131104409694672, + 0.022303160279989243, + -0.02306026965379715, + -0.004668836947530508, + 0.01634093001484871, + -0.010236741043627262, + -0.0030777256470173597, + -0.004720099736005068, + 0.005804500076919794, + 0.02850198745727539, + -0.012862961739301682, + 0.017650097608566284, + -0.0007886548992246389, + 0.009227262809872627, + -0.017634322866797447, + -0.01334404107183218, + -0.015568047761917114, + 0.004692496731877327, + -0.02648303098976612, + -0.024716444313526154, + -0.024180158972740173, + -0.0026952282059937716, + -0.012642137706279755, + 0.005106540396809578, + -0.005098653957247734, + 0.021624917164444923, + 0.008414947427809238, + 0.005883365403860807, + 0.02520541101694107, + -0.010205194354057312, + -0.03018970973789692, + 0.028864769265055656, + -0.009369220584630966, + 0.009590043686330318, + 0.012161058373749256, + -0.004337601829320192, + -0.01209796592593193, + -0.03085217997431755, + 0.010063236579298973, + 0.003659358713775873, + 0.005560017190873623, + -0.01941668428480625, + 0.0050119017250835896, + -0.017934013158082962, + 0.019732145592570305, + 0.0219719260931015, + -0.024227479472756386, + -0.018233701586723328, + 0.011443383060395718, + -0.028754357248544693, + -0.03523709997534752, + -0.01910122111439705, + 0.008225671015679836, + 0.019874103367328644, + -0.0023935677018016577, + -0.0071530998684465885, + -0.021609144285321236, + -0.00023265319759957492, + -0.002521723974496126, + 0.02347037009894848, + 0.009384993463754654, + 0.003931444603949785, + 0.020930901169776917, + 0.015323564410209656, + -0.021798420697450638, + 0.03517400845885277, + 0.003247286658734083, + -0.006293466314673424, + 0.03184588626027107, + -0.008020620793104172, + 0.014621661975979805, + -0.00014380628999788314, + 0.012910280376672745, + 0.00771698821336031, + -0.03716141730546951, + -0.0065813250839710236, + -0.006936219986528158, + 0.01862802915275097, + -0.0050355615094304085, + 0.019038129597902298, + -0.025426233187317848, + -0.03605730086565018, + -0.015157947316765785, + -0.0021569712553173304, + -0.017902465537190437, + -0.0025966463144868612, + 0.011648433282971382, + 0.009866072796285152, + -0.022429345175623894, + -0.004101005382835865, + -0.004024111665785313, + -0.021262135356664658, + 0.001869112136773765, + -0.020489254966378212, + -0.016892988234758377, + 0.013691049069166183, + 0.010236741043627262, + -0.015875622630119324, + -0.010473337024450302, + -0.0167983490973711, + -0.009164170362055302, + -0.01889617182314396, + -0.0006324026617221534, + -0.006179111078381538, + 0.009511178359389305, + 0.0008571692742407322, + 0.01482671219855547, + 0.0010050421115010977, + -0.00036154896952211857, + -0.009440199472010136, + 0.0013890184927731752, + -0.013864553533494473, + 0.009739887900650501, + 0.01935359090566635, + 0.01071782037615776, + 1.691295074124355e-5, + 0.00598589051514864, + -0.00857267901301384, + -0.01589139550924301, + -0.009992257691919804, + -0.007346320431679487, + 0.01327306218445301, + 0.012744663283228874, + -0.021814195439219475, + 0.0812629982829094, + 0.006273749750107527, + -0.00657343864440918, + 0.002149084582924843, + 0.008825048804283142, + -0.012255697511136532, + -0.008209897205233574, + 0.016041241586208344, + 0.016861442476511, + -0.01634093001484871, + 0.011806163936853409, + -0.0109544163569808, + 0.00591491162776947, + 0.0020781056955456734, + -0.024085519835352898, + 0.00839917454868555, + 0.025442007929086685, + 0.007811626885086298, + 1.1082757737312932e-5, + 0.015213153325021267, + 0.0073108309879899025, + -0.01223992370069027, + -0.008612111210823059, + 0.024637579917907715, + -0.011616886593401432, + 0.02736632525920868, + 0.0055994498543441296, + -0.00917994324117899, + 0.020394615828990936, + 0.017965558916330338, + 0.000109487482404802, + 0.011616886593401432, + -0.01760277710855007, + 0.012594819068908691, + -0.017650097608566284, + 0.012555385939776897, + 0.008446494117379189, + 0.020757397636771202, + -0.0013653588248416781, + 0.006746942643076181, + 0.008848708122968674, + -0.01146704237908125, + 0.016703709959983826, + 0.0043297153897583485, + -0.009282467886805534, + -0.02192460559308529, + 0.004589971620589495, + -0.008138918317854404, + 0.013714708387851715, + 0.0017419415526092052, + -0.012894507497549057, + -0.02353346161544323, + -0.01472418662160635, + -0.007823457010090351, + 0.010978076606988907, + 0.006999312434345484, + 0.012894507497549057, + -0.012113739736378193, + 0.009361334145069122, + 0.007366036996245384, + -0.029054047539830208, + -0.020252658054232597, + -0.0192904993891716, + -0.01761854998767376, + -0.02668808214366436, + -0.004148324951529503, + -0.02011070027947426, + -0.03239794448018074, + 0.011948121711611748, + -0.008154692128300667, + -0.0021293682511895895, + 0.02380160428583622, + -0.005713804624974728, + -0.034196075052022934, + -0.00679031852632761, + 0.018990810960531235, + 0.007665725890547037, + 0.0001887842663563788, + -0.01848607137799263, + 0.00528004439547658, + 0.0008261160110123456, + 0.002229921752586961, + -0.006127848755568266, + -0.013359813950955868, + -0.008888140320777893, + -0.0027484623715281487, + 0.01861225627362728, + -0.027997249737381935, + 0.007397583220154047, + -0.018454525619745255, + -0.012444973923265934, + -0.0002271079720230773, + 0.006967766210436821, + -0.010804572142660618, + -0.00581632973626256, + -0.0002110884088324383, + -0.021482959389686584, + -0.00145408243406564, + 0.013698935508728027, + 0.0009877902921289206, + 0.015820417553186417, + -0.005567903630435467, + -0.003933416213840246, + 0.013391360640525818, + -0.015615367330610752, + -0.009172056801617146, + 0.011790391057729721, + 0.02130945585668087, + -0.028549307957291603, + 0.0033576982095837593, + -0.002362021477892995, + -0.01593082956969738, + 0.011230445466935635, + 0.007322660647332668, + -0.02031574957072735, + 0.019400911405682564, + 0.01708226464688778, + -0.015386656858026981, + -0.015670573338866234, + -0.014716300182044506, + 0.0013111387379467487, + 0.0026439656503498554, + 0.023833151906728745, + -0.005232725292444229, + 0.0017567287432029843, + -0.0010853862622752786, + -0.008659430779516697, + -0.009440199472010136, + -0.013572750613093376, + -0.00326108792796731, + 0.019116993993520737, + 0.0077406479977071285, + 0.03265031427145004, + 0.009282467886805534, + 0.00934556033462286, + -0.007267455104738474, + -0.007164929993450642, + 0.009503291919827461, + 0.017665870487689972, + -0.008919687010347843, + 0.023296866565942764, + -0.004968525841832161, + -0.008446494117379189, + 0.007511937990784645, + 0.006707509979605675, + 0.0141169223934412, + 0.001968679716810584, + -0.0033754429314285517, + 0.021546052768826485, + -0.009558496996760368, + 0.03725605830550194, + -0.028076114133000374, + 0.004680667072534561, + -0.013754141516983509, + 0.002421170473098755, + 0.0016394163249060512, + -0.01733463443815708, + 0.02250821143388748, + -0.02085203491151333, + 0.018438750877976418, + -0.007768251001834869, + 0.014282540418207645, + -0.0031427897047251463, + -0.0033714997116476297, + -0.010654727928340435, + 0.016498660668730736, + 0.013422906398773193, + 0.023817377164959908, + 0.022776354104280472, + -0.0014619689900428057, + -0.019952969625592232, + 0.006009550299495459, + 0.0022318933624774218, + -0.040978509932756424, + 0.01071782037615776, + -0.0075868600979447365, + 0.0070584611967206, + -0.0037579406052827835, + -0.013833006843924522, + 0.008280876092612743, + -0.011711525730788708, + -0.001492529409006238, + 0.012784096412360668, + 0.0056033930741250515, + 0.0029968887101858854, + -0.0229340847581625, + 0.0033537549898028374, + -0.012689457274973392, + 0.007787967100739479, + 0.012295129708945751, + -0.028990954160690308, + 0.002194432308897376, + -0.0029397110920399427, + 0.00492120673879981, + -0.009361334145069122, + -0.005437775515019894, + 0.0147557333111763, + 0.017255770042538643, + 0.00954272411763668, + -0.0072911144234240055, + -0.0038092031609266996, + 0.021072858944535255, + 0.01526047196239233, + 0.002953512594103813, + -0.006108132191002369, + 0.0025651000905781984, + -0.0031013854313641787, + -0.011774617247283459, + -0.004972469061613083, + 0.016577526926994324, + -0.04504796862602234, + -0.024889947846531868, + 0.011388177052140236, + 0.017098037526011467, + -0.023438824340701103, + 0.021199043840169907, + -0.0015792814083397388, + 0.006459083873778582, + 0.015118514187633991, + 0.00961370300501585, + 0.01815483532845974, + 0.01014998834580183, + 0.018438750877976418, + -0.010331379249691963, + -0.0029199947603046894, + -0.011601113714277744, + 0.0010725706815719604, + 0.00503950472921133, + 0.01835988648235798, + 0.010410244576632977, + 0.029227551072835922, + -0.0034917695447802544, + -0.007803740445524454, + 0.01968482695519924, + -0.01996874250471592, + 0.026798494160175323, + 0.01861225627362728, + -0.011790391057729721, + -0.013840893283486366, + 0.009424425661563873, + -0.01600969396531582, + 0.0016078702174127102, + -0.018722668290138245, + 0.0005205122288316488, + 0.017523912712931633, + -0.01908544823527336, + 0.0011731241829693317, + -0.004854171071201563, + 0.004069459158927202, + -3.182345608365722e-5, + -0.004609687719494104, + -0.008115258999168873, + -0.009897619485855103, + 0.015110627748072147, + 0.010883437469601631, + -0.0049172635190188885, + -0.016640618443489075, + 0.009479631669819355, + -0.007389696314930916, + -0.01700340025126934, + 0.0026124194264411926, + 0.00813103187829256, + -0.000882307649590075, + 0.0065813250839710236, + -0.0011425637640058994, + 0.018407205119729042, + 0.0003332066989969462, + 0.003521344158798456, + 0.02493726834654808, + 0.00492120673879981, + 0.012358222156763077, + 0.004704326391220093, + 0.014077490195631981, + 0.01445604395121336, + -0.0067390562035143375, + 0.0018829136388376355, + 0.013635843060910702, + -0.015946602448821068, + -0.0011711525730788708, + 0.00823355745524168, + -0.006865241099148989, + 0.0016778632998466492, + -0.001883899443782866, + -0.01862802915275097, + 0.009526951238512993, + -0.030946819111704826, + -0.012744663283228874, + 0.0013515573227778077, + 0.0018040480790659785, + 0.0017310974653810263, + -0.019984515383839607, + -0.022019244730472565, + 0.013793574646115303, + -0.01109637413173914, + 0.007693328429013491, + 0.006230373866856098, + -0.015504955314099789, + 0.007338433992117643, + 0.00037239299854263663, + 0.01509485486894846, + 0.004254793282598257, + -0.002419198863208294, + -0.01341501995921135, + -0.017303088679909706, + -0.006364445202052593, + -0.000390137720387429, + 0.01334404107183218, + 0.014976556412875652, + -0.0008591409423388541, + 0.01889617182314396, + 0.004881774075329304, + -0.0020228999201208353, + 0.021262135356664658, + 0.0007452788995578885, + -0.008107372559607029, + 0.0009932122193276882, + -0.0018385517178103328, + 0.01659329980611801, + 5.468212839332409e-5, + 0.005063164513558149, + -0.012784096412360668, + 0.0005791684379801154, + 0.01014998834580183, + 0.00023795197193976492, + 0.008454380556941032, + 0.03911728411912918, + 0.018375659361481667, + 0.01802865043282509, + -0.003044207813218236, + -0.015157947316765785, + 0.011332971043884754, + -7.165669376263395e-5, + -0.01041813101619482, + -0.014905577525496483, + -0.00023031188175082207, + 0.010631067678332329, + -0.014858257956802845, + 0.0005535371601581573, + -0.01774473488330841, + 0.006009550299495459, + -0.01246863417327404, + -0.016971852630376816, + -0.014211561530828476, + -0.005942514631897211, + 0.011380290612578392, + 0.031356919556856155, + 0.0032689746003597975, + 0.001584210549481213, + 0.01627783663570881, + 0.016640618443489075, + 0.016309384256601334, + 0.0036514722742140293, + 0.015552274882793427, + -0.012500179931521416, + -0.011372404173016548, + 0.017050718888640404, + 0.01029194612056017, + 0.017050718888640404, + 0.0010222939308732748, + 0.00041083991527557373, + -0.023154908791184425, + 0.0021766875870525837, + -0.007220135536044836, + -0.007693328429013491, + -0.009708342142403126, + 0.023612327873706818, + -0.001775459386408329, + 0.011782504618167877, + -0.02400665543973446, + 0.008115258999168873, + 0.003878210438415408, + -0.018170608207583427, + -0.008967006579041481, + -0.005481151398271322, + -0.02924332395195961, + 0.0036790750455111265, + -0.005642825737595558, + 0.013833006843924522, + -0.014243107289075851, + 0.01749236509203911, + 0.022602848708629608, + 0.024590259417891502, + -0.004791078623384237, + -0.006766659207642078, + 0.018501844257116318, + 0.020394615828990936, + 0.006407821085304022, + 0.01815483532845974, + 0.0010518684284761548, + -0.006597098428755999, + -0.0054693217389285564, + 0.002683398313820362, + 0.00028194411424919963, + -0.008312422782182693, + -0.003523315768688917, + -0.005725634749978781, + -0.041577886790037155, + 0.027145501226186752, + -0.004000451881438494, + -0.013588524423539639, + -0.008225671015679836, + -0.008675203658640385, + 0.017934013158082962, + 0.009858186356723309, + -0.004459843505173922, + -0.014897691085934639, + -0.023423051461577415, + 0.014708413742482662, + 0.02749251015484333, + -0.012823528610169888, + -0.015473409555852413, + -0.005981947295367718, + -0.0032334851566702127, + -0.0038860971108078957, + 0.009637363255023956, + -0.007847116328775883, + 0.008217783644795418, + 0.007578973658382893, + 0.016861442476511, + 0.014613775536417961, + 0.018202155828475952, + 0.009321901015937328, + 0.005725634749978781, + -0.009353446774184704, + 0.02089935541152954, + 0.003363613272085786, + 0.030221255496144295, + -0.010370812378823757, + -0.01166420616209507, + 0.022019244730472565, + 0.01640402153134346, + -0.02763446792960167, + 0.006750885862857103, + 0.016167424619197845, + -0.026262208819389343, + -0.008209897205233574, + 0.027319006621837616, + -0.005106540396809578, + 0.0013683162396773696, + 0.01590717025101185, + -0.01603335328400135, + -0.005832103081047535, + -0.005512697622179985, + 0.005240611732006073, + 0.014109035953879356, + -0.0027918382547795773, + 0.010883437469601631, + 0.0012953656259924173, + 0.01761854998767376, + 0.018139062449336052, + -0.006474856752902269, + 0.007807683665305376, + 0.0019952969159930944, + 0.006202770862728357, + -0.026341073215007782, + 0.005812386516481638, + 0.001975580584257841, + 0.001075528096407652, + 0.023012949153780937, + -0.04678300768136978, + 0.015733664855360985, + 0.004164097830653191, + 0.011340857483446598, + 0.008170465007424355, + -0.001475770492106676, + -0.006238260306417942, + 0.007511937990784645, + 0.011750957928597927, + 0.0012263583485037088, + 0.020047606900334358, + -0.01448759064078331, + 0.019337818026542664, + 0.0192274060100317, + -0.007807683665305376, + 0.0030796974897384644, + 0.01941668428480625, + -0.003556833602488041, + 0.0023482199758291245, + 0.018927717581391335, + -0.02011070027947426, + -0.011309311725199223, + 0.0009828611509874463, + -0.016924533993005753, + 0.004814738407731056, + 0.01883307844400406, + -0.0025118659250438213, + -0.009653136134147644, + 0.023076042532920837, + -0.0019312186632305384, + -0.007815569639205933, + 0.010315606370568275, + 0.013202083297073841, + 0.01988987624645233, + -0.0044440701603889465, + 0.005926741752773523, + -0.013028578832745552, + 0.016782576218247414, + 0.019590187817811966, + -0.0007625307189300656, + -0.016025466844439507, + 0.011545907706022263, + -0.00069105887087062, + -0.010536429472267628, + 0.011348743923008442, + 0.00961370300501585, + 0.019527096301317215, + -0.013825120404362679, + 0.01395130529999733, + 0.01018153503537178, + 0.007835286669433117, + 0.008123145438730717, + 0.00031965167727321386, + -0.015071195550262928, + 0.0037342810537666082, + -0.011530134826898575, + -0.0029475977644324303, + 0.021325228735804558, + 0.007866832427680492, + 0.01341501995921135, + -0.008604224771261215, + -0.019243178889155388, + -0.01712958514690399, + -0.0037125928793102503, + 0.009763548150658607, + 0.033849067986011505, + -0.020016061142086983, + 0.012563272379338741, + -0.01297337282449007, + -0.005863649304956198, + -0.0030047751497477293, + -0.003746110713109374, + 0.0228709913790226, + -0.004491389729082584, + -0.020725850015878677, + 0.025158090516924858, + 0.026609215885400772, + 0.024826856330037117, + 0.01861225627362728, + 0.020205339416861534, + -0.01529201865196228, + 0.01708226464688778, + -0.0032216552644968033, + 0.026341073215007782, + -0.006116018630564213, + -0.003988622222095728, + -0.02735055238008499, + -0.00749616464599967, + 0.005784783512353897, + 0.0003021534066647291, + 0.011380290612578392, + -0.02528427541255951, + 0.001271706074476242, + 0.0309152714908123, + 0.011585340835154057, + 0.005437775515019894, + -0.006794262211769819, + -0.0003935880959033966, + 0.0046215178444981575, + -0.015102741308510303, + 0.02238202653825283, + -0.019385136663913727, + -0.0005195264238864183, + -0.018328340724110603, + -0.003115186933428049, + -0.024416755884885788, + -0.000172764717717655, + 0.017587004229426384, + 0.01875421404838562, + 0.0019055873854085803, + 0.014266767539083958, + -0.0009941981406882405, + -0.013020692393183708, + 0.011522248387336731, + 0.023012949153780937, + -0.0016078702174127102, + 0.002229921752586961, + -0.011695751920342445, + -0.018407205119729042, + 0.029495693743228912, + -0.015355111099779606, + -0.001990367891266942, + 0.0018977008294314146, + -0.037350695580244064, + -0.00249609281308949, + -0.018470298498868942, + 0.021199043840169907, + 0.011135807260870934, + -0.00232653203420341, + 0.0319405235350132, + -0.025710150599479675, + 0.02372273989021778, + -0.00630529597401619, + -0.01519738044589758, + -0.0013811319367960095, + 0.021814195439219475, + 0.000550579687114805, + -0.006116018630564213, + 0.009203602559864521, + -0.013186310417950153, + -0.0025631284806877375, + -0.013982851058244705, + -0.008754068985581398, + -0.0002314209268661216, + 0.0034050175454467535, + 0.023848924785852432, + 0.0013407133519649506, + -0.006009550299495459, + -0.009992257691919804, + -0.005264271516352892, + -0.01526047196239233, + -0.008225671015679836, + -0.003779628546908498, + -0.0090064387768507, + -0.017776280641555786, + 0.0020228999201208353, + -0.006869184318929911, + 0.017239995300769806, + 0.011506474576890469, + 0.03959047794342041, + 0.01526047196239233, + 0.016908761113882065, + 0.019653279334306717, + 0.006198827642947435, + 0.015710005536675453, + 0.01212951261550188, + -0.01589139550924301, + -0.0007280270801857114, + -0.0016778632998466492, + 0.0017764451913535595, + -0.030946819111704826, + 0.001448167604394257, + 0.010552202351391315, + -0.006892843637615442, + -0.019038129597902298, + 0.006261920090764761, + 0.007231965661048889, + -0.013698935508728027, + -0.01071782037615776, + 0.012026987038552761, + -0.03198784217238426, + 0.006021379958838224, + -0.0038446926046162844, + -0.006321068853139877, + -0.006731169763952494, + 0.01595448888838291, + 0.000492169929202646, + -0.013596410863101482, + 0.0017448989674448967, + -0.0058794221840798855, + 0.027177048847079277, + -0.014093263074755669, + 0.009661022573709488, + -0.01962173357605934, + 0.021893059834837914, + 0.006928333546966314, + -0.01982678472995758, + 0.011695751920342445, + -0.0360257551074028, + 0.044606320559978485, + 0.01572577841579914, + -0.013903985731303692, + -0.02116749808192253, + -0.008848708122968674, + -0.01032349281013012, + -0.0024053973611444235, + -0.021672237664461136, + 0.02656189724802971, + 0.00944808591157198, + 0.00484234094619751, + -0.009211488999426365, + -0.0025276390369981527, + 0.0035331740509718657, + -0.03130960091948509, + 0.013399247080087662, + 0.005213008727878332, + -0.004578141495585442, + -0.01358063705265522, + -0.0037618838250637054, + 0.024684898555278778, + -0.01546552311629057, + -0.005970117636024952, + 0.007787967100739479, + 0.004633347503840923, + -0.014392952434718609, + -1.606576370249968e-5, + -0.0021628860849887133, + -0.006699623540043831, + 0.005753237288445234, + -0.006143621634691954, + -0.004006366711109877, + -0.01526047196239233, + 0.0038604657165706158, + -0.0064038778655231, + 0.003207853762432933, + -0.0017301116604357958, + -2.298189610883128e-5, + -0.017839374020695686, + -0.029700743034482002, + -0.016687937080860138, + -0.005303704179823399, + -0.014400838874280453, + -0.0043060556054115295, + -0.0023107589222490788, + -0.013620070181787014, + -0.01263425126671791, + -0.004069459158927202, + 0.015378770418465137, + 0.001926289638504386, + 0.014716300182044506, + -0.0018612255807965994, + 0.008659430779516697, + 0.010670500807464123, + -0.009976484812796116, + -0.00968468189239502, + -0.022397799417376518, + -0.02446407452225685, + 0.01941668428480625, + -0.0028115548193454742, + -0.0109544163569808, + 0.018580708652734756, + 0.003247286658734083, + 0.002060360973700881, + -0.0016443454660475254, + 0.0037145644892007113, + 0.006388104520738125, + -0.012665797956287861, + 0.0018996725557371974, + 0.016482887789607048, + -0.007460675202310085, + -0.026467258110642433, + 0.012484407052397728, + -0.006758772302418947, + 0.018375659361481667, + 0.004274509381502867, + -0.004219303838908672, + -0.017224222421646118, + 0.008257216773927212, + 0.01365161594003439, + -0.0020524743013083935, + 0.011285651475191116, + -0.017050718888640404, + -0.03523709997534752, + -0.01546552311629057, + 0.012421314604580402, + 0.011151580139994621, + -0.00679031852632761, + -0.00026419939240440726, + 0.007216192316263914, + -0.018643802031874657, + 0.01250806637108326, + -0.008414947427809238, + -0.013698935508728027, + 0.0009582157363183796, + -0.0013702878495678306, + -0.004471673164516687, + -0.004708269611001015, + 0.021151725202798843, + 0.00317630753852427, + -0.006798205431550741, + 0.00914839655160904, + 0.009424425661563873, + -0.003499656217172742, + 0.0008522401913069189, + 0.018911944702267647, + -8.299360342789441e-5, + 0.03085217997431755, + 0.007275341544300318, + -0.00823355745524168, + 0.0005136114777997136, + 0.018643802031874657, + 0.0114354956895113, + -0.012760436162352562, + -0.008517473004758358, + -0.020615439862012863, + -0.005276101175695658, + -0.014834598638117313, + -0.011104261502623558, + 0.012681570835411549, + 0.014053829945623875, + 0.013840893283486366, + 0.0013091671280562878, + 0.006222486961632967, + -0.014968669973313808, + -0.013107444159686565, + -0.013217856176197529, + -0.0267669465392828, + 0.015008103102445602, + 0.004164097830653191, + 0.023691194131970406, + 0.011956008151173592, + 0.009866072796285152, + 0.0016275865491479635, + -0.0020524743013083935, + -0.010433904826641083, + 0.01741350069642067, + -0.002170772524550557, + 0.002634107368066907, + -0.01883307844400406, + -0.021057086065411568, + -0.015079081989824772, + -0.0015319621888920665, + 0.005993777420371771, + -0.00013111387670505792, + -0.01377780083566904, + -0.016908761113882065, + 0.03140423819422722, + -0.01297337282449007, + -0.005686202086508274, + -0.0022082338109612465, + 0.0018444666638970375, + 0.010544315911829472, + -0.004250850062817335, + -0.005201179068535566, + 0.0007832329138182104, + 0.006758772302418947, + 0.013501771725714207, + -0.005382569506764412, + -0.012910280376672745, + 0.01593082956969738, + 0.02938528172671795, + -0.013454453088343143, + -0.008170465007424355, + 0.007855002768337727, + -0.016183199360966682, + -0.024889947846531868, + 0.00873829610645771, + 0.0005707889795303345, + -0.018186382949352264, + -0.0058794221840798855, + -0.012799869291484356, + -0.017176903784275055, + 0.005153859965503216, + 0.0015112599357962608, + 0.007969358004629612, + 0.008761956356465816, + -0.012444973923265934, + -0.013225742615759373, + 0.0032453148160129786, + 0.00903798546642065, + 0.0019529067212715745, + -0.009771434590220451, + -0.025442007929086685, + 0.004901490174233913, + -0.0001540341618238017, + -0.006526119541376829, + -0.010339265689253807, + -0.013990738429129124, + -0.009463858790695667, + -0.0005786755355075002, + -0.00596617441624403, + -0.0014836570480838418, + 0.00995282456278801, + 0.004455900285393, + 0.01706649176776409, + -0.03258721902966499, + 0.001301280572079122, + -0.004976412281394005, + 0.002711001317948103, + -0.007657838985323906, + 0.008604224771261215, + 0.007480391766875982, + 0.011159466579556465, + -0.001981495413929224, + -0.007401526439934969, + 0.025773242115974426, + -0.00813103187829256, + -0.010938643477857113, + -0.02394356206059456, + 0.0026695968117564917, + -0.011183126829564571, + -0.005023731850087643, + 0.006711453199386597, + -0.002677483484148979, + -0.0004961132071912289, + 0.006884957198053598, + 0.0036475288216024637, + 0.014448157511651516, + -0.01284718792885542, + -0.0017064519925042987, + 0.014329859986901283, + 0.007066348101943731, + -0.00613573519513011, + -0.007263511884957552, + 0.028612399473786354, + -0.022350480780005455, + 0.005015845410525799, + 0.03489009290933609, + -0.03356515243649483, + -0.0006752857589162886, + 0.026309527456760406, + 0.005228782072663307, + 0.0013219828251749277, + -0.005126256961375475, + -0.005319477524608374, + 0.0005998706328682601, + -0.023044496774673462, + 0.01962173357605934, + 0.00579661363735795, + -0.007705158554017544, + 0.006873127538710833, + 0.008016676642000675, + 0.005887308623641729, + -0.004775305278599262, + 0.004041856154799461, + -0.013793574646115303, + 0.0031841942109167576, + -0.04996917396783829, + 0.003036321373656392, + -0.01197178103029728, + 0.01465320773422718, + -0.009779321029782295, + -0.0018060196889564395, + 0.0011494645150378346, + -0.007669669110327959, + 0.004716156516224146, + 0.0044677299447357655, + 0.00864365790039301, + -0.010812458582222462, + -0.006029266864061356, + -0.02930641546845436, + -0.01667216420173645, + 0.01646711491048336, + 0.008967006579041481, + 0.03703523427248001, + 0.008438607677817345, + -0.009550610557198524, + -0.005650712177157402, + -0.015512841753661633, + 0.0061554512940347195, + -0.005678315181285143, + 0.003686961717903614, + -0.02003183402121067, + 0.02419593185186386, + -0.00857267901301384, + -0.006009550299495459, + -0.0013633872149512172, + 0.003856522496789694, + -0.016640618443489075, + -0.004747702740132809, + 0.004495332948863506, + 0.02373851276934147, + 0.01589139550924301, + 0.00012704737309832126, + -0.027602922171354294, + -0.0014067632146179676, + 0.009921278804540634, + 0.008107372559607029, + -0.0040300264954566956, + -0.02009492740035057, + 0.0072911144234240055, + -0.007271398324519396, + 0.00413649482652545, + 0.018044423311948776, + 0.004010310396552086, + -0.0003812653594650328, + -0.004641233943402767, + 0.0018789703026413918, + -0.008982779458165169, + -0.009140510112047195, + -0.026971997693181038, + 0.017634322866797447, + -0.016104333102703094, + 0.025583965703845024, + -0.017192676663398743, + 0.01048910990357399, + -0.006565552204847336, + 0.0014008482685312629, + -0.004862057510763407, + -0.006179111078381538, + -0.005662542302161455, + 0.02755560167133808, + 0.007851059548556805, + 0.00650245975703001, + 0.025394687429070473, + 0.01694030687212944, + 0.01714535802602768, + -0.0071767596527934074, + 0.019574414938688278, + -0.024369437247514725, + -0.001248046406544745, + -0.018738441169261932, + -0.004582085181027651, + 0.01287873461842537, + -0.009314014576375484, + 0.029085593298077583, + -0.005299760960042477, + 0.015536502003669739, + -0.0026932565961033106, + 0.011206786148250103, + -0.008612111210823059, + -0.015986034646630287, + -0.015118514187633991, + 0.003937359433621168, + 0.017508137971162796, + -0.018265247344970703, + -0.007239852100610733, + 0.022208523005247116, + 0.023754285648465157, + 0.022476665675640106, + 0.009511178359389305, + 0.009243035688996315, + 0.016293609514832497, + 8.250069367932156e-5, + -0.004491389729082584, + 0.01518949307501316, + -0.020946674048900604, + 0.003799345111474395, + 0.023281091824173927, + -0.040694594383239746, + 0.011908688582479954, + 0.008604224771261215, + 0.002089935587719083, + -0.034448444843292236, + 0.0013762027956545353, + -0.008959120139479637, + 0.03719296678900719, + 0.020426161587238312, + 0.0067193396389484406, + -0.014400838874280453, + 0.002363993087783456, + -0.014306199736893177, + 0.017776280641555786, + -0.003446421818807721, + 0.005556073971092701, + 0.0005348066333681345, + -0.010362925007939339, + -0.01122255902737379, + -0.01895926333963871, + -0.035994209349155426, + -0.032965775579214096, + 0.015986034646630287, + -0.001970651326701045, + 0.018123289570212364, + -0.0011465071002021432, + -0.01794978603720665, + 0.005433832295238972, + -0.01098596304655075, + 0.017728962004184723, + -0.007638122886419296, + 0.009124737232923508, + 0.007649952545762062, + -0.003442478599026799, + 0.01774473488330841, + 0.015347224660217762, + -0.0024822913110256195, + -0.011798277497291565, + 0.008249330334365368, + -0.007858945988118649, + 0.014976556412875652, + 0.02110440470278263, + -0.014266767539083958, + -0.0018543248297646642, + 0.007835286669433117, + -0.006210657302290201, + 0.0022397800348699093, + 0.002200347138568759, + -0.0029259095899760723, + 0.027255913242697716, + 0.0038052599411457777, + 0.02749251015484333, + -0.00850170012563467, + 0.009834527038037777, + -0.00823355745524168, + -0.03665668144822121, + 0.010213080793619156, + 0.013485998846590519, + -0.020331524312496185, + 0.01768164336681366, + -0.00022205564891919494, + -0.003253201488405466, + -0.004787135403603315, + 0.01875421404838562, + 0.005571846850216389, + -0.003633727552369237, + -0.015031762421131134, + 0.014014397747814655, + 0.003363613272085786, + -0.0005786755355075002, + -0.01760277710855007, + 0.01788669265806675, + 0.007989074103534222, + -0.007050574757158756, + -0.010725706815719604, + 0.0023009006399661303, + 0.008446494117379189, + -0.016451342031359673, + 0.0006259948131628335, + -0.008257216773927212, + -0.00176461529918015, + -0.015339338220655918, + 0.008083712309598923, + -0.019716372713446617, + 0.015780985355377197, + 0.011009622365236282, + 0.012531726621091366, + -0.005721691530197859, + -0.00722802197560668, + 0.014156355522572994, + 0.022224295884370804, + 0.0017054661875590682, + 0.0070150853134691715, + 0.029621878638863564, + -0.007318717427551746, + -0.00032113041379489005, + -0.007200419437140226, + -0.006293466314673424, + -0.005047391168773174, + 0.0069007305428385735, + -0.020741624757647514, + -0.012886621057987213, + -0.02796570211648941, + -0.01694030687212944, + -0.03119918890297413, + 0.0034838831052184105, + 0.009637363255023956, + -0.0026124194264411926, + -0.013525431975722313, + 0.014913463965058327, + -2.2627618818660267e-5, + 0.0318143405020237, + 0.007709101773798466, + 0.004175927489995956, + 0.006250089965760708, + -0.00813103187829256, + -0.0037816001567989588, + 0.003765827277675271, + -0.0008192152599804103, + -0.01694030687212944, + -0.0062895226292312145, + -0.009700455702841282, + 0.004700383171439171, + 0.00722802197560668, + -0.0026163626462221146, + 0.007748534437268972, + 0.01350965816527605, + 0.009116850793361664, + 0.009227262809872627, + -0.012563272379338741, + 0.020142246037721634, + -0.009124737232923508, + 0.009432313032448292, + 0.02063121274113655, + 0.019605960696935654, + 0.01129353791475296, + -0.005067107733339071, + 0.005362853407859802, + 0.014858257956802845, + 0.01125410571694374, + 0.0009577227756381035, + 0.0048936037346720695, + -0.014258881099522114, + -0.003959047608077526, + 0.01842297799885273, + -0.00023499451344832778, + -0.035394832491874695, + -0.0030816690996289253, + -0.01441661175340414, + -0.004629404284060001, + -0.018533390015363693, + 0.013833006843924522, + 0.00914839655160904, + -0.011766730807721615, + -0.019779464229941368, + 0.01182982325553894, + 0.014258881099522114, + 0.010536429472267628, + -0.007086064200848341, + 0.006577381864190102, + 0.003363613272085786, + -0.009211488999426365, + 0.004298169165849686, + -0.022098110988736153, + -0.003548947162926197, + 0.010962302796542645, + 0.016766803339123726, + 0.006936219986528158, + 0.015276245772838593, + 0.0025927030947059393, + 0.003686961717903614, + -0.022082338109612465, + -0.024164386093616486, + -0.010670500807464123, + -0.015276245772838593, + -0.000854704761877656, + 0.023233773186802864, + 0.011112147942185402, + -0.024621805176138878, + 0.016687937080860138, + 0.00045914502697996795, + -0.0033005208242684603, + 0.03441689908504486, + -0.0038683523889631033, + -0.01749236509203911, + 0.00888025388121605, + 0.0003095470601692796, + -0.028076114133000374, + -0.005319477524608374, + 0.014881918206810951, + -0.0012381882406771183, + 0.01304435171186924, + -0.017176903784275055, + 0.004412524402141571, + 0.018975036218762398, + -0.004692496731877327, + -0.01963750645518303, + 0.002815498039126396, + 0.0077209314331412315, + 0.007925981655716896, + -0.0141169223934412, + 0.01518949307501316, + -0.008935459889471531, + 0.0008300592890009284, + -0.016143765300512314, + 0.017571231350302696, + -0.0044677299447357655, + 0.01943245716392994, + -0.010355038568377495, + -0.010907097719609737, + 0.011687865480780602, + 0.0020426162518560886, + 0.00571774784475565, + 0.015276245772838593, + 0.01835988648235798, + -0.008911800570786, + 0.016719484701752663, + 0.006356558296829462, + 0.013430792838335037, + -0.006009550299495459, + 0.020441934466362, + 0.007164929993450642, + -0.002145141363143921, + 0.000500549387652427, + -0.011459155939519405, + -0.009195716120302677, + -0.005244554951786995, + 0.00786288920789957, + -0.012113739736378193, + 0.018864626064896584, + -0.0022082338109612465, + 0.01572577841579914, + -0.004747702740132809, + -0.0013673304347321391, + 0.004952752962708473, + 0.003523315768688917, + -0.027460964396595955, + -0.0027464907616376877, + 0.005134143400937319, + -0.028612399473786354, + -0.000218974964809604, + -0.010386585257947445, + 0.006001663859933615, + -0.015126400627195835, + 0.01875421404838562, + -0.012642137706279755, + 0.010094782337546349, + 0.0063131824135780334, + -0.0077209314331412315, + -0.006356558296829462, + 0.007275341544300318, + 0.007066348101943731, + -0.009850299917161465, + -0.006569495424628258, + 0.033375874161720276, + 0.01741350069642067, + 0.0017182818846777081, + -0.003227570094168186, + -0.000678243231959641, + -0.023817377164959908, + -0.00247046141885221, + 0.013604297302663326, + -0.0023777945898473263, + 0.0063328989781439304, + 0.006360501982271671, + -0.0021530278027057648, + 0.0008749140542931855, + -0.02246089093387127, + 0.018454525619745255, + 0.013028578832745552, + 0.010694160126149654, + 0.006226430647075176, + 0.004361261613667011, + 0.007677555549889803, + -0.028123434633016586, + -0.02104131318628788, + -0.004471673164516687, + -0.0025355254765599966, + 0.05208276957273483, + 0.02722436748445034, + 0.007003255654126406, + -0.012697343714535236, + 0.000514597340952605, + -0.018911944702267647, + -0.0005131185753270984, + -0.006096302531659603, + -0.012342449277639389, + -0.001475770492106676, + 0.01044967770576477, + 0.0025355254765599966, + 0.013572750613093376, + 0.00450321938842535, + -0.01875421404838562, + 0.0066049848683178425, + 0.013446565717458725, + -0.010891323909163475, + 0.014006511308252811, + 0.0041680410504341125, + 7.03628029441461e-5, + 0.0010321520967409015, + -0.027587149292230606, + 0.0192274060100317, + 0.009605816565454006, + 0.006971709430217743, + -0.008154692128300667, + -0.014337746426463127, + -0.017508137971162796, + -0.01875421404838562, + 0.005457492079585791, + 8.502685886924155e-6, + -0.029890021309256554, + 0.0021372546907514334, + -0.01075725257396698, + 0.012484407052397728, + -0.00101637898478657, + 0.008083712309598923, + 0.010276173241436481, + 0.0012559329625219107, + -0.005883365403860807, + -0.009124737232923508, + 0.011640545912086964, + -0.02662498876452446, + -0.005134143400937319, + -0.0024251139257103205, + -0.008493813686072826, + -0.003961019217967987, + -0.01963750645518303, + -0.022555530071258545, + 0.011372404173016548, + -0.00876984279602766, + -0.014061717316508293, + -0.0031546195968985558, + -0.012870848178863525, + -0.006060813087970018, + 0.015875622630119324, + -0.029606105759739876, + 0.003205882152542472, + -0.010646841488778591, + -0.002582844812422991, + 0.02386469766497612, + 0.018202155828475952, + 0.016419794410467148, + -0.011427609249949455, + 0.009866072796285152, + 0.002793810097500682, + -0.009732001461088657, + 0.012034873478114605, + -0.011979668401181698, + 0.016214745119214058, + -0.01809174381196499, + -0.017571231350302696, + -0.003878210438415408, + -0.019937196746468544, + -0.014810939319431782, + -0.018312565982341766, + -0.01270523015409708, + -0.0061554512940347195, + 0.01568634621798992, + 0.001190868904814124, + -0.00884082168340683, + 0.004266622941941023, + -0.005489038303494453, + -0.014810939319431782, + 0.004104948602616787, + -0.007815569639205933, + -0.003748082322999835, + 0.019195860251784325, + 0.012657911516726017, + 0.00625403318554163, + -0.006443310528993607, + -0.011159466579556465, + -0.002251609694212675, + 0.009637363255023956, + -0.004400694277137518, + -0.02359655499458313, + -0.007527710869908333, + 0.006202770862728357, + 0.01014998834580183, + 0.0022417516447603703, + 0.008959120139479637, + -0.015418203547596931, + 0.016088560223579407, + -0.006924389861524105, + -0.030836407095193863, + 0.02083626203238964, + -0.000895123288501054, + -0.006802148651331663, + 0.0019952969159930944, + -0.016514433547854424, + 0.023643873631954193, + 0.005114426836371422, + 0.02077317051589489, + 0.0027070578653365374, + 0.011924462392926216, + 0.00048748732660897076, + -0.007618406321853399, + -0.006545835640281439, + 0.014077490195631981, + -0.003874267218634486, + 0.017445046454668045, + 0.014960783533751965, + 0.001328883459791541, + -0.007701215334236622, + -0.0030856123194098473, + -0.006640474312007427, + 0.020126473158597946, + -0.013478112407028675, + -0.017239995300769806, + -0.0008344954694621265, + 0.005126256961375475, + 0.0031329316552728415, + 0.010433904826641083, + -0.0003418326086830348, + -0.02023688517510891, + -0.014716300182044506, + -0.027602922171354294, + 0.017634322866797447, + -0.01236610859632492, + -0.015299905091524124, + 0.02225584164261818, + 0.011238332837820053, + -0.008564792573451996, + 0.018107516691088676, + -0.007500108331441879, + 0.0029968887101858854, + 0.006506402976810932, + -0.010615294799208641, + -0.002858873922377825, + 0.00759869022294879, + -0.00503950472921133, + -9.205081732943654e-5, + 0.0037559689953923225, + -0.0030244914814829826, + 0.029196005314588547, + -0.006052926182746887, + 0.003560776822268963, + -0.013888212852180004, + 0.017634322866797447, + 0.014511249959468842, + 0.0030540660955011845, + -0.0025118659250438213, + 0.015946602448821068, + -0.01361218374222517, + -0.007902322337031364, + -0.013604297302663326, + 0.0021865456365048885, + -0.006731169763952494, + -0.016514433547854424, + -0.0016749058850109577, + -0.011656319722533226, + -0.0016295581590384245, + -0.004802908282727003, + 0.0021254250314086676, + 0.0008266089134849608, + -0.000527412979863584, + -0.013525431975722313, + -0.03766615688800812, + -0.003548947162926197, + 0.01982678472995758, + 0.0002570522192399949, + 0.04457477480173111, + -0.0030974422115832567, + -0.034322261810302734, + 0.017224222421646118, + -0.0017616578843444586, + -0.001163266017101705, + 0.014716300182044506, + -0.02137254737317562, + 0.010142101906239986, + 0.02151450514793396, + -0.005946457851678133, + -0.003069839207455516, + -0.005252441857010126, + 0.013194196857511997, + 0.021561825647950172, + -0.010157874785363674, + -0.01667216420173645, + 0.009369220584630966, + 0.024511395022273064, + -0.0046254610642790794, + -0.024227479472756386, + -0.0010321520967409015 + ], + "7477f664-2d4d-4946-93fb-10f0f7c7fe2f": [ + -0.03684917464852333, + -0.029225723817944527, + -0.017798002809286118, + 0.05018648877739906, + -0.02574966661632061, + 0.00456885015591979, + 0.031687308102846146, + 0.013784874230623245, + 0.006650008261203766, + 0.0293450728058815, + 0.0007333470857702196, + -0.0012662241933867335, + -0.002994928043335676, + 0.01605251617729664, + 0.002793525578454137, + 0.029553934931755066, + -0.022348204627633095, + 0.006582874339073896, + 0.0038117265794426203, + -0.001089064753614366, + 0.06719379872083664, + -0.00982396025210619, + -0.025689993053674698, + -0.014060869812965393, + -0.015038044191896915, + -0.00047693203669041395, + -0.012643594294786453, + 0.0041101002134382725, + -0.00778755871579051, + 0.001207481836900115, + 0.019215278327465057, + -0.00013555033365264535, + 0.023079220205545425, + 0.028688650578260422, + 0.020975684747099876, + -0.06373266130685806, + -0.013837089762091637, + 0.010614651255309582, + -0.024541253224015236, + -0.040936898440122604, + -0.02510816417634487, + 0.05871998146176338, + -0.016723856329917908, + -0.0011506043374538422, + -0.03684917464852333, + -0.02430255338549614, + 0.011390423402190208, + 0.006258392706513405, + -0.01857377588748932, + 0.023317920044064522, + 0.018797555938363075, + 0.005504998378455639, + -0.028211252763867378, + 0.0055460250005126, + 0.019901538267731667, + -0.05394599959254265, + 0.028181415051221848, + 0.0779949352145195, + 0.01004774123430252, + -0.054900798946619034, + -0.022437717765569687, + -0.01004028134047985, + -0.008891542442142963, + -0.026614950969815254, + 0.0032168435864150524, + -0.013180666603147984, + -0.004553931765258312, + 0.017335522919893265, + -0.021960318088531494, + 0.005430405028164387, + 0.014493511989712715, + 0.04821722209453583, + -0.014665077440440655, + 0.03294047713279724, + -0.024451740086078644, + -0.010778756812214851, + 0.031269583851099014, + 0.005799642764031887, + 0.0239743422716856, + 0.004874683450907469, + 0.021691782400012016, + 0.027704017236828804, + 0.046039093285799026, + 0.04180218279361725, + 0.03261226788163185, + 0.014911235310137272, + -0.025869017466902733, + -0.046993888914585114, + -0.0018275401089340448, + -0.03562584146857262, + 0.019125767052173615, + 0.04574071988463402, + -0.007899449206888676, + -0.0064411466009914875, + -0.0021333734039217234, + 0.016962556168437004, + 0.05767567455768585, + -0.003826645202934742, + 0.019841864705085754, + 0.005937640555202961, + 0.010853350162506104, + 0.034909747540950775, + -0.009085484780371189, + 0.0055460250005126, + -0.009316724725067616, + -0.0010983889224007726, + -0.008630464784801006, + 0.014090707525610924, + -0.01073400117456913, + 0.022974791005253792, + 0.018722962588071823, + -0.05087275058031082, + 0.006444876082241535, + -0.004762793425470591, + 0.009063106961548328, + 0.0037427276838570833, + -0.022288529202342033, + -0.0009081755415536463, + 0.004072803538292646, + -0.02078174240887165, + 0.037386249750852585, + 0.004136207979172468, + 0.003325004130601883, + -0.013232882134616375, + -0.03338804095983505, + 0.031209910288453102, + -0.0046844701282680035, + -0.009801582433283329, + 0.02357153780758381, + 0.04338356480002403, + -0.0077800992876291275, + -0.02042369358241558, + 0.04496494680643082, + 0.008548412472009659, + -0.023153813555836678, + 0.0168133694678545, + 0.0014909370802342892, + 0.024063855409622192, + -0.024839626625180244, + 0.04535283148288727, + -0.060331203043460846, + -0.028106821700930595, + -0.016947638243436813, + 0.007015516050159931, + 0.0038863199297338724, + -0.009361481294035912, + -0.03294047713279724, + 0.033805761486291885, + -0.003375354688614607, + 0.0037930782418698072, + -0.01575414091348648, + -0.014821723103523254, + 0.020572880282998085, + -0.001140347681939602, + -0.014172759838402271, + -0.021527675911784172, + -0.01089064683765173, + -0.00856333039700985, + 0.00023730049724690616, + 0.08426079154014587, + -0.02043861150741577, + -0.04177234694361687, + -0.012210952118039131, + -0.0018918770365417004, + 0.04612860456109047, + -0.0025473672430962324, + 0.04970909282565117, + 0.026659708470106125, + 0.019543489441275597, + 0.0015198420733213425, + 0.02615247294306755, + -0.03395494818687439, + 0.01288975216448307, + 0.010614651255309582, + -0.01784275844693184, + -0.0372072234749794, + 0.05827242136001587, + 0.039892591536045074, + -0.008578249253332615, + -0.013329854235053062, + -0.01570938527584076, + -0.0029930630698800087, + 0.009085484780371189, + -0.03395494818687439, + -0.007000597659498453, + 0.025675073266029358, + 0.03622259199619293, + 0.03857974335551262, + 0.021617189049720764, + -0.006821573246270418, + -0.0037800243590027094, + -0.011867822147905827, + -0.021661944687366486, + 0.026331497356295586, + -0.011852903291583061, + -0.02105027809739113, + 0.014031032100319862, + 0.0056914822198450565, + 0.01500820741057396, + 0.04153364524245262, + -0.018021782860159874, + -0.03368641436100006, + -0.01575414091348648, + 0.047411613166332245, + -0.04260779172182083, + 0.05609429255127907, + -0.012039386667311192, + 0.010099956765770912, + 0.0020084292627871037, + -0.026600033044815063, + 0.017066987231373787, + -0.025257350876927376, + -0.009294346906244755, + 0.013911683112382889, + -0.03302999213337898, + 0.03010592609643936, + -0.00930180586874485, + 0.006650008261203766, + 0.02498881332576275, + -0.0217962134629488, + 0.007008057087659836, + 0.03857974335551262, + 0.026018204167485237, + -0.013135910965502262, + -0.05767567455768585, + -0.034492023289203644, + -0.00318141165189445, + 0.04230941832065582, + -0.033805761486291885, + 0.010159631259739399, + 0.038102347403764725, + -0.023332837969064713, + 0.04198120906949043, + -0.03825153410434723, + -0.023884830996394157, + 0.0005501268897205591, + 0.018394751474261284, + -0.02222885563969612, + 0.019424140453338623, + -0.03538714349269867, + 0.00778755871579051, + -0.010689244605600834, + 0.02683873288333416, + 0.00804863590747118, + -0.0027524991892278194, + 0.002991198329254985, + 0.02108011581003666, + 0.047053564339876175, + 0.004639714024960995, + 0.006015963852405548, + 0.006672386080026627, + 0.005799642764031887, + 0.03398478776216507, + -0.01341190654784441, + -0.04081754758954048, + 0.039922427386045456, + 0.02108011581003666, + -0.02361629344522953, + 0.011524692177772522, + -0.00043194284080527723, + -0.0008424400584772229, + 0.0047068484127521515, + -0.005635537207126617, + 0.021542595699429512, + -0.00022704388538841158, + -0.03965388983488083, + 0.04806803539395332, + -0.045949582010507584, + 0.015149934217333794, + 0.010629570111632347, + -0.030284950509667397, + 0.05534835904836655, + -0.006213636603206396, + 0.021632106974720955, + -0.012762943282723427, + -0.0007165635470300913, + -0.011920036748051643, + -0.011405342258512974, + 0.004874683450907469, + -0.020677311345934868, + 0.0006125989020802081, + 0.002780471695587039, + 0.015425930730998516, + -0.010913025587797165, + -0.012501866556704044, + 0.010681785643100739, + -0.016380727291107178, + -0.008518574759364128, + -0.03115023486316204, + 0.02439206652343273, + 0.009928391315042973, + 0.029897063970565796, + 0.018081458285450935, + 0.009197375737130642, + -0.008578249253332615, + -0.0005272825947031379, + -0.029807552695274353, + -0.019155604764819145, + -0.0009515330311842263, + 0.026749219745397568, + -0.017260929569602013, + -0.002717067254707217, + -0.01894674263894558, + -0.028912430629134178, + 0.018036702647805214, + -0.035536330193281174, + 0.027345968410372734, + 0.0254512932151556, + -0.0110920500010252, + -0.004621065687388182, + -0.017648816108703613, + -0.026540357619524002, + -0.027718935161828995, + -0.03980307653546333, + -0.005370730068534613, + 0.0023198570124804974, + -0.01579889841377735, + 0.013919142074882984, + -0.019603164866566658, + -0.0043264213018119335, + 0.012971805408596992, + -0.001530098612420261, + -0.07095330953598022, + 0.03723706305027008, + 0.03000149503350258, + -0.0304341372102499, + 0.047172911465168, + 0.01056243572384119, + -0.018006864935159683, + -0.026033122092485428, + -0.01864836923778057, + 0.003837834345176816, + -0.019245116040110588, + 0.0029259289149194956, + 0.0004983776598237455, + -0.019140684977173805, + -0.030613161623477936, + -0.024526333436369896, + -0.0015496794367209077, + -0.01855885609984398, + -0.0038714013062417507, + -0.016022678464651108, + -0.018812473863363266, + 0.013866926543414593, + 0.008309712633490562, + -0.018767718225717545, + -0.029882146045565605, + -0.013493959791958332, + -0.0064374166540801525, + 0.018722962588071823, + 0.001020998228341341, + -0.01928987167775631, + 0.05376697704195976, + 0.005232732277363539, + 0.030613161623477936, + 0.0028214980848133564, + -0.003226167755201459, + -0.014493511989712715, + 0.017066987231373787, + -0.018379831686615944, + -0.005243921186774969, + -0.01286737434566021, + 0.005960018374025822, + 0.0031832766253501177, + 0.0012960616732016206, + 0.011718634516000748, + 0.008794570341706276, + -0.028091901913285255, + -0.038102347403764725, + -0.011875281110405922, + -0.008481278084218502, + 0.01820080727338791, + -0.011920036748051643, + -0.0016522454097867012, + -0.038818445056676865, + -0.008093391545116901, + 0.03470088541507721, + 0.008660302497446537, + -0.012389976531267166, + 0.01578397862613201, + -0.011509773321449757, + 0.01253916323184967, + -0.0013268314069136977, + 0.042339254170656204, + 0.013866926543414593, + 0.010107415728271008, + -0.008123229257762432, + -0.018081458285450935, + 0.0036811879836022854, + 0.024421904236078262, + -0.030284950509667397, + -0.031627632677555084, + -0.03461137041449547, + -0.0022639119997620583, + -0.03959421440958977, + -0.023467106744647026, + 0.005408026743680239, + -0.03294047713279724, + 0.04893331974744797, + -0.027032675221562386, + 0.002976279705762863, + -0.012449651025235653, + -0.01721617393195629, + 0.03246308118104935, + -0.0028532003052532673, + -0.010137253440916538, + -0.0003352044150233269, + -0.02357153780758381, + 0.021303895860910416, + 0.005534835625439882, + -0.02109503373503685, + 0.019916458055377007, + 0.04108608514070511, + 0.011912577785551548, + 0.04186185821890831, + -0.012218411080539227, + -0.020662391558289528, + 0.06313591450452805, + 0.0003825246531050652, + -0.017380280420184135, + 0.030971210449934006, + 0.02898702397942543, + -0.021706700325012207, + 0.04908250644803047, + -0.012136357836425304, + 0.02933015488088131, + -0.0015925706829875708, + 0.03291064128279686, + -0.013262719847261906, + -0.017275849357247353, + -0.011189021170139313, + 0.05182754620909691, + 0.013128451071679592, + -0.008167985826730728, + -0.0007072393782436848, + -0.024884382262825966, + 0.023795317858457565, + -0.012099061161279678, + -0.002290019765496254, + -0.03288080170750618, + -0.03252275660634041, + 0.00644860602915287, + 0.0171266607940197, + -0.008719976991415024, + -0.04183201864361763, + -0.029464421793818474, + -0.02574966661632061, + -0.01711174286901951, + 0.005046248435974121, + -0.0017482845578342676, + 0.015321499668061733, + 0.018379831686615944, + -0.05687006562948227, + 0.008876623585820198, + 0.009316724725067616, + 0.011673878878355026, + -0.007306430954486132, + 0.007328808773308992, + 0.025645235553383827, + -0.04609876871109009, + -0.03532746806740761, + 0.01396389864385128, + 0.022243773564696312, + -0.011285992339253426, + 0.03983291611075401, + -0.03908697888255119, + 0.027450399473309517, + 0.0016587723512202501, + 0.0029184697195887566, + 0.05591527000069618, + -0.0078024775721132755, + -0.026958081871271133, + 0.03189617022871971, + 0.04926152899861336, + 0.00016585392586421221, + -0.022303448989987373, + -0.015933165326714516, + 0.008063554763793945, + -0.009048188105225563, + 0.005974937230348587, + -0.020602717995643616, + -0.020975684747099876, + -0.014538268558681011, + -0.013613308779895306, + 0.027360886335372925, + 0.00196926761418581, + -0.01781292073428631, + -0.008585709147155285, + 0.04550201818346977, + 0.0004489594721235335, + 0.02607787773013115, + 0.004747874569147825, + -0.0022825603373348713, + 0.016932718455791473, + -0.031329259276390076, + -0.049947790801525116, + 0.00412128958851099, + -0.04860510677099228, + -0.015269284136593342, + -0.03541698306798935, + 0.026406090706586838, + -0.038788605481386185, + -0.015888409689068794, + 0.027331048622727394, + -0.006791735999286175, + 0.01934954710304737, + -0.03929584100842476, + 0.019752351567149162, + 0.022751009091734886, + -0.005370730068534613, + -0.04159332066774368, + 0.004773982334882021, + -0.019961213693022728, + 0.00018788230954669416, + 0.009406236931681633, + 0.04645681753754616, + -0.005150679498910904, + 0.004908250644803047, + 0.016007758677005768, + -0.009809042327105999, + -0.0041101002134382725, + -0.012382516637444496, + -0.006985678803175688, + -0.01894674263894558, + -0.015977922827005386, + 0.031627632677555084, + -0.01999105140566826, + -0.02577950432896614, + 0.02753991074860096, + -0.046725351363420486, + -0.012427273206412792, + 0.031985681504011154, + -0.01902133598923683, + 0.03037446364760399, + -0.001282075303606689, + 0.04042966291308403, + -0.013329854235053062, + -0.0005230867536738515, + 0.0016298673581331968, + 0.012046846561133862, + 0.02248247340321541, + 0.005874236114323139, + 0.0031739522237330675, + -0.027823366224765778, + -0.008645383641123772, + 0.04544234275817871, + 0.01576906070113182, + 0.003472326323390007, + -0.0018676341278478503, + 0.025913773104548454, + -0.015321499668061733, + 0.005538565572351217, + 0.0037128902040421963, + 0.02258690446615219, + 0.009547964669764042, + -0.010845891200006008, + 0.008869163691997528, + -0.02792779728770256, + -0.017753247171640396, + -0.00982396025210619, + -0.03389527648687363, + 0.04839624464511871, + 0.010830972343683243, + 0.022736091166734695, + -0.028763243928551674, + -0.002884902525693178, + -0.0027189322281628847, + 0.0033026260789483786, + -0.0193793848156929, + 0.021378489211201668, + 0.03678950294852257, + 0.000724022916983813, + 0.0034518130123615265, + 0.012792780995368958, + 0.0172012560069561, + 0.006914814934134483, + 0.0015515442937612534, + 0.010070119053125381, + -0.02294495329260826, + -0.02112487144768238, + 0.003727808827534318, + 0.003634567139670253, + -0.006176339462399483, + 0.02791287750005722, + 0.008145607076585293, + 0.040220800787210464, + -0.0014154111267998815, + -0.010525139048695564, + 0.004494256805628538, + 0.005639266688376665, + 0.007067731581628323, + 0.016604507341980934, + 0.0014573700027540326, + -0.005158138927072287, + -0.017723409458994865, + 0.007078920491039753, + 0.010950322262942791, + 0.03822169452905655, + 0.02571983076632023, + -0.006642548833042383, + 0.01717141829431057, + -0.003826645202934742, + -0.004844846203923225, + -0.00344248884357512, + -0.02470535784959793, + 0.03297031670808792, + 0.02534686215221882, + 0.018379831686615944, + -0.0025026111397892237, + 0.04869462177157402, + 0.001982321497052908, + 0.0006475645932368934, + 0.0344025120139122, + -0.0068514104932546616, + 0.020886173471808434, + 0.02072206698358059, + -0.023332837969064713, + 0.05048486217856407, + 0.009040729142725468, + 0.03759511187672615, + 0.03959421440958977, + -0.015903329476714134, + 0.05857079476118088, + -0.030553486198186874, + 0.018036702647805214, + 0.02322840876877308, + -0.01999105140566826, + 0.028837837278842926, + -0.018364913761615753, + -0.009458452463150024, + -0.011368045583367348, + -0.02467552199959755, + 0.022974791005253792, + -0.014157840982079506, + 0.022019993513822556, + 0.0019021335756406188, + -0.010674325749278069, + 0.0007533940952271223, + -0.016365807503461838, + -0.004815008956938982, + 0.011860362254083157, + -0.0040914518758654594, + -0.01615694724023342, + 0.056303154677152634, + -0.00804863590747118, + 0.03529763221740723, + -0.022318366914987564, + 0.015590036287903786, + 0.035178281366825104, + 0.04502462223172188, + -0.001529166242107749, + 0.0315977968275547, + -0.0016270701307803392, + 0.009458452463150024, + 0.005053707864135504, + -0.022631660103797913, + 0.028345519676804543, + -0.016604507341980934, + 0.029210804030299187, + 0.019051173701882362, + 0.025660155341029167, + -0.007824855856597424, + 0.02900194190442562, + 0.005094734486192465, + 0.029822470620274544, + 0.00725421542301774, + 0.03473072126507759, + -0.010159631259739399, + 0.01791735179722309, + 0.017678653821349144, + 0.026301659643650055, + -0.024854546412825584, + 0.018394751474261284, + -0.0009585261577740312, + -0.014269731938838959, + 0.005859317258000374, + 0.010234224610030651, + 0.005299866199493408, + 0.00837684702128172, + -0.017947189509868622, + -0.028166495263576508, + -0.035536330193281174, + -0.044129498302936554, + 0.011882740072906017, + -0.0030844402499496937, + -0.0032168435864150524, + -0.024914219975471497, + 0.04618827998638153, + -0.01503058522939682, + 0.001995375379920006, + -0.010510220192372799, + 0.015813816338777542, + -0.01788751594722271, + 0.00856333039700985, + 0.013329854235053062, + -0.021274058148264885, + 0.013971357606351376, + 0.01465015858411789, + -0.003912427928298712, + -0.014224975369870663, + -0.011360585689544678, + 0.002211696468293667, + 0.001145009882748127, + -0.014844100922346115, + 0.006314337719231844, + -0.005113382823765278, + -0.017977027222514153, + -0.011166643351316452, + -0.005657915025949478, + 0.022422797977924347, + -0.004565120674669743, + -0.004057885147631168, + -0.007410861551761627, + 0.03252275660634041, + 0.008906460367143154, + 0.017350442707538605, + 0.012792780995368958, + 0.029061617329716682, + -0.01106221228837967, + 0.011927496641874313, + 0.029494259506464005, + 0.03753543645143509, + 0.015425930730998516, + -0.03249291703104973, + -0.02894226834177971, + 0.04010144993662834, + -0.0019338357960805297, + -0.00046970578841865063, + 0.006829032674431801, + 0.0007557251374237239, + 0.024869464337825775, + -0.015321499668061733, + 0.00947337131947279, + 0.018081458285450935, + 0.019797107204794884, + 0.002580934204161167, + -0.01793227158486843, + 0.0168133694678545, + 0.031329259276390076, + -0.03819185867905617, + 0.0038900496438145638, + -0.011360585689544678, + 0.03291064128279686, + -0.005676563363522291, + 0.010219305753707886, + 0.005411756690591574, + 0.016216620802879333, + 0.02073698677122593, + -0.029882146045565605, + -0.0013258990366011858, + 0.03138893470168114, + -0.012054305523633957, + 0.044219013303518295, + 0.0008839326910674572, + -0.009577802382409573, + 0.004770252853631973, + 0.03753543645143509, + -0.011405342258512974, + -0.03109055943787098, + 0.028076983988285065, + -0.005725048948079348, + 0.007712965365499258, + -0.018096376210451126, + -0.03607340529561043, + 0.004042966291308403, + 0.011934955604374409, + 0.0017296362202614546, + 0.0024914219975471497, + 0.005482620559632778, + 0.003021035809069872, + 0.01075637899339199, + 0.045979417860507965, + 0.009510667994618416, + 0.018901987001299858, + 0.026212146505713463, + -0.01784275844693184, + 0.03350738808512688, + -0.011561988852918148, + -0.02865881286561489, + -0.018827393651008606, + -0.020572880282998085, + -0.048187386244535446, + 0.030583323910832405, + -0.044905271381139755, + 0.008093391545116901, + -0.020886173471808434, + 0.018499182537198067, + 0.0010480383643880486, + 0.009935851208865643, + -0.002295614220201969, + 0.01004774123430252, + -0.01576906070113182, + -0.013590930961072445, + 0.010637029074132442, + 0.005478890612721443, + -0.03177681937813759, + 0.03574519231915474, + -0.001777189550921321, + -0.015977922827005386, + 0.016574669629335403, + 0.012569000013172626, + -0.016619425266981125, + 0.05224527046084404, + 0.019558409228920937, + -0.014172759838402271, + -0.03297031670808792, + 0.018394751474261284, + -0.012233329936861992, + -0.018141133710741997, + 0.0023925856221467257, + 0.000978106982074678, + -0.01485901977866888, + 0.0014443161198869348, + 0.006937193218618631, + -0.012807699851691723, + -0.024123528972268105, + -0.011755931191146374, + -0.023452188819646835, + 0.03404446318745613, + -0.0007846301305107772, + -0.02613755315542221, + 0.010435626842081547, + 0.014627780765295029, + -0.017783084884285927, + 0.02498881332576275, + -0.038430556654930115, + -0.009346562437713146, + 0.011934955604374409, + 0.020632555708289146, + -0.019856782630085945, + -0.030299868434667587, + -0.008839326910674572, + 0.018111295998096466, + 0.0035935405176132917, + 0.0077651808969676495, + 0.01861853152513504, + 0.0028830377850681543, + 0.023422351107001305, + -0.021318815648555756, + 0.03496941924095154, + -0.007944204844534397, + -0.034492023289203644, + -0.01648515835404396, + -0.008958675898611546, + 0.018320158123970032, + -0.0020270776003599167, + 0.03407429903745651, + -0.0049045211635529995, + 0.0029054158367216587, + 0.02073698677122593, + 0.005986126139760017, + -0.007944204844534397, + 0.00998806580901146, + 0.013352232053875923, + -0.015515442937612534, + -0.00044849325786344707, + -0.04424884915351868, + -0.007560048718005419, + -0.02682381309568882, + 0.023168733343482018, + -0.003679323010146618, + 0.02824108861386776, + -0.03819185867905617, + 0.006683575455099344, + -0.026585115119814873, + -0.025167837738990784, + 0.012113980017602444, + -0.01519469078630209, + -0.005758616141974926, + 0.03458153456449509, + 0.02009548246860504, + -0.030613161623477936, + 0.002377666998654604, + -0.010390871204435825, + -0.0064411466009914875, + -0.0071684326976537704, + 0.004266746807843447, + 0.0200805626809597, + -0.01273310650140047, + -0.01106221228837967, + -0.021020440384745598, + 0.011673878878355026, + 0.013941519893705845, + -0.005020140670239925, + -0.046695515513420105, + -9.55146097112447e-5, + 0.008585709147155285, + -0.0064001199789345264, + 0.015992840752005577, + 0.0076048048213124275, + 0.02467552199959755, + -0.003543189959600568, + -0.009928391315042973, + -0.004602417349815369, + 0.01376995537430048, + 0.004356259014457464, + 0.01894674263894558, + -0.026346415281295776, + 0.0041324784979224205, + 0.0060458010993897915, + 0.010965241119265556, + -0.04019096493721008, + -0.0243622288107872, + 0.010681785643100739, + 0.023526782169938087, + -0.021617189049720764, + 0.019603164866566658, + 0.004662092309445143, + 0.010942862369120121, + -0.007548859808593988, + 0.014165300875902176, + 0.04896315559744835, + 0.014605402015149593, + -0.04036998748779297, + 0.05078323557972908, + 0.026241984218358994, + 0.004378636833280325, + 0.011748472228646278, + -0.010458004660904408, + -0.008973594754934311, + 0.017618978396058083, + 0.007280323188751936, + 0.04105624929070473, + 0.024257797747850418, + -0.004341340158134699, + -0.002564150607213378, + 0.0016764883184805512, + -0.019155604764819145, + -0.011457557789981365, + -0.005404297262430191, + -0.008108310401439667, + -0.010696704499423504, + 0.0118305254727602, + 0.009436074644327164, + 0.007921827025711536, + 0.01273310650140047, + -0.0004475608584471047, + -0.011733553372323513, + -0.00802625808864832, + -0.006213636603206396, + -0.0029203344602137804, + 0.004061614628881216, + 0.011875281110405922, + 0.0004904521047137678, + -0.003949724603444338, + -0.014597943052649498, + -0.01902133598923683, + 0.015097719617187977, + 0.025973448529839516, + 0.01201700884848833, + -0.004046695772558451, + -0.004613606259226799, + -0.023377595469355583, + -0.005758616141974926, + 0.020184993743896484, + 0.010771297849714756, + -0.0036830527242273092, + -0.009398777969181538, + 0.027704017236828804, + -0.0022751009091734886, + -0.0056914822198450565, + -0.011979712173342705, + -0.0012662241933867335, + 0.00895121693611145, + -0.019797107204794884, + 0.025257350876927376, + -0.03395494818687439, + -0.00010880157788051292, + 0.01641056500375271, + -0.024153366684913635, + -0.010502761229872704, + -0.007131136022508144, + -0.034909747540950775, + 0.03458153456449509, + 0.018021782860159874, + -0.03932568058371544, + -0.008339550346136093, + 0.015500524081289768, + -0.007381024304777384, + 0.003912427928298712, + 0.019498733803629875, + -0.009958229027688503, + -0.01004028134047985, + -0.011427720077335835, + -0.008361928164958954, + -0.01678353175520897, + -0.01967775821685791, + -0.004221990704536438, + -0.01969267800450325, + 0.019856782630085945, + 0.04365210235118866, + -0.029628528282046318, + 0.013329854235053062, + 0.0007403402123600245, + 0.009913472458720207, + -0.0028494708240032196, + -0.020975684747099876, + -0.02321348898112774, + -0.015470686368644238, + -0.010085037909448147, + -0.0200805626809597, + 0.012412354350090027, + -0.02403401769697666, + 0.02788303978741169, + 0.012031927704811096, + 0.01682828739285469, + 0.017365360632538795, + -0.021259140223264694, + -0.02546621300280094, + 0.0200805626809597, + 6.159789336379617e-5, + -0.004859765060245991, + -0.006198717746883631, + 0.009764285758137703, + -0.0027152025140821934, + -0.0003820584388449788, + 0.010293899103999138, + -0.018529018387198448, + -0.0193793848156929, + 0.03252275660634041, + -0.017007311806082726, + -0.009622558020055294, + -0.017425036057829857, + -0.02500373311340809, + -0.012561541050672531, + 0.007597345393151045, + -0.0036327021662145853, + -0.005076086148619652, + 0.03801283612847328, + 0.0047031184658408165, + -0.013590930961072445, + -0.007313890382647514, + 0.010114874690771103, + 0.005434134509414434, + -0.003145979717373848, + -0.010793675668537617, + -0.0006023423047736287, + -0.08253022283315659, + -0.025510968640446663, + -0.02466060221195221, + 0.01893182285130024, + 0.0044867973774671555, + 0.019483815878629684, + 0.02546621300280094, + 0.011576906777918339, + 0.0017445548437535763, + 0.03135909512639046, + 0.0386095829308033, + -0.008272415958344936, + 0.028091901913285255, + 0.023138895630836487, + 0.0014247354120016098, + 0.006761898286640644, + -0.005508727859705687, + -0.008719976991415024, + 0.030344625934958458, + -0.020617635920643806, + 0.010644488967955112, + 0.025138000026345253, + 0.010517680086195469, + 0.0007631845073774457, + -0.013098614290356636, + 0.030553486198186874, + -0.02005072496831417, + -0.005389378406107426, + -0.004632254596799612, + -0.044905271381139755, + 0.028062064200639725, + 0.00499403290450573, + -0.004251827951520681, + -0.015485605224967003, + -0.0030303599778562784, + 0.037386249750852585, + 0.0022881547920405865, + -0.006650008261203766, + 0.015336418524384499, + 0.0013454797444865108, + 0.0247501153498888, + 0.0012699539074674249, + 0.005695211701095104, + -0.007772639859467745, + 0.0010732136433944106, + -0.007660749834030867, + -0.018708042800426483, + -0.01344174426048994, + -0.010786216706037521, + -0.006575414910912514, + 0.018364913761615753, + 0.019095929339528084, + -0.007485455367714167, + -0.019066091626882553, + 0.011770850047469139, + 0.007817395962774754, + 0.017633898183703423, + -0.005128301214426756, + 0.0189914982765913, + -0.002828957512974739, + 0.05364762619137764, + 0.02255706675350666, + -0.012755484320223331, + -0.0052961367182433605, + 0.001281142933294177, + 0.014418918639421463, + 0.0038341046310961246, + 0.022691335529088974, + 0.015649711713194847, + 0.0002624757762532681, + -0.009346562437713146, + -0.02034910023212433, + 0.02042369358241558, + 0.029255561530590057, + 0.004576309584081173, + 0.023854993283748627, + 0.0350290946662426, + 0.02467552199959755, + -0.0015823140274733305, + -0.010622111149132252, + -0.02069222927093506, + 0.011920036748051643, + 0.020229749381542206, + 0.012755484320223331, + -0.045591533184051514, + -0.011435179971158504, + -0.017275849357247353, + -0.029897063970565796, + -3.4703447454376146e-5, + 0.002916604746133089, + 0.025555724278092384, + -0.004874683450907469, + 0.03890795633196831, + 0.002000969834625721, + -0.01928987167775631, + -0.01018946897238493, + 0.0066388193517923355, + 0.00133802043274045, + 0.0005603834870271385, + -0.004098911304026842, + -0.007914368063211441, + -0.019155604764819145, + -0.0022433986887335777, + 0.0011310235131531954, + -0.014411459676921368, + 0.0009725124109536409, + -0.001645718584768474, + 0.025973448529839516, + -0.001530098612420261, + -0.0022359394934028387, + 0.009070566855370998, + 0.014799345284700394, + -0.025242431089282036, + 0.00875727366656065, + -0.020543042570352554, + 0.008540952578186989, + -0.035596005618572235, + -0.004367447923868895, + -0.0014126138994470239, + 0.014851560816168785, + -0.009525586850941181, + 0.018364913761615753, + -0.009152619168162346, + -0.009219753555953503, + 0.00318141165189445, + 0.023019546642899513, + 0.0005990788340568542, + -0.0308220237493515, + 0.001158063649199903, + 0.016321051865816116, + 0.0009184321388602257, + -0.005094734486192465, + -0.0005767007824033499, + 0.00787707045674324, + 0.00429658405482769, + 0.010860810056328773, + 0.017827840521931648, + -0.001882552751339972, + 0.01793227158486843, + -0.04424884915351868, + -0.008585709147155285, + -0.010196927934885025, + 0.0003608459373936057, + 0.021229302510619164, + -0.019812026992440224, + -0.013367150910198689, + 0.0014937343075871468, + -0.01004774123430252, + 0.006978219375014305, + -0.012740565463900566, + -3.3916719985427335e-5, + 0.004553931765258312, + 0.017648816108703613, + 0.000227626645937562, + -0.006094286683946848, + 0.0009207631810568273, + -0.020244669169187546, + 0.012964345514774323, + -0.01718633621931076, + -0.020543042570352554, + -0.0032727885991334915, + 0.007440699264407158, + -0.015149934217333794, + 0.011875281110405922, + -0.002359018661081791, + -0.028032228350639343, + 0.008802030235528946, + -0.010838432237505913, + -0.02749515511095524, + -0.024496497586369514, + 0.004180964082479477, + -0.00895121693611145, + -0.013210504315793514, + -0.00807101372629404, + -0.003007981926202774, + -0.0429658405482769, + -0.018021782860159874, + -0.011174102313816547, + 0.016529913991689682, + 0.00950320903211832, + -0.01056243572384119, + -0.0023552889470010996, + -0.010644488967955112, + 0.03398478776216507, + 0.005531106144189835, + 0.01866328716278076, + -0.014307028613984585, + 0.0053520817309618, + 0.003330598585307598, + -0.00788453035056591, + 0.014135463163256645, + 0.01429210975766182, + -0.0012513055698946118, + -0.009361481294035912, + -0.008645383641123772, + -0.014814264141023159, + 0.0058705066330730915, + 0.019215278327465057, + 0.006112935021519661, + -0.013553634285926819, + -0.012613756582140923, + -0.005616888403892517, + 0.02246755361557007, + -0.006825302727520466, + -0.007280323188751936, + 0.0019729973282665014, + -0.07686111330986023, + 0.009055647999048233, + 0.02036401815712452, + -0.009204834699630737, + -0.000674604729283601, + 0.009361481294035912, + 0.03422348573803902, + -0.03386543691158295, + 0.022303448989987373, + -0.013016561046242714, + -0.0049418178386986256, + -0.024093693122267723, + -0.004050425719469786, + -0.014844100922346115, + 0.041354622691869736, + 0.00392734631896019, + 0.025615399703383446, + 0.014545727521181107, + 0.0038975090719759464, + 0.0020233478862792253, + 0.023019546642899513, + -0.029568852856755257, + -0.0278681218624115, + 0.011711175553500652, + -0.007929285988211632, + 0.03225421905517578, + -0.002043861197307706, + -0.0037539165932685137, + -0.017335522919893265, + -0.0024858275428414345, + 0.042756978422403336, + -0.006467254366725683, + 0.016873043030500412, + -0.011397883296012878, + -0.027286292985081673, + -0.02254214882850647, + 0.0025492319837212563, + 0.0021184547804296017, + 0.04580039158463478, + 0.009533045813441277, + -0.016186783090233803, + 0.004143667407333851, + -0.00787707045674324, + 0.02106519788503647, + 0.005202895030379295, + -0.01034611463546753, + -0.020916009321808815, + -0.005601970013231039, + 0.004001939669251442, + 0.01521706860512495, + 0.010510220192372799, + -0.017081905156373978, + 0.01685812510550022, + 0.001677420805208385, + 0.00401312904432416, + 0.0025361781008541584, + 0.02789795957505703, + -0.03115023486316204, + 0.009450993500649929, + -0.01180068776011467, + 0.01972251385450363, + 0.02827092632651329, + 0.010025362484157085, + 0.0006522266776300967, + -0.010830972343683243, + -0.002159481169655919, + -0.027823366224765778, + -0.020841415971517563, + 0.014135463163256645, + 0.006724601611495018, + 0.027644341811537743, + -0.008354469202458858, + -0.022109506651759148, + 0.014747129753232002, + -0.005303596146404743, + -0.020557962357997894, + -0.005986126139760017, + 0.0021371031180024147, + 0.02791287750005722, + -0.002124049235135317, + 0.006396390497684479, + 0.006605252157896757, + 0.016350889578461647, + -0.03511860594153404, + 0.005657915025949478, + -0.01359838992357254, + 0.013352232053875923, + 0.015590036287903786, + 0.009734448045492172, + 0.008138148114085197, + -0.0027897958643734455, + 0.00475160451605916, + 0.029151130467653275, + -0.015276743099093437, + 0.01569446735084057, + -0.010062660090625286, + -0.003313814988359809, + -0.007410861551761627, + -0.018379831686615944, + -0.00023765015066601336, + 0.007459347601979971, + -0.0074220504611730576, + 0.005900343880057335, + 0.01343428436666727, + 6.0352240325300954e-6, + 0.016231540590524673, + -0.038788605481386185, + 0.005180516745895147, + 0.009100403636693954, + 0.015604955144226551, + 0.033089663833379745, + 0.02039385586977005, + 0.0011776444735005498, + -0.012912129983305931, + -0.013807252049446106, + -0.019170522689819336, + 0.020632555708289146, + -0.00196926761418581, + -0.016529913991689682, + -0.001820080797187984, + -0.012494406662881374, + -0.024123528972268105, + 0.012927048839628696, + 0.0010946592083200812, + -0.010547516867518425, + 0.027092350646853447, + -0.018141133710741997, + -0.013643146492540836, + 0.017723409458994865, + 0.003949724603444338, + 0.0020550501067191362, + -0.024213042110204697, + -0.009846339002251625, + -0.008287334814667702, + 0.018349993973970413, + 0.03359689936041832, + 0.015858571976423264, + 0.010167090222239494, + 0.03320901468396187, + 0.023422351107001305, + 0.010614651255309582, + 0.023810237646102905, + 0.04368193820118904, + 0.012561541050672531, + -0.0022135614417493343, + -0.015276743099093437, + -0.01538117416203022, + -0.00911532249301672, + 0.01605251617729664, + 0.03428316116333008, + -0.029180966317653656, + 0.005337162874639034, + -0.019051173701882362, + -0.02221393585205078, + -0.02827092632651329, + -0.009391318075358868, + 0.0032839777413755655, + 0.002478368114680052, + -0.013270178809762001, + -0.00669103441759944, + 0.019513653591275215, + -0.012785321101546288, + 0.002741310279816389, + -0.014001195318996906, + 0.010547516867518425, + 0.005385648924857378, + 0.018111295998096466, + -0.007727883756160736, + -0.01344174426048994, + 0.0006965165375731885, + -0.005322244483977556, + 0.0028028497472405434, + 0.006429957691580057, + 0.0011795093305408955, + 0.014262272045016289, + 0.010256602428853512, + -0.042697302997112274, + -0.02688348852097988, + -0.012479487806558609, + 0.015948085114359856, + 0.02109503373503685, + 0.0006074706325307488, + -0.007720424793660641, + -0.014627780765295029, + -0.005426675081253052, + -0.005385648924857378, + -0.015231987461447716, + -0.002748769475147128, + 0.020214831456542015, + 0.011494854465126991, + -0.022333286702632904, + -0.007522752042859793, + -0.026704464107751846, + -0.027077430859208107, + -0.014202597551047802, + 0.01376995537430048, + -0.021617189049720764, + 0.015858571976423264, + -0.016649262979626656, + 0.02400417998433113, + 0.012464569881558418, + 0.002655527787283063, + -0.0027842014096677303, + -0.010099956765770912, + 0.004852305632084608, + 0.022378042340278625, + 0.011077131144702435, + -0.02795763500034809, + -0.023094139993190765, + -0.012069224379956722, + 0.0027711475268006325, + 0.021542595699429512, + 0.02148292027413845, + 0.0056504555977880955, + -0.008705058135092258, + 0.0009706476121209562, + 0.020677311345934868, + -0.023690886795520782, + -0.010838432237505913, + 0.004512905143201351, + -0.012844996526837349, + -0.022109506651759148, + -0.008302253670990467, + 0.0003487244830466807, + 0.012061764486134052, + -0.005049978382885456, + 0.018752800300717354, + 0.006594063248485327, + 0.020662391558289528, + -0.0017119202530011535, + 0.0016671641496941447, + -0.005214083939790726, + 0.000885331304743886, + -0.020140238106250763, + -0.04770998656749725, + -0.013232882134616375, + 0.004389825742691755, + -0.014568105340003967, + 0.0057213194668293, + -0.007511562667787075, + 0.019110847264528275, + -0.0009762420668266714, + 0.015321499668061733, + 0.008861704729497433, + -0.002308668103069067, + -0.03225421905517578, + 0.04332388937473297, + -0.0002293749275850132, + 0.012255707755684853, + -0.0004762327007483691, + -0.014493511989712715, + -0.017335522919893265, + -0.01966284029185772, + 0.01341936644166708, + 0.014172759838402271, + 0.0035077580250799656, + -0.017798002809286118, + 0.005396837834268808, + -0.01645532064139843, + 0.024496497586369514, + 0.025287188589572906, + -0.015604955144226551, + -0.020184993743896484, + 0.004677010700106621, + -0.03905714303255081, + -0.03801283612847328, + -0.0073661054484546185, + 0.005769805051386356, + 0.028375357389450073, + -0.008190363645553589, + -0.004274206236004829, + -0.021199464797973633, + -0.011644041165709496, + -0.007310160435736179, + 0.027420561760663986, + 0.010681785643100739, + 0.012337760999798775, + 0.02293003350496292, + 0.02003580704331398, + -0.016887962818145752, + 0.03893779218196869, + 0.013680443167686462, + -0.022005075588822365, + 0.03404446318745613, + -0.010592273436486721, + 0.016723856329917908, + -0.007470536511391401, + 0.010972700081765652, + 0.015813816338777542, + -0.028793081641197205, + -0.009980606846511364, + -0.004065344575792551, + 0.02043861150741577, + -0.002927793888375163, + 0.020543042570352554, + -0.01894674263894558, + -0.030538568273186684, + -0.012598837725818157, + 0.0006568887620232999, + -0.00154688220936805, + -0.007489184848964214, + 0.023362675681710243, + 0.011837984435260296, + -0.005031330045312643, + -0.009130241349339485, + 0.016291214153170586, + -0.02143816463649273, + 0.005262569524347782, + -0.014523349702358246, + -0.01648515835404396, + 0.018409669399261475, + 0.018126213923096657, + -0.015246906317770481, + -0.012919589877128601, + -0.006101746112108231, + -0.001405154587700963, + -0.025063406676054, + -0.0050611672922968864, + -0.0030863049905747175, + 0.004710577894002199, + 0.0007934880559332669, + 0.013195585459470749, + 0.003733403282240033, + -0.0025716100353747606, + -0.006344174966216087, + 0.005605699494481087, + -0.022109506651759148, + 0.002793525578454137, + 0.009040729142725468, + 0.006497091613709927, + 0.007339997682720423, + 0.005560943391174078, + -0.01393406093120575, + -0.033089663833379745, + -0.0034872449468821287, + -0.008749814704060555, + 0.016887962818145752, + 0.008190363645553589, + -0.01001790352165699, + 0.09494257718324661, + -0.020244669169187546, + -0.009189915843307972, + -0.0011851037852466106, + 0.004680740647017956, + -0.015149934217333794, + 0.006359093822538853, + 0.022974791005253792, + 0.00877965148538351, + -0.010875728912651539, + 0.015977922827005386, + -0.0041735051199793816, + 0.002649933099746704, + 0.0072281076572835445, + -0.004389825742691755, + 0.01861853152513504, + 0.03678950294852257, + 0.006564225535839796, + 0.015649711713194847, + 0.009346562437713146, + 0.008943757973611355, + -0.004982843995094299, + -0.017231091856956482, + 0.00950320903211832, + -0.01467253640294075, + 0.026913326233625412, + 0.007339997682720423, + -0.0066350894048810005, + 0.02284052222967148, + 0.011368045583367348, + -0.009413696825504303, + 0.026256902143359184, + -0.016932718455791473, + -0.001906795660033822, + -0.01075637899339199, + 0.014955991879105568, + -0.0020587798207998276, + 0.013479040935635567, + -0.000442898744950071, + 0.015425930730998516, + 0.010167090222239494, + -0.01612710952758789, + 0.014821723103523254, + 0.0033511118963360786, + 0.006948382128030062, + -0.020990604534745216, + -0.002028942573815584, + -0.0077800992876291275, + 0.01125615555793047, + -0.005478890612721443, + -0.014307028613984585, + -0.008145607076585293, + -0.004401015117764473, + -0.00353013607673347, + 0.004520364571362734, + 0.0017193795647472143, + 0.015097719617187977, + 0.006858869921416044, + -0.0037912132684141397, + 0.0011198344873264432, + -0.015127556398510933, + -0.019558409228920937, + -0.01359838992357254, + -0.0164254829287529, + -0.015366255305707455, + -0.00778755871579051, + -0.023899748921394348, + -0.03320901468396187, + 0.018021782860159874, + -0.009264509193599224, + -0.003968372941017151, + 0.03294047713279724, + -0.0011720500187948346, + -0.031657472252845764, + -0.0009128376259468496, + 0.012613756582140923, + 0.005072356201708317, + -0.004982843995094299, + -0.012748024426400661, + 0.01784275844693184, + -0.0018527153879404068, + 0.00873489584773779, + 0.004430852364748716, + -0.012979264371097088, + 0.0022452636621892452, + 0.007541400380432606, + 0.01447859313338995, + -0.0297329593449831, + 0.009249591268599033, + -0.01357601210474968, + -0.01234521996229887, + 0.008257498033344746, + 0.01820080727338791, + 0.0017426899867132306, + 0.004102641250938177, + -0.0014778831973671913, + -0.02040877379477024, + 0.0077800992876291275, + 0.013717739842832088, + 0.0008531628409400582, + 0.005960018374025822, + 0.00873489584773779, + -0.007988961413502693, + 0.0073884837329387665, + -0.012949427589774132, + -0.007362375967204571, + 0.009174996986985207, + 0.02184096910059452, + -0.03003133274614811, + 0.00392734631896019, + 0.0034965691156685352, + -0.0037930782418698072, + 0.006866329349577427, + -0.013717739842832088, + -0.02682381309568882, + 0.023705806583166122, + 0.013881845399737358, + 0.0019049308029934764, + -0.011017455719411373, + -0.021885724738240242, + -0.0031497094314545393, + -0.0058182911016047, + 0.01684320718050003, + -0.013255259953439236, + -0.005549754481762648, + -0.010637029074132442, + -0.00999552570283413, + -0.010420707985758781, + -0.014060869812965393, + 0.0012354544596746564, + 0.016022678464651108, + 0.008123229257762432, + 0.020602717995643616, + 0.01608235388994217, + 0.012293004430830479, + -0.0025865286588668823, + -0.011457557789981365, + -0.009622558020055294, + 0.012949427589774132, + 0.0028140388894826174, + 0.013635687530040741, + -0.005158138927072287, + -0.007392213214188814, + -0.009592721238732338, + 0.004371177405118942, + 0.01273310650140047, + -0.01034611463546753, + 0.002198642585426569, + 0.016649262979626656, + -0.0012093466939404607, + 0.0344025120139122, + -0.03726689890027046, + 0.010219305753707886, + -0.007653290405869484, + 0.0012121439212933183, + -0.013501418754458427, + -0.02033418044447899, + 0.008585709147155285, + -0.014381621964275837, + 0.01161420438438654, + -0.002582798944786191, + 0.013479040935635567, + 0.0063628233037889, + -0.008884082548320293, + -0.011651501059532166, + -0.0014182084705680609, + 0.020945847034454346, + 0.01963300257921219, + 0.02509324438869953, + -0.0024559900630265474, + -0.010032822377979755, + 0.008727436885237694, + 0.0030937644187361, + -0.034104134887456894, + -0.0068327621556818485, + -0.012755484320223331, + 0.006332986056804657, + -0.007298971526324749, + -0.016947638243436813, + 0.003002387238666415, + 0.010622111149132252, + -0.0018937417771667242, + 0.005803372245281935, + 0.003738997969776392, + -0.005367000587284565, + -0.025675073266029358, + 0.005516187287867069, + -0.017350442707538605, + 0.013352232053875923, + 0.011338207870721817, + -0.02470535784959793, + 0.0015645981766283512, + -0.0007557251374237239, + -0.012979264371097088, + -0.003807996865361929, + 0.008615545928478241, + 0.004565120674669743, + 0.015843654051423073, + 0.003367895260453224, + -0.015963003039360046, + -0.009525586850941181, + 0.0182903204113245, + 0.02433239109814167, + 3.4528620744822547e-6, + -0.007757721468806267, + -0.003477920778095722, + -0.00788453035056591, + -0.012233329936861992, + -0.01273310650140047, + 0.014426377601921558, + -0.05331941694021225, + -0.03192600607872009, + 0.011905118823051453, + 0.010308817960321903, + -0.028778161853551865, + 0.029852308332920074, + -0.005881695542484522, + 0.005877965595573187, + 0.007093839347362518, + 0.010219305753707886, + 0.009197375737130642, + 0.0015701926313340664, + 0.0286438949406147, + -0.010226765647530556, + -0.002036401769146323, + -0.004893331788480282, + 0.023884830996394157, + 0.02187080681324005, + 0.02221393585205078, + 0.005035059526562691, + 0.027823366224765778, + -0.013396987691521645, + -0.0035506493877619505, + 0.009174996986985207, + -0.016529913991689682, + 0.016589589416980743, + 0.016261378303170204, + -0.026271821931004524, + 0.000996755319647491, + 0.003028495004400611, + -0.009488290175795555, + -0.009070566855370998, + -0.0021501570008695126, + 0.0012774132192134857, + 0.021676864475011826, + -0.020274506881833076, + 0.0015487470664083958, + -0.0003979095781687647, + -0.0021949128713458776, + -2.54958158620866e-5, + -0.010942862369120121, + -0.013113533146679401, + -0.005777264479547739, + 0.00011503712448757142, + 0.01409816648811102, + 0.002569745294749737, + -0.008160525932908058, + -0.0075861564837396145, + -0.005437864456325769, + -0.022288529202342033, + 0.0031553038861602545, + 0.011233776807785034, + -0.0036867824383080006, + 0.0008424400584772229, + -0.012039386667311192, + 0.01541101187467575, + 0.004236909560859203, + 0.004367447923868895, + 0.01089064683765173, + 0.001722176792100072, + 0.008324631489813328, + 0.0033156799618154764, + 0.007906908169388771, + 0.014135463163256645, + -0.020662391558289528, + 0.00037739635445177555, + 0.004770252853631973, + -0.020170075818896294, + 0.0043077729642391205, + 0.015440849587321281, + -0.024600928649306297, + 0.01936446502804756, + -0.0005473296041600406, + -0.01931970939040184, + 0.008548412472009659, + -0.027763690799474716, + -0.003007981926202774, + 0.0018461884465068579, + -0.003863941878080368, + 0.01039833016693592, + -0.0078024775721132755, + -0.01793227158486843, + 0.010323736816644669, + 0.0012224005768075585, + 0.0010247278260067105, + 0.006075638346374035, + -0.0160375963896513, + 0.0038527529686689377, + 0.00607936829328537, + 0.013755036517977715, + -0.010264062322676182, + 0.011793227866292, + -0.026674626395106316, + -0.02148292027413845, + -0.004986573942005634, + 0.0002088617329718545, + -0.0003627107653301209, + 0.003459272440522909, + 0.009339102543890476, + 0.020587798207998276, + 0.015366255305707455, + -0.004803819581866264, + 0.0027357155922800303, + -0.00446068961173296, + -0.011666418984532356, + 0.008451440371572971, + 0.0013007237575948238, + -0.0016988663701340556, + -0.01358347199857235, + 0.007295241579413414, + -0.007075191009789705, + -0.0027021486312150955, + 0.0006718075019307435, + 0.01344174426048994, + 0.011211398988962173, + 0.035894379019737244, + 0.022318366914987564, + 0.022691335529088974, + -0.00330635579302907, + -0.007824855856597424, + 0.006769357714802027, + 0.023735644295811653, + -0.0028513355646282434, + -0.007552589289844036, + -0.00787707045674324, + 0.0029184697195887566, + -0.013203045353293419, + 0.008637924678623676, + -0.012285545468330383, + -0.0015245041577145457, + -0.014739670790731907, + -0.020513204857707024, + -0.011576906777918339, + -0.0157243050634861, + 0.007205729838460684, + 0.01650007627904415, + 0.008414143696427345, + 0.007533940952271223, + 0.016231540590524673, + 0.007347457110881805, + 0.02434731088578701, + -0.002204237272962928, + 0.02181113138794899, + -0.004028047434985638, + -0.012166195549070835, + 0.01682828739285469, + 0.004318962339311838, + 0.026286739856004715, + -0.004908250644803047, + 0.01575414091348648, + -0.012919589877128601, + -0.0013482770882546902, + -0.009130241349339485, + -0.0003230829897802323, + -0.009450993500649929, + 0.018708042800426483, + -0.007317619863897562, + 0.019931375980377197, + -0.013941519893705845, + 0.00258839363232255, + 0.0038788607344031334, + -0.02398926205933094, + 0.009458452463150024, + -0.014351784251630306, + -0.01791735179722309, + -0.0031553038861602545, + 0.007996420376002789, + -0.005717589985579252, + -0.015918247401714325, + 0.011599285528063774, + 0.02501865103840828, + 0.018887067213654518, + -0.017454873770475388, + -0.012263166718184948, + 0.012002089992165565, + 0.02252722904086113, + 0.015351337380707264, + 0.005751156713813543, + 0.01289721205830574, + 0.0011216993443667889, + -0.01714158058166504, + 0.008130689151585102, + 0.0025585561525076628, + -0.0012242654338479042, + 0.0006046733469702303, + -0.008257498033344746, + -0.032343730330467224, + 0.02469043992459774, + -0.006183798890560865, + -0.01826048269867897, + -0.016559751704335213, + -0.013755036517977715, + 0.016007758677005768, + 0.002295614220201969, + -0.00823511928319931, + -0.010241683572530746, + -0.024466659873723984, + 0.02509324438869953, + 0.019155604764819145, + -0.010487842373549938, + -0.01997613161802292, + -0.0032541402615606785, + -0.01608235388994217, + -0.009756826795637608, + 0.006165150552988052, + -0.006228554993867874, + 0.01393406093120575, + 0.002989333588629961, + 0.01412054430693388, + 0.016261378303170204, + 0.01092048455029726, + 0.012718187645077705, + 0.011815606616437435, + -0.01682828739285469, + 0.03258242830634117, + 0.0045278239995241165, + 0.01609727181494236, + -0.010137253440916538, + -0.02252722904086113, + 0.02146800234913826, + 0.007343727629631758, + -0.015858571976423264, + 0.012927048839628696, + 0.011218858882784843, + -0.025928691029548645, + -0.00787707045674324, + 0.030240194872021675, + -0.007720424793660641, + 0.002623825566843152, + 0.02434731088578701, + -0.012934508733451366, + -0.0047441450878977776, + 0.004229450132697821, + 0.01505296304821968, + 0.011233776807785034, + -0.006452335510402918, + 0.006493362132459879, + 0.015590036287903786, + 0.005262569524347782, + 0.008011339232325554, + -0.007839773781597614, + 0.008899001404643059, + -0.008511115796864033, + 0.0027469047345221043, + -0.02682381309568882, + 0.009644935838878155, + 0.0035506493877619505, + -0.01037595234811306, + 0.011338207870721817, + -0.03294047713279724, + 0.024809788912534714, + 0.0068327621556818485, + -0.004788901191204786, + 0.01648515835404396, + -0.003423840506002307, + -0.008056094869971275, + 0.009092944674193859, + 0.011554528959095478, + -0.0010377817088738084, + 0.023914668709039688, + 0.0005272825947031379, + 0.012651053257286549, + 0.017380280420184135, + -0.006030882243067026, + -0.00998806580901146, + 0.024168286472558975, + -0.012218411080539227, + 0.010435626842081547, + 0.021930482238531113, + -0.029777714982628822, + -0.010607192292809486, + 0.0033902733121067286, + -0.009719530120491982, + 0.005225272849202156, + 0.014993288554251194, + 0.0039049682673066854, + -0.020170075818896294, + 0.01967775821685791, + 0.004967925604432821, + 0.0015636656899005175, + 0.010666866786777973, + 0.0062210955657064915, + 0.02824108861386776, + -0.013852008618414402, + -0.0003244816034566611, + -0.012248248793184757, + 0.012188573367893696, + 0.013710280880331993, + -0.007988961413502693, + -0.008727436885237694, + 0.024153366684913635, + -0.0016186784487217665, + -0.014575565233826637, + 0.00821274146437645, + 0.011681337840855122, + 0.02713710628449917, + -0.012397435493767262, + 0.009764285758137703, + 0.0003263464604970068, + 0.007634642068296671, + -0.008719976991415024, + -0.0019972403533756733, + -0.016649262979626656, + 0.010226765647530556, + -0.003720349632203579, + -0.006131583359092474, + 0.034521859139204025, + 0.021378489211201668, + 0.00509100453928113, + -0.005792183335870504, + -0.008973594754934311, + -0.007683127652853727, + 0.0039758323691785336, + -0.007705505937337875, + 0.016335971653461456, + -0.023884830996394157, + 0.0036550802178680897, + -0.015843654051423073, + -0.016589589416980743, + -0.006534388288855553, + -0.029121292755007744, + 0.0224973913282156, + 0.004136207979172468, + -0.024765033274888992, + 0.01682828739285469, + 0.0010676190722733736, + 0.01500820741057396, + 0.004207071848213673, + 0.02291511557996273, + -0.0066350894048810005, + 0.010905565693974495, + 0.0020158886909484863, + 0.02112487144768238, + -0.001287669874727726, + -0.006866329349577427, + -0.013986276462674141, + -0.010801134631037712, + 0.002681635320186615, + -0.008623005822300911, + 0.0330001525580883, + -0.019812026992440224, + 0.011457557789981365, + 0.026241984218358994, + 0.009510667994618416, + 0.005736238323152065, + -0.009130241349339485, + 7.191277109086514e-5, + 0.009391318075358868, + -0.003498433856293559, + 0.013352232053875923, + -0.01785767823457718, + -0.012807699851691723, + -0.012479487806558609, + -0.017410116270184517, + -0.025227513164281845, + 0.0012662241933867335, + 0.010010444559156895, + 0.014299568720161915, + -0.002196777844801545, + 0.012785321101546288, + 0.001814486226066947, + -0.005154408980160952, + 0.009846339002251625, + 0.017260929569602013, + 0.005963748320937157, + 0.0026573925279080868, + -0.014568105340003967, + -0.012389976531267166, + 0.040250640362501144, + -0.02246755361557007, + 0.0031105477828532457, + 0.0061875288374722, + -0.03135909512639046, + 0.005243921186774969, + -0.013814711011946201, + 0.0112486956641078, + 0.01321796327829361, + -0.0025548264384269714, + 0.027704017236828804, + -0.021005522459745407, + 0.02110995352268219, + -0.013665524311363697, + -0.007974042557179928, + -0.0065977927297353745, + 0.0033585710916668177, + 0.0012177384924143553, + -0.006664927117526531, + 0.005340892821550369, + 0.00403550686314702, + -0.011681337840855122, + -0.007317619863897562, + -9.330012107966468e-5, + -0.015187231823801994, + 0.014776967465877533, + 0.01682828739285469, + -0.0019431599648669362, + -0.0013203044654801488, + -0.01684320718050003, + -0.007395943161100149, + -0.01538117416203022, + -0.009861256927251816, + 0.011487395502626896, + 0.007627182640135288, + -0.018394751474261284, + 0.001956213964149356, + -0.008115770295262337, + 0.02255706675350666, + 0.009107863530516624, + 0.035237956792116165, + 0.012419813312590122, + 0.00725421542301774, + 0.010465464554727077, + 0.0039049682673066854, + 0.026689544320106506, + -0.0004216862434986979, + -0.017425036057829857, + -0.011905118823051453, + 0.007545129861682653, + -0.0002403308462817222, + -0.02328808233141899, + -0.003919886890798807, + 0.014075788669288158, + -0.004244368523359299, + -0.030672837048768997, + 0.009480830281972885, + 0.0012550351675599813, + -0.00804863590747118, + -0.01579889841377735, + 0.01827540062367916, + -0.0378338098526001, + 0.018335076048970222, + -0.00475160451605916, + 0.008608086965978146, + -0.0064224982634186745, + -2.919635153375566e-5, + 0.0033082205336540937, + -0.018141133710741997, + 0.00026876962510868907, + 0.0060868277214467525, + 0.025600479915738106, + -0.008190363645553589, + 0.011815606616437435, + -0.02827092632651329, + 0.021751457825303078, + 0.002661122241988778, + -0.019826944917440414, + 0.012770403176546097, + -0.027405641973018646, + 0.03153812140226364, + 0.0020401314832270145, + -0.01820080727338791, + -0.03335820138454437, + -0.019826944917440414, + -0.009876175783574581, + -0.007809936534613371, + -0.023840073496103287, + 0.012822617776691914, + 0.011323289014399052, + 0.00913770031183958, + -0.017096824944019318, + -0.0013193720951676369, + -0.00026410751161165535, + -0.0243622288107872, + -0.006963300984352827, + 0.00016678633983246982, + -0.011755931191146374, + -0.009167538024485111, + 0.0056318072602152824, + 0.029449503868818283, + -0.01541101187467575, + -0.012748024426400661, + -0.0007813666597940028, + 0.0019450248219072819, + -0.014911235310137272, + -1.773051917552948e-5, + 0.006493362132459879, + 0.003968372941017151, + -0.004076533485203981, + 0.0014042221009731293, + 0.005863047204911709, + -0.014045950956642628, + -0.00014755521260667592, + -0.004427122883498669, + 0.001140347681939602, + -0.001961808418855071, + 0.0003289105952717364, + -0.03443234786391258, + -0.018320158123970032, + -0.01160674449056387, + -0.01470237411558628, + -0.014545727521181107, + -0.004632254596799612, + -0.003263464430347085, + -0.021527675911784172, + -0.00402431795373559, + -0.01092794444411993, + 0.006247203331440687, + 0.002595852827653289, + 0.015105178579688072, + 0.00325786997564137, + 0.008414143696427345, + 0.008421603590250015, + -0.0008531628409400582, + -0.003287707455456257, + -0.02005072496831417, + -0.015425930730998516, + 0.022109506651759148, + -0.006068178918212652, + -0.013687902130186558, + 0.024406984448432922, + -0.0021650756243616343, + 0.0003111946571152657, + 0.0002799586218316108, + 0.0016988663701340556, + 0.00466582179069519, + -0.016365807503461838, + -0.001876025926321745, + 0.022631660103797913, + -0.010458004660904408, + -0.017663734033703804, + 0.012397435493767262, + -0.008458900265395641, + 0.02536178193986416, + 0.0015711250016465783, + 0.0027152025140821934, + -0.013710280880331993, + 0.005340892821550369, + 0.016544831916689873, + -0.010383411310613155, + 0.0015077205607667565, + -0.014336865395307541, + -0.025197675451636314, + -0.015918247401714325, + 0.0073698353953659534, + 0.015858571976423264, + -0.0003627107653301209, + 0.005587051156908274, + 0.008466359227895737, + -0.015172312967479229, + 0.009883635677397251, + -0.0062621221877634525, + -0.01231538224965334, + 0.011069671250879765, + -0.0014107490424066782, + -0.006120394449681044, + -0.009361481294035912, + 0.031985681504011154, + 0.0041101002134382725, + -0.007906908169388771, + -0.000799082568846643, + 0.014359244145452976, + -0.004300314001739025, + -0.014307028613984585, + 0.024198122322559357, + -0.002946442225947976, + 0.030135763809084892, + 0.00725421542301774, + -0.003621513256803155, + -0.0026480683591216803, + 0.015470686368644238, + 0.016694020479917526, + -0.017962109297513962, + 0.004378636833280325, + -0.02215426228940487, + -0.01500820741057396, + -0.015813816338777542, + -0.015455767512321472, + 0.014993288554251194, + 0.0012289275182411075, + -0.009078025817871094, + 0.011069671250879765, + 0.000897918944247067, + -0.0043077729642391205, + -0.02322840876877308, + -0.014277190901339054, + -0.03890795633196831, + 0.01863344945013523, + 0.007519022095948458, + 0.026361333206295967, + -0.0013240341795608401, + 0.01201700884848833, + 0.0003734335768967867, + 0.006232284940779209, + -0.006530658807605505, + 0.012964345514774323, + 0.004982843995094299, + 0.004471878986805677, + -0.012658512219786644, + -0.02539161778986454, + -0.018499182537198067, + 0.00661271158605814, + 0.006530658807605505, + 0.0015161123592406511, + 0.0005501268897205591, + -0.012904671020805836, + 0.03000149503350258, + -0.013046398758888245, + -0.00823511928319931, + 0.004475608468055725, + -0.0030415488872677088, + 0.015038044191896915, + -0.005325973965227604, + -0.002284425077959895, + 0.010778756812214851, + 0.016723856329917908, + 0.015202149748802185, + -0.009212293662130833, + -0.020602717995643616, + 0.01578397862613201, + 0.04007161408662796, + -0.0047031184658408165, + -0.008108310401439667, + 0.008056094869971275, + -0.026600033044815063, + -0.008958675898611546, + 0.012300464324653149, + -0.005445323418825865, + -0.018469344824552536, + -0.00481873843818903, + -0.005579591728746891, + -0.02430255338549614, + 0.00030863049323670566, + -0.005590781103819609, + 0.00933164358139038, + 0.0022135614417493343, + -0.013978817500174046, + -0.007339997682720423, + 0.0019543489906936884, + 0.019468896090984344, + 0.006299418862909079, + -0.006631359923630953, + -0.02607787773013115, + 0.004837386775761843, + 0.007530211005359888, + 0.004464419558644295, + -0.009577802382409573, + -0.005012681242078543, + -0.000675070914439857, + -0.0052961367182433605, + 0.0017809191485866904, + -0.008861704729497433, + 0.022631660103797913, + 0.01108459010720253, + 0.014001195318996906, + -0.023168733343482018, + 0.012956886552274227, + -0.00821274146437645, + 0.015366255305707455, + 0.003162763314321637, + 0.01089064683765173, + 0.005665374454110861, + 0.02043861150741577, + 0.005434134509414434, + -0.006899896543473005, + 0.013941519893705845, + -0.001863904413767159, + -0.003856482682749629, + -0.020483367145061493, + -0.0016074894228950143, + -0.008272415958344936, + -0.019036253914237022, + -0.010495302267372608, + -0.00788453035056591, + 0.009525586850941181, + 0.010748920030891895, + 0.007436969317495823, + 0.007463077083230019, + -0.0016736910911276937, + -0.012994183227419853, + 0.01685812510550022, + 0.0075824265368282795, + 2.2509164409711957e-5, + -0.011591825634241104, + 0.015269284136593342, + -0.0168133694678545, + 0.0033268688712269068, + 0.020483367145061493, + -0.024929139763116837, + 0.009361481294035912, + 0.02469043992459774, + -0.010532598942518234, + -0.0039049682673066854, + 0.010823513381183147, + -0.0002834552142303437, + 0.011144264601171017, + -0.030165601521730423, + 0.007022975478321314, + 0.00019895478908438236, + -0.009443533606827259, + -0.0029259289149194956, + -0.0005780994542874396, + 0.005184246692806482, + -0.00930926576256752, + -0.004125019069761038, + -0.031627632677555084, + -0.004233179613947868, + -0.06611965596675873, + -0.0003375354572199285, + -0.0060905572026968, + 0.0112486956641078, + -0.01609727181494236, + -0.0012858050176873803, + 0.0006587536190636456, + 0.0029371180571615696, + 0.003145979717373848, + 0.011002537794411182, + 0.007537670433521271, + 0.0009501343593001366, + -0.01073400117456913, + -0.012486947700381279, + 0.001140347681939602, + 0.020468449220061302, + 0.0064411466009914875, + 0.026674626395106316, + 0.014142923057079315, + -0.000705840764567256, + -0.01612710952758789, + -0.015366255305707455, + -0.00778755871579051, + -0.008988513611257076, + 0.013359691016376019, + -0.011024915613234043, + 0.026406090706586838, + -0.007119947113096714, + 3.6539146094582975e-5, + -0.0060905572026968, + 0.004594957921653986, + -0.018797555938363075, + -0.0007389415986835957, + 0.011390423402190208, + 0.015485605224967003, + 0.015933165326714516, + 0.017365360632538795, + -0.03768462315201759, + 0.005538565572351217, + 0.01606743410229683, + 0.006396390497684479, + -0.002420558128505945, + -0.0007174959755502641, + 0.003261599689722061, + -0.004967925604432821, + 0.011554528959095478, + 0.01749962940812111, + 0.009092944674193859, + -0.007362375967204571, + 0.006717142183333635, + 0.00985379796475172, + -0.01360584981739521, + -0.004263016860932112, + -0.022721171379089355, + 0.022288529202342033, + -0.0078024775721132755, + 0.015067881904542446, + -0.020572880282998085, + 0.0007198270177468657, + -0.015455767512321472, + 0.0027021486312150955, + -0.01374011766165495, + -0.009906013496220112, + 0.0025044758804142475, + 0.019260035827755928, + 0.018708042800426483, + 0.0008969865157268941, + 0.03461137041449547, + 0.016977474093437195, + 0.015291661955416203, + -0.01538117416203022, + 0.012434732168912888, + -0.02042369358241558, + -9.003665763884783e-5, + -0.012024467810988426, + 0.0018769582966342568, + 0.01215127669274807, + -0.002247128402814269, + 0.014113085344433784, + 0.00023228874488268048, + 0.010458004660904408, + 0.007847233675420284, + -0.000699313823133707, + 0.012031927704811096, + -0.030284950509667397, + -0.013307475484907627, + 0.01609727181494236, + 0.014403999783098698, + -0.017037149518728256, + -0.0029371180571615696, + 0.019528571516275406, + 0.01757422275841236, + 0.021244222298264503, + 0.0006969827809371054, + 0.007436969317495823, + 0.01579889841377735, + 0.013926601968705654, + -0.005613158922642469, + 0.011405342258512974, + -0.023317920044064522, + 0.008473819121718407, + 0.02613755315542221, + -0.038878120481967926, + -0.0016587723512202501, + 0.018126213923096657, + -0.009734448045492172, + -0.03974340483546257, + -0.0032354919239878654, + -0.010517680086195469, + 0.0400119386613369, + 0.017693571746349335, + 0.00255109672434628, + -0.001677420805208385, + 0.007824855856597424, + -0.02033418044447899, + 0.007392213214188814, + -0.0049007912166416645, + -0.0055460250005126, + -0.010070119053125381, + -0.0172012560069561, + -0.0012923319591209292, + -0.024436822161078453, + -0.017783084884285927, + -0.029240641742944717, + 0.0026760408654809, + 0.019618084654211998, + 0.013837089762091637, + 0.0031832766253501177, + -0.004371177405118942, + 0.004412204027175903, + -0.02719677984714508, + 0.016171865165233612, + -0.009092944674193859, + 0.0026368792168796062, + 0.0013529391726478934, + -0.0028699839022010565, + 0.0006531591061502695, + 0.0006578211905434728, + 0.0041101002134382725, + -0.00258839363232255, + 0.011927496641874313, + 0.01570938527584076, + 0.0026723111514002085, + 0.010420707985758781, + -0.029897063970565796, + -0.009257050231099129, + 0.0071870810352265835, + -0.003127331379801035, + 0.010167090222239494, + -0.009189915843307972, + 0.002538043074309826, + 0.015396093018352985, + 0.0024709089193493128, + 0.016291214153170586, + 0.005068626720458269, + -0.00167275860439986, + -0.012494406662881374, + -0.02861405722796917, + 0.014635239727795124, + 0.011024915613234043, + -0.026033122092485428, + 0.015843654051423073, + -0.012039386667311192, + -0.013307475484907627, + -0.0009230942232534289, + 0.033746086061000824, + 0.008063554763793945, + 0.00017995675443671644, + -0.013486499898135662, + 0.017081905156373978, + 0.00418842351064086, + 0.004397285170853138, + -0.0179024338722229, + 0.019230198115110397, + 0.01308369543403387, + 0.008167985826730728, + -0.0060271527618169785, + 0.009943310171365738, + 0.006392660550773144, + -0.026271821931004524, + -0.007261674851179123, + -0.01902133598923683, + -0.010428167879581451, + -0.009652395732700825, + 0.014657617546617985, + -0.017723409458994865, + 0.015918247401714325, + 0.010338655672967434, + 0.0053147850558161736, + 0.004277935717254877, + -0.0022527228575199842, + 0.01606743410229683, + 0.009801582433283329, + 0.002426152816042304, + 0.0028065794613212347, + 0.021542595699429512, + -0.008511115796864033, + 0.0029016861226409674, + -0.005751156713813543, + -0.0033026260789483786, + 0.005609429441392422, + 0.0023813967127352953, + -0.02251231111586094, + 0.00026364129735156894, + -0.014948531985282898, + -0.012203492224216461, + -0.01644040085375309, + 0.0008690139511600137, + 0.0037035660352557898, + -0.011755931191146374, + -0.006176339462399483, + 0.012852455489337444, + 0.008414143696427345, + 0.030493812635540962, + -0.0007771707605570555, + -0.007757721468806267, + 0.010801134631037712, + -0.006679845508188009, + 0.011271074414253235, + 0.0026275550480931997, + -0.00857079029083252, + -0.020856335759162903, + -0.0019431599648669362, + -0.011226317845284939, + 0.004553931765258312, + 0.0017921081744134426, + -0.004971655085682869, + 0.010085037909448147, + 0.0020886173006147146, + 0.008623005822300911, + 0.027450399473309517, + 0.002804714720696211, + 0.014955991879105568, + -0.00555721390992403, + 0.024436822161078453, + 0.021751457825303078, + 0.014769507572054863, + 0.010845891200006008, + -0.010323736816644669, + -0.008458900265395641, + 0.021527675911784172, + 0.011852903291583061, + -0.0009007162298075855, + 0.000885797489900142, + -0.025123082101345062, + -0.003893779357895255, + 0.008548412472009659, + 0.011032374575734138, + -0.039206329733133316, + -0.0019282413413748145, + -0.01379979308694601, + -0.01269580889493227, + -0.0032895721960812807, + 0.024123528972268105, + 0.021751457825303078, + -0.015157394111156464, + -0.018320158123970032, + 0.008705058135092258, + 0.01004774123430252, + 0.017648816108703613, + -0.01056243572384119, + -0.0005100328708067536, + 0.006098016630858183, + 0.0007897584000602365, + 0.0036065944004803896, + -0.02251231111586094, + 0.007824855856597424, + 0.0036662693601101637, + 0.022795766592025757, + 0.017798002809286118, + 0.017066987231373787, + 0.007705505937337875, + 0.004677010700106621, + -0.021632106974720955, + -0.0070304349064826965, + -0.005907803308218718, + -0.0236610509455204, + 0.004516635090112686, + 0.026540357619524002, + 0.014530808664858341, + -0.021169627085328102, + 0.021632106974720955, + 0.00982396025210619, + 0.00031981951906345785, + 0.02357153780758381, + 0.006892437115311623, + -0.0073698353953659534, + 0.005613158922642469, + 0.00439355568960309, + -0.012546622194349766, + -0.008197822608053684, + 0.020572880282998085, + 0.004512905143201351, + -0.001015403657220304, + -0.018394751474261284, + 0.010323736816644669, + 0.016634345054626465, + 0.0012429137714207172, + -0.020170075818896294, + 0.0038714013062417507, + 0.009846339002251625, + 0.009391318075358868, + -0.009749366901814938, + 0.01110696792602539, + -0.020199913531541824, + 0.013590930961072445, + -0.02106519788503647, + 0.013240342028439045, + -0.00129979127086699, + 0.028509626165032387, + -0.012427273206412792, + -0.005706400610506535, + 0.010055200196802616, + -0.005251380614936352, + -0.004389825742691755, + 0.0046882000751793385, + 0.018678205087780952, + -0.0032839777413755655, + 0.0003028028877452016, + 0.013553634285926819, + 0.010853350162506104, + -0.013762496411800385, + 0.017231091856956482, + 0.016634345054626465, + 0.013829629868268967, + -0.01054005790501833, + -0.008466359227895737, + -0.02363121323287487, + -0.00019137888739351183, + 0.006739520467817783, + -0.010465464554727077, + 0.006415038835257292, + -0.013300016522407532, + 0.007250485476106405, + 0.0015459497226402164, + 0.012128898873925209, + 0.00286065973341465, + -0.009443533606827259, + -0.026689544320106506, + 0.002564150607213378, + 0.0030452786013484, + -0.027301210910081863, + 0.0019412952242419124, + -0.008167985826730728, + 0.002258317545056343, + -0.017066987231373787, + 0.01253916323184967, + -0.0023198570124804974, + 0.009712070226669312, + 0.008220200426876545, + 0.001547814579680562, + -0.009264509193599224, + 0.0044867973774671555, + 0.010741460137069225, + -0.025645235553383827, + 0.002347829518839717, + 0.03135909512639046, + 0.004259287379682064, + -0.004412204027175903, + -0.011517232283949852, + -0.005270028952509165, + -0.0297329593449831, + -0.00807847362011671, + 0.006888707168400288, + -0.012748024426400661, + 0.02213934250175953, + 0.00963747687637806, + 0.018021782860159874, + 0.0009072431130334735, + -0.019826944917440414, + 0.020155156031250954, + 0.002297478960826993, + 0.012121439911425114, + 0.01056989561766386, + 0.00807101372629404, + 0.010107415728271008, + -0.023347757756710052, + -0.009197375737130642, + -0.00028578625642694533, + -0.011017455719411373, + 0.04505445808172226, + 0.011576906777918339, + 0.015060422010719776, + -0.0062807705253362656, + 0.005695211701095104, + -0.02000596933066845, + -0.0034312999341636896, + -0.013203045353293419, + -0.007328808773308992, + -0.007891989313066006, + 0.004639714024960995, + -0.005486350040882826, + 0.016022678464651108, + 0.016171865165233612, + -0.0017632032977417111, + 0.0015151799889281392, + 0.009607639163732529, + 0.001429397496394813, + 0.007683127652853727, + -0.0009067769278772175, + 0.0016597048379480839, + 0.0031236016657203436, + -0.036312103271484375, + 0.01718633621931076, + 0.018797555938363075, + 2.791427687043324e-5, + 0.006929733790457249, + -0.011308371089398861, + -0.007127406541258097, + -0.007239296566694975, + -0.0018340670503675938, + -0.0045464723370969296, + -0.018872149288654327, + -0.01826048269867897, + -0.017648816108703613, + 0.01357601210474968, + 0.004639714024960995, + 0.003293301910161972, + 0.0035954054910689592, + -0.01289721205830574, + -0.010816053487360477, + -0.017604060471057892, + 0.01718633621931076, + -0.014888857491314411, + -0.008108310401439667, + -0.005042518954724073, + -0.0044867973774671555, + 0.010719082318246365, + -0.014993288554251194, + -0.019468896090984344, + 0.010480383411049843, + -0.010092496871948242, + -0.017648816108703613, + -0.0030378191731870174, + -0.0038490232545882463, + -0.01075637899339199, + 0.011748472228646278, + -0.027345968410372734, + 0.004195882938802242, + -0.0013137775240465999, + -0.004580039530992508, + 0.025973448529839516, + 0.014202597551047802, + 0.009055647999048233, + -0.012293004430830479, + 0.021557513624429703, + 0.0031553038861602545, + -0.012934508733451366, + 0.01963300257921219, + -0.015977922827005386, + 0.021617189049720764, + -0.003707295749336481, + -0.009055647999048233, + -0.008130689151585102, + -0.009973147884011269, + -0.015209609642624855, + -0.02861405722796917, + 0.0016000299947336316, + -0.0019543489906936884, + 0.02009548246860504, + -7.884763181209564e-5, + 0.005225272849202156, + 0.00024499293067492545, + -0.011457557789981365, + -0.003429434960708022, + 0.010793675668537617, + 0.006512010470032692, + -0.0005030397442169487, + 0.025913773104548454, + 0.0033958679996430874, + 0.0003757646190933883, + -0.011882740072906017, + 0.006377742160111666, + -0.006023423280566931, + 0.015112637542188168, + -0.012352678924798965, + -0.025197675451636314, + -0.008115770295262337, + -0.0048821428790688515, + 0.00491571007296443, + 0.01004774123430252, + -0.0006158623727969825, + -0.009428614750504494, + 0.025600479915738106, + -0.0027897958643734455, + -0.028106821700930595, + 0.0030881697311997414, + 0.007772639859467745, + -0.003524541622027755, + -0.005948829464614391, + -0.013710280880331993, + 0.01858869381248951, + 0.0010592273902148008, + 0.013695362024009228, + 0.003410786623135209, + 0.010577354580163956, + 0.0012979264138266444, + -0.0002601447340566665, + -0.010629570111632347, + 0.0019580787047743797, + -0.007489184848964214, + 0.004005669616162777, + 0.01930479146540165, + 0.0008284537470899522, + -0.019573327153921127, + -0.01182306557893753, + -0.015903329476714134, + 0.02328808233141899, + -0.012770403176546097, + -0.0011440773960202932, + 0.0028867674991488457, + 0.012427273206412792, + 0.0013100479263812304, + 0.014970910735428333, + 0.0016196108190342784, + -0.009779204614460468, + 0.00963747687637806, + -0.02862897515296936, + 0.007224378176033497, + -0.01966284029185772, + -0.023854993283748627, + 0.026256902143359184, + 0.004908250644803047, + -0.020572880282998085, + 0.009040729142725468, + 0.0004871886339969933, + -0.0064597949385643005, + -0.0035394602455198765, + -0.0076197232119739056, + -0.01360584981739521, + 0.010748920030891895, + -0.015120097436010838, + -0.01432194747030735, + 0.004930628463625908, + -0.007082650437951088, + 0.02928539738059044, + 0.003778159385547042, + -0.007108758203685284, + -0.012971805408596992, + 0.001974862301722169, + 0.009920932352542877, + 0.009674773551523685, + 0.005400567315518856, + 0.012218411080539227, + -0.006247203331440687, + -0.001554341521114111, + -0.00824257917702198, + 0.004908250644803047, + -0.00047087130951695144, + -0.0064597949385643005, + -0.0028401464223861694, + 0.0045427423901855946, + 0.006444876082241535, + -0.003923616837710142, + 0.0015935030533000827, + 0.000519823282957077, + 0.00546024227514863, + -0.014157840982079506, + -0.030508730560541153, + -0.003727808827534318, + 0.015440849587321281, + -0.000910040398593992, + 0.045203644782304764, + -0.00966731458902359, + -0.015321499668061733, + 0.013143369928002357, + 0.0013342907186597586, + 0.020602717995643616, + 0.02534686215221882, + -0.002668581437319517, + 0.013971357606351376, + 0.018887067213654518, + -0.007105028256773949, + -0.0020401314832270145, + -0.009212293662130833, + 0.01675369404256344, + 0.012143817730247974, + -0.0031030885875225067, + -0.021990155801177025, + -0.0007874273578636348, + 0.02642100863158703, + -8.450041787000373e-5, + -0.02178129367530346, + -0.00824257917702198 + ], + "75be21ee-7046-4af4-b9a7-834821f39c3a": [ + -0.041232723742723465, + -0.019501103088259697, + -0.01844957284629345, + 0.04273035749793053, + -0.005707737058401108, + -0.02044110745191574, + 0.027291985228657722, + 0.015024133957922459, + 0.02769029140472412, + 0.024041801691055298, + 0.01503210049122572, + -0.03008013218641281, + 0.011431406252086163, + -0.018513301387429237, + -0.012705988250672817, + 0.02381874993443489, + -0.054583970457315445, + 0.021158060058951378, + 0.014466504566371441, + -0.010228520259261131, + 0.053245659917593, + -0.027977073565125465, + -0.023420441895723343, + -0.011136659421026707, + 0.017095329239964485, + 0.006420706398785114, + -0.009384109638631344, + -0.007603677920997143, + -0.022448573261499405, + 0.012474970892071724, + 0.009870043955743313, + 0.015263118781149387, + 0.022878745570778847, + -0.017111262306571007, + 0.005516550038009882, + -0.04151950404047966, + -0.006237485446035862, + 0.0053054471500217915, + -0.006161807104945183, + -0.04900767281651497, + -0.01967635750770569, + 0.0607975572347641, + 0.022926542907953262, + -0.004022899083793163, + -0.021636027842760086, + 0.016776684671640396, + 0.020823482424020767, + -0.00802588276565075, + -0.028359446674585342, + 0.01297683734446764, + 0.01902313530445099, + 0.023133661597967148, + -0.004946970846503973, + 0.019724154844880104, + -0.011112760752439499, + -0.023691290989518166, + 0.016936007887125015, + 0.0971868708729744, + 0.03760016709566116, + -0.05397854372859001, + -0.01022055372595787, + -6.39158024569042e-5, + -0.01846550591289997, + 0.0051580737344920635, + -0.026320116594433784, + -0.024456040933728218, + -0.0238984115421772, + 0.022289251908659935, + -0.019214322790503502, + -0.012490903027355671, + 0.017605163156986237, + 0.01049936842173338, + -0.0026586982421576977, + 0.04193374514579773, + -0.0002942491846624762, + -0.04406866803765297, + 0.08756377547979355, + 0.0084441052749753, + 0.022145859897136688, + 0.024934008717536926, + -0.01552600134164095, + 0.051047004759311676, + 0.026144862174987793, + 0.017445839941501617, + 0.03540151193737984, + 0.019070932641625404, + -0.02009059675037861, + -0.051939211785793304, + 0.011893442831933498, + -0.0272760521620512, + 0.005755533929914236, + 0.04754190519452095, + 0.004915106575936079, + 0.030781153589487076, + -0.01207666378468275, + 0.018019402399659157, + 0.04196561127901077, + -0.00669155502691865, + 0.00802588276565075, + -0.0010565088596194983, + -0.008009950630366802, + 0.018258385360240936, + 0.00037042537587694824, + 0.01846550591289997, + -0.005651974119246006, + 0.004811546765267849, + -0.01763702742755413, + -0.010547165758907795, + -0.012092595919966698, + 0.051301922649145126, + -0.003754042088985443, + -0.024201124906539917, + -0.007655457593500614, + -0.004592477809637785, + -0.01120038889348507, + -0.0245516337454319, + -0.02512519620358944, + -0.02058449760079384, + -0.007659440860152245, + -0.028295718133449554, + 0.026559101417660713, + 0.01880008354783058, + -0.01844957284629345, + 0.009702755138278008, + -0.028773685917258263, + 0.0021886960603296757, + -0.014323114417493343, + -0.00180233852006495, + 0.005703754257410765, + 0.009870043955743313, + -0.030175726860761642, + -0.009535466320812702, + 0.015964139252901077, + 0.0016001977492123842, + -0.00836444366723299, + -0.00011513557547004893, + 0.023181458935141563, + 0.010857844725251198, + -0.03619812801480293, + 0.06146671250462532, + -0.022671625018119812, + -0.04120086133480072, + 0.017748553305864334, + -0.03152997046709061, + -0.020616361871361732, + -0.023850614205002785, + -0.029140129685401917, + 0.08609800785779953, + 0.005126208998262882, + 0.012172257527709007, + -0.03734524920582771, + -0.0314503088593483, + 0.01379734929651022, + -0.02423298917710781, + -0.04043611139059067, + -0.003746075788512826, + -0.021476704627275467, + 0.013566331006586552, + 0.01797160506248474, + 0.037026602774858475, + -0.048306655138731, + -0.020313648506999016, + 0.001839181873947382, + 0.0030450557824224234, + 0.025093331933021545, + 0.0030191659461706877, + 0.04069102928042412, + 0.03157776594161987, + 0.0013572305906563997, + 0.008539699018001556, + 0.019995003938674927, + -0.032756756991147995, + -0.008587495423853397, + 0.015095829963684082, + -0.02553943544626236, + -0.020536700263619423, + 0.01902313530445099, + 0.05668703094124794, + 0.018019402399659157, + -0.012315647676587105, + 0.004560613539069891, + 0.0009813285432755947, + -0.009328346699476242, + -0.021221788600087166, + 0.008268849924206734, + 0.010786149650812149, + 0.06465316563844681, + 0.0028936993330717087, + -0.021365178748965263, + -0.0035548885352909565, + 0.012745819054543972, + 0.023579765111207962, + -0.011033100076019764, + 0.020648226141929626, + -0.029315384104847908, + -0.012721920385956764, + -0.0012317639775574207, + -0.025905877351760864, + -0.00375802512280643, + 0.023053999990224838, + -0.0175414327532053, + -0.02569875866174698, + -0.022225521504878998, + 0.02561909705400467, + -0.022719422355294228, + 0.05741991475224495, + -0.011479203589260578, + 0.044960878789424896, + 0.024328581988811493, + -0.04894394427537918, + 0.014139893464744091, + -0.054329052567481995, + 0.008794615045189857, + 0.005213836673647165, + -0.004855360370129347, + 0.014354978688061237, + -0.012984802946448326, + 0.018720421940088272, + 0.009901908226311207, + -0.006556130480021238, + 0.012387342751026154, + 0.042634766548871994, + 0.011001234874129295, + -0.017812281847000122, + -0.04770122841000557, + -0.04120086133480072, + -0.010116994380950928, + 0.0368991456925869, + -0.038364917039871216, + 0.026144862174987793, + 0.04212493076920509, + -0.005050530657172203, + 0.012650225311517715, + -0.06277316063642502, + -0.02192280814051628, + 0.014402776025235653, + 0.019819749519228935, + -0.005922822747379541, + 0.03696287423372269, + -0.016681089997291565, + 0.0014259385643526912, + -0.003489167895168066, + -0.018768219277262688, + 0.018258385360240936, + 0.023213323205709457, + 0.013112260960042477, + -0.0019686315208673477, + 0.013287516310811043, + 0.0026925543788820505, + -0.01008512917906046, + 0.0387154258787632, + 0.01813092827796936, + 0.013399042189121246, + -0.0006771216285414994, + -0.03313912823796272, + 0.04097780957818031, + 0.04273035749793053, + -0.00671545322984457, + -0.024503836408257484, + -0.007046048063784838, + 0.003941246308386326, + 0.02141297608613968, + -0.0036046770401299, + 0.02125365287065506, + 0.011758018285036087, + -0.023547900840640068, + 0.03594321012496948, + -0.03807813301682472, + -0.006086128763854504, + 0.03664423152804375, + -0.02686181291937828, + 0.014187689870595932, + -0.008268849924206734, + 0.01351853460073471, + 0.021970605477690697, + 0.007296981289982796, + 0.01738211140036583, + -0.0099337724968791, + 0.005703754257410765, + -0.00016865805082488805, + 0.0014627819182351232, + 0.018592962995171547, + -0.03205573558807373, + 0.0003534973366186023, + 0.00689867464825511, + -0.013988536782562733, + -0.03664423152804375, + 0.0033019636757671833, + -0.044451043009757996, + 0.015836680307984352, + -0.001295492984354496, + 0.030526237562298775, + 0.004516799468547106, + -0.005986551754176617, + -0.02093500830233097, + -0.01408413052558899, + 0.0009056502021849155, + -0.01943737454712391, + 0.006133925635367632, + -0.0055284989066421986, + -0.03207166865468025, + -0.026575032621622086, + 0.0004234499647282064, + -0.039512038230895996, + 0.022193657234311104, + -0.028550634160637856, + 0.015772951766848564, + 0.0025133162271231413, + -0.03269302472472191, + -0.013709722086787224, + 0.010252417996525764, + -0.02297433838248253, + -0.022607896476984024, + -0.025411976501345634, + 0.008587495423853397, + -0.024742821231484413, + -0.0069823190569877625, + 0.02832758240401745, + -0.0034334049560129642, + -0.023452308028936386, + 0.022464506328105927, + -0.03543337807059288, + -0.06882742047309875, + 0.03358523175120354, + 0.02859843149781227, + -0.026304183527827263, + 0.017525501549243927, + 0.016760751605033875, + -0.032597433775663376, + 0.0007493147277273238, + -0.004397307522594929, + -0.02365942671895027, + -0.001933779800310731, + -0.0009330337634310126, + -0.007464270107448101, + -0.01821058988571167, + -0.02456756681203842, + -0.057388052344322205, + -0.005484685301780701, + -0.016274817287921906, + 0.0014060231624171138, + 0.016362445428967476, + -0.024981806054711342, + 0.013829213567078114, + -0.011773950420320034, + -0.007237235549837351, + -0.029315384104847908, + 0.02134924754500389, + -0.009169023483991623, + 0.003680355381220579, + 0.0010794115951284766, + -0.023452308028936386, + -0.008683089166879654, + 0.003965144511312246, + 0.018895676359534264, + 0.02579435147345066, + 0.008181222714483738, + -0.013056498020887375, + 0.04620359465479851, + -0.02232111617922783, + -0.01120038889348507, + -0.004648240748792887, + -0.009973603300750256, + 0.04693647846579552, + -0.027164526283740997, + 0.0020931025501340628, + -0.000519292545504868, + -0.010252417996525764, + -0.02538011223077774, + -0.02297433838248253, + -0.025396045297384262, + -0.0009977587033063173, + 0.0030171743128448725, + 0.007077912800014019, + -0.037026602774858475, + 0.0014587988844141364, + 0.05907687172293663, + 0.009105294942855835, + -0.002003483474254608, + 0.017780417576432228, + -0.01408413052558899, + 0.032246921211481094, + 0.026814017444849014, + -0.013940739445388317, + 0.04193374514579773, + -0.005337311886250973, + 0.002493400825187564, + 0.015780916437506676, + 0.006094094831496477, + 0.007265117019414902, + -0.01927805133163929, + -0.01977195218205452, + -0.005986551754176617, + -0.005795364733785391, + -0.02158823050558567, + 0.008013933897018433, + 0.006791131570935249, + -0.010101061314344406, + 0.032007940113544464, + -0.0004222052521072328, + -0.008667157031595707, + -0.005488668568432331, + -0.038014404475688934, + 0.011885476298630238, + 0.004417222924530506, + -0.01454616617411375, + -0.02101466991007328, + -0.012586496770381927, + 0.009941739030182362, + -0.0068349456414580345, + -0.025730622932314873, + 0.0006392825162038207, + 0.014203622005879879, + 0.0025093331933021545, + 0.046171728521585464, + -0.019756019115447998, + -0.007344778161495924, + 0.03301167115569115, + -0.011686323210597038, + -0.0198675449937582, + 0.034636761993169785, + 0.03664423152804375, + 0.0007702258881181479, + 0.01878415048122406, + -0.008746818639338017, + 0.018417708575725555, + -0.010164790786802769, + 0.04776495695114136, + -0.009623093530535698, + 0.0004921578802168369, + -0.02249637059867382, + 0.018561098724603653, + -0.022209590300917625, + -0.024408243596553802, + -0.004707986954599619, + -0.03833305090665817, + 0.01112072728574276, + -0.021030601114034653, + 0.025571299716830254, + 0.00397709384560585, + -0.005926806014031172, + 0.02587401308119297, + 0.0019686315208673477, + 0.00810952764004469, + -0.052034806460142136, + -0.03393574431538582, + -0.043367650359869, + -0.004134424962103367, + -0.019501103088259697, + 0.003752050455659628, + 0.022352980449795723, + 0.04368629679083824, + -0.04027678817510605, + 0.0036245922092348337, + 0.013853112235665321, + 0.009607161395251751, + 0.04441918060183525, + -0.0062454515136778355, + 0.074817955493927, + -0.018019402399659157, + -0.03798254206776619, + 0.022193657234311104, + 0.0032561584375798702, + -0.024089599028229713, + 0.04129645228385925, + -0.034573033452034, + 0.0266228299587965, + 0.030032336711883545, + 0.0044530704617500305, + 0.04187001660466194, + 0.002282298170030117, + -0.015836680307984352, + 0.002242467598989606, + -0.0020632294472306967, + 0.01112072728574276, + -0.027053000405430794, + 0.0007104798569343984, + 0.02216179296374321, + 0.030350981280207634, + 0.019485171884298325, + -0.039512038230895996, + 0.015183457173407078, + -0.0032501837704330683, + -0.0028518771287053823, + 0.01929398439824581, + 0.00743638863787055, + -0.019787883386015892, + -0.005918839946389198, + 0.036293718963861465, + -0.006209603976458311, + 0.022528234869241714, + 0.018338046967983246, + 0.01009309571236372, + 0.008930039592087269, + -0.030924543738365173, + -0.025396045297384262, + 0.008667157031595707, + -0.03313912823796272, + -0.00877868290990591, + -0.03114759549498558, + 0.03033505007624626, + -0.02240077778697014, + -0.016250919550657272, + 0.010148858651518822, + 0.03122725710272789, + 0.019628562033176422, + -0.02933131717145443, + 0.021795351058244705, + -0.004337561782449484, + -0.01132784690707922, + -0.05165243148803711, + -0.012036832980811596, + -0.024918075650930405, + 0.006149857770651579, + 0.00689867464825511, + 0.04196561127901077, + -0.017398042604327202, + 0.005221802741289139, + 0.0361025333404541, + -0.01911872811615467, + -0.01206869725137949, + -0.02612892910838127, + -0.02866216003894806, + 0.009240718558430672, + -0.006329095922410488, + 0.035815753042697906, + -0.012164290994405746, + -0.0037839149590581656, + 0.04505646973848343, + -0.031768955290317535, + -0.0076753729954361916, + 0.03511473163962364, + -0.006607910618185997, + 0.009734619408845901, + -0.005428922362625599, + 0.009583262726664543, + 0.014235486276447773, + 0.008786649443209171, + -0.0034095065202564, + 0.021731622517108917, + -0.022305183112621307, + 0.008611394092440605, + -0.004919089376926422, + -0.04218866303563118, + -0.022544167935848236, + 0.021811282262206078, + 0.0016270835185423493, + 0.0070858788676559925, + -0.0018192664720118046, + 0.016115495935082436, + -0.01712719351053238, + 0.01747770421206951, + 0.012498868629336357, + -0.0007876518066041172, + 0.010929539799690247, + -0.03568829223513603, + 0.025188924744725227, + -0.025746554136276245, + 0.021444840356707573, + -0.021301450207829475, + -0.0022564083337783813, + 0.04489714652299881, + 0.0063649434596300125, + -0.019995003938674927, + -0.03881102055311203, + -0.009431906044483185, + -0.0072491844184696674, + 0.00032337536686100066, + 9.260634396923706e-5, + 0.00815732404589653, + 0.01712719351053238, + 0.00940004177391529, + -0.009009701199829578, + -0.018513301387429237, + 0.009129192680120468, + -0.00288374163210392, + -0.008802581578493118, + -0.004723919089883566, + -0.03651677072048187, + -0.017780417576432228, + 0.007097828201949596, + -0.0002880256506614387, + -0.013916841708123684, + 0.006858843844383955, + 0.004413239657878876, + 0.010395809076726437, + -0.005616126582026482, + -0.015382610261440277, + -0.003076920285820961, + -0.0012855353998020291, + -0.010778183117508888, + 0.02907639928162098, + 0.005261633545160294, + -0.023436374962329865, + -0.01309632882475853, + 0.011240219697356224, + 0.0014119978295639157, + 0.05299074202775955, + 0.011232253164052963, + 0.006241468247026205, + 0.0168882105499506, + 0.009216820821166039, + 0.018322115764021873, + -0.012467004358768463, + -0.022432642057538033, + 0.030366914346814156, + -0.010491402819752693, + -0.020664159208536148, + 0.012108528055250645, + 0.007850628346204758, + -0.00021184945944696665, + -0.025029601529240608, + 0.026320116594433784, + -0.010132926516234875, + 0.038014404475688934, + 0.004990784917026758, + -0.014562098309397697, + 0.025682825595140457, + -0.0034573033917695284, + -0.005484685301780701, + 0.03960763290524483, + -0.01607566513121128, + 0.0509195476770401, + -0.023213323205709457, + 0.017174990847706795, + 0.04613986611366272, + -0.030207591131329536, + 0.005612143315374851, + -0.017764484509825706, + 0.0027144611813127995, + -0.015764985233545303, + 0.011519034393131733, + 0.005114260129630566, + -0.00972665287554264, + 0.013032600283622742, + 0.01664922572672367, + 0.002963403007015586, + -0.021444840356707573, + -0.026431642472743988, + 0.003574803937226534, + -0.022767219692468643, + -0.017366178333759308, + 0.009200887754559517, + 0.027977073565125465, + -0.014060231857001781, + -0.012212088331580162, + -0.005751550663262606, + 0.028646228834986687, + 0.02306993305683136, + 0.035815753042697906, + -0.030510304495692253, + -0.01453819964081049, + 0.01656956411898136, + 0.00988597609102726, + 0.013645992614328861, + -0.04862530156970024, + 0.0003119240573141724, + -0.004887225106358528, + 0.029219789430499077, + 0.023340782150626183, + 0.019995003938674927, + -0.011638525873422623, + 0.028948942199349403, + 0.022066200152039528, + 0.024328581988811493, + 0.007918340153992176, + 0.03227878734469414, + -0.038269322365522385, + 0.021636027842760086, + 0.019246187061071396, + -0.00262683373875916, + -0.021397043019533157, + 0.04359070211648941, + 0.007093844935297966, + -0.0025770452339202166, + 0.0034871764946728945, + -0.008300715126097202, + 0.006317146588116884, + 0.024041801691055298, + -0.012913107872009277, + -0.0019058982143178582, + -0.009280549362301826, + -0.016346512362360954, + 0.011909374967217445, + 0.03221505880355835, + 0.00350111722946167, + -0.011574797332286835, + 0.010148858651518822, + -0.014777184464037418, + 0.008089612238109112, + 0.005699770990759134, + 0.011542932130396366, + -0.04069102928042412, + 0.012753785587847233, + 0.01483294740319252, + -0.014562098309397697, + -0.012331579811871052, + 0.025937741622328758, + -0.00597061961889267, + -0.024280784651637077, + -0.018401775509119034, + 0.014171757735311985, + -0.016203122213482857, + -0.013534466736018658, + -0.0028160293586552143, + -0.013829213567078114, + -0.013462771661579609, + -0.02184314839541912, + 0.0065003675408661366, + 0.03696287423372269, + 0.008137408643960953, + 0.021556366235017776, + -0.010411741212010384, + 0.02506146766245365, + -0.015342779457569122, + -0.011638525873422623, + 0.016665158793330193, + 0.02528451941907406, + 0.005819262936711311, + 0.01207666378468275, + -0.0036664146464318037, + 0.05882195383310318, + 0.01400446891784668, + -0.021397043019533157, + -0.03527405485510826, + 0.025555366650223732, + 0.014904642477631569, + 0.024503836408257484, + 0.018720421940088272, + 0.004540698137134314, + 0.01000546757131815, + 0.011479203589260578, + -0.005930788815021515, + 0.014426673762500286, + -0.00525366747751832, + 0.007699271198362112, + -0.03693101182579994, + 0.0025272569619119167, + 0.053851086646318436, + -0.029395045712590218, + 0.006388841662555933, + -0.008308680728077888, + -0.0005880004609934986, + -0.01929398439824581, + -0.006707487162202597, + -0.00753994844853878, + 0.020488904789090157, + -0.006532232277095318, + -0.04136018455028534, + -0.01186954416334629, + 0.03310726583003998, + -0.010618860833346844, + 0.02850283868610859, + -0.0024854347575455904, + 9.553140989737585e-5, + -0.010602928698062897, + 0.01413192693144083, + -0.000632312148809433, + -0.014466504566371441, + 0.0058790091425180435, + -0.0036982791498303413, + 0.026336049661040306, + -0.011503101326525211, + -0.030589966103434563, + -0.014554131776094437, + 0.011224286630749702, + 0.003833703463897109, + 0.019150592386722565, + 0.003696287516504526, + 0.006846894510090351, + 0.026734355837106705, + 0.03339404612779617, + 0.02240077778697014, + 0.00873088650405407, + 0.015406508930027485, + 0.008969870395958424, + 0.020823482424020767, + -0.02200246974825859, + -0.04069102928042412, + 0.016840413212776184, + -0.0680626705288887, + -0.03830118477344513, + 0.015940239652991295, + -0.02998453937470913, + -0.0018103045877069235, + -0.015940239652991295, + 0.059522975236177444, + 0.029857080429792404, + 0.011144625954329967, + -0.020488904789090157, + 0.005823246203362942, + -0.008953938260674477, + -0.011909374967217445, + 0.02306993305683136, + 0.015764985233545303, + 0.005405023694038391, + 0.04397307708859444, + -0.011495135724544525, + 0.0024635279551148415, + 0.008866310119628906, + 0.01124818529933691, + -0.024009937420487404, + 0.036548636853694916, + 0.029936742037534714, + -0.03760016709566116, + -0.035975076258182526, + -0.01009309571236372, + 0.01795567199587822, + -0.030781153589487076, + 0.008507833816111088, + -0.009121227078139782, + -0.004954937379807234, + 0.00885037798434496, + 0.016043798997998238, + -0.03858796879649162, + -0.014386842958629131, + -0.004692054819315672, + -0.0008180227014236152, + 0.01805126667022705, + 0.007010200526565313, + -0.026734355837106705, + 0.011184455826878548, + 0.019883478060364723, + -0.01813092827796936, + 0.015956172719597816, + -0.04945377632975578, + -0.0038715426344424486, + -0.01763702742755413, + 0.00802986603230238, + 0.013709722086787224, + -0.02767436020076275, + -0.021237721666693687, + 0.0065003675408661366, + 0.014490403234958649, + 0.01099326927214861, + 0.022767219692468643, + -0.03262929618358612, + 0.029060468077659607, + -0.01746177300810814, + 0.017031600698828697, + -0.02506146766245365, + -0.004946970846503973, + 0.0027264102827757597, + -0.008993769064545631, + -0.000779187772423029, + -0.04550257325172424, + 0.010124959982931614, + -0.010435638949275017, + 0.021046534180641174, + 0.011112760752439499, + 0.017652958631515503, + -0.03178488463163376, + 0.017015667632222176, + 0.047414448112249374, + -0.020138394087553024, + -0.0014119978295639157, + -0.01566142588853836, + 0.008515800349414349, + -0.030255388468503952, + -0.007480202708393335, + 0.010451572015881538, + 0.03165742754936218, + -0.02824792079627514, + 0.01235547848045826, + -0.02447197213768959, + -0.024997737258672714, + -0.029379112645983696, + 0.001824245322495699, + -0.0032342516351491213, + -0.008428173139691353, + -0.021890943869948387, + 0.019787883386015892, + -0.0024914094246923923, + 0.017764484509825706, + -0.002750308718532324, + 0.006938505452126265, + -0.015119727700948715, + 0.01679261587560177, + -0.02259196527302265, + -0.011208354495465755, + -0.038842882961034775, + -0.011622593738138676, + 0.00091361632803455, + -0.011526999995112419, + -0.04607613757252693, + 0.002083144849166274, + 0.01870448887348175, + -0.016776684671640396, + -0.01647397130727768, + 0.01001343410462141, + 0.028566567227244377, + 0.013741586357355118, + -0.013335313647985458, + -0.026973338797688484, + -0.015414474532008171, + 0.012132426723837852, + 0.020202122628688812, + -0.018433641642332077, + 0.020154327154159546, + -0.028789618983864784, + 0.0031147594563663006, + -0.028120463714003563, + -0.020457040518522263, + 0.019086863845586777, + 0.0036923044826835394, + -0.052608367055654526, + 0.04731885343790054, + 0.005086378660053015, + 0.011288016103208065, + 0.00865122489631176, + 0.005257650278508663, + 0.014219554141163826, + 0.02901267074048519, + -0.03568829223513603, + 0.04878462105989456, + 0.030175726860761642, + 0.012554631568491459, + 0.0166332945227623, + 0.008930039592087269, + -0.03434998169541359, + 0.0013771458761766553, + 0.00586705980822444, + 0.0001491161237936467, + 0.004867309704422951, + 0.004524766001850367, + -0.014426673762500286, + -0.021046534180641174, + -0.002132933121174574, + 0.0200109351426363, + 0.012586496770381927, + 0.008675123564898968, + 0.00783071294426918, + 0.012753785587847233, + -0.014378877356648445, + 0.024742821231484413, + -0.011789882555603981, + 0.02275128662586212, + -0.0006268353899940848, + -0.012028866447508335, + -0.01022055372595787, + -0.011750051751732826, + 0.008436138741672039, + 0.017493637278676033, + -0.011208354495465755, + 0.020281784236431122, + -0.011750051751732826, + -0.0014518284006044269, + 0.021476704627275467, + 0.008197154849767685, + 0.008587495423853397, + 0.018672624602913857, + -0.011694288812577724, + -0.0037560334894806147, + -0.0031605649273842573, + 0.0039034071378409863, + 0.02907639928162098, + -0.007169523276388645, + 0.017860079184174538, + 0.020457040518522263, + 0.003965144511312246, + -0.0020214072428643703, + 0.007380625698715448, + -0.011590729467570782, + 0.0008389338036067784, + -0.021205857396125793, + -4.8325822717742994e-5, + -0.02109433151781559, + 0.02431265078485012, + -0.010594962164759636, + -0.012666157446801662, + -0.0171431265771389, + 0.003525015665218234, + -0.00919292215257883, + 0.03591134399175644, + 0.0051740058697760105, + -0.006356977391988039, + -0.029458774253726006, + 0.012960905209183693, + 0.00243166321888566, + -0.0036604399792850018, + 0.03677168861031532, + 0.004198153968900442, + 0.008308680728077888, + -0.0029733607079833746, + -0.004779682029038668, + -0.022942474111914635, + -0.028439108282327652, + -0.004078662022948265, + -0.013653959147632122, + 0.025762487202882767, + 0.014880743809044361, + -0.022958407178521156, + 0.0025790368672460318, + -0.009423940442502499, + 0.03371269255876541, + 0.02743537537753582, + -0.02520485781133175, + -0.006157823838293552, + -0.014530234038829803, + -0.007671389728784561, + -0.009081396274268627, + -0.02091907523572445, + -0.018274318426847458, + 0.03205573558807373, + -0.012060731649398804, + 0.028646228834986687, + 0.00494298804551363, + -0.0059746028855443, + -0.00741249043494463, + 0.030032336711883545, + -0.011295982636511326, + -0.02002686820924282, + 0.023611629381775856, + -0.004182221833616495, + 0.010786149650812149, + 0.025842148810625076, + -0.03578388690948486, + -0.010650725103914738, + -0.03313912823796272, + 0.029761487618088722, + -0.008121476508677006, + -0.014888710342347622, + 0.0030171743128448725, + -0.007882492616772652, + -0.005520532839000225, + 0.030191659927368164, + -0.0074682533740997314, + -0.01911872811615467, + 0.011694288812577724, + 0.0013313406379893422, + -0.007922323420643806, + -0.019963139668107033, + 0.03000047244131565, + -0.0002057503879768774, + 0.007145625073462725, + -0.019995003938674927, + -0.01927805133163929, + -0.10088315606117249, + -0.021540435031056404, + -0.0297455545514822, + 0.029857080429792404, + -0.0011351745342835784, + -0.000513317936565727, + 0.001026635873131454, + 0.0024914094246923923, + 0.00951953325420618, + 0.002678613644093275, + 0.026495371013879776, + -0.0136380260810256, + -0.0014677607687190175, + 0.02808859944343567, + -0.0001146999275078997, + 0.0048195128329098225, + 0.012881243601441383, + -0.022687558084726334, + 0.0038755256682634354, + -0.027562834322452545, + -0.003592727705836296, + -0.0040985774248838425, + 0.015932273119688034, + 0.002575053833425045, + -0.0033895913511514664, + 0.02324518747627735, + -0.01104106567800045, + -0.01803533360362053, + -0.017764484509825706, + -0.02561909705400467, + 0.018481437116861343, + 0.0048354449681937695, + -0.00959919486194849, + 0.0004329097573645413, + -0.010316147468984127, + 0.010802081786096096, + 0.014888710342347622, + -0.020727887749671936, + 0.000438386487076059, + 0.010467504151165485, + -0.004508833400905132, + -0.0030530220828950405, + -0.007579779252409935, + 0.0005282544298097491, + 0.027132662013173103, + 0.004548664204776287, + 0.0223370473831892, + -0.024583498015999794, + -0.02217772603034973, + -0.0025810282677412033, + 0.034796085208654404, + 0.0077191866002976894, + -0.0060741794295609, + -0.019421441480517387, + 0.023914342746138573, + 0.014848879538476467, + 0.014283283613622189, + -0.005699770990759134, + 0.011104795150458813, + -0.02660689689218998, + 0.08348511159420013, + 0.014076163992285728, + 0.017159059643745422, + -0.012618361040949821, + -0.01495243888348341, + 0.004305697046220303, + 0.016999736428260803, + 0.03527405485510826, + 0.011901408433914185, + 0.006580029148608446, + -0.033903878182172775, + -0.013231753371655941, + 0.009304448030889034, + 0.04381375387310982, + 0.003574803937226534, + 0.00216280622407794, + 0.007392575033009052, + 0.04795614257454872, + -0.0022524252999573946, + -0.0012805565493181348, + -0.01589244231581688, + 0.013940739445388317, + 0.02545977383852005, + -0.009455804713070393, + -0.025507571175694466, + -0.009439872577786446, + 0.006173755973577499, + -0.026638761162757874, + -0.011630560271441936, + -0.0062613836489617825, + 0.009041565470397472, + -0.019756019115447998, + 0.03667609393596649, + 0.006237485446035862, + -0.005197904538363218, + -0.009320380166172981, + -0.014562098309397697, + 0.03089267946779728, + -0.02464722841978073, + -0.016346512362360954, + -0.012841412797570229, + 0.008890208788216114, + 0.00525366747751832, + -0.009997501969337463, + 0.0037122198846191168, + -0.01886381208896637, + 0.013343279249966145, + 0.02240077778697014, + 0.012634293176233768, + -0.007862577214837074, + 0.008229019120335579, + 0.008173256181180477, + -0.011144625954329967, + 0.0030749288853257895, + -0.019134661182761192, + 0.018258385360240936, + -0.011463271453976631, + 0.005245701409876347, + 0.0031784886959940195, + -0.024041801691055298, + -0.00906546413898468, + 0.011112760752439499, + 0.0004117497010156512, + -0.024009937420487404, + 0.005655957385897636, + 0.0310520026832819, + -0.015024133957922459, + -0.027164526283740997, + 0.007647491525858641, + 0.0037859065923839808, + 0.02291060984134674, + -0.013454805128276348, + 0.0016141384840011597, + -0.004341544583439827, + -0.010196655057370663, + 0.021476704627275467, + 0.02299027144908905, + 0.005739601794630289, + 0.007169523276388645, + -0.05241718143224716, + -0.013550398871302605, + -0.022066200152039528, + 0.011638525873422623, + 0.010196655057370663, + -0.021604163572192192, + -0.0035369647666811943, + -0.0030231489799916744, + -0.020632294937968254, + 0.01574108749628067, + -0.01927805133163929, + -0.003684338415041566, + 0.002178738359361887, + 0.013574297539889812, + -0.011240219697356224, + -0.029474707320332527, + -0.001881999894976616, + -0.0007966136909089983, + 0.006038331892341375, + -0.006297231186181307, + -0.03285234794020653, + 0.011049032211303711, + 0.0035509055014699697, + -0.0034831934608519077, + 0.0078068142756819725, + 0.01050733495503664, + -0.02447197213768959, + -0.00807766243815422, + -0.0013144125696271658, + -0.022671625018119812, + -0.018752286210656166, + -0.003598702372983098, + -0.014880743809044361, + -0.0001585759164299816, + -0.027212323620915413, + 0.006472486071288586, + -0.017366178333759308, + -0.01248293649405241, + -0.04037238284945488, + 0.03600693866610527, + -0.004146374296396971, + -0.01951703615486622, + 0.01144733838737011, + 0.0037042535841464996, + 0.012705988250672817, + -0.017238721251487732, + 0.03154590353369713, + -0.018306182697415352, + 0.027228256687521935, + -0.031673360615968704, + -0.018401775509119034, + 0.015087863430380821, + 0.023930275812745094, + -0.018688557669520378, + -0.004449087660759687, + -0.010698521509766579, + -0.0039352718740701675, + 0.013056498020887375, + 0.02628825232386589, + -0.014737353660166264, + -0.028231989592313766, + -0.0011341787176206708, + 0.005365193355828524, + 0.029219789430499077, + 0.0035728125367313623, + -0.0064844354055821896, + -0.012737852521240711, + -0.06748910993337631, + 0.009240718558430672, + 0.007862577214837074, + -0.00783071294426918, + 0.003220310900360346, + 0.018226521089673042, + 0.020982805639505386, + -0.018274318426847458, + 0.014665658585727215, + -0.006635792087763548, + 0.010387842543423176, + -0.014474471099674702, + -0.0050545139238238335, + -0.027403511106967926, + 0.01747770421206951, + -8.793868619250134e-5, + 0.021620094776153564, + -0.011813781224191189, + 0.026320116594433784, + 0.012952938675880432, + 0.008539699018001556, + -0.05678262561559677, + -0.02528451941907406, + 0.0008040819666348398, + 0.002238484565168619, + 0.015063964761793613, + -0.0028060716576874256, + 0.009495635516941547, + 0.026957407593727112, + -0.0019148602150380611, + 0.02577841840684414, + -0.00828478205949068, + 0.02257603220641613, + -0.004946970846503973, + -0.020202122628688812, + -0.01597210392355919, + -0.006838928442448378, + 0.03170522674918175, + 0.028821483254432678, + 0.02769029140472412, + -0.0063649434596300125, + -0.0248065497726202, + -0.010061230510473251, + 0.012020900845527649, + 0.021540435031056404, + -0.018991271033883095, + -0.006703504361212254, + 0.01186954416334629, + 0.015048032626509666, + -0.0193577129393816, + -0.016856346279382706, + -0.03521032631397247, + 0.0024615363217890263, + 0.004795614629983902, + -0.0075877453200519085, + 0.01343090645968914, + 0.01967635750770569, + -0.014474471099674702, + 0.02010652981698513, + -0.017350247129797935, + 0.005114260129630566, + 0.014020401053130627, + 0.009455804713070393, + -0.015374644659459591, + 0.00852376688271761, + 0.00442518899217248, + -0.006787148769944906, + -0.003815779695287347, + 0.00012210595014039427, + 0.010348011739552021, + 0.016776684671640396, + -0.026304183527827263, + 0.00607816269621253, + -0.010188689455389977, + -0.017684824764728546, + -0.0003965642536059022, + -0.029267586767673492, + 0.003489167895168066, + 0.008635292761027813, + -0.006110026966780424, + 0.01017275732010603, + 0.012506835162639618, + 0.026893679052591324, + -0.017652958631515503, + 0.008483936078846455, + -0.008356478065252304, + 0.014498368836939335, + -0.007639525458216667, + 0.005102310795336962, + 0.005452820565551519, + -0.023786885663866997, + -0.006556130480021238, + -0.0007323867175728083, + -0.0014070189790800214, + 0.013295482844114304, + 0.0037341266870498657, + -0.015804816037416458, + 0.029888946563005447, + -0.02431265078485012, + -0.00022728384647052735, + 0.012729886919260025, + -0.009208854287862778, + 0.009105294942855835, + -0.010435638949275017, + 0.0033537435811012983, + 0.012474970892071724, + -0.025396045297384262, + -0.016091596335172653, + 1.1435763553890865e-6, + -0.0014468496665358543, + 0.005934772081673145, + -0.0016141384840011597, + -0.003805821994319558, + -0.008882242254912853, + -0.0037938726600259542, + -0.010515300557017326, + 0.02125365287065506, + 0.002682596677914262, + -0.00537714222446084, + 0.009280549362301826, + -0.0032422177027910948, + -0.0008792623411864042, + 0.005504600703716278, + -0.004711970221251249, + -0.02099873684346676, + 0.03288421407341957, + -0.022687558084726334, + 0.0030450557824224234, + 0.0045725624077022076, + -0.0035887446720153093, + 0.003357726614922285, + -0.005265616346150637, + -0.0011232253164052963, + -0.0016768717905506492, + 0.021572299301624298, + 0.03833305090665817, + -0.01854516752064228, + -0.013972604647278786, + 0.0022185691632330418, + 0.03237438201904297, + -0.006902657449245453, + 0.02966589480638504, + 0.03830118477344513, + 0.000259646272752434, + -0.00452874880284071, + -0.00640875706449151, + 0.0017406009137630463, + -0.00877071637660265, + 0.02703706920146942, + 0.010945471934974194, + -0.019007202237844467, + 0.01795567199587822, + -0.0036982791498303413, + -0.023292984813451767, + 0.015294983051717281, + -0.009981569834053516, + -0.0023997987154871225, + 0.005564346443861723, + -0.0012058740248903632, + 0.02232111617922783, + 0.007332829292863607, + -0.0028578515630215406, + 0.0030709458515048027, + -0.03524218872189522, + 0.0005760513013228774, + 0.006472486071288586, + -0.01433108001947403, + -0.004002983681857586, + -0.004887225106358528, + -0.009145124815404415, + 0.020887210965156555, + -0.02456756681203842, + 0.0005845152772963047, + 0.011495135724544525, + -0.0075558810494840145, + 0.021699756383895874, + -0.03524218872189522, + -0.03329845145344734, + -0.005787398666143417, + 0.012968870811164379, + 0.016442107036709785, + 0.006253417581319809, + -0.01704753376543522, + -0.002734376583248377, + 0.0057754493318498135, + -0.011479203589260578, + -0.00023699257872067392, + -0.015207355841994286, + -0.001985559705644846, + 0.0036923044826835394, + 0.013223787769675255, + 0.010794115252792835, + -0.02348417229950428, + 0.008300715126097202, + -0.026973338797688484, + -0.0035827700048685074, + -0.01482498086988926, + 0.0361025333404541, + 0.00741647370159626, + 0.013900908641517162, + 0.019341779872775078, + -0.013446839526295662, + -0.009463770315051079, + -0.01589244231581688, + -0.018577031791210175, + -0.00741249043494463, + 0.004353493917733431, + -0.025507571175694466, + -0.007125709671527147, + -0.010308180935680866, + -0.0013791375095024705, + 0.012841412797570229, + 0.01682448200881481, + 0.007476219441741705, + 0.0028857330325990915, + -0.0069544375874102116, + 0.016585497185587883, + -0.020791618153452873, + -0.0005770470597781241, + 0.004401290789246559, + -0.011638525873422623, + -0.04078662022948265, + -0.001854118425399065, + 0.04588494822382927, + -0.011319880373775959, + -0.019485171884298325, + 0.013908875174820423, + -0.013916841708123684, + 0.01803533360362053, + 0.007902408018708229, + 0.01967635750770569, + -0.03170522674918175, + -0.0109136076644063, + -0.02034551464021206, + -0.04327205568552017, + -0.010340046137571335, + 0.003684338415041566, + -0.029474707320332527, + 0.014522267505526543, + -0.00315259862691164, + 0.013630060479044914, + -0.009535466320812702, + 0.008468003943562508, + -0.005600194446742535, + 0.011264117434620857, + -0.02125365287065506, + 0.035465240478515625, + -0.01722278818488121, + -0.006787148769944906, + 0.00298730144277215, + -0.010387842543423176, + -0.000886232708580792, + -0.023452308028936386, + 0.01421158853918314, + 0.017270585522055626, + -0.013080396689474583, + -0.015430407598614693, + -0.002160814590752125, + 0.012459037825465202, + 0.00828478205949068, + 0.02388247847557068, + 0.0032402263022959232, + -0.01738211140036583, + -0.012937006540596485, + -0.03203980252146721, + -0.042316120117902756, + -0.013287516310811043, + 0.022639760747551918, + 0.004958920180797577, + -0.025236722081899643, + 0.006018416490405798, + -0.0003801340935751796, + -0.014347013086080551, + -4.8419176891911775e-5, + 0.0048195128329098225, + -0.004548664204776287, + 0.017812281847000122, + -0.004241968039423227, + 0.02125365287065506, + -0.02184314839541912, + 0.0034911595284938812, + -0.013279550708830357, + -0.021444840356707573, + 0.01655363291501999, + -0.012036832980811596, + 0.01755736581981182, + 0.004743834491819143, + 0.009455804713070393, + 0.009200887754559517, + -0.030096065253019333, + -0.0121483588591218, + -0.0011421449016779661, + 0.013709722086787224, + -0.001069453894160688, + 0.011726154014468193, + -0.004883241839706898, + -0.011383609846234322, + -0.011064964346587658, + -0.004269849509000778, + -0.018672624602913857, + -0.02184314839541912, + 0.015701256692409515, + 0.006890708580613136, + -0.006755284033715725, + -0.015183457173407078, + 0.014490403234958649, + 0.0002663677150849253, + 0.0025252653285861015, + 0.0027323849499225616, + 0.0005387100391089916, + 0.009169023483991623, + 0.006396808195859194, + -0.010953438468277454, + -0.004154340364038944, + -0.010069197043776512, + -0.004257900174707174, + -0.0030709458515048027, + -0.016362445428967476, + 0.01631464809179306, + 0.033999472856521606, + 0.006727402564138174, + -0.001197907840833068, + 0.002907640067860484, + -0.008221053518354893, + 0.008483936078846455, + 0.016131427139043808, + -0.0014100061962381005, + 0.013136159628629684, + 0.0074563040398061275, + -0.0017167024780064821, + 0.006213586777448654, + -0.012347511947154999, + -0.018656693398952484, + -0.029522502794861794, + -0.007169523276388645, + 0.011781916953623295, + 0.002598952269181609, + 0.006420706398785114, + -0.011423440650105476, + 0.09750551730394363, + -0.023133661597967148, + 0.02200246974825859, + 0.002592977602034807, + 0.0065003675408661366, + -0.013399042189121246, + -0.0029255638364702463, + 0.01970822364091873, + 0.007404524367302656, + -0.0007099819486029446, + 0.0036166261415928602, + -0.01549413613975048, + 0.015191422775387764, + 0.0196126289665699, + -0.016179224476218224, + 0.0002932534262072295, + 0.01886381208896637, + 0.01838584430515766, + 0.010571063496172428, + 0.01515955850481987, + -0.0017157067777588964, + -0.0063490113243460655, + 0.0028060716576874256, + -0.005162056535482407, + -0.01228378340601921, + 0.005106293596327305, + 0.008105544373393059, + -0.011383609846234322, + 0.047095801681280136, + 0.026240454986691475, + -0.000675130111631006, + 0.0032402263022959232, + 0.006444604601711035, + -0.03995814174413681, + -0.0009285528212785721, + 0.022193657234311104, + -0.00028827457572333515, + 0.010348011739552021, + 0.010475469753146172, + 0.01186157763004303, + -0.012427173554897308, + -0.004851377569139004, + 0.015199389308691025, + 0.020329581573605537, + -0.0011530983028933406, + -0.03071742318570614, + 0.012713954783976078, + -0.0004097581550013274, + -0.0010475469753146172, + 0.007962154224514961, + -0.017860079184174538, + -0.025571299716830254, + 0.002847893862053752, + 0.004441121127456427, + 0.016936007887125015, + -0.008539699018001556, + 0.0012457047123461962, + -0.009137159213423729, + 0.011319880373775959, + 0.007480202708393335, + -0.023197390139102936, + -0.011343779042363167, + -0.011439372785389423, + -0.02577841840684414, + -0.011335812509059906, + -0.01870448887348175, + -0.03352150321006775, + -0.023181458935141563, + 0.00202837772667408, + -0.01970822364091873, + 0.0003915854322258383, + 0.016665158793330193, + -0.00011550898489076644, + -0.03887474909424782, + 0.01878415048122406, + 0.03814186528325081, + 0.007328846026211977, + 0.01206869725137949, + 0.013446839526295662, + 0.023213323205709457, + -0.0016928041586652398, + 0.006293248385190964, + 0.0008055755752138793, + -0.012052765116095543, + -0.010491402819752693, + -0.005632058717310429, + 0.02447197213768959, + -0.03294794261455536, + 0.008069696836173534, + -0.014522267505526543, + -0.014570064842700958, + 0.01846550591289997, + 0.012323614209890366, + -0.005102310795336962, + 0.014737353660166264, + -0.0027841648552566767, + 0.011359711177647114, + 0.011367677710950375, + -0.003262133104726672, + 0.004293747711926699, + 0.029458774253726006, + 0.024663159623742104, + -0.011750051751732826, + -0.0003126708616036922, + 0.0009330337634310126, + -0.001854118425399065, + 0.025810284540057182, + -0.003971119411289692, + -0.028869280591607094, + 8.974350930657238e-5, + -0.0019039066974073648, + 0.009113260544836521, + 0.004178239032626152, + 0.01281751412898302, + 0.001478714169934392, + -0.012172257527709007, + 0.004520782735198736, + 0.007934272289276123, + -0.012634293176233768, + -0.015071931295096874, + -0.012028866447508335, + 0.011503101326525211, + 0.019963139668107033, + -0.010411741212010384, + 0.008065713569521904, + 0.008587495423853397, + -0.010260384529829025, + -0.00279213092289865, + -0.012698022648692131, + 0.0007513063028454781, + 0.02150856889784336, + 0.006540198344737291, + 0.026336049661040306, + -0.008396307937800884, + 0.026081131771206856, + -0.004931038711220026, + -0.016856346279382706, + 0.0002890214091166854, + 0.02158823050558567, + 0.003278065240010619, + 0.023770952597260475, + 0.002563104499131441, + 0.009583262726664543, + -0.006205620709806681, + 0.017493637278676033, + 0.014761251397430897, + -0.02141297608613968, + -0.01919838972389698, + 0.01943737454712391, + -0.006942488253116608, + 0.03152997046709061, + -0.04594867676496506, + 0.022113995626568794, + -0.0013771458761766553, + 0.009288515895605087, + -0.0013393068220466375, + 8.426679414696991e-5, + 0.019995003938674927, + -0.012411241419613361, + 0.0018103045877069235, + -0.008213086985051632, + -0.00795020442456007, + 0.021811282262206078, + -0.0027104781474918127, + 4.3595930037554353e-5, + 0.0014568072510883212, + 0.00873088650405407, + 0.016171257942914963, + 0.019150592386722565, + -0.009893941693007946, + 0.000699526397511363, + -0.004560613539069891, + 0.013359211385250092, + -0.026877745985984802, + 0.0007428422686643898, + -0.019166525453329086, + 0.00873088650405407, + -0.000378889380954206, + 0.005110276862978935, + -0.003335819812491536, + -0.0196126289665699, + -0.022480439394712448, + 0.013932773843407631, + -0.012905142270028591, + 0.013327347114682198, + -0.013112260960042477, + 0.018433641642332077, + -0.0164899043738842, + 0.0028877246659249067, + -0.0028956907335668802, + -0.025109263136982918, + 0.01655363291501999, + -0.004775699228048325, + -0.0288374163210392, + -0.014992269687354565, + 0.013207854703068733, + 0.0032462007366120815, + 0.033075399696826935, + -0.0013691798085346818, + -0.00017973595822695643, + 0.0027821732219308615, + 0.0013462771894410253, + 0.007420456502586603, + 0.009925806894898415, + -0.004405273590236902, + 0.00395319564267993, + 0.008842412382364273, + -0.011025133542716503, + 0.005185955204069614, + -0.005548414308577776, + -0.054679565131664276, + -0.018816014751791954, + 0.007508084177970886, + -0.002254416700452566, + -0.02340451069176197, + 0.029681826010346413, + -0.0013223787536844611, + 0.004851377569139004, + -0.003678363747894764, + 0.008794615045189857, + -0.006520282942801714, + 0.01281751412898302, + 0.011805814690887928, + 0.009344278834760189, + -0.0015862570144236088, + 0.0007707237382419407, + 0.006404774263501167, + 0.03006420098245144, + 0.033903878182172775, + -0.0004973856848664582, + 0.00905749760568142, + -0.01228378340601921, + 0.0005496634403243661, + 0.010523267090320587, + -0.006504350807517767, + 0.006325112655758858, + 0.0019218305824324489, + -0.008890208788216114, + 0.009575296193361282, + 0.0002008960145758465, + -0.016123460605740547, + 0.005018666386604309, + -0.003684338415041566, + -0.0025093331933021545, + 0.01429125014692545, + -0.014147859066724777, + 0.004249934107065201, + 0.003919339273124933, + -0.004194171167910099, + -3.015307265741285e-5, + -0.0166332945227623, + -0.007364693563431501, + -0.011208354495465755, + 0.007428422570228577, + 0.00951953325420618, + 0.004253916908055544, + -0.009415973909199238, + 0.003164547961205244, + 0.006372909527271986, + 0.0032023871317505836, + 0.01789194345474243, + -0.003939254675060511, + -0.002670647343620658, + -0.0009658940834924579, + -0.00885037798434496, + 0.01235547848045826, + -0.014554131776094437, + 0.01482498086988926, + 0.016163291409611702, + -0.001249687746167183, + -0.0055563803762197495, + 0.0029554367065429688, + -0.008499868214130402, + 0.018258385360240936, + -0.014864811673760414, + -0.0031227257568389177, + -0.0020751787815243006, + -0.02176348678767681, + -0.011997002176940441, + -0.0040985774248838425, + -0.0245516337454319, + 0.005640024784952402, + 0.0072173201479017735, + -0.019644493237137794, + -0.0002905150467995554, + -0.014068197458982468, + 0.013032600283622742, + 0.021875012665987015, + -0.00537714222446084, + 0.015884477645158768, + 0.004293747711926699, + -0.005771466065198183, + 0.00865122489631176, + -0.005771466065198183, + 0.0069663869217038155, + 0.009304448030889034, + 0.005616126582026482, + 0.005735618527978659, + 0.030271319672465324, + -0.009121227078139782, + -0.0027542917523533106, + -0.017907876521348953, + -0.0006741343531757593, + -0.004210103303194046, + 0.008882242254912853, + 0.0016260877018794417, + 0.026144862174987793, + 0.003467261092737317, + -0.0023539934772998095, + 0.010642758570611477, + 0.004002983681857586, + -0.0019118728814646602, + 0.017605163156986237, + -0.0012994761345908046, + -0.004068704321980476, + 0.015175490640103817, + 0.003991034813225269, + 0.028948942199349403, + -0.005747567862272263, + 0.007504100911319256, + -0.007006217259913683, + 0.02463129535317421, + 0.0016171258175745606, + -0.0069823190569877625, + 0.016744820401072502, + 0.018513301387429237, + 0.01269005611538887, + 0.004950954113155603, + -0.003232260001823306, + -0.013853112235665321, + 0.014761251397430897, + 0.010443605482578278, + -0.012785649858415127, + 0.00926461722701788, + -0.016035834327340126, + 0.013168024830520153, + -0.021890943869948387, + 0.005580279044806957, + -0.002037339610978961, + 0.001078415778465569, + -0.0007015179144218564, + -0.020966872572898865, + -0.013199889101088047, + -0.012323614209890366, + 0.0029474706389009953, + 0.007277065888047218, + 0.0164899043738842, + 0.000281055283267051, + 0.0010131930466741323, + 0.01787601038813591, + 0.0020453056786209345, + -0.004588495008647442, + 0.0028060716576874256, + -0.0013373151887208223, + -0.00012397300451993942, + 0.024169258773326874, + 0.011710220947861671, + 0.03313912823796272, + 0.004030865151435137, + 0.004265866242349148, + -0.0033676843158900738, + -0.005855110473930836, + -0.002334078075364232, + -0.0032481923699378967, + 0.008786649443209171, + 0.017015667632222176, + -0.00193676701746881, + -0.005341294687241316, + -0.015414474532008171, + 0.0051899380050599575, + -0.01433904655277729, + -0.02346823923289776, + -0.014665658585727215, + -0.008746818639338017, + -0.02166789211332798, + 0.02256009913980961, + -0.013088363222777843, + -0.017573298886418343, + -0.025746554136276245, + 0.015844646841287613, + 0.012737852521240711, + 0.0214289091527462, + -0.006576045881956816, + -0.005548414308577776, + 0.0041862051002681255, + 0.027881478890776634, + 0.016585497185587883, + 0.018099064007401466, + 0.015350745990872383, + 0.004831462167203426, + -0.03189641237258911, + -0.0009021650184877217, + -0.0011570813367143273, + 0.003706245217472315, + -0.007057997398078442, + 0.009129192680120468, + -0.019054999575018883, + 0.008229019120335579, + -1.0478893273102585e-5, + -0.011104795150458813, + -0.022942474111914635, + -0.011901408433914185, + 0.011837679892778397, + 0.009854111820459366, + -0.003156581660732627, + -0.020409243181347847, + -0.006412740331143141, + 0.009176990017294884, + 0.011463271453976631, + -0.016920074820518494, + -0.015127694234251976, + 0.011997002176940441, + -0.025762487202882767, + 0.006787148769944906, + 0.015183457173407078, + -0.007866560481488705, + 0.004616376478224993, + 0.0047040036879479885, + 0.019819749519228935, + 0.008794615045189857, + 0.011049032211303711, + -0.007894441485404968, + 0.02472688816487789, + -0.010244452394545078, + 0.019230253994464874, + -0.008436138741672039, + 0.005086378660053015, + 0.011710220947861671, + -0.00865122489631176, + 0.00019019152387045324, + 0.010857844725251198, + -0.0005745576345361769, + -0.027785886079072952, + 0.013335313647985458, + -0.010594962164759636, + -0.015247185714542866, + 0.0023759002797305584, + 0.015677357092499733, + 0.01572515442967415, + 0.008722919970750809, + -0.021938741207122803, + -0.005667906254529953, + -0.00803384929895401, + -0.012873277068138123, + -0.004859343636780977, + -0.020696023479104042, + 0.0012088612420484424, + 0.02314959466457367, + 0.0030470474157482386, + 0.004743834491819143, + -0.01475328579545021, + 0.014323114417493343, + -0.006018416490405798, + -0.005683838855475187, + -0.02176348678767681, + -0.008874276652932167, + 0.0058949412778019905, + -0.01317599043250084, + 0.0073368120938539505, + -0.02050483599305153, + 0.00014276811270974576, + -0.0047040036879479885, + -0.01062682643532753, + 0.0020044792909175158, + 6.379133264999837e-5, + -0.014474471099674702, + 0.009089361876249313, + 0.015350745990872383, + -0.02941097691655159, + 0.02324518747627735, + -0.014108028262853622, + 0.006811046972870827, + 0.0030191659461706877, + 0.002361959544941783, + -0.009439872577786446, + 0.03412692993879318, + -0.005508583504706621, + 0.020042801275849342, + 0.008531732484698296, + -0.008404274471104145, + -0.015454305335879326, + -0.0013970612781122327, + 0.008149358443915844, + -0.0002701018238440156, + 0.01698380336165428, + 0.0053213792853057384, + 0.002126958454027772, + 0.022958407178521156, + 0.004026882350444794, + 0.01844957284629345, + 0.020457040518522263, + 0.006791131570935249, + 0.023197390139102936, + 0.0010306190233677626, + -0.0058949412778019905, + -0.009949704632163048, + 0.020966872572898865, + 0.010363943874835968, + -0.012212088331580162, + -0.013988536782562733, + -0.000439880124758929, + 0.0022345012985169888, + -0.015342779457569122, + -0.00268857111223042, + 0.03425438702106476, + 0.02126958593726158, + -0.015581764280796051, + 0.002035347977653146, + 0.006157823838293552, + 0.014609894715249538, + 0.004393324721604586, + -0.010435638949275017, + -0.031514037400484085, + 0.00996563769876957, + 0.011558864265680313, + 0.004743834491819143, + 0.013168024830520153, + -0.002804080257192254, + 0.008189189247786999, + -0.021110262721776962, + -0.011550898663699627, + -0.008539699018001556, + 0.005743584595620632, + 0.0070699467323720455, + 0.003991034813225269, + -0.009049532003700733, + 0.01120038889348507, + 0.010260384529829025, + 0.008627326227724552, + -0.014633793383836746, + -0.01927805133163929, + 0.00877071637660265, + 0.008603427559137344, + -0.014092096127569675, + 0.019007202237844467, + 0.00021682829537894577, + 0.011750051751732826, + -0.008922073058784008, + 0.03699474036693573, + -0.0020273819100111723, + -0.004604427143931389, + 0.02471095696091652, + 0.030191659927368164, + 0.013582263141870499, + 0.014426673762500286, + -0.03766389563679695, + 0.005313413217663765, + 0.013574297539889812, + 0.011558864265680313, + 0.013351245783269405, + -0.004815529566258192, + 0.01844957284629345, + 0.03916152939200401, + -0.0007099819486029446, + 0.014139893464744091, + -0.01536667812615633, + 0.007627576123923063, + 0.02464722841978073, + -0.002477468689903617, + 0.005277565680444241, + -0.006117993034422398, + -0.01821058988571167, + -0.022098064422607422, + -0.01549413613975048, + -0.009001734666526318, + -0.007886475883424282, + -0.00040677087963558733, + 0.0028917076997458935, + 0.010818013921380043, + 0.02372315526008606, + -0.00741647370159626, + 0.01615532487630844, + 0.006237485446035862, + 0.019596697762608528, + 0.004413239657878876, + -0.005444854497909546, + -0.02075975202023983, + -0.001735622063279152, + 0.03393574431538582, + -0.021142126992344856, + -0.006106044165790081, + -0.013765485025942326, + -0.00951953325420618, + -0.014251419343054295, + -0.012992769479751587, + 0.022464506328105927, + 0.017509568482637405, + 0.012100562453269958, + 0.03705846890807152, + -0.020727887749671936, + 0.01755736581981182, + -0.004588495008647442, + -0.015709221363067627, + -0.014163791202008724, + 0.0014807056868448853, + 0.007241218350827694, + -0.005950704216957092, + -0.000650733825750649, + -0.004036840051412582, + -0.0111685236915946, + 0.0033856083173304796, + 0.009909874759614468, + -0.0030012421775609255, + -0.0008628321811556816, + -0.001873037894256413, + 0.0035090832971036434, + -0.0044212061911821365, + -0.01029224880039692, + -0.030350981280207634, + -0.006699521094560623, + 0.0003400544810574502, + -0.007500118110328913, + 0.020297717303037643, + -0.0032979806419461966, + 0.007615626789629459, + 0.0009166036616079509, + 0.012833446264266968, + 0.005958670284599066, + 0.01698380336165428, + 0.02423298917710781, + -0.007631559390574694, + 0.003146624192595482, + 0.0033099299762398005, + 0.006703504361212254, + -0.005074429325759411, + 0.023261120542883873, + 0.0002508088364265859, + 0.003084886586293578, + -0.007926306687295437, + -0.019086863845586777, + 0.015302948653697968, + 0.0002547918993514031, + 0.016298716887831688, + -0.03301167115569115, + 0.014705488458275795, + -0.006548164412379265, + -0.01886381208896637, + -0.021556366235017776, + 0.018274318426847458, + -0.01878415048122406, + 0.006707487162202597, + -0.028072666376829147, + 0.003989043179899454, + 0.023866545408964157, + -0.001515557523816824, + 0.0019357713172212243, + -0.002236492931842804, + 0.007763000670820475, + 0.03191234543919563, + -0.016362445428967476, + -0.024663159623742104, + -0.01049936842173338, + -0.003987051546573639, + 0.01846550591289997, + -0.0012208104599267244, + -0.03782321885228157, + 0.00926461722701788, + -0.02668655849993229, + 0.03807813301682472, + -0.008754784241318703, + -0.016681089997291565, + -0.02620859071612358, + 0.0017176982946693897, + 0.016362445428967476, + -0.014585996977984905, + 0.0028618345968425274, + 0.010523267090320587, + 0.019007202237844467, + -0.007281049154698849, + -0.027212323620915413, + 0.009415973909199238, + -0.011288016103208065, + -0.014299215748906136, + 0.0016111511504277587, + -0.008818513713777065, + -0.006388841662555933, + 0.0003963152994401753, + 0.011511067859828472, + 0.03626185655593872, + -0.028391312807798386, + -0.0026049267034977674, + 0.0022783151362091303, + 0.012116494588553905, + -0.010244452394545078, + -1.2314838386373594e-5, + 0.0015484178438782692, + 0.01862482726573944, + -0.00648841867223382, + 0.01186954416334629, + 0.006560113746672869, + -0.006532232277095318, + -0.007133675739169121, + -0.030701491981744766, + -0.0285825002938509, + -0.007639525458216667, + 0.004851377569139004, + -0.01722278818488121, + -0.005464769899845123, + -0.014689556322991848, + -0.006412740331143141, + -0.021779417991638184, + -0.004214086569845676, + -0.004604427143931389, + -0.007882492616772652, + -0.006508334074169397, + -0.014020401053130627, + -0.0060263825580477715, + -0.0036942961160093546, + 0.007595711387693882, + -0.009360210970044136, + 0.00836444366723299, + -0.008292748592793941, + 0.006946471519768238, + 0.0018551141256466508, + -0.01572515442967415, + -0.018099064007401466, + -0.005265616346150637, + -0.009463770315051079, + -0.007496134843677282, + 0.01860889606177807, + -0.0001989044831134379, + 0.007197404745966196, + -0.0025830199010670185, + 0.0013452813727781177, + -0.027722155675292015, + -0.017429906874895096, + -0.008579529821872711, + 0.011526999995112419, + -0.002917597768828273, + 0.011726154014468193, + 0.03482795134186745, + -0.017159059643745422, + 0.015581764280796051, + 0.003963153343647718, + -0.0018889702623710036, + 0.0070699467323720455, + 0.001103309914469719, + 0.011678356677293777, + -0.004783665295690298, + -0.012968870811164379, + -0.01862482726573944, + -0.02735571376979351, + -0.021970605477690697, + 0.015071931295096874, + 0.0009858094854280353, + 0.004500867333263159, + -5.20910689374432e-5, + 0.019309915602207184, + -0.015111762098968029, + 0.023755019530653954, + 0.0017525501316413283, + -0.005269599612802267, + 0.017445839941501617, + 0.0073208799585700035, + 0.01838584430515766, + -0.004445104394108057, + 0.03304353728890419, + -0.008866310119628906, + -0.0044212061911821365, + -0.005301464349031448, + 0.02719639241695404, + 0.007269099820405245, + -0.021540435031056404, + 0.016330581158399582, + 0.009384109638631344, + 0.019979070872068405, + 0.01880008354783058, + -0.002750308718532324, + -0.0039093815721571445, + 0.013040565885603428, + -0.01763702742755413, + -0.013972604647278786, + -0.008197154849767685, + -0.0415513701736927, + -0.01075428444892168, + -0.010451572015881538, + 0.007109777070581913, + 0.005365193355828524, + 0.0022006453946232796, + -0.014163791202008724, + 0.00689867464825511, + 0.01140750851482153, + 0.0016141384840011597, + 0.0020692041143774986, + -0.017015667632222176, + -0.0052895150147378445, + 0.0191027969121933, + 0.022225521504878998, + 0.022066200152039528, + 0.008213086985051632, + 0.013566331006586552, + 0.00597061961889267, + -0.004946970846503973, + -0.009121227078139782, + 0.01886381208896637, + -4.8668116505723447e-5, + 0.009694788604974747, + -0.021221788600087166, + -0.02158823050558567, + -0.014554131776094437, + -0.01453819964081049, + -0.004190187901258469, + 0.0077032544650137424, + -0.02553943544626236, + -0.00010629813914420083, + 0.0175414327532053, + -0.0006955433054827154, + -0.00659197848290205, + 0.0021488654892891645, + -0.014713454991579056, + -0.00044436106691136956, + 0.0019546907860785723, + 0.00865122489631176, + 0.018592962995171547, + 0.025252653285861015, + -0.0074244397692382336, + -0.000726910016965121, + -0.00546078709885478, + 0.029729623347520828, + 0.017015667632222176, + -0.004369426053017378, + -0.004032856784760952, + 0.009901908226311207, + -0.01261039450764656, + -0.003226285567507148, + -0.007898424752056599, + 0.012929040007293224, + 0.00169877870939672, + -0.00700223445892334, + -0.03846050798892975, + -0.004234001971781254, + 0.015000236220657825, + 0.0023141626734286547, + 0.008515800349414349, + 0.004341544583439827, + -0.02338857762515545, + -0.003971119411289692, + 0.006225536111742258, + 0.007376642897725105, + -0.0034254388883709908, + 0.004608410410583019, + -0.02158823050558567, + -0.0013980569783598185, + 0.011009201407432556, + 0.006994268391281366, + -0.017238721251487732, + -0.002539206063374877, + -0.005420956294983625, + -0.02356383390724659, + -0.02149263769388199, + 0.001845156424678862, + 0.002650732174515724, + 0.01639430969953537, + 0.01819465681910515, + -0.02017025835812092, + 0.01070648804306984, + 0.006544181611388922, + 0.009248685091733932, + -0.0008449084125459194, + 0.010236485861241817, + 0.0027642494533210993, + 0.03568829223513603, + -0.002465519355610013, + -0.0016061724163591862, + 0.007496134843677282, + -0.0031247171573340893, + -0.006424689665436745, + -0.022703491151332855, + 0.0008777687326073647, + -0.015757018700242043, + -0.025842148810625076, + -0.002666664309799671, + 0.0067353686317801476, + -0.0003066962817683816, + -0.004174255765974522, + 0.0051580737344920635, + 0.004743834491819143, + 0.008396307937800884, + -0.0007732131634838879, + 0.00741647370159626, + -0.00013144126569386572, + 0.02627231925725937, + -0.01050733495503664, + 0.024089599028229713, + -0.03008013218641281, + 0.001493650721386075, + 0.021381111815571785, + 0.008874276652932167, + 0.012952938675880432, + 0.007388592232018709, + 0.0003271095047239214, + -0.006070196162909269, + 0.006253417581319809, + -0.005608160514384508, + 0.010881743393838406, + -0.004954937379807234, + 0.012753785587847233, + 0.0002822999667841941, + -0.00836444366723299, + -0.005934772081673145, + -0.009830213151872158, + 0.0033059469424188137, + -0.008603427559137344, + 0.00731291389092803, + -0.007022149860858917, + 0.0025591214653104544, + -0.033330317586660385, + -0.0024276801850646734, + -0.008005967363715172, + 0.044865284115076065, + -0.016362445428967476, + -0.017429906874895096, + 0.029124196618795395, + 0.016760751605033875, + 0.012833446264266968, + 0.014984303154051304, + 0.023691290989518166, + -0.012713954783976078, + 0.011144625954329967, + -0.0111685236915946, + 0.0005969624035060406, + 0.025109263136982918, + -0.0004132433678023517, + 0.017398042604327202, + 0.012124460190534592, + 0.007818763144314289, + -0.024041801691055298, + -0.013160058297216892, + -0.02751503698527813, + -0.015518034808337688, + 0.015374644659459591, + -0.011383609846234322, + 0.013462771661579609, + -0.023786885663866997, + 0.014028367586433887, + 0.009073429740965366, + 0.029697759076952934, + -0.009870043955743313, + 0.008436138741672039, + 0.00022641255054622889, + 0.027084866538643837, + 0.008595461957156658, + 0.022862812504172325, + -0.03527405485510826, + -0.008874276652932167, + 0.029554368928074837, + -0.006639775354415178, + -0.006030365824699402, + -0.0035628548357635736, + -0.005699770990759134, + -0.02050483599305153, + 0.010762250982224941, + -0.00029350235126912594, + 0.0013602179242298007, + -0.0014926549047231674, + 0.007141641806811094, + -0.0024396295193582773, + -0.023611629381775856, + 0.0022225521970540285, + -0.028295718133449554, + 0.010069197043776512, + -0.010857844725251198, + 0.012387342751026154, + -0.03807813301682472, + -0.0064963847398757935, + -0.017907876521348953, + -0.006070196162909269, + -0.02423298917710781, + -0.011104795150458813, + -0.0016878253081813455, + 0.006683588959276676, + 0.011885476298630238, + 0.011399541981518269, + 0.026383845135569572, + 0.015717187896370888, + 0.005548414308577776, + -0.019246187061071396, + -0.0200109351426363, + -0.0033736589830368757, + 0.00836444366723299, + -0.010786149650812149, + -0.0017256643623113632, + 0.01186157763004303, + -0.007866560481488705, + 0.010156824253499508, + 0.014203622005879879, + 0.019501103088259697, + 0.006647741422057152, + 0.014195656403899193, + -0.0062494343146681786, + -0.018720421940088272, + -0.020632294937968254, + 0.000290266121737659, + 0.022066200152039528, + -0.012140392325818539, + -0.009591229259967804, + -0.0007547914865426719, + 0.026017403230071068, + 0.005946721415966749, + -0.030621830374002457, + 0.012323614209890366, + 0.016840413212776184, + 0.012347511947154999, + -0.0023480188101530075, + 0.0028857330325990915, + -0.017589230090379715, + 0.006468503270298243, + 0.008555631153285503, + -0.029187925159931183, + 0.01789194345474243, + 0.01951703615486622, + 0.01549413613975048, + -0.011112760752439499, + -0.0038018389604985714, + -0.007786898873746395, + 0.010969370603561401, + 0.01483294740319252, + 0.010148858651518822, + -0.007814780808985233, + 0.014856845140457153, + -0.003118742723017931, + 0.01720685511827469, + -0.00927258376032114, + -0.00617773924022913, + 0.007006217259913683, + 0.019596697762608528, + 0.007635542191565037, + -0.007846645079553127, + -0.029395045712590218, + -0.021205857396125793, + -0.01317599043250084, + -0.006978335790336132, + 0.012944972142577171, + -0.007834695279598236, + -0.004393324721604586, + 0.011765983887016773, + -0.001997508807107806, + 0.019086863845586777, + -0.004476969130337238, + 0.0033557352144271135, + 0.020727887749671936, + -0.002963403007015586, + 0.0002018917875830084, + -0.004954937379807234, + 0.000577544909901917, + -0.0013462771894410253, + 0.026144862174987793, + -0.005954687483608723, + -0.00442917225882411, + 0.004811546765267849, + -0.021301450207829475, + 0.004544680938124657, + -0.006675622891634703, + -0.012506835162639618, + 0.0058630770072340965, + -0.0006437634583562613, + 0.020074665546417236, + 0.0073208799585700035, + 0.0061458745039999485, + 0.010379876010119915, + -0.002907640067860484, + -0.0024515786208212376, + 0.022193657234311104, + -0.01042767334729433, + -0.004170272499322891, + -0.011033100076019764, + -0.008659190498292446, + 0.010881743393838406, + -0.014737353660166264, + 0.001634053885936737, + 0.006890708580613136, + 0.024838415905833244, + -0.0018003470031544566, + 0.0003821256395895034, + -0.008595461957156658, + 0.0021010686177760363, + 0.019564831629395485, + 0.007755034137517214, + -0.021317383274435997, + 0.007014183793216944, + 0.007659440860152245, + 0.004775699228048325, + -0.011781916953623295, + 0.011694288812577724, + -0.004154340364038944, + -0.004684088751673698, + 0.011606661602854729, + -0.012259884737432003, + 0.0018839914118871093, + -0.014267351478338242, + 0.014498368836939335, + 0.0014030358288437128, + -0.01215632539242506, + 0.00873088650405407, + -0.00465620681643486, + -0.01070648804306984, + 0.007030115928500891, + -0.004289764910936356, + 0.02050483599305153, + 0.005401040893048048, + -0.024599431082606316, + 0.025427909567952156, + 0.006842911709100008, + -0.0062494343146681786, + -0.005787398666143417, + -0.0034353965893387794, + -0.004190187901258469, + 0.018561098724603653, + -0.011224286630749702, + -0.0009096332360059023, + -0.015350745990872383, + -0.006942488253116608, + -0.005050530657172203, + -0.014809048734605312, + 0.002672638976946473, + 0.006699521094560623, + 0.00047547879512421787, + 0.004178239032626152, + 5.725660957978107e-5, + 0.02117399126291275, + -0.021030601114034653, + -0.008380375802516937, + -0.003180480096489191, + -0.0028060716576874256, + 0.006751301232725382, + 0.011574797332286835, + -0.006564097013324499, + -0.00951953325420618, + 6.88323998474516e-5, + 0.010531232692301273, + 0.0027941225562244654, + 0.006755284033715725, + -0.0035947193391621113, + 0.02538011223077774, + -0.005245701409876347, + -0.00207119551487267, + 0.012626326642930508, + -0.005859093740582466, + 0.019182458519935608, + -0.0074523212388157845, + 0.02479061856865883, + 0.010786149650812149, + 0.010371910408139229, + -0.004445104394108057, + 0.013422940857708454, + -0.01310429535806179, + 0.01647397130727768, + 0.005385108757764101, + 0.015868544578552246, + 0.0002671145193744451, + -0.0014767226530238986, + -0.008507833816111088, + 0.027833683416247368, + -0.007655457593500614, + -0.021636027842760086, + -0.007802831009030342, + 0.012212088331580162, + -0.006420706398785114, + -0.0022504336666315794, + 0.023755019530653954, + 0.025921810418367386, + 0.0022962389048188925, + -0.007125709671527147, + 0.007647491525858641, + -0.0038755256682634354, + 0.02437637932598591, + -0.01821058988571167, + 0.0021827216260135174, + 0.015876511111855507, + 0.0031306918244808912, + -0.010889708995819092, + -0.027881478890776634, + 0.006767233368009329, + 0.008842412382364273, + 0.019915342330932617, + 0.016099562868475914, + 0.010459537617862225, + 0.0018491395749151707, + 0.003995017614215612, + -0.012212088331580162, + -0.005361210089176893, + -0.003058996517211199, + 0.0015972104156389832, + 0.009790382348001003, + 0.022384844720363617, + 0.016999736428260803, + -0.001845156424678862, + 0.009161057882010937, + -0.0005128200864419341, + 0.010610894300043583, + 0.010602928698062897, + -0.007727152667939663, + 0.006253417581319809, + -0.009415973909199238, + 0.0012078655418008566, + -0.012658191844820976, + -0.01552600134164095, + -0.0033079383429139853, + -0.011853612028062344, + -0.010124959982931614, + -0.024679092690348625, + 0.015836680307984352, + 0.020233988761901855, + -0.00609807763248682, + -0.027626562863588333, + 0.002847893862053752, + 0.022878745570778847, + 0.00947173684835434, + 0.0036604399792850018, + 0.005078412126749754, + -0.01556583121418953, + 0.01544633973389864, + -0.02794520929455757, + -0.004492901265621185, + 0.00027084865723736584, + 0.012626326642930508, + -0.013191922567784786, + 0.0028678092639893293, + 0.011574797332286835, + -0.0048394282348454, + 0.003849635599181056, + 0.026001470163464546, + 0.026750287041068077, + -0.0018899659626185894, + -0.0018929532961919904, + 0.0025949690025299788, + 0.007759017404168844, + -0.012992769479751587, + 0.006544181611388922, + 0.010953438468277454, + 0.013255652040243149, + -0.007010200526565313, + -0.029044535011053085, + -0.019054999575018883, + 0.005532482173293829, + 0.014936506748199463, + 0.00442518899217248, + 0.007998001761734486, + 0.0031824717298150063, + 0.00034229495213367045, + 0.0072213029488921165, + 0.016131427139043808, + 0.008587495423853397, + 0.017270585522055626, + -0.013542433269321918, + -0.01951703615486622, + 0.010985302738845348, + -0.004365443252027035, + 0.002796113956719637, + -0.014562098309397697, + 0.011072929948568344, + -0.011511067859828472, + 0.030382845550775528, + -0.012267851270735264, + 0.007046048063784838, + 3.790138725889847e-5, + -0.00031964125810191035, + -0.00545680383220315, + -0.026431642472743988, + 0.014235486276447773, + -0.008165290579199791, + -0.0034871764946728945, + 0.017190923914313316, + -0.0017037575598806143, + -0.0015294982586055994, + -0.007380625698715448, + -0.004576545674353838, + -0.021572299301624298, + -0.007520033046603203, + -0.005058497190475464, + -0.028486905619502068, + 0.02058449760079384, + 0.00810952764004469, + -0.01206869725137949, + 0.004624342545866966, + -0.0410415381193161, + 0.011192422360181808, + 0.0021528485231101513, + 0.0072053708136081696, + 0.007356727495789528, + 0.0012974845012649894, + 0.007368676830083132, + -0.03282048553228378, + -0.002025390276685357, + 0.0014976337552070618, + -0.0013064465019851923, + 0.05840771645307541, + 0.014068197458982468, + 0.01680854894220829, + -0.001484688720665872, + 0.007870543748140335, + -0.006958420854061842, + -0.0008055755752138793, + -0.015207355841994286, + -0.01309632882475853, + -0.02668655849993229, + -0.012251918204128742, + -0.004305697046220303, + 0.006205620709806681, + 0.014657692052423954, + 0.0027124695479869843, + -0.01166242454200983, + -0.0035548885352909565, + 0.009336312301456928, + 0.021540435031056404, + 0.007340795360505581, + -0.015207355841994286, + 0.004895191174000502, + -0.022257385775446892, + 0.008483936078846455, + 0.006082145497202873, + -0.005771466065198183, + -0.005803330801427364, + -0.019309915602207184, + -0.0033796336501836777, + 0.001121233799494803, + 0.0024177224840968847, + 0.001325366087257862, + -0.014721421524882317, + -0.00947173684835434, + -0.02504553459584713, + 0.013813281431794167, + 0.0024356464855372906, + 0.003055013483390212, + 0.002853868529200554, + -0.011630560271441936, + -0.008213086985051632, + -0.02068009227514267, + 0.0136380260810256, + -6.478709838120267e-5, + -0.021221788600087166, + -0.006086128763854504, + 0.003544930834323168, + 0.011997002176940441, + 0.013223787769675255, + -0.02192280814051628, + -0.0024336548522114754, + 0.011112760752439499, + -0.017111262306571007, + 0.00972665287554264, + 0.005950704216957092, + 0.004134424962103367, + 0.015518034808337688, + 0.0015992020489647985, + -0.009447838179767132, + 0.0030510304495692253, + -0.012801581993699074, + 0.001784414635039866, + 0.00403883121907711, + 0.028821483254432678, + -0.00811351090669632, + 0.018338046967983246, + -0.023850614205002785, + -0.0033497605472803116, + 0.00048319599591195583, + -0.00831664726138115, + 0.013486669398844242, + -0.0071177431382238865, + 0.008722919970750809, + -0.020297717303037643, + 0.001881999894976616, + -0.003825737163424492, + -0.014928540214896202, + -0.016107529401779175, + -0.008595461957156658, + 0.020552633330225945, + -0.007631559390574694, + 0.003787898225709796, + 0.007265117019414902, + -0.01819465681910515, + -0.016458038240671158, + 0.0015294982586055994, + 0.010204621590673923, + -0.0014179723802953959, + 0.0024236971512436867, + 0.0068668099120259285, + -0.022623829543590546, + 0.000516305270139128, + 0.0021548401564359665, + 0.013980570249259472, + -0.00035872511216439307, + -0.018083130940794945, + -0.02093500830233097, + -0.0026586982421576977, + 0.0023300950415432453, + -0.011088863015174866, + 0.010340046137571335, + 0.00951953325420618, + 0.0022524252999573946, + -0.004990784917026758, + -0.010348011739552021, + -0.02348417229950428, + 0.0094797033816576, + 0.012514800764620304, + 0.00609807763248682, + 0.0029952675104141235, + -0.013120227493345737, + 0.00303708971478045, + -0.0074682533740997314, + -0.0022763237357139587, + -4.238233668729663e-5, + 0.034891679883003235, + 0.003947220742702484, + -0.007504100911319256, + 0.014020401053130627, + 0.009320380166172981, + -0.015621594153344631, + 0.0026845880784094334, + 0.019007202237844467, + -0.003815779695287347, + 0.00679909810423851, + -0.003933280240744352, + -0.003168530995026231, + 0.0310520026832819, + -0.00329399760812521, + 0.010786149650812149, + -0.003168530995026231, + -0.005695787724107504, + -0.0015454305103048682, + 0.01261039450764656, + 0.015772951766848564, + -0.0015324855921790004, + 0.014458538964390755, + -0.01075428444892168, + 0.01310429535806179, + -0.011909374967217445, + -0.009949704632163048, + 0.039575766772031784, + 0.01738211140036583, + 0.0014607904013246298, + 0.02217772603034973, + -0.005401040893048048, + -0.026893679052591324, + 0.008436138741672039, + -0.00546078709885478, + 0.000791136990301311, + 0.011383609846234322, + -0.02365942671895027, + 0.003580778604373336, + 0.016951939091086388, + -0.014474471099674702, + 0.010810047388076782, + 0.008603427559137344, + 0.013080396689474583, + -0.013606161810457706, + 0.014721421524882317, + -0.007926306687295437, + 0.008754784241318703, + -0.0015314897755160928, + 0.007496134843677282, + 0.0030510304495692253, + -0.003156581660732627, + 0.0051899380050599575, + -0.0010346020571887493, + -0.0025093331933021545, + -0.017174990847706795, + -0.00947173684835434, + 0.005420956294983625, + -0.003278065240010619, + 0.0025013668928295374, + -0.006038331892341375, + 0.009487668983638287, + -0.008221053518354893, + -0.014593962579965591, + -0.02265569381415844, + -0.012363444082438946, + 0.005329345818608999, + 0.02060043066740036, + 0.022098064422607422, + -0.0342862531542778, + 0.022352980449795723, + 0.013829213567078114, + -0.0021189923863857985, + 0.012235986068844795, + 0.00032885209657251835, + 0.011893442831933498, + 0.016258886083960533, + 0.014992269687354565, + -0.008332579396665096, + -0.011590729467570782, + 0.0014707479858770967, + 0.008252917788922787, + -0.008587495423853397, + -0.020743820816278458, + -0.025889944285154343, + 0.01041970681399107, + 0.007472236640751362, + 0.0017555374652147293, + -0.005600194446742535, + -0.0081533407792449 + ], + "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158": [ + -0.024547386914491653, + -0.024720560759305954, + -0.012006716802716255, + 0.03050745092332363, + -0.011948992498219013, + -0.004581890068948269, + 0.009704948402941227, + 0.03723236545920372, + -0.02192091755568981, + 0.02366708591580391, + 0.008954528719186783, + 0.0058085378259420395, + -0.012879800982773304, + 8.455751867586514e-7, + -0.025124631822109222, + 0.02880457602441311, + -0.04381297156214714, + 0.023465050384402275, + 0.029266372323036194, + -0.0156722292304039, + 0.05821526050567627, + -0.01945319026708603, + -0.042745064944028854, + 0.013745670206844807, + 0.0008735355222597718, + 0.0015829167095944285, + 0.00799485668540001, + 0.008406144566833973, + -0.023537205532193184, + 0.029439546167850494, + 0.015600073151290417, + 0.008853510953485966, + -0.0016244063153862953, + 0.014099233783781528, + 0.0024063943419605494, + -0.03379775211215019, + -0.0024965889751911163, + 0.008680337108671665, + -0.00800928846001625, + -0.04372638463973999, + -0.04828662797808647, + 0.05166351795196533, + 0.0017876586643978953, + 0.0037845689803361893, + -0.03801164776086807, + 0.005970888305455446, + -0.00035626901080831885, + 0.00904833059757948, + -0.001991498749703169, + 0.0029331312980502844, + 0.0009569656103849411, + 0.010765638202428818, + 0.0024929812643676996, + 0.012367495335638523, + -0.0063064126297831535, + -0.05743597820401192, + -0.0025507058016955853, + 0.06407430768013, + 0.0008730845875106752, + -0.06309298425912857, + -0.0032596359960734844, + -0.006573388818651438, + -0.016667978838086128, + -0.004654045682400465, + -0.03443272411823273, + 0.0027022329159080982, + -0.0017714236164465547, + 0.00015772796177770942, + -0.047132134437561035, + 0.022628042846918106, + 0.025586428120732307, + 0.04046494513750076, + -0.011804680339992046, + 0.013146777637302876, + 0.01195620745420456, + 0.005537953693419695, + 0.04961429536342621, + -0.0034779070410877466, + 0.012800429947674274, + 0.015311449766159058, + -0.04710327461361885, + 0.0210694782435894, + -0.003676335560157895, + 0.006230649072676897, + 0.0710589811205864, + 0.027318166568875313, + -0.008290695957839489, + -0.026163674890995026, + 0.0073851412162184715, + -0.026755351573228836, + 0.020333491265773773, + 0.033480267971754074, + 0.0017903645057231188, + 0.007374317850917578, + -0.011350099928677082, + 0.004372638650238514, + 0.034490447491407394, + -0.0019409896340221167, + 0.02930966578423977, + -0.02972816862165928, + -0.0061548855155706406, + 0.029843619093298912, + 0.008355636149644852, + 0.0022422398906201124, + 0.021329239010810852, + 0.005108627025038004, + 0.00015716424968559295, + -0.014294054359197617, + -0.004062368534505367, + 0.06072627753019333, + -0.005018432624638081, + -0.046872373670339584, + 0.01668240875005722, + -0.01048423070460558, + -0.012526238337159157, + -0.02610594965517521, + -0.000593481061514467, + -0.0038314703851938248, + 0.007002715487033129, + -0.034172963351011276, + 0.057493701577186584, + 0.015874264761805534, + -0.04785369336605072, + 0.01785133220255375, + -0.027246011421084404, + 0.004513341933488846, + -0.0025398824363946915, + -0.027419185265898705, + -0.0037268444430083036, + 0.0018724417313933372, + -0.037116918712854385, + -0.016956601291894913, + 0.020405646413564682, + 0.005487444810569286, + 0.006807894911617041, + -0.010498661547899246, + 0.02687080204486847, + 0.03434613719582558, + -0.023724811151623726, + 0.04153284803032875, + -0.010462583974003792, + -0.023955708369612694, + 0.00418864144012332, + -0.011746956035494804, + -0.0030485803727060556, + -0.007785605266690254, + -0.031229007989168167, + 0.047132134437561035, + -0.0016794251278042793, + 0.01760600320994854, + -0.0353563167154789, + -0.025167925283312798, + 0.03394206613302231, + -0.011256297118961811, + 0.006089945323765278, + -0.0007053224835544825, + -0.009329738095402718, + 0.006349706090986729, + 0.008218539878726006, + 0.04219668358564377, + -0.00913491751998663, + -0.031055834144353867, + 0.011176926083862782, + 0.010166745632886887, + 0.049065910279750824, + 0.013673515059053898, + 0.025398824363946915, + 0.05720507726073265, + 0.00121041270904243, + 0.011133632622659206, + 0.033307094126939774, + -0.02418660745024681, + -0.010051296092569828, + 0.007965994998812675, + -0.0037701379042118788, + -0.031142421066761017, + 0.046641476452350616, + 0.049325671046972275, + 0.010253331623971462, + -0.007619647309184074, + -0.011912913993000984, + -0.007460904773324728, + -0.007735096383839846, + -0.012555100955069065, + 0.015239294618368149, + 0.02923751063644886, + 0.033162783831357956, + 0.023465050384402275, + -0.012944741174578667, + -0.02544211782515049, + 0.02241157554090023, + 0.028790144249796867, + -0.017403967678546906, + 0.025139063596725464, + -0.034172963351011276, + -0.01477749738842249, + 0.0011635114206001163, + -0.003972174134105444, + 0.023320738226175308, + 0.027650082483887672, + -0.03734781593084335, + -0.04531381279230118, + -0.0358758382499218, + 0.028674695640802383, + -0.05302004516124725, + 0.03954135254025459, + -0.0088823726400733, + 0.024922596290707588, + 0.023897984996438026, + -0.0712321549654007, + 0.0289921797811985, + -0.05166351795196533, + 0.009531774558126926, + 0.03296074643731117, + -0.03526972979307175, + 0.007103733718395233, + -0.034086376428604126, + 0.02249816246330738, + 0.01694216951727867, + -0.0255142729729414, + 0.012656118720769882, + 0.026582177728414536, + -0.015686659142374992, + -0.030449725687503815, + -0.07377203553915024, + -0.03625104948878288, + 0.008355636149644852, + 0.028660263866186142, + -0.05870591849088669, + 0.029468407854437828, + 0.04551584646105766, + 0.00461436016485095, + 0.011667585000395775, + -0.05509813129901886, + -0.0065553500317037106, + 0.007331024389714003, + -0.008117522113025188, + -0.0027220756746828556, + 0.030651763081550598, + -0.03226805105805397, + 0.00013732141815125942, + 0.03342254459857941, + 0.007331024389714003, + 0.013052974827587605, + 0.0035861406940966845, + 0.004163386765867472, + 0.012785999104380608, + 0.02340732514858246, + -0.008117522113025188, + -0.04286051541566849, + 0.014452796429395676, + 0.01904911734163761, + 0.009827612899243832, + -0.0409267395734787, + -0.029093198478221893, + 0.0632084384560585, + 0.026134813204407692, + -0.010700698010623455, + -0.033826615661382675, + -0.009647224098443985, + 0.0021358102094382048, + 0.007901054807007313, + 0.03558721765875816, + 0.025038044899702072, + 0.014481659047305584, + 0.005422504618763924, + 0.022555887699127197, + -0.04600650444626808, + 0.0008433203329332173, + 0.020506663247942924, + -0.05610831081867218, + 0.008305126801133156, + -0.017966782674193382, + 0.01809666119515896, + 0.007424826733767986, + 0.015628935769200325, + -0.003676335560157895, + -0.011068692430853844, + 0.005451366771012545, + -0.007258868310600519, + -0.001640641363337636, + 0.008232970722019672, + -0.015224862843751907, + 0.015556779690086842, + 0.001156295882537961, + -0.010159529745578766, + -0.019684089347720146, + 0.0022927490063011646, + -0.04672806337475777, + -0.004347383975982666, + 0.009654439054429531, + -0.002888033865019679, + 0.007857761345803738, + -0.0024424721486866474, + -0.0026066263671964407, + -0.00879578571766615, + -0.02358049899339676, + -0.013875550590455532, + -0.018414147198200226, + 0.004224719014018774, + -0.00826183333992958, + -0.016393786296248436, + 0.023537205532193184, + -0.03486565873026848, + 0.04222554340958595, + -0.04268734157085419, + 0.024633973836898804, + -0.0020005181431770325, + -0.024619542062282562, + 0.006053867284208536, + 0.040638118982315063, + -0.011891267262399197, + -0.03547176718711853, + -0.03091152384877205, + 0.00575081305578351, + 0.010960458777844906, + -0.0031225401908159256, + 0.021949779242277145, + 0.00314779463224113, + -0.01762043498456478, + 0.014337347820401192, + -0.016956601291894913, + -0.06863454729318619, + 0.02770780771970749, + 0.026827508583664894, + -0.03899296745657921, + 0.03451931104063988, + 0.013117915019392967, + -0.018082231283187866, + -3.929106242139824e-5, + -0.025240080431103706, + -0.009596714749932289, + -0.008052581921219826, + -0.007064047735184431, + -0.029194217175245285, + -0.024403074756264687, + -0.015643365681171417, + -0.04765165597200394, + -0.021935347467660904, + -0.01887594349682331, + 0.0010760226286947727, + 0.0011653153924271464, + -0.015369175001978874, + -0.012454082258045673, + 0.005613717250525951, + -0.010318271815776825, + -0.019828399643301964, + 0.008124737069010735, + -0.006144062150269747, + 0.0033065371681004763, + 0.0009253975003957748, + -0.022050797939300537, + 0.03350913152098656, + -0.0011761387577280402, + 0.025254512205719948, + 0.01844300888478756, + 0.005862654652446508, + -0.0026174497324973345, + 0.0012933918042108417, + -0.02619253657758236, + 0.002143025863915682, + -0.011696446686983109, + -0.027664514258503914, + 0.0036835509818047285, + -0.008875157684087753, + 0.019510915502905846, + -0.00834120437502861, + -0.01912127435207367, + 0.017129775136709213, + -0.013774532824754715, + -0.02662547118961811, + -0.0028609754517674446, + 0.008297910913825035, + -0.006768209394067526, + -0.028963318094611168, + 0.0018435794627293944, + 0.020593250170350075, + -0.023883553221821785, + -0.02207965962588787, + 0.02526894398033619, + -0.030045654624700546, + 0.028602538630366325, + 0.014272407628595829, + -0.03596242517232895, + 0.048315491527318954, + 0.0030106985941529274, + -0.018327560275793076, + -0.0043004825711250305, + 0.011725309304893017, + 0.023104270920157433, + -0.021358102560043335, + -0.03215260058641434, + -0.02223840169608593, + -0.00808865949511528, + -0.02180546708405018, + 0.03472134843468666, + 0.007377925328910351, + -0.03091152384877205, + 0.025990501046180725, + -0.0024136097636073828, + 0.025312237441539764, + 0.016494804993271828, + -0.019900556653738022, + -0.0015342116821557283, + 0.010686266236007214, + -0.02486487105488777, + -0.014835222624242306, + -0.00735267112031579, + 0.0131034841760993, + -0.01684115268290043, + -0.006905305199325085, + -0.01650923490524292, + -0.004419539589434862, + 0.0072877309285104275, + 0.03379775211215019, + 0.005859046708792448, + -0.020448939874768257, + 0.0210694782435894, + -0.04329345002770424, + -0.0075691379606723785, + 0.07336796820163727, + 0.061361249536275864, + 0.0063064126297831535, + 0.013514772057533264, + -0.0030251299031078815, + 0.005076156929135323, + 0.015946419909596443, + 0.03379775211215019, + 0.00889680441468954, + -0.002204358112066984, + -0.024706128984689713, + 0.019669657573103905, + -0.02004486694931984, + -0.023349599912762642, + -0.006263119168579578, + -0.014582676813006401, + 0.016408218070864677, + 0.011407824233174324, + 0.019323309883475304, + -0.02350834384560585, + -0.0029637974221259356, + 0.015859832987189293, + 0.02401343360543251, + 0.006728523876518011, + -0.019438758492469788, + -0.017663728445768356, + -0.017288517206907272, + 0.004740632604807615, + 0.002373924246057868, + -0.008831864222884178, + 0.015051688998937607, + 0.04413045570254326, + -0.04978746920824051, + 0.020030437037348747, + 0.009993571788072586, + 0.0001758796424837783, + 0.02073756232857704, + -0.01617731899023056, + 0.02955499477684498, + -0.028198467567563057, + -0.022382713854312897, + 0.009979140013456345, + 0.008362851105630398, + -0.010383212007582188, + 0.019005823880434036, + -0.050682198256254196, + 0.004967923276126385, + 0.030478589236736298, + 0.008492731489241123, + 0.013449831865727901, + -0.004960707854479551, + 0.007150634657591581, + -0.026091519743204117, + 0.0179379191249609, + -0.0021105557680130005, + -0.03876207023859024, + 0.0019896947778761387, + -0.004015467595309019, + 0.0237681046128273, + -0.013420969247817993, + -0.0256874468177557, + -0.011580998077988625, + -4.123588223592378e-5, + 0.020925167948007584, + 0.0020365959499031305, + -0.014402288012206554, + -0.03218146413564682, + -0.02972816862165928, + 0.04340890049934387, + -0.02526894398033619, + 0.031892839819192886, + 0.010404858738183975, + 0.03073835000395775, + 0.014575461857020855, + -0.024734990671277046, + -0.04320686310529709, + 0.024128882214426994, + -0.03229691460728645, + -0.007453688886016607, + -0.026596609503030777, + 0.026235830038785934, + -0.025990501046180725, + -0.02298882231116295, + 0.008680337108671665, + 0.01887594349682331, + 0.006165708880871534, + -0.019236722961068153, + -0.005368387792259455, + 0.0047983573749661446, + -0.007468120194971561, + -0.040638118982315063, + 0.027823256328701973, + -0.03910841792821884, + -0.009805966168642044, + -0.004625183530151844, + 0.023883553221821785, + -0.008478300645947456, + -0.002572352532297373, + 0.03642422333359718, + -0.020333491265773773, + 0.01293752621859312, + -0.023118702694773674, + -0.004372638650238514, + -0.005151920486241579, + -0.010347134433686733, + 0.01979953795671463, + -0.008904019370675087, + -0.015369175001978874, + 0.016956601291894913, + -0.03287415951490402, + -0.0052565461955964565, + 0.015874264761805534, + -0.0034165747929364443, + -0.005729166325181723, + 0.029049905017018318, + -0.007965994998812675, + 0.002603018656373024, + -0.011133632622659206, + -0.004957099910825491, + 0.03397092595696449, + 0.010224469937384129, + 0.023695947602391243, + 0.009712164290249348, + -0.022310558706521988, + -0.027058405801653862, + 0.03200829029083252, + -0.015426899306476116, + 0.023724811151623726, + -0.003057599999010563, + 0.01760600320994854, + -0.024042295292019844, + 0.0007774782134220004, + -0.007814467884600163, + 0.0007923603407107294, + 0.02080971747636795, + -0.027592359110713005, + 0.04280279204249382, + -0.01821211166679859, + -0.003918057307600975, + -0.019611932337284088, + -0.012771567329764366, + 0.05593513697385788, + 0.017836902290582657, + 0.0263801421970129, + -0.033076196908950806, + 0.0012753529008477926, + -0.011927345767617226, + -0.018139954656362534, + 0.011559351347386837, + 0.011566566303372383, + 0.0158454030752182, + 0.032037153840065, + 0.015643365681171417, + -0.020102592185139656, + 0.007475335616618395, + 0.0011238257866352797, + 0.0017398555064573884, + 0.009322523139417171, + -0.020448939874768257, + 0.00210694782435894, + 0.00712177250534296, + -0.012793214060366154, + -0.001888676779344678, + 0.01057081762701273, + 0.008269049227237701, + 0.027448046952486038, + -0.026740921661257744, + -0.011025398969650269, + -0.008853510953485966, + 0.01652366667985916, + -0.006595035549253225, + 0.018471872434020042, + 0.00046405167086049914, + -0.01978510618209839, + -0.009870906360447407, + 0.022685768082737923, + 0.011328453198075294, + 0.04294710233807564, + 0.006692445836961269, + -0.000877594284247607, + 0.00969051755964756, + 0.0009614753653295338, + 0.0066671911627054214, + -0.013637436553835869, + -0.011104770004749298, + 0.03166194260120392, + -0.02737589180469513, + -0.013291088864207268, + -0.003329987870529294, + 0.039137277752161026, + 0.022223971784114838, + -0.017808038741350174, + 0.03091152384877205, + -0.012158243916928768, + 0.030622899532318115, + 0.025211218744516373, + -0.01171087846159935, + 0.03806937485933304, + 0.009106055833399296, + -0.015787677839398384, + 0.009805966168642044, + -0.02197864092886448, + 0.07833228260278702, + -0.026755351573228836, + 0.021257083863019943, + 0.004596321377903223, + -0.022555887699127197, + 0.0010624934220686555, + -0.029699306935071945, + 0.003286694409325719, + -0.0061548855155706406, + 0.004625183530151844, + 0.013348814100027084, + -0.02156013809144497, + 0.031892839819192886, + 0.004794749431312084, + 0.0005339525523595512, + 0.02678421512246132, + -0.036943744868040085, + -0.009618361480534077, + -0.019655225798487663, + -0.015282588079571724, + 0.0023216111585497856, + 0.023970140144228935, + -0.014055940322577953, + 0.024879302829504013, + -0.03304733335971832, + 0.010440937243402004, + 0.027188286185264587, + -0.002458707196637988, + -0.04121536388993263, + -0.004812788683921099, + 0.01981396973133087, + 0.019943850114941597, + 0.01785133220255375, + -0.028270622715353966, + -0.017909057438373566, + -0.005321486387401819, + 0.012013932690024376, + -0.00526736956089735, + 0.03059403784573078, + 0.010065726935863495, + 0.011783033609390259, + 0.01558564230799675, + 0.0076629407703876495, + 0.022945528849959373, + 0.02770780771970749, + -0.02502361498773098, + 0.020766424015164375, + 0.03818482160568237, + 0.014113664627075195, + -0.003918057307600975, + 0.03359571844339371, + -0.011010967195034027, + 0.0012013931991532445, + 0.008940097875893116, + -0.022353852167725563, + -0.019251154735684395, + 0.0030972855165600777, + -0.009726595133543015, + -0.0002935836964752525, + -0.011378961615264416, + -0.03867548331618309, + 0.010130667127668858, + 0.00015220353088807315, + -0.008478300645947456, + -0.022223971784114838, + 0.028588108718395233, + -0.022931097075343132, + 0.0018056976841762662, + 0.01048423070460558, + 0.0032434009481221437, + -0.030853798612952232, + 0.017288517206907272, + 0.0030413649510592222, + 0.008348420262336731, + -0.009632792323827744, + 0.011148063465952873, + 0.015701090916991234, + -0.020290197804570198, + -0.04903704673051834, + -0.014171388931572437, + -0.011544919572770596, + -0.024662835523486137, + -0.010375997051596642, + 0.016783427447080612, + -0.019395465031266212, + -0.0067646014504134655, + -0.007475335616618395, + 0.004332952667027712, + -0.0058770859614014626, + 0.026740921661257744, + -0.007338239811360836, + 0.026423435658216476, + -4.033393634017557e-5, + 0.004769495222717524, + -0.0011283354833722115, + 0.02274349331855774, + -0.005050902720540762, + 0.005678657442331314, + -2.2168163923197426e-5, + 0.02822732925415039, + -0.004376246128231287, + -0.04078242927789688, + -0.03798278793692589, + 0.027361460030078888, + 0.017966782674193382, + 0.02174774371087551, + 0.00632084347307682, + 0.0023901592940092087, + 0.037867337465286255, + 0.011458332650363445, + 0.004704555030912161, + 0.013608574867248535, + 0.02039121463894844, + 0.01137174665927887, + -0.02645229734480381, + 0.00703157763928175, + 0.029194217175245285, + -0.010072942823171616, + -0.009820397943258286, + -0.03480793535709381, + 0.03705919161438942, + -0.00013112052693031728, + 0.010311056859791279, + -1.7165177268907428e-5, + 0.019178997725248337, + -0.001332175568677485, + -0.024143313989043236, + -0.0036059836857020855, + 0.044534530490636826, + -0.02216624654829502, + 0.023623792454600334, + 0.020708700641989708, + 0.002310787793248892, + -0.0020005181431770325, + 0.017663728445768356, + 0.017043188214302063, + -0.009084409102797508, + 0.018558459356427193, + 0.0001625759177841246, + 0.0140631552785635, + -0.0003305635182186961, + -0.022887803614139557, + 0.0055596004240214825, + -0.004892159719020128, + 0.005321486387401819, + 0.017389535903930664, + 0.023869121447205544, + 0.0028068586252629757, + 0.020160317420959473, + 0.022426007315516472, + 0.023392893373966217, + 0.024951457977294922, + 0.002372120274230838, + 0.00808865949511528, + 0.03379775211215019, + -0.023436186835169792, + -0.02039121463894844, + -0.005739989690482616, + -0.055646512657403946, + -0.028111880645155907, + 0.007410395424813032, + -0.029295234009623528, + 0.000379945122404024, + -0.005678657442331314, + 0.033999789506196976, + 0.012735489755868912, + 0.0037088056560605764, + -0.023724811151623726, + 0.014474443159997463, + 0.01399100013077259, + -0.02949727140367031, + -0.012316986918449402, + 0.029785893857479095, + -0.0013448027893900871, + 0.021603431552648544, + -0.0309981107711792, + -0.0005019334494136274, + 0.01565779745578766, + -0.0011788445990532637, + -0.03215260058641434, + 0.04297596588730812, + 0.02577403374016285, + -0.015975283458828926, + -0.01997271180152893, + 0.01812552474439144, + -0.0030594037380069494, + -0.017389535903930664, + 0.009351384826004505, + -0.016812289133667946, + -0.00782889872789383, + 0.010946027003228664, + 0.01600414514541626, + -0.03662625700235367, + -0.03503883257508278, + 0.004848866257816553, + -0.0016821309691295028, + 0.019496483728289604, + 0.012944741174578667, + -0.010513092391192913, + -0.006973853334784508, + 0.03376889228820801, + -0.01574438437819481, + 0.0027094483375549316, + -0.05400136485695839, + 0.006266727112233639, + -0.0014386052498593926, + 0.009741025976836681, + 0.026134813204407692, + -0.012309771031141281, + -0.0288190059363842, + -0.014005430974066257, + 0.017909057438373566, + 0.019193429499864578, + 0.008297910913825035, + -0.02646672911942005, + -0.002032988239079714, + -0.041994646191596985, + 0.024908164516091347, + -0.030392002314329147, + -0.02039121463894844, + -0.019178997725248337, + 0.006346098147332668, + 0.016307199373841286, + -0.031806252896785736, + 0.029122060164809227, + 0.017490554600954056, + 0.015138275921344757, + -0.022296126931905746, + 0.015614503994584084, + -0.0407535694539547, + 0.03610673546791077, + -0.00217910367064178, + -0.023306306451559067, + -0.00931530725210905, + -0.02326301299035549, + 0.00825461745262146, + -0.030132241547107697, + 0.01335602905601263, + -0.009365816600620747, + 0.003183872438967228, + -0.02375367283821106, + 0.0014620558358728886, + 0.007338239811360836, + -0.026163674890995026, + -0.0286458320915699, + 0.0015062512829899788, + -0.005826576612889767, + 0.004693731665611267, + -0.020578820258378983, + 0.00735267112031579, + 0.020679837092757225, + -0.003384104697033763, + -0.0036727276165038347, + -0.01609073206782341, + 0.0031820684671401978, + 0.0006354216020554304, + -0.022094091400504112, + 0.003214538563042879, + -0.018904807046055794, + 0.020448939874768257, + 0.011674799956381321, + 0.004989570006728172, + -0.05662783235311508, + 0.011256297118961811, + 0.015484623610973358, + -0.011602644808590412, + -0.009033899754285812, + 0.010159529745578766, + 0.022180678322911263, + 0.0033678696490824223, + 0.011032613925635815, + -0.011602644808590412, + -0.019741812720894814, + -0.007598000578582287, + 0.002253063255921006, + -0.008665905334055424, + 0.008507163263857365, + -0.03342254459857941, + 0.004902983084321022, + -0.028414934873580933, + -0.013940490782260895, + 0.027909843251109123, + -0.02166115678846836, + -0.029930206015706062, + 0.03313392028212547, + 0.01221596822142601, + 0.0007653019274584949, + 0.013853903859853745, + 0.008839079178869724, + 0.017057619988918304, + 0.0019518129993230104, + -0.034172963351011276, + 0.030853798612952232, + 0.013637436553835869, + 0.003979389555752277, + 0.008499947376549244, + -0.01065740454941988, + -0.030709486454725266, + -0.010845009237527847, + -0.007331024389714003, + 0.016999894753098488, + 0.01108312327414751, + 0.00012739999510813504, + -0.0160185769200325, + -0.010693482123315334, + 0.005776067730039358, + 0.013067406602203846, + 0.023306306451559067, + 0.0059348102658987045, + 0.005397249944508076, + 0.03379775211215019, + -0.007446473464369774, + 0.009589498862624168, + -0.020925167948007584, + -0.01675456576049328, + -0.028097448870539665, + -0.0021087517961859703, + 0.009538990445435047, + 0.0022476515732705593, + -0.005923986900597811, + 0.006847580894827843, + -0.021459119394421577, + 0.044361356645822525, + -0.023234151303768158, + -0.031806252896785736, + 0.017317380756139755, + 0.009697732515633106, + 0.010808931663632393, + -0.004560243338346481, + 0.020925167948007584, + 0.01877492666244507, + 0.009452403523027897, + 0.047189861536026, + 0.03229691460728645, + -0.00621261028572917, + 0.012172674760222435, + 0.02990134246647358, + -0.008319557644426823, + -0.010635757818818092, + -0.0142363291233778, + -0.0043257372453808784, + -0.009640008211135864, + -0.03521200641989708, + 0.001518878503702581, + -0.030016791075468063, + 0.020766424015164375, + -0.00016640919784549624, + -0.004542204551398754, + -0.012562315911054611, + -0.02629355527460575, + -0.03218146413564682, + 0.020261334255337715, + 0.0037196290213614702, + -0.03881979361176491, + -0.033566854894161224, + 0.003438221523538232, + 0.0013240580447018147, + 0.002711252309381962, + 0.03529859334230423, + 0.019106842577457428, + 0.019063549116253853, + -0.009344169870018959, + -0.018341992050409317, + -0.012266477569937706, + -0.014503305777907372, + 0.001531505840830505, + -0.013514772057533264, + 0.011465548537671566, + 0.016191750764846802, + -0.03547176718711853, + -0.0038819792680442333, + -0.011941776610910892, + 0.025124631822109222, + -0.0023270228412002325, + -0.030767211690545082, + -0.009495696984231472, + -0.003541043493896723, + -0.021184928715229034, + -0.019178997725248337, + -0.008045366033911705, + -0.01854402758181095, + 0.02274349331855774, + 0.009914199821650982, + 0.0073454552330076694, + -0.006273942533880472, + -0.015152707695960999, + -0.001204099040478468, + 0.030680624768137932, + -0.026942957192659378, + -0.028689125552773476, + 0.013074621558189392, + 0.005094196181744337, + 0.0011166102485731244, + 0.01090273354202509, + -0.014993964694440365, + -0.049325671046972275, + -0.032470088452100754, + 0.0156722292304039, + -0.0024009826593101025, + -0.012901447713375092, + -0.017331810668110847, + -0.020694268867373466, + -0.006234257016330957, + 0.01767815835773945, + -0.02298882231116295, + -0.0041200933046638966, + 0.023724811151623726, + -0.009466834366321564, + 0.00025840778835117817, + -0.019337741658091545, + 0.012432435527443886, + -0.013781748712062836, + 0.011732525192201138, + -0.034317273646593094, + -0.020910736173391342, + -0.08439336717128754, + -0.02399900183081627, + -0.03544290363788605, + 0.03319164365530014, + 0.027433617040514946, + 0.00871641468256712, + 0.00038625876186415553, + -0.0025687445886433125, + 0.022541455924510956, + 0.0004209837061353028, + 0.010679051280021667, + -0.02249816246330738, + 0.0017876586643978953, + 0.03345140442252159, + -0.012872586026787758, + 0.015268156304955482, + -0.006338882725685835, + -0.0237681046128273, + -0.007857761345803738, + -0.03864661976695061, + 0.0013944099191576242, + 0.0006566173397004604, + 0.005050902720540762, + 0.0154990553855896, + -0.001368253375403583, + 0.0075402758084237576, + -0.02586062066257, + -0.005588463041931391, + -0.029093198478221893, + -0.017072049900889397, + 0.034403860569000244, + 0.027664514258503914, + -0.007857761345803738, + -0.010729559697210789, + 0.0010724148014560342, + 0.022685768082737923, + 0.008362851105630398, + -0.011674799956381321, + -0.008572103455662727, + -0.013240580447018147, + -0.007154242601245642, + 0.008701983839273453, + 0.0015874265227466822, + -0.01913570426404476, + -0.0028267016168683767, + -0.018486302345991135, + 0.017649296671152115, + -0.03261439874768257, + -0.024879302829504013, + 0.001368253375403583, + 0.015787677839398384, + 0.018659476190805435, + 0.01574438437819481, + -0.017331810668110847, + 0.02840050309896469, + 0.007006323430687189, + 0.015383605845272541, + 0.0021448296029120684, + 0.009668870829045773, + -0.02326301299035549, + 0.048402078449726105, + 0.03091152384877205, + 0.0006981068872846663, + -0.0017443652031943202, + -0.02469169721007347, + 0.010765638202428818, + 0.01818324811756611, + 0.038964103907346725, + 0.01795235089957714, + 0.006205394398421049, + -0.012273693457245827, + -0.02065097540616989, + 0.0318639799952507, + 0.051519203931093216, + -0.005916771478950977, + -0.0092287203297019, + 0.016191750764846802, + 0.03850230947136879, + 0.005141097120940685, + 0.0010327291674911976, + -0.006558957509696484, + 0.006118807476013899, + 0.02173331193625927, + 0.006595035549253225, + -0.02518235705792904, + -0.01894810050725937, + 0.0026661548763513565, + -0.023060977458953857, + 0.003863940481096506, + 0.0043004825711250305, + 0.01786576397716999, + -0.004473656415939331, + 0.028862299397587776, + 0.01610516384243965, + -0.01204279437661171, + 0.007778389845043421, + -0.01988612487912178, + 0.008045366033911705, + -0.02619253657758236, + 0.003914449363946915, + -0.018168818205595016, + -0.009192642755806446, + 0.010491445660591125, + 0.0018255404429510236, + 0.0014782908838242292, + 0.010967673733830452, + 0.012381927110254765, + 0.01624947413802147, + 0.0015775050269439816, + -0.01955420896410942, + 0.0029746207874268293, + 0.018341992050409317, + -0.033335957676172256, + 0.019669657573103905, + -0.023695947602391243, + 0.007763958536088467, + -0.020622113719582558, + -0.011977854184806347, + -0.02300325222313404, + -0.02417217567563057, + -0.006122415419667959, + 0.0179379191249609, + -0.005768852308392525, + -0.006490409839898348, + -0.0181110929697752, + 0.016812289133667946, + -0.012078872881829739, + -0.006317235995084047, + 0.002173691987991333, + 0.016740133985877037, + 0.004820004105567932, + -0.009704948402941227, + 0.004516949877142906, + 0.002857367740944028, + 0.0035626902244985104, + 0.008947312831878662, + 0.03258553519845009, + -0.007424826733767986, + 0.03131559491157532, + -0.04398614540696144, + -0.016148457303643227, + -0.018572889268398285, + -0.0022729060146957636, + 0.012785999104380608, + -0.008507163263857365, + -0.009077193215489388, + -0.004094838630408049, + -0.008860725909471512, + 0.012439651414752007, + -0.028357209637761116, + 0.005465798079967499, + 0.0022837293799966574, + 0.02181989885866642, + -0.005332309752702713, + -0.02972816862165928, + -0.0030305415857583284, + -0.020679837092757225, + -0.007255260832607746, + 0.011645938269793987, + -0.04430362954735756, + -0.01616288721561432, + 0.010960458777844906, + 0.0049787466414272785, + 0.007547491230070591, + -0.01821211166679859, + -0.01285093929618597, + -0.023046545684337616, + 1.3839247003488708e-5, + -0.019308878108859062, + -0.02300325222313404, + -0.005570423789322376, + -0.013110700063407421, + -0.0181110929697752, + -0.03630877286195755, + 0.014921809546649456, + -0.02056438848376274, + -0.015051688998937607, + 0.003975781612098217, + 0.027159424498677254, + 0.005512699484825134, + -0.013630221597850323, + -0.002126790815964341, + 0.0073165930807590485, + 0.03867548331618309, + 0.0017515808576717973, + 0.0308249369263649, + -0.009120486676692963, + 0.02754906564950943, + -0.023811398074030876, + -0.003070227103307843, + 0.015802109614014626, + 0.024374213069677353, + -0.020910736173391342, + 0.02838607132434845, + 0.006483193952590227, + -0.018976962193846703, + 0.017043188214302063, + 0.02358049899339676, + -0.0003023776807822287, + -0.0015603681094944477, + -0.018933668732643127, + 0.0011608055792748928, + 0.01903468742966652, + -0.0033101451117545366, + -0.008146383799612522, + 0.017072049900889397, + -0.05619489774107933, + 0.013074621558189392, + 0.024244332686066628, + -0.020290197804570198, + 0.012663333676755428, + 0.005260154139250517, + 0.00977710448205471, + -0.022628042846918106, + 0.018558459356427193, + -0.009380247443914413, + 0.019395465031266212, + -0.02267133630812168, + -0.015903126448392868, + -0.02476385422050953, + 0.030565176159143448, + -0.003573513589799404, + -0.01099653635174036, + -0.002736506750807166, + 0.010614111088216305, + 0.011920129880309105, + 0.014221898280084133, + -0.05778232589364052, + -0.031719665974378586, + 0.006331666838377714, + 0.0008938293321989477, + 0.01652366667985916, + -0.02544211782515049, + -0.004257189109921455, + 0.003687158925458789, + -0.015268156304955482, + 0.03916614130139351, + 0.0002989953791256994, + 0.03148876875638962, + 0.015701090916991234, + -0.03143104538321495, + -0.019900556653738022, + 0.00012942937610205263, + 0.011205787770450115, + 0.03480793535709381, + 0.031229007989168167, + -0.015686659142374992, + -0.025369960814714432, + 0.0038603325374424458, + 0.02990134246647358, + 0.022873371839523315, + -0.019611932337284088, + 0.009596714749932289, + 0.017288517206907272, + 0.019424328580498695, + -0.005270977504551411, + 0.004863297566771507, + -0.024980321526527405, + 0.0026138420216739178, + -0.003577121300622821, + -0.007655724883079529, + 0.0031694413628429174, + 0.006165708880871534, + -0.012316986918449402, + 0.02140139602124691, + -0.01826983503997326, + 0.00994306243956089, + 0.01795235089957714, + -0.0029096805956214666, + -0.002621057676151395, + 0.027419185265898705, + 0.0029764247592538595, + -0.029872480779886246, + -0.004210288170725107, + 0.0023901592940092087, + -0.003524808445945382, + 0.013413754291832447, + -0.019077980890870094, + -0.014135311357676983, + 0.000587167392950505, + -0.0057832831516861916, + 0.0005736381863243878, + -0.03806937485933304, + 0.019438758492469788, + 0.012461298145353794, + 0.0036943743471056223, + 0.018082231283187866, + 0.012331417761743069, + 0.04413045570254326, + -0.016538098454475403, + 0.017245223745703697, + 0.0032776750158518553, + 0.005758028943091631, + 0.004874120932072401, + 0.02148798294365406, + 0.02737589180469513, + -0.008781354874372482, + -0.015138275921344757, + 0.02014588564634323, + -0.020824149250984192, + -0.006645544432103634, + 0.005462190136313438, + 0.004080407787114382, + 0.02544211782515049, + -0.004094838630408049, + -0.00018332070612814277, + 0.030132241547107697, + 0.009351384826004505, + 0.009149349294602871, + -0.009106055833399296, + -0.00033191643888130784, + 0.023537205532193184, + -0.015542348846793175, + -0.03512541949748993, + -0.012749920599162579, + -0.006050259806215763, + 0.001544133061543107, + 0.0048524742014706135, + 0.004617968108505011, + -0.028111880645155907, + -0.01242522057145834, + -0.01779360882937908, + -0.007168673910200596, + -0.008456653915345669, + -0.0154990553855896, + 0.004058761056512594, + 0.0179379191249609, + 0.0006949500530026853, + 0.003681747242808342, + -0.018471872434020042, + -0.018717201426625252, + 0.038877516984939575, + -0.00575081305578351, + -0.006494017317891121, + 0.010527524165809155, + -0.006880050990730524, + -0.003838685806840658, + -0.005123058333992958, + 0.01685558259487152, + -0.004747848492115736, + 0.02138696424663067, + 0.00017813450540415943, + -0.029872480779886246, + 0.020420076325535774, + 0.025341099128127098, + 0.030796073377132416, + -0.011465548537671566, + 0.020275766029953957, + 0.03261439874768257, + 0.0026427044067531824, + 0.0013150385348126292, + 0.005454974714666605, + -0.0023883553221821785, + -0.004459225572645664, + 0.021704450249671936, + 0.011357314884662628, + 0.0001320224691880867, + 0.023479480296373367, + -0.004455617628991604, + -0.025413254275918007, + 0.004123701248317957, + -0.023955708369612694, + -0.005068941507488489, + -0.017418397590517998, + 0.007771174423396587, + 0.015138275921344757, + 0.00678264070302248, + -0.0049498844891786575, + 0.011068692430853844, + -0.02164672501385212, + 0.00030125025659799576, + 0.0032488126307725906, + -0.0004421794437803328, + -0.015138275921344757, + -0.01407037116587162, + -0.002410002052783966, + -0.0033678696490824223, + -0.018904807046055794, + 0.0027653691358864307, + 0.003044972661882639, + -0.008146383799612522, + 0.013608574867248535, + -0.026221400126814842, + -0.04000314697623253, + 0.008651474490761757, + 0.023710379377007484, + 0.02880457602441311, + 0.006797071546316147, + -0.0014458207879215479, + -0.0014828006969764829, + 0.018818220123648643, + -0.011920129880309105, + 0.008564887568354607, + -0.024749422445893288, + -0.011516057886183262, + 0.010087373666465282, + -0.009250367060303688, + 0.011378961615264416, + -0.03402865305542946, + 0.007143419235944748, + -0.03195056691765785, + -0.0012933918042108417, + -0.004015467595309019, + 0.02779439464211464, + 0.006079121958464384, + 0.026827508583664894, + 0.007987641729414463, + 0.006973853334784508, + 0.0020005181431770325, + -0.008131952956318855, + -0.011811896227300167, + -0.00969051755964756, + 0.0158454030752182, + -0.027751101180911064, + -0.004343776032328606, + -0.010462583974003792, + -0.00013134600885678083, + 0.017490554600954056, + -0.003185676410794258, + -0.003165833419188857, + -0.003943311516195536, + -0.0029132883064448833, + -0.007547491230070591, + -0.008110306225717068, + 0.004809180740267038, + 0.005747205577790737, + -0.016624685376882553, + -0.007175889331847429, + 0.006140454206615686, + 0.02225283347070217, + -0.0011030810419470072, + -0.019583070650696754, + 0.0023649046197533607, + 0.001580210868269205, + 0.011840758845210075, + -0.018847081810235977, + 0.02601936273276806, + -0.02772223949432373, + -0.0033678696490824223, + -0.027505772188305855, + -0.018053367733955383, + -0.00994306243956089, + 0.007417611312121153, + -0.02427319437265396, + 0.0008040856337174773, + -0.007273299619555473, + 0.024547386914491653, + -0.019265584647655487, + 0.011523272842168808, + 0.008030935190618038, + 0.006093553267419338, + -0.03590470179915428, + 0.04482315108180046, + 0.0059853196144104, + -0.002954778028652072, + 0.010938812047243118, + 0.0075402758084237576, + 0.020939597859978676, + -0.016206180676817894, + 0.02358049899339676, + 0.02073756232857704, + -0.009892553091049194, + -0.01701432652771473, + 0.0035572785418480635, + -0.006353313568979502, + 0.022931097075343132, + 0.038531169295310974, + 0.005920379422605038, + -0.011855189688503742, + -0.007100125774741173, + -0.019900556653738022, + -0.024965889751911163, + -0.026668764650821686, + -0.0001377723820041865, + 0.009163780137896538, + -0.03994542360305786, + -0.012403573840856552, + 0.0033949280623346567, + -0.017735883593559265, + -0.019568638876080513, + 0.008536024950444698, + -0.003914449363946915, + 0.011985070072114468, + -0.005314270965754986, + 0.01718750037252903, + -0.016783427447080612, + 0.03368230536580086, + 0.007201144006103277, + -0.019842831417918205, + 0.003806215710937977, + -0.00026923115365207195, + 0.02578846551477909, + 0.01259117852896452, + -0.00816803053021431, + -0.007334631867706776, + -0.030565176159143448, + -0.0040226830169558525, + -0.0028176819905638695, + 0.010238900780677795, + 0.01195620745420456, + 0.014106448739767075, + -0.014806360006332397, + -0.02248373255133629, + -0.00834120437502861, + 0.004156171344220638, + -0.016797859221696854, + -0.006804287433624268, + 0.017966782674193382, + 0.014423934742808342, + -0.006494017317891121, + -0.018341992050409317, + 0.023609360679984093, + 0.008521594107151031, + -0.011566566303372383, + -0.0015143688069656491, + -0.011213003657758236, + 0.008420576341450214, + -0.0019644403364509344, + -0.008766924031078815, + -0.008471084758639336, + 0.016321631148457527, + -0.005776067730039358, + -0.011920129880309105, + -0.022137384861707687, + 0.008853510953485966, + 0.01652366667985916, + -0.002658939454704523, + -0.0022476515732705593, + -0.014438365586102009, + -0.008030935190618038, + -0.015470192767679691, + 0.0315176323056221, + -0.017144206911325455, + 0.011595428921282291, + 0.0012942937901243567, + 0.003037757007405162, + 0.007128987926989794, + -0.013637436553835869, + -0.011032613925635815, + -0.010094589553773403, + 0.0021971426904201508, + 0.004484479781240225, + -0.006627505645155907, + 0.014561030082404613, + -0.011097554117441177, + 0.0745224580168724, + -0.004560243338346481, + 0.02021804079413414, + 0.010635757818818092, + -0.0028898378368467093, + -0.030853798612952232, + -0.0011490803444758058, + 0.013521987944841385, + 0.00855045672506094, + 0.0032037151977419853, + -0.006991892121732235, + -0.00444840220734477, + 0.005862654652446508, + 0.00029583857394754887, + -0.014965103007853031, + -0.0031640296801924706, + 0.020189179107546806, + 0.02671205811202526, + 0.007071263622492552, + 0.01955420896410942, + 0.004246365744620562, + -0.006851188372820616, + -0.008846295066177845, + -0.005693088751286268, + -0.016235044226050377, + 0.022007504478096962, + -0.0012013931991532445, + -0.0029926598072052, + 0.03544290363788605, + 0.03350913152098656, + 0.0016235043294727802, + 0.005166351795196533, + 0.0010642972774803638, + -0.0023270228412002325, + 0.012035579420626163, + 0.012288124300539494, + 0.007186712697148323, + 0.022223971784114838, + 8.461389370495453e-5, + 0.001688444521278143, + -0.0011734329164028168, + -0.003679943270981312, + 0.02114163525402546, + 0.009928631596267223, + -0.012742705643177032, + -0.014654832892119884, + 0.0018958923174068332, + -0.0037809612695127726, + -0.009611145593225956, + 0.0074392580427229404, + -0.013875550590455532, + -0.02593277581036091, + 0.008615396916866302, + 0.014907377772033215, + -0.0021628686226904392, + -0.013659083284437656, + 0.005216860678046942, + -0.00161719077732414, + -0.005563208367675543, + -0.0002460060059092939, + -0.0048272195272147655, + -0.0070676556788384914, + -0.0013123326934874058, + -0.024157745763659477, + -0.019337741658091545, + -0.00825461745262146, + -0.008781354874372482, + -0.029872480779886246, + 0.0005740891792811453, + -0.007771174423396587, + -0.014423934742808342, + 0.003759314538910985, + -0.00663472106680274, + -0.04566015675663948, + 0.0013240580447018147, + 0.03616446256637573, + -4.754951078211889e-5, + 0.0007021656492725015, + 0.022729061543941498, + 0.016913307830691338, + 0.0016965620452538133, + 0.010000786744058132, + -0.014142527244985104, + -0.012331417761743069, + 0.016913307830691338, + -0.005307055544108152, + 0.01928001642227173, + -0.019684089347720146, + 0.0047298092395067215, + -0.03148876875638962, + -0.012887016870081425, + 0.014452796429395676, + 0.004866905510425568, + 0.009553421288728714, + 0.011819112114608288, + -0.0036781392991542816, + 0.004397892858833075, + 0.002069066045805812, + 0.014460012316703796, + 0.0005795008619315922, + 0.025831758975982666, + 0.02509577013552189, + -0.02156013809144497, + -0.005620933137834072, + -0.0010751206427812576, + -0.0019373819231987, + 0.01565779745578766, + 0.006728523876518011, + -0.03177739307284355, + 0.0009768084855750203, + 0.0013835865538567305, + -0.016451511532068253, + 0.012259261682629585, + -0.007237221579998732, + -0.030622899532318115, + 0.008276264183223248, + 0.015354743227362633, + 0.011804680339992046, + -0.015455761924386024, + -0.008860725909471512, + -0.0006372254574671388, + 0.015268156304955482, + 0.006829541642218828, + 0.0043545993976294994, + 0.012345848605036736, + -0.00452416529878974, + -0.01821211166679859, + -0.011068692430853844, + -0.005357564426958561, + 0.001447624759748578, + 0.020521095022559166, + 0.009445187635719776, + 0.020997323095798492, + -0.014719773083925247, + 0.01685558259487152, + -0.000671950401738286, + -0.013572496362030506, + -0.002417217707261443, + 0.034836795181035995, + -0.022368282079696655, + 0.016826720908284187, + 0.01171087846159935, + 0.020997323095798492, + -0.00039302336517721415, + 0.006104376632720232, + 0.004773102700710297, + -0.00695220660418272, + -0.023811398074030876, + 0.027000682428479195, + -0.0068584042601287365, + 0.05351070314645767, + -0.024027865380048752, + 0.009553421288728714, + -0.007269691675901413, + -0.002354081254452467, + 0.0033877124078571796, + -0.016826720908284187, + 0.02688523195683956, + -0.012951957061886787, + 0.0007093812455423176, + 0.003638453781604767, + -0.00048389448784291744, + -0.0029565817676484585, + -0.0015287999995052814, + -0.010758422315120697, + -0.010433721356093884, + 0.01574438437819481, + 0.02629355527460575, + 0.020954029634594917, + -0.011696446686983109, + -0.005841007921844721, + -0.007060440257191658, + 0.009127702564001083, + -0.02711613103747368, + -0.011458332650363445, + -0.020780855789780617, + 0.03209487721323967, + 0.0160185769200325, + 0.0037881769239902496, + 0.0008135560783557594, + -0.011732525192201138, + -0.012908663600683212, + 0.0008072424679994583, + -0.011819112114608288, + -0.011104770004749298, + -0.020925167948007584, + 0.028934456408023834, + -0.013413754291832447, + -0.002330630784854293, + 0.006014181766659021, + -0.019943850114941597, + -2.199904884037096e-5, + 0.0012807645834982395, + -0.013081837445497513, + -0.008709198795258999, + -0.0031207362189888954, + 0.011746956035494804, + 0.018673907965421677, + 0.005462190136313438, + -0.008644258603453636, + -0.013117915019392967, + 0.0018471871735528111, + 0.009957493282854557, + 0.008507163263857365, + -0.006436293013393879, + 0.003972174134105444, + 0.002610234310850501, + -0.01995828002691269, + -0.0015702894888818264, + -0.000533050624653697, + -0.03864661976695061, + -0.02661104127764702, + 0.005577639676630497, + -0.0017876586643978953, + -0.019178997725248337, + 0.018226541578769684, + -0.004185033496469259, + 0.0009984552161768079, + -0.00969051755964756, + -0.017735883593559265, + 0.0032434009481221437, + 0.016725702211260796, + 0.02687080204486847, + 0.006097160745412111, + -0.008817432448267937, + 0.006811502855271101, + 0.01407037116587162, + 0.01355806551873684, + 0.01108312327414751, + 0.0020474193152040243, + 0.019308878108859062, + 0.0023396501783281565, + 0.00217910367064178, + 0.0005217762663960457, + 0.00011680211900966242, + 0.01818324811756611, + 0.0007919093477539718, + -0.012086087837815285, + 0.001102179056033492, + -0.010960458777844906, + -0.016278337687253952, + -0.004347383975982666, + 0.002869994845241308, + -0.013045759871602058, + 0.012468514032661915, + -0.015325881540775299, + -0.019914986565709114, + 0.0041489554569125175, + 0.005429720040410757, + -2.7777145078289323e-5, + 0.0006322647677734494, + -0.013370460830628872, + -0.018139954656362534, + -0.0029656013939529657, + 0.009546205401420593, + 0.012605609372258186, + -0.013089053332805634, + 0.004960707854479551, + -0.0038278624415397644, + 0.00020688406948465854, + 0.007222790736705065, + -0.0005434229969978333, + -0.017909057438373566, + 0.006934167351573706, + 0.008557671681046486, + 0.006926951929926872, + -0.024316487833857536, + 0.004643222317099571, + 0.006172924302518368, + 0.0059889270924031734, + 0.005346741061657667, + -0.0023703163024038076, + 0.0025777642149478197, + 0.012353064492344856, + -0.012555100955069065, + -0.005086980294436216, + 0.014604323543608189, + -0.019150136038661003, + 0.005563208367675543, + 0.016725702211260796, + -0.01978510618209839, + 0.009575068019330502, + -0.0032001074869185686, + -0.02130037732422352, + 0.012230399996042252, + -0.023465050384402275, + 0.018803788349032402, + 0.01170366257429123, + 0.00015231627912726253, + 0.019611932337284088, + 0.01082336250692606, + -0.008305126801133156, + 0.010339918546378613, + -0.009257582947611809, + -0.002404590370133519, + 0.011559351347386837, + -0.0016253083012998104, + 0.0006412842194549739, + 0.02535553090274334, + -0.0029710130766034126, + 0.01108312327414751, + -0.015614503994584084, + -0.021791037172079086, + -0.008485516533255577, + 0.02578846551477909, + -0.004780318588018417, + 0.027159424498677254, + 0.016451511532068253, + -0.012778783217072487, + 0.027347030118107796, + -0.007771174423396587, + 0.004159778822213411, + 0.015239294618368149, + 0.0016595822526142001, + -0.0008685748325660825, + 0.009156564250588417, + -0.002355885226279497, + 0.017375104129314423, + -0.01652366667985916, + 0.020203610882163048, + -0.017808038741350174, + 0.0035626902244985104, + -0.00331736053340137, + 0.005115842446684837, + 0.0181110929697752, + 0.013853903859853745, + 0.026683196425437927, + 0.011898483149707317, + 0.009697732515633106, + -0.023897984996438026, + 0.0045205578207969666, + 0.030132241547107697, + -0.0119706392288208, + 0.004112877883017063, + -0.005451366771012545, + 0.025081338360905647, + -0.02241157554090023, + 0.010549170896410942, + -0.007320201024413109, + 0.0023703163024038076, + 0.006147670093923807, + 0.0027888198383152485, + -0.019583070650696754, + -0.02181989885866642, + 0.007648509461432695, + 0.022036366164684296, + 0.020506663247942924, + -0.010253331623971462, + -0.006631113588809967, + 0.011090339161455631, + 0.014936240389943123, + -0.00016731114010326564, + 0.013146777637302876, + 0.0002245847717858851, + -0.02197864092886448, + 0.0019085195381194353, + 0.000817163847386837, + 0.034490447491407394, + 0.008839079178869724, + -0.0024875695817172527, + -0.0025525095406919718, + 0.007215574849396944, + 0.0032560282852500677, + -0.0012852742802351713, + -0.005036471411585808, + 0.0020185571629554033, + -0.0001232284848811105, + 0.01616288721561432, + -0.007677371613681316, + -0.0049210223369300365, + -0.007612431421875954, + -0.023710379377007484, + -0.0018228346016258001, + -0.01635049283504486, + -0.01116971019655466, + 0.004787534009665251, + -0.018933668732643127, + -0.0031802647281438112, + -0.022368282079696655, + 0.017043188214302063, + 0.02990134246647358, + 0.004037114325910807, + -0.014561030082404613, + -0.004336560610681772, + -0.0045782821252942085, + 0.019756244495511055, + 0.014878516085445881, + 0.020405646413564682, + 0.009329738095402718, + 0.015903126448392868, + -0.022628042846918106, + -0.0013628416927531362, + 0.0013294697273522615, + -0.0014864084077998996, + -0.010426505468785763, + 0.015600073151290417, + -0.009986355900764465, + 0.007807251997292042, + -0.0003849058412015438, + -0.00629558926448226, + -0.022050797939300537, + -0.012475728988647461, + 0.03174852952361107, + 0.004397892858833075, + -0.0066383290104568005, + -0.02754906564950943, + -0.007410395424813032, + 0.016812289133667946, + 0.015542348846793175, + -0.019020255655050278, + -0.004181425552815199, + 0.01179024949669838, + -0.029021043330430984, + -0.010469798929989338, + 0.008240186609327793, + -0.012858154252171516, + 0.010412074625492096, + 0.011263513006269932, + -0.0059853196144104, + 0.018414147198200226, + 0.002893445547670126, + -0.0004942668601870537, + 0.019063549116253853, + -0.009733811020851135, + 0.004621575586497784, + -0.01179024949669838, + 0.028328347951173782, + -0.0034724953584372997, + -0.010347134433686733, + 0.00783611461520195, + -0.0008600063738413155, + -0.007255260832607746, + -0.012634471990168095, + -0.0005767950206063688, + -0.021632293239235878, + -0.019496483728289604, + 0.03229691460728645, + 0.00023608459741808474, + 0.008131952956318855, + -0.005260154139250517, + -0.012331417761743069, + -0.008492731489241123, + -0.014936240389943123, + -0.005231291987001896, + -0.002281925641000271, + -0.00913491751998663, + 0.005718342959880829, + 0.010787284933030605, + -0.005678657442331314, + -0.0064615472219884396, + -0.024994751438498497, + -0.0010219058021903038, + -0.020795287564396858, + 0.004260797053575516, + -0.01988612487912178, + -0.008276264183223248, + 0.0029674051329493523, + 0.00028411325183697045, + 0.012785999104380608, + -0.022642474621534348, + 0.005577639676630497, + -0.003615003079175949, + -0.010895518586039543, + 0.006129630841314793, + -0.01057081762701273, + 0.0014025274431332946, + 0.02300325222313404, + 0.012778783217072487, + -0.010462583974003792, + 0.007958779111504555, + -0.015008395537734032, + 0.022729061543941498, + 0.004654045682400465, + 0.004029898438602686, + -0.004314913880079985, + 0.020997323095798492, + -0.0015784070128574967, + 0.010455368086695671, + 0.00880300160497427, + 0.003225361928343773, + -0.017894625663757324, + -0.008572103455662727, + -0.0031532063148915768, + 0.008225755766034126, + 0.014669263735413551, + -0.0019337740959599614, + 0.0014115468366071582, + 0.022397145628929138, + -0.018486302345991135, + 0.010325487703084946, + 0.02803972363471985, + 0.00881021749228239, + 0.010159529745578766, + -0.010094589553773403, + 0.011754171922802925, + -0.0035753173287957907, + 0.0316908061504364, + 0.013868334703147411, + -0.004801965318620205, + -0.003813431365415454, + 0.016624685376882553, + -0.002119575161486864, + -0.017923489212989807, + 0.002404590370133519, + 0.04358207434415817, + 0.03200829029083252, + -0.0027347030118107796, + 0.01610516384243965, + -5.076269735582173e-5, + 0.005231291987001896, + 0.007323808502405882, + 0.0154990553855896, + -0.0210694782435894, + 0.001828246284276247, + 0.004740632604807615, + 0.007879408076405525, + 0.01972738280892372, + 0.01802450604736805, + 0.0017209146171808243, + 0.002433452755212784, + -0.006439900491386652, + -0.025254512205719948, + 0.008225755766034126, + 0.020405646413564682, + 0.005177175160497427, + -0.018847081810235977, + 0.005231291987001896, + -0.00800928846001625, + -0.0005425210692919791, + -0.004217503592371941, + -0.008240186609327793, + 0.009373031556606293, + 0.0067609939724206924, + -0.011775818653404713, + 0.0026859978679567575, + 0.012670549564063549, + 0.0065842121839523315, + 0.010296625085175037, + 0.02399900183081627, + -0.016999894753098488, + 0.003515788819640875, + 0.0316908061504364, + 0.03754985332489014, + 0.0002805054828058928, + 0.016783427447080612, + -0.007886623032391071, + 0.007684587500989437, + 0.015311449766159058, + -0.0022007504012435675, + 0.020333491265773773, + -0.014553815126419067, + 0.015729952603578568, + 0.030651763081550598, + 0.016538098454475403, + 0.020088160410523415, + -0.019842831417918205, + -0.0051591359078884125, + 0.013760101981461048, + 0.0026300770696252584, + 0.01870276965200901, + -0.01753384806215763, + -0.01179024949669838, + -0.0073165930807590485, + -0.00808144360780716, + -0.01373845525085926, + 0.0016974640311673284, + -0.005613717250525951, + 0.002269298303872347, + 0.006483193952590227, + 0.017086481675505638, + -0.010145098902285099, + -0.01276435237377882, + -0.009178210981190205, + 0.017302948981523514, + 0.001966244075447321, + -0.005956456996500492, + -0.028285054489970207, + 0.01616288721561432, + 0.028371641412377357, + -0.013312735594809055, + -0.0012149224057793617, + -0.003299321746453643, + -0.025038044899702072, + 0.001839971635490656, + -0.007792821153998375, + 0.012605609372258186, + 0.022267265245318413, + 0.002862779423594475, + 0.030218828469514847, + -0.026062656193971634, + 0.019756244495511055, + -0.013918844051659107, + -0.023060977458953857, + -0.006050259806215763, + -0.00017170813225675374, + -0.010433721356093884, + 0.0075402758084237576, + -0.009589498862624168, + -0.02317642606794834, + -0.007886623032391071, + -0.004437578842043877, + 0.015426899306476116, + 0.001975263701751828, + 0.007359886541962624, + 0.003766530193388462, + -0.0028663871344178915, + -0.007046008948236704, + -0.021690018475055695, + -0.013435401022434235, + -0.019193429499864578, + -0.01091716531664133, + 0.009243151172995567, + -0.004062368534505367, + -0.01701432652771473, + 0.0006200884818099439, + -0.00532870227470994, + 0.025644153356552124, + 0.007576353847980499, + 0.0027509380597621202, + -0.00026562335551716387, + -0.0005402661627158523, + 0.018673907965421677, + -0.002191731007769704, + 0.01694216951727867, + -0.014993964694440365, + -0.009365816600620747, + -0.005887909326702356, + 0.005732774268835783, + 0.006757386028766632, + -0.01541246846318245, + 0.006789856124669313, + 0.013377675786614418, + -0.0004802867188118398, + -0.028963318094611168, + 0.0156722292304039, + -0.0072913384065032005, + -0.012634471990168095, + -0.01188405230641365, + 0.0022386321797966957, + -0.018139954656362534, + 0.0030125025659799576, + -0.0034977500326931477, + -0.0043004825711250305, + 0.026481160894036293, + -0.003420182503759861, + -0.00791548565030098, + 0.0010733167873695493, + 0.0116242915391922, + 0.009560637176036835, + 0.001639739377424121, + -0.019265584647655487, + 0.004156171344220638, + -0.015066120773553848, + 0.01978510618209839, + -0.014106448739767075, + -0.02476385422050953, + 0.014344562776386738, + -0.03538518026471138, + 0.0644206553697586, + -0.01389719732105732, + -0.017548277974128723, + -0.025571998208761215, + -0.01107590738683939, + 0.0065156640484929085, + -0.012331417761743069, + -0.00404072180390358, + 0.01938103511929512, + 0.0030666193924844265, + -0.021964211016893387, + -0.011277943849563599, + -0.005739989690482616, + -0.0017290321411564946, + -0.01692773960530758, + 0.004206680227071047, + 0.0023414541501551867, + 0.007244437467306852, + -0.0019157351925969124, + -0.003752098884433508, + 0.029266372323036194, + -0.0409267395734787, + -0.011609859764575958, + -0.009199857711791992, + 0.013586928136646748, + -0.009596714749932289, + -1.4191570699040312e-5, + 0.012988034635782242, + 0.014575461857020855, + -0.01616288721561432, + -0.0038531171157956123, + 0.006616682279855013, + -0.009098839946091175, + 0.004639614839106798, + -0.021632293239235878, + -0.025831758975982666, + 0.0043257372453808784, + -0.002940346719697118, + -0.029612720012664795, + -0.01955420896410942, + -0.000360327772796154, + -0.014849653467535973, + -0.016898876056075096, + 0.004329345189034939, + -0.010513092391192913, + -0.012562315911054611, + -0.01486408431082964, + -0.018760494887828827, + 0.01878935657441616, + 0.01904911734163761, + 0.006966637447476387, + 0.004596321377903223, + 0.012908663600683212, + 0.00703157763928175, + 0.008023719303309917, + -0.00872363056987524, + -0.011516057886183262, + -0.02593277581036091, + -0.0003271812165621668, + -0.011039829812943935, + -0.013052974827587605, + -0.00041805236833170056, + -0.008745277300477028, + 0.012713843025267124, + 0.004073191899806261, + 0.006995500065386295, + -0.01642264798283577, + -0.02770780771970749, + -0.012353064492344856, + 0.012800429947674274, + -0.010094589553773403, + 0.014019861817359924, + 0.03532745689153671, + -0.016134025529026985, + 0.006894481834024191, + 0.01878935657441616, + -0.019857263192534447, + 0.0049498844891786575, + 0.01633606106042862, + 0.010556385852396488, + -0.012995250523090363, + 0.003820647019892931, + -0.012988034635782242, + -0.04407273232936859, + -0.018139954656362534, + 0.0015396233648061752, + 0.01727408729493618, + -0.005999750457704067, + 0.005516306962817907, + 0.013601358979940414, + -0.015556779690086842, + 0.0230754092335701, + -0.005534346215426922, + -0.005610109772533178, + 0.01541246846318245, + 0.001422370201908052, + -0.005133881699293852, + -0.004971531219780445, + 0.009733811020851135, + -0.015859832987189293, + -0.011342884041368961, + -0.00404432974755764, + 0.01251180749386549, + 0.006663583684712648, + 0.0012158243916928768, + 0.010816146619617939, + 0.009178210981190205, + 0.02180546708405018, + 0.005357564426958561, + -0.0023522775154560804, + -0.014503305777907372, + 0.014892946928739548, + -0.013399322517216206, + -0.01727408729493618, + -0.015239294618368149, + -0.03402865305542946, + -0.010065726935863495, + -0.006519271992146969, + 0.0015098591102287173, + -0.008384497836232185, + 0.0006092651165090501, + 0.00484165083616972, + -0.0016271121567115188, + 0.0013484106166288257, + -0.024951457977294922, + -0.001489114249125123, + -0.006432685069739819, + -0.0020059298258274794, + 0.022815648466348648, + 0.01727408729493618, + 0.01344261597841978, + 0.004556635394692421, + 0.021083910018205643, + -0.0021592609118670225, + -0.017317380756139755, + -0.003625826444476843, + 0.0184574406594038, + -0.005119450390338898, + 0.00825461745262146, + -0.020492233335971832, + 0.0004115132614970207, + -0.0015044474275782704, + 0.004704555030912161, + 0.004812788683921099, + 0.013493125326931477, + -0.017086481675505638, + -0.010202823206782341, + 0.021083910018205643, + -0.005862654652446508, + 0.003106305142864585, + -0.0011644134065136313, + -0.014878516085445881, + 0.015542348846793175, + -0.02122822217643261, + -0.0003573964349925518, + 0.012713843025267124, + 0.021430257707834244, + -0.004794749431312084, + 0.0016235043294727802, + 0.004249973688274622, + -0.0015793089987710118, + 0.007677371613681316, + -0.021184928715229034, + 0.003900018287822604, + 0.028111880645155907, + -0.013031328096985817, + -0.030680624768137932, + -0.001065199263393879, + 0.005050902720540762, + -0.004163386765867472, + 0.0034977500326931477, + -0.03388433903455734, + -0.021444689482450485, + 0.004960707854479551, + -0.009106055833399296, + 0.0023504735436290503, + 0.0066383290104568005, + -0.01736067421734333, + 0.00826183333992958, + -0.0017642080783843994, + 0.03841572254896164, + -1.6094114471343346e-5, + -0.0037088056560605764, + -0.033740028738975525, + 0.004210288170725107, + 0.00355908228084445, + 0.015556779690086842, + -0.014402288012206554, + -0.0005195214180275798, + -0.0103615652769804, + -0.021935347467660904, + -0.016480373218655586, + -0.002114163478836417, + 0.0005429720040410757, + 0.008492731489241123, + 0.003142382949590683, + -0.013998215086758137, + 0.005743597634136677, + -0.0068584042601287365, + -0.006454331800341606, + -0.0028068586252629757, + -0.016696840524673462, + 0.0144095029681921, + 0.029612720012664795, + 0.002204358112066984, + -0.013825041241943836, + 0.03212374076247215, + -0.010462583974003792, + 0.0017948743188753724, + -0.02913649193942547, + 0.00808144360780716, + -0.010433721356093884, + -0.02857367694377899, + -0.00427522836253047, + -0.0065156640484929085, + -0.009207073599100113, + -0.010181176476180553, + -0.010383212007582188, + 0.0041453479789197445, + -0.0029926598072052, + -0.011472764424979687, + 0.014423934742808342, + -0.005534346215426922, + 0.004379854071885347, + -0.005112234968692064, + 0.013687945902347565, + -0.02333517000079155, + -0.010455368086695671, + 0.02502361498773098, + 0.010267763398587704, + 0.011775818653404713, + 0.026596609503030777, + 0.0020059298258274794, + -0.011999500915408134, + 0.0049498844891786575, + 0.0006976558943279088, + 0.004181425552815199, + -0.004282443784177303, + 0.018746063113212585, + 0.001622602459974587, + -0.00549826817587018, + 0.0038422937504947186, + 0.0037845689803361893, + 0.007132595870643854, + -0.010354350320994854, + -0.007417611312121153, + -0.015686659142374992, + -0.006558957509696484, + -0.04277392849326134, + -0.008528809994459152, + -0.00412730872631073, + 0.03477907180786133, + -0.012057226151227951, + -0.011948992498219013, + 0.0316908061504364, + -0.0024406681768596172, + 0.007901054807007313, + 0.027433617040514946, + 0.016581391915678978, + 0.008124737069010735, + 0.00817524641752243, + -0.005851831287145615, + -0.010859440080821514, + 0.027765532955527306, + -0.0007404983625747263, + 0.011140847578644753, + 0.023594930768013, + -0.0036402575206011534, + -0.027087269350886345, + -0.014517736621201038, + -0.017476122826337814, + -0.025312237441539764, + 0.014734203927218914, + -0.025673015043139458, + 0.0025939992628991604, + -0.030767211690545082, + 0.007395964581519365, + 0.029872480779886246, + 0.01373123936355114, + -0.005689480807632208, + 0.009466834366321564, + 0.0014133508084341884, + 0.023320738226175308, + 0.0071362038142979145, + 0.027274873107671738, + -0.033480267971754074, + -0.01598971337080002, + 0.00808144360780716, + 0.0042968750931322575, + 0.0008708296809345484, + -0.01276435237377882, + -0.011617075651884079, + -0.010253331623971462, + 0.008673121221363544, + 0.014337347820401192, + -0.00178044312633574, + 0.010816146619617939, + -0.007367101963609457, + -0.007125380448997021, + -0.01928001642227173, + 0.001204099040478468, + -0.04314913973212242, + -0.004073191899806261, + -0.00283391703851521, + 0.024244332686066628, + -0.028862299397587776, + 0.007951563224196434, + -0.018414147198200226, + 0.004372638650238514, + -0.004455617628991604, + 0.0018237365875393152, + -0.016393786296248436, + 0.002184515353292227, + 0.02183433063328266, + -0.004513341933488846, + 0.023450618609786034, + 0.03016110323369503, + 0.00461436016485095, + -0.030218828469514847, + 0.0023342384956777096, + -0.0034003397449851036, + 0.005830184556543827, + -0.015859832987189293, + 0.001471977331675589, + -0.0012627256801351905, + -0.009906984865665436, + 0.013175640255212784, + 0.006562565453350544, + 0.008564887568354607, + -5.050902473158203e-5, + 0.0061548855155706406, + 5.21438050782308e-5, + -0.023955708369612694, + -0.021184928715229034, + 0.0012870781356468797, + 0.013543634675443172, + 0.0006070102681405842, + 0.0022386321797966957, + 0.012208753265440464, + 0.015051688998937607, + -0.009575068019330502, + -0.023623792454600334, + 0.009077193215489388, + 0.03841572254896164, + -0.005700304172933102, + -0.011696446686983109, + 0.00943075679242611, + -0.011227434501051903, + 0.0024316487833857536, + 0.022801216691732407, + -0.022137384861707687, + 0.0032001074869185686, + 0.012057226151227951, + 0.00532870227470994, + -0.02939625270664692, + -0.0041742101311683655, + -0.01512384507805109, + 0.02317642606794834, + 0.019655225798487663, + 0.017418397590517998, + -0.0051807826384902, + 0.006627505645155907, + -0.006216217763721943, + 0.01600414514541626, + -0.005891516804695129, + 0.00677903275936842, + 0.0030539920553565025, + 0.012093303725123405, + 0.015701090916991234, + -0.029107630252838135, + -0.025673015043139458, + -0.014092017896473408, + -0.0005353054730221629, + -0.01212938129901886, + 0.013312735594809055, + -0.015282588079571724, + -0.0049498844891786575, + 0.0043257372453808784, + -0.005487444810569286, + 0.009199857711791992, + -0.01574438437819481, + 0.009199857711791992, + 0.008247402496635914, + -0.0006760091637261212, + -0.0019951064605265856, + -0.008572103455662727, + -0.009899768978357315, + -0.014748635701835155, + 0.01027497835457325, + 0.001749776885844767, + 0.008990606293082237, + -0.006901697255671024, + -0.020405646413564682, + 0.0025380784645676613, + 0.0070387935265898705, + -0.0012176282471045852, + -0.0015702894888818264, + -0.00597810372710228, + 0.0043004825711250305, + 0.0002915543154813349, + 0.0144095029681921, + 0.017995644360780716, + -0.007298554293811321, + 0.003589748637750745, + -0.0013889982365071774, + -0.0029583857394754887, + -0.006526487413793802, + 0.005519914906471968, + -0.006851188372820616, + -0.0018228346016258001, + 0.0075691379606723785, + 0.0071650659665465355, + 0.016278337687253952, + 0.02688523195683956, + -0.008925666101276875, + 0.016812289133667946, + -0.027577927336096764, + 0.001326763886027038, + 0.022714629769325256, + 0.010080158710479736, + -0.021791037172079086, + -0.007475335616618395, + 0.016379354521632195, + 0.0027347030118107796, + 0.0010155921336263418, + -0.0018742455868050456, + 0.003535631811246276, + -0.008276264183223248, + -0.004964315798133612, + -0.002269298303872347, + 0.0029529740568250418, + -0.010845009237527847, + 0.013926059938967228, + 0.00589873269200325, + -0.0006832247599959373, + 0.018919236958026886, + -0.011097554117441177, + 1.8771768736769445e-5, + -0.003613199107348919, + 0.0015369175234809518, + -0.0007247143075801432, + -0.01027497835457325, + -0.013399322517216206, + 0.011111985892057419, + -0.004026290960609913, + 0.003669119905680418, + -0.004109269939363003, + -0.009957493282854557, + 0.003461671993136406, + 0.012172674760222435, + -0.010354350320994854, + -0.0028357210103422403, + -0.01751941628754139, + -0.0037845689803361893, + -0.02610594965517521, + -0.004322129301726818, + 0.010606895200908184, + 0.00347429933026433, + -0.010238900780677795, + -0.00316042173653841, + 0.021011754870414734, + 0.01844300888478756, + -0.02300325222313404, + -0.022021934390068054, + -0.005790499038994312, + -0.005173567216843367, + 0.018399715423583984, + 0.004704555030912161, + -0.010051296092569828, + -0.004599928855895996, + -0.0019464013166725636, + 0.016725702211260796, + 0.008990606293082237, + 0.012360280379652977, + 0.008680337108671665, + 0.014171388931572437, + 0.0036492771469056606, + -0.0011590017238631845, + 0.024807147681713104, + -0.0015459369169548154, + 0.020824149250984192, + -0.0061801401898264885, + 0.029280804097652435, + 0.014719773083925247, + 0.012353064492344856, + -0.005151920486241579, + 0.0052276840433478355, + -0.024836009368300438, + 0.016033006832003593, + 0.0036492771469056606, + 0.012793214060366154, + -0.0002455550420563668, + -0.010852225124835968, + -0.004816396161913872, + 0.0008965351735241711, + -0.02122822217643261, + -0.0160185769200325, + 0.0012022951850667596, + -0.003730452386662364, + -0.0017903645057231188, + 0.0021412218920886517, + 0.032729849219322205, + 0.015715522691607475, + 0.0040226830169558525, + -0.014654832892119884, + 0.00469733914360404, + -0.0024749422445893288, + 0.0013466066448017955, + -0.024662835523486137, + 0.002741918433457613, + -0.0034039474558085203, + 0.003936096094548702, + -0.010152313858270645, + -0.02941068448126316, + 0.008052581921219826, + 0.006475978530943394, + 0.0014746831730008125, + 0.019929418340325356, + 0.005592070519924164, + -0.003622218733653426, + 0.011054260656237602, + -0.011826327070593834, + -0.010123452171683311, + -0.007309377659112215, + -0.011025398969650269, + -0.001883265096694231, + 0.00897617544978857, + 0.006356921512633562, + -0.021083910018205643, + 0.006071906536817551, + 0.027231579646468163, + 0.01230255514383316, + 0.038790930062532425, + 0.003910841420292854, + -0.007367101963609457, + -0.0072624762542545795, + -0.0050725494511425495, + -0.006526487413793802, + -0.006219825707376003, + 0.0016532685840502381, + 0.003914449363946915, + -0.007843329571187496, + -0.029352959245443344, + 0.0009993570856750011, + 0.013962137512862682, + -0.0035933563485741615, + -0.017043188214302063, + 0.006281157955527306, + 0.007331024389714003, + 0.028501521795988083, + 0.012345848605036736, + 0.023710379377007484, + -0.013348814100027084, + 0.016220612451434135, + -0.024489661678671837, + 0.010397643782198429, + -0.007125380448997021, + 0.020319059491157532, + 9.865043830359355e-5, + -0.0018120112363249063, + 0.0035338278394192457, + 0.007460904773324728, + -0.0006394803058356047, + 0.0255142729729414, + 0.009813182055950165, + 0.001307822996750474, + 0.005119450390338898, + -0.004112877883017063, + 0.005346741061657667, + -0.010267763398587704, + 0.0025326667819172144, + 0.006851188372820616, + 0.007533060386776924, + -0.00686561968177557, + -0.02948283962905407, + -0.01137174665927887, + -0.006703269202262163, + 0.00871641468256712, + -0.002530863042920828, + 0.008557671681046486, + -0.019251154735684395, + 0.01854402758181095, + 0.0015215843450278044, + 0.0027383107226341963, + -0.004762279335409403, + 0.01877492666244507, + -0.023190857842564583, + -0.00572555884718895, + 0.01969851925969124, + -0.018327560275793076, + 0.010541955009102821, + -0.009149349294602871, + 0.009437971748411655, + -0.008333989419043064, + 0.024619542062282562, + -0.0034075553994625807, + 0.008557671681046486, + -0.0007468120311386883, + -0.006822326220571995, + -0.019857263192534447, + -0.011977854184806347, + 0.008694767951965332, + -0.003409359138458967, + -0.010419290512800217, + 0.019914986565709114, + 0.02806858718395233, + 0.0012203340884298086, + -0.027404753491282463, + 0.004874120932072401, + -0.028126310557127, + 0.011292374692857265, + -0.0010327291674911976, + -0.02711613103747368, + 0.01936660334467888, + -0.000617833633441478, + -0.02080971747636795, + 0.0056570107117295265, + -0.027361460030078888, + 0.021026184782385826, + 0.014387856237590313, + 0.01565779745578766, + 0.0088823726400733, + 0.0034165747929364443, + 0.03394206613302231, + -0.021964211016893387, + 0.001465663663111627, + -0.00017069344175979495, + 0.00025254511274397373, + 0.04378410801291466, + 0.02298882231116295, + 0.013002466410398483, + 0.004087623208761215, + 0.005040079355239868, + -0.026899663731455803, + 0.020925167948007584, + -0.016624685376882553, + 0.002052830997854471, + -0.015701090916991234, + 0.0021340062376111746, + -0.0013592339819297194, + 0.002929523354396224, + 0.028963318094611168, + 0.0025164317339658737, + -0.0007188516319729388, + -0.0029150922782719135, + 0.012684980407357216, + 0.0038242547307163477, + 2.2027234081178904e-5, + 0.001543231075629592, + -0.012713843025267124, + -0.02721714973449707, + 0.008593750186264515, + 0.01065740454941988, + 0.008687552064657211, + -0.003001679200679064, + -0.0072624762542545795, + -0.026437867432832718, + -0.0011427666759118438, + 0.0262069683521986, + -0.002130398526787758, + -0.01685558259487152, + 0.0016929543344303966, + -0.019482051953673363, + 0.019929418340325356, + -0.0034237904474139214, + 0.000602049520239234, + 0.002754545770585537, + -0.018760494887828827, + -0.017880195751786232, + -0.02131480909883976, + 0.026235830038785934, + -0.014055940322577953, + -0.01995828002691269, + -0.004751455970108509, + 0.01335602905601263, + 0.014438365586102009, + -0.005083372816443443, + -0.016119593754410744, + 0.010303840972483158, + 0.024330919608473778, + -0.018818220123648643, + -0.007049616891890764, + -0.002518235705792904, + 0.006317235995084047, + 0.015643365681171417, + -0.015109414234757423, + -0.014460012316703796, + -0.008139168843626976, + -0.03206601366400719, + 0.012331417761743069, + 0.009077193215489388, + 0.020665407180786133, + -0.0068584042601287365, + 0.02739032357931137, + -0.007742311805486679, + -0.008622611872851849, + 0.0004996785428375006, + -0.01609073206782341, + -0.0007053224835544825, + -0.0063352747820317745, + -0.003903625998646021, + -0.016465941444039345, + 0.0027274873573333025, + -0.008586534298956394, + -0.01593198999762535, + -0.002137614181265235, + -0.011645938269793987, + 0.029785893857479095, + -0.0046323989517986774, + -0.0062775504775345325, + 0.0008311440469697118, + -0.011523272842168808, + -0.0002493883075658232, + 0.014993964694440365, + -0.0031676373910158873, + 0.0182842668145895, + 0.004459225572645664, + -0.015051688998937607, + -0.021531276404857635, + -0.017490554600954056, + 0.0027707808185368776, + 0.003331791842356324, + 0.012648902833461761, + -0.010729559697210789, + -0.010130667127668858, + 0.014214682392776012, + 0.001379978726617992, + 0.010080158710479736, + 0.0071650659665465355, + -0.009336953982710838, + -0.010693482123315334, + 0.005794106516987085, + -0.0028555637691169977, + -0.029959067702293396, + 0.005768852308392525, + 0.020347921177744865, + -0.015398036688566208, + 0.005996142979711294, + -0.03578925132751465, + 0.020751994103193283, + -0.006966637447476387, + 0.013240580447018147, + 0.004199464805424213, + 0.02855924516916275, + -0.0035807290114462376, + -0.005083372816443443, + 3.424579699640162e-5, + -0.0032289698719978333, + -0.014755850657820702, + 0.013803394511342049, + 0.02427319437265396, + 0.005209645256400108, + 0.008528809994459152, + -0.009077193215489388, + 0.0031333635561168194, + 0.03209487721323967, + -0.008485516533255577, + -0.001762404222972691, + 0.004661261569708586, + -0.0025885875802487135, + -0.009091624058783054, + 0.0028645831625908613, + -0.013002466410398483, + 0.011472764424979687, + 0.029612720012664795, + -0.03532745689153671, + 0.016639115288853645, + -0.011775818653404713, + -0.011674799956381321, + 0.03405751287937164, + 0.020853010937571526, + -0.0002396923810010776, + 0.002034792210906744, + -0.001434997422620654, + -0.0047262017615139484, + 0.0237681046128273, + 0.00021703095990233123, + -0.005263762082904577, + -0.006071906536817551, + -0.01503725815564394, + -0.0017840509535744786, + 0.018471872434020042, + -0.007901054807007313, + 0.005927594844251871, + 0.024114452302455902, + 0.008651474490761757, + -0.02385469153523445, + -0.006775424815714359, + 0.007367101963609457, + 0.007172281388193369, + 0.006627505645155907, + 0.015946419909596443, + 0.010866655968129635, + 0.006429077126085758, + -0.005866262596100569, + -0.003907233942300081, + 0.009243151172995567, + -0.006100768689066172, + 0.008030935190618038, + 0.003900018287822604, + -0.00404072180390358, + 0.009524558670818806, + -0.011811896227300167, + 0.008442223072052002, + -0.004967923276126385, + -0.0036907666362822056, + -0.017072049900889397, + -0.01668240875005722, + 0.01710091345012188, + 0.025846188887953758, + 0.012533454224467278, + -0.012165459804236889, + 0.01188405230641365, + 0.02526894398033619, + -0.0038459014613181353, + 0.012230399996042252, + 0.018053367733955383, + 0.011429470963776112, + 0.028328347951173782, + 0.02560085989534855, + -0.003766530193388462, + -0.00020541840058285743, + -0.011559351347386837, + 0.012836507521569729, + 0.0011445705313235521, + 0.0035374355502426624, + -0.026077087968587875, + -0.003577121300622821, + 0.010375997051596642, + -0.000547932751942426, + 0.006627505645155907, + -0.01381782628595829 + ], + "d2d18186-43b6-41c4-9c61-81bb3209005c": [ + -0.022917309775948524, + -0.01928684487938881, + -0.004456537775695324, + 0.0231158509850502, + -0.028632456436753273, + -0.007466561626642942, + 0.008523084223270416, + 0.035595573484897614, + -0.044132839888334274, + 0.018209051340818405, + 0.00881380494683981, + 0.02219405397772789, + 0.0019393207039684057, + -0.023016581311821938, + -0.007842371240258217, + 0.018294140696525574, + -0.02578197419643402, + 0.01857776939868927, + 0.024051830172538757, + -0.012720809318125248, + 0.06886538118124008, + 0.004009820055216551, + -0.03361016511917114, + 0.0048181661404669285, + -0.01759924553334713, + -0.01727307215332985, + 0.0035826023668050766, + 0.009707239456474781, + -0.02871754579246044, + 0.023427844047546387, + 0.03108585625886917, + 0.023924198001623154, + 0.00692766485735774, + 0.012685355730354786, + -0.0013100163778290153, + -0.030944041907787323, + 0.003398242872208357, + 0.009288884699344635, + -0.011735194362699986, + -0.03658828139305115, + -0.07612631469964981, + 0.06029975414276123, + -0.0006044866167940199, + -0.007257384713739157, + -0.046146612614393234, + 0.004690532572567463, + 0.005981049500405788, + 0.011267204768955708, + 0.0021449525374919176, + 0.014479315839707851, + 0.01006177719682455, + -0.006498674396425486, + -0.005754145327955484, + 0.01976901665329933, + -0.003151839366182685, + -0.06943264603614807, + -0.01629454828798771, + 0.05757690593600273, + 0.003988548181951046, + -0.05408825725317001, + 0.01093393936753273, + 0.0051230681128799915, + 0.0059491409920156, + -0.005732872989028692, + -0.03664500638842583, + -0.027895018458366394, + -0.014245321042835712, + -0.0029267079662531614, + -0.08355741947889328, + 0.008920165710151196, + 0.01786869578063488, + 0.04121145233511925, + -0.008905984461307526, + 0.0267888605594635, + 0.011692649684846401, + -0.006693670060485601, + 0.03499995172023773, + -0.0062256804667413235, + -0.005084068980067968, + 0.016223641112446785, + -0.042771417647600174, + 0.017769424244761467, + -0.0013578790239989758, + -0.0024870813358575106, + 0.06682324409484863, + 0.019414478912949562, + -0.0053570629097521305, + -0.0326458215713501, + 0.02110207825899124, + -0.025001991540193558, + 0.0070092082023620605, + 0.02432127855718136, + 0.015089119784533978, + -0.010593583807349205, + -0.0051230681128799915, + -0.01009013969451189, + 0.01881885528564453, + -0.005279064644128084, + 0.036021020263433456, + -0.014266593381762505, + -0.01620945893228054, + 0.03931112959980965, + 0.004488445818424225, + 0.016096007078886032, + 0.018053054809570312, + 0.025654340162873268, + 0.0013729468919336796, + -0.014720400795340538, + -0.016010917723178864, + 0.0609237402677536, + 0.005215248093008995, + -0.04557935521006584, + 0.013415702618658543, + 0.017414886504411697, + -0.01887558214366436, + -0.02396674081683159, + -0.008218181319534779, + 0.007282202132046223, + 0.004265087191015482, + -0.019003216177225113, + 0.04716768115758896, + -0.004208361264318228, + -0.02785247378051281, + 0.04450155794620514, + -0.007558741606771946, + -0.0031305670272558928, + -0.00045469446922652423, + -0.004343085456639528, + -0.0007875166484154761, + -0.015727287158370018, + -0.03119930811226368, + -0.007324746809899807, + -0.0012107458896934986, + 0.01999592036008835, + 0.010288680903613567, + -0.018053054809570312, + 0.013415702618658543, + 0.057973988354206085, + -0.011323930695652962, + 0.03982166200876236, + -0.014833853580057621, + -0.03729735687375069, + -0.003254655050113797, + -0.011253023520112038, + -0.011444473639130592, + -0.007608376909047365, + -0.04591970890760422, + 0.02853318676352501, + -0.0014208094216883183, + 0.016819262877106667, + -0.03729735687375069, + -0.033525075763463974, + 0.02393837831914425, + 0.01004759594798088, + 0.010189410299062729, + 0.016904352232813835, + -0.00643840292468667, + -0.00631785998120904, + -0.020307913422584534, + 0.044785190373659134, + 0.0008943210705183446, + -0.04560771584510803, + -0.011309749446809292, + 0.003545376006513834, + 0.05570494756102562, + 0.01213227678090334, + 0.0005956231616437435, + 0.04089945927262306, + 0.0010458859615027905, + 0.016436362639069557, + 0.030632048845291138, + 0.00823945365846157, + -0.015925828367471695, + -0.009849054738879204, + 0.021910423412919044, + -0.006126409862190485, + 0.032163649797439575, + 0.017117075622081757, + 0.019981738179922104, + -0.023399481549859047, + 0.003426605835556984, + -0.001106157316826284, + -0.011522471904754639, + -0.01727307215332985, + 0.013046983629465103, + 0.019726471975445747, + 0.025413254275918007, + 0.027299394831061363, + -0.008820895105600357, + -0.010749580338597298, + 0.006651125382632017, + 0.0074169267900288105, + -0.019726471975445747, + 0.022506047040224075, + -0.03519849106669426, + -0.03256073221564293, + -0.004864255897700787, + -0.001286085112951696, + 0.0065128556452691555, + 0.023158395662903786, + -0.032248739153146744, + -0.027100853621959686, + -0.03695699945092201, + 0.0043395403772592545, + -0.050741422921419144, + 0.019059941172599792, + 8.323324436787516e-6, + 0.014025507494807243, + 0.001134520280174911, + -0.05973249301314354, + 0.03185165673494339, + -0.036815185099840164, + 0.0037190993316471577, + 0.031482938677072525, + -0.04626006633043289, + 0.016464726999402046, + -0.032844364643096924, + 0.009288884699344635, + 0.014805490151047707, + -0.041409991681575775, + -0.023356936872005463, + 0.0031305670272558928, + -0.02755466289818287, + -0.03925440460443497, + -0.06177463009953499, + -0.04782003164291382, + -0.009281794540584087, + 0.015741469338536263, + -0.048670921474695206, + 0.011082845740020275, + 0.042657963931560516, + 0.013266797177493572, + 0.013025711290538311, + -0.03630464896559715, + -0.0067043062299489975, + 0.03258909657597542, + -0.018024692311882973, + 0.014160231687128544, + 0.04050237685441971, + -0.028760090470314026, + 0.00429699569940567, + 0.02575361169874668, + 0.013926236890256405, + 0.0048536197282373905, + -0.010600673966109753, + -0.016096007078886032, + 0.027015764266252518, + 0.002164452103897929, + 0.02355547808110714, + -0.03783625364303589, + 0.007764373440295458, + -0.004772075917571783, + 0.0076509215869009495, + -0.03460286930203438, + -0.0323621928691864, + 0.07056716084480286, + 0.018209051340818405, + -0.03511340543627739, + -0.023002399131655693, + -0.014287864789366722, + 0.017429068684577942, + 0.00037137814797461033, + 0.04376412183046341, + 0.03397888317704201, + 0.006814212538301945, + -0.00139421911444515, + 0.01620945893228054, + -0.05238647386431694, + 0.01582655869424343, + 0.01635127328336239, + -0.03383706882596016, + 0.015074938535690308, + -0.007806918118149042, + -0.01579819619655609, + -0.0004613420460373163, + 0.026179056614637375, + -0.028320463374257088, + -0.025881243869662285, + -0.01228118222206831, + 0.0013986508129164577, + -0.017046168446540833, + 0.006615671794861555, + -0.002348811598494649, + 0.03973657265305519, + -0.0050805239006876945, + -0.001031704363413155, + -0.02118716761469841, + -0.004658624064177275, + -0.036786820739507675, + -0.031426213681697845, + 0.0048181661404669285, + -0.008452176116406918, + -0.004832347389310598, + 0.005264883395284414, + 0.01745743118226528, + 0.013578790239989758, + -0.026533594354987144, + -0.007360200397670269, + -0.041409991681575775, + -0.0006142363999970257, + -0.012486814521253109, + 0.004421083722263575, + 0.024349642917513847, + -0.025555070489645004, + 0.024633271619677544, + -0.05420170724391937, + 0.04038892313838005, + 0.004098454490303993, + -0.02660450153052807, + -0.025824518874287605, + 0.01588328368961811, + -0.02649104967713356, + -0.03528358042240143, + -0.03190838545560837, + 0.03301453962922096, + 0.00030224330839700997, + 0.0007174954516813159, + 0.0252998024225235, + 0.02654777467250824, + -0.021655157208442688, + 0.021938785910606384, + -0.017826151102781296, + -0.06670979410409927, + 0.04969199001789093, + 0.02341366373002529, + -0.014848034828901291, + 0.0350850410759449, + -0.021428251639008522, + 0.0011637696297839284, + -0.01656399667263031, + -0.027568843215703964, + 0.004885528236627579, + -0.02447727508842945, + -0.006211498752236366, + -0.031511303037405014, + -0.0218962412327528, + -0.0235271155834198, + -0.04370739683508873, + -0.021201347932219505, + -0.02015191689133644, + -0.0016893716529011726, + -0.014904760755598545, + 0.000980296405032277, + -0.01179192028939724, + 0.018294140696525574, + 0.0006328496383503079, + -0.001898548798635602, + 0.008430903777480125, + -0.00893434789031744, + 0.012699536979198456, + 0.0009045140468515456, + -0.019698109477758408, + 0.048018570989370346, + 0.01781196892261505, + 0.06166118010878563, + -0.01647890731692314, + 0.005172703415155411, + 0.008877621032297611, + 0.007186477072536945, + -0.03568066284060478, + 0.03709881380200386, + 0.0001869077968876809, + -0.015273479744791985, + 0.004669260233640671, + 0.001495262375101447, + 0.056669291108846664, + 0.004389175679534674, + -0.013571699149906635, + 0.03131275996565819, + -0.0019074123119935393, + -0.01996755786240101, + 0.002616487443447113, + 0.007870734669268131, + -0.014408407732844353, + -0.003323789918795228, + 0.012189002707600594, + 0.026476867496967316, + -0.019017396494746208, + -0.023356936872005463, + 0.022633681073784828, + -0.02524307742714882, + 0.01677672006189823, + 0.0065483092330396175, + -0.02980952151119709, + 0.0582008920609951, + 0.010338316671550274, + -0.022988218814134598, + -0.00980651006102562, + 0.005204611923545599, + 0.03222037851810455, + 0.0038857320323586464, + -0.022350050508975983, + -0.004190634470432997, + 0.0016432817792519927, + -0.03253237158060074, + 0.04041728749871254, + 0.011479927226901054, + -0.030632048845291138, + 0.018350865691900253, + 0.007728919852524996, + 0.018733765929937363, + 0.011033209972083569, + 0.004027547314763069, + -0.0051053413189947605, + 0.035397034138441086, + -0.032872725278139114, + -0.026150694116950035, + 0.006083865184336901, + 0.009700148366391659, + -0.0364464670419693, + 0.00251189898699522, + 0.006917028687894344, + 0.018379230052232742, + -0.00490325503051281, + 0.029412439092993736, + 0.009685967117547989, + 0.0004119283694308251, + 0.012983166612684727, + -0.05286864563822746, + -0.008686170913279057, + 0.06012957543134689, + 0.07527542114257812, + -0.0069560278207063675, + 0.026505229994654655, + -0.0062256804667413235, + 0.007814008742570877, + 0.03823333606123924, + 0.030320055782794952, + -0.013224252499639988, + -0.005942050367593765, + -0.01494730543345213, + 0.005938504822552204, + -0.017911238595843315, + -0.018393410369753838, + 0.0021857242099940777, + -0.026703771203756332, + 0.01732979714870453, + 0.0035099221859127283, + 0.00686030276119709, + -0.0011770648416131735, + -0.0007959369104355574, + -0.0035028315614908934, + 0.006328496150672436, + -0.011253023520112038, + -0.006293042562901974, + -0.020719178020954132, + -0.003946003504097462, + -0.011522471904754639, + -0.016166914254426956, + -8.542140130884945e-5, + -0.009622150100767612, + 0.0369853638112545, + -0.040133655071258545, + 0.01373478677123785, + 0.004850074183195829, + 0.013089528307318687, + 0.00422963360324502, + -0.015500383451581001, + 0.0155712915584445, + -0.0497770793735981, + -0.012898078188300133, + 0.017443249002099037, + -0.01264990121126175, + -0.016578178852796555, + 0.0025438072625547647, + -0.06795776635408401, + 0.005410243757069111, + 0.026703771203756332, + 0.005250701680779457, + 0.005250701680779457, + -0.03119930811226368, + 0.014805490151047707, + -0.027313577011227608, + 0.01778360642492771, + 0.002508353441953659, + -0.006353313568979502, + 0.0008012549951672554, + -0.021258074790239334, + 0.016932716593146324, + -0.009168342687189579, + -0.02145661599934101, + -0.014734582975506783, + 0.0008686170913279057, + 0.019712289795279503, + -0.009827782399952412, + -0.022321688011288643, + -0.025994697585701942, + -0.02518635056912899, + 0.036021020263433456, + -0.004119726829230785, + 0.029696069657802582, + 0.010976484045386314, + 0.03190838545560837, + 0.013493700884282589, + -0.02308748848736286, + -0.03772279992699623, + 0.016521451994776726, + -0.02856154926121235, + -0.014933123253285885, + -0.0402471087872982, + 0.023300211876630783, + -0.01164301484823227, + -0.029015356674790382, + 0.02904372103512287, + 0.001932229963131249, + 0.008211091160774231, + -0.03179493173956871, + -0.018620314076542854, + 0.010104321874678135, + 0.005452788434922695, + -0.012515177018940449, + 0.0019871832337230444, + -0.03230546787381172, + -0.004676350858062506, + -0.0023913560435175896, + 0.012614447623491287, + 0.007728919852524996, + -0.006987935863435268, + 0.031142583116889, + -0.02763975039124489, + 0.012926440685987473, + -0.02320094034075737, + -0.012671173550188541, + -0.011167934164404869, + -0.007331837434321642, + 0.007842371240258217, + -0.01691853441298008, + -0.011947916820645332, + 0.004172907676547766, + -0.03244728222489357, + -0.0031607027631253004, + 0.015613836236298084, + 0.009210886433720589, + 0.00276362057775259, + 0.028703363612294197, + -0.0024764451663941145, + -0.004031092394143343, + -0.005516604986041784, + -0.003999184351414442, + 0.028986994177103043, + -0.009700148366391659, + 0.02260531671345234, + 0.007346019148826599, + -0.014011326245963573, + -0.015996737405657768, + 0.03134112432599068, + -0.005959777161478996, + 0.026746315881609917, + -0.0062788608483970165, + 0.012394634075462818, + -0.03633301332592964, + 0.002816801192238927, + -0.01422404870390892, + -0.005874687805771828, + 0.020733358338475227, + -0.03108585625886917, + 0.05298209935426712, + -0.013678060844540596, + -0.02912880852818489, + -0.021825334057211876, + -0.03258909657597542, + 0.053322456777095795, + 0.018591951578855515, + 0.02918553538620472, + -0.031284399330616, + -0.011955007910728455, + -0.00797000527381897, + -0.0022708133328706026, + 0.016521451994776726, + 0.016578178852796555, + 0.006126409862190485, + 0.029327349737286568, + 0.027029946446418762, + -0.00012253705062903464, + -0.004020456224679947, + 0.011692649684846401, + -0.0034815592225641012, + 0.0024019922129809856, + -0.02453400194644928, + 0.008196908980607986, + -0.0023913560435175896, + -0.012578994035720825, + -0.010345406830310822, + 0.01139483880251646, + 0.024548184126615524, + 0.018081417307257652, + -0.04492700472474098, + -0.024491457268595695, + 0.00097497837850824, + 0.007108478806912899, + -0.007438198663294315, + 0.02812192216515541, + 0.0013109027640894055, + -0.015443657524883747, + -0.011217569932341576, + 0.021229712292551994, + 0.0033432894852012396, + 0.03732571750879288, + -0.0018684131791815162, + -0.02009519189596176, + 0.012330817990005016, + -0.006945391651242971, + 0.025228895246982574, + -0.007466561626642942, + -0.011011937633156776, + 0.030064787715673447, + -0.018152324482798576, + -0.01976901665329933, + -0.008182727731764317, + 0.018294140696525574, + 0.01238754391670227, + -0.007062389049679041, + 0.020109372213482857, + -0.020747540518641472, + 0.023073306307196617, + 0.022406775504350662, + -0.012720809318125248, + 0.02755466289818287, + 0.011607561260461807, + -0.018180688843131065, + 0.016422182321548462, + -0.006289497017860413, + 0.06597235798835754, + -0.01255063060671091, + 0.007806918118149042, + 0.003203247208148241, + -0.009388155303895473, + 0.007494925055652857, + -0.02725685015320778, + -0.01376314926892519, + 0.008856349624693394, + 0.0064774020574986935, + 0.03429087623953819, + -0.01827995851635933, + 0.04580625891685486, + 0.011458654887974262, + -0.005059251561760902, + 0.031426213681697845, + -0.036162834614515305, + -0.04305504634976387, + -0.03718390315771103, + -0.016663266345858574, + -0.0013596516801044345, + 0.028051014989614487, + -0.0036801001988351345, + 0.030944041907787323, + -0.0247467253357172, + -0.0067574866116046906, + 0.02047809213399887, + 0.005013161804527044, + -0.04719604551792145, + -0.007104933261871338, + 0.010529766790568829, + 0.02744121104478836, + 0.002194587839767337, + -0.022888947278261185, + -0.0026927131693810225, + -0.00269625848159194, + -0.004463628400117159, + 0.014138959348201752, + 0.02341366373002529, + 0.019868286326527596, + 0.016989441588521004, + 0.013947509229183197, + 0.0058179618790745735, + 0.03502831608057022, + 0.014415498822927475, + -0.0216267928481102, + 0.013706423342227936, + 0.027242669835686684, + -0.0014261275064200163, + 0.0007675738888792694, + 0.028192829340696335, + -0.0023842654190957546, + 0.001381810288876295, + -0.009040708653628826, + -0.032816000282764435, + -0.006516401190310717, + -0.021584248170256615, + -0.016379637643694878, + -0.0053038825280964375, + -0.0018152325646951795, + -0.035538848489522934, + 0.011380656622350216, + -0.004959980957210064, + -0.007331837434321642, + -0.030858952552080154, + 0.029015356674790382, + -0.026363415643572807, + -0.006892210803925991, + 0.021059533581137657, + 0.0072077494114637375, + -0.03329817205667496, + -0.0071900226175785065, + -0.0008132206276059151, + 0.01179192028939724, + -0.012763353995978832, + 0.01323134358972311, + 0.03403560817241669, + -0.01524511631578207, + -0.06421384960412979, + -0.004119726829230785, + -0.011231751181185246, + -0.025384891778230667, + 0.010806306265294552, + 0.016081824898719788, + -0.027341939508914948, + -0.02159843035042286, + -0.01751415804028511, + -0.00017859831859823316, + 0.0013897874159738421, + 0.01680508255958557, + 0.00847344845533371, + 0.018407592549920082, + -0.002942661987617612, + 0.01884721964597702, + -0.018719585612416267, + 0.01664908602833748, + 0.00044162088306620717, + 0.0043679033406078815, + -0.0005934073124080896, + 0.0029745704960078, + -0.009983778931200504, + -0.04308341071009636, + -0.031000766903162003, + 0.01596837304532528, + 0.03443269059062004, + 0.025881243869662285, + 0.01240172516554594, + -0.00023333005083259195, + 0.030887315049767494, + 0.016039280220866203, + 0.012564812786877155, + 0.004197725094854832, + 0.005509514361619949, + 0.024519819766283035, + -0.013351885601878166, + 0.01274208165705204, + 0.02432127855718136, + -0.026859767735004425, + -0.017046168446540833, + -0.005236520431935787, + 0.02278967760503292, + -0.00760128628462553, + 0.009061980992555618, + 0.0009483880712650716, + 0.014330409467220306, + -0.004623170476406813, + -0.004697623196989298, + -0.010501403361558914, + 0.04047401249408722, + -0.03369525447487831, + 0.005016706883907318, + 0.03304290398955345, + -0.0012054278049618006, + -0.009870327077805996, + 0.010473040863871574, + 0.026235781610012054, + -0.014720400795340538, + 0.013756059110164642, + 0.005438606720417738, + 0.020790085196495056, + -0.015528746880590916, + -0.03355344012379646, + -0.00429699569940567, + -0.006661761552095413, + -0.01691853441298008, + 0.022151509299874306, + 0.02358384057879448, + -0.004460082855075598, + 0.029355714097619057, + 0.029469165951013565, + 0.018038872629404068, + 0.004782712087035179, + 0.009225068613886833, + 0.016067644581198692, + 0.031397849321365356, + -0.005385426338762045, + -0.0364464670419693, + -3.6319329410616774e-6, + -0.04492700472474098, + -0.02429291605949402, + -0.006098046898841858, + -0.03355344012379646, + -0.009508698247373104, + -0.005754145327955484, + 0.03837515041232109, + 0.0201235543936491, + -0.005488242022693157, + -0.0014154913369566202, + 0.005722236819565296, + 0.02477508783340454, + -0.011472837068140507, + -0.017769424244761467, + 0.025058718398213387, + 0.000872162519954145, + 0.008877621032297611, + -0.024491457268595695, + -0.002029727678745985, + 0.009012346155941486, + -0.01360006257891655, + -0.009664694778621197, + 0.035482123494148254, + 0.021031171083450317, + -0.00833872426301241, + -0.02110207825899124, + 0.015727287158370018, + -0.0017877558711916208, + -0.01911666803061962, + 0.02077590301632881, + -0.01857776939868927, + -0.0053216093219816685, + -0.00033326534321531653, + 0.01044467743486166, + -0.011593379080295563, + -0.03911258652806282, + 0.005676147062331438, + 0.0025863517075777054, + 0.010692854411900043, + -0.014635312370955944, + -0.004438810516148806, + -0.007551650982350111, + 0.025469981133937836, + -0.03565230220556259, + 0.003215655917301774, + -0.051337044686079025, + 0.017003623768687248, + -0.012947713024914265, + 0.013025711290538311, + 0.014521860517561436, + -0.0028132558800280094, + -0.002508353441953659, + 0.0008194250403903425, + 0.005169158335775137, + 0.026079785078763962, + 0.004211906809359789, + -0.022052237764000893, + 0.0008149932837113738, + -0.040757641196250916, + 0.03647482767701149, + -0.03190838545560837, + -0.028689183294773102, + -0.007792736403644085, + 0.0008956505917012691, + 0.03049023263156414, + -0.022350050508975983, + 0.014344591647386551, + 0.0008814691100269556, + 0.03239055350422859, + -0.0005167385679669678, + 0.027285214513540268, + -0.04903963953256607, + 0.01691853441298008, + -0.008969801478087902, + -0.0060165030881762505, + 0.010494313202798367, + -0.017741061747074127, + -0.0014146050671115518, + -0.010153956711292267, + 0.01206136867403984, + -0.006750395987182856, + 0.011770647950470448, + -0.0262499637901783, + 0.0005544081795960665, + -0.016606541350483894, + -0.010721216909587383, + -0.004655078519135714, + 0.007076570298522711, + -0.010827578604221344, + 0.016393817961215973, + -0.008877621032297611, + 0.007275111507624388, + 0.019215937703847885, + 0.004300541244447231, + -0.01993919536471367, + -0.026008877903223038, + 0.025001991540193558, + -0.0015448975609615445, + -0.03261746093630791, + -0.010451768524944782, + -0.018733765929937363, + 0.026973221451044083, + -0.002963934326544404, + 0.015457839705049992, + -0.05383298918604851, + 0.03176656737923622, + 0.013826966285705566, + -0.004623170476406813, + -0.007331837434321642, + -0.013876602053642273, + 0.018393410369753838, + 0.016819262877106667, + 0.012040097266435623, + -0.015457839705049992, + -0.014032598584890366, + -0.010983575135469437, + 0.0013552199816331267, + -0.005112432409077883, + 0.001199223450385034, + -0.045324087142944336, + 0.0023133577778935432, + -0.02423619106411934, + 0.011487018316984177, + 0.019485386088490486, + -0.01999592036008835, + -0.020166099071502686, + 0.009260522201657295, + 0.02026536874473095, + -0.0029621615540236235, + 0.006863847840577364, + -0.008296179585158825, + 0.021442433819174767, + -0.007948732934892178, + -0.0372689925134182, + 0.033525075763463974, + 0.015528746880590916, + -0.002201678464189172, + 0.017003623768687248, + -0.014748764224350452, + -0.01718798279762268, + 0.0024445366580039263, + -0.014287864789366722, + 0.005981049500405788, + 0.011508290655910969, + 0.008799622766673565, + -0.005396062042564154, + 0.005871142726391554, + -0.009643422439694405, + 0.006619216874241829, + 0.021414071321487427, + 0.00012342340778559446, + 0.0017274843994528055, + 0.01830832101404667, + -0.010118503123521805, + -0.004967071581631899, + -0.010529766790568829, + -0.0005805552937090397, + -0.009012346155941486, + -0.00957251526415348, + 0.0014154913369566202, + -0.010267408564686775, + -0.029554253444075584, + -0.010636127553880215, + -0.020761722698807716, + 0.019896650686860085, + -0.027271032333374023, + -0.0326458215713501, + 0.025824518874287605, + -0.019301027059555054, + 0.0020084555726498365, + -0.012174821458756924, + 0.024760905653238297, + 0.028433915227651596, + 0.0008287316304631531, + 0.03040514513850212, + 0.02429291605949402, + -0.011387747712433338, + 0.017726879566907883, + 0.028675001114606857, + 0.01077085267752409, + -0.006654670927673578, + -0.012614447623491287, + -0.006594399455934763, + -0.0065128556452691555, + -0.0353686697781086, + 0.014174412935972214, + -0.04591970890760422, + 0.007204203866422176, + 0.011494109407067299, + -0.0045912619680166245, + -0.01996755786240101, + -0.018095599487423897, + -0.012472632341086864, + 0.0159116480499506, + 0.009685967117547989, + -0.013018620200455189, + -0.03383706882596016, + 0.017585065215826035, + -0.009161251597106457, + -0.0019233664497733116, + 0.03514176607131958, + -0.002033273223787546, + -0.0010370224481448531, + -0.008629444986581802, + -0.010629037395119667, + -0.004757894668728113, + -0.007714738138020039, + -0.019414478912949562, + -0.010969392955303192, + 0.005254247225821018, + 0.013692242093384266, + -0.030093152076005936, + -0.0052967919036746025, + -0.02583870105445385, + 0.02056318148970604, + 0.0022087693214416504, + -0.027029946446418762, + -0.02091771923005581, + -0.001898548798635602, + -0.009515789337456226, + -0.010543948039412498, + -0.017117075622081757, + -0.03831842541694641, + 0.026448504999279976, + 0.01860613375902176, + 0.0014890579041093588, + -0.01952793076634407, + -0.016337092965841293, + 0.00577896274626255, + 0.012593175284564495, + -0.040218744426965714, + -0.004555808380246162, + 0.006867393385618925, + -0.015188390389084816, + 0.0028965722303837538, + 0.005342881660908461, + 0.013997144065797329, + -0.05147885903716087, + -0.04121145233511925, + 0.011253023520112038, + -0.0013871283736079931, + -0.009132888168096542, + 0.009005255065858364, + -0.01952793076634407, + 0.0014996940735727549, + 0.011387747712433338, + -0.01846431754529476, + 0.01260735746473074, + 0.014734582975506783, + -0.017088713124394417, + -0.01759924553334713, + -0.018974851816892624, + 0.001407514326274395, + -0.017343979328870773, + 0.01006177719682455, + -0.029270624741911888, + -0.014273683540523052, + -0.06109391897916794, + -0.01952793076634407, + -0.02216569148004055, + 0.030858952552080154, + 0.023697292432188988, + 0.0033415169455111027, + 0.0034390147775411606, + -0.0015085574705153704, + 0.02091771923005581, + -0.0026661227457225323, + -0.009033618494868279, + -0.01697525940835476, + 0.013351885601878166, + 0.01996755786240101, + 0.002371856477111578, + 0.018294140696525574, + -0.022378413006663322, + -0.01312498189508915, + 0.0026838495396077633, + -0.03315635770559311, + 0.0010919758351519704, + 0.004098454490303993, + 0.0015014667296782136, + 0.025711067020893097, + -0.004084273241460323, + 0.00958669651299715, + -0.04367903247475624, + 0.00034079927718266845, + -0.013507882133126259, + -0.0019517295295372605, + 0.022647861391305923, + 0.024718360975384712, + -0.003534739837050438, + -0.0046018981374800205, + 0.014068052172660828, + 0.03108585625886917, + 0.0011593379313126206, + -0.017641790211200714, + -0.008168546482920647, + -0.03363852575421333, + -0.0004883755464106798, + 0.009969597682356834, + -0.005201066378504038, + 0.0008092320640571415, + -0.005633602384477854, + -0.0123733626678586, + 0.013451156206429005, + -0.017726879566907883, + -0.018237413838505745, + -0.007108478806912899, + 0.03599265590310097, + 0.013330614194273949, + 0.015996737405657768, + -0.015982555225491524, + 0.019953375682234764, + 0.02687394991517067, + 0.013621334917843342, + 0.005878233350813389, + -0.0031075221486389637, + -0.008913075551390648, + 0.04158017039299011, + 0.0152309350669384, + 0.017712699249386787, + -0.009338520467281342, + -0.017826151102781296, + 0.013330614194273949, + 0.005945595446974039, + 0.025937970727682114, + 0.02409437485039234, + -0.00397791201248765, + -0.01686180755496025, + -0.008423813618719578, + 0.022732950747013092, + 0.034886498004198074, + -0.0003696054336614907, + -0.0051230681128799915, + 0.01585492119193077, + 0.03256073221564293, + 0.0029337985906749964, + -0.010125594213604927, + -0.011671377345919609, + -0.006615671794861555, + 0.00882798619568348, + 0.008891803212463856, + -0.015982555225491524, + -0.02382492646574974, + 0.009473244659602642, + -0.01822323352098465, + 0.007948732934892178, + 0.004850074183195829, + 0.018053054809570312, + -0.016819262877106667, + 0.015316024422645569, + 0.01765597239136696, + -0.0034514234866946936, + 0.023016581311821938, + -0.015004031360149384, + -0.0006940073217265308, + -0.03335489705204964, + -0.006654670927673578, + 0.0035950113087892532, + -0.014195685274899006, + 0.006601490080356598, + -0.012706627137959003, + -0.009395246393978596, + 0.015954192727804184, + 0.0015838966937735677, + -0.0007272452348843217, + 0.003135885111987591, + -0.023243485018610954, + -0.009863235987722874, + 0.02183951623737812, + -0.03188002109527588, + 0.013252614997327328, + -0.023810744285583496, + 0.02382492646574974, + -0.00491743627935648, + -0.017060348764061928, + -0.006888665724545717, + -0.012153549119830132, + -0.002290312899276614, + 0.014216957613825798, + -0.005147885996848345, + -0.016578178852796555, + -0.014330409467220306, + 0.018776310607790947, + -0.017911238595843315, + -0.0038077337667346, + -0.0032067925203591585, + 0.022860584780573845, + 0.0011212251847609878, + 0.002127225510776043, + 0.015514565631747246, + -0.0006519060116261244, + 0.004669260233640671, + -0.004077182617038488, + 0.041409991681575775, + -0.01216063927859068, + 0.02439218759536743, + -0.0446150116622448, + -0.03117094561457634, + -0.01004759594798088, + -0.0017664835322648287, + 0.022974036633968353, + -0.01896067149937153, + -0.017400706186890602, + -0.0025331710930913687, + -0.011820283718407154, + 0.00563005730509758, + -0.041353266686201096, + 0.00015876637189649045, + 0.0048358929343521595, + 0.028036832809448242, + -0.00946615356951952, + -0.03499995172023773, + -0.003563102800399065, + -0.014833853580057621, + 0.0014057415537536144, + 0.015784014016389847, + -0.023342754691839218, + -0.014415498822927475, + 0.02396674081683159, + 0.019740654155611992, + -0.0014163777232170105, + -0.003215655917301774, + -0.0055485134944319725, + -0.011146661825478077, + 0.0159116480499506, + -0.015500383451581001, + -0.00662276241928339, + -0.007906188257038593, + -0.02100280672311783, + -0.033439986407756805, + -0.029469165951013565, + 0.022392595186829567, + -0.017769424244761467, + -0.009288884699344635, + -0.007856553420424461, + 0.026703771203756332, + 0.01979737915098667, + -0.010005051270127296, + 0.007658012211322784, + 0.0018090280937030911, + 0.04424629360437393, + 0.01263571996241808, + 0.019896650686860085, + -0.008891803212463856, + 0.003694281680509448, + 0.003197929123416543, + 0.0034407873172312975, + 0.029639342799782753, + 0.026051422581076622, + -0.028604093939065933, + 0.0025792610831558704, + 0.0029834338929504156, + -0.01255063060671091, + 0.0318232960999012, + 0.028930267319083214, + -0.01949956826865673, + -0.020081009715795517, + -0.025654340162873268, + 0.011664287187159061, + 0.022023875266313553, + 0.0031571572180837393, + -0.013727695681154728, + 0.026363415643572807, + -0.034801412373781204, + 0.0076934657990932465, + 0.025143805891275406, + -0.01925848238170147, + 0.021584248170256615, + 0.010636127553880215, + 0.013536245562136173, + -0.026561956852674484, + 0.013011530041694641, + 0.015372750349342823, + 0.015103301964700222, + -0.018804674968123436, + -0.006686578970402479, + -0.038687143474817276, + 0.018365047872066498, + 0.012571902945637703, + -0.009664694778621197, + -0.025696884840726852, + 0.010756670497357845, + 0.005176248960196972, + -0.009005255065858364, + -0.05717982351779938, + -0.03922604024410248, + 0.007108478806912899, + -0.0018684131791815162, + -0.0003766962036024779, + -0.01006177719682455, + -0.007892007008194923, + -0.0009643422672525048, + -0.012125185690820217, + 0.021882060915231705, + 0.005381880793720484, + 0.032135289162397385, + 0.007502015680074692, + -0.01979737915098667, + -0.017074530944228172, + 0.010657399892807007, + 0.012940621934831142, + 0.023725656792521477, + 0.023271847516298294, + -0.007076570298522711, + -0.010040504857897758, + 0.01386951096355915, + 0.021016988903284073, + 0.01629454828798771, + -0.02708667330443859, + -0.003164248075336218, + 0.020846810191869736, + 0.019754834473133087, + 0.0027228486724197865, + 0.010345406830310822, + -0.021172985434532166, + 0.012763353995978832, + -0.01325970608741045, + 0.006094501353800297, + -0.01289098709821701, + -0.0013782648602500558, + -0.012139366939663887, + 0.022406775504350662, + -0.022562772035598755, + 0.005984594579786062, + 0.026264145970344543, + -0.010863032191991806, + -0.0016539179487153888, + 0.04957853630185127, + 0.011231751181185246, + -0.03315635770559311, + 0.005658420268446207, + -0.0003277256910223514, + -0.00884216744452715, + 0.000671405578032136, + -0.018747948110103607, + -0.01260735746473074, + 0.0012204956728965044, + -0.011217569932341576, + 0.005268428940325975, + -0.020378820598125458, + 0.02450563944876194, + 0.025384891778230667, + 0.0006957800360396504, + 0.007158114109188318, + 0.006282406393438578, + 0.04262959957122803, + -0.011947916820645332, + 0.008991073817014694, + 0.006523491814732552, + -0.007821099832654, + -0.00011677582369884476, + 0.01976901665329933, + 0.020166099071502686, + -0.010302863083779812, + -0.006583763286471367, + 0.023243485018610954, + -0.01816650666296482, + -0.014500588178634644, + -0.014146050438284874, + -0.002827437361702323, + 0.022420957684516907, + -0.00473307678475976, + -0.00013317319098860025, + 0.010763761587440968, + -0.007016299292445183, + -0.004807529971003532, + -0.011678468436002731, + -0.008296179585158825, + 0.012352090328931808, + -0.01388369221240282, + -0.01893230713903904, + -0.012337908148765564, + -0.018747948110103607, + 0.0037120087072253227, + 0.004024001769721508, + 0.006207953207194805, + -0.0076863751746714115, + -0.0017150756902992725, + -0.01457858644425869, + -0.01691853441298008, + 0.012841352261602879, + -0.020605726167559624, + -0.013919145800173283, + 0.017315616831183434, + 0.01721634529531002, + 0.0076154675334692, + -0.022576954215765, + -0.01664908602833748, + 0.03051859699189663, + -0.013451156206429005, + -0.011196297593414783, + 0.013039892539381981, + 0.002992297289893031, + -0.001870185835286975, + -0.004247360397130251, + 0.013174616731703281, + -0.008927256800234318, + -0.0015422385185956955, + -0.001031704363413155, + -0.0195846576243639, + 0.0323621928691864, + 0.026023060083389282, + 0.024378005415201187, + 0.004949344787746668, + 0.0014234684640541673, + 0.026561956852674484, + 0.0005588398780673742, + -0.012947713024914265, + -0.01154374424368143, + 0.0013472428545355797, + 0.0074807433411479, + 0.03315635770559311, + 0.022718768566846848, + 0.0008367087575607002, + 0.022293323650956154, + -0.007090752013027668, + -0.029979700222611427, + -0.01876213029026985, + -0.009033618494868279, + -0.0026466231793165207, + -0.0149614866822958, + 0.006037775427103043, + 0.025555070489645004, + 0.0065305824391543865, + 0.005860506556928158, + 0.009147070348262787, + -0.027781566604971886, + -0.010721216909587383, + 0.005842779763042927, + 0.015301843173801899, + 0.0034407873172312975, + -0.003527649212628603, + -0.006651125382632017, + -0.015486202202737331, + -0.034773048013448715, + 0.007877825759351254, + -0.01558547280728817, + 0.007502015680074692, + 0.018336685374379158, + -0.03894241154193878, + -0.027923380956053734, + 0.03233382850885391, + 0.007962914183735847, + 0.031511303037405014, + 0.0002752098080236465, + 0.0021963603794574738, + -0.0035329670645296574, + -0.004807529971003532, + -0.007899098098278046, + 0.01596837304532528, + -0.011295568197965622, + 0.0008110047783702612, + 0.028391370549798012, + -0.022988218814134598, + 0.00017826593830250204, + -0.029525890946388245, + -0.0031341123394668102, + -0.021697701886296272, + -0.006644034758210182, + -0.004984798841178417, + 0.015769831836223602, + -0.007892007008194923, + 0.034205786883831024, + -0.005856961011886597, + -0.005137249827384949, + -0.005991685204207897, + 0.003033069195225835, + -0.010253227315843105, + -0.0003086692886427045, + 0.010841759853065014, + -0.027781566604971886, + -0.001528057036921382, + -0.0069631184451282024, + 0.0034868773072957993, + 0.031000766903162003, + 0.0017948466120287776, + -0.006190226413309574, + -0.012040097266435623, + -0.0011283159255981445, + -0.0002975899842567742, + 0.0005561808357015252, + 0.0007768805371597409, + 0.014777126722037792, + -0.015656379982829094, + -0.020109372213482857, + 0.0028965722303837538, + 0.032844364643096924, + 0.012727899476885796, + -0.004555808380246162, + 0.014521860517561436, + -0.013656788505613804, + 0.025172170251607895, + -0.0267888605594635, + 0.03332653269171715, + -0.034858137369155884, + 0.010763761587440968, + -0.03457450494170189, + -0.008572719059884548, + -0.009629241190850735, + 0.00039863321580924094, + -0.022350050508975983, + -0.008352905511856079, + -0.018719585612416267, + 0.023186758160591125, + -0.02480345033109188, + 0.018379230052232742, + 0.020676633343100548, + -0.013933327980339527, + -0.017117075622081757, + 0.034858137369155884, + -0.0032706093043088913, + -0.0035134674981236458, + 0.02439218759536743, + -0.0032918816432356834, + 0.00943779107183218, + -0.008182727731764317, + 0.002614714903756976, + 0.013004438951611519, + 0.005495332647114992, + -0.025767792016267776, + 0.010288680903613567, + 0.012578994035720825, + -0.0032599731348454952, + 0.027001583948731422, + -0.016337092965841293, + -0.0025792610831558704, + -0.003470923053100705, + -0.017386524006724358, + -0.009473244659602642, + -0.016081824898719788, + -0.005825052969157696, + 0.00514079537242651, + -0.013919145800173283, + -0.015330205671489239, + -0.012111004441976547, + -0.0228464026004076, + -0.0033521531149744987, + 0.012451360933482647, + -0.024009285494685173, + -0.012515177018940449, + 0.00507343327626586, + 0.02461909130215645, + -0.01988246850669384, + 0.03380870446562767, + 0.009529970586299896, + -0.016790900379419327, + 0.0027724839746952057, + 0.01043049618601799, + 0.009508698247373104, + 0.004630261100828648, + -0.0002523864677641541, + -0.010380861349403858, + -0.040729280561208725, + -0.022208234295248985, + -0.00982069130986929, + 0.01911666803061962, + 0.0006013843812979758, + 0.004428174812346697, + -0.02741284668445587, + -0.02714339829981327, + -0.00074364262400195, + 0.00909743458032608, + -0.018365047872066498, + 0.0037935522850602865, + 0.027781566604971886, + 0.005162067245692015, + -0.002024409594014287, + -0.012245728634297848, + 0.019839923828840256, + 0.006509310100227594, + -0.01854940690100193, + 0.0008278453024104238, + -0.011621742509305477, + 0.0010512039298191667, + 0.0055485134944319725, + -0.01154374424368143, + -0.014819671399891376, + 0.011196297593414783, + -0.01213227678090334, + -0.0031961563508957624, + -0.015188390389084816, + -0.004304086323827505, + -0.001085771364159882, + -0.012564812786877155, + 0.009047799743711948, + -0.006108683068305254, + -0.012713718228042126, + -0.011011937633156776, + 0.0218962412327528, + -0.02026536874473095, + 0.0046444423496723175, + -0.0006917914724908769, + 0.01009013969451189, + 0.008693262003362179, + -0.021640975028276443, + -0.01784033142030239, + 0.0015528746880590916, + 0.016719993203878403, + -0.0007999254739843309, + -0.020350458100438118, + 0.02015191689133644, + -0.014663674868643284, + 0.0677308663725853, + -0.005162067245692015, + 0.006108683068305254, + -0.006055502220988274, + 0.010253227315843105, + -0.006523491814732552, + 0.0038467328995466232, + 0.011387747712433338, + -0.002189269755035639, + -0.00955833401530981, + 0.016280366107821465, + -0.012713718228042126, + 0.0036216014996170998, + 0.0069737546145915985, + -0.02249186486005783, + -0.009019436314702034, + 0.01662072353065014, + 0.02907208353281021, + 0.011111208237707615, + 0.011203387752175331, + 0.01274208165705204, + -0.010777942836284637, + -0.020520636811852455, + -0.004864255897700787, + -0.016408000141382217, + 0.017315616831183434, + 0.01789705827832222, + 0.012642811052501202, + 0.04132490232586861, + 0.025583432987332344, + -0.010168137960135937, + 0.007558741606771946, + -0.010387951508164406, + 0.007108478806912899, + 0.00894852913916111, + 0.006023593712598085, + 0.0036127381026744843, + 0.01748579367995262, + 0.00331847183406353, + 0.005917232483625412, + 0.01494730543345213, + -0.011465745978057384, + 0.026093967258930206, + 0.02853318676352501, + -0.013947509229183197, + 0.004179998300969601, + 0.012103913351893425, + -0.009090344421565533, + 0.005413789302110672, + 0.014124778099358082, + -0.008572719059884548, + -0.01914503052830696, + 0.0052967919036746025, + 0.009742693044245243, + -0.004378539510071278, + -0.014096414670348167, + -0.007636739872395992, + -0.0013091301079839468, + -0.011678468436002731, + -0.0014571495121344924, + 0.0021024078596383333, + -0.00281502865254879, + 0.007558741606771946, + -0.01647890731692314, + -0.021995512768626213, + -0.008686170913279057, + 0.006197317037731409, + -0.026888132095336914, + -0.008664898574352264, + 0.005849870387464762, + -0.011387747712433338, + 0.008544356562197208, + -0.006590853910893202, + -0.04969199001789093, + -0.009685967117547989, + 0.02159843035042286, + 0.004569989629089832, + 0.0108133964240551, + 0.011097026988863945, + 0.02488853968679905, + 0.010473040863871574, + 0.008196908980607986, + -0.011827373877167702, + -0.009856144897639751, + 0.012040097266435623, + -0.0037722799461334944, + 0.009054889902472496, + -0.013146254234015942, + 0.009295975789427757, + -0.022236598655581474, + -0.008048003539443016, + 0.017471613362431526, + 0.013096618466079235, + 0.0002619146544020623, + -0.0006417130352929235, + 0.0020722723565995693, + 0.003552466630935669, + -0.008452176116406918, + 0.011671377345919609, + -0.005718691274523735, + 0.014096414670348167, + 0.010657399892807007, + -0.018747948110103607, + -0.0014917169464752078, + -0.004495536908507347, + 0.013663878664374352, + 0.007041116710752249, + -0.002621805528178811, + -0.024902721866965294, + -0.006236316170543432, + -0.003619828959926963, + -0.008558537811040878, + 0.0027707114350050688, + 0.01388369221240282, + -0.034886498004198074, + 0.0037474625278264284, + 0.009877417236566544, + 0.023243485018610954, + -0.006346222944557667, + -0.011877009645104408, + 0.00018491351511329412, + 0.009544151835143566, + 0.0006979958852753043, + 0.0051230681128799915, + 0.0218962412327528, + -0.005342881660908461, + -0.0058002350851893425, + -0.00522233871743083, + 0.0009891599183902144, + -0.0004296552506275475, + 0.013188798911869526, + 0.02278967760503292, + 0.024434732273221016, + -0.018180688843131065, + 0.0007064161472953856, + 0.0026288963854312897, + -0.0002503921859897673, + 0.0015218526823446155, + 0.022236598655581474, + -0.019953375682234764, + 0.01748579367995262, + 0.010820487514138222, + 0.014039688743650913, + 0.013812785036861897, + 0.0023186758626252413, + 0.0025792610831558704, + -0.015117483213543892, + -0.02788083627820015, + 0.04257287457585335, + -0.00797000527381897, + 0.03763771057128906, + -0.026916494593024254, + -0.002632441697642207, + -0.007771464064717293, + -0.0005123068112879992, + 0.013266797177493572, + -0.006934755481779575, + 0.009154160507023335, + 0.013422793708741665, + 0.013075347058475018, + 0.022009694948792458, + -0.00979232881218195, + 0.007821099832654, + 0.0029781158082187176, + -0.006367495283484459, + -0.0012851988431066275, + 0.021640975028276443, + 0.019442841410636902, + 0.015755651518702507, + -0.012323726899921894, + -0.00893434789031744, + 0.009090344421565533, + 0.009260522201657295, + -0.034177426248788834, + -0.02610814943909645, + -0.02521471492946148, + 0.010806306265294552, + 0.011082845740020275, + -0.00026767587405629456, + 0.01689017191529274, + -0.004031092394143343, + -0.0014518314274027944, + 0.00540669821202755, + -0.012820079922676086, + -0.016166914254426956, + -0.0057470547035336494, + 0.027781566604971886, + -0.008891803212463856, + -0.001999592175707221, + 0.0041232723742723465, + -0.02491690218448639, + -0.009076162241399288, + -0.005729327443987131, + -0.009203796274960041, + -0.013904964551329613, + -0.009310157038271427, + 0.0025863517075777054, + 0.023059125989675522, + 0.005133704282343388, + -0.009125798009335995, + -0.017854513600468636, + 0.004360812250524759, + 0.016634903848171234, + 0.00236653839237988, + -0.012720809318125248, + -0.007948732934892178, + -0.006413585040718317, + -0.014514769427478313, + -0.0011761784553527832, + 0.008381268940865993, + -0.017343979328870773, + -0.03528358042240143, + 0.00206340872682631, + -0.002472899854183197, + -0.014663674868643284, + 0.011635923758149147, + -0.005328699946403503, + 0.01373478677123785, + -0.007622558157891035, + -0.015741469338536263, + -0.004896164406090975, + 0.003658828092738986, + 0.020548999309539795, + 0.0032936541829258204, + 0.0003580829652491957, + -0.006406494416296482, + 0.018095599487423897, + 0.009579606354236603, + 0.005825052969157696, + 0.001630872953683138, + 0.022293323650956154, + 0.004924527369439602, + -0.00471889553591609, + 0.00355601217597723, + -0.003655282547697425, + 0.017797786742448807, + -0.0010024550138041377, + -0.014904760755598545, + -0.01287680584937334, + -0.004190634470432997, + -0.018918126821517944, + -0.023683112114667892, + -0.006970209069550037, + -0.012217366136610508, + 0.014933123253285885, + -0.003967275843024254, + -0.01188410073518753, + -0.00515497662127018, + 0.00048793238238431513, + -2.9581731723737903e-5, + -0.01781196892261505, + -0.016847627237439156, + -0.0146211301907897, + 0.0074594710022211075, + 0.012323726899921894, + 0.008033822290599346, + 0.005633602384477854, + 0.005066342186182737, + -0.014344591647386551, + -0.0027671658899635077, + -0.0026927131693810225, + 0.008423813618719578, + -0.007629649247974157, + 0.0026519412640482187, + 0.003128794254735112, + 0.01718798279762268, + -0.03826169669628143, + 0.013805693946778774, + 0.023725656792521477, + 0.013252614997327328, + 0.010473040863871574, + -0.008189818821847439, + 0.009664694778621197, + 0.009522879496216774, + -0.014273683540523052, + 0.0024817632511258125, + 0.012578994035720825, + -0.008211091160774231, + 0.004811075050383806, + -0.0023860379587858915, + -0.010657399892807007, + -0.013288069516420364, + 0.0005145227187313139, + -0.011969189159572124, + 0.008182727731764317, + -0.03043350763618946, + 0.026335053145885468, + 0.006523491814732552, + -0.0026182602159678936, + 0.009919961914420128, + 0.00931724812835455, + -0.0008726056548766792, + 0.008359996601939201, + -0.014344591647386551, + -0.009310157038271427, + 0.003694281680509448, + 0.0011584516614675522, + 0.004772075917571783, + 0.01460694894194603, + 0.005442152265459299, + 0.01313916314393282, + -0.015542928129434586, + -0.026944857090711594, + -0.004041728563606739, + 0.007629649247974157, + 0.006402948871254921, + 0.03911258652806282, + 0.007757282815873623, + -0.015542928129434586, + 0.019442841410636902, + -0.0041480897925794125, + -0.0008548788027837873, + 0.01757088303565979, + 0.005871142726391554, + -0.0069985720328986645, + 0.005739963613450527, + 0.0031376576516777277, + 0.01521675381809473, + -0.00833872426301241, + 0.027271032333374023, + -0.020251188427209854, + 0.00028318690601736307, + -0.006608580704778433, + 0.013451156206429005, + 0.013025711290538311, + -0.001476649078540504, + 0.02077590301632881, + 0.008204000070691109, + 0.002600533189252019, + -0.03165311738848686, + 0.015869103372097015, + 0.036021020263433456, + -0.01928684487938881, + -0.002364765852689743, + -0.01647890731692314, + 0.008884712122380733, + -0.02793756313621998, + -0.0036038747057318687, + -0.018535226583480835, + -0.0017381205689162016, + -0.0029745704960078, + 0.005491787567734718, + -0.011451564729213715, + -0.030206603929400444, + -0.006924119312316179, + 0.018691223114728928, + 0.010806306265294552, + -0.012656992301344872, + -0.0012905168114230037, + 0.010629037395119667, + 0.010806306265294552, + -0.010756670497357845, + -0.005048615392297506, + 0.00043164953240193427, + -0.008437994867563248, + 0.006619216874241829, + -0.004218997433781624, + 0.043480489403009415, + 0.019570475444197655, + -0.0015714878682047129, + -0.00631785998120904, + 0.006913483142852783, + 0.0023452662862837315, + 0.0003656168992165476, + -0.007494925055652857, + 0.002848709700629115, + 0.004701168742030859, + 0.022761313244700432, + -0.01558547280728817, + -0.0030259783379733562, + 0.008515993133187294, + -0.02486017718911171, + -0.011075754649937153, + -0.01961302012205124, + -0.020960262045264244, + 0.015642199665308, + -0.011976280249655247, + 0.001985410461202264, + -0.016691630706191063, + 0.0152309350669384, + 0.027327757328748703, + -0.0035542394034564495, + -0.0044104475528001785, + -0.0023417207412421703, + -0.00039154247497208416, + 0.024335460737347603, + 0.022803857922554016, + 0.01876213029026985, + 0.006335586775094271, + 0.012961894273757935, + -0.013330614194273949, + 0.017230527475476265, + 0.01093393936753273, + -0.0013206525472924113, + -0.01751415804028511, + 0.014259502291679382, + -0.004740167874842882, + 0.01626618579030037, + -0.004967071581631899, + -0.019301027059555054, + -0.017003623768687248, + -0.013280978426337242, + 0.012749171815812588, + 0.010125594213604927, + -0.007275111507624388, + -0.021229712292551994, + -0.0036411010660231113, + 0.006073229014873505, + 0.013004438951611519, + -0.01588328368961811, + 0.005874687805771828, + 0.0019127303967252374, + -0.018974851816892624, + -0.00872871559113264, + 0.009898689575493336, + 0.0031022040639072657, + 0.014805490151047707, + -0.00211481680162251, + -0.008501811884343624, + 0.001926911878399551, + 0.0024090830702334642, + -6.991038389969617e-5, + 0.022761313244700432, + -0.019329389557242393, + -0.006353313568979502, + -0.009154160507023335, + 0.030972404405474663, + 0.0027228486724197865, + -0.006863847840577364, + -0.004335994832217693, + -0.005927868653088808, + -0.01311080064624548, + -0.03057532198727131, + -0.005892415065318346, + -0.02192460559308529, + -0.016705811023712158, + 0.02763975039124489, + -0.004179998300969601, + 0.02208060212433338, + -0.017230527475476265, + -0.016734175384044647, + -0.007962914183735847, + -0.004658624064177275, + 0.0046196249313652515, + -0.005537877324968576, + 0.008352905511856079, + 0.004460082855075598, + 0.010742489248514175, + 6.531247345265001e-5, + -0.006743305362761021, + -0.007728919852524996, + -0.01361424382776022, + -0.02758302539587021, + 0.012983166612684727, + -0.032050199806690216, + -0.010026323609054089, + 0.0036836457438766956, + -0.00960087776184082, + 0.011359384283423424, + -0.002953298157081008, + 0.015117483213543892, + -0.017726879566907883, + -0.006470310967415571, + 0.029029538854956627, + -0.004885528236627579, + 0.008558537811040878, + 0.04447319731116295, + 0.016096007078886032, + -0.004577080253511667, + 0.007087206467986107, + -0.0020368185359984636, + 0.023130033165216446, + 0.005509514361619949, + 0.005232974886894226, + 0.003669464262202382, + 0.018336685374379158, + 0.004839438013732433, + 0.013146254234015942, + -0.008523084223270416, + -0.0003547591913957149, + -0.005257792770862579, + 0.004655078519135714, + 0.00034412305103614926, + 0.00844508595764637, + 0.022052237764000893, + -0.025852881371974945, + -0.005271974019706249, + 0.00930306687951088, + -0.004070091526955366, + 0.006137046031653881, + 0.0231158509850502, + 0.010175229050219059, + 0.007658012211322784, + 0.0018152325646951795, + 0.004846529103815556, + 0.0001677405962254852, + 0.014351681806147099, + 0.01751415804028511, + 0.007048207335174084, + -0.014287864789366722, + 0.013713514432311058, + -0.006300133187323809, + -0.00896271038800478, + 0.006324950605630875, + 0.04362230747938156, + 0.030008062720298767, + -0.012359180487692356, + 0.015386931598186493, + 0.00041148520540446043, + -0.0024019922129809856, + 0.0055485134944319725, + 0.019272664561867714, + -0.022945674136281013, + 0.015457839705049992, + 0.01006177719682455, + 0.01955629326403141, + 0.01694689691066742, + 0.013607152737677097, + -0.002130771055817604, + 0.01127429585903883, + -0.012706627137959003, + -0.023754019290208817, + -0.005637147929519415, + 0.02088935486972332, + 0.002680304227396846, + -0.02790920063853264, + -0.02154170535504818, + -0.0004385187057778239, + -0.006817758083343506, + -0.01730143465101719, + -0.017173800617456436, + 0.011033209972083569, + -0.0029940700624138117, + 0.006456129718571901, + 0.017287252470850945, + 0.018237413838505745, + 0.015996737405657768, + 0.01664908602833748, + 0.02192460559308529, + -0.015032393857836723, + 0.007516196928918362, + 0.028958631679415703, + 0.02331439219415188, + -0.0043395403772592545, + 0.0038680052384734154, + 0.0055485134944319725, + 0.002245995681732893, + 0.015344386920332909, + -0.004098454490303993, + 0.01213227678090334, + -0.02447727508842945, + 0.008735806681215763, + 0.017882876098155975, + 0.02640596032142639, + 0.01339443027973175, + -0.017287252470850945, + 0.001659235917031765, + 0.015330205671489239, + 0.016578178852796555, + 0.022378413006663322, + -0.013224252499639988, + -0.008679080754518509, + 0.0005264883511699736, + -0.005261337850242853, + -0.01694689691066742, + 6.293042679317296e-5, + 4.140888268011622e-5, + 0.0064951288513839245, + -0.002245995681732893, + 0.006353313568979502, + -0.021711882203817368, + -0.019187575206160545, + -0.014273683540523052, + 0.016039280220866203, + -7.450829434674233e-5, + -0.007253839168697596, + -0.027129217982292175, + -0.01225281972438097, + 0.017202164977788925, + -0.013592971488833427, + -0.00631785998120904, + 0.011125389486551285, + -0.03369525447487831, + 0.011352294124662876, + -0.015457839705049992, + 0.011650105938315392, + 0.04223251715302467, + 0.005679692141711712, + 0.039481308311223984, + -0.015628017485141754, + 0.015103301964700222, + -0.011366475373506546, + -0.03207856044173241, + 0.000818095519207418, + -0.003323789918795228, + -0.013174616731703281, + 0.014408407732844353, + -0.005931414198130369, + -0.030830590054392815, + -0.014777126722037792, + -0.01732979714870453, + 0.026803042739629745, + 0.0064774020574986935, + 0.010848850943148136, + 0.00014015314809512347, + 0.0007476311875507236, + -0.0007303474703803658, + -0.015542928129434586, + -0.007122660521417856, + -0.024675816297531128, + -0.015840739011764526, + 0.014791308902204037, + -0.010607765056192875, + -0.015004031360149384, + 0.012437178753316402, + -0.0035648755729198456, + 0.03661664202809334, + -0.004715349990874529, + -0.005704510025680065, + -0.009203796274960041, + -0.003100431291386485, + 0.03397888317704201, + 0.007331837434321642, + 0.03105749376118183, + -0.012422997504472733, + -0.023924198001623154, + -0.012302454560995102, + 0.00018701858061831445, + 0.00933142937719822, + -0.0014881715178489685, + 0.0006239861832000315, + 0.004928072448819876, + -0.01784033142030239, + -0.02640596032142639, + 0.019074123352766037, + -0.0001686269388301298, + -0.018776310607790947, + -0.006115773692727089, + 0.00527551956474781, + -0.015472020953893661, + 0.004197725094854832, + 0.0050947051495313644, + -0.012557721696794033, + 0.0013126754201948643, + 0.0023470388259738684, + -0.009487425908446312, + 0.016337092965841293, + 0.0069383010268211365, + 0.014401317574083805, + 0.009359792806208134, + -0.007998368702828884, + 0.022576954215765, + -0.02050645463168621, + 0.006647579837590456, + -0.006697215139865875, + -0.017400706186890602, + 0.021740244701504707, + -0.03295781463384628, + 0.05689619481563568, + -0.007594195194542408, + -0.033439986407756805, + -0.016464726999402046, + -0.010501403361558914, + 0.009629241190850735, + -0.018435955047607422, + -0.005247156601399183, + 0.018237413838505745, + 0.00527551956474781, + -0.020690813660621643, + -0.0008952074567787349, + -0.006105137523263693, + 0.005133704282343388, + -0.01043049618601799, + 0.016039280220866203, + 0.0024835357908159494, + -0.0037013725377619267, + -0.004226088058203459, + -0.018776310607790947, + 0.024604909121990204, + -0.03732571750879288, + -0.007360200397670269, + 0.004892618861049414, + 0.0028912541456520557, + 0.0037829161155968904, + -1.2796591363439802e-5, + 0.012075550854206085, + 0.014202776364982128, + -0.014231138862669468, + -0.012855533510446548, + 0.00946615356951952, + -0.0008952074567787349, + 0.012359180487692356, + -0.02322930283844471, + -0.028788452968001366, + 0.006137046031653881, + -0.007913279347121716, + -0.019896650686860085, + -0.022364232689142227, + -0.00680712191388011, + -0.007168750278651714, + -0.01896067149937153, + 0.004020456224679947, + -0.01372060552239418, + -0.007828189991414547, + -0.022236598655581474, + -0.01662072353065014, + 0.015954192727804184, + 0.025498343631625175, + -0.008515993133187294, + -0.007260930258780718, + 0.00448135519400239, + 0.01964138261973858, + 0.009473244659602642, + -0.011962099000811577, + -0.012557721696794033, + -0.032106924802064896, + 0.0007857439341023564, + -0.0011726331431418657, + -0.017443249002099037, + 0.0006439289427362382, + -0.0009200250497087836, + -0.0015041257720440626, + -0.0027955290861427784, + -0.007551650982350111, + -0.008785441517829895, + -0.011508290655910969, + -0.00539251696318388, + 0.018180688843131065, + -0.007523288019001484, + 0.010522675700485706, + 0.028490642085671425, + -0.006697215139865875, + 0.0058356886729598045, + 0.012068459764122963, + -0.027129217982292175, + 0.010848850943148136, + 0.016748355701565742, + 0.0060625928454101086, + -0.022038057446479797, + -0.0018258686177432537, + 0.007544559892266989, + -0.037354081869125366, + -0.026717953383922577, + 0.008126001805067062, + 0.006743305362761021, + -0.01290516834706068, + -0.0039140949957072735, + 0.003288336331024766, + -0.017414886504411697, + 0.01964138261973858, + 0.004070091526955366, + -0.006824848707765341, + 0.006814212538301945, + 0.005279064644128084, + -0.0012781081022694707, + 0.005020252428948879, + 0.004633806645870209, + 0.000445166282588616, + -0.000584100722335279, + 0.0029036628548055887, + 0.016875989735126495, + 0.007154568564146757, + -0.0029178443364799023, + 0.006108683068305254, + 0.014011326245963573, + 0.025413254275918007, + -0.0028345282189548016, + -0.014294955879449844, + -0.013727695681154728, + 0.015869103372097015, + -0.00884216744452715, + -0.021740244701504707, + -0.007927460595965385, + -0.02776738442480564, + -0.011955007910728455, + -0.01647890731692314, + 0.008572719059884548, + -0.009636332280933857, + -0.0034797864500433207, + 0.01191246323287487, + 0.0005650442908518016, + -0.0025331710930913687, + -0.02649104967713356, + 0.009409427642822266, + -0.0037864616606384516, + -0.004722440615296364, + 0.020350458100438118, + 0.024363823235034943, + 0.003249337198212743, + 0.006753941066563129, + 0.026717953383922577, + -0.0010866577504202724, + -0.02216569148004055, + -0.0027210761327296495, + 0.021640975028276443, + 0.010749580338597298, + 0.012458451092243195, + -0.0020492272451519966, + 0.002854027785360813, + -0.013536245562136173, + 0.009615059942007065, + 0.0026608046609908342, + 0.01650726981461048, + -0.011607561260461807, + -0.011770647950470448, + 0.020548999309539795, + -0.0019535021856427193, + 0.008437994867563248, + 0.00045735351159237325, + -0.011160844005644321, + -0.0028877088334411383, + -0.030972404405474663, + 0.014677857048809528, + 0.006449039094150066, + 0.005229429807513952, + -0.007236112374812365, + -0.0035311945248395205, + -0.0036286923568695784, + -0.011097026988863945, + 0.021116258576512337, + -0.01866285875439644, + 0.0024179464671760798, + 0.030830590054392815, + -0.008671989664435387, + -0.030660411342978477, + -0.0009634559391997755, + 0.001356106367893517, + -0.0037297355011105537, + -0.007065934129059315, + -0.02554088830947876, + -0.019003216177225113, + -0.003552466630935669, + -0.006445493549108505, + 0.014266593381762505, + 0.015656379982829094, + -0.006544764153659344, + -0.004669260233640671, + -0.000409047759603709, + 0.0274695735424757, + 0.0013694014633074403, + -0.013649697415530682, + -0.03766607493162155, + -0.00025593183818273246, + -0.00023598909319844097, + 0.013188798911869526, + 0.0009687739657238126, + -0.0010263863950967789, + -0.0041764527559280396, + -0.012933531776070595, + -0.016422182321548462, + -0.0028256645891815424, + 0.010203592479228973, + 0.006800031289458275, + 0.014422589913010597, + -0.015812376514077187, + 0.014989850111305714, + -0.006463220342993736, + -0.003311381209641695, + -0.007856553420424461, + -0.012898078188300133, + 0.024165282025933266, + 0.03423415124416351, + -0.011430292390286922, + -0.018648678436875343, + 0.03840351104736328, + 0.0037935522850602865, + 0.0076154675334692, + -0.021697701886296272, + 0.0027848929166793823, + -0.0071829319931566715, + -0.011061573401093483, + 0.005771872121840715, + -0.0055485134944319725, + -0.0035436032339930534, + -0.004811075050383806, + 0.0012151775881648064, + 0.01386951096355915, + -0.0014863988617435098, + 0.001214291318319738, + 0.022747132927179337, + -0.002914299024268985, + 0.0118982819840312, + -0.011834464967250824, + 0.014748764224350452, + -0.028292100876569748, + -0.01664908602833748, + 0.023867471143603325, + -0.00013893442519474775, + 0.011607561260461807, + 0.02995133586227894, + -0.001898548798635602, + 0.0028593456372618675, + 0.024406367912888527, + -0.005076978355646133, + 0.007466561626642942, + -0.0032457916531711817, + 0.014273683540523052, + 0.00374037167057395, + 0.006434857379645109, + 0.00038445170503109694, + 0.006353313568979502, + 0.015840739011764526, + -0.012082641012966633, + -0.021201347932219505, + -0.025555070489645004, + 0.002598760649561882, + -0.03786461427807808, + -0.015046576038002968, + 0.001345470198430121, + 0.02086099237203598, + -0.0123733626678586, + 0.00035210014902986586, + 0.015897465869784355, + -0.013975871726870537, + 0.0041409991681575775, + 0.005856961011886597, + 0.019485386088490486, + -0.017031986266374588, + 0.009189615026116371, + 0.004701168742030859, + -0.017017804086208344, + 0.02663286402821541, + 0.0076509215869009495, + 0.010863032191991806, + 0.023215122520923615, + -0.005130159202963114, + -0.020279550924897194, + -0.012295364402234554, + -0.011196297593414783, + -0.023158395662903786, + 0.01849268190562725, + -0.02453400194644928, + 0.0024888538755476475, + -0.03729735687375069, + -0.0025455800350755453, + 0.016124369576573372, + 0.006672397721558809, + -0.019386116415262222, + 0.006236316170543432, + -0.0017221664311364293, + 0.01876213029026985, + 0.006899301894009113, + 0.01947120577096939, + -0.030632048845291138, + -0.013770240359008312, + 0.004874892067164183, + -0.00825363490730524, + 0.003350380342453718, + -0.01596837304532528, + -0.011919554322957993, + -0.0019375479314476252, + -0.004442356061190367, + 0.027682295069098473, + 0.0022424503695219755, + 0.019811561331152916, + -0.008700353093445301, + -0.018450137227773666, + -0.023782381787896156, + -0.0015298296930268407, + -0.03185165673494339, + -0.013670969754457474, + -0.013557517901062965, + 0.029979700222611427, + -0.02915717288851738, + 0.02121553011238575, + -0.007771464064717293, + -0.00448135519400239, + -0.006924119312316179, + 0.009643422439694405, + -0.00859399139881134, + 0.007509106304496527, + 0.029497528448700905, + -0.009225068613886833, + 0.01879049278795719, + 0.03119930811226368, + -0.002127225510776043, + -0.025115443393588066, + 0.006856757216155529, + 0.0006572240963578224, + 0.007360200397670269, + -0.007934551686048508, + 0.006906392518430948, + 0.001636191038414836, + -0.009877417236566544, + 0.022718768566846848, + -0.00348865007981658, + 0.014777126722037792, + -0.003181974869221449, + 0.02056318148970604, + 0.0013631971087306738, + -0.009061980992555618, + -0.026377597823739052, + -0.008565627969801426, + 0.008005458861589432, + 0.0010122047970071435, + 0.013415702618658543, + 0.01559965405613184, + 0.015684742480516434, + -0.016393817961215973, + -0.017585065215826035, + 0.014521860517561436, + 0.04501209408044815, + -0.007551650982350111, + -0.027724839746952057, + 0.010480131022632122, + -0.009636332280933857, + -0.008147274143993855, + 0.007367291487753391, + -0.00992705300450325, + -0.00503797922283411, + 0.018918126821517944, + 0.0023559024557471275, + -0.026122329756617546, + -0.0006900188163854182, + -0.0037829161155968904, + 0.03712717816233635, + 0.00731056509539485, + 0.004314722493290901, + -0.01724470965564251, + 0.02376820147037506, + -0.007133296690881252, + 0.033383261412382126, + -0.009494516998529434, + 0.0017044395208358765, + -0.010409223847091198, + -0.004052364733070135, + 0.014904760755598545, + -0.03335489705204964, + -0.030206603929400444, + -0.014401317574083805, + 0.0016530315624549985, + -0.01520257256925106, + 0.020407184958457947, + 0.0074169267900288105, + -0.008062184788286686, + -0.011713922023773193, + -0.013826966285705566, + 0.0018737312639132142, + -0.009388155303895473, + 0.014536041766405106, + 0.009778146632015705, + 0.007360200397670269, + -0.0117635577917099, + -0.01857776939868927, + -0.0031997018959373236, + -0.009799418970942497, + 0.017358161509037018, + 0.0005278178723528981, + 0.011947916820645332, + 0.006310769356787205, + -0.019215937703847885, + 0.010990665294229984, + -0.012727899476885796, + 0.0109481206163764, + 0.004066546447575092, + 0.00029138560057617724, + 0.008430903777480125, + 0.010543948039412498, + 0.010274499654769897, + 0.014479315839707851, + -0.0050627971068024635, + 0.0037651893217116594, + -0.00022269392502494156, + -0.006154772825539112, + -0.007268020883202553, + 0.01057940162718296, + -0.02080426551401615, + -0.0001766040368238464, + 0.006105137523263693, + 0.011713922023773193, + 0.018705403432250023, + 0.030745500698685646, + -0.004328904207795858, + 0.022690406069159508, + -0.013933327980339527, + -0.00958669651299715, + -0.0057931444607675076, + 0.012763353995978832, + -0.025937970727682114, + -0.01914503052830696, + 0.01898903399705887, + -0.0010724762687459588, + -0.00441399309784174, + -0.002804392483085394, + -0.010203592479228973, + 0.014266593381762505, + -0.004006274975836277, + 0.0034868773072957993, + 0.012685355730354786, + 0.006853211671113968, + 0.01816650666296482, + 0.012883896008133888, + -0.003084477037191391, + 0.0074240174144506454, + -0.009863235987722874, + 0.01007595844566822, + -0.010125594213604927, + -0.006005866918712854, + 0.0004059455532114953, + -0.003910549916327, + -0.025016173720359802, + -0.0027334848418831825, + -0.010451768524944782, + 0.012153549119830132, + -0.02130061946809292, + 0.0036836457438766956, + 0.003192611038684845, + 0.006796485744416714, + 0.0006798258400522172, + -0.013642607256770134, + -0.0269306767731905, + -0.013713514432311058, + -0.03241891786456108, + -0.014521860517561436, + -0.004931617993861437, + 0.004995434544980526, + -0.020605726167559624, + -0.018336685374379158, + 0.031142583116889, + 0.015698924660682678, + -0.005981049500405788, + -0.0032528825104236603, + -0.0016113733872771263, + -0.004009820055216551, + 0.013082437217235565, + 0.0069383010268211365, + -0.013188798911869526, + -0.004183543846011162, + 0.005991685204207897, + 0.003637555753812194, + 0.00044937641359865665, + 0.0038750958628952503, + 0.0037722799461334944, + 0.004924527369439602, + 0.010465949773788452, + 0.010473040863871574, + 0.011331021785736084, + -0.008381268940865993, + 0.013699333183467388, + 0.0008983096340671182, + 0.025824518874287605, + 0.016734175384044647, + 0.01798214763402939, + 0.0010015687439590693, + 0.0011460428358986974, + -0.02676049806177616, + 0.011167934164404869, + 0.00019898422760888934, + 0.009650513529777527, + -0.00429699569940567, + -0.0074523803777992725, + 0.008232363499701023, + -0.009763965383172035, + -0.015401113778352737, + -0.021669337525963783, + 0.008437994867563248, + -0.00552724115550518, + 0.0011956780217587948, + 0.000980296405032277, + 0.03247564285993576, + 0.015259298495948315, + 0.006480947136878967, + -0.01487639732658863, + 0.005115977488458157, + 0.002308039693161845, + 0.00022978468041401356, + -0.015954192727804184, + -0.004679896403104067, + -0.006144136656075716, + -0.008679080754518509, + -0.02091771923005581, + -0.02154170535504818, + 0.011891190893948078, + 0.0060519566759467125, + -0.0014633539831265807, + 0.013926236890256405, + 0.013933327980339527, + 0.0008628558716736734, + 0.004527444951236248, + -0.003935367334634066, + -0.008757079020142555, + -0.006810667458921671, + -0.007750191725790501, + -0.01225281972438097, + 0.013997144065797329, + 0.015372750349342823, + -0.008558537811040878, + 0.004151635337620974, + 0.01955629326403141, + 0.01697525940835476, + 0.03715553879737854, + 0.0010556357447057962, + -0.014046779833734035, + -0.009253431111574173, + -0.005279064644128084, + -0.00943779107183218, + -0.008558537811040878, + -0.003818369936197996, + 0.006491583306342363, + -0.0014775354648008943, + -0.044841915369033813, + -0.02018027938902378, + 0.007502015680074692, + -0.0010724762687459588, + -0.01852104440331459, + 0.015089119784533978, + 0.0005668170051649213, + 0.012898078188300133, + 0.0005575103568844497, + 0.021967150270938873, + -0.006583763286471367, + 0.012025915086269379, + -0.020719178020954132, + 0.01216063927859068, + -0.006094501353800297, + 0.011508290655910969, + 0.00729638384655118, + -0.020690813660621643, + 0.003493967931717634, + -0.00424381485208869, + -0.00908325333148241, + 0.03170984238386154, + 0.008133092895150185, + 0.005059251561760902, + 0.009508698247373104, + -0.013387340120971203, + 0.01497566793113947, + -0.00896271038800478, + -0.004335994832217693, + 0.007402745075523853, + -0.0013552199816331267, + -0.005041524767875671, + -0.019371934235095978, + -0.01154374424368143, + -0.00832454301416874, + -0.005374790169298649, + -0.0035099221859127283, + 0.01524511631578207, + -0.02539907395839691, + 0.015472020953893661, + 0.005509514361619949, + 0.010877213440835476, + -0.005544967949390411, + -0.0007019844488240778, + -0.012656992301344872, + -0.002719303360208869, + 0.00563005730509758, + -0.020052647218108177, + 0.023697292432188988, + 0.0009723193943500519, + -0.004630261100828648, + -0.019414478912949562, + 0.0326458215713501, + 0.013649697415530682, + 0.01727307215332985, + 0.013741876929998398, + -0.013805693946778774, + -0.028277918696403503, + -0.003949549049139023, + 0.013578790239989758, + 0.003655282547697425, + -0.007083661388605833, + 0.01656399667263031, + 0.021938785910606384, + -0.00033614595304243267, + -0.03131275996565819, + 0.006800031289458275, + -0.029298987239599228, + 0.00473307678475976, + 0.0020102281123399734, + -0.028972811996936798, + 0.011572107672691345, + 0.002690940396860242, + -0.011472837068140507, + 0.0012869714992120862, + -0.023598022758960724, + 0.018478499725461006, + 0.011075754649937153, + 0.014380045235157013, + 0.009047799743711948, + 0.008757079020142555, + 0.022917309775948524, + -0.022066419944167137, + -0.00552724115550518, + -0.006289497017860413, + 0.002588124480098486, + 0.046089887619018555, + 0.031539663672447205, + -0.01860613375902176, + -0.007122660521417856, + 0.0020492272451519966, + -0.025937970727682114, + 0.03326980769634247, + -0.00637104082852602, + 0.0012524040648713708, + -0.019272664561867714, + 0.010125594213604927, + -0.009813601151108742, + -0.015840739011764526, + 0.021584248170256615, + -0.005378335248678923, + 0.008267817087471485, + 0.01041631493717432, + -0.0036730095744132996, + -0.0043927207589149475, + 0.00013295159442350268, + 0.008246544748544693, + -0.015840739011764526, + -0.0232576671987772, + 0.009565424174070358, + 0.021612612530589104, + 0.003704917849972844, + 0.0026998037938028574, + -0.00466571468859911, + -0.011224660091102123, + 0.0029993881471455097, + 0.014500588178634644, + -0.006424221210181713, + -0.008260725997388363, + 0.0053499722853302956, + -0.0017097576055675745, + 0.03040514513850212, + -0.005892415065318346, + 0.00603068433701992, + 0.0021236801985651255, + -0.004832347389310598, + -0.022179871797561646, + -0.0077218287624418736, + 0.029469165951013565, + -0.008012549951672554, + -0.028816815465688705, + 0.00029825474484823644, + 0.01191246323287487, + 0.017315616831183434, + -0.015528746880590916, + -0.014266593381762505, + 0.011245932430028915, + 0.02154170535504818, + -0.025257257744669914, + -0.0036836457438766956, + -0.008232363499701023, + 0.010175229050219059, + 0.003242246340960264, + -0.01866285875439644, + -0.006658216007053852, + -0.014316228218376637, + -0.01629454828798771, + 0.013174616731703281, + 0.004814620595425367, + 0.03233382850885391, + -0.005708055570721626, + 0.03108585625886917, + -0.002109498716890812, + 0.005055706016719341, + 0.0067220330238342285, + -0.024066012352705002, + -0.003426605835556984, + -0.0014837398193776608, + 0.0034443328622728586, + -0.01686180755496025, + -0.007870734669268131, + -0.020407184958457947, + -0.0041232723742723465, + -0.00596332224085927, + -0.008551446720957756, + 0.03840351104736328, + 0.002845164155587554, + 0.0002798631030600518, + 0.0010902030626311898, + -0.004187088925391436, + 0.004711804911494255, + 0.007129751145839691, + -0.004874892067164183, + 0.017131255939602852, + -0.0015342615079134703, + -0.014677857048809528, + -0.013642607256770134, + -0.005247156601399183, + 0.007920369505882263, + 0.0017718016169965267, + 0.006732669193297625, + -0.012125185690820217, + -0.005346427205950022, + 0.013904964551329613, + 0.0032014744356274605, + 0.002136089140549302, + 0.0014633539831265807, + -0.01662072353065014, + -0.006002321373671293, + -0.004538081120699644, + -0.020605726167559624, + -0.03775116428732872, + 0.009515789337456226, + 0.0058144167996943, + -0.02157006785273552, + 0.0059491409920156, + -0.027185942977666855, + 0.011919554322957993, + -0.0022867675870656967, + 0.013841147534549236, + -0.0027671658899635077, + 0.007658012211322784, + 0.00957251526415348, + -0.004063000902533531, + 0.006750395987182856, + -0.0027902110014110804, + -0.011019028723239899, + 0.00955833401530981, + 0.011217569932341576, + -0.00014691152318846434, + 0.016606541350483894, + -5.113096995046362e-5, + 0.0007954937173053622, + 0.035510484129190445, + -0.016819262877106667, + -0.0017691425746306777, + 0.003020660253241658, + 0.0074240174144506454, + 0.0010122047970071435, + -0.010380861349403858, + -0.0015484429895877838, + -0.000859310501255095, + 0.012259909883141518, + -0.03168147802352905, + 0.010097230784595013, + -0.017173800617456436, + -0.002985206665471196, + 0.03136948496103287, + 0.02480345033109188, + 0.0008606400224380195, + 0.005860506556928158, + -0.010558129288256168, + 0.010721216909587383, + 0.021612612530589104, + 0.005162067245692015, + -0.00018491351511329412, + 0.0017336888704448938, + -0.002370083937421441, + -0.00896271038800478, + 0.020421365275979042, + -0.006612126249819994, + 0.008218181319534779, + 0.017117075622081757, + -0.0015324887353926897, + -0.007636739872395992, + -0.002125452971085906, + 0.013982962816953659, + 0.0028185739647597075, + 0.010863032191991806, + 0.02575361169874668, + 0.008040912449359894, + -0.0005291473935358226, + -0.021258074790239334, + -0.006612126249819994, + -0.0025633068289607763, + -0.00040195698966272175, + -0.002428582636639476, + 0.004226088058203459, + -0.009005255065858364, + 0.008352905511856079, + -0.009352701716125011, + -0.002456945599988103, + -0.002854027785360813, + -0.00831036176532507, + -0.004630261100828648, + -0.0152309350669384, + 0.0013676288072019815, + 0.023810744285583496, + 0.009863235987722874, + 0.006353313568979502, + -0.0029497528448700905, + 0.022052237764000893, + 0.0029054356273263693, + 0.00908325333148241, + 0.015613836236298084, + 0.0036517372354865074, + 0.02426455356180668, + 0.023101670667529106, + 0.006626307498663664, + -0.007346019148826599, + -0.010792124085128307, + 0.004314722493290901, + 0.01966974511742592, + 0.011635923758149147, + -0.020350458100438118, + 0.003882186720147729, + 0.012862623669207096, + -0.005115977488458157, + -0.010359589010477066, + -0.03049023263156414 + ], + "05d59f98-d186-466e-9a1a-9f5b18b56bce": [ + -0.02209320478141308, + -0.012696419842541218, + -0.00661002891138196, + 0.03311111778020859, + -0.02559368684887886, + -0.01104660239070654, + 0.0149774719029665, + 0.027831701561808586, + -0.03173387795686722, + 0.024230794981122017, + 0.013428078033030033, + 0.016182556748390198, + -0.003122099908068776, + -0.04019815847277641, + -0.0029750510584563017, + 0.04283786565065384, + -0.0055519938468933105, + 0.020271234214305878, + 0.009081168100237846, + 0.0013171639293432236, + 0.060942817479372025, + -0.00015511868696194142, + -0.03764452785253525, + 0.007061935495585203, + -0.012036493048071861, + -0.010501446202397346, + 0.0028692474588751793, + 0.008536010980606079, + -0.042235322296619415, + 0.0021340027451515198, + 0.03796014562249184, + 0.029381094500422478, + 0.009568940848112106, + 0.025923650711774826, + 0.009805653244256973, + -0.02981148101389408, + 0.002444240264594555, + -0.010415368713438511, + -0.010372329503297806, + -0.032910268753767014, + -0.0639842227101326, + 0.05368361994624138, + -0.011390912346541882, + -0.019496535882353783, + -0.05104391276836395, + -0.002117863390594721, + 0.0053009348921477795, + 0.02404429391026497, + -0.0005160162108950317, + 0.011957588605582714, + 0.008643608540296555, + -0.016555558890104294, + -0.018721839413046837, + 0.018865302205085754, + 0.008163008838891983, + -0.05615117400884628, + -0.01563739962875843, + 0.06168882176280022, + 0.0037371949292719364, + -0.06438591331243515, + 0.010695120319724083, + 0.011799780651926994, + 0.0024388604797422886, + -0.006660240702331066, + -0.011771087534725666, + -0.015106587670743465, + -0.013377866707742214, + -0.011548721231520176, + -0.08894667029380798, + 0.0019618480000644922, + 0.005889130290597677, + 0.02883593738079071, + -0.028979400172829628, + 0.022724440321326256, + 0.016856828704476357, + -0.014403622597455978, + 0.057212796062231064, + 7.195534999482334e-5, + -0.008758378215134144, + 0.027157427743077278, + -0.02283921092748642, + 0.004364842548966408, + 0.02674138732254505, + -0.0056739370338618755, + 0.04478895291686058, + 0.010221694596111774, + -0.006337450351566076, + -0.03411535173654556, + 0.010895967483520508, + -0.0279464703053236, + 0.006566990166902542, + 0.04209186136722565, + 0.010680774226784706, + -0.007962161675095558, + -0.017043329775333405, + -0.01830579899251461, + 0.018678801134228706, + -0.003534554271027446, + 0.0388496108353138, + 0.0006827912293374538, + -0.0024406537413597107, + 0.0421205535531044, + 0.005681110080331564, + 0.021490663290023804, + 0.019826499745249748, + 0.005842505022883415, + -0.00019199300731997937, + -0.009791307151317596, + -0.009748267941176891, + 0.0712721049785614, + -0.00730940792709589, + -0.03807491436600685, + 0.0078904302790761, + 0.005548407323658466, + -0.03460312634706497, + -0.00806258525699377, + -0.012237340211868286, + -0.00011140749847982079, + 0.0058138128370046616, + -0.028204703703522682, + 0.034631818532943726, + 0.008937706239521503, + -0.032192956656217575, + 0.029954943805933, + 0.009296362288296223, + 0.003916522953659296, + -0.0034305439330637455, + -0.0046517676673829556, + 0.010515792295336723, + -0.011835645884275436, + -0.03070094808936119, + -0.0015897424891591072, + -0.00784021895378828, + 0.013055075891315937, + 0.009195937775075436, + -0.01350698247551918, + -0.00948286335915327, + 0.06547623127698898, + -0.010895967483520508, + 0.04674004018306732, + -0.00392010947689414, + -0.0437273308634758, + -0.014209948480129242, + -0.006254959385842085, + 0.008629261516034603, + -0.017445024102926254, + -0.03919392079114914, + 0.028807245194911957, + -0.011964761652052402, + 0.015465243719518185, + -0.0481746643781662, + -0.031705185770988464, + 0.013456771150231361, + 0.01875053159892559, + -0.009325054474174976, + 0.011907377280294895, + -0.004748604726046324, + 0.009224630892276764, + -0.022193629294633865, + 0.04958059638738632, + -0.006014660000801086, + -0.04877720773220062, + -0.02576584182679653, + 0.013342000544071198, + 0.06140189617872238, + 0.007732621859759092, + 0.001843491569161415, + 0.025364147499203682, + -0.005455156788229942, + 0.011304834857583046, + 0.030557485297322273, + -0.0017107888124883175, + -0.004458093084394932, + 7.223554712254554e-5, + 0.00041604088619351387, + -0.0035668332129716873, + 0.014532738365232944, + 0.026583578437566757, + 0.00906682200729847, + -0.01688552089035511, + -0.006046939175575972, + -0.0017780368216335773, + 0.0014767658431082964, + -0.025651073083281517, + -0.007445697207003832, + 0.00016330053040292114, + 0.022050166502594948, + 0.03004102036356926, + -0.010257559828460217, + -0.02110331505537033, + 0.007291475310921669, + -0.0041388897225260735, + -0.01368631049990654, + 0.030500100925564766, + -0.041431933641433716, + -0.02355652116239071, + 0.005153886042535305, + -0.013298962265253067, + -0.0036152517423033714, + 0.0006594785954803228, + -0.019266996532678604, + -0.023255251348018646, + -0.04378471523523331, + 0.007008137181401253, + -0.037128061056137085, + 0.031160028651356697, + 0.0013449597172439098, + -0.012237340211868286, + 0.010781197808682919, + -0.0408867783844471, + 0.025091569870710373, + -0.052851539105176926, + 0.010824236087501049, + 0.007589159533381462, + -0.04091547057032585, + 0.010006500408053398, + -0.015852592885494232, + 0.035435207188129425, + 0.006950751878321171, + -0.02781735360622406, + -0.022380130365490913, + -0.001537737320177257, + -0.03529174253344536, + -0.02599538303911686, + -0.06547623127698898, + -0.05026921629905701, + -0.006348209921270609, + 0.019166573882102966, + -0.03950953856110573, + -0.0019008765229955316, + 0.04177624359726906, + 0.00824191328138113, + 0.01070946641266346, + -0.023355673998594284, + -0.022537939250469208, + 0.028448589146137238, + -0.000721795076970011, + 0.005387012381106615, + 0.03061487153172493, + -0.02688484825193882, + 0.008693819865584373, + 0.008148662745952606, + 0.010867275297641754, + -0.011498508974909782, + -0.019266996532678604, + -0.02656923234462738, + 0.017358947545289993, + -0.0009414718369953334, + 0.03953823074698448, + -0.02438860386610031, + 0.0074098315089941025, + 0.008098451420664787, + 0.025364147499203682, + -0.021533701568841934, + -0.04189101234078407, + 0.06576315313577652, + 0.024775952100753784, + -0.04229270666837692, + -0.014661855064332485, + 0.0009701643139123917, + 0.03755845129489899, + 0.019740423187613487, + 0.02940978668630123, + 0.015135280787944794, + 0.0062764789909124374, + -0.032508574426174164, + 0.015608706511557102, + -0.04826074466109276, + -0.01457577757537365, + 0.026468807831406593, + -0.028190355747938156, + 0.02154804952442646, + -0.019582614302635193, + -0.004766537342220545, + 0.008277779445052147, + 0.027343928813934326, + -0.021088968962430954, + -0.0360664427280426, + 0.004207034129649401, + 0.005483849439769983, + -0.0034502700436860323, + 0.010515792295336723, + 0.00044450920540839434, + 0.03262334316968918, + -0.013334827497601509, + 0.0015556701691821218, + -0.026626616716384888, + -0.005871197674423456, + -0.039165228605270386, + -0.03190603107213974, + 0.005089327692985535, + -0.007998027838766575, + 0.025564994663000107, + 0.014102351851761341, + 0.019037457183003426, + 0.011125506833195686, + -0.03164780139923096, + -0.020242540165781975, + -0.026454461738467216, + 0.012739459052681923, + -0.008514491841197014, + 0.00450113182887435, + 0.006925646215677261, + -0.03265203535556793, + 0.037615835666656494, + -0.0534253865480423, + 0.032279033213853836, + 0.02487637661397457, + -0.03256595879793167, + -0.013600233010947704, + 0.025651073083281517, + -0.021433278918266296, + -0.03572213277220726, + -0.030012328177690506, + 0.04711304232478142, + 0.0029696712736040354, + 0.0015458071138709784, + 0.01671336591243744, + 0.015522629022598267, + -0.019209612160921097, + 0.017631525173783302, + -0.019984308630228043, + -0.07523167133331299, + 0.06501714885234833, + 0.015666091814637184, + -0.015407859347760677, + 0.0473712757229805, + -0.018836610019207, + 0.017717603594064713, + -0.027473045513033867, + -0.026554886251688004, + 0.015852592885494232, + -0.00806258525699377, + -0.004845441784709692, + -0.01906614936888218, + -0.02235143817961216, + -0.029165901243686676, + -0.03750106319785118, + -0.028376856818795204, + -0.01350698247551918, + -0.008084104396402836, + -0.012201474979519844, + 0.015536975115537643, + -0.023040058091282845, + 0.03225034102797508, + -0.00368698313832283, + 0.0008154939278028905, + 0.007230503484606743, + -0.013334827497601509, + 0.020730312913656235, + 0.0008917083032429218, + -0.0029642912559211254, + 0.046051423996686935, + 0.0249194148927927, + 0.06409899145364761, + -0.013126807287335396, + 0.010967698879539967, + 0.016684673726558685, + 0.00824191328138113, + -0.021088968962430954, + 0.04739996790885925, + 0.007546120788902044, + -0.01468337420374155, + 0.01809060573577881, + -0.01421712152659893, + 0.04275178909301758, + -0.004981731064617634, + -0.008543184027075768, + 0.008500145748257637, + 0.0026181882712990046, + -0.03735760226845741, + 0.0007688686600886285, + 0.00438636215403676, + -0.0010140996892005205, + -0.011620452627539635, + -0.019482189789414406, + 0.020099079236388206, + 0.0008083208231255412, + -0.04074331372976303, + 0.029983635991811752, + -0.010386675596237183, + 0.02760216034948826, + 0.012839882634580135, + -0.00994911603629589, + 0.021490663290023804, + 0.012187128886580467, + -0.010264732874929905, + -0.024804644286632538, + 0.02279617078602314, + 0.019223958253860474, + 0.004142476245760918, + -0.011254623532295227, + -0.013980408199131489, + 0.01941045932471752, + -0.023140480741858482, + 0.01760283298790455, + 0.014611642807722092, + -0.04381340742111206, + 0.02590930461883545, + -0.009655017405748367, + 0.00039564233156852424, + -0.0014489699387922883, + -0.007739794906228781, + 0.0032045908737927675, + 0.025220684707164764, + -0.0208450835198164, + -0.026468807831406593, + 0.005064222030341625, + 0.01502051018178463, + -0.03658290579915047, + -0.008155835792422295, + 0.02048642747104168, + 0.042407479137182236, + -0.007682410068809986, + 0.03747237101197243, + 0.006577749736607075, + 0.0012660555075854063, + 0.03618121147155762, + -0.03844791650772095, + -0.016512518748641014, + 0.04553495720028877, + 0.05985250324010849, + -0.009160072542726994, + 0.024775952100753784, + 0.0036941561847925186, + 0.021318508312106133, + 0.030069714412093163, + 0.038361839950084686, + -0.024589451029896736, + -0.012739459052681923, + -0.007933469489216805, + 0.02159108780324459, + 0.006172468885779381, + -0.010436887852847576, + -0.00070969044463709, + -0.009762614965438843, + 0.021175047382712364, + -0.009683710522949696, + -0.003747954498976469, + 0.006075631361454725, + -0.012187128886580467, + 0.0045298244804143906, + -0.009073995053768158, + -0.006613615434616804, + -0.015580014325678349, + -0.02296832576394081, + -0.01017865538597107, + -0.019941270351409912, + -0.02874986082315445, + -0.00015287709538824856, + 0.0018560445168986917, + 0.023829100653529167, + -0.056725021451711655, + 0.0029194592498242855, + 0.01175674144178629, + 0.022896595299243927, + -0.008858801797032356, + -0.010824236087501049, + 0.02035731077194214, + -0.05922126770019531, + -0.020013000816106796, + 0.006448633968830109, + -0.002047925489023328, + -0.008284952491521835, + 0.023427406325936317, + -0.06283652037382126, + 0.011613279581069946, + 0.026411423459649086, + 0.01106094941496849, + 0.007460043299943209, + -0.01955392211675644, + 0.00790477730333805, + -0.02675573341548443, + 0.02684180997312069, + 0.005526888184249401, + -0.0021716617047786713, + -0.0006222680676728487, + -0.015967361629009247, + 0.03004102036356926, + -0.015336127951741219, + -0.01737329363822937, + -0.027759969234466553, + -0.0018775637727230787, + 0.006918473169207573, + 0.007302234880626202, + -0.012660554610192776, + -0.00988455768674612, + -0.03451704606413841, + 0.02110331505537033, + -0.030959179624915123, + 0.043124791234731674, + 0.0116419717669487, + 0.02359956130385399, + 0.02057250402867794, + -0.03029925376176834, + -0.025120262056589127, + 0.005860438104718924, + -0.0388496108353138, + -0.02843424305319786, + -0.0542861633002758, + 0.03265203535556793, + -0.018893994390964508, + -0.029524557292461395, + 0.011986281722784042, + -0.010314945131540298, + 0.03293896093964577, + -0.022997017949819565, + -0.010867275297641754, + -0.004364842548966408, + -0.019051803275942802, + -0.022337092086672783, + 0.006272892467677593, + -0.02826208807528019, + 0.007876084186136723, + -0.005889130290597677, + 0.003977494314312935, + 0.01175674144178629, + -0.01344242412596941, + 0.023585215210914612, + -0.015436551533639431, + 0.0032763220369815826, + -0.03506220504641533, + -0.01128331571817398, + -0.0041855149902403355, + -0.018377529457211494, + 0.017430678009986877, + -0.019754769280552864, + -0.01157741341739893, + 0.0039021766278892756, + -0.0324224978685379, + 0.0031794849783182144, + 0.02114635333418846, + 0.0031328597106039524, + 0.01081706304103136, + 0.023527828976511955, + -0.0043253907933831215, + -0.005222030449658632, + -0.0014875255292281508, + -0.007998027838766575, + 0.02364259958267212, + -0.03256595879793167, + 0.02296832576394081, + 0.0027401314582675695, + -0.0028297952376306057, + -0.02182062715291977, + 0.042005784809589386, + -0.003007330000400543, + 0.005881957244127989, + -0.013334827497601509, + 0.016024747863411903, + -0.03400058299303055, + 0.004479612689465284, + -0.006886193994432688, + -0.0048705474473536015, + 0.0166129432618618, + -0.03580820932984352, + 0.05549124628305435, + -0.01502051018178463, + -0.03070094808936119, + -0.024890722706913948, + -0.02852031961083412, + 0.05646679177880287, + 0.013076595030725002, + 0.018850956112146378, + -0.03233641758561134, + 0.0027580640744417906, + -0.010939005762338638, + -0.0005164645262993872, + 0.020285580307245255, + 0.010917486622929573, + 0.01910918764770031, + 0.006671000272035599, + 0.030327945947647095, + 0.012868574820458889, + -0.007061935495585203, + 0.03572213277220726, + 0.0023258838336914778, + -0.0042500728741288185, + -0.03669767454266548, + 0.008643608540296555, + 0.0008979847771115601, + -0.02040034905076027, + -0.01616820879280567, + 0.013844119384884834, + 0.03044271655380726, + 0.04220663011074066, + -0.029954943805933, + -0.02199278213083744, + 0.005397771950811148, + -0.0029965704306960106, + -0.0023886484559625387, + 0.04384210333228111, + -0.007790007162839174, + -0.0020335791632533073, + -0.016813790425658226, + 0.012545784935355186, + 0.01631167158484459, + 0.028362510725855827, + -0.0026612270157784224, + -0.0011154200183227658, + 0.009260496124625206, + -0.0036690502893179655, + 0.01582390069961548, + -0.007481562905013561, + -0.017445024102926254, + 0.02479029819369316, + 0.008091278374195099, + -0.019353074952960014, + -0.01293313317000866, + 0.011139853857457638, + 0.010666427202522755, + -0.008048239164054394, + 0.0116419717669487, + -0.001137835904955864, + 0.016942907124757767, + 0.035664744675159454, + 0.003930869046598673, + 0.022236667573451996, + 0.002564389957115054, + -0.012782497331500053, + 0.011964761652052402, + -0.030643563717603683, + 0.06616484373807907, + -2.3816995962988585e-5, + 0.010960525833070278, + 0.008335163816809654, + -0.023656945675611496, + 0.010142790153622627, + -0.023786062374711037, + -0.012387976050376892, + 0.007033242844045162, + 0.01017865538597107, + 0.015752168372273445, + -0.021562395617365837, + 0.04226401448249817, + 0.011433951556682587, + -0.023699983954429626, + 0.027487391605973244, + -0.03755845129489899, + -0.036095134913921356, + -0.0285346657037735, + -0.0024783124681562185, + 0.002067651366814971, + 0.03833314776420593, + -0.0013064042432233691, + 0.040944162756204605, + -0.041833627969026566, + -0.01468337420374155, + 0.02044338919222355, + 0.024101678282022476, + -0.034057967364788055, + 0.0104225417599082, + 0.0028602811507880688, + 0.02559368684887886, + 0.006803703028708696, + -0.01728721708059311, + -0.009260496124625206, + -0.015120934695005417, + 0.0027544775512069464, + 0.02216493710875511, + 0.012703592889010906, + 0.013449597172439098, + 0.026511846110224724, + -0.0013180605601519346, + 0.012387976050376892, + 0.04590795934200287, + 0.038763534277677536, + -0.025163300335407257, + 0.02542153373360634, + 0.02169151045382023, + 0.0018130057724192739, + -0.003606285434216261, + 0.030155790969729424, + 0.004892067052423954, + -0.01046558003872633, + -0.00013303893501870334, + -0.030385330319404602, + 0.013894330710172653, + -0.029309364035725594, + -0.01896572671830654, + -0.015924323350191116, + -0.0046051423996686935, + -0.051962073892354965, + 0.0011270763352513313, + 0.005867611151188612, + -0.01200062781572342, + -0.028606398031115532, + 0.027028311043977737, + -0.018893994390964508, + 0.0012552958214655519, + 0.012423841282725334, + 0.0018703907262533903, + -0.030012328177690506, + -0.00591064989566803, + 0.004788056947290897, + 0.005889130290597677, + 0.00023581627465318888, + 0.006186814978718758, + 0.028491627424955368, + -0.020730312913656235, + -0.0672551617026329, + -0.007345273625105619, + -0.0015700163785368204, + -0.022050166502594948, + 0.009260496124625206, + 0.00769675662741065, + -0.029381094500422478, + -0.02533545531332493, + -0.015106587670743465, + 0.01046558003872633, + 0.011204411275684834, + 0.00293739209882915, + 0.00228284508921206, + 0.013119634240865707, + 0.015049203298985958, + 0.019381767138838768, + -0.019711731001734734, + 0.02479029819369316, + -0.005842505022883415, + 0.016899866983294487, + 0.005247136577963829, + 0.00769675662741065, + -0.011484162881970406, + -0.03873484209179878, + -0.019353074952960014, + 0.026827463880181313, + 0.03196341544389725, + 0.01263903547078371, + 0.010939005762338638, + -0.001490215421654284, + 0.032451190054416656, + 0.005709802731871605, + 0.01253143884241581, + 0.00041447175317443907, + 0.006541884504258633, + 0.007675237022340298, + 0.00011869269656017423, + 0.027917778119444847, + 0.03141826018691063, + -0.02834816463291645, + -0.018363183364272118, + -0.0094183050096035, + 0.01919526606798172, + -0.009009436704218388, + 0.006405595224350691, + -0.007581986486911774, + 0.030959179624915123, + -0.010766850784420967, + -0.017559794709086418, + -0.0158095546066761, + 0.027559122070670128, + -0.04671134799718857, + 0.011225930415093899, + 0.021705856546759605, + -0.00917441863566637, + 0.002189594553783536, + 0.022781824693083763, + 0.015307435765862465, + -0.018908340483903885, + 0.010867275297641754, + -0.0030378156807273626, + 0.017889758571982384, + -0.01035081036388874, + -0.03159041330218315, + -0.01688552089035511, + -0.006810876075178385, + -0.009733921848237514, + 0.021117661148309708, + 0.018635762855410576, + -0.007854565046727657, + 0.03451704606413841, + 0.030327945947647095, + -0.004849028307944536, + 0.005304521415382624, + 0.009970635175704956, + 0.0004859787877649069, + 0.017660219222307205, + -0.001373652252368629, + -0.03979646414518356, + 0.006893367040902376, + -0.0469982735812664, + -0.023398714140057564, + 0.002216493710875511, + -0.03164780139923096, + -0.00977696105837822, + 0.0013001278275623918, + 0.03233641758561134, + 0.0180045273154974, + -0.019037457183003426, + 0.0038591378834098577, + 0.012610342353582382, + 0.012868574820458889, + -0.010809889994561672, + -0.0033803321421146393, + 0.024546412751078606, + -0.019051803275942802, + -0.0022451861295849085, + -0.00573132187128067, + 0.00913138035684824, + 0.010379502549767494, + -0.007000963669270277, + -0.013614579103887081, + 0.02989755943417549, + 0.02887897565960884, + -0.0008836385677568614, + -0.015895631164312363, + -0.0016677500680088997, + 0.009274842217564583, + -0.023183519020676613, + 0.010200174525380135, + -0.016326017677783966, + -0.02311178855597973, + -0.00010036762250820175, + 0.009633498266339302, + -0.017028983682394028, + -0.018291452899575233, + 0.001068794634193182, + -0.000978234107606113, + 0.02546457201242447, + -0.01128331571817398, + -0.012373629957437515, + 0.00047118423390202224, + 0.02741565927863121, + -0.03133218362927437, + 0.004429400898516178, + -0.03164780139923096, + 0.015709130093455315, + -0.007460043299943209, + 0.004913586191833019, + 0.011878685094416142, + -0.013184192590415478, + 0.003118513384833932, + -0.010164309293031693, + 0.019353074952960014, + -0.003489722264930606, + 0.00442222785204649, + -0.011606106534600258, + 0.00016005021461751312, + -0.030385330319404602, + 0.037041984498500824, + -0.023843446746468544, + -0.043124791234731674, + -0.004877720959484577, + -0.002331263618543744, + 0.014202775433659554, + -0.019984308630228043, + 0.006229853723198175, + 0.00623344024643302, + 0.03922261297702789, + 0.0027401314582675695, + 0.012409495189785957, + -0.03147564455866814, + 0.008622088469564915, + -0.007417004555463791, + -0.002768823876976967, + 0.02266705594956875, + -0.0093107083812356, + -0.0042500728741288185, + -0.011455470696091652, + 0.015006164088845253, + 0.009454170241951942, + 0.007919123396277428, + -0.01754544861614704, + -0.0038914168253540993, + -0.027071349322795868, + -0.016455134376883507, + -0.005612965207546949, + 0.001212257076986134, + -0.010723812505602837, + 0.012732286006212234, + -0.006939992308616638, + 0.005204097833484411, + 0.024101678282022476, + 0.01250991877168417, + -0.027272198349237442, + -0.02398690953850746, + 0.008277779445052147, + -0.00353814079426229, + -0.0380462221801281, + -0.0009629912092350423, + -0.012488399632275105, + 0.02012777142226696, + -0.0039021766278892756, + 0.005279415287077427, + -0.05230638012290001, + 0.032910268753767014, + -0.006326690781861544, + 0.0011593552771955729, + -0.011656317859888077, + 0.014181255362927914, + 0.013191365636885166, + 0.018678801134228706, + 0.01146264374256134, + -0.03391450643539429, + -0.026626616716384888, + -0.010207347571849823, + 5.368631173041649e-5, + -0.022580977529287338, + 0.014482527039945126, + -0.03385712206363678, + 0.012911614030599594, + -0.03417273610830307, + -0.0030790611635893583, + 0.008234740234911442, + 0.011326354928314686, + -0.03979646414518356, + 0.01648382656276226, + 0.009045302867889404, + -0.006879020947962999, + 0.0008347716648131609, + -0.009863038547337055, + 0.015493936836719513, + -0.007008137181401253, + -0.02438860386610031, + 0.03428750857710838, + 0.023929523304104805, + 0.00017092196503654122, + 0.025292417034506798, + -0.014425141736865044, + -0.005699042696505785, + 0.001328820246271789, + 0.002562596695497632, + 0.017574140802025795, + -0.000142229488119483, + 0.0029176659882068634, + -0.0031525855883955956, + -0.011842818930745125, + -0.0307870265096426, + -0.007567640393972397, + 0.0015502902679145336, + 0.015580014325678349, + 0.0034323374275118113, + 0.007947815582156181, + -0.005021183285862207, + -0.012646208517253399, + -0.00186321756336838, + 0.006653067655861378, + -0.011785433627665043, + -0.005569926928728819, + 0.001653403858654201, + -0.01724417693912983, + -0.0257228035479784, + 0.0014265539357438684, + -0.01421712152659893, + 0.006251372862607241, + -0.022724440321326256, + -0.025034183636307716, + 0.038993071764707565, + -0.012854228727519512, + 0.007754141464829445, + -0.005864024627953768, + 0.0036367711145430803, + 0.041259780526161194, + -0.0036690502893179655, + 0.031246105208992958, + 0.033971890807151794, + -0.011103987693786621, + 0.01281836349517107, + 0.02203582040965557, + 0.017358947545289993, + -0.011147026903927326, + -0.009676537476480007, + -0.011254623532295227, + -0.007825872860848904, + -0.022207975387573242, + 0.0013584094122052193, + -0.042149245738983154, + -0.006861087866127491, + 0.007036829367280006, + -0.0009181592031382024, + -0.005333213601261377, + -0.010071058757603168, + -0.018291452899575233, + 0.016426442191004753, + -0.0007428661338053644, + -0.005279415287077427, + -0.03159041330218315, + 0.014374930411577225, + -0.014317545108497143, + -0.016828136518597603, + 0.026009729132056236, + -0.010795543901622295, + -0.012187128886580467, + -0.015106587670743465, + -0.010946178808808327, + -0.018592724576592445, + -0.010881621390581131, + -0.013679137453436852, + -0.0208450835198164, + 0.009863038547337055, + 0.01210822444409132, + -0.014360583387315273, + -0.006592096295207739, + -0.018520992249250412, + 0.013564367778599262, + 0.005229203496128321, + -0.02697092667222023, + -0.021720202639698982, + -0.002401201520115137, + -0.027788661420345306, + 0.0003059783484786749, + -0.016770752146840096, + -0.03962430730462074, + 0.038677457720041275, + 0.03021317534148693, + 0.017631525173783302, + -0.02044338919222355, + -0.02928066998720169, + 0.009260496124625206, + 0.0040635718032717705, + -0.03896437957882881, + -0.028448589146137238, + -0.0044652665965259075, + -0.010085404850542545, + 0.007818699814379215, + 0.006445046979933977, + -0.002354576252400875, + -0.04358386993408203, + -0.024245141074061394, + 0.01764587126672268, + 0.005810226313769817, + -0.013212884776294231, + 0.032508574426174164, + -0.01139808539301157, + -0.005311694461852312, + -0.003848378313705325, + -0.014805316925048828, + 0.014030620455741882, + 0.005139539483934641, + -0.013471117243170738, + -0.004960211459547281, + -0.02110331505537033, + 0.00274909776635468, + -0.024245141074061394, + 0.017430678009986877, + -0.014209948480129242, + -0.01346394419670105, + -0.08194570988416672, + -0.018807917833328247, + -0.028362510725855827, + 0.028491627424955368, + 0.019396113231778145, + 0.019252650439739227, + 0.010824236087501049, + 0.007682410068809986, + 0.005379838868975639, + -0.0027078522834926844, + 0.00394521513953805, + -0.023656945675611496, + 0.015321781858801842, + 0.018205374479293823, + -0.006190401501953602, + 0.012230167165398598, + -0.022021474316716194, + -0.004877720959484577, + 0.008385376073420048, + -0.015981707721948624, + 0.005153886042535305, + 0.010386675596237183, + 0.00884445570409298, + 0.007104974240064621, + 0.005968034733086824, + 0.021318508312106133, + -0.03150433674454689, + 0.010609042830765247, + -0.008715339004993439, + -0.013069421984255314, + 0.018506646156311035, + 0.014188428409397602, + 0.003862724406644702, + -0.00488848052918911, + 0.012961825355887413, + 0.021218085661530495, + -0.003862724406644702, + -0.020013000816106796, + -0.0051610590890049934, + -0.02648315392434597, + 0.013119634240865707, + 0.018291452899575233, + 0.0005509851616807282, + -0.001373652252368629, + -0.008830109611153603, + -0.018234068527817726, + -0.005648830905556679, + -0.023929523304104805, + -0.01572347618639469, + -0.006165295373648405, + 0.037214141339063644, + 0.009647844359278679, + 0.012201474979519844, + -0.01910918764770031, + 0.02097419835627079, + 0.019209612160921097, + 0.014073658734560013, + 0.0023474032059311867, + 0.006158122327178717, + -0.010071058757603168, + 0.05199076607823372, + 0.014417968690395355, + 0.015565667301416397, + -0.008614915423095226, + -0.0263109989464283, + 0.018104951828718185, + 0.01421712152659893, + 0.03311111778020859, + 0.02639707736670971, + -0.015479589812457561, + -0.016153862699866295, + -0.0006572370184585452, + 0.013227230869233608, + 0.029266323894262314, + -0.010322118178009987, + 0.007334514055401087, + 0.02506287768483162, + 0.021705856546759605, + 0.014174082316458225, + -0.02194974385201931, + -0.010200174525380135, + -0.014188428409397602, + 0.010609042830765247, + -0.013298962265253067, + -0.020472081378102303, + -0.007284302264451981, + -0.004572863224893808, + -0.020945506170392036, + 0.03698460012674332, + 0.0022451861295849085, + 0.03213557228446007, + -0.02870682068169117, + 0.009181591682136059, + 0.02813297137618065, + -0.004074331372976303, + 0.030414024367928505, + -0.016828136518597603, + -0.0008267019293271005, + -0.020271234214305878, + -0.0013628925662487745, + -0.0038447915576398373, + -0.026985272765159607, + 0.018463607877492905, + -0.017803680151700974, + -0.005881957244127989, + 0.019582614302635193, + 0.0038053395692259073, + -0.006861087866127491, + -0.0032171437051147223, + -0.015852592885494232, + -0.018449261784553528, + 0.008112797513604164, + -0.03839053213596344, + 0.02768823876976967, + -0.014625988900661469, + 0.025751495733857155, + -0.006305171176791191, + -0.020013000816106796, + -0.0034520633053034544, + -0.0035686264745891094, + 0.005684696603566408, + 0.02413037233054638, + -0.0007706619217060506, + -0.016455134376883507, + -0.013822600245475769, + 0.01279684342443943, + -0.011469816789031029, + -0.006021833047270775, + -0.006871847901493311, + 0.018865302205085754, + 0.00748873595148325, + 0.00981999933719635, + 0.00418910151347518, + 0.0010580350644886494, + -0.014525565318763256, + 0.002437066985294223, + 0.03684113919734955, + -0.007090627681463957, + 0.029782788828015327, + -0.043038710951805115, + -0.031791262328624725, + -0.006147362757474184, + -0.00652036489918828, + 0.03554997593164444, + -0.025120262056589127, + -0.02514895424246788, + 0.005060635041445494, + -0.0035668332129716873, + 0.010365156456828117, + -0.03856268525123596, + -0.0021842147689312696, + -0.002958911471068859, + 0.011871511116623878, + 0.004002600442618132, + -0.023126134648919106, + -0.0024281006772071123, + -0.02239447645843029, + 0.0018739772494882345, + 0.026224922388792038, + -0.018463607877492905, + -0.01644078828394413, + 0.021002892404794693, + 0.006778597366064787, + -0.0018560445168986917, + 0.0011459056986495852, + -0.004522651433944702, + -0.020429041236639023, + 0.016584251075983047, + -0.0036690502893179655, + -0.0030772679019719362, + -0.018807917833328247, + -0.021791934967041016, + -0.02821904979646206, + -0.02243751473724842, + 0.0218636654317379, + -0.017028983682394028, + 0.0009298155200667679, + -0.00022942772193346173, + 0.031533028930425644, + 0.00993476901203394, + -0.005867611151188612, + 0.00866512767970562, + 0.002955324947834015, + 0.04151801019906998, + 0.01200062781572342, + 0.01626863330602646, + -0.015235704369843006, + 0.00381609913893044, + 0.006211920641362667, + 0.023441752418875694, + 0.015106587670743465, + 0.02523503080010414, + -0.023671291768550873, + 0.007277128752321005, + 0.0028943533543497324, + -0.0224805548787117, + 0.02839120477437973, + 0.03953823074698448, + -0.014281678944826126, + -0.02355652116239071, + -0.02724350430071354, + 0.009095514193177223, + 0.01955392211675644, + 0.009389612823724747, + 0.005422877613455057, + 0.017028983682394028, + -0.032192956656217575, + 0.0015556701691821218, + 0.027530429884791374, + -0.007284302264451981, + 0.013076595030725002, + 0.005835331976413727, + 0.02203582040965557, + -0.03491874039173126, + 0.0010132030583918095, + 0.01586693897843361, + 0.005204097833484411, + -0.013822600245475769, + -0.011233104392886162, + -0.03374234959483147, + 0.01621124893426895, + 0.011448297649621964, + 0.0034538565669208765, + -0.019668690860271454, + 0.022867903113365173, + 0.006190401501953602, + -0.007481562905013561, + -0.047084350138902664, + -0.03342673182487488, + 0.00684315524995327, + -0.005742081440985203, + 0.0009907870553433895, + -0.0012687454000115395, + 0.0003469996154308319, + 0.006115083582699299, + -0.015207012183964252, + 0.033799733966588974, + -0.010408195666968822, + 0.03773060441017151, + -0.0038340319879353046, + -0.018721839413046837, + -0.008550357073545456, + 0.0007738001877442002, + 0.0265261922031641, + 0.039308689534664154, + 0.031217413023114204, + -0.021705856546759605, + 0.0014507633168250322, + 0.010738158598542213, + 0.0249194148927927, + 0.011634798720479012, + -0.011986281722784042, + -0.00906682200729847, + 0.025177646428346634, + 0.012517091818153858, + 0.013270270079374313, + 0.013428078033030033, + -0.02398690953850746, + 0.0218636654317379, + -0.005193337798118591, + 0.019180919975042343, + -0.024015601724386215, + 0.0016462306957691908, + -0.013901503756642342, + 0.02963932603597641, + -0.020730312913656235, + 0.0058138128370046616, + 0.028362510725855827, + -0.0034036447759717703, + -0.005924995988607407, + 0.03750106319785118, + 0.006036179605871439, + -0.029696712270379066, + 0.006800116505473852, + 0.0005998520646244287, + -0.010551657527685165, + -0.00993476901203394, + -0.016828136518597603, + -0.02226535975933075, + -0.009052475914359093, + -0.015163972973823547, + 0.0017663805047050118, + -0.024503374472260475, + 0.023843446746468544, + 0.018234068527817726, + 0.0083064716309309, + 0.010035193525254726, + 0.00450113182887435, + 0.03181995451450348, + -0.009741094894707203, + 0.014776624739170074, + 0.0022649122402071953, + 0.005236376542598009, + -0.0056739370338618755, + 0.014195602387189865, + -0.0078115263022482395, + -0.006832395680248737, + -0.00790477730333805, + 0.016455134376883507, + 0.002862074412405491, + -0.005860438104718924, + -0.019209612160921097, + -0.018363183364272118, + 0.018047567456960678, + -0.007029656320810318, + -0.0001518683711765334, + -0.004210620652884245, + -0.00852883793413639, + -0.004038465674966574, + -0.010035193525254726, + 0.001160251908004284, + 0.0041747549548745155, + -0.0034305439330637455, + -0.014073658734560013, + -0.0031292729545384645, + -0.01326309610158205, + 0.0032261102460324764, + -0.004042052198201418, + -0.012567304074764252, + -0.005214857403188944, + -0.0025034183636307716, + -0.011304834857583046, + -0.0002916321100201458, + 0.013872811570763588, + -0.02137589454650879, + -0.01502051018178463, + 0.012380803003907204, + 0.01849230006337166, + 0.01421712152659893, + -0.011333527974784374, + -0.013234403915703297, + 0.044588107615709305, + -0.0030109165236353874, + -0.012746632099151611, + 0.016498172655701637, + 0.0009477483108639717, + 0.005960861686617136, + -0.0034789626952260733, + -0.00293739209882915, + -0.007660890929400921, + 0.0011306628584861755, + 0.003640357870608568, + -0.023570867255330086, + 0.009647844359278679, + 0.024775952100753784, + 0.0018452848307788372, + 0.005530474707484245, + 0.009755441918969154, + 0.03093048743903637, + 0.004999663680791855, + -0.004820335656404495, + -0.01204366609454155, + 0.007481562905013561, + 0.017000291496515274, + 0.03118872083723545, + 0.020773351192474365, + -0.017344601452350616, + 0.018248414620757103, + -0.01714375428855419, + -0.0315617211163044, + -0.028276434168219566, + -0.011584586463868618, + -0.004522651433944702, + -0.006021833047270775, + -0.008930533193051815, + 0.027846047654747963, + 0.006893367040902376, + -0.005849678535014391, + 0.011857165023684502, + -0.016340363770723343, + -0.00652036489918828, + 0.007639371324330568, + 0.0013566160341724753, + -0.0010849342215806246, + -0.018420569598674774, + -0.014131044037640095, + -0.009841518476605415, + -0.01667032763361931, + 0.013313308358192444, + -0.01786106638610363, + 0.016053440049290657, + 0.014891394414007664, + -0.06254959851503372, + -0.03004102036356926, + 0.018061913549900055, + -0.001302817719988525, + 0.02425948716700077, + -0.015608706511557102, + 0.00582098588347435, + 0.0013001278275623918, + -0.019037457183003426, + -0.010802716948091984, + 0.0019223957788199186, + -0.003652910701930523, + 0.0018937033601105213, + 0.026153190061450005, + -0.027128735557198524, + 0.003794579766690731, + -0.0356360524892807, + -0.009411131963133812, + -0.014453833922743797, + -0.004540584050118923, + -0.0053834253922104836, + 0.010723812505602837, + 0.0006092667463235557, + 0.03546389937400818, + -0.0026684000622481108, + -0.0064307008869946, + -0.0023850619327276945, + -0.008614915423095226, + -0.015938669443130493, + 0.009927595965564251, + 0.00044652665383182466, + -0.022738786414265633, + -0.0012149469694122672, + -0.00895205233246088, + 0.008471453562378883, + 0.03466051071882248, + 0.01245970744639635, + 0.0009396785753779113, + -0.01764587126672268, + -0.0055053685791790485, + 0.0031005805358290672, + -0.003999013919383287, + -0.00824191328138113, + 0.02444598823785782, + -0.009590459987521172, + -0.024417296051979065, + 0.014030620455741882, + 0.02040034905076027, + 0.027257850393652916, + -0.002286431612446904, + -0.0030342291574925184, + -0.008901840075850487, + 0.025091569870710373, + -0.026296652853488922, + 0.034144043922424316, + -0.03342673182487488, + 0.01612517051398754, + -0.03457443416118622, + -0.019338728860020638, + -0.010730985552072525, + -0.005684696603566408, + -0.014080831781029701, + 0.009906076826155186, + -0.016297325491905212, + 0.021476317197084427, + -0.020830737426877022, + 0.0208450835198164, + 0.038275763392448425, + -0.01245970744639635, + -0.017445024102926254, + 0.03345542401075363, + -0.004085090942680836, + -0.00442222785204649, + 0.022294053807854652, + -0.007603506091982126, + 0.006825222633779049, + -0.024015601724386215, + 0.012129743583500385, + 0.002297191182151437, + 0.0005384322139434516, + -0.01563739962875843, + 0.008428414352238178, + 0.004275178536772728, + 0.007969334721565247, + 0.03666898235678673, + -0.018836610019207, + -0.012789670377969742, + -0.004676873330026865, + -0.019439151510596275, + -0.00795498862862587, + -0.013062248937785625, + -6.97697905707173e-5, + -0.0024065813049674034, + 0.004938692320138216, + -0.009282015264034271, + -0.009253323078155518, + -0.019439151510596275, + -0.0051969243213534355, + 0.025837574154138565, + -0.0307870265096426, + -0.012165609747171402, + 0.013944542966783047, + 0.03529174253344536, + -0.020787697285413742, + 0.03270941972732544, + 0.008672300726175308, + -0.02324090525507927, + 0.014625988900661469, + 0.00763219827786088, + 0.021978436037898064, + 0.0042321402579545975, + 0.005971621256321669, + -0.008249086327850819, + -0.03695590794086456, + -0.01870749332010746, + -0.016297325491905212, + 0.018650108948349953, + -0.010200174525380135, + 0.005135952960699797, + -0.026196230202913284, + -0.02137589454650879, + -0.0007531774463132024, + 0.017430678009986877, + -0.00923897698521614, + 0.010408195666968822, + 0.0307870265096426, + 0.006394835188984871, + 0.002460379619151354, + -0.01773194968700409, + 0.007018896751105785, + -0.0031113403383642435, + -0.01344242412596941, + -0.003663670504465699, + -0.013650445267558098, + 0.0002371612354181707, + -0.0028495213482528925, + -0.021519355475902557, + -0.011699357070028782, + 0.007237676996737719, + -0.015407859347760677, + -0.0018793571507558227, + -0.01192889641970396, + -0.008500145748257637, + -0.002745511243119836, + -0.008342336863279343, + 0.008492972701787949, + -0.005702629219740629, + -0.0036582904867827892, + 0.0009567147353664041, + 0.010895967483520508, + -0.0196399986743927, + -0.006269305944442749, + -0.0028262087143957615, + 0.008055412210524082, + 0.009059648960828781, + -0.01393019687384367, + -0.02048642747104168, + 0.0031364462338387966, + 0.00948286335915327, + -0.010271905921399593, + -0.01976911537349224, + 0.02453206665813923, + -0.01253143884241581, + 0.06524668633937836, + 0.004856201354414225, + -0.005716975778341293, + -0.00777566060423851, + 0.013593059964478016, + -0.006283652037382126, + 0.007660890929400921, + -0.0018793571507558227, + 0.009504382498562336, + 0.001206877175718546, + 0.009525901637971401, + -0.005236376542598009, + 0.005164645612239838, + 0.006258545909076929, + -0.029754096642136574, + -0.0033408801537007093, + 0.02283921092748642, + 0.03856268525123596, + 0.008026720024645329, + 0.024202102795243263, + 0.013413731940090656, + -0.009296362288296223, + -0.023040058091282845, + 0.006979444529861212, + -0.011340701021254063, + 0.019223958253860474, + 0.02684180997312069, + 0.017559794709086418, + 0.04065723717212677, + 0.010006500408053398, + -0.011476989835500717, + 0.006703279446810484, + -0.006922059692442417, + 0.008406895212829113, + 0.004085090942680836, + 0.008536010980606079, + 0.006491672247648239, + 0.008794243447482586, + -0.0017977629322558641, + 0.011362220160663128, + 0.010845755226910114, + -0.00600031390786171, + 0.027630852535367012, + 0.027487391605973244, + -0.010702293366193771, + 0.010881621390581131, + 0.011763914488255978, + -0.004802403040230274, + 0.0037874067202210426, + 0.006821636110544205, + -0.004077917896211147, + -0.016067786142230034, + 0.006710452493280172, + 0.004027706105262041, + -0.008464280515909195, + -0.01250991877168417, + -0.011663490906357765, + 0.0014525565784424543, + -0.012158436700701714, + 0.0053188675083220005, + -0.00596444820985198, + 0.002047925489023328, + 0.00417834147810936, + -0.02266705594956875, + -0.019338728860020638, + -0.014310372062027454, + 0.0038914168253540993, + -0.018678801134228706, + -0.013872811570763588, + 0.002722198609262705, + 0.0009477483108639717, + 0.013901503756642342, + -0.006800116505473852, + -0.048145972192287445, + -0.009274842217564583, + 0.01293313317000866, + 0.011699357070028782, + 0.006549057550728321, + 0.004336150363087654, + 0.02075900509953499, + 0.011455470696091652, + 0.0044831992127001286, + -0.0016874761786311865, + -0.008442760445177555, + 0.003991840407252312, + 0.0018488713540136814, + 0.008629261516034603, + -0.018650108948349953, + 0.013004864566028118, + -0.022681402042508125, + -0.006724798586219549, + 0.006566990166902542, + 0.009475690312683582, + -0.0020371656864881516, + 0.010035193525254726, + 0.001561049954034388, + -0.012445361353456974, + -0.007148012984544039, + 0.01612517051398754, + -0.01826276071369648, + -0.006297998130321503, + 0.018104951828718185, + -0.013958889059722424, + 0.0003236869815737009, + 0.0053834253922104836, + 0.00901661068201065, + 0.012825536541640759, + 0.006588509771972895, + -0.018764877691864967, + -0.0051789917051792145, + -0.002024612855166197, + -0.0011674250708892941, + -0.005193337798118591, + 0.014353410340845585, + -0.037615835666656494, + 0.004795229993760586, + 0.002026406116783619, + 0.019008764997124672, + -0.007732621859759092, + -0.007897603325545788, + -0.011333527974784374, + 0.00038846919778734446, + 0.001095693907700479, + -0.005501782055944204, + 0.03133218362927437, + -0.0036206317599862814, + -0.004163995385169983, + -0.011347874067723751, + -0.006290825083851814, + 0.0053941854275763035, + 0.006133016664534807, + 0.011713703162968159, + 0.017000291496515274, + -0.013449597172439098, + 0.0003812960931099951, + 0.0045118918642401695, + -0.0045585171319544315, + 0.006208334118127823, + 0.011261796578764915, + -0.021834973245859146, + 0.025206338614225388, + 0.002727578394114971, + 0.006724798586219549, + 0.015450897626578808, + 0.005092914216220379, + 0.019711731001734734, + -0.02029992640018463, + -0.02029992640018463, + 0.0186214167624712, + -0.0017995561938732862, + 0.038419224321842194, + -0.03431620076298714, + -0.0006944475462660193, + -0.012811190448701382, + -0.003934455569833517, + 0.009138553403317928, + -0.021203739568591118, + 0.02243751473724842, + 0.001861424301750958, + 0.013700656592845917, + 0.02199278213083744, + -0.012036493048071861, + 0.011713703162968159, + -0.0062011610716581345, + -0.004117370117455721, + -0.009102687239646912, + 0.03331196308135986, + 0.019625652581453323, + 0.004805989563465118, + -0.012431014329195023, + -0.01233059074729681, + -0.0016139517538249493, + 0.010157136246562004, + -0.02674138732254505, + -0.024230794981122017, + -0.022294053807854652, + -0.002146555809304118, + -0.0011109367478638887, + -0.009626325219869614, + 0.020687274634838104, + -0.008256259374320507, + -0.0020586850587278605, + 0.0050570485182106495, + -0.015594360418617725, + -0.024144718423485756, + -0.010365156456828117, + 0.01326309610158205, + -0.0065741632133722305, + -0.00977696105837822, + 0.0025518368929624557, + -0.03012709878385067, + -0.0015852592187002301, + -6.450202636187896e-5, + -0.014403622597455978, + -0.014676201157271862, + -0.005555580370128155, + 0.01077402476221323, + 0.02754477597773075, + 0.0003232386661693454, + -0.012897267937660217, + -0.01393019687384367, + 0.004350496456027031, + 0.012280379422008991, + -0.000733003078494221, + -0.01923830434679985, + -0.01555132120847702, + -0.0014068279415369034, + -0.007424178067594767, + -0.0040456391870975494, + 0.013729349710047245, + -0.014532738365232944, + -0.043440405279397964, + 0.0083064716309309, + -0.007467216812074184, + -0.02124677784740925, + 0.010472753085196018, + -0.00032391113927587867, + 0.02283921092748642, + -0.012122570537030697, + -0.0032548026647418737, + -0.005501782055944204, + 0.005404944997280836, + 0.02315482683479786, + -0.011362220160663128, + 3.9087892218958586e-5, + 0.005770774092525244, + 0.01813364401459694, + 0.025665419176220894, + 0.007675237022340298, + 0.003977494314312935, + 0.028807245194911957, + -0.0029409786220639944, + -0.012136916629970074, + 0.006455807015299797, + -0.004684046376496553, + 0.030155790969729424, + 0.007682410068809986, + -0.019797807559370995, + -0.005734908394515514, + -0.0067714243195950985, + -0.017043329775333405, + -0.017746295779943466, + -0.0093107083812356, + -0.012194301933050156, + 0.00540853152051568, + 0.005512541625648737, + 0.003948801662772894, + -0.014188428409397602, + -0.004508305341005325, + -2.944901461887639e-5, + -0.019482189789414406, + -0.018076259642839432, + -0.012624689377844334, + 0.013478290289640427, + 0.013499809429049492, + -0.0015493936371058226, + -0.007338100578635931, + 0.010322118178009987, + -0.010917486622929573, + -0.012502745725214481, + -0.008399722166359425, + 0.012940306216478348, + -0.014425141736865044, + -0.004397121723741293, + -0.0007267266046255827, + 0.013184192590415478, + -0.02563672699034214, + 0.011950415559113026, + 0.025737149640917778, + 0.003981080837547779, + 0.009676537476480007, + -0.004006186965852976, + 0.014920086599886417, + 0.014848356135189533, + -0.014561431482434273, + -0.0053654927760362625, + 0.008916186168789864, + -0.026024075224995613, + 0.006549057550728321, + 0.0029015266336500645, + -0.01150568202137947, + -0.008327990770339966, + 0.0007791800308041275, + -0.004160408861935139, + 0.00702248327434063, + -0.026425769552588463, + 0.01794714294373989, + 0.0052901748567819595, + -0.0017125820741057396, + 0.00544439721852541, + 0.010723812505602837, + -0.0034108180552721024, + 0.007868911139667034, + -0.007352446671575308, + -0.00966219138354063, + 0.00526506919413805, + 0.0017717602895572782, + 0.01293313317000866, + 0.015709130093455315, + 0.005433637648820877, + 0.00964067131280899, + -0.00013942750229034573, + -0.024761606007814407, + -0.005612965207546949, + 0.005089327692985535, + 0.021662818267941475, + 0.029926251620054245, + 0.0024567930959165096, + -0.024632489308714867, + 0.007402658462524414, + 0.008916186168789864, + -0.005957275163382292, + 0.023355673998594284, + 0.009748267941176891, + -0.005214857403188944, + 0.004285938572138548, + 0.006875434424728155, + 0.012610342353582382, + -0.02217928320169449, + 0.013822600245475769, + 0.0007231400231830776, + 0.00438636215403676, + -0.019969962537288666, + 0.016412096098065376, + -0.001072381273843348, + 0.008894667029380798, + 0.017215484753251076, + 0.00015007509500719607, + -0.004508305341005325, + -0.03448835387825966, + 0.023025711998343468, + 0.025077223777770996, + -0.02070162072777748, + -0.0019421218894422054, + -0.020099079236388206, + 0.019840845838189125, + -0.02301136404275894, + 0.0037300216499716043, + -0.01368631049990654, + 6.158794712973759e-5, + -0.01204366609454155, + 0.007682410068809986, + -0.011814126744866371, + -0.021705856546759605, + -0.008758378215134144, + 0.012495572678744793, + 0.004838268738240004, + -0.007990853860974312, + 0.016053440049290657, + 0.016498172655701637, + 0.0007930779247544706, + -0.011986281722784042, + -0.0022254600189626217, + -0.0016085718525573611, + -0.0027401314582675695, + -0.0012221201322972775, + -0.001560153323225677, + 0.048404205590486526, + 0.005125193390995264, + 0.009224630892276764, + -0.011692183092236519, + 0.01522135827690363, + -0.0017995561938732862, + 0.007474389858543873, + 0.011319180950522423, + 0.015895631164312363, + -6.915334961377084e-5, + 0.014016274362802505, + -0.024675527587532997, + 0.0040635718032717705, + 0.007976507768034935, + -0.021275470033288002, + -0.011476989835500717, + -0.02608145959675312, + -0.02887897565960884, + 0.010881621390581131, + -0.00048508215695619583, + 0.01773194968700409, + -0.009339400567114353, + 0.013012037612497807, + 0.03167649358510971, + -2.2009706299286336e-5, + -0.004752191249281168, + -0.008543184027075768, + 0.008184528909623623, + 0.021576741710305214, + 0.02808993309736252, + 0.02093116007745266, + 0.01794714294373989, + 0.0022541526705026627, + -0.02159108780324459, + 0.003487929003313184, + 0.009296362288296223, + -0.010401022620499134, + -0.0010167895816266537, + 0.000827150244731456, + -0.013535674661397934, + 0.02315482683479786, + 0.005745667964220047, + -0.021878011524677277, + -0.011347874067723751, + -0.010494273155927658, + 0.007000963669270277, + 0.00959763303399086, + 0.005437224172055721, + -0.02484768256545067, + -0.007990853860974312, + 0.010386675596237183, + 0.00901661068201065, + -0.01684248261153698, + 0.0016265047015622258, + -0.00441146781668067, + -0.012832709588110447, + -0.008557531051337719, + 0.012868574820458889, + 0.007291475310921669, + 0.014762278646230698, + -0.012158436700701714, + -0.006251372862607241, + -0.008119970560073853, + 0.0078904302790761, + 0.0015762927941977978, + 0.012560131028294563, + -0.011663490906357765, + 0.0005169128417037427, + -0.015666091814637184, + 0.026411423459649086, + 0.006003900431096554, + -0.007682410068809986, + -0.00027683755615726113, + -0.008055412210524082, + -0.0038053395692259073, + -0.02576584182679653, + -0.009719575755298138, + -0.018607070669531822, + -0.010501446202397346, + 0.025120262056589127, + -0.01157741341739893, + 0.02048642747104168, + -0.008270605467259884, + -0.016139516606926918, + -0.01688552089035511, + -0.002770617138594389, + 0.0001732756500132382, + 0.008536010980606079, + 0.014790970832109451, + 0.004160408861935139, + 0.012438188306987286, + -0.0017852098681032658, + -0.009676537476480007, + -0.00948286335915327, + -0.007897603325545788, + -0.01473358552902937, + 0.0004577346262522042, + -0.02760216034948826, + -0.0012283965479582548, + 0.011319180950522423, + -0.007919123396277428, + 0.015178319066762924, + -0.017574140802025795, + 0.010917486622929573, + -0.011147026903927326, + -0.010121270082890987, + 0.02720046602189541, + -0.011433951556682587, + 0.02311178855597973, + 0.031303491443395615, + 0.012323417700827122, + 0.006814462598413229, + 0.01608213223516941, + 0.003744367975741625, + 0.018018873408436775, + 0.015077895484864712, + 0.004791643470525742, + 0.015049203298985958, + 0.014059312641620636, + 0.010336464270949364, + 0.015379166230559349, + -0.003025262849405408, + -0.008084104396402836, + -0.0011387326521798968, + 0.01857837662100792, + -0.006749904714524746, + 0.004192688036710024, + 0.02404429391026497, + -0.02141893282532692, + -0.0011459056986495852, + 0.0026594337541610003, + 0.008392549119889736, + 0.004633834585547447, + 0.025478918105363846, + 0.004884894005954266, + 0.012983344495296478, + 0.0035327610094100237, + -0.0035668332129716873, + 0.006244199816137552, + 0.0016829930245876312, + 0.030241869390010834, + 0.007079868111759424, + -0.012387976050376892, + 0.022939633578062057, + -0.014073658734560013, + -0.006635135039687157, + 0.025177646428346634, + 0.01847795397043228, + 0.03345542401075363, + -0.010293425060808659, + 0.02390083111822605, + 0.008880320936441422, + 0.007926296442747116, + -0.004985317587852478, + 0.030672255903482437, + -0.015422205440700054, + 0.0210602767765522, + 0.01502051018178463, + 0.022380130365490913, + 0.011455470696091652, + 0.013844119384884834, + 0.003489722264930606, + 0.020859429612755775, + -0.010824236087501049, + -0.019137881696224213, + -0.0042500728741288185, + 0.021677164360880852, + 0.0008280468755401671, + -0.01915222778916359, + -0.009970635175704956, + -0.0004552688915282488, + -0.005024769809097052, + -0.02457510493695736, + -0.020242540165781975, + 0.005089327692985535, + 0.012409495189785957, + 0.01250991877168417, + 0.0078115263022482395, + 0.016096478328108788, + 0.026669654995203018, + 0.013055075891315937, + 0.034201428294181824, + -0.01168501004576683, + 0.014145390130579472, + 0.02892201393842697, + 0.017760641872882843, + -0.0034843424800783396, + -0.0014104144647717476, + 0.005541234277188778, + 0.0034269574098289013, + 0.015651745721697807, + -0.0019887471571564674, + 0.00646656658500433, + -0.020873775705695152, + 0.0028011028189212084, + 0.014561431482434273, + 0.010802716948091984, + 0.01502051018178463, + -0.020285580307245255, + -0.0031149268615990877, + 0.021203739568591118, + 0.016985945403575897, + 0.008098451420664787, + -0.023585215210914612, + -0.007818699814379215, + 0.003213557181879878, + 0.0007957678753882647, + -0.013535674661397934, + -0.004540584050118923, + 0.005982380826026201, + 0.016584251075983047, + -0.002585909329354763, + 0.008385376073420048, + -0.016742059960961342, + -0.009138553403317928, + 0.00015433413500431925, + 0.012402322143316269, + -0.004135302733629942, + -0.0029051131568849087, + -0.0293667484074831, + -0.01826276071369648, + 0.016455134376883507, + -0.009977808222174644, + 0.005089327692985535, + 0.0003209970600437373, + -0.029165901243686676, + 0.0043720160610973835, + -0.010537311434745789, + 0.018377529457211494, + 0.03666898235678673, + -0.0045298244804143906, + 0.019539576023817062, + -0.014238640666007996, + 0.014518392272293568, + 0.001136939274147153, + -0.012696419842541218, + -0.003421577624976635, + 0.0138656385242939, + -0.0186214167624712, + 0.005100087262690067, + 0.007969334721565247, + -0.030586177483201027, + -0.01906614936888218, + -0.020873775705695152, + 0.017932796850800514, + -0.015092241577804089, + 0.006301584653556347, + 0.00048284055083058774, + -0.0025805295445024967, + 0.005114433821290731, + -0.007474389858543873, + -0.00012216718459967524, + -0.02123243175446987, + -0.00769675662741065, + 0.006703279446810484, + -0.008729685097932816, + -0.020672928541898727, + 0.008787070401012897, + -0.003330120351165533, + 0.027257850393652916, + -0.01379390712827444, + -0.008033893071115017, + -0.014224294573068619, + -0.020070387050509453, + 0.02506287768483162, + 0.002166281919926405, + 0.031045258045196533, + -0.01817668229341507, + -0.030586177483201027, + -0.005681110080331564, + -0.005193337798118591, + 0.016871174797415733, + 0.0010643114801496267, + -0.001933155464939773, + 0.014095177873969078, + -0.01671336591243744, + -0.021275470033288002, + 0.023929523304104805, + 0.01024321373552084, + -0.025177646428346634, + -0.004293111618608236, + 0.008758378215134144, + -0.022896595299243927, + 0.0012364663416519761, + 0.004547757096588612, + -0.0041568223387002945, + -0.005763601046055555, + 0.005322454031556845, + -0.006563403643667698, + 0.023915177211165428, + 0.017129408195614815, + 0.005343973636627197, + 0.00016128309653140604, + -0.011390912346541882, + 0.023140480741858482, + -0.016426442191004753, + 0.02457510493695736, + -0.01346394419670105, + -0.031246105208992958, + 0.016282979398965836, + -0.02359956130385399, + 0.05638071149587631, + -0.0018901168368756771, + -0.029180247336626053, + -0.013298962265253067, + -0.020500773563981056, + -0.0005545717431232333, + -0.0008414965122938156, + -0.005035529378801584, + 0.016598597168922424, + 0.0013772387756034732, + -0.01111116074025631, + -0.003495102049782872, + -0.009038129821419716, + 0.0036905696615576744, + -0.011534375138580799, + 0.020314272493124008, + 0.008579050190746784, + -0.015278742648661137, + -0.006097150966525078, + -0.007962161675095558, + 0.018191028386354446, + -0.03862006962299347, + -0.012029320001602173, + 0.008206048049032688, + -0.005308107938617468, + 0.0036654637660831213, + -1.095581774279708e-5, + 0.01671336591243744, + 0.010228867642581463, + -0.008916186168789864, + -0.012244513258337975, + 0.011570240370929241, + -0.004031292628496885, + 0.010852928273379803, + -0.017846720293164253, + -0.028678128495812416, + 0.007352446671575308, + -0.00899509061127901, + -0.024517720565199852, + -0.018549684435129166, + -0.015881285071372986, + -0.003423370886594057, + -0.014009101316332817, + 0.0022541526705026627, + -0.007797180209308863, + -0.014496873132884502, + -0.005135952960699797, + -0.015235704369843006, + 0.014661855064332485, + 0.013241576962172985, + -0.009604806080460548, + -0.006215507164597511, + -0.0028280019760131836, + 0.02612449787557125, + 0.01688552089035511, + -0.01879357174038887, + -0.005889130290597677, + -0.022609669715166092, + 0.00034834459074772894, + 0.004024119582027197, + -0.015293088741600513, + 0.005709802731871605, + -0.006193988025188446, + -0.0016094684833660722, + -0.0074385241605341434, + 0.005311694461852312, + 0.003444890258833766, + -0.019123533740639687, + -0.0024783124681562185, + 0.021677164360880852, + -0.007302234880626202, + 0.016340363770723343, + 0.016985945403575897, + -0.007445697207003832, + 0.007054762449115515, + 0.0076895831152796745, + -0.026870502158999443, + -0.0026486741844564676, + 0.015766514465212822, + 0.005985967814922333, + -0.019783461466431618, + 0.003801753045991063, + -0.0056452443823218346, + -0.02608145959675312, + -0.01830579899251461, + 0.009827172383666039, + 0.0075030820444226265, + -0.014848356135189533, + 0.004207034129649401, + 0.0016659568063914776, + -0.024646835401654243, + 0.023757370188832283, + 0.013872811570763588, + -0.01152720209211111, + -0.0013915849849581718, + 0.009368092752993107, + -0.004024119582027197, + 0.003744367975741625, + 0.008901840075850487, + 0.0016578870126977563, + -0.012452534399926662, + -0.0027759969234466553, + 0.025880612432956696, + -0.0003564143262337893, + -0.016957253217697144, + 0.008980744518339634, + -0.00011846853885799646, + 0.03070094808936119, + 0.003927282523363829, + -0.00600031390786171, + -0.01317701954394579, + 0.01046558003872633, + 0.007090627681463957, + -0.017172446474432945, + -0.002768823876976967, + -0.027128735557198524, + -0.014489700086414814, + -0.02444598823785782, + -0.00022057340538594872, + -0.002465759636834264, + 0.01017865538597107, + 0.01502051018178463, + 0.005885543767362833, + -0.0055340612307190895, + -0.023613907396793365, + -0.0021752482280135155, + -0.0036726368125528097, + -0.01271076686680317, + 0.024718567728996277, + 0.014066485688090324, + -0.007087041158229113, + 0.02239447645843029, + 0.02750173769891262, + 0.0016973392339423299, + -0.015006164088845253, + -0.005462329834699631, + 0.015881285071372986, + 0.007054762449115515, + 0.017918450757861137, + -0.012007800862193108, + -0.0013368900399655104, + -0.00935374666005373, + 0.005734908394515514, + 0.007169532123953104, + 0.001117213279940188, + -0.008930533193051815, + -0.007061935495585203, + 0.029295016080141068, + -0.00196005473844707, + 0.017531102523207664, + 0.003096994012594223, + -0.00021530564117711037, + -0.006036179605871439, + -0.025521956384181976, + 0.012101051397621632, + 0.01760283298790455, + -0.0015251843724399805, + -0.020945506170392036, + -0.0023133307695388794, + 0.00479881651699543, + -0.006355383433401585, + 0.021849319338798523, + -0.013478290289640427, + 0.0017601039726287127, + 0.018162336200475693, + -0.01870749332010746, + -0.0243025254458189, + -0.003373159095644951, + -0.003916522953659296, + -0.017660219222307205, + -0.016512518748641014, + -0.03136087581515312, + -0.016153862699866295, + 0.015407859347760677, + 0.007538947742432356, + 0.01075250469148159, + 0.014991817995905876, + 0.004892067052423954, + -0.007330927532166243, + -0.0014534532092511654, + 0.02576584182679653, + -0.006674586795270443, + -0.005921409465372562, + -0.02275313250720501, + 0.017789334058761597, + 0.00924615003168583, + 0.017028983682394028, + -0.00021754724730271846, + -0.00806258525699377, + 0.006721212062984705, + -0.01415256317704916, + -0.015752168372273445, + -0.0009325054124929011, + 0.0008343233494088054, + -0.003963148221373558, + 0.01986953802406788, + -0.012488399632275105, + 0.02928066998720169, + 0.0033910919446498156, + 0.0038304454647004604, + -0.008873147889971733, + -0.013915850780904293, + 0.021476317197084427, + 0.026497500017285347, + -0.006735558621585369, + -0.02226535975933075, + 0.026339691132307053, + 0.010056712664663792, + 0.020371656864881516, + -0.0149774719029665, + -0.011957588605582714, + -0.0016731299692764878, + -0.017028983682394028, + 0.00964067131280899, + -0.007126493379473686, + 0.007431351114064455, + -0.00725560961291194, + -0.0049458653666079044, + 0.014389276504516602, + -0.0005693663260899484, + -0.0019223957788199186, + 0.016985945403575897, + -0.005042702425271273, + 0.0010140996892005205, + -0.008414068259298801, + 0.01426015980541706, + -0.01768891140818596, + -0.010322118178009987, + 0.016770752146840096, + -0.010056712664663792, + 0.007567640393972397, + 0.025608034804463387, + 0.011728049255907536, + 0.009375265799462795, + 0.03451704606413841, + -0.0019062563078477979, + 0.0030414024367928505, + -0.017975835129618645, + 0.0052112708799541, + 0.005361906252801418, + 0.0032727355137467384, + 0.00619757454842329, + 0.012660554610192776, + 0.018549684435129166, + -0.0038519648369401693, + -0.017229830846190453, + -0.025923650711774826, + -0.0026038421783596277, + -0.04691219702363014, + -0.007248436566442251, + 0.00046625270624645054, + 0.019094841554760933, + -0.010401022620499134, + 0.005989554338157177, + 0.014891394414007664, + -0.008536010980606079, + 0.0011970142368227243, + 0.012631862424314022, + 0.015192665159702301, + -0.009604806080460548, + -0.005770774092525244, + -0.008643608540296555, + -0.013872811570763588, + 0.03652552142739296, + 0.007008137181401253, + 0.011276142671704292, + 0.018119297921657562, + -0.009977808222174644, + -0.019740423187613487, + -0.007567640393972397, + -0.009317881427705288, + -0.01928134262561798, + 0.017617179080843925, + -0.020644236356019974, + 0.007581986486911774, + -0.01572347618639469, + -0.0036941561847925186, + 0.00689695356413722, + 0.010357983410358429, + -0.0149774719029665, + 0.0030145030468702316, + -0.00777566060423851, + 0.025708457455039024, + 0.008629261516034603, + 5.643226904794574e-5, + -0.025937996804714203, + -0.008536010980606079, + 0.008206048049032688, + -0.0063410368748009205, + -0.0045118918642401695, + 0.0009262289386242628, + -0.0033606060314923525, + 0.0026952994521707296, + 0.005638071335852146, + 0.0269278883934021, + 0.003952388651669025, + 0.012488399632275105, + 0.0026952994521707296, + -0.002908699680119753, + -0.027171773836016655, + -0.011053776368498802, + -0.028563357889652252, + -0.015006164088845253, + -0.018334491178393364, + 0.021964089944958687, + -0.025120262056589127, + 0.029754096642136574, + -0.010020846500992775, + -0.0007791800308041275, + -0.012682073749601841, + 0.00047835736768320203, + -0.004544170573353767, + 0.013248750008642673, + 0.01408800482749939, + -0.0028746272437274456, + 0.011268969625234604, + 0.035836901515722275, + -0.005537647753953934, + -0.030155790969729424, + 0.014417968690395355, + 0.00204971875064075, + 0.014877048321068287, + -0.01563739962875843, + 0.004171168431639671, + 0.015852592885494232, + -0.0035058618523180485, + 0.01968303695321083, + -0.008593396283686161, + 0.010601869784295559, + -0.013836946338415146, + 0.016383403912186623, + 0.006409181747585535, + -0.006380489096045494, + -0.031246105208992958, + -0.0009450584184378386, + 0.014597296714782715, + 0.0005998520646244287, + 0.015092241577804089, + 0.02040034905076027, + 0.011814126744866371, + -0.015479589812457561, + -0.005799466278403997, + 0.010494273155927658, + 0.03715675324201584, + 0.0033444666769355536, + -0.03839053213596344, + 0.009604806080460548, + -0.010322118178009987, + -0.013471117243170738, + 0.01794714294373989, + -0.019697384908795357, + 0.006868261378258467, + 0.026282306760549545, + 0.0036421511322259903, + -0.0243025254458189, + 0.015178319066762924, + -0.006778597366064787, + 0.037214141339063644, + -0.0010813476983457804, + 0.006301584653556347, + -0.009274842217564583, + 0.02946717105805874, + -0.016957253217697144, + 0.041259780526161194, + -0.011878685094416142, + -0.0014274506829679012, + -0.008349509909749031, + 0.0029858106281608343, + 0.011118333786725998, + -0.025521956384181976, + -0.028046894818544388, + -0.02532110922038555, + 0.00020252852118574083, + -0.011986281722784042, + 0.015795206651091576, + 0.011835645884275436, + -0.0027849634643644094, + -0.017488064244389534, + -0.011433951556682587, + 0.006308757700026035, + -0.009518728591501713, + 0.006807289551943541, + 0.008514491841197014, + 0.006617201957851648, + -0.007524601649492979, + -0.01790410466492176, + -0.002164488658308983, + -0.008650781586766243, + 0.014719239436089993, + -0.0004931518924422562, + 0.010264732874929905, + 0.0186214167624712, + -0.010114097036421299, + -0.0031525855883955956, + -0.018506646156311035, + 0.011297661811113358, + 0.013671964406967163, + 0.0061545358039438725, + 0.008277779445052147, + 0.013291789218783379, + 0.009554593823850155, + 0.01955392211675644, + -0.008220394141972065, + -0.002284638350829482, + 0.004895653575658798, + -0.009554593823850155, + 0.0005411221645772457, + -0.00015971397806424648, + -0.025622380897402763, + 0.0090022636577487, + 0.009475690312683582, + 0.01111116074025631, + 0.0037981662899255753, + 0.029295016080141068, + 0.002492658793926239, + 0.010293425060808659, + -0.01526439655572176, + -0.0069579253904521465, + -0.017272869125008583, + 0.01117571908980608, + -0.02817600965499878, + -0.01936742104589939, + 0.013098115101456642, + -0.006423527840524912, + -0.017703257501125336, + -0.007868911139667034, + -0.0053368001244962215, + 0.016455134376883507, + 0.0034968953114002943, + 0.0065741632133722305, + 0.01887964829802513, + -0.0003918316215276718, + 0.016426442191004753, + 0.008220394141972065, + -0.005878370720893145, + 0.004074331372976303, + -0.0004846338415518403, + 0.0010840375907719135, + -0.004705565981566906, + 0.0032494228798896074, + 0.0027831699699163437, + -0.0005465020076371729, + -0.02626796066761017, + 0.00824191328138113, + 0.0005321557400748134, + 0.01104660239070654, + -0.02283921092748642, + 0.0069866175763309, + 0.009669364430010319, + 0.009748267941176891, + -0.0006957924924790859, + -0.020056039094924927, + -0.02057250402867794, + -0.019668690860271454, + -0.01790410466492176, + -0.01839187555015087, + -0.018377529457211494, + 0.0015242877416312695, + -0.01322005782276392, + -0.007011723704636097, + 0.017918450757861137, + 0.020228194072842598, + -0.015250050462782383, + -0.0032763220369815826, + -0.004293111618608236, + 0.005046288948506117, + 0.004454506561160088, + 0.007739794906228781, + 0.0025769430212676525, + -0.008851628750562668, + -0.003444890258833766, + 0.0005420187953859568, + -0.00141938088927418, + 0.001630987855605781, + 0.012323417700827122, + 0.011842818930745125, + 0.010300598107278347, + 0.021677164360880852, + 0.01139808539301157, + -0.010831409133970737, + 0.02159108780324459, + -0.003801753045991063, + 0.02351348288357258, + 0.02093116007745266, + 0.023183519020676613, + 0.008636434562504292, + 0.0020855842158198357, + -0.02701396495103836, + 0.011333527974784374, + 0.0013324067695066333, + -0.0032673554960638285, + -0.004562103655189276, + -0.013564367778599262, + -0.0003891416999977082, + -0.0149774719029665, + -0.012058012187480927, + -0.015436551533639431, + 0.012610342353582382, + -0.00981999933719635, + -0.010214520618319511, + -0.001372755621559918, + 0.0319921113550663, + 0.013191365636885166, + 0.010429714806377888, + -0.009655017405748367, + 0.006961511913686991, + 0.001815695664845407, + 0.011979108676314354, + -0.01667032763361931, + 0.0029696712736040354, + 0.005727735348045826, + -0.00959763303399086, + -0.02621057629585266, + -0.01728721708059311, + -0.001746654394082725, + -0.00044630246702581644, + 0.00043621528311632574, + 0.01408800482749939, + 0.013937369920313358, + 0.020314272493124008, + 0.014145390130579472, + -0.008557531051337719, + -0.010257559828460217, + -0.018721839413046837, + -0.012101051397621632, + -0.026511846110224724, + 0.0035991123877465725, + 0.029079822823405266, + -0.00953307468444109, + 0.0009226424153894186, + 0.005605792161077261, + 0.006678173318505287, + 0.03999730944633484, + 0.007158772554248571, + -0.013550021685659885, + -0.003190244548022747, + -0.012101051397621632, + 0.005351146683096886, + -0.007861738093197346, + 0.003701329231262207, + 0.0020604783203452826, + 0.000871982250828296, + -0.02137589454650879, + -0.02128981612622738, + 0.012165609747171402, + -0.005021183285862207, + -0.01526439655572176, + 0.006775010842829943, + 0.0036116652190685272, + 0.01665598154067993, + -0.0033803321421146393, + 0.03546389937400818, + -0.011799780651926994, + 0.00200488674454391, + -0.02305440418422222, + 0.005293761845678091, + -0.0027759969234466553, + 0.014303199015557766, + -0.009382438845932484, + -0.01737329363822937, + 0.009253323078155518, + -0.0030360224191099405, + -0.002021026099100709, + 0.02847728133201599, + 0.011347874067723751, + 0.004899240098893642, + 0.014877048321068287, + -0.01799018122255802, + 0.01139808539301157, + -0.009396785870194435, + 0.0025984621606767178, + 0.018463607877492905, + 0.002164488658308983, + -0.01635470986366272, + -0.0026002556551247835, + -0.019697384908795357, + -0.016196902841329575, + 0.003425164148211479, + -0.009726748801767826, + 0.014138217084109783, + -0.02608145959675312, + 0.010020846500992775, + -0.0036188384983688593, + 0.008629261516034603, + 0.008657954633235931, + 0.002910492941737175, + -0.01235211081802845, + -0.0010132030583918095, + 0.0051036737859249115, + -0.011312007904052734, + 0.019008764997124672, + -0.0029248392675071955, + -0.00068727444158867, + -0.020027346909046173, + 0.024187756702303886, + 0.011957588605582714, + 0.025407185778021812, + 0.009791307151317596, + -0.012588823214173317, + -0.01849230006337166, + -0.0001498509373050183, + 0.008593396283686161, + 0.0003270493762101978, + -0.0039236960001289845, + 0.022867903113365173, + 0.014145390130579472, + -0.005756427999585867, + -0.020113425329327583, + 0.0035202079452574253, + -0.017315909266471863, + 0.0005097397370263934, + 0.0035883525852113962, + -0.03882091864943504, + 0.004515478387475014, + 0.0010383089538663626, + 0.0012319831876084208, + -0.0030665083322674036, + -0.025163300335407257, + 0.014819663017988205, + 0.0008405998232774436, + 0.024804644286632538, + 0.009827172383666039, + 0.006728385575115681, + 0.029223285615444183, + -0.021031584590673447, + 0.0024980385787785053, + -0.0052256169728934765, + -0.002239806344732642, + 0.04762950912117958, + 0.02896505407989025, + -0.002402994781732559, + -0.004615901969373226, + -0.0021555221173912287, + -0.024474680423736572, + 0.01644078828394413, + -0.008478626608848572, + -0.0026504674460738897, + -0.019166573882102966, + 0.0013297168770805001, + -0.004059985280036926, + -0.010228867642581463, + 0.009755441918969154, + -0.006990204099565744, + 0.011563067324459553, + 0.009109861217439175, + -0.003443096997216344, + -0.005544820800423622, + -0.0030593350529670715, + 0.011340701021254063, + -0.002797516295686364, + -0.01813364401459694, + 0.010028019547462463, + 0.02266705594956875, + 0.002065858105197549, + 0.012890093959867954, + -0.0035255879629403353, + -0.0017843132372945547, + 0.0044652665965259075, + 0.018836610019207, + -0.012029320001602173, + -0.02266705594956875, + 0.0058927168138325214, + 0.005125193390995264, + 0.014288852922618389, + -0.006764250807464123, + 0.008464280515909195, + -0.011584586463868618, + 0.00544439721852541, + -0.02621057629585266, + -0.006954338401556015, + 0.025292417034506798, + -0.01077402476221323, + -0.03443096950650215, + -0.00474501820281148, + 0.004791643470525742, + 0.01139808539301157, + -0.010279078967869282, + -0.014834009110927582, + 0.008155835792422295, + 0.009145726449787617, + -0.02807558700442314, + -0.006470153108239174, + -0.011520029045641422, + 0.0090022636577487, + 0.008371029980480671, + -0.0202568881213665, + -0.007668063975870609, + -0.019094841554760933, + -0.013356346637010574, + 0.009604806080460548, + 0.004813162609934807, + 0.026095805689692497, + -0.0006796530215069652, + 0.024775952100753784, + 0.00605411222204566, + 0.0172011386603117, + 0.002076617907732725, + -0.022050166502594948, + 0.011182892136275768, + 0.0009629912092350423, + 0.0034646163694560528, + -0.01253143884241581, + -0.006990204099565744, + -0.022982671856880188, + -0.006900540087372065, + 0.007148012984544039, + -0.0018739772494882345, + 0.02434556558728218, + 0.00024052364460658282, + -0.007094214204698801, + -0.016985945403575897, + -0.005164645612239838, + 0.01239514909684658, + 0.018463607877492905, + -0.009834345430135727, + 0.006258545909076929, + 0.011476989835500717, + -0.019166573882102966, + -0.004515478387475014, + -0.014360583387315273, + 0.002071238122880459, + 0.007338100578635931, + 0.015364820137619972, + -0.016196902841329575, + -0.0019134294707328081, + -0.004576449748128653, + 0.0031364462338387966, + -0.003075474640354514, + 0.001468696049414575, + -0.020816391333937645, + -0.014195602387189865, + -0.0009513348923064768, + -0.033570196479558945, + -0.04355517774820328, + -0.0029983636923134327, + -0.008657954633235931, + -0.013564367778599262, + 0.001700925757177174, + -0.025091569870710373, + 0.008385376073420048, + -0.003163345390930772, + 0.030155790969729424, + 0.0031149268615990877, + 0.004831095691770315, + 0.012674900703132153, + -0.006767837330698967, + 0.0035237944684922695, + 0.006280065514147282, + -0.01794714294373989, + 0.00895205233246088, + 0.01667032763361931, + 0.005742081440985203, + 0.014360583387315273, + 0.0075963325798511505, + 0.002051512012258172, + 0.029983635991811752, + -0.019338728860020638, + -0.0034735826775431633, + 0.009834345430135727, + 0.006491672247648239, + 0.0032691487576812506, + -0.0033390866592526436, + 0.004196274559944868, + 0.007072695065289736, + 0.014877048321068287, + -0.008722512051463127, + 0.003400058252736926, + -0.0020228195935487747, + -0.002490865532308817, + 0.03853399306535721, + 0.020500773563981056, + -0.0009719575755298138, + 0.003819685662165284, + -0.00882293563336134, + 0.007854565046727657, + 0.028606398031115532, + 0.009009436704218388, + -0.0015798794338479638, + -0.00022057340538594872, + -0.002216493710875511, + -0.012739459052681923, + 0.015192665159702301, + -0.008679473772644997, + 0.009403958916664124, + 0.00028826971538364887, + 0.00011745982192223892, + -0.008048239164054394, + 0.0022487726528197527, + 0.011455470696091652, + -0.0005164645262993872, + 0.014102351851761341, + 0.029696712270379066, + -0.00041066104313358665, + -0.004920759238302708, + -0.02271009422838688, + -0.0044365739449858665, + -0.00966219138354063, + -0.004741431679576635, + -0.0019869538955390453, + 0.0045585171319544315, + -0.013499809429049492, + 0.006545471027493477, + -0.008650781586766243, + -0.002698885975405574, + -0.004085090942680836, + 0.00866512767970562, + -0.004849028307944536, + -0.014231467619538307, + 0.003884243778884411, + 0.021074622869491577, + 0.01768891140818596, + 0.011799780651926994, + -0.009784134104847908, + 0.023040058091282845, + -0.0018721839878708124, + 0.01111116074025631, + 0.0032906681299209595, + -0.006176055409014225, + 0.017588486894965172, + 0.03101656585931778, + -0.0027544775512069464, + -0.006337450351566076, + -0.011426778510212898, + 0.011476989835500717, + 0.010809889994561672, + 0.006025419570505619, + -0.017215484753251076, + 0.006064871791750193, + 0.016770752146840096, + -0.006176055409014225, + -0.01616820879280567, + -0.023786062374711037 + ], + "06557d00-501d-4f76-9ab2-2ce90e7751c3": [ + -0.02712535671889782, + -0.00769279059022665, + -0.007664637640118599, + 0.03704926744103432, + -0.023127639666199684, + -0.01614570990204811, + 0.014681758359074593, + 0.02581624500453472, + -0.031249763444066048, + 0.018932851031422615, + 0.0148506760597229, + 0.036232832819223404, + 0.003804165869951248, + -0.04115959629416466, + 0.005440555512905121, + 0.0425390899181366, + -0.01516035757958889, + 0.008523302152752876, + 0.011873502284288406, + 0.001485947286710143, + 0.04343998432159424, + -0.009846490807831287, + -0.04028685763478279, + -0.01352044939994812, + -0.007361993659287691, + -0.005018261261284351, + -0.00428276602178812, + 0.01569526456296444, + -0.06165493652224541, + 0.004567814525216818, + 0.03935781121253967, + 0.022142287343740463, + -0.0011824234388768673, + 0.006066958419978619, + 0.013506372459232807, + -0.027322428300976753, + 0.01606125198304653, + 0.00012448878260329366, + -0.006253471598029137, + -0.02987026795744896, + -0.06362564116716385, + 0.04062469303607941, + -0.02666083350777626, + -0.007122693583369255, + -0.030574092641472816, + 0.01987597532570362, + -0.008523302152752876, + 0.024112991988658905, + -0.012126878835260868, + -0.007903938181698322, + 0.00201997347176075, + -0.010529199615120888, + -0.023592162877321243, + 0.0307148564606905, + 0.012746243737637997, + -0.05256153643131256, + -0.006517405621707439, + 0.046058207750320435, + -0.009248240850865841, + -0.07697013765573502, + 0.02605554461479187, + -0.014695834368467331, + -0.006654650904238224, + -0.0128025496378541, + -0.020973939448595047, + -0.010226555168628693, + -0.02201559953391552, + -0.0226349625736475, + -0.07426745444536209, + 6.807292811572552e-5, + -0.008227696642279625, + 0.03040517494082451, + -0.022663116455078125, + 0.020537570118904114, + 0.02581624500453472, + -0.01606125198304653, + 0.05979684367775917, + -0.0044868746772408485, + -0.0012281719828024507, + 0.011028913781046867, + -0.014062393456697464, + 0.012929237447679043, + 0.02947612851858139, + -0.004771923180669546, + 0.05284306779503822, + 0.012352102436125278, + -0.002808255609124899, + -0.021002093330025673, + 0.019749287515878677, + -0.029954727739095688, + 0.0036493248771876097, + 0.01949591003358364, + 0.007003043778240681, + -0.01576564647257328, + -0.03747156262397766, + -0.014336884021759033, + 0.02004489302635193, + -0.0014885866548866034, + 0.029391668736934662, + 0.0024000380653887987, + -0.0087626026943326, + 0.036063916981220245, + 0.007516834884881973, + 0.020973939448595047, + 0.024281909689307213, + -0.01728590577840805, + 0.0003461931773927063, + -0.013907551765441895, + -0.03288263455033302, + 0.057629067450761795, + 0.012781434692442417, + -0.04287692531943321, + 0.0016108760610222816, + 0.013999049551784992, + -0.05129465460777283, + -0.010712193325161934, + -0.011606049723923206, + -0.010430663824081421, + 0.005852292291820049, + -0.036992963403463364, + 0.029279056936502457, + 0.011549743823707104, + -0.042398326098918915, + 0.015413734130561352, + 0.01238025538623333, + 0.014301693066954613, + -0.005211812909692526, + -0.012176146730780602, + 0.0022434373386204243, + -0.0023560491390526295, + -0.03358645737171173, + -0.002579513005912304, + -0.008973749354481697, + -0.012971467338502407, + 0.00699248630553484, + -0.018088264390826225, + -0.017257751896977425, + 0.057713527232408524, + -0.011620125733315945, + 0.029954727739095688, + -0.010184326209127903, + -0.03975195065140724, + -0.003505040891468525, + -0.02042495831847191, + 0.021973369643092155, + -0.008502188138663769, + -0.024929428473114967, + 0.02605554461479187, + -0.011739775538444519, + 0.01583602838218212, + -0.05670002102851868, + -0.03792200982570648, + 0.01652577519416809, + -0.0029578180983662605, + -0.005127354059368372, + 0.012816625647246838, + 0.001699733780696988, + 0.02208598144352436, + -0.006383678875863552, + 0.04532623291015625, + 0.0047684041783213615, + -0.0443127267062664, + -0.0054546319879591465, + 0.02916644513607025, + 0.06176754832267761, + 0.025464333593845367, + 0.006689842324703932, + 0.026534145697951317, + -0.018566863611340523, + 0.014428381808102131, + 0.04144112765789032, + -0.014090546406805515, + 0.0003719267260748893, + 0.0007104218238964677, + 0.001595919718965888, + 0.0031460910104215145, + 0.023648468777537346, + 0.04397489130496979, + 0.02787140943109989, + -0.03009549155831337, + -0.012943314388394356, + 0.0005929712788201869, + 0.005760795436799526, + -0.014414304867386818, + -0.007903938181698322, + 0.007397185079753399, + 0.013534525409340858, + 0.03617652878165245, + 0.006253471598029137, + -0.014526916667819023, + 0.005968423094600439, + 0.017722275108098984, + -0.004149039275944233, + 0.030039185658097267, + -0.03566977381706238, + -0.031052691861987114, + 0.003737302729859948, + -0.02087540552020073, + 0.0017419630894437432, + 0.011289328336715698, + -0.018651321530342102, + -0.02179037593305111, + -0.04493208974599838, + 0.003744340967386961, + -0.042313866317272186, + 0.01192277017980814, + -0.006158455740660429, + -0.013780863955616951, + 0.023958152160048485, + -0.04343998432159424, + 0.03358645737171173, + -0.06418870389461517, + 0.018679475411772728, + -0.0012580844340845942, + -0.026379304006695747, + 0.006429427769035101, + -0.003598297480493784, + 0.03240403160452843, + 0.006946737878024578, + -0.03009549155831337, + -0.02581624500453472, + 0.0036739585921168327, + -0.039273351430892944, + -0.01904546283185482, + -0.05154803395271301, + -0.028293704614043236, + -0.005208293907344341, + 0.01721552200615406, + -0.05323720723390579, + 0.014484687708318233, + 0.04304584488272667, + 0.00019465117657091469, + -0.014111661352217197, + -0.025844398885965347, + -0.01466768141835928, + 0.03054593876004219, + 0.006960814353078604, + 0.007062868680804968, + 0.018468327820301056, + -0.023057257756590843, + -0.007048792205750942, + 0.014498763717710972, + 0.011148563586175442, + -0.005824139341711998, + -0.008354384452104568, + -0.02499981038272381, + 0.010451778769493103, + 0.009776107966899872, + 0.01844017580151558, + -0.02956058643758297, + 0.010388434864580631, + 0.00622883765026927, + 0.032572951167821884, + -0.03032071515917778, + -0.04718432575464249, + 0.0702134296298027, + 0.030658550560474396, + -0.030292563140392303, + -0.00830511748790741, + -0.0008463477715849876, + 0.02681567519903183, + 0.023268405348062515, + 0.05529237166047096, + 0.01421019621193409, + 0.0148506760597229, + -0.024816816672682762, + -0.00621124217286706, + -0.046283431351184845, + 0.0078054023906588554, + 0.029645046219229698, + -0.025928856804966927, + 0.03265741094946861, + -0.023732928559184074, + 0.0016108760610222816, + 0.022367510944604874, + 0.021086551249027252, + -0.01306296419352293, + -0.026928286999464035, + 0.0226349625736475, + 0.012711051851511002, + 0.0006800694391131401, + 0.005901559721678495, + -0.018172722309827805, + 0.04062469303607941, + -0.008544417098164558, + -0.013970896601676941, + -0.007678714115172625, + -0.013668252155184746, + -0.04755031317472458, + -0.02543618157505989, + -0.003962526097893715, + -0.013963857665657997, + 0.0166946928948164, + 0.0067144762724637985, + 0.006658170372247696, + 0.01081776712089777, + -0.03907627984881401, + -0.01989005133509636, + -0.016497623175382614, + 0.019777439534664154, + -0.00588748324662447, + 0.0042053451761603355, + 0.02484496869146824, + -0.049633633345365524, + 0.03817538544535637, + -0.06114818528294563, + 0.03930150344967842, + 0.03710557520389557, + -0.015399658121168613, + -0.01444245781749487, + 0.03395244479179382, + -0.012894046492874622, + -0.029616892337799072, + -0.017848962917923927, + 0.04473502188920975, + -0.0060986303724348545, + -0.013013696298003197, + 0.011064105667173862, + -0.0012607238022610545, + -0.025239109992980957, + 0.00016484865045640618, + -0.005616511218249798, + -0.08237550407648087, + 0.0339805968105793, + 0.018566863611340523, + -0.010993722826242447, + 0.026069622486829758, + -0.002192410174757242, + 0.006169012747704983, + -0.016793228685855865, + -0.037978313863277435, + -0.00791801419109106, + -0.017694123089313507, + -0.004483355674892664, + -0.03676773980259895, + -0.03513486683368683, + -0.03975195065140724, + -0.031728364527225494, + -0.025126498192548752, + -0.013344493694603443, + -0.016019022092223167, + -0.023732928559184074, + 0.02324025146663189, + -0.010409549809992313, + 0.032938938587903976, + 0.00023666064953431487, + -0.009107476100325584, + 0.0031848012004047632, + -0.00952273141592741, + 0.010494008660316467, + 0.0008415089687332511, + 0.008361423388123512, + 0.03727449104189873, + 0.023859616369009018, + 0.06345672905445099, + -0.03085562214255333, + 0.029645046219229698, + 0.00645406125113368, + -0.007552025839686394, + -0.01721552200615406, + 0.03589499741792679, + 6.884273170726374e-5, + -0.023662544786930084, + -0.0021501807495951653, + -0.02255050465464592, + 0.03223511576652527, + -0.01310519315302372, + 0.0015343351988121867, + -0.004127924796193838, + -0.003684516064822674, + -0.03631729260087013, + -0.002744911704212427, + 0.0015598487807437778, + -0.002503852127119899, + -0.01428057812154293, + 0.0039801220409572124, + 0.01036028191447258, + -0.0151181286200881, + -0.040793608874082565, + 0.02771656960248947, + -0.006172532215714455, + 0.014597299508750439, + 0.021748146042227745, + -0.016779152676463127, + 0.0008049980970099568, + 0.004469279199838638, + -0.015061822719871998, + -0.01797565259039402, + 0.03139052912592888, + 0.011261175386607647, + -0.016948070377111435, + -0.014723987318575382, + -0.024873122572898865, + 0.0006563154165633023, + -0.017708199098706245, + 0.016413163393735886, + 0.006172532215714455, + -0.052448924630880356, + 0.037668634206056595, + -0.014597299508750439, + 0.004032908473163843, + 0.005440555512905121, + -0.011824234388768673, + -0.0034522542264312506, + 0.015287046320736408, + -0.012239490635693073, + -0.03510671481490135, + 0.007027677726000547, + 0.015653034672141075, + -0.02474643476307392, + -0.00925527885556221, + 0.015075898729264736, + 0.03983641043305397, + -0.004504470154643059, + 0.03648620843887329, + 0.013119270093739033, + -0.0024299505166709423, + 0.03198174014687538, + -0.024647898972034454, + 0.005947308614850044, + 0.05309644341468811, + 0.05005592480301857, + 0.005437036510556936, + 0.015934564173221588, + 0.013696405105292797, + 0.016187939792871475, + 0.021734070032835007, + 0.023493628948926926, + -0.02208598144352436, + -0.021466616541147232, + -0.006707437802106142, + 0.029645046219229698, + 0.006960814353078604, + -0.012865893542766571, + -0.01637093350291252, + -0.0036070954520255327, + 0.026097774505615234, + -0.016948070377111435, + -0.0010715712560340762, + -0.006109187845140696, + -0.022367510944604874, + 0.0035455108154565096, + -0.006373121868818998, + -0.012295796535909176, + -0.010494008660316467, + -0.013210766948759556, + -0.01882023923099041, + -0.019383298233151436, + -0.029926573857665062, + -0.005250523332506418, + 0.0037936086300760508, + 0.02575993910431862, + -0.06441392749547958, + -0.0038851057179272175, + 0.016399087384343147, + 0.01979151740670204, + 0.010318052023649216, + -0.013224842958152294, + 0.02871599793434143, + -0.05720677226781845, + -0.017539281398057938, + -0.0033501998987048864, + 0.01146528497338295, + -0.005556686315685511, + 0.031812820583581924, + -0.062443219125270844, + 0.011753852479159832, + 0.025548793375492096, + 0.010726270265877247, + 0.011894617229700089, + -0.0062042041681706905, + 0.007446452509611845, + -0.03634544461965561, + 0.017468899488449097, + 0.01234506443142891, + -0.000619804544840008, + 0.009353813715279102, + -0.03251664340496063, + 0.02392999827861786, + -0.024577517062425613, + -0.016033099964261055, + -0.025351721793413162, + 0.01508997566998005, + -0.0010882870992645621, + 0.00132406794000417, + -0.014372075907886028, + 0.00024215926532633603, + -0.031587596982717514, + 0.018074186518788338, + -0.05011223256587982, + 0.025112422183156013, + 0.004339071922004223, + 0.012506943196058273, + 0.024493057280778885, + -0.01653985120356083, + -0.016244245693087578, + -0.0011701065814122558, + -0.030827468261122704, + -0.010465855710208416, + -0.052308160811662674, + 0.032798174768686295, + -0.03063039854168892, + -0.003320287214592099, + -0.012865893542766571, + -0.018552787601947784, + 0.038738444447517395, + -0.041581891477108, + -0.008931520394980907, + -0.0221000574529171, + -0.02567548118531704, + -0.04290508106350899, + 0.023732928559184074, + -0.041947878897190094, + 0.006904508452862501, + -0.009198972955346107, + 0.004961955361068249, + 0.011303405277431011, + -0.013154461048543453, + 0.01444245781749487, + -0.0015906410990282893, + -0.005018261261284351, + -0.02277572825551033, + -0.005338501185178757, + -0.011254137381911278, + -0.028054405003786087, + 0.019397376105189323, + -0.02825147472321987, + -0.014977363869547844, + 0.008319193497300148, + -0.0324321873486042, + -0.0021853719372302294, + 0.018088264390826225, + -0.011380826123058796, + -0.0040610614232718945, + 0.005419441033154726, + -0.001001188880763948, + -0.0003974403371103108, + 0.00024083959579002112, + 0.0014780292985960841, + 0.017314057797193527, + -0.03330492600798607, + 0.01827125810086727, + -0.0022522350773215294, + -0.009339737705886364, + -0.01310519315302372, + 0.03178466856479645, + -0.008903367444872856, + 0.005898040719330311, + -0.018003804609179497, + 0.014139814302325249, + -0.0301799513399601, + 0.011880540288984776, + 0.0024105955380946398, + 0.002419393276795745, + 0.030968233942985535, + -0.03465626761317253, + 0.05917748063802719, + -0.011387864127755165, + -0.02179037593305111, + -0.0153855811804533, + -0.014766217209398746, + 0.057403843849897385, + 0.012858855538070202, + 0.015413734130561352, + -0.029504280537366867, + 0.002861042506992817, + -0.011753852479159832, + -0.014653605408966541, + 0.016497623175382614, + 0.0083473464474082, + 0.021424386650323868, + 0.0113456342369318, + 0.031643904745578766, + 0.008868175558745861, + -0.013569717295467854, + 0.022071905434131622, + 0.005148469004780054, + 0.00395900709554553, + -0.031503140926361084, + 0.0021044323220849037, + -0.001492985524237156, + -0.010740346275269985, + -0.00765759963542223, + 0.02362031675875187, + 0.04141297563910484, + 0.033333081752061844, + -0.028659692034125328, + -0.007193075958639383, + -0.0180601105093956, + -0.0014683518093079329, + 0.0051308730617165565, + 0.030264409258961678, + -0.016272399574518204, + 0.004043465945869684, + -0.0010223035933449864, + 0.025084268301725388, + 0.01950998790562153, + 0.018144570291042328, + 0.015019592829048634, + 0.0018598535098135471, + 0.018946928903460503, + 0.003994198516011238, + -0.002053404925391078, + 0.00013680568372365087, + -0.03223511576652527, + 0.03468441963195801, + 0.0044340877793729305, + -0.007390146609395742, + -0.010740346275269985, + 0.018721705302596092, + 0.03527563437819481, + -0.0007143808179534972, + 0.018609093502163887, + -0.01558265183120966, + 0.021044323220849037, + 0.023972228169441223, + -0.0021783336997032166, + 0.016624310985207558, + 0.0001041988653014414, + -0.0061514172703027725, + 0.014977363869547844, + -0.03910443186759949, + 0.06542742997407913, + -0.013816054910421371, + 0.02574586309492588, + -0.008488111197948456, + -0.013633061200380325, + -0.009079323150217533, + -0.01775042898952961, + -0.012267643585801125, + -0.006137340795248747, + 0.00689395098015666, + -0.002521447604522109, + -0.011641240678727627, + 0.028462622314691544, + 0.011092258617281914, + -0.016736922785639763, + 0.035163022577762604, + -0.03274186700582504, + -0.03665512800216675, + -0.03755602240562439, + -0.0108107291162014, + 0.006239395122975111, + 0.025182804092764854, + -0.00271499902009964, + 0.037443410605192184, + -0.05154803395271301, + -0.0011058826930820942, + 0.01326003484427929, + 0.021311774849891663, + -0.03780939802527428, + 0.011831272393465042, + 6.169452535687014e-5, + 0.034008752554655075, + 0.0216214582324028, + -0.013006658293306828, + -0.00880483165383339, + -0.025098346173763275, + 0.00012283919204492122, + 0.01462545245885849, + 0.007460528984665871, + 0.027392810210585594, + 0.009635343216359615, + -0.0013231881894171238, + 0.0072634583339095116, + 0.02490127459168434, + 0.03499410301446915, + -0.020593876019120216, + 0.018834317103028297, + 0.03634544461965561, + -0.0221000574529171, + -0.0016443076310679317, + 0.044678714126348495, + 0.008199543692171574, + 0.00395900709554553, + 0.011197831481695175, + -0.016596157103776932, + 0.009417158551514149, + -0.020016739144921303, + -0.021368080750107765, + -0.015793798491358757, + 0.000712621258571744, + -0.05979684367775917, + 0.003098582848906517, + 0.010303976014256477, + -0.00853034108877182, + -0.02360623888671398, + 0.019256610423326492, + -0.01215503178536892, + -0.0028751189820468426, + 0.00810804683715105, + -0.00508864363655448, + -0.03414951637387276, + -0.011430093087255955, + 0.004349628929048777, + 0.021776298061013222, + 0.0009642381919547915, + 0.0012413687072694302, + 0.009079323150217533, + -0.020382728427648544, + -0.05050637200474739, + -0.007516834884881973, + -0.010641811415553093, + -0.02818109281361103, + 0.020607952028512955, + -0.0020938748493790627, + -0.02110062725841999, + -0.03139052912592888, + -0.008551455102860928, + -0.000568337447475642, + 0.007812440861016512, + 0.0006849082419648767, + -0.007868746295571327, + 0.009614229202270508, + 0.03521932661533356, + 0.009191934950649738, + -0.016117557883262634, + 0.0226912684738636, + -0.011563819833099842, + 0.03392429277300835, + 0.003114418825134635, + 0.012675860896706581, + -0.0068904319778084755, + -0.03443104401230812, + -0.018003804609179497, + 0.015948640182614326, + 0.036063916981220245, + 0.0007966402336023748, + -0.0034364182502031326, + 0.00012536856229417026, + 0.03240403160452843, + -0.005563724786043167, + 0.023634392768144608, + -0.0027554689440876245, + -0.0015739252557978034, + 0.013801978901028633, + 0.005986018572002649, + 0.024112991988658905, + 0.045269925147295, + -0.04256724566221237, + -0.017736351117491722, + -0.01827125810086727, + 0.018088264390826225, + -0.0013856524601578712, + -0.0005670178215950727, + 0.004402415826916695, + 0.03704926744103432, + -0.016244245693087578, + -0.009923910722136497, + -0.010036522522568703, + 0.019172152504324913, + -0.03952672705054283, + 0.023029103875160217, + 0.006591306999325752, + -0.018595015630126, + -0.006165493745356798, + 0.025999240577220917, + 0.014266502112150192, + -0.025182804092764854, + 0.019622599706053734, + -0.0022170438896864653, + 0.022986875846982002, + 0.005743199493736029, + -0.020593876019120216, + -0.004778961651027203, + -0.007143808528780937, + -0.017342209815979004, + 0.02063610404729843, + 0.02840631641447544, + -0.009044132195413113, + 0.038738444447517395, + 0.017947498708963394, + -0.016356857493519783, + 0.007115655578672886, + -0.007115655578672886, + 0.00769279059022665, + 0.0015616083983331919, + -0.011782005429267883, + -0.023254327476024628, + 0.007939129136502743, + -0.040878068655729294, + -0.011408979073166847, + 0.0005080725532025099, + -0.02094578742980957, + 0.006531482096761465, + -0.014456534758210182, + 0.03910443186759949, + 0.008692219853401184, + -0.020988017320632935, + -0.006341449450701475, + 0.019678905606269836, + 0.006640574429184198, + -0.004043465945869684, + -0.009051170200109482, + 0.050252996385097504, + -0.004525585100054741, + -0.020241962745785713, + -0.005774871911853552, + 0.004588929004967213, + 0.018538711592555046, + -0.005187178961932659, + -0.002090355847030878, + 0.03510671481490135, + 0.0307148564606905, + -0.011303405277431011, + -0.016722846776247025, + 0.002470420440658927, + 0.007812440861016512, + -0.032263267785310745, + -0.0021765741985291243, + -0.010508084669709206, + -0.014111661352217197, + -0.0032833365257829428, + 0.0031654462218284607, + -0.02796994522213936, + -0.019481834024190903, + 0.011606049723923206, + -0.008431805297732353, + 0.019524063915014267, + 0.002327896188944578, + -0.007854670286178589, + -0.005729123018682003, + 0.02307133376598358, + -0.012535096146166325, + 0.012661784887313843, + -0.013956819660961628, + 0.01017024926841259, + 0.0043003614991903305, + 0.004881015978753567, + 0.02125546894967556, + 0.003547270316630602, + 0.004194788169115782, + -0.025548793375492096, + 0.019326992332935333, + -0.019214380532503128, + 0.010099867358803749, + -0.014836599119007587, + 0.015934564173221588, + -0.05022484436631203, + 0.026111850515007973, + -0.022972797974944115, + -0.0394422672688961, + -0.0350504107773304, + 0.010451778769493103, + 0.0011217186693102121, + -0.023803310468792915, + 0.014224273152649403, + 0.011915731243789196, + 0.037753090262413025, + -0.001993580022826791, + 0.008664066903293133, + -0.026393380016088486, + 0.021818527951836586, + -0.009973178617656231, + -0.010972607880830765, + 0.00990983471274376, + 0.006088073365390301, + -0.00622883765026927, + -0.014695834368467331, + -0.0031636864878237247, + 0.0019179190276190639, + -0.0019056020537391305, + -0.025013886392116547, + 0.003994198516011238, + -0.02825147472321987, + -0.0275054220110178, + -0.004550219047814608, + 0.005510937888175249, + -0.010536237619817257, + 0.017947498708963394, + -0.012696975842118263, + 0.0024528249632567167, + 0.015878258273005486, + 0.018609093502163887, + -0.014139814302325249, + -0.01356267835944891, + -0.005151988007128239, + -0.00152817671187222, + -0.04138481989502907, + 0.006042324472218752, + 0.0062886630184948444, + 0.015709340572357178, + -0.004405934829264879, + 0.0031531292479485273, + -0.03899182006716728, + 0.02422560378909111, + -0.003193599171936512, + 0.013252995908260345, + -0.014766217209398746, + 0.010698117315769196, + 0.014034240506589413, + 0.01535742823034525, + 0.010740346275269985, + -0.019861899316310883, + -0.03589499741792679, + 0.0029067909345030785, + 0.006953775882720947, + -0.009473464451730251, + 0.010515122674405575, + -0.03626098483800888, + 0.007537949364632368, + -0.029222751036286354, + -0.007896899245679379, + 0.003702111542224884, + 0.026604527607560158, + -0.037527866661548615, + 0.016033099964261055, + 0.014006087556481361, + 0.002528485842049122, + -0.0037056307774037123, + -0.009142667055130005, + 0.0037936086300760508, + -0.019003234803676605, + -0.02360623888671398, + 0.017229599878191948, + 0.01614570990204811, + -0.002744911704212427, + 0.016497623175382614, + -0.023254327476024628, + -0.005876926239579916, + 0.0004396697331685573, + 0.00020608831255231053, + 0.012478790245950222, + -0.0032886152621358633, + 0.007228267379105091, + -0.0018545748898759484, + -0.0072141909040510654, + -0.018088264390826225, + 0.0033238064497709274, + -0.012894046492874622, + 0.020002663135528564, + -0.011176716536283493, + 0.0007108616991899908, + -0.006855240557342768, + -0.027941793203353882, + 0.008129160851240158, + 0.007154365535825491, + -0.017919346690177917, + -0.008213619701564312, + 0.007875785231590271, + -0.016807304695248604, + -0.025464333593845367, + 0.0078054023906588554, + -0.016891764476895332, + 0.007967282086610794, + -0.03274186700582504, + -0.014182043261826038, + 0.0405120812356472, + -0.006316815968602896, + 0.023183945566415787, + -0.00023402131046168506, + 0.010346204973757267, + 0.02819516882300377, + -0.004152558743953705, + 0.02788548730313778, + 0.020213810727000237, + -0.015301122330129147, + 0.009142667055130005, + 0.015751570463180542, + 0.017412593588232994, + 0.0009756752988323569, + -0.0075238728895783424, + -0.01691991649568081, + -0.00926231686025858, + -0.025126498192548752, + 0.002319098450243473, + -0.031193457543849945, + 0.003202396910637617, + -0.01424538716673851, + -0.015188510529696941, + -0.0069819288328289986, + -0.013189652003347874, + -0.004835267551243305, + 0.00811508484184742, + 0.004335552453994751, + -0.00857257004827261, + -0.040793608874082565, + 0.0016953347949311137, + -2.401522760919761e-5, + -0.01821495220065117, + 0.03420582041144371, + -0.0015149801038205624, + 0.00630273949354887, + -0.010240632109344006, + 0.00691154645755887, + -0.016553929075598717, + -0.017961574718356133, + 0.007006562780588865, + -0.017694123089313507, + 0.012542134150862694, + 0.01614570990204811, + -0.010430663824081421, + -0.021888909861445427, + -0.007298649754375219, + 0.022268975153565407, + -0.012323949486017227, + -0.019312916323542595, + -0.03170020878314972, + 0.003228790359571576, + -0.03448735177516937, + 0.011021875776350498, + -0.023817386478185654, + -0.04259539768099785, + 0.03189728036522865, + 0.04273616150021553, + 0.015751570463180542, + -0.028744151815772057, + -0.02567548118531704, + -0.00518014095723629, + 0.001749001326970756, + -0.04608636349439621, + -0.016019022092223167, + -0.005500380415469408, + -0.013879398815333843, + 0.01836979389190674, + 0.002181852702051401, + 0.0012158551253378391, + -0.038062773644924164, + -0.0215651523321867, + 0.018552787601947784, + -0.0016935752937570214, + -0.02575993910431862, + 0.015413734130561352, + -0.015019592829048634, + -0.004951398354023695, + -0.0003033039392903447, + -0.017553357407450676, + 0.007608331739902496, + -0.0010592543985694647, + 0.003786570392549038, + -0.0014331606216728687, + -0.02452121116220951, + 0.00708398362621665, + -0.02041088044643402, + 0.02469012886285782, + -0.025999240577220917, + -0.018918775022029877, + -0.08226288855075836, + -0.017201445996761322, + -0.027618033811450005, + 0.03040517494082451, + 0.02301502786576748, + 0.009818337857723236, + -0.0041244057938456535, + 0.018778011202812195, + 0.009832413867115974, + -0.00918489694595337, + -0.0006637935293838382, + -0.020058969035744667, + 0.0045818910002708435, + 0.025112422183156013, + -0.0012756800279021263, + 0.002512649865821004, + -0.028673768043518066, + -0.01264066994190216, + 0.015427811071276665, + -0.005971942096948624, + 0.007073426153510809, + 0.0037619364447891712, + 0.01462545245885849, + 0.0006439985008910298, + -0.005426479037851095, + 0.02240973897278309, + -0.03246033936738968, + -0.0020692411344498396, + -0.014864752069115639, + -0.020396804437041283, + 0.03330492600798607, + 0.010550313629209995, + 0.006010652519762516, + -0.015906410291790962, + 0.0077631729654967785, + 0.014906981028616428, + 0.008002473041415215, + -0.03116530366241932, + -0.006732071749866009, + -0.019763363525271416, + 0.005285714287310839, + 0.01600494608283043, + -0.0018475366523489356, + -0.008649990893900394, + -0.006411831825971603, + -0.0175252053886652, + -0.009417158551514149, + -0.0151181286200881, + -0.01063477247953415, + -0.011035952717065811, + 0.034459199756383896, + 0.011711622588336468, + 0.006816530600190163, + -0.015906410291790962, + 0.005078086629509926, + 0.023254327476024628, + -0.0029243866447359324, + 0.0026023874524980783, + 0.01918622851371765, + 0.004022351466119289, + 0.04991516098380089, + 0.008586646988987923, + 0.005042895209044218, + -0.0052153319120407104, + -0.02842039242386818, + 0.019918205216526985, + 0.016736922785639763, + 0.031052691861987114, + 0.028913069516420364, + -0.019101768732070923, + -0.00880483165383339, + -0.011204869486391544, + 0.009916872717440128, + 0.03603576123714447, + -0.002540802815929055, + 0.028476698324084282, + 0.020973939448595047, + 0.015287046320736408, + 0.012858855538070202, + -0.008466996252536774, + -0.015061822719871998, + -0.015413734130561352, + 0.004546699579805136, + -0.009607190266251564, + -0.004877496976405382, + -0.0151181286200881, + -0.01462545245885849, + -0.020298268646001816, + 0.04054023325443268, + 0.0017885913839563727, + 0.03502225503325462, + -0.02659045159816742, + 0.009086361154913902, + 0.03198174014687538, + -0.012394331395626068, + 0.04563591629266739, + -0.018707627430558205, + -0.0018809682223945856, + -0.00989575870335102, + 0.0002476578811183572, + -0.006967852357774973, + -0.02049534022808075, + 0.027209816500544548, + -0.00853034108877182, + 0.009037093259394169, + 0.016356857493519783, + -0.0026534146163612604, + -0.009339737705886364, + -0.0006242034723982215, + -0.02118508704006672, + -0.026914210990071297, + 0.013133346103131771, + -0.05599619820713997, + 0.030292563140392303, + -0.009058208204805851, + 0.036063916981220245, + -0.012021305039525032, + -0.01535742823034525, + -0.011134487576782703, + -0.009726841002702713, + 0.012288758531212807, + 0.010965569876134396, + -0.0021343447733670473, + -0.010768499225378036, + -0.025098346173763275, + 0.00022247420565690845, + 0.006373121868818998, + 0.007256420329213142, + -0.006499810144305229, + 0.026168156415224075, + 0.009705726057291031, + 0.007833555340766907, + 0.011183755472302437, + 0.007946167141199112, + -0.0038358380552381277, + 0.0047226557508111, + 0.03372722119092941, + 0.005095682106912136, + 0.04921133816242218, + -0.042229410260915756, + -0.009705726057291031, + -0.027519498020410538, + -0.0005863729165866971, + 0.0307148564606905, + -0.021987445652484894, + -0.021368080750107765, + 0.0011401940137147903, + -0.003990679048001766, + -0.006049362942576408, + -0.023366939276456833, + 0.003186560934409499, + -0.002447546226903796, + 0.01516035757958889, + -0.002674529328942299, + -0.027984021231532097, + -0.0032551835756748915, + -0.025084268301725388, + -0.004754327703267336, + 0.016033099964261055, + -0.017553357407450676, + -0.02278980426490307, + 0.01637093350291252, + 0.006967852357774973, + -0.004349628929048777, + 0.0057889483869075775, + -0.006591306999325752, + -0.029447974637150764, + 0.020467186346650124, + -0.0038147233426570892, + 0.0019513505976647139, + -0.02170591615140438, + -0.009754993952810764, + -0.02583032287657261, + -0.02414114587008953, + 0.008896328508853912, + -0.025323569774627686, + 0.0020322902128100395, + 0.007537949364632368, + 0.02690013311803341, + 0.00784763228148222, + -0.015216663479804993, + 0.007868746295571327, + 0.0038780674804002047, + 0.04175081104040146, + -0.0029666160698980093, + 0.016117557883262634, + -0.035247478634119034, + 0.010156173259019852, + 0.006221799645572901, + 0.024788662791252136, + 0.017314057797193527, + 0.04304584488272667, + -0.024788662791252136, + 0.004550219047814608, + 0.00047596063814125955, + -0.015737492591142654, + 0.05078790336847305, + 0.03251664340496063, + -0.012661784887313843, + -0.011162640526890755, + -0.024732356891036034, + -0.0024070763029158115, + 0.01306296419352293, + 2.7218172817811137e-6, + 0.005750237964093685, + 0.018313487991690636, + -0.036514364182949066, + -0.0009818337857723236, + 0.024493057280778885, + -0.009529770351946354, + 0.0003446535556577146, + -0.001757799182087183, + 0.016807304695248604, + -0.033501997590065, + 0.01085295807570219, + -0.0014824281679466367, + 0.008910405449569225, + -0.015554498881101608, + -0.01268289890140295, + -0.024718280881643295, + 0.013647137209773064, + 0.012542134150862694, + 0.0006391596980392933, + -0.025408027693629265, + 0.02232528105378151, + -0.0037478599697351456, + 0.004951398354023695, + -0.048929810523986816, + -0.017229599878191948, + 0.00948754046112299, + -0.0012422484578564763, + 0.002825851319357753, + 0.0053209057077765465, + 0.006922103930264711, + 0.013583793304860592, + -0.008192505687475204, + 0.02179037593305111, + -0.0141679672524333, + 0.046198975294828415, + -0.007488681934773922, + -0.028054405003786087, + -0.01852463372051716, + -0.0017569194315001369, + 0.022297127172350883, + 0.04301769286394119, + 0.035613469779491425, + -0.033023398369550705, + -0.0004953157622367144, + 0.01890469901263714, + 0.014336884021759033, + 0.01956629380583763, + 0.004444645252078772, + 0.0064223892986774445, + 0.03046148084104061, + 0.004789518658071756, + 0.015737492591142654, + 0.02094578742980957, + -0.018538711592555046, + 0.014681758359074593, + -0.010986684821546078, + 0.01789119280874729, + -0.015709340572357178, + 0.005373692139983177, + -0.019298840314149857, + 0.03581053763628006, + -0.012338025495409966, + -0.004479836672544479, + 0.01631462760269642, + 0.00769279059022665, + -0.004743770230561495, + 0.01804603450000286, + -0.0015598487807437778, + -0.04349629208445549, + 0.014111661352217197, + -0.003279817523434758, + -0.009403081610798836, + -0.014315770007669926, + -0.014350960962474346, + -0.026238540187478065, + -0.004279247019439936, + -0.020833175629377365, + 0.011183755472302437, + -0.022353433072566986, + 0.03046148084104061, + -3.1960735213942826e-6, + 0.004099771846085787, + -0.006721514277160168, + 0.0067039187997579575, + 0.031277917325496674, + -0.003133774036541581, + 0.01397793460637331, + 0.012654745951294899, + 0.006957295350730419, + 0.0008912165067158639, + 0.016948070377111435, + -0.003737302729859948, + 0.00810804683715105, + 0.001298554358072579, + 0.027941793203353882, + -0.00037742534186691046, + 0.004110329318791628, + -0.018932851031422615, + -0.026646757498383522, + 0.007228267379105091, + -0.01631462760269642, + -0.00014527355961035937, + -0.009846490807831287, + -0.014393189921975136, + 0.002905031433328986, + 0.0017384439706802368, + 0.00769279059022665, + 0.00838253740221262, + -0.009529770351946354, + -0.03068670444190502, + -0.0004684824962168932, + -0.0033836313523352146, + 0.0027713049203157425, + -0.003235828597098589, + -0.0073479171842336655, + -0.020129350945353508, + -0.00044604812865145504, + 0.005169583484530449, + -0.006633536424487829, + 0.027941793203353882, + -0.027012744918465614, + -0.015371505171060562, + 0.01813049241900444, + 0.011486398987472057, + 0.010986684821546078, + 5.39139800821431e-5, + -0.017004376277327538, + 0.0329107865691185, + -0.0046241204254329205, + -0.002195929177105427, + 0.008438843302428722, + -0.004198307171463966, + 0.005451112985610962, + -0.01035324390977621, + -0.011169678531587124, + -0.010444740764796734, + -0.0027273159939795732, + 0.018454251810908318, + -0.028969375416636467, + 0.006499810144305229, + 0.025858474895358086, + 0.014076469466090202, + 0.012302834540605545, + 0.01374567300081253, + 0.02041088044643402, + -0.012281719595193863, + 0.010761461220681667, + -0.0011956201633438468, + 0.013048887252807617, + 0.009304546751081944, + 0.03488149121403694, + 0.03459996357560158, + -0.004321476444602013, + 0.016244245693087578, + -0.010050599463284016, + -0.026154080405831337, + -0.03372722119092941, + -0.013809016905725002, + -0.0012941554887220263, + -0.011296367272734642, + -0.01428057812154293, + 0.024408599361777306, + 0.013182613998651505, + 0.006827087607234716, + 0.005669298116117716, + -0.02018565684556961, + -0.009389005601406097, + 0.012584364041686058, + -0.012943314388394356, + -0.008326231501996517, + -0.011936846189200878, + -0.010726270265877247, + -0.0025496005546301603, + -0.014597299508750439, + 0.010923340916633606, + -0.014639528468251228, + 0.019242534413933754, + 0.016877686604857445, + -0.03642990440130234, + -0.024183375760912895, + 0.005577801261097193, + 0.00657019205391407, + 0.012957390397787094, + -0.013710481114685535, + 0.008847061544656754, + 0.0007359354058280587, + -0.011444170027971268, + -0.016821380704641342, + 0.000755290559027344, + -0.009367890655994415, + -0.002385961590334773, + 0.014428381808102131, + -0.025323569774627686, + 0.00883298460394144, + -0.034008752554655075, + -0.009269355796277523, + -0.005510937888175249, + -0.005486303940415382, + -0.01447061076760292, + 0.01782081089913845, + 0.0007139409426599741, + 0.03175651654601097, + -0.006503329146653414, + -0.004096252843737602, + 0.004926764406263828, + 0.00012789791799150407, + -0.022719422355294228, + 0.012126878835260868, + 0.0048563820309937, + -0.012915161438286304, + -0.011683469638228416, + -0.010613658465445042, + 0.0101280203089118, + 0.02270534634590149, + 0.016511699184775352, + -0.0034328990150243044, + -0.021382156759500504, + -0.01440022885799408, + 0.008910405449569225, + -0.002802977105602622, + -0.008748525753617287, + 0.0226349625736475, + -0.001835219794884324, + -0.02787140943109989, + 0.004367224872112274, + 0.006675765849649906, + 0.026407457888126373, + -0.005137911532074213, + -0.005852292291820049, + -0.005993057042360306, + 0.03229141980409622, + -0.029954727739095688, + 0.036232832819223404, + -0.026379304006695747, + 0.014723987318575382, + -0.03707742318511009, + -0.00990983471274376, + -0.006176051218062639, + 0.011591972783207893, + -0.02034049853682518, + 0.00834030844271183, + -0.007552025839686394, + 0.019242534413933754, + -0.016033099964261055, + 0.030799316242337227, + 0.03519117459654808, + 0.004645234905183315, + -0.010015408508479595, + 0.034008752554655075, + 0.0019689463078975677, + 0.012084648944437504, + 0.025957010686397552, + -0.001256324932910502, + 0.00599657604470849, + -0.02644968591630459, + 0.026674909517169, + -0.0005133512313477695, + -0.004008274991065264, + -0.009001902304589748, + 0.01417500525712967, + 0.006165493745356798, + 0.007544987834990025, + 0.04346814006567001, + -0.030968233942985535, + -0.02278980426490307, + -0.005056971684098244, + -0.011789043433964252, + -0.007840593345463276, + -0.01836979389190674, + 0.015061822719871998, + 0.0018809682223945856, + -0.002224082127213478, + -0.015624881722033024, + -0.002920867409557104, + -0.017553357407450676, + -0.011570857837796211, + 0.025464333593845367, + -0.04037131369113922, + -0.007062868680804968, + 0.011472322978079319, + 0.03609206900000572, + -0.016131633892655373, + 0.030517786741256714, + -0.0044340877793729305, + -0.010909263975918293, + 0.007650561165064573, + 0.002623502165079117, + 0.027294274419546127, + -0.006823568604886532, + -0.00366692035458982, + 0.0019759845454245806, + -0.03130606934428215, + -0.019003234803676605, + -0.012619554996490479, + 0.02408483996987343, + -0.00013350651715882123, + -0.002880397718399763, + -0.016286475583910942, + -0.02505611628293991, + -0.00014813285088166595, + 0.00677782017737627, + -0.01283774059265852, + 0.007988397032022476, + 0.035754233598709106, + 0.010388434864580631, + -0.00035477103665471077, + -0.028012175112962723, + 0.016399087384343147, + -0.0009571999544277787, + -0.013633061200380325, + -0.00994502566754818, + -0.006373121868818998, + -0.008818908594548702, + -0.004310918971896172, + -0.020748715847730637, + -0.005648183636367321, + 0.005919155664741993, + -0.018383869901299477, + 0.0008076374651864171, + -0.014372075907886028, + 0.006855240557342768, + -0.0031777629628777504, + -0.006626497954130173, + 0.0007860828773118556, + -0.018017880618572235, + -0.003031719708815217, + 0.010219517163932323, + 0.015427811071276665, + -0.024563439190387726, + -0.001663662726059556, + 0.008847061544656754, + 0.008361423388123512, + 0.018186798319220543, + -0.016187939792871475, + -0.016497623175382614, + -0.002002377761527896, + -0.008903367444872856, + -0.005422960035502911, + -0.018102340400218964, + 0.033192314207553864, + -0.00952273141592741, + 0.06632832437753677, + 0.00708398362621665, + 0.0004262531001586467, + -0.0010592543985694647, + 0.008291040547192097, + -0.009762031957507133, + 0.01421019621193409, + 0.0016020782059058547, + 0.00899486429989338, + 0.007896899245679379, + 0.012063534930348396, + -0.009733879007399082, + 0.012633631937205791, + 0.008319193497300148, + -0.01583602838218212, + -0.0031232167966663837, + 0.026632681488990784, + 0.0350504107773304, + 0.00884002260863781, + 0.0267312154173851, + 0.017637817189097404, + -0.010247670114040375, + -0.024774586781859398, + 0.011760890483856201, + -0.0148506760597229, + 0.014329846017062664, + 0.020213810727000237, + 0.02070648781955242, + 0.03322046995162964, + 0.011704584583640099, + -0.003726745257154107, + 0.005855811294168234, + 0.004462240729480982, + 0.005806543864309788, + 0.00765759963542223, + 0.01196499913930893, + 0.01759558729827404, + 0.008298078551888466, + -0.0041666352190077305, + 0.0025865512434393167, + -5.0174916395917535e-5, + -0.006024728994816542, + 0.03139052912592888, + 0.027899563312530518, + -0.0140201635658741, + 0.00055206153774634, + 0.010008369572460651, + -0.00035609069163911045, + -0.0043003614991903305, + 0.011190793476998806, + -0.007770211435854435, + -0.018172722309827805, + 0.01934107020497322, + -0.0061514172703027725, + -0.002521447604522109, + -0.02224082313477993, + -0.006063439417630434, + -0.0008797793416306376, + -0.01215503178536892, + -0.0028152938466519117, + -0.003225271124392748, + -0.0023067814763635397, + 6.389397458406165e-5, + -0.018088264390826225, + -0.012549173086881638, + -0.014991439878940582, + -0.0009994293795898557, + -0.018017880618572235, + -0.005408883560448885, + 0.003285096026957035, + -0.008755563758313656, + 0.018707627430558205, + -0.0025196881033480167, + -0.043693363666534424, + 0.006214761175215244, + 0.021142857149243355, + 0.008354384452104568, + -0.004592448472976685, + 0.014034240506589413, + 0.022283051162958145, + 0.002180093200877309, + -0.004219421651214361, + -0.003702111542224884, + -0.011204869486391544, + 0.007861708290874958, + 0.0025179286021739244, + 0.0194255281239748, + -0.024577517062425613, + 0.007376070134341717, + -0.03414951637387276, + 0.0006039685104042292, + 0.010444740764796734, + 0.0067567056976258755, + 0.006158455740660429, + 0.018158646300435066, + 0.004641715902835131, + -0.00453262310475111, + -0.0026199829299002886, + 0.005933232139796019, + -0.009107476100325584, + -0.004958436358720064, + 0.026182234287261963, + -0.01813049241900444, + 0.00621124217286706, + 0.009396043606102467, + 0.0003692873870022595, + 0.010416587814688683, + -0.0028839167207479477, + -0.022817958146333694, + 0.0038076851051300764, + -0.0013891715789213777, + -0.003670439589768648, + 0.0026076659560203552, + 0.0056411451660096645, + -0.03147498518228531, + -0.00463115843012929, + 0.005876926239579916, + 0.013428952544927597, + -0.012577326036989689, + -0.008741487748920918, + -0.015638958662748337, + 0.008164352737367153, + 0.008044702932238579, + -0.004888053983449936, + 0.011789043433964252, + 0.0035842210054397583, + -0.0029842115473002195, + -0.014709911309182644, + -0.012105763889849186, + 0.006207723170518875, + 0.0019161594100296497, + 0.01958036981523037, + 0.013640099205076694, + -0.003191839437931776, + 0.01172569952905178, + -0.003944930620491505, + -0.001391810947097838, + 0.012197260744869709, + 0.011162640526890755, + -0.030658550560474396, + 0.03040517494082451, + 0.005852292291820049, + -0.0010117462370544672, + 0.01707475818693638, + -0.003962526097893715, + 0.025168728083372116, + -0.004134962800890207, + -0.02407076396048069, + 0.012661784887313843, + -0.004303880501538515, + 0.03153129294514656, + -0.03406505659222603, + -0.0006439985008910298, + 0.0008582247537560761, + 0.010726270265877247, + 0.012288758531212807, + -0.017694123089313507, + 0.019552215933799744, + -0.013217804953455925, + 0.006482214201241732, + 0.007186037953943014, + -0.004599486477673054, + -0.002919107908383012, + -0.004909168928861618, + -0.005327943712472916, + -0.010339166969060898, + 0.0234654750674963, + 0.029813962057232857, + 0.0009528010268695652, + -0.0012607238022610545, + -0.010796652175486088, + -0.011211908422410488, + -0.002486256416887045, + -0.022986875846982002, + -0.021213239058852196, + -0.020509416237473488, + 0.002590070478618145, + 0.009607190266251564, + -0.014977363869547844, + 0.017947498708963394, + -0.006239395122975111, + -0.004469279199838638, + 0.006478695198893547, + -0.010564390569925308, + -0.026463763788342476, + -0.01309815514832735, + 0.0240003801882267, + -0.017018452286720276, + -0.010268785059452057, + 0.003695073304697871, + -0.022198593243956566, + 0.007062868680804968, + -0.004054023418575525, + -2.547236181271728e-5, + -0.015470040030777454, + -0.0064857336692512035, + 0.009628305211663246, + 0.021818527951836586, + 0.007383108604699373, + -0.01798972859978676, + -0.016596157103776932, + 0.005722085013985634, + 0.0004671628412324935, + 0.0013231881894171238, + -0.003244626335799694, + -0.020143428817391396, + -0.015878258273005486, + -0.008635913953185081, + -0.0016073569422587752, + 0.0024334697518497705, + -0.020509416237473488, + -0.03879475221037865, + 0.0032657410483807325, + -0.007939129136502743, + -0.028068481013178825, + 0.02018565684556961, + -0.0008718613535165787, + 0.02027011662721634, + -0.013949781656265259, + -0.0037197070196270943, + 0.002758988179266453, + 0.009325660765171051, + 0.033023398369550705, + -0.023113563656806946, + -0.0015616083983331919, + 0.010874073021113873, + 0.015146281570196152, + 0.011021875776350498, + 0.007221228908747435, + -0.01016321126371622, + 0.027913639321923256, + -0.005384249612689018, + -0.010508084669709206, + 0.0014648326905444264, + -0.001723487745039165, + 0.04203233867883682, + 0.0031900799367576838, + -0.011950923129916191, + -0.0006228837883099914, + -0.005342020187526941, + -0.011176716536283493, + -0.01927068643271923, + -0.0022979837376624346, + -0.012985543347895145, + 0.0011780245695263147, + -0.0007157005020417273, + -8.95725388545543e-5, + -0.005451112985610962, + -0.008628875948488712, + -2.9445114705595188e-5, + -0.01653985120356083, + -0.017468899488449097, + -0.019369222223758698, + 0.009508655406534672, + 0.007147327531129122, + -0.0014041278045624495, + -0.005071048159152269, + 0.006313296500593424, + -0.003589499741792679, + -0.011458246037364006, + -0.0038147233426570892, + 0.005282195284962654, + -0.013168537057936192, + -0.010029484517872334, + 0.01154270488768816, + 0.012584364041686058, + -0.02743504010140896, + 0.01987597532570362, + 0.018088264390826225, + 0.00883298460394144, + 0.009403081610798836, + 0.0032991725020110607, + 0.016666540876030922, + 0.010437702760100365, + -0.011972037144005299, + -0.010015408508479595, + 0.009952063672244549, + -0.02674529328942299, + 0.006872836500406265, + 0.007594255264848471, + -0.006904508452862501, + -0.0020657218992710114, + -0.000977434916421771, + -0.012429522350430489, + 0.010775537230074406, + -0.022142287343740463, + 0.024324139580130577, + 0.011810158379375935, + -0.003582461504265666, + 0.006362564396113157, + 0.0029930092860013247, + -0.0018651322461664677, + 0.019453682005405426, + -0.010381396859884262, + -0.014428381808102131, + 0.014006087556481361, + -0.0010249429615214467, + 0.013548602350056171, + 0.02528133988380432, + -0.0031021020840853453, + 0.013421913608908653, + -0.010479931719601154, + -0.01842609979212284, + -0.00575375696644187, + 0.018468327820301056, + 0.01036028191447258, + 0.015934564173221588, + 0.004370743874460459, + -0.019312916323542595, + 0.014653605408966541, + 0.011225984431803226, + 0.0004957556957378983, + 0.024549363180994987, + 0.004405934829264879, + -0.0035173578653484583, + 0.0069819288328289986, + 0.011591972783207893, + 0.012570287100970745, + -0.021002093330025673, + 0.01196499913930893, + 0.007080464158207178, + 0.007069907151162624, + -0.022606810554862022, + 0.01583602838218212, + -0.0034487349912524223, + 0.0153855811804533, + 0.010071714408695698, + -0.00031826019403524697, + 0.001562488148920238, + -0.03755602240562439, + 0.020382728427648544, + 0.013548602350056171, + -0.02278980426490307, + 0.005222370382398367, + -0.020382728427648544, + 0.026266692206263542, + -0.023409169167280197, + 0.0020815578754991293, + -0.009874643757939339, + -0.004842305555939674, + -0.002850485034286976, + 0.0018651322461664677, + -0.01798972859978676, + -0.0151181286200881, + 0.000747372570913285, + 0.025872550904750824, + 0.004891573451459408, + -0.01081776712089777, + 0.017328133806586266, + 0.017243675887584686, + -0.010071714408695698, + -0.010113943368196487, + 0.004761365707963705, + -0.005891002714633942, + 0.0017534003127366304, + -0.002539043314754963, + -0.009966140612959862, + 0.03578238561749458, + -0.005883964244276285, + 0.006439984776079655, + -0.00508160563185811, + 0.011817196384072304, + -0.007826517336070538, + 0.003140812274068594, + 0.010149134323000908, + 0.01714514009654522, + 0.004064580425620079, + 0.032938938587903976, + -0.011620125733315945, + -0.0032710195519030094, + 0.008361423388123512, + -0.018172722309827805, + -0.006517405621707439, + -0.02225489914417267, + -0.02911013923585415, + 0.017229599878191948, + -0.009142667055130005, + 0.01062069647014141, + -0.01844017580151558, + 0.0014533954672515392, + 0.026308922097086906, + -0.00018486363114789128, + -0.0033501998987048864, + -0.014808446168899536, + 0.015653034672141075, + 0.02186075784265995, + 0.032347727566957474, + 0.024732356891036034, + 0.01652577519416809, + -0.0063273729756474495, + -0.023592162877321243, + 0.0015836028615012765, + 0.008945596404373646, + -0.02139623463153839, + 0.004187749698758125, + 0.002539043314754963, + -0.006865798030048609, + 0.028082557022571564, + 0.0053596156649291515, + -0.009269355796277523, + -0.001519378973171115, + -0.0047156172804534435, + 0.018482405692338943, + 0.020453110337257385, + 0.004828229080885649, + -0.020833175629377365, + -0.004536142572760582, + 0.009628305211663246, + 0.008466996252536774, + -0.02345139905810356, + -0.0026604528538882732, + 0.0011841830564662814, + -0.01401312556117773, + -0.0037900893948972225, + 0.004895092453807592, + 0.007298649754375219, + 0.009044132195413113, + -0.010430663824081421, + -0.010536237619817257, + -0.008438843302428722, + 0.008431805297732353, + -0.0025583982933312654, + 0.012169107794761658, + -0.02467605099081993, + -0.00588748324662447, + -0.012105763889849186, + 0.03738710284233093, + 0.0012167348759248853, + -0.0032780577894300222, + 0.012204299680888653, + -0.015075898729264736, + -0.00483878655359149, + -0.02095986343920231, + -0.0067039187997579575, + -0.023113563656806946, + -0.008748525753617287, + 0.01965075172483921, + -0.01020544022321701, + 0.019988587126135826, + -0.014365036971867085, + -0.016722846776247025, + -0.0267312154173851, + -0.00755906431004405, + 0.014498763717710972, + 0.008910405449569225, + 0.009705726057291031, + 0.008452920243144035, + 0.007189556956291199, + -0.005795986391603947, + -0.008452920243144035, + -0.013682328164577484, + 0.0002703122154343873, + -0.026674909517169, + -0.015216663479804993, + -0.024957580491900444, + -0.0062851435504853725, + -0.00030000475817359984, + -0.0062851435504853725, + 0.01585010439157486, + -0.02514057420194149, + 0.009177858009934425, + -0.0053314627148211, + -0.010268785059452057, + 0.022747574374079704, + -0.013478219509124756, + 0.018693551421165466, + 0.029194599017500877, + 0.014526916667819023, + 0.00643646577373147, + 0.013224842958152294, + 0.006658170372247696, + 0.010571428574621677, + 0.02042495831847191, + 0.012513981200754642, + 0.017933422699570656, + 0.0007618889212608337, + 0.019298840314149857, + 0.016244245693087578, + -0.0032076756469905376, + 0.0008881372632458806, + -0.00712621258571744, + 0.011155602522194386, + -0.006376640871167183, + -0.003082746872678399, + 0.014977363869547844, + -0.004592448472976685, + -0.0067567056976258755, + 0.0026938843075186014, + 0.006313296500593424, + 0.001732285600155592, + 0.02139623463153839, + -0.007326802704483271, + 0.016356857493519783, + 0.00355078955180943, + 0.0027906601317226887, + 0.002919107908383012, + 0.006915065925568342, + 0.0256614051759243, + 0.013689367100596428, + -0.004036427475512028, + 0.014681758359074593, + -0.008917443454265594, + -0.008635913953185081, + 0.025731787085533142, + 0.02163553424179554, + 0.018707627430558205, + -0.009762031957507133, + 0.013217804953455925, + 0.014569146558642387, + 0.01813049241900444, + -0.0023789233528077602, + 0.014062393456697464, + -0.009881681762635708, + 0.021536998450756073, + 0.01804603450000286, + 0.020790945738554, + 0.0035296748392283916, + 0.01735628768801689, + 0.004106809850782156, + 0.020439034327864647, + -0.02521095797419548, + -0.028434468433260918, + 0.0027009225450456142, + 0.016933992505073547, + 0.006341449450701475, + -0.022494198754429817, + -0.006102149840444326, + 0.0075872172601521015, + 0.013689367100596428, + -0.020016739144921303, + -0.02871599793434143, + 0.007277534808963537, + 0.004747289232909679, + 0.02117101103067398, + -0.0032622218132019043, + 0.014709911309182644, + 0.023183945566415787, + 0.010691078379750252, + 0.03215065598487854, + -0.0030070857610553503, + 0.011817196384072304, + 0.0256050992757082, + 0.0008736209128983319, + -0.007193075958639383, + -0.010937416926026344, + 0.003234068863093853, + 0.0010680521372705698, + 0.010965569876134396, + 0.0061408597975969315, + -0.004317956976592541, + -0.010923340916633606, + 0.002808255609124899, + 0.013471181504428387, + 0.009733879007399082, + 0.017257751896977425, + -0.02528133988380432, + -0.019017310813069344, + 0.004127924796193838, + 0.015892334282398224, + 0.0015035428805276752, + -0.031052691861987114, + -0.007048792205750942, + 0.01242248434573412, + 0.003225271124392748, + -0.021902987733483315, + -0.004800076130777597, + -0.0011102815624326468, + 0.019101768732070923, + 0.0014665921917185187, + 0.013654175214469433, + -0.012309872545301914, + -0.008657028898596764, + -0.011303405277431011, + 0.00607751589268446, + -0.00027954988763667643, + -0.003635248402133584, + -0.024267833679914474, + -0.01813049241900444, + 0.01943960413336754, + -0.002048126421868801, + -0.0012088168878108263, + -0.0011507513700053096, + -0.029813962057232857, + 0.003601816715672612, + -0.013414875604212284, + 0.020171580836176872, + 0.03780939802527428, + -0.001954869832843542, + 0.014146852307021618, + -0.0047684041783213615, + 0.018412021920084953, + -0.012542134150862694, + -0.005053452681750059, + -0.005292752757668495, + 0.0221563633531332, + -0.01873578131198883, + 0.0015431330539286137, + 0.004152558743953705, + -0.028279628604650497, + -0.0180601105093956, + -0.018538711592555046, + 0.008284002542495728, + -0.014921057969331741, + 0.010669964365661144, + -0.007840593345463276, + -0.0008551455102860928, + 0.007854670286178589, + -0.007340879179537296, + 0.0023877210915088654, + -0.02467605099081993, + -0.013034811243414879, + 0.0020657218992710114, + -0.00810804683715105, + -0.017708199098706245, + 0.0024844969157129526, + -0.013970896601676941, + 0.0301799513399601, + -0.007164923008531332, + 0.005475746933370829, + -0.018229028210043907, + -0.0188906230032444, + 0.013407837599515915, + 0.012035381980240345, + 0.017623739317059517, + -0.0028979931958019733, + -0.014428381808102131, + 0.0006818289984948933, + 0.004008274991065264, + 0.00989575870335102, + 0.006024728994816542, + 0.006503329146653414, + 0.021086551249027252, + -0.0029138291720300913, + -0.01729998178780079, + 0.018538711592555046, + 0.014484687708318233, + -0.023268405348062515, + -0.004215902648866177, + 0.01382309291511774, + -0.02467605099081993, + 0.0071297320537269115, + -0.008002473041415215, + -0.010254708118736744, + 0.003065151395276189, + 0.007175480481237173, + -0.006102149840444326, + 0.025689557194709778, + 0.01440022885799408, + -0.0024827374145388603, + 0.0017789138946682215, + -0.014864752069115639, + 0.019974511116743088, + -0.02010119892656803, + 0.01607532799243927, + -0.008466996252536774, + -0.04501654952764511, + 0.00860776100307703, + -0.019932281225919724, + 0.04755031317472458, + -0.013611946254968643, + -0.023831462487578392, + -0.019059540703892708, + -0.01631462760269642, + 0.0026692505925893784, + -0.00024215926532633603, + -0.005700970068573952, + 0.014498763717710972, + -0.0007821238250471652, + -0.00990983471274376, + -0.007601293735206127, + -0.01935514621436596, + 0.004244055598974228, + -0.013126308098435402, + 0.015948640182614326, + 0.018496481701731682, + -0.010486969724297523, + -0.0018721704836934805, + -0.0021026725880801678, + 0.010149134323000908, + -0.03958303481340408, + -0.010318052023649216, + 0.0029103101696819067, + -0.0015809634933248162, + -0.006482214201241732, + -1.0632958037604112e-5, + 0.010888149030506611, + 0.009156743995845318, + -0.008783716708421707, + -0.0042581320740282536, + 0.003948449622839689, + -0.00902301725000143, + 0.010198402218520641, + -0.020734639838337898, + -0.03657066822052002, + 0.011451208032667637, + 0.0010574947809800506, + -0.0175252053886652, + -0.028138862922787666, + -0.015976794064044952, + -0.005648183636367321, + -0.02170591615140438, + -0.002447546226903796, + -0.0013355050468817353, + -0.014780293218791485, + 0.0027818623930215836, + -0.02070648781955242, + 0.02338101714849472, + 0.0033150087110698223, + -0.010930378921329975, + -0.0018317006761208177, + -0.005553167313337326, + 0.023958152160048485, + 0.01766596920788288, + -0.025703633204102516, + -0.012218375690281391, + -0.022888340055942535, + 0.013055925257503986, + 0.004332033451646566, + -0.013238919898867607, + 0.004595967475324869, + -0.012563249096274376, + -0.008882252499461174, + -0.0058311778120696545, + 0.00622883765026927, + 0.006471657194197178, + -0.01576564647257328, + -0.007967282086610794, + 0.018566863611340523, + -0.004511508625000715, + 0.011627163738012314, + 0.02345139905810356, + -0.0063273729756474495, + 0.011106334626674652, + -0.003969564568251371, + -0.023493628948926926, + 0.001137554761953652, + -0.00047728029312565923, + 0.014484687708318233, + -0.024591593071818352, + 0.0023296556901186705, + -0.005679855588823557, + -0.016736922785639763, + -0.017778581008315086, + -0.0016777392011135817, + 0.012387293390929699, + -0.020087122917175293, + 0.0023472514003515244, + -0.0006822688737884164, + -0.03451550379395485, + 0.017088834196329117, + 0.010564390569925308, + -0.0221563633531332, + 0.006373121868818998, + 0.0077631729654967785, + -0.004782480653375387, + 0.012556211091578007, + 0.015272969380021095, + 0.0026111851911991835, + -0.01218318473547697, + 0.0016794988187029958, + 0.01744074560701847, + -0.012556211091578007, + -0.015610804781317711, + 0.010303976014256477, + -0.0064751761965453625, + 0.022029675543308258, + 0.0077209435403347015, + -0.005229408387094736, + -0.019397376105189323, + 0.00742533802986145, + 5.5068689107429236e-5, + -0.021649610251188278, + -0.0019179190276190639, + -0.03009549155831337, + -0.012591402046382427, + -0.021508846431970596, + 0.008312155492603779, + 0.0020921153482049704, + 0.0008846181444823742, + 0.013992010615766048, + -0.00031518095056526363, + -0.004082176368683577, + -0.027463192120194435, + 0.004585410002619028, + 0.006897469982504845, + -0.010881111025810242, + 0.015906410291790962, + 0.010409549809992313, + 0.0018246624385938048, + 0.011641240678727627, + 0.024577517062425613, + 0.003420582041144371, + -0.019284764304757118, + -0.005317386239767075, + 0.027998099103569984, + 0.008023587986826897, + 0.017412593588232994, + -0.013309301808476448, + 0.002166016725823283, + -0.008312155492603779, + 0.0010293418308719993, + 0.005989538040012121, + 0.0017437227070331573, + -0.00640127481892705, + -0.006049362942576408, + 0.023634392768144608, + -0.01398497261106968, + 0.017201445996761322, + 0.0019478314789012074, + -0.0049971467815339565, + -0.009086361154913902, + -0.019158074632287025, + 0.017553357407450676, + 0.0054968614131212234, + 0.012521020136773586, + -0.01783488690853119, + 0.001333745545707643, + 0.014681758359074593, + 0.009170820005238056, + 0.020622028037905693, + -0.026477839797735214, + 0.003888624720275402, + 0.011648278683423996, + -0.01314038410782814, + -0.0180601105093956, + -0.010219517163932323, + -0.0017516406951472163, + -0.006457580719143152, + -0.01017024926841259, + -0.030911928042769432, + -0.013238919898867607, + 0.02345139905810356, + 0.007735020015388727, + 0.0221563633531332, + 0.012633631937205791, + -7.940008799778298e-5, + -0.016159787774086, + -0.010106905363500118, + 0.018468327820301056, + -0.002514409366995096, + 0.00733384070917964, + -0.012288758531212807, + 0.022733498364686966, + 0.015174434520304203, + 0.008101007901132107, + 0.000789162062574178, + -0.01638501137495041, + -0.0005115916719660163, + -0.018496481701731682, + -0.025872550904750824, + -0.0046241204254329205, + -0.006686323322355747, + -0.0038675100076943636, + 0.012767357751727104, + -0.01531519927084446, + 0.021776298061013222, + -0.0048634205013513565, + 0.002139623509719968, + -0.00884002260863781, + -0.027772875502705574, + 0.01775042898952961, + 0.01782081089913845, + -0.0022029674146324396, + -0.02308540977537632, + 0.024464905261993408, + 0.012077610939741135, + 0.011303405277431011, + -0.016568005084991455, + -0.004866939503699541, + 0.0060599204152822495, + -0.011057066731154919, + 0.006967852357774973, + -0.013626022264361382, + 0.0006857879925519228, + -0.0002971454814542085, + -0.004567814525216818, + 0.0035191173665225506, + 0.010831843130290508, + -0.004462240729480982, + 0.0056305876933038235, + -0.0024176337756216526, + 0.007383108604699373, + -0.016019022092223167, + 0.009466425515711308, + -0.02338101714849472, + -0.008628875948488712, + 0.019031386822462082, + -0.01245767530053854, + 0.010226555168628693, + 0.03167205676436424, + 0.010106905363500118, + 0.007706867065280676, + 0.0302362572401762, + -0.00107069150544703, + -0.00010056977771455422, + -0.01417500525712967, + 0.0025689557660371065, + -0.004050503950566053, + 0.004451683722436428, + 0.002521447604522109, + 0.0035279153380542994, + 0.024098915979266167, + -0.00856553204357624, + -0.010677002370357513, + -0.022972797974944115, + -0.0002903271815739572, + -0.025872550904750824, + -0.005363135132938623, + 0.0005590997752733529, + 0.02796994522213936, + -0.008255849592387676, + -0.006464618723839521, + 0.010254708118736744, + -0.008896328508853912, + -0.004564295522868633, + 0.007270496804267168, + 0.017201445996761322, + -0.008396614342927933, + -0.013872360810637474, + -0.010719231329858303, + -0.0057889483869075775, + 0.04152558743953705, + 0.00792505219578743, + 0.006950256880372763, + 0.0108107291162014, + -0.00034685301943682134, + -0.018707627430558205, + -0.000857784878462553, + -0.001544892555102706, + -0.025408027693629265, + 0.0253657978028059, + -0.02911013923585415, + 0.00883298460394144, + -0.008854099549353123, + 0.0024510652292519808, + 0.008720372803509235, + 0.013027772307395935, + -0.010986684821546078, + -0.007488681934773922, + -0.0030950638465583324, + 0.028378162533044815, + 0.0027748241554945707, + -0.004219421651214361, + -0.0068904319778084755, + -0.016582081094384193, + 0.009726841002702713, + 0.005718566011637449, + 0.0006074876291677356, + 0.009227125905454159, + 0.006334411446005106, + -0.007354955654591322, + 0.005732642486691475, + 0.019974511116743088, + 1.0000617294281255e-5, + 0.011556781828403473, + -0.005148469004780054, + -0.0005678975721821189, + -0.028701921924948692, + -0.008959673345088959, + -0.02636522799730301, + -0.01466768141835928, + -0.016891764476895332, + 0.00676022469997406, + -0.015484116971492767, + 0.0307148564606905, + -0.01950998790562153, + 0.006774301175028086, + -0.009346775710582733, + 0.00036114943213760853, + -0.008262887597084045, + 1.4805036698817275e-5, + 0.0022874262649565935, + -0.010740346275269985, + 5.251183029031381e-5, + 0.04327106848359108, + 0.012323949486017227, + -0.030264409258961678, + 0.019383298233151436, + -0.0003857832634821534, + 0.008213619701564312, + -0.01966482773423195, + 0.0030845063738524914, + 0.022339357063174248, + -0.005074567161500454, + 0.019298840314149857, + -0.007094540633261204, + 0.010085790418088436, + -0.011852387338876724, + 0.0199604332447052, + 0.013217804953455925, + -0.011486398987472057, + -0.020678333938121796, + 0.003598297480493784, + 0.007207152433693409, + -0.0015818432439118624, + 0.006161974743008614, + 0.025858474895358086, + 0.015019592829048634, + -0.019101768732070923, + -0.00021092710085213184, + 0.016863610595464706, + 0.03420582041144371, + -0.0030880256090313196, + -0.02574586309492588, + -0.00015484116738662124, + -0.0019883012864738703, + -0.009754993952810764, + 0.0010847679805010557, + -0.022212669253349304, + 0.0005978100816719234, + 0.008255849592387676, + 0.004201826173812151, + -0.024253757670521736, + 0.013379684649407864, + -0.0055496483109891415, + 0.03657066822052002, + -0.0006149658001959324, + 0.018552787601947784, + -0.0013363847974687815, + 0.03589499741792679, + -0.014224273152649403, + 0.03474072739481926, + -0.007749096490442753, + -0.007903938181698322, + 0.0011217186693102121, + 0.0054124025627970695, + -0.0016055973246693611, + -0.024971656501293182, + -0.03153129294514656, + -0.017412593588232994, + 0.0009149705292657018, + -0.017863040789961815, + 0.01131044328212738, + 0.010536237619817257, + -0.001400608685798943, + -0.013921628706157207, + -0.0070241582579910755, + -0.0013733356026932597, + -0.008417729288339615, + 0.006359045393764973, + 0.0016654223436489701, + 0.0001366957149002701, + -0.010043561458587646, + -0.010972607880830765, + -0.014878828078508377, + -0.005384249612689018, + 0.011387864127755165, + 0.0012457675766199827, + 0.011296367272734642, + 0.01576564647257328, + 0.0025249668397009373, + -0.004958436358720064, + -0.012471752241253853, + 0.011570857837796211, + 0.0175252053886652, + 0.0006431186920963228, + -0.00025601580273360014, + 0.012323949486017227, + 0.018257182091474533, + 0.024577517062425613, + -0.01013505831360817, + -0.0002749310515355319, + 0.005141430534422398, + -0.008255849592387676, + -0.004272208549082279, + 0.006464618723839521, + -0.018341640010476112, + -0.004588929004967213, + 0.018031958490610123, + 0.008945596404373646, + 0.0037830511573702097, + 0.02528133988380432, + 0.005859330762177706, + -0.0007284572930075228, + -0.014977363869547844, + -0.008023587986826897, + -0.00990279670804739, + 0.027153510600328445, + -0.02636522799730301, + -0.020157504826784134, + 0.012126878835260868, + -0.01078257616609335, + -0.007502758409827948, + -0.006798935122787952, + 0.005936751142144203, + 0.0035877402406185865, + -0.0012114561395719647, + 0.009128591045737267, + 0.008896328508853912, + -0.00395900709554553, + 0.018144570291042328, + 0.01241544634103775, + -0.0026340594049543142, + 0.008051740936934948, + 0.009769069962203503, + -0.005486303940415382, + -0.0009466425981372595, + 0.005282195284962654, + 0.004159596748650074, + -0.00967053510248661, + -0.02255050465464592, + 0.007094540633261204, + -0.0017463620752096176, + 0.007967282086610794, + -0.01637093350291252, + 0.011514551937580109, + 0.0034434564877301455, + 0.014393189921975136, + 0.003225271124392748, + -0.02011527493596077, + -0.023859616369009018, + -0.020396804437041283, + -0.010008369572460651, + -0.015512269921600819, + -0.01124006137251854, + -0.0004044785746373236, + -0.0035771827679127455, + 0.002421152777969837, + 0.005021780729293823, + 0.014414304867386818, + -0.028321856632828712, + -0.002623502165079117, + 0.006939699407666922, + 0.014498763717710972, + -0.008755563758313656, + 0.01661023497581482, + 0.0009554403950460255, + -0.012309872545301914, + -0.001120838918723166, + 0.004025870468467474, + 0.006035286467522383, + -0.004142001271247864, + 0.004036427475512028, + 0.01535742823034525, + 0.015934564173221588, + 0.01729998178780079, + 0.027237968519330025, + 0.0030493151862174273, + 0.02094578742980957, + -0.005623549688607454, + 0.015653034672141075, + 0.009762031957507133, + 0.02674529328942299, + 0.0014401988591998816, + -0.0018580940086394548, + -0.01697622239589691, + 0.005243484862148762, + -0.0009158503380604088, + 0.0043531483970582485, + 0.00529627176001668, + -0.006088073365390301, + 0.00439889682456851, + -0.009621267206966877, + -0.008495149202644825, + -0.015216663479804993, + 0.013041849248111248, + -0.001732285600155592, + -0.0036387674044817686, + 0.0007913615554571152, + 0.02018565684556961, + 0.009691649116575718, + 0.0023842020891606808, + -0.015610804781317711, + 0.002802977105602622, + 0.006492771673947573, + 0.006834126077592373, + -0.01607532799243927, + 0.008713334798812866, + 0.0027660264167934656, + -0.008903367444872856, + -0.023972228169441223, + -0.0188906230032444, + -0.00024919750285334885, + -0.0008758203475736082, + 0.00518014095723629, + 0.01981966942548752, + 0.006813011132180691, + 0.004500951152294874, + 0.01851055771112442, + -0.009163782000541687, + -0.002929665381088853, + -0.021607380360364914, + -0.0023173389490693808, + -0.02628076821565628, + -0.00788282323628664, + 0.029419822618365288, + -0.0046346778981387615, + 0.0031021020840853453, + 0.006721514277160168, + 0.006630017422139645, + 0.033699069172143936, + 0.008896328508853912, + -0.018778011202812195, + -0.001492985524237156, + -0.012274681590497494, + 0.0071719614788889885, + -0.010311014018952847, + 0.013604908250272274, + -0.0024915351532399654, + -0.013618984259665012, + -0.03046148084104061, + -0.011824234388768673, + 0.019326992332935333, + -0.015498192980885506, + -0.015230740420520306, + -0.007098060101270676, + -0.002218803623691201, + 0.008129160851240158, + 0.008136199787259102, + 0.019904127344489098, + -0.012028343044221401, + 0.003768974682316184, + -0.021213239058852196, + -0.0062886630184948444, + -0.009593114256858826, + 0.010508084669709206, + -0.010902225971221924, + -0.008657028898596764, + 0.016624310985207558, + -0.0003215593460481614, + 0.00666872737929225, + 0.026632681488990784, + 0.008551455102860928, + 0.0049443598836660385, + 0.011458246037364006, + -0.017567433416843414, + 0.015019592829048634, + 0.004793038126081228, + 0.0008767001563683152, + 0.017032528296113014, + -0.010022446513175964, + -0.004374262876808643, + -0.0049056499265134335, + -0.014456534758210182, + -0.022353433072566986, + 0.01146528497338295, + -0.010494008660316467, + 0.012105763889849186, + -0.023732928559184074, + -0.009389005601406097, + -0.0036528438795357943, + 0.002350770402699709, + -0.004412973299622536, + 0.007418299559503794, + -0.018496481701731682, + 0.0018457771511748433, + -0.0017560395644977689, + -0.013309301808476448, + 0.026829751208424568, + -0.00837549939751625, + 0.012598440051078796, + -0.014681758359074593, + 0.014484687708318233, + 0.0011824234388768673, + 0.024549363180994987, + 0.008164352737367153, + -0.012675860896706581, + -0.023972228169441223, + -0.0040716188959777355, + 0.013611946254968643, + -0.0008762602228671312, + -0.012323949486017227, + 0.02894122153520584, + 0.021072475239634514, + -0.005144949536770582, + -0.024267833679914474, + -0.000488277553813532, + -0.019904127344489098, + -0.0034874454140663147, + 0.0007350556552410126, + -0.03879475221037865, + 0.011028913781046867, + -0.014041278511285782, + 0.0020305307116359472, + -0.0060599204152822495, + -0.028082557022571564, + 0.011599010787904263, + 0.004046984948217869, + 0.017778581008315086, + 0.010515122674405575, + 0.012739204801619053, + 0.020171580836176872, + -0.015906410291790962, + -0.0018492962699383497, + -0.01245063729584217, + -0.006144379265606403, + 0.04298953711986542, + 0.03642990440130234, + 0.001223773113451898, + -0.0014102862915024161, + -0.005085124634206295, + -0.02894122153520584, + 0.016863610595464706, + -3.3514093956910074e-5, + -0.00342938001267612, + -0.022888340055942535, + 0.004926764406263828, + -0.0010715712560340762, + -0.004585410002619028, + 0.005982499569654465, + -0.005310348235070705, + 0.01745482161641121, + -0.0035103196278214455, + -0.006239395122975111, + -0.007161404006183147, + -0.0013179094530642033, + 0.005750237964093685, + 0.00032969730091281235, + -0.008861137554049492, + 0.0010750903747975826, + 0.027533574029803276, + -0.0005203894688747823, + 0.01691991649568081, + -0.0007280174177139997, + 0.0007284572930075228, + -0.008319193497300148, + 0.01956629380583763, + -0.014287617057561874, + -0.024098915979266167, + 0.003024681471288204, + 0.010874073021113873, + 0.005732642486691475, + -0.002656933618709445, + 0.01062773447483778, + -0.006865798030048609, + 0.004237017594277859, + -0.017637817189097404, + -0.0037161880172789097, + 0.028237398713827133, + -0.005310348235070705, + -0.029363516718149185, + -0.0067144762724637985, + 0.008579608052968979, + 0.015610804781317711, + -0.0053209057077765465, + -0.012619554996490479, + -0.004469279199838638, + 0.011423055082559586, + -0.013386722654104233, + -0.00518014095723629, + -0.004701540805399418, + 0.011162640526890755, + 0.011915731243789196, + -0.011880540288984776, + -0.018341640010476112, + -0.0014789090491831303, + -0.02057979814708233, + 0.006725033279508352, + 0.004437607247382402, + 0.024352293461561203, + 0.0013566197594627738, + 0.01798972859978676, + 0.010719231329858303, + 0.012169107794761658, + 0.009234163910150528, + -0.02888491563498974, + 0.012359140440821648, + -0.0010592543985694647, + -0.006496290676295757, + -0.010958531871438026, + -0.00020377889450173825, + -0.023338787257671356, + -0.010367319919168949, + -0.0035384725779294968, + -0.004335552453994751, + 0.026646757498383522, + -0.0019900610204786062, + -0.019411452114582062, + -0.0148506760597229, + -0.003776012919843197, + 0.01534335222095251, + 0.009839452803134918, + -0.014139814302325249, + 0.007207152433693409, + 0.008875214494764805, + -0.02072056382894516, + -0.01310519315302372, + -0.009100438095629215, + 0.009051170200109482, + 0.0012519260635599494, + 0.0039378926157951355, + -0.0045150276273489, + -0.0021871314384043217, + -0.0023454916663467884, + 0.0045713335275650024, + 0.021536998450756073, + 0.008706296794116497, + -0.010845920071005821, + -0.008389576338231564, + -0.003642286639660597, + -0.023099487647414207, + -0.03986456245183945, + -0.012739204801619053, + 0.0006079275626689196, + -0.016244245693087578, + -0.004254613071680069, + -0.02208598144352436, + 0.02042495831847191, + -0.015202587470412254, + 0.02757580392062664, + 0.009424196556210518, + 0.0075872172601521015, + 0.013703443109989166, + 0.0012695216573774815, + 0.012211337685585022, + -0.0005652582622133195, + -0.008889290504157543, + 0.01531519927084446, + 0.011148563586175442, + 0.021086551249027252, + 0.008776678703725338, + 0.010888149030506611, + -0.011493437923491001, + 0.03229141980409622, + -0.013041849248111248, + -0.003821761580184102, + 0.018397945910692215, + -0.011127449572086334, + 0.008783716708421707, + 0.011106334626674652, + -0.006390717346221209, + 0.004627639427781105, + 0.028167016804218292, + -0.020889481529593468, + 4.236687527736649e-5, + 0.0069326614029705524, + -0.006105668842792511, + 0.016582081094384193, + 0.01645539328455925, + 0.014139814302325249, + -0.018763933330774307, + -0.00611270684748888, + -0.00048035953659564257, + 0.032488491386175156, + 0.01192277017980814, + 0.0077209435403347015, + 0.00609511137008667, + 0.0012017786502838135, + -0.009825375862419605, + 0.006239395122975111, + -0.00971980206668377, + 0.0016847774386405945, + -0.004367224872112274, + -0.005204774904996157, + -0.0067567056976258755, + -0.00017254673002753407, + 0.008621837943792343, + -0.0016548649873584509, + 0.007020639255642891, + 0.02605554461479187, + 0.0057256040163338184, + -0.02080502174794674, + -0.02048126421868801, + 0.005113277584314346, + -0.017637817189097404, + -0.0007262578583322465, + 0.00622883765026927, + 0.006482214201241732, + -0.011859425343573093, + 0.00453262310475111, + -0.007203633431345224, + 0.009621267206966877, + 0.003913258668035269, + 0.015976794064044952, + -0.002838168293237686, + -0.0180601105093956, + 0.0057256040163338184, + 0.02864561602473259, + 0.02056572213768959, + 0.005605954211205244, + -0.010550313629209995, + 0.023282481357455254, + -0.000619364669546485, + 0.01607532799243927, + 0.006953775882720947, + 0.010254708118736744, + 0.005510937888175249, + 0.02124139294028282, + -0.015526345930993557, + -0.012929237447679043, + -0.010881111025810242, + -0.0012167348759248853, + 0.007284573279321194, + 0.006883393507450819, + -0.019622599706053734, + 0.009424196556210518, + 0.011584934778511524, + 0.0003285975835751742, + -0.006580749526619911, + -0.01844017580151558 + ], + "2776c4fe-b24c-493f-bd44-2c252984cc06": [ + -0.045888207852840424, + -0.016878904774785042, + -0.015492172911763191, + 0.047316960990428925, + -0.007683053147047758, + -0.0001595529174664989, + 0.027216358110308647, + 0.023728517815470695, + -0.04151790216565132, + 0.01752324402332306, + 0.003321502124890685, + 0.030255960300564766, + -0.006849613506346941, + -0.025913670659065247, + -0.009419969283044338, + 0.03882848471403122, + -0.02837897092103958, + 0.007662042044103146, + 0.002412772737443447, + -0.023952635005116463, + 0.06757164746522903, + 0.011570103466510773, + -0.026712091639637947, + -0.01353814173489809, + -0.027930734679102898, + -0.0025125753600150347, + 0.0010505542159080505, + -0.0024758060462772846, + -0.014553677290678024, + 0.009931239299476147, + 0.022299764677882195, + 0.00632783817127347, + 0.0036489248741418123, + 0.00995925348252058, + 0.01676684431731701, + -0.041714005172252655, + 0.00794218946248293, + 0.0022709479089826345, + 0.018671849742531776, + -0.01160512212663889, + -0.07950594276189804, + 0.0646020770072937, + 0.006065199617296457, + -0.009546035900712013, + -0.03465428203344345, + -0.014056415297091007, + 0.016990963369607925, + 0.006415384355932474, + -0.0015679521020501852, + 0.001185375265777111, + 0.0027559539303183556, + -0.014805810526013374, + -0.025283338502049446, + 0.019106078892946243, + -0.014791803434491158, + -0.05331212282180786, + 0.010729660280048847, + 0.0716618001461029, + 0.020240677520632744, + -0.06051192060112953, + 0.002656151307746768, + -0.010603593662381172, + -0.005588948260992765, + -0.010120338760316372, + -0.03751178830862045, + -0.029415518045425415, + -0.011303963139653206, + 0.007206801790744066, + -0.0755278468132019, + 0.001033045002259314, + 0.016318608075380325, + 0.03199287876486778, + -0.0014830323634669185, + 0.024204768240451813, + 0.0019697891548275948, + -0.002769961254671216, + 0.0627531036734581, + -0.012445565313100815, + -0.008257356472313404, + 0.02602572925388813, + 0.0029292951803654432, + 0.026768121868371964, + 0.012102384120225906, + 0.015001913532614708, + 0.04684070870280266, + 0.008229341357946396, + -0.043478935956954956, + -0.03852032124996185, + 0.0033004910219460726, + -0.03835223242640495, + 0.00899274367839098, + 0.03403795510530472, + 0.009069784544408321, + -0.010834715329110622, + -0.010015283711254597, + -0.004562906920909882, + 0.03580288589000702, + -0.008152300491929054, + 0.01756526529788971, + 0.002185152843594551, + -0.01200433261692524, + 0.04283459484577179, + 0.0009341177647002041, + 0.03288935124874115, + -0.008271363563835621, + 0.006376863922923803, + -0.015085957944393158, + -0.006005668081343174, + -0.0061107235960662365, + 0.07177386432886124, + -0.005217752419412136, + -0.03871642425656319, + -0.003676939755678177, + 0.008334396407008171, + -0.012522606179118156, + -0.01493187714368105, + -0.005354324355721474, + 0.0042372350580990314, + 0.00023265398340299726, + -0.012627661228179932, + 0.014091433957219124, + 0.018013503402471542, + -0.009062780998647213, + 0.027762645855545998, + -0.006975679658353329, + -0.0035456204786896706, + -0.0065904767252504826, + -0.005322807934135199, + 0.01353814173489809, + -0.005655483342707157, + -0.03207692131400108, + -0.01046351995319128, + -0.003202439285814762, + 0.01273972075432539, + -0.01410544104874134, + -0.025073226541280746, + 0.0037049544043838978, + 0.04342290759086609, + -0.010323446244001389, + 0.04829747974872589, + -0.013068893924355507, + -0.02409270964562893, + -0.01608048379421234, + -0.008789637126028538, + -0.015576217323541641, + -0.006674521137028933, + -0.04311474412679672, + 0.04014517739415169, + 0.0026298873126506805, + 0.023686494678258896, + -0.028561066836118698, + -0.04412327706813812, + 0.02245384454727173, + 0.0028645112179219723, + -0.015576217323541641, + -0.014889854937791824, + 0.0020818482153117657, + -0.000989271909929812, + -0.011948303319513798, + 0.02921941503882408, + -0.007444927468895912, + -0.04118172451853752, + -0.0021396286319941282, + -0.00538934301584959, + 0.044151291251182556, + 0.004597925581037998, + 0.0028277416713535786, + 0.03818414360284805, + 0.01175219938158989, + 0.016346624121069908, + 0.03154464066028595, + -0.021487334743142128, + -0.027566542848944664, + 0.003957087639719248, + -0.003918567206710577, + -0.0032374579459428787, + 0.03524259105324745, + 0.04143385589122772, + 0.005932129453867674, + -0.02459697611629963, + -0.013328030705451965, + -0.011205911636352539, + 0.006212277337908745, + -0.02354642190039158, + 0.007767097558826208, + 0.014483640901744366, + 0.014469632878899574, + 0.024120723828673363, + -0.004972623195499182, + -0.011121867224574089, + 0.011647144332528114, + 0.01608048379421234, + -0.02703426219522953, + 0.02126321755349636, + -0.053760360926389694, + -0.03336559981107712, + -0.012851779349148273, + -0.011710177175700665, + -0.003757482161745429, + 0.004461353644728661, + -0.03641921281814575, + -0.012361520901322365, + -0.02333630993962288, + 0.00890869926661253, + -0.04098562151193619, + 0.03983701393008232, + 0.006257801316678524, + 0.019932515919208527, + 0.02101108431816101, + -0.03639119863510132, + 0.03137655183672905, + -0.04165797680616379, + 0.01328600849956274, + 0.00869858916848898, + -0.03580288589000702, + 0.02350439876317978, + -0.02421877533197403, + 0.025003189221024513, + 0.002298962790518999, + -0.019820455461740494, + -0.00010341392771806568, + 0.0035753860138356686, + -0.022944103926420212, + -0.016738830134272575, + -0.030760226771235466, + -0.0575423538684845, + -0.009966257959604263, + 0.022663956508040428, + -0.04266650974750519, + 0.02463899739086628, + 0.052583739161491394, + 0.0011293457355350256, + -0.004538394045084715, + -0.04529989883303642, + -0.012893801555037498, + 0.03406596928834915, + -0.01890997588634491, + 0.0006500303861685097, + 0.04067745804786682, + -0.025087233632802963, + 0.0007336370181292295, + 0.007641030941158533, + 0.011275948025286198, + -0.008320389315485954, + 0.0005314053269103169, + -0.021865535527467728, + 0.005245767533779144, + 0.011472051963210106, + 0.02101108431816101, + -0.026964224874973297, + 0.03804406896233559, + 0.002136126859113574, + 0.02927544340491295, + -0.014329559169709682, + -0.03311346843838692, + 0.07188592106103897, + 0.028070807456970215, + -0.02279002219438553, + -0.022748000919818878, + -0.015688275918364525, + 0.03852032124996185, + 0.046140339225530624, + 0.03913664445281029, + 0.018811924383044243, + -0.003946581855416298, + -0.016542727127671242, + 0.018013503402471542, + -0.03420604392886162, + 0.0010549315484240651, + 0.017999494448304176, + -0.034093987196683884, + 0.05398447811603546, + -0.012277476489543915, + -0.022888073697686195, + 0.016514712944626808, + 0.03767987713217735, + -0.011275948025286198, + -0.03507450222969055, + -0.0017159051494672894, + 0.002330479444935918, + 0.0003510601818561554, + 0.004587419796735048, + 0.012158414348959923, + 0.02235579304397106, + -0.012872790917754173, + -0.011444036848843098, + -0.00989622063934803, + -0.031684715300798416, + -0.03700752183794975, + -0.025745581835508347, + 0.011366995982825756, + 0.010365468449890614, + -0.014077425934374332, + 0.009405962191522121, + 0.007718071341514587, + 0.0063628568314015865, + -0.03597097471356392, + -0.027440475299954414, + -0.025829626247286797, + -0.005483892746269703, + -0.014987906441092491, + 0.018265634775161743, + 0.0036979508586227894, + -0.03157265484333038, + 0.013103912584483624, + -0.05793456360697746, + 0.048157405108213425, + 0.032020892947912216, + -0.02858908101916313, + -0.023224251344799995, + 0.019232146441936493, + -0.020744943991303444, + -0.010596590116620064, + -0.031068390235304832, + 0.040537383407354355, + -0.00672704866155982, + -0.01735515519976616, + 0.016528720036149025, + 0.0031061386689543724, + -0.03344964608550072, + 0.019092071801424026, + -0.02556348592042923, + -0.07687254995107651, + 0.05210748687386513, + 0.02728639356791973, + -0.014147463254630566, + 0.043899159878492355, + -0.026684077456593513, + -0.0006867998163215816, + -0.005648479796946049, + -0.018966004252433777, + 0.0295275766402483, + -0.012578635476529598, + 0.006481919437646866, + -0.019218137487769127, + -0.03246912732720375, + -0.02189354971051216, + -0.052919916808605194, + -0.02927544340491295, + -0.040201205760240555, + -0.011892273090779781, + -0.008166307583451271, + -0.0042792572639882565, + -0.003515854710713029, + 0.021207187324762344, + -0.01307589840143919, + -0.01685088872909546, + -0.010015283711254597, + -0.0054348669946193695, + 0.011086848564445972, + 0.0008461338584311306, + -0.004881575237959623, + 0.04981027543544769, + 0.01987648569047451, + 0.0657787024974823, + -0.0029152878560125828, + 0.018139569088816643, + 0.018797917291522026, + 0.02459697611629963, + -0.029975812882184982, + 0.037119582295417786, + 0.001123217516578734, + -0.016318608075380325, + 0.018055524677038193, + -0.00733987195417285, + 0.04619637131690979, + 0.004643449559807777, + -0.012858783826231956, + 0.011121867224574089, + 0.0005152092780917883, + -0.011983321979641914, + 0.008180315606296062, + -0.002300713676959276, + 0.017537251114845276, + -0.017971480265259743, + 0.002691169735044241, + 0.01330702006816864, + -0.004342290572822094, + -0.026347899809479713, + 0.02598370797932148, + -0.02888323739171028, + 0.010645615868270397, + 0.040117163211107254, + -0.007105248048901558, + 0.024204768240451813, + -0.00046136838500387967, + -0.02787470445036888, + -0.006261303089559078, + -0.0016126007540151477, + 0.03165670111775398, + -0.012417550198733807, + -0.014987906441092491, + 0.0006014422979205847, + 0.009342928417026997, + -0.04157393053174019, + 0.03162868693470955, + -0.002617630874738097, + -0.02113715000450611, + 0.02493315376341343, + 0.0035806389059871435, + 0.01444161869585514, + 0.007914175279438496, + -0.006093214266002178, + -0.012298488058149815, + 0.04216224327683449, + -0.00530529860407114, + -0.02879919297993183, + 0.007360883057117462, + 0.019554315134882927, + -0.017873428761959076, + -0.00166337750852108, + 0.037035536020994186, + 0.032917365431785583, + -0.006607986055314541, + 0.02905132621526718, + -0.01183624379336834, + 0.015758313238620758, + 0.020324721932411194, + -0.015520187094807625, + -0.006741056218743324, + 0.0580466203391552, + 0.04275055229663849, + -0.00434929458424449, + 0.012109387665987015, + 0.014651728793978691, + 0.01764930970966816, + 0.01395836379379034, + 0.032833319157361984, + -0.017593281343579292, + 0.0046749659813940525, + -0.013566156849265099, + 0.011310966685414314, + -0.00615974934771657, + -0.013363049365580082, + 0.011451040394604206, + -0.015674268826842308, + 0.013356045819818974, + 0.004090157803148031, + 0.005154719110578299, + -0.002797975903376937, + -0.017215082421898842, + 0.010897749103605747, + 0.00449637183919549, + -0.009861201979219913, + -0.00665351003408432, + -0.019190123304724693, + -0.010540560819208622, + -0.013068893924355507, + -0.04591622203588486, + -0.004794029053300619, + 0.011619129218161106, + 0.04359099641442299, + -0.04485166072845459, + 0.009125813841819763, + 0.017341148108243942, + 0.015982430428266525, + 0.009833186864852905, + -0.02063288539648056, + 0.031152434647083282, + -0.04636446014046669, + -0.017831407487392426, + 0.017004970461130142, + 0.008544507436454296, + 0.007360883057117462, + 0.03664333000779152, + -0.07541578263044357, + 0.03176875784993172, + 0.018503760918974876, + -0.00392907252535224, + 0.011822236701846123, + -0.020450787618756294, + -0.0033932900987565517, + -0.015170002356171608, + 0.04207819700241089, + 0.018083538860082626, + 0.020913032814860344, + 0.005658985115587711, + -0.01037947554141283, + 0.032357070595026016, + -0.015688275918364525, + -0.015380113385617733, + -0.004864065907895565, + 0.017032984644174576, + 0.006502930540591478, + 0.012018339708447456, + -0.02008659578859806, + -0.013566156849265099, + -0.011633137241005898, + 0.04768115282058716, + -0.024877123534679413, + 0.04000510275363922, + 0.004660958889871836, + 0.03319751098752022, + -0.00237425253726542, + -0.03902458772063255, + -0.04185407981276512, + 0.005862092599272728, + -0.052751827985048294, + -0.03899657353758812, + -0.0605679526925087, + 0.03487839922308922, + 0.0007235691882669926, + -0.034009940922260284, + 0.0016187289729714394, + -0.003489590948447585, + 0.012186428532004356, + -0.04437540844082832, + 0.007049218751490116, + -0.015254046767950058, + -0.01941424235701561, + -0.01798548735678196, + -0.02977970987558365, + -0.013110916130244732, + -0.014469632878899574, + -0.002052082447335124, + 0.021039098501205444, + 0.011170892976224422, + -0.02409270964562893, + 0.01689291186630726, + -0.027510512620210648, + -0.007725075352936983, + -0.01655673421919346, + -0.00842544436454773, + 0.0015233035665005445, + -0.009006751701235771, + 0.011458044871687889, + -0.014917870052158833, + -0.018265634775161743, + 0.01966637372970581, + -0.03992106020450592, + -0.004601427353918552, + 0.024751057848334312, + 0.02176748216152191, + 0.008873681537806988, + 0.019022034481167793, + 0.019386226311326027, + -0.008390426635742188, + 0.0034265576396137476, + 0.012774739414453506, + 0.027482498437166214, + -0.028491029515862465, + 0.0034213047474622726, + -0.009651090949773788, + -0.02400866523385048, + -0.017243096604943275, + 0.03849230706691742, + 0.00785114150494337, + 0.012186428532004356, + -0.0008115530945360661, + 0.007830130867660046, + -0.013748252764344215, + -0.010974789969623089, + -0.013510126620531082, + 0.009167836047708988, + 0.01815357618033886, + -0.032525159418582916, + 0.03849230706691742, + -0.014385588467121124, + -0.017845414578914642, + -0.010512545704841614, + -0.030480079352855682, + 0.04947409778833389, + -0.0019487780518829823, + 0.013089905492961407, + -0.025675544515252113, + -0.003200688399374485, + -0.01094677485525608, + -0.003722463734447956, + 0.012690695002675056, + 0.0011275948490947485, + 0.00861454475671053, + 0.014805810526013374, + 0.02379855513572693, + -0.004730995744466782, + -0.015071950852870941, + 0.012165417894721031, + 0.0003208567504771054, + -0.001976792933419347, + -0.031096404418349266, + -0.017957473173737526, + 0.0038940543308854103, + 0.002538839355111122, + -0.00853050034493208, + 0.014028400182723999, + 0.012956835329532623, + 0.026642054319381714, + -0.022846052423119545, + -0.004198715090751648, + 0.004794029053300619, + -0.011934295296669006, + 0.0031779264099895954, + 0.027972755953669548, + 0.0008089267066679895, + -0.007038712967187166, + -0.013335034251213074, + -0.0011442286195233464, + 0.007655038498342037, + 0.04487967491149902, + 0.01094677485525608, + -0.006303325295448303, + 0.020562848076224327, + -0.013888326473534107, + 0.021571379154920578, + 0.002178149065002799, + -0.025535469874739647, + 0.03386986628174782, + -0.007977208122611046, + 0.0007148145814426243, + -0.004044633824378252, + 0.026347899809479713, + 0.011696170084178448, + -0.013040879741311073, + 0.012557624839246273, + -0.010421497747302055, + 0.010281424038112164, + 0.015982430428266525, + 0.00022236730728764087, + 0.029331473633646965, + 0.012116392143070698, + -0.02728639356791973, + 0.022383807227015495, + -0.022033624351024628, + 0.04160194471478462, + 0.003128900658339262, + 0.022005608305335045, + 0.01288679800927639, + -0.019932515919208527, + 0.015464157797396183, + -0.029079340398311615, + -0.030564123764634132, + -7.408595411106944e-5, + -0.00043335361988283694, + 0.029583606868982315, + -0.020184647291898727, + 0.04017319157719612, + 0.023770539090037346, + -0.00466446066275239, + 0.01777537725865841, + -0.036951493471860886, + -0.03840826079249382, + -0.02304215542972088, + -0.010274420492351055, + 0.019064057618379593, + 0.03154464066028595, + 0.0009980264585465193, + 0.025367382913827896, + -0.03403795510530472, + -0.0013482111971825361, + 0.01949828676879406, + 0.032833319157361984, + -0.0288552213460207, + 0.0003156040038447827, + 0.010274420492351055, + 0.026011722162365913, + 0.003244461491703987, + -0.019302181899547577, + -0.00861454475671053, + -0.0145116550847888, + -0.0047590103931725025, + 0.005991660989820957, + 0.012690695002675056, + 0.002731440821662545, + 0.027888711541891098, + 0.0034178029745817184, + -0.00023768788378220052, + 0.027636578306555748, + 0.031348537653684616, + -0.029835740104317665, + 0.006352351047098637, + 0.019176116213202477, + 9.247065463569015e-5, + 0.015576217323541641, + 0.03717561066150665, + 0.0064223879016935825, + -0.0031341533176600933, + -0.00941296573728323, + -0.020997077226638794, + 0.01718706637620926, + -0.014959892258048058, + -0.016878904774785042, + -0.01119890809059143, + 0.010596590116620064, + -0.056954044848680496, + 0.008894692175090313, + 0.001441885600797832, + 0.007185790687799454, + -0.027566542848944664, + 0.030171915888786316, + -0.01827964372932911, + -0.0013972370652481914, + 0.014805810526013374, + 0.017327141016721725, + -0.053508225828409195, + -0.002449542284011841, + -0.003204190405085683, + 0.0034213047474622726, + -0.003514103824272752, + 0.01664077863097191, + 0.027930734679102898, + 0.003722463734447956, + -0.046896740794181824, + -0.014567685313522816, + -0.0010820708703249693, + -0.02463899739086628, + -0.005574941169470549, + -0.003943080082535744, + -0.02092703990638256, + -0.031348537653684616, + -0.018293650820851326, + 0.01815357618033886, + -0.0023882598616182804, + -0.0063383434899151325, + -0.006005668081343174, + -0.0004653079668059945, + 0.015590224415063858, + 0.0027804668061435223, + -0.008376418612897396, + 0.026123780757188797, + -0.012865787371993065, + 0.010687638074159622, + -0.006678022909909487, + 0.004930600989609957, + 0.011794221587479115, + -0.04471158608794212, + -0.02913537062704563, + 0.024414880201220512, + 0.011226922273635864, + 0.010169364511966705, + -0.0017334144795313478, + 0.0048430548049509525, + 0.022467851638793945, + -0.005543424282222986, + 0.020772958174347878, + 0.003603400895372033, + -0.006898639257997274, + 0.014063418842852116, + -0.017747363075613976, + 0.025003189221024513, + 0.020408766344189644, + -0.02134726196527481, + -0.020899025723338127, + -0.022257741540670395, + 0.004569910932332277, + -0.006583473179489374, + -0.0003825768071692437, + -0.010652619414031506, + 0.03599898889660835, + -0.0008833410101942718, + -0.00348433805629611, + -0.01701897755265236, + 0.020352736115455627, + -0.0309563297778368, + 0.01345409732311964, + 0.007395901717245579, + -0.005420859903097153, + -0.009251880459487438, + 0.00785114150494337, + 0.01790144294500351, + -0.02564753033220768, + 0.010001275688409805, + 0.00011621756129898131, + 0.023350318893790245, + 0.006664015352725983, + -0.03238508477807045, + -0.014497647993266582, + 0.0027489501517266035, + -0.009700116701424122, + 0.02371451072394848, + 0.01126894447952509, + -0.013811285607516766, + 0.03244111314415932, + 0.04535592719912529, + -0.0066184913739562035, + -0.0032724763732403517, + 0.013208968564867973, + 0.005049664061516523, + 0.024877123534679413, + -0.028645111247897148, + -0.041125696152448654, + 0.025465434417128563, + -0.04157393053174019, + -0.003687445307150483, + 0.001267668791115284, + -0.036867447197437286, + 0.0004051199648529291, + -0.0042512426152825356, + 0.042554449290037155, + 0.02421877533197403, + 0.006797085516154766, + 0.00696867611259222, + 0.025493448600172997, + 0.009693113155663013, + -0.013909338042140007, + -0.013755256310105324, + 0.022832045331597328, + -0.019008027389645576, + 0.019190123304724693, + -0.00023637468984816223, + 0.005879601463675499, + 0.017593281343579292, + -0.010911756195127964, + 0.007000192999839783, + 0.03210493549704552, + 0.03129250928759575, + -0.0065169380977749825, + -0.04387114197015762, + 0.011219918727874756, + 0.031096404418349266, + -0.03104037418961525, + 0.0011757452739402652, + -0.013089905492961407, + -1.2386417438392527e-5, + 0.020983070135116577, + 0.022762008011341095, + -0.032861337065696716, + -0.01613651216030121, + -0.0007542103412561119, + -0.014497647993266582, + 0.03403795510530472, + 0.004426334984600544, + -0.01143703330308199, + 0.009511017240583897, + 0.01234051026403904, + -0.04437540844082832, + 0.03429009020328522, + -0.04459952935576439, + 0.0030676182359457016, + -0.025619514286518097, + 0.0032637217082083225, + 0.010638612322509289, + -0.01979244127869606, + -0.005000637844204903, + 0.008544507436454296, + 3.846560503006913e-5, + 0.015155995264649391, + -0.003746976610273123, + -0.013461100868880749, + 0.009798169136047363, + -0.035690829157829285, + 0.04423533380031586, + -0.025199294090270996, + -0.033001407980918884, + -0.013342038728296757, + 0.009055777452886105, + 0.028350956737995148, + -0.0150159215554595, + 0.00899274367839098, + -0.015842357650399208, + 0.04233033210039139, + -0.0012081373715773225, + 0.010435504838824272, + -0.031096404418349266, + 0.002761206589639187, + -0.009223866276443005, + -0.009651090949773788, + 0.01578632742166519, + -0.024106716737151146, + 0.0009813926881179214, + 0.0018122059991583228, + 0.007486949674785137, + -0.007613016292452812, + 0.01676684431731701, + -0.022047631442546844, + -0.0017272861441597342, + -0.028056800365447998, + -0.021879542618989944, + -0.0014681494794785976, + 0.010267416015267372, + -0.016696808859705925, + 0.025423411279916763, + -0.012410546652972698, + 0.003120145993307233, + 0.021361269056797028, + 0.0037609839346259832, + -0.012963838875293732, + -0.012480583973228931, + 0.003515854710713029, + -0.013699227012693882, + -0.020100602880120277, + -0.014007389545440674, + -0.01271870918571949, + 0.022860059514641762, + -0.019176116213202477, + 0.008376418612897396, + -0.0694766491651535, + 0.011542088352143764, + 0.0020100604742765427, + 0.011822236701846123, + -0.01596842333674431, + -0.009405962191522121, + 0.01970839686691761, + 0.007248823996633291, + 0.00045699108159169555, + -0.017537251114845276, + -0.016710815951228142, + 0.0077741011045873165, + 0.010883741080760956, + -0.020072588697075844, + 0.004384312778711319, + -0.03490641340613365, + 0.006219280883669853, + -0.0290233101695776, + 0.007676049135625362, + 0.004275755491107702, + 0.016654785722494125, + -0.04098562151193619, + 0.007570994086563587, + 0.025703558698296547, + 0.0033127476926892996, + 0.004755508620291948, + 0.013993381522595882, + 0.019148102030158043, + 0.015282061882317066, + -0.026894187554717064, + 0.0059006125666201115, + 0.021963587030768394, + -0.012046354822814465, + 0.01613651216030121, + -0.0015635748859494925, + -0.011507070623338223, + 0.00648542121052742, + -0.009223866276443005, + 0.018139569088816643, + 0.024078702554106712, + 0.006685026455670595, + 0.004839553032070398, + -0.013089905492961407, + -0.012690695002675056, + -0.021795498207211494, + 0.010470523498952389, + 0.008705592714250088, + 0.0016668792814016342, + 0.010183371603488922, + 0.00204858067445457, + -0.017285117879509926, + -0.0020328224636614323, + 0.0038590356707572937, + 0.011212915182113647, + 0.0010724407620728016, + 0.0010890745325013995, + -0.003950083628296852, + -0.017845414578914642, + 0.02535337395966053, + -0.014371581375598907, + 0.010638612322509289, + -0.024540945887565613, + -0.02092703990638256, + 0.02054884098470211, + -0.001089949975721538, + 0.008670574054121971, + -0.010533556342124939, + 0.012158414348959923, + 0.030340004712343216, + -0.002283204346895218, + 0.024905137717723846, + 0.02808481641113758, + -0.02201961539685726, + 0.01844773255288601, + 0.03398192673921585, + 0.016948940232396126, + -0.006460908334702253, + -0.004282759502530098, + -0.010246405377984047, + -0.006072203163057566, + -0.04451548308134079, + -0.0008990992791950703, + -0.04479563236236572, + 0.0024057691916823387, + 0.0009525024797767401, + 0.003127149771898985, + -0.015548202209174633, + -0.0030308489222079515, + -0.020072588697075844, + 0.023000134155154228, + -0.012767734937369823, + -0.01571629010140896, + -0.03891252726316452, + 0.01941424235701561, + -0.008187319152057171, + -0.02363046631217003, + 0.034850385040044785, + 0.010190376080572605, + -0.00853050034493208, + -0.019176116213202477, + -0.022159690037369728, + -0.02235579304397106, + -0.020394759252667427, + -0.016920926049351692, + -0.016444675624370575, + 0.01869986392557621, + 0.024456901475787163, + -0.020016558468341827, + 0.0012501594610512257, + -0.006758565548807383, + 0.014497647993266582, + -0.0016756339464336634, + -0.01945626363158226, + -0.024540945887565613, + -0.001941774389706552, + -0.021795498207211494, + -0.008145296946167946, + -0.0061527458019554615, + -0.03854833543300629, + 0.03529861941933632, + 0.030031843110919, + 0.011212915182113647, + -0.02842099219560623, + -0.03824017196893692, + -0.013979374431073666, + 0.01079969760030508, + -0.020744943991303444, + 2.6277533834218048e-5, + -0.021753475069999695, + -0.014175478368997574, + -0.0006767319864593446, + 0.002806730568408966, + 0.0015162999043241143, + -0.03734369948506355, + -0.03916466236114502, + 0.020997077226638794, + -0.004538394045084715, + -0.01337005291134119, + 0.03244111314415932, + -0.04224628582596779, + 0.01282376516610384, + 0.0032252015080302954, + -0.01160512212663889, + 0.020240677520632744, + 0.005813066381961107, + -0.005623966921120882, + -0.00022477481979876757, + -0.0145116550847888, + 0.002815485233440995, + -0.007458935026079416, + 0.011976317502558231, + -0.01878390833735466, + -0.023266274482011795, + -0.07395901530981064, + -0.012830768711864948, + -0.021445313468575478, + 0.00673755444586277, + 0.02075895108282566, + 0.009272892028093338, + 0.014399596489965916, + 0.024653004482388496, + 0.013531138189136982, + -0.0038485301192849874, + 0.008327392861247063, + -0.013349042274057865, + 0.005116199143230915, + 0.01587037183344364, + -0.0021098630968481302, + -0.00045611560926772654, + -0.015282061882317066, + -0.01526805479079485, + -0.0030763729009777308, + -0.022902080789208412, + 0.0036629321984946728, + 0.013734245672821999, + 0.007585001178085804, + 0.008817651309072971, + 0.011402014642953873, + 0.009139821864664555, + -0.03188081830739975, + 0.010120338760316372, + -0.0004998887307010591, + -0.00649592699483037, + 0.022733991965651512, + -0.002493315376341343, + -0.002649147529155016, + -0.020478803664445877, + 0.006951166782528162, + 0.023518405854701996, + 0.0014734022552147508, + -0.027720622718334198, + -0.02143130637705326, + -0.03448619320988655, + -0.002605374436825514, + -0.0017159051494672894, + 0.0046994793228805065, + 0.0041777039878070354, + 0.005172228440642357, + 0.006765569094568491, + 0.019484277814626694, + -0.01595441624522209, + -0.026263855397701263, + -0.03137655183672905, + 0.04227430000901222, + 0.01603846065700054, + 0.010960781946778297, + -0.015366106294095516, + 0.014539670199155807, + 0.02447090856730938, + 0.014819817617535591, + 0.0004403573111630976, + -0.006839107722043991, + 0.010904752649366856, + 0.05743029713630676, + 0.016500703990459442, + 0.03613906353712082, + -0.013257994316518307, + -0.013194960542023182, + 0.018419716507196426, + 0.014266526326537132, + 0.02787470445036888, + 0.011058833450078964, + 0.00499013252556324, + -0.026165803894400597, + -0.027398454025387764, + 0.01714504510164261, + 0.02189354971051216, + -0.003508850932121277, + 0.011296959593892097, + 0.021739467978477478, + 0.03580288589000702, + 0.005781549960374832, + -0.012165417894721031, + -0.015254046767950058, + -0.0022254239302128553, + 0.0025195791386067867, + 0.0028575074393302202, + -0.020310714840888977, + -0.013426083140075207, + -0.00483254948630929, + -0.02075895108282566, + 0.02459697611629963, + -0.002729689935222268, + 0.02686617337167263, + -0.026544002816081047, + 0.012529609724879265, + 0.018727879971265793, + -0.006145742256194353, + 0.012361520901322365, + -0.015198017470538616, + 0.0017062751576304436, + -0.025507455691695213, + 0.00010007622768171132, + -0.014693750999867916, + -0.01353814173489809, + -0.0015233035665005445, + -0.01630460098385811, + -0.014861839823424816, + 0.014651728793978691, + -0.001601219642907381, + 0.002537088468670845, + -0.0009586306987330317, + -0.0003523733757901937, + -0.018013503402471542, + 0.01612250506877899, + -0.03616707772016525, + 0.023854583501815796, + -0.013103912584483624, + 0.023658480495214462, + -0.020324721932411194, + -0.01345409732311964, + -0.0040936595760285854, + -0.02961162105202675, + 0.016654785722494125, + 0.007781104650348425, + -0.010071313008666039, + -0.01152107771486044, + -0.01743919961154461, + 0.01722908951342106, + 0.0018454735400155187, + -0.015352098271250725, + 0.006072203163057566, + 0.014469632878899574, + 0.0005279034958221018, + -0.003163919085636735, + 0.005294793285429478, + 0.0058585903607308865, + -0.01743919961154461, + 0.009356936439871788, + 0.04835350811481476, + 0.006699034012854099, + 0.04384312778711319, + -0.05079079419374466, + -0.013965367339551449, + -0.0301999319344759, + 0.007963201031088829, + 0.03370177745819092, + -0.03395391255617142, + -0.019470270723104477, + -0.0021063610911369324, + -0.015436142683029175, + 0.0003418678534217179, + -0.03227302432060242, + -0.0014077426167204976, + -0.009686109609901905, + 0.015730299055576324, + -0.007122757378965616, + -0.03210493549704552, + -0.01345409732311964, + -0.014133456163108349, + 0.00850948877632618, + 0.009321917779743671, + -0.02312619984149933, + -0.011044826358556747, + 0.009349931962788105, + 0.0004539269721135497, + 0.0030290980357676744, + -0.004450847860425711, + -0.006814594846218824, + -0.019862478598952293, + 0.01912008598446846, + -0.005522413179278374, + -0.0040236227214336395, + -0.010337453335523605, + -0.010330449789762497, + -0.021249210461974144, + -0.018433723598718643, + 0.018966004252433777, + -0.028140844777226448, + 0.0023987654130905867, + 0.0007782855536788702, + 0.02189354971051216, + 0.014819817617535591, + -0.008271363563835621, + 0.01435757428407669, + 0.01979244127869606, + 0.033925898373126984, + 0.006131734699010849, + 0.02130523882806301, + -0.018265634775161743, + 0.003130651544779539, + 0.007725075352936983, + -0.0010365467751398683, + 0.021319245919585228, + 0.024610983207821846, + -0.014245514757931232, + -0.007206801790744066, + 0.004934102762490511, + -0.0072558275423944, + 0.033029425889253616, + 0.030676182359457016, + -0.017593281343579292, + -0.03465428203344345, + -0.027860697358846664, + 0.015674268826842308, + 0.011598118580877781, + -0.0029205407481640577, + 0.0047169881872832775, + 0.007627023383975029, + -0.047148872166872025, + -0.0021816508378833532, + 0.02316822111606598, + -0.014553677290678024, + -0.0016020952025428414, + -0.00459092203527689, + 0.018223613500595093, + -0.03972495719790459, + 0.013124924153089523, + 0.011934295296669006, + 0.016108497977256775, + -0.012865787371993065, + -0.004986630752682686, + -0.036615315824747086, + 0.018643835559487343, + 0.016178535297513008, + 0.008474470116198063, + -0.026305876672267914, + 0.029751695692539215, + -0.004958615638315678, + -0.011927291750907898, + -0.028995295986533165, + -0.026670068502426147, + 0.01616452820599079, + 0.001106583746150136, + -0.0005252771079540253, + 0.006121228914707899, + 0.001859480980783701, + 0.006289317738264799, + -0.011142877861857414, + 0.035102516412734985, + -0.003911563660949469, + 0.0301999319344759, + -0.007697060238569975, + -0.01200433261692524, + -0.013061890378594398, + 0.007949193008244038, + 0.011577107012271881, + 0.03227302432060242, + 0.008173312060534954, + -0.004702981095761061, + 0.005949638783931732, + 0.0145116550847888, + -0.011703173629939556, + 0.00459092203527689, + -0.01882593147456646, + -0.0036594304256141186, + 0.014833825640380383, + 0.02816886082291603, + -0.01110085565596819, + 0.03246912732720375, + -0.021781491115689278, + 0.018629828467965126, + -0.007830130867660046, + 0.011948303319513798, + 0.00021437871328089386, + 0.012032347731292248, + -0.016990963369607925, + 0.023056162521243095, + -0.012753727845847607, + 0.0011135874083265662, + 0.041125696152448654, + 0.01622055657207966, + -0.007311857305467129, + 0.044655557721853256, + 0.017089014872908592, + -0.023602450266480446, + -0.00474850507453084, + 0.009770154021680355, + -0.00673755444586277, + -0.013608179055154324, + -0.013159941881895065, + -0.013194960542023182, + -0.017046993598341942, + -0.018685856834053993, + -0.011591115035116673, + -0.0013219473185017705, + 0.030396034941077232, + 0.015520187094807625, + 0.01595441624522209, + 0.00811027828603983, + -0.0007743460009805858, + 0.02636190690100193, + -0.002764708362519741, + 0.009994272142648697, + 0.007269835099577904, + -0.0021991601679474115, + -0.00010773652320494875, + 0.010869733989238739, + 0.003676939755678177, + -0.013923345133662224, + 0.00531580438837409, + 0.01874188706278801, + -0.01526805479079485, + -0.0016099743079394102, + -0.018307657912373543, + 0.0013272000942379236, + 0.01362218614667654, + -0.02695021778345108, + -0.00013066268002148718, + -0.006292819511145353, + -0.025969699025154114, + -0.007248823996633291, + 0.005217752419412136, + -0.000622015621047467, + 0.011402014642953873, + -0.02038075216114521, + -0.009637083858251572, + -0.004881575237959623, + -0.00465395487844944, + 0.02220171131193638, + 0.001896250294521451, + 0.007655038498342037, + 0.006019675638526678, + -0.003293487476184964, + -0.016542727127671242, + -0.002251687925308943, + 0.02312619984149933, + -0.012641669251024723, + -0.00466446066275239, + 0.012816761620342731, + 0.01234051026403904, + -0.00672704866155982, + -0.01023239828646183, + -0.014721766114234924, + 0.035186562687158585, + -0.022635940462350845, + -0.021487334743142128, + 0.011864258907735348, + -0.00712625915184617, + 0.0006456531118601561, + -0.011850251816213131, + -0.0008172436500899494, + -0.007073731627315283, + -0.01701897755265236, + 0.014959892258048058, + -0.01743919961154461, + -6.948978261789307e-5, + 0.026179810985922813, + 0.023112192749977112, + 0.004671464208513498, + 0.003328505903482437, + 0.034598249942064285, + -0.007269835099577904, + -0.010386479087173939, + -0.01217242144048214, + 0.0024267802946269512, + -0.008950721472501755, + 0.025661537423729897, + 0.03381383791565895, + -0.02505921944975853, + 0.009447984397411346, + -0.019694389775395393, + -0.029079340398311615, + -0.02080097235739231, + 0.001106583746150136, + -0.0003740410611499101, + -0.009658094495534897, + -0.009539032354950905, + 0.015604231506586075, + -0.00040752749191597104, + -0.0011214666301384568, + 0.017705339938402176, + -0.007697060238569975, + 0.015450150705873966, + -0.0019347706111148, + 0.00474850507453084, + -0.011535084806382656, + -0.023182230070233345, + -0.02350439876317978, + 0.006695532239973545, + -0.018980013206601143, + 0.0010435505537316203, + 0.005627468694001436, + 0.011822236701846123, + 0.01215140987187624, + -0.06583473086357117, + -0.026501981541514397, + 0.01052655279636383, + 0.01958233118057251, + 0.030676182359457016, + -0.011892273090779781, + -0.005634472239762545, + -0.0037749914918094873, + -0.020730936899781227, + -0.00793518591672182, + 0.0030168413650244474, + -0.02239781618118286, + 0.005599454045295715, + 0.024667013436555862, + -0.010659622959792614, + -0.0005778048071078956, + -0.024106716737151146, + -0.005130206234753132, + -0.007248823996633291, + 0.0036629321984946728, + -0.006678022909909487, + 0.013356045819818974, + -0.001371848746202886, + 0.03818414360284805, + 0.004815040156245232, + 0.00583407748490572, + 0.004072648473083973, + 0.003365275217220187, + -0.014973899349570274, + 0.007907171733677387, + 0.011359992437064648, + -0.021445313468575478, + 0.0035316129215061665, + -0.00939195416867733, + 0.0058725979179143906, + 0.028308933600783348, + 0.02193557098507881, + -0.002446040278300643, + -0.008964729495346546, + 0.0010400486644357443, + 0.013650201261043549, + -0.0021151157561689615, + -0.009342928417026997, + 0.005137210246175528, + -0.021739467978477478, + -0.021655423566699028, + 0.020156633108854294, + 0.02711830660700798, + 0.012186428532004356, + -0.01206736546009779, + 0.020604869350790977, + -0.01476378832012415, + 0.02531135268509388, + -0.008229341357946396, + 0.026754112914204597, + -0.03344964608550072, + 0.003197186626493931, + -0.02287406660616398, + -0.019638359546661377, + -0.008558514527976513, + 0.008740611374378204, + -0.0016554982867091894, + 0.00523175997659564, + -0.011759202927350998, + 0.024414880201220512, + -0.013608179055154324, + 0.022509874776005745, + 0.0148478327319026, + -0.006198269780725241, + -0.020871009677648544, + 0.027174334973096848, + -0.011759202927350998, + 0.010967785492539406, + 0.02333630993962288, + -0.0015495674451813102, + 0.0004714361857622862, + -0.017004970461130142, + 0.006776074413210154, + 0.0006347098387777805, + 0.0034685798455029726, + -0.012543616816401482, + 0.008971733041107655, + 0.010015283711254597, + 0.007781104650348425, + 0.04207819700241089, + -0.010281424038112164, + -0.008096271194517612, + -0.0014322556089609861, + -0.008628551848232746, + -0.0062367902137339115, + -0.014007389545440674, + 0.008432448841631413, + 0.012760731391608715, + 0.013797278515994549, + -0.020072588697075844, + -0.013573160395026207, + -0.036615315824747086, + -0.0030396035872399807, + 0.01200433261692524, + -0.016626771539449692, + -0.009490006603300571, + 0.005991660989820957, + 0.029919784516096115, + -0.02342035435140133, + 0.03571884334087372, + 0.010673630982637405, + -0.008516492322087288, + 0.010932767763733864, + -0.003610404673963785, + 0.020436780527234077, + 0.01313893124461174, + 0.0029117860831320286, + 0.010078316554427147, + -0.03171272948384285, + -0.028112830594182014, + -0.008817651309072971, + 0.02222972735762596, + -0.017341148108243942, + 0.00020770331320818514, + -0.008012226782739162, + -0.01777537725865841, + 0.004153191111981869, + 0.006765569094568491, + -0.01727111078798771, + -0.0035893935710191727, + 0.03162868693470955, + 0.01370623055845499, + 0.004086656030267477, + -0.026838157325983047, + 0.019218137487769127, + 0.012046354822814465, + -0.016794860363006592, + -0.016248570755124092, + -0.01920413039624691, + 0.0022604423575103283, + 0.012473580427467823, + -0.023854583501815796, + -0.0040236227214336395, + 0.008334396407008171, + -0.02243983745574951, + -0.009567046537995338, + -0.020604869350790977, + 0.004055139143019915, + 0.010183371603488922, + 0.0004985755076631904, + 0.0075920051895082, + 0.0019190122839063406, + -0.0010925764217972755, + -0.01092576328665018, + 0.027342423796653748, + -0.03129250928759575, + 0.007091240957379341, + -0.009132817387580872, + 0.016108497977256775, + 0.013187956996262074, + -0.01760728843510151, + -0.013923345133662224, + -0.006551956292241812, + 0.003445817856118083, + -0.002213167492300272, + -0.03176875784993172, + 0.02657201699912548, + -0.01539412047713995, + 0.08146697282791138, + -0.011128870770335197, + -0.002815485233440995, + -0.01629059389233589, + 0.016178535297513008, + -0.0043212794698774815, + 0.019890492781996727, + 0.01029543112963438, + 0.0017771875718608499, + 0.004002611618489027, + 0.02151535078883171, + -0.01773335412144661, + 0.015113973058760166, + 0.008684581145644188, + -0.019764427095651627, + -0.00547338742762804, + 0.01416847389191389, + 0.017873428761959076, + 0.019512293860316277, + 0.013650201261043549, + 0.009742138907313347, + -0.0017553010256960988, + -0.027020253241062164, + -0.0036664342042058706, + -0.01282376516610384, + 0.015814343467354774, + 0.013405071571469307, + 0.007010698318481445, + 0.03742774575948715, + 0.034430164843797684, + -0.007809119764715433, + 0.003943080082535744, + -0.00315866619348526, + -0.006201771553605795, + 0.0048010325990617275, + 0.01659875549376011, + 0.012606650590896606, + 0.006191266234964132, + -0.0025493449065834284, + 0.015366106294095516, + 0.017215082421898842, + -0.006951166782528162, + 0.02927544340491295, + 0.018839938566088676, + -0.006303325295448303, + 0.0016143516404554248, + 0.012522606179118156, + -0.00869858916848898, + 0.012522606179118156, + 0.011710177175700665, + -0.013005861081182957, + -0.02333630993962288, + 0.011058833450078964, + 0.0024057691916823387, + -0.004755508620291948, + -0.009735135361552238, + -0.011037822812795639, + 0.002610627096146345, + -0.009574051015079021, + 0.0063383434899151325, + -0.0014856586931273341, + 0.004223227966576815, + 0.0044893682934343815, + -0.020730936899781227, + -0.013461100868880749, + -0.009195851162075996, + -0.0020783464424312115, + -0.023434361442923546, + -0.011247933842241764, + 0.009454987943172455, + -0.007234816439449787, + 0.01037947554141283, + -0.00547338742762804, + -0.036699358373880386, + 0.0005108320037834346, + 0.01183624379336834, + -0.00012037600390613079, + 0.012795750051736832, + -0.0005799934733659029, + 0.022509874776005745, + 0.020100602880120277, + 0.007168281357735395, + -0.002957310061901808, + -0.007697060238569975, + 0.0021098630968481302, + -0.01031644269824028, + 0.011766207404434681, + -0.017929458990693092, + 0.0032532161567360163, + -0.017579274252057076, + -0.009553039446473122, + 0.0151840103790164, + 0.01752324402332306, + -0.00624379375949502, + 0.015310076996684074, + 0.006142240017652512, + -0.013510126620531082, + -0.010708648711442947, + -0.009083791635930538, + -0.00016896413580980152, + 0.024877123534679413, + 0.018587805330753326, + -0.006541450973600149, + 0.017747363075613976, + 0.0070982445031404495, + 0.008348404429852962, + 0.01330702006816864, + 0.008901695720851421, + -0.018209606409072876, + -0.004419331438839436, + 0.005347320809960365, + -0.0013841051841154695, + -0.006191266234964132, + 0.008579526096582413, + -0.028519045561552048, + 0.0032199486158788204, + 0.002650898415595293, + 0.025871647521853447, + -0.017285117879509926, + -0.01706100068986416, + -0.008355407975614071, + 0.011535084806382656, + -0.0018402207642793655, + -0.020310714840888977, + 0.019260160624980927, + -0.006562462076544762, + -0.008957725018262863, + -0.008166307583451271, + 0.004864065907895565, + 0.005410354118794203, + -0.0004473610024433583, + 0.01476378832012415, + 0.014497647993266582, + -0.0006347098387777805, + -0.010659622959792614, + -0.002687667729333043, + -0.009546035900712013, + 0.004780021496117115, + 0.019218137487769127, + -0.0008150549838319421, + 0.02337833307683468, + 0.00631733238697052, + -0.004993634298443794, + 0.012438561767339706, + 0.0056729926727712154, + 0.00861454475671053, + -0.030564123764634132, + -0.02400866523385048, + 0.019862478598952293, + -0.010638612322509289, + 0.02101108431816101, + -0.03330957144498825, + 0.009798169136047363, + -0.0029713173862546682, + 0.010869733989238739, + 0.012746724300086498, + -0.003011588705703616, + 0.027510512620210648, + -0.005035656504333019, + 0.005343819037079811, + 0.023868590593338013, + -0.0038940543308854103, + 0.005991660989820957, + -0.011892273090779781, + -0.00625429954379797, + 0.0014769041445106268, + 0.023196237161755562, + 0.020857002586126328, + 0.01206736546009779, + -0.009118810296058655, + -0.002376003423705697, + -0.0023532414343208075, + 0.009637083858251572, + -0.02762257121503353, + -0.015043935738503933, + -0.01949828676879406, + 0.002460047835484147, + 0.003876545000821352, + 0.0032637217082083225, + 0.003880046773701906, + -0.01297084242105484, + -0.0036139064468443394, + 0.010106331668794155, + -0.021907556802034378, + -0.02564753033220768, + -0.010519549250602722, + 0.021417297422885895, + -0.012207440100610256, + 0.0031464097555726767, + -0.01175219938158989, + -0.021151157096028328, + -0.0012939325533807278, + -0.0069301556795835495, + -0.01100980769842863, + -0.01882593147456646, + 0.003669935977086425, + 0.001758802798576653, + 0.02585764043033123, + 4.083208750671474e-6, + -0.019932515919208527, + -0.027678601443767548, + 0.00882465485483408, + 0.021487334743142128, + 0.002209665719419718, + -0.01416847389191389, + -0.004310774151235819, + -0.00958105456084013, + -0.012466576881706715, + -0.00981217622756958, + 0.012627661228179932, + -0.032188981771469116, + -0.03888451308012009, + 0.002565103117376566, + -0.007577997632324696, + -0.03406596928834915, + 0.00974914338439703, + 0.0005826198612339795, + 0.03140456601977348, + -0.011843247339129448, + -0.005588948260992765, + 0.005599454045295715, + 0.017257103696465492, + 0.021109135821461678, + -0.002811983460560441, + 0.016234563663601875, + -0.005245767533779144, + 0.026880180463194847, + 0.01836368814110756, + 0.009623076766729355, + -0.0010137847857549787, + 0.025787603110074997, + -0.007213805336505175, + -0.009384950622916222, + 0.006481919437646866, + -0.0029975813813507557, + 0.017159052193164825, + 0.014623714610934258, + -0.015282061882317066, + -0.016108497977256775, + -0.008600536733865738, + -0.009889217093586922, + -0.01853177696466446, + 0.005939132999628782, + -0.015338091179728508, + 0.02371451072394848, + -0.0021203686483204365, + 0.00039745966205373406, + -0.0035473713651299477, + 0.001817458774894476, + -2.850722557923291e-5, + -0.015057943761348724, + -0.00730485375970602, + -0.009125813841819763, + 0.007921178825199604, + 0.008159304037690163, + 0.007500956766307354, + -0.000928864988964051, + 0.016864897683262825, + -0.02008659578859806, + -0.005701007321476936, + 0.0013534639729186893, + 0.007472942117601633, + -0.01596842333674431, + -0.011345985345542431, + 0.0017666820203885436, + 0.01798548735678196, + -0.014539670199155807, + 0.009258884005248547, + 0.027230365201830864, + 0.00876162201166153, + 0.016360631212592125, + 0.0034580742940306664, + 0.004783523268997669, + -0.0006049441290087998, + -0.023784546181559563, + -0.017593281343579292, + 0.008222337812185287, + -0.017425192520022392, + 0.01242455467581749, + -0.0010391732212156057, + -0.018251627683639526, + -0.017831407487392426, + -0.0006964298663660884, + -0.0059846569783985615, + 0.021291231736540794, + -0.02994779869914055, + 0.021109135821461678, + 0.007697060238569975, + -0.012816761620342731, + 0.017215082421898842, + 0.005217752419412136, + -0.0017894440097734332, + 0.01899402029812336, + -0.011626132763922215, + -0.007017701864242554, + 0.01452566310763359, + -0.013818289153277874, + 0.008124285377562046, + 0.01664077863097191, + 0.009868205524981022, + -0.0059251259081065655, + -0.013349042274057865, + -0.018307657912373543, + -0.0001250816130777821, + -0.0020310713443905115, + 0.0022446841467171907, + 0.02329428866505623, + -0.00459092203527689, + -0.012872790917754173, + 0.005939132999628782, + 0.00208534998819232, + -0.012291484512388706, + 0.025759588927030563, + 0.01206736546009779, + -0.01659875549376011, + 0.003676939755678177, + 0.020702920854091644, + 0.010841719806194305, + -0.004310774151235819, + 0.021417297422885895, + -0.014749781228601933, + 0.0006491549429483712, + -0.020310714840888977, + 0.018377695232629776, + 0.003475583391264081, + 0.011577107012271881, + 0.016010446473956108, + 0.003992105834186077, + -0.014238511212170124, + -0.010120338760316372, + 0.01460970751941204, + 0.030227946117520332, + -0.012039351277053356, + 0.007465938571840525, + -0.02741246111690998, + 0.006926653906702995, + -0.02745448239147663, + 0.007613016292452812, + -0.013482112437486649, + -0.0007739082793705165, + 0.003908061422407627, + 0.002575608668848872, + -0.0021501341834664345, + -0.018980013206601143, + -0.002339234109967947, + 0.017621295526623726, + 0.0004985755076631904, + -0.021417297422885895, + 0.011135874316096306, + 0.011745195835828781, + 0.011577107012271881, + -0.025367382913827896, + -0.005932129453867674, + -0.0034615760669112206, + 0.005487394984811544, + 0.00625429954379797, + -0.013103912584483624, + 0.04885777458548546, + 0.010400486178696156, + 0.00844645593315363, + -0.01248758751899004, + 0.018265634775161743, + -0.0001716999540803954, + 0.0005178356659598649, + 0.0018822429701685905, + 0.019470270723104477, + 0.005921623669564724, + 0.014294540509581566, + -0.006383867468684912, + 0.007346875499933958, + 0.003806508146226406, + -0.013405071571469307, + -0.006107221823185682, + -0.020156633108854294, + -0.017383169382810593, + 0.005974151659756899, + -0.0013482111971825361, + 0.0005966272437945008, + -0.00947599858045578, + 0.006135236471891403, + 0.020478803664445877, + 0.007970204576849937, + -0.007227812893688679, + -0.008887688629329205, + 0.012018339708447456, + 0.01613651216030121, + 0.032693248242139816, + 0.012620657682418823, + 0.004471858963370323, + -0.0002525707532186061, + -0.013608179055154324, + 0.014329559169709682, + 0.016794860363006592, + -0.008985740132629871, + -0.007718071341514587, + 0.0038520321249961853, + -0.004352796357125044, + 0.026081759482622147, + 0.010155357420444489, + -0.02379855513572693, + -0.016178535297513008, + -0.01659875549376011, + 0.02164141647517681, + 0.002496817149221897, + -0.0006101969047449529, + -0.021921563893556595, + -0.02337833307683468, + 0.016444675624370575, + 0.014637721702456474, + -0.020772958174347878, + -0.0076900566928088665, + 0.0007165655260905623, + -0.017873428761959076, + -0.005140712019056082, + 0.0018752391915768385, + 0.007683053147047758, + 0.011016812175512314, + -0.011787218041718006, + 0.0017763120122253895, + -0.004128678236156702, + 0.01452566310763359, + -0.00531580438837409, + 0.015604231506586075, + -0.013566156849265099, + 0.0010724407620728016, + -0.002414523623883724, + 0.01756526529788971, + 0.007570994086563587, + -0.01578632742166519, + 0.003564880695194006, + 0.004142685327678919, + -0.010449512861669064, + -0.012466576881706715, + -0.023826569318771362, + -0.01890997588634491, + -0.005655483342707157, + 0.02388259954750538, + -0.002999332267791033, + 0.02239781618118286, + -0.011416022665798664, + -0.01781739853322506, + -0.0051652248948812485, + -0.008474470116198063, + -0.010337453335523605, + -8.152738155331463e-5, + 0.014056415297091007, + 0.006268306635320187, + 0.0022026619408279657, + -0.0036559286527335644, + 0.0057045090943574905, + -0.004268751945346594, + -0.015198017470538616, + -0.023686494678258896, + 0.009777157567441463, + -0.031096404418349266, + -0.0033022421412169933, + 0.005119700916111469, + -0.00615974934771657, + 0.016822874546051025, + -0.013335034251213074, + 0.02220171131193638, + -0.002209665719419718, + -0.005238763522356749, + 0.02821088209748268, + -0.008285370655357838, + 0.012466576881706715, + 0.0303680207580328, + 0.020114611834287643, + -0.0017334144795313478, + 0.013965367339551449, + 0.00409716134890914, + 0.008957725018262863, + 0.012137402780354023, + 0.005627468694001436, + 0.009461991488933563, + 0.02627786248922348, + 0.024779072031378746, + 0.01983446255326271, + 0.011787218041718006, + -0.0076900566928088665, + -0.01242455467581749, + 0.01177321095019579, + -0.008320389315485954, + 0.0027156826108694077, + 0.01608048379421234, + 0.0012116391444578767, + -0.004815040156245232, + 0.010099328123033047, + 0.0016773848328739405, + 0.002171145286411047, + 0.02434484288096428, + -0.011612125672399998, + 0.026838157325983047, + -0.002418025629594922, + -0.004370305687189102, + -0.0015907142078503966, + 0.007977208122611046, + 0.01655673421919346, + 0.008817651309072971, + -0.017999494448304176, + 0.02253788895905018, + -0.005795557517558336, + -0.01878390833735466, + 0.020310714840888977, + 0.021417297422885895, + 0.019890492781996727, + -0.001487409695982933, + 0.013166946358978748, + 0.015352098271250725, + 0.01152107771486044, + 0.002610627096146345, + 0.019988544285297394, + -0.023812562227249146, + 0.022677963599562645, + 0.020744943991303444, + 0.02159939520061016, + 0.014007389545440674, + 0.012179424986243248, + -0.00972813181579113, + -0.0005265902727842331, + -0.017705339938402176, + -0.013300016522407532, + -0.008733606897294521, + 0.02138928323984146, + 0.007704064249992371, + -0.017999494448304176, + -0.02092703990638256, + 0.009111806750297546, + -0.016234563663601875, + -0.01907806470990181, + -0.026670068502426147, + 0.005235261749476194, + 0.012382532469928265, + 0.0005335939931683242, + 0.009567046537995338, + 0.01509996596723795, + 0.018349679186940193, + 0.016262579709291458, + 0.03922069072723389, + -0.0046574571169912815, + 0.00522125419229269, + 0.02050681784749031, + 0.013482112437486649, + -0.010918759740889072, + 0.010351460427045822, + -3.5428845876595005e-5, + 0.0014357573818415403, + 0.021613402292132378, + 0.0019085068488493562, + 0.017004970461130142, + -0.02434484288096428, + 0.0031183951068669558, + 0.015450150705873966, + 0.015240039676427841, + 0.0007472066790796816, + -0.015674268826842308, + -0.006944163236767054, + 0.018209606409072876, + 0.018475746735930443, + 0.0018507263157516718, + -0.01265567634254694, + -0.002960811834782362, + -0.019610345363616943, + 0.0018069532234221697, + -0.012865787371993065, + -0.0022709479089826345, + 0.003170922864228487, + 0.020408766344189644, + -0.006359354592859745, + 0.0064924247562885284, + -0.004454349633306265, + -0.005806062836199999, + -0.013594171032309532, + 0.011829240247607231, + -0.00801923032850027, + -0.0025931179989129305, + -0.026249848306179047, + -0.019554315134882927, + 0.01718706637620926, + -0.020520824939012527, + -0.0037854970432817936, + 0.013496119529008865, + -0.01827964372932911, + 0.0033565207850188017, + -0.013909338042140007, + 0.007077233400195837, + 0.03986503183841705, + 0.008306382223963737, + 0.033029425889253616, + -0.015688275918364525, + 0.02088501676917076, + -0.007234816439449787, + -0.007402905263006687, + -0.002213167492300272, + -0.004552401602268219, + -0.018937990069389343, + 0.002927544293925166, + 0.006212277337908745, + -0.023154214024543762, + -0.021445313468575478, + -0.011563099920749664, + 0.014413603581488132, + -0.009483002126216888, + 0.01370623055845499, + 0.009595061652362347, + 0.004685471765697002, + -0.004727493971586227, + -0.0035071000456809998, + 0.0008115530945360661, + -0.01680886745452881, + -0.012837772257626057, + 0.008642558939754963, + -0.015254046767950058, + -0.028659118339419365, + 0.01231949869543314, + -0.015408128499984741, + 0.02770661562681198, + 0.0057150148786604404, + -0.0029888267163187265, + -0.001410369062796235, + -0.022033624351024628, + 0.025703558698296547, + 0.021529357880353928, + 0.03176875784993172, + -0.013019868172705173, + -0.027006246149539948, + 9.281263373850379e-6, + -0.004104164894670248, + 0.010974789969623089, + -0.00034515082370489836, + 0.013762259855866432, + 0.0028662621043622494, + -0.016878904774785042, + -0.01773335412144661, + 0.010918759740889072, + -0.001244031242094934, + -0.012942827306687832, + -0.015548202209174633, + 0.011675159446895123, + -0.022607926279306412, + 0.0032164468429982662, + -0.0019137596245855093, + -0.014791803434491158, + -0.002407520078122616, + 0.004090157803148031, + -0.011976317502558231, + 0.014805810526013374, + 0.003200688399374485, + 0.007143768481910229, + -0.0023077174555510283, + -0.007192794233560562, + 0.03328155726194382, + -0.019050048664212227, + 0.0029415518511086702, + -0.005487394984811544, + -0.030087871477007866, + 0.013510126620531082, + -0.01861581951379776, + 0.062304869294166565, + -0.006639502476900816, + -0.026305876672267914, + -0.01613651216030121, + -0.01128295250236988, + 0.013447093777358532, + -0.013615182600915432, + -0.015548202209174633, + 0.009518020786345005, + 0.02493315376341343, + -0.0053508225828409195, + -0.010687638074159622, + 0.001941774389706552, + -0.006821598391979933, + -0.016780853271484375, + 0.01526805479079485, + -0.0052912915125489235, + -0.006867122836410999, + -0.013257994316518307, + -0.005161723122000694, + 0.02134726196527481, + -0.02434484288096428, + -0.018797917291522026, + 0.019400233402848244, + 0.0012510349042713642, + -0.006310328841209412, + -8.932446689868812e-6, + 0.010176368057727814, + 0.016654785722494125, + -0.02905132621526718, + -0.001033045002259314, + 0.010645615868270397, + 0.005774546414613724, + 0.005865594372153282, + -0.016794860363006592, + -0.022663956508040428, + 0.014707759022712708, + -0.004797530826181173, + -0.027048269286751747, + -0.021795498207211494, + -0.009777157567441463, + -0.003120145993307233, + -0.014182481914758682, + 0.005511907860636711, + -0.02029670774936676, + -0.014623714610934258, + -0.02674010582268238, + -0.02004457451403141, + 0.009798169136047363, + 0.012060361914336681, + 0.006849613506346941, + 0.0017377916956320405, + -0.005130206234753132, + 0.00015287751739379019, + 0.011472051963210106, + -0.022888073697686195, + -0.00482204370200634, + -0.018966004252433777, + -0.0071402667090296745, + -0.006065199617296457, + -0.013250990770757198, + 0.017453206703066826, + -0.010120338760316372, + -0.008894692175090313, + -0.0031359042041003704, + -0.00869858916848898, + -0.0028645112179219723, + -0.027006246149539948, + -0.011156885884702206, + 0.01444161869585514, + -0.013895330019295216, + 0.020016558468341827, + 0.027482498437166214, + -0.01773335412144661, + 0.016864897683262825, + 0.0031078895553946495, + -0.020492810755968094, + 0.005497900303453207, + 0.005855088587850332, + 0.01248758751899004, + -0.01903604157269001, + 0.007038712967187166, + -0.01223545428365469, + -0.028995295986533165, + -0.02105310559272766, + 0.008684581145644188, + 0.012291484512388706, + -0.02468102052807808, + -0.010057305917143822, + 0.011079845018684864, + -0.01435757428407669, + 0.01395836379379034, + -0.005095188040286303, + -0.010645615868270397, + -0.010484530590474606, + 0.0033390114549547434, + 0.0005795557517558336, + 0.0035053491592407227, + 0.005025150720030069, + -0.004762512166053057, + -0.004538394045084715, + 0.0053088003769516945, + 0.023000134155154228, + -0.004937604535371065, + -0.024793079122900963, + 0.033253543078899384, + 0.0018489754293113947, + 0.024905137717723846, + 0.0015338091179728508, + -0.010813704691827297, + -0.010001275688409805, + 0.008782632648944855, + 0.002372501650825143, + -0.011254937388002872, + -0.0011345985112711787, + -0.029639635235071182, + -0.01647268980741501, + -0.020955054089426994, + 0.001011158456094563, + 0.0056449780240654945, + 0.0038100099191069603, + -0.0028277416713535786, + 0.003120145993307233, + -0.004899084568023682, + -0.027860697358846664, + -0.0012501594610512257, + -0.007227812893688679, + -0.00794218946248293, + 0.018713872879743576, + 0.027888711541891098, + 0.0013709731865674257, + 0.02295811101794243, + 0.012557624839246273, + 0.015814343467354774, + -0.019722403958439827, + -0.011612125672399998, + 0.018713872879743576, + 0.005091685801744461, + 0.016108497977256775, + -0.009511017240583897, + -0.005869096145033836, + -0.01595441624522209, + 0.0016887658275663853, + 0.009889217093586922, + 0.0020328224636614323, + -0.017747363075613976, + -0.01580033451318741, + 0.02510124258697033, + -0.011962310411036015, + 0.015408128499984741, + 0.008222337812185287, + -0.007311857305467129, + 0.00793518591672182, + -0.02067490667104721, + 0.023770539090037346, + 0.014028400182723999, + 0.010071313008666039, + -0.01587037183344364, + -0.01802751049399376, + -0.007262831553816795, + -0.004324781242758036, + 0.018797917291522026, + -0.003044856246560812, + -0.014308548532426357, + 0.018980013206601143, + -0.004766014404594898, + -0.013699227012693882, + -0.0075219678692519665, + 0.0014191236114129424, + -0.01574430614709854, + -0.01630460098385811, + -0.027692608535289764, + -0.018377695232629776, + 0.00507417693734169, + -0.008173312060534954, + 0.02438686415553093, + 0.018335672095417976, + -0.0008439451921731234, + -0.005284287501126528, + 0.0009787663584575057, + 0.024316828697919846, + -0.003838024567812681, + -0.004394818563014269, + -0.03462626785039902, + 0.013194960542023182, + 0.02243983745574951, + 0.015113973058760166, + 0.006436395458877087, + -0.007900167256593704, + -0.0016484946245327592, + -0.008453459478914738, + -0.017299124971032143, + -0.008901695720851421, + 0.001938272500410676, + 0.011037822812795639, + 0.007486949674785137, + -0.001757051912136376, + 0.02126321755349636, + 0.001049678772687912, + 0.004457851871848106, + -0.009447984397411346, + -0.017159052193164825, + 0.009924235753715038, + 0.025745581835508347, + -0.01861581951379776, + -0.015646254643797874, + 0.010344456881284714, + 0.0015460655558854342, + 0.002239431254565716, + -0.016542727127671242, + -0.012130399234592915, + 0.007234816439449787, + -0.019218137487769127, + 0.015534195117652416, + -0.004818541929125786, + -0.001104832859709859, + -0.0058585903607308865, + 0.0037960025947541, + 0.006586974952369928, + 0.004808036610484123, + -0.0057045090943574905, + 0.006975679658353329, + 0.002486311597749591, + 0.003557876916602254, + -0.009342928417026997, + 0.007101746276021004, + -0.0012834270019084215, + -0.0007953571039251983, + 0.0029520574025809765, + -0.009202854707837105, + 0.010050301440060139, + 0.015982430428266525, + -0.0015066697960719466, + 0.003960589412599802, + 0.026894187554717064, + 0.005501402076333761, + 0.003799504367634654, + -0.033505674451589584, + 0.020058581605553627, + -0.006692030467092991, + 0.003482587169855833, + -0.004541895817965269, + -0.00037032036925666034, + 0.024078702554106712, + -0.005893609020859003, + -0.0029292951803654432, + -0.027048269286751747, + 0.0001458738261135295, + -0.05014645308256149, + -0.008082264102995396, + 0.005606457591056824, + 0.027888711541891098, + -0.01368521898984909, + -0.009167836047708988, + 0.01185725536197424, + -0.004548899829387665, + -0.002486311597749591, + 0.006138738244771957, + 0.01815357618033886, + -0.027552533894777298, + 0.0006434644456021488, + 0.0007235691882669926, + -0.01701897755265236, + 0.03378582373261452, + -0.006037184968590736, + 0.01563224568963051, + 0.023980651050806046, + -0.005105693358927965, + -0.014721766114234924, + -0.008922707289457321, + -0.02075895108282566, + -0.02017064020037651, + 0.017705339938402176, + -0.027300402522087097, + 0.0033845354337245226, + -0.020955054089426994, + -0.0016896413872018456, + 0.01393735222518444, + 0.011402014642953873, + -0.016836881637573242, + 0.0022849554661661386, + -0.001941774389706552, + 0.02690819464623928, + -0.0005462882108986378, + 0.02113715000450611, + -0.02829492650926113, + -0.00220616371370852, + 0.018055524677038193, + -0.0051126969046890736, + 0.00458041625097394, + -0.006734052207320929, + -0.006096716038882732, + 0.00030269092530943453, + 0.0046574571169912815, + 0.02222972735762596, + 0.00958105456084013, + 0.007388897705823183, + -0.002643894637003541, + -0.012746724300086498, + -0.016962949186563492, + -0.0018314660992473364, + -0.04762512445449829, + 0.006853115279227495, + -0.011976317502558231, + 0.01806953176856041, + -0.025115249678492546, + 0.01811155490577221, + -0.005109195131808519, + -4.850605546380393e-5, + -0.017509236931800842, + 0.01630460098385811, + -0.0032987401355057955, + -0.0036979508586227894, + 0.019442256540060043, + 0.0005279034958221018, + 0.030648168176412582, + 0.02021266333758831, + 0.007241820450872183, + -0.015085957944393158, + 0.01037947554141283, + 0.013384060934185982, + 0.009461991488933563, + -0.0005576692055910826, + 0.0012387784663587809, + 0.012242457829415798, + -0.0023812560830265284, + 0.01202534418553114, + 0.0034248067531734705, + 0.006303325295448303, + -0.015226032584905624, + 0.024400873109698296, + 0.0034930927213281393, + -0.0018104551127180457, + -0.028827207162976265, + 0.006408380810171366, + 0.012452568858861923, + -0.00499013252556324, + 0.01347510889172554, + 0.020576855167746544, + 0.021837519481778145, + -0.0010164112318307161, + -0.013440090231597424, + 0.006751561537384987, + 0.03120846301317215, + -0.0050811804831027985, + -0.022986125200986862, + 0.004734497517347336, + -0.010659622959792614, + -0.010113335214555264, + 0.010953778401017189, + -0.027552533894777298, + 0.0003333321074023843, + 0.023980651050806046, + 0.006751561537384987, + -0.02552146278321743, + -0.005091685801744461, + -0.0029485553968697786, + 0.04050936922430992, + 0.002610627096146345, + 0.004387814551591873, + 0.0018664846429601312, + 0.023518405854701996, + -0.013468104414641857, + 0.041545916348695755, + -0.008439452387392521, + -0.0014007389545440674, + -0.01735515519976616, + -0.0030238451436161995, + 0.002376003423705697, + -0.03126449137926102, + -0.02430281974375248, + -0.027818676084280014, + -0.009931239299476147, + -0.0016957696061581373, + 0.011458044871687889, + 0.015127980150282383, + -0.011675159446895123, + -0.017299124971032143, + -0.016150519251823425, + 0.0009997774614021182, + -0.005609959363937378, + 0.0001172024494735524, + 0.011654147878289223, + -0.006040686741471291, + -0.00918184407055378, + -0.01476378832012415, + 0.0010820708703249693, + -0.010001275688409805, + 0.0036489248741418123, + -0.0014138708356767893, + 0.01886795274913311, + 0.007178787142038345, + -0.018125561997294426, + 0.009468995034694672, + -0.004030626267194748, + 0.005743029527366161, + -0.0030728711280971766, + -0.012179424986243248, + 0.019260160624980927, + 0.014280533418059349, + 0.009504013694822788, + 0.011892273090779781, + -0.025241315364837646, + 0.006607986055314541, + 0.002258691471070051, + 0.006597480271011591, + 0.0031604173127561808, + -0.003291736589744687, + -0.025241315364837646, + 0.0021518853027373552, + 0.005091685801744461, + 0.0019172613974660635, + 0.008187319152057171, + 0.022607926279306412, + -0.005420859903097153, + 0.008901695720851421, + -0.017845414578914642, + -0.012501594610512257, + -0.008866677060723305, + 0.014553677290678024, + -0.01777537725865841, + -0.006222782656550407, + 0.014721766114234924, + 0.0015802086563780904, + 0.0024232782889157534, + -0.005235261749476194, + -0.002841748995706439, + 0.017705339938402176, + 0.0006010045763105154, + -0.001225646585226059, + 0.02000255137681961, + -0.004370305687189102, + 0.017411185428500175, + 0.007021204102784395, + 0.0018874957459047437, + 0.009447984397411346, + 0.003009837819263339, + 0.00861454475671053, + -0.007070229854434729, + 0.006471413653343916, + 0.008859673514962196, + -0.0004631193005479872, + -0.018980013206601143, + 0.006881129927933216, + -0.002778715919703245, + 0.0013989879516884685, + -0.025675544515252113, + 0.012445565313100815, + 0.0027121808379888535, + 0.009987268596887589, + -0.0015513183316215873, + -0.008712596260011196, + -0.022173697128891945, + -0.014735773205757141, + -0.012501594610512257, + -0.023028148338198662, + 0.0011144629679620266, + 0.005018147174268961, + -0.025381390005350113, + 0.0013797278515994549, + 0.015618239529430866, + 0.017803391441702843, + -0.011626132763922215, + -0.015464157797396183, + -0.005655483342707157, + -0.0018664846429601312, + 0.007479946129024029, + 0.011577107012271881, + -0.0018927485216408968, + -0.01418948546051979, + 0.005161723122000694, + -0.0023584940936416388, + 0.0025143264792859554, + -0.006961672566831112, + -0.002734942827373743, + 0.012368524447083473, + 0.00901375524699688, + 0.009658094495534897, + 0.005988158751279116, + -0.020142626017332077, + -0.002211416605859995, + -0.00539984880015254, + 0.02476506493985653, + 0.011156885884702206, + 0.016920926049351692, + 0.009714124724268913, + -0.0018122059991583228, + -0.020660899579524994, + 0.01764930970966816, + -0.005126704461872578, + 0.011500067077577114, + 0.005186235997825861, + -0.0021641417406499386, + 0.0028942767530679703, + -0.009637083858251572, + 0.008306382223963737, + -0.009658094495534897, + 0.001899752183817327, + -0.00909779965877533, + -0.008138293400406837, + -0.005368331912904978, + 0.03863237798213959, + 0.01861581951379776, + 0.007042215205729008, + 0.00033136230194941163, + 0.01183624379336834, + 0.0036979508586227894, + 0.01339106447994709, + -0.007753090001642704, + 0.006467911880463362, + 0.011864258907735348, + -0.0012063863687217236, + -0.012592642568051815, + -0.027006246149539948, + 0.021781491115689278, + 0.007444927468895912, + 0.010407490655779839, + 0.01903604157269001, + 0.016794860363006592, + -3.947785808122717e-5, + 0.015674268826842308, + -0.009230869822204113, + -0.007949193008244038, + -0.015043935738503933, + -0.011997329071164131, + -0.0009183594374917448, + 0.009532028809189796, + 0.01578632742166519, + -0.005368331912904978, + 0.013040879741311073, + -0.0024845607113093138, + 0.006772572640329599, + 0.024036679416894913, + 0.023602450266480446, + -0.004401822108775377, + 0.0015915896510705352, + -0.009405962191522121, + 0.002761206589639187, + -0.014028400182723999, + 0.01234051026403904, + 0.008047245442867279, + -0.006793583743274212, + -0.022930096834897995, + -0.01764930970966816, + 0.004632944241166115, + -0.019064057618379593, + -0.007192794233560562, + -0.0012414049124345183, + 0.011135874316096306, + 0.013314023613929749, + 0.012361520901322365, + 0.007893163710832596, + -0.009286899119615555, + 0.013909338042140007, + -0.02080097235739231, + 0.00592862768098712, + -0.00802623387426138, + 0.020618876442313194, + -0.0016064724186435342, + -0.011296959593892097, + 0.011310966685414314, + -0.009104803204536438, + -0.0014935379149392247, + 0.02910735458135605, + 0.025451427325606346, + 0.008089267648756504, + -0.006114225368946791, + -0.015254046767950058, + 0.020324721932411194, + -0.01701897755265236, + 0.003284732811152935, + 0.018293650820851326, + -0.001894499408081174, + -0.006821598391979933, + -0.011682162992656231, + -0.011423026211559772, + -0.013356045819818974, + 0.012207440100610256, + 0.004527888726443052, + 0.018727879971265793, + -0.019148102030158043, + 0.023658480495214462, + 0.010645615868270397, + 0.0017649310175329447, + -0.0035106020513921976, + 0.007795112207531929, + -0.013832297176122665, + -0.002144881524145603, + 0.004569910932332277, + -0.008663570508360863, + 0.022972118109464645, + -0.005977653432637453, + -0.016318608075380325, + -0.023994658142328262, + 0.025003189221024513, + 0.01570228300988674, + 0.01647268980741501, + 0.018475746735930443, + -0.006937159691005945, + -0.015548202209174633, + 0.005806062836199999, + 0.016612764447927475, + 0.0014558930415660143, + 0.005753535311669111, + 0.02774863876402378, + 0.007297849748283625, + -0.0067865801975131035, + -0.020240677520632744, + 0.0024302820675075054, + -0.01853177696466446, + -0.016360631212592125, + 0.005634472239762545, + -0.032020892947912216, + 0.015506180003285408, + 0.008012226782739162, + 0.007676049135625362, + 0.004310774151235819, + -0.021123142912983894, + 0.022299764677882195, + 0.0013490866404026747, + 0.024246791377663612, + 0.012921816669404507, + 0.008796640671789646, + 0.020408766344189644, + -0.01827964372932911, + -0.006741056218743324, + -0.009034765884280205, + -0.004076150245964527, + 0.04258246347308159, + 0.028659118339419365, + 0.013692223466932774, + -0.013608179055154324, + 0.009588058106601238, + -0.022215720266103745, + 0.01781739853322506, + -0.004741501063108444, + 0.0065064323134720325, + -0.019694389775395393, + 0.007084236945956945, + -0.015408128499984741, + 0.00019774494285229594, + 0.013671211898326874, + 0.0036174082197248936, + 0.006005668081343174, + 0.004601427353918552, + 0.008810647763311863, + 0.008082264102995396, + -0.009083791635930538, + 0.0010750670917332172, + -0.004072648473083973, + -0.018013503402471542, + 0.007788108661770821, + 0.018587805330753326, + -0.0007502707885578275, + 0.002220171270892024, + -0.010218390263617039, + -0.0036664342042058706, + -0.0034440667368471622, + 0.0076900566928088665, + -0.004720490425825119, + -0.02105310559272766, + -0.01206736546009779, + -0.01476378832012415, + 0.014245514757931232, + 0.00995925348252058, + 0.0014340064954012632, + -0.00794218946248293, + -0.0034878398291766644, + -0.03241309896111488, + -0.0013788524083793163, + 0.02197759412229061, + -0.004569910932332277, + -0.018041517585515976, + -0.0014707759255543351, + 0.006376863922923803, + 0.011163889430463314, + -0.005890107247978449, + -0.003521107602864504, + 0.01427352987229824, + 0.020786965265870094, + -0.006187764462083578, + 0.0036629321984946728, + -0.013068893924355507, + 0.006891635712236166, + 0.01215140987187624, + -0.014903862029314041, + -0.006135236471891403, + -0.007133263163268566, + -0.014973899349570274, + 0.018769901245832443, + 0.009468995034694672, + 0.03655928745865822, + -0.0062367902137339115, + 0.0305361095815897, + -0.001975041814148426, + 0.02333630993962288, + -0.0030991348903626204, + -0.029919784516096115, + 0.012550621293485165, + -0.0012317748041823506, + -0.0016878903843462467, + -0.015155995264649391, + -0.002854005666449666, + -0.010120338760316372, + -0.007248823996633291, + -8.132219591061585e-6, + -0.002580861561000347, + 0.03246912732720375, + 0.009006751701235771, + 0.004755508620291948, + -0.012326502241194248, + -0.012543616816401482, + 0.012018339708447456, + 0.005851586814969778, + -0.011121867224574089, + 0.014371581375598907, + -0.004429836757481098, + -0.019890492781996727, + -0.012263469398021698, + -0.010456516407430172, + -0.001497039687819779, + 0.0037679877132177353, + 0.011191903613507748, + -0.01798548735678196, + -0.006306827068328857, + 0.006303325295448303, + 0.004930600989609957, + -0.0003556563751772046, + 0.007823127321898937, + -0.027048269286751747, + -0.0029415518511086702, + 0.01103081926703453, + -0.019568322226405144, + -0.03454222157597542, + 0.008796640671789646, + 0.00787215307354927, + -0.016584748402237892, + -0.0072558275423944, + -0.004510379396378994, + 0.008656566962599754, + -0.00717178313061595, + 0.025661537423729897, + -0.004709984641522169, + 0.017201073467731476, + 0.005273782182484865, + -0.013860311359167099, + 0.0049270992167294025, + 0.008397430181503296, + -0.012039351277053356, + 0.0018857447430491447, + 0.015814343467354774, + -0.001478655030950904, + 0.010470523498952389, + -0.0012028845958411694, + -0.005662487354129553, + 0.023700503632426262, + -0.008502485230565071, + -0.010386479087173939, + 0.006446900777518749, + -0.0022009110543876886, + 0.006229786202311516, + 0.004857062362134457, + 0.002766459481790662, + 0.007753090001642704, + 0.010015283711254597, + -0.02598370797932148, + 0.013524134643375874, + 0.0022691970225423574, + -0.003876545000821352, + 0.021235201507806778, + 0.01452566310763359, + 0.001775436569005251, + -0.004272253718227148, + -0.008488478139042854, + 0.005357826594263315, + 0.026712091639637947, + 0.007049218751490116, + -0.0056729926727712154, + 0.010050301440060139, + -0.01861581951379776, + -0.01206736546009779, + 0.002297211904078722, + -0.0056029558181762695, + 0.007003694772720337, + 0.009153828956186771, + -0.009854198433458805, + -0.009321917779743671, + -0.005007641855627298, + 0.010589586570858955, + 0.0037364710588008165, + -0.002178149065002799, + 0.02795874886214733, + 0.0021974092815071344, + 0.0032111939508467913, + -0.02256590500473976, + -0.009153828956186771, + -0.00836241152137518, + -0.003634917549788952, + -0.0003180115018039942, + -0.0035456204786896706, + -0.0034440667368471622, + 0.005753535311669111, + -0.005410354118794203, + -0.013804282061755657, + 0.0010768180945888162, + -0.006156247574836016, + 0.0017833157908171415, + -0.01612250506877899, + 0.003048358019441366, + 0.02720235101878643, + 0.020857002586126328, + 0.002537088468670845, + -0.007634027395397425, + 0.017915450036525726, + -0.002451293170452118, + 0.004391316324472427, + 0.0303680207580328, + 0.001225646585226059, + 0.007028207648545504, + 0.025031205266714096, + -0.0019190122839063406, + -0.001260665012523532, + -0.014133456163108349, + 0.0026806641835719347, + 0.006488922983407974, + 0.016864897683262825, + -0.021865535527467728, + 0.010183371603488922, + 0.024120723828673363, + -0.01234051026403904, + -0.018209606409072876, + -0.022047631442546844 + ], + "8d4cc9d1-fafb-459a-b65f-7748250ff308": [ + -0.04708072915673256, + -0.02706918679177761, + -0.011263938620686531, + 0.04526420682668686, + -0.004023898858577013, + -0.030255548655986786, + 0.029094165191054344, + 0.026905402541160583, + -0.0209346953779459, + 0.026041807606816292, + 0.01815035194158554, + 0.004057399928569794, + 0.0005606843042187393, + -0.020607125014066696, + 0.012760337442159653, + 0.04892703518271446, + -0.02724786102771759, + 0.014904431067407131, + -0.0048242113552987576, + -0.008963503874838352, + 0.05354279279708862, + 0.016542280092835426, + -0.015872251242399216, + 0.006968305446207523, + -0.0245677437633276, + -0.0003008152707479894, + 0.004329134244471788, + -0.007556442636996508, + -0.008323254063725471, + 0.0020268389489501715, + 0.01868637464940548, + 0.014815093949437141, + 0.03100002557039261, + -0.009648422710597515, + 0.004362635780125856, + -0.04740830138325691, + 0.022661883383989334, + 0.003863836172968149, + 0.0024195504374802113, + -0.030389554798603058, + -0.06301254034042358, + 0.06319121271371841, + 0.0009529306553304195, + 0.002547972835600376, + -0.031238257884979248, + -0.014554526656866074, + 0.023257464170455933, + 0.011033150367438793, + -0.007936125621199608, + 0.011539394967257977, + 0.024478405714035034, + -0.030002426356077194, + -0.007485717069357634, + 0.020428450778126717, + -0.018180130049586296, + -0.04812299832701683, + 0.004180239047855139, + 0.09213648736476898, + 0.03537755087018013, + -0.054346825927495956, + -0.0030951634980738163, + -0.011062929406762123, + 0.015135219320654869, + 0.0010422678897157311, + -0.03105958364903927, + -0.02602691948413849, + -0.012901787646114826, + 0.02038378268480301, + -0.060540877282619476, + -0.008353033103048801, + 0.023376580327749252, + 0.02712874487042427, + 0.001568985404446721, + 0.0394572839140892, + -0.001120437984354794, + -0.01343781128525734, + 0.0728396400809288, + -0.0027098965365439653, + 0.009179402142763138, + 0.03234008327126503, + 0.0027936503756791353, + 0.029957758262753487, + 0.01046734768897295, + 0.02251298725605011, + 0.04904615134000778, + 0.013787715695798397, + -0.052887652069330215, + -0.05258985981345177, + 0.003221724648028612, + -0.029689745977520943, + 0.010124888271093369, + 0.05050532519817352, + 0.0081892479211092, + 0.002613114658743143, + -0.004675316158682108, + -0.004396137315779924, + 0.02566956914961338, + -0.022855445742607117, + 0.005568688735365868, + 0.015887141227722168, + -0.015179887413978577, + 0.0485399067401886, + -0.011688290163874626, + 0.02766476757824421, + 0.003443206427618861, + -0.008859277702867985, + 0.003186361864209175, + -0.023644592612981796, + -0.008330698125064373, + 0.07677047699689865, + 0.007433603517711163, + -0.022721441462635994, + -0.005587300751358271, + -0.014815093949437141, + -0.006901302374899387, + -0.02683095447719097, + 0.00019728642655536532, + -0.00017262563051190227, + -0.0173016469925642, + -0.02677139639854431, + 0.008695492520928383, + 0.011211824603378773, + -0.010847031138837337, + 0.028305018320679665, + 0.008487038314342499, + 0.017867449671030045, + -0.011174601502716541, + 0.011115042492747307, + 0.0086508234962821, + -0.007269818801432848, + -0.023406360298395157, + -0.012239202857017517, + -0.02298945188522339, + 0.01201586052775383, + -0.03454373776912689, + -0.00815946888178587, + -0.023748818784952164, + 0.043596576899290085, + -0.02118781767785549, + 0.06640735268592834, + -0.02446351759135723, + -0.041958726942539215, + -0.0010534350294619799, + -0.03421616554260254, + -0.02531222067773342, + -0.003298033494502306, + -0.03895103931427002, + 0.05529975891113281, + 0.007943570613861084, + 0.030374664813280106, + -0.011137377470731735, + -0.047944325953722, + 0.01576802507042885, + -0.0007854233263060451, + -0.025699349120259285, + -0.03778965771198273, + -0.010035551153123379, + 0.01216475572437048, + -0.01832902617752552, + 0.030419332906603813, + -0.021024033427238464, + -0.03796833008527756, + -0.006100989878177643, + -0.014435410499572754, + 0.02695007063448429, + -0.0049209934659302235, + 0.02220030687749386, + 0.043834809213876724, + -0.00023776736634317786, + 0.009276184253394604, + 0.04583000764250755, + -0.019937096163630486, + -0.030970247462391853, + 0.004511530976742506, + -0.009328298270702362, + 0.008449815213680267, + 0.023138348013162613, + 0.05970706045627594, + 7.613441266585141e-5, + -0.011919078417122364, + -0.007705337833613157, + 0.011092708446085453, + 0.007556442636996508, + -0.0254908949136734, + -0.0068268547765910625, + -0.02081557922065258, + 0.03618158772587776, + 0.007318209856748581, + 0.0061196014285087585, + 0.000488563091494143, + -0.014517303556203842, + 0.0042472416535019875, + -0.024865534156560898, + 0.02936217561364174, + -0.06992128491401672, + -0.0263991579413414, + -0.013303805142641068, + -0.033293016254901886, + -0.014695977792143822, + 0.01207541860640049, + -0.026354487985372543, + -0.02208119072020054, + -0.02991309016942978, + 0.026592722162604332, + -0.0327867716550827, + 0.029987536370754242, + 0.020532678812742233, + 0.009499527513980865, + 0.005416070576757193, + -0.03636026009917259, + 0.017197420820593834, + -0.057443853467702866, + 0.013207023032009602, + -3.89105589420069e-5, + -0.023287244141101837, + 0.03671760857105255, + -0.0029983813874423504, + 0.026414046064019203, + 0.011598953045904636, + -0.0068603563122451305, + 0.0007565748528577387, + 0.01596158929169178, + -0.011643622070550919, + -0.011062929406762123, + -0.02135160192847252, + -0.05720561742782593, + -0.00749316206201911, + 0.029019717127084732, + -0.035407330840826035, + 0.006015374790877104, + 0.057503409683704376, + -0.005751085467636585, + -0.018001455813646317, + -0.05491263046860695, + -0.010214225389063358, + 0.01959463767707348, + -0.007794674951583147, + 0.006998084485530853, + 0.0467233806848526, + -0.015470233745872974, + -0.0029369620606303215, + -0.0007933333981782198, + 0.000352696020854637, + -0.007061365060508251, + 0.011732959188520908, + -0.0009431593935005367, + -0.008903945796191692, + 0.001320516224950552, + 0.024001941084861755, + -0.014003613963723183, + 0.05202405899763107, + -0.015678687021136284, + 0.02233431302011013, + -0.002062201499938965, + -0.032191190868616104, + 0.0630721002817154, + 0.03442462161183357, + -0.01771855540573597, + -0.015246890485286713, + -0.011814851313829422, + 0.028171012178063393, + 0.050207532942295074, + 0.00659978948533535, + 0.015321338549256325, + 0.0003403656301088631, + -0.01911817118525505, + 0.03609224781394005, + -0.03752164542675018, + -0.0024939982686191797, + 0.03454373776912689, + -0.016348715871572495, + 0.06348900496959686, + -0.022423649206757545, + -0.021455829963088036, + 0.016184931620955467, + 0.025103766471147537, + -0.011301161721348763, + -0.029272839426994324, + -0.01283478457480669, + 0.011092708446085453, + 0.00916451308876276, + 0.00749316206201911, + 0.002497720532119274, + 0.03254853934049606, + -0.010579019784927368, + -0.011673401109874249, + 0.003236614167690277, + -0.03627092391252518, + -0.04041021689772606, + -0.016720956191420555, + 0.00871038157492876, + 0.007057642564177513, + 0.008315809071063995, + 0.015619128942489624, + -0.004980551544576883, + 0.0055612437427043915, + -0.023451028391718864, + -0.013519703410565853, + 0.005643136333674192, + -0.00804035272449255, + -0.03009176440536976, + 0.019937096163630486, + -0.003968062810599804, + -0.04556199908256531, + 0.020711353048682213, + -0.047557197511196136, + 0.03695584088563919, + 0.013832383789122105, + -0.01150217093527317, + -0.032488979399204254, + 0.02020510844886303, + -0.023331912234425545, + -0.015559570863842964, + -0.03817678615450859, + 0.05690782889723778, + -0.025892913341522217, + 0.009186847135424614, + 0.016125373542308807, + -0.020785801112651825, + -0.024597523733973503, + 0.028677256777882576, + -0.018552368506789207, + -0.07295875251293182, + 0.06938526779413223, + 0.019862648099660873, + -0.001905861310660839, + 0.018224798142910004, + -0.010422679595649242, + -0.011360720731317997, + -0.0012255953624844551, + -0.0038712809327989817, + 0.004228629637509584, + -0.004634369630366564, + -0.007619722746312618, + 0.010727914981544018, + -0.02227475494146347, + -0.038266122341156006, + -0.05419793352484703, + -0.01643805392086506, + -0.02233431302011013, + -0.007366600912064314, + 0.0005876715877093375, + -0.0175994373857975, + -0.0069087473675608635, + 0.016125373542308807, + -0.0106162428855896, + -0.020041322335600853, + 0.02543133683502674, + 0.00358837959356606, + 0.0009082620381377637, + 0.0009254780597984791, + 0.0013633236521854997, + 0.040439996868371964, + 0.03147649019956589, + 0.05047554522752762, + 0.01204563956707716, + 0.010757694020867348, + 0.007187926210463047, + 0.038504354655742645, + -0.012082862667739391, + 0.03612202778458595, + 0.01862681657075882, + -0.013765381649136543, + 0.03707495704293251, + -0.010809807106852531, + 0.022408761084079742, + 0.009879210963845253, + 0.004180239047855139, + 0.004626925103366375, + -0.001442424370907247, + -0.008487038314342499, + 0.007046475540846586, + 0.00732565438374877, + 0.01101081632077694, + -0.0315360501408577, + 0.015001213178038597, + 0.04580023139715195, + 0.017882339656352997, + -0.030910689383745193, + 0.015500012785196304, + -0.009626088663935661, + 0.034930866211652756, + 0.025386668741703033, + -0.00048158361460082233, + 0.013973834924399853, + 0.005330455955117941, + 0.01498632412403822, + 0.006000485271215439, + 0.017852559685707092, + 0.023927493020892143, + -0.0037354137748479843, + -0.01095125824213028, + 0.00588509114459157, + 0.0025591400917619467, + -0.018954386934638023, + 0.025714239105582237, + 0.03600291162729263, + -0.032131630927324295, + 0.017450543120503426, + -0.017063414677977562, + -0.004764653276652098, + 0.021887626498937607, + 0.001206983462907374, + 0.0056319693103432655, + 0.026548052206635475, + -0.013653709553182125, + -0.03490108624100685, + -0.0037056347355246544, + 0.015678687021136284, + -0.03305478394031525, + -0.020190218463540077, + 0.02517821453511715, + 0.048629242926836014, + -0.005550076719373465, + 0.034811750054359436, + -0.014137620106339455, + 0.023987051099538803, + 0.02304900996387005, + -0.023555254563689232, + -0.008531707338988781, + 0.02118781767785549, + 0.04585978761315346, + -0.010325897485017776, + 0.006707738619297743, + 0.0013130714651197195, + 0.025744017213582993, + -0.0009124497300945222, + 0.03141693398356438, + -0.02906438522040844, + -0.014971434138715267, + 0.0028922935016453266, + 0.012968790717422962, + -0.0068901353515684605, + -0.022304533049464226, + 0.00916451308876276, + -0.01213497668504715, + 0.01724208891391754, + 0.002386049134656787, + -0.005866479594260454, + 0.007809564471244812, + -0.009626088663935661, + 0.030002426356077194, + -0.008442370221018791, + 0.0032310306560248137, + -0.011941412463784218, + -0.02785833179950714, + -0.02014555037021637, + -0.02263210341334343, + -0.051309362053871155, + 0.004567367024719715, + -0.00010562268289504573, + 0.041422706097364426, + -0.01899905502796173, + 0.008412591181695461, + 0.0163784958422184, + 0.026622500270605087, + 0.009000727906823158, + -0.015060771256685257, + 0.03287610784173012, + -0.06301254034042358, + -0.021768510341644287, + 0.014733201824128628, + 0.008509373292326927, + -0.0073554334230721, + 0.04740830138325691, + -0.06259563565254211, + 0.030329996719956398, + 0.023451028391718864, + 0.007273541297763586, + 0.018954386934638023, + -0.023093679919838905, + -0.006406225264072418, + -0.0013233079807832837, + 0.014003613963723183, + 0.016646508127450943, + 0.02371904067695141, + 0.024359289556741714, + 0.0005043832352384925, + 0.032310307025909424, + -0.013095351867377758, + -0.028900600969791412, + -0.011829741299152374, + 0.008137134835124016, + 0.0061531029641628265, + 0.015753135085105896, + 0.0069608609192073345, + -0.021574946120381355, + -0.005747362971305847, + 0.02160472422838211, + -0.012157310731709003, + 0.035705119371414185, + -0.012053083628416061, + 0.01262633129954338, + -0.013296361081302166, + -0.026041807606816292, + -0.04017198458313942, + 0.01222431380301714, + -0.04684249684214592, + -0.015931809321045876, + -0.05893280729651451, + 0.03770031780004501, + -0.0011762737995013595, + -0.03379926085472107, + 0.008196692913770676, + -0.013445256277918816, + 0.016825182363390923, + -0.029019717127084732, + 0.004917270969599485, + -0.036687832325696945, + -0.008166913874447346, + -0.00668912660330534, + -0.03180406242609024, + -0.0073554334230721, + 0.006361556705087423, + -0.0027620100881904364, + 0.03609224781394005, + 0.001206983462907374, + -0.011606398038566113, + 0.03141693398356438, + -0.0086508234962821, + -0.023346802219748497, + -0.004105790983885527, + -0.02221519686281681, + 0.010869365185499191, + -0.011584063060581684, + -0.001448938506655395, + -0.013623930513858795, + -0.011330941691994667, + 0.025892913341522217, + -0.025803575292229652, + -0.016408275812864304, + 0.043953925371170044, + 0.007039031013846397, + 0.006510451901704073, + 0.0020398672204464674, + 0.017376095056533813, + -0.012901787646114826, + 0.016155153512954712, + 0.010296118445694447, + 0.02409127913415432, + -0.04276276379823685, + -0.004057399928569794, + -0.00983454193919897, + -0.035407330840826035, + -0.02409127913415432, + 0.030732013285160065, + 0.0027582875918596983, + 0.003281282726675272, + -0.0028122621588408947, + 0.0024530519731342793, + -0.015604239888489246, + 0.00320125138387084, + -0.010459902696311474, + -0.0025033042766153812, + 0.01498632412403822, + -0.048748359084129333, + 0.03251875936985016, + -0.03192317858338356, + 0.004634369630366564, + -0.007005529478192329, + -0.0227661095559597, + 0.03829590231180191, + 0.005002886056900024, + -0.00217759539373219, + -0.014226957224309444, + -0.008524262346327305, + -0.022676771506667137, + 0.012149865739047527, + -0.0030132709071040154, + -0.005888813640922308, + 0.01265611033886671, + 0.008390257135033607, + 0.022527877241373062, + -0.006934803910553455, + -0.019996654242277145, + 0.013266582041978836, + -0.022498097270727158, + -0.010355676524341106, + -0.04231607913970947, + -0.004489196930080652, + 0.004768375772982836, + 0.0033687588293105364, + -0.014308849349617958, + 0.022676771506667137, + 0.01856725849211216, + 0.016899630427360535, + -0.014085506089031696, + -0.019520189613103867, + -0.006763574201613665, + -0.009573975577950478, + -0.0030802739784121513, + 0.03302500396966934, + 0.0011809268034994602, + -0.0285283625125885, + -0.019579747691750526, + -0.005583578255027533, + -0.015529791824519634, + 0.043537020683288574, + 0.017524991184473038, + 0.0017150890780612826, + 0.01722719892859459, + 0.018775712698698044, + 0.017673885449767113, + -0.0028606532141566277, + -0.02444862760603428, + 0.03618158772587776, + 0.001063671661540866, + 0.0010329619981348515, + -0.0048912144266068935, + 0.018835270777344704, + -8.323021029355004e-5, + -0.018433252349495888, + 0.01649761199951172, + 0.0016052786959335208, + 0.008628489449620247, + 0.0017253255937248468, + 0.008516818284988403, + 0.02462730184197426, + 0.004712539725005627, + -0.030255548655986786, + 0.03210185095667839, + -0.025684459134936333, + 0.03433528169989586, + -0.005583578255027533, + 0.017644107341766357, + 0.02371904067695141, + -0.01722719892859459, + 0.01870126463472843, + -0.018954386934638023, + -0.020711353048682213, + -0.008792274631559849, + 0.017450543120503426, + 0.02409127913415432, + -0.032369863241910934, + 0.03603269159793854, + 0.028319908306002617, + 0.000705392041709274, + 0.002402799902483821, + -0.03064267709851265, + -0.019758421927690506, + -0.02645871601998806, + -0.008970948867499828, + 0.009685646742582321, + 0.04297121614217758, + 0.0006825924501754344, + 0.00919429212808609, + -0.03743230924010277, + 0.015827583149075508, + 0.006983194965869188, + 0.05267919972538948, + -0.03016621060669422, + 0.006387613248080015, + 0.011033150367438793, + 0.017465433105826378, + -0.0034525124356150627, + -0.03144671022891998, + 0.010668356902897358, + -0.009216626174747944, + 0.0037186630070209503, + 0.008918835781514645, + -0.0021198985632508993, + 0.0004843753995373845, + 0.017465433105826378, + 0.015634018927812576, + 0.012767782434821129, + 0.024240173399448395, + 0.03743230924010277, + -0.02931750752031803, + -0.0007407547091133893, + 0.004083456937223673, + 0.001265611033886671, + -0.0010683246655389667, + 0.051130685955286026, + 0.025327110663056374, + -0.011286272667348385, + -0.0054793511517345905, + -0.01289434265345335, + 0.02129204384982586, + -0.007720227353274822, + -0.034007713198661804, + -0.01286456361413002, + 0.0030988857615739107, + -0.046157579869031906, + 0.015931809321045876, + 0.024671969935297966, + 0.007720227353274822, + -0.015336227603256702, + 0.02233431302011013, + -0.011308606714010239, + -0.002114314818754792, + 0.01669117622077465, + 0.011785072274506092, + -0.03320367634296417, + -0.009067730978131294, + 0.002581474371254444, + 0.0012395543744787574, + -0.014807648956775665, + 0.01797167770564556, + 0.0139589449390769, + -0.011725514195859432, + -0.04749763756990433, + 0.01459175068885088, + -0.013646264560520649, + -0.014450300484895706, + -0.012000970542430878, + 0.001215358846820891, + -0.0233616903424263, + -0.03603269159793854, + -0.007645779754966497, + 0.021217597648501396, + 0.012790116481482983, + -0.008762495592236519, + -0.008434925228357315, + -0.005133169703185558, + 0.012380653992295265, + 0.0033073395024985075, + -2.9764541977783665e-5, + 0.023823266848921776, + 0.0026950070168823004, + 0.015812693163752556, + -0.0055351871997118, + 0.020071102306246758, + 0.008963503874838352, + -0.024776197969913483, + -0.03525843471288681, + 0.005032665096223354, + 0.023346802219748497, + 0.015112885273993015, + 0.0030821352265775204, + 0.004559922032058239, + 0.012618886306881905, + -0.00031686807051301, + 0.001984031405299902, + -0.0005309052066877484, + -0.023495696485042572, + 0.01162128709256649, + 0.00107390817720443, + 0.014167399145662785, + 0.041780054569244385, + -0.031089363619685173, + 0.002272516256198287, + -0.023287244141101837, + -0.007240039762109518, + -0.021128259599208832, + 0.0016183070838451385, + -0.011584063060581684, + 0.03451395779848099, + 0.015008658170700073, + -0.019341515377163887, + -0.026682058349251747, + 0.022780999541282654, + -0.019683973863720894, + 0.020830469205975533, + -0.00292765605263412, + -0.002590780146420002, + -0.005341622978448868, + 0.013035793788731098, + 0.019311735406517982, + -0.02203652262687683, + -0.0014098534593358636, + -0.004667871166020632, + 0.03311434015631676, + -0.0068901353515684605, + -0.035466887056827545, + -0.012849674560129642, + -0.007712782826274633, + -0.013065572828054428, + 0.03168494626879692, + 0.0032254469115287066, + -0.015336227603256702, + 0.035526446998119354, + 0.04541310295462608, + -0.005836700554937124, + -0.00934318732470274, + 0.011673401109874249, + 0.010422679595649242, + 0.022498097270727158, + -0.03594335541129112, + -0.05437660589814186, + 0.025699349120259285, + -0.03999330848455429, + -0.008933724835515022, + 0.007366600912064314, + -0.03653893619775772, + -0.007388934958726168, + 0.005847867578268051, + 0.05550821125507355, + 0.027277640998363495, + -0.022364091128110886, + 0.007809564471244812, + 0.02038378268480301, + -0.001674142898991704, + -0.01177018228918314, + -0.0019412239780649543, + 0.02561001107096672, + -0.02135160192847252, + 0.02687562257051468, + 0.011941412463784218, + 0.013519703410565853, + 0.02523777261376381, + -0.006852911785244942, + 0.0006262913229875267, + 0.022051410749554634, + 0.022006742656230927, + -0.021083591505885124, + -0.038861703127622604, + -0.007307042367756367, + 0.03299522399902344, + -0.020219998434185982, + 0.00023136951494961977, + -0.010206780396401882, + -0.013125130906701088, + 0.008055241778492928, + 0.022304533049464226, + -0.03362058475613594, + -0.004969384521245956, + 0.007779785431921482, + -0.019564857706427574, + 0.034811750054359436, + -0.008330698125064373, + 0.005330455955117941, + 0.015812693163752556, + 0.013050682842731476, + -0.033412132412195206, + 0.013073017820715904, + -0.03021088056266308, + -0.00827858503907919, + -0.013609041459858418, + -0.0005965122836641967, + 0.017763223499059677, + -0.006421114783734083, + 0.00040643796091899276, + 0.015619128942489624, + 0.004440805874764919, + -0.00138379679992795, + 0.013355919159948826, + -0.0043030777014791965, + 0.024612411856651306, + -0.022542765364050865, + 0.04389436915516853, + -0.0056617483496665955, + -0.009276184253394604, + -0.022185416892170906, + 0.01462152972817421, + 0.019564857706427574, + -0.018477920442819595, + 0.012484881095588207, + -0.025833355262875557, + 0.03847457468509674, + 0.013906831853091717, + 0.010623687878251076, + -0.028870820999145508, + -0.010780028067529202, + 0.021321823820471764, + -0.02275121957063675, + 0.017137862741947174, + -0.010794918052852154, + 0.00033803912810981274, + 0.0003240801743231714, + 0.013147464953362942, + 0.005654303357005119, + 0.0197137538343668, + -0.021128259599208832, + 0.0010701857972890139, + -0.023212796077132225, + -0.026354487985372543, + -0.011457501910626888, + -0.014792759902775288, + -0.020830469205975533, + 0.007794674951583147, + -0.014762980863451958, + 0.0075154961086809635, + 0.01389938686043024, + 0.001779300277121365, + -0.003826612140983343, + 0.002547972835600376, + -0.025222884491086006, + -0.0033073395024985075, + -0.01698896661400795, + -0.016229599714279175, + -0.005382569506764412, + 0.007143257651478052, + -0.035228654742240906, + -0.0010534350294619799, + -0.05235162749886513, + 0.010869365185499191, + 0.00795101560652256, + 0.007943570613861084, + -0.03320367634296417, + 0.0018500256119295955, + 0.025163324549794197, + 0.019013945013284683, + 0.0028625144623219967, + -0.03993375226855278, + -0.015224556438624859, + 0.00989410001784563, + 0.008732716552913189, + -0.020741131156682968, + 0.017584549263119698, + -0.02675650641322136, + 0.003915949258953333, + -0.03778965771198273, + -0.0157829150557518, + -0.0043514687567949295, + 0.02620559372007847, + -0.05041598901152611, + 0.009618643671274185, + 0.017927007749676704, + 0.008792274631559849, + 0.01809079386293888, + 0.0049917190335690975, + 0.012440212070941925, + 0.014725756831467152, + -0.02062201499938965, + 0.018165240064263344, + 0.02671183831989765, + 0.0011250909883528948, + 0.015194777399301529, + 0.0027992338873445988, + -0.021530278027057648, + -0.0012963206972926855, + -0.009559085592627525, + 0.017673885449767113, + 0.019505299627780914, + 0.0010664634173735976, + 0.007690448313951492, + -0.008055241778492928, + -0.0026987295132130384, + -0.018656596541404724, + 0.00040038907900452614, + 0.021098481491208076, + 0.009968548081815243, + -0.0038675584364682436, + -0.007869122549891472, + -0.007675558794289827, + 0.001459175138734281, + 0.01602114737033844, + 0.010943813249468803, + -0.0069757504388689995, + 0.007210260722786188, + -0.0040946239605546, + -0.018358804285526276, + 0.024776197969913483, + -0.019832869991660118, + 0.0038861704524606466, + -0.025758907198905945, + -0.0010515738977119327, + 0.02858792059123516, + -0.0030839962419122458, + 0.024671969935297966, + 0.009514417499303818, + -0.00031291303457692266, + 0.028841042891144753, + -0.02069646306335926, + 0.0034878752194344997, + 0.025148436427116394, + -0.01826946809887886, + 0.02428484335541725, + 0.0279178898781538, + 0.012752892449498177, + -8.323021029355004e-5, + 0.005222506821155548, + 0.005550076719373465, + 0.004105790983885527, + -0.03597313165664673, + 0.015142664313316345, + -0.04210762307047844, + 0.009663312695920467, + 0.0041839610785245895, + -0.015261780470609665, + -0.016110483556985855, + -0.0035958243533968925, + -0.004120680503547192, + 0.04112491384148598, + -0.0042993552051484585, + 0.015038437210023403, + -0.025773797184228897, + 0.016840072348713875, + -0.01876082271337509, + -0.0321614108979702, + 0.03323345631361008, + 0.0009845709428191185, + -0.004615758080035448, + -0.020741131156682968, + -0.021500498056411743, + -0.025624901056289673, + -0.022915003821253777, + -0.02493998222053051, + -0.016840072348713875, + 0.0333525724709034, + 0.012931566685438156, + -0.03323345631361008, + 5.8802055718842894e-5, + -0.00989410001784563, + 0.021976962685585022, + 0.013035793788731098, + -0.015224556438624859, + -0.014100396074354649, + -0.00694969343021512, + -0.029228169471025467, + -0.004883769899606705, + -0.00034874098491854966, + -0.04642559215426445, + 0.03448417782783508, + 0.01135327573865652, + 0.02288522571325302, + -0.02864747866988182, + -0.020845359191298485, + -0.011896743439137936, + 0.014346073381602764, + -0.01392916589975357, + -0.003204973880201578, + -0.008442370221018791, + -0.012358319945633411, + 0.006882690824568272, + 0.024969762191176414, + 0.0031100530177354813, + -0.03918927535414696, + -0.03433528169989586, + 0.02931750752031803, + -0.015112885273993015, + -0.020160440355539322, + 0.03314412012696266, + -0.019877538084983826, + 0.0017504517454653978, + 0.012767782434821129, + -0.015321338549256325, + 0.010489681735634804, + -0.009961103089153767, + 0.005702694412320852, + 2.873216180887539e-5, + -0.024165725335478783, + 0.012931566685438156, + -0.022795887663960457, + 0.018552368506789207, + -0.016155153512954712, + -0.020160440355539322, + -0.0855850875377655, + -0.011829741299152374, + -0.023093679919838905, + 0.002064062748104334, + 0.0035790735855698586, + 0.010303562507033348, + 0.0076308902353048325, + 0.010571574792265892, + 0.008271140046417713, + -0.0037893883418291807, + 0.020890027284622192, + -0.00527834240347147, + 0.010973592288792133, + 0.011144821532070637, + -0.012522104196250439, + 0.006752407178282738, + -0.005244840867817402, + -0.007802119944244623, + 0.010683245956897736, + -0.015514902770519257, + -0.0014880235539749265, + 0.020741131156682968, + 0.023287244141101837, + 0.00871038157492876, + 0.007437326014041901, + 0.027932779863476753, + -0.027888111770153046, + 0.0012637499021366239, + -0.017882339656352997, + -0.013192133978009224, + 0.012402988038957119, + -0.015120329335331917, + 0.001937501598149538, + -0.011546839959919453, + 0.005371402017772198, + 0.021217597648501396, + 0.008755050599575043, + -0.02300434187054634, + -0.014465189538896084, + -0.020979363471269608, + -0.007046475540846586, + 0.0032273081596940756, + 0.000580226827878505, + 0.013549483381211758, + 0.004414749331772327, + 0.008137134835124016, + 0.010876810178160667, + -0.01978820003569126, + -0.022349203005433083, + -0.0075787766836583614, + 0.04556199908256531, + 0.01162128709256649, + 0.009395300410687923, + -0.01984775997698307, + 0.016095595434308052, + 0.009216626174747944, + 0.023287244141101837, + 0.004131847992539406, + -0.00711720110848546, + 0.0003754956414923072, + 0.0697426125407219, + 0.01058646384626627, + 0.029868420213460922, + -0.012187089771032333, + -0.007720227353274822, + 0.010817252099514008, + 0.01868637464940548, + 0.01832902617752552, + 0.022289643064141273, + 0.004429638851433992, + -0.0357944592833519, + -0.019609525799751282, + 0.0160807054489851, + 0.020726241171360016, + 0.006409947760403156, + 0.02026466652750969, + 0.021589836105704308, + 0.03918927535414696, + 0.0026540607213974, + -0.004820489324629307, + -0.005077333655208349, + 0.0008738299948163331, + 0.00040480942698195577, + -0.006175437476485968, + -0.013266582041978836, + -0.019326625391840935, + -0.02160472422838211, + -0.0227661095559597, + 0.012328540906310081, + -0.011732959188520908, + 0.030076874420046806, + -0.03633048012852669, + 0.008777384646236897, + 0.02359992451965809, + -0.011137377470731735, + 0.023257464170455933, + -0.012916677631437778, + 0.007016696501523256, + -0.026116255670785904, + 0.0023562698625028133, + -0.02117292769253254, + -0.005393736530095339, + 0.005818088538944721, + -0.01459175068885088, + -0.005963261239230633, + -0.00046111049596220255, + 0.006849189288914204, + 0.007441048510372639, + 0.018835270777344704, + -0.002287405775859952, + -0.012201979756355286, + 0.0038861704524606466, + -0.02221519686281681, + 0.010884255170822144, + -0.011755293235182762, + 0.021202707663178444, + -0.017584549263119698, + -0.007504329085350037, + 0.006715183146297932, + -0.01645294390618801, + 0.01231365092098713, + 0.013266582041978836, + 0.0029220725409686565, + -0.023153237998485565, + -0.01596158929169178, + 0.011360720731317997, + 0.001800703932531178, + -0.023272354155778885, + 0.016363605856895447, + 0.0175994373857975, + 0.0020845357794314623, + -0.008479594253003597, + 0.021381381899118423, + -0.0017299785977229476, + -0.015440454706549644, + 0.017569659277796745, + 0.023867934942245483, + 0.01459175068885088, + 0.028245460242033005, + -0.043834809213876724, + -0.020249776542186737, + -0.014033393003046513, + 0.0013363363686949015, + 0.030553339049220085, + -0.027143634855747223, + -0.008777384646236897, + 0.007050198037177324, + -0.02124737575650215, + 0.014599195681512356, + -0.03561578318476677, + -0.004619480110704899, + -0.010013217106461525, + 0.008501928299665451, + -0.020413560792803764, + -0.032727211713790894, + -0.013646264560520649, + -0.010780028067529202, + 0.007039031013846397, + 0.0026950070168823004, + -0.003443206427618861, + -0.009358077310025692, + 0.014092951081693172, + 0.010750249028205872, + -0.001897485926747322, + 0.01984775997698307, + -0.018120571970939636, + -0.021619614213705063, + 0.022721441462635994, + -0.020979363471269608, + -0.0028122621588408947, + -0.009246405214071274, + -0.024299731478095055, + -0.013996168971061707, + -0.023555254563689232, + 0.020547566935420036, + -0.024314621463418007, + 0.01661672815680504, + -0.014063172042369843, + 0.024954872205853462, + 0.0055351871997118, + -0.01432373933494091, + 0.02482086606323719, + 0.010832141153514385, + 0.03478197008371353, + -0.00347484671510756, + 0.0209346953779459, + -0.02930261753499508, + 0.011308606714010239, + -0.009231516160070896, + 0.007333099376410246, + 0.03141693398356438, + 0.029868420213460922, + -0.019371293485164642, + -0.009052840992808342, + 0.002672672737389803, + 0.0018463031155988574, + 0.023629702627658844, + 0.01643805392086506, + -0.0321614108979702, + -0.0254908949136734, + 0.0003566510567907244, + 0.007299597840756178, + 0.024865534156560898, + -0.0017727860249578953, + 0.002577751874923706, + -0.00016134214820340276, + -0.056044235825538635, + 0.011055484414100647, + 0.02087513729929924, + -0.018775712698698044, + 0.01572335511445999, + 0.004507808946073055, + 0.02227475494146347, + -0.024299731478095055, + 0.01504588220268488, + -0.008487038314342499, + 0.012916677631437778, + 0.0049879965372383595, + -0.007012974005192518, + -0.014130175113677979, + 0.018477920442819595, + 0.017629217356443405, + 0.008018017746508121, + -0.0315658301115036, + 0.038444798439741135, + -0.01135327573865652, + -0.0024530519731342793, + -0.024835756048560143, + -0.03603269159793854, + 0.004645537119358778, + 0.005743640940636396, + 0.00099387695081532, + 0.012998569756746292, + 0.009320853278040886, + 0.014487524516880512, + -0.02008599229156971, + 0.033471688628196716, + -0.017495211213827133, + 0.035764679312705994, + -0.021158039569854736, + -0.0160807054489851, + -0.013661154545843601, + -0.010705580934882164, + 0.01627426967024803, + 0.033948153257369995, + 0.0026950070168823004, + -0.01268588937819004, + 0.007742561865597963, + 0.007303320337086916, + 0.004634369630366564, + 0.005237396340817213, + -0.01631893776357174, + -0.006744962185621262, + 0.02681606449186802, + 0.021336713805794716, + -0.007310764864087105, + 0.01966908387839794, + -0.01596158929169178, + 0.01935640349984169, + -0.0036888839676976204, + 0.01438329741358757, + 0.00907517597079277, + 0.02409127913415432, + -0.008144578896462917, + 0.021932294592261314, + -0.012708223424851894, + -0.0042323521338403225, + 0.04702117294073105, + 0.021038921549916267, + -0.014576861634850502, + 0.027277640998363495, + 0.013683488592505455, + -0.010266339406371117, + 0.0003747976734302938, + 1.1719697795342654e-5, + 0.0005546354223042727, + -0.015395785681903362, + -0.007441048510372639, + -0.0022799610160291195, + -0.01990731805562973, + -0.025714239105582237, + -0.005222506821155548, + -0.006227551028132439, + 0.024165725335478783, + 0.00804035272449255, + 0.025624901056289673, + -0.0014833705499768257, + 0.0011613842798396945, + 0.016408275812864304, + 0.013035793788731098, + -0.002060340251773596, + 0.016170041635632515, + 0.022408761084079742, + -0.0025870578829199076, + 0.0005704555660486221, + 0.0005071749910712242, + -0.0068380217999219894, + -0.005721306428313255, + 0.016661396250128746, + -0.010333341546356678, + 0.01803123578429222, + -0.026354487985372543, + -0.016467833891510963, + 0.018477920442819595, + -0.02864747866988182, + -0.0002573099045548588, + -0.015291559509932995, + -0.020890027284622192, + -0.00631316564977169, + -0.009573975577950478, + 0.0035046259872615337, + 0.005058721639215946, + -0.019281957298517227, + -0.016840072348713875, + -0.006789631210267544, + 0.00452269846573472, + 0.025639791041612625, + 1.2286779565329198e-5, + 0.021753620356321335, + 0.0175994373857975, + -0.002855069702491164, + -0.003971785306930542, + 0.0022166804410517216, + 0.02863258868455887, + -0.0014033393235877156, + -0.0018881800351664424, + 0.001855609123595059, + 0.0029667410999536514, + -0.0147108668461442, + -0.015529791824519634, + -0.010638577863574028, + 0.03311434015631676, + -0.025207994505763054, + -0.009931324049830437, + 0.016765624284744263, + 0.001680657034739852, + 0.0042807431891560555, + -0.01566379703581333, + -0.004567367024719715, + -0.008226471953094006, + 0.011226714588701725, + 0.04446016997098923, + -0.0069459713995456696, + -0.011718069203197956, + 0.013720712624490261, + 0.023227684199810028, + 0.006741240154951811, + 0.00928362924605608, + 0.038027890026569366, + 0.0004562248650472611, + 0.000340132974088192, + -0.012968790717422962, + -0.0007305181352421641, + -0.0029537128284573555, + 0.019892428070306778, + 0.02834968827664852, + -0.04011242464184761, + 0.010273783467710018, + -0.019445741549134254, + -0.02215563878417015, + -0.01034823153167963, + -0.006130768917500973, + -0.0014926765579730272, + -0.01311024185270071, + -0.006581177469342947, + 0.015500012785196304, + 0.013274026103317738, + 0.0038154451176524162, + 0.008695492520928383, + -0.002642893698066473, + 0.007478272542357445, + 0.0023134625516831875, + 1.161791351478314e-5, + -0.002946268068626523, + -0.018120571970939636, + -0.01564890891313553, + 0.020547566935420036, + -0.025580232962965965, + -0.0042844656854867935, + 0.009268739260733128, + 0.011636177077889442, + 0.01905861310660839, + -0.07051686942577362, + -0.03707495704293251, + 0.006715183146297932, + 0.0027899278793483973, + 0.026414046064019203, + -0.006547675933688879, + -0.010847031138837337, + 0.0010031828423961997, + -0.015500012785196304, + -0.006830577272921801, + -0.0003287331492174417, + -0.02766476757824421, + 0.0022520432248711586, + 0.0055947452783584595, + 0.003631186904385686, + -0.0055426317267119884, + -0.021277155727148056, + -0.0037651928141713142, + -0.021217597648501396, + 0.005282064899802208, + -0.0055314647033810616, + 0.007831898517906666, + 0.003953173290938139, + 0.019430851563811302, + -0.0010590186575427651, + 0.0008114800439216197, + -0.009186847135424614, + -0.008047797717154026, + -0.02118781767785549, + -0.006436004303395748, + 0.01803123578429222, + -0.033531248569488525, + -0.004593423567712307, + -0.010244004428386688, + 0.010906589217483997, + 0.026443826034665108, + 0.020845359191298485, + 0.01566379703581333, + 0.002914627781137824, + 0.005851590074598789, + 0.026607610285282135, + -0.0030449111945927143, + -0.009090065024793148, + 0.009782428853213787, + -0.01459175068885088, + -0.03787899389863014, + 0.001192093943245709, + 0.04163115844130516, + 0.007735116872936487, + -0.0032459201756864786, + 0.003525099018588662, + -0.008822053670883179, + 0.021277155727148056, + -0.0038005555979907513, + 0.03228052705526352, + -0.03930839151144028, + 0.009640978649258614, + -0.02221519686281681, + -0.041958726942539215, + -0.017122972756624222, + 0.008293475024402142, + -0.003636770648881793, + 0.005725028924643993, + -0.005412348546087742, + 0.018239688128232956, + -0.02590780332684517, + 0.016467833891510963, + 0.012469991110265255, + 0.010452458634972572, + -0.01639338582754135, + 0.03356102854013443, + -0.02068157307803631, + 0.0011418417561799288, + 0.030851131305098534, + -0.01314002089202404, + 0.0013726296601817012, + -0.02450818568468094, + 0.0042472416535019875, + 0.005747362971305847, + 0.00013609971210826188, + -0.012752892449498177, + 0.006797075737267733, + 0.017331426963210106, + 0.003085857490077615, + 0.028051896020770073, + -0.01325913704931736, + -0.021932294592261314, + -0.014279070310294628, + -0.024225285276770592, + 0.0008984907763078809, + -0.010698135942220688, + 0.009871765971183777, + 0.0016443637432530522, + 0.013065572828054428, + -0.005933482199907303, + -0.0037912495899945498, + -0.028692146763205528, + 0.005036387592554092, + 0.02705429680645466, + -0.014829983934760094, + -0.007158147171139717, + -0.003234752919524908, + 0.02172384224832058, + -0.02312345802783966, + 0.025386668741703033, + 0.010430123656988144, + -0.017807891592383385, + 0.017510101199150085, + -0.0004871671844739467, + 0.00949208252131939, + 0.0034376229159533978, + 0.008822053670883179, + 0.017852559685707092, + -0.035466887056827545, + -0.013095351867377758, + -0.012298761866986752, + 0.03022577054798603, + -0.016840072348713875, + 5.656281064148061e-5, + -0.012008415535092354, + -0.02523777261376381, + 0.004113235976547003, + 0.011137377470731735, + -0.013497369363904, + -0.004686483182013035, + 0.03445439785718918, + 0.015425565652549267, + 0.00432541174814105, + -0.0221407487988472, + 0.019773311913013458, + 0.008807163685560226, + -0.004876324906945229, + -0.004820489324629307, + -0.007653224281966686, + 0.004515253473073244, + 0.018165240064263344, + -0.021649394184350967, + -0.004615758080035448, + -0.0016331966035068035, + -0.03052356094121933, + -0.016408275812864304, + -0.008918835781514645, + 0.008933724835515022, + 0.022378981113433838, + -0.004485474433749914, + 0.0012209424749016762, + 0.0012516521383076906, + -0.007083699572831392, + -0.002549834083765745, + 0.02312345802783966, + -0.03323345631361008, + -0.00795101560652256, + 0.0022036521695554256, + 0.010400344617664814, + 0.005739918444305658, + -0.018105681985616684, + -0.006421114783734083, + -0.014695977792143822, + -0.0034041213802993298, + -0.012812450528144836, + -0.019520189613103867, + 0.022483207285404205, + -0.0019356404663994908, + 0.09725848585367203, + -0.019817980006337166, + 0.005256008356809616, + -0.007727672345936298, + 0.009179402142763138, + -0.007794674951583147, + 0.010668356902897358, + 0.00952186156064272, + 0.008330698125064373, + -0.004087178967893124, + 0.017465433105826378, + -0.01564890891313553, + 0.0029388233087956905, + 0.015574460849165916, + -0.02772432751953602, + -0.002335796831175685, + 0.014599195681512356, + 0.016184931620955467, + 0.02712874487042427, + 0.017629217356443405, + 0.01052690576761961, + -0.014137620106339455, + -0.013393143191933632, + -0.020071102306246758, + -0.007831898517906666, + 0.002817845670506358, + 0.023972162976861, + -1.410435106663499e-5, + 0.02330213226377964, + 0.02318301610648632, + 0.005084778647869825, + -2.326490857740282e-6, + -0.0007835621363483369, + -0.016959188506007195, + -0.014733201824128628, + 0.01398872397840023, + 0.011859520338475704, + 0.010809807106852531, + -0.00017018281505443156, + 0.020845359191298485, + 0.0034339006524533033, + -0.014584305696189404, + 0.026845844462513924, + 0.018373694270849228, + -0.01286456361413002, + -0.007817009463906288, + 0.021887626498937607, + -0.00634294468909502, + 0.016467833891510963, + 0.010050440207123756, + -0.008978393860161304, + -0.01724208891391754, + 0.007213982753455639, + -0.006480672862380743, + -0.0033668975811451674, + -0.010541795752942562, + -0.01171062421053648, + 0.00925385020673275, + -0.003312923014163971, + 0.0021329268347471952, + -0.008137134835124016, + 1.0454668881720863e-5, + -0.006897580344229937, + -0.022051410749554634, + -0.006596066989004612, + -0.018001455813646317, + -0.011174601502716541, + -0.01704852469265461, + -0.012909232638776302, + 0.0005955816595815122, + 0.003538127290084958, + 0.014695977792143822, + -0.003283143974840641, + -0.035049982368946075, + -0.0004974037292413414, + 0.004734874237328768, + 0.013162354938685894, + 0.022617213428020477, + 0.0029202112928032875, + 0.0266969483345747, + 0.01570846699178219, + 0.009149623103439808, + 0.010028106160461903, + -0.0042993552051484585, + -0.006603511516004801, + -0.0075973886996507645, + 0.009931324049830437, + -0.03487130627036095, + 0.008114799857139587, + -0.01661672815680504, + 0.000500195543281734, + 0.02610136568546295, + 0.014934210106730461, + -0.005352790467441082, + 0.017644107341766357, + 0.015179887413978577, + -0.00030523561872541904, + 0.000728656945284456, + -0.004723707213997841, + 0.005803199019283056, + 0.013676043599843979, + 0.019460631534457207, + -0.007772340904921293, + 0.015246890485286713, + 0.002097564283758402, + 0.011345830745995045, + 0.024106167256832123, + -0.006041431333869696, + 0.003169611096382141, + -0.0034729856997728348, + 0.007132090628147125, + 0.0031323872972279787, + 0.007333099376410246, + 0.01590203121304512, + -0.012641221284866333, + -0.0034376229159533978, + -0.009514417499303818, + 0.015619128942489624, + -0.01813546195626259, + -0.02310856804251671, + -0.00544585008174181, + 0.0009152415441349149, + 0.0034953199792653322, + -0.01953507959842682, + 0.014115285128355026, + -0.002668950241059065, + -0.014152509160339832, + -0.006707738619297743, + -0.007668113801628351, + -0.0075154961086809635, + 0.002851347206160426, + 0.015380896627902985, + 0.01959463767707348, + -0.003681439207866788, + -0.0036442154087126255, + -0.001017141854390502, + -0.008665713481605053, + 0.008874166756868362, + 0.016661396250128746, + 0.00946230348199606, + 0.01935640349984169, + 0.004455695394426584, + -0.002531222067773342, + 0.009514417499303818, + 0.0015168720856308937, + 0.011874409392476082, + -0.035586003214120865, + -0.02348080649971962, + 0.012008415535092354, + 0.0011269522365182638, + 0.011368164792656898, + -0.03543711081147194, + 0.01334847416728735, + -0.0009198944899253547, + 0.01462152972817421, + 0.005226229317486286, + -0.0069459713995456696, + 0.025654681026935577, + -0.012358319945633411, + 0.006450893823057413, + 0.013445256277918816, + -0.00493216048926115, + 0.003190084360539913, + -0.01016955729573965, + -0.011636177077889442, + -0.012373208999633789, + 0.0173016469925642, + 0.024493295699357986, + 0.013720712624490261, + -0.0016964771784842014, + -0.003746581031009555, + -0.01432373933494091, + 0.009157068096101284, + -0.02531222067773342, + -0.014829983934760094, + -0.017152752727270126, + -0.006603511516004801, + -0.012462546117603779, + -0.0015382757410407066, + 0.006711461115628481, + -0.008018017746508121, + -0.012953901663422585, + 0.021991852670907974, + -0.011301161721348763, + -0.012425322085618973, + -0.007906346581876278, + 0.01795678772032261, + -0.008472149260342121, + -0.009544196538627148, + -0.012767782434821129, + -0.025937581434845924, + 0.010899144224822521, + -0.005434682592749596, + -0.017748333513736725, + -0.01429396029561758, + 0.011085263453423977, + 0.01055668480694294, + 0.014911876060068607, + -0.0006993431597948074, + -0.01795678772032261, + -0.012611442245543003, + 0.00749316206201911, + 0.01262633129954338, + 0.006625846028327942, + 0.0008840665104798973, + -0.007225150242447853, + -0.010400344617664814, + -0.016527391970157623, + -0.003325951285660267, + 0.002484692260622978, + -0.0315360501408577, + -0.030493780970573425, + -0.00397550780326128, + -0.008576376363635063, + -0.03406727313995361, + 0.01092147920280695, + -0.003662827191874385, + 0.034245945513248444, + -0.008405146189033985, + 0.007936125621199608, + -0.002467941492795944, + 0.0023879101499915123, + 0.006555120926350355, + -0.004768375772982836, + 0.011129932478070259, + -0.002964880084618926, + 0.0294217336922884, + 0.02967485599219799, + 0.011234159581363201, + -0.0015308309812098742, + 0.017554769292473793, + -0.01398872397840023, + -0.011427722871303558, + 0.007027863524854183, + -0.008747605606913567, + 0.030612897127866745, + 0.006257330067455769, + -0.017882339656352997, + -0.008092465810477734, + 0.005520297680050135, + -0.019639305770397186, + -0.009908990003168583, + 0.0004145806888118386, + -0.013571817427873611, + 0.02367437072098255, + -0.009350632317364216, + 0.011390499770641327, + -0.016914518550038338, + -0.0017513823695480824, + -2.5853130864561535e-5, + -0.018284358084201813, + -0.00412440299987793, + -0.019088393077254295, + 0.006551398430019617, + 0.004377525299787521, + 0.003960618283599615, + -0.0025851966347545385, + 0.012038194574415684, + -0.0197137538343668, + -0.016601838171482086, + 0.001358670648187399, + -0.00011958162940572947, + -0.010713024996221066, + -0.013676043599843979, + -0.010482237674295902, + 0.03385881707072258, + -0.014859762974083424, + 0.012827340513467789, + 0.018299246206879616, + 0.014219512231647968, + 0.011703180149197578, + 0.012968790717422962, + 0.006439726799726486, + 0.009670757688581944, + -0.011978636495769024, + -0.007310764864087105, + -0.002225986449047923, + -0.013519703410565853, + 0.002942545572295785, + -0.008434925228357315, + -0.02263210341334343, + -0.013690933585166931, + 0.00989410001784563, + -0.015068216249346733, + 0.0009445553296245635, + -0.021947184577584267, + 0.01826946809887886, + 0.010184446349740028, + -0.008487038314342499, + 0.023942383006215096, + -0.0006439726566895843, + 0.012038194574415684, + 0.01462152972817421, + -0.004816766828298569, + -0.0014963989378884435, + 0.022900115698575974, + 0.0002635914133861661, + 0.010065330192446709, + 0.02371904067695141, + 0.013132575899362564, + -0.015604239888489246, + -0.011822296306490898, + -0.012157310731709003, + 0.0017299785977229476, + -0.011859520338475704, + 0.005739918444305658, + 0.02590780332684517, + -0.01625937968492508, + -0.0063206106424331665, + 0.004306799732148647, + 0.0024772475007921457, + -0.009454859420657158, + 0.023019231855869293, + 0.00028220334206707776, + -0.00901561789214611, + 0.006350389681756496, + 0.010072775185108185, + 0.022110968828201294, + -0.0037819435819983482, + 0.011479836888611317, + 0.0031770558562129736, + 0.01262633129954338, + -0.016110483556985855, + 0.015797803178429604, + 0.005382569506764412, + 0.009812207892537117, + 0.005963261239230633, + -0.004258409142494202, + -0.011092708446085453, + -0.01331869512796402, + 0.02105381153523922, + 0.023942383006215096, + -0.01566379703581333, + 0.006610956508666277, + -0.029898200184106827, + -0.000823577749542892, + -0.019877538084983826, + 0.006264774594455957, + -0.02221519686281681, + 0.011509615927934647, + 0.004429638851433992, + -0.004816766828298569, + -0.00711720110848546, + -0.01953507959842682, + 0.0026521997060626745, + 0.0062722195871174335, + -0.0032086961437016726, + -0.021217597648501396, + 0.00376147055067122, + 0.012425322085618973, + -0.0003392023791093379, + -0.02270655147731304, + -0.003942006267607212, + -0.012328540906310081, + 0.011435167863965034, + 0.008397701196372509, + -0.003616297384724021, + 0.045293986797332764, + 0.011755293235182762, + 0.004329134244471788, + -0.020949585363268852, + 0.009588864631950855, + -0.002402799902483821, + -0.00640250276774168, + 0.013393143191933632, + 0.02452307567000389, + 0.0001739051949698478, + 0.0024772475007921457, + -0.01710808277130127, + 0.013125130906701088, + -0.0007184203714132309, + -0.0063168881461024284, + -0.0019412239780649543, + -0.02056245692074299, + -0.020919805392622948, + 0.011226714588701725, + 0.0028941547498106956, + 0.0009724731789901853, + -0.016706066206097603, + 0.0014852317981421947, + 0.019698863849043846, + 0.00617171498015523, + -0.012246647849678993, + -0.006637013051658869, + 0.01681029237806797, + 0.010973592288792133, + 0.03454373776912689, + 0.01614026352763176, + 0.01277522649616003, + -0.011159711517393589, + -0.016423163935542107, + 0.002575890626758337, + 0.005866479594260454, + -0.00913473404943943, + -0.00665934756398201, + 0.006261052098125219, + 0.00013703030708711594, + 0.029942868277430534, + 0.010869365185499191, + -0.015812693163752556, + -0.010095109231770039, + -0.0027936503756791353, + 0.014889542013406754, + 0.009298519231379032, + 0.0103184524923563, + -0.016825182363390923, + -0.01234342996031046, + 0.012574218213558197, + 0.023063899949193, + -0.01649761199951172, + -0.012931566685438156, + 0.0055761332623660564, + -0.02287033572793007, + -0.015157553367316723, + 0.019281957298517227, + 0.0030021038837730885, + 0.003744719782844186, + -0.010504571720957756, + 0.012589107267558575, + 0.00014261389151215553, + 0.01856725849211216, + 0.00521878432482481, + 0.021828068420290947, + -0.010638577863574028, + 0.009425079450011253, + -0.0069757504388689995, + 0.017078304663300514, + 0.016542280092835426, + -0.020354002714157104, + 0.0005364887765608728, + 0.010638577863574028, + 0.0023581311106681824, + -0.004485474433749914, + -0.011576618999242783, + -0.023212796077132225, + -0.004723707213997841, + 0.015060771256685257, + 0.0026782562490552664, + 0.012983680702745914, + -0.00726609630510211, + -0.02075602114200592, + -0.00949208252131939, + 0.00024846923770383, + -0.0197286419570446, + -0.00033082699519582093, + 0.009529306553304195, + 0.007653224281966686, + 0.013445256277918816, + -0.010995926335453987, + 0.00812968984246254, + -0.007965904660522938, + -5.865665298188105e-5, + -0.023510586470365524, + -0.008085020817816257, + -0.02991309016942978, + 0.00017181134899146855, + 0.0006746823783032596, + -0.015857361257076263, + 0.012812450528144836, + -0.023138348013162613, + 0.008144578896462917, + -0.010780028067529202, + 0.004243519157171249, + 0.014025948010385036, + -0.0037819435819983482, + 0.00989410001784563, + 0.028111454099416733, + 0.013333584181964397, + -0.009789873845875263, + 0.027322309091687202, + 0.0062201060354709625, + 0.013043238781392574, + 0.01870126463472843, + 0.008323254063725471, + 0.013207023032009602, + 0.03251875936985016, + 0.019162839278578758, + 0.024106167256832123, + 0.005136891733855009, + -0.01156172901391983, + -0.012879453599452972, + 0.006406225264072418, + 0.006495562382042408, + -0.01138305477797985, + 0.0106162428855896, + 0.0043030777014791965, + 0.008420036174356937, + 0.015619128942489624, + 0.013363363221287727, + -0.0033855095971375704, + 0.015276669524610043, + -0.0010078358463943005, + 0.02525266259908676, + 0.002734092064201832, + -0.007459660526365042, + -0.0021180373150855303, + 0.01207541860640049, + 0.02468685992062092, + 0.00017297459999099374, + -0.01627426967024803, + 0.009752649813890457, + -0.005684082396328449, + -0.0031491380650550127, + 0.017212310805916786, + 0.016348715871572495, + 0.02209608070552349, + -0.004608313087373972, + 0.004935882985591888, + 0.028022117912769318, + 0.009320853278040886, + -0.0009124497300945222, + 0.005587300751358271, + -0.013564372435212135, + 0.02136649191379547, + 0.020354002714157104, + 0.01504588220268488, + 0.016289157792925835, + 0.0024958595167845488, + -0.0034562349319458008, + -0.006648180540651083, + -0.026801174506545067, + -0.011792517267167568, + -0.0007007390377111733, + 0.018552368506789207, + -0.0022204029373824596, + -0.01807590387761593, + -0.0043477462604641914, + 0.006484395358711481, + -0.010117443278431892, + -0.016229599714279175, + -0.03975507616996765, + -0.004764653276652098, + 0.014025948010385036, + 0.011397943831980228, + 0.022780999541282654, + 0.010355676524341106, + 0.028439024463295937, + 0.0022036521695554256, + 0.02991309016942978, + -0.005948371719568968, + -0.008874166756868362, + 0.013475035317242146, + 0.013713267631828785, + -0.003621881129220128, + -0.00041993160266429186, + -0.009849431924521923, + 0.016482722014188766, + 0.02596736140549183, + 0.006819410249590874, + 0.007645779754966497, + -0.012321095913648605, + 0.0031026082579046488, + 0.027768995612859726, + 0.00116045365575701, + 0.004746041260659695, + -0.016884740442037582, + 0.004396137315779924, + 0.02681606449186802, + 0.016036035493016243, + -0.004459417890757322, + 0.0002798768400680274, + -0.012492325156927109, + -0.021038921549916267, + 0.0018621232593432069, + -0.00983454193919897, + -0.005192727781832218, + 0.00599304074421525, + 0.02215563878417015, + -0.010534350760281086, + 0.01222431380301714, + -0.003357591573148966, + 0.00983454193919897, + -0.013780270703136921, + 0.008271140046417713, + -0.009484638459980488, + -0.006071210838854313, + -0.01929684542119503, + -0.01904372312128544, + 0.017197420820593834, + -0.013542038388550282, + 0.005282064899802208, + -0.0011176462285220623, + -0.0188054908066988, + -0.0039010599721223116, + -0.005996762774884701, + 0.019981764256954193, + 0.029927978292107582, + 0.0063168881461024284, + 0.03293566778302193, + -0.0160807054489851, + 0.020056212320923805, + -0.001057157409377396, + 0.0018630538834258914, + -0.0049582174979150295, + 0.011598953045904636, + -0.004485474433749914, + -0.007161869667470455, + -0.0033501468133181334, + -0.011747848242521286, + -0.013638820499181747, + -0.011182045564055443, + 0.01953507959842682, + -0.014785314910113811, + 0.00634294468909502, + 0.005743640940636396, + 0.004448250401765108, + -0.008531707338988781, + 0.00435519078746438, + -0.016155153512954712, + -0.005717583931982517, + -0.007102311588823795, + -0.00798079464584589, + -0.0062163835391402245, + -0.030195990577340126, + 0.009328298270702362, + -0.012909232638776302, + 0.013020903803408146, + -0.005222506821155548, + 0.0024288564454764128, + 0.012038194574415684, + -0.020726241171360016, + 0.03344191238284111, + 0.01917772926390171, + 0.015544681809842587, + -0.014152509160339832, + -0.016482722014188766, + -0.00518900528550148, + 0.00015308310685213655, + 0.0033557305578142405, + -0.0008822053205221891, + 0.016110483556985855, + 0.0007012043497525156, + -0.002482831012457609, + -0.012663555331528187, + 0.0019412239780649543, + 0.0018677068874239922, + -0.019981764256954193, + -0.006994361989200115, + 0.017390985041856766, + -0.01639338582754135, + 0.01225409284234047, + -0.0024288564454764128, + 0.0012218729825690389, + 0.0031305260490626097, + 0.010720469988882542, + -0.004116958472877741, + 0.0075973886996507645, + 0.012000970542430878, + 0.01283478457480669, + -0.002717341296374798, + -0.0266969483345747, + 0.020100880414247513, + -0.015440454706549644, + 0.00830836407840252, + -0.012671000324189663, + -0.03915949538350105, + 0.0062722195871174335, + -0.017450543120503426, + 0.05041598901152611, + -0.010683245956897736, + -0.026786286383867264, + -0.022721441462635994, + -0.013132575899362564, + 0.02051778882741928, + -0.009201737120747566, + -0.008844387717545033, + -0.00657001044601202, + 0.02671183831989765, + 0.004779542796313763, + -0.02675650641322136, + 0.00376147055067122, + -0.007604833226650953, + -0.010988481342792511, + 0.017316536977887154, + -0.008390257135033607, + -0.01584247313439846, + -0.013795160688459873, + 0.013802604749798775, + 0.023168126121163368, + -0.02858792059123516, + -0.015097995288670063, + 0.015291559509932995, + -0.00042388663860037923, + -0.01165106613188982, + -1.312286258325912e-5, + 0.0019430852262303233, + 0.020249776542186737, + -0.014316294342279434, + -0.00608237786218524, + 0.00634294468909502, + -0.003744719782844186, + 0.004373802803456783, + -0.01645294390618801, + -0.03496064245700836, + 0.0067598517052829266, + 0.0022687939926981926, + -0.019311735406517982, + -0.012559328228235245, + -0.012946456670761108, + -0.0022352924570441246, + -0.020354002714157104, + 0.004712539725005627, + -0.014219512231647968, + -0.008635934442281723, + -0.0062052165158092976, + -0.017569659277796745, + 0.00602281978353858, + 0.0008193901157937944, + 0.0024437459651380777, + -0.009879210963845253, + 0.004995441064238548, + 0.001687171170488, + 0.010713024996221066, + -0.025014430284500122, + -0.003759609302505851, + -0.01661672815680504, + -0.01564890891313553, + 0.0020045044366270304, + -0.012790116481482983, + 0.02056245692074299, + 0.002095703035593033, + -0.0038042778614908457, + 0.00013505278911907226, + -0.0015178027097135782, + -0.007359155919402838, + -0.0357944592833519, + -0.007645779754966497, + 0.012648665346205235, + -0.008241361007094383, + 0.017197420820593834, + 0.023644592612981796, + -0.023063899949193, + 0.016974076628684998, + 0.008546597324311733, + -0.011598953045904636, + -0.003491597482934594, + 0.004273298662155867, + 0.00943252444267273, + -0.019073503091931343, + 0.006450893823057413, + -0.009127289056777954, + -0.009998327121138573, + -0.013102796860039234, + 0.002198068657889962, + 0.017078304663300514, + -0.017390985041856766, + -0.019877538084983826, + 0.01905861310660839, + -0.017078304663300514, + 0.010683245956897736, + -0.008360478095710278, + -0.017316536977887154, + -0.009536751545965672, + 0.007913791574537754, + 0.011978636495769024, + 0.005401181057095528, + 0.01856725849211216, + -0.009760094806551933, + -0.0004636696248780936, + 0.01686985045671463, + 0.027098966762423515, + 0.003949450794607401, + -0.03046400286257267, + 0.022676771506667137, + -0.007098589092493057, + 0.025818465277552605, + 0.011167156510055065, + -0.007102311588823795, + -0.009715425781905651, + 0.024612411856651306, + -0.008434925228357315, + -0.01765899732708931, + -0.010080220177769661, + -0.03228052705526352, + -0.00827858503907919, + -0.02292989380657673, + -0.004448250401765108, + 0.0010264477459713817, + 0.008412591181695461, + -0.006223828531801701, + 0.0027917891275137663, + -0.009685646742582321, + -0.0098568769171834, + 0.006536508910357952, + -0.012201979756355286, + -0.013154909946024418, + 0.019341515377163887, + 0.03451395779848099, + 0.009663312695920467, + 0.024746417999267578, + 0.011866964399814606, + 0.01086192112416029, + -0.017495211213827133, + 0.0007947292760945857, + 0.014182288199663162, + 0.01899905502796173, + 0.01795678772032261, + -0.020860247313976288, + -0.02547600492835045, + -0.01789722964167595, + -0.00608237786218524, + 0.007898901589214802, + 0.0020919805392622948, + -0.01803123578429222, + -0.004291910212486982, + 0.028558140620589256, + -0.011450057849287987, + 0.0049247159622609615, + 0.0018481643637642264, + -0.0013400587486103177, + -0.006696571595966816, + -0.012157310731709003, + 0.020041322335600853, + 0.01631893776357174, + 0.019832869991660118, + -0.01110015343874693, + -0.02282566763460636, + -0.005170393269509077, + 0.006852911785244942, + 0.013906831853091717, + 0.004742319229990244, + -0.012216868810355663, + 0.011301161721348763, + -0.013035793788731098, + -0.0037521645426750183, + 0.006231273058801889, + 0.005501685664057732, + 0.0008431202732026577, + -0.023138348013162613, + -0.03204229474067688, + -0.006666792090982199, + 0.01420462317764759, + 0.007098589092493057, + 0.01046734768897295, + 0.0188054908066988, + -0.011636177077889442, + -0.006458338815718889, + 0.0015634018927812576, + 0.019311735406517982, + -0.0061531029641628265, + -0.0027638711035251617, + -0.023778598755598068, + 0.022244974970817566, + 0.019401073455810547, + 0.020160440355539322, + -0.004615758080035448, + -0.00952186156064272, + -0.0020380059722810984, + -0.009395300410687923, + -0.01040778961032629, + 0.0029834918677806854, + -0.005501685664057732, + 0.014666198752820492, + 0.013735602609813213, + -0.0042509641498327255, + 0.00898583885282278, + 0.001939362846314907, + 0.009886655956506729, + -0.014338628388941288, + -0.022259864956140518, + 0.002817845670506358, + 0.028022117912769318, + -0.009298519231379032, + -0.015991367399692535, + -0.0024716639891266823, + 0.011323496699333191, + -0.004362635780125856, + -0.019430851563811302, + -0.014509858563542366, + 0.004377525299787521, + -0.0254908949136734, + 0.01826946809887886, + 0.004042510408908129, + 0.014025948010385036, + 0.0011269522365182638, + 0.0010850753169506788, + 0.00043412321247160435, + 0.014331184327602386, + 0.002639171201735735, + 0.0009650284191593528, + 0.003681439207866788, + 0.005873924121260643, + -0.008464704267680645, + 0.021068701520562172, + -0.011747848242521286, + 0.004306799732148647, + 0.007180481683462858, + -0.013504814356565475, + 0.007292152848094702, + 0.016914518550038338, + 0.002700590528547764, + 0.008330698125064373, + 0.018463032320141792, + -0.00455247750505805, + -0.002127343323081732, + -0.024895314127206802, + 0.01959463767707348, + -0.0031472768168896437, + 0.003363175317645073, + -0.004478029441088438, + -0.0027731771115213633, + 0.01495654508471489, + 0.003953173290938139, + 0.00039643404306843877, + -0.022721441462635994, + -0.007232594769448042, + -0.04023154079914093, + 0.012053083628416061, + -0.010772583074867725, + 0.02051778882741928, + -0.015194777399301529, + -0.006048876326531172, + 0.01819502003490925, + 0.003104469506070018, + 0.0019951986614614725, + 0.0017727860249578953, + 0.021976962685585022, + -0.0227661095559597, + 0.0049731070175766945, + -0.006972027942538261, + -0.0042174626141786575, + 0.03451395779848099, + -0.005315566435456276, + 0.020979363471269608, + 0.010184446349740028, + 0.007854233495891094, + -0.021321823820471764, + 0.0016518085030838847, + -0.016914518550038338, + -0.021872736513614655, + 0.01195630244910717, + -0.005148059222847223, + 0.009782428853213787, + -0.0197286419570446, + -0.0031361097935587168, + 0.00544585008174181, + 0.014159954153001308, + -0.007478272542357445, + -0.011829741299152374, + 0.0068231322802603245, + 0.03138715401291847, + 0.008993282914161682, + 0.0016992689343169332, + -0.0245677437633276, + 0.00031919454340822995, + 0.017346316948533058, + -0.005721306428313255, + -0.009938769042491913, + 0.0015708466526120901, + 0.0003508348308969289, + -0.018284358084201813, + -0.0014749952824786305, + 0.009387856349349022, + 0.006056321319192648, + 0.0018881800351664424, + -0.01162128709256649, + -0.0009659590432420373, + -0.026652280241250992, + 0.005125724710524082, + -0.036509156227111816, + 0.012559328228235245, + -0.005803199019283056, + 0.021411161869764328, + -0.026592722162604332, + 0.010936368256807327, + -0.01692940853536129, + 0.011628732085227966, + -0.019817980006337166, + -0.004061122424900532, + 0.006722628138959408, + 0.0103184524923563, + 0.019639305770397186, + 0.008665713481605053, + 0.017122972756624222, + 0.019073503091931343, + -0.00045948196202516556, + -0.02142604999244213, + 0.0029220725409686565, + -0.004917270969599485, + 0.013735602609813213, + -0.004258409142494202, + 0.0025591400917619467, + 0.01625937968492508, + -0.004135570023208857, + -0.002227847697213292, + 0.0010534350294619799, + -0.0009101232280954719, + 0.0028476249426603317, + 0.01815035194158554, + 0.007735116872936487, + -0.00720653822645545, + -0.017078304663300514, + 0.015916919335722923, + 0.004883769899606705, + -0.01331869512796402, + 0.0005583578022196889, + 0.018671484664082527, + 0.02245342917740345, + 0.003363175317645073, + -0.012328540906310081, + -0.0030821352265775204, + 0.016363605856895447, + 0.007042753044515848, + -0.01086192112416029, + -0.003232891671359539, + -0.016765624284744263, + 0.0025554175954312086, + -0.008003128692507744, + -0.032191190868616104, + 0.009581419639289379, + 0.02711385488510132, + 0.004489196930080652, + -0.01724208891391754, + -0.00697947246953845, + -0.0049879965372383595, + 0.020785801112651825, + -0.0016415719874203205, + 0.0070092519745230675, + 0.0023599923588335514, + 0.020860247313976288, + -0.013095351867377758, + 0.035049982368946075, + -0.009320853278040886, + -0.004116958472877741, + -0.00824880599975586, + -0.0022483207285404205, + 0.00040806649485602975, + -0.023212796077132225, + -0.0206369049847126, + -0.02008599229156971, + -0.012581662274897099, + 0.0032459201756864786, + 0.019207509234547615, + -0.003311061765998602, + -0.007831898517906666, + -0.011122487485408783, + -0.01619982160627842, + 0.008822053670883179, + -0.005568688735365868, + -0.004645537119358778, + 0.023704150691628456, + -0.014219512231647968, + -0.0062536075711250305, + -0.00955164059996605, + 0.008353033103048801, + -0.005591022782027721, + 0.007161869667470455, + -0.0021552611142396927, + 0.0030002426356077194, + 0.012440212070941925, + -0.019252177327871323, + 0.0009282698738388717, + -0.012149865739047527, + 0.007705337833613157, + -0.0032552259508520365, + 0.0047907098196446896, + 0.004507808946073055, + 0.01978820003569126, + 0.02281077764928341, + 0.0007910068961791694, + -0.02148560807108879, + 0.007936125621199608, + 0.0038526689168065786, + 0.001377282664179802, + -0.003599546616896987, + -0.01614026352763176, + -0.006994361989200115, + -0.0014852317981421947, + 0.0031621663365513086, + 0.014673643745481968, + 0.006011652294546366, + 0.03180406242609024, + 0.0034953199792653322, + 0.01572335511445999, + -0.004273298662155867, + -0.016854960471391678, + -0.009953659027814865, + 0.021753620356321335, + -0.026622500270605087, + -0.02160472422838211, + 0.005382569506764412, + -0.009291074238717556, + -0.002244598465040326, + -0.0030300216749310493, + -0.009678201749920845, + -0.0020231164526194334, + 0.004187683574855328, + -0.013504814356565475, + 0.0031640275847166777, + -0.0005206686328165233, + 0.011695735156536102, + 0.0030504949390888214, + -0.01477042492479086, + 0.0023097400553524494, + 0.0018202464561909437, + -0.0025423893239349127, + -0.009142179042100906, + 0.004772098269313574, + 0.012477436102926731, + -0.0006221036892384291, + -0.01346759032458067, + 0.0106162428855896, + 0.006692849099636078, + -0.004530142992734909, + -0.02208119072020054, + 0.009157068096101284, + 0.007143257651478052, + 0.021277155727148056, + -0.005844145081937313, + -0.016244489699602127, + -0.011450057849287987, + -0.018537478521466255, + -0.00394572876393795, + -0.029764194041490555, + -0.012157310731709003, + 0.007757451385259628, + -0.014360963366925716, + 0.0069571384228765965, + -0.006815687753260136, + 0.017093194648623466, + -0.018597038462758064, + -0.006934803910553455, + -0.009655867703258991, + -0.0004701838188339025, + -0.0030988857615739107, + 0.010802362114191055, + 0.0007933333981782198, + -0.012291316874325275, + 0.008174357935786247, + 0.007884012535214424, + -0.017688775435090065, + -0.014427965506911278, + 0.0021180373150855303, + 0.0069571384228765965, + 0.005170393269509077, + 0.02057734690606594, + 0.002289267024025321, + -0.021098481491208076, + 0.010966147296130657, + -0.017495211213827133, + 0.02099425345659256, + 0.0062201060354709625, + 0.016780514270067215, + 0.00983454193919897, + 0.0019951986614614725, + -0.010095109231770039, + 0.014926765114068985, + -0.0030933022499084473, + 0.00286809797398746, + 0.003281282726675272, + -0.009678201749920845, + -0.004306799732148647, + 0.0075824991799890995, + 0.012872008606791496, + -0.01576802507042885, + 0.015544681809842587, + -0.0014331183629110456, + -0.018894828855991364, + -0.0016750734066590667, + 0.027888111770153046, + 0.022006742656230927, + -0.0016964771784842014, + 0.0008124106097966433, + 0.006614679004997015, + 0.0010748388012871146, + 0.008896500803530216, + -0.012618886306881905, + 0.0020882582757622004, + 0.02651827409863472, + -0.0006765435682609677, + -0.011948857456445694, + -0.028141234070062637, + 0.00585531210526824, + 0.0024288564454764128, + 0.0191032811999321, + 0.01815035194158554, + 0.014733201824128628, + 0.006864078808575869, + 0.005985595751553774, + -0.010385455563664436, + -0.0031026082579046488, + -0.01893949694931507, + -0.005185282789170742, + -0.003614436136558652, + -0.0001968211290659383, + 0.016542280092835426, + 0.011576618999242783, + 0.013214468024671078, + -0.011338385753333569, + 0.007612278219312429, + 0.01435351837426424, + 0.014867207035422325, + 0.005122002214193344, + -0.004433360882103443, + 0.010809807106852531, + 0.005084778647869825, + -0.012380653992295265, + 0.015485123731195927, + -0.011688290163874626, + 0.006637013051658869, + -0.017763223499059677, + -0.007988238707184792, + 0.003087718738242984, + -0.014718311838805676, + -0.012611442245543003, + -0.00729587534442544, + 0.006421114783734083, + -0.003039327682927251, + 0.00821902696043253, + 0.010698135942220688, + -0.02438906952738762, + 0.01343781128525734, + -0.01289434265345335, + -0.004474307410418987, + 0.001922612078487873, + 0.00913473404943943, + -0.007913791574537754, + 0.0025107490364462137, + 0.016050925478339195, + -0.013854718767106533, + 0.008829498663544655, + 0.02263210341334343, + 0.02779877372086048, + -0.0015457205008715391, + 0.004053677897900343, + -0.006104711908847094, + 0.023525476455688477, + -0.0188054908066988, + 0.009298519231379032, + 0.023257464170455933, + -0.0028252904303371906, + -0.007106033619493246, + -0.0163784958422184, + -0.013743046671152115, + -0.012298761866986752, + 0.009789873845875263, + -0.0049396054819226265, + 0.013341029174625874, + -0.008539152331650257, + -0.002544250339269638, + 0.0010683246655389667, + -0.011524504981935024, + 0.007958459667861462, + 0.003206835128366947, + -0.010042996145784855, + -0.005929760169237852, + -0.00017111341003328562, + -0.004399859346449375, + 0.022051410749554634, + -0.005442127585411072, + -0.015916919335722923, + -0.021470719948410988, + 0.018671484664082527, + 0.006901302374899387, + 0.015276669524610043, + 0.013586706481873989, + -0.0012581662740558386, + -0.004656704142689705, + -0.007593666203320026, + 0.01602114737033844, + -0.005304399412125349, + 0.009067730978131294, + 0.012618886306881905, + -0.0050066085532307625, + -0.02245342917740345, + -0.02148560807108879, + -0.0016927547985687852, + -0.01171062421053648, + -0.0197137538343668, + -0.0037484420463442802, + -0.030672455206513405, + 0.01718253083527088, + 0.003889892715960741, + 0.0031993903685361147, + -0.0021664283704012632, + -0.025461116805672646, + 0.006212661042809486, + 0.005806921049952507, + 0.021440939977765083, + 0.007247484289109707, + 0.019996654242277145, + 0.017941897734999657, + -0.013326140120625496, + -0.005471906624734402, + -0.003374342340976, + -0.001215358846820891, + 0.04859946295619011, + 0.03141693398356438, + 0.01156172901391983, + -0.011062929406762123, + 0.011003371328115463, + -0.02099425345659256, + 0.0127454474568367, + -0.007697892840951681, + -0.0049061039462685585, + -0.012388098984956741, + -0.0056617483496665955, + -0.016095595434308052, + 0.01138305477797985, + 0.020800689235329628, + 0.010065330192446709, + -0.0018667762633413076, + 0.0012646804098039865, + 0.0068082427605986595, + 0.007474550046026707, + 0.002209235681220889, + 0.005702694412320852, + 0.004578534048050642, + -0.024657081812620163, + 0.011174601502716541, + 0.02742653526365757, + -0.0131995789706707, + -0.0023581311106681824, + 0.0038675584364682436, + 0.006677959579974413, + -0.003698189975693822, + 0.0012265259865671396, + 0.004083456937223673, + -0.02233431302011013, + -0.004399859346449375, + -0.00916451308876276, + 0.015485123731195927, + 0.001825830084271729, + 0.009395300410687923, + -0.0033799258526414633, + -0.010117443278431892, + -0.02525266259908676, + -0.0007351711392402649, + 0.017033636569976807, + -0.0043142447248101234, + -0.020800689235329628, + -0.0068082427605986595, + 0.003949450794607401, + 0.0070241414941847324, + 0.014085506089031696, + -0.0070092519745230675, + 0.015366006642580032, + 0.006115879397839308, + -0.012060528621077538, + -0.0014414937468245625, + -0.002367437118664384, + -0.0031193590257316828, + 0.017078304663300514, + -0.00943252444267273, + 0.0008291613776236773, + 0.001025517238304019, + -0.007288430817425251, + 0.011658511124551296, + 0.000923616869840771, + 0.04157160222530365, + -0.01213497668504715, + 0.0227661095559597, + -0.009603754617273808, + 0.009804762899875641, + -0.0018704986432567239, + -0.01803123578429222, + 0.015351117588579655, + -0.005643136333674192, + 0.008732716552913189, + -0.021143149584531784, + 0.0034525124356150627, + -0.003759609302505851, + -0.016854960471391678, + -0.0030318829230964184, + 0.0032459201756864786, + 0.030359774827957153, + 0.0020380059722810984, + -0.001375421416014433, + -0.004016453865915537, + -0.004686483182013035, + -0.004451972898095846, + 0.0024530519731342793, + -0.002546111587435007, + 0.007191648706793785, + 0.008844387717545033, + -0.008784829638898373, + -0.017405875027179718, + -9.980645700125024e-5, + 0.0017681330209597945, + 0.017524991184473038, + 0.009395300410687923, + -0.02287033572793007, + -0.00982709787786007, + 0.00438496982678771, + 0.0055463542230427265, + -0.007787230424582958, + 0.01135327573865652, + -0.023570144549012184, + -0.0008277654414996505, + 0.01507566124200821, + -0.02269166149199009, + -0.03999330848455429, + -0.003054217202588916, + 0.002127343323081732, + -0.0043477462604641914, + 0.0028941547498106956, + 0.0030970247462391853, + 0.008434925228357315, + -0.005650580860674381, + 0.012484881095588207, + -0.010266339406371117, + 0.010474792681634426, + 0.008092465810477734, + -0.014755535870790482, + 0.00934318732470274, + -0.002371159614995122, + -0.013646264560520649, + -0.006190326996147633, + 0.019937096163630486, + -0.01110015343874693, + 0.009410190396010876, + -0.0042993552051484585, + -0.01064602192491293, + 0.029749304056167603, + -0.0034115661401301622, + -0.011896743439137936, + 0.019862648099660873, + -7.0667163527105e-5, + 0.008226471953094006, + 0.011174601502716541, + 0.009477193467319012, + -0.002399077406153083, + 0.014011058956384659, + -0.01631893776357174, + 0.010847031138837337, + 0.0032905887346714735, + -0.009700536727905273, + 0.036628272384405136, + 0.014599195681512356, + -0.0030765514820814133, + -0.002882987493649125, + -0.0034208721481263638, + -0.00023136951494961977, + 0.03305478394031525, + -0.001543859369121492, + -0.0020361447241157293, + 0.019013945013284683, + -0.019564857706427574, + 0.0022632102482020855, + 0.0033650363329797983, + -0.008241361007094383, + 0.005386291537433863, + 0.013087906874716282, + -0.006625846028327942, + -0.0028271516785025597, + -0.005583578255027533, + -0.004146737512201071, + -0.004102068953216076, + -0.003845224156975746, + 0.015440454706549644, + -0.00901561789214611, + 0.0006216383771970868, + -0.013847273774445057, + -0.0063355001620948315, + -0.01797167770564556, + -0.00859126541763544, + -0.003281282726675272, + 0.0006374585209414363, + 0.0006141936173662543, + 0.007079977076500654, + -0.00021403716527856886, + -0.001610862324014306, + -0.007228872273117304, + -0.0015885279281064868, + 0.009439969435334206, + -0.01649761199951172, + 0.001672281650826335, + 0.02403172105550766, + 0.02555045299232006, + -0.007645779754966497, + 0.002979769604280591, + 0.002977908356115222, + -0.0062536075711250305, + 0.011278827674686909, + 0.022557655349373817, + 0.006852911785244942, + 0.0042807431891560555, + 0.019490409642457962, + -0.021872736513614655, + -0.01633382774889469, + -0.0074484930373728275, + 0.009804762899875641, + 0.006339222192764282, + -0.005427238065749407, + -0.019803090021014214, + -0.00018542131874710321, + 0.01386960782110691, + -0.002335796831175685, + -0.015470233745872974, + -0.010794918052852154 + ], + "c695a9b6-67a3-406b-af48-f2d132267861": [ + -0.010235059075057507, + -0.01862766221165657, + -0.006350669544190168, + -0.0008019941742531955, + -0.026490742340683937, + -0.019048381596803665, + 0.002598660532385111, + 0.012447456829249859, + -0.04854217916727066, + 0.04448007419705391, + 0.020063908770680428, + 0.04952869191765785, + 0.040214862674474716, + -0.006234609056264162, + -0.0387641079723835, + 0.022878367453813553, + 0.012773876078426838, + 0.03560146689414978, + 0.007319046650081873, + -0.022950906306505203, + 0.061860088258981705, + 0.006278131622821093, + -0.03461495786905289, + 0.024126015603542328, + -0.015900248661637306, + -0.015885740518569946, + -0.017655659466981888, + 0.010409149341285229, + -0.03365745767951012, + -0.0026766385417431593, + 0.017394524067640305, + 0.015987293794751167, + 0.002377420663833618, + -0.011417422443628311, + 0.002535190200433135, + -0.005255351308733225, + -0.003672217484563589, + 0.038444943726062775, + -0.014405973255634308, + -0.007195732556283474, + -0.0006455848924815655, + 0.03661699593067169, + 0.03325124830007553, + -0.001239486737176776, + -0.035166241228580475, + 0.015639113262295723, + -0.035282302647829056, + -0.008537678979337215, + 0.023066965863108635, + 0.020092923194169998, + 0.013513759709894657, + 0.016393503174185753, + 0.0031481331679970026, + -0.004772976040840149, + 0.020499134436249733, + -0.03551442176103592, + 0.04941263049840927, + 0.0718412697315216, + -0.008153229020535946, + -0.03536934778094292, + 0.03417972847819328, + -0.014405973255634308, + -0.03632684424519539, + 0.0023846745025366545, + -0.011620528064668179, + -0.017641151323914528, + -0.019556144252419472, + 0.007373449858278036, + -0.056260183453559875, + -0.006289012264460325, + 0.00647398317232728, + 0.039199333637952805, + -0.032728977501392365, + 0.007558420766144991, + 0.004584378097206354, + -0.03505018353462219, + 0.020600685849785805, + 0.016001800075173378, + 0.025272110477089882, + 0.004294227808713913, + -0.005422187503427267, + 0.0018932321108877659, + -0.028521794825792313, + 0.0017817055340856314, + 0.08425971120595932, + -0.018874291330575943, + -0.02360374480485916, + -0.05443223565816879, + 0.00684392498806119, + -0.011352138593792915, + -0.03481806069612503, + 0.05112452059984207, + -0.024880405515432358, + 0.010488941334187984, + 0.019657697528600693, + -0.012868175283074379, + 0.027100058272480965, + -0.002687519183382392, + 0.025315633043646812, + 0.029769442975521088, + 0.026099039241671562, + 0.02264624834060669, + -0.03330927714705467, + -0.0022668009623885155, + 0.005222709383815527, + -0.021630721166729927, + 0.005335142370313406, + -0.005469337105751038, + -0.018076376989483833, + 0.03980864956974983, + 0.01291895192116499, + -0.05280739441514015, + 0.010394642129540443, + 0.006862059701234102, + -0.04752665385603905, + -0.01014076080173254, + -0.015552067197859287, + -0.04120137169957161, + 0.02194988541305065, + -0.05324262008070946, + 0.013216355815529823, + -0.001652951235882938, + 0.01619039848446846, + 0.009444398805499077, + -0.013013250194489956, + 0.010525209829211235, + -0.028942514210939407, + 0.043319471180438995, + 0.022515680640935898, + 0.017452552914619446, + -0.013209101743996143, + 0.00402221130207181, + 0.014841198921203613, + 0.0235166996717453, + 0.015929263085126877, + 0.011359392665326595, + 0.020716747269034386, + 0.050515204668045044, + -0.00027836314984597266, + 0.025272110477089882, + -0.06476159393787384, + -0.020499134436249733, + -0.03859001770615578, + -0.002843474969267845, + -0.0039750621654093266, + 0.036878131330013275, + -0.035253286361694336, + 0.032845038920640945, + -0.022472158074378967, + 0.006035130470991135, + -0.05196595564484596, + -0.035282302647829056, + -0.02190636284649372, + 0.02577987313270569, + 0.03885115310549736, + -0.03571752831339836, + -0.0438997708261013, + 0.015610097907483578, + 0.004395780153572559, + 0.0356304831802845, + 0.03661699593067169, + -0.0634269043803215, + -0.009052695706486702, + 0.011497214436531067, + 0.04224591329693794, + 0.027752896770834923, + 0.048977404832839966, + 0.023328101262450218, + -0.03142330050468445, + 0.009973923675715923, + 0.02676638402044773, + -0.011221570894122124, + 0.006252743769437075, + -0.023647267371416092, + 0.036007679998874664, + -0.020513640716671944, + 0.04114334285259247, + -0.0027636836748570204, + 0.03240981325507164, + -0.06249842047691345, + -0.021442122757434845, + -0.020702239125967026, + 0.007416972424834967, + -0.03626881539821625, + -0.026186084374785423, + 0.0043304963037371635, + -0.009161502122879028, + 0.004827379249036312, + 0.013513759709894657, + -0.00427246605977416, + -0.014362450689077377, + -0.03783562779426575, + 0.0037647029384970665, + 0.007950124330818653, + -0.020383073017001152, + -0.05678245425224304, + 0.02103591151535511, + 0.014130329713225365, + 0.009901386685669422, + 0.002130792709067464, + -0.008530424907803535, + -0.03177148103713989, + -0.018003839999437332, + 0.04587279632687569, + -0.004207182209938765, + 0.02585241012275219, + 0.002861609449610114, + -0.022936398163437843, + 0.015494037419557571, + -0.036878131330013275, + 0.023908402770757675, + -0.027259640395641327, + 0.0038626287132501602, + -0.005813891068100929, + -0.03287405148148537, + 0.032787006348371506, + -0.010525209829211235, + 0.011395661160349846, + 0.0022885622456669807, + -0.026345666497945786, + 0.01774270460009575, + 0.003360305679962039, + 0.006564655341207981, + -0.025446200743317604, + -0.04598885774612427, + 0.005320635158568621, + -0.025243094190955162, + 0.012099276296794415, + -0.028115585446357727, + 0.009792579337954521, + 0.022370604798197746, + -0.0034038282465189695, + 0.022936398163437843, + 0.003978688735514879, + 0.006198340095579624, + 0.027187103405594826, + 0.01688675954937935, + 0.0470333993434906, + -0.050515204668045044, + -0.013013250194489956, + 0.015755172818899155, + 0.011243332177400589, + 0.007616451010107994, + -0.01017702929675579, + 0.026867937296628952, + 0.00930657796561718, + -0.05170482024550438, + 0.0374874472618103, + -0.0011751095298677683, + -0.009045442566275597, + 0.002067322377115488, + 0.0066408198326826096, + 0.015494037419557571, + -0.008320066146552563, + -0.018395543098449707, + 0.011961454525589943, + 0.023081474006175995, + -0.03806774690747261, + -0.01180187240242958, + 0.027970509603619576, + 0.00486002117395401, + 0.013078534044325352, + -0.001651137717999518, + -0.011518975719809532, + 0.029522813856601715, + -0.0267228614538908, + 0.053068529814481735, + -0.006347042508423328, + 0.01215730607509613, + 0.06011918559670448, + -0.013433968648314476, + -0.019193455576896667, + -0.013071280904114246, + 0.0017481568502262235, + 0.004181794356554747, + -0.006350669544190168, + -0.023168519139289856, + -0.02106492780148983, + 0.02184833399951458, + -0.0027763776015490294, + 0.03464397042989731, + -0.032003600150346756, + 0.03287405148148537, + 0.05489647760987282, + -0.014282658696174622, + 0.02739020809531212, + -0.016408011317253113, + -0.0034183356910943985, + -0.013143817894160748, + -0.009516936726868153, + -0.015682635828852654, + 0.011250586248934269, + 0.003168080933392048, + 0.02743373066186905, + 0.007427853066474199, + 0.012440202757716179, + -0.012302381917834282, + -0.03699418902397156, + 0.021326063200831413, + -0.001759037491865456, + -0.014318928122520447, + 0.03464397042989731, + 0.009538698010146618, + -0.03258390352129936, + 0.021326063200831413, + -0.016016308218240738, + 0.016669146716594696, + 0.034063670784235, + -0.03975062072277069, + 0.019149933010339737, + 0.016524070873856544, + -0.0080516766756773, + 0.005458456464111805, + -0.015784187242388725, + 0.014551048167049885, + 0.0028851842507719994, + -0.02257370948791504, + -0.02035405859351158, + -0.023197533562779427, + -0.007028896361589432, + 0.004493705928325653, + -0.0058682942762970924, + -0.05396799370646477, + 0.01536346971988678, + 0.03896721452474594, + -0.008218512870371342, + 0.02253018692135811, + -0.04120137169957161, + -0.03818380832672119, + -0.03339632228016853, + -0.031858526170253754, + -0.00648123724386096, + -0.028797438368201256, + -0.0186711847782135, + -0.047468625009059906, + -0.04201379418373108, + -0.046685218811035156, + -0.024126015603542328, + 0.027317671105265617, + -0.03580457344651222, + -0.008798814378678799, + -0.026374680921435356, + -0.0009774445788934827, + -0.033541399985551834, + -0.017554106190800667, + -0.03180049732327461, + 0.001258527860045433, + 0.022979920729994774, + -0.019788265228271484, + 0.0017608508933335543, + 0.0009919520234689116, + -0.0043377503752708435, + 0.04767172783613205, + 0.008660992607474327, + 0.06772112846374512, + -0.02017996832728386, + -0.034295789897441864, + -0.023632759228348732, + 0.014870213344693184, + -0.019686711952090263, + 0.011018465273082256, + -0.041781675070524216, + -0.05350375548005104, + -0.007493136916309595, + 0.001414483762346208, + 0.018816260620951653, + 0.008211259730160236, + 0.0032605663873255253, + -0.004181794356554747, + 0.020876329392194748, + -0.024691808968782425, + 0.003064714837819338, + 0.012208082713186741, + -0.05356178432703018, + 0.01604532264173031, + -0.026925968006253242, + 0.03792267292737961, + -0.02506900392472744, + -0.01930951699614525, + 0.02427108958363533, + -0.013811164535582066, + -0.015189379453659058, + 0.005048619117587805, + -0.05184989795088768, + 0.014072299934923649, + 0.014833944849669933, + 0.010264074429869652, + -0.031829509884119034, + 0.028115585446357727, + 0.03153936192393303, + -0.037690550088882446, + 0.019149933010339737, + -0.009799833409488201, + 0.006336161866784096, + 0.015160364098846912, + 0.0021634348668158054, + -0.009582220576703548, + -0.021543676033616066, + 0.00883508287370205, + -0.0005608065403066576, + -0.011627782136201859, + 0.004617020022124052, + 0.017989331856369972, + 0.027230625972151756, + 0.040940236300230026, + -0.031887542456388474, + -0.0024028089828789234, + -0.026418203487992287, + 0.019918832927942276, + -0.0012512741377577186, + 0.02430010586977005, + 0.018917813897132874, + -0.007805048953741789, + -0.001965769799426198, + 0.025257602334022522, + 0.02356022223830223, + 0.008987411856651306, + 0.04622097685933113, + -0.01872921548783779, + -0.04352257773280144, + 0.015827709808945656, + -0.009328339248895645, + 0.008588455617427826, + 0.012295127846300602, + -0.014957258477807045, + 0.04131743311882019, + 0.006209220737218857, + 0.03539836406707764, + -0.02282033860683441, + -0.03400563821196556, + 0.016422519460320473, + 0.020600685849785805, + 0.01290444377809763, + 0.008233021013438702, + -0.022254543378949165, + 0.0042108092457056046, + 0.008247528225183487, + -0.022298065945506096, + -0.02592494897544384, + -0.015610097907483578, + -0.007630958687514067, + 0.03066890873014927, + -0.006956358440220356, + -0.02189185656607151, + 0.006125802639871836, + 0.03664600849151611, + -0.026258621364831924, + 0.007228374481201172, + 0.010372880846261978, + 0.0016583915567025542, + 0.001980277244001627, + 0.023270070552825928, + -0.007986392825841904, + -0.0014906482538208365, + 0.009698281064629555, + -0.026099039241671562, + 0.0004964293912053108, + -0.02106492780148983, + -0.015421499498188496, + -0.059596914798021317, + -0.01614687591791153, + -0.010148013941943645, + 0.011555244214832783, + -0.03336730971932411, + 0.052952468395233154, + -0.030436789616942406, + 0.013056772761046886, + -0.004624273627996445, + -0.0027945120818912983, + 0.016785206273198128, + -0.015523052774369717, + -0.0112941088154912, + -0.031046105548739433, + 0.04833907634019852, + 0.007326300255954266, + 0.006546521093696356, + -0.005795756354928017, + 0.005117529537528753, + 0.000792926934082061, + -0.0026240486185997725, + 0.0146090779453516, + 0.0024499583523720503, + -0.003840867429971695, + -0.011997723951935768, + -0.006328908260911703, + -0.03487609326839447, + 0.001860590185970068, + -0.06928794085979462, + -0.022327082231640816, + 0.007072418928146362, + 0.023980939760804176, + 0.022849353030323982, + -0.018032854422926903, + 0.010481687262654305, + 0.014072299934923649, + -0.007659973576664925, + 0.014928244054317474, + -0.034353822469711304, + 0.008037169463932514, + -0.014768660999834538, + -0.0038988974411040545, + -0.013042265549302101, + -0.01700281910598278, + 0.022327082231640816, + -0.03652995079755783, + 0.024590255692601204, + -0.030465804040431976, + -0.006354296114295721, + -0.023081474006175995, + 0.01368784997612238, + -0.00024345441488549113, + -0.027056535705924034, + -0.02187734842300415, + 0.007435106672346592, + -0.001963956281542778, + -0.006985373795032501, + -0.015015289187431335, + -0.005922697484493256, + 0.05211103335022926, + 0.00507038040086627, + -0.0030919164419174194, + -0.0014679802116006613, + -0.016306458041071892, + 0.00685117905959487, + 0.020020386204123497, + 0.010314851067960262, + -0.013245371170341969, + -0.01791679486632347, + -0.021398600190877914, + -0.00845788698643446, + -0.02277681604027748, + 0.0018823514692485332, + -0.024851391091942787, + 0.005157425533980131, + 0.02506900392472744, + -0.003960554488003254, + -0.02107943408191204, + 0.009429891593754292, + 0.015813203528523445, + 0.03986668214201927, + -0.043261442333459854, + 0.006691596005111933, + 0.009625743143260479, + -0.017467061057686806, + -0.02683892287313938, + 0.008479648269712925, + 0.014065045863389969, + 0.039170317351818085, + -0.02107943408191204, + 0.011533482931554317, + -0.019599666818976402, + 0.014239136129617691, + -0.03783562779426575, + -0.006444968283176422, + 0.00261679501272738, + -0.02097788266837597, + 0.006542894057929516, + -0.01938205398619175, + -0.006778641138225794, + -0.019149933010339737, + -0.014703377149999142, + -0.00883508287370205, + -0.0015704396646469831, + 0.01258527860045433, + 0.006938224192708731, + -0.015958277508616447, + -0.04694635421037674, + 0.03995372727513313, + 0.013085788115859032, + 0.009901386685669422, + 0.033541399985551834, + -0.023661773651838303, + 0.05660836398601532, + 0.019744742661714554, + -0.004062107298523188, + 0.00182613474316895, + -0.012882682494819164, + -0.008719023317098618, + 0.023647267371416092, + -0.02280583046376705, + 0.005842905957251787, + -0.040882207453250885, + 0.003721180371940136, + 0.00544032221660018, + -0.00892938207834959, + 0.014514779672026634, + -0.026389189064502716, + -0.01087339036166668, + 0.02176128886640072, + -0.009379114955663681, + -0.015131349675357342, + 0.033628445118665695, + 0.002254106802865863, + 0.021224509924650192, + -0.010474433191120625, + 0.007964631542563438, + 0.004558989778161049, + 0.012041246518492699, + 0.005462083499878645, + -0.020818298682570457, + 0.04622097685933113, + 0.06093160808086395, + 0.0022976293694227934, + -0.006749626249074936, + -0.03336730971932411, + -0.01374588068574667, + 0.01784425601363182, + 0.024053476750850677, + -0.019657697528600693, + 0.031220195814967155, + -0.03780661150813103, + 0.018888797610998154, + 0.01502979639917612, + -0.032699961215257645, + -0.002052814932540059, + -0.02519957162439823, + 0.009422637522220612, + 0.019251486286520958, + 0.012846413999795914, + -0.028652362525463104, + 0.01170757319778204, + -0.03388958051800728, + 0.020034892484545708, + 0.006749626249074936, + 0.007340807933360338, + 0.020049400627613068, + 0.019759250804781914, + -0.018235959112644196, + -0.002551511162891984, + 0.001703727524727583, + 0.005317008122801781, + -0.0052916198037564754, + -0.008066183887422085, + -0.02843474969267845, + -0.002961348742246628, + -0.010191536508500576, + -0.009553205221891403, + 0.02431461215019226, + 0.022994428873062134, + -0.002157994545996189, + -0.010039207525551319, + -0.006394192110747099, + -0.005400426220148802, + 0.033686473965644836, + -0.009915893897414207, + 0.021587198600172997, + -0.017655659466981888, + 0.009531443938612938, + 0.02025250531733036, + -0.007279151119291782, + 0.0055056060664355755, + 0.013143817894160748, + -0.014471257105469704, + 0.009132487699389458, + 0.011526228860020638, + -0.019991369917988777, + 0.002709280466660857, + 0.021500153467059135, + -0.0028996916953474283, + -0.015871232375502586, + 0.033686473965644836, + -0.03484707698225975, + -0.0032261109445244074, + 0.012469218112528324, + 0.012701339088380337, + 0.011497214436531067, + 0.013876448385417461, + 0.008029915392398834, + -0.008378095924854279, + 0.0387641079723835, + -0.009531443938612938, + -0.034208744764328, + 0.040330920368433, + -0.022341588512063026, + 0.0185261107981205, + 0.011156287044286728, + 0.011678557842969894, + 0.0046968115493655205, + -0.016857745125889778, + 0.009785326197743416, + 0.01170031912624836, + -0.0011479079257696867, + -0.03780661150813103, + 0.03133625537157059, + -0.0049361856654286385, + -0.01215730607509613, + -0.004493705928325653, + -0.010118999518454075, + 0.018917813897132874, + -0.02174678072333336, + -0.010024700313806534, + 0.0036286949180066586, + 0.002357472898438573, + -0.008987411856651306, + 0.007877586409449577, + 0.01331790816038847, + 0.013346923515200615, + -0.01620490662753582, + 0.023270070552825928, + -0.022080453112721443, + -0.03583358973264694, + -0.011613273993134499, + 0.01178736425936222, + -0.01785876415669918, + 0.00585378659889102, + 0.021268032491207123, + -0.004011330660432577, + 0.012324143201112747, + 0.008262035436928272, + -0.01861315593123436, + 0.009205024689435959, + 0.017583120614290237, + 0.01012625265866518, + 0.027883464470505714, + 0.02263174019753933, + 0.006949104834347963, + -0.019701220095157623, + 0.009183263406157494, + -0.02096337452530861, + 0.017496075481176376, + -0.0021090314257889986, + 0.019918832927942276, + 0.0003046580241061747, + -0.026896951720118523, + -0.05106649175286293, + -0.003721180371940136, + 0.01373137254267931, + -0.003389320569112897, + 0.0038299867883324623, + 0.0024082493036985397, + 0.032816022634506226, + -0.007014388684183359, + 0.02264624834060669, + 0.006956358440220356, + -0.001652044476941228, + -0.0061874594539403915, + 0.024024462327361107, + -0.011678557842969894, + 0.013426714576780796, + -0.02604100853204727, + 0.001965769799426198, + -0.007616451010107994, + 0.020412089303135872, + -0.03914130479097366, + 0.00016615650383755565, + -0.0032460589427500963, + 0.009495175443589687, + -0.019062887877225876, + -0.0033476115204393864, + 0.005803010426461697, + 0.02255920320749283, + -0.014079554006457329, + 0.03792267292737961, + -0.0030338861979544163, + -0.012237098067998886, + -0.0041201370768249035, + 0.007783287670463324, + -0.0026494369376450777, + -0.00043817260302603245, + 0.002069135894998908, + 0.00012932099343743175, + 0.017539598047733307, + 0.011134525761008263, + 0.006771387532353401, + -0.007971885614097118, + -0.023806849494576454, + -0.007957377471029758, + 0.002430010586977005, + 0.03238079696893692, + -0.0226607546210289, + 0.015552067197859287, + 0.03246784210205078, + 0.024880405515432358, + -0.005248097237199545, + -0.0326419323682785, + 0.000792473612818867, + 0.003169894451275468, + -0.024111507460474968, + -0.0437546968460083, + 0.009509682655334473, + 0.006383311469107866, + -0.025663813576102257, + 0.009683772921562195, + -0.011903424747288227, + 0.017380015924572945, + -0.03322223201394081, + 0.027187103405594826, + -0.0028162733651697636, + -0.019759250804781914, + 0.001653857878409326, + -0.004014957696199417, + -0.01171482726931572, + -0.018424557521939278, + 0.014246390201151371, + 0.021572690457105637, + -0.019033873453736305, + -0.020092923194169998, + -0.00854493211954832, + -0.011257840320467949, + 0.002567832125350833, + 0.021471137180924416, + -0.025243094190955162, + 0.039199333637952805, + 0.029392246156930923, + 0.02112295664846897, + 0.03287405148148537, + -0.020063908770680428, + 0.009270308539271355, + -0.01208476908504963, + -0.007083299569785595, + 0.004305108450353146, + 0.029479291290044785, + -0.005451202858239412, + 0.023980939760804176, + -0.044915299862623215, + 0.017234940081834793, + -0.0022105842363089323, + 0.04865824058651924, + 0.05689851567149162, + 0.009894132614135742, + -0.0064050727523863316, + -0.0014453122857958078, + -0.02026701346039772, + 0.02260272577404976, + -0.007021642290055752, + 0.0040004500187933445, + -0.005520113278180361, + -0.003100983565673232, + 0.029421262443065643, + 0.014456748962402344, + 0.020658716559410095, + 0.014065045863389969, + -0.0028162733651697636, + 0.01091691292822361, + -0.012041246518492699, + -0.008276543579995632, + -0.020716747269034386, + -0.02679540030658245, + -0.032757993787527084, + 0.027767404913902283, + -0.011221570894122124, + -0.03818380832672119, + -0.011091003194451332, + -0.010684792883694172, + -0.010561478324234486, + -0.006695223040878773, + 0.015929263085126877, + -0.011003958061337471, + 0.016640132293105125, + 0.018439065665006638, + 0.011061987839639187, + -0.016509564593434334, + -0.02654877118766308, + 0.029566336423158646, + -0.03490510582923889, + 0.020499134436249733, + -0.044044848531484604, + 0.014543794095516205, + -0.011040226556360722, + 0.004671423230320215, + 0.020571671426296234, + -0.01208476908504963, + -0.017351001501083374, + -0.03069792501628399, + 0.005190067458897829, + 0.0036740307696163654, + -0.021239018067717552, + -0.01416659913957119, + -0.024445179849863052, + -0.008443379774689674, + -0.011547990143299103, + 0.01174384169280529, + -0.01216456014662981, + 0.014928244054317474, + 0.010017446242272854, + 0.0010626761941239238, + -0.016495056450366974, + 0.009553205221891403, + -0.019004859030246735, + -0.014253644272685051, + -0.019164441153407097, + 0.031046105548739433, + 0.014514779672026634, + -0.006093160714954138, + -0.041781675070524216, + -0.00589730916544795, + 0.0029015052132308483, + 0.0009574966970831156, + -0.0092993238940835, + -0.013506506569683552, + 0.0058610402047634125, + -0.02091985195875168, + -0.035253286361694336, + -0.023908402770757675, + -0.02660680189728737, + 0.013579043559730053, + -0.00016309632337652147, + -0.008994665928184986, + -0.011497214436531067, + 0.04024387523531914, + 0.008914874866604805, + -0.026302143931388855, + -0.022080453112721443, + -0.023966431617736816, + 0.017452552914619446, + -0.02345866896212101, + 0.003978688735514879, + 0.017554106190800667, + 0.013963493518531322, + 0.06064145639538765, + 0.015116841532289982, + -0.004036718979477882, + -0.013397700153291225, + -0.007551167160272598, + 0.07189929485321045, + -0.009030934423208237, + 0.008595708757638931, + -0.022486664354801178, + 0.009850610047578812, + -0.012309635058045387, + 0.02739020809531212, + 0.0008423432009294629, + 0.012708592228591442, + 0.021224509924650192, + -0.02193537913262844, + 0.005001469515264034, + -0.004261585418134928, + -0.015232902020215988, + -0.0023828609846532345, + 0.01957065239548683, + 0.001876911148428917, + -0.010525209829211235, + -0.021645227447152138, + -0.0066807153634727, + 0.019947847351431847, + -0.012607039883732796, + -0.009422637522220612, + 0.0032333647832274437, + -0.010887897573411465, + -0.0029305201023817062, + 0.012853668071329594, + -0.003935166168957949, + 0.048106953501701355, + -0.008610216900706291, + 0.018381034955382347, + -0.011250586248934269, + 0.0012848227052018046, + 0.02844925783574581, + -0.0020600685384124517, + -0.002085456857457757, + 0.013484745286405087, + -0.003405641531571746, + -0.026316652074456215, + -0.01854061707854271, + 0.024706315249204636, + 0.035108212381601334, + -0.01369510404765606, + -0.009618489071726799, + -0.002306696493178606, + -0.004791110288351774, + -0.0009747243602760136, + 0.013919970951974392, + 0.006698850076645613, + -0.0015006221365183592, + -0.034353822469711304, + 0.0035398362670093775, + -0.03319321945309639, + 0.030204668641090393, + -0.018468080088496208, + -0.006042384542524815, + -0.006745999213308096, + -0.013129310682415962, + -0.020615193992853165, + 0.035079196095466614, + -0.028188122436404228, + -0.005128410179167986, + -0.006724237930029631, + -0.0038118523079901934, + -0.009161502122879028, + -0.010002939030528069, + 0.04207182303071022, + 0.0006115828873589635, + -0.014427734538912773, + -0.028043046593666077, + -0.004918050952255726, + -0.003222484141588211, + 0.0092993238940835, + -0.006172952242195606, + -0.014456748962402344, + 0.008407111279666424, + -0.019744742661714554, + -0.03238079696893692, + 0.0074786292389035225, + -0.0005540061392821372, + 0.03374450281262398, + 0.008755291812121868, + 0.010561478324234486, + -0.03310617431998253, + -0.012302381917834282, + -0.03214867785573006, + -0.020528148859739304, + -0.020034892484545708, + -0.022225528955459595, + 0.018264975398778915, + 0.002634929260239005, + 0.022196514531970024, + 0.011685811914503574, + -0.04453810304403305, + -0.007188478950411081, + -0.005871920846402645, + -0.02277681604027748, + -0.0022976293694227934, + -0.0185261107981205, + -0.014812183566391468, + 0.009865117259323597, + 0.014739645645022392, + 0.020600685849785805, + -0.028782930225133896, + -0.021993407979607582, + 0.019556144252419472, + -0.0017889592563733459, + -0.018888797610998154, + -0.013056772761046886, + -0.014297166839241982, + -0.00809519924223423, + 0.027071041986346245, + 0.010982196778059006, + 0.009415384382009506, + 0.00809519924223423, + 0.0008935729274526238, + -0.02994353324174881, + -0.013172833248972893, + 0.0029939906671643257, + -0.013956239446997643, + -0.020702239125967026, + -0.00365589652210474, + -0.024575747549533844, + -0.06661855429410934, + -0.01706084981560707, + 0.02093436010181904, + 0.043348487466573715, + 0.0004909890703856945, + -0.015348962508141994, + 0.013470237143337727, + 0.02276230789721012, + -0.004685930907726288, + 0.02817361429333687, + -0.01775721088051796, + -0.022486664354801178, + -0.003840867429971695, + 0.021210001781582832, + 0.0015813203062862158, + 0.0020582552533596754, + -0.011526228860020638, + 0.009364607743918896, + -0.0018469893839210272, + -0.01862766221165657, + -0.015131349675357342, + -0.005784875713288784, + 0.029363231733441353, + 0.0034854330588132143, + 0.0033548653591424227, + 0.04073713347315788, + -0.033512383699417114, + 0.017234940081834793, + -0.01782974973320961, + -0.0036794710904359818, + 0.015290931798517704, + -0.010974942706525326, + -0.022225528955459595, + -0.012041246518492699, + 0.0031100506894290447, + -0.002707466948777437, + 0.004914424382150173, + -0.01294796634465456, + 0.0483100600540638, + 0.020063908770680428, + 0.00323699158616364, + -0.011032973416149616, + -0.011627782136201859, + -0.014775915071368217, + -0.02424207516014576, + -0.012229843996465206, + 0.024836882948875427, + -0.027651343494653702, + 0.01016977522522211, + 0.009400876238942146, + 0.031858526170253754, + 0.005607158876955509, + 0.00971278827637434, + -0.01614687591791153, + -0.0025243095587939024, + 0.00047466810792684555, + -0.011722080409526825, + -0.02013644576072693, + -0.0008971997885964811, + -0.0015595590230077505, + 0.05504155158996582, + 0.013354177586734295, + 0.011874409392476082, + -0.024503210559487343, + -0.005871920846402645, + 0.028913497924804688, + 0.010039207525551319, + 0.005349650047719479, + 0.00855944026261568, + -0.0062201013788580894, + 0.012033992446959019, + -0.012969727627933025, + 0.0001705767645034939, + 0.02662131004035473, + 0.003946046810597181, + 0.01791679486632347, + 0.027288654819130898, + 0.003414708888158202, + 0.02254469506442547, + -0.012048499658703804, + -0.008218512870371342, + -0.00292870681732893, + 0.00565068144351244, + -0.0017091678455471992, + -0.00935010053217411, + 0.000827835698146373, + 0.02840573526918888, + -0.019802773371338844, + -0.0019567024428397417, + 0.007776033598929644, + 0.02029602788388729, + 0.013100295327603817, + 0.014514779672026634, + 0.018323004245758057, + 0.0011406542034819722, + 0.04105629771947861, + 0.007166717667132616, + -0.007928363047540188, + -0.005005096551030874, + 0.00930657796561718, + -0.0035906126722693443, + -0.004366765264421701, + 0.014355196617543697, + -0.040330920368433, + -0.002725601429119706, + -0.0022631739266216755, + -0.0065247598104178905, + 0.028043046593666077, + -0.006252743769437075, + -0.014057792723178864, + 0.0012195388553664088, + 0.030407773330807686, + -0.0359206348657608, + 0.019614174962043762, + -0.014405973255634308, + 0.02917463332414627, + 0.018134407699108124, + -0.014094061218202114, + 0.0007906601531431079, + 0.009589474648237228, + -0.010343865491449833, + 0.044828254729509354, + -0.007340807933360338, + -0.05480943247675896, + 0.006024249829351902, + -0.002961348742246628, + -0.014246390201151371, + -0.025533245876431465, + -0.005313381087034941, + 0.030465804040431976, + -0.003100983565673232, + 0.037516459822654724, + 0.006296266335994005, + 0.006582789588719606, + 0.0068765669129788876, + 0.0006777734379284084, + 0.019048381596803665, + -0.005095768254250288, + 0.006945477798581123, + -0.0306398943066597, + 0.0006677995552308857, + -0.00851591769605875, + 0.0005100301932543516, + 0.03075595386326313, + 0.0021942632738500834, + 0.01090965885668993, + -0.0034382834564894438, + -0.008987411856651306, + -0.016843236982822418, + -0.016567593440413475, + -0.024474196135997772, + 0.03583358973264694, + 0.016422519460320473, + -0.006042384542524815, + -0.000621556828264147, + -0.022312574088573456, + -0.012614293955266476, + 0.020528148859739304, + 0.009009173139929771, + 0.004841886460781097, + -0.008421618491411209, + -0.0009937655413523316, + 0.011932440102100372, + 0.00031576535548083484, + 0.004348631016910076, + -0.024590255692601204, + -0.011511721648275852, + -0.001049075392074883, + -0.015174872241914272, + -0.011859902180731297, + -0.008327319286763668, + 0.016843236982822418, + 0.02505449764430523, + 0.005552755203098059, + 0.010336612351238728, + -0.006093160714954138, + -0.017539598047733307, + 0.001274848822504282, + 0.006691596005111933, + -0.017510583624243736, + -0.016770699992775917, + 0.012831906788051128, + -0.004221689887344837, + 0.027056535705924034, + -0.005317008122801781, + -0.003646829165518284, + 0.02591044083237648, + -0.019048381596803665, + -0.006082280073314905, + 0.014826690778136253, + 0.02673736959695816, + -0.00030329794390127063, + -0.015697142109274864, + -8.126481407089159e-5, + 0.006720611359924078, + 0.006818537134677172, + 0.004671423230320215, + 0.021326063200831413, + -0.037690550088882446, + -0.01682872883975506, + -0.023154010996222496, + -0.013107549399137497, + 0.018076376989483833, + -0.010938674211502075, + 0.012280620634555817, + 0.01134488545358181, + -0.015740664675831795, + 0.026273129507899284, + 0.015842217952013016, + 0.0021217255853116512, + -0.008552186191082, + 0.0039750621654093266, + 0.01711888052523136, + -0.015842217952013016, + 0.0046968115493655205, + -0.00313725252635777, + 0.0076889884658157825, + 0.015305439941585064, + -0.011816379614174366, + -0.015871232375502586, + 0.035282302647829056, + 0.023792341351509094, + 0.0195271298289299, + -0.036036692559719086, + -0.013477491214871407, + 0.006484863813966513, + 0.008755291812121868, + -0.04450908675789833, + -0.009197771549224854, + -0.002847102005034685, + -0.00407298794016242, + -0.01784425601363182, + 0.018250467255711555, + -0.011069241911172867, + 0.008907620795071125, + -0.01373862661421299, + 0.019222471863031387, + -0.027259640395641327, + 0.0029903636313974857, + -0.007529405876994133, + -0.02673736959695816, + -0.015436007641255856, + -0.01858413964509964, + 0.01942557655274868, + 0.01861315593123436, + 0.0057123382575809956, + -0.027956001460552216, + -0.00970553420484066, + 0.02744823880493641, + 0.005607158876955509, + -0.003822732949629426, + -0.0005231776158325374, + -0.02271878533065319, + -0.002963162027299404, + 0.0025696454104036093, + 0.004544482566416264, + 0.02193537913262844, + -0.011867156252264977, + 0.022834844887256622, + 0.0011207063216716051, + 0.011606020852923393, + 0.01536346971988678, + 0.023647267371416092, + -0.017104372382164, + 0.010024700313806534, + -0.015813203528523445, + -0.013970747590065002, + 0.01096768956631422, + 0.032757993787527084, + -0.02183382585644722, + 0.009393623098731041, + -0.019120918586850166, + -0.010677538812160492, + -0.0066770887933671474, + 0.005875547882169485, + 0.027216117829084396, + -0.003771956544369459, + -0.008682753890752792, + 0.012940713204443455, + 0.028695885092020035, + -0.028637856245040894, + -0.010155268013477325, + -0.008029915392398834, + 0.025547752156853676, + 0.020803792402148247, + 0.019193455576896667, + 0.011359392665326595, + -0.010314851067960262, + 0.030320728197693825, + 0.0006038757273927331, + 0.016466042026877403, + 0.016495056450366974, + 0.029798457399010658, + -0.02094886638224125, + 0.021456630900502205, + 0.0008210352971218526, + 0.01861315593123436, + 0.01858413964509964, + 0.016524070873856544, + 0.02028152160346508, + 0.047352563589811325, + 0.002961348742246628, + 0.00203649397008121, + -0.008719023317098618, + 0.009103472344577312, + -0.00019777838315349072, + 0.026113545522093773, + -0.013847433030605316, + -0.011555244214832783, + -0.013056772761046886, + -0.012338650412857533, + -0.018090885132551193, + -0.02830418199300766, + -0.03000156208872795, + 0.005969846621155739, + 0.02036856673657894, + 0.0009738176595419645, + 0.004627900663763285, + 0.004276093095541, + -0.015653619542717934, + 0.01624842919409275, + -0.0045698704198002815, + 0.017583120614290237, + -0.014710631221532822, + -0.030262699350714684, + -0.03954751417040825, + -0.03403465449810028, + 0.01778622716665268, + 0.012730353511869907, + 0.015537559986114502, + -0.017583120614290237, + 0.01249097939580679, + -0.006561028305441141, + -0.009741803631186485, + 0.03075595386326313, + -0.006238236092031002, + -0.013680596835911274, + 0.003960554488003254, + -0.0022015171125531197, + -0.0032660067081451416, + 0.01872921548783779, + 0.012055753730237484, + -0.011134525761008263, + -0.007395211141556501, + 0.032003600150346756, + 0.023008935153484344, + 0.00924854725599289, + 0.01694479025900364, + 0.027839941903948784, + -0.01290444377809763, + 0.0012286060955375433, + 0.006869313307106495, + -0.00427972013130784, + -0.001119799679145217, + 0.025301124900579453, + 0.03882213681936264, + -0.0322067067027092, + -0.00423257052898407, + -0.053793903440237045, + -0.014746899716556072, + -0.018177930265665054, + 0.0031789615750312805, + 0.008247528225183487, + 0.010372880846261978, + 2.2993861421127804e-5, + -0.003391134086996317, + 0.0369071438908577, + -0.04027289152145386, + -0.013825671747326851, + 0.0026439966168254614, + -7.684454612899572e-5, + -0.010887897573411465, + -0.016437025740742683, + -0.00026816254830919206, + 0.0019675830844789743, + 0.02353120595216751, + -0.02419855259358883, + 0.015073318965733051, + -0.009792579337954521, + -0.016553087159991264, + -0.012599785812199116, + -0.0017173283267766237, + -0.025504229590296745, + -0.0161758903414011, + 0.01091691292822361, + -0.010648523457348347, + 0.018177930265665054, + 0.008704515174031258, + 0.0089801587164402, + -0.024720823392271996, + -0.02499646693468094, + 0.0028978781774640083, + 0.002410062588751316, + 0.013927225023508072, + -0.00292507978156209, + 0.008675500750541687, + -0.021543676033616066, + 0.008160483092069626, + -0.021210001781582832, + -0.0033512383233755827, + -0.020092923194169998, + 0.017931301146745682, + 0.004870901815593243, + 0.018439065665006638, + -0.03246784210205078, + 0.01502979639917612, + 0.0032315512653440237, + 0.007971885614097118, + 0.014601824805140495, + -0.02115197293460369, + -0.0226607546210289, + 0.010017446242272854, + 0.021558182314038277, + 0.009117979556322098, + -0.015595589764416218, + -0.006542894057929516, + 0.015450514853000641, + 0.03252587094902992, + 0.016785206273198128, + -0.009487921372056007, + -0.01784425601363182, + 0.0050196037627756596, + 0.005578143522143364, + -0.0034473508130759, + -0.012563517317175865, + 0.005030484404414892, + -0.008588455617427826, + 0.0059807272627949715, + -0.02189185656607151, + 0.02183382585644722, + 0.00606414582580328, + 0.01170757319778204, + 0.020455611869692802, + -0.0031934690196067095, + 0.059393808245658875, + -0.015015289187431335, + 0.009778072126209736, + -0.027013013139367104, + 0.0032787008676677942, + -0.012135544791817665, + 0.013919970951974392, + -0.01249823346734047, + 0.009074456989765167, + -0.023632759228348732, + -0.013912716880440712, + -0.03316420316696167, + 0.008370841853320599, + -0.005933578126132488, + 0.03658797964453697, + 0.03226473554968834, + 0.003255126066505909, + -0.0067641339264810085, + 0.006372430827468634, + -0.010612254962325096, + -0.013056772761046886, + 0.028913497924804688, + -0.01708986423909664, + -0.010568732395768166, + -0.02253018692135811, + 0.02335711568593979, + 0.007942870259284973, + -0.0019748369231820107, + -0.00855944026261568, + 0.01291169784963131, + -0.0032623799052089453, + 0.030465804040431976, + 0.030291713774204254, + -0.032032616436481476, + -0.018439065665006638, + -2.591236807347741e-5, + 0.012802891433238983, + 0.014848452061414719, + -0.002395555144175887, + 0.0027491759974509478, + 0.026099039241671562, + -0.01411582250148058, + -0.006114921998232603, + -0.011112764477729797, + 0.01620490662753582, + -0.00850140955299139, + 0.02337162382900715, + 0.0023139503318816423, + -0.00684392498806119, + 0.024575747549533844, + 0.0014951818156987429, + -0.018105391412973404, + 0.028695885092020035, + -0.005182813387364149, + 0.0020763895008713007, + 0.017249448224902153, + -0.018337512388825417, + -0.0024173164274543524, + -0.02107943408191204, + 0.01291169784963131, + 0.023864880204200745, + -0.0061004143208265305, + -0.020571671426296234, + -0.013172833248972893, + 0.014775915071368217, + -0.015290931798517704, + -0.01607433892786503, + -0.03240981325507164, + -0.02994353324174881, + 0.0015033422969281673, + -0.003960554488003254, + -0.011192556470632553, + -0.00856669433414936, + 0.02261723205447197, + -0.013209101743996143, + -0.015131349675357342, + -0.01619039848446846, + 0.008595708757638931, + 0.003429216332733631, + 0.0075729284435510635, + -0.014217374846339226, + -0.008029915392398834, + 0.008573947474360466, + -0.005520113278180361, + 0.0009457093547098339, + 0.003044766839593649, + -0.011439183726906776, + -0.0027654969599097967, + -0.015566575340926647, + 0.001413577003404498, + -0.004961573984473944, + 0.004754841327667236, + -0.0008532238425686955, + 0.009865117259323597, + -0.015769680961966515, + -0.006590043660253286, + -0.00569057697430253, + -0.012723100371658802, + -0.0006782268173992634, + -0.0030502071604132652, + 0.0176701657474041, + 0.007112314458936453, + 0.020078415051102638, + 0.00730816600844264, + 0.0019839040469378233, + -0.009277562610805035, + -0.027274148538708687, + 0.004548109136521816, + -0.013644327409565449, + 0.00974905677139759, + -0.025315633043646812, + 0.07764427363872528, + 0.005472964141517878, + -0.0011161727597936988, + -0.004540855530649424, + 0.015131349675357342, + -0.014449495822191238, + 0.006365176755934954, + 0.027941495180130005, + -0.0036595233250409365, + -0.01337593887001276, + -0.015566575340926647, + -0.023124996572732925, + -0.005632546730339527, + 0.01864217035472393, + 0.006818537134677172, + 4.8226189392153174e-5, + 0.001395442639477551, + -0.0015649993438273668, + -0.0001297743438044563, + 0.01855512522161007, + 0.030378758907318115, + -0.0060750264674425125, + -0.0038698825519531965, + 0.004265212453901768, + -0.004874528385698795, + -0.006539267022162676, + 0.0018542431062087417, + 0.02431461215019226, + 0.00427972013130784, + 0.027752896770834923, + 0.013172833248972893, + 0.006836671382188797, + -0.02492392808198929, + -0.01294796634465456, + -0.017176911234855652, + 0.01941106840968132, + 0.018352020531892776, + 0.012353157624602318, + -0.010699300095438957, + 0.018787246197462082, + 5.737839819630608e-5, + -0.015247409231960773, + 0.026070022955536842, + 0.028971528634428978, + -0.019701220095157623, + -0.022979920729994774, + 0.0005984354065731168, + -0.008233021013438702, + 0.011816379614174366, + -0.006347042508423328, + -0.01855512522161007, + -0.0185261107981205, + 0.012193575501441956, + 0.015813203528523445, + -0.01050344854593277, + -0.015711650252342224, + -0.01611786149442196, + -0.01707535795867443, + -0.004555363208055496, + 0.012831906788051128, + -0.01051070261746645, + -0.016538579016923904, + -0.015740664675831795, + -0.028623348101973534, + 0.0022631739266216755, + 0.0032805141527205706, + -0.025504229590296745, + 0.007271897047758102, + -0.01051070261746645, + -0.017191417515277863, + 0.002446331549435854, + 0.011127271689474583, + -0.0029196394607424736, + -0.03798070177435875, + 0.006111294962465763, + 0.0007670854101888835, + 0.016393503174185753, + 0.01536346971988678, + 0.018424557521939278, + -0.0023919283412396908, + 0.012200828641653061, + -0.008000900037586689, + 0.0021035911049693823, + -0.014543794095516205, + -0.00465328898280859, + 0.012295127846300602, + 0.003953300882130861, + -0.010815360583364964, + 0.00809519924223423, + -0.012679577805101871, + -0.0024046222679316998, + 0.014804929494857788, + -0.005037738475948572, + 0.011917931959033012, + 0.010474433191120625, + -0.011243332177400589, + -0.02599748596549034, + -0.029769442975521088, + -0.006716984324157238, + -0.0161033533513546, + 0.012723100371658802, + 0.004751214757561684, + -0.0033204099163413048, + 0.0019331277580931783, + -0.007551167160272598, + 0.005940831732004881, + 0.017234940081834793, + 0.0003722087130881846, + -0.012672323733568192, + -0.003985942807048559, + -0.012396680191159248, + -0.00684392498806119, + -0.005723218899220228, + 0.0016221227124333382, + -0.005193694029003382, + 0.024474196135997772, + 0.015015289187431335, + 0.009836101904511452, + -0.016712669283151627, + -0.015755172818899155, + -0.019614174962043762, + -0.014485764317214489, + -0.01604532264173031, + -0.015044303610920906, + 0.010162522085011005, + 0.009415384382009506, + -0.017278462648391724, + -0.014014270156621933, + -0.009001919999718666, + -0.002459025476127863, + -0.0042144362814724445, + 0.013136564753949642, + 0.014790422283113003, + -0.007906601764261723, + -0.020629702135920525, + -0.0041273911483585835, + 0.01790228672325611, + 0.005342396441847086, + 0.0058320253156125546, + -0.010271328501403332, + 0.012846413999795914, + -0.008704515174031258, + -0.002157994545996189, + 0.028768423944711685, + 0.007884840480983257, + 0.008740784600377083, + -0.022979920729994774, + -0.008385349996387959, + 0.018888797610998154, + 0.015290931798517704, + 0.021166479215025902, + -0.028623348101973534, + 0.006285385694354773, + 0.0022867487277835608, + 0.008798814378678799, + 0.007442360743880272, + -0.010293089784681797, + 0.0025732724461704493, + -0.01014076080173254, + 0.0012077514547854662, + 0.01616138406097889, + 0.009473414160311222, + -0.023719804361462593, + -0.014231882989406586, + -0.003325850237160921, + 0.0040077040903270245, + 0.004845513496547937, + 0.014725138433277607, + 0.016741683706641197, + -0.0030230055563151836, + -0.007228374481201172, + -0.005034111440181732, + 0.004954319912940264, + -0.022065946832299232, + 0.019686711952090263, + 0.007768779993057251, + -0.0015922009479254484, + 0.015436007641255856, + -0.004087495151907206, + 0.01291895192116499, + 0.0025750857312232256, + -0.016378996893763542, + 0.0031445061322301626, + -0.0001904112723423168, + 0.0013047705870121717, + -0.027854450047016144, + 0.018221452832221985, + -0.007913854904472828, + -0.0019548891577869654, + 0.0133614307269454, + -0.006564655341207981, + 0.01536346971988678, + 0.00022191980679053813, + 0.004845513496547937, + -0.019222471863031387, + -0.021369585767388344, + 0.005342396441847086, + 0.014507525600492954, + -0.00684392498806119, + -0.016509564593434334, + -0.013876448385417461, + -0.0022015171125531197, + 0.015958277508616447, + -0.004286973737180233, + 0.006735118571668863, + -0.00422894349321723, + -0.024082493036985397, + -0.02582339569926262, + 0.0023864880204200745, + -0.004700438119471073, + -0.03211966156959534, + -0.01794580928981304, + 0.001169669209048152, + -0.009103472344577312, + -0.01055422518402338, + 0.017554106190800667, + 0.002758243354037404, + 0.02842024341225624, + 0.011236079037189484, + 0.0076019433327019215, + -0.0030502071604132652, + -0.0007557513890787959, + -0.020107431337237358, + -0.008378095924854279, + -0.0042434511706233025, + -0.002580526052042842, + -0.0033294770400971174, + 0.014768660999834538, + 0.008334573358297348, + -0.02267526276409626, + 0.04595984145998955, + 0.006706103682518005, + -0.019889818504452705, + 0.008864098228514194, + 0.011780111119151115, + 0.03589161857962608, + 0.014014270156621933, + -0.004566243849694729, + 0.0027854449581354856, + -0.009589474648237228, + -0.011780111119151115, + 0.00043477240251377225, + -0.01626293547451496, + 0.0027926985640078783, + 0.0006564655341207981, + -0.0012340464163571596, + 0.016364488750696182, + -0.016669146716594696, + -0.012353157624602318, + -2.7045767637901008e-5, + -0.016625624150037766, + 0.004642408341169357, + -0.03223572298884392, + 0.01706084981560707, + 0.015189379453659058, + 0.0019730234052985907, + 0.011932440102100372, + 0.006869313307106495, + 0.00043522578198462725, + -0.021239018067717552, + -0.007718003820627928, + -0.012048499658703804, + -0.00705791125074029, + 0.015044303610920906, + 0.0014117636019364, + 0.01300599705427885, + -0.024590255692601204, + 0.01787327229976654, + -0.00040734410868026316, + 0.0034038282465189695, + 0.006227355450391769, + -0.0019548891577869654, + 0.016770699992775917, + -0.003840867429971695, + -0.006862059701234102, + 0.010053715668618679, + -0.0005603531608358026, + -0.014007016085088253, + -0.006938224192708731, + -0.012563517317175865, + -0.009698281064629555, + -0.00162030931096524, + 0.0020582552533596754, + -0.009451652877032757, + -0.00506675336509943, + -0.02589593268930912, + -0.014478510245680809, + 0.016422519460320473, + -0.007507644593715668, + 0.012106530368328094, + -0.0025261228438466787, + -0.008392603136599064, + -0.006183832883834839, + 0.004947066307067871, + 0.0020963374990969896, + 0.01017702929675579, + -0.002203330397605896, + -0.0015105961356312037, + 0.018366526812314987, + 0.013078534044325352, + 0.0015278237406164408, + -0.0052589778788387775, + 0.004620647057890892, + -0.010438164696097374, + 0.004765721969306469, + -0.008320066146552563, + 0.018293989822268486, + 0.018961336463689804, + -0.02763683721423149, + 0.013550029136240482, + -0.002910572336986661, + 0.010430910624563694, + -0.01531994715332985, + -0.004319615662097931, + -0.004468318074941635, + -0.019236978143453598, + 0.011120018549263477, + 0.028826452791690826, + -0.008987411856651306, + -0.0003808225446846336, + 0.0038517480716109276, + 0.006521132774651051, + 0.010039207525551319, + 0.015740664675831795, + -1.093731407308951e-5, + -0.010278581641614437, + 0.015784187242388725, + -0.0035869856365025043, + 0.010271328501403332, + -0.017974823713302612, + 0.00627450505271554, + -0.023966431617736816, + -0.02605551667511463, + -0.008378095924854279, + -0.004504586569964886, + 0.017365507781505585, + -0.002459025476127863, + -0.009168756194412708, + -0.012737607583403587, + 0.0021217255853116512, + -0.014681615866720676, + -0.00213623302988708, + -0.0058610402047634125, + 0.015624605119228363, + -0.007290031760931015, + 0.016553087159991264, + -0.0018333885818719864, + 0.008711769245564938, + 0.011221570894122124, + 0.009654758498072624, + 0.008262035436928272, + -0.005418560933321714, + 0.0017771718557924032, + -0.01698831282556057, + -0.004399407189339399, + 0.0019893443677574396, + 0.011772857047617435, + 0.0004166380094829947, + -0.0005150171346031129, + -0.0011061988770961761, + -0.004388526547700167, + 0.019614174962043762, + -0.014551048167049885, + -0.0186711847782135, + -0.011961454525589943, + 0.012744861654937267, + 0.005164679139852524, + 0.0050522456876933575, + -0.022515680640935898, + 0.004588005132973194, + 0.009879625402390957, + -0.0012331396574154496, + -0.023168519139289856, + -0.015247409231960773, + -0.012839159928262234, + 0.009901386685669422, + 0.016378996893763542, + -0.0018932321108877659, + -0.016567593440413475, + 0.007928363047540188, + 0.0041273911483585835, + -0.010866136290133, + -0.010692046023905277, + -0.005730472505092621, + 0.023951925337314606, + -0.006459475960582495, + 0.012063007801771164, + 0.02025250531733036, + -0.005284366197884083, + -0.014493018388748169, + -0.0018052802188321948, + 0.011359392665326595, + 0.012432949617505074, + -0.0117946183308959, + -0.0024227567482739687, + -0.008777053095400333, + -0.02115197293460369, + 0.04195576533675194, + -0.005491098389029503, + -0.009088965132832527, + 0.004972454626113176, + -0.02506900392472744, + 0.002725601429119706, + 0.022341588512063026, + 0.016640132293105125, + -0.026287635788321495, + 0.017583120614290237, + 0.007630958687514067, + 0.012846413999795914, + -0.00271834759041667, + 0.0066770887933671474, + 0.004500959999859333, + -0.010786345228552818, + 0.011729334481060505, + 0.013267132453620434, + 0.013724119402468204, + 0.01605983078479767, + -0.0014697937294840813, + -0.0028815572150051594, + -0.01017702929675579, + 0.015334454365074635, + -0.00214167358353734, + -0.0009339219541288912, + 0.0037284339778125286, + 0.005639800801873207, + 0.0006872939993627369, + 0.02013644576072693, + -0.01130136288702488, + -0.0022831219248473644, + 0.03229375183582306, + -0.012396680191159248, + -0.020586179569363594, + -0.01090965885668993, + -0.005926324054598808, + -0.012889936566352844, + 0.0040077040903270245, + 0.011968708597123623, + -0.009125233627855778, + -0.012403934262692928, + 0.006372430827468634, + -0.014971766620874405, + 0.0017381829675287008, + -0.0017291157273575664, + 0.009444398805499077, + 0.003996823448687792, + 0.030407773330807686, + 0.0023447787389159203, + 0.022094961255788803, + -0.008160483092069626, + -0.00851591769605875, + -0.011903424747288227, + 0.015058811753988266, + 0.0022269051987677813, + -0.005099395290017128, + -0.02276230789721012, + -0.018424557521939278, + -0.005219082348048687, + -0.018845275044441223, + 0.013042265549302101, + -0.00851591769605875, + 0.012643308378756046, + 0.002324830973520875, + 0.0016330033540725708, + -0.021413108333945274, + 0.00022906022786628455, + 0.030146637931466103, + 0.00966201163828373, + 0.018801752477884293, + -0.0006755066569894552, + 0.02097788266837597, + 0.003793718060478568, + 0.032003600150346756, + 0.025460707023739815, + -0.0008464234415441751, + 0.0032116034999489784, + 0.017321985214948654, + 0.00850866362452507, + 0.01782974973320961, + -0.00688744755461812, + -0.004595258738845587, + -0.018018346279859543, + 0.00668796943500638, + -0.010380134917795658, + 0.004305108450353146, + 0.009234040044248104, + 0.0036123739555478096, + 0.005182813387364149, + 0.030581863597035408, + 0.011468199081718922, + -0.007493136916309595, + 0.012374918907880783, + -0.004145525395870209, + 0.006579163018614054, + 0.002020173007622361, + -0.001550491782836616, + -0.009226785972714424, + 0.009415384382009506, + 0.021369585767388344, + 0.009422637522220612, + -0.002963162027299404, + 0.006278131622821093, + 0.00522633595392108, + -0.011932440102100372, + 0.015087826177477837, + -0.0002813099999912083, + 0.0037610759027302265, + -0.012636055238544941, + -0.0045771244913339615, + 0.00850140955299139, + 0.013042265549302101, + 0.027201609686017036, + 6.0013553593307734e-5, + -0.012374918907880783, + 0.02598297782242298, + 0.003793718060478568, + 0.004522721283137798, + 0.002462652511894703, + -0.0029722293838858604, + 0.015842217952013016, + -0.0026458099018782377, + -0.010438164696097374, + -0.03299011290073395, + 0.003115491010248661, + 0.01498627383261919, + 0.01458006352186203, + 0.008124214597046375, + 0.009516936726868153, + -0.0018859782721847296, + -0.005494725424796343, + -0.005541874561458826, + -0.031916555017232895, + 0.018946828320622444, + 0.003512634662911296, + -0.018990350887179375, + -0.010031954385340214, + 0.01690126769244671, + 0.0161758903414011, + 0.019831787794828415, + 0.02107943408191204, + -0.009045442566275597, + 0.0038299867883324623, + 0.0001385015348205343, + 0.004286973737180233, + -0.02255920320749283, + -0.011627782136201859, + -0.0032424319069832563, + -0.00031123176449909806, + -0.015827709808945656, + -0.005607158876955509, + 0.00323699158616364, + -0.006528386380523443, + -0.0055056060664355755, + 0.039228349924087524, + -0.0021634348668158054, + -0.0028325943276286125, + -0.018903305754065514, + 0.00022736012761015445, + -0.006963612511754036, + 0.0026313024573028088, + 0.009618489071726799, + -0.002114471746608615, + -0.006956358440220356, + -0.008116960525512695, + 0.02414052188396454, + -0.012512740679085255, + 0.008951143361628056, + 0.029537321999669075, + 0.01929500885307789, + 0.008777053095400333, + -0.006804029457271099, + -0.015189379453659058, + -0.007373449858278036, + -0.03499215096235275, + -0.0067967758513987064, + 0.0002949108020402491, + -0.0021942632738500834, + -0.016625624150037766, + -0.009328339248895645, + 0.008167737163603306, + -0.0036232545971870422, + 0.0007371636456809938, + 0.009487921372056007, + -0.0029160126578062773, + -0.002290375530719757, + -0.006133056245744228, + 0.01494275126606226, + -0.0036033065989613533, + 0.0031390658114105463, + 0.022457649931311607, + -0.006154817529022694, + 0.02517055720090866, + -0.018772738054394722, + 0.002602287335321307, + 0.019164441153407097, + -0.00934284646064043, + 0.0004599338863044977, + 0.001137934043072164, + 0.01706084981560707, + -0.020789284259080887, + -0.011047480627894402, + -0.003307715756818652, + 0.012657816521823406, + 0.012179067358374596, + -0.00041437119944021106, + -0.0013863753993064165, + 0.0018043734598904848, + 0.0275788065046072, + -0.01621941290795803, + -0.011946947313845158, + 0.0027800046373158693, + 0.004036718979477882, + 0.0008772519649937749, + 0.009161502122879028, + -0.01787327229976654, + 0.010300342924892902, + -0.023284578695893288, + 0.03583358973264694, + -0.011199809610843658, + 0.03568851202726364, + 0.007134075742214918, + -0.015885740518569946, + 0.011896170675754547, + 0.023893894627690315, + 0.0037864642217755318, + -0.007855825126171112, + -0.011047480627894402, + -0.018888797610998154, + 0.009886878542602062, + 0.018264975398778915, + -0.009531443938612938, + 0.005255351308733225, + 0.006368803791701794, + -0.007848571054637432, + 0.004475571680814028, + -0.02196439355611801, + 0.009502429515123367, + -0.020107431337237358, + 0.0014344316441565752, + 0.010017446242272854, + -0.018888797610998154, + 0.03174246475100517, + -0.01938205398619175, + -0.011526228860020638, + -0.0033349173609167337, + -0.003946046810597181, + -0.01688675954937935, + 0.03075595386326313, + -0.008428872562944889, + 0.007841317914426327, + 0.01845357194542885, + -0.015377976931631565, + 0.0028325943276286125, + -0.017496075481176376, + -0.007021642290055752, + 0.0005526460590772331, + -0.0013491999125108123, + 0.0032152303028851748, + -0.0044900793582201, + 0.023008935153484344, + -0.006564655341207981, + -0.018293989822268486, + -0.025750858709216118, + 0.000335939897922799, + 0.002493480918928981, + 0.00042910539195872843, + -0.019933341071009636, + 0.02741922251880169, + -0.004675050266087055, + -0.004170913714915514, + 0.004805617965757847, + 0.0033512383233755827, + 0.011664050631225109, + -0.01540699228644371, + 0.005556382238864899, + -0.0048128715716302395, + 0.006858432665467262, + -0.013056772761046886, + -0.006463102530688047, + -0.005103022325783968, + -0.04752665385603905, + -0.0004787483485415578, + 0.013201848603785038, + -0.015624605119228363, + -0.018221452832221985, + -1.7610209397389553e-5, + 0.011069241911172867, + 0.0007720723515376449, + -0.0033149695955216885, + -0.013252624310553074, + -0.0074496143497526646, + -0.024865899235010147, + -0.004986961837857962, + -0.022022424265742302, + -0.020890837535262108, + 0.02020898275077343, + 0.0051392908208072186, + -0.009589474648237228, + -0.0022976293694227934, + -0.015769680961966515, + -0.0028162733651697636, + -0.03806774690747261, + -0.0020745762158185244, + 4.8736219468992203e-5, + -0.016857745125889778, + 0.007014388684183359, + -0.011323124170303345, + 0.012737607583403587, + -0.001929500955156982, + 0.00182704150211066, + -0.013441222719848156, + 0.01782974973320961, + -0.016625624150037766, + 0.025431692600250244, + -0.005788502749055624, + -0.002306696493178606, + -0.03316420316696167, + 0.010605000890791416, + 0.0015232901787385345, + -0.015087826177477837, + 0.026244113221764565, + 0.01771368831396103, + -0.015247409231960773, + 0.0074786292389035225, + 0.0038009716663509607, + 0.0014725138898938894, + -0.01707535795867443, + 0.006209220737218857, + 0.017336493358016014, + 0.004192674998193979, + 0.021166479215025902, + 0.00706153828650713, + 0.011359392665326595, + -0.002272241283208132, + 0.0034527911338955164, + -0.0020709491800516844, + -0.026142561808228493, + 0.007395211141556501, + -0.0030955432448536158, + 0.0027310417499393225, + 0.01619039848446846, + -0.03458594158291817, + -0.012454710900783539, + -0.015624605119228363, + -0.002067322377115488, + 0.006528386380523443, + -0.024662792682647705, + -0.017423538491129875, + -0.014289912767708302, + -0.00804442260414362, + 0.005944458767771721, + -0.010423657484352589, + -0.015203886665403843, + 0.012556263245642185, + 0.0029939906671643257, + -0.010974942706525326, + 0.003953300882130861, + -0.006006115581840277, + 0.006836671382188797, + 0.027361193671822548, + 0.04308735206723213, + 0.01055422518402338, + -0.004776602610945702, + -0.006205594167113304, + -0.004497332964092493, + -0.01327438559383154, + 0.01170031912624836, + 0.014043284580111504, + -0.014797676354646683, + -0.0028670497704297304, + 0.028840960934758186, + 0.007921108976006508, + -0.010300342924892902, + 0.02110845036804676, + -0.012309635058045387, + 0.010343865491449833, + -0.014790422283113003, + 0.009393623098731041, + 0.006459475960582495, + 0.001566812745295465, + 0.017931301146745682, + -0.013056772761046886, + -0.003978688735514879, + -0.05089240148663521, + -0.007928363047540188, + -0.015842217952013016, + -0.011584259569644928, + 0.004910797346383333, + 0.0055962782353162766, + 0.007173971273005009, + 0.017525091767311096, + 0.003931539598852396, + 0.007384330499917269, + -0.011410169303417206, + 0.004794737324118614, + 0.017394524067640305, + 0.011591512709856033, + 0.01704634167253971, + 0.0033312905579805374, + -0.028086569160223007, + -0.007580182049423456, + 0.009778072126209736, + -0.007083299569785595, + -0.013803910464048386, + -0.025243094190955162, + -0.007768779993057251, + 0.03296109661459923, + -0.016408011317253113, + 0.010858883149921894, + -0.019077396020293236, + -0.008987411856651306, + -0.004312362056225538, + 0.004983335267752409, + -0.02189185656607151, + -0.0048128715716302395, + 0.0009275749325752258, + 0.01340495329350233, + -0.003971435129642487, + -0.011939693242311478, + 0.0007172158220782876, + 0.00706153828650713, + 0.011489960364997387, + 0.008450633846223354, + 0.013100295327603817, + -0.006532013416290283, + -0.023139502853155136, + 0.004033091943711042, + 0.013724119402468204, + 0.0007870332919992507, + -0.004218062851577997, + -0.005150171462446451, + -0.020426595583558083, + 0.026505248621106148, + 0.018439065665006638, + 0.009799833409488201, + 0.0015822270652279258, + -0.0059517123736441135, + -0.017278462648391724, + 0.0007811395917087793, + 0.009045442566275597, + 0.0010844375938177109, + -0.005414933897554874, + -0.02739020809531212, + 0.002770937280729413, + 0.015000781044363976, + -0.009277562610805035, + 0.007047030609101057, + -0.015116841532289982, + 0.007340807933360338, + -0.017626643180847168, + -0.004185420926660299, + 0.016495056450366974, + 0.0068765669129788876, + 0.0004878155596088618, + 0.018990350887179375, + -0.008951143361628056, + 0.02096337452530861, + -0.007906601764261723, + -0.010249567218124866, + 0.007010761648416519, + 0.0026820788625627756, + 0.0023828609846532345, + 0.009234040044248104, + 0.0023121368139982224, + -0.00970553420484066, + 0.035224273800849915, + -0.013521013781428337, + -0.014543794095516205, + -0.0011515348451212049, + -0.015174872241914272, + -0.006093160714954138, + -0.008073437958955765, + -0.0028180868830531836, + 0.002326644491404295, + 0.012665069662034512, + 0.023618251085281372, + -0.005124783609062433, + 0.0008214886183850467, + 0.005309754516929388, + 0.013919970951974392, + 0.011649543419480324, + -0.007718003820627928, + -0.008407111279666424, + 0.03072693943977356, + 0.020557163283228874, + -0.0145365409553051, + -0.00203286693431437, + 0.0068801939487457275, + -0.019788265228271484, + 0.0010037394240498543, + 0.01775721088051796, + 0.011061987839639187, + 0.006230982020497322, + 0.029522813856601715, + -0.00854493211954832, + -0.023168519139289856, + -0.0027763776015490294, + 0.01856963336467743, + 0.020702239125967026, + -0.012382172979414463, + 0.016408011317253113, + 0.007398838177323341, + -0.0025551379658281803, + 0.012026738375425339, + -0.0161758903414011, + -0.012875429354608059, + -0.02586691826581955, + -0.050689294934272766, + -0.026983996853232384, + 0.00039215656579472125, + 0.011446437798440456, + -0.014217374846339226, + 0.008283796720206738, + 0.013579043559730053, + -0.014050538651645184, + -0.009959416463971138, + 0.001944008399732411, + 0.016843236982822418, + -0.004838259890675545, + -0.013666088692843914, + -0.014507525600492954, + -0.02013644576072693, + 0.010075476951897144, + 0.004374018870294094, + 0.009284816682338715, + -0.0072138672694563866, + 0.01008998416364193, + 0.006978119723498821, + -0.02280583046376705, + -0.008363588713109493, + -0.00039396999636664987, + -0.007159464061260223, + -0.007427853066474199, + 0.011954201385378838, + 0.0006133962888270617, + -0.00448645232245326, + -0.007848571054637432, + -0.004740334115922451, + -0.0007634585490450263, + 0.011671304702758789, + 0.0036740307696163654, + 0.02181931771337986, + -0.007790541276335716, + -0.007235628552734852, + -0.013143817894160748, + -0.005973473656922579, + 0.010416403412818909, + -0.0032424319069832563, + -0.005570889916270971, + -0.012208082713186741, + 0.02118098735809326, + -0.011091003194451332, + 0.006347042508423328, + 0.008204005658626556, + -0.0028579826466739178, + 0.0078123025596141815, + -0.01051070261746645, + -0.011069241911172867, + -0.013216355815529823, + -0.014848452061414719, + -0.005248097237199545, + -0.00427972013130784, + -0.018917813897132874, + 0.017321985214948654, + -0.008153229020535946, + 0.01624842919409275, + 0.006920089945197105, + 0.018032854422926903, + -0.010206044651567936, + -0.02253018692135811, + 0.0008310091798193753, + 0.012969727627933025, + -0.01531994715332985, + 0.002997617470100522, + 0.009923147968947887, + 0.017974823713302612, + 0.009183263406157494, + -0.018903305754065514, + -0.0069998810067772865, + -0.017510583624243736, + 0.03470200300216675, + -0.0008201285381801426, + -0.00303025939501822, + 0.007072418928146362, + -0.0023846745025366545, + -0.0009234946919605136, + 0.007094180211424828, + -0.006350669544190168, + -0.004595258738845587, + 0.013100295327603817, + 0.006143936887383461, + 0.006651700474321842, + -0.022109469398856163, + 0.003790091024711728, + 0.012179067358374596, + -0.008392603136599064, + 0.0005127503536641598, + 0.014130329713225365, + 0.0006297173094935715, + -0.010401896201074123, + -0.013651581481099129, + 0.012730353511869907, + 0.005578143522143364, + -0.00214167358353734, + -0.0040040770545601845, + 0.009009173139929771, + -0.0019331277580931783, + 0.0037320610135793686, + -0.0006759600364603102, + -0.015856726095080376, + 0.016567593440413475, + 0.026084531098604202, + 0.0016892199637368321, + -0.014007016085088253, + -0.005164679139852524, + -0.007293658331036568, + 0.031133150681853294, + 0.026113545522093773, + 0.025257602334022522, + -0.00106902327388525, + 0.01462358608841896, + 0.02100689709186554, + 0.030930044129490852, + -0.0046968115493655205, + -0.01221533678472042, + -0.007456867955625057, + 0.0032116034999489784, + -0.016495056450366974, + -0.00585378659889102, + -0.022123975679278374, + -0.019062887877225876, + 0.01930951699614525, + 0.0018805379513651133, + 0.0146090779453516, + -0.006825790740549564, + -0.0267228614538908, + -0.006216474808752537, + -0.01687225140631199, + 0.03461495786905289, + -0.0018506161868572235, + 0.017554106190800667, + 0.009865117259323597, + 0.008407111279666424, + -0.004359511658549309, + 0.02598297782242298, + -0.019802773371338844, + -0.02605551667511463, + 0.010046461597084999, + -0.024880405515432358, + 0.016698161140084267, + -0.008109706453979015, + -0.01695929653942585, + -0.022283559665083885, + 0.0073589421808719635, + 0.004870901815593243, + 0.007253762800246477, + 0.0014888348523527384, + -0.024648286402225494, + 0.00813146773725748, + 0.014217374846339226, + 0.023734312504529953, + -0.003547090105712414, + 0.04291326180100441, + 0.019556144252419472, + -0.008907620795071125, + 0.0009411757346242666, + -0.005200948100537062, + 0.00884233694523573, + 0.0014162971638143063, + 0.011577005498111248, + 3.932899562641978e-5, + -0.0071231951005756855, + 0.004062107298523188, + -0.009792579337954521, + 0.00847239512950182, + -0.004780229646712542, + 0.001686499803327024, + -0.008015408180654049, + 0.006713357288390398, + -0.01008998416364193, + 0.005287993233650923, + 0.0057449801824986935, + -0.014681615866720676, + 0.00527711259201169, + -0.02257370948791504, + -0.0026730115059763193, + -0.026229606941342354, + 0.012810145504772663, + 0.0012730354210361838, + -0.0034926868975162506, + -0.016001800075173378, + -0.02676638402044773, + -0.022428635507822037, + 0.005817517638206482, + 0.02105041965842247, + 0.033570412546396255, + 0.002602287335321307, + 0.006807656493037939, + -0.005099395290017128, + 0.010982196778059006, + 0.013513759709894657, + 0.012628801167011261, + -0.014971766620874405, + 0.0032315512653440237, + -0.00705791125074029, + 0.009284816682338715, + -0.005414933897554874, + 0.021442122757434845, + 0.005879174917936325, + -0.003635948523879051, + 0.0031408793292939663, + -0.0029323336202651262, + 0.0016139622312039137, + -0.023081474006175995, + 0.004392153583467007, + 0.009321085177361965, + -0.011671304702758789, + 0.01370235811918974, + 0.01855512522161007, + 0.018816260620951653, + 0.014043284580111504, + 0.004497332964092493, + 0.017234940081834793, + -0.011859902180731297, + 0.015856726095080376, + -0.014630839228630066, + 0.0034328431356698275, + 0.018192436546087265, + -0.02923266403377056, + 0.027332177385687828, + -0.015972785651683807, + -0.004500959999859333, + 0.009088965132832527, + -0.001427177805453539, + -0.010808106511831284, + 0.015523052774369717, + -0.00033820667886175215, + -0.005044992081820965, + -0.03296109661459923, + 0.01420286763459444, + -0.0011914304923266172, + 0.015000781044363976, + 0.023879386484622955, + 0.0176701657474041, + 0.018410049378871918, + 0.0038154793437570333, + 0.0020038520451635122, + 0.005200948100537062, + 0.005349650047719479, + -0.010445418767631054, + 0.012150052934885025, + 0.001533264061436057, + 0.0028706765733659267, + -0.002355659380555153, + 0.01138115394860506, + 0.010031954385340214, + -0.00018451758660376072, + -0.011765602976083755, + -0.0010572358733043075, + 0.0020890836603939533, + 0.0418977327644825, + 0.0057413531467318535, + -0.009422637522220612, + -0.009480668231844902, + -0.010046461597084999, + 0.00034704720019362867, + 0.019657697528600693, + -0.009038188494741917, + 0.012251605279743671, + 0.005124783609062433, + -0.0026657579001039267, + -0.0009837915422394872, + -0.025417184457182884, + -0.019106410443782806, + -0.02253018692135811, + 0.013586297631263733, + 0.001325625111348927, + 0.011591512709856033, + -0.008008154109120369, + 0.006147563923150301, + -0.028623348101973534, + -0.011105510406196117, + -0.018888797610998154, + -0.010271328501403332, + 0.003877136157825589, + 0.001311117666773498, + -0.005618039518594742, + -0.01775721088051796, + -0.0036196275614202023, + 0.011867156252264977, + 0.0016991939628496766, + 0.012570771388709545, + -0.011780111119151115, + -0.044160906225442886, + -0.006024249829351902, + -0.005443948786705732, + 0.003070155158638954, + 0.000369941903045401, + -0.0003030712832696736, + 0.00841436441987753, + -0.0001300010335398838, + -0.027941495180130005, + -0.0014063232811167836, + 0.012186321429908276, + -0.009379114955663681, + -0.0007144956616684794, + -0.004787483252584934, + -0.01861315593123436, + 0.002478973474353552, + -0.023835863918066025, + 0.013608058914542198, + -0.015145856887102127, + -0.00023302712361328304, + -0.007315419614315033, + -0.021384092047810555, + -0.002580526052042842, + 0.0023139503318816423, + -0.019207963719964027, + 0.004174540285021067, + 0.03217769041657448, + 0.01536346971988678, + 0.01611786149442196, + 0.026998504996299744, + -0.0013764015166088939, + -0.016378996893763542, + 0.019759250804781914, + -0.010721061378717422, + 0.019773757085204124, + -0.03081398457288742, + -0.0014852079330012202, + 0.027970509603619576, + -0.012338650412857533, + 0.0013482931535691023, + 0.005215455312281847, + 0.017452552914619446, + -0.006230982020497322, + 0.019599666818976402, + -0.013956239446997643, + 0.024822376668453217, + 0.01768467389047146, + 0.01633547432720661, + -0.022196514531970024, + -0.0036105604376643896, + 0.0024209432303905487, + 0.004729453474283218, + -0.01331790816038847, + 0.007184851914644241, + -0.0035579707473516464, + -0.013861941173672676, + -0.007543913088738918, + 0.0017118880059570074, + 0.019628681242465973, + -0.020774776116013527, + -0.008827829733490944, + 0.008610216900706291, + 0.003068341640755534, + 0.0023919283412396908, + -0.020774776116013527, + -0.020470118150115013, + -0.004348631016910076, + 0.016727177426218987, + -0.011671304702758789, + -0.00038852967554703355, + 0.002517055720090866, + 0.014028777368366718, + -0.0013183713890612125, + -0.008820575661957264, + 0.012019485235214233, + 0.005574516486376524, + 0.015348962508141994, + -0.0007593783084303141, + -0.010822613723576069, + 0.010800852440297604, + 0.012810145504772663, + -0.024648286402225494, + 0.00486002117395401, + -0.006169325206428766, + 0.004957946948707104, + -0.003880763193592429, + -0.005817517638206482, + 0.011243332177400589, + 0.014471257105469704, + 0.0031245583668351173, + 0.006024249829351902, + -0.021340569481253624, + -0.0195271298289299, + -0.006024249829351902, + 0.046482112258672714, + 0.04775877296924591, + 0.005128410179167986, + -0.007134075742214918, + -0.0036758442874997854, + -0.024126015603542328, + -0.012411188334226608, + 0.011156287044286728, + -0.018090885132551193, + 0.00610766839236021, + 0.023748818784952164, + 0.00019256473751738667, + 0.012360411696135998, + 0.02028152160346508, + -0.020542657002806664, + 0.02020898275077343, + 0.024126015603542328, + -0.021674243733286858, + -0.015334454365074635, + 0.0030937297269701958, + -0.0020419342909008265, + 0.01412307657301426, + -0.010517955757677555, + -0.001963956281542778, + -0.003808225505053997, + -0.018003839999437332, + 0.004635154269635677, + -0.020760269835591316, + -0.017452552914619446, + -0.016480548307299614, + 0.02253018692135811, + -0.014318928122520447, + -0.025533245876431465, + 0.024024462327361107, + 0.00846514105796814, + 0.006122175604104996, + 0.001587667386047542, + 0.009117979556322098, + -0.003302275435999036, + -0.0013401326723396778, + -0.023008935153484344, + -0.0014389652060344815, + 0.009408130310475826, + -0.00465328898280859, + -0.019556144252419472, + -0.007645465899258852, + -0.0009620303171686828, + 0.005248097237199545, + -0.01257802452892065, + 0.0025605782866477966, + 0.01854061707854271, + 0.023951925337314606, + -0.002393741626292467, + 0.010068222880363464, + 0.0013365057529881597, + 0.017104372382164, + 0.01257802452892065, + -0.008755291812121868, + -0.005679696332663298, + 0.025475215166807175, + -0.009197771549224854, + -0.001980277244001627, + 0.005306127481162548, + 0.018787246197462082, + 0.0012131917756050825, + 0.001947635319083929, + 0.009117979556322098, + 0.02341514639556408, + 0.0007203893037512898, + 0.010002939030528069, + 0.0030375132337212563, + -0.008015408180654049, + -0.022994428873062134, + 0.0038118523079901934, + -0.021355077624320984, + -0.005755860824137926, + -0.02019447647035122, + -0.025533245876431465, + -0.01938205398619175, + 0.014181106351315975, + 0.015276424586772919, + -0.00151512969750911, + 0.005121156573295593, + -0.004747587721794844, + -0.0021434868685901165, + -0.006470356602221727, + -0.018032854422926903, + 0.013194594532251358, + 0.01180187240242958, + 0.017931301146745682, + 0.0028906245715916157, + 0.004170913714915514, + -0.013056772761046886, + -0.0036595233250409365, + 0.02091985195875168, + -0.004348631016910076, + -0.0031553867738693953, + 0.003822732949629426, + 0.0036196275614202023, + 0.025504229590296745, + 0.0006501185125671327, + -0.0006038757273927331, + -0.0017889592563733459, + 0.014696123078465462, + -0.006575535982847214, + -0.03664600849151611, + -0.017989331856369972, + -0.006444968283176422, + 0.006604550871998072, + 0.017176911234855652, + -0.022341588512063026, + 0.01781524159014225, + -0.00016082952788565308, + 0.006466729566454887, + 0.007144956383854151, + 0.02443067356944084, + 0.0027056534308940172, + 0.0023302712943404913, + 0.015392485074698925, + -0.003931539598852396, + -0.008167737163603306, + 0.011678557842969894, + 0.02502548135817051, + 0.005817517638206482, + -0.013506506569683552, + -0.009495175443589687, + -0.0032641931902617216, + 0.011620528064668179, + 0.0074496143497526646, + -0.018961336463689804, + 0.007928363047540188, + 0.008486902341246605, + -0.0009729109588079154, + 0.005879174917936325, + -0.012302381917834282, + -0.0035634110681712627, + -0.014173852279782295, + -0.003996823448687792, + 0.012715846300125122, + 0.008631978183984756, + -0.022152991965413094, + 0.027883464470505714, + 0.008595708757638931, + 0.017351001501083374, + 0.006619058549404144, + 0.0021434868685901165, + -0.00893663614988327, + 0.006742372643202543, + 0.018482588231563568, + 0.005092141684144735, + -0.011489960364997387, + -0.00523359002545476, + 0.011954201385378838, + 0.011816379614174366, + 0.00730816600844264, + 0.017423538491129875, + -0.024474196135997772, + 0.025518737733364105, + 0.016408011317253113, + -0.00685117905959487, + -8.10381316114217e-5, + 0.013151071965694427, + 0.008189498446881771, + 0.031916555017232895, + 0.0062201013788580894, + -0.0025696454104036093, + -0.015261917375028133, + 0.023124996572732925, + -0.020774776116013527, + -0.013288893736898899, + -0.015479530207812786, + 0.0036214410793036222, + -0.010235059075057507, + 0.02020898275077343, + -0.00568694993853569, + 0.02110845036804676, + 0.008363588713109493, + 0.003938793204724789, + -0.019019365310668945, + -0.0043631382286548615, + 0.008305558003485203, + 0.012055753730237484, + 0.0064304606057703495, + -0.0008808788261376321, + -0.00406573386862874, + 0.02036856673657894, + 0.0007797795115038753, + 0.007971885614097118, + 0.028144599869847298, + -0.007747018709778786, + -0.0024028089828789234, + 0.015131349675357342, + -0.008240274153649807, + -0.005106648895889521, + -0.015044303610920906, + 0.012723100371658802, + -0.006608177907764912, + -0.01291169784963131, + -0.011780111119151115, + 0.0176701657474041, + -0.004642408341169357, + 0.015203886665403843, + -0.02682441473007202, + 0.02605551667511463 + ], + "02af39be-8f80-4e64-8db1-726897aaa0fe": [ + -0.006742530502378941, + -0.0036474221851676702, + 0.00561638455837965, + -0.005082003306597471, + -0.011648797430098057, + -0.02204950898885727, + 0.02500474639236927, + 0.002383197657763958, + -0.03666789084672928, + -0.00010675299563445151, + 0.01001337543129921, + 0.05583389103412628, + 0.020256282761693, + 0.007689354009926319, + -0.04478761926293373, + 0.012538237497210503, + -0.020944882184267044, + 0.03445863351225853, + -0.0009181318455375731, + -0.042463596910238266, + 0.07408176362514496, + -0.018965160474181175, + -0.03368396311998367, + 0.030958257615566254, + -0.013219663873314857, + -0.03121648170053959, + -0.010472441092133522, + -0.007305603474378586, + -0.023656239733099937, + -0.012545410543680191, + 0.026568438857793808, + 0.0018954401602968574, + 0.032364148646593094, + -0.014295599423348904, + 0.0031022813636809587, + -0.0003846470208372921, + 0.011763564310967922, + 0.027328766882419586, + -0.002176976529881358, + -0.01403020229190588, + 0.009683421812951565, + 0.05167360603809357, + 0.048345379531383514, + 0.021662171930074692, + -0.03999611735343933, + 0.005239807069301605, + -0.024746522307395935, + -0.019295115023851395, + 0.001603144221007824, + 0.005688113626092672, + -0.010357674211263657, + 0.011318843811750412, + -0.01144795585423708, + 0.017774458974599838, + 0.007890195585787296, + -0.015493474900722504, + 0.024316146969795227, + 0.06937633454799652, + 0.012115036137402058, + -0.03296666964888573, + 0.0364670492708683, + 0.005013860296458006, + -0.005655835382640362, + 0.0002853471087291837, + -0.031331248581409454, + 0.005085589364171028, + -0.016440298408269882, + -0.022680725902318954, + -0.05517398566007614, + -0.029064610600471497, + 0.010852605104446411, + 0.04019695892930031, + 0.0006850124336779118, + -0.008334915153682232, + -0.013212490826845169, + -0.040512565523386, + 0.014231042936444283, + 0.01598123274743557, + 0.033626578748226166, + 0.009805360808968544, + -0.009805360808968544, + 0.0030771761666983366, + -0.010845432057976723, + -0.0018577823648229241, + 0.0647856742143631, + 0.01097454410046339, + -0.042234063148498535, + -0.042004529386758804, + -0.002083728788420558, + 0.013757631182670593, + -0.0034089230466634035, + 0.057784922420978546, + -0.034946393221616745, + 0.009195663966238499, + 0.01621076464653015, + -0.004325261805206537, + 0.007194423582404852, + 0.0077180457301437855, + 0.02537773735821247, + 0.01631118543446064, + 0.03695480525493622, + 0.0349750854074955, + -0.05296472832560539, + 0.010465268045663834, + -0.008234494365751743, + -0.021188760176301003, + 0.004605005029588938, + 0.007596106268465519, + -0.016253802925348282, + 0.032364148646593094, + 0.0015224490780383348, + -0.03821723908185959, + -0.008643350563943386, + 0.0004492031584959477, + -0.04828799515962601, + 0.009231528267264366, + 0.015823427587747574, + -0.02783087082207203, + 0.02998274192214012, + -0.05118585005402565, + -0.0008078484097495675, + 0.01309055183082819, + 0.02269507199525833, + 0.010723493061959743, + -0.006186630576848984, + 0.017042821273207664, + -0.010745011270046234, + 0.020227592438459396, + 0.008944611996412277, + 0.021375255659222603, + -0.0017170141218230128, + -0.00992012768983841, + 0.014847912825644016, + 0.027127927169203758, + 0.0033874043729156256, + 0.03620882332324982, + 0.027142271399497986, + 0.057038940489292145, + -0.011361881159245968, + 0.0353480763733387, + -0.04969388619065285, + -0.015479128807783127, + -0.02585114911198616, + -0.003242152975872159, + -0.006466373801231384, + 0.018161796033382416, + -0.03227807208895683, + 0.02622414007782936, + -0.021188760176301003, + -0.0047125983983278275, + -0.048201922327280045, + -0.0430661216378212, + 0.002096281386911869, + -0.004389817826449871, + 0.029408909380435944, + -0.014568169601261616, + -0.028332974761724472, + 0.035548917949199677, + -0.009690594859421253, + 0.028519470244646072, + 0.03299536183476448, + -0.07132736593484879, + 0.00726256612688303, + -0.010587207973003387, + 0.03388480097055435, + 0.007510031573474407, + 0.042176682502031326, + 0.028275590389966965, + -0.02157609723508358, + 0.013707420788705349, + 0.022996332496404648, + -0.012688868679106236, + -0.010967371985316277, + -0.029294144362211227, + 0.019122963771224022, + 0.0030789694283157587, + 0.048947904258966446, + 0.009618865326046944, + 0.030757416039705276, + -0.029437601566314697, + -0.007423956412822008, + -0.0305565744638443, + 0.008055171929299831, + -0.05560435727238655, + -0.044070325791835785, + 0.006466373801231384, + 0.009891435503959656, + 0.008012134581804276, + 0.030355732887983322, + -0.0009109589154832065, + -0.02421572618186474, + -0.030814798548817635, + 0.02303937077522278, + 0.002246912568807602, + -0.009934472851455212, + -0.07161428034305573, + 0.011433610692620277, + 0.0011333189904689789, + 0.027572646737098694, + 0.010701973922550678, + -0.025937223806977272, + -0.04257836192846298, + -0.03600798174738884, + 0.05531744286417961, + -0.015708662569522858, + 0.03365527093410492, + 0.0012794669019058347, + -0.009195663966238499, + -0.0115125123411417, + -0.013979991897940636, + 0.023240212351083755, + -0.023297594860196114, + 0.012028961442410946, + -0.0006558725144714117, + -0.04507453367114067, + 0.030757416039705276, + -0.003919992595911026, + -0.0016838394803926349, + 0.006896748207509518, + 0.0011503546265885234, + 0.023627549409866333, + 0.006140006706118584, + 0.013312911614775658, + -0.03333966061472893, + -0.05006687715649605, + -0.004307329189032316, + -0.02114572376012802, + 0.018075719475746155, + -0.037959013134241104, + -0.004368299152702093, + 0.0522761307656765, + -0.027285730466246605, + 0.027759142220020294, + -0.03864761069417, + 0.0063408478163182735, + 0.03004012629389763, + 0.00034429942024871707, + 0.04682472348213196, + -0.03770078718662262, + -0.00981970690190792, + 0.02407226897776127, + 0.006692320108413696, + -0.0014578929403796792, + 0.009045032784342766, + 0.01856347732245922, + -0.007459821179509163, + -0.048115845769643784, + 0.002695219125598669, + 0.016182074323296547, + -0.008377952501177788, + 0.006946958601474762, + 0.015077445656061172, + 0.03293797746300697, + -0.0023455398622900248, + -0.0053581600077450275, + 0.006179457530379295, + 0.02983928471803665, + -0.054456692188978195, + -0.019108619540929794, + 0.019481610506772995, + -0.015952540561556816, + 0.006577553693205118, + 0.02213558368384838, + -0.007244633976370096, + 0.06386754661798477, + -0.009963165037333965, + 0.050784166902303696, + -0.001248982036486268, + 0.0103146368637681, + 0.06059670075774193, + -0.022637687623500824, + -0.005741910543292761, + -0.00787584949284792, + -0.013434850610792637, + -0.00040773479850031435, + 0.0006881505833007395, + -0.026898393407464027, + -0.004070623312145472, + -0.0010597966611385345, + 0.006896748207509518, + 0.025033438578248024, + -0.05921950191259384, + 0.03933621197938919, + 0.04263574630022049, + -0.0075602419674396515, + 0.015809081494808197, + -0.002289949916303158, + -0.005548242013901472, + -0.03012620098888874, + -0.0309295654296875, + -0.03239283710718155, + 0.019295115023851395, + -0.006842951290309429, + 0.016942400485277176, + 0.015106137841939926, + -0.00730918999761343, + -0.010379193350672722, + -0.038561537861824036, + -0.00048551600775681436, + -0.0075889332219958305, + -0.018592169508337975, + 0.022637687623500824, + -0.0011440783273428679, + -0.037385180592536926, + 0.017616653814911842, + -0.005275671370327473, + 0.04593528434634209, + 0.019955022260546684, + -0.01292557455599308, + 0.0033927839249372482, + 0.013033168390393257, + -0.02814647927880287, + 0.02017020806670189, + -0.028648581355810165, + 0.008750944398343563, + -0.024846943095326424, + -0.022924603894352913, + -0.035692375153303146, + -0.01833394542336464, + -0.005867436062544584, + 0.0060288263484835625, + -0.014345809817314148, + -0.032220687717199326, + 0.024846943095326424, + 0.042893972247838974, + -0.02050016261637211, + 0.03351181000471115, + -0.03747125342488289, + -0.032593678683042526, + -0.04266443848609924, + -0.025578578934073448, + -0.006807086523622274, + -0.05279257893562317, + -0.02133221924304962, + -0.019022542983293533, + -0.062031280249357224, + -0.0397665835916996, + -0.05316556990146637, + 0.006025240290910006, + -0.0034447875805199146, + -0.004454373847693205, + 0.001376301166601479, + -0.01899385266005993, + -0.006810673046857119, + 0.0004108729481231421, + -0.042176682502031326, + 0.0062045627273619175, + -0.0005025516729801893, + -0.022766800597310066, + 0.03916405886411667, + 0.0008993029478006065, + -0.008091037161648273, + 0.028117787092924118, + 0.004597831983119249, + 0.053710710257291794, + 0.012825153768062592, + -0.01430994551628828, + -0.024947363883256912, + 0.03216330707073212, + -0.019051235169172287, + 0.010063585825264454, + -0.034716859459877014, + -0.041803691536188126, + 0.004572726786136627, + -0.029351526871323586, + 0.013571135699748993, + 0.018262214958667755, + -0.009288911707699299, + 0.00595709728077054, + 0.026381943374872208, + -0.013413332402706146, + -0.019438572227954865, + 0.01641160622239113, + -0.04559098184108734, + 0.005562587641179562, + -0.027615683153271675, + 0.02204950898885727, + 0.003905646735802293, + -0.05554697662591934, + 0.022680725902318954, + -0.0379016287624836, + 2.07621978915995e-5, + 0.00286198896355927, + -0.048058461397886276, + 0.02872031182050705, + 0.009604519233107567, + 0.01705716736614704, + -0.018836047500371933, + 0.022537266835570335, + 0.04513191804289818, + -0.048632293939590454, + 0.01672721467912197, + 0.010981717146933079, + 0.005985789000988007, + 0.013520925305783749, + -0.007445475086569786, + 0.005218288395553827, + 0.013513753190636635, + -0.018735626712441444, + 0.01809006556868553, + -0.01588081195950508, + 0.014718800783157349, + 0.018692590296268463, + 0.010443749837577343, + 0.028189515694975853, + -0.03468816727399826, + 0.00045166886411607265, + -0.018176140263676643, + -0.0012812601635232568, + -0.0025947983376681805, + 0.004899093881249428, + 0.004669561050832272, + 0.0013565756380558014, + -0.014977025799453259, + 0.015479128807783127, + 0.00490985345095396, + 0.0327945202589035, + 0.021748248487710953, + -0.011318843811750412, + -0.037528637796640396, + 0.02143264003098011, + -0.004687493201345205, + -0.0097551504150033, + 0.0052505661733448505, + -0.020184554159641266, + 0.025592925027012825, + 0.012373261153697968, + 0.03749994561076164, + -0.02651105634868145, + -0.0038303311448544264, + 0.018721282482147217, + 0.003898473922163248, + 0.02876334823668003, + 0.03190508112311363, + -0.02374231442809105, + -0.01602426916360855, + 0.014517959207296371, + -0.024273110553622246, + -0.02810344099998474, + -0.027945637702941895, + -0.0034322349820286036, + 0.047542013227939606, + 0.014962679706513882, + 0.00215545785613358, + -0.016339877620339394, + 0.018247870728373528, + -0.03164685517549515, + 0.02500474639236927, + 0.005035379435867071, + 0.0220925472676754, + 0.02463175542652607, + 0.021045302972197533, + 0.02909330278635025, + 0.024689137935638428, + 0.01499137096107006, + -0.024832597002387047, + 0.02101661078631878, + -0.01487660501152277, + -0.010077930986881256, + -0.03187638893723488, + -0.023240212351083755, + 0.00630857003852725, + 0.011390573345124722, + -0.044443320482969284, + 0.04484499990940094, + -0.04825930297374725, + -0.0006791844498366117, + 0.014905296266078949, + 0.016139036044478416, + 0.025922877714037895, + -0.0011010408634319901, + 0.0012767771258950233, + -0.05758408084511757, + 0.012531064450740814, + -0.015335670672357082, + -0.009274565614759922, + -0.0037765344604849815, + 0.003152491757646203, + 0.01922338455915451, + 0.002176976529881358, + 0.025219934061169624, + -0.007861503399908543, + -0.03741387277841568, + -0.01346354279667139, + -0.01608165353536606, + -0.012158073484897614, + -0.0027920531574636698, + -0.056149497628211975, + -0.010020548477768898, + -0.018448712304234505, + 0.018879085779190063, + -0.000630319002084434, + 0.007395265158265829, + 0.008664868772029877, + 0.008299050852656364, + -0.028361665084958076, + 0.009640384465456009, + -0.024803904816508293, + 0.0026324561331421137, + -0.011483821086585522, + 0.01639726012945175, + -0.005444234702736139, + -0.03749994561076164, + 0.04662388190627098, + -0.0039343382231891155, + 0.016339877620339394, + -0.02816082537174225, + -0.0215330608189106, + -0.007230288349092007, + 0.029925359413027763, + 0.0023652652744203806, + -0.044558085501194, + 0.0008486442966386676, + 0.0040634507313370705, + -0.015206558629870415, + -0.00872225221246481, + -0.03345442935824394, + -0.008750944398343563, + 0.04516061022877693, + -0.012782116420567036, + 0.0018954401602968574, + 0.005243393592536449, + -0.01546478271484375, + 0.038991909474134445, + -0.0010508305858820677, + 0.015020063146948814, + -0.027931291610002518, + -0.00918849091976881, + -0.013226836919784546, + -0.0046014185063540936, + -0.007660662289708853, + 0.002019172767177224, + -0.0008311603451147676, + -0.0020460712257772684, + 0.016741560772061348, + -4.132826143177226e-5, + -0.017028477042913437, + -0.01786053366959095, + 0.014761838130652905, + 0.050698090344667435, + -0.03514723479747772, + 0.01506310049444437, + 0.025879841297864914, + -0.027816524729132652, + -0.031560782343149185, + 0.011993097141385078, + -0.0014821015065535903, + 0.04659518972039223, + -0.018678244203329086, + 0.012911228463053703, + -0.014625553041696548, + -0.0052218749187886715, + -0.03425779193639755, + -0.020973574370145798, + 0.012667350471019745, + -0.013886744156479836, + -0.002831504214555025, + -0.02378535270690918, + -0.019108619540929794, + -0.008291877806186676, + -0.017544925212860107, + -0.0038303311448544264, + -0.002646801993250847, + 0.011168212629854679, + 0.02288156747817993, + -0.0015332084149122238, + -0.04257836192846298, + 0.019940676167607307, + 0.004307329189032316, + 0.01248085405677557, + 0.02576507441699505, + -0.0017089445609599352, + 0.059391651302576065, + 0.024473952129483223, + 0.0027310834266245365, + 0.007065311539918184, + -0.02795998379588127, + -0.014776184223592281, + 0.030327042564749718, + -0.015407399274408817, + 0.016095997765660286, + -0.0545140765607357, + 0.0030628303065896034, + 1.0360084161220584e-5, + 0.00348423863761127, + 0.001362851937301457, + -0.028275590389966965, + -0.025635961443185806, + -0.01066610962152481, + -0.010185524821281433, + 0.006903920788317919, + 0.039364900439977646, + 0.027673067525029182, + -0.002533828606829047, + -0.012531064450740814, + 0.011290152557194233, + -0.00652375677600503, + 0.013069032691419125, + -0.00045996252447366714, + 0.0008486442966386676, + 0.04963650181889534, + 0.017473196610808372, + -0.0005142076406627893, + 0.0006065587513148785, + -0.02039974182844162, + -0.0357210673391819, + 0.016626793891191483, + 0.0048488834872841835, + -0.010902815498411655, + 0.023756660521030426, + -0.033540502190589905, + 0.01621076464653015, + 0.0021590443793684244, + -0.017501888796687126, + -0.0049349586479365826, + -0.01984025537967682, + -0.008729425258934498, + 0.004070623312145472, + -0.0018524026963859797, + -0.02114572376012802, + 0.0037048053927719593, + -0.05979333445429802, + 0.019998058676719666, + 0.008686387911438942, + 0.012947093695402145, + -0.00199227430857718, + 0.005350986961275339, + -0.027429187670350075, + 0.0100348936393857, + -0.013736112974584103, + -0.004145938903093338, + -0.007126281037926674, + -0.01292557455599308, + -0.03219199553132057, + 0.021461332216858864, + -0.011361881159245968, + 0.005325881764292717, + 0.010372020304203033, + 0.012853845953941345, + 0.0009808947797864676, + 0.0034555469173938036, + 0.0022020817268639803, + -0.019711142405867577, + 0.017774458974599838, + -0.013614173047244549, + 0.021346565335989, + -0.00652375677600503, + 0.0009638590854592621, + 0.026496710255742073, + -0.019065581262111664, + -0.020428434014320374, + 0.016698522493243217, + -0.007732391357421875, + 0.010135314427316189, + 0.0033174685668200254, + -0.015407399274408817, + 0.01963941380381584, + 0.02110268548130989, + 0.01001337543129921, + -0.020313667133450508, + 0.03592190891504288, + -0.043553877621889114, + -0.005107108503580093, + 0.038618918508291245, + 0.016956746578216553, + 0.012681695632636547, + -0.004859643056988716, + 0.010250081308186054, + 0.013241182081401348, + 0.01992633007466793, + -0.010981717146933079, + -0.01940988004207611, + 0.005365333054214716, + -0.004232014063745737, + 0.03256498649716377, + 0.015737352892756462, + 0.01649768091738224, + 0.019725488498806953, + -0.007373746018856764, + 0.01936684362590313, + 0.0064699603244662285, + -0.002740049734711647, + -0.029810592532157898, + 0.026353253051638603, + -0.004092142451554537, + -0.013334429822862148, + 0.0012122208718210459, + 0.012516719289124012, + 0.021518714725971222, + -0.020313667133450508, + 0.008234494365751743, + 0.003070003353059292, + -0.00473770359531045, + -0.027802178636193275, + -0.010407884605228901, + 0.0067353579215705395, + -0.005071243736892939, + -0.010945852845907211, + 0.025277316570281982, + -0.02161913551390171, + -0.025980262085795403, + 0.005587692838162184, + 0.02256595902144909, + -0.014331463724374771, + 0.004619350656867027, + 0.0021375257056206465, + -0.005519550293684006, + 0.008743771351873875, + 0.03529069200158119, + -0.026826664805412292, + 0.005408370401710272, + 0.023441053926944733, + 0.012007443234324455, + 0.03078610822558403, + 0.01809006556868553, + 0.005734737496823072, + -0.023914465680718422, + -0.008091037161648273, + -0.017774458974599838, + 0.021346565335989, + -0.006086209788918495, + 0.010823913849890232, + -0.003963029943406582, + -0.023197174072265625, + -0.049751266837120056, + 0.002257671905681491, + 0.021188760176301003, + 0.02095922827720642, + -0.002750809071585536, + 0.003059244016185403, + 0.02308240719139576, + -0.008277532644569874, + 0.0034340282436460257, + 0.00567735405638814, + -0.016038615256547928, + -0.0007952958112582564, + 0.015766045078635216, + -0.006140006706118584, + 0.007502858527004719, + -0.03153209015727043, + -0.013212490826845169, + -0.0012176006566733122, + 0.0040239994414150715, + -0.014553824439644814, + 0.016555065289139748, + 0.004755635745823383, + -0.0048668161034584045, + -0.018362635746598244, + -0.013822187669575214, + 0.0126171400770545, + 0.019381189718842506, + 0.0003182976506650448, + 0.035692375153303146, + 0.0061149015091359615, + 0.001409475808031857, + -0.0005442441324703395, + 0.014790530316531658, + -0.012466508895158768, + 0.0013843706110492349, + 0.021748248487710953, + -0.01612468995153904, + 0.005666594952344894, + -0.00511069456115365, + 0.009131107479333878, + -0.016942400485277176, + -0.034056954085826874, + -0.013348775915801525, + 0.005530309863388538, + 0.02938021905720234, + -0.010228562168776989, + 0.023484090343117714, + 0.01367872953414917, + 0.028376011177897453, + -0.0008042619447223842, + -0.03216330707073212, + 0.005598452407866716, + 0.007531550247222185, + -0.024560026824474335, + -0.02661147713661194, + -0.005401197355240583, + -0.017430158331990242, + -0.027888253331184387, + -0.0043575395829975605, + -0.026424981653690338, + 0.02576507441699505, + -0.03425779193639755, + 0.016555065289139748, + -0.0019044062355533242, + -0.00490985345095396, + 0.009489753283560276, + -0.014611206948757172, + -0.00843533594161272, + -0.01290405634790659, + 0.007072484120726585, + 0.0019510301062837243, + -0.01763099990785122, + -0.013119243085384369, + -0.02820386178791523, + -0.0012785702710971236, + 0.02745787985622883, + 0.006878815591335297, + -0.011993097141385078, + 0.0474846288561821, + 0.04582051560282707, + 0.017831841483712196, + -0.009712113067507744, + -0.019280768930912018, + 0.011842465959489346, + -0.0016677003586664796, + -0.016325531527400017, + 0.0013207111041992903, + 0.022451192140579224, + 0.0009006478940136731, + 0.03247891366481781, + -0.042377520352602005, + 0.01248085405677557, + -0.005820812191814184, + 0.05434192717075348, + 0.04085686802864075, + 0.00016071790014393628, + -0.006426922976970673, + 0.026066336780786514, + -0.054456692188978195, + 0.01161293312907219, + -0.007438302505761385, + 0.007068897597491741, + 0.0024710658472031355, + -0.0054693398997187614, + 0.028591198846697807, + 0.024703484028577805, + 0.01955333910882473, + 0.0068537103943526745, + -0.0004971719463355839, + 0.022781146690249443, + -0.02457437291741371, + -0.010042066685855389, + -0.04028303548693657, + -0.016942400485277176, + -0.02072969451546669, + 0.019811563193798065, + -0.02186301350593567, + -0.0320485383272171, + -0.01329856552183628, + -0.0025858322624117136, + -0.0014569963095709682, + 0.003676113672554493, + 0.019495954737067223, + 0.0005841434467583895, + 0.01393695455044508, + 0.022824183106422424, + 0.0338561125099659, + -0.03606536611914635, + -0.028892461210489273, + 0.02679797261953354, + -0.033024054020643234, + 0.016612447798252106, + -0.05267781391739845, + -0.015106137841939926, + 0.010113796219229698, + 0.00486322958022356, + -0.004949304275214672, + -0.0038195718079805374, + -0.009202837012708187, + -0.026123719289898872, + 0.003668940858915448, + -0.010063585825264454, + -0.025980262085795403, + -0.006882402114570141, + -0.00726256612688303, + 0.005465753376483917, + -0.0005406577256508172, + 0.013176626525819302, + -0.0014722386840730906, + 0.011082137934863567, + 0.013355948962271214, + -0.012918401509523392, + -0.04254967346787453, + -0.0012758804950863123, + -0.018262214958667755, + -0.015206558629870415, + -0.003837504191324115, + 0.0438121035695076, + 0.023111099377274513, + 0.021002264693379402, + -0.041803691536188126, + -0.005056898109614849, + 0.01487660501152277, + 0.0016766665503382683, + -0.03308143839240074, + -0.010909988544881344, + 0.006358779966831207, + -0.015192212536931038, + -0.02890680730342865, + -0.01744450442492962, + -0.01918034814298153, + 0.014396020211279392, + 0.025678999722003937, + 0.0017241870518773794, + 0.0007316363044083118, + 0.037155646830797195, + 0.0016210764879360795, + -0.031618162989616394, + -0.013391813263297081, + -0.011842465959489346, + 0.025592925027012825, + -0.03331097215414047, + 0.02679797261953354, + 0.0217195563018322, + -0.00570963229984045, + 0.06633502244949341, + 0.01870693638920784, + -0.004802259616553783, + -0.028404703363776207, + -0.011813774704933167, + 0.035692375153303146, + -0.010113796219229698, + 0.005268498789519072, + -0.011742045171558857, + -0.0017735006986185908, + -0.016583755612373352, + 0.04074209928512573, + -0.00815559271723032, + -0.004845297429710627, + 0.02938021905720234, + -0.021030956879258156, + -0.020528852939605713, + -0.015292633324861526, + -0.014274080283939838, + 0.0007437405874952674, + 0.027816524729132652, + -0.021117031574249268, + -0.01186398509889841, + -0.01918034814298153, + -0.008793981745839119, + 0.032593678683042526, + -0.00992012768983841, + 0.012853845953941345, + 0.010092277079820633, + -0.011153867468237877, + -0.008191457018256187, + 0.011146694421768188, + 0.016095997765660286, + 0.03064264915883541, + -0.011074964888393879, + -0.01945291832089424, + -0.00201558624394238, + -0.02603764459490776, + 0.02477521263062954, + 0.0019008198287338018, + -0.010271599516272545, + 0.04682472348213196, + 0.009575827978551388, + -0.03267975524067879, + -0.005426302552223206, + 0.01814744994044304, + 0.04602135717868805, + -0.005142972804605961, + 0.009518444538116455, + 0.004755635745823383, + -0.0066743879579007626, + -0.0037083919160068035, + 0.012373261153697968, + 0.01365721132606268, + -0.009123935364186764, + -0.01781749539077282, + 0.022006472572684288, + -0.05015294998884201, + 0.006577553693205118, + -0.005125040654093027, + 0.003898473922163248, + -0.004522516392171383, + -0.009934472851455212, + 0.0026001781225204468, + 0.03448732569813728, + -0.013829360716044903, + -0.010092277079820633, + -0.02566465362906456, + 0.0008446095744147897, + -0.016153382137417793, + -0.0005290017579682171, + 0.037442564964294434, + 0.010264426469802856, + -0.0035470013972371817, + -0.019237730652093887, + -0.012093517929315567, + -0.004967236425727606, + 0.01440319325774908, + 0.008392298594117165, + -0.00015701937081757933, + 0.015220903791487217, + 0.003640249138697982, + -0.01992633007466793, + -0.004694666247814894, + 0.0027777075301855803, + 0.028662927448749542, + 0.00595709728077054, + -0.00032659134012646973, + -0.027802178636193275, + -0.0013583688996732235, + -0.042980045080184937, + -0.019381189718842506, + 0.0036581815220415592, + 0.019868945702910423, + 0.01032180991023779, + -0.001259741373360157, + 0.005720391869544983, + 0.0071191079914569855, + -0.014474921859800816, + 0.007653489708900452, + -0.012796462513506413, + 0.0074311294592916965, + 0.0004559277731459588, + -0.019955022260546684, + 0.004167457576841116, + 0.008055171929299831, + 0.018118757754564285, + 0.011792255565524101, + -0.0486036017537117, + -0.02124614454805851, + 0.029867975041270256, + -0.00453686248511076, + -0.019911983981728554, + -0.006419749930500984, + -0.019481610506772995, + 0.0019402707694098353, + 0.013994337059557438, + 0.0021715969778597355, + 0.0030036538373678923, + -0.002775914268568158, + 0.010608726181089878, + -0.0191373098641634, + -0.013685902580618858, + 0.01207917183637619, + -0.01659810170531273, + -0.020414087921380997, + -0.017286701127886772, + -0.006799913942813873, + -0.06392493098974228, + -0.00627629179507494, + 0.01210786309093237, + 0.03927882760763168, + -0.01945291832089424, + -0.021030956879258156, + 0.012545410543680191, + 0.0028243314009159803, + -0.0033479533158242702, + 0.014446230605244637, + -0.005867436062544584, + -0.03488900884985924, + -0.0076965270563960075, + 0.023053716868162155, + 0.012409125454723835, + 0.00393792474642396, + 0.0029695825651288033, + 0.007617624942213297, + 0.006936199031770229, + -0.02543511986732483, + -0.0061830440536141396, + -0.014087584801018238, + 0.028074748814105988, + -0.00804082676768303, + -0.00767500838264823, + 0.03709826245903969, + -0.028849422931671143, + -0.0013090551365166903, + -0.012466508895158768, + 0.026152411475777626, + 0.011856812052428722, + 3.7881902244407684e-5, + -0.022279042750597, + -0.012746252119541168, + 0.003998894244432449, + -0.016110343858599663, + 0.016225110739469528, + 0.014905296266078949, + 0.052849963307380676, + 0.003898473922163248, + 0.01767403818666935, + -0.003991721663624048, + -0.025133859366178513, + -0.02768741361796856, + -0.008485546335577965, + -0.015149175189435482, + 0.02017020806670189, + -0.02382838912308216, + 0.012810807675123215, + 0.013628519140183926, + 0.03879106789827347, + -0.003599005052819848, + 0.028978535905480385, + -0.02387142740190029, + -0.0026037644129246473, + 0.00878680869936943, + 0.009181317873299122, + -0.03345442935824394, + 0.002727497136220336, + 0.009131107479333878, + 0.07086829841136932, + 0.003711978206411004, + 0.01804702915251255, + -0.01781749539077282, + -0.019151655957102776, + 0.019495954737067223, + 0.0030915220268070698, + 0.018247870728373528, + 0.025349045172333717, + 0.0005756256286986172, + -0.011483821086585522, + 0.002325814450159669, + -0.0018470230279490352, + 0.03319620341062546, + -8.069517934927717e-5, + 0.027343112975358963, + 0.011268633417785168, + -0.0021142137702554464, + 0.00937498640269041, + -0.004332434386014938, + -0.005784947890788317, + -0.015923848375678062, + 0.0014300979673862457, + 0.0012561549665406346, + 0.0027920531574636698, + 0.006642109714448452, + 0.02017020806670189, + -0.0017591549549251795, + -0.00506407069042325, + 0.0056917001493275166, + 0.0005070347106084228, + 0.006437682081013918, + 0.027888253331184387, + 0.01161293312907219, + -0.00706172501668334, + 0.03379872813820839, + 0.008937439881265163, + -0.01776011288166046, + -0.013944126665592194, + 0.023857081308960915, + -0.00231505511328578, + -0.017372775822877884, + 0.026066336780786514, + -0.02481825090944767, + 0.003966616466641426, + 0.005842330865561962, + 0.016325531527400017, + 0.02816082537174225, + 0.0029606164898723364, + -0.026525402441620827, + -0.01506310049444437, + 0.001144974958151579, + -0.022537266835570335, + -0.002510516671463847, + -0.019094273447990417, + 0.028404703363776207, + 0.021346565335989, + -0.012100690975785255, + 0.010831085965037346, + -0.0016587342834100127, + -0.01527828723192215, + 0.03437256067991257, + -0.008220149204134941, + -0.034860316663980484, + -0.01829090714454651, + 0.010393539443612099, + -0.018247870728373528, + -0.027271384373307228, + -0.007359400391578674, + 0.026998814195394516, + 0.008420990779995918, + 0.015407399274408817, + 0.003195529105141759, + 0.006771222222596407, + 0.008428162895143032, + -0.00497082294896245, + 0.015163521282374859, + -0.007567414548248053, + -0.0040634507313370705, + -0.023211520165205002, + -0.020457124337553978, + -0.006860883440822363, + 0.00031605613185092807, + 0.02223600447177887, + 0.011211249977350235, + -0.007639143615961075, + -0.00841381773352623, + -0.00421766797080636, + -0.0023670585360378027, + -0.019868945702910423, + -0.018348291516304016, + 0.01626814901828766, + 0.0007522584055550396, + -0.0055374824441969395, + -0.010185524821281433, + -0.006254773121327162, + -0.003425062168389559, + 0.036553122103214264, + 0.01403020229190588, + 0.003948684316128492, + -0.005946338176727295, + -0.012136555276811123, + 0.0011404919205233455, + 0.007172904908657074, + 0.026568438857793808, + -0.019008198752999306, + -0.011950059793889523, + -0.01177073735743761, + -0.027271384373307228, + -0.02983928471803665, + -0.03049919195473194, + 0.02237946353852749, + -0.0025499677285552025, + -0.017501888796687126, + 0.013592654839158058, + 0.0005720391636714339, + -0.0008993029478006065, + 0.008456855081021786, + 0.018735626712441444, + -0.030068816617131233, + -0.0112327691167593, + 0.01672721467912197, + -0.0033282279036939144, + 0.031101714819669724, + -0.004655215423554182, + 0.008047998882830143, + 0.02960975095629692, + -0.013312911614775658, + -0.010192697867751122, + -0.013119243085384369, + 0.02083011530339718, + -0.0004828261735383421, + -0.01899385266005993, + 0.007553068920969963, + -0.004027585964649916, + 0.011756391264498234, + -0.004755635745823383, + 0.010242908261716366, + -0.03603667393326759, + 0.004067037254571915, + -0.03448732569813728, + -0.002530242083594203, + 0.004597831983119249, + 0.009439542889595032, + 0.010988890193402767, + 0.01069480087608099, + -0.0106732826679945, + 0.015665624290704727, + 0.016296839341521263, + -0.009418023750185966, + -0.0025750729255378246, + 0.009690594859421253, + 0.003199115628376603, + -0.005788534414023161, + 0.004092142451554537, + -0.008169938810169697, + 0.0033658856991678476, + 0.01318379957228899, + -0.008019307628273964, + -0.014080412685871124, + 0.03511854261159897, + 0.016712868586182594, + 0.009970338083803654, + -0.050411175936460495, + -0.016009923070669174, + -0.0039020602125674486, + -0.003584659192711115, + -0.02387142740190029, + -0.007287671323865652, + 0.0010364847257733345, + -0.0012543617049232125, + 0.0005635213456116617, + 0.002008413430303335, + -0.023484090343117714, + 0.0019510301062837243, + -0.015005717054009438, + 0.021963434293866158, + -0.03620882332324982, + -0.0009253047173842788, + 0.013434850610792637, + -0.02537773735821247, + -0.013599827885627747, + -0.007689354009926319, + 0.009389332495629787, + 0.02341236174106598, + -0.008672041818499565, + -0.015005717054009438, + -0.0067855678498744965, + 0.018204832449555397, + 0.017272355034947395, + -0.0015143795171752572, + -0.005196769721806049, + -0.010823913849890232, + -0.00398454861715436, + 0.007409610785543919, + 0.0068321917206048965, + 0.018577823415398598, + -0.011074964888393879, + 0.016841981559991837, + 0.002098074648529291, + 0.0008446095744147897, + 0.01626814901828766, + 0.031618162989616394, + -0.0007065311074256897, + 0.011118002235889435, + -0.01161293312907219, + 0.011742045171558857, + 0.013908262364566326, + 0.016770251095294952, + -0.023398015648126602, + 0.00707607064396143, + -0.012861018069088459, + 0.0047986735589802265, + -0.025306008756160736, + -0.009253047406673431, + 0.027658721432089806, + -0.0046229371801018715, + 0.022953296080231667, + 0.012330223806202412, + 0.01527828723192215, + -0.03764340654015541, + -0.013599827885627747, + -0.0114192645996809, + 0.01078804861754179, + 0.010845432057976723, + 0.015622586943209171, + 0.02707054279744625, + 0.0038052259478718042, + 0.031101714819669724, + -0.007782601751387119, + 0.014037374407052994, + 0.004701839294284582, + 0.016899364069104195, + -0.012064825743436813, + 0.028117787092924118, + -0.003930751699954271, + -0.0013350569643080235, + 0.015809081494808197, + 0.014223870821297169, + 0.007345054764300585, + 0.01678459718823433, + -0.005293603986501694, + -0.01866389811038971, + -0.004500997718423605, + -0.026396289467811584, + -0.00025665550492703915, + 0.022996332496404648, + 0.006778395269066095, + 0.013908262364566326, + -0.01852044090628624, + -0.007007928099483252, + -0.004174630623310804, + -0.0320485383272171, + -0.022350771352648735, + -0.005322295241057873, + 0.017372775822877884, + -0.006670801434665918, + 0.009202837012708187, + 0.00682860566303134, + -0.004296570084989071, + 0.019467264413833618, + 0.012681695632636547, + 0.026582784950733185, + -0.0038913008756935596, + -0.014015856198966503, + -0.05124323070049286, + -0.02880638651549816, + 0.026051990687847137, + 0.012222629971802235, + -0.002060416853055358, + -0.008758116513490677, + 0.0017483956180512905, + 0.0020693831611424685, + 0.01978287100791931, + 0.033167511224746704, + -0.012473681941628456, + -0.009905781596899033, + -0.00017954676877707243, + 0.00963321141898632, + -0.0012776736402884126, + 0.004805846139788628, + 0.002035311656072736, + -0.008994822390377522, + 0.002612730721011758, + 0.030872182920575142, + 0.015292633324861526, + 0.004587072879076004, + 0.014058893546462059, + 0.017602307721972466, + -0.01879301108419895, + -0.021217452362179756, + 0.010393539443612099, + -0.00463011022657156, + -0.007194423582404852, + 0.018678244203329086, + 0.030814798548817635, + -0.020012404769659042, + -0.0032134614884853363, + -0.05029641091823578, + -0.0038410904817283154, + -0.014862258918583393, + -0.010594380088150501, + 0.002442374126985669, + 0.00841381773352623, + -0.011397745460271835, + 0.014675763435661793, + 0.019955022260546684, + -0.03615143895149231, + -0.006050345487892628, + 0.004515343811362982, + 0.0226520337164402, + -0.009704940021038055, + -0.01945291832089424, + 0.008944611996412277, + -0.001065176329575479, + 0.028447741642594337, + -0.01738712191581726, + -0.0007195320213213563, + -0.014396020211279392, + -0.01979721710085869, + -0.027759142220020294, + -0.00492419907823205, + -0.026711897924542427, + -0.018965160474181175, + -0.008004961535334587, + 0.0009593760478310287, + 0.025607271119952202, + 0.010945852845907211, + 0.007033033296465874, + -0.029638443142175674, + -0.015823427587747574, + 0.008772462606430054, + 0.016368569806218147, + 0.014188005588948727, + -0.0017394294263795018, + 0.0018810943001881242, + 0.0003003653837367892, + 0.004422096069902182, + -0.011691834777593613, + 0.020198900252580643, + -0.023096753284335136, + 0.02552119642496109, + 0.008334915153682232, + 0.02791694551706314, + -0.005160904955118895, + 0.030527884140610695, + -0.01414496824145317, + 0.005307949613779783, + 0.008614658378064632, + -0.028892461210489273, + -0.016009923070669174, + 0.007574587594717741, + 0.017401468008756638, + -0.01235891506075859, + -0.005533895920962095, + -0.007868676446378231, + -0.0053581600077450275, + 0.03919275104999542, + 0.015393054112792015, + 0.009123935364186764, + -0.031101714819669724, + 0.004493825137615204, + 0.010759357362985611, + -0.02388577349483967, + -0.014546651393175125, + -0.002117800060659647, + 0.0033425737638026476, + 0.0025033438578248024, + -0.015048754401504993, + 0.0320485383272171, + 0.011777909472584724, + -0.00011880123929586262, + 0.0030144131742417812, + 0.0012902262387797236, + 0.04257836192846298, + -0.013262701220810413, + 0.016813289374113083, + -0.028634237125515938, + 0.009597347117960453, + -0.00426429184153676, + 0.008937439881265163, + -0.03445863351225853, + 0.015005717054009438, + -0.016712868586182594, + -0.018577823415398598, + -0.02669755183160305, + 0.0067174253053963184, + 0.003980962093919516, + 0.009618865326046944, + 0.019682450219988823, + -0.0026880460791289806, + -0.016368569806218147, + 0.01730104722082615, + -0.009841225109994411, + -0.02354147471487522, + 0.027328766882419586, + 0.0017241870518773794, + -0.004153111949563026, + -0.03586452454328537, + 0.03107302449643612, + 0.02050016261637211, + -0.010056412778794765, + -0.004092142451554537, + 0.015034408308565617, + -0.007058138493448496, + 0.02397184818983078, + 0.027185309678316116, + -0.029408909380435944, + -0.025793766602873802, + 0.005749083124101162, + -0.003998894244432449, + 0.015579549595713615, + -0.008550102822482586, + -0.015852119773626328, + 0.021518714725971222, + -0.012681695632636547, + -0.009970338083803654, + -0.01668417640030384, + 0.015679970383644104, + -0.0219060517847538, + 0.0018990265671163797, + 0.008234494365751743, + 0.010938679799437523, + 0.025449465960264206, + 0.01926642283797264, + -0.003165044356137514, + 0.021848667412996292, + 0.0008136763935908675, + 0.000578763778321445, + 0.012272840365767479, + -0.013499407097697258, + 0.0004868609248660505, + -0.000306417525280267, + 0.01804702915251255, + 0.015034408308565617, + -0.009367813356220722, + -0.022063855081796646, + 0.005602038931101561, + 0.012825153768062592, + -0.00426429184153676, + -0.015177866443991661, + -0.027013160288333893, + -0.0342291034758091, + -0.010816740803420544, + -0.005315122660249472, + -0.02068665809929371, + -0.007567414548248053, + 0.017214972525835037, + -0.019811563193798065, + -0.004795087035745382, + -0.007445475086569786, + 0.01487660501152277, + -0.009296084754168987, + 8.013479964574799e-5, + -0.018018336966633797, + -0.019309459254145622, + 0.001419338514097035, + -0.008392298594117165, + 0.010730666108429432, + -0.006713838782161474, + 0.008715079165995121, + -0.011218423023819923, + -0.008363607339560986, + 0.013499407097697258, + -0.010264426469802856, + 0.01569431647658348, + 0.003001860808581114, + 0.011899849399924278, + -0.014460576698184013, + -0.02204950898885727, + 0.00632291566580534, + -0.012071998789906502, + 0.008808326907455921, + 0.003080762689933181, + 0.01151968538761139, + 0.01386522501707077, + 0.0020568305626511574, + -0.0007612245390191674, + 0.00010490373097127303, + -0.0007504652021452785, + -0.019395533949136734, + 0.0035685200709849596, + -0.009590174071490765, + 0.010723493061959743, + -0.023182827979326248, + 0.0751720443367958, + -0.001961789559572935, + 0.014281253330409527, + 0.005716805346310139, + 0.0012696041958406568, + -0.02533470094203949, + 0.011620106175541878, + 0.027486572042107582, + 0.0054478212259709835, + -0.01535001676529646, + -0.01984025537967682, + -0.019940676167607307, + -0.0006684250547550619, + 0.015407399274408817, + -0.0005697976448573172, + -0.005053311586380005, + -0.008012134581804276, + 0.010501132346689701, + -0.005594865884631872, + 0.02927979826927185, + 0.022996332496404648, + -0.020973574370145798, + -0.024043576791882515, + -0.00027212206623516977, + -0.008399471640586853, + 0.008019307628273964, + -0.02157609723508358, + 0.024100961163640022, + 0.018506094813346863, + 0.026381943374872208, + 0.018764318898320198, + 0.01796095445752144, + -0.005333054810762405, + -0.025722036138176918, + -0.0113260168582201, + 0.02355581894516945, + 0.020987920463085175, + 0.012853845953941345, + -0.004558381158858538, + 0.019625067710876465, + 0.01955333910882473, + -0.0038088124711066484, + 0.03276582807302475, + 0.025090821087360382, + -0.027988674119114876, + -0.018592169508337975, + -0.009970338083803654, + -0.007660662289708853, + 0.0364670492708683, + -0.0047986735589802265, + -0.019051235169172287, + -0.01524959597736597, + 0.005035379435867071, + 0.013241182081401348, + -0.008471200242638588, + -0.01386522501707077, + -0.012323050759732723, + -0.007151386234909296, + -0.006172284483909607, + 0.02039974182844162, + 0.0017743973294273019, + -0.022436846047639847, + -0.002098074648529291, + -0.029437601566314697, + -0.004648042377084494, + 0.012416298501193523, + -0.017329737544059753, + 0.003667147597298026, + 0.0038661956787109375, + -0.015263942070305347, + 0.0016004544449970126, + -0.008004961535334587, + 0.002795639680698514, + -0.023398015648126602, + -0.0007634660578332841, + 0.006383885163813829, + 0.01430994551628828, + 0.029121993109583855, + 0.01918034814298153, + 0.009762323461472988, + 0.01771707460284233, + -0.004156698472797871, + -0.008779635652899742, + -0.006304983515292406, + -0.006964890751987696, + 0.0191373098641634, + 0.0037442564498633146, + -0.01191419456154108, + 0.01668417640030384, + -0.011849639005959034, + -0.006721011828631163, + 0.021690864115953445, + 0.0016452850541099906, + 0.006014480721205473, + 0.00024141308676917106, + -0.00019714281370397657, + -0.009288911707699299, + -0.03672527149319649, + 0.003297742921859026, + -0.01487660501152277, + 0.016655486077070236, + 0.0009782048873603344, + -0.0019384775077924132, + -0.012193938717246056, + -0.02194908820092678, + 0.004239186644554138, + -0.00393792474642396, + 0.005426302552223206, + -0.011483821086585522, + 0.010888469405472279, + -0.010730666108429432, + -0.011749218218028545, + -0.006868056487292051, + -0.003701218869537115, + -0.004099315032362938, + 0.024660447612404823, + 0.005810053087770939, + -0.0018524026963859797, + -0.02872031182050705, + -0.016899364069104195, + -0.019395533949136734, + -0.016555065289139748, + -0.01635422371327877, + -0.005749083124101162, + 0.01301882229745388, + 0.012602793984115124, + -0.016440298408269882, + -0.011282979510724545, + -0.016583755612373352, + -0.005150145851075649, + -7.850968540878966e-5, + 0.028232553973793983, + 0.011340362951159477, + -0.021088341251015663, + -0.007775428704917431, + 0.0044651334173977375, + 0.012789289467036724, + 0.004673147574067116, + 0.0094754071906209, + -0.012767770327627659, + 0.01973983459174633, + -0.00900199543684721, + -0.00018021924188360572, + 0.021633481606841087, + -0.0028225381392985582, + -0.008707906119525433, + 0.0016336290864273906, + -0.02952367626130581, + 0.01672721467912197, + 0.0027310834266245365, + 0.013542444445192814, + -0.025406429544091225, + 0.01125428732484579, + 0.0027113580144941807, + 0.010486787185072899, + 0.012071998789906502, + -0.006577553693205118, + -0.009231528267264366, + -0.027630029246211052, + 0.003884128062054515, + 0.009525617584586143, + 0.021819977089762688, + -0.01692805625498295, + -0.0003850953362416476, + -0.005853090435266495, + -0.003963029943406582, + 0.014747492037713528, + -6.735805800417438e-5, + 0.025492504239082336, + 0.008284704759716988, + 0.003154285019263625, + 0.01602426916360855, + 0.007538722828030586, + -0.0228385291993618, + 0.008564447984099388, + 0.009425196796655655, + -0.005175251048058271, + 0.016282493248581886, + -0.002483618212863803, + 0.013255528174340725, + 0.013671556487679482, + -0.02915068529546261, + 0.016698522493243217, + -0.011555549688637257, + 0.005648662801831961, + -0.05161622539162636, + 0.02481825090944767, + -0.002612730721011758, + -0.011455128900706768, + 0.01720062643289566, + -0.0036133509129285812, + 0.014625553041696548, + -0.0020783492363989353, + 0.0019061994971707463, + -0.014202351681888103, + -0.022996332496404648, + 0.007890195585787296, + 0.013642865233123302, + 0.005343813914805651, + -0.00937498640269041, + -0.012746252119541168, + -0.005415542982518673, + 0.008837019093334675, + -0.002313261851668358, + 0.0019976540934294462, + -0.000893923279363662, + -0.024976054206490517, + -0.01955333910882473, + 0.0041100746020674706, + -0.015235249884426594, + -0.012236976064741611, + -0.02457437291741371, + -0.0030036538373678923, + 0.0022666379809379578, + 0.00449023861438036, + 0.026109373196959496, + -0.00909524317830801, + 0.01144795585423708, + 0.0025535542517900467, + 0.009310430847108364, + 0.019051235169172287, + 0.002510516671463847, + -0.019811563193798065, + -0.007025860249996185, + -0.0014372707810252905, + -0.007334295194596052, + 0.012287186458706856, + 0.009963165037333965, + -0.005659421905875206, + -0.033253587782382965, + 0.037815555930137634, + 0.009733632206916809, + -0.00869356095790863, + 0.014381674118340015, + 0.00928173866122961, + 0.016741560772061348, + 0.005820812191814184, + -0.01088129635900259, + -0.007682180963456631, + -0.0028368839994072914, + -0.011835292913019657, + -0.0005056898226030171, + -0.021375255659222603, + -0.004651628900319338, + 0.003093315288424492, + -0.015708662569522858, + 0.014639899134635925, + -6.365952867781743e-5, + -0.010501132346689701, + -2.3606142349308357e-5, + -0.0018129517557099462, + -0.005831571761518717, + -0.017989644780755043, + 0.017788803204894066, + -0.0022325667086988688, + -0.009877090342342854, + -0.006387471687048674, + 0.0068716430105268955, + -0.007603279314935207, + -0.012179592624306679, + -0.00843533594161272, + -0.013262701220810413, + 0.0011530445190146565, + -0.0008741978090256453, + 0.0030879355035722256, + 0.013908262364566326, + -0.026912739500403404, + 0.03431517630815506, + -0.0035470013972371817, + 0.009389332495629787, + -0.00712269451469183, + 0.002783087082207203, + 0.021891705691814423, + -0.0022881566546857357, + -0.004734117072075605, + 0.02477521263062954, + -0.003620523726567626, + -0.017831841483712196, + -0.010250081308186054, + 0.0008275738800875843, + -0.004070623312145472, + 0.0062260814011096954, + 0.009482580237090588, + -0.011670316569507122, + 0.0031560780480504036, + -0.02223600447177887, + -0.016526373103260994, + 0.020055441185832024, + -0.0026324561331421137, + 0.012028961442410946, + -0.0048201922327280045, + -0.0055374824441969395, + 0.006423336453735828, + -0.004658801946789026, + 0.0015502440510317683, + -0.008234494365751743, + -0.004899093881249428, + -0.0037155647296458483, + 0.02519124187529087, + 0.009159799665212631, + 0.013198144733905792, + -0.007703699637204409, + -0.0019097859039902687, + -0.019194694235920906, + 0.014862258918583393, + 0.002083728788420558, + 0.03216330707073212, + -0.00025598303182050586, + -0.029781900346279144, + 0.012731906026601791, + -0.008593140169978142, + 0.021260490640997887, + -0.01405172049999237, + 0.00011633554822765291, + -0.021375255659222603, + -0.004508170764893293, + 0.02199212647974491, + 0.020256282761693, + -0.007341468241065741, + 0.0027346699498593807, + -0.00570963229984045, + -0.001317124697379768, + 0.008930266834795475, + 0.010063585825264454, + 0.014761838130652905, + -0.01154120359569788, + 0.01926642283797264, + -0.01320531778037548, + 0.016555065289139748, + -0.007631971035152674, + 0.008492719382047653, + -0.012696041725575924, + -0.022723762318491936, + 0.004766395315527916, + -0.007022273726761341, + 0.015679970383644104, + -0.006746117025613785, + -0.009425196796655655, + -0.0026073509361594915, + 0.014539478346705437, + -0.023857081308960915, + -0.002865575486794114, + -0.004113661125302315, + 0.003084349213168025, + -0.008729425258934498, + 0.010931506752967834, + -0.0094754071906209, + 0.0018595756264403462, + 0.003916406072676182, + 0.005229047499597073, + 0.0024907912593334913, + -0.017430158331990242, + 0.0019061994971707463, + -0.005982202477753162, + 0.0018918536370620131, + -0.01245933584868908, + 0.020858807489275932, + -0.0019546165131032467, + 0.01715758815407753, + 0.00946823414415121, + 0.0006383885629475117, + 0.022293388843536377, + -0.011490993201732635, + -0.013198144733905792, + 0.0051142810843884945, + 0.015479128807783127, + 0.005229047499597073, + -0.007319949567317963, + -0.009583001025021076, + 0.010608726181089878, + 0.004856056533753872, + -0.016798943281173706, + -0.01814744994044304, + -0.010027720592916012, + -0.010185524821281433, + 0.011878330260515213, + 0.004605005029588938, + 0.005013860296458006, + -0.017415812239050865, + 0.0005070347106084228, + -0.004282223992049694, + -0.01367872953414917, + -0.002738256473094225, + -0.010723493061959743, + 0.013004476204514503, + 0.007466993760317564, + 0.01010662317276001, + 0.011483821086585522, + -0.013549617491662502, + 0.0033730585128068924, + -0.0096619026735425, + 0.0037944666109979153, + 0.00862183142453432, + -0.0033676789607852697, + -0.00572397792711854, + -0.01151968538761139, + -0.012007443234324455, + 0.022264696657657623, + -0.0025930050760507584, + -0.0008221942116506398, + -0.0004312709206715226, + -0.029695825651288033, + -0.008700734004378319, + 0.0038088124711066484, + 0.007890195585787296, + -0.022623341530561447, + 0.00032367731910198927, + 0.0037191512528806925, + 0.013542444445192814, + -0.0037944666109979153, + 0.012064825743436813, + -0.003245739499107003, + -0.005795706994831562, + -0.0008629900985397398, + 0.020787078887224197, + 0.011196904815733433, + 0.01314076129347086, + 0.002544587943702936, + -0.0030090336222201586, + 0.016899364069104195, + 0.0110462736338377, + 0.00045794513425789773, + -0.002957029966637492, + 0.010866951197385788, + 0.008679214864969254, + 0.013097723945975304, + 0.02783087082207203, + 0.004701839294284582, + 0.0032708446960896254, + 0.010996063239872456, + -0.004694666247814894, + -0.015220903791487217, + -0.006573967169970274, + -0.009554309770464897, + -0.017028477042913437, + -0.00926022045314312, + 0.025965915992856026, + -0.02176259271800518, + 0.004321675281971693, + 0.018979506567120552, + -0.010752184316515923, + -0.01569431647658348, + -0.008377952501177788, + 0.0021285596303641796, + 0.00787584949284792, + 0.027328766882419586, + 0.0030915220268070698, + 0.021877359598875046, + -0.009461061097681522, + -0.014410366304218769, + -0.0056056249886751175, + 0.004856056533753872, + 0.003634869586676359, + -0.0016443884233012795, + -0.021776938810944557, + -0.006218908354640007, + -0.0037442564498633146, + -0.029322834685444832, + -0.0022504988592118025, + -0.02217862196266651, + 0.01649768091738224, + 0.007997788488864899, + 0.0061830440536141396, + -0.005810053087770939, + -0.008564447984099388, + 0.003862609388306737, + 0.02180563099682331, + 0.01833394542336464, + -0.003629489801824093, + 0.010529824532568455, + 0.000676046300213784, + 0.03804508596658707, + 0.021117031574249268, + 0.0023545059375464916, + 0.0110462736338377, + 0.029494984075427055, + -0.00586384953930974, + 0.020787078887224197, + -0.008026480674743652, + -0.011476648040115833, + -0.013348775915801525, + -0.005343813914805651, + -0.01602426916360855, + 0.006211735773831606, + 0.017286701127886772, + 0.0002481376868672669, + 0.005178837105631828, + 0.026008952409029007, + 0.008241667412221432, + -0.034143026918172836, + -0.009360641241073608, + 0.005989375524222851, + 0.01771707460284233, + 0.017616653814911842, + -0.003473479300737381, + -0.0055554150603711605, + -0.009590174071490765, + 0.02453133463859558, + 0.009762323461472988, + -0.009547136723995209, + 0.022279042750597, + 0.014180832542479038, + 2.3648170099477284e-5, + 0.002740049734711647, + 0.0018021923024207354, + 0.01639726012945175, + -0.0032260140869766474, + -0.008284704759716988, + 0.008987650275230408, + 0.0028458500746637583, + 0.039135370403528214, + 0.008420990779995918, + -0.016182074323296547, + 0.030097508803009987, + 0.001800399157218635, + -0.001958203036338091, + 0.003654594998806715, + 0.0007208769675344229, + 0.02072969451546669, + 0.010594380088150501, + -0.01229435857385397, + -0.01804702915251255, + 0.002827917691320181, + -0.004626523703336716, + 0.02890680730342865, + 0.015048754401504993, + 0.02250857464969158, + -0.0033748517744243145, + -0.010752184316515923, + 0.0010042067151516676, + -0.01833394542336464, + 0.0066743879579007626, + -0.0005684526986442506, + -0.015450437553226948, + 0.004454373847693205, + 0.015106137841939926, + 0.014747492037713528, + 0.006269118748605251, + 0.020342357456684113, + -0.0038590228650718927, + -0.016196418553590775, + -0.004500997718423605, + -0.002440580865368247, + -0.026453673839569092, + -0.0038554363418370485, + 0.013083378784358501, + 0.005150145851075649, + -0.010988890193402767, + -0.00018470229406375438, + 0.008829846046864986, + -0.000888991926331073, + 0.006107728462666273, + 0.034429945051670074, + 0.01553651224821806, + 0.002289949916303158, + -0.019524646922945976, + -0.01057286188006401, + -0.011225596070289612, + -0.004045518580824137, + -0.0022720175329595804, + -0.00034138542832806706, + -0.013363122008740902, + -0.0050927624106407166, + 0.024947363883256912, + -0.015737352892756462, + -0.0007419473258778453, + 0.019108619540929794, + 0.015450437553226948, + 0.001751982024870813, + -0.013858051970601082, + 0.010350502096116543, + -0.011993097141385078, + -0.023756660521030426, + -0.005196769721806049, + 0.0032349801622331142, + -0.008822673000395298, + -0.020844461396336555, + -0.00293192476965487, + 0.0005442441324703395, + 0.006089796312153339, + 0.004655215423554182, + 0.01283232681453228, + -0.014360155910253525, + -0.0020550373010337353, + -0.006018067244440317, + -0.0018649552948772907, + -0.008055171929299831, + 0.010501132346689701, + 0.008593140169978142, + -0.014654244296252728, + 0.03689742460846901, + -0.023053716868162155, + 0.004551208112388849, + 0.020256282761693, + -0.008973304182291031, + 0.013922608457505703, + -0.0002597936545498669, + -0.005591279361397028, + -0.007359400391578674, + -0.013901089318096638, + 0.009439542889595032, + 0.02250857464969158, + 0.0008244357304647565, + 0.002781293820589781, + 0.01649768091738224, + -0.0062260814011096954, + 0.007000755053013563, + -0.024617409333586693, + -0.008449682034552097, + -0.0028691620100289583, + -0.006412576884031296, + -0.00692185340449214, + 0.01346354279667139, + -0.002865575486794114, + 0.018405674025416374, + -0.014008683152496815, + 0.028978535905480385, + -0.0097551504150033, + 0.040168266743421555, + 0.02147567644715309, + -0.000670218316372484, + 0.019625067710876465, + 0.018965160474181175, + 0.0026862528175115585, + 0.00916697271168232, + -0.01796095445752144, + -0.015593895688652992, + 0.006107728462666273, + 0.01889343187212944, + -0.01621076464653015, + 0.003616937203332782, + -0.008585967123508453, + -0.005838744807988405, + -0.0037155647296458483, + -0.02138960175216198, + 0.026051990687847137, + -0.019940676167607307, + 0.004856056533753872, + 0.0003528172674123198, + -0.00031695273355580866, + 0.031933773308992386, + -0.013033168390393257, + -0.0014067859156057239, + 0.00586384953930974, + 0.013133589178323746, + -0.009382159449160099, + 0.02828993648290634, + 0.00355417444370687, + -0.00013527651026379317, + 0.009518444538116455, + -0.01918034814298153, + 0.0198832917958498, + -0.020371049642562866, + 0.011476648040115833, + 0.011598587036132812, + -0.008887229487299919, + 0.006645696237683296, + -0.005580519791692495, + 0.013076205737888813, + 0.003912819549441338, + -0.008707906119525433, + -0.02688404731452465, + -0.01524959597736597, + -0.008012134581804276, + -0.015909502282738686, + -0.016153382137417793, + 0.01449644099920988, + -0.005196769721806049, + -0.01106779184192419, + -0.00701510114595294, + 0.007926059886813164, + -0.0008957164827734232, + -0.015407399274408817, + 0.021045302972197533, + -0.007976270280778408, + 0.012301531620323658, + -0.015622586943209171, + -0.006756876595318317, + -0.0019868947565555573, + -0.03638097271323204, + -0.003297742921859026, + 0.005487272050231695, + -0.008614658378064632, + -0.01106779184192419, + -1.6895553926588036e-5, + -0.0006608038675040007, + 0.008779635652899742, + -0.00909524317830801, + -0.02083011530339718, + -0.010745011270046234, + -0.019122963771224022, + -0.008069518022239208, + -0.022781146690249443, + -0.02048581652343273, + 0.008083864115178585, + -0.005480099469423294, + 0.0005222771433182061, + -0.0017268768278881907, + -0.020313667133450508, + -0.008234494365751743, + -0.019008198752999306, + 0.013822187669575214, + 0.005964270327240229, + -0.008083864115178585, + 0.007323536090552807, + -0.008004961535334587, + 0.015421745367348194, + 0.0010051033459603786, + 0.016425952315330505, + -0.024746522307395935, + 0.027845216915011406, + -0.006423336453735828, + 0.016655486077070236, + 0.0027669479604810476, + 0.0014973438810557127, + -0.024502642452716827, + 0.006398231256753206, + -0.003912819549441338, + -0.026396289467811584, + 0.01697109267115593, + 0.0226520337164402, + 0.0009360641124658287, + 0.010895642451941967, + -0.0018524026963859797, + 0.004479479044675827, + -0.02382838912308216, + -0.001167390262708068, + 0.017803149297833443, + -0.0056235576048493385, + 0.020801424980163574, + 0.008277532644569874, + -0.008277532644569874, + -0.010092277079820633, + 0.011118002235889435, + 0.0019671691115945578, + -0.019022542983293533, + 0.008076691068708897, + 0.006498652044683695, + 0.0038805415388196707, + 0.016856325790286064, + -0.023584511131048203, + -0.034200411289930344, + -0.009669075720012188, + -0.0026880460791289806, + 0.027515262365341187, + -0.02849077805876732, + -0.018319599330425262, + -0.014962679706513882, + -0.001433684374205768, + 0.012681695632636547, + -0.004361126106232405, + -0.014539478346705437, + 0.011526858434081078, + 0.016282493248581886, + -0.019323805347085, + 0.012014615349471569, + -0.0025947983376681805, + -0.0006953234551474452, + 0.02021324634552002, + 0.02438787743449211, + 0.02496170811355114, + -0.03374134376645088, + -0.0026772867422550917, + -0.00806234497576952, + 0.001718807383440435, + -0.0020998679101467133, + 0.008894401602447033, + -0.0019761351868510246, + -0.007732391357421875, + 0.02120310626924038, + -0.005368919111788273, + -0.007954751141369343, + 0.020184554159641266, + -0.011641624383628368, + 0.008442508988082409, + -0.0028835078701376915, + 0.002842263551428914, + 0.008256013505160809, + 0.011060619726777077, + 0.013155107386410236, + -0.0035003775265067816, + 0.015565203502774239, + -0.03784424439072609, + -0.011749218218028545, + -0.027945637702941895, + -0.0001783139305189252, + -0.00350755057297647, + 0.015737352892756462, + 0.006093382835388184, + 0.007359400391578674, + 0.008377952501177788, + 0.0028135718312114477, + -0.0023007092531770468, + 0.005641489755362272, + 0.008277532644569874, + 0.016899364069104195, + 0.013384640216827393, + -0.002483618212863803, + -0.020241936668753624, + -0.004145938903093338, + 0.013477887958288193, + -0.01945291832089424, + -0.028074748814105988, + -0.01879301108419895, + -0.004899093881249428, + 0.022221660241484642, + -0.0324215292930603, + 0.006473546847701073, + -0.016741560772061348, + -0.00928173866122961, + -0.01290405634790659, + 0.006609831936657429, + -0.008349261246621609, + 0.007653489708900452, + 0.004181803669780493, + 0.02368493191897869, + -0.007581760641187429, + -0.020600583404302597, + -0.002567899879068136, + 0.014948333613574505, + 0.0055841063149273396, + -0.012502373196184635, + 0.01443188451230526, + -0.0034806521143764257, + -0.03465947508811951, + 0.004802259616553783, + 0.010185524821281433, + -0.006437682081013918, + 0.0005998341948725283, + -0.004013240337371826, + -0.013908262364566326, + -0.0016228697495535016, + -0.00045458285603672266, + 0.01106779184192419, + -0.011290152557194233, + -0.01238760631531477, + -0.009626038372516632, + 0.009977511130273342, + 0.0008230908424593508, + -0.003245739499107003, + 0.00458348635584116, + -0.026396289467811584, + 0.010393539443612099, + 0.010264426469802856, + 0.0001793226256268099, + 0.006756876595318317, + -0.006283464841544628, + -0.00206221011467278, + -0.01635422371327877, + -0.006480719428509474, + 0.02232207916676998, + 0.0008168145432136953, + 0.008026480674743652, + 0.010171178728342056, + -0.00928173866122961, + 0.007617624942213297, + -0.01593819446861744, + -0.006882402114570141, + 0.004185390193015337, + 0.006190217100083828, + 0.004013240337371826, + 0.012810807675123215, + 0.007115521468222141, + -0.005150145851075649, + 0.019998058676719666, + 0.010364847257733345, + -0.014352982863783836, + -0.007090416271239519, + -0.012588447891175747, + -0.006677974481135607, + -0.011490993201732635, + -0.013198144733905792, + 0.004891921300441027, + 0.0021124205086380243, + 0.02744353376328945, + -0.01283232681453228, + 0.002704185200855136, + -0.0029301317408680916, + 0.005767015740275383, + 0.012825153768062592, + -0.003129179822281003, + 0.009496926330029964, + 0.029667135328054428, + 0.012696041725575924, + -0.02077273279428482, + -0.010623072274029255, + 0.00992012768983841, + -0.021418293938040733, + -0.005874609109014273, + 0.008829846046864986, + 0.003380231326445937, + 0.0063802991062402725, + 0.021375255659222603, + -0.015378708019852638, + 0.00012552583939395845, + -0.004579899832606316, + 0.015593895688652992, + 0.008485546335577965, + -0.008220149204134941, + 0.011469474993646145, + -0.005372505635023117, + -0.0076965270563960075, + -0.0033820245880633593, + -0.0061830440536141396, + -0.010006202384829521, + -0.012932747602462769, + -0.02496170811355114, + -0.011347535997629166, + -0.00421766797080636, + 0.0038231583312153816, + -0.02077273279428482, + -0.00787584949284792, + 0.007111935410648584, + 0.0033031227067112923, + -0.016813289374113083, + 9.341588156530634e-5, + 0.014044547453522682, + 0.004558381158858538, + 0.002867368748411536, + -0.010242908261716366, + -0.008392298594117165, + 0.009963165037333965, + 0.007000755053013563, + 0.013262701220810413, + -0.002542794682085514, + 0.013241182081401348, + -0.011498166248202324, + -0.03041311725974083, + -0.006989995948970318, + -0.006419749930500984, + 0.00034295450313948095, + -0.010888469405472279, + 0.006545275915414095, + -0.009360641241073608, + -0.0057132188230752945, + -0.010156833566725254, + -0.00570963229984045, + -0.011404918506741524, + -0.0029355112928897142, + 0.015321324579417706, + 0.015708662569522858, + -0.023211520165205002, + -0.0027436360251158476, + -0.010795221664011478, + -0.01509179174900055, + 0.009676248766481876, + -0.013004476204514503, + -0.005246980115771294, + 0.0019313046941533685, + 0.020098479464650154, + 0.0026970121543854475, + 0.008578794077038765, + 0.012638658285140991, + -0.004741290118545294, + -0.0009755150531418622, + -0.004009653814136982, + -0.012143728323280811, + -0.018491748720407486, + -0.0048273648135364056, + -0.02204950898885727, + -0.009389332495629787, + 0.002246912568807602, + 0.027945637702941895, + 0.011763564310967922, + 0.02167651802301407, + 0.0068035004660487175, + 0.010228562168776989, + -0.010823913849890232, + -0.007517204154282808, + -0.008069518022239208, + 0.02411530539393425, + -0.020528852939605713, + 0.0011745631927624345, + 0.021662171930074692, + 0.012028961442410946, + 0.018262214958667755, + -0.012782116420567036, + -0.016669830307364464, + -0.009604519233107567, + 0.013707420788705349, + -0.006989995948970318, + 0.00776825612410903, + 0.007126281037926674, + -0.002833297476172447, + 0.006624177563935518, + -0.0018057788256555796, + 0.015407399274408817, + 0.006979236379265785, + -0.007312776520848274, + -0.0004514447064138949, + 0.015723006799817085, + -0.03322489559650421, + 0.030355732887983322, + 0.017458850517868996, + -0.005376092158257961, + -0.013442023657262325, + 0.0039953081868588924, + -0.007126281037926674, + -0.009999029338359833, + -0.017214972525835037, + 0.011333189904689789, + 0.0013207111041992903, + -0.00707607064396143, + -0.012021788395941257, + 0.01565127819776535, + -0.0051142810843884945, + 0.013549617491662502, + -0.005487272050231695, + -0.013664383441209793, + -0.016153382137417793, + 0.021045302972197533, + 0.009202837012708187, + -0.01668417640030384, + -0.021188760176301003, + -0.002659354591742158, + 0.015206558629870415, + 0.002440580865368247, + 0.01365721132606268, + 0.0012973991688340902, + 0.02440222166478634, + 0.00360079831443727, + 0.03227807208895683, + -0.010407884605228901, + -0.00041513185715302825, + -0.004034759011119604, + -0.0005370712606236339, + -0.009389332495629787, + 0.0047807409428060055, + -0.00486322958022356, + -0.021188760176301003, + 0.008930266834795475, + -0.013176626525819302, + 0.006914680358022451, + -0.012423471547663212, + -0.018061375245451927, + 0.003948684316128492, + -0.013097723945975304, + 0.021705210208892822, + 0.0010131727904081345, + 0.013542444445192814, + -0.005211115349084139, + 0.0036384561099112034, + 0.007933232933282852, + 0.0010033100843429565, + -0.011290152557194233, + -0.030728723853826523, + 0.012488027103245258, + -0.009030687622725964, + 0.014718800783157349, + 0.0019295114325359464, + -0.00935346819460392, + 0.0013897502794861794, + 0.007825639098882675, + 0.010630245320498943, + -0.0034573401790112257, + 0.0012812601635232568, + -0.01191419456154108, + 0.012724732980132103, + 0.018219178542494774, + 0.012774943374097347, + -0.0107665304094553, + 0.03778686374425888, + 0.01955333910882473, + -0.009317603893578053, + 0.0035470013972371817, + 0.014066066592931747, + -0.0030556574929505587, + 0.010250081308186054, + 0.012868191115558147, + -0.004249946214258671, + -0.004805846139788628, + 0.0003124696668237448, + -0.017803149297833443, + 0.006617004983127117, + -0.002693425863981247, + 0.000515552528668195, + 0.004128006752580404, + 0.006516584195196629, + -0.0019653758499771357, + -0.0015000337734818459, + -0.0048273648135364056, + -0.014460576698184013, + 0.009740805253386497, + -0.00029139925027266145, + -0.024473952129483223, + -0.009080898016691208, + -0.005067657213658094, + -0.011993097141385078, + -0.01459686178714037, + -0.004938545171171427, + -0.023900119587779045, + -0.026051990687847137, + -0.005896127782762051, + 0.020155861973762512, + 0.024129651486873627, + -0.005838744807988405, + 0.01469010952860117, + -0.009690594859421253, + 0.0025822457391768694, + 0.01546478271484375, + 0.010680455714464188, + -0.002888887422159314, + 0.006710252724587917, + 0.010328982956707478, + 0.0033551263622939587, + 0.005896127782762051, + 0.0037872937973588705, + -0.011168212629854679, + 0.0015036201803013682, + 0.007883022539317608, + -0.0021913223899900913, + 0.013815014623105526, + -0.03815985471010208, + -0.009869917295873165, + 0.007510031573474407, + -0.0036133509129285812, + 0.0014399606734514236, + 0.005239807069301605, + 0.008894401602447033, + -0.0009176835301332176, + 0.0011270426912233233, + 0.00116918352432549, + -0.02983928471803665, + 0.02444525994360447, + -0.007025860249996185, + 0.014962679706513882, + 0.007997788488864899, + -0.019051235169172287, + 0.03916405886411667, + -0.024889979511499405, + 0.0029606164898723364, + 0.02880638651549816, + -0.013241182081401348, + -0.02589418739080429, + 0.03514723479747772, + -0.007761083077639341, + -0.006218908354640007, + -0.030958257615566254, + 0.005207528825849295, + -0.013829360716044903, + 0.01066610962152481, + 0.021274836733937263, + 0.01907992735505104, + 0.026898393407464027, + 3.390318306628615e-5, + -0.0018864739686250687, + -0.00039428562740795314, + -0.0030108268838375807, + -0.0035470013972371817, + 0.016440298408269882, + -0.004752049688249826, + -0.0006782878190279007, + -0.011003236286342144, + 0.01963941380381584, + 0.010328982956707478, + 0.014905296266078949, + -0.016669830307364464, + 0.005354573484510183, + 0.02308240719139576, + 0.04846014454960823, + -0.0052003562450408936, + -0.006929025985300541, + -0.0206292737275362, + -0.002765154931694269, + -0.01506310049444437, + 0.011734872125089169, + -0.004013240337371826, + 0.014381674118340015, + -0.002542794682085514, + 0.003471686039119959, + -0.004662388004362583, + -0.025678999722003937, + -0.010458094999194145, + -0.017889223992824554, + 0.013255528174340725, + -0.0023222279269248247, + 0.003645628923550248, + 0.0043754721991717815, + -0.002716737799346447, + -0.02533470094203949, + -0.003676113672554493, + -0.03712695464491844, + -0.00041939079528674483, + -0.0035093436017632484, + 0.0047592222690582275, + -0.016253802925348282, + -0.010809567756950855, + 0.012810807675123215, + 0.020012404769659042, + -0.011476648040115833, + 0.02547815814614296, + -0.00417104410007596, + -0.031618162989616394, + 0.002806399017572403, + -0.003243946237489581, + -0.0011871157912537456, + -0.010164006613194942, + -0.007319949567317963, + 0.008083864115178585, + -0.0004734117246698588, + -0.016698522493243217, + 0.0022164275869727135, + 0.0025589338038116693, + -0.004468719940632582, + -0.00046041083987802267, + -0.018922122195363045, + -0.001808468601666391, + 0.018448712304234505, + -0.0189508143812418, + 0.003473479300737381, + 0.0007325329352170229, + 0.014180832542479038, + -0.00928173866122961, + -0.005648662801831961, + 0.0003895784029737115, + 0.011074964888393879, + -0.018434366211295128, + 0.004572726786136627, + 0.02880638651549816, + 0.027414841577410698, + 0.005067657213658094, + 0.02603764459490776, + -0.00016766665794420987, + -0.020672312006354332, + 0.02453133463859558, + -0.017028477042913437, + 0.009324776008725166, + -0.03368396311998367, + -0.01860651560127735, + 0.023283248767256737, + -0.0023311940021812916, + -7.74029285821598e-6, + 0.0012893296079710126, + 0.02397184818983078, + -0.009912954643368721, + 0.01019987091422081, + -0.007319949567317963, + 0.01819048635661602, + 0.023154137656092644, + 0.01926642283797264, + 0.00515731843188405, + 0.002636042656376958, + 0.009812533855438232, + 0.0019223385024815798, + -0.0206292737275362, + -0.006617004983127117, + 0.0006693216855637729, + -0.0072733256965875626, + 0.0127103878185153, + 0.006789154373109341, + 0.00041580433025956154, + -0.021963434293866158, + -0.010780876502394676, + 0.0029175791423767805, + -0.006043172441422939, + 0.004917026497423649, + -0.02570769190788269, + -0.024187035858631134, + -0.011871157214045525, + 0.021776938810944557, + -0.011813774704933167, + 0.00682860566303134, + -0.0009262013481929898, + 0.017559271305799484, + 0.004576313309371471, + -0.013162280432879925, + 0.004913439974188805, + -0.009389332495629787, + 0.025019092485308647, + 0.0025158964563161135, + -0.0033049159683287144, + 0.006850124336779118, + 0.015737352892756462, + -0.01631118543446064, + 0.006297810468822718, + -0.009805360808968544, + 0.012667350471019745, + -0.007000755053013563, + -0.0031220067758113146, + 0.00767500838264823, + 0.010680455714464188, + 0.004752049688249826, + 0.020313667133450508, + -0.03190508112311363, + -0.02960975095629692, + 0.015852119773626328, + 0.04722640663385391, + 0.04550490900874138, + -0.007036619819700718, + -0.005003101192414761, + -0.006269118748605251, + -0.03474555164575577, + -0.0018900604918599129, + -0.0018066754564642906, + -0.031618162989616394, + 0.006591899786144495, + 0.012452162802219391, + -0.013069032691419125, + 0.01852044090628624, + 0.009088070131838322, + -0.006810673046857119, + 0.014231042936444283, + 0.008801153860986233, + -0.015077445656061172, + 0.00196896237321198, + -0.009174145758152008, + -0.007445475086569786, + 0.005835158284753561, + -0.008162765763700008, + -0.0037657751236110926, + 0.0045332759618759155, + -0.0196967963129282, + -0.0048668161034584045, + -0.02374231442809105, + -0.020155861973762512, + -0.014023029245436192, + 0.018922122195363045, + -0.008578794077038765, + -0.011648797430098057, + 0.003125593299046159, + 0.006982822902500629, + 0.0044436147436499596, + -0.008076691068708897, + 0.014704454690217972, + -0.008643350563943386, + -0.01057286188006401, + -0.035233307629823685, + -0.01626814901828766, + 0.0004258912231307477, + -0.01626814901828766, + -0.01965375989675522, + -0.0007813983247615397, + -0.007233874406665564, + -0.003645628923550248, + -0.01744450442492962, + 0.006093382835388184, + 0.013384640216827393, + 0.019955022260546684, + -0.020371049642562866, + 0.010759357362985611, + -0.002051450777798891, + 0.018979506567120552, + -0.002340160310268402, + -0.00043261583778075874, + -0.0011046273866668344, + 0.008887229487299919, + -0.01804702915251255, + -0.010422230698168278, + 0.007753910031169653, + 0.02589418739080429, + 0.0006558725144714117, + -0.0004494273161981255, + 0.015378708019852638, + 0.02039974182844162, + 0.0012436023680493236, + 0.005368919111788273, + -0.012236976064741611, + -0.010558515787124634, + -0.01125428732484579, + -0.012186765670776367, + -0.02401488646864891, + -0.01715758815407753, + -0.011971578001976013, + -0.017272355034947395, + -0.018176140263676643, + 0.023570165038108826, + 0.020557545125484467, + 0.016483334824442863, + -0.0036474221851676702, + -0.002316848374903202, + -0.0009710320155136287, + 0.0075602419674396515, + -0.012889710254967213, + 0.02345539815723896, + 0.0030377251096069813, + 0.017358429729938507, + -0.015737352892756462, + 0.0005706942174583673, + -0.006018067244440317, + 0.00028557126643136144, + 0.014166487380862236, + -0.008327743038535118, + -0.0032260140869766474, + 0.016382914036512375, + -0.0011010408634319901, + 0.012846672907471657, + 0.011426437646150589, + 0.013628519140183926, + 0.007481339853256941, + 0.003679700195789337, + -0.010845432057976723, + -0.031245173886418343, + -0.012236976064741611, + -0.016425952315330505, + 0.009934472851455212, + 0.013850878924131393, + -0.02101661078631878, + 0.012990131042897701, + -0.00476998183876276, + 0.010242908261716366, + -0.008851364254951477, + 0.016052961349487305, + 0.002854816149920225, + 0.006957717705518007, + 0.01724366284906864, + -0.003963029943406582, + -0.0217195563018322, + 0.018434366211295128, + 0.04082817584276199, + 0.014654244296252728, + -0.002752602333202958, + 0.0006307673174887896, + -0.009045032784342766, + 0.013248355127871037, + -0.005914059933274984, + -0.013915435411036015, + 0.009611692279577255, + -8.81482774275355e-5, + -0.0055554150603711605, + -0.007266152650117874, + -0.021446986123919487, + 3.163362998748198e-5, + -0.00196896237321198, + -0.0034680995158851147, + 0.020414087921380997, + -0.001637215493246913, + -0.009704940021038055, + 0.01318379957228899, + 0.014718800783157349, + 0.003459133440628648, + 0.014661417342722416, + 0.014266908168792725, + -0.008636177517473698, + 0.00944671593606472, + 0.018176140263676643, + 0.005117867607623339, + -0.003152491757646203, + 0.00953996367752552, + 0.013893917202949524, + 0.01678459718823433, + -0.0007163938716985285, + 0.00803365372121334, + -0.028892461210489273, + 0.02050016261637211, + -0.0021680104546248913, + -0.011383400298655033, + -0.015966886654496193, + 0.012143728323280811, + -0.0004743083263747394, + 0.0244882982224226, + -0.004579899832606316, + -0.018018336966633797, + -0.003543415106832981, + 0.015306979417800903, + -0.03078610822558403, + -0.02322586625814438, + -0.010006202384829521, + -0.009841225109994411, + -0.012896883301436901, + 0.019438572227954865, + 0.0025768661871552467, + 0.021504368633031845, + 0.0011647004866972566, + 0.00421766797080636, + -0.02886376902461052, + -0.004045518580824137, + -0.00862900447100401, + 0.011168212629854679, + 0.007811293471604586, + 0.00018728006398305297, + 0.006071864161640406, + 0.015522166155278683, + -0.0013323670718818903, + -6.741409742971882e-5, + 0.036782655864953995, + 3.984324575867504e-5, + 0.0009566862136125565, + 0.03603667393326759, + -0.018032683059573174, + -0.019682450219988823, + -0.01720062643289566, + 0.0064018177799880505, + -0.007603279314935207, + -0.008047998882830143, + -0.031790316104888916, + 0.009712113067507744, + -0.005533895920962095, + 0.02087315358221531, + -0.027371805161237717, + 0.01659810170531273 + ], + "4f5b559d-e60a-4a57-9b99-6c0427112512": [ + -0.004537125118076801, + 0.0006597989704459906, + 0.0029471619054675102, + -0.015627477318048477, + -0.00922465231269598, + -0.001736784353852272, + 0.024236198514699936, + 0.005890742409974337, + -0.04136769473552704, + 0.009145869873464108, + -0.001996406586840749, + 0.04394601285457611, + 0.024522678926587105, + -0.008794932626187801, + -0.053772274404764175, + 0.013256856240332127, + -0.02217354252934456, + 0.0356953926384449, + -0.007691984996199608, + -0.052569057792425156, + 0.06136399134993553, + -0.010413543321192265, + -0.046724870800971985, + 0.029736611992120743, + -0.010879073292016983, + -0.03145549073815346, + -0.01801958493888378, + -0.003964165225625038, + -0.03898991271853447, + -0.005983848590403795, + 0.017016904428601265, + 0.011838781647384167, + 0.029622020199894905, + -0.00881641823798418, + -0.001641887822188437, + -0.014159268699586391, + 0.0021647135727107525, + 0.002322277519851923, + -0.002254238585010171, + -0.0030259438790380955, + -0.009704506024718285, + 0.03357544168829918, + 0.040995270013809204, + 0.008157514967024326, + -0.039362337440252304, + -0.005772569682449102, + -0.01435980387032032, + -0.02167220413684845, + 0.011230011470615864, + -0.008515615016222, + 0.008880876004695892, + -0.0014386661350727081, + -0.013550498522818089, + 0.010098416358232498, + 0.01012706384062767, + -0.019494956359267235, + 0.022073274478316307, + 0.06256720423698425, + 0.014302507974207401, + -0.03134090080857277, + 0.008415346965193748, + 0.0022667720913887024, + -0.0067072100937366486, + -0.009532618336379528, + -0.044920045882463455, + -0.017303384840488434, + -0.027917465195059776, + -0.019938999786973, + -0.06526011973619461, + -0.0349791944026947, + 0.00850129034370184, + 0.05268365144729614, + -0.017976611852645874, + 0.002333020558580756, + -0.024866454303264618, + -0.012948891147971153, + 0.03715644031763077, + 0.020812762901186943, + 0.020354395732283592, + 0.0047698901034891605, + -0.005267648957669735, + -0.011330279521644115, + -0.005661558825522661, + 0.0006208556005731225, + 0.08920983225107193, + -0.008257783018052578, + -0.024852130562067032, + -0.03881802409887314, + -0.011666893027722836, + 0.015111814253032207, + -0.017947964370250702, + 0.04179741442203522, + -0.0322289876639843, + 0.014452910050749779, + 0.009281948208808899, + -0.004551449324935675, + 0.014696418307721615, + 0.010864749550819397, + 0.018477952107787132, + 0.023319462314248085, + 0.023491350933909416, + 0.038617487996816635, + -0.046868108212947845, + 0.021715175360441208, + -0.01695960946381092, + -0.00573675986379385, + 0.00047940618242137134, + -0.014037514105439186, + -0.015613153576850891, + 0.04136769473552704, + -0.003310633124783635, + -0.042828742414712906, + 0.008723312057554722, + -0.00021273369202390313, + -0.04113851115107536, + -0.012347282841801643, + 0.0023294396232813597, + -0.029263921082019806, + 0.0460946150124073, + -0.03136954829096794, + 0.004977588076144457, + 0.013679414056241512, + 0.0380445271730423, + 0.013292666524648666, + -0.00904560275375843, + 0.008529938757419586, + -0.003615017980337143, + 0.02160058356821537, + 0.014882629737257957, + 0.01801958493888378, + -0.007742119021713734, + -0.002825407776981592, + 0.024708889424800873, + 0.03434893861413002, + 0.007906844839453697, + 0.041940655559301376, + 0.024494029581546783, + 0.04365953430533409, + -0.010929207317531109, + 0.04615190997719765, + -0.06841139495372772, + -0.02818962000310421, + -0.014302507974207401, + 0.002152180066332221, + -0.00342164421454072, + 0.022144895046949387, + -0.0449773408472538, + 0.03136954829096794, + -0.02198733016848564, + -0.0023956880904734135, + -0.04216983914375305, + -0.03297383338212967, + 0.012798489071428776, + 0.007469962816685438, + 0.042656853795051575, + -0.013973056338727474, + -0.04887346923351288, + 0.004673202987760305, + -0.013407258316874504, + 0.03658347949385643, + 0.036067817360162735, + -0.06783843785524368, + -0.011552301235496998, + -0.014868305996060371, + 0.028733931481838226, + 0.010520974174141884, + 0.03810182586312294, + 0.02174382284283638, + -0.04512058198451996, + 0.020053591579198837, + 0.014538854360580444, + -0.012426065281033516, + -0.015040193684399128, + -0.02241705171763897, + 0.01777607761323452, + 0.006402825471013784, + 0.04758431017398834, + 0.007101119961589575, + 0.04706864431500435, + -0.04575083777308464, + -0.007204968947917223, + -0.01915118098258972, + 0.0058764186687767506, + -0.044490326195955276, + -0.029478780925273895, + 0.016988256946206093, + -0.006338367238640785, + 0.00016550927830394357, + 0.02907770872116089, + -0.005650815553963184, + -0.008171838708221912, + -0.02277515083551407, + 0.007072472013533115, + 0.017661483958363533, + -0.013192398473620415, + -0.061134807765483856, + 0.018850376829504967, + -0.005421631969511509, + 0.013579146936535835, + 0.020196832716464996, + -0.016701776534318924, + -0.039820704609155655, + -0.041339047253131866, + 0.05643653869628906, + -0.014417099766433239, + 0.035179730504751205, + 0.005847770720720291, + 0.003326747566461563, + -0.001326759927906096, + -0.01642962172627449, + 0.02277515083551407, + -0.022187866270542145, + 0.004386723041534424, + 0.0036454566288739443, + -0.03417704999446869, + 0.0272299125790596, + 0.006098440382629633, + 0.010642727836966515, + -0.020383043214678764, + -0.006671400275081396, + 0.013622118160128593, + -0.010929207317531109, + -0.005636491812765598, + -0.0526263564825058, + -0.03870343416929245, + -0.019595224410295486, + -0.005632910877466202, + 0.020497635006904602, + -0.03724238649010658, + -0.005213933996856213, + 0.04726918041706085, + -0.012726868502795696, + 0.011731350794434547, + -0.010628404095768929, + 0.0064171492122113705, + 0.035895928740501404, + -0.0125191705301404, + 0.04294333606958389, + -0.03460676968097687, + -0.008007112890481949, + 0.00248342240229249, + 0.009059926494956017, + -0.0005393879255279899, + 0.011996345594525337, + 0.016458269208669662, + 0.004759147297590971, + -0.03139819577336311, + 0.0070474050007760525, + 0.022073274478316307, + -0.021256808191537857, + -0.0011772533180192113, + 0.011358927004039288, + 0.02602669782936573, + -0.014044675976037979, + -0.0013795796548947692, + 0.010757319629192352, + 0.03437758609652519, + -0.05741056799888611, + -0.01915118098258972, + -0.011215687729418278, + -0.0022506576497107744, + 0.022646235302090645, + 0.03658347949385643, + -0.0060948594473302364, + 0.03655483201146126, + -0.02730153314769268, + 0.060218073427677155, + 0.00025357946287840605, + 0.011136905290186405, + 0.05970240756869316, + -0.022015979513525963, + -0.00023097440134733915, + 0.009210328571498394, + -0.004880900960415602, + -0.011537977494299412, + -0.01131595578044653, + -0.011022313497960567, + -0.005407307762652636, + -0.00934640597552061, + -0.01529802568256855, + 0.03199980407953262, + -0.025554005056619644, + 0.04979020357131958, + 0.0407947339117527, + -0.011115419678390026, + 0.010764481499791145, + -0.015842337161302567, + -0.001470895134843886, + -0.020211156457662582, + -0.01693096198141575, + -0.03858884051442146, + -0.0026553103234618902, + -0.0031262116972357035, + 0.011709865182638168, + 0.021657878533005714, + -0.014195078052580357, + -0.019666843116283417, + -0.013965894468128681, + -0.006284652277827263, + -0.018076879903674126, + -0.0233051385730505, + 0.016802044585347176, + 0.007641850970685482, + -0.03646888956427574, + 0.018477952107787132, + -0.010513811372220516, + 0.02939283661544323, + 0.023734858259558678, + -0.007906844839453697, + 0.00534643093124032, + 0.03686996176838875, + -0.028089351952075958, + 0.005468184594064951, + -0.023820802569389343, + -0.003734981408342719, + -0.0037421435117721558, + -0.02089870721101761, + -0.03821641579270363, + -0.020583579316735268, + -0.01599990203976631, + 0.02304730750620365, + -0.007591716945171356, + -0.029421484097838402, + 0.026857489719986916, + 0.00971882976591587, + -0.017947964370250702, + 0.04053690284490585, + -0.0400785356760025, + -0.028490424156188965, + -0.04188336059451103, + -0.03540891408920288, + -0.011022313497960567, + -0.05574898421764374, + -0.029622020199894905, + -0.017947964370250702, + -0.03747157007455826, + -0.01343590673059225, + -0.03979205712676048, + 0.011838781647384167, + -0.016730425879359245, + -0.0010742995655164123, + -0.010205846279859543, + -0.028733931481838226, + -0.018606867641210556, + 0.013371448963880539, + -0.032916538417339325, + 0.017303384840488434, + -0.0063455295749008656, + -0.028948793187737465, + 0.027430448681116104, + 0.0009068878716789186, + -0.02588345669209957, + 0.018921995535492897, + -0.01087191142141819, + 0.052884187549352646, + 0.017031230032444, + -0.004741242155432701, + -0.019065236672759056, + 0.016128817573189735, + -0.031226307153701782, + 0.03211439400911331, + -0.04225578159093857, + -0.05761110410094261, + 0.0004686631727963686, + -0.0029811812564730644, + 0.022603262215852737, + 0.009410863742232323, + 0.0021844091825187206, + 0.011237173341214657, + 0.04769890010356903, + -0.01259079109877348, + -0.015412617474794388, + 0.022961363196372986, + -0.032171692699193954, + 0.004841510206460953, + -0.015770718455314636, + 0.04068014398217201, + -0.0019265771843492985, + -0.03257276117801666, + 0.027917465195059776, + -0.03919044882059097, + 0.020497635006904602, + -0.0039713275618851185, + -0.03898991271853447, + 0.055090080946683884, + 0.023290814831852913, + -0.0004910444258712232, + -0.013965894468128681, + 0.013113616965711117, + 0.029593372717499733, + -0.036067817360162735, + 0.009317758493125439, + 0.00941802654415369, + 0.02510996162891388, + 0.0023813641164451838, + -0.010076929815113544, + 0.004225578159093857, + -0.00033370431629009545, + -0.01508316583931446, + -0.004522801376879215, + 0.0009686601115390658, + 0.024565650150179863, + 0.008243458345532417, + 0.03119765967130661, + 0.03509378433227539, + -0.03283059597015381, + -0.0007734957034699619, + -0.009976661764085293, + 0.005045626778155565, + -0.01883605308830738, + 0.010828939266502857, + 0.009940852411091328, + -0.00423990236595273, + -0.0032354320865124464, + 0.020841412246227264, + 0.01427386049181223, + 0.03704185038805008, + 0.03028092347085476, + -0.003190669696778059, + -0.042800094932317734, + 0.03409110754728317, + 0.020511960610747337, + 0.0015156576409935951, + 0.00481644319370389, + 0.009375054389238358, + 0.013464554212987423, + 0.009052764624357224, + 0.02460862137377262, + -0.01398738007992506, + -0.011208525858819485, + 0.011502167209982872, + 0.014954250305891037, + 0.02135707624256611, + 0.014080486260354519, + -0.01681636832654476, + -0.018850376829504967, + 0.012268501333892345, + -0.01731770858168602, + -0.03165602684020996, + -0.01565612480044365, + 0.001897929236292839, + 0.039992593228816986, + -0.007076052948832512, + -0.003960584290325642, + -0.031856562942266464, + -0.0008486966835334897, + -0.008515615016222, + 0.029765259474515915, + -0.0038961265236139297, + 0.026184260845184326, + 0.008866552263498306, + 0.021543286740779877, + -0.003233641618862748, + 0.026184260845184326, + 0.0030921923462301493, + -0.00719780707731843, + 0.019781436771154404, + -0.018793080002069473, + 0.0013751034857705235, + -0.03558080270886421, + -0.02351999841630459, + -0.014631960541009903, + 0.020354395732283592, + -0.029650667682290077, + 0.039963942021131516, + -0.03162737935781479, + -0.012289986945688725, + 0.01844930462539196, + 0.014811010099947453, + 0.024393761530518532, + -0.012504846788942814, + -0.014080486260354519, + -0.05382956936955452, + 0.01545558962970972, + 0.024178901687264442, + -0.013543336652219296, + -0.02535346895456314, + 0.014710742048919201, + 0.01756121776998043, + -0.008680340833961964, + 0.013722386211156845, + -0.004537125118076801, + -0.02256029099225998, + -0.026141289621591568, + -0.014639122411608696, + -0.019208475947380066, + -0.009396540001034737, + -0.06440068036317825, + -0.01604287326335907, + -0.006159317679703236, + 0.017618512734770775, + 0.012175395153462887, + 0.011380413547158241, + 0.007928330451250076, + -0.0035451885778456926, + -0.038187768310308456, + 0.010277465917170048, + -0.03357544168829918, + -0.01034192368388176, + -0.009002630598843098, + 0.010771643370389938, + -0.0007032185676507652, + -0.03354679420590401, + 0.0364115945994854, + 0.0015353531343862414, + 0.01695960946381092, + -0.03764345496892929, + -0.01837768405675888, + -0.014725065790116787, + 0.02871960774064064, + 0.009532618336379528, + -0.05351444333791733, + 0.008465480990707874, + -0.0017958707176148891, + -0.012977538630366325, + -0.005274810828268528, + -0.03268735483288765, + -0.014424262568354607, + 0.05102206766605377, + -0.015312349423766136, + 0.007770766969770193, + -0.01324253249913454, + -0.02138572372496128, + 0.031111715361475945, + 0.013908598572015762, + 0.0008361631771549582, + -0.010155712254345417, + -0.02956472337245941, + -0.0057475026696920395, + 0.008615882135927677, + -0.009196003898978233, + 0.0060626305639743805, + -0.014051837846636772, + -0.0047627282328903675, + 0.03328896313905716, + -0.00609127851203084, + -0.008236296474933624, + -0.01727473735809326, + 0.023663237690925598, + 0.049131300300359726, + -0.025611301884055138, + 0.006520998198539019, + 0.032458171248435974, + -0.015154785476624966, + -0.016315029934048653, + 0.0182057972997427, + 0.0026338244788348675, + 0.06285368651151657, + -0.001786918262951076, + 0.017289061099290848, + -0.025940753519535065, + 0.0065317414700984955, + -0.0356953926384449, + -0.0182057972997427, + 0.009324920363724232, + -0.021328426897525787, + 0.008773446083068848, + -0.018721461296081543, + -0.024952398613095284, + -0.023419730365276337, + -0.027029376477003098, + -0.013958732597529888, + 0.023964041844010353, + 0.008651692420244217, + 0.011645407415926456, + -0.007699146866798401, + -0.029063384979963303, + 0.011230011470615864, + -0.0020196831319481134, + 0.006721534300595522, + 0.02953607589006424, + -0.013801168650388718, + 0.0686405822634697, + 0.020426016300916672, + -0.010205846279859543, + 0.009869231842458248, + -0.02970796450972557, + -0.015326674096286297, + 0.023577295243740082, + -0.017031230032444, + 0.02291839011013508, + -0.05053505301475525, + -0.007072472013533115, + -0.005135152023285627, + 0.01753256842494011, + 0.017446624115109444, + -0.032801948487758636, + -0.0202970989048481, + 0.00975464005023241, + -0.011122581548988819, + 0.003324957098811865, + 0.048529691994190216, + 0.004214835353195667, + 0.011881752870976925, + -0.03609646484255791, + 0.015441265888512135, + 0.00941802654415369, + 0.034119755029678345, + -0.013858464546501637, + -0.0015586295630782843, + 0.0502772182226181, + 0.02521022967994213, + 0.006628428120166063, + 0.006753763183951378, + -0.02758801355957985, + -0.03423434495925903, + 0.011946211569011211, + 0.012734031304717064, + -0.007165578193962574, + 0.019494956359267235, + -0.027673956006765366, + 0.021443018689751625, + 0.000979403150267899, + -0.013113616965711117, + -0.0032497562933713198, + -0.008415346965193748, + -0.0036741045769304037, + 0.017231764271855354, + 0.0013410839019343257, + -0.013113616965711117, + -0.00609127851203084, + -0.04692540317773819, + 0.044776804745197296, + 0.014051837846636772, + 0.015627477318048477, + 0.0003142326313536614, + 0.00993368960916996, + -0.02160058356821537, + -0.0035953226033598185, + -0.003036686684936285, + 0.005815541837364435, + -0.010735834017395973, + -0.010785968042910099, + -0.03901856020092964, + 0.03475001081824303, + 0.00202684523537755, + -0.00500265508890152, + 0.0052783917635679245, + 0.009059926494956017, + -0.021027622744441032, + -0.012175395153462887, + 0.0040536904707551, + -0.021829767152667046, + 0.01671610213816166, + -0.008837904781103134, + 0.011838781647384167, + -0.011523653753101826, + 0.012289986945688725, + 0.028160972520709038, + -0.010922045446932316, + -0.013937246054410934, + 0.012440389022231102, + 0.006356272380799055, + 0.015484238043427467, + 0.005955200642347336, + 0.00369200948625803, + 0.02121383510529995, + 0.006431473419070244, + 0.00906708836555481, + -0.02078411541879177, + 0.03887531906366348, + -0.038760729134082794, + -0.0028271982446312904, + 0.03580998629331589, + 0.012175395153462887, + 0.02054060809314251, + -0.004909548908472061, + 0.010728671215474606, + 0.02900608815252781, + 0.022746503353118896, + -0.013443068601191044, + -0.0233051385730505, + 0.002834360348060727, + -0.005081437062472105, + 0.03194250538945198, + 0.0001444709050701931, + 0.01943765953183174, + 0.0035881604999303818, + -0.011208525858819485, + 0.015985578298568726, + 0.02436511404812336, + -0.004766309168189764, + -0.015985578298568726, + -0.0033428622409701347, + 0.0015962300822138786, + -0.006127088330686092, + -0.012125261127948761, + 0.03211439400911331, + 0.00571885472163558, + -0.007262264844030142, + 0.00360785610973835, + -0.021113567054271698, + -0.004315103404223919, + -0.041339047253131866, + -0.016071520745754242, + 0.01253349520266056, + -0.000351161666912958, + -0.011946211569011211, + 0.024694565683603287, + -0.02874825708568096, + -0.049704261124134064, + -0.008773446083068848, + 0.004701850935816765, + -0.008458318188786507, + 0.004791376180946827, + 0.013063482940196991, + -0.0037886963691562414, + -0.014209401793777943, + 0.03830236196517944, + -0.02602669782936573, + 0.006159317679703236, + 0.014116296544671059, + 0.014281022362411022, + 0.0324295237660408, + 0.007828062400221825, + 0.0324295237660408, + -0.023706210777163506, + 0.004734080284833908, + -0.017289061099290848, + 0.025998050346970558, + -0.0025747378822416067, + 0.01707420125603676, + 0.0023348110262304544, + -0.04666757211089134, + -0.054975491017103195, + -0.0013688367325812578, + 0.023362435400485992, + 0.020669523626565933, + 0.0018084042239934206, + 0.0016132398741319776, + 0.02018250711262226, + -0.002393897622823715, + -0.004512058105319738, + -0.0038245064206421375, + -0.030223628506064415, + 0.0035774174612015486, + 0.0008607825147919357, + 0.0036651520058512688, + 0.018678488209843636, + -0.040565550327301025, + -0.009110060520470142, + -0.003957003355026245, + 0.015670450404286385, + -0.007971302606165409, + 0.00231511564925313, + 0.007634689100086689, + -0.008988305926322937, + -0.014567501842975616, + 0.009611399844288826, + 0.019981971010565758, + 0.034434881061315536, + -0.011108257807791233, + 0.032801948487758636, + 0.0035505599807947874, + -0.0036991715896874666, + -0.005862094461917877, + 0.01368657685816288, + 0.0015272959135472775, + 0.015484238043427467, + 0.02036871947348118, + -0.004691108129918575, + 0.00757023086771369, + 0.012726868502795696, + 0.008057246915996075, + -0.023777829483151436, + -0.028003409504890442, + -0.023648913949728012, + 0.012268501333892345, + 0.02453700266778469, + -0.009482484310865402, + 0.020067915320396423, + 0.007956978864967823, + 0.033231668174266815, + -0.005081437062472105, + -0.028017733246088028, + 0.011187039315700531, + 0.008723312057554722, + -0.028461776673793793, + -0.02953607589006424, + -0.004254226107150316, + -0.03595322370529175, + -0.026542361825704575, + 0.00020154308003839105, + -0.018578220158815384, + 0.010098416358232498, + -0.024852130562067032, + 0.019165504723787308, + -0.005521899554878473, + 0.005009816959500313, + 0.0059408764354884624, + -0.002902399282902479, + 0.005024141166359186, + -0.010406381450593472, + 0.014209401793777943, + 0.001846004743129015, + -0.019036589190363884, + -0.00479853805154562, + -0.030223628506064415, + 0.00018822622951120138, + 0.027043700218200684, + 0.0011844153050333261, + -0.008723312057554722, + 0.02638479694724083, + 0.058413248509168625, + 0.023806478828191757, + 0.013550498522818089, + -0.012490523047745228, + 0.026900460943579674, + -0.005557709839195013, + -0.022603262215852737, + -0.005013397894799709, + 0.023777829483151436, + 0.011717027053236961, + 0.03174196928739548, + -0.044146548956632614, + 0.015928281471133232, + -0.015555857680737972, + 0.041625525802373886, + 0.03340355306863785, + -0.009833421558141708, + 0.0021647135727107525, + 0.03260141238570213, + -0.02854772098362446, + -0.00042457215022295713, + -0.022001655772328377, + -0.00498474994674325, + 0.009453835897147655, + -0.01770445704460144, + 0.0246802419424057, + 0.016028549522161484, + 0.026141289621591568, + 0.008293592371046543, + -0.003532655071467161, + 0.029765259474515915, + -0.0008697350276634097, + -0.023577295243740082, + -0.027860168367624283, + -0.009890718385577202, + -0.027430448681116104, + 0.03580998629331589, + -0.02150031551718712, + -0.026270205155014992, + -0.02645641751587391, + -0.003974908497184515, + 0.013292666524648666, + -0.011702703312039375, + 0.021686527878046036, + 0.00738401897251606, + 0.016558537259697914, + 0.037872642278671265, + 0.03194250538945198, + -0.050019387155771255, + -0.024121606722474098, + 0.028633665293455124, + -0.02556832879781723, + 0.025654273107647896, + -0.041339047253131866, + -0.011108257807791233, + -0.0076776607893407345, + 0.003702752524986863, + 0.0027108159847557545, + 0.002316906116902828, + -0.012046478688716888, + -0.0356953926384449, + 0.02135707624256611, + -0.0017251460812985897, + -0.03168467432260513, + 0.003609646577388048, + -0.005679463502019644, + 0.004264969378709793, + 0.007326723076403141, + 0.015742069110274315, + -0.01418075431138277, + 0.00229721050709486, + -2.867596413125284e-5, + -0.023562969639897346, + -0.030825234949588776, + 0.017947964370250702, + -0.025940753519535065, + -0.019007939845323563, + -0.022961363196372986, + 0.04322981461882591, + 0.03540891408920288, + 0.008293592371046543, + -0.03853154554963112, + -0.0018692812882363796, + 0.029335539788007736, + -0.014438586309552193, + -0.024379437789320946, + -0.020053591579198837, + 0.015641801059246063, + -0.01565612480044365, + -0.03016633167862892, + -0.00478779524564743, + -0.023921070620417595, + 0.007104700896888971, + 0.009310596622526646, + -0.0034610352013260126, + 0.00573675986379385, + 0.027745576575398445, + -6.378653779393062e-5, + -0.032801948487758636, + -0.01579936593770981, + -0.01897929236292839, + 0.027043700218200684, + -0.013142264448106289, + 0.019695492461323738, + 0.02893446758389473, + 0.00828643050044775, + 0.04918859526515007, + 0.027072349563241005, + 0.005067112855613232, + -0.0002270576951559633, + -0.03134090080857277, + 0.037127792835235596, + 0.01367225218564272, + 0.022259486839175224, + 0.0017000790685415268, + 0.000663379963953048, + -0.008701826445758343, + 0.059931591153144836, + -0.0005577405099757016, + -0.014853982254862785, + 0.019838731735944748, + -0.026470741257071495, + -0.010427867993712425, + -0.009153032675385475, + 0.0028809134382754564, + -0.009640048258006573, + 0.02818962000310421, + -0.005038464907556772, + -0.003530864603817463, + -0.014997221529483795, + -0.011867429129779339, + 0.0375288650393486, + -0.012060803361237049, + 0.007115444168448448, + -0.013335638679564, + -0.005317782983183861, + -0.0044547622092068195, + -0.006581875495612621, + 0.01110109593719244, + 0.014101971872150898, + -0.012204042635858059, + -0.005758245475590229, + -0.017661483958363533, + -0.032773297280073166, + 0.01760418899357319, + 0.010277465917170048, + 0.02092735469341278, + 0.017346356064081192, + 0.001182624720968306, + -0.015541533939540386, + -0.009482484310865402, + 0.03271600231528282, + 0.03598187491297722, + -0.00760604115203023, + 0.02011088840663433, + 0.015670450404286385, + -0.0025586234405636787, + 0.00321752717718482, + 0.013937246054410934, + 0.010384895838797092, + -0.0074771251529455185, + -0.024694565683603287, + 0.01414494402706623, + -0.03159873187541962, + 0.021557610481977463, + -0.007258683908730745, + 0.00825062021613121, + -0.0023240679875016212, + -0.02323351800441742, + -0.016587184742093086, + 0.02588345669209957, + -0.030997123569250107, + -0.019065236672759056, + -0.011516490951180458, + -0.0005004445556551218, + -0.03400516137480736, + -0.0021289037540555, + 0.04933183640241623, + 0.020655199885368347, + 0.008737636730074883, + -0.016372324898838997, + -0.011888914741575718, + -0.016157465055584908, + 0.02999444305896759, + -0.008630206808447838, + -0.0055541289038956165, + 0.00760604115203023, + -0.011767161078751087, + -0.016701776534318924, + -0.015928281471133232, + 0.0015460961731150746, + 0.025453737005591393, + 0.022116247564554214, + -0.0052855536341667175, + -0.026399120688438416, + -0.001709926757030189, + -0.029736611992120743, + -0.01267673447728157, + -0.0010599755914881825, + 0.006155736278742552, + 0.014954250305891037, + -0.011444871313869953, + 0.005224676802754402, + -0.008007112890481949, + -0.02404998615384102, + -0.0005948934121988714, + -0.014725065790116787, + 0.001063556526787579, + -0.01016287412494421, + -0.027143968269228935, + -0.011007989756762981, + 0.020726820454001427, + 0.027244236320257187, + 0.0005854932824149728, + -0.0460946150124073, + -0.0354948565363884, + 0.0187644325196743, + -0.0015219243941828609, + -0.011795809492468834, + -0.006288233678787947, + -0.019881704822182655, + 0.0011298049939796329, + 0.011910401284694672, + -0.0004955206532031298, + 0.016343677416443825, + -0.008372374810278416, + 0.00037980967317707837, + -0.009460997767746449, + -0.017503920942544937, + 0.012440389022231102, + -0.011430547572672367, + -0.028017733246088028, + -0.01632935367524624, + -0.005074274726212025, + -0.05503278598189354, + -0.01087191142141819, + 0.019810084253549576, + 0.03154143691062927, + -0.010742995887994766, + -0.01259079109877348, + 0.01642962172627449, + -0.0012238062918186188, + -0.0035022166557610035, + 0.010914883576333523, + -0.006119926460087299, + -0.022288134321570396, + -0.014166430570185184, + 0.027817197144031525, + 0.014094810001552105, + -0.0025836904533207417, + -0.00518886698409915, + 0.006144993472844362, + -0.0065317414700984955, + -0.023892423138022423, + -0.008701826445758343, + -0.00018442142754793167, + 0.018578220158815384, + -0.00772779481485486, + -0.004866577219218016, + 0.041940655559301376, + -0.03856019303202629, + 0.0013151217717677355, + -0.006757344119250774, + 0.013421582989394665, + 0.007548744790256023, + -0.009324920363724232, + -0.0233051385730505, + -0.010255980305373669, + 0.0063455295749008656, + 0.00037712391349487007, + 0.024665918201208115, + 0.011580949649214745, + 0.04291468486189842, + -0.003256918163970113, + 0.021185187622904778, + -0.004350913222879171, + -0.028519071638584137, + -0.011881752870976925, + -0.003378672059625387, + -0.017661483958363533, + 0.03016633167862892, + -0.0162147618830204, + 0.01405900064855814, + 0.009138708002865314, + 0.031283602118492126, + 0.0048021189868450165, + 0.03174196928739548, + -0.023176223039627075, + 0.00296148587949574, + 0.001097576110623777, + 0.004393885377794504, + -0.04047960788011551, + 9.808578761294484e-5, + -0.004827185999602079, + 0.06371312588453293, + 0.0005071589257568121, + 0.016830693930387497, + -0.008014274761080742, + -0.028590692207217216, + 0.02379215508699417, + 0.017862020060420036, + 0.016945285722613335, + 0.018506599590182304, + 0.0047698901034891605, + -0.014417099766433239, + -0.008143190294504166, + 0.00037824298487976193, + 0.02532482147216797, + -0.005919390823692083, + 0.03119765967130661, + 0.02022548019886017, + 0.010700023733079433, + 0.012941728346049786, + -0.0055541289038956165, + -0.0009847745532169938, + -0.01384414080530405, + 0.009217490442097187, + 0.006316881626844406, + -0.0039784894324839115, + 9.293810580857098e-5, + 0.01986737921833992, + -0.007906844839453697, + 0.00426855031400919, + -0.004873739089816809, + 0.004555030260235071, + 0.0016374115366488695, + 0.02811800129711628, + 0.011573787778615952, + -0.0049632638692855835, + 0.018334712833166122, + 0.008830741979181767, + -0.0006624847301281989, + -0.0048021189868450165, + 0.012103775516152382, + -0.0037922775372862816, + -0.008794932626187801, + 0.02277515083551407, + -0.026656953617930412, + 0.001446723472326994, + 0.017575541511178017, + 0.008028598502278328, + 0.024694565683603287, + -0.003856735536828637, + -0.009310596622526646, + -0.01933739148080349, + 0.0012497685384005308, + -0.022216515615582466, + -0.0066928863525390625, + -0.022932713851332664, + 0.03483595326542854, + 0.003548769513145089, + -0.013965894468128681, + 0.003233641618862748, + -0.011344603262841702, + -0.02510996162891388, + 0.028232593089342117, + -0.012332959100604057, + -0.03586728125810623, + -0.014581826515495777, + -0.0029399998020380735, + -0.012232691049575806, + -0.019423335790634155, + -0.021113567054271698, + 0.02864798903465271, + 0.011767161078751087, + 0.012683897279202938, + 0.007978464476764202, + 0.008880876004695892, + 0.00013898751058150083, + -0.006839707028120756, + 0.014223726466298103, + -0.003294518683105707, + 0.010356247425079346, + -0.02528185024857521, + -0.022116247564554214, + 0.0010537088382989168, + 0.009546942077577114, + 0.017733104526996613, + -0.006467283237725496, + -0.020956004038453102, + 0.01746094971895218, + 0.005790474824607372, + 0.00221305713057518, + -0.009611399844288826, + -0.013421582989394665, + 0.003820925485342741, + 0.0036365040577948093, + -0.005396564956754446, + -0.009181680157780647, + -0.021557610481977463, + -0.001744841574691236, + 0.040565550327301025, + 0.014187916181981564, + 0.0019444822100922465, + -0.014682093635201454, + -0.005521899554878473, + 0.010105578228831291, + 0.004042947199195623, + 0.02652803808450699, + -0.01926577277481556, + -0.006929232273250818, + -0.008236296474933624, + -0.019308743998408318, + -0.03432029113173485, + -0.013041996397078037, + 0.015426942147314548, + -0.011201363056898117, + 0.00019751445506699383, + 0.01883605308830738, + -0.0016042873030528426, + 0.006542484275996685, + 0.01165256928652525, + 0.01009125355631113, + -0.01685934141278267, + -0.00590506661683321, + 0.03073929063975811, + 0.011903239414095879, + 0.0426282063126564, + 0.0017878134967759252, + 0.010735834017395973, + 0.024594297632575035, + -0.015068842098116875, + -0.005256905686110258, + -0.013722386211156845, + 0.017260413616895676, + 0.0007470858399756253, + -0.021973006427288055, + 0.01423805020749569, + -0.004823605064302683, + 0.01873578503727913, + 0.011903239414095879, + 0.01628638058900833, + -0.04512058198451996, + 0.0001402184716425836, + -0.030653348192572594, + -0.0014485139399766922, + 0.010485163889825344, + -0.006624847184866667, + 0.018191473558545113, + 0.014187916181981564, + -0.015097489580512047, + 0.012433227151632309, + 0.012640925124287605, + -0.0013151217717677355, + -0.0012605114607140422, + 0.0006320462562143803, + 0.012898757122457027, + -0.011767161078751087, + -0.0017537940293550491, + 0.013579146936535835, + -0.001429713680408895, + -0.0010742995655164123, + -0.0057403407990932465, + -0.028733931481838226, + 0.04065149649977684, + 0.024809157475829124, + 0.0077994149178266525, + -0.034864600747823715, + -0.0009570218389853835, + 0.010478002019226551, + -0.012741193175315857, + -0.0400785356760025, + -0.015154785476624966, + -0.0038173445500433445, + 0.00341806304641068, + -0.00975464005023241, + 0.006116345524787903, + -0.01664448156952858, + 0.008880876004695892, + -0.005314202047884464, + 0.01979576051235199, + -0.0405941978096962, + -0.0001339517330052331, + 0.009568427689373493, + -0.018893348053097725, + -0.019065236672759056, + -0.0014100181870162487, + 0.013185236603021622, + 0.013715224340558052, + -0.007691984996199608, + -0.01717446930706501, + -0.003989232238382101, + 0.02022548019886017, + 0.014123458415269852, + -0.0028307794127613306, + -0.006155736278742552, + -0.016028549522161484, + 0.001387636992149055, + 0.01177432294934988, + 0.014187916181981564, + 0.017117172479629517, + -0.027430448681116104, + 0.018048232421278954, + 0.012913080863654613, + -0.012605114839971066, + 0.007426991127431393, + 0.04030771926045418, + -0.013550498522818089, + 0.00498474994674325, + 0.005672301631420851, + 0.012461874634027481, + 0.01368657685816288, + 0.026857489719986916, + -0.019179828464984894, + 0.014503044076263905, + -0.028103675693273544, + -0.0004559058870654553, + -0.023362435400485992, + -0.004207673482596874, + 0.028375832363963127, + -0.001565791666507721, + 0.02528185024857521, + 0.0016392021207138896, + 0.02482348121702671, + -0.014094810001552105, + -0.011272983625531197, + -0.008895200677216053, + 0.010413543321192265, + 0.014438586309552193, + 0.01647259294986725, + 0.010757319629192352, + 0.0007623050478287041, + 0.03205709904432297, + -0.000808410404715687, + 0.0246802419424057, + -0.001011632033623755, + 0.017690133303403854, + -0.009833421558141708, + 0.013471716083586216, + 0.00885222852230072, + -0.0027967598289251328, + 0.016229085624217987, + 0.012476199306547642, + -0.0013142264215275645, + 0.012841461226344109, + -0.009761801920831203, + -0.03437758609652519, + -0.010406381450593472, + -0.024236198514699936, + -0.00016886646335478872, + 0.026470741257071495, + -0.008057246915996075, + 0.005242581944912672, + -0.031140362843871117, + -0.00025939857005141675, + -0.003495054552331567, + -0.01296321488916874, + -0.022474346682429314, + -0.008365212939679623, + 0.013428744859993458, + 0.00036414279020391405, + -0.010134225711226463, + -0.007584555074572563, + 0.005396564956754446, + 0.015240729786455631, + -0.0032390132546424866, + 0.017346356064081192, + 0.0009758220985531807, + -0.024422410875558853, + -0.03953422233462334, + -0.01880740374326706, + 0.010528136044740677, + 0.019824407994747162, + -0.004547868389636278, + -0.0015335626667365432, + -0.0032801947090774775, + 0.0038818023167550564, + 0.00277527398429811, + 0.030681995674967766, + -0.009375054389238358, + -0.004633812233805656, + -0.0016033920692279935, + 0.013514688238501549, + -0.0011987392790615559, + 0.008723312057554722, + -0.001581906108185649, + -0.0032282702159136534, + -0.00038003348163329065, + 0.03669807314872742, + 0.021400047466158867, + 0.003480730578303337, + 0.0022076854947954416, + 0.014030352234840393, + -0.011795809492468834, + -0.025052666664123535, + -0.006563970353454351, + -0.0013240742264315486, + 0.0016562117962166667, + 0.011344603262841702, + 0.031283602118492126, + -0.02379215508699417, + -0.0011298049939796329, + -0.03718508780002594, + -0.004841510206460953, + -0.015985578298568726, + -0.014631960541009903, + -0.0029990863986313343, + 0.00900979246944189, + -0.005418051034212112, + 0.020956004038453102, + 0.013772520236670971, + -0.03586728125810623, + -0.000889430521056056, + 0.013450230471789837, + 0.018191473558545113, + -0.014323994517326355, + 0.003079658839851618, + -0.00014088991156313568, + 0.007763604633510113, + 0.022331107407808304, + -0.012247014790773392, + 0.008823580108582973, + -0.0012282824609428644, + -0.018993616104125977, + -0.02429349347949028, + -0.01165256928652525, + -0.03558080270886421, + -0.00816467683762312, + -0.009396540001034737, + 0.002426126506179571, + 0.013113616965711117, + 0.014152105897665024, + 0.005443117581307888, + -0.037099145352840424, + -0.009589914232492447, + 0.010220170021057129, + 0.010614079423248768, + 0.013235370628535748, + 0.007258683908730745, + 0.020597903057932854, + -0.030481459572911263, + 0.01508316583931446, + -0.02821826934814453, + -0.0024655174929648638, + -0.018320389091968536, + 0.028017733246088028, + 0.012325797230005264, + 0.019237123429775238, + -0.02970796450972557, + 0.011745675466954708, + -0.018363360315561295, + -0.0007506668334826827, + 0.01161675900220871, + -0.02372053451836109, + -0.014853982254862785, + 0.019638195633888245, + 0.017217440530657768, + -0.018406333401799202, + 0.0047949571162462234, + -0.00590506661683321, + 0.01259079109877348, + 0.031226307153701782, + 0.004726917948573828, + 0.010062606073915958, + -0.026112642139196396, + 0.011502167209982872, + 0.006889841053634882, + -0.020354395732283592, + -0.02011088840663433, + 0.0030904016457498074, + -0.009432350285351276, + 0.0019516441971063614, + -0.009145869873464108, + 0.01948063261806965, + 0.023419730365276337, + 0.003072496736422181, + 0.020941680297255516, + 0.0006181698990985751, + 0.039362337440252304, + -0.007706308737397194, + 0.01625773310661316, + -0.031885210424661636, + -0.0033464431762695312, + -0.007820900529623032, + 0.027673956006765366, + -0.03483595326542854, + 0.018635516986250877, + -0.01986737921833992, + -0.02751639299094677, + -0.04165417328476906, + 0.007899682968854904, + 0.0012569305254146457, + -0.0013070644345134497, + 0.014725065790116787, + 0.007777928840368986, + -0.021657878533005714, + 0.015025869943201542, + -0.02539644204080105, + -0.02078411541879177, + 0.025983724743127823, + -0.0015872776275500655, + 0.001905091223306954, + -0.022402726113796234, + 0.030796587467193604, + 0.010055444203317165, + -0.022603262215852737, + -0.011960535310208797, + 0.01168837957084179, + -0.007720632944256067, + 0.018606867641210556, + 0.020941680297255516, + -0.03102577105164528, + -0.010435029864311218, + 0.0002148599160136655, + -0.002442240947857499, + -0.005013397894799709, + -0.013729548081755638, + -0.019996296614408493, + 0.010556783527135849, + 0.006635590456426144, + -0.020669523626565933, + -0.0022327525075525045, + 0.012991862371563911, + -0.010449353605508804, + -0.0010948902927339077, + 0.0036006940063089132, + 0.022574614733457565, + 0.028175296261906624, + 0.010965017601847649, + 0.00903127808123827, + 0.019222799688577652, + -0.013292666524648666, + 0.0034341777209192514, + 0.004071595147252083, + -0.0136149562895298, + 0.012189718894660473, + 0.0037063334602862597, + 0.017475273460149765, + 0.021013299003243446, + -0.004322265274822712, + -0.02354864589869976, + 0.0026660533621907234, + 0.023319462314248085, + -0.021256808191537857, + -0.005156638100743294, + -0.02160058356821537, + -0.036841314285993576, + 0.003906869329512119, + 0.016071520745754242, + -0.02475186251103878, + -0.004501315299421549, + 0.015942605212330818, + -0.016802044585347176, + 0.00023992689966689795, + -0.004526382312178612, + 0.011265821754932404, + -0.0014082277193665504, + 0.007849548943340778, + -0.018964968621730804, + -0.028605015948414803, + 0.001039384864270687, + 0.0007649908075109124, + 0.005822703707963228, + -0.010406381450593472, + -0.0028218268416821957, + -0.026585333049297333, + -0.017976611852645874, + -0.0006181698990985751, + -0.010392057709395885, + 0.019093884155154228, + 0.0063455295749008656, + -0.0001469328417442739, + -0.007283750921487808, + -0.0010411753319203854, + -0.005926552694290876, + -0.02008223906159401, + -0.00148074293974787, + 0.013937246054410934, + -0.0006481607560999691, + 0.006614104378968477, + -0.004186187405139208, + -0.01508316583931446, + 0.0030689158011227846, + -0.003702752524986863, + -0.008802094496786594, + 0.007820900529623032, + -0.01476803794503212, + 0.027258560061454773, + -0.025869132950901985, + 0.08806391805410385, + 0.0005067113088443875, + 0.0009856699034571648, + 0.0035111689940094948, + 0.00532852578908205, + -0.03271600231528282, + 0.007856710813939571, + 0.02744477242231369, + 0.002170085208490491, + -0.013736710883677006, + -0.008780608884990215, + -0.01255498081445694, + 0.01018435973674059, + 0.020497635006904602, + 0.0035595125518739223, + -0.004261388443410397, + -0.0005944457370787859, + 0.010778805240988731, + -0.002363458974286914, + 0.041339047253131866, + 0.011337441392242908, + -0.015598829835653305, + -0.015169110149145126, + -0.006653495132923126, + -0.004852253012359142, + 0.012247014790773392, + -0.011480681598186493, + 0.01753256842494011, + 0.020024944096803665, + 0.03901856020092964, + 0.02903473563492298, + 0.007101119961589575, + -0.014481558464467525, + -0.027172617614269257, + -0.013600632548332214, + 0.023534322157502174, + 0.02061222679913044, + 0.008207648992538452, + -0.005776150617748499, + 0.011201363056898117, + 0.02319054678082466, + -0.008465480990707874, + 0.0389612652361393, + 0.02400701493024826, + -0.01324253249913454, + -0.016988256946206093, + -0.004880900960415602, + -0.010413543321192265, + 0.037729401141405106, + -0.013543336652219296, + -0.017790401354432106, + -0.024565650150179863, + 0.006123507395386696, + 0.013013348914682865, + -0.006581875495612621, + -0.01345739234238863, + 0.0016293543158099055, + -0.005958781577646732, + -0.008229134604334831, + 0.01196769718080759, + -0.0044941529631614685, + -0.01140189915895462, + 0.00016080921341199428, + -0.020024944096803665, + -0.000868392176926136, + 0.007305236998945475, + 0.0030474297236651182, + -0.004472667351365089, + -0.006420730613172054, + -0.012232691049575806, + 0.00019561203953344375, + -0.005224676802754402, + -0.0031960410997271538, + -0.017618512734770775, + -0.009024116210639477, + 0.0001847571402322501, + 0.007742119021713734, + 0.021156540140509605, + 0.015942605212330818, + 0.017117172479629517, + 0.026685601100325584, + -0.0019767112098634243, + -0.0033643480855971575, + 0.0010178987868130207, + -0.01929442025721073, + 0.013636442832648754, + 0.00024261264479719102, + -0.017303384840488434, + 0.02251731976866722, + -0.014667769894003868, + -0.014130620285868645, + 0.021557610481977463, + 0.0016024968354031444, + -0.0047698901034891605, + 0.00085451576160267, + 0.008343726396560669, + -0.014682093635201454, + -0.021013299003243446, + 0.0007238093530759215, + -0.0018674907041713595, + 0.01834903657436371, + 0.005758245475590229, + -0.0005281972698867321, + -0.010263142175972462, + -0.012017831206321716, + 0.006313300225883722, + 0.007527259178459644, + -0.004726917948573828, + -0.014753714203834534, + 5.410665107774548e-5, + -0.02847610041499138, + -0.002816455438733101, + -0.015097489580512047, + -0.00359353213571012, + -0.003949841484427452, + 0.028375832363963127, + 0.006162898615002632, + 0.004580097272992134, + -0.019537927582859993, + -0.02372053451836109, + -0.005367917008697987, + -0.003734981408342719, + -0.02496672235429287, + -0.014939925633370876, + 0.02138572372496128, + 0.007144092116504908, + -0.019910352304577827, + -0.010635565966367722, + -0.0008795827743597329, + -0.015154785476624966, + 0.004691108129918575, + 0.015383969992399216, + 0.01529802568256855, + -0.026542361825704575, + -0.019179828464984894, + 0.002245286013931036, + 0.018750108778476715, + 0.009761801920831203, + 0.004705431871116161, + -0.00971882976591587, + 0.022818122059106827, + -0.0016311447834596038, + 0.0020125212613493204, + 0.03028092347085476, + 0.01253349520266056, + 0.0007869244436733425, + -0.017819048836827278, + -0.016443945467472076, + 0.019136855378746986, + -0.000787372060585767, + 0.010420706123113632, + -0.02344837784767151, + 0.0022918391041457653, + 0.003462825668975711, + 0.004880900960415602, + 0.02369188703596592, + -0.011974859051406384, + 0.006535322405397892, + -0.014997221529483795, + 0.005897904746234417, + 0.011466356925666332, + 0.02217354252934456, + -0.015842337161302567, + 0.003623970551416278, + -0.013020510785281658, + -0.0026911203749477863, + 0.010177197866141796, + 0.0067251152358949184, + 0.01905091293156147, + -0.00947532244026661, + -0.000650398840662092, + 0.0073553710244596004, + 0.009274786338210106, + -0.022044626995921135, + -0.0034234346821904182, + 0.010936369188129902, + -0.0047627282328903675, + 0.01386562641710043, + -0.00231153448112309, + 0.019981971010565758, + 0.0034252251498401165, + -0.015570181421935558, + 0.0110652856528759, + -0.0032085746061056852, + 0.0038746404461562634, + -0.03721373528242111, + 0.02217354252934456, + -0.0011862057726830244, + -0.01948063261806965, + 0.004318684339523315, + -0.006026820745319128, + 0.015942605212330818, + 0.0022434955462813377, + -5.919838076806627e-5, + -0.011881752870976925, + -0.023290814831852913, + 0.01028462778776884, + 0.01933739148080349, + 0.0012408159673213959, + -0.00918884202837944, + -0.020698171108961105, + -0.0005505785229615867, + 0.014488720335066319, + -0.008415346965193748, + 0.004877320025116205, + -0.006227356381714344, + -0.02039736695587635, + -0.016085846349596977, + 4.1894886635418516e-6, + -0.023820802569389343, + -0.023319462314248085, + -0.019881704822182655, + -0.00010480015771463513, + -0.000591312360484153, + -0.006775249261409044, + 0.028991764411330223, + -0.004315103404223919, + 0.015584506094455719, + 0.0035075880587100983, + 0.00844399444758892, + 0.011201363056898117, + 0.0019337391713634133, + -0.0233051385730505, + 0.007258683908730745, + -0.0059086475521326065, + 0.002458355389535427, + 0.011480681598186493, + 0.003709914395585656, + 0.0055935196578502655, + -0.022603262215852737, + 0.03930503875017166, + 0.015985578298568726, + -0.01274835504591465, + 0.01717446930706501, + 0.0018746526911854744, + 0.022331107407808304, + 0.0036991715896874666, + -0.0019283677684143186, + -0.001097576110623777, + -0.011151229031383991, + -0.014696418307721615, + -0.0018674907041713595, + -0.023391082882881165, + -0.002721558790653944, + 0.00024596982984803617, + -0.021256808191537857, + 0.008830741979181767, + -0.018535248935222626, + -0.007158416323363781, + -2.8270305847399868e-5, + -0.008336564525961876, + -0.001539829419925809, + -0.012941728346049786, + 0.01869281195104122, + 0.00825062021613121, + 0.0028468938544392586, + -0.001284683239646256, + 0.014016028493642807, + 2.5626521164667793e-5, + -0.016486916691064835, + -0.017890669405460358, + -0.0057403407990932465, + 0.011910401284694672, + -0.004161120392382145, + -0.0022596099879592657, + 0.025024017319083214, + -0.020340071991086006, + 0.023806478828191757, + -0.007742119021713734, + 0.003623970551416278, + -0.004895225167274475, + 0.0022094761952757835, + 0.009876393713057041, + -0.01034192368388176, + 0.003215736709535122, + 0.02648506499826908, + -0.007555907126516104, + -0.0121610714122653, + 0.002076979260891676, + -0.012777002528309822, + -0.002621290972456336, + -0.015570181421935558, + 0.0006951613468118012, + -0.013077806681394577, + 0.0026320340111851692, + -0.023032981902360916, + -0.012934566475450993, + 0.018105529248714447, + 0.002526394557207823, + 0.01218255702406168, + 0.00941802654415369, + -0.006750182248651981, + 0.00037958583561703563, + -0.00847980473190546, + -0.00014133754302747548, + -0.001054604072123766, + -0.020268451422452927, + -0.0057081119157373905, + 0.01418075431138277, + 0.009675858542323112, + 0.009468160569667816, + -0.006982947234064341, + -0.008601558394730091, + -0.011953373439610004, + 0.012984700500965118, + 0.0005308830295689404, + 0.029937148094177246, + 0.006187965627759695, + -0.026785869151353836, + 0.004598001949489117, + -0.012418903410434723, + 0.009016954340040684, + -0.015183433890342712, + -0.004404628183692694, + -0.026957757771015167, + -0.004934615921229124, + 0.024092957377433777, + 0.03371868282556534, + -0.004264969378709793, + -0.010771643370389938, + -0.007326723076403141, + -0.011853105388581753, + 0.006427892483770847, + 0.015154785476624966, + 0.01255498081445694, + -0.0106570515781641, + 0.01678772084414959, + 0.0002248195669380948, + 0.013629280030727386, + 0.0004286007606424391, + 0.006574713159352541, + -0.008931010030210018, + -0.02263191156089306, + -0.0017466320423409343, + -0.009482484310865402, + 0.018549572676420212, + -0.014667769894003868, + -0.0040536904707551, + -0.011867429129779339, + 0.00535717373713851, + -0.026757221668958664, + -0.011495005339384079, + -0.008472642861306667, + 0.008257783018052578, + -0.006957880221307278, + 0.011466356925666332, + -0.011487843468785286, + 0.0036544089671224356, + -0.0016732215881347656, + 0.0038137633819133043, + 0.00885222852230072, + -0.01827741600573063, + 0.0011593482922762632, + -0.015742069110274315, + -0.014531692489981651, + 0.0023437635973095894, + 0.023362435400485992, + 0.0026087574660778046, + 0.023734858259558678, + -0.002569366479292512, + 0.0019015102880075574, + 0.02634182572364807, + -0.014796686358749866, + -0.02150031551718712, + 0.009797612205147743, + 0.006123507395386696, + 0.003906869329512119, + -0.008608720265328884, + -0.009697344154119492, + 0.010506649501621723, + 0.0054323747754096985, + -0.007956978864967823, + -0.020311424508690834, + -0.008207648992538452, + -0.018463628366589546, + 0.013385772705078125, + -0.0068468693643808365, + 0.010177197866141796, + -0.017647160217165947, + 0.004866577219218016, + 0.0007247045869007707, + -0.008386698551476002, + -0.011609597131609917, + -0.007247941102832556, + 0.016200438141822815, + 0.008558586239814758, + 0.019093884155154228, + 0.015570181421935558, + -0.019079560413956642, + -0.004734080284833908, + -0.00555054796859622, + 0.0073625328950583935, + 0.001607868354767561, + -0.0017985565355047584, + -0.010270304046571255, + -0.00461232615634799, + -0.021571936085820198, + 0.027845844626426697, + -0.0032980996184051037, + -0.00664991419762373, + -0.006746601313352585, + -0.021729499101638794, + 0.0010859378380700946, + -0.009625724516808987, + -0.0003657094785012305, + -0.026828840374946594, + 0.0010868330718949437, + 0.005826284643262625, + 0.01989602856338024, + -0.008401022292673588, + 0.00231511564925313, + -0.011115419678390026, + -0.007749280892312527, + 0.0017851277953013778, + 0.012153909541666508, + 0.025367794558405876, + 0.0009167356183752418, + -0.007434152998030186, + 0.00248700357042253, + 0.009160194545984268, + 0.018334712833166122, + -0.004096662160009146, + -0.0015926491469144821, + 0.003795858472585678, + 0.007663337048143148, + -0.0022058950271457434, + 0.024766186252236366, + -0.00030393723864108324, + 0.004569354001432657, + 0.008143190294504166, + -8.717493619769812e-5, + -0.019165504723787308, + -0.01724608987569809, + -0.016243409365415573, + -0.025052666664123535, + -0.0035702555906027555, + 0.023706210777163506, + -0.019781436771154404, + 0.007871034555137157, + 0.023949718102812767, + -0.010112740099430084, + -0.00031714217038825154, + -0.008121704682707787, + 0.001888976781629026, + 0.010599755682051182, + 0.02624155767261982, + 0.0036526184994727373, + 0.02744477242231369, + -0.009145869873464108, + -0.0038961265236139297, + -0.006556808482855558, + -0.0029077709186822176, + 0.0027161873877048492, + -0.013679414056241512, + -0.009955176152288914, + -0.014531692489981651, + 0.011896077543497086, + -0.031226307153701782, + 0.012447550892829895, + -0.015283701941370964, + 0.013851302675902843, + 0.004397466313093901, + 0.01234012097120285, + -0.01693096198141575, + -0.0034431300591677427, + 0.019924676045775414, + 0.017217440530657768, + 0.016558537259697914, + -0.005342849995940924, + 0.006116345524787903, + 0.001173672266304493, + 0.04168282449245453, + 0.020956004038453102, + 0.006420730613172054, + 0.021944358944892883, + 0.029292568564414978, + -0.0001124097834690474, + 0.005772569682449102, + -0.010972179472446442, + -0.013099292293190956, + -0.00835805106908083, + 0.009210328571498394, + -0.015813689678907394, + -0.003247965592890978, + 0.018850376829504967, + -0.000651294132694602, + 0.014087648130953312, + 0.021185187622904778, + 0.011874591000378132, + -0.03658347949385643, + -0.008307917043566704, + -0.0071691591292619705, + 0.02018250711262226, + 0.01221836730837822, + -0.006918489001691341, + 0.00359353213571012, + 0.00754158291965723, + 0.011509329080581665, + 0.016773397102952003, + -0.00268753943964839, + 0.02326216734945774, + 0.006939975079149008, + 0.007305236998945475, + 0.0011181668378412724, + 0.0013240742264315486, + 0.014796686358749866, + -0.013235370628535748, + -0.0029489523731172085, + 0.014288184233009815, + 0.0016293543158099055, + 0.03466406464576721, + 0.004057271406054497, + -0.014187916181981564, + 0.01678772084414959, + 0.0054001458920538425, + 0.007548744790256023, + 0.008680340833961964, + -0.006066211499273777, + 0.017890669405460358, + 0.004121729172766209, + -0.018033908680081367, + -0.014825333841145039, + -0.0065317414700984955, + 0.01748959720134735, + 0.022044626995921135, + -0.0027287208940833807, + 0.03028092347085476, + -0.003113678190857172, + -0.008630206808447838, + -0.009153032675385475, + -0.019323067739605904, + 0.01110109593719244, + 0.001351826940663159, + -0.013020510785281658, + 0.01075015775859356, + 0.017403652891516685, + 0.0144314244389534, + 0.021414371207356453, + 0.011795809492468834, + -0.023462701588869095, + -0.008193324320018291, + 0.011588111519813538, + 0.009303433820605278, + -0.03013768419623375, + -0.0058692567981779575, + 0.0055791959166526794, + 0.002048331080004573, + -0.00025335565442219377, + -0.010757319629192352, + -0.0005501309060491621, + -0.0014028562000021338, + 0.0010913093574345112, + 0.02982255630195141, + 0.014624797739088535, + 0.007785090710967779, + -0.014409937895834446, + -0.005031303036957979, + -0.003190669696778059, + -0.002193361520767212, + 0.012089450843632221, + 0.0036812664475291967, + -0.010413543321192265, + -0.02304730750620365, + 0.015785042196512222, + -0.011874591000378132, + 0.00019952876027673483, + 0.016529889777302742, + 0.007620364893227816, + 0.010778805240988731, + -0.022116247564554214, + 0.007591716945171356, + -0.01767580956220627, + -0.022760827094316483, + 0.00019661920669022948, + -0.004429695196449757, + 0.0019498537294566631, + -0.020884383469820023, + -0.012275663204491138, + -0.0021754566114395857, + 0.002508489415049553, + -0.0018657002365216613, + 0.008837904781103134, + -0.015785042196512222, + -0.01163108367472887, + -0.003495054552331567, + -0.001649945043027401, + -0.0036651520058512688, + 0.019824407994747162, + 0.02056925557553768, + -0.008981144055724144, + 0.028490424156188965, + -0.011007989756762981, + 0.004418952390551567, + 0.031856562942266464, + -0.0020859315991401672, + -0.006424311548471451, + 0.003659780602902174, + -8.471299952361733e-5, + -0.024565650150179863, + -0.014030352234840393, + 0.0010742995655164123, + 0.01249768491834402, + 0.007505773101001978, + -0.0014601522125303745, + 0.006324043497443199, + -0.006359853316098452, + 0.00403578532859683, + -0.011007989756762981, + 0.0031870887614786625, + -0.006990109104663134, + -0.006610523443669081, + -0.0018495857948437333, + 0.015928281471133232, + -0.005919390823692083, + 0.021400047466158867, + -0.023362435400485992, + 0.024207551032304764, + -0.006589037366211414, + 0.020440340042114258, + 0.008329402655363083, + -0.00250132754445076, + 0.027860168367624283, + 0.013514688238501549, + 0.01249768491834402, + -0.0006597989704459906, + -0.00918884202837944, + -0.01165256928652525, + -0.0010922045912593603, + 0.019065236672759056, + -0.006950718350708485, + 0.009990985505282879, + 0.0024225455708801746, + -0.017203116789460182, + 0.0016642691334709525, + -0.013256856240332127, + 0.021614907309412956, + -0.016902312636375427, + 0.008723312057554722, + 0.0074914488941431046, + -0.021242482587695122, + 0.018778756260871887, + -0.0074842870235443115, + -0.015154785476624966, + 0.005145894829183817, + 0.005955200642347336, + -0.002168294508010149, + 0.019136855378746986, + -0.002519232453778386, + -0.0013178074732422829, + 0.015426942147314548, + -0.008938172832131386, + 0.030051739886403084, + -0.007763604633510113, + 0.010735834017395973, + 0.019666843116283417, + -0.014667769894003868, + 0.015613153576850891, + -0.0012059012660756707, + 0.023749182000756264, + 0.011230011470615864, + -0.006388501264154911, + -0.016615834087133408, + -0.004519219975918531, + -0.0044547622092068195, + -0.010936369188129902, + -0.00551473768427968, + 0.02217354252934456, + 0.004347332287579775, + -0.008186162449419498, + -0.008114542812108994, + 0.01859254390001297, + -0.006900584325194359, + -0.010363410227000713, + 0.023434054106473923, + -0.010026795789599419, + 0.025052666664123535, + -0.013786843977868557, + -0.011251497082412243, + -0.0017627464840188622, + -0.02450835332274437, + -0.0030008768662810326, + 0.0099694998934865, + 0.0025317659601569176, + -0.012032154947519302, + -1.2498524483817164e-5, + 0.0002457460213918239, + 0.007871034555137157, + -0.020383043214678764, + -0.01933739148080349, + -0.016529889777302742, + -0.02184409089386463, + -0.003473568707704544, + -0.02924959547817707, + -0.030338220298290253, + 0.013335638679564, + -0.004264969378709793, + -0.0016812788089737296, + -0.002725139958783984, + -0.017804725095629692, + 0.002193361520767212, + -0.015255053527653217, + 0.010735834017395973, + -0.003444920526817441, + -0.006696467287838459, + 0.0011647198116406798, + -0.002866589231416583, + 0.015197757631540298, + 0.001419865875504911, + 0.01196769718080759, + -0.023075954988598824, + 0.020956004038453102, + -0.0073553710244596004, + 0.01234012097120285, + 0.005149475764483213, + -0.003174555255100131, + -0.02797476015985012, + 0.007434152998030186, + -0.000325199420331046, + -0.023878097534179688, + 0.017804725095629692, + 0.017833372578024864, + -0.005371497943997383, + 0.0157563928514719, + 0.0033321192022413015, + 0.0012282824609428644, + -0.027029376477003098, + -0.006549646146595478, + 0.01813417673110962, + -0.004476248286664486, + 0.01145919505506754, + 0.019566576927900314, + -0.023319462314248085, + 0.0018621193012222648, + 0.01221836730837822, + -0.005224676802754402, + -0.024121606722474098, + 0.0013536174083128572, + 0.00018408570031169802, + -0.005926552694290876, + 0.02022548019886017, + -0.021443018689751625, + -0.023648913949728012, + -0.009697344154119492, + -0.009503969922661781, + 0.022402726113796234, + -0.029765259474515915, + -0.01587098464369774, + -0.01421656459569931, + 0.0012390254996716976, + 0.008393860422074795, + -0.007097539026290178, + -0.007058148272335529, + 0.005192447919398546, + 0.019781436771154404, + 0.0012023202143609524, + 0.0047627282328903675, + 0.008623044937849045, + 0.0016562117962166667, + 0.006309719290584326, + 0.021256808191537857, + 0.017862020060420036, + -0.023204870522022247, + 0.010628404095768929, + 0.010950693860650063, + -0.003419853514060378, + 0.014245212078094482, + -0.003299890086054802, + -0.0024529839865863323, + -0.009511131793260574, + 0.025267526507377625, + 0.0008840590016916394, + -0.0032873565796762705, + 0.01271254476159811, + -0.01589963398873806, + 0.011251497082412243, + 0.004168282262980938, + -0.001243501785211265, + 0.0062595852650702, + 0.01635800115764141, + 0.032630059868097305, + -0.0005671406397596002, + -0.0013115407200530171, + -0.04950372502207756, + -0.010105578228831291, + -0.020211156457662582, + 0.0016293543158099055, + -0.0024064311292022467, + 0.011709865182638168, + -0.0010304322931915522, + 0.021700851619243622, + 0.004175444133579731, + 0.0005935505032539368, + -0.008064408786594868, + 0.013170912861824036, + 0.014911278150975704, + 0.006044725421816111, + 0.013428744859993458, + -0.006087697576731443, + -0.013629280030727386, + -0.0034323870204389095, + 0.0060948594473302364, + -0.0032032032031565905, + -0.02460862137377262, + -0.023749182000756264, + -0.006567551288753748, + 0.0224886704236269, + -0.02939283661544323, + 0.015383969992399216, + -0.00702950032427907, + -0.02092735469341278, + -0.00010032391583081335, + -0.004927454050630331, + -0.00517096184194088, + 0.005657977890223265, + -0.0024780509993433952, + 0.011072447523474693, + -0.007921168580651283, + -0.017819048836827278, + -0.006141412537544966, + 0.008214810863137245, + 0.0020895127672702074, + -0.013722386211156845, + 0.01635800115764141, + 0.0048092808574438095, + -0.03194250538945198, + 0.009145869873464108, + 0.012999025173485279, + -0.01741797663271427, + -0.006524579133838415, + -0.003004457801580429, + -0.01572774536907673, + 0.01421656459569931, + 0.0030581727623939514, + 0.01902226358652115, + -0.010270304046571255, + -0.012461874634027481, + -0.01717446930706501, + 0.015770718455314636, + 0.0070115951821208, + 0.007276589050889015, + 0.010406381450593472, + -0.027401801198720932, + 0.014825333841145039, + 0.015813689678907394, + -0.009640048258006573, + -0.002918513724580407, + -0.007108282297849655, + -0.005453860852867365, + -0.013256856240332127, + -0.015383969992399216, + 0.012934566475450993, + 0.002390316454693675, + -0.002664262894541025, + 0.014209401793777943, + -0.008221972733736038, + 0.010370572097599506, + -0.012039316818118095, + -0.010857587680220604, + 0.003439549123868346, + 0.00019505251839291304, + 0.0068540312349796295, + 0.009518294595181942, + 0.008315078914165497, + 0.0055612907744944096, + 0.021256808191537857, + 0.00760604115203023, + -0.007828062400221825, + -0.013170912861824036, + -0.016515566036105156, + -0.018105529248714447, + -0.0028880753088742495, + -0.003038477385416627, + 0.004211254417896271, + 0.0005514737567864358, + 0.01905091293156147, + -0.013364286161959171, + 0.0022166380658745766, + -0.00754158291965723, + 0.004196930211037397, + 0.009697344154119492, + -0.0002616367128212005, + 0.0006750182365067303, + 0.020268451422452927, + 0.009396540001034737, + -0.02383512631058693, + -0.0013554079923778772, + 0.007591716945171356, + -0.029306892305612564, + -0.01177432294934988, + 0.009905042126774788, + 0.014030352234840393, + 0.003333909669891, + 0.01791931688785553, + -0.01611449383199215, + -0.002168294508010149, + -0.0020214735995978117, + 0.02999444305896759, + 0.006828964222222567, + -0.0007864768267609179, + 0.00571885472163558, + 0.0023509254679083824, + 0.0067072100937366486, + 0.0002054597862297669, + -0.011301631107926369, + -0.005056370049715042, + -0.009425188414752483, + -0.028275564312934875, + -0.00787819642573595, + -0.008594396524131298, + 0.0017806515097618103, + -0.01628638058900833, + -0.018291739746928215, + 0.003931936342269182, + 0.001013422617688775, + -0.0268718134611845, + 0.007928330451250076, + 0.01290591899305582, + -0.0008764493977651, + 0.004726917948573828, + -0.009797612205147743, + -0.012898757122457027, + 0.01741797663271427, + 0.009238976053893566, + 0.015054518356919289, + -0.0040107183158397675, + 0.02496672235429287, + -0.009052764624357224, + -0.038617487996816635, + 0.0011924725258722901, + -0.008572910912334919, + 0.002517441986128688, + -0.01599990203976631, + 0.024522678926587105, + -0.013794006779789925, + -0.01707420125603676, + -0.0009883556049317122, + -0.00461232615634799, + -0.003344652708619833, + 0.014710742048919201, + -0.0008097533136606216, + 0.006897003389894962, + -0.013321314938366413, + 0.002170085208490491, + -0.014166430570185184, + 0.001147710019722581, + -0.0025514615699648857, + -0.006076954770833254, + 0.001251559006050229, + -0.0019516441971063614, + 0.010893397964537144, + 0.020526284351944923, + 0.0017528987955302, + 0.008279268629848957, + 0.0007121710805222392, + 0.006234518252313137, + 0.004744823090732098, + -0.014488720335066319, + -0.014739390462636948, + -0.00444401940330863, + -0.031283602118492126, + 0.00497400714084506, + -0.012999025173485279, + 0.03013768419623375, + -0.010270304046571255, + 0.013693738728761673, + 0.002338391961529851, + 0.00844399444758892, + -0.02354864589869976, + -0.0054323747754096985, + -0.0042864554561674595, + 0.0182057972997427, + -0.013192398473620415, + 0.0004807490622624755, + 0.012812812812626362, + 0.022187866270542145, + 0.01950928010046482, + -0.0014350851997733116, + -0.009124384261667728, + -0.003419853514060378, + 0.008766284212470055, + -0.01437412854284048, + 0.0021754566114395857, + 0.010427867993712425, + 0.00040621953667141497, + 0.009432350285351276, + 0.006563970353454351, + -0.0015881728613749146, + 0.0005568452761508524, + -0.0005805693799629807, + -0.006288233678787947, + 0.016415297985076904, + -0.03220034018158913, + 0.015441265888512135, + -0.0015702678356319666, + -0.002918513724580407, + -0.006273909471929073, + 0.007742119021713734, + -0.00031535167363472283, + -0.012404578737914562, + -0.008608720265328884, + 0.01809120550751686, + 0.014152105897665024, + -0.006012496538460255, + -0.009690182283520699, + 0.018148500472307205, + 0.0007430571713484824, + 0.0008621254237368703, + -0.002417173935100436, + -0.01791931688785553, + 0.0027860167901962996, + 0.025224553421139717, + 0.007319561205804348, + -0.01688798889517784, + -0.013443068601191044, + -0.0065317414700984955, + 0.02181544341146946, + 0.016400974243879318, + 0.00478779524564743, + 0.014653446152806282, + 0.02489510178565979, + -3.127778472844511e-5, + 0.03566674515604973, + -0.010435029864311218, + -0.003924774471670389, + -0.012705382890999317, + 0.01168837957084179, + -0.009518294595181942, + -0.005181705113500357, + -0.02015385963022709, + -0.016200438141822815, + 0.006520998198539019, + 4.3083888158435e-5, + 0.007656174711883068, + 0.0006938184960745275, + -0.030624698847532272, + -0.005074274726212025, + -0.021629231050610542, + 0.011731350794434547, + 0.008909524418413639, + 0.021571936085820198, + -0.0015111813554540277, + 0.01304915826767683, + 0.0031530691776424646, + 0.004694689065217972, + -0.01572774536907673, + -0.017375005409121513, + 0.019910352304577827, + -0.017962288111448288, + 0.014954250305891037, + -0.007061729207634926, + -0.008966820314526558, + -0.001276626018807292, + 0.013922922313213348, + 0.004247064236551523, + -0.0068540312349796295, + 0.002093093702569604, + -0.018048232421278954, + 0.021629231050610542, + 0.013364286161959171, + 0.020440340042114258, + -0.02241705171763897, + 0.039075855165719986, + 0.02008223906159401, + -0.008336564525961876, + 0.006857612170279026, + 0.0020125212613493204, + -0.004991911817342043, + -0.009217490442097187, + 0.012741193175315857, + 0.0037922775372862816, + 0.001980292145162821, + 0.006076954770833254, + -0.015613153576850891, + 0.009138708002865314, + -0.0038424113299697638, + -0.0025407185312360525, + -0.0030062482692301273, + 0.006682143080979586, + -0.01237593125551939, + -0.004039366263896227, + 0.013643604703247547, + -0.018678488209843636, + 0.012898757122457027, + -0.013185236603021622, + -0.025625625625252724, + -0.0019534346647560596, + -0.0006687514833174646, + -0.0036741045769304037, + 0.0013688367325812578, + -0.0040107183158397675, + -0.012354444712400436, + -0.01989602856338024, + -0.0058943238109350204, + 0.02107059583067894, + 0.0288628488779068, + -0.0028361508157104254, + 0.011523653753101826, + -0.003914031200110912, + -0.0024529839865863323, + 0.02160058356821537, + 0.011387575417757034, + -0.0006226461264304817, + 0.003154859645292163, + 0.007319561205804348, + 0.0006248842692002654, + 0.0028630082961171865, + 0.009819097816944122, + -0.010241655632853508, + 0.011946211569011211, + 0.006044725421816111, + -0.008143190294504166, + 0.012110937386751175, + -0.03437758609652519, + -0.011516490951180458, + 0.0157563928514719, + -0.0070080142468214035, + -0.0034986354876309633, + 0.017346356064081192, + 0.01159527339041233, + -0.00012052298552589491, + -0.006864774040877819, + 0.010635565966367722, + -0.02128545567393303, + 0.010248817503452301, + -0.002517441986128688, + 0.01940901204943657, + 0.012605114839971066, + -0.023290814831852913, + 0.03540891408920288, + -0.027186941355466843, + 0.006939975079149008, + 0.015426942147314548, + -0.009110060520470142, + -0.02145734243094921, + 0.021056272089481354, + -0.005983848590403795, + -0.006302557419985533, + -0.03520837798714638, + 0.012168233282864094, + 0.00041494821198284626, + 0.02390674687922001, + 0.00938221625983715, + 0.012039316818118095, + 0.03105441853404045, + 0.0015514675760641694, + 0.001539829419925809, + 0.0023598780389875174, + 0.0019122532103210688, + -0.010427867993712425, + 0.019924676045775414, + 0.005815541837364435, + -0.005342849995940924, + -0.00844399444758892, + 0.011982020922005177, + 0.009804774075746536, + 0.006936394143849611, + -0.014352641999721527, + -0.006528160534799099, + 0.013643604703247547, + 0.055691689252853394, + -0.002145018195733428, + 0.0003010276996064931, + -0.008171838708221912, + 0.003541607642546296, + -0.006606942508369684, + 0.02347702719271183, + -0.0053106206469237804, + 0.012626600451767445, + 0.0019534346647560596, + 0.0008093056967481971, + -0.014546016231179237, + -0.019537927582859993, + -0.013657928444445133, + -0.02128545567393303, + 0.009546942077577114, + -0.006284652277827263, + 0.010241655632853508, + -0.016773397102952003, + 0.0032622895669192076, + -0.017862020060420036, + 0.0022005236241966486, + -0.022531643509864807, + 0.004157539457082748, + 0.004118148237466812, + -0.0036275514867156744, + -0.02659965679049492, + -0.022402726113796234, + 0.007548744790256023, + 0.010019633919000626, + -0.005536223761737347, + 0.02138572372496128, + -0.005099341738969088, + -0.03526567295193672, + -0.007301656063646078, + -0.009618561714887619, + 0.003989232238382101, + -0.002533556427806616, + -0.002347344532608986, + 0.0073553710244596004, + -0.003158440813422203, + -0.021400047466158867, + 0.004225578159093857, + -0.004519219975918531, + -0.0011718817986547947, + 8.833596439217217e-6, + -0.0276882816106081, + 0.0006897898274473846, + 0.023247841745615005, + -0.015355321578681469, + 0.014352641999721527, + 0.0014655236154794693, + 0.020454663783311844, + -0.005443117581307888, + 0.004186187405139208, + 0.001786023029126227, + 0.01492560189217329, + -0.01545558962970972, + 0.00018878576520364732, + 0.034262992441654205, + 0.02518158219754696, + 0.011702703312039375, + 0.02036871947348118, + 0.002363458974286914, + -0.01159527339041233, + 0.02347702719271183, + -0.025410765781998634, + 0.0008392965537495911, + -0.019738463684916496, + -0.00683612609282136, + 0.013507526367902756, + -0.006130669731646776, + -0.00644579716026783, + -0.008959658443927765, + 0.020841412246227264, + -0.005751083604991436, + 0.010442191734910011, + -0.0025747378822416067, + 0.019695492461323738, + 0.02818962000310421, + 0.025009693577885628, + -0.00794981699436903, + -0.0026195005048066378, + 0.0076848226599395275, + -0.0008603348978795111, + -0.009747478179633617, + -0.011373251676559448, + -0.0014655236154794693, + -0.015699097886681557, + 0.006606942508369684, + 0.010979341343045235, + 0.0033661385532468557, + -0.029736611992120743, + -0.014073324389755726, + 0.014424262568354607, + 0.0011307003442198038, + -0.001548781874589622, + -0.013743872754275799, + -0.0280463807284832, + -0.008150353096425533, + 0.020526284351944923, + 0.007391180843114853, + -0.005572033580392599, + 0.004225578159093857, + 0.018750108778476715, + -0.0035093785263597965, + -0.015928281471133232, + 0.004476248286664486, + 0.0006329414900392294, + 0.018850376829504967, + 0.00231153448112309, + -0.00017188793572131544, + 0.002094884170219302, + 0.01809120550751686, + -0.014510205946862698, + 0.003752886550500989, + -0.013342800550162792, + 0.010707185603678226, + -0.002741254400461912, + 0.009253299795091152, + 0.010349085554480553, + 0.023992691189050674, + -0.0030510106589645147, + 0.00648160744458437, + -0.01664448156952858, + -0.008952496573328972, + 0.0063455295749008656, + 0.047154590487480164, + 0.03715644031763077, + -0.002187990117818117, + 0.0018871861975640059, + -0.008264944888651371, + -0.04047960788011551, + 0.001973130274564028, + 0.012046478688716888, + -0.03543756157159805, + 0.019810084253549576, + 0.015111814253032207, + -0.007820900529623032, + 0.0008102009305730462, + 0.009883555583655834, + -0.015627477318048477, + 0.008243458345532417, + 0.0013473506551235914, + -0.014524529688060284, + -0.0076776607893407345, + -0.007018757052719593, + -0.0006821802235208452, + -0.0024529839865863323, + -0.020067915320396423, + -0.004748404026031494, + 0.015956928953528404, + -0.02128545567393303, + 0.009332082234323025, + -0.026141289621591568, + -0.018635516986250877, + 0.017346356064081192, + 0.020024944096803665, + -0.0187644325196743, + -0.02578318864107132, + 0.003914031200110912, + -0.000752457301132381, + 0.006714372429996729, + -0.0007851339178159833, + 0.006220194511115551, + -0.0074914488941431046, + -0.01791931688785553, + -0.033203016966581345, + -0.009074250236153603, + 0.010828939266502857, + -0.015584506094455719, + -0.018048232421278954, + -0.010399219579994678, + -0.011623920872807503, + 0.0033733006566762924, + -0.015713421627879143, + 0.0007081424701027572, + 0.011129743419587612, + 0.018535248935222626, + -0.01196769718080759, + 0.00608053570613265, + -0.0007287331973202527, + 0.01770445704460144, + -0.0033643480855971575, + -0.0033321192022413015, + 0.009353567846119404, + 0.0029507428407669067, + -0.006864774040877819, + -0.00039995278348214924, + 0.010141387581825256, + 0.03626835346221924, + -0.0027591593097895384, + 0.002078769728541374, + 0.012118099257349968, + 0.018678488209843636, + -0.005042045842856169, + 0.004694689065217972, + 0.0038137633819133043, + -0.007222874090075493, + -0.0195809006690979, + -0.00296148587949574, + -0.028032056987285614, + -0.012368769384920597, + -0.019079560413956642, + -0.02304730750620365, + -0.013428744859993458, + 0.033804625272750854, + 0.02609831653535366, + 0.009016954340040684, + 0.0033374906051903963, + -0.0009561266051605344, + -0.005074274726212025, + 0.007763604633510113, + -0.0324295237660408, + 0.01724608987569809, + 0.004304360132664442, + 0.0021378560923039913, + -0.02001062035560608, + -0.007136930245906115, + -0.0121610714122653, + 0.002533556427806616, + 0.02592642977833748, + -0.001897929236292839, + -0.0006674086325801909, + 0.002886284841224551, + -0.0005461022956296802, + 0.008042923174798489, + 0.012268501333892345, + 0.008666016161441803, + -0.008186162449419498, + 0.0032963091507554054, + -0.01568477414548397, + -0.0305960513651371, + -0.014839657582342625, + 0.0043258462101221085, + 0.018964968621730804, + 0.019280096516013145, + -0.010821777395904064, + 0.022402726113796234, + 0.0030331057496368885, + 0.00032251368975266814, + -0.010134225711226463, + 0.013643604703247547, + 0.0003068468067795038, + -0.00554338563233614, + 0.01324253249913454, + 0.008923848159611225, + -0.01145919505506754, + 0.01799093745648861, + 0.04572219029068947, + 0.009926527738571167, + -0.005070693790912628, + -0.004290036391466856, + 0.0021235321182757616, + 0.013765358366072178, + -0.015269378200173378, + -0.023949718102812767, + 0.004834347870200872, + -0.002850474789738655, + -0.006789573468267918, + -0.009883555583655834, + -0.012862946838140488, + -0.013543336652219296, + -0.0048021189868450165, + -0.01529802568256855, + 0.02337675914168358, + -0.001786918262951076, + -0.008057246915996075, + 0.017031230032444, + 0.017833372578024864, + 0.004540706053376198, + 0.02556832879781723, + -0.003795858472585678, + -0.011781484819948673, + 0.006635590456426144, + 0.0076704989187419415, + 0.0036741045769304037, + -0.01315658912062645, + -0.003317795228213072, + 0.01437412854284048, + 0.022044626995921135, + 0.0018513762624934316, + 0.013371448963880539, + -0.013006187044084072, + 0.021614907309412956, + 0.006438635289669037, + -0.01717446930706501, + -0.008551424369215965, + 0.010470840148627758, + 0.005478927865624428, + 0.018148500472307205, + -0.0013589889276772738, + -0.020970327779650688, + -0.010470840148627758, + 0.0006871040677651763, + -0.03374733030796051, + -0.02453700266778469, + -0.012433227151632309, + 0.0027126064524054527, + -0.012426065281033516, + 0.025052666664123535, + -0.0005044731660746038, + 0.010685699991881847, + -0.002068026689812541, + 0.011215687729418278, + -0.02677154541015625, + -0.005615005735307932, + -0.011552301235496998, + 0.011960535310208797, + 0.013099292293190956, + 0.003369719721376896, + -0.0129274046048522, + 0.009131546132266521, + 0.0022166380658745766, + -0.002254238585010171, + 0.03566674515604973, + -0.005772569682449102, + 0.0033213761635124683, + 0.026642629876732826, + -0.01384414080530405, + -0.01418075431138277, + -0.017016904428601265, + 0.002451193518936634, + -0.01695960946381092, + -0.0028612178284674883, + -0.018434980884194374, + 0.020726820454001427, + -0.010757319629192352, + 0.00760604115203023, + -0.03520837798714638, + 0.011452033184468746 + ], + "dbfad54b-ca37-4852-9162-92cef747df8d": [ + -0.003402042668312788, + -0.02098325453698635, + 0.005595779977738857, + -0.011117883026599884, + -0.015457467176020145, + -0.002097957069054246, + 0.04668184742331505, + 0.0140870725736022, + -0.030104486271739006, + 0.012635632418096066, + -0.003643335308879614, + 0.030148692429065704, + 0.029382450506091118, + -0.012525116093456745, + -0.04408840835094452, + 0.022501002997159958, + -0.030590755864977837, + 0.03427461162209511, + -0.00019927367975469679, + -0.033950433135032654, + 0.06100468337535858, + -0.02451975643634796, + -0.0404045507311821, + 0.03704487532377243, + -0.01771198771893978, + -0.01632685773074627, + -0.01606162078678608, + -0.0009002427686937153, + -0.034363023936748505, + 0.008465505205094814, + 0.014595444314181805, + 0.019082384184002876, + 0.006240454968065023, + 0.00585733400657773, + 0.013085062615573406, + -0.012738780118525028, + -0.0051131946966052055, + 0.004660080187022686, + -0.013158739544451237, + -0.018640320748090744, + -0.010049563832581043, + 0.041318148374557495, + 0.03321366012096405, + 0.00976222287863493, + -0.04184862598776817, + -0.011014734394848347, + -0.015619557350873947, + -0.018684526905417442, + 0.014963829889893532, + 0.003634125692769885, + 0.008841258473694324, + -0.02749631367623806, + -0.012156730517745018, + 0.018669791519641876, + 0.008789684623479843, + -0.011103147640824318, + 0.04426523670554161, + 0.06029738485813141, + 0.008811787702143192, + -0.030266575515270233, + 0.0319758839905262, + 0.030797051265835762, + -0.004221701063215733, + -0.007883455604314804, + -0.04385264217853546, + -0.0011493635829538107, + -0.03498191386461258, + -0.003882786026224494, + -0.055876754224300385, + -0.03651439771056175, + 0.013534493744373322, + 0.048008035868406296, + -0.006785666104406118, + -0.0107421288266778, + -0.004807434510439634, + -0.011869389563798904, + 0.0370154045522213, + 0.03548291698098183, + 0.01722571812570095, + -0.005709979683160782, + 0.006490957457572222, + -0.01858137920498848, + -0.0007574932533316314, + -0.01651841774582863, + 0.09383522719144821, + -0.009725384414196014, + -0.021336903795599937, + -0.041583385318517685, + -0.00013273399963509291, + 0.01218620128929615, + -0.019391827285289764, + 0.04565036669373512, + -0.041878096759319305, + 0.0024626590311527252, + 0.00032417947659268975, + -0.01869926229119301, + 0.01925920881330967, + 0.00820026732981205, + 0.002180843846872449, + 0.026155389845371246, + 0.037899527698755264, + 0.029382450506091118, + -0.03851841762661934, + 0.018566643819212914, + 0.003392833052203059, + 0.010351640172302723, + 0.006553582847118378, + -0.010815806686878204, + -0.0038938375655561686, + 0.06583790481090546, + 0.0035236100666224957, + -0.04002143070101738, + -0.003147856565192342, + 0.001281982520595193, + -0.05337173119187355, + -0.006671466398984194, + -0.0013501339126378298, + -0.019922303035855293, + 0.030855992808938026, + -0.02163161337375641, + 0.012333556078374386, + -0.0013575016055256128, + 0.0327126570045948, + 0.004962156526744366, + -0.004825853742659092, + 0.0168131273239851, + -0.022176824510097504, + 0.010388478636741638, + 0.0047337571159005165, + 0.032860010862350464, + -0.007305089849978685, + -0.013836570084095001, + 0.021543201059103012, + 0.025787005200982094, + 0.024401873350143433, + 0.04184862598776817, + 0.002749999752268195, + 0.05431479960680008, + -0.0044574677012860775, + 0.02798258326947689, + -0.06041526794433594, + -0.01591426506638527, + -0.024239784106612206, + 0.004435364622622728, + -0.012281982228159904, + 0.026155389845371246, + -0.03607233613729477, + 0.03227059543132782, + -0.05298861116170883, + -0.005883120931684971, + -0.041052911430597305, + -0.02565438486635685, + -0.0107421288266778, + 0.015855323523283005, + 0.03848894685506821, + -0.033449430018663406, + -0.034363023936748505, + 9.083011536858976e-5, + -0.02870461903512478, + 0.030944405123591423, + 0.03604286536574364, + -0.07143736630678177, + -0.005393167957663536, + -0.01083054207265377, + 0.0403161384165287, + -0.018375081941485405, + 0.033714666962623596, + 0.020821163430809975, + -0.034539852291345596, + 0.01662156544625759, + 0.0018713996978476644, + -0.02020227536559105, + -0.006052578333765268, + -0.007260883692651987, + 0.015310113318264484, + -0.000719273230060935, + 0.045561954379081726, + 0.017137305811047554, + 0.0336262546479702, + -0.029028799384832382, + -0.008023441769182682, + -0.03118017129600048, + 0.027614198625087738, + -0.04246751219034195, + -0.025109173730015755, + 0.02260415069758892, + -0.010189550928771496, + 0.013320829719305038, + 0.023488277569413185, + -0.012326188385486603, + -0.0014781479258090258, + -0.025742799043655396, + 0.012871399521827698, + 0.019568651914596558, + -0.014985932968556881, + -0.07037641853094101, + 0.0319758839905262, + 0.002621064893901348, + 0.0075887469574809074, + 0.006321500055491924, + -0.015531144104897976, + -0.05947219952940941, + -0.030296046286821365, + 0.05443268269300461, + -0.012584058567881584, + 0.034510377794504166, + 0.012223039753735065, + 0.006174145732074976, + 0.00906229019165039, + -0.013924982398748398, + 0.016076356172561646, + -0.03147488087415695, + -0.0023429335560649633, + 0.0057983919978141785, + -0.025772269815206528, + 0.03309577703475952, + 0.0005258707096800208, + 0.014094440266489983, + -0.0071466839872300625, + -0.015575350262224674, + 0.02163161337375641, + -0.01669524423778057, + -0.023105155676603317, + -0.06666309386491776, + -0.05667246878147125, + -0.01584058813750744, + -0.0031515404116362333, + 0.020438043400645256, + -0.0218526441603899, + -0.011979905888438225, + 0.04299798607826233, + -0.005824178922921419, + 0.0017664098413661122, + -0.006483589764684439, + -0.005260549020022154, + 0.03486403077840805, + 0.012024112045764923, + 0.03227059543132782, + -0.024431344121694565, + -0.006715672556310892, + 0.018890822306275368, + 0.019686536863446236, + -0.015133287757635117, + -0.000748744118027389, + 0.011184192262589931, + 0.005621566902846098, + -0.03993301838636398, + 0.008266576565802097, + 0.01996650919318199, + -0.016046883538365364, + -0.017461486160755157, + 0.018154051154851913, + 0.015663763508200645, + -0.0030410245526582003, + 0.011471533216536045, + 0.01591426506638527, + 0.0268921609967947, + -0.04733020439743996, + -0.011839918792247772, + -0.006093100644648075, + -0.018684526905417442, + 0.02444607950747013, + 0.04871533438563347, + -0.020776957273483276, + 0.028940387070178986, + -0.02151373028755188, + 0.06442330777645111, + 0.008885464631021023, + 0.009342263452708721, + 0.04223174601793289, + -0.026346949860453606, + 0.0002601724409032613, + 0.008752846159040928, + 0.001716677681542933, + -0.00058066810015589, + -0.015206964686512947, + -0.009239115752279758, + -0.0042843264527618885, + -0.025182852521538734, + -0.0062478226609528065, + 0.03468720614910126, + -0.03448090702295303, + 0.040345609188079834, + 0.026582717895507812, + -0.02177896723151207, + 0.020040186122059822, + -0.008052913472056389, + 0.009732752107083797, + -0.017815135419368744, + -0.03265371546149254, + -0.03604286536574364, + 0.00829604733735323, + -0.007463495712727308, + 0.015486937947571278, + 0.012797721661627293, + -0.005503683350980282, + -0.009091760963201523, + -0.015781646594405174, + -0.010933689773082733, + 0.0034186199773103, + -0.03047287091612816, + -0.011965170502662659, + 0.0016724714078009129, + -0.036013394594192505, + 0.02366510219871998, + -0.010189550928771496, + 0.041878096759319305, + 0.01828666962683201, + -0.015531144104897976, + 0.010410581715404987, + 0.029809776693582535, + -0.040492963045835495, + 0.014204955659806728, + -0.0411413237452507, + 0.011029469780623913, + -0.016872068867087364, + -0.0036893836222589016, + -0.03483456000685692, + -0.03966778144240379, + 0.0076034823432564735, + 0.015339584089815617, + 0.0006087574874982238, + -0.029235094785690308, + 0.026008035987615585, + 0.008642330765724182, + -0.013121901080012321, + 0.05089617893099785, + -0.017048893496394157, + -0.032034825533628464, + -0.043498992919921875, + -0.04629872366786003, + -0.017918284982442856, + -0.04176020994782448, + -0.024534493684768677, + -0.01831614039838314, + -0.056584056466817856, + -0.029765570536255836, + -0.043764229863882065, + 0.004273274913430214, + 0.003118385560810566, + 0.009504352696239948, + -0.0017056261422112584, + -0.024048224091529846, + -0.025035496801137924, + -0.0014578867703676224, + -0.029279300943017006, + 0.030413929373025894, + -0.0071540516801178455, + -0.03415672853589058, + 0.028262557461857796, + 0.0009550401009619236, + -0.021911585703492165, + -0.002621064893901348, + 0.000888270209543407, + 0.042939044535160065, + 0.017240453511476517, + -0.03330207243561745, + -0.029883453622460365, + 0.019318150356411934, + -0.01438914891332388, + 0.01693101041018963, + -0.020968519151210785, + -0.043115872889757156, + 0.014890152961015701, + -0.018271934241056442, + 0.01062424574047327, + 0.022250501438975334, + 0.007713998202234507, + -0.002339249709621072, + 0.03621968999505043, + -0.006770930718630552, + -0.015221700072288513, + 0.017991961911320686, + -0.036425985395908356, + 0.012451439164578915, + -0.013158739544451237, + 0.03194641321897507, + -0.003289684886112809, + -0.016901539638638496, + 0.014868049882352352, + -0.023974547162652016, + 0.019642328843474388, + -0.0021476889960467815, + -0.04326322674751282, + 0.04237909987568855, + 0.029853982850909233, + 0.005138981621712446, + -0.014433355070650578, + 0.003904889337718487, + 0.0306496974080801, + -0.049216341227293015, + 0.022854654118418694, + 0.014367044903337955, + 0.022707298398017883, + 0.006203616503626108, + -0.013600802980363369, + -0.01805090345442295, + -0.012075685895979404, + -0.009047554805874825, + -0.00600837217643857, + -0.006549899000674486, + 0.019082384184002876, + 0.006328867748379707, + 0.019951773807406425, + 0.045385126024484634, + -0.02471131831407547, + -0.020924312993884087, + -0.016297386959195137, + -0.000611059891525656, + -0.010867380537092686, + 0.011243133805692196, + 0.009710649028420448, + -0.003934360109269619, + 0.0036599126178771257, + 0.03162223473191261, + -0.006229403428733349, + 0.02509443834424019, + 0.037369053810834885, + -0.015398525632917881, + -0.049481578171253204, + 0.03062022663652897, + 0.008863361552357674, + -0.006929336581379175, + 0.017240453511476517, + 0.00812659040093422, + 0.021307433024048805, + -0.008826523087918758, + 0.027216341346502304, + -0.03265371546149254, + -0.010882115922868252, + 0.012628264725208282, + 0.028896180912852287, + 0.022913595661520958, + 0.02451975643634796, + -0.013114533387124538, + 0.0001397563610225916, + 0.011478900909423828, + -0.03896047919988632, + -0.017387809231877327, + -0.008524446748197079, + -0.006163094192743301, + 0.04167179763317108, + -0.01130207534879446, + -0.001168703893199563, + -0.01158204860985279, + 0.0038569991011172533, + -0.01418285258114338, + -0.003475719830021262, + -0.00552947074174881, + 0.0034002007450908422, + 0.010300066322088242, + 0.029161417856812477, + 0.011965170502662659, + 0.013740789145231247, + -0.003357836278155446, + -0.013645009137690067, + 0.024961819872260094, + -0.01824246346950531, + 0.0126208970323205, + -0.040375079959630966, + -0.02366510219871998, + -0.020776957273483276, + 0.00959276594221592, + -0.019391827285289764, + 0.05231077969074249, + -0.02253047376871109, + 0.0002270177355967462, + 0.01307032722979784, + 0.01666577346622944, + 0.03869524225592613, + 0.011471533216536045, + -0.022692563012242317, + -0.02286938950419426, + 0.026789013296365738, + 0.024460814893245697, + -0.00552947074174881, + -0.021557936444878578, + 0.015192229300737381, + 0.02952980436384678, + -0.0030981244053691626, + 0.00915807019919157, + 0.0014882785035297275, + -0.0192886795848608, + -0.036013394594192505, + -0.009408572688698769, + -0.014293367974460125, + -0.004420629236847162, + -0.061358336359262466, + -0.0164005346596241, + -0.014801740646362305, + 0.02418084256350994, + 0.013571332208812237, + 0.0029176154639571905, + 0.006240454968065023, + -0.016503682360053062, + -0.03386202082037926, + 0.008008706383407116, + -0.03135699778795242, + -0.004398526158183813, + -0.009423308074474335, + 0.028262557461857796, + -0.028085730969905853, + -0.040345609188079834, + 0.028483588248491287, + -0.015066978521645069, + 0.03174011781811714, + -0.01491225603967905, + -0.004044875968247652, + -0.013328197412192822, + 0.024991290643811226, + 0.015634292736649513, + -0.0411413237452507, + -0.009614869020879269, + 0.005223710089921951, + -0.01551640871912241, + -0.0003727603470906615, + -0.032889481633901596, + -0.019951773807406425, + 0.048008035868406296, + -0.030384458601474762, + 0.006962491199374199, + -0.023561954498291016, + -0.029367713257670403, + 0.03716275840997696, + 0.020997989922761917, + 0.005481580272316933, + -0.018212992697954178, + -0.02306094951927662, + -0.011176824569702148, + -0.0032270594965666533, + -0.005282652098685503, + 0.024328196421265602, + -0.011036837473511696, + 0.004892162978649139, + 0.01669524423778057, + -0.018787674605846405, + -0.025521766394376755, + -0.013048224151134491, + 0.022972537204623222, + 0.04052243381738663, + -0.027776287868618965, + 0.0079718679189682, + 0.02553650178015232, + -0.016032148152589798, + -0.018301405012607574, + 0.01647421158850193, + -0.0006676992052234709, + 0.05499262735247612, + -0.00711721321567893, + 0.020334895700216293, + -0.015103816986083984, + 0.016827862709760666, + -0.03890153765678406, + -0.01225987821817398, + 0.0015914265532046556, + -0.020747486501932144, + 0.021720025688409805, + -0.00547421257942915, + -0.025787005200982094, + -0.023178832605481148, + -0.016267916187644005, + -0.003545713145285845, + 0.009298057295382023, + 0.012245142832398415, + 0.00918017327785492, + -0.0020721699111163616, + -0.03919624537229538, + 0.00039486351306550205, + -0.002112692454829812, + -0.005732082761824131, + 0.040492963045835495, + -0.019156061112880707, + 0.05236972123384476, + 0.024814466014504433, + -0.006465170532464981, + 0.008723375387489796, + -0.03103281743824482, + -0.011994641274213791, + 0.00810448732227087, + -0.010086402297019958, + 0.027702610939741135, + -0.036131277680397034, + 0.0003117464657407254, + 0.0010277963010594249, + 0.009371734224259853, + 0.02158740721642971, + -0.02298727259039879, + -0.0136744799092412, + 0.01551640871912241, + -0.013998659327626228, + 0.007025116588920355, + 0.03934359923005104, + 0.0026707968208938837, + 0.0005267916712909937, + -0.01838981732726097, + 0.00966644287109375, + 0.00761821772903204, + 0.027584727853536606, + -0.008553917519748211, + -0.006174145732074976, + 0.04668184742331505, + 0.027658404782414436, + 0.00020951940678060055, + -0.004623241722583771, + -0.021086402237415314, + -0.01768251694738865, + 0.021145343780517578, + 0.009047554805874825, + -0.012989282608032227, + 0.021042196080088615, + -0.007566643878817558, + 0.014484928920865059, + 0.008222370408475399, + -0.017314132302999496, + -0.0030060280114412308, + -0.004965840373188257, + -0.003665438387542963, + 0.009261218830943108, + 0.013136636465787888, + -0.01666577346622944, + 0.0015398525865748525, + -0.032624244689941406, + 0.03008975088596344, + 0.021793702617287636, + 0.020320160314440727, + 0.012267246842384338, + 0.008738110773265362, + -0.03004554472863674, + -0.007831881754100323, + 0.004814802203327417, + 0.0029728731606155634, + -0.0076992628164589405, + -0.0008597202831879258, + -0.0273489598184824, + 0.04615136981010437, + 0.0012027795892208815, + 0.01201674435287714, + 0.0058315470814704895, + 0.0060820491053164005, + -0.0109484251588583, + 0.008679169230163097, + 0.005684192758053541, + -0.02594909444451332, + 0.010904219001531601, + -0.007787675131112337, + 0.015973206609487534, + -0.011928331106901169, + 0.025904888287186623, + 0.020187539979815483, + -0.0012451439397409558, + -0.028233086690306664, + 0.014809108339250088, + 0.003604654921218753, + 0.0008104487205855548, + 0.016709979623556137, + 0.008045545779168606, + 0.015545879490673542, + 0.010602142661809921, + 0.0002937876561190933, + -0.027599463239312172, + 0.030738109722733498, + -0.05525786802172661, + 0.009614869020879269, + 0.046062957495450974, + 0.011670461855828762, + 0.02042330801486969, + 0.011663094162940979, + 0.009578030556440353, + 0.008517079055309296, + 0.029927659779787064, + -0.014654385857284069, + -0.01850770227611065, + 0.006306764669716358, + -0.017918284982442856, + 0.017093099653720856, + 0.004704286344349384, + 0.01865505613386631, + 0.00994641613215208, + -0.010498994961380959, + 0.003956463187932968, + 0.03303683549165726, + -0.004715337883681059, + -0.03244742006063461, + 0.0073456126265227795, + -0.001647605444304645, + -0.018198257312178612, + -0.015059610828757286, + 0.02899932861328125, + 0.013306094333529472, + -0.022088410332798958, + -0.01032216940075159, + -0.01395445317029953, + -0.0193328857421875, + -0.0318874716758728, + -0.02117481455206871, + 0.010255860164761543, + 0.006737775634974241, + -0.023724043741822243, + 0.014300735667347908, + -0.029515068978071213, + -0.04650501906871796, + -0.0049142660573124886, + 0.011103147640824318, + -0.013740789145231247, + 0.005080040078610182, + 0.007109845522791147, + -0.006781982257962227, + -0.02105693146586418, + 0.038194239139556885, + -0.017962491139769554, + -0.005732082761824131, + 0.0159879419952631, + 0.008738110773265362, + 0.02843938209116459, + 0.006465170532464981, + 0.009217011742293835, + -0.012385129928588867, + 0.0018990286625921726, + -0.011235766112804413, + 0.024062959477305412, + -0.005639986135065556, + 0.00827394425868988, + 0.008723375387489796, + -0.04517883062362671, + -0.0562598742544651, + 0.012083053588867188, + 0.02945612743496895, + 0.0026652710512280464, + 0.004022772889584303, + 0.007511386182159185, + 0.02301674336194992, + 0.0003488152869977057, + -0.0006290187011472881, + 0.00038127927109599113, + -0.0188760869204998, + 0.00253449403680861, + 0.016754185780882835, + 0.0019063963554799557, + 0.031533822417259216, + -0.04933422431349754, + -0.010616878047585487, + -0.018183521926403046, + 0.02667113021016121, + -0.009747487492859364, + -0.011176824569702148, + 0.0013068486005067825, + -0.009194908663630486, + -0.010933689773082733, + 0.0034038845915347338, + 0.0043874746188521385, + 0.037840586155653, + -0.001961654284968972, + 0.024770259857177734, + 0.007235096767544746, + -0.016238445416092873, + 0.0021090086083859205, + 0.018478231504559517, + -0.0021311116870492697, + 0.009806429035961628, + 0.02538914792239666, + -0.010918954387307167, + 0.027334224432706833, + 0.017933020368218422, + -0.0007386134820990264, + -0.01967179961502552, + -0.028262557461857796, + -0.0107421288266778, + 0.017741458490490913, + 0.03347890079021454, + -0.0020592764485627413, + 0.017461486160755157, + 0.018006697297096252, + 0.04128867760300636, + -0.0011051573092117906, + -0.022884124889969826, + 0.02614065445959568, + 0.0016899697948247194, + -0.03910783305764198, + -0.022957801818847656, + -0.007113529369235039, + -0.030738109722733498, + -0.028719354420900345, + -0.0007713077357038856, + -0.014823843725025654, + -0.0020813795272260904, + -0.01869926229119301, + 0.017535163089632988, + -0.019082384184002876, + -0.005028465762734413, + 0.006579369772225618, + -0.008738110773265362, + 0.001685364986769855, + 0.005223710089921951, + 0.004980575758963823, + 0.009283321909606457, + -0.011110515333712101, + -0.001737859915010631, + -0.022766241803765297, + 0.00880442000925541, + 0.013792363926768303, + 0.012731412425637245, + -0.0025418619625270367, + 0.02636168710887432, + 0.03583656996488571, + 0.01948023959994316, + -0.0028420963790267706, + -0.022854654118418694, + 0.008841258473694324, + -0.0018446918111294508, + -0.012812457047402859, + -0.0039012054912745953, + 0.01865505613386631, + 0.0064283316023647785, + 0.037840586155653, + -0.04523777216672897, + 0.023900868371129036, + -0.00848024059087038, + 0.041465502232313156, + 0.04019825533032417, + -0.011559945531189442, + 0.012576690874993801, + 0.03795846924185753, + -0.03630810230970383, + 0.0033394170459359884, + -0.008487608283758163, + -0.0001432099670637399, + 0.033685196191072464, + -0.004479571245610714, + 0.028910916298627853, + 0.01986336149275303, + 0.008966510184109211, + 0.01763831079006195, + -0.0029065636917948723, + 0.013328197412192822, + -0.008649698458611965, + -0.004188546445220709, + -0.025403883308172226, + -0.01688680425286293, + -0.030826522037386894, + 0.03607233613729477, + -0.025904888287186623, + -0.03854788839817047, + -0.016164768487215042, + -0.007839249446988106, + 0.012193568982183933, + -0.007168787065893412, + 0.01989283226430416, + -0.0023576689418405294, + 0.011648357845842838, + 0.039255186915397644, + 0.028306763619184494, + -0.0214842576533556, + -0.016901539638638496, + 0.03728064149618149, + -0.02832149900496006, + 0.03439249470829964, + -0.02790890634059906, + -0.0058057596907019615, + -0.005065304227173328, + 0.002996818395331502, + 0.007459811866283417, + 0.0014873575419187546, + -0.01700468733906746, + -0.033567313104867935, + 0.010498994961380959, + 0.012105156667530537, + -0.023075684905052185, + -0.002339249709621072, + -0.008038178086280823, + 0.0060746814124286175, + 0.003567816223949194, + 0.0035696581471711397, + -0.025256529450416565, + 0.010498994961380959, + 0.0033375751227140427, + -0.02192632108926773, + -0.032064296305179596, + 0.02083589881658554, + -0.03336101770401001, + -0.023635631427168846, + -0.021823173388838768, + 0.03162223473191261, + 0.017461486160755157, + 0.016385799273848534, + -0.04161285609006882, + -0.009165437892079353, + 0.011073676869273186, + -0.016046883538365364, + -0.01171466801315546, + -0.01444072276353836, + 0.029765570536255836, + -0.0036451772321015596, + -0.025639649480581284, + -0.013733421452343464, + -0.024416608735919, + 0.0268921609967947, + 0.020364366471767426, + -0.0035199259873479605, + 0.012517748400568962, + 0.02366510219871998, + 0.010373743250966072, + -0.03427461162209511, + -0.020600132644176483, + -0.021749496459960938, + 0.03321366012096405, + -0.030119221657514572, + 0.01290087029337883, + 0.025433354079723358, + 0.011088412255048752, + 0.03580709919333458, + 0.021675819531083107, + 0.0002484301512595266, + 0.01041794940829277, + -0.030973875895142555, + 0.03869524225592613, + -0.003971198573708534, + 0.014573341235518456, + -0.01015271246433258, + 0.004777963738888502, + -0.019421298056840897, + 0.047595441341400146, + -0.0126208970323205, + -0.0022729402408003807, + 0.02124849148094654, + -0.026391157880425453, + -0.022810447961091995, + -0.0078024109825491905, + 0.010086402297019958, + 0.0042916941456496716, + 0.01809510961174965, + -0.0168131273239851, + -0.006667782552540302, + -0.012436703778803349, + -0.0005396851920522749, + 0.02534494176506996, + -0.009710649028420448, + 0.008089751936495304, + -0.023105155676603317, + -0.0054594771936535835, + -0.00659042177721858, + -0.019436033442616463, + -0.0011871231254190207, + 0.01141259167343378, + -0.012171465903520584, + 0.0009725384297780693, + -0.002930508926510811, + -0.017918284982442856, + 0.009496985003352165, + -0.0019377091666683555, + -0.006888813804835081, + 0.010668451897799969, + 0.000958724005613476, + -0.006181513424962759, + -0.0019837573636323214, + 0.03224112465977669, + 0.03215271234512329, + -0.005746818147599697, + 0.02001071535050869, + 0.002720528980717063, + -0.004704286344349384, + -0.009025451727211475, + 0.014602812007069588, + -0.0004229529295116663, + -0.011839918792247772, + -0.03008975088596344, + 0.013851305469870567, + -0.030561283230781555, + 0.012421968393027782, + 0.0019248157041147351, + 0.005743134301155806, + 0.006597789470106363, + -0.012200936675071716, + -0.024917613714933395, + 0.017741458490490913, + -0.015133287757635117, + -0.009334895759820938, + -0.019008705392479897, + 0.011081044562160969, + -0.022501002997159958, + -0.014654385857284069, + 0.06348023563623428, + 0.004181178752332926, + 0.015310113318264484, + -0.0083844605833292, + -0.016017412766814232, + -0.0009633288136683404, + 0.02662692405283451, + -0.002313462784513831, + -0.008303415030241013, + 0.017520427703857422, + 0.0013842096086591482, + -0.01828666962683201, + -0.00994641613215208, + 0.01632685773074627, + 0.03636704385280609, + 0.0098948422819376, + -0.00868653692305088, + -0.029986603185534477, + 0.0019579704385250807, + -0.03781111538410187, + -0.01559008564800024, + -0.00570629583671689, + 0.017594104632735252, + 0.00761821772903204, + 0.0028955121524631977, + 0.007839249446988106, + -0.01047689188271761, + -0.025330206379294395, + 0.0023171466309577227, + -0.005662089213728905, + -0.01162625476717949, + -0.02354721911251545, + -0.029883453622460365, + -0.021528465673327446, + 0.018330875784158707, + 0.02754051983356476, + -0.011449430137872696, + -0.053548555821180344, + -0.02723107673227787, + 0.030561283230781555, + -0.004155391361564398, + -0.0306496974080801, + 0.0031496984884142876, + -0.013711318373680115, + -0.004619557876139879, + 0.02497655525803566, + 0.0034812455996870995, + 0.015531144104897976, + -0.004770596046000719, + 0.006188881117850542, + -0.005765237379819155, + -0.007426657248288393, + 0.010955792851746082, + -0.02369457297027111, + -0.016754185780882835, + -0.0012258036294952035, + 0.00029562957934103906, + -0.058588072657585144, + -0.002796048065647483, + 0.007625585421919823, + 0.02325250953435898, + -0.017947755753993988, + -0.019362356513738632, + 0.02049698494374752, + -0.0032786333467811346, + -0.001655894098803401, + 0.0035236100666224957, + -0.006284661591053009, + -0.017048893496394157, + -0.0006819741684012115, + 0.025963829830288887, + 0.0053821164183318615, + -0.005120562389492989, + 0.003160750027745962, + 0.02328198030591011, + -0.003269423730671406, + -0.021882114931941032, + -0.004420629236847162, + 0.01004219613969326, + 0.025551237165927887, + -0.005393167957663536, + 0.0031791692599654198, + 0.05499262735247612, + -0.0385773591697216, + 0.012480909936130047, + -0.016164768487215042, + -0.002532652113586664, + 0.0075334892608225346, + -0.007312457542866468, + -0.02260415069758892, + -0.020364366471767426, + 0.0007238780381157994, + -0.0027242128271609545, + 0.008620226755738258, + -0.00014965672744438052, + 0.036160748451948166, + 0.004855324514210224, + 0.014116543345153332, + 0.00833288673311472, + -0.029014063999056816, + -0.008244473487138748, + -0.001018586684949696, + -0.014492296613752842, + 0.02708372287452221, + -0.011125250719487667, + 0.011044205166399479, + 0.0214842576533556, + 0.03848894685506821, + -0.00017291108088102192, + 0.02415137179195881, + -0.019229738041758537, + -0.012510380707681179, + 0.014219691045582294, + 0.009415940381586552, + -0.040227726101875305, + -0.009165437892079353, + 0.011574680916965008, + 0.06577896326780319, + 0.0007165103452280164, + 0.009423308074474335, + -0.016636300832033157, + -0.014227058738470078, + 0.023635631427168846, + 0.009496985003352165, + 0.020099127665162086, + 0.017653046175837517, + 0.004619557876139879, + -0.007839249446988106, + 0.008170796558260918, + -0.011176824569702148, + 0.025330206379294395, + 0.007437708787620068, + 0.02260415069758892, + 0.028837239369750023, + 0.008870729245245457, + 0.005934694781899452, + -0.010734761133790016, + -0.008008706383407116, + -0.007330876775085926, + 0.00726825138553977, + 0.0036138645373284817, + -0.011029469780623913, + 0.010219021700322628, + 0.020069656893610954, + -0.018935028463602066, + 0.004486938938498497, + 0.004321165382862091, + 0.007677159737795591, + 0.002569490810856223, + 0.010211654007434845, + 0.006715672556310892, + -0.011279972270131111, + 0.01760884001851082, + -0.00326758180744946, + 0.008937039412558079, + 0.005116878543049097, + 0.0038864698726683855, + 0.0013455291045829654, + -0.015192229300737381, + 0.028645677492022514, + -0.03244742006063461, + 0.0014449931913986802, + 0.007964500226080418, + 0.006292029283940792, + 0.02643536403775215, + -0.008281311951577663, + -0.009806429035961628, + -0.015560614876449108, + -0.005050568841397762, + -0.026081712916493416, + -0.0022250500041991472, + -0.021351639181375504, + 0.03318418934941292, + 0.016488946974277496, + -0.013645009137690067, + 0.005717347376048565, + -0.012908237986266613, + -0.013475551269948483, + 0.03380307927727699, + -0.02425451949238777, + -0.02347354218363762, + -0.001341845141723752, + 0.00013503641821444035, + -0.014448090456426144, + -0.012311452999711037, + -0.004652712494134903, + 0.02264835685491562, + 0.02008439227938652, + 0.027673140168190002, + 0.0011069992324337363, + 0.010071666911244392, + -0.0002067565219476819, + 0.005242129787802696, + 0.022368384525179863, + -0.004910582210868597, + 0.009018084034323692, + -0.02783522941172123, + -0.016709979623556137, + -0.004722705576568842, + 0.007684527430683374, + 0.022221030667424202, + 0.0063436031341552734, + -0.013777627609670162, + 0.010749496519565582, + 0.00885599385946989, + -0.005290019791573286, + 0.005135297775268555, + -0.00938646961003542, + 0.0077066305093467236, + -0.0013022436760365963, + -0.008472872897982597, + -0.006678834091871977, + -0.022221030667424202, + 0.005282652098685503, + 0.044707298278808594, + 0.017535163089632988, + 0.0008339332998730242, + -0.015383790247142315, + -0.012060950510203838, + 0.012149362824857235, + 0.006240454968065023, + 0.045679837465286255, + -0.017314132302999496, + -0.009047554805874825, + -0.0034978229086846113, + -0.015575350262224674, + -0.02527126483619213, + -0.013210314325988293, + 0.0018069322686642408, + -0.008789684623479843, + -0.00936436653137207, + 0.0005051490152254701, + 0.004803750663995743, + 0.011486268602311611, + 0.007979235611855984, + 0.0030925986357033253, + -0.025227058678865433, + -0.015929000452160835, + 0.023974547162652016, + 0.017432015389204025, + 0.04087608680129051, + -0.011257869191467762, + 0.01231882069259882, + 0.01120629534125328, + -0.0113610178232193, + 0.00022460019681602716, + -0.000670922570861876, + 0.016975216567516327, + 0.002772103063762188, + -0.007102477829903364, + 0.008605491369962692, + -0.008531814441084862, + 0.02214735373854637, + 0.0060746814124286175, + -0.0006589500699192286, + -0.042526453733444214, + -0.015339584089815617, + -0.014300735667347908, + -0.014367044903337955, + 0.027245812118053436, + -0.011427327059209347, + 0.005886804778128862, + 0.01504487544298172, + -0.022501002997159958, + 0.004512725863605738, + 0.008937039412558079, + 0.004299061838537455, + -0.011523107066750526, + -0.004096449818462133, + 0.00885599385946989, + -0.014956462197005749, + 0.006391493137925863, + 0.0074229734018445015, + -0.006572002079337835, + 0.014057600870728493, + -0.013733421452343464, + -0.03132752701640129, + 0.039137303829193115, + 0.03963831067085266, + 0.009806429035961628, + -0.05228130891919136, + 0.001184360240586102, + 0.014219691045582294, + -0.017579369246959686, + -0.036543868482112885, + -0.020555926486849785, + -0.00018545921193435788, + 0.007253515999764204, + -0.010351640172302723, + 0.011640990152955055, + -0.009865371510386467, + 0.014521767385303974, + 0.002269256394356489, + 0.022427326068282127, + -0.03657333925366402, + -0.007124580908566713, + -0.013416609726846218, + -0.011707300320267677, + -0.018949763849377632, + -0.0017001003725454211, + 0.006682517938315868, + 0.020850634202361107, + 0.00344624905847013, + -0.018610849976539612, + -0.010204286314547062, + 0.01688680425286293, + 0.01455860584974289, + -0.01309243030846119, + -0.0015315638156607747, + -0.024961819872260094, + 0.0010793703841045499, + 0.007979235611855984, + 0.01993703842163086, + 0.012952444143593311, + -0.013563964515924454, + 0.020172804594039917, + 0.020069656893610954, + -0.006111519876867533, + 0.010513730347156525, + 0.04329269751906395, + -0.01816878654062748, + 0.01015271246433258, + -0.003251004498451948, + 0.004671131726354361, + 0.011891492642462254, + 0.027746817097067833, + -0.010602142661809921, + 0.011766241863369942, + -0.023488277569413185, + 0.010226389393210411, + -0.018817145377397537, + -0.0083844605833292, + 0.023105155676603317, + -0.011235766112804413, + 0.013622906059026718, + -0.00443904846906662, + 0.015884794294834137, + -0.015501673333346844, + -0.011346281506121159, + -0.01673945039510727, + 0.017122570425271988, + 0.025374412536621094, + 0.026509040966629982, + 0.009931680746376514, + -0.001609845901839435, + 0.026685865595936775, + -0.00506898807361722, + 0.02241259068250656, + -0.003206798108294606, + 0.022589415311813354, + -0.003206798108294606, + 0.010307434014976025, + 0.004085398279130459, + -0.0014155223034322262, + 0.013792363926768303, + 0.00878231693059206, + 0.005400535650551319, + 0.006137307267636061, + -0.000967012660112232, + -0.028277292847633362, + -0.006409912370145321, + -0.027923641726374626, + -0.00022425483621191233, + 0.032034825533628464, + -0.012584058567881584, + 0.009710649028420448, + -0.02211788296699524, + -0.00016750040231272578, + -0.002654219511896372, + -0.024328196421265602, + -0.020408572629094124, + -0.012635632418096066, + 0.01004219613969326, + 0.0005590254440903664, + -0.007260883692651987, + -0.008362357504665852, + 0.0018299563089385629, + 0.024961819872260094, + -0.00140078691765666, + 0.021911585703492165, + -0.00026823088410310447, + -0.031062288209795952, + -0.04005090147256851, + -0.027938377112150192, + 0.008016074076294899, + 0.020054921507835388, + -0.0023650366347283125, + 0.0033081043511629105, + -0.0007022353820502758, + 0.011088412255048752, + -0.004800066817551851, + 0.03400937467813492, + -0.0027536835987120867, + -0.019922303035855293, + 0.001101473462767899, + 0.016046883538365364, + 0.004564299713820219, + 0.013261888176202774, + 0.00915807019919157, + 0.008281311951577663, + -0.00026777040329761803, + 0.03412725776433945, + 0.008354989811778069, + 0.008170796558260918, + 0.018345611169934273, + 0.012399865314364433, + -0.004641660954803228, + -0.025182852521538734, + 0.014683856628835201, + 0.004998994991183281, + -0.013843937776982784, + 0.005897856317460537, + 0.042939044535160065, + -0.017402544617652893, + -0.01877293922007084, + -0.03509979695081711, + -0.012539851479232311, + -0.010778968222439289, + 0.003882786026224494, + -0.0019192899344488978, + 0.00887809693813324, + -0.013085062615573406, + 0.0344514362514019, + 0.00507635623216629, + -0.053578026592731476, + -0.006605157162994146, + 0.012223039753735065, + 0.0113610178232193, + -0.004976891912519932, + -0.007054587826132774, + 0.016798391938209534, + 0.0019377091666683555, + 0.026567982509732246, + -0.005496315658092499, + 0.0167689211666584, + -0.0009246483095921576, + -0.012731412425637245, + -0.020467514172196388, + -0.011014734394848347, + -0.031386468559503555, + -0.011221030727028847, + -0.009519088082015514, + 0.00789819099009037, + 0.012517748400568962, + 0.012156730517745018, + 0.0067930337972939014, + -0.02316409721970558, + -0.005157400853931904, + -0.0015278799692168832, + 0.015383790247142315, + 0.01474279910326004, + -0.0002530349884182215, + 0.008207635022699833, + -0.03062022663652897, + 0.011537842452526093, + -0.02888144552707672, + -0.008465505205094814, + -0.012893502600491047, + 0.036543868482112885, + 0.002810783451423049, + 0.020850634202361107, + -0.024460814893245697, + 0.013703950680792332, + -0.007190890144556761, + 0.00016519799828529358, + 0.016798391938209534, + -0.03088546358048916, + -0.015545879490673542, + 0.02350301295518875, + 0.02057066187262535, + -0.008377092890441418, + -0.0045532481744885445, + -0.006822504568845034, + 0.006833556108176708, + 0.03563027083873749, + 0.00983589980751276, + 0.019774949178099632, + -0.02369457297027111, + 0.009902209974825382, + 0.0026800064370036125, + -0.017255188897252083, + -0.02199999801814556, + 0.003923308569937944, + -0.022486267611384392, + 0.002226891927421093, + -0.008811787702143192, + 0.00983589980751276, + 0.01760884001851082, + -0.006096784491091967, + 0.016076356172561646, + 6.705772193527082e-6, + 0.04314534366130829, + 0.0021163763012737036, + 0.012613529339432716, + -0.03672069311141968, + -0.002179001923650503, + -0.0022674144711345434, + 0.01651841774582863, + -0.023782985284924507, + 0.020659074187278748, + -0.027628934010863304, + -0.022913595661520958, + -0.022279972210526466, + 0.0062551903538405895, + -0.009791693650186062, + 0.014322838746011257, + 0.012746147811412811, + 0.007868720218539238, + -0.017432015389204025, + 0.016783656552433968, + -0.015973206609487534, + -0.013328197412192822, + 0.02534494176506996, + -0.0003340798430144787, + -0.012156730517745018, + -0.027127929031848907, + 0.02531547099351883, + 0.01696048118174076, + -0.01945076882839203, + -0.0027555255219340324, + 0.01853717304766178, + -0.0014348626136779785, + 0.011567313224077225, + 0.02674480713903904, + -0.025845946744084358, + -0.003956463187932968, + -0.0083844605833292, + -0.0109484251588583, + -0.0027002678252756596, + -0.011265236884355545, + -0.01911185495555401, + 0.01551640871912241, + -0.004549564328044653, + -0.013188211247324944, + -0.002464500954374671, + 0.00878231693059206, + -0.0008795210160315037, + 0.0005387641722336411, + -0.011677829548716545, + 0.022545209154486656, + 0.024166107177734375, + 0.01945076882839203, + -0.0020795376040041447, + 0.02407769486308098, + -0.004958472680300474, + -0.0014053917257115245, + 0.006763563025742769, + -0.024328196421265602, + 0.01741728000342846, + -0.004376423079520464, + 0.02505023218691349, + 0.021454786881804466, + 0.0010139818768948317, + -0.018713997676968575, + 0.000697170093189925, + 0.012856663204729557, + -0.020099127665162086, + -0.003238111035898328, + -0.022972537204623222, + -0.026317479088902473, + 0.008229738101363182, + 0.015958471223711967, + -0.026052242144942284, + -0.008156061172485352, + 0.009997989982366562, + -0.014359677210450172, + -0.01173677109181881, + -0.01955391652882099, + 0.013586067594587803, + -0.0018704787362366915, + 0.007124580908566713, + -0.018817145377397537, + -0.032624244689941406, + -0.0012534325942397118, + -0.008097119629383087, + 0.00810448732227087, + 0.0068777622655034065, + 2.577261511760298e-5, + -0.02219155989587307, + -0.02257467992603779, + 0.00752243772149086, + -0.002770261140540242, + 0.025742799043655396, + -0.006936704274266958, + 0.009496985003352165, + -0.009018084034323692, + -0.005816811230033636, + -0.002112692454829812, + -0.0012156730517745018, + 0.0012644841335713863, + 0.01438914891332388, + 0.004210649523884058, + 0.018684526905417442, + 1.5857856851653196e-5, + -0.0007496650796383619, + -0.007684527430683374, + -0.02482920140028, + -0.0026431679725646973, + 0.002204788848757744, + -0.011640990152955055, + 0.016562623903155327, + -0.022898860275745392, + 0.07644741982221603, + -0.0029636635445058346, + 0.004446416161954403, + 0.008494975976645947, + 0.007021432742476463, + -0.03062022663652897, + 0.010631613433361053, + 0.028866710141301155, + 0.009607501327991486, + -0.005533154588192701, + -0.014197587966918945, + -0.019774949178099632, + 0.010513730347156525, + 0.01158204860985279, + 0.0018861352000385523, + -0.0023724043276160955, + 0.0017074680654332042, + 0.0277173463255167, + 0.004505358170717955, + 0.03244742006063461, + 0.018154051154851913, + -0.012060950510203838, + -0.013195578940212727, + -0.006306764669716358, + 0.0006041526794433594, + 0.0029194573871791363, + -0.0011815973557531834, + 0.01523643545806408, + 0.02211788296699524, + 0.03471667692065239, + 0.029839247465133667, + 0.012517748400568962, + -0.007817146368324757, + -0.03442196547985077, + -0.018669791519641876, + 0.016120562329888344, + 0.02795311249792576, + 0.004265907220542431, + -0.00256212311796844, + 0.017063628882169724, + 0.018758203834295273, + -0.014787005260586739, + 0.03339048847556114, + 0.018375081941485405, + -0.010557936504483223, + -0.02306094951927662, + -0.00689249811694026, + -0.011294707655906677, + 0.038459476083517075, + -0.018301405012607574, + -0.015265906229615211, + -0.014190220274031162, + 0.0163563285022974, + 0.008701272308826447, + -0.01491225603967905, + -0.013247152790427208, + -0.001348291989415884, + -0.0022213661577552557, + -0.011272604577243328, + 0.012363026849925518, + -0.015295377932488918, + -0.012922973372042179, + -0.0053821164183318615, + -0.024048224091529846, + 0.0009158991160802543, + -0.0012902711750939488, + -0.00829604733735323, + 0.0007367715588770807, + -0.011272604577243328, + -0.012304085306823254, + 0.007003013510257006, + -0.01344608049839735, + 0.00024037172261159867, + -0.021395845338702202, + -0.011773609556257725, + 0.0064209639094769955, + 0.015973206609487534, + 0.018065638840198517, + 0.024269254878163338, + 0.006675150245428085, + 0.029691893607378006, + 0.0046637640334665775, + 0.003882786026224494, + -0.00615941034629941, + -0.016120562329888344, + 0.014123911038041115, + 0.003783321939408779, + -0.01564902812242508, + 0.01564902812242508, + -0.031386468559503555, + -0.006111519876867533, + 0.013173474930226803, + -0.0013013227144256234, + -0.01816878654062748, + -0.0010775283444672823, + 0.00719457445666194, + -0.0251975879073143, + -0.014890152961015701, + 0.0026910582091659307, + -0.018610849976539612, + 0.00906229019165039, + 0.004682183265686035, + -0.009975886903703213, + -0.004634293261915445, + -0.010491627268493176, + -0.0020279637537896633, + 0.009843268431723118, + 0.0002495813532732427, + -0.014013394713401794, + 0.01122839841991663, + -0.02020227536559105, + -0.007883455604314804, + -0.008266576565802097, + 0.0033965168986469507, + -0.0005857333890162408, + 0.019833890721201897, + 0.00590522401034832, + 0.010572671890258789, + -0.02727528288960457, + -0.02727528288960457, + -0.0065241120755672455, + 0.0007017749012447894, + -0.008494975976645947, + -0.016238445416092873, + 0.015339584089815617, + 0.0007165103452280164, + -0.017181511968374252, + -0.013998659327626228, + -0.008811787702143192, + -0.021882114931941032, + 0.001956128515303135, + 0.018964499235153198, + 0.010712658055126667, + -0.025565972551703453, + -0.01085264515131712, + 0.0038791021797806025, + 0.008060281164944172, + 0.008089751936495304, + 0.002129269763827324, + -0.002578700426965952, + 0.021557936444878578, + 0.008222370408475399, + 0.004302745684981346, + 0.019833890721201897, + 0.010336904786527157, + 0.00224715331569314, + -0.020452778786420822, + -0.022486267611384392, + 0.021882114931941032, + -0.0016024780925363302, + 0.004170127213001251, + -0.027201605960726738, + 0.0076992628164589405, + 0.006907233502715826, + 0.006726724095642567, + 0.00522739440202713, + -0.018006697297096252, + 0.006921968888491392, + -0.024357667192816734, + 0.017048893496394157, + 0.0023797720205038786, + 0.012223039753735065, + -0.016680508852005005, + -0.00021032524819020182, + -0.013365035876631737, + -0.003335733199492097, + 0.015634292736649513, + -0.0027407901361584663, + 0.023075684905052185, + -0.009902209974825382, + 0.010697922669351101, + 0.0036893836222589016, + 0.004586402792483568, + -0.03389149159193039, + 0.001221198821440339, + 0.004162759054452181, + -0.011250501498579979, + 0.012679838575422764, + 0.0007197337108664215, + 0.015295377932488918, + 0.00043745810398831964, + -0.021808438003063202, + 0.01455860584974289, + -0.003860682947561145, + 0.010712658055126667, + -0.03636704385280609, + 0.028630942106246948, + 0.002188211539760232, + -0.015766911208629608, + 0.005897856317460537, + -0.004637977108359337, + 0.03415672853589058, + -0.0076992628164589405, + -0.0020666441414505243, + -0.014035497792065144, + -0.016017412766814232, + 0.01385867316275835, + 0.01778566464781761, + -0.00820026732981205, + -0.0046563963405787945, + -0.026906896382570267, + -0.008192899636924267, + 0.017962491139769554, + -0.010631613433361053, + 0.025403883308172226, + -0.009776958264410496, + -0.010277963243424892, + -0.010351640172302723, + -0.005536838434636593, + -0.015310113318264484, + -0.02238311991095543, + -0.023871397599577904, + 0.0019727058243006468, + -0.005949430167675018, + -0.0008353147422894835, + 0.021867379546165466, + -0.003365203971043229, + 0.020408572629094124, + 0.007459811866283417, + 0.010985263623297215, + -0.0020850636065006256, + 0.005551573820412159, + -0.02286938950419426, + 0.003560448531061411, + -0.0024755524937063456, + -0.00011149425699841231, + 0.0069661750458180904, + 0.009997989982366562, + 0.0014790688874199986, + -0.03333154693245888, + 0.0369269885122776, + 0.008067648857831955, + -0.016444740816950798, + 0.022633621469140053, + -0.0035051906015723944, + 0.025035496801137924, + 0.006723040249198675, + -0.01372605375945568, + -0.0053563290275633335, + -0.013210314325988293, + -0.01778566464781761, + 0.0029931345488876104, + -0.019627593457698822, + -0.010093769989907742, + 0.00560314767062664, + -0.025831211358308792, + 0.0159437358379364, + -0.012657735496759415, + -0.01178834494203329, + -2.631943607411813e-5, + -0.006516744382679462, + -0.0013575016055256128, + -0.012937708757817745, + 0.021882114931941032, + 0.005242129787802696, + 0.008966510184109211, + 0.015148023143410683, + 0.012156730517745018, + -0.01143469475209713, + -0.02711319364607334, + -0.008509711362421513, + -0.00038404218503274024, + 0.010425317101180553, + 0.00018707090930547565, + 0.005588412284851074, + 0.01809510961174965, + -0.01572270505130291, + 0.01587005890905857, + -0.006778298411518335, + 0.011419959366321564, + -0.005046884994953871, + 0.004475887399166822, + 0.01397655624896288, + 0.008163428865373135, + -0.011456797830760479, + 0.02061486802995205, + -0.02151373028755188, + -0.015103816986083984, + 0.0008205792983062565, + -0.028675148263573647, + -0.0075887469574809074, + -0.009953783825039864, + 0.00020019464136566967, + -0.012370394542813301, + -0.008391828276216984, + -0.027967847883701324, + -0.014551238156855106, + 0.017402544617652893, + -0.0029268250800669193, + 0.012200936675071716, + 0.014403884299099445, + -0.02527126483619213, + 0.004862692207098007, + -0.003359678201377392, + -0.006855659186840057, + -0.007986603304743767, + -0.026906896382570267, + -0.010359007865190506, + 0.022854654118418694, + 0.008133958093822002, + 0.007434024941176176, + -0.0033173139672726393, + -0.008119222708046436, + -0.01903817616403103, + 0.011633622460067272, + -0.0023116208612918854, + 0.014565973542630672, + -0.0037114867009222507, + -0.028630942106246948, + -0.011839918792247772, + -0.014580708928406239, + 0.005050568841397762, + -0.01062424574047327, + -0.013431345112621784, + -0.023915603756904602, + -0.00659042177721858, + 0.018551908433437347, + 0.031504351645708084, + -0.014204955659806728, + -0.006745143793523312, + 0.00568050891160965, + -0.015958471223711967, + 0.007927661761641502, + 0.014514399692416191, + 0.0075887469574809074, + -0.01085264515131712, + -0.006575685925781727, + 0.005260549020022154, + 0.02211788296699524, + 0.0031718015670776367, + 0.009135967120528221, + -0.006767246872186661, + -0.018183521926403046, + -0.003252846421673894, + 1.9440984033280984e-5, + 0.016916275024414062, + -0.018065638840198517, + -0.007876087911427021, + -0.0023816139437258244, + 0.007728733588010073, + -0.035453446209430695, + -0.011825183406472206, + -0.017387809231877327, + 0.006520428229123354, + -0.0008413009927608073, + 0.015383790247142315, + -0.015162758529186249, + 0.007253515999764204, + 0.007393502630293369, + 0.012495645321905613, + 0.014278632588684559, + -0.015575350262224674, + -0.0016687875613570213, + -0.00694038812071085, + -0.012053582817316055, + -0.002396349562332034, + 0.01952444575726986, + 0.004184862598776817, + 0.02020227536559105, + 0.008111855015158653, + -0.006045210640877485, + 0.028306763619184494, + -0.0126208970323205, + -0.015192229300737381, + 0.006435699760913849, + 0.004085398279130459, + 0.0015002511208876967, + -0.014131278730928898, + -0.01405023317784071, + 0.009003348648548126, + -0.00232267240062356, + -0.0014827527338638902, + -0.020997989922761917, + -0.00859812367707491, + -0.0052863359451293945, + 0.009769590571522713, + 0.007861352525651455, + 0.011191559955477715, + -0.011766241863369942, + -0.005080040078610182, + 0.0015573508571833372, + -0.010189550928771496, + -0.016533153131604195, + -0.012451439164578915, + 0.01756463386118412, + 0.02214735373854637, + 0.010705290362238884, + 0.01914132572710514, + -0.010388478636741638, + -0.0030889147892594337, + -0.011545210145413876, + -0.0005576439434662461, + 0.005665773060172796, + -0.0030925986357033253, + 8.651310054119676e-5, + -0.017933020368218422, + -0.021941056475043297, + 0.020290689542889595, + 0.004674815572798252, + -0.0008592598023824394, + 0.0019119222415611148, + -0.017888814210891724, + -0.0004358464211691171, + -0.0012488277861848474, + 0.003070495557039976, + -0.02963295206427574, + 0.00620730035007, + 0.008141325786709785, + 0.018669791519641876, + 0.004361687693744898, + -0.0037870057858526707, + -0.00868653692305088, + -0.009747487492859364, + 0.010602142661809921, + 0.01153047475963831, + 0.030148692429065704, + 0.004682183265686035, + -0.00023922052059788257, + 0.012805089354515076, + 0.009356998838484287, + 0.022589415311813354, + 0.0008279470494017005, + 0.007758204359561205, + 0.007271935231983662, + 0.002330040093511343, + 0.0023355658631771803, + 0.023871397599577904, + -0.007853984832763672, + -0.0007754520629532635, + 0.014374412596225739, + 0.00359728722833097, + -0.013593435287475586, + -0.014433355070650578, + -0.002121902070939541, + -0.020776957273483276, + -0.011221030727028847, + 0.029647687450051308, + -0.012613529339432716, + 0.0019211318576708436, + 0.02170529030263424, + -0.01877293922007084, + -0.0060046883299946785, + 0.0007091425941325724, + 0.0029912926256656647, + 0.005956797860562801, + 0.028763560578227043, + -0.0018990286625921726, + 0.023871397599577904, + -0.01453650277107954, + -0.0037372736260294914, + -0.011744138784706593, + 0.012613529339432716, + 0.00380910886451602, + -0.018743468448519707, + -0.01651841774582863, + -0.02136637456715107, + 0.01809510961174965, + -0.03359678387641907, + 0.00901071634143591, + -0.011994641274213791, + 0.00620730035007, + -0.0015766911674290895, + 0.014146014116704464, + -0.016385799273848534, + -0.007632953114807606, + -0.0014652544632554054, + 0.00868653692305088, + 0.023532483726739883, + -0.0008970193448476493, + 0.012127259746193886, + -0.007485598791390657, + 0.03893100842833519, + 0.023900868371129036, + -0.0037464832421392202, + 0.013158739544451237, + 0.02783522941172123, + 0.011198927648365498, + 0.012775618582963943, + -0.0005622488097287714, + -0.013210314325988293, + -0.01246617455035448, + 0.00658305361866951, + -0.020600132644176483, + 0.004247487988322973, + 0.0163563285022974, + 0.00885599385946989, + 0.00926858652383089, + 0.011066309176385403, + 0.0031754854135215282, + -0.03719222918152809, + -0.02275150641798973, + -0.006899865809828043, + 0.021793702617287636, + 0.013947085477411747, + -0.005120562389492989, + -0.003206798108294606, + 0.004549564328044653, + 0.011346281506121159, + 0.01297454722225666, + -0.004689550958573818, + 0.02083589881658554, + 0.002256362931802869, + 0.01463228277862072, + 0.010793703608214855, + -0.00026224463363178074, + 0.013527126051485538, + -0.020600132644176483, + -0.001363948336802423, + 0.017770929262042046, + 0.0037464832421392202, + 0.03215271234512329, + 0.009025451727211475, + -0.015929000452160835, + 0.018109844997525215, + 0.009511720389127731, + -0.0008394590695388615, + 0.00527528440579772, + -0.006015739869326353, + 0.025565972551703453, + 0.00416644336655736, + -0.02083589881658554, + -0.01625318080186844, + 0.008959142491221428, + 0.010837909765541553, + 0.017859341576695442, + 0.005415271036326885, + 0.02369457297027111, + 0.010867380537092686, + -0.0009306345600634813, + -0.010963160544633865, + -0.024431344121694565, + 0.013409242033958435, + 0.006314132362604141, + -0.017991961911320686, + 0.018743468448519707, + 0.008340254426002502, + 0.009600133635103703, + 0.013829202391207218, + 0.020865369588136673, + -0.01715204119682312, + -0.01715204119682312, + 0.01150837168097496, + 0.00174706953112036, + -0.031504351645708084, + -0.010778968222439289, + -0.0012847454054281116, + 0.005883120931684971, + 0.003042866475880146, + 0.0017369389533996582, + -0.005511051043868065, + 0.0009246483095921576, + -0.0005636302521452308, + 0.03772270306944847, + 0.017284661531448364, + 0.011493636295199394, + -0.020894840359687805, + -0.010263227857649326, + 0.0013547387206926942, + 0.0010139818768948317, + 0.00966644287109375, + 0.006715672556310892, + -0.009253851138055325, + -0.018492966890335083, + 0.01591426506638527, + -0.006148358806967735, + -5.545932799577713e-5, + 0.02001071535050869, + 0.020600132644176483, + 0.010410581715404987, + -0.008922303095459938, + 0.0017700936878100038, + -0.013961820863187313, + -0.02151373028755188, + -0.008391828276216984, + 0.00678934995085001, + 0.003989617805927992, + -0.01377025991678238, + -0.01853717304766178, + -0.0004991627065464854, + 0.001701021334156394, + 0.003424145746976137, + 0.010300066322088242, + -0.01805090345442295, + -0.017269926145672798, + -0.002884460613131523, + -0.0026929001323878765, + -0.01880240999162197, + 0.011633622460067272, + 0.011574680916965008, + -0.007677159737795591, + 0.03156329318881035, + -0.0277615524828434, + 0.007780307438224554, + 0.013519758358597755, + -0.01620897464454174, + -0.007441392634063959, + -0.0022158403880894184, + -0.0039012054912745953, + -0.03118017129600048, + -0.014713328331708908, + 0.005533154588192701, + 0.009850636124610901, + 0.004416945390403271, + -0.009187540970742702, + 0.002921299310401082, + -0.006538847461342812, + 0.013077694922685623, + -0.009622236713767052, + 0.0007247989997267723, + -0.013313462026417255, + -0.004501674324274063, + -0.0034573005978018045, + 0.028645677492022514, + -0.0019579704385250807, + 0.027938377112150192, + -0.01925920881330967, + 0.027820494025945663, + -0.00840656366199255, + 0.015693234279751778, + -0.002974715083837509, + -0.00779504282400012, + 0.022633621469140053, + 0.005658405367285013, + 0.016238445416092873, + -0.00953382346779108, + -0.017476221546530724, + -0.014676488935947418, + -0.0032417948823422194, + 0.029765570536255836, + -0.005179503932595253, + 0.0036709641572088003, + -0.00502109806984663, + -0.01348291989415884, + -0.00010527774429647252, + -0.004365371540188789, + 0.02049698494374752, + -0.006424647755920887, + 0.00449430663138628, + 0.012797721661627293, + -0.012709309346973896, + 0.01899397000670433, + -0.00389752141200006, + -0.009018084034323692, + 0.009673810563981533, + 0.01344608049839735, + 0.010638981126248837, + 0.020791692659258842, + 0.007058271672576666, + -0.008133958093822002, + 0.014072336256504059, + -0.006041526794433594, + 0.01651841774582863, + -0.0028420963790267706, + 0.009681178256869316, + 0.008016074076294899, + -0.020261216908693314, + 0.01707836426794529, + 0.007632953114807606, + 0.021381109952926636, + 0.0032786333467811346, + -0.009710649028420448, + -0.01955391652882099, + 0.0005332384025678039, + -0.002179001923650503, + -0.0034554586745798588, + -0.014669121243059635, + 0.02121902070939541, + 0.015074346214532852, + -0.0050026788376271725, + -0.012429336085915565, + 0.013475551269948483, + -0.001782987150363624, + -0.012922973372042179, + 0.014868049882352352, + -0.012046215124428272, + 0.030060280114412308, + -0.008052913472056389, + -0.008716007694602013, + -0.0008270260877907276, + -0.025448089465498924, + -0.0026339583564549685, + 0.015825852751731873, + 0.0012414600932970643, + -0.006144674960523844, + -1.4893721527187154e-5, + -0.0006373074138537049, + 0.006126255262643099, + -0.018183521926403046, + -0.018817145377397537, + -0.01760884001851082, + -0.022442061454057693, + 0.0059089078567922115, + -0.03595445305109024, + -0.028984593227505684, + 0.014573341235518456, + -0.004479571245610714, + -0.000764400465413928, + 0.0010296382242813706, + -0.023561954498291016, + -0.005643669981509447, + -0.017107835039496422, + 0.009975886903703213, + -0.008207635022699833, + -0.0081781642511487, + -0.00013066183601040393, + -0.007964500226080418, + 0.01418285258114338, + 0.01120629534125328, + 0.01911185495555401, + -0.026509040966629982, + 0.016046883538365364, + 0.00036953698145225644, + 0.004070662893354893, + -0.0027334224432706833, + 0.00025165354600176215, + -0.027938377112150192, + 0.017107835039496422, + -0.00424012029543519, + -0.020526455715298653, + 0.018596114590764046, + 0.0040338244289159775, + -0.005639986135065556, + 0.009467514231801033, + 0.0014274949207901955, + 0.005065304227173328, + -0.020217010751366615, + 0.001536168740130961, + 0.015811117365956306, + -0.00119909574277699, + 0.012326188385486603, + 0.007131948601454496, + -0.02207367494702339, + 0.0009398442343808711, + 0.016179503872990608, + -0.00389752141200006, + -0.024534493684768677, + 0.005120562389492989, + -0.005827862769365311, + -0.00443904846906662, + 0.017402544617652893, + -0.025978565216064453, + -0.014809108339250088, + -0.011257869191467762, + -0.005872069392353296, + 0.021012725308537483, + -0.02466711215674877, + -0.006675150245428085, + -0.01903817616403103, + 0.005739450454711914, + 0.008310782723128796, + -0.013932350091636181, + -0.013062959536910057, + 0.017181511968374252, + 0.0138807762414217, + -0.002039015293121338, + 0.00674145994707942, + 0.012886134907603264, + -0.007168787065893412, + 0.0078024109825491905, + 0.02121902070939541, + 0.017505692318081856, + -0.016975216567516327, + 0.009320160374045372, + -0.002749999752268195, + -0.006881446111947298, + 0.016783656552433968, + -0.00709142629057169, + 0.007157735526561737, + -0.013129268772900105, + 0.0328010693192482, + 0.0014431512681767344, + -0.011125250719487667, + 0.012304085306823254, + -0.01921500265598297, + 0.00027513812528923154, + -0.008494975976645947, + 0.002077695680782199, + -0.0012165940133854747, + 0.011419959366321564, + 0.02516811713576317, + -0.000967012660112232, + -0.0015527460491284728, + -0.04128867760300636, + -0.009828532114624977, + -0.01865505613386631, + -0.003146014641970396, + 0.005872069392353296, + 0.018713997676968575, + 0.0073198252357542515, + 0.020776957273483276, + 0.011081044562160969, + 0.0007671634084545076, + -0.007003013510257006, + 0.00443904846906662, + 0.01816878654062748, + 0.013932350091636181, + 0.022206295281648636, + 0.00041028964915312827, + -0.018448758870363235, + -0.01628265157341957, + 0.011036837473511696, + -0.005470528732985258, + -0.028424646705389023, + -0.021351639181375504, + 0.002910247538238764, + 0.023031478747725487, + -0.016857333481311798, + 0.014315471053123474, + -0.005982585251331329, + -0.008583388291299343, + -0.0017645679181441665, + 0.00810448732227087, + -0.012178833596408367, + 0.006516744382679462, + -0.0015849798219278455, + 0.0063436031341552734, + -0.005485264118760824, + -0.01327662356197834, + 0.0032638979610055685, + 0.010565304197371006, + -0.00643938360735774, + -0.015707969665527344, + 0.006612524855881929, + 0.006505692843347788, + -0.029397185891866684, + 0.004394842311739922, + 0.00946014653891325, + -0.010793703608214855, + -0.011147353798151016, + -0.006192564964294434, + -0.007224045228213072, + 0.008111855015158653, + 0.001130944350734353, + 0.021823173388838768, + -0.010182183235883713, + -0.00761821772903204, + -0.006859343033283949, + 0.009526455774903297, + 0.00709142629057169, + -0.002022437984123826, + 0.024195577949285507, + -0.017166776582598686, + 0.005698928143829107, + 0.022780977189540863, + -0.004059611354023218, + -0.003291526809334755, + -0.008141325786709785, + -0.004877427592873573, + -0.020526455715298653, + -0.005360012874007225, + 0.003553080838173628, + 0.0061778295785188675, + 0.010661084204912186, + 0.002779470756649971, + 0.0025971196591854095, + 0.017549898475408554, + -0.010079034604132175, + -0.004641660954803228, + 0.0030925986357033253, + -0.0029728731606155634, + -0.0015076188137754798, + 0.014411251991987228, + 0.011044205166399479, + -0.003470194060355425, + 0.012156730517745018, + -0.010727393440902233, + -0.0073456126265227795, + -0.009997989982366562, + -0.017107835039496422, + -0.01688680425286293, + -0.009224379435181618, + 0.004619557876139879, + 0.017947755753993988, + -0.0040338244289159775, + 0.02124849148094654, + -0.011677829548716545, + 0.0040338244289159775, + -0.005205290857702494, + 0.002928667003288865, + 0.009659075178205967, + -0.0001589814928593114, + -0.003560448531061411, + 0.010101137682795525, + 0.013998659327626228, + -0.03016342781484127, + 0.0013740789145231247, + 0.0066972533240914345, + -0.028233086690306664, + -0.0063436031341552734, + 0.014425987377762794, + 0.003996985498815775, + 0.0031975884921848774, + 0.021837908774614334, + -0.02681848406791687, + -0.009150702506303787, + -0.005282652098685503, + 0.0189202930778265, + 0.004873743746429682, + -0.004181178752332926, + 0.006225719582289457, + 0.0013123743701726198, + -0.0006838160916231573, + -0.0016080038622021675, + -0.011685197241604328, + -0.0018014064989984035, + -0.008303415030241013, + -0.03468720614910126, + -0.0025602811947464943, + -0.007728733588010073, + -0.006218351889401674, + -0.016989951953291893, + -0.018448758870363235, + 0.006107836030423641, + 0.0037501673214137554, + -0.018949763849377632, + 0.004162759054452181, + 0.005636302288621664, + -0.00994641613215208, + 0.011110515333712101, + -0.016783656552433968, + -0.029765570536255836, + 0.011699932627379894, + -0.0023576689418405294, + 0.00792029406875372, + -0.00537843257188797, + 0.01463228277862072, + -0.004369055386632681, + -0.030738109722733498, + -0.003717012470588088, + -0.014602812007069588, + 0.0034296715166419744, + -0.011405223980545998, + 0.02565438486635685, + -0.014278632588684559, + -0.02110113762319088, + -0.006155726499855518, + -0.007868720218539238, + -0.0018327191937714815, + 0.00976222287863493, + -0.0025915938895195723, + 0.018330875784158707, + -0.013342932797968388, + 0.004777963738888502, + -0.021130608394742012, + -0.0040411921218037605, + -0.010292698629200459, + -0.013210314325988293, + 0.004818486049771309, + -0.0017129938350990415, + 0.013689215295016766, + 0.009526455774903297, + 0.010447420179843903, + 0.005617883056402206, + -0.004096449818462133, + 0.006774614565074444, + -0.0025823842734098434, + 0.0031754854135215282, + -0.01952444575726986, + -0.0038717344868928194, + -0.011316810734570026, + -0.009983254596590996, + -0.004998994991183281, + 0.03675016388297081, + -0.0043874746188521385, + 0.002786838449537754, + 0.003650703001767397, + 0.0005410666344687343, + -0.014926991425454617, + -0.013261888176202774, + -0.009961151517927647, + 0.026906896382570267, + -0.010351640172302723, + 0.007853984832763672, + 0.021749496459960938, + 0.027732081711292267, + 0.013085062615573406, + 0.0045532481744885445, + -0.014868049882352352, + -0.01365237683057785, + 0.012584058567881584, + -0.008583388291299343, + -0.0013731579529121518, + 0.005190555471926928, + 0.0053894841112196445, + 0.014985932968556881, + 0.005912591703236103, + 0.01015271246433258, + -0.010904219001531601, + 0.004100133664906025, + -0.011375753208994865, + 0.008517079055309296, + -0.03787005692720413, + 0.005592096131294966, + -0.0001337700814474374, + -0.0032786333467811346, + -0.0052789682522416115, + 0.014212323352694511, + -0.002584226196631789, + -0.018566643819212914, + -0.011869389563798904, + 0.008553917519748211, + 0.012370394542813301, + -0.0034738779067993164, + -0.032476890832185745, + 0.016488946974277496, + 0.0013547387206926942, + -0.004416945390403271, + 0.004748492501676083, + -0.025359677150845528, + 0.004715337883681059, + 0.024961819872260094, + 0.009143334813416004, + -0.031799059361219406, + -0.0004825853684451431, + -0.0016890488332137465, + 0.023782985284924507, + 0.0192886795848608, + 0.009482249617576599, + 0.017579369246959686, + 0.025109173730015755, + 0.009379101917147636, + 0.021042196080088615, + -0.01329872664064169, + -0.006015739869326353, + -0.007113529369235039, + 0.015781646594405174, + -0.0016227393643930554, + -0.002703951671719551, + -0.021720025688409805, + -0.009379101917147636, + -0.0012543535558506846, + 0.009393837302923203, + 0.017284661531448364, + 0.007143000140786171, + -0.017947755753993988, + -0.0066198925487697124, + -0.02267782762646675, + 0.01729939691722393, + 0.010712658055126667, + 0.017314132302999496, + 0.002545545808970928, + 0.005164768546819687, + -0.00590522401034832, + 0.004468519706279039, + -0.012628264725208282, + -0.023385129868984222, + 0.009718016721308231, + -0.019686536863446236, + 0.018492966890335083, + -0.013018753379583359, + -0.031239114701747894, + -0.010616878047585487, + 0.004229068756103516, + 0.005956797860562801, + -0.004623241722583771, + -0.011486268602311611, + -0.01775619387626648, + 0.01259879395365715, + 0.01609109155833721, + 0.02068854495882988, + -0.013453448191285133, + 0.02994239516556263, + 0.015339584089815617, + -0.006708304863423109, + -0.0019284995505586267, + -0.0022305757738649845, + 0.0031441727187484503, + -0.005890488624572754, + 0.013048224151134491, + 0.002422136487439275, + -0.0060046883299946785, + 0.005492631811648607, + 0.002121902070939541, + 0.016606830060482025, + 0.00772136589512229, + 0.004125920590013266, + -0.013512390665709972, + 0.005975217092782259, + -0.008266576565802097, + -0.0034038845915347338, + 0.002061118371784687, + -0.02313462644815445, + 0.014035497792065144, + -0.006962491199374199, + -0.021454786881804466, + -0.0022729402408003807, + 0.0018032484222203493, + -0.006152042653411627, + -0.011596783995628357, + -0.004376423079520464, + -0.007411921862512827, + -0.023326188325881958, + -0.0029894504696130753, + 0.020747486501932144, + 0.03318418934941292, + -0.003923308569937944, + 0.008833890780806541, + -0.0058057596907019615, + 0.0033744138199836016, + 0.016857333481311798, + 0.022501002997159958, + -0.0023116208612918854, + 0.00772136589512229, + -0.0013013227144256234, + -0.001108841155655682, + -0.0013363193720579147, + 0.003783321939408779, + 0.0014781479258090258, + 0.008605491369962692, + 0.024460814893245697, + 0.0005907986778765917, + 0.020261216908693314, + -0.0319758839905262, + -0.002667112974449992, + 0.010189550928771496, + -0.0020813795272260904, + 0.006671466398984194, + 0.01279035396873951, + 0.00042364365071989596, + -0.0029065636917948723, + -0.008848626166582108, + 0.014484928920865059, + -0.024387137964367867, + 0.009253851138055325, + -0.012841927818953991, + 0.028277292847633362, + 0.010668451897799969, + -0.015604821965098381, + 0.028689883649349213, + -0.025153381749987602, + 0.00803081039339304, + 0.01532484870404005, + -0.007758204359561205, + -0.019833890721201897, + 0.02558070793747902, + -0.00552947074174881, + 0.0029783989302814007, + -0.03645545616745949, + 0.016046883538365364, + 0.0006304001435637474, + 0.025845946744084358, + 0.014845946803689003, + 0.00359728722833097, + 0.02294306643307209, + 0.006424647755920887, + 0.0018492966191843152, + -0.003206798108294606, + 0.005573676899075508, + -0.019126590341329575, + 0.02124849148094654, + 0.004520093556493521, + -0.006752511486411095, + -0.0072498321533203125, + 0.01365237683057785, + 0.006457802839577198, + -0.0053489613346755505, + -0.014823843725025654, + -0.006829872261732817, + 0.0013363193720579147, + 0.03442196547985077, + 0.014263897202908993, + -0.004674815572798252, + -0.007504018489271402, + 0.004744808655232191, + -0.006888813804835081, + 0.010196918621659279, + -0.000711905537173152, + 0.010955792851746082, + 0.004873743746429682, + 0.006115203723311424, + -0.02088010497391224, + -0.018404552713036537, + -0.022972537204623222, + -0.016916275024414062, + 0.008789684623479843, + -0.002910247538238764, + 0.011066309176385403, + -0.010793703608214855, + 0.009504352696239948, + -0.015737440437078476, + -0.0009716174681670964, + -0.02967715822160244, + -0.0010517414193600416, + 0.015280641615390778, + -0.005628934595733881, + -0.026199596002697945, + -0.020968519151210785, + 0.009961151517927647, + 0.0027389482129365206, + -0.002538178116083145, + 0.023591425269842148, + -0.005404219496995211, + -0.038341592997312546, + -0.007201942149549723, + 0.0038459475617855787, + -0.007279302924871445, + 0.00359728722833097, + 0.003834896022453904, + -0.0055773607455194, + -0.0030907567124813795, + -0.008325518108904362, + -0.005824178922921419, + -0.0037078028544783592, + -0.006424647755920887, + -0.002819993067532778, + -0.029367713257670403, + -0.00848024059087038, + 0.021557936444878578, + -0.019716007634997368, + 0.008649698458611965, + -0.0036304418463259935, + 0.013998659327626228, + -0.0008670880342833698, + 0.0012792196357622743, + 0.0008261051261797547, + 0.011817815713584423, + -0.02418084256350994, + 0.008318150416016579, + 0.04019825533032417, + 0.021543201059103012, + 0.009828532114624977, + 0.019642328843474388, + 0.0014799898490309715, + -0.002646851819008589, + 0.023075684905052185, + -0.024799730628728867, + 0.009261218830943108, + -0.015089081600308418, + -0.025006026029586792, + 0.01158204860985279, + 0.002337407786399126, + 0.006045210640877485, + -0.013217682018876076, + 0.01083054207265377, + 0.0007363110780715942, + 0.0035733419936150312, + 0.0009306345600634813, + 0.019642328843474388, + 0.017741458490490913, + 0.021425316110253334, + -0.013807099312543869, + 0.003341258969157934, + 0.006258874200284481, + 0.007809778675436974, + -0.019760213792324066, + -0.004571667406708002, + 0.006748827639967203, + -0.008369725197553635, + 0.0013657902600243688, + -0.0018971867393702269, + 0.009202276356518269, + -0.02715739980340004, + -0.009931680746376514, + 0.00974011979997158, + 0.0007363110780715942, + -0.00190455443225801, + -0.01620897464454174, + -0.028630942106246948, + -0.005017414223402739, + 0.02895512245595455, + 0.006933020427823067, + -0.008060281164944172, + 0.0013464500661939383, + 0.011729403398931026, + -0.00261001312173903, + -0.021543201059103012, + 0.0033154720440506935, + 0.00709142629057169, + 0.01647421158850193, + 0.01693101041018963, + 0.0028973540756851435, + 0.00653516361489892, + 0.02023174613714218, + -0.0218968503177166, + 0.009445411153137684, + -0.015206964686512947, + 0.013733421452343464, + -0.0007128264987841249, + 0.013549229130148888, + 0.01229671761393547, + 0.018183521926403046, + -0.009349631145596504, + 0.017947755753993988, + -0.014728063717484474, + -0.00870864000171423, + 0.006612524855881929, + 0.05080776661634445, + 0.018227728083729744, + -0.007765572052448988, + 0.004420629236847162, + -0.0033228397369384766, + -0.03781111538410187, + -0.0014624915784224868, + 0.007677159737795591, + -0.034245140850543976, + 0.018227728083729744, + 0.01377025991678238, + -0.003168117720633745, + 0.006796717643737793, + 0.011066309176385403, + -0.015707969665527344, + 0.007979235611855984, + -0.013121901080012321, + -0.013689215295016766, + 0.0027315805200487375, + -0.00915807019919157, + -0.00014585774624720216, + 0.00610415218397975, + -0.01986336149275303, + -0.0075961146503686905, + 0.006181513424962759, + -0.01899397000670433, + -0.00048442729166708887, + -0.013438712805509567, + -0.012355659157037735, + 0.006921968888491392, + 0.03156329318881035, + -0.017314132302999496, + -0.02362089604139328, + 0.004177494905889034, + -0.00017325644148513675, + 0.005360012874007225, + -0.006277293432503939, + 0.015855323523283005, + -0.010764232836663723, + -0.01405023317784071, + -0.03754587844014168, + -0.010889483615756035, + 0.003372571896761656, + -0.021395845338702202, + -0.017240453511476517, + -0.005441057961434126, + -0.010395846329629421, + 0.006314132362604141, + -0.005197923164814711, + -0.006328867748379707, + 0.01741728000342846, + 0.016709979623556137, + -0.0149343591183424, + 0.011854654178023338, + 0.00443904846906662, + 0.006605157162994146, + 0.0009140571928583086, + -0.00658305361866951, + 0.006597789470106363, + 0.01696048118174076, + -0.011029469780623913, + -0.0005581044242717326, + 0.003718854393810034, + 0.041701268404722214, + -0.0016245812876150012, + 0.011920963414013386, + 0.0109484251588583, + 0.017549898475408554, + -0.012429336085915565, + 0.006984594278037548, + 0.006984594278037548, + -0.009261218830943108, + 2.7326741474098526e-5, + -0.004096449818462133, + -0.030855992808938026, + -0.00946014653891325, + -0.027319489046931267, + -0.02068854495882988, + -0.022957801818847656, + 0.02989818900823593, + 0.014249161817133427, + 0.016297386959195137, + -2.3815564418327995e-5, + -0.011589416302740574, + -0.0046637640334665775, + 0.006516744382679462, + -0.020526455715298653, + 0.013910247012972832, + 0.0020500668324530125, + 0.00580207584425807, + -0.010786335915327072, + -0.018890822306275368, + -0.007253515999764204, + -9.186620445689186e-5, + 0.013409242033958435, + -0.010889483615756035, + -0.0126208970323205, + -0.002188211539760232, + 0.0037943734787404537, + 0.01279035396873951, + 0.01335030049085617, + 0.004394842311739922, + -0.003453616751357913, + 0.0036838578525930643, + -0.021602142602205276, + -0.025521766394376755, + -0.015737440437078476, + 0.002420294564217329, + 0.004800066817551851, + 0.02456396445631981, + 0.00023852978483773768, + 0.01651841774582863, + -0.00017671004752628505, + -0.0004637055972125381, + -0.0040411921218037605, + 0.016651036217808723, + 0.007905558682978153, + 0.001701021334156394, + 0.009526455774903297, + 0.0059015401639044285, + -0.014507031999528408, + 0.012908237986266613, + 0.045827191323041916, + 0.009253851138055325, + 0.004958472680300474, + -0.0053821164183318615, + -0.0006603315123356879, + 0.0005369222490116954, + -0.012834560126066208, + -0.02395981177687645, + 0.0096443397924304, + -0.0008587993215769529, + -0.020069656893610954, + -0.007942397147417068, + -0.006450435146689415, + -0.0096443397924304, + -0.0018078532302752137, + -0.010771600529551506, + 0.025374412536621094, + -0.007935029454529285, + -0.01327662356197834, + 0.020438043400645256, + 0.0006234929314814508, + 0.015265906229615211, + 0.014094440266489983, + -2.8089414627174847e-5, + -0.017093099653720856, + 0.006826188415288925, + 0.009975886903703213, + 0.003919624723494053, + -0.010580039583146572, + -0.0032141658011823893, + 0.00915807019919157, + 0.0074303410947322845, + -0.0011576523538678885, + 0.0003361520357429981, + -0.016754185780882835, + 0.013048224151134491, + 0.0041922302916646, + -0.02594909444451332, + -0.021498993039131165, + 0.017844606190919876, + 0.0019377091666683555, + 0.021867379546165466, + 0.008170796558260918, + -0.005746818147599697, + -0.008303415030241013, + 0.013659744523465633, + -0.02764366939663887, + -0.023237774148583412, + -0.020555926486849785, + 0.0005378432106226683, + -0.0013096114853397012, + 0.0188760869204998, + 0.002945244312286377, + 0.016606830060482025, + -0.004951104987412691, + 0.01190622802823782, + -0.022486267611384392, + -0.0036617545410990715, + -0.003162591950967908, + 0.023782985284924507, + 0.0043801069259643555, + 0.0052863359451293945, + -0.02080642804503441, + 0.009629604406654835, + 0.00013964124082121998, + -0.0011162088485434651, + 0.050866708159446716, + -0.006752511486411095, + -0.0015610347036272287, + 0.031916942447423935, + -0.010697922669351101, + -0.012782986275851727, + -0.01153047475963831, + 0.009135967120528221, + -0.014278632588684559, + -0.009128599427640438, + -0.036160748451948166, + 0.022221030667424202, + -0.002114534378051758, + 0.0023245143238455057, + -0.04276221990585327, + 0.01162625476717949 + ], + "6be5647b-832e-48ae-aa43-e107420df194": [ + -0.027424849569797516, + -0.016292141750454903, + 0.0023109964095056057, + 0.016891004517674446, + 0.009359152056276798, + -0.029006460681557655, + 0.01738237962126732, + 0.023478496819734573, + -0.035778217017650604, + 0.005577870178967714, + 0.005785169079899788, + 0.01061062142252922, + 0.021497642621397972, + -0.009290052577853203, + -0.04357879236340523, + 0.028883617371320724, + -0.006468486972153187, + 0.018672237172722816, + 0.011240195482969284, + -0.016629962250590324, + 0.06387870758771896, + -0.015209581702947617, + -0.0356246642768383, + 0.01910218968987465, + -0.00783128384500742, + -0.012046357616782188, + -0.0027294326573610306, + -0.00241272640414536, + -0.016461052000522614, + 0.009911948814988136, + -0.00185417162720114, + 0.009274696931242943, + 0.01764342188835144, + 0.012883230112493038, + -0.006929150782525539, + -0.034549780189991, + 0.006376354023814201, + 0.006019339896738529, + -0.011086640879511833, + -0.03977063670754433, + -0.04585139825940132, + 0.04560571163892746, + 0.021881528198719025, + 0.018365127965807915, + -0.03292210400104523, + -0.010011758655309677, + -0.023539917543530464, + -0.01601574383676052, + 0.004053840879350901, + 0.013067495077848434, + -0.0176587775349617, + 0.010848631151020527, + -0.01312123890966177, + 0.006848534569144249, + -0.002445356687530875, + -0.041244760155677795, + 0.043118126690387726, + 0.08580630272626877, + 0.020100295543670654, + -0.020361337810754776, + 0.01745915599167347, + 0.013858301565051079, + -0.0175819993019104, + -0.01395811140537262, + -0.032277174293994904, + -0.016246074810624123, + -0.018165508285164833, + -0.03473404794931412, + -0.05629311129450798, + -0.02618105709552765, + 0.012215266935527325, + 0.0321236178278923, + -0.029298214241862297, + -0.006050050724297762, + 0.006583652924746275, + -0.003823509206995368, + 0.022142570465803146, + -0.010126925073564053, + 0.010956119745969772, + 0.006449292413890362, + -0.004349433816969395, + -0.007151804864406586, + -0.010948441922664642, + 0.0014405339024960995, + 0.0881403312087059, + -0.009305408224463463, + 0.0007375418790616095, + -0.03169366717338562, + 0.0156779233366251, + -0.00962019432336092, + -0.004276494961231947, + 0.05506467446684837, + -0.010165313258767128, + -0.01729024574160576, + -0.004829291719943285, + 0.010879342444241047, + -0.0015652970178052783, + -0.0009261260856874287, + 0.010879342444241047, + 0.01951678842306137, + 0.02787015773355961, + 0.025735748931765556, + -0.03998561203479767, + 0.016200007870793343, + -0.015040671452879906, + -0.007654696237295866, + -0.011516593396663666, + -0.01050313375890255, + -0.002917537000030279, + 0.06261955946683884, + -0.006357159931212664, + -0.05976344272494316, + 0.015094415284693241, + 0.011969580315053463, + -0.05042732506990433, + -0.0065030367113649845, + -0.009535740129649639, + -0.007524174638092518, + 0.04007774591445923, + -0.044807229191064835, + 0.009382185526192188, + -0.007570241112262011, + 0.055218227207660675, + 0.014349675737321377, + -0.0009318843949586153, + 0.010203702375292778, + -0.0062458328902721405, + -0.015416880138218403, + 0.006848534569144249, + 0.02103697881102562, + -0.024952620267868042, + -0.029160015285015106, + 0.00665275240316987, + 0.030787693336606026, + -0.0005398403154686093, + 0.030280964449048042, + 0.020591670647263527, + 0.062865249812603, + -0.0018004275625571609, + 0.022173281759023666, + -0.06688837707042694, + -0.02077593468129635, + -0.017167402431368828, + 0.023417074233293533, + 0.02096020057797432, + 0.039555661380290985, + -0.06289596110582352, + 0.036177460104227066, + -0.042718883603811264, + 0.02275678887963295, + -0.044561538845300674, + -0.032185040414333344, + 0.006967539433389902, + 0.00747426925227046, + 0.058842115104198456, + -0.016691382974386215, + -0.03381272032856941, + 0.0033820397220551968, + -0.020361337810754776, + 0.04671130329370499, + 0.046404194086790085, + -0.07776004076004028, + -0.018779724836349487, + -0.006268865894526243, + 0.020499536767601967, + 0.01500996109098196, + 0.026964185759425163, + 0.03184721991419792, + -0.04195111244916916, + 0.017244180664420128, + 0.02264930121600628, + -0.006192088592797518, + -0.008330335840582848, + -0.028576508164405823, + 0.023908449336886406, + 0.00016771040100138634, + 0.04244248569011688, + 0.010910052806138992, + 0.04029272124171257, + -0.032676417380571365, + -0.027271294966340065, + -0.025305796414613724, + 0.00029679221916012466, + -0.030818404629826546, + -0.026703141629695892, + 0.018027307465672493, + 0.0024971815291792154, + 0.01568560115993023, + 0.019962096586823463, + -0.02119053341448307, + -0.02619641274213791, + -0.018042663112282753, + -0.002460712334141135, + 0.02467622235417366, + -0.004176684655249119, + -0.0744432657957077, + 0.0036680351477116346, + -0.002391612622886896, + 0.01581612229347229, + 0.0036008551251143217, + -0.014080955646932125, + -0.05082656815648079, + -0.0321236178278923, + 0.05758297070860863, + -0.01215384528040886, + 0.03482617810368538, + 0.0072861649096012115, + -0.0038139119278639555, + 0.011854413896799088, + -0.03467262536287308, + 0.006368676200509071, + -0.03157082200050354, + 0.011754603125154972, + 0.010341901332139969, + -0.04207395762205124, + 0.029513191431760788, + -0.014395742677152157, + 0.019992806017398834, + -0.023770250380039215, + -0.02315603196620941, + 0.016430340707302094, + -0.03200077638030052, + 0.0005907053127884865, + -0.04766334220767021, + -0.058627139776945114, + 0.0033705232199281454, + 0.00968161690980196, + 0.04707983508706093, + -0.030250253155827522, + 0.013259438797831535, + 0.03826580196619034, + -0.010057825595140457, + 0.0013234486104920506, + -0.012038679793477058, + 0.009267019107937813, + 0.044776517897844315, + 0.0039425138384103775, + 0.02966674603521824, + -0.0065030367113649845, + -0.02624247781932354, + 0.012054034508764744, + 0.02783944644033909, + 0.0021094561088830233, + -0.010917730629444122, + -0.01062597706913948, + -0.005159433931112289, + -0.0031382718589156866, + 0.0013579983497038484, + 0.03279925882816315, + -0.0002802371163852513, + -0.015532046556472778, + 0.02430769056081772, + 0.018733659759163857, + -0.017889108508825302, + 0.01565488986670971, + 0.019962096586823463, + 0.04919888824224472, + -0.04345594719052315, + 0.0014933183556422591, + -0.021359441801905632, + -0.028453664854168892, + -0.0006070204544812441, + 0.022357547655701637, + -0.02479906566441059, + 0.03556324169039726, + -0.03556324169039726, + 0.034365516155958176, + 0.01577005535364151, + 0.009159530512988567, + 0.03209290653467178, + -0.02297176606953144, + -0.007689245976507664, + 0.01947072148323059, + -0.003731376491487026, + -0.016384273767471313, + -0.013727779500186443, + -0.0028023712802678347, + -9.387223690282553e-5, + -0.0015940885059535503, + -0.004165167920291424, + 0.0123304333537817, + -0.03639243543148041, + 0.01484105084091425, + 0.056784484535455704, + -0.0005110488273203373, + 0.008913843892514706, + -0.018472615629434586, + -0.006810145918279886, + -0.020023517310619354, + -0.02106768824160099, + -0.03006598725914955, + -0.0016891004052013159, + -0.006318771280348301, + 0.03375129774212837, + 0.01725953444838524, + -0.00014419735816773027, + -0.027163805440068245, + -0.012983039952814579, + -0.020253850147128105, + -0.007197871338576078, + -0.029359636828303337, + -0.009581806138157845, + 0.0039386749267578125, + -0.0389721542596817, + 0.030219541862607002, + -0.0113400062546134, + 0.032185040414333344, + 0.017167402431368828, + -0.003731376491487026, + 0.0032879875507205725, + 0.036177460104227066, + -0.010172991082072258, + -0.002942489692941308, + -0.016399629414081573, + 0.010741143487393856, + -0.005412799306213856, + -0.013052139431238174, + -0.024906553328037262, + -0.027225228026509285, + -0.01784304343163967, + 0.0002775978937279433, + 0.0012533892877399921, + -0.03838864713907242, + 0.03124835714697838, + 0.01575469970703125, + -0.02111375518143177, + 0.027501625940203667, + -0.016507117077708244, + -0.04360950365662575, + -0.04075338691473007, + -0.048124007880687714, + -0.01950143277645111, + -0.03848077729344368, + -0.04557500034570694, + -0.033996984362602234, + -0.04683414846658707, + -0.025873947888612747, + -0.037958692759275436, + 0.011009863577783108, + -0.0023724182974547148, + 0.0011151902144774795, + -0.028484376147389412, + -0.0059809512458741665, + -0.026012146845459938, + 0.0044799549505114555, + -0.028852906078100204, + 0.018411194905638695, + 0.005339860450476408, + -0.021758684888482094, + 0.018319061025977135, + 0.00099906453397125, + -0.00869118981063366, + 0.00796180497854948, + 0.007347587030380964, + 0.05592457950115204, + 0.026902763172984123, + -0.015294036827981472, + -0.0005364813259802759, + 0.013558870181441307, + -0.00968161690980196, + 0.026933474466204643, + -0.03157082200050354, + -0.04081480950117111, + -0.0028868261724710464, + -0.007274648640304804, + 0.02269536815583706, + 0.010134602896869183, + -0.012698964215815067, + 0.02266465686261654, + 0.04615850746631622, + -0.02469157800078392, + -0.016107875853776932, + 0.020315270870923996, + -0.04158258065581322, + -0.005032751709222794, + -0.031094802543520927, + 0.03673025593161583, + 0.0018848825711756945, + -0.027424849569797516, + 0.01481801737099886, + -0.015071382746100426, + 0.009098108857870102, + 0.018088730052113533, + -0.03930997475981712, + 0.05116438865661621, + 0.031186936423182487, + -0.003984741400927305, + 0.0062419939786195755, + 0.023432429879903793, + 0.018764371052384377, + -0.04388590157032013, + 0.03464191406965256, + -0.014318965375423431, + 0.010756498202681541, + -0.014649107120931149, + -0.016568539664149284, + -0.0003498165460769087, + 0.019900674000382423, + -0.0021459253039211035, + -0.01397346705198288, + 0.005908012855798006, + 0.02467622235417366, + 0.012967684306204319, + 0.007397491950541735, + 0.03461120277643204, + -0.03362845256924629, + -0.008576023392379284, + -0.018226929008960724, + 0.004794741980731487, + -0.009197919629514217, + 0.02610427886247635, + -0.008453180082142353, + 0.0006550062680616975, + 0.012752708047628403, + 0.051625050604343414, + 0.0033877980895340443, + 0.047970451414585114, + 0.016798870638012886, + -0.0064838421531021595, + -0.04182826727628708, + 0.03160153329372406, + 0.010418678633868694, + 0.027532337233424187, + 0.0175819993019104, + -0.004422372207045555, + 0.016077164560556412, + 0.0030231059063225985, + 0.04158258065581322, + -0.03716021031141281, + -0.024154135957360268, + 0.022035082802176476, + 0.04198182374238968, + 0.013597258366644382, + 0.010533844120800495, + -0.003013508627191186, + 0.004606637638062239, + 0.022157926112413406, + -0.030419163405895233, + -0.01316730584949255, + -4.3697076762327924e-5, + 0.009597161784768105, + 0.014764273539185524, + -0.010787209495902061, + -0.018825791776180267, + -0.01767413318157196, + -0.016722094267606735, + -0.020591670647263527, + 0.008614412508904934, + -0.0002672809350769967, + 0.018641525879502296, + -0.004180523566901684, + 0.038081537932157516, + -0.010126925073564053, + 0.021605130285024643, + 0.00220542773604393, + -0.012007968500256538, + 0.004456921946257353, + -0.04176684841513634, + -0.0123304333537817, + -0.05402050167322159, + -0.03001992218196392, + -0.01149356085807085, + -0.00032054519397206604, + -0.008998299017548561, + 0.04182826727628708, + -0.030434519052505493, + -0.001485640648752451, + 0.02805442176759243, + 0.019854607060551643, + 0.037743717432022095, + 0.0005667124059982598, + 0.0017418848583474755, + -0.03697594255208969, + 0.021758684888482094, + 0.0010604863055050373, + -0.006725690793246031, + -0.011792992241680622, + 0.0149946054443717, + 0.02963603474199772, + -0.012960006482899189, + 0.006057728547602892, + 0.005286116618663073, + -0.015424557961523533, + 0.007432041689753532, + -0.02995849959552288, + -0.002280285581946373, + -0.022372903302311897, + -0.07204781472682953, + -0.013704746961593628, + -0.03725234046578407, + 0.03712949901819229, + -0.0002466470468789339, + 0.011808347888290882, + 9.61215755523881e-6, + -0.00490606902167201, + -0.029190726578235626, + 0.011739248409867287, + -0.03967850282788277, + -0.02825404331088066, + -0.0051786284893751144, + 0.021896883845329285, + -0.006906117312610149, + -0.04950599744915962, + 0.015608823858201504, + -1.0646851478668395e-5, + 0.03289139270782471, + -0.02957461215555668, + -0.013697069138288498, + -0.018856503069400787, + 0.03387414291501045, + 0.013505125418305397, + -0.025643615052103996, + -0.015278681181371212, + -0.00039276384632103145, + 0.01563185639679432, + -0.0009064518962986767, + -0.032185040414333344, + -0.02648816630244255, + 0.032584283500909805, + -0.015539724379777908, + -0.0007289044442586601, + -0.00018906408513430506, + -0.018380483612418175, + 0.023616695776581764, + 0.01739773526787758, + -0.0007682527648285031, + -0.007892705500125885, + -0.015117448754608631, + 6.166176171973348e-5, + -0.012768063694238663, + -0.013489770703017712, + 0.01580076664686203, + -0.023309586569666862, + -0.013842945918440819, + 0.010249768383800983, + -0.016814226284623146, + -0.025229018181562424, + -0.009535740129649639, + 0.011094318702816963, + 0.04523717984557152, + -0.03295281529426575, + -0.0026545748114585876, + 0.023386362940073013, + -0.007332231383770704, + -0.01908683404326439, + 0.03703736513853073, + 0.0036469213664531708, + 0.044899359345436096, + 0.0015230695717036724, + 0.02304854243993759, + -0.02444588951766491, + 0.008376402780413628, + -0.011984935030341148, + -0.024169491603970528, + 0.011616404168307781, + -0.016322853043675423, + 0.0010441711638122797, + -0.00785431731492281, + -0.020238494500517845, + -0.02631925605237484, + -0.00799251627177, + -0.00800787191838026, + 0.007228582166135311, + 0.0175819993019104, + -0.0013407234800979495, + -0.0065068756230175495, + -0.01960892044007778, + 0.0030518972780555487, + -0.011048252694308758, + 0.014280576258897781, + 0.02134408801794052, + -0.002694882918149233, + 0.06916098296642303, + 0.013574224896728992, + -0.008368724957108498, + 0.014326643198728561, + -0.03540968894958496, + -0.0021152144763618708, + -0.007662373594939709, + -0.0007879269542172551, + 0.01494853850454092, + -0.03992419317364693, + -0.012384177185595036, + -0.01313659455627203, + -0.011125029996037483, + 0.0192557442933321, + -0.03335205465555191, + -0.012031001970171928, + 0.005915690213441849, + -0.0077237957157194614, + 0.011117352172732353, + 0.06326448917388916, + -0.0025106174871325493, + 0.013812234625220299, + -0.020622380077838898, + 0.024138780310750008, + -0.006829340010881424, + 0.02119053341448307, + -0.004975168500095606, + -0.00010886780364671722, + 0.030680205672979355, + 0.016461052000522614, + 0.006414742674678564, + 0.009727682918310165, + -0.0121384896337986, + -0.022004371508955956, + 0.0001330406521447003, + 0.011762280948460102, + -0.003984741400927305, + 0.016399629414081573, + -0.023985225707292557, + 0.014203798957169056, + -0.015255647711455822, + -0.0016958185005933046, + 0.0036565186455845833, + -0.016184654086828232, + -0.005297633353620768, + 0.009343796409666538, + 0.016077164560556412, + -0.02443053387105465, + 0.0038657367695122957, + -0.04674201458692551, + 0.030864471569657326, + 0.009497351013123989, + 0.042811017483472824, + 0.0057275858707726, + -0.00883706659078598, + -0.013581902720034122, + 0.006925311870872974, + -0.009113464504480362, + -0.006038533989340067, + 0.006959861610084772, + -0.009374507702887058, + -0.0243537575006485, + 0.0456671342253685, + 0.00530531071126461, + 0.005597064737230539, + 0.006741046439856291, + -0.01064133271574974, + -0.01739773526787758, + -0.005113367456942797, + -0.011992612853646278, + -0.025351861491799355, + 0.026979541406035423, + -0.012583797797560692, + 0.009159530512988567, + 0.005908012855798006, + 0.028745418414473534, + 0.029421057552099228, + -0.00801554974168539, + -0.03863433375954628, + 0.008261236362159252, + -0.0019002379849553108, + 0.013758490793406963, + 0.02088342420756817, + 0.0030979637522250414, + 0.013098206371068954, + 0.01911754533648491, + 1.2498803698690608e-5, + -0.012875552289187908, + 0.018395839259028435, + -0.047939740121364594, + 0.010042469948530197, + 0.05055017024278641, + 0.014088633470237255, + 0.02790086716413498, + 0.02099091187119484, + -0.006418581586331129, + 0.03691452369093895, + 0.032307885587215424, + -0.003136352403089404, + -0.023601340129971504, + 0.01755128987133503, + 0.008867776952683926, + 0.01569327898323536, + -0.006806307006627321, + 0.01313659455627203, + 0.004341755993664265, + -0.01583147794008255, + 0.019869962707161903, + 0.028760774061083794, + -0.017228825017809868, + -0.021989015862345695, + 0.011800670064985752, + -0.009981048293411732, + -0.004648865200579166, + -0.006360998842865229, + 0.02797764539718628, + 0.0042189122177660465, + -0.007167160045355558, + 0.0011631760280579329, + -0.01940929889678955, + -0.0013541594380512834, + -0.030449874699115753, + 0.0014117424143478274, + 0.008376402780413628, + -0.009259341284632683, + -0.021420864388346672, + 0.032492149621248245, + -0.01922503486275673, + -0.046404194086790085, + 0.00657981401309371, + 0.01922503486275673, + -0.005082656629383564, + 0.002226541517302394, + 0.012092423625290394, + -0.01484872866421938, + 0.0011430219747126102, + 0.03350561112165451, + -0.0047486755065619946, + -0.003572063520550728, + 0.002293721539899707, + 0.004192040301859379, + 0.027409493923187256, + 0.012983039952814579, + 0.010034792125225067, + -0.014748917892575264, + -0.007650857325643301, + -0.015601146034896374, + 0.021758684888482094, + -0.0007193072815425694, + 0.022203993052244186, + 0.0054281544871628284, + -0.04397803172469139, + -0.04400874301791191, + 0.018933279439806938, + 0.020576315000653267, + 0.01563953422009945, + 0.020253850147128105, + 0.00523237232118845, + 0.022081149742007256, + 0.010111569426953793, + 0.0065145534463226795, + -0.003810073249042034, + -0.002266849623993039, + 0.008238203823566437, + 0.008092327043414116, + 0.006879245396703482, + 0.016322853043675423, + -0.04342523589730263, + -0.012783419340848923, + -0.007220904342830181, + 0.032584283500909805, + -0.01065668836236, + -0.01062597706913948, + -0.0036104521714150906, + 0.0019712569192051888, + -0.002595072379335761, + 0.002537489403039217, + 0.025889303535223007, + 0.045145049691200256, + -0.03565537557005882, + 0.030634138733148575, + 0.011109674349427223, + 0.006913795135915279, + 0.010794887319207191, + 0.018672237172722816, + 0.005785169079899788, + -0.014457164332270622, + 0.010748821310698986, + -0.012261333875358105, + 0.01143981609493494, + 0.025720393285155296, + -0.015201903879642487, + -0.016384273767471313, + -0.013397637754678726, + -0.00800787191838026, + 0.01910218968987465, + 0.026948830112814903, + -0.0042304289527237415, + 0.030465230345726013, + 0.03304494544863701, + 0.05085727944970131, + -0.013574224896728992, + -0.021574418991804123, + 0.022188637405633926, + 0.013366926461458206, + -0.009213275276124477, + -0.022326836362481117, + -0.02805442176759243, + -0.018058018758893013, + -0.02080664597451687, + -0.01150123868137598, + -0.023186741396784782, + -0.00349336676299572, + 0.007931094616651535, + 0.016399629414081573, + -0.014249865896999836, + -0.0018589701503515244, + 0.003992419224232435, + 0.009589483961462975, + 0.0140041783452034, + -0.003790878923609853, + -0.005286116618663073, + 0.006863889750093222, + -0.03359774127602577, + -0.014503230340778828, + -0.01741308905184269, + 0.0038043148815631866, + 0.006936828140169382, + -0.004698770120739937, + -0.00566232530400157, + 0.04425442963838577, + 0.04781689867377281, + 0.0037736038211733103, + 0.00029679221916012466, + -0.004050001967698336, + 0.010180668905377388, + 0.0062266383320093155, + -0.010687398724257946, + 0.00370834325440228, + 0.021989015862345695, + 0.003662276780232787, + 0.02607356756925583, + -0.03507186844944954, + 0.007885027676820755, + -0.004602798726409674, + 0.03522542119026184, + 0.04919888824224472, + 0.004587443079799414, + 0.01593896560370922, + 0.028530441224575043, + -0.03163224458694458, + 0.003829267341643572, + -0.03197006508708, + -0.010933086276054382, + 0.02443053387105465, + -0.010994507931172848, + 0.0386650450527668, + 0.00979678239673376, + 0.018365127965807915, + 0.02467622235417366, + -0.006886923220008612, + 0.018933279439806938, + -0.023770250380039215, + -0.011915835551917553, + -0.019056124612689018, + -0.013067495077848434, + -0.02106768824160099, + 0.019916029646992683, + -0.025873947888612747, + -0.03823509067296982, + -0.023985225707292557, + -0.009059720672667027, + 0.02096020057797432, + -0.012652898207306862, + 0.009896593168377876, + 0.0012831405038014054, + 0.025520771741867065, + 0.02992778830230236, + 0.03636172413825989, + -0.030803048983216286, + -0.003472252981737256, + 0.02816191129386425, + -0.039586372673511505, + 0.017919819802045822, + -0.029344281181693077, + -0.0043379170820117, + -0.007090382743626833, + 0.003869575448334217, + 0.01772019825875759, + 0.018948635086417198, + -0.02994314394891262, + -0.012092423625290394, + 0.004668059293180704, + 0.020345982164144516, + -0.02650352194905281, + -0.014380387030541897, + -0.013029106892645359, + 0.005481898784637451, + 0.005055784713476896, + -0.002810048870742321, + -0.016491763293743134, + -0.006426259409636259, + 0.0013128917198628187, + -0.009497351013123989, + -0.03276854753494263, + 0.018319061025977135, + -0.017013847827911377, + -0.009896593168377876, + -0.034488361328840256, + 0.007255454082041979, + 0.009750716388225555, + 0.0159082543104887, + -0.03522542119026184, + 0.005558676086366177, + 0.016875648871064186, + 0.00013112122542224824, + -0.01768948882818222, + 0.0017572402721270919, + 0.008322658948600292, + -0.0005801484221592546, + -0.03003527596592903, + -0.008176781237125397, + -0.03332134336233139, + 0.010180668905377388, + 0.0037640067748725414, + 0.003351328894495964, + -0.011109674349427223, + 0.005040429066866636, + 0.0018244204111397266, + -0.02659565396606922, + -0.03359774127602577, + 0.006349482107907534, + 0.016921715810894966, + -0.018457261845469475, + 0.014572329819202423, + 0.014533941633999348, + 0.00783128384500742, + 0.03841935843229294, + 0.03163224458694458, + 0.002011565025895834, + 0.0022572523448616266, + -0.006537586450576782, + 0.03344418853521347, + 0.009374507702887058, + 0.020499536767601967, + 0.008468535728752613, + -0.012821807526051998, + -0.017889108508825302, + 0.05316059663891792, + 0.0012274769833311439, + -0.029221437871456146, + 0.02788551338016987, + -0.028760774061083794, + -0.02266465686261654, + -0.003583580022677779, + -0.02452266775071621, + 0.008222848176956177, + 0.021881528198719025, + 0.0013685552403330803, + 0.007455075159668922, + 0.0032956653740257025, + -0.009428251534700394, + 0.00398090248927474, + -0.014464842155575752, + 0.0019981290679425, + -0.016153942793607712, + -0.028822194784879684, + -0.006583652924746275, + -0.02661100961267948, + -0.010349579155445099, + 0.019056124612689018, + -0.021866172552108765, + -0.004618153907358646, + -0.0023282712791115046, + -0.016092520207166672, + 0.02455337718129158, + -0.01217687875032425, + -0.004775547422468662, + 0.0246608667075634, + 0.01965498737990856, + -0.003902205964550376, + 0.009896593168377876, + 0.048001162707805634, + 0.037835851311683655, + -0.004967490676790476, + 0.02638067677617073, + 0.008883132599294186, + -0.0021900723222643137, + 0.006522230803966522, + 0.016768161207437515, + -0.013405315577983856, + -0.007915738970041275, + -0.027609113603830338, + 0.007581757847219706, + -0.030234897509217262, + 0.01595432125031948, + -0.004982846323400736, + 0.014334320090711117, + 0.013604936189949512, + -0.010318867862224579, + 0.006806307006627321, + 0.029252149164676666, + -0.005355216097086668, + -0.009604839608073235, + -0.02654958702623844, + -0.020545603707432747, + -0.012015646323561668, + -0.0038503811229020357, + 0.04631206393241882, + 0.01916361227631569, + -0.00884474441409111, + -0.01920967921614647, + -0.00883706659078598, + -0.003038461320102215, + 0.010956119745969772, + 0.002616186160594225, + -0.016461052000522614, + 0.0096662612631917, + -0.0176587775349617, + -0.032277174293994904, + -0.008622090332210064, + -0.0011967660393565893, + 0.005597064737230539, + 0.007101899478584528, + -0.001962619600817561, + -0.023632051423192024, + -0.014272898435592651, + -0.04683414846658707, + -0.029221437871456146, + -0.008107681758701801, + 0.009865881875157356, + 0.015232615172863007, + 0.002155522583052516, + -0.008123037405312061, + -0.005627775564789772, + -0.023340296000242233, + 0.010311190038919449, + 0.014933183789253235, + -0.00869118981063366, + -0.016230719164013863, + -0.016553184017539024, + 8.772405635681935e-6, + -0.0011631760280579329, + -0.0011209484655410051, + -0.00883706659078598, + -0.049782395362854004, + -0.01596967689692974, + 0.019010057672858238, + -0.014603041112422943, + -0.01314427237957716, + 0.0159082543104887, + -0.007366781122982502, + -0.0011411025188863277, + 0.007405169773846865, + -0.0008426308049820364, + 0.023340296000242233, + 0.005316827446222305, + 0.003025025362148881, + -0.005574031267315149, + -0.015340102836489677, + 0.010380289517343044, + -0.01572399027645588, + -0.011954224668443203, + -0.02292569912970066, + -0.0010038630571216345, + -0.06928382813930511, + -0.03725234046578407, + 0.011708537116646767, + 0.038050826638936996, + 0.0009213275043293834, + -0.021482286974787712, + 0.01770484447479248, + 0.0028445986099541187, + -0.0070212832652032375, + 0.01397346705198288, + -0.001954941777512431, + -0.007147965952754021, + 0.0012054034741595387, + 0.024000581353902817, + 0.016752805560827255, + -0.002015403937548399, + -0.002272607758641243, + 0.012752708047628403, + -0.010910052806138992, + -0.037620872259140015, + -0.0021996693685650826, + 0.005478059872984886, + 0.02639603242278099, + -0.008568345569074154, + 0.005650808569043875, + 0.033966273069381714, + -0.03138655796647072, + 0.015485979616641998, + -0.013758490793406963, + 0.0017841123044490814, + 0.00977374892681837, + 0.002341707469895482, + -0.023923804983496666, + -0.006096117198467255, + 0.004076874349266291, + -0.007677729241549969, + -0.0030941248405724764, + 0.007516496814787388, + 0.03350561112165451, + 0.014733562245965004, + 0.01147820521146059, + 0.00022097464534454048, + -0.03679167851805687, + -0.008361047133803368, + -0.0226800125092268, + -0.026687785983085632, + 0.04013916850090027, + -0.016491763293743134, + 0.006610524840652943, + 0.01773555390536785, + 0.03375129774212837, + -0.00616521667689085, + 0.01779697649180889, + -0.02820797637104988, + -0.009481995366513729, + -0.0033743618987500668, + 0.018349772319197655, + -0.023647405207157135, + -0.00984284933656454, + 0.0012514698319137096, + 0.07745293527841568, + -0.009451285004615784, + 0.003525997046381235, + -0.01133232843130827, + -0.03282997012138367, + 0.030311675742268562, + 0.013059817254543304, + 0.012599153444170952, + 0.018595460802316666, + 0.010948441922664642, + -0.003927158657461405, + -0.006280382629483938, + 0.024906553328037262, + 0.02639603242278099, + -0.0019453446147963405, + 0.03187793120741844, + 0.006023178808391094, + -0.0005196863203309476, + 0.02630390040576458, + 0.011731570586562157, + -0.0028829872608184814, + -0.00614218320697546, + -0.0004030807758681476, + 0.0008085608715191483, + -0.008422468788921833, + 0.01927109993994236, + 0.013597258366644382, + -0.006744885351508856, + -0.006372515112161636, + 0.007869672030210495, + -0.0070404778234660625, + 0.009151853621006012, + 0.020668447017669678, + 0.015470623970031738, + -0.010549199767410755, + 0.02776266820728779, + 0.0022361385636031628, + -0.004303367342799902, + -0.0028023712802678347, + -0.003224646206945181, + -0.0030231059063225985, + -0.011693181470036507, + 0.011900479905307293, + -0.02819262258708477, + 0.005343699362128973, + 0.01410398818552494, + -0.008560667745769024, + 0.02132873237133026, + -0.006533747538924217, + -0.02473764307796955, + -0.02281821146607399, + 0.014242188073694706, + -0.010111569426953793, + 0.001471244846470654, + -0.023401718586683273, + 0.012407210655510426, + 0.011823702603578568, + -0.021559063345193863, + -0.01130929496139288, + -0.01945536583662033, + -0.023355651646852493, + 0.03147868812084198, + -0.009581806138157845, + -0.03504115715622902, + -0.0159082543104887, + 0.012407210655510426, + -0.011792992241680622, + -0.0027083188761025667, + -0.007105738390237093, + 0.030925894156098366, + 0.014472519978880882, + 0.019762475043535233, + -0.008982943370938301, + 0.003927158657461405, + 0.0057045528665184975, + 0.01050313375890255, + 0.01570095680654049, + -0.010042469948530197, + 0.014073277823626995, + -0.02610427886247635, + -0.009881237521767616, + -0.00153938471339643, + 0.002950167516246438, + 0.020131006836891174, + 0.009589483961462975, + -0.008084649220108986, + 0.002263010712340474, + -0.01412702165544033, + 8.589459321228787e-5, + -0.02275678887963295, + -0.010387967340648174, + -0.0070443167351186275, + -0.013351570814847946, + 0.0044876327738165855, + -0.01315962802618742, + -0.0034031535033136606, + -0.018749015405774117, + 0.04158258065581322, + 0.020192427560687065, + 0.02429233491420746, + -0.02275678887963295, + -0.0042265900410711765, + 0.01215384528040886, + 0.004633509553968906, + 0.01498692762106657, + -0.020207783207297325, + -0.011946546845138073, + 0.0009122102055698633, + -0.011524271219968796, + -0.010257446207106113, + -0.002076825825497508, + 0.0067640794441103935, + -0.025582194328308105, + 0.009566450491547585, + 0.00983517151325941, + -0.002172797452658415, + -0.005362893920391798, + 0.016153942793607712, + 0.01753593422472477, + -0.012077067978680134, + -0.009950337000191212, + 0.01919432356953621, + 0.0037640067748725414, + 0.02830011025071144, + -0.013597258366644382, + 0.0017783540533855557, + 0.0039540305733680725, + -0.013566548004746437, + 0.005412799306213856, + -0.016599250957369804, + 0.012652898207306862, + 0.010556877590715885, + -0.022372903302311897, + 0.003360925940796733, + -0.00795412715524435, + 0.018979346379637718, + 0.0013253680663183331, + 0.013827590271830559, + -0.051870737224817276, + -0.002044195309281349, + -0.032277174293994904, + -0.0026833664160221815, + 0.037682294845581055, + -0.0029578451067209244, + 0.008721900172531605, + 0.016937071457505226, + -0.030403807759284973, + -0.00532834418118, + 0.029160015285015106, + 0.004917585756629705, + -0.010687398724257946, + 0.004614315461367369, + 0.01957820914685726, + -0.014603041112422943, + 0.005101851187646389, + 0.013198016211390495, + 0.006595169194042683, + -0.004188201390206814, + -0.006568297278136015, + -0.030756983906030655, + 0.036054614931344986, + 0.01781233213841915, + -0.01331318262964487, + -0.05269993469119072, + -0.00968161690980196, + 0.009267019107937813, + -0.016691382974386215, + -0.048031874001026154, + -0.014871761202812195, + -0.006050050724297762, + 0.001524988911114633, + -0.007224743254482746, + 0.014549297280609608, + -0.009858204051852226, + 0.005762135609984398, + 0.0054396712221205235, + 0.032522860914468765, + -0.027240583673119545, + -0.0013416832080110908, + -7.89966361480765e-5, + -0.013351570814847946, + -0.020054228603839874, + -0.0022649301681667566, + 0.01412702165544033, + 0.02803906798362732, + -0.010272801853716373, + -0.008222848176956177, + -0.013259438797831535, + 0.0245840884745121, + 0.016384273767471313, + 0.0007812089752405882, + -0.007885027676820755, + -0.02314067631959915, + 0.007178676780313253, + 0.01398882269859314, + 0.014434130862355232, + 0.003339812159538269, + -0.01577005535364151, + 0.013205694034695625, + -0.0008517481037415564, + -0.006545264273881912, + 0.0051709506660699844, + 0.0348568893969059, + -0.018871858716011047, + 0.010856308974325657, + -0.0039463527500629425, + 0.00220542773604393, + 0.017136691138148308, + 0.007923416793346405, + -0.007835122756659985, + 0.020607024431228638, + -0.01583147794008255, + 0.0039041254203766584, + -0.010211380198597908, + 0.010963797569274902, + 0.030311675742268562, + 0.0002322513028047979, + -0.0006703617400489748, + -0.00977374892681837, + 0.004621992819011211, + -0.009405218064785004, + -0.0005427194992080331, + -0.009259341284632683, + 0.015201903879642487, + 0.012384177185595036, + 0.018610816448926926, + 0.019823897629976273, + 0.004280333872884512, + 0.04259604215621948, + -0.0012111618416383862, + 0.025536127388477325, + -0.015117448754608631, + 0.015140482224524021, + -0.01959356479346752, + 0.001453010248951614, + 0.0030672529246658087, + -0.005466543138027191, + 0.019731763750314713, + 0.017167402431368828, + 0.0030019921250641346, + 0.011808347888290882, + -0.0073130372911691666, + -0.031033381819725037, + -0.0018119440646842122, + -0.021942950785160065, + -0.00023716985015198588, + 0.015309392474591732, + -0.010894698090851307, + -0.0011785314418375492, + -0.02120588906109333, + 0.016200007870793343, + -0.0006612444412894547, + -0.018718304112553596, + -0.01779697649180889, + -0.006472325883805752, + 0.010802565142512321, + 0.010825598612427711, + -0.0016267189057543874, + 0.002685285871848464, + 0.008291947655379772, + 0.011946546845138073, + -0.0062381550669670105, + 0.016860293224453926, + -0.016215363517403603, + -0.03461120277643204, + -0.03359774127602577, + -0.020315270870923996, + 0.024154135957360268, + 0.017105979844927788, + -0.008023226633667946, + -0.008030904456973076, + 0.010126925073564053, + 0.010771853849291801, + -0.0073091983795166016, + 0.01965498737990856, + 0.00532834418118, + -0.012791097164154053, + -0.0047486755065619946, + 0.011132707819342613, + 0.0028081294149160385, + -0.0005110488273203373, + 0.03014276549220085, + 0.016445696353912354, + -0.013758490793406963, + 0.01564721204340458, + 0.015532046556472778, + 0.00665275240316987, + 0.01314427237957716, + 0.00615753885358572, + -0.009888915345072746, + -0.01047242246568203, + -0.0028254042845219374, + -0.010372612625360489, + -0.003794717602431774, + 0.02988172136247158, + 0.032185040414333344, + -0.021420864388346672, + -0.015570434741675854, + -0.027025606483221054, + -0.00308644725009799, + 0.00185417162720114, + 0.006863889750093222, + -0.0148026617243886, + -0.004844647366553545, + -0.013466737233102322, + 0.03163224458694458, + 0.008483890444040298, + -0.057183727622032166, + -0.012376499362289906, + -0.010088535957038403, + 0.005992467515170574, + -0.0044799549505114555, + -0.012645220384001732, + -0.0010268962942063808, + -0.0016200008103623986, + 0.01312123890966177, + -0.008146070875227451, + -0.0018820033874362707, + -0.008491568267345428, + -0.01960892044007778, + -0.022572524845600128, + -0.005777491256594658, + -0.06351017951965332, + -0.014242188073694706, + -0.000473380001494661, + 0.012768063694238663, + 0.021359441801905632, + 0.011270906776189804, + 0.014196121133863926, + -0.03479547053575516, + -0.02277214452624321, + 0.027148449793457985, + 0.0026756885927170515, + 0.013389959931373596, + -0.008176781237125397, + 0.0030307837296277285, + -0.032215751707553864, + 0.015163515694439411, + -0.029129303991794586, + 0.0026430583093315363, + -0.025275085121393204, + 0.02966674603521824, + 0.004994363058358431, + 0.030388452112674713, + -0.022372903302311897, + 0.01739773526787758, + -0.017029203474521637, + -0.0009232469601556659, + 0.013075172901153564, + -0.02796228975057602, + -0.018487971276044846, + 0.013013751246035099, + 0.004829291719943285, + -0.011531949043273926, + -0.0024319207295775414, + -0.002800451824441552, + 0.017090626060962677, + 0.04621993005275726, + 0.018334416672587395, + -0.0008829388534650207, + -0.025367217138409615, + 0.010387967340648174, + 0.0008459897944703698, + -0.0196396317332983, + -0.011639437638223171, + -0.0065107145346701145, + -0.021758684888482094, + -0.016706738620996475, + -0.002280285581946373, + -0.002669930225238204, + 0.01230739988386631, + -0.006610524840652943, + 0.012123134918510914, + -0.0005455986247397959, + 0.05242353677749634, + -0.003443461610004306, + 0.025198306888341904, + -0.04600495472550392, + -0.002180475043132901, + -0.008130715228617191, + 0.008959909901022911, + -0.035808928310871124, + 0.01130929496139288, + -0.02106768824160099, + -0.024906553328037262, + -0.016783516854047775, + 0.015317069366574287, + -0.01752057857811451, + 0.0005417597712948918, + 0.016338208690285683, + 0.0036430824548006058, + -0.006844695657491684, + 0.021651197224855423, + 0.0012322755064815283, + -0.0351639986038208, + 0.026687785983085632, + -0.007359103299677372, + 0.005236211232841015, + -0.035962484776973724, + 0.018564749509096146, + 0.015616501681506634, + -0.02294105477631092, + 0.008537635207176208, + 0.024937264621257782, + 0.0017572402721270919, + 0.02085271291434765, + 0.025873947888612747, + -0.042903151363134384, + 0.0005537561955861747, + -0.008721900172531605, + 0.0012092423858121037, + -0.006802468094974756, + -0.0038964475970715284, + -0.014457164332270622, + 0.006122989114373922, + -0.0011900480603799224, + -0.002641138853505254, + -0.0017850720323622227, + 0.003662276780232787, + 0.014196121133863926, + 0.008100003935396671, + 0.0028637929353863, + 0.008506923913955688, + 0.014203798957169056, + 0.0016737449914216995, + -0.007462752982974052, + 0.02642674371600151, + -0.001173732802271843, + -0.0016132828313857317, + 0.0019165531266480684, + -0.015086738392710686, + -0.012384177185595036, + -0.011578015983104706, + 0.015501335263252258, + 0.01738237962126732, + -0.020729869604110718, + -0.01496389415115118, + -0.007355264388024807, + 0.018426550552248955, + -0.015416880138218403, + -0.0018205814994871616, + -0.024200202897191048, + -0.032154329121112823, + 0.016123231500387192, + 0.015094415284693241, + -0.026810631155967712, + -0.013896689750254154, + 0.018994702026247978, + -0.007658534683287144, + -0.008606734685599804, + -0.003977063577622175, + 0.002305238274857402, + -0.0010460906196385622, + 0.009105786681175232, + -0.01497157197445631, + -0.021896883845329285, + -0.002491423161700368, + 0.002330190734937787, + 0.008437824435532093, + -0.002763982629403472, + 0.004656542558223009, + -0.007900383323431015, + -0.015201903879642487, + 0.011693181470036507, + -0.006103794556111097, + 0.028837550431489944, + -0.010910052806138992, + -0.0032495988998562098, + -0.015056027099490166, + -0.006867728661745787, + 0.001260107266716659, + 0.0011228679213672876, + 0.0017783540533855557, + 0.012960006482899189, + -0.0004923343658447266, + 0.0022361385636031628, + 0.0032169686164706945, + -0.013604936189949512, + -0.00617289450019598, + -0.015524368733167648, + -0.0087909996509552, + 0.0027754991315305233, + -0.006349482107907534, + 0.024998687207698822, + -0.021528352051973343, + 0.07100363820791245, + 0.0031843381002545357, + 0.0017130933701992035, + 0.0026008307468146086, + 0.01048010028898716, + -0.02114446647465229, + 0.005282277707010508, + 0.03292210400104523, + -0.005589386913925409, + -0.015416880138218403, + -0.01940929889678955, + -0.015217259526252747, + 0.005639292299747467, + 0.016092520207166672, + -0.008867776952683926, + -0.005485737696290016, + 0.004019291140139103, + 0.01768948882818222, + 0.004967490676790476, + 0.030787693336606026, + 0.021635841578245163, + 0.0003706903662532568, + -0.005631614476442337, + -0.012361143715679646, + -0.01603109948337078, + 0.0019962096121162176, + -0.0056853583082556725, + 0.020315270870923996, + 0.024046648293733597, + 0.02796228975057602, + 0.029190726578235626, + 0.009220953099429607, + -0.009758394211530685, + -0.0176587775349617, + -0.007808250840753317, + 0.00866047851741314, + 0.01739773526787758, + 0.005508770700544119, + -0.0022476552985608578, + 0.009082754142582417, + 0.014933183789253235, + -0.014280576258897781, + 0.0383579358458519, + 0.012269011698663235, + -0.005838912911713123, + -0.016384273767471313, + 0.0033743618987500668, + -0.010787209495902061, + 0.019731763750314713, + -0.007915738970041275, + -0.018180862069129944, + -0.017213469371199608, + 0.01598503254354, + 0.00864512287080288, + -0.01762806624174118, + -0.017029203474521637, + -0.008483890444040298, + -0.0014386145630851388, + -0.012698964215815067, + 0.008529957383871078, + 9.951056563295424e-5, + 0.002881067804992199, + -0.014603041112422943, + -0.0356246642768383, + -0.004664220381528139, + 0.002069148002192378, + 0.0013196096988394856, + -0.0013839106541126966, + 0.00033758016070351005, + -0.02091413363814354, + -0.005911851301789284, + 0.004000097047537565, + 0.0004443485813681036, + -0.012622186914086342, + -0.010288157500326633, + 0.011040574871003628, + 0.011616404168307781, + 0.0209294892847538, + 0.013658680021762848, + 0.0039425138384103775, + 0.025658970698714256, + 0.004902230110019445, + 0.004572087898850441, + 0.0024760677479207516, + 0.0023762572091072798, + 0.002445356687530875, + 0.013535836711525917, + -0.007631662767380476, + 0.021528352051973343, + -0.019854607060551643, + -0.0008191177621483803, + 0.008522279560565948, + -0.010411000810563564, + -0.02109839953482151, + 0.008982943370938301, + -0.005370571743696928, + -0.016814226284623146, + -0.017198113724589348, + -0.003898367052897811, + -0.006253510247915983, + 0.021697262302041054, + 0.016798870638012886, + 0.0051709506660699844, + -0.010441712103784084, + -0.01939394325017929, + 0.0025720393750816584, + 0.014196121133863926, + -0.008361047133803368, + -0.014771951362490654, + 0.008307303301990032, + -0.018795080482959747, + -0.017075270414352417, + -0.01051848940551281, + -0.006119150202721357, + -0.0031229164451360703, + 0.018073374405503273, + 0.0026430583093315363, + 0.005612419918179512, + -0.018027307465672493, + -0.024015937000513077, + -0.011547304689884186, + 0.0003973224957007915, + -0.015079060569405556, + -0.014318965375423431, + 0.016399629414081573, + 0.002441518008708954, + -0.011846736073493958, + -0.008138393051922321, + -0.014088633470237255, + 0.0012898584827780724, + 0.006541425362229347, + 0.01219223439693451, + 0.01401185616850853, + -0.02315603196620941, + -0.01412702165544033, + 0.00531298853456974, + 0.021774040535092354, + -0.004126779269427061, + 0.007136449217796326, + -0.0013541594380512834, + 0.0176587775349617, + 0.0023570628836750984, + 0.0008066414156928658, + 0.007892705500125885, + 0.018887214362621307, + 0.01329782698303461, + -0.022173281759023666, + -0.0140041783452034, + 0.015455269254744053, + -0.006898439489305019, + 0.023478496819734573, + -0.02647281065583229, + 0.0070366389118134975, + -0.0012217186158522964, + -0.0025029396638274193, + 0.0035125610884279013, + -0.01748986728489399, + 0.00796948280185461, + -0.025336505845189095, + 0.013006073422729969, + 0.006641235668212175, + 0.009981048293411732, + -0.005524126347154379, + -0.005919529125094414, + -0.018534038215875626, + 0.001410782802850008, + 0.005217017140239477, + 0.008499246090650558, + 0.023616695776581764, + 0.0009160490590147674, + -0.00614218320697546, + 0.005393604747951031, + -0.00216128071770072, + -0.017919819802045822, + -0.0005619138246402144, + 0.007785217370837927, + 0.009574128314852715, + 0.0009789104806259274, + -0.005067301448434591, + 0.020054228603839874, + 0.010879342444241047, + -0.014065600000321865, + 0.013405315577983856, + -0.01580076664686203, + -0.014603041112422943, + -0.041183341294527054, + 0.020714513957500458, + -0.009443607181310654, + -0.009865881875157356, + 0.003898367052897811, + -0.005074978806078434, + 0.012092423625290394, + -0.007908061146736145, + -0.002694882918149233, + -0.016338208690285683, + -0.018272995948791504, + 0.018963990733027458, + 0.008483890444040298, + -0.003439622698351741, + -0.006664269138127565, + -0.018994702026247978, + -0.006545264273881912, + 0.009735360741615295, + -0.005167111754417419, + 0.004698770120739937, + -0.012507020495831966, + -0.02105233445763588, + -0.026687785983085632, + -0.009996403008699417, + -0.0038964475970715284, + -0.029467124491930008, + -0.028545796871185303, + -0.00033038228866644204, + -0.025229018181562424, + -0.007174837868660688, + 0.02456873282790184, + -0.005873462650924921, + 0.003479930805042386, + -0.004902230110019445, + 0.013842945918440819, + 0.0070136054418981075, + 0.0064838421531021595, + -0.0025758780539035797, + -0.006948344875127077, + -0.004652704112231731, + -0.011017541401088238, + 0.011700859293341637, + 0.009881237521767616, + 0.00244919559918344, + -0.017182758077979088, + 0.03138655796647072, + 0.008737255819141865, + -0.00869886763393879, + 0.013451381586492062, + 0.008115359582006931, + 0.024184847250580788, + 0.012860196642577648, + -0.0008886971627362072, + 0.010257446207106113, + -0.01052616722881794, + -0.0245840884745121, + -0.003479930805042386, + -0.023724183440208435, + -0.019701052457094193, + -0.00020537925593089312, + -0.02432304620742798, + 0.011401427909731865, + -0.013067495077848434, + -0.011263228952884674, + -2.9376311431406066e-5, + 0.001829218934290111, + -0.008123037405312061, + -0.00863744504749775, + 0.010802565142512321, + 0.01922503486275673, + 0.003393556224182248, + 0.009735360741615295, + 0.002698721829801798, + -0.018564749509096146, + -0.021789396181702614, + -0.008998299017548561, + -0.008537635207176208, + -0.005789007991552353, + 0.010234412737190723, + 0.014411097392439842, + 0.022526457905769348, + -0.021482286974787712, + 0.021896883845329285, + 0.0014203799655660987, + 0.00882938876748085, + -0.0001936227345140651, + 0.004702609032392502, + 0.009927303530275822, + 0.000331102084601298, + -0.016921715810894966, + 0.01913290098309517, + -0.0031517078168690205, + -0.007232421077787876, + -0.0029079399537295103, + -0.010142280720174313, + -0.013359248638153076, + -0.005543320439755917, + -0.004195879213511944, + -0.01064133271574974, + 0.0035567081067711115, + -0.04020059108734131, + -0.013397637754678726, + 0.02271072380244732, + -0.01729024574160576, + 0.008591379038989544, + 0.007539530284702778, + -0.021482286974787712, + 0.003829267341643572, + -0.00616521667689085, + 0.0032457599882036448, + -0.004145973827689886, + -0.013896689750254154, + -0.002184313954785466, + 0.026872051879763603, + 0.0038465424440801144, + -0.004545215517282486, + -0.017029203474521637, + -0.002888745628297329, + -0.004084552172571421, + 0.01230739988386631, + 0.005823557730764151, + 0.02091413363814354, + -0.0017591597279533744, + -0.01927109993994236, + -0.0014635671395808458, + -0.005343699362128973, + 0.006618202663958073, + 0.006437776144593954, + -0.004126779269427061, + -0.022511102259159088, + -0.010111569426953793, + 0.025858592242002487, + 0.014756595715880394, + -0.023309586569666862, + -0.005927206948399544, + 0.0032707126811146736, + -0.015424557961523533, + 0.0029444091487675905, + 0.020299915224313736, + 0.012384177185595036, + -0.0002598431601654738, + 0.004303367342799902, + 0.006687302142381668, + 0.014042566530406475, + -0.0006919553270563483, + 0.006610524840652943, + -0.00984284933656454, + -0.02077593468129635, + -0.011831380426883698, + -0.002558603184297681, + 0.012061712332069874, + -0.011140384711325169, + -0.006840856745839119, + -0.006103794556111097, + 0.0057045528665184975, + -0.03473404794931412, + -0.01143981609493494, + -0.0035221583675593138, + 0.005094173364341259, + -0.003364764852449298, + 0.01752057857811451, + -0.010787209495902061, + 0.0067487237975001335, + -0.0031152386218309402, + 0.008100003935396671, + 0.01484105084091425, + -0.010541521944105625, + 0.010126925073564053, + -0.0028522764332592487, + -0.014526263810694218, + 0.0018157829763367772, + 0.022142570465803146, + -0.002925214823335409, + 0.01231507770717144, + 0.01065668836236, + -0.00481777498498559, + 0.01229204423725605, + -0.014587685465812683, + -0.0036238881293684244, + 0.009973370470106602, + 0.0005513569340109825, + 0.0026257834397256374, + -0.010910052806138992, + -0.0002975120150949806, + 0.009167208336293697, + 0.0019827736541628838, + -0.0097814267501235, + -0.014618396759033203, + -0.010602944530546665, + -0.013443703763186932, + 0.014672140590846539, + 0.007447397336363792, + 0.0070481556467711926, + -0.008199814707040787, + -0.007892705500125885, + 0.006103794556111097, + -0.0067717572674155235, + -0.004099907353520393, + -0.013535836711525917, + 0.018395839259028435, + 0.024046648293733597, + 0.006437776144593954, + 0.02615034580230713, + -0.0018551313551142812, + 0.002086422871798277, + -0.004380144644528627, + 0.002731352113187313, + 0.011900479905307293, + 0.0006161377532407641, + 0.0010998346842825413, + 0.0028695513028651476, + -0.02131337672472, + 0.02651887759566307, + 0.020115651190280914, + -0.010088535957038403, + -0.00524005014449358, + -0.0056700031273067, + 0.0035451913718134165, + -0.003144030226394534, + -0.008445502258837223, + -0.0313558466732502, + 0.002097939606755972, + -0.00045562523882836103, + 0.017059914767742157, + -0.006610524840652943, + 0.0054435101337730885, + -0.0039060446433722973, + -0.011731570586562157, + -0.010887020267546177, + 0.02085271291434765, + 0.02783944644033909, + 0.007835122756659985, + -0.009366829879581928, + -0.0032803097274154425, + 0.0062227994203567505, + 0.010226734913885593, + 0.005539481528103352, + 0.000424194528022781, + 0.015271003358066082, + 0.0024971815291792154, + -0.005147917661815882, + 0.030618784949183464, + 0.0025912337005138397, + 0.0029655229300260544, + 0.022250059992074966, + -0.005531803704798222, + -0.008107681758701801, + 0.002971281297504902, + -0.009435929358005524, + -0.018226929008960724, + -0.01571631245315075, + 0.008875454775989056, + -0.010533844120800495, + 0.010180668905377388, + 0.01768948882818222, + -0.012560765258967876, + -0.015048349276185036, + 0.006967539433389902, + -0.003564385697245598, + 0.005259244702756405, + 0.04339452460408211, + 0.006468486972153187, + 0.03973992541432381, + -0.0070443167351186275, + -0.015094415284693241, + -0.009359152056276798, + 0.0024319207295775414, + -0.0039348360151052475, + -0.006426259409636259, + -0.02816191129386425, + -0.015347780659794807, + 0.011877447366714478, + -0.02779337950050831, + -0.009197919629514217, + -0.019854607060551643, + -0.000468101556180045, + -0.0030768499709665775, + -0.00046258317888714373, + -0.0097814267501235, + -0.010840953327715397, + 0.02278750017285347, + 0.025827880948781967, + 0.02616570144891739, + -9.387223690282553e-5, + 0.01333621609956026, + -0.0004738598654512316, + 0.02803906798362732, + 0.03289139270782471, + 0.0012505101040005684, + 0.01752057857811451, + 0.008975265547633171, + -0.009566450491547585, + 0.020699158310890198, + -0.023248163983225822, + -0.011677825823426247, + -0.0021113755647093058, + -0.0031267551239579916, + -0.018380483612418175, + 0.0023071577306836843, + 0.02621176838874817, + -0.008368724957108498, + 0.014203798957169056, + 0.01762806624174118, + 0.012038679793477058, + -0.023969870060682297, + -0.015501335263252258, + -0.002581636421382427, + 0.011002185754477978, + 0.02083735726773739, + -0.015017637982964516, + 0.0010048227850347757, + 0.0013579983497038484, + 0.013850623741745949, + 0.013459059409797192, + 0.0021862334106117487, + 0.011278584599494934, + -0.00014671660028398037, + 0.012522376142442226, + -0.0025969918351620436, + -0.0022380580194294453, + 0.02447660081088543, + 0.0007197870872914791, + -0.0006266946438699961, + 0.01397346705198288, + 0.0009016533149406314, + 0.03387414291501045, + 0.008906166069209576, + 0.002334029646590352, + 0.014679818414151669, + -0.00020321989723015577, + 0.010587588883936405, + 0.010564555414021015, + -0.0010652849450707436, + 0.023954514414072037, + 0.003307181876152754, + -0.011424461379647255, + -0.024169491603970528, + 0.010449389927089214, + 0.017013847827911377, + 0.010556877590715885, + -0.00968161690980196, + 0.02438446879386902, + -0.00048369693104177713, + -6.54556424706243e-6, + 0.0007917658076621592, + -0.008483890444040298, + -0.0027236745227128267, + -0.0042304289527237415, + -0.018549393862485886, + 0.02103697881102562, + 0.02080664597451687, + 0.0041997176595032215, + 0.030511295422911644, + 0.03906428813934326, + -0.023770250380039215, + -0.010449389927089214, + 0.004099907353520393, + 0.0014866003766655922, + -0.029313569888472557, + -0.0032630348578095436, + 0.012844840995967388, + 0.0011497399536892772, + 0.004771708510816097, + 0.005090334452688694, + -0.006925311870872974, + -0.0026507361326366663, + -0.0023896931670606136, + 0.027624469250440598, + 0.0028254042845219374, + 0.003451139200478792, + -0.020484181120991707, + -0.008867776952683926, + -0.009144175797700882, + -5.443390182335861e-5, + 0.004844647366553545, + 0.0034645753912627697, + -0.0027870156336575747, + -0.00016579095972701907, + 0.016768161207437515, + -0.006364837754517794, + -0.004714125767350197, + 0.02287963218986988, + -0.0037755232769995928, + 0.021681906655430794, + -0.024154135957360268, + 0.004042324610054493, + -0.02456873282790184, + -0.029067883267998695, + 0.006138344295322895, + 0.014702851884067059, + -0.004026968963444233, + -0.01937858946621418, + -0.005908012855798006, + -0.0006214161985553801, + -0.0047640311531722546, + 0.0007255453965626657, + 0.0034069924149662256, + -0.023447785526514053, + -0.01945536583662033, + 0.003913722466677427, + 0.0035317554138600826, + 0.0006012621452100575, + -0.009489673189818859, + 0.01401185616850853, + -0.004326400347054005, + 0.03134049102663994, + -0.018196217715740204, + -0.004867680370807648, + 0.029405703768134117, + -0.013842945918440819, + -0.0014587685000151396, + 0.0028580348007380962, + 0.00968929473310709, + -0.020576315000653267, + -0.016676027327775955, + -0.008391758427023888, + 0.007923416793346405, + 0.008107681758701801, + -6.094197669881396e-5, + 0.009958014823496342, + -0.010249768383800983, + 0.027102384716272354, + -0.0017457236535847187, + -0.013482092879712582, + -0.00868351198732853, + -0.009389862418174744, + -0.00881403312087059, + 0.02455337718129158, + -0.018672237172722816, + 0.020392049103975296, + -0.02080664597451687, + 0.011217162013053894, + -0.010725787840783596, + 0.02783944644033909, + 0.016921715810894966, + -0.007566402200609446, + 0.02796228975057602, + 0.013489770703017712, + 0.013627969659864902, + -0.014357353560626507, + -0.010434034280478954, + -0.015255647711455822, + -0.0011007944121956825, + 0.020484181120991707, + -0.016384273767471313, + 0.0025067785754799843, + 0.01130929496139288, + -0.014418775215744972, + -0.014587685465812683, + -0.014303609728813171, + 0.0246608667075634, + -0.013896689750254154, + 0.011217162013053894, + 0.0054204766638576984, + -0.008422468788921833, + 0.014733562245965004, + -0.00801554974168539, + -0.006575975101441145, + 0.009067398495972157, + 0.016660671681165695, + 0.00327839027158916, + 0.010411000810563564, + 0.0024991007521748543, + -0.0029808783438056707, + 0.011025219224393368, + -0.02272607944905758, + 0.018349772319197655, + -0.01214616745710373, + 0.000485136522911489, + 0.005028912797570229, + -0.02802371233701706, + 0.014618396759033203, + -0.005531803704798222, + 0.030342385172843933, + 0.008115359582006931, + -0.008107681758701801, + -0.011608726345002651, + -0.01150891650468111, + -0.018104085698723793, + -0.01600038819015026, + 0.001882963115349412, + 0.02284892275929451, + -0.007623984944075346, + 0.002765901852399111, + 0.0014510907931253314, + -0.0009141296613961458, + 0.0005086495657451451, + -0.016553184017539024, + 0.02300247736275196, + -0.0011631760280579329, + 0.018380483612418175, + -0.009351474232971668, + -0.008076971396803856, + 0.0022322998847812414, + -0.023678116500377655, + -0.0011986854951828718, + 0.023386362940073013, + 0.0020058066584169865, + -0.011946546845138073, + -1.4283275959314778e-5, + 0.004940618760883808, + 0.019931385293602943, + -0.025090819224715233, + -0.023678116500377655, + -0.0017879512161016464, + -0.021589774638414383, + 0.016476407647132874, + -0.02957461215555668, + -0.03863433375954628, + 0.007005928084254265, + 0.0027985323686152697, + -0.012576120905578136, + 0.01048777811229229, + -0.01908683404326439, + -0.003929078113287687, + -0.021743329241871834, + -0.0037889594677835703, + 0.002301399363204837, + -0.0038657367695122957, + -0.0027332715690135956, + -0.001460687955841422, + 0.019731763750314713, + 0.010933086276054382, + 0.014341997914016247, + -0.02658029831945896, + 0.01062597706913948, + -0.004564410075545311, + 0.017213469371199608, + 0.00615753885358572, + -0.0020614704117178917, + -0.03381272032856941, + 0.009574128314852715, + -0.0010355337290093303, + -0.010211380198597908, + 0.01586218923330307, + 0.000818158034235239, + -0.004587443079799414, + 0.0028695513028651476, + -0.0025835558772087097, + -0.0011439817026257515, + -0.029482480138540268, + -0.00037716844235546887, + 0.022050438448786736, + -0.0018407355528324842, + 0.01910218968987465, + 0.01778162084519863, + -0.02266465686261654, + -0.011539626866579056, + 0.023585984483361244, + -0.01564721204340458, + -0.015086738392710686, + -0.002263010712340474, + -0.0025336507242172956, + -0.01741308905184269, + 0.012215266935527325, + -0.022004371508955956, + -0.01924038864672184, + -0.004069196525961161, + 0.008084649220108986, + 0.03341347724199295, + -0.023585984483361244, + -0.01144749391824007, + -0.00699441134929657, + 0.007693084888160229, + 0.018180862069129944, + -0.005923368036746979, + -0.0023033188190311193, + 0.012545409612357616, + 0.00739365303888917, + 0.0005043308483436704, + -0.0028445986099541187, + 0.011992612853646278, + 0.006384031847119331, + 0.01064133271574974, + 0.016399629414081573, + 0.014426453039050102, + -0.012806452810764313, + 0.009981048293411732, + 0.0019846931099891663, + -0.0002790374855976552, + 0.014633751474320889, + 0.0032553572673350573, + -0.002652655355632305, + -0.010380289517343044, + 0.02079129032790661, + -0.004621992819011211, + -0.011101996526122093, + 0.00739365303888917, + -0.016752805560827255, + -0.006641235668212175, + -0.0027543853502720594, + -0.01227668859064579, + -0.002495262073352933, + 0.019946740940213203, + 0.018994702026247978, + -0.007589435204863548, + 0.001911754603497684, + -0.04437727481126785, + -0.0027831769548356533, + -0.011393750086426735, + -0.0032380823977291584, + -0.0039578694850206375, + 0.01603109948337078, + 0.008345691487193108, + 0.012944651767611504, + 0.01569327898323536, + 0.017044559121131897, + -0.017228825017809868, + 0.011002185754477978, + 0.005032751709222794, + 0.007796734105795622, + 0.012530053965747356, + 0.015501335263252258, + -0.010933086276054382, + -0.016937071457505226, + 0.009919625706970692, + -0.0012841002317145467, + -0.02271072380244732, + -0.01586218923330307, + -0.004026968963444233, + 0.017981242388486862, + -0.020576315000653267, + 0.018303707242012024, + -0.00708270538598299, + -0.0002023801498580724, + -0.009228630922734737, + -0.0045029884204268456, + -0.00748194707557559, + 0.01768948882818222, + 0.011984935030341148, + -0.00047985807759687304, + -0.0041997176595032215, + -0.005835074000060558, + -0.006622041575610638, + 0.008990621194243431, + -0.014042566530406475, + -0.010771853849291801, + 0.014457164332270622, + -0.006061567459255457, + -0.04379376769065857, + 0.0062304772436618805, + 0.01767413318157196, + -0.015416880138218403, + -0.00036565185291692615, + 0.0022956409957259893, + -0.009512706659734249, + 0.0149946054443717, + -0.002698721829801798, + 0.02109839953482151, + -0.023939160630106926, + -0.02453802339732647, + -0.011032897047698498, + 0.0016247994499281049, + 0.009082754142582417, + -0.003844622988253832, + 0.0072938427329063416, + -0.01965498737990856, + 0.006837017834186554, + 0.016399629414081573, + 0.0032553572673350573, + 0.009942659176886082, + -0.010825598612427711, + -0.0019885317888110876, + -0.01064133271574974, + -0.014879439026117325, + 0.008522279560565948, + 0.01051848940551281, + 0.013919723220169544, + 0.015255647711455822, + 0.0013436026638373733, + 0.0003215049218852073, + -0.014541619457304478, + -0.016169298440217972, + 0.0047678700648248196, + -0.0008599056745879352, + 0.00332253728993237, + 0.008967587724328041, + 0.013006073422729969, + 0.007800573017448187, + 0.025136886164546013, + -0.0029309731908142567, + -0.0014050244353711605, + -0.013474415056407452, + -0.018764371052384377, + -0.03651528060436249, + -0.001957820961251855, + 0.011155740357935429, + 0.013059817254543304, + 0.008522279560565948, + 0.01566256769001484, + -0.010011758655309677, + 0.0007226662710309029, + -0.008460857905447483, + -0.004725642502307892, + -0.0019789347425103188, + -0.006833178922533989, + -0.007485785987228155, + 0.007566402200609446, + 0.0159082543104887, + -0.022250059992074966, + 0.007397491950541735, + 0.0008229566155932844, + -0.020238494500517845, + -0.009113464504480362, + 0.014564651995897293, + 0.01228436641395092, + 0.011401427909731865, + 0.030357740819454193, + -0.014457164332270622, + -0.01396578922867775, + -0.014764273539185524, + 0.021697262302041054, + 0.012115457095205784, + 0.003696826519444585, + 0.008775644935667515, + -0.0009357232484035194, + 0.008430146612226963, + -0.0062419939786195755, + 0.00265649426728487, + 0.013090528547763824, + 0.006345643196254969, + -0.03636172413825989, + -0.0036142910830676556, + -0.010595266707241535, + 0.009213275276124477, + -0.004122940823435783, + -0.00489071337506175, + 0.0009246864938177168, + 0.005823557730764151, + -0.01396578922867775, + 0.002462631557136774, + 0.01317498367279768, + -0.010948441922664642, + 0.00794644933193922, + -0.001876245136372745, + -0.0121384896337986, + 0.009144175797700882, + 0.008053937926888466, + -0.0010796806309372187, + 0.010910052806138992, + 0.005988628603518009, + -0.008023226633667946, + -0.034027695655822754, + -0.0172748900949955, + -0.006852373480796814, + 0.006407064851373434, + -0.01729024574160576, + 0.024891197681427002, + -0.010848631151020527, + -0.010418678633868694, + 0.003829267341643572, + -0.0054319933988153934, + 0.0039348360151052475, + 0.025966079905629158, + -0.0044914716854691505, + 0.01741308905184269, + -0.009720005095005035, + 0.008161426521837711, + -0.010556877590715885, + -0.00798483844846487, + -0.007343748118728399, + -0.003401234047487378, + 0.0002521654241718352, + 0.008944554254412651, + 0.011370716616511345, + 0.011155740357935429, + 0.0013522400986403227, + 0.018887214362621307, + 0.0018455341923981905, + 0.006959861610084772, + -0.0038215897511690855, + 0.001371434424072504, + -0.015240292996168137, + 0.004948296584188938, + -0.02803906798362732, + -0.0026622526347637177, + -0.012230622582137585, + 0.0313558466732502, + -0.014280576258897781, + 0.017213469371199608, + 0.00441853329539299, + 0.010349579155445099, + -0.014526263810694218, + -0.005347538273781538, + -0.002403129357844591, + 0.007643179502338171, + -0.012100101448595524, + 0.006430098321288824, + 0.022449679672718048, + 0.030403807759284973, + 0.01229204423725605, + -0.004057679791003466, + -0.01233811117708683, + 0.007577918935567141, + 0.005032751709222794, + -0.008123037405312061, + 0.009236307814717293, + 0.004606637638062239, + 0.005558676086366177, + 0.003731376491487026, + 0.0012543490156531334, + 0.002875309670343995, + -0.006844695657491684, + -0.002552845049649477, + -0.009267019107937813, + 0.00801554974168539, + -0.03017347678542137, + 0.026042858138680458, + 0.007078866474330425, + 0.0030307837296277285, + -0.0012370741460472345, + 0.006956022698432207, + 0.009873559698462486, + -0.020361337810754776, + -0.009359152056276798, + 0.013351570814847946, + -0.00019266302115283906, + -0.007577918935567141, + -0.01753593422472477, + 0.00979678239673376, + 0.009251663461327553, + 0.0044991495087742805, + -0.0010249768383800983, + -0.015455269254744053, + 0.007796734105795622, + 0.002884906716644764, + -0.00017106940504163504, + -0.03737518563866615, + -0.005635453388094902, + 0.004307206254452467, + 0.014580007642507553, + 0.0356246642768383, + 0.010840953327715397, + 0.008476212620735168, + 0.025643615052103996, + -0.004614315461367369, + 0.029497835785150528, + -0.012199911288917065, + 0.006023178808391094, + -0.00014995565288700163, + 0.02131337672472, + -0.005643131211400032, + -9.231270087184384e-5, + -0.020192427560687065, + -0.023739539086818695, + 0.004522182513028383, + 0.003691068384796381, + 0.016691382974386215, + -0.00329374591819942, + -0.01772019825875759, + -0.009520384483039379, + -0.013466737233102322, + 0.030987314879894257, + 0.009274696931242943, + 0.024937264621257782, + 0.013497447595000267, + -0.007140288129448891, + 0.009750716388225555, + 0.0077314735390245914, + -0.011240195482969284, + -0.011908157728612423, + 0.01748986728489399, + -0.014756595715880394, + 0.027440205216407776, + -0.004917585756629705, + -0.0113400062546134, + -0.00784663949161768, + -0.0015048349741846323, + 0.005220856051892042, + 0.003145949449390173, + -0.00800019409507513, + -0.013082850724458694, + 0.008353369310498238, + 0.008867776952683926, + 0.022035082802176476, + -0.02992778830230236, + 0.03556324169039726, + 0.009359152056276798, + -0.00047290013753809035, + 0.0051824674010276794, + 0.004253461956977844, + -0.015247969888150692, + 0.0007437799940817058, + 0.020576315000653267, + 0.0006170974811539054, + -0.0064876810647547245, + 0.016200007870793343, + -0.014242188073694706, + 0.0141193438321352, + -0.018226929008960724, + -0.0028445986099541187, + -0.015601146034896374, + -0.004299528431147337, + -0.022403614595532417, + -0.0024722288362681866, + 0.0019127143314108253, + -0.020499536767601967, + 0.008146070875227451, + -0.013889011926949024, + -0.014510908164083958, + 0.0014875599881634116, + -0.002581636421382427, + -0.00484080845490098, + -0.013804556801915169, + 0.001897358801215887, + -0.01216152310371399, + -0.01131697278469801, + 0.0004002016503363848, + 0.020192427560687065, + 0.012998395599424839, + 0.0047525144182145596, + 0.005301472265273333, + -0.013781524263322353, + 0.005900335032492876, + 0.015217259526252747, + 0.0032956653740257025, + -0.006549103185534477, + 0.0064800032414495945, + 0.004925263114273548, + 0.008468535728752613, + 0.005205500405281782, + 0.005159433931112289, + 0.001922311494126916, + 0.015378491953015327, + 0.01396578922867775, + -0.005044267978519201, + 0.016691382974386215, + -0.02658029831945896, + -0.0054473490454256535, + 0.016921715810894966, + -0.005731424782425165, + 0.007439719513058662, + 0.0131289167329669, + 0.014710528776049614, + 0.006130666937679052, + -0.012806452810764313, + 0.012215266935527325, + -0.023585984483361244, + 0.010134602896869183, + -0.00794644933193922, + 0.019869962707161903, + 0.01329782698303461, + -0.018749015405774117, + 0.01785839907824993, + -0.025812525302171707, + 0.01399650052189827, + 0.008268914185464382, + -0.02109839953482151, + -0.03193935379385948, + 0.01583147794008255, + -0.005109529010951519, + -0.004096068441867828, + -0.03316779062151909, + 0.01495621632784605, + -0.005236211232841015, + 0.027440205216407776, + 0.01778162084519863, + 0.010887020267546177, + 0.01397346705198288, + 0.0034377032425254583, + -0.006103794556111097, + 0.015232615172863007, + 0.003203532425686717, + -0.018365127965807915, + 0.02661100961267948, + -0.005389765836298466, + 0.0011199887376278639, + -0.012015646323561668, + -0.0039463527500629425, + 0.0004834569990634918, + 0.004111424088478088, + -0.009696971625089645, + 0.00245687342248857, + -0.0019491835264489055, + 0.04029272124171257, + 0.01234578900039196, + 0.0007130691083148122, + -0.011631759814918041, + 0.004675737116485834, + 0.0008695028373040259, + 0.014649107120931149, + -0.006837017834186554, + 0.010165313258767128, + -0.0024933426175266504, + -0.006318771280348301, + -0.007382136769592762, + -0.025904659181833267, + -0.012814129702746868, + -0.0193325225263834, + 0.007535691373050213, + -0.0002730392443481833, + 0.011101996526122093, + -0.0003747691516764462, + 0.004510665778070688, + -0.015570434741675854, + -0.006146022118628025, + -0.028699351474642754, + 0.005220856051892042, + -0.0016900601331144571, + -0.015178870409727097, + -0.004982846323400736, + -0.012814129702746868, + 0.007412847597151995, + -0.003798556514084339, + -0.014633751474320889, + 0.02969745732843876, + 0.000342858606018126, + -0.04367092251777649, + 0.00441853329539299, + -0.0021900723222643137, + 0.004560571163892746, + 0.0023973709903657436, + 0.01601574383676052, + 0.011631759814918041, + -0.012837163172662258, + -0.016706738620996475, + -0.012844840995967388, + 0.012084745801985264, + -0.007140288129448891, + 0.004399338737130165, + -0.021651197224855423, + -0.003579741343855858, + 0.008883132599294186, + -0.010879342444241047, + 0.012061712332069874, + -0.012752708047628403, + 0.012537731789052486, + 0.004856163635849953, + 0.003612371627241373, + -0.005286116618663073, + 0.013528158888220787, + -0.02985101193189621, + 0.004249623045325279, + 0.032154329121112823, + 0.020591670647263527, + -0.0032438405323773623, + 0.02813120000064373, + -0.009497351013123989, + -0.01928645558655262, + 0.018196217715740204, + -0.021420864388346672, + 0.009919625706970692, + -0.010541521944105625, + -0.021850816905498505, + 0.004172845743596554, + 0.003472252981737256, + 0.010741143487393856, + 0.012568443082273006, + 0.012499343603849411, + -0.009128820151090622, + 0.00978910457342863, + -0.0011929271277040243, + 0.012514698319137096, + 0.02106768824160099, + 0.02117517776787281, + -0.00749730272218585, + -0.008161426521837711, + 0.007151804864406586, + 0.0017514820210635662, + -0.014595363289117813, + -0.014042566530406475, + 0.00864512287080288, + -0.012768063694238663, + 0.00882938876748085, + -0.005796685349196196, + 0.011232517659664154, + -0.021835461258888245, + -0.005992467515170574, + 0.010979153215885162, + 0.003794717602431774, + -0.005566353909671307, + -0.007693084888160229, + -0.0321236178278923, + -0.014426453039050102, + 0.018027307465672493, + 0.001020178315229714, + -0.005908012855798006, + 0.0008906166185624897, + 0.021666551008820534, + 0.00798483844846487, + -0.021543707698583603, + 0.0014654865954071283, + 0.007581757847219706, + 0.018718304112553596, + 0.011117352172732353, + -0.00882938876748085, + 0.009336118586361408, + 0.00862976722419262, + -0.019977452233433723, + 0.003372442675754428, + -0.012921618297696114, + 0.00880635529756546, + -0.005167111754417419, + 0.001833057845942676, + 0.010134602896869183, + 0.015132804401218891, + 0.0033897175453603268, + 0.005105690099298954, + -0.011977257207036018, + -0.016860293224453926, + -0.007163321599364281, + 0.052085716277360916, + 0.024875842034816742, + -0.00967393908649683, + 0.009520384483039379, + -0.0015057947020977736, + -0.044653672724962234, + 0.002881067804992199, + 0.008107681758701801, + -0.027486270293593407, + 0.017228825017809868, + 0.005554837174713612, + -0.010387967340648174, + 0.0037774427328258753, + 0.01965498737990856, + -0.01922503486275673, + 0.01478730607777834, + -0.013942756690084934, + -0.008414790965616703, + -0.018150152638554573, + 0.00018486531917005777, + 0.005090334452688694, + 0.0016881406772881746, + -0.015347780659794807, + 0.0008656639838591218, + -0.005201661493629217, + -0.016891004517674446, + 0.0019827736541628838, + -0.020392049103975296, + -0.015340102836489677, + -0.006334126461297274, + 0.03725234046578407, + -0.01736702397465706, + -0.027701247483491898, + -0.0023532239720225334, + -0.0033302151132375, + 0.012115457095205784, + 0.00868351198732853, + 0.015470623970031738, + -0.012545409612357616, + -0.015547401271760464, + -0.028960395604372025, + -0.014741240069270134, + 0.009942659176886082, + -0.01752057857811451, + -0.020729869604110718, + -0.0077122789807617664, + -0.0030096699483692646, + 0.012031001970171928, + -0.00705199409276247, + 0.0009923465549945831, + -0.0014386145630851388, + 0.020054228603839874, + -0.01947072148323059, + 0.0035931773018091917, + -0.003554788650944829, + 0.013858301565051079, + -0.0021593612618744373, + -0.004671898204833269, + -0.0011430219747126102, + 0.011032897047698498, + -0.01604645326733589, + -0.0009923465549945831, + -0.002172797452658415, + 0.035931773483753204, + -0.001471244846470654, + 0.005286116618663073, + 0.014441808685660362, + 0.011117352172732353, + -0.006971378345042467, + -0.009911948814988136, + -0.000818158034235239, + 0.005919529125094414, + 0.0006156578892841935, + -0.005105690099298954, + -0.023985225707292557, + -0.015132804401218891, + -0.019869962707161903, + -0.025014040991663933, + -0.006833178922533989, + 0.024200202897191048, + 0.010426356457173824, + 0.006188249681144953, + -0.004357111174613237, + -0.016706738620996475, + -0.009113464504480362, + 0.0042304289527237415, + -0.018795080482959747, + 0.004625831730663776, + 0.0032534378115087748, + 0.01316730584949255, + -0.016921715810894966, + -0.014434130862355232, + -5.0565045967232436e-5, + -0.0047563533298671246, + 0.02639603242278099, + -0.0028503569774329662, + 0.001589289982803166, + 0.00010238972026854753, + -0.002059550955891609, + 0.00781592819839716, + 0.001636316068470478, + -0.0008455099305137992, + 0.006326449103653431, + -0.006433937232941389, + -0.013551192358136177, + -0.030864471569657326, + -0.011255551129579544, + -0.006314932368695736, + 0.0012610669946298003, + 0.01586218923330307, + -0.012437921017408371, + 0.004641187377274036, + -0.003919480834156275, + 0.010111569426953793, + -0.008468535728752613, + 0.010418678633868694, + 0.005013557150959969, + 0.004030807875096798, + 0.011040574871003628, + 0.0020537925884127617, + -0.023754894733428955, + 0.02441517822444439, + 0.05319130793213844, + 0.010242090560495853, + 0.007328392472118139, + -0.0005643130862154067, + 0.0007260252605192363, + 0.01759735494852066, + -0.007201710250228643, + -0.02484513260424137, + 0.005044267978519201, + 0.002426162362098694, + -0.008437824435532093, + -0.005251566879451275, + -0.010933086276054382, + -0.008207492530345917, + -0.00185417162720114, + -0.013912045396864414, + 0.034334804862737656, + -0.005339860450476408, + -0.0024895037058740854, + 0.008222848176956177, + 0.016814226284623146, + 0.014188443310558796, + 0.01065668836236, + 0.00979678239673376, + -0.009911948814988136, + 0.020084939897060394, + 0.01577005535364151, + 0.0029904756229370832, + -0.011217162013053894, + -0.009735360741615295, + 0.006261188071221113, + 0.016276786103844643, + 0.007443558424711227, + 0.004430049564689398, + -0.014318965375423431, + 0.0121384896337986, + 0.005512609612196684, + -0.006879245396703482, + -0.01214616745710373, + 0.00883706659078598, + 0.0029789588879793882, + 0.03006598725914955, + 0.0051863063126802444, + -0.006053889635950327, + -0.010242090560495853, + 0.007789056282490492, + -0.021574418991804123, + -0.025351861491799355, + -0.014288254082202911, + -0.004422372207045555, + -0.009029009379446507, + 0.029513191431760788, + -0.00010562875831965357, + 0.02119053341448307, + -0.0012370741460472345, + 0.012491665780544281, + -0.025044752284884453, + -0.02105233445763588, + -0.005600903648883104, + 0.014687496237456799, + 0.008046260103583336, + -0.000499532266985625, + -0.008207492530345917, + 0.01928645558655262, + 0.007217065431177616, + 0.005193983670324087, + 0.04038485512137413, + 0.0002979918790515512, + 0.01577005535364151, + 0.024952620267868042, + -0.004157490562647581, + -6.783993740100414e-5, + -0.012000290676951408, + 0.010027114301919937, + -0.0009170087869279087, + -0.007255454082041979, + -0.01920967921614647, + 0.004176684655249119, + -0.01066436618566513, + 0.01064133271574974, + -0.03006598725914955, + 0.016906360164284706 + ], + "16bbd799-fd2f-4b40-b959-54097655bd69": [ + -0.010347794741392136, + -0.002533392049372196, + 0.003189055249094963, + 0.01236022636294365, + -0.015320449136197567, + -0.027291173115372658, + -0.0010970999719575047, + 0.017813267186284065, + -0.02700553648173809, + 0.003249103669077158, + 0.012593928724527359, + 0.012665336951613426, + 0.012133016251027584, + -0.0045506926253438, + -0.019267411902546883, + 0.012937989085912704, + 0.017553599551320076, + 0.03915802761912346, + -0.00751091493293643, + -0.016644759103655815, + 0.059723783284425735, + -0.0372624471783638, + -0.041313279420137405, + 0.031575705856084824, + -0.023396143689751625, + -0.025681227445602417, + -0.003443855093792081, + 0.0071863289922475815, + -0.05240112915635109, + 0.0029504846315830946, + 0.019617965444922447, + 0.012600420042872429, + -0.015593101270496845, + -0.020916307345032692, + 0.010678872466087341, + -0.013853320851922035, + -0.0076147825457155704, + 0.011704563163220882, + -0.01558011770248413, + -0.009029976092278957, + -0.02301962301135063, + 0.04897350072860718, + 0.018761057406663895, + -0.0029926809947937727, + -0.0387425571680069, + 0.001060584094375372, + -0.005800347775220871, + -0.015645034611225128, + 0.02092929184436798, + 0.011840889230370522, + -0.009899865835905075, + 0.030926533043384552, + 0.007355113979429007, + -0.003690540324896574, + 0.01769641600549221, + -0.03027736209332943, + 0.06611163169145584, + 0.05473814532160759, + 0.002406803658232093, + -0.03754808381199837, + 0.011152767576277256, + -0.00030896509997546673, + -0.03463979437947273, + -0.005793855991214514, + 0.0010208223247900605, + -0.025096973404288292, + -0.024590618908405304, + -0.0263174157589674, + -0.03562653437256813, + -0.02004641853272915, + -0.005375140346586704, + 0.045779578387737274, + -0.03913206234574318, + -0.007082461845129728, + -0.00021341514366213232, + -0.03170553967356682, + 0.00563805503770709, + 0.013333983719348907, + 0.020812440663576126, + -0.005719201639294624, + -0.008315887302160263, + 0.0029342554043978453, + -0.02814807929098606, + 0.0022185437846928835, + 0.09472711384296417, + -0.00886119157075882, + 0.005965886637568474, + -0.03637957572937012, + -0.0015831671189516783, + -0.021552495658397675, + -0.04803869500756264, + 0.03521106392145157, + -0.017177078872919083, + 0.011892822571098804, + 0.006384602282196283, + 0.011094341985881329, + 0.022214651107788086, + -0.004768165294080973, + 0.027784543111920357, + 0.035314932465553284, + 0.039287861436605453, + 0.0006305078859440982, + -0.0043656788766384125, + -0.010510087944567204, + 0.006673483643680811, + -0.03497736528515816, + -0.01130856852978468, + 0.0003055163542740047, + -0.015242548659443855, + 0.04801272973418236, + 0.00680980971083045, + -0.041105542331933975, + 0.016592824831604958, + 0.010003733448684216, + -0.04523427411913872, + -0.014879012480378151, + 0.0066929589956998825, + -0.04048233851790428, + 0.021954981610178947, + -0.048090629279613495, + 0.015658017247915268, + -0.015307465568184853, + 0.03604200482368469, + -0.002948861801996827, + 0.007679699454456568, + -0.009588263928890228, + -0.011373485438525677, + 0.011594204232096672, + 0.00395994633436203, + 0.041572947055101395, + 0.009464921429753304, + 0.004086534958332777, + 0.008465196937322617, + 0.01698232814669609, + 0.0003621159994509071, + 0.017592549324035645, + 0.0045409551821649075, + 0.047597259283065796, + -0.006829284597188234, + 0.03702874481678009, + -0.051570188254117966, + -0.03243261203169823, + -0.04967460781335831, + 0.01952708140015602, + 0.01092555746436119, + 0.016385089606046677, + -0.027291173115372658, + 0.03290001302957535, + -0.019267411902546883, + 0.018527356907725334, + -0.05406300723552704, + -0.0036937862168997526, + -0.006245030555874109, + 0.02495415508747101, + 0.04416963458061218, + -0.02308453992009163, + -0.02540857531130314, + 0.022759955376386642, + 0.018215753138065338, + 0.02238343469798565, + 0.03399062156677246, + -0.06761770695447922, + 0.018929842859506607, + 0.018098903819918633, + 0.04637681692838669, + 0.027810510247945786, + 0.029290620237588882, + 0.012425143271684647, + -0.006725417450070381, + 0.010399728082120419, + 0.03747018426656723, + -0.0247204527258873, + 0.018306637182831764, + -0.010302352719008923, + 0.03863869234919548, + -0.01890387572348118, + 0.03297791630029678, + -0.016151389107108116, + 0.04136521369218826, + -0.06559229642152786, + -0.02960222400724888, + -0.030848631635308266, + 0.011074867099523544, + -0.019942549988627434, + -0.03302985057234764, + 0.010873623192310333, + -0.023162441328167915, + 0.0047292145900428295, + 0.007225279696285725, + 0.00495317904278636, + -0.026616033166646957, + -0.015554150566458702, + -0.0007051625871099532, + 0.005199864041060209, + -0.010354286059737206, + -0.04466300457715988, + 0.000335946271661669, + 0.003534739138558507, + -0.004274794831871986, + 0.01861824095249176, + -0.0004300761502236128, + -0.04146907851099968, + -0.014100005850195885, + 0.03604200482368469, + -0.003774932585656643, + 0.012632878497242928, + -0.017397798597812653, + -0.0017527631716802716, + 0.027421006932854652, + -0.05432267487049103, + 0.025577358901500702, + -0.024317966774106026, + 0.004041092935949564, + 0.00047835829900577664, + -0.01909862644970417, + 0.03554863482713699, + -0.02540857531130314, + 0.0007355925044976175, + 0.016891444101929665, + -0.028927084058523178, + 0.004661052022129297, + 0.0090689267963171, + -0.00343087175861001, + -0.02000746689736843, + -0.045026540756225586, + 0.009731081314384937, + -0.00979599915444851, + 0.031575705856084824, + -0.029238687828183174, + 0.0021990686655044556, + 0.02610968053340912, + -0.008582048118114471, + 0.007562848739326, + 0.015060780569911003, + -0.0013445966178551316, + 0.04567570984363556, + 0.013385917991399765, + 0.02960222400724888, + -0.037392280995845795, + -0.01210705004632473, + 0.011704563163220882, + 0.005092750769108534, + 0.008523622527718544, + 0.01607348769903183, + 0.026382332667708397, + 0.008913125842809677, + -0.0034990347921848297, + 0.032043106853961945, + 0.0004187156446278095, + -0.00453446339815855, + -0.015073763206601143, + 0.024538684636354446, + -0.010899590328335762, + -0.00895856786519289, + -0.004297515843063593, + 0.017384814098477364, + 0.038508858531713486, + -0.01816382072865963, + -0.017410781234502792, + 0.022032883018255234, + 0.013697519898414612, + -0.005394615698605776, + -0.0006601263303309679, + -0.006946135777980089, + 0.06325528025627136, + -0.01861824095249176, + 0.02191603183746338, + -0.006900693755596876, + 0.0035314932465553284, + 0.05123262107372284, + -0.017306914553046227, + 0.012606911361217499, + -0.001780353020876646, + 0.005625071469694376, + 0.004700002260506153, + -0.006413815077394247, + 0.0045409551821649075, + 0.010432186536490917, + 0.01580083556473255, + -0.0024506226181983948, + 0.011470861732959747, + -0.017371831461787224, + 0.008497655391693115, + 0.05634809285402298, + -0.002291575539857149, + 0.024733437225222588, + -0.012529010884463787, + -0.0039015209767967463, + -0.01526851486414671, + -0.01025691069662571, + -0.00012547269579954445, + 0.003735982347279787, + 0.026693934574723244, + 0.0106074633076787, + 0.02396741323173046, + 0.01306133158504963, + -0.0429232232272625, + -0.012658845633268356, + -0.0062190634198486805, + -0.01407403964549303, + -0.009588263928890228, + 0.025746144354343414, + -0.015956636518239975, + -0.02955028973519802, + 0.017748350277543068, + -0.04141714423894882, + 0.02629144862294197, + 0.034795597195625305, + -0.03983316570520401, + 0.024993104860186577, + 0.01608647219836712, + 0.013145724311470985, + -0.013606635853648186, + -0.0040183719247579575, + 0.01959199830889702, + 0.007601798977702856, + -0.004842819646000862, + -0.01407403964549303, + -0.01233425922691822, + -0.02257818728685379, + -0.0013015889562666416, + 0.0004669977934099734, + -0.03277017921209335, + -0.011341026984155178, + 0.029524322599172592, + -0.025927912443876266, + 0.04006686806678772, + -0.026278464123606682, + -0.0246555358171463, + -0.027083437889814377, + -0.03905416280031204, + -0.004297515843063593, + -0.010179010219871998, + -0.04985637590289116, + -0.04071604087948799, + -0.015956636518239975, + -0.026408299803733826, + -0.032250843942165375, + 0.014489509165287018, + -0.02978399209678173, + -0.006342405918985605, + -0.012548486702144146, + 0.018709124997258186, + -0.026849735528230667, + -0.025901945307850838, + -0.035029295831918716, + 0.011535778641700745, + 0.013145724311470985, + -0.008458705618977547, + 0.014463542029261589, + 0.0008431115420535207, + -0.016878461465239525, + 0.014398625120520592, + 0.017605531960725784, + 0.07603096961975098, + -0.002452245680615306, + -0.045779578387737274, + -0.037833716720342636, + 0.005832806695252657, + -0.017047245055437088, + 0.012613403610885143, + -0.030199460685253143, + -0.04401383176445961, + -0.011665613390505314, + 0.0019507604883983731, + 0.0364055410027504, + -0.020435919985175133, + -0.012516027316451073, + 0.02353896014392376, + 0.033445317298173904, + -0.03752211481332779, + -0.007764091715216637, + 0.020215202122926712, + -0.04406576603651047, + 0.003589918836951256, + -0.026148630306124687, + 0.021137025207281113, + -0.01656685769557953, + 0.007978318259119987, + 0.012697795405983925, + -0.018021002411842346, + 0.016462991014122963, + 0.023928463459014893, + -0.04957073926925659, + 0.003625623183324933, + 0.024993104860186577, + -0.005134947132319212, + -0.026590067893266678, + 0.026667967438697815, + 0.030796699225902557, + -0.04520830884575844, + -0.0022039373870939016, + 0.0031014170963317156, + -0.006034049671143293, + -0.012197934091091156, + -0.007731633260846138, + -0.010380253195762634, + 0.007686191238462925, + -0.023175423964858055, + -0.024084264412522316, + -0.01095801591873169, + 0.023162441328167915, + 0.0013178182998672128, + 0.018696140497922897, + 0.0414431132376194, + -0.01291851419955492, + 0.017592549324035645, + -0.029446421191096306, + 0.021344760432839394, + 0.011146275326609612, + 0.015047797001898289, + 0.011503320187330246, + 0.012613403610885143, + -0.022487303242087364, + 0.01839752122759819, + 0.021292828023433685, + 0.012613403610885143, + 0.0216433797031641, + -0.02814807929098606, + -0.01676161028444767, + 0.029498355463147163, + 0.010970999486744404, + 0.012593928724527359, + 0.016891444101929665, + -0.0395994633436203, + 0.04011880233883858, + 0.0006812243955209851, + 0.032276809215545654, + -0.004485775716602802, + -0.058321572840213776, + -0.00804323609918356, + 0.024629568681120872, + 0.0017089440952986479, + 0.00942597072571516, + -0.019682882353663445, + -0.005264781415462494, + 0.032536476850509644, + -0.024538684636354446, + -0.012171966955065727, + -0.013554702512919903, + 0.0017641236772760749, + 0.018761057406663895, + -0.00012719705409836024, + -0.04744145646691322, + -0.0031728260219097137, + 0.027836477383971214, + -0.015229565091431141, + 0.00942597072571516, + 0.03396465629339218, + -0.010432186536490917, + -0.012554978020489216, + 0.005849035922437906, + -0.03752211481332779, + -0.006141162943094969, + -0.0049499329179525375, + -0.018124869093298912, + -0.00437217066064477, + -0.01480111200362444, + 0.02726520597934723, + -0.06263206899166107, + -0.0019540064968168736, + -0.013184674084186554, + 0.011951248161494732, + -0.02983592450618744, + 0.03427625820040703, + -0.0423000194132328, + 0.004323482513427734, + -0.015722936019301414, + -0.009997242130339146, + 0.01935829594731331, + -0.022435368970036507, + -0.01049710437655449, + -0.011055391281843185, + 0.018280671909451485, + -0.0025155397597700357, + -0.006712433882057667, + -0.01432072464376688, + 0.013684536330401897, + -0.009159810841083527, + 0.0018631223356351256, + -0.009042959660291672, + -0.00104597769677639, + -0.023902496322989464, + -0.006842268165200949, + -0.008653457276523113, + -0.022071832790970802, + -0.01681354269385338, + -0.07088953256607056, + -0.00024465651949867606, + 0.011230668053030968, + 0.047597259283065796, + 0.01608647219836712, + 0.0039015209767967463, + 0.011581220664083958, + 0.01537238247692585, + -0.0070889536291360855, + 0.018241720274090767, + -0.03871659189462662, + -0.024876253679394722, + 0.002658357610926032, + -0.0003057192370761186, + -0.02069558948278427, + -0.010730805806815624, + 0.030640898272395134, + -0.023564927279949188, + 0.00600483687594533, + -0.015164647251367569, + -0.008666439913213253, + -0.009438954293727875, + -0.004800623748451471, + -0.015696968883275986, + -0.004268303047865629, + -0.016424041241407394, + 0.01480111200362444, + 0.004229352809488773, + 0.0014476525830104947, + -0.022993655875325203, + -0.012931497767567635, + 0.03752211481332779, + 0.0032117762602865696, + -0.023577911779284477, + 0.0145414425060153, + -0.00840677134692669, + -0.012139508500695229, + 0.004446825012564659, + 0.019397245720028877, + -0.019410230219364166, + -0.02490222081542015, + 0.010568512603640556, + -0.005219339393079281, + -0.0024262787774205208, + -0.00395994633436203, + -0.02305857464671135, + -0.002296444494277239, + 0.02843371406197548, + -0.016579842194914818, + -0.02700553648173809, + 0.025901945307850838, + 0.021708296611905098, + 0.03422432392835617, + -0.029238687828183174, + 0.0012277456698939204, + 0.006193096749484539, + -0.003946963232010603, + -0.0272392388433218, + 0.019462162628769875, + 0.003930734004825354, + 0.019643930718302727, + -0.013827354647219181, + 0.0372624471783638, + -0.024369901046156883, + 0.019150560721755028, + -0.025278741493821144, + -0.0010281254071742296, + 0.008004285395145416, + -0.0427933894097805, + -0.005767889320850372, + -0.0156190674751997, + -0.0058555277064442635, + -0.017397798597812653, + -0.01337293442338705, + 0.0031306298915296793, + 0.007549865171313286, + 0.01247058529406786, + -0.0008617752464488149, + 0.0001273999223485589, + -0.0357823371887207, + 0.0272392388433218, + 0.008517131209373474, + 0.010769756510853767, + 0.042975157499313354, + -0.014710227958858013, + 0.06143759563565254, + 0.009250694885849953, + 0.024824321269989014, + 0.02073453925549984, + 1.389632870996138e-5, + 0.011918789707124233, + 0.006329422816634178, + -0.03284808248281479, + -0.014048072509467602, + -0.007549865171313286, + -0.021253876388072968, + -0.01151630375534296, + -0.004917474463582039, + -0.015190614387392998, + -0.03817128762602806, + -0.01696934551000595, + 0.011425419710576534, + 0.0037197531200945377, + 0.007303180173039436, + 0.04500057175755501, + -0.011334535665810108, + 0.01696934551000595, + -0.013385917991399765, + 0.021085092797875404, + 0.02216271683573723, + 0.0029521076940000057, + -0.009107876569032669, + -0.019721832126379013, + 0.0007437071762979031, + 0.05006410926580429, + 0.008478180505335331, + -0.002987812040373683, + -0.02378564514219761, + -0.009471412748098373, + 0.030666865408420563, + 0.030848631635308266, + -0.028329847380518913, + 0.02838177978992462, + -0.03895029425621033, + 0.01674862578511238, + 0.021253876388072968, + -0.03476962819695473, + 0.01432072464376688, + -0.010568512603640556, + -0.00023268743825610727, + 0.048583999276161194, + 0.027161337435245514, + -0.0160475205630064, + 0.0024847041349858046, + -0.019228462129831314, + 0.018332604318857193, + -0.0012196310563012958, + 0.045753613114356995, + 0.0409497432410717, + -0.0012009673519060016, + -0.011886331252753735, + -0.013567686080932617, + -0.01978674903512001, + -0.004972653929144144, + -0.003972929902374744, + 0.004557184409350157, + -0.018929842859506607, + 0.01976078189909458, + -0.004154697991907597, + -0.014411608688533306, + 0.043883997946977615, + -0.0011985329911112785, + -0.025759126991033554, + -0.007374588865786791, + -0.017073212191462517, + 0.02814807929098606, + 0.050427645444869995, + -0.014281773939728737, + 0.042975157499313354, + -0.004904491361230612, + 0.026135647669434547, + 0.016021553426980972, + 0.016891444101929665, + -0.032458577305078506, + 0.009166302159428596, + 0.00016624877753201872, + 0.007718649692833424, + 0.01092555746436119, + -0.0216433797031641, + -0.006443027872592211, + 0.0312381349503994, + 0.012366718612611294, + -0.002596686128526926, + 0.043208859860897064, + -0.018241720274090767, + -0.010555529966950417, + 0.0056023504585027695, + 0.004329974297434092, + 0.010750280693173409, + 0.01934531331062317, + 0.02168232947587967, + -0.0009924210608005524, + 0.03793758526444435, + -0.009821965359151363, + -0.03780775144696236, + 0.034587860107421875, + -0.011016441509127617, + 0.01302238181233406, + 0.014814094640314579, + 0.028693383559584618, + -0.032043106853961945, + -0.038327090442180634, + 0.004005388356745243, + 0.016190338879823685, + -0.03116023540496826, + -0.03765195235610008, + 0.026590067893266678, + -0.013944204896688461, + -0.006933152209967375, + 0.0017917135264724493, + -0.009374037384986877, + -0.007478456478565931, + 0.005384878255426884, + -0.035704437643289566, + -0.0008593408274464309, + 0.01432072464376688, + 0.025019071996212006, + 0.004897999577224255, + 0.023201391100883484, + 0.017138129100203514, + -0.012996414676308632, + 0.031757473945617676, + -0.015034813433885574, + -0.0216433797031641, + -0.017761334776878357, + 0.02004641853272915, + -0.017644483596086502, + 0.0005992664955556393, + 0.01025691069662571, + -0.009380528703331947, + 0.005926936399191618, + -0.004803869407624006, + -0.01128260139375925, + -0.009925832971930504, + 0.004008634481579065, + -0.01306133158504963, + 0.0233052596449852, + 0.008711881935596466, + 0.026875702664256096, + -0.017073212191462517, + 0.007854975759983063, + -0.020409954711794853, + 0.011328043416142464, + -0.01082168985158205, + 0.024058297276496887, + 0.0026453740429133177, + -0.029004985466599464, + -0.042507752776145935, + 0.005582875572144985, + 0.01580083556473255, + 0.0005915575893595815, + -0.01060097198933363, + 0.010243927128612995, + 0.04892157018184662, + 0.0007696740212850273, + 0.03095250017940998, + 0.00727072125300765, + -0.0002586542977951467, + -0.016839509829878807, + 0.006699450314044952, + -0.0364055410027504, + 0.03334145247936249, + -0.042741455137729645, + 0.005845789797604084, + -0.01247058529406786, + 0.021786198019981384, + -0.04658455029129982, + -0.002171478932723403, + -0.0014208742650225759, + 0.017527632415294647, + -0.010626938194036484, + -0.004846065770834684, + 0.032484546303749084, + 0.03611990436911583, + 0.007861468009650707, + 0.03264034539461136, + 0.035288967192173004, + -0.0061736213974654675, + -0.01233425922691822, + 0.005842544138431549, + -8.571093349019065e-5, + -0.011834397912025452, + 0.02004641853272915, + 0.007848484441637993, + 0.014580393210053444, + -0.00420014001429081, + -0.011354010552167892, + -0.010153043083846569, + 0.007997794076800346, + -0.007283704821020365, + 0.00033696062746457756, + 0.028693383559584618, + 0.005673759616911411, + 0.012483568862080574, + 0.02840774692595005, + 0.03905416280031204, + 0.023655811324715614, + -0.02351299300789833, + -0.010678872466087341, + 0.014255807735025883, + -0.015891719609498978, + -0.047155823558568954, + 0.003800899488851428, + -0.011587711982429028, + -0.03534090146422386, + 0.014164923690259457, + -0.02002045139670372, + 0.028070177882909775, + -0.022941723465919495, + 0.03370498865842819, + 0.0033464794978499413, + -0.035262998193502426, + -0.009867407381534576, + -0.00123829476069659, + -0.0024051805958151817, + -0.011931773275136948, + 0.025551391765475273, + 0.025577358901500702, + -0.02377266250550747, + -0.0064722406677901745, + -0.023201391100883484, + 0.0023353947326540947, + -0.005066784098744392, + 0.025798078626394272, + -0.0073616052977740765, + 0.03539283201098442, + 0.026369348168373108, + 0.004839573986828327, + 0.015748901292681694, + 0.02604476362466812, + 0.018968792632222176, + -0.005443303380161524, + -0.009932325221598148, + 0.0021325284615159035, + 0.008939092047512531, + -0.00839378871023655, + 0.03282211348414421, + -0.02608371339738369, + 0.0226301196962595, + -0.0058263149112463, + 0.01889089308679104, + 0.05541328340768814, + 0.01842348836362362, + -0.0026453740429133177, + 0.0017462715040892363, + -0.016696693375706673, + 0.02610968053340912, + -0.015424315817654133, + -0.021098075434565544, + 0.03261438012123108, + -0.009120860137045383, + 0.035964105278253555, + 0.0047292145900428295, + 0.00955580547451973, + 0.016411056742072105, + 0.0032620870042592287, + 0.004560430068522692, + -0.008828733116388321, + 0.01128260139375925, + -0.01651492528617382, + -0.02796631120145321, + -0.045052506029605865, + 0.009231219999492168, + -0.020422937348484993, + -0.031783439218997955, + -0.01696934551000595, + -0.014840061776340008, + -0.011250142939388752, + -0.007971826940774918, + 0.0030364999547600746, + 0.019215477630496025, + 0.032744213938713074, + 0.031783439218997955, + 0.004797377623617649, + -0.007114920299500227, + 0.002747618593275547, + 0.009893374517560005, + -0.024084264412522316, + 0.012165474705398083, + -0.026408299803733826, + 0.02143564447760582, + -0.008250970393419266, + 0.00019698299001902342, + 0.024369901046156883, + -0.022941723465919495, + -0.04076797515153885, + -0.017345864325761795, + -0.00448252959176898, + 0.0116201713681221, + -0.013191166333854198, + 0.004518234170973301, + -0.010062159039080143, + -0.00026048009749501944, + -0.00680980971083045, + 0.010198485106229782, + -0.008484672755002975, + -0.005556908436119556, + -0.009854424744844437, + 0.027888409793376923, + -0.006222309544682503, + 0.013606635853648186, + -0.02002045139670372, + -0.010691856034100056, + -0.023149458691477776, + 0.029706090688705444, + 0.03097846731543541, + -0.011548762209713459, + -0.04515637457370758, + 0.02047487162053585, + 0.010315336287021637, + -0.0003292516921646893, + -0.020864373072981834, + -0.00658584525808692, + 0.015489233657717705, + -0.012795171700417995, + -0.036639243364334106, + -0.00588474003598094, + -0.015722936019301414, + -0.03266631439328194, + -0.02098122425377369, + -0.009081910364329815, + -0.012736746110022068, + 0.01767045073211193, + 0.013424867764115334, + -0.014827078208327293, + -0.026927636936306953, + -0.02255222015082836, + 0.0017008294817060232, + -0.027187304571270943, + 0.020371003076434135, + 0.01673564314842224, + 0.007971826940774918, + 0.06502102315425873, + 0.039495598524808884, + -0.015229565091431141, + -0.022954706102609634, + -0.024058297276496887, + 0.07052599638700485, + -0.010542546398937702, + 0.015554150566458702, + -0.02378564514219761, + -0.00036556474515236914, + 0.007017544470727444, + 0.012743237428367138, + 0.0043332199566066265, + 0.010503595694899559, + 0.0028174046892672777, + -0.006777351256459951, + 0.01842348836362362, + -0.0038301122840493917, + -0.0041449605487287045, + 0.008601523004472256, + 0.02604476362466812, + 0.008939092047512531, + -0.00488501600921154, + 0.008478180505335331, + -0.012431635521352291, + 0.00029963324777781963, + -0.012970447540283203, + -0.014619343914091587, + -0.02629144862294197, + 0.001962121110409498, + 0.001612379914149642, + 0.018709124997258186, + -0.018098903819918633, + 0.01882597617805004, + 0.007816025987267494, + -0.004940195474773645, + -0.010685363784432411, + 0.004219615366309881, + 0.024304984137415886, + 0.025096973404288292, + 0.011847380548715591, + 0.007192820776253939, + -0.008471689186990261, + 0.0029115343932062387, + -0.013113265857100487, + 0.0479607954621315, + 0.013814371079206467, + -0.009640197269618511, + 0.0070564947091042995, + 0.00790691003203392, + -0.018942825496196747, + -0.011341026984155178, + -0.00836782157421112, + 0.01860525645315647, + 0.0034341176506131887, + -0.038508858531713486, + 0.017878184095025063, + -0.017397798597812653, + 0.04375416412949562, + -0.016631774604320526, + -0.028225978836417198, + 0.000652823131531477, + -0.02978399209678173, + 0.010406220331788063, + 0.029654156416654587, + -0.004514988046139479, + -0.0057776267640292645, + 0.007699174806475639, + -0.012483568862080574, + -0.008984534069895744, + -0.003339987713843584, + 0.048765767365694046, + 0.03611990436911583, + -0.03001769259572029, + -0.007257738150656223, + -0.033886756747961044, + 0.016398074105381966, + -0.00977003201842308, + -0.017566582188010216, + -0.018293654546141624, + 0.010646414011716843, + -0.007543373387306929, + -0.04731162264943123, + 0.0022282814607024193, + 0.01456740964204073, + 0.022941723465919495, + 0.00030105331097729504, + -0.0212149266153574, + -0.05286853015422821, + 0.0049856374971568584, + -0.025888962671160698, + -0.0242270827293396, + -0.022240618243813515, + -0.02679780125617981, + 0.03661327436566353, + -0.004352695308625698, + 0.017553599551320076, + 0.00064795435173437, + -0.04022267088294029, + -0.001127935596741736, + -0.002646997105330229, + -0.020604705438017845, + -0.01197721529752016, + -0.010088126175105572, + -0.0033432336058467627, + 0.007575832307338715, + 0.005852281581610441, + -0.009685639292001724, + -0.016021553426980972, + -0.0191245935857296, + 0.016605809330940247, + -0.0016846002545207739, + 0.0054725161753594875, + 0.004083289299160242, + -0.005044063087552786, + -0.019916582852602005, + 0.01934531331062317, + 0.013606635853648186, + 0.011470861732959747, + 0.0023743449710309505, + -0.0004580716777127236, + -0.017319897189736366, + -0.01351575180888176, + 0.0007404612842947245, + -0.008380805142223835, + -0.00418391078710556, + -0.009925832971930504, + -0.01839752122759819, + -0.0715646743774414, + -0.005813331343233585, + 0.0054725161753594875, + 0.04663648456335068, + 0.013437851332128048, + -0.024045314639806747, + 0.004248827695846558, + 0.016164371743798256, + 0.00042317871702834964, + 0.03765195235610008, + -0.009581772610545158, + -0.034146424382925034, + 0.005186880938708782, + 0.027862442657351494, + 0.03336741775274277, + 0.003875554306432605, + 0.011587711982429028, + 0.008419754914939404, + 0.008108153007924557, + -0.03071879781782627, + 0.0011887954315170646, + 0.0016326664481312037, + 0.02327929250895977, + -0.008471689186990261, + -0.009348070248961449, + 0.03653537482023239, + -0.04240388795733452, + 0.011905806139111519, + -0.028771283105015755, + -0.005180389154702425, + 0.008737849071621895, + -0.017865201458334923, + -0.01633315719664097, + -0.01306133158504963, + 0.011211193166673183, + 0.010919065214693546, + -0.009802490472793579, + 0.0037976535968482494, + 0.04380609840154648, + 0.019916582852602005, + 0.01537238247692585, + -0.008004285395145416, + -0.008426247164607048, + -0.03373095393180847, + -0.012905530631542206, + -0.024330949410796165, + 0.037600018084049225, + -0.009601247496902943, + -0.018916858360171318, + 0.024266032502055168, + 0.03277017921209335, + 0.005563400220125914, + 0.03500333055853844, + -0.016709676012396812, + -0.015554150566458702, + -0.011548762209713459, + -0.004427350126206875, + 0.006530665792524815, + 0.01769641600549221, + 0.011211193166673183, + 0.03180940821766853, + 0.01012707594782114, + 0.004216369241476059, + -0.016424041241407394, + 0.008458705618977547, + 0.03180940821766853, + 0.0016943378141149879, + -0.0028660923708230257, + -0.01221740897744894, + 0.008556080982089043, + 0.020358020439743996, + -0.030900565907359123, + 0.008575555868446827, + 0.027135372161865234, + -0.016592824831604958, + 0.01677459292113781, + 0.013814371079206467, + -0.006404077634215355, + 0.006335914600640535, + -0.010704838670790195, + -0.0014792997390031815, + 0.014788128435611725, + -0.013736470602452755, + -0.003495788900181651, + -0.007647241000086069, + -0.002436016220599413, + -0.016372106969356537, + -0.022006915882229805, + -0.0011798692867159843, + 0.0330817811191082, + 0.009283153340220451, + 0.012976939789950848, + 0.014100005850195885, + 0.027291173115372658, + -0.013223624788224697, + 0.04307902604341507, + 0.0072317710146307945, + -0.026979569345712662, + -0.010406220331788063, + 0.008465196937322617, + -0.0010419203899800777, + -0.015177630819380283, + 0.0177094005048275, + -0.04510444030165672, + -0.0026794555597007275, + -0.006803317926824093, + -0.005878248251974583, + 0.03266631439328194, + -0.029186753556132317, + -0.011185226030647755, + -0.011250142939388752, + 0.030381228774785995, + -0.02353896014392376, + 0.03469172865152359, + -0.017047245055437088, + 0.012133016251027584, + 0.008705390617251396, + -0.021007191389799118, + -0.02092929184436798, + -0.004401382990181446, + -0.017514647915959358, + 0.028225978836417198, + -0.00558612123131752, + -0.0322248749434948, + -0.002215297892689705, + -0.007835500873625278, + -0.0013243099674582481, + -0.036691177636384964, + 0.018981777131557465, + 0.034561894834041595, + -0.001955629326403141, + 0.021487578749656677, + -0.011230668053030968, + 0.005190126597881317, + 0.0011766235111281276, + 0.020215202122926712, + 0.025434542447328568, + -0.002181216375902295, + 0.01632017269730568, + -0.013424867764115334, + 0.00862099789083004, + -0.012937989085912704, + 0.027862442657351494, + 0.013243099674582481, + -0.0015515200793743134, + -0.00652742013335228, + -0.013801387511193752, + 0.00274112680926919, + -0.02074752375483513, + -0.01816382072865963, + -0.02326630800962448, + 0.008179561235010624, + 0.021695313975214958, + -0.007731633260846138, + -0.002296444494277239, + -0.02281188778579235, + -0.009406495839357376, + 0.01680056005716324, + 0.00633916025981307, + -0.014255807735025883, + -0.015671001747250557, + 0.004118993412703276, + 0.004118993412703276, + -0.008114644326269627, + 0.017060227692127228, + -0.02448675036430359, + -0.0018858433468267322, + -0.013541718944907188, + -0.01582680270075798, + -0.009361053816974163, + -0.012438126839697361, + -0.0019572521559894085, + 0.014554426074028015, + 0.002457114402204752, + 0.003073827363550663, + -0.008458705618977547, + -0.023461060598492622, + -0.019721832126379013, + 0.009250694885849953, + 0.009984258562326431, + -0.013119757175445557, + 0.005388123914599419, + 0.0030381230171769857, + 0.025577358901500702, + 0.014333708211779594, + 0.010893099009990692, + 0.012866579927504063, + -0.02494117058813572, + -0.0006844702875241637, + -0.004933703690767288, + 0.028355814516544342, + 0.005722447298467159, + -0.0011628285283222795, + -0.005621825810521841, + 0.013528735376894474, + -0.006550141144543886, + 0.004122239537537098, + 0.01867017336189747, + -0.03149780258536339, + -0.0021179222967475653, + -0.017332879826426506, + -0.0034535927698016167, + 0.047207754105329514, + -0.008582048118114471, + 7.754557009320706e-5, + 0.0018533847760409117, + -0.016618791967630386, + 0.014580393210053444, + 0.014554426074028015, + 0.009971274994313717, + -0.02442183345556259, + 0.014255807735025883, + 0.014372657984495163, + -0.012366718612611294, + 0.013827354647219181, + -0.009250694885849953, + 0.005842544138431549, + -0.006816301494836807, + 0.002596686128526926, + -0.01608647219836712, + 0.035418801009655, + 0.006128179375082254, + 0.022240618243813515, + -0.023603877052664757, + -0.012600420042872429, + -0.001725173438899219, + -0.006725417450070381, + -0.03071879781782627, + -0.025551391765475273, + -0.007348622195422649, + -0.0023191655054688454, + -0.016177354380488396, + 0.015722936019301414, + 0.01058149617165327, + 0.020656639710068703, + -0.0052031101658940315, + 0.0017673695692792535, + -0.007556356955319643, + 0.00692016864195466, + 0.002406803658232093, + -0.020150285214185715, + -0.013398900628089905, + -0.016891444101929665, + 0.004502004943788052, + 0.010029700584709644, + 0.025499459356069565, + -0.026590067893266678, + -0.014762161299586296, + 0.014476525597274303, + 0.0006544460775330663, + 0.0067903343588113785, + 0.0034406092017889023, + -0.040897808969020844, + -0.002236396074295044, + 0.000708002713508904, + 0.004170927219092846, + -0.009153318591415882, + -0.012158983387053013, + 0.010282877832651138, + -0.015982603654265404, + 0.03489946201443672, + -0.003573689376935363, + 0.02536962367594242, + -0.015034813433885574, + 0.01267832051962614, + -0.030329294502735138, + -0.008601523004472256, + 0.014346691779792309, + 0.045312173664569855, + -0.011204700917005539, + 0.025265756994485855, + -0.009224727749824524, + -0.008666439913213253, + -0.027057470753788948, + 0.007062986493110657, + 0.02281188778579235, + -0.01674862578511238, + -0.007595307193696499, + 0.01092555746436119, + 0.030692830681800842, + -0.030433163046836853, + 0.007549865171313286, + -0.01267182920128107, + 0.03463979437947273, + -0.00011725661170203239, + 0.0025788340717554092, + 0.006186604965478182, + 0.0016488957917317748, + 0.03266631439328194, + -0.010107601061463356, + 0.0011896068463101983, + 0.008458705618977547, + 0.02703150361776352, + -0.00675787590444088, + 0.020578738301992416, + 0.002341886516660452, + 0.010237435810267925, + 0.004180664662271738, + 0.014112989418208599, + 0.010769756510853767, + 0.015073763206601143, + 0.025772111490368843, + -0.009503871202468872, + -0.012275834567844868, + 0.008322379551827908, + -0.00014200627629179507, + 0.012418651953339577, + -0.010042684152722359, + 0.007316163275390863, + 0.00500511284917593, + -0.01655387505888939, + -0.00775110861286521, + -0.02980995737016201, + -0.03848288953304291, + -0.007712157908827066, + 0.012288817204535007, + 0.0016058881301432848, + 0.017826251685619354, + -0.006202834192663431, + -0.023616861552000046, + -0.003908012993633747, + -0.01815083622932434, + 0.01580083556473255, + -0.004170927219092846, + -0.03518509864807129, + -0.033159684389829636, + -0.011607187800109386, + 0.0031468591187149286, + 0.012094066478312016, + 0.016242273151874542, + -0.02744697406888008, + 0.011795447207987309, + -0.010204977355897427, + -0.015034813433885574, + 0.03186133876442909, + -0.014281773939728737, + -0.022071832790970802, + 0.021954981610178947, + -0.012288817204535007, + -0.0007351867971010506, + 0.015190614387392998, + 0.01818978786468506, + -0.020332053303718567, + -0.004050830379128456, + 0.015761885792016983, + 0.0256422758102417, + 0.01477514486759901, + 0.038067419081926346, + 0.028459681198000908, + -0.0017203046008944511, + 0.0307447649538517, + 0.0038236205000430346, + 0.003541230922564864, + -0.0024246557150036097, + 0.030329294502735138, + 0.030614931136369705, + -0.019617965444922447, + 0.003541230922564864, + -0.049025435000658035, + -0.009679147973656654, + -0.01648895815014839, + 0.0038041453808546066, + -0.005352419335395098, + 0.0019572521559894085, + -0.01012707594782114, + -0.019046694040298462, + 0.0031079088803380728, + -0.02304559014737606, + -0.009841441176831722, + 0.0004933704040013254, + -0.001660256297327578, + -0.0029196490067988634, + -0.0007205804577097297, + -0.026667967438697815, + -0.01081519853323698, + 0.026667967438697815, + 0.002046513371169567, + 0.004495513159781694, + -0.008536606095731258, + -0.006718925666064024, + 0.004927212372422218, + 0.008173069916665554, + -0.03430222347378731, + -0.00942597072571516, + 0.008354838006198406, + 0.0003546099760569632, + -0.0015580117469653487, + 0.019280394539237022, + 0.01976078189909458, + -0.029861891642212868, + -0.02657708339393139, + 0.008439230732619762, + -0.004141714423894882, + 0.005946411285549402, + -0.0186312235891819, + 0.014710227958858013, + -0.013775420375168324, + 0.008173069916665554, + -0.0367690771818161, + -0.0021033158991485834, + -0.007471964694559574, + 0.02259116992354393, + 0.007244754582643509, + -0.002090332331135869, + -0.01526851486414671, + 0.03962543234229088, + 0.001739779836498201, + 0.012574452906847, + 0.006631287280470133, + 0.0008560949936509132, + -0.014879012480378151, + 0.01680056005716324, + 0.012314784340560436, + 0.009497379884123802, + -0.029056919738650322, + -0.007329146843403578, + 0.022461336106061935, + 0.024824321269989014, + 0.0044598085805773735, + -0.0032588413450866938, + -0.0320950411260128, + 0.006293718237429857, + -0.004988883621990681, + -0.011055391281843185, + 0.004044338595122099, + 0.0018063199240714312, + -0.018722107633948326, + 0.011217684485018253, + -0.008913125842809677, + 0.004297515843063593, + 0.02535664103925228, + 0.015969621017575264, + 0.020085368305444717, + -0.009153318591415882, + 0.06678677350282669, + -0.03328951820731163, + 0.021007191389799118, + -0.04564974457025528, + -0.0015604461077600718, + -0.023798629641532898, + -0.002577211009338498, + -0.020124318078160286, + 0.0032117762602865696, + -0.021072108298540115, + -0.013132740743458271, + -0.0322248749434948, + 0.015359398908913136, + -0.025655260309576988, + 0.025200840085744858, + 0.053959138691425323, + -0.00966616440564394, + -0.0032458577770739794, + 0.008315887302160263, + 0.00547576230019331, + -0.013788403943181038, + 0.016878461465239525, + -0.019942549988627434, + -0.0078030419535934925, + -0.028693383559584618, + 0.03684697672724724, + 0.011860364116728306, + -0.00907541811466217, + -0.0076147825457155704, + 0.014891996048390865, + -0.0005931805353611708, + 0.018085919320583344, + 0.04445526748895645, + -0.047181788831949234, + -0.008426247164607048, + 0.019877633079886436, + -0.0105750048533082, + -0.0029602223075926304, + 0.0018679911736398935, + 0.001855007722042501, + 0.017306914553046227, + -0.02139669470489025, + -0.014112989418208599, + -0.015956636518239975, + 0.021708296611905098, + -6.811229832237586e-5, + 0.0186312235891819, + -0.007381080649793148, + -0.00907541811466217, + 0.020150285214185715, + -0.012042132206261158, + -0.03305581584572792, + 0.008874175138771534, + 0.0026194071397185326, + 0.004625347442924976, + 0.0075823236256837845, + -0.004946687258780003, + 0.0022899527102708817, + 0.0015369136817753315, + -0.009692131541669369, + 0.02394144795835018, + -0.014035088941454887, + -0.011055391281843185, + -0.027576807886362076, + -0.0024847041349858046, + -0.015307465568184853, + -0.010750280693173409, + -0.022500285878777504, + -0.029420455917716026, + -0.006679975427687168, + 0.0035282473545521498, + -0.013567686080932617, + -0.00825746264308691, + 0.015060780569911003, + 0.004868786782026291, + -0.010996966622769833, + -0.012989923357963562, + 0.01337293442338705, + -0.01583978533744812, + -0.0023159196134656668, + -0.016138404607772827, + -0.002687570173293352, + 0.014710227958858013, + -0.002100070007145405, + 0.013502768240869045, + -0.004719477146863937, + -0.005803593900054693, + 0.003671065205708146, + -0.02005940116941929, + -0.002536637941375375, + 0.0038366038352251053, + 0.012983431108295918, + 0.008452213369309902, + 0.010549037717282772, + -0.016683708876371384, + -0.005836052354425192, + 0.0009088401566259563, + 0.0016213059425354004, + -0.01337293442338705, + 0.014489509165287018, + 0.007549865171313286, + 0.009224727749824524, + 0.009107876569032669, + 0.0026080466341227293, + 0.0070889536291360855, + -0.006475486326962709, + -0.016008570790290833, + 0.014268791303038597, + 1.1043523954867851e-5, + 0.0042358445934951305, + -0.008276937529444695, + 0.0671503096818924, + 0.00017375483002979308, + -0.00019211421022191644, + -0.016385089606046677, + -0.011639646254479885, + -0.014853045344352722, + -0.008569064550101757, + 0.029446421191096306, + -0.005667267832905054, + -0.01117224246263504, + -0.0037327364552766085, + -0.005436811596155167, + -0.005579629447311163, + -0.002500933362171054, + -0.02166934683918953, + 0.011711055412888527, + 0.0071863289922475815, + 0.0028660923708230257, + 0.010062159039080143, + 0.012593928724527359, + 0.03583427146077156, + 0.016605809330940247, + 0.007861468009650707, + 0.007192820776253939, + -0.009166302159428596, + 0.0015247417613863945, + -0.0031549737323075533, + 0.0012780565302819014, + -0.00024039634445216507, + 0.033159684389829636, + 0.015450282953679562, + 0.002872584154829383, + -0.03588620573282242, + -0.00907541811466217, + -0.0005448983865790069, + 0.003891783533617854, + 0.02512293867766857, + 0.006433289963752031, + -0.014489509165287018, + 0.01981271617114544, + -0.010282877832651138, + -0.011295584961771965, + 0.018761057406663895, + 0.012509535998106003, + -0.008237986825406551, + -0.02257818728685379, + 0.009627214632928371, + -0.012697795405983925, + -0.0076602245680987835, + 0.004479283932596445, + -0.006725417450070381, + -0.020578738301992416, + 0.013256083242595196, + 0.0023938200902193785, + -0.00343087175861001, + -0.005349173676222563, + -0.003104662988334894, + -0.0033627087250351906, + -0.006332668475806713, + 0.010315336287021637, + -0.018735092133283615, + -0.010899590328335762, + -0.01407403964549303, + -0.021799180656671524, + -0.0101465517655015, + -0.0011717546731233597, + -0.017540615051984787, + -0.002520408481359482, + 0.002375967800617218, + -0.019877633079886436, + -0.001526364590972662, + 0.01407403964549303, + 0.0020335298031568527, + -0.021344760432839394, + 0.002577211009338498, + 0.013853320851922035, + 0.021980948746204376, + 0.01281464658677578, + 0.015086746774613857, + 0.023136474192142487, + 0.0041125016286969185, + -0.0007879319600760937, + -0.0033302500378340483, + -0.014268791303038597, + 0.005268027074635029, + 0.007426522672176361, + 0.021967966109514236, + -0.0031095317099243402, + 0.015086746774613857, + -0.024512717500329018, + -0.014853045344352722, + 0.0037327364552766085, + -0.01407403964549303, + -0.010776247829198837, + 0.006183359306305647, + -0.008776799775660038, + -0.004469546023756266, + -0.017034262418746948, + -0.003515264019370079, + 0.0016667479649186134, + 0.03302985057234764, + 0.003697032108902931, + -0.0136196194216609, + 0.0025431294925510883, + 0.0004751124361064285, + -0.004271548707038164, + 0.027083437889814377, + -0.0068227932788431644, + -0.03141990303993225, + 0.002512293867766857, + -0.004099518526345491, + -0.01628122292459011, + 0.0007420842302963138, + 0.00460262643173337, + -0.011996690183877945, + 0.02140967734158039, + 0.009640197269618511, + 0.013801387511193752, + -0.013184674084186554, + -0.019020726904273033, + -0.00791989266872406, + 0.005479007959365845, + -0.006641025189310312, + -0.026486199349164963, + 0.01603453792631626, + 0.006115196272730827, + -0.018488405272364616, + -0.008698899298906326, + -0.004813607316464186, + -0.00346008432097733, + 0.0165408905595541, + 0.0073096719570457935, + 0.019656915217638016, + -0.012204425409436226, + -0.012801663018763065, + -0.0021877081599086523, + 0.027550840750336647, + 0.004703247919678688, + 0.0011701317271217704, + -0.0014200627338141203, + 0.011587711982429028, + 0.005537433549761772, + -0.013333983719348907, + 0.026421282440423965, + -0.004342957865446806, + 0.021838130429387093, + -0.0058230687864124775, + -0.0042358445934951305, + 0.010321827605366707, + 0.0017722384072840214, + 0.04100167751312256, + -0.03495139628648758, + -0.0003040962910745293, + -0.008166578598320484, + -0.003865816630423069, + 0.016385089606046677, + -0.024123216047883034, + 0.012950972653925419, + -0.01049710437655449, + 0.005641300696879625, + 0.018812991678714752, + 0.015034813433885574, + -0.013957188464701176, + -0.01200318243354559, + 0.0035185099113732576, + 0.016930393874645233, + 0.018319621682167053, + 0.01603453792631626, + 0.02052680402994156, + 0.002577211009338498, + -0.013145724311470985, + 0.010438678786158562, + 0.0019345312612131238, + -0.032484546303749084, + 0.013502768240869045, + -0.010620446875691414, + 0.010568512603640556, + 0.002723274752497673, + -0.0002481052652001381, + 0.029991725459694862, + -0.014048072509467602, + -0.00402810936793685, + -0.001484979991801083, + -0.007783567067235708, + -6.288849544944242e-5, + -0.01648895815014839, + 0.0014095137594267726, + -0.0052972398698329926, + 0.002768716774880886, + 0.004641576670110226, + -0.016618791967630386, + 0.02652514912188053, + 0.001127935596741736, + 0.007491439580917358, + -0.011263126507401466, + -0.017579566687345505, + -0.0019410229288041592, + 0.015709951519966125, + -0.009594755247235298, + 0.006063262466341257, + 0.00018653538427315652, + 0.007335638627409935, + 0.009640197269618511, + 0.003104662988334894, + -0.007744616828858852, + -0.010062159039080143, + -0.01976078189909458, + -0.02610968053340912, + -0.01001022569835186, + -0.010737298056483269, + -0.01937127858400345, + -0.012736746110022068, + 0.011529287323355675, + -0.001910187304019928, + -0.020358020439743996, + 0.01526851486414671, + -4.759746298077516e-5, + 0.028355814516544342, + -0.002536637941375375, + 0.0014525214210152626, + -0.013035365380346775, + 0.01442459225654602, + -0.019267411902546883, + 0.012541994452476501, + -0.004424104001373053, + -0.013528735376894474, + -0.013178182765841484, + 0.001799828140065074, + 0.02679780125617981, + 0.008893650025129318, + 0.036665208637714386, + 0.00017223332542926073, + -0.024032332003116608, + 0.01839752122759819, + 0.006673483643680811, + 0.02353896014392376, + 0.015411333180963993, + 0.000549361458979547, + 0.009354562498629093, + -0.00215524947270751, + -0.015774868428707123, + -0.0023402634542435408, + -0.009783015586435795, + 0.0027768313884735107, + 0.002371099079027772, + -0.0040183719247579575, + 0.024525701999664307, + -0.0167875774204731, + -0.009990749880671501, + -2.2150443328428082e-5, + -0.006037295330315828, + -0.009140335954725742, + -0.027836477383971214, + 0.007595307193696499, + 0.036223772913217545, + 0.006322931032627821, + 0.0008074071374721825, + 0.010204977355897427, + 0.006147654727101326, + -0.02612266317009926, + -0.005985361989587545, + -0.021721281111240387, + -0.014164923690259457, + 0.024136198684573174, + -0.009945307858288288, + 0.01979973167181015, + -0.0029001738876104355, + 0.004570167977362871, + 0.0074070473201572895, + -0.004537709057331085, + 0.0071343956515192986, + 0.013100282289087772, + 0.004618855658918619, + -0.007316163275390863, + 0.0008009154116734862, + 0.001576675451360643, + 0.004300761502236128, + -0.0022639858070760965, + -0.013476802036166191, + -0.007147378753870726, + -0.009964783675968647, + 0.006796826142817736, + -0.0033756920602172613, + -0.012340751476585865, + -0.012087574228644371, + -0.029394488781690598, + 0.0007919893250800669, + 0.011457878164947033, + -0.013035365380346775, + 0.00495317904278636, + 0.007283704821020365, + -0.01583978533744812, + -0.006796826142817736, + 0.006770859472453594, + -0.005362157244235277, + -0.002968336921185255, + -0.005628317594528198, + -0.007244754582643509, + 0.03290001302957535, + 0.001506889471784234, + 0.0029650910291820765, + -0.017371831461787224, + -0.008140611462295055, + 0.00862099789083004, + 0.007640749216079712, + -0.0010143305407837033, + 0.01791713573038578, + 0.011704563163220882, + -0.019384263083338737, + 0.0040638139471411705, + -0.002512293867766857, + -0.0067384010180830956, + 0.015047797001898289, + 0.004628593102097511, + 0.01817680336534977, + -0.016826527193188667, + 0.011029425077140331, + 0.025148905813694, + 0.010179010219871998, + -0.005709463730454445, + -0.0013811124954372644, + -0.0008163332240656018, + 0.005543925333768129, + 0.006283980794250965, + 0.009523347020149231, + 0.0011814922327175736, + 0.0015125697245821357, + 0.014255807735025883, + -0.0025901945773512125, + -0.01386630441993475, + 0.026901669800281525, + -0.011217684485018253, + -0.011496827937662601, + -0.015593101270496845, + -0.0055536627769470215, + 0.02538260817527771, + 0.0004369736125227064, + -0.015774868428707123, + -0.018748074769973755, + 0.0018777287332341075, + -0.013580668717622757, + 0.0072317710146307945, + -0.007296688389033079, + 0.005498483311384916, + -0.005709463730454445, + 0.019514096900820732, + 0.00541409058496356, + 0.008341854438185692, + -0.0043786619789898396, + 0.019176527857780457, + 0.003008910221979022, + -0.003424379974603653, + -0.0012894170358777046, + -0.016657741740345955, + -0.0020221692975610495, + -0.010191993787884712, + -0.0021276597399264574, + -0.002242887858301401, + 0.008465196937322617, + -0.0028238962404429913, + -0.005488745402544737, + 0.02653813362121582, + -0.011892822571098804, + -0.015008846297860146, + -0.02278592251241207, + 0.009607738815248013, + 0.01071782223880291, + 0.003671065205708146, + -0.0077575999312102795, + -0.0018128115916624665, + -0.0021146764047443867, + 0.0008220134768635035, + -0.024590618908405304, + -0.011860364116728306, + -0.00839378871023655, + -0.001660256297327578, + 0.014762161299586296, + 0.001725173438899219, + -0.0029553535860031843, + -0.01256796158850193, + 0.008134119212627411, + -0.008997517637908459, + -0.01633315719664097, + 0.007205804344266653, + 0.03749614953994751, + -0.011289093643426895, + 0.009828457608819008, + 0.031523771584033966, + -0.005358911119401455, + -0.004612363874912262, + -0.005034325644373894, + 0.010075142607092857, + 0.017060227692127228, + -0.008199037052690983, + -0.005281010642647743, + 0.0022396419662982225, + -0.02490222081542015, + 0.030900565907359123, + 0.0018339096568524837, + -0.007958843372762203, + -0.006141162943094969, + -0.028459681198000908, + 0.01082168985158205, + 0.014710227958858013, + 3.0759572837268934e-5, + -0.013827354647219181, + 0.005391370039433241, + 0.014904978685081005, + 0.014009122736752033, + -0.004768165294080973, + -0.0019475147128105164, + 0.012912021949887276, + -0.012632878497242928, + 0.0030056643299758434, + -0.0010110846487805247, + 0.006501452997326851, + 0.027810510247945786, + 0.028979018330574036, + 0.0006994823343120515, + -0.013424867764115334, + 0.019501114264130592, + -0.0021779704838991165, + 0.0018306637648493052, + 0.014437575824558735, + 0.009257186204195023, + -0.012613403610885143, + 0.013178182765841484, + -0.004758427385240793, + -0.008906633593142033, + 0.02934255450963974, + -0.014100005850195885, + -0.013671552762389183, + 0.0029456159099936485, + 0.00197672750800848, + -0.02003343403339386, + -0.00871837418526411, + 0.010503595694899559, + -0.01271077897399664, + -0.007829008623957634, + -0.0080237602815032, + -0.022513270378112793, + -0.005306977313011885, + 0.0005952091887593269, + 0.028355814516544342, + 0.004031355492770672, + 0.006322931032627821, + 0.0067384010180830956, + 0.018514372408390045, + -0.005268027074635029, + -0.020916307345032692, + -0.009140335954725742, + 0.014982879161834717, + 0.005245306063443422, + -0.0037132613360881805, + -0.019449179992079735, + -0.006361881271004677, + 0.01607348769903183, + -0.01397017203271389, + 0.01491796225309372, + -0.022175701335072517, + 0.0035639519337564707, + -0.0041092559695243835, + -0.003859324846416712, + -0.022253600880503654, + 0.01046464592218399, + 0.026590067893266678, + 0.016242273151874542, + 0.024876253679394722, + 0.004612363874912262, + 0.025330673903226852, + 0.0022282814607024193, + 0.025525426492094994, + 0.020916307345032692, + -0.0070564947091042995, + 0.009893374517560005, + 0.018475422635674477, + -0.0007108428399078548, + 0.013580668717622757, + -0.0027005537413060665, + 0.0007153059123083949, + 0.004274794831871986, + 0.007673207670450211, + -0.016956361010670662, + -0.0032312513794749975, + -0.0025853258557617664, + 0.0001863325305748731, + 0.016865476965904236, + 0.01885194145143032, + 0.01268481183797121, + -0.008627490140497684, + 0.012262850999832153, + 0.004417612683027983, + -0.004910982679575682, + 0.016151389107108116, + -0.0016018308233469725, + -0.013204149901866913, + 0.019423212856054306, + 0.027784543111920357, + 0.008705390617251396, + -0.0038820458576083183, + 0.010399728082120419, + 0.012035640887916088, + -0.0160475205630064, + -0.000280766689684242, + -0.003184186527505517, + -0.0008212020038627088, + -0.010523070581257343, + 0.023188408464193344, + 0.02000746689736843, + 0.008705390617251396, + 0.0027995523996651173, + 0.0029147802852094173, + -0.004518234170973301, + 0.02488923817873001, + 0.005748413968831301, + 0.0065209283493459225, + 0.0036223772913217545, + 0.0074395062401890755, + 0.006384602282196283, + -0.009821965359151363, + -0.011795447207987309, + -0.027784543111920357, + -0.0015271761221811175, + 0.023435093462467194, + 0.009224727749824524, + -0.007932876236736774, + 0.011996690183877945, + -0.005677005276083946, + -0.006559878587722778, + -0.00020428617426659912, + -0.021487578749656677, + 0.012055115774273872, + -0.014710227958858013, + -0.015177630819380283, + 0.006319685373455286, + 0.025486474856734276, + 0.007296688389033079, + 0.020111335441470146, + 0.028251945972442627, + -0.02211078256368637, + 0.004544200841337442, + 0.003314020810648799, + 0.02192901447415352, + -0.01748868264257908, + -0.0005793856107629836, + -0.01337293442338705, + -0.003469821996986866, + -0.00775110861286521, + -0.014151940122246742, + 0.009568789042532444, + 0.0015774868661537766, + 0.00010843193740583956, + 0.03858675807714462, + -0.014788128435611725, + -0.007173345889896154, + -0.015294482000172138, + 0.0070110526867210865, + -0.019747799262404442, + -0.0036483441945165396, + 0.0156190674751997, + -0.011451385915279388, + -0.0033302500378340483, + -0.002838502638041973, + 0.028459681198000908, + -0.015658017247915268, + 0.006150900386273861, + 0.04167681559920311, + 0.0018890892388299108, + 0.011756496503949165, + -0.0076277656480669975, + -0.0022331501822918653, + -0.022006915882229805, + -0.027888409793376923, + 0.0005968320765532553, + 0.004368924535810947, + -0.004401382990181446, + -0.03682101145386696, + -0.0063910940662026405, + 0.011496827937662601, + 0.013321000151336193, + 0.0013851698022335768, + 0.015424315817654133, + -0.018111886456608772, + 0.0023029360454529524, + -0.005238814279437065, + 0.011730530299246311, + 0.009640197269618511, + 0.008997517637908459, + 0.018955809995532036, + -0.021046141162514687, + 0.01061395462602377, + -0.0070889536291360855, + -0.008426247164607048, + 0.009601247496902943, + -0.001536102150566876, + 0.005836052354425192, + 0.004644822329282761, + 0.011743513867259026, + -0.012496552430093288, + -0.02726520597934723, + -0.014268791303038597, + -0.005154422018676996, + 0.00991284940391779, + -0.003301037475466728, + 0.00851063895970583, + -0.003800899488851428, + 0.026875702664256096, + 0.002447376726195216, + -0.016138404607772827, + -0.011087850667536259, + 0.005930182058364153, + -0.008867683820426464, + 0.017774317413568497, + -0.015956636518239975, + 0.011295584961771965, + -0.0015985849313437939, + 0.03284808248281479, + -0.012243375182151794, + 0.02308453992009163, + 0.021993933245539665, + -0.026187580078840256, + 0.010179010219871998, + 0.012775695882737637, + -0.0011425419943407178, + -0.007121412083506584, + -0.0165408905595541, + -0.002767093712463975, + 0.019202494993805885, + 0.014125972986221313, + -0.013736470602452755, + 0.00663777906447649, + 0.015917686745524406, + -0.024811336770653725, + -0.009361053816974163, + -0.002452245680615306, + 0.01372348703444004, + -0.028589515015482903, + -0.014476525597274303, + 0.017060227692127228, + -0.020578738301992416, + 0.006972102448344231, + -0.01247058529406786, + -0.022487303242087364, + 0.006751384120434523, + -0.0021601184271275997, + -0.014723210595548153, + 0.012931497767567635, + -0.011801938526332378, + -0.010769756510853767, + 0.012483568862080574, + -0.004524725954979658, + 0.010133568197488785, + -0.021124042570590973, + -0.0014557671966031194, + 0.0027119142469018698, + 0.0033123979810625315, + 0.004206631798297167, + -0.01384033728390932, + 0.03360112011432648, + -0.005160913802683353, + -0.0035379850305616856, + -0.012782188132405281, + 0.0062190634198486805, + 0.0012950972886756063, + 0.005222585052251816, + -0.022889789193868637, + 0.03302985057234764, + -0.005453041289001703, + -0.000367187662050128, + 0.009042959660291672, + -0.001607511076144874, + 0.0106074633076787, + -0.03217294439673424, + 0.01141243614256382, + -0.006417060736566782, + 0.01696934551000595, + -0.016709676012396812, + -0.005268027074635029, + 0.0033464794978499413, + -0.011568237096071243, + -0.006342405918985605, + -0.009821965359151363, + 0.009633705951273441, + -0.005491991527378559, + -1.7294336430495605e-5, + 0.011081358417868614, + 0.018501389771699905, + 0.005732184741646051, + -0.01935829594731331, + 0.0058198231272399426, + -0.030692830681800842, + -0.0001358188601443544, + -0.01699531078338623, + -0.01719006337225437, + 0.018735092133283615, + 0.0008909879834391177, + -0.00896505918353796, + -0.014697244390845299, + -0.010321827605366707, + -0.025746144354343414, + -0.01341188419610262, + -0.0031955470331013203, + -0.004518234170973301, + -0.013593652285635471, + -0.0029602223075926304, + -0.014061056077480316, + 0.014268791303038597, + -0.005745168309658766, + 0.0078030419535934925, + -0.0073096719570457935, + 0.020085368305444717, + -0.006952627561986446, + 0.017644483596086502, + 0.0074070473201572895, + 0.0068227932788431644, + -0.044403333216905594, + 0.0003241800586692989, + 0.009400004521012306, + -0.0029764515347778797, + 0.025992829352617264, + -0.0005347550613805652, + -0.007653732784092426, + -0.0058555277064442635, + 0.0032069075386971235, + -0.002397065982222557, + -0.016709676012396812, + -0.011243651621043682, + 0.02536962367594242, + 0.0022769691422581673, + 0.00408004317432642, + 0.012262850999832153, + 0.01130207721143961, + 0.00402161804959178, + 0.01957901380956173, + -0.0035022806841880083, + -0.021734263747930527, + 0.0061736213974654675, + 0.007647241000086069, + -0.018021002411842346, + -0.00037733095814473927, + -0.0364055410027504, + -0.011464369483292103, + -0.006887710187584162, + 0.0063943397253751755, + 0.013671552762389183, + -0.017553599551320076, + -0.011379977688193321, + -0.004670789465308189, + 0.00028948995168320835, + 0.008841716684401035, + -0.008783291094005108, + 0.0021130533423274755, + 0.0016375352861359715, + -0.010562021285295486, + 0.004106010310351849, + -0.005053800530731678, + -0.0024132952094078064, + -0.0002896928053814918, + 0.019968517124652863, + 0.02092929184436798, + 0.007244754582643509, + 0.0073096719570457935, + -0.008413263596594334, + 0.006378110498189926, + -0.023123491555452347, + 0.015683984383940697, + 0.01095152460038662, + -0.027836477383971214, + -0.016138404607772827, + 0.012347242794930935, + 0.013398900628089905, + -0.010620446875691414, + -0.005608842242509127, + -0.02259116992354393, + 0.00740055600181222, + -0.007673207670450211, + 0.005748413968831301, + 0.012996414676308632, + 0.005725692957639694, + 0.02094227448105812, + -0.017605531960725784, + -0.014814094640314579, + -0.03635360673069954, + -0.014502492733299732, + -0.013113265857100487, + -0.015891719609498978, + 0.014528459869325161, + 0.0007015110459178686, + 0.010854148305952549, + 0.01746271550655365, + 0.0010906081879511476, + 0.016605809330940247, + -0.015086746774613857, + 0.008497655391693115, + 0.009484396316111088, + -0.0051122261211276054, + 0.013476802036166191, + -0.0018209262052550912, + -0.01477514486759901, + -0.003189055249094963, + 0.0028352567460387945, + -0.014100005850195885, + -0.003443855093792081, + -0.016242273151874542, + -0.004641576670110226, + 0.044403333216905594, + -0.0015726181445643306, + -0.0031030401587486267, + -0.024525701999664307, + 0.006985086016356945, + 0.010438678786158562, + 0.008387296460568905, + -0.017592549324035645, + -0.005595858674496412, + 0.014022105373442173, + -0.010101109743118286, + -0.0071343956515192986, + -0.00945193786174059, + 0.005008358508348465, + 0.00740055600181222, + -0.008244479075074196, + -0.012606911361217499, + 0.010308844037353992, + 0.009055943228304386, + -0.010970999486744404, + 0.0024295246694236994, + -0.006186604965478182, + -0.0016026422381401062, + 0.005524449981749058, + -0.017527632415294647, + -0.010451662354171276, + 0.02398039773106575, + 0.023461060598492622, + 0.013788403943181038, + 0.001221254002302885, + -0.011334535665810108, + -0.008919617161154747, + 0.001127935596741736, + 0.015722936019301414, + -0.0015182499773800373, + -0.0017965822480618954, + -0.01608647219836712, + -0.003339987713843584, + 0.011990198865532875, + -0.0035477224737405777, + 0.0016813543625175953, + -0.01794310286641121, + -0.004596134647727013, + -0.0034730678889900446, + -0.010055667720735073, + 0.012886055745184422, + 0.022500285878777504, + 4.891609205515124e-5, + 0.02721327170729637, + -0.01384033728390932, + 0.0029813204891979694, + -0.032536476850509644, + 0.0008755701710470021, + -0.0074849482625722885, + 0.00836782157421112, + -0.0009088401566259563, + 0.010776247829198837, + 0.013502768240869045, + -0.005849035922437906, + 0.020189234986901283, + -0.022746970877051353, + 0.002307804999873042, + -0.01698232814669609, + 0.007082461845129728, + -0.01607348769903183, + -0.006225555203855038, + 0.007517406716942787, + -0.004677281249314547, + 0.009387020952999592, + 0.019851665943861008, + 0.0033692005090415478, + 0.008419754914939404, + -0.0006889333017170429, + -0.0014646933414041996, + 0.010172517970204353, + -0.025499459356069565, + -0.00955580547451973, + 0.005784118548035622, + 0.028459681198000908, + -0.0037424741312861443, + 0.0161124374717474, + 0.024136198684573174, + -0.020228186622262, + 0.001970235724002123, + 0.025200840085744858, + 0.018306637182831764, + 0.001919924863614142, + 0.02046188712120056, + -0.010445170104503632, + -0.018774041905999184, + -0.0116201713681221, + 0.015748901292681694, + 0.01952708140015602, + -0.00801726896315813, + 0.02070857211947441, + 0.012535503134131432, + 0.009133843705058098, + 0.0036775569897145033, + 0.007731633260846138, + -0.01957901380956173, + -0.03326354920864105, + -0.040378469973802567, + -0.029524322599172592, + 0.0030462376307696104, + 0.020578738301992416, + -0.008770307525992393, + -0.007121412083506584, + -0.0035509683657437563, + 0.005410844925791025, + -0.005229076836258173, + 0.0012447864282876253, + 0.025239789858460426, + -0.025200840085744858, + -0.003635360626503825, + -0.03095250017940998, + -0.017813267186284065, + 0.019150560721755028, + 0.00633916025981307, + 0.018254704773426056, + -0.0021779704838991165, + 0.0029926809947937727, + 0.0035477224737405777, + -0.017514647915959358, + -0.0032198908738791943, + -0.0013421622570604086, + -0.00581008568406105, + -0.008835225366055965, + 0.019046694040298462, + -0.011808430776000023, + 0.0016651250189170241, + -0.008627490140497684, + -0.0029521076940000057, + -0.0025090479757636786, + 0.008582048118114471, + -0.005501728970557451, + 0.025720177218317986, + -0.004758427385240793, + -0.00018866547907236964, + -0.012055115774273872, + -0.010620446875691414, + 0.007127903867512941, + -0.011814922094345093, + -0.0013429736718535423, + -0.021721281111240387, + 0.003914504311978817, + -0.004167681559920311, + -0.0034341176506131887, + -0.0012131393887102604, + 0.009568789042532444, + 0.0021016928367316723, + -0.009062434546649456, + -0.013554702512919903, + -0.004998621065169573, + -0.0009461675654165447, + 0.004031355492770672, + -0.0030267625115811825, + -0.01818978786468506, + 0.014502492733299732, + 0.0028644695412367582, + 0.01750166527926922, + 0.013749453239142895, + 0.016138404607772827, + -0.003023516619578004, + -0.02140967734158039, + -0.005336190108209848, + 0.009354562498629093, + -0.0036775569897145033, + 0.006478731986135244, + 0.024136198684573174, + 0.02117597684264183, + 0.009172794409096241, + -0.03658730909228325, + -0.0014070793986320496, + -0.008543097414076328, + 0.021747246384620667, + -0.007374588865786791, + -0.0004333220131229609, + -0.001819303259253502, + -0.00372949056327343, + 0.001276433584280312, + 0.002757356269285083, + -0.0035217558033764362, + -0.008588539436459541, + 0.0172160305082798, + 0.0009518478182144463, + 0.0016237404197454453, + -0.02255222015082836, + -0.00418391078710556, + 0.013567686080932617, + -0.012094066478312016, + 0.0065209283493459225, + 0.006952627561986446, + 0.010562021285295486, + -0.018683157861232758, + -0.005018095951527357, + 0.007764091715216637, + 0.0036743110977113247, + -0.006598828826099634, + -0.016644759103655815, + 0.009808982722461224, + 0.01341188419610262, + 0.002085463609546423, + -0.011795447207987309, + -0.012548486702144146, + 0.013593652285635471, + 0.020916307345032692, + 0.006267751567065716, + -0.00575815187767148, + -0.0003811854403465986, + -0.003064089687541127, + 0.04032653570175171, + 0.03554863482713699, + 0.019851665943861008, + -0.009633705951273441, + 0.011483845300972462, + 0.00547576230019331, + 0.02163039706647396, + -0.009464921429753304, + 0.005212847609072924, + -0.01082168985158205, + 0.019682882353663445, + -0.014022105373442173, + -0.001929662423208356, + -0.030381228774785995, + -0.014009122736752033, + 0.012522519566118717, + 0.0019393999828025699, + 0.011003457941114902, + -0.019137578085064888, + -0.023409126326441765, + -0.010730805806815624, + 0.004320236854255199, + 0.036665208637714386, + 0.0038366038352251053, + 0.002301313215866685, + 0.009374037384986877, + 0.003018647665157914, + -0.001098722917959094, + 0.03196520730853081, + -0.01222390029579401, + -0.014463542029261589, + 0.019137578085064888, + -0.017138129100203514, + 0.025239789858460426, + 0.009516854770481586, + -0.01981271617114544, + -0.02700553648173809, + 0.011087850667536259, + 0.0023029360454529524, + 0.013931221328675747, + 0.01092555746436119, + -0.02117597684264183, + -0.010321827605366707, + 0.01477514486759901, + 0.009815474040806293, + -0.018540339544415474, + 0.03469172865152359, + 0.02189006470143795, + -0.01092555746436119, + 0.0030657127499580383, + -0.013528735376894474, + 0.0007988867582753301, + 0.002216920955106616, + 0.014554426074028015, + 0.0076277656480669975, + 0.019501114264130592, + 0.0042358445934951305, + -0.0030154020059853792, + 0.011678596027195454, + -0.021812165156006813, + -0.0033464794978499413, + -0.01256796158850193, + -0.006475486326962709, + -0.020306086167693138, + -0.0037716866936534643, + 0.02005940116941929, + -0.019929567351937294, + -0.003169580129906535, + -0.02770664170384407, + -0.00751091493293643, + -0.02957625687122345, + 0.012827630154788494, + -0.003099794266745448, + -0.006400831509381533, + -0.011782463639974594, + -0.005436811596155167, + -0.013814371079206467, + 0.016475973650813103, + 0.024382883682847023, + 0.027524873614311218, + 0.003450346877798438, + 0.002242887858301401, + -0.0029845661483705044, + 0.02216271683573723, + 0.023629844188690186, + 0.007822517305612564, + 0.004122239537537098, + 0.004050830379128456, + -0.0091013852506876, + 0.0031809406355023384, + -0.00548225361853838, + 0.022058850154280663, + -0.004959670826792717, + -0.009081910364329815, + -0.00658584525808692, + -0.018215753138065338, + 0.004628593102097511, + -0.017151111736893654, + 0.015099730342626572, + 0.013217132538557053, + -0.019007742404937744, + 0.005105734337121248, + 0.014125972986221313, + 0.028096145018935204, + 0.02957625687122345, + -0.009114368818700314, + 0.01341188419610262, + -0.012438126839697361, + 0.013567686080932617, + -0.013308016583323479, + -0.0013072692090645432, + 0.012892547063529491, + -0.01768343336880207, + 0.011055391281843185, + -0.012879563495516777, + 0.0052063558250665665, + 0.000993232475593686, + 0.013398900628089905, + -0.0007704854942858219, + 0.007997794076800346, + -0.014969896525144577, + 0.000422367244027555, + -0.03835305571556091, + 0.021967966109514236, + -0.0058555277064442635, + 0.009984258562326431, + 0.02512293867766857, + 0.015112713910639286, + 0.017332879826426506, + 0.011503320187330246, + 0.012301800772547722, + 0.009231219999492168, + 0.006121687591075897, + 0.0001211110720760189, + 0.014164923690259457, + 0.005462778732180595, + 0.004579905420541763, + -0.00990635808557272, + -0.003158219624310732, + 0.0035574601497501135, + 0.006783843040466309, + -0.017566582188010216, + -0.005881494376808405, + 0.009010501205921173, + 0.028693383559584618, + 0.0015304218977689743, + -0.006602074950933456, + 0.0037846702616661787, + -0.00896505918353796, + 0.011003457941114902, + 0.01651492528617382, + -0.019475147128105164, + 0.009679147973656654, + 0.008705390617251396, + -0.02562929317355156, + 0.011457878164947033, + -0.041313279420137405, + -0.010802214965224266, + -0.010062159039080143, + 0.013489784672856331, + 0.0004998621298000216, + 0.011996690183877945, + -0.017034262418746948, + 0.013892271555960178, + -0.008147102780640125, + -0.00804323609918356, + -0.009464921429753304, + -0.004219615366309881, + 0.0006353766657412052, + -0.007114920299500227, + 0.001523930230177939, + -0.02047487162053585, + -0.013502768240869045, + 0.012503044679760933, + 0.0016667479649186134, + 0.004622101318091154, + -0.007433014456182718, + -0.017826251685619354, + -0.003039745846763253, + -0.013892271555960178, + -0.002044890308752656, + 0.007504423148930073, + -0.0005526072927750647, + 0.011821414344012737, + -0.0032718246802687645, + -0.03980720043182373, + -0.0056348093785345554, + 0.03214697539806366, + -0.022019898518919945, + -0.01606050506234169, + 0.003002418437972665, + -0.019475147128105164, + 0.014372657984495163, + -0.0030851878691464663, + 0.02283785492181778, + -0.00021625527006108314, + -0.01047762855887413, + -0.00909489393234253, + -0.016177354380488396, + -0.00826395396143198, + -0.0005554474191740155, + -0.011834397912025452, + -0.00871837418526411, + 0.012282325886189938, + 0.013983155600726604, + 0.014723210595548153, + 0.027550840750336647, + 0.000818361877463758, + -0.012957463972270489, + 0.023577911779284477, + -0.016346139833331108, + 0.024980122223496437, + -0.023928463459014893, + -0.0022039373870939016, + 0.024304984137415886, + 0.0014508984750136733, + -0.0004568544973153621, + 0.0007830631802789867, + 0.019968517124652863, + -0.005011604633182287, + 0.011847380548715591, + -0.000909651629626751, + 0.0023873283062130213, + 0.015047797001898289, + 0.003989159129559994, + -0.01407403964549303, + -0.011341026984155178, + -0.0014087023446336389, + 0.00745898112654686, + -0.01886492595076561, + -0.002982943318784237, + -0.01131505984812975, + -0.028485648334026337, + -0.0028401254676282406, + -0.015177630819380283, + 0.007433014456182718, + -0.010237435810267925, + -0.0003333090280648321, + 0.005537433549761772, + -0.00059034040896222, + 0.0003268173022661358, + -0.023370176553726196, + -0.013957188464701176, + -0.00825746264308691, + 0.01886492595076561, + -0.012204425409436226, + -0.018968792632222176, + 0.0066150580532848835, + 0.012061608023941517, + 0.006926660425961018, + -0.014255807735025883, + 0.012866579927504063, + -0.002307804999873042, + 0.019202494993805885, + 0.001874482841230929, + -0.026901669800281525, + 0.00895856786519289, + 0.02259116992354393, + -0.026499183848500252, + 0.0005984550225548446, + -0.004583151079714298, + -0.0022445106878876686, + -0.01864420808851719, + -0.008517131209373474, + 0.00979599915444851, + 0.013593652285635471, + 0.016138404607772827, + -0.008179561235010624, + -0.005118717905133963, + -0.002121168188750744, + -0.01931934617459774, + 0.03440609201788902, + 0.02744697406888008, + -0.007588815409690142, + 0.0004897188046015799, + 0.0068227932788431644, + -0.013541718944907188, + -0.005605596583336592, + 0.012477077543735504, + -0.012295309454202652, + -0.006183359306305647, + 0.02120194397866726, + 0.009146827273070812, + -0.0047616735100746155, + 0.005190126597881317, + -0.0136196194216609, + 0.028823217377066612, + 0.0039339796639978886, + -0.003794407704845071, + -0.021825147792696953, + 0.013346967287361622, + -0.013346967287361622, + -0.0007039454067125916, + -0.011587711982429028, + 0.002723274752497673, + -0.008380805142223835, + -0.009692131541669369, + -0.0055082207545638084, + -0.021591445431113243, + -0.02255222015082836, + -0.010516579262912273, + 0.04383206367492676, + 0.007738125044852495, + -0.030407195910811424, + 0.005316715221852064, + 0.004196894355118275, + 0.00471298536285758, + 0.010166026651859283, + 0.00430400762706995, + 0.004125485196709633, + -0.006446273531764746, + -0.026174597442150116, + -0.007062986493110657, + 0.01162666268646717, + -0.013554702512919903, + -0.012587436474859715, + -0.002617784310132265, + -0.010938541032373905, + 0.03523703292012215, + -0.012418651953339577, + -0.017579566687345505, + 0.00047957547940313816, + 0.018566306680440903, + 0.004161189775913954, + 0.009218236431479454, + 0.008439230732619762, + 0.021318793296813965, + 0.013249591924250126, + -0.004385153762996197, + -0.014385641552507877, + 0.018462439998984337, + -0.00033148322836495936, + 0.003333495929837227, + 0.002215297892689705, + 0.032692279666662216, + -0.005186880938708782, + 0.013671552762389183, + 0.018540339544415474, + 0.018345588818192482, + -0.009159810841083527, + -0.00358018116094172, + 0.010334811173379421, + -0.0010411088587716222, + -0.011048899963498116, + 0.011905806139111519, + -0.007634257432073355, + -0.000823230657260865, + -0.02652514912188053, + -0.016891444101929665, + -0.02401934750378132, + 0.013489784672856331, + 0.012529010884463787, + 0.006202834192663431, + 0.013333983719348907, + -0.006699450314044952, + -0.012976939789950848, + 0.005664021708071232, + -0.024123216047883034, + 0.007971826940774918, + 0.00013622459664475173, + 0.022227633744478226, + 0.00232728011906147, + -0.010211468674242496, + -0.030225427821278572, + -0.014346691779792309, + 0.003856078954413533, + 0.004609118215739727, + -0.008166578598320484, + 0.012425143271684647, + 0.004148206207901239, + 0.012314784340560436, + -0.0001266898907488212, + 0.007368097081780434, + -0.0022704775910824537, + 0.002969959983602166, + -0.007945859804749489, + -0.028251945972442627, + -0.005193372257053852, + 0.005300485994666815, + 0.006050278898328543, + 0.0034990347921848297, + -0.016930393874645233, + 0.02305857464671135, + -0.0048103611916303635, + 0.010523070581257343, + 0.012639370746910572, + 0.003891783533617854, + 0.0015977735165506601, + -0.0004118182114325464, + 0.0110683748498559, + -0.014359675347805023, + -0.014398625120520592, + 0.01130856852978468, + 0.01929337903857231, + 0.006417060736566782, + -0.008679423481225967, + -0.0020043172407895327, + 0.0001755806151777506, + 0.009192269295454025, + 0.01890387572348118, + -0.027135372161865234, + 0.0034990347921848297, + -0.014061056077480316, + -0.012081082910299301, + 0.009055943228304386, + -0.012535503134131432, + -0.008893650025129318, + -0.007932876236736774, + -0.020630672574043274, + 0.01026340201497078, + 0.006079491693526506, + -0.035081230103969574, + 0.010886606760323048, + 0.02721327170729637, + 0.0136196194216609, + -0.003995650913566351, + -0.005991853307932615, + -0.0021016928367316723, + -0.003339987713843584, + 0.00201080902479589, + -0.00018927408382296562, + -0.010295861400663853, + -0.0007449243566952646, + -0.0015993964625522494, + 0.010302352719008923, + 0.0039372253231704235, + 0.025187857449054718, + -0.012730253860354424, + -1.8841190467355773e-5, + -0.001017576432786882, + 0.009964783675968647, + 0.0002440479292999953, + 0.003875554306432605, + 0.010276385582983494, + 0.03196520730853081, + 0.0004292647063266486, + 0.004125485196709633, + -0.017605531960725784, + 0.009503871202468872, + -0.030251394957304, + 0.0033221354242414236, + -0.008776799775660038, + -0.004836328327655792, + -0.014164923690259457, + 0.009367546066641808, + -0.012600420042872429, + 0.005449795164167881, + 0.0010281254071742296, + 0.0030300081707537174, + -0.024382883682847023, + -0.019981499761343002, + -0.012606911361217499, + 0.017112161964178085, + 0.012723762542009354, + -0.0017008294817060232, + -0.008173069916665554, + 0.022448353469371796, + 0.00530373165383935, + 0.016216306015849113, + 0.025512441992759705, + -0.012087574228644371, + 0.020098350942134857, + -0.0007708912016823888, + -0.010802214965224266, + -0.013710503466427326, + -0.006456010974943638, + 0.017125146463513374, + 0.006024312227964401, + -0.011464369483292103, + -0.020578738301992416, + 0.018111886456608772, + 0.0024197869934141636, + -0.0022542481310665607, + -0.02535664103925228, + 0.012522519566118717 + ], + "a39df619-be28-4174-bb5b-e63c1079ce09": [ + 0.010178197175264359, + -0.002716073300689459, + -0.0023930089082568884, + 0.003820154583081603, + -0.019130747765302658, + -0.01234306301921606, + 0.0011240646708756685, + 0.025139082223176956, + -0.027896787971258163, + -0.013295603916049004, + -0.0012398017570376396, + 0.04209830239415169, + 0.019184038043022156, + -0.0003705250273924321, + -0.03189346194267273, + -0.001057453453540802, + 0.0027393873315304518, + 0.03668947145342827, + 0.0004675276577472687, + -0.021022507920861244, + 0.054061681032180786, + -0.01342882588505745, + -0.037675317376852036, + 0.025831839069724083, + 0.005112412851303816, + -0.04356374964118004, + 0.009492102079093456, + 0.013142397627234459, + -0.049265675246715546, + 0.0002577022241894156, + 0.02264782227575779, + -0.002008328912779689, + 0.016186531633138657, + -0.027790209278464317, + 0.0015945065533742309, + -0.02620486170053482, + 0.005199007224291563, + 0.005815161392092705, + -0.027164064347743988, + -0.01233640220016241, + -0.00013696936366613954, + 0.014015004970133305, + 0.022860977798700333, + 0.006128234323114157, + -0.05478108301758766, + 0.028403032571077347, + 0.00402664951980114, + -0.014148227870464325, + 0.024925926700234413, + 0.04196508228778839, + -0.009725240990519524, + 0.002689428860321641, + -0.007000841200351715, + 0.002436306094750762, + 0.0002795590553432703, + -0.010904259979724884, + 0.02715074084699154, + 0.05238308012485504, + 0.012289773672819138, + -0.019823504611849785, + 0.04372361674904823, + 0.014561217278242111, + -0.0178917795419693, + -0.0016269795596599579, + -0.025179049000144005, + -0.03818156197667122, + 0.006611165590584278, + -0.03122735023498535, + -0.06415994465351105, + -0.054035037755966187, + -0.012422996573150158, + 0.05312912538647652, + -0.04255126044154167, + -0.025552071630954742, + 0.0025961732026189566, + -0.030481303110718727, + 0.015587029978632927, + 0.024033335968852043, + 0.010757715441286564, + -0.004859290085732937, + -0.008139893412590027, + -0.007933398708701134, + -0.03898089751601219, + -0.010797682218253613, + 0.08414331823587418, + -0.017065800726413727, + 0.007800176274031401, + -0.035597048699855804, + 0.009119078516960144, + -0.0020149899646639824, + -0.02680436335504055, + 0.03165366128087044, + -0.01606663130223751, + 0.004889265168458223, + -0.000721899326890707, + -0.005565369036048651, + 0.03554375842213631, + 0.005945053417235613, + 0.02529894933104515, + 0.0223280880600214, + 0.04582853242754936, + 0.007107419427484274, + -0.01755872368812561, + 0.012109923176467419, + -0.02354041300714016, + -0.027004197239875793, + 0.003893427085131407, + 0.008786022663116455, + -0.02415323629975319, + 0.051397234201431274, + 0.0070141637697815895, + -0.02143549732863903, + 0.028216522186994553, + 0.0054821050725877285, + -0.05299590155482292, + -0.016546232625842094, + 0.021528752520680428, + -0.02861618809401989, + 0.027243997901678085, + -0.033785220235586166, + 0.025139082223176956, + 0.007027485873550177, + 0.01970360428094864, + 0.014521250501275063, + -0.016892610117793083, + -0.009965041652321815, + -0.006134895142167807, + -0.0028709445614367723, + 0.019410515204072, + 0.037408873438835144, + 0.0014396354090422392, + 0.020689452067017555, + 0.019890116527676582, + 0.02561868354678154, + 0.011696933768689632, + 0.015080784447491169, + 0.005002504214644432, + 0.0447361096739769, + -0.02856289967894554, + 0.023020844906568527, + -0.0774289071559906, + -0.053475502878427505, + -0.05483437329530716, + 0.02118237502872944, + -0.0033072480000555515, + 0.0033905121963471174, + -0.01580018550157547, + 0.028376389294862747, + -0.028509611263871193, + 0.006561207119375467, + -0.036502961069345474, + -0.0193305816501379, + 0.012096601538360119, + 0.025205694139003754, + 0.029575390741229057, + -0.010631154291331768, + -0.03253293037414551, + 0.018890947103500366, + 0.014801017940044403, + 0.007500425912439823, + 0.025405528023838997, + -0.06826320290565491, + 0.011950056999921799, + 0.002864283276721835, + 0.05606001988053322, + 0.002409661654382944, + 0.020129917189478874, + 0.013355554081499577, + 0.00365029601380229, + 0.0208892859518528, + 0.028776055201888084, + -0.01822483539581299, + 0.004792678635567427, + -0.02120901830494404, + 0.025791872292757034, + -0.012183195911347866, + 0.04260455071926117, + -0.011557050049304962, + 0.02917572297155857, + -0.047826871275901794, + -0.01819819025695324, + -0.016612842679023743, + 0.023766890168190002, + -0.015480452217161655, + -0.019477127119898796, + 0.00877270009368658, + -0.00335554126650095, + 0.014734406024217606, + 0.020449651405215263, + -0.0049592070281505585, + -0.023127423599362373, + -0.018278123810887337, + 0.031067483127117157, + -0.014774372801184654, + -0.010091602802276611, + -0.03810162842273712, + 0.033865153789520264, + 0.02476605959236622, + 0.006524571217596531, + 0.02417987957596779, + -0.027950076386332512, + -0.03434475511312485, + -0.01877104677259922, + 0.04324401915073395, + -0.019224004819989204, + 0.03197339549660683, + -0.02027646079659462, + -0.011350555345416069, + 0.021075796335935593, + -0.0357302688062191, + 0.020036661997437477, + -0.024526258930563927, + 0.019583703950047493, + -0.00019369299116078764, + -0.010504592210054398, + 0.023913435637950897, + -0.02441968023777008, + 0.005119073670357466, + 0.01662616617977619, + -0.031413860619068146, + -0.00432973075658083, + -0.0013705262681469321, + 0.01442799437791109, + -0.03125399351119995, + -0.06943555921316147, + 0.012975869700312614, + -0.00955871306359768, + 0.015706930309534073, + -0.057072509080171585, + -0.0017918423982337117, + 0.03250628709793091, + -0.004612828604876995, + 0.014254805631935596, + 0.01581350900232792, + 0.005082437768578529, + 0.044229865074157715, + -0.005418824497610331, + 0.03994010016322136, + -0.017452144995331764, + -0.014787695370614529, + 0.01934390515089035, + 0.007646970450878143, + 0.015187363140285015, + 0.024899281561374664, + 0.01753207854926586, + 0.007560375612229109, + 0.009825157932937145, + 0.006574529223144054, + 0.01059784833341837, + -0.02776356413960457, + 0.0004462953074835241, + 0.027630342170596123, + 0.005099090281873941, + -0.011383861303329468, + -0.008432983420789242, + 0.020702773705124855, + 0.010711087845265865, + -0.03927398845553398, + -0.015333907678723335, + 0.010211503133177757, + 5.2885684453940485e-6, + 0.00834638811647892, + 0.02324732206761837, + -0.007986688055098057, + 0.06789017468690872, + -0.03311910852789879, + 0.03807498514652252, + -0.013122414238750935, + 0.0021282292436808348, + 0.032079972326755524, + -0.04492262005805969, + 0.0019200689857825637, + 0.005202338099479675, + -0.00951874628663063, + 0.010084941983222961, + 0.0022231501061469316, + -0.0006290599121712148, + 0.0010582860559225082, + 0.01845131441950798, + -0.007806837558746338, + 0.020196527242660522, + -0.03994010016322136, + -0.016186531633138657, + 0.04137890413403511, + -0.02776356413960457, + 0.01845131441950798, + -0.019716927781701088, + -0.002141551347449422, + -0.02773692086338997, + -0.0016852644039317966, + -0.014041649177670479, + 0.006524571217596531, + 0.030827682465314865, + -0.01328228134661913, + 0.03786182776093483, + -0.010984193533658981, + -0.028962567448616028, + -0.020702773705124855, + -0.012596185319125652, + -0.012689441442489624, + -0.02355373464524746, + 0.02199503220617771, + -0.0077335648238658905, + -0.019863471388816833, + 0.025458816438913345, + -0.026977552101016045, + 0.05206334590911865, + 0.025765227153897285, + -0.026098284870386124, + 0.015280618332326412, + 0.021821841597557068, + 0.006427984684705734, + -0.010078280232846737, + -0.021222341805696487, + 0.013801849447190762, + -0.021355563774704933, + 0.015373874455690384, + -0.023607023060321808, + -0.025418849661946297, + -0.028163231909275055, + 0.01783849112689495, + 0.0006244803662411869, + -0.043377239257097244, + -0.0163996871560812, + 0.026431340724229813, + -0.01761201210319996, + 0.04678773507475853, + -0.044496309012174606, + -0.011257299222052097, + -0.030934259295463562, + -0.024366391822695732, + -0.011703594587743282, + -0.014774372801184654, + -0.04793344810605049, + -0.03415824472904205, + -0.024939248338341713, + -0.019570382311940193, + -0.03397173434495926, + -0.015467129647731781, + -0.02800336480140686, + 0.0029125765431672335, + -0.012855969369411469, + -0.005665285978466272, + 0.003375524654984474, + -0.0208892859518528, + -0.005462121684104204, + -0.0054055023938417435, + 0.004472944885492325, + 0.018304768949747086, + 0.009818497113883495, + 0.000804747047368437, + -0.020116595551371574, + 0.024379713460803032, + -0.005122404545545578, + 0.06517244130373001, + -0.005402171518653631, + -0.026457984000444412, + -0.05749882385134697, + -0.005298924166709185, + -0.009245640598237514, + 0.02355373464524746, + -0.03122735023498535, + -0.01504081767052412, + 0.003457123413681984, + -0.015706930309534073, + 0.0015470460057258606, + -0.034717779606580734, + 0.005062454380095005, + 0.02290094457566738, + 0.03223983943462372, + -0.05685935541987419, + -0.004985851235687733, + 0.03309246525168419, + -0.0536087267100811, + -0.017785200849175453, + -0.030614526942372322, + 0.009125740267336369, + -0.016532909125089645, + -0.013935071416199207, + 0.01177020650357008, + -0.017105767503380775, + 0.01582683064043522, + 0.014641150832176208, + -0.0326661542057991, + -0.00013395103451330215, + 0.026418017223477364, + 0.0029392209835350513, + -0.008646138943731785, + 0.022594531998038292, + 0.047640360891819, + -0.04950547218322754, + -0.00971191842108965, + -0.007140724919736385, + 0.011263960972428322, + -0.010777698829770088, + 0.0020666136406362057, + 0.014161549508571625, + 0.00031224018312059343, + -0.030294792726635933, + -0.018864303827285767, + -0.02055622823536396, + -0.0019200689857825637, + -0.012596185319125652, + 0.03431811183691025, + 0.05392846092581749, + -0.011617000214755535, + 0.006351382005959749, + -0.024073302745819092, + 0.019503770396113396, + -0.01115738321095705, + -0.01357537042349577, + -0.019263971596956253, + 0.016266465187072754, + -0.03511744737625122, + 0.012216501869261265, + 0.020183205604553223, + 0.03700920566916466, + 0.030880970880389214, + -0.027270641177892685, + -0.047533780336380005, + 0.04260455071926117, + 0.03303917497396469, + -0.0014088277239352465, + 0.019597027450799942, + -0.054328128695487976, + 0.047214046120643616, + -0.00218984461389482, + 0.03447797894477844, + -0.02322067879140377, + -0.04313743859529495, + -0.027950076386332512, + 0.009612002409994602, + 0.033518776297569275, + 0.014028327539563179, + -0.006341390311717987, + -0.020196527242660522, + 0.04063285514712334, + -0.03447797894477844, + -0.015480452217161655, + -0.03999339044094086, + -0.013435487635433674, + 0.047800227999687195, + 0.009192351251840591, + -0.03237306326627731, + -0.020383039489388466, + 0.013495437800884247, + -0.004303086083382368, + 0.01609327644109726, + 0.013895104639232159, + 0.008033315651118755, + -0.0022930919658392668, + 0.016506265848875046, + -0.005312246270477772, + 0.0020899276714771986, + 0.0062414733693003654, + -0.021302275359630585, + -0.005315577145665884, + -0.009918414056301117, + 0.006774363107979298, + -0.05177025496959686, + -0.00012468791101127863, + -0.03597006946802139, + -0.0012023329036310315, + -0.03215990588068962, + 0.029708612710237503, + -0.0537153035402298, + 0.02680436335504055, + -0.004989182110875845, + 0.0031973395962268114, + 0.02024981752038002, + -0.012096601538360119, + -0.011736900545656681, + -0.013462131842970848, + 0.011803511530160904, + 0.017358889803290367, + -0.015946730971336365, + -0.006967535708099604, + -0.008532900363206863, + -0.009751885198056698, + -0.007886771112680435, + -0.028136588633060455, + -0.018930913880467415, + -0.032932598143815994, + -0.007007502485066652, + -0.01398836076259613, + -0.03341219946742058, + -0.004276441875845194, + -0.054674506187438965, + -0.0208892859518528, + -0.012029989622533321, + 0.06613163650035858, + 0.010031652636826038, + 0.016266465187072754, + 0.0223147664219141, + 0.010977532714605331, + -0.00788010936230421, + 0.02116905152797699, + -0.025991706177592278, + -0.013515420258045197, + 0.007640309166163206, + -0.013035819865763187, + -0.007760209497064352, + -0.03514409065246582, + 0.030747748911380768, + -0.013975038193166256, + 0.016186531633138657, + -0.033225685358047485, + -0.01582683064043522, + 0.002924233442172408, + 0.005312246270477772, + -0.010684442706406116, + -0.017372211441397667, + -0.004013327416032553, + 0.026324762031435966, + 0.004546217154711485, + -0.003042468335479498, + -0.027577053755521774, + 0.01087761577218771, + 0.02709745243191719, + -0.01785181276500225, + 0.007433814462274313, + 0.0002139886055374518, + -0.010691104456782341, + 0.007094097323715687, + 0.005238974001258612, + -0.00039175734855234623, + -0.025165727362036705, + -0.02765698730945587, + 0.011903428472578526, + 0.002772692823782563, + -0.005298924166709185, + 0.0018950897501781583, + -0.014547894708812237, + -0.003470445517450571, + 0.032905951142311096, + -0.027204031124711037, + -0.02292758971452713, + 0.012995853088796139, + 0.02441968023777008, + 0.032293129712343216, + -0.048093315213918686, + 0.019463803619146347, + 0.005202338099479675, + -0.016519587486982346, + -0.02885598875582218, + 0.02147546410560608, + -0.009938397444784641, + 0.018970880657434464, + -0.01851792447268963, + 0.0017202353337779641, + -0.031174059957265854, + 0.01730559952557087, + -0.02444632537662983, + 0.004915909375995398, + -0.002950877882540226, + -0.03437139838933945, + 0.006934230215847492, + -0.0179051011800766, + -0.02324732206761837, + -0.0163863655179739, + -0.009278945624828339, + -0.0037701961118727922, + 0.007893431931734085, + 0.004086599685251713, + -0.005915078334510326, + 0.011144060641527176, + -0.04620155692100525, + 0.029282301664352417, + 0.008992517367005348, + 0.003130728378891945, + 0.03010828047990799, + -0.0008709419635124505, + 0.06661123782396317, + 0.0089525505900383, + 0.0062547954730689526, + 0.0040666162967681885, + -0.004859290085732937, + 0.01726563274860382, + -0.010611170902848244, + -0.02595173940062523, + 0.0029708612710237503, + -0.01841134764254093, + -0.0021498778369277716, + -0.011077449657022953, + 0.005268949083983898, + -0.0029725267086178064, + -0.02856289967894554, + -0.02290094457566738, + 0.009285607375204563, + 0.009392185136675835, + 0.002947547473013401, + 0.037675317376852036, + 0.008186521008610725, + -0.012649474665522575, + 0.0031273977365344763, + 0.01428144983947277, + 0.00169192545581609, + 0.007054130546748638, + 0.006517909932881594, + -0.017985034734010696, + -0.006617826875299215, + 0.04241803660988808, + 0.010431320406496525, + -0.0028109943959861994, + -0.036236513406038284, + 0.0028992542065680027, + 0.021035829558968544, + 0.02054290659725666, + -0.022714432328939438, + 0.03162701800465584, + -0.03644967079162598, + 0.023127423599362373, + 0.01446796115487814, + -0.025458816438913345, + 0.0019617010839283466, + 0.006398009601980448, + 0.0037701961118727922, + 0.056113310158252716, + 0.0040099965408444405, + -0.02320735529065132, + -0.007320575416088104, + -0.014840984717011452, + 0.035277314484119415, + 4.412994530866854e-5, + 0.01609327644109726, + 0.03101419284939766, + 0.008146555162966251, + -0.005145718343555927, + -0.010111586190760136, + -0.013122414238750935, + 0.004389680922031403, + -0.01670609973371029, + -0.0030557906720787287, + -0.03429146483540535, + 0.03314575180411339, + -0.0011706924997270107, + -0.004109913483262062, + 0.0238201804459095, + -0.009818497113883495, + -0.01234972383826971, + -0.0081998435780406, + -0.010537898167967796, + 0.018304768949747086, + 0.018944237381219864, + -0.01328228134661913, + 0.04204501584172249, + 0.0028676139190793037, + 0.026298116892576218, + 0.022181542590260506, + 0.007027485873550177, + -0.025219015777111053, + 0.0031806868501007557, + -0.01073773205280304, + 0.0178917795419693, + 0.017452144995331764, + -0.006827651988714933, + -0.021022507920861244, + 0.006394679192453623, + 0.008692766539752483, + -0.022168220952153206, + 0.03911412134766579, + -0.019503770396113396, + -0.010171536356210709, + 0.02058287337422371, + -0.0030025015585124493, + 0.03101419284939766, + 0.012103262357413769, + 0.0001399876782670617, + 0.0028659487143158913, + 0.02625815011560917, + 0.004562870133668184, + -0.03487764671444893, + 0.01761201210319996, + 0.00402664951980114, + 0.013895104639232159, + 0.021235663443803787, + 0.02236805483698845, + -0.010504592210054398, + -0.03935392200946808, + 0.01131724938750267, + 0.015000851824879646, + -0.025392204523086548, + -0.04726733639836311, + 0.01822483539581299, + -0.003616990288719535, + -0.002974191913381219, + 0.014028327539563179, + -0.002671110676601529, + 0.0036736098118126392, + -0.021595364436507225, + -0.027843497693538666, + 0.0008875947678461671, + 0.00877270009368658, + 0.007187352981418371, + 0.004136558156460524, + -0.004269780591130257, + 0.007800176274031401, + -0.005628649611026049, + 0.015427162870764732, + -0.019130747765302658, + -0.022434666752815247, + -0.012456301599740982, + 0.009105756878852844, + -0.026391373947262764, + 0.003102418500930071, + 0.010964210145175457, + -0.014721084386110306, + 0.0025079131592065096, + -0.010198180563747883, + -0.024872636422514915, + 0.001806829939596355, + 0.004892595577985048, + 0.0014104930451139808, + 0.02445964701473713, + 0.021848486736416817, + 0.028456322848796844, + -0.013735237531363964, + 0.006161539815366268, + -0.032639507204294205, + 0.010318080894649029, + -0.012409674003720284, + 0.02059619501233101, + -0.005558708216995001, + -0.03525066748261452, + -0.046015046536922455, + 0.02473941445350647, + 0.024845993146300316, + -0.011830156669020653, + -0.008939228020608425, + 0.005898425355553627, + 0.029388878494501114, + -0.012709424830973148, + 0.01963699422776699, + 0.010024991817772388, + 0.010571204125881195, + 0.002039969200268388, + -0.026084961369633675, + -0.041565414518117905, + 0.030454659834504128, + -0.026617851108312607, + -0.01663948781788349, + -0.020089950412511826, + 0.0072073363699018955, + -0.038527943193912506, + 0.005691930651664734, + 0.009871785528957844, + 0.015480452217161655, + -0.0253389161080122, + 0.009325573220849037, + 0.04148548096418381, + 0.0357302688062191, + 0.004679439589381218, + 0.024033335968852043, + 0.006674446165561676, + 0.0007056628237478435, + -0.015000851824879646, + 0.007786854170262814, + 0.0163863655179739, + -0.010830988176167011, + 0.042764417827129364, + 0.003387181553989649, + 0.0042631193064153194, + -0.007320575416088104, + 0.013268958777189255, + -0.0065079182386398315, + 0.0016927581746131182, + -0.001958370441570878, + -0.009638646617531776, + 0.02649795077741146, + 0.014241483062505722, + -0.013602015562355518, + 0.02110244147479534, + 0.03810162842273712, + 0.02319403365254402, + -0.02115572988986969, + 0.0003430478973314166, + 0.013455471023917198, + -0.028056655079126358, + -0.03786182776093483, + -0.0038401379715651274, + -0.009625324048101902, + -0.046974245458841324, + 0.026391373947262764, + -0.020156560465693474, + 0.02560536004602909, + -0.017199022695422173, + 0.021661976352334023, + -0.019796861335635185, + -0.027497120201587677, + -0.00792007613927126, + -0.012542896904051304, + 0.0005678608431480825, + -0.0007398010930046439, + 0.013142397627234459, + 0.006018325686454773, + -0.0021082458551973104, + 0.0011898432858288288, + -0.05776526778936386, + 0.01148377824574709, + 0.00952540710568428, + 0.024326425045728683, + -0.007393847685307264, + 0.046361424028873444, + 0.005665285978466272, + 0.005418824497610331, + 0.011337232775986195, + 0.01962367072701454, + 0.004596175625920296, + 0.0028376388363540173, + -0.005392179824411869, + 0.008439644239842892, + -0.01879769191145897, + -0.005392179824411869, + 0.035863492637872696, + -0.01847795769572258, + 0.025751905515789986, + 0.0012298100627958775, + 0.019157392904162407, + 0.03303917497396469, + 0.002436306094750762, + 0.0047060842625796795, + 0.027577053755521774, + -0.013961715623736382, + 0.026138251647353172, + -0.02266114391386509, + -0.008739395067095757, + 0.04324401915073395, + -0.012429657392203808, + 0.05326234921813011, + 0.013748560100793839, + 0.0141748720780015, + -0.0061815232038497925, + -0.010391353629529476, + 0.010771038010716438, + 0.003590345848351717, + -0.004699422977864742, + -0.026298116892576218, + -0.01993008330464363, + -0.05787184461951256, + 0.019250648096203804, + -0.03010828047990799, + -0.016852643340826035, + -0.01442799437791109, + -0.00834638811647892, + -0.008692766539752483, + -0.004832645412534475, + 0.012995853088796139, + -0.0009325573919340968, + 0.033785220235586166, + 0.02267446555197239, + 0.01878437027335167, + -0.004692761693149805, + -5.034873174736276e-5, + 0.01249626837670803, + 0.0010158214718103409, + 0.03458455577492714, + -0.03655624762177467, + 0.015706930309534073, + 0.024885959923267365, + -0.02500586025416851, + 0.0019666969310492277, + -0.017945067957043648, + -0.03101419284939766, + -0.022487955167889595, + -0.0009741893736645579, + 0.0022731085773557425, + -0.012562880292534828, + -0.01694590039551258, + -0.013602015562355518, + -0.005255626980215311, + -0.018984204158186913, + -0.006834313273429871, + -0.009272284805774689, + 0.01370859332382679, + 5.5682834499748424e-5, + 0.0015320585807785392, + -0.00708743603900075, + 0.012649474665522575, + -0.02472609281539917, + -0.021302275359630585, + -0.0032839342020452023, + 0.02832309901714325, + 0.046654511243104935, + -0.0024879297707229853, + -0.05867118015885353, + 0.005435477010905743, + 0.03437139838933945, + 0.009865124709904194, + -0.020076628774404526, + 0.0018967550713568926, + 0.022594531998038292, + -0.013295603916049004, + -0.03850129619240761, + -0.005915078334510326, + -0.017998356372117996, + -0.03535724803805351, + -0.011357216164469719, + -0.014907595701515675, + 0.003242302220314741, + 0.00877270009368658, + 0.01991676166653633, + -0.01995672844350338, + -0.0179051011800766, + -0.011983362026512623, + -0.02238137647509575, + -0.03447797894477844, + 0.02416655793786049, + 0.03935392200946808, + -0.011863461695611477, + 0.05829815939068794, + 0.03898089751601219, + -0.01384181622415781, + -0.015134073793888092, + 0.0012472955277189612, + 0.07630983740091324, + -0.009212334640324116, + -0.011870123445987701, + -0.03218655288219452, + -0.007633648347109556, + 0.01088427659124136, + 0.016519587486982346, + -0.022274799644947052, + -0.0060050031170248985, + 0.018384702503681183, + -0.005395510699599981, + 0.008539561182260513, + -0.0032056658528745174, + -0.0076536317355930805, + 0.00572856655344367, + 0.020822674036026, + -0.020609518513083458, + -0.0006681940285488963, + 0.012709424830973148, + -0.016865966841578484, + 0.022727755829691887, + -0.01609327644109726, + -0.013801849447190762, + -0.01574689708650112, + 0.009252301417291164, + 0.005398841109126806, + -2.8205697162775323e-5, + -0.01909078098833561, + 0.015160718001425266, + 0.005322237964719534, + -0.01669277623295784, + 0.0035337263252586126, + -0.023407189175486565, + 0.04945218563079834, + 0.035330601036548615, + 0.005185685120522976, + -0.0018101604655385017, + 0.009059128351509571, + -0.015906764194369316, + -0.014374705962836742, + 0.028163231909275055, + 0.03807498514652252, + -0.004656125791370869, + 0.001319735194556415, + 0.024646159261465073, + -0.007946721278131008, + 0.006114911753684282, + -0.004419656004756689, + 0.008000009693205357, + 0.010631154291331768, + -0.04284435138106346, + -0.00018609515973366797, + -0.040712788701057434, + 0.044522952288389206, + -0.005625319201499224, + -0.005248965695500374, + -0.01506746280938387, + -0.03237306326627731, + -0.004552878439426422, + 0.01787845604121685, + 0.000960867153480649, + -0.023740246891975403, + 0.0012747725704684854, + 0.004129896871745586, + -0.007740226108580828, + -0.000855121819768101, + 0.05483437329530716, + 0.026937585324048996, + -0.02203499898314476, + -0.012422996573150158, + -0.025538749992847443, + 0.025765227153897285, + -0.006994180381298065, + -0.002028312301263213, + -0.007706920616328716, + 0.013961715623736382, + -0.016279786825180054, + -0.027550408616662025, + 0.010464625433087349, + 0.026378050446510315, + 0.016492942348122597, + 0.015480452217161655, + -0.019277293235063553, + -0.0386345200240612, + -0.0015037487028166652, + -0.02563200518488884, + -0.03157372772693634, + -0.03631644695997238, + -0.014827662147581577, + 0.03599671274423599, + 0.008093265816569328, + 0.013475454412400723, + 0.008432983420789242, + -0.013288942165672779, + 0.002174857072532177, + -0.011430488899350166, + -0.00909243430942297, + -0.01149043906480074, + -0.00792007613927126, + 0.0012647808762267232, + 0.018637824803590775, + 0.021928420290350914, + -0.012363046407699585, + -0.030934259295463562, + -0.03935392200946808, + 0.014054971747100353, + 0.003563701407983899, + -0.012462963350117207, + -0.012442979961633682, + -0.021222341805696487, + -0.0016111594159156084, + 0.02776356413960457, + 0.010511253960430622, + -0.005685269366949797, + 0.002054956741631031, + -0.0028859321027994156, + -0.0223147664219141, + -0.02500586025416851, + 0.013268958777189255, + -0.0035870152059942484, + -0.008119910024106503, + -0.015427162870764732, + -0.0006465453770942986, + -0.06709083914756775, + -0.011337232775986195, + 0.00938552338629961, + 0.04881271719932556, + 0.010084941983222961, + -0.016852643340826035, + -0.004343052860349417, + 0.013055803254246712, + -0.009398845955729485, + 0.016000019386410713, + -0.01055122073739767, + -0.0357302688062191, + -0.01163698360323906, + 0.04129897058010101, + 0.015880119055509567, + 0.018984204158186913, + -0.0043197390623390675, + -0.0055387248285114765, + 0.009105756878852844, + -0.022221509367227554, + -0.00551541056483984, + -0.017025833949446678, + 0.029575390741229057, + 1.7498459783382714e-5, + -0.007533731404691935, + 0.04625484719872475, + -0.035303957760334015, + 0.009625324048101902, + -0.020436327904462814, + 0.0051557100377976894, + 0.014228161424398422, + -0.011743561364710331, + -0.009145723655819893, + 0.006398009601980448, + 0.008086604997515678, + 0.0081998435780406, + -0.007666953839361668, + 0.007846804335713387, + 0.04308415204286575, + 0.014361383393406868, + 0.023180712014436722, + 0.009891768917441368, + -0.020369717851281166, + -0.020915929228067398, + -0.00790675450116396, + -0.017065800726413727, + 0.01670609973371029, + -0.007307253312319517, + -0.021342242136597633, + 0.013761882670223713, + 0.034744422882795334, + 0.004749381449073553, + 0.028962567448616028, + -0.015906764194369316, + -0.00513239623978734, + -0.00012354303908068687, + 0.001921734306961298, + -0.0223414096981287, + 0.002303083660081029, + 0.004492928273975849, + 0.039194054901599884, + -0.012436318211257458, + 0.0023014184553176165, + -0.017438823357224464, + 0.009252301417291164, + 0.01610659807920456, + -0.009791851975023746, + 0.014574539847671986, + -0.00847295019775629, + 0.0040099965408444405, + -0.009492102079093456, + -0.027630342170596123, + 0.008905922994017601, + 0.026404695585370064, + -0.015453808009624481, + 0.0009184024529531598, + 0.018051646649837494, + 0.0001551833702251315, + 0.004123235587030649, + -0.015160718001425266, + -0.0027194039430469275, + 0.008319743908941746, + -0.008079943247139454, + -0.007706920616328716, + -0.014561217278242111, + -0.00997836422175169, + -0.0059250700287520885, + -0.009965041652321815, + 0.01609327644109726, + 0.023473801091313362, + 0.007054130546748638, + 0.01474772859364748, + 0.010218163952231407, + 0.025858484208583832, + -0.014694439247250557, + 0.0416187047958374, + -0.010258130729198456, + -0.016013342887163162, + -0.010577864944934845, + -0.0010915916645899415, + 0.016919255256652832, + -0.00999168585985899, + 0.015866797417402267, + -0.020049983635544777, + -0.006364704109728336, + 5.396551205194555e-5, + 0.0033122438471764326, + 0.024552904069423676, + -0.02120901830494404, + -0.022807689383625984, + -0.025991706177592278, + 0.02560536004602909, + -0.024806026369333267, + 0.022874299436807632, + -0.016319753602147102, + 0.01607995294034481, + 0.007213997188955545, + -0.016599521040916443, + -0.012696102261543274, + -0.023167390376329422, + -0.009012500755488873, + 0.022168220952153206, + -0.004043302498757839, + -0.032826017588377, + -0.02595173940062523, + 0.009971702471375465, + -0.010804343037307262, + -0.0327194407582283, + 0.021835165098309517, + 0.0328526645898819, + 0.0010174866765737534, + 0.025725260376930237, + 0.003993344027549028, + -0.0004937557969242334, + -0.002076605334877968, + -0.0008759378106333315, + 0.021888453513383865, + -0.006054961588233709, + 0.008506255224347115, + -0.013735237531363964, + 0.004626150708645582, + -0.0009716914501041174, + 0.024659480899572372, + 0.018691113218665123, + 0.004855959210544825, + -0.018917592242360115, + -0.016253143548965454, + -0.0012731073657050729, + -0.027190707623958588, + -0.03844800963997841, + -0.014707761816680431, + 0.033518776297569275, + 0.020369717851281166, + -0.020969217643141747, + -0.013668626546859741, + -0.006607835181057453, + -0.010044975206255913, + 0.02652459591627121, + 0.011110754683613777, + -0.027843497693538666, + -0.0006798509857617319, + 0.008273116312921047, + 0.006078275851905346, + -0.002457954687997699, + 0.023433834314346313, + -0.023447155952453613, + -0.02291426621377468, + -0.00043422201997600496, + -0.02413991279900074, + -0.018011679872870445, + -0.006441306788474321, + -0.00985180214047432, + -0.0012581198243424296, + -0.013635320588946342, + 0.0163996871560812, + -0.017665300518274307, + -0.01998337171971798, + -0.017638657242059708, + 0.022114932537078857, + 0.009572035633027554, + -0.008586188778281212, + -0.0034171566367149353, + -0.007973365485668182, + 0.028776055201888084, + -0.0011132403742522001, + 0.0014521250268444419, + 0.023167390376329422, + -0.012029989622533321, + -0.0043363915756344795, + -0.010637815110385418, + 0.029735257849097252, + 0.004183185752481222, + 0.0020899276714771986, + -0.011816834099590778, + 0.020049983635544777, + -0.010611170902848244, + 0.010318080894649029, + 0.023487122729420662, + -0.03255957365036011, + -0.010024991817772388, + -0.025778550654649734, + 0.0011573702795431018, + 0.02647130750119686, + -0.006298092659562826, + 0.0031873479019850492, + 0.008386354893445969, + -0.038261495530605316, + 0.01991676166653633, + 0.007580359000712633, + 0.011204010806977749, + -0.008133232593536377, + 0.006421323399990797, + 0.011257299222052097, + -0.025219015777111053, + 0.018970880657434464, + -0.005512080155313015, + -0.001723565859720111, + -0.013215670362114906, + -0.0017801853828132153, + -0.03010828047990799, + 0.02468612603843212, + 0.005388849414885044, + 0.015480452217161655, + -0.03221319615840912, + 0.001080767367966473, + -0.0018051646184176207, + -0.010817665606737137, + -0.0035004206001758575, + -0.020436327904462814, + 0.014348060823976994, + 0.0016128246206790209, + -0.004606167320162058, + -0.008825989440083504, + -0.005272279493510723, + 0.00937886256724596, + 0.02176855318248272, + 0.013868460431694984, + -0.007034147158265114, + -0.0027943416498601437, + -0.003194008953869343, + -0.028669478371739388, + -0.00617153150960803, + -0.02027646079659462, + 0.0055420552380383015, + 0.019437160342931747, + 0.02744383178651333, + -0.01309577003121376, + -0.014867628924548626, + 0.010204842314124107, + 0.028109943494200706, + 0.014254805631935596, + -0.005245635285973549, + -0.04500255361199379, + 0.0007010833360254765, + 0.0060050031170248985, + 0.01878437027335167, + -0.017105767503380775, + -0.010977532714605331, + 0.014840984717011452, + -0.015880119055509567, + 0.012642813846468925, + 0.004799339920282364, + 0.026431340724229813, + -0.009318912401795387, + 0.018624503165483475, + -0.023926757276058197, + 0.0027277301996946335, + -0.007946721278131008, + 0.0267643965780735, + -0.0057385582476854324, + 0.028403032571077347, + -0.002877605613321066, + -0.003258954966440797, + -0.014161549508571625, + 0.022154899314045906, + 0.007040807977318764, + -0.0018418007530272007, + 0.014574539847671986, + 0.011503761634230614, + 0.035570401698350906, + -0.031733594834804535, + -0.0008022491238079965, + -0.007420492358505726, + 0.026457984000444412, + -0.0017318922327831388, + -0.005715244449675083, + 0.007986688055098057, + 0.002704416401684284, + 0.031147416681051254, + -0.002827647142112255, + 0.015973376110196114, + 0.010471287183463573, + 0.017132410779595375, + -0.009885108098387718, + 0.02472609281539917, + -0.0059850201942026615, + 0.009192351251840591, + -0.007194013800472021, + 0.01694590039551258, + 0.00951874628663063, + 0.030507948249578476, + 0.01370859332382679, + -0.01101749949157238, + -0.005628649611026049, + -0.008019993081688881, + -0.00017860138905234635, + 0.026631174609065056, + -0.00012676951882895082, + -0.001296421280130744, + -0.004399672616273165, + -0.022394699975848198, + 0.0011174035025760531, + -0.03338555246591568, + -0.015280618332326412, + -0.007607003673911095, + -0.0012747725704684854, + -0.0059583755210042, + 0.02114240825176239, + -0.006721074227243662, + -0.01534723024815321, + 0.00506578478962183, + -0.011197349987924099, + 0.013961715623736382, + -0.003720237873494625, + -0.01758536696434021, + -0.011756883934140205, + -0.006238142494112253, + 0.0016161552630364895, + 0.025552071630954742, + -0.011703594587743282, + -0.032346419990062714, + 0.007633648347109556, + -0.010064958594739437, + -0.0028159902431070805, + 0.05043803155422211, + -0.026737751439213753, + -0.01762533374130726, + 0.007200675085186958, + -0.0022281459532678127, + 0.006284770555794239, + 0.013468792662024498, + 0.012689441442489624, + -0.03791511803865433, + 0.012396351434290409, + 0.01610659807920456, + 0.008106588385999203, + 0.009931735694408417, + 0.022394699975848198, + 0.03136057034134865, + 0.0051523796282708645, + 0.014681117609143257, + -0.005638641305267811, + -0.00033201539190486073, + -0.009718580171465874, + 0.012869291938841343, + 0.02652459591627121, + -0.008492933586239815, + 0.01726563274860382, + -0.02713741920888424, + -0.02829645574092865, + 0.0005174860707484186, + -0.008859295397996902, + -0.01219651848077774, + -0.0045129116624593735, + 0.012696102261543274, + -0.01445463951677084, + 0.0006090765236876905, + -0.035650335252285004, + -0.0209026075899601, + 0.005648632999509573, + 0.0026811023708432913, + -0.0016702768625691533, + 0.003980021458119154, + -0.006737727206200361, + -0.025205694139003754, + 0.03935392200946808, + -0.0008255630382336676, + 0.0075936815701425076, + 0.003580354154109955, + -0.010111586190760136, + -0.009865124709904194, + -0.005089098587632179, + -0.0267643965780735, + -0.005708583164960146, + 0.004462953191250563, + 0.0014363048831000924, + 0.0016161552630364895, + 0.009791851975023746, + 0.0012398017570376396, + -0.017145732417702675, + -0.0057385582476854324, + 0.009885108098387718, + -0.0164130087941885, + 0.00014248560182750225, + -0.030161568894982338, + 0.01695922203361988, + -0.017718590795993805, + 0.00499251252040267, + -0.040712788701057434, + 0.0001127187060774304, + -0.023953402414917946, + 0.020782707259058952, + 0.006328067742288113, + -0.00016715258243493736, + -0.0024762728717178106, + 0.02441968023777008, + -0.005545385647565126, + 0.014401350170373917, + 0.0032939258962869644, + -0.02832309901714325, + -0.025858484208583832, + 0.03197339549660683, + 0.017145732417702675, + -0.009871785528957844, + -0.0141748720780015, + -0.013948393985629082, + 0.01428144983947277, + 0.028349744156003, + -0.004053294192999601, + 0.010311420075595379, + -0.025565393269062042, + 0.00965196918696165, + -0.02797672152519226, + -0.007174030411988497, + -0.01370859332382679, + 0.0043963417410850525, + -0.003420487279072404, + -0.004552878439426422, + -0.0017935076029971242, + 0.017385533079504967, + 0.0208359956741333, + 0.004526233766227961, + -0.004446300212293863, + -0.011323911137878895, + 0.05840473622083664, + -0.025765227153897285, + 0.021275630220770836, + -0.03072110377252102, + 0.005848466884344816, + -0.01413490530103445, + 0.01059784833341837, + -0.01517404057085514, + 0.0104446429759264, + -0.018078289926052094, + -0.022288121283054352, + -0.026697784662246704, + 0.00894588977098465, + -0.013681949116289616, + 0.015533741563558578, + 0.059683673083782196, + -0.0053622047416865826, + -0.02111576311290264, + 0.017771879211068153, + -0.014507927931845188, + -0.005855128169059753, + 0.018238157033920288, + -0.023407189175486565, + -0.004862620495259762, + -0.041592057794332504, + 0.01669277623295784, + 0.009065790101885796, + -0.021661976352334023, + -0.008992517367005348, + 0.009605340659618378, + -0.002358037978410721, + 8.550177153665572e-5, + 0.015333907678723335, + -0.042764417827129364, + -0.01729227788746357, + 0.0208892859518528, + -0.011610339395701885, + -0.005945053417235613, + -0.015906764194369316, + -0.00752040883526206, + 0.0209026075899601, + -0.011330571956932545, + 0.012889275327324867, + 0.0011573702795431018, + 0.029761902987957, + -5.253441122476943e-5, + 0.013828493654727936, + -0.0026877636555582285, + -0.006757710129022598, + 0.013348892331123352, + -0.002183183329179883, + -0.018011679872870445, + 0.01040467619895935, + -0.010950887575745583, + 0.002864283276721835, + 0.010904259979724884, + 0.006324737332761288, + 0.0014696104917675257, + -0.002786015160381794, + -0.010631154291331768, + 0.029948413372039795, + -0.017079122364521027, + -0.020769385620951653, + -0.0004140304808970541, + 0.014201516285538673, + -0.013442148454487324, + -0.009318912401795387, + -0.022461310029029846, + -0.03597006946802139, + -0.010584525763988495, + 0.007247303146868944, + -0.01881101354956627, + 0.0008576197433285415, + 0.022767722606658936, + -0.000189633879926987, + -0.017172377556562424, + -0.0022514599841088057, + 0.012356385588645935, + 0.002937555778771639, + -0.0005224819178692997, + -0.010664459317922592, + -0.012636152096092701, + 0.021049151197075844, + -0.001856788294389844, + 0.015227329917252064, + 0.010817665606737137, + 0.010104925371706486, + -0.013908427208662033, + -0.01663948781788349, + 0.013142397627234459, + 0.009911752305924892, + 0.019570382311940193, + 0.0005732729914598167, + 0.003710246179252863, + -0.002119902754202485, + -0.00805995985865593, + -0.007047469262033701, + -0.00589176407083869, + -0.0163863655179739, + 0.013908427208662033, + 0.0003838472766801715, + 0.011763544753193855, + -0.0014196520205587149, + -0.00416653323918581, + 0.0037901795003563166, + -0.011323911137878895, + -0.023020844906568527, + 0.019437160342931747, + 0.006308084353804588, + 0.00492590107023716, + -0.02236805483698845, + 0.0806262418627739, + 0.013029159046709538, + 0.01550709642469883, + 0.001139884814620018, + -0.017052477225661278, + -0.01428144983947277, + -0.00792007613927126, + 0.008426321670413017, + 0.007740226108580828, + -0.015626996755599976, + -0.010651137679815292, + 0.003387181553989649, + 0.006587851792573929, + 0.016599521040916443, + -0.020396361127495766, + -0.004116574767976999, + -0.008086604997515678, + -0.005315577145665884, + 0.018957559019327164, + 0.013162381015717983, + 0.03732893988490105, + -0.014920918270945549, + 0.004129896871745586, + 0.0033355578780174255, + -0.0038767741061747074, + 0.00751374801620841, + -0.0012905928306281567, + 0.0016394691774621606, + 0.01874440349638462, + 0.04119239002466202, + 0.02146214246749878, + -0.006744388025254011, + -0.03218655288219452, + 0.0037402212619781494, + -0.01027811411768198, + 0.013908427208662033, + 0.02648462913930416, + 0.017705267295241356, + -0.009205673821270466, + 0.01727895624935627, + 0.00208659702911973, + -0.018557891249656677, + 0.019477127119898796, + 0.018064968287944794, + -0.018557891249656677, + -0.003135724226012826, + 0.006251465063542128, + -0.012456301599740982, + 0.00861949473619461, + 0.02051626145839691, + -0.007607003673911095, + -0.026018351316452026, + 0.00036053333315066993, + 0.007860125973820686, + -0.0033622023183852434, + -0.007034147158265114, + 0.00937886256724596, + -0.01117070484906435, + 0.005771864205598831, + 0.006431315094232559, + -0.01442799437791109, + -0.016865966841578484, + -0.005758541636168957, + -0.02230144292116165, + -0.014987529255449772, + 0.002791011007502675, + -0.022781044244766235, + 0.013448809273540974, + 0.0009492101962678134, + -0.009485440328717232, + -0.0035936764907091856, + -0.00877270009368658, + 0.003315574489533901, + -0.02111576311290264, + 0.0013755221152678132, + 0.012229823507368565, + 0.01220317929983139, + 0.010191519744694233, + 0.019783537834882736, + 0.023926757276058197, + 0.004669447895139456, + 0.001296421280130744, + 0.0025345575995743275, + -0.021262308582663536, + -0.006058292463421822, + -0.01102416031062603, + 0.014561217278242111, + -0.015054140239953995, + 0.016452975571155548, + -0.012456301599740982, + -0.009305590763688087, + -0.005751880817115307, + 0.0040632858872413635, + 0.0037502129562199116, + -0.005895094946026802, + -0.010191519744694233, + -0.0016427997034043074, + -0.029575390741229057, + -0.008373033255338669, + -0.014401350170373917, + 0.03660953789949417, + -0.007620325777679682, + -0.0023913434706628323, + 0.008253132924437523, + 0.004932562354952097, + -0.003626981982961297, + 0.034051667898893356, + -0.0010091603035107255, + -0.03311910852789879, + -0.004662786610424519, + -0.005788516718894243, + -0.00909243430942297, + -0.010158213786780834, + 0.011477116495370865, + -0.021382208913564682, + 0.019543737173080444, + 0.005568699911236763, + 0.004955876152962446, + -0.011363877914845943, + -0.010691104456782341, + -0.010657798498868942, + -0.004686100874096155, + -0.003793510142713785, + -0.011543728411197662, + 0.0007452132413163781, + 0.0022631168831139803, + -0.020609518513083458, + -0.005265618674457073, + -0.0016869297251105309, + -0.015547063201665878, + 0.01442799437791109, + 0.01504081767052412, + 0.010977532714605331, + -0.02026313915848732, + -0.007980026304721832, + 0.0011282279156148434, + 0.003890096442773938, + 0.02178187482059002, + 0.008752716705203056, + -0.013348892331123352, + 0.01164364442229271, + 0.0032006700057536364, + -0.006647801958024502, + 0.01725231111049652, + -0.004409664310514927, + 0.01252291351556778, + -0.00365029601380229, + -0.004682769998908043, + 0.0025295617524534464, + 0.0009941727621480823, + 0.02803000994026661, + -0.029895124956965446, + 0.007327236235141754, + -0.013655303977429867, + -0.014920918270945549, + 0.011890106834471226, + -0.019503770396113396, + 0.01965031586587429, + -0.016452975571155548, + 0.004885934293270111, + 0.033545419573783875, + 0.009592019021511078, + -0.009925074875354767, + -0.002441301941871643, + -0.0027776886709034443, + 0.00879934523254633, + 0.021582042798399925, + 0.01357537042349577, + 0.01907745935022831, + 0.006907585542649031, + -0.01633307710289955, + 0.010178197175264359, + 0.0066877687349915504, + -0.020982541143894196, + -0.002373025519773364, + 0.00998502504080534, + -0.005855128169059753, + 0.014974206686019897, + 0.001314739347435534, + 0.0059284004382789135, + 0.00011022078979294747, + -0.003295591101050377, + 0.007180691696703434, + -0.005298924166709185, + 0.008925906382501125, + -0.029868479818105698, + 0.011423828080296516, + -0.01164364442229271, + -0.0031323935836553574, + -0.002091592876240611, + -0.017758557572960854, + 0.02144881896674633, + 0.005235643591731787, + 0.007340558804571629, + -0.00876603927463293, + -0.023447155952453613, + 0.0043930113315582275, + 0.018864303827285767, + -0.0021631999406963587, + 0.0033255661837756634, + -0.010457964614033699, + 0.0060616228729486465, + 0.00339217740111053, + 0.01536055188626051, + 0.006927568931132555, + -0.00716070830821991, + -0.020942574366927147, + -0.01506746280938387, + -0.01578686386346817, + -0.003930062986910343, + -0.022714432328939438, + -0.007127402815967798, + 0.006860957946628332, + -0.0010716082761064172, + -0.011803511530160904, + 0.02320735529065132, + -0.012223162688314915, + 0.013175703585147858, + 0.008266454562544823, + 0.0008751051500439644, + 8.170284854713827e-5, + 3.091177859460004e-5, + -0.020156560465693474, + 0.006497926544398069, + 0.0006099091842770576, + -0.014241483062505722, + -0.0058085001073777676, + 0.006301423534750938, + 0.02505914866924286, + 0.006787685211747885, + 0.02467280440032482, + 2.483610478520859e-5, + -0.018318090587854385, + 0.019144071266055107, + -0.0011973370565101504, + 0.01994340494275093, + 0.008599511347711086, + 0.0018318090587854385, + 0.010957549326121807, + 0.0021448819898068905, + -0.015054140239953995, + 0.011064127087593079, + -0.004672778304666281, + -0.008153215982019901, + 0.0026694454718381166, + -0.015467129647731781, + 0.010544558987021446, + -0.00045628700172528625, + -0.0035337263252586126, + -2.3170823624241166e-5, + 0.0071473862044513226, + -0.004109913483262062, + -0.009671952575445175, + 0.005208998918533325, + 0.02147546410560608, + 0.003986682742834091, + -0.001991676166653633, + 0.009265623986721039, + -0.0020199858117848635, + -0.0148809514939785, + -0.005705252755433321, + -0.021542076021432877, + -0.0039000881370157003, + 0.013455471023917198, + -0.005898425355553627, + 0.022141575813293457, + -0.005245635285973549, + 0.003663618117570877, + 0.008133232593536377, + 0.003830146277323365, + 0.006887602154165506, + 0.0007701924769207835, + 0.0034271483309566975, + 0.0004211079503875226, + 0.0035703624598681927, + -0.002887597307562828, + 0.018304768949747086, + 0.00862615555524826, + -0.005865119863301516, + -0.0010607839794829488, + 0.004965867847204208, + 0.004219822119921446, + -0.00015310177695937455, + -0.017372211441397667, + 0.0021498778369277716, + -0.025258982554078102, + 0.002554540988057852, + 0.013628659769892693, + -0.0031923437491059303, + 0.013255637139081955, + 0.005142387934029102, + -0.008066621609032154, + -0.005595344118773937, + 0.006358042825013399, + -0.010144892148673534, + -0.004592845216393471, + -0.011037482880055904, + 0.0030907616019248962, + 0.02680436335504055, + 0.003250628476962447, + 0.0014654472470283508, + -0.021222341805696487, + -0.012576201930642128, + -0.007100758142769337, + 0.002366364235058427, + -0.0035137429367750883, + 0.022567888721823692, + 0.0019333912059664726, + -0.02175523154437542, + -0.0025678633246570826, + -0.019716927781701088, + -0.007340558804571629, + 0.010191519744694233, + 0.006947552319616079, + -0.0072672865353524685, + -0.014268127270042896, + 0.024806026369333267, + 0.03338555246591568, + 0.009598679840564728, + 0.005488766357302666, + -0.02708413079380989, + -0.0008309752447530627, + 0.01997005008161068, + -0.0020982541609555483, + 0.01266279723495245, + -0.008925906382501125, + 0.004865950904786587, + -0.00018422171706333756, + 0.012829325161874294, + -0.009285607375204563, + 0.023300612345337868, + -0.001715239486657083, + -0.011250638402998447, + -0.006131564732640982, + -0.010024991817772388, + 0.006987519096583128, + 0.0037302295677363873, + -0.01446796115487814, + -0.00647461274638772, + 0.017691945657134056, + -0.014094938524067402, + 0.005192346405237913, + -0.008353049866855145, + -0.0018318090587854385, + -0.011970040388405323, + 0.019503770396113396, + 0.0020299775060266256, + 0.006088267546147108, + 0.0010224825236946344, + 0.011297265999019146, + 0.0030674475710839033, + 0.0006948385271243751, + 0.019517093896865845, + -0.032985884696245193, + -0.0030624517239630222, + -0.008832650259137154, + 0.00985180214047432, + 0.008845972828567028, + 0.014161549508571625, + 0.007054130546748638, + 0.00234471564181149, + 0.017478790134191513, + -0.013948393985629082, + -0.01849128119647503, + -0.03098754957318306, + 0.018344735726714134, + 0.012449640780687332, + 0.011730239726603031, + -0.009718580171465874, + 0.00476270355284214, + -0.0020532915368676186, + -0.0001542466488899663, + -0.02497921511530876, + -0.0018917592242360115, + -0.014188194647431374, + 0.011363877914845943, + 0.009325573220849037, + 0.019490448758006096, + 0.0037901795003563166, + -0.007726904004812241, + 0.009265623986721039, + -0.008652799762785435, + -0.005052462685853243, + -0.0071473862044513226, + 0.038874320685863495, + -0.010844309814274311, + -0.001617820467799902, + 0.026711108162999153, + -0.006324737332761288, + 0.005755211226642132, + 0.0031923437491059303, + 0.008126571774482727, + 0.02499253675341606, + -0.002759370720013976, + -0.007680275943130255, + 0.0018967550713568926, + -0.012975869700312614, + 0.012509590946137905, + 0.017199022695422173, + 0.004712745081633329, + -0.012729408219456673, + -0.02054290659725666, + 0.0058684502728283405, + 0.0017019171500578523, + 0.011437149718403816, + -0.015680285170674324, + 0.007120741531252861, + 0.0035137429367750883, + 0.014960885047912598, + -0.005568699911236763, + 0.0007810167735442519, + 0.010378031060099602, + -0.00876603927463293, + -0.01966363750398159, + 0.015680285170674324, + 0.008712749928236008, + 0.013408842496573925, + 0.011184027418494225, + 0.004412994720041752, + 0.0008026654249988496, + 0.027870142832398415, + -0.006094928365200758, + -0.010817665606737137, + 0.01753207854926586, + -0.002386347623541951, + -0.010457964614033699, + 0.02623150683939457, + -0.0061182426288723946, + -0.0018334743799641728, + 0.011423828080296516, + -0.01733224466443062, + -0.01191009022295475, + -0.0025778550188988447, + -0.0009275615448132157, + -0.020489618182182312, + -0.006038309074938297, + 0.02058287337422371, + -0.002174857072532177, + -0.008359710685908794, + 0.004056624602526426, + -0.008239810355007648, + -0.007547053508460522, + -0.0038834353908896446, + 0.023913435637950897, + 0.002414657501503825, + 0.006604504305869341, + -0.000676104100421071, + 0.035330601036548615, + -0.00030141585739329457, + -0.02864283323287964, + 0.0027293956372886896, + 0.010251469910144806, + -0.0096586300060153, + 0.005005834624171257, + -0.016279786825180054, + -0.005468782968819141, + 0.005851797293871641, + -0.012043312191963196, + 0.012442979961633682, + -0.036769405007362366, + -0.0011323910439386964, + -0.003543718019500375, + 0.0023247322533279657, + -0.028083298355340958, + 0.008546222001314163, + 0.025525426492094994, + 0.01851792447268963, + 0.02773692086338997, + -0.010351386852562428, + 0.008326404727995396, + -0.0036569570656865835, + 0.028829345479607582, + 0.03426482155919075, + -0.012236485257744789, + 0.009638646617531776, + 0.02949545718729496, + -0.008452966809272766, + 0.012116584926843643, + 0.004662786610424519, + 0.0012289773439988494, + 0.009345556609332561, + 0.0007289767381735146, + -0.02204832062125206, + -0.0009616998140700161, + 0.01667945459485054, + 0.003870113054290414, + 0.019756894558668137, + 0.022874299436807632, + 0.024379713460803032, + -0.017958389595150948, + 0.0041398885659873486, + 0.02386014722287655, + -0.005109081976115704, + 0.02503250353038311, + 0.0019117426127195358, + 0.0016794359544292092, + 0.01847795769572258, + 0.017345566302537918, + 0.010624492540955544, + -0.01192341186106205, + 0.010071619413793087, + 0.011044143699109554, + -0.0058717806823551655, + -0.005565369036048651, + 0.00805329903960228, + 0.009572035633027554, + -0.009898430667817593, + 0.02893592230975628, + 0.0126694580540061, + -0.0036569570656865835, + 0.013169041834771633, + 0.011410505510866642, + -0.02471277117729187, + 0.0326927974820137, + 0.005828483495861292, + -0.010624492540955544, + 0.0054221549071371555, + 0.00752040883526206, + -0.001811825786717236, + -0.001687762327492237, + -0.01238969061523676, + -0.013022497296333313, + -0.01762533374130726, + 0.004359705839306116, + 0.0052889324724674225, + -0.0049758595414459705, + 0.008173199370503426, + -0.008219826966524124, + -0.008319743908941746, + -0.011563711799681187, + -0.020942574366927147, + 0.022154899314045906, + -0.011830156669020653, + -0.029948413372039795, + 0.005455460399389267, + 0.019437160342931747, + 0.01965031586587429, + 0.012682780623435974, + 0.031413860619068146, + -0.030188214033842087, + 0.01101749949157238, + 0.01059784833341837, + 0.014388027600944042, + -0.021035829558968544, + -0.001020817318931222, + -0.0037002544850111008, + 0.0010824326891452074, + -0.006867618765681982, + -0.008093265816569328, + -0.0035137429367750883, + 0.0004150712920818478, + -0.004193177446722984, + 0.028669478371739388, + -0.012136568315327168, + -0.00011958799586864188, + -0.013801849447190762, + 0.0030824351124465466, + -0.016905933618545532, + -0.00431307777762413, + 0.007527070119976997, + -0.004629481118172407, + -0.0020316429436206818, + -0.00376020441763103, + 0.005458791274577379, + -0.004522903356701136, + -0.00022564557730220258, + 0.030614526942372322, + 0.007260625250637531, + 0.010371370241045952, + 0.00335554126650095, + -0.006534562911838293, + -0.022141575813293457, + -0.023620346561074257, + 0.0038467992562800646, + -0.007213997188955545, + 0.001089926459826529, + -0.02564532682299614, + 0.0024379712995141745, + 0.009392185136675835, + 0.014827662147581577, + -0.0006723572150804102, + -0.0006019991124048829, + -0.01935722678899765, + 1.5117629118321929e-5, + -0.003130728378891945, + 0.012862630188465118, + 0.0006215661414898932, + 0.021648652851581573, + 0.0148809514939785, + -0.014481283724308014, + 0.032319772988557816, + -0.014721084386110306, + -0.01238969061523676, + 0.0030874309595674276, + 0.013588692992925644, + 0.007040807977318764, + 0.0026178217958658934, + 0.0022880961187183857, + -0.02031642757356167, + -0.020489618182182312, + -0.014867628924548626, + 0.004639472812414169, + 0.003853460308164358, + 0.006721074227243662, + -0.0016069961711764336, + -0.004209830425679684, + 0.013881782069802284, + -0.011177366599440575, + -0.002629478694871068, + -0.017212344333529472, + -0.013029159046709538, + -0.001199834980070591, + 0.01282266341149807, + -0.020969217643141747, + 0.02350044623017311, + -0.004189847037196159, + 0.015413841232657433, + -0.017092444002628326, + 0.025778550654649734, + 0.012369707226753235, + -0.027550408616662025, + 0.012476284988224506, + 0.010058297775685787, + 0.0010516250040382147, + -0.0028259819373488426, + -0.014081615954637527, + -0.018850980326533318, + 0.012049973011016846, + 0.011070787906646729, + -0.018091613426804543, + -0.004163202363997698, + 0.009192351251840591, + -0.005438807886093855, + -0.008319743908941746, + 0.0008850968442857265, + 0.017638657242059708, + -0.02440635859966278, + -0.004023319110274315, + 0.007700259331613779, + -0.010777698829770088, + 0.005701922345906496, + -0.0035370569676160812, + -0.016466299071907997, + 0.012476284988224506, + 0.005848466884344816, + -0.018637824803590775, + 0.019517093896865845, + 2.3769283870933577e-5, + -0.01060450915247202, + 0.015587029978632927, + -0.009938397444784641, + 0.006894263438880444, + -0.01997005008161068, + 0.0011024160776287317, + 0.006338059436529875, + -0.01013823039829731, + 0.0014038318768143654, + -0.016013342887163162, + 0.029388878494501114, + -0.004732728470116854, + -0.010244809091091156, + -0.020169883966445923, + -0.006354712415486574, + -0.0014413007302209735, + 0.0005437142681330442, + -0.02210160903632641, + 0.016865966841578484, + -0.012329740449786186, + -0.014707761816680431, + 0.016186531633138657, + 0.00624480377882719, + -0.011996684595942497, + -0.02467280440032482, + 0.010011669248342514, + -0.0013397185830399394, + 0.025272304192185402, + -0.004922570660710335, + -0.022554565221071243, + 0.004569530952721834, + -0.006724404636770487, + -0.010637815110385418, + -0.015080784447491169, + 0.0074071697890758514, + -0.007666953839361668, + -1.4363048649101984e-5, + 0.01506746280938387, + 0.01937054842710495, + -0.0005432979087345302, + -0.008699428290128708, + -0.017159055918455124, + -0.020609518513083458, + -0.003447131719440222, + -0.02445964701473713, + -0.011696933768689632, + 0.010398014448583126, + 0.00018536658899392933, + 0.010484608821570873, + -0.020942574366927147, + -0.0027010857593268156, + -0.015293940901756287, + -0.021248985081911087, + -0.007067452650517225, + -0.003820154583081603, + -0.016826000064611435, + -0.011410505510866642, + -0.010850970633327961, + 0.01643965393304825, + -0.011530405841767788, + 0.015453808009624481, + -0.015120751224458218, + 0.018611181527376175, + -0.004183185752481222, + 0.004416325129568577, + 0.0013480449561029673, + -3.497090074233711e-5, + -0.03421153500676155, + -0.004699422977864742, + 0.013895104639232159, + -0.005788516718894243, + 0.014867628924548626, + 0.012263129465281963, + -0.007760209497064352, + -0.015467129647731781, + -0.006577860098332167, + 0.009218995459377766, + -0.02119569666683674, + -0.017398856580257416, + 0.028696121647953987, + 0.0013547061244025826, + 0.00981183536350727, + 0.012163212522864342, + 0.007966704666614532, + 0.002781019313260913, + 0.02651127427816391, + -0.001980019034817815, + -0.006161539815366268, + -0.0028309777844697237, + 0.018358057364821434, + -0.019890116527676582, + 0.00865946151316166, + -0.030161568894982338, + -0.03431811183691025, + -0.0067010908387601376, + -0.012842646799981594, + 0.011996684595942497, + -0.021275630220770836, + -0.003660287708044052, + -0.009412168525159359, + -0.005851797293871641, + 0.014934239909052849, + -0.0008992517250590026, + -0.0007385521312244236, + -0.0011273951968178153, + 0.004489597398787737, + 0.006974196992814541, + 0.0028959237970411777, + 0.0006923406035639346, + -0.0031107449904084206, + 0.02561868354678154, + 0.020716095343232155, + 0.014348060823976994, + 0.0054221549071371555, + -0.0020849318243563175, + 0.006108250934630632, + -0.01027811411768198, + 0.012756052426993847, + 0.008679444901645184, + -0.017825167626142502, + -0.017665300518274307, + 0.020076628774404526, + 0.002656123135238886, + -0.004859290085732937, + -0.011676950380206108, + -0.018930913880467415, + 0.011357216164469719, + -0.00610492005944252, + 0.008226487785577774, + -0.0018884286982938647, + 0.00626811757683754, + 0.024819348007440567, + -8.472117042401806e-5, + -0.010844309814274311, + -0.02051626145839691, + -0.0032056658528745174, + -0.01969028264284134, + -0.013408842496573925, + 0.02776356413960457, + 0.014814339578151703, + 0.007333897519856691, + 0.019863471388816833, + 0.012622830457985401, + 0.003075774060562253, + -0.00751374801620841, + -0.0022031667176634073, + 0.014587861485779285, + 0.003810162888839841, + 0.014627828262746334, + -0.0013413839042186737, + -0.0021215679589658976, + -0.01506746280938387, + 0.008452966809272766, + -0.029948413372039795, + -0.007253963965922594, + -0.02800336480140686, + -0.012176535092294216, + 0.041565414518117905, + -0.009265623986721039, + -0.0042597888968884945, + -0.019144071266055107, + -0.003365532960742712, + 0.009065790101885796, + 0.011963378638029099, + -0.0014721084153279662, + 0.0006931732059456408, + 0.01818486861884594, + 0.00036802710383199155, + -0.001039135386236012, + -0.02440635859966278, + 0.00875937845557928, + 0.02319403365254402, + -0.010651137679815292, + -0.009139061905443668, + 0.01813158020377159, + 0.004163202363997698, + -0.009771868586540222, + -0.0008201508899219334, + -0.009478779509663582, + -0.01149043906480074, + -0.009065790101885796, + -0.02386014722287655, + -0.008905922994017601, + 0.02118237502872944, + 0.01695922203361988, + 0.00580183882266283, + -0.004832645412534475, + -0.005432146601378918, + -0.0034970901906490326, + 0.010677781887352467, + 0.016839321702718735, + -0.009192351251840591, + -0.003150711767375469, + -0.016559554263949394, + 0.006211498286575079, + 0.005225651897490025, + 0.001328894286416471, + -0.00039758585626259446, + -0.01635972037911415, + -0.008299760520458221, + -0.015000851824879646, + -0.0033122438471764326, + 0.025258982554078102, + 0.018637824803590775, + 0.0043930113315582275, + 0.018611181527376175, + -0.01145047228783369, + 0.007114080712199211, + -0.03682269528508186, + -0.001287262188270688, + -0.003820154583081603, + -0.0036436349619179964, + 0.006321406923234463, + 0.007313914131373167, + 0.012656135484576225, + -0.020369717851281166, + 0.02380685694515705, + -0.02652459591627121, + -0.01847795769572258, + -0.010611170902848244, + 0.009598679840564728, + -0.02178187482059002, + -0.00937220174819231, + 0.0006348883616738021, + -0.00544213829562068, + 0.002318071201443672, + 0.008825989440083504, + 0.004935892764478922, + 0.014734406024217606, + 0.015520418994128704, + 0.010144892148673534, + 0.007060791365802288, + -0.0037169072311371565, + -0.0061249034479260445, + 0.009618663229048252, + 0.030587881803512573, + -0.005392179824411869, + -0.003375524654984474, + 0.028482966125011444, + -0.016173209995031357, + 0.01670609973371029, + 0.01177020650357008, + 0.0025761898141354322, + 0.0018651147838681936, + 0.018291447311639786, + -0.009878447279334068, + -0.006371364928781986, + 0.0029392209835350513, + 0.028163231909275055, + 0.012256468646228313, + -0.011184027418494225, + 0.008492933586239815, + 0.00862615555524826, + -0.003287264611572027, + 0.002564532682299614, + -0.004955876152962446, + -0.01851792447268963, + -0.01733224466443062, + -0.030827682465314865, + -0.021648652851581573, + -0.005505418870598078, + 0.026577884331345558, + -0.0193305816501379, + -0.006231481675058603, + -0.011250638402998447, + 0.009505423717200756, + -0.012869291938841343, + -0.006211498286575079, + 0.02952210232615471, + -0.014761051163077354, + -0.00045337274787016213, + -0.02625815011560917, + -0.01755872368812561, + 0.022554565221071243, + 0.018677791580557823, + 0.01757204532623291, + -0.004809331614524126, + 0.0011965044541284442, + 0.004612828604876995, + -0.023020844906568527, + -0.001328894286416471, + -0.0036569570656865835, + -0.0023463808465749025, + -0.005089098587632179, + 0.02503250353038311, + -0.014534573070704937, + -0.009272284805774689, + -0.0024396367371082306, + -0.01532058510929346, + -0.0015445481985807419, + -0.0006032480741851032, + -0.01342882588505745, + 0.0208359956741333, + -0.0029825184028595686, + -0.00513905705884099, + -0.007633648347109556, + -0.004356374964118004, + 0.01309577003121376, + -0.015853475779294968, + -0.002882601460441947, + -0.016865966841578484, + 0.008985856547951698, + -0.0026178217958658934, + -0.0026211522053927183, + -0.005948383826762438, + 0.014974206686019897, + -0.00011230239033466205, + 0.001006662379950285, + 0.007040807977318764, + -0.006777693517506123, + -0.004033310804516077, + -0.022767722606658936, + -0.013062464073300362, + -0.020942574366927147, + 0.02417987957596779, + 0.011097433045506477, + 0.02236805483698845, + -0.003773526754230261, + -0.0005162371089681983, + -0.0052922628819942474, + -0.009472118690609932, + 0.0025045827496796846, + 0.01130392774939537, + -0.011064127087593079, + 0.018331414088606834, + 0.02144881896674633, + 0.025165727362036705, + 0.001866779988631606, + -0.023140745237469673, + 0.009332234971225262, + -0.024592870846390724, + 0.012556218542158604, + -0.005921739153563976, + -0.004562870133668184, + -0.0053622047416865826, + -0.0020033330656588078, + 0.0034637844655662775, + 0.012756052426993847, + 0.006940891034901142, + -0.00028288961038924754, + 0.007020824588835239, + -0.005761872511357069, + 0.003457123413681984, + -0.03423817828297615, + 0.009458796121180058, + 0.007353880908340216, + -0.013522082008421421, + 0.0005403836839832366, + -0.004606167320162058, + 0.018091613426804543, + 0.0032972563058137894, + -0.013748560100793839, + 0.015880119055509567, + 0.013348892331123352, + -0.0021482123993337154, + -0.008612832985818386, + 0.014734406024217606, + 0.0016769380308687687, + 0.013288942165672779, + -0.011736900545656681, + -0.012502930127084255, + -0.002138220937922597, + 0.019263971596956253, + 0.011343894526362419, + -0.01786513440310955, + -0.02059619501233101, + -0.009785191155970097, + 0.023953402414917946, + 0.022141575813293457, + 0.012029989622533321, + -0.0061182426288723946, + 0.015986697748303413, + 0.0005278940661810338, + 0.031733594834804535, + -0.0012806011363863945, + 0.005545385647565126, + -0.003218988189473748, + -0.005149048753082752, + -0.007273947354406118, + 0.00787344854325056, + -0.028243165463209152, + 0.002076605334877968, + 0.009585357271134853, + -0.0018967550713568926, + 0.006517909932881594, + -0.021555397659540176, + -0.021608686074614525, + -0.013035819865763187, + 0.0025029173120856285, + 0.015094107016921043, + 0.010784359648823738, + -0.0024279796052724123, + 0.0209026075899601, + -0.002138220937922597, + 0.012616168707609177, + 0.02203499898314476, + -0.0011740231420844793, + -0.017159055918455124, + 0.019583703950047493, + -0.021262308582663536, + 0.02030310593545437, + 0.004612828604876995, + -0.034078311175107956, + -0.026005027815699577, + -0.0007756046252325177, + 0.007746887393295765, + 0.0003249379515182227, + 0.019756894558668137, + -0.011057466268539429, + 0.0020266470964998007, + 0.025258982554078102, + 0.009758546948432922, + -0.013615337200462818, + 0.022501276805996895, + 0.014308094047009945, + -0.028802700340747833, + 0.008506255224347115, + -0.013402181677520275, + -0.007040807977318764, + 0.005645302589982748, + 0.0067610410042107105, + 0.0067610410042107105, + 0.012089939787983894, + 0.004206500016152859, + 0.011050804518163204, + 0.010011669248342514, + -0.015933409333229065, + 0.007453797850757837, + 0.012276452034711838, + -0.01574689708650112, + -0.004885934293270111, + -0.010504592210054398, + 0.013895104639232159, + -0.01762533374130726, + -0.009765207767486572, + -0.013935071416199207, + -0.0037701961118727922, + -0.027243997901678085, + 0.016786033287644386, + -0.0007318910211324692, + -0.010477948002517223, + -3.179645864292979e-5, + 0.002561202272772789, + -0.012229823507368565, + 0.006591182202100754, + 0.014028327539563179, + 0.015853475779294968, + 0.0010974202305078506, + 0.0028076637536287308, + -0.010697765275835991, + 0.012296435423195362, + 0.01906413771212101, + 0.004296424798667431, + 0.01506746280938387, + 0.010031652636826038, + -0.005758541636168957, + -0.010304759256541729, + 0.0005087433382868767, + 0.00619484530761838, + -0.008699428290128708, + 0.0033255661837756634, + -0.0034171566367149353, + -0.008086604997515678, + 0.004479605704545975, + -0.03818156197667122, + 0.008919245563447475, + 0.009798513725399971, + -0.003973360639065504, + 0.0026111607439816, + 0.011124077253043652, + 0.026577884331345558, + 0.021355563774704933, + 0.010358047671616077, + 0.0005499590770341456, + -0.018890947103500366, + 0.00937886256724596, + -0.014787695370614529, + -0.0011174035025760531, + 0.006791016086935997, + -0.006281440146267414, + 0.02981519140303135, + -0.01881101354956627, + 0.005638641305267811, + 0.004835976287722588, + 0.0141748720780015, + -0.015307263471186161, + 0.022781044244766235, + -0.007380525581538677, + -0.006417992990463972, + -0.04049963504076004, + 0.02803000994026661, + -0.002303083660081029, + 0.012909258715808392, + 0.013302264735102654, + 0.010817665606737137, + 0.017665300518274307, + 0.00955871306359768, + -0.00323730637319386, + -0.004133227281272411, + 0.0023064143024384975, + 0.0057352278381586075, + 0.012429657392203808, + 0.008166538551449776, + 0.0008601176668889821, + 0.00395337725058198, + 0.007993348874151707, + -0.003430478973314166, + 0.01220317929983139, + -0.019010847434401512, + 0.010684442706406116, + 0.01534723024815321, + 0.02711077407002449, + -0.007840142585337162, + -0.013368875719606876, + -0.0014379702042788267, + 0.002124898601323366, + -0.0007660292903892696, + 0.021848486736416817, + -0.0032606201712042093, + 0.008539561182260513, + 0.005428816191852093, + -0.03431811183691025, + -0.0013696936657652259, + -0.02236805483698845, + -0.012049973011016846, + -0.004656125791370869, + 0.011410505510866642, + 0.013548726215958595, + 0.012169873341917992, + -0.01323565375059843, + 0.010178197175264359, + -0.015094107016921043, + 0.00416653323918581, + -0.019770216196775436, + 0.004069946706295013, + -0.012043312191963196, + -0.0012489607324823737, + -0.004676109179854393, + -0.01759869046509266, + -0.007253963965922594, + 0.014228161424398422, + 0.004676109179854393, + 0.007047469262033701, + -0.013735237531363964, + -0.03397173434495926, + -0.010724409483373165, + -0.009405506774783134, + -0.0014338069595396519, + -0.0063780262134969234, + -0.00786678772419691, + 0.0026777719613164663, + 0.010657798498868942, + -0.02210160903632641, + 0.007806837558746338, + 0.01370859332382679, + -0.016293110325932503, + -0.002119902754202485, + -0.014960885047912598, + -0.013149058446288109, + 0.02564532682299614, + -0.018984204158186913, + 0.007760209497064352, + -0.011890106834471226, + 0.012829325161874294, + -0.012649474665522575, + -0.007646970450878143, + -0.004636142402887344, + -0.00015580785111524165, + -0.005905086640268564, + -0.014214838854968548, + 0.018238157033920288, + 0.021888453513383865, + 0.007027485873550177, + 0.021622009575366974, + 0.002569528529420495, + -0.013582032173871994, + 0.014348060823976994, + -0.005535393953323364, + 0.0070141637697815895, + -0.013641982339322567, + 0.005492096766829491, + 0.02445964701473713, + -0.008426321670413017, + -0.0003782269486691803, + -0.010258130729198456, + 0.021009184420108795, + -0.005238974001258612, + 0.007840142585337162, + -0.007560375612229109, + 0.006111581344157457, + 0.02140885218977928, + 0.011177366599440575, + -0.0005095759988762438, + -0.007946721278131008, + 0.004799339920282364, + 0.001522066886536777, + -0.03162701800465584, + -0.0016719421837478876, + -0.0023380545899271965, + -0.021901775151491165, + 0.003527065273374319, + -0.004496258683502674, + 0.0008059960091486573, + 0.0003682352544274181, + 0.0007889269036240876, + 0.016173209995031357, + -0.0006265619886107743, + 0.021568719297647476, + -0.019490448758006096, + -0.01606663130223751, + -0.002772692823782563, + 0.016572875902056694, + -0.009119078516960144, + -0.014654472470283508, + 0.0005462121916934848, + 0.0057918475940823555, + 0.010797682218253613, + -0.01611991971731186, + 0.011363877914845943, + -0.0026228176429867744, + 0.019903438165783882, + -0.00647461274638772, + -0.020343072712421417, + 0.001140717533417046, + 0.01963699422776699, + -0.027843497693538666, + 0.004133227281272411, + -0.006427984684705734, + -0.005082437768578529, + -0.01701251044869423, + 0.004359705839306116, + 0.005635310895740986, + 0.006278109271079302, + 0.01670609973371029, + -0.0077935149893164635, + -0.004719406366348267, + 0.006231481675058603, + -0.008079943247139454, + 0.04284435138106346, + 0.03437139838933945, + -0.007620325777679682, + -0.012622830457985401, + -0.006108250934630632, + -0.03098754957318306, + -0.00305246002972126, + 0.002233141800388694, + -0.028109943494200706, + -0.01967696100473404, + 0.025165727362036705, + 0.001476271660067141, + -0.002812659600749612, + 0.01400168240070343, + -0.021288951858878136, + 0.027950076386332512, + 0.0035337263252586126, + -0.001512907794676721, + -0.017758557572960854, + 0.00909909512847662, + -0.011390522122383118, + 0.0038368075620383024, + -0.018864303827285767, + 0.012875952757894993, + 0.006278109271079302, + -0.010937565937638283, + -0.011217333376407623, + -0.02744383178651333, + -0.025512104853987694, + -0.009538729675114155, + 0.021089117974042892, + -0.007240641862154007, + -0.023407189175486565, + -0.008106588385999203, + -0.001765197841450572, + 0.012289773672819138, + -0.0034804372116923332, + 0.008466288447380066, + 0.003232310526072979, + -0.0037302295677363873, + -0.01966363750398159, + -0.014787695370614529, + 0.009925074875354767, + -0.02111576311290264, + -0.007567036896944046, + 0.012456301599740982, + -0.001659452565945685, + 0.009818497113883495, + -0.021302275359630585, + -0.021861808374524117, + -0.008825989440083504, + 0.006587851792573929, + -0.007420492358505726, + 0.011950056999921799, + -0.0060616228729486465, + 0.02210160903632641, + 0.009798513725399971, + -0.0005083270370960236, + -0.020196527242660522, + 0.00833972729742527, + -0.007187352981418371, + 0.001527062733657658, + 0.014148227870464325, + 0.03820820897817612, + -0.001659452565945685, + 0.021648652851581573, + 0.015293940901756287, + 0.010824326425790787, + 0.004079938400536776, + 0.0023913434706628323, + 0.005282271187752485, + -0.01428144983947277, + -0.007360542193055153, + 0.017425499856472015, + -0.016506265848875046, + -0.010358047671616077, + -0.014774372801184654, + -0.021968387067317963, + -0.020649485290050507, + 0.01633307710289955, + 0.01994340494275093, + 0.003910079598426819, + -0.0010824326891452074, + -0.01059118751436472, + -0.01967696100473404, + 0.0020799359772354364, + -0.023966724053025246, + -0.00031869314261712134, + -0.019263971596956253, + 0.021542076021432877, + 0.0058684502728283405, + 0.004446300212293863, + -0.01785181276500225, + -0.01145047228783369, + -0.0004123652179259807, + -0.000992507440969348, + -0.016306431964039803, + 0.018930913880467415, + 0.0022647820878773928, + -0.006757710129022598, + 0.004639472812414169, + 0.010071619413793087, + 0.009205673821270466, + -0.011983362026512623, + -0.018637824803590775, + -0.0297885462641716, + 0.0018717758357524872, + 0.008905922994017601, + 0.009165707044303417, + 0.01059784833341837, + -0.025378882884979248, + 0.027257319539785385, + 0.007167369592934847, + 0.004353044554591179, + 0.0019134079338982701, + 0.013761882670223713, + 0.016839321702718735, + 0.006368034519255161, + 0.01088427659124136, + -0.0026128259487450123, + -0.013322248123586178, + 0.021062474697828293, + 0.013109092600643635, + -0.0003825983148999512, + -0.002399669960141182, + -0.009218995459377766, + -0.0024945910554379225, + 0.033199042081832886, + 0.004176524933427572, + -0.02379353530704975, + 0.013468792662024498, + -0.007826820947229862, + -0.01445463951677084, + 0.007766870781779289, + -0.026031672954559326, + -0.004532895050942898, + 0.007706920616328716, + -0.018704436719417572, + 0.018025001510977745, + 0.0027976720593869686, + -0.02652459591627121, + 0.016253143548965454, + 0.025099115446209908, + 0.014867628924548626, + 0.0033522106241434813, + -0.017145732417702675, + 0.0017918423982337117, + 0.004812662024050951, + 0.01432141661643982, + 0.003736890619620681, + -0.013801849447190762, + 0.0010607839794829488, + 0.01206995639950037, + 0.012915919534862041, + -0.0010133235482499003, + 0.0223147664219141, + -0.009738563559949398, + 0.014308094047009945, + -0.010651137679815292, + 0.005365535616874695, + 0.005072446074336767, + 0.016919255256652832, + -0.0007468785624951124, + 0.019597027450799942, + 0.012855969369411469, + 0.002532892394810915, + -0.007240641862154007, + -0.0010466291569173336, + -0.025232337415218353, + -0.004472944885492325, + -0.012682780623435974, + -0.004639472812414169, + -0.019450481981039047, + 0.005858458578586578, + -0.0031923437491059303, + 0.010930904187262058, + -1.9007620721822605e-5, + -0.0021815181244164705, + -0.026657817885279655, + -0.00737386429682374, + -0.004373027943074703, + 0.010764376260340214, + 0.004865950904786587, + -0.001135721686296165, + 0.020409684628248215, + 0.018824337050318718, + 0.004093260504305363, + 0.019796861335635185, + 0.013588692992925644, + -0.021395530551671982, + 0.0016894275322556496, + 0.02199503220617771, + -0.013442148454487324, + -0.019130747765302658, + 0.005192346405237913, + 0.01013156957924366, + 0.0037868490908294916, + 0.002044965047389269, + -0.01818486861884594, + 0.01308910921216011, + -0.009492102079093456, + -0.00937220174819231, + -0.029921770095825195, + 0.0043363915756344795 + ], + "de5af6d9-781e-4f03-af68-540d4ca5f861": [ + 0.0016098436899483204, + -0.009020053781569004, + -0.007020291872322559, + 0.030193591490387917, + -0.0417415127158165, + -0.0073723625391721725, + 0.02209596335887909, + 0.011385969817638397, + -0.04064305126667023, + -0.00014544924488291144, + 0.008569403551518917, + 0.04334695637226105, + 0.034446608275175095, + -0.006404167972505093, + -0.03957275673747063, + -0.01677265204489231, + -0.0025102647487074137, + 0.042501986026763916, + -0.0020895402412861586, + -0.020983420312404633, + 0.05252896249294281, + -0.03991074487566948, + -0.047825295478105545, + 0.021096082404255867, + 0.012470347806811333, + -0.02785584144294262, + 0.005136712919920683, + 0.011963365599513054, + -0.04692399501800537, + 0.026729214936494827, + 0.023842234164476395, + 0.005604967009276152, + 0.011899992823600769, + -0.0217438917607069, + 0.014646145515143871, + -0.0054747010581195354, + 0.004330470692366362, + 0.001906463410705328, + -0.014279991388320923, + -0.005411328282207251, + 0.00778076471760869, + 0.013582891784608364, + 0.0458255335688591, + 0.005407807417213917, + -0.05174032598733902, + 0.02492661215364933, + 0.014998216181993484, + -0.021349573507905006, + 0.031996194273233414, + 0.008280704729259014, + -0.010780408047139645, + 0.002457454102113843, + -0.019406141713261604, + -0.016138926148414612, + 0.014420819468796253, + -0.016096677631139755, + 0.020039869472384453, + 0.03464376553893089, + 0.012026738375425339, + -0.022870518267154694, + 0.02650388889014721, + 0.0030876609962433577, + -0.012646382674574852, + -0.00448538176715374, + -6.590325210709125e-5, + -0.02518010325729847, + -0.006351357325911522, + -0.02479986660182476, + -0.040840212255716324, + -0.04391026869416237, + -0.0017286676447838545, + 0.03762932866811752, + -0.04658600687980652, + -0.018645670264959335, + -0.008428574539721012, + -0.01446306798607111, + 0.01649099588394165, + 0.0029926018323749304, + 0.03163003921508789, + -0.020194780081510544, + 0.006654138211160898, + -0.002610604977235198, + -0.014434902928769588, + -0.006041534710675478, + 0.0905807763338089, + -0.014012417756021023, + 0.0029362705536186695, + -0.03729134052991867, + 0.0038551753386855125, + -0.015885435044765472, + -0.04137536138296127, + 0.021772058680653572, + -0.003536551259458065, + 0.009703070856630802, + 0.010597331449389458, + -0.013216737657785416, + 0.02502519264817238, + 0.0045417132787406445, + 0.025447677820920944, + 0.04064305126667023, + 0.030418917536735535, + 0.011822537519037724, + -0.025278683751821518, + 0.026489807292819023, + -0.004129790235310793, + -0.040276899933815, + 0.003925589378923178, + 0.004759997129440308, + -0.019899042323231697, + 0.043290626257658005, + 0.005872541107237339, + -0.034136783331632614, + 0.011385969817638397, + -0.008097628131508827, + -0.05044470354914665, + -0.023152176290750504, + 0.018237266689538956, + -0.022898685187101364, + 0.04137536138296127, + -0.04914908483624458, + 0.029404953122138977, + 0.009421414695680141, + 0.022715607658028603, + 0.02951761521399021, + -0.010181887075304985, + -0.005999286193400621, + 0.0008207650389522314, + 0.011977448128163815, + 0.0197018813341856, + 0.03692518547177315, + -0.0013933201553300023, + 0.0015174251748248935, + 0.020659513771533966, + 0.02146223559975624, + 0.014941884204745293, + 0.008865142241120338, + 0.0013563527027145028, + 0.04686766490340233, + -0.012949164025485516, + 0.034700099378824234, + -0.06438671052455902, + -0.04928991198539734, + -0.0239830631762743, + -0.012068986892700195, + 0.0022990223951637745, + 0.0029169064946472645, + -0.0053726001642644405, + 0.03991074487566948, + -0.03267217054963112, + 0.009780527092516422, + -0.045149557292461395, + -0.03627737611532211, + 0.0240816418081522, + 0.010963484644889832, + 0.03751666471362114, + 0.004200204741209745, + -0.023940814658999443, + 0.030616076663136482, + 0.02039194107055664, + -0.0010482907528057694, + 0.022039631381630898, + -0.07109013199806213, + 0.01287170872092247, + 0.0059640794061124325, + 0.028630398213863373, + 0.01934981159865856, + 0.05230363830924034, + 0.0383334681391716, + -0.007076622918248177, + 0.022997263818979263, + 0.012435141019523144, + -0.007872303016483784, + 0.01331531722098589, + -0.002816566498950124, + 0.02319442480802536, + -0.006287984549999237, + 0.01718105562031269, + 0.0032003235537558794, + 0.03461560234427452, + -0.054528724402189255, + -0.023405667394399643, + -0.018687918782234192, + 0.013526559807360172, + -0.01674448698759079, + -0.034164950251579285, + 0.011132478713989258, + -0.02750376984477043, + 0.016730403527617455, + 0.023053595796227455, + -0.00694635696709156, + -0.00997768621891737, + -0.027996670454740524, + 0.015815019607543945, + -0.0014971810160204768, + -0.013258986175060272, + -0.04376944154500961, + -0.006784404162317514, + 0.0112381000071764, + 0.00906230229884386, + 0.0270953681319952, + -0.003728429786860943, + -0.04269914701581001, + -0.03371429815888405, + 0.04881109669804573, + -0.012237980961799622, + 0.017476795241236687, + -0.04554387927055359, + -0.032869331538677216, + 0.030644241720438004, + -0.04661417379975319, + 0.018152769654989243, + -0.03430577740073204, + -0.004164997488260269, + -0.012371768243610859, + -0.016786735504865646, + 0.01898365654051304, + -0.012597093358635902, + 0.00038331709220074117, + 0.015730522572994232, + -0.03160187602043152, + 0.017673954367637634, + 0.020124366506934166, + -0.0051648784428834915, + -0.030390750616788864, + -0.057795941829681396, + 0.011294431053102016, + -0.008801770396530628, + 0.0254899263381958, + -0.051036182790994644, + -0.008865142241120338, + 0.04393843561410904, + -0.019631467759609222, + 0.013357565738260746, + 0.0038974236231297255, + -0.021828388795256615, + 0.04210766777396202, + 0.019913123920559883, + 0.03216518834233284, + -0.023250754922628403, + -0.008090587332844734, + 0.0201384499669075, + 0.006115469615906477, + 0.004816328641027212, + 0.03024992346763611, + 0.02640531025826931, + 0.01340685598552227, + -0.014871470630168915, + 0.005893665365874767, + -0.006985084619373083, + -0.02584199607372284, + -0.005418369546532631, + 0.014829222112894058, + 0.0057563576847314835, + 0.0009233056916855276, + -0.013350524939596653, + 0.03241867944598198, + 0.021912885829806328, + -0.04393843561410904, + -0.02502519264817238, + 0.012773128226399422, + -0.004006565548479557, + 0.002311344724148512, + 0.01911040209233761, + 0.019899042323231697, + 0.06731593608856201, + -0.02533501386642456, + 0.02681371197104454, + -0.017744367942214012, + 0.01620933972299099, + 0.047261983156204224, + -0.023743655532598495, + -0.019279396161437035, + 0.013301234692335129, + -0.002688060514628887, + 0.0011820776853710413, + 0.014223660342395306, + 0.014258867129683495, + 0.004520589020103216, + 0.02225087396800518, + -0.012723838910460472, + 0.010505792684853077, + -0.029376788064837456, + -0.01832176372408867, + 0.03002459742128849, + 0.016476912423968315, + 0.012343602254986763, + -0.027869924902915955, + 0.001085258205421269, + -0.031742703169584274, + 0.006425292231142521, + -0.019870875403285027, + 0.004006565548479557, + 0.017364131286740303, + 0.00479872478172183, + 0.03106672689318657, + -0.0032214478123933077, + -0.0299682654440403, + -0.011097271926701069, + -0.014258867129683495, + -0.0033393914345651865, + -0.021786140277981758, + -0.0072737825103104115, + -0.003114066319540143, + -0.020124366506934166, + 0.01353360153734684, + -0.021729810163378716, + 0.07396303117275238, + 0.03154554218053818, + -0.022800104692578316, + 0.013829341158270836, + 0.03371429815888405, + 0.006361919455230236, + 0.00013191653124522418, + 0.0008027214207686484, + 0.023363418877124786, + -0.021222827956080437, + 0.02080034278333187, + -0.0426146499812603, + -0.02225087396800518, + -0.029602112248539925, + 0.004238932393491268, + -0.003936151508241892, + -0.055035706609487534, + -0.02291276678442955, + 0.03754483163356781, + -0.019814545288681984, + 0.038755953311920166, + -0.03213702142238617, + -0.040614888072013855, + -0.03988258168101311, + -0.03996707871556282, + -0.018575254827737808, + -0.02489844709634781, + -0.041910506784915924, + -0.024053476750850677, + -0.04320612922310829, + -0.03672802448272705, + -0.037263173609972, + 0.004573399666696787, + -0.02011028304696083, + 0.007851178757846355, + -0.01287170872092247, + -0.00478464225307107, + 0.005738753825426102, + -0.02265927568078041, + -0.01718105562031269, + -0.002615886041894555, + 0.0240816418081522, + 0.008583486080169678, + 0.012153483927249908, + 0.0008599329157732427, + -0.0060098483227193356, + 0.004629731178283691, + 0.006875942461192608, + 0.07334338873624802, + 0.009872064925730228, + -0.03447477146983147, + -0.04751547425985336, + -0.018293598666787148, + -0.018702000379562378, + 0.008048338815569878, + -0.03627737611532211, + -0.029602112248539925, + -0.005425410810858011, + -0.020377857610583305, + 0.018547089770436287, + -0.018040107563138008, + 0.02510968968272209, + 0.021110165864229202, + 0.031179388985037804, + -0.03534790873527527, + 0.011146561242640018, + 0.0046578967012465, + -0.05145866796374321, + -0.007506149355322123, + -0.009865024127066135, + 0.026926374062895775, + -0.0045276302844285965, + -0.002339510479941964, + 0.01967371627688408, + -0.02140590362250805, + 0.007661060430109501, + 0.016631824895739555, + -0.030954064801335335, + 0.004826890770345926, + 0.03641820326447487, + 0.0021511525847017765, + -0.014329281635582447, + 0.02518010325729847, + 0.042220331728458405, + -0.02436329983174801, + 0.001834288821555674, + -0.004643813706934452, + 0.010019934736192226, + -0.016659989953041077, + 0.011674667708575726, + -0.014617979526519775, + -0.005552156362682581, + -0.03408045321702957, + -0.02508152276277542, + 0.006397126242518425, + -0.010991650633513927, + -0.012899873778223991, + 0.015547445975244045, + 0.05410623922944069, + -0.017955610528588295, + 0.00019374895782675594, + -0.022433951497077942, + 0.007956800051033497, + 0.00675975950434804, + 0.007858220487833023, + -0.007287865504622459, + 0.015744606032967567, + -0.0014109236653894186, + 0.017265552654862404, + 0.027686847373843193, + 0.029010633006691933, + 0.03731950372457504, + -0.03754483163356781, + -0.028869805857539177, + 0.03241867944598198, + 0.037122346460819244, + -0.0004352475225459784, + 0.022729691118001938, + -0.03965725377202034, + 0.03861512616276741, + 0.030616076663136482, + 0.0327848345041275, + -0.020194780081510544, + -0.04748731106519699, + -0.019096320495009422, + 0.007280824240297079, + 0.01278016995638609, + -0.0077033089473843575, + -0.022264957427978516, + -0.03943192958831787, + 0.02946128509938717, + -0.0254899263381958, + -0.027630515396595, + -0.027208032086491585, + -0.019504722207784653, + 0.03957275673747063, + -0.00027725574909709394, + -0.026672882959246635, + -0.012956205755472183, + 0.011554963886737823, + -0.011491591110825539, + 0.023771820589900017, + 0.02556033991277218, + 0.0020173657685518265, + 0.007886385545134544, + 0.011371886357665062, + 0.0030665367376059294, + -0.0006324071437120438, + 0.006590765435248613, + -0.0020684159826487303, + -0.0041121868416666985, + -0.021772058680653572, + 0.02946128509938717, + -0.0719914361834526, + 0.006002807058393955, + -0.026053238660097122, + 0.030221756547689438, + -0.03503808751702309, + 0.019251231104135513, + -0.0535147599875927, + 0.018082356080412865, + 0.006890025455504656, + 0.01261821761727333, + 0.010252301581203938, + -0.01998353935778141, + -0.011090230196714401, + -0.037150509655475616, + -0.009773485362529755, + 0.020659513771533966, + -0.0049712397158145905, + -0.01636425033211708, + -0.006337274331599474, + -0.009238338097929955, + -0.007935675792396069, + -0.0191667340695858, + -0.003177438862621784, + -0.02668696641921997, + -0.016406498849391937, + -0.01351951900869608, + -0.014294074848294258, + -0.0028552941512316465, + -0.05711996555328369, + -0.010160762816667557, + -0.015124961733818054, + 0.0392066054046154, + 0.005897185765206814, + 0.014132121577858925, + 0.007477983832359314, + 0.022518448531627655, + -0.027461521327495575, + 0.024757618084549904, + -0.03754483163356781, + -0.009428456425666809, + -0.008210291154682636, + -0.0048233699053525925, + -0.02156081609427929, + -0.005858458112925291, + 0.032841164618730545, + -0.01636425033211708, + 0.03250317648053169, + -0.015688274055719376, + -0.008329994976520538, + -0.004221328999847174, + -0.0160544291138649, + -0.006404167972505093, + -0.004999405238777399, + -0.027391107752919197, + 0.03379879519343376, + -0.0006821371498517692, + 0.009449579752981663, + -0.018589338287711143, + 0.0043339915573596954, + 0.04120636731386185, + -0.0012419297127053142, + 0.011745082214474678, + 0.0009435497340746224, + -0.012716797180473804, + 0.01844850927591324, + -0.004872659686952829, + -0.001643290393985808, + -0.017223304137587547, + -0.029151462018489838, + 0.0033675571903586388, + -0.009527035988867283, + -0.005823250859975815, + 0.02275785617530346, + -0.03478459641337395, + -0.007210409734398127, + 0.03377063199877739, + -0.012252063490450382, + -0.014786973595619202, + 0.013244903646409512, + 0.04064305126667023, + 0.03988258168101311, + -0.053711920976638794, + 0.024715369567275047, + 0.0035611961502581835, + -0.014998216181993484, + -0.018209101632237434, + 0.02080034278333187, + -0.023025430738925934, + 0.0361928790807724, + -0.018335847184062004, + 0.011625377461314201, + -0.035291578620672226, + 0.034981753677129745, + -0.01626567170023918, + 0.0017682756297290325, + -0.0027655160520225763, + -0.034728262573480606, + 0.0046015651896595955, + -0.0206735972315073, + -0.01620933972299099, + -0.00536555889993906, + -0.012674548663198948, + 0.002379998564720154, + 0.007992006838321686, + -0.008745438419282436, + -0.007492066361010075, + 0.004788162652403116, + -0.0396009236574173, + 0.023560578003525734, + -0.001836049254052341, + 0.017012061551213264, + 0.023504246026277542, + 0.00802721455693245, + 0.04512139409780502, + 0.01199153158813715, + 0.021011585369706154, + 0.004298784304410219, + -0.005274020601063967, + 0.007009729743003845, + -0.004323429428040981, + -0.00856236182153225, + -0.015040464699268341, + -0.022574778646230698, + -0.014477151446044445, + -0.01932164467871189, + 0.0017436306225135922, + -0.004950115457177162, + -0.03822080418467522, + -0.02278602123260498, + 0.0012340081157162786, + 0.0056190500035882, + 0.004446654114872217, + 0.046529676765203476, + 0.007147037424147129, + -0.0009699550573714077, + 0.0008128434419631958, + 0.0240816418081522, + 0.012899873778223991, + 0.019561054185032845, + 0.01489963661879301, + -0.016406498849391937, + -0.0019645551219582558, + 0.04661417379975319, + -0.011808454990386963, + 0.005133192054927349, + -0.009991769678890705, + 0.007717391941696405, + 0.016857149079442024, + 0.008498989045619965, + -0.024053476750850677, + 0.006699907127767801, + -0.029010633006691933, + 0.006442895624786615, + 0.005957037676125765, + -0.036080215126276016, + 0.02225087396800518, + -0.005869020242244005, + 0.010350881144404411, + 0.05655665323138237, + 0.009907272644340992, + -0.037122346460819244, + 0.021194662898778915, + -0.032306015491485596, + 0.06162647157907486, + 0.0005474701174534857, + 0.012808335945010185, + 0.022264957427978516, + 0.014815139584243298, + -0.015660108998417854, + -0.021884720772504807, + -0.0016274473164230585, + 0.003525989130139351, + -0.014955967664718628, + 0.011336679570376873, + -0.017955610528588295, + 0.01995537243783474, + -0.0034872612450271845, + -0.004605086054652929, + 0.03458743542432785, + -0.011942241340875626, + -0.029376788064837456, + -0.012752003967761993, + -0.009005971252918243, + 0.03802364692091942, + 0.03129205107688904, + -0.011019815690815449, + 0.029123296961188316, + 0.0028658562805503607, + 0.03850246220827103, + 0.0240816418081522, + 0.0175612922757864, + -0.011195851489901543, + 0.005865499377250671, + -0.005703547038137913, + 0.012068986892700195, + 0.007301948498934507, + -0.030982229858636856, + -0.012026738375425339, + -0.008914432488381863, + -0.021110165864229202, + -0.004960677586495876, + 0.03827713802456856, + 0.008224373683333397, + -0.0024292885791510344, + 0.025644836947321892, + -0.0012806574814021587, + 0.016195256263017654, + 0.017490876838564873, + -0.006647096481174231, + 0.005281061865389347, + 0.012406975030899048, + -0.011040939949452877, + -0.04137536138296127, + 0.020321525633335114, + -0.005210647825151682, + 0.020786259323358536, + 0.016251588240265846, + 0.021828388795256615, + -0.026320813223719597, + -0.010294550098478794, + 0.00155967369209975, + 0.013780050911009312, + -0.02778542786836624, + -0.021096082404255867, + 0.015815019607543945, + -0.007287865504622459, + -0.004728310741484165, + -0.011062064208090305, + -0.0018959012813866138, + -0.00303308991715312, + -0.006999167613685131, + -0.01844850927591324, + 0.0023430311121046543, + -0.014448985457420349, + 0.02033560909330845, + -0.012737921439111233, + 0.0028482526540756226, + 0.00016525323735550046, + -0.02681371197104454, + 0.01926531456410885, + -0.008463782258331776, + -0.018969574943184853, + -0.008759521879255772, + 0.013984251767396927, + -0.013336441479623318, + -0.011329637840390205, + 0.016251588240265846, + -0.010188928805291653, + -0.015885435044765472, + 0.006643576081842184, + -0.0038375717122107744, + 0.018392179161310196, + 0.030644241720438004, + 0.012787211686372757, + 0.024842115119099617, + 0.015913600102066994, + 0.01428703311830759, + -0.02153264917433262, + 0.015505198389291763, + -0.035291578620672226, + 0.006717510987073183, + -0.017983775585889816, + 0.02725028060376644, + 0.0040382519364356995, + -0.02423655427992344, + -0.049740564078092575, + 0.009752361103892326, + 0.017645789310336113, + -0.009034136310219765, + -0.007400528062134981, + 0.0002493101346772164, + 0.05123334378004074, + -0.007611770648509264, + 0.02737702615559101, + 0.0025085045490413904, + -0.017702119424939156, + -0.005883103236556053, + -0.015815019607543945, + -0.015660108998417854, + 0.028123416006565094, + -0.025546256452798843, + 0.0067351143807172775, + -0.01620933972299099, + 0.007837096229195595, + -0.02202554978430271, + 0.009470704011619091, + 0.01901182346045971, + 0.015716440975666046, + -0.01213235966861248, + -0.0006614529993385077, + 0.029123296961188316, + 0.03912210837006569, + -0.002464495599269867, + 0.030616076663136482, + 0.004626210313290358, + -0.01812460459768772, + -0.012322477996349335, + 0.0038551753386855125, + 0.0033517139963805676, + -0.009449579752981663, + 0.028714893385767937, + -0.006544996052980423, + 0.008822894655168056, + -0.004767038393765688, + 0.021603064611554146, + -0.02202554978430271, + -0.016406498849391937, + -0.027517853304743767, + 0.009020053781569004, + 0.03540423884987831, + -0.003401004010811448, + 0.011336679570376873, + 0.01939206011593342, + 0.04292447119951248, + 0.026954540982842445, + -0.019434308633208275, + 0.008175084367394447, + 0.006175321992486715, + -0.027306610718369484, + -0.032869331538677216, + 0.0007758760475553572, + -0.00605913856998086, + -0.033066488802433014, + 0.018702000379562378, + 0.0011178248096257448, + 0.03132021799683571, + -0.025278683751821518, + 0.04041772708296776, + -0.013273068703711033, + -0.033376310020685196, + -0.005161358043551445, + 0.004101624712347984, + -0.006851297803223133, + -0.006368960719555616, + 0.0013493113219738007, + 0.020321525633335114, + 0.0019311083015054464, + -0.005235292948782444, + -0.037150509655475616, + 0.004812807776033878, + 0.022391702979803085, + 0.024123890325427055, + -0.0031492733396589756, + 0.03695335239171982, + 0.026996789500117302, + 0.01516721025109291, + -0.004288222175091505, + 0.020025787875056267, + 0.0048832218162715435, + 0.0015719961374998093, + 0.005974641535431147, + -0.005823250859975815, + 0.011632419191300869, + -0.023081760853528976, + 0.03109489195048809, + -0.033883292227983475, + 0.01414620503783226, + 0.0055944048799574375, + 0.030897732824087143, + 0.03653086721897125, + 0.012061945162713528, + 0.006087304092943668, + 0.005953517276793718, + -0.005573280621320009, + 0.02470128796994686, + -0.015040464699268341, + 0.0036967433989048004, + 0.03475642949342728, + -0.003381639951840043, + 0.05126150697469711, + 0.021856555715203285, + 0.008210291154682636, + 0.00802721455693245, + -0.01059028971940279, + 0.005869020242244005, + -0.01147046685218811, + 0.004045293666422367, + -0.010745200328528881, + -0.034700099378824234, + -0.032052524387836456, + 0.0015068630455061793, + -0.01636425033211708, + -0.02760235033929348, + -0.016913481056690216, + -0.013934962451457977, + -0.010878987610340118, + 0.009090468287467957, + 0.022673359140753746, + 0.002751433290541172, + 0.03675619140267372, + 0.031151223927736282, + 0.01725146919488907, + -0.016561409458518028, + 0.01715288870036602, + 0.027968503534793854, + -0.010026976466178894, + 0.01187886856496334, + -0.00879472866654396, + 0.0217438917607069, + 0.012604134157299995, + -0.025377262383699417, + 0.017871113494038582, + -0.026264481246471405, + -0.029348621144890785, + -0.02080034278333187, + 0.008724314160645008, + -0.014364488422870636, + -0.016857149079442024, + -0.0036509742494672537, + -0.02640531025826931, + 0.005009967368096113, + -0.02087075635790825, + 0.0020103242713958025, + -0.012928039766848087, + 0.04467074200510979, + -0.005559198092669249, + 0.001366914832033217, + -0.004805766511708498, + -0.001379237393848598, + -0.008618692867457867, + -0.02291276678442955, + -0.009210172109305859, + 0.03557323291897774, + 0.03346080705523491, + 0.0008198848809115589, + -0.05233180522918701, + 0.008259580470621586, + 0.024757618084549904, + 0.0016133644385263324, + -0.0456283763051033, + -0.012970288284122944, + -0.003327069105580449, + -0.015730522572994232, + -0.032587673515081406, + 0.0010465304367244244, + -0.012913957238197327, + -0.024912530556321144, + -0.010991650633513927, + -0.020152531564235687, + 0.006133073475211859, + 0.013125198893249035, + 0.010364964604377747, + -0.015026381239295006, + -0.03884045034646988, + -0.000359332247171551, + 0.0025894807185977697, + -0.044360920786857605, + 0.025475842878222466, + 0.01844850927591324, + 0.007492066361010075, + 0.053204938769340515, + 0.031770870089530945, + 0.004967718850821257, + -0.025475842878222466, + -0.013540643267333508, + 0.06140114739537239, + -0.0007032614084891975, + 0.010773366317152977, + -0.0060978662222623825, + -0.024335132911801338, + 0.01278016995638609, + 0.006291504949331284, + -0.008231415413320065, + 0.009041178040206432, + 0.023743655532598495, + -0.006816090550273657, + -0.0022902204655110836, + -0.012737921439111233, + 0.008161000907421112, + 0.00868910737335682, + 0.036305539309978485, + -0.0024292885791510344, + -0.0032179271802306175, + 0.012202774174511433, + 0.001442610053345561, + 0.02510968968272209, + 0.006316150072962046, + -0.00522473081946373, + -0.011843661777675152, + -0.017138807103037834, + -0.004207246005535126, + 0.008590527810156345, + 0.008125794120132923, + 0.0197018813341856, + -0.008949639275670052, + -0.01618117466568947, + -0.0071047889068722725, + 0.006932273972779512, + 0.03267217054963112, + 0.021377738565206528, + -0.005650736391544342, + 0.009294669143855572, + 0.010519875213503838, + -0.008301828987896442, + -0.011216975748538971, + 0.015096795745193958, + 0.036361873149871826, + -0.007118871435523033, + 0.005921830888837576, + 0.008611652068793774, + 0.0005760758649557829, + -0.0027091847732663155, + -0.002888740971684456, + 0.003309465479105711, + 0.006302067078649998, + -0.03805181011557579, + 0.01172395795583725, + -0.035009920597076416, + 0.04179784655570984, + -0.026348978281021118, + -0.013054785318672657, + 0.006154197733849287, + -0.01580093801021576, + 0.007541356608271599, + 0.027489688247442245, + -0.003158075036481023, + -0.008414492011070251, + 0.0064675407484173775, + -0.006703427992761135, + -0.002526107942685485, + -0.007562480866909027, + 0.0449524000287056, + 0.018293598666787148, + -0.026602469384670258, + -0.024349216371774673, + -0.013773009181022644, + 0.026546137407422066, + -0.010893070138990879, + -0.007661060430109501, + 0.009287627413868904, + 0.0014452505856752396, + -0.00956928450614214, + -0.037432167679071426, + 0.009766443632543087, + 0.012484430335462093, + 0.031207555904984474, + 0.0054606180638074875, + -0.032587673515081406, + -0.04422009363770485, + -0.00606617983430624, + -0.01913856901228428, + -0.018011942505836487, + -0.02703903801739216, + -0.026447558775544167, + 0.04441725090146065, + 0.004422008991241455, + 0.02222270891070366, + 0.012378809042274952, + -0.017504960298538208, + 0.01995537243783474, + 0.004048814065754414, + -0.024588624015450478, + -0.005274020601063967, + -0.010210053063929081, + 0.0054747010581195354, + 0.00703437440097332, + 0.02584199607372284, + -0.0022198064252734184, + -0.02237761951982975, + -0.02127915993332863, + 0.010822656564414501, + 0.012857625260949135, + -0.017758451402187347, + 0.004520589020103216, + -0.004161476623266935, + -0.0024856198579072952, + 0.022448034957051277, + 0.017068391665816307, + 0.004900825675576925, + 0.003721388289704919, + 0.014674310572445393, + -0.015617860481142998, + -0.014258867129683495, + -0.00844969879835844, + -0.0005553916562348604, + 7.872082642279565e-5, + -0.033883292227983475, + -0.006932273972779512, + -0.0706394836306572, + -0.024123890325427055, + 0.005513428710401058, + 0.048388611525297165, + 0.008069463074207306, + -0.025419510900974274, + -0.0005223850603215396, + 0.01649099588394165, + -0.0016591335879638791, + 0.00997768621891737, + -0.012054904364049435, + -0.0445580817759037, + -0.007097747176885605, + 0.033066488802433014, + 0.006087304092943668, + 0.0052388133481144905, + -0.008822894655168056, + -0.013871589675545692, + 0.018082356080412865, + -0.025151938199996948, + -0.006432333495467901, + -0.015660108998417854, + 0.03053157962858677, + 0.005457097198814154, + -0.013470228761434555, + 0.04022056609392166, + -0.023250754922628403, + 0.02222270891070366, + -0.02867264486849308, + -0.0065872445702552795, + 0.019490638747811317, + -0.011301472783088684, + -0.00470366608351469, + -0.0018747770227491856, + -0.003668577643111348, + 0.008590527810156345, + -0.003879820229485631, + 0.008118752390146255, + 0.0481632836163044, + 0.016434665769338608, + 0.022264957427978516, + -0.010949402116239071, + -0.014674310572445393, + -0.018617503345012665, + 0.018434427678585052, + -0.011998572386801243, + 0.03081323578953743, + -0.014603896997869015, + -0.00944253895431757, + 0.015448866412043571, + 0.024602707475423813, + 0.0008660941384732723, + 0.027151700109243393, + -0.020377857610583305, + 0.0004849775286857039, + -0.0036439327523112297, + 0.003918548114597797, + -0.016378333792090416, + 0.011625377461314201, + 0.011554963886737823, + 0.06066884100437164, + 0.0017128244508057833, + -0.010019934736192226, + -0.03453110530972481, + -0.00470366608351469, + 0.022208625450730324, + -0.0003478899598121643, + 0.018237266689538956, + 0.011181768961250782, + 0.007316031027585268, + 0.015209458768367767, + -0.02341974899172783, + -0.0026387707330286503, + 0.02895430289208889, + -0.005999286193400621, + 0.0031827199272811413, + 0.004992363974452019, + -0.0016591335879638791, + 0.005731712561100721, + -0.0008586126496084034, + -0.003325308673083782, + 0.015350286848843098, + 0.0003731950419023633, + -0.010611413978040218, + -0.001796441269107163, + -0.008351119235157967, + 0.008013131096959114, + -0.013463187031447887, + 0.028897970914840698, + 0.02832057513296604, + 0.009548160247504711, + 0.011780289001762867, + 0.022673359140753746, + 0.03351714089512825, + -0.010414253920316696, + 0.04137536138296127, + -0.006928753107786179, + -0.010174846276640892, + -0.0033006637822836637, + 0.005809168331325054, + 0.0037777195684611797, + -0.005569760221987963, + 0.012315436266362667, + -0.025137854740023613, + 0.003360515693202615, + 0.007675143424421549, + 0.0020930608734488487, + 0.020575016736984253, + -0.00856236182153225, + -0.017040226608514786, + -0.007632894907146692, + 0.011970407329499722, + -0.02650388889014721, + 0.016322001814842224, + -0.01768803596496582, + 0.018856912851333618, + 0.008801770396530628, + -0.01618117466568947, + -0.012484430335462093, + -0.009900230914354324, + -0.016603657975792885, + 0.024940695613622665, + -0.017490876838564873, + -0.039009444415569305, + -0.0037249091546982527, + -0.0027232675347477198, + 0.013667388819158077, + -0.03357347100973129, + 0.015082713216543198, + 0.03458743542432785, + 0.007928634062409401, + 0.014174370095133781, + 0.0030084450263530016, + 0.00605913856998086, + -0.002821847330778837, + 0.01151975616812706, + 0.01595584861934185, + 0.011984489858150482, + 0.019223066046833992, + -0.023926731199026108, + 0.02140590362250805, + -0.0037037848960608244, + -0.0011706354562193155, + 0.007942717522382736, + 0.0009391488274559379, + -0.012343602254986763, + -0.0017577135004103184, + 0.005094464402645826, + -0.023560578003525734, + -0.01715288870036602, + -0.0072385757230222225, + 0.017617622390389442, + 0.02979927323758602, + -0.013977210968732834, + -0.006101387087255716, + -0.010224135592579842, + -0.021222827956080437, + 0.013632181100547314, + 0.0005589124048128724, + -0.016350168734788895, + 0.0024257677141577005, + -0.0135476840659976, + 0.005457097198814154, + -0.011780289001762867, + 0.02171572670340538, + -0.022448034957051277, + -0.017800699919462204, + -0.0003003604069817811, + -0.015110878273844719, + -0.011097271926701069, + -0.0006614529993385077, + 0.0019522325601428747, + 0.0018149249954149127, + -0.014125080779194832, + 0.0025595547631382942, + -0.015040464699268341, + 0.0056683397851884365, + -0.024377381429076195, + 0.01746271178126335, + 0.007217451464384794, + -0.002339510479941964, + 0.014617979526519775, + -0.0021634751465171576, + 0.027053119614720345, + 0.01099869143217802, + -0.002534909639507532, + 0.016420582309365273, + -0.0013651545159518719, + -0.015744606032967567, + -0.0034309299662709236, + 0.03762932866811752, + 0.037150509655475616, + -0.018955491483211517, + -0.005133192054927349, + 0.0037601161748170853, + 0.002383519196882844, + 0.015744606032967567, + 0.009358041919767857, + -0.02265927568078041, + -0.008477864786982536, + -0.024039393290877342, + -0.0013114637695252895, + 0.026419391855597496, + 0.0027989628724753857, + -0.009970645420253277, + 0.006273901555687189, + -0.030080929398536682, + 0.027517853304743767, + 0.016167091205716133, + 0.004214287269860506, + -0.00233246898278594, + 0.010555082932114601, + 0.017730284482240677, + -0.0101185142993927, + 0.013639222830533981, + -0.0022338891867548227, + 0.008273663930594921, + -0.012252063490450382, + -0.001899421913549304, + -0.026292646303772926, + 0.01414620503783226, + 0.011428218334913254, + 0.02974294126033783, + -0.046811334788799286, + 0.002119466196745634, + 0.007590646389871836, + -0.007604729384183884, + -0.027869924902915955, + -0.01878649741411209, + 0.011301472783088684, + -0.007787805981934071, + -0.01620933972299099, + -0.006763279903680086, + 0.002628208603709936, + 0.017082475125789642, + 0.003541832324117422, + 0.020321525633335114, + -0.023391583934426308, + 0.0201384499669075, + -0.007759640458971262, + -0.035009920597076416, + -0.022321289405226707, + -0.021729810163378716, + 0.013033661060035229, + 0.01489963661879301, + 0.026701049879193306, + -0.02288460172712803, + -0.012991412542760372, + 0.01753312535583973, + 0.01592768356204033, + 0.004636772442609072, + 0.001968075754120946, + -0.02778542786836624, + 0.01211827713996172, + 0.00324961356818676, + 0.00447834050282836, + -0.004939553327858448, + -0.008280704729259014, + 0.012343602254986763, + -0.0010306872427463531, + 0.01313928235322237, + 0.005126150790601969, + 0.02253253199160099, + -0.017420463263988495, + 0.015378452837467194, + -0.0327848345041275, + 0.000657052150927484, + 0.013449104502797127, + 0.02801075205206871, + -0.0032056046184152365, + 0.018941408023238182, + -0.009146799333393574, + -0.02278602123260498, + -0.02165939472615719, + 0.01796969398856163, + 0.02832057513296604, + -0.01059028971940279, + 0.0014030021848157048, + 0.012730879709124565, + 0.004928991198539734, + -0.01911040209233761, + 0.0019451911794021726, + -0.010435378178954124, + 0.02130732499063015, + 0.0013484311057254672, + 0.00778076471760869, + 0.007851178757846355, + 0.0001238849072251469, + 0.016420582309365273, + -0.007872303016483784, + 0.015195375308394432, + 0.012357684783637524, + 0.03241867944598198, + -0.020166615024209023, + 0.01674448698759079, + 0.007858220487833023, + 0.008210291154682636, + -0.010315674357116222, + 0.01032271608710289, + 0.024180222302675247, + 0.03033442050218582, + 0.0058760615065693855, + -0.012174608185887337, + -0.013977210968732834, + -0.011083188466727734, + -0.00014225860650185496, + 0.012442181818187237, + 0.008407450281083584, + 0.0050310916267335415, + -0.012935081496834755, + -0.012421057559549809, + -0.007125913165509701, + -0.03484092652797699, + -0.015322120860219002, + -0.0052388133481144905, + -0.002818326698616147, + -0.006284463685005903, + 0.02153264917433262, + -0.004671979695558548, + -0.027813592925667763, + 0.006886504590511322, + -0.0011151842772960663, + -0.0038375717122107744, + -0.016843067482113838, + -0.027658682316541672, + -0.007513190619647503, + 0.0006794966175220907, + 0.009914313443005085, + 0.02948945015668869, + 0.0024222470819950104, + -0.043882105499506, + 0.004059376195073128, + -0.005861978977918625, + 0.002733829664066434, + 0.027841757982969284, + -0.010470585897564888, + -0.013956086710095406, + 0.01680081896483898, + 0.002098341938108206, + 0.0008955801022239029, + 0.005196564830839634, + 0.018870994448661804, + -0.029827438294887543, + -0.009259462356567383, + 0.021603064611554146, + 0.007710350677371025, + 0.002191640669479966, + 0.020420106127858162, + 0.038981277495622635, + -0.018406260758638382, + 0.015181292779743671, + 0.014279991388320923, + 0.0063654398545622826, + -0.006953398231416941, + 0.015336204320192337, + 0.037432167679071426, + -0.004633251577615738, + 0.019884958863258362, + -0.03264400362968445, + -0.020420106127858162, + -0.0023817589972168207, + -0.01414620503783226, + -0.002892261603847146, + 0.0015376692172139883, + 0.006016890052706003, + 0.0042847017757594585, + 0.013089992105960846, + -0.03329181298613548, + -0.024813950061798096, + -0.007002688013017178, + 0.0025736375246196985, + 0.001411803881637752, + 0.0033869210164994, + -0.015815019607543945, + -0.005921830888837576, + 0.026391226798295975, + -0.00548526318743825, + 0.004323429428040981, + -0.01261821761727333, + -0.0009629136184230447, + -4.1148276068270206e-5, + 0.014209577813744545, + -0.02143407054245472, + -0.00716816121712327, + -0.00422484939917922, + 0.003981920890510082, + 0.006287984549999237, + 0.012076028622686863, + 0.01633608527481556, + -0.030756905674934387, + -0.010315674357116222, + 0.0004202845157124102, + -0.006974522490054369, + 0.007266741245985031, + -0.013111116364598274, + 0.0049254703335464, + -0.023109927773475647, + 0.008386326022446156, + -0.03053157962858677, + 0.004717748612165451, + -0.010653662495315075, + 0.025532174855470657, + 0.007766681723296642, + 0.007231533993035555, + -0.0041720387525856495, + 0.037685658782720566, + -0.0031475129071623087, + 0.024377381429076195, + 0.013526559807360172, + -0.022293122485280037, + -0.02212412841618061, + 0.020194780081510544, + 0.009020053781569004, + -0.012843542732298374, + -0.00949182827025652, + -0.0043199085630476475, + 0.015406617894768715, + 0.015378452837467194, + -0.009104550816118717, + 0.012716797180473804, + -0.015533363446593285, + 0.014744725078344345, + -0.027461521327495575, + -0.02457454241812229, + -0.018364012241363525, + 0.01626567170023918, + -0.011033899150788784, + 0.0015940004959702492, + -0.008498989045619965, + 0.02625039778649807, + 0.021476319059729576, + 0.009688988327980042, + 0.013336441479623318, + -0.013385731726884842, + 0.07249841839075089, + -0.03957275673747063, + 0.014265908859670162, + -0.024053476750850677, + 0.010364964604377747, + -0.012892832979559898, + -0.0054606180638074875, + -0.01718105562031269, + 0.005221209954470396, + -0.029573947191238403, + -0.0374603345990181, + -0.021321408450603485, + -0.002189880469813943, + -0.02737702615559101, + 0.026475723832845688, + 0.0434877835214138, + -0.0026370103005319834, + -0.021645313128829002, + 0.021518567577004433, + -0.017828864976763725, + 0.012505554594099522, + 0.014265908859670162, + -0.01649099588394165, + -0.0027232675347477198, + -0.027940338477492332, + 0.02971477620303631, + 0.01261821761727333, + -0.01200561411678791, + 0.0022866998333483934, + 0.01173804048448801, + -0.003031329484656453, + 0.0003177438920829445, + 0.027362942695617676, + -0.04912091791629791, + -0.010801532305777073, + 0.009034136310219765, + -0.003738991916179657, + -0.017673954367637634, + -0.010146680288016796, + 0.0006359278922900558, + 0.011892951093614101, + -0.021631229668855667, + 0.004510026890784502, + -0.0067351143807172775, + 0.021617146208882332, + -0.012829460203647614, + 0.019969455897808075, + -0.006221090909093618, + -0.022983182221651077, + 0.014047624543309212, + -0.0087806461378932, + -0.016378333792090416, + 0.007280824240297079, + -0.005995765794068575, + -0.005745795555412769, + 0.006217570509761572, + 0.0005879582604393363, + 0.0030753384344279766, + 0.0018606941448524594, + -0.009252420626580715, + 0.01860342174768448, + -0.010907153598964214, + -0.017885196954011917, + 3.5674675018526614e-5, + 0.02426471933722496, + -0.005362038034945726, + -0.009900230914354324, + -0.033404476940631866, + -0.0404740571975708, + 0.0049571567215025425, + -0.0075554391369223595, + -0.008597568608820438, + -0.006449936889111996, + 0.018645670264959335, + -0.008893308229744434, + -0.005562718492001295, + -0.0005593524547293782, + 0.01213235966861248, + -0.004242453258484602, + -0.004231891129165888, + -0.017012061551213264, + -0.009287627413868904, + 0.024067560210824013, + 0.0012058424763381481, + 0.015716440975666046, + -0.004474819637835026, + 0.00716816121712327, + -0.006270380690693855, + -0.002117705764248967, + 0.006312629207968712, + 0.014660228043794632, + 0.010259343311190605, + -0.002543711569160223, + 0.017166972160339355, + -0.016857149079442024, + -0.0013889193069189787, + 0.0037671574391424656, + -0.00013796774146612734, + -0.008696149103343487, + 0.010942360386252403, + 0.0034837406128644943, + 0.008407450281083584, + -0.0010931798024103045, + -0.009055260568857193, + 0.01881466433405876, + -0.016674073413014412, + -0.029264124110341072, + 0.01702614314854145, + -0.0067351143807172775, + -0.0014285272918641567, + -0.0013114637695252895, + 0.07193510234355927, + 0.01304774358868599, + 0.0014417299535125494, + -0.0038410923443734646, + -0.0015024620806798339, + -0.020687680691480637, + -0.009182006120681763, + 0.01980046182870865, + 0.016843067482113838, + -0.011808454990386963, + -0.0059640794061124325, + -0.008808811195194721, + 0.005559198092669249, + 0.015617860481142998, + -0.024954779073596, + 0.0037037848960608244, + 0.006052096839994192, + 0.01718105562031269, + 0.01441377867013216, + 0.022743772715330124, + 0.03193986415863037, + -0.008118752390146255, + -0.007400528062134981, + 0.011259224265813828, + -0.006643576081842184, + -0.003654494881629944, + -0.009773485362529755, + -0.011174727231264114, + 0.011949283070862293, + 0.026729214936494827, + 0.019124485552310944, + 0.007513190619647503, + -0.01794152706861496, + -0.007632894907146692, + -0.013843423686921597, + 0.010076265782117844, + 0.01458981353789568, + 0.017490876838564873, + -0.020025787875056267, + 0.0171247236430645, + -0.009921355172991753, + -0.02020886354148388, + 0.023842234164476395, + 0.030109094455838203, + -0.01674448698759079, + -0.009203130379319191, + -0.005481742322444916, + -0.012568927370011806, + -0.003531270194798708, + 0.009372124448418617, + -0.018406260758638382, + -0.024743536487221718, + 0.009160881862044334, + 0.0063196709379553795, + -0.0007815971621312201, + -0.014047624543309212, + 0.0011037419317290187, + -0.022011466324329376, + 0.009005971252918243, + 0.004443133249878883, + -0.00997768621891737, + -0.01973004825413227, + -0.013822299428284168, + -0.009879106655716896, + -0.011745082214474678, + -0.012942122295498848, + -0.013357565738260746, + -0.013822299428284168, + 0.0012683350360020995, + -0.019462473690509796, + 0.0020279278978705406, + -0.009470704011619091, + 0.007147037424147129, + -0.01784294843673706, + 0.004055855795741081, + 0.001623046351596713, + 0.015336204320192337, + 0.024588624015450478, + 0.017420463263988495, + 0.014040583744645119, + 0.003390441881492734, + 0.000953231705352664, + 0.009484787471592426, + -0.01187886856496334, + -0.005812688730657101, + -0.0026422913651913404, + 0.018335847184062004, + -0.026320813223719597, + 0.00818212516605854, + -0.010808573104441166, + -0.0098509406670928, + -0.0029309894889593124, + 0.006668220739811659, + 0.01737821474671364, + 0.001518305274657905, + -0.00021289281721692532, + -0.003996003419160843, + -0.027433356270194054, + -0.018490757793188095, + -0.003466136986389756, + 0.03458743542432785, + -0.009069344028830528, + -0.008139876648783684, + 0.008724314160645008, + -0.005150795914232731, + 0.01705431006848812, + 0.03616471216082573, + -0.013639222830533981, + -0.03610838204622269, + -0.013794133439660072, + 0.0015587934758514166, + -0.006703427992761135, + -0.015012298710644245, + 0.01651916094124317, + -0.017828864976763725, + 0.024321051314473152, + 0.010759283788502216, + 0.01164650171995163, + -0.010287508368492126, + -0.014505316503345966, + -0.029038799926638603, + 0.002473297296091914, + -0.0017128244508057833, + -0.010674786753952503, + -0.00025811188970692456, + 0.006055617704987526, + -0.027715012431144714, + -0.00813283585011959, + -0.0049219499342143536, + 0.0023694364354014397, + 0.006488665007054806, + 0.006830173544585705, + 0.014047624543309212, + -0.01589951664209366, + -0.008639817126095295, + 0.002881699474528432, + 0.013998335227370262, + 0.029602112248539925, + 0.00918904785066843, + -0.01529395580291748, + 0.018997740000486374, + 0.006784404162317514, + -0.013350524939596653, + 0.02118057943880558, + -0.011294431053102016, + 0.021701643243432045, + 0.004161476623266935, + -0.011350762099027634, + 0.011533839628100395, + 0.0010694150114431977, + 0.024602707475423813, + -0.05126150697469711, + 0.025292765349149704, + -0.01806827262043953, + 0.01134372130036354, + 0.014167329296469688, + -0.018110521137714386, + 0.025982825085520744, + -0.013202655129134655, + 0.003675619140267372, + 0.015336204320192337, + 0.013857506215572357, + -0.008724314160645008, + 0.010188928805291653, + -0.003117586951702833, + 0.0018166853114962578, + 0.012752003967761993, + 0.015350286848843098, + 0.009815733879804611, + -2.822067472152412e-5, + -0.015519280917942524, + 0.0077033089473843575, + 0.01137892808765173, + -0.035291578620672226, + -0.014603896997869015, + 0.002513785380870104, + -0.00351366656832397, + 0.016702238470315933, + -0.004231891129165888, + 0.0363900363445282, + 0.006787925027310848, + -0.002814806066453457, + 0.005770440213382244, + -0.010702951811254025, + 0.0180964395403862, + -0.02187063731253147, + 0.008217332884669304, + -0.0181950181722641, + -0.006847776938229799, + -0.01287170872092247, + -0.011540880426764488, + 0.022194543853402138, + -0.005467659328132868, + 0.0043903230689466, + -0.0028429715894162655, + -0.023025430738925934, + 0.011216975748538971, + 0.028897970914840698, + 0.006837214808911085, + 0.003547113388776779, + 0.0005932392668910325, + 0.00852715503424406, + 0.01238585077226162, + 0.003575278911739588, + -0.0019363893661648035, + -0.009245378896594048, + -0.00997768621891737, + -0.013871589675545692, + -0.0020789781119674444, + -0.010646620765328407, + -0.025151938199996948, + -0.013681471347808838, + 0.005024050362408161, + -0.0018149249954149127, + -0.017490876838564873, + 0.022729691118001938, + 0.007569522131234407, + 0.012287271209061146, + 0.001406522816978395, + -0.0036192878615111113, + -0.00129650067538023, + 0.000559792562853545, + -0.020025787875056267, + -0.008907390758395195, + -0.002253253012895584, + -0.0112381000071764, + -0.01199153158813715, + 0.007252658251672983, + 0.031263887882232666, + 0.002487380290403962, + 0.030193591490387917, + 0.004312867298722267, + -0.027954421937465668, + 0.025264600291848183, + 0.010815614834427834, + 0.02829241007566452, + 0.003922068513929844, + 0.004587482661008835, + 0.015843186527490616, + -0.0015341484686359763, + -0.014082832261919975, + 0.02212412841618061, + -0.0026387707330286503, + -0.0039009444881230593, + 0.001983918948099017, + -0.008597568608820438, + 0.009386207908391953, + -0.0023025430273264647, + -0.01577277109026909, + -3.0146062272251584e-5, + -0.004795204382389784, + -0.0011415896005928516, + -0.023645075038075447, + 0.02196921780705452, + 0.02457454241812229, + 0.00865390058606863, + -0.003177438862621784, + 0.011752123013138771, + -0.004548754543066025, + -0.020532768219709396, + -0.005235292948782444, + -0.01932164467871189, + -0.004840973298996687, + 0.0017128244508057833, + -0.012287271209061146, + 0.011118396185338497, + -0.013075909577310085, + 0.014857388101518154, + -0.004309346433728933, + 0.0029468326829373837, + 0.01878649741411209, + -0.0017744367942214012, + -0.00098931894171983, + -0.004200204741209745, + -0.014603896997869015, + 0.002594761783257127, + 0.02256069704890251, + 0.0009285867563448846, + -0.007492066361010075, + -0.01344206277281046, + 0.0038516544736921787, + 0.014857388101518154, + 0.0013915598392486572, + -0.018011942505836487, + 0.0006434093811549246, + -0.02008211798965931, + 0.002101862570270896, + 0.01326602790504694, + -0.01037200540304184, + 0.014448985457420349, + 0.0016802578466013074, + -0.013998335227370262, + -0.012167566455900669, + 0.0030647763051092625, + -0.0024328092113137245, + 0.0031598354689776897, + -0.00922425463795662, + -0.009611533023416996, + 0.02816566452383995, + 0.0031351903453469276, + -0.00047221494605764747, + -0.005344434641301632, + -0.007984966039657593, + -0.004911387804895639, + 0.006516830530017614, + 0.0008537716930732131, + 0.024194305762648582, + 0.021504484117031097, + -0.0191667340695858, + 0.0018096439307555556, + -0.015110878273844719, + -0.008977805264294147, + -0.002063134917989373, + -0.005270499736070633, + -0.005245855078101158, + -0.012723838910460472, + 0.0026563741266727448, + 0.035460568964481354, + 0.008808811195194721, + 0.0008542118011973798, + -0.012611175887286663, + -0.006668220739811659, + -0.001440849737264216, + 0.0009030615910887718, + -0.0019152651075273752, + 0.003587601473554969, + 0.0036509742494672537, + 0.0003241251688450575, + 0.013350524939596653, + -0.010611413978040218, + 0.021645313128829002, + -0.012625258415937424, + -0.01577277109026909, + -0.0024451317731291056, + -0.01235064398497343, + 0.007351238280534744, + -0.003541832324117422, + -0.02133549004793167, + -0.008717273361980915, + 0.003996003419160843, + -0.017448628321290016, + -0.00729490676894784, + 0.002103623002767563, + -0.0017101839184761047, + -0.0008031615288928151, + 0.00816804263740778, + -0.004622689448297024, + 0.014603896997869015, + 0.00659428583458066, + 0.010224135592579842, + -0.013632181100547314, + -0.011033899150788784, + 0.018547089770436287, + -0.016814900562167168, + -0.008984846994280815, + 1.6888396203285083e-5, + 0.004270618781447411, + 0.019152650609612465, + 0.004249494522809982, + -0.00041786403744481504, + -0.003967837896198034, + 0.017166972160339355, + -0.004330470692366362, + -0.012160525657236576, + -0.01623750478029251, + 0.008421533741056919, + 0.007625853642821312, + 0.00034150868305005133, + -0.010273425839841366, + -0.0031158265192061663, + -0.0031246282160282135, + 0.0008718153112567961, + -0.029940100386738777, + -0.012808335945010185, + -0.021926969289779663, + 0.017392298206686974, + 0.01214644219726324, + 0.0049219499342143536, + -0.003406285075470805, + -0.005150795914232731, + 0.0071047889068722725, + -0.00729490676894784, + 0.0009567523957230151, + -0.0026405309326946735, + 0.020842591300606728, + -0.005323310382664204, + 0.007171682082116604, + 0.03216518834233284, + -0.007759640458971262, + -0.004126269835978746, + -0.008682065643370152, + 0.0027919213753193617, + 0.021011585369706154, + -0.010048100724816322, + -0.007956800051033497, + -0.0007793967379257083, + -0.01405466627329588, + 0.01674448698759079, + 0.008731355890631676, + -0.0025824392214417458, + 0.004671979695558548, + -0.02467312105000019, + 0.001966315321624279, + 0.011357803829014301, + 0.011752123013138771, + -0.02609548717737198, + 0.005604967009276152, + 0.002758474787697196, + 0.019377976655960083, + -0.010146680288016796, + -0.007590646389871836, + -0.0009444298921152949, + -0.004943074192851782, + -0.0013519518543034792, + 0.014251826331019402, + -0.005717629566788673, + 0.006492185406386852, + 0.020687680691480637, + -0.00032346503576263785, + -0.003031329484656453, + 0.017364131286740303, + 0.009034136310219765, + 0.00694635696709156, + 0.01564602553844452, + -0.012787211686372757, + -0.01618117466568947, + 0.023771820589900017, + -0.013667388819158077, + 8.136135875247419e-5, + 0.023814069107174873, + -0.007308989763259888, + -0.020941171795129776, + -0.015068629756569862, + 0.014491233974695206, + -0.005636653397232294, + -0.008872183971107006, + 0.02974294126033783, + -0.007858220487833023, + -0.0008405690314248204, + 0.011970407329499722, + -0.015547445975244045, + -0.0012322477996349335, + -0.014547565020620823, + 0.012878749519586563, + 0.01623750478029251, + -0.0008352879667654634, + -0.010034018196165562, + 0.021603064611554146, + -0.0010826176730915904, + -0.03185536712408066, + -0.008914432488381863, + 0.0008458500960841775, + 0.0020772176794707775, + -0.0025894807185977697, + -0.010062183253467083, + -0.006270380690693855, + -0.0008687346708029509, + -0.024405548349022865, + 0.021419987082481384, + -0.031038561835885048, + 0.003907985985279083, + 0.0011759165208786726, + 0.009527035988867283, + -0.028869805857539177, + 0.0027848801109939814, + 0.012421057559549809, + 0.016758570447564125, + 0.02974294126033783, + -0.011188809759914875, + 0.010921236127614975, + -0.0010051621356979012, + 0.036361873149871826, + 0.024152057245373726, + -0.013125198893249035, + 0.0027127054054290056, + 0.03374246507883072, + 5.660638271365315e-5, + 0.011625377461314201, + 0.00992839690297842, + -0.010533958673477173, + 0.0013625139836221933, + 0.012357684783637524, + -0.008745438419282436, + -0.008287746459245682, + 0.012505554594099522, + 0.014547565020620823, + 0.02439146488904953, + 0.019744129851460457, + 0.008766562677919865, + -0.009280586615204811, + -0.005270499736070633, + 0.013956086710095406, + -0.014688394032418728, + 0.007097747176885605, + 0.0014654947444796562, + -0.008020172826945782, + 0.013906796462833881, + 0.017321882769465446, + 0.005763398949056864, + -0.003371077822521329, + 0.01592768356204033, + 0.00479872478172183, + -0.01313928235322237, + -0.0010729357600212097, + 0.002543711569160223, + -0.006485144142061472, + -0.005210647825151682, + 0.029123296961188316, + 0.016730403527617455, + 0.0001659133704379201, + 0.0067738420329988, + 0.0043938434682786465, + -0.028616314753890038, + 0.032841164618730545, + 0.003401004010811448, + -0.009069344028830528, + -0.0072737825103104115, + -0.0017145847668871284, + 0.00182372669223696, + -0.011604253202676773, + -0.016307920217514038, + -0.022955015301704407, + -0.0006359278922900558, + 0.0012982611078768969, + 0.00906230229884386, + 0.0016644146526232362, + 0.015730522572994232, + 0.004858577158302069, + -0.0001388479140587151, + -0.000577836181037128, + -0.01427295058965683, + 0.029376788064837456, + -0.010886029340326786, + -0.027588266879320145, + 0.004249494522809982, + 0.016603657975792885, + 0.014801056124269962, + 0.015378452837467194, + 0.03993891179561615, + -0.01850484125316143, + 0.01433632243424654, + 0.012829460203647614, + 0.008393367752432823, + -0.0294331181794405, + -0.0065062684006989, + -0.010759283788502216, + 0.011336679570376873, + -0.010794490575790405, + 0.0025894807185977697, + -0.00930171087384224, + 0.013561767525970936, + -0.0007833575364202261, + 0.029940100386738777, + -0.014758807606995106, + -0.008632776327431202, + -0.019237147644162178, + 0.005115588661283255, + -0.0025560338981449604, + -0.005576801486313343, + 0.011449342593550682, + -0.01159721240401268, + 0.0005747555987909436, + -0.0061858841218054295, + 0.005112067796289921, + -0.007548397872596979, + -0.0065872445702552795, + 0.03754483163356781, + 0.0021581940818578005, + 0.014660228043794632, + -0.0018747770227491856, + -0.014308157376945019, + -0.013082951307296753, + -0.02810933254659176, + 0.002728548599407077, + -0.0038446132093667984, + -0.00562609126791358, + -0.01489963661879301, + -0.001049170969054103, + 0.007210409734398127, + 0.008618692867457867, + -0.0032214478123933077, + 0.005957037676125765, + -0.011752123013138771, + -0.004302305169403553, + -0.01542070135474205, + 0.017504960298538208, + 0.009245378896594048, + 0.014575731009244919, + 0.01753312535583973, + -0.01901182346045971, + 0.03163003921508789, + -0.017350049689412117, + -0.005242334213107824, + 0.0025595547631382942, + 0.022842353209853172, + 0.015533363446593285, + 0.0016925804084166884, + 0.0017832386074587703, + -0.004376240074634552, + -0.013604016043245792, + -0.016068510711193085, + -0.0033341103699058294, + 0.002401122823357582, + -0.000405321508878842, + 0.013456146232783794, + -0.0017392297741025686, + 0.012505554594099522, + -0.012723838910460472, + -0.018575254827737808, + -0.005024050362408161, + -0.015378452837467194, + -0.010055141523480415, + 0.03157370910048485, + -0.0030876609962433577, + 0.01254076138138771, + -0.011083188466727734, + 0.028405072167515755, + -0.018800580874085426, + 0.016406498849391937, + 0.005411328282207251, + -0.026715131476521492, + 0.015448866412043571, + 0.009857982397079468, + 0.00026537335361354053, + 0.006263339426368475, + -0.005235292948782444, + -0.00906230229884386, + 0.019758213311433792, + 0.015068629756569862, + -0.018293598666787148, + 0.003967837896198034, + 0.00505221588537097, + -0.009343959391117096, + -0.005953517276793718, + 0.00338340038433671, + 0.013632181100547314, + -0.023504246026277542, + 0.00409106258302927, + 0.014244784601032734, + -0.011287389323115349, + 0.011019815690815449, + -0.006435854360461235, + -0.01085786335170269, + 0.01084378082305193, + 0.00046825414756312966, + -0.01620933972299099, + 0.017392298206686974, + 0.005604967009276152, + -0.003992483019828796, + 0.01326602790504694, + -0.006604847963899374, + 0.01791336201131344, + -0.0319116972386837, + -0.004471299238502979, + -0.002256773877888918, + -0.0090482197701931, + 0.007393486797809601, + -0.019870875403285027, + 0.020476438105106354, + -0.0029996430967003107, + -0.007766681723296642, + -0.01973004825413227, + -0.0075554391369223595, + 0.015181292779743671, + -0.005978161934763193, + -0.01768803596496582, + 0.019377976655960083, + -0.004534672014415264, + -0.0045417132787406445, + -0.010153722018003464, + 0.000790839025285095, + 0.007037895265966654, + -0.018152769654989243, + 0.017335966229438782, + -0.01339277345687151, + 0.013237861916422844, + 0.0006117229931987822, + -0.0250533577054739, + 0.011195851489901543, + -0.019645551219582558, + -0.0009021814330480993, + -0.00870318990200758, + 0.0036509742494672537, + -0.01725146919488907, + -1.130477357946802e-5, + -0.0016758569981902838, + 0.019715964794158936, + -0.009238338097929955, + -0.013075909577310085, + -0.01542070135474205, + -0.021926969289779663, + -0.006590765435248613, + -0.026137735694646835, + -0.02341974899172783, + 0.012125317938625813, + 0.002886980539187789, + 0.01187886856496334, + -0.01727963425219059, + -0.003304184414446354, + -0.01353360153734684, + -0.027560101822018623, + 0.007379403803497553, + 0.001233128015883267, + -0.010400171391665936, + 0.0014505316503345966, + 0.003177438862621784, + 0.01737821474671364, + -0.011069105938076973, + 0.00917496532201767, + -0.014434902928769588, + 0.013639222830533981, + -0.0016063230577856302, + 0.014033542014658451, + -0.008822894655168056, + -0.004101624712347984, + -0.027968503534793854, + 0.007992006838321686, + 0.007597687654197216, + -0.009907272644340992, + 0.016828984022140503, + 0.01542070135474205, + -0.008020172826945782, + -0.010012893937528133, + -0.0043938434682786465, + 0.009921355172991753, + -0.014843304641544819, + -0.011604253202676773, + 0.0308414027094841, + 0.007590646389871836, + 0.010829697363078594, + 0.0015174251748248935, + 0.006548516917973757, + 0.014491233974695206, + 0.006277422420680523, + 0.0017559530679136515, + -0.013505435548722744, + 0.0016776173142716289, + 0.010526916943490505, + -0.0135476840659976, + 0.018054191023111343, + -0.03270033746957779, + -0.027151700109243393, + -0.0059042274951934814, + -0.0025049836840480566, + 0.018209101632237434, + -0.010639579966664314, + -0.009759402833878994, + -0.003883340861648321, + -0.0064393747597932816, + 0.0224762000143528, + -0.02250436507165432, + -0.006502747535705566, + 0.016885315999388695, + 0.004721269477158785, + 0.008717273361980915, + 0.0063795228488743305, + 0.00133962940890342, + -0.012435141019523144, + 0.03703784942626953, + 0.02426471933722496, + 0.023898566141724586, + -0.009808692149817944, + -0.0024116849526762962, + 0.008907390758395195, + -0.008062421344220638, + 0.019152650609612465, + 0.007087185047566891, + -0.015012298710644245, + -0.007143516559153795, + 0.02829241007566452, + 0.004552275408059359, + -0.0254899263381958, + -0.002045531291514635, + -0.017096558585762978, + 0.004414967726916075, + -0.02130732499063015, + 0.002538430504500866, + -0.007245616987347603, + 0.0023447915446013212, + 0.01873016729950905, + -0.0046755000948905945, + -0.022546613588929176, + -0.03450293838977814, + -0.0025595547631382942, + -0.04258648306131363, + -0.008104669861495495, + 0.020504603162407875, + 0.009336917661130428, + -6.881883746245876e-5, + 0.025644836947321892, + 0.015688274055719376, + -0.008991887792944908, + -0.008125794120132923, + -0.0017955610528588295, + 0.01235064398497343, + 0.0063196709379553795, + 0.008632776327431202, + 0.0036932227667421103, + -0.012153483927249908, + -0.01623750478029251, + 0.016012180596590042, + -0.01942022517323494, + -0.008224373683333397, + -0.03224968537688255, + -0.0036368912551552057, + 0.040276899933815, + -0.017490876838564873, + 0.0035048648715019226, + -0.022588862106204033, + -0.004291743040084839, + 0.008344077505171299, + 0.012097152881324291, + 0.0027743179816752672, + 0.006597806699573994, + 0.010646620765328407, + -0.005126150790601969, + -0.011062064208090305, + -0.013695553876459599, + 0.010963484644889832, + 0.012977330014109612, + -0.012498512864112854, + 0.0012718557845801115, + 0.01227318774908781, + -0.003103504190221429, + -0.008787686936557293, + -0.0018061231821775436, + -0.0027162262704223394, + 0.00040400124271400273, + -0.0029820397030562162, + -0.011892951093614101, + -0.011702833697199821, + 0.022715607658028603, + 0.006731593515723944, + 0.011315555311739445, + 0.010287508368492126, + -0.011716916225850582, + -0.01542070135474205, + -0.00010727156768552959, + 0.013343483209609985, + -0.00031136261532083154, + 0.00022378499852493405, + -0.017983775585889816, + 0.006590765435248613, + 0.006865380331873894, + -0.0017515522195026278, + -0.0016837785951793194, + -0.01705431006848812, + 0.003862216603010893, + -0.003591122105717659, + -0.017673954367637634, + 0.02074401080608368, + 0.0007516711484640837, + 0.012104193679988384, + 0.007132954429835081, + -0.010034018196165562, + 0.00882993545383215, + -0.021955134347081184, + -0.008977805264294147, + -0.0033464329317212105, + -1.4522920537274331e-5, + 0.008520113304257393, + 0.014153245836496353, + 0.01791336201131344, + -0.024250635877251625, + 0.008407450281083584, + -0.025912411510944366, + -0.009893189184367657, + -0.011801413260400295, + 0.012935081496834755, + -0.0120408209040761, + -0.011026857420802116, + -0.004960677586495876, + -0.010343840345740318, + 0.014075790531933308, + 0.010090349242091179, + -0.0022919808980077505, + 0.007463900838047266, + 0.002469776663929224, + -0.003506625071167946, + 0.018856912851333618, + -0.009400290437042713, + -0.001507743145339191, + 0.02061726525425911, + 0.024659039452672005, + -0.009090468287467957, + 0.003540071891620755, + 0.020560935139656067, + -0.012730879709124565, + 0.011322597041726112, + 0.015871351584792137, + 0.006854818668216467, + 0.0061119492165744305, + 0.016124842688441277, + -0.015744606032967567, + -0.010273425839841366, + -0.013568808324635029, + 0.017364131286740303, + 0.02347608096897602, + -0.016505079343914986, + 0.006027452182024717, + 0.010308632627129555, + -0.002186359604820609, + 0.0048973048105835915, + -0.0024099245201796293, + -0.013005495071411133, + -0.030616076663136482, + -0.03748849779367447, + -0.02291276678442955, + -0.006383043713867664, + 0.027461521327495575, + -0.01825135014951229, + -0.005576801486313343, + -0.008252539671957493, + 0.001094060018658638, + -0.022955015301704407, + 0.005034612491726875, + 0.021983301267027855, + -0.012308395467698574, + 0.007456859573721886, + -0.02668696641921997, + -0.027531936764717102, + 0.01633608527481556, + 0.025292765349149704, + 0.01227318774908781, + 0.008210291154682636, + 0.009259462356567383, + -0.01570235751569271, + -0.034418441355228424, + -0.002754953922703862, + -0.008506030775606632, + -0.00019528926350176334, + -0.020828507840633392, + 0.020124366506934166, + -0.006446416489779949, + -0.005393724422901869, + 0.002101862570270896, + -0.00029067846480757, + -0.009231296367943287, + -0.0019346290500834584, + -0.00395727576687932, + 0.013540643267333508, + -0.009942479431629181, + -0.011618336662650108, + -0.0035787997767329216, + -0.011892951093614101, + 0.004869139287620783, + -0.003304184414446354, + 0.0016547327395528555, + -0.016279753297567368, + 0.004080500453710556, + -0.010308632627129555, + -0.019251231104135513, + -0.002121226629242301, + 0.002265575574710965, + 0.006478102877736092, + -0.012928039766848087, + 0.00868910737335682, + -0.004830411169677973, + -0.01651916094124317, + -0.015631943941116333, + -0.0016978614730760455, + -0.020828507840633392, + 0.010569165460765362, + 0.0024380902759730816, + 0.02477170154452324, + 0.006995646748691797, + 0.006161238998174667, + -0.02049051970243454, + -0.015969932079315186, + 0.0004396484000608325, + 0.016786735504865646, + -0.0042847017757594585, + 0.004777600523084402, + 0.01873016729950905, + 0.023616909980773926, + 0.01982862688601017, + -0.028123416006565094, + -0.0037108261603862047, + -0.0127449631690979, + 0.005826771724969149, + -0.001899421913549304, + 0.006189404521137476, + 0.004668458830565214, + 0.0008960201521404088, + 0.01172395795583725, + 0.004242453258484602, + 0.005597925744950771, + -0.005266979336738586, + 0.007245616987347603, + 0.008836977183818817, + 0.002621167106553912, + -0.024039393290877342, + -0.0014690153766423464, + -0.003254894632846117, + -0.019124485552310944, + -0.010315674357116222, + -0.007308989763259888, + 0.034136783331632614, + 0.011146561242640018, + -0.008491947315633297, + 0.0235464945435524, + 0.01957513578236103, + -0.02039194107055664, + -0.007456859573721886, + 0.009111592546105385, + 0.006249256432056427, + 0.015110878273844719, + -0.014561648480594158, + -0.011801413260400295, + 0.011695791967213154, + 0.021250993013381958, + 0.0015297476202249527, + -0.007463900838047266, + -0.004580440931022167, + 0.0011424697004258633, + 0.024856198579072952, + 0.021673478186130524, + 0.02011028304696083, + 0.00505221588537097, + 0.009393248707056046, + 0.0007666341844014823, + 0.02867264486849308, + 0.0034907818771898746, + -0.005907747894525528, + -0.014955967664718628, + 0.006890025455504656, + -0.014118039049208164, + 5.297565439832397e-5, + -0.02482803352177143, + -0.022828269749879837, + 0.0009761162800714374, + 0.003101743757724762, + 0.010062183253467083, + -0.009153841063380241, + -0.017673954367637634, + -0.009083426557481289, + -0.01211827713996172, + 0.020222947001457214, + 0.011653543449938297, + 0.015251707285642624, + 0.01740637980401516, + -0.0033675571903586388, + 0.016153007745742798, + 0.01954697072505951, + -0.011942241340875626, + -0.008569403551518917, + 0.014308157376945019, + -0.027278445661067963, + 0.01689939759671688, + 0.0010834978893399239, + -0.026672882959246635, + -0.014420819468796253, + 0.011716916225850582, + 0.0009127435623668134, + 0.00909750908613205, + 0.02020886354148388, + -0.022391702979803085, + -0.0014945404836907983, + 0.02171572670340538, + -0.0018782976549118757, + 0.0005787163972854614, + 0.024954779073596, + 0.0235464945435524, + -0.018702000379562378, + -0.0007987606222741306, + -0.00906230229884386, + -0.002475057728588581, + -0.0007477103499695659, + 0.01339277345687151, + 0.006844256538897753, + 0.005076861009001732, + 0.013427980244159698, + 0.012801294215023518, + -0.012878749519586563, + -0.016631824895739555, + 0.005738753825426102, + -0.0017920403042808175, + -0.0063055879436433315, + -0.012639341875910759, + -0.0019328687340021133, + 0.009752361103892326, + -0.020293360576033592, + -0.002050812356173992, + -0.007787805981934071, + -0.010526916943490505, + -0.017617622390389442, + 0.013913838192820549, + -0.004626210313290358, + 9.093328844755888e-5, + -0.009308751672506332, + 0.008069463074207306, + 0.007428694050759077, + 0.014371530152857304, + 0.01646283082664013, + 0.024856198579072952, + 0.011224017478525639, + 0.002541951136663556, + -5.787163900095038e-5, + 0.02130732499063015, + 0.011090230196714401, + -0.006921711843460798, + 0.009759402833878994, + 0.0036404121201485395, + -0.0013405095087364316, + -0.005157837178558111, + 0.004143873229622841, + 0.012906915508210659, + -0.00044184885337017477, + 0.006791445892304182, + -0.01982862688601017, + -0.01071703527122736, + 0.0031950424890965223, + -0.03667169436812401, + 0.012484430335462093, + -0.009266503155231476, + -0.0015394295332953334, + 0.004805766511708498, + 0.009667864069342613, + 0.00066981470445171, + 0.01279425248503685, + -0.0017717962618917227, + 0.005995765794068575, + -0.02706720307469368, + 0.003467897418886423, + -0.029940100386738777, + 0.006802008021622896, + 0.0016855389112606645, + -0.023588743060827255, + 0.030700573697686195, + -0.010900111868977547, + 0.002761995419859886, + 0.003050693543627858, + 0.006861859932541847, + -0.020758094266057014, + 0.014660228043794632, + -0.01564602553844452, + -0.0008317672763951123, + -0.031235720962285995, + 0.01771620288491249, + -0.014139163307845592, + 0.011984489858150482, + 0.0042107668705284595, + 0.0009004210587590933, + 0.004238932393491268, + 0.010055141523480415, + 0.014244784601032734, + 0.014646145515143871, + 0.007330114021897316, + 0.0024310487788170576, + 0.014230702072381973, + -0.007935675792396069, + -0.0030806194990873337, + -0.0025613149628043175, + 0.00360344466753304, + 0.008315912447869778, + 0.0075202323496341705, + -0.006221090909093618, + 0.011019815690815449, + -0.004326950293034315, + 0.021110165864229202, + -0.008456740528345108, + -0.009238338097929955, + 0.0020754572469741106, + -0.0012648142874240875, + -0.009041178040206432, + 0.029658444225788116, + 0.002661655191332102, + 0.007851178757846355, + -0.003321788040921092, + -0.02971477620303631, + 0.003388681448996067, + -0.02879939042031765, + -0.008329994976520538, + -0.009512952528893948, + 0.0064534577541053295, + 0.009773485362529755, + 0.013639222830533981, + -0.0050451746210455894, + 0.00014709957758896053, + -0.017335966229438782, + -0.0011363085359334946, + -0.02706720307469368, + 0.0003309465537313372, + -0.0224762000143528, + -0.006530913524329662, + 0.007101268041878939, + -0.018166853114962578, + -0.018307682126760483, + 0.01825135014951229, + 0.008090587332844734, + 0.0027884007431566715, + -0.021729810163378716, + -0.046501509845256805, + 0.0010984608670696616, + -0.007407569792121649, + -0.007400528062134981, + -0.00944253895431757, + -0.004619169048964977, + 0.005960558541119099, + -0.003540071891620755, + -0.02706720307469368, + -0.0031439922749996185, + 0.003096462693065405, + -0.024954779073596, + -0.018490757793188095, + -0.011702833697199821, + -0.014998216181993484, + 0.007076622918248177, + -0.009893189184367657, + 0.012575969099998474, + -0.007020291872322559, + 0.004383281338959932, + -0.004788162652403116, + -0.017138807103037834, + -0.010569165460765362, + 0.0024838594254106283, + -0.01185070350766182, + -0.0026651760563254356, + 0.028503652662038803, + 0.011674667708575726, + 0.01318857166916132, + 0.017110640183091164, + 0.006967481225728989, + -0.007506149355322123, + 0.021800223737955093, + -0.007738516200333834, + 0.009541118517518044, + -0.014089873060584068, + 0.006787925027310848, + 0.023081760853528976, + -0.007076622918248177, + 0.014005376026034355, + -0.0034819801803678274, + 0.020729929208755493, + -0.002513785380870104, + 0.013639222830533981, + 0.0021599542815238237, + 0.018335847184062004, + 0.01702614314854145, + -0.0037636368069797754, + -0.02467312105000019, + 0.003742512548342347, + 0.008682065643370152, + 0.0016406498616561294, + -0.0196033027023077, + 0.002387040061876178, + -0.012336560525000095, + -0.024222470819950104, + 0.005957037676125765, + -0.005319789983332157, + 0.0035770393442362547, + -0.0014531721826642752, + -0.011428218334913254, + 0.007150557823479176, + 0.012287271209061146, + 0.0010386088397353888, + -0.022743772715330124, + -0.010329756885766983, + 0.009083426557481289, + 0.014998216181993484, + -0.014089873060584068, + -0.025630753487348557, + 0.0038868614938110113, + 0.004365677945315838, + 0.0005043414421379566, + -0.017195137217640877, + 0.011801413260400295, + 0.006263339426368475, + 0.012709755450487137, + -0.011442300863564014, + -0.022307205945253372, + 0.009576325304806232, + 0.012674548663198948, + -0.03568589687347412, + 0.0002022206608671695, + -0.013449104502797127, + 0.00047221494605764747, + -0.0048973048105835915, + 0.0022110044956207275, + 0.007189285475760698, + 0.020913004875183105, + 0.010301591828465462, + -0.008139876648783684, + -0.007414611056447029, + 0.01339277345687151, + -0.0027021432761102915, + 0.049205414950847626, + 0.0406712181866169, + -0.0029151462949812412, + 0.004939553327858448, + -0.004231891129165888, + -0.027715012431144714, + -0.008301828987896442, + 0.00619292538613081, + -0.030616076663136482, + -0.021729810163378716, + 0.018462592735886574, + -0.0012885790783911943, + 0.006682303734123707, + 0.00024204867077060044, + -0.020307444036006927, + 0.024532293900847435, + 0.003802364692091942, + -0.0063795228488743305, + -0.015040464699268341, + -0.008534195832908154, + -0.03371429815888405, + -0.005657777655869722, + -0.0035594357177615166, + 0.013216737657785416, + -6.843376468168572e-5, + -0.024560458958148956, + -0.0023711968678981066, + -0.020434189587831497, + -0.025729333981871605, + -0.015308038331568241, + 0.023645075038075447, + -0.0036509742494672537, + -0.018575254827737808, + -0.0005927992169745266, + 0.005928872153162956, + 0.009315793402493, + -0.007171682082116604, + 0.001955753192305565, + -0.000262732821283862, + -0.006337274331599474, + -0.003321788040921092, + -0.0060837832279503345, + 0.002188120037317276, + -0.01125218253582716, + -0.010752242058515549, + 0.0078018889762461185, + 0.001092299702577293, + 0.008766562677919865, + -0.028207913041114807, + -0.0109705263748765, + 0.006076741963624954, + 0.008717273361980915, + -0.003445012727752328, + 0.015308038331568241, + -0.009308751672506332, + 0.0138152576982975, + 0.01860342174768448, + 0.013688513077795506, + -0.011153602972626686, + 0.01186478603631258, + -0.007379403803497553, + -0.002600042847916484, + 0.013082951307296753, + 0.03571406006813049, + 0.0014989414485171437, + 0.008675024844706059, + 0.006816090550273657, + 0.006471061147749424, + 0.006478102877736092, + -0.0015103836776688695, + 0.014406736940145493, + -0.009273544885218143, + -0.010055141523480415, + -0.0003430489741731435, + -0.016505079343914986, + -0.004513547755777836, + -0.01674448698759079, + -0.04264281690120697, + -0.010991650633513927, + 0.014955967664718628, + 0.016378333792090416, + -0.0004205045697744936, + 0.006530913524329662, + -0.002538430504500866, + -0.01934981159865856, + -0.009365083649754524, + -0.01353360153734684, + 0.007023812271654606, + -0.01238585077226162, + 0.031010396778583527, + -0.0051648784428834915, + -0.001475176657550037, + -5.352576408768073e-5, + 0.004464257508516312, + -0.002835930325090885, + -0.0006324071437120438, + -0.01214644219726324, + 0.012963246554136276, + 0.0007195447105914354, + 0.007569522131234407, + 0.007639936171472073, + 0.008836977183818817, + 0.0030806194990873337, + -0.002673977753147483, + -0.027306610718369484, + -0.02309584431350231, + 0.004721269477158785, + 0.014026500284671783, + 0.00505925714969635, + 0.02008211798965931, + -0.019335728138685226, + 0.034700099378824234, + -0.0022831792011857033, + 0.0025085045490413904, + 0.017237385734915733, + 0.02423655427992344, + 0.011583128944039345, + 0.007710350677371025, + 0.016026262193918228, + 0.004404405597597361, + -0.004946594592183828, + 0.02732069417834282, + 0.010548041202127934, + 0.001985679380595684, + 0.004175559617578983, + -0.0059042274951934814, + -0.002107143634930253, + 0.02008211798965931, + 0.010393129661679268, + -0.021673478186130524, + 0.019406141713261604, + 0.005854937247931957, + -0.01715288870036602, + 0.003932630643248558, + -0.01715288870036602, + -0.0061577181331813335, + -0.00182372669223696, + -0.017166972160339355, + 0.018828745931386948, + 0.01651916094124317, + -0.038727786391973495, + 0.029010633006691933, + 0.036080215126276016, + 0.015969932079315186, + -0.0028781788423657417, + -0.02158898115158081, + -0.0101185142993927, + 0.011033899150788784, + 0.012892832979559898, + -5.6936449254862964e-5, + -0.01608259417116642, + -0.002524347510188818, + 0.020321525633335114, + 0.005393724422901869, + -0.004848015028983355, + 0.008259580470621586, + -0.014230702072381973, + 0.005157837178558111, + -0.005700026173144579, + 0.006798487156629562, + 0.0038551753386855125, + 0.007245616987347603, + -0.005978161934763193, + 0.02589832805097103, + 0.01489963661879301, + -0.0008154839742928743, + -0.018406260758638382, + 0.002115945564582944, + -0.01758945733308792, + -0.001796441269107163, + -0.007548397872596979, + -0.0037636368069797754, + -0.00956928450614214, + 0.00659428583458066, + -0.007618811912834644, + 0.017223304137587547, + 0.007492066361010075, + 0.001616004970856011, + -0.02426471933722496, + -0.001968075754120946, + 0.003788281697779894, + 0.011928158812224865, + 0.008858101442456245, + 0.004517068155109882, + 0.027391107752919197, + 0.024250635877251625, + -0.001652092207223177, + 0.009083426557481289, + 0.005133192054927349, + -0.007597687654197216, + 0.002473297296091914, + 0.033883292227983475, + -0.023645075038075447, + -0.013596974313259125, + 0.0027989628724753857, + 0.0206735972315073, + 0.0017031425377354026, + -0.011688750237226486, + -0.027616433799266815, + 0.014603896997869015, + -0.0012577729066833854, + 0.0043903230689466, + -0.016631824895739555, + 0.01251259632408619 + ], + "7b56e245-174f-4279-90aa-bed3d7a5bcd1": [ + 0.016248315572738647, + 0.016955947503447533, + -0.008913439698517323, + 0.019078843295574188, + -0.033803027123212814, + -0.015676766633987427, + 0.006167964078485966, + 0.007743125315755606, + -0.018575336784124374, + -0.0020361426286399364, + 0.0059264167211949825, + 0.043519359081983566, + 0.01691512204706669, + 0.005752910859882832, + -0.030237652361392975, + -0.011131593026220798, + -0.007028689607977867, + 0.027543209493160248, + -0.008593644015491009, + -0.007137555629014969, + 0.03919191658496857, + -0.04234904423356056, + -0.030890852212905884, + 0.035789839923381805, + 0.006715698167681694, + -0.03573540970683098, + 0.004473729990422726, + 0.006045489571988583, + -0.04869051277637482, + 0.008927048183977604, + 0.018112653866410255, + 0.0035517674405127764, + -0.006205386947840452, + -0.01937822625041008, + 0.015758417546749115, + -0.009580246172845364, + 0.01713285595178604, + 0.007688692305237055, + 0.0007450546836480498, + 0.014288719743490219, + 0.015731200575828552, + 0.01975925825536251, + 0.03309539705514908, + 0.01571759209036827, + -0.03666077181696892, + 0.010049733333289623, + 0.017064813524484634, + -0.009913650341331959, + 0.022235969081521034, + 0.012111390940845013, + -0.01796296238899231, + -0.00284583680331707, + -0.01109757274389267, + -0.009872824884951115, + 0.01109757274389267, + -0.026876401156187057, + 0.05010577663779259, + 0.05304517224431038, + 0.02313411794602871, + -0.0012400568230077624, + 0.04139646142721176, + 0.01397572923451662, + -0.009280864149332047, + -0.00856642797589302, + 0.011961699463427067, + -0.015499859116971493, + -0.011049943044781685, + -0.02380092442035675, + -0.04240347817540169, + -0.03919191658496857, + 0.016710998490452766, + 0.05759034678339958, + -0.033639729022979736, + -0.02173246257007122, + -0.013628717511892319, + -0.0002347432600799948, + 0.007892816327512264, + 0.008382715284824371, + 0.02030359022319317, + -0.023964224383234978, + 0.013928099535405636, + -0.0006935982964932919, + -0.014751402661204338, + -0.0024018657859414816, + 0.08888944983482361, + 0.002942795865237713, + 0.011546646244823933, + -0.04204966127872467, + 0.005786931607872248, + -0.01627553254365921, + -0.039654601365327835, + 0.037477269768714905, + 0.003449705196544528, + -0.002255576429888606, + 0.0015768622979521751, + -0.015268517658114433, + 0.022222362458705902, + 0.010941077023744583, + 0.03508220985531807, + 0.029421154409646988, + 0.029883837327361107, + 0.008641273714601994, + -0.021215347573161125, + 0.02699887566268444, + 0.013710366562008858, + -0.038620367646217346, + -0.005776725243777037, + 0.012390361167490482, + -0.02936672233045101, + 0.037586137652397156, + 0.011730358935892582, + -0.04308389127254486, + -0.0016108830459415913, + 0.019065234810113907, + -0.04945258051156998, + -0.005300434771925211, + 0.004198161885142326, + -0.017622753977775574, + 0.021405862644314766, + -0.04036223143339157, + 0.019704824313521385, + -0.019582349807024002, + 0.04703029990196228, + 0.011369738727807999, + -0.005399094894528389, + 0.0019595958292484283, + -0.01683347299695015, + 0.025066496804356575, + 0.012084174901247025, + 0.046513184905052185, + 0.001044437405653298, + -0.008586840704083443, + 0.01030148658901453, + 0.0076750838197767735, + 0.0030788788571953773, + 0.015880892053246498, + 0.0037116650491952896, + 0.047656282782554626, + -0.00855281949043274, + 0.025651654228568077, + -0.07294051349163055, + -0.017541104927659035, + -0.0302920863032341, + -0.002570268465206027, + -0.007967662066221237, + -0.014383978210389614, + -0.006504769437015057, + 0.028822388499975204, + -0.03279601410031319, + 0.004810535814613104, + -0.051303308457136154, + -0.008457561023533344, + -0.006028478965163231, + 0.013846450485289097, + 0.05857014283537865, + -0.011274480260908604, + -0.032033950090408325, + 0.025746911764144897, + 0.022249577566981316, + 0.021746071055531502, + 0.037205103784799576, + -0.06123737245798111, + -0.0030414562206715345, + 0.009866020642220974, + 0.028631873428821564, + 0.006967451889067888, + 0.03902861848473549, + 0.020834313705563545, + 0.0011703141499310732, + 0.018765851855278015, + 0.02324298396706581, + -0.0036946546752005816, + 0.011274480260908604, + -0.01481944415718317, + 0.025842171162366867, + -0.021215347573161125, + 0.038810886442661285, + 0.0003916640125680715, + 0.056664980947971344, + -0.05307238921523094, + -0.022167928516864777, + -0.028631873428821564, + 0.019310183823108673, + -0.012016133405268192, + -0.025284230709075928, + 0.005991056095808744, + -0.015513467602431774, + -0.007681888062506914, + 0.038620367646217346, + -0.005909406114369631, + -0.02597825415432453, + -0.017173681408166885, + 0.025719696655869484, + -0.020167507231235504, + 0.0019374823896214366, + -0.04869051277637482, + 0.010893448255956173, + 0.026386503130197525, + 0.009893237613141537, + 0.023351849988102913, + 0.0008972975774668157, + -0.047275248914957047, + -0.021296996623277664, + 0.04879938066005707, + -0.023732883855700493, + 0.027897024527192116, + -0.022263186052441597, + -0.021596379578113556, + 0.03331312909722328, + -0.06101963669061661, + 0.016670173034071922, + -0.024508556351065636, + -0.0034309937618672848, + -0.011288088746368885, + -0.02482154779136181, + 0.018697811290621758, + -0.013887275010347366, + 0.005276620388031006, + 0.021963803097605705, + -0.021977411583065987, + 0.031163018196821213, + 0.02728465013206005, + 0.0025566602125763893, + -0.031380750238895416, + -0.05241918936371803, + 0.04703029990196228, + -0.012716961093246937, + 0.03168013319373131, + -0.053480636328458786, + -0.020915964618325233, + 0.03698737174272537, + -0.0047969273291528225, + 0.010437569580972195, + -0.006120334845036268, + -0.0062836348079144955, + 0.03083641827106476, + 0.01547264214605093, + 0.037967171519994736, + -0.037395622581243515, + -0.01170994620770216, + 0.010743756778538227, + 0.03878366947174072, + 0.0035517674405127764, + 0.03094528429210186, + 0.026400111615657806, + -0.0011464996496215463, + -0.010879839770495892, + 0.00945777166634798, + 0.016139449551701546, + -0.03913748264312744, + -0.02963888831436634, + 0.005467136390507221, + -0.00416414113715291, + -0.004939814563840628, + -0.010668911039829254, + 0.016765430569648743, + 0.031353533267974854, + -0.04281172528862953, + -0.024426907300949097, + 0.017173681408166885, + -0.008722923696041107, + 0.0013132013846188784, + 0.005082701798528433, + -0.005399094894528389, + 0.06423120200634003, + -0.011560254730284214, + 0.03094528429210186, + -0.008824985474348068, + 0.01975925825536251, + 0.05421548709273338, + -0.030591469258069992, + -0.028604656457901, + 0.0008403128013014793, + -0.002097379881888628, + 0.0030074352398514748, + 0.009042718447744846, + 0.010042929090559483, + -0.005473940633237362, + 0.020398849621415138, + 0.004079089500010014, + 0.03168013319373131, + -0.021133696660399437, + -0.008641273714601994, + 0.03791273757815361, + 0.0034684166312217712, + 0.014139028266072273, + -0.026481760665774345, + -0.002788001438602805, + -0.0021501120645552874, + 0.0021433080546557903, + -0.010403549298644066, + 0.012118195183575153, + 0.011022727005183697, + 0.012519639916718006, + 0.02146029658615589, + -0.02022194117307663, + -0.02378731593489647, + -0.014642535708844662, + 0.0005881339311599731, + -0.010873035527765751, + -0.004320636857300997, + 0.01518686767667532, + -0.003465014509856701, + -0.024753505364060402, + 0.034483443945646286, + -0.02313411794602871, + 0.04757463186979294, + 0.022821126505732536, + -0.03529994189739227, + 0.011362934485077858, + 0.030074354261159897, + 0.01702398993074894, + 0.0018847502069547772, + -6.208789272932336e-5, + 0.018847502768039703, + -0.012165824882686138, + 0.0005162650486454368, + -0.04373709112405777, + -0.016779039055109024, + -0.010029320605099201, + 0.0010827106889337301, + -0.0028322283178567886, + -0.05533136799931526, + -0.007443742826581001, + 0.017282547429203987, + -0.014139028266072273, + 0.03924635052680969, + -0.033993545919656754, + -0.048309482634067535, + -0.030156003311276436, + -0.05633838102221489, + -0.010961489751935005, + -0.01091386005282402, + -0.04681256785988808, + -0.032306116074323654, + -0.030781986191868782, + -0.01691512204706669, + -0.02972053736448288, + 0.010090557858347893, + -0.0365246906876564, + 0.005055485293269157, + -0.03960016742348671, + 0.004313832614570856, + 0.004626823589205742, + -0.02023554965853691, + -0.014220678247511387, + -0.0018235128372907639, + 0.03279601410031319, + 0.017745228484272957, + 0.01518686767667532, + 0.0008194750989787281, + -0.024426907300949097, + -0.00832147803157568, + 0.032932098954916, + 0.06798709183931351, + 0.008205807767808437, + -0.029557237401604652, + -0.03568097576498985, + -0.005960437469184399, + -0.027692900970578194, + -0.002753980690613389, + -0.03666077181696892, + -0.05070454254746437, + -0.008457561023533344, + -0.02999270334839821, + 0.016629347577691078, + -0.008688902482390404, + 0.022453702986240387, + 0.02567887119948864, + 0.021882154047489166, + -0.04131481423974037, + -0.01058045681566, + -0.005348063539713621, + -0.06722502410411835, + -0.02321576699614525, + -0.02803310751914978, + 0.025243405252695084, + -0.0062734284438192844, + 0.006814358755946159, + 0.024794330820441246, + 0.013533459044992924, + -0.0026247017085552216, + -0.009294471703469753, + -0.03687850758433342, + 0.0017095432849600911, + 0.032687146216630936, + -0.0026519184466451406, + -0.018303168937563896, + 0.01901080086827278, + 0.0348372608423233, + -0.03298652917146683, + 0.021746071055531502, + -0.004909195937216282, + 0.00013863459753338248, + 0.012240669690072536, + 0.009001893922686577, + -0.026699494570493698, + 0.0008938955143094063, + -0.025420313701033592, + -0.021392254158854485, + -0.01834399439394474, + -0.01058726105839014, + -0.014778618700802326, + 0.0194734837859869, + 0.05304517224431038, + -0.02776094153523445, + 0.00804250780493021, + -0.024440515786409378, + 0.005562394391745329, + 0.009090347215533257, + -0.007389309350401163, + -0.0013752892846241593, + -0.006031881086528301, + -0.021854937076568604, + 0.029883837327361107, + 0.008967872709035873, + 0.01929657533764839, + 0.03491891175508499, + -0.04610493779182434, + -0.025257013738155365, + 0.04044388234615326, + -0.005497755017131567, + -0.002752279629930854, + 0.014084595255553722, + -0.027584033086895943, + 0.0449618399143219, + 0.019813692197203636, + 0.02257617749273777, + -0.01729615591466427, + -0.07043658196926117, + -0.022603394463658333, + 0.021052047610282898, + 0.022998034954071045, + 0.01626192405819893, + -0.03132631629705429, + -0.022834734991192818, + 0.028278056532144547, + -0.02020833268761635, + -0.016901513561606407, + -0.02822362445294857, + -0.013894079253077507, + 0.030591469258069992, + -0.008348695002496243, + -0.017840487882494926, + -0.01816708594560623, + 0.04439029097557068, + -0.011335717514157295, + 0.02765207551419735, + 0.018412036821246147, + -0.013621913269162178, + 0.00945777166634798, + 0.027788158506155014, + 0.005514765623956919, + -0.0016057799803093076, + -0.004589400719851255, + -0.005790333729237318, + 0.011294892989099026, + -0.02087513916194439, + 0.009913650341331959, + -0.07076318562030792, + -0.007498175837099552, + -0.005627034232020378, + 0.016534090042114258, + -0.02963888831436634, + 0.02625042013823986, + -0.03140796720981598, + 0.003857954405248165, + -0.012465206906199455, + 0.00613394333049655, + 0.014125420711934566, + -0.028740739449858665, + -0.017364196479320526, + -0.03105415217578411, + -0.001966400071978569, + 0.011063551530241966, + -0.026849186047911644, + -0.006232603453099728, + -0.004092697519809008, + -0.0049057938158512115, + -0.0013812428805977106, + 0.005490950774401426, + -0.0002959806297440082, + -0.024807939305901527, + -0.03897418454289436, + -0.00964148435741663, + -0.019514309242367744, + -0.022725868970155716, + -0.053562287241220474, + -0.016615740954875946, + -0.016819864511489868, + 0.06292480230331421, + 0.018602551892399788, + 0.009226430207490921, + 0.00022389914374798536, + 0.02239926904439926, + -0.02558361366391182, + 0.022834734991192818, + -0.04221296310424805, + -0.01082540675997734, + 0.003840944031253457, + -0.020820707082748413, + -0.018507294356822968, + -0.021746071055531502, + 0.03467395901679993, + -0.0229572094976902, + 0.023542366921901703, + -0.0067531210370361805, + -0.026372894644737244, + -0.022630611434578896, + -0.012955105863511562, + -0.016955947503447533, + 0.004946618806570768, + -0.010607673786580563, + 0.028631873428821564, + -0.013193251565098763, + -0.005895798094570637, + -0.029421154409646988, + -0.0034701176919043064, + 0.03995398432016373, + 0.00911756418645382, + -0.004575792234390974, + 0.010355919599533081, + -0.010947881266474724, + 0.026549803093075752, + 0.0031077966559678316, + -0.003441200125962496, + -0.014166245236992836, + -0.02001781575381756, + -0.0058175502344965935, + -0.015663158148527145, + -0.010233445093035698, + 0.008076529018580914, + -0.027897024527192116, + -0.004494142718613148, + 0.046050503849983215, + -0.018303168937563896, + -0.010192620567977428, + 0.019623175263404846, + 0.027624858543276787, + 0.023365458473563194, + -0.055739615112543106, + 0.025991862639784813, + 0.022712260484695435, + -0.007205597124993801, + -0.028822388499975204, + 0.01251283660531044, + -0.002371247159317136, + 0.026073511689901352, + -0.02058936469256878, + 0.019990598782896996, + -0.029121771454811096, + 0.032959312200546265, + -0.027257435023784637, + -0.00039761766674928367, + -0.011499017477035522, + -0.017527496442198753, + 0.01053963229060173, + -0.012764589861035347, + -0.02229040302336216, + -0.005150743294507265, + -0.0038477482739835978, + -0.013642325066030025, + -0.009832000359892845, + 0.0008220266317948699, + 0.0008326581446453929, + 0.001949389697983861, + -0.04558781906962395, + 0.02605990320444107, + -0.004126718267798424, + 0.019500700756907463, + 0.031380750238895416, + -0.0033731586299836636, + 0.0643944963812828, + 0.011288088746368885, + 0.028005890548229218, + 0.009621071629226208, + -0.015676766633987427, + -0.002330422168597579, + 0.011165614239871502, + -0.01834399439394474, + -0.025910211727023125, + -0.03067311830818653, + -0.007933641783893108, + -0.010219836607575417, + 0.0005192419048398733, + -0.015241301618516445, + -0.028577439486980438, + -0.01571759209036827, + -0.0029410948045551777, + 0.004528163466602564, + 0.008695706725120544, + 0.033993545919656754, + 0.002995528047904372, + -0.014465628191828728, + -0.00017690796812530607, + 0.01543181762099266, + 0.014275111258029938, + 0.005354867782443762, + 0.008573232218623161, + -0.017336979508399963, + 0.014220678247511387, + 0.058080244809389114, + -0.012805414386093616, + -0.01578563265502453, + -0.02200462855398655, + -0.007688692305237055, + 0.04918041452765465, + 0.017146464437246323, + -0.03949129953980446, + 0.012240669690072536, + -0.040797699242830276, + 0.013097993098199368, + 0.001583666424266994, + -0.038892533630132675, + 0.012744177132844925, + -0.017173681408166885, + 0.006630646530538797, + 0.039464082568883896, + -0.0006047190399840474, + -0.016384398564696312, + 0.013431396335363388, + -0.029666103422641754, + 0.03826655447483063, + 0.018643377348780632, + 0.024685464799404144, + 0.017336979508399963, + 0.0028645482379943132, + -0.011206438764929771, + -0.01703759841620922, + -0.005490950774401426, + 0.011573863215744495, + -0.03641582280397415, + -0.001915368833579123, + -0.019623175263404846, + 0.006076108198612928, + -0.014397586695849895, + -0.0012766290456056595, + 0.03094528429210186, + 0.008586840704083443, + -0.022644219920039177, + -0.0024937218986451626, + -0.005684869363903999, + 0.023011643439531326, + 0.01001571211963892, + -0.009648287668824196, + 0.028523007407784462, + 0.009988496080040932, + 0.020426064729690552, + 0.022140711545944214, + 0.00030852577765472233, + -0.017609145492315292, + 0.018643377348780632, + -0.004640432074666023, + 0.007634258829057217, + -0.0009738443186506629, + -0.006831368897110224, + -0.012220257893204689, + -0.011920874938368797, + 0.0027471764478832483, + -0.018003787845373154, + 0.04019893333315849, + -0.016329966485500336, + -0.021296996623277664, + 0.016683781519532204, + 0.0066646672785282135, + 0.019704824313521385, + 0.017268938943743706, + 0.0017061411635950208, + -0.012485619634389877, + 0.013621913269162178, + -0.003179240273311734, + -0.040960997343063354, + 0.016670173034071922, + -0.009464575909078121, + 0.02510732226073742, + 0.01307077705860138, + 0.03715067356824875, + -0.03527272492647171, + -0.028359707444906235, + 0.005341259762644768, + 0.010315095074474812, + -0.01759553886950016, + -0.019718432798981667, + 0.037205103784799576, + -0.007913229055702686, + -0.012662527151405811, + -0.004187955986708403, + -0.020276373252272606, + 0.007790754549205303, + -0.009954474866390228, + -0.013826037757098675, + 0.006892606150358915, + -0.006974256131798029, + 0.021963803097605705, + 0.001195829827338457, + -0.011233655735850334, + 0.010185816325247288, + -0.013240880332887173, + 0.030156003311276436, + -0.02087513916194439, + -0.0054705385118722916, + -0.009206018410623074, + 0.025243405252695084, + -0.011533038690686226, + -0.005837962497025728, + 0.015853675082325935, + -0.005106516182422638, + 0.004963628947734833, + -0.004575792234390974, + -0.012458402663469315, + 0.016207490116357803, + 0.02058936469256878, + 0.01139015145599842, + 0.01345180906355381, + 0.01198891643434763, + 0.01434315275400877, + -0.019922558218240738, + 0.019541526213288307, + -0.02483515627682209, + 0.011519430205225945, + -0.018956368789076805, + 0.007103534881025553, + 0.009913650341331959, + -0.019024409353733063, + -0.03856593742966652, + 0.016112232580780983, + 0.01833038590848446, + -0.019160492345690727, + 0.002000420819967985, + 0.0054467241279780865, + 0.03897418454289436, + -0.008083333261311054, + 0.02454938180744648, + 0.011315305717289448, + -0.009301275946199894, + -0.01955513469874859, + -0.0008853903273120522, + -0.03404797986149788, + 0.018384819850325584, + -0.02830527350306511, + 0.005358269903808832, + -0.00851879920810461, + 0.00794725026935339, + -0.030400952324271202, + 0.009158388711512089, + 0.013240880332887173, + 0.023297417908906937, + -0.015581509098410606, + -0.013934903778135777, + 0.03369416296482086, + 0.03206116706132889, + 0.006889204494655132, + 0.02201823703944683, + 0.009648287668824196, + -0.0015096713323146105, + -0.007770341821014881, + 0.015241301618516445, + 0.01260128989815712, + 0.0047867209650576115, + 0.03949129953980446, + -0.0015913210809230804, + 0.006389099173247814, + 0.0001828615932026878, + 0.013805625028908253, + -0.02493041381239891, + -0.024154741317033768, + -0.022916385903954506, + -0.01109757274389267, + 0.023555975407361984, + -0.015350167639553547, + 0.01665656454861164, + 0.02982940338551998, + 0.0372595377266407, + 0.01739141345024109, + -0.026100728660821915, + 0.00018583840574137866, + 0.005725694354623556, + -0.03347643092274666, + -0.041723061352968216, + -0.017649970948696136, + -0.012968714348971844, + -0.015064393170177937, + 0.0032404775265604258, + -0.006474150810390711, + 0.04542452096939087, + -0.03170735016465187, + 0.040770482271909714, + -0.019419051706790924, + -0.03415684401988983, + 0.008083333261311054, + -0.009199214167892933, + -0.0014543875586241484, + -0.019500700756907463, + 0.0016338471323251724, + 0.005749508738517761, + -0.023814532905817032, + -0.012628506869077682, + -0.02933950535953045, + -0.006596625782549381, + 0.010172207839787006, + 0.02586938813328743, + 0.00879096519201994, + 0.040852129459381104, + 0.014139028266072273, + 0.01729615591466427, + 0.023937007412314415, + 0.019636783748865128, + 0.009444163180887699, + 0.004361461848020554, + -0.006930029019713402, + 0.012642115354537964, + 0.015758417546749115, + -0.016343573108315468, + 0.049343712627887726, + -0.03143518418073654, + 0.0143023282289505, + -0.008178590796887875, + 0.03998119756579399, + 0.04939814656972885, + 0.012492423877120018, + 0.015676766633987427, + 0.0006987014203332365, + -0.015499859116971493, + 0.03358529508113861, + -0.02278030291199684, + 0.0018966575153172016, + 0.0344017930328846, + 0.003857954405248165, + 0.03921913355588913, + 0.020358024165034294, + 0.00444311136379838, + 0.0071307518519461155, + -0.003019342664629221, + -0.0031401163432747126, + -0.0011618089629337192, + -0.0019629979506134987, + -0.020276373252272606, + -0.036443039774894714, + -0.0302920863032341, + 0.015200476162135601, + -0.023583192378282547, + -0.03323148190975189, + 0.0005562394508160651, + -0.024494947865605354, + -0.0031401163432747126, + -1.732932469167281e-5, + 0.0024477937258780003, + 0.0035177466925233603, + 0.029693320393562317, + 0.03960016742348671, + 0.037858303636312485, + -3.6811528843827546e-5, + 0.005882189609110355, + 0.009029109962284565, + -0.02229040302336216, + -0.0071307518519461155, + -0.03244219720363617, + 0.012499228119850159, + 0.013553871773183346, + -0.014996351674199104, + 0.015118826180696487, + -0.025352271273732185, + -0.016479656100273132, + -0.018588943406939507, + 0.007872404530644417, + 0.0035109426826238632, + -0.0048955874517560005, + -0.011628296226263046, + -0.012642115354537964, + 0.006872193887829781, + -0.02117452211678028, + 0.010832211002707481, + -0.0181534793227911, + 0.027692900970578194, + 0.009308080188930035, + 0.012737372890114784, + -0.0020769676193594933, + 0.0150916101410985, + -0.001968101132661104, + -0.02022194117307663, + -0.011635100468993187, + 0.0451795719563961, + 0.026073511689901352, + -0.007872404530644417, + -0.04956144466996193, + 0.008573232218623161, + 0.020943181589245796, + 0.0008947460446506739, + -0.02795145846903324, + -0.012131803669035435, + 0.010988705791532993, + -0.010362723842263222, + -0.02371927537024021, + -0.011934483423829079, + -0.01113839726895094, + -0.002854341873899102, + -0.008777356706559658, + -0.007620650809258223, + 0.007797558791935444, + 0.020739056169986725, + 0.01607140712440014, + -0.0033544471953064203, + -0.02868630550801754, + 0.0009559834143146873, + 0.005708683747798204, + -0.03696015477180481, + 0.0234335009008646, + 0.017745228484272957, + -0.002248772419989109, + 0.07805723696947098, + 0.024875981733202934, + -0.018371211364865303, + -0.019351009279489517, + -0.005769921001046896, + 0.06504769623279572, + -0.004106306005269289, + -0.01256046537309885, + -0.011220047250390053, + -0.007484567817300558, + 0.019827300682663918, + 0.01891554333269596, + -0.007212401367723942, + 0.014125420711934566, + 0.006123736966401339, + -0.011349325999617577, + 0.0012332525802776217, + -0.012186236679553986, + -0.007123947609215975, + -0.007137555629014969, + 0.03241498023271561, + -0.004548575729131699, + -0.00669868802651763, + 0.012648919597268105, + -0.0014994650846347213, + 0.028523007407784462, + -0.00320985889993608, + -0.0025821758899837732, + -0.011546646244823933, + 0.0035143448039889336, + -0.007226009853184223, + 0.0008241529576480389, + -0.010784581303596497, + 0.03358529508113861, + -0.0004911747528240085, + -0.018112653866410255, + 0.010444373823702335, + -0.003898779395967722, + 0.024889590218663216, + 0.03706902265548706, + -0.0021024830639362335, + -0.0056542507372796535, + 0.002953002229332924, + -0.022331228479743004, + -0.004011048004031181, + 0.030537035316228867, + 0.04006284847855568, + -0.00698786461725831, + 0.002313411794602871, + 0.009423751384019852, + -0.0017843889072537422, + -0.0017325072549283504, + 0.016955947503447533, + 0.00879096519201994, + 0.014656144194304943, + -0.026767535135149956, + 0.010158599354326725, + -0.03619809076189995, + 0.04204966127872467, + -0.018221519887447357, + -0.0182623453438282, + -0.0074913715943694115, + -0.017187288030982018, + -0.012825827114284039, + 0.03442901000380516, + -0.0050997124053537846, + -0.009838804602622986, + -0.004548575729131699, + -0.019405443221330643, + -0.0036640360485762358, + -0.006290439050644636, + 0.04376430809497833, + 0.020711839199066162, + -0.013016343116760254, + -0.017350587993860245, + -0.01260128989815712, + 0.02162359654903412, + -0.006130541209131479, + -0.0023865564726293087, + -0.007872404530644417, + 0.0159897580742836, + -0.014057379215955734, + -0.03943686559796333, + 0.010764168575406075, + 0.007504980079829693, + 0.03568097576498985, + 0.011301697231829166, + -0.020575756207108498, + -0.04117872938513756, + 0.0014356761239469051, + -0.018303168937563896, + -0.018207911401987076, + -0.028713522478938103, + -0.01788131147623062, + 0.022263186052441597, + -0.004667648579925299, + 0.011247264221310616, + 0.021895762532949448, + -0.02936672233045101, + 0.01547264214605093, + -0.009035914205014706, + -0.015200476162135601, + -0.0025906809605658054, + -0.009981691837310791, + 0.014179853722453117, + 0.0036776443012058735, + 0.014179853722453117, + 0.0028560429345816374, + -0.01345180906355381, + -0.025828562676906586, + 0.005133733153343201, + -0.0020684623159468174, + -0.020249158143997192, + -0.01974564976990223, + -0.021854937076568604, + -0.0038851709105074406, + 0.0269172266125679, + 0.013934903778135777, + 0.015214084647595882, + 0.00025387993082404137, + 0.002551557030528784, + -0.015241301618516445, + -0.022793909534811974, + -0.00907673966139555, + -0.0046982672065496445, + -0.011342521756887436, + -0.01628914102911949, + -0.009988496080040932, + -0.07511784136295319, + -0.025243405252695084, + 0.017731621861457825, + 0.02746155858039856, + 0.01616666652262211, + -0.020725447684526443, + -0.008301066234707832, + 0.0122678866609931, + 0.009791174903512001, + 0.021038439124822617, + -0.01721450500190258, + -0.052909087389707565, + 0.007899620570242405, + 0.027039701119065285, + 0.02286195196211338, + 0.010240249335765839, + -0.003779706545174122, + -0.008294261991977692, + -0.0022844942286610603, + -0.020739056169986725, + -0.010553240776062012, + -0.02529783919453621, + 0.03021043725311756, + -0.003742283908650279, + -0.011934483423829079, + 0.03949129953980446, + -0.029475588351488113, + 0.007824774831533432, + -0.022712260484695435, + 0.001054643653333187, + 0.021378647536039352, + -0.005198372527956963, + -0.017799662426114082, + 0.007906424812972546, + 0.007579825818538666, + 0.002073565497994423, + 0.009158388711512089, + -0.007348484359681606, + 0.05312682315707207, + 0.02227679453790188, + 0.013853253796696663, + -0.016221098601818085, + -0.017051205039024353, + -0.02079349011182785, + 0.009335297159850597, + -0.012492423877120018, + 0.02830527350306511, + -0.012193040922284126, + -0.006059097591787577, + 0.023447109386324883, + 0.02792424149811268, + 0.0006748868618160486, + 0.023868966847658157, + -0.017173681408166885, + -0.010784581303596497, + 0.00794725026935339, + -0.008164983242750168, + -0.01740502193570137, + -0.005092908162623644, + 0.0035381591878831387, + 0.05143939331173897, + 0.0007637661183252931, + -0.011260871775448322, + -0.0108186025172472, + 0.001397402840666473, + 0.023814532905817032, + 0.0006668069399893284, + 0.00199871975928545, + -0.009008698165416718, + -0.011328913271427155, + 0.018969977274537086, + -0.03010156936943531, + -0.0031860442832112312, + 0.021038439124822617, + -0.01312521006911993, + 0.02146029658615589, + 0.023487934842705727, + -0.004987443797290325, + 0.015880892053246498, + -0.007743125315755606, + 0.002805011812597513, + 0.013757996261119843, + -0.008015291765332222, + -0.004654040094465017, + 0.0033272304572165012, + 0.006725904531776905, + 0.01024705357849598, + -0.015608725138008595, + 0.010498806834220886, + 0.024984847754240036, + -0.014492844231426716, + 0.01434315275400877, + 0.027515992522239685, + 0.02596464566886425, + -0.001007865066640079, + 0.05971324071288109, + -0.0008870913879945874, + -0.009035914205014706, + -0.009219626896083355, + 0.011179222725331783, + 0.0019051627023145556, + 0.013621913269162178, + 0.021841328591108322, + -0.0355721078813076, + 0.0026400110218673944, + 0.015037177130579948, + -0.003657231805846095, + 0.019772866740822792, + -0.008205807767808437, + -0.016574915498495102, + -0.010179012082517147, + 0.01890193484723568, + -0.026386503130197525, + 8.483927376801148e-5, + -0.01147180050611496, + 0.022630611434578896, + 0.0076954965479671955, + -0.013111601583659649, + -0.01722811348736286, + -0.0024154740385711193, + -0.021188130602240562, + 0.025651654228568077, + -0.016520481556653976, + -0.040307797491550446, + -0.013792016543447971, + -0.010968293994665146, + 0.013084384612739086, + -0.0353543758392334, + 0.02278030291199684, + 0.034020762890577316, + -0.004902391694486141, + 0.02171885408461094, + -0.0022623806726187468, + -0.0029581051785498857, + 0.0025855780113488436, + 0.006215593311935663, + 0.011458192951977253, + 0.0150916101410985, + -0.0022589785512536764, + -0.011635100468993187, + 0.02558361366391182, + -0.0043308427557349205, + 0.0029172804206609726, + -0.0032881065271794796, + 0.008505190722644329, + -0.008450756780803204, + -0.004701669327914715, + -0.007083122618496418, + -0.013193251565098763, + -0.015880892053246498, + -0.024154741317033768, + 0.02614155411720276, + 0.02465824782848358, + -0.009063131175935268, + -0.0006855183746665716, + -0.015690375119447708, + -0.0001947688579093665, + 0.0193646177649498, + 0.000798212131485343, + -0.01710563898086548, + -0.012009329162538052, + -0.012635311111807823, + 0.005341259762644768, + -9.339762618765235e-5, + 0.01491470169275999, + -0.039382435381412506, + -0.006627244409173727, + -0.004824143834412098, + -0.023555975407361984, + -0.005616827867925167, + 0.0034786229953169823, + 0.011737163178622723, + 0.0023355253506451845, + 0.013063972815871239, + -0.005120124667882919, + -0.02133782207965851, + -0.006385697051882744, + -0.01401655375957489, + 0.01834399439394474, + -0.007879208773374557, + -0.007539000827819109, + 0.01026066206395626, + -0.012104586698114872, + 0.03679685667157173, + 0.009335297159850597, + 0.00045332664740271866, + 0.028087541460990906, + -0.02529783919453621, + 0.0012315515195950866, + 0.008872614242136478, + 0.030428169295191765, + 0.010138186626136303, + -0.0023661439772695303, + -0.003888573031872511, + -0.003004033351317048, + -0.006477552931755781, + 0.002935991855338216, + 0.008648077957332134, + -0.03385746106505394, + -0.005239197518676519, + -0.01397572923451662, + -0.0019936165772378445, + 0.013860058039426804, + 0.005184764042496681, + -0.004181151743978262, + 0.0020089258905500174, + -0.015663158148527145, + 0.026073511689901352, + 0.01345180906355381, + 0.008117353543639183, + -0.005698477383702993, + 0.0010776076233014464, + 0.009335297159850597, + -0.014737794175744057, + 0.015567900612950325, + -0.0020667612552642822, + 0.0016695689409971237, + 0.0037116650491952896, + -0.0013285106979310513, + -0.030400952324271202, + 0.007872404530644417, + 0.00856642797589302, + 0.025338662788271904, + -0.025229796767234802, + -0.011049943044781685, + 0.005610023625195026, + -0.012390361167490482, + -0.03742283955216408, + -0.01882028579711914, + -0.0012868352932855487, + -0.002709753578528762, + -0.020575756207108498, + 0.0050690933130681515, + -0.002486917655915022, + 0.011213243007659912, + -0.00726683484390378, + -0.004752700217068195, + -0.012410773895680904, + 0.008722923696041107, + -0.00019466254161670804, + -0.02774733304977417, + -0.022548960521817207, + -0.026032686233520508, + 0.011886853724718094, + 0.009791174903512001, + 0.025638045743107796, + -0.02125617116689682, + -0.02097039669752121, + 0.021773288026452065, + 0.00517455767840147, + 0.015336559154093266, + 0.003143518464639783, + -0.03148961812257767, + 0.004916000179946423, + -0.0063074491918087006, + -8.696557051734999e-5, + 0.013390571810305119, + -0.004181151743978262, + 0.01227469090372324, + -0.011165614239871502, + 0.015404600650072098, + 0.0019715032540261745, + 0.027788158506155014, + -0.007974466308951378, + 0.023664841428399086, + -0.028550222516059875, + -0.0014730989933013916, + 0.015214084647595882, + 0.037749435752630234, + 0.0024597011506557465, + 0.011689533479511738, + -0.01965039223432541, + -0.008484777994453907, + -0.019963383674621582, + 0.013662737794220448, + 0.03745005279779434, + -0.018303168937563896, + 0.013186447322368622, + 0.017718013375997543, + 0.03393911197781563, + -0.023664841428399086, + -0.00945777166634798, + -0.008498386479914188, + 0.020834313705563545, + 0.00038443462108261883, + 0.012716961093246937, + 0.006974256131798029, + 0.0028645482379943132, + 0.02623681165277958, + -0.004749298561364412, + 0.00855962373316288, + 0.013370159082114697, + 0.03875645250082016, + -0.009763958863914013, + 0.011294892989099026, + -0.003476921934634447, + 0.004555379971861839, + -0.006902812514454126, + 0.014737794175744057, + 0.0066646672785282135, + 0.035490456968545914, + 0.013900883495807648, + -0.008532406762242317, + -0.015445426106452942, + -0.012669331394135952, + -0.00020454982586670667, + 0.0212697796523571, + 0.0074029178358614445, + -0.002233463106676936, + -0.017840487882494926, + -0.012335928156971931, + -0.0068381731398403645, + -0.043601009994745255, + -0.025229796767234802, + -0.006562605034559965, + -0.002886661561205983, + -0.008716119453310966, + 0.010138186626136303, + 0.008899831213057041, + -0.01335655152797699, + 0.01721450500190258, + -0.006974256131798029, + 0.0056338380090892315, + -0.006756523158401251, + -0.01741863042116165, + -0.028849605470895767, + -0.011512625962495804, + 0.00996808335185051, + 0.015227693133056164, + 0.010641694068908691, + -0.04229461029171944, + 0.0006731858011335135, + -0.0013599799713119864, + -0.006429924163967371, + 0.025052888318896294, + -0.02248091995716095, + -0.012941497378051281, + 0.004793525207787752, + 0.006671471521258354, + -0.00038294619298540056, + 0.00379671691916883, + 0.016969555988907814, + -0.041804712265729904, + -0.00630064494907856, + 0.030781986191868782, + 0.018017396330833435, + 0.016057800501585007, + 0.02107926458120346, + 0.038429852575063705, + -0.011614687740802765, + 0.01929657533764839, + 0.007777146063745022, + -0.0020531530026346445, + 0.0017393114976584911, + 0.02303886041045189, + 0.035599324852228165, + -0.009280864149332047, + 0.005490950774401426, + -0.04667648673057556, + -0.006270026322454214, + -0.002512433333322406, + -0.013186447322368622, + -0.003306817961856723, + -0.01063488982617855, + 0.0014178152196109295, + 0.006201984826475382, + 0.007464155089110136, + -0.02972053736448288, + -0.011396954767405987, + 0.002379752229899168, + -0.0060012624599039555, + 0.0063822949305176735, + -0.006076108198612928, + -0.01368995476514101, + -0.00012917257845401764, + 0.01901080086827278, + -0.016139449551701546, + 9.366340964334086e-5, + -0.0065796151757240295, + -0.016316358000040054, + -0.010512415319681168, + 0.013138818554580212, + -0.019527917727828026, + 0.00104018475394696, + 0.009906846098601818, + 0.0010325300972908735, + -0.010158599354326725, + -0.003325529396533966, + 0.01937822625041008, + -0.0346195288002491, + -0.012866652570664883, + -0.004987443797290325, + -0.007096731103956699, + 0.014982743188738823, + -0.001866038772277534, + 0.010662106797099113, + 0.0003255361516494304, + 0.007185184862464666, + -0.02080709859728813, + 0.0045145549811422825, + -0.01628914102911949, + 0.037395622581243515, + 0.0019119668286293745, + -0.0012290000449866056, + -0.012771394103765488, + 0.04390038922429085, + -0.006525182165205479, + 0.015445426106452942, + 0.014288719743490219, + -0.012410773895680904, + -0.0250120647251606, + 0.020099466666579247, + 0.016534090042114258, + -0.0043410491198301315, + -0.01797657087445259, + -0.002896867925301194, + 0.012771394103765488, + 0.019922558218240738, + -0.006814358755946159, + 0.00641631567850709, + -0.01937822625041008, + 0.0030822809785604477, + -0.024875981733202934, + -0.018561728298664093, + -0.0026349080726504326, + 0.008253436535596848, + -0.007851991802453995, + 0.00540589913725853, + -0.01675182394683361, + -0.002017431193962693, + 0.028931256383657455, + 0.017064813524484634, + 0.004174347501248121, + -0.008879418484866619, + 0.07375701516866684, + -0.0319795161485672, + 0.011117984540760517, + -0.03331312909722328, + 0.004691462963819504, + -0.014846660196781158, + 0.0037116650491952896, + -0.030809201300144196, + 0.010417156852781773, + -0.02980218641459942, + -0.03426571190357208, + -0.03489169478416443, + 0.009675504639744759, + -0.010566848330199718, + 0.024481339380145073, + 0.04204966127872467, + -0.010315095074474812, + -0.005980849731713533, + 0.017609145492315292, + -0.013513046316802502, + -0.0025158352218568325, + 0.01684708148241043, + -0.00731446361169219, + -0.005888993851840496, + -0.03706902265548706, + 0.03745005279779434, + 0.015390993095934391, + -0.007069514133036137, + 0.0021007820032536983, + 0.012070566415786743, + -0.006004664581269026, + 0.023365458473563194, + 0.026087120175361633, + -0.04654040187597275, + -0.025148147717118263, + 0.01635718159377575, + -0.009519008919596672, + -0.013009538874030113, + 0.00500785605981946, + -0.011805204674601555, + -0.004497544839978218, + -0.015935324132442474, + -0.015554292127490044, + -0.01288026012480259, + 0.02463103085756302, + -0.011247264221310616, + 0.012982322834432125, + -0.005596415139734745, + -0.016670173034071922, + 0.015758417546749115, + -0.01510521862655878, + -0.012220257893204689, + 0.01518686767667532, + -0.00613394333049655, + 0.0003652979212347418, + 0.0013234076322987676, + -0.013043560087680817, + 0.007137555629014969, + -0.008532406762242317, + -0.008260240778326988, + 0.014724185690283775, + -0.018139870837330818, + -0.009791174903512001, + -0.0014373771846294403, + 0.02098400518298149, + -0.013322530314326286, + -0.00804250780493021, + -0.028005890548229218, + -0.03377581387758255, + 0.004596204962581396, + -0.011798400431871414, + -0.008811376988887787, + 0.00208036950789392, + 0.01965039223432541, + -0.0017962962156161666, + -0.002711454639211297, + 0.002788001438602805, + 0.01871141977608204, + -0.010730148293077946, + -0.005579404998570681, + -0.013934903778135777, + -0.003606200683861971, + 0.027897024527192116, + -0.002638310194015503, + 0.019228534772992134, + -0.001579413888975978, + 0.00528682628646493, + 0.003158827777951956, + -0.014234286732971668, + 0.004062078893184662, + 0.0008560474379919469, + 0.015527076087892056, + -0.000982349505648017, + 0.010798189789056778, + -0.019609566777944565, + -0.00439548259600997, + 0.004705071449279785, + 0.0011014221236109734, + -0.01759553886950016, + 0.00517455767840147, + 6.996848242124543e-6, + 0.015567900612950325, + 0.0003986808005720377, + -0.0029308886732906103, + 0.009954474866390228, + -0.005749508738517761, + -0.03225168213248253, + 0.016411615535616875, + -0.00489218533039093, + 0.0036198091693222523, + -0.004480534233152866, + 0.05764477699995041, + 0.008171786554157734, + -0.005109918303787708, + -0.013853253796696663, + 0.0047220815904438496, + -0.024141132831573486, + 0.0027743931859731674, + 0.02303886041045189, + 0.008675293996930122, + -0.007171576377004385, + -0.007804362569004297, + -0.008995089679956436, + -0.0019391834503039718, + 0.020276373252272606, + -0.012458402663469315, + 0.00569507572799921, + -0.013213664293289185, + 0.0030822809785604477, + 0.0009976588189601898, + 0.020276373252272606, + 0.0415869802236557, + -0.007198793347924948, + -0.00011471375910332426, + 0.003226869273930788, + -0.0015232795849442482, + -0.005994458217173815, + -0.004211770370602608, + 0.0010895149316638708, + 0.0036130049265921116, + 0.025188971310853958, + 0.023841749876737595, + 0.003963418770581484, + -0.02925785444676876, + -0.008777356706559658, + -0.016860689967870712, + 0.006028478965163231, + 0.019405443221330643, + 0.01170314196497202, + -0.015826458111405373, + 0.024413298815488815, + -0.0010053134756162763, + -0.02257617749273777, + 0.02434525638818741, + 0.022059062495827675, + -0.005300434771925211, + -0.01368995476514101, + 0.0043172347359359264, + -0.006048891227692366, + -0.003179240273311734, + -0.000360620062565431, + -0.006127139087766409, + -0.02107926458120346, + 0.008409932255744934, + 0.005484146997332573, + -0.012410773895680904, + -0.013363354839384556, + -0.0015590013936161995, + -0.015595117583870888, + 0.017364196479320526, + 0.012002524919807911, + -0.0066544609144330025, + -0.016234707087278366, + -0.02446773275732994, + -0.020752664655447006, + -0.0013999543152749538, + -0.00019795830303337425, + -0.016384398564696312, + -0.0003746536385733634, + -0.0036266131792217493, + -0.015608725138008595, + 0.001973204081878066, + -0.004861566703766584, + 0.006746317259967327, + -0.016520481556653976, + 0.00012481366866268218, + 0.004079089500010014, + 0.015078001655638218, + 0.013553871773183346, + 0.00935570988804102, + 0.0005902601988054812, + 0.005878787487745285, + -0.012247473932802677, + 0.007123947609215975, + -0.011512625962495804, + 0.008409932255744934, + 0.001874543959274888, + 0.020371632650494576, + -0.014411194249987602, + 0.0076002380810678005, + -0.019609566777944565, + -0.010709735564887524, + 0.014642535708844662, + 0.0024001647252589464, + 0.011117984540760517, + 0.0056440443731844425, + -0.0026825370732694864, + -0.01702398993074894, + -0.03802160173654556, + -0.011784791946411133, + -0.005732498597353697, + 0.026223203167319298, + -0.0011209840886294842, + -0.003912387415766716, + -0.006399305071681738, + 0.008164983242750168, + -0.0008415885968133807, + 0.02566526271402836, + -0.005331053398549557, + -0.030455386266112328, + 0.002571969525888562, + -0.0018184097716584802, + -0.011036335490643978, + -0.01882028579711914, + 0.00803570356220007, + -0.012812218628823757, + 0.019255751743912697, + 0.003340838709846139, + 0.004776515066623688, + -0.016329966485500336, + -0.023923398926854134, + -0.01842564530670643, + 0.011301697231829166, + -0.0002183707692893222, + -0.013948512263596058, + 0.005548786371946335, + 0.00038889984716661274, + -0.018983585759997368, + 0.0003589190309867263, + -0.002287896117195487, + 0.0035721799358725548, + 0.00686879176646471, + 0.00894065573811531, + 0.016139449551701546, + -0.015459034591913223, + -0.010185816325247288, + -0.003066971665248275, + 0.008484777994453907, + 0.016384398564696312, + 0.010274269618093967, + -0.016316358000040054, + 0.019160492345690727, + 0.005388888530433178, + -0.010770972818136215, + 0.0327143631875515, + -0.014193462207913399, + 0.013247684575617313, + -0.002953002229332924, + -0.004483936354517937, + 0.009063131175935268, + -0.00039379030931741, + 0.025529179722070694, + -0.03491891175508499, + 0.00964148435741663, + -0.0012417577672749758, + 0.004215172491967678, + 0.012424382381141186, + -0.019813692197203636, + 0.02079349011182785, + -0.015009960159659386, + -0.009539421647787094, + 0.02023554965853691, + 0.00917880143970251, + -0.007001472637057304, + 0.009342101402580738, + 0.008477973751723766, + 0.0016440532635897398, + 0.004858164582401514, + 0.018275953829288483, + 0.012737372890114784, + 0.004837752319872379, + -0.0035789841786026955, + -0.003118002787232399, + 0.006463944911956787, + -0.034864477813243866, + -0.0046880608424544334, + 0.009471380151808262, + -0.002378051169216633, + 0.00585157098248601, + 0.0071103391237556934, + 0.015880892053246498, + 0.0067633274011313915, + -0.0023338242899626493, + 0.004507750738412142, + -0.0025583612732589245, + 0.02559722028672695, + -0.017854096367955208, + 0.000982349505648017, + -0.023937007412314415, + -0.0025073301512748003, + 0.011859637685120106, + -0.014642535708844662, + 0.02709413506090641, + -0.0072396183386445045, + 0.014656144194304943, + -0.004147130995988846, + -0.016955947503447533, + -0.0021705245599150658, + 0.03178900107741356, + -0.00832147803157568, + -0.004752700217068195, + 0.003541561309248209, + 0.0028271253686398268, + -0.002689341315999627, + 0.0067531210370361805, + 0.00019381202582735568, + -0.015513467602431774, + -0.01788131147623062, + -0.022508136928081512, + -0.00822622049599886, + -0.01939183473587036, + -0.03075476922094822, + -0.012934694066643715, + -0.0002177328715333715, + 0.0038511501625180244, + -0.01619388349354267, + 0.023025251924991608, + 0.01007014513015747, + 0.01175077073276043, + 0.008927048183977604, + -0.003691252553835511, + 0.0014407793059945107, + 0.004238986875861883, + -0.016955947503447533, + -0.013104797340929508, + 0.00031320363632403314, + 0.003087384160608053, + -0.016983164474368095, + 0.0004911747528240085, + 0.013349747285246849, + -0.007845187559723854, + 0.02982940338551998, + -0.009328492917120457, + -0.024998456239700317, + 0.02416834980249405, + 0.024699073284864426, + 0.018466468900442123, + 0.0023355253506451845, + -0.008375911973416805, + 0.012574073858559132, + -0.001645754324272275, + -0.005300434771925211, + 0.01223386637866497, + -0.0070354933850467205, + 0.003681046422570944, + 0.0008335086749866605, + -0.0066646672785282135, + 0.01231551542878151, + 0.0018541314639151096, + -0.010240249335765839, + -2.373479765083175e-5, + 0.004541771486401558, + -0.0063925012946128845, + -0.020344415679574013, + 0.01675182394683361, + 0.023746492341160774, + 0.009389730170369148, + 0.0058175502344965935, + 0.0032625910826027393, + 0.012342732399702072, + -0.01955513469874859, + -0.0029410948045551777, + -0.02322937548160553, + 0.002604289213195443, + 0.013376963324844837, + -0.002231762045994401, + 0.01453366968780756, + -0.013383767567574978, + 0.01142417173832655, + -0.0048955874517560005, + 0.0012298505753278732, + 0.011675924994051456, + -0.007736321073025465, + -0.0015955737326294184, + -0.011743967421352863, + -0.006076108198612928, + 0.004201564006507397, + 0.00731446361169219, + -0.0017962962156161666, + 0.005640642251819372, + -0.01675182394683361, + -0.007389309350401163, + 0.009716329164803028, + 0.004021253902465105, + -0.004344451241195202, + -0.0021365038119256496, + -0.019242143258452415, + -0.00399403739720583, + 0.011403759010136127, + -0.005140536930412054, + 0.0007161370594985783, + 0.002670629881322384, + -0.017935745418071747, + -0.005596415139734745, + 0.011784791946411133, + -0.008586840704083443, + -0.00754580507054925, + -0.0006289588054642081, + -0.005191568285226822, + 0.0263320691883564, + -0.001110777840949595, + 0.0015266817063093185, + -0.006882400251924992, + 0.003977027256041765, + -0.001086963340640068, + 0.008634469471871853, + 0.000748882011976093, + 0.014193462207913399, + 0.008396323770284653, + -0.022712260484695435, + 0.005712085869163275, + -0.016466049477458, + -0.009777567349374294, + -0.002296401420608163, + 0.002250473480671644, + -0.004647235851734877, + -0.024100307375192642, + 0.012084174901247025, + 0.037967171519994736, + 0.003759294282644987, + 0.0042321826331317425, + -0.01458810269832611, + -0.004643834196031094, + 0.01053963229060173, + 0.015050784684717655, + 0.005392290651798248, + -0.0017120948759838939, + 0.005433115642517805, + 0.009056326933205128, + 0.019990598782896996, + -0.003606200683861971, + 0.014765010215342045, + -0.020153898745775223, + -0.006062499713152647, + 0.004218574613332748, + -0.004031460266560316, + 0.011002314276993275, + -0.0013489231932908297, + -0.029475588351488113, + -0.014805835671722889, + 0.006331263575702906, + 0.002031039446592331, + -0.007763538043946028, + -0.007300855591893196, + 0.015241301618516445, + -0.010308290831744671, + 0.018697811290621758, + 0.0065796151757240295, + 0.013887275010347366, + -0.0010971695883199573, + 0.010090557858347893, + -0.0012255979236215353, + -0.008062920533120632, + 0.020725447684526443, + -0.024984847754240036, + 0.0005451827310025692, + 0.007749929558485746, + -0.007409722078591585, + 0.005181361921131611, + 0.017663579434156418, + 0.0069572459906339645, + 0.004123316146433353, + 0.02211349457502365, + -0.002670629881322384, + -0.014492844231426716, + -0.007838383316993713, + 0.024113915860652924, + -0.002473309403285384, + -0.0015768622979521751, + -0.003813727293163538, + 0.008396323770284653, + -0.005504559259861708, + -0.009716329164803028, + -0.025093713775277138, + -0.016779039055109024, + -0.0160986240953207, + 0.013206860050559044, + 0.011356130242347717, + 0.019242143258452415, + -0.00800168327987194, + -0.0014543875586241484, + 0.0009900041623041034, + -0.001833719084970653, + -0.008981481194496155, + 0.015009960159659386, + 0.02653619460761547, + -0.00020635718828998506, + 0.00038273356040008366, + 0.03848428651690483, + -0.005222186911851168, + -0.0024750104639679193, + 0.0070218853652477264, + -0.002000420819967985, + 0.0035619738046079874, + -0.01232912391424179, + -0.007443742826581001, + -0.0055589922703802586, + -0.009525813162326813, + 0.014397586695849895, + 0.016234707087278366, + 0.010743756778538227, + -0.0021450091153383255, + -0.024005049839615822, + 0.005980849731713533, + 0.020711839199066162, + 0.004640432074666023, + -0.028141973540186882, + 0.010410353541374207, + 0.01547264214605093, + 0.02033080719411373, + -0.008702510967850685, + 0.01664295606315136, + 0.006365284323692322, + -0.0021620194893330336, + 0.0028577439952641726, + 0.018384819850325584, + -0.005480744875967503, + 0.015853675082325935, + 0.017840487882494926, + 0.006827966775745153, + 0.005484146997332573, + 0.029774971306324005, + 0.0006574512226507068, + -0.002788001438602805, + 0.012914281338453293, + -0.0025073301512748003, + -0.0160986240953207, + 0.0160986240953207, + -0.009566638618707657, + 0.005837962497025728, + 0.03301374614238739, + -0.015037177130579948, + -0.01289386861026287, + -0.017922136932611465, + -0.001983410445973277, + -0.005769921001046896, + -0.002847537863999605, + 0.020276373252272606, + 0.0019715032540261745, + -0.005953633226454258, + 0.001243458827957511, + -0.004742494318634272, + -0.0036096028052270412, + -0.009212822653353214, + 0.014765010215342045, + 0.003507540561258793, + 0.008253436535596848, + -0.0026247017085552216, + 0.03641582280397415, + -0.011893657967448235, + -0.026563411578536034, + -0.016343573108315468, + 0.0070218853652477264, + 0.007817971520125866, + 0.007191989105194807, + -0.019228534772992134, + -0.011274480260908604, + -0.003357849083840847, + -0.01853451132774353, + 0.0119548961520195, + -0.031271886080503464, + 0.005507961381226778, + 0.004494142718613148, + 0.012390361167490482, + -0.02456299029290676, + 0.005082701798528433, + 0.019813692197203636, + 0.014683361165225506, + 0.01777244545519352, + -0.006093118339776993, + 0.014125420711934566, + 0.0002659998426679522, + 0.032224465161561966, + 0.029094556346535683, + -0.006576213054358959, + 0.009314884431660175, + 0.02698526903986931, + -0.007634258829057217, + 0.0057427044957876205, + -0.0007816270226612687, + -0.001538588898256421, + 0.0018932553939521313, + -0.007539000827819109, + -0.0027250631246715784, + -0.008804572746157646, + 0.009389730170369148, + -0.0035347570665180683, + 0.013322530314326286, + 0.018670594319701195, + 0.011403759010136127, + -0.019146883860230446, + 0.018085436895489693, + 0.00343269482254982, + -0.008355499245226383, + 0.007470959331840277, + -0.006525182165205479, + -0.00935570988804102, + 0.026195986196398735, + 0.030047137290239334, + 0.0029836208559572697, + -0.01322046760469675, + 0.00851879920810461, + 0.006096520461142063, + -0.00597404595464468, + -0.007879208773374557, + 0.00029406696557998657, + 0.00016425648937001824, + -0.015200476162135601, + 0.02991105429828167, + 0.017663579434156418, + -0.004303626250475645, + 0.025733305141329765, + -0.002391659654676914, + -0.02050771564245224, + 0.03159848228096962, + 0.014846660196781158, + -0.014438411220908165, + 0.0006659564096480608, + -0.007886013016104698, + 0.014166245236992836, + -0.004079089500010014, + -0.0015054186806082726, + -0.002653619507327676, + -0.010498806834220886, + 0.009416947141289711, + 0.005824354477226734, + 0.00613734545186162, + 0.01920131780207157, + 0.0038273357786238194, + -0.013771604746580124, + 0.0074165258556604385, + -0.013608304783701897, + 0.016343573108315468, + -0.0009015501709654927, + -0.01600336655974388, + -0.00512692891061306, + 0.021487513557076454, + 0.01713285595178604, + 0.020371632650494576, + 0.024399690330028534, + -0.025039279833436012, + 0.0028237232472747564, + 0.01255366113036871, + 0.009110759943723679, + -0.026182377710938454, + -0.006906214635819197, + -0.003582386299967766, + 0.015935324132442474, + -0.029121771454811096, + -0.005776725243777037, + -0.0016193882329389453, + 0.020820707082748413, + 0.003956614527851343, + 0.03886531665921211, + -0.0023542367853224277, + -0.010090557858347893, + -0.01816708594560623, + 0.006610233802348375, + -0.010968293994665146, + 0.0018796471413224936, + 0.002879857551306486, + -0.003391870064660907, + -0.004769710823893547, + -0.0117167504504323, + 0.026223203167319298, + -0.0079948790371418, + -0.0006906214402988553, + 0.03102693520486355, + 0.007613846566528082, + 0.01457449421286583, + -0.015322950668632984, + -0.0007386757642962039, + -0.01854811981320381, + -0.01956874132156372, + -0.0011558553669601679, + 0.007817971520125866, + -0.010968293994665146, + -0.014438411220908165, + -0.006351676303893328, + 0.0031707349698990583, + 0.006293840706348419, + 0.002330422168597579, + 0.008947459980845451, + -0.009872824884951115, + 0.006065901834517717, + -8.037404768401757e-5, + 0.006719100289046764, + 0.0053514656610786915, + 0.010036124847829342, + 0.016343573108315468, + -0.017636362463235855, + 0.019990598782896996, + -0.019976992160081863, + -0.010287878103554249, + 0.0122678866609931, + 0.011771183460950851, + 0.004507750738412142, + 0.003898779395967722, + 0.005776725243777037, + -0.0066646672785282135, + -0.014125420711934566, + -0.009260451421141624, + -0.0031231059692800045, + -0.003650427795946598, + -0.007096731103956699, + 0.006229201331734657, + -0.0006727605359628797, + 0.01289386861026287, + -0.020181115716695786, + -0.01260128989815712, + -0.0017792858416214585, + -0.019351009279489517, + -0.015867283567786217, + 0.026114337146282196, + -0.017513887956738472, + 0.00228109210729599, + -0.003749087918549776, + 0.02146029658615589, + -0.016670173034071922, + 0.020820707082748413, + -0.00020401825895532966, + -0.025447530671954155, + 0.01807182841002941, + 0.01966400071978569, + 0.015200476162135601, + -0.0076750838197767735, + -0.01139015145599842, + -0.0070218853652477264, + 0.035789839923381805, + 0.014615319669246674, + -0.01741863042116165, + 0.005892395973205566, + 0.007634258829057217, + -0.009206018410623074, + -0.003983831033110619, + -0.00916519295424223, + 0.01635718159377575, + -0.024767113849520683, + 0.001110777840949595, + 0.022630611434578896, + -0.010199424810707569, + 0.0029989301692694426, + -0.019405443221330643, + -0.010144990868866444, + 0.003490530187264085, + -0.01091386005282402, + -0.015064393170177937, + 0.018602551892399788, + 0.0031231059692800045, + -0.01143097598105669, + 0.00907673966139555, + -0.014696968719363213, + 0.01664295606315136, + -0.02181411162018776, + -0.0028730533085763454, + 0.012077370658516884, + -0.0061101289466023445, + -0.0048071336932480335, + -0.021569162607192993, + 0.02465824782848358, + 0.004453317727893591, + -0.009621071629226208, + -0.01143097598105669, + -0.013431396335363388, + 0.0002696145384106785, + -0.004939814563840628, + -0.020929573103785515, + 0.027978675439953804, + 0.0024937218986451626, + -0.003939604386687279, + 0.005208578426390886, + 0.017813270911574364, + 0.007477763574570417, + -0.02482154779136181, + 0.01966400071978569, + -0.014615319669246674, + 0.006923225242644548, + -0.006804152391850948, + -0.02265782654285431, + 0.006048891227692366, + -0.013097993098199368, + -0.003448004135861993, + -0.01081179827451706, + 0.004470327869057655, + -0.018765851855278015, + -1.5096713468665257e-5, + -0.002628103829920292, + 0.0063822949305176735, + -0.0143023282289505, + -0.012104586698114872, + -0.01199572067707777, + -0.021310605108737946, + -0.006123736966401339, + -0.01543181762099266, + -0.027488775551319122, + 0.017255330458283424, + 0.009192409925162792, + 0.01458810269832611, + -0.014152636751532555, + -0.0041539352387189865, + -0.01713285595178604, + -0.019446266815066338, + 0.0065558007918298244, + 0.008852202445268631, + -0.016615740954875946, + 0.0015573003329336643, + -0.008920243941247463, + 0.021473905071616173, + -0.008661685511469841, + 0.00379671691916883, + -0.014424802735447884, + 0.021120088174939156, + -0.004269605502486229, + 0.013826037757098675, + 0.0023049067240208387, + 0.0041539352387189865, + -0.03001992031931877, + 0.01000890787690878, + 0.006167964078485966, + -0.009961279109120369, + 0.01288706436753273, + 0.009348905645310879, + -0.009525813162326813, + -0.007389309350401163, + -0.002784599317237735, + 0.0032047557178884745, + -0.00879096519201994, + -0.008695706725120544, + 0.023664841428399086, + -0.0006191778811626136, + 0.014601711183786392, + -0.0017758837202563882, + 0.008716119453310966, + 0.008491582237184048, + 0.007722713053226471, + -0.0038681605365127325, + -0.006940235383808613, + -0.004912598058581352, + 0.014683361165225506, + -0.003260890021920204, + 0.010526023805141449, + -0.03554489091038704, + -0.030264869332313538, + -0.0054365177638828754, + -0.000405484955990687, + 0.0193646177649498, + -0.019990598782896996, + -0.013057168573141098, + -0.01194128766655922, + -0.00053497648332268, + 0.022603394463658333, + -0.02623681165277958, + -0.0023491336032748222, + 0.008477973751723766, + 0.0017554713413119316, + -0.004647235851734877, + 0.005841364618390799, + -0.0027658878825604916, + 0.004392080474644899, + 0.03132631629705429, + 0.02359680086374283, + 0.016302749514579773, + -0.004837752319872379, + -0.0027233620639890432, + -0.006804152391850948, + -0.011396954767405987, + 0.0023763501085340977, + 0.007260030601173639, + -0.005552188493311405, + -0.013832841999828815, + 0.02792424149811268, + -0.006790543906390667, + -0.014234286732971668, + -0.003111198777332902, + -0.008164983242750168, + 0.002794805681332946, + -0.0117167504504323, + -0.0036130049265921116, + 0.0007909827399998903, + 0.004984041675925255, + 0.03255106508731842, + -0.007851991802453995, + -0.0176771879196167, + -0.037776652723550797, + -0.011002314276993275, + -0.021759679540991783, + -0.014642535708844662, + 0.019691217690706253, + 0.006617038045078516, + 0.010736952535808086, + 0.029666103422641754, + 0.008498386479914188, + 0.0013701862189918756, + -0.011117984540760517, + 0.002437587594613433, + 0.011226851493120193, + 0.0022998035419732332, + 0.010355919599533081, + 0.011349325999617577, + -0.01901080086827278, + -0.0028237232472747564, + 0.017173681408166885, + -0.020480498671531677, + -0.004538369830697775, + -0.028468573465943336, + -0.011485408991575241, + 0.04292059317231178, + -0.01453366968780756, + -0.003953212406486273, + -0.022725868970155716, + 0.01345861330628395, + 0.010437569580972195, + 0.004361461848020554, + 0.0002415474154986441, + -0.004790123086422682, + 0.0067633274011313915, + -0.0006999771576374769, + -0.00879776943475008, + -0.03323148190975189, + 0.005399094894528389, + 0.012927889823913574, + -0.0045145549811422825, + -0.011015922762453556, + 0.005106516182422638, + -0.013567480258643627, + -0.020371632650494576, + 3.1575520551996306e-5, + 0.0017758837202563882, + 0.005786931607872248, + -0.00602167472243309, + -0.01057365257292986, + -0.0182623453438282, + 0.01349943783134222, + 0.019214926287531853, + 0.004946618806570768, + 0.004810535814613104, + -0.01928296871483326, + -0.00569507572799921, + 0.007171576377004385, + 0.018289562314748764, + 0.003242178587242961, + -0.0007688692421652377, + -0.027515992522239685, + 0.005616827867925167, + -0.0012358041713014245, + -0.004647235851734877, + 0.0010010609403252602, + -0.028904039412736893, + 0.0043172347359359264, + -0.011635100468993187, + -0.005562394391745329, + 0.025257013738155365, + 0.005650848615914583, + 0.013186447322368622, + 0.025093713775277138, + -0.005701879505068064, + 0.007749929558485746, + -0.034102410078048706, + -0.005773323122411966, + -0.005967241711914539, + 0.003762696171179414, + 0.004909195937216282, + 0.015173260122537613, + 0.018099045380949974, + -0.02171885408461094, + 0.03415684401988983, + -0.029774971306324005, + -0.00978437066078186, + -0.010403549298644066, + 0.0030499612912535667, + -0.017568321898579597, + 7.707828626735136e-5, + -0.008287457749247551, + -0.015635943040251732, + 0.009947670623660088, + 0.01937822625041008, + -0.004412492737174034, + 0.01627553254365921, + -0.001273227040655911, + -0.0026570213958621025, + 0.001645754324272275, + -0.018969977274537086, + -0.0031146006658673286, + 0.017350587993860245, + 0.015527076087892056, + -0.0011124789016321301, + -0.0004886232200078666, + 0.018194302916526794, + -0.010104166343808174, + 0.010505611076951027, + 0.02114730514585972, + -0.0016874297289177775, + 0.005246001295745373, + 0.0263320691883564, + -0.021746071055531502, + -0.009716329164803028, + -4.3403051677159965e-5, + 0.012159020639955997, + 0.024440515786409378, + -0.0072396183386445045, + 0.01284623984247446, + 0.008246632292866707, + 0.001314051914960146, + 0.0010980201186612248, + -0.005368476267904043, + -0.01081179827451706, + -0.035708192735910416, + -0.03274158015847206, + -0.02792424149811268, + -0.003398674074560404, + 0.025270622223615646, + -0.012730568647384644, + -0.015690375119447708, + 0.010743756778538227, + 0.003482024883851409, + -0.011730358935892582, + -0.0031571267172694206, + 0.016860689967870712, + -0.011914070695638657, + 0.0005013810005038977, + -0.03189786523580551, + -0.017282547429203987, + 0.012900672852993011, + 0.01694233901798725, + 0.016153058037161827, + -0.006460542790591717, + 0.011043139733374119, + -0.009328492917120457, + -0.02227679453790188, + -0.015663158148527145, + -0.015486250631511211, + 0.005885591730475426, + -0.020194724202156067, + 0.008062920533120632, + -0.0038001190405339003, + 0.002173926681280136, + -0.00698786461725831, + -0.016139449551701546, + -0.008661685511469841, + 0.0023185149766504765, + 0.0006170515553094447, + 0.019895341247320175, + -0.017527496442198753, + -0.004606411326676607, + -0.008151374757289886, + -0.014765010215342045, + 0.007348484359681606, + -0.01231551542878151, + -0.0010027620010077953, + -0.010893448255956173, + 0.014846660196781158, + -0.008620860986411572, + -0.007280442863702774, + -0.008879418484866619, + 0.0069572459906339645, + 0.001178819453343749, + -0.010600869543850422, + 0.014846660196781158, + -0.005140536930412054, + -0.006576213054358959, + -0.007321267854422331, + -0.012757785618305206, + -0.01967760920524597, + 0.018194302916526794, + 0.0050792996771633625, + 0.011349325999617577, + 0.0047220815904438496, + 0.017432238906621933, + -0.010648498311638832, + -0.017527496442198753, + 0.004643834196031094, + 0.015037177130579948, + -0.0017656775889918208, + 0.00545352790504694, + 0.021038439124822617, + 0.013206860050559044, + 0.01804461143910885, + -0.04109707847237587, + -0.012492423877120018, + -0.018099045380949974, + 0.003592592431232333, + 0.0037388817872852087, + 0.003242178587242961, + -0.0030567655339837074, + -0.003973625134676695, + 0.010383136570453644, + 0.0038953772746026516, + 0.011043139733374119, + -0.005426311399787664, + 0.0013217065716162324, + -0.0003027847851626575, + 0.0015326353022828698, + -0.034946125000715256, + 0.006885802373290062, + -0.0014331246493384242, + -0.006358480546623468, + -0.010777777060866356, + 0.002172225620597601, + 0.018684202805161476, + 0.003368055447936058, + -0.011015922762453556, + 0.009396534413099289, + 0.016125841066241264, + -0.017704404890537262, + -0.00641631567850709, + 0.01481944415718317, + 0.003357849083840847, + 0.0017137958202511072, + 0.0003752915363293141, + 0.0014305730583146214, + 0.011812008917331696, + 0.018099045380949974, + 0.00879776943475008, + -0.015840066596865654, + -0.013193251565098763, + -0.009845608845353127, + 0.03434736281633377, + 0.019255751743912697, + 0.015567900612950325, + 0.004062078893184662, + 0.019133277237415314, + 0.0216372050344944, + 0.01967760920524597, + -0.0034973344299942255, + -0.009083542972803116, + -0.008022096008062363, + 0.004062078893184662, + -0.013247684575617313, + -0.0007246422464959323, + -0.025229796767234802, + -0.02246731147170067, + 0.009607463143765926, + -0.00686879176646471, + 0.017758836969733238, + -0.013104797340929508, + -0.013948512263596058, + -0.012968714348971844, + 0.006923225242644548, + 0.018466468900442123, + 0.0005013810005038977, + 0.012546856887638569, + 0.0013854955323040485, + -0.0017520692199468613, + 0.013764800503849983, + 0.02999270334839821, + -0.016615740954875946, + -0.021188130602240562, + 0.013295313343405724, + -0.034946125000715256, + 0.033911895006895065, + -0.0023236179258674383, + -0.024522164836525917, + -0.007498175837099552, + 0.005984251853078604, + 0.009559834375977516, + 0.007382505107671022, + 0.007899620570242405, + -0.017704404890537262, + -0.004378471989184618, + 0.018316777423024178, + 0.004647235851734877, + -0.004902391694486141, + 0.02980218641459942, + 0.026753926649689674, + -0.0067633274011313915, + -0.003385065821930766, + -0.0032319724559783936, + -0.0010648499010130763, + 6.355636287480593e-6, + 0.01645244099199772, + 0.012342732399702072, + 0.00017276167636737227, + 0.0030754769686609507, + 0.0015436920803040266, + -0.006787141785025597, + -0.015200476162135601, + 0.0048071336932480335, + 0.0001990214514080435, + -0.0053616720251739025, + -0.004079089500010014, + -0.009471380151808262, + 0.002206246368587017, + -0.027502384036779404, + -0.003956614527851343, + -0.017541104927659035, + -0.007906424812972546, + -0.014805835671722889, + 0.013234076090157032, + -0.011730358935892582, + -0.001964699011296034, + -0.011805204674601555, + -0.0014450318412855268, + -0.01322046760469675, + 0.001078458153642714, + 0.009777567349374294, + 0.02586938813328743, + -0.000999359879642725, + 0.01198891643434763, + -0.0029802187345921993, + 0.022031845524907112, + 0.003458210499957204, + -0.002736970316618681, + 0.015527076087892056, + 0.004296822007745504, + -0.005086103919893503, + 0.004963628947734833, + 0.0006791394553147256, + 0.0027250631246715784, + -0.0068619875237345695, + 0.007300855591893196, + -0.015241301618516445, + -0.007777146063745022, + 0.004912598058581352, + -0.03878366947174072, + 0.012451598420739174, + -0.003369756508618593, + -0.014098203741014004, + 0.0023695460986346006, + 0.019881732761859894, + 0.0031639309599995613, + 0.018684202805161476, + -0.006736110895872116, + -0.0012417577672749758, + -0.02012668177485466, + 0.022821126505732536, + -0.02463103085756302, + 0.002512433333322406, + 0.00894065573811531, + -0.02370566688477993, + 0.0425395593047142, + -0.017445847392082214, + 0.012771394103765488, + 0.00856642797589302, + 0.0005345512181520462, + -0.005205176770687103, + 0.012614898383617401, + -0.01824873685836792, + -0.01397572923451662, + -0.029312288388609886, + 0.01854811981320381, + 0.0009432256338186562, + 0.011533038690686226, + 0.013479026034474373, + 0.005344661884009838, + 0.009607463143765926, + 0.005701879505068064, + 0.006878998130559921, + 0.015540683642029762, + -0.005647446494549513, + 0.00039506610482931137, + 0.01170314196497202, + -0.006906214635819197, + -0.00726683484390378, + -0.009015501476824284, + 0.004912598058581352, + 0.006647656671702862, + 0.006964049767702818, + -0.02060297317802906, + 0.013240880332887173, + 0.01711924746632576, + 0.018003787845373154, + 0.0005439069354906678, + -0.0024920208379626274, + -0.003840944031253457, + -0.013601500540971756, + -0.011117984540760517, + 0.027134960517287254, + -0.012444795109331608, + 0.019595958292484283, + 0.0055351778864860535, + -0.021963803097605705, + 0.006310851313173771, + -0.03467395901679993, + -0.016629347577691078, + -0.014928310178220272, + 0.010396745055913925, + 0.00851199496537447, + 0.006167964078485966, + -0.012444795109331608, + 0.0077839503064751625, + -0.014002945274114609, + -0.004756102338433266, + -0.02811475843191147, + -0.006634048651903868, + -0.011464997194707394, + -0.007123947609215975, + -0.00335104507394135, + -0.022821126505732536, + -0.010689323768019676, + 0.014792227186262608, + 0.007573021575808525, + 0.014275111258029938, + -0.01729615591466427, + -0.03170735016465187, + 0.009600658901035786, + -0.01114520151168108, + -0.009219626896083355, + -0.00613394333049655, + 0.003034651977941394, + 0.014424802735447884, + -0.0031214049085974693, + -0.03102693520486355, + 0.006770131643861532, + 7.394199928967282e-5, + -0.013819233514368534, + -0.011777987703680992, + -0.016207490116357803, + -0.01656130701303482, + 0.011077160015702248, + -0.010049733333289623, + 0.009240038692951202, + 0.0006944488268345594, + 0.012458402663469315, + 0.009042718447744846, + -0.020616581663489342, + -0.005987653974443674, + 0.0025991862639784813, + -0.011451388709247112, + -0.001144798588939011, + 0.022154320031404495, + 0.016779039055109024, + 0.013900883495807648, + 0.016792647540569305, + 0.004803731571882963, + -0.011002314276993275, + 0.018221519887447357, + -0.006610233802348375, + 0.006913018878549337, + -0.017731621861457825, + -0.010954685509204865, + 0.02133782207965851, + 0.006127139087766409, + 0.019595958292484283, + -0.00013438200403470546, + 0.02219514548778534, + -0.0027726921252906322, + 0.01665656454861164, + 0.0010835612192749977, + 0.005358269903808832, + 0.015459034591913223, + -0.0032625910826027393, + -0.015758417546749115, + 0.004939814563840628, + -0.0017410124419257045, + 0.010526023805141449, + -0.01880667731165886, + 0.004790123086422682, + -0.015608725138008595, + -0.011022727005183697, + 0.002015730133280158, + -0.010648498311638832, + 0.004181151743978262, + -0.003936202265322208, + -0.003383364761248231, + 0.003242178587242961, + 0.017241721972823143, + 0.0070354933850467205, + -0.02483515627682209, + -0.006212191190570593, + 0.012594485655426979, + 0.02230401150882244, + -0.007008276879787445, + -0.013186447322368622, + -0.002122895559296012, + 0.0014543875586241484, + -0.009430555626749992, + -0.011485408991575241, + 0.016520481556653976, + 0.0044397092424333096, + 0.014438411220908165, + -0.008920243941247463, + -0.021011222153902054, + 0.007450546603649855, + 0.012179432436823845, + -0.03225168213248253, + -0.009702721610665321, + -0.004269605502486229, + 0.01510521862655878, + -0.018942760303616524, + 0.001883049146272242, + 0.009301275946199894, + 0.025066496804356575, + 0.0038205315358936787, + -0.012097782455384731, + -0.005562394391745329, + -0.003691252553835511, + 0.0028322283178567886, + 0.04117872938513756, + 0.035218290984630585, + -0.008178590796887875, + 0.002395061543211341, + -0.006858585402369499, + -0.030618686228990555, + -0.005667858757078648, + 0.007722713053226471, + -0.01769079640507698, + -0.01058045681566, + 0.022235969081521034, + 0.004752700217068195, + 0.0016415017889812589, + 0.008450756780803204, + -0.012301907874643803, + 0.035980358719825745, + 0.005933220963925123, + -0.0022623806726187468, + -0.010723344050347805, + -0.004885381553322077, + -0.02427721582353115, + 0.00884539820253849, + -0.019432658329606056, + 0.0077839503064751625, + -0.011315305717289448, + -0.024331649765372276, + 0.00529022840783, + -0.011403759010136127, + -0.024318041279911995, + -0.015159651637077332, + 0.02219514548778534, + -0.010124579071998596, + -0.02303886041045189, + 0.002289597177878022, + 0.005565796513110399, + 0.0012460104189813137, + -0.014179853722453117, + 0.0032200650312006474, + 0.0017928940942510962, + -0.0050690933130681515, + -0.017908528447151184, + -0.013553871773183346, + 0.003317024325951934, + -0.004208368249237537, + -0.019514309242367744, + 0.017527496442198753, + -0.0039702230133116245, + 0.02491680532693863, + -0.03010156936943531, + -0.0010087155969813466, + 0.009430555626749992, + 0.02380092442035675, + -0.0029240844305604696, + 0.01481944415718317, + -0.008933852426707745, + 0.016248315572738647, + 0.01081179827451706, + 0.008090137504041195, + -0.022875560447573662, + 0.022698651999235153, + -0.013295313343405724, + -0.007409722078591585, + 0.0033867668826133013, + 0.0264409352093935, + 0.0020038229413330555, + 0.0096823088824749, + 0.018656985834240913, + 0.015663158148527145, + 0.0009440761641599238, + 0.0016227903543040156, + 0.004344451241195202, + 4.481172072701156e-5, + -0.008124157786369324, + 0.007681888062506914, + -0.013472221791744232, + -0.012853044085204601, + -0.01029468234628439, + -0.02917620539665222, + -0.010784581303596497, + 0.009335297159850597, + 0.015690375119447708, + 0.020915964618325233, + 0.00917199719697237, + 0.0019425854552537203, + -0.011553450487554073, + -0.008246632292866707, + -0.01607140712440014, + -0.0034871280658990145, + -0.01816708594560623, + 0.02116091363132, + -0.001489258836954832, + 0.0005660204333253205, + -0.0030635695438832045, + -0.008620860986411572, + 0.0071443598717451096, + 0.010355919599533081, + -0.02068462409079075, + 0.01024705357849598, + 0.00529363052919507, + 0.007777146063745022, + 0.009267255663871765, + 0.005150743294507265, + -0.008899831213057041, + 0.005593013018369675, + -0.02267143502831459, + -0.03657912462949753, + -0.003119703847914934, + 0.00010626172297634184, + 0.015948932617902756, + 0.017513887956738472, + -0.019446266815066338, + 0.012451598420739174, + 0.0003772052004933357, + 0.0160986240953207, + 0.013179643079638481, + 0.015948932617902756, + 0.019908949732780457, + -0.0016312955413013697, + 0.009546225890517235, + -0.007294051349163055, + -0.011743967421352863, + 0.019527917727828026, + 0.014370369724929333, + 0.008375911973416805, + 0.001667017349973321, + -0.00416073901578784, + -0.0026910421438515186, + 0.004776515066623688, + 0.008015291765332222, + -0.0251209307461977, + -0.00045290138223208487, + 0.003167332848533988, + -0.020834313705563545, + -0.0020871737506240606, + -0.00698786461725831, + -0.006229201331734657, + -0.009539421647787094, + -0.019024409353733063, + 0.02698526903986931, + 0.009546225890517235, + -0.037967171519994736, + 0.02080709859728813, + 0.03285044804215431, + 0.013934903778135777, + 0.0068483795039355755, + -0.01335655152797699, + 0.0014748000539839268, + 0.004293420352041721, + 0.011213243007659912, + 0.010471590794622898, + -0.01816708594560623, + -0.0014322741189971566, + 0.010594065301120281, + 0.006123736966401339, + -0.0047969273291528225, + 0.019895341247320175, + -0.0064809550531208515, + 0.001086963340640068, + 0.001185623579658568, + -0.001983410445973277, + 0.004235584754496813, + 0.019691217690706253, + -0.0031094977166503668, + 0.030428169295191765, + 0.013894079253077507, + -0.00228109210729599, + -0.0228483434766531, + 0.007770341821014881, + -0.031244667246937752, + -0.007722713053226471, + -0.009512204676866531, + -0.00568827148526907, + -0.009893237613141537, + 0.006841575261205435, + 0.003391870064660907, + 0.03358529508113861, + 0.0014042069669812918, + 0.01053963229060173, + -0.01748667098581791, + 0.004405688494443893, + -0.009852412156760693, + 0.012451598420739174, + 0.0014220678713172674, + -0.0020361426286399364, + 0.002672330942004919, + 0.031108584254980087, + 0.011464997194707394, + 0.011587471701204777, + 0.014792227186262608, + -0.012437990866601467, + -0.001609181985259056, + 0.010770972818136215, + -0.020929573103785515, + -0.017323371022939682, + -0.001102272653952241, + 0.019242143258452415, + -0.002082070568576455, + -0.0015989758539944887, + -0.02463103085756302, + 0.02004503272473812, + -0.003983831033110619, + -0.001956193707883358, + -0.025910211727023125, + 0.01307758130133152 + ], + "6c7e15c2-be7e-4a60-848f-becd4b110db7": [ + -0.011370779015123844, + -0.005356774665415287, + -0.004162454046308994, + 0.0399143323302269, + -0.011356644332408905, + -0.01212694589048624, + -0.005381509196013212, + 0.024550706148147583, + -0.05557476729154587, + 0.00911641027778387, + 0.0011660525342449546, + 0.06156757101416588, + 0.030698982998728752, + -0.03050110675394535, + -0.02979440800845623, + 0.03898148983716965, + -0.013229395262897015, + 0.017992543056607246, + 0.006123542319983244, + -0.019504878669977188, + 0.06298097223043442, + -0.030161891132593155, + -0.027052417397499084, + 0.016254065558314323, + -0.004692478105425835, + -0.01714450493454933, + -0.014261175878345966, + 0.03024669550359249, + -0.04994944855570793, + 0.018430696800351143, + 0.029879212379455566, + 0.0037843703757971525, + 0.010713549330830574, + -0.0169183611869812, + 0.004936289042234421, + -0.02771671488881111, + 0.004480468574911356, + 0.007964491844177246, + -0.027759116142988205, + -0.02377333678305149, + -0.01851550117135048, + 0.039264168590307236, + 0.025540083646774292, + -0.0035599935799837112, + -0.05693162977695465, + 0.03609815984964371, + -0.008543984964489937, + -0.0012022708542644978, + 0.019632084295153618, + 0.007476869970560074, + -0.009095209650695324, + 0.0028055929578840733, + -0.017610926181077957, + -0.0015512031968683004, + 0.026854543015360832, + -0.034684762358665466, + 0.024578973650932312, + 0.04780108481645584, + 0.010317797772586346, + -0.026020638644695282, + 0.03985779359936714, + -0.0014946672599762678, + -0.036635249853134155, + -0.019533146172761917, + -0.023787470534443855, + -0.03250813111662865, + -0.007957424968481064, + -0.014042099006474018, + -0.0635463297367096, + -0.02200658991932869, + -0.017116237431764603, + 0.04975157231092453, + -0.03488263860344887, + -0.016579145565629005, + 0.010642879642546177, + -0.05385042354464531, + 0.029935747385025024, + 0.01836002618074417, + -0.0020829937420785427, + 0.0013374268310144544, + 0.009929114021360874, + -0.001001745113171637, + -0.022656753659248352, + -0.023942945525050163, + 0.0975809246301651, + -0.01752612181007862, + -0.011406113393604755, + -0.029229048639535904, + 0.0027702581137418747, + -0.012367223389446735, + -0.025158466771245003, + 0.020169174298644066, + -0.005872664507478476, + -0.0031006396748125553, + 0.0007389415986835957, + -0.017851203680038452, + 0.040960244834423065, + 0.01573110744357109, + 0.017794668674468994, + 0.01082662120461464, + 0.029879212379455566, + 0.011201171204447746, + -0.014982007443904877, + -0.02274155803024769, + 0.0024469434283673763, + -0.02114441804587841, + -0.030161891132593155, + -0.028267938643693924, + -0.018784046173095703, + 0.049412358552217484, + 0.00013239555119071156, + -0.051560722291469574, + 0.028649557381868362, + -0.009321353398263454, + -0.047461871057748795, + -0.009413223713636398, + 0.014218773692846298, + -0.02880503050982952, + 0.02627504989504814, + -0.03242332488298416, + 0.06151103600859642, + 0.03366711735725403, + -0.02149776741862297, + 0.020451854914426804, + -0.01739891618490219, + 0.0009778940584510565, + -0.000748658727388829, + -0.011582788079977036, + -0.010282463394105434, + -0.001844483078457415, + -0.008324908092617989, + 0.013554477132856846, + 0.025172600522637367, + 0.03075551800429821, + 0.03536319360136986, + -0.0007535172626376152, + -0.0015697539784014225, + 0.03946204483509064, + -0.004314394202083349, + 0.02309490740299225, + -0.053426407277584076, + -0.047009583562612534, + -0.027532972395420074, + -0.008211836218833923, + -0.0028886301442980766, + 0.01995716616511345, + -0.054189641028642654, + 0.030359767377376556, + -0.02111615054309368, + 0.04853605106472969, + -0.05582917854189873, + -0.0495254285633564, + 0.01823282055556774, + 0.004936289042234421, + 0.02066386304795742, + -0.005155365448445082, + -0.049638502299785614, + 0.024946456775069237, + 0.014515587128698826, + 0.023942945525050163, + 0.02137056179344654, + -0.0545288547873497, + -0.01064994651824236, + 0.021568438038229942, + 0.04036661610007286, + 0.01255803182721138, + 0.03629603236913681, + 0.024875786155462265, + -0.01970275305211544, + 0.023745069280266762, + 0.024169087409973145, + -0.03369538486003876, + -0.006491025444120169, + -0.022882897406816483, + 0.010770085267722607, + 0.011328376829624176, + 0.01810561493039131, + 0.020098505541682243, + 0.032536398619413376, + -0.03875534608960152, + -0.03245159611105919, + -0.010600477457046509, + 0.01851550117135048, + -0.02076280117034912, + -0.004794949200004339, + 0.008303707465529442, + -0.010487405583262444, + 0.029624801129102707, + 0.009999783709645271, + -0.019307002425193787, + 0.002832094207406044, + 0.0024610774125903845, + -0.0007786934147588909, + 0.010324864648282528, + -0.03140567988157272, + -0.03369538486003876, + 0.0042295902967453, + 0.008169434033334255, + 0.0022172664757817984, + 0.0033285499084740877, + -0.018204553052783012, + -0.013978496193885803, + -0.023504791781306267, + 0.03606989234685898, + -0.010741816833615303, + 0.029624801129102707, + -0.027504704892635345, + -0.03027496300637722, + 0.019264601171016693, + -0.04692478105425835, + 0.03802037984132767, + -0.01861443743109703, + -0.008367310278117657, + -0.0011139335110783577, + -0.03267773613333702, + 0.011413180269300938, + 0.0007230408955365419, + 0.023306915536522865, + -0.022571949288249016, + -0.0480554960668087, + -0.02245887741446495, + 0.013886624947190285, + -0.010925558395683765, + -0.023024236783385277, + -0.046698637306690216, + -0.027094820514321327, + -0.026260916143655777, + 0.013462605886161327, + -0.06869108974933624, + 0.013639280572533607, + 0.028889834880828857, + -0.024918189272284508, + 0.008317841216921806, + -0.0009032490197569132, + -0.025158466771245003, + 0.06778652220964432, + 0.016324734315276146, + 0.02258608303964138, + -0.031123001128435135, + -0.015801778063178062, + 0.04016874358057976, + 0.02258608303964138, + 0.018317624926567078, + -0.0034769566264003515, + 0.01889711804687977, + -0.010232994332909584, + -0.011356644332408905, + 0.03485437110066414, + 0.004098851233720779, + -0.02777324989438057, + 0.005837329663336277, + 0.010883157141506672, + 0.03508051112294197, + -0.00571012357249856, + -0.005240169353783131, + 0.05263490229845047, + 0.0076676784083247185, + -0.033045221120119095, + -0.008091697469353676, + 0.005487513728439808, + 0.010607544332742691, + 0.009858444333076477, + 0.012699372135102749, + 0.023844007402658463, + 0.033016953617334366, + -0.018798179924488068, + 0.040960244834423065, + -0.0023285713978111744, + 0.027730848640203476, + 0.02175217866897583, + -0.03194276988506317, + 0.007710080593824387, + -0.007307262159883976, + -0.021667376160621643, + 0.013929027132689953, + -0.005840863101184368, + -0.002392174443230033, + -0.017511988058686256, + 0.04011220484972, + -0.01934940367937088, + 0.0012897247215732932, + -0.012982050888240337, + 0.0020388250704854727, + 0.04879046231508255, + 0.018981920555233955, + 0.0006713635521009564, + -0.022868763655424118, + -0.020296379923820496, + -0.02630331739783287, + -0.01841656304895878, + -0.022882897406816483, + 0.01666394993662834, + 0.002351539209485054, + 0.015547366812825203, + 0.020140906795859337, + 0.003957511391490698, + -0.011222371831536293, + -0.04463507607579231, + -0.014769998379051685, + -0.015434294939041138, + -0.010006850585341454, + 0.021229222416877747, + 0.008204769343137741, + -0.040479689836502075, + 0.019815824925899506, + -0.0463876873254776, + 0.05715777352452278, + 0.03556106612086296, + -0.020451854914426804, + -0.012600434012711048, + 0.03889668360352516, + -0.003224311862140894, + -0.00405291561037302, + 0.00044787017395719886, + 0.020875873044133186, + -0.021073749288916588, + -0.005105896387249231, + -0.024268025532364845, + -0.009427357465028763, + -0.030642446130514145, + 0.02137056179344654, + -0.01573110744357109, + -0.05240875855088234, + -0.007204791065305471, + 0.030331499874591827, + -0.011406113393604755, + 0.02903117425739765, + -0.02959653176367283, + -0.034741297364234924, + -0.04367396607995033, + -0.02281222678720951, + -0.007752482313662767, + -0.02243060991168022, + -0.02149776741862297, + -0.04545484483242035, + -0.03581548109650612, + -0.03988606110215187, + -0.02908770926296711, + -0.008854932151734829, + -0.016989031806588173, + -0.0022649685852229595, + -0.008324908092617989, + 0.010395534336566925, + 2.6197532861260697e-5, + -0.012091611512005329, + -0.007985692471265793, + 0.02243060991168022, + 0.02688281051814556, + -0.003590028267353773, + -0.004936289042234421, + 0.0008657056605443358, + -0.012918448075652122, + 0.05998456850647926, + 0.020946543663740158, + 0.0620763935148716, + -0.002817960223183036, + -0.007929157465696335, + -0.020946543663740158, + -0.012197615578770638, + -0.03262120112776756, + 0.03078378550708294, + -0.02524326927959919, + -0.028918102383613586, + 0.004985757637768984, + -0.012671103700995445, + 0.02729269489645958, + -0.021695643663406372, + -0.003227845299988985, + 0.01465692650526762, + 0.0168194230645895, + -0.027306828647851944, + -0.0007888521649874747, + 0.017130371183156967, + -0.02807006426155567, + -0.015561500564217567, + -0.014247041195631027, + 0.031801432371139526, + -0.0065510948188602924, + -0.03985779359936714, + 0.02845168113708496, + -0.020593194290995598, + 0.0029045308474451303, + 0.022176198661327362, + -0.01925046741962433, + 0.01585831493139267, + 0.035108782351017, + -0.004759614355862141, + -0.013406069949269295, + 0.03872707858681679, + 0.0403100810945034, + -0.034713029861450195, + -0.006116475444287062, + -0.021441232413053513, + 0.01369581650942564, + -0.035702407360076904, + 0.015900716185569763, + -0.005031693261116743, + -0.024225624278187752, + 0.0007645594305358827, + -0.008501582778990269, + 0.0004430116096045822, + -0.015292955562472343, + -0.00018871057545766234, + -0.011278907768428326, + 0.054868072271347046, + -0.01382302213460207, + 0.0033515174873173237, + -0.031066466122865677, + 0.03273427486419678, + -0.017794668674468994, + -0.0031571753788739443, + 0.011144635267555714, + 0.014218773692846298, + -0.03394979611039162, + 0.011957338079810143, + 0.021667376160621643, + 0.015533233061432838, + 0.04129945859313011, + -0.013080989010632038, + -0.04373050108551979, + 0.04918621480464935, + 0.029935747385025024, + -0.0008908817544579506, + 0.02531393989920616, + -0.010409669019281864, + 0.04228883609175682, + 0.019335269927978516, + 0.04223230108618736, + -0.02021157741546631, + -0.02488991990685463, + -0.03293215110898018, + -0.004575872793793678, + 0.019589681178331375, + -0.01573110744357109, + -0.001534419134259224, + -0.012635769322514534, + 0.05051480606198311, + -0.018317624926567078, + -0.006851441692560911, + -0.03346924111247063, + -0.014769998379051685, + 0.02710895426571369, + 0.017964275553822517, + -0.0047172121703624725, + -0.014112768694758415, + 0.012169348075985909, + 0.004872686229646206, + 0.009808975271880627, + -0.0029380989726632833, + -0.005105896387249231, + 0.014204639941453934, + 0.013003252446651459, + 0.0014725829241797328, + 0.0006863808957859874, + 0.03476956486701965, + 0.003404519986361265, + -0.010897290892899036, + -0.030105356127023697, + -0.011490917764604092, + -0.06936952471733093, + -0.007218924816697836, + -0.023010103031992912, + 0.01841656304895878, + -0.01778053306043148, + 0.029144246131181717, + -0.03222545236349106, + 0.015024409629404545, + 0.01768159680068493, + 0.008536918088793755, + 0.020649729296565056, + -0.03502397611737251, + 0.000916941266041249, + -0.010388467460870743, + 0.014614524319767952, + 0.040027402341365814, + -0.00954749621450901, + -0.0044946023263037205, + -0.022529548034071922, + 0.0044097984209656715, + -0.0011033329647034407, + -0.0051094298250973225, + -0.019335269927978516, + -0.016890093684196472, + -0.01064994651824236, + -0.021935921162366867, + -0.011406113393604755, + 0.0031730763148516417, + -0.06642965972423553, + -0.012565098702907562, + -0.027094820514321327, + 0.041695211082696915, + 0.01778053306043148, + 0.015575634315609932, + 0.032112378627061844, + -0.00266248662956059, + -0.01339193619787693, + 0.00727899419143796, + -0.051080167293548584, + -0.009356687776744366, + -0.01768159680068493, + -0.007929157465696335, + -0.017582658678293228, + -0.01922219805419445, + 0.007780750282108784, + -0.00876306090503931, + 0.04079063609242439, + -0.031066466122865677, + -0.009406156837940216, + -0.020720399916172028, + -0.0005534332594834268, + -0.015420161187648773, + -0.03584374859929085, + -0.027504704892635345, + 0.01195027120411396, + 0.005854996852576733, + 0.017738131806254387, + -0.017639193683862686, + 0.014897204004228115, + 0.032536398619413376, + -0.002558248583227396, + 0.010353133082389832, + -0.0051977671682834625, + -0.009328420273959637, + 0.014600390568375587, + 0.0035635270178318024, + -0.012664036825299263, + -0.013808888383209705, + -0.033751919865608215, + -0.005144765134900808, + -0.004544071387499571, + -0.00781608559191227, + 0.007604075595736504, + -0.020126773044466972, + -0.009264817461371422, + 0.01392196025699377, + -0.0017402450321242213, + -0.025893433019518852, + 0.005201301071792841, + 0.023844007402658463, + 0.042430177330970764, + -0.04709438607096672, + -0.010805419646203518, + -0.0068337745033204556, + -0.011377845890820026, + -0.027193758636713028, + 0.012522697448730469, + -0.016409538686275482, + 0.03075551800429821, + 0.00536737497895956, + 0.0052366359159350395, + -0.04955369606614113, + 0.022289270535111427, + -0.013448472134768963, + 0.009604032151401043, + -0.010720616206526756, + -0.019872361794114113, + 0.03199930861592293, + -0.031151268631219864, + -0.017483720555901527, + -0.020494256168603897, + -0.010445003397762775, + 0.013632213696837425, + 0.005162432324141264, + 0.002964600222185254, + -0.004862085450440645, + 0.0007005148800089955, + -0.03838786110281944, + 0.019561413675546646, + 0.005978669039905071, + 0.008543984964489937, + 0.030105356127023697, + -0.02117268741130829, + 0.04378703981637955, + -0.0003663789830170572, + 0.01086195558309555, + -0.0005605002515949309, + -0.015646304935216904, + -0.020239844918251038, + -0.02425389178097248, + -0.017837069928646088, + 0.005731324665248394, + -0.018699241802096367, + 0.001168702612631023, + 0.001567987259477377, + 0.013321266509592533, + 0.014444917440414429, + -0.04104504734277725, + -0.01899605616927147, + 0.0004646542656701058, + 0.004900954198092222, + -0.007957424968481064, + 0.04585059732198715, + -0.006211879663169384, + 0.004377997014671564, + -0.012614567764103413, + 0.016932494938373566, + 0.008346108719706535, + 0.023434121161699295, + 0.005134164355695248, + -0.02739163301885128, + 0.018275223672389984, + 0.04661383107304573, + 0.023306915536522865, + -0.012268285267055035, + -0.034939173609018326, + 0.0222610030323267, + 0.005056427791714668, + 0.02569555677473545, + -0.024974724277853966, + 0.02091827429831028, + 0.0001554736663820222, + 0.004915087949484587, + 0.0043426621705293655, + -0.013596879318356514, + 0.03584374859929085, + 0.015914849936962128, + 0.008607587777078152, + 0.019533146172761917, + 0.014006763696670532, + -0.008084630593657494, + 0.010338998399674892, + -0.010049252770841122, + 0.040762368589639664, + -0.0017994310474023223, + 0.005547583103179932, + 0.023660264909267426, + 0.009533362463116646, + 0.005547583103179932, + -0.022501280531287193, + -0.006406222004443407, + 0.014466118067502975, + -0.002310903975740075, + 0.003802037797868252, + -0.023377586156129837, + 0.006430956069380045, + 0.009413223713636398, + -0.007695946376770735, + 0.01768159680068493, + -0.020225711166858673, + -0.014642792753875256, + -0.038076914846897125, + -0.005201301071792841, + 0.008968004025518894, + 0.03479783236980438, + -0.006907977629452944, + 0.036889661103487015, + -0.001704910071566701, + 0.016579145565629005, + 0.014296510256826878, + 0.0216249730437994, + -0.0033232495188713074, + 0.02870609238743782, + 0.004335595294833183, + 0.023957079276442528, + 0.0060034035705029964, + -0.008770127780735493, + -0.005787860602140427, + -0.002266735304147005, + -0.001534419134259224, + 0.004671277012676001, + 0.026345718652009964, + 0.006960980128496885, + 0.0033179493620991707, + 0.02645879052579403, + 0.004367396701127291, + 0.03287561237812042, + 0.03505224362015724, + -0.01412690244615078, + 0.01212694589048624, + 0.031829699873924255, + 0.008268372155725956, + -0.018444830551743507, + 0.04367396607995033, + 0.018656840547919273, + 0.028041796758770943, + 0.005932733882218599, + 0.020140906795859337, + -0.00750513793900609, + -0.018430696800351143, + 0.005565250758081675, + 0.029229048639535904, + -0.029681336134672165, + -0.0467834398150444, + 0.015844179317355156, + -0.01377355307340622, + 0.0020900608506053686, + -0.012904314324259758, + -0.007109386846423149, + 0.0029080642852932215, + -0.005434511229395866, + -0.011208238080143929, + 0.00929308496415615, + -0.0031112399883568287, + 0.008869065903127193, + -0.00012035958934575319, + 0.0052154348231852055, + -0.0014513820642605424, + -0.006339085288345814, + 0.026034772396087646, + -0.009950314648449421, + -0.014437849633395672, + -0.002939865691587329, + -0.0019663884304463863, + -0.012148146517574787, + -0.004936289042234421, + 0.0056783221662044525, + -0.014155170880258083, + -0.01992889679968357, + -0.015066811814904213, + -0.022798093035817146, + 0.008197702467441559, + 0.0249605905264616, + -0.012006807141005993, + 0.02258608303964138, + 0.022925298660993576, + 0.011907869949936867, + -0.024494169279932976, + 0.02139882929623127, + -0.010084587149322033, + 0.024423500522971153, + -0.001844483078457415, + 0.05529208853840828, + -0.004904487635940313, + -0.04353262856602669, + -0.04282592982053757, + 0.010543941520154476, + 0.026020638644695282, + 0.0027278561610728502, + -0.021314026787877083, + -0.0013003252679482102, + 0.027815653011202812, + -0.01982995867729187, + 0.017610926181077957, + 0.008056363090872765, + -0.008162367157638073, + 0.0031147736590355635, + -0.007526339031755924, + -0.0026342186611145735, + 0.03584374859929085, + -0.045256972312927246, + -0.00967470183968544, + 0.00025794495013542473, + 0.016169261187314987, + -0.013399003073573112, + -0.008430913090705872, + -0.00858638621866703, + 0.021215088665485382, + -0.025257403030991554, + -0.010282463394105434, + 0.019787557423114777, + 0.030133623629808426, + -0.011413180269300938, + 0.030670713633298874, + 0.004413331858813763, + -0.0033992198295891285, + -0.027123088017106056, + 0.009907912462949753, + 0.0004929222050122917, + -0.015080945566296577, + 0.03556106612086296, + 0.0009266583947464824, + 0.02081933803856373, + 0.01621166244149208, + -0.002828560769557953, + -0.0035193583462387323, + -0.016140993684530258, + -0.010119922459125519, + 0.0003612996079027653, + 0.02129989303648472, + 0.0032331454567611217, + -0.0005719840992242098, + 0.022628486156463623, + 0.02524326927959919, + 0.018020810559391975, + -0.023631997406482697, + 0.018331758677959442, + 0.002188998507335782, + -0.02412668615579605, + -0.009102276526391506, + 0.003802037797868252, + -0.006120008882135153, + -0.029681336134672165, + 0.008098764345049858, + -0.001272057299502194, + 0.02787218801677227, + -0.023363452404737473, + 0.02357546240091324, + -0.003457522252574563, + -0.027702581137418747, + -0.003671298734843731, + -0.0030988729558885098, + 0.008883199654519558, + -0.0026925213169306517, + 0.015349491499364376, + 0.008996271528303623, + -0.00043749052565544844, + -0.00549458060413599, + -0.027250293642282486, + 0.003660698188468814, + 0.00015149849059525877, + -0.004869152791798115, + 0.006392087787389755, + 0.03149048611521721, + 0.02668493427336216, + 0.015900716185569763, + -0.008233037777245045, + 0.001431064447388053, + 0.021455366164445877, + -0.005900932475924492, + -0.002042358508333564, + -0.016353003680706024, + -0.008028094656765461, + -0.0033992198295891285, + 0.020395318046212196, + -0.040225278586149216, + 0.02665666677057743, + 0.021921787410974503, + 0.017229309305548668, + 0.03674831986427307, + 0.02402774803340435, + -0.00881252996623516, + 0.002876262878999114, + -0.004466334357857704, + 0.016833558678627014, + -0.016762888059020042, + -0.031575288623571396, + 0.019278734922409058, + -0.0014398981584236026, + 0.05339813604950905, + 0.024268025532364845, + 0.023985346779227257, + 0.0031571753788739443, + -0.00972417090088129, + 0.0022172664757817984, + 4.4196262024343014e-5, + 0.0040811835788190365, + -0.012338955886662006, + -0.0005198650760576129, + -0.04282592982053757, + 0.0023250379599630833, + -0.009505094960331917, + -0.024918189272284508, + -0.04228883609175682, + 0.0037066335789859295, + 0.0028939303010702133, + -0.013815955258905888, + 0.016861826181411743, + 0.002332105068489909, + 0.03202757611870766, + 0.02934212051331997, + 0.008734793402254581, + -0.014331845566630363, + 0.0025688488967716694, + 0.008798396214842796, + -0.018501365557312965, + 0.01828935742378235, + -0.012635769322514534, + 0.020395318046212196, + 0.006476891692727804, + -0.013455539010465145, + -0.003961044829338789, + -0.020974811166524887, + -0.031151268631219864, + -0.024578973650932312, + 0.01260750088840723, + -0.006738370284438133, + -0.011201171204447746, + -0.0038338392041623592, + -0.031857967376708984, + 0.008240104652941227, + -0.03912282735109329, + 0.020098505541682243, + -0.01265696994960308, + 0.03004881925880909, + 0.0021465965546667576, + -0.00147169956471771, + 0.0036147627979516983, + -0.023080771788954735, + -0.01659328117966652, + -0.03027496300637722, + -0.011674659326672554, + 0.033243097364902496, + 0.012897247448563576, + 0.010183525271713734, + -0.05879731476306915, + 0.0050422935746610165, + 0.015335356816649437, + -0.004286126233637333, + -0.030614178627729416, + -0.014996142126619816, + 0.013667549006640911, + -0.015575634315609932, + -0.04686824232339859, + -0.012572166509926319, + -0.012049209326505661, + -0.01392196025699377, + -0.0025600153021514416, + 0.002998168347403407, + 0.005028159823268652, + -0.006293150130659342, + 0.003393919439986348, + -0.027024149894714355, + -0.018656840547919273, + -0.010614611208438873, + 0.018925385549664497, + -0.01985822804272175, + 0.014798265881836414, + 0.0451156310737133, + -0.0020017235074192286, + 0.04780108481645584, + 0.025709690526127815, + 0.015349491499364376, + -0.015999654307961464, + 0.003738434985280037, + 0.06609044224023819, + 0.010063386522233486, + 0.010720616206526756, + -0.02079106867313385, + -0.00042843594565056264, + 0.0015467862831428647, + 0.009893778711557388, + -0.022642619907855988, + -0.004402731545269489, + 0.03290387988090515, + -0.010840754956007004, + -0.000608202361036092, + -0.011441448703408241, + -0.015561500564217567, + 0.0056111859157681465, + 0.011349577456712723, + 0.0028479949105530977, + -0.0021377629600465298, + 0.03120780549943447, + -0.02197832241654396, + 0.019886495545506477, + -0.03191450238227844, + 0.005674788728356361, + -0.013801821507513523, + -0.020649729296565056, + 0.017610926181077957, + -0.015434294939041138, + -0.017384782433509827, + 0.04610500857234001, + -0.0007822269108146429, + -0.011441448703408241, + -0.012296553701162338, + -0.005547583103179932, + 0.04375876858830452, + 0.013017386198043823, + 0.0047560809180140495, + 0.0074274009093642235, + 0.02845168113708496, + -0.007674745749682188, + -0.0022048992104828358, + 0.0310381967574358, + 0.049327556043863297, + -0.012748840264976025, + 0.008593454025685787, + 0.0031677759252488613, + 0.005226035136729479, + 0.016098592430353165, + 0.0046006073243916035, + -0.03247986361384392, + 0.0051306309178471565, + -0.04997771605849266, + -0.007597008720040321, + -0.02908770926296711, + 0.03700273111462593, + -0.03313002362847328, + -0.015872448682785034, + -0.022798093035817146, + -0.012621634639799595, + 0.012543898075819016, + 0.023971213027834892, + -0.026995882391929626, + -0.011328376829624176, + -0.01631060056388378, + 0.00750513793900609, + -0.0018992521800100803, + -0.01621166244149208, + 0.047970693558454514, + -0.005017559044063091, + -0.006134142633527517, + -0.02002783492207527, + 0.0066394321620464325, + -0.006869109347462654, + 0.004438066389411688, + -0.020126773044466972, + 0.003650097642093897, + 0.018374159932136536, + 0.006734836380928755, + -0.035702407360076904, + 0.020734533667564392, + 0.012932581827044487, + 0.024041881784796715, + 0.019405940547585487, + -0.01985822804272175, + -0.027151355519890785, + -0.026091307401657104, + -0.020494256168603897, + -0.005014025606215, + -0.023985346779227257, + -0.03437381610274315, + 0.02893223613500595, + 0.006042271852493286, + 0.018826447427272797, + -0.0062648821622133255, + -0.023589596152305603, + 0.00531790591776371, + 0.009879644960165024, + -0.02274155803024769, + -0.002591816708445549, + 0.013893691822886467, + 0.00035776611184701324, + 0.0023533059284090996, + 0.025525949895381927, + 0.0059362673200666904, + -0.027702581137418747, + -0.04534177482128143, + 0.018190419301390648, + 0.012762974947690964, + -0.03361057862639427, + 0.013978496193885803, + -0.035956818610429764, + 0.012946716509759426, + 0.017370648682117462, + -0.009964448399841785, + -0.005632387008517981, + -0.0036960330326110125, + 0.019405940547585487, + -0.018049079924821854, + -0.016395404934883118, + 0.002510546473786235, + 0.008070496842265129, + -0.0035582268610596657, + -0.024593107402324677, + -0.02729269489645958, + -0.07151788473129272, + -0.020677996799349785, + 0.008028094656765461, + 0.037115804851055145, + 0.013787687756121159, + -0.024211490526795387, + 0.0038656406104564667, + 0.034006331115961075, + -0.004392131231725216, + 0.013102189637720585, + -0.009222415275871754, + -0.02630331739783287, + -0.010572209022939205, + 0.037879038602113724, + 0.012282419949769974, + 0.00785141997039318, + -0.01412690244615078, + -0.014642792753875256, + 0.012543898075819016, + -0.010664080269634724, + -0.017582658678293228, + -0.006533427629619837, + 0.025172600522637367, + -0.004441599827259779, + -0.00706345122307539, + 0.024366963654756546, + -0.029681336134672165, + 0.007335530128329992, + -0.019872361794114113, + -0.0035105247516185045, + 0.02758950926363468, + -0.012437893077731133, + -0.009434424340724945, + -0.00890440121293068, + -0.008360243402421474, + 0.018331758677959442, + 0.0023197378031909466, + 0.0033179493620991707, + 0.03149048611521721, + 0.008854932151734829, + 0.011208238080143929, + -0.011568654328584671, + -0.0015944885089993477, + -0.015547366812825203, + 0.006084674037992954, + -0.011017429642379284, + 0.0063320184126496315, + -0.016070323064923286, + -0.008946802467107773, + -0.011992673389613628, + 0.02364613115787506, + 0.019109126180410385, + 0.01488307025283575, + -0.015179883688688278, + -0.0011713526910170913, + 0.007900889031589031, + 0.0027260894421488047, + -0.01523641962558031, + 0.013420204631984234, + -0.0020070236641913652, + 0.04582232981920242, + 0.0046677435748279095, + -0.010013917461037636, + -0.03479783236980438, + -0.018246954306960106, + 0.02594996802508831, + -0.007434468250721693, + 0.022897031158208847, + 0.006929178722202778, + 0.006144743412733078, + -0.01762505993247032, + -0.024423500522971153, + 0.013837155885994434, + 0.008932668715715408, + -0.009335487149655819, + -0.0024716779589653015, + 0.02559661865234375, + 0.0249605905264616, + 0.008869065903127193, + -0.011073965579271317, + -0.0028939303010702133, + 0.0011448515579104424, + 0.003505224594846368, + 0.0007217158563435078, + -0.02585102990269661, + 0.0005229568923823535, + 0.0006576713058166206, + -0.009526295587420464, + 0.035956818610429764, + 0.011441448703408241, + 0.021964188665151596, + -0.010084587149322033, + 0.010487405583262444, + 0.027434036135673523, + -0.0158865824341774, + 0.029200781136751175, + -0.021455366164445877, + -0.007056384347379208, + -0.01909499242901802, + -0.010430869646370411, + 0.001023829448968172, + -0.02284049428999424, + 0.022515414282679558, + -0.031829699873924255, + 0.008211836218833923, + 0.0065934970043599606, + -0.009816042147576809, + 0.017215175554156303, + 0.0023674399126321077, + -0.008755994029343128, + -0.0264305230230093, + 0.035900283604860306, + -0.02453657053411007, + 0.03847266733646393, + -0.011568654328584671, + 0.03188623487949371, + 0.010049252770841122, + -0.00745566887781024, + 0.0054769134148955345, + -0.034006331115961075, + -0.0008626138442195952, + 0.021087883040308952, + -0.01707383617758751, + -0.018501365557312965, + -0.02111615054309368, + 0.009335487149655819, + 0.009999783709645271, + -0.02127162367105484, + 0.024974724277853966, + 0.032084111124277115, + 0.01116583589464426, + 0.01207747682929039, + 0.025356341153383255, + 0.004727812949568033, + -0.008685324341058731, + 0.002807359676808119, + 0.033497508615255356, + 0.0019981900695711374, + 0.03601335361599922, + -0.035447996109724045, + 0.010960893705487251, + -0.01762505993247032, + 0.010529807768762112, + 0.024875786155462265, + -0.005731324665248394, + -0.011936137452721596, + 0.002611250849440694, + -0.00876306090503931, + -0.01623993180692196, + -0.014395448379218578, + -0.01195027120411396, + 0.016734620556235313, + 0.008494515903294086, + -0.02271328866481781, + -0.02610544115304947, + -0.004271992482244968, + -0.020649729296565056, + 0.001837416086345911, + -0.0015291188610717654, + -0.031377412378787994, + -0.008169434033334255, + 0.005254303105175495, + 0.003102406393736601, + -0.0005688922828994691, + 0.02883329801261425, + -0.009356687776744366, + -0.024112552404403687, + 0.01161105651408434, + -0.025144333019852638, + -0.011709993705153465, + -0.012812444008886814, + 0.01004218589514494, + -0.0009593432187102735, + -0.01364634744822979, + 0.025653155520558357, + -0.022402342408895493, + -0.009031606838107109, + -0.004671277012676001, + 0.024706179276108742, + 0.015999654307961464, + -0.013801821507513523, + 0.00113513448741287, + 0.004720746073871851, + 0.021540170535445213, + -0.003978712484240532, + -0.0021713310852646828, + 0.002885096473619342, + 0.001057397574186325, + -0.002720789285376668, + 0.003453988814726472, + 0.013370735570788383, + 0.02354719303548336, + -0.014437849633395672, + -0.00015878632257226855, + 0.012452027760446072, + -0.004088250920176506, + 0.01536362525075674, + 0.025045394897460938, + -0.0222610030323267, + -0.020494256168603897, + -0.013109256513416767, + -0.003003468504175544, + 0.013073922134935856, + -0.014487318694591522, + 0.011702926829457283, + 0.012155214324593544, + -0.025483546778559685, + 0.012289486825466156, + 0.01925046741962433, + 0.010911424644291401, + -0.01649434305727482, + 0.028762629255652428, + 0.02187938429415226, + -0.02111615054309368, + 0.008487449027597904, + 0.005713657476007938, + 0.008141166530549526, + -0.006568762473762035, + 0.001386895775794983, + -0.02979440800845623, + 0.026133710518479347, + 0.01679115556180477, + 0.018374159932136536, + -0.049610234797000885, + 0.020833471789956093, + -0.0018798179225996137, + -0.0057631260715425014, + -0.032055843621492386, + -0.011618123389780521, + 0.021511901170015335, + -0.00986551120877266, + -0.011985606513917446, + 0.015688706189393997, + -0.009999783709645271, + -0.006077607162296772, + 0.001682825735770166, + 0.0168194230645895, + -0.008897334337234497, + 0.017822936177253723, + 0.0026483526453375816, + -0.03861400485038757, + -0.002266735304147005, + -0.0029274984262883663, + 0.01896778680384159, + 0.018473098054528236, + 0.026769738644361496, + -0.023123174905776978, + -0.011257707141339779, + 0.016536744311451912, + 0.014642792753875256, + 0.007519271690398455, + -0.0013992630410939455, + -0.020253978669643402, + 0.003017602488398552, + 0.00745566887781024, + 0.012628701515495777, + 0.0016987264389172196, + -0.02139882929623127, + 0.007483936846256256, + -0.005176566541194916, + 0.011766529642045498, + 0.013709950260818005, + 0.02582276239991188, + -0.014741730876266956, + 0.005070561543107033, + -0.024140819907188416, + -0.008741860277950764, + 0.007084652315825224, + 0.034713029861450195, + 0.0020494256168603897, + 0.03078378550708294, + 0.002056492492556572, + -0.02089000679552555, + -0.001261456753127277, + 0.009215348400175571, + 0.0054380446672439575, + -0.004826750606298447, + -0.01331419963389635, + -0.014437849633395672, + 0.009766573086380959, + -0.026345718652009964, + -0.019165663048624992, + -0.0013268264010548592, + 0.020140906795859337, + 0.012699372135102749, + 0.014939606189727783, + -0.006625298410654068, + -0.00125350640155375, + 0.02387227490544319, + 0.0009063408360816538, + 0.013936094008386135, + 0.007441535126417875, + 0.017794668674468994, + -0.01392196025699377, + 0.011865467764437199, + 0.0026130175683647394, + 0.01465692650526762, + -0.013123391196131706, + 0.009483893401920795, + 0.022529548034071922, + 0.028621288016438484, + 0.00033877359237521887, + 0.0020017235074192286, + 0.0013365434715524316, + -0.004943355917930603, + -0.0001396833686158061, + 0.01020472589880228, + -0.021568438038229942, + -0.011907869949936867, + -0.01909499242901802, + -0.006257815286517143, + 0.0016439573373645544, + -0.03050110675394535, + -0.00968883652240038, + -0.005876197945326567, + -0.01800667680799961, + -0.002616551239043474, + 0.01884058117866516, + -0.0020617928821593523, + 0.0051482985727488995, + 0.011794798076152802, + -0.009102276526391506, + -0.0031660092063248158, + -0.004402731545269489, + -0.03194276988506317, + -0.015208151191473007, + 0.019434208050370216, + 0.012649903073906898, + 0.025483546778559685, + 0.008416779339313507, + -0.0353066548705101, + 0.013978496193885803, + -0.024041881784796715, + -0.007540472783148289, + 0.03332789987325668, + -0.012536831200122833, + -0.023080771788954735, + 0.00303173647262156, + -0.006589963566511869, + 0.0006647382397204638, + -0.0006748970481567085, + 0.02028224617242813, + -0.011179969646036625, + -0.0073143295012414455, + 0.040960244834423065, + 0.022246867418289185, + 0.012388424016535282, + 0.01491133775562048, + 0.020296379923820496, + 0.0027667246758937836, + 0.012211750261485577, + -0.018303491175174713, + 0.0035069913137704134, + 0.012388424016535282, + 0.013073922134935856, + 0.03912282735109329, + -0.009717104025185108, + 0.02002783492207527, + -0.025780361145734787, + -0.01523641962558031, + -0.02200658991932869, + 0.0015785876894369721, + 0.015660438686609268, + -0.008395577780902386, + 0.003734901547431946, + 0.005664188414812088, + 0.009992716833949089, + -0.01960381679236889, + -0.0053885760717093945, + -0.009031606838107109, + 0.006441556848585606, + -0.015504964627325535, + -0.014409582130610943, + -0.01364634744822979, + -0.02187938429415226, + 0.008190635591745377, + -0.004247257951647043, + 0.0026236181147396564, + 0.0024116085842251778, + -0.0010706481989473104, + -0.0008109365007840097, + 0.014451984316110611, + -0.04279765859246254, + -0.009731237776577473, + -0.01182306557893753, + 0.011943204328417778, + 0.006141209974884987, + -0.0026412855368107557, + -0.0038091049063950777, + -0.01707383617758751, + -0.009922047145664692, + -0.0024822785053402185, + -0.006784305442124605, + 0.0002517613465897739, + -0.003150108503177762, + 0.017215175554156303, + -0.033045221120119095, + 0.014027965255081654, + -0.04056449234485626, + 0.021766314283013344, + -0.02357546240091324, + 0.005222501698881388, + 0.0018886517500504851, + 0.02764604426920414, + -0.015434294939041138, + 0.012374290265142918, + 0.012487362138926983, + 0.012444959953427315, + 0.012473228387534618, + -0.028663691133260727, + -0.020126773044466972, + 0.00815530028194189, + 0.013886624947190285, + -0.0072259921580553055, + -0.009957381524145603, + -0.0025688488967716694, + 0.015660438686609268, + 0.001231422065757215, + 0.005098829511553049, + -0.002929265145212412, + -0.0367765873670578, + 0.020225711166858673, + -0.006971580442041159, + -0.021314026787877083, + -0.02377333678305149, + 0.0016739920247346163, + -0.019278734922409058, + -0.021639106795191765, + -0.0027154888957738876, + 0.012946716509759426, + 0.022571949288249016, + -0.005480446852743626, + 0.007512204814702272, + -0.004197788890451193, + 0.06049339100718498, + -0.021610839292407036, + 0.020861739292740822, + -0.011893735267221928, + -5.984852759866044e-5, + -0.01631060056388378, + 0.0028055929578840733, + -0.02604890614748001, + 0.001390429213643074, + -0.02284049428999424, + -0.018402429297566414, + -0.01787947118282318, + 0.019632084295153618, + -0.015801778063178062, + 0.02306663803756237, + 0.034458618611097336, + -0.002939865691587329, + -0.027179623022675514, + 0.03479783236980438, + -0.009017473086714745, + 0.013427271507680416, + 0.021003078669309616, + -0.025427011772990227, + 0.004784348886460066, + -0.023010103031992912, + 0.0206921324133873, + -0.007045784033834934, + 0.0016845925711095333, + -0.0038338392041623592, + 0.012162281200289726, + 0.0023497724905610085, + 0.00619067857041955, + 0.03646564111113548, + -0.034458618611097336, + -0.021356428042054176, + 0.00810583122074604, + -0.000233873026445508, + 0.002537047490477562, + -0.005088229198008776, + 0.00414125295355916, + 0.014812400564551353, + 0.00039840125828050077, + 0.011010362766683102, + -0.00654402794316411, + -0.0010176458163186908, + -0.013179927133023739, + 0.022981835529208183, + -0.007215391378849745, + -0.006120008882135153, + 0.012409625574946404, + 0.0035034576430916786, + 0.001001745113171637, + 0.006589963566511869, + -0.00688677653670311, + -0.005105896387249231, + 0.0009778940584510565, + -0.0034292545169591904, + -0.00968883652240038, + -0.008685324341058731, + -0.009123477153480053, + 0.023278648033738136, + -0.026190245524048805, + -0.014388381503522396, + -0.012218817137181759, + 0.011391979642212391, + -0.0078090182505548, + -0.00920828152447939, + -0.027787383645772934, + -0.02463550865650177, + 0.004328528419137001, + 0.021455366164445877, + -0.016833558678627014, + -0.0092436159029603, + 0.027320964261889458, + 0.004508736543357372, + -0.016621548682451248, + 0.008197702467441559, + 0.023829873651266098, + -0.005134164355695248, + -0.012550964951515198, + -0.008826663717627525, + -0.02838101051747799, + 0.006233080755919218, + 0.022501280531287193, + -0.005293171852827072, + -0.0023745070211589336, + -0.006911511067301035, + -0.010883157141506672, + -0.005618252791464329, + 0.004144786391407251, + 0.00745566887781024, + 0.014727596193552017, + -0.001308275619521737, + 0.0032225451432168484, + 0.0022861696779727936, + -0.0004748130450025201, + 0.0015953718684613705, + 0.0006333785131573677, + -0.020225711166858673, + 0.009858444333076477, + 0.0004544954572338611, + -0.0003310440806671977, + 0.002729622879996896, + -0.015561500564217567, + -0.005501647479832172, + -0.006597030442208052, + -0.01944834180176258, + 0.0123813571408391, + -0.01212694589048624, + 0.020253978669643402, + -0.01068528089672327, + 0.08638682216405869, + 0.003826772328466177, + 0.009307218715548515, + 0.0018409495241940022, + 0.0065722959116101265, + -0.02597823552787304, + 0.004858552012592554, + 0.0064380234107375145, + 0.024338696151971817, + -0.0123813571408391, + 0.0001749078801367432, + 0.004109451547265053, + 0.00048320507630705833, + 0.02511606365442276, + -0.006784305442124605, + -0.0028532950673252344, + 0.005310839042067528, + 0.00785141997039318, + 0.005657121539115906, + 0.015561500564217567, + 0.018925385549664497, + -0.01399969682097435, + -0.009922047145664692, + 0.01268523745238781, + -0.0006329368334263563, + -0.008204769343137741, + -0.008671190589666367, + 0.013080989010632038, + 0.025780361145734787, + 0.025229135528206825, + 0.015773510560393333, + -0.0007212741184048355, + -0.011278907768428326, + -0.0012817743699997663, + -0.006028138101100922, + 0.02127162367105484, + 0.027250293642282486, + 0.006321418099105358, + -0.010452070273458958, + 0.024819251149892807, + -0.007703013718128204, + -0.012317754328250885, + 0.021695643663406372, + 0.0116958599537611, + -0.023250380530953407, + 0.0033285499084740877, + 0.0047172121703624725, + -0.010275395587086678, + 0.013483807444572449, + 0.0031819099094718695, + -0.007745415437966585, + -0.014628659002482891, + 0.002409841865301132, + 0.005310839042067528, + -0.008522783406078815, + -0.015815911814570427, + -0.0030988729558885098, + -0.017709864303469658, + 0.0027790917083621025, + 0.004003447014838457, + -0.003939844202250242, + -0.013709950260818005, + -0.004017580766230822, + -0.01944834180176258, + -0.011264774017035961, + 0.0064874920062720776, + -0.020070236176252365, + -0.0022172664757817984, + -0.0139502277597785, + -0.010579275898635387, + -0.01409863494336605, + 0.008551051840186119, + 0.0005503414431586862, + -0.03007708676159382, + 0.010416735894978046, + 0.003346217330545187, + -0.0032914481125772, + 0.004759614355862141, + 0.005137697793543339, + 0.018063213676214218, + 0.010423802770674229, + 0.004508736543357372, + -0.001238489057868719, + -0.00431792763993144, + -0.0065828962251544, + 0.0027614242862910032, + 0.03126434236764908, + -0.01455798838287592, + 0.0014990841737017035, + -0.011851334013044834, + 0.007526339031755924, + 0.01364634744822979, + 0.009717104025185108, + 0.010741816833615303, + 0.013886624947190285, + -0.0008383210515603423, + -0.016197528690099716, + -0.01440251525491476, + -0.004438066389411688, + 0.004671277012676001, + 0.016875959932804108, + -0.0009902612073346972, + 0.0026783873327076435, + 0.014063299633562565, + -0.00026258264551870525, + 0.023716801777482033, + 0.015250553376972675, + -0.014155170880258083, + -0.026359854266047478, + -0.00693624559789896, + 0.002210199600085616, + -0.01932113617658615, + -0.01392196025699377, + 0.013752352446317673, + -0.013194060884416103, + 0.010565142147243023, + 0.0021236289758235216, + 0.008678257465362549, + -0.01765332743525505, + -0.015688706189393997, + -0.0263315849006176, + -0.0033886192832142115, + -0.0033532842062413692, + -0.00720125762745738, + 0.005964535288512707, + 0.007194190751761198, + -0.02678387239575386, + -0.006798439659178257, + -0.008883199654519558, + 0.0005817011697217822, + 0.0059574684128165245, + 0.020904140546917915, + 0.008607587777078152, + -0.009088142774999142, + 0.004346195608377457, + -0.002828560769557953, + 0.014437849633395672, + 0.009392023086547852, + 0.0064168223179876804, + -0.01164639089256525, + 0.02261435240507126, + -0.004222523421049118, + -0.010501539334654808, + 0.019307002425193787, + -0.005713657476007938, + 0.012974984012544155, + -0.007660611532628536, + -0.014769998379051685, + 0.014459051191806793, + 0.004501669201999903, + 0.007420334033668041, + -0.03838786110281944, + 0.013349534012377262, + -0.010374333709478378, + 0.00531790591776371, + 0.013851290568709373, + -0.024041881784796715, + 0.024706179276108742, + -0.005491047166287899, + 0.0023692066315561533, + 0.009999783709645271, + 0.005554649978876114, + -0.017794668674468994, + -0.005862063728272915, + -0.0017605626489967108, + 0.0042295902967453, + 0.00860052090138197, + 0.01973102241754532, + 0.012466161511838436, + -0.005604119040071964, + -0.008395577780902386, + 0.0028709624893963337, + -0.0001576820941409096, + -0.02341998741030693, + -0.010416735894978046, + 0.020974811166524887, + 0.0026819207705557346, + 0.022656753659248352, + -0.0008489215397275984, + 0.015547366812825203, + 0.0029592998325824738, + 0.01382302213460207, + -0.0014699328457936645, + -0.008134099654853344, + -0.008508649654686451, + -0.015208151191473007, + 0.02928558550775051, + -0.00541331060230732, + -0.009010405279695988, + -0.008346108719706535, + -0.0010114621836692095, + 0.014451984316110611, + -0.005473379977047443, + 0.0011068665189668536, + -0.017893604934215546, + -0.023151442408561707, + 0.00510236294940114, + 0.03321482986211777, + 0.007469803094863892, + -0.004491068888455629, + -0.021483633667230606, + 0.014614524319767952, + 0.00925775058567524, + 0.0035069913137704134, + 0.0027384567074477673, + -0.0032154780346900225, + -0.01934940367937088, + -0.01896778680384159, + 0.0020176242105662823, + -0.0027119554579257965, + -0.01985822804272175, + -0.02018330805003643, + 0.005134164355695248, + -0.010289530269801617, + -0.015278820879757404, + 0.018981920555233955, + -0.0029522329568862915, + 0.006922111846506596, + 0.003254346549510956, + -0.0010900824563577771, + 0.012148146517574787, + -0.0023603730369359255, + 0.0005419494118541479, + -0.007964491844177246, + 0.0035988620948046446, + 0.008176501840353012, + 0.0017994310474023223, + 0.011172902770340443, + 0.017469586804509163, + 0.007165922783315182, + 0.025257403030991554, + -0.012762974947690964, + -0.025200868025422096, + 0.020296379923820496, + 0.0035370260011404753, + 0.01475586462765932, + 0.02008437179028988, + 0.001393962767906487, + 0.018628571182489395, + 0.006840841379016638, + -0.02002783492207527, + -0.003528192173689604, + -0.010925558395683765, + -0.016451939940452576, + 0.008833731524646282, + -0.010452070273458958, + 0.0074274009093642235, + -0.023617863655090332, + -0.004678343888372183, + -3.1580588256474584e-5, + -0.005268437322229147, + -0.010642879642546177, + -0.009575764648616314, + 0.0035935617052018642, + 0.02079106867313385, + -0.008042228408157825, + 0.0020723931957036257, + 0.011448515579104424, + 0.0014964340953156352, + -0.020861739292740822, + -0.01111636683344841, + -0.008176501840353012, + -0.004724279511719942, + -0.002473444677889347, + -0.009236549027264118, + 0.027448169887065887, + -0.010275395587086678, + 0.015674572438001633, + 0.006459224037826061, + 0.0037949709221720695, + 0.0064839585684239864, + -0.002077693585306406, + -0.008565185591578484, + -0.0011969705810770392, + -0.005487513728439808, + 0.009759506210684776, + 0.024819251149892807, + 0.006787838879972696, + -0.005968068726360798, + -0.005374441854655743, + -0.01217641495168209, + -0.0008785145473666489, + -0.008162367157638073, + -0.011328376829624176, + 0.008056363090872765, + -0.02111615054309368, + 0.009003338403999805, + 0.009914979338645935, + -0.01199974026530981, + 0.03459995612502098, + 0.001925753429532051, + -0.02585102990269661, + 0.01704556681215763, + -0.0013506774557754397, + 0.0021342295221984386, + 0.012240017764270306, + -0.02079106867313385, + -0.00038051296724006534, + 0.014437849633395672, + 0.006540494505316019, + 0.0031271406915038824, + -0.018670974299311638, + -0.01455798838287592, + -0.007964491844177246, + -0.012939649634063244, + 0.01704556681215763, + 0.02797112613916397, + 0.018374159932136536, + -0.021639106795191765, + 0.013893691822886467, + -0.007900889031589031, + -0.001989356242120266, + 0.0061129420064389706, + -0.0067065684124827385, + -0.01440251525491476, + -0.002215499756857753, + 0.014741730876266956, + 0.025582484900951385, + 0.004784348886460066, + 0.01116583589464426, + -0.02063559554517269, + -0.00828250590711832, + 0.0025600153021514416, + 0.011568654328584671, + 0.005469846073538065, + -0.005741924978792667, + -0.0021324625704437494, + -0.01296085026115179, + 0.003528192173689604, + -0.028564753010869026, + 0.027575375512242317, + -0.008006894029676914, + -0.010593410581350327, + -0.0027154888957738876, + -0.026670800521969795, + 0.015787644311785698, + 0.005003425292670727, + -0.010296597145497799, + -0.020734533667564392, + 0.013830089010298252, + -0.015420161187648773, + -0.006646499037742615, + 0.0008745393715798855, + -0.010918491519987583, + -0.0008983904263004661, + 0.017017299309372902, + 0.0041200523264706135, + -0.012289486825466156, + -0.0006885893526487052, + 0.024819251149892807, + 0.003749035531654954, + -0.018882984295487404, + 0.002240234287455678, + -0.015377759002149105, + 0.005275504197925329, + 0.008678257465362549, + -0.013363668695092201, + 0.02293943241238594, + -0.002263201866298914, + 0.0037101670168340206, + -0.011010362766683102, + 0.025511816143989563, + -0.007957424968481064, + -0.021964188665151596, + -0.024918189272284508, + 0.013010319322347641, + 0.008501582778990269, + 0.006282549351453781, + -0.009052807465195656, + -0.005134164355695248, + -0.0008493632194586098, + -0.006434489507228136, + -0.028041796758770943, + -0.023052504286170006, + -0.018600303679704666, + 0.006890310440212488, + 0.009787773713469505, + 0.013561544008553028, + -0.006006937008351088, + -0.021257489919662476, + 0.02377333678305149, + -0.014466118067502975, + 0.004770214669406414, + -0.023024236783385277, + 0.03298868611454964, + 0.00972417090088129, + 0.017837069928646088, + 0.017469586804509163, + 0.001590071595273912, + -0.00027185806538909674, + 0.0019292868673801422, + 0.00986551120877266, + 0.01025419495999813, + -0.004989291541278362, + -0.0020211576484143734, + 0.013208194635808468, + -0.0062648821622133255, + 0.025879299268126488, + 0.01409863494336605, + -0.010642879642546177, + 0.0023020703811198473, + -0.021031346172094345, + 0.0053037721663713455, + -0.003982245922088623, + 0.014868936501443386, + -0.015179883688688278, + -0.004812616854906082, + -0.007307262159883976, + 0.024239758029580116, + -0.020946543663740158, + -0.018727509304881096, + -0.01684769243001938, + -0.014925472438335419, + -0.011201171204447746, + 0.01886884868144989, + 0.015561500564217567, + 0.004763147793710232, + 0.003900975687429309, + -0.006289616692811251, + -0.0023745070211589336, + 0.01980169117450714, + -0.005452178884297609, + -0.0041695209220051765, + 0.009236549027264118, + 0.003961044829338789, + -0.0019610882736742496, + 0.026317451149225235, + -0.015151615254580975, + 0.000385371531592682, + 0.012770041823387146, + -0.018812313675880432, + -0.02124335616827011, + -0.01475586462765932, + 0.0019822893664240837, + -0.020480122417211533, + -0.006625298410654068, + 0.012282419949769974, + -0.015462562441825867, + -0.004335595294833183, + 0.00015492155216634274, + -0.016890093684196472, + -0.00558291794732213, + -0.014381314627826214, + 0.007162389345467091, + 0.0024787448346614838, + 0.013858357444405556, + 0.000987611128948629, + 0.01876991242170334, + -0.0067949057556688786, + -0.017031433060765266, + -0.010183525271713734, + -0.006208346225321293, + -0.016056189313530922, + -0.00990084558725357, + -0.026190245524048805, + -0.003109473269432783, + -0.0032296120189130306, + -0.019844094291329384, + 0.02392880991101265, + -0.0321689136326313, + -0.010006850585341454, + 0.0018939519068226218, + 0.00046862944145686924, + -0.017964275553822517, + -0.016070323064923286, + 0.027532972395420074, + 0.019886495545506477, + 0.03606989234685898, + -0.002939865691587329, + 0.010904357768595219, + 0.007886755280196667, + 0.033638846129179, + 0.017978409305214882, + -0.010119922459125519, + 0.012444959953427315, + 0.033243097364902496, + 0.002450477099046111, + 0.017102103680372238, + 0.012247084639966488, + -0.007900889031589031, + -0.0024381098337471485, + 0.01934940367937088, + -0.006201279349625111, + -0.006522826850414276, + 0.00522956857457757, + -0.004812616854906082, + 0.012473228387534618, + 0.01970275305211544, + 0.008996271528303623, + -0.008748927153646946, + 0.014338912442326546, + 0.01407743338495493, + 0.013526208698749542, + 0.006194212008267641, + -0.0044946023263037205, + -0.004441599827259779, + 0.02195005491375923, + 0.01618339493870735, + 0.020423585548996925, + -0.017964275553822517, + 0.01409863494336605, + -0.004130652640014887, + -0.020041968673467636, + 0.013222328387200832, + 0.013533275574445724, + 0.012013874016702175, + -0.01443078275769949, + 0.020480122417211533, + 0.03287561237812042, + -0.006508693099021912, + 0.013116324320435524, + -0.003224311862140894, + -0.02303837053477764, + 0.036380838602781296, + 0.00019246491137892008, + -0.007349664345383644, + 0.008678257465362549, + 0.010049252770841122, + 0.009950314648449421, + 0.010480338707566261, + -0.009010405279695988, + -0.0323667898774147, + -0.00876306090503931, + 0.01778053306043148, + 0.003413353580981493, + -0.01742718555033207, + 0.014218773692846298, + -0.003932776860892773, + 0.0030229028780013323, + -0.013095122762024403, + -0.01422584056854248, + 0.013031519949436188, + -0.013321266509592533, + -0.0063108173198997974, + -0.008501582778990269, + 0.0008904400747269392, + 0.020098505541682243, + 0.01717277243733406, + 0.03923590108752251, + -0.030331499874591827, + 0.011512118391692638, + 0.007137654814869165, + 0.010006850585341454, + -0.018854714930057526, + -0.0035175916273146868, + -0.0025653154589235783, + 0.010409669019281864, + -0.0038585737347602844, + -0.01707383617758751, + -0.004137719515711069, + -0.020833471789956093, + -0.010353133082389832, + 0.03219718486070633, + -0.0044274660758674145, + -0.005201301071792841, + -0.020324649289250374, + -0.0009240082581527531, + 0.0174554530531168, + 0.013194060884416103, + 0.013929027132689953, + -0.005427444353699684, + -0.0057631260715425014, + -0.01720104180276394, + 0.0033479840494692326, + -0.011285974644124508, + -0.0017508454620838165, + 0.028903968632221222, + 0.00727899419143796, + 0.0062401476316154, + -0.007392066065222025, + -0.007512204814702272, + -0.011384912766516209, + -0.026133710518479347, + 0.009505094960331917, + -0.0037843703757971525, + -0.015547366812825203, + -0.014091568067669868, + -0.001975222257897258, + 0.013731151819229126, + 0.00113513448741287, + -0.008056363090872765, + -0.009038673713803291, + -0.01646607555449009, + -0.0004021555942017585, + -0.0032154780346900225, + 0.0185861699283123, + 0.013158725574612617, + 0.017285844311118126, + 0.01925046741962433, + -0.011639324016869068, + 0.05670548602938652, + -0.015533233061432838, + -0.005837329663336277, + -0.0002703121572267264, + 0.019363539293408394, + 0.005399176385253668, + -0.0060917409136891365, + 0.003082972252741456, + -0.021342294290661812, + -0.01455798838287592, + -0.012996185570955276, + 0.009625233709812164, + 0.0014831834705546498, + 0.010360199958086014, + -0.015151615254580975, + -0.004067049827426672, + 0.012324821203947067, + -0.015151615254580975, + -0.0015724041732028127, + 0.0011483849957585335, + -0.02306663803756237, + -0.00720125762745738, + 0.013759419322013855, + -0.025766227394342422, + 0.019024323672056198, + -0.025101929903030396, + 0.023886408656835556, + -0.005112963728606701, + 0.02111615054309368, + -0.004696011543273926, + -0.023080771788954735, + 0.024140819907188416, + 0.02483338490128517, + 0.014685194939374924, + 0.002348005771636963, + -0.00037035418790765107, + -0.007420334033668041, + 0.008734793402254581, + 0.009222415275871754, + 0.0037313681095838547, + 0.00985137652605772, + 0.00985137652605772, + -0.02627504989504814, + -0.018600303679704666, + -0.0007968025165610015, + 0.018670974299311638, + -0.016805289313197136, + -0.013702883385121822, + 0.02777324989438057, + -0.008897334337234497, + 0.01957554742693901, + -0.012614567764103413, + -0.014155170880258083, + -0.009144678711891174, + 0.0059574684128165245, + -0.011370779015123844, + 0.019420074298977852, + 0.010353133082389832, + 0.001590071595273912, + 0.010134056210517883, + -0.0063532195053994656, + 0.006144743412733078, + -0.02726442739367485, + 0.0032119445968419313, + -0.010748883709311485, + -0.011759462766349316, + -0.006402688100934029, + -0.01217641495168209, + 0.030614178627729416, + -0.012755908071994781, + -0.016989031806588173, + -0.026670800521969795, + 0.0012738240184262395, + 8.579761197324842e-5, + -0.004074116703122854, + -0.0025653154589235783, + 0.007724214345216751, + 0.00925775058567524, + 0.0016695752274245024, + 0.006756037473678589, + 0.011709993705153465, + 0.017285844311118126, + -0.006374420132488012, + 0.01164639089256525, + 0.001682825735770166, + 0.007618209812790155, + -0.010126989334821701, + -0.019391806796193123, + 0.007674745749682188, + -0.029737873002886772, + -0.003400986548513174, + 0.004505202639847994, + 0.0073143295012414455, + -0.016027921810746193, + -1.164948298537638e-5, + 0.01073474995791912, + 0.01595725119113922, + -0.007922089658677578, + -0.014614524319767952, + -0.0034769566264003515, + -0.024875786155462265, + -0.0006536960718221962, + -0.022656753659248352, + -0.02681213989853859, + 0.013179927133023739, + 0.0021783981937915087, + -0.004787882324308157, + -0.014317710883915424, + -0.007204791065305471, + -0.007091719191521406, + -0.024748580530285835, + -0.004381530452519655, + 0.00342395412735641, + -0.011561587452888489, + -0.01202800776809454, + 0.0008343458757735789, + 0.010148189961910248, + 0.005268437322229147, + 0.01478413213044405, + 0.012240017764270306, + -0.0036023955326527357, + 0.004749014042317867, + 0.01876991242170334, + -0.013406069949269295, + -0.02931385301053524, + -0.02255781553685665, + 0.008035161532461643, + 0.002802059520035982, + -0.008883199654519558, + 0.03476956486701965, + 0.013420204631984234, + -0.012996185570955276, + 0.007180056534707546, + -0.004385063890367746, + 0.012925514951348305, + -0.010713549330830574, + -0.0014549155021086335, + 0.03790730610489845, + 0.0050634946674108505, + 0.018572036176919937, + 0.01321526151150465, + 0.00012554939894471318, + 0.016875959932804108, + -0.007830219343304634, + -0.00711292028427124, + -0.008035161532461643, + 0.0033108824864029884, + 0.0079432912170887, + -0.004999891854822636, + 0.013080989010632038, + -0.021427098661661148, + -0.03126434236764908, + -0.0010971494484692812, + -0.004307327326387167, + -0.00693624559789896, + -0.015844179317355156, + 0.0019646217115223408, + -0.005593518726527691, + -0.0069468459114432335, + 0.004374463576823473, + -0.004766681231558323, + -0.004855018574744463, + 0.006123542319983244, + 0.00043749052565544844, + 0.0005856763455085456, + 0.010953826829791069, + 0.010975027456879616, + 0.008819596841931343, + 0.021540170535445213, + 0.018798179924488068, + 0.010671147145330906, + -0.013851290568709373, + 0.003305582096800208, + 0.02306663803756237, + -0.023858141154050827, + 0.016833558678627014, + 0.013717018067836761, + -0.015462562441825867, + 0.0011766529642045498, + 0.01369581650942564, + -0.0004268900665920228, + -0.007519271690398455, + 0.0015953718684613705, + -0.023716801777482033, + -0.009554563090205193, + -0.0263315849006176, + 0.009498028084635735, + -0.0009363754652440548, + 0.01377355307340622, + 0.00649455888196826, + -0.0074486020021140575, + -0.019617950543761253, + -0.02847994863986969, + 0.004328528419137001, + -0.02703828364610672, + -0.012232950888574123, + 0.014261175878345966, + 0.01455798838287592, + -0.012395491823554039, + 0.01739891618490219, + 0.019307002425193787, + -0.017964275553822517, + -0.012805376201868057, + -0.008084630593657494, + 0.020522523671388626, + 0.003153641941025853, + 0.016536744311451912, + -0.007589941844344139, + -0.0036218296736478806, + -0.02114441804587841, + 0.0019204531563445926, + -0.012367223389446735, + -0.0030547042842954397, + -0.02483338490128517, + -0.004250791389495134, + 0.023759203031659126, + -0.016522610560059547, + 0.014035032130777836, + -0.018190419301390648, + -0.020451854914426804, + 0.0014107468305155635, + -0.0039469110779464245, + 0.0026819207705557346, + 0.004625341389328241, + 0.012543898075819016, + -0.0043214610777795315, + -0.0008621721644885838, + -0.010162324644625187, + 0.005409776698797941, + 0.025709690526127815, + 0.005261370446532965, + -0.0012649903073906898, + 0.0011439681984484196, + -0.0009081075550056994, + -0.022755691781640053, + 0.005307305604219437, + 0.015194017440080643, + -0.01217641495168209, + -0.009794840589165688, + -0.008699458092451096, + -0.019519012421369553, + 0.010148189961910248, + 0.002351539209485054, + 0.008897334337234497, + 0.007476869970560074, + -0.008565185591578484, + -0.009123477153480053, + 0.0035635270178318024, + 0.019716888666152954, + -0.0005127980839461088, + -0.009031606838107109, + -0.020805204287171364, + 0.012664036825299263, + 0.019815824925899506, + -0.003042337018996477, + 0.0013073921436443925, + -0.008883199654519558, + 0.002655419521033764, + -0.0006943312473595142, + -0.0231938436627388, + 0.009165879338979721, + 0.007540472783148289, + 0.015504964627325535, + 0.03725714236497879, + -0.00270665530115366, + 0.019151529297232628, + -0.012134012766182423, + -0.0023126706946641207, + 0.01161105651408434, + -0.011187037453055382, + 0.008657056838274002, + 0.024098418653011322, + -0.004328528419137001, + -0.010452070273458958, + 0.006568762473762035, + -0.013837155885994434, + -0.008381444029510021, + -0.014119835570454597, + 0.001072414917871356, + -0.010480338707566261, + -0.011349577456712723, + 0.007575807627290487, + -0.015222284942865372, + 0.003660698188468814, + -0.0008339041960425675, + 0.004413331858813763, + 0.003135974518954754, + 0.012727639637887478, + 0.0029522329568862915, + 0.023434121161699295, + -0.006116475444287062, + 0.012141079641878605, + 0.01851550117135048, + 0.026600131765007973, + -0.0006302866968326271, + -0.0016174562042579055, + 0.010536874644458294, + -0.016155127435922623, + 0.005469846073538065, + 0.019999567419290543, + 0.013929027132689953, + 0.00030056771356612444, + 0.022091394290328026, + -0.025624888017773628, + -0.005674788728356361, + -0.011158769018948078, + 0.03488263860344887, + 0.01455798838287592, + -0.019151529297232628, + 0.007568740751594305, + -0.0033285499084740877, + -0.003453988814726472, + -0.00021167828526813537, + -0.0021430631168186665, + -0.024776848033070564, + -0.0191232617944479, + -0.029624801129102707, + -0.013349534012377262, + 0.0074486020021140575, + 0.017596792429685593, + -0.012183481827378273, + 0.012035075575113297, + -0.004084717016667128, + -0.012091611512005329, + -0.008127032779157162, + 0.013660482130944729, + 0.030840322375297546, + -0.012444959953427315, + 0.0043214610777795315, + -0.017695730552077293, + 0.0013135757762938738, + 0.030388034880161285, + 0.02341998741030693, + 0.012296553701162338, + 0.005876197945326567, + 0.002856828738003969, + -0.00972417090088129, + -0.029737873002886772, + 0.004872686229646206, + -0.011045697145164013, + 0.00488681998103857, + -0.017483720555901527, + 0.015250553376972675, + -0.016805289313197136, + -0.0008281623013317585, + -0.008515716530382633, + -0.0019045524531975389, + 0.0015105679631233215, + 0.006144743412733078, + -0.007780750282108784, + 0.02101721242070198, + 0.00706345122307539, + 0.00023806905664969236, + -0.01889711804687977, + -0.014148104004561901, + 0.02063559554517269, + 0.005819662008434534, + 0.010777152143418789, + -0.01452972088009119, + -0.0014407815178856254, + 0.006989248096942902, + -0.004664210136979818, + 0.0004209272738080472, + 0.004752547480165958, + 0.013893691822886467, + -0.007017516065388918, + 0.010324864648282528, + -0.008466247469186783, + -0.01478413213044405, + -0.01790774054825306, + 0.00697511387988925, + -0.017950141802430153, + 0.004763147793710232, + -0.008854932151734829, + 0.03770942986011505, + -0.010551008395850658, + 0.009794840589165688, + -0.010070453397929668, + 0.006183611694723368, + -0.0026483526453375816, + 0.016635682433843613, + -0.01116583589464426, + 0.00222610030323267, + 0.010657013393938541, + 0.029455192387104034, + 0.013384869322180748, + -0.011943204328417778, + 0.005787860602140427, + -0.008861999027431011, + 0.023137308657169342, + -0.012876046821475029, + 0.008911468088626862, + 0.011144635267555714, + -0.008190635591745377, + -0.003113006940111518, + 0.01111636683344841, + 0.004646542482078075, + -0.009052807465195656, + 0.007434468250721693, + -0.0028674290515482426, + 0.0019098526099696755, + -0.028522351756691933, + 0.003749035531654954, + 0.005756059195846319, + -0.019999567419290543, + 0.005727791227400303, + 0.00038007128750905395, + 0.01876991242170334, + 0.00781608559191227, + -0.007766616530716419, + 0.0131657924503088, + 0.03745501860976219, + -0.009307218715548515, + -0.007724214345216751, + 0.01778053306043148, + -0.008798396214842796, + 0.00745566887781024, + -0.014515587128698826, + -0.012240017764270306, + 0.005006958730518818, + 0.014423715882003307, + -0.0010785985505208373, + -0.037370216101408005, + -0.001955788116902113, + -0.008218903094530106, + 0.014416649006307125, + 0.012056276202201843, + 0.010289530269801617, + -0.0072259921580553055, + 0.009929114021360874, + 0.0002258122549392283, + 0.023179709911346436, + -0.013066855259239674, + -0.009992716833949089, + -0.006392087787389755, + -0.0056111859157681465, + -0.009342554025352001, + 0.011377845890820026, + -0.01679115556180477, + -0.017992543056607246, + 0.017384782433509827, + -0.010911424644291401, + 0.01742718555033207, + -0.013738218694925308, + -0.01539189275354147, + -0.022317538037896156, + -0.013420204631984234, + 0.026600131765007973, + 0.005734858103096485, + 0.004155387170612812, + 0.021893519908189774, + -0.005052894353866577, + 0.0020405917894095182, + 0.002266735304147005, + -0.011830132454633713, + -0.02488991990685463, + 0.008861999027431011, + -0.034515153616666794, + 0.015815911814570427, + 0.008367310278117657, + -0.02316557615995407, + -0.02860715426504612, + -0.002544114599004388, + 0.006939779035747051, + -0.00484441826120019, + 0.005787860602140427, + -0.00627901591360569, + 0.0021766312420368195, + 0.016579145565629005, + 0.009427357465028763, + -0.0024858119431883097, + 0.003365651471540332, + 0.024494169279932976, + -0.017087969928979874, + 0.01230362057685852, + -0.008861999027431011, + -0.012035075575113297, + -0.0027561241295188665, + -0.004137719515711069, + 0.010621678084135056, + 0.0014725829241797328, + 0.013914893381297588, + 0.0033303166273981333, + 0.0025653154589235783, + -0.012275353074073792, + -0.001434597885236144, + 0.0026236181147396564, + 0.009462692774832249, + -0.029737873002886772, + 0.0031289076432585716, + 0.005151832010596991, + -0.022656753659248352, + -0.0016201062826439738, + -0.007879688404500484, + 0.0009690602892078459, + -0.01874164305627346, + 0.004643009044229984, + -0.0018091481178998947, + 0.005724257789552212, + -0.006204812787473202, + 0.0016907760873436928, + -0.001268523745238781, + 0.0012579233152791858, + 0.020974811166524887, + 0.0040352484211325645, + 0.007116453722119331, + -0.010289530269801617, + -0.0023497724905610085, + 0.01909499242901802, + 0.011370779015123844, + -0.005526382010430098, + 0.010904357768595219, + 0.007731281220912933, + 0.004487535450607538, + -0.008225969970226288, + 0.006526360288262367, + 0.008579319342970848, + 0.012487362138926983, + 0.0009337253868579865, + -0.016522610560059547, + -0.032592933624982834, + 0.006360286381095648, + -0.014112768694758415, + 0.003985779359936714, + -0.011455582454800606, + 0.005858530290424824, + 0.0030847389716655016, + -0.003936310764402151, + 0.016423672437667847, + 0.009808975271880627, + 0.0016059722984209657, + 0.007738348562270403, + -0.021540170535445213, + 0.003812638344243169, + -0.022727422416210175, + 0.009971515275537968, + 0.0055899848230183125, + -0.029455192387104034, + 0.020070236176252365, + -0.01768159680068493, + -0.004473401233553886, + 0.011837199330329895, + 0.010982094332575798, + -0.01050860621035099, + 0.004286126233637333, + -0.0021041948348283768, + 0.0034221874084323645, + -0.02627504989504814, + 0.01800667680799961, + -0.0036924995947629213, + 0.028494082391262054, + 0.006120008882135153, + 0.016451939940452576, + -0.0005834679468534887, + -0.00022283087309915572, + -0.007172989659011364, + 0.009286018088459969, + -0.0020246910862624645, + 0.0019469542894512415, + 0.024070151150226593, + 0.0045617385767400265, + 0.002277335850521922, + 0.001519401790574193, + 0.014982007443904877, + 0.00956163089722395, + 0.018854714930057526, + -0.01810561493039131, + 0.0063143507577478886, + 0.00031646841671317816, + 0.026006504893302917, + 0.0037243010010570288, + 0.0001622093841433525, + -0.00462180795148015, + 0.00688677653670311, + -0.009335487149655819, + 0.033497508615255356, + -0.0037313681095838547, + 0.007512204814702272, + -0.01816215179860592, + -0.02675560489296913, + -0.00842384621500969, + -0.017285844311118126, + 0.0013330100337043405, + -0.012953783385455608, + 0.02233167178928852, + 0.0065051596611738205, + 0.008508649654686451, + -0.014035032130777836, + 0.008218903094530106, + -0.025752093642950058, + -0.0016651583136990666, + -0.025879299268126488, + 0.01427530962973833, + -0.020070236176252365, + 0.00580552825704217, + 0.006653566379100084, + -0.012091611512005329, + -0.008324908092617989, + -0.005187166854739189, + 0.007476869970560074, + 0.014148104004561901, + -0.007476869970560074, + -0.03321482986211777, + -0.018755778670310974, + -0.016027921810746193, + 0.010388467460870743, + -0.009780706837773323, + 0.005346173886209726, + 0.0037101670168340206, + 0.0004726046172436327, + -0.03007708676159382, + -0.006932712160050869, + -0.003194277174770832, + -0.026020638644695282, + -0.0183882936835289, + -0.019038457423448563, + -0.003763169515877962, + 0.012642836198210716, + -0.011059830896556377, + 0.007462736219167709, + -0.02185111679136753, + 0.015024409629404545, + -0.0056111859157681465, + -0.018798179924488068, + -0.01273470651358366, + -0.0014849501894786954, + -0.01985822804272175, + -0.011936137452721596, + 0.017992543056607246, + 0.016042055562138557, + 0.01034606620669365, + 0.01922219805419445, + 0.00571012357249856, + -0.00649455888196826, + -0.004526403732597828, + -0.014953739941120148, + 0.01656501181423664, + -0.014056232757866383, + 0.018656840547919273, + 0.020748667418956757, + -0.02332104928791523, + -0.010791285894811153, + -0.005335573572665453, + 0.013943160884082317, + -0.005423910915851593, + 0.014713462442159653, + -0.011914936825633049, + 0.012013874016702175, + 0.016748754307627678, + 0.013893691822886467, + -0.02146949991583824, + 1.5210580386337824e-5, + 0.012579233385622501, + 0.0048020160757005215, + -0.019264601171016693, + -0.004780815448611975, + -0.004105918109416962, + -0.014112768694758415, + 0.011172902770340443, + -0.0032914481125772, + -0.008861999027431011, + -0.007674745749682188, + 0.0015582701889798045, + 0.01361807994544506, + 0.01093969214707613, + 0.008833731524646282, + -0.012395491823554039, + -0.015194017440080643, + -0.0084591805934906, + 0.008402644656598568, + 0.0008873482584021986, + -0.009250682778656483, + 0.009222415275871754, + 0.005777260288596153, + -3.0145107302814722e-5, + -0.0116958599537611, + 0.008388510905206203, + 0.0014929005410522223, + 0.012020940892398357, + -0.005996336694806814, + -0.018190419301390648, + 0.014628659002482891, + 0.015745243057608604, + -0.013957294635474682, + 0.002632451942190528, + -0.01412690244615078, + -0.000998211558908224, + -0.0005039643729105592, + 0.00462887529283762, + 0.009321353398263454, + 0.007158855441957712, + 0.013964362442493439, + -0.010310730896890163, + -0.017794668674468994, + -0.007271927315741777, + -0.0021130284294486046, + 0.045794062316417694, + 0.03584374859929085, + 0.004590006545186043, + -0.009434424340724945, + -0.012692305259406567, + -0.020041968673467636, + -0.004625341389328241, + -0.009498028084635735, + -0.017978409305214882, + -0.014854801818728447, + 0.021738044917583466, + -0.03770942986011505, + 0.00750513793900609, + 0.019264601171016693, + -0.021907653659582138, + 0.015307089313864708, + 0.003501690924167633, + -0.005579384509474039, + -0.01351914182305336, + 0.007165922783315182, + 0.00737793231382966, + -0.010063386522233486, + -0.010911424644291401, + 0.006533427629619837, + 0.0032861479558050632, + -0.0030600044410675764, + 0.002381573896855116, + -0.03166009113192558, + -0.01523641962558031, + -0.02255781553685665, + 0.03050110675394535, + -0.014381314627826214, + -0.029002906754612923, + -0.004469867795705795, + -0.004395664669573307, + 0.021554304286837578, + -0.004946889355778694, + 0.016805289313197136, + 0.003837372874841094, + -0.007335530128329992, + -0.016890093684196472, + -0.007922089658677578, + 0.0185861699283123, + -0.015024409629404545, + -0.02572382427752018, + 0.006533427629619837, + 0.0035175916273146868, + 0.008437979966402054, + -0.01727171055972576, + -0.003985779359936714, + 0.00022835194249637425, + 0.00847331527620554, + -0.008536918088793755, + 0.02091827429831028, + 0.0012155213626101613, + 0.01752612181007862, + 0.020720399916172028, + 0.0011598689015954733, + -0.016324734315276146, + 0.009314285591244698, + -0.0022561349906027317, + 0.012770041823387146, + 0.010784219019114971, + 0.031179537996649742, + -0.0032101778779178858, + 0.013328333385288715, + 0.0016439573373645544, + 0.01321526151150465, + 0.00654402794316411, + -0.008911468088626862, + 0.011229438707232475, + -0.011194104328751564, + -0.005360308103263378, + -0.0007190657197497785, + -0.02815486676990986, + -0.008402644656598568, + -0.0248616524040699, + -0.034458618611097336, + 0.0002890838368330151, + 0.019405940547585487, + 0.013766486197710037, + 0.0035635270178318024, + 0.000663854880258441, + -0.010572209022939205, + -0.014713462442159653, + -0.0030299697536975145, + -0.021427098661661148, + 0.011031563393771648, + -0.0014107468305155635, + 0.006498092785477638, + -0.004830284044146538, + -0.018275223672389984, + 0.0040140473283827305, + 0.010876089334487915, + 0.0030776718631386757, + -0.011455582454800606, + -0.00536737497895956, + 0.004678343888372183, + 0.0063143507577478886, + 0.013476740568876266, + 0.012119879014790058, + -0.0010741817532107234, + 0.0009646434336900711, + -0.004293193109333515, + -0.01823282055556774, + -0.038783613592386246, + -0.01230362057685852, + 0.023730935528874397, + 0.009448559023439884, + 0.001360394642688334, + -0.025427011772990227, + 0.02751883864402771, + -0.007211857941001654, + 0.009505094960331917, + 0.016197528690099716, + 0.018557902425527573, + 0.01810561493039131, + -0.010678214021027088, + 0.020253978669643402, + -0.006635898724198341, + -0.005420377478003502, + 0.018218686804175377, + 0.01611272618174553, + 0.0008816063636913896, + 0.015646304935216904, + 0.01488307025283575, + -0.006059939507395029, + 0.024098418653011322, + -0.0016112725716084242, + -0.018063213676214218, + 0.014169304631650448, + -0.0007857604068703949, + 0.003028203034773469, + 0.02316557615995407, + -0.009936180897057056, + 0.021158551797270775, + 0.013497941195964813, + -0.02463550865650177, + 0.006773705128580332, + 0.006031671538949013, + -0.024564839899539948, + 0.04715092480182648, + 0.01329299807548523, + 0.006392087787389755, + -0.002602417254820466, + -0.015349491499364376, + 0.0049963584169745445, + 0.015533233061432838, + 0.015194017440080643, + 0.006840841379016638, + 0.0002590491494629532, + -0.0005556416581384838, + 0.009201214648783207, + 0.005731324665248394, + -0.0051482985727488995, + 0.007950358092784882, + -0.00925775058567524, + 0.022119661793112755, + 0.009180013090372086, + 0.0019663884304463863, + 0.012572166509926319, + 0.015123347751796246, + 0.004091784358024597, + 0.02691107802093029, + 0.007886755280196667, + 0.002492878818884492, + -0.015660438686609268, + 0.008876132778823376, + -0.012621634639799595, + -0.019617950543761253, + -0.004819683730602264, + 0.0018179818289354444, + -0.017738131806254387, + 0.005264903884381056, + -0.0063108173198997974, + 0.0025193800684064627, + 0.0016598580405116081, + -0.0024133753031492233, + -0.014091568067669868, + -0.008367310278117657, + -0.00316424248740077, + 0.007222458720207214, + 0.012854845263063908, + -0.002991101238876581, + 0.004575872793793678, + 0.012225884012877941, + -0.009392023086547852, + 0.012155214324593544, + 0.014515587128698826, + -0.006173011381179094, + 0.000842737965285778, + 0.029426924884319305, + -0.029229048639535904, + -0.009823109023272991, + -0.007420334033668041, + -0.0003224311803933233, + -0.009526295587420464, + 0.010572209022939205, + -0.028691958636045456, + 0.015547366812825203, + -0.002037058351561427, + 0.004692478105425835, + -0.005381509196013212, + 0.004999891854822636 + ], + "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b": [ + -0.0039593735709786415, + 0.01701013185083866, + -0.00806360226124525, + 0.04320821911096573, + 0.01727225072681904, + -0.00979496631771326, + 0.0026470550801604986, + 0.017837874591350555, + -0.022928498685359955, + -0.006515032146126032, + 0.0021952451206743717, + 0.03975928574800491, + 0.03145425766706467, + -0.03815898299217224, + 0.012312687002122402, + 0.06726796925067902, + -0.025273771956562996, + 0.01121592614799738, + 0.002817777218297124, + 0.013706055469810963, + 0.03843489661812782, + -0.024321867153048515, + -0.04138718172907829, + 0.011333189904689789, + -0.01002949383109808, + 0.022004185244441032, + -0.0013338744174689054, + 0.014168212190270424, + -0.0417458713054657, + -0.015727128833532333, + 0.011802244931459427, + -0.013285285793244839, + -0.005187193397432566, + 0.013981970027089119, + 0.01666523888707161, + -0.024625374004244804, + -0.0016149623552337289, + -0.003680010326206684, + -0.03741401061415672, + -0.01873459853231907, + -0.023094046860933304, + 0.0212178286164999, + -0.03476523235440254, + -0.033082153648138046, + -0.03211645409464836, + 0.03923504799604416, + -0.05074068531394005, + 0.023976974189281464, + -0.013768135569989681, + 0.006590908858925104, + 0.004973359871655703, + -0.018486274406313896, + -0.006070119794458151, + -0.003212680108845234, + 0.027812186628580093, + -0.0451396182179451, + 0.01517529971897602, + 0.042683981359004974, + 0.025066835805773735, + -0.024501211941242218, + 0.05584510415792465, + -0.036310356110334396, + -0.029081393033266068, + 0.00018538007861934602, + -0.03454450145363808, + -0.028364015743136406, + -0.018858758732676506, + -0.0012579979375004768, + -0.0665505900979042, + -0.028391607105731964, + -0.0012528244405984879, + 0.041635505855083466, + -0.009408686310052872, + -0.0013381855096668005, + 0.03230959177017212, + -0.06268778443336487, + 0.03465486690402031, + 0.03203367814421654, + 0.0075117736123502254, + -0.005652799271047115, + 0.032640691846609116, + 0.016623850911855698, + 0.005670044105499983, + -0.017368821427226067, + 0.08310545980930328, + -0.012671375647187233, + -0.01826554350554943, + -0.028557155281305313, + 0.03746919706463814, + -0.04340135678648949, + -0.01257480587810278, + 0.029384899884462357, + -0.005097521468997002, + -0.026860281825065613, + -0.030460966750979424, + -0.016789400950074196, + 0.026791302487254143, + 0.014430331066250801, + 0.007518671452999115, + -0.0005608825595118105, + 6.159576878417283e-5, + -0.013223204761743546, + -0.005511392839252949, + 0.007059963420033455, + 0.02342514507472515, + -0.004811259917914867, + -0.03068169765174389, + -0.026736119762063026, + -0.01789305917918682, + 0.0648399218916893, + -0.011146947741508484, + -0.006577113177627325, + 0.02142476476728916, + 0.018913941457867622, + -0.07504875957965851, + -0.009505256079137325, + -0.0140026630833745, + -0.026860281825065613, + -0.007573854178190231, + -0.011664287187159061, + 0.007539364974945784, + 0.013402548618614674, + -0.029108984395861626, + -0.022307690232992172, + -0.0017761999042704701, + 0.010450263507664204, + 0.019507158547639847, + 0.0018969124648720026, + -0.015451214276254177, + -0.00022374944819603115, + -0.01907949149608612, + 0.02888825349509716, + 0.003364433068782091, + -0.007849768735468388, + 0.011850529350340366, + -0.01598924770951271, + -0.015078729949891567, + 0.03316492959856987, + 0.011429759673774242, + 0.014789019711315632, + -0.0794082060456276, + -0.004145616199821234, + -0.021562721580266953, + -0.00829812977463007, + -0.015382235869765282, + 0.004838851280510426, + -0.028971027582883835, + 0.019120877608656883, + -0.015575376339256763, + 0.02582560107111931, + -0.06616430729627609, + -0.03934541344642639, + 0.005435516592115164, + 0.024763330817222595, + 0.02196279726922512, + -0.011236620135605335, + -0.07074449211359024, + 0.007842871360480785, + 0.029964320361614227, + 0.05060272663831711, + 0.05076827481389046, + -0.028529563918709755, + -0.003121283371001482, + 0.04927833750844002, + 0.07079967111349106, + 0.001120902830734849, + 0.020183149725198746, + 0.0012623090296983719, + -0.04464297369122505, + 0.014940773136913776, + 0.042518433183431625, + -0.04494648054242134, + 0.011933304369449615, + -0.018513865768909454, + 0.003693806007504463, + 0.015934064984321594, + -0.008718899451196194, + 0.037524379789829254, + 0.03482041507959366, + -0.02168688364326954, + -0.02294229529798031, + -0.0123885627835989, + 0.010312305763363838, + 0.005908020306378603, + 0.0059149181470274925, + -0.009415583685040474, + 0.013292183168232441, + 0.016444506123661995, + 0.0031626704148948193, + -0.026708528399467468, + 0.023094046860933304, + -0.0009725987911224365, + 0.014651061967015266, + -0.0021969694644212723, + -0.034130629152059555, + -0.03595166653394699, + 0.028833070769906044, + 0.0013709503691643476, + -0.033220112323760986, + -0.00818086601793766, + 0.016720421612262726, + 0.024225296452641487, + -0.006449502427130938, + 0.014430331066250801, + -0.015492601320147514, + 0.04676751419901848, + -0.011008989997208118, + 0.007387612015008926, + 0.013726748526096344, + -0.03719327971339226, + 0.009270728565752506, + -0.03421340510249138, + 0.03211645409464836, + -0.007104799617081881, + -0.021838637068867683, + 0.018886350095272064, + -0.022073164582252502, + 0.027246560901403427, + -0.010319204069674015, + -0.0417458713054657, + 0.014071641489863396, + -0.01887255534529686, + -0.02352171577513218, + -0.007642833050340414, + -0.04795394837856293, + -0.018182769417762756, + -0.032088860869407654, + 0.010119166225194931, + -0.04662955924868584, + 0.006749559659510851, + 0.04078017175197601, + -0.037662334740161896, + -0.009932924062013626, + 0.01731363870203495, + -0.010857237502932549, + 0.052092667669057846, + 0.013319774530827999, + 0.0329166054725647, + -0.028529563918709755, + -0.008360210806131363, + -0.005952856503427029, + 0.04602254554629326, + 0.014264781959354877, + -0.006173587869852781, + 0.0005371711449697614, + -0.009291422553360462, + -0.0030678247567266226, + 0.0042801243253052235, + 0.009581132791936398, + -0.031923312693834305, + 0.00991223007440567, + -0.0029867750126868486, + 0.029081393033266068, + -0.00711169745773077, + -0.0403938889503479, + 0.048119496554136276, + 0.011947100050747395, + -0.04364968091249466, + 0.008849958889186382, + 0.010153654962778091, + 0.028226058930158615, + 0.029108984395861626, + 0.020514246076345444, + 0.026060128584504128, + -0.0010881379712373018, + -0.005218233913183212, + 0.020169353112578392, + 0.007139288820326328, + 0.01992103084921837, + 0.00594940735027194, + -0.018086198717355728, + 0.018693210557103157, + -0.014361351728439331, + 0.0007574716582894325, + 0.03024023398756981, + 0.021066075190901756, + -0.007311735302209854, + -0.018679413944482803, + 0.03625516965985298, + 0.0006932353135198355, + 0.003467900911346078, + -0.012022976763546467, + -0.010105370543897152, + 0.0370001420378685, + 0.020114170387387276, + -0.00931901391595602, + -0.040614619851112366, + -0.026625754311680794, + -0.04453260824084282, + -0.003966271411627531, + -0.016885969787836075, + 0.011146947741508484, + -0.006283953785896301, + 0.0010553731117397547, + 0.007311735302209854, + -0.01996241696178913, + -0.006721968296915293, + -0.026087719947099686, + -0.012167831882834435, + 0.015078729949891567, + -0.013347365893423557, + 0.04215974360704422, + -0.017727509140968323, + -0.04698824882507324, + 0.02254221774637699, + -0.05178916081786156, + 0.012485133484005928, + 0.038848768919706345, + -0.0031833641696721315, + 0.003907639533281326, + 0.012802435085177422, + -0.02389420010149479, + -0.027246560901403427, + -0.010022595524787903, + 0.030323008075356483, + -0.015768516808748245, + -0.005138908512890339, + -0.010822747834026814, + -0.0008816331974230707, + -0.02043147198855877, + 0.012257503345608711, + -0.004876789636909962, + -0.06158412620425224, + 0.020610816776752472, + 0.007104799617081881, + 0.009360400959849358, + 0.009401788003742695, + 0.00909828208386898, + -0.010201940312981606, + -0.03978687897324562, + -0.022349078208208084, + 0.007097901776432991, + -0.0121333422139287, + -0.03377193957567215, + -0.049002423882484436, + -0.03435136005282402, + -0.01822415553033352, + -0.015327053144574165, + -0.05046477168798447, + -0.006346034351736307, + 0.0015563304768875241, + -0.015671946108341217, + 0.012602397240698338, + -0.006211526226252317, + 0.013788829557597637, + 0.0140026630833745, + -0.006283953785896301, + 0.026694731786847115, + -0.01649969071149826, + -0.003666214644908905, + 0.000837228202726692, + 0.008712002076208591, + 0.05076827481389046, + 0.04456019774079323, + 0.03862803801894188, + -0.026929259300231934, + -0.012650681659579277, + 0.0003358397225383669, + -0.010174348950386047, + -0.041194040328264236, + 0.03873840346932411, + -0.011491840705275536, + -0.00877408217638731, + 0.01131939422339201, + -0.03286142274737358, + 0.02905380167067051, + -0.008863754570484161, + -0.003083345014601946, + 0.003538604127243161, + 0.01093311421573162, + -0.01829313486814499, + -0.02600494585931301, + -0.002503924537450075, + -0.04618809372186661, + -0.0013209409080445766, + -0.019769277423620224, + 0.0390419065952301, + -0.019024308770895004, + -0.04958184435963631, + 0.015313257463276386, + -0.017286045476794243, + 0.01143665798008442, + 0.028695112094283104, + -0.012409256771206856, + 0.005038889590650797, + 0.02433566376566887, + -0.03021264262497425, + -0.044311877340078354, + 0.07416582852602005, + 0.02199038863182068, + -0.03658626973628998, + -0.003728295210748911, + -0.02040388062596321, + 0.012367869727313519, + -0.009505256079137325, + 0.014720041304826736, + 0.025908375158905983, + -0.019093286246061325, + 0.013430140912532806, + -0.013023166917264462, + -0.01689976640045643, + -0.024832308292388916, + -0.01234027836471796, + -0.03344084322452545, + 0.047402117401361465, + 0.011809142306447029, + -0.006180485710501671, + -0.02807430550456047, + 0.029440082609653473, + -0.028943436220288277, + 0.005242376588284969, + 0.016209980472922325, + -0.0021762759424746037, + -0.01703772321343422, + 0.03217163681983948, + 0.021493742242455482, + 0.0032833830919116735, + 0.04643641784787178, + 0.007546262815594673, + -0.03476523235440254, + 0.04776080697774887, + 0.005935611668974161, + 0.015451214276254177, + 0.012954187579452991, + -0.005735573824495077, + 0.03807620704174042, + -0.0037593357264995575, + 0.026432612910866737, + -0.03081965446472168, + -0.0146786542609334, + -0.015506397932767868, + 0.03402026370167732, + -0.003414442529901862, + 0.018513865768909454, + -0.02117644064128399, + 0.010822747834026814, + 0.014857998117804527, + -0.024280479177832603, + 0.029384899884462357, + -0.009870843030512333, + -0.020238332450389862, + 0.026184290647506714, + 0.0011778102489188313, + -0.01887255534529686, + 0.016996335238218307, + -0.005759716033935547, + 0.0035351552069187164, + 0.003924884367734194, + 0.002127990825101733, + -0.02542552538216114, + 6.364357250276953e-5, + -0.014623470604419708, + -0.015961656346917152, + -0.025135815143585205, + 0.04273916408419609, + -0.008684410713613033, + 0.010201940312981606, + -0.02770182117819786, + 0.01308524701744318, + -0.07019265741109848, + 0.006711621303111315, + 0.0005298421601764858, + 0.04083535447716713, + -0.014857998117804527, + 0.06815089285373688, + 0.0032644139137119055, + -0.01308524701744318, + -0.008643022738397121, + 0.006728866137564182, + 0.022252507507801056, + -0.014940773136913776, + -0.007780790328979492, + -0.017189476639032364, + 0.04359449818730354, + 0.025411730632185936, + -0.00829812977463007, + -0.016954949125647545, + -0.014982160180807114, + -0.016844583675265312, + 0.024321867153048515, + -0.009498358704149723, + -0.034103039652109146, + 0.013554302044212818, + 0.002676371019333601, + -0.009070690721273422, + -0.010815850459039211, + 0.03385471552610397, + -0.0509062334895134, + -0.02549450471997261, + -0.04569144919514656, + 0.02674991451203823, + 0.043428950011730194, + -0.002031420823186636, + 0.03556538373231888, + 0.002886755857616663, + 0.0023538959212601185, + -0.014995955862104893, + -0.022073164582252502, + 0.02263878844678402, + -0.015809902921319008, + 0.02403215691447258, + -0.03735882788896561, + -0.0059149181470274925, + 0.014830406755208969, + 0.003486870089545846, + 0.04331858456134796, + -0.033220112323760986, + -0.0026711977552622557, + -0.04158032312989235, + -0.022652585059404373, + -0.01701013185083866, + -0.01309904269874096, + -0.02902621030807495, + -0.003693806007504463, + -0.013002472929656506, + -0.0019969316199421883, + 0.007766994647681713, + -0.0005893362103961408, + 0.020376289263367653, + -0.010519241914153099, + -0.012429950758814812, + -0.008422291837632656, + -0.016554873436689377, + 0.0014244088670238853, + 0.006121853832155466, + -0.015423622913658619, + -0.02875029481947422, + -0.015202891081571579, + -0.029743587598204613, + -0.012078159488737583, + -0.020610816776752472, + -0.008525759913027287, + -0.043263401836156845, + -0.01910708285868168, + -0.01459587924182415, + -0.0041801054030656815, + -0.017437798902392387, + 0.013071451336145401, + 0.02498406171798706, + 0.016789400950074196, + -0.059763092547655106, + 0.010312305763363838, + -0.007918747141957283, + 0.01663764752447605, + 0.004383592400699854, + 0.023204414173960686, + 0.005618310067802668, + 0.01696874387562275, + -0.01271276269108057, + 0.004197350237518549, + -0.018982920795679092, + 0.015023547224700451, + 0.0036455208901315928, + -0.0014476891374215484, + -0.013119736686348915, + -0.03506873920559883, + 0.05926644429564476, + -0.020748773589730263, + 0.009463869035243988, + -0.02756386250257492, + -0.014940773136913776, + 0.041966602206230164, + -0.022073164582252502, + 0.030543740838766098, + -0.0006259811343625188, + -0.0007475559832528234, + -0.02977117896080017, + -0.0037593357264995575, + 0.009725987911224365, + -0.0060252840630710125, + 0.019976213574409485, + -0.009015507996082306, + 0.03746919706463814, + 0.0024142523761838675, + -0.009781170636415482, + 0.0263084527105093, + -0.009822557680308819, + -0.018279338255524635, + -0.01833452098071575, + -0.009043099358677864, + -0.018789781257510185, + -0.010277817025780678, + 0.023783834651112556, + -0.003807620843872428, + 0.02372865006327629, + 0.0339374877512455, + -0.02626706473529339, + -0.0069702910259366035, + -0.029715996235609055, + -0.010119166225194931, + -0.0033333925530314445, + 0.041635505855083466, + -0.022459443658590317, + -0.01157461479306221, + -0.011367679573595524, + 0.03217163681983948, + 0.012416154146194458, + -0.010484753176569939, + 0.025066835805773735, + -0.009712192229926586, + 0.04113885760307312, + 0.03363398462533951, + 0.02284572459757328, + -0.008580942638218403, + -0.033965080976486206, + 0.030433373525738716, + -0.002255601342767477, + 0.030460966750979424, + -0.004086984321475029, + 0.015078729949891567, + 0.017934445291757584, + 0.013540506362915039, + 0.010346795432269573, + -0.021548926830291748, + 0.03170258179306984, + 0.015451214276254177, + 0.009181056171655655, + 0.0032799341715872288, + 0.01941058784723282, + -0.0034023711923509836, + -0.014761428348720074, + -0.015009751543402672, + 0.020969506353139877, + -0.0012510999804362655, + 0.03048855811357498, + 0.0291917584836483, + 0.016044430434703827, + 0.02040388062596321, + -0.004869891796261072, + -0.010063983500003815, + 0.020183149725198746, + 0.003317872527986765, + -0.023038864135742188, + -0.022887110710144043, + 0.014195803552865982, + 0.02674991451203823, + -0.012009181082248688, + 0.015216686762869358, + -0.026087719947099686, + -0.020017599686980247, + -0.009712192229926586, + -0.018789781257510185, + 0.018748393282294273, + 0.020169353112578392, + -0.008256742730736732, + 0.050657909363508224, + -0.023107843473553658, + 0.0006117543089203537, + 0.01843109168112278, + 0.010498548857867718, + -0.003445482812821865, + 0.036503493785858154, + -0.005742471665143967, + 0.020900527015328407, + 0.0291917584836483, + -0.0072013698518276215, + 0.0020417675841599703, + -0.0035661954898387194, + -0.009146567434072495, + 0.017023926600813866, + -0.0069564953446388245, + -0.009387992322444916, + -0.010643403977155685, + 0.0005608825595118105, + 0.0013881950872018933, + 0.02019694447517395, + 0.02902621030807495, + -0.008553351275622845, + 0.011753959581255913, + 0.03628276288509369, + 0.0015735751949250698, + -0.0032109555322676897, + 0.07190333306789398, + 0.027605250477790833, + 0.007018576376140118, + 0.013119736686348915, + -1.170750692836009e-5, + 0.025715235620737076, + -0.012436848133802414, + -0.010553731583058834, + 0.04169068858027458, + -0.02203177660703659, + -0.05040958896279335, + 0.01836211234331131, + -0.01298177894204855, + -0.01445792242884636, + 0.004300817847251892, + -0.023935586214065552, + 0.010850339196622372, + -0.0207073874771595, + -0.023190617561340332, + 0.003807620843872428, + -0.020790161564946175, + 0.0021486845798790455, + 0.013740544207394123, + -0.0025366893969476223, + 0.010408876463770866, + 0.005735573824495077, + 0.006963393185287714, + -0.010298510082066059, + -0.016554873436689377, + -0.008953426964581013, + 0.0008553350926376879, + -0.0118781216442585, + 0.003348912810906768, + 0.016541076824069023, + -0.007084106095135212, + -0.011008989997208118, + -0.005318252835422754, + -0.0161272045224905, + -0.007766994647681713, + 0.013602587394416332, + -0.016003044322133064, + 0.01060891430824995, + 0.0437876395881176, + 0.0035317062865942717, + -0.027025830000638962, + 0.033689167350530624, + -0.021838637068867683, + 0.014926976524293423, + 0.006156343501061201, + 0.034710049629211426, + 0.002457363996654749, + -0.025535890832543373, + -0.04627086967229843, + -0.0018451785435900092, + 0.025742826983332634, + -0.01931401900947094, + 0.0033333925530314445, + 0.002127990825101733, + 0.029991911724209785, + -0.0011829836294054985, + 0.03333047777414322, + 0.009684600867331028, + 0.02556348219513893, + 0.008760286495089531, + -0.01683078706264496, + 0.0112021304666996, + 0.025880783796310425, + -0.03600684925913811, + -0.027163786813616753, + -0.029853953048586845, + 0.00884306151419878, + -0.022597400471568108, + -0.012885209172964096, + -0.020376289263367653, + 0.03804861754179001, + -0.028088100254535675, + -0.01072617806494236, + -0.004266328644007444, + 0.0032454447355121374, + -0.0010743422899395227, + 0.05311354994773865, + 0.00034532431163825095, + -0.012781741097569466, + -0.01481661107391119, + 0.012581703253090382, + 0.013023166917264462, + -0.04315303638577461, + 0.025922171771526337, + -0.013554302044212818, + 0.03377193957567215, + -0.004566385876387358, + 0.011043479666113853, + -6.024852700647898e-5, + -0.014009561389684677, + 0.02080395631492138, + -0.01945197582244873, + 0.024142522364854813, + 0.0015934065449982882, + -0.02226630412042141, + 0.02382522076368332, + -0.00806360226124525, + -0.026736119762063026, + 0.000402662786655128, + 0.024183910340070724, + -0.004842300433665514, + -0.014306169003248215, + -0.0151890954002738, + 0.002664299914613366, + -0.015120116993784904, + -0.004400837235152721, + -0.0028815825935453176, + 0.006404666230082512, + -0.003224751213565469, + -0.028667520731687546, + 0.015865085646510124, + -0.012719660997390747, + -0.020624611526727676, + -0.004600875079631805, + 0.0023194067180156708, + -0.02247324027121067, + 0.011222824454307556, + 0.0033420149702578783, + 0.02468055672943592, + -0.0006475369445979595, + -0.028253650292754173, + 0.004035250283777714, + -0.003917986527085304, + 0.000608736474532634, + 0.012616192921996117, + 0.009291422553360462, + 0.022293895483016968, + 0.012643784284591675, + -0.014899385161697865, + -0.016748012974858284, + -0.008318823762238026, + 0.01445792242884636, + -0.04213215038180351, + 0.01659625954926014, + -0.0022021429613232613, + -0.026487795636057854, + 0.013499119319021702, + 0.025397934019565582, + -0.03934541344642639, + -0.0035903379321098328, + 0.018155178055167198, + 0.006032181903719902, + 0.027688024565577507, + 0.041359592229127884, + 7.14036650606431e-5, + -0.011705674231052399, + 0.012326482683420181, + 0.029440082609653473, + 0.013333570212125778, + 0.008036010898649693, + 0.011850529350340366, + 0.02830883301794529, + 0.04422910138964653, + 0.012416154146194458, + 0.008870652876794338, + 0.02726035751402378, + -0.04080776125192642, + 0.01167808286845684, + -0.011464249342679977, + 0.012154036201536655, + -0.0038834973238408566, + -0.0005815761396661401, + -0.03655867651104927, + -0.0036213784478604794, + -0.007242756895720959, + -0.01643071137368679, + -0.041083674877882004, + 0.02219732478260994, + 0.0035161860287189484, + -0.005732124671339989, + 0.02080395631492138, + 0.003028162056580186, + 0.020045191049575806, + 0.01896912418305874, + 0.011450453661382198, + 0.018817372620105743, + 0.010381285101175308, + 0.012105750851333141, + -0.024956470355391502, + 0.024928878992795944, + -0.007918747141957283, + 0.020983301103115082, + -0.017396412789821625, + -0.016651442274451256, + -0.011733266524970531, + -0.0060252840630710125, + -0.030571332201361656, + -0.0031402523163706064, + -0.010574424639344215, + -0.008629227057099342, + 0.010339898057281971, + -0.03688977658748627, + -0.022749153897166252, + 0.011960895732045174, + -0.017189476639032364, + 0.020693590864539146, + 0.01564435474574566, + -0.003924884367734194, + -0.0032333736307919025, + -0.02182484045624733, + 0.002612565876916051, + -0.016885969787836075, + -0.035041145980358124, + -0.0003190262068528682, + 0.015975452959537506, + -0.007304837461560965, + -0.0006333101191557944, + 0.0040800864808261395, + -0.01896912418305874, + 0.0036524187307804823, + -0.026460204273462296, + -0.01272655837237835, + -0.027108604088425636, + 0.01423719059675932, + 0.03137148544192314, + -0.019203651696443558, + -0.02468055672943592, + -0.018900146707892418, + -0.013768135569989681, + -0.0022038675379008055, + 0.007891155779361725, + -0.011822937987744808, + 0.0022866418585181236, + -0.009670805186033249, + 0.008705103769898415, + -0.03051614947617054, + -0.011512534692883492, + -0.023770038038492203, + 0.011388372629880905, + -0.02012796700000763, + 0.009415583685040474, + 0.04467056319117546, + 0.0011545299785211682, + -0.0013054206501692533, + 0.006425360217690468, + -0.0006798706599511206, + 0.007780790328979492, + -0.014692449942231178, + 0.031757764518260956, + 2.108428998326417e-5, + -0.011443555355072021, + -0.023507919162511826, + 0.003423064947128296, + -0.017396412789821625, + -0.0007389336242340505, + -0.012954187579452991, + -0.016099613159894943, + 0.030019503086805344, + -0.014292373321950436, + 0.0077118114568293095, + -0.037248462438583374, + -0.030323008075356483, + 0.0013373233377933502, + 0.0004110695736017078, + 0.013450833968818188, + -0.021466150879859924, + 0.010788259096443653, + -0.003174741752445698, + -0.007532467134296894, + -0.025342751294374466, + -0.011864325031638145, + -0.013926786370575428, + -0.011188334785401821, + 0.03068169765174389, + -0.02050045132637024, + -0.024956470355391502, + 0.04290471225976944, + 0.016375528648495674, + 0.0015916820848360658, + -0.006397768389433622, + -0.009601825848221779, + 0.04058703035116196, + 0.0005595891852863133, + 0.004042148124426603, + 0.007842871360480785, + 0.023563101887702942, + 0.02033490128815174, + -0.02379762940108776, + 0.007032372057437897, + 0.027757003903388977, + -0.006842680741101503, + 0.00366966356523335, + -0.02823985368013382, + -0.01087793055921793, + 0.005897673312574625, + 0.009781170636415482, + -0.019907234236598015, + 0.0037558868061751127, + -0.03917986527085304, + -0.019700298085808754, + -0.011105560697615147, + 0.01938299648463726, + -0.01540982723236084, + -0.007677322253584862, + -0.008918937295675278, + 0.007015127222985029, + 0.006290851626545191, + 0.022762950509786606, + -0.007159982342272997, + -0.007470386568456888, + 0.002922969637438655, + -0.0013347365893423557, + 0.0040455968119204044, + -0.016996335238218307, + 0.030102277174592018, + -0.011636695824563503, + 0.007856667041778564, + -0.03239236772060394, + -0.011312496848404408, + -0.03459968417882919, + -0.0008027388830669224, + -0.001207988359965384, + -0.018927738070487976, + 0.0017184303142130375, + -0.012809332460165024, + -0.027343131601810455, + 0.031040387228131294, + 0.009767374955117702, + 0.023466533049941063, + 0.025756623595952988, + -0.009546643123030663, + -0.017561960965394974, + -0.01643071137368679, + -0.03625516965985298, + 0.02203177660703659, + -0.029302123934030533, + -0.0168031957000494, + 0.008787877857685089, + 0.0026229126378893852, + 0.023025069385766983, + -0.006166690029203892, + 0.006884067784994841, + 0.003748988965526223, + -0.01710670255124569, + -0.019300222396850586, + -0.012105750851333141, + 0.026391226798295975, + -0.02047285996377468, + 0.01643071137368679, + 0.00909828208386898, + 0.011567717418074608, + -0.01410613115876913, + -0.04353931546211243, + 0.01785167120397091, + 0.01539603155106306, + -0.029081393033266068, + -0.012974881567060947, + -0.021769657731056213, + 0.0039593735709786415, + 0.014264781959354877, + -0.0013105941470712423, + -0.011850529350340366, + -0.020376289263367653, + 0.0008385215769521892, + -0.004042148124426603, + -0.033413249999284744, + 0.011788449250161648, + -0.01272655837237835, + 0.014802815392613411, + -0.01965891197323799, + -0.03261309862136841, + -0.07295180857181549, + -0.0349583737552166, + -0.0029126228764653206, + 0.03390989825129509, + 0.015285666100680828, + -0.02861233800649643, + 0.011457351967692375, + 0.01836211234331131, + -0.011719469912350178, + 0.020555634051561356, + -0.011291802860796452, + -0.018582845106720924, + -0.01887255534529686, + 0.02949526533484459, + 0.021328194066882133, + 0.00943627767264843, + -0.024459823966026306, + -0.010346795432269573, + 0.013105941005051136, + -0.022211121395230293, + -0.026501592248678207, + 0.0072910417802631855, + 0.02830883301794529, + -0.008546452969312668, + -0.008539555594325066, + 0.010898624546825886, + -0.02488749288022518, + -0.009974311105906963, + -0.014064744114875793, + -0.015975452959537506, + 0.0186656191945076, + -0.0072910417802631855, + -0.011112458072602749, + -0.006721968296915293, + 0.01250582654029131, + 9.828108886722475e-6, + 0.02423909306526184, + -0.01687217503786087, + 0.02152133546769619, + 0.016403120011091232, + 0.01564435474574566, + 0.0005574335809797049, + -0.005639003589749336, + -0.0018141381442546844, + -0.009532847441732883, + -0.02600494585931301, + -0.004876789636909962, + -0.020997097715735435, + -0.009525950066745281, + 0.007904951460659504, + 0.01741020753979683, + 0.013416345231235027, + -0.0004927661502733827, + -0.007642833050340414, + -0.017327433452010155, + 0.021783454343676567, + -0.004673302639275789, + 0.002053838921710849, + 0.009532847441732883, + 0.012029874138534069, + 0.041663095355033875, + -0.0067461105063557625, + 0.020969506353139877, + -0.013478425331413746, + -0.0254531167447567, + 0.012774843722581863, + 0.01720327138900757, + 0.016554873436689377, + 0.015051138587296009, + -0.010153654962778091, + -0.009608724154531956, + -0.022073164582252502, + 0.0006578837637789547, + 0.022749153897166252, + -0.002365967258810997, + 0.005628656595945358, + 0.03153703361749649, + 0.033385660499334335, + 0.009415583685040474, + -0.014023357070982456, + -0.003697254927828908, + -0.01165738981217146, + -0.019369201734662056, + -0.002471159677952528, + -0.021024689078330994, + 0.0031281812116503716, + -0.011767755262553692, + -0.001734812743961811, + 0.021259216591715813, + 0.00953974574804306, + 0.018031015992164612, + -0.021838637068867683, + -0.004828504752367735, + 0.010008799843490124, + -0.015865085646510124, + 0.031785354018211365, + -0.03948337212204933, + -0.0084015978500247, + -0.02142476476728916, + -0.01870700530707836, + 8.148101187543944e-5, + -0.02844678983092308, + 0.038131389766931534, + -0.011684981174767017, + 0.007787688169628382, + -0.00037895137211307883, + -0.04337376728653908, + -0.010795156471431255, + 0.0030678247567266226, + -0.009608724154531956, + -0.029826361685991287, + 0.02161790430545807, + -0.03404785320162773, + 0.04433946684002876, + 0.0008807709673419595, + 0.010126063600182533, + 0.002819501794874668, + -0.0006824574084021151, + 0.012974881567060947, + -0.01422339491546154, + 0.0008492994820699096, + 0.02491508424282074, + -0.016306549310684204, + -0.0061011603102087975, + 0.010822747834026814, + -0.0027384518180042505, + -0.013092145323753357, + 0.012892107479274273, + 0.0336063914000988, + 0.021976593881845474, + 0.013381855562329292, + 0.01896912418305874, + 0.02505304105579853, + -0.007732504978775978, + -0.01833452098071575, + 0.004973359871655703, + 0.026998238638043404, + -0.006121853832155466, + 0.03793824836611748, + -0.03007468581199646, + -0.007318633142858744, + -0.006566766183823347, + -0.012381665408611298, + 0.035317063331604004, + -0.015602967701852322, + -0.010760667733848095, + 0.00011704812641255558, + 0.0029264185577630997, + -0.021631700918078423, + -0.008187764324247837, + -0.016182387247681618, + 0.0441187359392643, + 0.00048716162564232945, + -0.005225131753832102, + -0.02168688364326954, + 0.007387612015008926, + -0.006701274309307337, + 0.0069909850135445595, + 0.000494059466291219, + -0.005373435560613871, + -0.01050544623285532, + 0.03465486690402031, + 0.028971027582883835, + 0.005031991750001907, + 0.024859901517629623, + -0.010243327356874943, + -0.02094191499054432, + 0.015906473621726036, + -0.032061271369457245, + 0.010967602953314781, + -0.005614860914647579, + -0.0040938821621239185, + 0.012767945416271687, + 0.012602397240698338, + -0.0008488683379255235, + -0.016775604337453842, + -0.012919698841869831, + 0.013064553961157799, + 0.022142142057418823, + -0.01283002644777298, + -0.041939012706279755, + -0.012547213584184647, + 0.019576137885451317, + 0.024087339639663696, + -0.03454450145363808, + -0.009429379366338253, + -0.004111126530915499, + 0.0014063019771128893, + 0.01745159551501274, + 0.02633604407310486, + -0.010595118626952171, + 0.002434945898130536, + 0.010457160882651806, + -0.002805706113576889, + 0.017355024814605713, + -0.010526140220463276, + 0.0273293349891901, + 0.020721182227134705, + -0.007270348258316517, + -0.020900527015328407, + -0.02165929228067398, + -0.006242566742002964, + 0.014009561389684677, + -0.015354644507169724, + 0.021438559517264366, + 0.02677750587463379, + -0.004283573478460312, + -0.023576898500323296, + 0.013092145323753357, + 0.021038483828306198, + -0.028115691617131233, + -0.0046388134360313416, + 0.0274948850274086, + -0.02419770509004593, + 0.012519622221589088, + 0.010574424639344215, + -0.003185088513419032, + -0.017492981627583504, + 0.004883687477558851, + -0.036337945610284805, + 0.0254531167447567, + 0.00549759715795517, + 0.010257123038172722, + -0.032088860869407654, + 0.023397553712129593, + -0.01108486671000719, + 0.015961656346917152, + -0.06864754110574722, + -0.006721968296915293, + -0.0021642048377543688, + -0.007173778023570776, + -0.0014071641489863396, + 0.023811426013708115, + -0.01259549893438816, + 0.0064598494209349155, + 0.001697736675851047, + 0.02345273643732071, + -0.0203624926507473, + 0.017065314576029778, + 0.008939631283283234, + -0.008594738319516182, + -0.010512344539165497, + -0.028060508891940117, + 0.012174729257822037, + 0.012698967009782791, + -6.078742444515228e-5, + -0.032668281346559525, + -0.008863754570484161, + 0.021535130217671394, + 0.010615812614560127, + 0.012705865316092968, + 0.013299081474542618, + -0.027274152263998985, + 0.009546643123030663, + -0.0009803589200600982, + 0.016692830249667168, + 0.012409256771206856, + -0.021548926830291748, + 0.01836211234331131, + 0.003079896094277501, + 0.008939631283283234, + -0.0052596209570765495, + -0.0036179295275360346, + -0.009022405371069908, + 0.013671565800905228, + -0.00841539353132248, + -0.015589172020554543, + -0.012229911983013153, + 0.037800293415784836, + 0.0006354656652547419, + 0.004969910718500614, + -0.016844583675265312, + -0.012098852545022964, + -0.003997311927378178, + -0.014347556047141552, + 0.0017029100563377142, + -0.011498739011585712, + -0.029440082609653473, + -0.02474953420460224, + 0.023025069385766983, + -0.03688977658748627, + -0.009236239828169346, + -0.009829455986618996, + 0.019810663536190987, + 0.012905903160572052, + 0.02261119708418846, + -0.012519622221589088, + 0.004442224279046059, + 0.023701058700680733, + 0.004628466442227364, + 0.02640502154827118, + -0.012298891320824623, + 0.006301198620349169, + 0.00444567296653986, + 0.013250796124339104, + 0.019093286246061325, + 0.008601635694503784, + 0.013209409080445766, + -0.0023866607807576656, + 0.012657579965889454, + 0.006608153227716684, + 0.01099519431591034, + -0.007898054085671902, + 0.002709135878831148, + -0.0013416344299912453, + -0.00022331833315547556, + 0.0016546250553801656, + -0.021190237253904343, + -0.01298177894204855, + -0.009995004162192345, + -0.01720327138900757, + 0.0037455400452017784, + -0.043263401836156845, + -0.015561580657958984, + 0.005945958662778139, + 0.0021469600033015013, + -0.008229151368141174, + 0.0013718126574531198, + -0.00013634058996103704, + -0.010588220320641994, + 0.010464059188961983, + -0.011291802860796452, + -0.011836733669042587, + 0.01164359413087368, + -0.01696874387562275, + -0.010291612707078457, + 0.006156343501061201, + 0.01683078706264496, + 0.005597616545855999, + -0.001491663046181202, + -0.0356481596827507, + 0.019258834421634674, + 0.0027160337194800377, + -0.019562341272830963, + 0.020321106538176537, + 0.003849007887765765, + 0.0033144233748316765, + 0.0071668801829218864, + -0.015878882259130478, + -0.003917986527085304, + 0.0018037913832813501, + 0.02331477962434292, + -0.02043147198855877, + -0.002750523155555129, + 0.017975833266973495, + 0.004042148124426603, + 0.016278957948088646, + 0.024073544889688492, + 0.007898054085671902, + 0.02463916875422001, + 0.006487440783530474, + -0.00038283143658190966, + 0.0047388323582708836, + 0.009208647534251213, + 0.022900907322764397, + 0.023328574374318123, + -0.017934445291757584, + -0.007608343381434679, + -0.024211501702666283, + -0.006604704540222883, + -0.028088100254535675, + -0.0006794395740143955, + 0.022293895483016968, + -0.007428999058902264, + 0.0033006276935338974, + 0.004876789636909962, + -0.00841539353132248, + -0.0010734800016507506, + 0.01717568002641201, + -0.0071668801829218864, + -0.0022711216006428003, + -0.026998238638043404, + -0.02746729366481304, + 0.026970647275447845, + -0.02519099786877632, + -0.011698776856064796, + -0.011326292529702187, + -0.00016641095862723887, + 0.006573664024472237, + 0.008339516818523407, + -0.0004153807240072638, + 0.017520572990179062, + -0.059487175196409225, + -0.0017632663948461413, + 0.0050250934436917305, + 0.023921791464090347, + 0.007046167738735676, + -0.01283002644777298, + -0.010215735994279385, + -0.006584011018276215, + -0.02087293565273285, + -0.03145425766706467, + -0.012719660997390747, + -0.012022976763546467, + -0.012360971421003342, + 5.41051194886677e-5, + -0.02077636495232582, + 0.007615241687744856, + -0.03625516965985298, + 0.00022482725034933537, + -0.006742661818861961, + 0.00021200152696110308, + -0.015561580657958984, + 0.028501972556114197, + -0.024556394666433334, + 0.005176846869289875, + -0.009946719743311405, + 0.023976974189281464, + 0.006611602380871773, + -0.015147708356380463, + -0.013692259788513184, + 0.019231243059039116, + 0.010670995339751244, + 0.002526342635974288, + -0.009456970728933811, + -0.011291802860796452, + 0.015161504037678242, + 0.028046714141964912, + 0.0070910039357841015, + -0.014416535384953022, + -0.02990913763642311, + 0.012940391898155212, + 0.0003599822521209717, + 0.002314233221113682, + -0.012181627564132214, + 0.010753769427537918, + -0.004521549679338932, + -0.011836733669042587, + -0.01250582654029131, + -0.017120497301220894, + 0.03184054046869278, + -0.004135269206017256, + -0.002553933998569846, + -0.0084015978500247, + 0.041801054030656815, + -0.00885685719549656, + 0.022735359147191048, + -0.01941058784723282, + 0.02331477962434292, + -0.01903810352087021, + -0.008491270244121552, + -0.027205174788832664, + 0.010774463415145874, + -0.01568574272096157, + 0.008056704886257648, + 0.001725328154861927, + 0.014264781959354877, + -0.009146567434072495, + -0.005959754344075918, + 0.01894153282046318, + 0.0029626323375850916, + -0.01710670255124569, + 0.01856904849410057, + -0.025618664920330048, + 0.0007988588185980916, + 0.025991151109337807, + -0.03614480420947075, + 0.007835973054170609, + -0.01257480587810278, + 0.02468055672943592, + -0.007932542823255062, + -0.028667520731687546, + 0.002993672853335738, + 0.005176846869289875, + -0.00033885755692608654, + 0.013243897818028927, + 0.026253269985318184, + -0.022624993696808815, + -0.01638932339847088, + 0.0041939010843634605, + 0.0072151655331254005, + 0.018458683043718338, + -0.016610056161880493, + 0.009408686310052872, + 0.021438559517264366, + 0.0019296773243695498, + 0.01340944692492485, + -0.0156167633831501, + 0.005583820398896933, + 0.0005319977062754333, + 0.016182387247681618, + -0.011726368218660355, + 0.0006156343151815236, + 0.020748773589730263, + 0.02582560107111931, + -0.011409066617488861, + 0.007463488262146711, + -0.0064460537396371365, + 0.018748393282294273, + 0.019051900133490562, + -0.026556774973869324, + -0.001958993263542652, + -0.013740544207394123, + -0.008953426964581013, + 0.03363398462533951, + -0.016623850911855698, + -0.02828124165534973, + -0.005228580441325903, + -0.004480162635445595, + 0.011616002768278122, + -0.02589458040893078, + -0.015382235869765282, + -0.022997478023171425, + -3.882742748828605e-5, + 0.018182769417762756, + -0.029274532571434975, + -0.006577113177627325, + 0.006539174821227789, + 0.012471337802708149, + -0.007311735302209854, + -0.0025866988580673933, + 0.01517529971897602, + -0.006721968296915293, + -0.010788259096443653, + 0.003928333520889282, + -0.028998618945479393, + -0.004900932312011719, + 0.014388944022357464, + 0.003680010326206684, + 0.017561960965394974, + 0.004228390287607908, + -0.011195233091711998, + -0.007125493139028549, + -0.003655867651104927, + 0.0032833830919116735, + 0.0004996639909222722, + -0.005366537719964981, + -0.001519254525192082, + -0.0038041716907173395, + -0.0012105751084163785, + -0.00031816394766792655, + -0.007497977931052446, + -0.015589172020554543, + 0.002009002724662423, + -0.0016416915459558368, + 0.006997882854193449, + 0.01645830273628235, + -0.006497787777334452, + -0.00043391872895881534, + -0.007187573704868555, + -0.007918747141957283, + -0.005018195603042841, + -0.0014313067076727748, + 0.02759145386517048, + -0.008098091930150986, + 0.07035820931196213, + -0.0015201166970655322, + 0.013988867402076721, + 0.03051614947617054, + 0.01259549893438816, + -0.005180295556783676, + 0.015423622913658619, + 0.004535345360636711, + 0.019948622211813927, + -0.0003395042149350047, + 0.007863564416766167, + -0.02294229529798031, + 0.0047388323582708836, + 0.01701013185083866, + -0.02084534429013729, + -0.005218233913183212, + -0.0011355608003214002, + -0.0013554302277043462, + -0.0026849934365600348, + 0.023300983011722565, + -0.0010829645907506347, + -0.006132200825959444, + 0.0028160528745502234, + 0.013671565800905228, + -0.0015020098071545362, + -0.0010312306694686413, + 0.010436467826366425, + -0.0008182590827345848, + 0.026460204273462296, + 0.01378193125128746, + -0.009781170636415482, + -0.009815660305321217, + 0.006328789982944727, + 0.012685171328485012, + 0.010319204069674015, + 0.009291422553360462, + 0.0332752950489521, + -0.00034985103411599994, + -0.01385091058909893, + 0.022666379809379578, + -0.01260929461568594, + -0.012912800535559654, + 0.035013556480407715, + 0.001111418241634965, + -0.01856904849410057, + -0.007739402819424868, + 0.008360210806131363, + -0.001798618002794683, + -0.01945197582244873, + 0.005552780348807573, + -0.007394509855657816, + -0.005090623162686825, + -0.0057804095558822155, + 0.001884841243736446, + -0.009139669127762318, + -0.022528422996401787, + -0.021921411156654358, + -0.0029074496123939753, + 0.003724846290424466, + -0.0038731503300368786, + -0.0027160337194800377, + -0.00442842859774828, + -0.013243897818028927, + -0.012464439496397972, + -0.0007798896986059844, + -0.011533227749168873, + -0.022997478023171425, + 0.009049996733665466, + -0.013616383075714111, + -0.004469815641641617, + 0.015133912675082684, + 0.023852812126278877, + 0.00652537913993001, + -0.04500166326761246, + 0.003395473351702094, + -0.00030954161775298417, + 0.013981970027089119, + 0.013775033876299858, + -0.005176846869289875, + 0.007256552577018738, + 0.003693806007504463, + -0.005883877631276846, + -0.006339136511087418, + 0.0037731314077973366, + -0.00687372125685215, + -0.009250035509467125, + 0.0013123186072334647, + -0.015947861596941948, + 0.009746680967509747, + -0.028419198468327522, + 0.006156343501061201, + 0.013988867402076721, + 0.013788829557597637, + 0.011360781267285347, + 0.004945768043398857, + -0.00023452736786566675, + -0.014733836986124516, + -0.007049616426229477, + 0.0035937868524342775, + -0.005797654390335083, + -0.01072617806494236, + 0.002188347280025482, + -0.0002018702944042161, + 0.005114765837788582, + -0.0032644139137119055, + 0.0025246180593967438, + 0.01829313486814499, + -0.007104799617081881, + -0.022693971171975136, + 0.0015718507347628474, + 0.006473645102232695, + -0.001976237865164876, + -0.0034265138674527407, + -0.0012864515883848071, + -0.00943627767264843, + -0.006728866137564182, + -0.001354567939415574, + 0.006504685617983341, + -0.009622519835829735, + 0.0012933494290336967, + -0.016775604337453842, + -0.005859734956175089, + -0.01245754212141037, + 0.004276675637811422, + -0.008691308088600636, + -0.00698408717289567, + 0.001267482410185039, + -0.0074152033776044846, + -0.019231243059039116, + -0.010257123038172722, + 0.0005134597304277122, + 0.02474953420460224, + -0.009946719743311405, + -0.001674456405453384, + -0.0026970647741109133, + -0.009760476648807526, + 0.012250605970621109, + 0.01659625954926014, + 0.006804742384701967, + -0.01687217503786087, + 0.015878882259130478, + 0.010457160882651806, + 0.004731934517621994, + 0.011864325031638145, + 0.014402739703655243, + 0.014319964684545994, + 0.001029506092891097, + -0.00826364103704691, + 0.005421720910817385, + 0.015506397932767868, + 0.013933684676885605, + -0.024790922179818153, + -0.0033058011904358864, + 0.005366537719964981, + -0.012747252359986305, + -0.010822747834026814, + -0.010636505670845509, + 0.007042718585580587, + -0.008698206394910812, + -0.00850506592541933, + 0.006301198620349169, + 0.010788259096443653, + -0.01636173203587532, + -0.015299461781978607, + -0.0009036201518028975, + 0.011229721829295158, + 0.017437798902392387, + 0.033551208674907684, + -0.0009803589200600982, + -0.009650111198425293, + -0.0077256071381270885, + -0.008036010898649693, + -0.019176060333848, + -0.007780790328979492, + -0.014940773136913776, + 0.013975071720778942, + 0.002983326092362404, + 0.019258834421634674, + 0.002664299914613366, + 0.000526393239852041, + 0.007904951460659504, + 0.009036201052367687, + 0.0060011413879692554, + -0.013395651243627071, + -0.009118976071476936, + -0.010615812614560127, + 0.023618284612894058, + -0.0069702910259366035, + 0.00921554584056139, + 0.006090813782066107, + 0.004762975033372641, + 0.004690547473728657, + -0.012788639403879642, + 0.0005276865558698773, + -0.011464249342679977, + -0.015589172020554543, + 0.0016503138467669487, + 0.032061271369457245, + 0.0003651556617114693, + 0.006732314825057983, + -0.0207073874771595, + 0.006039079744368792, + -0.0072910417802631855, + 0.0016718696570023894, + -0.009863944724202156, + -0.01775510050356388, + -0.016168592497706413, + -0.006397768389433622, + -0.0017882711254060268, + -0.0017537818057462573, + -0.029715996235609055, + -0.019024308770895004, + 0.007387612015008926, + -0.00297470367513597, + -0.027922552078962326, + 0.032061271369457245, + -0.0035523998085409403, + 0.0012657579500228167, + -0.0020227984059602022, + -0.016927357763051987, + 0.007256552577018738, + -0.0032799341715872288, + 0.010581322945654392, + -0.003766233567148447, + -0.0036041338462382555, + 0.007732504978775978, + -0.0019469220424070954, + 0.000951905210968107, + -0.0001986369170481339, + 0.004842300433665514, + 0.04124922305345535, + -0.021024689078330994, + -0.017023926600813866, + 0.007015127222985029, + -0.0012545489007607102, + 0.03109556995332241, + 0.019231243059039116, + -0.002598770195618272, + 0.012498929165303707, + 0.011636695824563503, + -0.007967032492160797, + -0.0016623851843178272, + 0.0018917390843853354, + -0.01072617806494236, + 0.003304076613858342, + 0.009015507996082306, + -0.0013304254971444607, + -0.02094191499054432, + -0.012478235177695751, + -2.3010841687209904e-5, + -0.0073393271304667, + -0.01410613115876913, + -0.009008609689772129, + 0.004149064887315035, + 0.0008527484023943543, + 0.01082964614033699, + 0.010477854870259762, + -0.0008837888017296791, + -0.008815470151603222, + -0.009070690721273422, + 0.0008674063719809055, + 0.001025195000693202, + 0.009263831190764904, + 0.008015317842364311, + 0.00700133154168725, + 0.0015451214276254177, + -0.018720801919698715, + 0.021052280440926552, + 0.002338375663384795, + 0.012754149734973907, + 0.0027436253149062395, + 0.006842680741101503, + 0.012174729257822037, + 0.012836923822760582, + -0.00222283648326993, + 0.002914347453042865, + 0.005094072315841913, + 0.024252887815237045, + 0.0028005326166749, + 0.007387612015008926, + -0.026763711124658585, + -0.00582179706543684, + -0.007046167738735676, + -0.012195423245429993, + -0.0009484562324360013, + -0.009512154385447502, + 0.012623090296983719, + 0.00806360226124525, + 0.015120116993784904, + 0.01578231155872345, + 0.001890014624223113, + -0.009732885286211967, + 0.021548926830291748, + -0.010602016001939774, + -0.00770491361618042, + 0.009043099358677864, + -0.0006962530896998942, + 0.003016090951859951, + 0.03669663518667221, + 0.021507538855075836, + 0.007898054085671902, + -0.015906473621726036, + -0.028157079592347145, + -0.013340468518435955, + 0.0038179676048457623, + 0.011146947741508484, + 0.0012873137602582574, + -0.0018710455624386668, + -0.02168688364326954, + -0.005504494998604059, + -0.0053458441980183125, + 0.004790566395968199, + 0.01870700530707836, + -0.00215903134085238, + -0.00665298942476511, + 0.006508134305477142, + -0.0031919863540679216, + 0.03048855811357498, + -0.004111126530915499, + 0.004018005449324846, + -0.010836543515324593, + 0.00841539353132248, + -0.0016684207366779447, + 0.02019694447517395, + 0.0081463772803545, + 0.010526140220463276, + -0.007104799617081881, + -0.02216973342001438, + -0.0009113802225328982, + -0.028860662132501602, + 0.005721777677536011, + -0.0022814683616161346, + -0.0070910039357841015, + -0.013264591805636883, + 0.00041753629921004176, + 0.02331477962434292, + -0.008684410713613033, + -0.0051699490286409855, + -0.026943055912852287, + 0.02688787318766117, + -0.02684648521244526, + 0.007173778023570776, + -0.015892677009105682, + 0.0006716794450767338, + -0.008643022738397121, + 0.03137148544192314, + -0.00894652958959341, + -0.004656057804822922, + 0.009160363115370274, + 0.025784214958548546, + 0.006328789982944727, + -0.009988106787204742, + 0.009036201052367687, + -0.023549307137727737, + 0.004838851280510426, + 0.012195423245429993, + -0.015423622913658619, + 0.018389703705906868, + -0.022887110710144043, + 0.014037152752280235, + -0.0011036582291126251, + 0.027508679777383804, + -0.007159982342272997, + -0.007677322253584862, + -0.006497787777334452, + 0.0030367844738066196, + 0.0025677296798676252, + 0.005701084155589342, + -0.009546643123030663, + -0.013947480358183384, + 0.006794395856559277, + 0.004442224279046059, + -0.01072617806494236, + -0.015009751543402672, + -0.006887516938149929, + 0.015727128833532333, + 0.0009269004222005606, + 0.014499309472739697, + -0.00863612536340952, + -0.034875597804784775, + 0.022624993696808815, + -0.010477854870259762, + 0.0054941484704613686, + -0.02142476476728916, + 0.02770182117819786, + 0.003952475730329752, + 0.021604109555482864, + 0.002498751040548086, + 0.008070500567555428, + -0.007642833050340414, + -0.007870462723076344, + 0.0009570785914547741, + 0.0005423445254564285, + 0.0009493184625171125, + 0.0065598683431744576, + 0.0032040576916188, + -0.0030747228302061558, + 0.013588791713118553, + 0.005632105749100447, + -0.01023642998188734, + 0.002883306937292218, + -0.008346415124833584, + 0.008932732976973057, + 0.0024177012965083122, + 0.020417677238583565, + -0.011388372629880905, + 0.01707911118865013, + -0.0032833830919116735, + 0.026998238638043404, + 0.0033696063328534365, + -0.013237000443041325, + -0.019355405122041702, + -0.016003044322133064, + 0.004211145918816328, + -0.0031557725742459297, + 0.008325721137225628, + 0.012678273022174835, + -0.003033335553482175, + 0.001139872008934617, + -0.00722896121442318, + 0.006094262469559908, + -0.005566576030105352, + -0.013740544207394123, + -0.00617703702300787, + 0.003597236005589366, + -0.0011976415989920497, + 0.023935586214065552, + -0.020017599686980247, + -0.014209599234163761, + 0.010105370543897152, + -0.017092905938625336, + -0.015934064984321594, + -0.011857427656650543, + 0.011395270936191082, + -0.017120497301220894, + 0.018044810742139816, + 0.02145235612988472, + -0.012450643815100193, + 0.019134674221277237, + -0.011933304369449615, + -0.006908210460096598, + -0.01863802783191204, + 0.004452570807188749, + 0.014430331066250801, + 0.0027022380381822586, + 0.01378193125128746, + 0.012333380058407784, + 0.015478805638849735, + -0.003611031686887145, + -0.0005341533105820417, + -0.009636315517127514, + 0.0015839219558984041, + 0.004142167046666145, + -0.01741020753979683, + -0.017092905938625336, + -0.013223204761743546, + -0.0048250555992126465, + 0.005673492792993784, + 0.019576137885451317, + -0.03051614947617054, + -0.015299461781978607, + 0.000299841514788568, + -0.006080466788262129, + 0.014775224030017853, + 0.0007566094282083213, + 0.03821416571736336, + 0.030267825350165367, + 0.02386660873889923, + -0.007318633142858744, + 0.0023452737368643284, + 0.008615431375801563, + 0.020624611526727676, + 0.016748012974858284, + 0.0020935016218572855, + 0.029274532571434975, + 0.0028022571932524443, + 0.007884258404374123, + 0.01517529971897602, + -0.0010803778422996402, + -0.005794205702841282, + 0.013416345231235027, + 0.016347937285900116, + -0.003893844084814191, + -0.008104990236461163, + -0.005083725322037935, + 0.012905903160572052, + -0.009843251667916775, + 0.007835973054170609, + 0.037827882915735245, + 0.013671565800905228, + 0.01305075827986002, + -0.0015934065449982882, + 0.000508286349941045, + 0.012167831882834435, + -0.010512344539165497, + 0.016403120011091232, + 0.01388539932668209, + 0.012367869727313519, + 0.005897673312574625, + -0.008394700475037098, + 0.009588030166924, + -0.022307690232992172, + -0.019189856946468353, + 0.017230862751603127, + 0.006449502427130938, + 0.017161885276436806, + -0.02022453583776951, + 0.014050948433578014, + 6.202688382472843e-5, + -0.01330597884953022, + 0.005835592746734619, + 0.01305075827986002, + -0.0036903570871800184, + 0.03349602594971657, + -0.012464439496397972, + 0.003238546894863248, + 0.016996335238218307, + -0.0013985418481752276, + 0.002402181038632989, + 0.026763711124658585, + -0.006515032146126032, + -0.031785354018211365, + -0.022155938670039177, + -0.00014226844359654933, + 0.005132010672241449, + 0.003519634949043393, + 0.0029315920546650887, + -0.017879262566566467, + -0.010063983500003815, + -0.0013287010369822383, + -0.0018779434030875564, + 0.0035317062865942717, + 0.01028471440076828, + 0.00019303240696899593, + -0.013609484769403934, + -0.0023711405228823423, + -0.007039269898086786, + -0.000211678197956644, + 0.03581370785832405, + -0.0066564385779201984, + -0.0029764282517135143, + 0.0005526913446374238, + -0.0024608129169791937, + -0.009532847441732883, + -0.013892297632992268, + 0.00037550245178863406, + 0.008001522161066532, + -0.01741020753979683, + -0.006532276980578899, + 0.0039007419254630804, + -0.021576518192887306, + -0.0039800675585865974, + 0.019796868786215782, + 0.0063356878235936165, + 0.005325150676071644, + -0.011857427656650543, + -0.004435326438397169, + 0.0003101883048657328, + 0.03170258179306984, + 0.0063356878235936165, + -0.022073164582252502, + 0.004880238324403763, + -0.00896032527089119, + 0.016706624999642372, + -0.006811640225350857, + 0.0019486465025693178, + 0.03388230502605438, + 0.0168031957000494, + -0.0029488366562873125, + -0.0049250745214521885, + -0.010953807272017002, + 0.0075117736123502254, + -0.02324580028653145, + 0.02379762940108776, + -0.0047250366769731045, + -0.009105180390179157, + -0.00221421429887414, + -0.00780838169157505, + 0.006256362423300743, + -0.014995955862104893, + 0.004114575684070587, + -0.014264781959354877, + -0.016209980472922325, + 0.0021452356595546007, + -0.008442984893918037, + 0.0161272045224905, + 0.01608581840991974, + 0.016375528648495674, + 0.019507158547639847, + 0.007025474216789007, + 0.027012033388018608, + -0.007187573704868555, + 0.018720801919698715, + -0.0028350220527499914, + 0.001303696190007031, + -0.022749153897166252, + -0.006052875425666571, + 0.016554873436689377, + -0.022487035021185875, + -0.007856667041778564, + -0.013595689088106155, + 0.013174919411540031, + 0.001382159418426454, + 0.01308524701744318, + -0.02647400088608265, + -0.0016494516748934984, + 0.029440082609653473, + -0.018279338255524635, + -0.0008518861723132432, + -0.0156167633831501, + -0.01720327138900757, + -0.006708172615617514, + 0.002014176221564412, + -0.011505636386573315, + 0.013692259788513184, + -0.016885969787836075, + 0.021066075190901756, + 0.004531896207481623, + 0.030571332201361656, + -0.007615241687744856, + -0.02525997720658779, + -0.003185088513419032, + 0.019369201734662056, + 0.0060011413879692554, + 0.0006164965452626348, + 0.010077779181301594, + -0.018900146707892418, + -0.0020193494856357574, + 0.008001522161066532, + 0.003348912810906768, + 0.0016072022262960672, + 0.003276485251262784, + -0.007877360098063946, + -0.010884828865528107, + -0.011512534692883492, + 0.02847438119351864, + -0.016816992312669754, + -0.00663574505597353, + 0.01568574272096157, + -0.012091955170035362, + 0.009884638711810112, + -0.01652728207409382, + -0.006204628385603428, + 8.137323311530054e-5, + 0.013761238195002079, + -0.012843822129070759, + 0.02379762940108776, + 0.01503734290599823, + -0.006277055945247412, + 0.004321511369198561, + -0.008187764324247837, + -0.014306169003248215, + -0.010264021344482899, + 0.007932542823255062, + -0.008511963300406933, + -0.02610151655972004, + -0.011581513099372387, + -0.005994243547320366, + 0.01782407984137535, + -0.023121638223528862, + -0.013174919411540031, + -0.021135054528713226, + 0.0005669181700795889, + -0.012705865316092968, + 0.01659625954926014, + 0.008863754570484161, + 0.01978307217359543, + -0.010457160882651806, + -0.010808952152729034, + -0.015092525631189346, + -0.0008618018473498523, + 0.009546643123030663, + 0.010415773838758469, + 0.01724465936422348, + 0.008780980482697487, + -0.006787498015910387, + -0.005766613874584436, + -0.0037593357264995575, + 0.015796108171343803, + -0.03876599296927452, + -0.005290661472827196, + -0.00029035695479251444, + -0.009284524247050285, + -0.015147708356380463, + -1.4846573321847245e-5, + 0.008987916633486748, + 0.018886350095272064, + -0.0008286058437079191, + -0.012305788695812225, + 0.0010286439210176468, + -0.017810283228754997, + 0.0032506182324141264, + -0.023576898500323296, + -0.02043147198855877, + -0.001779648824594915, + 0.002540138317272067, + -0.012512724846601486, + -0.007159982342272997, + -0.02993672899901867, + -0.00851886160671711, + -0.021576518192887306, + 0.0021521335002034903, + -0.009822557680308819, + -0.015796108171343803, + -0.0010234705405309796, + 0.0005880428943783045, + 0.0067599061876535416, + 0.0022504280786961317, + 0.000503112911246717, + 0.016761809587478638, + -0.015934064984321594, + 0.02161790430545807, + 0.010153654962778091, + -0.013547404669225216, + -0.024625374004244804, + -0.014037152752280235, + 0.012698967009782791, + -0.00489748315885663, + 0.0005255310097709298, + 0.0224042609333992, + -0.012105750851333141, + -0.025922171771526337, + -0.012160933576524258, + -0.004873340483754873, + 0.015740925446152687, + 0.0020434921607375145, + -0.009988106787204742, + 0.04066980257630348, + 0.008318823762238026, + 0.029164167121052742, + 0.00943627767264843, + 0.007766994647681713, + 0.010898624546825886, + -0.008587840013206005, + -0.0019796867854893208, + 0.0027384518180042505, + -0.006418461911380291, + 0.012767945416271687, + -0.019741686061024666, + 0.004628466442227364, + -0.019203651696443558, + -0.013609484769403934, + 0.0031419768929481506, + -0.0060011413879692554, + -0.007408305536955595, + -0.011967793107032776, + 0.003400646848604083, + -0.012678273022174835, + -0.029108984395861626, + 0.0012036771513521671, + -0.00884306151419878, + -0.0002018702944042161, + 0.0006212388398125768, + -0.008863754570484161, + -0.015313257463276386, + 0.020900527015328407, + -2.3940436221892014e-5, + 0.028695112094283104, + 0.0008824954275041819, + 0.005501046311110258, + 0.014278577640652657, + -0.0063356878235936165, + -0.0017382616642862558, + 0.026653345674276352, + -0.005535535514354706, + -0.01689976640045643, + 0.02161790430545807, + -0.008677512407302856, + 0.0001940024085342884, + -0.0033609841484576464, + 0.006063221953809261, + -0.012291993014514446, + -0.00420079892501235, + -0.024501211941242218, + -0.023369962349534035, + -0.029440082609653473, + 0.016623850911855698, + 0.01734123006463051, + -0.0028764090966433287, + 0.01778269186615944, + -0.0015615038573741913, + -0.01789305917918682, + -0.031040387228131294, + 0.002077981363981962, + -0.020072782412171364, + -0.016927357763051987, + 0.027412110939621925, + 0.010298510082066059, + -0.001834831782616675, + 0.011008989997208118, + 0.02331477962434292, + -0.009836353361606598, + -0.0254531167447567, + -0.01316802203655243, + 0.011829836294054985, + 0.008753389120101929, + 0.02040388062596321, + 0.010098472237586975, + 0.0012390287593007088, + -0.01564435474574566, + -0.01223681028932333, + -0.010539935901761055, + -0.007173778023570776, + -0.010346795432269573, + -0.0029522855766117573, + 0.03622758015990257, + -0.006932353135198355, + 0.005314804147928953, + -0.0019969316199421883, + -0.01571333408355713, + -0.018720801919698715, + -0.003169568255543709, + -0.002703962614759803, + -0.010974501259624958, + 0.024928878992795944, + -0.002502199960872531, + 0.01792065054178238, + -0.0016873899148777127, + 0.013471527956426144, + 0.02254221774637699, + 0.014292373321950436, + -0.014485513791441917, + -0.00964321382343769, + 0.0013002472696825862, + 0.0017149813938885927, + -0.0024177012965083122, + 0.008429189212620258, + -0.005342395510524511, + -0.014264781959354877, + -0.03239236772060394, + -0.00813258159905672, + 0.0151890954002738, + 0.010912420228123665, + 0.02433566376566887, + -0.000933798321057111, + 0.010795156471431255, + 0.00619428139179945, + 0.007449692580848932, + -0.0034247892908751965, + -0.01327149011194706, + 0.013485323637723923, + -0.02043147198855877, + 0.004700894001871347, + 0.015533989295363426, + -0.01571333408355713, + -0.0009372472413815558, + -0.011126253753900528, + 0.005401027388870716, + -0.017906853929162025, + -0.015520193614065647, + 0.0029574590735137463, + -0.009250035509467125, + 0.016982540488243103, + 0.03551020100712776, + -0.006487440783530474, + 0.03109556995332241, + -0.008649921044707298, + -0.007691117934882641, + 0.0034972168505191803, + -0.022376669570803642, + 0.0042939200066030025, + 0.020748773589730263, + 0.006828885059803724, + -0.012250605970621109, + 0.021562721580266953, + -0.012678273022174835, + 0.0016960122156888247, + 0.011360781267285347, + -0.0031281812116503716, + 0.0027763901744037867, + -0.015961656346917152, + 0.026501592248678207, + -0.01601683907210827, + -0.0018451785435900092, + 0.004542243201285601, + 0.019934825599193573, + 0.032199226319789886, + -0.0023366513196378946, + 0.014064744114875793, + 0.016720421612262726, + -0.0008523172582499683, + 0.016692830249667168, + -0.0025798010174185038, + 0.014333760365843773, + -0.0030178152956068516, + -0.009636315517127514, + 0.012512724846601486, + -0.027232766151428223, + 0.021259216591715813, + 0.0067461105063557625, + 0.016072021797299385, + 0.013057655654847622, + 0.036034438759088516, + 0.005963203031569719, + -0.009063792414963245, + 0.01914846897125244, + 0.020652202889323235, + -0.0006604704540222883, + 0.0029522855766117573, + 0.01167808286845684, + -0.00454914104193449, + 0.0022676726803183556, + 0.01396817434579134, + -0.0203624926507473, + -0.010891727171838284, + -0.011112458072602749, + -0.04544312506914139, + 0.0005147530464455485, + 0.009884638711810112, + 0.0244460292160511, + -0.0015994420973584056, + 0.014154416508972645, + -0.004100780002772808, + -0.006966842338442802, + 0.007670424412935972, + 0.006922006141394377, + 0.022155938670039177, + -0.006587459705770016, + -0.015327053144574165, + -0.017603348940610886, + -0.013712952844798565, + 0.03581370785832405, + 0.00039921386633068323, + 0.010533037595450878, + 0.0047491793520748615, + -0.004338756203651428, + -0.009974311105906963, + -0.0014209599466994405, + 0.007987726479768753, + -0.0025142712984234095, + 0.0005229442613199353, + -0.01459587924182415, + -0.010739973746240139, + -0.016692830249667168, + 0.012209218926727772, + -0.020969506353139877, + -0.0005509668844752014, + 0.0012786914594471455, + -0.003066100412979722, + -0.01914846897125244, + 0.03804861754179001, + 0.018982920795679092, + -0.007360020652413368, + -0.007187573704868555, + -0.0011933303903788328, + 0.02501165308058262, + 0.01179534662514925, + 0.014499309472739697, + 0.00442153075709939, + 0.0019503709627315402, + -0.008718899451196194, + -0.00044491220614872873, + 0.0006893552490510046, + 0.011146947741508484, + 0.002593596698716283, + 0.0032471693120896816, + 0.02603253722190857, + -0.026129107922315598, + -0.006587459705770016, + -0.0013011095579713583, + -0.02263878844678402, + -0.018348317593336105, + 0.010160553269088268, + -0.003738642204552889, + 0.03288901224732399, + -0.01568574272096157, + 0.00652537913993001, + -0.011443555355072021, + 0.004966462031006813, + -0.012140239588916302, + 0.012602397240698338, + -0.014885589480400085, + -0.0128162307664752, + 0.01086413487792015, + 0.032254409044981, + 0.006894414778798819, + -0.0050595831125974655, + 0.01782407984137535, + -0.024156318977475166, + 0.013264591805636883, + -0.009043099358677864, + -0.004452570807188749, + 0.0023952831979840994, + -0.0041801054030656815, + 0.008394700475037098, + 0.002603943459689617, + 0.01315422635525465, + -0.020790161564946175, + 0.013637076131999493, + 0.0047146896831691265, + -0.007456590421497822, + -0.02457018941640854, + -0.005766613874584436, + -0.004121473524719477, + -0.01741020753979683, + -0.009988106787204742, + 0.02175586111843586, + 0.03385471552610397, + -0.007953236810863018, + 0.004876789636909962, + 0.021576518192887306, + 0.033689167350530624, + 0.003226475790143013, + -0.013209409080445766, + 0.00850506592541933, + -0.0022849172819405794, + -5.0036454922519624e-5, + -0.005335497669875622, + -0.02514961175620556, + 0.008339516818523407, + 0.004859544802457094, + 0.01060891430824995, + -0.049030013382434845, + -0.00017363215738441795, + -0.013650871813297272, + 0.021493742242455482, + -0.010374386794865131, + 0.001454586978070438, + 0.00935350265353918, + 0.03385471552610397, + 0.014333760365843773, + 0.0198520515114069, + -0.009739783592522144, + -0.010650301352143288, + -0.014982160180807114, + -0.003500665770843625, + 0.003348912810906768, + 0.002109021879732609, + -0.007870462723076344, + -0.016251366585493088, + 0.007325530983507633, + -0.0037317441310733557, + 0.010160553269088268, + -0.012298891320824623, + -0.004324960522353649, + -0.032640691846609116, + 0.008787877857685089, + 0.02814328297972679, + -0.007408305536955595, + 0.005435516592115164, + 0.008815470151603222, + -0.00489748315885663, + -0.021673087030649185, + 0.008801674470305443, + -0.007656628731638193, + -0.01014675758779049, + -0.0003610600542742759, + -0.008587840013206005, + 0.009974311105906963, + -0.0022866418585181236, + -0.008111887611448765, + -0.03371675685048103, + -0.01460967492312193, + 0.0020969505421817303, + 0.009684600867331028, + 0.0007216889644041657, + -0.005583820398896933, + 0.008574044331908226, + 0.007994623854756355, + 0.007622139528393745, + -0.0063598304986953735, + 0.009222444146871567, + 0.013506016694009304, + -0.017810283228754997, + 0.005583820398896933, + -0.01954854652285576, + -0.013581893406808376, + 0.012478235177695751, + 0.017699917778372765, + 2.2754866222385317e-5, + -0.01605822704732418, + 0.01910708285868168, + 0.005942509509623051, + 0.015533989295363426, + -0.004566385876387358, + -0.001084689050912857, + -0.005194091238081455, + 0.02186622843146324, + -0.009788068942725658, + 0.005618310067802668, + 0.016610056161880493, + -0.015699537470936775, + -0.008753389120101929, + -0.0077600968070328236, + 0.016913561150431633, + 0.00443877512589097, + 0.017934445291757584, + 0.012291993014514446, + -0.012581703253090382, + -0.01143665798008442, + -0.0006686616688966751, + -0.00872579775750637, + -0.008022215217351913, + 0.00663574505597353, + 0.013857807964086533, + -0.0037213973701000214, + 0.009746680967509747, + 0.0048250555992126465, + 0.020597020164132118, + 0.0123885627835989, + -0.0032644139137119055, + 0.001793444505892694, + 0.012795536778867245, + -0.0007967032724991441, + -0.0030816206708550453, + -0.002653953153640032, + 0.0058148992247879505, + 0.0007928232080303133, + -0.00033713309676386416, + -0.02382522076368332, + -0.019051900133490562, + 0.00953974574804306, + -0.008822367526590824, + -0.0051458063535392284, + -0.0045387945137917995, + -0.009339706972241402, + 0.012195423245429993, + 0.007787688169628382, + 0.020555634051561356, + 0.001029506092891097, + -0.0004768148355651647, + 0.008870652876794338, + -0.0186656191945076, + 0.004990604240447283, + -0.030847245827317238, + 0.0217282697558403, + 0.009029303677380085, + -0.017065314576029778, + 0.00896032527089119, + -0.008539555594325066, + -0.0018089647637680173, + 0.011484943330287933, + 0.014113029465079308, + 0.0031643949914723635, + 0.00909828208386898, + 0.013816420920193195, + 0.009008609689772129, + 0.004362898878753185, + 0.03098520264029503, + 0.009153464809060097, + 0.0244460292160511, + 0.009374196641147137, + 0.022887110710144043, + -0.006997882854193449, + 0.00619428139179945, + -0.00012987383524887264, + -0.0008122234721668065, + 0.00711169745773077, + -0.0151890954002738, + 0.01481661107391119, + 0.0017356749158352613, + 0.004818157758563757, + 0.02186622843146324, + -0.004973359871655703, + -0.020955709740519524, + 0.01768612302839756, + -0.03539983555674553, + -0.009801864624023438, + -0.013547404669225216, + 0.018155178055167198, + 0.012471337802708149, + 0.005445863585919142, + -0.006252913270145655, + 0.0027781145181506872, + 0.01165738981217146, + 0.030157459899783134, + -0.0032885565888136625, + 0.0032644139137119055, + -0.012698967009782791, + -0.018693210557103157, + -0.014195803552865982, + -0.01894153282046318, + 0.005518291145563126, + -0.020086579024791718, + 0.02199038863182068, + 0.01608581840991974, + 0.00488713663071394, + -0.0018744944827631116, + -0.0008411082671955228, + -0.02739831432700157, + -0.0030057441908866167, + -0.01819656416773796, + -0.002553933998569846, + -0.005725226830691099, + 0.0021986940409988165, + 0.024956470355391502, + -0.0021900716237723827, + 0.0072151655331254005, + -0.00829812977463007, + 0.002748798578977585, + 0.0218938197940588, + 0.0023952831979840994, + -0.010774463415145874, + -0.01378193125128746, + -0.0058907754719257355, + 0.0109469098970294, + -0.015630558133125305, + 0.0022366323973983526, + -0.0011597033590078354, + -0.0020434921607375145, + -0.027232766151428223, + -0.007249654736369848, + 0.0046664047986269, + -0.012450643815100193, + -0.010553731583058834, + -0.005463107954710722, + -0.0057907565496861935, + -0.0031264566350728273, + -0.0077600968070328236, + 0.01340944692492485, + -0.0161272045224905, + 0.003152323653921485, + -0.013181817717850208, + -0.022321486845612526, + 0.001587370876222849, + -0.009387992322444916, + -0.02205936796963215, + -0.010098472237586975, + 0.015451214276254177, + 0.0121333422139287, + 0.00758764985948801, + 0.028833070769906044, + -0.019645115360617638, + -0.003714499529451132, + 0.005280314479023218, + -0.011753959581255913, + 0.008753389120101929, + -0.011595308780670166, + -0.01093311421573162, + 0.007022025063633919, + -0.020072782412171364, + -0.008870652876794338, + -0.008760286495089531, + 0.0040938821621239185, + -0.022693971171975136, + 0.0027212072163820267, + -0.01907949149608612, + 0.004983706399798393, + -0.006753008347004652, + -0.0006984086940065026, + -0.01928642764687538, + -0.01143665798008442, + 0.015602967701852322, + 0.007235859055072069, + -0.03807620704174042, + -0.0012010905193164945, + 0.005194091238081455, + -0.014168212190270424, + 0.0032695874106138945, + 0.009167260490357876, + 0.001349394558928907, + -0.013609484769403934, + 0.005187193397432566, + 0.015230483375489712, + 0.005732124671339989, + 0.017561960965394974, + 0.0007316046394407749, + -0.017437798902392387, + -0.012429950758814812, + 0.011312496848404408, + -0.015809902921319008, + -0.004431877285242081, + 0.0004018005565740168, + -0.00014657960855402052, + 0.0021935205440968275, + -0.016113409772515297, + 0.0060252840630710125, + -0.021949002519249916, + -0.004976808559149504, + -0.0007173778139986098, + -0.029964320361614227, + 0.009118976071476936, + -0.007994623854756355, + 0.005332048516720533, + -0.003254067152738571, + -0.009167260490357876, + -0.006377074867486954, + 0.0023814875166863203, + 0.010174348950386047, + 0.00465950695797801, + 0.016030635684728622, + 0.0019969316199421883, + -0.00409733084961772, + -0.011029683984816074, + -0.007284143939614296, + 0.0048147086054086685, + 0.044173918664455414, + 0.02674991451203823, + 0.001322665368206799, + -0.0021072973031550646, + -0.006370177026838064, + -0.006483991630375385, + -0.0043042670004069805, + 0.0005466556758619845, + -0.015575376339256763, + -0.020072782412171364, + 0.007546262815594673, + -0.010629608295857906, + 0.0052699679508805275, + 0.02484610490500927, + -0.019203651696443558, + 0.014802815392613411, + 0.0008001521928235888, + -0.01014675758779049, + -0.00969149824231863, + -0.002590147778391838, + 0.018582845106720924, + -1.4718585816808627e-6, + -0.009118976071476936, + -0.0014304444193840027, + 0.011167640797793865, + -0.008698206394910812, + -0.0044042859226465225, + -0.01652728207409382, + 0.001628758036531508, + -0.02291470393538475, + 0.02766043320298195, + -0.023176822811365128, + -0.02728794887661934, + 0.01396817434579134, + 0.005052685271948576, + 0.012022976763546467, + -0.01812758482992649, + 0.01975548081099987, + -0.007422101218253374, + 0.00016738097474444658, + -0.015768516808748245, + -0.014899385161697865, + 0.021548926830291748, + 0.010360591113567352, + -0.025315159931778908, + -0.004683649633079767, + 0.011395270936191082, + 0.01734123006463051, + -0.008394700475037098, + -0.008153274655342102, + -0.01294729020446539, + 0.006211526226252317, + -0.01316802203655243, + 0.02396317757666111, + 0.0017227414064109325, + 0.006794395856559277, + 0.011478045023977757, + -0.0019434731220826507, + -0.015602967701852322, + 0.0008587840129621327, + -0.009015507996082306, + -0.0005936474190093577, + -0.00862232968211174, + 0.026501592248678207, + 0.00065443484345451, + 0.024859901517629623, + 0.0017830977449193597, + 0.003642071969807148, + 0.005301008000969887, + -0.004583630245178938, + 0.006152894347906113, + -0.0026298104785382748, + 0.0006440880242735147, + -0.0032454447355121374, + -0.019879642874002457, + -0.008546452969312668, + -0.021631700918078423, + -0.002136613242328167, + -0.004228390287607908, + 0.015368440188467503, + 0.012857617810368538, + -0.001066582161001861, + -0.019976213574409485, + -0.006239117588847876, + 0.0029453877359628677, + 0.0037007038481533527, + -0.00048759274068288505, + -0.005866633262485266, + 0.004583630245178938, + -0.0156167633831501, + 0.009767374955117702, + -0.013830216601490974, + 0.008491270244121552, + 0.005787307396531105, + 0.005004399921745062, + -0.000979496631771326, + -0.0009950168896466494, + -0.004587079398334026, + 0.011119356378912926, + 0.014761428348720074, + 0.011271108873188496, + -0.01176085788756609, + 0.0040455968119204044, + -0.02268017642199993, + -0.008436087518930435, + -0.04279434680938721, + -0.01921744830906391, + 0.007663526572287083, + 0.006356381345540285, + -0.014982160180807114, + -0.008567146956920624, + 0.02305266074836254, + -0.0042042480781674385, + 0.02619808539748192, + 0.025756623595952988, + -0.005338946357369423, + 0.03421340510249138, + 0.0004953528405167162, + 0.012112648226320744, + -0.0018951880047097802, + -0.0008781842770986259, + 0.012478235177695751, + 0.014099232852458954, + -0.002809155033901334, + 0.0017029100563377142, + 0.018279338255524635, + -0.011560819111764431, + 0.03379953280091286, + -0.01084344182163477, + -0.020665999501943588, + 0.007173778023570776, + -0.003152323653921485, + 0.021341990679502487, + 0.02280433662235737, + -0.01605822704732418, + 0.014071641489863396, + 0.021935205906629562, + -0.0011338363401591778, + -0.01296798326075077, + 0.018486274406313896, + -0.001541672507300973, + 0.03680700063705444, + 0.014692449942231178, + 0.00969149824231863, + -0.009670805186033249, + 0.0020227984059602022, + 0.014554492197930813, + 0.016610056161880493, + 0.008525759913027287, + 0.01035369373857975, + 0.01540982723236084, + -0.005018195603042841, + 0.010270918719470501, + 0.003628276288509369, + -0.0018693211022764444, + 0.004873340483754873, + -0.0015045965556055307, + 0.02205936796963215, + 0.014940773136913776, + -0.008311925455927849, + 0.007898054085671902, + -0.001821035984903574, + 0.01836211234331131, + 0.02603253722190857, + 0.006332238670438528, + -0.004818157758563757, + -0.02087293565273285, + 0.025673847645521164, + 0.004493958316743374, + -0.01989343948662281, + 0.002246979158371687, + 0.009463869035243988, + -0.016209980472922325, + -0.012078159488737583, + 0.0006794395740143955, + 0.010243327356874943, + 0.005504494998604059, + 0.015078729949891567, + -0.008484371937811375, + -0.012423052452504635, + -0.006090813782066107, + 0.00606667110696435, + 0.03526188060641289, + -0.006611602380871773, + 0.007980828173458576, + 0.03313733637332916, + 0.004362898878753185, + 0.009974311105906963, + 0.010871033184230328, + -0.008863754570484161, + -0.010808952152729034, + 0.01738261617720127, + -0.01649969071149826, + 0.0013778482098132372, + -0.01342324260622263, + 0.003169568255543709, + -0.001862423145212233, + 0.010001902468502522, + -0.012429950758814812, + 0.028060508891940117, + -0.0037731314077973366, + 0.00711859529837966, + -0.0023401002399623394, + 0.007573854178190231 + ], + "c2e151b8-3c71-441d-aa4a-6a7224e94fc8": [ + 0.0012704373802989721, + -0.024949193000793457, + -0.0010931090218946338, + 0.004655495285987854, + 0.010716297663748264, + -0.02096637897193432, + 0.04350456967949867, + 0.017276616767048836, + -0.019154798239469528, + 0.05786401033401489, + -0.009337631985545158, + 0.001238801283761859, + 0.0003234370378777385, + -0.019327964633703232, + 0.018608661368489265, + 0.04555591940879822, + -0.01658395305275917, + 0.009304330684244633, + -0.004465679172426462, + -0.024909231811761856, + 0.045449357479810715, + -0.0052182842046022415, + -0.04387754574418068, + 0.02152583748102188, + 0.015025461092591286, + 0.002827264368534088, + 0.010882803238928318, + 0.028852082788944244, + -0.005085079465061426, + -0.01273434516042471, + 0.032501883804798126, + 0.007792459800839424, + 0.007013213820755482, + 0.002739016432315111, + 0.0037230642046779394, + -0.023870237171649933, + -0.008771512657403946, + -0.008471802808344364, + -0.04433044046163559, + 0.01976753957569599, + -0.006566978991031647, + 0.014199594035744667, + 0.016437428072094917, + -0.042731985449790955, + -0.01972757838666439, + 0.000337798148393631, + -0.0201804731041193, + -0.005224944092333317, + 0.0015917931450530887, + -0.029784513637423515, + 0.021818887442350388, + 0.017636269330978394, + 0.05061768740415573, + 0.021765606477856636, + 0.028798799961805344, + -0.010829521343111992, + -0.002084649633616209, + 0.002174562541767955, + -0.0032535186037421227, + -0.05272231996059418, + 0.010889463126659393, + -0.013107317499816418, + 0.03982812911272049, + 0.011016007512807846, + 0.016304224729537964, + -0.010056935250759125, + 4.0663777326699346e-5, + 0.02056676708161831, + -0.031169839203357697, + 0.014452681876718998, + 0.05871652066707611, + 0.028452469035983086, + -0.024882590398192406, + 0.02052680402994156, + 0.002757332054898143, + -0.005428080912679434, + 0.031995706260204315, + 0.013047375716269016, + 0.007019874174147844, + -0.014772373251616955, + -0.005378129426389933, + -0.009364272467792034, + 0.02509571798145771, + 0.0003540324396453798, + 0.05722462758421898, + 0.03817639499902725, + -0.03239532187581062, + -0.0493655651807785, + 0.02054012566804886, + -0.03391385078430176, + -0.005338168237358332, + 0.0037297243252396584, + -0.011089270003139973, + 0.03279493376612663, + -0.014426041394472122, + -0.002685734536498785, + 0.0629257783293724, + -0.013786659575998783, + 0.0059775495901703835, + 0.007213020697236061, + 0.025748418644070625, + 0.00017649588698986918, + 0.020220434293150902, + 0.02770652435719967, + -0.0022028684616088867, + -0.03679106757044792, + 0.02321753464639187, + -0.001320389099419117, + -0.013393706642091274, + 0.00985046848654747, + -0.022298423573374748, + 0.018155766651034355, + -0.009897090494632721, + 0.005085079465061426, + -0.03412697836756706, + -0.033301111310720444, + -0.033327750861644745, + -0.020047269761562347, + -0.007552692200988531, + -0.012401334010064602, + 0.046861324459314346, + 0.015345151536166668, + -0.019501131027936935, + -0.003779676044359803, + -0.019141478464007378, + 0.016437428072094917, + -0.01301407441496849, + 0.01545171532779932, + 0.015611561015248299, + 0.027866369113326073, + 0.0008957998943515122, + -0.022897843271493912, + -0.016730478033423424, + 0.00024434691295027733, + 0.027573319151997566, + 0.01613105833530426, + -0.009077883325517178, + 0.04694124683737755, + -0.021246109157800674, + 0.032022349536418915, + -0.07406166940927505, + -0.016224300488829613, + -0.017170052975416183, + -0.004851971752941608, + 0.012701043859124184, + 0.021219467744231224, + -0.04246557503938675, + 0.04776711389422417, + -0.030317330732941628, + 0.01658395305275917, + -0.08631648123264313, + -0.022644756361842155, + -0.002332742791622877, + 0.007945644669234753, + -0.0201005507260561, + -0.018035881221294403, + 0.0006743475096300244, + 0.03657793998718262, + 0.0224582701921463, + 0.026574285700917244, + 0.007233001291751862, + -0.06670878827571869, + 0.006959932390600443, + 0.0008487620507366955, + 0.04558255895972252, + 0.00852508470416069, + 0.057491037994623184, + 0.018182406201958656, + -0.03900226205587387, + 0.011888496577739716, + 0.007685896474868059, + -0.043664418160915375, + 0.02456289902329445, + 0.02141927368938923, + -0.04760726913809776, + -0.013380386866629124, + 0.015358472242951393, + 0.0668153464794159, + 0.030663663521409035, + -0.01975421980023384, + -0.04648835211992264, + -0.011602107435464859, + 0.011302396655082703, + 0.019407887011766434, + 0.002537544583901763, + 0.01210162416100502, + 0.0357254333794117, + -0.004848641809076071, + -0.010716297663748264, + 0.016837041825056076, + -0.0006951607065275311, + -0.03207562863826752, + -0.031089916825294495, + 0.027599960565567017, + -0.005814373958855867, + -0.03364744409918785, + -0.012421314604580402, + 0.009111183695495129, + 0.0013928189873695374, + 0.030264049768447876, + -0.016757119446992874, + -0.03524589538574219, + -0.02197873406112194, + 0.03809647262096405, + -0.028958646580576897, + 0.036018483340740204, + -0.040920406579971313, + -0.007133097853511572, + 0.033434316515922546, + -0.041879478842020035, + 0.03183586150407791, + -0.03673778474330902, + -0.028852082788944244, + -0.021206147968769073, + 0.0037730159237980843, + -0.0005415593041107059, + -0.019834142178297043, + 0.01923472248017788, + -0.01144226174801588, + -0.011455582454800606, + 0.006553658749908209, + 0.012001720257103443, + -0.006670212373137474, + -0.026321198791265488, + -0.04169299080967903, + -0.015824688598513603, + -0.031063277274370193, + 0.020326998084783554, + -0.018075842410326004, + 0.017995920032262802, + 0.02644108235836029, + 0.006939951330423355, + 0.018448814749717712, + 0.003643141593784094, + -0.015877969563007355, + 0.033381033688783646, + 0.044064030051231384, + -0.0012621120549738407, + -0.002757332054898143, + 0.01164206862449646, + 0.0030470516066998243, + 0.013893223367631435, + -0.003483296139165759, + -0.0035632189828902483, + -0.005587926600128412, + 0.03857600688934326, + -0.00647373590618372, + 0.02646772377192974, + 0.007965626195073128, + -0.026720810681581497, + 0.019008273258805275, + 0.026134712621569633, + 0.0065603191033005714, + 0.0015218608314171433, + -0.03993469104170799, + 0.06686863303184509, + 0.03162273392081261, + -0.0447566919028759, + -0.006144055165350437, + 0.002327747642993927, + 0.011309057474136353, + 0.009957032278180122, + 0.029757872223854065, + 0.017876036465168, + 0.02008723095059395, + -0.032901499420404434, + 0.029651308432221413, + -0.035938557237386703, + 0.0314895324409008, + 0.006966592278331518, + 0.03314126655459404, + 0.013853262178599834, + 0.019021594896912575, + 0.015025461092591286, + 0.022484909743070602, + -0.019447848200798035, + 0.025242242962121964, + -0.002156246919184923, + -0.007932324893772602, + 0.02243162877857685, + -0.003709743730723858, + -0.024962512776255608, + 0.02954474650323391, + 0.02826598286628723, + 0.015305190347135067, + -0.02052680402994156, + -0.02060672827064991, + 0.001606778590939939, + -0.05898292735219002, + -0.01033000461757183, + 0.01163540780544281, + -0.0009124504285864532, + 0.027440115809440613, + 0.006700183730572462, + 0.014212913811206818, + 0.03753701224923134, + -0.035592228174209595, + -0.025815021246671677, + -0.015491676516830921, + 0.037350527942180634, + -0.01431947760283947, + -0.028772160410881042, + 0.0290385689586401, + -0.019114837050437927, + 0.018129125237464905, + -0.0037530353292822838, + 0.03937523439526558, + -0.002144591649994254, + -0.027599960565567017, + 0.0403343066573143, + 0.031249763444066048, + -0.03982812911272049, + -0.017995920032262802, + -0.026760773733258247, + -0.0039361915551126, + -0.011795253492891788, + 0.020047269761562347, + 0.007885702885687351, + -0.031036635860800743, + -0.044117312878370285, + 0.0179159976541996, + -0.016424108296632767, + -0.05232270434498787, + 0.01570480316877365, + 0.043184880167245865, + -0.02513567917048931, + 0.0314628891646862, + -0.006030831020325422, + -0.042305730283260345, + -1.7834305253927596e-5, + -0.030637022107839584, + -0.019567733630537987, + -0.04691460356116295, + 0.005341498181223869, + -0.0313030444085598, + -0.055306486785411835, + -0.03444666787981987, + -0.010802880860865116, + 0.029784513637423515, + -0.0025075736921280622, + -0.007958965376019478, + -0.011235794983804226, + 0.03844280168414116, + -0.006543668452650309, + 0.011342358775436878, + 0.0012537868460640311, + 0.024336451664566994, + 0.020926417782902718, + -0.020819853991270065, + 0.010736278258264065, + 0.000823786249384284, + 0.006570309400558472, + 0.018701903522014618, + -0.009077883325517178, + 0.028932005167007446, + 0.010616393759846687, + -0.006210657302290201, + -0.004152648616582155, + 0.012041681446135044, + 0.01879514753818512, + -0.01615769974887371, + -0.010996026918292046, + -0.008578366599977016, + 0.0024309810250997543, + -0.03050381690263748, + -0.014013107866048813, + -0.017876036465168, + -0.020220434293150902, + 0.01751638390123844, + 0.0029804494697600603, + -0.018595339730381966, + 0.01975421980023384, + -0.018142445012927055, + -0.030583741143345833, + -0.013633474707603455, + -0.023097651079297066, + 0.004126007668673992, + -0.0009315985953435302, + -0.03314126655459404, + 0.019967345520853996, + 0.015997853130102158, + -0.023377379402518272, + 0.017196694388985634, + 0.03503276780247688, + 0.0023910198360681534, + -0.006979912985116243, + -0.0014502634294331074, + -0.00636384217068553, + -0.03045053593814373, + -0.00037089112447574735, + -0.014466002583503723, + 0.00660361023619771, + -0.029757872223854065, + -0.012308090925216675, + -0.005537974648177624, + 0.01205500215291977, + -0.013520251028239727, + -0.004399076569825411, + 0.011049308814108372, + 0.009271029382944107, + -0.008798153139650822, + -0.04659491404891014, + -0.000678093871101737, + -0.002384359482675791, + 0.009524118155241013, + -0.044463641941547394, + -0.0157314445823431, + -0.006437104661017656, + 0.02325749583542347, + -0.013367066159844398, + -0.031649377197027206, + 0.017156733199954033, + -0.00919776689261198, + 0.045848969370126724, + 0.045449357479810715, + 0.016663875430822372, + -0.009564079344272614, + 0.052082937210798264, + -0.02602814882993698, + -0.0007584327831864357, + 0.05072425305843353, + 0.018275650218129158, + 0.0070331948809325695, + 0.010130197741091251, + 0.002447631675750017, + 0.028079496696591377, + -0.009544098749756813, + 0.015891289338469505, + -0.028079496696591377, + -0.018994953483343124, + -0.0028638956137001514, + 0.03681770712137222, + -0.017116770148277283, + 0.015318511053919792, + -0.006776776164770126, + -0.016850361600518227, + -0.003093673149123788, + -0.03663122281432152, + 0.009037921205163002, + -0.0003454990219324827, + -0.020699970424175262, + -0.0041226777248084545, + -0.026600927114486694, + 0.000988210435025394, + -0.029677949845790863, + 0.001076458371244371, + -0.032448600977659225, + 0.018182406201958656, + 0.010656355880200863, + -0.04784703627228737, + 0.006497046910226345, + 0.0020213774405419827, + -0.04302503541111946, + -0.005105060525238514, + 0.002817274071276188, + -0.007472769357264042, + -0.019501131027936935, + 0.013020734302699566, + 0.02284456230700016, + -0.057544320821762085, + -0.006057471968233585, + -0.04526286944746971, + 0.013633474707603455, + 0.008072189055383205, + 0.038735851645469666, + -0.017636269330978394, + 0.016863683238625526, + -0.005224944092333317, + 0.009344291873276234, + 0.014212913811206818, + -0.02600150741636753, + -0.02324417605996132, + -0.025295523926615715, + 0.013040714897215366, + 0.019900744780898094, + -0.005741111468523741, + -0.010589753277599812, + 0.012501236982643604, + 0.009863789193332195, + -0.015558279119431973, + -0.0011430606245994568, + -0.004805350210517645, + 0.014093030244112015, + 0.0019680957775563, + 0.004638844635337591, + 0.027573319151997566, + 0.01650403067469597, + -0.031143199652433395, + 0.02783972956240177, + -0.017369858920574188, + -0.0038695891853421926, + -0.002805618569254875, + 0.021379312500357628, + -0.01455924566835165, + -0.01479901373386383, + -0.0402810238301754, + -0.020247075706720352, + -0.020913098007440567, + -0.0009657322079874575, + -0.003433344652876258, + -0.008491783402860165, + -0.028878724202513695, + -0.014892256818711758, + 0.002377699362114072, + -0.023137612268328667, + 0.034713078290224075, + -0.014612527564167976, + 0.021259428933262825, + -0.005278225988149643, + 0.01137565914541483, + -0.02369707077741623, + 0.003942851442843676, + -0.02818606048822403, + -0.001301240874454379, + -0.0055945864878594875, + 0.04776711389422417, + -0.0063138906843960285, + -0.003285154700279236, + 0.04563584178686142, + -0.011768613010644913, + -0.007892363704741001, + -0.011748632416129112, + -0.017249975353479385, + -0.01835557259619236, + -0.026987221091985703, + 0.007972286082804203, + 0.019447848200798035, + -0.032368678599596024, + 0.03276829421520233, + -0.0013120637740939856, + -0.015904610976576805, + 0.027386832982301712, + -0.0037497051525861025, + 0.006024171132594347, + 0.018994953483343124, + -0.015984533354640007, + 0.03175593912601471, + 0.03748372942209244, + 0.035645511001348495, + 0.009530778042972088, + -0.0896732285618782, + 0.022125259041786194, + -0.02377699315547943, + -0.004059405531734228, + -0.0023394031450152397, + 0.010256742127239704, + -0.010403267107903957, + 0.01605113595724106, + -0.0112024936825037, + 0.020473523065447807, + -0.044010747224092484, + 0.04121345654129982, + -0.002950478345155716, + 0.001620931550860405, + -0.00705317547544837, + -0.019847461953759193, + 0.020420242100954056, + -0.027946291491389275, + -0.015784727409482002, + -0.012221507728099823, + 0.003115318948403001, + 0.025335485115647316, + -0.010709636844694614, + -0.018155766651034355, + -0.002179557690396905, + -0.011921797879040241, + -0.030743585899472237, + 0.016384147107601166, + 0.010463208891451359, + 0.0580771379172802, + 0.0314895324409008, + 0.010443228296935558, + 0.01834225282073021, + 0.014905577525496483, + -0.015758085995912552, + 0.035165973007678986, + -0.0067135039716959, + -0.010276722721755505, + -0.023843595758080482, + -0.00536147877573967, + 0.03346095606684685, + 0.01657063327729702, + -0.024482976645231247, + -0.007745838258415461, + -0.022258462384343147, + -0.025415407493710518, + -0.016783760860562325, + 0.010356645099818707, + 0.008431841619312763, + 0.009091203100979328, + 0.004435707814991474, + 0.022631434723734856, + -0.011575466021895409, + 0.03729724511504173, + -0.019581053406000137, + 0.024869270622730255, + 0.026694171130657196, + 0.03838952258229256, + 0.02914513275027275, + 0.022538192570209503, + 0.013919864781200886, + 0.010383286513388157, + -0.0006576969171874225, + 0.01918143965303898, + -0.013466969132423401, + 0.03284821659326553, + -0.018555378541350365, + -0.010656355880200863, + 0.01253453828394413, + 0.03284821659326553, + -0.023390701040625572, + -0.0179159976541996, + 0.04219916835427284, + -0.0314096063375473, + 0.010643035173416138, + -0.00559125654399395, + 0.0043624453246593475, + 0.020393600687384605, + 0.010110217146575451, + -0.003669782541692257, + 0.010556451976299286, + -0.011029328219592571, + 0.05000494793057442, + -0.003416694002225995, + 0.01747642271220684, + 0.04302503541111946, + -0.015078742988407612, + -0.001148055773228407, + -0.02058008685708046, + -0.033301111310720444, + 0.005341498181223869, + -0.006330541335046291, + -0.0035465683322399855, + -0.0039861430414021015, + -0.007226340938359499, + 0.007879042997956276, + 0.02291116490960121, + 0.018954992294311523, + -0.015158665366470814, + -0.03535246104001999, + 0.001650070073083043, + 0.0007434472790919244, + 0.005767752416431904, + 0.07672575861215591, + -0.013853262178599834, + 0.013786659575998783, + -0.007113117258995771, + 0.01744978129863739, + 0.049045875668525696, + 0.028905363753437996, + -0.017263295128941536, + -0.016224300488829613, + 0.014932218007743359, + 0.02066000923514366, + 0.002322752494364977, + -0.040494151413440704, + -0.022991087287664413, + -0.01294747181236744, + -0.017969278618693352, + 0.01931464485824108, + 0.03354087844491005, + -0.015078742988407612, + 0.027866369113326073, + 0.013893223367631435, + 0.0313296839594841, + 0.0015884629683569074, + 0.041000328958034515, + -0.00847846269607544, + 0.0201804731041193, + 0.019993986934423447, + -0.006853368598967791, + -0.00961070042103529, + 0.015171986073255539, + 0.02192545123398304, + -0.006130734458565712, + -0.001153050921857357, + -0.0036897631362080574, + 0.012814267538487911, + 0.004452358465641737, + -0.003543238155543804, + -0.013327104970812798, + -0.03636481240391731, + -0.02321753464639187, + 0.03617832809686661, + 0.0012113279663026333, + 0.004252552054822445, + 0.0024726074188947678, + 0.0039028902538120747, + -0.00015818027895875275, + -0.011808574199676514, + -0.0010323344031348825, + 0.013107317499816418, + -0.0018298960058018565, + 0.025255562737584114, + 0.00803888775408268, + 0.015784727409482002, + 0.012254809029400349, + -0.010176819749176502, + 0.003976152744144201, + -0.019807500764727592, + -0.03657793998718262, + -0.016237622126936913, + -0.015318511053919792, + -0.01519862748682499, + -0.004985176492482424, + 0.008192073553800583, + -0.02783972956240177, + -0.025268882513046265, + -0.010583093389868736, + -0.015504997223615646, + 0.011042647995054722, + 0.00659361993893981, + 0.00963734183460474, + -0.0035498985089361668, + -0.0041226777248084545, + 0.004638844635337591, + -0.011302396655082703, + 0.03364744409918785, + 0.024509618058800697, + 0.044570207595825195, + -0.022285103797912598, + 0.016490710899233818, + 0.0013861587503924966, + -0.018621981143951416, + -0.013553552329540253, + -0.015957891941070557, + -0.00808550976216793, + -0.004602213390171528, + 0.01605113595724106, + -0.005751101765781641, + 0.0582369826734066, + -0.014186273328959942, + 0.004668815992772579, + 0.01320722047239542, + 0.01743646152317524, + -0.04211924597620964, + -0.02946482226252556, + 0.02329745702445507, + 0.002888871356844902, + -0.0076126339845359325, + 0.014652488753199577, + -0.01976753957569599, + 0.007912344299256802, + -0.020393600687384605, + 0.000974057475104928, + -0.00625394843518734, + 0.031516171991825104, + 0.03210227191448212, + -0.022151898592710495, + -0.021619081497192383, + 0.013693416491150856, + -0.028026215732097626, + 0.01918143965303898, + 0.011648728512227535, + -0.023377379402518272, + 0.03729724511504173, + 0.012880870141088963, + 0.0038928999565541744, + -0.043238162994384766, + 0.039215389639139175, + -0.028878724202513695, + 0.026148032397031784, + 0.002805618569254875, + -0.022178540006279945, + -0.019794180989265442, + -0.014306156896054745, + -0.003306800266727805, + 0.046355146914720535, + 0.020247075706720352, + -0.007592653390020132, + 0.020913098007440567, + 0.01362015400081873, + 0.022671395912766457, + 0.001301240874454379, + -0.016210980713367462, + -0.014212913811206818, + 0.02288452349603176, + -0.05472038686275482, + -0.04566248506307602, + 0.0026224625762552023, + -0.015465036034584045, + -0.05232270434498787, + 0.027919651940464973, + -0.019341284409165382, + 0.022618114948272705, + -0.030637022107839584, + 0.044516924768686295, + -0.029384899884462357, + -0.004618864040821791, + -0.007499410305172205, + 0.009903750382363796, + 0.0016875338042154908, + -0.001666720607317984, + 0.04425051808357239, + 0.013959825970232487, + -0.02781308814883232, + 0.007113117258995771, + 0.006477066315710545, + -0.008818134665489197, + 0.019394567236304283, + 0.02637447975575924, + 0.0006044151377864182, + 0.022538192570209503, + 0.049978308379650116, + 0.01970093697309494, + -0.015318511053919792, + -0.017289936542510986, + -0.004452358465641737, + -0.040893763303756714, + 0.021139545366168022, + 0.002719035604968667, + 0.00826533604413271, + -0.0201005507260561, + 0.0071397582069039345, + -0.013999787159264088, + 0.013640135526657104, + 0.018475456163287163, + 0.0030736925546079874, + 0.022045334801077843, + 0.024016762152314186, + -0.014492643065750599, + 0.004845311865210533, + 0.029011927545070648, + 0.023563865572214127, + 0.020433561876416206, + 0.007672575768083334, + 0.0012371363118290901, + 0.014505963772535324, + 0.0028705557342618704, + 0.013260502368211746, + -0.011915137991309166, + 0.018528738990426064, + -0.01479901373386383, + 0.03442002832889557, + 0.01571812480688095, + 0.02637447975575924, + -0.014466002583503723, + -0.0012013375526294112, + -0.012394673191010952, + 0.005198303610086441, + -0.009743904694914818, + -0.0537613146007061, + -0.005408100318163633, + -0.015544958412647247, + -0.015584919601678848, + -0.004409067332744598, + -0.0002992937224917114, + 0.01828896999359131, + 0.026654209941625595, + 0.06079450994729996, + 0.020340317860245705, + -0.01842217519879341, + 0.016317544505000114, + 0.006080782972276211, + -0.011289076879620552, + 0.007379526272416115, + 0.006686863023787737, + 0.03908218443393707, + 0.016877003014087677, + 0.0038063169922679663, + 0.024349773302674294, + 0.018542058765888214, + -0.035086050629615784, + 0.015957891941070557, + -0.007692556828260422, + -0.026281237602233887, + 0.006770115811377764, + 0.028026215732097626, + -0.02783972956240177, + 0.004855302162468433, + -0.0011155871907249093, + -0.004465679172426462, + 0.014372759498655796, + 0.023204214870929718, + 0.005388119723647833, + 0.008644968271255493, + 0.0007671743514947593, + -0.024336451664566994, + -0.05282888188958168, + -0.002700720215216279, + 0.012494577094912529, + 0.006746805272996426, + 0.009717264212667942, + 0.008784833364188671, + -0.037883345037698746, + -0.011362339369952679, + 0.011302396655082703, + 0.01138231996446848, + -0.004921904299408197, + 0.009717264212667942, + 0.002272800775244832, + 0.007466109003871679, + 0.00987044908106327, + -0.03540574014186859, + -0.01927468366920948, + 0.027160385623574257, + -0.0044590188190341, + -0.008112150244414806, + -0.021352672949433327, + -0.018035881221294403, + 0.010096896439790726, + -0.0061806864105165005, + -0.012015040963888168, + -0.009703943505883217, + 0.0581304207444191, + -0.03303470090031624, + 0.025162318721413612, + 0.015544958412647247, + -0.008152112364768982, + 0.02461618185043335, + -0.014572566375136375, + -0.003363412106409669, + -6.374040708578832e-7, + -0.013320444151759148, + 0.035565584897994995, + 0.003989472985267639, + 0.02328413724899292, + 0.0025675157085061073, + 0.01609109714627266, + -0.014492643065750599, + 0.012541198171675205, + 0.006134064868092537, + 0.0071397582069039345, + 0.023097651079297066, + 0.014279516413807869, + -0.01706348918378353, + -0.01786271668970585, + -0.006946611683815718, + -0.016024494543671608, + 0.005967559292912483, + 0.005438071209937334, + -0.005817703902721405, + 0.002417660551145673, + 0.00479869032278657, + 0.02066000923514366, + -0.010023634880781174, + 0.0023344079963862896, + 0.014612527564167976, + -0.031596094369888306, + -0.003030401188880205, + -0.009504136629402637, + -0.00017098039097618312, + 0.018129125237464905, + -0.00434912508353591, + -0.009564079344272614, + 0.007526051253080368, + 0.026214634999632835, + 0.03767021745443344, + -0.012701043859124184, + -0.001401144196279347, + -0.0035132672637701035, + -0.00043874213588424027, + 0.0024393063504248857, + -0.005781072657555342, + 0.023470623418688774, + 0.03719067946076393, + 0.002409335458651185, + -0.014066389761865139, + -0.00851842388510704, + -0.003000430064275861, + -0.003819637466222048, + 0.007645935285836458, + 0.011775272898375988, + -0.01212160475552082, + -0.03854936733841896, + 0.02011387050151825, + -0.01659727282822132, + -0.021352672949433327, + -0.022258462384343147, + -0.020460203289985657, + -0.005364809185266495, + -0.013760019093751907, + -0.03002428263425827, + 0.0027523369062691927, + -0.009564079344272614, + -0.02815941907465458, + -0.012035021558403969, + 0.010396607220172882, + -0.019794180989265442, + -0.016437428072094917, + 0.022724678739905357, + -0.025402087718248367, + 4.594512574840337e-5, + -0.014172952622175217, + -0.02187217026948929, + -0.024962512776255608, + -0.014466002583503723, + 0.013127298094332218, + -0.009570739232003689, + -0.00705317547544837, + -0.006630251184105873, + -0.010836181230843067, + -0.0049452148377895355, + 0.03697755187749863, + -0.0038262975867837667, + -0.032928138971328735, + -0.009484156034886837, + -0.005031798034906387, + -0.004222580697387457, + -0.02376367338001728, + 0.011948438361287117, + 0.007359545677900314, + -0.015851328149437904, + 0.029251696541905403, + 0.054453976452350616, + 0.031223122030496597, + 0.009977012872695923, + -0.03775013983249664, + -0.02189880982041359, + 0.0037663555704057217, + -0.014266195707023144, + -0.03391385078430176, + -0.01434611901640892, + -0.016770439222455025, + 0.010822861455380917, + 0.01838221400976181, + 0.0027440115809440613, + -0.022684717550873756, + 0.009344291873276234, + 0.027946291491389275, + 0.02151251770555973, + -0.018555378541350365, + 0.01828896999359131, + -0.008212054148316383, + -0.021672362461686134, + -0.002167902421206236, + 0.0015343487029895186, + 0.009097863920032978, + 0.0007292943191714585, + 0.01880846731364727, + -0.015425074845552444, + -0.00987044908106327, + 0.004145988263189793, + -0.03311462327837944, + 0.010663015767931938, + -0.01229477021843195, + -0.02283124253153801, + -0.07038522511720657, + -0.007805780507624149, + -0.0033684074878692627, + 0.020886456593871117, + 0.010389946401119232, + -0.012194867245852947, + 0.0042958431877195835, + 0.01920808106660843, + -0.011455582454800606, + -0.023190893232822418, + 0.027040502056479454, + -0.02144591510295868, + 0.016837041825056076, + 0.008032227866351604, + -0.008005587384104729, + -0.01231475081294775, + 0.0078723831102252, + -0.020273717120289803, + 0.002657428616657853, + 0.011282416060566902, + 0.014692449942231178, + 0.01096272561699152, + 0.03186250478029251, + -0.014625848270952702, + -0.004778709262609482, + 0.02283124253153801, + -0.010436568409204483, + 0.007712537422776222, + -0.005201633553951979, + -0.02233838476240635, + 0.00538145937025547, + 0.012048342265188694, + -0.02372371219098568, + -0.01547835674136877, + -0.01746310293674469, + 0.032528527081012726, + -0.010496510192751884, + -0.010796220041811466, + 0.043664418160915375, + 0.0026324528735131025, + 0.025695137679576874, + -0.006157375406473875, + -0.012641102075576782, + -0.0035698791034519672, + -0.00871823076158762, + -0.007332904729992151, + 0.005408100318163633, + -0.022937804460525513, + -0.0008766517275944352, + 0.015558279119431973, + 0.0015659847995266318, + 0.0017766142264008522, + -0.031382966786623, + -0.007113117258995771, + -0.0066269212402403355, + 0.001788269612006843, + 0.016863683238625526, + -0.028532391414046288, + 0.007299603428691626, + 0.01144226174801588, + 0.027946291491389275, + 0.00850510410964489, + 0.00963068101555109, + -0.005238264799118042, + -0.01695692539215088, + 0.004968525841832161, + 0.003325115889310837, + 0.013999787159264088, + 0.028479110449552536, + -0.007592653390020132, + 0.015092063695192337, + -0.0007983941468410194, + -0.026694171130657196, + 0.016810400411486626, + 0.019327964633703232, + -0.0013819960877299309, + 0.0021912131924182177, + 0.018502097576856613, + 0.00549135310575366, + -0.00569115998223424, + -0.019794180989265442, + 0.006480396259576082, + 0.004815340507775545, + -0.01617101952433586, + -0.0025175639893859625, + 0.005061768926680088, + 0.011562145315110683, + -0.006194006651639938, + 0.014625848270952702, + -0.004978516139090061, + 0.03314126655459404, + 0.009424214251339436, + 0.036471378058195114, + 0.00874487217515707, + -0.009863789193332195, + 0.038256317377090454, + -0.030716944485902786, + 0.041799552738666534, + -0.008551725186407566, + 0.0030470516066998243, + 0.00046455051051452756, + -0.013160599395632744, + 0.017316577956080437, + -0.010856161825358868, + -0.013353745453059673, + -0.018049202859401703, + 0.002717370633035898, + -0.0074794297106564045, + -0.018235689029097557, + -0.023364059627056122, + 0.0021096253767609596, + 0.002559190383180976, + -0.027599960565567017, + 0.022271782159805298, + -0.006297240033745766, + -0.0021262760274112225, + -0.003388388082385063, + -0.006966592278331518, + -0.024789346382021904, + 0.009077883325517178, + -0.003713073907420039, + 0.03087678924202919, + 0.010996026918292046, + -0.020766573026776314, + 0.015425074845552444, + 0.006460415665060282, + -0.010802880860865116, + -0.008904716931283474, + 0.01076957955956459, + 0.031036635860800743, + 0.0018115803832188249, + 0.015078742988407612, + -0.01751638390123844, + 0.00559125654399395, + -0.014039748348295689, + 0.006203996948897839, + 0.04742078110575676, + -0.009124504402279854, + 0.0358852781355381, + -0.033434316515922546, + 0.01746310293674469, + 0.007659255526959896, + -0.0058676558546721935, + 0.004205930512398481, + -0.02277795970439911, + -0.009304330684244633, + -0.013353745453059673, + -0.009703943505883217, + 0.0010689656483009458, + -0.002184552839025855, + -0.012681063264608383, + -0.010349985212087631, + 0.003273499198257923, + 1.788633926480543e-5, + -0.006010850425809622, + -0.041799552738666534, + -0.012414653785526752, + 0.014785693027079105, + -0.010190139524638653, + -0.032421961426734924, + -0.0026940598618239164, + -0.002833924489095807, + 0.010463208891451359, + -0.0030670324340462685, + 0.029891077429056168, + 0.014505963772535324, + -0.018542058765888214, + -0.0013653455534949899, + 0.005158341955393553, + -0.004252552054822445, + 0.013973145745694637, + -0.0015843003056943417, + -0.021246109157800674, + -0.008511763997375965, + -0.005011817440390587, + -0.005744441878050566, + -0.0013262167340144515, + 0.00828531663864851, + 0.01547835674136877, + -0.004545601550489664, + -0.008165432140231133, + 0.024349773302674294, + 0.007133097853511572, + -0.00010739608114818111, + -0.017210014164447784, + 0.004066065885126591, + 0.0021612420678138733, + 0.0023577187675982714, + -0.010183479636907578, + 0.021765606477856636, + 0.020766573026776314, + 0.029251696541905403, + 0.0015976207796484232, + -0.010463208891451359, + -0.0027639921754598618, + -0.010316683910787106, + 0.01832893118262291, + 0.0402810238301754, + -0.026507684960961342, + -0.02016715332865715, + -0.014226234517991543, + -0.01830228976905346, + 0.016797080636024475, + 0.01274766493588686, + -0.00038858235348016024, + 0.020713290199637413, + -0.043184880167245865, + 0.004685466177761555, + 0.0035532284528017044, + -0.019927384331822395, + -0.015171986073255539, + 0.022111937403678894, + 0.009710604324936867, + -0.006260608788579702, + 0.003889569779857993, + 0.0021329361479729414, + 0.014719091355800629, + -0.004548931960016489, + 0.01301407441496849, + -0.011682029813528061, + 0.028292624279856682, + -0.001678375992923975, + 0.0011996725806966424, + -0.01320722047239542, + 0.0020380280911922455, + 0.03982812911272049, + 0.00828531663864851, + -0.02145923674106598, + -0.011542164720594883, + -0.0027823077980428934, + 0.0017849395517259836, + -0.005291546694934368, + -0.008232034742832184, + -0.008358579128980637, + -0.017156733199954033, + -0.00030761901871301234, + 0.04310495778918266, + -0.012760985642671585, + 0.020380279049277306, + -0.0006522855255752802, + -0.012221507728099823, + -0.012208187021315098, + -0.017662908881902695, + -0.0025675157085061073, + 0.010842842049896717, + 0.02508239634335041, + -0.04195940122008324, + -0.016797080636024475, + -0.008271995931863785, + 0.015891289338469505, + 0.005521323997527361, + -0.027653243392705917, + -0.015504997223615646, + 0.023443982005119324, + -0.005025137681514025, + 0.009890429675579071, + 0.0025075736921280622, + -0.0033217857126146555, + 0.017183372750878334, + 0.010736278258264065, + -0.0050817495211958885, + -0.022471589967608452, + 0.002657428616657853, + -0.03849608451128006, + 0.02237834595143795, + -0.011695350520312786, + -0.009730584919452667, + -0.011016007512807846, + 0.027013860642910004, + -0.009943711571395397, + 0.007359545677900314, + 0.009604040533304214, + -0.011082610115408897, + 0.020939739421010017, + 0.0021928781643509865, + 0.01887506991624832, + -0.026054788380861282, + -0.012980773113667965, + 0.003196906764060259, + 0.0032868196722120047, + -0.015345151536166668, + 0.02598818764090538, + -0.032821573317050934, + 0.008132131770253181, + 0.013054035604000092, + 0.002387689659371972, + 0.03220883384346962, + 0.012714364565908909, + 0.010776239447295666, + -0.001411134609952569, + -0.0019014934077858925, + 0.03436674550175667, + 0.018981633707880974, + -0.013074016198515892, + 0.018555378541350365, + -0.01098270621150732, + 0.019954025745391846, + -0.0010531476000323892, + -0.0005594586837105453, + 0.00729294354096055, + 0.018169086426496506, + 0.019514450803399086, + -0.03633817285299301, + -0.006227307952940464, + -0.012288110330700874, + -0.000157555885380134, + 0.016650555655360222, + 0.0017083470011129975, + -0.003136964747682214, + -0.009544098749756813, + -0.01523858867585659, + -0.0003964913485106081, + -0.0005627888021990657, + -0.02062004804611206, + -0.011921797879040241, + 0.026774093508720398, + 0.038282956928014755, + -0.01662391424179077, + -0.0010464873630553484, + -0.025175640359520912, + 0.009117844514548779, + 0.011955099180340767, + 0.0023460632655769587, + 0.016384147107601166, + -0.035645511001348495, + -0.01740982010960579, + 0.013387046754360199, + -0.01831561140716076, + 0.006273929495364428, + 0.008072189055383205, + -0.005231604445725679, + 0.04960533604025841, + 0.007559352088719606, + 0.0223250649869442, + 0.0010414922144263983, + -0.006350521929562092, + -0.0071397582069039345, + 0.023364059627056122, + -0.007399506866931915, + -0.004575572442263365, + 0.007332904729992151, + 0.0033700724598020315, + -0.00661360053345561, + -0.013240521773695946, + 0.008558385074138641, + 0.00806552916765213, + -0.006636911537498236, + 0.02464282140135765, + 0.02598818764090538, + -0.009663982316851616, + 0.015078742988407612, + 0.0157314445823431, + 0.008198733441531658, + 0.004309163894504309, + 0.009983672760426998, + 0.04659491404891014, + 0.009963692165911198, + 0.020460203289985657, + -0.015624881722033024, + -0.02596154622733593, + -0.028052855283021927, + -0.0009540768223814666, + -0.012661082670092583, + 0.026574285700917244, + 0.012168225832283497, + 0.0111625324934721, + 0.012860889546573162, + -0.016317544505000114, + -0.0032501884270459414, + -0.0314362496137619, + 0.0003865010221488774, + -0.018502097576856613, + -0.03434010595083237, + 0.005984209477901459, + -0.01975421980023384, + -0.007439468055963516, + 0.0013903214130550623, + 0.013293803669512272, + 0.0040261042304337025, + -0.01740982010960579, + 0.005627887789160013, + -0.022591473534703255, + 0.016264263540506363, + -0.011129231192171574, + -0.027000540867447853, + -0.007179719395935535, + 0.0016692181816324592, + 0.0024792677722871304, + -0.016424108296632767, + -0.0015110379317775369, + -0.03884241729974747, + -0.02593490481376648, + 0.016437428072094917, + 0.010862822644412518, + 0.018075842410326004, + 0.009031261317431927, + -0.021619081497192383, + 0.013733378611505032, + -0.019794180989265442, + -0.01525190845131874, + -0.009164465591311455, + 0.004898593295365572, + -0.00959071982651949, + 0.03537910059094429, + -0.01653067208826542, + 0.018195727840065956, + 0.026960579678416252, + 0.03932195156812668, + 0.009783866815268993, + -0.01519862748682499, + -0.012061662040650845, + 0.0018881730502471328, + -0.0018698574276641011, + 0.007699216715991497, + -0.008465141989290714, + 0.0004023190413136035, + -1.6260308257187717e-5, + 0.026294557377696037, + 0.002772317500784993, + 0.02648104354739189, + -0.010043615475296974, + 0.003956172149628401, + -0.02861231379210949, + -0.023071009665727615, + -0.019820820540189743, + 0.002938823075965047, + -0.01276764553040266, + -0.012567839585244656, + 0.006840048357844353, + 0.0008437669021077454, + 0.03191578388214111, + -0.012481256388127804, + 0.018475456163287163, + 0.013240521773695946, + 0.04449028521776199, + -0.018595339730381966, + 0.015931252390146255, + -0.027573319151997566, + 0.00695327203720808, + -0.010949404910206795, + -0.013580192811787128, + -0.010716297663748264, + 0.005674509331583977, + -0.035618867725133896, + -0.012581159360706806, + 0.01875518634915352, + 0.011795253492891788, + -0.028745518997311592, + 0.01613105833530426, + 0.02412332408130169, + 0.014039748348295689, + -0.027027182281017303, + 0.01923472248017788, + -0.00854506529867649, + 0.006966592278331518, + 0.014053069055080414, + 0.0029904397670179605, + -0.013760019093751907, + -0.013786659575998783, + 0.01798260025680065, + 0.0026108070742338896, + 0.006840048357844353, + -0.024283170700073242, + 0.010629714466631413, + -0.0001540176454000175, + 0.00828531663864851, + 0.044889897108078, + -0.01434611901640892, + -0.022085295990109444, + -0.03894897922873497, + 0.01122913509607315, + -0.020313678309321404, + -0.004435707814991474, + -0.0015451716026291251, + 0.01617101952433586, + -0.023483943194150925, + -0.017636269330978394, + 0.0014061394613236189, + -0.010463208891451359, + -0.011741971597075462, + 0.003719734027981758, + -0.00915780570358038, + -0.015957891941070557, + 0.02235170640051365, + 0.029864436015486717, + -0.01742314174771309, + 0.027919651940464973, + 0.003093673149123788, + 0.004066065885126591, + 0.034659795463085175, + -0.013706737197935581, + 0.0245495792478323, + -0.03303470090031624, + 0.0038063169922679663, + 0.013087336905300617, + -0.025868302211165428, + 0.00010588712757453322, + -0.01695692539215088, + 0.009204426780343056, + 0.007665915880352259, + 0.005947578232735395, + -0.03697755187749863, + -0.03540574014186859, + 0.000935761199798435, + 0.011721991002559662, + -0.015345151536166668, + -0.013466969132423401, + 0.00915114488452673, + -0.00412933761253953, + -0.012141585350036621, + -0.02020711451768875, + 0.001337039633654058, + -0.014612527564167976, + 0.015078742988407612, + 0.006796756759285927, + -0.012447955086827278, + 0.00035777880111709237, + -0.0027556668501347303, + -0.005108390469104052, + -0.0034533252473920584, + -0.025641854852437973, + -0.004079386126250029, + -0.008152112364768982, + -0.005071759223937988, + 0.0027773126494139433, + -0.005274896044284105, + -0.0022361695300787687, + -0.015611561015248299, + -0.022897843271493912, + 0.015012141317129135, + 0.0047720493748784065, + -0.0016492374707013369, + 0.005744441878050566, + 0.016903644427657127, + 0.025721779093146324, + -0.007239661645144224, + 0.0021645722445100546, + 0.002530884463340044, + -0.029677949845790863, + 0.00032073131296783686, + 0.003906220430508256, + -0.002096304902806878, + -0.022484909743070602, + 0.005441401619464159, + 0.0028106137178838253, + 0.06436438858509064, + 0.0004749571089632809, + 0.006403803825378418, + -0.014878936111927032, + 0.010349985212087631, + -0.013480289839208126, + -0.003593189874663949, + 0.0011347354156896472, + 0.015425074845552444, + -0.0026640889700502157, + -0.000792566454038024, + -0.01074293814599514, + 0.014212913811206818, + 0.009324311278760433, + -0.011755292303860188, + 0.008058869279921055, + 0.012707703746855259, + 0.030610380694270134, + 0.0012204857775941491, + 0.019794180989265442, + 0.011269096285104752, + -0.007526051253080368, + -0.0053281779401004314, + 0.022724678739905357, + -0.015052102506160736, + 0.014226234517991543, + 0.0006277259672060609, + -0.002734021283686161, + 0.013600173406302929, + 0.023417340591549873, + -0.01475905254483223, + -0.004752068314701319, + -0.003796326695010066, + -0.015811366960406303, + 0.00030449702171608806, + 0.008951338939368725, + -0.01926136203110218, + 0.001931464415974915, + -0.003989472985267639, + 0.022631434723734856, + -0.016224300488829613, + -0.009717264212667942, + 0.014186273328959942, + 0.030663663521409035, + -0.0014885596465319395, + -0.007339565083384514, + -0.0016359171131625772, + -0.002912182128056884, + 0.004888602998107672, + 0.009244387969374657, + -0.012820927426218987, + -0.010416587814688683, + 0.021152865141630173, + -0.0023793643340468407, + 0.02821270190179348, + -0.003148620016872883, + 0.01705016940832138, + -0.03316790610551834, + -0.005697819869965315, + -0.0046355146914720535, + -0.014159632846713066, + -0.0005149184144102037, + -0.024083362892270088, + -0.006533678155392408, + 0.0024792677722871304, + -0.021685684099793434, + -0.021299390122294426, + -0.00027327725547365844, + 0.003819637466222048, + -0.005078419577330351, + -0.004951875191181898, + -0.0006218982744030654, + 0.0016700506675988436, + -0.027413474395871162, + 0.0027373512275516987, + 0.01294747181236744, + 0.007985606789588928, + 0.030743585899472237, + 0.021179506555199623, + -0.0005082582356408238, + -0.007079816423356533, + -0.0013853262644261122, + 0.0024293160531669855, + -0.018115803599357605, + -0.0111825130879879, + -0.005428080912679434, + 0.01974089816212654, + -0.018954992294311523, + 0.02007390931248665, + -0.027226988226175308, + -0.014479323290288448, + -0.005894296802580357, + -0.013760019093751907, + -0.0022478250321000814, + 0.006680202670395374, + -0.010170158930122852, + -0.01875518634915352, + 0.006027501076459885, + -0.0055013434030115604, + 0.006370502524077892, + 0.017103450372815132, + 0.005321517586708069, + -0.005524654407054186, + -0.012394673191010952, + -0.001050650025717914, + -0.012374692596495152, + 0.018035881221294403, + 0.006360512226819992, + -0.023883556947112083, + -0.0010997691424563527, + 0.00028618142823688686, + -0.018209047615528107, + -0.011295736767351627, + 0.00424922164529562, + -0.021685684099793434, + 0.018502097576856613, + 0.019993986934423447, + 0.0010956065962091088, + -0.0014735742006450891, + -0.003996133338660002, + -0.0057977233082056046, + 0.010343325324356556, + -0.007912344299256802, + -0.006710174027830362, + 0.009264369495213032, + 0.007792459800839424, + -0.008445161394774914, + 0.0035965200513601303, + -0.024882590398192406, + -0.010256742127239704, + 0.01162208802998066, + 0.014132991433143616, + 0.017689550295472145, + 0.009717264212667942, + 0.029358260333538055, + -0.011102590709924698, + 0.0053281779401004314, + 0.012447955086827278, + 0.017343219369649887, + -0.010323344729840755, + 0.0024726074188947678, + 0.03212891146540642, + 0.0022428298834711313, + 0.00828531663864851, + 0.004778709262609482, + 0.028079496696591377, + -0.013347085565328598, + -0.030663663521409035, + 0.005108390469104052, + -0.0012870879145339131, + 0.015531638637185097, + -0.028052855283021927, + 0.008371898904442787, + -0.01747642271220684, + 0.015118704177439213, + 0.006686863023787737, + -0.0029205074533820152, + 0.03633817285299301, + -0.011608767323195934, + 0.008784833364188671, + -0.009477496147155762, + -0.006047481670975685, + -0.008678269572556019, + 0.004535611253231764, + 0.0044590188190341, + 0.0012571169063448906, + 0.016650555655360222, + 0.01963433437049389, + 0.02193877287209034, + -0.019487809389829636, + -0.013893223367631435, + 0.011828554794192314, + -0.010609733872115612, + -0.0403076633810997, + 0.0036631221882998943, + 0.003053711960092187, + -0.0042292410507798195, + -0.0036231607664376497, + -0.026161352172493935, + 0.024283170700073242, + -0.009297669865190983, + -0.021379312500357628, + 0.0003392550570424646, + 0.0019164789700880647, + 0.007785799913108349, + -0.020313678309321404, + 0.010356645099818707, + -0.009490816853940487, + 0.006024171132594347, + -0.01479901373386383, + -0.0020230424124747515, + 0.013560212217271328, + -0.011975079774856567, + -0.005577936302870512, + -0.008418520912528038, + -0.011335697956383228, + 0.010363305918872356, + 0.01605113595724106, + -0.011528844945132732, + -0.01435943879187107, + 0.006926631089299917, + -0.004728757776319981, + 0.009097863920032978, + -0.00772585766389966, + -0.0003452909004408866, + -0.021286070346832275, + -0.008471802808344364, + -0.007805780507624149, + 0.003186916233971715, + -0.0003517429868225008, + -0.031249763444066048, + -0.028825441375374794, + 0.01964765600860119, + 0.007552692200988531, + -0.0005636212881654501, + -0.015971213579177856, + 0.013133957982063293, + 0.015598240308463573, + 0.01706348918378353, + 0.0074794297106564045, + 0.0039461818523705006, + 0.00965066161006689, + 0.013407027348876, + -0.0157447662204504, + -0.01571812480688095, + 0.0012920830631628633, + 0.011981739662587643, + 0.005508003756403923, + 0.006460415665060282, + -0.0026374480221420527, + 0.03529917821288109, + 0.013520251028239727, + -0.01274766493588686, + 0.017263295128941536, + -0.0045023104175925255, + 0.040973685681819916, + 0.010643035173416138, + -0.012088303454220295, + 0.017622947692871094, + -0.0157447662204504, + -0.005894296802580357, + 0.0005827694549225271, + -0.021712323650717735, + 3.7203586543910205e-5, + 0.01525190845131874, + -0.0008558385306969285, + 0.009244387969374657, + -0.0016359171131625772, + 0.0005407268181443214, + -2.19839366764063e-5, + -0.007086476311087608, + -0.013640135526657104, + -0.006377162877470255, + 0.029864436015486717, + 0.009644001722335815, + 0.026614248752593994, + -0.014132991433143616, + 0.004722097422927618, + -0.005065098870545626, + -0.019168119877576828, + 0.00592093775048852, + 0.021752284839749336, + 0.003646471770480275, + -0.02509571798145771, + -0.013999787159264088, + 0.010389946401119232, + -0.009011280722916126, + 0.0018731874879449606, + 0.0025508650578558445, + 0.009950372390449047, + -0.0056245578452944756, + 0.000737619586288929, + 0.011149211786687374, + 0.01840885356068611, + -0.012854228727519512, + -0.007899023592472076, + 0.010956065729260445, + -0.018102483823895454, + 0.0021612420678138733, + -0.0027839727699756622, + -0.008005587384104729, + -0.007912344299256802, + -0.005511333700269461, + -0.013080676086246967, + 0.010556451976299286, + -0.011915137991309166, + -0.002442636527121067, + 0.014545924961566925, + -0.01479901373386383, + 0.00025537790497764945, + 0.02329745702445507, + -0.02335073985159397, + 0.0032168873585760593, + -0.021832209080457687, + 0.012348052114248276, + -0.004305833484977484, + -0.011828554794192314, + -0.0011297401506453753, + 0.02501579374074936, + 0.00605081208050251, + -0.013380386866629124, + 0.010789560154080391, + 1.381475794914877e-5, + -0.012760985642671585, + 0.003796326695010066, + 0.012561178766191006, + 0.00876485276967287, + -0.0029787844978272915, + -0.000575276673771441, + -0.015891289338469505, + -0.016277583315968513, + -0.007226340938359499, + 0.002657428616657853, + -0.0025991518050432205, + 0.0020546785090118647, + -0.02997099980711937, + -0.0010739607969298959, + 0.019367925822734833, + -0.002404340310022235, + -0.022631434723734856, + 0.0024609521497040987, + 0.004715437535196543, + -0.002299441723152995, + -0.00034986980608664453, + 0.00262579252012074, + 0.016677197068929672, + 0.0051483516581356525, + 0.0011763616930693388, + -0.0016151039162650704, + -0.033381033688783646, + 0.012474596500396729, + -0.012567839585244656, + -0.0027107105124741793, + -0.0006202331860549748, + -0.00559125654399395, + 0.022231820970773697, + -0.013440328650176525, + 0.0036731124855577946, + -0.01318723987787962, + -0.0012196531752124429, + -0.027520038187503815, + 0.0046754758805036545, + -0.012268129736185074, + -0.002569180680438876, + 0.013240521773695946, + 0.0027839727699756622, + -0.007406167220324278, + 0.009524118155241013, + 0.0006089940434321761, + 0.018515417352318764, + 0.018555378541350365, + -0.009484156034886837, + 0.002788968151435256, + -0.006117414217442274, + -0.007459448650479317, + -0.009604040533304214, + 0.028079496696591377, + 0.0223650261759758, + -0.028372546657919884, + -0.0038429482374340296, + -0.01609109714627266, + 0.007186379749327898, + -0.008691590279340744, + -0.0037563652731478214, + -0.0021612420678138733, + 0.002177892718464136, + -0.0006485391641035676, + 0.02100634016096592, + -0.032528527081012726, + 0.015158665366470814, + -0.015305190347135067, + -0.026094751432538033, + -0.01931464485824108, + 0.0021096253767609596, + -0.011668709106743336, + 0.014306156896054745, + 0.0017699541058391333, + -0.005384789779782295, + -0.01322720106691122, + -0.011588786728680134, + 0.018009241670370102, + 0.009184446185827255, + -0.010849501937627792, + -0.012181546539068222, + -0.0037763461004942656, + 0.015438394621014595, + 0.033780645579099655, + 0.046301864087581635, + 0.0070331948809325695, + -0.0223650261759758, + -0.01746310293674469, + -0.0060441517271101475, + -0.0051483516581356525, + 0.0007005720981396735, + -0.0014402730157598853, + -0.003543238155543804, + -0.023071009665727615, + 0.022205181419849396, + -0.009350951761007309, + 0.019141478464007378, + 0.008818134665489197, + 0.004145988263189793, + 0.018528738990426064, + 0.013760019093751907, + 0.025615215301513672, + -0.027187027037143707, + 0.0022095288150012493, + 0.001482732011936605, + -0.00762595422565937, + -0.015584919601678848, + 0.006210657302290201, + 0.016677197068929672, + -0.021565798670053482, + 0.013973145745694637, + 0.01250789687037468, + 0.0028589004650712013, + 0.012048342265188694, + 0.0031652706675231457, + 0.019341284409165382, + -0.005804383661597967, + 0.011102590709924698, + 0.01545171532779932, + 0.011648728512227535, + 0.013586853630840778, + 0.007739178370684385, + -0.00847846269607544, + 0.01163540780544281, + 0.006600280292332172, + -0.003846278414130211, + 0.00023810294806025922, + -0.008365239016711712, + -0.003268504049628973, + -0.017716191709041595, + 0.013020734302699566, + -0.014053069055080414, + -0.004102696664631367, + 0.03042389452457428, + -0.013087336905300617, + 0.023443982005119324, + 0.011568806134164333, + -0.020220434293150902, + -0.011522184126079082, + 0.022098617628216743, + -0.0010015309089794755, + 0.003440004773437977, + -0.0033134606201201677, + -0.0029038568027317524, + 0.022671395912766457, + 0.003097003325819969, + -0.009111183695495129, + -0.009910410270094872, + 0.01874186471104622, + -0.005294876638799906, + -0.001931464415974915, + 0.006080782972276211, + -0.021738965064287186, + 0.003509937087073922, + -0.0001721251173876226, + 0.022951126098632812, + -0.028079496696591377, + -0.010469869710505009, + -0.0037397148553282022, + -0.023057689890265465, + -0.0024076702538877726, + -0.0008479295647703111, + -0.008138791657984257, + 0.008538404479622841, + 0.022618114948272705, + -0.005564615596085787, + 0.006237298250198364, + -0.01299409382045269, + 0.006683533079922199, + 0.0024393063504248857, + -0.006343861576169729, + 0.016397466883063316, + 0.015278549864888191, + -0.007765819318592548, + 0.00987044908106327, + 0.009677303023636341, + -0.008658288978040218, + -0.026148032397031784, + 0.006913310848176479, + -0.0025075736921280622, + 0.006620260886847973, + 0.013340424746274948, + 0.006906650494784117, + 0.007419487461447716, + 0.0017366529209539294, + 0.0012762651313096285, + -0.00023019392392598093, + -0.0048819431103765965, + -0.00024559570010751486, + 3.192223812220618e-5, + -0.017210014164447784, + 0.007113117258995771, + -0.005784403067082167, + -0.0037530353292822838, + 0.0076126339845359325, + -0.0005744441878050566, + 0.010190139524638653, + -0.01742314174771309, + 0.0008874746272340417, + 0.009737244807183743, + 0.029411541298031807, + -0.0013603504048660398, + 0.006643571425229311, + -0.004342464730143547, + 0.018195727840065956, + 0.013506930321455002, + 0.0065836296416819096, + 0.009703943505883217, + -0.0018781826365739107, + -0.020313678309321404, + 0.023044368252158165, + -0.01473241113126278, + 0.01323386188596487, + 0.003383392933756113, + -0.011981739662587643, + 0.011548825539648533, + -0.002036362886428833, + -0.011821893975138664, + -0.013640135526657104, + -0.015092063695192337, + 0.0031286394223570824, + -0.0014735742006450891, + 0.013027394190430641, + 0.028106138110160828, + 0.030077563598752022, + 0.012414653785526752, + -0.0047021168284118176, + -0.01658395305275917, + 0.009817167185246944, + -0.0014885596465319395, + 0.006740144919604063, + 0.01694360561668873, + 0.01610441692173481, + 0.0048120105639100075, + 0.006786766462028027, + 0.036018483340740204, + 0.01746310293674469, + -0.003206897061318159, + 0.013360405340790749, + -8.153569069691002e-5, + -0.013506930321455002, + 0.005025137681514025, + -0.02783972956240177, + 0.005374799482524395, + 0.014439362101256847, + 0.0044889897108078, + 0.0002622462634462863, + -0.0028638956137001514, + -0.0007509400602430105, + 0.036098405718803406, + 0.01567816361784935, + 0.011075949296355247, + -0.0156515222042799, + -0.00850510410964489, + 0.0018365562427788973, + -0.02015383169054985, + 0.013173919171094894, + 0.006646901834756136, + -0.005764422472566366, + -0.007885702885687351, + 0.0005865158163942397, + -0.009777205996215343, + -0.0078723831102252, + 0.03540574014186859, + 9.792608034331352e-5, + 0.0031652706675231457, + 0.01964765600860119, + -0.0156515222042799, + -0.005621227435767651, + -0.017702870070934296, + 0.008971319533884525, + -0.026041468605399132, + -0.0021379312966018915, + -0.01878182590007782, + -0.0013628479791805148, + 0.013173919171094894, + -0.006397143471986055, + 0.006873349193483591, + -0.0076126339845359325, + -0.014279516413807869, + -0.0067135039716959, + -0.013999787159264088, + 0.015438394621014595, + 0.011668709106743336, + -0.011728650890290737, + 0.019567733630537987, + -0.02512235753238201, + 0.03311462327837944, + -0.022165220230817795, + -0.01658395305275917, + 0.005661189090460539, + -0.0003001262666657567, + -0.00031677683000452816, + -0.0040927063673734665, + 0.007998926565051079, + -0.01839553378522396, + -0.021259428933262825, + 0.002585831331089139, + -0.008458482101559639, + 0.0034866263158619404, + -0.009004620835185051, + -0.007432808168232441, + 0.0016084436792880297, + -0.0022861212491989136, + -9.74057475104928e-5, + 0.017183372750878334, + -0.004309163894504309, + -0.007839081808924675, + -0.011016007512807846, + 0.004831991158425808, + 0.0014319478068500757, + 0.0017433131579309702, + -0.022578153759241104, + 0.010876142419874668, + 0.008864755742251873, + 0.0403343066573143, + -0.024789346382021904, + -0.020859815180301666, + -0.007399506866931915, + -0.00561123713850975, + 0.015345151536166668, + 0.012108284048736095, + 0.011488883756101131, + -0.004032764583826065, + 0.020433561876416206, + 0.006673542782664299, + -0.014892256818711758, + -0.005957568995654583, + 0.004375766031444073, + -0.0061107538640499115, + -0.009943711571395397, + 0.0015068752691149712, + 0.005657858680933714, + -0.02728027105331421, + 0.0032884846441447735, + 0.01654399186372757, + -0.02193877287209034, + 0.008724890649318695, + -0.005984209477901459, + -0.005271566100418568, + -0.009863789193332195, + 0.014572566375136375, + 0.011562145315110683, + 0.01279428694397211, + 0.010396607220172882, + -0.007379526272416115, + 0.0031452898401767015, + -0.0018898380221799016, + -1.5089565749804024e-5, + -0.014812334440648556, + 0.008338598534464836, + -0.010869482532143593, + -0.004169299267232418, + 0.00023248337674885988, + -0.022058656439185143, + 0.015798047184944153, + -0.021685684099793434, + -0.01963433437049389, + -0.04515630751848221, + 0.010063596069812775, + 0.0156515222042799, + 0.008624987676739693, + -0.03212891146540642, + 0.0023077670484781265, + -0.0010081911459565163, + -0.014878936111927032, + -0.019474489614367485, + 0.0046355146914720535, + 0.012827588245272636, + -0.02144591510295868, + 0.015305190347135067, + -0.012487916275858879, + -0.015438394621014595, + -0.0025192289613187313, + -0.009697283618152142, + 0.008325277827680111, + -0.0404142290353775, + -0.008858095854520798, + 0.0246295016258955, + 0.0037830062210559845, + -0.016024494543671608, + -1.257897474715719e-5, + 0.015624881722033024, + -0.002565850503742695, + -0.003118649125099182, + -0.005984209477901459, + -0.01026340201497078, + -0.04153314605355263, + -0.014053069055080414, + -0.0045655821450054646, + -0.03820303454995155, + 0.02642776258289814, + 0.011455582454800606, + -0.02052680402994156, + -0.010083576664328575, + -0.01962101459503174, + 0.012281449511647224, + -0.014426041394472122, + 0.00039336938061751425, + 0.004768718965351582, + -0.021219467744231224, + 0.012414653785526752, + 0.000904957705643028, + 0.013720057904720306, + 0.0016492374707013369, + -0.005604576785117388, + 0.013320444151759148, + 0.00963068101555109, + 0.009863789193332195, + 0.008311957120895386, + -0.014692449942231178, + -0.025841662660241127, + -0.02548201009631157, + 0.004522291012108326, + -0.012827588245272636, + -0.013147278688848019, + 0.026654209941625595, + 0.001296245725825429, + 0.0016608928563073277, + 0.013107317499816418, + -0.001105596893467009, + -0.015824688598513603, + -0.015171986073255539, + 0.012547858990728855, + 0.026694171130657196, + -0.0068933297879993916, + 0.013113977387547493, + 0.009770546108484268, + 0.013720057904720306, + -0.013240521773695946, + 0.005814373958855867, + -0.003683102782815695, + -0.007326244376599789, + -0.005980879534035921, + -7.409496902255341e-5, + 0.0005702815251424909, + 0.012214847840368748, + -0.01922140084207058, + -0.013313784264028072, + -0.019501131027936935, + 0.010916104540228844, + 0.009444194845855236, + -0.0055979168973863125, + -0.006140724755823612, + 0.0019381246529519558, + -0.02063336782157421, + -0.010036954656243324, + -0.006010850425809622, + -0.014505963772535324, + 0.022684717550873756, + -0.024776026606559753, + 0.008331937715411186, + 0.001926469267345965, + 0.017769472673535347, + -0.01747642271220684, + 0.00850510410964489, + -0.007739178370684385, + 0.01882178708910942, + -0.0010273392545059323, + -0.01185519527643919, + 0.013067356310784817, + -0.024855948984622955, + 0.014146312139928341, + 0.007912344299256802, + -0.01098270621150732, + -0.0018315610941499472, + 0.006740144919604063, + -0.005344828125089407, + -0.024456335231661797, + -0.018035881221294403, + -0.020713290199637413, + -0.00965066161006689, + -0.023377379402518272, + 0.005021807737648487, + -0.0039162104949355125, + 0.005298206582665443, + 0.00981050729751587, + -0.005404770374298096, + -0.0005927597521804273, + -0.011715331114828587, + -0.0041626389138400555, + -0.01886175014078617, + 0.013919864781200886, + 0.005221614148467779, + 0.020819853991270065, + 0.016903644427657127, + 0.0020946399308741093, + 0.0068000867031514645, + 0.008778172545135021, + -0.01693028397858143, + -0.001372838276438415, + 0.015305190347135067, + 0.0089779794216156, + 0.005984209477901459, + -0.02145923674106598, + -0.018235689029097557, + -0.011761952191591263, + 0.0072463215328752995, + -0.003070362377911806, + -0.016690516844391823, + -0.002800623420625925, + -0.004785369616001844, + 0.02469610422849655, + -0.003882909659296274, + 0.02100634016096592, + 0.013946505263447762, + -0.0005706977681256831, + -0.003713073907420039, + 0.002272800775244832, + -0.0178360752761364, + -0.018155766651034355, + 0.007852401584386826, + -0.02144591510295868, + 0.008138791657984257, + -0.004179289564490318, + 0.006586959585547447, + 0.011608767323195934, + 0.0027423466090112925, + 0.01619766093790531, + 0.010303364135324955, + 0.00098404788877815, + -0.018022561445832253, + 0.0018582020420581102, + 0.004205930512398481, + -0.008458482101559639, + -0.009291009977459908, + -0.022125259041786194, + -0.0007480261847376823, + -0.005877646151930094, + 0.007193040102720261, + 0.018142445012927055, + 0.003440004773437977, + -0.019021594896912575, + 0.00297545432113111, + 0.0006622758228331804, + 0.013173919171094894, + 0.012807607650756836, + 0.01545171532779932, + -0.014093030244112015, + 0.004322484135627747, + 0.01229477021843195, + -0.000312822317937389, + 0.007299603428691626, + -0.02324417605996132, + 0.0031236442737281322, + -0.016317544505000114, + -0.02600150741636753, + 0.01697024703025818, + 0.025735098868608475, + 0.006630251184105873, + 0.009937051683664322, + -0.011775272898375988, + 0.0009524117922410369, + 0.007952305488288403, + 0.009996993467211723, + 0.022484909743070602, + -0.018715225160121918, + -0.010889463126659393, + 0.030663663521409035, + 0.008078849874436855, + 0.003926200792193413, + 0.0010681331623345613, + -0.010663015767931938, + -0.019168119877576828, + 0.007978945970535278, + -0.0009515792480669916, + -0.0016525676473975182, + -0.009584059938788414, + -0.0003721399116329849, + -0.0201804731041193, + 0.006979912985116243, + -0.00022228491434361786, + 0.021645722910761833, + 0.0052582453936338425, + 0.007426147814840078, + -0.0059742191806435585, + 0.02280460111796856, + -0.005960898939520121, + 0.017130091786384583, + 0.008118811063468456, + 0.012527878396213055, + -0.012414653785526752, + -0.0015318511286750436, + 0.012021700851619244, + -0.01830228976905346, + 0.0062439581379294395, + 0.025721779093146324, + 0.006317220628261566, + 0.011968418955802917, + 0.02554861269891262, + -0.009291009977459908, + -0.015984533354640007, + -0.003295144997537136, + -0.0010639704996719956, + 0.0007484424859285355, + 0.006873349193483591, + -0.0013736708788201213, + 0.00851842388510704, + 0.017170052975416183, + -0.018062522634863853, + -0.0112224742770195, + 0.0032285426277667284, + -0.007046515122056007, + -0.04177291318774223, + -0.006303900387138128, + -0.013367066159844398, + -0.0018165756482630968, + -0.009244387969374657, + 0.0025458699092268944, + 0.0033217857126146555, + 0.001771619077771902, + 0.014412720687687397, + -0.00032676715636625886, + 0.016250941902399063, + -0.02279127947986126, + 0.0018082503229379654, + -0.03940187394618988, + -0.015877969563007355, + 0.02147255651652813, + 0.0054880231618881226, + 0.013093996793031693, + -0.010343325324356556, + -0.006250618491321802, + 0.00538145937025547, + -0.011169192381203175, + -0.01788935624063015, + -0.01876850612461567, + 0.013986466452479362, + -0.008944678120315075, + -0.0016084436792880297, + 0.0008741541532799602, + -0.0061107538640499115, + -0.02055344544351101, + -0.001976420870050788, + -0.02377699315547943, + 0.0033967134077101946, + 0.003796326695010066, + 0.024376412853598595, + 0.015371792949736118, + -0.013606834225356579, + 0.006919970735907555, + -0.017822755500674248, + 0.005677839275449514, + -0.004788699559867382, + -0.006840048357844353, + -0.009537437930703163, + 0.007912344299256802, + -0.011808574199676514, + 0.0042991735972464085, + 0.013160599395632744, + 0.006427114363759756, + 0.01050317008048296, + -0.0034699756652116776, + -0.00423923134803772, + -0.008858095854520798, + -0.027413474395871162, + -0.010409926995635033, + 0.00582103431224823, + -0.021139545366168022, + 0.01098936703056097, + -0.02192545123398304, + 0.0038396180607378483, + -0.010103557258844376, + 0.004375766031444073, + -0.006533678155392408, + -0.02235170640051365, + -0.020846495404839516, + 0.011628747917711735, + -0.01048318948596716, + -0.0023410681169480085, + 0.030290691182017326, + 0.012401334010064602, + 0.015571599826216698, + -0.019021594896912575, + -0.007905683480203152, + 0.0017233324469998479, + 0.03226211667060852, + -0.013773339800536633, + -0.01570480316877365, + -0.001153050921857357, + -0.008778172545135021, + 0.009111183695495129, + 0.005687829572707415, + 0.0038262975867837667, + 0.0033084654714912176, + 0.0075193908996880054, + -0.005331507883965969, + -0.006866689305752516, + -0.03090343065559864, + -0.001986411167308688, + 0.0008346090908162296, + -0.012254809029400349, + -0.02199205383658409, + 0.017716191709041595, + 0.007978945970535278, + -0.0075859930366277695, + 0.006220647599548101, + 0.011209153570234776, + 0.008125470951199532, + -0.019088197499513626, + -0.01563820242881775, + -0.005418090615421534, + 0.003746374975889921, + 0.007213020697236061, + -0.013893223367631435, + -0.01662391424179077, + 0.03625825047492981, + 0.023936837911605835, + 0.006417124066501856, + -0.02291116490960121, + -0.009530778042972088, + 0.004971855785697699, + 0.03537910059094429, + 0.030690303072333336, + 0.034659795463085175, + 0.008838115260004997, + 0.004086046479642391, + 0.00018378050299361348, + 0.020726611837744713, + 0.010103557258844376, + -0.016397466883063316, + 0.0005557122640311718, + 0.013253842480480671, + 0.000899962498806417, + -0.014252875931560993, + 0.0005756929749622941, + -0.024283170700073242, + 0.009171126410365105, + -0.006034161429852247, + -0.011682029813528061, + -0.006580299697816372, + -0.004792029969394207, + -0.004921904299408197, + -0.018448814749717712, + 0.03300806134939194, + 0.007899023592472076, + 0.007459448650479317, + 0.009244387969374657, + 0.015425074845552444, + 0.008405200205743313, + 0.025748418644070625, + -0.024043401703238487, + -0.0021962083410471678, + -0.0028405848424881697, + -0.0010081911459565163, + 0.007852401584386826, + 0.005661189090460539, + -0.03884241729974747, + -0.02504243515431881, + 0.007233001291751862, + -0.006993233226239681, + 0.00804554857313633, + 0.002817274071276188, + -0.0059775495901703835, + 0.004518960602581501, + 0.006959932390600443, + 0.008991300128400326, + 0.005504673812538385, + 0.013493610545992851, + -0.007126437965780497, + -0.02096637897193432, + -0.006846708245575428, + -0.023483943194150925, + -0.012654421851038933, + -0.013407027348876, + 0.009091203100979328, + -0.004848641809076071, + -0.012427974492311478, + 0.022098617628216743, + -0.004395746625959873, + 0.002917177276685834, + -0.015611561015248299, + -0.018542058765888214, + 0.008551725186407566, + 0.03002428263425827, + 0.010103557258844376, + 0.023071009665727615, + 0.010603073984384537, + -0.008078849874436855, + -0.010150178335607052, + -0.01052981149405241, + -0.015784727409482002, + -0.006077452562749386, + 0.013367066159844398, + -0.0008566710748709738, + -0.008032227866351604, + -0.01048985030502081, + -0.009251048788428307, + -0.01410635095089674, + 0.003929531201720238, + 0.01693028397858143, + 0.01794263906776905, + -0.0061507150530815125, + 0.002449296647682786, + 0.0013711733045056462, + -0.0025708458852022886, + 0.006650231778621674, + -0.0003053295658901334, + 0.000383170903660357, + -0.0031452898401767015, + 0.002532549435272813, + -0.010463208891451359, + 0.016850361600518227, + 0.006080782972276211, + 0.010443228296935558, + -0.0013770009391009808, + -0.018915031105279922, + -0.004558922257274389, + 0.016490710899233818, + -0.014505963772535324, + 0.012541198171675205, + 0.016703836619853973, + 0.0036997534334659576, + -0.0028106137178838253, + 0.011195833794772625, + 0.007639274932444096, + 0.00850510410964489, + -0.01603781431913376, + -0.0008774842717684805, + 0.008105490356683731, + 0.0020163822919130325, + -0.028052855283021927, + 0.010643035173416138, + -0.0022977767512202263, + -0.01918143965303898, + -0.002729026135057211, + 0.008818134665489197, + 0.020446881651878357, + 1.7548123651067726e-5, + 0.01052315067499876, + 0.013433667831122875, + 0.015052102506160736, + 0.006873349193483591, + 0.008578366599977016, + -0.0014261200558394194, + 0.012487916275858879, + -0.017329897731542587, + -0.0033167905639857054, + 0.03489956259727478, + 0.020699970424175262, + 0.001160543761216104, + 0.016304224729537964, + -0.016650555655360222, + -0.010796220041811466, + 0.0008516759262420237, + 0.005344828125089407, + -0.009091203100979328, + -0.012800946831703186, + 0.0017682890174910426, + 0.008684929460287094, + -0.02421656809747219, + -0.006134064868092537, + 0.008565045893192291, + -0.003206897061318159, + 0.0013237191596999764, + -0.03170265629887581, + 0.0008291976409964263, + 0.008951338939368725, + 0.003120314097031951, + -0.01277430634945631, + 0.013367066159844398, + 0.001337039633654058, + 0.02775980532169342, + -0.028932005167007446, + 0.002569180680438876, + 0.0015942907193675637, + -0.013893223367631435, + -0.014652488753199577, + -0.00849844329059124, + -0.010476529598236084, + 0.0008088007452897727, + 0.005744441878050566, + -0.006939951330423355, + 0.008451822213828564, + 0.009031261317431927, + -0.01140230055898428, + -0.004602213390171528, + -0.010822861455380917, + -0.02096637897193432, + -0.018715225160121918, + -0.017649589106440544, + 0.02197873406112194, + 0.006650231778621674, + -0.01744978129863739, + -0.009903750382363796, + 0.012208187021315098, + 0.008271995931863785, + 0.01931464485824108, + 0.002882211236283183, + -0.0268540158867836, + 0.008112150244414806, + -0.006154045462608337, + 0.0025675157085061073, + -0.0048120105639100075, + 0.006500376854091883, + -0.00560124684125185, + 0.004232570994645357, + -0.034313466399908066, + -0.0001956440246431157, + 0.0019464499782770872, + -0.008118811063468456, + -0.02502911537885666, + -0.014505963772535324, + 0.006530347745865583, + -0.028505751863121986, + -0.010709636844694614, + 0.016810400411486626, + 0.01410635095089674, + 0.015931252390146255, + -0.024749385192990303, + -0.0015118704177439213, + -0.005880976095795631, + 0.010936085134744644, + 0.0035498985089361668, + -0.002654098439961672, + 0.0493655651807785, + -0.0007576002972200513, + 0.011142551898956299, + 0.027546679601073265, + -0.011035988107323647, + -0.007805780507624149, + 0.028425827622413635, + -0.0071397582069039345, + 0.013153938576579094, + -0.019447848200798035, + -0.0015559943858534098, + 0.006217317655682564, + 0.003822967642918229, + 0.0089579988270998, + -0.017276616767048836, + 0.002084649633616209, + -0.017103450372815132, + 0.0201405119150877, + -0.017796114087104797, + 0.03039725497364998, + -0.004339134786278009, + 0.006979912985116243, + -0.0223650261759758, + -0.003856268711388111, + 0.005814373958855867, + 0.0023510584142059088, + -0.007665915880352259, + -0.0023627139162272215, + 0.011608767323195934, + 0.003649801714345813, + 0.002326082671061158, + -0.014306156896054745, + 0.026161352172493935, + -0.00803888775408268, + -0.012481256388127804, + 0.007179719395935535, + 0.026507684960961342, + -0.016757119446992874, + -0.020686650648713112, + -0.0010847836965695024, + 0.014332798309624195, + 0.011528844945132732, + -0.009584059938788414, + -0.0077191973105072975, + 0.021778926253318787, + 0.013946505263447762, + 0.014505963772535324, + -0.003330111037939787, + -0.015078742988407612, + -0.019327964633703232, + -0.006157375406473875, + -0.011155872605741024, + -0.016370825469493866, + 0.008924697525799274, + 0.007552692200988531, + -0.02193877287209034, + -0.0032585137523710728, + -0.03039725497364998, + -0.019541092216968536, + 6.887866675242549e-6, + 0.0011788593837991357, + 0.006210657302290201, + -0.005168332252651453, + 0.0023377379402518272, + -0.010629714466631413, + -0.022085295990109444, + -0.002404340310022235, + 0.016290903091430664, + 0.036524657160043716, + 0.014852295629680157, + 0.022658076137304306, + -0.009330971166491508, + 0.0007484424859285355, + -0.02376367338001728, + -0.012654421851038933, + -0.015931252390146255, + -0.024989154189825058, + -0.020753253251314163, + 0.012201527133584023, + -0.011508864350616932, + 0.01072961837053299, + 0.013127298094332218, + -0.019034914672374725, + 0.003373402636498213, + 0.009517457336187363, + -0.02506907656788826, + -0.019447848200798035, + 0.017689550295472145, + -0.002805618569254875, + 0.009957032278180122, + -0.0024909230414777994, + -0.028452469035983086, + 0.003115318948403001, + 0.007566012442111969, + 0.0017066819127649069, + 0.003136964747682214, + 0.013733378611505032, + -0.0018015900859609246, + 0.021592440083622932, + 0.0021812226623296738, + -0.021219467744231224, + 0.014532605186104774, + -0.0030137505382299423, + 0.0029887747950851917, + -0.0045023104175925255, + 0.014412720687687397, + 0.014612527564167976, + -0.005724460817873478, + -0.03340767323970795, + -0.0005232436815276742, + 0.0017682890174910426, + -0.004155978560447693, + -0.006220647599548101, + 0.005451391916722059, + 0.0014702440239489079, + 0.01185519527643919, + -0.00040606543188914657, + 0.004508970305323601, + -0.00019283423898741603, + -0.008112150244414806, + -0.015078742988407612, + 0.013420348055660725, + -0.011515524238348007, + 0.0013495275052264333, + 0.02153915911912918, + -0.03093007206916809, + -0.017276616767048836, + 0.013280482962727547, + 0.00436910567805171, + -0.00854506529867649, + 0.014013107866048813, + 0.022165220230817795, + -0.008531744591891766, + 0.015225267969071865, + -0.007839081808924675, + 0.01031002402305603, + -0.003609840525314212, + 0.002177892718464136, + 0.030130844563245773, + -0.002795628271996975, + -0.0145858870819211, + -0.018675263971090317, + -0.008291976526379585, + -0.021805567666888237, + -0.024776026606559753, + -0.02637447975575924, + -0.013680096715688705, + 0.008418520912528038, + 0.008345258422195911, + 0.0008154609822668135, + -0.0033817277289927006, + -0.017556345090270042, + 0.004209260456264019, + -0.010083576664328575, + -0.002117950702086091, + 0.007599313743412495, + 0.02372371219098568, + 0.007472769357264042, + -0.024815987795591354, + -0.0009232733282260597, + 4.420202094479464e-5, + 0.02015383169054985, + 0.011169192381203175, + -0.013373726047575474, + -0.006390483118593693, + -0.013060695491731167, + 0.019874103367328644, + 0.010409926995635033, + 0.011349018663167953, + 0.00014954280050005764, + 0.013067356310784817, + 0.0027107105124741793, + -0.019114837050437927, + -0.020313678309321404, + -0.005954238586127758, + -0.008318617939949036, + -0.0032235474791377783, + 0.020446881651878357, + -0.005484693218022585, + 0.013147278688848019, + 0.000823786249384284, + 0.007992266677320004, + 0.03412697836756706, + 0.007566012442111969, + 0.011522184126079082, + -0.0005706977681256831, + 0.024376412853598595, + 0.008338598534464836, + -0.009910410270094872, + 0.014572566375136375, + 0.01831561140716076, + -0.010789560154080391, + 0.012374692596495152, + 0.024083362892270088, + 0.0074794297106564045, + 0.023617148399353027, + 0.012501236982643604, + 0.0006277259672060609, + 0.006067462265491486, + -0.015798047184944153, + -0.0009815501980483532, + -0.0014069719472900033, + 0.006959932390600443, + 0.0006044151377864182, + -0.0010872812708839774, + -0.003270169021561742, + 0.02054012566804886, + -0.0011297401506453753, + -0.014665809459984303, + 0.0492323637008667, + 0.013919864781200886, + 0.0004173045454081148, + -0.003506606910377741, + 0.006014180835336447, + -0.018635300919413567, + 0.004399076569825411, + 0.02505575679242611, + 0.009950372390449047, + -0.015971213579177856, + -0.016663875430822372, + -0.002157911891117692, + -0.0011039318051189184, + -0.006397143471986055, + 0.01607777550816536, + -0.002972124144434929, + 0.006487056612968445, + -0.007659255526959896, + 0.020380279049277306, + 0.015265229158103466, + -0.012061662040650845, + -0.0002676576841622591, + 0.014066389761865139, + 0.008365239016711712, + -0.01387990266084671, + -0.0028255991637706757, + 0.004352455027401447, + 0.0006959931924939156, + 0.011668709106743336, + -0.0006123241619206965, + 0.01318723987787962, + -0.006057471968233585, + 0.008098830468952656, + 0.006134064868092537, + 0.012834248133003712, + -0.011448921635746956, + 0.0037164040841162205, + -0.009430875070393085, + -0.006090773269534111, + 0.007745838258415461, + 0.026134712621569633, + 0.026747452095150948, + -0.0057044802233576775, + 0.003300140146166086, + 0.023457301780581474, + -0.0008204561308957636, + 0.00026828207774087787, + -0.0003960750764235854, + 0.021152865141630173, + 0.02373703196644783, + 0.018062522634863853, + -0.011322378180921078, + -0.017210014164447784, + -0.015291870571672916, + 0.008997960016131401, + -0.006184016354382038, + -0.011595446616411209, + -0.04606209695339203, + 0.015957891941070557, + 0.023404020816087723, + 0.0016109412536025047, + -0.012627781368792057, + 0.01227478962391615 + ], + "6aa17a74-053a-443e-b412-66412367f29f": [ + -0.018792787566781044, + -0.0213716309517622, + -0.005061514675617218, + 0.013927179388701916, + 0.010016171261668205, + -0.02608763799071312, + 0.02125765010714531, + 0.024791091680526733, + -0.00541058462113142, + 0.034223105758428574, + -0.005417708307504654, + 0.010044666938483715, + 0.014582576230168343, + -0.016270935535430908, + 0.008078476414084435, + 0.04163193702697754, + -0.033824168145656586, + 0.022853396832942963, + -0.030091257765889168, + -0.026329848915338516, + 0.06610958278179169, + -0.014618195593357086, + -0.05100696161389351, + 0.013029571622610092, + 0.002521852497011423, + 0.008705377578735352, + 0.002172782551497221, + 0.0216993298381567, + -0.02075897715985775, + -0.007807769346982241, + 0.030490193516016006, + -0.004356250632554293, + 0.021514108404517174, + -0.015045628882944584, + -0.010992142371833324, + -0.044709451496601105, + -0.010358117520809174, + 0.0020588005427271128, + -0.021058181300759315, + -0.003515633288770914, + -0.026059143245220184, + 0.029236391186714172, + 0.024605872109532356, + -0.0341661162674427, + -0.031174086034297943, + -0.009695596992969513, + 0.00018165886285714805, + -0.024377906695008278, + 0.009389270097017288, + -0.05682004243135452, + 0.026016399264335632, + 0.014034037478268147, + 0.038383450359106064, + 0.03789902478456497, + 0.03772805258631706, + -0.008484537713229656, + 0.0032360211480408907, + 0.030062761157751083, + 0.014176515862345695, + -0.06867417693138123, + 0.002596653299406171, + -0.010963646695017815, + 0.00039337159250862896, + -0.006927970331162214, + 0.0033945273607969284, + 0.011811388656497002, + 0.0044737947173416615, + 0.030176743865013123, + -0.018009161576628685, + 0.02420693449676037, + 0.04827139154076576, + 0.04171742498874664, + -0.024962065741419792, + 0.020944198593497276, + -0.01098501868546009, + -0.0019964666571468115, + 0.04191689193248749, + -0.0076367962174117565, + 0.011248601600527763, + 0.0009697377681732178, + -0.008370555937290192, + -0.02369401603937149, + 0.03456505015492439, + 0.01174014899879694, + 0.05966959521174431, + 0.021841807290911674, + -0.048641834408044815, + -0.05656358599662781, + 0.010571833699941635, + -0.012466784566640854, + 0.022397469729185104, + 0.023152600973844528, + 0.012951208278536797, + 0.02020331472158432, + -0.029065418988466263, + 0.017011819407343864, + 0.04034963995218277, + -0.014582576230168343, + 0.019134733825922012, + -0.020231811329722404, + 0.03128806874155998, + 0.005720473360270262, + 0.006447108928114176, + 0.0034426136408001184, + -0.01847933791577816, + -0.028566747903823853, + 0.011697405949234962, + 0.005339345894753933, + -0.0014372422592714429, + 0.013186296448111534, + -0.011034885421395302, + -0.006222706753760576, + 0.01959066279232502, + -0.01875004544854164, + -0.04023565724492073, + -0.03883937746286392, + -0.031943466514348984, + -0.02541799284517765, + -0.013164924457669258, + 0.001079267356544733, + 0.0563926100730896, + 0.020730482414364815, + 0.015800759196281433, + 0.016356421634554863, + -0.016270935535430908, + 0.024320917204022408, + -0.005139877554029226, + -0.019462432712316513, + 0.02225499227643013, + 0.02957833744585514, + -0.012559395283460617, + -0.00904732383787632, + 0.004808616824448109, + -0.0040214285254478455, + -0.006984961684793234, + 0.015914741903543472, + 0.003472890006378293, + 0.05966959521174431, + -0.011868379078805447, + 0.028595242649316788, + -0.04972466081380844, + -0.02430666796863079, + -0.03450806066393852, + 0.01235280279070139, + 0.005560186225920916, + 0.010358117520809174, + -0.04690360650420189, + 0.05434093624353409, + -0.03436558321118355, + 0.03975123539566994, + -0.08275095373392105, + -0.006571776699274778, + 0.013378641568124294, + -0.00030432312632910907, + -0.0031220391392707825, + -0.014831911772489548, + 0.021001189947128296, + 0.034052133560180664, + 0.01251665223389864, + 0.03131656348705292, + -0.006301069166511297, + -0.04624820873141289, + 0.010123029351234436, + -0.01439735572785139, + 0.05482535809278488, + 0.004598462488502264, + 0.06576763093471527, + 0.01897800900042057, + -0.04311370477080345, + 0.016285182908177376, + 0.01759597659111023, + -0.03222842141985893, + 0.011476566083729267, + 0.023679766803979874, + -0.025218524038791656, + -0.011027761735022068, + 0.04211636260151863, + 0.0483853742480278, + 0.03080364502966404, + -0.029435859993100166, + -0.04502290487289429, + -0.017496241256594658, + 0.01287996955215931, + 0.007651044055819511, + -0.0034978236071765423, + 0.004324193578213453, + 0.0322854109108448, + -0.0026874826289713383, + 0.013784701935946941, + 0.005845141131430864, + 0.011148867197334766, + -0.04556431621313095, + -0.021556852385401726, + 0.01721128635108471, + -0.02530401200056076, + -0.027555156499147415, + -0.0039038846734911203, + -0.002479109214618802, + 0.006329564843326807, + 0.027327192947268486, + -0.029891788959503174, + -0.04824289679527283, + -0.024605872109532356, + 0.05944162979722023, + -0.046932101249694824, + 0.019049247726798058, + -0.0477299764752388, + 0.0032360211480408907, + 0.039323803037405014, + -0.024677110835909843, + 0.03772805258631706, + -0.041033532470464706, + -0.01976163499057293, + -0.0033108219504356384, + -0.0003014290414284915, + -0.008320688270032406, + -0.03402363881468773, + -0.0003907001228071749, + -0.012359926477074623, + -0.010258383117616177, + -0.01140532735735178, + 0.0009091848041862249, + 0.013713463209569454, + -0.0026821396313607693, + -0.06337401270866394, + -0.009496128186583519, + -0.02397897094488144, + 0.027954094111919403, + -0.03225691616535187, + 0.01543031819164753, + 0.03134505823254585, + 0.023551538586616516, + 0.007886132225394249, + -0.021613843739032745, + -0.000650499016046524, + 0.02464861422777176, + 0.05049404129385948, + 0.003985809162259102, + -0.012815854512155056, + 0.009367898106575012, + 0.0015725959092378616, + 0.01531633548438549, + -0.01941968873143196, + -0.008078476414084435, + -0.020744729787111282, + 0.01780969277024269, + 0.003989371005445719, + 0.0428287498652935, + -0.003690168261528015, + -0.013257535174489021, + 0.021955789998173714, + 0.01206784788519144, + 0.030718158930540085, + -0.00022796406119596213, + -0.030262229964137077, + 0.0683322325348854, + 0.0341661162674427, + -0.04171742498874664, + -0.019505174830555916, + -0.017838187515735626, + 0.020673491060733795, + 0.0004973356844857335, + -0.0024666425306349993, + 0.007113191299140453, + 0.024491889402270317, + -0.037984512746334076, + 0.024848083034157753, + -0.04861333593726158, + 0.030119752511382103, + 0.011526432819664478, + 0.038326457142829895, + 0.02097269333899021, + 0.021685082465410233, + -0.00649341382086277, + 0.028937188908457756, + -0.029293382540345192, + 0.019533671438694, + 0.01137683168053627, + -0.007220049388706684, + 0.005716911517083645, + -0.008377679623663425, + -0.013549614697694778, + 0.020117828622460365, + -0.000933227885980159, + 0.04556431621313095, + -0.02064499631524086, + -0.019889865070581436, + 0.002922570565715432, + -0.03761406987905502, + -0.006343812681734562, + 0.021129420027136803, + 0.006240516435354948, + 0.02075897715985775, + 0.019077742472290993, + 0.003789902664721012, + 0.042486801743507385, + -0.04562130942940712, + -0.021400127559900284, + -0.023964721709489822, + -0.00137668929528445, + -0.04168893024325371, + -0.04690360650420189, + 0.02680002525448799, + -0.023380564525723457, + 0.02459162287414074, + -0.011063381098210812, + 0.04926873371005058, + 0.00787900760769844, + -0.022839149460196495, + 0.02957833744585514, + 0.04926873371005058, + -0.04328467696905136, + -0.021628091111779213, + -0.04901227355003357, + 0.014390232041478157, + -0.01642766036093235, + 0.005934189539402723, + 0.0031006676144897938, + -0.008783740922808647, + -0.031715501099824905, + 0.019177477806806564, + -0.012274440377950668, + -0.047872453927993774, + 0.026458078995347023, + 0.04633369669318199, + -0.026942502707242966, + 0.01365647278726101, + 0.012602138333022594, + -0.041147515177726746, + 0.0020160572603344917, + -0.028153562918305397, + -0.009360774420201778, + -0.05727597326040268, + 0.013920055702328682, + -0.024620119482278824, + -0.05664907023310661, + -0.04906926676630974, + -0.01809464767575264, + 0.01389868464320898, + 0.00790750328451395, + 0.015245096758008003, + 0.0031398488208651543, + -0.00835630763322115, + -0.016997570171952248, + 0.011134619824588299, + -0.007034828420728445, + 0.007522814441472292, + 0.019533671438694, + -0.011697405949234962, + -0.00025044879294000566, + 0.000914527743589133, + -0.015416069887578487, + 0.013129305094480515, + 0.009147058241069317, + 0.04832838103175163, + 0.010778426192700863, + -0.0005026785656809807, + -0.012751740403473377, + 0.009275288321077824, + 0.01648465171456337, + -0.020844465121626854, + -0.02219800092279911, + -0.0073732128366827965, + 0.003195058787241578, + -0.031601518392562866, + -0.0009439137065783143, + -0.020217563956975937, + -0.01725403033196926, + 0.03237089887261391, + 0.006963589694350958, + -0.0007155044004321098, + 0.00138470355886966, + -0.011982360854744911, + -0.04302821680903435, + -0.017781198024749756, + -0.03670221567153931, + 0.026486575603485107, + 0.0066323294304311275, + -0.03741460293531418, + 0.0167126152664423, + 0.014497090131044388, + -0.00954599492251873, + 0.03445107117295265, + 0.020117828622460365, + 0.02781161665916443, + -0.005485385190695524, + 0.0007466713432222605, + -0.009033076465129852, + -0.02298162691295147, + 0.0183083638548851, + -0.03818397969007492, + -0.018522080034017563, + -0.0213716309517622, + 0.012887093238532543, + -0.022511452436447144, + 0.0050116474740207195, + -0.034992482513189316, + 0.006913722492754459, + 0.019790129736065865, + -0.001145163201726973, + -0.018408099189400673, + -0.04701758921146393, + -0.02248295582830906, + -0.01389868464320898, + 0.025560470297932625, + -0.0520612932741642, + -0.011704529635608196, + -0.02935037389397621, + 0.03274133801460266, + -0.01825137250125408, + -0.03673071041703224, + 0.007893255911767483, + 0.010436479933559895, + 0.037927523255348206, + 0.03222842141985893, + 0.016997570171952248, + -0.013535366393625736, + 0.040663089603185654, + -0.02896568365395069, + -0.01676960662007332, + 0.06115135923027992, + 0.03362470120191574, + 0.01174014899879694, + 0.006012552417814732, + 0.004879856016486883, + 0.031715501099824905, + -0.016826597973704338, + 0.011049133725464344, + -0.006664386950433254, + -0.012573642656207085, + -0.030290724709630013, + 0.0421733520925045, + -0.0027462546713650227, + -0.015145362354815006, + 0.006692882627248764, + -0.041660431772470474, + 0.010229887440800667, + -0.020231811329722404, + 0.01775270141661167, + 0.019234467297792435, + -0.039380792528390884, + 0.0027266640681773424, + -0.006525471340864897, + -0.0031897160224616528, + -0.021001189947128296, + -0.011604796163737774, + -0.03447956591844559, + 0.018778540194034576, + 0.02030305005609989, + -0.017182791605591774, + 0.019505174830555916, + 0.027783120051026344, + -0.054426420480012894, + -0.0013864845968782902, + -0.007301974110305309, + -0.008199582807719707, + -0.003957313951104879, + -0.0009465851471759379, + 0.021157914772629738, + -0.04374060407280922, + -0.03673071041703224, + -0.02503330446779728, + 0.024335164576768875, + 0.021271897479891777, + 0.03191496804356575, + -0.03157302364706993, + 0.00832781195640564, + 0.003157658502459526, + 0.006625205744057894, + 0.019177477806806564, + -0.027726130560040474, + -0.02081596851348877, + -0.009325155057013035, + 0.010343869216740131, + 0.0008370555588044226, + 0.00283708400093019, + -0.005225363653153181, + 0.012708996422588825, + -0.0013018884928897023, + -0.03314027562737465, + 0.008783740922808647, + 0.003535224124789238, + 0.020388536155223846, + -0.0025236334186047316, + 0.020189067348837852, + 0.019533671438694, + -0.00859851948916912, + -0.00809984840452671, + 0.04673263430595398, + -0.027341440320014954, + 0.0075584338046610355, + 0.010279755108058453, + 0.03590434044599533, + -0.005905694328248501, + -0.024890827015042305, + -0.03881088271737099, + -0.01836535520851612, + -0.03279833123087883, + -0.019462432712316513, + 0.0036403012927621603, + -0.0035245381295681, + -0.008961837738752365, + -0.013642224483191967, + 0.02236897498369217, + -0.014440098777413368, + 0.02774037793278694, + -0.011084753088653088, + 0.03470752760767937, + -0.02625861018896103, + -0.002808588556945324, + -0.025517728179693222, + -0.011868379078805447, + -0.006464918609708548, + 0.0056634824723005295, + -0.004427489824593067, + 0.03695867583155632, + -0.010094533674418926, + -0.011811388656497002, + 0.03046169877052307, + 0.006030362099409103, + -0.010735683143138885, + -0.004267202224582434, + -0.018279869109392166, + -0.01715429686009884, + -0.01098501868546009, + -0.012616386637091637, + -0.01406965684145689, + -0.02581693045794964, + 0.01725403033196926, + -0.0008731202105991542, + -0.019490927457809448, + 0.025617461651563644, + -0.013863065280020237, + 0.013977047055959702, + 0.029051171615719795, + 0.004644767846912146, + 0.004434613510966301, + 0.021186411380767822, + 0.02935037389397621, + 0.016684120520949364, + -0.10577532649040222, + 0.023936226963996887, + -0.01882128417491913, + -0.01780969277024269, + 0.007786397822201252, + 0.0060268002562224865, + -0.004612710326910019, + 0.01203935220837593, + 0.0010258383117616177, + 0.035391420125961304, + -0.044196534901857376, + 0.024734102189540863, + -0.004010742995887995, + 0.004961780272424221, + -0.008342060260474682, + -0.02313835360109806, + 0.03638876602053642, + -0.025019057095050812, + -0.015330583788454533, + -0.012972580268979073, + 0.008206706494092941, + 0.021713577210903168, + -0.010728558525443077, + -0.018721548840403557, + -0.0052752308547496796, + -0.009204049594700336, + -0.03097461722791195, + 0.01698332279920578, + 0.013556738384068012, + 0.047473516315221786, + 0.03445107117295265, + 0.014404479414224625, + 0.0173680130392313, + 0.0014550519408658147, + -0.013392888940870762, + 0.020174819976091385, + 0.0038148362655192614, + -0.03479301556944847, + -0.023551538586616516, + -0.007978742010891438, + 0.013806073926389217, + -0.016270935535430908, + -0.011099000461399555, + -0.005820207763463259, + -0.017111552879214287, + -0.014347488060593605, + -0.02070198766887188, + -0.002317040925845504, + 0.0027462546713650227, + 0.013414260931313038, + 0.000890929892193526, + 0.0340806283056736, + -0.012602138333022594, + 0.023665519431233406, + -0.022668177261948586, + 0.035106465220451355, + 0.03553389757871628, + 0.038981854915618896, + 0.016285182908177376, + 0.012381298467516899, + -0.009553119540214539, + 0.007529938127845526, + 0.01304381899535656, + 0.020174819976091385, + -0.018963761627674103, + 0.02786860801279545, + -0.016840845346450806, + 0.010030418634414673, + -0.007177306339144707, + 0.0272986963391304, + -0.024876579642295837, + -0.019077742472290993, + 0.042201846837997437, + -0.016228191554546356, + 0.013022447004914284, + -0.0025521288625895977, + -0.0013357269344851375, + 0.020801721140742302, + 0.008313564583659172, + -0.003218211466446519, + 0.02020331472158432, + -0.020217563956975937, + 0.026059143245220184, + -0.00787900760769844, + 0.011747273616492748, + 0.0384974330663681, + -0.02846701256930828, + 0.006586024537682533, + -0.01792367547750473, + -0.03063267096877098, + -0.003186153946444392, + -0.013143553398549557, + 0.01203935220837593, + -0.0049261609092354774, + -0.004263640381395817, + 0.021898798644542694, + 0.03353921324014664, + 0.03430859372019768, + -0.011697405949234962, + -0.03675920516252518, + -0.0213716309517622, + -0.0019964666571468115, + 0.008178210817277431, + 0.10133002698421478, + -0.004423927515745163, + 0.017681462690234184, + -0.00484423665329814, + 0.021229153499007225, + 0.05961260199546814, + 0.02781161665916443, + -0.0004577091021928936, + -0.007893255911767483, + 0.01560129038989544, + 0.02087295986711979, + -0.002845988841727376, + -0.034052133560180664, + -0.035106465220451355, + -0.003364250995218754, + 0.012345679104328156, + 0.01937694661319256, + 0.027327192947268486, + -0.004812179133296013, + 0.028994180262088776, + 0.023608528077602386, + 0.02081596851348877, + -0.013692092150449753, + 0.036103807389736176, + 0.012509528547525406, + 0.024491889402270317, + 0.019533671438694, + 0.0011790016433224082, + -0.016527395695447922, + 0.024235429242253304, + 0.022326231002807617, + -0.0013419603928923607, + -0.00632600300014019, + -0.001169206341728568, + 0.01429049763828516, + 0.008555776439607143, + -0.01943393610417843, + -0.01763872057199478, + -0.029093913733959198, + -0.02785435877740383, + 0.030376212671399117, + 0.015131114982068539, + 0.0066465772688388824, + -0.0036972921807318926, + 0.022995876148343086, + -0.028566747903823853, + -0.01287996955215931, + -0.007487194612622261, + 0.02026030607521534, + -0.01287996955215931, + 0.03638876602053642, + 0.00045459240209311247, + -0.0011887969449162483, + 0.001187906484119594, + -0.009866570122539997, + 0.005987618584185839, + -0.001611777232028544, + -0.02808232419192791, + -0.020117828622460365, + -0.001757816644385457, + -0.008612767793238163, + -0.0002370915317442268, + 0.015359079465270042, + -0.024349411949515343, + -0.006447108928114176, + -0.01853632740676403, + -0.0069208466447889805, + 0.001790764625184238, + 0.0003232459130231291, + 0.0051897442899644375, + 0.002475547371432185, + -0.006090914830565453, + -0.009282412007451057, + 0.005353593733161688, + 0.014988637529313564, + 0.024121448397636414, + 0.030775148421525955, + -0.024876579642295837, + 0.0266860444098711, + -0.01675535924732685, + -0.028880197554826736, + -0.016584385186433792, + 0.0034105561207979918, + -0.009489004500210285, + 0.0009911094093695283, + 0.0013624414568766952, + -0.008242325857281685, + 0.060581449419260025, + -0.01124147791415453, + 0.005446203984320164, + 0.009417765773832798, + -0.010301126167178154, + -0.01365647278726101, + -0.02863798663020134, + 0.025987904518842697, + 0.005132753401994705, + -0.0017498022643849254, + 0.018507832661271095, + -0.02158534713089466, + 0.0037115400191396475, + -0.012894217856228352, + 0.0021051056683063507, + -0.00707757193595171, + 0.038041502237319946, + 0.035875845700502396, + -0.005955561064183712, + -0.0074586994014680386, + 0.008555776439607143, + -0.03445107117295265, + 0.02054526098072529, + 0.008584272116422653, + -0.01637066900730133, + 0.03148753568530083, + 0.026928255334496498, + 0.011953866109251976, + -0.039551764726638794, + 0.05511031299829483, + -0.023964721709489822, + 0.02774037793278694, + 0.0003303698031231761, + -0.04106202721595764, + -0.0002949730260297656, + 0.006411489564925432, + -0.004224459175020456, + 0.039437782019376755, + 0.02142862230539322, + -0.008142591454088688, + 0.015772264450788498, + 0.018294116482138634, + 0.03658823296427727, + 0.008968961425125599, + -0.023494547232985497, + -0.013414260931313038, + 0.01820863038301468, + -0.042372822761535645, + -0.04621971398591995, + -0.004744502250105143, + -0.014554080553352833, + -0.04473794996738434, + 0.007772149983793497, + -0.02204127609729767, + 0.024947818368673325, + -0.03935229778289795, + 0.04579228162765503, + -0.018336860463023186, + -0.011519309133291245, + 0.0031986208632588387, + 0.01869305409491062, + 0.0018931702943518758, + -0.005670606158673763, + 0.030376212671399117, + 0.018465088680386543, + -0.020459774881601334, + 0.017524737864732742, + -0.006347374524921179, + -0.007430203724652529, + 0.020602252334356308, + 0.04408255219459534, + -0.0003501830797176808, + 0.04314219951629639, + 0.040207162499427795, + 0.00632600300014019, + -0.019462432712316513, + 0.003789902664721012, + -0.013214792124927044, + -0.021442869678139687, + -0.0036456440575420856, + 0.012630634009838104, + 0.01709730550646782, + -0.0015565671492367983, + 0.029051171615719795, + -0.011747273616492748, + 0.01792367547750473, + 0.012915588915348053, + 0.013200543820858002, + 0.038981854915618896, + 0.02685701660811901, + 0.00764391990378499, + 0.014226382598280907, + 0.017239782959222794, + -0.011177362874150276, + 0.02114366739988327, + -0.012260192073881626, + 0.00862701516598463, + -0.018123142421245575, + 0.004039238207042217, + -0.004630520008504391, + -0.024890827015042305, + 0.0033998703584074974, + -0.0059270658530294895, + 0.028424270451068878, + 0.0010712529765442014, + 0.022297734394669533, + -0.024905074387788773, + 0.018393849954009056, + -0.0235372893512249, + 0.012523775920271873, + -0.021499861031770706, + -0.04374060407280922, + -0.005218239966779947, + -0.0055530620738863945, + -0.02204127609729767, + 0.005036581307649612, + -0.002343755681067705, + 0.0056421104818582535, + 0.03251337632536888, + 0.04507989436388016, + 0.03650274500250816, + -0.022725168615579605, + 0.018165886402130127, + 0.019163228571414948, + -0.02630135416984558, + 0.007893255911767483, + 0.008968961425125599, + 0.04627670720219612, + 0.0005863841506652534, + 0.0016937018372118473, + 0.001700825640000403, + 0.019191725179553032, + -0.0371866375207901, + 0.014240629971027374, + 5.8382400311529636e-5, + -0.04644767940044403, + 0.005862950813025236, + 0.02141437493264675, + -0.017781198024749756, + 0.014119524508714676, + -0.011533557437360287, + -0.03852592781186104, + 0.013891560025513172, + 0.02940736524760723, + 0.002126477425917983, + -0.003447956405580044, + -0.02407870441675186, + -0.004976028110831976, + -0.04855634644627571, + 0.00859851948916912, + -0.016527395695447922, + 0.008541529066860676, + -0.006436422932893038, + 0.0028192743193358183, + -0.02869497612118721, + 0.0047587500885128975, + 0.01098501868546009, + -0.0018023408483713865, + 0.000523159746080637, + 0.01418363954871893, + 0.02246870845556259, + 0.0216993298381567, + 0.010400860570371151, + -0.04416803643107414, + -0.004630520008504391, + 0.01842234656214714, + -0.014226382598280907, + -0.005510319024324417, + -0.028538251295685768, + -0.022682424634695053, + 0.003358907997608185, + -0.022212248295545578, + -0.020659243687987328, + 0.015017133206129074, + 0.04422502964735031, + -0.0241926871240139, + 0.014575452543795109, + 0.027897102758288383, + -0.004160344135016203, + 0.02231198363006115, + 0.008933342061936855, + 0.010557585395872593, + -0.0016954827588051558, + -0.03157302364706993, + 0.040378134697675705, + 0.017182791605591774, + 0.014461470767855644, + 0.011262849904596806, + 0.003718663938343525, + -0.022881893441081047, + -0.00011487252049846575, + 0.017068808898329735, + 0.011091876775026321, + 0.028338782489299774, + 0.016356421634554863, + -0.006240516435354948, + -0.01087816059589386, + -0.00042164447950199246, + -0.010001923888921738, + 0.016669873148202896, + -0.008954713121056557, + 0.011611919850111008, + 0.01154068112373352, + -7.886354433139786e-5, + 0.005314412526786327, + -0.011490813456475735, + -0.002190592233091593, + 0.011818512342870235, + -0.03966574743390083, + -0.006293945480138063, + -0.0021318201906979084, + 0.006543281022459269, + 0.022511452436447144, + -0.006974275689572096, + -0.010536214336752892, + -0.002502261893823743, + 0.012808730825781822, + 0.028823206201195717, + -0.00521467812359333, + -0.003203963628038764, + -0.011291345581412315, + 0.010016171261668205, + 0.005610053427517414, + 0.010486346669495106, + 0.012025104835629463, + 0.03883937746286392, + 2.263778878841549e-5, + 0.006122972350567579, + 0.009360774420201778, + -0.003120258217677474, + 0.004644767846912146, + -0.010165772400796413, + 0.027982588857412338, + -0.0004131848691031337, + -0.05434093624353409, + 0.025631709024310112, + -0.010308249853551388, + -0.010771302506327629, + -0.005129191558808088, + -0.011590547859668732, + -0.01619969680905342, + -0.02131463959813118, + -0.00912568625062704, + 0.011034885421395302, + -0.025375250726938248, + -0.02031729742884636, + -0.013371516950428486, + 0.006486290134489536, + -0.015344831161201, + -0.009816702455282211, + 0.027882855385541916, + -0.024762596935033798, + -0.005649234633892775, + -0.013314526528120041, + -0.009310907684266567, + -0.03533443063497543, + -0.0016643158160150051, + 0.008391926996409893, + -0.021229153499007225, + 0.01018714439123869, + 0.012395545840263367, + -0.030347716063261032, + -0.007943122647702694, + 0.024449145421385765, + -0.005820207763463259, + -0.013891560025513172, + -0.031145591288805008, + 0.00907581951469183, + -0.0020997626706957817, + -0.019604910165071487, + 0.012438289821147919, + -0.0014212134992703795, + -0.0408625602722168, + 0.03875389322638512, + 0.030661167576909065, + 0.035932835191488266, + 0.014304745011031628, + -0.014546956866979599, + -0.020060837268829346, + 0.03214293345808983, + -0.0064577944576740265, + -0.03807000070810318, + -0.009916436858475208, + -0.015088371932506561, + 0.011811388656497002, + 0.012737492099404335, + 0.002771188272163272, + -0.015829255804419518, + 0.010536214336752892, + 0.033995140343904495, + 0.004783683456480503, + -0.0024915761314332485, + 0.022938884794712067, + -0.014190763235092163, + -0.005709787365049124, + 0.004267202224582434, + 0.0027640643529593945, + 0.016498899087309837, + 0.018778540194034576, + -0.0010917341569438577, + -0.017068808898329735, + 0.0016954827588051558, + 0.007786397822201252, + -0.01897800900042057, + 0.008940465748310089, + -0.015259345062077045, + -0.019861368462443352, + -0.11420999467372894, + -0.013884436339139938, + -0.00023419746139552444, + 0.023181095719337463, + 0.014831911772489548, + -0.016954828053712845, + 0.00799299031496048, + 0.030689662322402, + -0.01045785192400217, + -0.019191725179553032, + 0.016612881794571877, + -0.014176515862345695, + 0.02714197151362896, + 0.009887941181659698, + -0.0179806649684906, + -0.014489966444671154, + 0.004203087650239468, + -0.012281564064323902, + 0.008220953866839409, + 0.008897722698748112, + 0.00937502272427082, + 0.014347488060593605, + 0.030832139775156975, + -0.015344831161201, + -0.011355459690093994, + 0.027455423027276993, + -0.009218296967446804, + 0.008740996941924095, + 0.002733787754550576, + -0.027882855385541916, + 0.00016629800666123629, + 0.007323345635086298, + -0.011448070406913757, + -0.0131791727617383, + 0.0051006958819925785, + 0.01304381899535656, + 0.0030240858905017376, + -0.017453499138355255, + 0.030376212671399117, + -0.013969923369586468, + 0.01859331876039505, + -0.01937694661319256, + -0.0204740222543478, + 0.007579805329442024, + 0.0011059818789362907, + -0.011633290909230709, + 0.013813197612762451, + -0.012416917830705643, + -0.0060944766737520695, + 0.005335784051567316, + 0.0012235258473083377, + 0.003171906340867281, + -0.023608528077602386, + -0.02208401821553707, + 0.012402670457959175, + -0.001244007027707994, + 0.015230849385261536, + -0.016014475375413895, + 0.017011819407343864, + 0.0019857806619256735, + 0.053799521178007126, + 0.018123142421245575, + 0.00957449059933424, + 0.004406117834150791, + -0.01229581143707037, + 0.0017079495592042804, + 0.0018575509311631322, + 0.02453463338315487, + 0.034052133560180664, + 0.006593148224055767, + 0.002940380247309804, + -0.013086562044918537, + -0.006169277708977461, + 0.028239049017429352, + 0.014383107423782349, + -0.0046483296900987625, + 0.003341098316013813, + 0.020103581249713898, + -0.011804264038801193, + -0.004972466267645359, + -0.020288802683353424, + 0.011205858550965786, + 0.008584272116422653, + -0.0119324941188097, + -0.0008085600566118956, + -0.010856788605451584, + 0.003661672817543149, + -0.01137683168053627, + -0.0021656586322933435, + -0.001135367900133133, + 0.027512412518262863, + 0.016228191554546356, + 0.03453655540943146, + 0.010856788605451584, + -0.008213830180466175, + 0.02064499631524086, + -0.0102156400680542, + 0.04251530021429062, + -0.019519424065947533, + 0.005813083611428738, + -0.0034853569231927395, + -0.0266860444098711, + 0.0015725959092378616, + -0.007715159095823765, + -0.008933342061936855, + -0.011191611178219318, + 0.008285068906843662, + 0.01376333087682724, + -0.015074123628437519, + -0.02102968469262123, + -0.006147905718535185, + 0.02614462934434414, + -0.019519424065947533, + 0.0005293930880725384, + -0.014675186946988106, + -0.0025948721449822187, + -0.011747273616492748, + -0.018237125128507614, + -0.016897836700081825, + -0.005122067406773567, + 0.008156838826835155, + 0.01847933791577816, + 0.017439251765608788, + -0.03442257270216942, + 0.004783683456480503, + 0.011070504784584045, + -0.01892101764678955, + -0.01174014899879694, + -0.00030432312632910907, + 0.03670221567153931, + -0.013143553398549557, + 0.008299317210912704, + -0.016969075426459312, + 0.012936960905790329, + -0.022397469729185104, + 0.003123820060864091, + 0.044652462005615234, + -0.006650139112025499, + 0.026985246688127518, + -0.03419461101293564, + 0.008320688270032406, + -0.004228021018207073, + 0.008178210817277431, + 0.002935037249699235, + -0.016470404341816902, + -0.004833550658077002, + -0.0052004302851855755, + -0.006361622363328934, + 0.002032086020335555, + -0.0020979817491024733, + -0.00796449463814497, + -0.011676034890115261, + 0.014169391244649887, + -0.006126534193754196, + -0.01451846119016409, + -0.025888169184327126, + -0.0055067571811378, + -0.0020623623859137297, + -0.011027761735022068, + -0.026557814329862595, + -0.009303783066570759, + -0.004851360339671373, + -0.006418613251298666, + -0.008228078484535217, + 0.015487308613955975, + 0.005980494897812605, + -0.010016171261668205, + -0.005403460934758186, + -0.006774807348847389, + -0.00429925974458456, + 0.016555890440940857, + -0.0004612710326910019, + -0.02330932579934597, + -0.02081596851348877, + -0.002530757337808609, + -0.004929722752422094, + -0.011505061760544777, + -0.004691073205322027, + 0.017966417595744133, + -0.010315374471247196, + -0.0020516766235232353, + 0.034935493022203445, + -0.0017916550859808922, + -0.006828236393630505, + -0.014283373951911926, + 0.007209363393485546, + 0.001494233263656497, + 0.004292136058211327, + -0.007814893499016762, + 0.0019109799759462476, + 0.018949512392282486, + 0.01412664819508791, + 0.001819260069169104, + 0.005720473360270262, + -0.0006055295816622674, + -0.009474756196141243, + 0.020687738433480263, + 0.04901227355003357, + -0.020616499707102776, + -0.020231811329722404, + -0.01931995525956154, + -0.004391870461404324, + 0.0182656217366457, + 0.00570266367867589, + -0.002317040925845504, + 0.008926218375563622, + -0.03302629292011261, + 0.008584272116422653, + 0.007159496657550335, + -0.01776694878935814, + -0.0011042009573429823, + 0.015017133206129074, + 0.015031380578875542, + -0.007957370951771736, + -0.016057219356298447, + 0.011177362874150276, + 0.011141743510961533, + -0.013328773900866508, + 0.0102370111271739, + 0.0012938742293044925, + 0.024563128128647804, + -0.004666139371693134, + 0.0006255654734559357, + -0.023565785959362984, + 0.007387460675090551, + 0.028125066310167313, + 0.001259145326912403, + -0.014988637529313564, + -0.011312716640532017, + 0.009068695828318596, + -0.004958218429237604, + -0.010329621843993664, + -0.013713463209569454, + 0.005171934608370066, + -0.01307231467217207, + -0.01129846926778555, + 0.032712843269109726, + -0.0013134648324921727, + 0.019405441358685493, + -0.006867417600005865, + -0.006746311672031879, + -0.014226382598280907, + -0.013756206259131432, + -0.011896874755620956, + 0.011284220963716507, + 0.01564403437077999, + -0.03248487785458565, + -0.005179058760404587, + -0.006212020758539438, + 0.015943236649036407, + 0.009916436858475208, + -0.02003234252333641, + -0.01621394418179989, + 0.017681462690234184, + 0.008249449543654919, + 0.004666139371693134, + 0.0040285526774823666, + 0.0018468651687726378, + 0.014461470767855644, + -0.001587734092026949, + 0.0005476480582728982, + -0.015145362354815006, + 0.01903500035405159, + -0.026044894009828568, + 0.009289535693824291, + -0.0025289764162153006, + -0.012936960905790329, + 0.008427546359598637, + 0.004943970590829849, + -0.006678634788841009, + 0.008976085111498833, + 0.01389868464320898, + -0.008263697847723961, + 0.016342174261808395, + 0.004634081851691008, + 0.017382260411977768, + -0.006650139112025499, + -0.008049980737268925, + -0.0069315326400101185, + -0.001291202730499208, + -0.018165886402130127, + 0.01179714035242796, + -0.028538251295685768, + 0.003063267096877098, + 0.012274440377950668, + 0.022340478375554085, + 0.022126762196421623, + 0.010536214336752892, + 0.022938884794712067, + -0.017011819407343864, + -0.01575801521539688, + 0.023822244256734848, + 0.01903500035405159, + -0.01637066900730133, + 0.0039323801174759865, + -0.005567309912294149, + 0.012245944701135159, + -0.00946763250976801, + 0.0064257369376719, + -0.0029528471641242504, + -0.007665291894227266, + 0.023836493492126465, + -0.024905074387788773, + -0.00041674679960124195, + -0.016399165615439415, + -0.0001359102170681581, + 0.012644882313907146, + -0.003971561323851347, + 0.002074829302728176, + -0.0038148362655192614, + -0.011198734864592552, + 0.008705377578735352, + -0.01726827770471573, + -0.019177477806806564, + -0.012409794144332409, + 0.023793749511241913, + 0.03533443063497543, + -0.00868400651961565, + 0.0010988580761477351, + -0.02848125994205475, + -0.009481880813837051, + 0.005517442710697651, + 0.008790864609181881, + 0.014140896499156952, + -0.04362662509083748, + -0.003496042685583234, + 0.0136279771104455, + -0.012801607139408588, + -0.003585091093555093, + -0.017581729218363762, + -0.012331430800259113, + 0.04194538667798042, + -0.022340478375554085, + 0.02302437089383602, + -0.0019163229735568166, + -0.018579071387648582, + -0.024007465690374374, + 0.02414994314312935, + -0.005407022777944803, + -0.007544185966253281, + 0.017182791605591774, + -0.006055295467376709, + -0.003022304968908429, + -0.008498785085976124, + 0.0026518632657825947, + 0.011148867197334766, + -0.002233335515484214, + 0.022226495668292046, + 0.019676148891448975, + -0.009097191505134106, + 0.018051903694868088, + 0.0074586994014680386, + 0.009624358266592026, + -0.004723130725324154, + 0.010493471287190914, + 0.03519195318222046, + 0.006272573955357075, + 0.009944932535290718, + -0.010842541232705116, + -0.030775148421525955, + -0.014012666419148445, + -0.0047480640932917595, + -0.02469135820865631, + 0.034593548625707626, + 0.016441907733678818, + -0.009417765773832798, + 0.0057418448850512505, + -0.011497938074171543, + -0.000886032241396606, + -0.018522080034017563, + 0.014646691270172596, + -0.009845198132097721, + -0.030176743865013123, + -0.004171030130237341, + -0.024349411949515343, + -0.012481032870709896, + 0.009667101316154003, + -0.0044702328741550446, + 0.0021318201906979084, + -0.006664386950433254, + 0.01071431115269661, + 0.009040200151503086, + -0.012637757696211338, + -0.002352660521864891, + -0.01340713631361723, + 0.0007074900204315782, + 0.0018878274131566286, + 0.004320631269365549, + -0.02890869416296482, + 0.0016741111176088452, + -0.02681427262723446, + -0.023295078426599503, + 0.02470560558140278, + -0.0002600215084385127, + 0.019861368462443352, + 0.00432775542140007, + -0.004138972610235214, + 0.015544299967586994, + -0.025232773274183273, + -0.006856731604784727, + -0.017453499138355255, + 0.0001785421627573669, + -0.011134619824588299, + 0.03080364502966404, + -0.010386613197624683, + 0.008570023812353611, + 0.039266809821128845, + 0.02407870441675186, + 0.0049261609092354774, + -0.000683446938637644, + -0.01476067304611206, + 0.0035601574927568436, + 0.005296602845191956, + -0.002601996064186096, + -0.008391926996409893, + -0.007280602585524321, + 0.008797988295555115, + 0.023822244256734848, + 0.002115791430696845, + 0.0026002151425927877, + -0.025275515392422676, + 0.010728558525443077, + -0.014632443897426128, + -0.03835495561361313, + -0.0023971847258508205, + 0.016228191554546356, + -0.02342330850660801, + -0.029435859993100166, + 0.010614576749503613, + 0.023337820544838905, + 0.024491889402270317, + -0.009147058241069317, + 0.019790129736065865, + 0.0004902117652818561, + 0.038981854915618896, + 0.007544185966253281, + 0.009724092669785023, + -0.02831028774380684, + -0.008769492618739605, + -0.022653929889202118, + -0.028424270451068878, + -0.019305706024169922, + -0.0008432889590039849, + -0.03379567340016365, + -0.012409794144332409, + -0.0044844807125627995, + 0.016684120520949364, + -0.03257036581635475, + 0.01763872057199478, + 0.027654889971017838, + 0.004833550658077002, + -0.03536292538046837, + 0.010970770381391048, + 0.00022495868324767798, + 0.010165772400796413, + 0.025161534547805786, + -0.0002793895546346903, + -0.010066037997603416, + -0.012281564064323902, + 0.015031380578875542, + 0.010757054202258587, + 0.015259345062077045, + -0.003515633288770914, + 0.012502403929829597, + -0.012281564064323902, + 0.020018095150589943, + 0.03368169069290161, + 0.004235144704580307, + -0.03573336824774742, + -0.031658511608839035, + 0.010700063779950142, + -0.03618929535150528, + -0.011975237168371677, + 0.0017515833023935556, + 0.009389270097017288, + -0.012438289821147919, + -0.005264545325189829, + 0.0031220391392707825, + -0.020830215886235237, + -0.01290846522897482, + -0.0009069585939869285, + 0.004712444730103016, + 0.006244078278541565, + 0.032769836485385895, + 0.028039580211043358, + -0.01232430711388588, + 0.018222877755761147, + 0.00244170892983675, + -0.002044552704319358, + 0.01941968873143196, + 0.007127439137548208, + 0.02191304601728916, + -0.02764064259827137, + 0.0029813426081091166, + 0.004997399635612965, + -0.032997798174619675, + -0.012388422153890133, + 6.272351311054081e-5, + 0.010828292928636074, + -0.0010124810505658388, + 0.011597671546041965, + -0.02447764202952385, + -0.036217790096998215, + 0.0012903122697025537, + 0.012794483453035355, + -0.01609996147453785, + -0.02363702468574047, + -0.006133658345788717, + 0.003011618973687291, + -0.011191611178219318, + -0.009296659380197525, + 0.00849166139960289, + -0.0012235258473083377, + 0.008505909703671932, + -0.0006959137390367687, + -0.0024256801698356867, + -0.006553967017680407, + 0.01265200600028038, + -0.0183083638548851, + -0.011056257411837578, + -0.018664557486772537, + -0.017510490491986275, + -0.014960141852498055, + -0.008042857050895691, + 0.007508566603064537, + 0.0061906492337584496, + -0.0005583338788710535, + -0.00031701254192739725, + -0.005196868441998959, + 0.00024866784224286675, + 0.0007079353090375662, + 0.01087816059589386, + -0.009788206778466702, + 0.012203201651573181, + 0.02342330850660801, + -0.0016625347780063748, + 0.0053892130963504314, + -0.004153220448642969, + -0.012694749049842358, + -0.0005881651304662228, + -0.006475604139268398, + 0.004181715659797192, + -0.021656585857272148, + 0.0018931702943518758, + 0.001169206341728568, + 0.10423657298088074, + -0.005186182446777821, + 0.008192459121346474, + -0.009082943201065063, + 0.008634138852357864, + -0.014148020185530186, + -0.0003261399979237467, + 0.021157914772629738, + 0.010094533674418926, + 0.002249364275485277, + 0.01278735976666212, + -0.0170403141528368, + 0.01156917680054903, + 0.006700006313621998, + -0.007163058500736952, + 0.004024990368634462, + 0.021628091111779213, + 0.019961103796958923, + -0.009724092669785023, + 0.01615695282816887, + -0.005332222208380699, + -0.014988637529313564, + -0.008235202170908451, + 0.008228078484535217, + -0.017524737864732742, + 0.013143553398549557, + -0.011925370432436466, + -0.0029849044512957335, + 0.02114366739988327, + 0.027711881324648857, + -0.004338440950959921, + -0.0033250695560127497, + -0.010842541232705116, + -0.009538871236145496, + -0.005122067406773567, + 0.022739415988326073, + -0.016441907733678818, + -0.0012359926477074623, + 0.0030472383368760347, + 0.00567416800186038, + -0.023223839700222015, + -0.008299317210912704, + 0.014675186946988106, + 0.02574569173157215, + 0.0004385636711958796, + -0.004438175354152918, + -0.006553967017680407, + -0.005987618584185839, + -0.0010872817365452647, + 0.009318031370639801, + -0.008277945220470428, + -0.0069101606495678425, + 0.015102619305253029, + -0.002073048148304224, + 0.015273592434823513, + -0.006165715400129557, + 0.010372364893555641, + -0.020331544801592827, + -0.001220854464918375, + -0.0018433032091706991, + -0.012196077965199947, + -0.004712444730103016, + -0.007291288115084171, + -0.014482841826975346, + -0.007921751588582993, + -0.004577090963721275, + -0.01765296794474125, + -0.0038896368350833654, + -0.0028709224425256252, + -0.005499633029103279, + -0.01540182251483202, + -0.0036723585799336433, + 0.0034711090847849846, + -0.017952170222997665, + -0.005186182446777821, + 0.002333069685846567, + 0.00296887569129467, + 0.021742073819041252, + 0.01592898927628994, + -0.0004982261452823877, + -0.0025147285778075457, + 0.01129846926778555, + 0.0043954323045909405, + -0.018180133774876595, + -0.01853632740676403, + -0.012367051094770432, + 0.02070198766887188, + -0.019291458651423454, + 0.01815163902938366, + -0.02890869416296482, + -0.01770995929837227, + -0.00999479927122593, + -0.004078419413417578, + -0.01637066900730133, + 0.00156458152923733, + -0.016356421634554863, + -0.007255668751895428, + -0.0034675472415983677, + -0.00517549691721797, + 0.01970464363694191, + 0.020901454612612724, + 0.0036545488983392715, + -0.009325155057013035, + -0.0017880931263789535, + -0.014732178300619125, + -0.007198677863925695, + 0.017410755157470703, + -0.0020427717827260494, + -0.020231811329722404, + 0.008142591454088688, + -0.012872845865786076, + -0.02890869416296482, + -0.0038896368350833654, + 0.006472042296081781, + -0.015843503177165985, + 0.017952170222997665, + 0.026073390617966652, + 0.01176864467561245, + -0.016826597973704338, + -0.0032734214328229427, + -0.027498165145516396, + 0.008306440897285938, + -0.012922712601721287, + -0.012238821014761925, + 0.015216601081192493, + 0.0035655004903674126, + -0.016299430280923843, + 0.002762283431366086, + -0.009781083092093468, + -0.003707977943122387, + 0.015444565564393997, + 0.014646691270172596, + 0.010009047575294971, + 0.001992904581129551, + 0.016570137813687325, + -0.004694635048508644, + 0.004915475379675627, + 0.01071431115269661, + 0.021827559918165207, + -0.011576300486922264, + 0.00471956841647625, + 0.014646691270172596, + -0.007387460675090551, + -0.005492509342730045, + 0.005724035203456879, + 0.031231077387928963, + -0.02831028774380684, + -0.025061799213290215, + -0.0017898741643875837, + 0.005667044315487146, + -0.002628710586577654, + -0.02574569173157215, + 0.026344098150730133, + -0.021998532116413116, + 0.018051903694868088, + 0.010928027331829071, + -0.008968961425125599, + 0.031117094680666924, + -0.0060268002562224865, + 0.014717929996550083, + -0.00593775138258934, + -0.006429299246519804, + -0.004081981722265482, + -0.004416803829371929, + 0.0050116474740207195, + 0.008505909703671932, + 0.02474834956228733, + 0.014162267558276653, + 0.02880895882844925, + -0.025104543194174767, + -0.011034885421395302, + 0.013670720160007477, + -0.008406175300478935, + -0.03895336017012596, + 0.0007640357944183052, + 0.002069486305117607, + -0.007971618324518204, + -0.003675920655950904, + -0.019020751118659973, + 0.027341440320014954, + -0.007921751588582993, + -0.016000228002667427, + 0.0075584338046610355, + 0.008762368932366371, + 0.01042935624718666, + -0.02470560558140278, + -0.00038379887701012194, + -0.021827559918165207, + 0.004423927515745163, + -0.011911122128367424, + -0.0036545488983392715, + 0.015359079465270042, + -0.013221915811300278, + -0.005143439397215843, + 0.010749930515885353, + -0.0028816082049161196, + 0.012944084592163563, + 0.030290724709630013, + -0.009068695828318596, + -0.019120486453175545, + 0.0026002151425927877, + -0.007886132225394249, + 0.005955561064183712, + 0.003700854256749153, + -0.004060609731823206, + -0.008890599012374878, + -0.005236049648374319, + -0.00912568625062704, + -0.002728444989770651, + 0.0025841863825917244, + -0.05411297082901001, + -0.022967379540205002, + 0.01642766036093235, + -0.006735625676810741, + -0.004210211336612701, + -0.009581614285707474, + 0.019604910165071487, + 0.027483917772769928, + 0.01625668816268444, + 0.009289535693824291, + 0.01681235060095787, + 5.6295324611710384e-5, + 0.02070198766887188, + -0.0010676911333575845, + 0.000857536680996418, + -0.0024434898514300585, + 0.02108667604625225, + 0.010066037997603416, + 0.01478916872292757, + -0.0060944766737520695, + 0.018621815368533134, + -0.005798835773020983, + -0.002601996064186096, + 0.04089105501770973, + 0.003875389229506254, + 0.044367507100105286, + 0.011718777939677238, + -0.008691130205988884, + 0.01698332279920578, + -0.010806921869516373, + -0.016399165615439415, + 0.011676034890115261, + -0.023551538586616516, + -0.014732178300619125, + 0.010229887440800667, + -0.005421270616352558, + 0.0056527964770793915, + -0.0011273535201326013, + 0.0021460680291056633, + -3.0359960874193348e-5, + 0.0017738454043865204, + -0.017382260411977768, + 0.003914570435881615, + 0.028495509177446365, + 0.016014475375413895, + 0.00301696197129786, + -0.011106124147772789, + 0.006254764273762703, + -0.01886402629315853, + -0.012473909184336662, + 0.009261040017008781, + 0.02581693045794964, + -0.011811388656497002, + -0.023437555879354477, + -0.008705377578735352, + 0.007786397822201252, + -0.00023620105639565736, + -0.009218296967446804, + 0.016014475375413895, + 0.01570102572441101, + -0.00423158286139369, + -0.003515633288770914, + 0.013777578249573708, + 0.013969923369586468, + -0.006151468027383089, + -0.013086562044918537, + 0.01631367765367031, + -0.015245096758008003, + -0.0017444593831896782, + 0.001267159590497613, + -0.001455942401662469, + 0.005033018998801708, + -0.008420422673225403, + -0.018137391656637192, + 0.004181715659797192, + -0.006172839552164078, + 0.00012155115109635517, + 0.01991835981607437, + -0.01775270141661167, + 0.01926296390593052, + 0.002464861376211047, + -0.021770568564534187, + 0.00543908029794693, + -0.013855940662324429, + 0.0005659029702655971, + 0.004448861349374056, + -0.01156917680054903, + -0.002559252781793475, + 0.020559510216116905, + -0.002074829302728176, + -0.009716968052089214, + 0.008313564583659172, + 0.0011790016433224082, + -0.004466671030968428, + 0.012965456582605839, + 0.016285182908177376, + 0.026016399264335632, + -0.004263640381395817, + -0.0036545488983392715, + 0.0035939959343522787, + -0.010407984256744385, + -0.004089105408638716, + 0.012196077965199947, + -0.006728501990437508, + -0.0027551595121622086, + -0.007351841311901808, + -0.0022974503226578236, + 0.013378641568124294, + -0.0007992099854163826, + 0.0012101685861125588, + 0.001668768236413598, + 0.005321536213159561, + -0.009139934554696083, + 0.0045699672773480415, + 0.008570023812353611, + 0.006974275689572096, + 0.0035281002055853605, + 0.004448861349374056, + 0.0013909370172768831, + -0.04374060407280922, + 0.007921751588582993, + -0.01587199792265892, + -0.002185249235481024, + -0.0015441003488376737, + -0.007871883921325207, + 0.017795445397496223, + -0.006578900385648012, + 0.0015280715888366103, + -0.012452537193894386, + -0.00026736801373772323, + -0.021628091111779213, + 0.0020997626706957817, + -0.003449737560003996, + -0.005093572195619345, + 0.017567481845617294, + 0.0025610337033867836, + -0.004081981722265482, + -0.003690168261528015, + -0.0007600286626257002, + 0.027070732787251472, + 0.015900494530797005, + -0.015971733257174492, + 0.016342174261808395, + -0.005143439397215843, + 0.0009305564453825355, + -0.00901882816106081, + 0.013136429712176323, + 0.022340478375554085, + -0.020516766235232353, + 0.006935094483196735, + -0.023565785959362984, + 0.007850512862205505, + -0.0010124810505658388, + -0.01998959854245186, + -0.0007711597136221826, + -6.13877855357714e-5, + -0.000678549287840724, + 0.011063381098210812, + -0.019462432712316513, + 0.012673377059400082, + -0.011847008019685745, + -0.03225691616535187, + -0.019889865070581436, + 0.008619891479611397, + -0.012381298467516899, + 0.005057952832430601, + 0.010030418634414673, + -0.00796449463814497, + -0.008755245245993137, + -0.004359812941402197, + 0.02302437089383602, + 0.023010123521089554, + -0.004317069426178932, + 0.0014372422592714429, + 0.01832261122763157, + 0.01924871653318405, + 0.01959066279232502, + 0.04810041934251785, + 0.002459518611431122, + -0.009303783066570759, + -0.019405441358685493, + 0.0035708434879779816, + 0.004897665698081255, + 0.009652853012084961, + -0.006447108928114176, + 0.005934189539402723, + -0.01648465171456337, + 0.017353763803839684, + -0.005414146464318037, + 0.013421384617686272, + -0.003221773309633136, + 0.002350879367440939, + 0.014717929996550083, + 0.013172049075365067, + 0.01847933791577816, + -0.027711881324648857, + -0.007059762254357338, + 0.0034657663200050592, + 0.010692939162254333, + -0.018066152930259705, + -0.0028620176017284393, + 0.001964409137144685, + -0.015131114982068539, + -0.004046362359076738, + 0.0055530620738863945, + 0.00534290773794055, + 0.020773226395249367, + 0.0018682368099689484, + 0.011590547859668732, + -0.008897722698748112, + 0.021856054663658142, + 0.011911122128367424, + 0.01018714439123869, + 0.012331430800259113, + 0.0035797483287751675, + -0.008142591454088688, + 0.011070504784584045, + -0.010201391763985157, + 0.0010730340145528316, + 0.0012974360724911094, + -0.001593076973222196, + -0.003925256431102753, + -0.009204049594700336, + 0.01675535924732685, + -0.009189801290631294, + -0.0010124810505658388, + 0.03262735530734062, + -0.013777578249573708, + 0.011925370432436466, + 0.015857750549912453, + -0.019291458651423454, + -0.0022404594346880913, + 0.01914898119866848, + -0.014960141852498055, + -0.0003254721232224256, + -0.0007106067496351898, + -0.010194268077611923, + 0.014055409468710423, + -0.00694934232160449, + 0.0008303769282065332, + -0.007394584361463785, + 0.013193420134484768, + -0.0003911453823093325, + 0.00010797126014949754, + -0.006828236393630505, + -0.023067114874720573, + 0.006913722492754459, + -0.0031612205784767866, + 0.0173680130392313, + -0.01853632740676403, + -0.005681292153894901, + -0.004220897331833839, + -0.01076417788863182, + 0.009460508823394775, + 0.00020314181165304035, + -0.006261887960135937, + 0.010229887440800667, + 0.0297493115067482, + -0.00468751136213541, + 0.008228078484535217, + -0.00037912384141236544, + 0.004406117834150791, + -0.001634929794818163, + -0.015202353708446026, + 0.0005850484012626112, + 0.01865031011402607, + 0.00016574145411141217, + 0.015202353708446026, + 0.005449765827506781, + -0.00913281086832285, + -0.018237125128507614, + 0.005075762514024973, + -0.00505082868039608, + 0.009004580788314342, + 0.01052196603268385, + 0.01045785192400217, + 0.014717929996550083, + 0.0062048970721662045, + 0.0036456440575420856, + -0.003896760754287243, + 8.192458335543051e-5, + -0.002545005176216364, + 0.015088371932506561, + -0.005228925962001085, + 0.019063495099544525, + -0.010464975610375404, + -0.002181687392294407, + 0.0021033247467130423, + -0.0068211122415959835, + -0.006817550398409367, + 0.0016660967376083136, + 0.004865608178079128, + 0.00780064519494772, + 0.013841693289577961, + -0.007394584361463785, + 0.00891197007149458, + 0.008007237687706947, + 0.01609996147453785, + 0.014618195593357086, + -0.005328659899532795, + 0.009161305613815784, + -0.011690282262861729, + -0.0140981525182724, + 0.023380564525723457, + -0.010201391763985157, + 0.014041162095963955, + 0.006789054721593857, + -0.006810426712036133, + 0.021742073819041252, + -0.011170239187777042, + -0.0016758920392021537, + -0.019277211278676987, + -0.00743732787668705, + 0.010913779959082603, + -0.011882627382874489, + 0.01301532331854105, + 0.02631560154259205, + 0.030433202162384987, + 0.009382146410644054, + -0.014568328857421875, + -0.011889751069247723, + 0.018878273665905, + 0.009289535693824291, + 0.0030953246168792248, + 0.021571099758148193, + 0.011889751069247723, + 0.005029457155615091, + 0.005517442710697651, + 0.04539334401488304, + 0.009246792644262314, + -0.0053749652579426765, + 0.006593148224055767, + 0.015501556918025017, + 0.0009492566459812224, + 0.004630520008504391, + -0.01803765632212162, + -0.0037293497007340193, + 0.019462432712316513, + -0.0020338669419288635, + 0.005414146464318037, + -0.012025104835629463, + 0.0006531704566441476, + 0.03063267096877098, + 0.005716911517083645, + 0.008014361374080181, + -0.022497203201055527, + -1.0143176950805355e-5, + 0.008370555937290192, + -0.005987618584185839, + 0.02003234252333641, + 0.004438175354152918, + -0.006311755161732435, + -0.013578109443187714, + 0.0030187428928911686, + -0.01376333087682724, + -0.012388422153890133, + 0.02680002525448799, + 0.00032435901812277734, + 0.02041703090071678, + 0.015116867609322071, + -0.015458812937140465, + -0.006475604139268398, + -0.010999266058206558, + 0.017396507784724236, + -0.014361736364662647, + -0.008755245245993137, + -0.027954094111919403, + -0.008406175300478935, + 0.02108667604625225, + -0.014091028831899166, + 0.00681398855522275, + -0.0053856512531638145, + -0.0038575795479118824, + -0.0008633248507976532, + -0.009973428212106228, + 0.003447956405580044, + 0.02225499227643013, + -0.0011754396837204695, + 0.026116132736206055, + -0.027954094111919403, + 0.026486575603485107, + -0.006037485785782337, + -0.012310059741139412, + 0.00740883219987154, + -0.00652190949767828, + 0.000419418269302696, + -0.008669758215546608, + 0.0034978236071765423, + -0.0027872167993336916, + -0.02231198363006115, + -0.004655453842133284, + -0.007269916590303183, + -0.003661672817543149, + 0.0021941540762782097, + 0.006461356300860643, + 0.0030276477336883545, + -0.002096200827509165, + 0.0062796976417303085, + 0.011583424173295498, + -0.004071295727044344, + -0.011861255392432213, + -0.00176226906478405, + 0.0003406103642191738, + -0.00012377736857160926, + 0.008391926996409893, + -0.020659243687987328, + 0.016684120520949364, + 0.0031345058232545853, + 0.03314027562737465, + -0.01095652300864458, + -0.01412664819508791, + -0.0018059028079733253, + -0.008762368932366371, + 0.007177306339144707, + 0.011633290909230709, + -0.00796449463814497, + 0.006507661659270525, + 0.007220049388706684, + 0.013107934035360813, + -0.024050209671258926, + -0.00034795686951838434, + 0.012224572710692883, + 0.003875389229506254, + -0.017225535586476326, + 0.003029428655281663, + -0.00319683994166553, + -0.017895178869366646, + -0.004637644160538912, + 0.023765254765748978, + -0.01571527309715748, + 0.010436479933559895, + -0.009716968052089214, + -0.002267173957079649, + 0.0036723585799336433, + 0.00921117328107357, + 0.01020851545035839, + 0.0034087751992046833, + 0.011725901626050472, + -0.014354612678289413, + -0.0010890626581385732, + -0.008534404449164867, + 0.008477414026856422, + -0.015188106335699558, + 0.012744615785777569, + -0.0053785271011292934, + -0.010671568103134632, + -0.007070448249578476, + -0.027626395225524902, + 0.03775654733181, + -0.011184487491846085, + -0.013442755676805973, + -0.03456505015492439, + 0.015216601081192493, + 0.01792367547750473, + 0.007508566603064537, + -0.027127724140882492, + -0.005880760494619608, + 0.013806073926389217, + -0.004808616824448109, + -0.03125957399606705, + -0.0027409116737544537, + -0.0015120429452508688, + -0.026728786528110504, + 0.02313835360109806, + -0.02070198766887188, + -0.011804264038801193, + -0.0017765169031918049, + -0.011426698416471481, + 0.00843467004597187, + -0.02436365932226181, + -0.006187087390571833, + 0.010721434839069843, + 0.014148020185530186, + -0.0011291345581412315, + -1.054667700373102e-5, + 0.02497631311416626, + 0.017496241256594658, + -0.007900379598140717, + 0.004377622622996569, + -0.0018575509311631322, + -0.024178439751267433, + 0.0017987790051847696, + -0.007515690289437771, + -0.023152600973844528, + 0.009082943201065063, + -0.004398994147777557, + -0.013350145891308784, + -0.014732178300619125, + -0.009944932535290718, + -0.0024096514098346233, + -0.02092995122075081, + -0.0018717986531555653, + -0.0032342402264475822, + -0.008441794663667679, + -0.0009056229027919471, + 0.004616272170096636, + 0.01420501060783863, + 0.008605643175542355, + 0.007629672531038523, + 0.002760502276942134, + 0.0034087751992046833, + -0.0035191953647881746, + 0.007262792903929949, + -0.012822979129850864, + -0.006261887960135937, + -0.021713577210903168, + 0.0074729472398757935, + -0.00143278983887285, + -0.01836535520851612, + 0.028538251295685768, + 0.0025325382594019175, + 0.005677729845046997, + 0.008306440897285938, + 0.004637644160538912, + -0.018408099189400673, + -0.016570137813687325, + 0.005225363653153181, + 0.022796407341957092, + -0.009367898106575012, + 0.00419240165501833, + 0.005813083611428738, + -0.0005498742684721947, + -0.015772264450788498, + 0.0033767176792025566, + -0.005000961944460869, + 0.00416390597820282, + -0.004078419413417578, + -0.0003049910010304302, + 0.005784588400274515, + 0.019661901518702507, + -0.024962065741419792, + -0.013578109443187714, + -0.006778369192034006, + 0.01026550680398941, + 0.017111552879214287, + -0.00016796766431070864, + -0.005296602845191956, + -0.001700825640000403, + -0.022383222356438637, + -0.0010124810505658388, + -0.004224459175020456, + -0.01198948547244072, + 0.014404479414224625, + -0.031715501099824905, + 0.005492509342730045, + -0.01609996147453785, + 0.018550576642155647, + -0.02246870845556259, + 0.0028869512025266886, + -0.002879827283322811, + 0.024320917204022408, + 0.004701758734881878, + -0.0038611413910984993, + 0.0038860749918967485, + -0.008662634529173374, + 0.02054526098072529, + -0.004398994147777557, + -0.010970770381391048, + -0.007024142891168594, + 0.018963761627674103, + -0.008171087130904198, + -0.014019790105521679, + -0.011754397302865982, + -0.02724170684814453, + -0.010550461709499359, + -0.026657547801733017, + -0.006347374524921179, + 0.012131962925195694, + 0.0037400354631245136, + 0.016883589327335358, + -0.009481880813837051, + 0.0022404594346880913, + -0.018507832661271095, + -0.004691073205322027, + -0.021172162145376205, + -0.0024310231674462557, + 0.00560649111866951, + 0.021214906126260757, + 0.016470404341816902, + 0.0008864774717949331, + 0.007444451563060284, + 0.01301532331854105, + -0.01420501060783863, + 0.004666139371693134, + 0.019305706024169922, + 0.003679482499137521, + -0.006739187519997358, + -0.028182057663798332, + -0.01575801521539688, + -0.013905808329582214, + 0.005577995907515287, + 0.004188839811831713, + -0.019291458651423454, + -0.0024292420130223036, + -0.002760502276942134, + 0.02980630099773407, + -0.0008993895025923848, + 0.006429299246519804, + 0.00014247754006646574, + 0.0025111667346209288, + 0.009524623863399029, + 0.004242268856614828, + -0.017140047624707222, + -0.016128458082675934, + -0.0036171486135572195, + -0.014831911772489548, + 0.005848702974617481, + 0.007501442451030016, + 0.004744502250105143, + 0.018279869109392166, + 0.002983123529702425, + 0.009517500177025795, + 0.01598598062992096, + -0.006660825107246637, + -0.03345372527837753, + -0.0021834683138877153, + 0.010222763754427433, + -0.005627863109111786, + 0.005620738957077265, + -0.0161427054554224, + 0.002101543825119734, + -0.009332278743386269, + 0.008256573230028152, + 0.01262351032346487, + 0.007187991868704557, + -0.0183083638548851, + -0.010543338023126125, + 0.012644882313907146, + 0.005987618584185839, + 0.0064684804528951645, + 0.014390232041478157, + -0.017282525077462196, + 0.007056200411170721, + 0.012381298467516899, + 0.0035939959343522787, + 0.010229887440800667, + -0.017667215317487717, + -0.00452366191893816, + -0.011248601600527763, + -0.030604176223278046, + 0.003520976286381483, + 0.03618929535150528, + 0.00832781195640564, + 0.013528242707252502, + -0.004997399635612965, + 0.018607566133141518, + -0.0016901398776099086, + 0.009360774420201778, + 0.019049247726798058, + -0.010308249853551388, + -0.011882627382874489, + 0.03772805258631706, + -0.01715429686009884, + 0.00862701516598463, + 0.0033767176792025566, + -0.002299231244251132, + -0.02581693045794964, + 0.00999479927122593, + -0.005239611491560936, + 0.0028192743193358183, + -0.01832261122763157, + 0.0007377665024250746, + -0.009332278743386269, + 0.014304745011031628, + -0.002634053584188223, + 0.01076417788863182, + 0.01042935624718666, + 0.0021229153499007225, + 0.0013980609364807606, + 0.018009161576628685, + 0.001719525782391429, + 0.014461470767855644, + -0.01020851545035839, + 0.013221915811300278, + 0.0013392888940870762, + -0.008527280762791634, + 0.018721548840403557, + -0.02325233444571495, + 0.007152372505515814, + 0.02070198766887188, + 0.006069543305784464, + -0.0013018884928897023, + 0.023266581818461418, + -0.001488890266045928, + 0.0020801720675081015, + -0.016570137813687325, + 0.01598598062992096, + -0.01229581143707037, + -0.00785763654857874, + -0.009852321818470955, + 0.009004580788314342, + 0.013350145891308784, + -0.011975237168371677, + -0.0049332850612699986, + -0.0009866569889709353, + -0.0016438346356153488, + -0.023736758157610893, + -0.0026055581402033567, + -0.007943122647702694, + 0.001248459448106587, + -0.017382260411977768, + -0.005777464248239994, + 0.004448861349374056, + -0.0009581614867784083, + 0.00957449059933424, + 0.008242325857281685, + 0.014283373951911926, + -0.024463394656777382, + -0.00656109070405364, + -0.026287106797099113, + -0.017738454043865204, + 0.004363374784588814, + 0.008954713121056557, + 0.021157914772629738, + -0.00030165165662765503, + -0.004772997461259365, + -0.0037293497007340193, + -0.006543281022459269, + -0.024605872109532356, + -0.005763216409832239, + 0.017610223963856697, + -0.0014924522256478667, + 0.003971561323851347, + -0.007205801550298929, + -0.009353650733828545, + -0.023494547232985497, + 0.009987675584852695, + -0.018735796213150024, + -0.0020677053835242987, + 0.006365184206515551, + 0.021357383579015732, + 0.0051113818772137165, + 0.002648301422595978, + -0.00888347439467907, + -0.00016763372696004808, + 0.007088257931172848, + 0.009261040017008781, + -0.010336745530366898, + 0.0001607324811629951, + 0.010578957386314869, + -0.012559395283460617, + -0.0015396479284390807, + 0.017168544232845306, + 0.007487194612622261, + 0.006618081592023373, + -0.0009768616873770952, + -0.0031345058232545853, + -0.007191553711891174, + -0.02026030607521534, + -0.00915418192744255, + -0.0013232601340860128, + -0.021799063310027122, + 0.01842234656214714, + -0.020958445966243744, + 0.008334936574101448, + -0.009118562564253807, + 0.0039038846734911203, + -0.0006513895350508392, + -0.012708996422588825, + 0.004039238207042217, + 0.007277040276676416, + -0.009090066887438297, + -0.003520976286381483, + 0.03741460293531418, + 0.0061158486641943455, + 0.01721128635108471, + -0.011604796163737774, + -0.0012048257049173117, + -0.006764121353626251, + 0.027597900480031967, + -0.0031362869776785374, + -0.0033731558360159397, + -0.008691130205988884, + -0.015230849385261536, + 0.0012101685861125588, + 0.00968134868890047, + -0.002545005176216364, + -0.002512947656214237, + 0.011733025312423706, + -0.006244078278541565, + -0.0008134577074088156, + -0.022824902087450027, + -0.009966304525732994, + 0.00021894791279919446, + -0.01376333087682724, + -0.02058800496160984, + 0.01759597659111023, + 0.011747273616492748, + 0.009560243226587772, + -0.005196868441998959, + 0.009090066887438297, + 0.011761520989239216, + -0.01742500253021717, + -0.020716235041618347, + -0.0070989434607326984, + -0.014404479414224625, + 0.0031701254192739725, + -0.0032021827064454556, + -0.029492851346731186, + 0.024392155930399895, + 0.020174819976091385, + 0.008748120628297329, + -0.021286144852638245, + -0.011127496138215065, + 0.004167468287050724, + 0.03040470741689205, + 0.025332506746053696, + 0.025617461651563644, + 0.000970628228969872, + 0.008840731345117092, + -0.0066572632640600204, + 0.013991294428706169, + 0.007750778459012508, + 0.000687899359036237, + 0.0015343050472438335, + -0.0006611848366446793, + -0.0063794320449233055, + -0.010336745530366898, + -0.0020249621011316776, + -0.03824097290635109, + 0.010828292928636074, + 0.004865608178079128, + -0.009360774420201778, + -0.005057952832430601, + -0.013200543820858002, + 0.00809984840452671, + -0.018892522901296616, + 0.042372822761535645, + 0.00456284312531352, + -0.01015864871442318, + 0.01980437897145748, + 0.002181687392294407, + 0.005221801809966564, + 0.01121298223733902, + -0.014603948220610619, + -0.01886402629315853, + 0.004520100075751543, + -0.010949399322271347, + 0.0036029007751494646, + 0.004929722752422094, + -0.03858291730284691, + -0.029122410342097282, + -0.005171934608370066, + -0.00023553318169433624, + 0.015672529116272926, + 0.007430203724652529, + -0.004356250632554293, + 0.0041959634982049465, + 0.024320917204022408, + 0.009567366912961006, + 0.003383841598406434, + 0.002144287107512355, + -0.00645423261448741, + -0.021998532116413116, + -0.0032841074280440807, + -0.007957370951771736, + -0.007366089150309563, + -0.01387018896639347, + -0.008163963444530964, + -0.008961837738752365, + -0.01134833600372076, + 0.03262735530734062, + 0.00485492218285799, + 0.0009118562447838485, + -0.01792367547750473, + -0.019291458651423454, + 0.005054390989243984, + 0.026443831622600555, + 0.01074280682951212, + 0.013877312652766705, + 0.013770454563200474, + -0.01642766036093235, + -0.0068246740847826, + -0.0059163798578083515, + -0.007658167742192745, + 0.0004476911562960595, + 0.007066885940730572, + 0.01642766036093235, + -0.0009528185473755002, + -0.008313564583659172, + -0.008641262538731098, + -0.008940465748310089, + 0.0044702328741550446, + 0.014019790105521679, + 0.004705321043729782, + 0.00035285454941913486, + 0.017054561525583267, + 0.012708996422588825, + -0.004740940406918526, + 0.00024666424724273384, + 0.0001475978351663798, + -0.006988523527979851, + 0.008840731345117092, + 0.003209306625649333, + 0.0005155905964784324, + 0.02141437493264675, + 0.009966304525732994, + 0.012773111462593079, + -0.010614576749503613, + -0.005638548638671637, + -0.025403745472431183, + 0.00901882816106081, + -0.007301974110305309, + 0.015629786998033524, + 0.009054447524249554, + 0.003975123632699251, + -0.005627863109111786, + 0.013620853424072266, + 0.015572795644402504, + 0.014254878275096416, + -0.0183083638548851, + -0.0017756263259798288, + -0.0025806245394051075, + -0.006956466007977724, + -0.013278907164931297, + 0.007159496657550335, + -0.003718663938343525, + -0.02459162287414074, + -0.005891446489840746, + 0.013777578249573708, + 0.014960141852498055, + 0.0047480640932917595, + 0.00314875366166234, + 0.0075584338046610355, + 0.015145362354815006, + -0.009004580788314342, + -0.009310907684266567, + -0.019946856424212456, + -0.005403460934758186, + -0.02486233040690422, + 0.008570023812353611, + 0.02957833744585514, + 0.010244134813547134, + 0.007330469321459532, + 0.016356421634554863, + -0.011711654253304005, + 0.0007422189228236675, + 0.004057047888636589, + 0.006511223502457142, + -0.0008900393731892109, + -0.007415955886244774, + 0.002167439553886652, + 0.01206784788519144, + -0.015245096758008003, + -0.004466671030968428, + 0.0015574576100334525, + -0.016940578818321228, + 0.005453328136354685, + -0.032057445496320724, + -0.0005886103608645499, + 0.001980437897145748, + 0.006215582601726055, + -0.006429299246519804, + 0.007715159095823765, + -0.001601981814019382, + 0.027840111404657364, + -0.02536100335419178, + -0.0034105561207979918, + 0.007323345635086298, + -0.001372236874885857, + -0.005122067406773567, + -0.017624471336603165, + -0.0014336802996695042, + -0.002516509499400854, + 0.011440946720540524, + -0.007943122647702694, + 0.00968847330659628, + -0.0035530338063836098, + -0.0004516983462963253, + 0.00445598503574729, + -0.005296602845191956, + -0.01681235060095787, + -0.0179806649684906, + -0.013784701935946941, + 0.03191496804356575, + 0.00485492218285799, + -0.016128458082675934, + -0.0029083227273076773, + -1.6571362721151672e-5, + 0.002227992517873645, + 0.01775270141661167, + -0.00511850556358695, + -0.005681292153894901, + -0.0017124019796028733, + -0.008862103335559368, + -0.009196924977004528, + -0.009082943201065063, + 0.0014416946796700358, + -0.00514700124040246, + -0.001032071653753519, + -0.010251259431242943, + -0.010778426192700863, + 2.667279841261916e-5, + -0.017952170222997665, + -0.017895178869366646, + -0.004167468287050724, + -0.00312916305847466, + -0.01731102168560028, + -0.0074586994014680386, + 0.010628825053572655, + 0.0023633462842553854, + 0.012794483453035355, + -0.010436479933559895, + -0.009581614285707474, + -0.0069208466447889805, + 0.012915588915348053, + 0.0037970265839248896, + -0.004594900645315647, + 0.03291231393814087, + -0.012331430800259113, + 0.009781083092093468, + 0.022910388186573982, + -0.002536100335419178, + -0.003227116307243705, + 0.025517728179693222, + -0.014603948220610619, + 0.013991294428706169, + -0.025503480806946754, + -0.002484452212229371, + 0.011120372451841831, + 0.01354249007999897, + 0.006625205744057894, + -0.0069208466447889805, + 0.001088172197341919, + -0.0119324941188097, + 0.016342174261808395, + -0.002601996064186096, + 0.024221181869506836, + -0.0029190087225288153, + 0.004904789384454489, + -0.02302437089383602, + -0.0012849693885073066, + 0.00970984436571598, + 6.867862975923344e-5, + -0.01792367547750473, + -0.013457003980875015, + 0.0038433317095041275, + 0.0059270658530294895, + 0.0012466785265132785, + -0.011305592954158783, + 0.02536100335419178, + -0.00538208894431591, + -0.010336745530366898, + 0.002812150400131941, + 0.021628091111779213, + -0.021442869678139687, + -0.020516766235232353, + -0.0011798921041190624, + 0.011391079053282738, + 0.010607453063130379, + -0.0009323374251835048, + -0.004171030130237341, + 0.017895178869366646, + 0.01681235060095787, + 0.012630634009838104, + -0.0010516623733565211, + -0.013264658860862255, + -0.02413569577038288, + -0.011611919850111008, + -0.0074729472398757935, + -0.00843467004597187, + 0.023394811898469925, + 0.01987561769783497, + -0.01742500253021717, + -0.005203992128372192, + -0.02519002929329872, + -0.007487194612622261, + -0.008662634529173374, + -0.008413298986852169, + 0.005075762514024973, + -0.0016865779180079699, + 0.0037542833015322685, + -0.006080229301005602, + -0.022725168615579605, + -0.006586024537682533, + 0.016399165615439415, + 0.046932101249694824, + 0.020559510216116905, + 0.02831028774380684, + -0.01174014899879694, + 0.0027872167993336916, + -0.019519424065947533, + 0.005556623917073011, + -0.016855092719197273, + -0.023152600973844528, + -0.008349183946847916, + 0.011733025312423706, + -0.01543031819164753, + 0.019547918811440468, + 0.007943122647702694, + -0.01439735572785139, + 0.001371346297673881, + 0.004555719438940287, + -0.004783683456480503, + -0.013065190985798836, + 0.009595862589776516, + -0.0032680786680430174, + -0.004092667251825333, + 0.003638520138338208, + -0.0182656217366457, + 0.003643863135948777, + 0.0035975580103695393, + -0.0010267287725582719, + -0.007401708513498306, + -0.002450613770633936, + -0.010358117520809174, + 0.029492851346731186, + 0.012338555417954922, + -0.03807000070810318, + 0.0005521004786714911, + -0.003533442970365286, + 0.009802455082535744, + -0.00022117412299849093, + 0.008783740922808647, + 0.00015872888616286218, + -0.012865722179412842, + -0.03581885248422623, + -0.004587776958942413, + -0.0042956979013979435, + -0.006952904164791107, + -0.005132753401994705, + 0.008733873255550861, + 0.0018433032091706991, + 0.0136279771104455, + -0.0007627001032233238, + 0.007423080038279295, + -0.0007831812254153192, + -0.003535224124789238, + -0.011355459690093994, + 0.0012386641465127468, + -0.012958332896232605, + -0.0023348506074398756, + 0.013920055702328682, + -0.03157302364706993, + -0.008854979649186134, + -4.410681867739186e-5, + -0.0012520214077085257, + -0.003481794847175479, + 0.01484616007655859, + 0.02303861826658249, + -0.01029400248080492, + 0.025460736826062202, + -0.009766835719347, + 0.005592243745923042, + -0.002350879367440939, + -0.01423350628465414, + 0.019690396264195442, + 0.006133658345788717, + 0.0001406965748174116, + -0.020616499707102776, + -0.010735683143138885, + -0.011611919850111008, + -0.021385878324508667, + -0.02286764606833458, + -0.010571833699941635, + 0.00294928508810699, + 0.002742692595347762, + 0.007501442451030016, + 0.0006402584258466959, + -0.017567481845617294, + 0.008976085111498833, + -0.0028994178865104914, + 0.006610957905650139, + 0.002616243902593851, + -0.005528128705918789, + 0.007223611231893301, + -0.0210439320653677, + -0.00511850556358695, + -0.001837960327975452, + 0.014340364374220371, + 0.01742500253021717, + -0.004683949053287506, + -0.010671568103134632, + -0.006956466007977724, + 0.00799299031496048, + 0.00022863193589728326, + 0.005029457155615091, + -0.006664386950433254, + 0.006842483766376972, + 0.0007992099854163826, + -0.006304631009697914, + -0.011455194093286991, + 0.0019519423367455602, + -0.009517500177025795, + -0.004498728550970554, + 0.017410755157470703, + -0.002258269116282463, + 0.00645423261448741, + -0.001046319492161274, + 0.00835630763322115, + 0.023893482983112335, + 0.0102156400680542, + 0.008477414026856422, + -0.000428768340498209, + 0.022824902087450027, + 0.005798835773020983, + -0.008762368932366371, + 0.016684120520949364, + 0.01334302220493555, + -0.006767683196812868, + 0.001734664081595838, + 0.015843503177165985, + 0.00047017590259201825, + 0.015344831161201, + -0.0020178381819278, + -0.006055295467376709, + -0.0017489118035882711, + -0.0071737440302968025, + 0.006293945480138063, + -0.002121134428307414, + 0.008505909703671932, + -0.013699215836822987, + 0.00946763250976801, + -0.014831911772489548, + 0.010315374471247196, + -0.014133771881461143, + -0.007191553711891174, + 0.03573336824774742, + 0.009581614285707474, + 0.004416803829371929, + 0.008940465748310089, + 0.002833522157743573, + -0.010935151018202305, + 0.004391870461404324, + 0.010372364893555641, + 0.012224572710692883, + -0.00843467004597187, + -0.004281450062990189, + -0.013186296448111534, + 0.0052752308547496796, + -0.0005765887908637524, + 0.016684120520949364, + 0.0005921722622588277, + 0.014575452543795109, + -0.020830215886235237, + 0.023295078426599503, + 0.012951208278536797, + -0.008035733364522457, + -0.012139086611568928, + 0.02597365528345108, + 0.0005200430168770254, + -0.0058308932930231094, + -0.003195058787241578, + 0.0011870160233229399, + 0.014091028831899166, + 0.00910431519150734, + 0.003878951072692871, + -0.0038041502702981234, + -0.012010856531560421, + 0.008897722698748112, + 0.0024096514098346233, + -0.005788150243461132, + -0.004181715659797192, + 0.00019468220125418156, + -0.009830950759351254, + -0.012495280243456364, + 0.005624300800263882, + 0.020616499707102776, + 0.03080364502966404, + 0.0012475689873099327, + -0.014660938642919064, + 0.006892350967973471, + -5.754757148679346e-5, + -0.0040178666822612286, + -0.005984056740999222, + 0.012687625363469124, + 0.021514108404517174, + 0.027783120051026344, + -0.009218296967446804, + -0.018579071387648582, + -0.01354249007999897, + 0.014974389225244522, + -0.005570871755480766, + -0.009417765773832798, + -0.042372822761535645, + 0.0034337088000029325, + 0.02242596447467804, + -0.0071844300255179405, + -0.00888347439467907, + -0.001527181128039956 + ], + "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc": [ + -0.027679283171892166, + -0.010393134318292141, + -0.006850890815258026, + 0.012307860888540745, + 0.002619345672428608, + -0.04074537754058838, + 0.013127364218235016, + 0.02461572177708149, + -0.004959141369909048, + 0.04999733343720436, + -0.012231271713972092, + 0.01460553240031004, + -0.020801587030291557, + -0.022318050265312195, + -0.003929018508642912, + 0.030022909864783287, + -0.035537321120500565, + 0.02902725152671337, + -0.011863644234836102, + -0.012675488367676735, + 0.072667695581913, + 0.002464252756908536, + -0.04383957386016846, + 0.013571579940617085, + -0.011044141836464405, + 0.0030022908467799425, + 0.006176907103508711, + 0.007701029535382986, + -0.023374978452920914, + -0.007333402056246996, + 0.025182479992508888, + 0.011580265127122402, + 0.023129893466830254, + -0.01966806873679161, + -0.01123561430722475, + -0.042123980820178986, + -0.002230656100437045, + 0.01085266936570406, + 0.004174103494733572, + 0.005119978450238705, + -0.04166444391012192, + 0.047669027000665665, + 0.012568263337016106, + -0.01795247383415699, + -0.02801627665758133, + -0.019407665356993675, + -0.01017102599143982, + -0.029885048046708107, + -0.006395185831934214, + -0.034373167902231216, + 0.0328107513487339, + 0.026530448347330093, + 0.009160051122307777, + 0.028797484934329987, + 0.016880227252840996, + -0.01974465884268284, + 0.0011555373203009367, + 0.08767914772033691, + 0.014881253242492676, + -0.06372209638357162, + -0.009650221094489098, + -0.012323178350925446, + 0.02156747691333294, + 0.0021827879827469587, + -0.004231545142829418, + -0.008202687837183475, + 0.0011545800371095538, + 0.020112285390496254, + -0.03317837789654732, + 0.028950661420822144, + 0.03906041756272316, + 0.034832701086997986, + -0.018948132172226906, + 0.01953020878136158, + -0.024431908503174782, + -0.011013505980372429, + 0.04227715730667114, + -0.016788320615887642, + -0.0037356310058385134, + 0.01658918894827366, + -0.01560118980705738, + 0.0025485006626695395, + 0.018825588747859, + 0.023482203483581543, + 0.048189833760261536, + 0.015072725713253021, + -0.044084660708904266, + -0.05658399313688278, + -0.002663384424522519, + -0.026423223316669464, + 0.02072499878704548, + 0.022072965279221535, + 0.009542996063828468, + 0.0266836266964674, + -0.014996136538684368, + 0.023344343528151512, + 0.04567771032452583, + -0.007988238707184792, + 0.03068157471716404, + -0.010569289326667786, + 0.024830171838402748, + 0.024600403383374214, + -0.010454406030476093, + 0.013081409968435764, + -0.011610900983214378, + -0.021751292049884796, + 0.006360720843076706, + 0.013364790007472038, + -0.011557288467884064, + 6.342530832625926e-5, + -0.013931549154222012, + -0.00804950948804617, + 0.0033871508203446865, + -0.02211891859769821, + -0.022072965279221535, + -0.021092625334858894, + -0.02222614362835884, + -0.030390536412596703, + -0.01609901897609234, + -0.027709919959306717, + 0.03495524451136589, + 0.01798311062157154, + 0.0078886728733778, + 0.004063049331307411, + -0.01395452581346035, + 0.0200203787535429, + -0.005621636752039194, + -0.015762027353048325, + 0.019484255462884903, + 0.021827880293130875, + -0.007053852081298828, + -0.006192225031554699, + -0.005361233837902546, + 0.005832256283611059, + -0.01819755882024765, + 0.00494382344186306, + -0.005495264660567045, + 0.04344131052494049, + -0.03562922775745392, + 0.05560365319252014, + -0.04034711420536041, + -0.05064068362116814, + -0.019300442188978195, + -0.013632851652801037, + 0.011434745974838734, + -0.0069389683194458485, + -0.06513132899999619, + 0.046504873782396317, + -0.02051054872572422, + 0.039948850870132446, + -0.06093425303697586, + -0.0074942391365766525, + 0.023650700226426125, + 0.007743153255432844, + -0.03043648973107338, + -0.018105652183294296, + 0.013916230760514736, + 0.03443443775177002, + 0.005238691344857216, + 0.012277225032448769, + -0.011901939287781715, + -0.04491182044148445, + 0.015256539918482304, + -0.022241462022066116, + 0.04338004067540169, + 0.012315520085394382, + 0.05676780641078949, + 0.026836805045604706, + -0.031125791370868683, + 0.013632851652801037, + 0.01953020878136158, + -0.013923889957368374, + 0.022838855162262917, + 0.010194002650678158, + -0.012070435099303722, + -0.019254488870501518, + 0.03618066757917404, + 0.050089240074157715, + 0.020786268636584282, + -0.03183041140437126, + -0.04638233035802841, + -0.009052826091647148, + 0.014406400732696056, + 0.006249666679650545, + -0.0011478784726932645, + -0.007448285352438688, + 0.019162580370903015, + 0.012039799243211746, + -0.0006754196947440505, + 0.0043043047189712524, + -0.007126611657440662, + -0.026530448347330093, + -0.023405615240335464, + 0.039642494171857834, + -0.02314521186053753, + -0.022287415340542793, + -0.017860567197203636, + 0.007448285352438688, + 0.01661982387304306, + 0.024416590109467506, + -0.04439101740717888, + -0.04724012687802315, + -0.03019140474498272, + 0.04046965762972832, + -0.02769460156559944, + 0.030421171337366104, + -0.03320901468396187, + 0.016910862177610397, + 0.027342291548848152, + -0.018948132172226906, + 0.04754648357629776, + -0.04154190421104431, + -0.02026546373963356, + 0.008608609437942505, + 0.005280815064907074, + 0.006008411291986704, + -0.047148220241069794, + 0.0035345847718417645, + -0.002177043817937374, + -0.004867234267294407, + -0.0034637399949133396, + 0.0015605019871145487, + 0.016068384051322937, + -0.0109062809497118, + -0.06019899621605873, + -0.012422744184732437, + -0.020250145345926285, + 0.03011481650173664, + -0.012843984179198742, + 0.015118679031729698, + 0.025396930053830147, + 0.01172578427940607, + -0.0032358875032514334, + -0.02798563987016678, + -0.006077341269701719, + 0.023374978452920914, + 0.03137087821960449, + 0.010462064296007156, + -0.014904229901731014, + 0.008823058567941189, + 0.017155947163701057, + 0.02061777375638485, + -0.023574110120534897, + 0.005403357557952404, + -0.007053852081298828, + 0.014544261619448662, + 0.014352789148688316, + 0.02605559676885605, + -0.006950456649065018, + -0.028491128236055374, + 0.02741888165473938, + 0.036027491092681885, + 0.02959400974214077, + -0.009435771033167839, + -0.027127843350172043, + 0.06745963543653488, + 0.03912168741226196, + -0.0401020273566246, + -0.00880008190870285, + -0.02581051178276539, + 0.03106451965868473, + -0.01023995690047741, + 0.002500632544979453, + 0.017477622255682945, + 0.03688528761267662, + -0.04754648357629776, + 0.01629815064370632, + -0.04181762412190437, + 0.02072499878704548, + 0.03170786798000336, + 0.01844264380633831, + 0.01689554564654827, + 0.030451808124780655, + 0.004648955538868904, + 0.02440127171576023, + -0.033576641231775284, + 0.021261122077703476, + 0.014551919884979725, + -0.004465141799300909, + 0.011718125082552433, + 0.00022282627469394356, + 0.002864430658519268, + 0.013395425863564014, + -0.00015030601934995502, + 0.02502930350601673, + -0.018044380471110344, + -0.007720176596194506, + 0.012706124223768711, + -0.04923144355416298, + 0.004357917234301567, + 0.021904468536376953, + -0.008593291975557804, + 0.025059938430786133, + 0.003021438140422106, + 0.0019118542550131679, + 0.02986973151564598, + -0.031401511281728745, + -0.03899914771318436, + -0.019484255462884903, + 0.007972920313477516, + -0.027189113199710846, + -0.02584114670753479, + 0.02216487191617489, + -0.024094916880130768, + 0.036732111126184464, + -0.003191848751157522, + 0.05557301640510559, + 0.006881526671350002, + -0.059770096093416214, + 0.009313228540122509, + 0.040622834116220474, + -0.017523575574159622, + -0.015716074034571648, + -0.03461825102567673, + -0.009068143554031849, + -0.023589428514242172, + 0.00960426777601242, + 0.017937157303094864, + -0.005832256283611059, + -0.029685916379094124, + 0.020694361999630928, + -0.01563182659447193, + -0.06837870925664902, + 0.033331554383039474, + 0.05428631976246834, + -0.033117108047008514, + 0.016849592328071594, + -0.0033852362539619207, + -0.028659623116254807, + 0.0007390843820758164, + -0.01931575872004032, + -0.015762027353048325, + -0.039182960987091064, + -0.0009138031746260822, + -0.025412248447537422, + -0.054194413125514984, + -0.03265757113695145, + -0.014452354051172733, + 0.004369405563920736, + -0.017309125512838364, + -0.0053191096521914005, + 0.03320901468396187, + -0.00862392783164978, + -0.005349745508283377, + 0.007589975371956825, + -0.007279789540916681, + -0.0091140978038311, + 0.004266010131686926, + -0.006376038771122694, + -0.005123807583004236, + 0.0009683728567324579, + -0.019836565479636192, + 0.018595822155475616, + 0.006716859992593527, + 0.04567771032452583, + 0.02015823870897293, + 0.013157999143004417, + -0.016497282311320305, + 0.02959400974214077, + 0.014620850794017315, + -0.01809033378958702, + -0.010814374312758446, + -0.021644067019224167, + 0.015264198184013367, + -0.015049749054014683, + 0.015019113197922707, + -0.01743166893720627, + -0.023252436891198158, + 0.029716553166508675, + -0.0026691285893321037, + -0.02398769184947014, + 0.005322939250618219, + 0.006146271713078022, + -0.020525867119431496, + -0.024003010243177414, + -0.024830171838402748, + 0.034066811203956604, + -0.0004978288779966533, + -0.0351390577852726, + 0.019009403884410858, + -0.001772079267539084, + 0.004078367259353399, + 0.01448298990726471, + 0.026377269998192787, + 0.045984067022800446, + 0.006693883333355188, + 0.002759120659902692, + 0.020770952105522156, + -0.02418682351708412, + 0.0009166752570308745, + -0.03587431460618973, + -0.0037834993563592434, + -0.011855985969305038, + 0.01724785566329956, + -0.021858515217900276, + 0.029333608224987984, + -0.023359661921858788, + -0.019331077113747597, + 0.04344131052494049, + -0.0030252677388489246, + -0.016114337369799614, + -0.027893733233213425, + -0.025013985112309456, + -0.007934626191854477, + 0.014306834898889065, + -0.0218125618994236, + -0.016880227252840996, + -0.028000958263874054, + 0.03762054443359375, + -0.0039673130959272385, + -0.03259630128741264, + -0.013732417486608028, + 0.030727528035640717, + 0.0187949538230896, + 0.0411742739379406, + 0.028322631493210793, + -0.007804424501955509, + 0.022364003583788872, + -0.03875406086444855, + -0.013816664926707745, + 0.06274175643920898, + 0.03973440080881119, + -0.003793072886765003, + 0.0015710329171270132, + 0.0007127568824216723, + 0.03305583447217941, + -0.01419961079955101, + 0.01665046066045761, + -0.012629535049200058, + 0.0017653777031227946, + -0.029226383194327354, + 0.05345916002988815, + -0.023543475195765495, + -0.01053865347057581, + 0.023466886952519417, + -0.03011481650173664, + 0.014758710749447346, + -0.002209594240412116, + 0.01942298375070095, + 0.004878722596913576, + -0.02576455846428871, + 0.023114576935768127, + -0.008562656119465828, + -0.019131945446133614, + -0.028904708102345467, + -0.033392827957868576, + -0.04344131052494049, + 0.005721202120184898, + 0.009512360207736492, + 0.0014915717765688896, + 0.005832256283611059, + 0.04776093363761902, + -0.0679498091340065, + 0.010860327631235123, + -0.014904229901731014, + 0.012928232550621033, + -0.004220056813210249, + -0.0026576402597129345, + 0.023589428514242172, + -0.03379109129309654, + -0.04678059369325638, + 0.001649536774493754, + 0.026561083272099495, + -0.0006155845476314425, + 0.02597900666296482, + -0.03516969457268715, + 0.013410743325948715, + 0.00874647032469511, + 0.0022823538165539503, + 0.010331863537430763, + -0.034802064299583435, + -0.000747221929486841, + -0.010653537698090076, + 0.018274148926138878, + -0.0062917908653616905, + -0.00018333505431655794, + 0.00011464423732832074, + -0.0031573837623000145, + -0.005097001325339079, + -0.02714315988123417, + -0.020878175273537636, + 0.005748008377850056, + 0.00034201800008304417, + 0.021184531971812248, + 0.00960426777601242, + -0.014184292405843735, + -0.015049749054014683, + -0.022670360282063484, + 0.04757712036371231, + -0.015264198184013367, + 0.052754539996385574, + -0.00837884284555912, + 0.015624167397618294, + -0.004503436386585236, + -0.02594837173819542, + -0.04923144355416298, + -0.007789106573909521, + -0.03976503759622574, + -0.033331554383039474, + -0.014460013248026371, + 0.011143707670271397, + -0.015616508200764656, + -0.01714063063263893, + 0.017446987330913544, + -0.0035747941583395004, + 0.006571340840309858, + -0.014421719126403332, + 0.030742846429347992, + -0.014873594045639038, + 0.004614490550011396, + -0.019346395507454872, + -0.012284884229302406, + 0.006747495848685503, + -0.006697712931782007, + -0.0018591992557048798, + 0.03875406086444855, + -0.011174342595040798, + -0.004503436386585236, + 0.019759975373744965, + 0.006077341269701719, + -0.015402059070765972, + 0.0071840533055365086, + -0.012529969215393066, + -0.010400793515145779, + -0.015356105752289295, + -0.005985434632748365, + -0.018381372094154358, + -0.021153897047042847, + 0.039428044110536575, + -0.007394673302769661, + -0.016773002222180367, + 0.023114576935768127, + 0.009297911077737808, + 0.029532739892601967, + 0.032902657985687256, + 0.010232297703623772, + 0.005862892139703035, + 0.020433960482478142, + 0.020633090287446976, + 0.031646598130464554, + -0.0655602291226387, + 0.01819755882024765, + -0.012078093364834785, + -0.021552160382270813, + 0.00013642424892168492, + 0.0352616012096405, + 0.005564194638282061, + 0.002184702781960368, + -0.003036756068468094, + 0.04901699349284172, + -0.027679283171892166, + 0.0028835779521614313, + 0.002713167341426015, + 0.017446987330913544, + 0.011756420135498047, + -0.015608849003911018, + 0.03293329477310181, + -0.025412248447537422, + -0.02271631360054016, + -0.001751974574290216, + 0.00221725320443511, + 0.024355318397283554, + -0.0022498033940792084, + -0.00272657023742795, + -0.02861366979777813, + -0.031110472977161407, + -0.01896345056593418, + 0.018029063940048218, + 0.0013154170010238886, + 0.043808937072753906, + 0.025075256824493408, + 0.02170533873140812, + 0.027955004945397377, + 0.0014925291761755943, + -0.008478408679366112, + 0.0012043628375977278, + -0.001985571114346385, + -0.0019099395722150803, + -0.015961159020662308, + -0.00680110789835453, + 0.025335658341646194, + -0.02997695654630661, + -0.014743393287062645, + -0.0055833421647548676, + -0.025856465101242065, + 0.0031650427263230085, + -0.021521523594856262, + -0.011166684329509735, + 0.00794228445738554, + 0.0266836266964674, + -0.0005078811664134264, + 0.025657333433628082, + 0.007023216225206852, + 0.022379321977496147, + -0.023160530254244804, + 0.041388723999261856, + 0.021092625334858894, + 0.05532793328166008, + 0.02240995690226555, + -0.003224399173632264, + 0.005165931768715382, + 0.00593565171584487, + 0.00420856848359108, + 0.028138818219304085, + -0.023650700226426125, + 0.04837364703416824, + -0.014000479131937027, + 0.024110233411192894, + 0.0026078573428094387, + 0.040163300931453705, + -0.020173557102680206, + -0.01358689833432436, + 0.03253503143787384, + -0.0002702157653402537, + 0.03232058137655258, + 0.0029237871058285236, + 0.012966526672244072, + 0.03186104819178581, + 0.012192977592349052, + 0.00029438917408697307, + 0.028276678174734116, + -0.014337470754981041, + 0.04132745414972305, + -0.0242634117603302, + 0.015792662277817726, + 0.025473520159721375, + -0.030972613021731377, + 0.008325230330228806, + -0.016681095585227013, + -0.019438302144408226, + 0.0004025712260045111, + -0.007390843704342842, + 0.027602694928646088, + -0.014865935780107975, + -0.005043389275670052, + 0.02195042371749878, + 0.008830717764794827, + 0.025856465101242065, + -0.00445365346968174, + -0.03376045450568199, + -0.014528943225741386, + -0.003731801640242338, + 0.009366841055452824, + 0.07144226878881454, + -0.011312203481793404, + 0.008777105249464512, + -0.0073372311890125275, + 0.02023482881486416, + 0.05563428997993469, + 0.01980592869222164, + -0.00923664029687643, + -0.012399767525494099, + 0.021368345245718956, + 0.019545527175068855, + 0.006536875851452351, + -0.042552877217531204, + -0.024983350187540054, + 0.00972681026905775, + 0.024983350187540054, + 0.028077546507120132, + 0.024079598486423492, + 0.0046987384557724, + 0.025151845067739487, + 0.02072499878704548, + 0.0187949538230896, + 0.006973433308303356, + 0.042614150792360306, + 0.0121163884177804, + 0.026974665001034737, + 0.016436010599136353, + 0.0006194139714352787, + -0.003082709386944771, + 0.00779293617233634, + 0.021781926974654198, + 0.00457619596272707, + 0.0017940986435860395, + -0.005238691344857216, + 0.02029609866440296, + 0.007704858668148518, + -0.004997435957193375, + -0.024876125156879425, + -0.019484255462884903, + -0.024799535050988197, + 0.025259070098400116, + 0.01078373845666647, + 0.0007936540641821921, + -0.01396984327584505, + 0.03464888781309128, + -0.039642494171857834, + -0.02037268877029419, + 0.01481232326477766, + 0.011388792656362057, + -0.010477382689714432, + 0.030528396368026733, + 6.694062903989106e-7, + 0.005721202120184898, + -0.001760590821504593, + -0.0068930150009691715, + 0.015792662277817726, + -0.0003929975791834295, + -0.021061990410089493, + -0.011036482639610767, + -0.02167470194399357, + -0.0176001638174057, + 0.00960426777601242, + -0.006483263336122036, + -0.02657640166580677, + -0.005185078829526901, + -0.016144972294569016, + 0.0060888295993208885, + -0.004457483068108559, + -0.015440353192389011, + -0.004166444297879934, + 0.014375765807926655, + -0.003159298561513424, + 0.001227339613251388, + -0.00046168838161975145, + 0.009144732728600502, + 0.012828666716814041, + 0.031677231192588806, + -0.018488597124814987, + 0.03694656118750572, + -0.004652785137295723, + -0.043288134038448334, + -0.013962184078991413, + 0.02293076179921627, + 0.002157896524295211, + 0.012966526672244072, + 0.0027208260726183653, + -0.004702568054199219, + 0.051804836839437485, + 0.006728348322212696, + -0.005345915909856558, + 0.002385749015957117, + -0.012912914156913757, + 0.00036738812923431396, + -0.033117108047008514, + 0.020357370376586914, + 0.01707935892045498, + -0.007095975801348686, + 0.007597634103149176, + -0.028092864900827408, + 0.0036130885127931833, + -0.006988751236349344, + 0.01966806873679161, + -0.003915615379810333, + 0.030804118141531944, + 0.014337470754981041, + -0.006487092934548855, + 0.012690805830061436, + 0.017263172194361687, + -0.028138818219304085, + 0.023329025134444237, + 0.018427327275276184, + -0.02314521186053753, + 0.01689554564654827, + 0.03425062447786331, + 0.011266250163316727, + -0.036517661064863205, + 0.03135555982589722, + -0.027051253244280815, + 0.012951209209859371, + -0.009719151072204113, + -0.024768900126218796, + -0.01050035934895277, + 0.009788081049919128, + -0.019009403884410858, + 0.0284758098423481, + 0.026775533333420753, + -0.02527438849210739, + 0.008976236917078495, + 0.0136251924559474, + 0.02524375170469284, + 0.0031573837623000145, + -0.021858515217900276, + -0.006402845028787851, + 0.013387766666710377, + -0.018151605501770973, + -0.058268953114748, + 0.005767155904322863, + -0.004166444297879934, + -0.043104320764541626, + 0.022624406963586807, + -0.04285923391580582, + 0.026852121576666832, + -0.047454576939344406, + 0.031156426295638084, + -0.0024738265201449394, + 0.011878962628543377, + 0.004603002220392227, + -0.0006117550656199455, + -0.0027686941903084517, + -0.02230273187160492, + 0.038692791014909744, + 0.022394638508558273, + -0.02521311677992344, + 0.007306595798581839, + -0.0009281635866500437, + -0.007295107468962669, + 0.02502930350601673, + 0.01868772879242897, + -0.007467432878911495, + 0.03452634438872337, + 0.050089240074157715, + -0.009305570274591446, + -0.00455704890191555, + 0.020709680393338203, + 0.006904503330588341, + -0.013020139187574387, + -0.022486547008156776, + -0.009228981100022793, + 0.01714063063263893, + 0.0006715902709402144, + 0.009282593615353107, + -0.013441379182040691, + 0.007957602851092815, + 0.010385476052761078, + -0.0046298084780573845, + 0.038202621042728424, + 0.027602694928646088, + 0.017967792227864265, + 0.02345156855881214, + 0.027265703305602074, + -0.01409238576889038, + 0.010530995205044746, + -0.015807980671525, + -0.014100044965744019, + -0.020801587030291557, + 0.012683147564530373, + 0.0024527644272893667, + -0.017155947163701057, + -0.004645125940442085, + -0.009297911077737808, + 0.03011481650173664, + 0.01002550683915615, + 0.03057434968650341, + -0.04478927701711655, + 0.013349472545087337, + -0.014291517436504364, + 0.010186344385147095, + -0.02211891859769821, + -0.0448811873793602, + -0.008899647742509842, + -0.0205871369689703, + -0.022134236991405487, + -0.008126098662614822, + -0.013456696644425392, + 0.0013948781415820122, + 0.04031647741794586, + 0.028674941509962082, + 0.016573870554566383, + -0.003555646864697337, + 0.006004581693559885, + 0.001616029068827629, + -0.022777585312724113, + 0.0003628406557254493, + -0.01188662089407444, + 0.037038467824459076, + -0.0026461516972631216, + 0.021521523594856262, + -0.0005533559015020728, + 0.019959107041358948, + -0.024676993489265442, + 0.012683147564530373, + -0.003364174161106348, + -0.0424303375184536, + -0.005472288001328707, + 0.035047151148319244, + -0.001379560329951346, + 0.012752077542245388, + -0.009688515216112137, + -0.02097008377313614, + -0.0021023694425821304, + 0.014774028211832047, + -0.007965262047946453, + 0.016037747263908386, + -0.03183041140437126, + -0.01460553240031004, + -0.04564707726240158, + -0.014544261619448662, + -0.01904003880918026, + 0.004273669328540564, + -0.013119705021381378, + 0.00011799501226050779, + -0.04390084743499756, + -0.0035939414519816637, + 0.005958628375083208, + -0.007873354479670525, + 0.000751051411498338, + -0.005116148851811886, + 0.01517995074391365, + 0.02355879358947277, + -0.010086778551340103, + -0.056920986622571945, + -0.011159025132656097, + 0.004468971397727728, + -0.02314521186053753, + -0.004323452245444059, + -0.02924170158803463, + -0.03046712651848793, + -0.01017102599143982, + -0.018289465457201004, + 0.00032047732383944094, + 0.031248334795236588, + 0.03988758102059364, + -0.019377030432224274, + 0.026729580014944077, + 0.035782404243946075, + -0.006724518723785877, + 0.03731418773531914, + 0.02573392167687416, + 0.020173557102680206, + 0.0058782100677490234, + -0.029915684834122658, + 0.046658050268888474, + 0.017201902344822884, + 0.008731151930987835, + 0.007743153255432844, + 0.007812083698809147, + -0.0175695288926363, + -0.007249154150485992, + 0.019024720415472984, + 0.008547338657081127, + 0.030666256323456764, + 0.015961159020662308, + -0.006410503759980202, + 0.0046106609515845776, + -0.0017835675971582532, + 0.00017806954565458, + 0.020173557102680206, + 0.006958115380257368, + 0.024385955184698105, + 0.02738824486732483, + -0.005866721738129854, + 0.006601976230740547, + -0.004445994738489389, + -0.00210428424179554, + 0.016665777191519737, + -0.024738265201449394, + -0.01798311062157154, + -0.004250692669302225, + 0.01914726383984089, + 0.02170533873140812, + -0.011802373453974724, + 0.0014925291761755943, + 0.004154955968260765, + -0.005479946732521057, + 0.04301241412758827, + 0.00874647032469511, + 0.012422744184732437, + -0.018013745546340942, + 0.0026499812956899405, + 0.002177043817937374, + 0.012407426722347736, + 0.016344103962183, + 0.04077601060271263, + -0.00886901281774044, + 0.012912914156913757, + 0.02714315988123417, + 0.006341573782265186, + 0.0016112421872094274, + -0.0013230758486315608, + 0.02156747691333294, + 0.002889322116971016, + -0.03887660428881645, + 0.022884808480739594, + -0.02110794372856617, + -0.0035575616639107466, + -0.005464628804475069, + -0.011679830960929394, + -0.02594837173819542, + -0.014574896544218063, + -0.014207269065082073, + 0.012928232550621033, + -0.024447226896882057, + -0.007011727895587683, + -0.0034484220668673515, + 0.012438062578439713, + -0.017554210498929024, + -0.013410743325948715, + 0.008976236917078495, + 0.0012943550245836377, + 0.010998188517987728, + -0.006134783383458853, + -0.015409717336297035, + -0.0194536205381155, + 0.005039559677243233, + 0.005464628804475069, + -0.012261907570064068, + 0.016206244006752968, + 0.0067704725079238415, + -0.02986973151564598, + -0.0027686941903084517, + 0.003835196839645505, + 0.008263958618044853, + -0.004855745937675238, + -0.028031593188643456, + 0.003015693975612521, + -0.014245564118027687, + -0.012001505121588707, + 0.0011153280502185225, + 0.02208828367292881, + -0.026989983394742012, + 0.03948931768536568, + 0.008777105249464512, + 0.030099498108029366, + 0.017523575574159622, + -0.00929025188088417, + -0.013303518295288086, + 0.02878216654062271, + 0.005564194638282061, + -0.027817144989967346, + -0.006081170868128538, + -0.009022190235555172, + -0.013533285818994045, + 0.012912914156913757, + -0.010883304290473461, + -0.03299456462264061, + 0.008057168684899807, + 0.02374260686337948, + 0.012529969215393066, + -0.015072725713253021, + 0.02986973151564598, + -0.014123021624982357, + -0.01023995690047741, + 0.0019664240535348654, + -0.004001778084784746, + 0.018611140549182892, + 0.013571579940617085, + -0.0005538346013054252, + 0.0019511061254888773, + 0.01616029068827629, + 0.014222587458789349, + -0.022624406963586807, + 0.011335180141031742, + -0.026561083272099495, + -0.016773002222180367, + -0.10753103345632553, + -0.012246590107679367, + 0.000979861244559288, + 0.02415618672966957, + 0.007455944549292326, + -0.0003307689621578902, + 0.010814374312758446, + 0.018565187230706215, + -0.008386501111090183, + -0.013556262478232384, + 0.02994631975889206, + -0.0031210039742290974, + 0.0157773457467556, + 0.020847540348768234, + -0.02051054872572422, + -0.011901939287781715, + -0.005985434632748365, + -0.019300442188978195, + 0.0019367457134649158, + -0.0017931412439793348, + 0.010929257608950138, + 0.005774814635515213, + 0.02489144168794155, + -0.020525867119431496, + 0.00446131220087409, + 0.02086285874247551, + -0.0049208467826247215, + 0.010017848573625088, + 0.007050022482872009, + -0.03939741104841232, + 0.003582452889531851, + 0.01591520570218563, + -0.013877936638891697, + -0.009650221094489098, + 0.0070615108124911785, + 0.017768660560250282, + 0.0024604233913123608, + -0.006862379144877195, + 0.019239170476794243, + -0.016665777191519737, + 0.012951209209859371, + -0.011465380899608135, + -0.01172578427940607, + 0.009504701942205429, + 0.015930524095892906, + -0.008401819504797459, + 0.01048504188656807, + -0.013441379182040691, + -0.030160769820213318, + 0.00680110789835453, + 0.0010942660737782717, + 0.001374773564748466, + -0.03565986454486847, + -0.019974425435066223, + 0.025687968358397484, + -0.0042583514004945755, + 0.013946866616606712, + -0.007949943654239178, + -0.004013266414403915, + 0.005893527530133724, + 0.0629868358373642, + 0.02600964345037937, + -0.000437993643572554, + 0.007570827845484018, + -0.013946866616606712, + -0.0020449277944862843, + -0.0068317437544465065, + 0.017799295485019684, + 0.02695934660732746, + 0.012476356700062752, + -0.009389817714691162, + -0.024937395006418228, + 0.005862892139703035, + 0.031677231192588806, + 0.00035135229700244963, + -0.0034924608189612627, + 0.007015557494014502, + 0.022517181932926178, + -0.012392109259963036, + -0.0199897438287735, + -0.0013479673070833087, + 0.014008138328790665, + 0.012813348323106766, + -0.00716107664629817, + -0.01534078735858202, + -0.00406687892973423, + 0.012637194246053696, + -0.01865709386765957, + -0.00420856848359108, + -0.0028376244008541107, + 0.03284138813614845, + 0.017584847286343575, + 0.04754648357629776, + -0.0010157623328268528, + -0.002831880236044526, + 0.02107730694115162, + -0.011564946733415127, + 0.039428044110536575, + 0.004181762225925922, + 0.0025542450603097677, + -0.002280439017340541, + -0.01396984327584505, + -0.000785995158366859, + -0.010584606789052486, + -0.008355866186320782, + -0.01907067373394966, + 0.008179711177945137, + 0.026254728436470032, + -0.024631040170788765, + -0.02924170158803463, + 0.007329572457820177, + 0.030804118141531944, + -0.015287174843251705, + -0.003704995382577181, + -0.01763080060482025, + -0.002701678778976202, + -0.009650221094489098, + -0.03046712651848793, + -0.019361712038517, + -0.002864430658519268, + 0.006483263336122036, + 0.022455910220742226, + 0.021230485290288925, + -0.017125312238931656, + 0.01262187585234642, + 0.022946080192923546, + -0.019254488870501518, + -0.020939446985721588, + 0.010822033509612083, + 0.02198105864226818, + 0.0030807945877313614, + 0.005652272142469883, + -0.024064280092716217, + 0.01497315987944603, + -0.030865387991070747, + 0.00203726883046329, + 0.03271884471178055, + -0.013127364218235016, + 0.03284138813614845, + -0.04834301024675369, + 0.007306595798581839, + -0.006502410862594843, + 0.022103600203990936, + 0.011656854301691055, + -0.0254888366907835, + -0.017125312238931656, + -0.0074789212085306644, + -0.012461039237678051, + 0.005598659627139568, + -0.01073012687265873, + -0.016941498965024948, + -0.011120731011033058, + 0.010837350971996784, + -0.009228981100022793, + -0.025013985112309456, + -0.027587376534938812, + -0.016114337369799614, + 0.006372209172695875, + -0.011143707670271397, + -0.03927486762404442, + -0.01004848349839449, + -0.00389646808616817, + 0.002988887717947364, + -0.02328307181596756, + 0.02366601675748825, + 0.0027476323302835226, + -0.0025523302610963583, + -0.001989400712773204, + -0.00012044825416523963, + -0.0066785654053092, + 0.0055220709182322025, + 0.003404383547604084, + -0.02061777375638485, + -0.015616508200764656, + 0.006456457078456879, + 0.003188019385561347, + -0.016466647386550903, + -0.0033048177137970924, + 0.025182479992508888, + -0.008080145344138145, + -0.0028337950352579355, + 0.033821724355220795, + -0.001166068366728723, + -0.0025982835795730352, + -0.014490649104118347, + 0.0007319041178561747, + -5.9446269006002694e-5, + 0.018182242289185524, + -0.007685711607336998, + -0.00704619288444519, + 0.03057434968650341, + 0.008570315316319466, + 0.0023589427582919598, + -0.0074942391365766525, + 8.616268314654008e-5, + -0.0016868739621713758, + 0.02720443159341812, + 0.05551174655556679, + -0.014107704162597656, + -0.025182479992508888, + -0.025182479992508888, + 0.015264198184013367, + 0.011794714257121086, + 0.005391869228333235, + 0.0008970493217930198, + 0.0010693746153265238, + -0.03709973767399788, + -0.0004657571844290942, + 0.01172578427940607, + -0.009374500252306461, + 0.004599172621965408, + 0.030559033155441284, + 0.008823058567941189, + -0.013180975802242756, + -0.018396690487861633, + -0.003978801425546408, + 0.009558313526213169, + -0.024217458441853523, + 0.013525626622140408, + 7.503334200009704e-5, + 0.03930550068616867, + -0.0030444147996604443, + 0.0008458303636871278, + -0.028429856523871422, + 0.011074776761233807, + 0.023895785212516785, + -0.008838376961648464, + -0.033331554383039474, + -0.020357370376586914, + 0.019652750343084335, + -0.009451089426875114, + -0.0048595755361020565, + -0.015065066516399384, + 0.01017102599143982, + -0.004763839300721884, + -0.012323178350925446, + 0.04172571748495102, + -0.0020047184079885483, + 0.025963690131902695, + -0.009688515216112137, + -0.010714808478951454, + -0.01904003880918026, + 0.00015545183850917965, + -0.011779396794736385, + 0.023298390209674835, + 0.0024412760976701975, + -0.02798563987016678, + -0.01787588559091091, + -0.012001505121588707, + 0.022318050265312195, + 0.00899155531078577, + -0.024217458441853523, + -0.012108729220926762, + 0.014881253242492676, + 0.01988251879811287, + 0.011350497603416443, + -0.006881526671350002, + -0.0182281956076622, + 0.018595822155475616, + -0.007413820363581181, + 0.01683427393436432, + -0.0070615108124911785, + 0.025121210142970085, + -0.03284138813614845, + 0.017554210498929024, + 0.0039022122509777546, + -0.015731392428278923, + 0.0057977912947535515, + -0.006609635427594185, + -0.009183027781546116, + 0.021016037091612816, + 0.01665046066045761, + -0.013962184078991413, + 0.009864670224487782, + 0.006686224602162838, + 0.00594331044703722, + 0.005656101740896702, + -0.004400040954351425, + -0.024707628414034843, + 0.0004578589287120849, + -0.0200510136783123, + 0.0009152392158284783, + -0.021582795307040215, + 0.0013115875190123916, + 0.01384730078279972, + 0.02086285874247551, + 0.027342291548848152, + 0.015065066516399384, + 0.02510589174926281, + -0.025442883372306824, + -0.003978801425546408, + 0.025856465101242065, + 0.011526652611792088, + -0.012782713398337364, + 0.0033335385378450155, + 0.003806476015597582, + -0.006226690020412207, + -0.0328107513487339, + -0.0004715013492386788, + -0.01432215329259634, + 0.0039481655694544315, + 0.013862619176506996, + -0.004419188480824232, + 0.008600951172411442, + -0.0070002395659685135, + -0.0002544192539062351, + 0.010898622684180737, + -0.00029486784478649497, + 0.0027974152471870184, + -0.002540841931477189, + 0.013150340877473354, + -0.0014743392821401358, + -0.004273669328540564, + -0.006391356699168682, + -0.019269805401563644, + 0.016910862177610397, + 0.03314774110913277, + 0.005874380469322205, + -0.014008138328790665, + -0.011878962628543377, + -0.025151845067739487, + 0.0014111533528193831, + 0.012001505121588707, + 0.015685439109802246, + -0.023788560181856155, + 0.014980819076299667, + 0.018427327275276184, + -0.009137074463069439, + 0.006429651286453009, + -0.02510589174926281, + -0.01795247383415699, + 0.0411742739379406, + -0.03734482079744339, + 0.02222614362835884, + 0.0017778234323486686, + -0.012315520085394382, + -0.010163367725908756, + 0.00813375785946846, + 0.00047030465793795884, + -0.0008984853629954159, + 0.017201902344822884, + 0.006601976230740547, + -0.00567907840013504, + -0.020541183650493622, + 0.0007534447940997779, + 0.021016037091612816, + -0.005054877605289221, + 0.025442883372306824, + 0.04166444391012192, + -0.011059459298849106, + 0.010232297703623772, + 0.01738571561872959, + 0.010753103531897068, + 0.0001323554606642574, + 0.015111020766198635, + 0.016007112339138985, + -0.013786030001938343, + 0.02191978693008423, + -0.00024747836869210005, + -0.025580743327736855, + 0.00024472596123814583, + -0.0018582419725134969, + -0.025228435173630714, + 0.02689807489514351, + 0.002908469410613179, + -0.003486716654151678, + 0.014306834898889065, + -0.008286935277283192, + 0.002785926917567849, + -0.027403563261032104, + 0.01160324178636074, + -0.010569289326667786, + -0.01743166893720627, + -0.010714808478951454, + -0.0182281956076622, + -0.025090573355555534, + 0.022593770176172256, + -0.0031324923038482666, + 0.007084487471729517, + 0.002418299438431859, + 0.0033143912442028522, + 0.011204978451132774, + -0.032688207924366, + -0.004863405134528875, + -0.011672171764075756, + 0.010860327631235123, + -0.0006562724593095481, + 0.0016696413513273, + -0.038692791014909744, + -0.007207029964774847, + -0.02331370860338211, + -0.01037781685590744, + 0.011411769315600395, + -0.0019118542550131679, + 0.029011933133006096, + 0.02100071869790554, + 0.0025925394147634506, + 0.027817144989967346, + -0.03572113439440727, + 0.0037394606042653322, + -0.011442404240369797, + 0.0007520087528973818, + -0.007402332033962011, + 0.02195042371749878, + -0.012323178350925446, + 0.006544534582644701, + 0.026392588391900063, + 0.029900366440415382, + 0.008386501111090183, + -0.008041850291192532, + -0.014337470754981041, + -0.0046298084780573845, + -0.0018974938429892063, + -0.00988764688372612, + -0.0008309912518598139, + -0.007949943654239178, + 0.012928232550621033, + 0.01724785566329956, + 0.01134283933788538, + 0.005449311342090368, + -0.02401832677423954, + 0.00531145092099905, + 0.012192977592349052, + -0.03467952460050583, + 0.0016198584344238043, + -0.005870550870895386, + -0.016190925613045692, + -0.0194536205381155, + 0.010845010168850422, + 0.031049203127622604, + 0.022593770176172256, + -0.008072486147284508, + 0.014176634140312672, + 0.001997059676796198, + 0.038968510925769806, + 0.005644613411277533, + 0.008600951172411442, + -0.024447226896882057, + -0.014145998284220695, + -0.02812349982559681, + -0.016849592328071594, + -0.027403563261032104, + 0.01383198332041502, + -0.02741888165473938, + -1.4293133062892593e-5, + 0.0007505727116949856, + 0.028659623116254807, + -0.01714063063263893, + 0.02184319868683815, + 0.0067360070534050465, + -0.008240981958806515, + -0.033882997930049896, + 0.015279516577720642, + -0.009328546933829784, + 0.001219680649228394, + 0.026239410042762756, + 0.012828666716814041, + 0.0016112421872094274, + -0.01830478385090828, + 0.00899155531078577, + 0.023191165179014206, + 0.007218518294394016, + -0.005774814635515213, + 0.011503675952553749, + -0.009558313526213169, + 0.014528943225741386, + 0.041878893971443176, + -0.004239204339683056, + -0.03860088437795639, + -0.028583034873008728, + 0.01599179394543171, + -0.05232563987374306, + -0.02191978693008423, + 0.010592265985906124, + 0.012315520085394382, + -5.95958590565715e-5, + -0.0028950662817806005, + -0.014490649104118347, + -0.011442404240369797, + -0.012039799243211746, + -0.00027524190954864025, + -0.013510309159755707, + -0.00094348139828071, + 0.017186583951115608, + 0.02345156855881214, + -0.006012240890413523, + 0.03428126126527786, + 0.0012713782489299774, + -0.00492467638105154, + 0.018534550443291664, + -0.005476117134094238, + 0.020311417058110237, + -0.016711732372641563, + 0.006839402485638857, + 0.008126098662614822, + -0.03173850476741791, + -0.006544534582644701, + 0.0021751290187239647, + 0.022884808480739594, + -0.0028165625408291817, + 0.0013814750127494335, + -0.024033645167946815, + -0.026989983394742012, + 0.0048595755361020565, + 0.002071733819320798, + -0.017125312238931656, + -0.01809033378958702, + 0.009175368584692478, + 0.015294834040105343, + -0.01262187585234642, + -0.0018898348789662123, + 0.0067704725079238415, + 0.002108113607391715, + 0.011204978451132774, + 0.0002996546681970358, + -0.0019338736310601234, + 0.009228981100022793, + 0.001959722489118576, + -0.013533285818994045, + -0.02187383361160755, + -0.021781926974654198, + -0.026744898408651352, + -0.009879987686872482, + -0.012821007519960403, + 0.014383424073457718, + 0.009175368584692478, + -0.0030176087748259306, + -0.011143707670271397, + -0.00016873526328708977, + 0.00037983382935635746, + 0.0013651999179273844, + 0.005158272571861744, + -0.021276438608765602, + 0.006012240890413523, + 0.02097008377313614, + -0.005870550870895386, + -0.007080657873302698, + -0.013441379182040691, + -0.00927493441849947, + -0.0032894997857511044, + -0.0176001638174057, + 0.005793961696326733, + -0.014873594045639038, + -0.0035250112414360046, + -0.00016993196913972497, + 0.11433213949203491, + 0.010079119354486465, + 0.01626751571893692, + 0.005809279624372721, + 0.00892262440174818, + -0.019821247085928917, + -0.00853967946022749, + 0.011787055060267448, + 0.01050035934895277, + -0.007586145773530006, + 0.0011316032614558935, + -0.011940233409404755, + 0.035322871059179306, + 0.005633125081658363, + -0.022624406963586807, + 0.0054607996717095375, + 0.029915684834122658, + 0.011825350113213062, + 0.005755667574703693, + 0.013441379182040691, + -0.012752077542245388, + -0.011917256750166416, + 0.002812732942402363, + -0.00389646808616817, + -0.012330837547779083, + 0.013923889957368374, + -0.00853967946022749, + -0.0025350977666676044, + 0.026208775117993355, + 0.033576641231775284, + -0.00010195918002864346, + -0.012706124223768711, + -0.004756180103868246, + -0.014597873203456402, + 0.002864430658519268, + 0.02146025374531746, + -0.016926180571317673, + 0.0011890450259670615, + -0.00021217561152298003, + 0.006165418773889542, + -0.010768420994281769, + 0.0005677163717336953, + 0.004721715115010738, + 0.02527438849210739, + 0.003925188910216093, + -0.012215954251587391, + -0.0005701097543351352, + -0.004296645987778902, + 0.0015049749054014683, + 0.006215201690793037, + -0.004120490979403257, + -0.021398982033133507, + 0.009489383548498154, + 0.0015901802107691765, + 0.016114337369799614, + 0.001477211364544928, + 0.0073372311890125275, + -0.02314521186053753, + 0.0006270728772506118, + -0.007007898297160864, + -0.01616029068827629, + 0.0028969808481633663, + -0.01041611097753048, + -0.025366295129060745, + -0.0163747388869524, + -0.01122029684484005, + -0.024906760081648827, + -0.01956084370613098, + -0.0015930522931739688, + -0.009527678601443768, + -0.01805969886481762, + 0.0013537114718928933, + -0.005491435062140226, + -0.02542756497859955, + 0.0069542862474918365, + 0.010431429371237755, + 0.007321913726627827, + 0.009956576861441135, + 0.00988764688372612, + 0.01648196391761303, + 0.00680110789835453, + 0.012767395004630089, + -0.012545286677777767, + -0.022915445268154144, + -0.007080657873302698, + -0.015409717336297035, + 0.018749000504612923, + -0.018136287108063698, + 0.023543475195765495, + -0.018243512138724327, + -0.02208828367292881, + -0.006529216654598713, + 0.003343112301081419, + -0.006437310017645359, + 0.015509283170104027, + -0.014528943225741386, + -0.013449037447571754, + -0.0034292747732251883, + 0.007693370338529348, + 0.02875153161585331, + 0.014804664067924023, + 0.012598899193108082, + -0.007042363286018372, + -0.0035460731014609337, + -0.022609088569879532, + 0.0007970048463903368, + 0.025534790009260178, + 0.001288610859774053, + -0.0170027706772089, + 0.0014341300120577216, + -0.006272643338888884, + -0.017967792227864265, + 0.015202927403151989, + 0.005411016754806042, + -0.03137087821960449, + 0.01053865347057581, + 0.015608849003911018, + 0.007157247047871351, + -0.012629535049200058, + -0.011626218445599079, + -0.024523815140128136, + 0.010339521802961826, + -0.003109515644609928, + -0.007191712036728859, + 0.019239170476794243, + 0.005613977555185556, + -0.015608849003911018, + 0.003749034134671092, + -0.018105652183294296, + 0.0034484220668673515, + 0.005625465884804726, + 0.022042330354452133, + 0.017799295485019684, + 0.015241221524775028, + 0.018994085490703583, + -0.00866222195327282, + -0.0009080589516088367, + 0.010308886878192425, + 0.022425275295972824, + -0.010653537698090076, + 0.01187130343168974, + 0.016451328992843628, + 0.0029735700227320194, + -0.0014618935529142618, + 0.012813348323106766, + 0.020066332072019577, + -0.023926420137286186, + -0.014475330710411072, + -0.008363524451851845, + 0.002435531932860613, + 0.023972373455762863, + -0.03685465455055237, + 0.021536841988563538, + -0.019468937069177628, + 0.012874620035290718, + 0.002872089622542262, + -0.011335180141031742, + 0.028031593188643456, + -0.004637467209249735, + 0.014145998284220695, + -0.007413820363581181, + -0.005388040095567703, + -0.0003719356027431786, + -0.0023187336046248674, + 0.0011995760723948479, + 0.005587171297520399, + 0.011955550871789455, + 0.01956084370613098, + 0.01966806873679161, + -0.020173557102680206, + 0.004710226785391569, + 0.009489383548498154, + -0.0008262044284492731, + -0.04586152359843254, + 0.004116661846637726, + 0.010615242645144463, + 0.011036482639610767, + -0.0067704725079238415, + -0.005721202120184898, + 0.022670360282063484, + -0.017401032149791718, + -0.01721721887588501, + 0.0005294218426570296, + 0.0022134236060082912, + 0.0011919171083718538, + -0.03054371476173401, + -0.001935788313858211, + -0.011572605930268764, + 0.010194002650678158, + -0.017937157303094864, + -0.015363764017820358, + 0.01588456891477108, + -0.0036130885127931833, + -0.011465380899608135, + 0.009251957759261131, + 0.002341710263863206, + 0.010684172622859478, + 0.02352815680205822, + -0.0066785654053092, + -0.018764318898320198, + 0.0005107532488182187, + -0.0006194139714352787, + 0.01347967330366373, + 0.001534653129056096, + -0.0011383048258721828, + -0.0039022122509777546, + 0.002630834002047777, + -0.003310561878606677, + -0.012392109259963036, + 0.00814907532185316, + -0.04445228725671768, + -0.033331554383039474, + 0.0136251924559474, + -0.0038620030973106623, + -0.007823571562767029, + -0.00277443858794868, + 0.002008548006415367, + 0.029226383194327354, + -0.0003635586763266474, + 0.00843245442956686, + 0.005828427150845528, + 0.01099052932113409, + 0.03354600444436073, + -0.003143980633467436, + -0.0028337950352579355, + 0.010707149282097816, + 0.00984935276210308, + 0.01249933335930109, + 0.01384730078279972, + 0.013533285818994045, + 0.02551947347819805, + -0.004897870123386383, + 0.0023378808982670307, + 0.02538161166012287, + -0.001739528845064342, + 0.03259630128741264, + 0.006724518723785877, + -0.0019625944551080465, + 0.013571579940617085, + -0.01770738884806633, + -0.018779635429382324, + 0.005349745508283377, + -0.011787055060267448, + -0.010837350971996784, + 0.01707935892045498, + -0.012813348323106766, + 0.009497042745351791, + 0.0011813861783593893, + 0.003306732513010502, + -2.955858872155659e-5, + -0.01086798682808876, + -0.021276438608765602, + 0.004361746832728386, + 0.01931575872004032, + 0.022517181932926178, + 0.0033948097843676805, + -0.018948132172226906, + 0.02401832677423954, + -0.0031152598094195127, + -0.01387027744203806, + 0.00011757616448448971, + 0.04126618057489395, + -0.017293808981776237, + -0.022486547008156776, + -0.015417376533150673, + 0.016910862177610397, + -0.0023761754855513573, + -0.004603002220392227, + 0.017064040526747704, + 0.007233836222440004, + -0.007256812881678343, + 0.00443450640887022, + 0.0018075016560032964, + 0.015807980671525, + -0.00904516689479351, + -0.004468971397727728, + 0.018427327275276184, + -0.019729340448975563, + -0.00866222195327282, + -0.007027045823633671, + -0.001706978539004922, + 0.007390843704342842, + -0.012943550013005733, + -0.018013745546340942, + 0.00843245442956686, + -0.02211891859769821, + 0.011411769315600395, + 0.030252676457166672, + -0.022992033511400223, + 0.014184292405843735, + -0.006146271713078022, + -0.022425275295972824, + 0.0073716966435313225, + -0.0035862824879586697, + 0.004882552195340395, + -0.0004796389548573643, + -0.009979553520679474, + -0.0009851267095655203, + 0.024983350187540054, + 0.0005672376719303429, + -0.006889185402542353, + 0.007570827845484018, + -0.00531145092099905, + 0.0030176087748259306, + 0.012935890816152096, + 0.01372475828975439, + 0.02138366363942623, + 0.007452114950865507, + -0.008646904490888119, + 0.007004069164395332, + 0.0014829555293545127, + -0.001989400712773204, + 0.01174876093864441, + -0.002062160288915038, + -0.012422744184732437, + 0.0038658324629068375, + -0.0008644989575259387, + 0.013487332500517368, + -0.005361233837902546, + 0.0047370330430567265, + -0.0032109960447996855, + 0.0022115090396255255, + -0.005862892139703035, + 0.009160051122307777, + 0.0028146477416157722, + 0.01199384592473507, + -0.003544158535078168, + -0.007272130809724331, + -0.0003008513886015862, + -0.033331554383039474, + 0.014996136538684368, + -0.017339762300252914, + -0.00830991193652153, + -0.0016725134337320924, + -0.0023761754855513573, + 0.01546332985162735, + -0.012522310018539429, + 0.004020925145596266, + -0.00505870720371604, + 0.005621636752039194, + -0.015019113197922707, + -0.0046987384557724, + -0.0019625944551080465, + -0.015011454932391644, + 0.006414333358407021, + -0.011534311808645725, + 0.005805450491607189, + -0.015976477414369583, + 0.015899887308478355, + 0.020954765379428864, + 0.010454406030476093, + -0.010056142695248127, + 0.017646117135882378, + 0.0022364002652466297, + -0.020066332072019577, + -0.002238315064460039, + 0.015945840626955032, + 0.020326735451817513, + -0.025933053344488144, + 0.003827537875622511, + -0.018534550443291664, + 0.0045953430235385895, + -0.0008386501576751471, + -0.017783978953957558, + -0.0030099498108029366, + 0.007203200366348028, + -0.006716859992593527, + 0.012667829170823097, + -0.012675488367676735, + 0.0081720519810915, + -0.010423770174384117, + -0.03176913782954216, + -0.011710465885698795, + 0.0054607996717095375, + -0.017538893967866898, + 0.014819981530308723, + 0.00011081478442065418, + -0.011059459298849106, + -0.00867753941565752, + 0.00013331281661521643, + 0.014306834898889065, + 0.03000759147107601, + -0.008248641155660152, + -0.006617294158786535, + 0.008761787787079811, + 0.0061079771257936954, + 0.030620303004980087, + 0.05152911692857742, + 0.007536362856626511, + -0.011511335149407387, + -0.01721721887588501, + 0.012453380040824413, + 0.012698465026915073, + 0.018503915518522263, + -0.0009927855571731925, + 0.013510309159755707, + -0.01661982387304306, + 0.01323458831757307, + 0.006326255854219198, + 0.006663247477263212, + -0.015118679031729698, + -0.0034924608189612627, + 0.02769460156559944, + 0.014138339087367058, + 0.01053865347057581, + -0.025933053344488144, + -0.0030846241861581802, + 0.010439087636768818, + 0.018457962200045586, + -0.023252436891198158, + -0.0025389271322637796, + 0.006778131239116192, + -0.019377030432224274, + 0.0007113208412192762, + 0.006226690020412207, + 0.005793961696326733, + -0.0013307348126545548, + -0.013632851652801037, + 0.008057168684899807, + -0.010860327631235123, + 0.02029609866440296, + 0.006816425826400518, + 0.011947892606258392, + 0.00015126337530091405, + 0.023604746907949448, + -0.013150340877473354, + 0.015325469896197319, + -0.003249290632084012, + -0.007172564975917339, + 0.005077854264527559, + -0.0019080247730016708, + 0.0008008342701941729, + -0.007130440790206194, + 0.003352685831487179, + -0.010737785138189793, + -0.008210347034037113, + 0.017416350543498993, + -0.00554887717589736, + 0.0005739392363466322, + 0.017860567197203636, + -0.015379082411527634, + -0.008509043604135513, + 0.0024699969217181206, + -0.010584606789052486, + -9.495845733908936e-5, + -0.006069682538509369, + -0.006372209172695875, + 0.01623687893152237, + -0.009504701942205429, + 0.004193250555545092, + -0.01868772879242897, + -0.0006112763658165932, + 0.0010282080620527267, + 0.006762813311070204, + -0.01370944082736969, + -0.012162341736257076, + 0.010232297703623772, + -0.008715834468603134, + 0.02527438849210739, + -0.012882279232144356, + -0.0075823161751031876, + 0.0003393852384760976, + -0.014299176633358002, + 0.00259445421397686, + 0.0039826310239732265, + -0.007092146202921867, + 0.007655075751245022, + 0.014391083270311356, + -0.007678052876144648, + 0.009106438606977463, + 0.0035345847718417645, + 0.00395199516788125, + 0.00445365346968174, + 0.004514924716204405, + -0.00265189609490335, + 0.03161596134305, + 0.002133005065843463, + 0.026070913299918175, + 0.004131979309022427, + -0.015264198184013367, + -0.02888939157128334, + -0.0036724451929330826, + -0.0073104253970086575, + -0.0033373681362718344, + 0.006360720843076706, + 0.009826375171542168, + 0.005001265089958906, + 0.02342093177139759, + -0.0072300066240131855, + 0.0029812289867550135, + -0.004771498031914234, + 0.015762027353048325, + 0.021398982033133507, + -0.0014628509525209665, + 0.018810272216796875, + -0.005529729649424553, + -0.0020142921712249517, + 0.013157999143004417, + -0.0012752077309414744, + -0.016803639009594917, + 0.008118439465761185, + 0.009611926041543484, + -0.001096180872991681, + 0.002787841483950615, + 0.013517968356609344, + 0.011779396794736385, + 0.005238691344857216, + 0.0031746162567287683, + 0.023512840270996094, + -0.0041511268354952335, + 0.002558074425905943, + -0.013203952461481094, + -0.013188634999096394, + 0.01651260070502758, + -0.0058131092227995396, + 0.024585086852312088, + 0.009366841055452824, + -0.0037796697579324245, + 0.018779635429382324, + -0.002910383976995945, + -0.0016581530217081308, + -0.02064840868115425, + -0.013517968356609344, + 0.014460013248026371, + 0.0026001983787864447, + -0.0012656340841203928, + 0.011250931769609451, + 0.021169213578104973, + -0.0009458748390898108, + -0.012223613448441029, + -0.007574657443910837, + 0.011159025132656097, + -0.002994632115587592, + -0.0070002395659685135, + 0.021965740248560905, + 0.012575922533869743, + 0.020081650465726852, + 0.009121756069362164, + 0.029532739892601967, + 0.006261155009269714, + 0.007965262047946453, + 0.005763326305896044, + 0.017860567197203636, + -0.006395185831934214, + 0.01029356848448515, + -0.015325469896197319, + 0.00012338017404545099, + 0.004564707633107901, + 0.000622286053840071, + 0.008210347034037113, + -0.02271631360054016, + -0.002648066496476531, + 0.03719164431095123, + 0.00752870412543416, + 0.010446746833622456, + -0.006410503759980202, + -0.0014082812704145908, + 0.019009403884410858, + -0.0021023694425821304, + 0.01994379051029682, + 0.0005284644430503249, + -0.00987232942134142, + -0.006054364610463381, + 0.00031425445922650397, + -0.014858276583254337, + -0.0031861045863479376, + 0.021061990410089493, + -0.002378090051934123, + 0.017523575574159622, + 0.021199850365519524, + -0.005441652145236731, + 0.001653366256505251, + -0.006483263336122036, + 0.021061990410089493, + -0.014490649104118347, + -0.007551680784672499, + -0.03351537138223648, + -0.010002530179917812, + 0.01109775435179472, + -0.015432693995535374, + 0.0006830786005593836, + 0.0018496256088837981, + -0.0014015797059983015, + -0.006655588746070862, + -0.012215954251587391, + 0.010400793515145779, + 0.010140391066670418, + -0.004281328059732914, + 0.03330092132091522, + -0.03777372092008591, + 0.03667083755135536, + 0.0002033199998550117, + -0.004794474691152573, + 0.0012215954484418035, + -0.0007649331819266081, + -0.0046987384557724, + -0.0006155845476314425, + -0.006590487901121378, + -0.009611926041543484, + -0.018274148926138878, + -0.0007342975586652756, + -0.02187383361160755, + 0.0029850583523511887, + -0.0022938421461731195, + 0.005131466779857874, + 0.005005094688385725, + -0.010109755210578442, + 0.000748658028896898, + 0.005123807583004236, + 0.001943447277881205, + 0.01025527436286211, + -0.007164905779063702, + 0.006632612086832523, + -0.0212458036839962, + 0.0033297091722488403, + -0.012246590107679367, + 0.012346155941486359, + 0.01001018937677145, + 0.010561630129814148, + -0.013441379182040691, + -0.013732417486608028, + 0.008340547792613506, + -0.006100317928940058, + 0.009948917664587498, + 0.001809416338801384, + -0.01014804933220148, + 0.01609901897609234, + 0.0027572058606892824, + 0.009320887736976147, + -0.019790612161159515, + 0.01563948392868042, + 0.01174876093864441, + -0.0022938421461731195, + -0.027097206562757492, + 0.004430676810443401, + -9.645434329286218e-5, + -0.024003010243177414, + -0.012284884229302406, + 0.005231032148003578, + -0.018703047186136246, + 0.014574896544218063, + -0.012392109259963036, + 0.004357917234301567, + 0.017508257180452347, + 0.001673470833338797, + -0.017998427152633667, + -0.0012713782489299774, + 4.9214449973078445e-5, + -0.011404110118746758, + 0.0020640750881284475, + -0.015026772394776344, + 0.009091121144592762, + -0.017401032149791718, + 0.01139645092189312, + 0.00015964031626936048, + -0.004511095117777586, + -0.002590624848380685, + -0.036548297852277756, + 0.04616788029670715, + 0.0020774779841303825, + -0.015386740677058697, + -0.030650939792394638, + 0.015356105752289295, + 0.014766369946300983, + 0.0033488564658910036, + -0.011503675952553749, + -0.0019989742431789637, + 0.00693513872101903, + 0.003555646864697337, + -0.015202927403151989, + 0.00496297050267458, + 0.004442165140062571, + -0.02801627665758133, + 0.011166684329509735, + -0.011166684329509735, + 0.007957602851092815, + -0.010316545143723488, + -0.014352789148688316, + 0.013127364218235016, + -0.02184319868683815, + -0.005893527530133724, + 0.01612965390086174, + 0.022149553522467613, + 0.004177933093160391, + -1.3597548786492553e-5, + 0.024340001866221428, + 0.011419427581131458, + -0.00779293617233634, + 0.00916770938783884, + 0.0018381372792646289, + -0.015080384910106659, + 0.005077854264527559, + -0.019545527175068855, + -0.017646117135882378, + 0.0020813075825572014, + 0.005927992984652519, + -0.012001505121588707, + -0.015662461519241333, + -0.0050280713476240635, + -0.002245974028483033, + -0.02374260686337948, + -0.007513386197388172, + -0.0013853044947609305, + -0.009558313526213169, + -0.002627004636451602, + -0.006406674161553383, + 0.011143707670271397, + 0.013671145774424076, + 0.005656101740896702, + 0.002900810446590185, + 0.009650221094489098, + -0.0029046398121863604, + 0.01767675392329693, + -0.0011995760723948479, + -0.01767675392329693, + -0.02447786182165146, + 0.0005715457955375314, + -0.003433104371652007, + -0.011143707670271397, + 0.028491128236055374, + 0.0071840533055365086, + 0.00209471071138978, + 0.0013441379414871335, + 0.003659042064100504, + -0.018810272216796875, + -0.013349472545087337, + 0.013502649962902069, + 0.03219803795218468, + -0.008669881150126457, + 0.004917017184197903, + -0.0002740452182479203, + -0.006544534582644701, + -0.010079119354486465, + 0.0017931412439793348, + -0.009068143554031849, + -0.0024412760976701975, + -0.013387766666710377, + 0.005702055059373379, + -0.006356891244649887, + 0.028460493311285973, + -0.03428126126527786, + -0.011189660988748074, + -0.023436250165104866, + 0.007145758718252182, + 0.008792423643171787, + 0.00019578076899051666, + -0.002986973151564598, + 0.013387766666710377, + -0.013272883370518684, + 0.004503436386585236, + 0.00028649091836996377, + -0.006839402485638857, + 0.02051054872572422, + -0.024631040170788765, + 0.01609901897609234, + -0.0212458036839962, + 0.022854173555970192, + -0.014643827453255653, + 0.005828427150845528, + -0.006287961266934872, + 0.016282832249999046, + 0.005456970073282719, + 0.0047983042895793915, + 0.01675768569111824, + -0.0009602352511137724, + 0.01605306565761566, + 0.0023723458871245384, + -0.015532259829342365, + -0.0067092012614011765, + 0.01665046066045761, + -0.013311177492141724, + -0.012667829170823097, + -0.01002550683915615, + -0.023895785212516785, + 0.007873354479670525, + -0.025795193389058113, + -0.0035096933133900166, + 0.011427086777985096, + 0.0015442267758771777, + 0.0042123980820178986, + -0.004185591824352741, + -0.004438335541635752, + -0.02875153161585331, + -0.010630561038851738, + -0.014460013248026371, + -0.0014025371056050062, + 0.01787588559091091, + 0.018274148926138878, + 0.00569822546094656, + 0.015111020766198635, + 0.0076014637015759945, + 0.020571820437908173, + -0.0027189115062355995, + 0.0035345847718417645, + 0.016344103962183, + 0.009160051122307777, + -0.006571340840309858, + -0.028276678174734116, + -0.013272883370518684, + -0.0049055288545787334, + 0.012537628412246704, + -0.00031186104752123356, + -0.033882997930049896, + -0.005227203015238047, + -0.007693370338529348, + 0.02633131667971611, + -0.01014804933220148, + -0.003850514767691493, + -0.0017739939503371716, + -0.0075823161751031876, + 0.021199850365519524, + 0.005016583018004894, + -0.014659144915640354, + -0.00011195165279787034, + 0.003111430210992694, + -0.008286935277283192, + 0.0007548808353021741, + -0.0007362122996710241, + 0.0003183232620358467, + 0.013494991697371006, + -0.0038696618285030127, + 0.003731801640242338, + 0.016696413978934288, + -0.011863644234836102, + -0.017799295485019684, + 0.011250931769609451, + -0.00016227306332439184, + -0.006824084557592869, + 0.008470749482512474, + -0.024738265201449394, + -0.004468971397727728, + -0.00830991193652153, + -0.009213663637638092, + 0.014061749912798405, + 0.010630561038851738, + -0.027127843350172043, + -0.009826375171542168, + 0.004181762225925922, + 0.02075563371181488, + 0.0034465075004845858, + -0.0035575616639107466, + -0.02461572177708149, + 0.0072300066240131855, + 0.011978528462350368, + -0.0010674599325284362, + 0.004162615165114403, + -0.006517728324979544, + -0.020219510421156883, + -0.014888912439346313, + -0.034097447991371155, + 0.004694908857345581, + 0.028031593188643456, + 0.012958867475390434, + 0.0009114097338169813, + -0.005388040095567703, + 0.008976236917078495, + 0.001841966761276126, + -0.00867753941565752, + 0.0148506173864007, + -0.014283858239650726, + -0.011587923392653465, + 0.02777119167149067, + -0.019714022055268288, + 0.012698465026915073, + 0.013494991697371006, + -0.02472294680774212, + -0.023099258542060852, + -0.0009272062452509999, + 0.00248148525133729, + -0.0019913155119866133, + -0.016956817358732224, + 0.009650221094489098, + 0.0010387389920651913, + 0.013648169115185738, + -0.0049208467826247215, + 0.0187949538230896, + -0.0008640202577225864, + 0.0029027252458035946, + -0.0025963690131902695, + -0.0015729477163404226, + 0.006119465455412865, + 0.014957842417061329, + 0.002900810446590185, + 3.0934796086512506e-5, + -0.0024929738137871027, + 0.0025485006626695395, + 0.00987232942134142, + -0.01988251879811287, + -0.0025676479563117027, + 0.023007351905107498, + 0.014490649104118347, + -0.011159025132656097, + 0.013655828312039375, + -0.002184702781960368, + 0.007249154150485992, + -0.027005299925804138, + 0.009703832678496838, + -0.005384210497140884, + 0.001559544587507844, + 0.006525387521833181, + 0.004120490979403257, + -0.001288610859774053, + -0.00999487191438675, + -0.000910931034013629, + -0.005437823012471199, + 0.00899155531078577, + -0.022838855162262917, + -0.001027250662446022, + 0.004055390600115061, + -0.00792696699500084, + -0.013862619176506996, + -0.00504721887409687, + 0.013824324123561382, + -0.0063990154303610325, + 0.013525626622140408, + 0.021965740248560905, + 0.010033166036009789, + -0.02271631360054016, + 0.0001635894295759499, + -0.016635142266750336, + -0.014735734090209007, + -0.0004001778142992407, + -0.0014178549172356725, + 0.02527438849210739, + 0.014942524023354053, + -0.006533046253025532, + -0.013540945015847683, + -0.0031746162567287683, + -0.019377030432224274, + -0.012568263337016106, + 0.019683387130498886, + -0.01041611097753048, + 0.011878962628543377, + -0.005732690449804068, + -0.010469723492860794, + -0.013311177492141724, + 0.018994085490703583, + -0.009956576861441135, + -0.004097514320164919, + 0.005104660522192717, + 0.022593770176172256, + 0.015241221524775028, + 0.009190686047077179, + -0.019790612161159515, + -0.0007342975586652756, + 0.0016974048921838403, + 0.011626218445599079, + -0.009757445193827152, + 0.0011603242019191384, + -0.006242007948458195, + 0.0009228981216438115, + 0.007750812452286482, + 0.009879987686872482, + -0.0038945532869547606, + -0.001305843354202807, + -0.001993230078369379, + 0.001763463020324707, + 0.0035786235239356756, + -0.02320648357272148, + -0.020556502044200897, + 0.004959141369909048, + -0.022777585312724113, + 0.014161315746605396, + -0.0351390577852726, + 0.003122918773442507, + -0.015838615596294403, + 0.004867234267294407, + -0.007103634532541037, + -0.005411016754806042, + -0.00457619596272707, + -0.0001136868741014041, + 0.0020774779841303825, + 0.0065828291699290276, + 0.033576641231775284, + 0.006988751236349344, + 0.016773002222180367, + -0.014084726572036743, + -0.003601600183174014, + 0.003582452889531851, + 0.02394173853099346, + -0.019974425435066223, + 0.0047791567631065845, + -0.001498273340985179, + -0.0106229018419981, + 0.00518890842795372, + 0.011266250163316727, + 0.0078886728733778, + 0.0015930522931739688, + 0.021613430231809616, + -0.0034886314533650875, + -0.008532020263373852, + -0.03575177118182182, + 0.007279789540916681, + 0.007578487042337656, + -0.007011727895587683, + -0.024661675095558167, + 0.004162615165114403, + 0.010699491016566753, + 0.01411536242812872, + -0.012468697503209114, + 0.005839915480464697, + 0.008034192025661469, + -0.013472014106810093, + -0.012552945874631405, + 0.0035843676887452602, + -0.012713782489299774, + 0.00829459447413683, + 0.008371183648705482, + -0.022501863539218903, + 0.017339762300252914, + 0.01792183890938759, + 0.004928505513817072, + -0.013900913298130035, + -0.006257325876504183, + -0.006636441685259342, + 0.031110472977161407, + 0.03250439465045929, + 0.025059938430786133, + -0.012231271713972092, + -0.009619585238397121, + 0.0032014225143939257, + 0.027863098308444023, + 2.5893681595334783e-5, + -0.004430676810443401, + 0.00593565171584487, + 0.014084726572036743, + -0.010645878501236439, + -0.004323452245444059, + -0.018994085490703583, + -0.03317837789654732, + 0.011741101741790771, + 0.012139365077018738, + 0.00012625227100215852, + -0.0033488564658910036, + -0.017416350543498993, + 0.007111293729394674, + -0.011465380899608135, + 0.03265757113695145, + 0.0005806407425552607, + -0.0014580640709027648, + 0.016788320615887642, + -0.0003929975791834295, + 0.015562895685434341, + -0.003465654794126749, + -0.010423770174384117, + -0.01665046066045761, + 0.002935275435447693, + -0.006950456649065018, + 0.0071687353774905205, + 0.0033852362539619207, + -0.029823778197169304, + -0.022517181932926178, + 0.0005050090840086341, + -0.012958867475390434, + 0.0007256813114508986, + 0.006502410862594843, + 0.009366841055452824, + 0.004771498031914234, + 0.006330085452646017, + 0.013364790007472038, + -0.0014417889760807157, + -0.001518378034234047, + -0.0026174308732151985, + -0.022992033511400223, + -0.0038658324629068375, + -0.010002530179917812, + -0.017799295485019684, + -0.0012091497192159295, + 0.002602113177999854, + -0.0038830649573355913, + 0.00505870720371604, + 0.025412248447537422, + 0.00972681026905775, + -7.682839350309223e-5, + -0.016252197325229645, + -0.012683147564530373, + 0.012713782489299774, + 0.01917789876461029, + 0.003465654794126749, + 0.0013929634587839246, + 0.014291517436504364, + -0.01448298990726471, + -0.01187130343168974, + -0.0020679044537246227, + 0.002967825857922435, + -0.011404110118746758, + 0.005836085882037878, + 0.0005658016307279468, + 0.008340547792613506, + -0.01819755882024765, + 0.0035939414519816637, + -0.006552193779498339, + -0.0066287824884057045, + 0.012330837547779083, + 0.005215714685618877, + -0.0073525491170585155, + 0.00874647032469511, + 0.00309419771656394, + 0.0035173522774130106, + 0.0009104523924179375, + 0.005169760901480913, + 0.010393134318292141, + 0.002468082355335355, + 0.008715834468603134, + 0.002835709834471345, + 0.014437036588788033, + -0.0006414333474822342, + 0.011733443476259708, + -0.0055680242367088795, + -0.013732417486608028, + -0.025366295129060745, + 0.005100830923765898, + -0.020112285390496254, + 0.006617294158786535, + 0.00740616163238883, + 0.010423770174384117, + -0.0011986186727881432, + -0.0015978391747921705, + 0.014659144915640354, + 0.02086285874247551, + -0.02012760378420353, + -0.005357404239475727, + 0.008761787787079811, + 0.0010128902504220605, + -0.0036322358064353466, + 0.003008035011589527, + 0.0023436250630766153, + -0.013066092506051064, + -0.01567777991294861, + 0.009458747692406178, + 0.01472807489335537, + 0.003643724136054516, + 0.01272910088300705, + 0.016068384051322937, + 0.013678804971277714, + -0.009183027781546116, + -0.0030597327277064323, + -0.020035697147250175, + -0.012552945874631405, + -0.027357609942555428, + 0.016910862177610397, + 0.02352815680205822, + 0.010806715115904808, + 0.010699491016566753, + 0.010645878501236439, + -0.011296885088086128, + 0.01602243073284626, + 0.010638219304382801, + 0.01172578427940607, + -0.009581290185451508, + -0.004109002649784088, + -0.006908332463353872, + 0.011189660988748074, + -0.023252436891198158, + -0.0031822752207517624, + 0.00754785118624568, + -0.0016648545861244202, + 0.006176907103508711, + -0.03936677426099777, + 0.01833541877567768, + 0.0037624372635036707, + 0.007881013676524162, + -0.010163367725908756, + 0.006464116275310516, + 0.0027648648247122765, + 0.029410196468234062, + -0.030206723138689995, + 0.002799329813569784, + 0.009251957759261131, + -0.0012570178369060159, + 0.012928232550621033, + -0.012859302572906017, + 0.005231032148003578, + -0.00445365346968174, + 0.023298390209674835, + 0.0076014637015759945, + 0.007295107468962669, + 0.005790132563561201, + 0.00019972989684902132, + 0.0015423120930790901, + -0.009282593615353107, + -0.004193250555545092, + -0.015930524095892906, + -0.006866208743304014, + 0.03682401776313782, + -0.0037586078979074955, + -0.009389817714691162, + -0.0067360070534050465, + 0.001555715105496347, + 0.006827914156019688, + 0.030727528035640717, + -0.0032684379257261753, + -0.007252983283251524, + -0.006406674161553383, + -0.013456696644425392, + -0.00252935360185802, + -0.0010195918148383498, + -0.009611926041543484, + -0.0011114986846223474, + -0.004445994738489389, + -0.018503915518522263, + -0.017523575574159622, + 0.009466406889259815, + 0.0021617261227220297, + -0.020801587030291557, + 0.0013374363770708442, + 0.006284131668508053, + -0.0056905667297542095, + -0.002410640474408865, + 0.01534078735858202, + 0.007252983283251524, + -0.0033239650074392557, + -0.019622115418314934, + 0.0027935856487601995, + -0.00493616471067071, + 0.019101310521364212, + 0.0025197798386216164, + -0.005464628804475069, + 0.016788320615887642, + -0.014345129951834679, + -0.00048155366675928235, + 0.028828119859099388, + -0.006701542064547539, + -0.0033450268674641848, + -0.006663247477263212, + 0.0008994427043944597, + 0.015356105752289295, + -0.029011933133006096, + -0.0015317810466513038, + 0.013303518295288086, + 0.004851916339248419, + 0.0033258795738220215, + -0.01609901897609234, + 0.009144732728600502, + -0.009542996063828468, + 0.023466886952519417, + -0.0022766096517443657, + 0.017722707241773605, + 0.003502034582197666, + 0.004668102599680424, + -0.015716074034571648, + -0.0035096933133900166, + 0.0061692483723163605, + 0.0014714671997353435, + -0.00829459447413683, + -0.007881013676524162, + 0.0011363901430740952, + -0.0003736109647434205, + 0.00987232942134142, + -0.0212458036839962, + 0.011947892606258392, + -0.008960919454693794, + -0.0005447396542876959, + -0.0033048177137970924, + 0.0068930150009691715, + -0.018427327275276184, + -0.003563305828720331, + -0.0054531404748559, + 0.0057518379762768745, + 0.010040825232863426, + 0.002856771694496274, + -0.006330085452646017, + 0.029931001365184784, + 0.02097008377313614, + 0.019162580370903015, + -0.008646904490888119, + -0.005809279624372721, + -0.01914726383984089, + -0.02051054872572422, + -5.077016612631269e-5, + -0.010354840196669102, + 0.024171505123376846, + 0.022256778553128242, + -0.021337710320949554, + -0.01011741440743208, + -0.02853708155453205, + -0.00388689455576241, + -0.0001359455636702478, + 0.006364550441503525, + 0.005441652145236731, + -0.0014092385536059737, + 0.017615482211112976, + -0.014888912439346313, + -0.017293808981776237, + -0.005606318823993206, + 0.0059394813142716885, + 0.05168229341506958, + 0.02015823870897293, + 0.016573870554566383, + -0.012821007519960403, + 0.012568263337016106, + -0.0176001638174057, + 0.010753103531897068, + -0.008914966136217117, + -0.022670360282063484, + -0.009389817714691162, + 0.0037624372635036707, + -0.02314521186053753, + 0.02026546373963356, + 0.013418402522802353, + -0.011304544284939766, + -0.003015693975612521, + 0.007245324552059174, + -0.0006849933415651321, + -0.013755394145846367, + 0.0060007525607943535, + -0.010508018545806408, + -0.001219680649228394, + -0.005365063436329365, + -0.007019386626780033, + 0.004817451350390911, + 0.0016189011512324214, + -0.011243273504078388, + -0.008930283598601818, + -0.0023627723567187786, + -0.005759496707469225, + 0.027863098308444023, + 0.00018082196766044945, + -0.03982630744576454, + -0.001280951895751059, + -0.006594317499548197, + 0.008585632778704166, + 0.000609840324614197, + 0.009879987686872482, + 0.005774814635515213, + -0.015333128161728382, + -0.026392588391900063, + -0.008853694424033165, + 0.014145998284220695, + -0.009581290185451508, + -0.0031286629382520914, + -0.004947653040289879, + 0.007949943654239178, + 0.01819755882024765, + 0.005449311342090368, + 0.007463603280484676, + 0.00017998427210841328, + -0.00433111097663641, + -0.009588949382305145, + 0.0005179334548301995, + -0.018948132172226906, + -0.0018601566553115845, + 0.019897835329174995, + -0.028276678174734116, + -0.0093974769115448, + -0.00396348349750042, + 0.007191712036728859, + -0.005185078829526901, + 0.01423790492117405, + 0.015317810699343681, + -0.013165658339858055, + 0.0254582017660141, + -0.007965262047946453, + 0.00825630035251379, + -0.001457106787711382, + -0.01865709386765957, + 0.02317584678530693, + -0.0063377441838383675, + -0.011465380899608135, + -0.029165111482143402, + -0.008248641155660152, + -0.010194002650678158, + -0.017584847286343575, + -0.019759975373744965, + -0.0032914145849645138, + 0.002381919650360942, + 0.008807741105556488, + -0.003582452889531851, + -0.0006466988124884665, + -0.00862392783164978, + -0.0066287824884057045, + 0.004767668433487415, + -0.0023474544286727905, + 0.0017491024918854237, + 0.0007591890171170235, + 0.006322426255792379, + -0.016773002222180367, + -0.006839402485638857, + -0.010071460157632828, + 0.0048136222176253796, + 0.009742127731442451, + -0.01099052932113409, + -0.018258830532431602, + -0.00667090667411685, + 0.010454406030476093, + 0.004154955968260765, + 0.007191712036728859, + -0.004503436386585236, + 0.00022725408780388534, + 0.009542996063828468, + -0.014559579081833363, + -0.01574670895934105, + 0.0047983042895793915, + 0.00277443858794868, + -0.00033411974436603487, + 0.012591239996254444, + -0.013073751702904701, + 0.0007333402172662318, + 0.004599172621965408, + 0.013249906711280346, + 0.009550655260682106, + 0.02412555180490017, + 0.00480213388800621, + -0.005112319253385067, + 0.012032140046358109, + 0.01109775435179472, + -0.006203713361173868, + 0.012637194246053696, + 0.012843984179198742, + -0.009175368584692478, + -0.004641296807676554, + 0.014306834898889065, + -0.004185591824352741, + 0.01858050376176834, + -0.007348719518631697, + -0.018274148926138878, + -0.0028337950352579355, + -0.008034192025661469, + 0.003835196839645505, + -0.00964256189763546, + 0.011901939287781715, + -0.010822033509612083, + 0.007325742859393358, + -0.021199850365519524, + 0.018595822155475616, + 0.0016610251041129231, + -0.017477622255682945, + 0.04252224415540695, + 0.00777378911152482, + -0.0005437822546809912, + -0.011250931769609451, + 0.004013266414403915, + -0.014368106611073017, + 0.010017848573625088, + 0.00020308066450525075, + 0.004851916339248419, + -0.003465654794126749, + -0.005927992984652519, + -0.017094677314162254, + 0.006973433308303356, + -0.007080657873302698, + 0.011618559248745441, + -0.0037605224642902613, + 0.007716346997767687, + -0.030773481354117393, + 0.02345156855881214, + 0.016206244006752968, + 0.006345402915030718, + -0.011327520944178104, + 0.010638219304382801, + 0.0005002222605980933, + 0.005284644663333893, + 0.005836085882037878, + -0.0009779464453458786, + 0.010454406030476093, + -0.0011852156603708863, + -0.0013297774130478501, + -0.006682395003736019, + -0.009757445193827152, + 0.014628509059548378, + -0.004511095117777586, + -0.006992580834776163, + -0.002636578166857362, + -0.005162102170288563, + -0.00997189525514841, + -0.01481232326477766, + 0.0013967928243800998, + 0.01623687893152237, + 0.023359661921858788, + -0.006215201690793037, + -0.009573631919920444, + 0.008685198612511158, + -0.0032282285392284393, + 0.0065215579234063625, + -0.0010875645093619823, + 0.012644852511584759, + 0.028276678174734116, + 0.025795193389058113, + -0.02061777375638485, + -0.01187130343168974, + -0.010278251022100449, + 0.001121072331443429, + -0.006356891244649887, + 0.005571853835135698, + -0.04034711420536041, + 0.005456970073282719, + 0.015386740677058697, + -0.011549629271030426, + -0.005342086311429739, + -0.01472807489335537 + ], + "2a902471-31a0-4af2-95fb-633cca7eb7ce": [ + -0.018860653042793274, + -0.03149152919650078, + 0.0013491363497450948, + 0.00291242147795856, + -0.02468549646437168, + -0.03999517858028412, + 0.023019030690193176, + 0.02669459953904152, + 0.0025386346969753504, + 0.056877877563238144, + 0.0025035920552909374, + 0.004555525258183479, + -0.02561996318399906, + -0.016540061682462692, + 0.006486756727099419, + 0.026367535814642906, + -0.03663109615445137, + 0.01233496144413948, + 0.010138964280486107, + -0.021555032581090927, + 0.07326219230890274, + -0.015146148391067982, + -0.04145917296409607, + 0.03323586657643318, + 0.0025503155775368214, + 0.0006740815006196499, + 0.015753552317619324, + 0.009383603930473328, + -0.016508912667632103, + 0.002694379072636366, + 0.03853118047118187, + 0.026071622967720032, + 0.021041076630353928, + -0.019203292205929756, + -0.00047769746743142605, + -0.046349551528692245, + -0.0031791336368769407, + 0.01043487899005413, + 0.005852098111063242, + 0.011774281039834023, + -0.029809489846229553, + 0.0426739826798439, + 0.012280450202524662, + -0.011361557990312576, + -0.032176803797483444, + -0.012911215424537659, + -0.020542694255709648, + -0.024592049419879913, + -0.002542528323829174, + -0.022458350285887718, + 0.02473221905529499, + 0.014390788041055202, + 0.032145656645298004, + 0.026056047528982162, + 0.010715218260884285, + -0.014001427218317986, + -0.009220072068274021, + 0.056846726685762405, + 0.00029445436666719615, + -0.059774722903966904, + 0.003644420299679041, + -0.007370606530457735, + 0.04613151028752327, + 0.014203894883394241, + 0.020651714876294136, + -0.01666465774178505, + -0.014406362548470497, + 0.020589416846632957, + -0.03429492935538292, + 0.017957335337996483, + 0.048841461539268494, + 0.028797149658203125, + -0.035914670675992966, + 0.026305239647626877, + -0.030806254595518112, + -0.008698328398168087, + 0.031071018427610397, + 0.006148012354969978, + 0.0021804224234074354, + 0.022131286561489105, + -0.02149273455142975, + -0.008706115186214447, + 0.03385884687304497, + 0.024124816060066223, + 0.049215249717235565, + 0.02812744863331318, + -0.04843652620911598, + -0.05463515594601631, + 0.0035237183328717947, + -0.0190786961466074, + 0.01449980866163969, + 0.007409542798995972, + 0.0016713327495381236, + 0.0185647401958704, + -0.005641843192279339, + 0.02706838585436344, + 0.058217279613018036, + -0.01618184894323349, + 0.013487470336258411, + -0.013651002198457718, + 0.030634934082627296, + 0.031709570437669754, + -0.015644531697034836, + 0.023003457114100456, + -0.00883071031421423, + -0.022193584591150284, + 0.025324048474431038, + 0.008807349018752575, + -0.030666083097457886, + 0.015994956716895103, + -0.0038215797394514084, + -0.010053304955363274, + 0.008044200949370861, + -0.014920319430530071, + -0.024436306208372116, + -0.035883523523807526, + -0.026398684829473495, + -0.03373425081372261, + -0.0057119280099868774, + -0.025308474898338318, + 0.03476216271519661, + -0.016446614637970924, + -0.0027488896157592535, + 0.0013870990369468927, + -0.0036132715176790953, + 0.02334609441459179, + -0.02094762958586216, + 0.011673047207295895, + 0.025900302454829216, + 0.031180040910840034, + -0.02093205600976944, + -0.029373405501246452, + 0.004602248780429363, + -0.01025577262043953, + 0.007876776158809662, + -0.0013316151453182101, + -0.02088533155620098, + 0.04105423763394356, + -0.04223789647221565, + 0.0409296452999115, + -0.030837401747703552, + -0.05039890483021736, + -0.009212284348905087, + -0.01213249284774065, + 0.015566658228635788, + 0.011229175142943859, + -0.047377463430166245, + 0.05102188512682915, + -0.03909185901284218, + 0.039278753101825714, + -0.07170474529266357, + 0.011595174670219421, + 0.013884618878364563, + 0.019156567752361298, + -0.03326701745390892, + -0.010209049098193645, + 0.007452372461557388, + 0.023891199380159378, + -7.805474160704762e-5, + 0.026414260268211365, + -0.024124816060066223, + -0.06628484278917313, + -0.006038991268724203, + -0.026772473007440567, + 0.05267277732491493, + 0.01521623320877552, + 0.047377463430166245, + 0.03560318425297737, + -0.027208557352423668, + 0.008059775456786156, + 0.017895037308335304, + -0.0018874281086027622, + 0.031148891896009445, + 0.0063543738797307014, + -0.00417784508317709, + -0.011135729029774666, + 0.030214425176382065, + 0.06609794497489929, + 0.02943570166826248, + -0.03647535294294357, + -0.03279978409409523, + -0.010364793241024017, + 0.011735345236957073, + -0.0024159858003258705, + -0.0075886487029492855, + 0.00523690739646554, + 0.023050179705023766, + 0.015037127770483494, + -0.0022660817485302687, + -0.0033329313155263662, + -0.0037106117233633995, + -0.03049476444721222, + -0.029373405501246452, + 0.04937099292874336, + -0.004878695122897625, + -0.042175598442554474, + -0.011229175142943859, + 0.008620455861091614, + 0.007884562946856022, + 0.026788046583533287, + -0.029575873166322708, + -0.039309900254011154, + -0.03139808401465416, + 0.05510238930583, + -0.035447437316179276, + 0.03769015893340111, + -0.025791281834244728, + 0.0010279134148731828, + 0.025931451469659805, + -0.02661672793328762, + 0.027847109362483025, + -0.04413798078894615, + -0.015099424868822098, + -0.00929794367402792, + -0.004680120851844549, + 0.014172745868563652, + -0.03426378220319748, + 0.010419304482638836, + 0.005190183874219656, + -0.010232411324977875, + -0.01759912446141243, + -0.002713847206905484, + 0.008674966171383858, + -0.028906172141432762, + -0.05958782881498337, + -0.012996874749660492, + -0.022987881675362587, + 0.020729586482048035, + -0.012825556099414825, + 0.02482566609978676, + 0.039247602224349976, + -0.00418173847720027, + 0.017240911722183228, + -0.03289322927594185, + -0.006120757199823856, + -0.003196655074134469, + 0.03846888244152069, + 0.021196819841861725, + 0.0069929263554513454, + -0.0076392656192183495, + 0.00809871219098568, + 0.010738580487668514, + -0.021648479625582695, + 0.018658185377717018, + 0.0025736771058291197, + 0.029591446742415428, + 0.004310227930545807, + 0.031071018427610397, + 0.008729476481676102, + -0.02147716097533703, + 0.013907980173826218, + 0.031226763501763344, + 0.012296024709939957, + -0.011431642808020115, + -0.030089829117059708, + 0.06746850162744522, + 0.0457577221095562, + -0.030775105580687523, + -0.010652921162545681, + -0.007440691348165274, + 0.0150215532630682, + -0.008807349018752575, + 0.009025391191244125, + 0.0005636002751998603, + 0.030837401747703552, + -0.04292317107319832, + 0.024000221863389015, + -0.04890375956892967, + 0.016991719603538513, + 0.04186411201953888, + 0.018829505890607834, + 0.017209762707352638, + 0.02420268952846527, + 0.0023653688840568066, + 0.02037137560546398, + -0.013619853183627129, + 0.016446614637970924, + 0.008674966171383858, + -0.006646394729614258, + 0.014842446893453598, + -0.006876118015497923, + -0.0025658898521214724, + -0.00510841840878129, + 0.015948232263326645, + 0.01471785083413124, + -0.01233496144413948, + -0.011821004562079906, + 0.009811900556087494, + -0.058310724794864655, + 0.004076611250638962, + 0.0099754324182868, + -0.018393419682979584, + 0.03750326484441757, + -0.0052758436650037766, + -0.01666465774178505, + 0.04557082802057266, + -0.029607022181153297, + -0.01812865398824215, + -0.013907980173826218, + 0.00883071031421423, + -0.019763972610235214, + -0.014102661050856113, + 0.02138371393084526, + -0.02133699133992195, + 0.02051154524087906, + -0.00160611467435956, + 0.03825083747506142, + 0.003048697719350457, + -0.04809388890862465, + 0.024109242483973503, + 0.04485440254211426, + -0.010543899610638618, + -0.007456265855580568, + -0.03772130608558655, + -0.01378338411450386, + -0.031180040910840034, + 0.021508309990167618, + 0.01380674634128809, + -0.0044309296645224094, + -0.030790679156780243, + 0.030634934082627296, + -0.011735345236957073, + -0.08061333000659943, + 0.033111270517110825, + 0.052112095057964325, + -0.032581739127635956, + 0.02040252462029457, + 0.0007782356115058064, + -0.03952794522047043, + 0.005369290243834257, + -0.023112477734684944, + -0.015722403302788734, + -0.03286208212375641, + 0.0006458528223447502, + -0.027473323047161102, + -0.0692751333117485, + -0.03438837453722954, + -0.013931341469287872, + 0.02371988072991371, + -0.005961119197309017, + -0.017256485298275948, + 0.017287634313106537, + 0.01954592950642109, + -0.014297340996563435, + 0.011898876167833805, + 0.00024201229098252952, + -0.0020441459491848946, + 0.01190666388720274, + -0.004442610777914524, + -0.0021745820995420218, + 0.00109897181391716, + -0.008168797008693218, + -0.0005957225803285837, + 0.0053770774975419044, + 0.04317236319184303, + 0.01520844642072916, + 0.006556841544806957, + -0.02518387883901596, + 0.023532988503575325, + 0.017848314717411995, + -0.00726547883823514, + -0.015769125893712044, + -0.018829505890607834, + -0.0028442831244319677, + -0.020760735496878624, + 0.0005222306353971362, + -0.0049682483077049255, + -0.013503044843673706, + 0.018813930451869965, + 0.005474417470395565, + -0.01755240000784397, + 0.015076063573360443, + -0.013020236976444721, + -0.02479451708495617, + -0.007748286705464125, + -0.017941761761903763, + 0.04507244750857353, + 0.0001977224601432681, + -0.018938526511192322, + 0.015590020455420017, + 0.004427036270499229, + -0.008511434309184551, + 0.03002753108739853, + 0.02619621716439724, + 0.028750427067279816, + 0.005552290007472038, + 0.00607792753726244, + 0.010590623132884502, + -0.016446614637970924, + -0.015815850347280502, + -0.030245574191212654, + 0.005077269393950701, + -0.008854072540998459, + 0.02136814035475254, + -0.017287634313106537, + 0.028921745717525482, + -0.004310227930545807, + -0.006183054763823748, + 0.050679247826337814, + 0.00882292352616787, + -0.012077982537448406, + -0.03139808401465416, + -0.019670525565743446, + 0.0038176861125975847, + 0.01708516664803028, + -0.022068990394473076, + -0.00853479653596878, + -0.025884728878736496, + 0.037814754992723465, + -0.026071622967720032, + -0.01717861369252205, + 0.0043296958319842815, + 0.012451769784092903, + 0.01474899984896183, + 0.04420027881860733, + 0.034014590084552765, + -0.001681066700257361, + 0.027255279943346977, + -0.03270633518695831, + 0.0017881410894915462, + 0.040213219821453094, + 0.02370430715382099, + -0.008729476481676102, + 0.004571099765598774, + 0.001135961152613163, + 0.02571341022849083, + -0.014725638553500175, + 0.01495925523340702, + -0.011377132497727871, + 0.01543427538126707, + -0.006564628798514605, + 0.04996282234787941, + -0.017723718658089638, + -0.007775541860610247, + 0.004427036270499229, + -0.03242599591612816, + 0.006225884892046452, + -0.021788649260997772, + 0.005248588044196367, + -0.0016450508264824748, + -7.245767483254895e-5, + 0.0059455446898937225, + -0.027815960347652435, + -0.0013617905788123608, + -0.02714625932276249, + -0.027815960347652435, + -0.05809268355369568, + -0.008129860274493694, + -0.012054621241986752, + -0.004874801728874445, + -0.0023283795453608036, + 0.04625610262155533, + -0.07108177244663239, + -0.0040921857580542564, + -0.005287524312734604, + 0.01764584705233574, + -0.02183537371456623, + 0.0024782835971564054, + 0.033516205847263336, + -0.05566306784749031, + -0.04815618693828583, + -0.012973513454198837, + 0.01613512635231018, + -0.0023517413064837456, + 0.02147716097533703, + -0.04768895357847214, + -0.003950068727135658, + 0.005692460108548403, + 0.0076120104640722275, + 0.02752004563808441, + -0.029653744772076607, + -0.012031259015202522, + -0.01909426972270012, + 0.010987771674990654, + -0.0005076295929029584, + -0.0195147804915905, + -0.01048160158097744, + 0.006218097638338804, + -0.0007942967349663377, + -0.033578503876924515, + -0.031148891896009445, + 0.013541980646550655, + -0.012560790404677391, + 0.020776310935616493, + 0.003001974429935217, + 0.01164968591183424, + -0.013830107636749744, + -0.04201985523104668, + 0.028065150603652, + -0.004528270103037357, + 0.03139808401465416, + 0.004481546580791473, + 0.0015350562753155828, + 0.012023472227156162, + -0.01565231755375862, + -0.044418320059776306, + 0.0010950781870633364, + -0.0343572273850441, + -0.031071018427610397, + -0.0008609748329035938, + 0.016913847997784615, + -0.01427397970110178, + -0.024389581754803658, + 0.010045517235994339, + -0.010138964280486107, + 0.023906774818897247, + -0.02479451708495617, + 0.011564025655388832, + -0.01764584705233574, + 0.013487470336258411, + -0.026024898514151573, + -0.020667290315032005, + -0.0015097478171810508, + 0.011758706532418728, + -0.0015214286977425218, + 0.045041296631097794, + -0.010785304009914398, + 0.002410145476460457, + 0.030712807551026344, + 0.0019312312360852957, + -0.015161722898483276, + -0.012467344291508198, + -0.027473323047161102, + -0.0035490267910063267, + -0.031569402664899826, + 0.0022310393396764994, + 0.0005324513767845929, + -0.02005988545715809, + 0.04413798078894615, + -0.020106609910726547, + -0.015480998903512955, + 0.041116535663604736, + 0.022614095360040665, + 0.017521250993013382, + 0.015037127770483494, + -0.004084398504346609, + 0.004337483085691929, + 0.02189766988158226, + 0.01161853689700365, + 0.015068275853991508, + -0.04818733409047127, + 0.015994956716895103, + -0.012654237449169159, + -0.021056650206446648, + -0.0066113523207604885, + 0.037814754992723465, + -0.005050014238804579, + 0.021056650206446648, + 9.776614751899615e-5, + 0.03613271564245224, + -0.02518387883901596, + 0.009780751541256905, + -0.005879353266209364, + 0.008488073013722897, + 0.011268111877143383, + -0.025028133764863014, + 0.04226904734969139, + -0.036350756883621216, + -0.02942012809216976, + -0.011384920217096806, + 0.0014474500203505158, + 0.031678423285484314, + 0.013028023764491081, + 1.9528895791154355e-5, + -0.014881382696330547, + -0.01169640850275755, + -0.023922348394989967, + 0.02005988545715809, + 0.004010419826954603, + 0.03336046263575554, + 0.03175629675388336, + 0.015076063573360443, + 0.025962600484490395, + 0.012537429109215736, + 0.0016070881392806768, + 0.020760735496878624, + -0.025993749499320984, + 0.0009164587827399373, + -0.031600549817085266, + -0.005034439731389284, + 0.03756556287407875, + -0.01814422942698002, + -0.025106007233262062, + -0.010107815265655518, + -0.037316370755434036, + 0.010536112822592258, + -0.024374008178710938, + 0.00026281876489520073, + -0.00039471485069952905, + 0.021648479625582695, + -0.003728132927790284, + 0.03385884687304497, + 0.01430512871593237, + 0.021555032581090927, + -0.023128051310777664, + 0.03379654884338379, + 0.0059689064510166645, + 0.037752456963062286, + 0.02808072604238987, + 0.014157171361148357, + 0.006377735640853643, + 0.0032511656172573566, + 0.0023381137289106846, + 0.005852098111063242, + -0.02903076633810997, + 0.029716042801737785, + -0.004419249016791582, + -0.0062570334412157536, + -0.0026593366637825966, + 0.023174775764346123, + -0.020231205970048904, + -0.006210310384631157, + 0.04245593771338463, + 0.003691143589094281, + 0.013074747286736965, + -0.0037806967739015818, + 0.0021687415428459644, + 0.017863890156149864, + -0.002900740597397089, + 0.002606772817671299, + 0.013394023291766644, + -0.02893732115626335, + 0.044916700571775436, + -0.02183537371456623, + 0.02096320316195488, + 0.0342014841735363, + -0.02761349268257618, + 0.0006190842250362039, + -0.022582946345210075, + -0.019281163811683655, + 0.009601646102964878, + -0.008083137683570385, + 0.024638773873448372, + -0.012225939892232418, + 0.0030078147538006306, + 0.010138964280486107, + -0.0014211682137101889, + 0.007658733520656824, + -0.004719057120382786, + -0.028205322101712227, + -0.01496704202145338, + -0.02040252462029457, + 0.015582232736051083, + 0.06429131329059601, + -0.01356534194201231, + 0.014577681198716164, + -0.02529289945960045, + 0.025947026908397675, + 0.04896605759859085, + 0.03251944109797478, + -0.017349932342767715, + -0.014733425341546535, + 0.019374610856175423, + 0.014943680725991726, + 0.002902687294408679, + -0.04578886926174164, + -0.010754154995083809, + 0.007810584735125303, + 0.0019818481523543596, + 0.034108035266399384, + 0.03283093124628067, + -0.0034633674658834934, + 0.02752004563808441, + 0.02195996791124344, + 0.026772473007440567, + 0.009687305428087711, + 0.03747211769223213, + 0.007950754836201668, + 0.02996523305773735, + 0.005123992450535297, + -0.010489389300346375, + -0.004777461290359497, + 0.0065840971656143665, + 0.020200056955218315, + -3.117931157703424e-7, + -0.007382287178188562, + -0.006739841308444738, + 0.007242117077112198, + 0.004726844374090433, + -0.008799562230706215, + -0.016758102923631668, + -0.02336166799068451, + -0.03510480001568794, + 0.029170937836170197, + 0.010271347127854824, + 0.006517905741930008, + -0.006572416052222252, + 0.034108035266399384, + -0.034419525414705276, + -0.012023472227156162, + 0.02333051897585392, + 0.009492624551057816, + 0.0007329723448492587, + 0.010987771674990654, + 0.011509515345096588, + 0.007168138865381479, + 9.277745994040743e-5, + -0.011011132970452309, + 0.017910612747073174, + -0.015410914085805416, + -0.04099193960428238, + -0.00013554634642787278, + -0.01756797544658184, + -0.018268825486302376, + 0.017365507781505585, + 0.012194790877401829, + -0.025417495518922806, + -0.01048160158097744, + -0.010458240285515785, + -0.001705401809886098, + 0.009632795117795467, + 0.0023011243902146816, + -0.000840046675875783, + 0.012000110931694508, + 0.022972308099269867, + 0.022084563970565796, + -0.013573129661381245, + 0.012350535951554775, + 0.009983220137655735, + 0.04413798078894615, + -0.023953497409820557, + 0.03843773156404495, + 0.013199342414736748, + -0.04416912794113159, + -0.013386236503720284, + 0.024638773873448372, + 0.002460762392729521, + 0.005976693704724312, + -0.010349219664931297, + -0.006272607948631048, + 0.03825083747506142, + 0.010590623132884502, + -0.0033777079079300165, + 0.00039958188426680863, + 0.00015075577539391816, + -0.029124213382601738, + -0.02857910841703415, + 0.020262353122234344, + 0.013658788986504078, + -0.005412119906395674, + 0.01812865398824215, + -0.022193584591150284, + 0.012039046734571457, + -0.005505566485226154, + 0.027893831953406334, + -0.013900192454457283, + 0.031195614486932755, + 0.02847008779644966, + -0.010995558463037014, + 0.011634111404418945, + 0.025775708258152008, + -0.03445067256689072, + 0.017209762707352638, + 0.017895037308335304, + -0.0333293154835701, + 0.01945248246192932, + 0.01611955091357231, + 0.0026028791908174753, + -0.038281988352537155, + 0.012498492375016212, + -0.031678423285484314, + 0.01216364186257124, + -0.011221388354897499, + -0.024607624858617783, + -0.01862703636288643, + -0.0025483686476945877, + -0.030136551707983017, + 0.03952794522047043, + 0.02901519276201725, + -0.01216364186257124, + 0.03186531737446785, + 0.035945821553468704, + 0.006953990086913109, + -0.006712586153298616, + -0.007284947205334902, + -0.018222101032733917, + 0.021072225645184517, + -0.024529751390218735, + -0.05180060490965843, + 0.011377132497727871, + -0.0006083768093958497, + -0.05008741840720177, + 0.03155382722616196, + -0.044947851449251175, + 0.02945127710700035, + -0.022567372769117355, + 0.04083619639277458, + -0.001369577832520008, + -0.015037127770483494, + -0.0019176036585122347, + -0.0035276119597256184, + -0.00929794367402792, + -0.0065879905596375465, + 0.02946685068309307, + 0.03202106058597565, + -0.024436306208372116, + 0.019265590235590935, + 0.009305731393396854, + -0.017427803948521614, + 0.02666345052421093, + 0.018190952017903328, + -0.009181135334074497, + 0.04429372400045395, + 0.0581861287355423, + -0.015177297405898571, + -0.007070798426866531, + -0.006720373407006264, + 0.0017852208111435175, + -0.02384447678923607, + -0.0066152457147836685, + -0.0016080614877864718, + 0.0002094032970489934, + -0.007981903851032257, + 0.009438114240765572, + -0.01211691927164793, + 0.012296024709939957, + 0.005268056411296129, + -0.0032647931948304176, + 0.029264383018016815, + 0.028766000643372536, + -0.000982650206424296, + 0.021773075684905052, + 0.031102167442440987, + 0.0024646560195833445, + -0.006124650593847036, + -0.0012887853663414717, + 0.009126625023782253, + -0.01406372431665659, + -6.135479634394869e-5, + 0.011307047680020332, + -0.008090924471616745, + 0.0010288868797942996, + -0.010419304482638836, + 0.04466751217842102, + 0.0097963260486722, + 0.02859468199312687, + -0.03314242139458656, + 0.006455607712268829, + -0.019312312826514244, + 0.013970278203487396, + -0.026320813223719597, + -0.042082153260707855, + -0.01213249284774065, + -0.013861256651580334, + -0.018736058846116066, + -0.00793907418847084, + -0.011727557517588139, + 0.012833342887461185, + 0.03385884687304497, + 0.048249632120132446, + 0.02814302407205105, + -0.022162435576319695, + -0.010855388827621937, + 0.014398574829101562, + -0.015122787095606327, + 0.007868988439440727, + -0.00773271219804883, + 0.03959023952484131, + -0.003124623093754053, + 0.016462190076708794, + 0.03314242139458656, + 0.02049596980214119, + -0.04659874364733696, + 0.012482917867600918, + -0.006284289062023163, + -0.03043246641755104, + -0.005509460344910622, + 0.03373425081372261, + 0.007417329587042332, + 0.020293502137064934, + -0.0030175489373505116, + -0.016789251938462257, + -0.005493885837495327, + 0.01047381479293108, + -0.01305138599127531, + 0.004547738004475832, + -0.018315548077225685, + -0.00836347695440054, + -0.045446231961250305, + -0.0035023035015910864, + -0.007845627143979073, + 0.0012002057628706098, + -0.006120757199823856, + 0.005050014238804579, + -0.03980828449130058, + -0.011330408975481987, + 0.0020363586954772472, + -0.00903317891061306, + -0.013666575774550438, + -0.005038333125412464, + -0.0026749111711978912, + 0.03370309993624687, + -0.00883071031421423, + -0.03510480001568794, + -0.016306445002555847, + 0.011011132970452309, + -0.006272607948631048, + -0.02666345052421093, + -0.005264162551611662, + -0.011797642335295677, + -0.012521854601800442, + -0.02328379638493061, + -0.016540061682462692, + 0.021181246265769005, + 0.03818853944540024, + -0.036817990243434906, + 0.015901509672403336, + 0.018175378441810608, + -0.01851801574230194, + 0.02861025743186474, + 0.011283686384558678, + 0.013884618878364563, + 0.0021667948458343744, + -0.037285223603248596, + 0.053981028497219086, + 0.005120099056512117, + 0.02619621716439724, + 0.004462078679352999, + -0.007191500160843134, + -0.01309810858219862, + -0.012451769784092903, + 0.01800405979156494, + 0.0119144506752491, + 0.023174775764346123, + 0.015823636204004288, + -0.008005265146493912, + -0.0008604881586506963, + 0.0028598576318472624, + -0.008083137683570385, + 0.021757500246167183, + 0.013269428163766861, + 0.013323938474059105, + 0.011096792295575142, + -0.015192871913313866, + 0.011322622187435627, + 0.008986455388367176, + 0.008379051461815834, + 0.008737264201045036, + -0.030198849737644196, + -0.02610277198255062, + -0.0015584180364385247, + 0.017038444057106972, + 0.020791884511709213, + -0.011844365857541561, + 0.011587387882173061, + 0.00439588725566864, + 0.016384316608309746, + 0.047751251608133316, + -0.012919003143906593, + 0.009710666723549366, + -0.0032550592441111803, + -0.0034789417404681444, + 0.0053030988201498985, + 0.001013312372379005, + 0.024903539568185806, + 0.03175629675388336, + -0.007105840835720301, + 0.0026496024802327156, + 0.010839814320206642, + 0.01143943052738905, + 0.004528270103037357, + 0.001258609932847321, + 0.01896967552602291, + 0.0028793257661163807, + -0.03267518803477287, + 0.025573240593075752, + -0.02949799969792366, + -0.0017248698277398944, + -0.00570803415030241, + -0.02133699133992195, + -0.017443379387259483, + -0.009710666723549366, + -0.020838608965277672, + 0.03169399872422218, + -0.0241871140897274, + -0.011719770729541779, + 0.004629503935575485, + 0.0016713327495381236, + -0.022037841379642487, + -0.011587387882173061, + 0.034575268626213074, + -0.01548878662288189, + -0.00582484295591712, + -0.017754867672920227, + -0.021617330610752106, + -0.026834769174456596, + -0.00809871219098568, + 0.012700960971415043, + -0.011291473172605038, + 0.019359035417437553, + 0.005591225810348988, + -0.03438837453722954, + -0.009344667196273804, + 0.007705457042902708, + 0.007417329587042332, + -0.018907377496361732, + -0.03130463510751724, + -0.0033309846185147762, + -0.012864491902291775, + -0.019312312826514244, + 0.01355755515396595, + 0.02194439433515072, + -0.014102661050856113, + 0.04345270246267319, + 0.022442776709794998, + 0.014928106218576431, + 0.0040221004746854305, + -0.025386346504092216, + -0.012529641389846802, + 0.013627639971673489, + -0.016057252883911133, + -0.02906191535294056, + -0.014865808188915253, + -0.010668495669960976, + 0.004438716918230057, + 0.016555635258555412, + -0.003149931551888585, + -0.015691254287958145, + 0.004205100238323212, + 0.03987058252096176, + 0.006498437374830246, + -0.009352454915642738, + 0.01912541873753071, + -0.009118838235735893, + -0.009048753418028355, + 0.0056379493325948715, + 0.004730737768113613, + 0.018938526511192322, + 0.002285549882799387, + 0.0034906226210296154, + -0.0004828078090213239, + 0.010956622660160065, + 0.01026355940848589, + -0.023470690473914146, + 0.005190183874219656, + -0.020075460895895958, + -0.005139566957950592, + -0.10422419011592865, + -0.022723115980625153, + -0.00950819905847311, + 0.021975543349981308, + 0.004948779940605164, + -0.009601646102964878, + 0.020636141300201416, + 0.014383000321686268, + -0.017708145081996918, + -0.010637346655130386, + 0.022006692364811897, + -0.02005988545715809, + 0.02373545616865158, + 0.027006089687347412, + -0.02192881889641285, + -0.006934522185474634, + -0.00950041227042675, + -0.023034606128931046, + 0.009617220610380173, + -0.004185632336884737, + 0.012553003616631031, + 0.008051988668739796, + 0.01708516664803028, + -0.01847129315137863, + -0.014258405193686485, + 0.03532284125685692, + -0.004598354920744896, + -0.0003151391865685582, + 0.001036674017086625, + -0.03093084879219532, + -0.002655443036928773, + 0.013035811483860016, + -0.016540061682462692, + -0.005540608894079924, + -2.9354180242080474e-6, + 0.021290266886353493, + -0.0008716822485439479, + -0.007432904094457626, + 0.035976968705654144, + 0.002727474784478545, + 0.013744448311626911, + -0.011571813374757767, + -0.011813216842710972, + -0.005672991741448641, + 0.009118838235735893, + -0.005852098111063242, + 0.004465972539037466, + -0.007631478365510702, + -0.012856705114245415, + 0.018658185377717018, + 0.011392707005143166, + 0.0010522485245019197, + -0.032176803797483444, + -0.02432728372514248, + 0.013510831631720066, + -0.0099754324182868, + 0.024638773873448372, + -0.0065918839536607265, + -0.0013793118996545672, + 0.007713244296610355, + 0.06142561510205269, + 0.02370430715382099, + 0.005131779704242945, + 0.0022699753753840923, + -0.010341431945562363, + -0.006459501571953297, + -0.0023303264752030373, + 0.017318783327937126, + 0.03740981966257095, + -0.0013238278916105628, + -0.004824184812605381, + -0.011026707477867603, + -0.016415465623140335, + 0.025869155302643776, + 0.008332328870892525, + 0.006735947914421558, + 0.0059494380839169025, + 0.021726351231336594, + 0.0023653688840568066, + -0.0036989308428019285, + -0.002384837018325925, + 0.009056540206074715, + 0.02283213660120964, + -0.0050422269850969315, + -0.010201262310147285, + -0.013144832104444504, + 0.021243544295430183, + -0.011011132970452309, + 0.0015584180364385247, + -0.01854916475713253, + 0.02896846830844879, + 0.0009612353169359267, + 0.044885553419589996, + 0.005412119906395674, + -0.006038991268724203, + 0.022084563970565796, + -0.005770332179963589, + 0.033017825335264206, + -0.006786564830690622, + -0.00616748072206974, + -0.003249218687415123, + -0.022022265940904617, + 0.001445503206923604, + -0.00974960345774889, + -0.017863890156149864, + -0.007697669789195061, + 0.006397203542292118, + 0.021041076630353928, + -0.025853579863905907, + -0.018331123515963554, + 0.008153222501277924, + 0.009632795117795467, + -0.036350756883621216, + -0.01758354902267456, + -0.0228788610547781, + 0.0043569509871304035, + -0.004193419590592384, + -0.02709953486919403, + -0.01848686672747135, + 0.006210310384631157, + -0.006323224864900112, + 0.025495367124676704, + 0.011073431000113487, + -0.019841844215989113, + 0.015410914085805416, + 0.011968961916863918, + -0.010847601108253002, + -0.023673158138990402, + 0.009360241703689098, + 0.025510942563414574, + 0.004937099292874336, + 0.013137045316398144, + -0.032176803797483444, + 0.01048160158097744, + -0.02954472415149212, + 0.016586784273386, + 0.036381904035806656, + -0.004208994098007679, + 0.021165672689676285, + -0.03759671375155449, + 0.012077982537448406, + -0.0020928161684423685, + 0.013331725262105465, + 0.02139928936958313, + -0.02291001006960869, + -0.009827475063502789, + -0.008527008816599846, + -0.00950041227042675, + 0.011501728557050228, + -0.01068407017737627, + -0.014647766016423702, + -0.003936441149562597, + 0.009352454915642738, + -0.009586071595549583, + -0.018954100087285042, + -0.03336046263575554, + -0.006880011409521103, + 0.013199342414736748, + -0.0049682483077049255, + -0.03364080190658569, + -0.017863890156149864, + -0.0017949548782780766, + 0.008628242649137974, + -0.014258405193686485, + 0.03759671375155449, + -0.002963038394227624, + -0.013736661523580551, + -0.009360241703689098, + 0.0005139567074365914, + -0.01309032179415226, + 0.0005572731606662273, + -0.004629503935575485, + -0.03628845885396004, + -0.022567372769117355, + 0.008745050989091396, + -0.0033523994497954845, + -0.015340829268097878, + -0.004080504644662142, + 0.026320813223719597, + -0.013292789459228516, + -0.0006813820218667388, + 0.02811187505722046, + 0.013760022819042206, + 0.007152564357966185, + -0.009687305428087711, + -0.002433507237583399, + -0.009095476008951664, + 0.0097963260486722, + -0.005217439495027065, + 0.0073044151067733765, + 0.029840638861060143, + 0.021679628640413284, + -0.007931286469101906, + -0.011509515345096588, + 0.000654126750305295, + -0.00688390526920557, + 0.02814302407205105, + 0.05600570887327194, + -0.023174775764346123, + -0.01166525948792696, + -0.02851681038737297, + -0.010045517235994339, + 0.013837895356118679, + 0.014733425341546535, + 0.005003290716558695, + 0.010497176088392735, + -0.03631960600614548, + 0.007981903851032257, + 0.006397203542292118, + -0.009157774038612843, + -0.001579832867719233, + 0.03557203337550163, + 0.013230491429567337, + -0.010707431472837925, + -0.012482917867600918, + 0.0031830272637307644, + 0.010855388827621937, + -0.018377846106886864, + 0.005965012591332197, + -0.006225884892046452, + 0.028220895677804947, + 0.0009850837523117661, + 0.006151906214654446, + -0.03329816460609436, + 0.0017978750402107835, + 0.029373405501246452, + 0.010917686857283115, + -0.019172143191099167, + -0.02420268952846527, + 0.010380367748439312, + -0.0006215177127160132, + -0.005805374588817358, + -0.01759912446141243, + 0.002285549882799387, + -0.007958541624248028, + -0.020791884511709213, + 0.029202084988355637, + -0.015854785218834877, + 0.029124213382601738, + -0.018876228481531143, + -0.01238168403506279, + -0.021056650206446648, + -0.017972910776734352, + -0.00012739410158246756, + 0.025806857272982597, + 0.005431587807834148, + -0.03132021054625511, + -0.016493337228894234, + 0.008667179383337498, + 0.015387552790343761, + 0.0190008245408535, + -0.017832741141319275, + -0.015590020455420017, + 0.02100992761552334, + 0.003048697719350457, + 0.00027425625012256205, + -0.003235591109842062, + -0.006595777813345194, + -0.0002854503982234746, + -0.002014943864196539, + 0.008877433836460114, + 0.0005957225803285837, + 0.020309077575802803, + -0.028345491737127304, + 0.022131286561489105, + 0.004999397322535515, + -0.017054017633199692, + -0.0038352073170244694, + -0.0035100907552987337, + -0.013214916922152042, + 0.0046606529504060745, + 0.01524738222360611, + -0.01524738222360611, + 0.01763027347624302, + 0.007362819276750088, + 0.012553003616631031, + -0.0010064985835924745, + -0.016462190076708794, + 0.005653523840010166, + -0.01161853689700365, + -0.013853469863533974, + 0.009858624078333378, + -0.03862462565302849, + 0.01576134003698826, + 0.013401811011135578, + 0.011283686384558678, + 0.030541488900780678, + 0.021570608019828796, + 0.026414260268211365, + -0.014834659174084663, + 0.010715218260884285, + 0.02758234366774559, + 0.020651714876294136, + -0.018237676471471786, + 0.0066658626310527325, + -0.004870907869189978, + 0.003533452283591032, + -0.023564135655760765, + -0.001705401809886098, + -0.02100992761552334, + 0.01259193941950798, + 0.02329937182366848, + -0.02466992288827896, + 0.00557565176859498, + 0.0011388813145458698, + -0.00022157082275953144, + 0.01334729976952076, + 0.01624414697289467, + -0.007876776158809662, + -0.0014484234852716327, + 0.015200658701360226, + 0.001372497994452715, + 0.00145621073897928, + 0.00545494956895709, + -0.006514011882245541, + 0.016929423436522484, + 0.028454512357711792, + -0.008114286698400974, + -0.01241283304989338, + -0.01234274823218584, + -0.014001427218317986, + 0.006264820694923401, + 0.017054017633199692, + 0.021539459004998207, + -0.013666575774550438, + -0.0011194132966920733, + 0.00570024736225605, + -0.00810649897903204, + 0.01584699936211109, + -0.0047073764726519585, + 0.003975377418100834, + 0.04809388890862465, + -0.016758102923631668, + 0.028734851628541946, + -0.006346586626023054, + -0.0025405813939869404, + -0.01471785083413124, + 0.0040688239969313145, + 0.003097367938607931, + 9.016144031193107e-5, + 0.023455115035176277, + 0.011369345709681511, + -0.0002040495746769011, + 0.002221305388957262, + -0.005505566485226154, + 0.017240911722183228, + -0.0019419386517256498, + 0.03519824892282486, + 0.039309900254011154, + 0.0013686043675988913, + 0.011369345709681511, + 0.028438938781619072, + -0.002939676633104682, + 0.0030428573954850435, + 0.018891802057623863, + 0.021041076630353928, + -0.007086372934281826, + 0.028189746662974358, + -0.005859885364770889, + -0.022987881675362587, + -0.005988374352455139, + -0.0007412462728098035, + -0.0120935570448637, + 0.03085297718644142, + 0.0014416096964851022, + 0.019654950127005577, + 0.009243433363735676, + -0.01753682643175125, + 0.003667782060801983, + -0.026367535814642906, + -0.00198476854711771, + -0.0003348505706526339, + -0.02574455924332142, + -0.013651002198457718, + 0.003286208026111126, + -0.0005144434398971498, + 0.016789251938462257, + -0.003934494219720364, + 0.008527008816599846, + -0.014421937055885792, + 0.011135729029774666, + -0.0004166164144407958, + -0.0276290662586689, + -0.01166525948792696, + -0.006482862867414951, + -0.0010327803902328014, + 0.003050644649192691, + -0.0028676448855549097, + -0.021570608019828796, + -0.012903428636491299, + -0.015364190563559532, + -0.008519222028553486, + 0.005840416997671127, + -0.0099754324182868, + 0.008449137210845947, + 0.02001316286623478, + -0.0135964909568429, + 0.0065607354044914246, + -0.02513715624809265, + -0.0003350939368829131, + -0.012070195749402046, + 0.007464053109288216, + -0.006938415579497814, + 0.019748397171497345, + -0.017396656796336174, + 0.011011132970452309, + 0.00262040039524436, + 0.03666224703192711, + 0.003109048819169402, + -0.004746312275528908, + -0.02281656302511692, + -0.0015233755111694336, + -0.0019701675046235323, + -0.006953990086913109, + -0.0005713874706998467, + 0.0018348643789067864, + 0.01672695390880108, + 0.012451769784092903, + 0.0012858652044087648, + 0.005750864278525114, + -0.0116574726998806, + -0.008659391663968563, + 0.005793693941086531, + -0.023096902295947075, + -0.012101344764232635, + 0.01806635782122612, + -0.015138361603021622, + -0.017396656796336174, + -0.0011885248823091388, + 0.031180040910840034, + 0.007199287414550781, + -0.011213600635528564, + 0.0007933233282528818, + 0.0035607076715677977, + 0.03320471942424774, + -0.0013744448078796268, + 0.013471895828843117, + -0.027457747608423233, + 0.009134412743151188, + -0.016462190076708794, + -0.014227256178855896, + -0.009391390718519688, + 0.002632081275805831, + -0.03298667445778847, + -0.017349932342767715, + -0.002657389733940363, + 0.032581739127635956, + -0.022053414955735207, + 0.03526054695248604, + 0.009819688275456429, + -0.008176583796739578, + -0.03940334916114807, + 0.024031369015574455, + -0.019203292205929756, + -0.0046879081055521965, + 0.025090431794524193, + 0.010567261837422848, + -0.007440691348165274, + -0.027924980968236923, + 0.009609432891011238, + 0.021632906049489975, + -0.0035100907552987337, + -0.022551797330379486, + 0.008488073013722897, + -0.002051933202892542, + 0.016399892047047615, + 0.050710394978523254, + -0.018206527456641197, + -0.04030666500329971, + -0.031195614486932755, + 0.0038488348945975304, + -0.050616949796676636, + 0.0006400123820640147, + 0.011236962862312794, + 0.008745050989091396, + -0.01711631566286087, + -0.01309032179415226, + -0.008978667668998241, + 0.007736606057733297, + -0.01115130353718996, + 0.008262243121862411, + -0.015963807702064514, + -0.008090924471616745, + 0.0097184544429183, + 0.014678915031254292, + -0.010302496142685413, + 0.030323445796966553, + 0.0020811352878808975, + -0.010372580960392952, + 0.02661672793328762, + -0.018175378441810608, + 0.030120978131890297, + -0.022754264995455742, + 0.007335564121603966, + 0.0005275843432173133, + -0.03607041761279106, + -0.003961749840527773, + -0.011322622187435627, + 0.029778340831398964, + -0.010785304009914398, + 0.012296024709939957, + -0.013682150281965733, + -0.03909185901284218, + 0.0037690158933401108, + 0.0017336305463686585, + -0.014344064518809319, + -0.00570803415030241, + 0.00523690739646554, + 0.01068407017737627, + -0.014569894410669804, + -0.00925900787115097, + 0.01576134003698826, + -0.00879177451133728, + 0.0073277768678963184, + -0.009134412743151188, + 0.001531162648461759, + 0.008690540678799152, + -0.001036674017086625, + -0.016835976392030716, + -0.00878398772329092, + -0.026320813223719597, + -0.028220895677804947, + -0.008051988668739796, + -0.005770332179963589, + 0.016898274421691895, + 0.012023472227156162, + -0.002900740597397089, + -0.017770443111658096, + -0.014375213533639908, + -0.005731395911425352, + 0.011011132970452309, + 0.008028626441955566, + -0.014515383169054985, + 0.017007295042276382, + 0.020667290315032005, + -0.011455005034804344, + 0.003037016838788986, + -0.00726547883823514, + -0.011236962862312794, + -0.001532136113382876, + -0.008604881353676319, + 0.0034400057047605515, + -0.009913134388625622, + -0.007027968764305115, + -0.0023517413064837456, + 0.11612306535243988, + 0.00950041227042675, + 0.01216364186257124, + 0.0005168769275769591, + 0.006712586153298616, + -0.003987058065831661, + -0.0008410200825892389, + 0.002186262747272849, + 0.011384920217096806, + -0.005871566012501717, + 0.004111653659492731, + -0.020122183486819267, + 0.02759791724383831, + 0.013651002198457718, + -0.027971705421805382, + 0.008293392136693, + 0.029139788821339607, + 0.0157146155834198, + 0.009227858856320381, + 0.016789251938462257, + -0.0069189476780593395, + -0.0037748562172055244, + -0.008215520530939102, + 0.009095476008951664, + -0.01237389724701643, + 0.011821004562079906, + 0.0017608858179301023, + 0.007693776395171881, + 0.02037137560546398, + 0.03040131740272045, + 0.0007023101788945496, + -0.010022155940532684, + -0.011540664359927177, + -0.009570497088134289, + -1.2798726856999565e-5, + 0.011525089852511883, + -0.005209652241319418, + -0.0004621230182237923, + -0.0026009324938058853, + 0.017832741141319275, + -0.011252537369728088, + -0.012825556099414825, + 0.022022265940904617, + 0.03239484876394272, + 0.0007792090182192624, + -0.00016170655726455152, + 0.008137647993862629, + -0.0014007267309352756, + 0.008488073013722897, + -0.0031071018893271685, + -0.0006093502161093056, + -0.02147716097533703, + 0.014203894883394241, + -0.004255717154592276, + 0.02423383854329586, + 0.009383603930473328, + 0.010076666250824928, + -0.013456321321427822, + -0.010746367275714874, + -0.009765177965164185, + -0.022520648315548897, + -0.008589306846261024, + -0.017038444057106972, + -0.014865808188915253, + -0.004286866169422865, + -0.027691364288330078, + -0.027706939727067947, + -0.009819688275456429, + -0.013191555626690388, + -0.0072304364293813705, + -0.004925418645143509, + 0.001727790106087923, + -0.0029104745481163263, + -0.03579007461667061, + -0.0026963260024785995, + 0.010652921162545681, + 0.01234274823218584, + 0.013386236503720284, + 0.0072031812742352486, + 0.008231095038354397, + -0.0025911983102560043, + 0.007627584971487522, + -0.01021683681756258, + -0.025121580809354782, + -0.005867672618478537, + -0.0031207294669002295, + 0.018689334392547607, + -0.02291001006960869, + 0.022629668936133385, + -0.02041809819638729, + -0.02149273455142975, + -0.004933205898851156, + -0.007066904567182064, + -0.005131779704242945, + 0.01706959307193756, + -0.006436139810830355, + -0.02180422469973564, + -0.008472498506307602, + 0.008005265146493912, + 0.01543427538126707, + 0.009835262782871723, + 0.019795119762420654, + -0.0032784207724034786, + 0.003932547755539417, + -0.018658185377717018, + -0.00607792753726244, + 0.02049596980214119, + 0.004224568605422974, + -0.012171429581940174, + -0.002232986269518733, + -0.01119802612811327, + -0.013876831158995628, + 0.014943680725991726, + 0.009819688275456429, + -0.024934688583016396, + 0.003967590164393187, + 0.010956622660160065, + -0.000925706117413938, + -0.004208994098007679, + -0.018315548077225685, + -0.024000221863389015, + -0.004185632336884737, + -0.008659391663968563, + -0.0019224706338718534, + 0.007795010227710009, + 0.015309680253267288, + -0.002125911880284548, + 0.010738580487668514, + -0.020340226590633392, + -0.0036541542503982782, + 0.008581520058214664, + 0.014694489538669586, + 0.01848686672747135, + -0.004310227930545807, + 0.014141596853733063, + -0.005820949096232653, + -0.0008079243707470596, + 0.0025619962252676487, + 0.019795119762420654, + -0.018704909831285477, + 0.012272663414478302, + 0.011743132025003433, + 0.0007417330052703619, + 0.009484837763011456, + 0.006856649648398161, + 0.02238047868013382, + -0.019608227536082268, + -0.018175378441810608, + -0.004606142174452543, + 0.006646394729614258, + 0.030261147767305374, + -0.03086855076253414, + 0.017817165702581406, + 0.0037359201814979315, + 0.015543296933174133, + 0.009640581905841827, + -0.0040221004746854305, + 0.019810695201158524, + -0.008129860274493694, + 0.0015993008855730295, + -0.0006166507373563945, + -0.005891033913940191, + -0.006109076552093029, + -0.019670525565743446, + -0.011571813374757767, + -0.010660707950592041, + 0.005162928719073534, + 0.01616627536714077, + 0.019763972610235214, + -0.012225939892232418, + 0.00034093434805981815, + 0.008869647048413754, + -0.0005319646443240345, + -0.02956029772758484, + 0.004263504408299923, + 0.002727474784478545, + 0.007456265855580568, + -0.0003183027438353747, + -0.01711631566286087, + 0.022473925724625587, + -0.011486154049634933, + -0.024981411173939705, + 0.0050461203791201115, + 0.0092823700979352, + 0.0019545929972082376, + -0.022458350285887718, + 0.010785304009914398, + -0.019670525565743446, + 0.010286921635270119, + -0.013230491429567337, + -0.010808665305376053, + 0.004033781588077545, + 0.003926706966012716, + -0.01258415263146162, + -0.001062955940142274, + 0.005271949805319309, + 0.001740444335155189, + 0.01331615075469017, + -0.005929970182478428, + -0.01853359118103981, + 0.0046645463444292545, + -0.0012907321797683835, + 0.016508912667632103, + -0.005641843192279339, + 0.00679824547842145, + -0.02284771203994751, + -0.004158377181738615, + -0.013993639498949051, + -0.007814478129148483, + 0.0005086029996164143, + -0.03139808401465416, + -0.034980203956365585, + 0.022567372769117355, + -0.0011398547794669867, + -0.01624414697289467, + -0.01208577025681734, + 0.011369345709681511, + 0.03700488433241844, + -0.0006521799368783832, + 0.021150097250938416, + 0.007779435720294714, + 0.00789624359458685, + 0.037877053022384644, + -0.02186652272939682, + -0.006880011409521103, + 0.001283918390981853, + 0.011384920217096806, + 0.011244749650359154, + 0.0037125584203749895, + 0.015099424868822098, + 0.0350736528635025, + -0.004976035561412573, + -0.004263504408299923, + 0.021227968856692314, + -0.0027372087351977825, + 0.038842666894197464, + 0.0029922404792159796, + 0.0021667948458343744, + 0.0008556211250834167, + -0.01957707852125168, + -0.019639376550912857, + -0.003669728757813573, + -0.01805078238248825, + 0.002554209204390645, + 0.00882292352616787, + -0.0092823700979352, + 0.007830052636563778, + 0.0020558268297463655, + 0.001964326947927475, + -2.8669755920418538e-5, + -0.012794407084584236, + -0.025074858218431473, + -0.003852728521451354, + 0.03038574382662773, + 0.026087196543812752, + 0.010676282458007336, + -0.010232411324977875, + 0.015449849888682365, + -0.0023497946094721556, + -0.013471895828843117, + 0.0019098164048045874, + 0.019296739250421524, + -0.011782067827880383, + -0.01663350872695446, + -0.015901509672403336, + 0.02909306436777115, + -0.014577681198716164, + 0.015831423923373222, + 0.009126625023782253, + 0.01240504626184702, + -0.006116863805800676, + 0.0011077324161306024, + 0.00629596970975399, + 0.01996644027531147, + -0.007362819276750088, + 0.0013549767900258303, + 0.008433562703430653, + -0.01906312257051468, + -0.010878750123083591, + -0.00925900787115097, + -0.006774883717298508, + 0.016524486243724823, + -0.005766438785940409, + -0.01376781053841114, + 0.008168797008693218, + -0.03248829394578934, + 0.004419249016791582, + 0.020604992285370827, + -0.018299974501132965, + 0.006074033677577972, + -0.0009227858972735703, + -0.01288006640970707, + 0.0025405813939869404, + -0.019686099141836166, + -0.004061036743223667, + -0.011322622187435627, + -0.0040688239969313145, + 0.005817055702209473, + 0.026056047528982162, + 0.010754154995083809, + -0.0032044423278421164, + 0.006864436902105808, + -0.004197312984615564, + -0.013978064991533756, + 0.022972308099269867, + 0.012436195276677608, + 0.027706939727067947, + 0.0076353722251951694, + -0.003037016838788986, + 0.002595091937109828, + 0.007039649412035942, + 0.0014143543085083365, + 0.007775541860610247, + -0.009640581905841827, + -0.007709350436925888, + -0.007876776158809662, + 0.009406965225934982, + 0.01946805790066719, + -0.016057252883911133, + -0.010053304955363274, + 0.0002114717644872144, + 0.0011379079660400748, + 0.0024140391033142805, + 0.005431587807834148, + 0.0095393480733037, + 0.0097963260486722, + -0.006031204015016556, + -0.0038624624721705914, + 0.0032063890248537064, + -0.018845079466700554, + 0.023003457114100456, + -0.003410803619772196, + -0.018299974501132965, + -0.006619139574468136, + -0.0028618043288588524, + 0.013915766961872578, + -0.009648369625210762, + -0.004076611250638962, + -0.009983220137655735, + 0.004676227457821369, + -0.023096902295947075, + -0.010637346655130386, + -0.010076666250824928, + -0.00735892541706562, + 0.0046840147115290165, + -0.0017823006492108107, + 0.009593858383595943, + -0.00405324948951602, + 0.008885221555829048, + 0.012537429109215736, + 0.01449980866163969, + -0.007693776395171881, + 0.008589306846261024, + 0.011711983010172844, + -0.021072225645184517, + -0.0017764602089300752, + 0.022505074739456177, + 0.014414149336516857, + -0.02713068388402462, + -0.006120757199823856, + -0.02479451708495617, + -0.002694379072636366, + -0.007705457042902708, + -0.020682863891124725, + 0.0036113245878368616, + 0.0022057308815419674, + -0.00308568705804646, + 0.015340829268097878, + -0.025791281834244728, + 0.0023069647140800953, + -0.016275295987725258, + -0.01424283068627119, + -0.009235646575689316, + 0.002172635169699788, + -0.020698439329862595, + 0.013682150281965733, + 0.004002632573246956, + -0.008199946023523808, + -0.01671138033270836, + 0.005528928246349096, + 0.0019604333210736513, + 0.021508309990167618, + -0.014811297878623009, + -0.00857373233884573, + 0.004602248780429363, + 0.01850244216620922, + 0.03314242139458656, + 0.044978998601436615, + 0.012428407557308674, + -0.012327173724770546, + -0.012218153104186058, + -0.001149588730186224, + 0.0038975051138550043, + 0.016088401898741722, + -0.007199287414550781, + 0.004282972775399685, + -0.019203292205929756, + 0.019359035417437553, + -0.0062570334412157536, + 0.008044200949370861, + -0.01097219716757536, + 0.006459501571953297, + 0.024467455223202705, + 0.009188923053443432, + 0.010613984428346157, + -0.032550591975450516, + 0.000722751603461802, + 0.0022427202202379704, + 0.013440746814012527, + -0.021150097250938416, + 0.012537429109215736, + 0.01355755515396595, + -0.024420730769634247, + 0.005003290716558695, + 0.008597093634307384, + 0.012685386463999748, + -0.0013481630012392998, + -0.00557565176859498, + 0.01428176648914814, + -0.015340829268097878, + 0.017801592126488686, + 0.00832454115152359, + 0.014289554208517075, + -0.001197285484522581, + 0.018891802057623863, + -0.007098053582012653, + 0.02046482264995575, + -0.0036152182146906853, + 0.003184974193572998, + 0.0012537428410723805, + 0.0059221829287707806, + -0.012179216369986534, + -0.014982616528868675, + 0.00452048284932971, + -0.009173348546028137, + -0.010551687330007553, + 0.01854916475713253, + -0.01945248246192932, + 0.00014674047997687012, + 0.013401811011135578, + -0.015262956731021404, + -0.007689882535487413, + 0.007892350666224957, + 0.0022037841845303774, + 0.0003786537272389978, + -0.013954703696072102, + -0.005295311566442251, + 0.02040252462029457, + -0.0016654923092573881, + 0.00023398171470034868, + -0.007133095990866423, + 0.006697011645883322, + -0.0005796613986603916, + -0.004485440440475941, + -0.01090211234986782, + -0.004208994098007679, + 0.012638662941753864, + -0.011050069704651833, + 0.02049596980214119, + -0.031242338940501213, + -0.0023906773421913385, + -0.008955306373536587, + -0.015963807702064514, + 0.00232448591850698, + 0.000581121479626745, + -0.014593255706131458, + 0.013487470336258411, + 0.01025577262043953, + -0.009920922107994556, + 0.008207732811570168, + -0.010419304482638836, + 0.0030954210087656975, + 0.007094160187989473, + 0.006658075377345085, + -0.005268056411296129, + 0.015107212588191032, + -0.0028423364274203777, + 0.02194439433515072, + 0.0056613110937178135, + -0.021648479625582695, + -0.031164465472102165, + -0.0032939952798187733, + -0.0028364958707243204, + -0.0047073764726519585, + 0.031024295836687088, + -0.0026379218325018883, + 0.007685989141464233, + 0.014149383641779423, + 0.00183875800576061, + -0.00795464776456356, + -0.015200658701360226, + 0.013035811483860016, + 0.008597093634307384, + -0.004123334307223558, + 0.013448533602058887, + -0.004185632336884737, + 0.00244713481515646, + 0.012911215424537659, + -0.004006525967270136, + -0.01190666388720274, + -0.009477050043642521, + 0.002480230526998639, + 0.004006525967270136, + 0.016275295987725258, + 0.009562709368765354, + 0.009554922580718994, + -0.00545494956895709, + 3.397784530534409e-5, + 0.01618184894323349, + 0.0029922404792159796, + -0.0016440774779766798, + -0.014639979228377342, + -0.013105896301567554, + 0.01470227725803852, + -0.009360241703689098, + 0.032176803797483444, + 0.015083850361406803, + -0.01094883494079113, + 0.018658185377717018, + -0.0025269538164138794, + -0.01309810858219862, + -0.012428407557308674, + -0.005077269393950701, + 0.004886482376605272, + -0.0010162325343117118, + 0.002285549882799387, + 0.01625972054898739, + 0.020075460895895958, + 0.0020928161684423685, + -0.011003346182405949, + -0.011556238867342472, + 0.007055223919451237, + -0.0056340559385716915, + -0.004099973011761904, + 0.02386005036532879, + 0.017054017633199692, + 0.017318783327937126, + 0.012288237921893597, + 0.030292296782135963, + 0.0004088291898369789, + -0.004084398504346609, + 0.018829505890607834, + 0.016306445002555847, + -0.0013481630012392998, + 0.009103263728320599, + -0.030557062476873398, + 0.007078585680574179, + 0.008036414161324501, + -0.0027333153411746025, + 0.002441294491291046, + -0.016882698982954025, + -0.002246613847091794, + 0.023953497409820557, + 0.006260927300900221, + 0.02466992288827896, + -0.01618184894323349, + -0.0035626543685793877, + 0.023081328719854355, + 0.0006030231015756726, + 0.016306445002555847, + -0.0025211134925484657, + -0.015543296933174133, + -0.004158377181738615, + -0.006774883717298508, + -0.02097877860069275, + -0.0057119280099868774, + 0.024031369015574455, + 0.011057856492698193, + -0.0034886759240180254, + 0.02004431188106537, + -0.020091034471988678, + 0.01141606830060482, + -0.014414149336516857, + 0.00882292352616787, + -0.003714505350217223, + 0.0020168907940387726, + -0.025962600484490395, + -0.0034614205360412598, + 0.02146158553659916, + -0.0023906773421913385, + 0.002223252085968852, + -0.013043598271906376, + -0.004828078206628561, + -0.00751467002555728, + -0.021227968856692314, + 0.018736058846116066, + 0.012179216369986534, + -0.0053069922141730785, + 0.03292438015341759, + -0.01668023131787777, + 0.03706718236207962, + -0.002429613610729575, + -0.011501728557050228, + -0.007082479074597359, + -0.0020091035403311253, + -0.010100028477609158, + -0.008449137210845947, + 0.0069228410720825195, + -0.013573129661381245, + -0.022582946345210075, + 0.0018708802526816726, + -0.01948363147675991, + -0.0011748973047360778, + -0.009874198585748672, + 0.0015700988005846739, + 0.006190842017531395, + -0.008495859801769257, + 0.003829366760328412, + -0.00853479653596878, + -0.004290760029107332, + 0.004185632336884737, + -0.010115602985024452, + 0.023532988503575325, + -0.015854785218834877, + 0.0022310393396764994, + -0.004524376709014177, + 0.01025577262043953, + -0.005007184110581875, + 0.010349219664931297, + -0.013464108109474182, + -0.007464053109288216, + 0.010621772147715092, + -0.0022874968126416206, + 0.014974829740822315, + 0.0040727173909544945, + 0.01094104815274477, + 0.0043530575931072235, + 0.011821004562079906, + 0.013323938474059105, + -0.018440144136548042, + -0.0038371540140360594, + 0.010894324630498886, + 0.00363273941911757, + -0.01999758929014206, + -0.00308568705804646, + 0.004279078915715218, + -0.02853238396346569, + 0.004216781351715326, + -0.00485922722145915, + -0.02661672793328762, + 0.012490705586969852, + -0.009352454915642738, + -0.005248588044196367, + -0.0005636002751998603, + 0.00929794367402792, + 0.004750206135213375, + 0.012973513454198837, + -0.0011671100510284305, + -0.021056650206446648, + 0.0017579655395820737, + -0.008090924471616745, + 0.008776200003921986, + -0.013580916449427605, + 0.016804827377200127, + -0.007109734695404768, + -0.005809268448501825, + 0.003492569550871849, + -0.024654347449541092, + 0.030370168387889862, + 0.014164958149194717, + -0.025028133764863014, + -0.033547356724739075, + 0.02376660518348217, + 0.017490101978182793, + -0.000692089437507093, + -0.012000110931694508, + 0.006806032732129097, + 0.0028968469705432653, + 0.00139488629065454, + -0.016057252883911133, + -0.00476578064262867, + 0.006050672382116318, + -0.027302004396915436, + 0.011898876167833805, + -0.005852098111063242, + 0.00045652594417333603, + -0.005201864987611771, + -0.01753682643175125, + 0.010022155940532684, + -0.023579711094498634, + -0.0059961616061627865, + 0.020262353122234344, + 0.006724266801029444, + -0.0030194956343621016, + -1.5620074918842874e-5, + 0.005194077733904123, + 0.003983164671808481, + -0.007016287650913, + 0.004064930137246847, + 0.0161506999284029, + -0.014632191509008408, + 0.001148615381680429, + -0.024529751390218735, + -0.03579007461667061, + 0.014196107164025307, + 0.00856594555079937, + -0.015185084193944931, + -0.011766494251787663, + -0.008425774984061718, + 0.006844969000667334, + -0.020620565861463547, + -0.009663943201303482, + 0.0030798467341810465, + -0.005334247834980488, + 0.010489389300346375, + -0.002133699133992195, + 0.015519935637712479, + 0.008044200949370861, + 0.004170057829469442, + 0.004933205898851156, + 0.01309032179415226, + 0.008270030841231346, + 0.01353419292718172, + 1.7825439499574713e-5, + -0.026507707312703133, + -0.02135256491601467, + -0.0021940500009804964, + -0.004029887728393078, + -0.008246668614447117, + 0.01909426972270012, + -0.001681066700257361, + -9.186489478452131e-5, + 0.0011583494488149881, + 0.0014776255702599883, + -0.003683356335386634, + -0.014094873331487179, + 0.010652921162545681, + 0.024887964129447937, + -0.01211691927164793, + -0.0018095559207722545, + 0.004294653423130512, + -0.007713244296610355, + -0.011602962389588356, + 0.007300521247088909, + -0.004855333361774683, + -0.006778777576982975, + -0.013214916922152042, + 0.00900981668382883, + -0.002347847679629922, + 0.02848566137254238, + -0.02515272982418537, + -0.008924157358705997, + -0.021710777655243874, + 0.005038333125412464, + 0.012296024709939957, + -0.0028442831244319677, + -0.007133095990866423, + 0.0014980670530349016, + -0.017879463732242584, + 0.0018864547600969672, + 0.003889717860147357, + -0.010458240285515785, + 0.019717248156666756, + -0.020075460895895958, + 0.01812865398824215, + -0.003568494925275445, + 0.027379876002669334, + -0.008417988196015358, + 0.00021731219021603465, + -0.0016460242914035916, + 0.025791281834244728, + 0.004481546580791473, + -0.005030545871704817, + 0.00881513673812151, + -0.0013909926638007164, + 0.01587814837694168, + 0.0026476557832211256, + -0.0036638884339481592, + -0.014048149809241295, + 0.02139928936958313, + -0.0002504078729543835, + -0.016026103869080544, + -0.0059416512958705425, + -0.028906172141432762, + -0.0020538801327347755, + -0.029778340831398964, + 0.0014990404015406966, + 0.002741102362051606, + 0.002382890321314335, + 0.006576309911906719, + -0.008527008816599846, + -0.0012002057628706098, + -0.01851801574230194, + -0.015317467041313648, + -0.024950262159109116, + 0.011602962389588356, + 0.010536112822592258, + 0.01306695956736803, + 0.009920922107994556, + 0.01048160158097744, + 0.004244036506861448, + 0.008713901974260807, + -0.006264820694923401, + 0.005088950041681528, + 0.027302004396915436, + 0.0161506999284029, + 0.000933006638661027, + -0.017910612747073174, + -0.018720483407378197, + -0.006852756254374981, + 0.007814478129148483, + -0.003815739182755351, + -0.031616125255823135, + -0.009858624078333378, + -0.011922238394618034, + 0.021679628640413284, + -0.006965670734643936, + 0.0020091035403311253, + -0.0024510284420102835, + -0.010621772147715092, + 0.015737976878881454, + 0.002704113256186247, + -0.009142199531197548, + 0.005147354211658239, + 0.0034633674658834934, + -0.01496704202145338, + -0.0069500962272286415, + 0.004890375770628452, + -0.0035918564535677433, + 0.016976146027445793, + -0.010567261837422848, + 0.014982616528868675, + 0.011026707477867603, + -0.0001754558616084978, + -0.03169399872422218, + 0.008706115186214447, + 0.007557499688118696, + -0.007129202596843243, + 0.001851412234827876, + -0.0199508648365736, + 0.005408226512372494, + -0.0005986427422612906, + -0.009430326521396637, + 0.019374610856175423, + 0.01169640850275755, + -0.016010530292987823, + -0.0030311765149235725, + 0.002554209204390645, + 0.017022868618369102, + 0.009772964753210545, + 0.0059455446898937225, + -0.01613512635231018, + 0.016431041061878204, + 0.00038546754512935877, + 0.008760625496506691, + -0.0023128052707761526, + -0.001073663355782628, + -0.01187551487237215, + -0.02048039622604847, + -0.032550591975450516, + -0.003058431902900338, + 0.02752004563808441, + 0.006778777576982975, + 0.006989032495766878, + -0.017381081357598305, + 0.001123306923545897, + 0.005746970418840647, + -0.007861201651394367, + 0.012109131552278996, + -0.014383000321686268, + -0.008340115658938885, + 0.021181246265769005, + -0.004236249253153801, + 0.014624404720962048, + 0.004551631864160299, + -0.010029942728579044, + -0.021087799221277237, + -0.010146751068532467, + 0.01051275059580803, + 4.357498710305663e-6, + -0.014258405193686485, + 0.010870963335037231, + -0.0007748286589048803, + 0.006864436902105808, + -0.0040921857580542564, + 0.012996874749660492, + 0.0004577426880132407, + -0.005852098111063242, + 0.0019419386517256498, + -0.0037242393009364605, + 0.001630449783988297, + 0.012397258542478085, + 0.004076611250638962, + 0.016493337228894234, + -0.024514177814126015, + -0.0009831369388848543, + 0.031569402664899826, + -0.013884618878364563, + -0.001681066700257361, + 0.024342859163880348, + 0.0050227586179971695, + -0.007576968055218458, + 0.018751632422208786, + 0.0026593366637825966, + -0.0030117083806544542, + -0.013993639498949051, + 0.005855991505086422, + -0.007440691348165274, + 0.013861256651580334, + -0.006128544453531504, + 0.0075419251807034016, + 0.006155799608677626, + -0.017256485298275948, + -0.01587814837694168, + -0.013292789459228516, + -0.006346586626023054, + -0.027909407392144203, + 0.0025366877671331167, + -0.0038585688453167677, + 0.0021687415428459644, + -0.013510831631720066, + 0.004722950514405966, + 0.014585468918085098, + 0.0007879696204327047, + 0.011704196222126484, + 0.011299259960651398, + 0.008308966644108295, + -0.024934688583016396, + 0.005314779467880726, + -0.01808193139731884, + -0.022723115980625153, + 0.01621299795806408, + -0.005030545871704817, + 0.011493940837681293, + 0.004446504171937704, + -0.003726186230778694, + -0.0013549767900258303, + 0.004504908341914415, + -0.020200056955218315, + -0.008581520058214664, + 0.017443379387259483, + -0.007413436193019152, + 0.0092823700979352, + 0.00261845369823277, + -0.013300576247274876, + -0.01854916475713253, + 0.01719418726861477, + -0.016057252883911133, + -0.005388758145272732, + 0.010793090797960758, + 0.01763027347624302, + 0.012459556572139263, + 0.003903345437720418, + -0.018798356875777245, + -0.0012673705350607634, + -0.004131121560931206, + 0.015091638080775738, + -0.009438114240765572, + 0.006412778049707413, + -0.011758706532418728, + -0.008472498506307602, + 0.0043296958319842815, + 0.02046482264995575, + -0.01241283304989338, + 0.005696353502571583, + -0.0060234167613089085, + -0.005419907160103321, + -0.003580175805836916, + -0.017817165702581406, + -0.015185084193944931, + -0.0005446188733913004, + -0.025433069095015526, + 0.017801592126488686, + -0.04152147099375725, + 0.0011641897726804018, + -0.007654840126633644, + 0.012428407557308674, + -0.006868330761790276, + -0.012249301187694073, + -0.007152564357966185, + -0.003247271990403533, + 0.003385495161637664, + 0.0009008843335323036, + 0.02998080849647522, + 0.012981300242245197, + 0.019701674580574036, + -0.012576364912092686, + -0.003480888670310378, + -0.0014893063344061375, + 0.03001195751130581, + -0.02088533155620098, + 0.0034867289941757917, + -0.0025230601895600557, + -0.012436195276677608, + 0.0069968197494745255, + -0.0010804771445691586, + 0.022582946345210075, + 0.0021687415428459644, + 0.01764584705233574, + -0.0010678229155018926, + -0.010738580487668514, + -0.03619501367211342, + 0.014172745868563652, + 0.011322622187435627, + -0.016368743032217026, + -0.023003457114100456, + 0.0185647401958704, + 0.012576364912092686, + 0.004282972775399685, + -0.017879463732242584, + 0.010528325103223324, + 0.005676885601133108, + -0.014826872386038303, + -0.00338354823179543, + -0.003702824469655752, + -0.005271949805319309, + 0.007070798426866531, + 0.0033407185692340136, + -0.014188320375978947, + 0.01861146278679371, + 0.016026103869080544, + 0.008114286698400974, + -0.020791884511709213, + -0.006478969473391771, + -0.012194790877401829, + 0.020277928560972214, + 0.028376640751957893, + 0.02664787694811821, + 0.0010814506094902754, + -0.006159693468362093, + 0.002715793903917074, + 0.02421826310455799, + 0.006498437374830246, + -0.009399178437888622, + 0.000555813021492213, + 0.014811297878623009, + -0.01714746467769146, + -0.003348505822941661, + -0.013845682144165039, + -0.02708396129310131, + 0.0097184544429183, + 0.00011382730008335784, + 0.005879353266209364, + -0.0012829449260607362, + -0.010115602985024452, + 0.005194077733904123, + -0.011719770729541779, + 0.01991971582174301, + 0.002704113256186247, + 0.0072265430353581905, + 0.015597807243466377, + 0.0036853032652288675, + 0.015138361603021622, + 0.011968961916863918, + -0.01425061747431755, + -0.008581520058214664, + 0.01763027347624302, + -0.007475733757019043, + 0.005509460344910622, + 0.003309569787234068, + -0.016882698982954025, + -0.01896967552602291, + -0.0038371540140360594, + -0.02001316286623478, + 0.010621772147715092, + 0.015122787095606327, + 0.0027469429187476635, + 0.01069185696542263, + 0.01280219480395317, + 0.022022265940904617, + 0.0026788045652210712, + 0.0004674767260439694, + 0.0008346929680556059, + -0.023003457114100456, + -0.01115909032523632, + -0.02325264737010002, + -0.01766142062842846, + 0.0010580889647826552, + 0.003397176042199135, + -0.001681066700257361, + -0.0031440912280231714, + 0.03765901178121567, + 0.004719057120382786, + 0.0020052099134773016, + -0.003494516247883439, + -0.01047381479293108, + 0.007133095990866423, + 0.028236471116542816, + 0.0009159721084870398, + 0.005322566721588373, + 0.010964409448206425, + -0.016368743032217026, + -0.015504361130297184, + -0.008698328398168087, + -0.005836523603647947, + -0.019172143191099167, + 0.009554922580718994, + 0.0024120924063026905, + 0.0033777079079300165, + -0.003979270812124014, + -0.0063076503574848175, + -0.006393310148268938, + -0.0050694821402430534, + 0.004777461290359497, + 0.0012420620769262314, + -0.0017832739977166057, + -4.027454269817099e-5, + 0.00380211160518229, + 0.005030545871704817, + -0.008480285294353962, + -0.005556183401495218, + 0.0018728270661085844, + 0.00261650700122118, + 0.008978667668998241, + 0.0002949410700239241, + 0.01380674634128809, + -0.0001871366985142231, + 0.015566658228635788, + -0.0004842679190915078, + -0.01767699606716633, + -0.013246065936982632, + 0.00510841840878129, + -0.015037127770483494, + -0.007502989377826452, + 0.010870963335037231, + 0.014811297878623009, + -0.013541980646550655, + 0.003718398977071047, + 0.02283213660120964, + 0.018377846106886864, + -0.0199508648365736, + 0.007172032259404659, + 0.010839814320206642, + -0.000766068056691438, + -0.002271922305226326, + 0.008589306846261024, + -0.002828708617016673, + -0.015114999376237392, + -0.008838498033583164, + 0.010131176561117172, + 0.013728873804211617, + -0.0005197971477173269, + -0.00010476248280610889, + 0.021664053201675415, + 0.016913847997784615, + 0.0030175489373505116, + -0.009905347600579262, + -0.004442610777914524, + -0.005926076788455248, + -0.018767207860946655, + 0.017240911722183228, + 0.02611834555864334, + 0.015753552317619324, + -0.002378996694460511, + 0.016789251938462257, + -0.0052797370590269566, + 0.0062570334412157536, + 0.0006925761117599905, + 0.009344667196273804, + -0.007759967818856239, + -0.01069185696542263, + -0.0026515494100749493, + 0.010092240758240223, + -0.025043709203600883, + -0.012747683562338352, + 0.0026262409519404173, + 0.0031538251787424088, + 0.00031270566978491843, + -0.03189646452665329, + 0.023937923833727837, + 0.0038176861125975847, + 0.005221332889050245, + -0.008441349491477013, + 0.010497176088392735, + 0.006342693231999874, + 0.02513715624809265, + -0.03002753108739853, + 0.006210310384631157, + 0.016026103869080544, + 0.00291436817497015, + 0.003952015656977892, + -0.012576364912092686, + -0.001445503206923604, + -0.005563970655202866, + 0.011540664359927177, + 0.005653523840010166, + 0.011042281985282898, + 0.0025873049162328243, + -0.014009214006364346, + -0.003309569787234068, + -0.021539459004998207, + -0.008519222028553486, + -0.01237389724701643, + -0.014562106691300869, + 0.025853579863905907, + -0.004695695359259844, + -0.006498437374830246, + 0.0033193037379533052, + 0.005038333125412464, + 0.006751522421836853, + 0.019203292205929756, + -0.007623691111803055, + -0.023937923833727837, + 0.0001776460267137736, + -0.01233496144413948, + 0.00929015688598156, + -0.0030058680567890406, + -0.007000713609158993, + -0.008441349491477013, + -0.00363273941911757, + -0.030712807551026344, + -0.013612065464258194, + 0.013674363493919373, + -0.0023011243902146816, + -0.017490101978182793, + -0.006517905741930008, + 0.0011281738989055157, + -0.012825556099414825, + -0.008947518654167652, + 0.022505074739456177, + 0.001765752793289721, + 0.0034127505496144295, + -0.027270855382084846, + -0.011003346182405949, + -0.010629558935761452, + 0.02088533155620098, + -0.007802797481417656, + -0.011945599690079689, + 0.02040252462029457, + -0.009952071122825146, + -0.00045117223635315895, + 0.03868692368268967, + 0.0011700302129611373, + -0.006568522658199072, + 0.015146148391067982, + -0.009118838235735893, + 0.020620565861463547, + -0.01380674634128809, + -0.01237389724701643, + 0.013105896301567554, + 0.002725528087466955, + 0.008192158304154873, + -0.004501014947891235, + -0.0019205238204449415, + -0.0028676448855549097, + 0.028875023126602173, + -0.018440144136548042, + 0.013456321321427822, + -0.0035626543685793877, + 0.018377846106886864, + -0.01573019102215767, + 0.00806756317615509, + -0.00048694477300159633, + -0.0019322047010064125, + -0.017863890156149864, + 0.0011330408742651343, + 0.007031862158328295, + -0.013962490484118462, + 0.018206527456641197, + -0.017490101978182793, + 0.018767207860946655, + -0.013323938474059105, + -0.002423773054033518, + -0.002964985091239214, + 0.014040363021194935, + -0.01587814837694168, + -0.009734028950333595, + -0.006159693468362093, + 0.01660235971212387, + 0.004088291898369789, + 0.0012079929001629353, + -0.016898274421691895, + 0.02896846830844879, + 0.016446614637970924, + 0.01946805790066719, + -0.015535509213805199, + -0.012140280567109585, + -0.02139928936958313, + -0.004275185521692038, + -0.009360241703689098, + -0.02093205600976944, + 0.009843049570918083, + 0.008449137210845947, + -0.019826268777251244, + -0.013199342414736748, + -0.0362573079764843, + -0.007569180801510811, + -1.2281606359465513e-5, + 0.01761469803750515, + 0.008122073486447334, + 0.004025994334369898, + 0.005373183637857437, + -0.010832026600837708, + -0.00999879464507103, + -0.004138908814638853, + 0.010746367275714874, + 0.051084183156490326, + 0.02136814035475254, + 0.00953156128525734, + -0.013923554681241512, + 0.003998739179223776, + -0.031117742881178856, + 0.003517878009006381, + -0.0029455169569700956, + -0.020153332501649857, + 0.0015214286977425218, + 0.009087689220905304, + -0.018393419682979584, + 0.008246668614447117, + 0.009313518181443214, + -0.01717861369252205, + 0.004621716681867838, + 0.0007066904800012708, + -0.006478969473391771, + -0.01358870416879654, + 0.010676282458007336, + -0.004532163497060537, + 0.015551083721220493, + -0.0005962092545814812, + -0.008519222028553486, + 0.0066347140818834305, + -0.005100631155073643, + -0.0021200713235884905, + -0.008083137683570385, + 0.0025016453582793474, + -0.0015350562753155828, + 0.023501839488744736, + 0.0002917775127571076, + -0.0343572273850441, + 0.008044200949370861, + -0.011930025182664394, + 0.009858624078333378, + 0.002604826120659709, + 0.01287227962166071, + -0.00042221348849125206, + -0.010302496142685413, + -0.03270633518695831, + -0.01234274823218584, + 0.009118838235735893, + -0.012498492375016212, + -0.0028170279692858458, + -0.005201864987611771, + 0.010621772147715092, + 0.022442776709794998, + 0.0040221004746854305, + 0.0033893887884914875, + 0.002889059716835618, + 0.002248560544103384, + -0.011828791350126266, + 0.0025366877671331167, + -0.011532877571880817, + -0.001347189536318183, + 0.022458350285887718, + -0.033547356724739075, + -0.0028715385124087334, + -0.001000658143311739, + -0.0008775226888246834, + -0.004691801965236664, + 0.013285002671182156, + 0.016322018578648567, + -0.005980587098747492, + 0.014842446893453598, + -0.005563970655202866, + 0.00925122108310461, + -0.0019351248629391193, + -0.01186772808432579, + 0.025028133764863014, + -0.015932658687233925, + 0.0008614615071564913, + -0.02572898380458355, + -0.0005037359660491347, + -0.012973513454198837, + -0.017365507781505585, + -0.028361065313220024, + 0.0028598576318472624, + 0.0013033864088356495, + 0.0013140938244760036, + -0.01284891739487648, + 0.0003151391865685582, + -0.0072031812742352486, + -0.00929794367402792, + 0.006926734931766987, + -0.008604881353676319, + 0.004434823524206877, + 0.014328490011394024, + 0.00925122108310461, + -0.015005978755652905, + -0.009578283876180649, + -0.012778832577168941, + 0.004874801728874445, + 0.008036414161324501, + -0.01622857339680195, + -0.019156567752361298, + 0.002939676633104682, + 0.013168194331228733, + 0.007425116840749979, + 0.010100028477609158, + 0.003455580212175846, + 0.0059182895347476006, + 0.0010532218730077147, + -0.015660105273127556, + -0.027348726987838745, + -0.0016615986824035645, + -0.0031187827698886395, + -0.009430326521396637, + 0.012794407084584236, + -0.015644531697034836, + -0.0004112627066206187, + -0.00261845369823277, + 0.008869647048413754, + 0.013697724789381027, + 0.02481009252369404, + 0.008495859801769257, + -0.0029708256479352713, + 0.007752180565148592, + 0.01048160158097744, + -0.010162325575947762, + 0.013884618878364563, + 0.02001316286623478, + 0.00013797984865959734, + -0.007600329350680113, + 0.014453086070716381, + -0.0003606457612477243, + 0.019748397171497345, + -0.0017560187261551619, + -0.006880011409521103, + -0.004808610305190086, + 1.3156148270354606e-5, + 0.0011184398317709565, + -0.010785304009914398, + 0.005162928719073534, + -0.011478366330265999, + 0.00026476557832211256, + -0.015231807716190815, + 0.019732823595404625, + -0.002398464595898986, + -0.01800405979156494, + 0.02851681038737297, + 0.01043487899005413, + -0.0036385799758136272, + -0.01352640613913536, + 0.007740499451756477, + -0.022676393389701843, + 0.00333682494238019, + 0.0005874486523680389, + 0.005209652241319418, + -0.005906608421355486, + -0.002988346852362156, + -0.0034964631777256727, + 0.0016703592846170068, + -0.0038449412677437067, + 0.02048039622604847, + -0.004979928955435753, + 0.0073083085007965565, + -0.01577691361308098, + 0.022738691419363022, + 0.0034127505496144295, + -0.0038352073170244694, + -0.00011394897592253983, + 0.009212284348905087, + -0.004532163497060537, + -0.010575048625469208, + 0.0013987799175083637, + 0.018720483407378197, + -0.0018465452594682574, + -0.00022655951033812016, + -0.022691966965794563, + 0.0018192899879068136, + 0.0031401976011693478, + 0.018751632422208786, + -0.002443241188302636, + 0.010917686857283115, + 0.008674966171383858, + -0.002014943864196539, + -0.015169510617852211, + -0.012389471754431725, + 0.016353167593479156, + 0.0203869491815567, + 0.02292558364570141, + -0.02242720127105713, + -0.0036599948070943356, + 0.016789251938462257, + -0.0027839322574436665, + 0.0044036745093762875, + 0.00020258946460671723, + 0.011501728557050228, + 0.016742529347538948, + 0.02046482264995575, + -0.0067593096755445, + -0.017007295042276382, + -0.007643159478902817, + 0.006926734931766987, + -0.0028812724631279707, + -0.0047112698666751385, + -0.0407738983631134, + 0.015839211642742157, + 0.017941761761903763, + -0.003720345674082637, + -0.005988374352455139, + -0.0034867289941757917 + ], + "ecec68b7-4d23-4ef0-96cb-96a776280b07": [ + -0.013142666779458523, + -0.011130218394100666, + 0.0021286907140165567, + 0.022463861852884293, + 0.005572374444454908, + -0.026096438989043236, + 0.016680797562003136, + 0.0338556244969368, + -0.018918465822935104, + 0.057540033012628555, + 0.008035262115299702, + 0.011224665679037571, + 0.0014829998835921288, + -0.016898753121495247, + 0.02545710653066635, + 0.03629671782255173, + -0.02768024429678917, + 0.010781491175293922, + -0.013883712701499462, + -0.032082926481962204, + 0.04728163406252861, + -0.018932996317744255, + -0.03542489930987358, + 0.0395224466919899, + 0.01865692064166069, + 0.017741510644555092, + 0.006262564100325108, + 0.013331561349332333, + -0.00997505895793438, + -0.0023139521945267916, + 0.03132735192775726, + 0.024541696533560753, + 0.01636113040149212, + 0.008492967113852501, + 0.01487177424132824, + -0.008660065941512585, + 0.008979732170701027, + 0.016477372497320175, + -0.029264047741889954, + 0.01769791916012764, + 0.01919454149901867, + 0.019688572734594345, + 0.01018574833869934, + -0.021548451855778694, + -0.03356501832604408, + 0.010752430185675621, + -0.030019624158740044, + -0.005659556481987238, + -0.017857752740383148, + -0.01487177424132824, + 0.01261957548558712, + 0.004903980065137148, + 0.03655826300382614, + 0.008318603038787842, + 0.026110969483852386, + -0.020415088161826134, + -0.004595211241394281, + 0.0016083238879218698, + 0.0034291534684598446, + -0.05707506462931633, + 0.026968257501721382, + -0.01045455876737833, + 0.05344248563051224, + 0.01300462894141674, + 0.030804261565208435, + -0.0035036213230341673, + -0.014653819613158703, + 0.00202697841450572, + -0.04486960172653198, + 0.002980530261993408, + 0.05108857527375221, + 0.01429782621562481, + -0.0043990518897771835, + 0.029641835018992424, + -0.00035031672450713813, + -0.011442620307207108, + 0.014377743005752563, + 0.01716029830276966, + 0.009183157235383987, + -0.007130750454962254, + -0.007882693782448769, + -0.01232170406728983, + 0.03754632547497749, + 0.015445721335709095, + 0.06567700952291489, + 0.034959930926561356, + -0.018395375460386276, + -0.05015863478183746, + 0.038127537816762924, + -0.02484683319926262, + -0.004606108646839857, + 0.006930958479642868, + -0.0029187763575464487, + 0.014690144918859005, + -0.029874321073293686, + 0.01414525881409645, + 0.05707506462931633, + -0.014363213442265987, + -0.003868695581331849, + -0.01675345003604889, + 0.022376680746674538, + 0.023611756041646004, + 0.012111014686524868, + 0.026110969483852386, + -0.004075752571225166, + -0.02223137766122818, + 0.02807256206870079, + -0.022551042959094048, + -0.019499678164720535, + 0.047746602445840836, + -0.016491902992129326, + 0.004428112413734198, + -0.02506478689610958, + 0.006429662927985191, + -0.04574142023921013, + -0.031559836119413376, + -0.05536048859357834, + -0.023698939010500908, + -0.016317540779709816, + -0.01829366199672222, + 0.028130684047937393, + -0.020429618656635284, + -0.03728478029370308, + -0.003588987048715353, + -0.004271911457180977, + 0.03804035484790802, + -0.020255254581570625, + 0.03368126228451729, + 0.019485147669911385, + 0.031182048842310905, + -0.03734290227293968, + -0.04155668988823891, + 0.007072629407048225, + -0.013484128750860691, + 0.0178722832351923, + 0.017973994836211205, + -0.04199260100722313, + 0.040975477546453476, + -0.004435377661138773, + 0.024149378761649132, + -0.06085294485092163, + -0.023655347526073456, + -0.012786674313247204, + -0.01432688720524311, + 0.031152987852692604, + 0.007377765607088804, + -0.01618676632642746, + 0.031152987852692604, + -0.034146230667829514, + 0.020720224827528, + -0.09956169873476028, + 0.0009076903806999326, + -0.008347664028406143, + 0.017785102128982544, + 0.00884895958006382, + -0.025297272950410843, + -0.006077302619814873, + 0.028944380581378937, + 0.005681351758539677, + 0.04937399923801422, + 0.001591069158166647, + -0.05387839674949646, + -0.00509287416934967, + 0.0002990065549965948, + 0.05105951428413391, + 0.015518372878432274, + 0.047397878021001816, + 0.03257695958018303, + -0.022086074575781822, + 0.006099098362028599, + 0.0150824636220932, + -0.02521008998155594, + 0.02938028983771801, + 0.01598334312438965, + -0.034378718584775925, + -0.017857752740383148, + 0.011871264316141605, + 0.06567700952291489, + 0.030019624158740044, + -0.01270675752311945, + -0.03423341363668442, + -0.008049792610108852, + 0.010534475557506084, + 0.006618557032197714, + 0.013317030854523182, + 0.008696391247212887, + 0.02861018292605877, + 0.012735818512737751, + 0.005238177254796028, + -0.003977672662585974, + 0.007475845515727997, + -0.025137439370155334, + -0.02845034934580326, + 0.02939482033252716, + -0.007730125915259123, + -0.03408811241388321, + -0.0003662092494778335, + 0.015285887755453587, + -0.01025839988142252, + 0.020647572353482246, + -0.0099024074152112, + -0.03327441215515137, + -0.012227257713675499, + 0.037023235112428665, + -0.04765942320227623, + 0.04271911457180977, + -0.02563147060573101, + -0.0051437304355204105, + 0.026605000719428062, + -0.031152987852692604, + 0.01883128471672535, + -0.04620639234781265, + -0.02106895111501217, + -0.018889404833316803, + 0.0021432209759950638, + 0.009008793160319328, + -0.021722815930843353, + 0.015445721335709095, + -0.01768338866531849, + -0.023422861471772194, + -0.010665249079465866, + 0.0015047953929752111, + -0.015009812079370022, + -0.03902841731905937, + -0.056203246116638184, + 0.009546414948999882, + -0.04129514470696449, + 0.03600611165165901, + -0.0198048148304224, + 0.018221011385321617, + 0.030252108350396156, + -0.013040954247117043, + -0.004638801794499159, + -0.004526191856712103, + -0.006891000084578991, + 0.020763814449310303, + 0.04919963702559471, + 0.0301068052649498, + 0.004482601303607225, + -0.00043886082130484283, + 0.0030204884242266417, + 0.01525682769715786, + -0.018395375460386276, + -1.3629261957248673e-5, + -0.004478968679904938, + 0.02599472738802433, + -0.015547433868050575, + 0.03539583832025528, + 0.012830264866352081, + -0.017029525712132454, + -0.0032620548736304045, + 0.03170514106750488, + 0.01439953874796629, + 5.6844168284442276e-5, + -0.05934179201722145, + 0.05597076192498207, + 0.0357445664703846, + -0.03995835781097412, + 0.004319135099649429, + 0.00301322340965271, + 0.01883128471672535, + -0.006683943327516317, + 0.015009812079370022, + 0.013280704617500305, + 0.025907546281814575, + -0.008819899521768093, + 0.0301649272441864, + -0.03141453489661217, + 0.024410923942923546, + 0.016433782875537872, + 0.03187950327992439, + 0.009074179455637932, + 0.009815225377678871, + 0.01263410598039627, + 0.022449331358075142, + -0.0028116153553128242, + 0.010054975748062134, + 0.0079989368095994, + 0.001324074692092836, + 0.021010830998420715, + -0.004718718584626913, + 0.004061222076416016, + 0.0032311780378222466, + 0.012815735302865505, + 0.017581677064299583, + -0.021693754941225052, + -0.01309181097894907, + -0.003872327972203493, + -0.0413823276758194, + 0.00304046762175858, + 0.004798635374754667, + -0.0043699913658201694, + 0.02974354848265648, + -0.017799632623791695, + -0.0012559638125821948, + 0.0225946344435215, + -0.025645999237895012, + 0.0035526612773537636, + -0.012002037838101387, + 0.0414113886654377, + -0.023074135184288025, + -0.03144359588623047, + 0.023873301222920418, + -0.002408399246633053, + 0.0263579860329628, + -0.00197430606931448, + 0.025573348626494408, + 0.004340930376201868, + -0.032315414398908615, + 0.013193522579967976, + 0.013026424683630466, + -0.04065581038594246, + -0.013505924493074417, + -0.041178904473781586, + -0.001732739619910717, + -0.025645999237895012, + 0.0027044543530792, + 0.003194852266460657, + -0.020211663097143173, + -0.030804261565208435, + 0.011805878020823002, + -0.0031294659711420536, + -0.055098943412303925, + 0.025863954797387123, + 0.03464026376605034, + -0.042690057307481766, + 0.04271911457180977, + 0.012452476657927036, + -0.05291939526796341, + -0.0035817218013107777, + -0.04216696321964264, + -0.012445212341845036, + -0.03641296178102493, + 0.006782022770494223, + -0.036267656832933426, + -0.03865062817931175, + -0.027578530833125114, + -0.024469044059515, + 0.021940771490335464, + -0.001956143183633685, + -0.013614902272820473, + -0.006535007618367672, + 0.021795468404889107, + 0.0023066869471222162, + 0.012881121598184109, + 0.012205461971461773, + 0.007606618106365204, + 0.03481462597846985, + -0.03679075092077255, + 0.016506433486938477, + 0.0009253992466256022, + 0.018308192491531372, + 0.012997363694012165, + 0.003977672662585974, + 0.026488758623600006, + 0.004159301519393921, + -0.009495558217167854, + -0.0007360511226579547, + 0.011021241545677185, + 0.006476886570453644, + -0.009074179455637932, + -0.009350255131721497, + -0.0025573349557816982, + -0.00447533605620265, + -0.021737346425652504, + -0.011246461421251297, + -0.014581168070435524, + -0.022158725187182426, + 0.023626286536455154, + 0.009292134083807468, + 0.014690144918859005, + -5.043039709562436e-5, + -0.03748820349574089, + -0.0358026884496212, + -0.0009190422133542597, + -0.0029950605239719152, + 0.015300418250262737, + -0.0027407801244407892, + -0.017421843484044075, + 0.026517819613218307, + 0.03545396029949188, + -0.003857797710224986, + 0.026837484911084175, + 0.02412031777203083, + -0.0054815602488815784, + 0.007969875819981098, + 0.0012060158187523484, + -0.007276053540408611, + -0.013367886655032635, + -0.006938223727047443, + -0.019848406314849854, + -0.0008722727652639151, + -0.026081908494234085, + -0.012612310238182545, + 0.009510088711977005, + 0.018715040758252144, + -0.023669878020882607, + -0.005841185338795185, + 0.05175697058439255, + -0.005241809878498316, + 0.001943429233506322, + -0.05010051280260086, + -0.012503333389759064, + -0.0006157219759188592, + 0.006901897955685854, + -0.03452401980757713, + -0.006625822279602289, + -0.0017572595970705152, + 0.024251090362668037, + -0.027462288737297058, + 0.016259418800473213, + 0.027593061327934265, + -0.010236604139208794, + 0.020967239513993263, + 0.055476728826761246, + 0.015460251830518246, + -0.008616474457085133, + 0.037953175604343414, + -0.04109172150492668, + 0.00886349007487297, + 0.03801129385828972, + -0.0006697565549984574, + 0.01678250916302204, + 0.008427580818533897, + 0.018003055825829506, + 0.03821472078561783, + -0.019659511744976044, + 0.001437592669390142, + -0.01205289363861084, + -0.012931977398693562, + -0.010323786176741123, + 0.057162247598171234, + 0.0032438919879496098, + 0.008144239895045757, + -0.02279805950820446, + -0.03373938426375389, + -0.030252108350396156, + -0.03562832251191139, + 0.030978623777627945, + 0.0169568732380867, + -0.03132735192775726, + -0.006883735302835703, + -0.011805878020823002, + 0.005714044906198978, + -0.03254789859056473, + -0.018322722986340523, + -0.04234132915735245, + -0.023408332839608192, + -0.0054997229017317295, + -0.025704121217131615, + 0.01280847005546093, + 0.02186811901628971, + -0.057743459939956665, + -0.01639019139111042, + 0.01942702755331993, + 0.008994262665510178, + -0.00997505895793438, + 0.0005707687814719975, + 0.02580583281815052, + -0.06823434680700302, + -0.015126054175198078, + -0.030746139585971832, + 0.012655901722609997, + 0.00923401303589344, + 0.01676798053085804, + -0.02298695221543312, + 0.0040321615524590015, + 0.0026154560036957264, + 0.012728553265333176, + 0.02130143716931343, + -0.019136419519782066, + -0.019296253100037575, + -0.02144674025475979, + 0.012975567951798439, + 0.016724389046430588, + -0.021214254200458527, + 0.007029038388282061, + -0.001421246095560491, + 0.015096994116902351, + -0.013673023320734501, + -0.0074976407922804356, + 0.021722815930843353, + -0.0029932442121207714, + 0.013237114064395428, + -0.015954282134771347, + 0.024774180725216866, + 0.003941346891224384, + -0.03696511313319206, + 0.0036689036060124636, + -0.015285887755453587, + -0.0032021175138652325, + -0.0011724145151674747, + 0.02112707309424877, + 0.002546437084674835, + 0.011885794810950756, + -0.02295789308845997, + -0.004562517628073692, + -0.0169568732380867, + 0.013433272950351238, + 0.005071078892797232, + -0.008819899521768093, + -0.021984361112117767, + -0.029118744656443596, + 0.005452499259263277, + -0.008522028103470802, + 0.04992615059018135, + -0.020051829516887665, + 0.009008793160319328, + -0.020211663097143173, + 0.024774180725216866, + -0.03478556498885155, + 0.03481462597846985, + -0.032315414398908615, + -0.0006252574967220426, + 0.0006956386496312916, + 0.031908564269542694, + -0.004595211241394281, + 0.006313420366495848, + 0.03618047758936882, + -0.011914855800569057, + -0.00012929707008879632, + -0.02545710653066635, + -0.021940771490335464, + -0.011355438269674778, + -0.014937160536646843, + 0.009938732720911503, + 0.008471171371638775, + -0.02468699961900711, + 0.02125784568488598, + -0.03591892868280411, + -0.02125784568488598, + 0.03405905142426491, + 0.0094083771109581, + 0.005205484107136726, + 0.01675345003604889, + -0.038912173360586166, + 0.021141603589057922, + 0.03734290227293968, + 0.023858772590756416, + -0.0013567678397521377, + -0.06643258780241013, + 0.025181030854582787, + -0.021809997037053108, + -0.010592597536742687, + -0.0010498149786144495, + 0.02221684716641903, + -0.017262009903788567, + 0.012786674313247204, + -0.004860389046370983, + 0.006189912557601929, + -0.0254425760358572, + 0.025195559486746788, + 0.0006397877587005496, + 0.004406317137181759, + -0.013011894188821316, + -0.007395928725600243, + 0.04030708596110344, + -0.030368350446224213, + -0.02336474135518074, + -0.024004075676202774, + -0.005419806111603975, + 0.03914466127753258, + -0.003756085643544793, + -0.003977672662585974, + 0.008064323104918003, + -0.004660597536712885, + -0.012561454437673092, + -0.006317052990198135, + 0.006571333389729261, + 0.04559611901640892, + 0.03679075092077255, + 0.008078853599727154, + 0.03222823143005371, + 0.007039935793727636, + 0.004769574850797653, + 0.05015863478183746, + -0.030077744275331497, + 0.0017672491958364844, + -0.032896626740694046, + 0.0010924978414550424, + 0.04242850840091705, + 0.010120362043380737, + -0.02092364802956581, + -0.00734870508313179, + -0.028944380581378937, + -0.013367886655032635, + -0.00484585901722312, + 0.011181075125932693, + -0.00298779527656734, + 0.008732717484235764, + 0.001086140749976039, + 0.03179232031106949, + -0.006756594870239496, + 0.02337927184998989, + -0.01421791035681963, + 0.027375107631087303, + 0.01920907199382782, + 0.021548451855778694, + 0.03086238168179989, + 0.023771589621901512, + 0.016898753121495247, + 0.022478392347693443, + 0.002404766622930765, + 0.01102850679308176, + -0.01636113040149212, + 0.027651183307170868, + 0.014668349176645279, + -0.010621657595038414, + 0.007279686164110899, + 0.021693754941225052, + -0.014719205908477306, + -0.024628877639770508, + 0.036819808185100555, + 0.0005081068375147879, + 0.004035794176161289, + 0.003647108329460025, + 0.0007991671445779502, + 0.0030786097049713135, + 0.002235851716250181, + -0.0022721774876117706, + 0.02526821196079254, + -0.010563536547124386, + 0.044520873576402664, + -0.0030241210479289293, + 0.009183157235383987, + 0.01903470791876316, + -0.01392730325460434, + 0.01451578177511692, + -0.013774735853075981, + -0.03667450696229935, + -0.0018834916409105062, + -0.008660065941512585, + 0.0012187298852950335, + -0.017392782494425774, + -0.0046242717653512955, + -0.0025028460659086704, + 0.015968812629580498, + 0.0016283030854538083, + -0.01656455546617508, + -0.05504082143306732, + -3.780151382670738e-5, + -0.024163907393813133, + 0.00959000550210476, + 0.06567700952291489, + -0.015242297202348709, + 0.016230357810854912, + -0.02051679976284504, + 0.020022768527269363, + 0.040975477546453476, + 0.028915319591760635, + -4.049756898893975e-5, + -0.004337298218160868, + -0.01159518864005804, + 0.020763814449310303, + 0.003222096711397171, + -0.04257381334900856, + -0.013963629491627216, + 0.00028629254666157067, + -0.010178483091294765, + 0.0034963563084602356, + 0.02788366749882698, + -0.013651227578520775, + 0.016898753121495247, + 0.01205289363861084, + 0.032460715621709824, + 0.0035980683751404285, + 0.024367332458496094, + -0.007428621873259544, + 0.021562982350587845, + 0.0028206966817378998, + 0.002095997566357255, + -0.015242297202348709, + 0.005913836881518364, + 0.012307173572480679, + -0.021955300122499466, + -0.0011197421699762344, + -0.018322722986340523, + 0.013811061158776283, + -0.007504906039685011, + -0.007130750454962254, + -0.004460805561393499, + -0.020865527912974358, + -0.03446589782834053, + 0.028392229229211807, + -0.023480983451008797, + -0.004842226393520832, + 0.007701065391302109, + -0.007868164218962193, + -0.01766885817050934, + -0.027462288737297058, + -0.00762841384857893, + 0.0020106318406760693, + -0.012837530113756657, + 0.033041927963495255, + 0.019107360392808914, + 0.0007346888887695968, + 0.01498075108975172, + -0.006280727218836546, + -0.008551088161766529, + -0.01566367596387863, + -0.02827598713338375, + -0.01468287967145443, + -0.009001527912914753, + -0.013673023320734501, + -0.01111568883061409, + 0.02372799813747406, + -0.017465434968471527, + -0.01618676632642746, + -0.01566367596387863, + -0.0225946344435215, + 0.012670432217419147, + 0.018206480890512466, + -0.0025537023320794106, + 0.014573902823030949, + 0.017843222245573997, + 0.033448778092861176, + -0.019644981250166893, + 0.02618362195789814, + 0.017988525331020355, + 0.03743008151650429, + -0.024410923942923546, + 0.018540678545832634, + -0.005572374444454908, + -0.005710412282496691, + -0.015489311888813972, + 0.0012496068375185132, + -0.0007846368243917823, + -0.00692732585594058, + 0.00630978774279356, + -0.0013731144135817885, + 0.027985380962491035, + -0.0001941158843692392, + -0.0017064034473150969, + -0.0005003876285627484, + 0.010796021670103073, + -0.02579130232334137, + -0.01864239014685154, + 0.006462356075644493, + -0.002228586468845606, + -0.012924712151288986, + 0.005921102128922939, + -0.024439984932541847, + 0.025369923561811447, + -0.024992136284708977, + 0.009967793710529804, + 0.000745586643461138, + 0.026227213442325592, + 0.030426472425460815, + -0.04989708960056305, + -0.02468699961900711, + 0.015344008803367615, + -0.030019624158740044, + 0.023698939010500908, + -0.012743083760142326, + -0.029845260083675385, + 0.01829366199672222, + 0.015373069792985916, + 0.010810552164912224, + -0.0244981050491333, + 0.025951135903596878, + -0.03905747830867767, + 0.022754468023777008, + -0.004580680746585131, + -0.019310783594846725, + -0.008216891437768936, + -0.017247479408979416, + 0.008187830448150635, + 0.04577048122882843, + 0.026256272569298744, + -0.004972998984158039, + 0.03051365539431572, + 0.028130684047937393, + -0.010251134634017944, + -0.009117770940065384, + 0.001844441401772201, + -0.011166544631123543, + 0.024628877639770508, + -0.04289348050951958, + -0.03185044229030609, + 0.0077228606678545475, + -0.0357445664703846, + -0.04344563186168671, + 0.023873301222920418, + -0.01404354628175497, + 0.012881121598184109, + -0.029714487493038177, + 0.04847311973571777, + -0.027970850467681885, + -0.02526821196079254, + 0.006447825580835342, + 0.008020731620490551, + 0.003209382528439164, + -0.00010415282304165885, + 0.03147265687584877, + 0.013513189740478992, + -0.04120796546339989, + 0.00409028260037303, + 0.01233623456209898, + -0.01585257053375244, + 0.027607591822743416, + 0.021548451855778694, + -0.01829366199672222, + 0.034204352647066116, + 0.05259972810745239, + -0.007174341473728418, + -0.00480953324586153, + -0.03109486773610115, + -0.012111014686524868, + -0.049809906631708145, + 0.009415642358362675, + -0.005586904939264059, + -0.0057358406484127045, + -0.02281259000301361, + 0.005285400897264481, + -0.0016555474139750004, + -0.003970407880842686, + 0.020981770008802414, + 0.00405395682901144, + 0.009568209759891033, + 0.03147265687584877, + -0.009226747788488865, + 0.0021341394167393446, + 0.035134293138980865, + 0.011035772040486336, + 0.004337298218160868, + 0.012394355610013008, + 0.028145214542746544, + 0.010563536547124386, + 0.007145280949771404, + 0.0074976407922804356, + -0.014624758623540401, + 0.01496622059494257, + -0.019674042239785194, + 0.04091735929250717, + 0.00839125458151102, + 0.030658958479762077, + -0.01862785965204239, + -0.0060082837007939816, + -0.032867565751075745, + 0.0018399007385596633, + -0.01232170406728983, + -0.03879593312740326, + -0.003403725568205118, + -0.007679269649088383, + -0.0058484505861997604, + -0.0071198525838553905, + 0.0046242717653512955, + 0.014937160536646843, + 0.0178722832351923, + 0.048705603927373886, + 0.04420120641589165, + -0.012445212341845036, + 0.006324318237602711, + -0.010301991365849972, + -0.005012957379221916, + 0.006476886570453644, + 0.0040430594235658646, + 0.032693199813365936, + 0.015373069792985916, + -0.006295257713645697, + 0.012626840732991695, + 0.027418697252869606, + -0.04056863114237785, + 0.009611801244318485, + -0.011660574935376644, + -0.03469838574528694, + 0.01730560138821602, + 0.010461824014782906, + -0.021403148770332336, + -0.012655901722609997, + -0.0026172723155468702, + -0.0035817218013107777, + 0.015678206458687782, + 0.02936575934290886, + 0.009931468404829502, + 0.0026390678249299526, + 0.0027607593219727278, + -0.004853124264627695, + -0.024556227028369904, + 0.007650209125131369, + 0.018540678545832634, + 0.003974040038883686, + -0.006560435518622398, + 0.019441556185483932, + -0.02313225530087948, + -0.013120871037244797, + 0.0010743349557742476, + 0.0018907567718997598, + -0.012081953696906567, + 0.014704675413668156, + 0.005430703982710838, + 0.013396947644650936, + 0.024919483810663223, + -0.021751876920461655, + -0.01678250916302204, + 0.0432712696492672, + 0.009648126550018787, + -0.009837021119892597, + -0.013193522579967976, + -0.009422906674444675, + 0.005928367376327515, + -0.02483230270445347, + -0.02012448199093342, + -0.008986997418105602, + 0.040365204215049744, + -0.05919649079442024, + 0.024977605789899826, + 0.01716029830276966, + -0.011072097346186638, + 0.0075412318110466, + -0.00025132898008450866, + -0.013418742455542088, + -0.011936650611460209, + -0.015925221145153046, + 0.04007459804415703, + 0.015184175223112106, + 0.028740955516695976, + -0.004700555931776762, + -0.003984937909990549, + -3.845424362225458e-5, + -0.010708839632570744, + 0.023597225546836853, + 0.006803818512707949, + 0.017014995217323303, + 0.01717482879757881, + -0.011304582469165325, + -0.01365849282592535, + -0.012728553265333176, + -0.004486233927309513, + 0.0059901210479438305, + 0.0023048706352710724, + -0.008035262115299702, + -0.011871264316141605, + -0.006564068142324686, + 0.02785460650920868, + -0.0037415551487356424, + -0.023815181106328964, + 0.034204352647066116, + -0.03330347314476967, + -0.0035544775892049074, + -0.015721797943115234, + 0.022362150251865387, + 0.0036253128200769424, + -0.012750348076224327, + -0.004813165869563818, + -0.011834939010441303, + 0.03443683683872223, + 0.02144674025475979, + -0.01884581334888935, + -0.007519436068832874, + -0.004181097261607647, + -0.016826100647449493, + 0.006920061074197292, + -0.006614924408495426, + 0.01918001100420952, + 0.02336474135518074, + 0.004075752571225166, + -0.022725407034158707, + -0.0006229871069081128, + -0.0010216624941676855, + -0.006342480890452862, + 0.02295789308845997, + 0.012830264866352081, + -0.003647108329460025, + -0.0188167542219162, + 0.005586904939264059, + -0.016695328056812286, + -0.007555761840194464, + -0.03214104846119881, + -0.015532903373241425, + -0.008769042789936066, + -0.005183688830584288, + -0.024527166038751602, + 0.0036144149489700794, + -0.020996300503611565, + -0.02750588022172451, + -0.005757635924965143, + -0.0030604468192905188, + -0.022885240614414215, + -0.0108178174123168, + 0.012343499809503555, + -0.0319666862487793, + 0.005852083209902048, + -0.023684408515691757, + -0.01045455876737833, + -0.026692181825637817, + -0.01900564692914486, + 0.02842129021883011, + -0.028203334659337997, + 0.0012568719685077667, + -0.011936650611460209, + -0.010294726118445396, + -0.0024846831802278757, + 0.011943915858864784, + 0.010868673212826252, + -0.0301649272441864, + -0.012307173572480679, + 0.0001985430862987414, + -0.017203889787197113, + -0.024439984932541847, + 0.013338825665414333, + 0.010193013586103916, + -0.007991671562194824, + 0.04251569136977196, + 0.04655511677265167, + 0.01867145113646984, + 0.00819509569555521, + -0.022681817412376404, + -0.0197757538408041, + 0.00621897354722023, + -0.039667751640081406, + -0.035512082278728485, + -0.01006224099546671, + -0.01347686443477869, + 0.01601240411400795, + 0.016666267067193985, + -0.010280195623636246, + -0.010752430185675621, + 0.02073475532233715, + 0.04120796546339989, + 0.014007220044732094, + -0.02297242358326912, + -0.002099629957228899, + -0.017770571634173393, + -0.014385008253157139, + 0.011340908706188202, + 0.0023829711135476828, + 0.003828737186267972, + -0.0022049748804420233, + 0.01111568883061409, + -0.00838399026542902, + -0.006444193422794342, + -0.007461315020918846, + -0.029234986752271652, + 0.011616984382271767, + -0.0043699913658201694, + -0.019078299403190613, + -0.07666192203760147, + -0.02337927184998989, + -0.01845349557697773, + 0.023306619375944138, + 0.0216356348246336, + -0.02130143716931343, + 0.014239705167710781, + 0.0027607593219727278, + -0.00819509569555521, + -0.016041463240981102, + 0.025645999237895012, + -0.00839125458151102, + 0.0197757538408041, + 0.01900564692914486, + -0.011079362593591213, + 0.002468336606398225, + -0.0035671915393322706, + -0.02429468184709549, + 0.0035254168324172497, + -0.00611726101487875, + 0.009277603588998318, + 0.013426007702946663, + 0.026430636644363403, + -0.017814161255955696, + -0.014726471155881882, + 0.02013901248574257, + -0.0028243293054401875, + -0.008035262115299702, + -0.008057057857513428, + -0.032518837600946426, + 0.006084567867219448, + 0.023074135184288025, + -0.007341439835727215, + -0.016288479790091515, + -0.02583489380776882, + 0.01829366199672222, + -0.0031785056926310062, + -0.030833320692181587, + 0.026881076395511627, + 0.015503842383623123, + 0.021548451855778694, + -0.012270848266780376, + -0.021214254200458527, + 0.0017790549900382757, + 0.002673577284440398, + -0.01598334312438965, + 0.005416173487901688, + -0.018569737672805786, + -0.003465479239821434, + 0.012822999618947506, + 0.004061222076416016, + -0.003198484890162945, + -0.03536677733063698, + -0.02182452753186226, + 0.001730015268549323, + -0.0018217378528788686, + 0.032664138823747635, + -0.018729571253061295, + 0.004224688280373812, + 0.02465793862938881, + 0.05608700215816498, + 0.0178722832351923, + 0.0041556693613529205, + 0.004359093494713306, + -0.013011894188821316, + 0.007504906039685011, + 0.0047768400982022285, + 0.026459697633981705, + 0.03652920201420784, + -0.022158725187182426, + 0.007061731535941362, + 0.001057988265529275, + -0.03132735192775726, + 0.016622677445411682, + 0.008376725018024445, + 0.0188603438436985, + -0.006462356075644493, + 0.026038318872451782, + 0.014995281584560871, + 0.004115710966289043, + -0.015707267448306084, + 0.004518927074968815, + 0.007955345325171947, + -0.02221684716641903, + -0.0007396836881525815, + 0.00419199513271451, + 0.017625268548727036, + -0.010418233461678028, + -0.004362726118415594, + -0.00858014915138483, + 0.02375705912709236, + -0.0036107825580984354, + 0.03240259364247322, + 0.014879039488732815, + -0.018932996317744255, + 0.06306155025959015, + -0.032664138823747635, + 0.03243165463209152, + -0.01216187048703432, + -0.00197430606931448, + 0.004366358742117882, + -0.011624249629676342, + 0.020269785076379776, + -0.018337253481149673, + -0.009052383713424206, + 0.007788246963173151, + -0.0058666132390499115, + -0.009655391797423363, + -0.007759186439216137, + -0.01242341659963131, + 0.005107404664158821, + -0.014762796461582184, + -0.02637251652777195, + 0.012270848266780376, + -0.017465434968471527, + -0.005739473272114992, + 0.0011805878020823002, + -0.019833875820040703, + -0.027084501460194588, + 0.002197709633037448, + -0.005379847716540098, + 0.03713947534561157, + 0.012292644008994102, + -0.017436373978853226, + 0.00950282346457243, + -7.87815370131284e-5, + 0.0021759141236543655, + -0.013789265416562557, + 0.01582350954413414, + 0.03086238168179989, + -0.0034455000422894955, + 0.004493498709052801, + -0.015111523680388927, + -0.0024756018538028, + -0.015489311888813972, + 0.0072542582638561726, + 0.04164387285709381, + -0.005492457654327154, + 0.018874874338507652, + -0.040190842002630234, + 0.022158725187182426, + 0.01243794709444046, + -0.015416660346090794, + 0.012328969314694405, + -0.011391764506697655, + 0.006022814195603132, + -0.006048242095857859, + -0.0058484505861997604, + 0.007759186439216137, + -0.003131282050162554, + -0.009451967664062977, + -0.0036525570321828127, + 0.005198218859732151, + 0.016303010284900665, + -0.012474272400140762, + -0.049809906631708145, + -0.019063768908381462, + 0.018976587802171707, + -0.005318094044923782, + -0.02183905802667141, + -0.007853633724153042, + 0.0029896115884184837, + 0.016143176704645157, + 0.0032566061709076166, + 0.027011848986148834, + 0.007737391162663698, + -0.02332114987075329, + -0.0036852501798421144, + -0.002773473272100091, + -0.0017427292186766863, + 0.007061731535941362, + -0.022158725187182426, + -0.02637251652777195, + -0.020240724086761475, + -0.011762287467718124, + -0.02127237617969513, + -0.007221565116196871, + 0.003042283933609724, + 0.00509287416934967, + -0.02333568036556244, + 0.0036216801963746548, + 0.013484128750860691, + 0.007650209125131369, + 0.009052383713424206, + -0.0006820164853706956, + -0.0009258532663807273, + -0.00166099623311311, + 0.01791587471961975, + 0.011406295001506805, + 0.029104214161634445, + 0.012873856350779533, + 0.03347783908247948, + 0.007246993016451597, + -0.006625822279602289, + 0.007642943877726793, + -0.018032116815447807, + 0.022187786176800728, + 0.03827283903956413, + -0.01918001100420952, + -0.003634394146502018, + -0.013440538197755814, + -0.019150950014591217, + 0.01846802607178688, + 0.02298695221543312, + -0.005441601853817701, + 0.015387600287795067, + -0.04315502569079399, + 0.01027293037623167, + 0.012779409065842628, + -0.008187830448150635, + -0.005910204257816076, + 0.010222074575722218, + 0.023960484191775322, + 0.0018335436470806599, + 0.011326378211379051, + 0.0059792231768369675, + 0.021141603589057922, + 0.004210157785564661, + -0.00490034744143486, + -0.008856224827468395, + 0.03620953485369682, + -0.0008500232361257076, + 0.015213236212730408, + -0.01862785965204239, + 0.01826460100710392, + 0.027258865535259247, + 0.027636652812361717, + -0.01515511516481638, + -0.0159978736191988, + -0.00019990530563518405, + -0.002550069708377123, + 0.011638779193162918, + -0.017363721504807472, + 0.0030386513099074364, + -0.011464416049420834, + -0.0012214543530717492, + 0.019107360392808914, + -0.02012448199093342, + 0.02188264951109886, + -0.008449376560747623, + -0.0051437304355204105, + -0.020226193591952324, + -0.017247479408979416, + 0.001223270664922893, + 0.018497087061405182, + 0.038156598806381226, + -0.03484368696808815, + -0.003868695581331849, + 0.014232439920306206, + 0.028973441570997238, + 0.009960528463125229, + 0.005027487874031067, + -0.006153586786240339, + 0.008703656494617462, + -0.005187321454286575, + 0.003194852266460657, + 0.004715085960924625, + -0.013716613873839378, + 0.020226193591952324, + -0.009938732720911503, + -0.009226747788488865, + -0.00921948254108429, + -0.00013099984789732844, + -0.032315414398908615, + 0.025340864434838295, + -0.006313420366495848, + -0.02673577331006527, + -0.009895142167806625, + 0.012023832648992538, + -0.018351783975958824, + -0.0023121358826756477, + -0.003283850383013487, + -0.00043613638263195753, + 0.017436373978853226, + 0.005212749354541302, + 0.020981770008802414, + -0.010193013586103916, + -0.02111254259943962, + 0.007395928725600243, + -0.002268544863909483, + -0.0029205926693975925, + 0.008681860752403736, + -0.024396393448114395, + 0.00752670131623745, + 0.01997917890548706, + 0.006829246412962675, + 0.012503333389759064, + 0.006945488974452019, + 0.017276540398597717, + 0.0049512037076056, + 0.0012750348541885614, + 0.032867565751075745, + 0.021737346425652504, + -0.0067239017225801945, + 0.016099585220217705, + -0.0020505902357399464, + 0.02106895111501217, + 0.005695882253348827, + 0.008187830448150635, + -0.01101397629827261, + 0.018744101747870445, + 0.011791347526013851, + -0.04205072298645973, + -0.006531374994665384, + 0.00023725273786112666, + -0.00025314526283182204, + 0.011231930926442146, + 0.008601944893598557, + -0.0016718939878046513, + -0.017552616074681282, + -0.016898753121495247, + -0.005826654843986034, + 0.009212217293679714, + -0.01636113040149212, + -0.0008059781976044178, + 0.02263822592794895, + 0.03333253413438797, + -0.02239120937883854, + -0.008928876370191574, + -0.03257695958018303, + 0.007991671562194824, + 0.0021868119947612286, + 0.013716613873839378, + 0.033041927963495255, + -0.03187950327992439, + -0.01149347610771656, + 0.00838399026542902, + -0.013418742455542088, + 0.013811061158776283, + 0.0060010189190506935, + -0.018148358911275864, + 0.05533142760396004, + 0.009095975197851658, + 0.024410923942923546, + -0.01062892284244299, + -0.00018310462473891675, + 0.00185897178016603, + -0.0033710321877151728, + -0.011972976848483086, + -0.004838593769818544, + 0.027912728488445282, + 0.009175891987979412, + -0.0007764635374769568, + 0.01101397629827261, + 0.005241809878498316, + 0.0046242717653512955, + -0.006124526262283325, + 0.00980069488286972, + 0.037749748677015305, + 0.0016174053307622671, + 0.007483110297471285, + 0.025704121217131615, + 0.009669922292232513, + 0.006891000084578991, + 0.011340908706188202, + 0.03841814398765564, + -0.0057649011723697186, + 0.021577512845396996, + -0.016114115715026855, + -0.013796530663967133, + -0.023786120116710663, + 0.007708330173045397, + 0.013222583569586277, + 0.013600371778011322, + 0.005052915774285793, + 0.014268766157329082, + -0.003516335505992174, + -0.013673023320734501, + 0.004315502475947142, + -0.033448778092861176, + -0.006157219409942627, + -0.008718186989426613, + -0.03745914250612259, + 0.007780981715768576, + -0.0028388595674186945, + 0.013135401532053947, + -0.002717168303206563, + 0.0006747513543814421, + 0.017770571634173393, + -0.017756041139364243, + 0.011827673763036728, + 0.0022976056206971407, + -0.010665249079465866, + -0.019833875820040703, + -0.023989545181393623, + -0.004849491640925407, + 0.01621582731604576, + 0.0028225129935890436, + -0.011369968764483929, + -0.014995281584560871, + -0.02317584678530693, + -0.027811016887426376, + -0.008747247979044914, + -0.005299931392073631, + 0.007072629407048225, + 0.008376725018024445, + -0.03411717340350151, + 0.019267193973064423, + -0.007145280949771404, + -0.010476354509592056, + -0.010287460871040821, + 0.016332069411873817, + -0.006829246412962675, + 0.0432712696492672, + -0.028566593304276466, + 0.037168536335229874, + -0.0024320108350366354, + 0.028174273669719696, + -0.0009971426334232092, + -0.005902939010411501, + -0.023640817031264305, + 0.005176423583179712, + -0.0013277071993798018, + 0.002172281499952078, + -0.009924203157424927, + 0.003730657510459423, + 0.005249075125902891, + 0.0319957472383976, + -0.010679778642952442, + 0.011958446353673935, + 0.00205240654759109, + -0.02106895111501217, + -0.024178437888622284, + -0.014334152452647686, + -0.02901703305542469, + 0.021170664578676224, + -0.011043037287890911, + -0.008725452236831188, + -0.0016246704617515206, + -0.009139565750956535, + 0.012125545181334019, + -0.019659511744976044, + -0.008325868286192417, + 0.01826460100710392, + 0.03804035484790802, + -0.02111254259943962, + 0.012714022770524025, + -0.02278352901339531, + 0.014355948194861412, + -0.013048219494521618, + -0.022521983832120895, + 0.0025428044609725475, + 0.0006393337389454246, + -0.022187786176800728, + -0.016491902992129326, + 0.008485701866447926, + 0.02092364802956581, + -0.01771244965493679, + 0.016695328056812286, + 0.019703103229403496, + 0.02375705912709236, + -0.036442022770643234, + 0.01902017742395401, + -0.011791347526013851, + 0.0047768400982022285, + 0.014493986032903194, + -0.015736328437924385, + -0.009350255131721497, + -0.029264047741889954, + 0.01156612765043974, + 0.0073668682016432285, + 0.0019797550048679113, + -0.018598798662424088, + 0.00442447979003191, + 0.0013594923075288534, + 0.02166469395160675, + 0.043009720742702484, + -0.008529293350875378, + -0.036238595843315125, + -0.03164701908826828, + 0.00532172666862607, + -0.02337927184998989, + -0.005049283150583506, + -0.0021286907140165567, + 0.023437391966581345, + -0.03106580674648285, + -0.0014593881787732244, + -0.009466498158872128, + -0.009415642358362675, + -0.014486720785498619, + 0.0035853544250130653, + -0.014530311338603497, + -0.012881121598184109, + 0.016797039657831192, + 0.02374252863228321, + -0.02429468184709549, + 0.021548451855778694, + -0.004115710966289043, + 0.005187321454286575, + 0.01431235671043396, + -0.027011848986148834, + 0.03655826300382614, + -0.04271911457180977, + -0.00360351731069386, + 0.018322722986340523, + -0.01846802607178688, + 0.0063461135141551495, + -0.018221011385321617, + 0.022463861852884293, + 0.0045298244804143906, + 0.018351783975958824, + -0.019456086680293083, + -0.0320538692176342, + -0.003661638591438532, + 0.001168781891465187, + -0.012416151352226734, + 0.006317052990198135, + 0.0005008417065255344, + 0.0005394378094933927, + -0.01506793312728405, + -0.012517863884568214, + 0.0016918731853365898, + -0.01920907199382782, + -0.005063813645392656, + 0.0068764700554311275, + -0.0034981726203113794, + 0.0005539681296795607, + -0.004718718584626913, + -0.0015638248296454549, + 0.0007514895405620337, + -0.029060622677206993, + -0.011907590553164482, + 0.0024828671012073755, + 0.005557844415307045, + 0.009364785626530647, + -0.0003845991741400212, + -0.0188167542219162, + -0.014581168070435524, + -0.03033929131925106, + 0.003915918990969658, + 0.011842204257845879, + 0.0073559703305363655, + 0.005405276082456112, + 0.004838593769818544, + 0.026692181825637817, + 0.002562783658504486, + 0.012982833199203014, + 0.0005507896421477199, + -0.02281259000301361, + -0.008057057857513428, + -0.003659822279587388, + 0.0002790273865684867, + -0.016288479790091515, + 0.021374087780714035, + 0.008674596436321735, + 0.07317464798688889, + 0.01564914546906948, + -0.002718984615057707, + 0.0011360887438058853, + 0.005790329072624445, + -0.01883128471672535, + 0.005768533796072006, + -0.012837530113756657, + 0.0031294659711420536, + -0.0011515271617099643, + -0.0008463906706310809, + -0.017552616074681282, + 0.02258010394871235, + 0.008078853599727154, + -0.016724389046430588, + 0.001997917890548706, + 0.007759186439216137, + 0.03330347314476967, + 0.0046133738942444324, + 0.007613883353769779, + 0.009422906674444675, + 0.0018044831231236458, + -0.0014539393596351147, + 0.014908099547028542, + -0.017581677064299583, + 0.006447825580835342, + 0.003421888453885913, + 0.002404766622930765, + 0.01347686443477869, + 0.020109951496124268, + -0.0012005669996142387, + -0.005361685063689947, + 0.0005757635808549821, + -0.013469599187374115, + 0.001970673445612192, + 0.010193013586103916, + -0.01235076505690813, + -0.00014371387078426778, + -0.00121146475430578, + 0.018308192491531372, + -0.008681860752403736, + -0.007839103229343891, + 0.015532903373241425, + 0.02489042468369007, + -0.013237114064395428, + -0.0041229757480323315, + 0.004954836331307888, + -0.002797085093334317, + 0.009023323655128479, + 0.003619863884523511, + -0.01750902645289898, + -0.009698983281850815, + 0.012416151352226734, + -0.003111303085461259, + 0.023306619375944138, + -0.001028019585646689, + 0.01714576780796051, + -0.011558863334357738, + -0.015896160155534744, + -0.017291070893406868, + -0.021809997037053108, + 0.0005140097928233445, + -0.031036745756864548, + -0.01810476742684841, + 0.004119343124330044, + -0.01585257053375244, + -0.02657593972980976, + -0.00836945977061987, + -0.0031621591188013554, + 0.005441601853817701, + 0.002352094277739525, + 0.002014264464378357, + 0.006938223727047443, + -0.042457569390535355, + 0.004224688280373812, + 0.0008827164419926703, + 0.006433295551687479, + 0.027622122317552567, + 0.011050301603972912, + 0.0010343765607103705, + 0.0009213125449605286, + -0.0013267990434542298, + 0.00574310589581728, + -0.014239705167710781, + -0.012379825115203857, + 0.003323808778077364, + 0.02278352901339531, + -0.02503572776913643, + 0.010156688280403614, + -0.03841814398765564, + -0.004435377661138773, + -0.00035258708521723747, + -0.0075993528589606285, + -0.006411499809473753, + 0.01580897904932499, + -0.002764391712844372, + -0.018598798662424088, + -0.0008395795593969524, + 0.010280195623636246, + 0.00645145820453763, + 0.0047659422270953655, + 0.01496622059494257, + -0.0048676542937755585, + -0.0020197133999317884, + 0.00019343476742506027, + -0.022914301604032516, + 0.00951735395938158, + 0.02128690667450428, + -0.018584268167614937, + -0.004413582384586334, + -0.0006297982181422412, + -0.01655002497136593, + 0.005227279383689165, + 0.0013585841516032815, + -0.02657593972980976, + 0.0006257115164771676, + 0.016099585220217705, + 0.0034563979133963585, + 0.0006693024770356715, + -0.008333133533596992, + -0.0074467845261096954, + -0.0036543733440339565, + 0.008725452236831188, + 0.0036816177889704704, + 0.0008790838764980435, + 0.020662102848291397, + 0.001409440184943378, + 0.008245951496064663, + -0.023960484191775322, + -0.003085874952375889, + 0.014450394548475742, + 0.011435355059802532, + 0.01621582731604576, + 0.0005112853250466287, + 0.017276540398597717, + -0.009030588902533054, + -0.0027280659414827824, + 0.008769042789936066, + 0.024934014305472374, + -0.029482001438736916, + 0.011326378211379051, + 0.03356501832604408, + 0.012575984932482243, + 0.010113096795976162, + 0.01055627129971981, + 0.030833320692181587, + 0.006353378761559725, + -0.02582036331295967, + 0.00014916273357812315, + 0.018003055825829506, + 0.020284315571188927, + -0.030252108350396156, + 0.007076261565089226, + -0.007228829897940159, + 0.021432209759950638, + 0.011834939010441303, + -0.001759983948431909, + 0.030368350446224213, + -0.013200787827372551, + 0.00036938776611350477, + -0.0020251621026545763, + 0.010970385745167732, + -0.015561963431537151, + -0.00579759432002902, + -0.003857797710224986, + -0.0077228606678545475, + 0.017392782494425774, + 0.01516964565962553, + 0.022551042959094048, + -0.00943017192184925, + -0.016695328056812286, + 0.013949098996818066, + -0.0027916361577808857, + -0.03827283903956413, + -0.009052383713424206, + 0.0005385296535678208, + -0.0026136396918445826, + 0.0012023833114653826, + -0.02657593972980976, + 0.013222583569586277, + -0.008551088161766529, + -0.0235391054302454, + 0.005238177254796028, + 0.017044056206941605, + 0.013062749989330769, + -0.00839125458151102, + 0.012074689380824566, + -0.017044056206941605, + 0.011914855800569057, + -0.013527720235288143, + -0.00650231447070837, + 0.024556227028369904, + -0.006687575951218605, + 0.0063606440089643, + -0.003803309053182602, + -0.0017345559317618608, + -0.0002826599811669439, + 0.015939751639962196, + -0.010694309137761593, + -0.007766451686620712, + 0.004834961146116257, + -0.010280195623636246, + 0.008907080627977848, + 0.006295257713645697, + 0.0024574389681220055, + -0.02185358852148056, + -0.00752670131623745, + 0.0032856666948646307, + -0.005052915774285793, + -0.0008595587569288909, + -0.034000929445028305, + -0.02561694011092186, + 0.021969830617308617, + 0.0015229582786560059, + -0.010091301053762436, + -0.031356412917375565, + 0.02111254259943962, + 0.014864508993923664, + -5.299874374031788e-6, + 0.009255808778107166, + 0.010432763956487179, + 0.012946507893502712, + 0.031152987852692604, + -0.029714487493038177, + -0.016985934227705002, + 0.016709858551621437, + 0.01639019139111042, + 0.00725789088755846, + 0.001029835781082511, + 0.00959000550210476, + 0.032460715621709824, + -0.0004561155510600656, + -0.013883712701499462, + 0.0198048148304224, + 0.0077228606678545475, + 0.048879969865083694, + 0.002295789308845997, + -0.018540678545832634, + 0.0018798590172082186, + -0.01309181097894907, + 0.003785146167501807, + 0.007693800143897533, + -0.01477006170898676, + 0.0027952687814831734, + 0.007606618106365204, + 0.011544332839548588, + 0.015285887755453587, + 0.008057057857513428, + 0.010549006052315235, + -2.3384720407193527e-5, + -0.0033347064163535833, + -0.017552616074681282, + 0.003420072142034769, + 0.05062360689043999, + 0.01422517467290163, + 0.009793429635465145, + -0.0017681573517620564, + 0.0012323521077632904, + -0.008492967113852501, + -0.01730560138821602, + -0.0044898660853505135, + 0.012735818512737751, + -0.003650740720331669, + -0.017857752740383148, + -0.0075412318110466, + 0.01166784018278122, + -0.023800650611519814, + 0.014239705167710781, + -0.020051829516887665, + 0.008681860752403736, + -0.0017817794578149915, + -0.004555252846330404, + 0.01468287967145443, + 0.01601240411400795, + -0.004962101578712463, + 0.0002642700565047562, + -0.0006534099229611456, + -0.006266196724027395, + -0.003777880920097232, + -0.004893082659691572, + 0.0007800961029715836, + 0.0029659997671842575, + 0.004791370127350092, + -0.03164701908826828, + 0.005045650526881218, + -0.010040445253252983, + -0.003919551614671946, + 0.012772143818438053, + -0.0001689148775767535, + 0.0008672779658809304, + 0.006418765056878328, + -0.020603982731699944, + 0.006673045456409454, + -0.014181584119796753, + 0.008899816311895847, + 0.004627904389053583, + -0.000661129190120846, + -0.001604691264219582, + 0.04048144817352295, + 0.01477006170898676, + 0.005281768273562193, + 0.009459232911467552, + -0.0030241210479289293, + -0.01902017742395401, + 0.012481537647545338, + 0.01601240411400795, + 0.02878454700112343, + -0.005085608921945095, + -0.008325868286192417, + 0.001928898855112493, + -0.01138449925929308, + -0.005572374444454908, + 0.007831837981939316, + -0.013505924493074417, + -0.003875960595905781, + -0.02901703305542469, + -9.637683251639828e-5, + 0.0057358406484127045, + -0.017596207559108734, + -0.01655002497136593, + 0.006840144284069538, + -0.0028552061412483454, + -0.009698983281850815, + 0.019485147669911385, + -0.0016873324057087302, + 0.013702084310352802, + 0.002635435201227665, + 0.008434846065938473, + 0.0073668682016432285, + -0.03533771634101868, + 0.0012804836733266711, + -0.00608093524351716, + -0.0003051365492865443, + 1.0727456356107723e-5, + -5.13953018526081e-5, + 0.020676633343100548, + -0.014319621957838535, + 0.00015517919382546097, + -0.01842443458735943, + 0.002590028103441, + -0.0339428074657917, + 0.014813652262091637, + -0.004853124264627695, + 0.0022994219325482845, + 0.003632577834650874, + 0.0021177928429096937, + -0.007330542430281639, + -0.0018081156304106116, + 0.010832346975803375, + 0.013353356160223484, + 0.015111523680388927, + -0.006495049223303795, + 0.008594679646193981, + -0.0018925730837509036, + 0.0030241210479289293, + -0.0064805191941559315, + 0.025021197274327278, + 0.017814161255955696, + -0.02016807347536087, + -0.004933040589094162, + -0.010316520929336548, + -0.004064854700118303, + -0.011428089812397957, + -0.010134892538189888, + -0.00039776728954166174, + -0.0064986818470060825, + 0.0004604292626027018, + 0.01997917890548706, + -0.03106580674648285, + 0.0046242717653512955, + -0.018337253481149673, + -0.017378251999616623, + -0.015416660346090794, + -0.012641371227800846, + -0.003213015152141452, + 0.029656365513801575, + 0.0033129111398011446, + -0.005365317687392235, + -0.010832346975803375, + -0.005307196173816919, + 0.02051679976284504, + 0.019630450755357742, + -0.014152523130178452, + -0.00933572556823492, + 0.0056123328395187855, + 0.02016807347536087, + 0.02336474135518074, + 0.04484054073691368, + 0.004678760189563036, + -0.022086074575781822, + -0.020574921742081642, + -0.006981814745813608, + -0.018569737672805786, + 0.010984915308654308, + 0.002277626423165202, + -0.012009302154183388, + -0.02714262157678604, + 0.028392229229211807, + -0.008238686248660088, + 0.011340908706188202, + 0.009016058407723904, + 0.0027062704320997, + 0.03283850476145744, + 0.015314948745071888, + 0.02470153011381626, + -0.033594079315662384, + 0.00687283743172884, + 0.0022976056206971407, + 0.004250116180628538, + -0.010113096795976162, + 0.02205701358616352, + 0.01730560138821602, + -0.03170514106750488, + 0.0024864994920790195, + 0.015968812629580498, + -0.0013440537732094526, + 0.009154096245765686, + 0.00039322656812146306, + 0.030397411435842514, + -0.012859325855970383, + 0.008878020569682121, + 0.008449376560747623, + 0.017087645828723907, + -0.006564068142324686, + 0.009786165319383144, + -0.005274503026157618, + 0.027738364413380623, + -0.0038396348245441914, + -0.008914345875382423, + 0.010054975748062134, + -0.012002037838101387, + -0.00921948254108429, + -0.018497087061405182, + 0.010113096795976162, + -0.019121890887618065, + -0.0026427004486322403, + 0.023829711601138115, + -0.020938178524374962, + 0.02878454700112343, + 0.00810791365802288, + -0.014632023870944977, + -0.008325868286192417, + 0.019528739154338837, + 0.004293707199394703, + 0.000689735752530396, + -0.014893569052219391, + 0.007868164218962193, + 0.01958685927093029, + -0.002045141300186515, + -0.021243315190076828, + 0.0013077280018478632, + 0.02747681923210621, + 0.002996876835823059, + -0.017407312989234924, + -0.0007791879470460117, + -0.017799632623791695, + -0.005710412282496691, + 0.012467007152736187, + 0.02149033173918724, + -0.04234132915735245, + -0.006088200490921736, + -0.012430681847035885, + -0.020836466923356056, + 0.011137483641505241, + -0.008304073475301266, + -0.018787693232297897, + 0.0034800097346305847, + 0.015096994116902351, + -0.004671495407819748, + 0.007744655944406986, + -0.014813652262091637, + 0.00565592385828495, + 0.006756594870239496, + 0.0033310740254819393, + 0.019136419519782066, + 0.0012904732720926404, + -0.009793429635465145, + 0.006829246412962675, + 0.0037197598721832037, + -0.00988787692040205, + -0.025515226647257805, + -0.006411499809473753, + 0.005546946544200182, + 0.011406295001506805, + 0.02205701358616352, + -0.006171749904751778, + 0.01203836314380169, + -0.008979732170701027, + 0.002998693147674203, + 0.010178483091294765, + -0.011057566851377487, + -0.0007596628274768591, + -0.006811083760112524, + -0.007239727769047022, + 0.00653864024206996, + -0.004290074575692415, + -0.00866733118891716, + 0.012953773140907288, + -0.002817064058035612, + 0.005496090278029442, + -0.01999370940029621, + 0.0004676943935919553, + 0.016099585220217705, + 0.026517819613218307, + 0.005292666144669056, + 0.00199973420239985, + -0.00762841384857893, + 0.007239727769047022, + 0.0058775111101567745, + 0.004707821179181337, + -0.0019307151669636369, + 0.004998427350074053, + -0.004228320904076099, + 0.013876447454094887, + -0.017291070893406868, + 0.013142666779458523, + 0.01025839988142252, + -0.0033165435306727886, + 0.01752355508506298, + 0.008071588352322578, + -0.0006738431984558702, + -0.01618676632642746, + -0.0027989011723548174, + -0.00847843661904335, + -0.008921611122786999, + 0.0013131769374012947, + 0.01336062140762806, + 0.00729784881696105, + 0.015881631523370743, + 0.0013849203241989017, + -0.00030059582786634564, + 0.0032075662165880203, + -0.0050202226266264915, + 0.010977650061249733, + 0.002239484339952469, + 0.016114115715026855, + -0.004482601303607225, + -0.0057358406484127045, + 0.02958371490240097, + 0.004620639141649008, + 0.0007651117048226297, + 0.011246461421251297, + 0.011428089812397957, + 0.00018276408081874251, + 0.008551088161766529, + -0.03092050366103649, + 0.003934082109481096, + 0.00484585901722312, + 0.007370500359684229, + -0.006208075676113367, + 0.002804350107908249, + 0.0017990341875702143, + 0.02106895111501217, + 0.0067420643754303455, + 0.008340398781001568, + -0.013193522579967976, + -0.007290584035217762, + -0.0021922606974840164, + -0.006851042155176401, + 0.011057566851377487, + -0.005935632158070803, + -0.0226236954331398, + 0.011457150802016258, + 0.016680797562003136, + -0.0036416593939065933, + -0.006716636475175619, + 0.03711041435599327, + 0.022144194692373276, + -0.006291625089943409, + 0.022754468023777008, + -0.010636188089847565, + -0.0025373557582497597, + -0.0033728484995663166, + 0.02035696618258953, + -0.011260991916060448, + -0.012198196724057198, + -0.007323277182877064, + 0.001565641025081277, + 0.015387600287795067, + -0.008914345875382423, + 0.006912795826792717, + -0.02013901248574257, + -0.019485147669911385, + -0.006455090828239918, + -0.016114115715026855, + 0.005921102128922939, + 0.008231421932578087, + -0.010890468955039978, + 0.008456641808152199, + 0.0014966221060603857, + 0.030542714521288872, + -0.018613329157233238, + -0.017799632623791695, + -0.011137483641505241, + -0.004816798493266106, + -0.0074685802683234215, + -0.010338316671550274, + 0.010955855250358582, + -0.017291070893406868, + -0.000760570983402431, + 0.0029932442121207714, + -0.007751921191811562, + -0.004864021670073271, + -0.002522825263440609, + -0.013992690481245518, + 0.002579130232334137, + -0.0028969808481633663, + -0.0009131392580457032, + -0.0014602963346987963, + -0.003659822279587388, + -0.010280195623636246, + -0.004279176704585552, + 0.021548451855778694, + 0.00014064887363929302, + -0.006727534346282482, + -0.025689590722322464, + 0.018700510263442993, + 0.007381398230791092, + 0.03408811241388321, + -0.022667286917567253, + -0.020066360011696815, + -0.0027371475007385015, + -0.006157219409942627, + 0.006974549498409033, + 0.011239196173846722, + 0.003886858467012644, + -0.004551620222628117, + 0.018003055825829506, + 0.0064696213230490685, + -0.004083017352968454, + -0.009648126550018787, + 0.0032965645659714937, + 0.009837021119892597, + -0.010425498709082603, + 0.00137856334913522, + 0.020197132602334023, + -0.03731384128332138, + 0.0062335035763680935, + 0.022086074575781822, + -0.021722815930843353, + 0.006022814195603132, + -0.008798103779554367, + -0.005496090278029442, + 0.002686291467398405, + 0.0178722832351923, + 0.020676633343100548, + 0.01064345333725214, + 0.019703103229403496, + -0.014704675413668156, + 0.0016682613641023636, + -0.013157197274267673, + -0.008609209209680557, + -0.015227766707539558, + 0.016535494476556778, + -0.011377234011888504, + -0.021199725568294525, + 0.002210423583164811, + -0.01660814695060253, + 0.0030658957548439503, + -0.007010875269770622, + -0.02130143716931343, + -0.03836002200841904, + 0.005339889321476221, + 0.011304582469165325, + 0.00809338316321373, + -0.02125784568488598, + 0.013840122148394585, + 0.0012768511660397053, + -0.012757613323628902, + -0.021592043340206146, + -0.006462356075644493, + 0.004464438185095787, + -0.026110969483852386, + 0.020240724086761475, + -0.0008890734170563519, + -0.020269785076379776, + -0.002277626423165202, + -0.005786696448922157, + 0.01713123731315136, + -0.050972335040569305, + 0.0017663410399109125, + 0.011544332839548588, + 0.01279393956065178, + -0.01112295314669609, + -1.6034426153055392e-5, + -0.00410481309518218, + 0.008522028103470802, + -0.006941856350749731, + 0.006426030304282904, + -0.004740514326840639, + -0.025500696152448654, + -0.0050093247555196285, + 0.0035835381131619215, + -0.03711041435599327, + 0.030571775510907173, + 0.005390745587646961, + -0.01062892284244299, + -0.013622167520225048, + -0.0179013442248106, + 0.011057566851377487, + -0.00789722427725792, + 9.308481094194576e-5, + 0.001336788642220199, + -0.016128646209836006, + 0.026866545900702477, + -0.00509287416934967, + 0.017276540398597717, + -0.001888940460048616, + 0.0019180011004209518, + 0.017378251999616623, + 0.004696923308074474, + 0.02016807347536087, + 0.003875960595905781, + -0.010498150251805782, + -0.03347783908247948, + -0.016346599906682968, + 0.010687043890357018, + -0.015518372878432274, + -0.021388618275523186, + 0.027011848986148834, + -0.0015329478774219751, + 0.0007710146601311862, + -0.0013395131099969149, + 0.001407623989507556, + -0.004024896305054426, + -0.005732208024710417, + 0.007003610022366047, + 0.03339065611362457, + -0.010360112413764, + 0.003966775257140398, + 0.016288479790091515, + -0.0027680243365466595, + -0.0020633041858673096, + 0.0058557153679430485, + -0.009103240445256233, + 0.00419562729075551, + -0.004744146950542927, + 0.0070907920598983765, + -0.0017000464722514153, + 0.0074467845261096954, + -0.02523915097117424, + -0.01842443458735943, + -0.025151969864964485, + 0.003476377110928297, + 0.01338968239724636, + -0.00022760371211916208, + -0.008100648410618305, + 0.0021940770093351603, + -0.026968257501721382, + 0.011653309687972069, + -0.0031894033309072256, + -0.010113096795976162, + 0.007839103229343891, + -0.010868673212826252, + 0.009241278283298016, + 0.002045141300186515, + 0.032111987471580505, + -0.010534475557506084, + 0.005383480340242386, + -0.01846802607178688, + 0.022449331358075142, + 0.002985978964716196, + -0.023611756041646004, + 0.010287460871040821, + -0.001097946660593152, + 0.01374567486345768, + 0.002858838764950633, + -0.0054888250306248665, + 0.006720269098877907, + 0.016811570152640343, + 0.006698473822325468, + -0.005710412282496691, + -0.015707267448306084, + -0.028886260464787483, + -0.016099585220217705, + -0.03809847682714462, + 0.014573902823030949, + -0.0021341394167393446, + -0.0045298244804143906, + 0.01939796656370163, + -0.004170199390500784, + 0.012394355610013008, + -0.015620085410773754, + -0.0033129111398011446, + -0.019819345325231552, + 0.007036303635686636, + 0.020792875438928604, + 0.006941856350749731, + 0.020400557667016983, + 0.003857797710224986, + 0.018511617556214333, + -0.002310319570824504, + -0.0077228606678545475, + 0.0008096108213067055, + 0.03452401980757713, + 0.024541696533560753, + -0.006371541880071163, + -0.011471681296825409, + -0.008899816311895847, + -0.00045157482963986695, + -0.004137506242841482, + -0.004824063275009394, + -0.022885240614414215, + -0.005416173487901688, + -0.005100139416754246, + 0.024033134803175926, + 0.0014521230477839708, + 0.02070569433271885, + 0.007010875269770622, + 0.0009698983049020171, + -0.00820962619036436, + -0.0043990518897771835, + -0.013309765607118607, + -0.003407358191907406, + 0.024527166038751602, + -0.02149033173918724, + 0.008747247979044914, + 0.004293707199394703, + 0.004072119947522879, + 0.014748265966773033, + -0.005060181021690369, + 0.008747247979044914, + -0.0003839180862996727, + -0.002718984615057707, + -0.029816199094057083, + 0.01018574833869934, + 0.014341417700052261, + -0.009415642358362675, + -0.0009308480657637119, + -0.020574921742081642, + -0.0035018050111830235, + 0.0010207543382421136, + 0.010665249079465866, + 0.02489042468369007, + -0.0067529622465372086, + -0.0018653287552297115, + -0.005361685063689947, + -0.0038105743005871773, + 0.009001527912914753, + 0.01421791035681963, + 0.004791370127350092, + -0.015736328437924385, + 0.01232170406728983, + -0.0013558596838265657, + 0.007744655944406986, + -0.0032402595970779657, + -0.01771244965493679, + -0.0008114270749501884, + -0.012772143818438053, + -0.01884581334888935, + 0.010040445253252983, + 0.013222583569586277, + 0.0008436662028543651, + 0.015314948745071888, + -0.026895606890320778, + 0.0024392760824412107, + 0.008100648410618305, + 0.00729421665892005, + 0.009066914208233356, + -0.018162889406085014, + -0.014363213442265987, + 0.020008239895105362, + 0.001465745153836906, + 0.006302522495388985, + 0.007475845515727997, + -0.010236604139208794, + -0.0041556693613529205, + 0.01224905252456665, + 0.004478968679904938, + 0.003140363609418273, + -0.0029750813264399767, + 0.01263410598039627, + -0.015968812629580498, + 0.007795512210577726, + -0.0021323233377188444, + 0.019107360392808914, + 0.01827913150191307, + -0.00030922319274395704, + 0.010338316671550274, + 0.018395375460386276, + 0.0016573637258261442, + 0.01637566089630127, + -0.009299399331212044, + 0.005906571634113789, + -0.030281169340014458, + -0.018351783975958824, + 0.014428599737584591, + -0.016884222626686096, + 0.014370477758347988, + 0.022376680746674538, + 0.017000464722514153, + 0.004903980065137148, + 0.019441556185483932, + -0.004242850933223963, + -0.004184729885309935, + -0.005318094044923782, + 0.004664230160415173, + 0.00829680822789669, + 0.014857243746519089, + -0.012387090362608433, + 0.010534475557506084, + 0.013193522579967976, + -0.01563461497426033, + -0.014392273500561714, + -0.0027607593219727278, + -0.02089458890259266, + -0.04184729605913162, + 0.004820431116968393, + -0.01660814695060253, + -0.008224156685173512, + -0.018221011385321617, + 0.014210645109415054, + 0.014196114614605904, + -0.011849469505250454, + 0.009183157235383987, + 0.006313420366495848, + 0.01716029830276966, + -0.013883712701499462, + -0.007853633724153042, + -0.04292254149913788, + -0.021345028653740883, + 0.020676633343100548, + -0.01468287967145443, + -0.0005485192523337901, + -0.004533457104116678, + -0.0067130038514733315, + -0.0006747513543814421, + 0.0009544598287902772, + -0.01583804003894329, + -0.019063768908381462, + 0.008492967113852501, + -0.0015937935095280409, + 0.006505947094410658, + 0.004028528928756714, + -0.01139902975410223, + -0.016041463240981102, + -0.0056123328395187855, + -0.02073475532233715, + 0.012459741905331612, + 0.0017009546281769872, + 0.01923813298344612, + 0.004508029203861952, + 0.0010098566999658942, + 0.0061208936385810375, + -0.019136419519782066, + -0.004842226393520832, + 0.007868164218962193, + -0.010534475557506084, + -0.012430681847035885, + 0.009895142167806625, + -0.02166469395160675, + -0.0010897733736783266, + 0.017567146569490433, + 0.001167873851954937, + 0.010098566301167011, + -0.012714022770524025, + -0.001677342806942761, + -0.018758632242679596, + -0.01383285690099001, + -0.011369968764483929, + -0.002323033520951867, + -0.02130143716931343, + 0.01807570829987526, + -0.03356501832604408, + 0.011994772590696812, + -0.019310783594846725, + -0.00042887122253887355, + -0.01394183374941349, + -0.024004075676202774, + 0.0017263826448470354, + 0.002451990032568574, + 0.0025972931180149317, + -0.01327343937009573, + 0.0235681664198637, + 0.01843896508216858, + 0.005554211791604757, + -0.02090911753475666, + 0.0023920524399727583, + -0.00033555939444340765, + 0.01941249705851078, + -0.012939242646098137, + -0.009059648960828781, + 0.0012196380412206054, + -0.007730125915259123, + 0.011980242095887661, + 0.005830287467688322, + 0.01732013188302517, + 0.0018090237863361835, + 0.011449885554611683, + -0.007421356625854969, + -0.015038872137665749, + -0.020574921742081642, + 0.0073559703305363655, + 0.003647108329460025, + -0.0005980131099931896, + -0.021708285436034203, + 0.020603982731699944, + 0.013527720235288143, + -0.011108423583209515, + -0.008398519828915596, + 0.01074516586959362, + 0.02675030380487442, + -0.0053580524399876595, + -0.018148358911275864, + -0.0034019092563539743, + 0.00027789222076535225, + 0.003756085643544793, + 0.007788246963173151, + -0.013949098996818066, + 0.03876687213778496, + 0.024265620857477188, + 0.0032166477758437395, + -0.015707267448306084, + -0.01618676632642746, + 0.007730125915259123, + 0.022914301604032516, + 0.019819345325231552, + 0.028377698734402657, + 0.01752355508506298, + 0.004130240995436907, + 0.002350277965888381, + 0.006800185889005661, + 0.006331583485007286, + -0.016317540779709816, + -0.008144239895045757, + 0.019325314089655876, + 0.004860389046370983, + -0.004508029203861952, + -0.0002928765898104757, + -0.02539898455142975, + -0.004468070808798075, + -0.011478946544229984, + -0.003923184238374233, + -0.0011315479641780257, + -0.009066914208233356, + 0.0033728484995663166, + -0.01673891954123974, + 0.014007220044732094, + -0.00022862537298351526, + 0.024367332458496094, + 0.006070037838071585, + 0.00410481309518218, + 0.005586904939264059, + 0.01825007051229477, + -0.023074135184288025, + -0.006542272865772247, + 0.004170199390500784, + -0.01979028433561325, + 0.016506433486938477, + -0.0026554143987596035, + -0.02878454700112343, + -0.017436373978853226, + -0.0019034708384424448, + -0.016913283616304398, + 0.015009812079370022, + 0.005216381978243589, + -0.0064805191941559315, + 0.009945997968316078, + 0.012394355610013008, + 0.024977605789899826, + 0.0160269346088171, + 0.0033673997968435287, + -0.011086627840995789, + -0.005365317687392235, + -0.016172237694263458, + -0.014486720785498619, + -0.021621104329824448, + 0.0010516312904655933, + 0.01939796656370163, + 0.005844817962497473, + -0.012735818512737751, + 0.037953175604343414, + -0.0063679092563688755, + 0.011638779193162918, + -0.007112587336450815, + -0.016709858551621437, + 0.009967793710529804, + 0.024454515427350998, + 0.008064323104918003, + 0.016055993735790253, + 0.024178437888622284, + -0.003579905489459634, + -0.01957233063876629, + -0.007279686164110899, + -0.0017554432852193713, + -0.017000464722514153, + 0.013011894188821316, + 0.016085054725408554, + -0.0064805191941559315, + 0.00045180186862125993, + -0.00149389763828367, + -0.01149347610771656, + -0.0003366945602465421, + 0.005761268548667431, + 0.010672514326870441, + -0.00013917313481215388, + 0.004457172937691212, + 0.016709858551621437, + 0.0067347995936870575, + -0.0009499191073700786, + -0.008841694332659245, + 0.009778900071978569, + -0.006916428450495005, + 0.0014048995217308402, + -0.011064832098782063, + 0.0036144149489700794, + 0.006604026537388563, + 0.013324296101927757, + 0.004551620222628117, + -0.006088200490921736, + -0.007123485207557678, + 0.0036870664916932583, + -0.01730560138821602, + 0.00287155294790864, + 0.006683943327516317, + 0.012074689380824566, + 0.0024174805730581284, + 0.004326400347054005, + 0.010883203707635403, + 0.014864508993923664, + -0.018918465822935104, + -0.0005971050122752786, + 0.01346233393996954, + 0.004039426799863577, + -0.017218418419361115, + 0.01074516586959362, + 0.00197430606931448, + 0.001381287700496614, + -0.0042355856858193874, + 0.010599862784147263, + 0.025922076776623726, + 0.0018653287552297115, + 0.015532903373241425, + 0.006727534346282482, + 0.020473208278417587, + 0.0038795932196080685, + 0.004351828247308731, + 0.008870755322277546, + 0.014922630041837692, + -0.013527720235288143, + 0.00597559055313468, + 0.0376916266977787, + 0.01976122334599495, + -0.002157751237973571, + 0.020487738773226738, + -0.016462843865156174, + -0.016230357810854912, + -0.002702638041228056, + 0.0032329943496733904, + -0.024469044059515, + -0.020037299022078514, + 0.006287992466241121, + -0.002451990032568574, + -0.03432059660553932, + -0.01347686443477869, + 0.00856561865657568, + -0.0005371674778871238, + -0.013491393998265266, + -0.03333253413438797, + 0.012714022770524025, + 0.004827695898711681, + -0.009125035256147385, + -0.004068487323820591, + 0.009313929826021194, + 0.012743083760142326, + 0.013883712701499462, + -0.023408332839608192, + 0.0028406758792698383, + 0.007330542430281639, + 0.003407358191907406, + -0.016840631142258644, + -0.009444702416658401, + -0.014639289118349552, + -0.006248034071177244, + 0.004417214542627335, + 0.009045119397342205, + -0.0020796507596969604, + -0.007672004401683807, + -0.008776308037340641, + -0.0026499656960368156, + -0.017189359292387962, + -0.028755486011505127, + -0.006749329622834921, + -0.030775200575590134, + 0.02279805950820446, + 0.016855161637067795, + -0.020095421001315117, + -0.0016945976531133056, + 0.014108932577073574, + 0.007395928725600243, + 0.01431235671043396, + -0.002355726668611169, + -0.02634345553815365, + 0.01337515190243721, + -0.007504906039685011, + 0.005615965463221073, + 0.0008091567433439195, + 0.014893569052219391, + -0.005557844415307045, + -0.0018671450670808554, + -0.026837484911084175, + -0.0007355970446951687, + -0.0023321150802075863, + -0.00016993653844110668, + -0.010984915308654308, + -0.017218418419361115, + 0.007305114064365625, + -0.024469044059515, + -0.007751921191811562, + 0.0141307283192873, + 0.006324318237602711, + 0.019514208659529686, + -0.01788681373000145, + -0.005779431667178869, + -0.004162934143096209, + 0.022144194692373276, + 0.0014993465738371015, + -0.0024483574088662863, + 0.039115600287914276, + -0.006444193422794342, + 0.004366358742117882, + 0.024803241714835167, + -0.007533966563642025, + -0.009306664578616619, + 0.02954012341797352, + -0.004508029203861952, + 0.015939751639962196, + -0.007853633724153042, + -0.016491902992129326, + -0.002461071591824293, + 0.0013340642908588052, + 0.0197757538408041, + -0.012670432217419147, + -0.007664739619940519, + -0.018758632242679596, + 0.020618511363863945, + -0.026982787996530533, + 0.02618362195789814, + -0.006981814745813608, + 0.013796530663967133, + -0.01865692064166069, + 0.0021886283066123724, + 0.0003784692089539021, + -0.004983896855264902, + -0.007548497058451176, + 0.005230912007391453, + -0.002577313920482993, + -0.006811083760112524, + 0.005354419816285372, + -0.011290051974356174, + 0.018715040758252144, + -0.010803286917507648, + -0.01432688720524311, + -0.005350787192583084, + 0.027738364413380623, + -0.019659511744976044, + -0.015271357260644436, + -0.003338339040055871, + 0.025689590722322464, + 0.0038214719388633966, + -0.011972976848483086, + -0.008136974647641182, + 0.030775200575590134, + 0.012176400981843472, + 0.022870710119605064, + -0.003705229377374053, + -0.013331561349332333, + -0.015707267448306084, + 0.000816875952295959, + -0.016317540779709816, + -0.025675060227513313, + 0.009292134083807468, + -0.0021940770093351603, + -0.01791587471961975, + 0.0003071798710152507, + -0.01903470791876316, + -0.01582350954413414, + 0.009059648960828781, + 0.018337253481149673, + 0.009510088711977005, + 0.008144239895045757, + 0.003759718034416437, + -0.020066360011696815, + -0.002195893321186304, + -0.0010071322321891785, + 0.002729882253333926, + 0.04722351208329201, + 0.02106895111501217, + 0.011849469505250454, + -0.019339844584465027, + -0.0022176888305693865, + -0.02711356244981289, + -0.012968302704393864, + -0.0033110948279500008, + -0.02335021086037159, + 0.0032003012020140886, + 0.0022867077495902777, + 0.0036525570321828127, + 0.01640472188591957, + 0.00484585901722312, + -0.014573902823030949, + 0.008914345875382423, + 0.0023048706352710724, + -0.01620129682123661, + -0.010585332289338112, + 0.011646044440567493, + -0.0034146232064813375, + 0.01525682769715786, + -0.010098566301167011, + -0.02281259000301361, + -0.0017218419816344976, + 0.0051146699115633965, + 0.01411619782447815, + 0.010607127100229263, + 0.01825007051229477, + 0.003114935476332903, + 0.013665758073329926, + 0.0002345283137401566, + -0.017421843484044075, + 0.028203334659337997, + -0.004820431116968393, + -0.005005692131817341, + -0.003868695581331849, + 0.016797039657831192, + 0.006727534346282482, + -0.0071016899310052395, + -0.03086238168179989, + -0.002451990032568574, + 0.002254014601930976, + -0.0012741266982629895, + -0.014050811529159546, + 0.00762841384857893, + 0.014552107080817223, + 0.023582695052027702, + -0.0006556803127750754, + 0.006073670461773872, + 0.005703147500753403, + 0.004544354975223541, + -0.025471637025475502, + 0.013527720235288143, + -0.0077228606678545475, + 0.0033456042874604464, + 0.02186811901628971, + -0.023800650611519814, + -0.023510044440627098, + 0.006843776907771826, + -0.0074467845261096954, + -0.009488293901085854, + 0.009350255131721497, + 0.01401448529213667, + -0.007948080077767372, + 0.006807451136410236, + -0.004024896305054426, + 0.019557800143957138, + -0.011500741355121136, + 0.004061222076416016, + 0.02483230270445347, + 0.0008037078659981489, + -0.0002302146313013509, + -0.024062195792794228, + -0.004148404113948345, + -0.015881631523370743, + -0.01846802607178688, + -0.029162336140871048, + 0.0016673532081767917, + 0.001463020802475512, + -0.007359602954238653, + -0.01196571160107851, + 0.004515294451266527, + -0.011362703517079353, + 0.009357520379126072, + -0.009190422482788563, + 0.008151505142450333, + 0.00032874831231310964, + 0.022318558767437935, + -0.0035399470943957567, + -0.020008239895105362, + 0.00043000641744583845, + 0.008151505142450333, + 0.027200743556022644, + 0.0008404877153225243, + -0.01753808557987213, + -0.007225197274237871, + -0.008405785076320171, + 0.0108250817283988, + 0.009393846616148949, + 0.004395419266074896, + -0.0037233922630548477, + 0.006676678080111742, + -0.012154605239629745, + -0.016055993735790253, + -0.019325314089655876, + -0.008776308037340641, + 0.010440029203891754, + -0.009052383713424206, + 0.0169278122484684, + -0.01678250916302204, + 0.0077228606678545475, + -0.009749839082360268, + 0.009560945443809032, + 0.031530775129795074, + 0.002958734752610326, + 0.016913283616304398, + 0.005249075125902891, + 0.01439953874796629, + 0.013629432767629623, + -0.007054466288536787, + 0.013752940110862255, + 0.017276540398597717, + 0.011224665679037571, + 0.010570801794528961, + 0.02375705912709236, + 0.0028806342743337154, + 0.020952709019184113, + 0.0021940770093351603, + 0.0030895075760781765, + -0.00014904921408742666, + -0.011260991916060448, + 0.010679778642952442, + -0.0013322479790076613, + 0.010868673212826252, + 0.00185897178016603, + 0.006411499809473753, + -0.007250625640153885, + 0.01697140373289585, + -0.005259972997009754, + -0.017828691750764847, + 0.0471363328397274, + 0.017610738053917885, + -0.00546339713037014, + -0.008703656494617462, + 0.012684961780905724, + -0.022304028272628784, + -0.006030079443007708, + 0.014951691031455994, + 0.012169135734438896, + -0.012023832648992538, + -0.00729784881696105, + 0.0006779298419132829, + -0.002406582934781909, + -0.007421356625854969, + 0.006189912557601929, + 0.016869692131876945, + 0.007839103229343891, + -0.0013186257565394044, + 0.01598334312438965, + 0.006535007618367672, + -0.0017209338257089257, + 0.002786187222227454, + 0.012132810428738594, + 0.004406317137181759, + -0.014370477758347988, + -0.004580680746585131, + 0.017973994836211205, + 0.001888940460048616, + 0.006237136200070381, + -0.008696391247212887, + 0.016462843865156174, + 0.0003848262131214142, + 0.008122444152832031, + 0.0015847120666876435, + 0.02205701358616352, + 0.005808492191135883, + 0.0013840121682733297, + 0.00121146475430578, + 0.007225197274237871, + 0.020313376560807228, + 0.027723833918571472, + 0.02128690667450428, + -0.008347664028406143, + 0.005238177254796028, + 0.032344475388526917, + -0.0019797550048679113, + 0.004606108646839857, + -0.0018435332458466291, + 0.03185044229030609, + 0.015867101028561592, + 0.022885240614414215, + -0.00611726101487875, + -0.010563536547124386, + -0.009669922292232513, + 0.021504860371351242, + 0.004824063275009394, + -0.019267193973064423, + -0.03693605214357376, + 0.007116219960153103, + 0.007708330173045397, + 0.014152523130178452, + -0.00023384719679597765, + 0.014472190290689468 + ], + "a5c24e0d-dc07-4713-8f8b-adf75906acc0": [ + -0.009574305266141891, + -0.004998403135687113, + -0.006348258815705776, + 0.02484879642724991, + 0.003224256681278348, + -0.04190638288855553, + 0.0212396327406168, + 0.02875872142612934, + -0.0052920058369636536, + 0.05092928931117058, + 0.009287863969802856, + 0.01977878250181675, + 0.008364090695977211, + 0.0010544626275077462, + 0.024018116295337677, + 0.04033095762133598, + -0.009094515815377235, + 0.008485827594995499, + -0.008722142316401005, + -0.02633829228579998, + 0.05456709489226341, + -0.003464151406660676, + -0.016971655189990997, + 0.011178378015756607, + 0.010233120992779732, + 0.014085758477449417, + -0.0154821602627635, + 0.006133427377790213, + -0.008729303255677223, + -0.002535006729885936, + 0.026710664853453636, + 0.010046933777630329, + 0.016527671366930008, + -0.004053146578371525, + 0.011758421547710896, + -0.01470876857638359, + 0.017644792795181274, + 0.019177254289388657, + -0.038784172385931015, + 0.025249814614653587, + 0.0028286094311624765, + 0.02449074387550354, + 0.011901642195880413, + -0.02427591383457184, + -0.02722625993192196, + -0.015654025599360466, + -0.020580818876624107, + -0.018203353509306908, + 0.004178464878350496, + -0.0466899573802948, + 0.007229065988212824, + 0.007963072508573532, + 0.038612306118011475, + 0.002089232439175248, + 0.017215130850672722, + -0.04133350029587746, + -0.01308321300894022, + 0.014422327280044556, + 0.0002927073510363698, + -0.05969439819455147, + 0.007454638835042715, + -0.0077768852934241295, + 0.0576033741235733, + 0.007963072508573532, + 0.037953492254018784, + 0.004336007405072451, + 0.005714506842195988, + 0.0041534011252224445, + -0.0576033741235733, + -0.0036342258099466562, + 0.0283720251172781, + 0.02708303928375244, + -0.01404995284974575, + 0.007497604936361313, + 0.008342606946825981, + -0.0004117595963180065, + 0.014279106631875038, + 0.021912770345807076, + 0.010455112904310226, + -0.02022276632487774, + -0.012345626950263977, + -0.012667872942984104, + 0.021612007170915604, + 0.003841895842924714, + 0.06341813504695892, + 0.033628225326538086, + -0.02527845837175846, + -0.04153401032090187, + 0.02489176206290722, + -0.015840211883187294, + -0.005095077212899923, + 0.013383977115154266, + 0.013090373948216438, + 0.002164423232898116, + -0.028858976438641548, + 0.029259994626045227, + 0.05095793306827545, + -0.002798174973577261, + -0.0017150682397186756, + -0.01999361254274845, + 0.028515245765447617, + 0.011522107757627964, + 0.01731538586318493, + 0.008385573513805866, + 0.01316914614289999, + -0.03256839141249657, + 0.017286742106080055, + -0.011049479246139526, + -0.01687140204012394, + 0.049181997776031494, + -0.012560457922518253, + 0.021855482831597328, + -0.018618693575263023, + -0.012052023783326149, + -0.031823646277189255, + -0.029231350868940353, + -0.055970657616853714, + -0.01827496476471424, + -0.025077948346734047, + -0.02118234522640705, + 0.027126004919409752, + -0.011443335562944412, + 0.004293041303753853, + 0.008378412574529648, + -0.007554893381893635, + 0.013333849608898163, + 0.003005845006555319, + 0.03185229003429413, + 0.03311263024806976, + 0.02656744420528412, + -0.020781327039003372, + -0.013455587439239025, + -0.01801716722548008, + -0.01960691809654236, + -0.0083497678861022, + 0.045171815901994705, + -0.01982174813747406, + 0.04966894909739494, + -0.011350242421030998, + 0.014422327280044556, + -0.07235511392354965, + -0.03809671476483345, + -0.007053620647639036, + -0.009996806271374226, + 0.02260022982954979, + 0.017344029620289803, + -0.046890463680028915, + 0.06731373816728592, + -0.027154648676514626, + 0.005213234573602676, + -0.07831308990716934, + -0.002542167901992798, + -0.016370128840208054, + -0.0026477931533008814, + 0.016155296936631203, + -0.014880632981657982, + -0.006122685968875885, + 0.03205280005931854, + 0.020294377580285072, + 0.04726283997297287, + 0.023373622447252274, + -0.06971985101699829, + -0.004540096968412399, + -0.0030291182920336723, + 0.05281980335712433, + 0.020022258162498474, + 0.05788981541991234, + 0.02506362646818161, + -0.026395579800009727, + 0.010605494491755962, + 0.017215130850672722, + -0.038469087332487106, + 0.02483447454869747, + 0.022313788533210754, + -0.026581766083836555, + -0.012216728180646896, + 0.016112331300973892, + 0.03142262622714043, + 0.03752382844686508, + -0.02013683319091797, + -0.0352322980761528, + -0.010168671607971191, + 0.00847866665571928, + 0.006362580694258213, + 0.016398772597312927, + 0.003224256681278348, + 0.04396876320242882, + 0.02290099486708641, + -0.027383802458643913, + -0.008356929756700993, + -0.002144730417057872, + -0.022485654801130295, + -0.013140501454472542, + 0.0356619618833065, + -0.017458606511354446, + -0.06645441800355911, + 0.01818903163075447, + 0.012059184722602367, + -0.015711313113570213, + 0.02026573196053505, + -0.010254603810608387, + -0.04330994561314583, + -0.01687140204012394, + 0.016685213893651962, + -0.04368232190608978, + 0.05677269399166107, + -0.024333201348781586, + -0.008385573513805866, + 0.04505724087357521, + -0.03314127400517464, + 0.035919759422540665, + -0.056973204016685486, + -0.021168023347854614, + -0.031336694955825806, + 0.018475472927093506, + 0.00829964131116867, + -0.0014850199222564697, + 0.017415640875697136, + -0.014694446697831154, + -0.013634612783789635, + -0.0038060906808823347, + 0.008779430761933327, + -0.006366161163896322, + -0.02756998874247074, + -0.0609547421336174, + 0.03551873937249184, + -0.02999041974544525, + 0.03388602286577225, + -0.02656744420528412, + -0.00563931604847312, + 0.03130805119872093, + 0.003560825251042843, + 0.0077482410706579685, + 0.002857253421097994, + -0.0010616236831992865, + 0.021296922117471695, + 0.03680772706866264, + 0.01063413918018341, + 0.013262239284813404, + -0.006133427377790213, + 0.005370777100324631, + 0.0423646904528141, + -0.007264871150255203, + -0.002003300003707409, + -0.008686336688697338, + 0.017644792795181274, + -0.007153875194489956, + 0.044914018362760544, + 0.01211647316813469, + -0.01616962067782879, + 0.005134462844580412, + 0.013269400224089622, + 0.0063410974107682705, + -0.006330356001853943, + -0.03809671476483345, + 0.061241183429956436, + 0.03872688487172127, + -0.04087519645690918, + -0.007383028510957956, + -0.008987100794911385, + 0.01310469675809145, + -0.007998877204954624, + 0.011550751514732838, + 0.011106767691671848, + 0.03571924939751625, + -0.002939605386927724, + 0.036005690693855286, + -0.026452867314219475, + 0.03070652298629284, + 0.015324617736041546, + 0.05493947118520737, + 0.004246494732797146, + -0.0014599562855437398, + 0.01263922918587923, + 0.0015843792352825403, + -0.0006597104948014021, + 0.024433456361293793, + -0.001520825084298849, + 0.01884784735739231, + 0.015711313113570213, + 0.003593049943447113, + 0.01087761390954256, + -0.006688408087939024, + 0.003618113463744521, + 0.0003869197389576584, + -0.0017168584745377302, + -0.004328846465796232, + 0.013505714014172554, + -0.050327762961387634, + 0.009574305266141891, + 0.011121089570224285, + -0.02158336341381073, + 0.015969110652804375, + -0.01999361254274845, + 0.005800439510494471, + 0.01977878250181675, + -0.012789610773324966, + 0.009832102805376053, + 0.0025403776671737432, + 0.03849773108959198, + -0.050327762961387634, + -0.017816659063100815, + 0.023731674998998642, + -0.00757637619972229, + 0.036893658339977264, + -0.02145446464419365, + 0.038039423525333405, + 0.015410549938678741, + -0.029274316504597664, + 0.01387092750519514, + 0.01301876362413168, + -0.03013364039361477, + -0.013068891130387783, + -0.0207526832818985, + -0.01003977283835411, + -0.014608513563871384, + 0.012087829411029816, + -3.1693180062575266e-5, + -0.01581156812608242, + -0.025879984721541405, + 0.005392260383814573, + -0.0039600529707968235, + -0.05267658457159996, + 0.013441264629364014, + 0.03612026572227478, + -0.04482808709144592, + 0.02726922556757927, + 0.00039296186878345907, + -0.05012725293636322, + -0.01211647316813469, + -0.048695046454668045, + -0.00986790843307972, + -0.0219414159655571, + -0.0026853885501623154, + -0.028887620195746422, + -0.04308079555630684, + -0.026023205369710922, + -0.02285802736878395, + 0.03569060564041138, + -0.017501572147011757, + -0.0006744801066815853, + 0.00046501978067681193, + 0.027942363172769547, + 0.02043759822845459, + 0.027598634362220764, + -0.009767653420567513, + -0.01374202873557806, + 0.034372974187135696, + -0.021569041535258293, + 0.0006529969978146255, + 0.0008629048825241625, + 0.03342771902680397, + 0.01924886554479599, + -0.0026853885501623154, + 0.04497130960226059, + 0.0009756911895237863, + 0.010347696952521801, + 0.006645441520959139, + 0.01704326644539833, + -0.014894955791532993, + -0.0056357355788350105, + -0.03331314027309418, + -0.02722625993192196, + -0.009123160503804684, + -0.011063801124691963, + 0.0023541906848549843, + 0.00028442739858292043, + -0.019535306841135025, + 0.01942072995007038, + 0.0028984295204281807, + 0.017386995255947113, + -0.015224362723529339, + -0.022170567885041237, + -0.029388893395662308, + -0.008127775974571705, + -0.015611059032380581, + 0.017687760293483734, + 0.005073594395071268, + -0.018045810982584953, + 0.03225330635905266, + 0.0033513649832457304, + -0.014809022657573223, + 0.030506014823913574, + 0.026925496757030487, + 0.0209675133228302, + 0.02827177196741104, + -0.003927828278392553, + 0.0028178677894175053, + -0.008714981377124786, + -0.009832102805376053, + -0.022227857261896133, + 0.007368706166744232, + -0.030964320525527, + 0.003949311561882496, + -0.015611059032380581, + 0.022542942315340042, + -0.0192918311804533, + -0.018532762303948402, + 0.026366936042904854, + -0.007032137829810381, + 0.00984642468392849, + -0.03972942754626274, + -0.021697940304875374, + 0.004665415268391371, + 0.02457667700946331, + -0.027369480580091476, + -0.021382853388786316, + -0.015253007411956787, + 0.05422336608171463, + -0.01634148508310318, + 0.0110781230032444, + 0.016370128840208054, + -0.02088158205151558, + 0.04436977952718735, + 0.07166764885187149, + 0.028615500777959824, + -0.008908329531550407, + 0.03225330635905266, + -0.02546464465558529, + 0.009989645332098007, + 0.049267929047346115, + 0.017415640875697136, + 0.015338939614593983, + -0.011994735337793827, + 0.03414382040500641, + 0.036750439554452896, + -0.011235665529966354, + -0.0023953665513545275, + -0.003100728616118431, + 0.0027462574653327465, + -0.011321598663926125, + 0.06811577826738358, + -0.0021715841721743345, + -0.0052920058369636536, + -0.015926145017147064, + -0.016198264434933662, + -0.04064604267477989, + -0.01563970372080803, + 0.03253974765539169, + -0.0026191489305347204, + -0.03823993355035782, + 0.006427030079066753, + -0.025650832802057266, + 0.008485827594995499, + -0.02933160401880741, + -0.035776536911726, + -0.028858976438641548, + 0.005567705724388361, + -0.003763124579563737, + -0.0338287353515625, + -0.010354858823120594, + 0.03623484447598457, + -0.06261610239744186, + 0.0022288726177066565, + 0.01427194569259882, + 0.013033086434006691, + -0.024519387632608414, + -0.0002873365883715451, + 0.017773691564798355, + -0.07527681440114975, + -0.01744428463280201, + -0.03087838925421238, + 0.030248217284679413, + 0.018303608521819115, + 0.02964669093489647, + -0.017687760293483734, + 0.00797023344784975, + 0.009459729306399822, + 0.0002736858441494405, + 0.010261764749884605, + -0.030334150418639183, + 0.00162734545301646, + -0.026982784271240234, + 0.014501098543405533, + 0.027211938053369522, + -0.00920909270644188, + 0.02030869945883751, + -0.008149259723722935, + 0.00016268978652078658, + -0.01470876857638359, + -0.005714506842195988, + 0.02933160401880741, + 0.014665802009403706, + -0.0138064781203866, + 0.003981536254286766, + 0.006813725922256708, + 0.01044079102575779, + -0.03497450053691864, + -0.011665328405797482, + -0.023101503029465675, + 0.017100553959608078, + -0.003985116723924875, + 0.024247268214821815, + 0.001829644781537354, + 0.015611059032380581, + -0.04986945539712906, + -0.006391224917024374, + -0.027011428028345108, + -0.011629522778093815, + -0.020337343215942383, + -0.001867240178398788, + -0.022614551708102226, + -0.020108189433813095, + -0.005001983605325222, + 0.014558386988937855, + 0.03434433043003082, + -0.015696991235017776, + 0.013219272717833519, + -0.030591946095228195, + 0.03070652298629284, + -0.04422656074166298, + 0.016799790784716606, + -0.031078897416591644, + -0.0025654411874711514, + -0.00670631043612957, + 0.026639055460691452, + -0.019793104380369186, + -0.0003875910770148039, + 0.03637806326150894, + -0.017258096486330032, + 0.019048357382416725, + -0.01950666308403015, + -0.012889864854514599, + -0.013691901229321957, + -0.028773043304681778, + 8.246381185017526e-5, + 0.004393295850604773, + -0.020251410081982613, + 0.04259384423494339, + -0.024304557591676712, + -0.01999361254274845, + 0.024247268214821815, + -0.0013937166659161448, + 0.018045810982584953, + 0.02251429855823517, + 0.0026925497222691774, + 0.016370128840208054, + 0.025708120316267014, + 0.03844044357538223, + 0.014923599548637867, + -0.06937611848115921, + 0.0233449786901474, + -0.032883480191230774, + -0.005864888895303011, + 0.01087761390954256, + 0.023975148797035217, + -0.0018251690780743957, + 0.004955437034368515, + -0.016541993245482445, + 0.01704326644539833, + -0.014866311103105545, + 0.021082090213894844, + -0.009130321443080902, + -0.007425994612276554, + -0.0212396327406168, + -0.015510804951190948, + 0.04465622082352638, + -0.014286267571151257, + -0.015553770586848259, + -0.01411440223455429, + -0.004074629861861467, + 0.022743450477719307, + -0.006416288670152426, + -0.011085283942520618, + 0.005016305949538946, + 0.0015065029729157686, + -0.023531164973974228, + 0.002447284059599042, + 0.009982484392821789, + 0.028658466413617134, + 0.032654326409101486, + 0.016900045797228813, + 0.033800091594457626, + 0.009832102805376053, + -0.007186099886894226, + 0.04568741098046303, + -0.031479913741350174, + 0.012911348603665829, + -0.021726584061980247, + -0.007264871150255203, + 0.04654673486948013, + 0.007032137829810381, + -0.025564899668097496, + 0.0006744801066815853, + -0.021210988983511925, + -0.025693798437714577, + -0.016155296936631203, + -0.0025887147057801485, + -0.01515275239944458, + 0.0005478192470036447, + 0.01775936968624592, + 0.012324143201112747, + -0.015525126829743385, + 0.007236226927489042, + -0.009330830536782742, + 0.037896204739809036, + 0.019549628719687462, + 0.030420081689953804, + 0.03216737508773804, + 0.02427591383457184, + 0.0264242235571146, + 0.016971655189990997, + -0.0033835896756500006, + 0.00827815756201744, + -0.023402266204357147, + 0.034688059240579605, + -0.0012657131301239133, + 0.004805055446922779, + 0.03170906752347946, + 0.0007259500562213361, + -0.03039143793284893, + -0.03202415257692337, + 0.03875552862882614, + 0.010455112904310226, + 0.010333375073969364, + -0.005503256339579821, + 0.012152278795838356, + -0.00945256743580103, + -0.006588153541088104, + 0.001101009314879775, + 0.014851989224553108, + -0.005521159153431654, + 0.03669314831495285, + -0.005496095400303602, + -0.011192699894309044, + 0.023058537393808365, + -0.025837019085884094, + 0.006305292248725891, + -0.010383502580225468, + -0.026581766083836555, + 0.0008042738772928715, + -0.007157455664128065, + 0.008471505716443062, + -0.01700030080974102, + -0.0028841074090451, + 0.00336926756426692, + 0.028443636372685432, + 0.01616962067782879, + 8.380650251638144e-5, + -0.04594520851969719, + 0.012854060158133507, + -0.009423923678696156, + 0.02184116095304489, + 0.07779749482870102, + -0.01271083950996399, + 0.0047370255924761295, + -0.003233207855373621, + 0.014372199773788452, + 0.04070333018898964, + 0.04030231386423111, + -0.019005389884114265, + 0.007920105941593647, + 0.002470557577908039, + 0.023846250027418137, + 0.0014787539839744568, + -0.027240581810474396, + -0.016885723918676376, + 0.0026460029184818268, + -0.0035035370383411646, + -0.0024275912437587976, + 0.007612181361764669, + -0.013727706857025623, + 0.031508561223745346, + 0.013419781811535358, + 0.034372974187135696, + -0.004135498311370611, + 0.015525126829743385, + -0.012546135112643242, + 0.027297869324684143, + 0.010132865980267525, + 0.014980887994170189, + -0.015825890004634857, + 0.0010589382145553827, + 0.03136533871293068, + -0.01224537193775177, + -0.003877701237797737, + -0.014157368801534176, + 0.0304773710668087, + -0.0028160775545984507, + -0.010490918532013893, + -0.004411198198795319, + -0.018174709752202034, + -0.01708623208105564, + 0.048036232590675354, + -0.017186487093567848, + 0.004984081257134676, + 0.009395279921591282, + -0.012660712003707886, + -0.014866311103105545, + -0.012789610773324966, + -0.0004900834173895419, + 0.000987327890470624, + -0.010419308207929134, + 0.046317581087350845, + 0.012982958927750587, + 0.0031365337781608105, + 0.029002197086811066, + 0.006222940515726805, + 0.0022378237918019295, + 0.0014134094817563891, + -0.03359958156943321, + -0.03087838925421238, + -0.013978342525660992, + -0.015124108642339706, + 0.0072219050489366055, + 0.010025450959801674, + -0.016685213893651962, + -0.014680123887956142, + -0.014329233206808567, + -0.03377144783735275, + 0.013226433657109737, + 0.014143046922981739, + -0.011507784947752953, + 0.016055043786764145, + 0.012338465079665184, + 0.029933132231235504, + -0.02854389138519764, + 0.02884465456008911, + 0.006992751732468605, + 0.05422336608171463, + -0.02030869945883751, + 0.027455413714051247, + -0.013369654305279255, + -0.012274015694856644, + -0.01863301545381546, + -0.007791207637637854, + 0.004862343426793814, + 0.0023040634114295244, + 0.014157368801534176, + -0.003992277663201094, + 0.03506043180823326, + 0.0011314437724649906, + 0.003344204043969512, + -0.003849057015031576, + 0.0008033787598833442, + -0.03391466662287712, + -0.013183468021452427, + 0.01986471377313137, + 0.004855182487517595, + -0.0010875824373215437, + 0.006086880806833506, + -0.024906083941459656, + 0.026409901678562164, + -0.02423294633626938, + 0.006201457232236862, + 0.008013200014829636, + 0.03291212394833565, + 0.039185188710689545, + -0.0259372740983963, + -0.0035948401782661676, + 0.012617745436728, + -0.028128551319241524, + 0.009323669597506523, + -0.016728181391954422, + -0.01211647316813469, + 0.01665657013654709, + 0.025564899668097496, + 0.012188083492219448, + -0.04015909135341644, + 0.04978352412581444, + -0.03465941548347473, + 0.016685213893651962, + 0.0033298819325864315, + -0.02219921164214611, + -0.01445097103714943, + -0.01572563499212265, + -0.008063326589763165, + 0.03311263024806976, + 0.036406707018613815, + -0.0022342433221638203, + 0.03884145990014076, + 0.029302960261702538, + 0.025478966534137726, + 0.00887252390384674, + -0.011328759603202343, + 0.008578921668231487, + 0.01387092750519514, + -0.0395575650036335, + -0.04207824915647507, + 0.0012639228953048587, + -0.015582415275275707, + -0.031479913741350174, + 0.0494970828294754, + -0.007200421765446663, + 0.01612665317952633, + -0.022041669115424156, + 0.043768253177404404, + -0.03162313625216484, + -0.003356735687702894, + 0.0009792717173695564, + 0.0039421506226062775, + 0.009760492481291294, + -0.003009425476193428, + 0.01478037890046835, + 0.01165100559592247, + -0.027240581810474396, + -0.001967494608834386, + -0.0007375867571681738, + -0.02752702310681343, + 0.01585453376173973, + 0.030735166743397713, + -0.010963546112179756, + 0.032797545194625854, + 0.05551235377788544, + -0.013033086434006691, + 0.011364564299583435, + -0.017458606511354446, + -0.007683791685849428, + -0.02378896251320839, + 0.013262239284813404, + -0.0025493288412690163, + 0.005403001792728901, + -0.026395579800009727, + 8.330299169756472e-5, + -0.038526374846696854, + -0.00015675956092309207, + 0.0262093935161829, + -0.004711961839348078, + 0.023932183161377907, + 0.031193474307656288, + -0.011199860833585262, + 0.01836089789867401, + 0.015338939614593983, + 0.020050901919603348, + 0.011758421547710896, + 0.007733919192105532, + 0.009373796172440052, + 0.003412233665585518, + -0.00010791905515361577, + 0.014193173497915268, + -0.004336007405072451, + 0.012768127955496311, + -0.015338939614593983, + 0.023273367434740067, + 0.008364090695977211, + 0.028615500777959824, + -0.02933160401880741, + -0.0038812817074358463, + -0.03872688487172127, + 0.0039886971935629845, + 0.002500991802662611, + -0.02871575579047203, + -0.007547732442617416, + -0.005277683958411217, + -0.013176307082176208, + -0.02122531086206436, + -0.0017168584745377302, + 0.011629522778093815, + 0.010827486403286457, + 0.0518745481967926, + 0.05302031338214874, + -0.017601827159523964, + 0.006280228961259127, + -0.010956385172903538, + -0.01793123409152031, + 0.0008441071258857846, + 0.0014107241295278072, + 0.03692230209708214, + 0.026581766083836555, + 0.020294377580285072, + 0.0036127427592873573, + 0.03798213601112366, + -0.0356619618833065, + -0.0031311630737036467, + -0.0016237649833783507, + -0.027985328808426857, + 0.0064127082005143166, + 0.028787365183234215, + -0.01270367857068777, + -0.009173287078738213, + -0.00683878967538476, + -0.001697165542282164, + 0.0009009478962980211, + 0.012796771712601185, + 0.013885249383747578, + 0.014995209872722626, + -0.01572563499212265, + -0.007078684400767088, + -0.04499995335936546, + -0.0207526832818985, + 0.0003249320143368095, + -0.006960527040064335, + 0.007526249159127474, + 0.011378886178135872, + -0.021554719656705856, + -0.011020834557712078, + -0.0104837566614151, + 0.02149743027985096, + -0.01081316452473402, + 0.012982958927750587, + 0.018604371696710587, + 0.015195718966424465, + 0.01407143659889698, + -0.03153720498085022, + -0.013369654305279255, + 0.03228195011615753, + -0.006262326147407293, + 0.011221343651413918, + -0.02735515870153904, + 0.014601352624595165, + 0.004686898086220026, + -0.006040334235876799, + -0.022270822897553444, + -0.013971181586384773, + 0.05791846290230751, + -0.038956038653850555, + 0.019277509301900864, + 0.019478019326925278, + 0.012367109768092632, + 0.003116840962320566, + 0.0076551479287445545, + 0.0065344455651938915, + -0.01515275239944458, + -0.03818264603614807, + 0.03514636680483818, + 0.01854708418250084, + 0.0238319281488657, + -0.00680656498298049, + 0.00020789382688235492, + -0.010662782937288284, + -0.0003954234707634896, + 0.021354209631681442, + 0.01314766239374876, + 0.02285802736878395, + 0.015510804951190948, + 0.0024401231203228235, + 7.849167013773695e-5, + -0.014794700779020786, + 0.002617358695715666, + -0.004400456789880991, + 0.0028966390527784824, + -0.007300676312297583, + -0.019549628719687462, + -0.015969110652804375, + 0.01464431919157505, + -0.007912945002317429, + -0.026553122326731682, + 0.031909577548503876, + -0.0366358608007431, + 0.004121176432818174, + -0.024433456361293793, + 0.021569041535258293, + 0.03414382040500641, + -0.00907303299754858, + -0.006391224917024374, + -0.005965142976492643, + 0.026481512933969498, + 0.04153401032090187, + 0.004665415268391371, + -0.018260642886161804, + -0.009087354876101017, + -0.007934427820146084, + -0.0018600791227072477, + -0.01678546890616417, + 0.010068416595458984, + 0.023373622447252274, + 0.0014742783969268203, + -0.02973262220621109, + -0.013727706857025623, + 0.01304024737328291, + -0.020709717646241188, + 0.008292480371892452, + 0.022843705490231514, + 0.0006127161905169487, + -0.028071261942386627, + 0.007848495617508888, + -0.01392105408012867, + -0.015539448708295822, + -0.02043759822845459, + -0.015840211883187294, + -0.009832102805376053, + 0.0004775515990331769, + -0.020280053839087486, + -0.005972304381430149, + -0.019721493124961853, + -0.022184889763593674, + -0.007898623123764992, + -0.010132865980267525, + -0.01708623208105564, + -0.009653076529502869, + 0.019019711762666702, + -0.027211938053369522, + 0.012503169476985931, + 0.003224256681278348, + -0.009610110893845558, + -0.035260941833257675, + -0.013885249383747578, + 0.02101048082113266, + -0.009509855881333351, + -0.007497604936361313, + -0.004676156677305698, + -0.014178851619362831, + -0.012252532877027988, + 0.022313788533210754, + -0.0012988329399377108, + -0.01224537193775177, + -0.011822870932519436, + -0.00290200999006629, + -0.0250206608325243, + -0.02400379441678524, + 0.009996806271374226, + 0.017558861523866653, + -0.029761265963315964, + 0.025736764073371887, + 0.047062329947948456, + 0.0348026379942894, + -0.0010804213816300035, + -0.016857080161571503, + -0.03511772304773331, + 0.010462273843586445, + -0.029761265963315964, + -0.04557283595204353, + -0.011364564299583435, + -0.014078597538173199, + 0.00583624467253685, + 0.02237107791006565, + -0.0015154542634263635, + -0.01859004981815815, + 0.001958543434739113, + 0.029131095856428146, + 0.017687760293483734, + -0.01841818541288376, + 0.008027521893382072, + 0.005249039735645056, + -0.012653551064431667, + 0.0015288812573999166, + 0.005675121210515499, + 0.002835770370438695, + 0.0012719790684059262, + 0.018203353509306908, + 0.00350174680352211, + -0.007282773964107037, + -0.01378499437123537, + -0.027068717405200005, + 0.018876491114497185, + -0.02824312634766102, + -0.013534358702600002, + -0.07676631212234497, + -0.02708303928375244, + -0.008894006721675396, + 0.009037227369844913, + 0.008407056331634521, + -0.011285793036222458, + 0.007289934903383255, + 0.004948276095092297, + -0.011128250509500504, + -0.02374599687755108, + 0.033456362783908844, + 0.00011306604574201629, + 0.0074331555515527725, + 0.013849443756043911, + -0.012109312228858471, + -0.004926792811602354, + 0.00828531850129366, + -0.02484879642724991, + 0.011400369927287102, + -0.0027838528621941805, + 0.016012076288461685, + 0.020824292674660683, + 0.03783891722559929, + -0.019277509301900864, + -0.0003860246215481311, + 0.019263187423348427, + -0.0036413869820535183, + -0.005016305949538946, + -0.016398772597312927, + -0.03274025768041611, + -0.00043973239371553063, + 0.01911996677517891, + -0.017902590334415436, + -0.02466260828077793, + -0.014522581361234188, + 0.0230728592723608, + 0.0024114788975566626, + -0.026137782260775566, + 0.033055342733860016, + 0.021067768335342407, + 0.008306802250444889, + -0.025378713384270668, + -0.00670631043612957, + 0.008177903480827808, + 0.010340536013245583, + -0.012589101679623127, + 0.016241230070590973, + -0.01916293241083622, + -0.006312453653663397, + 0.010032611899077892, + 0.003985116723924875, + 0.013971181586384773, + -0.027641599997878075, + -0.014293428510427475, + 0.004418359603732824, + -0.01937776431441307, + 0.025564899668097496, + -0.023373622447252274, + 0.0018153226701542735, + 0.016670892015099525, + 0.06427746266126633, + 0.01354151964187622, + -0.003088196972385049, + -0.004060307517647743, + -0.019306153059005737, + 0.009180448949337006, + 0.0035124882124364376, + 0.019621239975094795, + 0.026438545435667038, + -0.009287863969802856, + 0.013756350614130497, + 0.00350174680352211, + -0.03196686506271362, + 0.018246321007609367, + 0.014422327280044556, + 0.020781327039003372, + -0.003390750614926219, + 0.025521934032440186, + 0.0014125143643468618, + 0.011164055205881596, + -0.019893359392881393, + 0.009044389240443707, + 0.0009291444439440966, + -0.018389541655778885, + 0.0024687673430889845, + 0.0041534011252224445, + 0.005782536696642637, + -0.00804184377193451, + 0.01960691809654236, + -0.004493550397455692, + 0.030019063502550125, + 0.014236140064895153, + 0.019392086192965508, + 0.008629048243165016, + -0.026051849126815796, + 0.06026728078722954, + -0.025564899668097496, + 0.03079245612025261, + -0.00644135195761919, + 0.0007246073801070452, + -0.00933799147605896, + -0.001363282324746251, + 0.018389541655778885, + -0.016441740095615387, + -0.015782924368977547, + 0.010082739405333996, + -0.011958930641412735, + 0.009037227369844913, + -0.02449074387550354, + -0.024390488862991333, + -0.0015628961846232414, + 0.0003410443605389446, + -0.03030550479888916, + 0.004114015493541956, + -0.014400843530893326, + -0.00654160650447011, + -0.013849443756043911, + -0.013333849608898163, + -0.017143521457910538, + 0.0035590350162237883, + -0.007597859483212233, + 0.0381540022790432, + 0.016670892015099525, + -0.005001983605325222, + 0.002024783054366708, + 0.00767663074657321, + 0.00600094860419631, + 0.0013050988782197237, + 0.004794313572347164, + 0.027713211253285408, + -0.004873085301369429, + -0.00797023344784975, + -0.011500624008476734, + -0.005721667781472206, + -0.013362493366003036, + 0.0074045113287866116, + 0.03256839141249657, + 0.005249039735645056, + 0.008313963189721107, + -0.030190929770469666, + 0.018690304830670357, + 0.008557437919080257, + -0.0026191489305347204, + 0.012324143201112747, + -0.01863301545381546, + -0.0013426942750811577, + -0.018160387873649597, + -0.026753632351756096, + -0.00713597284629941, + 0.004117595963180065, + -0.0006753752240911126, + -0.01308321300894022, + -0.0020516368094831705, + 0.01420749630779028, + -0.024734219536185265, + -0.04436977952718735, + -0.0348026379942894, + 0.010347696952521801, + -0.008736464194953442, + -0.023731674998998642, + -0.008643371053040028, + 0.00084231689106673, + 0.004400456789880991, + 0.0024651866406202316, + 0.01647038385272026, + 0.012166600674390793, + -0.01625555194914341, + 0.0038311544340103865, + 0.0036324355751276016, + -0.005270522553473711, + 0.014880632981657982, + 0.0015825890004634857, + -0.022270822897553444, + 0.0045257750898599625, + -0.008292480371892452, + -0.009559983387589455, + -0.006452093832194805, + 0.008020360954105854, + 0.007246968802064657, + -0.018518440425395966, + -0.01154359057545662, + 0.02030869945883751, + -0.00046546736848540604, + -0.004550838377326727, + -0.01044079102575779, + 0.0028286094311624765, + 0.00810629315674305, + 0.01911996677517891, + 0.004898148588836193, + 0.008951295167207718, + 0.015596737153828144, + 0.03972942754626274, + 0.006921141408383846, + -0.007383028510957956, + 0.0015539448941126466, + -0.015797246247529984, + 0.02775617688894272, + 0.029589401558041573, + -0.024061081930994987, + -0.010168671607971191, + -0.0021339887753129005, + -0.016613604500889778, + 0.010591172613203526, + 0.005077174864709377, + 0.004676156677305698, + 0.002003300003707409, + -0.036492642015218735, + 0.01890513487160206, + 0.009889391250908375, + -0.01218092255294323, + -0.005019886419177055, + 0.005091496743261814, + 0.02184116095304489, + 0.004776411224156618, + -0.002057007746770978, + 0.013312366791069508, + 0.0018690304132178426, + -0.004819377325475216, + -0.0028053359128534794, + -0.026925496757030487, + 0.03325585275888443, + 0.0037595441099256277, + 0.010290409438312054, + -0.023846250027418137, + 0.01678546890616417, + 0.018518440425395966, + 0.017859624698758125, + -0.023502521216869354, + -0.013133340515196323, + 0.010784520767629147, + 0.01674250327050686, + 0.00677075982093811, + -0.020953191444277763, + 0.010720071382820606, + -0.00486592436209321, + 0.007633664645254612, + 0.028157195076346397, + -0.017730725929141045, + 0.020996158942580223, + -0.01237427070736885, + -0.003680772613734007, + -0.01490927767008543, + -0.009409601800143719, + 0.0004072839510627091, + 0.012395753525197506, + 0.02894490770995617, + -0.0466899573802948, + -0.013999826274812222, + 0.004192786756902933, + 0.02126827836036682, + 0.009037227369844913, + -0.014350716955959797, + -0.008027521893382072, + 0.002191276988014579, + -0.01094922423362732, + 0.004643931984901428, + 0.019535306841135025, + -0.0033298819325864315, + 0.01840386353433132, + -0.001482334453612566, + -0.021110735833644867, + -0.016441740095615387, + 0.01495224330574274, + -0.041247569024562836, + 0.017501572147011757, + -0.006552348379045725, + -0.01218092255294323, + -0.009703204035758972, + 0.01087761390954256, + -0.01606936566531658, + 0.0053206500597298145, + -0.004683317616581917, + -0.012352787889540195, + 0.01457986980676651, + 0.01674250327050686, + 0.01024028193205595, + -0.012080668471753597, + 0.0041820453479886055, + 0.014966566115617752, + 0.0021250376012176275, + -0.01859004981815815, + -0.00015877360419835895, + -0.0295607578009367, + 0.00420710863545537, + 0.01127863209694624, + 0.0219414159655571, + -0.009230575524270535, + 0.011264310218393803, + 0.01515275239944458, + -0.010132865980267525, + -0.007998877204954624, + 0.04076061770319939, + 0.019664205610752106, + -0.00543880695477128, + 0.015969110652804375, + -0.009388118982315063, + 0.01180138811469078, + -0.00021953051327727735, + 0.0073114181868731976, + -0.0045150332152843475, + 0.012288338504731655, + 0.019879037514328957, + -0.0219414159655571, + -0.014980887994170189, + -0.00018719396030064672, + -0.00024593682610429823, + 0.0036360162775963545, + 0.010662782937288284, + -0.0004144449776504189, + -0.005628574639558792, + 0.0063231950625777245, + -0.015066820196807384, + 0.008858202025294304, + -0.012052023783326149, + -0.0053206500597298145, + 0.03070652298629284, + 0.03274025768041611, + -0.008571760728955269, + -0.006455674301832914, + -0.010498079471290112, + -0.00583624467253685, + -0.006724213249981403, + -9.337320079794154e-5, + 0.03013364039361477, + -0.0452863946557045, + -0.012653551064431667, + 0.0036736116744577885, + -0.005542641971260309, + 0.006240843329578638, + -0.014221818186342716, + -0.017415640875697136, + 0.04823673889040947, + -0.0019603336695581675, + 0.031508561223745346, + -0.0022431944962590933, + -0.005216815043240786, + 0.0044971308670938015, + 0.004762089345604181, + -0.012216728180646896, + -0.007891462184488773, + 0.024218624457716942, + 0.005614252295345068, + -0.0013319527497515082, + -0.009130321443080902, + 0.007963072508573532, + 0.006785081699490547, + 0.0022127602715045214, + 0.026710664853453636, + 0.020552173256874084, + 0.01801716722548008, + 0.011493463069200516, + 3.958150773542002e-5, + 0.013548680581152439, + 0.0038311544340103865, + -0.0006082405452616513, + 0.04259384423494339, + 0.011729777790606022, + 0.010541045106947422, + -0.013935376890003681, + -0.015081142075359821, + -0.005492514930665493, + 0.021153701469302177, + 0.005345713347196579, + 0.013111857697367668, + -4.2350817238911986e-5, + -0.0005791488219983876, + -0.001577218179591, + -0.02228514477610588, + 0.0066382805816829205, + -0.020451920107007027, + -0.007927266880869865, + -0.009982484392821789, + -0.028930585831403732, + 0.014766057021915913, + -0.006086880806833506, + 0.004454164765775204, + 0.01827496476471424, + 0.0026889690198004246, + 0.019936325028538704, + -0.013355332426726818, + -0.002504572505131364, + 0.004629610106348991, + -0.02343090996146202, + -0.022313788533210754, + -0.020294377580285072, + 0.0015082932077348232, + 0.005420904606580734, + -0.004260816611349583, + -0.01659928262233734, + -0.012997280806303024, + -0.027770498767495155, + -0.02563650906085968, + 0.003349574748426676, + -0.000769811391364783, + 0.013298043981194496, + 0.008915490470826626, + -0.023717351257801056, + 0.019979290664196014, + -0.009094515815377235, + -0.005746731534600258, + -0.01347707025706768, + 0.030448725447058678, + -0.01657063700258732, + 0.035576026886701584, + -0.031823646277189255, + 0.014243301004171371, + -0.0018475473625585437, + 0.024204302579164505, + -0.009853585623204708, + -0.002773111220449209, + -0.02321607992053032, + -0.005564125254750252, + 0.006999913137406111, + -0.0006100307800807059, + 0.005893532652407885, + 0.00560351088643074, + -0.0031866610515862703, + 0.0338287353515625, + -0.007440316490828991, + 0.01657063700258732, + -0.009860746562480927, + -0.015782924368977547, + -0.018160387873649597, + -0.0039421506226062775, + -0.02241404354572296, + 0.015782924368977547, + -0.01572563499212265, + -0.010562528856098652, + 0.0032439494971185923, + -0.01120702177286148, + 0.020337343215942383, + -0.008013200014829636, + -0.003652128390967846, + 0.013792156241834164, + 0.041390787810087204, + -0.01367757935076952, + 0.013262239284813404, + -0.012123634107410908, + 0.011328759603202343, + -0.027383802458643913, + -0.01230982132256031, + -0.00285188271664083, + 0.0020749103277921677, + -0.019979290664196014, + -0.012496008537709713, + 0.017873946577310562, + 0.0204805638641119, + -0.018919458612799644, + 0.018217675387859344, + 0.007547732442617416, + 0.008528794161975384, + -0.04677588865160942, + 0.009896552190184593, + -0.00303448922932148, + 0.01061265543103218, + 0.023273367434740067, + -0.018375219777226448, + -0.01101367361843586, + -0.019535306841135025, + 0.0051273019053041935, + 0.015496482141315937, + -0.0012424398446455598, + -0.0036664505023509264, + 0.007425994612276554, + 0.0029539274983108044, + 0.022915316745638847, + 0.03365686908364296, + -0.0038597986567765474, + -0.028171516954898834, + -0.03855501860380173, + 0.019520984962582588, + -0.021884126588702202, + -0.005453129298985004, + -0.006602475419640541, + 0.010598333552479744, + -0.021210988983511925, + -0.007447477895766497, + -0.0004990347079001367, + -0.0006932778051123023, + -0.008772269822657108, + -0.02105344645678997, + -0.009531339630484581, + -0.011228504590690136, + 0.011221343651413918, + 0.027197616174817085, + -0.003539342200383544, + 0.002744467230513692, + 0.0012889865320175886, + 0.007257710210978985, + 0.03571924939751625, + -0.029016518965363503, + 0.0342583991587162, + -0.02079564891755581, + 0.01301876362413168, + 0.02440481074154377, + -0.020494885742664337, + 0.008886845782399178, + 0.00829964131116867, + 0.026810919865965843, + 0.003766705049201846, + 0.006312453653663397, + -0.025922950357198715, + -0.03007635287940502, + 0.0077482410706579685, + 0.010397824458777905, + -0.02264319732785225, + -0.006559509318321943, + 0.004683317616581917, + 0.0019191576866433024, + -0.002273628953844309, + -0.004626029636710882, + 0.002760579576715827, + -0.013426942750811577, + 0.0006037648417986929, + 0.013570163398981094, + -0.0067277937196195126, + -0.001041035633534193, + 0.0030989383812993765, + -0.0012594473082572222, + -0.007014235015958548, + -0.019678527489304543, + -0.01581156812608242, + 0.0037488024681806564, + -0.00593649921938777, + 0.02158336341381073, + 0.0013946117833256721, + -0.00460454635322094, + -0.020895903930068016, + -0.021511752158403397, + 0.0029754105489701033, + 0.0074904439970850945, + -0.00014187803026288748, + -0.0016694165533408523, + 0.009438245557248592, + 0.0207526832818985, + 0.0072219050489366055, + 0.014322072267532349, + 0.00041623524157330394, + -0.018446829169988632, + -0.010662782937288284, + -0.007597859483212233, + 0.0016568847931921482, + -0.021697940304875374, + 0.012266854755580425, + 0.011958930641412735, + 0.08049004524946213, + 0.013727706857025623, + 0.0009980694158002734, + 0.017028944566845894, + 0.002508152974769473, + -0.028687112033367157, + -0.007583537604659796, + 0.008886845782399178, + 0.005037789233028889, + 0.005574866663664579, + 0.004232172388583422, + -0.014923599548637867, + 0.020895903930068016, + 0.017329707741737366, + -0.02013683319091797, + 0.004020921885967255, + 0.012338465079665184, + 0.02198438160121441, + 0.005700184963643551, + 0.015424871817231178, + -0.004031663294881582, + 0.002665695734322071, + -0.0076265037059783936, + 0.01523868553340435, + -0.006222940515726805, + 0.016355806961655617, + 0.0004860553308390081, + -0.008256674744188786, + 0.020093867555260658, + 0.0262093935161829, + -0.00030859591788612306, + -0.005521159153431654, + 0.015582415275275707, + -0.011378886178135872, + 0.0018582888878881931, + 0.012266854755580425, + -0.01193744782358408, + 0.002950347028672695, + -0.0014331024140119553, + 0.005077174864709377, + -0.013391138054430485, + 0.01413588598370552, + 0.0195639505982399, + 0.023946505039930344, + -0.0025815535336732864, + -0.01101367361843586, + -0.00033164548221975565, + -0.0015736377099528909, + -0.0035035370383411646, + 0.007948750630021095, + -0.016971655189990997, + -0.009058711118996143, + 0.01180138811469078, + -0.011815709993243217, + 0.0047370255924761295, + -0.0017929445020854473, + 0.008772269822657108, + -0.01257477980107069, + -0.00945256743580103, + -0.019449373707175255, + -0.011679650284349918, + -0.008192225359380245, + -0.020466241985559464, + -0.006917560938745737, + -0.0011824661632999778, + 0.00233449786901474, + -0.021826839074492455, + -0.011235665529966354, + 0.013054569251835346, + -0.0068781753070652485, + -0.002148310886695981, + 0.019320474937558174, + 0.009918035008013248, + -0.035776536911726, + 0.008550276979804039, + 0.005975884851068258, + 0.009796297177672386, + 0.023617098107933998, + 0.015840211883187294, + 0.0031848708167672157, + 0.004873085301369429, + 0.011436174623668194, + -0.008084810338914394, + -0.0216692965477705, + -0.011665328405797482, + -0.00010366718925070018, + 0.026624733582139015, + -0.021125057712197304, + 0.012453041970729828, + -0.03778162598609924, + -0.0008351558353751898, + -0.01836089789867401, + -0.01271083950996399, + 0.0032188857439905405, + 0.0005339447525329888, + -0.006194296292960644, + -0.026352614164352417, + -0.002459815936163068, + 0.0031025188509374857, + 0.023932183161377907, + 0.019435051828622818, + 0.01003977283835411, + -0.006111944559961557, + -0.002209179801866412, + -0.0009577886085025966, + -0.018804881721735, + 0.01495224330574274, + 0.013097534887492657, + -0.03219601884484291, + -0.003331672167405486, + -0.004457745235413313, + -0.011930285952985287, + 0.00016280169074889272, + 0.0015244055539369583, + -0.026309646666049957, + 0.0003600658674258739, + 0.022929638624191284, + 0.0005903379060328007, + -0.010125705040991306, + -0.018031489104032516, + -0.01177990436553955, + 0.0071753584779798985, + 0.005044950172305107, + -0.0017249146476387978, + 0.0045436774380505085, + 0.02559354342520237, + -0.004131917841732502, + 5.309237167239189e-5, + -0.024104047566652298, + -0.005954401567578316, + -0.004908890463411808, + 0.017243774607777596, + 0.01515275239944458, + 0.0002703291247598827, + 0.01457986980676651, + -0.007397350389510393, + -0.003917086869478226, + 0.005073594395071268, + 0.02436184510588646, + -0.020093867555260658, + 0.006502220872789621, + 0.009739009663462639, + 0.0008168056956492364, + 0.012359948828816414, + 0.023101503029465675, + 0.02374599687755108, + -0.011436174623668194, + -0.019349120557308197, + -0.004110435023903847, + -0.001372233615256846, + 0.018862169235944748, + -0.02092454768717289, + 0.010089900344610214, + -0.010598333552479744, + 0.03769569471478462, + 0.018475472927093506, + -0.0037201582454144955, + 0.03454484045505524, + -0.012546135112643242, + 0.0001548574073240161, + -0.007411672733724117, + 0.00907303299754858, + -0.020194122567772865, + -0.012352787889540195, + -0.00757637619972229, + 0.00010081396612804383, + -0.004328846465796232, + 0.010662782937288284, + 0.023144468665122986, + -0.02784210816025734, + -0.005718087311834097, + 0.010698588564991951, + -0.003227837150916457, + -0.04700504243373871, + -0.0016855288995429873, + 0.00410685408860445, + 0.012152278795838356, + 0.009180448949337006, + -0.02678227610886097, + 0.02105344645678997, + -0.011765582486987114, + -0.022800739854574203, + 0.007204002700746059, + 0.002595875645056367, + 0.007289934903383255, + -0.021783871576189995, + 0.000716103648301214, + -0.018031489104032516, + 0.009681721217930317, + -0.01147198025137186, + -0.010555367916822433, + 0.035003144294023514, + -0.019320474937558174, + -0.0003448486386332661, + -0.0033352526370435953, + -0.0042572361417114735, + -0.004969759378582239, + 0.011593718081712723, + -0.01691436767578125, + -0.023402266204357147, + 0.0030864067375659943, + 3.3567357604624704e-5, + -0.000662395847029984, + 0.0068781753070652485, + 0.0031472754199057817, + -0.021210988983511925, + -0.008621887303888798, + -0.001967494608834386, + -0.014508259482681751, + -0.000974796072114259, + -0.05027047544717789, + -0.022227857261896133, + 0.020093867555260658, + -0.007447477895766497, + -0.019048357382416725, + -0.02779914252460003, + 0.007540571037679911, + 0.002193067455664277, + 0.010333375073969364, + -0.0033191402908414602, + 0.01308321300894022, + 0.006498640403151512, + 0.020466241985559464, + -0.023817606270313263, + -0.010992190800607204, + 0.032482460141181946, + 0.016799790784716606, + -0.004586643539369106, + 0.010426469147205353, + 0.006949785631150007, + 0.031021609902381897, + -0.0039421506226062775, + -0.01224537193775177, + 0.02638125792145729, + 0.0018529181834310293, + 0.04620300605893135, + 0.009388118982315063, + -0.005084335803985596, + 0.011679650284349918, + -0.009681721217930317, + 3.004278551088646e-5, + 0.0032027733977884054, + -0.010068416595458984, + -0.004178464878350496, + 0.02290099486708641, + 0.00874362513422966, + 0.0034211850725114346, + -0.0039027647580951452, + 0.020852938294410706, + -2.4755925551289693e-5, + -0.007282773964107037, + -0.019105644896626472, + 0.0008163581369444728, + 0.03422975167632103, + 0.005775375757366419, + 0.012825416401028633, + 0.007279193494468927, + 0.011629522778093815, + -0.009001422673463821, + -0.01854708418250084, + 0.001732075703330338, + 0.019492341205477715, + -1.1776547580666374e-5, + -0.006552348379045725, + -0.008650531992316246, + 0.003605581820011139, + -0.013863766565918922, + 0.017816659063100815, + -0.0017795175081118941, + 0.004672576207667589, + 0.012352787889540195, + 0.011027995496988297, + 0.016728181391954422, + 0.01810310035943985, + -0.011020834557712078, + 0.0024526549968868494, + 0.0009739009547047317, + -0.004529355559498072, + -0.004590224474668503, + 0.009760492481291294, + 0.006154910661280155, + 0.002375673735514283, + 0.009395279921591282, + -0.026008883491158485, + 0.015911823138594627, + -0.017544539645314217, + 0.0006001843721605837, + 0.006985590793192387, + -0.012589101679623127, + 0.010125705040991306, + 0.011228504590690136, + -0.008142097853124142, + 0.009774814359843731, + -0.021339887753129005, + -0.0017052217153832316, + 0.004880246240645647, + 0.0037523829378187656, + -0.000987327890470624, + 0.04147672280669212, + 0.008306802250444889, + -0.0016524090897291899, + 0.0036557090934365988, + -0.005385099444538355, + -0.014823345467448235, + 0.016355806961655617, + 0.023488199338316917, + 0.0029915228951722383, + -0.010225960053503513, + -0.011128250509500504, + -0.001870820764452219, + -0.009524178691208363, + -0.0017741466872394085, + 0.0022879510652273893, + -0.009681721217930317, + -0.007998877204954624, + -0.01535326149314642, + 0.002458025701344013, + 0.010319053195416927, + -0.012725161388516426, + -0.004045985639095306, + -0.0061907158233225346, + 0.010741554200649261, + -0.009567144326865673, + 0.017143521457910538, + 0.0010267135221511126, + 0.017945555970072746, + 0.003116840962320566, + 0.00693546375259757, + 0.0032260469160974026, + -0.03319856524467468, + 0.011958930641412735, + -0.00997532345354557, + -0.0058290837332606316, + -0.007297095842659473, + -0.0005249934620223939, + 0.026323968544602394, + -0.01154359057545662, + -0.00021438352996483445, + -0.013749189674854279, + 0.012302660383284092, + -0.028601178899407387, + -0.007705274969339371, + -0.009824941866099834, + 0.0016676263185217977, + 0.0008763318182900548, + 0.010913419537246227, + -0.0029789910186082125, + -0.005327810999006033, + 0.00843570102006197, + 0.015739956870675087, + 0.016670892015099525, + -0.015696991235017776, + 0.024118369445204735, + -0.003356735687702894, + -0.008407056331634521, + -0.011292953975498676, + 0.006752857007086277, + 0.0235598087310791, + -0.024906083941459656, + 0.001419675420038402, + -0.028472280129790306, + 0.00021662135259248316, + -0.01392105408012867, + -0.0009264590917155147, + 0.0009855376556515694, + -0.0057574729435145855, + -0.003270803252235055, + 0.00958146620541811, + -0.033714160323143005, + 0.006788662169128656, + -0.02171226218342781, + -0.025521934032440186, + -0.011679650284349918, + 0.001422360772266984, + -0.006781501229852438, + 0.012503169476985931, + 0.0019424310885369778, + 0.003981536254286766, + -0.01314766239374876, + -0.007007074076682329, + 0.0159404668956995, + 0.007998877204954624, + -0.007497604936361313, + -0.003394331084564328, + -0.003791768802329898, + 0.022084636613726616, + 0.034115176647901535, + 0.03898468241095543, + 0.013391138054430485, + -0.01407143659889698, + -0.006946205161511898, + -0.004898148588836193, + -0.009696043096482754, + 0.004253655672073364, + 0.005188170820474625, + -0.0015324617270380259, + -0.012209567241370678, + 0.014214657247066498, + -0.003795349271968007, + -0.0003663317475002259, + 0.006538026034832001, + 0.015381906181573868, + 0.025879984721541405, + 0.017186487093567848, + 0.007236226927489042, + -0.02052352949976921, + 0.0055390615016222, + 0.012231050059199333, + 0.0009506275528110564, + -0.01464431919157505, + 0.014028470031917095, + 0.016370128840208054, + -0.023617098107933998, + 0.004772830754518509, + 0.00490172952413559, + 0.0035286005586385727, + 0.012030540965497494, + -0.006362580694258213, + 0.01831793040037155, + -0.008894006721675396, + 0.016685213893651962, + -0.002044475870206952, + -0.0010141817620024085, + -0.007304256781935692, + 0.010419308207929134, + -0.006394805386662483, + 0.02480582892894745, + 0.014529742300510406, + -0.005266942083835602, + 0.016241230070590973, + -0.002567231422290206, + -0.01687140204012394, + -0.010999351739883423, + 0.009459729306399822, + -0.018303608521819115, + -0.013054569251835346, + 0.027813464403152466, + -0.005223975982517004, + 0.02109641209244728, + 0.012589101679623127, + -0.020709717646241188, + 0.0013856604928150773, + 0.014143046922981739, + 0.004332426935434341, + 0.008185064420104027, + -0.01367757935076952, + 0.001962123904377222, + 0.01770208217203617, + -0.009853585623204708, + -0.027985328808426857, + -0.011679650284349918, + 0.0304773710668087, + -0.009216253645718098, + -0.008421378210186958, + -0.008786591701209545, + -0.026094816625118256, + 0.0028053359128534794, + 0.005789697635918856, + 0.016040721908211708, + -0.028400670737028122, + -0.002359561389312148, + -0.010741554200649261, + -0.013276561163365841, + 0.013405459932982922, + 0.0013382186880335212, + -0.017916912212967873, + 0.012603423558175564, + 0.010576850734651089, + -0.002508152974769473, + 0.0023040634114295244, + -0.014028470031917095, + -0.0012057394487783313, + 0.007186099886894226, + -0.0006802984280511737, + 0.009359474293887615, + 0.003970794379711151, + -0.0006762703415006399, + 0.009946679696440697, + 0.005907854996621609, + -0.012166600674390793, + -0.018561406061053276, + -0.008013200014829636, + 0.004053146578371525, + 0.007569215260446072, + 0.011149733327329159, + -0.0039421506226062775, + -0.0013677579117938876, + 0.006162071600556374, + 0.0010929531417787075, + 0.002710452303290367, + -0.021483108401298523, + -0.00817074254155159, + 0.0011251778341829777, + -0.016198264434933662, + 0.012610584497451782, + -0.011550751514732838, + -0.010555367916822433, + 0.00031799476710148156, + 0.01793123409152031, + 0.006033172830939293, + -0.0033066084142774343, + -0.0056536379270255566, + 0.011085283942520618, + 0.016370128840208054, + -0.004926792811602354, + 0.006548767443746328, + 0.006126266438513994, + 0.013369654305279255, + 0.010977868922054768, + 0.0018403863068670034, + 0.010591172613203526, + 0.001447424408979714, + -0.004017341416329145, + 0.012481686659157276, + -0.010233120992779732, + 0.01890513487160206, + 0.0030165864154696465, + -0.008342606946825981, + 0.021039124578237534, + 0.004883826710283756, + -0.004045985639095306, + -0.006785081699490547, + -0.01598343253135681, + -0.008901167660951614, + -0.006960527040064335, + 0.0009327249717898667, + 0.007855656556785107, + 0.026481512933969498, + 0.014923599548637867, + 0.00797023344784975, + -0.00577179528772831, + -3.6168828955851495e-5, + -0.006734954658895731, + 0.008120615035295486, + 0.0038633791264146566, + 0.026767954230308533, + 0.008765107952058315, + -0.009674560278654099, + 0.030649235472083092, + -0.004583063069730997, + 0.000385577033739537, + 0.013161984272301197, + -0.0005751207354478538, + -0.010297570377588272, + -0.0017875736812129617, + -0.030992964282631874, + 0.009194770827889442, + 0.004948276095092297, + 0.013434103690087795, + 0.00048695047735236585, + -0.013620290905237198, + -0.000572435325011611, + 0.010584011673927307, + 0.01398550346493721, + 0.019220221787691116, + -0.015525126829743385, + -0.001529776374809444, + -0.004779991693794727, + -0.005642896518111229, + 0.01704326644539833, + -0.010526723228394985, + -0.02440481074154377, + 0.006982010323554277, + 0.014794700779020786, + -0.0038562179543077946, + -0.004443422891199589, + 0.02073836140334606, + 0.018518440425395966, + -0.0022575166076421738, + 0.018948102369904518, + -0.01288270391523838, + -0.011328759603202343, + -0.0024454938247799873, + 0.004586643539369106, + -0.014400843530893326, + -0.0067743402905762196, + -0.00964591559022665, + 0.0066096363589167595, + 0.010025450959801674, + -0.000981061952188611, + -0.00019222906848881394, + -0.013570163398981094, + -0.0036950947251170874, + -0.007322159595787525, + -0.01310469675809145, + -0.0008991576032713056, + -0.0017338659381493926, + -0.009875069372355938, + 0.01523868553340435, + -0.014143046922981739, + 0.02718329429626465, + -0.02779914252460003, + -0.022385399788618088, + -0.009345152415335178, + 0.0023416588082909584, + -0.013183468021452427, + -0.008994261734187603, + 0.015568092465400696, + -0.015066820196807384, + -0.008485827594995499, + 0.00660605588927865, + -0.01731538586318493, + -0.0068316287361085415, + 0.0035751473624259233, + -0.013298043981194496, + -0.0035124882124364376, + -0.0022449849639087915, + -0.004178464878350496, + 0.00486592436209321, + -0.006434191018342972, + -0.007848495617508888, + -0.0031974026933312416, + 0.014429488219320774, + 0.0026424224488437176, + -0.0038239932619035244, + -0.02854389138519764, + 0.01563970372080803, + 0.012209567241370678, + 0.03483128175139427, + -0.020007934421300888, + -0.01328372210264206, + -0.009373796172440052, + -0.00827815756201744, + 0.01400698721408844, + 0.006867433898150921, + 0.004672576207667589, + -0.008915490470826626, + 0.0036395967472344637, + 0.00991087406873703, + -0.010204476304352283, + -0.011514945887029171, + 0.004529355559498072, + 0.009996806271374226, + -0.009824941866099834, + 0.006892497185617685, + 0.004378973506391048, + -0.030964320525527, + 0.011199860833585262, + -0.004450583830475807, + -0.01801716722548008, + 0.014980887994170189, + -0.01083464827388525, + 0.0005737780593335629, + -0.0008946819580160081, + 0.01647038385272026, + 0.014443810097873211, + -0.00220201862975955, + 0.006176393944770098, + -4.520404036156833e-5, + -0.0007881615310907364, + -0.015253007411956787, + 0.002620939165353775, + -0.022227857261896133, + 0.022170567885041237, + -0.00035447129630483687, + -0.012732322327792645, + 0.0018385960720479488, + -0.008672014810144901, + 0.009409601800143719, + -0.005990206729620695, + -0.008965617045760155, + -0.03549009561538696, + 0.012997280806303024, + 0.015525126829743385, + -0.0006816411623731256, + -0.02774185501039028, + 0.022829383611679077, + -0.006337516941130161, + -0.008514472283422947, + -0.027111683040857315, + 0.0019764460157603025, + 0.012202405370771885, + -0.019005389884114265, + 0.023273367434740067, + -0.004296621773391962, + -0.014257622882723808, + -0.010204476304352283, + -0.01700030080974102, + 0.019048357382416725, + -0.04087519645690918, + -0.0018761914689093828, + 0.002073120092973113, + 0.003952892031520605, + -0.006047495175153017, + -1.411227640346624e-5, + -0.0011547170579433441, + -0.003467731876298785, + -0.0077482410706579685, + 0.005152365658432245, + -0.020108189433813095, + -0.03139398247003555, + -0.012417237274348736, + -0.0020963933784514666, + -0.03039143793284893, + 0.02748405747115612, + 0.005324230529367924, + 0.002671066438779235, + -0.019879037514328957, + -0.0031329533085227013, + 0.006896078120917082, + -0.018002845346927643, + -0.0021590525284409523, + -0.0006055551348254085, + -0.02533574588596821, + 0.028816010802984238, + -0.007046459708362818, + 0.025292780250310898, + -0.00490172952413559, + -0.0006802984280511737, + 0.011421852745115757, + 0.007214744109660387, + 0.0063697416335344315, + -0.007533410098403692, + -0.009158965200185776, + -0.02347387745976448, + -0.01290418766438961, + 0.008621887303888798, + -0.012868382036685944, + -0.021884126588702202, + 0.027684565633535385, + -0.005864888895303011, + 0.002927073510363698, + -0.003849057015031576, + -0.005009145010262728, + -0.009044389240443707, + -0.012474524788558483, + 0.009717525914311409, + 0.02911677397787571, + -0.0052920058369636536, + -0.0030720846261829138, + 0.011457658372819424, + -0.002839350840076804, + -0.001920947921462357, + 0.00951701682060957, + -0.0009425713797099888, + -0.0003661079681478441, + -0.006147749722003937, + 0.007014235015958548, + 0.003981536254286766, + 0.01775936968624592, + -0.014723090454936028, + -0.0209675133228302, + -0.0280999056994915, + 0.014257622882723808, + 0.01920589990913868, + -0.010942063294351101, + -0.01589750126004219, + 0.007207583170384169, + -0.02321607992053032, + -0.004375393036752939, + -0.0035626154858618975, + -0.006097622215747833, + 0.011128250509500504, + -0.009302185848355293, + 0.013935376890003681, + 0.002508152974769473, + 0.028773043304681778, + 0.0038275739643722773, + 0.00828531850129366, + -0.007418833673000336, + 0.008994261734187603, + 0.011464819312095642, + -0.012517491355538368, + 0.016713859513401985, + -0.0019388506188988686, + 0.01011138316243887, + 0.009559983387589455, + -0.0030237475875765085, + 0.0037308998871594667, + 0.00829964131116867, + 0.004314524121582508, + -0.003845476545393467, + -0.015095464885234833, + -0.017372673377394676, + -0.021024802699685097, + -0.02616642601788044, + -0.005535481031984091, + -0.005352874752134085, + -0.025837019085884094, + 0.026366936042904854, + -0.0037165777757763863, + 0.004869504831731319, + -0.024347523227334023, + -0.003200983162969351, + -0.025235490873456, + 0.026896852999925613, + 0.018919458612799644, + 0.006065397523343563, + 0.017730725929141045, + 0.007554893381893635, + 0.014594191685318947, + 0.005095077212899923, + -0.017258096486330032, + -0.00042473897337913513, + 0.03365686908364296, + 0.024189980700612068, + 0.007540571037679911, + -0.007157455664128065, + 0.0022342433221638203, + -0.00030949103529565036, + -0.0011905223364010453, + 0.011930285952985287, + -0.02189844846725464, + 0.00023810446145944297, + 0.0015790085308253765, + 0.0276129562407732, + -0.006845950614660978, + 0.012696517631411552, + 0.008707820437848568, + -0.002273628953844309, + 0.0004873980360571295, + -0.0032349980901926756, + -0.01523868553340435, + 0.00044286533375270665, + 0.010261764749884605, + -0.015911823138594627, + 0.008313963189721107, + 0.013605969026684761, + 0.005886371713131666, + 0.012030540965497494, + 0.003038069698959589, + -0.007705274969339371, + -0.002644212683662772, + 0.0013417991576716304, + -0.029145417734980583, + -0.0018287496641278267, + 0.011557912454009056, + -0.024347523227334023, + 0.0009559983154758811, + -0.01606936566531658, + -0.002835770370438695, + -0.005141624249517918, + 0.0013068891130387783, + 0.007683791685849428, + -0.004565160721540451, + -0.018790559843182564, + -0.017888268455863, + -0.010820325464010239, + 0.020194122567772865, + 0.010806003585457802, + 0.005284844897687435, + -0.010734393261373043, + 0.018518440425395966, + 0.011529268696904182, + -0.002277209423482418, + -0.011421852745115757, + -0.024290235713124275, + -0.00460454635322094, + -0.013813639059662819, + -0.012381431646645069, + 0.0008790172287262976, + 0.023330656811594963, + 0.012238210998475552, + 0.015310295857489109, + -0.019893359392881393, + 0.0011779904598370194, + 0.006169232539832592, + -0.0007510136929340661, + 0.01657063700258732, + -0.020724039524793625, + -0.00931650772690773, + 0.00927354209125042, + 0.003838315373286605, + 0.018976746127009392, + 0.017687760293483734, + -0.022313788533210754, + -0.01704326644539833, + 0.0026388419792056084, + 0.003938570152968168, + -0.002599456114694476, + -0.007361545227468014, + 0.0047835721634328365, + -0.02232811041176319, + 0.02308718115091324, + -0.0019119966309517622, + 0.015381906181573868, + 0.004418359603732824, + 0.005972304381430149, + 0.016040721908211708, + 0.014529742300510406, + -0.010190154425799847, + 0.016985978931188583, + -0.003220675978809595, + -0.009481212124228477, + -0.004164142534136772, + -0.012875542975962162, + 0.007114489562809467, + -0.013233594596385956, + 0.013648934662342072, + 0.03039143793284893, + 0.017945555970072746, + -0.014357877895236015, + 0.025536255910992622, + 0.006179974414408207, + 0.0032564811408519745, + -0.00966739933937788, + 0.0083497678861022, + -0.004615287762135267, + 0.006359000224620104, + -0.011378886178135872, + -0.003208144335076213, + -0.0008100921986624599, + -0.013899571262300014, + -0.005954401567578316, + 0.0035948401782661676, + -0.0027462574653327465, + -0.026352614164352417, + 0.0006503115873783827, + -0.018647339195013046, + -0.009688882157206535, + -0.009323669597506523, + 0.0015593155985698104, + 0.007157455664128065, + -0.004103273618966341, + -0.008335446007549763, + 0.004160562064498663, + 0.0051738484762609005, + -0.0190770011395216, + -0.018948102369904518, + -0.031880933791399, + -0.01757318340241909, + 0.008084810338914394, + -0.0018976746359840035, + -0.006752857007086277, + -0.016484705731272697, + -0.010641300119459629, + -0.005138043314218521, + 0.00033075036481022835, + -0.016584960743784904, + -0.015926145017147064, + 0.01387808844447136, + -0.002280790125951171, + 0.000831127748824656, + 0.013247917406260967, + -0.008399895392358303, + -0.020280053839087486, + -0.0030953579116612673, + -0.014894955791532993, + 0.004217850510030985, + 0.007143133785575628, + 0.02580837532877922, + 0.011722615920007229, + 0.005678701680153608, + -3.4602351661305875e-5, + -0.006670505274087191, + -0.005778956227004528, + 0.002583343768492341, + -0.011314437724649906, + -0.011830031871795654, + 0.018346574157476425, + -0.004332426935434341, + -0.0029449760913848877, + 0.02661040984094143, + 0.0011493463534861803, + 0.002867995062842965, + -0.006269487086683512, + -0.00466899573802948, + -0.010963546112179756, + -0.02268616296350956, + -0.005485353991389275, + -0.008134936913847923, + -0.02360277622938156, + 0.01445097103714943, + -0.030448725447058678, + 0.004382553976029158, + -0.01765911467373371, + 0.0064592547714710236, + -0.018289286643266678, + -0.022084636613726616, + 0.007028556894510984, + 0.007984555326402187, + 0.0011350242421030998, + -0.006480737589299679, + 0.02673930861055851, + 0.02154039777815342, + 0.014629997313022614, + -0.0024240107741206884, + 0.007941588759422302, + 0.004146240185946226, + 0.021812517195940018, + -0.01568266935646534, + -0.006437771487981081, + 0.009531339630484581, + -0.012102151289582253, + 0.0022575166076421738, + 0.012567618861794472, + 0.012531813234090805, + -0.0010678895050659776, + 0.00984642468392849, + 0.0062193600460886955, + -0.02113937959074974, + -0.027713211253285408, + 0.007032137829810381, + 0.0038132518529891968, + 0.007032137829810381, + -0.025178203359246254, + 0.028257448226213455, + 0.006498640403151512, + -0.0037452219985425472, + -0.004984081257134676, + 0.006942624691873789, + 0.015825890004634857, + -0.02281506173312664, + -0.0028411410748958588, + -0.0005021676770411432, + 0.0009085564524866641, + 0.003041650168597698, + -0.004096112679690123, + -0.022127602249383926, + 0.03342771902680397, + 0.011135411448776722, + 0.012596262618899345, + -0.018690304830670357, + -0.00861472636461258, + 0.004815796855837107, + 0.02731219306588173, + 0.01973581686615944, + 0.021869804710149765, + 0.006677666213363409, + 0.012166600674390793, + 0.005048530641943216, + 0.016885723918676376, + -0.005854147020727396, + -0.0038275739643722773, + 0.004697639960795641, + 0.013068891130387783, + -0.001091162906959653, + 0.002558280248194933, + 0.002728354884311557, + -0.02567947655916214, + 0.012617745436728, + 0.008013200014829636, + -0.0019191576866433024, + -0.012789610773324966, + -0.0066848271526396275, + -0.0038633791264146566, + -0.008020360954105854, + 0.02109641209244728, + -0.010741554200649261, + 0.002006880473345518, + -0.007733919192105532, + 0.003691514255478978, + 0.01602640002965927, + 0.019134288653731346, + -0.0216692965477705, + -0.009617271833121777, + -0.00900858361274004, + -0.014164529740810394, + 0.008514472283422947, + -0.0029163321014493704, + -0.03142262622714043, + -0.02260022982954979, + -0.004518613684922457, + -0.00647715711966157, + 0.010591172613203526, + 0.0019227382726967335, + -0.008199386298656464, + 0.008750786073505878, + 0.014085758477449417, + 0.02483447454869747, + 0.021397177129983902, + 0.0012343836715444922, + -0.007454638835042715, + -0.01515275239944458, + -0.01097070798277855, + -0.011479141190648079, + -0.03262568265199661, + 0.011679650284349918, + 0.00014232558896765113, + 0.007927266880869865, + -0.0051559461280703545, + 0.03841179981827736, + -0.0023738835006952286, + 0.011887320317327976, + 0.004676156677305698, + -0.01859004981815815, + 0.00810629315674305, + 0.026581766083836555, + 0.008242352865636349, + 0.018833525478839874, + 0.009681721217930317, + -0.014508259482681751, + -0.0115364296361804, + -0.004364651627838612, + -0.0051559461280703545, + -0.019936325028538704, + 0.003188451286405325, + 0.0204805638641119, + 0.005030627828091383, + -0.012610584497451782, + -0.012202405370771885, + -0.006845950614660978, + 0.006788662169128656, + 0.0027247744146734476, + 0.015324617736041546, + 0.002574392594397068, + 0.010655621998012066, + 0.01224537193775177, + 0.0035196493845432997, + -0.0023810446728020906, + -0.003773866221308708, + 0.018833525478839874, + -0.007827012799680233, + -0.0032260469160974026, + -0.014880632981657982, + 0.0058756303042173386, + 0.007633664645254612, + 0.012266854755580425, + -0.0013113648165017366, + 0.0030828260350972414, + -0.003992277663201094, + -0.006043914705514908, + -0.01089909765869379, + 0.009509855881333351, + 0.02145446464419365, + 0.020380308851599693, + 0.006205037701874971, + -0.0014169900678098202, + 0.0016264503356069326, + 0.007207583170384169, + -0.025865662842988968, + -0.0033334624022245407, + 0.0068781753070652485, + 0.007683791685849428, + -0.01731538586318493, + 0.011335920542478561, + -0.010755876079201698, + -0.015310295857489109, + -0.008056165650486946, + 0.008643371053040028, + 0.025865662842988968, + 0.0029861521907150745, + 0.011221343651413918, + 0.013133340515196323, + 0.0219414159655571, + 0.0006037648417986929, + 0.0025439581368118525, + 0.005782536696642637, + 0.007411672733724117, + -0.0190770011395216, + 0.007440316490828991, + 0.027784820646047592, + 0.021654972806572914, + 0.00863621011376381, + 0.01387808844447136, + -0.011951769702136517, + -0.006577411666512489, + -0.002848302247002721, + 0.005764634348452091, + 0.002359561389312148, + -0.018289286643266678, + 0.0064127082005143166, + 0.010025450959801674, + -0.020910225808620453, + -0.008464344777166843, + 0.006781501229852438, + -0.008013200014829636, + 0.008994261734187603, + -0.03666450455784798, + 0.013061730191111565, + 0.004890987649559975, + -0.007669469807296991, + -0.019277509301900864, + 0.004611707292497158, + 0.007010654546320438, + 0.01920589990913868, + -0.029145417734980583, + 0.00640912726521492, + 0.009373796172440052, + -0.0016980607761070132, + -0.008607565425336361, + -0.018532762303948402, + 0.0009712155442684889, + 0.006344678346067667, + 0.012066345661878586, + 0.0023738835006952286, + -0.00018159940373152494, + -0.003838315373286605, + -0.01211647316813469, + -0.008514472283422947, + -0.019707171246409416, + -0.018790559843182564, + -0.01427194569259882, + -0.013935376890003681, + 0.027942363172769547, + 0.012130795046687126, + -0.012897026725113392, + 0.000974796072114259, + 0.010225960053503513, + 0.0007514612516388297, + 0.007075103931128979, + 0.0010652041528373957, + -0.024104047566652298, + 0.001186046632938087, + -0.0022378237918019295, + 0.003895603818818927, + -0.01392105408012867, + 0.008156420662999153, + 0.013491392135620117, + -0.0051093995571136475, + -0.022041669115424156, + -0.009552822448313236, + 0.004651092924177647, + -0.004690478555858135, + -0.015754280611872673, + -0.005216815043240786, + 0.0011242827167734504, + -0.014751735143363476, + -0.0054244850762188435, + 0.004389715380966663, + 0.013312366791069508, + 0.01288270391523838, + -0.004565160721540451, + -0.008392734453082085, + -0.004393295850604773, + 0.030821099877357483, + 0.010297570377588272, + -0.00017712375847622752, + 0.03889874741435051, + 0.0059329187497496605, + 0.006967688445001841, + 0.02973262220621109, + -0.008858202025294304, + -0.009495534002780914, + 0.02255726419389248, + -0.008664853870868683, + 0.012854060158133507, + -0.013097534887492657, + -0.01854708418250084, + 0.0004388372472021729, + -0.006076139397919178, + 0.02145446464419365, + -0.019836070016026497, + -0.0021142959594726562, + -0.018518440425395966, + 0.018790559843182564, + -0.014694446697831154, + 0.03781026974320412, + -0.012274015694856644, + -0.0009372006170451641, + -0.017014622688293457, + 0.004135498311370611, + -0.004156981594860554, + 0.007504765875637531, + -0.0029485567938536406, + -0.004611707292497158, + -0.0035375519655644894, + -0.01889081299304962, + -0.012682194821536541, + -0.019478019326925278, + 0.008621887303888798, + -0.005778956227004528, + -0.004583063069730997, + 0.005628574639558792, + 0.017243774607777596, + -0.008664853870868683, + -0.01290418766438961, + -0.0023148050531744957, + 0.02030869945883751, + 0.004708381369709969, + -0.012961475178599358, + 0.0026692762039601803, + 0.024777185171842575, + 0.008521633222699165, + 0.021569041535258293, + -0.00032023258972913027, + -0.011579395271837711, + -0.009946679696440697, + -0.008757947012782097, + -0.015825890004634857, + -0.022571586072444916, + 0.013548680581152439, + 0.017630470916628838, + -0.018919458612799644, + -0.012324143201112747, + -0.03013364039361477, + -0.021168023347854614, + 0.002458025701344013, + 0.01263922918587923, + 0.00637690257281065, + 0.0034587804693728685, + 0.00827815756201744, + -0.0104837566614151, + -0.011006512679159641, + 0.009051550179719925, + 0.0031150507275015116, + 0.04686181992292404, + 0.005206073168665171, + 0.02915973961353302, + -0.017472928389906883, + -0.0015351471956819296, + -0.04021637886762619, + -0.012460202910006046, + -0.011486302129924297, + -0.02101048082113266, + -0.0006194296292960644, + -0.0022700484842061996, + -0.009789136238396168, + 0.008321124128997326, + 0.010784520767629147, + -0.005599930416792631, + 0.00837125163525343, + -0.0020373149309307337, + -0.006896078120917082, + -0.00867917574942112, + 0.002567231422290206, + 0.006230101455003023, + 0.007862817496061325, + -0.004443422891199589, + -0.03368551284074783, + -0.0006659763748757541, + 0.0008288899553008378, + 0.011944608762860298, + 0.009266381151974201, + 0.004654673393815756, + -0.0011949979234486818, + 0.006359000224620104, + 0.005667960271239281, + -0.02241404354572296, + 0.02255726419389248, + 0.001757139223627746, + 0.002264677779749036, + 0.0034927953965961933, + 0.01871894858777523, + 0.01854708418250084, + 0.006287389900535345, + -0.027956685051321983, + 0.001920947921462357, + 0.006656183395534754, + 0.004300202243030071, + -0.006061817053705454, + -0.006577411666512489, + 0.015295973047614098, + 0.016541993245482445, + -0.0018475473625585437, + 0.002583343768492341, + -0.007862817496061325, + -0.0036020013503730297, + -0.01806013286113739, + 0.01784530282020569, + -0.006645441520959139, + 0.00927354209125042, + 0.02325904555618763, + -0.02026573196053505, + -0.016241230070590973, + 0.01731538586318493, + -0.00856459978967905, + -0.006867433898150921, + 0.010462273843586445, + 0.019091323018074036, + -0.0005317069590091705, + 0.014178851619362831, + -0.00657383119687438, + 0.01629851944744587, + 0.0025027822703123093, + 0.0047656698152422905, + 0.016799790784716606, + -0.011070962063968182, + -0.014866311103105545, + -0.030591946095228195, + -0.01599775440990925, + -0.015926145017147064, + -0.014851989224553108, + -0.0264242235571146, + -0.01120702177286148, + 0.007010654546320438, + -0.006620378233492374, + -0.01731538586318493, + 0.0027301451191306114, + -0.005897113587707281, + 0.007340061943978071, + -0.003179500112310052, + 0.0014715929282829165, + -0.0013158404035493731, + 0.015525126829743385, + -0.011901642195880413, + -0.004579482600092888, + -0.004296621773391962, + 0.0029467663262039423, + 0.015081142075359821, + 0.011901642195880413, + -0.02506362646818161, + -0.01950666308403015, + 0.005252620205283165, + 0.015195718966424465, + 0.012102151289582253, + 0.01876191422343254, + -0.005070013459771872, + 0.008321124128997326, + -0.013140501454472542, + -0.012395753525197506, + -0.006566670257598162, + -0.008786591701209545, + -0.010605494491755962, + -0.011951769702136517, + 0.019893359392881393, + -0.011708294041454792, + 0.01602640002965927, + -0.007948750630021095, + 0.0077482410706579685, + 0.030964320525527, + 0.0011842563981190324, + 0.01198041345924139, + 0.013068891130387783, + 0.010791681706905365, + 0.0255076102912426, + -0.003791768802329898, + 0.021826839074492455, + 0.02431887947022915, + 0.0010616236831992865, + 0.010340536013245583, + 0.010605494491755962, + -0.005750312004238367, + 0.0162125863134861, + -0.004532936029136181, + -0.005095077212899923, + 0.006086880806833506, + -0.017630470916628838, + 0.015138430520892143, + 0.0029575079679489136, + 0.017458606511354446, + -0.0041820453479886055, + 0.0008441071258857846, + 0.0057682148180902, + 0.013598808087408543, + 0.002653163857758045, + -0.009173287078738213, + 0.04660402238368988, + 0.010182993486523628, + -0.014665802009403706, + -0.003179500112310052, + 0.015081142075359821, + -0.02264319732785225, + -0.0005343923112377524, + 0.013512875884771347, + 0.018776237964630127, + -0.013699062168598175, + -0.010906258597970009, + -0.0007438526372425258, + -0.008392734453082085, + -0.009674560278654099, + 0.011794227175414562, + 0.02113937959074974, + 0.007329320535063744, + -0.0007765248883515596, + 0.017644792795181274, + 0.00984642468392849, + -0.008786591701209545, + 0.001239754376001656, + 0.0010696797398850322, + -0.0028035456780344248, + -0.005095077212899923, + -0.011808549053966999, + 0.01158655621111393, + 0.0050807553343474865, + -0.0030864067375659943, + -0.00460454635322094, + 0.01651334948837757, + 0.0017517685191705823, + 0.009939518757164478, + 0.003974375315010548, + 0.015568092465400696, + 0.007279193494468927, + 0.00024034228408709168, + -0.0007089425926096737, + -0.0055891890078783035, + 0.00946689024567604, + 0.01933479867875576, + 0.026395579800009727, + -0.014164529740810394, + -0.006169232539832592, + 0.02633829228579998, + 0.0024616061709821224, + 0.010727232322096825, + 0.013333849608898163, + 0.030248217284679413, + 0.019520984962582588, + 0.008550276979804039, + -0.006165652070194483, + -0.025922950357198715, + -0.00804184377193451, + 0.014980887994170189, + 0.004096112679690123, + -0.009130321443080902, + -0.0476638562977314, + 0.0015978062292560935, + 0.00828531850129366, + 0.024018116295337677, + -0.018475472927093506, + 0.02744109183549881 + ], + "14706ad3-1f24-48d4-aa97-c543af753a5a": [ + -0.02112708054482937, + -0.013876324519515038, + -0.001940242131240666, + 0.023110440000891685, + -0.007667549420148134, + -0.032509833574295044, + 0.0023678140714764595, + 0.025596823543310165, + 0.013933813199400902, + 0.04257034882903099, + 0.014551815576851368, + 0.04050075635313988, + 0.012748109176754951, + -0.003812216455116868, + 0.021543873474001884, + 0.034665659070014954, + -0.0001223879517056048, + 0.020767776295542717, + -0.01973298005759716, + -0.012439107522368431, + 0.050187595188617706, + 0.0021432489156723022, + -0.02459077164530754, + 0.02210438810288906, + 0.005615923088043928, + -0.020092284306883812, + -0.012819970026612282, + -0.004343986511230469, + -0.03150378167629242, + -0.0029588693287223577, + 0.01507639978080988, + 0.022118760272860527, + 0.0066579049453139305, + -0.013603253290057182, + 0.013402042910456657, + -0.0235703494399786, + -0.00014046544674783945, + 0.007847201079130173, + -0.0358729213476181, + 0.03771255910396576, + -0.006136913783848286, + 0.044122543185949326, + 0.0061081694439053535, + -0.007962178438901901, + -0.04107564315199852, + -0.008781392127275467, + -0.03069894202053547, + -0.013639183714985847, + 0.01161989476531744, + -0.04578971490263939, + 0.015478820540010929, + 0.0032966150902211666, + 0.031043874099850655, + 0.017663389444351196, + 0.05242965370416641, + -0.023613465949892998, + 0.0011964826844632626, + 0.037770047783851624, + 0.005504538770765066, + -0.05237216502428055, + -0.003984682261943817, + -0.006550113670527935, + 0.025352496653795242, + 0.016671709716320038, + 0.0502738282084465, + -0.013495462015271187, + -0.015004538930952549, + 0.004918872844427824, + -0.03446444869041443, + 0.004926058929413557, + 0.006352496333420277, + 0.012841528281569481, + -0.0398971252143383, + 0.016211800277233124, + 0.0016060892958194017, + -0.004563162103295326, + 0.025740545243024826, + 0.0056949700228869915, + 0.022607414051890373, + -0.022046899423003197, + -0.010556354187428951, + -0.032394856214523315, + 0.019675491377711296, + 0.01412065140902996, + 0.05458547919988632, + 0.03541301190853119, + -0.026875946670770645, + -0.05383812636137009, + 0.011677383445203304, + -0.029664145782589912, + -0.004193078726530075, + 0.02086838148534298, + 0.007430408615618944, + 0.00966528058052063, + -0.033199697732925415, + 0.021975038573145866, + 0.030009077861905098, + -0.004706883803009987, + -0.00744478078559041, + -0.014630862511694431, + 0.021141452714800835, + 0.0175771564245224, + 0.01185703556984663, + 0.013013994321227074, + 0.01059947069734335, + -0.027867626398801804, + 0.026286687701940536, + 0.00039366254350170493, + -0.015478820540010929, + 0.03463691473007202, + -0.029807867482304573, + 0.0025187216233462095, + 0.0203940998762846, + -0.010024583898484707, + -0.0382874459028244, + -0.04662330076098442, + -0.05579274147748947, + -0.02006353996694088, + -0.0415930412709713, + -0.033487141132354736, + 0.03164750337600708, + -0.007437594700604677, + 0.011497731320559978, + -0.008673600852489471, + -0.011461800895631313, + 0.031992435455322266, + 0.008429273962974548, + 0.010750378482043743, + 0.03222239017486572, + 0.03526929020881653, + -0.003271463792771101, + -0.025409985333681107, + -0.010707261972129345, + -0.023397883400321007, + 0.0010419818572700024, + 0.02006353996694088, + -0.014185325242578983, + 0.07059606909751892, + -0.003104387316852808, + 0.039379727095365524, + -0.04768684133887291, + -0.04323146864771843, + -0.028385022655129433, + -0.021170197054743767, + 0.03958093747496605, + 0.024648260325193405, + -0.03492435812950134, + 0.06570953130722046, + -0.0383736789226532, + 0.027522694319486618, + -0.08456581085920334, + 0.0017066944856196642, + 0.001562074525281787, + -0.003729576477780938, + 0.006295007653534412, + -0.03377458453178406, + -0.022593041881918907, + 0.038718611001968384, + 0.00950000062584877, + 0.05303328484296799, + 0.014494326896965504, + -0.065479576587677, + -0.023139184340834618, + 0.009586233645677567, + 0.05360817164182663, + 0.024145234376192093, + 0.03929349407553673, + 0.035642966628074646, + -0.025683056563138962, + 0.008522693067789078, + 0.0079837366938591, + -0.016240544617176056, + 0.04992889612913132, + 0.031561270356178284, + -0.006320158950984478, + -0.01736157387495041, + 0.013351740315556526, + 0.04619213566184044, + 0.032394856214523315, + -0.01878441870212555, + -0.03463691473007202, + 0.005831505637615919, + 0.011749244295060635, + 0.015909984707832336, + -0.0003853536327369511, + 0.017519667744636536, + 0.018626324832439423, + 0.004121217876672745, + 0.0007585807470604777, + -0.0011704331263899803, + 0.0003051839303225279, + -0.015191377140581608, + -0.01593872904777527, + 0.04257034882903099, + -0.017074130475521088, + -0.06593948602676392, + 4.891307526122546e-6, + 0.02404462918639183, + -0.02072465978562832, + 0.016398638486862183, + -0.019431166350841522, + -0.03377458453178406, + -0.0004908991977572441, + 0.036160364747047424, + -0.04366263374686241, + 0.044381242245435715, + -0.003506808076053858, + -0.008141830563545227, + 0.010721634142100811, + -0.020739031955599785, + 0.05173978954553604, + -0.045186083763837814, + -0.0058135404251515865, + -0.004538010805845261, + 0.0015755484346300364, + -0.002080370672047138, + -0.022894857451319695, + 0.0069776857271790504, + -0.015320726670324802, + -0.036160364747047424, + -0.013150529935956001, + -0.008831694722175598, + -0.002385779283940792, + -0.018367625772953033, + -0.0741603672504425, + 0.02759455516934395, + -0.02470574900507927, + 0.03817246854305267, + -0.018583208322525024, + -0.002640885068103671, + 0.05176853388547897, + 0.010283282957971096, + 0.0307276863604784, + -0.011533661745488644, + -0.009320348501205444, + 0.03797125816345215, + 0.01688729226589203, + 0.008759833872318268, + -0.0031834342516958714, + 0.0032876324839890003, + 0.013057110831141472, + 0.02975037880241871, + -0.025769289582967758, + -0.017260968685150146, + -0.01034077163785696, + 0.016326777637004852, + -0.016614221036434174, + 0.041161876171827316, + 0.006521369330585003, + -0.015478820540010929, + 0.007998108863830566, + 0.033602118492126465, + 0.0014345216332003474, + -0.008896369487047195, + -0.018655069172382355, + 0.05199848860502243, + 0.030066566541790962, + -0.06777912378311157, + 0.006934569217264652, + 0.008572995662689209, + 0.007545385975390673, + -0.008357413113117218, + 0.012446293607354164, + -0.006273449398577213, + 0.03029652126133442, + -0.02364221028983593, + 0.01300680823624134, + -0.01514826063066721, + 0.04254160448908806, + 0.028413766995072365, + 0.04716944321990013, + 0.0008528981124982238, + -0.015507564879953861, + 0.010427004657685757, + -0.012568457052111626, + -0.02832753397524357, + -0.0020606089383363724, + -0.0007028886466287076, + 0.030354009941220284, + 0.01951739937067032, + -0.008307110518217087, + -0.0018198752077296376, + 0.0002762150252237916, + 0.009636536240577698, + 0.0191868394613266, + -0.007283093873411417, + -0.01772087812423706, + 0.012122919782996178, + -0.05309077352285385, + 0.011138427071273327, + 0.01703101396560669, + -0.015795007348060608, + 0.030497731640934944, + -0.01589561253786087, + 0.02167322300374508, + 0.042627837508916855, + -0.03452193737030029, + -0.009995839558541775, + -0.023541605100035667, + 0.008738275617361069, + -0.030900152400135994, + -0.02060968242585659, + 0.03245234489440918, + -0.0018935325788334012, + 0.05148109048604965, + -0.023211045190691948, + 0.027278367429971695, + 0.005626702215522528, + -0.02188880555331707, + 0.023038579151034355, + 0.030526475980877876, + -0.046422090381383896, + -0.008975416421890259, + -0.017074130475521088, + -0.0007195064681582153, + -0.013675114139914513, + -0.014379349537193775, + 0.01966111920773983, + -0.011562406085431576, + -0.03216490149497986, + 0.0035660930443555117, + -0.013962557539343834, + -0.056885022670030594, + 0.012000756338238716, + 0.03866112232208252, + -0.053665660321712494, + 0.043691378086805344, + -0.007940620183944702, + -0.040759455412626266, + -0.023555977270007133, + -0.03288350999355316, + 0.008637670427560806, + -0.03325718641281128, + -0.002303139306604862, + -0.02584115043282509, + -0.046795766800642014, + -0.04670953378081322, + -0.029692890122532845, + 0.01874130219221115, + -0.01138275396078825, + 0.0030433055944740772, + 0.016930408775806427, + 0.005741679575294256, + 0.011799546889960766, + -0.0054901666007936, + -0.00706032570451498, + -0.0006436034454964101, + 0.02631543204188347, + -0.02470574900507927, + -0.007146558258682489, + 0.0007985533447936177, + 0.025740545243024826, + 0.025007564574480057, + 0.006909417919814587, + 0.04274281486868858, + -0.006208774633705616, + 0.0052566188387572765, + 0.018971256911754608, + 0.01911497861146927, + -0.011540847830474377, + -0.014293116517364979, + -0.02802572026848793, + -0.014947050251066685, + -0.007976550608873367, + -0.03230862319469452, + 0.01841074228286743, + -0.011677383445203304, + -0.016571104526519775, + 0.012762481346726418, + 0.024820726364850998, + -0.001981562003493309, + -0.008874811232089996, + 0.0012234303867444396, + -0.030670197680592537, + 0.0006557299639098346, + -0.021141452714800835, + 0.022133132442831993, + 0.0026840015780180693, + -0.03653404116630554, + 0.036706507205963135, + 0.02013540081679821, + 0.006413578055799007, + 0.01488956157118082, + 0.03288350999355316, + 0.019416794180870056, + 0.028313161805272102, + -0.028456883504986763, + 0.0023264940828084946, + -0.022722391411662102, + -0.007602874655276537, + -0.021687595173716545, + -0.003513994161039591, + -0.03492435812950134, + 0.024102117866277695, + -0.014156580902636051, + 0.012748109176754951, + -0.01067133154720068, + -0.02591301128268242, + 0.03636157512664795, + -0.006956127472221851, + -0.022334342822432518, + -0.033314675092697144, + -0.005626702215522528, + 0.01900000125169754, + 0.03179122507572174, + -0.04038577899336815, + -0.008199319243431091, + -0.015924356877803802, + 0.041133131831884384, + -0.01977609656751156, + 0.019359305500984192, + -0.004566755145788193, + 0.004354765638709068, + 0.04797428101301193, + 0.07128593325614929, + 0.018252648413181305, + -0.006011157296597958, + 0.03731013834476471, + -0.027134645730257034, + -0.006528555415570736, + 0.031187595799565315, + 0.031187595799565315, + 0.02217624895274639, + 0.006255484186112881, + 0.019905446097254753, + 0.042771559208631516, + -0.020192889496684074, + 0.007365733850747347, + -0.011885779909789562, + -0.003672087797895074, + -0.032136157155036926, + 0.06076550856232643, + 0.0013123581884428859, + -0.018626324832439423, + -0.013021180406212807, + -0.011605522595345974, + -0.018037065863609314, + 0.0020390506833791733, + 0.013164902105927467, + 0.007096255663782358, + -0.02236308716237545, + 0.0033648828975856304, + -0.018899396061897278, + -0.018626324832439423, + -0.01859758049249649, + -0.03800000250339508, + -0.030785175040364265, + 0.0168154314160347, + 0.008666414767503738, + -0.02089712582528591, + -0.008687973022460938, + 0.02371407113969326, + -0.0486641451716423, + 0.0009782053530216217, + -0.0001439462066628039, + 0.007581316400319338, + -0.013653555884957314, + -0.0167723149061203, + 0.0075022694654762745, + -0.070136159658432, + -0.025956127792596817, + -0.02769516035914421, + 0.021357035264372826, + 0.011490545235574245, + 0.030382754281163216, + -0.028643721714615822, + 0.003508604597300291, + 0.0008466102881357074, + 0.009787443093955517, + 0.0024630294647067785, + -0.032394856214523315, + 0.0011632470414042473, + -0.042771559208631516, + 0.016714826226234436, + -0.0033325455151498318, + -0.020307866856455803, + 0.00431164912879467, + 0.010383888147771358, + 0.008594553917646408, + -0.025639940053224564, + -0.00940658152103424, + 0.004275718703866005, + 0.00933472067117691, + 0.015119516290724277, + -0.0011362992227077484, + -0.01443683821707964, + 0.015033283270895481, + -0.03262481093406677, + -0.008659228682518005, + -0.039925869554281235, + 0.034665659070014954, + -0.007868759334087372, + 0.023369139060378075, + 0.018037065863609314, + 0.00986649002879858, + -0.04297276958823204, + -0.0032481090165674686, + -0.030526475980877876, + -0.01831013709306717, + -0.01427155826240778, + 0.00975869968533516, + -0.019028745591640472, + -0.03141754865646362, + 0.008558623492717743, + 0.00964372232556343, + 0.011325265280902386, + -0.0010347957722842693, + 0.009155068546533585, + -0.03141754865646362, + 0.028370650485157967, + -0.044266264885663986, + 0.007473525125533342, + -0.024791982024908066, + 0.004954803269356489, + 0.0005470404867082834, + 0.021313918754458427, + -0.02174508385360241, + -0.012978063896298409, + 0.05162481218576431, + -0.018913768231868744, + 0.007459152955561876, + -0.016211800277233124, + -0.017677761614322662, + -0.018683813512325287, + -0.04245537146925926, + 0.00011003688268829137, + -0.0042864978313446045, + -0.027422089129686356, + 0.03498184680938721, + -0.01750529557466507, + -0.03110136277973652, + 0.01907186210155487, + 0.007926248013973236, + 0.030095310881733894, + 0.03147503733634949, + -0.012201966717839241, + 0.0015486006159335375, + 0.023814676329493523, + 0.026257943361997604, + 0.00721841910853982, + -0.06553706526756287, + 0.030928896740078926, + -0.0183819979429245, + 0.000914428906980902, + 0.002128876745700836, + 0.022334342822432518, + 0.0010419818572700024, + 0.006611195392906666, + -0.028959909453988075, + 0.022607414051890373, + -0.024720121175050735, + 0.01736157387495041, + -0.025079425424337387, + -0.006862708367407322, + -0.013373298570513725, + -0.009226929396390915, + 0.04837670177221298, + -0.012417549267411232, + -0.008285552263259888, + -0.0033325455151498318, + 0.006496218033134937, + -0.007351361680775881, + -0.017476551234722137, + 0.00909757986664772, + -0.01973298005759716, + 0.008422087877988815, + -0.011461800895631313, + 0.005633888300508261, + -0.004918872844427824, + 0.04645083472132683, + 0.04041452333331108, + -0.0029373110737651587, + 0.04581845924258232, + 0.012906203046441078, + -0.0017866395646706223, + 0.030871408060193062, + -0.008903555572032928, + -0.003776286030188203, + -0.029951589182019234, + -0.008206505328416824, + 0.04610590264201164, + -0.025424357503652573, + -0.00509852496907115, + -0.005059001501649618, + -0.010419818572700024, + -0.009226929396390915, + -0.013344554230570793, + -0.011734872125089169, + -0.004573941230773926, + 0.02667473629117012, + 0.01819515973329544, + 0.02759455516934395, + -0.013445159420371056, + 0.026186082512140274, + -0.000928801076952368, + 0.024648260325193405, + 0.025338124483823776, + 0.038344934582710266, + 0.018683813512325287, + 0.024605143815279007, + 0.013380484655499458, + 0.028198186308145523, + -0.005141641478985548, + 0.006147692911326885, + -0.016312405467033386, + 0.0263441763818264, + -0.007437594700604677, + 0.007315431255847216, + 0.014695537276566029, + 0.015105144120752811, + -0.01790771633386612, + -0.03003782220184803, + 0.03015279956161976, + 0.00643154326826334, + 0.011167171411216259, + -0.022377459332346916, + -0.0022546332329511642, + 0.004624243825674057, + 0.002716338960453868, + 0.009032905101776123, + 0.028988653793931007, + -0.01900000125169754, + 0.04119062051177025, + -0.017117246985435486, + 0.015263237990438938, + 0.03098638541996479, + -0.03572919964790344, + 0.0030954047106206417, + -0.0012018722482025623, + -0.0271921344101429, + 0.0009485628106631339, + -0.016542360186576843, + 0.006499811075627804, + -0.02426021173596382, + 0.0007100747316144407, + -0.009981467388570309, + 0.005626702215522528, + 0.022866113111376762, + -0.009183812886476517, + -0.0447261743247509, + 0.0026840015780180693, + 0.011648639105260372, + 0.027867626398801804, + 0.06662935018539429, + -0.02129954658448696, + 0.02371407113969326, + -0.005091338884085417, + 0.015205749310553074, + 0.04136308655142784, + 0.04015582427382469, + -0.009126324206590652, + 0.012108547613024712, + -0.0015054841060191393, + 0.029218608513474464, + 0.021716339513659477, + -0.019704235717654228, + -0.013459531590342522, + 0.01618305593729019, + 0.0015701588708907366, + 9.381205018144101e-5, + 0.013581695035099983, + -0.013308623805642128, + 0.02152950130403042, + -8.724352665012702e-5, + 0.03636157512664795, + -0.0015018910635262728, + 0.014731467701494694, + -0.001615071902051568, + 0.023369139060378075, + 0.01611119508743286, + 0.017562784254550934, + -0.021098336204886436, + -0.01262594573199749, + 0.0263872928917408, + -0.016053706407546997, + 0.000589258735999465, + -0.011116868816316128, + 0.011418684385716915, + -0.019359305500984192, + -0.005227874498814344, + -0.02579803392291069, + -0.03325718641281128, + -0.0015171614941209555, + 0.026574131101369858, + -0.02762329950928688, + -0.0006292312755249441, + 0.005587178748100996, + 0.01224508322775364, + -0.01944553852081299, + -0.036045387387275696, + -0.011533661745488644, + 0.018482603132724762, + -0.006604009307920933, + 0.03179122507572174, + 0.0007006429950706661, + 0.00117851747199893, + 0.008537065237760544, + -0.01845385879278183, + 0.011354009620845318, + -0.0037259834352880716, + -0.016642965376377106, + -0.029577912762761116, + -0.004670953378081322, + -0.033745840191841125, + 0.03759758174419403, + 0.00847957655787468, + -0.028586233034729958, + -0.014127837494015694, + -0.028600605204701424, + -0.03268229961395264, + 0.005062594544142485, + -0.006736951880156994, + -0.0123888049274683, + -1.4217775060387794e-5, + 0.016384266316890717, + 0.01634114980697632, + -0.014788956381380558, + 0.011346823535859585, + -0.0030504916794598103, + 0.05248714238405228, + -0.02934795804321766, + 0.01568002998828888, + -0.0015962084289640188, + -0.00933472067117691, + -0.0045164525508880615, + 0.018770046532154083, + 0.018583208322525024, + -0.0042793117463588715, + 0.0015953101683408022, + -0.00683396402746439, + 0.039178516715765, + -0.005518910940736532, + 0.002161214128136635, + -0.0027127459179610014, + -0.016614221036434174, + -0.016068078577518463, + 0.005389561410993338, + 0.01622617244720459, + 0.009780257940292358, + -0.012647503986954689, + 0.02444704994559288, + -0.014947050251066685, + 0.025352496653795242, + -0.022319970652461052, + 0.00886043906211853, + 0.0069920578971505165, + 0.026329804211854935, + 0.027350228279829025, + -0.025481846183538437, + 0.0007046851678751409, + 0.026645991951227188, + -0.01364636979997158, + 0.01933056116104126, + 0.013818835839629173, + -0.022348714992403984, + 0.028729954734444618, + 0.02766641601920128, + 0.0002798080677166581, + -0.04121936485171318, + 0.046019669622182846, + -0.028744326904416084, + 0.01450869906693697, + -0.01388351060450077, + -0.013861952349543571, + -0.009701211005449295, + -0.003451115917414427, + 0.014832072891294956, + 0.015737518668174744, + 0.03457942605018616, + 0.00533566577360034, + 0.027896370738744736, + 0.0255393348634243, + 0.01192889641970396, + 0.005116490181535482, + -0.01816641539335251, + -0.020164145156741142, + 0.015766263008117676, + -0.007574130315333605, + -0.04139183089137077, + 0.015838123857975006, + -0.02203252725303173, + -0.03868986666202545, + 0.03268229961395264, + -0.007954992353916168, + 0.024878215044736862, + -0.0069992439821362495, + 0.04846293479204178, + -0.030210288241505623, + 0.010333585552871227, + -0.015881240367889404, + 0.010714448057115078, + 0.0037547277752310038, + 0.004563162103295326, + 0.04958396404981613, + 0.012338502332568169, + -0.012834342196583748, + 0.00817057490348816, + -0.004419440403580666, + -0.03285476565361023, + 0.005921331699937582, + 0.03397579491138458, + -0.029189864173531532, + 0.0432027243077755, + 0.051538579165935516, + -0.009837745688855648, + 0.009830559603869915, + -0.011102496646344662, + -0.021285174414515495, + -0.03262481093406677, + 0.0014920103130862117, + -0.004440998658537865, + -0.006683056242763996, + -0.01826702058315277, + 0.014645234681665897, + -0.024950075894594193, + -0.006848336197435856, + 0.011411498300731182, + -0.010570726357400417, + 0.02586989477276802, + 0.02755143865942955, + 0.020983358845114708, + -0.0011740261688828468, + 0.02094024233520031, + 0.0320211797952652, + -0.0029786310624331236, + 0.0017399301286786795, + 0.025453101843595505, + 0.012209152802824974, + 0.002432488836348057, + 0.006629160605370998, + -0.01622617244720459, + 0.0023121219128370285, + -0.020365355536341667, + 0.020968986675143242, + -0.008608926087617874, + 0.036850228905677795, + -0.021572617813944817, + -0.004297276958823204, + -0.03851740062236786, + 0.022607414051890373, + -0.007437594700604677, + -0.03069894202053547, + 0.015996217727661133, + -0.019962934777140617, + -0.01333736814558506, + -0.014774584211409092, + -0.015852496027946472, + 0.00463142991065979, + -0.00682318489998579, + 0.06363993883132935, + 0.05843721702694893, + -0.01012518908828497, + 0.0023175114765763283, + -0.0025869894307106733, + -0.021931922063231468, + 0.00817057490348816, + -0.0045020803809165955, + 0.01928744465112686, + 0.024763237684965134, + 0.028456883504986763, + 0.009550303220748901, + 0.01871255785226822, + -0.031216340139508247, + 0.007473525125533342, + -0.019891073927283287, + -0.03256732225418091, + -0.011274962686002254, + 0.032797276973724365, + 0.0006229434511624277, + 0.011842663399875164, + 0.003368475940078497, + -0.029951589182019234, + 0.0015072806272655725, + 0.008026853203773499, + -0.006345310248434544, + 0.015004538930952549, + -0.014135022647678852, + -0.012036686763167381, + -0.03797125816345215, + -0.0016644762363284826, + -0.0009207167313434184, + -0.0006957025616429746, + 0.0033918307162821293, + -0.0016725605819374323, + -0.03446444869041443, + -0.006014750339090824, + -0.008091527968645096, + 0.004401475191116333, + -0.005939296912401915, + 0.004832640290260315, + 0.01823827624320984, + 0.020882753655314445, + 0.0033918307162821293, + -0.03742511570453644, + -0.012158850207924843, + 0.0050266641192138195, + -0.018094554543495178, + -0.021975038573145866, + -0.011727686040103436, + 0.019172467291355133, + -0.004656581208109856, + -0.015737518668174744, + -0.04035703465342522, + -0.017160363495349884, + 0.051912255585193634, + -0.03478063642978668, + 0.005978819914162159, + 0.01636989414691925, + 0.009787443093955517, + 0.015795007348060608, + 0.005888994317501783, + 0.005051815416663885, + -0.019862329587340355, + -0.027565810829401016, + 0.0415930412709713, + 0.009607791900634766, + 0.01064977329224348, + 0.00250255293212831, + -0.003632564330473542, + -0.012302571907639503, + 0.000840322463773191, + 0.023800304159522057, + 0.01925870031118393, + 0.015133888460695744, + 0.03501059114933014, + 0.010254538618028164, + 0.008069969713687897, + -0.023326022550463676, + 0.002204330638051033, + 0.0006898638675920665, + -0.002515128580853343, + -0.0001940242073033005, + -0.0077250381000339985, + -0.001624952768906951, + 0.008608926087617874, + 0.0027612519916146994, + -0.02181694470345974, + 0.018726930022239685, + -0.045732226222753525, + -0.0007001938647590578, + -0.021644478663802147, + -0.0055907717905938625, + 0.011770802550017834, + -0.01703101396560669, + -0.012640317901968956, + 0.005432677920907736, + 0.004211043938994408, + 0.04035703465342522, + -0.01568002998828888, + -0.01481770072132349, + -0.02079652063548565, + 0.01684417575597763, + 0.007703479845076799, + -0.004947617184370756, + 0.014106279239058495, + 0.01622617244720459, + 0.007365733850747347, + -0.027608927339315414, + 0.0071753025986254215, + 0.009370651096105576, + -0.018770046532154083, + 0.0045236386358737946, + 0.014350605197250843, + 0.004606278613209724, + -0.022061271592974663, + 0.02707715705037117, + -0.017965205013751984, + -0.005073373671621084, + -0.009873676113784313, + -0.013423601165413857, + -0.015018911100924015, + -0.0019348525675013661, + -0.019301816821098328, + -0.014185325242578983, + -0.03136005997657776, + -0.021644478663802147, + -0.010096444748342037, + -0.0008731089765205979, + -0.042915280908346176, + -0.004555976018309593, + 0.030066566541790962, + -0.029664145782589912, + -0.01721785217523575, + -0.003515790682286024, + -0.027652043849229813, + 0.0016501040663570166, + -0.008810136467218399, + 0.01064977329224348, + -0.01823827624320984, + 0.004462556913495064, + 0.00447692908346653, + -0.020839637145400047, + -0.010290469042956829, + 0.02532375231385231, + -0.0003352756320964545, + -0.0010312027297914028, + -0.007085476536303759, + 0.005278177093714476, + -0.011102496646344662, + -0.022391831502318382, + 0.0024576399009674788, + 0.01514826063066721, + -0.030871408060193062, + 0.03288350999355316, + 0.026588503271341324, + 0.031216340139508247, + -0.0077178520150482655, + -0.016973525285720825, + -0.013380484655499458, + 0.01881316304206848, + -0.028816187754273415, + -0.03492435812950134, + -0.003955937922000885, + -0.009830559603869915, + -0.0013545764377340674, + 0.015133888460695744, + -0.006758510135114193, + -0.008587367832660675, + 0.014947050251066685, + 0.012992436066269875, + 0.0271921344101429, + -0.031446292996406555, + 0.01310022734105587, + 0.010110816918313503, + -0.01419969741255045, + 0.011598336510360241, + 0.009629350155591965, + -0.005551248323172331, + 0.00580994738265872, + 0.018425114452838898, + 0.01603933423757553, + -0.014803328551352024, + -0.011512103490531445, + -0.025668684393167496, + 0.012417549267411232, + -0.018022693693637848, + -0.00010419818863738328, + -0.07956429570913315, + -0.028255674988031387, + -0.001483925967477262, + 0.009952723048627377, + 0.009550303220748901, + -0.010427004657685757, + 0.009694024920463562, + 0.023412255570292473, + -0.003923600539565086, + -0.012137291952967644, + 0.02214750461280346, + 0.00916944071650505, + 0.011188729666173458, + 0.02821255847811699, + -0.01185703556984663, + 0.009076021611690521, + -0.00950000062584877, + -0.003632564330473542, + 0.010304841212928295, + -0.003880484262481332, + -0.0032319403253495693, + 0.0183388814330101, + 0.03883358836174011, + -0.01522012148052454, + 0.002725321566686034, + 0.029836611822247505, + -0.005224281456321478, + -0.0030019856058061123, + -0.0032948185689747334, + -0.03380332887172699, + -0.0060866111889481544, + 0.018956884741783142, + -0.018626324832439423, + -0.019229955971240997, + -0.002010306343436241, + 0.009967095218598843, + -0.0009809001348912716, + -0.02743646129965782, + 0.040759455412626266, + 0.017620272934436798, + 0.011490545235574245, + -0.013035552576184273, + -0.0012126513756811619, + -0.0028546710964292288, + -0.01260438747704029, + -0.01721785217523575, + -0.001246785162948072, + -0.01390506885945797, + -0.0011839070357382298, + 0.019373677670955658, + 0.012776853516697884, + 0.0027199320029467344, + -0.018281392753124237, + -0.023814676329493523, + 0.001112944446504116, + -0.009040091186761856, + 0.02243494801223278, + -0.018540091812610626, + -0.0047392211854457855, + 0.009852117858827114, + 0.05291830748319626, + 0.011993570253252983, + 0.0015477023553103209, + -0.00761006074026227, + -0.011612708680331707, + 0.014285930432379246, + -0.005303328391164541, + 0.02137140743434429, + 0.03716641664505005, + -0.015909984707832336, + 0.013445159420371056, + -0.002364221028983593, + -0.03302723169326782, + 0.020264750346541405, + 0.021586989983916283, + 0.020451588556170464, + -0.0002128876803908497, + 0.017232224345207214, + -0.006510590203106403, + -0.00471406988799572, + -0.013984115794301033, + 0.011195915751159191, + 0.0038661120925098658, + -0.01793646067380905, + 0.00011278779857093468, + -0.002926531946286559, + 0.003228347282856703, + -0.01310022734105587, + 0.0002396109193796292, + 0.004099659621715546, + 0.028183814138174057, + 0.03328593075275421, + 0.024935703724622726, + 0.006517776288092136, + -0.02302420698106289, + 0.051538579165935516, + -0.010067700408399105, + 0.01302836649119854, + -0.016786687076091766, + -0.0037547277752310038, + 0.006043494679033756, + -0.010304841212928295, + 0.02129954658448696, + -0.017677761614322662, + -0.02561119571328163, + 0.005795575212687254, + -0.009219743311405182, + 0.008192133158445358, + -0.029175492003560066, + -0.027996975928544998, + -0.005784796085208654, + 0.01555068138986826, + -0.013128971680998802, + 0.010692889802157879, + -0.005745272617787123, + 0.0017911308677867055, + -0.022679274901747704, + -0.02850000001490116, + -0.014559001661837101, + 0.009090393781661987, + -0.0028816189151257277, + 0.04728442057967186, + 0.021975038573145866, + -0.03322844207286835, + -0.0005124574527144432, + 0.01262594573199749, + -0.0005039239767938852, + -0.002543872920796275, + 0.013969743624329567, + 0.03526929020881653, + -0.011224660091102123, + -0.0022636158391833305, + -0.017404690384864807, + 0.0012728347210213542, + -0.031704992055892944, + 0.005756051745265722, + 0.024806354194879532, + 0.006625567562878132, + 0.007487897295504808, + -0.026430409401655197, + 0.02506505325436592, + 0.006593230180442333, + -0.001469553797505796, + 0.011109682731330395, + -0.021500756964087486, + 0.004250567406415939, + -0.01575189083814621, + -0.008299924433231354, + -0.000597792211920023, + -0.00500510586425662, + -0.020839637145400047, + -0.0028402989264577627, + 0.0026642398443073034, + 0.03207866847515106, + -0.020077912136912346, + -0.031015129759907722, + -0.04719818755984306, + 0.006463880650699139, + -7.455560262314975e-5, + -0.023469744250178337, + -0.008946672081947327, + 0.0023103253915905952, + 0.0012180409394204617, + -0.0057991682551801205, + 0.020954614505171776, + 0.00916944071650505, + -0.009090393781661987, + 0.0033020046539604664, + 0.002247447147965431, + -0.011734872125089169, + 0.007595688570290804, + 0.017850227653980255, + -0.01185703556984663, + 0.001947428216226399, + -0.0018827534513548017, + 0.0026211233343929052, + -0.009018532931804657, + -0.004667360335588455, + 0.010024583898484707, + -0.0031349281780421734, + -0.009535931050777435, + 0.0046206507831811905, + 0.004264939576387405, + -0.004742814227938652, + 0.00423978827893734, + 0.013208018615841866, + 0.009147882461547852, + 0.020494705066084862, + 0.00952155888080597, + 0.01812329888343811, + 0.029692890122532845, + 0.017634645104408264, + -0.00044576163054443896, + -0.0109803332015872, + -0.004965582396835089, + -0.018583208322525024, + 0.025481846183538437, + 0.0494689866900444, + -0.018583208322525024, + -0.014774584211409092, + -0.018108926713466644, + -0.018755674362182617, + 0.016326777637004852, + 0.01271936483681202, + 0.0009166745585389435, + -0.019014373421669006, + -0.020049167796969414, + 0.0034924359060823917, + 0.0247344933450222, + -0.0018791604088619351, + 0.002660646801814437, + 0.0075166416354477406, + 0.017045386135578156, + -0.0017623866442590952, + -0.009076021611690521, + 0.018295764923095703, + 0.009981467388570309, + 0.0018863464938476682, + 0.013445159420371056, + -0.000847508548758924, + 0.03768381476402283, + -0.010254538618028164, + -0.003251702059060335, + -0.026617247611284256, + 0.008357413113117218, + 0.0203940998762846, + 0.02451891079545021, + -0.03986838087439537, + -0.013962557539343834, + 0.0013608642620965838, + 0.009988653473556042, + 0.01229538582265377, + -0.02152950130403042, + 0.0005120083224028349, + -0.007329803425818682, + -0.0026444781105965376, + 0.019014373421669006, + -0.011979198083281517, + 0.017404690384864807, + -0.015406959690153599, + -0.019531771540641785, + -0.026904691010713577, + -0.0051380484364926815, + 0.002349848859012127, + 0.018353253602981567, + 0.03653404116630554, + -0.03963842615485191, + -0.03018154390156269, + 0.00022041061311028898, + 0.03437821567058563, + 0.0017668778309598565, + -0.010786308906972408, + -0.018798790872097015, + 0.0034008133225142956, + -0.0071753025986254215, + 0.006945348344743252, + 0.015766263008117676, + 0.003569686086848378, + 0.017189107835292816, + -0.014300302602350712, + -0.007811271119862795, + -0.0007037869072519243, + 0.008874811232089996, + -0.029549168422818184, + 0.018942512571811676, + 0.009579047560691833, + -0.0016590866725891829, + -0.007645991165190935, + 0.01555068138986826, + -0.013473903760313988, + -0.0004940431099385023, + 0.010232980363070965, + -0.0065968232229352, + 0.0023175114765763283, + 0.004419440403580666, + 0.007954992353916168, + -0.011921710334718227, + 0.0028995841275900602, + 0.012209152802824974, + 0.015033283270895481, + -0.01710287481546402, + 0.004581127315759659, + -0.010771936737000942, + 0.0024432679638266563, + 0.00986649002879858, + 0.022118760272860527, + 0.007574130315333605, + 0.007038767449557781, + 0.030871408060193062, + -0.015205749310553074, + -0.008012481033802032, + 0.03227987885475159, + 0.02027912251651287, + -0.010865355841815472, + 0.013768533244729042, + -0.017965205013751984, + 0.01864069700241089, + 0.007394478190690279, + 0.009104765951633453, + -0.009176626801490784, + 0.009787443093955517, + 0.010606656782329082, + -0.013114599511027336, + -0.02112708054482937, + 0.0002892398042604327, + -0.000251063727773726, + 0.009226929396390915, + -0.0023875758051872253, + 0.003451115917414427, + -0.01662859320640564, + 0.011670197360217571, + -0.004469742998480797, + -0.007107034791260958, + -0.01326550729572773, + -0.009744327515363693, + 0.03800000250339508, + 0.04090317711234093, + -0.004139183089137077, + -0.01670045405626297, + -0.02207564376294613, + -2.5768840714590624e-5, + -0.01090847235172987, + 0.014803328551352024, + 0.008378971368074417, + -0.042225416749715805, + -0.021285174414515495, + 0.020307866856455803, + -0.002163010649383068, + 0.01001021172851324, + -0.00016325879551004618, + -0.00612254161387682, + 0.059040848165750504, + -0.003562500001862645, + 0.03029652126133442, + -0.01083661150187254, + 0.004829047247767448, + -0.015392587520182133, + -0.011095310561358929, + -0.02449016645550728, + -0.00016483075160067528, + 0.018971256911754608, + -0.009694024920463562, + -0.0061081694439053535, + 0.0007644194411113858, + 0.009291604161262512, + -0.0131936464458704, + 0.002800775459036231, + 0.0271490179002285, + 0.02046596072614193, + 0.00888199731707573, + 0.0020624054595828056, + 0.006255484186112881, + 0.013639183714985847, + 0.009564675390720367, + 0.009967095218598843, + 0.039006054401397705, + 0.009528744965791702, + 0.016944780945777893, + -0.01728971302509308, + -0.020695915445685387, + -0.007437594700604677, + 0.014063162729144096, + -0.005454236175864935, + 0.01450869906693697, + -0.0053608170710504055, + 0.004232602193951607, + 0.009349092841148376, + -0.017002269625663757, + 0.0002977732801809907, + -0.02551059052348137, + -0.0101970499381423, + -0.006068645976483822, + -0.034148260951042175, + 0.007451966870576143, + -0.003589447820559144, + -0.006273449398577213, + 0.0017920291284099221, + 0.010656959377229214, + 0.010003025643527508, + -0.008666414767503738, + -0.001333916443400085, + 0.010470121167600155, + -0.03271104395389557, + -0.004854198545217514, + -0.01790771633386612, + -0.0024845877196639776, + 0.0028744328301399946, + -0.0023462558165192604, + -0.002464825985953212, + -0.004329614341259003, + -0.020451588556170464, + -0.020552193745970726, + -0.0013590677408501506, + 0.011080938391387463, + -0.0007352260290645063, + 0.006054273806512356, + -0.020983358845114708, + 0.01823827624320984, + -0.021500756964087486, + -0.01359606720507145, + -0.02053782157599926, + 0.025668684393167496, + -0.005946482997387648, + 0.02894553728401661, + -0.030124055221676826, + 0.011088124476373196, + 0.005364410113543272, + 0.03322844207286835, + -0.003812216455116868, + -0.023038579151034355, + -0.01059947069734335, + 0.004965582396835089, + -0.005946482997387648, + -0.002177382819354534, + 0.006341717205941677, + -0.009902420453727245, + 0.005511724855750799, + 0.03811497986316681, + -0.006003971211612225, + 0.005935703869909048, + -0.019790468737483025, + -0.0087885782122612, + -0.01412065140902996, + -0.022118760272860527, + -0.015248865820467472, + 0.012173222377896309, + -0.007674735505133867, + -0.006460287608206272, + 0.008537065237760544, + -0.005795575212687254, + 0.011195915751159191, + 0.015795007348060608, + -0.018439486622810364, + 0.005734493490308523, + 0.03647655248641968, + -0.03113010711967945, + 0.02265053056180477, + -0.026832830160856247, + 0.015766263008117676, + -0.02930484153330326, + -0.012403177097439766, + -0.021788200363516808, + -0.0018935325788334012, + -0.035096824169158936, + -0.03110136277973652, + 0.0062051815912127495, + 0.017045386135578156, + -0.02875869907438755, + 0.009859303943812847, + 0.007222012151032686, + 8.146097388816997e-5, + -0.043835099786520004, + 0.004458963871002197, + 0.003783472115173936, + 0.003300208132714033, + 0.008321482688188553, + 0.0007060325588099658, + -0.011504917405545712, + -0.035757943987846375, + 0.014472768642008305, + 0.008134644478559494, + 0.0023264940828084946, + -0.011936082504689693, + 0.007883131504058838, + -0.005608737003058195, + 0.016671709716320038, + 0.03621785342693329, + -0.0058207265101373196, + -0.02042284421622753, + -0.034406960010528564, + 0.017117246985435486, + -0.025266263633966446, + -0.00979462917894125, + -0.010757564567029476, + -0.0008569402853026986, + -0.020293494686484337, + 0.002800775459036231, + -0.004735628142952919, + -0.0008524489821866155, + -0.02707715705037117, + -0.01907186210155487, + -0.008544251322746277, + -0.0017498109955340624, + 0.01695915311574936, + 0.021658850833773613, + -0.010771936737000942, + 0.00018234683375339955, + -0.011066566221415997, + 0.0034008133225142956, + 0.019819213077425957, + -0.022866113111376762, + 0.015191377140581608, + -0.021615734323859215, + 0.011648639105260372, + 0.009729955345392227, + -0.02086838148534298, + 0.0035660930443555117, + -0.002427099272608757, + 0.016686081886291504, + 0.013179274275898933, + 0.0077394102700054646, + -0.025697428733110428, + -0.012180408462882042, + 0.014774584211409092, + 0.0110018914565444, + -0.021400151774287224, + 0.004455370828509331, + 0.005023071076720953, + -0.0030504916794598103, + -0.006974092684686184, + -0.0004675444506574422, + -0.0005501843988895416, + -0.016743570566177368, + 0.006295007653534412, + -0.009162254631519318, + -0.004060136154294014, + 0.0010680314153432846, + 0.0030181542970240116, + -0.012755295261740685, + -0.003887670347467065, + -0.01999167911708355, + -0.015018911100924015, + -0.0021953480318188667, + -0.00942813977599144, + 0.02042284421622753, + -0.000994374044239521, + -0.0032552951015532017, + -0.01269780658185482, + -0.0123672466725111, + -0.004358358681201935, + 0.018367625772953033, + 0.013459531590342522, + 0.0011183340102434158, + 0.006621974520385265, + 0.013366112485527992, + -0.0023318836465477943, + 0.00888199731707573, + 0.007189674768596888, + -0.02068154327571392, + 0.007024395279586315, + -0.005206316243857145, + -0.005497352685779333, + -0.01790771633386612, + 0.001445300760678947, + 0.000848855939693749, + 0.08330105990171432, + 0.015809379518032074, + -6.635897443629801e-5, + 0.0005560230929404497, + -0.0036631051916629076, + -0.02364221028983593, + -0.008975416421890259, + 0.010915658436715603, + 0.0153638431802392, + 0.0032319403253495693, + -0.008996974676847458, + -0.027091529220342636, + 0.01793646067380905, + 0.028773071244359016, + -0.015004538930952549, + 0.013926627114415169, + 0.011361195705831051, + 0.025524962693452835, + -0.011936082504689693, + 0.017620272934436798, + 0.00463142991065979, + -0.008637670427560806, + 0.0006557299639098346, + 0.014774584211409092, + -0.010024583898484707, + 0.011411498300731182, + 0.004685325548052788, + -0.0016429179813712835, + 0.0017318457830697298, + 0.03420574963092804, + -0.0004316140548326075, + -0.01012518908828497, + -0.002170196734368801, + -0.021644478663802147, + 0.01043419074267149, + 0.0022276854142546654, + -0.010276096872985363, + 0.00540752662345767, + -4.530600199359469e-5, + 0.002701966790482402, + -0.011030635796487331, + 0.002529500750824809, + 0.0037942512426525354, + 0.025639940053224564, + -0.00040983123471960425, + -0.0026498676743358374, + -0.0058135404251515865, + -0.003513994161039591, + 0.005429084878414869, + 0.008069969713687897, + -0.00995990913361311, + -0.008113086223602295, + 0.008199319243431091, + -0.0006153082358650863, + -0.01147617306560278, + 0.004067322239279747, + -0.000444414239609614, + -0.009399395436048508, + -0.004602685570716858, + -0.007789712864905596, + -0.014472768642008305, + 0.009298790246248245, + -0.018827535212039948, + -0.016944780945777893, + -0.009564675390720367, + -0.004854198545217514, + -0.026214826852083206, + -0.01200794242322445, + 0.0029624623712152243, + 0.002364221028983593, + -0.005554841365665197, + 0.02451891079545021, + 0.014832072891294956, + -0.04326021298766136, + 0.014479954726994038, + 0.0005385070107877254, + -0.008968230336904526, + 0.029218608513474464, + 0.008867625147104263, + 0.011246218346059322, + -0.0029714449774473906, + 0.009952723048627377, + -0.006381240673363209, + -0.02243494801223278, + 0.0006418069242499769, + -0.003632564330473542, + 0.028270045295357704, + -0.01373978890478611, + 0.010484493337571621, + -0.01816641539335251, + -0.010484493337571621, + -0.012985249981284142, + -0.024202723056077957, + 0.006248298101127148, + 0.0033109872601926327, + -0.007153744343668222, + -0.02565431222319603, + -0.009047277271747589, + -0.002890601521357894, + 0.021615734323859215, + 0.0057991682551801205, + -0.0028402989264577627, + -0.006384833715856075, + -0.002459436422213912, + -0.004297276958823204, + 0.0016653744969516993, + 0.0051308623515069485, + 0.01980484090745449, + -0.029520424082875252, + 0.001891736057586968, + -0.010419818572700024, + -0.016901664435863495, + 0.01112405490130186, + 0.00048775531467981637, + -0.03219364583492279, + 0.009607791900634766, + 0.023929651826620102, + 0.01333736814558506, + -0.015866868197917938, + -0.02240620367228985, + -0.00919099897146225, + 0.007566944230347872, + -0.0003152893332298845, + -0.002856467617675662, + 0.011404312215745449, + 0.020034795626997948, + -0.003048695158213377, + -0.0029067702125757933, + -0.009054463356733322, + 0.011080938391387463, + -0.01010363083332777, + 0.009104765951633453, + 0.015018911100924015, + 0.021242057904601097, + 0.008795764297246933, + -0.0051380484364926815, + -0.0036900530103594065, + -0.0008133746450766921, + 0.016714826226234436, + -0.03296974301338196, + -0.0006925586494617164, + 0.003826588625088334, + 0.0014893155312165618, + 0.021572617813944817, + 0.01790771633386612, + 0.04055824503302574, + -0.007243570405989885, + -0.017131619155406952, + -0.019962934777140617, + 0.01185703556984663, + -0.0034062028862535954, + -0.021644478663802147, + 0.022751135751605034, + -0.009729955345392227, + 0.02229122631251812, + 0.01641301065683365, + -0.009909606538712978, + 0.01772087812423706, + -0.012230711057782173, + -0.0021504350006580353, + -0.0026911876630038023, + 0.009083207696676254, + -0.013955371454358101, + -0.012690620496869087, + -0.017807111144065857, + -0.0023246975615620613, + 0.02641603723168373, + 0.016096822917461395, + 0.024504538625478745, + -0.027134645730257034, + -0.016542360186576843, + 0.01966111920773983, + -0.0030325264669954777, + -0.04144931957125664, + 0.015320726670324802, + 0.011842663399875164, + 0.004480522125959396, + 0.0035912443418055773, + -0.030756430700421333, + 0.018065810203552246, + -0.007523827720433474, + -0.024001512676477432, + 0.005960855167359114, + -0.009413767606019974, + 0.013301437720656395, + -0.021687595173716545, + -0.0020408472046256065, + -0.016398638486862183, + 0.004721255972981453, + -0.00964372232556343, + -0.0004675444506574422, + 0.027853254228830338, + -0.011045007966458797, + -0.001968986354768276, + -0.0057021561078727245, + -0.0012387008173391223, + 0.004699697718024254, + 0.01925870031118393, + -0.017232224345207214, + -0.013940999284386635, + 0.007178895641118288, + -0.007401664275676012, + 0.008343040943145752, + -0.0031079803593456745, + 0.006560892798006535, + 0.0011677383445203304, + 0.002441471442580223, + -0.007667549420148134, + -0.004049357026815414, + -0.00942813977599144, + -0.04780181869864464, + -0.026171710342168808, + 0.016326777637004852, + -0.007926248013973236, + -0.013524206355214119, + -0.008867625147104263, + 0.010110816918313503, + 0.012669062241911888, + 0.019689863547682762, + -0.0013923033839091659, + 0.02053782157599926, + -0.0048434194177389145, + 0.026214826852083206, + -0.02747957780957222, + -0.007178895641118288, + 0.010621028952300549, + 0.014573373831808567, + -0.005533283110707998, + 0.013826021924614906, + 0.0008358311606571078, + 0.03176248073577881, + -0.011806732974946499, + 0.002003120258450508, + 0.015493192709982395, + 0.011023449711501598, + 0.03411951661109924, + 0.011411498300731182, + 0.012475037947297096, + 0.01721785217523575, + -0.010448562912642956, + 0.0006337225786410272, + 0.011936082504689693, + -0.02027912251651287, + -0.006798033602535725, + 0.014544629491865635, + 0.012216338887810707, + 0.009988653473556042, + -0.005641074385493994, + 0.0008228063816204667, + -2.8084667064831592e-5, + -0.004315242171287537, + -0.023670954629778862, + -0.006018343381583691, + 0.029836611822247505, + 0.011174357496201992, + 0.0012907999334856868, + 0.005364410113543272, + 0.01582375168800354, + -0.00011531415657373145, + -0.018482603132724762, + -0.0014758416218683124, + 0.01940242201089859, + -0.01831013709306717, + -0.018065810203552246, + -0.010606656782329082, + 0.0123672466725111, + -0.01450869906693697, + 0.010520423762500286, + 0.002578006824478507, + 0.0005205417983233929, + 0.010383888147771358, + 0.008673600852489471, + 0.020566565915942192, + 0.019416794180870056, + -0.0028654502239078283, + 0.0007343277684412897, + 0.002842095447704196, + -0.004473336040973663, + 0.0028115545865148306, + -0.0011506713926792145, + 0.007552572060376406, + 0.0048577915877103806, + 0.015320726670324802, + -0.01907186210155487, + 0.008177760988473892, + -0.026502270251512527, + -0.003948751837015152, + 0.015105144120752811, + -0.006413578055799007, + 0.0014803329249843955, + 0.01123903226107359, + -0.013775719329714775, + 0.012475037947297096, + -0.002414523623883724, + -0.010850983671844006, + -0.0026157337706536055, + 0.004340393468737602, + 0.014451210387051105, + 0.023800304159522057, + -0.002779217204079032, + -0.00446614995598793, + -0.0005052713677287102, + -0.003912821412086487, + -0.023584721609950066, + 0.011174357496201992, + -0.0005995887331664562, + 0.013782905414700508, + 0.0024917738046497107, + -0.007437594700604677, + 0.011727686040103436, + -0.0038589260075241327, + -0.0013015790609642863, + 0.002315714955329895, + -0.013416415080428123, + -0.01448714081197977, + -0.024389561265707016, + -0.0015261441003531218, + 0.015521937049925327, + -0.005432677920907736, + -0.008307110518217087, + -0.021256430074572563, + 0.012992436066269875, + 0.000994374044239521, + 0.010829425416886806, + 0.0005959956906735897, + 0.0015710571315139532, + 0.0013788294745609164, + 0.013524206355214119, + 0.01003176998347044, + -0.03774130344390869, + 0.02312481217086315, + -0.020092284306883812, + -0.01326550729572773, + -0.01295650564134121, + 0.006453101523220539, + 0.02788199856877327, + -0.00753819989040494, + -0.008853252977132797, + -0.013790091499686241, + 0.003124149050563574, + -0.027465205639600754, + -0.010613842867314816, + -0.006065052933990955, + -0.0034062028862535954, + -9.224010136676952e-5, + 0.02302420698106289, + 0.010153933428227901, + 0.0011048601008951664, + 0.02020726166665554, + 0.0211989413946867, + 0.011224660091102123, + 0.002017492428421974, + 0.004681732505559921, + 0.008400529623031616, + -0.01467397902160883, + -0.0077394102700054646, + 0.012784039601683617, + 0.008206505328416824, + -0.030871408060193062, + -0.006305786781013012, + -0.019344933331012726, + 0.0033936272375285625, + -0.015608170069754124, + 0.01293494738638401, + 0.010850983671844006, + -0.0019635967910289764, + 0.0004787727084476501, + 0.020911497995257378, + -0.020336611196398735, + -0.0024181166663765907, + -0.018180787563323975, + -0.024274583905935287, + -0.009809001348912716, + -0.0159674733877182, + 0.0023408662527799606, + 0.009061649441719055, + 0.005953669082373381, + 0.0036289712879806757, + -0.02105521969497204, + -0.008256807923316956, + 0.02584115043282509, + 0.014185325242578983, + 0.003291225526481867, + -0.003251702059060335, + 0.014285930432379246, + 0.029577912762761116, + 0.0307276863604784, + 0.028385022655129433, + 0.0032067890278995037, + -0.019201211631298065, + -0.019819213077425957, + -0.007013616152107716, + 0.007459152955561876, + 0.006021936424076557, + 0.00822087749838829, + -0.0008052902994677424, + -0.020365355536341667, + 0.018827535212039948, + 0.0002187263744417578, + 0.005928517784923315, + 0.002542076399549842, + 0.018942512571811676, + 0.013466717675328255, + 0.018956884741783142, + 0.0014569781487807631, + -0.03150378167629242, + 0.0001328302314504981, + 0.008616112172603607, + 0.0025887859519571066, + -0.021213313564658165, + 0.009255673736333847, + 0.013013994321227074, + -0.011224660091102123, + 0.011605522595345974, + 0.003278649877756834, + -0.004419440403580666, + 0.013402042910456657, + -0.011418684385716915, + 0.008594553917646408, + -0.008759833872318268, + 0.013890696689486504, + -0.005540469195693731, + -0.010060514323413372, + 0.011842663399875164, + 0.0020749811083078384, + -0.007480711210519075, + 0.013797277584671974, + 0.0030253403820097446, + -0.006215960718691349, + 0.01589561253786087, + 0.005691376980394125, + -0.018899396061897278, + -0.00013013544958084822, + 0.015105144120752811, + -0.010218608193099499, + -0.021040847525000572, + 0.02949167974293232, + -0.015090771950781345, + 0.01797957718372345, + 0.021946294233202934, + -0.011397126130759716, + -0.001871974323876202, + 0.008350227028131485, + 0.01695915311574936, + 0.00540752662345767, + 0.00950000062584877, + -0.0024540468584746122, + 0.01481770072132349, + -0.00729027995839715, + -0.03340090811252594, + -0.010858169756829739, + 0.015795007348060608, + -0.0020624054595828056, + -0.002861857181414962, + -0.03288350999355316, + -0.0123672466725111, + -0.003208585549145937, + 0.013531392440199852, + 0.020164145156741142, + -0.024547655135393143, + -0.002419913187623024, + -0.0014982980210334063, + -0.012094175443053246, + 0.006251891143620014, + -0.0029714449774473906, + -0.0019456316949799657, + 0.015579425729811192, + 0.01555068138986826, + 0.006517776288092136, + -0.0034277611412107944, + -0.014099093154072762, + 0.00431164912879467, + 0.011009077541530132, + -0.005105711054056883, + 0.0014408094575628638, + 0.008414901793003082, + -0.0057021561078727245, + 0.002136062830686569, + 0.004149962216615677, + -0.00651418324559927, + -0.024346444755792618, + 0.0030936081893742085, + 0.0007621737895533442, + 0.0056877839379012585, + 0.02814069762825966, + -0.026631619781255722, + -0.0038984494749456644, + 0.0007397173321805894, + 0.004034984856843948, + -0.0036056165117770433, + -0.002472012070938945, + 0.004645802080631256, + -0.008702345192432404, + -0.011684569530189037, + 0.015191377140581608, + -0.017404690384864807, + -0.00195461418479681, + 0.03340090811252594, + 0.012661876156926155, + -0.009679652750492096, + -0.001403980772010982, + -0.006568078882992268, + 0.012805597856640816, + 0.011655825190246105, + 0.009349092841148376, + 0.0031277420930564404, + 0.004178706556558609, + 0.015205749310553074, + 0.01246066577732563, + 0.01213010586798191, + -0.0018315525958314538, + -0.001445300760678947, + 0.009370651096105576, + 0.012496596202254295, + -0.013093041256070137, + 0.01864069700241089, + -0.0002452250337228179, + -0.004692511633038521, + 0.031158851459622383, + -0.0036702912766486406, + 0.0024378784000873566, + -0.012015128508210182, + -0.016858547925949097, + -0.009061649441719055, + -0.0008210098603740335, + 0.004997919779270887, + 0.014932678081095219, + 0.022751135751605034, + 0.02068154327571392, + 0.0007572333561256528, + -0.01067133154720068, + 8.645754860481247e-5, + -0.011368381790816784, + 7.113098399713635e-5, + 0.008781392127275467, + 0.017016641795635223, + 0.007326210383325815, + -0.005777610000222921, + 0.03877609968185425, + -0.012805597856640816, + 0.005957262124866247, + -0.0002254633145639673, + 0.027752649039030075, + -0.005288956221193075, + -0.0056877839379012585, + -0.02696217969059944, + -0.0005115591920912266, + -0.007164523471146822, + 0.009550303220748901, + 0.01371823064982891, + -0.000388048414606601, + 0.003179841209203005, + 0.014185325242578983, + 0.003761913860216737, + 0.020595310255885124, + -0.001607885817065835, + 0.003160079475492239, + -0.006068645976483822, + -0.011648639105260372, + 0.012446293607354164, + -0.01925870031118393, + -0.02203252725303173, + 0.015090771950781345, + 0.015780635178089142, + 0.004013426601886749, + -0.001670764060690999, + 0.011655825190246105, + 0.00952155888080597, + -0.0008627789793536067, + 0.015536309219896793, + -0.009852117858827114, + -0.0015791414771229029, + 0.011066566221415997, + 0.0014758416218683124, + -0.013775719329714775, + -0.00030653129215352237, + -0.0006328243180178106, + 0.004433812573552132, + 0.006542927585542202, + 0.0018899395363405347, + 0.0028995841275900602, + -0.007017209194600582, + -0.011799546889960766, + -0.018511347472667694, + -0.010132375173270702, + 0.004534417763352394, + -0.0064279502257704735, + 0.013208018615841866, + -0.002405541017651558, + -0.01731845736503601, + 0.01911497861146927, + -0.01350264810025692, + -0.01417813915759325, + -0.005863843020051718, + -0.0016914240550249815, + -0.017534039914608, + -0.006460287608206272, + 0.0033325455151498318, + -0.01152647566050291, + -0.019962934777140617, + -0.009111952036619186, + -0.009162254631519318, + -0.007624432910233736, + 0.0014300303300842643, + -0.012065431103110313, + 0.004171520471572876, + 0.009995839558541775, + 0.008874811232089996, + 0.005935703869909048, + -0.01739031821489334, + -0.01205824501812458, + -3.949537858716212e-5, + 0.008874811232089996, + -0.0027953858952969313, + -0.003912821412086487, + -0.024748865514993668, + 0.016168683767318726, + -0.013402042910456657, + 0.013423601165413857, + -0.014185325242578983, + -0.01622617244720459, + -0.003041509073227644, + -0.008321482688188553, + -0.005048222374171019, + 0.01300680823624134, + -0.0054793874733150005, + 0.0012413955992087722, + 0.007110627833753824, + 0.018295764923095703, + -0.022736763581633568, + 0.00012699153739959002, + 0.0005856656935065985, + 0.0059321108274161816, + -0.013157716020941734, + 0.018913768231868744, + 0.002161214128136635, + -0.03219364583492279, + 0.01568002998828888, + -0.0037726929876953363, + -0.019819213077425957, + 0.013308623805642128, + -0.009852117858827114, + -0.002752269385382533, + -0.008903555572032928, + 0.01644175499677658, + 0.003077439498156309, + 0.003363086376339197, + 0.0007621737895533442, + -0.007653177250176668, + -0.00014944805298000574, + -0.02174508385360241, + 0.01381164975464344, + -0.009370651096105576, + 0.009399395436048508, + -0.0006458490970544517, + -0.0030163577757775784, + -0.003977496176958084, + -0.03285476565361023, + 0.021285174414515495, + -0.0009916792623698711, + -0.008141830563545227, + -0.01611119508743286, + 0.013459531590342522, + 0.0031205560080707073, + -0.0007451068959198892, + -0.02769516035914421, + 0.015579425729811192, + -0.000517847016453743, + -0.005914145614951849, + -0.031704992055892944, + 0.0037798790726810694, + -0.0033666794188320637, + -0.02385779283940792, + 0.020580938085913658, + -0.0027828102465718985, + -0.012489410117268562, + -0.010484493337571621, + -0.008925113826990128, + 0.012431921437382698, + -0.02305295132100582, + 0.0016492058057338, + -0.003305597696453333, + 0.00864485651254654, + 0.0023732036352157593, + -1.2449325367924757e-5, + 0.01036232989281416, + 0.007067511323839426, + -0.006661497987806797, + -0.0019420386524870992, + -0.009420953691005707, + -0.022463692352175713, + -0.019560515880584717, + -0.0010150340385735035, + -0.02177382819354534, + 0.02601361647248268, + -0.0009710193262435496, + -0.009586233645677567, + -0.025424357503652573, + -0.005364410113543272, + -0.002897787606343627, + -0.015909984707832336, + -0.0003411143261473626, + 0.0051380484364926815, + -0.031043874099850655, + 0.01925870031118393, + -0.009219743311405182, + 0.016168683767318726, + 0.00422900915145874, + 0.002703763311728835, + 0.0062195537611842155, + 0.00580994738265872, + 0.011591150425374508, + -0.007204046938568354, + -0.0028025719802826643, + -0.017002269625663757, + -0.029606657102704048, + 0.008910741657018661, + -0.0026354955043643713, + -0.020006051287055016, + 0.029951589182019234, + -0.0016770518850535154, + 0.004958396311849356, + 0.0007626229198649526, + 0.007631618995219469, + 0.0036145991180092096, + -0.00044531250023283064, + 0.011936082504689693, + 0.021443268284201622, + -0.009809001348912716, + 0.011972011998295784, + 0.014063162729144096, + -0.011677383445203304, + -0.010261724703013897, + 0.007645991165190935, + -0.003887670347467065, + -0.01083661150187254, + -0.0026372920256108046, + 0.011972011998295784, + 0.0011830087751150131, + 0.018511347472667694, + -0.02247806452214718, + -0.023987140506505966, + -0.02089712582528591, + 0.006618381477892399, + 0.013236762955784798, + -0.012209152802824974, + -0.011045007966458797, + -0.0016285458113998175, + -0.01728971302509308, + -0.010297655127942562, + -0.00023781439813319594, + -0.025826778262853622, + 0.011900152079761028, + -0.01705975830554962, + 0.011964825913310051, + -0.0003157384635414928, + 0.02053782157599926, + -0.0028474850114434958, + 0.002869043266400695, + 0.0004264490562491119, + 0.010613842867314816, + 0.0051236762665212154, + -0.007451966870576143, + 0.012992436066269875, + -0.008838880807161331, + 0.007315431255847216, + 0.0006238417117856443, + -0.004433812573552132, + 0.0034906393848359585, + 0.0034708776511251926, + 0.005960855167359114, + -0.01944553852081299, + -0.002931921510025859, + -0.02309606783092022, + -0.0075166416354477406, + -0.02089712582528591, + 0.011339637450873852, + 0.011806732974946499, + -0.016068078577518463, + 0.024619515985250473, + -0.0015486006159335375, + 0.002315714955329895, + -0.02769516035914421, + -0.011231846176087856, + -0.026142966002225876, + 0.011095310561358929, + 0.0117851747199893, + 0.009420953691005707, + 0.015579425729811192, + 0.01644175499677658, + 0.014803328551352024, + 0.0051380484364926815, + -0.01786459982395172, + -0.006291414611041546, + 0.02937670238316059, + 0.0006575264851562679, + 0.017160363495349884, + -0.008400529623031616, + -0.01736157387495041, + -0.004872163757681847, + 0.0035876512993127108, + 0.00862329825758934, + -0.017562784254550934, + -0.007365733850747347, + -0.0050338502041995525, + 0.029333585873246193, + -0.018942512571811676, + 0.013387670740485191, + -0.0016159701626747847, + -0.002112708054482937, + 0.012618759647011757, + -0.00508774584159255, + -0.011203101836144924, + -0.007990922778844833, + 0.00737291993573308, + -0.011835477314889431, + 0.01229538582265377, + 0.007394478190690279, + 0.0026588502805680037, + 0.016829803586006165, + -0.0005605143960565329, + -0.006129727698862553, + 0.005091338884085417, + 0.009054463356733322, + -0.029549168422818184, + 0.004361951723694801, + 0.0024756051134318113, + -0.022319970652461052, + 8.666807843837887e-6, + -0.018396370112895966, + -0.007962178438901901, + -0.005141641478985548, + 0.0011138427071273327, + 0.007459152955561876, + -0.001850416068919003, + -0.025093797594308853, + -0.011756430380046368, + -0.008752647787332535, + 0.00761006074026227, + 0.007696293760091066, + 0.006923790089786053, + -0.021802572533488274, + 0.02155824564397335, + 0.005091338884085417, + -0.015866868197917938, + -0.005310514476150274, + -0.01131089311093092, + 0.0026103442069143057, + -0.015263237990438938, + -0.012424735352396965, + -0.0031618759967386723, + 0.021759456023573875, + -0.0037187973503023386, + 0.0036074130330234766, + -0.02857186086475849, + 0.002017492428421974, + -0.003172655124217272, + -0.0048434194177389145, + 0.008587367832660675, + -0.03328593075275421, + -0.012812783941626549, + 0.0064207641407847404, + -0.012201966717839241, + 0.012043872848153114, + 0.009255673736333847, + -0.01966111920773983, + -0.010319213382899761, + 0.002718135481700301, + 0.01088691409677267, + -0.007710665930062532, + -0.012201966717839241, + 0.01076475065201521, + -0.008810136467218399, + 0.00973714143037796, + -0.0017614883836358786, + 0.020882753655314445, + 0.0077178520150482655, + 0.0023534419015049934, + 0.01128933485597372, + 0.01892814040184021, + -0.006215960718691349, + 0.007617246825248003, + 0.0005133557133376598, + -0.015162632800638676, + -0.02572617307305336, + -0.01980484090745449, + 0.021385779604315758, + -0.021400151774287224, + 0.011497731320559978, + 0.028931165114045143, + 0.028859304264187813, + -0.005953669082373381, + 0.022334342822432518, + 0.006162065081298351, + -0.014020046219229698, + -0.003068456891924143, + 0.012345688417553902, + -0.0030576777644455433, + 0.007354954723268747, + -0.00454878993332386, + 0.00831429660320282, + 0.001947428216226399, + -0.00486857071518898, + -0.014659606851637363, + -1.8891536456067115e-5, + 0.013136157765984535, + -0.03722390532493591, + -0.0040637291967868805, + -0.0047320351004600525, + 0.0037116112653166056, + -0.0030810325406491756, + 0.002383982762694359, + 0.00493324501439929, + 0.001084200106561184, + 0.0005308717954903841, + 0.0021594176068902016, + -0.0012009739875793457, + -0.02240620367228985, + -0.015004538930952549, + -0.040730711072683334, + -0.019675491377711296, + 0.01269780658185482, + -0.0035517208743840456, + 0.007480711210519075, + -0.012733737006783485, + -0.01823827624320984, + -0.011627080850303173, + -0.008544251322746277, + -0.010347957722842693, + -0.008838880807161331, + 0.00611176248639822, + 0.005357224028557539, + 0.0054650153033435345, + 0.0028510780539363623, + -0.00470329076051712, + -0.02072465978562832, + -0.0029768345411866903, + -0.017189107835292816, + 0.004742814227938652, + 0.007631618995219469, + 0.017620272934436798, + -0.001025813166052103, + 0.005443457048386335, + -0.0003611006250139326, + -0.0052350605838000774, + -0.0028546710964292288, + 0.00895385816693306, + -0.018439486622810364, + -0.003790658200159669, + 0.017620272934436798, + -0.001188398338854313, + 0.0009377836831845343, + 0.013150529935956001, + -0.0017282527405768633, + 0.0007123203831724823, + 0.006927383132278919, + 0.0027199320029467344, + -0.0077322241850197315, + -0.01966111920773983, + 2.2105623429524712e-5, + 0.004099659621715546, + -0.023182300850749016, + 0.03558547794818878, + -0.020221633836627007, + 0.003104387316852808, + -0.005400340538471937, + 0.011921710334718227, + -0.012489410117268562, + -0.023929651826620102, + 0.0077250381000339985, + 0.002861857181414962, + 0.0010033566504716873, + -0.011885779909789562, + 0.025625567883253098, + 0.01041263248771429, + 0.022018155083060265, + -0.007092662621289492, + 0.014537443406879902, + -0.00024208113609347492, + 0.01717473566532135, + -0.023670954629778862, + -0.012467851862311363, + 0.0027271180879324675, + -0.008522693067789078, + -0.0003954590647481382, + 0.010994705371558666, + 0.0054578292183578014, + -0.005536876153200865, + 0.01911497861146927, + 0.005429084878414869, + -0.011152799241244793, + -0.03150378167629242, + 0.0026498676743358374, + 0.014321860857307911, + 0.009205371141433716, + -0.021026475355029106, + 0.03357337415218353, + -0.0008421189850196242, + 0.010822239331901073, + 0.012755295261740685, + 0.013876324519515038, + 0.01383320800960064, + -0.017375946044921875, + -0.006736951880156994, + 0.002121690660715103, + -0.0011030635796487331, + -0.004742814227938652, + -0.0005928517784923315, + -0.02977912314236164, + 0.027163390070199966, + 0.006744137965142727, + 0.011080938391387463, + -0.026286687701940536, + 0.004246974363923073, + 0.007006430067121983, + 0.03472314774990082, + 0.030670197680592537, + 0.01991981826722622, + 0.000637764751445502, + 0.011138427071273327, + 0.0063165659084916115, + 0.021917549893260002, + -0.004656581208109856, + -0.01043419074267149, + 0.012539712712168694, + 0.009974281303584576, + -0.007854387164115906, + -0.00909757986664772, + -0.0021719932556152344, + -0.027350228279829025, + 0.015277610160410404, + -3.536899748723954e-5, + -0.004753593355417252, + -0.007297466043382883, + 0.0023139184340834618, + -0.005447050090879202, + 0.0003853536327369511, + 0.02667473629117012, + -0.009248487651348114, + -0.003172655124217272, + -0.005853063892573118, + 0.008127458393573761, + 0.012669062241911888, + 0.016427382826805115, + -0.030670197680592537, + -0.011641453020274639, + -0.00532488664612174, + -0.011440242640674114, + 0.020710287615656853, + -0.008422087877988815, + -0.025079425424337387, + -0.017807111144065857, + -0.0024235062301158905, + -0.0014848242281004786, + 0.007581316400319338, + 0.0017147788312286139, + -0.0011012670584022999, + 0.02525189146399498, + 0.021989410743117332, + 0.029807867482304573, + 0.01514826063066721, + 0.0016833397094160318, + -0.007689107675105333, + -0.010750378482043743, + -0.006075832061469555, + -0.01474583987146616, + -0.0175771564245224, + 0.004487708210945129, + 0.011375567875802517, + 0.015464448370039463, + -0.016657337546348572, + 0.025093797594308853, + -0.01769213378429413, + 0.009694024920463562, + -0.00814901664853096, + -0.012561270967125893, + 0.004473336040973663, + 0.014717095531523228, + 0.010570726357400417, + 0.023182300850749016, + 0.013948185369372368, + -0.012798411771655083, + -0.018511347472667694, + -0.004778744652867317, + -0.004947617184370756, + -0.010455748997628689, + 0.001362660783343017, + 0.010153933428227901, + -0.0025815998669713736, + -0.02415960654616356, + -0.0033020046539604664, + -0.013567322865128517, + 0.009111952036619186, + 0.009823373518884182, + 0.015248865820467472, + -0.0038661120925098658, + 0.008400529623031616, + 0.005041036289185286, + 0.009880862198770046, + 0.00526380492374301, + 0.0019097012700513005, + 0.013919441029429436, + -0.0030397125519812107, + 0.0009683245443738997, + -0.0037187973503023386, + 0.002529500750824809, + 0.010218608193099499, + 0.007466339040547609, + 0.0021324697881937027, + -0.00690582487732172, + -0.015795007348060608, + -0.001757895341143012, + -0.019891073927283287, + 0.0075094555504620075, + 0.010333585552871227, + 0.00454878993332386, + -0.0019510212587192655, + -0.005863843020051718, + 0.005023071076720953, + 0.02415960654616356, + -0.016096822917461395, + -0.0029858171474188566, + 0.004893721546977758, + 0.0026211233343929052, + -0.016872920095920563, + 0.013057110831141472, + -0.013711044564843178, + -0.02433207258582115, + -0.009291604161262512, + 0.010635401122272015, + 0.013322995975613594, + 0.0027917928528040648, + 0.008019667118787766, + 0.0012737329816445708, + 0.02032223902642727, + 0.0015917171258479357, + -0.008400529623031616, + -0.006607602350413799, + 0.011231846176087856, + -0.003068456891924143, + -0.0030397125519812107, + 0.0247344933450222, + 0.023469744250178337, + 0.012978063896298409, + 0.00031663672416470945, + -0.014918305911123753, + -0.014228441752493382, + -0.008687973022460938, + -0.0008255011634901166, + 0.0017632849048823118, + -0.005860249977558851, + 0.010333585552871227, + 0.009679652750492096, + -0.03141754865646362, + -0.010312027297914028, + -0.008026853203773499, + -0.004448184743523598, + 0.006790847517549992, + -0.04027080163359642, + 0.03124508447945118, + 0.012539712712168694, + -0.015392587520182133, + -0.014623676426708698, + 0.0022510401904582977, + 0.0005191944073885679, + 0.0183819979429245, + -0.02364221028983593, + 0.012999622151255608, + 0.0036074130330234766, + 0.0003179841150995344, + -0.007531013805419207, + -0.028859304264187813, + 0.0005501843988895416, + -0.00869515910744667, + 0.002536686835810542, + 0.018798790872097015, + 0.0051380484364926815, + -0.001891736057586968, + -0.01575189083814621, + -0.01123903226107359, + -0.019704235717654228, + -0.02359909377992153, + -0.017375946044921875, + -0.021141452714800835, + 0.018942512571811676, + 0.019704235717654228, + -0.011871407739818096, + 0.004678139463067055, + 0.010994705371558666, + -0.009133510291576385, + 0.014041604474186897, + 0.009255673736333847, + -0.023282906040549278, + -0.0077322241850197315, + -0.008026853203773499, + -0.004875756800174713, + -0.020336611196398735, + 0.01300680823624134, + 0.01688729226589203, + 0.0077322241850197315, + -0.02437518909573555, + -0.006057866849005222, + 0.013229576870799065, + -0.00817057490348816, + -0.02378593198955059, + -0.010534795932471752, + -0.00021614387515001, + -0.014544629491865635, + -0.0077178520150482655, + 0.0068806735798716545, + 0.007487897295504808, + 0.02013540081679821, + -0.006711800582706928, + -0.005066187586635351, + -0.0004017468891106546, + 0.024418305605649948, + -0.004803895950317383, + -0.0072723147459328175, + 0.035355523228645325, + 0.0037583208177238703, + 0.0044122543185949326, + 0.027493949979543686, + -0.015263237990438938, + -0.015248865820467472, + 0.0271490179002285, + 0.0005209909286350012, + 0.023987140506505966, + -0.013991301879286766, + -0.013768533244729042, + -0.0031546899117529392, + -0.004333207383751869, + 0.013445159420371056, + -0.011497731320559978, + 0.0059824129566550255, + -0.022319970652461052, + 0.010247352533042431, + -0.013301437720656395, + 0.025769289582967758, + -0.013545764610171318, + 0.007753782439976931, + -7.24783749319613e-5, + 0.009234115481376648, + -0.004750000312924385, + 0.00611176248639822, + -0.0010446766391396523, + 0.0008380768122151494, + 0.0026175302919000387, + -0.006898638792335987, + -0.009952723048627377, + -0.014932678081095219, + 0.020624054595828056, + -0.007566944230347872, + -0.007696293760091066, + -0.001042880117893219, + 0.023340394720435143, + 0.003397220280021429, + -0.00627704244107008, + -0.00698846485465765, + 0.010067700408399105, + 0.015478820540010929, + -0.005475794430822134, + -0.0014893155312165618, + 0.03960968181490898, + 0.03230862319469452, + 0.026142966002225876, + 0.008831694722175598, + -0.014314674772322178, + -0.0057093421928584576, + -0.009226929396390915, + -0.002515128580853343, + -0.0203940998762846, + 0.022564297541975975, + 0.010728820227086544, + -0.005120083224028349, + -0.013861952349543571, + -0.028198186308145523, + -0.01648487150669098, + -0.0004944922402501106, + 0.014170953072607517, + 0.0050194780342280865, + -0.016384266316890717, + -0.006392019800841808, + -0.006226739846169949, + -0.017275340855121613, + -0.0007482507498934865, + 0.00602912250906229, + 0.04285779222846031, + 0.009916792623698711, + 0.013085855171084404, + -0.008838880807161331, + -0.00044957923819310963, + -0.028155069798231125, + -0.004803895950317383, + -0.01555068138986826, + -0.030095310881733894, + 0.009456884115934372, + 0.0029947995208203793, + -0.018281392753124237, + 0.006884266622364521, + 0.0071753025986254215, + -0.00973714143037796, + 0.014142208732664585, + 0.002288767136633396, + -0.01412065140902996, + -0.011655825190246105, + 0.002890601521357894, + 0.0062195537611842155, + 0.009298790246248245, + -0.0031025907956063747, + -0.015737518668174744, + -0.0043978821486234665, + -0.0009925775229930878, + 0.0008596350671723485, + 0.013445159420371056, + 0.010089258663356304, + -0.005885401275008917, + 0.015263237990438938, + 0.0005052713677287102, + -0.024418305605649948, + 0.013272693380713463, + 0.005306921433657408, + 0.0036217852029949427, + 0.010347957722842693, + 0.015694402158260345, + -0.0024450644850730896, + 0.0023534419015049934, + -0.002211516723036766, + 0.003693646052852273, + 0.005874622147530317, + 0.004872163757681847, + 0.0013527799164876342, + -0.007232791278511286, + 0.005986005999147892, + 0.015421331860125065, + -0.015694402158260345, + 0.007200453896075487, + 0.0001977295323740691, + 0.011116868816316128, + -0.017490923404693604, + -0.0014542833669111133, + -0.00532488664612174, + 0.011792360804975033, + 0.018468230962753296, + -0.0227655079215765, + -0.012108547613024712, + 0.005745272617787123, + -0.006524962373077869, + -0.01618305593729019, + 0.01350264810025692, + 0.02214750461280346, + 0.0015899206046015024, + 0.016269288957118988, + -0.00612254161387682, + 0.012173222377896309, + -0.0005941991694271564, + -0.0005690478719770908, + 0.018626324832439423, + -0.006952534429728985, + -0.013912254944443703, + -0.0235703494399786, + -0.014975794591009617, + -0.017447806894779205, + -0.015881240367889404, + -0.012740923091769218, + -0.012000756338238716, + 0.0024235062301158905, + -0.0045092664659023285, + -0.012827156111598015, + 0.0018153839046135545, + -0.009787443093955517, + -0.00627704244107008, + -0.0013680503470823169, + 0.0012979860184714198, + -0.0004221823182888329, + 0.01335892640054226, + -0.001753404038026929, + 0.01611119508743286, + -0.0008178659481927752, + 0.00018144857313018292, + 0.009923978708684444, + 0.006772882305085659, + -0.014681165106594563, + -0.002912159776315093, + 4.216208981233649e-5, + 0.001607885817065835, + 0.013531392440199852, + 0.01147617306560278, + 0.00012418447295203805, + 0.0015315336640924215, + -5.162189336260781e-5, + -0.017634645104408264, + -0.021400151774287224, + -0.008723903447389603, + -0.011519289575517178, + -0.012065431103110313, + 0.020221633836627007, + -0.005536876153200865, + 0.014372163452208042, + -0.02042284421622753, + 0.02309606783092022, + 0.030497731640934944, + -0.005752458702772856, + 0.009449698030948639, + -0.002779217204079032, + 0.009629350155591965, + 0.017591528594493866, + -0.006230332888662815, + 0.021572617813944817, + 0.019431166350841522, + 0.0032822429202497005, + -0.0095718614757061, + 0.011770802550017834, + -0.009420953691005707, + 0.021615734323859215, + 0.001535126706585288, + -0.020695915445685387, + -0.00014417077181860805, + -0.02653101459145546, + 0.0029031771700829268, + -0.0039451587945222855, + 0.0011731279082596302, + -0.003257091622799635, + 0.005978819914162159, + 0.005993192084133625, + 0.011849849484860897, + -0.009341906756162643, + -0.01575189083814621, + 0.04119062051177025, + 0.018209531903266907, + -0.01797957718372345, + -0.003955937922000885, + 0.0183819979429245, + -0.023254161700606346, + 0.007063918747007847, + 0.004829047247767448, + 0.025223147124052048, + -0.003715204307809472, + -0.0183819979429245, + -0.01200794242322445, + -0.006334531120955944, + -0.0024450644850730896, + 0.019603630527853966, + -0.004444591701030731, + 0.016326777637004852, + -0.006140506826341152, + 0.018726930022239685, + 0.012561270967125893, + 0.0010940809734165668, + 0.005342851858586073, + 0.016872920095920563, + -0.010347957722842693, + -0.0072795008309185505, + -0.010520423762500286, + 0.01648487150669098, + -0.0035714826080948114, + -0.006701021455228329, + 0.0017902326071634889, + 0.0010994705371558666, + -0.0016626797150820494, + 0.00027441850397735834, + 0.005076966714113951, + 0.011131240986287594, + -0.0008430172456428409, + 0.0014794346643611789, + -0.006625567562878132, + -0.00824243575334549, + 0.0059177386574447155, + 0.005429084878414869, + 0.027867626398801804, + 0.001913294312544167, + -0.012431921437382698, + 0.021831316873431206, + 0.0008542455034330487, + 0.009945536963641644, + 0.013057110831141472, + 0.021874433383345604, + 0.017950832843780518, + 0.016829803586006165, + -0.018008321523666382, + -0.00682318489998579, + -0.0005933009088039398, + 0.01357450895011425, + 0.00845801830291748, + -0.0029912064783275127, + -0.042081695050001144, + -0.0005079661495983601, + 0.01195045467466116, + 0.018554463982582092, + -0.024605143815279007, + 0.009018532931804657 + ], + "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c": [ + -0.0022741202265024185, + -0.0033714845776557922, + -0.007332229055464268, + 0.011171240359544754, + -0.02101576328277588, + -0.01947733573615551, + 0.020775824785232544, + 0.013852902688086033, + -0.0065030306577682495, + 0.030514493584632874, + 0.007360456977039576, + 0.029074864462018013, + 0.008701288141310215, + -0.010684306733310223, + 0.0318412110209465, + 0.021354500204324722, + -0.008419007994234562, + 0.045164838433265686, + -0.016245227307081223, + -0.004615281708538532, + 0.042596086859703064, + -0.025715729221701622, + -0.023330461233854294, + 0.03189766779541969, + 0.00701113510876894, + -0.02347160130739212, + -0.0020359461195766926, + -0.002289998345077038, + -0.0562019944190979, + -0.019971325993537903, + 0.019604362547397614, + 0.03119196556508541, + 0.004131876863539219, + 0.003223287407308817, + 0.0055221072398126125, + -0.03799492120742798, + -0.0020059538073837757, + -0.005006945692002773, + -0.0321517176926136, + 0.0021365084685385227, + 0.0052045416086912155, + 0.03011930175125599, + -0.011178296990692616, + -0.004939903970807791, + -0.03630123659968376, + 0.010945416055619717, + -0.02591332606971264, + -0.02160855196416378, + -0.004752893466502428, + -0.0336478054523468, + 0.017811883240938187, + -0.017332006245851517, + 0.01048671081662178, + 0.0171344093978405, + 0.05120563507080078, + -0.007529825437813997, + -0.0039025242440402508, + 0.023669198155403137, + -0.0039589800871908665, + -0.046068135648965836, + 0.012624983675777912, + -0.007049948908388615, + 0.014135182835161686, + 0.007081705145537853, + 0.042709000408649445, + 0.019039802253246307, + -0.025461677461862564, + 0.00966104120016098, + -0.03136133402585983, + -0.0009915092960000038, + 0.0032638651318848133, + 0.01410695444792509, + -0.05041525140404701, + 0.037006936967372894, + 0.025574589148163795, + -0.014974966645240784, + 0.03342197835445404, + 0.023457488045096397, + 0.03347843512892723, + -0.02447369694709778, + -0.00048252276610583067, + -0.023062294349074364, + 0.017007384449243546, + 0.007529825437813997, + 0.06887637823820114, + 0.02938537299633026, + -0.005275111645460129, + -0.05312513932585716, + 0.004639981314539909, + -0.024628950282931328, + -0.0005222184117883444, + 0.019999554380774498, + -0.0005235416465438902, + 0.009717497043311596, + -0.024389011785387993, + -0.0102961715310812, + 0.02612503618001938, + -0.018432898446917534, + 0.015850035473704338, + -0.004985774401575327, + 0.015073764137923717, + -0.008023815229535103, + 0.004756421782076359, + 0.018969232216477394, + 0.03751504421234131, + -0.016682762652635574, + 0.018559925258159637, + 0.006944093853235245, + -0.02028183452785015, + 0.039829742163419724, + -0.0156383253633976, + -0.027423525229096413, + 0.0016636891523376107, + 0.006845295429229736, + -0.06063379347324371, + -0.017910681664943695, + -0.03421236574649811, + -0.025955667719244957, + -0.011502919718623161, + -0.016640419140458107, + 0.018813977017998695, + -0.016160544008016586, + 0.024290213361382484, + -0.004781121388077736, + -0.007166389375925064, + 0.012335645966231823, + 0.007113461848348379, + 0.0018753992626443505, + 0.022483620792627335, + 0.028355048969388008, + -0.006958207581192255, + -0.023245777934789658, + 0.016216998919844627, + -0.013965814374387264, + 0.015779465436935425, + -0.0029904062394052744, + -0.014029327780008316, + 0.05591971427202225, + -0.020564114674925804, + 0.029498284682631493, + -0.04556002840399742, + -0.023386918008327484, + -0.046068135648965836, + 0.0007630387553945184, + 0.027098901569843292, + -0.006908808834850788, + -0.014431577175855637, + 0.032010577619075775, + -0.06266621500253677, + 0.01613231562077999, + -0.08457116037607193, + -0.006711212452501059, + 0.0004143785627093166, + -0.013337740674614906, + 0.029244232922792435, + -0.01110067032277584, + -0.010430254973471165, + 0.03271627798676491, + 0.019124485552310944, + 0.046265728771686554, + 0.023034067824482918, + -0.057133518159389496, + -0.014325722120702267, + 0.0033414922654628754, + 0.06599711626768112, + 0.02666136808693409, + 0.04784649983048439, + 0.010267943143844604, + -0.02702833153307438, + 0.018065935000777245, + 0.0030962612945586443, + -0.006460689008235931, + 0.04987891763448715, + 0.02230013906955719, + 0.02351394295692444, + -0.02379622310400009, + 0.00800970196723938, + 0.03971682861447334, + 0.030937913805246353, + -0.013612964190542698, + -0.004400043282657862, + -0.008475463837385178, + 0.0266049113124609, + 0.012046309188008308, + -0.024657178670167923, + 0.02474186196923256, + -0.007579224184155464, + 0.0071522751823067665, + 0.0016257576644420624, + -0.0002807365090120584, + -0.0030274554155766964, + -0.027310611680150032, + 0.014495089650154114, + 0.028665557503700256, + -0.023274004459381104, + -0.05586325749754906, + -0.009562242776155472, + 0.02639320120215416, + -0.009830408729612827, + 0.03167184069752693, + -0.0002926452143583447, + -0.03147424757480621, + -0.003637886606156826, + 0.04285014048218727, + -0.049201443791389465, + 0.03635769337415695, + -0.01761428639292717, + -0.022850584238767624, + 0.0062983776442706585, + -0.014135182835161686, + 0.03398653864860535, + -0.04671737924218178, + -0.008891827426850796, + 0.012716724537312984, + -0.024134960025548935, + -0.004470613319426775, + -0.008856542408466339, + 0.02032417617738247, + 0.01750137470662594, + -0.04380989074707031, + -0.008898884057998657, + 0.015073764137923717, + -0.011001871898770332, + -0.017910681664943695, + -0.06526318937540054, + 0.0189410038292408, + -0.030345125123858452, + 0.01702149771153927, + -0.023217549547553062, + -0.023852679878473282, + 0.02773403376340866, + 0.00021182044292800128, + 0.03181298077106476, + -0.01611820049583912, + -0.0008415479678660631, + 0.03491806611418724, + 0.022342480719089508, + -0.0014237508876249194, + -0.029018407687544823, + -0.0010691364295780659, + -0.011672287248075008, + 0.0300628449767828, + -0.019787844270467758, + -0.016626305878162384, + -0.02517939731478691, + 0.014989080838859081, + -0.020084237679839134, + 0.02299172431230545, + 0.016315797343850136, + -0.007635680492967367, + -0.008087328635156155, + 0.03926518186926842, + -0.0024487809278070927, + -0.009731611236929893, + -0.008200240321457386, + 0.034353505820035934, + 0.030034616589546204, + -0.07011841237545013, + -0.002970999339595437, + 0.0228364709764719, + 0.024445468559861183, + 0.0080379294231534, + 0.005977284163236618, + -0.010246772319078445, + 0.03384539857506752, + -0.026576684787869453, + 0.026746051385998726, + -0.04527774825692177, + 0.012328589335083961, + 0.027494095265865326, + 0.033337295055389404, + -0.021735578775405884, + -0.02289292775094509, + 0.03455109894275665, + -0.011517033912241459, + -0.00016021609189920127, + 0.006231335923075676, + 0.01357062254101038, + 0.020902851596474648, + 0.02166500873863697, + -0.02746586687862873, + 0.007635680492967367, + 0.00451295543462038, + 0.009922150522470474, + 0.028820812702178955, + 0.00711699016392231, + -0.02272355929017067, + 0.005081044044345617, + -0.0402531623840332, + 0.01490439660847187, + -0.009322304278612137, + -0.013478880748152733, + 0.026012122631072998, + 0.013097803108394146, + 7.012899732217193e-5, + 0.019307967275381088, + -0.03915226832032204, + -0.009971548803150654, + -0.025447562336921692, + 0.00036100996658205986, + 0.002843973459675908, + -0.002401146339252591, + 0.007550996262580156, + -0.01351416576653719, + 0.06148063391447067, + -0.012540299445390701, + 0.013944643549621105, + 0.030147528275847435, + -0.01692269928753376, + 0.044515591114759445, + 0.012314475141465664, + -0.0447978712618351, + -0.013034289702773094, + -0.006058439612388611, + 0.001582533586770296, + 0.001367294928058982, + -0.04064835235476494, + -0.015991175547242165, + -0.015934718772768974, + -0.03635769337415695, + -0.003810783149674535, + -0.019406765699386597, + -0.07531236857175827, + 0.011742857284843922, + 0.04849574342370033, + -0.04519306495785713, + 0.05278640240430832, + -0.006023154594004154, + -0.02938537299633026, + -0.005515050143003464, + -0.04767713323235512, + -0.004985774401575327, + -0.04296305030584335, + -0.00033013554639182985, + -0.021001650020480156, + -0.04635041579604149, + -0.04395103082060814, + -0.021594438701868057, + 0.025616930797696114, + -0.010585508309304714, + -0.0001405887887813151, + 0.0043294732458889484, + 0.029526513069868088, + -0.004456499125808477, + 0.005218655802309513, + -0.01306251809000969, + 0.012286246754229069, + 0.020310062915086746, + -0.019872527569532394, + 0.008736573159694672, + 0.0008935933583416045, + 0.007438084110617638, + 0.026788394898176193, + 0.010373798198997974, + 0.03361957520246506, + -0.018715178593993187, + 0.008891827426850796, + -0.0011141247814521194, + 0.013034289702773094, + -0.012815522961318493, + -0.004883448127657175, + -0.02064879983663559, + 0.005511521361768246, + 0.0018365858122706413, + -0.03666820377111435, + 0.003736684564501047, + -0.005133971571922302, + -0.006739440374076366, + 0.0009721025708131492, + 0.026590798050165176, + -0.04699965938925743, + -0.0062983776442706585, + -0.007579224184155464, + -0.04406394436955452, + 0.00915293674916029, + -0.04550357535481453, + 0.03325261175632477, + -0.008496634662151337, + -0.04200330004096031, + 0.019604362547397614, + 0.00617488007992506, + -0.0076497942209243774, + 0.005479765124619007, + 0.00979512371122837, + 0.021269815042614937, + 0.03452287241816521, + -0.012942548841238022, + -0.010776047594845295, + -0.009893922135233879, + -0.017600173130631447, + -0.04428976774215698, + -0.007416913285851479, + -0.02400793321430683, + 0.01524313259869814, + -0.022116655483841896, + -0.005871428642421961, + -0.012272133491933346, + -0.03599072992801666, + 0.02793162874877453, + -0.02501002885401249, + -0.022257795557379723, + -0.020987534895539284, + 0.00832726713269949, + 0.009985662996768951, + 0.03178475424647331, + -0.03971682861447334, + 0.0119475107640028, + -0.007180503569543362, + 0.023499829694628716, + -0.023076409474015236, + 0.02268121764063835, + 0.005328039173036814, + 0.01634402573108673, + 0.025715729221701622, + 0.050048284232616425, + 0.0318412110209465, + -0.015229018405079842, + 0.05854491889476776, + -0.01481971237808466, + -0.00344029045663774, + 0.04762067645788193, + 0.021749692037701607, + 0.014833826571702957, + 0.0312766507267952, + 0.011989853344857693, + 0.02443135343492031, + -0.011319437064230442, + 0.010790161788463593, + -0.028778469190001488, + -0.011573489755392075, + -0.0001955011102836579, + 0.06808599084615707, + -0.008313152939081192, + -0.011467634700238705, + -0.018701065331697464, + -0.02527819573879242, + -0.01686624437570572, + -0.010162088088691235, + -0.0013470059493556619, + 0.016583964228630066, + -0.017317892983555794, + -0.018080048263072968, + -0.006256035529077053, + -0.011848712339997292, + -0.022977611050009727, + -0.02958296798169613, + -0.03161538764834404, + 0.024290213361382484, + 0.011693459004163742, + -0.021904945373535156, + -0.002424081554636359, + 0.023937363177537918, + -0.0525888092815876, + -0.004837577696889639, + -0.006570072378963232, + -0.0020888736471533775, + 0.0022494206205010414, + -0.008419007994234562, + 0.02172146365046501, + -0.04671737924218178, + -0.029470056295394897, + -0.007018192205578089, + 0.02145329862833023, + -0.008080272004008293, + 0.025828640908002853, + -0.01980195753276348, + -0.0005314807640388608, + -0.013210714794695377, + 0.008419007994234562, + -0.002222956856712699, + -0.022525962442159653, + -0.00423067482188344, + -0.03689402714371681, + 0.018926890566945076, + -0.016852129250764847, + -0.027875173836946487, + -0.0031897665467113256, + -0.007854447700083256, + -0.011707572266459465, + -0.020578229799866676, + -0.007593338377773762, + -0.014706799760460854, + 0.012624983675777912, + 0.003493217984214425, + -0.015468956902623177, + -0.004255374427884817, + -0.027846945449709892, + -0.038869988173246384, + 0.001683978014625609, + -0.03652706369757652, + 0.033873628824949265, + 0.022215453907847404, + 0.00036784642725251615, + 0.023274004459381104, + 0.00045826431596651673, + -0.03559553623199463, + 0.004047192633152008, + -0.024868888780474663, + -0.018178846687078476, + -0.005680889822542667, + 0.02543344907462597, + -0.025631045922636986, + 0.007790934294462204, + 0.011891054920852184, + -0.011065385304391384, + 0.007501597050577402, + 0.01707795448601246, + 0.021029876545071602, + -0.019392652437090874, + -0.0007414266583509743, + -0.036329466849565506, + 0.02958296798169613, + -0.029018407687544823, + 0.021001650020480156, + 0.011771085672080517, + 0.03294210135936737, + -0.019138600677251816, + -0.007184031885117292, + 0.054790593683719635, + -0.0012446794426068664, + -0.02076171152293682, + -0.012469729408621788, + -0.018926890566945076, + -0.01857403852045536, + -0.011883997358381748, + 0.008419007994234562, + 0.002101223450154066, + -0.017444917932152748, + -0.004262431524693966, + -0.03895467147231102, + -0.015793578699231148, + 0.015341931022703648, + -0.026520228013396263, + 0.009068252518773079, + 0.02347160130739212, + -0.022963497787714005, + 0.00688058091327548, + 0.02011246606707573, + 0.009611641988158226, + 0.002039474667981267, + -0.04561648517847061, + 0.02771991863846779, + -0.017840111628174782, + -0.00997860636562109, + -0.0018065935000777245, + 0.02714124508202076, + -0.008764801546931267, + 0.01565243862569332, + -0.045418888330459595, + 0.028115110471844673, + -0.03319615498185158, + 0.027705805376172066, + -0.016725104302167892, + -0.00730400113388896, + -0.005525635555386543, + -0.010818390175700188, + 0.03401476889848709, + -0.004784650169312954, + -0.01570889540016651, + -0.021679122000932693, + -0.004971660673618317, + 0.018447013571858406, + 0.0023058766964823008, + 0.009548128582537174, + -0.02022537961602211, + 0.013485938310623169, + -0.03076854534447193, + 0.010211487300693989, + 0.023767994716763496, + 0.04073303937911987, + 0.052334755659103394, + 0.010917187668383121, + 0.0393780916929245, + 0.02602623775601387, + 0.000407762621762231, + 0.055270470678806305, + 0.01676744595170021, + -0.005271583329886198, + -0.033337295055389404, + -0.00566677562892437, + 0.03692225366830826, + -0.013267170637845993, + 0.0046646809205412865, + -0.011672287248075008, + 0.016668647527694702, + 0.022808242589235306, + -0.013111916370689869, + -0.010938359424471855, + -0.008376666344702244, + 0.015793578699231148, + 0.012095708400011063, + 0.023598628118634224, + -0.002170029329136014, + 0.014720913954079151, + -0.01867283694446087, + 0.03412767872214317, + 0.03474869579076767, + 0.029441827908158302, + 0.00790384691208601, + 0.01755782961845398, + 0.022271910682320595, + 0.032179947942495346, + 0.007713307160884142, + -0.014579773880541325, + -0.008524863049387932, + 0.01592060551047325, + 0.011411178857088089, + 0.0073392861522734165, + 0.00016120847431011498, + 0.05007651448249817, + -0.008157898671925068, + 0.0072828298434615135, + 0.007896789349615574, + -0.005017531104385853, + 0.006023154594004154, + -0.006125480867922306, + 0.010119746439158916, + 0.013923472724854946, + 0.0007211377960629761, + 0.029413599520921707, + 0.015370158478617668, + -0.05049993470311165, + 0.05002005770802498, + -0.008207297883927822, + 0.023584512993693352, + 0.009710440412163734, + -0.02564515918493271, + 0.0012155692093074322, + -0.004851691424846649, + -0.018602266907691956, + -0.011672287248075008, + -0.016188770532608032, + -0.004954018164426088, + 0.001497849472798407, + -0.0029374787118285894, + -0.0066124144941568375, + -0.012046309188008308, + 0.01984430104494095, + -0.016259340569376945, + -0.02421964332461357, + -1.0413218660687562e-5, + 0.01942088082432747, + 0.006982907187193632, + 0.05374615639448166, + -0.013605907559394836, + 0.04358406737446785, + -0.014622116461396217, + 0.011488805525004864, + 0.028651444241404533, + 0.0271976999938488, + -0.0006055792910046875, + 0.006778254173696041, + -0.0044811987318098545, + 0.02160855196416378, + 0.018221188336610794, + -0.0031103752553462982, + -0.01143940631300211, + -0.0034579329658299685, + 0.016626305878162384, + 0.005783216096460819, + 0.023372802883386612, + -0.04683028906583786, + 0.009145879186689854, + -0.02416318841278553, + 0.02335868962109089, + -0.014579773880541325, + 0.017543716356158257, + 0.003969565965235233, + 0.0016583963297307491, + 0.02656256966292858, + 0.003895467147231102, + -0.014946738258004189, + -0.008362552151083946, + -0.011121841147542, + -0.0033414922654628754, + 0.0064501031301915646, + -0.009689268656075, + 0.004682323429733515, + -0.015426614321768284, + -0.014382177963852882, + -0.012716724537312984, + -0.03841834142804146, + -0.0378820076584816, + 0.00421656109392643, + -0.03257513791322708, + -0.010042118839919567, + -0.002438195515424013, + 0.014085783623158932, + -0.015793578699231148, + -0.01985841430723667, + -0.029103092849254608, + -0.0014202224556356668, + -0.01750137470662594, + 0.003247987013310194, + -0.001355827203951776, + -0.009731611236929893, + 0.010493767447769642, + -0.04352761059999466, + 0.023034067824482918, + -0.010162088088691235, + -0.0216508936136961, + -0.02166500873863697, + 0.012497956864535809, + -0.03966037184000015, + 0.028552645817399025, + 0.021368613466620445, + -0.021298043429851532, + -0.024826547130942345, + -0.0168239027261734, + -0.012229790911078453, + -0.00221589975990355, + 0.002843973459675908, + -0.021255701780319214, + 0.023231662809848785, + 0.026477886363863945, + 0.005158671177923679, + -0.021848490461707115, + 0.027635235339403152, + -0.005296282935887575, + 0.045531801879405975, + -0.017007384449243546, + 0.013683534227311611, + -0.010521995835006237, + -0.023598628118634224, + -0.011834599077701569, + 0.021100446581840515, + 0.013627078384160995, + 0.0005010474123992026, + 0.005687946919351816, + 0.0003323408600408584, + 0.04412040114402771, + -0.013097803108394146, + 0.005987869575619698, + -0.003750798525288701, + -0.0021912003867328167, + -0.012123935855925083, + -0.007494540419429541, + 0.004262431524693966, + 0.004495312925428152, + -0.019717274233698845, + 0.0037684410344809294, + -0.007431027013808489, + 0.023485714569687843, + -0.040055565536022186, + 0.003796669188886881, + -0.011354722082614899, + 0.04152342304587364, + 0.0009756310610100627, + -0.015793578699231148, + -0.01863049529492855, + 0.06390824168920517, + -0.026788394898176193, + 0.0453624352812767, + 0.01932208240032196, + -0.020874623209238052, + 0.01750137470662594, + 0.027437638491392136, + 0.016513394191861153, + -0.020408861339092255, + 0.050528161227703094, + -0.004932846873998642, + 0.0036943424493074417, + -0.003285036189481616, + -0.0024276101030409336, + -0.0029233647510409355, + -0.0034473473206162453, + 0.016838015988469124, + 0.012286246754229069, + 0.037910234183073044, + 0.008369608782231808, + 0.029893476516008377, + 0.027338840067386627, + 0.022342480719089508, + 0.022441279143095016, + 0.011135955341160297, + -0.03059917688369751, + 0.015610096976161003, + -0.0027081260923296213, + -0.03048626519739628, + -0.005864372011274099, + -0.03294210135936737, + -0.045475345104932785, + -0.0032056448981165886, + -0.021354500204324722, + 0.02166500873863697, + -0.025518132373690605, + 0.04699965938925743, + -0.031954120844602585, + -0.015045536682009697, + 0.004774064291268587, + 0.024417240172624588, + -0.006619471590965986, + 0.017275549471378326, + 0.0312484223395586, + 0.012314475141465664, + -0.02287881262600422, + -0.004622338805347681, + 0.00781210558488965, + -0.001199690974317491, + -0.007438084110617638, + 0.021354500204324722, + -0.02714124508202076, + 0.045221295207738876, + 0.025447562336921692, + 0.014946738258004189, + 0.0002608886861708015, + -0.011559375561773777, + -0.029131319373846054, + -0.04651978239417076, + 0.006319548934698105, + 0.00832726713269949, + 0.005994926672428846, + -0.012187449261546135, + 0.023019952699542046, + -0.008214354515075684, + -0.0008102324791252613, + 0.0009526957874186337, + 0.0035285030025988817, + 0.026788394898176193, + -0.0009421102586202323, + 0.024600721895694733, + -0.000683647464029491, + 0.026435544714331627, + 0.006510087754577398, + 0.0001420222397428006, + -0.004304773639887571, + 0.040366072207689285, + 0.00781210558488965, + 0.0005032527260482311, + 0.01745903305709362, + -0.020719369873404503, + -0.010070347227156162, + -0.022610647603869438, + 0.03017575666308403, + -0.014932624064385891, + 0.037232764065265656, + -0.01460800226777792, + -0.020719369873404503, + -0.03923695161938667, + 0.024925343692302704, + -0.03810783103108406, + -0.05177019536495209, + 0.014678572304546833, + -0.02539110742509365, + -0.01226507592946291, + 0.013612964190542698, + 0.0013267170870676637, + 0.03133310750126839, + 0.008299038745462894, + 0.048975620418787, + 0.0438663475215435, + -0.006330134347081184, + 0.023062294349074364, + -0.005825558211654425, + -0.02122747339308262, + 0.00698643596842885, + -0.01932208240032196, + -0.0022123714443296194, + 0.015172562561929226, + 0.01535604428499937, + 0.038869988173246384, + 0.005169256590306759, + -0.03353489190340042, + 0.01203219499439001, + -0.01968904584646225, + -0.015850035473704338, + 0.008172012865543365, + 0.010070347227156162, + -0.000884331064298749, + 0.02938537299633026, + 0.02708478830754757, + -0.03133310750126839, + 0.014156353659927845, + 0.00607961043715477, + -0.018969232216477394, + -0.023231662809848785, + 0.005328039173036814, + -0.016583964228630066, + -0.04341470077633858, + 0.0016292862128466368, + -0.01916682720184326, + -0.0042200894095003605, + 0.002849266165867448, + -0.02325989119708538, + -0.01734611950814724, + 0.002404674654826522, + -0.017275549471378326, + -0.010783105157315731, + 0.0049787177704274654, + 0.011509976349771023, + 0.0005054580396972597, + 0.008920055814087391, + -0.0014872639440000057, + -0.032377541065216064, + -0.024445468559861183, + 0.0031297821551561356, + -0.011481748893857002, + -0.03847479447722435, + -0.0015957654686644673, + 0.022271910682320595, + 0.0059067136608064175, + -0.015567755326628685, + -0.0372609905898571, + -0.010077404789626598, + 0.0408741794526577, + -0.049794234335422516, + 0.016414595767855644, + 0.011178296990692616, + -0.008263753727078438, + 0.01019031647592783, + 0.010627850890159607, + 0.016569849103689194, + -0.023979706689715385, + -0.027000105008482933, + 0.059053026139736176, + 0.01580769382417202, + 0.011608774773776531, + -0.013690590858459473, + -0.019787844270467758, + -0.014241037890315056, + 0.028453847393393517, + 0.0047952355816960335, + 0.029780564829707146, + -0.002757525071501732, + 0.024403126910328865, + -0.00267989793792367, + -0.013267170637845993, + -0.01697915606200695, + -0.011686401441693306, + 0.017811883240938187, + -0.00626662140712142, + -0.010211487300693989, + 0.013083688914775848, + -0.013104859739542007, + 0.006728854961693287, + 0.0031121396459639072, + -0.030570948496460915, + -0.00853897724300623, + -0.03508743271231651, + -0.012300360947847366, + -0.007109933532774448, + -0.008524863049387932, + 0.028933724388480186, + -0.027691690251231194, + -0.019717274233698845, + 0.002970999339595437, + 0.0049469610676169395, + 0.019082143902778625, + 0.005811444483697414, + -0.007960302755236626, + -0.021693235263228416, + 0.01532781682908535, + 0.005846729502081871, + -0.005783216096460819, + 0.03562376648187637, + 0.012490900233387947, + 0.011432349681854248, + -0.014833826571702957, + -0.0019424408674240112, + 0.0035002748481929302, + 0.010726649314165115, + -0.006164294667541981, + 4.418898606672883e-5, + 0.0012429151684045792, + -0.025504019111394882, + 0.037119850516319275, + -0.010973644442856312, + -0.007685079239308834, + -0.011601717211306095, + -0.00462939590215683, + -0.01143940631300211, + -0.007854447700083256, + -0.021467411890625954, + 0.018743406981229782, + -0.01836232841014862, + -0.01162994559854269, + -0.01740257628262043, + 0.002536993706598878, + -0.028877267614006996, + -0.009809237904846668, + 0.031954120844602585, + -0.041749246418476105, + -0.03841834142804146, + -0.025419335812330246, + -0.026590798050165176, + -0.0023782108910381794, + 0.0021276872139424086, + 0.019759615883231163, + -0.039519231766462326, + 0.013577679172158241, + 0.0066865128464996815, + -0.00877891480922699, + -0.010119746439158916, + 0.02963942475616932, + 0.012187449261546135, + 0.005638547707349062, + -0.026252061128616333, + -0.005017531104385853, + 0.0046858517453074455, + -0.0300628449767828, + -0.0052574691362679005, + 0.0075227683410048485, + -0.012095708400011063, + 0.046858519315719604, + 0.023005839437246323, + 0.030853228643536568, + -0.010952472686767578, + -0.010768990963697433, + 0.013309513218700886, + 0.027691690251231194, + -0.03452287241816521, + -0.04454382136464119, + -0.004756421782076359, + -0.014304550364613533, + 0.015468956902623177, + 0.004516483750194311, + 0.006661813706159592, + -0.00669356994330883, + -0.01048671081662178, + 0.025151168927550316, + -0.013817617669701576, + -0.020253606140613556, + 0.007762706372886896, + 0.01751548796892166, + -0.017106182873249054, + 0.015426614321768284, + 0.006129009649157524, + -0.006626528687775135, + 0.011566432192921638, + 0.005402137991040945, + 0.009103537537157536, + -0.03356311842799187, + -0.0012305653654038906, + -0.017487259581685066, + -0.0032973859924823046, + -0.00862366147339344, + -0.008708344772458076, + -0.09388640522956848, + -0.03466401249170303, + 0.006323077250272036, + 0.018108276650309563, + 0.011375893838703632, + -0.013718819245696068, + 0.0012005731696262956, + 0.04016847535967827, + -0.007917960174381733, + 0.011446463875472546, + 0.020987534895539284, + -0.012385045178234577, + 0.03181298077106476, + 0.031700070947408676, + 0.009244677610695362, + 0.0026393202133476734, + -0.010310285724699497, + -0.0021488582715392113, + 0.017586058005690575, + -0.018447013571858406, + 0.009611641988158226, + 0.01671098917722702, + 0.021947288885712624, + -0.005949055776000023, + -0.0177271980792284, + 0.03508743271231651, + -0.020662913098931313, + 0.009202335961163044, + -0.011171240359544754, + -0.036639973521232605, + 0.0026675481349229813, + 0.029724108055233955, + -0.007755649276077747, + -0.007889732718467712, + -0.005215127486735582, + 0.0019106842810288072, + -0.005271583329886198, + -0.014537432231009007, + 0.032857418060302734, + 0.012723781168460846, + 0.022695330902934074, + 0.008426064625382423, + -0.003934280946850777, + -0.0010567866265773773, + -0.020691141486167908, + -0.011185354553163052, + 0.003583194687962532, + -0.006661813706159592, + 0.011531147174537182, + 0.02049354463815689, + 0.004375343676656485, + -0.008404893800616264, + -0.007988530211150646, + -0.020027782768011093, + -0.008814199827611446, + -0.001128238858655095, + 0.013344798237085342, + -0.014198695309460163, + 0.00033057661494240165, + 0.012752009555697441, + 0.06452926248311996, + 0.01730377785861492, + 0.0011979267001152039, + -0.005814972799271345, + 0.0013928764965385199, + 0.005144557449966669, + 0.012229790911078453, + 0.012399159371852875, + 0.03155893087387085, + -0.01328128483146429, + 0.02681662142276764, + -0.014551546424627304, + -0.018489355221390724, + 0.03059917688369751, + -0.004908147733658552, + 0.020677026361227036, + 0.009830408729612827, + 0.009703382849693298, + -0.010599622502923012, + -0.01327422820031643, + -0.015003194101154804, + -0.0001926342083606869, + 0.005363324657082558, + -0.005977284163236618, + 0.007445141207426786, + 0.0009870986687019467, + -0.0009209392592310905, + -0.014946738258004189, + 0.009399931877851486, + 0.007159332279115915, + 0.019434994086623192, + 0.00918116420507431, + 0.02602623775601387, + 0.01915271393954754, + -0.02437489852309227, + 0.052024245262145996, + -0.01671098917722702, + -0.006118424236774445, + -0.0010559045476838946, + 0.005409195087850094, + 0.016033517196774483, + -0.02331634797155857, + 0.01920917071402073, + -0.023457488045096397, + -0.0013108388520777225, + 0.0001776380668161437, + -0.009378761053085327, + -0.0030045202001929283, + -0.02927245944738388, + -0.016485165804624557, + -0.004996360279619694, + 0.013231885619461536, + -0.018602266907691956, + 0.008595433086156845, + -0.007064062636345625, + 0.011107726953923702, + -0.009548128582537174, + -0.017275549471378326, + -0.029724108055233955, + -0.0010770754888653755, + -0.007734478451311588, + 0.02558870241045952, + 0.013655305840075016, + -0.029978161677718163, + 0.0005773513112217188, + 0.016089973971247673, + -0.01569478027522564, + -0.006347776856273413, + 0.012046309188008308, + 0.025998009368777275, + -0.0010109160793945193, + 0.021622665226459503, + -0.025419335812330246, + 0.0015657731564715505, + -0.017755426466464996, + 0.012512071058154106, + 0.025264080613851547, + 0.005098686553537846, + 0.02702833153307438, + -0.020211264491081238, + 0.018559925258159637, + -0.004520012065768242, + 4.1142893678625114e-6, + -0.0024117317516356707, + -0.010324399918317795, + 0.019068030640482903, + -0.016696875914931297, + 0.006563015282154083, + 0.006608886178582907, + -0.00618546549230814, + -0.015313702635467052, + 0.028086883947253227, + 0.02539110742509365, + 0.03209526091814041, + -0.009562242776155472, + -0.007176974788308144, + -0.021594438701868057, + 0.01439629215747118, + 0.00822141207754612, + -0.02086050994694233, + -0.013394197449088097, + 0.020140694454312325, + 0.010606680065393448, + -0.0063865901902318, + 0.007095819339156151, + -0.012575584463775158, + -0.013133088126778603, + 0.00483052060008049, + -0.006566544063389301, + -0.0139728719368577, + 0.004177747294306755, + 0.001149409799836576, + -0.0018242360092699528, + -0.025348765775561333, + -0.005451537203043699, + -0.005613848101347685, + -0.0033891270868480206, + -0.012900206260383129, + 0.025616930797696114, + -0.011305323801934719, + -0.002482301788404584, + 0.016894472762942314, + -0.003659057430922985, + 0.008270811289548874, + 0.0005204541957937181, + 0.005306868348270655, + -0.002888079732656479, + -0.011679344810545444, + 0.018447013571858406, + 0.02517939731478691, + 0.008934169076383114, + 0.009752782061696053, + -0.008553091436624527, + 0.0017818940104916692, + -0.0023341046180576086, + -0.00432594446465373, + 0.02756466530263424, + 0.028990179300308228, + -0.01247678603976965, + -0.022286023944616318, + -0.014579773880541325, + -0.022525962442159653, + 0.019660817459225655, + 0.0030045202001929283, + 0.00936464685946703, + -0.00958341360092163, + -0.022229569032788277, + 0.0015419557457789779, + 0.022158998996019363, + -0.0086448322981596, + -0.00795324519276619, + 0.003491453593596816, + 0.008002644404768944, + -0.014156353659927845, + -0.006968793459236622, + 0.011580546386539936, + -0.0007784759509377182, + -0.007416913285851479, + 0.027494095265865326, + -0.01412812527269125, + 0.026308517903089523, + -0.008905941620469093, + -0.011566432192921638, + -0.006915865931659937, + 0.011340608820319176, + 0.017868338152766228, + 0.01888454705476761, + -0.03178475424647331, + -0.007332229055464268, + -0.0009235856123268604, + -0.015878263860940933, + 0.010585508309304714, + -0.021058104932308197, + -0.02124158665537834, + -0.01830587349832058, + -0.0009579885518178344, + 0.021255701780319214, + -0.01724732294678688, + 0.0211851317435503, + -0.01080427598208189, + -0.011686401441693306, + -0.02320343442261219, + -0.02485477365553379, + 0.0024029104970395565, + 0.02427610009908676, + 0.027338840067386627, + -0.03234931454062462, + -0.021594438701868057, + -0.0028545588720589876, + 0.02602623775601387, + 0.013556508347392082, + 0.0024487809278070927, + -0.008997682482004166, + 0.013641192577779293, + -0.017148524522781372, + 0.0022211926989257336, + 0.018080048263072968, + 0.0011388242710381746, + 0.028806697577238083, + -0.006121952552348375, + 0.004054249729961157, + 0.0024611307308077812, + 0.011171240359544754, + -0.02134038507938385, + 0.025094712153077126, + 0.004788178484886885, + 0.003916638437658548, + 0.006129009649157524, + 0.03689402714371681, + 0.0021647366229444742, + 0.010444368235766888, + 0.00659830030053854, + -0.0038778246380388737, + 0.011785199865698814, + 0.003184473840519786, + 0.004033078905194998, + -0.012279190123081207, + -0.0312766507267952, + -0.002963942475616932, + 0.026534341275691986, + -0.02005601115524769, + 0.02097342163324356, + -0.022003743797540665, + 0.01099481526762247, + 0.013852902688086033, + 0.016188770532608032, + 0.027098901569843292, + -0.0045588258653879166, + 0.04406394436955452, + -0.025024142116308212, + 0.006153709255158901, + 0.006605357397347689, + 0.015991175547242165, + -0.016202885657548904, + 0.01985841430723667, + -0.023923249915242195, + 0.02208842895925045, + 0.0018524640472605824, + -0.0022723558358848095, + 0.002011246746405959, + 0.012109821662306786, + 0.005507993046194315, + -0.037232764065265656, + -0.03096614219248295, + 0.0019000988686457276, + -0.00018568745872471482, + 0.004407099913805723, + 0.011495862156152725, + 0.015158448368310928, + -0.010451425798237324, + -0.0016275219386443496, + 0.009597527794539928, + -0.01000683382153511, + -0.02214488387107849, + -0.004033078905194998, + 0.025715729221701622, + 0.03342197835445404, + -0.006513616535812616, + 0.006132537964731455, + -0.03401476889848709, + -0.0011061857221648097, + -0.0064818598330020905, + 0.03161538764834404, + 0.003145660273730755, + -0.032067034393548965, + -0.03398653864860535, + -0.008157898671925068, + 0.003644943470135331, + 0.015821807086467743, + 0.008630718104541302, + -0.018319986760616302, + 0.06763434410095215, + 0.02107222005724907, + -0.002642848761752248, + -0.0010594329796731472, + -0.005440951324999332, + -0.003997793886810541, + 0.006390118971467018, + -0.01511610671877861, + -0.004107177257537842, + 0.012942548841238022, + 0.011234752833843231, + -0.016965042799711227, + 0.005377438385039568, + 0.011270037852227688, + 0.0037260991521179676, + 0.00267460523173213, + 0.029244232922792435, + 0.002757525071501732, + -0.001355827203951776, + -0.0059102424420416355, + 0.023542171344161034, + 0.012067480012774467, + -0.0001139044834417291, + 0.02368331141769886, + 0.025193510577082634, + 0.027875173836946487, + 0.018122391775250435, + -0.047338396310806274, + -0.026675481349229813, + -0.026223832741379738, + -0.0007290769135579467, + 0.008884770795702934, + 0.02203197218477726, + -0.013627078384160995, + 0.02262476086616516, + 0.00710640475153923, + -0.006030211690813303, + 0.01841878518462181, + -0.03412767872214317, + -0.010768990963697433, + 0.004138933960348368, + -0.02128393016755581, + 0.01285080797970295, + -0.0071875606663525105, + 0.0037331560160964727, + -0.0162311140447855, + 0.025631045922636986, + 0.006658284924924374, + -0.02612503618001938, + 0.004541183356195688, + 0.0028457376174628735, + -0.012208620086312294, + -0.00667945621535182, + -0.021862603724002838, + -0.0044282712042331696, + -0.005592677276581526, + -0.004318887367844582, + 0.0013849374372512102, + -0.008419007994234562, + -0.020084237679839134, + -0.02230013906955719, + 0.002866908675059676, + 0.024304328486323357, + -0.006435989402234554, + 0.0003435879771132022, + -0.020507659763097763, + 0.015073764137923717, + -0.02692953497171402, + 0.0028933724388480186, + -0.009689268656075, + 0.018136505037546158, + -0.006139595061540604, + 0.025800412520766258, + -0.016936814412474632, + 0.026576684787869453, + 0.010394969955086708, + 0.03551085293292999, + -0.004445913713425398, + -0.026731938123703003, + -0.014346892945468426, + 0.027536436915397644, + 0.004678794648498297, + 0.0070781768299639225, + -0.008341381326317787, + -0.018489355221390724, + -0.0011185354087501764, + 0.028510304167866707, + 0.01611820049583912, + -0.001520784804597497, + -0.019025687128305435, + -0.023753881454467773, + -0.014368063770234585, + -0.021749692037701607, + -0.005155142862349749, + 0.009188221767544746, + 0.0006060203886590898, + -0.0014555074740201235, + 0.0062454501166939735, + -0.004424742888659239, + 0.011891054920852184, + 0.0026728410739451647, + -0.008263753727078438, + 0.00027742853853851557, + 0.03497451916337013, + -0.034889835864305496, + 0.009632812812924385, + -0.02980879321694374, + 0.00805910024791956, + -0.030316896736621857, + -0.012201563455164433, + -0.021100446581840515, + -0.006474802736192942, + -0.04129759967327118, + -0.009145879186689854, + -0.010091518051922321, + 0.029244232922792435, + -0.008898884057998657, + 0.010684306733310223, + 0.015440728515386581, + -0.003145660273730755, + -0.03268805146217346, + 0.010119746439158916, + -0.004759950563311577, + 0.011460577137768269, + 0.00041746601345948875, + -0.0003393978695385158, + -0.014410406351089478, + -0.0233022328466177, + 0.053887296468019485, + 0.007501597050577402, + 0.005737345665693283, + -0.028665557503700256, + 0.013747047632932663, + -0.020408861339092255, + -0.0010206194128841162, + 0.043555840849876404, + -0.026915419846773148, + -0.010931301862001419, + -0.006090195849537849, + 0.00896945409476757, + -0.022582419216632843, + -0.01916682720184326, + -0.011425292119383812, + 0.0041671618819236755, + -0.02218722552061081, + 0.003401476889848709, + 0.007452198304235935, + 0.010162088088691235, + -0.011404121294617653, + 0.014283379539847374, + -0.023965591564774513, + 0.005927884951233864, + 0.02112867496907711, + 0.010726649314165115, + -0.010959530249238014, + 0.020183036103844643, + -0.0279457438737154, + -0.006160765886306763, + 0.02214488387107849, + -0.027635235339403152, + -0.0044600279070436954, + -0.03240577131509781, + 0.019223283976316452, + 0.006192522589117289, + -0.007734478451311588, + -0.013337740674614906, + -0.013337740674614906, + 0.014353949576616287, + 0.0012358581880107522, + -0.0006311609758995473, + -0.02410673163831234, + -0.016696875914931297, + 0.007222845684736967, + 0.00918116420507431, + -0.004707023035734892, + -0.0047952355816960335, + 0.008715402334928513, + -0.010253829881548882, + -0.0027822244446724653, + -0.0036555291153490543, + 0.007416913285851479, + -0.03359134867787361, + -0.001580769312568009, + -0.011573489755392075, + -6.897120329085737e-5, + -0.00955518614500761, + -0.01319660060107708, + -0.025955667719244957, + -0.002078288234770298, + -0.02539110742509365, + -0.0059737553820014, + -0.016245227307081223, + -0.004255374427884817, + 0.008722458966076374, + 0.0006532141123898327, + -0.004294188227504492, + -0.013881130144000053, + -0.004650566726922989, + -0.004340058658272028, + 0.005141028668731451, + -0.005066930316388607, + 0.02097342163324356, + -0.004625867120921612, + 0.020987534895539284, + -0.002552871825173497, + 0.011305323801934719, + 0.0018595210276544094, + -0.006626528687775135, + 0.009272905997931957, + 0.0007749474607408047, + 0.002842209069058299, + -0.0057020606473088264, + -0.007508654147386551, + -0.008785972371697426, + 0.060746707022190094, + 0.011538204737007618, + -0.0003475575358606875, + -0.0037684410344809294, + 0.004890505224466324, + -0.015468956902623177, + 0.0010797218419611454, + 0.016216998919844627, + 0.021961402148008347, + 0.009752782061696053, + -0.008983568288385868, + -0.012109821662306786, + 0.006323077250272036, + 0.01335891243070364, + -0.010204430669546127, + 0.018771635368466377, + 0.00690528005361557, + 0.02681662142276764, + -0.000935935415327549, + 0.014551546424627304, + 0.010197373107075691, + -0.01661219261586666, + 0.0011943982681259513, + 0.02852441743016243, + -0.012328589335083961, + 0.009639870375394821, + 0.010521995835006237, + 0.021001650020480156, + 0.018447013571858406, + 0.022850584238767624, + -0.003332671010866761, + 0.0014581538271158934, + -0.01799536496400833, + 0.004819935187697411, + 0.012208620086312294, + 0.008588376455008984, + 0.002254713326692581, + 0.0156242111697793, + -0.01671098917722702, + 0.013415368273854256, + -0.008200240321457386, + -0.026153262704610825, + 0.016216998919844627, + 0.022286023944616318, + 0.0026728410739451647, + -0.006802953779697418, + -0.0038213685620576143, + 0.000433564797276631, + 0.011700515635311604, + 0.007127576041966677, + -0.011891054920852184, + -0.008666003122925758, + 0.010691364295780659, + 0.0005473589990288019, + -0.008475463837385178, + 0.002454073866829276, + 0.017953023314476013, + -0.015595982782542706, + -0.0029163076542317867, + 0.0032144661527127028, + -0.019251512363553047, + 0.0021859074477106333, + -0.016781559213995934, + -0.011559375561773777, + -0.005889071151614189, + -0.015977060422301292, + -0.01730377785861492, + -0.015835920348763466, + 0.001489028218202293, + 0.006125480867922306, + 0.006601829081773758, + 0.010924245230853558, + 0.006884109228849411, + -0.024191416800022125, + -0.00944933108985424, + 0.0031121396459639072, + -0.0003696106723509729, + 0.0171344093978405, + 0.008016758598387241, + 0.0033714845776557922, + 0.0067994249984622, + 0.003126253606751561, + -0.014071669429540634, + -0.01899746060371399, + -0.0007678904221393168, + 0.0002566985785961151, + 0.015567755326628685, + -0.014720913954079151, + 0.02011246606707573, + -0.01596294716000557, + -0.02725415676832199, + 0.009463445283472538, + -0.01298489049077034, + 0.012081594206392765, + 0.0032127019949257374, + -0.0032885647378861904, + -0.018912775442004204, + -0.004138933960348368, + 0.012088650837540627, + -0.0002727973915170878, + -0.0034755754750221968, + 0.00535979587584734, + -0.008207297883927822, + -0.00918116420507431, + -0.0014228688087314367, + -0.00784739013761282, + 0.026675481349229813, + 0.018348215147852898, + -0.03517211601138115, + 0.009371703490614891, + 0.000505899079144001, + -0.025348765775561333, + 0.00149343884550035, + -0.0059102424420416355, + -0.02537699230015278, + 0.0023111694026738405, + 0.019717274233698845, + -0.004061306826770306, + 0.003041569609194994, + -0.002092402195557952, + -0.011453520506620407, + -0.0008106735185720026, + 0.0024099675938487053, + 0.005469179712235928, + 0.0016398717416450381, + 0.0018701065564528108, + -0.0033503135200589895, + -0.005578563082963228, + -0.008023815229535103, + 0.004449442028999329, + -0.0029551212210208178, + 0.007064062636345625, + 0.0011529383482411504, + 0.009731611236929893, + 0.007060534320771694, + -0.008087328635156155, + -0.00017818939522840083, + 0.004982246086001396, + 0.022427164018154144, + -0.02198963053524494, + 0.0023199906572699547, + 0.018983345478773117, + -0.004583525471389294, + 0.021622665226459503, + 0.01815061829984188, + 0.03138956055045128, + -0.007572167087346315, + -0.016852129250764847, + 0.006358362268656492, + 0.010571395047008991, + 0.012116879224777222, + -0.02458660863339901, + 0.0066335853189229965, + -0.00659830030053854, + -0.0012887857155874372, + 0.00535979587584734, + -0.023909136652946472, + 0.01386701688170433, + -0.012335645966231823, + -0.002154150977730751, + -0.004541183356195688, + -0.005169256590306759, + -0.0004737015115097165, + -0.011848712339997292, + -0.012886092998087406, + 0.009174107573926449, + 0.01697915606200695, + 0.014833826571702957, + 0.014622116461396217, + -0.009406988508999348, + -0.010232658125460148, + 0.009745725430548191, + 0.006273678038269281, + -0.0351438894867897, + 0.01469268649816513, + 0.008877713233232498, + -0.006989964284002781, + 0.005458593834191561, + -0.028990179300308228, + 0.013648249208927155, + 0.004117762669920921, + -0.013669420033693314, + 0.00830609630793333, + -0.006908808834850788, + 0.012632040306925774, + -0.006100781727582216, + -0.0015137277077883482, + -0.01016914565116167, + -0.007289886940270662, + 0.004647038411349058, + -0.010112689808011055, + 0.014248094521462917, + -0.0008106735185720026, + 0.003360898932442069, + -0.01592060551047325, + 0.0029921703971922398, + 0.01141823548823595, + 0.04011202231049538, + -0.002217664150521159, + -0.009230563417077065, + 0.011185354553163052, + -0.00288102263584733, + 0.009971548803150654, + -0.0008243464981205761, + 0.02016892284154892, + -0.01665453426539898, + -0.00781210558488965, + -0.014466862194240093, + 0.016273455694317818, + 0.0009729847079142928, + -0.04364052414894104, + -0.028764355927705765, + 0.01703561283648014, + -0.004357701167464256, + -0.007127576041966677, + 0.01439629215747118, + 0.024939458817243576, + 0.00822141207754612, + 0.03390185534954071, + -0.002512294100597501, + 0.009018853306770325, + -0.0034738110844045877, + 0.03059917688369751, + -0.02007012441754341, + -0.015285474248230457, + 0.004587053786963224, + 0.0034332333598285913, + 0.0006532141123898327, + 0.0009385817684233189, + -0.01175697147846222, + 0.034889835864305496, + -0.014177524484694004, + -0.007459254935383797, + 0.010924245230853558, + -0.003951923456043005, + 0.027324726805090904, + 0.014198695309460163, + 0.005035173613578081, + 0.01734611950814724, + -0.0156242111697793, + -0.0033661918714642525, + 0.014403348788619041, + -0.009519901126623154, + 0.0029374787118285894, + 0.00618546549230814, + 0.004968131892383099, + 0.020140694454312325, + 0.0066124144941568375, + -0.0011017749784514308, + -2.682213562366087e-5, + 0.013690590858459473, + -0.013189543969929218, + -0.0026304989587515593, + 0.018404671922326088, + 0.016936814412474632, + 0.003980151377618313, + 0.0014634465333074331, + 0.008927112445235252, + 0.007494540419429541, + -0.012490900233387947, + -0.0005023705889470875, + 0.012060423381626606, + -0.018531696870923042, + -0.0007017310126684606, + 0.0011397064663469791, + 0.007988530211150646, + -0.034946292638778687, + -0.0053139254450798035, + -0.00042562565067783, + -0.001085014664568007, + -0.004886976443231106, + 8.214795525418594e-5, + 0.010966586880385876, + 0.016696875914931297, + -0.006210165098309517, + -0.006439517717808485, + 0.0014616823755204678, + -0.002390560694038868, + 0.005843200720846653, + -0.0042730169370770454, + -0.0017439625225961208, + 0.015341931022703648, + 0.002644612919539213, + -0.0039625088684260845, + -0.004050721414387226, + -0.024925343692302704, + -0.007296944037079811, + 0.013436539098620415, + 0.008658946491777897, + -0.018757522106170654, + 0.0008966808090917766, + -0.012928434647619724, + 0.009717497043311596, + -0.0016619248781353235, + -0.02458660863339901, + -0.01409989781677723, + 0.004897561855614185, + 0.007452198304235935, + 0.010832504369318485, + -0.0014502146514132619, + 0.008376666344702244, + -0.005225712899118662, + 0.007042891811579466, + -0.013662363402545452, + 0.019449107348918915, + 0.0035285030025988817, + 0.008094385266304016, + 0.006968793459236622, + -0.01665453426539898, + 0.01285080797970295, + -0.0018736351048573852, + 0.0011105963494628668, + -0.015299588441848755, + -0.012018080800771713, + -0.009604585357010365, + -0.027070675045251846, + 0.002222956856712699, + 0.03223640099167824, + -0.01040202658623457, + -0.018122391775250435, + -0.00046576239401474595, + 0.013394197449088097, + 0.009294076822698116, + 0.006132537964731455, + 0.004414157010614872, + -0.00617488007992506, + 0.01154526136815548, + 0.018348215147852898, + 0.03220817446708679, + -0.03666820377111435, + 0.01724732294678688, + -0.017529603093862534, + -0.009159993380308151, + -0.011001871898770332, + 0.004202446900308132, + 0.02565927244722843, + 0.0011635238770395517, + -0.014269265346229076, + -0.012173335067927837, + -0.002048295922577381, + -0.03232108801603317, + 0.00043290320900268853, + -0.0005879367818124592, + 0.0019442051416262984, + 0.017487259581685066, + 0.03155893087387085, + 0.0017395518952980638, + -0.006661813706159592, + 0.022554190829396248, + 0.005246883723884821, + 0.007445141207426786, + 0.00784739013761282, + 0.014523318037390709, + 0.0009835702367126942, + -0.013210714794695377, + -0.025885097682476044, + 0.014791483990848064, + 0.009103537537157536, + -0.024078503251075745, + -0.006781782489269972, + -0.0060372683219611645, + 0.023443372920155525, + -0.008955340832471848, + 0.005938470363616943, + 0.012363874353468418, + 0.0009059431031346321, + -0.01226507592946291, + 0.029357144609093666, + -0.009964492172002792, + -0.0008922701817937195, + 0.00014896898937877268, + -0.02750820852816105, + -0.008630718104541302, + -0.027310611680150032, + -0.01048671081662178, + 0.013923472724854946, + 0.004269488621503115, + 0.009004739113152027, + -0.004050721414387226, + -0.006383061874657869, + 0.02416318841278553, + 0.013048403896391392, + -0.001585179939866066, + -0.013267170637845993, + 0.011679344810545444, + 0.0306556336581707, + 0.01152409054338932, + 0.012469729408621788, + 0.017698971554636955, + -0.019180942326784134, + -0.010458482429385185, + 0.0009765131981112063, + 0.016682762652635574, + 0.002918071812018752, + 0.0057267602533102036, + -0.005123386159539223, + -0.012258019298315048, + 0.021636780351400375, + 0.0009553421405144036, + -0.005179842468351126, + -0.005296282935887575, + -0.0014916745712980628, + 0.011058327741920948, + 0.01287903543561697, + -0.008722458966076374, + -0.027790488675236702, + 0.005934942048043013, + 0.011883997358381748, + 0.008503692224621773, + -0.011905169114470482, + -6.103207488195039e-5, + 0.0011917519150301814, + -0.009174107573926449, + 0.016753332689404488, + 0.008341381326317787, + -0.007939131930470467, + 0.015511298552155495, + 0.0017704262863844633, + 0.005345682147890329, + -0.0037649127189069986, + 0.025729842483997345, + 0.0054444801062345505, + 0.0030574477277696133, + 0.00628073513507843, + -0.0075439391657710075, + -0.014946738258004189, + 0.016626305878162384, + -0.0019600833766162395, + -0.0030856758821755648, + 0.032462228089571, + -0.006312491837888956, + -0.016583964228630066, + -0.009089423343539238, + 0.012991948053240776, + -0.017261436209082603, + -0.011700515635311604, + 0.021862603724002838, + -0.018701065331697464, + 0.0073392861522734165, + 0.01676744595170021, + -0.005592677276581526, + -0.004689380526542664, + 0.014678572304546833, + 0.02155209518969059, + -0.003103318391367793, + 0.008129670284688473, + -0.007275773212313652, + 0.00710640475153923, + -0.006001983303576708, + -0.012145106680691242, + -0.0013020175974816084, + 0.02314697951078415, + 0.0030133414547890425, + 0.005500935949385166, + -0.01734611950814724, + -0.017063839361071587, + -0.002919836202636361, + 0.036329466849565506, + 0.038446567952632904, + -0.022229569032788277, + 0.0015172562561929226, + -0.003987208474427462, + -0.002515822649002075, + 0.0037013995461165905, + -0.01532781682908535, + 0.008101442828774452, + 0.0006563015631400049, + 0.009498730301856995, + 0.0021964930929243565, + -0.007868561893701553, + -0.009399931877851486, + -0.005892599932849407, + 0.010394969955086708, + -0.01601940393447876, + 0.003920166753232479, + 0.015666553750634193, + -0.02639320120215416, + 0.0017439625225961208, + -0.016358138993382454, + -0.010564337484538555, + 0.003256808267906308, + 0.0008027344010770321, + -0.009569300338625908, + 0.00657360116019845, + 0.020691141486167908, + -0.003983679693192244, + -0.002611092058941722, + 0.007039363496005535, + 0.0049257902428507805, + -0.005155142862349749, + -0.003990736790001392, + 0.013041346333920956, + -0.005299811251461506, + -0.0010726648615673184, + 0.025504019111394882, + -0.009781010448932648, + 0.0020430032163858414, + 0.03361957520246506, + -0.005843200720846653, + -0.0014987316681072116, + -0.0008609546930529177, + -0.0024470167700201273, + 0.010663135908544064, + 0.022737672552466393, + 0.0017474910710006952, + 0.014650343917310238, + -0.0144245196133852, + 0.012258019298315048, + -0.005592677276581526, + 0.00862366147339344, + 0.006922922562807798, + -0.01008446142077446, + 0.0008075861260294914, + 0.01306957472115755, + -0.009519901126623154, + 0.013344798237085342, + -0.008524863049387932, + -0.001486381865106523, + 0.02362685464322567, + 0.010783105157315731, + 0.005426837597042322, + -0.006721797864884138, + -0.005899657029658556, + 0.01143940631300211, + 0.00958341360092163, + 0.02049354463815689, + 0.01836232841014862, + 0.013979928568005562, + 0.0211851317435503, + 0.0020200680010020733, + -0.027098901569843292, + 0.010514938272535801, + -0.002284705638885498, + 0.006181937176734209, + -0.005024588201195002, + 0.005560920573771, + 0.00565619021654129, + 0.01133355125784874, + 0.03641415014863014, + -0.008334323763847351, + 0.004491784144192934, + 0.007268716115504503, + 0.013323627412319183, + -0.003468518378213048, + -0.017741313204169273, + -0.025052370503544807, + -0.004068363923579454, + -0.008588376455008984, + -0.000359025172656402, + 0.001894806046038866, + -0.0031227250583469868, + -0.0007193735218606889, + 0.02858087420463562, + 0.005620905198156834, + 0.02266710251569748, + -0.0014996137470006943, + -0.0030133414547890425, + -0.014664458110928535, + -0.0010638436069712043, + 0.015835920348763466, + -0.012102765031158924, + -0.03359134867787361, + 0.008002644404768944, + 0.011164182797074318, + -0.010303228162229061, + 0.002858087420463562, + 0.018531696870923042, + 0.005663247313350439, + 0.0001457712787669152, + 0.0029304216150194407, + -0.012060423381626606, + -0.01724732294678688, + -0.006439517717808485, + -0.009491672739386559, + -0.002750467974692583, + 0.0015225489623844624, + -0.0005107508040964603, + -0.010627850890159607, + 0.0088635990396142, + -0.0033750131260603666, + 0.0007418677560053766, + -0.0016513393493369222, + -0.005402137991040945, + 0.0030997898429632187, + -0.003184473840519786, + 0.023062294349074364, + 0.009802181273698807, + 0.0071522751823067665, + -0.028496189042925835, + -0.009781010448932648, + 0.020041896030306816, + -0.020140694454312325, + -0.00978806708008051, + 0.00711699016392231, + -0.0020377105101943016, + -0.01692269928753376, + -0.002429374260827899, + 0.008489578031003475, + -0.00872951652854681, + -0.030373353511095047, + -0.006044325418770313, + 0.001757194404490292, + -0.012187449261546135, + -0.004767007660120726, + 0.004759950563311577, + -0.0012288010912016034, + 0.013739990070462227, + -0.006072553340345621, + -0.00698643596842885, + -0.03858770802617073, + -0.006044325418770313, + 0.009251734241843224, + 0.008228468708693981, + -0.008214354515075684, + -0.009717497043311596, + -0.013507109135389328, + 0.02729649841785431, + -0.018715178593993187, + 0.01793890818953514, + -0.038390111178159714, + -0.02863732911646366, + -0.006061967927962542, + 0.006922922562807798, + -0.00017565328744240105, + 0.008066157810389996, + -0.00846134964376688, + 0.020310062915086746, + 0.011368836276233196, + 0.005412723403424025, + -0.027070675045251846, + 0.010818390175700188, + 0.007663908414542675, + -0.00877891480922699, + -0.028115110471844673, + 0.006072553340345621, + -0.004520012065768242, + -0.038136061280965805, + -0.0037084566429257393, + 0.011284152045845985, + -0.018164733424782753, + -0.0020447673741728067, + -0.02453015185892582, + -0.0036766999401152134, + -0.0066335853189229965, + 0.014241037890315056, + -0.0031774169765412807, + 0.02272355929017067, + 0.0013743519084528089, + -0.02289292775094509, + 0.0037472702097147703, + -0.014523318037390709, + 0.021029876545071602, + -0.005712646059691906, + 0.010557280853390694, + -0.005014002788811922, + -0.0142057528719306, + 0.010761934332549572, + -0.04437445104122162, + 0.02055000141263008, + -0.009696326218545437, + -0.012935491278767586, + -0.011051271110773087, + 0.002293526893481612, + -0.006841767113655806, + 0.011714629828929901, + -0.01820707507431507, + 0.012737895362079144, + 0.004407099913805723, + 0.0020677028223872185, + -0.030260441824793816, + -0.011425292119383812, + -0.00867305975407362, + -0.02128393016755581, + 0.018616382032632828, + 0.011354722082614899, + -0.006534787360578775, + -0.010232658125460148, + -0.008136727847158909, + 0.003697870997712016, + -0.028340935707092285, + 0.0028245665598660707, + -0.004826991818845272, + -0.006750026252120733, + -0.001305546029470861, + -1.44723753692233e-5, + 0.01203219499439001, + 0.008821257390081882, + -0.010366741567850113, + -0.015892377123236656, + 0.0019900756888091564, + -0.020789939910173416, + -0.019223283976316452, + -0.017797768115997314, + -0.011234752833843231, + 0.023697424679994583, + -0.0028598515782505274, + -0.018715178593993187, + -0.021566210314631462, + -0.012519128620624542, + -0.003920166753232479, + -0.01628756895661354, + -0.012018080800771713, + 0.006118424236774445, + -0.021481525152921677, + 0.01407872699201107, + -0.01367647759616375, + 0.021467411890625954, + 0.006563015282154083, + 0.00709229102358222, + -0.007088762242347002, + 0.014452748000621796, + 0.025094712153077126, + -0.004703494254499674, + -0.006877052132040262, + -0.011566432192921638, + -0.0312766507267952, + 0.018503468483686447, + -0.015200790949165821, + -0.0067994249984622, + 0.018701065331697464, + -0.009773952886462212, + 0.004262431524693966, + -0.0131472023203969, + 0.007776820566505194, + 0.013979928568005562, + 0.002124158665537834, + 0.006898223422467709, + 0.005197484977543354, + -0.01899746060371399, + -0.00020432236487977207, + 0.005931413266807795, + 0.0021964930929243565, + -0.030570948496460915, + 0.002621677704155445, + -0.009879807941615582, + -0.019406765699386597, + 0.0059737553820014, + 0.003750798525288701, + 0.0024734805338084698, + 0.010811332613229752, + -0.03652706369757652, + -0.026746051385998726, + -0.007988530211150646, + 0.008630718104541302, + 0.014417462982237339, + -0.010818390175700188, + -0.011488805525004864, + -0.016428709030151367, + -0.002582864137366414, + 0.010888960212469101, + 0.005105743650346994, + -0.0288490392267704, + 0.010896016843616962, + -0.013881130144000053, + 0.002289998345077038, + -0.01069842092692852, + 0.016005288809537888, + 0.002039474667981267, + 0.0036308295093476772, + 5.083249561721459e-5, + 0.018404671922326088, + 0.008369608782231808, + -0.009308191016316414, + -0.002383503830060363, + -0.004901090636849403, + -0.0012552648549899459, + 0.005804387386888266, + -0.006728854961693287, + -0.009082366712391376, + 0.008299038745462894, + 0.011742857284843922, + -0.022229569032788277, + -0.006203108001500368, + -0.017642514780163765, + -0.004491784144192934, + -0.015835920348763466, + 0.01000683382153511, + 0.019237397238612175, + 0.001447568298317492, + 0.02527819573879242, + 0.005687946919351816, + -0.0028933724388480186, + -0.02379622310400009, + -0.01957613416016102, + -0.0150314224883914, + -0.0011150069767609239, + 0.025292309001088142, + -0.0059067136608064175, + 0.015426614321768284, + 0.00698643596842885, + 0.015793578699231148, + -0.00023508651065640152, + -0.023753881454467773, + -0.010585508309304714, + 0.0336478054523468, + -0.0012164514046162367, + 0.02485477365553379, + -0.007159332279115915, + -0.015257246792316437, + -0.0008860952802933753, + 0.00038350417162291706, + 0.013669420033693314, + -0.008680117316544056, + -0.0032303445041179657, + -0.008877713233232498, + 0.016428709030151367, + -0.007882675155997276, + 0.014064612798392773, + 0.0019089201232418418, + 0.0018207074608653784, + 0.011940454132854939, + 0.008419007994234562, + -0.012540299445390701, + -0.01245561521500349, + 0.009018853306770325, + 0.004505898337811232, + 0.016725104302167892, + 0.0047352509573102, + -0.0017492553452029824, + 0.019562020897865295, + -0.012942548841238022, + 0.008157898671925068, + 0.011234752833843231, + -0.01569478027522564, + -0.03889821469783783, + 0.0033450208138674498, + -0.003156245918944478, + -0.004477670416235924, + 0.012730838730931282, + -0.02214488387107849, + -0.015426614321768284, + 0.005310396663844585, + -0.008976511657238007, + 0.00843312218785286, + -0.005066930316388607, + -0.032067034393548965, + 0.0021365084685385227, + -0.004565882962197065, + 0.00811555702239275, + 0.01872929371893406, + 0.0312766507267952, + -0.035906046628952026, + 0.006188994273543358, + -0.014833826571702957, + -0.010310285724699497, + 0.00856720469892025, + -0.00966104120016098, + 0.012377988547086716, + -0.011700515635311604, + -0.025080598890781403, + -0.010599622502923012, + 0.013140144757926464, + -0.009703382849693298, + 0.008242582902312279, + -0.027536436915397644, + 0.024304328486323357, + -0.008785972371697426, + 0.0072828298434615135, + 0.026266176253557205, + -0.006460689008235931, + -0.0027063617017120123, + 0.006129009649157524, + -0.0006166058592498302, + 0.00371198495849967, + 0.020775824785232544, + -0.014509203843772411, + 0.009809237904846668, + 0.013231885619461536, + 0.005994926672428846, + -0.014678572304546833, + -0.0027804602868855, + 0.0005945527227595448, + -0.0010664899600669742, + 0.0028298592660576105, + -0.007917960174381733, + 0.013365969061851501, + 0.030937913805246353, + -0.007882675155997276, + -0.006044325418770313, + 0.0028598515782505274, + -0.012462671846151352, + 0.009604585357010365, + 0.008419007994234562, + 0.0033203212078660727, + -0.02128393016755581, + -0.011587603949010372, + 0.0156383253633976, + -0.013245999813079834, + 0.0017907152650877833, + 0.03782555088400841, + 0.021636780351400375, + 0.012074536643922329, + 0.028510304167866707, + -0.009689268656075, + -0.004985774401575327, + -0.012102765031158924, + 0.008785972371697426, + 0.0033820699900388718, + -0.004699965938925743, + -0.010394969955086708, + 0.01570889540016651, + 0.01676744595170021, + -0.015313702635467052, + -0.016838015988469124, + -0.007614509202539921, + 0.007452198304235935, + -0.026252061128616333, + -0.007353399880230427, + 0.005941998679190874, + 0.012222734279930592, + 0.0025916853919625282, + 0.005246883723884821, + 0.002314697951078415, + 0.010373798198997974, + 0.008193183690309525, + 0.0031527173705399036, + 0.0006929097580723464, + -0.009696326218545437, + -0.01676744595170021, + -0.03361957520246506, + -0.006435989402234554, + 0.021199245005846024, + -0.017374347895383835, + 0.007854447700083256, + 0.004227146506309509, + -0.021777920424938202, + -0.016400480642914772, + -0.007184031885117292, + 0.0018542283214628696, + -0.0061713517643511295, + 0.014311607927083969, + 0.0006867348565720022, + -0.00856720469892025, + 0.005373910069465637, + -0.021100446581840515, + -0.026252061128616333, + -0.003666114527732134, + -0.02969587966799736, + 0.022949382662773132, + 0.009117651730775833, + 0.022173112258315086, + -0.0031915309373289347, + -0.004191861487925053, + 0.0012517364230006933, + -0.012547356076538563, + 0.00031183144892565906, + 0.0005641194293275476, + -0.0031597744673490524, + 0.010776047594845295, + 0.02011246606707573, + 0.00740985618904233, + 0.008793029002845287, + 0.009244677610695362, + -0.0014122832799330354, + 0.013394197449088097, + 0.009406988508999348, + 0.0032726863864809275, + -0.02214488387107849, + -0.0156383253633976, + 0.0033750131260603666, + -0.005899657029658556, + -0.020211264491081238, + 0.0321517176926136, + -0.021086333319544792, + 0.015737123787403107, + -0.0027610536199063063, + 0.024925343692302704, + 0.005507993046194315, + -0.016936814412474632, + 0.008087328635156155, + 0.009463445283472538, + -0.011001871898770332, + -0.016146428883075714, + 0.019830185920000076, + 0.018136505037546158, + 0.016781559213995934, + -0.020818166434764862, + -0.0039095813408494, + -0.02124158665537834, + 0.023330461233854294, + -0.0156242111697793, + -0.006319548934698105, + 0.0005782333901152015, + -0.0011626416817307472, + -0.0016292862128466368, + 0.00032704812474548817, + 0.006711212452501059, + -0.0038319542072713375, + 0.01613231562077999, + 0.006753554567694664, + 0.005776159465312958, + -0.03189766779541969, + 0.00139023014344275, + 0.005920827854424715, + -0.010726649314165115, + -0.02932891622185707, + 0.034297049045562744, + 0.008955340832471848, + 0.003521445905789733, + 0.007755649276077747, + 0.03511565923690796, + 0.027592893689870834, + -0.00606902502477169, + -0.02230013906955719, + 0.007558053359389305, + -0.020465316250920296, + -0.015341931022703648, + 0.009294076822698116, + -0.018983345478773117, + 0.0187857486307621, + 0.007374571170657873, + 0.013768218457698822, + -0.03271627798676491, + 0.005472708027809858, + -0.01224390510469675, + 0.042229123413562775, + 0.0300628449767828, + 0.024233758449554443, + 0.002773403190076351, + 0.0078191626816988, + 0.009590471163392067, + 0.027183586731553078, + 0.0026340275071561337, + -0.01162994559854269, + 0.0002688278036657721, + 0.006753554567694664, + -0.005991397891193628, + -0.01863049529492855, + -0.010366741567850113, + -0.03096614219248295, + 0.0055962055921554565, + -0.011827541515231133, + -0.009491672739386559, + 0.0009641633951105177, + -0.0008684527711011469, + -0.007755649276077747, + -0.0025175868067890406, + 0.030316896736621857, + 0.004181276075541973, + 0.00048340490320697427, + -0.008235525339841843, + 0.01655573584139347, + 0.006746497470885515, + 0.022709444165229797, + -0.01340831071138382, + -0.011199467815458775, + 0.009202335961163044, + -0.025193510577082634, + 0.01575123704969883, + 0.0021753220353275537, + -0.018404671922326088, + -0.01911037229001522, + -0.012201563455164433, + 0.01061373669654131, + 0.02671782486140728, + 0.013083688914775848, + -0.008108499459922314, + 0.015045536682009697, + 0.03234931454062462, + 0.023909136652946472, + 0.004078949335962534, + 0.003683757036924362, + -0.004315359052270651, + -0.011538204737007618, + 0.006982907187193632, + -0.014149297028779984, + -0.013641192577779293, + 0.01570889540016651, + 0.024233758449554443, + 0.011566432192921638, + -0.013979928568005562, + 0.01947733573615551, + -0.012377988547086716, + 0.0032638651318848133, + -0.024713633581995964, + -0.006414818111807108, + 0.009639870375394821, + 0.014375121332705021, + -0.004033078905194998, + 0.015229018405079842, + 0.011728744022548199, + -0.00618546549230814, + -0.028496189042925835, + -0.004932846873998642, + 0.003835482755675912, + -0.002909250557422638, + 0.002094166586175561, + 0.01782599650323391, + -0.0011635238770395517, + -0.017106182873249054, + 0.005073987413197756, + -0.014876168221235275, + 0.00024787732400000095, + 0.024995913729071617, + 0.014833826571702957, + -0.003232108661904931, + 0.003955451771616936, + -0.006425403989851475, + 0.018122391775250435, + -0.013013118878006935, + -2.662916995177511e-5, + 0.011178296990692616, + -0.001406108378432691, + 0.00688058091327548, + 0.008263753727078438, + -0.004022493492811918, + 0.014283379539847374, + 0.0019547906704247, + 0.004315359052270651, + -0.0015878262929618359, + -0.006961736362427473, + 0.014332778751850128, + -0.01830587349832058, + 0.01799536496400833, + -0.0017421983648091555, + -0.0031915309373289347, + 0.003697870997712016, + -0.010980701074004173, + 0.007416913285851479, + 0.030994368717074394, + -0.00023288119700737298, + 0.000935935415327549, + 0.011615831404924393, + 0.006859409622848034, + -0.008764801546931267, + 0.003906052792444825, + -0.006721797864884138, + -0.018870433792471886, + 0.010246772319078445, + 0.0015472485683858395, + 0.008157898671925068, + 0.01481971237808466, + 0.0029462999664247036, + 0.0060372683219611645, + 0.006393647287040949, + -0.009336418472230434, + 0.009929207153618336, + 0.00236233277246356, + 0.014170467853546143, + 0.007494540419429541, + 0.00313331070356071, + 0.0279457438737154, + 0.016089973971247673, + 0.01040202658623457, + 0.009816295467317104, + -0.00667945621535182, + -0.025024142116308212, + -0.0011873412877321243, + -0.003260336583480239, + 0.007247544825077057, + -0.000395633396692574, + -0.0021576795261353254, + -0.00907530914992094, + -0.026971876621246338, + -0.016640419140458107, + -0.005638547707349062, + -0.015991175547242165, + 0.009385817684233189, + -0.024840660393238068, + 0.017007384449243546, + 0.009823352098464966, + -0.012575584463775158, + -0.0037013995461165905, + 0.004650566726922989, + 0.006601829081773758, + 0.028665557503700256, + -0.021467411890625954, + 0.017360234633088112, + 0.014149297028779984, + 0.01191928330808878, + -0.00877891480922699, + -0.010529052466154099, + -0.013471824117004871, + -0.024092618376016617, + 0.0009085895144380629, + 0.007346343249082565, + 0.006795896682888269, + -0.01386701688170433, + 0.007974416948854923, + -0.017176752910017967, + -0.028326820582151413, + -0.008581318892538548, + -0.021142790094017982, + -0.016795674338936806, + 0.007833276875317097, + 0.01110067032277584, + -0.024501923471689224, + -0.008588376455008984, + 0.022257795557379723, + 0.005712646059691906, + 0.029949933290481567, + -0.005843200720846653, + -0.02406438998878002, + 0.007042891811579466, + -0.006213693413883448, + -0.006563015282154083, + -0.026209719479084015, + 0.013295399025082588, + 0.008510748855769634, + -0.007910903543233871, + -0.02879258431494236, + -0.008630718104541302, + 0.01532781682908535, + -0.021410955116152763, + -0.023767994716763496, + -0.008376666344702244, + -0.00853897724300623, + -0.00955518614500761, + -0.005469179712235928, + 0.015271360985934734, + 0.011996909976005554, + -0.000995919923298061, + -0.012540299445390701, + -0.010832504369318485, + 0.0010744291357696056, + 0.015666553750634193, + -0.013979928568005562, + -0.011559375561773777, + 0.02491123043000698, + 0.01980195753276348, + 0.0034420546144247055, + 0.015003194101154804, + -0.021368613466620445, + 0.0005464768619276583, + 0.010500825010240078, + -0.006958207581192255, + 0.014368063770234585, + -0.012145106680691242, + -0.02341514453291893, + 0.014431577175855637, + 0.012081594206392765, + 0.015723008662462234, + -0.00021424629085231572, + -0.0011370601132512093, + -0.014036384411156178, + 0.013104859739542007, + -0.01778365485370159, + -0.0006280735251493752, + -0.012554413639008999, + 0.0033750131260603666, + -0.008242582902312279, + 0.013542394153773785, + -0.005292754154652357, + 0.005500935949385166, + -0.01008446142077446, + -0.007247544825077057, + 0.012448558583855629, + 0.013217772357165813, + 0.008235525339841843, + -0.010197373107075691, + 0.019138600677251816, + -0.016852129250764847, + -0.002810452599078417, + 0.0150314224883914, + 0.02975233644247055, + -0.002496415749192238, + -0.012737895362079144, + -0.008581318892538548, + 0.006972321774810553, + 0.00267989793792367, + -0.007699193432927132, + 0.008785972371697426, + 0.02666136808693409, + 0.028750242665410042, + 0.014579773880541325, + -0.00022461127082351595, + -0.018235303461551666, + -0.013930529356002808, + -0.0034473473206162453, + 0.009223506785929203, + -0.01920917071402073, + 0.019759615883231163, + 0.0045023695565760136, + -0.018912775442004204, + 0.003459697123616934, + -0.031107282266020775, + -0.002939242869615555, + 0.0004057778278365731, + -0.0013611200265586376, + 0.007325171958655119, + 0.0034085337538272142, + -0.0036096584517508745, + -0.011778142303228378, + -0.0031227250583469868, + -0.00118381273932755, + 0.007233431097120047, + 0.04688674584031105, + 0.004572939593344927, + -0.0065065594390034676, + -0.003987208474427462, + -0.008821257390081882, + -0.020564114674925804, + -0.003039805218577385, + -0.007720364257693291, + -0.023062294349074364, + 0.010663135908544064, + 0.008136727847158909, + 0.006647699512541294, + 0.003944866359233856, + 0.0011105963494628668, + -0.012822579592466354, + 0.0062772068195044994, + -0.0016848600935190916, + -0.00617488007992506, + -0.014791483990848064, + 0.004728193860501051, + -0.008694231510162354, + 0.010987757705152035, + -0.0020818167831748724, + -0.003690814133733511, + 0.0005491232732310891, + -0.003055683569982648, + -0.001745726796798408, + 0.000997684197500348, + 0.002360568381845951, + -0.009435216896235943, + 0.021213360130786896, + -0.014791483990848064, + -0.028284478932619095, + 0.004477670416235924, + 0.0007158450316637754, + 0.013104859739542007, + 0.0006796778761781752, + 0.003554966766387224, + -0.006196050904691219, + -0.00944933108985424, + -0.031587157398462296, + -0.013140144757926464, + 0.008157898671925068, + 0.00391310965642333, + -0.003990736790001392, + 0.002314697951078415, + 0.00085125130135566, + 0.026491999626159668, + -0.01592060551047325, + 0.014452748000621796, + 0.0069476221688091755, + 0.013133088126778603, + -0.027211815118789673, + -0.004343586973845959, + -0.006139595061540604, + 0.00626662140712142, + 0.00027434108778834343, + -0.023979706689715385, + -0.0016848600935190916, + -0.007896789349615574, + 0.008157898671925068, + -0.008383722975850105, + 0.004565882962197065, + 0.005913770757615566, + 0.00968221202492714, + 0.0054444801062345505, + 0.01761428639292717, + 0.006827652920037508, + -0.0007784759509377182, + -0.001546366373077035, + 0.022441279143095016, + -0.009209392592310905, + -0.007670965511351824, + -0.012963719666004181, + 0.005507993046194315, + -0.01632991060614586, + -0.016428709030151367, + 0.00400485098361969, + -0.02671782486140728, + -0.005345682147890329, + 0.004918733146041632, + -0.012949605472385883, + -0.002307640854269266, + -0.01484793983399868, + -0.005631490610539913, + 0.010366741567850113, + -0.002619913313537836, + -0.012914320454001427, + 0.01659807749092579, + 0.012074536643922329, + 0.014304550364613533, + -0.0031438961159437895, + 0.006961736362427473, + 0.006316020153462887, + 0.011975739151239395, + -0.004908147733658552, + 0.001481971237808466, + -0.012406216003000736, + 0.003588487394154072, + 0.013401254080235958, + 0.0001549233275000006, + 0.012497956864535809, + -0.0013611200265586376, + -0.005525635555386543, + -0.01820707507431507, + -0.010839561000466347, + -0.005747931078076363, + -0.007762706372886896, + -0.006383061874657869, + 0.0156383253633976, + -0.01524313259869814, + 0.008793029002845287, + -0.01841878518462181, + 0.025038257241249084, + 0.023372802883386612, + 0.00822141207754612, + 0.016089973971247673, + 0.001991839846596122, + -0.0029286574572324753, + 0.005751459859311581, + 0.00032572491909377277, + 0.014932624064385891, + 0.024332556873559952, + 0.00658771488815546, + -0.017219094559550285, + 0.016485165804624557, + 0.006728854961693287, + 0.00420597568154335, + 0.005338625051081181, + -0.015186676755547523, + 0.004128348547965288, + -0.018503468483686447, + 0.00688058091327548, + -0.004407099913805723, + -0.0010470832930877805, + -0.026012122631072998, + -0.0024734805338084698, + -0.010945416055619717, + 0.013507109135389328, + -0.004961075261235237, + -0.011785199865698814, + 0.017755426466464996, + 0.012420330196619034, + -0.002330576069653034, + 0.005133971571922302, + 0.007148746866732836, + -0.022610647603869438, + 0.00044679667917080224, + 0.009195278398692608, + 0.018065935000777245, + -0.018348215147852898, + -0.016216998919844627, + -0.01745903305709362, + -0.0025705143343657255, + -0.0003400594578124583, + 0.01553952693939209, + -0.013154258951544762, + 0.0037296274676918983, + 0.001397287123836577, + 0.013351854868233204, + -0.005493878852576017, + 0.004710551351308823, + 0.004622338805347681, + 0.02335868962109089, + -0.002415260300040245, + -0.01481971237808466, + -0.01133355125784874, + 0.01857403852045536, + -0.005754988174885511, + -0.011771085672080517, + 0.00014400701911654323, + -0.005162199959158897, + 0.0057796877808868885, + 0.003514388808980584, + 0.009082366712391376, + 0.011813427321612835, + 0.0013796446146443486, + -0.007438084110617638, + -0.012928434647619724, + -0.002939242869615555, + 0.003041569609194994, + 0.003323849756270647, + 0.020818166434764862, + 0.004269488621503115, + -0.02677427977323532, + 0.023499829694628716, + -0.0037013995461165905, + 0.002030653413385153, + -0.007438084110617638, + 0.013048403896391392, + 0.016358138993382454, + 0.02032417617738247, + -0.018178846687078476, + -0.011220639571547508, + -0.008524863049387932, + 0.020832281559705734, + 0.012300360947847366, + -0.002843973459675908, + -0.02406438998878002, + -0.0003259454679209739, + 0.01173580065369606, + 0.009301133453845978, + -0.02218722552061081, + -0.012864921241998672 + ], + "b1879021-4816-447e-bcf2-31cae39f1dc7": [ + -0.0036683562211692333, + -0.006909219082444906, + -0.011107128113508224, + 0.02187534235417843, + -0.023708557710051537, + -0.040731269866228104, + 0.03315192833542824, + 0.026604730635881424, + -0.02182912640273571, + 0.055489424616098404, + 0.010105792433023453, + 0.025110429152846336, + 0.007640964817255735, + 0.012547511607408524, + -0.012924938462674618, + 0.03795833885669708, + -0.01654515415430069, + 0.04917330667376518, + -0.017315411940217018, + -0.023169375956058502, + 0.0717264786362648, + -0.011908196844160557, + -0.03968371823430061, + 0.009196886792778969, + 0.004760197829455137, + -0.010090386494994164, + 0.010575649328529835, + -0.0006672364543192089, + -0.05434944108128548, + -0.002977049211040139, + 0.008349602110683918, + 0.02646608278155327, + 0.032566532492637634, + 0.007471507880836725, + -0.004794859327375889, + -0.0337989442050457, + -0.007787313777953386, + 0.019472135230898857, + -0.01827053166925907, + 0.005206947680562735, + -0.015944352373480797, + 0.03161140903830528, + 0.004563781898468733, + -0.021690480411052704, + -0.03842049464583397, + 0.0008564312011003494, + -0.018547825515270233, + -0.015389765612781048, + -0.013941679149866104, + -0.009427964687347412, + -0.004136288538575172, + -0.005272419657558203, + 0.016391102224588394, + 0.023770177736878395, + 0.025264479219913483, + -0.03980696201324463, + -0.0058116004802286625, + 0.050867874175310135, + -0.007379076909273863, + -0.05730723589658737, + 0.007563938852399588, + 0.001772557501681149, + 0.02002672106027603, + 0.00397453410550952, + 0.02179831638932228, + -0.015582330524921417, + -0.010621865279972553, + -0.0004948911373503506, + -0.03687997907400131, + 0.008557572029531002, + 0.026173384860157967, + 0.030040083453059196, + -0.046646855771541595, + 0.036787547171115875, + -0.019472135230898857, + -0.019225653260946274, + 0.04747873544692993, + 0.018578635528683662, + 0.02216804027557373, + -0.012378054670989513, + -0.018517015501856804, + -0.011130236089229584, + 0.013171421363949776, + 0.016082998365163803, + 0.07123351097106934, + 0.019441325217485428, + -0.019995911046862602, + -0.04941978678107262, + 0.0087809469550848, + -0.021998584270477295, + -0.005164583679288626, + 0.02001131698489189, + -0.007051717024296522, + 0.01425748597830534, + -0.02115129865705967, + 0.012971153482794762, + 0.03339840844273567, + -0.015097067691385746, + 0.024417195469141006, + 0.00677827512845397, + 0.025233669206500053, + 0.011576985940337181, + -0.019564567133784294, + 0.02076617069542408, + 0.0009994104038923979, + -0.019241057336330414, + 0.019549161195755005, + 0.005568969063460827, + -0.028083626180887222, + 0.030363591387867928, + -0.0054572816006839275, + -0.028422540053725243, + 0.00879635289311409, + -0.0038397388998419046, + -0.04390473663806915, + -0.030918177217245102, + -0.04054640978574753, + -0.025819066911935806, + -0.0068321931175887585, + -0.021289946511387825, + 0.04211773723363876, + -0.01194670982658863, + 0.005676805507391691, + 0.0013209934113547206, + -0.022799652069807053, + 0.019888075068593025, + -0.001045626006089151, + 0.012123869732022285, + 0.02283046394586563, + 0.039622098207473755, + -0.0028229975141584873, + -0.033952996134757996, + 0.0051414757035672665, + -0.009451072663068771, + 0.01089145615696907, + 0.03067169524729252, + -0.013995598070323467, + 0.05105273425579071, + -0.018208911642432213, + 0.04507552832365036, + -0.07271240651607513, + -0.04261070117354393, + -0.02674337662756443, + 0.00403230357915163, + 0.01358736027032137, + 0.02917739376425743, + -0.020627522841095924, + 0.04744792729616165, + -0.050898682326078415, + 0.036417823284864426, + -0.07449940592050552, + -0.008596085011959076, + 0.0015106695936992764, + 0.017115144059062004, + 0.0028942464850842953, + -0.01654515415430069, + -0.019487541168928146, + 0.03238166868686676, + 0.02010374702513218, + 0.0500359944999218, + 0.0024686786346137524, + -0.08109281957149506, + -0.011130236089229584, + -0.015759490430355072, + 0.029793599620461464, + 0.019225653260946274, + 0.05515051260590553, + 0.030902773141860962, + -0.019472135230898857, + 0.002266485709697008, + 0.013833843171596527, + -0.005318635143339634, + 0.04954303056001663, + 0.017084334045648575, + 0.010059576481580734, + -0.023677747696638107, + 0.03552432358264923, + 0.043873924762010574, + 0.023030729964375496, + -0.04541444405913353, + -0.01533584762364626, + -0.024802325293421745, + 0.020889410749077797, + -0.008642300963401794, + -0.016637584194540977, + 0.030533049255609512, + 0.010760512202978134, + 0.0060388268902897835, + -0.0038320361636579037, + -0.0006089856615290046, + -0.001517409342341125, + -0.02389341965317726, + -0.013656684197485447, + 0.03444596007466316, + 0.0018803935963660479, + -0.06852219998836517, + -0.01039078738540411, + 0.01369519717991352, + 0.001959345070645213, + 0.04190206527709961, + -0.017007308080792427, + -0.04150152951478958, + -0.02187534235417843, + 0.05804668366909027, + -0.03909832239151001, + 0.05126840993762016, + -0.028576591983437538, + -0.004586889408528805, + 0.04285718500614166, + -0.03743456304073334, + 0.03811239078640938, + -0.05022085830569267, + 0.0010379233863204718, + 0.0082648741081357, + -0.01796242967247963, + 0.00862689595669508, + -0.025172049179673195, + 0.013202231377363205, + 0.009089050814509392, + -0.021690480411052704, + -0.009797688573598862, + 0.012401162646710873, + -0.009820796549320221, + -0.013610468246042728, + -0.05428782105445862, + -0.01588273048400879, + -0.03801996260881424, + 0.04307285696268082, + -0.022245066240429878, + 0.010521731339395046, + 0.039560478180646896, + -0.006196729838848114, + 0.04338096082210541, + -0.016637584194540977, + 0.0018120332388207316, + -0.003989939112216234, + 0.018193507567048073, + 0.011014697141945362, + 0.003208126872777939, + -0.03179627284407616, + 0.010698891244828701, + -0.002052739029750228, + -0.008842567913234234, + 0.0044366889633238316, + -0.007240430451929569, + 0.04048478975892067, + -0.0020450365263968706, + 0.039221566170454025, + 0.03342922031879425, + -0.005056747235357761, + 0.007717990316450596, + 0.04476742446422577, + 0.001833215355873108, + 0.005484240595251322, + -0.011184154078364372, + 0.03370651230216026, + 0.04757116734981537, + -0.04932735487818718, + -0.013448714278638363, + 0.016344886273145676, + 0.002098954515531659, + -0.005638292524963617, + 0.004991275258362293, + -0.005530456081032753, + 0.023400453850626945, + -0.035678375512361526, + 0.030070893466472626, + -0.03250490874052048, + 0.014303700998425484, + 0.032196808606386185, + 0.01302507147192955, + 0.013032774440944195, + -0.006088893860578537, + 0.010698891244828701, + 0.017792971804738045, + -0.02321559190750122, + 0.004706279840320349, + 0.016468128189444542, + 0.012924938462674618, + -0.004536822903901339, + -0.003279375610873103, + 0.0011072466149926186, + -0.008719326928257942, + 0.007583195343613625, + 0.0010976183693856, + 0.0066896951757371426, + -0.009867011569440365, + 0.0330594964325428, + -0.042025305330753326, + -0.00034565350506454706, + -0.0019391258247196674, + -0.0017860369989648461, + 0.029809005558490753, + 0.007282794453203678, + 0.009820796549320221, + 0.03342922031879425, + -0.033336788415908813, + -0.015489899553358555, + -0.011168749071657658, + 0.01353344228118658, + -0.01318682637065649, + 0.006185175850987434, + 0.002936610719189048, + -0.025079617276787758, + 0.028684427961707115, + -0.02997846156358719, + 0.02711310051381588, + 0.01683785207569599, + -0.054010529071092606, + 0.025449341163039207, + 0.04291880503296852, + -0.003371806815266609, + -0.009967145510017872, + -0.018101075664162636, + 0.0009416410466656089, + -0.01722298003733158, + -0.025403127074241638, + 0.00044265793985687196, + -0.0157903004437685, + -0.002466752892360091, + 0.009466477669775486, + -0.009235399775207043, + -0.08072309195995331, + 0.013664386235177517, + 0.06876868009567261, + -0.026635540649294853, + 0.04051559790968895, + -0.0035817022435367107, + -0.03949885815382004, + -0.020319420844316483, + -0.03509297966957092, + -0.013679791241884232, + -0.03620215132832527, + -0.0059348419308662415, + -0.021305350586771965, + -0.05336351320147514, + -0.04778683930635452, + -0.025526367127895355, + -0.0033641040790826082, + -0.017885403707623482, + -0.012401162646710873, + 0.007652518339455128, + 0.03352165222167969, + -0.025233669206500053, + -0.005380256101489067, + -0.025233669206500053, + 0.013664386235177517, + 0.009404856711626053, + -0.018070265650749207, + -0.006681992672383785, + 0.001010001520626247, + -0.009666744619607925, + 0.01694568805396557, + -0.01055254228413105, + 0.0605115108191967, + 0.017715945839881897, + -0.011900494806468487, + -0.027883358299732208, + 0.01760810986161232, + -0.02147480845451355, + -0.013448714278638363, + -0.03863616660237312, + -0.012593726627528667, + -0.006385443266481161, + -0.023462075740098953, + 0.003602884244173765, + -0.008757839910686016, + -0.030055487528443336, + 0.0014875618508085608, + 0.021890748292207718, + -0.020904816687107086, + 0.0040977755561470985, + -0.005095260217785835, + -0.03860535845160484, + -0.010036468505859375, + -0.05496564880013466, + 0.03614053130149841, + -0.004425135441124439, + -0.027544444426894188, + 0.021043462678790092, + 0.0004917619517073035, + 0.007614005822688341, + -0.00198149005882442, + 0.006535643711686134, + 0.026219600811600685, + 0.03167303279042244, + 0.00263428408652544, + -0.014542480930685997, + -0.015443683601915836, + 0.0023800989147275686, + -0.02886928990483284, + -0.008950403891503811, + -0.008388115093111992, + 0.03620215132832527, + -0.014488562941551208, + -0.018748093396425247, + -0.0053532966412603855, + -0.00623909430578351, + 0.0324741005897522, + -0.016652990132570267, + -0.01039078738540411, + -0.009042834863066673, + -0.01589813642203808, + 0.010036468505859375, + 0.027236342430114746, + -0.030779531225562096, + 0.000953676353674382, + -0.031488168984651566, + 0.019949696958065033, + -0.012062248773872852, + -0.0018746167188510299, + 0.008141633123159409, + 0.020242394879460335, + 0.009751472622156143, + 0.04541444405913353, + 0.027020668610930443, + 0.00013383242185227573, + 0.05450349301099777, + -0.03657187521457672, + -0.012832507491111755, + 0.025957712903618813, + 0.03097979910671711, + -0.000677827512845397, + 0.02495637722313404, + -0.0021393930073827505, + 0.021690480411052704, + -0.006504833232611418, + 0.02107427269220352, + -0.013156015425920486, + -0.03860535845160484, + 0.0027844845317304134, + 0.05182299390435219, + -0.00712874298915267, + -0.018932955339550972, + -0.007263537961989641, + -0.0289309099316597, + -0.0037530846893787384, + -0.021259136497974396, + -0.010375382378697395, + -0.0008063644054345787, + -0.008865675888955593, + 0.004040006082504988, + -0.014026408083736897, + -0.013541145250201225, + -0.02534150518476963, + -0.003510453272610903, + -0.04331934079527855, + 0.010906861163675785, + 0.009196886792778969, + -0.0034295760560780764, + -0.007979878224432468, + 0.031149255111813545, + -0.06648872047662735, + -0.01859404146671295, + -0.012901830486953259, + -0.017438653856515884, + -0.012270218692719936, + -0.0059155854396522045, + 0.010591055266559124, + -0.06371578574180603, + -0.037896718829870224, + -0.00809541717171669, + 0.02393963560461998, + 0.0023088499438017607, + 0.022229662165045738, + -0.020257798954844475, + 0.0050374907441437244, + 0.010205925442278385, + 0.010637270286679268, + 0.03530865162611008, + -0.01143063697963953, + -0.014765855856239796, + -0.014788963831961155, + 0.02997846156358719, + 0.005927139427512884, + -0.013286959379911423, + -0.017145955935120583, + 0.008727028965950012, + 0.0020700697787106037, + -0.021182110533118248, + -0.021690480411052704, + 0.0030386699363589287, + 0.005199245177209377, + -0.0031407291535288095, + 0.006839895620942116, + 0.010028766468167305, + -0.01583651639521122, + -0.03370651230216026, + 0.027559850364923477, + -0.022768842056393623, + 0.04113180562853813, + 0.01445775292813778, + -0.004213314037770033, + 0.009897822514176369, + -0.011561580933630466, + -0.05133002996444702, + -0.009520395658910275, + -0.04553768411278725, + -0.009697554633021355, + -0.016082998365163803, + 0.01870187744498253, + -0.016113808378577232, + 0.00014430312148761004, + 0.01424208004027605, + -0.010483218356966972, + 0.033583272248506546, + -0.009466477669775486, + 0.02430935949087143, + -0.00811852514743805, + 0.0005078891990706325, + -0.03419947996735573, + 0.0015799928223714232, + -0.014419239945709705, + 0.019579971209168434, + 0.001268038060516119, + 0.0257574450224638, + -0.00764481583610177, + 0.007717990316450596, + 0.039991822093725204, + -0.00899661984294653, + -0.015158687718212605, + -0.008157038129866123, + -0.012539808638393879, + -0.015027743764221668, + -0.03127249702811241, + 0.006481725722551346, + -0.007979878224432468, + -0.033644892275333405, + 0.028237678110599518, + -0.01967240311205387, + -0.0298860315233469, + 0.02497178129851818, + -0.012786291539669037, + 0.02668175660073757, + 0.032227616757154465, + 0.005853964947164059, + -0.0010725850006565452, + 0.018393773585557938, + 0.014873692765831947, + 0.008534464985132217, + -0.0422101691365242, + 0.0067051006481051445, + 0.0037492334377020597, + -0.014550183899700642, + -0.010475516319274902, + 0.02886928990483284, + -0.009358640760183334, + 0.0069130705669522285, + -0.021613454446196556, + 0.034630823880434036, + -0.025433937087655067, + 0.03176546096801758, + -0.0030232646968215704, + -0.0015742158284410834, + 0.007829678244888783, + -0.019903481006622314, + 0.036849167197942734, + -0.011392123997211456, + -0.03167303279042244, + -0.01860944554209709, + 0.007140296511352062, + 0.02780633233487606, + -0.004609997384250164, + 0.0013855025172233582, + -0.015705572441220284, + -0.011207262054085732, + -0.018393773585557938, + 0.028022006154060364, + 0.011746442876756191, + 0.03061007335782051, + 0.03872859850525856, + 0.0019160180818289518, + 0.02920820377767086, + 0.019811049103736877, + 0.022707222029566765, + 0.03478487581014633, + -0.007933663204312325, + -0.007051717024296522, + -0.0221372302621603, + -0.030517643317580223, + 0.01582111045718193, + -0.008018391206860542, + -0.007013204041868448, + -0.016267860308289528, + 0.006258350796997547, + 0.009574313648045063, + -0.015613140538334846, + -0.018070265650749207, + 0.01763891987502575, + 0.03141114488244057, + 0.010514029301702976, + 0.03407623618841171, + 0.005076003726571798, + 0.015366657637059689, + -0.022938299924135208, + 0.024817729368805885, + 0.011638606898486614, + 0.03275139257311821, + 0.01900998130440712, + 0.011646308936178684, + -6.601356290047988e-5, + 0.030147919431328773, + -0.0054726870730519295, + 0.02400125563144684, + -0.02039644680917263, + 0.019857265055179596, + 0.008318792097270489, + 0.021721290424466133, + -0.004409729968756437, + 0.017084334045648575, + -0.028022006154060364, + -0.01304047740995884, + 0.03475406393408775, + 0.0023781731724739075, + 0.009635934606194496, + -0.005568969063460827, + 0.011407529003918171, + 0.032227616757154465, + -0.010013360530138016, + 0.015720976516604424, + 0.012786291539669037, + -0.05287054553627968, + 0.05986449494957924, + -0.012863317504525185, + 0.027729308232665062, + 0.03977615013718605, + -0.03102601319551468, + -0.010822132229804993, + -0.020488876849412918, + -0.03487730771303177, + -0.003939872607588768, + -0.022275876253843307, + 0.008080012165009975, + -0.010675783269107342, + 0.000639314588624984, + -4.311642624088563e-5, + -0.009112158790230751, + 0.026157980784773827, + -0.0022298984695225954, + -0.03426109999418259, + -0.010282951407134533, + 0.006990096066147089, + 0.019287273287773132, + 0.0590326152741909, + -0.01688406802713871, + 0.030070893466472626, + -0.021413186565041542, + 0.021305350586771965, + 0.03838968649506569, + 0.03965291008353233, + -0.010914563201367855, + 0.007818124257028103, + 0.024509627372026443, + 0.014580993913114071, + 0.010429300367832184, + -0.04153234139084816, + -0.008904188871383667, + 0.0007023795042186975, + 0.006681992672383785, + 0.007702585309743881, + 0.027960384264588356, + -0.016606774181127548, + 0.016699204221367836, + -0.0004785231139976531, + 0.039560478180646896, + 0.0011091722408309579, + 0.023015325888991356, + 0.006570305209606886, + 0.035739995539188385, + 0.028314704075455666, + -0.007236578967422247, + -0.03093358315527439, + 0.015189498662948608, + -0.004902695771306753, + 0.003712646197527647, + -0.0008978326222859323, + -0.00829568412154913, + -0.012493593618273735, + -0.004298042505979538, + -0.012247110716998577, + -0.015690166503190994, + -0.02779092825949192, + -0.02395503968000412, + 0.023878013715147972, + -0.0035239327698946, + -0.0055766720324754715, + 0.0038840286433696747, + 0.030717911198735237, + -0.023107755929231644, + 0.002900023479014635, + -0.003119547152891755, + 0.020535092800855637, + -0.007082527037709951, + -0.0035990329924970865, + 0.015736382454633713, + 0.001158276223577559, + 0.0043481094762682915, + -0.01528192963451147, + 0.018131885677576065, + -0.0197032131254673, + -0.03410704806447029, + -0.01092996820807457, + -0.012539808638393879, + -0.02880766987800598, + 0.025110429152846336, + 0.001501041348092258, + -0.021659670397639275, + -0.01686866208910942, + -0.008249469101428986, + -0.009920929558575153, + 0.009905524551868439, + 0.004802561830729246, + -0.012570619583129883, + 0.020180772989988327, + 0.02776011824607849, + 0.039221566170454025, + -0.007263537961989641, + 0.009628231637179852, + 0.0019314233213663101, + 0.03700321912765503, + -0.013933977112174034, + 0.02253776416182518, + -0.007845083251595497, + -0.023693151772022247, + -0.023662341758608818, + 0.013456416316330433, + -0.006801383104175329, + -0.0018890590872615576, + -0.003240862861275673, + -0.0018380294786766171, + 0.045568495988845825, + -0.01072970125824213, + 0.0024956376291811466, + 0.002994379960000515, + -0.013032774440944195, + -0.032196808606386185, + -0.002098954515531659, + -0.0018948359647765756, + 0.014981528744101524, + -0.03737294301390648, + 0.022368308156728745, + -0.01614461839199066, + 0.016421912238001823, + -0.00863459799438715, + 0.018532419577240944, + -0.010837537236511707, + 0.04371987283229828, + 0.009789985604584217, + -0.0077064367942512035, + -0.0028499565087258816, + 0.03697241097688675, + -0.03860535845160484, + 0.04479823634028435, + 0.026635540649294853, + -0.03863616660237312, + 0.015297334641218185, + 0.01194670982658863, + -0.006077339872717857, + -0.03521621972322464, + 0.0162370502948761, + -0.020488876849412918, + 0.01902538537979126, + -0.0019246835727244616, + -0.007698734290897846, + -0.0147966668009758, + 0.014026408083736897, + 0.01126888208091259, + 0.024078281596302986, + 0.029778195545077324, + -0.012193192727863789, + 0.03968371823430061, + 0.035709187388420105, + 0.0345383919775486, + 0.015243416652083397, + -0.01200062781572342, + -0.04224097728729248, + 0.02463286742568016, + -0.016113808378577232, + -0.033644892275333405, + -0.004228719510138035, + -0.025218265131115913, + -0.059371527284383774, + 0.00828798208385706, + -0.029346849769353867, + 0.017515679821372032, + -0.026157980784773827, + 0.048033323138952255, + 0.004321150481700897, + -0.008326495066285133, + -0.002355065429583192, + 0.007879745215177536, + -0.009150671772658825, + -0.01864025741815567, + 0.01730000600218773, + 0.024370979517698288, + -0.04119342565536499, + -0.002274188445881009, + 0.0021933112293481827, + -0.01794702373445034, + 0.021336160600185394, + 0.03265896067023277, + -0.026543108746409416, + 0.04538363218307495, + 0.05274730548262596, + -0.004852628801018, + -0.01460410188883543, + 0.00215672398917377, + -0.01968780905008316, + -0.02392422966659069, + 0.014180460013449192, + 0.0008641338208690286, + -0.023153971880674362, + -0.016730016097426414, + 0.02849956601858139, + -0.01426518801599741, + 0.002002672292292118, + 0.00984390452504158, + 0.011707929894328117, + 0.03235085681080818, + 0.009890119545161724, + 0.0040130470879375935, + 0.02960873767733574, + 0.02001131698489189, + 0.004864182788878679, + 0.015928946435451508, + -0.01693028211593628, + 0.011053210124373436, + 0.015551519580185413, + 0.00036081799771636724, + 0.0016907175304368138, + -0.014026408083736897, + 0.027575256302952766, + -0.0028749899938702583, + 0.04322690889239311, + 0.0009613789152354002, + 0.02466367743909359, + -0.026265816763043404, + 0.008596085011959076, + -0.03845130652189255, + 0.010498624294996262, + -0.018378369510173798, + -0.04328852891921997, + -0.01423437800258398, + -0.010876050218939781, + -0.01496612373739481, + -0.007090230006724596, + 0.0028249232564121485, + 0.015451386570930481, + 0.0077256932854652405, + 0.06220607832074165, + 0.032905444502830505, + -0.0027979640290141106, + -0.007244281470775604, + 0.0175618939101696, + -0.030132513493299484, + 0.01375681720674038, + -0.004425135441124439, + 0.037095651030540466, + -0.010321464389562607, + 0.036387015134096146, + 0.02075076475739479, + 0.0186710674315691, + -0.05453430488705635, + 0.001915055327117443, + -0.014534778892993927, + -0.034353531897068024, + -0.00142979237716645, + 0.02081238478422165, + 0.014819773845374584, + 0.025834470987319946, + -0.003119547152891755, + -0.005511200055480003, + -0.0005762496730312705, + 0.012362649664282799, + -0.014295998029410839, + -0.002349288435652852, + -0.01730000600218773, + 0.00758704636245966, + -0.04858790710568428, + 0.0036433229688555002, + -0.013633576221764088, + -0.0017475240165367723, + 0.013548847287893295, + -0.010637270286679268, + -0.03392218425869942, + -0.004398176446557045, + -0.0006253536557778716, + -0.00027199756004847586, + 0.0026901280507445335, + -0.0010196297662332654, + 0.001720565021969378, + 0.013417903333902359, + -0.006308417301625013, + -0.014557885937392712, + -0.017115144059062004, + 0.006362335290759802, + -0.0076063028536736965, + -0.0345383919775486, + -0.006011867895722389, + 0.014519372954964638, + 0.0005348482518456876, + -0.029362255707383156, + -0.031195471063256264, + -0.010706593282520771, + 0.02638905681669712, + -0.03629458323121071, + 0.016267860308289528, + 0.011037805117666721, + 0.007090230006724596, + 0.013171421363949776, + 0.010282951407134533, + 0.0006595338927581906, + -0.00988241657614708, + -0.026820402592420578, + 0.04408960044384003, + 0.021721290424466133, + 0.010976184159517288, + -0.0004710612411145121, + -0.01796242967247963, + -0.02181372232735157, + 0.004105478059500456, + 0.026712566614151, + 0.02393963560461998, + 0.009967145510017872, + 0.01797783374786377, + 0.0012006404576823115, + -0.009019727818667889, + -0.012347244657576084, + -0.00794906821101904, + 0.02814524620771408, + -0.0024648273829370737, + 0.010660378262400627, + 0.012840209528803825, + -0.005233906675130129, + 0.0009209403651766479, + 0.016976498067378998, + -0.011638606898486614, + 0.0004002937348559499, + -0.009697554633021355, + -0.02646608278155327, + -0.0059155854396522045, + 0.019271869212388992, + 0.020612118765711784, + -0.015720976516604424, + -0.010483218356966972, + 0.00403230357915163, + 0.007741098292171955, + 0.0371880829334259, + -0.004425135441124439, + 0.005064449738711119, + -0.005707615986466408, + 0.013764520175755024, + -0.025064213201403618, + 0.008365008048713207, + 0.03441515192389488, + 0.026666350662708282, + -0.0042248680256307125, + 0.0072481329552829266, + -0.0030386699363589287, + 0.001778334379196167, + -0.002486009383574128, + 0.007259686477482319, + -0.001890984713099897, + 0.003849367145448923, + -0.043781496584415436, + 0.020889410749077797, + -0.022784247994422913, + -0.0126553475856781, + -0.008334197103977203, + -0.013448714278638363, + -0.014172757044434547, + -0.0032312346156686544, + -0.030440617352724075, + 0.018778903409838676, + -0.016637584194540977, + -0.00985160656273365, + -0.017130549997091293, + -0.008280279114842415, + -0.021967774257063866, + -0.0038840286433696747, + 0.04017668589949608, + -0.02460205741226673, + -0.01864025741815567, + -0.017130549997091293, + -0.02883847989141941, + 0.0022876679431647062, + -0.0031233984045684338, + 0.019533757120370865, + -0.031919512897729874, + 0.02078157477080822, + 0.004517566412687302, + -0.03198113292455673, + -0.0002614065015222877, + 0.017515679821372032, + 0.013340878300368786, + 0.0009454923565499485, + -0.02461746335029602, + -0.017762161791324615, + 0.0018832820933312178, + -0.011315098032355309, + -0.002039259532466531, + 0.006389294750988483, + -0.027036074548959732, + 0.047725219279527664, + 0.0221372302621603, + 0.03386056423187256, + 0.0025976968463510275, + -0.038543738424777985, + -0.001374911516904831, + 0.0323200486600399, + -0.023431263864040375, + -0.035431891679763794, + -0.008565274998545647, + -0.008542167022824287, + 0.009820796549320221, + 0.017700541764497757, + -0.0013123280368745327, + 0.0026862765662372112, + 0.0041170320473611355, + 0.03651025518774986, + -0.0001541720557725057, + -0.01233954168856144, + 0.0038628466427326202, + 0.002680499805137515, + -0.015328144654631615, + 0.004633104894310236, + 0.00965904165059328, + 0.009212291799485683, + 0.023354239761829376, + -0.008511357009410858, + -0.008572977967560291, + -0.008519059047102928, + 0.004687023349106312, + -0.008596085011959076, + 0.00965133961290121, + -0.015220308676362038, + -0.007278942968696356, + -0.09052078425884247, + -0.03484649583697319, + 0.0010148156434297562, + 0.016052188351750374, + 0.01039078738540411, + -0.012139274738729, + 0.008542167022824287, + 0.02145940251648426, + -0.014488562941551208, + 0.005992611404508352, + 0.007748800795525312, + -0.029115771874785423, + 0.026866618543863297, + 0.03968371823430061, + 0.005091408733278513, + -0.008226361125707626, + -0.005707615986466408, + -0.018886739388108253, + 0.01443464495241642, + -0.016067592427134514, + 0.00694773206487298, + 0.020596712827682495, + 0.03262815251946449, + -0.013225339353084564, + -0.017454057931900024, + 0.03201194480061531, + -0.01551300659775734, + 0.008534464985132217, + -0.009435666725039482, + -0.03487730771303177, + 0.012224002741277218, + 0.014550183899700642, + -0.012917235493659973, + -0.014981528744101524, + -0.010275248438119888, + 0.015351252630352974, + 0.012801696546375751, + -0.003312111599370837, + 0.04011506587266922, + 0.00845743902027607, + 0.01264764554798603, + -0.005734574981033802, + -0.0014413462486118078, + -0.01445775292813778, + -0.0040168981067836285, + -0.01656055822968483, + 0.0011505737202242017, + -0.0175618939101696, + -0.0027556000277400017, + 0.013055882416665554, + 0.0186710674315691, + 0.000474671833217144, + -0.007852786220610142, + -0.027313368394970894, + -0.00010139731602976099, + -0.01109942514449358, + 0.011176451109349728, + -0.018917549401521683, + 0.02820686809718609, + 0.0040168981067836285, + 0.05727642402052879, + 0.01425748597830534, + 0.004367365967482328, + -0.0003090662357863039, + -0.020473472774028778, + 0.018455393612384796, + -0.0022934447042644024, + 0.0221372302621603, + 0.04285718500614166, + -0.01392627414315939, + 0.009589718654751778, + -0.009751472622156143, + -0.003966831602156162, + 0.026635540649294853, + -0.013518037274479866, + 0.0030829596798866987, + 0.006697398144751787, + 0.010837537236511707, + -0.00018775051285047084, + -0.0073944819159805775, + -0.028699833899736404, + 0.006755167152732611, + 0.016452722251415253, + -0.010945374146103859, + 0.0012747779255732894, + -0.011053210124373436, + 0.005334040150046349, + -0.025557179003953934, + 0.0021008802577853203, + 0.002079698024317622, + 0.024216927587985992, + 0.008357305079698563, + 0.04726306349039078, + 0.023015325888991356, + -0.0035143045242875814, + 0.03555513545870781, + -0.0019776388071477413, + 0.019456731155514717, + -0.0010022989008575678, + -0.0011563505977392197, + -0.0027844845317304134, + -0.02890009991824627, + 0.006004165392369032, + -0.020658334717154503, + -0.013202231377363205, + 0.004525268916040659, + 0.0022048649843782187, + 0.014665722846984863, + -0.010783619247376919, + -0.01281710248440504, + 0.007783462293446064, + 0.00845743902027607, + -0.043473392724990845, + -0.010467813350260258, + -0.014388429000973701, + 0.005206947680562735, + -0.008218658156692982, + -0.016745420172810555, + -0.015089364722371101, + -0.004155545029789209, + 0.0006807160098105669, + 0.03561675548553467, + 0.01625245437026024, + -0.031241687014698982, + -0.013494929298758507, + 0.0020045978017151356, + -0.013803033158183098, + -0.019564567133784294, + 0.00600031390786171, + 0.026666350662708282, + -0.006208283826708794, + 0.014149649068713188, + -0.015566924586892128, + 0.006493279244750738, + -0.03272058442234993, + 0.02250695414841175, + 0.017022714018821716, + -0.0033140373416244984, + 0.012770886532962322, + -0.03410704806447029, + 0.013371688313782215, + 0.007610154338181019, + 0.012994261458516121, + 0.007017055060714483, + -0.01446545496582985, + -0.011222667060792446, + -0.011384421028196812, + 0.0010388862574473023, + 0.0008506542653776705, + -0.005041342228651047, + -0.026512298732995987, + 0.005688359495252371, + 0.017145955935120583, + -0.00015248711861204356, + -0.011523067951202393, + -0.02112048864364624, + -0.0153127396479249, + 0.008811757899820805, + 0.0014837104827165604, + -0.004956613760441542, + -0.01760810986161232, + 0.005884775426238775, + -0.002220270223915577, + -0.004421283956617117, + 0.026481488719582558, + -0.0029751237016171217, + -0.011476851999759674, + -0.0026381355710327625, + -0.008141633123159409, + -0.017715945839881897, + -0.00667814165353775, + 0.005981057416647673, + -0.004494458436965942, + -0.00914296880364418, + -0.00580004695802927, + -0.0072904969565570354, + -0.003169613890349865, + 0.004644658882170916, + 0.009805391542613506, + -0.009404856711626053, + -0.005114516708999872, + 0.029470091685652733, + 0.00494120828807354, + 0.004371216986328363, + 0.010514029301702976, + -0.00811852514743805, + 0.0020893262699246407, + 0.007795016281306744, + 0.0008703921339474618, + 0.009982550516724586, + 0.02811443619430065, + 0.009204589761793613, + -0.00789515022188425, + -0.008734731934964657, + -0.009859309531748295, + -0.0179316196590662, + 0.0324741005897522, + 0.02779092825949192, + -0.019287273287773132, + -0.004440540447831154, + -0.013348580338060856, + -0.0211050845682621, + 0.018178101629018784, + 0.015774894505739212, + -0.0024051321670413017, + 0.009913227520883083, + -0.044243648648262024, + 0.023076945915818214, + 0.011507662944495678, + -0.009635934606194496, + -0.007510020863264799, + 0.01830134354531765, + 0.0046639153733849525, + -0.012516701593995094, + -0.007051717024296522, + 0.016683800145983696, + 0.012909533455967903, + -0.012663050554692745, + 0.016437316313385963, + -0.013941679149866104, + 0.031210875138640404, + 0.01870187744498253, + 0.011684821918606758, + -0.01833215355873108, + -0.0011958263348788023, + 0.02390882559120655, + 0.025911496952176094, + -0.0507754422724247, + -0.01685325615108013, + 0.003943723626434803, + 0.006855301093310118, + -0.009412559680640697, + -0.016468128189444542, + -0.011831170879304409, + 0.006897665094584227, + -0.013610468246042728, + 0.040946945548057556, + -0.021243730559945107, + 0.02498718723654747, + -0.00984390452504158, + -0.006535643711686134, + -0.03382975608110428, + -0.024216927587985992, + 0.0034661635290831327, + 0.027898764237761497, + 0.01583651639521122, + -0.023030729964375496, + -0.009019727818667889, + 0.001836103736422956, + 0.010783619247376919, + 0.023123161867260933, + -0.006104298867285252, + -0.012277920730412006, + 0.0028711387421935797, + -0.002202939474955201, + -0.0027363435365259647, + 0.012524403631687164, + -0.00529167614877224, + 0.010352274402976036, + -0.012131571769714355, + 0.014658019877970219, + -0.009250804781913757, + 0.02152102440595627, + -0.030009273439645767, + 0.030040083453059196, + -0.004860331304371357, + 0.0007601489196531475, + 0.007136445492506027, + 0.019903481006622314, + -0.01931808330118656, + 0.006674290169030428, + -0.009135265834629536, + -0.024155307561159134, + -0.00467161787673831, + 0.015643950551748276, + 0.017715945839881897, + -0.012770886532962322, + -0.009235399775207043, + 0.01423437800258398, + 0.017869997769594193, + -0.023477479815483093, + 0.013279257342219353, + -0.03315192833542824, + 0.034014616161584854, + 0.025095023214817047, + 0.011107128113508224, + 0.032597340643405914, + 0.00302904169075191, + 0.02675878070294857, + -0.015636248514056206, + 0.01374911516904831, + 0.01619083434343338, + 0.021690480411052704, + -0.025942306965589523, + 0.008241766132414341, + -0.009050537832081318, + 0.01551300659775734, + 0.0005849150475114584, + 0.009720662608742714, + -0.003830110654234886, + 0.022445334121584892, + -0.00019641593098640442, + -0.019117817282676697, + -0.01355655025690794, + -0.00030882551800459623, + -0.00021182109776418656, + 0.011931304819881916, + 0.008002986200153828, + 0.009027429856359959, + 0.0010629567550495267, + 0.0013874281430616975, + 0.0031984986271709204, + -0.013887761160731316, + -0.01038308534771204, + -0.0035277840215712786, + 0.017315411940217018, + 0.02705148048698902, + -0.008164740167558193, + -0.006042678374797106, + -0.030825747177004814, + -0.006901516579091549, + -0.009628231637179852, + 0.02712850645184517, + 0.012924938462674618, + -0.03949885815382004, + -0.020858600735664368, + 0.003306334838271141, + -0.017084334045648575, + 0.009381748735904694, + 0.002407057909294963, + -0.019287273287773132, + 0.04365825280547142, + -0.0027286408003419638, + 0.0060195703990757465, + 0.002717087045311928, + -0.017669731751084328, + -0.01406492106616497, + -0.00037237186916172504, + -0.010336869396269321, + 0.0017715946305543184, + 0.023462075740098953, + 0.002832625759765506, + -0.023415859788656235, + -0.00307910842821002, + 0.011122533120214939, + 0.026604730635881424, + 0.018748093396425247, + 0.027698496356606483, + 0.040946945548057556, + -0.009250804781913757, + 0.0037723411805927753, + 0.014041813090443611, + 0.00025731450296007097, + -0.0017773716244846582, + 0.019965101033449173, + 0.018748093396425247, + 0.015382062643766403, + 0.023308023810386658, + -0.018902145326137543, + -0.03740375488996506, + -0.015489899553358555, + -0.01216238271445036, + 0.012408864684402943, + 0.024540437385439873, + -0.001994969556108117, + 0.011784955859184265, + 0.0006157254101708531, + -0.012031438760459423, + -0.002175980480387807, + -0.027297962456941605, + 0.011576985940337181, + 0.0026227303314954042, + -0.025865281000733376, + -0.0026670200750231743, + -0.0009103493066504598, + 0.0015742158284410834, + 0.000801068905275315, + 0.014596398919820786, + -0.006774423643946648, + -0.0015385914593935013, + 0.009974848479032516, + -0.004059262573719025, + -0.030147919431328773, + -0.028961721807718277, + -0.006628074683248997, + 0.0003343403514008969, + 0.014996933750808239, + 0.0012362649431452155, + -0.006112001370638609, + -0.018563231453299522, + -0.019965101033449173, + -0.0017629292560741305, + 0.016822446137666702, + 0.008511357009410858, + 0.013864654116332531, + 0.00899661984294653, + -0.03061007335782051, + 0.005314784124493599, + -0.02073536068201065, + -0.009774580597877502, + -0.006254499312490225, + 0.008002986200153828, + -0.007171106990426779, + 0.028776858001947403, + -0.019949696958065033, + 0.008580680005252361, + 0.012216300703585148, + 0.03912913426756859, + 0.007502318359911442, + -0.013371688313782215, + -0.0153127396479249, + 0.010760512202978134, + -0.004305745009332895, + -0.0031214726623147726, + -0.009743770584464073, + -0.017315411940217018, + 0.017808377742767334, + 0.019271869212388992, + 0.004848777316510677, + -0.012616834603250027, + -0.01392627414315939, + -0.009813093580305576, + -0.001149610849097371, + -0.016298670321702957, + 0.003441130043938756, + 0.020304014906287193, + -0.012832507491111755, + 0.006177473347634077, + 0.0015347400913015008, + 0.018532419577240944, + 0.014557885937392712, + -0.01038308534771204, + 0.007791165262460709, + 0.005199245177209377, + 0.0507754422724247, + -0.02216804027557373, + 0.0014923758571967483, + -0.03284382447600365, + 0.015266524627804756, + -0.03142654895782471, + -0.016730016097426414, + -0.010660378262400627, + 0.00554971257224679, + -0.03125709295272827, + -0.019441325217485428, + -0.000605134351644665, + 0.0239858515560627, + -0.021582644432783127, + 0.0179316196590662, + 0.015158687718212605, + -0.007340563926845789, + -0.03700321912765503, + 0.020334824919700623, + -0.004698576871305704, + -0.006628074683248997, + 0.017454057931900024, + 0.003920616116374731, + -0.009751472622156143, + -0.02856118604540825, + 0.01904079131782055, + 0.008757839910686016, + -0.0023261806927621365, + -0.025233669206500053, + 0.014426941983401775, + 0.003660653717815876, + 0.015944352373480797, + 0.05099111422896385, + -0.022722626104950905, + -0.028607401996850967, + -0.018054859712719917, + -0.002917354227975011, + -0.022768842056393623, + -0.011754144914448261, + -0.0018120332388207316, + 0.003169613890349865, + -0.024401789531111717, + -0.01689947210252285, + -0.022753437981009483, + 0.005873221438378096, + -0.013810735195875168, + 0.02320018783211708, + -0.01512017473578453, + -0.006023421883583069, + 0.031041419133543968, + 0.027960384264588356, + -0.02603473886847496, + 0.03672592714428902, + -0.0036702819634228945, + -0.00554971257224679, + 0.02249155007302761, + -0.01897916942834854, + 0.009012024849653244, + -0.01586732640862465, + 0.012177787721157074, + -0.00220101373270154, + -0.025603393092751503, + -0.007825826294720173, + -0.01478126086294651, + 0.017469463869929314, + -0.007190363481640816, + 0.009797688573598862, + -0.03213518485426903, + -0.027297962456941605, + -0.004725536331534386, + 0.002878841245546937, + -0.01589813642203808, + -0.010344572365283966, + 0.012524403631687164, + -0.00038536995998583734, + -0.010128899477422237, + -0.014041813090443611, + 0.006027272902429104, + -0.02252236008644104, + 0.0018938732100650668, + -0.01583651639521122, + -0.012932640500366688, + 0.009612826630473137, + 0.002745971782132983, + -0.021659670397639275, + -0.01495071779936552, + -0.018378369510173798, + -0.019502945244312286, + -0.0036452484782785177, + -0.010128899477422237, + -0.0019256463274359703, + 0.006951583083719015, + -0.002489860635250807, + -0.0034334275405853987, + -0.019410515204072, + -0.013425606302917004, + 0.015582330524921417, + 0.009250804781913757, + 0.007070973515510559, + -0.0011505737202242017, + 0.021705886349081993, + 0.009936335496604443, + 0.004059262573719025, + 0.005322486627846956, + -0.007140296511352062, + -0.008164740167558193, + -0.014511670917272568, + 0.0037492334377020597, + -0.01765432581305504, + -0.006481725722551346, + -0.0032832270953804255, + 0.08953484892845154, + 0.009982550516724586, + -0.00286536174826324, + -0.007109486497938633, + -0.002832625759765506, + -0.027914170175790787, + -0.0025014146231114864, + 0.01591354049742222, + 0.012370351701974869, + -0.00985160656273365, + -0.002253006212413311, + -0.023816393688321114, + 0.014118839055299759, + 0.01973402313888073, + -0.014126542024314404, + 0.008742433972656727, + 0.02822227217257023, + 0.022630196064710617, + 0.009720662608742714, + 0.015127877704799175, + -0.007798867765814066, + 0.006820639129728079, + -0.016375696286559105, + 0.01825512759387493, + -0.013132908381521702, + 0.026912832632660866, + -0.0004173838533461094, + 0.002994379960000515, + 0.010960779152810574, + 0.021320756524801254, + 0.0038320361636579037, + 0.0005950247286818922, + -0.019287273287773132, + -0.006316119804978371, + -0.0028172205202281475, + 0.011469149962067604, + 0.00528012216091156, + 0.009443369694054127, + -0.010883753187954426, + 0.018948359414935112, + -0.0033275168389081955, + -0.014373023994266987, + 0.028453350067138672, + 0.024525031447410583, + -0.009381748735904694, + -0.019918885082006454, + 0.005784641485661268, + -0.0015029669739305973, + 0.008942701853811741, + 0.007109486497938633, + -0.006346930284053087, + -0.020981842651963234, + 0.016683800145983696, + 0.008318792097270489, + 0.008372710086405277, + 0.01128428801894188, + 0.007671774830669165, + -0.011523067951202393, + -0.012262515723705292, + 0.004163247533142567, + -0.01657596416771412, + -0.010252141393721104, + -0.015605437569320202, + -0.006385443266481161, + -0.012131571769714355, + -0.014958420768380165, + -0.024771515280008316, + -0.020304014906287193, + -0.0061620683409273624, + -0.002977049211040139, + -0.009743770584464073, + 0.020889410749077797, + -0.001788925495930016, + -0.028946315869688988, + -0.007159553002566099, + 0.011006994172930717, + -0.0005194431287236512, + 0.009266209788620472, + 0.0029019489884376526, + 0.010806727223098278, + 0.007001650054007769, + 0.005079855211079121, + -0.01580570451915264, + -0.02326180785894394, + -0.010768214240670204, + 0.0021952367387712, + 0.02147480845451355, + -0.016652990132570267, + 0.021182110533118248, + -0.022383712232112885, + -0.01585192047059536, + -0.00025490744155831635, + -0.004802561830729246, + 0.0008309163968078792, + 0.003878251649439335, + -0.003937946632504463, + -0.01939510926604271, + 0.0009546391665935516, + 0.0009618603507988155, + -0.0024648273829370737, + 0.01352574024349451, + 0.010490921325981617, + -0.012863317504525185, + -0.004078519064933062, + -0.003065628930926323, + -0.018902145326137543, + 0.015389765612781048, + 0.010229033417999744, + -0.025403127074241638, + -0.004906546790152788, + -0.014396131969988346, + -0.016822446137666702, + 0.010737404227256775, + 0.004694725852459669, + -0.022399118170142174, + 0.016652990132570267, + 0.0189637653529644, + -0.004186355043202639, + -0.006970839574933052, + -0.019579971209168434, + -0.019533757120370865, + 0.00198726705275476, + 0.007009352557361126, + -0.01868647150695324, + 0.013456416316330433, + 0.0016753122908994555, + -0.002744046039879322, + -0.005137624219059944, + -0.018563231453299522, + 0.0048911417834460735, + 0.013941679149866104, + 0.017084334045648575, + 0.012408864684402943, + 0.004779454320669174, + 0.010691188275814056, + -0.009743770584464073, + -0.0014557886170223355, + 0.0016964944079518318, + 0.027344178408384323, + -0.02467908337712288, + 0.011199559085071087, + 0.010637270286679268, + 0.004332704469561577, + 0.021336160600185394, + 0.014280593022704124, + 0.030040083453059196, + -0.01757729984819889, + -0.020535092800855637, + 0.0024436451494693756, + 0.004548376891762018, + 0.03697241097688675, + -0.03225842863321304, + 0.013156015425920486, + -0.0033525503240525723, + 0.010298356413841248, + 0.016005972400307655, + -0.021212920546531677, + 0.01974942907691002, + -0.0051183681935071945, + -0.005538159050047398, + -0.005680656526237726, + -0.006732059642672539, + -0.02082779072225094, + -0.0051183681935071945, + -0.007275091949850321, + 0.014665722846984863, + 0.012069950811564922, + 0.01902538537979126, + 0.023153971880674362, + -0.010637270286679268, + 0.00021266356634441763, + 0.01301736943423748, + 0.006431658752262592, + -0.03167303279042244, + 0.013055882416665554, + -0.010960779152810574, + 0.0064740232191979885, + 0.005199245177209377, + -0.019472135230898857, + 0.021336160600185394, + -0.0033544758334755898, + -0.026188790798187256, + 0.008164740167558193, + 0.0032447141129523516, + 0.009743770584464073, + -0.02566501498222351, + -0.002474455628544092, + -0.014426941983401775, + 0.0048102643340826035, + 0.0094818826764822, + -0.010490921325981617, + 0.01551300659775734, + -0.0015328144654631615, + 0.0016156173078343272, + -0.01445775292813778, + -0.010814430192112923, + 0.017777567729353905, + 0.010876050218939781, + -0.0011486480943858624, + -0.008203253149986267, + 0.006770572625100613, + -0.0060696373693645, + 0.010321464389562607, + -0.0005165546317584813, + -0.003989939112216234, + -0.016113808378577232, + -0.0062506478279829025, + -0.01462720986455679, + -0.00643936125561595, + -0.002601548098027706, + -0.02675878070294857, + -0.026620134711265564, + 0.023323427885770798, + -0.005653697531670332, + -0.010868348181247711, + 0.004167098551988602, + 0.014249783009290695, + 0.01494301576167345, + 0.022768842056393623, + 0.024771515280008316, + 0.013456416316330433, + 0.002980900462716818, + 0.02039644680917263, + -0.005638292524963617, + -0.0068129366263747215, + -0.0015328144654631615, + 0.0031792421359568834, + -0.001391279511153698, + 0.013379390351474285, + 0.0007331898668780923, + 0.043103668838739395, + -0.002318478189408779, + -0.008365008048713207, + 0.017407843843102455, + -0.0008145484025590122, + 0.043103668838739395, + 0.01757729984819889, + 0.006289160810410976, + 0.003221606370061636, + -0.011145641095936298, + -0.012177787721157074, + -0.000642203027382493, + -0.017685135826468468, + -0.0018775052158161998, + 0.008719326928257942, + -0.01722298003733158, + 0.01338709332048893, + -0.00501053174957633, + -0.006732059642672539, + -3.3247488318011165e-5, + -0.009813093580305576, + -0.01035997737199068, + -0.006219837814569473, + 0.026604730635881424, + 0.027744712308049202, + 0.011161046102643013, + -0.005126070696860552, + 0.007768057286739349, + 0.0011756070889532566, + -0.020673738792538643, + -0.007001650054007769, + 0.006863003596663475, + -0.01586732640862465, + 0.004479053430259228, + -0.012262515723705292, + 0.016991904005408287, + -0.022599386051297188, + 0.008873377926647663, + 0.01358736027032137, + 0.018932955339550972, + 0.0009132378036156297, + 0.0034334275405853987, + 0.012054545804858208, + 0.017746755853295326, + -0.006762870121747255, + 0.008950403891503811, + 0.008056904189288616, + -0.030871961265802383, + -0.0034372787922620773, + -0.002917354227975011, + -0.0048949928022921085, + 0.007598600350320339, + -0.003446907037869096, + -0.020273204892873764, + 0.006212135311216116, + -0.03740375488996506, + -0.006100447382777929, + 0.018239721655845642, + -0.005441876593977213, + -0.00203155679628253, + 0.0010331092635169625, + -0.020165368914604187, + 0.009297020733356476, + -0.003391063306480646, + -0.011854278855025768, + -0.005172286182641983, + -0.006859152112156153, + 0.0004749125218950212, + 0.020843196660280228, + 0.007737246807664633, + -0.0008400632068514824, + -0.0044559454545378685, + 0.004883439280092716, + -0.01477355882525444, + 0.006112001370638609, + 0.0018004793673753738, + 0.022768842056393623, + 0.009474179707467556, + -0.008534464985132217, + -0.0015549594536423683, + 0.003641397226601839, + 0.006616520695388317, + 0.0014644539915025234, + -0.016391102224588394, + -0.007020906545221806, + -0.024216927587985992, + -0.000550253433175385, + 0.025942306965589523, + -0.006993947550654411, + -0.0035239327698946, + -0.009736067615449429, + 0.004748643841594458, + 3.851292785839178e-5, + 0.010013360530138016, + -0.00373767944984138, + -0.003148431656882167, + 0.012963451445102692, + 0.014280593022704124, + 0.008988916873931885, + -0.03065628930926323, + 0.01659136824309826, + -0.017823781818151474, + -0.010167412459850311, + -0.010036468505859375, + -0.0077064367942512035, + 0.015050851739943027, + 0.0015645876992493868, + -0.006839895620942116, + -0.013125205412507057, + -0.007737246807664633, + -0.01937970519065857, + -0.005796195473521948, + -0.007883596234023571, + 0.0008530613267794251, + 0.005603631027042866, + 0.012686158530414104, + 0.005803897976875305, + 0.002337734680622816, + 0.021582644432783127, + 0.019502945244312286, + 0.0073713744059205055, + 0.006208283826708794, + 0.0035008250270038843, + 0.0032312346156686544, + -0.010028766468167305, + -0.01319452840834856, + 0.00985160656273365, + 0.01512017473578453, + -0.014642614871263504, + 0.006192878820002079, + -0.02467908337712288, + 0.005954098422080278, + -0.014226675033569336, + -0.009250804781913757, + 0.004852628801018, + 0.0003422836307436228, + -0.0070594195276498795, + 0.02107427269220352, + -0.025110429152846336, + 0.00598875992000103, + -0.010498624294996262, + -0.018794307485222816, + -0.0135796582326293, + -0.01302507147192955, + -0.01860944554209709, + 0.021043462678790092, + 0.003104141913354397, + -0.0035662970039993525, + -0.012324136681854725, + 0.005742277484387159, + 0.011892791837453842, + 0.006447063758969307, + 4.952521703671664e-5, + -0.004706279840320349, + 0.016730016097426414, + 0.021736696362495422, + 0.014288295991718769, + 0.016483532264828682, + 0.021197514608502388, + -0.01517409272491932, + -0.020288608968257904, + -0.004779454320669174, + 0.003086811164394021, + 0.01407262310385704, + -0.0030694801826030016, + -0.0009738956578075886, + -0.022352902218699455, + 0.030070893466472626, + 0.003712646197527647, + -0.0017032341565936804, + -0.0067282081581652164, + -0.016344886273145676, + 0.01860944554209709, + 0.009589718654751778, + 0.0014086102601140738, + -0.02535691112279892, + -0.0005362925003282726, + 0.009959442541003227, + 0.013102097436785698, + -0.019903481006622314, + 0.010937671177089214, + 0.01688406802713871, + -0.024463411420583725, + 0.006127406843006611, + 0.0094818826764822, + 0.009035132825374603, + 0.025957712903618813, + -0.002761376788839698, + 0.002709384309127927, + -0.0005155918188393116, + 0.020565902814269066, + 0.002208716468885541, + 0.009789985604584217, + -0.001158276223577559, + 0.006447063758969307, + -0.012254813686013222, + 0.02563420496881008, + -0.004864182788878679, + -0.0015299259684979916, + 0.020242394879460335, + 0.0016550930449739099, + -0.021906152367591858, + -0.004124734550714493, + 0.013764520175755024, + -0.014195865020155907, + -0.011022400110960007, + 0.03134952113032341, + -0.02360072173178196, + 0.0037396051920950413, + 0.014180460013449192, + -0.009990253485739231, + 0.003391063306480646, + 0.011176451109349728, + 0.013872356154024601, + 0.009828498587012291, + -0.006223688833415508, + 0.0011351684806868434, + 0.022399118170142174, + 0.0010764362523332238, + 0.002154798246920109, + -0.010783619247376919, + 0.019502945244312286, + 0.00198149005882442, + -0.010121197439730167, + -0.017099739983677864, + -0.013256149366497993, + -0.0010475516319274902, + -0.00012372278433758765, + 0.036048099398612976, + -0.028591996058821678, + -0.0004424172511789948, + -0.00703631155192852, + -0.011569282971322536, + 0.0012603355571627617, + -0.010691188275814056, + -0.008002986200153828, + 0.01233954168856144, + 0.011345908045768738, + -0.003485419787466526, + 0.012624537572264671, + -0.005823154468089342, + 0.009250804781913757, + 0.008180146105587482, + -0.007525425869971514, + 0.001007113023661077, + 0.008395818062126637, + -0.009420261718332767, + 0.014673424884676933, + 0.006955434568226337, + -0.012031438760459423, + -0.025926902890205383, + 0.0016050261911004782, + -0.018393773585557938, + 0.0037338281981647015, + 0.011053210124373436, + -0.0094818826764822, + -0.0046600643545389175, + 0.0062660533003509045, + 0.015928946435451508, + -0.005734574981033802, + -0.006273755803704262, + 0.009951740503311157, + -0.0007736284169368446, + -0.01216238271445036, + 0.01659136824309826, + -0.006335376296192408, + 0.006516387220472097, + 0.01693028211593628, + -0.002900023479014635, + -0.0015318517107516527, + 0.006986245047301054, + -0.0038320361636579037, + 0.000918051868211478, + 0.00789515022188425, + 0.0016743495361879468, + 0.008326495066285133, + -0.019595377147197723, + 0.01495071779936552, + 0.007590897846966982, + 0.011553877964615822, + -0.003369881073012948, + -0.015351252630352974, + -0.011045507155358791, + 0.02002672106027603, + -0.005961800925433636, + 0.021366972476243973, + 0.009967145510017872, + -0.0037684899289160967, + 0.021567238494753838, + 0.0012940343003720045, + 0.002745971782132983, + -0.02318478189408779, + 0.0009450109209865332, + 0.002898097736760974, + 0.01757729984819889, + 0.012077653780579567, + 0.016606774181127548, + 0.014927610754966736, + 0.009073645807802677, + -0.006524089723825455, + -0.02079698070883751, + 0.01248589064925909, + -0.0005242571933194995, + -0.007664072327315807, + 0.010036468505859375, + 0.007752652280032635, + 0.019487541168928146, + 0.0140957310795784, + 0.03034818544983864, + -0.010737404227256775, + 0.007652518339455128, + 0.008210956119000912, + 0.01868647150695324, + -0.010036468505859375, + -0.0017898882506415248, + -0.035431891679763794, + 0.0025168198626488447, + 0.0034160965587943792, + 0.00789515022188425, + -0.004733238834887743, + -0.007640964817255735, + 0.00502208573743701, + 0.03336760029196739, + 0.009736067615449429, + 0.015420575626194477, + -0.012586024589836597, + -0.0019179437076672912, + -0.0010128900175914168, + -0.00933553371578455, + 0.024047471582889557, + -0.0052262041717767715, + -0.012347244657576084, + 0.001245893188752234, + -0.004490607418119907, + -0.02320018783211708, + 0.002936610719189048, + 0.027359582483768463, + 0.007359820418059826, + -0.002304998692125082, + 0.019965101033449173, + -0.01971861906349659, + -0.008234064094722271, + -0.008519059047102928, + 0.00517998868599534, + -0.006454766727983952, + 0.0028769157361239195, + -0.022399118170142174, + -0.005126070696860552, + 0.010852943174540997, + -0.0002512968494556844, + 0.0044713509269058704, + 0.006108150351792574, + -0.00987471453845501, + -0.00035070834564976394, + -0.012239407747983932, + 0.01497382577508688, + 0.006219837814569473, + -0.008395818062126637, + 0.011761847883462906, + -0.01211616676300764, + 0.02603473886847496, + -0.010621865279972553, + -0.006200581323355436, + -0.001969936303794384, + 0.0039225416257977486, + -0.015235713683068752, + -0.004725536331534386, + -0.001550145330838859, + -0.0073983334004879, + -0.02880766987800598, + -0.004186355043202639, + -0.0035027507692575455, + -0.002568812109529972, + -0.007533128373324871, + -0.004020749591290951, + 0.0012035289546474814, + -0.00448290491476655, + -0.0030309674330055714, + -0.001890984713099897, + -0.005919436924159527, + -0.006223688833415508, + -0.011469149962067604, + 0.014842881821095943, + -0.007560087367892265, + 0.0023454371839761734, + -0.012046843767166138, + 0.02498718723654747, + -0.005384107120335102, + 0.022445334121584892, + -0.0024301656521856785, + -0.005237758159637451, + 0.0012574470601975918, + 0.0023800989147275686, + 0.013502632267773151, + 0.009905524551868439, + -0.0014991157222539186, + 0.008881080895662308, + 0.008442034013569355, + 0.006011867895722389, + -0.03213518485426903, + 0.012917235493659973, + 0.004440540447831154, + 0.002283816458657384, + -0.03614053130149841, + -0.0017841113731265068, + 0.009235399775207043, + -0.026543108746409416, + 0.0009652302251197398, + 0.01833215355873108, + -0.03201194480061531, + 0.00711718900129199, + -0.0022684114519506693, + -0.007883596234023571, + -0.014280593022704124, + 0.008842567913234234, + -8.129837806336582e-5, + 0.006751316133886576, + 0.002027705544605851, + -0.0020373337902128696, + 0.0006759018870070577, + -0.023770177736878395, + 0.0050336397252976894, + -0.01834755763411522, + 0.02215263620018959, + -0.0048102643340826035, + -0.009959442541003227, + 0.004902695771306753, + -0.0172691959887743, + 0.025803660973906517, + 0.0087809469550848, + -0.022768842056393623, + -0.020211584866046906, + 0.010306059382855892, + 0.001890984713099897, + 0.012262515723705292, + -0.02045806683599949, + 0.01689947210252285, + 0.003955277614295483, + 0.003537412267178297, + -0.023739367723464966, + -0.00917377881705761, + 0.011823468841612339, + -0.028268488124012947, + 0.014704235829412937, + -0.0026246560737490654, + 0.0013498780317604542, + -0.01589813642203808, + -0.008888783864676952, + 0.0016348737990483642, + -0.02323099784553051, + 0.0015020041028037667, + 0.00862689595669508, + -0.007879745215177536, + 0.0015626619569957256, + -1.4434825061471201e-5, + 0.0011573134688660502, + 0.0072673894464969635, + 0.00020532203780021518, + -0.009058240801095963, + 0.005946395918726921, + -0.022106420248746872, + -0.0034892712719738483, + -0.019626187160611153, + -0.023800989612936974, + 0.014249783009290695, + 0.0005584374302998185, + -0.0025976968463510275, + -0.006793680135160685, + -0.012324136681854725, + -0.01004417147487402, + -0.014958420768380165, + -0.014034110121428967, + 0.0022376009728759527, + -0.010282951407134533, + 0.006447063758969307, + -0.008511357009410858, + 0.014272890985012054, + 0.011538472957909107, + -0.0028576592449098825, + -0.014696532860398293, + 0.013610468246042728, + 0.00899661984294653, + 0.005283973645418882, + 0.0002679055614862591, + -0.020504282787442207, + -0.02993224747478962, + 0.0018284012330695987, + 0.0048064133152365685, + -0.006551048718392849, + 0.018470799550414085, + -0.017038118094205856, + 0.003435353050008416, + -0.003556668758392334, + 0.00012161659833509475, + -0.0023608424235135317, + -0.007617856841534376, + -0.0021105085033923388, + 0.022768842056393623, + -0.018224317580461502, + 0.0037010922096669674, + 0.008565274998545647, + 0.00342379929497838, + -0.0009089050581678748, + 0.01055254228413105, + -0.018147291615605354, + -0.0020450365263968706, + -0.001585769816301763, + 0.0034680890385061502, + -0.003939872607588768, + 0.012940343469381332, + -0.03518541157245636, + -0.015767192468047142, + -0.014249783009290695, + 0.018024049699306488, + 0.019087007269263268, + -0.0057037645019590855, + -0.011207262054085732, + 0.000447231373982504, + -0.013641278259456158, + 0.013294662348926067, + -0.0026862765662372112, + -0.012709265574812889, + 0.009189184755086899, + -0.018855929374694824, + 0.009789985604584217, + -0.013071287423372269, + 0.01683785207569599, + -0.00021711662702728063, + 0.009558908641338348, + 0.006085042376071215, + 0.019487541168928146, + -0.0013960936339572072, + -0.01441153697669506, + 0.015258821658790112, + -0.0033082603476941586, + 0.021197514608502388, + 0.008056904189288616, + -0.00511066522449255, + -0.015043148770928383, + 0.012663050554692745, + 0.010983887128531933, + -0.022953703999519348, + 0.0044752019457519054, + -0.019256463274359703, + 0.00369338970631361, + -0.009959442541003227, + 0.0014249782543629408, + 0.016344886273145676, + 0.005815451964735985, + 0.01976483315229416, + -0.004186355043202639, + -0.00987471453845501, + -0.033952996134757996, + -0.011654011905193329, + -0.016976498067378998, + -0.014611804857850075, + 0.012601429596543312, + 0.00879635289311409, + 0.018501609563827515, + 0.017685135826468468, + 0.004625402390956879, + 0.021413186565041542, + -0.015351252630352974, + 0.0021586494985967875, + 0.02882307395339012, + 0.004821818321943283, + 0.00526856817305088, + -0.010660378262400627, + -0.0204426608979702, + -0.006543346215039492, + 0.0070478655397892, + 0.012539808638393879, + -0.01494301576167345, + -0.006901516579091549, + -0.003375658066943288, + 0.03515459969639778, + -0.014172757044434547, + 0.010367680341005325, + -0.003937946632504463, + -0.0011929379543289542, + 0.018932955339550972, + 0.003679910209029913, + -0.008942701853811741, + -0.00615821685642004, + 0.011369016021490097, + -0.016421912238001823, + 0.008341900072991848, + -0.002593845594674349, + 0.00494120828807354, + 0.01391857210546732, + -0.01320993434637785, + 0.01391857210546732, + 0.0003138803585898131, + -0.008865675888955593, + -0.03339840844273567, + 0.007055568043142557, + 0.0027517485432326794, + -0.0057884929701685905, + 0.010398490354418755, + -0.01370289921760559, + -0.00789515022188425, + 0.0036163637414574623, + 0.008742433972656727, + 0.011615498922765255, + 0.01651434227824211, + -0.022106420248746872, + -0.01264764554798603, + -0.006331525277346373, + 0.008472844026982784, + 0.012586024589836597, + 0.01072199922055006, + -0.021320756524801254, + 0.019271869212388992, + -0.0013623947743326426, + -0.0004862257046625018, + -0.006046529393643141, + -0.010082684457302094, + 0.0022241214755922556, + -0.02187534235417843, + -0.02005753293633461, + -0.011299693025648594, + 0.016699204221367836, + 0.0035662970039993525, + 0.0064740232191979885, + -0.0022433779668062925, + 0.004444391932338476, + 0.0028229975141584873, + -0.0020373337902128696, + 0.010876050218939781, + -0.004972018767148256, + 0.006281458307057619, + 0.008857972919940948, + -0.004606145899742842, + 0.005853964947164059, + 0.014442347921431065, + -0.016668394207954407, + -0.0008713549468666315, + -0.0011130236089229584, + -0.002832625759765506, + -0.01791621372103691, + -0.0087809469550848, + 0.006073488388210535, + -0.0017918138764798641, + 0.008365008048713207, + 0.0035990329924970865, + 0.008311090059578419, + 0.0025976968463510275, + 0.0022260472178459167, + -0.0021124340128153563, + 0.018455393612384796, + 0.0030174877028912306, + 0.014989230781793594, + 0.01353344228118658, + 0.018948359414935112, + -0.023123161867260933, + -0.016036782413721085, + 0.024062877520918846, + -0.0221372302621603, + -0.01106861513108015, + 0.026604730635881424, + 0.011030102148652077, + 0.003240862861275673, + 0.01973402313888073, + -0.000714896188583225, + -0.018778903409838676, + -0.009212291799485683, + 0.01694568805396557, + -9.816282727115322e-6, + 0.00048478145617991686, + -0.011569282971322536, + 0.012108463793992996, + 0.008442034013569355, + -0.015990566462278366, + -0.00044458359479904175, + -0.0153127396479249, + -0.012347244657576084, + -0.03315192833542824, + -0.0036837614607065916, + -0.003471940290182829, + 0.007313604932278395, + -0.005434174090623856, + 0.010706593282520771, + 0.007240430451929569, + -0.002549555851146579, + 0.007752652280032635, + 0.008904188871383667, + 0.002335808938369155, + -0.014503967948257923, + -0.0038243336603045464, + -0.02256857603788376, + -0.00588862644508481, + 0.031241687014698982, + -0.0001538110082037747, + 0.013880059123039246, + -0.0020450365263968706, + 0.0007692957296967506, + -0.0039090621285140514, + -0.003119547152891755, + -0.010845240205526352, + -0.0065818591974675655, + 0.02290748804807663, + -0.005981057416647673, + 0.010868348181247711, + -0.0007457065512426198, + -0.0072866459377110004, + -0.008642300963401794, + 0.008911890909075737, + -0.016314076259732246, + 0.009104455821216106, + 0.004305745009332895, + 0.02142859250307083, + 0.0022684114519506693, + -0.004775602836161852, + -0.008133930154144764, + -0.006589561700820923, + 0.0006200580974109471, + -0.0024571246467530727, + -0.01075280923396349, + -0.007070973515510559, + 0.010437003336846828, + -0.007136445492506027, + 0.0016050261911004782, + 0.021197514608502388, + -0.01106861513108015, + 0.014573291875422001, + 0.0050336397252976894, + -0.013803033158183098, + -0.006127406843006611, + -0.017161360010504723, + -0.015643950551748276, + -0.011053210124373436, + -0.01931808330118656, + 0.025603393092751503, + -0.03389137610793114, + 0.011369016021490097, + 0.002574589103460312, + 0.005387958604842424, + -0.0033525503240525723, + -0.022661006078124046, + -0.007494615390896797, + 0.00828798208385706, + 0.000734152679797262, + 0.0008983139996416867, + 0.023061539977788925, + 0.01934889517724514, + 0.022784247994422913, + -0.022352902218699455, + -0.001078361994586885, + -0.010067279450595379, + 0.022322092205286026, + -0.018393773585557938, + -0.0025129683781415224, + -0.00042147585190832615, + -0.015366657637059689, + 0.01055254228413105, + -0.0036645049694925547, + 0.015474493615329266, + 0.006735911127179861, + 0.01728460192680359, + 0.0030714059248566628, + -0.00650868471711874, + -0.028946315869688988, + 0.00546113308519125, + 0.0035297097638249397, + -0.014480860903859138, + -0.017130549997091293, + 0.024186117574572563, + 0.02500259131193161, + 0.00046624711831100285, + -0.005615184549242258, + 0.009281615726649761, + 0.003227383363991976, + -0.006970839574933052, + -0.02001131698489189, + -0.003830110654234886, + -0.004871885292232037, + -0.0006980468169786036, + 0.0005622887401841581, + -0.022707222029566765, + 0.011523067951202393, + 0.02179831638932228, + 0.004817967303097248, + -0.03761942684650421, + 0.004713982343673706, + -0.004486755933612585, + 0.045630116015672684, + 0.03909832239151001, + 0.028669022023677826, + 0.0033024835865944624, + -0.0026131020858883858, + 0.0021143597550690174, + 0.019626187160611153, + -0.00659726420417428, + -0.006200581323355436, + 0.0020257800351828337, + 0.011484554968774319, + -0.010976184159517288, + -0.011684821918606758, + -0.017792971804738045, + -0.026912832632660866, + 0.008788649924099445, + -0.002615027828142047, + 0.002678574062883854, + 0.00028042224585078657, + -0.022599386051297188, + -0.0011707929661497474, + -0.014704235829412937, + 0.02495637722313404, + 0.007325158454477787, + -0.0014423091197386384, + -0.000876650505233556, + 0.008950403891503811, + 0.01302507147192955, + 0.03268977254629135, + -0.028330108150839806, + -0.013256149366497993, + 0.0062699043191969395, + -0.004640807863324881, + 0.015574627555906773, + 0.011145641095936298, + -0.020581308752298355, + -0.0284841600805521, + 0.0044752019457519054, + -0.007136445492506027, + 0.025418531149625778, + 0.005992611404508352, + -0.004929654765874147, + 0.00492195226252079, + 0.004968167748302221, + 0.020473472774028778, + 0.008180146105587482, + 0.011376718990504742, + -0.0010042245266959071, + -0.024817729368805885, + -0.002549555851146579, + -0.00099074502941221, + -0.007459953892976046, + 0.007124891504645348, + 0.005665251519531012, + -0.010398490354418755, + -0.01440383493900299, + 0.026635540649294853, + -0.003751159179955721, + -0.003402617061510682, + -0.025141239166259766, + -0.0010629567550495267, + -0.0019160180818289518, + 0.0043904734775424, + -0.001969936303794384, + 0.015474493615329266, + 0.007436846382915974, + -0.014288295991718769, + -0.010013360530138016, + -0.008888783864676952, + 0.0009478994179517031, + -0.008257171139121056, + -0.0026959048118442297, + -0.0016993829049170017, + -0.0015742158284410834, + -0.01129199005663395, + 0.0011919750832021236, + -0.01302507147192955, + 0.008418926037847996, + 0.014835179783403873, + 0.0180086437612772, + 0.003934095613658428, + 0.0033544758334755898, + 0.00677827512845397, + 0.02107427269220352, + -0.0001710214710328728, + 0.007887447252869606, + 0.01163090392947197, + -0.00023216073168441653, + 0.011523067951202393, + -0.0005179988802410662, + -0.003525858512148261, + 0.013733710162341595, + -0.0037010922096669674, + -0.006516387220472097, + -0.0027979640290141106, + -0.01794702373445034, + -0.007151850499212742, + -0.017854593694210052, + 0.01496612373739481, + 0.00536099961027503, + 0.0014211270026862621, + -0.012293326668441296, + 0.004259529523551464, + 0.006782126612961292, + 0.01865566149353981, + -0.021967774257063866, + 0.0022895934525877237, + 0.005954098422080278, + 0.005611333530396223, + 0.0022972961887717247, + 0.012077653780579567, + -0.0017552266363054514, + -0.01685325615108013, + -0.008503654040396214, + -0.004540673922747374, + 0.014011003077030182, + 0.004213314037770033, + -0.0028249232564121485, + 0.013317770324647427, + 0.025603393092751503, + 0.002395504154264927, + 0.00403230357915163, + -0.00441358145326376, + 0.005002829246222973, + -0.01528192963451147, + 0.006046529393643141, + 0.028638212010264397, + 0.015636248514056206, + 0.020935626700520515, + 0.005029788240790367, + -0.002505265874788165, + 0.00598875992000103, + 0.004213314037770033, + 0.012331838719546795, + 0.005195393692702055, + -0.0036702819634228945, + 0.001380688394419849, + 0.006254499312490225, + -0.02004212699830532, + -0.01109942514449358, + 0.009951740503311157, + -0.004282637499272823, + 0.009112158790230751, + -0.02849956601858139, + 0.02564960904419422, + 0.009451072663068771, + -0.013132908381521702, + -0.018563231453299522, + -0.00018329746671952307, + 0.011723334901034832, + 0.022614790126681328, + -0.02356991171836853, + 0.007910555228590965, + 0.016791636124253273, + -0.008988916873931885, + -0.006674290169030428, + -0.028576591983437538, + -0.008010689169168472, + -0.0008564312011003494, + 0.006836044602096081, + -0.0012150828260928392, + 0.005534307565540075, + -0.0029231312219053507, + 0.00600031390786171, + -0.015643950551748276, + -0.01791621372103691, + -0.007074824534356594, + -0.013348580338060856, + -0.005507348570972681, + 0.014642614871263504, + 0.0001220378399011679, + -0.014996933750808239, + -0.004629253875464201, + 0.01900998130440712, + 0.008642300963401794, + 0.016976498067378998, + -0.00914296880364418, + -0.012247110716998577, + 0.0016233198111876845, + -0.0037203487008810043, + 0.0077064367942512035, + -0.0017850741278380156, + 0.0064778742380440235, + -0.0029597184620797634, + -0.0007972175953909755, + -0.022106420248746872, + -0.002840328263118863, + 0.011923601850867271, + -0.014873692765831947, + -0.012955748476088047, + -0.008788649924099445, + 0.009065942838788033, + -0.01723838597536087, + -0.010121197439730167, + 0.019656997174024582, + -0.006396997254341841, + 0.0028037410229444504, + -0.020165368914604187, + -0.010082684457302094, + -0.006362335290759802, + 0.019117817282676697, + -0.0062467968091368675, + -0.007848934270441532, + 0.03265896067023277, + -0.0041016265749931335, + 0.010999292135238647, + 0.009035132825374603, + -0.01035997737199068, + -0.0064971307292580605, + 0.022784247994422913, + -0.012932640500366688, + 0.016730016097426414, + -0.01689947210252285, + -0.01180806290358305, + 0.01899457536637783, + 0.01391857210546732, + 0.006096596363931894, + 0.000585877918638289, + -0.019256463274359703, + -0.007151850499212742, + 0.014111136086285114, + -0.011137938126921654, + 0.009389451704919338, + -0.0012767035514116287, + 0.002233749721199274, + -0.013564253225922585, + 0.007544682361185551, + 0.006065785884857178, + 0.004163247533142567, + -0.02249155007302761, + -0.014850584790110588, + 0.003712646197527647, + -0.015081661753356457, + 0.005923287943005562, + -0.018085669726133347, + 0.02324640192091465, + -0.009058240801095963, + 0.0021470957435667515, + -0.011137938126921654, + 0.01588273048400879, + -0.018917549401521683, + -0.008395818062126637, + -0.008080012165009975, + 0.009689852595329285, + 0.0036760589573532343, + -0.009558908641338348, + -0.007995283231139183, + 0.03262815251946449, + 0.024478815495967865, + 0.016760826110839844, + -0.006566454190760851, + -0.001111097983084619, + -0.017839187756180763, + 0.0007664072327315807, + 0.00110339536331594, + -0.01390316616743803, + 0.017022714018821716, + 0.013995598070323467, + -0.02463286742568016, + 0.0004448243125807494, + -0.040361545979976654, + 0.0005704727373085916, + -0.0060696373693645, + 0.006458617746829987, + 0.007841232232749462, + 0.00809541717171669, + -0.008988916873931885, + -0.020904816687107086, + -0.013078990392386913, + -0.004332704469561577, + 0.003391063306480646, + 0.053702425211668015, + 0.016314076259732246, + -0.0006431658985093236, + -0.014858286827802658, + 0.004009195603430271, + -0.012832507491111755, + 0.007213470991700888, + -0.0005329226260073483, + -0.015959756448864937, + 0.0030829596798866987, + 0.015990566462278366, + -0.0069130705669522285, + -0.000529552751686424, + 0.007124891504645348, + -0.011176451109349728, + 0.0022953704465180635, + -0.00024985260097309947, + -0.013833843171596527, + -0.015189498662948608, + 0.0071441479958593845, + -0.0027074587997049093, + 0.010953076183795929, + -0.002913502976298332, + -0.004140139557421207, + -0.0033140373416244984, + 0.0020103747956454754, + 0.008080012165009975, + -0.009096753783524036, + -0.017854593694210052, + -0.007941365242004395, + 0.029470091685652733, + -0.0005040379473939538, + -0.030902773141860962, + 0.010098089464008808, + 0.005696061998605728, + 0.0074792103841900826, + 0.0002476862573530525, + 0.004694725852459669, + 0.004833372309803963, + -0.010937671177089214, + -0.03977615013718605, + 0.0012612983118742704, + 0.0063546327874064445, + -0.012131571769714355, + 0.002362768165767193, + -0.005984908901154995, + -0.005430322606116533, + 0.02249155007302761, + -0.0090043218806386, + -0.0053725531324744225, + 0.002576514845713973, + 0.004536822903901339, + -0.010567947290837765, + 0.0005396623746491969, + -0.011199559085071087, + 0.009959442541003227, + 0.021551834419369698, + -0.020951032638549805, + -0.0070478655397892, + -0.01352574024349451, + 0.00220101373270154, + 0.007494615390896797, + 0.013479524292051792, + 0.016082998365163803, + -0.003570148255676031, + 0.01580570451915264, + 0.0032813013531267643, + -9.339384996565059e-5, + 0.004544525407254696, + -0.0011967892060056329, + 0.0180086437612772, + -0.020180772989988327, + -0.020596712827682495, + -0.015035446733236313, + -0.005264717154204845, + -0.013325472362339497, + -0.014203567057847977, + -0.03241248056292534, + -0.01722298003733158, + -0.004598443396389484, + 0.008149335160851479, + -0.010860645212233067, + 0.013880059123039246, + 0.004355811979621649, + -0.006119703873991966, + 0.010837537236511707, + -0.016344886273145676, + -0.0006109112873673439, + 0.020257798954844475, + 0.018748093396425247, + 0.006146663334220648, + -0.0035855534952133894, + -0.010999292135238647, + 0.007255835458636284, + 0.01720757596194744, + -0.010013360530138016, + -0.013880059123039246, + -0.002362768165767193, + 0.005726872012019157, + 0.01588273048400879, + -0.0006431658985093236, + 0.006882260087877512, + -0.0010773991234600544, + 0.010637270286679268, + -0.023076945915818214, + -0.027667686343193054, + -0.005595928058028221, + -0.01460410188883543, + -0.004617699887603521, + 0.018809713423252106, + -0.012770886532962322, + 0.014573291875422001, + 0.0005334040615707636, + 0.016452722251415253, + 0.02532610110938549, + 0.02008834294974804, + 0.006065785884857178, + 0.0071634044870734215, + 0.006651182658970356, + 0.01089915819466114, + -0.015759490430355072, + 0.02463286742568016, + 0.020504282787442207, + 0.0102213304489851, + 0.00484107481315732, + 0.014681127853691578, + 0.005403363611549139, + 0.017469463869929314, + 0.003073331667110324, + -0.010960779152810574, + 0.002867287490516901, + -0.0012256739428266883, + -0.004833372309803963, + -0.0014009077567607164, + -0.005160732194781303, + -0.014388429000973701, + -0.0008636523853056133, + -0.01548219658434391, + 0.02951630763709545, + -0.004710130859166384, + -0.008619192987680435, + 0.03460001200437546, + 0.012023735791444778, + 0.0034584607928991318, + -0.007456102408468723, + 0.00590018043294549, + -0.028653617948293686, + 0.01248589064925909, + 0.004902695771306753, + 0.008565274998545647, + -0.01318682637065649, + -0.004494458436965942, + -0.008365008048713207, + -0.003156134393066168, + -0.0007331898668780923, + 0.018532419577240944, + -0.007082527037709951, + 0.014249783009290695, + -0.005511200055480003, + 0.021366972476243973, + -0.00711718900129199, + -0.003531635506078601, + -0.0007620745454914868, + 0.010067279450595379, + -0.007560087367892265, + -0.011207262054085732, + -0.015320442616939545, + 0.02075076475739479, + -0.009127563796937466, + -0.015736382454633713, + -0.008680813945829868, + 0.008480546064674854, + 0.00041642101132310927, + 0.0066858441568911076, + -0.0007538905483670533, + 0.0068283420987427235, + -0.0037357539404183626, + -0.0008376561454497278, + -0.026666350662708282, + -0.018794307485222816, + 0.004082370083779097, + 0.01760810986161232, + 0.024109091609716415, + -0.00984390452504158, + -0.025433937087655067, + 0.014989230781793594, + 0.00029654952231794596, + -0.004440540447831154, + 0.004440540447831154, + -0.00039283186197280884, + 0.011253477074205875, + 0.02538772113621235, + -0.008896485902369022, + -0.014319106005132198, + -0.007972176186740398, + 0.009466477669775486, + 0.011407529003918171, + -0.010976184159517288, + -0.046338751912117004, + 0.006997799035161734, + 0.01056024432182312, + -0.005272419657558203, + -0.02221425622701645, + 0.006990096066147089 + ], + "9fc6026e-f392-49cc-aea9-7315ef913cf4": [ + 0.0021295552141964436, + -0.015716388821601868, + -0.009085067547857761, + 0.023605644702911377, + -0.05190135911107063, + -0.025360537692904472, + 0.019474657252430916, + 0.021679921075701714, + -0.007912550121545792, + 0.05475888401269913, + 0.009861568920314312, + 0.027394970878958702, + -0.006922510452568531, + -0.0002105046878568828, + -0.0040416899137198925, + 0.04140305891633034, + -0.015630975365638733, + 0.035656947642564774, + -0.02304656431078911, + -0.003010884393006563, + 0.06162315607070923, + -0.0021858515683561563, + -0.0292119849473238, + 0.006724502891302109, + 0.023760944604873657, + -0.006180951837450266, + 0.004891959019005299, + 0.006126596592366695, + -0.05419980362057686, + -0.013309234753251076, + 0.010746779851615429, + 0.024785926565527916, + 0.013534420169889927, + 0.005400567781180143, + -0.009814978577196598, + -0.04578252509236336, + -0.004503708332777023, + 0.002985648112371564, + -0.015514499507844448, + -0.01073901541531086, + -0.026028329506516457, + 0.03211610019207001, + 0.003719442058354616, + -0.021198490634560585, + -0.05494524538516998, + 0.008533750660717487, + -0.014916593208909035, + -0.0102653494104743, + -0.011072911322116852, + -0.005590810440480709, + -0.0046667736023664474, + 0.005823760759085417, + 0.01522719394415617, + 0.015887219458818436, + 0.02436661534011364, + -0.027379442006349564, + -0.009620852768421173, + 0.05003775283694267, + -0.004418293479830027, + -0.06653064489364624, + -0.011375746689736843, + 0.0014394395984709263, + 0.009628618136048317, + -0.00706616323441267, + 0.013953731395304203, + -0.006309074349701405, + -0.006406137254089117, + -0.0002754153683781624, + -0.038141753524541855, + 0.00763300945982337, + 0.030392266809940338, + 0.05301951989531517, + -0.03298578038811684, + 0.02132273092865944, + -0.020561758428812027, + -0.007423353847116232, + 0.057833828032016754, + 0.017611052840948105, + 0.03456984460353851, + 0.007271936163306236, + -0.011919297277927399, + -0.002605162328109145, + 0.04193107783794403, + 0.0140546765178442, + 0.06367312371730804, + 0.02397836558520794, + -0.015002008527517319, + -0.04193107783794403, + 0.016058050096035004, + -0.03130853921175003, + 0.015172838233411312, + 0.03991217538714409, + -0.03177443891763687, + 0.004154282622039318, + -0.03224034234881401, + 0.014217741787433624, + 0.03857659175992012, + -0.011057380586862564, + 0.02444426529109478, + -0.010940905660390854, + 0.013697485439479351, + -0.0020324925426393747, + -0.021695451810956, + 0.01647736132144928, + -0.0056684608571231365, + -0.02054622955620289, + 0.011546576395630836, + 0.02031327784061432, + -0.036806169897317886, + 0.015848394483327866, + -4.182794873486273e-5, + -0.040875036269426346, + -0.009418962523341179, + -0.0012259016511961818, + -0.04320454224944115, + -0.027658982202410698, + -0.01655501127243042, + -0.017999304458498955, + 0.002626516157761216, + -0.006984630599617958, + 0.041806839406490326, + 0.00032613062649033964, + -0.005660695489495993, + 0.00011580791033338755, + -0.01858944445848465, + 0.04335984215140343, + -0.006153773982077837, + -0.013845020905137062, + 0.016213349997997284, + 0.03363804519176483, + -0.001736451406031847, + -0.029010094702243805, + 0.004266875330358744, + -0.02147803083062172, + 0.0061033014208078384, + 0.02349693514406681, + 0.004822073969990015, + 0.05413768067955971, + -0.015312609262764454, + 0.027270730584859848, + -0.06553672254085541, + -0.050721075385808945, + -0.026587409898638725, + 0.014776823110878468, + 0.026183629408478737, + 0.006041181273758411, + -0.03132406994700432, + 0.04255228117108345, + -0.054013442248106, + 0.01401585154235363, + -0.05162181705236435, + -0.007004043087363243, + 0.00960532296448946, + 0.014008086174726486, + 0.004503708332777023, + -0.00048579872236587107, + -0.0242889653891325, + 0.022937852889299393, + 0.019893966615200043, + 0.059386830776929855, + -0.0006265396368689835, + -0.07218357920646667, + -0.013379120267927647, + -0.012307547964155674, + 0.039166733622550964, + 0.029693415388464928, + 0.043453022837638855, + 0.0288237351924181, + -0.010475005023181438, + 0.0033001312986016273, + 0.011383511126041412, + -0.008370685391128063, + 0.037924330681562424, + 0.01210565771907568, + 0.011135030537843704, + -0.03882507234811783, + 0.04363938048481941, + 0.047366589307785034, + 0.01389937661588192, + -0.03537740558385849, + -0.007178755942732096, + -0.02107425034046173, + 0.023714354261755943, + -0.009380137547850609, + -0.02130720019340515, + 0.03124641813337803, + 0.012509438209235668, + 0.019800787791609764, + 0.004216402769088745, + 0.0018092484679073095, + -0.00839398056268692, + -0.020515168085694313, + -0.0011851353337988257, + 0.024226846173405647, + -0.002001432469114661, + -0.04596888646483421, + 0.011973652988672256, + 0.005089967045933008, + -0.006833212915807962, + 0.0426144003868103, + -0.015157308429479599, + -0.04957185313105583, + -0.011624227277934551, + 0.06752456724643707, + -0.045875705778598785, + 0.040036413818597794, + -0.033296383917331696, + -0.011158325709402561, + 0.024226846173405647, + -0.04242803901433945, + 0.038762953132390976, + -0.04239698126912117, + 0.009162717498838902, + 0.012703564018011093, + -0.017083032056689262, + 0.005307387560606003, + -0.015048597939312458, + 0.011981417424976826, + 0.015398023650050163, + -0.024490855634212494, + -0.009861568920314312, + 0.008588106371462345, + 0.004115457646548748, + -0.0012860805727541447, + -0.05364071950316429, + -0.002519747242331505, + -0.032675180584192276, + 0.055628564208745956, + -0.030827108770608902, + 0.015429084189236164, + 0.04742870852351189, + -0.0027701689396053553, + 0.046652209013700485, + -0.021602271124720573, + -0.01803036406636238, + -0.0025546897668391466, + 0.004072749987244606, + 0.01639971137046814, + 0.006592497229576111, + -0.025049937888979912, + 0.018682625144720078, + 0.010591479949653149, + -0.00318365590646863, + 0.009519907645881176, + -0.030190376564860344, + 0.02014244720339775, + 0.008487161248922348, + 0.03515998646616936, + 0.01441186759620905, + -0.011833881959319115, + -0.008176560513675213, + 0.04155835881829262, + 0.013146169483661652, + -0.01719174161553383, + -0.017517872154712677, + 0.04121669754385948, + 0.048391569405794144, + -0.02919645421206951, + -0.003773797070607543, + 0.012113423086702824, + 0.00167821382638067, + -0.00917048193514347, + 0.014551637694239616, + 0.0009536408470012248, + 0.015530029311776161, + -0.0292119849473238, + 0.03456984460353851, + -0.0426144003868103, + 0.006584732327610254, + 0.01849626563489437, + 0.003932979889214039, + 0.012323078699409962, + -0.01616675965487957, + 0.004061102867126465, + 0.016617130488157272, + -0.023403754457831383, + 0.00383591721765697, + 0.016508420929312706, + 0.010909845121204853, + -0.005392802879214287, + -0.009675208479166031, + 0.01346453558653593, + 1.1336617717461195e-5, + 0.010063459165394306, + -0.0020053149200975895, + -0.014163387008011341, + -0.015786275267601013, + 0.039539456367492676, + -0.036744050681591034, + 0.0029545880388468504, + -0.0005615075933746994, + 0.013643130660057068, + 0.036806169897317886, + 0.015599914826452732, + 0.015731919556856155, + 0.019738666713237762, + -0.028388893231749535, + -0.006941922940313816, + -0.009022947400808334, + 0.0281093530356884, + 0.0008240621536970139, + 0.01151551678776741, + 0.009496612474322319, + -0.03578118607401848, + 0.020095858722925186, + -0.04311136156320572, + 0.02372988499701023, + 0.026587409898638725, + -0.028994563966989517, + 0.020095858722925186, + 0.03981899470090866, + -0.018294375389814377, + -0.027705572545528412, + -0.028062762692570686, + 0.002667282475158572, + -0.007532064337283373, + -0.018620505928993225, + -0.003329250030219555, + -0.002280973130837083, + -0.01468364242464304, + 0.0076834820210933685, + -0.007819369435310364, + -0.07646986097097397, + 0.0006770121981389821, + 0.04531662538647652, + -0.0303767379373312, + 0.04966503381729126, + -0.006002356298267841, + -0.030780518427491188, + -0.01888451538980007, + -0.033451683819293976, + -0.029258575290441513, + -0.024894636124372482, + -0.0061227139085531235, + -0.017937183380126953, + -0.061188314110040665, + -0.0478014312684536, + -0.02748815156519413, + -0.021182959899306297, + -0.01202800776809454, + -0.011958122253417969, + -0.011321390978991985, + 0.01927276700735092, + -0.02366776391863823, + 0.007310761138796806, + -0.0140546765178442, + -0.0029953543562442064, + -0.00472501153126359, + -0.0038844486698508263, + 0.011942592449486256, + 0.0010803076438605785, + -0.010164404287934303, + 0.01022652443498373, + -0.012975339777767658, + 0.061033014208078384, + 0.008215385489165783, + -0.014217741787433624, + -0.03770691156387329, + 0.008626931346952915, + -0.016446301713585854, + -0.017378102988004684, + -0.03714783117175102, + -0.005233619827777147, + -0.002265443094074726, + -0.028870323672890663, + 0.013744075782597065, + -0.009760623797774315, + -0.039166733622550964, + -0.0024188021197915077, + 0.02146250009536743, + -0.03590542823076248, + 0.006639087572693825, + -0.01796824298799038, + -0.03764479234814644, + -0.0019208705052733421, + -0.036433447152376175, + 0.04873323068022728, + 0.007143813651055098, + -0.04053337499499321, + 0.011624227277934551, + 0.01042064931243658, + 0.024397676810622215, + 0.0011346627725288272, + 0.010273114778101444, + 0.018931105732917786, + 0.010917610488831997, + -0.008106674998998642, + -0.023854125291109085, + 0.00016051741840783507, + 0.0021314965561032295, + -0.028482073917984962, + -0.012470613233745098, + -0.010568184778094292, + 0.022689372301101685, + -0.026494229212403297, + -0.020189037546515465, + 0.0023722120095044374, + -0.025484777987003326, + 0.029941895976662636, + -0.002298444276675582, + -0.037520550191402435, + 0.0020480225794017315, + -0.01961442641913891, + 0.012579323723912239, + 0.007574771996587515, + -0.01880686543881893, + 0.008254210464656353, + -0.022518541663885117, + 0.030780518427491188, + -0.020654939115047455, + -0.007648539263755083, + 0.00014668598305433989, + 0.03227140009403229, + 0.013340295292437077, + 0.04749082773923874, + 0.020421989262104034, + -0.02099660038948059, + 0.0629587396979332, + -0.02919645421206951, + -0.009923689067363739, + 0.022378772497177124, + 0.025360537692904472, + -0.013456770218908787, + 0.029460465535521507, + -0.007431119214743376, + 0.03491150587797165, + -0.000655658426694572, + 0.00569952093064785, + -0.017828473821282387, + -0.029491525143384933, + -0.0024537446442991495, + 0.04177577793598175, + 0.002139261458069086, + -0.007570889312773943, + -0.005761641077697277, + -0.0387318916618824, + 0.014062441885471344, + -0.013534420169889927, + -0.011795056983828545, + -0.004457118455320597, + -0.020033737644553185, + 0.0012618148466572165, + 0.0026944600977003574, + -0.0029409993439912796, + -0.01694326102733612, + -0.02671165019273758, + -0.04006747528910637, + -0.0047716014087200165, + 0.03879401460289955, + 9.512143151368946e-5, + 0.012602618895471096, + 0.017673173919320107, + -0.07249417901039124, + -0.02741050161421299, + -0.006701207719743252, + -0.011802822351455688, + -0.004360055550932884, + -0.00882882159203291, + 0.0055209253914654255, + -0.050410475581884384, + -0.045161325484514236, + -0.014916593208909035, + 0.019738666713237762, + 0.012509438209235668, + 0.025810908526182175, + -0.02467721700668335, + 0.002018903847783804, + 0.009286957792937756, + 0.00937237311154604, + 0.03224034234881401, + -0.006514847278594971, + -0.02593514882028103, + -0.02467721700668335, + 0.03140171989798546, + -0.001836425974033773, + -0.023481404408812523, + -0.0096829729154706, + 0.010405119508504868, + -0.00636731181293726, + -0.030951349064707756, + -0.011461162008345127, + -0.011756232008337975, + -0.010397354140877724, + 0.0017510107718408108, + 0.0007866930682212114, + 0.002904115477576852, + -0.03161913901567459, + -0.022363241761922836, + 0.0455961674451828, + -0.030671807006001472, + 0.03202291950583458, + 0.012470613233745098, + -0.004600771237164736, + 0.01295980904251337, + -0.014668112620711327, + -0.040875036269426346, + -0.007349586579948664, + -0.0479256696999073, + -0.009550968185067177, + -0.031122177839279175, + 0.019226176664233208, + -0.009698503650724888, + -0.006887568160891533, + 0.030500978231430054, + -0.002828406635671854, + 0.0340728834271431, + -0.017595523968338966, + 0.017145153135061264, + -0.009535438381135464, + -0.006553672254085541, + -0.039850056171417236, + -1.0472153917362448e-5, + -0.025127587839961052, + 0.03258199989795685, + 0.0001659771951381117, + 0.026571881026029587, + -0.012820038944482803, + 0.012051302939653397, + 0.033855464309453964, + 0.00834739115089178, + -0.009946983307600021, + -0.01975419744849205, + -0.01479235291481018, + -0.008564811199903488, + -0.026059389114379883, + 0.0047288937494158745, + -0.010412884876132011, + -0.032830480486154556, + 0.018868984654545784, + -0.027985112741589546, + -0.029817655682563782, + 0.025795377790927887, + -0.019101936370134354, + 0.029382815584540367, + 0.03460090607404709, + 0.00022118158813100308, + 0.003932979889214039, + 0.025671137496829033, + 0.007229228504002094, + 0.014039146713912487, + -0.02623021975159645, + 0.009698503650724888, + 0.0189776960760355, + 0.0012026065960526466, + -0.009760623797774315, + 0.027115430682897568, + 0.0017849827418103814, + 0.013612071052193642, + -0.011158325709402561, + 0.020592818036675453, + -0.040036413818597794, + 0.04137199744582176, + -0.002181969117373228, + 0.007877606898546219, + 0.008681286126375198, + -0.03109111823141575, + 0.027037780731916428, + -0.020344337448477745, + -0.022456422448158264, + -0.019723137840628624, + 0.002669223817065358, + 0.03609178960323334, + 0.010684659704566002, + -0.00298758945427835, + -0.02194393053650856, + -0.00917048193514347, + -0.022301122546195984, + 0.023621175438165665, + 0.009993573650717735, + 0.02444426529109478, + 0.04047125577926636, + 0.0025741022545844316, + 0.020654939115047455, + 0.02171098068356514, + 0.02553136833012104, + 0.02491016685962677, + 0.006650735158473253, + 0.0042513455264270306, + -0.026649530977010727, + -0.023295043036341667, + 0.0031739496625959873, + -0.007543711923062801, + -0.007085575722157955, + -0.007714542094618082, + 0.0041465177200734615, + 0.0189776960760355, + -0.007807722315192223, + -0.01132915634661913, + 0.005610222928225994, + 0.021291669458150864, + -0.0028225828427821398, + 0.021742040291428566, + 0.017269393429160118, + 0.013192759826779366, + -0.0075359465554356575, + 0.022161351516842842, + 0.005629635415971279, + 0.01905534602701664, + 0.021617799997329712, + 0.005590810440480709, + -0.003432136494666338, + 0.0296623557806015, + -0.0033797225914895535, + 0.007035103160887957, + -0.026494229212403297, + 0.01514954399317503, + 0.0010065400274470448, + 0.016058050096035004, + -0.002422684570774436, + 0.03748949244618416, + -0.01959889754652977, + -0.0011628109496086836, + 0.038918253034353256, + -0.001956783700734377, + 0.01218330767005682, + -0.0005304475780576468, + 0.0027798751834779978, + 0.017595523968338966, + -0.005505395587533712, + 0.020903419703245163, + 0.016725841909646988, + -0.04012959450483322, + 0.06345570087432861, + -0.024646157398819923, + 0.03295472264289856, + 0.02936728484928608, + -0.025422658771276474, + -0.012478378601372242, + -0.0113990418612957, + -0.026338929310441017, + -0.0004370247188489884, + -0.02506546676158905, + 0.0002625545603223145, + -0.019241705536842346, + 0.01890004612505436, + 0.007093341089785099, + -0.015530029311776161, + 0.03177443891763687, + -0.009993573650717735, + -0.014396336860954762, + -0.009116127155721188, + 0.010296409018337727, + 0.016446301713585854, + 0.06535036116838455, + -0.010995260439813137, + 0.034538786858320236, + -0.03512892499566078, + 0.03515998646616936, + 0.03922885283827782, + 0.021586740389466286, + -0.01967654749751091, + 0.005051142070442438, + 0.023403754457831383, + 0.013674191199243069, + 0.019474657252430916, + -0.033141084015369415, + -0.0035194929223507643, + -0.014947652816772461, + 0.010878785513341427, + 0.006969100795686245, + 0.027146490290760994, + -0.011111736297607422, + 0.01890004612505436, + -0.0041271052323281765, + 0.02928963489830494, + 0.011686347424983978, + 0.02585749886929989, + 0.02070152945816517, + 0.028140412643551826, + 0.03981899470090866, + 0.003719442058354616, + -0.01695879176259041, + 0.014877768233418465, + -0.0054588052444159985, + -0.010956435464322567, + 0.001794688985683024, + -0.009434492327272892, + -0.017378102988004684, + 0.008541516028344631, + -0.018931105732917786, + -0.014497281983494759, + -0.030563097447156906, + -0.036029666662216187, + 0.005307387560606003, + -0.0022460303734987974, + -0.011158325709402561, + -0.009915923699736595, + 0.03230246156454086, + -0.02147803083062172, + 0.0018956342246383429, + 0.00443382328376174, + 0.00812220573425293, + -0.0036010255571454763, + -0.002203322947025299, + 0.015592149458825588, + 0.007236993871629238, + 0.0070195733569562435, + -0.0040416899137198925, + 0.01607358083128929, + -0.015398023650050163, + -0.02997295744717121, + -0.0048997243866324425, + -0.0028517015744000673, + -0.01866709440946579, + 0.03351380303502083, + 0.0029332342091947794, + -0.021369319409132004, + -0.019319357350468636, + -0.002626516157761216, + 0.00167821382638067, + -0.0029138217214494944, + -0.003550552995875478, + -0.013883845880627632, + 0.021633330732584, + 0.028326774016022682, + 0.02772110141813755, + -0.004674538969993591, + 0.016819022595882416, + -0.0020557877141982317, + 0.026882480829954147, + -0.0014472046168521047, + 0.03138618916273117, + 0.009946983307600021, + -0.030097195878624916, + -0.020515168085694313, + 0.026991190388798714, + 0.0010851607657968998, + 0.003634026739746332, + -0.00040402341983281076, + -0.0026925187557935715, + 0.04519238695502281, + -0.00671285530552268, + -0.008852116763591766, + 0.0036476156674325466, + -0.009380137547850609, + -0.025966208428144455, + -0.017440222203731537, + 0.0015724154654890299, + 0.025826439261436462, + -0.046341609209775925, + 0.02281361259520054, + -0.01526601891964674, + 0.008192090317606926, + 0.0013054930604994297, + 0.0231863334774971, + -0.014699173159897327, + 0.03919779509305954, + 0.015863925218582153, + -0.003752443240955472, + -0.0076640695333480835, + 0.030796047300100327, + -0.043608322739601135, + 0.04081291705369949, + 0.03646450862288475, + -0.01888451538980007, + 0.019645487889647484, + 0.01542131882160902, + -0.01467587798833847, + -0.02233218215405941, + 0.028016172349452972, + -0.019008755683898926, + 0.016570542007684708, + -0.00819985568523407, + -0.010467239655554295, + -0.010824430733919144, + 0.012493908405303955, + 0.006045063957571983, + 0.02045304886996746, + 0.027301792055368423, + -0.009690738283097744, + 0.03615390881896019, + 0.03854553401470184, + 0.03014378622174263, + 0.020126918330788612, + 0.0028963505756109953, + -0.02756580151617527, + 0.03584330901503563, + -0.019925028085708618, + -0.04168259724974632, + -0.022611722350120544, + -0.017626583576202393, + -0.047521889209747314, + 0.006017886567860842, + -0.02762792259454727, + 0.01471470296382904, + -0.021974992007017136, + 0.031743381172418594, + 0.007784427143633366, + -0.007920314557850361, + -0.010024634189903736, + 0.010676895268261433, + -0.009884864091873169, + -0.015980400145053864, + 0.016275471076369286, + 0.0292119849473238, + -0.025577958673238754, + 0.015025303699076176, + -0.0048337215557694435, + -0.006281896959990263, + 0.01928829587996006, + 0.02349693514406681, + -0.030671807006001472, + 0.042893942445516586, + 0.05935577303171158, + -0.0068720378912985325, + -0.01810801401734352, + 0.005955766420811415, + -0.030516507104039192, + -0.02975553646683693, + 0.02436661534011364, + -0.0013229643227532506, + -0.0015908573986962438, + -0.014846707694232464, + 0.021540150046348572, + -0.00882882159203291, + -0.0030031194910407066, + 0.002882761647924781, + 0.008386216126382351, + 0.029724476858973503, + 0.009279192425310612, + -0.004239697940647602, + 0.011096205562353134, + 0.022456422448158264, + 0.00601400388404727, + -0.0017713939305394888, + -0.009178247302770615, + 0.004247462842613459, + 0.010715720243752003, + 0.007334056310355663, + -0.008129970170557499, + -0.018465204164385796, + 0.01983184739947319, + -0.00351366912946105, + 0.03832811117172241, + -0.014109031297266483, + 0.021633330732584, + -0.009985809214413166, + 0.022285591810941696, + -0.03373122215270996, + 0.01765764318406582, + -0.03857659175992012, + -0.05534902587532997, + -0.01983184739947319, + 0.003224422223865986, + -0.019241705536842346, + -0.0031545371748507023, + 0.012361903674900532, + 0.0027332850731909275, + 0.014776823110878468, + 0.06239965930581093, + 0.03997429460287094, + -0.011531046591699123, + -0.012556028552353382, + 0.013184994459152222, + -0.02015797793865204, + 0.006386724766343832, + -0.027193080633878708, + 0.02506546676158905, + -0.012493908405303955, + 0.024226846173405647, + 0.019707607105374336, + 0.015328139066696167, + -0.05873456969857216, + 0.010133343748748302, + -0.018387554213404655, + -0.031199829652905464, + -0.0017908065347000957, + 0.009822743944823742, + 0.00500066950917244, + 0.032830480486154556, + 0.0010521594667807221, + -0.0314793698489666, + 0.0005386978737078607, + 0.009822743944823742, + -0.023776475340127945, + -0.01695879176259041, + -0.01818566396832466, + 0.013883845880627632, + -0.053143762052059174, + 0.009178247302770615, + 0.0006420696736313403, + 0.006072241347283125, + 0.014955418184399605, + -0.01615123078227043, + -0.030873699113726616, + -0.005155969876796007, + 0.004884194117039442, + 0.003674793289974332, + 0.0074738264083862305, + 0.008339625783264637, + 0.014551637694239616, + 0.007780544459819794, + -0.0062469542026519775, + -0.014497281983494759, + -0.024941226467490196, + 0.0062042465433478355, + -0.008153265342116356, + -0.037831149995326996, + -0.004099927842617035, + 0.0014122620923444629, + -0.001354995067231357, + -0.03391758352518082, + -0.031898681074380875, + -0.013177230022847652, + 0.022207941859960556, + -0.03593648597598076, + 0.010451709851622581, + 0.011531046591699123, + -0.0060605937615036964, + 0.0061227139085531235, + -0.015848394483327866, + 0.007248640991747379, + -0.0031331833451986313, + -0.017548933625221252, + 0.04466436430811882, + 0.03366910293698311, + 0.019878437742590904, + -0.004569711163640022, + -0.01804589480161667, + -0.016570542007684708, + 0.012416258454322815, + 0.0349736250936985, + 0.026835890486836433, + 0.009248132817447186, + -0.0009502436732873321, + -0.009768388234078884, + -0.0057305810041725636, + 0.0033428387250751257, + -0.016058050096035004, + 0.011204916052520275, + -0.0003795150842051953, + -0.004860898945480585, + 0.01717621274292469, + -0.006363429594784975, + -0.01221436820924282, + 0.009100597351789474, + -0.01144563127309084, + 0.007699011825025082, + -0.017129622399806976, + -0.019303826615214348, + -0.016306530684232712, + 0.015530029311776161, + 0.01927276700735092, + -0.0069574532099068165, + -0.02227006107568741, + -0.016927732154726982, + 0.0027934641111642122, + 0.017750823870301247, + -0.006017886567860842, + 0.012983104214072227, + 0.0005367566482163966, + 0.02296891249716282, + -0.035812247544527054, + -0.0019082523649558425, + 0.024723807349801064, + 0.027690041810274124, + -0.008300800807774067, + -0.0053733899258077145, + 0.0005406391574069858, + 0.007376763969659805, + -0.0008240621536970139, + -0.004965726751834154, + 0.0002516350068617612, + -0.0022673842031508684, + -0.05121803656220436, + 0.028466543182730675, + -0.03578118607401848, + -0.010374059900641441, + 0.0012268723221495748, + -0.01750234328210354, + -0.023077623918652534, + -0.009426727890968323, + -0.029895305633544922, + 0.017051972448825836, + -0.0029565293807536364, + -0.023683294653892517, + -0.010397354140877724, + -0.002141202799975872, + -0.002482863375917077, + 0.0015821217093616724, + 0.046496909111738205, + -0.019940556958317757, + -0.02725520171225071, + -0.016026990488171577, + -0.02421131543815136, + 0.009395667351782322, + -0.010645834729075432, + 0.022549603134393692, + -0.02632340043783188, + 0.02537606842815876, + 0.0167103111743927, + -0.039322033524513245, + 0.0018509853398427367, + 0.015638738870620728, + 0.008642461150884628, + 0.0005469482275657356, + -0.02404048480093479, + -0.014070206321775913, + -0.009123892523348331, + -0.019241705536842346, + -0.0012763743288815022, + 0.01983184739947319, + -0.03804857283830643, + 0.03584330901503563, + 0.013052989728748798, + 0.030500978231430054, + 0.002647869987413287, + -0.04926125332713127, + -0.007143813651055098, + 0.03661980852484703, + -0.023854125291109085, + -0.029180925339460373, + -0.003389428835362196, + 0.0007556329946964979, + 0.012913219630718231, + 0.015281548723578453, + -0.0016840375028550625, + -0.012299783527851105, + 0.0035175515804439783, + 0.04050231724977493, + -0.016570542007684708, + -0.004076632671058178, + -0.0036650868132710457, + 0.018061423674225807, + -0.01523495838046074, + -0.009714033454656601, + 0.010498300194740295, + 0.0031234771013259888, + 0.01967654749751091, + -0.007648539263755083, + -0.019661016762256622, + -0.003331191372126341, + 0.008525986224412918, + -0.008378450758755207, + -0.000677982869092375, + -0.01272685918956995, + 0.0028361715376377106, + -0.08659544587135315, + -0.034787267446517944, + -0.02911880426108837, + 0.021912870928645134, + 0.015584384091198444, + -0.009558732621371746, + 0.017766352742910385, + 0.011375746689736843, + -0.013511125929653645, + 0.011321390978991985, + 0.00145399896427989, + -0.02661846950650215, + 0.03138618916273117, + 0.03116876818239689, + -0.0049424320459365845, + -0.0035622005816549063, + -0.0032147159799933434, + -0.016989851370453835, + 0.018061423674225807, + -0.023527994751930237, + 0.004402763210237026, + 0.02826465293765068, + 0.020592818036675453, + -0.01717621274292469, + -0.014668112620711327, + 0.03997429460287094, + -0.0006634234450757504, + 0.005839291028678417, + -0.0014277920126914978, + -0.03534634783864021, + 0.007128283381462097, + 0.011826117523014545, + -0.006452727131545544, + -0.015258253552019596, + -0.002562454901635647, + 0.021742040291428566, + 0.013852786272764206, + -0.0007609714521095157, + 0.03851447254419327, + 0.005769405979663134, + 0.015328139066696167, + 0.000464444950921461, + -0.0024188021197915077, + -0.021617799997329712, + -0.008533750660717487, + -0.01812354475259781, + -0.003597143106162548, + -0.014582697302103043, + -0.013518890365958214, + 0.009046241641044617, + 0.017937183380126953, + 0.004480413626879454, + -0.015009772963821888, + -0.024009425193071365, + 0.0002577014092821628, + -0.00920930691063404, + 0.0014374983729794621, + -0.013309234753251076, + 0.031215358525514603, + 0.01018769945949316, + 0.0681457668542862, + 0.007167108356952667, + 0.007613596972078085, + 0.003375840140506625, + -0.017300453037023544, + 0.013697485439479351, + 0.005225854925811291, + 0.018076954409480095, + 0.04177577793598175, + -0.020111387595534325, + 0.005757758393883705, + -0.007108870893716812, + 0.01070019043982029, + 0.027985112741589546, + -0.015126248821616173, + -0.0004855560837313533, + 0.017455752938985825, + 0.0129209840670228, + -0.007648539263755083, + -0.008852116763591766, + -0.017626583576202393, + 0.006239189300686121, + 0.026727180927991867, + -0.009962514042854309, + -0.01323935016989708, + -0.01472246740013361, + 0.0036204380448907614, + -0.038234930485486984, + 0.010630304925143719, + 0.005086084362119436, + 0.01471470296382904, + -0.00339525262825191, + 0.04534768685698509, + 0.019769728183746338, + -0.011600932106375694, + 0.022984443232417107, + 0.004111575428396463, + 0.010350764729082584, + 0.0017102444544434547, + -0.0029604118317365646, + -0.004825956653803587, + -0.03621602803468704, + 0.013526655733585358, + -0.015863925218582153, + -0.010133343748748302, + 0.007271936163306236, + 0.010366294533014297, + 0.015320373699069023, + -0.012897688895463943, + -0.006576967425644398, + 0.011802822351455688, + 0.018092483282089233, + -0.04693174734711647, + -0.004072749987244606, + -0.010436180047690868, + 0.008013495244085789, + -0.010878785513341427, + -0.017548933625221252, + -0.010871020145714283, + -0.006639087572693825, + 0.0012200779747217894, + 0.03279942274093628, + 0.012385197915136814, + -0.021214019507169724, + -0.0053733899258077145, + 0.0031603609677404165, + -0.009667443111538887, + -0.016974322497844696, + 0.005691755563020706, + 0.024708276614546776, + -0.005346212536096573, + 0.015615444630384445, + -0.014256566762924194, + 0.006064476445317268, + -0.022751493379473686, + 0.02185075171291828, + 0.01820119470357895, + -0.009325782768428326, + -0.00834739115089178, + -0.028792673721909523, + -0.0010473063448444009, + 0.0002124459424521774, + 0.008549281395971775, + 0.009077302180230618, + -0.015040833503007889, + -0.006274132058024406, + -0.009030711837112904, + 0.003432136494666338, + 0.0008556075626984239, + -0.00355249410495162, + -0.01913299597799778, + 0.01983184739947319, + 0.02896350435912609, + -0.0007367057842202485, + -0.010560420341789722, + -0.018620505928993225, + -0.01045947428792715, + 0.00113175087608397, + -0.001249196706339717, + 0.005004551727324724, + -0.019474657252430916, + 0.002403272083029151, + -0.0025527486577630043, + 0.004092162940651178, + 0.011135030537843704, + -0.0002353770105401054, + -0.008386216126382351, + -0.008300800807774067, + -0.0006527465302497149, + -0.011531046591699123, + -0.011678582057356834, + -0.0015209722332656384, + -0.01335582509636879, + -0.004367820918560028, + -0.002346975728869438, + -0.01803036406636238, + -0.005427745170891285, + 0.000988098094239831, + 0.021648861467838287, + -0.010692425072193146, + 0.002081023994833231, + 0.01441186759620905, + -0.004092162940651178, + 0.015467909164726734, + 0.00318365590646863, + -0.004480413626879454, + -0.000816782470792532, + 0.008067850023508072, + -0.0034554314333945513, + -0.0030807696748524904, + 0.032768361270427704, + 0.015413554385304451, + -0.018014833331108093, + 0.007085575722157955, + -0.0028555840253829956, + -0.009271427057683468, + 0.034787267446517944, + 0.025546899065375328, + -0.008005729876458645, + -0.0013627600856125355, + -0.02031327784061432, + -0.021742040291428566, + 0.00894529651850462, + 0.016306530684232712, + -0.011049616150557995, + 0.01695879176259041, + -0.03848341107368469, + 0.017921654507517815, + 0.01601145975291729, + -0.009387902915477753, + -0.00439499830827117, + 0.018542854115366936, + 0.007854312658309937, + -0.00941119808703661, + 0.003948510158807039, + 0.006200364325195551, + 0.011678582057356834, + -0.02647870033979416, + 0.008168795146048069, + -0.010979730635881424, + 0.022689372301101685, + 0.011111736297607422, + 0.009061772376298904, + -0.02186628058552742, + 0.0030768869910389185, + 0.023248454555869102, + 0.0048104263842105865, + -0.06174739822745323, + -0.025888558477163315, + 0.008060085587203503, + 0.0009002563892863691, + 0.0027158139273524284, + -0.019645487889647484, + -0.0204685777425766, + -0.0013841139152646065, + -0.004305700771510601, + 0.0426144003868103, + -0.018604975193738937, + 0.018698155879974365, + -0.0047716014087200165, + -0.021819690242409706, + -0.032923661172389984, + -0.01944359578192234, + 0.008766701444983482, + 0.027503682300448418, + 0.030485447496175766, + -0.03957051411271095, + -0.0028594667091965675, + 0.0031467722728848457, + 0.020018206909298897, + 0.01591828092932701, + -0.004290170501917601, + -0.012354138307273388, + 0.011041850782930851, + 0.0030302968807518482, + 0.0055442205630242825, + 0.014194446615874767, + -0.005920823663473129, + 0.010063459165394306, + -0.01222213264554739, + 0.01093314029276371, + -0.0014297333545982838, + 0.023527994751930237, + -0.016927732154726982, + 0.022471953183412552, + -0.01077784039080143, + -0.0013608188601210713, + 0.008324095979332924, + 0.009434492327272892, + -0.018558384850621223, + -0.003857271047309041, + 0.0012365785660222173, + -0.022999973967671394, + -0.004926901776343584, + 0.006468257401138544, + 0.009519907645881176, + -0.005579162854701281, + 0.002362505765631795, + 0.009248132817447186, + 0.016461830586194992, + -0.02045304886996746, + 0.017315981909632683, + -0.028140412643551826, + 0.02671165019273758, + 0.024956757202744484, + 0.00448817852884531, + 0.034321364015340805, + 0.010568184778094292, + 0.035656947642564774, + -0.01849626563489437, + 0.01655501127243042, + 0.004057220183312893, + 0.019769728183746338, + -0.016663720831274986, + 0.009418962523341179, + -0.019505716860294342, + 0.02289126254618168, + 0.0018616622546687722, + 0.0013879963662475348, + -0.0075980667024850845, + 0.015669800341129303, + -0.011624227277934551, + -0.027596861124038696, + -0.005866468418389559, + -0.014551637694239616, + -0.00018890824867412448, + 0.005241384729743004, + 0.012299783527851105, + 0.007504886481910944, + 0.011383511126041412, + 0.0008939473191276193, + 0.014551637694239616, + -0.019505716860294342, + -0.013006399385631084, + 0.013798430562019348, + 0.015615444630384445, + 0.028683964163064957, + -0.0003149684052914381, + -0.0035447292029857635, + -0.031743381172418594, + -0.01210565771907568, + -0.01581733487546444, + 0.030174847692251205, + 0.011888237670063972, + -0.0357501283288002, + -0.008331860415637493, + 0.00019266942399553955, + -0.02585749886929989, + 0.011849412694573402, + -0.003129300894215703, + -0.007722306996583939, + 0.04438482224941254, + -0.011158325709402561, + -0.0015481497393921018, + 0.011305861175060272, + -0.00460465345531702, + -0.01335582509636879, + 0.0008798732305876911, + -0.00610718410462141, + -0.0018063365714624524, + 0.01479235291481018, + 0.007120518479496241, + -0.0003368075122125447, + 0.008362920954823494, + 0.018620505928993225, + 0.017611052840948105, + 0.01874474622309208, + 0.025966208428144455, + 0.04177577793598175, + -0.0010841902112588286, + 0.00952767301350832, + 0.014815648086369038, + -0.0008148412453010678, + 0.0042940531857311726, + 0.015289314091205597, + 0.03615390881896019, + 0.015576619654893875, + 0.019459126517176628, + -0.014838943257927895, + -0.02601279877126217, + -0.030656278133392334, + -0.019148526713252068, + 0.012299783527851105, + 0.024475326761603355, + 0.001032746979035437, + -0.0005731551209464669, + 0.010389589704573154, + -0.004585240967571735, + -0.0004729379143100232, + -0.020810239017009735, + 0.015786275267601013, + 0.015040833503007889, + -0.00960532296448946, + -0.010537125170230865, + -0.0061460090801119804, + 0.01441186759620905, + -0.008479395881295204, + 0.003597143106162548, + 0.002461509546265006, + -0.009240367449820042, + 0.01880686543881893, + 3.585252852644771e-5, + -0.0049424320459365845, + -0.028777144849300385, + -0.006258601788431406, + 0.008440570905804634, + 0.010327469557523727, + -0.0014054676285013556, + -0.004422175697982311, + -0.005866468418389559, + -0.00037393398815765977, + -0.0013889670372009277, + 0.021353790536522865, + 0.011189386248588562, + 0.0091316569596529, + 0.016617130488157272, + -0.04146517813205719, + 4.919864659314044e-5, + -0.020095858722925186, + -0.014163387008011341, + -0.008254210464656353, + 0.008735641837120056, + -0.013340295292437077, + 0.02593514882028103, + -0.0038514472544193268, + -1.2792558663932141e-5, + 0.010102284140884876, + 0.031215358525514603, + 0.006918628234416246, + -0.009178247302770615, + -0.006429431959986687, + 0.009061772376298904, + -0.003849505912512541, + -0.010731250047683716, + -0.01921064592897892, + -0.01663266122341156, + 0.018760275095701218, + 0.02928963489830494, + 0.009512143209576607, + -0.0189776960760355, + -0.013091814704239368, + -0.0048997243866324425, + -0.003459314117208123, + -0.03214716166257858, + -0.004542533773928881, + 0.032923661172389984, + -0.01740916259586811, + 0.008254210464656353, + -0.004682303871959448, + 0.01483117789030075, + 0.018449675291776657, + -0.02789193205535412, + 0.0008793878951109946, + 0.007997965440154076, + 0.04472648352384567, + -0.014178916811943054, + -0.006417784374207258, + -0.024615095928311348, + 0.0174246933311224, + -0.02335716411471367, + -0.013658660463988781, + -0.006639087572693825, + 0.006716737523674965, + -0.013744075782597065, + -0.005144322291016579, + -0.009465552866458893, + 0.02522076666355133, + -0.0018888397607952356, + 0.02372988499701023, + 0.020965538918972015, + -0.008557045832276344, + -0.03668192774057388, + 0.02663400024175644, + 0.012051302939653397, + -0.007974670268595219, + 0.015980400145053864, + -0.0049385493621230125, + -0.0014704996719956398, + -0.018682625144720078, + 0.02624574862420559, + 0.008331860415637493, + -0.00363208563067019, + -0.019505716860294342, + 0.009869333356618881, + -0.012587089091539383, + 0.016741370782256126, + 0.05121803656220436, + -0.02663400024175644, + -0.029895305633544922, + -0.01015663892030716, + -0.0033389562740921974, + -0.03481832519173622, + -0.018372025340795517, + 0.006650735158473253, + 0.005955766420811415, + -0.026509759947657585, + -0.008370685391128063, + -0.015514499507844448, + -0.002265443094074726, + -0.014186682179570198, + 0.02442873641848564, + -0.006048946175724268, + 0.00468618655577302, + 0.03832811117172241, + 0.0167103111743927, + -0.0231863334774971, + 0.023465873673558235, + -0.004647361114621162, + -0.012556028552353382, + 0.022906793281435966, + -0.006510964594781399, + 0.009962514042854309, + -0.014784587547183037, + 0.009846038185060024, + -0.007532064337283373, + -0.03242669999599457, + -0.011748467572033405, + -0.011531046591699123, + 0.016725841909646988, + -0.0040416899137198925, + 0.02382306568324566, + -0.030407797545194626, + -0.041030336171388626, + -0.0033816639333963394, + 0.0009274339536204934, + -0.01272685918956995, + -0.0016238586977124214, + 0.006677912548184395, + 0.004181460477411747, + -0.008300800807774067, + -0.014396336860954762, + -0.0026187512557953596, + -0.01835649460554123, + 0.001939312438480556, + 0.0010424532229080796, + -0.013891611248254776, + -0.0017228625947609544, + 0.0008755053859204054, + -0.016989851370453835, + -0.010816665366292, + -0.015475674532353878, + -0.02227006107568741, + -0.011057380586862564, + -0.009318017400801182, + -0.007345703896135092, + 0.006025651469826698, + 0.0005066671874374151, + -0.002065493958070874, + -0.01834096387028694, + -0.016461830586194992, + 0.0022557368502020836, + -0.000991009990684688, + -0.00151708978228271, + 0.0042746406979858875, + 0.01827884465456009, + 0.001939312438480556, + 0.005982943810522556, + 0.0014782646903768182, + -0.018791334703564644, + -0.005920823663473129, + -0.006002356298267841, + -0.0036806168500334024, + -0.004717246163636446, + -0.003067180747166276, + -0.010684659704566002, + 0.08442123979330063, + 0.011072911322116852, + -0.006565319839864969, + -0.005074437242001295, + 0.00897635705769062, + -0.015677563846111298, + -0.00012448288907762617, + 0.010723485611379147, + 0.013650896027684212, + -0.00027104755281470716, + 0.010653600096702576, + -0.01725386269390583, + 0.014543872326612473, + 0.015786275267601013, + -0.004495943430811167, + 0.0020616112742573023, + 0.03255094215273857, + 0.01748681254684925, + 0.007310761138796806, + 0.020328808575868607, + -0.010102284140884876, + 0.0005255944561213255, + -0.010024634189903736, + 0.01952124759554863, + -0.01834096387028694, + 0.022751493379473686, + 0.0048958417028188705, + 0.005027846898883581, + 0.016042519360780716, + 0.021120840683579445, + 0.0004896812606602907, + -0.0020499639213085175, + -0.017051972448825836, + -0.007920314557850361, + -0.0030574745032936335, + 0.01686561107635498, + 0.005800466053187847, + 0.009465552866458893, + -0.003940744791179895, + 0.013045224361121655, + 0.0055170427076518536, + -0.02320186421275139, + 0.029336225241422653, + 0.023621175438165665, + -0.010614775121212006, + -0.011833881959319115, + 0.0070389858447015285, + -0.004053337499499321, + 0.015708625316619873, + -0.005264679901301861, + -0.005419980268925428, + -0.017766352742910385, + 0.01004016399383545, + 0.004344525747001171, + 0.015514499507844448, + 0.006448844447731972, + 0.00909283198416233, + -0.014295391738414764, + -0.00898412149399519, + 0.0018092484679073095, + -0.02756580151617527, + -0.018139073625206947, + -0.01810801401734352, + -0.008494925685226917, + -0.01686561107635498, + -0.01789059303700924, + -0.02709990181028843, + -0.02101212926208973, + -0.007170991040766239, + -0.00319142104126513, + -0.004682303871959448, + 0.024320024996995926, + 0.0029371168930083513, + -0.02265831269323826, + -0.011864942498505116, + 0.020111387595534325, + -0.010405119508504868, + 0.006347899325191975, + 0.004492060746997595, + 0.010366294533014297, + 0.002463450888171792, + 0.011701877228915691, + 6.757989467587322e-5, + -0.01944359578192234, + -0.011585402302443981, + 0.0007735895924270153, + 0.01011781394481659, + -0.018760275095701218, + 0.017160682007670403, + -0.025826439261436462, + -0.011142795905470848, + -0.00274299131706357, + -0.0048764292150735855, + -0.009255897253751755, + -0.006693442817777395, + -0.013798430562019348, + -0.014147856272757053, + 0.008005729876458645, + -0.003416606457903981, + -0.0033408976159989834, + 0.013340295292437077, + 0.006444962229579687, + -0.014326452277600765, + -0.001249196706339717, + -0.006677912548184395, + -0.029802126809954643, + 0.008704581297934055, + 0.010731250047683716, + -0.02138485014438629, + 0.003591319313272834, + -0.01601145975291729, + -0.022114761173725128, + 0.014380807057023048, + -0.0038184458389878273, + -0.028078293427824974, + 0.01448951754719019, + 0.018775805830955505, + -0.012346372939646244, + -0.005101614631712437, + -0.02171098068356514, + -0.014551637694239616, + -0.0013986732810735703, + 0.015731919556856155, + -0.01663266122341156, + 0.0016869493992999196, + 0.003672851948067546, + -0.01085549034178257, + -0.005617988295853138, + -0.018837925046682358, + -0.0017335395095869899, + 0.01757999323308468, + 0.006173186469823122, + 0.009085067547857761, + 0.0038941549137234688, + 0.008929766714572906, + -0.008525986224412918, + -0.009884864091873169, + 0.014419632032513618, + 0.032209280878305435, + -0.02546924725174904, + 0.00875117164105177, + 0.010443944483995438, + -0.0009997456800192595, + 0.020406458526849747, + 0.014497281983494759, + 0.02192840166389942, + -0.0012860805727541447, + -0.023372694849967957, + 0.01163199171423912, + 0.002558572217822075, + 0.03326532244682312, + -0.025904089212417603, + 0.0036282031796872616, + -0.0038009746931493282, + 0.007481591776013374, + 0.010871020145714283, + -0.0205306988209486, + 0.01695879176259041, + -0.011608696542680264, + -0.006887568160891533, + -0.014932123012840748, + -0.005575280636548996, + -0.014085736125707626, + -0.012043537572026253, + -0.01695879176259041, + 0.009147187694907188, + 0.02186628058552742, + 0.017378102988004684, + 0.025034407153725624, + -0.009558732621371746, + -0.00481819175183773, + 0.01534366887062788, + 0.014272096566855907, + -0.0296623557806015, + 0.018791334703564644, + -0.014543872326612473, + 0.011003025807440281, + -0.0007624274003319442, + -0.023388223722577095, + 0.01905534602701664, + -0.0032011272851377726, + -0.02702225185930729, + 0.014419632032513618, + 0.005404449999332428, + 0.01221436820924282, + -0.030252497643232346, + -0.0014025557320564985, + -0.0102342888712883, + -0.0003220054495614022, + 0.012206602841615677, + -0.0174246933311224, + 0.015747450292110443, + -0.00536950770765543, + -0.005579162854701281, + -0.0091316569596529, + -0.004864781629294157, + 0.01669478230178356, + 0.012385197915136814, + 0.0009565527434460819, + -0.016042519360780716, + 0.0005780083010904491, + 0.0025566311087459326, + 0.013231584802269936, + -0.006192598957568407, + -0.0024712160229682922, + -0.020748119801282883, + -0.009473318234086037, + -0.00827750563621521, + -0.010801135562360287, + 0.005905293859541416, + -0.03208503872156143, + -0.0334206223487854, + 0.01546014379709959, + 1.4748977719136747e-6, + -0.01530484389513731, + 0.00897635705769062, + 0.014140091836452484, + 0.009993573650717735, + 0.016508420929312706, + 0.0242889653891325, + 0.017688702791929245, + -0.003616555593907833, + 0.020095858722925186, + -0.0019936675671488047, + -0.013052989728748798, + -0.006716737523674965, + 0.013216054998338223, + -0.00038169900653883815, + 0.009543202817440033, + -0.006588615011423826, + 0.03543952852487564, + -0.013262645341455936, + 0.007772779557853937, + 0.014458457008004189, + -0.0036689694970846176, + 0.05140439793467522, + 0.01725386269390583, + -7.449561235262081e-5, + 2.763253178272862e-5, + 0.0007993112085387111, + -0.015165073797106743, + -0.002558572217822075, + -0.019956087693572044, + -0.0028167590498924255, + 0.0011220446322113276, + -0.01969207637012005, + 0.010614775121212006, + -0.002506158547475934, + -0.008425041101872921, + -3.266765997977927e-5, + -0.0056257531978189945, + -0.006646852474659681, + -0.0005566544714383781, + 0.008463866077363491, + 0.017362572252750397, + 0.01089431531727314, + -0.009946983307600021, + 0.009985809214413166, + -0.0027954052202403545, + -0.02405601553618908, + 0.0011055439244955778, + 0.0048104263842105865, + -0.01398479100316763, + 0.012051302939653397, + -0.00882882159203291, + 0.017284922301769257, + -0.014505047351121902, + 0.009822743944823742, + 0.012781213968992233, + 0.01905534602701664, + -0.000688174448441714, + -0.01085549034178257, + 0.015530029311776161, + 0.01890004612505436, + -0.0037835033144801855, + 0.011569871567189693, + 0.010125579312443733, + -0.0281093530356884, + 0.003168125869706273, + 0.01276568416506052, + -0.006728385109454393, + 0.008300800807774067, + -0.00350590399466455, + -0.021959461271762848, + 0.0012453142553567886, + -0.03366910293698311, + 0.0070273382589221, + 0.009962514042854309, + 0.0021237314213067293, + 0.005913058761507273, + 0.0005086084711365402, + -0.022937852889299393, + 0.01804589480161667, + -0.005400567781180143, + -0.007757249753922224, + -0.012377433478832245, + -0.018294375389814377, + 0.00511714443564415, + 0.01389937661588192, + 0.006045063957571983, + -0.00447264825925231, + 0.0028924678917974234, + 0.0010395413264632225, + -0.017548933625221252, + 0.012369668111205101, + -0.0005823760875500739, + 0.017704233527183533, + 0.013526655733585358, + -0.009465552866458893, + 0.01487000286579132, + 0.018604975193738937, + 0.013883845880627632, + 0.004026160109788179, + -0.0243510864675045, + -0.010366294533014297, + -0.011344686150550842, + 0.003956275060772896, + 0.004111575428396463, + -0.01549896877259016, + -0.003692264435812831, + 0.0018043952295556664, + 0.00041494297329336405, + 0.00831633061170578, + 0.0013608188601210713, + 5.899591269553639e-5, + 0.014427397400140762, + 0.021105309948325157, + 0.005652930587530136, + 0.01959889754652977, + -0.025003347545862198, + 0.007757249753922224, + -0.006130479276180267, + -0.01669478230178356, + -0.012773449532687664, + -0.003088534576818347, + 0.015033068135380745, + -0.00021572181140072644, + -0.008005729876458645, + -0.015506734140217304, + -0.013713016174733639, + -0.01773529313504696, + -0.013518890365958214, + -0.01803036406636238, + -0.0034204889088869095, + 0.005124909803271294, + 0.02436661534011364, + 0.0034476665314286947, + 0.001496706623584032, + 0.0204685777425766, + 0.02366776391863823, + 0.012416258454322815, + 0.01765764318406582, + 0.01568532921373844, + 0.0017034501070156693, + -0.016259940341114998, + 0.005831526126712561, + 0.0012462848098948598, + 0.020732589066028595, + -0.010871020145714283, + 0.005858703516423702, + -0.02281361259520054, + 0.009698503650724888, + -0.009139422327280045, + -0.0005581104196608067, + -0.001293845591135323, + 0.013324765488505363, + -0.01217554323375225, + 0.023559054359793663, + -0.022440891712903976, + 0.009434492327272892, + -0.007291348651051521, + -0.027363911271095276, + -0.012400728650391102, + -0.015405789017677307, + -0.02281361259520054, + 0.019397007301449776, + 0.007089458405971527, + 0.00423581525683403, + -0.009978043846786022, + 0.011267036199569702, + 0.027348382398486137, + 0.01343347504734993, + 0.0010385706555098295, + -0.0004656582314055413, + 0.015436849556863308, + 0.02310868352651596, + 0.008223150856792927, + 0.008797761984169483, + 0.020111387595534325, + -0.01599593088030815, + -0.025267357006669044, + -0.005804348271340132, + 0.011142795905470848, + 0.014031381346285343, + 0.0015151484403759241, + 0.0011996948160231113, + -0.025251828134059906, + 0.03046991676092148, + -0.0023858007043600082, + 0.007217580918222666, + -0.012897688895463943, + -0.005598575342446566, + 0.017067501321434975, + 7.243302388815209e-5, + 0.010537125170230865, + -0.031681258231401443, + -0.004418293479830027, + 0.009993573650717735, + 0.015980400145053864, + -0.023636704310774803, + 0.0096829729154706, + 0.015693094581365585, + -0.019505716860294342, + -0.010630304925143719, + 0.010754545219242573, + 0.006930275354534388, + 0.023869654163718224, + -0.002909939270466566, + 0.00423581525683403, + 0.0024459795095026493, + 0.023714354261755943, + 0.00509384972974658, + 0.0004804602940566838, + -0.004701716359704733, + 0.009939218871295452, + -0.012579323723912239, + 0.026804830878973007, + -0.006930275354534388, + -0.007838781923055649, + 0.019474657252430916, + -0.0024129783269017935, + -0.02076364867389202, + -0.005074437242001295, + 0.020654939115047455, + -0.02202158235013485, + -0.008611401543021202, + 0.031261950731277466, + -0.013037459924817085, + 0.011833881959319115, + 0.007780544459819794, + -0.016384180635213852, + -0.00266534136608243, + 0.016989851370453835, + 0.009814978577196598, + 0.011499986983835697, + -0.005843173712491989, + -0.0030943583697080612, + 0.02341928333044052, + 0.0006304221460595727, + 0.0048570167273283005, + -0.007004043087363243, + 0.01717621274292469, + 0.0013375238049775362, + -0.006417784374207258, + -0.016725841909646988, + -0.020344337448477745, + 0.001069630729034543, + -0.006522612180560827, + 0.026742709800601006, + -0.03138618916273117, + 0.004461001139134169, + -0.005175382364541292, + -0.006099419202655554, + 0.01471470296382904, + -0.015157308429479599, + -0.008308565244078636, + 0.010676895268261433, + 0.015203898772597313, + -0.0009667443227954209, + 0.014248802326619625, + -0.0075980667024850845, + 0.012004712596535683, + 0.014784587547183037, + -0.004581358749419451, + -0.00351366912946105, + -0.0019664899446070194, + -0.013914906419813633, + 0.0068526254035532475, + 0.0054782177321612835, + -0.015320373699069023, + -0.028559723868966103, + 0.0119503578171134, + -0.01944359578192234, + 0.012773449532687664, + 0.028295712545514107, + -0.008425041101872921, + -0.011732936836779118, + 0.009659678675234318, + 0.008510456420481205, + -0.01827884465456009, + 0.00016076007159426808, + 0.00948884803801775, + 0.0036689694970846176, + -0.02312421426177025, + 0.018946636468172073, + -0.005148204509168863, + 0.012952044606208801, + 0.027503682300448418, + -0.001999491360038519, + 0.002787640318274498, + 0.013914906419813633, + -0.006180951837450266, + -0.005726698320358992, + 0.015079658478498459, + -0.0026517524383962154, + 0.008300800807774067, + -0.022844672203063965, + 0.01393820159137249, + -0.0016840375028550625, + 0.016927732154726982, + -0.004954079166054726, + -0.023683294653892517, + -0.005295739974826574, + 0.016912201419472694, + -0.0028769378550350666, + 0.02116742916405201, + 0.015599914826452732, + 0.004096045158803463, + 0.013891611248254776, + -0.0005678167217411101, + -0.004053337499499321, + -0.02219241112470627, + -0.0022965031675994396, + 0.007807722315192223, + 0.025904089212417603, + -0.0070389858447015285, + 0.003591319313272834, + 0.006041181273758411, + 0.009271427057683468, + -0.005878116004168987, + -0.027845341712236404, + 0.02116742916405201, + 0.00026425314717926085, + -0.0019703723955899477, + 0.016042519360780716, + 0.020499639213085175, + 0.011290331371128559, + 0.0209189485758543, + 0.02396283484995365, + -0.010102284140884876, + 0.01865156553685665, + 0.005148204509168863, + 0.015312609262764454, + -0.01167081668972969, + -0.0030438858084380627, + -0.030671807006001472, + 0.0027604626957327127, + 0.008805526420474052, + -0.0015044716419652104, + -0.001171546638943255, + -0.011958122253417969, + 0.002141202799975872, + 0.03183656185865402, + 0.01159316673874855, + 0.02374541386961937, + -0.013534420169889927, + -0.0063556646928191185, + -0.0033195437863469124, + -0.003453490324318409, + 0.021353790536522865, + -0.002327563241124153, + -0.008091145195066929, + -0.0035233753733336926, + -0.009651913307607174, + -0.0292741060256958, + -0.0005052112392149866, + 0.02849760465323925, + 0.008440570905804634, + -0.010436180047690868, + 0.0182633139193058, + -0.017005382105708122, + -0.011507751420140266, + -0.008052320219576359, + 0.004057220183312893, + -0.004740541335195303, + 0.0017345101805403829, + -0.02803170308470726, + -0.010016868822276592, + 0.021990520879626274, + -0.0028361715376377106, + 0.005419980268925428, + -0.0017121856799349189, + -0.016881141811609268, + 0.007314643822610378, + -0.009395667351782322, + 0.012059067375957966, + 0.012711329385638237, + -0.015141778625547886, + 0.006798270158469677, + -0.010506064631044865, + 0.024739336222410202, + -0.015250489115715027, + -0.0062702493742108345, + 0.0006265396368689835, + 0.009861568920314312, + -0.0033991350792348385, + -0.007368999067693949, + 0.007101105991750956, + -0.015568854287266731, + -0.024879107251763344, + -0.008479395881295204, + -0.007695129606872797, + -0.0037019706796854734, + -0.01225319318473339, + 0.009954748675227165, + -0.0010968083515763283, + 0.002040257677435875, + -0.012983104214072227, + -0.006305191665887833, + -0.008836586959660053, + -0.016601601615548134, + -0.002203322947025299, + 0.008401745930314064, + -0.005187029950320721, + 0.0006245983531698585, + -0.011072911322116852, + 0.02944493480026722, + 0.0004205240693408996, + 0.034321364015340805, + -0.0016199761303141713, + 0.005866468418389559, + -0.0024712160229682922, + 0.0010579832596704364, + 0.0031234771013259888, + 0.0056684608571231365, + 0.0030632982961833477, + 0.014520577155053616, + 0.014877768233418465, + 0.011065145954489708, + -0.033451683819293976, + 0.010630304925143719, + 0.01959889754652977, + -9.700201917439699e-5, + -0.03304790332913399, + 0.01198918279260397, + 0.004464883357286453, + -0.019226176664233208, + -0.0028963505756109953, + 0.016042519360780716, + -0.03115323930978775, + 0.00533068273216486, + -0.00661967508494854, + -0.002046081470325589, + -0.004651243798434734, + 0.00945002306252718, + -0.012059067375957966, + 0.005781053565442562, + 0.007477709092199802, + -0.0024052131921052933, + 0.009993573650717735, + -0.00964414793998003, + 0.009923689067363739, + -0.018868984654545784, + 0.022767022252082825, + -0.007718424778431654, + -0.015491204336285591, + 0.006173186469823122, + -0.004259110428392887, + 0.03045438788831234, + 0.011717407032847404, + -0.01944359578192234, + -0.020794708281755447, + 0.003272953676059842, + 0.0010346882045269012, + 0.007268053479492664, + -0.020903419703245163, + 0.008129970170557499, + -0.005280210170894861, + 0.0033855463843792677, + -0.015250489115715027, + -0.015328139066696167, + 0.007007925771176815, + -0.033762283623218536, + 0.014287627302110195, + 0.0011666934005916119, + -0.014124562032520771, + -0.008642461150884628, + -0.0002899747632909566, + 0.006192598957568407, + -0.02335716411471367, + -0.0033836050424724817, + 0.0004394513089209795, + -0.005194794852286577, + -0.007532064337283373, + -1.5279789295163937e-5, + 0.002341151935979724, + 0.0008172678062692285, + -0.0008590047364123166, + -0.013495595194399357, + 0.008564811199903488, + -0.013060754165053368, + -0.0015102953184396029, + -0.0209189485758543, + -0.013681955635547638, + -0.00045643726480193436, + 0.00030890200287103653, + -0.00839398056268692, + -0.012757918797433376, + -0.016042519360780716, + -0.0039038611575961113, + -0.012307547964155674, + -0.011065145954489708, + 0.005249150097370148, + -0.00882882159203291, + -0.006111066322773695, + -0.014341982081532478, + 0.01011781394481659, + 0.007046750746667385, + -0.0010133343748748302, + -0.010638070292770863, + 0.014854473061859608, + 0.015374729409813881, + 0.008215385489165783, + 0.009178247302770615, + -0.02303103357553482, + -0.03273730352520943, + 0.003575789276510477, + -0.0021528503857553005, + -0.011375746689736843, + 0.015335903503000736, + -0.0054160975851118565, + 0.010614775121212006, + -0.014458457008004189, + 0.009698503650724888, + 0.009022947400808334, + -0.011057380586862564, + 0.0023547406308352947, + 0.019459126517176628, + -0.021214019507169724, + 0.0010657482780516148, + 0.008991886861622334, + 0.00897635705769062, + -0.0032768361270427704, + 0.014776823110878468, + -0.012292018160223961, + -0.005361742805689573, + 0.007497121579945087, + 0.00045716523891314864, + -0.010847725905478, + 0.004926901776343584, + -0.023916244506835938, + -0.022316651418805122, + -0.010607009753584862, + 0.008999652229249477, + 0.017844004556536674, + -0.002923527965322137, + 0.00025794407702051103, + 0.0070118079893291, + -0.011810587719082832, + 0.020111387595534325, + -0.007590301800519228, + -0.014404102228581905, + 0.015110718086361885, + -0.009279192425310612, + 0.011826117523014545, + -0.009418962523341179, + 0.022751493379473686, + -0.003876683535054326, + 0.003614614252001047, + 0.0017306276131421328, + 0.020639408379793167, + -0.003430195152759552, + -0.0034903741907328367, + 0.010451709851622581, + -0.005148204509168863, + 0.01686561107635498, + 0.012439553625881672, + -0.007031220942735672, + -0.01527378335595131, + 0.013223820365965366, + 0.022378772497177124, + -0.015770744532346725, + 0.00636731181293726, + -0.027068840339779854, + -0.001129809650592506, + -0.004530886188149452, + -0.008176560513675213, + 0.017844004556536674, + 0.005027846898883581, + 0.01998714730143547, + -0.0017442164244130254, + -0.009286957792937756, + -0.020111387595534325, + -0.025112057104706764, + -0.01284333411604166, + -0.01000133901834488, + 0.010366294533014297, + -0.004391115624457598, + 0.016197821125388145, + 0.01159316673874855, + 0.010024634189903736, + 0.020359868183732033, + -0.017222803086042404, + 0.0013287881156429648, + 0.03230246156454086, + 0.0018286609556525946, + 0.006243071984499693, + -0.0035583178978413343, + -0.016353121027350426, + -0.011725172400474548, + 0.01467587798833847, + 0.007349586579948664, + -0.018076954409480095, + -0.004325113259255886, + -0.005637400783598423, + 0.030889227986335754, + -0.013759605586528778, + 0.0033001312986016273, + -0.004985139239579439, + 0.009939218871295452, + 0.014334216713905334, + 0.0014462339458987117, + -0.00415816530585289, + -0.008083379827439785, + 0.009714033454656601, + -0.007493239361792803, + 0.015863925218582153, + -0.006111066322773695, + 0.013604305684566498, + 0.018837925046682358, + -0.016461830586194992, + 0.010770075023174286, + 0.007007925771176815, + -0.0204685777425766, + -0.03242669999599457, + 0.005847055930644274, + 0.013573245145380497, + -0.021446971222758293, + 0.002709990134462714, + -0.014279861934483051, + -0.009915923699736595, + -0.004441588185727596, + -0.00016257999232038856, + 0.004402763210237026, + 0.009877098724246025, + -0.026820359751582146, + -0.009846038185060024, + -0.011461162008345127, + 0.007827134802937508, + 0.011173856444656849, + 0.01694326102733612, + -0.017611052840948105, + 0.01827884465456009, + -0.0017083032289519906, + 0.00408051535487175, + -0.009154952131211758, + -0.012462848797440529, + 0.0011482515837997198, + -0.014357511885464191, + -0.02849760465323925, + -0.009892628528177738, + 0.02060834877192974, + 0.004453235771507025, + 0.015297078527510166, + -0.007345703896135092, + 0.0037893271073698997, + -0.0023314456921070814, + -0.005536455661058426, + 0.0068953330628573895, + -0.016368651762604713, + 0.013231584802269936, + 0.00569952093064785, + -0.011103970929980278, + -0.0023333868011832237, + 0.01663266122341156, + -0.00533068273216486, + 0.008192090317606926, + -0.010218759067356586, + -0.005016199313104153, + -0.008595870807766914, + -0.007446649018675089, + 0.005691755563020706, + -0.012167777866125107, + 0.001534561044536531, + 0.0077067771926522255, + 0.009892628528177738, + 0.008370685391128063, + 0.004228050354868174, + -0.011290331371128559, + 0.02351246401667595, + 0.007586419116705656, + 0.007256406359374523, + 0.011453396640717983, + 0.02122955024242401, + -0.016570542007684708, + -0.004969609435647726, + 0.030780518427491188, + -0.013588775880634785, + 0.002808994147926569, + 0.019629957154393196, + -0.006716737523674965, + 0.007442766334861517, + 0.016896672546863556, + 0.0022557368502020836, + -0.008044554851949215, + -0.00024314201436936855, + 0.023248454555869102, + -0.002609045011922717, + -0.007567006628960371, + -0.0033797225914895535, + 0.005672343075275421, + 0.018775805830955505, + -0.008580341003835201, + -0.005249150097370148, + -0.02101212926208973, + -0.01647736132144928, + -0.028124883770942688, + -0.009558732621371746, + -0.0022324416786432266, + 0.008821056224405766, + -0.008137735538184643, + 0.0011443690164014697, + 0.0031797734554857016, + -0.005897528491914272, + -0.005901411175727844, + 0.004216402769088745, + -0.0012656974140554667, + -0.011414571665227413, + 0.0007551476592198014, + -0.02599726989865303, + -0.01264920923858881, + 0.022860202938318253, + 0.005388920195400715, + 0.02343481406569481, + -0.002989530563354492, + -0.005567515268921852, + -0.0039601572789251804, + -0.004507591016590595, + -0.0062469542026519775, + -0.0019480480113998055, + 0.0205306988209486, + -0.0023489168379455805, + 0.007244758773595095, + 0.000806590891443193, + -0.004367820918560028, + -0.011616461910307407, + 0.016725841909646988, + -0.02303103357553482, + -0.002583808731287718, + 0.010451709851622581, + 0.015452379360795021, + 0.006410019472241402, + -0.009543202817440033, + -0.013301470316946507, + -0.00788148958235979, + 0.006774975452572107, + -0.004864781629294157, + -0.012548264116048813, + 0.0008730788249522448, + 0.012897688895463943, + -0.0008628872456029058, + 0.006351782009005547, + 0.02138485014438629, + -0.008665756322443485, + 0.014217741787433624, + 0.006010121200233698, + 0.0014656465500593185, + -0.007714542094618082, + -0.017269393429160118, + -0.016896672546863556, + -0.0034476665314286947, + -0.016259940341114998, + 0.02497228793799877, + -0.02717755176126957, + 0.01393820159137249, + -0.015522263944149017, + 0.003911626059561968, + -0.0012783155543729663, + -0.01144563127309084, + -0.0077028945088386536, + 0.0030768869910389185, + -0.008052320219576359, + 0.004286288283765316, + 0.025655608624219894, + 0.027581332251429558, + 0.019893966615200043, + -0.021912870928645134, + 0.003432136494666338, + -0.012866629287600517, + 0.009193777106702328, + -0.011344686150550842, + 6.915716221556067e-5, + 0.003917450085282326, + -0.013122874312102795, + 0.006965218111872673, + -0.0070622810162603855, + 0.011468926444649696, + 0.005451040342450142, + 0.00577717088162899, + 0.004243580624461174, + -0.0070816935040056705, + -0.02686695009469986, + -0.005287975072860718, + 0.004872546531260014, + -0.011701877228915691, + -0.007143813651055098, + 0.021431440487504005, + 0.02171098068356514, + 0.00517149968072772, + 0.0005809201393276453, + 0.008681286126375198, + 0.009900393895804882, + 0.002688636304810643, + -0.016617130488157272, + 0.0021683804225176573, + -0.011872706934809685, + 0.008254210464656353, + 0.0081610307097435, + -0.041744720190763474, + 0.0009017123375087976, + 0.013883845880627632, + 0.00834739115089178, + -0.03304790332913399, + 0.0077688973397016525, + -0.008735641837120056, + 0.0393841527402401, + 0.03177443891763687, + 0.03214716166257858, + 0.0024188021197915077, + 0.01599593088030815, + -0.007213698700070381, + 0.018325434997677803, + -0.0091316569596529, + -0.0034418427385389805, + 0.00253915973007679, + 0.004515355918556452, + -0.002952646929770708, + -0.012812274508178234, + -0.030578628182411194, + -0.03171231970191002, + 0.007943609729409218, + -0.0010803076438605785, + 0.01213671825826168, + 0.0007109841681085527, + -0.016104640439152718, + -0.009271427057683468, + -0.006425549741834402, + 0.027922993525862694, + -0.0005217119469307363, + -0.007423353847116232, + -8.923700079321861e-5, + -0.0018500147853046656, + 0.010249819606542587, + 0.020189037546515465, + -0.02312421426177025, + -0.00875117164105177, + 0.01622888073325157, + 0.0020752002019435167, + 0.0047483062371611595, + 0.015374729409813881, + -0.016182290390133858, + -0.019738666713237762, + 0.0016723900334909558, + -0.004915254190564156, + 0.02897903509438038, + 0.0006818653200753033, + -0.010016868822276592, + 0.005959648638963699, + 0.005396685097366571, + 0.02601279877126217, + 0.009675208479166031, + 0.011499986983835697, + -0.005680108442902565, + -0.02327951416373253, + -0.010397354140877724, + 0.003168125869706273, + -0.007951375097036362, + 0.001855838461779058, + 0.0014112914213910699, + -0.008083379827439785, + -0.017207272350788116, + 0.030252497643232346, + 0.004511473700404167, + -0.0021528503857553005, + -0.011220445856451988, + -0.004220285452902317, + 0.001637447508983314, + 0.010871020145714283, + -0.007101105991750956, + 0.01206683274358511, + 0.016259940341114998, + -0.0032826599199324846, + -0.01320052519440651, + -0.002709990134462714, + 0.005439392756670713, + -0.016539480537176132, + 0.00033656484447419643, + 0.01097196526825428, + -0.006689560133963823, + -0.012082362547516823, + 0.002706107683479786, + -0.020251158624887466, + 0.020981069654226303, + 0.008572576567530632, + 0.00205967016518116, + 0.007446649018675089, + 0.004142635501921177, + 0.00948884803801775, + 0.01413232646882534, + -0.0021256727632135153, + 0.008425041101872921, + 0.009069536812603474, + 0.0033040137495845556, + 0.005260797217488289, + 0.00039698637556284666, + 0.000555683858692646, + 0.01077784039080143, + -0.0037660321686416864, + -0.010560420341789722, + -0.005482100415974855, + -0.014186682179570198, + -0.007761131972074509, + -0.020406458526849747, + 0.013293704949319363, + 0.002970118075609207, + -0.0019237824017181993, + -0.007951375097036362, + 0.010428414680063725, + 0.017611052840948105, + 0.01905534602701664, + -0.02514311671257019, + 0.0026129274629056454, + 0.008331860415637493, + -0.0009143304778262973, + 0.004352290648967028, + 0.011647521518170834, + -0.0027119314763695, + -0.008230915293097496, + -0.016772432252764702, + 0.002463450888171792, + 0.018403084948658943, + 0.012020242400467396, + 0.00415816530585289, + 0.010436180047690868, + 0.026369988918304443, + 0.007159343454986811, + 0.014737998135387897, + -0.005986826494336128, + 0.015118483453989029, + -0.007345703896135092, + 0.0013074342859908938, + 0.034787267446517944, + 0.021493559703230858, + 0.020251158624887466, + 0.008021259680390358, + -0.011313626542687416, + 0.014357511885464191, + 0.0013588775182142854, + 0.011422336101531982, + 0.012160012498497963, + -0.006701207719743252, + 0.005256914999336004, + 0.011787292547523975, + -0.00964414793998003, + -0.020794708281755447, + 0.022394301369786263, + -0.01476129237562418, + 0.0017713939305394888, + -0.019769728183746338, + 0.018465204164385796, + 0.003189479699358344, + -0.006576967425644398, + -0.0205306988209486, + 0.01295980904251337, + 0.012128952890634537, + 0.019862907007336617, + -0.02585749886929989, + 0.00230232672765851, + 0.009698503650724888, + -0.0023314456921070814, + 0.0006377018289640546, + -0.029398346319794655, + -0.011725172400474548, + 0.0005639342125505209, + 0.012051302939653397, + -0.000535300699993968, + 0.011344686150550842, + 0.005144322291016579, + 0.015887219458818436, + -0.017284922301769257, + -0.015599914826452732, + -0.009349077939987183, + -0.01471470296382904, + 0.004243580624461174, + 0.02115190029144287, + -0.0023974482901394367, + -0.0146370530128479, + -0.0006139214965514839, + 0.021912870928645134, + 0.008836586959660053, + 0.03029908798635006, + -0.008991886861622334, + -0.008261975832283497, + 0.0014326452510431409, + -0.013852786272764206, + 0.007322408724576235, + -0.004849251825362444, + 0.007997965440154076, + 0.009333547204732895, + 0.006608027499169111, + -0.019800787791609764, + -0.009799448773264885, + 0.01549896877259016, + -0.006118831690400839, + -0.00812220573425293, + -0.010436180047690868, + 0.004530886188149452, + -0.005287975072860718, + -0.004523120820522308, + 0.018403084948658943, + -0.011003025807440281, + 0.01566203497350216, + -0.018170135095715523, + -0.007792192045599222, + -0.006301309447735548, + 0.020111387595534325, + -0.007287466432899237, + -0.015320373699069023, + 0.03696146979928017, + -0.007221463602036238, + 0.011826117523014545, + 0.015506734140217304, + -0.005858703516423702, + 0.0019218411762267351, + 0.016290999948978424, + -0.007772779557853937, + 0.02374541386961937, + -0.0008934619836509228, + -0.002044140128418803, + 0.0146059924736619, + 0.01990949735045433, + 0.0013520831707865, + -0.006782740354537964, + -0.01695879176259041, + -0.0035816130694001913, + 0.013666425831615925, + -0.014077971689403057, + 0.009473318234086037, + -0.00783101748675108, + -0.00019570263975765556, + -0.022440891712903976, + 0.009123892523348331, + 0.008098910562694073, + 0.008557045832276344, + -0.018853455781936646, + 0.005148204509168863, + -0.0004496428882703185, + -0.01919511705636978, + 0.008999652229249477, + -0.015048597939312458, + 0.031432777643203735, + -0.009108361788094044, + 0.010397354140877724, + -0.015630975365638733, + 0.016104640439152718, + -0.007384528871625662, + -0.018837925046682358, + -0.0010278938570991158, + 0.008207620121538639, + 0.006169304251670837, + 0.0010968083515763283, + -0.009465552866458893, + 0.030640747398138046, + 0.02374541386961937, + 0.01913299597799778, + -0.013744075782597065, + 0.007990200072526932, + -0.024816986173391342, + -0.008626931346952915, + 0.01022652443498373, + -0.018092483282089233, + 0.014031381346285343, + 0.006840977817773819, + -0.01448951754719019, + 0.002647869987413287, + -0.02725520171225071, + 0.007990200072526932, + 0.0020732588600367308, + 0.014660347253084183, + 0.009830508381128311, + 0.0018073071260005236, + -0.004099927842617035, + -0.013099580071866512, + -0.012812274508178234, + -0.006324604619294405, + 0.010529359802603722, + 0.05367178097367287, + 0.02663400024175644, + -0.008844351395964622, + -0.010692425072193146, + 0.001474382122978568, + -0.025981739163398743, + 0.002807052806019783, + -0.006390606984496117, + -0.00771065941080451, + -0.0007357351132668555, + 0.009946983307600021, + -0.005113262217491865, + 0.0063556646928191185, + 0.0014899121597409248, + -0.005746110808104277, + 0.004406645894050598, + -0.00901518203318119, + -0.011787292547523975, + 0.0012773448834195733, + 0.01686561107635498, + -0.005629635415971279, + 0.008331860415637493, + -0.008720111101865768, + -0.004651243798434734, + -0.0018519560107961297, + 0.00948884803801775, + -0.0008672550902701914, + 0.004662891384214163, + -0.024024955928325653, + -0.004030042793601751, + 0.03311002254486084, + -0.0017383926315233111, + -0.03099793754518032, + 0.0028536429163068533, + -0.0011142796138301492, + 0.007427236530929804, + -0.005827643442898989, + 0.004950196947902441, + 0.010280879214406013, + -0.015623209066689014, + -0.02741050161421299, + -0.00415816530585289, + 0.011694111861288548, + -0.021353790536522865, + -8.693176641827449e-5, + -0.012237663380801678, + -0.0023372694849967957, + 0.0113679813221097, + -0.00941119808703661, + -0.022860202938318253, + 3.3850610634544864e-5, + 0.0020946126896888018, + -0.01608910970389843, + -0.0020266687497496605, + 0.00027298880741000175, + -0.007966904900968075, + 0.015157308429479599, + -0.029305165633559227, + -0.014862238429486752, + -0.014442927204072475, + -0.009248132817447186, + 0.00878999661654234, + 0.01789059303700924, + 0.013969261199235916, + -0.004340643063187599, + 0.014373041689395905, + 0.003416606457903981, + -0.004589123651385307, + 0.0017645995831117034, + -0.0178129430860281, + 0.011461162008345127, + -0.027426032349467278, + -0.016679251566529274, + -0.011864942498505116, + -0.007365116383880377, + -0.03115323930978775, + -0.02060834877192974, + -0.01483117789030075, + -0.014800118282437325, + -0.005866468418389559, + -0.0010210993932560086, + 0.0012841393472626805, + -0.0027954052202403545, + 0.002117907628417015, + -0.007198168430477381, + 0.007512651849538088, + -0.008774466812610626, + -0.0016655956860631704, + 0.012680268846452236, + 0.019505716860294342, + 0.003511727787554264, + -0.02138485014438629, + -0.005419980268925428, + 0.003975687548518181, + 0.01765764318406582, + -0.007101105991750956, + -0.017533402889966965, + -0.01765764318406582, + 0.007217580918222666, + 0.012392963282763958, + 0.0007711630314588547, + 0.004511473700404167, + -0.004499826114624739, + 0.014986478723585606, + -0.011111736297607422, + -0.02942940592765808, + -0.005470452830195427, + -0.013029694557189941, + -0.006883685477077961, + 0.012416258454322815, + -0.02256513200700283, + 0.012742388993501663, + -0.008696816861629486, + 0.016834551468491554, + 0.01764211244881153, + 0.01795271411538124, + 0.0028400542214512825, + 0.0027740513905882835, + 0.002886644098907709, + 0.00517149968072772, + -0.022285591810941696, + 0.027115430682897568, + 0.013518890365958214, + 0.003849505912512541, + -0.0018859279807657003, + 0.012757918797433376, + 0.0009618912008590996, + 0.019490186125040054, + 0.004224168136715889, + -0.011795056983828545, + 0.00952767301350832, + 0.0010007162345573306, + -0.001613181782886386, + 0.003232187358662486, + -0.011725172400474548, + -0.015879454091191292, + 0.0037796208634972572, + -0.01591828092932701, + 0.023636704310774803, + -0.011127266101539135, + -0.020794708281755447, + 0.02834230288863182, + 0.006584732327610254, + 0.007928079925477505, + -0.0033020724076777697, + 0.0009531555697321892, + -0.01998714730143547, + 0.00722534628584981, + -0.0017451870953664184, + 0.011763997375965118, + -0.008261975832283497, + -0.0005814054748043418, + -0.005532572977244854, + 0.0024382146075367928, + 0.0026731062680482864, + 0.020421989262104034, + -0.0027779340744018555, + 0.009186012670397758, + -0.016881141811609268, + 0.02233218215405941, + -0.0028924678917974234, + -0.004915254190564156, + 0.002849760465323925, + 0.014147856272757053, + -7.158373045967892e-5, + -0.009263662621378899, + -0.01221436820924282, + 0.015095188282430172, + -0.008813291788101196, + -0.011779527179896832, + -0.016756901517510414, + 0.003045826917514205, + -0.010979730635881424, + 0.0036049080081284046, + -0.0018461322179064155, + 0.007504886481910944, + 0.0024343321565538645, + 0.00920930691063404, + -0.021912870928645134, + -0.008914236910641193, + 0.015964869409799576, + 0.02225453220307827, + 0.03116876818239689, + -0.007159343454986811, + -0.03093581832945347, + 0.014248802326619625, + -0.001976196188479662, + 0.01070019043982029, + 0.00834739115089178, + -0.0009934365516528487, + 0.02045304886996746, + 0.02772110141813755, + -0.008642461150884628, + -0.00634401710703969, + -0.007753367070108652, + 0.008083379827439785, + 0.01748681254684925, + -0.0006017886335030198, + -0.03981899470090866, + 0.016275471076369286, + 0.021897342056035995, + -0.012439553625881672, + -0.011958122253417969, + 0.00964414793998003 + ], + "fe612ae6-4bae-487d-921f-811daa789dc2": [ + -0.020731603726744652, + -0.02010725438594818, + -0.0020071235485374928, + 0.01125429943203926, + -0.02005922794342041, + -0.039894331246614456, + 0.012591048143804073, + 0.025054024532437325, + -0.00880492851138115, + 0.06016167625784874, + -0.008412709459662437, + 0.03137756511569023, + -0.015376606956124306, + -0.016353154554963112, + 0.007740332745015621, + 0.03646841272711754, + -0.03174576908349991, + 0.026750974357128143, + -0.018138153478503227, + -0.01655326597392559, + 0.0710797905921936, + -0.006143438629806042, + -0.03358680009841919, + 0.025246132165193558, + 0.008676856756210327, + -0.010894098319113255, + 0.002113182796165347, + 0.00064736237982288, + -0.015592727810144424, + -0.005579122807830572, + 0.007612260989844799, + 0.01935483328998089, + 0.023437118157744408, + -0.019723039120435715, + 0.00036345343687571585, + -0.03121747449040413, + -0.021468017250299454, + 0.021387971937656403, + -0.011654523201286793, + 0.014279993250966072, + -0.03249819204211235, + 0.043384283781051636, + 0.0021632108837366104, + -0.00970943458378315, + -0.04264787212014198, + 0.010766026563942432, + 0.005655165296047926, + -0.029392452910542488, + 0.009397259913384914, + -0.00392019422724843, + 0.007940445095300674, + -0.0007524211541749537, + 0.006943886633962393, + 0.02367725409567356, + 0.005186903290450573, + 0.017273668199777603, + 0.006963897962123156, + 0.04069478064775467, + -0.006259503774344921, + -0.052893608808517456, + 0.005034818314015865, + 0.012591048143804073, + 0.03957414999604225, + 0.016617301851511, + 0.0014668210642412305, + -0.013647639192640781, + 0.003469942370429635, + 0.0144400829449296, + -0.055134862661361694, + -0.003163771005347371, + 0.03245016559958458, + 0.032049939036369324, + -0.02409348636865616, + 0.026702946051955223, + -0.025646355003118515, + -0.028608012944459915, + 0.04825100675225258, + -0.004870726261287928, + -0.011950689367949963, + 0.02119586430490017, + -0.02001120150089264, + 0.009293202310800552, + 0.008620825596153736, + -0.00664772093296051, + 0.07120785862207413, + 0.02303689531981945, + -0.0472264364361763, + -0.0531497523188591, + 0.008412709459662437, + -0.03842150792479515, + 0.001867045066319406, + 0.017465775832533836, + 0.0024753855541348457, + 0.020891694352030754, + -0.019931156188249588, + 0.016249096021056175, + 0.04079083353281021, + -0.005559111945331097, + 0.016048982739448547, + -0.012158805504441261, + 0.021612096577882767, + 0.03116944618523121, + -0.028575995936989784, + 0.02249258942902088, + -0.004342430736869574, + -0.02487792633473873, + 0.027279268950223923, + -0.0042223636992275715, + -0.03371487185359001, + 0.04059872403740883, + -0.004110300913453102, + -0.028079718351364136, + -0.012831182219088078, + 0.006723763421177864, + -0.02823980711400509, + -0.07184821367263794, + -0.00011537707905517891, + -0.043928589671850204, + 0.010701990686357021, + -0.0541423074901104, + 0.030993347987532616, + 0.027391333132982254, + -0.003636035369709134, + 0.0005157887353561819, + -0.00973344873636961, + 0.02007523737847805, + -0.00196209829300642, + -0.01879451982676983, + 0.01954694092273712, + 0.0031437596771866083, + -0.025694383308291435, + -0.001166653004474938, + -0.01653725653886795, + -0.003277834737673402, + 0.016024969518184662, + 0.019082682207226753, + 0.0005883293342776597, + 0.05116463825106621, + -0.03605217859148979, + 0.03944607824087143, + -0.0590730644762516, + -0.04668213054537773, + -0.01650523953139782, + -0.008716879412531853, + 0.014856316149234772, + 0.02009124681353569, + -0.051676925271749496, + 0.04716239869594574, + -0.0342271588742733, + 0.015024409629404545, + -0.050972532480955124, + 0.007904424332082272, + 0.01951492391526699, + 0.0005623147590085864, + -0.018714474514126778, + -0.008396700024604797, + -0.00879692379385233, + 0.02190025895833969, + 0.017849991098046303, + 0.023853352293372154, + -0.004874728620052338, + -0.06608498841524124, + 0.0023313050623983145, + 7.716819527558982e-5, + 0.04415271431207657, + 0.0413031205534935, + 0.055198896676301956, + 0.023821333423256874, + -0.03842150792479515, + 0.01655326597392559, + 0.019050663337111473, + -0.016081001609563828, + 0.0329144224524498, + 0.013823737390339375, + 5.2029125072294846e-5, + -0.01704954355955124, + 0.014456091448664665, + 0.0422956757247448, + 0.023469137027859688, + -0.030288953334093094, + -0.013351473025977612, + -0.023757297545671463, + -0.003367885248735547, + -0.010237730108201504, + 0.005575120449066162, + -0.0009710435406304896, + 0.029840704053640366, + 0.02116384729743004, + -0.010493873618543148, + 0.0006623707595281303, + -0.005759223829954863, + -0.01331945601850748, + -0.013495554216206074, + 0.038613613694906235, + -0.024013441056013107, + -0.0519971065223217, + -0.006343550980091095, + 0.005575120449066162, + 0.009325220249593258, + 0.024957969784736633, + -0.017353713512420654, + -0.04255181923508644, + -0.049147509038448334, + 0.046233881264925, + -0.026334740221500397, + 0.03262626379728317, + -0.02944047935307026, + -0.025486266240477562, + 0.0288801658898592, + -0.048667240887880325, + 0.0343872494995594, + -0.04901943728327751, + -0.0011956692906096578, + 0.010717999190092087, + 0.0005618144641630352, + 0.00692787766456604, + -0.01656927540898323, + 0.009645398706197739, + 0.018730483949184418, + -0.0035980138927698135, + -0.02133994549512863, + -0.0019410864915698767, + 0.00309973512776196, + -0.030417025089263916, + -0.05244535580277443, + -0.011110219173133373, + -0.0109021021053195, + 0.030945321545004845, + -0.04306410625576973, + -0.00545505341142416, + 0.02719922550022602, + 0.004510524682700634, + 0.02651084028184414, + -0.03206595033407211, + -0.03059312514960766, + -0.011238290928304195, + 0.015984946861863136, + 0.03999038413167, + 0.01656927540898323, + -0.012735128402709961, + 0.007712317164987326, + 0.019226761534810066, + 0.022572634741663933, + 0.018634431064128876, + 0.014400060288608074, + 0.02012326382100582, + 0.0023032892495393753, + 0.030449043959379196, + 0.013207392767071724, + -0.04495316371321678, + 0.014472100883722305, + 0.032674290239810944, + 0.011262304149568081, + -0.02306891232728958, + -0.014520127326250076, + 0.056991901248693466, + 0.023901378735899925, + -0.029904739931225777, + -0.01653725653886795, + -0.00971743930131197, + -0.013175374828279018, + 0.000825962342787534, + 0.02471783570945263, + -0.01997918263077736, + 0.032113976776599884, + -0.03118545562028885, + 0.013975823298096657, + -0.03502760827541351, + 0.030304962769150734, + 0.02428559400141239, + -0.004306410439312458, + -0.004782677162438631, + 0.000729408289771527, + -0.004462497774511576, + -0.007180018816143274, + -0.007912429049611092, + 7.529214781243354e-5, + 0.01351956743746996, + -0.008428717963397503, + 0.03368285298347473, + 0.002157207578420639, + -0.0105739189311862, + 0.002279275795444846, + 0.02947249636054039, + -0.021932275965809822, + -0.012318895198404789, + -0.01472824439406395, + 0.02886415645480156, + -0.049819886684417725, + -0.011654523201286793, + -0.000780436850618571, + -0.01091811154037714, + 0.048731278628110886, + -0.008716879412531853, + 0.022828778252005577, + 0.027279268950223923, + -0.026158642023801804, + -0.011790599673986435, + -0.04239172860980034, + 0.01890658214688301, + -0.04732248932123184, + -0.00500280037522316, + 0.03352276608347893, + -0.03493155166506767, + 0.016697347164154053, + -0.008284637704491615, + 0.04364042729139328, + 0.026382768526673317, + -0.04485710710287094, + 0.022636670619249344, + 0.025694383308291435, + -0.016889454796910286, + -0.016873445361852646, + -0.03605217859148979, + -0.01890658214688301, + -0.02775953896343708, + 0.023885369300842285, + 0.006327542010694742, + 0.002421355340629816, + -0.023405101150274277, + 0.04421675205230713, + -0.0007524211541749537, + -0.06454812735319138, + 0.02412550337612629, + 0.04524132236838341, + -0.033362675458192825, + 0.053950197994709015, + 6.647470581810921e-5, + -0.04187944158911705, + -0.012623066082596779, + -0.010798044502735138, + -0.023789316415786743, + -0.05065235123038292, + -0.007568236440420151, + -0.010197708383202553, + -0.07447368651628494, + -0.035155680030584335, + -0.018010081723332405, + -0.010037618689239025, + -0.014568154700100422, + -0.018586404621601105, + 0.019162725657224655, + 0.010421833954751492, + -0.006583685055375099, + 0.007244054693728685, + -0.01267109252512455, + -0.020427433773875237, + 0.009325220249593258, + -0.008700869977474213, + -0.0013737690169364214, + 0.0010705993045121431, + -0.005106858443468809, + 0.0047506592236459255, + 0.018746493384242058, + 0.03525173291563988, + -0.011222281493246555, + 0.005066836252808571, + -0.019050663337111473, + 0.015768826007843018, + 0.007616263348609209, + 0.005931320134550333, + -0.0241895392537117, + -0.04677818343043327, + 1.4562839169229846e-5, + -0.026670929044485092, + -0.0029436477925628424, + -0.0022412545513361692, + -0.01943487860262394, + 0.022188419476151466, + 0.01330344658344984, + -0.023933397606015205, + 0.02013927325606346, + 0.011438402347266674, + -0.015568714588880539, + -0.017497794702649117, + -0.011670532636344433, + 0.045657556504011154, + 0.007820377126336098, + -0.034451283514499664, + 0.0241895392537117, + 0.0042703901417553425, + 0.01091010682284832, + 0.013919791206717491, + -0.005767228081822395, + 0.022860797122120857, + 0.012543020769953728, + 0.004518529400229454, + 0.01387976948171854, + 0.001507843961007893, + 0.007844391278922558, + -0.03723684325814247, + 0.017369722947478294, + -0.013087325729429722, + 0.012695105746388435, + -0.022252455353736877, + 0.017577840015292168, + -0.004878730978816748, + 0.0004427478415891528, + 0.044024642556905746, + -0.009301206097006798, + -0.00914912112057209, + -0.004778674803674221, + -0.012502998113632202, + 0.020219318568706512, + 0.01940286159515381, + -0.034579355269670486, + 0.005126869771629572, + -0.02710317075252533, + 0.021644115447998047, + -0.019082682207226753, + -0.020283354446291924, + 0.020187299698591232, + 0.007512204814702272, + -0.003021691460162401, + 0.061058178544044495, + 0.018074117600917816, + 0.0026955087669193745, + 0.029808685183525085, + -0.05737611651420593, + -0.0343872494995594, + 0.026334740221500397, + 0.039189934730529785, + 0.004838708322495222, + 0.022204428911209106, + -0.005190905649214983, + 0.028640031814575195, + 0.021452007815241814, + 0.0012827180325984955, + -0.037396933883428574, + -0.03248218074440956, + -0.022572634741663933, + 0.042199622839689255, + -0.008564794436097145, + 0.002341310493648052, + -0.0050108046270906925, + -0.02651084028184414, + 0.008076520636677742, + -0.015264544636011124, + -0.0006633713492192328, + -0.013783715665340424, + 0.014640195295214653, + 0.005230927839875221, + -0.00812854990363121, + -0.019162725657224655, + -0.025198103860020638, + -0.013967818580567837, + -0.04770670458674431, + -0.00601536687463522, + 0.0056911855936050415, + -0.009181139059364796, + -0.011134232394397259, + 0.036884646862745285, + -0.056927867233753204, + 0.005503080319613218, + 0.01007764134556055, + 0.00013169871817808598, + -0.025486266240477562, + -0.016056988388299942, + 0.00489073758944869, + -0.030256936326622963, + -0.026670929044485092, + -0.037460967898368835, + 0.002077162731438875, + 0.0038221394643187523, + 0.02526213973760605, + -0.02542223036289215, + 0.001141639077104628, + 0.020219318568706512, + 0.001033578533679247, + 0.00766829214990139, + -0.03136155381798744, + -0.013991831801831722, + -0.031121419742703438, + 0.0031417584978044033, + -0.012703110463917255, + -0.018026089295744896, + -0.010197708383202553, + 0.001518850214779377, + -0.0018070114310830832, + -0.02230048179626465, + -0.04123908281326294, + -0.026174651458859444, + -0.011102214455604553, + 0.008908987045288086, + -0.010141677223145962, + -0.0039642187766730785, + 0.008941004984080791, + -0.03198590502142906, + 0.014055867679417133, + -0.003754101460799575, + 0.03957414999604225, + -0.008941004984080791, + 0.007600254379212856, + 0.0138637600466609, + 0.004072279669344425, + -0.04306410625576973, + -0.007792361546307802, + -0.0241094958037138, + -0.022828778252005577, + -0.02055550552904606, + 0.0170335341244936, + -0.020299362018704414, + -0.008096531964838505, + 0.04191146045923233, + -0.006351555231958628, + 0.014304006472229958, + -0.02069958671927452, + 0.0013267426984384656, + -0.004330424126237631, + 0.01471223495900631, + -0.021628106012940407, + -0.0068358262069523335, + -0.022604653611779213, + 0.010397819802165031, + -0.02414151281118393, + 0.02899222820997238, + -0.015840867534279823, + 0.007892417721450329, + 0.04107899218797684, + -0.005527094006538391, + 0.007560231722891331, + -0.0075802430510520935, + -0.015888893976807594, + 0.0020031211897730827, + -0.030320972204208374, + -0.017385732382535934, + -0.006627710070461035, + -0.0059633380733430386, + 0.030897295102477074, + -0.014312011189758778, + 0.0054270378313958645, + 0.024493711069226265, + 0.0005848273285664618, + 0.01834626868367195, + 0.015416629612445831, + 0.00738813541829586, + 0.009669412858784199, + 0.004118305165320635, + 0.01820218935608864, + 0.04882733151316643, + -0.04616984352469444, + 0.024429675191640854, + -0.003992234822362661, + -4.737026392831467e-5, + -0.0006893858662806451, + 0.03771711140871048, + -0.01007764134556055, + 0.03144159913063049, + 0.0018530372763052583, + 0.01881052926182747, + -0.026975098997354507, + 0.01006963662803173, + -0.008032496087253094, + 0.002193227643147111, + 0.007660287898033857, + -0.03835747018456459, + 0.037492986768484116, + -0.036884646862745285, + -0.03909388184547424, + -0.01764187589287758, + 0.013663648627698421, + 0.026718955487012863, + -0.0032538212835788727, + -0.005411028861999512, + -0.0247658621519804, + -0.009653403423726559, + -0.030817249789834023, + 0.033938996493816376, + 0.008356677368283272, + 0.018186179921030998, + 0.03134554624557495, + 0.018682457506656647, + 0.03822939842939377, + 0.012831182219088078, + 0.00814455933868885, + 0.018698466941714287, + -0.017273668199777603, + 0.002641478553414345, + -0.01877851039171219, + -0.019947165623307228, + 0.045113250613212585, + -0.04021450877189636, + -0.01592891663312912, + -0.014360037632286549, + -0.012070756405591965, + -0.004662610124796629, + -0.018490349873900414, + -0.015176494605839252, + 0.010942124761641026, + 0.03326662257313728, + -0.005823259707540274, + 0.015400620177388191, + 0.022556625306606293, + 0.012903222814202309, + 0.004078282974660397, + 0.05145280063152313, + 0.020779632031917572, + 0.007532216142863035, + 0.0170335341244936, + 0.002093171700835228, + -0.014560149982571602, + 0.028495950624346733, + 0.003543983679264784, + -0.005975344683974981, + -0.0259185079485178, + 0.026686938479542732, + -0.011446407064795494, + 0.004378451034426689, + 0.0061674523167312145, + 0.03935002535581589, + -0.010181698948144913, + 0.016048982739448547, + 0.02723124250769615, + -0.005843270570039749, + 0.029872721061110497, + -0.0008985029417090118, + 0.0008464737911708653, + 0.024509718641638756, + 0.0004022251523565501, + -0.00766829214990139, + 0.009477305226027966, + -0.0194188691675663, + 0.06653324514627457, + -0.03582805395126343, + 0.017561830580234528, + 0.017353713512420654, + -0.02055550552904606, + -0.006279515102505684, + -0.023789316415786743, + -0.01153445616364479, + 0.024445682764053345, + -0.00011268807429587469, + 0.01759384758770466, + -0.02892819233238697, + 0.020875684916973114, + 0.01415992621332407, + 0.0016249095788225532, + 0.025118060410022736, + -0.008676856756210327, + -0.021676132455468178, + -0.016697347164154053, + -0.003696068888530135, + -0.009501318447291851, + 0.05596732720732689, + -0.01956295035779476, + 0.018730483949184418, + -0.016793400049209595, + 0.022060347720980644, + 0.04405666142702103, + 0.009693426080048084, + -0.03550787642598152, + 0.007011924870312214, + 0.00545505341142416, + 0.021516043692827225, + -0.0015258541097864509, + -0.05801647529006004, + -0.007752339355647564, + 0.006687743589282036, + 0.010141677223145962, + 0.029040254652500153, + 0.0300328116863966, + -0.00973344873636961, + 0.009509323164820671, + 0.012695105746388435, + 0.013455531559884548, + 0.012062751688063145, + 0.023196984082460403, + 0.0080645140260458, + 0.02417353168129921, + 0.020379407331347466, + -0.00029541534604504704, + -0.00574721721932292, + 0.023773306980729103, + 0.029936756938695908, + -0.0021191861014813185, + 0.0012857196852564812, + -0.00455054733902216, + -0.011510442942380905, + -0.00047976855421438813, + -0.014352033846080303, + -0.01704954355955124, + -0.011214276775717735, + -0.03310653194785118, + 0.017801964655518532, + 0.014392055571079254, + -0.004050266928970814, + -0.010405824519693851, + 0.03012886457145214, + -0.021596089005470276, + -0.009509323164820671, + 0.016121024265885353, + 0.02063555084168911, + 0.002793563762679696, + -5.54060134163592e-5, + 0.0014338025357574224, + 0.012430958449840546, + -0.0109021021053195, + -0.0026174650993198156, + 0.01611301861703396, + -0.019835103303194046, + -0.03944607824087143, + -0.0009480306762270629, + -0.014255980029702187, + -0.0283038429915905, + 0.0025114058516919613, + 0.015480665490031242, + -0.017369722947478294, + -0.011046183295547962, + 0.01948290504515171, + -0.021596089005470276, + 0.009613380767405033, + 0.014119903557002544, + -0.014752257615327835, + 0.015424634329974651, + 0.030897295102477074, + 0.01821819692850113, + -0.0005723203648813069, + 0.0004987791762687266, + -0.016889454796910286, + 0.024909943342208862, + -0.011014165356755257, + 0.04892338439822197, + -0.0021111818496137857, + -0.043896570801734924, + -0.05087647959589958, + -0.009973582811653614, + 0.0009270188747905195, + -0.012230846099555492, + -0.006491633597761393, + -0.00250140018761158, + 0.05830463767051697, + -0.0031677731312811375, + -0.013815733604133129, + 0.004162329714745283, + -0.0015248535200953484, + -0.02407747693359852, + -0.0065796831622719765, + 0.004206354729831219, + 0.019082682207226753, + -0.028031690046191216, + 0.01175858173519373, + -0.019338825717568398, + 0.01890658214688301, + -0.005639156326651573, + 0.02836787886917591, + -0.00037420945591293275, + 0.020187299698591232, + 0.011598492041230202, + 0.019226761534810066, + 0.009797483682632446, + 0.031601689755916595, + -0.026879046112298965, + 0.025518283247947693, + 0.016969498246908188, + -0.02001120150089264, + 0.017385732382535934, + 0.013463536277413368, + -0.011854635551571846, + -0.03723684325814247, + 0.03765307739377022, + -0.024413665756583214, + 0.013159366324543953, + -0.01302328985184431, + -0.020523488521575928, + -0.009021049365401268, + -0.009205152280628681, + -0.032754335552453995, + 0.04588168114423752, + 0.03854957967996597, + -0.02406146749854088, + 0.017001517117023468, + 0.017449768260121346, + 0.030817249789834023, + 0.01953093335032463, + -0.005807250738143921, + -0.009653403423726559, + 0.021676132455468178, + -0.018410304561257362, + -0.047514595091342926, + 0.002687504282221198, + 0.003469942370429635, + -0.060353782027959824, + 0.0071680122055113316, + -0.03185783326625824, + 0.034515321254730225, + -0.011798604391515255, + 0.0277275200933218, + -0.003057711524888873, + -0.003017689101397991, + -0.002117185154929757, + 0.01877851039171219, + 0.0023012880701571703, + -0.016249096021056175, + 0.019130708649754524, + 0.006175456568598747, + -0.011638514697551727, + 0.024045459926128387, + -0.03877370432019234, + -0.004902744200080633, + 0.024013441056013107, + 0.03931800648570061, + -0.03656446561217308, + 0.04533737897872925, + 0.038645632565021515, + -0.009109098464250565, + -0.0076362742111086845, + 0.005302968434989452, + -9.549094829708338e-5, + -0.015472660772502422, + 0.005515086930245161, + -0.027967654168605804, + -0.006179458927363157, + -0.031521644443273544, + 0.019803084433078766, + 8.773661102168262e-5, + 0.005875288508832455, + 0.010758021846413612, + -0.008108538575470448, + 0.009909546934068203, + 0.007003920618444681, + 0.0012567033991217613, + 0.024413665756583214, + 0.03717280924320221, + 0.012470980174839497, + -0.0343872494995594, + -0.013959813863039017, + 0.012639074586331844, + -0.013063312508165836, + 0.02132393606007099, + 0.024685818701982498, + 0.01124629471451044, + 0.023180974647402763, + -0.022780751809477806, + 0.046906255185604095, + 0.0195789597928524, + 0.02133994549512863, + -0.03281836956739426, + -0.0038301439490169287, + -0.021564070135354996, + 0.008060512132942677, + -0.02117985486984253, + -0.039766259491443634, + -0.024317611008882523, + -0.004174336791038513, + -0.013759702444076538, + -0.024941960349678993, + 0.00455054733902216, + -0.010117663070559502, + 0.032738324254751205, + 0.025070032104849815, + 0.004638596437871456, + 0.015088445506989956, + -0.006255501415580511, + -0.01204674318432808, + -0.02001120150089264, + 0.013935800641775131, + -0.019338825717568398, + 0.023821333423256874, + -0.004122307524085045, + 0.029168326407670975, + 0.01091811154037714, + -0.0033158559817820787, + -0.033330656588077545, + -0.011614501476287842, + -0.006043382920324802, + -0.022764742374420166, + -0.007059951778501272, + 0.01625709980726242, + -0.0015448647318407893, + 8.842449460644275e-5, + -0.00971743930131197, + -0.011926676146686077, + 0.01627310924232006, + 0.015816854313015938, + -0.012575038708746433, + -0.010021609254181385, + -0.020939720794558525, + -0.0058392686769366264, + -0.05657566711306572, + -0.011518447659909725, + -0.011054188013076782, + 0.008012484759092331, + 0.0025134067982435226, + -0.008420713245868683, + -0.039702221751213074, + -0.014688221737742424, + 0.010261744260787964, + -0.01642519421875477, + 0.004594571888446808, + -0.00184903503395617, + 0.0058392686769366264, + 0.01450411882251501, + -0.011862640269100666, + -0.034515321254730225, + -0.009597372263669968, + -0.008612820878624916, + -0.012727123685181141, + -0.026766981929540634, + -0.01663331128656864, + -0.017209632322192192, + -0.00032268062932416797, + -0.022844787687063217, + -0.02719922550022602, + 0.006823819596320391, + 0.020395416766405106, + -0.03235410898923874, + 0.006151443347334862, + 0.020955730229616165, + -0.0017249655211344361, + 0.02654285728931427, + -0.006035378202795982, + 0.022060347720980644, + -0.014656203798949718, + -0.024621782824397087, + 0.05026813596487045, + 0.010229726321995258, + 0.013727684505283833, + -0.002973664551973343, + -0.011006160639226437, + -0.020875684916973114, + -0.007055949419736862, + 0.02713518962264061, + -0.00019923652871511877, + 0.022860797122120857, + 0.010653963312506676, + -0.00028891171677969396, + 0.019306806847453117, + 0.01652124710381031, + 0.011006160639226437, + 0.012446966953575611, + -0.004902744200080633, + 0.012599051930010319, + 0.010245734825730324, + -0.003630031831562519, + 0.005571118555963039, + -0.00796445831656456, + -0.0036620497703552246, + 0.021468017250299454, + -0.043448321521282196, + -0.02655886672437191, + -0.02414151281118393, + 0.0010205712169408798, + 0.012527012266218662, + -0.035635948181152344, + 0.007192025892436504, + 0.012150801718235016, + -0.01954694092273712, + 0.05769629403948784, + -0.000610841903835535, + 0.011702550575137138, + 0.0013667650055140257, + 0.026991108432412148, + 0.0011956692906096578, + -0.010461855679750443, + 0.019610976800322533, + 0.05007603019475937, + -0.0042823972180485725, + 0.005843270570039749, + 0.00853277649730444, + 0.005471062380820513, + 0.010133672505617142, + -0.016777390614151955, + 0.0028395894914865494, + 0.0026594887021929026, + -0.05679979547858238, + 0.011374366469681263, + -0.05212517827749252, + -0.011670532636344433, + 0.005038820672780275, + -0.006499638315290213, + -0.012062751688063145, + -0.021948285400867462, + -0.010653963312506676, + -0.005042822565883398, + -0.023789316415786743, + -0.01204674318432808, + -0.013727684505283833, + -0.0047506592236459255, + -0.0035359791945666075, + 0.007896419614553452, + 0.026270704343914986, + -0.01759384758770466, + -0.0023092925548553467, + -0.014888334088027477, + -0.007816375233232975, + -0.0018620422342792153, + -0.010942124761641026, + 0.025118060410022736, + 0.01034979335963726, + 0.009237170219421387, + -0.013079321011900902, + -0.04857118800282478, + -0.00264347973279655, + -0.011222281493246555, + 0.013623625971376896, + -0.01351156271994114, + -0.009469300508499146, + -0.006615702994167805, + -0.01658528298139572, + -0.018170170485973358, + -0.0068438309244811535, + 0.010878088884055614, + -0.018138153478503227, + 0.04658607766032219, + 0.03646841272711754, + 0.011590487323701382, + 0.014376047067344189, + -0.025118060410022736, + -0.002071159426122904, + 0.019995192065835, + -0.01620907336473465, + -0.026927072554826736, + -0.000882493972312659, + 0.001086608273908496, + 0.014640195295214653, + 0.03281836956739426, + -0.007280074991285801, + -0.03345872834324837, + -0.018186179921030998, + 0.043384283781051636, + -0.0042143589816987514, + -0.021371962502598763, + 0.02526213973760605, + 0.018090125173330307, + -0.0006838827976025641, + -0.0088849738240242, + 0.0029216352850198746, + 0.006399582140147686, + 0.0229568500071764, + 0.015136472880840302, + -0.017241651192307472, + 0.004822699353098869, + 0.01325542014092207, + -0.010998155921697617, + 0.0012677096528932452, + -0.03848554193973541, + -0.005615143105387688, + -0.08196587860584259, + -0.015136472880840302, + 0.009661408141255379, + 0.021676132455468178, + 0.008356677368283272, + -0.002395340707153082, + 0.024333620443940163, + 0.016105014830827713, + 0.0040102447383105755, + -0.006883853115141392, + 0.012607056647539139, + -0.01211878377944231, + 0.009589367546141148, + 0.0365324504673481, + -0.006227485835552216, + 0.008476744405925274, + 0.0011746574891731143, + -0.015984946861863136, + 0.015760822221636772, + -0.017449768260121346, + 0.014400060288608074, + 0.012871204875409603, + 0.013383490964770317, + -0.006147440988570452, + 0.0014398059574887156, + 0.03650043159723282, + -0.01562474574893713, + 0.0002648982626851648, + -0.015592727810144424, + -0.015400620177388191, + 0.00675578135997057, + -0.007023931480944157, + -0.026302723214030266, + -0.0010796042624861002, + 0.010557909496128559, + -0.0004194848006591201, + 0.02010725438594818, + 0.0007143999100662768, + 0.041527245193719864, + -0.006327542010694742, + 0.030304962769150734, + 0.0068398285657167435, + -0.01056591421365738, + -0.012502998113632202, + -0.004762665834277868, + -0.018714474514126778, + -0.004526533652096987, + -0.00824461504817009, + -0.0006423595477826893, + 0.014600172638893127, + 0.0010255740489810705, + -0.002705514430999756, + -0.009877528995275497, + -0.029104290530085564, + -0.0007169012678787112, + -0.00500280037522316, + 0.021403981372714043, + -0.006231488194316626, + 0.002891618525609374, + -0.005659167654812336, + 0.07357718795537949, + 0.009941564872860909, + -0.0027115177363157272, + 0.0005327982362359762, + -0.005975344683974981, + 0.0164572112262249, + -0.016649318858981133, + 0.01596093364059925, + 0.03150563687086105, + -0.012823177501559258, + -0.004830704070627689, + 0.0029796678572893143, + 0.006819817237555981, + 0.011686541140079498, + 0.017465775832533836, + -0.0020471459720283747, + 0.019995192065835, + 0.0066957478411495686, + -0.003952212166041136, + -0.0066317119635641575, + -0.01764187589287758, + 0.006155445706099272, + 0.00562314735725522, + -0.010806048288941383, + -0.008460735902190208, + -0.01584887132048607, + 0.021612096577882767, + -0.029744649305939674, + -0.011350353248417377, + -0.0010595930507406592, + 0.029152318835258484, + 0.014135912992060184, + 0.038581594824790955, + 0.02005922794342041, + -0.008388695307075977, + 0.04123908281326294, + 0.003810132620856166, + 0.02190025895833969, + -0.0069038644433021545, + -0.010205713100731373, + 0.00528295710682869, + -0.01325542014092207, + 0.01001360546797514, + -0.029072273522615433, + -0.006331543903797865, + -0.0015558708691969514, + 0.0046866233460605145, + -0.0034119097981601954, + -0.014095890335738659, + -0.0264948308467865, + 0.010509883053600788, + 0.01627310924232006, + -0.031617697328329086, + -0.007208034861832857, + -0.005755221471190453, + -0.006219481583684683, + -0.00831665564328432, + -0.018474340438842773, + -0.01821819692850113, + -0.019883129745721817, + 0.004454493522644043, + 0.033298637717962265, + 0.017401739954948425, + -0.03004881925880909, + -0.004866724368184805, + 0.0229568500071764, + 0.0003006682964041829, + -0.011934680864214897, + 0.0050148069858551025, + 0.015128468163311481, + 0.015152481384575367, + 0.010261744260787964, + -0.018042098730802536, + 0.007023931480944157, + -0.020235326141119003, + 0.021964294835925102, + 0.04063074290752411, + -0.014600172638893127, + -0.009477305226027966, + -0.03765307739377022, + 0.000170470419107005, + 0.01564875990152359, + 0.007071958389133215, + 0.020187299698591232, + -0.009981587529182434, + -0.004670614376664162, + -0.004862722009420395, + -0.01358360331505537, + 0.0013597611105069518, + -0.026318732649087906, + 0.0001593391934875399, + -0.005775232799351215, + 0.00823661033064127, + -0.01949891448020935, + -0.013783715665340424, + -0.03193787857890129, + -0.028511960059404373, + 0.008652843534946442, + 0.009797483682632446, + -0.013687661848962307, + -0.01711357943713665, + -0.005443046800792217, + 0.012839186936616898, + -0.01658528298139572, + 0.0277275200933218, + 0.0018380287801846862, + -0.027535412460565567, + 0.0008719880715943873, + -0.009853515774011612, + -0.021003756672143936, + -0.018986627459526062, + -0.0026074594352394342, + -0.00853277649730444, + -0.01562474574893713, + 0.01028575748205185, + 0.006287519354373217, + -0.015504678711295128, + -0.01119026355445385, + 0.026334740221500397, + 0.009205152280628681, + -0.010541900992393494, + 0.0018840546254068613, + 0.012462976388633251, + 0.013063312508165836, + -0.0075162071734666824, + 0.013447526842355728, + 0.0066397166810929775, + 0.016697347164154053, + -0.0028235805220901966, + -0.00859681237488985, + 0.036212269216775894, + 0.04047065228223801, + -0.01611301861703396, + -0.009053067304193974, + 0.009293202310800552, + 0.000727407168596983, + 0.012078761123120785, + 0.011670532636344433, + -0.02242855355143547, + -0.02119586430490017, + -0.017305687069892883, + -0.016032975167036057, + 0.01120627298951149, + 0.012799164280295372, + -0.007892417721450329, + 0.009469300508499146, + -0.03944607824087143, + 0.01323140598833561, + 0.005659167654812336, + -0.01450411882251501, + -0.0006133433198556304, + 0.03062514215707779, + 0.0007524211541749537, + -0.00647162226960063, + 0.004358439706265926, + 0.007119985297322273, + 0.0031037372536957264, + -0.014840306714177132, + 0.0071119810454547405, + -0.011646519415080547, + 0.019995192065835, + 0.010093649849295616, + -0.023485146462917328, + -0.03838948905467987, + 0.007184021174907684, + 0.011598492041230202, + -0.011318335309624672, + -0.047514595091342926, + -0.0195789597928524, + 0.015496673993766308, + -0.004080283921211958, + -0.006067396141588688, + -0.011854635551571846, + -0.007204032503068447, + 0.00517889903858304, + -0.002229247707873583, + 0.03499558940529823, + -0.014095890335738659, + 0.02543823979794979, + -0.0135355768725276, + -0.018554385751485825, + -0.02948850579559803, + -0.00750019820407033, + 0.007596252020448446, + 0.02425357513129711, + 0.015888893976807594, + -0.03528375178575516, + -0.01324741542339325, + -0.005851275287568569, + 0.021660124883055687, + 0.001057591987773776, + -0.023309046402573586, + -0.01592891663312912, + 0.01478427555412054, + 0.009205152280628681, + 0.01877851039171219, + -0.018538376316428185, + -0.017577840015292168, + 0.011446407064795494, + -0.012078761123120785, + 0.012206832878291607, + 0.004858719650655985, + 0.007148000877350569, + -0.04207155108451843, + 0.028031690046191216, + -0.012462976388633251, + -0.01027775276452303, + -0.01026974804699421, + 0.0024913945235311985, + -0.03009684756398201, + -0.00037621057708747685, + 0.004850715398788452, + -0.012767146341502666, + 0.006751779466867447, + 0.006739772390574217, + 0.015840867534279823, + 0.004698629956692457, + -0.005322979763150215, + 0.005363001953810453, + 0.0053670043125748634, + -0.014760262332856655, + 0.008957013487815857, + -0.032049939036369324, + 0.00943728256970644, + 0.023421110585331917, + 0.0020411424338817596, + 0.02412550337612629, + 0.018154161050915718, + 0.02942446991801262, + -0.0042143589816987514, + 0.012527012266218662, + 0.013039298355579376, + 0.016889454796910286, + -0.014376047067344189, + 0.023485146462917328, + -0.012318895198404789, + 0.00825261976569891, + -0.000499529589433223, + 0.0023533173371106386, + 0.001744976732879877, + 0.02013927325606346, + 0.0028856152202934027, + -0.019226761534810066, + -0.00647962698712945, + -0.020203309133648872, + -0.00023350570700131357, + 0.0015748814912512898, + 0.0016199067467823625, + -0.007628269959241152, + -0.0033758897334337234, + 0.005383013281971216, + 0.011870644986629486, + -0.011270308867096901, + -0.006423595827072859, + -0.01056591421365738, + 0.01330344658344984, + 0.0138637600466609, + 0.011806609109044075, + -0.008772910572588444, + -0.020251335576176643, + -0.0027775547932833433, + -0.01329544186592102, + 0.007204032503068447, + 0.01943487860262394, + -0.022588644176721573, + 0.00039847305743023753, + 0.01711357943713665, + -0.00970943458378315, + 0.02479788102209568, + -0.021435998380184174, + -0.024461692199110985, + 0.03608419746160507, + -0.01820218935608864, + 0.03781316429376602, + 0.008989031426608562, + -0.001212678849697113, + -0.0033318649511784315, + -0.0009020048892125487, + 0.004970782436430454, + -0.00021224380179774016, + 0.022140393033623695, + 0.018986627459526062, + -0.02127590961754322, + -0.004446488805115223, + 0.006959895603358746, + 0.011390375904738903, + 0.00722404383122921, + 0.022828778252005577, + 0.03826141729950905, + -0.0061074187979102135, + 0.005350995343178511, + 0.021980304270982742, + 0.004602576140314341, + 0.010998155921697617, + 0.015720799565315247, + 0.023309046402573586, + 0.008124548010528088, + 0.03579603508114815, + -0.02366124466061592, + -0.013999836519360542, + -0.01267909724265337, + -0.007292081601917744, + 0.0017890013987198472, + 0.015744812786579132, + 0.009565354324877262, + 0.0013647639425471425, + 0.029120299965143204, + -0.0010415830183774233, + -0.005847272928804159, + -0.02540622092783451, + 0.013919791206717491, + 0.0025194103363901377, + -0.020283354446291924, + -0.005471062380820513, + -0.010141677223145962, + -0.009965578094124794, + 0.004814695101231337, + 0.008084525354206562, + -0.003341870615258813, + -0.014312011189758778, + -0.006983909290283918, + 0.0027355311904102564, + 0.0002709016262087971, + -0.011342348530888557, + -0.011430398561060429, + 0.005058831535279751, + 0.003441926557570696, + -0.0012026731856167316, + -0.002229247707873583, + 0.00031567670521326363, + 0.013551585376262665, + -0.006711756810545921, + 0.013215397484600544, + -0.007027933839708567, + -0.0023152960930019617, + 0.008372686803340912, + -0.021435998380184174, + 0.03464339300990105, + -0.03129751980304718, + 0.0024093487299978733, + -0.014648199081420898, + 0.0035840061027556658, + -0.0030677171889692545, + 0.016745373606681824, + 0.0039682211354374886, + 0.014279993250966072, + 0.005807250738143921, + 0.018762502819299698, + 0.003035699250176549, + -0.006315534934401512, + -0.019995192065835, + -0.00693988474085927, + 0.016873445361852646, + -0.0038941798266023397, + -0.003672055434435606, + -0.01953093335032463, + 0.015424634329974651, + 0.023196984082460403, + 0.0047426545061171055, + -0.0005608139326795936, + -0.00766829214990139, + -0.0006068396614864469, + 0.01203873846679926, + -0.022588644176721573, + -0.023469137027859688, + 0.010125667788088322, + -0.008612820878624916, + -0.003956214524805546, + 0.0029496510978788137, + 0.02543823979794979, + 0.004068277310580015, + -0.008756902068853378, + 0.0073721264488995075, + 0.01765788346529007, + 0.03586007282137871, + -0.02004321850836277, + 0.017481785267591476, + -0.0235331729054451, + 0.026750974357128143, + -0.02122788317501545, + -0.015472660772502422, + -0.01834626868367195, + 0.0034519322216510773, + -0.024589763954281807, + -0.015096450224518776, + -0.011126227676868439, + 0.014039859175682068, + -0.0047466568648815155, + 0.026670929044485092, + 0.03206595033407211, + 0.0010675975354388356, + -0.017481785267591476, + 0.03008083812892437, + -0.01478427555412054, + -0.00415032310411334, + 0.018106134608387947, + -0.0009260183433070779, + 1.17253130156314e-5, + -0.034515321254730225, + 0.01125429943203926, + 0.009021049365401268, + -0.0064275977201759815, + -0.026174651458859444, + 0.009909546934068203, + 0.0066957478411495686, + 0.005927317775785923, + 0.033938996493816376, + -0.025054024532437325, + -0.03838948905467987, + -0.01035779807716608, + -0.010173695161938667, + -0.033971015363931656, + -0.021708151325583458, + 0.01387176476418972, + 0.0044785067439079285, + -0.018106134608387947, + 0.010862080380320549, + -0.0042703901417553425, + -0.005050827283412218, + -0.01000560075044632, + -0.004654605407267809, + -0.022156402468681335, + -0.015520688146352768, + 0.023405101150274277, + 0.033234603703022, + -0.005471062380820513, + 0.03355478122830391, + 0.013199388049542904, + 0.0015548703959211707, + 0.011278312653303146, + -0.014191944152116776, + 0.013935800641775131, + -0.012350913137197495, + 0.02005922794342041, + 0.013663648627698421, + -0.04136715456843376, + -0.009805488400161266, + 0.0012146799126639962, + 0.03365083783864975, + 0.00048477135715074837, + 0.008908987045288086, + -0.021996311843395233, + -0.03182581439614296, + -0.002279275795444846, + -0.007880411110818386, + -0.015368602238595486, + -0.004970782436430454, + 0.015256539918482304, + 0.0059033045545220375, + -0.019851110875606537, + -0.005727205891162157, + -0.002527414821088314, + -0.0026314728893339634, + 0.008740892633795738, + -0.003772111376747489, + -0.0033918987028300762, + 0.009661408141255379, + 0.005114863160997629, + -0.013423513621091843, + -0.007252059411257505, + -0.009005040861666203, + -0.020955730229616165, + 0.000494026520755142, + -0.0006838827976025641, + 0.008412709459662437, + 0.0029816690366715193, + 0.004078282974660397, + -0.0034199142828583717, + -0.007472182624042034, + 0.001270711305551231, + -0.0028375883121043444, + -0.01301528513431549, + -0.007620265241712332, + 0.011222281493246555, + 0.018138153478503227, + -0.005983349401503801, + -0.0031717754900455475, + 0.0001468321861466393, + -0.011038178578019142, + -0.01204674318432808, + -0.005527094006538391, + 0.012607056647539139, + 0.0002573940728325397, + -0.00244736997410655, + -0.008388695307075977, + 0.08561592549085617, + 0.008540780283510685, + 0.004386455286294222, + 0.012278873473405838, + 0.008404704742133617, + -0.01656927540898323, + -0.007003920618444681, + 0.008780915290117264, + 0.020971739664673805, + -0.007440164685249329, + -0.003201792249456048, + -0.023805325850844383, + 0.013791719451546669, + 0.00014545641897711903, + -0.026847027242183685, + -0.011462416499853134, + 0.019835103303194046, + 0.006811812985688448, + 0.004422475583851337, + 0.011526452377438545, + 0.0017479783855378628, + -0.02124389074742794, + -0.0037901215255260468, + 0.01528855785727501, + -0.007232048083096743, + 0.022092366591095924, + -0.0011506440350785851, + 0.0007609259337186813, + 0.028111735358834267, + 0.029120299965143204, + 0.0009330222383141518, + -0.006207474507391453, + -0.0013667650055140257, + -0.004906746558845043, + 0.0025534292217344046, + 0.00545905577018857, + -0.00286960625089705, + 0.009261184372007847, + 0.0008965018205344677, + 0.0053670043125748634, + -0.00264347973279655, + -0.003323860466480255, + 0.029664603993296623, + 0.03196989372372627, + -0.028688058257102966, + 0.008092530071735382, + 0.0015578720485791564, + -0.00018147658556699753, + 0.00573521014302969, + 0.012214837595820427, + -0.0016779392026364803, + -0.041655316948890686, + 0.0063715665601193905, + 0.00814455933868885, + 0.013039298355579376, + 0.0007664290023967624, + 0.004290401469916105, + -0.019594967365264893, + 0.005671174265444279, + -0.0016449207905679941, + -0.025486266240477562, + -0.009093089960515499, + -0.013671652413904667, + -0.02231649123132229, + -0.014640195295214653, + -0.009301206097006798, + -0.016697347164154053, + -0.007808370515704155, + -0.009253179654479027, + -0.01711357943713665, + -0.012631069868803024, + -0.0027355311904102564, + -0.004642598796635866, + -0.03473944589495659, + -0.0020121263805776834, + 0.01885855570435524, + 0.005711196921765804, + 0.023293038830161095, + 0.0223805271089077, + 0.0047546615824103355, + -0.0044424869120121, + 0.011934680864214897, + -0.009765466675162315, + -0.01591290719807148, + 0.00016221580153796822, + -0.010445847176015377, + 0.013671652413904667, + -0.023741289973258972, + 0.013383490964770317, + -0.01415192149579525, + -0.0277275200933218, + -0.013335464522242546, + -0.004766668193042278, + 0.0008394698961637914, + -0.008732887916266918, + -0.011454411782324314, + -0.011134232394397259, + -0.020859675481915474, + 0.006499638315290213, + 0.002623468404635787, + 0.019194744527339935, + 0.002113182796165347, + -0.005435042083263397, + -0.008500758558511734, + -0.01949891448020935, + -0.009917551651597023, + 0.02065156027674675, + 0.008032496087253094, + -0.003926197532564402, + 0.007760344073176384, + -0.0040702782571315765, + -0.01027775276452303, + 0.018730483949184418, + 0.0024773867335170507, + -0.0277275200933218, + -0.0018510360969230533, + 0.01302328985184431, + -0.002423356520012021, + -0.013551585376262665, + -0.010101654566824436, + -0.01584887132048607, + -0.004134314134716988, + -0.01240694522857666, + -0.008364682085812092, + -0.0025674370117485523, + 0.01642519421875477, + -0.004170334432274103, + -0.005871286615729332, + -0.016353154554963112, + -0.00030492068617604673, + 0.0067677884362638, + 0.02066756784915924, + 0.03140958026051521, + -0.0025934516452252865, + 0.026654919609427452, + -0.001664932002313435, + 0.0047546615824103355, + 0.007139996625483036, + 0.02407747693359852, + -0.028624022379517555, + 0.022716715931892395, + -0.003201792249456048, + 0.008844951167702675, + 0.021099811419844627, + 0.0026975099463015795, + 0.008780915290117264, + 0.0018480344442650676, + -0.021676132455468178, + 0.008332664147019386, + 0.0016579279908910394, + 0.03187384083867073, + -0.03592410683631897, + 0.006359559949487448, + -0.007424155715852976, + 0.013839746825397015, + 0.017257660627365112, + -0.01472824439406395, + 0.0324181467294693, + -0.021003756672143936, + 0.00829264149069786, + -0.0023092925548553467, + -0.004802688490599394, + -0.010509883053600788, + 0.00020361397764645517, + -0.030401017516851425, + 0.007007922511547804, + 0.006571678444743156, + 0.008965018205344677, + 0.022572634741663933, + -0.013495554216206074, + -0.014384051784873009, + 0.011886653490364552, + 0.0068478332832455635, + -0.040438637137413025, + 0.013799724169075489, + 0.0021091806702315807, + 0.011366362683475018, + -0.003910188563168049, + -0.016377167776226997, + 0.01762586645781994, + -0.010405824519693851, + -0.018730483949184418, + 0.016985507681965828, + 0.009565354324877262, + -0.005363001953810453, + -0.02247658185660839, + -0.000614343851339072, + -0.01449611410498619, + 0.008396700024604797, + -0.012879209592938423, + -0.0031057384330779314, + 0.0038681651931256056, + -0.002042143139988184, + -0.006139436736702919, + -0.006727765779942274, + -0.018554385751485825, + 0.015536696650087833, + 0.009269188158214092, + 0.009741452522575855, + -0.0188425462692976, + 0.0009015045943669975, + -0.004634594079107046, + 0.008997036144137383, + 0.0020331379491835833, + 0.00043999627814628184, + -0.017561830580234528, + -0.014271988533437252, + -0.01267109252512455, + -0.01210277434438467, + 0.004598574247211218, + -0.025790436193346977, + -0.03371487185359001, + 0.017801964655518532, + 0.007552227471023798, + -0.008700869977474213, + 0.0020871683955192566, + -0.003652044339105487, + 0.01647322066128254, + -0.0009400261915288866, + 0.009005040861666203, + 0.013743693009018898, + 0.003588008461520076, + 0.01385575532913208, + -0.024413665756583214, + 0.002871607430279255, + -2.6780615371535532e-5, + 0.0012857196852564812, + 0.012478984892368317, + 0.0009580362820997834, + 0.006395579781383276, + 0.025118060410022736, + 0.0068438309244811535, + -0.0056871832348406315, + 0.015784835442900658, + -0.011662527918815613, + 0.035635948181152344, + 0.004974784795194864, + 0.00489073758944869, + 0.0015308569418266416, + -0.003139757551252842, + -0.031617697328329086, + 0.003856158582493663, + -0.01949891448020935, + -0.0070479451678693295, + -0.0014688221272081137, + -0.017914026975631714, + 0.002257263520732522, + 0.010830062441527843, + 0.0002964159066323191, + -3.3393691410310566e-5, + -0.014552145265042782, + -0.009749457240104675, + -0.012823177501559258, + 0.02710317075252533, + 0.023341065272688866, + -0.00591130880638957, + -0.0120547479018569, + 0.01768990233540535, + -0.009749457240104675, + -0.02113182842731476, + 0.00024788876180537045, + 0.009469300508499146, + -0.014464096166193485, + -0.009453291073441505, + -0.0005217920988798141, + 0.028207790106534958, + -0.03374689072370529, + 0.005867284256964922, + 0.0033198583405464888, + 0.00973344873636961, + 0.013487549498677254, + -0.010125667788088322, + 0.01296725869178772, + 0.018106134608387947, + -0.005671174265444279, + 0.010966137982904911, + 0.0077283261343836784, + -0.014696226455271244, + -0.004502520430833101, + -0.005230927839875221, + -0.0019861117471009493, + -5.65003756491933e-5, + 0.014111898839473724, + -0.016777390614151955, + 0.007192025892436504, + -0.03541182354092598, + 0.009845511056482792, + 0.027279268950223923, + -0.014856316149234772, + 0.008444727398455143, + 0.0007244054577313364, + -0.012839186936616898, + 0.006439604796469212, + -0.018074117600917816, + -0.0014898339286446571, + -0.0009735449566505849, + -0.005186903290450573, + -0.004830704070627689, + 0.026206668466329575, + 0.010085645131766796, + -0.00914111640304327, + -0.009277192875742912, + 0.004410468973219395, + -0.01358360331505537, + 0.014856316149234772, + 0.013207392767071724, + 0.034451283514499664, + 0.006995915900915861, + -0.01836227811872959, + 0.01209476962685585, + -0.008348673582077026, + -0.005779235158115625, + -0.0015968938823789358, + -0.00693588238209486, + -0.005411028861999512, + -0.015152481384575367, + -0.005443046800792217, + 0.021115818992257118, + -0.005563113838434219, + 0.005591129418462515, + 0.0011676535941660404, + 0.007184021174907684, + 0.017385732382535934, + -0.006151443347334862, + 0.020315371453762054, + 0.0005157887353561819, + -0.004590569529682398, + -0.0006453612586483359, + 0.003565995953977108, + -0.03963818773627281, + 0.025534292683005333, + 0.0003832145011983812, + -0.021035775542259216, + -0.0018910585204139352, + -0.00822860561311245, + 0.014312011189758778, + -0.009045062586665154, + 0.004322419408708811, + -0.0054230354726314545, + 0.004874728620052338, + -0.014392055571079254, + -0.015480665490031242, + -0.021644115447998047, + -0.0008054508361965418, + -0.0002107429609168321, + 0.010429837740957737, + -0.008340668864548206, + -0.009109098464250565, + 0.012174814939498901, + 0.019178735092282295, + -0.0019040658371523023, + 0.009285197593271732, + 0.0003867164778057486, + 0.017962053418159485, + -0.012871204875409603, + 0.000656367396004498, + 0.02415752224624157, + 0.012567033991217613, + -0.013439523056149483, + -0.018074117600917816, + -0.013399500399827957, + 0.016329139471054077, + -0.012543020769953728, + -0.009525331668555737, + 0.010437842458486557, + 0.00970943458378315, + -0.0024033451918512583, + 0.008981026709079742, + -0.037973254919052124, + 0.01624109037220478, + -0.018762502819299698, + -0.0231169406324625, + -0.008756902068853378, + -0.009093089960515499, + -0.023709271103143692, + 0.022284474223852158, + -0.0073200976476073265, + 0.009797483682632446, + -0.017801964655518532, + -0.0031677731312811375, + 0.014800284057855606, + 0.02069958671927452, + 0.005246936809271574, + -0.01092611625790596, + -0.012198828160762787, + 0.021628106012940407, + 0.022700706496834755, + 0.02822379767894745, + 0.0171936247497797, + -0.020443443208932877, + -0.013719679787755013, + -0.004558551590889692, + 0.005767228081822395, + 0.017433758825063705, + -0.013775710947811604, + 0.014912347309291363, + -0.026094606146216393, + 0.011782594956457615, + 0.001350756036117673, + 0.008989031426608562, + -0.008708874695003033, + 0.00886095967143774, + 0.026702946051955223, + 0.006287519354373217, + 0.018074117600917816, + -0.019290797412395477, + -0.002463378943502903, + 0.0033138550352305174, + 0.007792361546307802, + -0.0114784250035882, + 0.0028856152202934027, + 0.006047384813427925, + -0.012711115181446075, + 0.00281157367862761, + 0.015544701367616653, + 0.008949008770287037, + 0.005819257348775864, + 0.003926197532564402, + 0.020395416766405106, + -0.013903782702982426, + 0.01935483328998089, + 0.002231248887255788, + 0.015040419064462185, + -0.005799246020615101, + 0.0036220273468643427, + -0.010365801863372326, + 0.03499558940529823, + 0.0020171289797872305, + 0.011966698803007603, + 0.0035359791945666075, + 0.0006248497520573437, + -0.02406146749854088, + -0.013911787420511246, + 0.015536696650087833, + -0.027455369010567665, + -0.012775151059031487, + 0.022620661184191704, + -0.013151361607015133, + 0.008088527247309685, + 0.010365801863372326, + -0.011694545857608318, + -0.013359477743506432, + 0.0019791077356785536, + 0.0011746574891731143, + 0.010085645131766796, + -0.023405101150274277, + -0.0011446407297626138, + 0.008924995549023151, + -0.004326421767473221, + -0.01155046559870243, + -0.0066957478411495686, + 0.00915712583810091, + -0.0066397166810929775, + 0.012310891412198544, + -0.01211077906191349, + -0.012783155776560307, + 0.0036820610985159874, + -0.011598492041230202, + 0.023229002952575684, + -0.03301047906279564, + 0.004466500133275986, + -0.005042822565883398, + -0.003033698070794344, + 0.0031817809212952852, + -0.004370446316897869, + 0.00013457532622851431, + 0.01632113568484783, + 0.009941564872860909, + -0.006751779466867447, + -0.0010000597685575485, + -0.013487549498677254, + 0.02247658185660839, + 0.015376606956124306, + -0.0026754976715892553, + 0.017529811710119247, + 0.018474340438842773, + -0.0038861753419041634, + 0.00812054518610239, + 0.006011364981532097, + -0.010734008625149727, + -0.017914026975631714, + -0.001907067489810288, + -0.012775151059031487, + -0.005655165296047926, + 0.022684697061777115, + -0.015840867534279823, + 0.011958694085478783, + 0.01442407350987196, + -0.0016779392026364803, + 0.0034339220728725195, + -0.003710076678544283, + 0.03432321175932884, + 0.0035559905227273703, + -0.00392419658601284, + 0.019594967365264893, + -0.011422393843531609, + 0.018058108165860176, + 0.009085085242986679, + 0.005683181341737509, + -0.002917633159086108, + 0.0014538137475028634, + 0.008764905855059624, + -0.0028455927968025208, + 0.009317215532064438, + 0.006123427767306566, + 0.02117985486984253, + -0.0038721675518900156, + 0.011598492041230202, + 0.006343550980091095, + 0.008916990831494331, + 0.01153445616364479, + -0.02298886887729168, + -0.020859675481915474, + 0.010085645131766796, + -0.013135352171957493, + 0.030865276232361794, + 0.0045425426214933395, + -0.005407026503235102, + 0.02124389074742794, + 0.002993675647303462, + -0.003608019556850195, + -0.03486751765012741, + -0.012527012266218662, + 0.0033138550352305174, + 0.006867844145745039, + -0.0006938884034752846, + 0.023885369300842285, + 0.005871286615729332, + 0.0057512191124260426, + -0.010998155921697617, + -0.006551667116582394, + 0.005439044442027807, + -0.007792361546307802, + -0.013175374828279018, + 0.01820218935608864, + 0.023821333423256874, + 0.018090125173330307, + 0.01470423024147749, + 0.027423350140452385, + -0.01034178864210844, + 0.01951492391526699, + 0.0077883596532046795, + -0.0026134629733860493, + -0.014336024411022663, + 0.006711756810545921, + -0.031153438612818718, + 0.011630509980022907, + 0.01000560075044632, + 0.006819817237555981, + -0.008096531964838505, + -0.026927072554826736, + -0.0015688781859353185, + 0.024445682764053345, + 0.007912429049611092, + 0.025454247370362282, + -0.016793400049209595, + -0.001905066310428083, + 0.01617705449461937, + -0.014864319935441017, + 0.014287997968494892, + 0.0016279112314805388, + 0.004570558201521635, + -0.0012977264123037457, + -0.0045425426214933395, + -0.02308492176234722, + 0.0018220199272036552, + 0.02889617532491684, + 0.00011637763964245096, + 0.0006938884034752846, + 0.017577840015292168, + -0.009021049365401268, + 0.0010505880927667022, + -0.014360037632286549, + 0.0047106365673244, + -0.012278873473405838, + -0.006995915900915861, + -0.03377890959382057, + 0.0036780587397515774, + 0.010862080380320549, + 0.00025789436767809093, + -0.004726645536720753, + -0.006979906931519508, + -0.022732725366950035, + -0.005719201173633337, + -0.01564875990152359, + 0.01821819692850113, + 0.003163771005347371, + -0.009669412858784199, + 0.016697347164154053, + -0.012559030205011368, + 0.032786350697278976, + -0.015824858099222183, + -0.011870644986629486, + 0.0010856076842173934, + 0.012607056647539139, + 0.00591531116515398, + 0.0003652044106274843, + -0.0015158484457060695, + -0.03368285298347473, + -0.027487386018037796, + 0.0008144559105858207, + -0.005054829642176628, + 0.008548785001039505, + 0.000353697978425771, + -0.0010876087471842766, + 0.008184581063687801, + -0.007067956496030092, + -0.00738413305953145, + -0.0047506592236459255, + 0.00647162226960063, + 0.0034739444963634014, + -0.013079321011900902, + 0.004394460003823042, + -0.025662364438176155, + 0.013959813863039017, + -0.005258943885564804, + 0.006179458927363157, + -0.0008244615164585412, + 0.03008083812892437, + -0.00529096182435751, + -0.0011726564262062311, + 0.00998959131538868, + 0.0018730484880506992, + 0.008484749123454094, + 0.0006443606689572334, + 0.0011756580788642168, + 0.002014127327129245, + 0.010613941587507725, + 0.02186824008822441, + -0.018170170485973358, + 0.003948209807276726, + 0.015096450224518776, + -0.008492753840982914, + -0.01954694092273712, + 0.00721203675493598, + 0.0020991750061511993, + -0.01829824224114418, + 0.005771230440586805, + 0.001580884912982583, + -0.01882653869688511, + 0.0061714546754956245, + -0.010854075662791729, + -0.007131991907954216, + 0.0003316856746096164, + 0.021419988945126534, + -0.006603696383535862, + 0.0006903864559717476, + 0.010221721604466438, + -0.005675176624208689, + 0.0020101252011954784, + -0.01656927540898323, + 0.017225641757249832, + -0.012887213379144669, + 0.006799806375056505, + 0.00813655462116003, + -0.0054230354726314545, + -0.010317775420844555, + -0.024349629878997803, + 0.037492986768484116, + -0.0022512602154165506, + -0.024045459926128387, + -0.02060353197157383, + 0.00784038845449686, + 0.013903782702982426, + -0.0018920591101050377, + -0.025150077417492867, + 0.00500280037522316, + -0.0014107896713539958, + -0.010958134196698666, + -0.018682457506656647, + -0.006439604796469212, + -9.667911945143715e-5, + -0.023693261668086052, + 0.014584163203835487, + 0.006079402752220631, + 0.016345148906111717, + 0.008436722680926323, + -0.008828941732645035, + 0.0034379244316369295, + -0.02663891203701496, + -0.0028816130943596363, + 0.006467620376497507, + 0.013383490964770317, + -0.0011306328233331442, + -1.4508121239487082e-5, + 0.01203073374927044, + 0.004186343401670456, + 0.0015558708691969514, + -0.004674616735428572, + 0.0026955087669193745, + -0.012334904633462429, + 0.0006823819712735713, + -0.030449043959379196, + -0.030929312109947205, + 0.004382452927529812, + -0.0014978384133428335, + 0.011374366469681263, + -0.02764747478067875, + -0.008348673582077026, + 0.001057591987773776, + -0.008364682085812092, + 0.0049547734670341015, + 0.008388695307075977, + -0.010029613971710205, + 0.006743774749338627, + -0.0164572112262249, + 0.006859839893877506, + 0.012262864038348198, + 0.006003360264003277, + -1.6180933016585186e-5, + 0.024413665756583214, + 0.0032698302529752254, + -0.00619546789675951, + 0.0052149188704788685, + -0.018042098730802536, + -0.02543823979794979, + -0.01506443228572607, + 0.008644838817417622, + -0.014135912992060184, + 0.006827821955084801, + 0.013495554216206074, + 0.0013177376240491867, + -0.00414632074534893, + -0.0005292962887324393, + -0.008708874695003033, + -0.01956295035779476, + 0.014408065006136894, + 0.02422155812382698, + -0.014880329370498657, + 0.0016819414449855685, + 0.02294084057211876, + 0.00915712583810091, + -0.008284637704491615, + 0.022556625306606293, + -0.0009600374032743275, + -0.0013347470667213202, + 0.01176658645272255, + 0.011270308867096901, + -0.0004942766972817481, + 0.019306806847453117, + -0.028640031814575195, + -0.009693426080048084, + -0.013847751542925835, + 0.008636834099888802, + -0.0005257943412289023, + -0.01329544186592102, + -0.01268710196018219, + 0.004986791405826807, + -0.006147440988570452, + 0.011262304149568081, + 0.0049467687495052814, + -0.0023873362224549055, + 0.020827658474445343, + -0.011638514697551727, + 0.012783155776560307, + -0.00201612850651145, + 0.024925952777266502, + -0.00517089432105422, + 0.006011364981532097, + -0.005046824924647808, + 0.024621782824397087, + 0.01063795480877161, + 0.002805570373311639, + 0.012639074586331844, + 0.0032938437070697546, + 0.017305687069892883, + 0.004024252761155367, + -0.006951891351491213, + -0.013767706230282784, + 0.026318732649087906, + -0.0066357143223285675, + 0.006543662864714861, + -0.011166250333189964, + -0.03461137413978577, + -0.0034479298628866673, + -0.01616104692220688, + -0.006099414080381393, + 0.00023112937924452126, + 0.009261184372007847, + 0.02119586430490017, + -0.006751779466867447, + -0.009597372263669968, + -0.02409348636865616, + 0.002929639769718051, + -0.005399022251367569, + 0.01323941070586443, + 0.011038178578019142, + 0.014215957373380661, + 0.0019520926289260387, + 0.02239653654396534, + 0.01820218935608864, + 0.002701512072235346, + -0.01650523953139782, + 0.0003514467098284513, + 0.025582319125533104, + -0.004834706429392099, + -0.0032738326117396355, + -0.01619306392967701, + -0.013903782702982426, + -0.016889454796910286, + 0.004450491163879633, + -0.004662610124796629, + -0.021516043692827225, + -0.01331945601850748, + -0.017321696504950523, + 0.02298886887729168, + -0.01619306392967701, + 0.010613941587507725, + -0.0009440284338779747, + -0.0023253015242516994, + 0.004446488805115223, + 0.0008940004045143723, + -0.0010515886824578047, + -0.006859839893877506, + 0.0020591525826603174, + -0.010213716886937618, + 0.0047426545061171055, + -0.011278312653303146, + -0.0036160240415483713, + 0.004778674803674221, + -0.01472824439406395, + 0.013143356889486313, + 0.01823420636355877, + -0.011062191799283028, + -0.0365324504673481, + 0.006887855473905802, + 0.003509964793920517, + -0.00425438117235899, + -0.011454411782324314, + -0.030481060966849327, + -0.004096292890608311, + -0.0011656525311991572, + -0.003197789890691638, + -0.0054190331138670444, + 0.011566474102437496, + -0.011270308867096901, + -0.012014725245535374, + -0.0009070077212527394, + 0.033298637717962265, + 0.00915712583810091, + -0.0008109539048746228, + -0.010389816015958786, + 0.00384014961309731, + -0.005791241768747568, + 0.00693988474085927, + -0.003918193280696869, + -0.009509323164820671, + -0.01597694307565689, + -0.007196027785539627, + -0.021628106012940407, + 0.005134874023497105, + 0.01506443228572607, + 0.008668852038681507, + -0.0004775172856170684, + -0.015824858099222183, + -0.008997036144137383, + -0.008892977610230446, + -0.016024969518184662, + 0.0003712077741511166, + -0.0120547479018569, + 0.020859675481915474, + 0.024573754519224167, + -0.02125990018248558, + -0.005102856550365686, + 0.012911226600408554, + -0.011942684650421143, + -0.022204428911209106, + -0.009461295790970325, + -0.004826701711863279, + -0.008468740619719028, + -0.019995192065835, + 0.007204032503068447, + -0.0022732724901288748, + 0.002487392397597432, + -0.010197708383202553, + 0.0011526452144607902, + 0.002117185154929757, + -0.005142878741025925, + 0.0030797237996011972, + 0.00977347046136856, + -0.01027775276452303, + 0.007148000877350569, + 0.0038941798266023397, + 0.02121187373995781, + -0.025742409750819206, + -0.002955654403194785, + 0.02539021149277687, + -0.01175858173519373, + -0.008008482865989208, + 0.02721523307263851, + 0.006359559949487448, + 0.004978786688297987, + 0.015024409629404545, + 0.008460735902190208, + -0.0073120929300785065, + -0.007888415828347206, + 0.02010725438594818, + 0.008692866191267967, + -0.009373246692121029, + 0.005022811703383923, + 0.011366362683475018, + -0.004402464255690575, + -0.012478984892368317, + -0.011310330592095852, + -0.0077283261343836784, + -0.002893619704991579, + -0.02125990018248558, + -0.0006653724703937769, + -0.004110300913453102, + 0.002627470763400197, + -0.015312571078538895, + -0.009093089960515499, + 0.0046906257048249245, + 0.003652044339105487, + 0.006391577888280153, + 0.0023653239477425814, + 0.00750019820407033, + -0.009533336386084557, + -0.00010749767534434795, + -0.023357074707746506, + -0.024013441056013107, + 0.015368602238595486, + 0.0029416466131806374, + 0.02417353168129921, + -9.155124280368909e-5, + -0.007736330386251211, + 0.005843270570039749, + -0.002689505461603403, + -0.005026813596487045, + -0.01119026355445385, + 0.022604653611779213, + 0.0003149262920487672, + 0.011958694085478783, + -0.005707194563001394, + -0.0076402765698730946, + 7.46667938074097e-5, + 0.00858880765736103, + -0.01387176476418972, + 0.008844951167702675, + 0.01203073374927044, + 0.012839186936616898, + 0.010477865114808083, + -0.0008284637588076293, + -0.016905462369322777, + -0.0052229235880076885, + -0.0005598133429884911, + 0.005326981656253338, + -0.01708156056702137, + -0.014680217020213604, + 0.005334986373782158, + -0.0029036253690719604, + 0.0034399256110191345, + 0.014736248180270195, + 0.0016689341282472014, + 0.015448647551238537, + 0.0003719582164194435, + -0.003860160708427429, + -0.003934202250093222, + -0.019835103303194046, + -0.01507243700325489, + -0.0028596005868166685, + -0.026750974357128143, + 0.011078201234340668, + -0.022892814129590988, + 0.017465775832533836, + -0.013927795924246311, + 0.005515086930245161, + -0.01839429698884487, + -0.016016965731978416, + 0.008908987045288086, + -0.0038181371055543423, + 0.007536218501627445, + -0.00019761061412282288, + 0.010589927434921265, + 0.016809409484267235, + 0.018650440499186516, + -0.014095890335738659, + 0.0044785067439079285, + -0.001243696198798716, + 0.01632113568484783, + -0.026927072554826736, + 0.008997036144137383, + 0.0071159834042191505, + -0.021387971937656403, + 0.021660124883055687, + -0.0014808288542553782, + 0.008348673582077026, + 0.010525891557335854, + 0.01833026111125946, + -0.01839429698884487, + -0.009005040861666203, + -0.03723684325814247, + 0.006411588750779629, + 0.0017759940819814801, + -0.02175617776811123, + -0.022732725366950035, + 0.00823661033064127, + 0.02124389074742794, + -0.005643158685415983, + -0.019050663337111473, + 0.01820218935608864, + 0.010509883053600788, + -0.017465775832533836, + -0.0024293598253279924, + 0.003279835917055607, + -0.0071079786866903305, + 0.013447526842355728, + 0.018426313996315002, + -0.02063555084168911, + 0.01648923009634018, + 0.011518447659909725, + 0.01778595522046089, + -0.02234851010143757, + -0.007027933839708567, + -0.01596093364059925, + 0.02356518991291523, + 0.02603057026863098, + 0.0259185079485178, + 0.004118305165320635, + 0.008404704742133617, + 0.006667732261121273, + 0.029232362285256386, + 0.004182341042906046, + -0.012847191654145718, + 0.021067792549729347, + 0.005855277646332979, + -0.004402464255690575, + -0.013071316294372082, + -0.028511960059404373, + -0.021019766107201576, + 0.015096450224518776, + -0.003942206501960754, + 0.006919873412698507, + -0.01569678634405136, + -0.004406466614454985, + -0.006139436736702919, + -0.006707754451781511, + 0.016137031838297844, + 0.008324659429490566, + 0.01153445616364479, + -0.003261825768277049, + 0.0047426545061171055, + 0.008492753840982914, + 0.019162725657224655, + -0.017946045845746994, + -0.01935483328998089, + -0.002649483038112521, + -0.006943886633962393, + 0.020171290263533592, + -0.002113182796165347, + -0.014736248180270195, + -0.011742573231458664, + -0.004174336791038513, + -0.01586488075554371, + -0.0038041293155401945, + 0.006119425408542156, + -0.007616263348609209, + 0.006219481583684683, + 0.013375487178564072, + 0.02705514430999756, + 0.018698466941714287, + 0.005551107227802277, + 0.013143356889486313, + -0.028463933616876602, + -0.008380691520869732, + 0.0007954452303238213, + -0.02174016833305359, + 0.010894098319113255, + 0.0007068956620059907, + 0.01155046559870243, + -0.012535016052424908, + 0.03470742702484131, + -0.0018130148528143764, + -0.002038140781223774, + 0.000732910237275064, + -0.004058271646499634, + 0.003173776436597109, + 0.01175057701766491, + -0.006807810626924038, + 0.00910109467804432, + 0.01954694092273712, + -0.004410468973219395, + -0.019098689779639244, + -0.00808052346110344, + -0.0027955647092312574, + -0.016064992174506187, + 0.00488673523068428, + 0.001325742108747363, + 0.007612260989844799, + -0.011454411782324314, + 0.004330424126237631, + -0.019050663337111473, + 0.013711675070226192, + 0.018762502819299698, + 0.0010896099265664816, + -0.011126227676868439, + 0.011694545857608318, + -0.0028856152202934027, + 0.005763226188719273, + -0.009677416644990444, + -0.0028756095562130213, + 0.010790039785206318, + 0.0035219714045524597, + 0.011086205951869488, + -0.00944528728723526, + 0.009293202310800552, + 0.008332664147019386, + 0.006499638315290213, + 0.003431921126320958, + -0.017225641757249832, + -0.02013927325606346, + -0.011598492041230202, + -0.03701271861791611, + -0.004130311775952578, + 0.00019073176372330636, + 0.006547665223479271, + -0.0016589285805821419, + -0.009909546934068203, + 0.0109021021053195, + 0.01300728041678667, + -0.008500758558511734, + 0.007736330386251211, + -0.01035779807716608, + -0.016793400049209595, + -0.0028896175790578127, + 0.008628830313682556, + -0.004830704070627689, + -0.012727123685181141, + -0.013367482461035252, + 0.015704790130257607, + 0.006051387172192335, + 0.0047466568648815155, + 0.012214837595820427, + -0.0007379130693152547, + 0.030993347987532616, + 0.009405264630913734, + -0.005931320134550333, + -0.018554385751485825, + 0.021419988945126534, + -0.03352276608347893, + 0.010317775420844555, + 0.013071316294372082, + 0.013711675070226192, + 0.007264066021889448, + -0.0010766026098281145, + -0.005611140746623278, + 0.009613380767405033, + 0.00914111640304327, + 0.013367482461035252, + 0.0025154079776257277, + -0.01033378392457962, + -0.003323860466480255, + 0.013999836519360542, + -0.022668689489364624, + -0.002547425916418433, + 0.016745373606681824, + -0.002295284764841199, + 0.017001517117023468, + -0.015120463445782661, + 0.015816854313015938, + -0.0036600488238036633, + -0.0020591525826603174, + -0.020843667909502983, + -0.0011336345924064517, + -0.008420713245868683, + 0.016024969518184662, + -0.011598492041230202, + 0.0068478332832455635, + 0.01056591421365738, + -0.0050108046270906925, + -0.003994235768914223, + -0.019002636894583702, + 0.003944207914173603, + -0.0012527011567726731, + 0.008420713245868683, + 0.008180579170584679, + 0.012438963167369366, + 0.006115423049777746, + -0.014840306714177132, + -0.012791159562766552, + -0.019787074998021126, + -0.014968378469347954, + -0.004882733337581158, + -0.018010081723332405, + 0.019739048555493355, + -0.0030517082195729017, + -0.013207392767071724, + -0.011574478819966316, + 0.016081001609563828, + 0.004870726261287928, + 0.03177778795361519, + -0.02009124681353569, + -0.026670929044485092, + 0.005150882992893457, + 0.002293283585458994, + 0.004350434988737106, + -0.017545821145176888, + -0.0036880644038319588, + 0.0013587605208158493, + 0.012975262477993965, + -0.012823177501559258, + -0.017417749390006065, + 0.006619705352932215, + -0.0006893858662806451, + -0.014376047067344189, + -0.010886093601584435, + 0.00042523801675997674, + 0.005819257348775864, + -0.01028575748205185, + 0.0241094958037138, + 0.006951891351491213, + 0.0018860556883737445, + -0.020395416766405106, + 0.0002238753077108413, + -0.006971902679651976, + 0.019002636894583702, + 0.0025534292217344046, + 0.00824461504817009, + 0.034451283514499664, + -0.003199791070073843, + 0.0006828822661191225, + 0.020459452643990517, + -0.001993115758523345, + -0.017337704077363014, + 0.011006160639226437, + -0.006539660505950451, + 0.02367725409567356, + -0.011654523201286793, + 0.0022872802801430225, + 0.0150164058431983, + -0.0034759456757456064, + 0.013711675070226192, + -0.012366922572255135, + 0.0010485869133844972, + -0.002665492007508874, + 0.014976383186876774, + -0.018970618024468422, + 0.02766348421573639, + -0.0026975099463015795, + 0.010734008625149727, + -0.006135434377938509, + -0.009197148494422436, + 0.0052189212292432785, + 0.0075162071734666824, + -0.022172411903738976, + 0.00750019820407033, + 0.006875848863273859, + -0.014872324652969837, + -0.0030537093989551067, + -0.021708151325583458, + 0.02002721093595028, + -0.0032338101882487535, + 0.010205713100731373, + -0.005102856550365686, + 0.013039298355579376, + -0.005126869771629572, + -0.012302886694669724, + -0.0030657160095870495, + -0.00029891732265241444, + 0.006127429660409689, + -0.0013137353817000985, + -0.025694383308291435, + 0.03182581439614296, + 0.0355398952960968, + 0.017817974090576172, + -0.005947329103946686, + 0.0073681240901350975, + -0.02598254382610321, + 0.0012877207482233644, + 0.011606496758759022, + -0.011798604391515255, + -0.0018700467189773917, + 0.01302328985184431, + -0.0355398952960968, + -0.004730647895485163, + -0.027487386018037796, + -0.007604256272315979, + -0.0005332985310815275, + 0.0205715149641037, + 0.005987351294606924, + -0.008004480972886086, + -0.0015208512777462602, + -0.004016248043626547, + -0.02827182598412037, + -0.007896419614553452, + 0.018170170485973358, + 0.06192266196012497, + 0.0300328116863966, + 0.004918753169476986, + -0.0073721264488995075, + 0.014680217020213604, + -0.035123661160469055, + -0.002399343065917492, + -0.00942927785217762, + -0.029920747503638268, + -0.013935800641775131, + 0.012014725245535374, + 0.00048402094398625195, + 0.006955893710255623, + 0.0008559791604056954, + -0.022636670619249344, + 0.009653403423726559, + -0.0024913945235311985, + -0.013263423927128315, + -0.009197148494422436, + 0.008000478148460388, + -0.0028796119149774313, + 0.0004317416751291603, + -0.007464177906513214, + -0.004314415156841278, + 0.011390375904738903, + 0.0031837821006774902, + -0.010493873618543148, + -0.007600254379212856, + -0.005595131777226925, + 0.008436722680926323, + 0.03954213485121727, + 0.003443927736952901, + -0.035635948181152344, + 0.013327459804713726, + -0.008540780283510685, + 0.018698466941714287, + -0.0032318090088665485, + 0.01472023967653513, + -0.0015818855026736856, + 0.00017122084682341665, + -0.02958456054329872, + -0.010717999190092087, + 0.0023072916083037853, + -0.02836787886917591, + -0.004126309882849455, + -0.0029396454337984324, + 0.005783237051218748, + 0.00749619584530592, + -0.002691506640985608, + -0.01951492391526699, + -0.009469300508499146, + 0.003634034190326929, + -0.02537420392036438, + -0.0008619824657216668, + -0.011014165356755257, + 0.01359160803258419, + 0.015920910984277725, + -0.025838462635874748, + -0.012535016052424908, + -0.004198350012302399, + 0.006823819596320391, + 0.002537420252338052, + 0.01359961275011301, + 0.01118225883692503, + -0.0024533732794225216, + 0.016281113028526306, + 0.003203793428838253, + -0.004738652613013983, + 0.010461855679750443, + -0.0017749936087056994, + 0.01611301861703396, + -0.0229568500071764, + -0.030945321545004845, + -0.011622505262494087, + -0.029648596420884132, + -0.021644115447998047, + -0.02306891232728958, + -0.02880012057721615, + -0.01450411882251501, + 0.016016965731978416, + -0.000661870464682579, + -0.009469300508499146, + -0.003674056613817811, + 4.255507155903615e-5, + -0.009381251409649849, + -0.0029516522772610188, + -0.015592727810144424, + 0.007412149105221033, + 0.012887213379144669, + 0.009501318447291851, + -0.0027415344957262278, + 0.006251499056816101, + -0.02247658185660839, + 0.006467620376497507, + 0.0067677884362638, + -0.0070519475266337395, + -0.007624267600476742, + 0.0012597051681950688, + 0.008108538575470448, + 0.011974702589213848, + -0.00026990106562152505, + 0.01597694307565689, + 0.011326340027153492, + 0.009957573376595974, + -0.024045459926128387, + -0.03355478122830391, + 0.013423513621091843, + -0.009085085242986679, + -0.010509883053600788, + 0.020379407331347466, + -0.011014165356755257, + 0.013079321011900902, + 0.0024533732794225216, + 0.012254859320819378, + 0.011590487323701382, + 0.020747613161802292, + 0.005847272928804159, + 0.008708874695003033, + 0.005042822565883398, + 0.011726563796401024, + -0.02124389074742794, + 0.020235326141119003, + 0.017849991098046303, + -0.001671935897320509, + 0.006603696383535862, + -0.0034359232522547245, + 0.005118865054100752, + 0.033810924738645554, + -0.003988232463598251, + -0.01949891448020935, + 0.01203073374927044, + 0.010165690444409847, + 0.010605936869978905, + 0.0058392686769366264, + -0.004810692742466927, + -0.0013247415190562606, + 0.001374769490212202, + 0.0017789958510547876, + 0.019178735092282295, + -0.0058993021957576275, + -0.02663891203701496, + 0.01240694522857666, + 0.004902744200080633, + -0.003261825768277049, + -0.012326899915933609, + 0.003031696891412139, + -0.02121187373995781, + 0.01708156056702137, + 0.012735128402709961, + 0.009621385484933853, + 0.005799246020615101, + -0.015672773122787476, + 0.004190345760434866, + 0.00601936923339963, + -0.0016639314126223326, + 0.005947329103946686, + -0.016809409484267235, + 0.021612096577882767, + -0.00978147517889738, + 0.008212597109377384, + -0.017225641757249832, + 0.000729408289771527, + 0.005254941526800394, + 0.02249258942902088, + 0.0038081316743046045, + -0.003061713883653283, + -0.01507243700325489, + 0.0029256376437842846, + -0.01027775276452303, + 0.0025574315804988146, + -0.008700869977474213, + 0.009117103181779385, + -0.011390375904738903, + 0.010085645131766796, + -0.004862722009420395, + -0.00500280037522316, + 0.001210677670314908, + -0.011742573231458664, + -0.017962053418159485, + -0.0038061304949223995, + 0.01653725653886795, + 0.02708716131746769, + 0.026815010234713554, + -0.0020591525826603174, + -0.01182261761277914, + 0.0059033045545220375, + -0.004298406187444925, + 0.0038821729831397533, + 0.0033158559817820787, + 0.008276632986962795, + 0.010253739543259144, + 0.01759384758770466, + -0.01711357943713665, + -0.01834626868367195, + -0.007484189234673977, + 0.004506522323936224, + 0.014840306714177132, + 0.008428717963397503, + -0.03659648448228836, + 0.011662527918815613, + 0.007027933839708567, + -0.001907067489810288, + 0.0028015682473778725, + -0.0015888893976807594 + ], + "f259fd6c-516e-47cd-8f1c-4d9b51642a5c": [ + -0.011943196877837181, + -0.005638686940073967, + -0.0023241378366947174, + 0.0003742652479559183, + -0.0383513942360878, + -0.029512595385313034, + 0.011710158549249172, + 0.03245886042714119, + -0.016595633700489998, + 0.0393834188580513, + 0.005160126835107803, + 0.024202659726142883, + -0.01123575959354639, + -0.009504620917141438, + -0.00013680578558705747, + 0.01568012684583664, + -0.045508988201618195, + 0.03269189968705177, + -0.02907981164753437, + -0.016429178416728973, + 0.06758101284503937, + -0.01910911500453949, + -0.046474430710077286, + 0.050103165209293365, + 0.01330813392996788, + -0.011393892578780651, + -0.0023990427143871784, + -0.0029753956478089094, + -0.011685190722346306, + -0.007411440368741751, + 0.01801050640642643, + 0.006229604594409466, + 0.04317861050367355, + -0.004664921201765537, + -0.0030648657120764256, + -0.03868430480360985, + -0.022438228130340576, + 0.03257538005709648, + -0.0004619145765900612, + 0.013624398969113827, + -0.02182234264910221, + 0.04680734500288963, + 0.007623671088367701, + 0.009696044959127903, + -0.03250879794359207, + 0.038384683430194855, + 0.026383228600025177, + -0.02092348225414753, + -0.007877516560256481, + -0.007748513016849756, + -0.008597437292337418, + -0.0013586946297436953, + 0.01801050640642643, + 0.028164304792881012, + 0.008351914584636688, + 0.01767759583890438, + 0.0063253166154026985, + 0.035921141505241394, + -0.0027735682670027018, + -0.036953166127204895, + 0.011460475623607635, + 0.00852253194898367, + 0.020740380510687828, + 0.006845491006970406, + -0.0020401226356625557, + -0.0373193696141243, + -0.0002184731129091233, + 0.0102703170850873, + -0.059424687176942825, + 0.006175506394356489, + 0.02818095125257969, + 0.03858443349599838, + -0.019858164712786674, + 0.019075823947787285, + -0.026083609089255333, + -0.0020609297789633274, + 0.041813671588897705, + -0.018243545666337013, + -0.0008265565847977996, + 0.02531791292130947, + -0.02052398771047592, + -0.011368924751877785, + -0.013033481314778328, + 0.0029837184119969606, + 0.06721481680870056, + 0.02235500141978264, + -0.03745253384113312, + -0.04753974825143814, + -0.011876614764332771, + -0.01877620257437229, + 0.0025114004965871572, + 0.01741126738488674, + 0.027298735454678535, + 0.008356076665222645, + -0.02125639282166958, + 0.011260728351771832, + 0.03981620445847511, + -0.0019069581758230925, + 0.0016198221128433943, + -0.048039115965366364, + 0.009829209186136723, + 0.024385761469602585, + -0.04903785139322281, + 0.028513861820101738, + -0.008763892576098442, + 0.004885474685579538, + 0.023686647415161133, + -0.0008504845900461078, + -0.034423038363456726, + 0.024252595379948616, + 0.01237598154693842, + -0.02856379933655262, + -0.0005032684421166778, + 0.00604234216734767, + -0.014398418366909027, + -0.06758101284503937, + -0.006063148844987154, + -0.03505557030439377, + 0.005738560575991869, + -0.043944306671619415, + 0.07696911692619324, + 0.03024500049650669, + 0.00762783270329237, + 0.01639588735997677, + -0.008039810694754124, + 0.009662753902375698, + -0.0028609572909772396, + -0.012051393277943134, + 0.004872990772128105, + 0.032492153346538544, + -0.019009241834282875, + -0.009770949371159077, + -0.006487611215561628, + -0.019658418372273445, + 0.02130633033812046, + 0.03652038052678108, + -0.01742791198194027, + 0.047439876943826675, + -0.03575468435883522, + 0.048039115965366364, + -0.07377316802740097, + -0.04081493988633156, + -0.021605949848890305, + -0.0020838172640651464, + 0.0040490347892045975, + 0.028031140565872192, + -0.04461012780666351, + 0.04151405394077301, + -0.015596899203956127, + 0.028979938477277756, + -0.05486379936337471, + -0.014673070050776005, + 0.041880253702402115, + -0.0037015588022768497, + -0.0101038608700037, + -0.025734052062034607, + -0.0011266970541328192, + 0.01877620257437229, + 0.019159050658345222, + -0.004494303837418556, + 0.0027257122565060854, + -0.047639623284339905, + -0.0070577217265963554, + 0.002471867250278592, + 0.02481854520738125, + 0.022887658327817917, + 0.05110190063714981, + 0.03698645904660225, + -0.06621608138084412, + 0.027232153341174126, + 0.028347406536340714, + -0.02959582395851612, + 0.024585507810115814, + -0.0018632635474205017, + -0.010228702798485756, + 0.0030773498583585024, + 0.02117316611111164, + 0.027897976338863373, + 0.0202077217400074, + -0.04431050643324852, + -0.016953513026237488, + -0.027182215824723244, + -0.01201810222119093, + 0.014423387125134468, + 0.01859310269355774, + 0.018676329404115677, + 0.03482253476977348, + 0.005309937056154013, + -0.002711147302761674, + 0.016545696184039116, + 0.017511140555143356, + -0.031826332211494446, + 0.0033665664959698915, + 0.034040190279483795, + -0.014473323710262775, + -0.04957050830125809, + -0.003270854474976659, + -0.018809493631124496, + -0.00626705726608634, + 0.02027430385351181, + -0.03156000003218651, + -0.04008253291249275, + -0.05319924280047417, + 0.032808419317007065, + -0.02758171036839485, + 0.028796836733818054, + -0.013432974927127361, + -0.01418202556669712, + 0.035654813051223755, + -0.033973608165979385, + 0.027165571227669716, + -0.029629115015268326, + 0.0029857992194592953, + -0.003048220183700323, + -0.019708355888724327, + -0.011352279223501682, + -0.013116709887981415, + 0.008922025561332703, + 0.015155792236328125, + -0.01995803974568844, + -0.03881746903061867, + -0.013424652628600597, + 0.00497286394238472, + -0.045242659747600555, + -0.03512215241789818, + -0.030261646956205368, + -0.017927279695868492, + 0.011585316620767117, + -0.05303278565406799, + -0.02428588643670082, + 0.031643230468034744, + 0.013699304312467575, + 0.01709500141441822, + -0.032608672976493835, + -0.03272519260644913, + -0.004034470301121473, + 0.029562532901763916, + 0.025434430688619614, + 0.023470254614949226, + -0.026599621400237083, + 0.029562532901763916, + 0.03478924185037613, + 0.002588386181741953, + 0.0077068991959095, + 0.03615417703986168, + 0.025501014664769173, + -0.02027430385351181, + 0.03595443069934845, + 0.029762279242277145, + -0.05110190063714981, + 0.022388292476534843, + 0.024768609553575516, + 0.002835988998413086, + -0.022821076214313507, + -0.01741126738488674, + 0.05576265975832939, + 0.04164721816778183, + -0.022704558447003365, + -0.014673070050776005, + -0.017061710357666016, + 0.005309937056154013, + -0.006441835779696703, + -0.002390719950199127, + -0.028680317103862762, + 0.032991521060466766, + -0.02170582301914692, + 0.023287152871489525, + -0.029362786561250687, + 0.028097722679376602, + 0.037419240921735764, + 0.0006876701372675598, + -0.005384841933846474, + 0.015713417902588844, + -0.0345894955098629, + 0.008897057734429836, + -0.01859310269355774, + 0.000533178448677063, + 0.016720475628972054, + 0.0014928996097296476, + 0.013491234742105007, + 0.0026341616176068783, + -0.019192341715097427, + -0.004552563652396202, + 0.028913356363773346, + -0.016179494559764862, + -0.021838989108800888, + -0.011502088978886604, + -0.003770221723243594, + -0.03515544533729553, + -0.03645379841327667, + -0.021872280165553093, + -0.007244984619319439, + 0.01885943114757538, + 0.002297088736668229, + 0.0390172153711319, + 0.02170582301914692, + -0.016504082828760147, + -0.01525566540658474, + -0.019741646945476532, + -0.0017394621390849352, + -0.05040278658270836, + -0.03815164789557457, + 0.02708234265446663, + -0.030078545212745667, + 0.004802247043699026, + -0.01470636110752821, + 0.04987012967467308, + 0.0025987897533923388, + -0.04251278564333916, + 0.021838989108800888, + 0.04674076288938522, + 0.007969066500663757, + 0.007315728347748518, + -0.034622784703969955, + -0.019808229058980942, + -0.02208867110311985, + 0.03672012686729431, + 0.002463544486090541, + -0.009346487931907177, + -0.025567596778273582, + 0.02914639376103878, + 0.0013753402745351195, + -0.04930417984724045, + 0.027232153341174126, + 0.041747089475393295, + -0.026533039286732674, + 0.034489620476961136, + 0.010894525796175003, + -0.03212594985961914, + -0.00013966673577670008, + -0.004623307380825281, + -0.02162259630858898, + -0.03076101467013359, + 0.00365994474850595, + -0.006117247045040131, + -0.06185493990778923, + -0.05772683769464493, + -0.008622405119240284, + -0.014315190725028515, + -0.007523797918111086, + -0.012517469003796577, + 0.016171172261238098, + 0.016562342643737793, + -0.010769683867692947, + -0.012708893045783043, + -0.012542436830699444, + 0.022188546136021614, + 0.017594367265701294, + -0.007490506861358881, + -0.0012817089445888996, + 0.0010575138730928302, + -0.0029025713447481394, + 0.008006519638001919, + 0.020623860880732536, + 0.024269241839647293, + 0.004793924279510975, + 0.004028228111565113, + -0.010470063425600529, + 0.019325507804751396, + 0.022438228130340576, + -0.004252943210303783, + -0.024918418377637863, + -0.03302481025457382, + -0.017777469009160995, + -0.020241012796759605, + -0.009562879800796509, + 0.00831030122935772, + -0.003464359324425459, + 0.04724012687802315, + 0.004556724801659584, + -0.021605949848890305, + 0.03134360909461975, + 0.011818354949355125, + -0.022787785157561302, + -0.017061710357666016, + -0.019641773775219917, + 0.05523000285029411, + 0.01807708851993084, + -0.02421930432319641, + 0.011743449606001377, + 0.0156551580876112, + 0.00997069664299488, + 0.011801709420979023, + -0.02125639282166958, + 0.01819360814988613, + 0.025301266461610794, + -0.01684531755745411, + -0.003795190015807748, + 0.0032542089466005564, + 0.01116917748004198, + -0.02831411547958851, + 0.013166646473109722, + -0.017261456698179245, + -0.0011662303004413843, + -0.027365317568182945, + 0.038318101316690445, + -0.006013212259858847, + 0.014406741596758366, + 0.040648482739925385, + -0.00906351301819086, + -0.014548228122293949, + -0.02170582301914692, + -0.009288228116929531, + 0.016828671097755432, + 0.023620063439011574, + -0.03678670898079872, + 0.009870823472738266, + -0.030794305726885796, + 0.013449620455503464, + -0.008114715106785297, + -0.026932531967759132, + 0.02616683579981327, + -0.005413971841335297, + -0.017278101295232773, + 0.04527595266699791, + -0.0036765902768820524, + 0.008497564122080803, + 0.023353734984993935, + -0.07244152575731277, + -0.01350788027048111, + 0.023536836728453636, + 0.03136025369167328, + 0.0027340350206941366, + 0.022637976333498955, + -0.022621329873800278, + 0.013466265983879566, + 0.033707279711961746, + -0.016795380041003227, + -0.04534253478050232, + -0.03194284811615944, + -0.006100601516664028, + 0.030544621869921684, + 0.009487975388765335, + -0.01794392429292202, + 0.0009467168129049242, + -0.031510066241025925, + 0.003607927355915308, + -0.02117316611111164, + -0.009113449603319168, + -0.002740276977419853, + 0.025684114545583725, + 0.03508886322379112, + -0.02325386181473732, + -0.0024281726218760014, + -0.004977025557309389, + -0.010694778524339199, + -0.0325254462659359, + 0.01885943114757538, + 0.011452152393758297, + -0.015355538576841354, + -0.017377976328134537, + 0.015438766218721867, + -0.053665317595005035, + -0.0018362144473940134, + 0.016945190727710724, + -0.005334905348718166, + -0.005942468531429768, + -0.006749778985977173, + 0.011518734507262707, + -0.016112912446260452, + -0.01741126738488674, + -0.02616683579981327, + 0.026466457173228264, + -0.011085949838161469, + 0.02403620444238186, + -0.05419797822833061, + -0.000822395202703774, + 0.019641773775219917, + 0.0004411076079122722, + -0.012126297689974308, + -0.031243735924363136, + 0.00769441481679678, + -0.046407848596572876, + -0.003761898959055543, + -0.01434848178178072, + -0.008722279220819473, + 0.016479114070534706, + -0.00018661245121620595, + 0.04567544534802437, + -0.016112912446260452, + -0.04780607670545578, + -0.02894664742052555, + -0.03485582396388054, + 0.0016333465464413166, + -0.02182234264910221, + 0.006366930436342955, + 0.0027881329879164696, + -0.02345360815525055, + -0.003422745503485203, + -0.003464359324425459, + 0.029612470418214798, + 0.006400221958756447, + -5.0424372602719814e-5, + 0.01032857596874237, + 0.0038721757009625435, + -0.038384683430194855, + -0.02733202651143074, + -0.022954242303967476, + -0.002669533248990774, + -0.030494684353470802, + 0.02182234264910221, + -0.023237215355038643, + 0.0010398279409855604, + 0.02228841930627823, + 0.0016302255680784583, + 0.012958576902747154, + -0.005235031712800264, + -0.0034269068855792284, + 0.023486899212002754, + 0.013965633697807789, + -0.0006933920667506754, + 0.01563851349055767, + -0.01561354473233223, + -0.0032417248003184795, + -0.029945380985736847, + 0.01877620257437229, + -0.03718620538711548, + 0.007690253667533398, + 0.031576648354530334, + -0.010553291998803616, + 0.012334367260336876, + 0.0015085048507899046, + -0.006362769287079573, + 0.009346487931907177, + -0.02092348225414753, + -0.029745634645223618, + -0.006525063421577215, + 0.006391899194568396, + 0.048471901565790176, + 0.004610823001712561, + 0.003243805607780814, + 0.01767759583890438, + -0.002742357784882188, + 0.013091741129755974, + 0.016121234744787216, + -0.01042845007032156, + 0.014115443453192711, + 0.005671977996826172, + 0.027365317568182945, + 0.0520673431456089, + -0.037152912467718124, + 0.031243735924363136, + -0.01693686842918396, + -0.004727342166006565, + 0.004465174395591021, + 0.02105664648115635, + -0.015755033120512962, + 0.030478039756417274, + 0.006795553956180811, + 0.004344494082033634, + -0.021805698052048683, + 0.02849721722304821, + 0.001551159075461328, + 0.01603800617158413, + 0.011435506865382195, + -0.03881746903061867, + 0.0393834188580513, + -0.030145127326250076, + -0.0510353185236454, + -0.024768609553575516, + 0.019475316628813744, + 0.01479791197925806, + -0.0007714181556366384, + -0.014032215811312199, + -0.03781873732805252, + -0.019841520115733147, + -0.04377784952521324, + 0.024069495499134064, + -0.009829209186136723, + 0.0078275790438056, + 0.01632930524647236, + 0.01950860768556595, + 0.060856204479932785, + 0.004332009702920914, + -0.008272848092019558, + 0.031826332211494446, + -0.014381772838532925, + -0.012675601989030838, + -0.01198481023311615, + -0.023170633241534233, + 0.02889670990407467, + -0.03795190155506134, + -0.00919667724519968, + -0.011052658781409264, + -0.005780174396932125, + -0.013965633697807789, + -0.027248797938227654, + -0.012034747749567032, + -0.018476583063602448, + 0.028131013736128807, + -0.022588038817048073, + 0.042779114097356796, + 0.023853102698922157, + 0.023087406530976295, + -0.020973417907953262, + 0.04704038053750992, + 0.009413070045411587, + 0.014356804080307484, + 0.0001957154890988022, + -0.017760824412107468, + -0.010253671556711197, + 0.03121044486761093, + 0.009479652158915997, + -0.025567596778273582, + -0.0070993355475366116, + 0.010536646470427513, + 0.015330570749938488, + 0.013607753440737724, + 0.004556724801659584, + 0.026865949854254723, + -0.00846843421459198, + 0.022255128249526024, + 0.013174968771636486, + -0.0030565429478883743, + 0.022038735449314117, + -0.012858702801167965, + 0.02421930432319641, + 0.023020824417471886, + -0.002290846547111869, + -0.03126038238406181, + 0.005118513014167547, + -0.023270508274435997, + 0.0452093705534935, + -0.011044335551559925, + 0.02079031802713871, + 0.014248608611524105, + -0.01557193137705326, + -0.017194874584674835, + -0.012076361104846, + -0.00229916931129992, + 0.02616683579981327, + -0.006616614293307066, + 0.021289683878421783, + -0.023287152871489525, + 0.02590050734579563, + -0.004635791294276714, + 0.008197943679988384, + 0.011868291534483433, + -0.013807500712573528, + -0.03272519260644913, + -0.03006190061569214, + 0.003008686937391758, + 0.016695506870746613, + 0.03465607762336731, + -0.009671076200902462, + -0.0019860246684402227, + -0.0193587988615036, + 0.009213322773575783, + 0.03335772454738617, + 0.0034373102243989706, + -0.02545107714831829, + 0.000860367901623249, + 0.01922563463449478, + 0.02540113963186741, + -0.0038513687904924154, + -0.053598735481500626, + -0.005389003548771143, + 0.009471329860389233, + -0.013857437297701836, + -0.001975621096789837, + 0.004477658309042454, + -0.01599639281630516, + 0.011119240894913673, + 0.02047405205667019, + 0.013915697112679482, + 0.015097532421350479, + 0.022388292476534843, + 0.02280443161725998, + 0.015380507335066795, + 0.006995300762355328, + -0.010145475156605244, + 0.004623307380825281, + 0.019059177488088608, + 0.01982487365603447, + 0.0007350059458985925, + -0.014947721734642982, + 0.013524525798857212, + -0.009770949371159077, + 0.00883879791945219, + -0.02000797539949417, + -0.025933798402547836, + -0.0009841693099588156, + -0.015963101759552956, + 0.009854177944362164, + 0.016320981085300446, + -0.005230870563536882, + -0.006433513015508652, + 0.021922215819358826, + -0.018476583063602448, + -0.0030752690508961678, + 0.021389557048678398, + 0.022171899676322937, + -0.013075095601379871, + 0.012642310932278633, + 0.004860506393015385, + 0.022954242303967476, + -0.016229430213570595, + 0.007956583052873611, + 0.008514209650456905, + -0.004209248814731836, + -0.030794305726885796, + -0.020157786086201668, + -0.011601962149143219, + -0.02525133080780506, + 0.0023782358039170504, + 0.014173703268170357, + -0.02007455751299858, + -0.015072563663125038, + 0.004327848087996244, + -0.0320427231490612, + 0.00618382915854454, + 0.009155063889920712, + -0.01444003265351057, + -0.0022825237829238176, + 0.02831411547958851, + -0.013025159016251564, + 0.004785601515322924, + -0.0021576820872724056, + -0.022371646016836166, + 0.02966240607202053, + -0.030977405607700348, + 0.031243735924363136, + -0.007165918126702309, + -0.04244620352983475, + -0.03275848180055618, + 0.0006840288988314569, + 0.016545696184039116, + -0.019924746826291084, + -0.0014502452686429024, + -0.010486708953976631, + 0.040648482739925385, + 0.012259462848305702, + -0.01924227923154831, + 0.0076569621451199055, + 0.00498534832149744, + -0.019841520115733147, + -0.0033977769780904055, + 0.004419398959726095, + -0.013116709887981415, + -0.00011248764349147677, + 0.014498291537165642, + -0.012234494090080261, + 0.022970886901021004, + -0.014981013722717762, + 0.037419240921735764, + 0.004244620446115732, + 0.009770949371159077, + 0.014256930910050869, + 0.005771851632744074, + 0.011127564124763012, + 0.027631646022200584, + -0.01577167771756649, + 0.029629115015268326, + 0.0030149288941174746, + -0.009737658314406872, + 0.0006252492312341928, + 0.0056262025609612465, + -0.0005711511475965381, + -0.029912089928984642, + 0.03848455846309662, + -0.008597437292337418, + 0.010020633228123188, + 0.00040729629108682275, + -0.012384304776787758, + -0.013616076670587063, + -0.008605759590864182, + -0.03841797634959221, + 0.0345894955098629, + 0.032675255089998245, + -0.020906835794448853, + 0.020740380510687828, + -0.0024760286323726177, + 0.010578259825706482, + 0.01754443161189556, + -0.022521456703543663, + -0.026965824887156487, + 0.017910633236169815, + -0.005538813304156065, + -0.027548419311642647, + -0.004714857786893845, + 0.008023165166378021, + -0.05882544443011284, + 0.003112721722573042, + -0.013291487470269203, + 0.01291696261614561, + -0.010886202566325665, + 0.04337835684418678, + -0.018559811636805534, + -0.015122500248253345, + 0.00620047515258193, + -0.0045692091807723045, + 0.00861408282071352, + -0.01642085425555706, + 0.009596170857548714, + 0.006483449600636959, + -0.004182199481874704, + 0.024152722209692, + -0.045442406088113785, + -0.026250064373016357, + 0.004390269052237272, + 0.03851785138249397, + -0.03224246948957443, + 0.04138088971376419, + 0.034689366817474365, + -0.018959304317831993, + -0.00913009513169527, + -0.0022846045903861523, + -0.0037556567694991827, + 0.008019003085792065, + 0.012742184102535248, + -0.03142683580517769, + 0.00791912991553545, + -0.025484368205070496, + 0.025983735918998718, + 0.012750507332384586, + 0.008031487464904785, + 0.010436772368848324, + -0.011810031719505787, + -0.013025159016251564, + 0.008564146235585213, + -0.0065292250365018845, + 0.02112322859466076, + 0.028513861820101738, + 0.004785601515322924, + -0.03309139236807823, + -0.011036013253033161, + 0.008360237814486027, + -0.010295284911990166, + 0.027498481795191765, + 0.03748582303524017, + 0.0034060997422784567, + 0.024052849039435387, + -0.016861962154507637, + 0.03160993754863739, + 0.023237215355038643, + 0.040382154285907745, + -0.024252595379948616, + 0.0018018829869106412, + -0.020740380510687828, + 0.015488702803850174, + -0.0101038608700037, + -0.03795190155506134, + -0.022954242303967476, + -0.0018330934690311551, + -0.008073101751506329, + -0.016861962154507637, + 0.01366601325571537, + -0.01573006436228752, + 0.03602101281285286, + 0.02829746901988983, + 0.014548228122293949, + 0.001473132986575365, + -0.0176276583224535, + 0.013058450073003769, + -0.03394031897187233, + 0.01845993660390377, + -0.0027798102237284184, + 0.016212785616517067, + 0.025218039751052856, + 0.018709620460867882, + 0.009937405586242676, + -0.020823609083890915, + -0.012575728818774223, + -0.013133355416357517, + -0.0008650494855828583, + -0.0122428173199296, + -0.003909628372639418, + 0.012675601989030838, + 0.014473323710262775, + -0.002484351396560669, + -0.010303608141839504, + -0.023936329409480095, + 0.01246753241866827, + 0.029429368674755096, + -0.011085949838161469, + -0.021006708964705467, + -0.01632930524647236, + 0.004552563652396202, + -0.04267924278974533, + -0.008955316618084908, + -0.014298545196652412, + 0.013466265983879566, + 0.006038180552423, + -0.011818354949355125, + -0.03658696264028549, + -0.009779272601008415, + 0.014040539041161537, + -0.006828845012933016, + -0.012525791302323341, + -0.017278101295232773, + 0.005239193327724934, + 0.0032750158570706844, + -0.010212057270109653, + -0.03214259818196297, + -0.00550552224740386, + -0.008988607674837112, + 0.007515475153923035, + -0.02518474869430065, + -0.012941931374371052, + -0.015530317090451717, + -0.0017800356727093458, + -0.018609747290611267, + -0.0207237359136343, + 0.013541171327233315, + 0.01949196308851242, + -0.020557278767228127, + 0.013591107912361622, + 0.014406741596758366, + -0.0074780224822461605, + 0.035654813051223755, + 0.0032833388540893793, + 0.014947721734642982, + -0.00997901987284422, + -0.014606487937271595, + 0.051468104124069214, + -0.005671977996826172, + 0.025750696659088135, + -0.0015969343949109316, + 0.00498534832149744, + -0.03595443069934845, + -0.012767152860760689, + 0.021672531962394714, + 0.006520902272313833, + 0.013474589213728905, + 0.01534721627831459, + -0.003237563418224454, + 0.006217120680958033, + 0.016920221969485283, + 0.02000797539949417, + 0.0193587988615036, + -0.021805698052048683, + 0.015713417902588844, + 0.007540443446487188, + -0.0014949803007766604, + 0.028214242309331894, + -0.017278101295232773, + -0.007049398962408304, + 0.026383228600025177, + -0.05163455754518509, + -0.03528860956430435, + -0.03761898726224899, + 0.01821025460958481, + 0.01508920919150114, + -0.03154335543513298, + 0.0076528009958565235, + 0.014489969238638878, + -0.012900317087769508, + 0.04178038239479065, + 0.017036741599440575, + 0.011194146238267422, + 0.015139145776629448, + 0.02403620444238186, + -0.01116917748004198, + -0.021589305251836777, + 0.018093734979629517, + 0.038118354976177216, + -0.001663516741245985, + 0.01839335449039936, + -0.002122310223057866, + 0.004515110980719328, + 0.006058987695723772, + -0.024452343583106995, + -0.00861408282071352, + -0.004277911502867937, + -0.06375253200531006, + -0.0032791774719953537, + -0.048671647906303406, + 0.00011463335977168754, + 0.006891265977174044, + -0.011685190722346306, + -0.015064241364598274, + -0.026915887370705605, + -0.011060981079936028, + 0.0008416416239924729, + -0.03512215241789818, + -0.008106392808258533, + -0.0383513942360878, + -0.0003069027152378112, + -0.008239557035267353, + 0.02461879886686802, + 0.017794115468859673, + -0.03745253384113312, + -0.012950253672897816, + -0.012051393277943134, + -0.0005134118255227804, + 0.015263987705111504, + -0.011818354949355125, + 0.0009961333125829697, + 0.0001648951874813065, + -0.004856345243752003, + -0.012700569815933704, + -0.036753419786691666, + -0.008123038336634636, + -0.006679035257548094, + 0.002382397186011076, + -0.010619874112308025, + -0.000922788807656616, + -0.0193587988615036, + -0.01801050640642643, + -0.016179494559764862, + -3.19256832881365e-5, + 0.011943196877837181, + -0.01910911500453949, + 0.06138886511325836, + 0.03012848272919655, + 0.022554747760295868, + 0.013291487470269203, + -0.012109652161598206, + -0.015080886892974377, + 0.02092348225414753, + -0.026666203513741493, + -0.014947721734642982, + 0.016246076673269272, + 0.0011693512788042426, + 0.024119431152939796, + 0.04217987507581711, + -0.0016385483322665095, + -0.011152531951665878, + -0.00861408282071352, + 0.036953166127204895, + 0.009762627072632313, + -0.028597090393304825, + -0.0017706725047901273, + 0.013657690025866032, + 0.0005581467994488776, + -0.013474589213728905, + 0.002195134526118636, + 0.016945190727710724, + 0.020440760999917984, + 0.016096265986561775, + -0.011085949838161469, + 0.015563608147203922, + 0.0067747472785413265, + -0.022621329873800278, + 0.0047439876943826675, + -0.0101038608700037, + -0.006212959066033363, + -0.08069772273302078, + -0.01236765831708908, + 0.016179494559764862, + 0.017993861809372902, + 0.00672064907848835, + -0.014673070050776005, + 0.018176963552832603, + 0.010453417897224426, + -0.0009950930252671242, + -0.023886393755674362, + 0.011726804077625275, + -0.004259185399860144, + 0.004968702793121338, + 0.03908379748463631, + -0.005576265975832939, + 0.012975222431123257, + -0.004731503315269947, + -0.013100063428282738, + 0.02643316611647606, + -0.01065316516906023, + 0.0018278916832059622, + 0.0027236314490437508, + 0.03472265973687172, + -0.008114715106785297, + 0.008043971844017506, + 0.0489712692797184, + -0.03282506391406059, + 0.015164114534854889, + -0.0215726587921381, + -0.01671215333044529, + 0.004889636300504208, + -0.009487975388765335, + -0.02163924090564251, + 0.01395731046795845, + 0.0060797943733632565, + 0.00021535206178668886, + 0.0191756971180439, + 0.0042238133028149605, + 0.04697379842400551, + -0.004910443443804979, + 0.03344095125794411, + 0.0006705044070258737, + -0.019142406061291695, + -0.00513515854254365, + 0.006408544722944498, + -0.01586322858929634, + 0.009279905818402767, + -0.02746519073843956, + -0.004540079273283482, + 0.004113536793738604, + 0.012808766216039658, + 0.009446361102163792, + 0.022138608619570732, + -0.030544621869921684, + 0.007848386652767658, + 0.004003259819000959, + 0.011227437295019627, + -0.020940126851201057, + -0.002155601279810071, + -0.003907547798007727, + 0.06931215524673462, + 0.009138418361544609, + 0.010636519640684128, + -0.007536281831562519, + -0.011202468536794186, + 0.023486899212002754, + -0.010802974924445152, + 0.022055380046367645, + 0.03532189875841141, + -0.015097532421350479, + 0.0003872695961035788, + -0.001107970834709704, + 0.004872990772128105, + 0.009338164702057838, + 0.016096265986561775, + -0.0025467723608016968, + 0.018276836723089218, + 0.011302342638373375, + -0.0032999843824654818, + -0.0008837757632136345, + -0.0282475333660841, + 0.005147642455995083, + 0.0007833821582607925, + 0.0006777868256904185, + 0.0014814557507634163, + -0.011668545193970203, + 0.008031487464904785, + -0.01107762660831213, + -0.00981256365776062, + -0.004552563652396202, + 0.03761898726224899, + 0.019125759601593018, + 0.035721395164728165, + 0.027165571227669716, + -0.004802247043699026, + 0.06022367253899574, + -0.006845491006970406, + 0.020107848569750786, + -0.010578259825706482, + -0.005925823003053665, + 0.0003950722166337073, + 0.0014845768455415964, + 0.017194874584674835, + -0.022504810243844986, + -0.016137881204485893, + 0.008738924749195576, + 0.012425918132066727, + 0.0012941930908709764, + -0.01003727875649929, + -0.039283547550439835, + 0.0003199070633854717, + 0.0001219158002641052, + -0.02461879886686802, + -0.007856708951294422, + -0.011909905821084976, + 0.005617879796773195, + -0.010520000010728836, + -0.01597142405807972, + -0.008930348791182041, + -0.03197614103555679, + 0.018093734979629517, + 0.018892722204327583, + 0.013557816855609417, + -0.026050318032503128, + -0.01767759583890438, + 0.002342863939702511, + -0.009013576433062553, + -0.010636519640684128, + -0.003547587199136615, + 0.02518474869430065, + 0.0024260918144136667, + 0.000279593572486192, + -0.011019367724657059, + 0.015846582129597664, + -0.0015501187881454825, + -0.0034352296497672796, + 0.029778925701975822, + -0.011210791766643524, + 0.007294921204447746, + -0.03324120491743088, + 0.006741456221789122, + 0.013849114999175072, + 0.01065316516906023, + 0.01171848177909851, + -0.002195134526118636, + 0.0026757754385471344, + -0.004577531944960356, + -0.012384304776787758, + 0.010952785611152649, + -0.023853102698922157, + -0.007290759589523077, + -0.011951519176363945, + -0.007224177476018667, + -0.008805506862699986, + -0.0065292250365018845, + -0.032092660665512085, + -0.01729474775493145, + -0.011452152393758297, + 0.0057968199253082275, + -0.021472785621881485, + -0.020840253680944443, + -0.011202468536794186, + 0.007236661855131388, + -0.017144937068223953, + 0.020623860880732536, + -0.008127199485898018, + -0.031127216294407845, + 0.007502990774810314, + -0.017527785152196884, + -0.02500164695084095, + -0.014897785149514675, + -0.0022617168724536896, + 0.002122310223057866, + 0.003986614290624857, + 0.019858164712786674, + 0.017194874584674835, + -0.0060048894956707954, + -0.009621139615774155, + 0.02273784950375557, + 0.008580791763961315, + -0.012267785146832466, + 0.026316646486520767, + 0.008863766677677631, + 0.009171709418296814, + -0.0030003641732037067, + 0.01107762660831213, + 0.008647373877465725, + 0.019275570288300514, + 0.004036550875753164, + -0.004602500237524509, + 0.016703829169273376, + 0.027049051597714424, + -0.01684531755745411, + -0.006113085895776749, + 0.010536646470427513, + -0.00011086209997301921, + 0.03162658214569092, + -0.009537911973893642, + -0.045508988201618195, + -0.01884278655052185, + 0.00036880341940559447, + -0.013174968771636486, + 0.008385205641388893, + 0.0037743831053376198, + -0.016362596303224564, + -9.6947442216333e-5, + -0.031010696664452553, + 0.039616458117961884, + 0.019774938002228737, + -0.029329495504498482, + 0.006737294606864452, + 0.032475508749485016, + -0.006275380030274391, + -0.012875348329544067, + -0.002163924043998122, + -0.002072373405098915, + 0.009155063889920712, + -0.00822291150689125, + 0.004947895649820566, + -0.0007230419432744384, + 0.013790855184197426, + 0.006021535024046898, + -0.010694778524339199, + -0.037918608635663986, + 0.008664019405841827, + 0.0033145491033792496, + -0.014365127310156822, + -0.031193798407912254, + -0.0006476167473010719, + 0.021339621394872665, + -0.0015313924523070455, + 0.0074031176045536995, + -0.012850380502641201, + -0.0038118355441838503, + 0.004719019401818514, + -0.00874724704772234, + 0.022488165646791458, + -0.013874082826077938, + 0.011768418364226818, + -0.008805506862699986, + -0.01566348224878311, + -0.025101520121097565, + -0.02047405205667019, + 0.013224905356764793, + 0.024635443463921547, + 0.00423421710729599, + -0.027897976338863373, + -0.020573925226926804, + -0.009696044959127903, + 0.008152168244123459, + -0.0012380143161863089, + -0.025018291547894478, + -0.0032021915540099144, + 0.023337090387940407, + 0.011302342638373375, + 0.028846774250268936, + -0.0030461393762379885, + -0.007315728347748518, + 0.0021826503798365593, + -0.002064050640910864, + -0.00012159068865003064, + 0.003497650381177664, + 0.007311566732823849, + -0.032408926635980606, + 0.01711164601147175, + -0.010794652625918388, + -0.009013576433062553, + 0.009046867489814758, + -0.009205000475049019, + -0.024951709434390068, + -7.562030805274844e-5, + -0.004436044488102198, + -0.01942538097500801, + 0.029429368674755096, + 0.003784786444157362, + 0.014240285381674767, + -0.014473323710262775, + 0.0006944324122741818, + 0.01807708851993084, + 0.0029857992194592953, + -0.010286962613463402, + 0.009837532415986061, + -0.031709812581539154, + -0.010503354482352734, + 0.007261630147695541, + -0.015938133001327515, + 0.01628769002854824, + 0.021289683878421783, + 0.017036741599440575, + 0.005434778518974781, + 0.011027690023183823, + 0.009404746815562248, + 0.024568861350417137, + -0.01353284902870655, + 0.0044984654523432255, + -0.0024032043293118477, + 0.006803876720368862, + 0.00513515854254365, + 0.008052295073866844, + 0.007444731425493956, + 0.00942971557378769, + -0.013424652628600597, + -0.03994936868548393, + 0.007411440368741751, + -0.023536836728453636, + -0.0002447419101372361, + 0.009995665401220322, + -0.0010684375884011388, + -0.019408734515309334, + 0.0005321381031535566, + 0.009246614761650562, + 0.014331836253404617, + -0.019408734515309334, + -0.008048132993280888, + -0.021206457167863846, + 0.03156000003218651, + -0.012817089445888996, + 0.0011152531951665878, + -0.005389003548771143, + -0.018576456233859062, + -0.002677856246009469, + 0.011260728351771832, + 0.015205728821456432, + 0.02182234264910221, + -0.01749449409544468, + -0.004910443443804979, + 0.028996583074331284, + -0.003114802297204733, + 0.007020269520580769, + -0.017910633236169815, + -0.024652089923620224, + 0.02000797539949417, + -0.03652038052678108, + 0.04054860770702362, + 0.005988243967294693, + -0.0027985365595668554, + -0.011951519176363945, + -0.008738924749195576, + 0.02352019026875496, + -0.004902120679616928, + 0.012409272603690624, + 0.002661210484802723, + -0.004889636300504208, + 0.004631630145013332, + 0.014939399436116219, + 0.006857974920421839, + 0.006375253666192293, + 0.025018291547894478, + 0.025867216289043427, + -0.024385761469602585, + -0.013774209655821323, + 0.014065506868064404, + 0.0005357792833819985, + 0.0024905933532863855, + 0.0048480224795639515, + 0.022771140560507774, + 0.0006398141267709434, + 0.030527975410223007, + -0.028131013736128807, + -0.017993861809372902, + 0.003083591815084219, + -0.013707627542316914, + -0.0027590033132582903, + 0.03220918029546738, + 0.006375253666192293, + 0.003081511240452528, + 0.024186013266444206, + -0.01496436819434166, + -0.015988070517778397, + -0.03232569620013237, + 0.004627468530088663, + -0.006633259821683168, + -0.033657342195510864, + -0.0003836283867713064, + -0.01032857596874237, + -0.016529051586985588, + 0.003121044486761093, + 0.016137881204485893, + -0.011085949838161469, + -0.007086851634085178, + -0.0018528600921854377, + 0.015164114534854889, + 0.0037348498590290546, + -0.005984082352370024, + -0.007190886419266462, + 0.003886740654706955, + 0.01702841930091381, + 0.013516203500330448, + 0.01395731046795845, + -0.009779272601008415, + -0.0073198894970119, + 0.00014330795966088772, + 0.014473323710262775, + -0.005409810226410627, + -0.002557175699621439, + -0.009737658314406872, + -0.02583392523229122, + 0.041547343134880066, + -0.02849721722304821, + 0.0004723180609289557, + -0.018176963552832603, + 0.0011308584362268448, + -0.002865118905901909, + 0.026982469484210014, + -0.007569572888314724, + 0.008019003085792065, + 0.011368924751877785, + 0.013940664939582348, + -0.0012057635467499495, + -0.00913009513169527, + -0.019025886431336403, + -0.023104051128029823, + 0.019025886431336403, + -0.0027340350206941366, + -0.002369913039728999, + -0.016362596303224564, + 0.016587311401963234, + 0.011635254137217999, + -0.0019485721131786704, + 0.004710696637630463, + -0.012500823475420475, + 0.0037057201843708754, + -0.00861408282071352, + -0.027681583538651466, + -0.011052658781409264, + 0.010952785611152649, + -0.012675601989030838, + 0.0063544465228915215, + 0.008755570277571678, + 0.01832677237689495, + 0.006724810227751732, + 0.0028255856595933437, + -0.0008515249355696142, + 0.01373259536921978, + 0.046407848596572876, + -0.02240493707358837, + 0.012842057272791862, + -0.011585316620767117, + 0.012775475159287453, + -0.018276836723089218, + -0.03192620351910591, + -0.013333101756870747, + 0.001485617132857442, + -0.018992595374584198, + -0.029046520590782166, + -0.02143949456512928, + 0.0059715984389185905, + -0.01922563463449478, + 0.023952975869178772, + 0.03250879794359207, + 0.00468156673014164, + -0.02674943208694458, + 0.03905050829052925, + -0.020507343113422394, + 0.012117975391447544, + 0.011244082823395729, + 0.005189256742596626, + 0.006554193329066038, + -0.010528323240578175, + 0.0038617723621428013, + 0.010661487467586994, + -0.02325386181473732, + -0.010012310929596424, + 0.00828949362039566, + 0.014107121154665947, + 0.004544240888208151, + 0.01949196308851242, + -0.013408007100224495, + -0.03425658494234085, + -0.024052849039435387, + -0.012750507332384586, + -0.015538640320301056, + -0.004332009702920914, + -0.012808766216039658, + 0.0010944462846964598, + -0.01754443161189556, + -0.005484715569764376, + -0.004465174395591021, + 0.003081511240452528, + -0.001644790405407548, + 0.011036013253033161, + -0.02578398771584034, + -0.01747784949839115, + 0.04021569713950157, + 0.03037816658616066, + 0.010861234739422798, + 0.03024500049650669, + 0.013108386658132076, + 0.006400221958756447, + 0.0039699687622487545, + -0.014548228122293949, + 0.005984082352370024, + -0.015205728821456432, + 0.013557816855609417, + 0.02914639376103878, + -0.033207911998033524, + -0.010827943682670593, + 0.016720475628972054, + 0.0316765196621418, + 0.015630191192030907, + 0.004664921201765537, + -0.024568861350417137, + -0.024668734520673752, + -0.006870459299534559, + -0.013932342641055584, + -0.003316629910841584, + -0.004178038332611322, + 0.011601962149143219, + 0.004473497159779072, + -0.014473323710262775, + -0.011135886423289776, + -0.00029337816522456706, + 0.003555909963324666, + 0.004889636300504208, + 0.00030170095851644874, + -0.009579525329172611, + 0.003938758280128241, + 0.014756297692656517, + -0.02914639376103878, + 0.003865933744236827, + 0.005888370331376791, + -0.016171172261238098, + 0.00824371911585331, + 0.0018247707048431039, + -0.0037806250620633364, + 0.012725538574159145, + -0.00513515854254365, + -0.001488738227635622, + -0.009163386188447475, + 0.009354810230433941, + 0.0029816378373652697, + -0.0021202294155955315, + 0.0009467168129049242, + 0.004835538100451231, + 0.016146203503012657, + -0.004843860864639282, + 0.001371178892441094, + -0.007170079275965691, + -0.008988607674837112, + -0.009205000475049019, + 0.004756471607834101, + 0.01700345054268837, + -0.008572468534111977, + -0.008630728349089622, + -0.02162259630858898, + 0.10093873739242554, + -0.0034393910318613052, + 0.0013566139386966825, + 0.0006575000006705523, + 0.013874082826077938, + -0.012958576902747154, + -0.0017269778763875365, + -0.0010892444988712668, + 0.01628769002854824, + -0.007049398962408304, + -0.02345360815525055, + -0.019741646945476532, + 0.02518474869430065, + 0.004356977995485067, + -0.009288228116929531, + 0.0015241100918501616, + 0.010902849026024342, + 0.0031293672509491444, + 0.01418202556669712, + -0.00033837324008345604, + -0.009279905818402767, + -0.02215525321662426, + -0.005330743733793497, + 0.013341424986720085, + -0.0029629115015268326, + 0.012650633230805397, + 0.003965807147324085, + -0.009937405586242676, + 0.01085291150957346, + 0.03482253476977348, + 0.0024156884755939245, + 0.0022221836261451244, + -0.009021898731589317, + -0.014947721734642982, + -0.0035579907707870007, + 0.010886202566325665, + -0.006237927358597517, + 0.02558424137532711, + -0.0007958663045428693, + 0.008102231658995152, + -0.000990411383099854, + -0.0023761552292853594, + 0.03350753337144852, + 0.030527975410223007, + -0.023719938471913338, + 0.0029816378373652697, + -0.006316993851214647, + -0.0004582733672577888, + 0.0034664401318877935, + 0.011934873647987843, + 0.002309572882950306, + -0.02843063324689865, + 0.014115443453192711, + -0.0030024447478353977, + 0.01742791198194027, + -0.010303608141839504, + 0.015463734976947308, + -0.007869193330407143, + -0.00044292822713032365, + -7.744091271888465e-5, + -0.0032854194287210703, + -0.002054687589406967, + 0.00019753610831685364, + -0.01709500141441822, + -0.015039272606372833, + -0.005039446521550417, + -0.013083417899906635, + -0.008043971844017506, + 0.005006155464798212, + 0.005859240889549255, + -0.020224368199706078, + -0.0009451562655158341, + 0.005455585662275553, + -0.029262913390994072, + 0.0024822705890983343, + 0.016595633700489998, + 0.0074031176045536995, + 0.01942538097500801, + 0.023037469014525414, + -0.002342863939702511, + -0.00482721533626318, + 0.01794392429292202, + -0.0011475039646029472, + -0.029046520590782166, + -0.013973955996334553, + -0.009263260290026665, + 0.011002722196280956, + -0.023936329409480095, + 0.0014117524260655046, + -0.01606297492980957, + -0.017344683408737183, + -0.008605759590864182, + -0.00033525220351293683, + 0.010370190255343914, + -0.010961107909679413, + 0.011060981079936028, + -0.021156519651412964, + -0.03775215521454811, + 0.0064293514005839825, + -0.004860506393015385, + 0.02065715193748474, + -0.00535987364128232, + 0.0020349209662526846, + -0.0021202294155955315, + 0.00497286394238472, + -0.0005313578294590116, + 0.008148007094860077, + -0.012941931374371052, + 0.0023033306933939457, + 0.005193417891860008, + 0.004211329389363527, + -0.016121234744787216, + -0.0047772787511348724, + 0.0006034019170328975, + -0.028580443933606148, + -0.0012733861804008484, + 0.012442563660442829, + 0.0056262025609612465, + -0.016279367730021477, + -0.01716158352792263, + -0.01450661476701498, + -0.002186811761930585, + -0.012051393277943134, + -0.017377976328134537, + -0.006400221958756447, + 0.0016114992322400212, + -0.005934145767241716, + -0.0007745391922071576, + -0.015247342176735401, + 0.0021493593230843544, + 0.018809493631124496, + 0.019075823947787285, + 0.01434848178178072, + -0.010345222428441048, + 0.023936329409480095, + 0.0007506111869588494, + 0.003193868789821863, + 0.002132713794708252, + 0.011368924751877785, + -0.01749449409544468, + 0.01987481117248535, + -0.006595807150006294, + 0.014398418366909027, + 0.008922025561332703, + -0.010927816852927208, + 0.0002858356456272304, + -0.0075487662106752396, + -0.021922215819358826, + 0.007565411739051342, + 0.013649367727339268, + 0.015896519646048546, + -0.03134360909461975, + 0.003724446287378669, + -0.016337627544999123, + 0.014656424522399902, + 0.012267785146832466, + -0.015055918134748936, + 0.03210930526256561, + -0.021539367735385895, + -0.0017113727517426014, + -0.007844224572181702, + -0.0055512976832687855, + -0.01754443161189556, + 0.01364104449748993, + -0.009246614761650562, + 0.00588004756718874, + 0.009421393275260925, + 0.013133355416357517, + 0.023403672501444817, + -0.0028006171341985464, + -0.0033748894929885864, + 0.011735127307474613, + 0.0062504117377102375, + -0.03778544440865517, + 0.008093908429145813, + 0.0065000951290130615, + 0.01754443161189556, + 0.002792294370010495, + -0.013000190258026123, + 0.030744368210434914, + -0.006616614293307066, + -0.011502088978886604, + 0.009629462845623493, + 0.013690982013940811, + -0.010994398966431618, + -0.02518474869430065, + 0.014489969238638878, + -0.007661123760044575, + 0.003988694865256548, + -0.00972101278603077, + 0.0039450000040233135, + 0.014906108379364014, + 0.0031626583077013493, + 0.0045359181240201, + 0.0035517485812306404, + -0.004225894343107939, + 0.014548228122293949, + 0.0015105855418369174, + 0.013591107912361622, + -0.008014841936528683, + -0.0012962737819179893, + 0.008863766677677631, + 0.01275882963091135, + 0.007523797918111086, + 0.013191614300012589, + -0.015829937532544136, + -0.020224368199706078, + -0.016437500715255737, + -0.007207531947642565, + -0.012725538574159145, + -0.017594367265701294, + -0.032875001430511475, + 0.015447089448571205, + 0.006167183630168438, + -0.006366930436342955, + -0.0015178679022938013, + 0.01566348224878311, + 0.013091741129755974, + 0.006670712493360043, + 0.015780000016093254, + 0.015039272606372833, + -0.003576716873794794, + 0.003749414812773466, + -0.027415255084633827, + -0.0029733150731772184, + 0.005226708948612213, + 0.004090649075806141, + 0.005713591817766428, + 0.0008504845900461078, + -0.002619596663862467, + 0.01395731046795845, + 0.006329478230327368, + -0.012550760060548782, + 0.023653356358408928, + -0.0017477849032729864, + 0.03618746995925903, + 0.012392627075314522, + -0.00017451839812565595, + 0.01003727875649929, + -0.004225894343107939, + -0.027381964027881622, + 0.005767690017819405, + -0.0229375958442688, + -0.006375253666192293, + -0.013183292001485825, + -0.015047595836222172, + -0.0012952334946021438, + 0.0011589478235691786, + 0.012043070048093796, + -3.673729224829003e-5, + 0.0006653026212006807, + -0.00793161429464817, + -0.008422658778727055, + 0.014340158551931381, + 0.014947721734642982, + -0.004188441671431065, + -0.02163924090564251, + 0.010569937527179718, + 0.002444818150252104, + -0.015713417902588844, + -0.0028193434700369835, + 0.004565047565847635, + -0.011360601522028446, + -0.020640507340431213, + -0.0024552217219024897, + 0.031709812581539154, + -0.03575468435883522, + -0.010594905354082584, + 0.0037868672516196966, + 0.02869696356356144, + 0.00762783270329237, + -0.002442737342789769, + 0.0023116536904126406, + 0.004660759586840868, + 0.0027028245385736227, + 0.0021472785156220198, + 0.01473132986575365, + -0.008780538104474545, + 0.01042845007032156, + -0.013416329398751259, + -0.004719019401818514, + 0.00016112391313072294, + 0.0004494304012041539, + -0.022704558447003365, + 0.0006970332469791174, + -0.028463926166296005, + 0.012933608144521713, + 0.026899240911006927, + 0.0008473635534755886, + 0.0294626597315073, + -0.0009794877842068672, + -0.012850380502641201, + -0.00588004756718874, + -0.01246753241866827, + 0.0004257624677848071, + 0.009854177944362164, + -0.0012473774841055274, + -0.00972101278603077, + 0.02307076007127762, + 0.005085221957415342, + -0.0036328956484794617, + 0.00021561214816756546, + 0.00215352070517838, + -0.014498291537165642, + 0.0156551580876112, + 0.018576456233859062, + 0.025168102234601974, + 0.0006106843356974423, + -0.026982469484210014, + 0.013591107912361622, + -0.00793161429464817, + -0.011477121151983738, + -0.0068787820637226105, + -0.0070993355475366116, + -0.010977753438055515, + -0.017660949379205704, + -0.004034470301121473, + 0.02228841930627823, + -0.010095538571476936, + -0.007016107905656099, + -0.003761898959055543, + -0.0057260761968791485, + 0.018293481320142746, + -0.0024781092070043087, + 0.012459209188818932, + -0.011036013253033161, + 0.003341598203405738, + -0.0024552217219024897, + 0.011909905821084976, + -0.027298735454678535, + 0.009313196875154972, + -0.007265791296958923, + -0.01502262707799673, + -0.0010892444988712668, + -0.0178107600659132, + 0.02486848272383213, + 0.00468156673014164, + -0.006716487463563681, + 0.0029025713447481394, + -0.003718204330652952, + -0.013224905356764793, + -0.005305775441229343, + -0.0202077217400074, + -0.01253411453217268, + -0.006970332469791174, + 0.00476063322275877, + -0.007361503317952156, + -0.01566348224878311, + 0.00694536417722702, + 0.013524525798857212, + -0.009313196875154972, + 0.010919494554400444, + 0.014231963083148003, + 0.013998924754559994, + -0.01671215333044529, + -0.006408544722944498, + 0.023936329409480095, + 0.01389072835445404, + -0.0023636710830032825, + -0.02603367157280445, + -0.006063148844987154, + 0.01691189967095852, + -0.012334367260336876, + -0.012492500245571136, + 0.0017030498711392283, + 0.0024801900144666433, + 0.0005173131357878447, + 0.00778596568852663, + -0.05875886231660843, + 0.011144209653139114, + -0.011568671092391014, + -0.017394620925188065, + -0.007669446524232626, + -0.006728971842676401, + -0.010769683867692947, + 0.017527785152196884, + -0.007519636303186417, + 0.010844589211046696, + -0.020191077142953873, + -0.017960570752620697, + 0.01328316517174244, + 0.007494668010622263, + 0.009013576433062553, + -0.016853639855980873, + 0.001043989323079586, + 0.021339621394872665, + 0.0217557605355978, + 0.02500164695084095, + 0.02383645623922348, + -0.01140221580862999, + -0.009163386188447475, + -0.0013212421908974648, + 0.020241012796759605, + 0.021273039281368256, + -0.010977753438055515, + 0.018992595374584198, + -0.016054652631282806, + 0.00799819640815258, + 0.006063148844987154, + 0.00347268208861351, + 0.006171345245093107, + 0.009579525329172611, + 0.01774417795240879, + 0.010386835783720016, + 0.03134360909461975, + -0.0215726587921381, + 0.009238291531801224, + -0.00821042712777853, + 0.01563851349055767, + -0.0012078442377969623, + 0.0037660603411495686, + -0.0033353562466800213, + -0.009046867489814758, + -0.00143672083504498, + 0.02332044392824173, + 0.011027690023183823, + 0.012384304776787758, + 0.002444818150252104, + 0.004856345243752003, + -0.012276108376681805, + 0.023270508274435997, + -2.3944263375597075e-5, + 0.008555823005735874, + 0.009371455758810043, + -0.009146740660071373, + 0.011027690023183823, + 0.020956773310899734, + -0.009113449603319168, + 0.0038368040695786476, + -0.002276281826198101, + -0.003522618906572461, + -0.013299810700118542, + -0.0012244897661730647, + 0.01133563369512558, + -0.02027430385351181, + -0.005555459298193455, + 0.019075823947787285, + -0.01094446238130331, + 0.008372722193598747, + -0.004255023784935474, + -0.0030274130403995514, + -0.0031272864434868097, + 0.0019121598452329636, + 0.006541708949953318, + 0.011219114065170288, + -0.020906835794448853, + -0.010253671556711197, + 0.017078354954719543, + 0.0040427930653095245, + -0.015780000016093254, + -0.002542610978707671, + 0.0013961471850052476, + -0.019641773775219917, + 0.00845594983547926, + -0.008098069578409195, + -0.010611550882458687, + 0.004344494082033634, + -0.0053473892621695995, + 0.022837722674012184, + -0.024319177493453026, + -0.006092278752475977, + -0.003152254968881607, + 0.00016138399951159954, + -0.01518908329308033, + -0.008189620450139046, + -0.0003061224415432662, + 0.008672341704368591, + 0.008922025561332703, + -0.0054763928055763245, + 0.008181298151612282, + 0.001592773012816906, + 0.027248797938227654, + 0.011934873647987843, + 0.006304509937763214, + 0.015846582129597664, + 0.029362786561250687, + -0.008056456223130226, + 0.014323513023555279, + 0.0018070847727358341, + -0.00038492880412377417, + -0.010187089443206787, + 0.004527595359832048, + -0.00972101278603077, + -0.018493229523301125, + 0.022854367271065712, + -0.021722469478845596, + -0.003152254968881607, + 0.016337627544999123, + 0.0029941219836473465, + 0.003770221723243594, + 0.006308671087026596, + 0.009820886887609959, + -0.0034789242781698704, + 0.003010767512023449, + 0.019092468544840813, + -0.011843323707580566, + 0.014847848564386368, + 0.002856795908883214, + 0.009962373413145542, + 0.003955403808504343, + -0.0012806685408577323, + 0.000844762718770653, + -8.758431067690253e-5, + -0.003730688476935029, + 0.008181298151612282, + 0.01071974728256464, + -0.009188354946672916, + -0.0014450435992330313, + 0.005913339089602232, + -0.011843323707580566, + 0.01859310269355774, + -0.026915887370705605, + -0.018310127779841423, + 0.013990601524710655, + -0.006138054188340902, + 0.020940126851201057, + -0.005721914581954479, + -0.002025557914748788, + 0.0178107600659132, + 0.010012310929596424, + 0.0070244306698441505, + -0.030478039756417274, + -0.015280633233487606, + -0.012991867959499359, + -0.0009207081166096032, + 0.009704367257654667, + 0.020307594910264015, + 0.0005235552089288831, + 0.006441835779696703, + -0.015463734976947308, + -0.019658418372273445, + 0.013865760527551174, + -0.010778007097542286, + -0.01405718456953764, + 0.013591107912361622, + 0.01389072835445404, + 0.010353544726967812, + 0.006816361099481583, + 0.021605949848890305, + -0.0012265704572200775, + 0.02352019026875496, + -0.006383576430380344, + -0.012592374347150326, + -0.004213409963995218, + -0.004590015858411789, + -0.00823123473674059, + 0.007453054189682007, + 0.004252943210303783, + -0.003574636299163103, + -0.004540079273283482, + -0.015463734976947308, + 0.005047769285738468, + 0.015688449144363403, + -0.003443552413955331, + 0.03387373685836792, + -0.017594367265701294, + 0.0020578086841851473, + 0.008597437292337418, + -0.010403481312096119, + 0.021073292940855026, + 0.01434848178178072, + 0.0035579907707870007, + -0.003905466990545392, + 0.0020536473020911217, + -0.026782723143696785, + 0.000385188905056566, + 0.023270508274435997, + -0.0017685918137431145, + 0.0034102611243724823, + 0.023919684812426567, + -0.004764794372022152, + 0.001686404342763126, + -0.010553291998803616, + 0.005555459298193455, + -0.021456141024827957, + -0.003360324539244175, + -0.03069443255662918, + -0.005484715569764376, + -0.004448528867214918, + 0.001978742191568017, + -0.0010809217346832156, + -0.002865118905901909, + -0.013699304312467575, + -0.011701836250722408, + -0.012584051117300987, + 0.010228702798485756, + -0.00558875035494566, + -0.011543703265488148, + 0.02403620444238186, + -0.011144209653139114, + 0.026200126856565475, + -0.013857437297701836, + -0.011676867492496967, + -0.006262895651161671, + 0.018576456233859062, + 0.01826019026339054, + -0.0037140429485589266, + -0.0023470253217965364, + -0.033074747771024704, + -0.02966240607202053, + 0.00550552224740386, + -0.0017134534427896142, + 0.0037452534306794405, + 0.007781804073601961, + -0.0014096717350184917, + 0.013607753440737724, + -0.00881382916122675, + -0.012950253672897816, + 0.009845854714512825, + 0.016529051586985588, + 0.0024364953860640526, + -0.009870823472738266, + 0.012717215344309807, + -0.0191756971180439, + 0.022188546136021614, + -0.014897785149514675, + 0.008755570277571678, + -0.013557816855609417, + 0.026349937543272972, + -0.004003259819000959, + -0.002544691553339362, + 0.00903854425996542, + -0.00437362352386117, + 0.007315728347748518, + -0.002145197940990329, + 0.0024905933532863855, + -0.009088481776416302, + 0.02202208898961544, + 0.025700761005282402, + -0.01230939943343401, + 0.0015542801702395082, + 0.012867026031017303, + 0.0008083505090326071, + -0.021023355424404144, + -0.014922753907740116, + -0.011393892578780651, + -0.017144937068223953, + 0.011194146238267422, + 0.007831741124391556, + -0.011102595366537571, + 0.008123038336634636, + -0.008460110984742641, + -0.0042238133028149605, + 0.0050935447216033936, + 0.0181436724960804, + 0.0020505262073129416, + -0.0012744264677166939, + 0.008426819927990437, + 0.0015740467933937907, + 0.00016177413635887206, + -0.02202208898961544, + 0.010661487467586994, + -0.012750507332384586, + -0.0018424565205350518, + 0.015630191192030907, + 0.0023740744218230247, + -0.02085690014064312, + -0.01612955704331398, + 0.024152722209692, + -0.011552025564014912, + -0.02829746901988983, + -0.02649974822998047, + 0.00294626597315073, + 0.0122428173199296, + -0.014523260295391083, + -0.01246753241866827, + -0.005318259820342064, + 0.00831030122935772, + -0.023536836728453636, + -0.01801050640642643, + 0.007070206105709076, + -0.0033561631571501493, + -0.009529588744044304, + 0.014473323710262775, + 0.001444003195501864, + 0.012941931374371052, + 0.009504620917141438, + -0.004332009702920914, + 0.017144937068223953, + -0.035455066710710526, + -0.010128829628229141, + 0.013100063428282738, + 0.009954051114618778, + -0.010669810697436333, + -1.0362842658651061e-5, + 0.006445996928960085, + 0.0023990427143871784, + -0.008464272134006023, + -0.006329478230327368, + -0.010178766213357449, + -0.021605949848890305, + -0.006982816848903894, + -0.011576994322240353, + -0.030994052067399025, + 0.00874724704772234, + -0.004315364174544811, + 0.01821025460958481, + -0.03190955892205238, + -0.005389003548771143, + -0.008688988164067268, + -0.017211519181728363, + 0.003173061879351735, + 0.005513845011591911, + -0.013657690025866032, + 0.002134794369339943, + -0.01839335449039936, + 0.005717753432691097, + 0.009487975388765335, + 0.003772302297875285, + -0.004456851631402969, + 0.0202077217400074, + -0.002885925816372037, + -0.008664019405841827, + 0.012783798389136791, + -0.009338164702057838, + -0.02079031802713871, + -0.028796836733818054, + 0.006766424514353275, + -0.02674943208694458, + 0.012492500245571136, + 0.005888370331376791, + 0.004614984150975943, + 0.000754772569052875, + -0.00038804986979812384, + -0.018360063433647156, + 0.000559187144972384, + 0.011743449606001377, + 0.033640697598457336, + -0.029329495504498482, + 0.011660221964120865, + 0.024452343583106995, + 0.009904114529490471, + -0.007890000008046627, + 0.013865760527551174, + -0.0029733150731772184, + 0.004585854709148407, + 0.012609019875526428, + 0.013058450073003769, + 0.002027638489380479, + 0.024319177493453026, + -0.02332044392824173, + -0.019208988174796104, + -0.004635791294276714, + -0.004200926050543785, + 0.010162120684981346, + -0.0039762104861438274, + -0.020623860880732536, + 0.0011402216041460633, + -0.009729336015880108, + 0.011968164704740047, + 0.0011901583056896925, + -0.015555285848677158, + 0.030877532437443733, + -0.010952785611152649, + 0.015139145776629448, + 0.005834272596985102, + 0.01230939943343401, + -0.007615348324179649, + 0.004893797915428877, + 0.0041489084251224995, + 0.007823417894542217, + 0.011710158549249172, + -0.009188354946672916, + 0.010703101754188538, + 0.0006850692443549633, + -0.0029837184119969606, + -0.004356977995485067, + -0.00665406696498394, + -0.012767152860760689, + 0.03180968388915062, + -0.013591107912361622, + 0.005721914581954479, + -0.011751772835850716, + -0.03142683580517769, + 0.003761898959055543, + -0.02067379839718342, + -0.002484351396560669, + 0.0026840982027351856, + 0.014664747752249241, + 0.017594367265701294, + -0.003994937054812908, + -0.016121234744787216, + -0.005210063420236111, + -0.0018684652168303728, + -0.024535570293664932, + 0.02195550687611103, + 0.0038721757009625435, + 0.021938862279057503, + -0.012101329863071442, + 0.0026861790101975203, + 0.010320253670215607, + -0.008239557035267353, + -0.015913166105747223, + 0.0018424565205350518, + 0.033124685287475586, + 0.014856171794235706, + -0.0010268236510455608, + -0.01574670895934105, + -0.024069495499134064, + -0.01729474775493145, + 0.007964905351400375, + -0.00694536417722702, + -0.020623860880732536, + -0.0178107600659132, + -0.005663655232638121, + 0.014673070050776005, + -0.020757026970386505, + 0.01178506389260292, + 0.0029317010194063187, + -0.008218750357627869, + 0.005480553954839706, + -0.0013045965461060405, + 0.006683196406811476, + -0.006978655233979225, + 0.004415237344801426, + -0.0021888925693929195, + 0.0025301265995949507, + -0.015222374349832535, + -0.008381044492125511, + 0.01178506389260292, + -0.0006548991659656167, + 0.010728070512413979, + 0.024002913385629654, + -0.004319525323808193, + -0.04061518982052803, + 0.018609747290611267, + 0.00665406696498394, + 0.015671804547309875, + -0.011052658781409264, + -0.01405718456953764, + -0.011485443450510502, + -0.009904114529490471, + -0.009221646003425121, + -0.005176772363483906, + 0.008897057734429836, + -0.020740380510687828, + -0.0005170530057512224, + 0.0014845768455415964, + 0.04061518982052803, + 0.0016177414217963815, + 0.0012837896356359124, + -0.0035080539528280497, + 0.007369826082140207, + -0.014648102223873138, + 0.006991139613091946, + 0.011660221964120865, + 0.0034497943706810474, + -0.01434848178178072, + -0.007103497162461281, + -0.021855633705854416, + 0.023486899212002754, + 0.01736132986843586, + 0.00709101278334856, + -0.010769683867692947, + -0.01852652058005333, + 0.003100237576290965, + -0.015521994791924953, + -0.01538882963359356, + 0.008135522715747356, + -0.009338164702057838, + 0.012184557504951954, + 0.012883671559393406, + -0.02235500141978264, + -0.007902484387159348, + 0.0019506528042256832, + -0.0038097549695521593, + -0.029046520590782166, + -0.006708164699375629, + -0.0062212818302214146, + 0.010536646470427513, + -0.022205190733075142, + -0.012192880734801292, + -0.00347268208861351, + 0.0019017563899978995, + -0.004627468530088663, + -0.008672341704368591, + 0.0027694066520780325, + 0.004061519168317318, + 0.0031106409151107073, + 0.015197405591607094, + 0.00021405162988230586, + 0.009213322773575783, + -0.003470601513981819, + 0.007107658311724663, + -0.02215525321662426, + -0.0037057201843708754, + 0.032225824892520905, + -0.010470063425600529, + -0.005122674163430929, + 0.03152671083807945, + -0.0023990427143871784, + 0.002471867250278592, + 0.0231206975877285, + -0.013016835786402225, + -0.013849114999175072, + -0.005684462375938892, + 0.014231963083148003, + 0.0027610838878899813, + -0.01962512731552124, + 0.00423421710729599, + 0.00040443535544909537, + -0.008351914584636688, + -0.012226171791553497, + -0.009046867489814758, + -0.00997069664299488, + -0.01767759583890438, + -0.02163924090564251, + -0.003618330927565694, + -0.005713591817766428, + 0.0004239418776705861, + -0.021522723138332367, + -0.004856345243752003, + 0.008439304307103157, + -0.0014065506402403116, + 0.01930886134505272, + -0.0028505539521574974, + 0.020623860880732536, + -0.018293481320142746, + 0.005089383106678724, + -0.012783798389136791, + -0.01662060245871544, + 0.01171848177909851, + 0.0229375958442688, + 0.015363861806690693, + 0.004101052414625883, + 0.008672341704368591, + 0.0032084337435662746, + -0.006038180552423, + -0.008268686942756176, + -0.012159588746726513, + 0.012933608144521713, + 0.0019464914221316576, + 0.006421028636395931, + -0.0038888214621692896, + -0.004660759586840868, + -0.0018892722437158227, + -0.005305775441229343, + -0.009171709418296814, + 0.013033481314778328, + 0.00919667724519968, + 0.012151266448199749, + -0.006612452678382397, + -0.002002670196816325, + -0.0038368040695786476, + -0.00358712044544518, + -0.006312832701951265, + 0.001345170196145773, + -0.012617342174053192, + 0.011102595366537571, + -0.003537183627486229, + -0.015147469006478786, + 0.007823417894542217, + 0.019059177488088608, + 0.00028713609208352864, + 0.00724082300439477, + 0.00399285601451993, + -0.0015990150859579444, + -0.009596170857548714, + -0.023403672501444817, + -0.008963639847934246, + -0.0008301978232339025, + -0.02227177284657955, + 0.005455585662275553, + -0.003834723262116313, + 0.020124495029449463, + -0.010178766213357449, + -0.0022429905366152525, + -0.03445633128285408, + -0.015888197347521782, + 0.00870563369244337, + 0.0033873736392706633, + 0.003418584121391177, + -0.01366601325571537, + 0.009546234272420406, + 0.01107762660831213, + 0.02518474869430065, + -0.02168917842209339, + 0.006658228114247322, + -0.008530855178833008, + 0.018942659720778465, + -0.02298753336071968, + -0.0027548419311642647, + 0.004660759586840868, + -0.030860887840390205, + 0.014248608611524105, + 0.016995128244161606, + 0.006812199484556913, + 0.011643576435744762, + 0.01897595077753067, + -0.011285697109997272, + -0.006396060343831778, + -0.04404417797923088, + -0.0009935324778780341, + -0.0025800634175539017, + -0.013416329398751259, + -0.02513481117784977, + -0.001191198593005538, + 0.007203370798379183, + 0.00018401157285552472, + -0.012725538574159145, + 0.008339431136846542, + 0.014157057739794254, + -0.015755033120512962, + -0.008068940602242947, + -0.004789762664586306, + -0.012251139618456364, + 0.027548419311642647, + 0.010794652625918388, + -0.015247342176735401, + -0.0021493593230843544, + 0.016795380041003227, + 0.00994572788476944, + -0.030727723613381386, + -0.0019246441079303622, + -0.020840253680944443, + 0.021006708964705467, + 0.014981013722717762, + 0.025883862748742104, + 0.010303608141839504, + -0.002193053951486945, + 0.01801050640642643, + 0.025501014664769173, + 0.0019194423221051693, + -0.015214051119983196, + 0.006292025558650494, + 0.0037785444874316454, + -0.004510949365794659, + -0.016029683873057365, + -0.008555823005735874, + -0.01872626692056656, + 0.01101104449480772, + 0.0005110710044391453, + 0.015463734976947308, + -0.014315190725028515, + -0.005613718647509813, + -0.0012713054893538356, + -0.025301266461610794, + 0.024452343583106995, + 0.014897785149514675, + -0.0011631092056632042, + -0.01020373497158289, + -0.00665406696498394, + -0.000142397650051862, + 0.0016801622696220875, + -0.009354810230433941, + -0.018809493631124496, + -0.0016208624001592398, + 0.0010299446294084191, + 0.012650633230805397, + -0.010020633228123188, + -0.023803165182471275, + -0.01603800617158413, + -0.010936140082776546, + -0.00634612375870347, + 0.013358070515096188, + 0.017710886895656586, + 0.0028526345267891884, + -0.004473497159779072, + 0.020224368199706078, + 0.009820886887609959, + 0.019991330802440643, + 0.0070244306698441505, + 0.01962512731552124, + -0.013849114999175072, + -0.00958784855902195, + 0.0027985365595668554, + -0.008268686942756176, + 0.01668718457221985, + -0.006833006627857685, + 0.008738924749195576, + -0.014747975394129753, + 0.03522202745079994, + -0.007956583052873611, + -0.0062504117377102375, + 0.0025280460249632597, + 0.010969431139528751, + 0.009754303842782974, + 0.006687358021736145, + -0.008514209650456905, + 0.005409810226410627, + 0.011227437295019627, + -0.008713955990970135, + -0.011926551349461079, + -0.0006923516630195081, + -0.0022533941082656384, + -0.0013524525566026568, + 0.018759557977318764, + 0.0027257122565060854, + -0.0008192741661332548, + -0.010619874112308025, + -0.011527057737112045, + -0.03122708946466446, + 0.011909905821084976, + 0.02500164695084095, + 0.0018539003795012832, + -0.01246753241866827, + 0.01904253289103508, + 0.000976366747636348, + -0.008630728349089622, + -0.004560886416584253, + -0.004175957292318344, + 0.001997468527406454, + -0.002218022244051099, + -0.009113449603319168, + -0.002835988998413086, + 0.01353284902870655, + -0.00384720740839839, + -0.004477658309042454, + 0.001118374289944768, + -0.01879284903407097, + -0.021089937537908554, + -0.006108924280852079, + -0.012500823475420475, + -0.002270039636641741, + 0.004011582583189011, + 0.013208259828388691, + -0.010936140082776546, + -0.014231963083148003, + 0.006970332469791174, + 0.0007121182861737907, + -0.010070569813251495, + -0.009779272601008415, + -0.02267126739025116, + -0.022171899676322937, + 0.0021805698052048683, + 0.007848386652767658, + -0.017244810238480568, + -0.00392003171145916, + -0.002646645763888955, + 0.020507343113422394, + 0.0026528877206146717, + 0.0013534929603338242, + 0.014007247053086758, + 0.0003955923893954605, + 0.023287152871489525, + 0.004723180551081896, + -0.013341424986720085, + -0.013316456228494644, + 0.01176009513437748, + -0.029878798872232437, + -0.00208069640211761, + 0.0020765347871929407, + 0.012584051117300987, + -0.011934873647987843, + -0.004835538100451231, + -0.01872626692056656, + 0.012201203033328056, + 0.013874082826077938, + 0.010162120684981346, + -0.0012993948766961694, + -0.006937041413038969, + -0.0003219877544324845, + 0.013258196413516998, + -0.027881329879164696, + 0.016529051586985588, + 0.028397342190146446, + 0.00604234216734767, + 0.00997901987284422, + -0.0005701108020730317, + 0.00972101278603077, + 0.00012061536108376458, + -0.011943196877837181, + -0.007415601518005133, + -0.0022866851650178432, + -0.018426645547151566, + 0.014581519179046154, + -0.02168917842209339, + -0.00260711251758039, + 0.013657690025866032, + 0.006158860865980387, + -0.014598165638744831, + -0.016504082828760147, + 0.0036661869380623102, + -0.009571203030645847, + 0.0005019679665565491, + 0.010503354482352734, + 0.016970159485936165, + 0.0018799090757966042, + -0.010153797455132008, + 0.0009482773602940142, + -0.01321658305823803, + -0.011726804077625275, + -0.006458481308072805, + -0.016112912446260452, + 0.020757026970386505, + -0.004956218414008617, + 0.0059008547104895115, + -0.022238481789827347, + 0.017278101295232773, + 0.006608291529119015, + 0.0231206975877285, + -0.019841520115733147, + -0.021489432081580162, + 0.0010861235205084085, + -0.004209248814731836, + 0.015330570749938488, + -0.013715949840843678, + -0.008605759590864182, + 0.005413971841335297, + 0.015355538576841354, + -0.009388101287186146, + -0.00806477852165699, + 0.010195411741733551, + 0.002213860861957073, + -0.013233228586614132, + 6.97683499311097e-5, + -0.010253671556711197, + 0.002172247041016817, + 0.001159988227300346, + 0.00987914577126503, + 0.002854715334251523, + 0.0022721204441040754, + -0.0028006171341985464, + -0.00987914577126503, + -0.003010767512023449, + 0.019275570288300514, + 0.008239557035267353, + 0.010986076667904854, + 0.030278291553258896, + -0.003121044486761093, + -0.005076898727566004, + 0.007844224572181702, + -0.008655696175992489, + -0.028730254620313644, + 0.009579525329172611, + -0.011252405121922493, + 0.012001456692814827, + -0.022321710363030434, + 0.0015834098448976874, + 0.014581519179046154, + -0.012201203033328056, + -0.0031272864434868097, + -0.010153797455132008, + 0.00256549846380949, + 0.008189620450139046, + 0.014523260295391083, + -0.008031487464904785, + 0.017394620925188065, + -0.0015501187881454825, + -0.0013181210961192846, + -0.012450886890292168, + -0.009080158546566963, + -0.001107970834709704, + 0.0008473635534755886, + -0.01942538097500801, + -0.0019620966631919146, + 0.0011828758288174868, + -0.009479652158915997, + -0.005455585662275553, + -0.01806044392287731, + 0.0244856346398592, + -0.00037816655822098255, + -0.005031123757362366, + 0.0032937421929091215, + 0.012683924287557602, + -0.0021597626619040966, + -0.014206994324922562, + -0.0037598181515932083, + 0.020806962624192238, + 0.00694536417722702, + -0.006021535024046898, + -0.02416936866939068, + 0.016995128244161606, + 0.028613734990358353, + 0.01566348224878311, + -0.00392627390101552, + -0.00407816469669342, + -0.018942659720778465, + 0.004577531944960356, + 0.012342690490186214, + -0.016404209658503532, + 0.003911708947271109, + 0.0070993355475366116, + -0.02538449503481388, + -0.00414474681019783, + -0.03898392617702484, + -0.015555285848677158, + -0.007798449601978064, + 0.008797183632850647, + 0.009371455758810043, + -0.0036620255559682846, + 0.004448528867214918, + -0.004648275673389435, + -0.01969170942902565, + -0.00513515854254365, + 0.022754494100809097, + 0.06708164513111115, + 0.03137689828872681, + 0.013690982013940811, + 0.004244620446115732, + 0.00929655134677887, + -0.048605065792798996, + -0.0016239834949374199, + -0.011676867492496967, + -0.032941583544015884, + -0.016695506870746613, + 0.004802247043699026, + -0.011884937062859535, + 0.014423387125134468, + 0.01418202556669712, + -0.020424114540219307, + 0.014306867495179176, + -0.00861408282071352, + -0.015896519646048546, + -0.014523260295391083, + -0.005942468531429768, + -0.001658314955420792, + 0.01450661476701498, + -0.012792120687663555, + -0.007444731425493956, + 0.01930886134505272, + -0.004096890799701214, + -0.002796455752104521, + -0.011085949838161469, + 0.011144209653139114, + 0.0008338390616700053, + 0.035588230937719345, + -0.004602500237524509, + -0.034689366817474365, + 0.004977025557309389, + -0.004798085428774357, + 0.016953513026237488, + -0.005755206104367971, + 0.029129747301340103, + 0.001707211253233254, + -0.0030045255552977324, + -0.024269241839647293, + -0.005010316614061594, + 0.006296187173575163, + -0.025218039751052856, + 0.008131361566483974, + 0.0060797943733632565, + 0.001180795137770474, + 0.0006361728883348405, + -0.0063253166154026985, + -0.01631265878677368, + 0.0004463093646336347, + 0.006337800994515419, + -0.01794392429292202, + -0.010520000010728836, + -0.008780538104474545, + 0.013857437297701836, + 0.013807500712573528, + -0.01729474775493145, + -0.018759557977318764, + 0.00574688334017992, + 0.0023116536904126406, + 0.0007563331164419651, + 0.008406013250350952, + 0.02118981070816517, + 0.0009103046031668782, + 0.008996930904686451, + -0.008655696175992489, + 0.004402753431349993, + 0.011460475623607635, + -0.015180760063230991, + 0.004411076195538044, + -0.020890191197395325, + -0.028613734990358353, + -0.014831203036010265, + -0.02300417795777321, + -0.01700345054268837, + -0.030294938012957573, + -0.028014494106173515, + -0.02065715193748474, + 0.010844589211046696, + 0.00013771608064416796, + -0.005996566731482744, + -0.005351550877094269, + 0.0048396997153759, + -0.0036495414096862078, + -0.005950791295617819, + -0.00952126644551754, + 0.00400534039363265, + 0.0003583999350667, + 0.01171848177909851, + -0.021872280165553093, + 0.009779272601008415, + -0.016437500715255737, + -0.00241984985768795, + 0.007261630147695541, + -0.01632930524647236, + -0.009371455758810043, + 0.0013274842640385032, + 0.003626653691753745, + 0.007686092052608728, + -0.003462278749793768, + 0.01595477946102619, + 0.0012567405356094241, + 0.016603955999016762, + -0.016695506870746613, + -0.03154335543513298, + 0.011102595366537571, + -0.0053016142919659615, + -0.00016112391313072294, + 0.020107848569750786, + -0.021905571222305298, + 0.0028505539521574974, + -0.00207757530733943, + 0.011527057737112045, + 0.024136077612638474, + 0.01065316516906023, + 0.00877221580594778, + 0.004067761357873678, + 0.01508920919150114, + 0.005609557032585144, + -0.0282475333660841, + 0.019641773775219917, + 0.012351012788712978, + 0.003010767512023449, + 0.0034477137960493565, + -0.0034477137960493565, + 0.015139145776629448, + 0.025118166580796242, + -0.0013878244208171964, + 0.003922112286090851, + 0.01236765831708908, + 0.009820886887609959, + 0.011943196877837181, + 0.00663742097094655, + -0.006487611215561628, + 0.007490506861358881, + 0.00748218409717083, + 0.003237563418224454, + 0.024052849039435387, + 0.0021826503798365593, + -0.03109392523765564, + 0.03169316425919533, + 0.0055512976832687855, + -0.004311202559620142, + -0.028480570763349533, + 0.0014512856723740697, + -0.02526797540485859, + 0.009762627072632313, + 0.01107762660831213, + 0.01107762660831213, + -0.0024052849039435387, + -0.016920221969485283, + -0.002505158307030797, + -0.005118513014167547, + -0.0016354272374883294, + -0.0034893276169896126, + -0.010961107909679413, + 0.02934614010155201, + -0.02014113962650299, + -0.002043243730440736, + -0.0041176979430019855, + 0.0004275830870028585, + 0.0015480380970984697, + 0.028164304792881012, + 0.0014970609918236732, + -0.002270039636641741, + -0.010078893043100834, + 0.017927279695868492, + -0.006670712493360043, + -0.003225079271942377, + -0.008888734504580498, + 0.007140949834138155, + 0.005784335546195507, + -0.0019433703273534775, + 0.00408232631161809, + 0.0029962025582790375, + -0.007161756511777639, + -0.0164458230137825, + -0.012550760060548782, + -0.013907373882830143, + 0.018160317093133926, + 0.037019748240709305, + 0.02085690014064312, + 0.00786503218114376, + 0.0019412896363064647, + 0.0008900178363546729, + 0.0030232516583055258, + 0.008518370799720287, + 0.016454147174954414, + 0.00828949362039566, + -0.001017980626784265, + 0.020773671567440033, + -0.014614811167120934, + -0.02410278655588627, + -0.006978655233979225, + -0.005322420969605446, + -0.005422294605523348, + 0.007790126837790012, + -0.035987723618745804, + 0.0020016299095004797, + 0.0028068593237549067, + -0.0047439876943826675, + 0.008589114062488079, + 0.006903750356286764 + ], + "fe88bd89-3d04-441b-bcee-67db0c8e3da2": [ + 0.002216024324297905, + -0.005453044548630714, + -0.00277486490085721, + 0.015198910608887672, + -0.02591162919998169, + -0.046718280762434006, + 0.02622102200984955, + 0.03975694626569748, + -0.018950296565890312, + 0.045882921665906906, + 0.001513123163022101, + 0.01319559384137392, + -0.006361884996294975, + -0.008005533367395401, + -0.013419903814792633, + 0.014564656652510166, + -0.03981882706284523, + 0.03288843110203743, + -0.024720467627048492, + -0.03127958998084068, + 0.06930393725633621, + -0.008059676736593246, + -0.04003540053963661, + 0.050028782337903976, + 0.017867421731352806, + -0.014966866932809353, + 0.005112712737172842, + 0.0017442007083445787, + -0.006787300109863281, + -0.0018563555786386132, + 0.018424328416585922, + 0.002260499633848667, + 0.03981882706284523, + -0.0050044250674545765, + -0.007464096415787935, + -0.02990279346704483, + 0.007208847440779209, + 0.029438704252243042, + -0.010086198337376118, + 0.021177923306822777, + -0.02984091453254223, + 0.03938567638397217, + 0.006160779856145382, + -0.015724878758192062, + -0.05126635357737541, + 0.0244884230196476, + 0.022059692069888115, + -0.007328737061470747, + 0.003552213776856661, + -0.015825431793928146, + -0.027040911838412285, + 0.0025660248938947916, + 0.017032062634825706, + 0.025664115324616432, + 0.018842007964849472, + 0.0063348133116960526, + -0.0027477929834276438, + 0.02386963926255703, + -0.004470722749829292, + -0.024735936895012856, + 0.018285101279616356, + 0.008755810558795929, + 0.030753623694181442, + 0.009699457325041294, + -0.0041419933550059795, + -0.03545638918876648, + 0.017913831397891045, + 0.013582334853708744, + -0.05074038356542587, + 0.006675145123153925, + 0.03938567638397217, + 0.03446633368730545, + -0.029964672401547432, + 0.010875149630010128, + -0.02318897470831871, + -0.010712718591094017, + 0.03236246481537819, + -0.006555255502462387, + -0.005762436892837286, + 0.011269625276327133, + -0.028788980096578598, + -0.022121571004390717, + -0.005159121472388506, + -0.012499460950493813, + 0.0741923451423645, + 0.03635362908244133, + -0.0448000468313694, + -0.04984314739704132, + -0.010333712212741375, + -0.023266322910785675, + 0.0025331517681479454, + 0.019012175500392914, + 0.019661899656057358, + 0.004439783748239279, + -0.03095472790300846, + 0.010117137804627419, + 0.036693960428237915, + -0.0001364469644613564, + 0.008090616203844547, + -0.028618814423680305, + -0.0014657473657280207, + 0.020265214145183563, + -0.030413292348384857, + 0.03477572649717331, + 0.0006395725067704916, + 0.0006526249926537275, + 0.034280698746442795, + -0.004080114886164665, + -0.027520470321178436, + 0.03824092447757721, + 0.016691729426383972, + -0.023513836786150932, + -0.026716049760580063, + -0.012004432268440723, + -0.027520470321178436, + -0.062249790877103806, + -0.004470722749829292, + -0.03421882167458534, + 0.00283287581987679, + -0.03935473784804344, + 0.07326416671276093, + 0.010356917046010494, + 0.007348074112087488, + 0.018501676619052887, + -0.020218806341290474, + 0.03053704835474491, + 0.002036189893260598, + -0.008964650332927704, + 0.018424328416585922, + 0.019445324316620827, + -0.0060563599690794945, + -0.007286195643246174, + -0.0003072171821258962, + -0.02481328509747982, + 0.022384554147720337, + 0.03539451211690903, + -0.026143673807382584, + 0.032609980553388596, + -0.031202243641018867, + 0.04591386020183563, + -0.07283101230859756, + -0.035332635045051575, + -0.002217958215624094, + -0.019135931506752968, + 0.005735365208238363, + 0.025571297854185104, + -0.0336928516626358, + 0.0491006039083004, + -0.016042005270719528, + 0.021116044372320175, + -0.0628376379609108, + -0.0172641072422266, + 0.0449238047003746, + -0.004196137189865112, + -0.006083431653678417, + -0.01689283549785614, + -0.009567965753376484, + 0.01516023650765419, + 0.004803319927304983, + -0.008407743647694588, + -0.003264091908931732, + -0.02968621999025345, + 0.00028957214090041816, + -0.011346973478794098, + 0.043036509305238724, + 0.0335690975189209, + 0.04579010233283043, + 0.03279561549425125, + -0.05371055379509926, + 0.019213279709219933, + 0.025354722514748573, + -0.029655279591679573, + 0.029995610937476158, + 0.004451385699212551, + -0.004393375013023615, + 0.0033375725615769625, + 0.020574606955051422, + 0.027474062517285347, + 0.017511621117591858, + -0.03576578199863434, + -0.029516052454710007, + -0.03279561549425125, + -0.012901671230793, + 0.013095041736960411, + 0.018795600160956383, + 0.010867414996027946, + 0.018594494089484215, + 0.010186751373112202, + 0.006164647173136473, + 0.009954706765711308, + 0.015144767239689827, + -0.04727518931031227, + -0.006075697019696236, + 0.03520887717604637, + -0.016815487295389175, + -0.039787888526916504, + -0.0020884000696241856, + -0.021812178194522858, + -0.010898354463279247, + 0.03137240931391716, + -0.03127958998084068, + -0.052163589745759964, + -0.04888403043150902, + 0.04006633907556534, + -0.03462103009223938, + 0.03211495280265808, + -0.021054165437817574, + -0.02538566291332245, + 0.030351413413882256, + -0.03347627818584442, + 0.027675166726112366, + -0.02707185223698616, + -0.017604438588023186, + -0.0023533173371106386, + -0.006013818550854921, + -0.007030946668237448, + -0.009977910667657852, + 0.0018196151359006763, + 0.009846419095993042, + -0.017666317522525787, + -0.03394036740064621, + -0.006628736387938261, + 0.010480673983693123, + -0.03558014705777168, + -0.05398900806903839, + -0.009003324434161186, + -0.01395360566675663, + 0.009606639854609966, + -0.04841994121670723, + -0.02843317948281765, + 0.024163560941815376, + 0.0297480970621109, + 0.013419903814792633, + -0.02779892459511757, + -0.019228748977184296, + -0.00043363304575905204, + 0.018114935606718063, + 0.034868545830249786, + 0.00722818449139595, + -0.018501676619052887, + 0.026979034766554832, + 0.03264091908931732, + 0.006559122819453478, + 0.006392824463546276, + 0.020497258752584457, + 0.025091739371418953, + -0.02659229375422001, + 0.005128182005137205, + 0.021116044372320175, + -0.041520487517118454, + 0.0193525068461895, + 0.0314188189804554, + -0.003250555833801627, + -0.02643759734928608, + -0.01615029387176037, + 0.04746082425117493, + 0.03997352346777916, + -0.02529284358024597, + -0.020125988870859146, + 0.00028908869717270136, + 0.0026859145145863295, + 0.018130406737327576, + 0.000678246549796313, + -0.028309421613812447, + 0.025540359318256378, + -0.017295045778155327, + 0.009011059068143368, + -0.035270754247903824, + 0.03796247020363808, + 0.031341470777988434, + 0.005383430980145931, + -0.006276802159845829, + 0.012530399486422539, + -0.018656373023986816, + -0.00816022977232933, + -0.021379027515649796, + 0.008345864713191986, + 0.0071972450241446495, + -0.0107823321595788, + 0.018424328416585922, + 0.005162988789379597, + -0.009776805527508259, + 0.007027079351246357, + 0.039416614919900894, + 0.0010993105825036764, + -0.02916025184094906, + -0.013412169180810452, + -0.017743665724992752, + -0.042881812900304794, + -0.024828756228089333, + -0.01915140077471733, + -0.014541451819241047, + 0.026035387068986893, + -0.0038113300688564777, + 0.04201551526784897, + 0.03520887717604637, + -0.013427638448774815, + -0.025478480383753777, + -0.042046453803777695, + -0.0029469644650816917, + -0.03681771829724312, + -0.034435395151376724, + 0.014464103616774082, + -0.023668533191084862, + 0.013172389939427376, + -0.007935919798910618, + 0.046347010880708694, + 0.008941445499658585, + -0.04071606323122978, + 0.029516052454710007, + 0.043407779186964035, + -0.006183984223753214, + -0.0008430948364548385, + -0.028665224090218544, + -0.02029615454375744, + -0.004219341557472944, + 0.04343872144818306, + 0.0025776270776987076, + -0.014348081313073635, + -0.007920450530946255, + 0.030707214027643204, + -0.007158570922911167, + -0.05739232525229454, + 0.02014145813882351, + 0.03830280154943466, + -0.03731274604797363, + 0.01831604167819023, + 0.0022256928496062756, + -0.034651968628168106, + -0.0008353599696420133, + -0.010805536061525345, + -0.027845332399010658, + -0.03749838098883629, + 0.011555813252925873, + -0.0038442029617726803, + -0.058629896491765976, + -0.05649508535861969, + -0.008021002635359764, + 0.005236469674855471, + -0.011370177380740643, + 0.0006100835162214935, + 0.0021483448799699545, + 0.03132599964737892, + -0.019337037578225136, + -0.004996690433472395, + -0.02134808897972107, + 0.006856913212686777, + 0.029314948245882988, + -0.022369084879755974, + 0.0007478598854504526, + 0.000981354620307684, + 0.0036392302718013525, + 0.021549193188548088, + 0.021007757633924484, + 0.023591184988617897, + 0.012352499179542065, + -0.004667960572987795, + -0.011656366288661957, + 0.015253054909408092, + 0.02481328509747982, + 0.0031016606371849775, + -0.022059692069888115, + -0.02911384217441082, + -0.018640903756022453, + -0.025246435776352882, + -0.0013042831560596824, + 0.0075955879874527454, + -0.01410830207169056, + 0.05166856199502945, + 0.017542559653520584, + -0.01930609717965126, + 0.029670748859643936, + 0.0046563586220145226, + -0.02922213077545166, + -0.01014807727187872, + -0.02959340065717697, + 0.04579010233283043, + 0.015523773618042469, + -0.02349836751818657, + 0.018269632011651993, + 0.012468521483242512, + -0.005603873170912266, + 0.0008078046957962215, + -0.0065204487182199955, + 0.015152501873672009, + 0.03697241470217705, + 0.0023765219375491142, + -0.0039795623160898685, + -0.004579010419547558, + 0.015245320275425911, + -0.02481328509747982, + 0.0037049762904644012, + -0.036322690546512604, + 0.009985646232962608, + -0.02691715583205223, + 0.05015254020690918, + -0.00993923656642437, + 0.01321879867464304, + 0.030923789367079735, + -0.019398914650082588, + 0.0009388131438754499, + -0.012213272973895073, + -0.0027091188821941614, + 0.004845861345529556, + 0.007669068872928619, + -0.041891757398843765, + 0.01395360566675663, + -0.040159158408641815, + 0.020373502746224403, + -0.023699471727013588, + -0.02187405526638031, + 0.01440222468227148, + -0.005878459196537733, + -0.012576809152960777, + 0.025246435776352882, + 0.005932603031396866, + 0.01599559746682644, + 0.01908952370285988, + -0.08514484018087387, + -0.02097681723535061, + 0.041303910315036774, + 0.03709617257118225, + -0.01148619968444109, + 0.019646430388092995, + -0.020574606955051422, + 0.021966874599456787, + 0.022369084879755974, + -0.025540359318256378, + -0.04625419154763222, + -0.027133729308843613, + -0.014146976172924042, + 0.023065216839313507, + 0.02266300655901432, + -0.012940345332026482, + -0.005948072765022516, + -0.020528199151158333, + -0.0007739649154245853, + -0.01489725336432457, + -0.012638687156140804, + -0.0077348146587610245, + 0.030722685158252716, + 0.025169087573885918, + -0.011880675330758095, + -0.001325553865171969, + -0.0008078046957962215, + -0.010264099575579166, + -0.0353635735809803, + 0.02571052499115467, + 0.004486192483454943, + -0.0012839792761951685, + -0.010875149630010128, + 0.02492157369852066, + -0.04894590750336647, + 0.008833158761262894, + 0.016444215551018715, + -0.0009987580124288797, + -0.028263013809919357, + 0.0019801126327365637, + 0.017635377123951912, + -0.03830280154943466, + -0.017387863248586655, + -0.027025442570447922, + 0.015724878758192062, + -0.010588961653411388, + 0.030707214027643204, + -0.04247960448265076, + 0.005236469674855471, + 0.00658232718706131, + -0.002422930672764778, + -0.00036498656845651567, + -0.0288508590310812, + -0.0013661616249009967, + -0.041211094707250595, + -0.0025892292615026236, + -0.010194486007094383, + -0.011455261148512363, + 0.013071836903691292, + 0.005716028157621622, + 0.03929286077618599, + -0.012166863307356834, + -0.04350059852004051, + -0.034806665033102036, + -0.02571052499115467, + 0.0034207217395305634, + -0.020311623811721802, + -0.006079564336687326, + 0.00812929030507803, + -0.02707185223698616, + -0.020760243758559227, + -0.026035387068986893, + 0.02906743437051773, + 0.011725978925824165, + 0.01678454875946045, + -0.002556356368586421, + 0.0046292864717543125, + -0.052751436829566956, + -0.041149213910102844, + -0.032455284148454666, + -0.011401116847991943, + -0.026839807629585266, + 0.020806651562452316, + -0.02922213077545166, + -0.005170723889023066, + 0.02843317948281765, + -0.005611608270555735, + 0.018130406737327576, + -0.025772402063012123, + 0.00025524888769723475, + 0.0020748639944940805, + 0.027829863131046295, + 0.0013400566531345248, + 0.01061990112066269, + -0.019166871905326843, + -0.002078731544315815, + -0.018176814541220665, + 0.015276258811354637, + -0.026313839480280876, + 0.004424314014613628, + 0.0314188189804554, + -0.01888841763138771, + 0.006783432327210903, + -0.0027845334261655807, + -0.009900562465190887, + 0.004811054561287165, + -0.03242434188723564, + -0.02476687729358673, + 0.008709401823580265, + 0.0021077371202409267, + 0.058103930205106735, + 0.009645313955843449, + 0.008647522889077663, + 0.00970719289034605, + 0.009011059068143368, + 0.019785655662417412, + 0.017078470438718796, + -0.02297239936888218, + 0.0020922673866152763, + 0.009784541092813015, + 0.0404994897544384, + 0.04418126121163368, + -0.04164424166083336, + 0.024271849542856216, + -0.010039789602160454, + -0.00894918106496334, + 0.004401109647005796, + 0.011741449125111103, + -0.01987847313284874, + 0.018532617017626762, + -0.004343098495155573, + 0.025107208639383316, + -0.021904995664954185, + 0.025617705658078194, + 0.00907293800264597, + -0.003614092245697975, + 0.009823215194046497, + -0.03493042290210724, + 0.047337066382169724, + -0.03830280154943466, + -0.04028291627764702, + -0.01710941083729267, + 0.015724878758192062, + 0.007951389998197556, + -0.011053049936890602, + -0.0123060904443264, + -0.02171936072409153, + -0.019646430388092995, + -0.03920004144310951, + 0.02198234386742115, + 0.0019665765576064587, + 0.01972377859055996, + 0.013071836903691292, + 0.017588969320058823, + 0.058629896491765976, + 0.0046563586220145226, + 0.008268517442047596, + 0.02738124504685402, + -0.012832057662308216, + -0.017063001170754433, + -0.005093375686556101, + -0.019754717126488686, + 0.031604453921318054, + -0.027350304648280144, + -0.0237149428576231, + -0.014061893336474895, + -0.0009629844571463764, + -0.017960239201784134, + -0.021549193188548088, + -0.00936686061322689, + -0.019538141787052155, + 0.03542545065283775, + -0.021100575104355812, + 0.03657020255923271, + 0.013002223335206509, + 0.020017700269818306, + -0.02847958728671074, + 0.037374626845121384, + 0.005944204982370138, + 0.009374595247209072, + -0.004420446697622538, + -0.010867414996027946, + -0.0020013833418488503, + 0.019398914650082588, + 0.0030049756169319153, + -0.015516038052737713, + -0.010248629376292229, + 0.010202220641076565, + 0.011741449125111103, + 0.010426530614495277, + 0.0100939329713583, + 0.016196701675653458, + -0.005712160840630531, + 0.013930401764810085, + 0.005070170853286982, + 0.008059676736593246, + 0.01284752693027258, + -0.010132607072591782, + 0.017588969320058823, + 0.023158036172389984, + -0.002941163256764412, + -0.033600036054849625, + -0.0022566323168575764, + -0.024674059823155403, + 0.04201551526784897, + -0.004122656304389238, + 0.010480673983693123, + 0.03394036740064621, + -0.015268524177372456, + -0.015809960663318634, + -0.013783439993858337, + -0.004872933495789766, + 0.038333743810653687, + -0.011346973478794098, + 0.032548099756240845, + -0.026267431676387787, + 0.024565771222114563, + 0.002349450020119548, + 0.009792275726795197, + 0.027195608243346214, + -0.012545869685709476, + -0.03855031728744507, + -0.033290643244981766, + 0.008191169239580631, + 0.020435379818081856, + 0.0449238047003746, + -0.014835374429821968, + 0.00238812412135303, + -0.009320451878011227, + 0.0054955859668552876, + 0.032455284148454666, + 0.0068491785787045956, + -0.01919781044125557, + 0.012600013054907322, + 0.02082212083041668, + 0.025478480383753777, + 0.0006801802664995193, + -0.0500597208738327, + -0.0011785924434661865, + 0.017124880105257034, + -0.014363550581037998, + -0.008013268001377583, + 0.014920457266271114, + -0.02088399976491928, + 0.021363558247685432, + 0.017542559653520584, + 0.015222115442156792, + 0.010171281173825264, + 0.009150286205112934, + 0.00980774499475956, + 0.026731519028544426, + 0.004853596445173025, + -0.01398454513400793, + 0.006725421641021967, + 0.020388972014188766, + 0.02691715583205223, + 0.0009499319130554795, + -0.011888409964740276, + -0.00047134028864093125, + -0.018238693475723267, + -0.014348081313073635, + -0.02077571302652359, + -0.018919356167316437, + -0.007959124632179737, + -0.022167978808283806, + 0.01369062252342701, + 0.027876272797584534, + -0.004621551837772131, + 0.005576801486313343, + 0.017588969320058823, + -0.027721576392650604, + -0.0005544895539060235, + 0.0189967043697834, + 0.01924421824514866, + -0.004992823116481304, + 0.0038113300688564777, + 0.010527082718908787, + 0.004250280559062958, + -0.018022118136286736, + 0.015276258811354637, + 0.01540001668035984, + -0.008624318055808544, + -0.02492157369852066, + -0.023266322910785675, + -0.014502777718007565, + -0.01930609717965126, + -0.008624318055808544, + 0.013868522830307484, + -0.020651955157518387, + -0.013528191484510899, + -0.004942546598613262, + -0.04300557076931, + 0.00550718791782856, + 0.01678454875946045, + -0.009467413648962975, + -0.006265199743211269, + 0.039478495717048645, + -0.009475148282945156, + -0.0031093955039978027, + 0.008709401823580265, + -0.01069724839180708, + 0.022044222801923752, + -0.031295061111450195, + 0.043624356389045715, + -0.0013178191147744656, + -0.03514700010418892, + -0.035332635045051575, + -0.0011969625484198332, + 0.003227351466193795, + -0.015330403111875057, + -0.003902214113622904, + -0.006969068199396133, + 0.03889064863324165, + -0.0024442013818770647, + -0.01647515594959259, + 0.007340339012444019, + -0.013095041736960411, + -0.027025442570447922, + 0.004571275319904089, + 0.003111329162493348, + -0.009537026286125183, + -0.003550279885530472, + 0.019785655662417412, + -0.005538127385079861, + 0.02722654864192009, + -0.01395360566675663, + 0.03923097997903824, + 0.001365194795653224, + 0.01382211409509182, + 0.014843109995126724, + 0.0073867482133209705, + 0.009792275726795197, + 0.035703904926776886, + -0.018965765833854675, + 0.02527737431228161, + -0.00043000734876841307, + -0.013914931565523148, + 0.00920442957431078, + -0.00751437246799469, + 0.0012839792761951685, + -0.03561108559370041, + 0.04820336401462555, + -0.012050841003656387, + 0.01862543448805809, + -0.004486192483454943, + -0.018501676619052887, + -0.015624325722455978, + -0.0021831514313817024, + -0.03400224447250366, + 0.042572420090436935, + 0.02864975482225418, + -0.022415492683649063, + 0.0246121808886528, + -0.008098350837826729, + 0.025524888187646866, + 0.01610388420522213, + -0.029871854931116104, + -0.0327337346971035, + 0.007870174013078213, + 0.006462437566369772, + -0.026607763022184372, + -0.0027207210659980774, + 0.006590062286704779, + -0.04161330312490463, + 0.005224867258220911, + -0.012476256117224693, + 0.021750299260020256, + -0.005174591206014156, + 0.04789397493004799, + -0.009722662158310413, + -0.008191169239580631, + -0.0017625709297135472, + 0.005785641260445118, + 0.01133150327950716, + -0.012963549233973026, + 0.014448634348809719, + 0.002248897450044751, + -0.0014831507578492165, + 0.020002231001853943, + -0.0524420440196991, + -0.02182764746248722, + 0.005325419828295708, + 0.037591200321912766, + -0.032022133469581604, + 0.0483890026807785, + 0.031387876719236374, + -0.014595595188438892, + -0.012236476875841618, + 0.006474039983004332, + 0.0038925455883145332, + 2.9972406991873868e-5, + 0.020450850948691368, + -0.010890618897974491, + 0.005499453283846378, + -0.034187883138656616, + 0.028000028803944588, + 0.012607747688889503, + -0.002827074844390154, + 0.010712718591094017, + 0.007162438705563545, + -0.009011059068143368, + 0.010480673983693123, + -0.0013410234823822975, + 0.008608848787844181, + 0.02786080352962017, + 0.014255263842642307, + -0.03851937875151634, + -0.005967409815639257, + 0.00886409729719162, + -0.0068221064284443855, + 0.0361989326775074, + 0.03561108559370041, + 0.00566575163975358, + 0.03437351807951927, + -0.006338680628687143, + 0.0353635735809803, + 0.017867421731352806, + 0.041149213910102844, + -0.03064533695578575, + 0.0010625701397657394, + -0.02340555004775524, + 0.006535918451845646, + -0.01983206532895565, + -0.033290643244981766, + -0.026360249146819115, + -0.01395360566675663, + -0.0012607747921720147, + -0.013296146877110004, + -0.012638687156140804, + -0.01898123510181904, + 0.03226964548230171, + 0.022987868636846542, + 0.006748626008629799, + 0.0036082910373806953, + -0.002929561072960496, + 0.01741880364716053, + -0.045449770987033844, + 0.010101668536663055, + 0.01741880364716053, + 0.014982336200773716, + 0.026313839480280876, + 0.0318983756005764, + 0.011339238844811916, + -0.011292829178273678, + -0.022214388474822044, + -0.028293952345848083, + 0.008098350837826729, + -0.019692838191986084, + 0.005638679955154657, + 0.01489725336432457, + 0.006938128732144833, + -0.006887852679938078, + -0.0076226601377129555, + -0.01857902482151985, + 0.012050841003656387, + 0.029717158526182175, + -0.009359125979244709, + -0.019538141787052155, + -0.015098358504474163, + 0.0018466870533302426, + -0.04458347335457802, + -0.011579018086194992, + -0.02009504847228527, + 0.008539235219359398, + -0.010612165555357933, + -0.021781237795948982, + -0.04662546515464783, + 2.4926648620748892e-5, + 0.010774596594274044, + -0.0035541474353522062, + 0.0021657480392605066, + -0.020280683413147926, + 0.010217689909040928, + 0.00846962258219719, + -0.012862997129559517, + -0.02634477987885475, + -0.01400774996727705, + -0.0010616033105179667, + 0.001775139942765236, + -0.027783455327153206, + -0.023266322910785675, + -0.01106852013617754, + -0.002297240076586604, + -0.0019801126327365637, + -0.01783648319542408, + 0.021580133587121964, + 0.021054165437817574, + -0.008175699040293694, + 0.013404433615505695, + 0.006470172666013241, + -0.012816588394343853, + 0.02634477987885475, + 0.001958841923624277, + 0.0032408873084932566, + -0.028293952345848083, + -0.005712160840630531, + 0.05680447816848755, + -0.0015169905964285135, + 0.017124880105257034, + -0.004107186570763588, + 0.0013352223904803395, + -0.027767984196543694, + -0.016011066734790802, + 0.022833174094557762, + 0.006744758691638708, + 0.009219898842275143, + 0.01961548998951912, + -0.014920457266271114, + 0.013133715838193893, + 0.011594487354159355, + 0.011416587047278881, + 0.01910499297082424, + -0.009444208815693855, + 0.01741880364716053, + -0.0015140899922698736, + 0.001615609391592443, + 0.022013282403349876, + -0.003049450693652034, + 0.0014957197709009051, + 0.01794476993381977, + -0.04811054840683937, + -0.01977018639445305, + -0.01550056878477335, + 0.02224532701075077, + 0.013358024880290031, + -0.022492840886116028, + -0.005263541359454393, + 0.017558028921484947, + -0.009753601625561714, + 0.03678677976131439, + 0.018377920612692833, + 0.0193525068461895, + 0.009591170586645603, + 0.03749838098883629, + -0.012329294346272945, + -0.013551395386457443, + 0.014533717185258865, + 0.05383431166410446, + -0.0014299738686531782, + 0.0094983521848917, + 0.0017509687459096313, + 0.003233152674511075, + 0.0033085669856518507, + -0.021626541391015053, + 0.004149727988988161, + -0.0017761068884283304, + -0.06503432244062424, + -0.0035193406511098146, + -0.05151386559009552, + -0.0037610537838190794, + -0.0011921282857656479, + -0.004961883649230003, + -0.001544062397442758, + -0.041829876601696014, + -0.018238693475723267, + 0.0031944785732775927, + -0.028680693358182907, + -0.010202220641076565, + -0.0267624594271183, + -0.0023668534122407436, + -0.017403332516551018, + 0.0046795629896223545, + 0.01678454875946045, + -0.04668734222650528, + 0.0011737581808120012, + -0.00752597488462925, + -0.003571550827473402, + 0.004575143102556467, + -0.018548086285591125, + 0.005201662890613079, + 0.0025698922108858824, + -0.007912715896964073, + -0.00920442957431078, + -0.032022133469581604, + -0.004265750292688608, + -0.006354150362312794, + 1.9352144590811804e-5, + -0.01550056878477335, + -0.0008783849189057946, + -0.017480680719017982, + -0.00599448150023818, + 0.0015517972642555833, + -0.005093375686556101, + 0.0038326007779687643, + -0.03174367919564247, + 0.05058568716049194, + 0.03236246481537819, + 0.03151163458824158, + 0.02193593420088291, + -0.0422939658164978, + -0.011215480975806713, + 0.012514930218458176, + -0.03157351538538933, + -0.013783439993858337, + 0.016537034884095192, + -0.009343656711280346, + 0.02360665425658226, + 0.018903886899352074, + 0.000673895759973675, + -0.013961340300738811, + -0.008779014460742474, + 0.03335252031683922, + 0.012646421790122986, + -0.030970199033617973, + 0.0026530413888394833, + 0.006941996049135923, + 0.0005569066852331161, + -0.02485969476401806, + 0.005603873170912266, + 0.01794476993381977, + 0.020837590098381042, + 0.01946079358458519, + -0.01768178679049015, + 0.0057044257409870625, + 0.003967959899455309, + -0.025200026109814644, + -0.00045973804662935436, + -0.015167972072958946, + -0.009374595247209072, + -0.06689067929983139, + -0.017233166843652725, + 0.023328201845288277, + 0.01737239398062229, + 0.0006096001015976071, + -0.004586745053529739, + 0.01898123510181904, + 0.02700997330248356, + 0.002049725968390703, + -0.03319782391190529, + 0.0017683720216155052, + -0.0031500032637268305, + 0.0045171319507062435, + 0.018331510946154594, + -0.0019221014808863401, + 0.012468521483242512, + 6.012609810568392e-5, + -0.01715581864118576, + 0.0310630165040493, + -0.0021116044372320175, + -0.0008053875644691288, + 0.005433707498013973, + 0.035270754247903824, + -0.007123764604330063, + 0.00585138751193881, + 0.03793153166770935, + -0.03514700010418892, + 0.008980119600892067, + -0.01290940586477518, + -0.010248629376292229, + -0.00038384017534554005, + -0.005855254828929901, + -0.024875164031982422, + 0.0072204493917524815, + 0.0027574615087360144, + 0.0011950288899242878, + 0.013466312550008297, + 0.004501662217080593, + 0.03960224986076355, + -0.00536409392952919, + 0.030072959139943123, + 0.0025331517681479454, + -0.018377920612692833, + -0.008902771398425102, + 0.0033433737698942423, + -0.019337037578225136, + -0.0038944792468100786, + -0.02402433380484581, + 0.005410503130406141, + 0.016011066734790802, + 0.015980128198862076, + 0.013969075866043568, + 0.015253054909408092, + -0.026638701558113098, + 0.005487850867211819, + 0.004992823116481304, + 0.0036875728983432055, + -0.016753608360886574, + 0.0021058032289147377, + -0.003451661206781864, + 0.060610007494688034, + 0.015036479569971561, + 0.009041998535394669, + -0.0005907464656047523, + -0.010937027633190155, + 0.01768178679049015, + -0.012979019433259964, + 0.026453066617250443, + 0.03127958998084068, + -0.010743658058345318, + 0.01170277502387762, + 0.01779007352888584, + 0.008237577974796295, + 0.02182764746248722, + 0.019367976114153862, + -0.009111612103879452, + 0.01667626015841961, + 0.010859680362045765, + -0.007456361316144466, + -0.0031693403143435717, + -0.018300572410225868, + 0.0036082910373806953, + 0.003327904036268592, + -0.00933592114597559, + 0.002548621501773596, + -0.0008575975662097335, + 0.0058204480446875095, + -0.016026536002755165, + -0.018656373023986816, + -0.003412987105548382, + 0.0360751748085022, + 0.02072930335998535, + 0.04238678514957428, + 0.032084010541439056, + -0.004582877736538649, + 0.05231828615069389, + -0.012414378114044666, + 0.027195608243346214, + -0.006845311261713505, + 0.007162438705563545, + -0.010387856513261795, + -0.0067099519073963165, + 0.01427073311060667, + -0.00829172134399414, + -0.025524888187646866, + 0.0015653331065550447, + 0.0094983521848917, + -4.538161010714248e-5, + -0.012422112748026848, + -0.05104977637529373, + -0.0012279018992558122, + 0.00504696648567915, + -0.02738124504685402, + -0.00889503676444292, + -0.015802226960659027, + -0.0025524888187646866, + -0.005170723889023066, + -0.009173490107059479, + -0.01915140077471733, + -0.021796708926558495, + 0.017449742183089256, + 0.015044215135276318, + 0.018223224207758904, + -0.028603345155715942, + -0.018346980214118958, + 0.014471838250756264, + -0.007816030643880367, + -0.006555255502462387, + 0.0028116051107645035, + 0.028556935489177704, + 0.002925693755969405, + 0.0005206497153267264, + -0.01521438080817461, + 0.019847534596920013, + -0.009738131426274776, + 0.004049175418913364, + 0.03267185762524605, + -0.006810504477471113, + 0.00614917790517211, + -0.035703904926776886, + 0.018285101279616356, + 0.011811061762273312, + 0.00949061755090952, + 0.0030281799845397472, + -0.006512714084237814, + -0.003931219689548016, + -0.005162988789379597, + -0.005410503130406141, + 0.01382211409509182, + -0.022106099873781204, + -0.008601114153862, + -0.02312709577381611, + -0.004853596445173025, + -0.02123980224132538, + -0.006052492652088404, + -0.0395403727889061, + -0.025586767122149467, + -0.00873260572552681, + 0.0027574615087360144, + -0.024534832686185837, + -0.010240894742310047, + -0.007150836288928986, + 0.004138126038014889, + -0.020125988870859146, + 0.023142565041780472, + 0.0051668561063706875, + -0.02764422819018364, + 0.020218806341290474, + -0.006617133971303701, + -0.01772819459438324, + -0.00936686061322689, + -0.0023939250968396664, + 0.01621217094361782, + -0.0040027666836977005, + 0.0189967043697834, + 0.016645321622490883, + -0.0015972392866387963, + 0.0025157486088573933, + 0.017233166843652725, + 0.004567408002912998, + -0.011950288899242878, + 0.0224619023501873, + -0.0007464096415787935, + -0.001987847499549389, + -0.005259674042463303, + 0.00876354519277811, + 0.02419450134038925, + 0.006825974211096764, + 0.00936686061322689, + -0.008492826484143734, + 0.009351391345262527, + 0.02066742442548275, + -0.02014145813882351, + -0.016552504152059555, + 0.015964657068252563, + -0.004640888888388872, + 0.02575693279504776, + -0.0010103601962327957, + -0.04155142605304718, + -0.008701666258275509, + -0.00017475847562309355, + -0.010859680362045765, + 0.008655257523059845, + 0.0018263831734657288, + -0.009103876538574696, + 0.006864648312330246, + -0.039107222110033035, + 0.031867437064647675, + 0.010395591147243977, + -0.024828756228089333, + 0.0020091182086616755, + 0.0245503019541502, + 0.002217958215624094, + -0.01217459887266159, + -0.00014418178761843592, + 0.003859672462567687, + 0.006222658324986696, + -0.011416587047278881, + 0.007189510390162468, + 0.010434265248477459, + 0.013783439993858337, + 0.004691164940595627, + -0.009436474181711674, + -0.03756026178598404, + 0.006698349490761757, + 0.020327093079686165, + -0.007707742974162102, + -0.030444230884313583, + 0.005302215460687876, + 0.013706091791391373, + -0.006532051134854555, + 0.004787850193679333, + -0.009846419095993042, + -0.0027767985593527555, + 0.017542559653520584, + -0.006265199743211269, + 0.008021002635359764, + -0.02103869616985321, + 0.014912722632288933, + -0.001430940697900951, + -0.005615475587546825, + -0.023266322910785675, + -0.015670735388994217, + 0.011617692187428474, + 0.030877379700541496, + 0.016567973420023918, + -0.024101682007312775, + -0.017604438588023186, + -0.009088407270610332, + 0.012267416343092918, + -0.0024190633557736874, + -0.025880690664052963, + -0.013837583363056183, + 0.024457484483718872, + 0.008121555671095848, + 0.034806665033102036, + 0.0008411611197516322, + -0.010503878816962242, + -0.0037069099489599466, + 0.006690614856779575, + 0.0037417167332023382, + -0.006721553858369589, + 0.003339506220072508, + -0.043624356389045715, + 0.020342562347650528, + -0.01783648319542408, + 0.00057721056509763, + 0.009637579321861267, + -0.008570174686610699, + -0.02035803161561489, + -0.002411328488960862, + -0.002011051867157221, + -0.011091724038124084, + 0.02108510583639145, + 0.007583986036479473, + 0.011277359910309315, + -0.00802873820066452, + 0.0005994481616653502, + 0.01246078684926033, + 0.0031867437064647675, + 0.0014299738686531782, + 0.004548070952296257, + -0.026623232290148735, + -0.01072818785905838, + 0.027303896844387054, + -0.01046520471572876, + 0.010558022186160088, + 0.01737239398062229, + 0.021549193188548088, + 0.0006990339024923742, + -0.001160222222097218, + 0.017960239201784134, + 0.03236246481537819, + -0.01831604167819023, + 0.004374037962406874, + 0.007262991275638342, + 0.010318242944777012, + -0.007777356076985598, + 0.0014715484576299787, + 0.008956915698945522, + 0.010612165555357933, + -0.003552213776856661, + -0.03446633368730545, + 0.0016620183596387506, + -0.024875164031982422, + -0.00023542842245660722, + 0.001168923918157816, + -0.0009997248416766524, + -0.010844210162758827, + -0.001425139605998993, + 0.013744765892624855, + 0.020837590098381042, + -0.012453052215278149, + -0.0048922705464065075, + -0.019213279709219933, + 0.016861896961927414, + -0.0011553879594430327, + -0.007027079351246357, + -0.008137024939060211, + -0.020435379818081856, + 0.015608856454491615, + 0.0037842581514269114, + 0.015871839597821236, + 0.011594487354159355, + -0.025246435776352882, + -0.0048187896609306335, + 0.021270740777254105, + -0.0011814929312095046, + -0.003443926339969039, + -0.0202497448772192, + -0.024720467627048492, + 0.02555582858622074, + -0.02744312211871147, + 0.04848181828856468, + 0.0039060814306139946, + -0.0034226556308567524, + -0.017588969320058823, + -0.009127081371843815, + 0.02569505386054516, + -0.0016562172677367926, + 0.008941445499658585, + -0.005309950560331345, + -0.0072243171744048595, + 0.015461894683539867, + 0.00022926474048290402, + 0.013860788196325302, + 0.006361884996294975, + 0.020234275609254837, + 0.033074069768190384, + -0.02286411263048649, + -0.009444208815693855, + 0.013899462297558784, + 0.014440898783504963, + 0.006508846767246723, + 0.008005533367395401, + 0.025463011115789413, + -0.003708843607455492, + 0.020218806341290474, + -0.014657474122941494, + -0.007669068872928619, + -0.00552265765145421, + -0.005882326513528824, + 0.0022508311085402966, + 0.019275158643722534, + 0.014317141845822334, + 0.006748626008629799, + 0.01820775307714939, + -0.009606639854609966, + -0.012979019433259964, + -0.03830280154943466, + 0.003884810721501708, + -0.008779014460742474, + -0.03731274604797363, + -0.002138676354661584, + -0.01104531530290842, + -0.022307205945253372, + 0.008508296683430672, + 0.02198234386742115, + -0.0046795629896223545, + 0.0033781803213059902, + 0.002403593622148037, + 0.010890618897974491, + -0.00738288089632988, + -0.013056367635726929, + -0.008175699040293694, + -0.0013120179064571857, + 0.012290620245039463, + 0.007286195643246174, + 0.0033820478711277246, + -0.012708300724625587, + 0.006443100515753031, + -0.003879009513184428, + 0.02564864605665207, + 0.00022298020485322922, + 0.008407743647694588, + -0.012236476875841618, + -0.01489725336432457, + 0.03166633099317551, + -0.02428731881082058, + -0.006303873844444752, + -0.011865206062793732, + 0.009096141904592514, + -0.00041332916589453816, + 0.03310500830411911, + -0.004822656977921724, + 0.009359125979244709, + 0.007208847440779209, + 0.017588969320058823, + -0.0020748639944940805, + -0.013118245638906956, + -0.02581881172955036, + -0.01904311403632164, + 0.017697256058454514, + 0.0037745896261185408, + 0.002914091572165489, + -0.014804435893893242, + 0.015508303418755531, + 0.022307205945253372, + -0.007232051808387041, + 0.00767293618991971, + -0.01737239398062229, + 0.00414586067199707, + -0.009738131426274776, + -0.025246435776352882, + -0.019120462238788605, + 0.012770179659128189, + -0.009320451878011227, + -0.006327078677713871, + 0.01700112223625183, + 0.02549394965171814, + 0.002550555160269141, + 0.008044207468628883, + -0.0021754165645688772, + 0.004037573467940092, + 0.049069665372371674, + -0.026360249146819115, + 0.010534817352890968, + -0.014479572884738445, + 0.010875149630010128, + -0.016026536002755165, + -0.02549394965171814, + -0.012553604319691658, + 0.0023069086018949747, + -0.0201878659427166, + -0.030444230884313583, + -0.022430961951613426, + 0.005944204982370138, + -0.029237600043416023, + 0.01652156375348568, + 0.03505418077111244, + 0.0075491792522370815, + -0.017325984314084053, + 0.032919373363256454, + -0.020760243758559227, + 0.015121563337743282, + 0.014696148224174976, + -0.002198621165007353, + 0.0031867437064647675, + -0.020265214145183563, + 0.002525417134165764, + 0.00261049997061491, + -0.013597804121673107, + -0.017650846391916275, + 0.012522664852440357, + 0.010890618897974491, + 0.010550287552177906, + 0.017604438588023186, + -0.014448634348809719, + -0.03011936880648136, + -0.02130167931318283, + 0.0038519378285855055, + -0.015067419037222862, + 0.002579560736194253, + -0.012043106369674206, + 0.005855254828929901, + -0.02529284358024597, + 0.007305532693862915, + -0.007750284392386675, + 0.005066303536295891, + -0.003648898797109723, + 0.011292829178273678, + -0.023219913244247437, + -0.023730412125587463, + 0.050183478742837906, + 0.0297480970621109, + 0.0029508317820727825, + 0.01836244948208332, + 0.018919356167316437, + 0.007305532693862915, + 0.004497794900089502, + -0.01746521145105362, + 0.011238685809075832, + -0.027505001053214073, + 0.0180375874042511, + 0.035642027854919434, + -0.030227655544877052, + -0.012151394039392471, + 0.016861896961927414, + 0.0336928516626358, + 0.01458012592047453, + 0.003927352372556925, + -0.03058345802128315, + -0.02397792600095272, + -0.006044757552444935, + -0.0018437864491716027, + -0.0002048517344519496, + -0.003540611360222101, + 0.007216582074761391, + -0.003403318580240011, + -0.013628743588924408, + -0.013559130020439625, + 0.003049450693652034, + 0.002434532856568694, + 0.011571282520890236, + -0.006327078677713871, + -0.0033569096121937037, + 0.002834809711202979, + 0.022585658356547356, + -0.017851952463388443, + 0.0060563599690794945, + -0.0013729296624660492, + -0.011153602972626686, + 0.005371829029172659, + -0.0024693396408110857, + 0.009769070893526077, + 0.014788965694606304, + -0.004277352709323168, + -0.006435365881770849, + -0.010372386313974857, + 0.005112712737172842, + 0.005213265307247639, + 4.0517134038964286e-5, + 0.006671277806162834, + -0.0015198910841718316, + 0.01581769622862339, + -0.0058243153616786, + 0.0033665781375020742, + -0.014255263842642307, + -0.007027079351246357, + -0.01287846639752388, + 0.00842321291565895, + 0.01873372122645378, + -0.010704983957111835, + -0.011865206062793732, + -0.018424328416585922, + 0.09578794986009598, + 0.0027767985593527555, + 0.005209397524595261, + -0.0018901954172179103, + 0.010666309855878353, + -0.009475148282945156, + 0.00534862419590354, + 0.0028251411858946085, + 0.011416587047278881, + -0.007928185164928436, + -0.017558028921484947, + -0.009769070893526077, + 0.01972377859055996, + 0.00997017603367567, + -0.008585643954575062, + 0.001604007207788527, + 0.010581227019429207, + 0.0003599105984903872, + 0.002850279211997986, + 0.003888678038492799, + -0.010179015807807446, + -0.02450389228761196, + -0.009165755473077297, + 0.014819905161857605, + 1.0612709957058541e-5, + 0.006226526107639074, + 0.009877358563244343, + -0.0007120863883756101, + 0.013412169180810452, + 0.03561108559370041, + -0.005936470348387957, + 0.0037842581514269114, + -0.0048922705464065075, + -0.018609965220093727, + -0.0041651977226138115, + 0.008477357216179371, + -0.013303881511092186, + 0.028943676501512527, + -0.004408844280987978, + 0.009823215194046497, + -0.004845861345529556, + -0.0012046974152326584, + 0.03151163458824158, + 0.02518455684185028, + -0.013829848729074001, + 0.0107513926923275, + -0.0013942003715783358, + -0.0012453051749616861, + 0.007928185164928436, + 0.010813270695507526, + 0.0051668561063706875, + -0.02957793138921261, + 0.01735692471265793, + 0.005298348143696785, + 0.007050283718854189, + -0.01553150825202465, + 0.017588969320058823, + -0.007614925038069487, + -0.007707742974162102, + -0.001956908032298088, + -0.0007517273188568652, + 0.0027033176738768816, + -0.0049812206998467445, + -0.020992286503314972, + -0.014843109995126724, + -0.006021553184837103, + -0.011888409964740276, + -0.004346965812146664, + 0.0015692005399614573, + 0.004358568228781223, + -0.021007757633924484, + 0.003861606353893876, + 0.00428895466029644, + -0.029995610937476158, + 0.0006971001857891679, + 0.009459678083658218, + 0.003026246326044202, + 0.02880444936454296, + 0.03078456223011017, + -0.0023765219375491142, + -0.0032099480740725994, + 0.010821006260812283, + -0.013713826425373554, + -0.022369084879755974, + -0.0063580176793038845, + -0.008879567496478558, + 0.017851952463388443, + -0.013860788196325302, + 0.006524316035211086, + -0.01673813909292221, + -0.012097250670194626, + -0.009227634407579899, + 0.0019153335597366095, + 0.0077348146587610245, + -0.009250838309526443, + 0.01212045457214117, + -0.017217697575688362, + -0.034187883138656616, + 0.0063580176793038845, + -0.003714644815772772, + 0.019646430388092995, + 0.0015672668814659119, + -0.010062994435429573, + -0.004254148341715336, + -0.00936686061322689, + 0.0028174063190817833, + 0.006713819224387407, + -0.0036237607710063457, + -0.002332046627998352, + 0.0013642279664054513, + 0.00082617491716519, + -0.013071836903691292, + -0.0008305257651954889, + -0.004826524294912815, + -0.023003339767456055, + 0.00829172134399414, + 0.013992279767990112, + -0.003788125468418002, + -0.018439797684550285, + -0.013435373082756996, + -0.006470172666013241, + 0.0003231702430639416, + -0.019646430388092995, + -0.01856355555355549, + 0.00491934223100543, + -0.001618509995751083, + -0.0053331549279391766, + -0.0029837049078196287, + -0.01031050831079483, + -0.0017413002206012607, + 0.013752500526607037, + 0.014564656652510166, + 0.014866313897073269, + -0.005743099842220545, + 0.010426530614495277, + -0.002185085089877248, + 0.012576809152960777, + 0.011950288899242878, + 0.004567408002912998, + -0.018223224207758904, + 0.015407751314342022, + -0.008608848787844181, + 0.01794476993381977, + 0.010689513757824898, + -0.010426530614495277, + 0.009946972131729126, + -0.010588961653411388, + -0.023513836786150932, + 0.013342555612325668, + 0.014541451819241047, + 0.005901663564145565, + -0.033445339649915695, + -0.0011157470289617777, + -0.0180994663387537, + 0.01208951510488987, + 0.012522664852440357, + -0.011842001229524612, + 0.037684015929698944, + -0.019739247858524323, + 0.005124314688146114, + -0.0023359141778200865, + 0.0017287310911342502, + -0.00799779873341322, + 0.011377912946045399, + -0.0063348133116960526, + -0.0026549752801656723, + 0.008268517442047596, + 0.011973493732511997, + 0.024039804935455322, + -0.010828740894794464, + -0.012754709459841251, + 0.006207189057022333, + 0.004783982876688242, + -0.03295031189918518, + 0.010372386313974857, + 0.00970719289034605, + 0.018393389880657196, + -0.0031790088396519423, + -0.01741880364716053, + 0.030042020604014397, + -0.0038442029617726803, + -0.009575700387358665, + 0.00901879370212555, + 0.012762444093823433, + 0.00038698245771229267, + -0.018919356167316437, + 0.01069724839180708, + -0.01704753190279007, + 0.003165472997352481, + -0.0070850905030965805, + 0.00658232718706131, + 0.014642003923654556, + -0.002260499633848667, + 0.004725971724838018, + -0.0012588411336764693, + -0.01338122971355915, + 0.012514930218458176, + 0.009691722691059113, + 0.02040444128215313, + -0.013613274320960045, + 0.004497794900089502, + -0.0012337029911577702, + 0.023204443976283073, + 0.005770171992480755, + 0.0045403363183140755, + -0.02062101662158966, + -0.019429855048656464, + -0.012422112748026848, + -0.003515473334118724, + -0.012955814599990845, + -0.00676796305924654, + -0.029516052454710007, + 0.02113151364028454, + 0.0038674073293805122, + 0.009243103675544262, + -0.004060777835547924, + 0.005561331752687693, + 0.02093040943145752, + 0.010704983957111835, + 0.01123095117509365, + 0.017093941569328308, + -0.0044939275830984116, + 0.004335363861173391, + -0.028108317404985428, + -0.0020149191841483116, + 0.01610388420522213, + 0.008214373141527176, + 0.011323768645524979, + -0.005758569575846195, + 0.003353042295202613, + 0.01290940586477518, + 0.0065204487182199955, + -0.010527082718908787, + 0.023513836786150932, + 0.007367411162704229, + 0.046718280762434006, + 0.012043106369674206, + -0.01366741769015789, + 0.007259123492985964, + -0.005998348817229271, + -0.02255471982061863, + 0.00443204864859581, + -0.02648400515317917, + -0.006907189730554819, + -0.009304982610046864, + -0.009003324434161186, + -0.0008522798889316618, + 0.0008450284949503839, + 0.007038681302219629, + -3.090904647251591e-5, + -0.007235919125378132, + -0.011749183759093285, + 0.006578459870070219, + 0.024101682007312775, + 0.022941460832953453, + -0.00043895075214095414, + -0.011733713559806347, + 0.002496411558240652, + -0.0023030410520732403, + -0.026159143075346947, + -0.0075723836198449135, + 0.007792825810611248, + -0.006037022918462753, + -0.02003316953778267, + -0.004830391611903906, + 0.032022133469581604, + -0.02476687729358673, + -0.0053795636631548405, + 0.010341447778046131, + 0.02549394965171814, + 0.011037580668926239, + -0.006160779856145382, + 0.0068955873139202595, + 0.0007410919643007219, + -0.006524316035211086, + 0.0019327368354424834, + 0.02419450134038925, + -0.0036875728983432055, + 0.015802226960659027, + -0.002960500307381153, + -0.004795585293322802, + -0.000921409809961915, + 0.0012095316778868437, + -0.022895051166415215, + 0.015871839597821236, + -0.03820998594164848, + 0.007758019026368856, + 0.02648400515317917, + -0.004969618283212185, + 0.024998921900987625, + -0.0009330120519734919, + -0.018161345273256302, + 0.00012907471682410687, + -0.00831492617726326, + 0.003720445791259408, + 0.004845861345529556, + -0.011300564743578434, + -0.017588969320058823, + 0.017434272915124893, + 3.9822210965212435e-5, + -0.0010877082822844386, + -0.003324036719277501, + -0.00033549757790751755, + -0.01014807727187872, + 0.019924882799386978, + 0.01882653869688511, + 0.019661899656057358, + -0.003873208537697792, + -0.016800018027424812, + 0.01516023650765419, + -0.011083989404141903, + -0.011107194237411022, + -0.01046520471572876, + 0.002237295266240835, + -0.0013796975836157799, + -0.01737239398062229, + -0.006493377033621073, + 0.03310500830411911, + -0.008051942102611065, + -0.0006284536793828011, + -0.012832057662308216, + 0.009142550639808178, + 0.013543660752475262, + -0.003575418144464493, + 0.008438683114945889, + -0.007730947341769934, + 0.003312434535473585, + 0.002738124458119273, + 0.01062763575464487, + -0.03233152627944946, + 0.009034263901412487, + -0.007328737061470747, + -0.01540001668035984, + 0.003805528860539198, + -0.01757350005209446, + 0.0194143857806921, + 0.0029160252306610346, + -0.01536907721310854, + 0.005035364534705877, + 0.005615475587546825, + -0.025509418919682503, + -0.0010161612881347537, + -0.026298370212316513, + -0.015980128198862076, + -0.011114928871393204, + -0.004258015658706427, + -0.0027439254336059093, + -0.012074045836925507, + 0.013837583363056183, + 0.01385305356234312, + -0.004795585293322802, + 0.005855254828929901, + 0.00799779873341322, + 0.010681779123842716, + -0.012483990751206875, + -0.010790066793560982, + 0.028572406619787216, + 0.013365759514272213, + -0.004582877736538649, + -0.01704753190279007, + -0.012097250670194626, + 0.0232972614467144, + -0.008400009013712406, + -0.016072945669293404, + 0.011756918393075466, + 0.0018805268919095397, + -3.891578671755269e-5, + 0.005453044548630714, + -0.05559784919023514, + 0.012135924771428108, + -0.006176249589771032, + -0.022415492683649063, + -0.01777460426092148, + -0.0048187896609306335, + -0.008121555671095848, + 0.011934819631278515, + -0.0024538699071854353, + 0.007096692454069853, + -0.018594494089484215, + -0.02376135066151619, + 0.01277791429311037, + 0.0007908848347142339, + 0.017743665724992752, + -0.01133150327950716, + -0.003703042631968856, + 0.019166871905326843, + 0.020651955157518387, + 0.035177938640117645, + 0.02470499835908413, + -0.007990064099431038, + -0.009351391345262527, + -0.00999338086694479, + 0.017821013927459717, + 0.016800018027424812, + -0.011710509657859802, + 0.0223381444811821, + -0.011880675330758095, + 0.009041998535394669, + 0.004312159027904272, + 0.005878459196537733, + 0.012963549233973026, + 0.008400009013712406, + 0.01867184229195118, + 0.01972377859055996, + 0.022585658356547356, + -0.022384554147720337, + 0.0060563599690794945, + -0.009668518789112568, + 0.008655257523059845, + -0.0043547009117901325, + 0.00597901176661253, + -0.004927076864987612, + -0.0137989092618227, + -0.003327904036268592, + 0.02161107212305069, + 0.016598911955952644, + 0.01521438080817461, + 0.01429393794387579, + 0.009699457325041294, + -0.008485091850161552, + 0.023776819929480553, + -0.008670727722346783, + 0.007804428227245808, + 0.006632603704929352, + -0.010766861960291862, + 1.5023971172922757e-5, + 0.018718251958489418, + 0.00068839848972857, + 0.004896137863397598, + -0.0032234841492027044, + 0.0005264508072286844, + -0.012012166902422905, + 0.005104977637529373, + 0.016660790890455246, + -0.024117153137922287, + -0.002488676691427827, + 0.02900555543601513, + -0.018192283809185028, + 0.014464103616774082, + -0.004381772596389055, + -0.006671277806162834, + -0.01212045457214117, + 0.00369144044816494, + -0.00012327361037023365, + 0.00965304858982563, + -0.024411074817180634, + -0.004010501317679882, + 0.0232972614467144, + 0.0012491726083680987, + -0.012623217888176441, + -0.010944763198494911, + 0.006253597792237997, + -0.020342562347650528, + 0.013435373082756996, + -0.006729288958013058, + -0.0074331569485366344, + 0.0037726559676229954, + -0.01240664254873991, + 0.023730412125587463, + -0.026112735271453857, + -0.0100939329713583, + -0.0012984820641577244, + -0.009923767298460007, + -0.02055913768708706, + -0.0035212745424360037, + 0.004169065039604902, + 0.004567408002912998, + 0.010604430921375751, + 0.00032824621303007007, + 0.0013758301502093673, + -0.003012710250914097, + 0.021626541391015053, + 0.00986188929527998, + 0.006702216807752848, + 0.020698364824056625, + 0.02354477532207966, + -0.012762444093823433, + 0.01805305853486061, + 0.001604007207788527, + 0.002440334064885974, + 0.0014290070394054055, + 0.009575700387358665, + -0.004308291710913181, + -0.018455268815159798, + 0.01667626015841961, + -0.017604438588023186, + 0.003799727652221918, + 0.013775705359876156, + -0.000682597397826612, + 0.002635638229548931, + 0.005248071625828743, + 0.015570182353258133, + -0.008253047242760658, + 0.008098350837826729, + 0.015121563337743282, + -0.005132049787789583, + 0.019213279709219933, + 0.002954699331894517, + 0.012027637101709843, + 0.012832057662308216, + 0.0027516603004187346, + 0.004505529534071684, + 0.007065753452479839, + -0.009065203368663788, + 0.009111612103879452, + -0.000827625161036849, + -0.0005240336759015918, + -0.0007077355403453112, + 0.013744765892624855, + -0.014680678024888039, + 0.01700112223625183, + -0.027566879987716675, + -0.017063001170754433, + 0.018486207351088524, + -0.008678462356328964, + 0.020528199151158333, + -0.005402768030762672, + -0.00999338086694479, + 0.02093040943145752, + 0.013721561059355736, + 0.008717136457562447, + -0.02250831015408039, + -0.014471838250756264, + -0.009444208815693855, + -0.00459061237052083, + 0.006234260741621256, + 0.0244884230196476, + -0.001231769216246903, + 0.0011611890513449907, + -0.023328201845288277, + -0.015918249264359474, + 0.01768178679049015, + -0.0018176814774051309, + -0.015492834150791168, + 0.02082212083041668, + 0.0144254295155406, + 0.013512721285223961, + 0.006949731148779392, + 0.02858787588775158, + -0.0028251411858946085, + 0.006176249589771032, + -0.013419903814792633, + -0.006930394098162651, + -0.0006521415780298412, + -0.004389507230371237, + -0.004010501317679882, + 0.007046416401863098, + 0.01673813909292221, + -0.0033665781375020742, + -0.0008068378665484488, + -0.01242984738200903, + 0.004965750966221094, + 0.02386963926255703, + -0.0006037989514879882, + 0.028943676501512527, + -0.016506094485521317, + 0.0024925440084189177, + 0.016011066734790802, + -0.006837576162070036, + 0.01534587237983942, + 0.011285094544291496, + -8.459953824058175e-5, + 0.006802769377827644, + 0.0014396423939615488, + -0.025725994259119034, + -0.0046563586220145226, + 0.028603345155715942, + -0.00829172134399414, + 0.005634812638163567, + 0.018269632011651993, + -0.0011573216179385781, + 0.0007700974820181727, + -0.011501669883728027, + 0.01056575682014227, + -0.020311623811721802, + 0.00019312865333631635, + -0.032238706946372986, + -0.002368787070736289, + -0.0055922712199389935, + -0.004176800139248371, + 0.00040583606460131705, + -0.009119346737861633, + -0.003105528187006712, + -0.011919349431991577, + -0.004346965812146664, + 0.0159491878002882, + -0.0001053264204529114, + -0.014085098169744015, + 0.02779892459511757, + -0.015175706706941128, + 0.03053704835474491, + -0.007746417075395584, + -0.020002231001853943, + -0.00939006544649601, + 0.012917140498757362, + 0.00986188929527998, + 0.0024577374570071697, + -0.007870174013078213, + -0.02219891920685768, + -0.02345195785164833, + -0.0048419940285384655, + 0.0006806636811234057, + 0.004973486065864563, + 0.004080114886164665, + 0.005317685194313526, + 0.010039789602160454, + -0.0021367426961660385, + -0.012159128673374653, + 0.012313825078308582, + 0.030181247740983963, + 0.004648623522371054, + -0.007816030643880367, + 0.013180124573409557, + -0.02382322959601879, + 0.025942569598555565, + -0.00970719289034605, + 0.0019772120285779238, + -0.012607747688889503, + 0.021471844986081123, + -0.006578459870070219, + -0.007645864505320787, + 0.012112719938158989, + -0.0013816312421113253, + 0.000434358196798712, + 0.002198621165007353, + 0.0020806652028113604, + -0.013628743588924408, + 0.011880675330758095, + 0.022755825892090797, + -0.010101668536663055, + -0.010078463703393936, + 0.009142550639808178, + -0.00630774162709713, + -0.0122751509770751, + -0.013582334853708744, + -0.0018080129520967603, + -0.020744772627949715, + 0.017387863248586655, + 0.010805536061525345, + -0.01398454513400793, + 0.0032892299350351095, + -0.008075146935880184, + -0.0011843935353681445, + -0.007150836288928986, + 0.02413262240588665, + 0.01217459887266159, + -0.0031035945285111666, + 0.006315476261079311, + -0.0028966881800442934, + 0.0011399183422327042, + -0.018346980214118958, + 0.01667626015841961, + -0.01915140077471733, + -0.0016629851888865232, + 0.009985646232962608, + 0.00768453860655427, + -0.020914938300848007, + -0.00923536904156208, + 0.030614396557211876, + -0.009343656711280346, + -0.025787873193621635, + -0.029021024703979492, + -0.002357184886932373, + 0.007150836288928986, + -0.01217459887266159, + -0.026159143075346947, + 0.0032466885168105364, + -0.0001752418902469799, + -0.024674059823155403, + -0.019692838191986084, + 0.0015382613055408, + -0.005151386838406324, + -0.00277486490085721, + 0.019476262852549553, + 0.0033066333271563053, + 0.015562447719275951, + 0.011548078618943691, + -0.005016027484089136, + 0.01704753190279007, + -0.029887324199080467, + -0.004176800139248371, + 0.01002432033419609, + 0.014835374429821968, + 0.004548070952296257, + -1.2712591342278756e-5, + 0.012584543786942959, + 0.00045828777365386486, + -0.0032892299350351095, + -0.009142550639808178, + -0.0029953070916235447, + -0.030382351949810982, + -0.007185643073171377, + -0.003111329162493348, + -0.03121771290898323, + 0.018842007964849472, + -0.005108844954520464, + 0.018114935606718063, + -0.020450850948691368, + -0.004803319927304983, + -0.011625426821410656, + -0.021069634705781937, + -0.004470722749829292, + 0.007638129405677319, + -0.017325984314084053, + -0.003238953649997711, + -0.0044939275830984116, + -0.0009673352469690144, + 0.007839234545826912, + -0.0009441308211535215, + -0.003956357948482037, + 0.019213279709219933, + -0.004308291710913181, + -0.010194486007094383, + 0.0061066364869475365, + -0.008082881569862366, + -0.019754717126488686, + -0.01693924516439438, + -0.004706634674221277, + -0.025091739371418953, + 0.017635377123951912, + 0.0036875728983432055, + 0.0074099525809288025, + -0.00033598102163523436, + -0.00019131580484099686, + -0.019909413531422615, + 0.0071082948707044125, + 0.01599559746682644, + 0.031171303242444992, + -0.024720467627048492, + 0.015392281115055084, + 0.023142565041780472, + 0.012692831456661224, + -0.009382329881191254, + 0.022044222801923752, + -0.003418788081035018, + -0.0024209970142692327, + 0.0005182325839996338, + 0.012104985304176807, + 0.004675695672631264, + 0.027133729308843613, + -0.022601129487156868, + -0.021518254652619362, + -0.005793376360088587, + -0.001902764430269599, + 0.006976802833378315, + -0.007495035417377949, + -0.017124880105257034, + 0.001410636818036437, + -0.01851714588701725, + 0.007727080024778843, + -0.00447459053248167, + -0.015361342579126358, + 0.02628290094435215, + -0.010349182412028313, + 0.013040897436439991, + 0.0015343938721343875, + 0.02433372661471367, + -0.00554972980171442, + -0.00010623284470057115, + 0.005630945321172476, + 0.008461887016892433, + 0.000580111111048609, + -0.008222107775509357, + 0.009900562465190887, + 0.007402217946946621, + 0.004687297623604536, + -0.005228734575212002, + -0.008098350837826729, + -0.015106093138456345, + 0.030305003747344017, + -0.0223381444811821, + 0.0076226601377129555, + -0.007162438705563545, + -0.02738124504685402, + 0.0030359148513525724, + -0.02597350813448429, + -0.006694482173770666, + -0.006203321274369955, + 0.0023069086018949747, + 0.017821013927459717, + -0.0032215502578765154, + -0.015655264258384705, + -0.011285094544291496, + -0.0065939296036958694, + -0.020017700269818306, + 0.023668533191084862, + 0.0014377087354660034, + 0.026561353355646133, + 0.0014995872043073177, + 0.0075955879874527454, + 0.01783648319542408, + -0.011919349431991577, + -0.02349836751818657, + 0.005410503130406141, + 0.031449757516384125, + 0.010604430921375751, + -0.004254148341715336, + -0.02360665425658226, + -0.027040911838412285, + -0.017341455444693565, + 0.010325977578759193, + -0.0006207188707776368, + -0.0215646643191576, + -0.015871839597821236, + -0.012576809152960777, + 0.028897268697619438, + -0.019120462238788605, + 0.014162445440888405, + 0.0008213406545110047, + -0.011215480975806713, + 0.006508846767246723, + 0.001262708567082882, + 0.0027477929834276438, + -0.006025420501828194, + -0.001973344711586833, + -0.013520455919206142, + 0.0023939250968396664, + -0.001914366614073515, + -0.002741991775110364, + 0.018223224207758904, + 0.0030165778007358313, + 0.015175706706941128, + 0.015740348026156425, + -0.007827632129192352, + -0.03573484346270561, + 0.029779037460684776, + 0.0026182348374277353, + 0.006648073438555002, + -0.018130406737327576, + -0.006802769377827644, + -0.0144563689827919, + -0.015291729010641575, + -0.00534862419590354, + -0.001658150926232338, + 0.002101935911923647, + -0.015833165496587753, + -0.0006477907299995422, + 0.003958291374146938, + 0.02512267790734768, + -0.004961883649230003, + 0.01471161749213934, + -0.005008292384445667, + 0.01658344268798828, + -0.009637579321861267, + 0.0016388138756155968, + 0.008283986710011959, + -0.006044757552444935, + -0.012917140498757362, + -0.0021599470637738705, + -0.023374609649181366, + 0.021224331110715866, + 0.01893482729792595, + 0.010032054968178272, + -0.005066303536295891, + -0.008338130079209805, + -0.004281220026314259, + -0.001831217436119914, + -0.016428746283054352, + -0.0014696147991344333, + -0.00537569634616375, + 0.005611608270555735, + 0.021177923306822777, + -0.02571052499115467, + -0.002494477666914463, + 0.00534862419590354, + -0.012692831456661224, + -0.02139449678361416, + -0.0070348139852285385, + -0.006025420501828194, + 0.004695032723248005, + -0.025463011115789413, + -0.005101110320538282, + -0.004385639913380146, + 0.01180332712829113, + -0.0079436544328928, + -0.019739247858524323, + 0.009877358563244343, + 0.005600005853921175, + 0.009506087750196457, + 0.012793383561074734, + -0.006508846767246723, + 0.0010886752279475331, + 0.0005593238165602088, + 0.010302773676812649, + -0.02880444936454296, + -0.009606639854609966, + 0.03363097459077835, + -0.013845317997038364, + -0.004532601684331894, + 0.026514945551753044, + 0.002324311761185527, + 0.001148620038293302, + 0.021440906450152397, + -0.005874591879546642, + -0.013845317997038364, + -0.007920450530946255, + 0.00997017603367567, + 0.0020709966775029898, + -0.014804435893893242, + -0.0021754165645688772, + 0.012259681709110737, + 0.0023339802864938974, + -0.014301672577857971, + -0.005472381599247456, + -0.008701666258275509, + -0.016923774033784866, + -0.02308068796992302, + -0.006303873844444752, + -0.0066828797571361065, + 0.008601114153862, + -0.022910522297024727, + 0.0021348088048398495, + 0.007081222720444202, + -0.0017171289073303342, + 0.012576809152960777, + 0.0034110532142221928, + 0.01185747142881155, + -0.019708307459950447, + -0.0017383996164426208, + -0.017635377123951912, + -0.018285101279616356, + 0.01148619968444109, + 0.014116036705672741, + 0.013659683056175709, + 0.00878675002604723, + 0.007127631921321154, + 0.004524866584688425, + -0.011215480975806713, + -0.004733706824481487, + -0.00658232718706131, + 0.018811069428920746, + 0.013938136398792267, + 0.0021966875065118074, + -0.01455692108720541, + -0.004900005180388689, + -0.0023668534122407436, + -0.0025389529764652252, + -0.012692831456661224, + 0.014912722632288933, + 0.012391173280775547, + 0.016304990276694298, + -0.0013864655047655106, + -0.007580118253827095, + -0.0032737604342401028, + 0.001848620711825788, + -0.00993923656642437, + 0.0008194069378077984, + -0.0122442115098238, + 0.010449734516441822, + -0.004095584619790316, + -0.013922666199505329, + -0.0029392295982688665, + 0.0254475399851799, + 0.0067099519073963165, + 0.010217689909040928, + 0.007328737061470747, + -0.0014879850205034018, + -0.0018669909331947565, + -0.02266300655901432, + -0.009421003982424736, + -0.01641327701508999, + -0.020218806341290474, + 0.0005003458354622126, + -0.007348074112087488, + 0.026035387068986893, + -0.0032602243591099977, + 0.0018360516987740993, + -0.026406656950712204, + -0.015546977519989014, + 0.010674044489860535, + 0.007727080024778843, + 0.012832057662308216, + -0.011153602972626686, + 0.014201119542121887, + 0.008624318055808544, + 0.01977018639445305, + -0.02318897470831871, + 0.005723762791603804, + -0.007274593226611614, + 0.020853061228990555, + -0.028371300548315048, + 0.005615475587546825, + 0.0023030410520732403, + -0.023699471727013588, + 0.015198910608887672, + 0.008430948480963707, + 0.002059394493699074, + 0.010898354463279247, + 0.01857902482151985, + 0.0008024870185181499, + -0.006729288958013058, + -0.036693960428237915, + -0.004424314014613628, + -0.00020726886577904224, + -0.00891824159771204, + -0.01814587600529194, + 0.013914931565523148, + 0.007251388859003782, + 0.01031050831079483, + -0.0030977933201938868, + 0.003801661543548107, + 0.006880117580294609, + -0.025215495377779007, + -0.008779014460742474, + -0.011896145530045033, + -0.009537026286125183, + 0.029825445264577866, + 0.011524873785674572, + -0.017635377123951912, + -0.0008005533018149436, + 0.006214923691004515, + 0.0026723784394562244, + -0.027829863131046295, + 0.003184810047969222, + -0.013621008954942226, + 0.020079579204320908, + 0.013899462297558784, + 0.021425437182188034, + 0.0020033170003443956, + -0.0022430962417274714, + 0.022214388474822044, + 0.03042876161634922, + -0.0006666443659923971, + -0.012445316649973392, + -0.0030281799845397472, + -0.003904147772118449, + -0.007286195643246174, + -0.013242002576589584, + -0.005487850867211819, + -0.012437582015991211, + 0.011548078618943691, + 0.0016784548060968518, + 0.01704753190279007, + -0.008098350837826729, + -0.005135917104780674, + 0.00554972980171442, + -0.02397792600095272, + 0.026298370212316513, + 0.014773496426641941, + -0.004876800812780857, + -0.001942405360750854, + -0.011725978925824165, + 0.005743099842220545, + 0.008516031317412853, + -0.022724885493516922, + -0.02481328509747982, + 0.003256357042118907, + -0.00894918106496334, + 0.015632061287760735, + -0.021162454038858414, + -0.01862543448805809, + -0.016351398080587387, + -0.02198234386742115, + -0.004497794900089502, + 0.008392274379730225, + 0.021471844986081123, + 8.967550820671022e-5, + 0.0039292857982218266, + 0.015678469091653824, + 0.007696140557527542, + 0.01904311403632164, + 0.003923484589904547, + 0.007823765277862549, + -0.02071383409202099, + -0.005275143776088953, + 0.00444365106523037, + -0.01704753190279007, + 0.018950296565890312, + -0.005023762118071318, + 0.00599448150023818, + -0.015779022127389908, + 0.03282655403017998, + -0.0077116102911531925, + -0.005839785095304251, + -0.008871832862496376, + 0.00878675002604723, + 0.016552504152059555, + 0.010318242944777012, + 0.006098901387304068, + 0.0071082948707044125, + 0.017759134992957115, + -0.01046520471572876, + -0.007533709518611431, + -0.007340339012444019, + -0.009088407270610332, + -0.001575968461111188, + 0.0280154999345541, + -0.0013342555612325668, + -0.00014019351510796696, + -0.014688413590192795, + -0.007966859266161919, + -0.022941460832953453, + 0.00799779873341322, + 0.020651955157518387, + -0.0072475215420126915, + -0.0065436530858278275, + 0.012182333506643772, + -0.00030431660707108676, + -0.010333712212741375, + -0.0033414398785680532, + -0.0058243153616786, + -9.384505392517895e-5, + -0.004374037962406874, + 0.00025065633235499263, + -0.009196694940328598, + 0.02376135066151619, + 0.003958291374146938, + 0.0024983452167361975, + 0.0030552519019693136, + -0.022740354761481285, + -0.019584551453590393, + -0.0030185114592313766, + -0.01998676173388958, + 0.00550718791782856, + 0.0001678696571616456, + 0.005685088690370321, + -0.01521438080817461, + -0.016134822741150856, + 0.023219913244247437, + 0.0008020036038942635, + -0.003387848846614361, + -0.012638687156140804, + -0.027814393863081932, + -0.028866328299045563, + 0.002411328488960862, + 0.015918249264359474, + -0.022229857742786407, + -0.010797801427543163, + -0.0037784569431096315, + 0.01915140077471733, + 0.007402217946946621, + -0.0022740354761481285, + 0.014340346679091454, + 0.001658150926232338, + 0.026994504034519196, + 0.009034263901412487, + -0.01455692108720541, + -0.014688413590192795, + 0.014340346679091454, + -0.036167994141578674, + 0.0006564924260601401, + -0.004211606457829475, + 0.009359125979244709, + -0.007893378846347332, + -0.004331496078521013, + -0.023204443976283073, + 0.009057467803359032, + 0.007266858592629433, + 0.013922666199505329, + -0.00014067694428376853, + -0.012716035358607769, + 0.005789509043097496, + 0.011346973478794098, + -0.025834280997514725, + 0.015175706706941128, + 0.02957793138921261, + 0.002161880722269416, + 0.017403332516551018, + 0.00014671977260150015, + 0.004265750292688608, + 0.0005907464656047523, + -0.009745866991579533, + -0.016815487295389175, + -0.005971277132630348, + -0.014889518730342388, + 0.016196701675653458, + -0.018192283809185028, + -0.0020632618106901646, + 0.015384546481072903, + 0.004118788987398148, + -0.014773496426641941, + -0.015291729010641575, + -0.0008938545361161232, + -0.00999338086694479, + 0.006512714084237814, + 0.020218806341290474, + 0.016196701675653458, + 0.0007149869343265891, + -0.007723212707787752, + -0.007421554997563362, + -0.01568620465695858, + -0.0013642279664054513, + -0.007158570922911167, + -0.019445324316620827, + 0.012839792296290398, + 0.007019344251602888, + 0.00550718791782856, + -0.02281770296394825, + 0.011316034011542797, + 6.423521699616686e-5, + 0.024534832686185837, + -0.013767970725893974, + -0.02167295105755329, + 0.005874591879546642, + -0.005959674715995789, + 0.019584551453590393, + -0.01256133895367384, + -0.005584536120295525, + 0.003933153115212917, + 0.01882653869688511, + -0.014920457266271114, + -0.0012984820641577244, + -0.0025950304698199034, + 0.00447459053248167, + -0.01683095656335354, + -0.006392824463546276, + -0.00662486907094717, + -0.00035120893153361976, + -0.003351108403876424, + 0.017635377123951912, + -0.003991164267063141, + 0.009614374488592148, + -0.011455261148512363, + -0.01904311403632164, + -0.004068512469530106, + 0.0211469829082489, + 0.0007348073995672166, + 0.006133708171546459, + 0.027242017909884453, + -0.008856362663209438, + -0.0032466885168105364, + 0.0024384004063904285, + -0.015392281115055084, + -0.019863003864884377, + 0.019692838191986084, + -0.016985652968287468, + 0.020234275609254837, + -0.013868522830307484, + -0.0037745896261185408, + 0.008222107775509357, + -0.010743658058345318, + -0.006369620095938444, + -0.0055922712199389935, + 0.0074989027343690395, + 0.008384538814425468, + 0.012290620245039463, + -0.006864648312330246, + 0.014000014401972294, + -0.004056910518556833, + 0.004374037962406874, + -0.012979019433259964, + -0.0020555269438773394, + 0.003407185897231102, + 0.0018331510946154594, + -0.016567973420023918, + -0.006760227959603071, + 0.0036643685307353735, + -0.008183433674275875, + -0.00802873820066452, + -0.023312732577323914, + 0.02632930874824524, + -0.003935087006539106, + -0.003064920427277684, + 0.005785641260445118, + 0.013141450472176075, + 0.0021889526396989822, + -0.021533723920583725, + 0.004524866584688425, + 0.011617692187428474, + 0.005886193830519915, + 0.007042549084872007, + -0.022647537291049957, + 0.013087306171655655, + 0.03415694087743759, + 0.012754709459841251, + -0.004811054561287165, + 0.0015537309227511287, + -0.016877366229891777, + 0.0004041440843138844, + 0.012716035358607769, + -0.004586745053529739, + 0.011996697634458542, + 0.013891727663576603, + -0.029082903638482094, + -0.006238128058612347, + -0.03403318673372269, + -0.018176814541220665, + -0.011060785502195358, + 0.003503871150314808, + 0.010983437299728394, + -0.0079745939001441, + 0.0010596696520224214, + -0.00770000834017992, + -0.02202875167131424, + 0.001049034297466278, + 0.025153618305921555, + 0.061507247388362885, + 0.027628758922219276, + 0.012600013054907322, + 0.003339506220072508, + -0.001305249985307455, + -0.04653264582157135, + -0.00292376009747386, + -0.01647515594959259, + -0.031078485772013664, + -0.014061893336474895, + 0.005758569575846195, + -0.013775705359876156, + 0.009111612103879452, + 0.003014644142240286, + -0.018594494089484215, + 0.01440222468227148, + 0.0011882609687745571, + -0.009351391345262527, + -0.01242984738200903, + -0.011269625276327133, + 0.006810504477471113, + 0.009946972131729126, + -0.00920442957431078, + -0.00550718791782856, + 0.022013282403349876, + -0.008299455977976322, + 0.011524873785674572, + -0.012808852829039097, + 0.009668518789112568, + -0.0021676819305866957, + 0.0317746177315712, + 0.000982804922387004, + -0.029825445264577866, + 0.006044757552444935, + 0.0046563586220145226, + 0.021889526396989822, + -0.008771279826760292, + 0.026050856336951256, + 0.004822656977921724, + 0.000928661203943193, + -0.028819920495152473, + -0.004180667456239462, + 0.001751935575157404, + -0.0194143857806921, + 0.0072204493917524815, + 0.003449727315455675, + 0.01044199988245964, + -0.00023095673532225192, + -0.004153595305979252, + -0.00040922005428001285, + -0.00034033184056170285, + 0.0009837717516347766, + -0.025261905044317245, + -0.007897245697677135, + -0.011903880164027214, + 0.015021010302007198, + 0.012940345332026482, + -0.010333712212741375, + -0.021379027515649796, + 0.011795592494308949, + 0.0034245892893522978, + -0.005762436892837286, + 0.012383438646793365, + 0.02775251492857933, + 0.003426522947847843, + 0.006504979450255632, + -0.0037494513671845198, + 0.0020942010451108217, + 0.007100559771060944, + -0.013914931565523148, + 0.005035364534705877, + -0.021580133587121964, + -0.023946987465023994, + -0.013891727663576603, + -0.019863003864884377, + -0.022106099873781204, + -0.026839807629585266, + -0.03168180212378502, + -0.013009958900511265, + 0.009730396792292595, + 0.000732390268240124, + -0.006957465782761574, + -0.016614381223917007, + 0.00857790932059288, + 0.005371829029172659, + -0.0009421971044503152, + -0.003660500980913639, + 0.007204980123788118, + 4.381047256174497e-5, + 0.017387863248586655, + -0.025261905044317245, + 0.0018302504904568195, + -0.005089507903903723, + -0.0035928215365856886, + 0.011934819631278515, + -0.0079745939001441, + -0.009173490107059479, + 0.006276802159845829, + 0.006037022918462753, + 0.002210223348811269, + 0.0017045597778633237, + 0.006914924364537001, + 0.003917683847248554, + 0.015461894683539867, + -0.016335928812623024, + -0.02821660414338112, + 0.0008474456262774765, + -0.005383430980145931, + -0.0058436524122953415, + 0.021440906450152397, + -0.012638687156140804, + -0.0006729288725182414, + -0.0008295588777400553, + 0.015624325722455978, + 0.01621217094361782, + 0.0027400581166148186, + -0.0011186476331204176, + 0.011927084065973759, + 0.01636686734855175, + 0.015461894683539867, + -0.021642012521624565, + 0.013102776370942593, + 0.017759134992957115, + 0.0006052492535673082, + 0.0006995173171162605, + -0.006535918451845646, + 0.019863003864884377, + 0.014951396733522415, + -0.011393382214009762, + -0.006675145123153925, + 0.012197802774608135, + 0.005986746866255999, + 0.016769077628850937, + -0.0028908869717270136, + -0.01363647822290659, + -0.0006187851540744305, + 0.006957465782761574, + 0.004992823116481304, + 0.023359140381217003, + 0.006539785768836737, + -0.02529284358024597, + 0.027628758922219276, + 0.0061723822727799416, + -0.006230393424630165, + -0.02202875167131424, + 0.0020033170003443956, + -0.02817019633948803, + 0.006934261415153742, + 0.013009958900511265, + 0.014355815947055817, + -0.00980774499475956, + -0.019337037578225136, + -0.0038403356447815895, + -0.007901113480329514, + 0.0007159538217820227, + -0.006114371120929718, + -0.012801118195056915, + 0.02827848307788372, + -0.020311623811721802, + -0.0011892277980223298, + -0.004196137189865112, + 0.00018865696620196104, + 0.006129840854555368, + 0.0224000234156847, + 0.0019975160248577595, + -0.00816022977232933, + -0.0019578749779611826, + 0.02906743437051773, + -0.0025524888187646866, + 0.00010792483953991905, + 0.0014841175870969892, + 0.013365759514272213, + 0.00629613921046257, + 7.245346205309033e-5, + 0.008005533367395401, + 0.002312709577381611, + -0.006427631247788668, + -0.0007754151592962444, + -0.017032062634825706, + -0.0094983521848917, + 0.010233160108327866, + 0.032702796161174774, + 0.02004864066839218, + 0.0168464258313179, + -0.01366741769015789, + -0.003983429633080959, + 0.005774039309471846, + 0.011555813252925873, + 0.011300564743578434, + 0.013497252017259598, + -0.0013323219027370214, + 0.02742765285074711, + -0.012692831456661224, + -0.019383445382118225, + -0.0021000022534281015, + 0.006091166753321886, + 0.0046292864717543125, + 0.012499460950493813, + -0.03920004144310951, + 0.006419896148145199, + 0.009761336259543896, + -0.0020323225762695074, + 0.003372379345819354, + 0.010643105022609234 + ], + "180aaef6-1850-4f67-b268-11396da976f4": [ + -0.0024770561140030622, + -0.00868788082152605, + -0.006182538345456123, + 0.0140460804104805, + -0.051755521446466446, + -0.029853982850909233, + 0.029611529782414436, + 0.04060271009802818, + -0.03069448471069336, + 0.0322461798787117, + -0.017488906159996986, + 0.009205112233757973, + -0.007366514764726162, + -0.010562846437096596, + -0.007107898592948914, + -0.003863076213747263, + -0.06054846569895744, + 0.045128487050533295, + -0.02634650282561779, + -0.027203168720006943, + 0.0683392733335495, + -0.014813846908509731, + -0.0418957881629467, + 0.05447098985314369, + -0.00614212965592742, + -0.010304230265319347, + 0.009285930544137955, + -0.010385047644376755, + -0.01605035364627838, + 0.006841200869530439, + 0.02749411202967167, + 0.011322530917823315, + 0.048458170145750046, + -0.018313243985176086, + -0.0016032170969992876, + -0.03446057811379433, + -0.0037277068477123976, + 0.056184321641922, + -0.017989974468946457, + 0.01760205067694187, + -0.021578270941972733, + 0.024859461933374405, + 0.00785141997039318, + 0.004925826098769903, + -0.04461125656962395, + 0.02442304603755474, + 0.004675291944295168, + -0.009108131751418114, + 0.0020850913133472204, + -0.029255932196974754, + -0.013480357825756073, + 0.003236740594729781, + 0.020511480048298836, + 0.035559698939323425, + -0.013682401739060879, + 0.03672346845269203, + -0.0062876008450984955, + 0.06391047686338425, + 0.009164704009890556, + -0.03336146101355553, + 0.014466331340372562, + -0.013674319721758366, + 0.04231603816151619, + 0.013795546256005764, + 0.010554764419794083, + -0.03727302700281143, + -0.005083420313894749, + 0.00864747166633606, + -0.06691688299179077, + 0.012453976087272167, + 0.03219769150018692, + 0.05379212275147438, + -0.020058901980519295, + 0.012251932173967361, + -0.02662128210067749, + 0.000956677075009793, + 0.06510657072067261, + -0.025538329035043716, + -0.010894197970628738, + 0.026314176619052887, + -0.02817297913134098, + -0.003097330452874303, + -0.013399540446698666, + -0.002770019695162773, + 0.061906199902296066, + 0.03704673796892166, + -0.04571037366986275, + -0.05608734115958214, + -0.00817468948662281, + -0.019978083670139313, + -0.0030043902806937695, + -0.004376267082989216, + 0.02351788990199566, + -0.004776313900947571, + -0.03436359763145447, + 0.009091967716813087, + 0.0655914768576622, + -0.009940551593899727, + 0.007358432747423649, + -0.026685936376452446, + -0.009059641510248184, + 0.018959784880280495, + -0.04729439690709114, + 0.025489836931228638, + 0.013835955411195755, + -0.005253137089312077, + 0.030629830434918404, + -0.004127753432840109, + -0.01674538478255272, + 0.032407816499471664, + 0.024730153381824493, + -0.01824858970940113, + -0.02881951816380024, + -0.009294011630117893, + -0.0267182644456625, + -0.06879185140132904, + 0.007952441461384296, + -0.04335050284862518, + 0.00770594784989953, + -0.03998849540948868, + 0.08068818598985672, + 0.02269355207681656, + 0.0020477131474763155, + -0.0011082098353654146, + 0.00436818553134799, + 0.02579694427549839, + -0.0034387842752039433, + 0.00042909037438221276, + 0.014029917307198048, + 0.02282286062836647, + -0.0071402257308363914, + -0.01564626768231392, + -0.012898472137749195, + -0.027057696133852005, + 0.003939853049814701, + 0.04047340154647827, + -0.022709716111421585, + 0.05805928632616997, + -0.02269355207681656, + 0.05107665807008743, + -0.056701552122831345, + -0.036012277007102966, + -0.004360103979706764, + -0.018959784880280495, + 0.002551812445744872, + 0.015727084130048752, + -0.04179880768060684, + 0.0513029471039772, + -0.020155882462859154, + 0.022289464250206947, + -0.05062408000230789, + 0.004776313900947571, + 0.05634595826268196, + 0.003566071856766939, + 0.0019002213375642896, + -0.023404747247695923, + -0.009221276268362999, + 0.0071604298427701, + 0.008801025338470936, + -0.01470878440886736, + -0.004642965272068977, + -0.039632897824048996, + 0.011419512331485748, + -0.024326065555214882, + 0.029061971232295036, + 0.03074297495186329, + 0.05249904468655586, + 0.01557353138923645, + -0.048005592077970505, + 0.02484329789876938, + 0.03924497589468956, + -0.01852336898446083, + 0.04577502980828285, + 0.004719741642475128, + -0.004727823194116354, + -0.017909156158566475, + 0.01507246308028698, + 0.04231603816151619, + 0.0031640050001442432, + -0.0523374080657959, + -0.008231261745095253, + -0.050979673862457275, + -0.013819791376590729, + -0.0008162566809915006, + 0.0117104547098279, + 0.011314448900520802, + 0.043932389467954636, + 0.014522903598845005, + -0.009892061352729797, + -0.0036650733090937138, + 0.03387869521975517, + -0.03436359763145447, + 0.017505068331956863, + 0.04234836623072624, + -0.0023881569504737854, + -0.03669114410877228, + -0.016502931714057922, + -0.00627951929345727, + -0.017391925677657127, + 0.043059561401605606, + -0.026007069274783134, + -0.0578976534307003, + -0.06138896942138672, + 0.042380694299936295, + -0.029191279783844948, + 0.03226234391331673, + -0.01129828579723835, + -0.01539573259651661, + 0.038760069757699966, + -0.0517878495156765, + 0.03362007811665535, + -0.015371487475931644, + -0.016486769542098045, + -0.00782313384115696, + -0.014215797185897827, + -0.005693592596799135, + -0.006016862578690052, + -0.0016769630601629615, + 0.0137713011354208, + -0.0077827246859669685, + -0.03575365990400314, + 0.0091000497341156, + 0.017505068331956863, + -0.03943893685936928, + -0.04212207719683647, + -0.009334420785307884, + -0.0336524061858654, + 0.015226015821099281, + -0.0440940260887146, + -0.009075804613530636, + 0.03371705859899521, + 0.0413462296128273, + 0.009479892440140247, + -0.041507866233587265, + -0.033329132944345474, + -0.00450557516887784, + 0.015032053925096989, + 0.030856119468808174, + 0.009972878731787205, + -0.016511013731360435, + 0.02022053673863411, + 0.024665499106049538, + -0.0016890856204554439, + -0.0032650267239660025, + 0.018765822052955627, + 0.028383104130625725, + -0.036109257489442825, + 0.023679526522755623, + 0.03339378908276558, + -0.024487700313329697, + 0.02772040106356144, + 0.020737769082188606, + 0.0012173134600743651, + -0.030031781643629074, + -0.02469782531261444, + 0.04099063202738762, + 0.016155418008565903, + -0.027364803478121758, + -0.01962248794734478, + -0.0010526478290557861, + -0.007180634420365095, + -0.010417374782264233, + -0.010183004662394524, + -0.01449865847826004, + 0.04981590434908867, + -0.021465126425027847, + -0.0020204372704029083, + -0.03733768314123154, + 0.03132485970854759, + 0.02812448889017105, + -0.010942689143121243, + 0.007309942506253719, + -0.0006222947267815471, + -0.02030135504901409, + 0.0022507673129439354, + -0.022127829492092133, + 0.00796052347868681, + 0.009754671715199947, + -0.006097679957747459, + 0.017133308574557304, + 0.012316586449742317, + -0.006364377681165934, + 0.011330612935125828, + 0.04089365154504776, + -0.006089598406106234, + -0.015662429854273796, + 0.010118350386619568, + -0.002897307276725769, + -0.05165854096412659, + -0.04493452608585358, + -0.009625363163650036, + -0.01166196446865797, + 0.026184868067502975, + -0.016090763732790947, + 0.03662648797035217, + 0.03329680860042572, + -0.01301161665469408, + -0.019687142223119736, + -0.028851846233010292, + -0.014207715168595314, + -0.03520410135388374, + -0.02034984529018402, + 0.011589229106903076, + -0.024439210072159767, + 0.025602981448173523, + -0.004517697729170322, + 0.032003726810216904, + 0.013666238635778427, + -0.041184596717357635, + 0.022580407559871674, + 0.04522547125816345, + -0.01482192799448967, + 0.009067722596228123, + -0.0330381914973259, + -0.017230289056897163, + -0.020867077633738518, + 0.03004794381558895, + 0.007087694015353918, + -0.0055602435022592545, + -0.018361734226346016, + 0.00826358888298273, + -0.0041418964974582195, + -0.052078794687986374, + 0.016341296955943108, + 0.039632897824048996, + -0.029385240748524666, + 0.02337241917848587, + 0.019202236086130142, + -0.029853982850909233, + 0.0014446127461269498, + -0.0044732484966516495, + -0.05812394246459007, + -0.0418957881629467, + 0.0031155142933130264, + -0.0009592026472091675, + -0.07254178076982498, + -0.047391377389431, + -0.018830476328730583, + -0.015339160338044167, + -0.00013726345787290484, + -0.02561914548277855, + 0.027300149202346802, + 0.028286123648285866, + -0.01477343775331974, + 0.007633212488144636, + -0.019153745844960213, + 0.0031498619355261326, + 0.015460386872291565, + -0.018814312294125557, + -0.002125500002875924, + 0.0010001164628192782, + 0.009568790905177593, + 0.02159443497657776, + 0.01553312223404646, + 0.022612735629081726, + 0.007588762789964676, + 0.0017204023897647858, + -0.00724932923913002, + 0.026540465652942657, + 0.0413462296128273, + 0.00406309962272644, + -0.0034993975423276424, + -0.024309901520609856, + -0.019606323912739754, + -0.01724645309150219, + -0.007738274987787008, + 0.009496055543422699, + -0.01669689454138279, + 0.062326449900865555, + 0.01557353138923645, + -0.03924497589468956, + 0.02167525142431259, + 0.002005284186452627, + -0.025506000965833664, + -0.008166607469320297, + -0.017892993986606598, + 0.05282231420278549, + 0.02026902697980404, + -0.015985701233148575, + 0.01449865847826004, + -0.0018406184390187263, + -0.00360243977047503, + -0.005758246406912804, + -0.010279985144734383, + 0.0065340944565832615, + 0.019509343430399895, + 0.013868281617760658, + 0.012534793466329575, + -0.0041580600664019585, + -0.013682401739060879, + -0.027510274201631546, + 0.013342968188226223, + -0.019557833671569824, + -0.0032872515730559826, + -0.022176319733262062, + 0.03937428444623947, + 0.00967385433614254, + 0.013706646859645844, + 0.030775301158428192, + -0.005257178097963333, + -0.022208647802472115, + -0.021465126425027847, + -0.013545012101531029, + 0.008615144528448582, + 0.012550956569612026, + -0.01724645309150219, + 0.008978823199868202, + -0.023210784420371056, + 0.016276642680168152, + -0.014805764891207218, + 0.001344601041637361, + 0.00999712385237217, + 0.008118117228150368, + -0.0272678229957819, + 0.03604460135102272, + -0.014280451461672783, + 0.019784122705459595, + 0.027865871787071228, + -0.07739083468914032, + -0.017230289056897163, + 0.023614872246980667, + 0.02301682159304619, + -0.013092434033751488, + 0.02539285644888878, + -0.02589392475783825, + 0.01752123236656189, + 0.017488906159996986, + -0.014797682873904705, + -0.04726206883788109, + -0.021287327632308006, + -0.01323790568858385, + 0.02241877280175686, + -0.00492986710742116, + -0.008308038115501404, + -0.01408648956567049, + -0.028027506545186043, + 0.0017951586050912738, + -0.022903677076101303, + -0.014417841099202633, + -0.0179253201931715, + 0.013625829480588436, + 0.02597474306821823, + -0.012550956569612026, + -0.005665306467562914, + -0.00917278602719307, + -0.011702373623847961, + -0.028302285820245743, + 0.02085091359913349, + 0.0028023466002196074, + -0.013367213308811188, + 0.0011940784752368927, + 0.04144321009516716, + -0.045128487050533295, + 0.0019578037317842245, + 0.0021457045804709196, + -0.005410731304436922, + -0.02057613432407379, + -0.011379103176295757, + 0.007762520108371973, + -0.015888718888163567, + -0.034331273287534714, + -0.022063175216317177, + 0.0259262528270483, + -0.03507479280233383, + 0.02597474306821823, + -0.06433072686195374, + 0.011274040676653385, + 0.016389787197113037, + -0.0018729454604908824, + -0.009487973526120186, + -0.027461783960461617, + 0.009124294854700565, + -0.03905101493000984, + 0.014175388030707836, + -0.013294477947056293, + -0.012817654758691788, + -0.01065982785075903, + 0.010102186352014542, + 0.036012277007102966, + -0.01971946842968464, + -0.048684459179639816, + -0.0341373085975647, + -0.03717604652047157, + 0.007649376057088375, + -0.00034372691879980266, + -0.0007748377392999828, + -0.003731747856363654, + -0.015492714010179043, + 0.004711660090833902, + -0.015856392681598663, + 0.04221905767917633, + 0.01148416567593813, + 0.0008410070440731943, + 0.009124294854700565, + 0.005212728399783373, + -0.05611966922879219, + -0.02044682577252388, + -0.016430197283625603, + -0.015727084130048752, + -0.015678593888878822, + 0.03494548425078392, + -0.0256514735519886, + -0.004077242687344551, + 0.023307764902710915, + 0.008639390580356121, + 0.003539806231856346, + -0.00994863361120224, + -5.382571544032544e-5, + 0.005455181002616882, + 0.009956715628504753, + -0.004119671881198883, + -0.0021962153259664774, + -0.00781101081520319, + 0.0029558998066931963, + -0.017909156158566475, + 0.025150403380393982, + -0.03546271473169327, + 0.0015749309677630663, + 0.0234209094196558, + -0.010376966558396816, + 0.0028144691605120897, + -0.007750397548079491, + -0.008695962838828564, + 0.006344173103570938, + -0.028431594371795654, + -0.011904416605830193, + -0.004946030676364899, + 0.007613007910549641, + 0.03646485507488251, + 0.0017335352022200823, + -0.0038327695801854134, + 0.02744562178850174, + 0.004190387204289436, + 0.03201989084482193, + 0.01706865429878235, + -0.0133752953261137, + 0.00990014337003231, + 0.01065982785075903, + 0.018135445192456245, + 0.05004219338297844, + -0.03989151492714882, + 0.01594529114663601, + -0.018733495846390724, + -0.012534793466329575, + 0.007455413695424795, + 0.021141856908798218, + -0.013431867584586143, + 0.01769903115928173, + -0.006829078309237957, + 0.02964385598897934, + -0.02424524910748005, + 0.023614872246980667, + 0.004917744547128677, + 0.008760616183280945, + 0.01957399770617485, + -0.029401404783129692, + 0.02772040106356144, + -0.02026902697980404, + -0.039406608790159225, + -0.011476084589958191, + 0.019331544637680054, + 0.015565449371933937, + -0.00048793561290949583, + -0.01829707995057106, + -0.035430390387773514, + -0.005932004190981388, + -0.01644635945558548, + 0.029837818816304207, + -0.005043011624366045, + 0.013730891980230808, + 0.012187277898192406, + 0.012429730966687202, + 0.05382445082068443, + 0.0014840111834928393, + -0.00812619924545288, + 0.03513944521546364, + -0.019056765362620354, + -0.005220809951424599, + -0.0071240621618926525, + -0.020883239805698395, + 0.022305628284811974, + -0.03205221891403198, + -0.013593502342700958, + -0.01124979555606842, + -0.008502000011503696, + -0.009350583888590336, + -0.041184596717357635, + -0.016228152438998222, + -0.020559970289468765, + 0.029385240748524666, + 0.0012365076690912247, + 0.03517177328467369, + 0.02131965570151806, + 0.021077202633023262, + -0.01512095332145691, + 0.03253712132573128, + 0.0009915296686813235, + 0.0056531839072704315, + 0.007774643134325743, + -0.005168278701603413, + -0.010878034867346287, + 0.020107392221689224, + 0.003919648472219706, + -0.015557367354631424, + -0.003256944939494133, + 0.01596953719854355, + 0.004465166479349136, + 0.010554764419794083, + -0.009407156147062778, + 0.009334420785307884, + 0.007511985953897238, + 0.012082215398550034, + 0.011920580640435219, + 0.01634937897324562, + 0.01729494333267212, + -0.0029417567420750856, + 0.006849282421171665, + 0.02497260645031929, + 0.0003247853019274771, + -0.03256944939494133, + 0.020705442875623703, + -0.036109257489442825, + 0.04057038202881813, + -0.013569257222115993, + 0.026491975411772728, + 0.02414826676249504, + -0.01697167381644249, + -0.02154594473540783, + -0.020382171496748924, + -0.002644752385094762, + 0.02854473888874054, + -0.014870419166982174, + 0.03627089038491249, + -0.03572133183479309, + 0.018814312294125557, + 0.019703304395079613, + 0.007742315996438265, + 0.020915567874908447, + -0.009390993043780327, + -0.0108861168846488, + -0.03177743777632713, + 0.0010566887212917209, + 0.022176319733262062, + 0.03827516362071037, + -0.015460386872291565, + -0.011839763261377811, + -0.01724645309150219, + -0.00040989622357301414, + 0.0346868671476841, + 0.010433538816869259, + -0.039083339273929596, + 0.013569257222115993, + 0.02492411434650421, + 0.02254808135330677, + 0.0026487933937460184, + -0.05705714970827103, + 0.004586393013596535, + 0.013819791376590729, + -0.009786998853087425, + -0.016777710989117622, + 0.019590159878134727, + -0.010781053453683853, + 0.007600885350257158, + 0.025780780240893364, + 0.02039833553135395, + 0.006073434837162495, + 0.021885378286242485, + 0.011314448900520802, + 0.030258070677518845, + 0.005661265458911657, + -0.029514549300074577, + 0.005043011624366045, + 0.014935072511434555, + 0.027203168720006943, + 0.01058709155768156, + -0.014716865494847298, + -0.001078913570381701, + -0.01292271725833416, + -0.006845241878181696, + -0.023679526522755623, + -0.018862802535295486, + -0.017084818333387375, + -0.026007069274783134, + 0.01669689454138279, + 0.03856610879302025, + -0.00985973421484232, + -0.005426894873380661, + 0.016729220747947693, + -0.01102350652217865, + -0.00655429856851697, + 0.009043477475643158, + 0.02154594473540783, + -0.0017133308574557304, + 0.01824858970940113, + 0.010061778128147125, + 0.018555697053670883, + -0.010692154057323933, + 0.01967097818851471, + 0.03142184019088745, + -0.02917511574923992, + -0.02524738572537899, + -0.01363391149789095, + -0.012946962378919125, + -0.016438277438282967, + 0.005883513484150171, + 0.010255740024149418, + -0.025376692414283752, + -0.021384308114647865, + 0.006659361533820629, + -0.04706810787320137, + -0.005572366062551737, + 0.004178264643996954, + -0.008421182632446289, + -0.006538135465234518, + 0.031179388985037804, + -0.00859898142516613, + -0.01470878440886736, + -0.0037640747614204884, + -0.022127829492092133, + 0.025231221690773964, + -0.030759138986468315, + 0.043803080916404724, + 0.002618486760184169, + -0.038727741688489914, + -0.03206838294863701, + 0.006020903121680021, + 0.01702016405761242, + -0.017682867124676704, + 0.01022341288626194, + -0.0023235029075294733, + 0.050106845796108246, + -0.008219138719141483, + -0.02164292521774769, + 0.004703578073531389, + -0.0007152348407544196, + -0.02812448889017105, + -0.0034347434993833303, + -0.006982631515711546, + -0.0027114269323647022, + -0.009835489094257355, + 0.011314448900520802, + -0.00411158986389637, + 0.00770594784989953, + -0.015476549975574017, + 0.044708237051963806, + -0.0019517424516379833, + 0.002616466488689184, + 0.0176505409181118, + 0.005309709347784519, + 0.01418347004801035, + 0.030904609709978104, + -0.01884664036333561, + 0.035850640386343, + 0.0034569683484733105, + -0.0057178377173841, + -0.0019264869624748826, + -0.01787682995200157, + 0.0009551617549732327, + -0.031001590192317963, + 0.03746699169278145, + -0.01539573259651661, + 0.016713058575987816, + -0.004440921358764172, + -0.023178458213806152, + -0.02067311480641365, + -0.005289504770189524, + -0.03201989084482193, + 0.03109857253730297, + 0.02867404744029045, + -0.03242398053407669, + 0.02456851862370968, + -0.004214632324874401, + 0.01939619891345501, + 0.0013052024878561497, + 0.00048768307897262275, + -0.010627500712871552, + 0.021206511184573174, + -0.0048854174092411995, + -0.032779574394226074, + 0.0018082914175465703, + -0.002725569996982813, + -0.03724070265889168, + 0.0051844422705471516, + -0.02776889130473137, + 0.017359597608447075, + -0.0018527409993112087, + 0.034331273287534714, + -0.00506725674495101, + -0.025813108310103416, + -0.003374130465090275, + -0.0137713011354208, + 0.010975015349686146, + -0.022176319733262062, + 0.013245987705886364, + 0.00618657935410738, + -0.018878966569900513, + 0.028059834614396095, + -0.02382499724626541, + -0.03494548425078392, + -0.025602981448173523, + 0.02739712968468666, + -0.03791956976056099, + 0.03924497589468956, + 0.025958579033613205, + -0.012300422415137291, + -0.016341296955943108, + 0.003220577258616686, + -0.006222947034984827, + -0.0029255934059619904, + 0.006231028586626053, + -0.019186073914170265, + 0.008251465857028961, + -0.028237633407115936, + 0.025004932656884193, + 0.012332749553024769, + 0.005632979329675436, + 0.002226521959528327, + -0.01912141963839531, + -0.0038489331491291523, + -0.0018749658484011889, + 0.007548354100435972, + 0.0220470130443573, + 0.017682867124676704, + 0.018135445192456245, + -0.03572133183479309, + -0.0032852310687303543, + 0.009496055543422699, + -0.006020903121680021, + 0.04687414690852165, + 0.042510002851486206, + -0.00674826093018055, + 0.03526875376701355, + -0.01013451348990202, + 0.02149745263159275, + 0.015662429854273796, + 0.04234836623072624, + -0.017941484227776527, + -0.008704043924808502, + -0.03151882439851761, + 0.01664840430021286, + -0.0011728638783097267, + -0.039859186857938766, + -0.02089940384030342, + -0.014991644769906998, + -0.0038812600541859865, + -0.0220470130443573, + -0.012260014191269875, + -0.007217002101242542, + 0.037628624588251114, + 0.013294477947056293, + 0.006073434837162495, + -0.004194427747279406, + -0.004119671881198883, + 0.003913586959242821, + -0.048134900629520416, + 0.009544545784592628, + 0.0010324434842914343, + 0.01929921843111515, + 0.016276642680168152, + 0.034557562321424484, + 0.010837625712156296, + -0.003907525911927223, + -0.021141856908798218, + -0.01594529114663601, + 0.008857597596943378, + -0.013981426134705544, + 0.000818782253190875, + 0.012712592259049416, + -0.003277149284258485, + 0.007447332143783569, + -0.01148416567593813, + -0.03129253536462784, + 0.008029217831790447, + 0.029336750507354736, + -0.012534793466329575, + -0.011839763261377811, + -0.02469782531261444, + -0.009302093647420406, + -0.02589392475783825, + -0.010158758610486984, + -0.014854255132377148, + 0.010296149179339409, + -0.01301161665469408, + -0.013189415447413921, + -0.04726206883788109, + 0.0187496580183506, + 0.005297586787492037, + -0.0031316778622567654, + -0.010643663816154003, + -0.027041533961892128, + 0.0021941950544714928, + 0.007273574359714985, + -0.02017204649746418, + -0.03250479698181152, + -0.024067450314760208, + -0.004683373961597681, + -0.011516492813825607, + -0.03837214782834053, + -0.010562846437096596, + -0.033458441495895386, + -0.003608501050621271, + -0.017181798815727234, + -0.02272588014602661, + 0.007516026962548494, + 0.0029619610868394375, + -0.026653610169887543, + 0.020640788599848747, + 0.006117884535342455, + -0.011872089467942715, + 0.02392197772860527, + 0.0016618097433820367, + -0.004307572264224291, + -0.01724645309150219, + -0.012817654758691788, + 0.03966522589325905, + 0.01369856484234333, + 0.01769903115928173, + -0.0031902706250548363, + -0.013132843188941479, + -0.025813108310103416, + -0.028383104130625725, + 0.01807079091668129, + 0.0062431516125798225, + 0.02359870821237564, + 0.02392197772860527, + -0.010999261401593685, + 0.0041580600664019585, + 0.016179662197828293, + 0.01614733599126339, + 0.019654814153909683, + -0.008809106424450874, + 0.009180867113173008, + 0.019816448912024498, + -0.011880171485245228, + 0.0190244372934103, + -0.0009687996935099363, + 0.0012799471151083708, + 0.00985973421484232, + -0.046583205461502075, + -0.019913431257009506, + -0.02557065524160862, + 0.03649717941880226, + 0.0012900492874905467, + -0.028981152921915054, + 0.010805298574268818, + 0.0028185101691633463, + -0.011063914746046066, + 0.04406169801950455, + 0.006804833188652992, + 0.009625363163650036, + 0.026330338791012764, + 0.019234564155340195, + -0.013577339239418507, + -0.03172894939780235, + 0.004234836902469397, + 0.04587201029062271, + 0.006073434837162495, + -0.001318335416726768, + 0.0028245714493095875, + 0.019509343430399895, + 0.0007278625853359699, + -0.010538601316511631, + -0.002897307276725769, + -0.004671250935643911, + -0.0655914768576622, + -0.0005803706590086222, + -0.0407966710627079, + -0.00868788082152605, + 0.006752301473170519, + -0.009003069251775742, + -0.020915567874908447, + -0.029110461473464966, + -0.0013516725739464164, + -0.005952208302915096, + -0.017941484227776527, + 0.0032933128532022238, + -0.013852118514478207, + -0.0024204838555306196, + -0.01829707995057106, + 0.012494384311139584, + 0.0009268756257370114, + -0.028463920578360558, + -0.016155418008565903, + -0.0070553673431277275, + -0.0012658040504902601, + 0.008000931702554226, + -0.021287327632308006, + 0.0036812368780374527, + 0.010473947040736675, + -0.0019103235099464655, + -0.005681470036506653, + -0.02209550328552723, + 0.0018537512514740229, + -0.0025235263165086508, + -0.007237206678837538, + -0.015880636870861053, + -0.012575201690196991, + -0.00981124397367239, + -0.01719796285033226, + -0.005742082837969065, + -0.002005284186452627, + 0.0041418964974582195, + 0.0021497453562915325, + 0.05867350101470947, + 0.029853982850909233, + 0.02117418311536312, + 0.02304914966225624, + -0.033458441495895386, + 0.002089132321998477, + 0.014102652668952942, + -0.027364803478121758, + -0.008841433562338352, + 0.014741110615432262, + 0.005632979329675436, + 0.008437346667051315, + 0.02561914548277855, + 0.0020790300332009792, + -0.016341296955943108, + 0.008004972711205482, + 0.028528574854135513, + 0.003234720090404153, + -0.03627089038491249, + 0.00976275373250246, + 0.015549286268651485, + -0.0025962619110941887, + -0.015791738405823708, + 0.006845241878181696, + 0.016042273491621017, + 0.017715195193886757, + 0.022855186834931374, + -0.016890855506062508, + 0.016090763732790947, + 0.011104323901236057, + -0.013124761171638966, + 0.011508410796523094, + -0.014781519770622253, + 0.001212262432090938, + -0.05744507536292076, + -0.018038464710116386, + 0.021465126425027847, + 0.019606323912739754, + 0.010247658006846905, + -0.010045614093542099, + 0.006618952844291925, + 0.007318024057894945, + -0.015379569493234158, + -0.029352914541959763, + 0.0137713011354208, + -0.0019032519776374102, + 0.007912032306194305, + 0.03552737087011337, + 0.0012344872811809182, + 0.010207249782979488, + 0.003028635634109378, + -0.01003753300756216, + 0.03179360181093216, + -0.01251054834574461, + 0.020753933116793633, + 0.00012551966938190162, + 0.038404472172260284, + -0.014757274650037289, + 0.004133814945816994, + 0.047456033527851105, + -0.022984495386481285, + 0.018135445192456245, + -0.003937832545489073, + -0.01957399770617485, + 0.014692620374262333, + 0.0012567120138555765, + -0.012801490724086761, + 0.0075079454109072685, + 0.0027114269323647022, + -0.011581147089600563, + 0.005907758604735136, + 0.00045459839748218656, + 0.039180319756269455, + -0.006998795084655285, + 0.020705442875623703, + 0.011904416605830193, + -0.006926059257239103, + -0.005463262554258108, + -0.001796168857254088, + -0.008817188441753387, + -0.012938880361616611, + -0.010142595507204533, + 0.004634883254766464, + 0.023453237488865852, + 0.012656020000576973, + 0.0025053422432392836, + 0.016777710989117622, + -0.029482221230864525, + 0.016187744215130806, + -0.00019762403098866343, + 0.005228891968727112, + -0.013706646859645844, + -0.0054753851145505905, + 0.009285930544137955, + 0.08107610791921616, + 0.001625441829673946, + 0.002673038514330983, + -0.00832420215010643, + 0.01687469333410263, + -0.011734699830412865, + -0.01193674374371767, + 0.024600844830274582, + 0.02621719427406788, + -0.01306010689586401, + -0.0056127747520804405, + -0.0011627617059275508, + 0.0001346116332570091, + 0.02666977234184742, + 0.010627500712871552, + -0.004182305186986923, + 0.027283985167741776, + -0.0026346503291279078, + -0.00576228741556406, + -0.019477015361189842, + -0.007564517669379711, + -0.00010449449473526329, + -0.0015183587092906237, + -0.0017608111957088113, + -0.005301627796143293, + 0.0041418964974582195, + 0.001408244832418859, + 0.0007617048686370254, + -0.03442825376987457, + 0.0008000931702554226, + 0.023032985627651215, + 0.0048005590215325356, + 0.04451427608728409, + 0.029239770025014877, + -0.011290203779935837, + 0.05822092294692993, + 0.005822900682687759, + 0.017488906159996986, + -0.005814818665385246, + 0.011411430314183235, + -0.0005374363390728831, + -0.0019153746543452144, + 0.012437812052667141, + -0.02144896239042282, + -0.009285930544137955, + 0.008275710977613926, + 0.01079721748828888, + 7.14729685569182e-5, + -0.007916073314845562, + -0.03837214782834053, + 0.0069179777055978775, + 0.003618603339418769, + -0.024277575314044952, + -0.023711852729320526, + -0.009972878731787205, + 0.002620507264509797, + -0.0017234330298379064, + -0.011969070881605148, + -0.02547367475926876, + -0.01807079091668129, + 0.02227330207824707, + 0.015654347836971283, + 0.007281656377017498, + -0.02392197772860527, + -0.016430197283625603, + 0.015080544166266918, + -0.005964330863207579, + -0.008437346667051315, + 0.012631773948669434, + 0.0004177254159003496, + -0.0014072345802560449, + 0.02249959111213684, + -0.008198934607207775, + 0.019331544637680054, + -0.01829707995057106, + 0.00019787657947745174, + 0.016955509781837463, + -0.0134965218603611, + -0.00749178184196353, + -0.034557562321424484, + 0.007051326334476471, + 0.013876363635063171, + 0.019557833671569824, + 0.003533744951710105, + -0.010433538816869259, + -0.0007788785733282566, + -0.011136651039123535, + -0.0006955355638638139, + 0.015912964940071106, + -0.02144896239042282, + -0.01839406229555607, + -0.013795546256005764, + -0.0022245014552026987, + -0.0111608961597085, + -0.014304696582257748, + -0.030128762125968933, + -0.015331078320741653, + -0.007596844341605902, + 0.006420949939638376, + -0.023760342970490456, + -0.02304914966225624, + -0.010150677524507046, + 0.011928661726415157, + -0.011556901969015598, + 0.03227850794792175, + -0.006251233164221048, + -0.018652677536010742, + 0.020753933116793633, + -0.011880171485245228, + -0.02094789408147335, + -0.01031231228262186, + 0.00367719610221684, + 0.004218673333525658, + -0.0023255234118551016, + 0.009083886630833149, + 0.012478221207857132, + -0.0022608693689107895, + 0.0027013246435672045, + 0.013868281617760658, + 0.004675291944295168, + -0.0075766402296721935, + 0.017084818333387375, + -0.012090297415852547, + 0.010304230265319347, + -0.009431401267647743, + -0.0033559463918209076, + 0.010199167765676975, + 0.011508410796523094, + 0.0023618913255631924, + 0.009358665905892849, + 0.004238877445459366, + 0.019590159878134727, + -0.004925826098769903, + -0.021190347149968147, + 0.007916073314845562, + 0.0076614986173808575, + 0.023857323452830315, + 0.00013107586710248142, + -0.031260207295417786, + -0.01644635945558548, + 0.010457783937454224, + -0.004154019057750702, + 0.008340365253388882, + 0.013932935893535614, + -0.007875665090978146, + -0.0009329369640909135, + -0.031114734709262848, + 0.037984222173690796, + 0.012041806243360043, + -0.02214399352669716, + 0.0015173484571278095, + 0.016357460990548134, + -0.010425456799566746, + -0.006736138369888067, + 0.0036812368780374527, + -0.007499863393604755, + 0.009795079939067364, + -0.022984495386481285, + 0.005956249311566353, + -0.0021174184512346983, + 0.013019698671996593, + 0.0030953099485486746, + -0.022257138043642044, + -0.039180319756269455, + -0.0014789601555094123, + 0.012567120604217052, + -0.0013011617120355368, + -0.01829707995057106, + -0.004246959462761879, + 0.020188210532069206, + -0.009479892440140247, + 0.004384349100291729, + -0.0009379880502820015, + 0.010191085748374462, + 0.012664101086556911, + -0.004937949124723673, + 0.015678593888878822, + -0.026265686377882957, + 0.02744562178850174, + -0.022063175216317177, + -0.013957181014120579, + -0.03274725005030632, + -0.017682867124676704, + 0.008978823199868202, + 0.025182731449604034, + 0.009455646388232708, + -0.020091228187084198, + -0.025004932656884193, + -0.007940318435430527, + 0.0014425922418013215, + 0.00803729984909296, + -0.02277437038719654, + -0.017165636643767357, + 0.02277437038719654, + 0.00702304020524025, + 0.01237315870821476, + -0.005770368967205286, + -0.00697454996407032, + 0.00868788082152605, + 0.001111240591853857, + 0.017278781160712242, + 0.0035963784903287888, + 0.002206317614763975, + -0.03069448471069336, + 0.020737769082188606, + -0.011944825761020184, + -0.004109569359570742, + -0.0023618913255631924, + -0.00492986710742116, + -0.012106460519134998, + -0.007309942506253719, + 0.0051844422705471516, + -0.015282588079571724, + 0.016115007922053337, + -0.008388855494558811, + 0.0065340944565832615, + -0.013181333430111408, + -0.008776780217885971, + 0.00832420215010643, + -0.008768698200583458, + -0.015250260941684246, + 0.0026811202988028526, + -0.012502466328442097, + -0.008720207959413528, + 0.004776313900947571, + -0.013043943792581558, + 0.01589680090546608, + 0.021206511184573174, + 0.023663362488150597, + 0.004206550773233175, + -0.0036974004469811916, + 0.009544545784592628, + 0.03791956976056099, + -0.014240042306482792, + 0.006631075404584408, + -0.010207249782979488, + -0.007544313091784716, + 0.0008031238685362041, + -0.009778916835784912, + 0.00020949410100001842, + 0.0060653528198599815, + -0.002369973110035062, + -0.0234209094196558, + 0.0029154911171644926, + -0.03226234391331673, + -0.00019421454635448754, + 0.005471344571560621, + -0.0028346735052764416, + -0.007600885350257158, + -0.0010486069368198514, + 0.013221741653978825, + 0.012849981896579266, + -0.0027073861565440893, + -0.01065982785075903, + -0.016810039058327675, + 0.021933868527412415, + -0.0038731785025447607, + -0.007827173918485641, + 0.004606597125530243, + -0.010021368972957134, + 0.009318256750702858, + 0.00046899402514100075, + 0.011767026968300343, + 0.02392197772860527, + -0.03827516362071037, + 0.007649376057088375, + 0.020640788599848747, + 0.0012839878909289837, + 0.0013557134661823511, + -0.021885378286242485, + -0.02424524910748005, + 0.020155882462859154, + -0.04066736251115799, + 0.037434663623571396, + 0.00112639379221946, + -0.005463262554258108, + -0.02419675700366497, + -0.018377898260951042, + 0.02419675700366497, + -0.0003894392866641283, + 0.008316120132803917, + 0.006994754076004028, + -0.00047707578050903976, + 0.0038994441274553537, + 0.005471344571560621, + 0.02392197772860527, + 0.003956016153097153, + 0.03630321845412254, + 0.017133308574557304, + -0.023792671039700508, + -0.005079379305243492, + 0.006526012439280748, + 0.0021113569382578135, + 0.0020325600635260344, + 0.01619582623243332, + 0.01962248794734478, + -0.008655553683638573, + 0.03837214782834053, + -0.027283985167741776, + -0.020964058116078377, + 0.006332050543278456, + 0.001015269779600203, + -0.012849981896579266, + 0.021028712391853333, + 0.02022053673863411, + 0.009463728405535221, + 0.022790532559156418, + -0.0005505691515281796, + 0.00288114370778203, + -0.038210511207580566, + -0.00320845446549356, + -0.012761082500219345, + -0.03019341640174389, + 0.001897190697491169, + 0.0026649569626897573, + -0.011492247693240643, + 0.009835489094257355, + -0.0011082098353654146, + -0.0060128215700387955, + 0.0015961455646902323, + 0.0038994441274553537, + 0.00981124397367239, + -0.016058435663580894, + -0.005394567735493183, + -0.009075804613530636, + 0.00617445632815361, + -0.001191047835163772, + 0.010441619902849197, + 0.0012183237122371793, + -0.006453277077525854, + 0.006049189250916243, + 0.011063914746046066, + 0.026976879686117172, + 0.004905621986836195, + -0.006194660905748606, + -0.004501534625887871, + -0.0024002795107662678, + 0.02401896007359028, + -0.016777710989117622, + -0.0011829660506919026, + -0.0035741536412388086, + -0.0013728871708735824, + -0.00668764766305685, + 0.024617008864879608, + -0.007221043109893799, + 0.000568753108382225, + -0.0029397362377494574, + 0.028851846233010292, + 0.0035963784903287888, + -0.008558572269976139, + -0.041378557682037354, + -0.006477522198110819, + 0.01363391149789095, + -0.015104789286851883, + 0.0033498851116746664, + -0.010756808333098888, + 0.017133308574557304, + 0.015056299045681953, + 0.0012375179212540388, + 0.012478221207857132, + 0.00497431680560112, + 0.001982049085199833, + -0.0023235029075294733, + -0.025134241208434105, + -0.005552161950618029, + 0.0035155611112713814, + -0.0013688462786376476, + 0.0057380422949790955, + 0.018717331811785698, + 0.02382499724626541, + -0.0035256631672382355, + 0.005709756165742874, + -0.0009607179672457278, + -0.007499863393604755, + 0.03449290618300438, + -0.02999945357441902, + 0.02332392893731594, + -0.019331544637680054, + 0.007103857584297657, + -0.027688072994351387, + -0.02594241499900818, + -0.01967097818851471, + 0.013932935893535614, + -0.02497260645031929, + -0.025538329035043716, + -0.01870116777718067, + 0.010473947040736675, + -0.013213660567998886, + 0.0259262528270483, + 0.02214399352669716, + 0.003592337714508176, + -0.019961921498179436, + 0.029158951714634895, + -0.01834557205438614, + 0.010304230265319347, + 0.0220470130443573, + 0.004727823194116354, + 0.0010425456566736102, + -0.01866884157061577, + 0.00841310154646635, + 0.018491042777895927, + -0.012163032777607441, + -0.02584543451666832, + 0.008340365253388882, + 0.01134677603840828, + 0.002089132321998477, + 0.017763685435056686, + -0.018377898260951042, + -0.02237028256058693, + -0.012890390120446682, + -0.00749178184196353, + -0.018959784880280495, + 0.0003874188696499914, + -0.0027760809753090143, + -0.0017446476267650723, + -0.014797682873904705, + 0.0011455880012363195, + -0.002125500002875924, + -0.0019547732081264257, + 0.013641992583870888, + 0.026588955894112587, + -0.029627693817019463, + -0.02346939966082573, + 0.04115226864814758, + 0.01512095332145691, + 0.010191085748374462, + 0.013989508152008057, + 0.002620507264509797, + 0.016987837851047516, + 0.004129773937165737, + -0.027380967512726784, + 0.005568325519561768, + -0.031114734709262848, + 0.007964564487338066, + 0.03607692942023277, + -0.023614872246980667, + -0.0171009823679924, + 0.011177059262990952, + 0.037305355072021484, + 0.01408648956567049, + 0.0023740138858556747, + -0.03282806649804115, + -0.01834557205438614, + -0.009568790905177593, + -0.0049702757969498634, + -0.005180401261895895, + 0.01120938640087843, + 0.012268095277249813, + 0.003269067732617259, + -0.007459454704076052, + -0.007039203774183989, + 0.013294477947056293, + 0.00011024011473637074, + 0.006315886974334717, + -0.0054430584423244, + 0.0018295060144737363, + 0.005604693200439215, + 0.009455646388232708, + -0.021303491666913033, + 0.010288067162036896, + 0.006582584697753191, + -0.017779849469661713, + 0.0007127092685550451, + -0.006340132560580969, + 0.013270232826471329, + 0.0176505409181118, + -0.00013600068632513285, + -0.009649609215557575, + -0.012704510241746902, + -0.0026265685446560383, + -0.004832886159420013, + 0.000589462579227984, + 0.002561914501711726, + 0.002923572901636362, + 0.013092434033751488, + -0.002268951153382659, + -0.00914853997528553, + -0.00678058760240674, + -0.0014466331340372562, + -0.007136184722185135, + -0.00015380579861812294, + 0.02474631741642952, + -0.01003753300756216, + -0.008437346667051315, + -0.011241713538765907, + 0.09736891835927963, + -0.009552627801895142, + 0.006954345386475325, + 0.006622993852943182, + 0.006222947034984827, + -0.011670046485960484, + -0.0012132726842537522, + -0.0028568983543664217, + 0.018280917778611183, + -0.004057038109749556, + -0.01934770867228508, + -0.024390719830989838, + 0.02859322912991047, + 0.007883746176958084, + -0.020656950771808624, + 0.007956482470035553, + 0.018959784880280495, + 0.006332050543278456, + 0.016583750024437904, + -0.0027235494926571846, + -0.00944756530225277, + -0.017359597608447075, + -0.010417374782264233, + 0.00367719610221684, + 0.0026124254800379276, + 0.010845707729458809, + 0.010570928454399109, + -0.0068856505677104, + 0.016414033249020576, + 0.028560902923345566, + 0.00020078096713405102, + 0.005059175193309784, + 0.002210358390584588, + -0.028108324855566025, + -0.005588529631495476, + 0.003315537702292204, + -0.014611802995204926, + 0.019978083670139313, + 2.1088315406814218e-5, + 0.007689784746617079, + -0.0024528109934180975, + -0.011152814142405987, + 0.036206237971782684, + 0.021158019080758095, + -0.01747274212539196, + 0.009819325990974903, + -0.009544545784592628, + -0.0025477714370936155, + 0.008663635700941086, + 0.026637446135282516, + 0.013545012101531029, + -0.01999424770474434, + 0.012122624553740025, + 0.0006182538345456123, + 0.015525040216743946, + -0.0051157474517822266, + 0.019363870844244957, + -0.010562846437096596, + -0.006190619897097349, + -0.00567338801920414, + 4.1482104279566556e-5, + -0.008089831098914146, + -0.010255740024149418, + -0.01356117520481348, + -0.012300422415137291, + -0.0026750590186566114, + -0.016042273491621017, + -0.013811709359288216, + -0.005426894873380661, + 0.0009622332872822881, + -0.014660293236374855, + 0.004901580978184938, + 0.007443291135132313, + -0.020689278841018677, + -0.002988226944580674, + 0.00232754391618073, + 0.001047596801072359, + 0.023954305797815323, + 0.03182592988014221, + -0.0009076814749278128, + 0.0009864785242825747, + 0.012195359915494919, + -0.0035680923610925674, + -0.018232427537441254, + 0.0018295060144737363, + -0.011516492813825607, + 0.022839024662971497, + -0.02624952234327793, + 0.0014537046663463116, + -0.017117144539952278, + -0.021238837391138077, + -0.012583283707499504, + 0.010158758610486984, + 0.004234836902469397, + -0.010061778128147125, + 0.007835255935788155, + -0.007212961558252573, + -0.01839406229555607, + -0.00020229628717061132, + -0.01440975908190012, + 0.01634937897324562, + 0.007875665090978146, + 0.0005672377883456647, + -0.0023194621317088604, + -0.0009869836503639817, + -0.0067927101626992226, + 0.011492247693240643, + 0.0007420055917464197, + -0.015363405458629131, + 0.006214865483343601, + 0.006675525102764368, + -0.0060815163888037205, + 0.0029356954619288445, + 0.0026770795229822397, + -0.025182731449604034, + 0.005265259649604559, + 0.008469673804938793, + 0.006982631515711546, + -0.019881103187799454, + -0.015306833200156689, + -0.011556901969015598, + 0.0051076654344797134, + -0.016907019540667534, + -0.023760342970490456, + -0.0029680223669856787, + 0.003141780151054263, + -0.01292271725833416, + -0.002535648876801133, + -0.009778916835784912, + 0.007184675429016352, + 0.01386020053178072, + 0.012777245603501797, + 0.018959784880280495, + -0.0069624269381165504, + 0.021335817873477936, + -0.00553599838167429, + -0.00391156692057848, + 0.022402608767151833, + 0.003533744951710105, + -0.02167525142431259, + 0.025506000965833664, + -0.005119788460433483, + -0.004497493617236614, + 0.00999712385237217, + -0.004497493617236614, + 0.010005205869674683, + -0.007613007910549641, + -0.024665499106049538, + 0.016729220747947693, + 0.0019487118115648627, + 0.005632979329675436, + -0.03659415990114212, + 0.002588180359452963, + -0.014838092029094696, + 0.010975015349686146, + 0.018280917778611183, + -0.011031587608158588, + 0.029110461473464966, + -0.01527450606226921, + 0.013068188913166523, + 0.0074836998246610165, + 0.000496775028295815, + -0.007212961558252573, + 0.015452304854989052, + -0.022208647802472115, + 0.0011859966907650232, + 0.0024326066486537457, + 0.016284724697470665, + 0.027429457753896713, + -0.005180401261895895, + -0.008239343762397766, + 0.018280917778611183, + 0.00483692716807127, + -0.03546271473169327, + -0.0029821654316037893, + 0.0051480745896697044, + 0.01166196446865797, + 0.000643004197627306, + -0.008841433562338352, + 0.01742425188422203, + -0.005253137089312077, + -0.01815160922706127, + 0.011177059262990952, + 0.017909156158566475, + -0.005257178097963333, + -0.030662156641483307, + 0.0010006215889006853, + -0.00837269239127636, + 0.015250260941684246, + -0.002438667928799987, + 0.006772506050765514, + 0.02991863712668419, + 0.0003704976988956332, + 0.0011465982533991337, + 0.003715584287419915, + -0.008316120132803917, + 0.014749192632734776, + 0.0008495938964188099, + 0.02859322912991047, + -0.005770368967205286, + 0.0029033685568720102, + 0.008170648477971554, + 0.01921840012073517, + 0.012801490724086761, + 0.007059408351778984, + -0.024455374106764793, + -0.012906554155051708, + -0.013924853876233101, + -0.00012507769861258566, + -0.0045257797464728355, + -0.009229358285665512, + -0.024730153381824493, + 0.014126897789537907, + 0.002014375990256667, + -0.010021368972957134, + -0.0013112638844177127, + -0.0007202859269455075, + 0.01584831066429615, + 0.013294477947056293, + 0.0009632434812374413, + 0.007225084118545055, + 0.006429031491279602, + 0.0049541122280061245, + -0.027235494926571846, + -0.0007303880993276834, + 0.0036428484600037336, + 0.011564983054995537, + 0.003778217826038599, + 0.012494384311139584, + -0.004109569359570742, + 0.018830476328730583, + -0.004416676238179207, + -0.012090297415852547, + 0.023776507005095482, + -0.004622760694473982, + 0.04596899077296257, + 0.007423087023198605, + -0.015783656388521194, + 0.008065585978329182, + 0.0010728522902354598, + -0.0176505409181118, + -0.004877335857599974, + -0.023226948454976082, + -0.012171114794909954, + -0.009350583888590336, + -0.0026588954497128725, + 0.0017981892451643944, + 0.0023740138858556747, + -0.006542176008224487, + -3.905126504832879e-5, + -0.005471344571560621, + -0.009738507680594921, + 0.00160422723274678, + 0.009601118043065071, + 0.012914635241031647, + -0.00636841868981719, + -0.014094570651650429, + 0.014442086219787598, + 0.009916306473314762, + -0.023501727730035782, + -0.009471810422837734, + 0.012090297415852547, + -0.005487507674843073, + -0.014627966098487377, + 0.00381458573974669, + 0.02072160504758358, + -0.026330338791012764, + 0.002343707252293825, + 0.007920114323496819, + 0.020656950771808624, + 0.0071240621618926525, + 0.007427127566188574, + 0.006578544154763222, + 0.0027174882125109434, + -0.0033923143055289984, + 0.009108131751418114, + 0.020867077633738518, + -0.010651745833456516, + 0.010288067162036896, + -0.013989508152008057, + -0.005212728399783373, + 0.006433072499930859, + 0.0042105913162231445, + -0.010490111075341702, + -0.002157827140763402, + -0.025328202173113823, + 0.01520985271781683, + 0.021061038598418236, + -0.006178497336804867, + 0.01815160922706127, + 0.0024265453685075045, + -0.011694291606545448, + -0.01310859713703394, + -0.009706181474030018, + 0.01752123236656189, + 0.006158293224871159, + 0.0021962153259664774, + -0.010611336678266525, + 0.022515753284096718, + 0.007006876636296511, + -0.0035155611112713814, + 0.0005591560620814562, + 0.003966118674725294, + -0.017941484227776527, + 0.017553560435771942, + 0.01824858970940113, + 0.021788395941257477, + -0.009835489094257355, + -0.00958495493978262, + 0.011969070881605148, + 0.0016517075709998608, + -0.013254068791866302, + -0.01577557437121868, + 4.246075332048349e-5, + -0.007120021153241396, + -0.0036650733090937138, + 0.00914853997528553, + 0.021578270941972733, + -0.0061340476386249065, + -0.010878034867346287, + -0.00013600068632513285, + 0.0002192174579249695, + 0.01862035132944584, + -0.0007000815239734948, + 0.014652212150394917, + -0.019557833671569824, + -0.006728056352585554, + 0.004287368152290583, + 0.008792943321168423, + -0.014789601787924767, + 0.0065866257064044476, + -0.010102186352014542, + -0.02099638432264328, + 0.00035786995431408286, + -0.010247658006846905, + 0.014029917307198048, + 0.0029801451601088047, + -0.01134677603840828, + 0.008566654287278652, + -0.0018951701931655407, + -0.023404747247695923, + -0.011007342487573624, + -0.01639786921441555, + -0.014126897789537907, + -0.004408594220876694, + 0.004107549320906401, + -0.0046106381341814995, + -0.013116679154336452, + 0.012122624553740025, + 0.011031587608158588, + -0.011379103176295757, + 0.005883513484150171, + 0.015452304854989052, + 0.013262150809168816, + -0.021465126425027847, + -0.0026689977385103703, + 0.02927209623157978, + 0.014692620374262333, + -0.005564284510910511, + -0.013641992583870888, + -0.006699770223349333, + 0.014522903598845005, + -0.0085504911839962, + -0.01179935410618782, + 0.015331078320741653, + 0.00044348600204102695, + 0.005693592596799135, + 0.006315886974334717, + -0.047391377389431, + 0.00558044807985425, + -0.015638185665011406, + -0.02127116359770298, + 1.06151890122419e-6, + 0.005277382209897041, + -0.001274895970709622, + 0.013650074601173401, + -0.002369973110035062, + 0.009576872922480106, + -0.012841899879276752, + -0.02502109669148922, + 0.01008602324873209, + -0.004440921358764172, + 0.008405019529163837, + -0.020430661737918854, + -0.005568325519561768, + 0.020155882462859154, + 0.016341296955943108, + 0.03349076956510544, + 0.023631034418940544, + -0.010684072971343994, + -0.00385903543792665, + -0.0037600339855998755, + 0.007212961558252573, + 0.016405951231718063, + -0.014918909408152103, + 0.016365543007850647, + -0.011864008381962776, + 0.00914853997528553, + 0.0019497220637276769, + 0.0077180708758533, + 0.0034670704044401646, + 0.01319749653339386, + 0.014506740495562553, + 0.00794840045273304, + 0.022289464250206947, + -0.029708510264754295, + 0.007992850616574287, + -0.003113494021818042, + 0.00804942287504673, + -0.015193688683211803, + 0.00011933207861147821, + 0.0033397830557078123, + -0.0073301466181874275, + 0.010344639420509338, + 0.019864939153194427, + 0.0077140298672020435, + -0.0035903172101825476, + 0.014692620374262333, + 0.01283381786197424, + -0.020236700773239136, + 0.0267182644456625, + -0.00655429856851697, + 0.013957181014120579, + 0.0019466914236545563, + -0.010522437281906605, + -0.01124979555606842, + 0.027930526062846184, + 0.0020275088027119637, + 0.0025578737258911133, + 0.0014173367526382208, + 0.004832886159420013, + -0.013827873393893242, + 0.0016971674049273133, + 0.009504137560725212, + -0.028512412682175636, + -0.0056976331397891045, + 0.018167773261666298, + -0.016842365264892578, + 0.0026588954497128725, + -0.005689551588147879, + -0.008356529287993908, + -0.0018749658484011889, + -0.005972412880510092, + -3.892498716595583e-5, + 0.01003753300756216, + -0.02574845403432846, + -0.004404553212225437, + 0.013165169395506382, + -0.0019679060205817223, + -0.005329913925379515, + 0.006295682862401009, + 0.004101487807929516, + -0.017909156158566475, + -0.0030104515608400106, + -0.010975015349686146, + -0.010296149179339409, + 0.0034731319174170494, + -0.010199167765676975, + 0.017165636643767357, + -0.04874911159276962, + -0.003135718870908022, + 0.0013163149124011397, + -0.00339029380120337, + -0.012898472137749195, + -0.013439949601888657, + 0.008429264649748802, + 0.01486233714967966, + 0.014805764891207218, + -0.005725919269025326, + -0.0020749892573803663, + -0.004428798798471689, + 0.02324311062693596, + 0.016502931714057922, + 0.004695496521890163, + 0.01944468915462494, + 0.02049531601369381, + -0.006938181817531586, + 0.021707579493522644, + -0.0061340476386249065, + -0.009164704009890556, + -0.004739946220070124, + -0.010142595507204533, + -0.018167773261666298, + -0.026330338791012764, + 0.014870419166982174, + -0.01756972260773182, + 0.0012415586970746517, + 0.007588762789964676, + -0.0028063873760402203, + -0.001025877078063786, + -0.002549791941419244, + 0.025538329035043716, + -0.0068937321193516254, + 0.0018941600574180484, + 0.02534436620771885, + -0.015177525579929352, + 0.020285191014409065, + 0.0020386213436722755, + -0.004408594220876694, + 0.0064492360688745975, + 0.015339160338044167, + 0.00404895655810833, + 0.006691688671708107, + -0.008332283236086369, + 0.018086954951286316, + 0.00010316858242731541, + -0.011839763261377811, + 0.0017315148143097758, + 0.01027190312743187, + -0.010910362005233765, + 0.016939347609877586, + -0.011443757452070713, + -0.015282588079571724, + 0.017004000023007393, + -0.010958852246403694, + 0.02387348748743534, + -0.006922018248587847, + -0.008158526383340359, + 0.01719796285033226, + 0.02301682159304619, + 0.01594529114663601, + -0.023437073454260826, + -0.006020903121680021, + -0.019266890361905098, + -0.0025538327172398567, + 0.01386020053178072, + 0.009003069251775742, + 0.014749192632734776, + -0.011274040676653385, + -0.0176505409181118, + -0.0182000994682312, + 0.01049819216132164, + 0.0054066902957856655, + -0.009423320181667805, + 0.017456578090786934, + 0.015904882922768593, + 0.020188210532069206, + -0.00019863425404764712, + 0.032779574394226074, + 0.0024831173941493034, + 0.009964796714484692, + 0.0006192640285007656, + -0.011977152898907661, + -0.015460386872291565, + -0.012049888260662556, + -0.007665539160370827, + 0.0074675362557172775, + 0.011597310192883015, + -0.006566421594470739, + -0.009229358285665512, + -0.01929921843111515, + 0.005750164855271578, + 0.013803628273308277, + 0.007604926358908415, + 0.04532245174050331, + -0.011726618744432926, + 0.002794264815747738, + -0.0001386525109410286, + -0.009423320181667805, + 0.010401211678981781, + 0.008202975615859032, + 0.0017678827280178666, + 0.0002934685326181352, + 0.0007031122222542763, + -0.014603720977902412, + -0.0021457045804709196, + 0.021432800218462944, + -0.009003069251775742, + 0.004178264643996954, + 0.01539573259651661, + -0.004840967711061239, + 0.00021833351638633758, + -0.007289737928658724, + 0.009253603406250477, + -0.0182000994682312, + -0.012308504432439804, + -0.0324886329472065, + -0.0044732484966516495, + 0.00981124397367239, + -0.005956249311566353, + 0.00627951929345727, + -0.006077475380152464, + 0.007580680772662163, + -0.009091967716813087, + -0.008752534165978432, + 0.014466331340372562, + 0.0034084778744727373, + -0.009924388490617275, + 0.020883239805698395, + -0.01427236944437027, + 0.03471919521689415, + -0.010667908936738968, + -0.013076270930469036, + -0.01328639592975378, + 0.014539067633450031, + 0.014369350858032703, + -0.008752534165978432, + -0.00953646469861269, + -0.032230015844106674, + -0.02890033647418022, + 0.0020062942057847977, + -0.002616466488689184, + -0.0011738741304725409, + 0.0005232932744547725, + -0.0026649569626897573, + 0.008776780217885971, + -0.017715195193886757, + -0.010611336678266525, + 0.004707619082182646, + 0.01925072632730007, + 0.002897307276725769, + -0.016955509781837463, + 0.0182000994682312, + -0.024358393624424934, + 0.020867077633738518, + -0.0037236660718917847, + 0.008316120132803917, + -0.00776656111702323, + 0.02854473888874054, + 0.00031215755734592676, + -0.007613007910549641, + 0.012744918465614319, + -0.0008723238133825362, + -0.003269067732617259, + 0.006772506050765514, + -0.013157088309526443, + -0.01027190312743187, + 0.015735166147351265, + 0.025489836931228638, + -0.011864008381962776, + -0.004626801703125238, + 0.014288532547652721, + -0.012656020000576973, + -0.022628897801041603, + -0.004214632324874401, + -0.006497726310044527, + -0.021933868527412415, + 0.017004000023007393, + 0.019735632464289665, + -0.011233631521463394, + 0.00367719610221684, + -0.009746589697897434, + -0.0011556901736184955, + -0.008283792994916439, + 0.014037998393177986, + 0.0015122973127290606, + -0.0001759043225320056, + 0.005713796708732843, + 0.0010455762967467308, + 0.018911292776465416, + -0.0264758113771677, + 0.013052024878561497, + -0.019040601328015327, + 0.005277382209897041, + 0.005075338762253523, + 0.0012243849923834205, + -0.02022053673863411, + -0.018442552536725998, + 0.028383104130625725, + -0.012841899879276752, + -0.022515753284096718, + -0.019541669636964798, + -0.0010738624259829521, + 0.01679387502372265, + -0.019654814153909683, + -0.010077941231429577, + -0.0026508138980716467, + -0.0033296807669103146, + -0.0114356754347682, + -0.01587255671620369, + 0.004586393013596535, + -0.002313400851562619, + 0.0007298829732462764, + 0.018604187294840813, + -0.004804600030183792, + 0.018329408019781113, + 0.00211539794690907, + -0.009980960749089718, + 0.016276642680168152, + -0.01925072632730007, + -0.006275478284806013, + 0.01193674374371767, + 0.00796052347868681, + 0.014288532547652721, + -8.752597750572022e-6, + 0.009277848526835442, + -0.008122158236801624, + -0.00999712385237217, + -0.008316120132803917, + 0.0037418499123305082, + -0.016664566472172737, + 0.0018668840639293194, + -0.018054628744721413, + -0.02131965570151806, + 0.0006000698776915669, + 0.00016049848636612296, + 0.01564626768231392, + -0.018167773261666298, + -0.015169443562626839, + -0.004796518478542566, + -0.016405951231718063, + 0.008243384771049023, + 0.010950770229101181, + -0.020058901980519295, + -0.0007182654808275402, + -0.00018070286023430526, + -0.009455646388232708, + 0.007867583073675632, + 0.01138718519359827, + -0.013383377343416214, + 0.024713989347219467, + -0.010619418695569038, + 0.004630842246115208, + -0.003315537702292204, + -0.004828845150768757, + -0.02776889130473137, + -0.020834749564528465, + 0.00753623154014349, + -0.01647060550749302, + 0.0025215058121830225, + 0.015686675906181335, + 0.0022507673129439354, + 0.0007495822501368821, + -0.00033842326956801116, + 0.003452927339822054, + 0.0033135171979665756, + 0.0023881569504737854, + 0.03229467198252678, + -0.020656950771808624, + 0.007382677868008614, + 0.03446057811379433, + 0.021901540458202362, + -0.0091000497341156, + 0.009471810422837734, + -0.009827407076954842, + 0.00011592259397730231, + -0.008679798804223537, + 0.02034984529018402, + -0.004925826098769903, + 0.02419675700366497, + -0.03305435553193092, + -0.020608460530638695, + 0.002119438722729683, + -0.0012344872811809182, + 0.003810544963926077, + -0.016680730506777763, + -0.025182731449604034, + -0.004238877445459366, + -0.01148416567593813, + 0.022790532559156418, + -0.0005667326622642577, + -0.009487973526120186, + 0.031211717054247856, + -0.008380774408578873, + 0.008704043924808502, + 0.00046672101598232985, + 0.016034191474318504, + -0.004808641038835049, + 0.006538135465234518, + 0.0065179308876395226, + 0.023841161280870438, + 0.013641992583870888, + -0.012082215398550034, + 0.0108861168846488, + 0.0029033685568720102, + -0.00618657935410738, + -0.0043196952901780605, + -0.015500795096158981, + -0.008045381866395473, + 0.03953591734170914, + -0.02140047214925289, + 0.011096241883933544, + -0.0154361417517066, + -0.025376692414283752, + 0.005923922173678875, + -0.024083612486720085, + -0.007912032306194305, + 0.0035196018870919943, + -0.00567338801920414, + 0.010441619902849197, + -0.006053230259567499, + -0.012688346207141876, + -0.00735439220443368, + -0.00770594784989953, + -0.026734426617622375, + 0.02007506601512432, + 0.00706748990342021, + 0.018636513501405716, + -0.002099234377965331, + 0.00868788082152605, + 0.014830010011792183, + -0.005358200054615736, + -0.01622007042169571, + 0.016511013731360435, + 0.02996712736785412, + 0.010902279987931252, + -0.0055602435022592545, + -0.029676184058189392, + -0.02109336666762829, + -0.020867077633738518, + 0.010966934263706207, + -0.001823444734327495, + -0.025441346690058708, + -0.006764424033463001, + -0.010781053453683853, + 0.012154950760304928, + -0.02109336666762829, + 0.009827407076954842, + 0.0032286588102579117, + -0.008744453079998493, + 0.005402649287134409, + 0.010231494903564453, + 0.0051480745896697044, + -0.005964330863207579, + 0.01463604811578989, + -0.009754671715199947, + -8.88992435648106e-5, + -0.009213194251060486, + 0.0017971789930015802, + 0.013876363635063171, + -0.013205578550696373, + 0.008898005820810795, + 0.011823599226772785, + -0.00285891885869205, + -0.03371705859899521, + 0.02030135504901409, + 0.0023901774547994137, + 0.02274204231798649, + -0.006849282421171665, + -0.018006138503551483, + -0.01625239849090576, + -0.011977152898907661, + -0.007972645573318005, + -0.00931017566472292, + 0.004044915549457073, + -0.016890855506062508, + -0.004723782651126385, + 0.004307572264224291, + 0.034234289079904556, + 0.008720207959413528, + 0.013181333430111408, + -0.010247658006846905, + 0.006138088647276163, + -0.009690017439424992, + 0.009964796714484692, + 0.007734233979135752, + 0.008898005820810795, + -0.016810039058327675, + 0.001823444734327495, + -0.01976795867085457, + 0.00868788082152605, + 0.0140460804104805, + 0.008081749081611633, + -0.012187277898192406, + -0.005750164855271578, + -0.009455646388232708, + -0.008801025338470936, + -0.00720487954095006, + 0.004335858393460512, + -0.004913703538477421, + 0.005527916830033064, + 0.01897594705224037, + -0.032957375049591064, + -0.0012213543523102999, + 0.0036974004469811916, + -0.018135445192456245, + -0.021513616666197777, + -0.012955044396221638, + -0.007447332143783569, + 0.010409293696284294, + -0.02049531601369381, + -0.009560709819197655, + 0.005830982234328985, + -0.00223056273534894, + -0.0054915486834943295, + -0.006978590507060289, + 0.0010344638722017407, + 0.010530519299209118, + 0.013545012101531029, + 0.006501767318695784, + -0.005814818665385246, + 0.004509616177529097, + -0.009496055543422699, + 0.017828339710831642, + -0.03465454280376434, + 0.0006990713300183415, + 0.02497260645031929, + -0.008348447270691395, + -0.0027457743417471647, + 0.021012548357248306, + -0.0007324085454456508, + -0.0038287288043648005, + 0.022321792319417, + -0.0002192174579249695, + -0.009180867113173008, + 0.0008475734503008425, + 0.0043196952901780605, + -0.0005114232189953327, + -0.01802230067551136, + -0.0016214009374380112, + 0.007128103170543909, + 0.005329913925379515, + -0.006303764414042234, + -0.008364610373973846, + -0.018086954951286316, + -0.009075804613530636, + -0.020867077633738518, + 0.001142557361163199, + -0.011241713538765907, + 0.002545751165598631, + -0.01752123236656189, + -0.007144266273826361, + 0.004691455513238907, + -0.0009208143455907702, + 0.011928661726415157, + 0.005814818665385246, + 0.004828845150768757, + -0.007964564487338066, + -0.006558339577168226, + -0.020802423357963562, + -0.01734343357384205, + 0.014401677064597607, + 0.021061038598418236, + 0.018830476328730583, + 0.0026952633634209633, + -0.005342036485671997, + -0.004558106884360313, + 0.014159224927425385, + 0.006344173103570938, + -0.008566654287278652, + 0.021158019080758095, + 0.009229358285665512, + 0.0010930566349998116, + -0.018442552536725998, + -0.0019163847900927067, + -0.005705715157091618, + -6.260199006646872e-5, + -0.017456578090786934, + 0.01031231228262186, + 0.008017095737159252, + 0.001269844826310873, + -0.006659361533820629, + -0.0022143993992358446, + -0.007107898592948914, + 0.0004510626313276589, + -0.009972878731787205, + 0.0015951353125274181, + -0.011944825761020184, + 0.006061312276870012, + 0.0053379954770207405, + -0.003846912644803524, + 0.0077988882549107075, + 0.020802423357963562, + -0.001959824236109853, + 0.014781519770622253, + 0.006340132560580969, + 0.00020179117564111948, + -0.0001227415632456541, + -0.03137335181236267, + -0.004638924263417721, + -0.011047751642763615, + -0.017181798815727234, + 0.010401211678981781, + -0.009423320181667805, + 0.025716125965118408, + -0.005188483279198408, + 0.009932469576597214, + -0.025279711931943893, + -0.011476084589958191, + 0.0017092899652197957, + 0.0051480745896697044, + 0.012203441932797432, + -0.004897539969533682, + 0.020737769082188606, + 0.006049189250916243, + 0.02182072401046753, + -0.018539533019065857, + 0.003083187388256192, + -0.007309942506253719, + 0.01999424770474434, + -0.02429373934864998, + 0.01200948003679514, + 0.014377431944012642, + -0.026605119928717613, + 0.012720673345029354, + 0.0037640747614204884, + 0.006408827379345894, + -0.0003225123218726367, + 0.01251054834574461, + -0.013472276739776134, + -0.012680265121161938, + -0.03336146101355553, + 0.005410731304436922, + -0.006550258025527, + -0.009940551593899727, + -0.015282588079571724, + 0.0051480745896697044, + 0.0052693006582558155, + 0.008101954124867916, + -0.011039669625461102, + 0.0056127747520804405, + 0.014442086219787598, + -0.020462989807128906, + -0.00782313384115696, + -0.011839763261377811, + -0.02492411434650421, + 0.0311470627784729, + -4.568082658806816e-5, + -0.022903677076101303, + 0.0016082681249827147, + 0.013585420325398445, + 0.014264287427067757, + -0.017262617126107216, + 0.006614911835640669, + -0.008898005820810795, + 0.015953373163938522, + 0.00923743937164545, + 0.027187004685401917, + -0.0038489331491291523, + -0.006784628611057997, + 0.011177059262990952, + 0.015145198442041874, + 0.008469673804938793, + -0.006966467946767807, + 0.005972412880510092, + 0.003998445346951485, + -0.007427127566188574, + -0.0143208596855402, + -0.005176360718905926, + -0.016308970749378204, + 0.0093748290091753, + 0.0012142828200012445, + 0.011855926364660263, + -0.011888253502547741, + -0.019089091569185257, + 0.003931771032512188, + -0.002418463584035635, + 0.023065313696861267, + 0.016664566472172737, + 0.0024588722735643387, + -0.006659361533820629, + -0.01022341288626194, + -0.008219138719141483, + 0.001398142660036683, + -0.020333681255578995, + -0.007168511860072613, + 0.004384349100291729, + -0.005301627796143293, + 0.026605119928717613, + -0.014757274650037289, + -0.01939619891345501, + -0.012607528828084469, + -0.013844036497175694, + -0.013124761171638966, + 0.017909156158566475, + 0.011322530917823315, + -0.005657224450260401, + 0.0026710182428359985, + 0.01166196446865797, + 0.014692620374262333, + 0.01916990987956524, + 0.0003475152188912034, + 0.01669689454138279, + -0.02099638432264328, + -0.010991179384291172, + -0.012567120604217052, + -0.004675291944295168, + 0.01679387502372265, + -0.009188949130475521, + 0.0058067371137440205, + 0.0004071181174367666, + 0.034008000046014786, + -0.006319927982985973, + -0.005754205398261547, + 0.006093638949096203, + -0.006958386395126581, + 0.01129828579723835, + 0.011564983054995537, + -0.005948167759925127, + 0.007148307282477617, + 0.015468467958271503, + -0.0026710182428359985, + -0.007419046014547348, + -0.008445427753031254, + -0.010983097366988659, + -0.013318723067641258, + 0.0239704679697752, + 0.0027457743417471647, + 0.010393129661679268, + -0.019186073914170265, + 0.003982282243669033, + -0.01976795867085457, + 0.011702373623847961, + 0.016139253973960876, + -0.007475618273019791, + 0.0008763647056184709, + 0.009633445180952549, + 0.0020749892573803663, + -0.0037822588346898556, + -0.019477015361189842, + -0.0029094298370182514, + 0.00392570998519659, + 0.00196487526409328, + -0.004921785555779934, + -0.0017022184329107404, + 0.019234564155340195, + 0.007253370247781277, + -0.0049541122280061245, + 0.0048167225904762745, + -0.018038464710116386, + -0.014789601787924767, + 0.011144732125103474, + -0.027364803478121758, + -0.002178031485527754, + 0.006441154517233372, + 0.00816256646066904, + -0.008364610373973846, + -0.012453976087272167, + 0.018361734226346016, + 0.016414033249020576, + -0.009576872922480106, + -0.011920580640435219, + -0.029708510264754295, + -0.018280917778611183, + 0.0048167225904762745, + 0.0059926169924438, + -0.01283381786197424, + -0.00901115033775568, + 0.0018567818915471435, + 0.013367213308811188, + 0.008768698200583458, + 0.002167929196730256, + 0.02062462456524372, + 0.00887376070022583, + 0.016082681715488434, + 0.009528382681310177, + -0.0012243849923834205, + -0.018555697053670883, + -0.007253370247781277, + -0.03788724169135094, + 0.0011920580873265862, + 0.0018183935899287462, + 0.001636554254218936, + -0.0042792861349880695, + -0.0016547382110729814, + -0.026233358308672905, + 0.01513711642473936, + 0.006647238973528147, + 0.00036165828350931406, + 0.007936278358101845, + -0.018814312294125557, + -0.0051157474517822266, + 0.029466059058904648, + -0.02456851862370968, + 0.0050389706157147884, + 0.023711852729320526, + -0.01214686967432499, + 0.021610597148537636, + -0.006162333767861128, + 0.005911799613386393, + -0.0013506623217836022, + -0.011047751642763615, + -0.014805764891207218, + -0.003703461727127433, + -0.008041340857744217, + 0.013852118514478207, + -0.02332392893731594, + -0.0008490887703374028, + 0.015023971907794476, + 0.0037761973217129707, + -0.00562489777803421, + -0.01834557205438614, + -0.004845008719712496, + -0.01063558179885149, + 0.009463728405535221, + 0.011379103176295757, + 0.018717331811785698, + 0.011645801365375519, + -0.01729494333267212, + -0.010530519299209118, + -0.0032710880041122437, + 0.005867349915206432, + 0.0007980727823451161, + -0.020333681255578995, + 0.01570283994078636, + -0.0016981775406748056, + 0.010005205869674683, + -0.01705249212682247, + 0.013116679154336452, + -0.0038024631794542074, + 0.015177525579929352, + -0.004752068780362606, + -0.01747274212539196, + 0.011564983054995537, + 0.003586276201531291, + 0.020155882462859154, + -0.0022245014552026987, + -0.017408087849617004, + -0.0009526362409815192, + 0.02072160504758358, + -0.014830010011792183, + -0.0042954497039318085, + 0.011904416605830193, + 0.010473947040736675, + -0.001264793798327446, + 0.00031165246036835015, + -0.006639156956225634, + 0.004291409160941839, + 0.004743986763060093, + 0.016365543007850647, + 0.0011405368568375707, + 0.0044570849277079105, + -0.009285930544137955, + -0.011783191002905369, + -0.004966234788298607, + 0.01857186108827591, + 0.009738507680594921, + 0.012753000482916832, + 0.03019341640174389, + -0.0019264869624748826, + 0.0034509070683270693, + 0.0046106381341814995, + -0.017682867124676704, + -0.019735632464289665, + 0.013480357825756073, + -0.02109336666762829, + 0.029950963333249092, + -0.011322530917823315, + 0.0070715309120714664, + 0.008518164046108723, + -0.001100128167308867, + 0.004016629420220852, + -0.010045614093542099, + 0.0065179308876395226, + 0.006711892783641815, + 0.004103508312255144, + -0.009576872922480106, + 0.018878966569900513, + -0.005208687391132116, + -4.593337962432997e-6, + -0.006437113508582115, + 0.002382095670327544, + -0.000616738514509052, + 0.010013287886977196, + -0.00972234457731247, + -0.0008748493855819106, + -0.007447332143783569, + -0.0042752455919981, + -0.0017496987711638212, + -0.02579694427549839, + 0.01687469333410263, + -0.004449002910405397, + 0.00134965218603611, + 0.004283327143639326, + 0.014700702391564846, + 0.006198701914399862, + -0.016155418008565903, + -0.0020234680268913507, + 0.0119852339848876, + 0.0015274506295099854, + -0.005798655096441507, + -0.029288260266184807, + 0.022709716111421585, + 0.026702100411057472, + 0.0006980610778555274, + -0.010352721437811852, + 0.0021436840761452913, + -0.022063175216317177, + -0.008493918925523758, + 0.0036731550935655832, + -0.010781053453683853, + 0.004788436461240053, + 0.010344639420509338, + -0.030759138986468315, + 0.0032811902929097414, + -0.020366009324789047, + -0.008574736304581165, + 0.0025639350060373545, + 0.008970742113888264, + 0.007936278358101845, + 0.0037903403863310814, + 0.008255506865680218, + 0.002014375990256667, + -0.00837269239127636, + -0.0005121808499097824, + 0.023356255143880844, + 0.0633285865187645, + 0.03096926398575306, + 0.0034630296286195517, + 8.567917393520474e-5, + 0.005742082837969065, + -0.04509616270661354, + -0.003384232521057129, + -0.013625829480588436, + -0.029740838333964348, + -0.025215057656168938, + 0.007091735024005175, + -0.019089091569185257, + 0.0137713011354208, + 0.010926525108516216, + -0.017408087849617004, + 0.009205112233757973, + -0.001748688519001007, + 0.0024851378984749317, + -0.0009576873271726072, + -0.007738274987787008, + 0.010740645229816437, + 0.010619418695569038, + -0.0070028360933065414, + 0.0004273224913049489, + 0.014902746304869652, + 0.0002879123203456402, + -0.0024891789071261883, + -0.009916306473314762, + 0.0022184401750564575, + 0.00023866415722295642, + 0.024907952174544334, + -0.0012900492874905467, + -0.026637446135282516, + -0.005778450984507799, + -0.006768465042114258, + 0.01120938640087843, + -0.0008748493855819106, + 0.026540465652942657, + 0.0002437152579659596, + -0.005289504770189524, + -0.02662128210067749, + -0.006651279982179403, + 0.007014958653599024, + -0.0264758113771677, + -0.0017305045621469617, + -0.0035014180466532707, + 0.00024207365640904754, + 0.0001187638335977681, + -0.0009556668810546398, + 0.0009243501117452979, + -0.007269533816725016, + 0.010950770229101181, + -0.01200948003679514, + -0.012841899879276752, + -0.00859898142516613, + 0.004586393013596535, + 0.01971946842968464, + -0.011564983054995537, + -0.008033258840441704, + 0.0093748290091753, + 0.01093460712581873, + -0.0002730115957092494, + 0.011605392210185528, + 0.025990905240178108, + 0.00036367872962728143, + 0.00846159178763628, + 0.008291875012218952, + 0.009641527198255062, + 0.006485603749752045, + -0.015525040216743946, + 0.015815984457731247, + -0.02044682577252388, + -0.018183935433626175, + -0.0052854642271995544, + -0.018781986087560654, + -0.015226015821099281, + -0.026508137583732605, + -0.019913431257009506, + -0.015565449371933937, + 0.010441619902849197, + -0.004598515573889017, + 0.003400396090000868, + -0.007382677868008614, + 0.0062876008450984955, + -0.011104323901236057, + -0.002907409332692623, + -5.6785338529152796e-6, + -0.0016274623339995742, + -0.005139992572367191, + 0.017456578090786934, + -0.024552354589104652, + 0.00047202466521412134, + -0.016486769542098045, + 0.0015072462847456336, + 0.008299957029521465, + -0.003539806231856346, + -0.0024083612952381372, + 0.012243850156664848, + -0.0003232699818909168, + 0.0008283792994916439, + 0.0010799238225445151, + 0.025101913139224052, + 0.005447098985314369, + 0.022063175216317177, + -0.02282286062836647, + -0.02877102792263031, + 0.006235069595277309, + -0.007334187626838684, + -0.0069866725243628025, + 0.02474631741642952, + -0.009827407076954842, + 0.007241247687488794, + -0.007075571455061436, + 0.006041107699275017, + 0.016414033249020576, + -0.002363911597058177, + 0.009245521388947964, + 0.019040601328015327, + 0.01296312641352415, + 0.010376966558396816, + -0.011952907778322697, + 0.016939347609877586, + 0.0069179777055978775, + 0.0029942882247269154, + 0.006493685767054558, + -0.00385903543792665, + 0.010296149179339409, + 0.02694455347955227, + -0.011104323901236057, + -0.009035395458340645, + 0.02117418311536312, + 0.0005606713821180165, + 0.013140924274921417, + 0.0056289383210241795, + -0.008776780217885971, + -0.005010684486478567, + 0.011055833660066128, + 0.004638924263417721, + 0.019105255603790283, + 0.004562147427350283, + -0.031858257949352264, + 0.030387377366423607, + 0.004103508312255144, + -0.0190244372934103, + -0.013262150809168816, + 0.0011960988631471992, + -0.023113803938031197, + 0.011225549504160881, + 0.011451838538050652, + 0.01323790568858385, + 0.0006632085423916578, + -0.01652717776596546, + -0.00896266009658575, + 0.004707619082182646, + -0.00043969767284579575, + 0.005139992572367191, + -0.015710920095443726, + 0.03429894521832466, + -0.012316586449742317, + 0.0011779150227084756, + -0.0006435093237087131, + -0.003103391733020544, + -0.002986206440255046, + 0.02616870403289795, + -0.0009915296686813235, + -0.00567338801920414, + -0.00022313205408863723, + 0.013140924274921417, + -0.010506274178624153, + -0.00808579009026289, + -0.010999261401593685, + 0.00632396899163723, + 0.006622993852943182, + 0.0006965457578189671, + 0.008077709004282951, + 0.007875665090978146, + -0.008089831098914146, + -0.01756972260773182, + -0.026831408962607384, + -0.01944468915462494, + 0.017165636643767357, + 0.03416963666677475, + 0.02890033647418022, + 0.007916073314845562, + 0.0014092550845816731, + -0.0032872515730559826, + -0.005685510579496622, + 0.0091000497341156, + 0.002864980138838291, + 0.011120487004518509, + -0.00674826093018055, + 0.01889513060450554, + -0.01507246308028698, + -0.007362473756074905, + -0.007903951220214367, + 0.003895403118804097, + 0.006768465042114258, + 0.008231261745095253, + -0.03250479698181152, + 0.0018668840639293194, + 0.009487973526120186, + -0.004695496521890163, + 0.003030656138435006, + -0.0018315265187993646 + ], + "f04b18f7-13be-4067-9ed6-b3324f5a06d0": [ + -0.012295830994844437, + -0.0054308706894516945, + -0.00453562568873167, + 0.009308852255344391, + -0.06584931164979935, + -0.03479151800274849, + 0.05088047310709953, + 0.038423411548137665, + -0.02652641013264656, + 0.02971704676747322, + -0.01092962734401226, + -0.002301755826920271, + 0.01083628460764885, + 0.00030230433912947774, + 0.0018318581860512495, + 0.009648281149566174, + -0.035300660878419876, + 0.03950958698987961, + -0.031448137015104294, + -0.01607198268175125, + 0.0769147053360939, + -0.016284126788377762, + -0.06147066876292229, + 0.025066863745450974, + -0.012329773977398872, + -0.007467447314411402, + 0.00428105378523469, + -0.0002497988461982459, + -0.037235409021377563, + -0.013449891470372677, + 0.02191017009317875, + 0.012915289960801601, + 0.03513094410300255, + -0.030701391398906708, + -0.0030506220646202564, + -0.030803220346570015, + -0.011939430609345436, + 0.042496565729379654, + -0.025491150096058846, + 0.012686175294220448, + -0.013008632697165012, + 0.027985956519842148, + 0.02002633549273014, + 0.006398244760930538, + -0.050235554575920105, + 0.03910227119922638, + 0.013560205698013306, + 0.0025308707263320684, + -0.008316021412611008, + -0.008816679008305073, + -0.009928311221301556, + 0.021468911319971085, + 0.01133694313466549, + 0.03516488894820213, + 0.002045062370598316, + 0.0431075356900692, + -0.004582297056913376, + 0.062047701328992844, + 0.014239064417779446, + -0.03988295793533325, + 0.014934894628822803, + -0.016199270263314247, + 0.029156988486647606, + -0.0038228239864110947, + 0.007891734130680561, + -0.03502911701798439, + -0.01564769633114338, + 0.005668471567332745, + -0.05329041928052902, + 0.017251500859856606, + 0.004365911241620779, + 0.018278274685144424, + -0.016776299104094505, + 0.028681786730885506, + -0.02936064638197422, + -0.005027798470109701, + 0.08207403868436813, + -0.02304725907742977, + -0.005172056145966053, + 0.024676518514752388, + -0.03165179491043091, + 0.0024396490771323442, + -0.011090856976807117, + 0.030056476593017578, + 0.06791982799768448, + 0.029564302414655685, + -0.0452459417283535, + -0.05444448068737984, + -0.011600000783801079, + -0.024914119392633438, + -0.015656182542443275, + 0.008044477552175522, + 0.005239941645413637, + -0.011090856976807117, + -0.04039210081100464, + 0.004387125372886658, + 0.0792907178401947, + -0.01116722822189331, + 0.0017332115676254034, + -0.02688281051814556, + -0.0069201174192130566, + 0.022283542901277542, + -0.057329628616571426, + 0.021604683250188828, + -0.0030951721128076315, + -0.018515875563025475, + 0.02221565693616867, + -0.012966204434633255, + -0.029089102521538734, + 0.032160937786102295, + -0.002191441133618355, + -0.020603366196155548, + -0.005095684435218573, + 0.012227945029735565, + -0.028070813044905663, + -0.05817820504307747, + 0.004921726882457733, + -0.05020161345601082, + 0.013662034645676613, + -0.0428699366748333, + 0.07447081804275513, + 0.029072130098938942, + -0.0026623995508998632, + 0.000551042438019067, + -0.012406145222485065, + 0.024133432656526566, + 0.006300658918917179, + -0.014340893365442753, + -0.0044125826098024845, + 0.004109217319637537, + -0.001066020573489368, + -0.018464960157871246, + -0.0005409656441770494, + -0.01169334352016449, + 0.01983965002000332, + 0.026967668905854225, + -0.026424581184983253, + 0.04931909590959549, + -0.02622092328965664, + 0.06489890813827515, + -0.05172904580831528, + -0.03036196157336235, + -0.0025499635376036167, + -0.0008713789866305888, + -0.005740600172430277, + 0.02745984122157097, + -0.03200819343328476, + 0.06554382294416428, + -0.017921874299645424, + 0.02841024287045002, + -0.06160644069314003, + -0.009588881395757198, + 0.03852523863315582, + 0.011905487626791, + 0.001069733058102429, + -0.020399708300828934, + -0.003880102653056383, + 0.021061595529317856, + 0.0225041713565588, + -0.005511485505849123, + -0.022062912583351135, + -0.05108412727713585, + 0.017259987071156502, + -0.007348647341132164, + 0.03078624978661537, + 0.0060036578215658665, + 0.06157249957323074, + 0.00822692085057497, + -0.0590607188642025, + 0.02269085682928562, + 0.019008047878742218, + 0.003322165459394455, + 0.04188559204339981, + -0.009020336903631687, + -0.01838010363280773, + -0.010208340361714363, + 0.01659809984266758, + 0.041783761233091354, + 0.008587564341723919, + -0.060112953186035156, + -0.006729188375174999, + -0.03567403182387352, + -0.01878741942346096, + 0.007879005745053291, + 0.00537571357563138, + 0.016419898718595505, + 0.04300570860505104, + 0.00538844196125865, + 0.0045398687943816185, + -0.007526847533881664, + 0.03513094410300255, + -0.0342993438243866, + 0.019008047878742218, + 0.028070813044905663, + 0.00030972936656326056, + -0.05736357346177101, + -0.010530797764658928, + -0.027188297361135483, + -0.0013810534728690982, + 0.03401082754135132, + -0.040969133377075195, + -0.041851647198200226, + -0.05719386041164398, + 0.038898613303899765, + -0.021299196407198906, + 0.03441814333200455, + -0.03472363203763962, + -0.004442282486706972, + 0.02841024287045002, + -0.061334896832704544, + 0.030514705926179886, + -0.027239210903644562, + 0.008396635763347149, + -0.01556283887475729, + -0.01278800331056118, + -0.01657264120876789, + -0.012389173731207848, + 0.02226657047867775, + 0.005630285479128361, + -0.010225311852991581, + -0.01795581728219986, + -0.008014777675271034, + 0.01883833296597004, + -0.03716752305626869, + -0.04673943296074867, + -0.03893255442380905, + -0.04052787274122238, + 0.008426335640251637, + -0.04062970355153084, + -0.01683569885790348, + 0.0289363581687212, + 0.008723336271941662, + -0.0011317849857732654, + -0.035707976669073105, + -0.027510754764080048, + -0.00344096589833498, + 0.01676781289279461, + 0.0077474769204854965, + -0.0009747988660819829, + -0.008625750429928303, + 0.02143496833741665, + 0.03409568592905998, + -0.02090885303914547, + -0.0018859547562897205, + 0.030446819961071014, + 0.036895979195833206, + -0.03893255442380905, + 0.02474440447986126, + 0.03065047785639763, + -0.03212699666619301, + 0.03448602929711342, + 0.02007725089788437, + 0.021044624969363213, + -0.016776299104094505, + -0.02574572153389454, + 0.05990929529070854, + 0.013602633960545063, + -0.04093518853187561, + -0.01871953345835209, + -0.0059103150852024555, + -0.0002657095901668072, + -0.007344404235482216, + -0.021044624969363213, + -0.018804389983415604, + 0.055904027074575424, + -0.021231310442090034, + 0.00815479177981615, + -0.02924184501171112, + 0.02421828918159008, + 0.021417997777462006, + 0.006915874779224396, + 0.0055581568740308285, + 0.009563423693180084, + -0.03869495540857315, + 0.022130798548460007, + -0.014018435031175613, + -0.009410681203007698, + 0.011786687187850475, + -0.002339941682294011, + 0.03550431877374649, + 0.011209656484425068, + -0.000774853746406734, + -0.00638127326965332, + 0.030922021716833115, + -0.013645063154399395, + -0.007832334376871586, + 0.0016271398635581136, + 0.008218434639275074, + -0.04107096046209335, + -0.045449599623680115, + -0.006771617103368044, + -0.014960352331399918, + 0.017378786578774452, + -0.006313387304544449, + 0.03236459568142891, + 0.03467271476984024, + -0.011981858871877193, + -0.009520995430648327, + -0.0011222385801374912, + 0.0010448062093928456, + -0.03479151800274849, + -0.030463790521025658, + 0.0003211320727132261, + -0.02304725907742977, + 0.013101976364850998, + -0.011184199713170528, + 0.016971470788121223, + 0.017293930053710938, + -0.031108707189559937, + 0.0030251648277044296, + 0.045856915414333344, + -0.018278274685144424, + 0.005863643251359463, + -0.023488515987992287, + -3.420812208787538e-5, + -0.01997542195022106, + 0.03614923357963562, + 0.0289363581687212, + -0.003786759451031685, + -0.03733723610639572, + 0.004565326031297445, + -0.01140482909977436, + -0.05108412727713585, + 0.033637456595897675, + 0.03341682627797127, + -0.015028238296508789, + 0.02664520964026451, + 0.0216725692152977, + -0.02888544462621212, + -0.01134542841464281, + -0.00865545030683279, + -0.06853079795837402, + -0.029106073081493378, + -0.007441990077495575, + 0.006691002752631903, + -0.051118072122335434, + -0.049522753804922104, + -0.013865692541003227, + -0.013297148048877716, + -0.00478595495223999, + -0.0229793731123209, + 0.01961902156472206, + 0.022589027881622314, + -0.01802370324730873, + -0.012143087573349476, + -0.010802341625094414, + 0.03811792656779289, + 0.009105194360017776, + -0.0285799577832222, + -0.006160644348710775, + 0.001173152937553823, + -0.0069201174192130566, + 0.023709146305918694, + -0.0022975129541009665, + 0.029140016064047813, + -0.011905487626791, + -0.025660865008831024, + -0.023013316094875336, + 0.028036870062351227, + 0.021961083635687828, + 0.006508559454232454, + -0.018736504018306732, + -0.030820192769169807, + -0.015393124893307686, + -0.027901098132133484, + -0.01961902156472206, + -0.007128017954528332, + -0.029920704662799835, + 0.04083336144685745, + 0.020535480231046677, + -0.05057498440146446, + 0.013254718855023384, + -0.000537783489562571, + -0.029140016064047813, + -0.028732700273394585, + -0.01355171948671341, + 0.042496565729379654, + 0.005447842180728912, + -0.001710936427116394, + 0.011387857608497143, + 0.000842209265101701, + -0.008277835324406624, + -0.004104974679648876, + -0.030684420838952065, + 0.01754850149154663, + 0.014391807839274406, + 0.012092173099517822, + -0.005855157505720854, + -0.006550988182425499, + 0.01676781289279461, + -0.026475494727492332, + 0.0008666057838127017, + -0.003727359464392066, + -0.013806291855871677, + -0.0005346013349480927, + 0.034825459122657776, + 0.008523921482264996, + 0.011455743573606014, + 0.026848867535591125, + -0.0008766825776547194, + -0.01553738210350275, + -0.024489833042025566, + -0.01166788674890995, + 0.011201171204447746, + 0.018923191353678703, + -0.015197952277958393, + 0.016284126788377762, + -0.0164283849298954, + 0.015282809734344482, + 0.020773081108927727, + -0.006750402972102165, + 0.014688808470964432, + 0.010462911799550056, + -0.014171178452670574, + 0.0445331409573555, + -0.012100659310817719, + 0.01337351929396391, + 0.04365062341094017, + -0.0721626952290535, + -0.003073957748711109, + 0.002418434713035822, + 0.019805707037448883, + -0.016844185069203377, + 0.02007725089788437, + -0.02038273774087429, + 0.010708998888731003, + 0.019924506545066833, + 0.016436869278550148, + -0.05101624131202698, + -0.01800673082470894, + -0.01707329973578453, + 0.011370886117219925, + -0.003044257638975978, + -0.007526847533881664, + -0.01674235612154007, + -0.03195727989077568, + 0.010055596940219402, + -0.04035815969109535, + -0.00965676736086607, + -0.02717132493853569, + 0.008006291463971138, + 0.05200058966875076, + -0.004028602968901396, + -0.014510608278214931, + -0.01716664247214794, + -0.013424433767795563, + -0.01588529720902443, + 0.04151221737265587, + 0.004590782802551985, + -0.009436137974262238, + -0.009631309658288956, + 0.019534163177013397, + -0.05736357346177101, + -0.010378054343163967, + 0.013950549066066742, + -0.012117630802094936, + -0.015579810366034508, + -0.02610212378203869, + 0.005693928804248571, + -0.02050153724849224, + -0.027324069291353226, + -0.014077835716307163, + 0.051355671137571335, + -0.030684420838952065, + 0.03395991399884224, + -0.05060892924666405, + 0.01866861805319786, + 0.0013545355759561062, + 0.004501682706177235, + -0.007772933691740036, + -0.023590344935655594, + -0.006758888717740774, + -0.024167375639081, + 0.0018244332168251276, + -0.010870227590203285, + -0.008570592850446701, + -0.010318654589354992, + 0.02712041139602661, + 0.02095976658165455, + -0.01800673082470894, + -0.040663644671440125, + -0.023250915110111237, + -0.041546162217855453, + 0.008316021412611008, + 0.006389759015291929, + -0.00907125137746334, + -0.01175274420529604, + -0.0005860461387783289, + -0.009758596308529377, + -0.0024290417786687613, + 0.0461963452398777, + 0.0059951720759272575, + 0.008192977868020535, + 0.015248866751790047, + 0.0031036578584462404, + -0.04891178011894226, + -0.016852671280503273, + -0.017514558508992195, + -0.011506658047437668, + -0.01724301464855671, + 0.010148939676582813, + -0.017514558508992195, + 0.0033879298716783524, + 0.004325603600591421, + 0.012092173099517822, + -0.003947988618165255, + 0.00025961047504097223, + 0.03648866340517998, + 0.041444331407547, + 0.0037910023238509893, + -0.012558888643980026, + 0.009470080956816673, + 0.0006491587846539915, + 0.008994880132377148, + -0.018651647493243217, + 0.024320118129253387, + -0.032568253576755524, + 0.002390855923295021, + 0.016487784683704376, + -0.015231895260512829, + -0.00512538431212306, + 0.0023887346033006907, + -0.01048836950212717, + 0.008091148920357227, + -0.01287286076694727, + -0.017633358016610146, + -0.00528661347925663, + -0.004679883364588022, + 0.024201318621635437, + 5.061608680989593e-5, + 0.001031016930937767, + 0.024710461497306824, + 0.004387125372886658, + 0.025440236553549767, + 0.019568106159567833, + -0.015571325086057186, + 0.010165911167860031, + 0.019686907529830933, + 0.012601317837834358, + 0.032687053084373474, + -0.03805004060268402, + 0.03513094410300255, + -0.01576649770140648, + -0.014374836347997189, + -0.008570592850446701, + 0.03229670971632004, + -0.02964916080236435, + 0.014077835716307163, + -0.0015719825169071555, + 0.022402342408895493, + -0.023794002830982208, + 0.025015948340296745, + 0.00020909383601974696, + 0.01412026397883892, + 0.017412729561328888, + -0.04341302439570427, + 0.02114645391702652, + -0.01790490187704563, + -0.04293782263994217, + -0.015707096084952354, + 0.02231748402118683, + 0.009953767992556095, + 0.008596050553023815, + -0.012541917152702808, + -0.03526671603322029, + -0.004849597811698914, + -0.02121433988213539, + 0.030922021716833115, + -0.017616387456655502, + 0.007136503700166941, + 0.01812553219497204, + 0.013093490153551102, + 0.04171587526798248, + -0.001836101058870554, + 0.0055708857253193855, + 0.02781624160706997, + -0.020586395636200905, + 0.007208632305264473, + -0.021044624969363213, + -0.011710315011441708, + 0.014273007400333881, + -0.03436722978949547, + -0.014256035909056664, + -0.0025499635376036167, + 0.0023866132833063602, + -0.008850621990859509, + -0.027850184589624405, + -0.013645063154399395, + -0.022996343672275543, + 0.01950022019445896, + -0.014188149943947792, + 0.04354879632592201, + 0.023250915110111237, + 0.005990929435938597, + -0.02391280233860016, + 0.029615217819809914, + -0.004921726882457733, + 0.02357337437570095, + 0.004501682706177235, + -0.0038016096223145723, + -0.004561082925647497, + 0.03655654937028885, + 0.015452524647116661, + -0.025032920762896538, + -0.006453401874750853, + 0.005927286576479673, + 0.006118215620517731, + 0.014043892733752728, + -0.0026836139149963856, + 0.00854937918484211, + 0.008307535201311111, + -0.004191953223198652, + 0.02409948967397213, + 0.0068098027259111404, + 0.01926261931657791, + -0.008659693412482738, + 0.011650915257632732, + 0.02645852416753769, + -0.007577762007713318, + -0.04578902944922447, + 0.03158390894532204, + -0.028036870062351227, + 0.04494045674800873, + -0.005333284847438335, + 0.019703878089785576, + 0.026186980307102203, + -0.010344112291932106, + -0.03078624978661537, + -0.014646380208432674, + -0.025677835568785667, + 0.027476811781525612, + -0.019483249634504318, + 0.04015450179576874, + -0.03124447911977768, + 0.021876227110624313, + 0.004344696644693613, + 0.0008331931894645095, + 0.004815654829144478, + -0.010921142064034939, + -0.027035554870963097, + -0.039136212319135666, + 0.02085793763399124, + 0.015656182542443275, + 0.03489334508776665, + -0.015596781857311726, + 0.0016939649358391762, + -0.0220289696007967, + -0.007437747437506914, + 0.04181770607829094, + 0.012838917784392834, + -0.022758742794394493, + -0.0002784382086247206, + 0.014934894628822803, + 0.0236921738833189, + 0.012041258625686169, + -0.0602487251162529, + 0.0011084491852670908, + 0.012643746100366116, + -0.02179136872291565, + -0.003933138679713011, + 0.030328018590807915, + -0.00798931997269392, + 0.008303292095661163, + -0.0060248724184930325, + 0.03591163456439972, + 0.022045942023396492, + 0.021010681986808777, + 0.0040816389955580235, + 0.013331091031432152, + 0.005999415181577206, + -0.016377469524741173, + -0.013305633328855038, + 0.018515875563025475, + 0.025321435183286667, + 0.002363277366384864, + -0.019330505281686783, + 0.023641260340809822, + 0.006847988814115524, + 0.008850621990859509, + -0.0021649233531206846, + -0.01616532728075981, + -0.012558888643980026, + -0.0285799577832222, + 0.016801755875349045, + 0.024914119392633438, + -0.011947915889322758, + -0.006326116155833006, + 0.009775567799806595, + -0.012618289329111576, + -0.014629408717155457, + -0.0019920263439416885, + 0.026203952729701996, + 0.005222970154136419, + 0.03665837645530701, + 0.00546481367200613, + 0.010810826905071735, + -0.00808690581470728, + 0.013314119540154934, + 0.04266627877950668, + -0.03489334508776665, + -0.03224579617381096, + -0.018889248371124268, + -0.01048836950212717, + -0.010505340993404388, + 0.00327761541120708, + 0.028070813044905663, + -0.02085793763399124, + -0.017090272158384323, + -0.003937381319701672, + -0.027680469676852226, + -0.003188515082001686, + -0.004476225469261408, + -0.0015550110256299376, + 0.007582004647701979, + 0.03273796662688255, + -0.004236503504216671, + -0.008383906446397305, + -0.004353182390332222, + -0.01936444826424122, + 0.02107856795191765, + -0.03312831372022629, + 0.03855918347835541, + -0.005379956215620041, + -0.028325386345386505, + -0.03703175112605095, + 0.0031673009507358074, + 0.015970153734087944, + -0.02633972279727459, + 0.0220289696007967, + -0.004607754293829203, + 0.04606057330965996, + -0.014162693172693253, + -0.019534163177013397, + 0.0013046818785369396, + -0.004088003188371658, + -0.012075201608240604, + -0.016971470788121223, + -0.01101448480039835, + 0.015749525278806686, + -0.008451792411506176, + 0.0285799577832222, + -0.009342795237898827, + -0.00044391004485078156, + -0.016156841069459915, + 0.03740512207150459, + -0.010946598835289478, + -0.0045271399430930614, + 0.009232480078935623, + 0.0015804682625457644, + 0.013950549066066742, + 0.017412729561328888, + -0.024914119392633438, + 0.053901392966508865, + 0.0074929045513272285, + -0.010785370133817196, + 0.005961229559034109, + -0.006758888717740774, + 0.002967886161059141, + -0.022198684513568878, + 0.03835552558302879, + -0.014612437225878239, + 0.008035991340875626, + -0.017752159386873245, + -0.004989612381905317, + -0.010683541186153889, + -0.00991982501000166, + -0.02688281051814556, + 0.04514411464333534, + 0.025728750973939896, + -0.030582591891288757, + 0.014230579137802124, + -0.008850621990859509, + 0.005303584970533848, + 0.0015178859466686845, + -0.005795757286250591, + 0.007565033156424761, + 0.014332407154142857, + -0.013882664032280445, + -0.03153299540281296, + -0.007081346586346626, + -0.016487784683704376, + -0.031278420239686966, + 0.01600409671664238, + -0.02576269395649433, + 0.011600000783801079, + -0.0167847853153944, + 0.04341302439570427, + -0.002532992046326399, + -0.03343379870057106, + -0.013687491416931152, + -0.014510608278214931, + 0.007777176797389984, + -0.026594296097755432, + 0.018702561035752296, + 0.0034643015824258327, + -0.027018582448363304, + 0.009953767992556095, + -0.02440497651696205, + -0.02050153724849224, + -0.016368983313441277, + 0.036352891474962234, + -0.03289071097970009, + 0.025660865008831024, + 0.026492467150092125, + -0.01716664247214794, + -0.012363716959953308, + 0.005087198689579964, + -0.010259254835546017, + 0.00252450630068779, + 0.010717484168708324, + -0.026543380692601204, + 0.0004160662356298417, + -0.012329773977398872, + 0.02314908616244793, + 0.0037761523853987455, + 0.017319386824965477, + 0.0033518655691295862, + -0.025355378165841103, + -0.005384199321269989, + -0.0006125640356913209, + 0.0020641551818698645, + 0.01871953345835209, + 0.019771764054894447, + 0.01320380438119173, + -0.04100307449698448, + -0.00037628933205269277, + 0.005736357532441616, + -0.0028363571036607027, + 0.033637456595897675, + 0.02722224034368992, + -0.007853548042476177, + 0.007586247753351927, + -0.015477982349693775, + 0.023522458970546722, + 0.018532846122980118, + 0.04283599555492401, + -0.051661159843206406, + 0.0018414045916870236, + -0.02121433988213539, + 0.023183029145002365, + -0.001434089383110404, + -0.036352891474962234, + -0.02197805605828762, + -0.019585078582167625, + -0.016496270895004272, + -0.013449891470372677, + 0.006440673489123583, + -0.0024396490771323442, + 0.047995321452617645, + 0.023420630022883415, + 0.01243160292506218, + 0.004387125372886658, + 0.0016515363240614533, + 0.01790490187704563, + -0.050948355346918106, + 0.020925823599100113, + 0.003099414985626936, + 0.009979224763810635, + 0.005587856750935316, + 0.02107856795191765, + 0.020213022828102112, + 0.012779518030583858, + -0.027748355641961098, + 0.00846452172845602, + 0.0021893198136240244, + -0.011769715696573257, + 0.002167044673115015, + -0.004274689592421055, + 0.008294806815683842, + 0.013280176557600498, + -0.011676372028887272, + -0.011141771450638771, + 0.0050914413295686245, + 0.041546162217855453, + -0.01754850149154663, + -0.009665252640843391, + -0.024676518514752388, + -0.007569276262074709, + -0.024184346199035645, + -0.007140746805816889, + 0.006296415813267231, + 0.012457059696316719, + -0.006686759646981955, + -0.0046459403820335865, + -0.028902415186166763, + 0.002624213695526123, + 0.00854937918484211, + -0.016699928790330887, + -0.0213161688297987, + -0.01258434634655714, + 0.006780102849006653, + -0.0022084126248955727, + -0.00639400165528059, + -0.0305995624512434, + -0.0037379665300250053, + 0.0019103512167930603, + -0.005239941645413637, + -0.034231457859277725, + 0.0010989027796313167, + -0.025898465886712074, + 0.0024396490771323442, + -0.023539431393146515, + -0.014009949751198292, + 0.010692027397453785, + 0.013662034645676613, + -0.039543528109788895, + 0.012728603556752205, + 0.016776299104094505, + -0.008706364780664444, + 0.016699928790330887, + 0.016759328544139862, + -0.0005277066957205534, + -0.0014468178851529956, + -0.00243752752430737, + 0.03584374859929085, + -0.001774579519405961, + 0.01101448480039835, + -0.00832450669258833, + -0.005172056145966053, + -0.01169334352016449, + -0.0034600587096065283, + 0.01420512143522501, + 0.008638478815555573, + 0.014570008032023907, + 0.01997542195022106, + -0.007632919121533632, + -0.0027621069457381964, + 0.020365765318274498, + 0.014434236101806164, + 0.021112510934472084, + -0.004671397618949413, + 0.00897790864109993, + 0.017514558508992195, + -0.006699488498270512, + 0.02109553851187229, + 0.003269129665568471, + -0.000980632845312357, + 0.011854573152959347, + -0.043141480535268784, + -0.021961083635687828, + -0.029106073081493378, + 0.031397223472595215, + 0.010259254835546017, + -0.013152889907360077, + 0.01766730099916458, + -0.001568800420500338, + -0.004442282486706972, + 0.03165179491043091, + 0.014111778698861599, + -0.0010331383673474193, + 0.010742941871285439, + 0.013992978259921074, + -0.005689685698598623, + -0.02438800409436226, + 0.0012314923806115985, + 0.04174982011318207, + -0.0034367230255156755, + 0.008825165219604969, + -0.00047785299830138683, + 0.009223994798958302, + 0.0030951721128076315, + 0.004603511653840542, + -0.002927578752860427, + 0.0017957937670871615, + -0.04806320741772652, + -0.018346160650253296, + -0.045992687344551086, + 0.0013768106000497937, + -0.0015030358918011189, + -0.0027302855160087347, + -0.016038039699196815, + -0.016521727666258812, + -0.00763716222718358, + 0.001882772659882903, + -0.01795581728219986, + 0.0007992502069100738, + -0.03713357821106911, + -0.0023505487479269505, + -0.01496883761137724, + 0.0105986837297678, + 0.00012257910566404462, + -0.029547331854701042, + -0.004781711846590042, + -0.014247550629079342, + 0.012898318469524384, + 0.010522312484681606, + -0.008659693412482738, + 0.013331091031432152, + -0.00536298519000411, + -0.006385515909641981, + 0.0032203367445617914, + -0.020246965810656548, + -0.0013651427580043674, + 0.01955113559961319, + 0.008876079693436623, + -0.008383906446397305, + -0.01716664247214794, + -0.01503672357648611, + -0.020823994651436806, + -0.015282809734344482, + -0.0038928312715142965, + -0.004616240039467812, + -0.008799707517027855, + 0.07324887067079544, + 0.008697879500687122, + 0.04069758951663971, + 0.012983175925910473, + -0.01650475524365902, + 0.003188515082001686, + 0.008842136710882187, + -0.009190051816403866, + -0.014273007400333881, + 0.018532846122980118, + -0.007480176165699959, + 0.006780102849006653, + 0.03119356371462345, + -0.012728603556752205, + -0.01604652591049671, + -0.0014181785518303514, + 0.04419371113181114, + 0.004595025908201933, + -0.033637456595897675, + -0.0071619609370827675, + 0.01243160292506218, + -0.005290856119245291, + -0.004917483776807785, + 0.011294513940811157, + 0.014001463539898396, + 0.013577177189290524, + 0.0013110461877658963, + -0.016530213877558708, + 0.0220289696007967, + 0.014425750821828842, + -0.02569480799138546, + 0.0043149967677891254, + -0.019058963283896446, + -0.00663160253316164, + -0.0826171264052391, + -0.017989760264754295, + 0.02291148714721203, + 0.019534163177013397, + 0.0018912582891061902, + -0.009902853518724442, + 0.004548354540020227, + 0.006177615374326706, + -0.01609744131565094, + -0.02552509307861328, + 0.012457059696316719, + -0.020060278475284576, + 0.019058963283896446, + 0.04684126004576683, + -0.009198537096381187, + 0.005689685698598623, + 0.00293818605132401, + -0.010284711606800556, + 0.027425898239016533, + -0.012100659310817719, + 0.019041990861296654, + -0.00011323153739795089, + 0.03944170102477074, + -0.006309144664555788, + -0.001962326467037201, + 0.04694309085607529, + -0.017115728929638863, + 0.00876576453447342, + -0.014485150575637817, + -0.021519824862480164, + 0.01995844952762127, + 0.01025076862424612, + -0.005761814769357443, + 0.013407462276518345, + 0.008243892341852188, + -0.012983175925910473, + 0.008171763271093369, + 0.006741917226463556, + 0.03509700298309326, + -0.010284711606800556, + 0.020331822335720062, + 0.01119268499314785, + -0.001621836214326322, + -0.011913972906768322, + -0.00108034024015069, + -0.012889832258224487, + -0.015783468261361122, + -0.009902853518724442, + 0.006818288471549749, + 0.020128164440393448, + 0.012329773977398872, + 0.0024778349325060844, + 0.014094807207584381, + -0.0285799577832222, + 0.02179136872291565, + 0.01367900613695383, + 0.0032118509989231825, + -0.020773081108927727, + 0.0070346747525036335, + 0.004342575091868639, + 0.07352041453123093, + 0.008456035517156124, + 0.004828383680433035, + -0.0030081933364272118, + 0.0041983178816735744, + 0.0001988844305742532, + 0.001951719168573618, + 0.03397688642144203, + 0.03414659947156906, + -0.017701243981719017, + 0.004590782802551985, + -0.0059527438133955, + 0.006767373997718096, + 0.031804539263248444, + 0.0030230432748794556, + -0.003423994407057762, + 0.02403160370886326, + 0.0021978055592626333, + -0.003861009841784835, + -0.01978873647749424, + -0.016038039699196815, + 0.00453138304874301, + -0.019211705774068832, + -0.019279591739177704, + -0.007526847533881664, + -0.010369569063186646, + 0.007917191833257675, + -0.005901829339563847, + -0.022538114339113235, + 0.009198537096381187, + 0.02345457300543785, + -0.002462984761223197, + 0.0447707399725914, + 0.02521960623562336, + -0.006975274533033371, + 0.05305282026529312, + -0.010191368870437145, + 0.010819313116371632, + -0.020467594265937805, + 0.005494514014571905, + -0.006474616471678019, + -0.005027798470109701, + 0.0010559437796473503, + -0.014323921874165535, + 0.0004396671720314771, + 0.00048580835573375225, + 0.023844918236136436, + 0.009911339730024338, + -0.003947988618165255, + -0.031227506697177887, + 0.0064618876203894615, + -0.013458376750349998, + -0.0032118509989231825, + -0.015724068507552147, + -0.009741624817252159, + 0.005528456997126341, + -0.005078712943941355, + -0.01728544384241104, + -0.022487198933959007, + -0.017259987071156502, + 0.01926261931657791, + 0.01800673082470894, + 0.0007822787738405168, + -0.007781419437378645, + -0.008604535833001137, + 0.002670885296538472, + -0.012049744836986065, + -0.014315436594188213, + 0.01278800331056118, + 0.00654250243678689, + -0.00453138304874301, + 0.006334601901471615, + 0.003199122380465269, + 0.009368252009153366, + -0.024014631286263466, + 0.0028957573231309652, + 0.029784932732582092, + -0.014637893997132778, + 0.003332772757858038, + -0.04317542165517807, + 0.02038273774087429, + 0.022843601182103157, + 0.01995844952762127, + 0.003029407700523734, + -0.016708413138985634, + -0.0013852963456884027, + -0.006911631673574448, + 0.0010363204637542367, + 0.00629217317327857, + -0.022402342408895493, + -0.015257352963089943, + -0.004790197592228651, + -0.006996489129960537, + 0.001996269216760993, + -0.013280176557600498, + -0.02019605040550232, + -0.004900512285530567, + 0.0010050293058156967, + -0.003500365884974599, + -0.018872275948524475, + -0.02279268577694893, + -0.011540601029992104, + 0.00157622538972646, + -0.010997513309121132, + 0.028308413922786713, + -0.010242283344268799, + -0.027985956519842148, + 0.002660278230905533, + -0.017752159386873245, + -0.022232627496123314, + -0.0046247257851064205, + 0.00748441880568862, + 0.008354206569492817, + -0.012567374855279922, + 0.00340278004296124, + 0.004463497083634138, + 0.009546453133225441, + -0.004595025908201933, + 0.005999415181577206, + -0.0025520850904285908, + -0.014561522752046585, + 0.023233944550156593, + 0.007980834692716599, + 0.007611704990267754, + -0.009801024571061134, + -0.002518142107874155, + 0.018855305388569832, + 0.007004974875599146, + -0.0053460136987268925, + -0.002810899866744876, + -0.003010314656421542, + 0.02438800409436226, + 0.003262765472754836, + -0.008027506060898304, + 0.009325823746621609, + -0.009690710343420506, + 0.031040821224451065, + 0.007997806183993816, + -0.03564009070396423, + -0.021995026618242264, + 0.018515875563025475, + -0.0014987930189818144, + 0.001522128819487989, + 0.0033964156173169613, + -0.01619078405201435, + 0.015240381471812725, + -0.03526671603322029, + 0.043854281306266785, + 0.00866817869246006, + -0.016462327912449837, + 0.01001316774636507, + 0.015350695699453354, + -0.0009668435086496174, + -0.009580395184457302, + 0.007577762007713318, + -0.004455011337995529, + 0.0075013902969658375, + -0.005061741452664137, + 0.003888588398694992, + -0.006500073708593845, + 0.013305633328855038, + 0.009843453764915466, + -0.00891850795596838, + -0.03726935014128685, + -0.0005929407780058682, + 0.00858332123607397, + -0.0009504024055786431, + -0.04399005323648453, + -0.006903145927935839, + 0.015002780593931675, + -0.000873500423040241, + 0.0144681790843606, + -0.006377030164003372, + 0.008328749798238277, + 0.014917923137545586, + -0.008706364780664444, + 0.026865839958190918, + -0.025032920762896538, + 0.03241550922393799, + -0.00536298519000411, + -0.012864375486969948, + -0.04517805576324463, + -0.019058963283896446, + 0.011718801222741604, + 0.02445589005947113, + 0.00713226106017828, + -0.023895831778645515, + -0.019517192617058754, + 0.005172056145966053, + 0.002346305875107646, + 0.01133694313466549, + -0.02245325595140457, + -0.016233213245868683, + 0.020416680723428726, + 0.009300366044044495, + 0.016284126788377762, + -0.0006443855818361044, + 0.0030060717836022377, + 0.00021320411178749055, + -0.006181858479976654, + 0.01995844952762127, + 0.0026539138052612543, + 0.0003614393062889576, + -0.028308413922786713, + 0.014162693172693253, + -0.015291295945644379, + -0.012380688451230526, + -0.0049768839962780476, + -0.011175713501870632, + -0.012295830994844437, + -0.01617381162941456, + -0.005078712943941355, + -0.00941916648298502, + 0.01302560418844223, + 0.001612289808690548, + 0.008910022675991058, + -0.01726847141981125, + -0.008600292727351189, + 0.011812143959105015, + 0.0050914413295686245, + -0.016402926295995712, + 0.009300366044044495, + -0.017938844859600067, + -0.0021426482126116753, + 0.0002552350051701069, + -0.015308267436921597, + 0.011566057801246643, + 0.031278420239686966, + 0.005723628681153059, + 0.01175274420529604, + 0.0027621069457381964, + 0.01742970198392868, + 0.021927140653133392, + -0.014917923137545586, + 0.00057756039313972, + -0.015427067875862122, + -0.004578054416924715, + 0.00199732999317348, + -0.011141771450638771, + 0.0061224582605063915, + 0.0008125092135742307, + -0.005133870057761669, + -0.027086468413472176, + 0.0060036578215658665, + -0.03012436255812645, + -0.00024754481273703277, + 0.0110738854855299, + 0.01311046164482832, + -0.01278800331056118, + 0.01001316774636507, + 0.00857483595609665, + 0.008748793974518776, + -0.00876576453447342, + -0.014340893365442753, + -0.017056329175829887, + 0.029869789257645607, + -0.01538463868200779, + 0.005320556461811066, + -0.00470958324149251, + -0.011549086309969425, + 0.021417997777462006, + 0.017234528437256813, + 0.017175128683447838, + 0.01509612426161766, + -0.0298867616802454, + 0.010717484168708324, + 0.017395759001374245, + -0.005872128996998072, + 0.0039437455125153065, + -0.01800673082470894, + -0.03177059441804886, + 0.03250036761164665, + -0.0321439653635025, + 0.04147827625274658, + -0.007272275630384684, + -0.0006019568536430597, + -0.017293930053710938, + -0.02174045518040657, + 0.01883833296597004, + 0.0005616496200673282, + 0.023132115602493286, + 0.010590198449790478, + -0.00729773286730051, + -0.009775567799806595, + 0.021163424476981163, + 0.009699195623397827, + 0.006614631041884422, + 0.02783321402966976, + 0.019652964547276497, + -0.0215537678450346, + 0.004455011337995529, + 0.011107828468084335, + 0.017887931317090988, + -0.008307535201311111, + 0.01066656969487667, + 0.010607169941067696, + -0.013933577574789524, + 0.041444331407547, + -0.02516869269311428, + -0.03165179491043091, + -0.0024502561427652836, + -0.005948500707745552, + -0.010853256098926067, + 0.04134250432252884, + 0.017141185700893402, + 0.011319971643388271, + 0.003928895574063063, + 0.009096709080040455, + -0.0026920996606349945, + -0.028732700273394585, + 0.0036149234510958195, + -0.013297148048877716, + -0.03957747295498848, + 0.00587637210264802, + -0.0021723483223468065, + -0.0070474036037921906, + 0.0014531821943819523, + -0.0009938918519765139, + -0.00840512104332447, + -0.008638478815555573, + 0.0052993418648839, + 0.020213022828102112, + -0.016292612999677658, + -0.006635845173150301, + -0.015545867383480072, + 0.00016613479238003492, + 0.014722751453518867, + 0.016615070402622223, + 0.004548354540020227, + -0.0008713789866305888, + -0.010887199081480503, + 0.004145281855016947, + 0.027850184589624405, + 0.007968105375766754, + 0.005893343593925238, + -0.0009875275427475572, + -0.005265398882329464, + 0.025236578658223152, + -0.01843101717531681, + -0.016080468893051147, + -0.012210973538458347, + -0.0062582301907241344, + -0.009520995430648327, + 0.029801903292536736, + -0.0039458670653402805, + 0.014900951646268368, + 0.009699195623397827, + 0.030667448416352272, + 0.008108120411634445, + -0.01210914459079504, + -0.0433451384305954, + -0.005222970154136419, + -0.004017995670437813, + -0.02983584627509117, + -0.013144404627382755, + 6.0626603954005986e-5, + 0.02386188879609108, + 0.014349378645420074, + -0.0020906731951981783, + 0.015868326649069786, + -0.008265106938779354, + 0.00989436823874712, + -0.007641404867172241, + -0.019754793494939804, + -0.000904791580978781, + 0.0033900514245033264, + 0.0017756401794031262, + -0.0018679226050153375, + 0.020229993388056755, + 0.018057646229863167, + -0.0020811266731470823, + 0.0030760793015360832, + -0.008591807447373867, + -0.0021649233531206846, + 0.017616387456655502, + -0.01169334352016449, + 0.01033562608063221, + -0.003044257638975978, + 0.012686175294220448, + -0.024914119392633438, + -0.025440236553549767, + -0.031516022980213165, + 0.01836313121020794, + -0.020484566688537598, + -0.017463644966483116, + -0.012821946293115616, + 0.009648281149566174, + -0.010955085046589375, + 0.019635992124676704, + 0.020416680723428726, + 0.003379444358870387, + -0.014502122066915035, + 0.03207607939839363, + -0.0236921738833189, + 0.009410681203007698, + 0.02067125216126442, + 0.0007080285577103496, + 0.003339136950671673, + -0.01459546573460102, + -0.0037400880828499794, + 0.0004876646271441132, + -0.013992978259921074, + -0.01326320506632328, + 0.01083628460764885, + 0.015113095752894878, + 0.0035958304069936275, + 0.0028278713580220938, + -0.02243628539144993, + -0.02338668704032898, + -0.016105925664305687, + -0.01890621893107891, + -0.013237747363746166, + -0.005498756654560566, + -0.001047988305799663, + 0.004942941013723612, + -0.021231310442090034, + 0.002424798905849457, + 0.004348939750343561, + 0.0018933797255158424, + 0.011727286502718925, + 0.04283599555492401, + -0.03601346164941788, + -0.017378786578774452, + 0.028189614415168762, + 0.013390490785241127, + -0.00040360281127505004, + 0.009673738852143288, + -0.0028957573231309652, + 0.009537966921925545, + 0.011540601029992104, + -0.028613900765776634, + 0.011829115450382233, + -0.022656913846731186, + -0.005774543154984713, + 0.02783321402966976, + -0.016903584823012352, + -0.023064229637384415, + 0.017090272158384323, + 0.026441551744937897, + 0.017514558508992195, + 0.001745940069667995, + -0.02971704676747322, + -0.021706512197852135, + -0.0207221657037735, + -0.012032773345708847, + -0.005893343593925238, + -0.0024926848709583282, + 0.00846452172845602, + 0.0014977323589846492, + -0.013152889907360077, + -0.005180541425943375, + -0.003046379191800952, + 0.00829904992133379, + -0.007225603796541691, + -0.009207023307681084, + -0.0027790784370154142, + 0.007946891710162163, + 0.001469093025662005, + -0.027510754764080048, + -0.005693928804248571, + -0.004968398250639439, + -0.009088222868740559, + 0.0029721290338784456, + -0.0037676666397601366, + 0.0015571324620395899, + 0.014646380208432674, + 0.004463497083634138, + -0.0036764449905604124, + -0.022826628759503365, + -0.00646613072603941, + 0.006262472830712795, + 0.0028002928011119366, + 0.017081785947084427, + 0.006097001023590565, + 0.01232128869742155, + -0.001138149295002222, + -0.01936444826424122, + -0.0004457663162611425, + -0.0077559626661241055, + -0.004951426759362221, + 0.0008856986532919109, + 0.024371033534407616, + -0.012898318469524384, + -0.005753329023718834, + -0.01361112017184496, + 0.08920205384492874, + -0.00783657655119896, + -0.006860717199742794, + 0.007840819656848907, + 0.012940746732056141, + -0.017684273421764374, + 0.000282150722341612, + 0.0033667157404124737, + 0.016088955104351044, + -0.0014298465102910995, + -0.010938113555312157, + -0.02752772718667984, + 0.018091589212417603, + 0.00939370971173048, + -0.02498200535774231, + -0.007828091271221638, + 0.002193562686443329, + 0.028987273573875427, + 0.024252232164144516, + 0.007272275630384684, + -0.00850270688533783, + -0.015070666559040546, + -0.007272275630384684, + 0.00807417742908001, + -0.0031312364153563976, + 0.023997660726308823, + 0.022606000304222107, + -0.016080468893051147, + 0.019160790368914604, + 0.030056476593017578, + 0.001953840721398592, + -0.0022805414628237486, + -0.00032564011053182185, + -0.0297679603099823, + -0.007590490393340588, + 0.007458961568772793, + -0.006924360524863005, + 0.01604652591049671, + -0.010615655221045017, + 0.011286028660833836, + -0.004026481416076422, + -0.02191017009317875, + 0.02912304550409317, + 0.017870958894491196, + -0.024676518514752388, + 0.0018032188527286053, + -0.003330651205033064, + -0.0030081933364272118, + 0.0014213607646524906, + 0.012236431241035461, + 0.023352744057774544, + -0.01943233422935009, + 0.013042575679719448, + 0.005070227198302746, + 0.022928457707166672, + -0.003279736964032054, + 0.01075142715126276, + -0.004455011337995529, + -0.007891734130680561, + 0.0010421543847769499, + -0.0019008048111572862, + -0.012032773345708847, + -0.0021659841295331717, + -0.008426335640251637, + -0.011286028660833836, + -0.002893635770305991, + -0.020450623705983162, + -0.007526847533881664, + 0.0005849854205735028, + 0.013509291224181652, + -0.014917923137545586, + 0.003143965033814311, + 0.01083628460764885, + -0.01662355661392212, + -0.0015931968810036778, + 0.018821362406015396, + 0.01258434634655714, + 0.00965676736086607, + 0.03407871350646019, + -0.00023017557396087795, + -0.0029700074810534716, + 0.008150549605488777, + -0.002759985625743866, + -0.024710461497306824, + -0.012058230116963387, + -1.959840346899e-6, + 0.022249599918723106, + -0.0281047560274601, + 0.015698611736297607, + -0.004972641356289387, + -0.01776912994682789, + -0.012889832258224487, + 0.005498756654560566, + 0.004323482513427734, + -0.010208340361714363, + 0.012007315643131733, + -0.004781711846590042, + -0.013636576943099499, + -0.0038122166879475117, + -0.012278859503567219, + 0.017921874299645424, + 0.011472715064883232, + 0.0024438919499516487, + 0.0011911852052435279, + 0.004374396987259388, + 0.005604828242212534, + 0.018108559772372246, + -0.013458376750349998, + -0.02095976658165455, + 0.004310753662139177, + 0.0005067575257271528, + -0.012304317206144333, + -0.0038546454161405563, + 0.0036212876439094543, + -0.028274470940232277, + -0.00298910029232502, + -0.0029318216256797314, + 0.008731822483241558, + -0.029988590627908707, + -0.01683569885790348, + -0.02102765254676342, + -0.002320848638191819, + -0.011133285239338875, + -0.024676518514752388, + -0.007849305868148804, + 0.011472715064883232, + -0.01790490187704563, + -0.0017639723373576999, + -0.016903584823012352, + 0.002768471371382475, + 0.016275640577077866, + 0.022283542901277542, + 0.00807417742908001, + -0.00804872065782547, + 0.019585078582167625, + -0.007458961568772793, + -0.011964887380599976, + 0.009953767992556095, + 0.014756694436073303, + -0.014408779330551624, + 0.026509437710046768, + -0.00016746069013606757, + -0.010437455028295517, + 0.007454718928784132, + -0.010395025834441185, + 0.0037400880828499794, + 0.0036446235608309507, + -0.018464960157871246, + 0.02493109181523323, + -0.0037846381310373545, + 0.019534163177013397, + -0.04103701934218407, + 0.013483834452927113, + -0.017370300367474556, + 0.011981858871877193, + 0.014009949751198292, + -0.011981858871877193, + 0.0289363581687212, + -0.01355171948671341, + 0.014154206961393356, + 0.004020117223262787, + 0.007845062762498856, + -0.014349378645420074, + 0.015257352963089943, + -0.013865692541003227, + 0.00840512104332447, + 0.009317337535321712, + 0.022538114339113235, + 0.024761376902461052, + 0.0022105341777205467, + -0.004501682706177235, + 0.01258434634655714, + 0.012550403364002705, + -0.027476811781525612, + -0.009164594113826752, + 0.002759985625743866, + 0.01405237801373005, + 0.008447550237178802, + -0.005273884627968073, + 0.019092906266450882, + -0.009716167114675045, + -0.017735186964273453, + 0.011184199713170528, + 0.004603511653840542, + -0.006164886988699436, + -0.025660865008831024, + 0.009843453764915466, + -0.0010861741611734033, + 0.004109217319637537, + -0.012058230116963387, + 0.0013672641944140196, + 0.028783615678548813, + -0.0015974397538229823, + -0.011718801222741604, + -0.0009413863299414515, + -0.007654133718460798, + 0.00823964923620224, + 0.002392977476119995, + 0.01919473335146904, + -0.002936064498499036, + 0.010496854782104492, + 0.002641185186803341, + 0.008646965026855469, + 0.026424581184983253, + 0.0048665693029761314, + -0.020111193880438805, + -0.015333724208176136, + -0.008697879500687122, + 0.0004717538831755519, + -0.019160790368914604, + -0.013738405890762806, + -0.019449306651949883, + 0.01127754244953394, + 0.010793855413794518, + -0.009368252009153366, + 0.005358742084354162, + 0.010301683098077774, + -0.0004998628864996135, + 0.004497440066188574, + 0.0077347480691969395, + 0.005019312724471092, + 0.011455743573606014, + 0.007857791148126125, + -0.023064229637384415, + -0.0030782006215304136, + 0.00804872065782547, + 0.00621580146253109, + -0.0007117411005310714, + 0.025559036061167717, + 0.0010273043299093843, + 0.01662355661392212, + -0.0014563644072040915, + -0.01334806252270937, + 0.021401025354862213, + 0.001253767404705286, + 0.03692992031574249, + 0.009436137974262238, + -0.013407462276518345, + 0.009979224763810635, + -0.011387857608497143, + -0.010700512677431107, + 0.0030697148758918047, + -0.019703878089785576, + -0.009520995430648327, + -0.013865692541003227, + -0.0075141191482543945, + 0.0015995611902326345, + -0.007327432744204998, + -0.0008565289317630231, + -3.550087058101781e-5, + -0.012754060328006744, + -0.010148939676582813, + -0.0034982445649802685, + 0.00504901260137558, + 0.005940014962106943, + -0.001968690659850836, + -0.015486467629671097, + 0.009020336903631687, + 0.011778200976550579, + -0.012126116082072258, + -0.007662619464099407, + 0.011464228853583336, + -0.010615655221045017, + -0.02067125216126442, + 0.008044477552175522, + 0.02138405479490757, + -0.03557220473885536, + 0.002229626988992095, + 0.0025032919365912676, + 0.016996929422020912, + -0.004824140574783087, + -0.0019782371819019318, + -0.002734528388828039, + 0.009979224763810635, + -0.0003251097514294088, + 0.0025308707263320684, + 0.023946745321154594, + -0.014001463539898396, + -0.007692319341003895, + -0.005040526855736971, + -0.00874030776321888, + 0.0029806147795170546, + 0.006746159866452217, + -0.016250183805823326, + -0.010386540554463863, + -0.014892466366291046, + 0.019805707037448883, + 0.025440236553549767, + -0.005350256338715553, + 0.029581274837255478, + -0.0032288224902004004, + -0.010064082220196724, + -0.01771821640431881, + -0.007666862104088068, + 0.010038625448942184, + 0.008986393921077251, + -0.0054223849438130856, + -0.018278274685144424, + 0.026713095605373383, + 0.007543819025158882, + -0.0012314923806115985, + -0.0038100953679531813, + 0.001487125176936388, + -0.021299196407198906, + 0.008867593482136726, + 0.020756108686327934, + 0.01960204914212227, + -0.0016982078086584806, + -0.0061436728574335575, + 0.0031185077968984842, + 0.004113460425287485, + -0.00170139002148062, + -0.011438772082328796, + -0.013636576943099499, + -0.010870227590203285, + -0.011888516135513783, + 0.00822692085057497, + 0.021893197670578957, + -0.011150256730616093, + -0.003044257638975978, + -0.011812143959105015, + 0.002365398919209838, + 0.025270521640777588, + 0.007285004016011953, + 0.017989760264754295, + -0.013271690346300602, + 0.006495830602943897, + -6.868142372695729e-5, + 0.0007902341312728822, + -0.0110738854855299, + 0.00605457229539752, + -0.011633943766355515, + -0.014188149943947792, + -0.005923043470829725, + -0.014985809102654457, + 0.028461158275604248, + 0.00025961047504097223, + -0.004429554101079702, + -0.0026220923755317926, + 0.003547037485986948, + -0.02185925468802452, + -0.0072680325247347355, + -0.016895100474357605, + -0.0044210683554410934, + 0.0021829556208103895, + 0.007157718297094107, + -0.0033518655691295862, + -0.024116460233926773, + 0.010793855413794518, + 0.004548354540020227, + -0.02043365128338337, + 0.02279268577694893, + 0.013339576311409473, + 0.008566349744796753, + -0.014654865488409996, + -0.010878712870180607, + 0.02114645391702652, + 0.02705252543091774, + 0.002516020555049181, + -0.013152889907360077, + -0.013509291224181652, + 0.001747000846080482, + -0.006593416444957256, + -0.012830432504415512, + 0.007051646243780851, + -0.004688369110226631, + 0.009877396747469902, + 0.013543234206736088, + -0.04796137660741806, + 0.004968398250639439, + -0.01938142068684101, + -0.021927140653133392, + -0.011319971643388271, + -0.0022975129541009665, + -0.012041258625686169, + 0.012804974801838398, + 0.0029615217354148626, + 0.010386540554463863, + -0.017887931317090988, + -0.005358742084354162, + 0.010505340993404388, + 0.0013396855210885406, + 0.0003113204147666693, + -0.024778347462415695, + 0.011523629538714886, + 0.024540748447179794, + 0.011905487626791, + 0.0289363581687212, + 0.018702561035752296, + -0.011209656484425068, + -0.0021744698751717806, + 0.0007143928669393063, + 0.008188734762370586, + 0.0171496719121933, + -0.014137235470116138, + 0.0031673009507358074, + -0.010632626712322235, + 0.010479883290827274, + 0.006478859111666679, + -0.004781711846590042, + -0.003044257638975978, + -0.004488954320549965, + 0.01444272231310606, + 0.0031673009507358074, + 0.025372350588440895, + -0.031108707189559937, + 0.015070666559040546, + -0.009563423693180084, + 0.008523921482264996, + -0.012210973538458347, + -0.002392977476119995, + 5.227345900493674e-5, + -0.0076074618846178055, + -0.003922531381249428, + 0.025711778551340103, + 0.007077103480696678, + -0.013908120803534985, + 0.014086320996284485, + 0.015825897455215454, + -0.019754793494939804, + 0.015214923769235611, + 0.00714498944580555, + 0.010632626712322235, + 0.0105986837297678, + -0.006979517638683319, + -0.0018658011686056852, + 0.02947944588959217, + -0.009147623553872108, + 0.01042896881699562, + 0.004675640258938074, + -0.009461595676839352, + -0.016657499596476555, + -0.005812728777527809, + 0.013127433136105537, + -0.014298465102910995, + 0.003708266420289874, + 0.024710461497306824, + -0.0020991589408367872, + 0.01350080594420433, + -0.009928311221301556, + -0.010437455028295517, + -0.011455743573606014, + -0.0041983178816735744, + -0.0033455013763159513, + 0.00698376027867198, + -0.02374308928847313, + -0.0035258231218904257, + 0.010615655221045017, + -0.004302267916500568, + 0.001612289808690548, + 0.001514703850261867, + 0.006932846270501614, + -0.013602633960545063, + -0.009639795869588852, + -0.007577762007713318, + -0.0018891369691118598, + -0.0009127469384111464, + -0.01662355661392212, + 0.021842284128069878, + -0.038898613303899765, + 0.006657059770077467, + -0.004595025908201933, + 0.0020005120895802975, + -0.012966204434633255, + -0.012643746100366116, + 0.006037600804120302, + -0.00378039525821805, + 0.02002633549273014, + -0.004090124741196632, + -0.0012240674113854766, + 0.002740892581641674, + 0.0232169721275568, + 0.018617704510688782, + 0.00512538431212306, + 0.022011999040842056, + 0.017735186964273453, + -0.008383906446397305, + 0.01871953345835209, + 0.0023526703007519245, + -0.008604535833001137, + -0.004240746609866619, + -0.0068225315771996975, + -0.014688808470964432, + -0.01919473335146904, + 0.020688224583864212, + -0.0037931238766759634, + 0.0003381035348866135, + 0.00596547219902277, + 0.0049853697419166565, + -0.004455011337995529, + 0.007632919121533632, + 0.00722136115655303, + -0.004908998031169176, + 0.0002964703890029341, + 0.01479912269860506, + -0.013042575679719448, + 0.015528895892202854, + 0.0005231986287981272, + 0.006691002752631903, + 0.001989905023947358, + 0.012406145222485065, + 0.0017088149907067418, + -0.0026836139149963856, + -0.00788324885070324, + 0.01771821640431881, + -0.0003015087859239429, + -0.011319971643388271, + -0.006623116787523031, + 0.0151215810328722, + -0.009232480078935623, + 0.00748441880568862, + -0.012804974801838398, + -0.0229793731123209, + 0.018515875563025475, + -0.005078712943941355, + 0.019822679460048676, + -0.008706364780664444, + -0.0065764449536800385, + 0.01753152906894684, + 0.007840819656848907, + 0.00897790864109993, + -0.014391807839274406, + -0.0006921178428456187, + -0.017039356753230095, + 0.0018795904470607638, + 0.007785662543028593, + 0.006338844541460276, + 0.012821946293115616, + -0.0015900147845968604, + -0.008290563710033894, + -0.012312802486121655, + 0.010785370133817196, + 0.000461411866126582, + -0.009274909272789955, + 0.017412729561328888, + 0.004802926443517208, + 0.024489833042025566, + -0.003216093871742487, + 0.026662182062864304, + 0.0047732265666127205, + 0.008481493219733238, + 0.00495991250500083, + -0.005303584970533848, + -0.008757279254496098, + -0.010904170572757721, + -0.01902502030134201, + 0.008685150183737278, + 0.003502487437799573, + -0.010938113555312157, + -0.0073868329636752605, + -0.01961902156472206, + -0.00017302946071140468, + 0.016462327912449837, + 0.006279444321990013, + 0.03638683632016182, + -0.01683569885790348, + 0.01001316774636507, + -0.016844185069203377, + -0.006962546147406101, + 0.01553738210350275, + 0.01302560418844223, + 0.010624141432344913, + -0.007972348481416702, + 0.006321873050183058, + -0.013772348873317242, + -0.0032415511086583138, + 0.018974104896187782, + -0.006224287208169699, + -0.0006549927056767046, + 0.01985662244260311, + -0.001979297958314419, + -0.0007626555161550641, + -0.01300014741718769, + -0.0019867229275405407, + -0.01402692124247551, + -0.012516460381448269, + -0.039305929094552994, + -0.006839503068476915, + -0.0027918070554733276, + -0.0060163866728544235, + 0.004181346390396357, + -0.018464960157871246, + -0.005099927075207233, + -0.015520410612225533, + -0.010089539922773838, + 0.008774250745773315, + -0.002418434713035822, + -0.0039755674079060555, + 0.020162107422947884, + -0.0167847853153944, + 0.03900044038891792, + -0.017820045351982117, + -0.00874030776321888, + -0.0013927214313298464, + 0.021927140653133392, + 0.014230579137802124, + -0.010378054343163967, + -0.0026008780114352703, + -0.024829262867569923, + -0.02097673900425434, + 0.00570241454988718, + 0.002363277366384864, + 0.002170227002352476, + 0.0033879298716783524, + -0.0025945135857909918, + 0.0067037311382591724, + -0.02138405479490757, + -0.00959736667573452, + 0.008027506060898304, + 0.004565326031297445, + 0.0005664228810928762, + -0.01617381162941456, + 0.021248282864689827, + -0.0056769573129713535, + 0.02102765254676342, + -0.01243160292506218, + 0.01036108285188675, + -0.015511925332248211, + 0.019483249634504318, + 0.0043913680128753185, + -0.008748793974518776, + -0.0038037309423089027, + -0.007111046463251114, + 0.0037146308459341526, + 0.005982443690299988, + -0.006067301146686077, + -0.012779518030583858, + 0.014077835716307163, + 0.02698463946580887, + -0.003137600841000676, + -0.00037681969115510583, + 0.01955113559961319, + -0.0105986837297678, + -0.025304464623332024, + -0.01350080594420433, + -0.007009217515587807, + -0.02569480799138546, + 0.011260570958256721, + 0.017412729561328888, + -0.015851354226469994, + 0.01266920380294323, + 0.0023420630022883415, + -0.00854937918484211, + -0.0037931238766759634, + 0.003672202117741108, + 0.0038779813330620527, + -0.006869202945381403, + 0.010496854782104492, + -0.0016812364337965846, + 0.008243892341852188, + -0.024489833042025566, + 0.017565472051501274, + -0.021825311705470085, + 0.00829904992133379, + 0.0034346014726907015, + 0.001872165477834642, + -0.017090272158384323, + -0.006606145296245813, + 0.01807461678981781, + -0.007475933060050011, + -0.03290768340229988, + -0.021536797285079956, + -0.003710387973114848, + 0.01201580185443163, + -0.01748061552643776, + 0.00036753842141479254, + 0.009122165851294994, + 0.0114302858710289, + -0.0151215810328722, + -0.02291148714721203, + -0.0039649601094424725, + -0.0013322605518624187, + -0.007467447314411402, + 0.02936064638197422, + -0.0020291516557335854, + 0.008774250745773315, + 0.00420892471447587, + -0.009605852887034416, + 0.006521287839859724, + -0.025440236553549767, + -0.014273007400333881, + 0.011353914625942707, + -0.004684126004576683, + -0.0012834675144404173, + -1.3316969670995604e-5, + 0.004815654829144478, + -0.0004876646271441132, + -0.005545428488403559, + -0.0016982078086584806, + -0.00915610883384943, + -0.015240381471812725, + -0.0005428218864835799, + -0.01995844952762127, + -0.020840967074036598, + 0.004185589030385017, + 0.0027005854062736034, + 0.0069498177617788315, + -0.020416680723428726, + -0.026730068027973175, + -0.010649598203599453, + -0.010378054343163967, + 0.0073656183667480946, + 0.015571325086057186, + -0.011311485432088375, + 0.005498756654560566, + -0.013322604820132256, + -0.009580395184457302, + 0.0034112657885998487, + -0.0004317118145991117, + -0.007480176165699959, + 0.018414046615362167, + -0.007662619464099407, + 0.004768983460962772, + 0.006614631041884422, + -0.008108120411634445, + -0.020807024091482162, + -0.01619078405201435, + 0.005256913136690855, + -0.022945430129766464, + 0.0062582301907241344, + -0.0029806147795170546, + 0.011396342888474464, + 0.00864272192120552, + -0.011082370765507221, + -0.0030930505599826574, + 0.0007812180556356907, + -0.004896269645541906, + 0.023963717743754387, + -0.01748061552643776, + 0.009851939044892788, + 0.014731236733496189, + 0.0033455013763159513, + -0.0038016096223145723, + -0.001441514352336526, + -0.016657499596476555, + 0.0011848208960145712, + -0.01614835485816002, + 0.016801755875349045, + -0.005498756654560566, + 0.02255508489906788, + -0.024727433919906616, + -0.025609949603676796, + -0.003341258503496647, + 0.0027705926913768053, + 0.002912728814408183, + -0.010844769887626171, + -0.021961083635687828, + 0.0031757866963744164, + -0.021774398162961006, + 0.018278274685144424, + 0.002044001594185829, + -0.006750402972102165, + 0.03638683632016182, + -0.00959736667573452, + 0.0110738854855299, + 0.010496854782104492, + 0.010955085046589375, + -0.011031456291675568, + 0.006033358164131641, + 0.0027451354544609785, + 0.023301830515265465, + 0.010997513309121132, + -0.015486467629671097, + 0.012304317206144333, + -0.005553914234042168, + -0.015520410612225533, + -0.015876810997724533, + -0.00876576453447342, + -0.0022720557171851397, + 0.03421448543667793, + -0.019466277211904526, + 0.0069201174192130566, + -0.018753476440906525, + -0.024303147569298744, + 0.006338844541460276, + -0.019585078582167625, + -0.007263789884746075, + 0.011141771450638771, + 0.006444916129112244, + 0.0030569862574338913, + -0.010861741378903389, + -0.013161376118659973, + -0.00689466018229723, + 0.004247110802680254, + -0.032636139541864395, + 0.011005999520421028, + -0.0027790784370154142, + 0.018821362406015396, + -0.004319239407777786, + 0.013959035277366638, + 0.016708413138985634, + -0.00453138304874301, + -0.009775567799806595, + 0.006975274533033371, + 0.028800586238503456, + 0.012991661205887794, + 0.0015433431835845113, + -0.02876664325594902, + -0.02014513686299324, + -0.01860073208808899, + 0.013687491416931152, + 0.004480468574911356, + -0.019805707037448883, + -0.005634528584778309, + -0.009690710343420506, + 0.012100659310817719, + -0.017209071666002274, + 0.0008294806466437876, + 0.004989612381905317, + -0.0018689832650125027, + 0.011506658047437668, + 0.0048792981542646885, + 0.004450768232345581, + -0.01202428713440895, + 0.010293197818100452, + -0.01225340273231268, + -0.0030145575292408466, + -0.018227361142635345, + 0.004493196960538626, + 0.009563423693180084, + -0.005617557093501091, + 0.010131968185305595, + 0.01328866183757782, + -0.007594733498990536, + -0.029377616941928864, + 0.013568690977990627, + -0.0025287491735070944, + 0.02121433988213539, + 0.0007398501038551331, + -0.026203952729701996, + -0.009122165851294994, + -0.0028384786564856768, + -0.007102560717612505, + -0.0005494513898156583, + 0.01838010363280773, + -0.018295247107744217, + -0.0033476226963102818, + 0.0030866863671690226, + 0.020399708300828934, + 0.010242283344268799, + 0.01641141250729561, + -0.014315436594188213, + 0.0024969277437776327, + -0.006478859111666679, + 0.00411982461810112, + 0.0037910023238509893, + 0.002123555401340127, + -0.004735040478408337, + -0.005201756022870541, + -0.021570740267634392, + 0.007458961568772793, + 0.002058851532638073, + 0.01659809984266758, + -0.0031736651435494423, + -0.013653548434376717, + 0.0012580102775245905, + -0.013543234206736088, + -0.008316021412611008, + 0.005766057409346104, + -0.01252494566142559, + 0.008731822483241558, + 0.01997542195022106, + -0.011286028660833836, + 0.0030251648277044296, + 0.0018668618286028504, + -2.0965733710909262e-5, + -0.019771764054894447, + -0.008876079693436623, + 0.005770300514996052, + -0.0006343087297864258, + -0.0223853699862957, + -0.013483834452927113, + 0.0006587052484974265, + -0.008231163956224918, + -0.0020726409275084734, + -0.0059103150852024555, + -0.0007621251279488206, + 0.0061436728574335575, + 0.01065808441489935, + 0.010471398010849953, + 0.004308632109314203, + 0.012855889275670052, + -0.005265398882329464, + 0.016640527173876762, + -0.035775862634181976, + 0.005693928804248571, + 0.03445208817720413, + -0.015554353594779968, + -0.010089539922773838, + 0.006691002752631903, + 0.00398193160071969, + -0.01057322695851326, + 0.014086320996284485, + -0.007505633402615786, + -0.0032500368542969227, + 0.0017247258219867945, + 0.007174689322710037, + 0.0037316023372113705, + -0.027476811781525612, + 0.009308852255344391, + 0.001961265690624714, + 0.010590198449790478, + -0.007327432744204998, + -0.007344404235482216, + -0.014018435031175613, + -0.01101448480039835, + -0.013135918416082859, + 0.010208340361714363, + -0.015062181279063225, + -0.005235699005424976, + -0.014137235470116138, + -0.008163277991116047, + -0.004942941013723612, + 0.001263313926756382, + 0.009368252009153366, + 0.02014513686299324, + 0.01276254653930664, + -0.009249451570212841, + -0.0018170081311836839, + -0.018923191353678703, + -0.0164283849298954, + 0.014349378645420074, + 0.027137381955981255, + 0.021604683250188828, + 0.01083628460764885, + -0.0005536942626349628, + -0.0028809073846787214, + 0.0065679592080414295, + -0.003216093871742487, + -0.011964887380599976, + 0.011761229485273361, + -0.002276298590004444, + 0.010386540554463863, + -0.011701829731464386, + 0.0018467082409188151, + -0.0015794076025485992, + 0.0016674470389261842, + -0.008634235709905624, + 0.0110738854855299, + 0.008816679008305073, + 0.005545428488403559, + 0.0028978786431252956, + 0.0028342357836663723, + -0.003786759451031685, + -0.0076074618846178055, + 0.0005876371869817376, + 0.014425750821828842, + -0.008943965658545494, + 0.0025690565817058086, + -0.006275201682001352, + 0.0018912582891061902, + 0.009512510150671005, + 0.018583761528134346, + -0.003648866433650255, + 0.00991982501000166, + 0.0007371982792392373, + 0.0002590801159385592, + 0.002974250353872776, + -0.022130798548460007, + 0.0007600036915391684, + -0.0116084860637784, + -0.015427067875862122, + 0.013161376118659973, + -0.011133285239338875, + 0.03419751673936844, + -0.015970153734087944, + -0.010021653957664967, + -0.03236459568142891, + -0.019330505281686783, + -0.0006274140905588865, + 0.008825165219604969, + 0.01802370324730873, + 0.0005001280223950744, + 0.007942648604512215, + 0.020179079845547676, + 0.0036700807977467775, + -0.013721434399485588, + 0.0028278713580220938, + -0.011803658679127693, + 0.011574543081223965, + -0.018872275948524475, + 0.008150549605488777, + 0.015002780593931675, + -0.025660865008831024, + 0.008842136710882187, + 0.005732114426791668, + 0.014807608909904957, + 0.0026051208842545748, + 0.019924506545066833, + -0.017183614894747734, + -0.009546453133225441, + -0.04032421484589577, + 0.0007886430830694735, + 0.0017024506814777851, + -0.012686175294220448, + -0.01748061552643776, + 0.0007186357397586107, + 0.0024396490771323442, + -0.0006730249151587486, + -0.007187418173998594, + -0.003269129665568471, + 0.02143496833741665, + -0.010539283975958824, + -0.0068140458315610886, + 0.00036303038359619677, + -0.012771031819283962, + 0.03255128115415573, + 0.007658376358449459, + -0.0054223849438130856, + 0.0028002928011119366, + 0.013738405890762806, + 0.015197952277958393, + -0.024167375639081, + 0.002581785200163722, + -0.0213161688297987, + 0.014510608278214931, + 0.012007315643131733, + 0.02050153724849224, + 0.010921142064034939, + 0.001916715526022017, + 0.00891850795596838, + 0.010522312484681606, + 0.006988003384321928, + -0.013577177189290524, + 0.010471398010849953, + -0.0009419166599400342, + -0.002866057213395834, + -0.022758742794394493, + -0.011600000783801079, + -0.028868472203612328, + 0.006669788155704737, + -0.0064703733660280704, + 0.010675055906176567, + -0.01766730099916458, + -0.026085151359438896, + 0.005914557725191116, + 0.0006311265751719475, + 0.031142650172114372, + 0.02262297086417675, + 0.017701243981719017, + -0.004790197592228651, + 7.043823302410601e-8, + -0.013398976996541023, + 0.0006772677879780531, + -0.014086320996284485, + -0.007709290832281113, + 0.011362399905920029, + 0.0012028530472889543, + 0.02062033861875534, + 0.0028787858318537474, + -0.028902415186166763, + -0.015987126156687737, + -0.018464960157871246, + -0.0021999268792569637, + 0.0298867616802454, + 0.0063643017783761024, + -0.004211046267300844, + -0.004228017758578062, + 0.010403512045741081, + 0.00998771097511053, + 0.014714266173541546, + -0.006529773585498333, + 0.015019752085208893, + -0.009368252009153366, + -0.01468032319098711, + -0.011990344151854515, + -0.004930212628096342, + 0.01955113559961319, + -0.022232627496123314, + 0.0004990673041902483, + 0.005239941645413637, + 0.016895100474357605, + -0.0031036578584462404, + -0.008587564341723919, + -0.00034420265001244843, + -0.0007382589974440634, + -0.003500365884974599, + 0.02109553851187229, + -0.013959035277366638, + -0.004917483776807785, + 0.021808341145515442, + -0.0009318398660980165, + -0.007149232551455498, + -0.007942648604512215, + -0.010802341625094414, + -0.0011148134944960475, + 0.019568106159567833, + 0.006270958576351404, + 0.006402487400919199, + -0.011209656484425068, + 0.004249232355505228, + -0.016555670648813248, + 0.001093599246814847, + 0.018770447000861168, + 0.0059951720759272575, + -0.009427652694284916, + 0.013135918416082859, + 0.01802370324730873, + -0.009470080956816673, + -0.015138552524149418, + -0.00754806213080883, + 0.012440088205039501, + -0.002734528388828039, + 0.004590782802551985, + 5.064923607278615e-5, + 0.011947915889322758, + 0.008532407693564892, + -0.021010681986808777, + -0.0014850037405267358, + -0.027188297361135483, + -0.019568106159567833, + -0.0001922549563460052, + -0.03273796662688255, + 0.0017491222824901342, + 0.007849305868148804, + 0.004015874583274126, + -0.013543234206736088, + -0.004484711214900017, + 0.001827615313231945, + 0.011133285239338875, + -0.01754850149154663, + -0.002526627853512764, + -0.027476811781525612, + -0.011506658047437668, + -0.0045398687943816185, + 0.0028787858318537474, + -0.010997513309121132, + 0.0014489393215626478, + -0.0005658924928866327, + 0.010038625448942184, + 0.01583438366651535, + 0.011583029292523861, + 0.010768398642539978, + 0.005396927706897259, + 0.024846233427524567, + 0.0037846381310373545, + 0.00854937918484211, + -0.010547769255936146, + 0.0026920996606349945, + -0.03173665329813957, + 0.01420512143522501, + 0.019330505281686783, + 0.005142355803400278, + -0.004149524960666895, + -0.007344404235482216, + -0.007853548042476177, + 0.025066863745450974, + 0.007577762007713318, + -0.005418142303824425, + -0.002159619703888893, + 0.0020726409275084734, + -0.011964887380599976, + 0.03154996410012245, + -0.018040673807263374, + 0.0024948061909526587, + 0.017463644966483116, + -0.0013481712667271495, + 0.01514703780412674, + 0.0005067575257271528, + 0.009351280517876148, + 0.005490270908921957, + -0.010921142064034939, + -0.005278127733618021, + -0.008456035517156124, + -0.00479868333786726, + 0.01579195447266102, + -0.03971324488520622, + 0.0006099122692830861, + 0.014934894628822803, + 0.0030400147661566734, + 0.00340278004296124, + -0.011464228853583336, + -0.0011752743739634752, + -0.019652964547276497, + 0.009402194991707802, + 0.006347330287098885, + 0.014765179716050625, + 0.009716167114675045, + -7.318946882151067e-5, + -0.007666862104088068, + -0.005176298785954714, + 0.006584930699318647, + -0.007425018586218357, + -0.020773081108927727, + 0.01435786485671997, + -0.021350111812353134, + -0.008019019849598408, + -0.014281493611633778, + 0.015800440683960915, + -0.0023229701910167933, + 0.011829115450382233, + -0.017853988334536552, + -0.035707976669073105, + -0.0006205194513313472, + -0.0005038405652157962, + 0.017378786578774452, + -0.004408339504152536, + -0.009427652694284916, + -0.008171763271093369, + 0.003950110170990229, + -0.0007987198769114912, + -0.004968398250639439, + 0.01007256843149662, + 0.006525530945509672, + -0.006389759015291929, + -0.0075989761389791965, + 5.197513019083999e-5, + -0.0011232992401346564, + -0.0004937637713737786, + 0.01260980311781168, + 0.004718068987131119, + 0.009775567799806595, + -0.010462911799550056, + -0.01812553219497204, + -0.005800000391900539, + 0.017234528437256813, + 0.005672714207321405, + 0.013127433136105537, + 0.01966993510723114, + 0.016156841069459915, + 0.0034982445649802685, + 0.0018297367496415973, + -0.015367667190730572, + -0.027680469676852226, + 0.00957190990447998, + -0.019177762791514397, + 0.014875494875013828, + -0.005931529216468334, + 0.002641185186803341, + 0.015995612367987633, + 0.0011880029924213886, + 0.008163277991116047, + -0.013653548434376717, + 0.009139137342572212, + -0.007123775314539671, + -0.001460607280023396, + -0.015367667190730572, + 0.018176445737481117, + -0.0009477505809627473, + -0.0021267374977469444, + -0.01607198268175125, + 0.0029339431785047054, + -0.002129919594153762, + 0.003205486573278904, + -0.008243892341852188, + -0.014773665927350521, + -0.002543599344789982, + 0.0029063643887639046, + -0.010742941871285439, + -0.01854981854557991, + 0.008850621990859509, + -0.01001316774636507, + 0.007509876042604446, + -0.003199122380465269, + 0.014561522752046585, + 0.0005266459775157273, + -0.00891850795596838, + -0.003733723657205701, + 0.01659809984266758, + 0.0015921361045911908, + -0.005354499444365501, + -0.0229793731123209, + 0.02805384248495102, + 0.015494953840970993, + -0.0017215436091646552, + -0.016088955104351044, + 0.0029000001959502697, + -0.029224874451756477, + -0.010539283975958824, + 0.004247110802680254, + -0.020162107422947884, + 0.0112520856782794, + 5.7742778153624386e-5, + -0.027968984097242355, + -0.005167813040316105, + -0.0297679603099823, + -0.012558888643980026, + 0.010479883290827274, + 0.003339136950671673, + 0.011880029924213886, + 0.005749085918068886, + 0.007709290832281113, + 0.0027790784370154142, + -0.013950549066066742, + 0.006864960305392742, + 0.020213022828102112, + 0.06581536680459976, + 0.028495101258158684, + 0.0110738854855299, + 0.00033571693347766995, + 0.012380688451230526, + -0.04945486783981323, + 0.008566349744796753, + -0.009317337535321712, + -0.024795319885015488, + -0.025440236553549767, + 0.006156401243060827, + -0.01470577996224165, + 0.016844185069203377, + 0.014502122066915035, + -0.021757425740361214, + 0.012304317206144333, + -0.011600000783801079, + -0.01612289808690548, + 0.00264967093244195, + -0.005872128996998072, + 0.008349964395165443, + 0.021570740267634392, + -0.01232128869742155, + -0.01134542841464281, + 0.015613753348588943, + 0.0014754573348909616, + -0.012813461013138294, + -0.02067125216126442, + -0.0007165143033489585, + -0.0008692575502209365, + 0.024116460233926773, + -0.010106511414051056, + -0.024320118129253387, + -0.005460571032017469, + -0.009953767992556095, + 0.009936796501278877, + -0.0010591258760541677, + 0.026017265394330025, + 0.007798390928655863, + -0.004132553469389677, + -0.022113827988505363, + -0.004497440066188574, + 0.019177762791514397, + -0.023115143179893494, + -0.00822692085057497, + 0.005757571663707495, + 0.005027798470109701, + 0.006877688691020012, + -0.002042940817773342, + -0.0014913680497556925, + 0.0019008048111572862, + 0.006164886988699436, + -0.0036297733895480633, + -0.00840512104332447, + -0.0163095835596323, + -0.01025076862424612, + 0.023794002830982208, + -0.006300658918917179, + 0.0020737017039209604, + 0.00024184347421396524, + 0.006338844541460276, + -0.009962253272533417, + 0.003090929239988327, + 0.030328018590807915, + -0.0019856621511280537, + 0.007853548042476177, + -0.004510168451815844, + 0.016725385561585426, + 0.005672714207321405, + -0.026679152622818947, + 0.011701829731464386, + -0.023437602445483208, + -0.01972085051238537, + -0.007441990077495575, + -0.018414046615362167, + -0.019924506545066833, + -0.014222092926502228, + -0.020094221457839012, + -0.0163095835596323, + 0.011209656484425068, + 0.0021893198136240244, + -0.002581785200163722, + -0.017497587949037552, + 0.00411982461810112, + -0.01134542841464281, + -0.0065679592080414295, + -0.0024757133796811104, + -0.003224579617381096, + 0.010734455659985542, + 0.01210914459079504, + -0.022402342408895493, + 0.011888516135513783, + -0.014425750821828842, + -0.0016950257122516632, + 0.008723336271941662, + -0.008774250745773315, + -0.0024035845417529345, + 0.007539576385170221, + 0.009979224763810635, + 0.005379956215620041, + 0.0034049013629555702, + 0.022877544164657593, + 0.010148939676582813, + 0.019703878089785576, + -0.019517192617058754, + -0.029038187116384506, + 0.011795172467827797, + -0.012889832258224487, + -0.005838186014443636, + 0.020467594265937805, + -0.017565472051501274, + 0.0021638625767081976, + -0.011481200344860554, + 0.010895684361457825, + 0.015596781857311726, + 0.006945574656128883, + 0.015494953840970993, + 0.01938142068684101, + 0.018227361142635345, + -0.0005234638229012489, + -0.012134602293372154, + 0.015113095752894878, + 0.0034621802624315023, + 0.0011084491852670908, + 0.01838010363280773, + -0.0030124362092465162, + 0.0027154353447258472, + 0.036183178424835205, + 0.0014436357887461782, + -0.01426452212035656, + 0.00957190990447998, + 0.0018647403921931982, + 0.002086430322378874, + 0.005706657189875841, + -0.0031015363056212664, + -0.006207315716892481, + 0.008731822483241558, + -0.004794440697878599, + 0.02622092328965664, + -0.0006555230938829482, + -0.022249599918723106, + 0.025559036061167717, + -0.0020885516423732042, + -0.008587564341723919, + -0.014476665295660496, + 0.00798931997269392, + -0.02622092328965664, + 0.015503439120948315, + 0.0032182151917368174, + 0.006198829971253872, + 0.006020629312843084, + -0.011905487626791, + -0.0064618876203894615, + 0.0022168983705341816, + -0.002240234287455678, + 0.006873446051031351, + -0.00688193179666996, + 0.02226657047867775, + -0.0171496719121933, + -0.004650183022022247, + 0.004317117854952812, + 4.3025331251556054e-5, + -0.0053375279530882835, + 0.017030872404575348, + -0.004378639627248049, + 0.000504105759318918, + 0.005710900295525789, + 0.007166203577071428, + -0.010972056537866592, + -0.009461595676839352, + -0.01566466875374317, + 0.011065399274230003, + 0.0025584492832422256, + -0.007115289568901062, + 0.005575128365308046, + 0.011133285239338875, + -0.005604828242212534, + -0.01914381980895996, + -0.023963717743754387, + -0.023827945813536644, + 0.01890621893107891, + 0.0328567698597908, + 0.02876664325594902, + 0.0005886979051865637, + 0.015596781857311726, + 0.0005966533208265901, + -0.0030591078102588654, + 0.014340893365442753, + 0.005986686330288649, + 0.013322604820132256, + -0.006911631673574448, + 0.025915436446666718, + -0.019177762791514397, + -0.007815362885594368, + -0.007361375726759434, + 0.0021978055592626333, + -0.0018848940962925553, + -0.007191660813987255, + -0.03696386516094208, + 0.008099635131657124, + 0.015545867383480072, + 0.006067301146686077, + 0.0030654720030725002, + -0.0025945135857909918 + ], + "12008c04-5842-43b0-a2eb-3d6fc544a1cf": [ + -0.023372944444417953, + -0.02438768744468689, + -0.003910993691533804, + 0.023795753717422485, + -0.03289462998509407, + -0.03451821953058243, + 0.029156986624002457, + 0.035583700984716415, + -0.01895880699157715, + 0.050398968160152435, + 0.0013392510591074824, + 0.0082067446783185, + 0.002729239407926798, + -0.007462598849087954, + -0.0031245669815689325, + 0.02827754244208336, + -0.02043018490076065, + 0.029427584260702133, + -0.014003471471369267, + -0.022358199581503868, + 0.05926106870174408, + -0.014705336652696133, + -0.0646730363368988, + 0.037071991711854935, + -0.005509215872734785, + -0.00631255516782403, + 0.008929749950766563, + 0.0004709047789219767, + -0.027330446988344193, + -0.001181754283607006, + 0.027922380715608597, + 0.021072857081890106, + 0.03818821161985397, + -0.009623158723115921, + -0.014637686312198639, + -0.044107552617788315, + -0.00038105761632323265, + 0.010172811336815357, + 0.0004280952562112361, + 0.010350392200052738, + -0.01599913462996483, + 0.03473807871341705, + 0.02760104462504387, + -0.010688640177249908, + -0.03950737789273262, + 0.027364270761609077, + -0.0047312453389167786, + -0.006206852849572897, + -0.004680508282035589, + -0.021039031445980072, + -0.008481571450829506, + 0.018535995855927467, + 0.022950133308768272, + 0.04217953979969025, + 0.026992198079824448, + 0.0036594215780496597, + -0.00038158614188432693, + 0.03436600789427757, + 0.0037672382313758135, + -0.046644411981105804, + 0.016700999811291695, + -0.0043845409527421, + 0.018231572583317757, + -0.0010036455933004618, + -0.0013582775136455894, + -0.03166002407670021, + 0.006359064485877752, + 0.000256196508416906, + -0.03297919034957886, + 0.008870556950569153, + 0.0156270619481802, + 0.03784996271133423, + -0.028869476169347763, + 0.020024288445711136, + -0.005399285349994898, + -0.0027630641125142574, + 0.06490980833768845, + -0.011069169268012047, + 0.0011595567921176553, + 0.017571989446878433, + -0.031000439077615738, + -0.012912621721625328, + -0.0010432839626446366, + 0.0180793609470129, + 0.05439029633998871, + 0.03554987534880638, + -0.029968781396746635, + -0.056893330067396164, + -0.002718669129535556, + -0.021275805309414864, + -0.0030040659476071596, + 0.01416413951665163, + -0.0008398066274821758, + 0.015846922993659973, + -0.039845626801252365, + 0.0028920213226228952, + 0.055405039340257645, + -0.0053274077363312244, + 0.00848579965531826, + -0.027939293533563614, + 0.011754121631383896, + 0.011644191108644009, + -0.006959454622119665, + 0.03389246016740799, + -0.01006288081407547, + -0.008988942950963974, + 0.011711840517818928, + -0.006430942099541426, + -0.0345858670771122, + 0.02075152099132538, + -0.016252821311354637, + -0.017859499901533127, + -0.00243961438536644, + -0.015728536993265152, + -0.04018387570977211, + -0.03598959743976593, + -0.015229620970785618, + -0.041266269981861115, + 0.008160235360264778, + -0.027026023715734482, + 0.07569992542266846, + 0.019973549991846085, + -0.011584997177124023, + 0.013335431925952435, + -0.02357589267194271, + 0.02124198153614998, + 0.004773526452481747, + -0.0077501097694039345, + 0.012506723403930664, + 0.010697096586227417, + 0.005509215872734785, + -0.02530095912516117, + 0.004557893145829439, + -0.013090201653540134, + 0.035888124257326126, + 0.014274070039391518, + -0.03287771716713905, + 0.027685606852173805, + -0.01919558085501194, + 0.05229315534234047, + -0.06024198606610298, + -0.0418412908911705, + -0.0062956428155303, + 0.002621422754600644, + 0.007369580678641796, + 0.020836083218455315, + -0.03056071698665619, + 0.061324380338191986, + -0.02178317867219448, + 0.034602779895067215, + -0.06609368324279785, + -0.010570253245532513, + 0.027482658624649048, + 0.023931052535772324, + -0.011855595745146275, + -0.017504340037703514, + -0.005107546225190163, + 0.028565052896738052, + 0.025419345125555992, + -0.008194060064852238, + -0.015288813970983028, + -0.05499914288520813, + 0.009403297677636147, + -0.012168475426733494, + 0.02722897194325924, + 0.010384216904640198, + 0.06585690379142761, + 0.028683438897132874, + -0.04931657388806343, + 0.01796097494661808, + -0.00845620222389698, + -0.03511015325784683, + 0.03649697080254555, + 0.004251355770975351, + -0.011491979472339153, + 0.010316567495465279, + 0.03666609525680542, + 0.04813270643353462, + 0.006891805212944746, + -0.05154900997877121, + -0.03585429862141609, + -0.019601477310061455, + -0.005906657315790653, + 0.004477559123188257, + 0.015161971561610699, + 0.016032960265874863, + 0.03396011143922806, + 0.011314399540424347, + 0.010451866313815117, + -0.007534476462751627, + 0.02974892035126686, + -0.04907979816198349, + 0.01040112879127264, + 0.026806162670254707, + -0.007707828655838966, + -0.04914744943380356, + 0.007678232155740261, + -0.02907242439687252, + -0.010434954427182674, + 0.04383695498108864, + -0.046542938798666, + -0.04505464807152748, + -0.05269905552268028, + 0.03971032798290253, + -0.02296704612672329, + 0.03186297044157982, + -0.03619254752993584, + -0.005915113724768162, + 0.04444580152630806, + -0.05171813443303108, + 0.016464225947856903, + -0.019736776128411293, + -0.018028624355793, + -0.021867740899324417, + -0.021208155900239944, + -0.005868604406714439, + -0.01481526717543602, + 0.02180008962750435, + 0.009716176427900791, + -0.02198612689971924, + -0.028920212760567665, + -0.0035664034076035023, + 0.0019089877605438232, + -0.04001475125551224, + -0.04857242852449417, + -0.015660887584090233, + -0.008895925246179104, + 0.013673679903149605, + -0.03906765580177307, + -0.017385952174663544, + 0.031693845987319946, + 0.006046184804290533, + 0.01132285501807928, + -0.010409585200250149, + -0.005056809168308973, + 0.022239813581109047, + 0.01987207680940628, + 0.014705336652696133, + 0.019330879673361778, + -0.008692976087331772, + 0.030662190169095993, + 0.028514314442873, + -0.019026456400752068, + 0.02234128676354885, + 0.007052472792565823, + 0.018992630764842033, + -0.014265613630414009, + 0.015271902084350586, + 0.026704687625169754, + -0.024100176990032196, + 0.015305726788938046, + 0.016159802675247192, + 0.0016806703060865402, + -0.012667391449213028, + -0.026095841079950333, + 0.0532064251601696, + 0.04901215061545372, + -0.036699920892715454, + -0.030340854078531265, + 0.0080587612465024, + 0.00857881736010313, + 0.02122506871819496, + -0.009530140087008476, + -0.02208760194480419, + 0.031575459986925125, + -0.022442761808633804, + 0.025960542261600494, + -0.023914141580462456, + 0.022256724536418915, + 0.028226803988218307, + 0.01919558085501194, + 0.011348224245011806, + 0.016125978901982307, + -0.015373376198112965, + 0.009961406700313091, + -0.01027428638190031, + 0.0017958860844373703, + 0.012642023153603077, + 0.012785778380930424, + 0.019652215763926506, + 0.005179424304515123, + -0.004519840236753225, + -0.01061253435909748, + 0.010265829972922802, + 0.01604987308382988, + -0.020396361127495766, + -0.026062017306685448, + 0.0007890693959780037, + -0.06572160869836807, + -0.02271335944533348, + -0.0024586408399045467, + -0.021140506491065025, + 0.012921077199280262, + -0.01320858858525753, + 0.026028191670775414, + 0.038797058165073395, + -0.02320381999015808, + -0.021833915263414383, + -0.0010675955563783646, + -0.005648743361234665, + -0.011398960836231709, + -0.04569732025265694, + 0.011838683858513832, + -0.022814834490418434, + 0.020447097718715668, + -0.029461409896612167, + 0.032759327441453934, + 0.00036467373138293624, + -0.03575282543897629, + 0.013140939176082611, + 0.05547269061207771, + -0.010527972131967545, + -0.00378203671425581, + -0.028243716806173325, + -0.0046635959297418594, + -0.032691679894924164, + 0.04495317488908768, + 0.017859499901533127, + -0.019398529082536697, + -0.027499571442604065, + 0.030408505350351334, + -0.016523420810699463, + -0.06869819015264511, + 0.03646314516663551, + 0.03653079643845558, + -0.025030359625816345, + 0.023981790989637375, + 0.0032323834020644426, + -0.04924892261624336, + 0.0059108855202794075, + 0.000453992368420586, + -0.04001475125551224, + -0.030357766896486282, + 0.02166479080915451, + 0.002919503953307867, + -0.06409801542758942, + -0.05621683597564697, + -0.00864223949611187, + 0.021563315764069557, + -0.001762061263434589, + -0.0075683011673390865, + 0.006976366974413395, + 0.03771466389298439, + -0.020091937854886055, + -0.013250869698822498, + -0.020041199401021004, + 0.027973119169473648, + 0.00737380888313055, + -0.010730921290814877, + 0.006862208247184753, + 0.0011373593006283045, + 0.0047904388047754765, + 0.025588469579815865, + -4.482447911868803e-5, + 0.03411232307553291, + 0.01622745208442211, + 0.0008773310109972954, + -0.012422162108123302, + 0.014950565993785858, + 0.0015189454425126314, + -0.0022895168513059616, + -0.029799658805131912, + -0.024844324216246605, + -0.010874676518142223, + -0.021191243082284927, + -0.015643974766135216, + -0.013419993221759796, + -0.033114489167928696, + 0.03228578343987465, + 0.021089769899845123, + -0.03659844398498535, + 0.01154271699488163, + -0.021208155900239944, + -0.023846492171287537, + -0.020819170400500298, + -0.028429754078388214, + 0.03450130671262741, + -0.002454412868246436, + -0.012523636221885681, + 0.006181484088301659, + 0.005995447747409344, + 0.016159802675247192, + 0.028057679533958435, + 0.006705768872052431, + 0.016438858583569527, + 0.020954469218850136, + -0.0016933545703068376, + -0.009437122382223606, + -0.004820035304874182, + 0.012075457721948624, + -0.020717697218060493, + -0.009834563359618187, + -0.027059847488999367, + 0.013513011857867241, + -0.004786210600286722, + 0.03287771716713905, + -0.00027931894874200225, + 0.011390505358576775, + 0.03461969271302223, + -0.01296335831284523, + -0.008498483337461948, + -0.026890724897384644, + -0.02597745507955551, + -0.01552558783441782, + -0.0006384432781487703, + -0.0251318346709013, + 0.009521684609353542, + -0.03137250989675522, + 0.02229055017232895, + -0.004037836566567421, + -0.017944062128663063, + 0.014891372993588448, + 0.02333911880850792, + -0.0147476177662611, + 0.03544840216636658, + 0.017758024856448174, + 0.01160190999507904, + 0.0418412908911705, + -0.05804337561130524, + -0.025470081716775894, + 0.028345191851258278, + 0.03133868798613548, + -0.011787946335971355, + 0.011043800972402096, + -0.011136818677186966, + 0.002769406419247389, + 0.024658286944031715, + -0.01809627376496792, + -0.040826547890901566, + -0.026281878352165222, + -0.017741113901138306, + 0.026315702125430107, + -0.001866706763394177, + -0.010257373563945293, + -0.018045537173748016, + -0.034839555621147156, + 0.020345622673630714, + -0.020294886082410812, + -0.019330879673361778, + 0.0030738296918570995, + 0.009733089245855808, + 0.0304254163056612, + -0.015635518357157707, + 0.0013529923744499683, + -0.01770728826522827, + -0.015889205038547516, + -0.030408505350351334, + 0.0251825712621212, + 0.013639855198562145, + -0.005411969497799873, + -0.02494579739868641, + 0.014696880243718624, + -0.05871986970305443, + -0.013589117676019669, + 0.001549599110148847, + -0.003426876151934266, + -0.008955118246376514, + -0.009158067405223846, + 0.026095841079950333, + -0.027584133669734, + -0.022882483899593353, + -0.00567833986133337, + 0.03828968480229378, + -0.01863747090101242, + 0.029156986624002457, + -0.03382480889558792, + 0.01154271699488163, + 0.008303990587592125, + 0.003705930896103382, + -0.0004555779160000384, + -0.02345750667154789, + -0.008270165883004665, + -0.04376930370926857, + 0.002989267697557807, + -0.00870143249630928, + -0.03149089962244034, + -0.0033528844360262156, + 0.011196012608706951, + 0.03927060589194298, + -0.031829144805669785, + -0.0494856983423233, + -0.012709672562777996, + -0.03930443152785301, + 0.005052580963820219, + -0.003951160702854395, + 0.011745665222406387, + 0.0037186150439083576, + -0.013445362448692322, + 0.00914115458726883, + -0.014375544153153896, + 0.04907979816198349, + 0.016743281856179237, + -0.0031520496122539043, + 0.017977885901927948, + -0.0065704695880413055, + -0.044784050434827805, + -0.024709023535251617, + -0.03301301598548889, + -0.016252821311354637, + -0.01444319449365139, + 0.019466178491711617, + -0.012185388244688511, + -0.004536752589046955, + 0.022070689126849174, + -0.013386168517172337, + 0.014384000562131405, + -0.005403513554483652, + 0.013817435130476952, + 0.01630355790257454, + 0.0028539684135466814, + -0.03116956353187561, + 0.006080009508877993, + -0.020819170400500298, + -0.008460430428385735, + -0.008955118246376514, + 0.03828968480229378, + -0.03974415361881256, + -0.0007864268263801932, + 0.034839555621147156, + -0.009056593291461468, + -0.005965850781649351, + 0.005094862077385187, + 0.011001519858837128, + 0.007065157406032085, + -0.03140633553266525, + -0.01101843174546957, + 0.0012959130108356476, + -0.016591070219874382, + 0.04715178534388542, + -0.005948938429355621, + -0.009843019768595695, + 0.018874244764447212, + -0.0040293806232512, + 0.023136170580983162, + 0.021867740899324417, + -0.009090417996048927, + 0.015550957061350346, + 0.0065958378836512566, + 0.030645279213786125, + 0.027939293533563614, + -0.04376930370926857, + 0.027026023715734482, + -0.014663055539131165, + -0.013445362448692322, + -0.007208912633359432, + 0.022324375808238983, + -0.026586301624774933, + 0.019719865173101425, + -0.00677341828122735, + 0.027516482397913933, + -0.023609718307852745, + 0.04353253170847893, + 0.02338985726237297, + 0.008904381655156612, + 0.017259109765291214, + -0.031186474487185478, + 0.04640763998031616, + -0.026839986443519592, + -0.023677367717027664, + -0.016743281856179237, + 0.0024480705615133047, + 0.0270429365336895, + 0.002016804413869977, + -0.0045832619071006775, + -0.026992198079824448, + 0.0023085433058440685, + -0.03167693316936493, + 0.02173244021832943, + -0.002054857322946191, + 0.019043369218707085, + 0.013758241198956966, + 0.02159714139997959, + 0.046644411981105804, + -0.009538596495985985, + 0.0065958378836512566, + 0.026738513261079788, + -0.009944493882358074, + -0.013563749380409718, + -0.023863403126597404, + -0.01914484240114689, + 0.014561580494046211, + -0.024404600262641907, + -0.01765655167400837, + 0.004748157691210508, + -0.026620125398039818, + -0.005209020804613829, + -0.00931873545050621, + -0.008067217655479908, + -0.016193628311157227, + 0.02920772321522236, + -0.008202516473829746, + 0.055709462612867355, + 0.007433001883327961, + 0.019178668037056923, + -0.02388031594455242, + 0.036767568439245224, + 0.0031710760667920113, + 0.03903383016586304, + 0.008608413860201836, + 0.003363454481586814, + 0.004323233384639025, + 0.02672160044312477, + -0.0004627128364518285, + -0.023558979853987694, + -0.0009862045990303159, + 0.014324807561933994, + -0.00520056439563632, + 0.022053776308894157, + 0.015161971561610699, + 0.023372944444417953, + -0.006287186872214079, + 0.015424113720655441, + 0.0303746797144413, + 0.009851476177573204, + 0.02092064544558525, + -0.017132267355918884, + 0.01770728826522827, + 0.042822208255529404, + -0.006722681224346161, + -0.028801826760172844, + 0.017927149310708046, + -0.03933825343847275, + 0.0503651425242424, + -0.008536536246538162, + 0.013225500471889973, + 0.033368173986673355, + -0.03445056825876236, + -0.0071074385195970535, + -0.009124242700636387, + -0.020971382036805153, + 0.023271469399333, + -0.01692086085677147, + 0.02592671662569046, + -0.021749353036284447, + 0.028801826760172844, + 0.007712056860327721, + 0.0051455991342663765, + -0.0032535239588469267, + -0.026248052716255188, + -0.035143978893756866, + -0.033858634531497955, + 0.015348007902503014, + 0.031000439077615738, + 0.04745620861649513, + -0.007627494633197784, + 0.018045537173748016, + -0.013639855198562145, + 0.012878797017037868, + 0.0436001792550087, + 0.019280141219496727, + 0.014561580494046211, + 0.016633350402116776, + 0.03049306571483612, + 0.02543625794351101, + 0.01907719299197197, + -0.048809200525283813, + 8.390138827962801e-5, + 0.015838466584682465, + -0.019178668037056923, + 0.000948151689954102, + 0.02729662135243416, + -0.019297054037451744, + 0.027499571442604065, + 0.00659161014482379, + 0.013741329312324524, + 0.021766265854239464, + 0.027516482397913933, + 0.013014095835387707, + 0.014899829402565956, + 0.02154640480875969, + -0.013800522312521935, + 0.009225716814398766, + 0.022679535672068596, + 0.01716609112918377, + 0.013343887403607368, + -0.019398529082536697, + 0.01926323026418686, + 0.009276454336941242, + 0.0061392029747366905, + 0.0030463470611721277, + -0.03111882507801056, + -0.020328711718320847, + -0.01796097494661808, + 0.025199484080076218, + 0.01772420108318329, + -0.0017092099878937006, + -0.002718669129535556, + 0.027212059125304222, + -0.022273637354373932, + -0.007001735735684633, + 0.018738944083452225, + 0.03411232307553291, + -0.00012281312956474721, + 0.02180008962750435, + 0.0019132158486172557, + 0.015136602334678173, + -0.023998703807592392, + -0.002454412868246436, + 0.02560538239777088, + -0.02536860853433609, + -0.0388985313475132, + -0.018755856901407242, + -0.035346925258636475, + -0.011551172472536564, + -0.0027440376579761505, + 0.009699264541268349, + -0.029224636033177376, + -0.026772337034344673, + -0.013775154016911983, + -0.036699920892715454, + 0.0010792228858917952, + 0.005826323758810759, + -0.007538704667240381, + 0.00173246453050524, + 0.03683521971106529, + -0.005382372997701168, + -0.007369580678641796, + -0.0019671241752803326, + -0.01604987308382988, + 0.032691679894924164, + -0.01691240444779396, + 0.030290117487311363, + -0.015973767265677452, + -0.0323365181684494, + -0.026772337034344673, + 0.0159230288118124, + 0.028243716806173325, + -0.01770728826522827, + 0.006735365372151136, + -0.00824056938290596, + 0.04092802107334137, + -0.01671791262924671, + -0.01327623799443245, + -0.0001404522336088121, + -0.004858088213950396, + -0.013529923744499683, + -0.02907242439687252, + 0.011145275086164474, + 0.012176931835711002, + -0.016405032947659492, + 0.026095841079950333, + -0.007572529371827841, + 0.027871644124388695, + -0.004676280077546835, + 0.023998703807592392, + -0.023964878171682358, + 0.021208155900239944, + 0.009800738655030727, + -0.005893973167985678, + -0.0010263716103509068, + 0.020819170400500298, + -0.01194861438125372, + 0.04661059007048607, + -0.009369472041726112, + -0.02907242439687252, + 0.013453817926347256, + -0.005488075315952301, + 0.008494255132973194, + -0.03301301598548889, + 0.05760365352034569, + -0.014451649971306324, + 0.006422485690563917, + -0.0015749677550047636, + -0.008054533042013645, + -0.022747185081243515, + 0.014028839766979218, + -0.020700784400105476, + 0.031879883259534836, + 0.028311366215348244, + -0.020700784400105476, + 0.03044232912361622, + -0.0037799226120114326, + 0.023102344945073128, + 0.007483739405870438, + -0.03839116171002388, + -0.010248917154967785, + 0.008938206359744072, + -0.014451649971306324, + -0.01622745208442211, + -0.010122074745595455, + -0.01758890226483345, + -0.0408603698015213, + 0.014612318016588688, + -0.0251318346709013, + 0.027617957442998886, + -0.026941461488604546, + 0.03541457653045654, + -0.004289408680051565, + -0.014333263039588928, + -0.011382048949599266, + -0.002098195254802704, + 0.004993387497961521, + -0.01642194576561451, + 0.016929317265748978, + 0.0035072099417448044, + -0.00910732988268137, + 0.014620774425566196, + -0.012692759744822979, + -0.01770728826522827, + -0.0025051499251276255, + 0.024590637534856796, + -0.030036430805921555, + 0.043363407254219055, + 0.04106331989169121, + -0.016447314992547035, + -0.0158722922205925, + 0.0018846761668100953, + -0.009200348518788815, + -0.008709888905286789, + 0.022561147809028625, + -0.01061253435909748, + -0.015111234039068222, + -0.011627278290688992, + 0.00910732988268137, + -0.004097030032426119, + 0.006101150065660477, + 0.021681703627109528, + 0.006925629917532206, + 0.011618822813034058, + 0.017994798719882965, + -0.010705552063882351, + 0.011305943131446838, + 0.02229055017232895, + 0.005437338259071112, + -0.01889115571975708, + -0.013343887403607368, + 0.003733413526788354, + 0.002940644510090351, + 0.02085299603641033, + 0.02245967462658882, + 0.0019776944536715746, + 0.012202300131320953, + -0.010883132927119732, + 0.04255161061882973, + 0.01951691508293152, + 0.0380190871655941, + -0.03778231143951416, + 0.005640286952257156, + -0.02432003803551197, + 0.0106801837682724, + -0.022375112399458885, + -0.031575459986925125, + -0.011534260585904121, + -0.02320381999015808, + -0.02180008962750435, + -0.006612750235944986, + -0.0015865949681028724, + 0.01157654169946909, + 0.02729662135243416, + 0.04420902580022812, + 0.02634952776134014, + -0.0022007266525179148, + -0.01361448597162962, + 0.023728104308247566, + -0.026806162670254707, + 0.005137143190950155, + 0.009361016564071178, + 0.02234128676354885, + 0.00291738985106349, + 0.015356464311480522, + 0.02432003803551197, + -0.010595621541142464, + -0.026806162670254707, + -0.00832935981452465, + 0.005581093952059746, + -0.010840851813554764, + -0.0016880694311112165, + 0.008997399359941483, + 0.0024163599591702223, + -0.0010808083461597562, + -0.010012144222855568, + -0.014181051403284073, + 0.01126366201788187, + 0.03937207907438278, + -0.01154271699488163, + -0.008988942950963974, + -0.02210451290011406, + -0.01262511033564806, + -0.04316045716404915, + 0.007686688099056482, + -0.007437230087816715, + 0.009377928450703621, + -0.018011711537837982, + -0.013462274335324764, + -0.050703391432762146, + 0.003393051214516163, + 0.0006828383775427938, + -0.01987207680940628, + -0.003475499339401722, + -0.02389722876250744, + -0.004209074657410383, + -2.206540375482291e-5, + -0.0068833488039672375, + -0.01956765353679657, + 0.00855344906449318, + 0.014054208993911743, + 0.008172919973731041, + -0.024776672944426537, + -0.001082393922843039, + -0.010730921290814877, + -0.002729239407926798, + -0.020480923354625702, + -0.02919081225991249, + 0.024928884580731392, + 0.026772337034344673, + -0.032319605350494385, + 0.016878580674529076, + 0.019466178491711617, + -0.014020384289324284, + 0.021309630945324898, + 0.016954686492681503, + 0.014333263039588928, + -0.006760734133422375, + -0.011272118426859379, + 0.06338769197463989, + 0.0068579805083572865, + 0.0116357346996665, + 0.0031710760667920113, + -0.005031440407037735, + -0.014620774425566196, + -0.00038079338264651597, + 0.011804859153926373, + -0.00017731600382830948, + 0.0075471606105566025, + 0.010037512518465519, + -0.0005522957071661949, + -0.005741761531680822, + 0.013749785721302032, + -0.00029913816251792014, + 0.03876323252916336, + 0.011204468086361885, + 0.015043584629893303, + 0.017639638856053352, + -0.0028729948680847883, + 0.011280573904514313, + 0.001310711377300322, + -0.013293150812387466, + 0.01610906608402729, + -0.03551604971289635, + -0.01598222367465496, + -0.012278405949473381, + 0.012067001312971115, + 0.02085299603641033, + -0.010933870449662209, + -0.012844971381127834, + 0.014265613630414009, + 0.010967695154249668, + 0.035042501986026764, + 0.014891372993588448, + -0.006016588304191828, + 0.0028264857828617096, + 0.009817651472985744, + 0.0016489594709128141, + -0.016751738265156746, + 0.014155683107674122, + 0.029613621532917023, + -0.010604077950119972, + 0.002412131754681468, + 0.0032408395782113075, + 0.01770728826522827, + 0.0016119636129587889, + 0.0007837842567823827, + 0.011771034449338913, + -0.003405735595151782, + -0.04975629597902298, + -0.008726800791919231, + -0.040522124618291855, + -0.006853752303868532, + -0.007208912633359432, + -0.0017197801498696208, + -0.006109606474637985, + -0.010138986632227898, + -0.016193628311157227, + 0.017309846356511116, + -0.014696880243718624, + -0.02340676821768284, + -0.042247187346220016, + -0.008498483337461948, + -0.03297919034957886, + 0.016582613810896873, + 0.023981790989637375, + -0.030205555260181427, + -0.017149178311228752, + -0.021461842581629753, + -0.021444929763674736, + -0.0071920002810657024, + -0.02191847749054432, + 0.010223548859357834, + -0.005640286952257156, + 0.006261818110942841, + 0.0012684303801506758, + -0.03862793371081352, + -0.014037296175956726, + 0.013149394653737545, + -0.005272442474961281, + 0.005779814440757036, + -0.011339767836034298, + -0.028243716806173325, + -0.01697159931063652, + -0.019584564492106438, + 0.0030400047544389963, + -0.004875001031905413, + -0.03524545207619667, + 0.05557416379451752, + 0.020633134990930557, + 0.03345273807644844, + 0.004532524384558201, + -0.03357112407684326, + -0.013064833357930183, + 0.01089158933609724, + -0.012278405949473381, + -0.024658286944031715, + 0.013064833357930183, + -0.011119906790554523, + 0.02371119149029255, + 0.021275805309414864, + -0.007585213519632816, + -0.0039236778393387794, + 0.0037080447655171156, + 0.05110928788781166, + 0.012633566744625568, + -0.018722033128142357, + 0.004798895213752985, + 0.01194015797227621, + -0.0013360800221562386, + -0.014798354357481003, + -0.004672051873058081, + 0.016506507992744446, + -0.0013466503005474806, + -0.005162511486560106, + -0.007965742610394955, + 0.01630355790257454, + 0.0010422270279377699, + -0.023660454899072647, + 0.001608792576007545, + -0.014857548289000988, + -0.018130097538232803, + -0.08807981014251709, + -0.016371209174394608, + 0.012067001312971115, + 0.01765655167400837, + 0.003961730748414993, + 0.0033909373451024294, + 0.011483523063361645, + 0.020666958764195442, + -0.029359934851527214, + -0.030273204669356346, + 0.00935256015509367, + -0.010189724154770374, + 0.005695252679288387, + 0.036767568439245224, + -0.005128686781972647, + -0.00013609201414510608, + 0.0033254015725106, + -0.009944493882358074, + 0.033418912440538406, + -0.00867606420069933, + 0.004980703350156546, + -0.0030400047544389963, + 0.02388031594455242, + -0.014468562789261341, + -0.0008900153334252536, + 0.03825585916638374, + -0.012447530403733253, + 0.0056825680658221245, + -0.012447530403733253, + -0.013073288835585117, + -0.003843344049528241, + 0.006976366974413395, + -0.018603645265102386, + -0.007208912633359432, + 0.013741329312324524, + -0.0028222575783729553, + 0.005893973167985678, + 0.0035600613337010145, + 0.026890724897384644, + -0.018248485401272774, + 0.015720080584287643, + 0.00811795424669981, + -0.005196336656808853, + -0.011678015813231468, + -0.011179099790751934, + -0.013690591789782047, + -0.013369256630539894, + -0.0213603675365448, + -0.010908501222729683, + 0.01105225645005703, + 0.018383784219622612, + 0.014891372993588448, + 0.005378144793212414, + -0.02864961512386799, + 0.01451084390282631, + 0.003672105958685279, + 0.009766913950443268, + -0.03284389153122902, + 0.009022768586874008, + 0.0049849315546453, + 0.07705292105674744, + 0.017791850492358208, + 0.015229620970785618, + -0.014240245334804058, + -0.02105594426393509, + 0.00866760779172182, + -0.0005057866219431162, + 0.03544840216636658, + 0.04265308752655983, + -0.01391890924423933, + 0.019855163991451263, + -0.008079901337623596, + -0.001810684334486723, + 0.03531310334801674, + 0.003593886038288474, + 0.012455986812710762, + 0.018924981355667114, + 0.019601477310061455, + -0.0030822858680039644, + -0.00839700922369957, + -0.016895493492484093, + 0.0008228942169807851, + -0.008879012428224087, + -0.011398960836231709, + -0.007310387212783098, + -0.011111450381577015, + -0.004010354168713093, + -0.012616653926670551, + 0.005386601202189922, + -0.002253578044474125, + 0.029901131987571716, + 0.017791850492358208, + 0.031744584441185, + 0.014384000562131405, + -0.012117737904191017, + 0.04383695498108864, + -0.010629446245729923, + 0.024353863671422005, + -0.019533827900886536, + 0.0006690970039926469, + -0.012472898699343204, + -0.014857548289000988, + 0.007361124269664288, + -0.012709672562777996, + -0.01490828488022089, + 0.004020924214273691, + 0.02389722876250744, + 0.004306321032345295, + -0.006832611747086048, + -0.031761497259140015, + 0.006845295894891024, + -0.004084345884621143, + -0.0251825712621212, + -0.01292953360825777, + -0.007585213519632816, + 0.011728753335773945, + -0.03259020671248436, + -0.014265613630414009, + -0.019347792491316795, + -0.012151563540101051, + 0.007230053190141916, + 0.023931052535772324, + 0.007124350871890783, + -0.011407417245209217, + -0.010730921290814877, + 0.003107654396444559, + -0.01599067822098732, + -0.016777105629444122, + 0.009208804927766323, + 0.021140506491065025, + -0.00910732988268137, + 0.008629554882645607, + -0.006997507531195879, + 0.010316567495465279, + -0.01863747090101242, + -0.0009338818490505219, + 0.03636167198419571, + -0.012709672562777996, + 0.022916309535503387, + -0.04197658970952034, + 0.022358199581503868, + 0.016810931265354156, + 0.016641806811094284, + 0.005158283747732639, + -0.01453621219843626, + -0.006507047917693853, + -0.016743281856179237, + 0.0014301552437245846, + 0.004925738088786602, + -0.013808978721499443, + -0.011813314631581306, + -0.008743713609874249, + -0.013808978721499443, + -0.0012261493830010295, + -0.01348764356225729, + -0.025960542261600494, + -0.021208155900239944, + 0.003932134248316288, + -0.0017514909850433469, + -0.022307462990283966, + -0.01628664694726467, + -0.008540764451026917, + 0.0038496863562613726, + -0.024218564853072166, + 0.02086990885436535, + 0.012092369608581066, + -0.02499653585255146, + 0.011525804176926613, + -0.008583045564591885, + -0.017183003947138786, + -0.013479187153279781, + -0.0066973124630749226, + 0.010020599700510502, + -0.009276454336941242, + 0.0027651782147586346, + 0.011035344563424587, + 0.004633998963981867, + -0.007200456690043211, + 0.014866003766655922, + -0.013800522312521935, + -0.011990895494818687, + 0.04190893843770027, + 0.006836839951574802, + -0.0019111017463728786, + -0.011711840517818928, + 0.012033176608383656, + 0.010561796836555004, + 0.0002795832115225494, + 0.01659952662885189, + 0.004929966293275356, + -0.001066538505256176, + 0.019855163991451263, + -0.02474284917116165, + -0.008654923178255558, + -0.0007584156701341271, + -0.01567780040204525, + 0.03357112407684326, + 0.028970949351787567, + -0.03287771716713905, + -0.004866544622927904, + 0.0045621213503181934, + -0.0010971922893077135, + 0.01036730408668518, + 0.011305943131446838, + -0.009741545654833317, + 0.010933870449662209, + -0.048301830887794495, + 0.018755856901407242, + 0.003913107793778181, + -0.016768649220466614, + 0.004718561191111803, + 0.03622637316584587, + 0.003209128975868225, + -0.021022120490670204, + 0.005652971565723419, + 0.0015062610618770123, + 0.018671294674277306, + -0.01819774881005287, + 0.019364703446626663, + 0.0016933545703068376, + 0.01228686235845089, + 0.0023191135842353106, + -0.005395057145506144, + -0.03727494180202484, + 0.007974199019372463, + 0.018535995855927467, + 0.007530248258262873, + -0.01980442740023136, + -0.01348764356225729, + 0.02180008962750435, + -0.0002951743081212044, + 0.009766913950443268, + -0.004824263509362936, + -0.006054641213268042, + -0.0015622834907844663, + 0.008718345314264297, + 0.016032960265874863, + -0.026214228942990303, + 0.02098829485476017, + -0.00108767906203866, + -0.0022303233854472637, + -0.021698616445064545, + -0.021749353036284447, + 0.014147226698696613, + 0.02215525135397911, + 0.020108850672841072, + -0.03242108225822449, + -0.018316134810447693, + 0.0005581093719229102, + 0.0023212276864796877, + 0.015195796266198158, + -0.01740286499261856, + -0.00549653172492981, + 0.018755856901407242, + 0.008350499905645847, + 0.020650045946240425, + 0.0028011170215904713, + -0.0071328068152070045, + 0.003879282856360078, + 0.007259650155901909, + -0.0023317979648709297, + -0.0050187562592327595, + 0.00041858202894218266, + -0.03316522762179375, + 0.009563964791595936, + -0.009530140087008476, + 5.677381977875484e-6, + 0.011026888154447079, + -0.0008403351530432701, + -0.016760192811489105, + -0.006908717565238476, + -0.015474851243197918, + -0.0185698214918375, + 0.02049783430993557, + 0.022950133308768272, + 0.026078928261995316, + -0.012650479562580585, + 0.0014132428914308548, + 0.0037778085097670555, + 0.006908717565238476, + -0.014806810766458511, + 0.0026658179704099894, + -0.018468346446752548, + 0.016878580674529076, + 0.013107114471495152, + -0.01062099076807499, + 0.03389246016740799, + 0.02308543398976326, + 0.01444319449365139, + -0.007661319803446531, + -0.0018941893940791488, + 0.020565485581755638, + 0.012811146676540375, + -0.015770817175507545, + 0.01490828488022089, + -0.0037904928904026747, + 0.009225716814398766, + -0.004989159759134054, + 0.002431158209219575, + -0.00023954836069606245, + 0.017022335901856422, + -0.005686796270310879, + -0.039845626801252365, + 0.013741329312324524, + -0.015720080584287643, + -0.0002075733500532806, + 0.015576325356960297, + 0.010122074745595455, + -0.010908501222729683, + 0.0051244585774838924, + 0.009369472041726112, + 0.0032873486634343863, + -0.0038771689869463444, + -0.013631398789584637, + -0.009665439836680889, + 0.026400264352560043, + -0.010570253245532513, + -0.005031440407037735, + 0.0020072911866009235, + -0.025402432307600975, + -0.004236557520925999, + 0.010578709654510021, + 0.023000871762633324, + 0.025909805670380592, + -0.0313556008040905, + -0.0030040659476071596, + 0.028548140078783035, + 0.0029427586123347282, + -0.011804859153926373, + -0.018738944083452225, + -0.017741113901138306, + 0.038661759346723557, + -0.016650263220071793, + 0.041333917528390884, + -0.011686472222208977, + 0.004435278475284576, + -0.019855163991451263, + -0.004887685179710388, + 0.02432003803551197, + -0.0003321701951790601, + 0.009065048769116402, + 0.009944493882358074, + -0.0011743551585823298, + -0.00243961438536644, + 0.02122506871819496, + 0.016278190538287163, + 0.010942325927317142, + 0.019533827900886536, + 0.02604510448873043, + -0.0194492656737566, + -0.00832935981452465, + 0.016345839947462082, + 0.0199904628098011, + -0.005162511486560106, + 0.011838683858513832, + 0.025909805670380592, + 0.009513228200376034, + 0.0246921107172966, + -0.02296704612672329, + -0.02240893617272377, + -0.00975845754146576, + -0.01170338410884142, + -0.006917173974215984, + 0.030949702486395836, + 0.007775478530675173, + 0.012574373744428158, + 0.006003903690725565, + 0.003154163481667638, + -0.004595946054905653, + -0.032810065895318985, + 0.016202084720134735, + -0.0156270619481802, + -0.038120560348033905, + 0.006080009508877993, + -0.010451866313815117, + -0.012481355108320713, + 0.00140478671528399, + 0.014079577289521694, + -0.005149827338755131, + -0.007263877894729376, + 0.007331527769565582, + 0.012067001312971115, + -0.023271469399333, + -0.013014095835387707, + -0.017385952174663544, + 0.0037186150439083576, + 0.009327191859483719, + -0.0006003903690725565, + -0.010798570699989796, + -0.005213249009102583, + -0.021157419309020042, + -0.005822095554322004, + 0.030696015805006027, + 0.00873525720089674, + 0.01938161626458168, + 0.0075217923149466515, + -0.010849308222532272, + 0.019246317446231842, + -0.03406158462166786, + -0.02208760194480419, + -0.023745017126202583, + 0.0037904928904026747, + -0.010189724154770374, + 0.029427584260702133, + -0.008350499905645847, + 0.005310495384037495, + 0.011796402744948864, + 0.026518652215600014, + 0.017571989446878433, + -0.02278101071715355, + -0.049722470343112946, + -0.00032979188836179674, + -0.0037968349643051624, + -0.02215525135397911, + -0.01154271699488163, + -0.011559628881514072, + 0.012895708903670311, + 0.008654923178255558, + 0.008684519678354263, + 0.01882350631058216, + -0.021563315764069557, + 0.0021425902377814054, + -0.024844324216246605, + -0.015956854447722435, + -0.01184714026749134, + 0.0017863728571683168, + -0.0037672382313758135, + -0.007263877894729376, + 0.01673482544720173, + 0.019432352855801582, + 0.01292953360825777, + -0.005314723122864962, + -0.0066550313495099545, + 0.00928491074591875, + 0.03734258934855461, + -0.023863403126597404, + 0.012988727539777756, + -0.008481571450829506, + 0.013377712108194828, + -0.007585213519632816, + -0.016447314992547035, + -0.010054425336420536, + 0.003236611606553197, + -0.021411104127764702, + -0.023795753717422485, + -0.009310279041528702, + 0.008194060064852238, + -0.025284046307206154, + 0.013419993221759796, + 0.017758024856448174, + -0.0006690970039926469, + -0.024117089807987213, + 0.04431050270795822, + -0.01828230917453766, + 0.018062448129057884, + 0.006671943701803684, + -0.0005105432355776429, + -0.0007885408704169095, + -0.01512814685702324, + 0.019364703446626663, + -0.010105161927640438, + -0.011365136131644249, + -0.01907719299197197, + 0.012777321971952915, + 0.020666958764195442, + 0.005741761531680822, + 0.022679535672068596, + -0.010536428540945053, + -0.027922380715608597, + -0.016641806811094284, + -0.0008297648746520281, + -0.021208155900239944, + 0.0031626198906451464, + -0.015618606470525265, + 0.009547052904963493, + -0.032251957803964615, + -0.00496801920235157, + -0.0025770277716219425, + -0.007847355678677559, + -0.0031710760667920113, + 0.028446665033698082, + -0.018874244764447212, + -0.01914484240114689, + 0.04106331989169121, + 0.01914484240114689, + -0.013217044994235039, + 0.02499653585255146, + -0.002473439322784543, + 0.003245067782700062, + 0.022070689126849174, + -0.027381183579564095, + 0.03578665107488632, + -0.030408505350351334, + -0.0005744932568632066, + 0.025233307853341103, + -0.015830012038350105, + -0.016405032947659492, + 0.004435278475284576, + 0.025081096217036247, + 0.0007647578022442758, + 0.01280269119888544, + -0.044547274708747864, + -0.023288382217288017, + -0.00864646676927805, + -0.0018053993117064238, + -0.01006288081407547, + -0.010206636972725391, + 0.0007526020053774118, + 0.0006336866645142436, + -0.014519300311803818, + -0.017056161537766457, + -0.007640179246664047, + -0.00026016036281362176, + 0.0002925317676272243, + -0.00615611532703042, + -0.01157654169946909, + -0.0050398968160152435, + 0.013259326107800007, + -0.027059847488999367, + -0.0032027866691350937, + -0.0007362181204371154, + -0.00864646676927805, + -0.011069169268012047, + 0.00433380389586091, + 0.010477234609425068, + 0.020480923354625702, + -0.0035008678678423166, + -0.015813099220395088, + -0.018062448129057884, + 0.003976529464125633, + 0.007289246656000614, + 0.0007325185579247773, + 0.007923461496829987, + -0.006955226883292198, + 0.012828059494495392, + -0.005860148463398218, + -0.0043760850094258785, + -0.007306159008294344, + -0.012616653926670551, + -0.008963574655354023, + 0.007225824985653162, + 0.0218508280813694, + -0.013250869698822498, + -0.012033176608383656, + -0.013622942380607128, + 0.114057257771492, + -0.0036107986234128475, + -0.0033254015725106, + -0.0020294885616749525, + 0.0060335006564855576, + -0.02511492185294628, + 0.0027440376579761505, + 0.012143107131123543, + 0.015415657311677933, + -0.0009322963305748999, + -0.0023677367717027664, + -0.00632946752011776, + 0.014181051403284073, + -0.00019383202015887946, + -0.006540872622281313, + 0.008037620224058628, + 0.015263445675373077, + 0.01975368894636631, + 0.00864223949611187, + 0.003583315759897232, + -0.01821465976536274, + -0.010739377699792385, + -0.0218508280813694, + 0.027127498760819435, + -0.00811795424669981, + 0.025825243443250656, + 0.009910669177770615, + -0.010857763700187206, + 0.009910669177770615, + 0.037680838257074356, + 0.006879120599478483, + -0.002223981311544776, + -0.011990895494818687, + -0.019415441900491714, + 0.0009624215890653431, + 0.007809303235262632, + -0.00903968047350645, + 0.02320381999015808, + -0.006832611747086048, + 0.01487446017563343, + -0.0013984445249661803, + -0.002631993032991886, + 0.02000737562775612, + 0.017758024856448174, + -0.009031224064528942, + -0.00042518842383287847, + -0.0036002283450216055, + -0.002490351675078273, + 0.008828275837004185, + 0.012033176608383656, + 0.007120122667402029, + -0.027820907533168793, + 0.020599309355020523, + 0.0016457884339615703, + 0.01789332553744316, + -0.0016267619794234633, + 0.01765655167400837, + -0.012413705699145794, + -0.0022091828286647797, + 0.002255692146718502, + 0.005915113724768162, + -0.013749785721302032, + -0.005238617304712534, + -0.007475282996892929, + -0.021495666354894638, + -0.012794234789907932, + -0.02283174730837345, + -0.012439073994755745, + -0.0030061800498515368, + 0.006705768872052431, + -0.020345622673630714, + 0.01320858858525753, + 0.0026742741465568542, + -0.02653556317090988, + 0.002083397004753351, + 0.010874676518142223, + -0.004540980793535709, + 0.009961406700313091, + 0.017859499901533127, + 0.004519840236753225, + -0.0006003903690725565, + 0.01828230917453766, + -0.005390828941017389, + -0.0361587218940258, + -0.01987207680940628, + 0.0007314615068025887, + 0.017149178311228752, + -0.02536860853433609, + 0.013665223494172096, + -0.019702952355146408, + -0.02604510448873043, + -0.007289246656000614, + -0.0013910452835261822, + 0.005699480418115854, + -0.007817759178578854, + 0.008718345314264297, + -0.015001303516328335, + -0.025960542261600494, + 0.00353469280526042, + 0.0016669289907440543, + 0.03524545207619667, + 0.017605813220143318, + -0.0046889642253518105, + -0.0012684303801506758, + -0.0011183328460901976, + 0.013217044994235039, + 0.004642455372959375, + -0.006515504326671362, + -0.01828230917453766, + 0.006354836281388998, + -0.004798895213752985, + -0.01166955940425396, + -0.014290982857346535, + -0.004934194032102823, + -0.02902168780565262, + 0.014925197698175907, + 0.013944278471171856, + -0.0031435934361070395, + -0.014493931084871292, + -0.012067001312971115, + -0.02425238862633705, + 0.004338032100349665, + -0.004519840236753225, + -0.014866003766655922, + -0.001533743692561984, + -0.007471054792404175, + -0.007044016849249601, + -0.0035304646007716656, + -0.02117433212697506, + -0.00547961937263608, + 0.014984390698373318, + 0.013453817926347256, + 0.008726800791919231, + -0.0013942164368927479, + 0.016498051583766937, + -0.012980271130800247, + -0.006735365372151136, + 0.002011519158259034, + 0.02420165203511715, + -0.013073288835585117, + 0.01963530294597149, + 0.0002674274146556854, + -0.002949100686237216, + 0.015973767265677452, + -0.008388552814722061, + 0.014553125016391277, + -0.017419777810573578, + -0.0251318346709013, + 0.0026087386067956686, + 0.0013847032096236944, + 0.016870124265551567, + -0.03788378834724426, + 0.009124242700636387, + -0.0246921107172966, + 0.0213603675365448, + 0.008561905473470688, + -0.013310062699019909, + 0.03209974616765976, + -0.015136602334678173, + 0.004798895213752985, + 0.006046184804290533, + 0.002760950243100524, + -0.010198180563747883, + 0.0005602234159596264, + -0.007893864996731281, + -0.005234389565885067, + 0.023068521171808243, + 0.015643974766135216, + 0.029647447168827057, + -0.0022091828286647797, + -0.00790232140570879, + 0.00777970626950264, + 0.002211296930909157, + -0.03450130671262741, + -0.0012990841642022133, + 0.009377928450703621, + 0.013284694403409958, + 0.0022895168513059616, + -0.015254989266395569, + 0.023558979853987694, + -0.010012144222855568, + -0.016405032947659492, + 0.00390676548704505, + 0.004519840236753225, + -0.0037608961574733257, + -0.021461842581629753, + 0.012227669358253479, + -0.015550957061350346, + 0.0039659589529037476, + -0.01002905610948801, + -0.0026171947829425335, + 0.02401561476290226, + -0.0037714664358645678, + -0.003475499339401722, + -0.0025833698455244303, + -0.007559845224022865, + 0.013555292971432209, + 0.008819819428026676, + 0.01686166785657406, + -0.015297270379960537, + 0.012481355108320713, + -0.004595946054905653, + 0.015846922993659973, + 0.009301822632551193, + -0.0015189454425126314, + -0.017808763310313225, + -0.010105161927640438, + 0.0010813368717208505, + -0.0006511276005767286, + -0.007158175576478243, + -0.024979623034596443, + -0.026434089988470078, + 0.01912792958319187, + 0.0032344975043088198, + -0.005302038975059986, + 0.00694677047431469, + 0.01253209263086319, + 0.011043800972402096, + 0.005094862077385187, + 0.01511969044804573, + 0.0082067446783185, + -0.0002986096660606563, + 0.018248485401272774, + -0.015373376198112965, + -0.006481679156422615, + 0.010578709654510021, + 0.013047920539975166, + -0.0010760517325252295, + 0.010291198268532753, + -0.0040674335323274136, + 0.023812666535377502, + 0.008659151382744312, + -0.01566934399306774, + 0.03123721294105053, + -0.000920140533708036, + 0.03461969271302223, + 0.026637038215994835, + -0.008972031064331532, + 0.013360800221562386, + -0.011043800972402096, + -0.014637686312198639, + 0.0010760517325252295, + -0.019584564492106438, + -0.0026341071352362633, + -0.017022335901856422, + -0.0030209782999008894, + -0.0012937990250065923, + 0.0010158013319596648, + 0.00280957343056798, + -3.973754428443499e-5, + -0.01858673244714737, + -0.0035177802201360464, + 0.0008889582823030651, + 0.013445362448692322, + 0.0099698631092906, + 0.0007626437582075596, + -0.01040112879127264, + 0.0024163599591702223, + 0.010189724154770374, + -0.007416089531034231, + -0.004075889475643635, + 0.016455769538879395, + -0.009547052904963493, + -0.02289939671754837, + 0.0005340620409697294, + 0.03079749085009098, + -0.017605813220143318, + 0.001066538505256176, + 0.0118809649720788, + 0.030087169259786606, + 0.0013033122522756457, + -0.0028856792487204075, + -0.0018825620645657182, + -0.0010765802580863237, + -0.00487922877073288, + -0.002858196385204792, + 0.029410673305392265, + -0.019702952355146408, + 0.020447097718715668, + -0.01296335831284523, + -0.014206420630216599, + 0.005855920258909464, + -0.0005065794102847576, + -0.017123810946941376, + 0.010240461677312851, + -0.02117433212697506, + 0.00643517030403018, + 0.030577627941966057, + -0.006363292690366507, + 0.02180008962750435, + -0.0010316567495465279, + -0.024100176990032196, + -0.0082067446783185, + -0.013715961016714573, + -0.0025072640273720026, + 0.005970078986138105, + -0.009572421200573444, + -0.007741653360426426, + 0.014214877039194107, + 0.004532524384558201, + -0.0016711570788174868, + -0.0020960811525583267, + -0.007124350871890783, + -0.018417609855532646, + 0.004431050270795822, + 0.014020384289324284, + 0.015424113720655441, + -0.004422593861818314, + -0.00472278892993927, + -0.0007985826232470572, + -0.012785778380930424, + -0.001721894252113998, + -0.001573910703882575, + -0.014223332516849041, + -0.01095923874527216, + -0.012549004517495632, + 0.0006019759457558393, + 0.02450607530772686, + -0.014739161357283592, + -0.00928491074591875, + -0.011221380904316902, + -0.005179424304515123, + 0.0012525749625638127, + 0.0021034805104136467, + 0.0070059639401733875, + -0.0005036725779064, + 0.005648743361234665, + -0.0005028797895647585, + -0.003993441816419363, + -0.019533827900886536, + 0.007500651758164167, + -0.01348764356225729, + -0.02178317867219448, + 0.0011880964739248157, + -0.02080225758254528, + 0.024827411398291588, + 0.005606462247669697, + -0.00903968047350645, + -0.0027059847488999367, + 0.005128686781972647, + -0.02068387158215046, + -0.0020971382036805153, + -0.010527972131967545, + -0.007014419883489609, + 0.008650694973766804, + 0.00344801670871675, + 0.006426713895052671, + -0.010468779131770134, + 0.010671727359294891, + 0.013538380153477192, + -0.004397225566208363, + 0.013419993221759796, + 0.012735040858387947, + 0.007449914701282978, + -0.0029025916010141373, + -0.008650694973766804, + 0.020024288445711136, + 0.023660454899072647, + -0.01716609112918377, + -0.018654383718967438, + -0.007365352474153042, + -0.001539028831757605, + -0.009648527018725872, + -0.008443518541753292, + 0.014054208993911743, + -0.006287186872214079, + 0.004650911316275597, + 0.007720512803643942, + -0.04072507098317146, + 0.00894666276872158, + -0.018248485401272774, + -0.01686166785657406, + -0.018468346446752548, + -0.0038475722540169954, + -0.017876412719488144, + 0.008096814155578613, + 0.004612858407199383, + 0.01951691508293152, + -0.015415657311677933, + -0.009893757291138172, + 0.016320470720529556, + -0.0018846761668100953, + 0.008921293541789055, + -0.0246413741260767, + 0.013470730744302273, + 0.021766265854239464, + 0.013910453766584396, + 0.018417609855532646, + 0.004553664941340685, + -0.022865571081638336, + -0.004291522782295942, + -0.00580095499753952, + 0.006232221145182848, + 0.021208155900239944, + -0.009234173223376274, + 0.010485691018402576, + -0.012861884199082851, + 0.011373592540621758, + 0.003934248350560665, + 0.012329143472015858, + -0.0006791387568227947, + -0.00020929101447109133, + 0.021817002445459366, + 0.013563749380409718, + 0.021833915263414383, + -0.028615789487957954, + 0.003682676237076521, + -0.0016553016612306237, + 0.017571989446878433, + -0.005259757861495018, + 0.0016024503856897354, + -0.006891805212944746, + -0.017977885901927948, + -0.004511384293437004, + 0.015170427039265633, + 0.00935256015509367, + 0.006206852849572897, + 0.008684519678354263, + 0.007919233292341232, + -0.010392673313617706, + 0.026890724897384644, + -0.0008329359698109329, + 0.014434738084673882, + 0.0035685175098478794, + -0.0032133569475263357, + -0.002503036055713892, + 0.014916741289198399, + -0.000977748422883451, + -0.0010242575081065297, + -0.0006886519840918481, + -0.006739593576639891, + -0.018654383718967438, + 0.0006907660281285644, + 0.008122182451188564, + -0.01580464281141758, + -0.006439398508518934, + 0.037308767437934875, + -0.009910669177770615, + 0.023068521171808243, + -0.012675847858190536, + -0.007974199019372463, + -0.010426498018205166, + 0.0002447013685014099, + 0.0022197531070560217, + 0.009538596495985985, + -0.013606029562652111, + -0.0011236178688704967, + 0.01692086085677147, + 0.010079793632030487, + -0.0006463709869422019, + -0.00219227047637105, + 0.00307805766351521, + -0.023423681035637856, + -0.006109606474637985, + -0.008312446996569633, + 0.006819927599281073, + 0.001230377471074462, + -0.003204900771379471, + 0.03291153907775879, + -0.03896618261933327, + -0.0051202308386564255, + -0.0014840635703876615, + -0.0072511937469244, + -0.012379880994558334, + -0.00990221370011568, + -0.003792606759816408, + 0.004164679907262325, + 0.013969646766781807, + 0.005864376667886972, + -0.0008154950337484479, + 0.012379880994558334, + 0.016016047447919846, + 0.007559845224022865, + -7.667562385904603e-6, + 0.014011927880346775, + 0.014764529652893543, + -0.012667391449213028, + 0.026078928261995316, + 0.00036784482654184103, + 0.0014301552437245846, + 0.001315996516495943, + 0.007060929201543331, + -0.014299438335001469, + -0.008160235360264778, + 0.011212924495339394, + -0.0015348007436841726, + 0.0007526020053774118, + 0.01777493767440319, + -0.002022089436650276, + 0.006722681224346161, + 0.0061392029747366905, + -0.004820035304874182, + 0.0030759437941014767, + -0.002638335106894374, + 0.013792066834867, + -0.014959022402763367, + 0.001466094166971743, + -0.0017810877179726958, + 0.006976366974413395, + 0.0035325787030160427, + -0.003018864430487156, + -0.0033592265099287033, + 0.005686796270310879, + 0.005826323758810759, + 0.00827439408749342, + 0.005610690452158451, + -0.015314183197915554, + 0.0063675204291939735, + 0.01543257012963295, + 0.005331635940819979, + 0.0246413741260767, + -0.012303775176405907, + -0.02345750667154789, + 0.015449482016265392, + -0.0017874297918751836, + 0.026315702125430107, + -0.003949046600610018, + 0.00017586258763913065, + 0.01002905610948801, + -0.009783826768398285, + 0.0012367196613922715, + -0.014079577289521694, + -0.0026700459420681, + -0.010265829972922802, + 0.011838683858513832, + 0.011779489926993847, + 0.02369428053498268, + 0.015449482016265392, + 0.005665655713528395, + -0.01968603953719139, + -0.010950782336294651, + 0.008895925246179104, + -0.007602126337587833, + -0.0015231735305860639, + 0.014172595925629139, + 0.008988942950963974, + 0.019669126719236374, + -0.004612858407199383, + 0.023440593853592873, + 0.004786210600286722, + 0.003955388907343149, + 0.010468779131770134, + -0.006545100826770067, + -0.011170643381774426, + -0.00042201735777780414, + -0.011348224245011806, + 0.0003097084118053317, + 0.005103318486362696, + 0.0061392029747366905, + -0.001577081740833819, + -0.012193843722343445, + -0.007162403780966997, + 0.02271335944533348, + 0.00026187801267951727, + 0.03487338125705719, + -0.013124026358127594, + -0.01099306344985962, + 0.00249246577732265, + -0.006101150065660477, + 0.011618822813034058, + 0.00694677047431469, + -0.009310279041528702, + 0.002454412868246436, + 0.004443734418600798, + -0.02166479080915451, + -0.003198558697476983, + 0.021258892491459846, + -0.0020400588400661945, + -0.00567833986133337, + 0.029545972123742104, + 0.0030209782999008894, + 0.001713438075967133, + -0.01604987308382988, + 0.0014576378744095564, + -0.009420209564268589, + 0.0029554427601397038, + -0.03967650234699249, + -0.0073357559740543365, + -0.0006992222624830902, + -0.011957070790231228, + 0.004887685179710388, + -0.006363292690366507, + -0.017318302765488625, + -0.017825674265623093, + -0.002452298766002059, + 0.008887468837201595, + -0.005707936827093363, + -0.009327191859483719, + 0.016016047447919846, + -0.025520820170640945, + 0.030154818668961525, + -0.014358632266521454, + -0.006612750235944986, + -0.007885408587753773, + 0.0194492656737566, + 0.011999351903796196, + -0.0038560284301638603, + -0.004781982395797968, + -0.02284866012632847, + -0.02574068121612072, + 0.010477234609425068, + 0.0025537731125950813, + -0.009208804927766323, + 0.005648743361234665, + 0.00854499265551567, + 0.0032936909701675177, + -0.0006949941744096577, + -0.01648113876581192, + 0.01710689812898636, + 0.010477234609425068, + -0.009335647337138653, + -0.005149827338755131, + 0.017487427219748497, + -0.015415657311677933, + 0.005196336656808853, + -0.01770728826522827, + 0.00857881736010313, + -0.01814701035618782, + 0.01722528412938118, + -0.005559953395277262, + -0.006261818110942841, + 0.0026129665784537792, + -0.005230161361396313, + 0.0071328068152070045, + 0.007018648087978363, + -0.0008746884413994849, + -0.007716285064816475, + 0.009183435700833797, + 0.018366871401667595, + -0.011813314631581306, + 0.0026700459420681, + 0.014375544153153896, + -0.009496315382421017, + -0.02234128676354885, + -0.011348224245011806, + -0.004693192429840565, + -0.027617957442998886, + 0.00910732988268137, + 0.015381832607090473, + -0.025013446807861328, + 0.00870143249630928, + -0.0012451758375391364, + -0.0016479025362059474, + 0.003365568583831191, + 0.004887685179710388, + 0.010045968927443027, + 0.0009613645379431546, + 0.005915113724768162, + -0.012058544903993607, + -0.001354049425572157, + -0.01851908303797245, + 0.020447097718715668, + -0.01660798117518425, + -0.0016701000276952982, + -0.0017874297918751836, + 0.009225716814398766, + -0.0073146154172718525, + -0.012768865562975407, + 0.01740286499261856, + -0.011339767836034298, + -0.020277973264455795, + -0.031220300123095512, + -0.0006389718037098646, + 0.01382589153945446, + -0.006384432781487703, + -0.015381832607090473, + -0.005132914986461401, + 0.012455986812710762, + -0.021512579172849655, + -0.023626629263162613, + 0.006545100826770067, + -0.0016933545703068376, + -0.0067776464857161045, + 0.016700999811291695, + 0.0012811146443709731, + 0.0033106033224612474, + 0.009817651472985744, + -0.007115894462913275, + 0.014764529652893543, + -0.03208283334970474, + -0.02247658744454384, + 0.016582613810896873, + 0.00012611634156201035, + -0.005826323758810759, + -1.1197862477274612e-5, + 0.014155683107674122, + -0.004486015532165766, + -0.013225500471889973, + -0.006122290622442961, + -0.002401561476290226, + -0.013656767085194588, + -0.006477451417595148, + -0.013496099039912224, + -0.0284635778516531, + 0.02222290076315403, + -0.007999567314982414, + 0.00024655114975757897, + -0.014840635471045971, + -0.013140939176082611, + -0.0063463798724114895, + 0.00022422149777412415, + -0.008955118246376514, + 0.01253209263086319, + -0.01265893504023552, + 0.00217535812407732, + -0.003295805072411895, + 0.006227993406355381, + -0.0009375814697705209, + 0.005450022406876087, + 0.0019375274423509836, + 0.008012251928448677, + -0.0037883787881582975, + -0.002027374692261219, + 0.0015421999851241708, + -0.004836948122829199, + -0.02264571003615856, + -0.007619038689881563, + -0.00387294078245759, + -0.023626629263162613, + 0.015407200902700424, + -0.026501739397644997, + 0.019601477310061455, + 0.0007536590564996004, + 0.0045029278844594955, + -0.00963161513209343, + 0.0037672382313758135, + 0.0024163599591702223, + 0.031085001304745674, + -0.02531787008047104, + 0.006337923929095268, + 0.00959779042750597, + -0.006507047917693853, + -0.006959454622119665, + -0.002460754942148924, + -0.012227669358253479, + 0.0016352181555703282, + -0.0034395602997392416, + 0.009496315382421017, + 0.0005168853676877916, + 0.02036253549158573, + -0.03130486235022545, + -0.028970949351787567, + -0.014789897948503494, + -0.002221867209300399, + 0.006600066088140011, + -0.00036837332299910486, + -0.012160019017755985, + 0.010798570699989796, + -0.02352515608072281, + 0.007166631519794464, + -0.0032810065895318985, + -0.021089769899845123, + 0.02802385576069355, + -0.007555617019534111, + 0.00993603840470314, + -0.0027863187715411186, + 0.01914484240114689, + -0.015407200902700424, + 0.003879282856360078, + 0.005297810770571232, + 0.0156270619481802, + 0.0018867901526391506, + -0.00482849171385169, + 0.023542068898677826, + -0.014671511948108673, + -0.0033909373451024294, + -0.009149610996246338, + -0.005526128225028515, + -0.01828230917453766, + 0.02092064544558525, + -0.016151346266269684, + -0.004198504611849785, + -0.012422162108123302, + -0.03193062171339989, + -0.01851908303797245, + -0.013665223494172096, + -0.007982655428349972, + 0.019618390128016472, + 0.002166901947930455, + 0.008819819428026676, + -0.0073146154172718525, + -0.016125978901982307, + -0.0011690700193867087, + -0.0025051499251276255, + -0.03734258934855461, + 0.0052682142704725266, + 0.0036678779870271683, + 0.02208760194480419, + -0.001815969473682344, + 0.012540548108518124, + 0.002680616220459342, + 5.063811840955168e-5, + -0.019364703446626663, + -0.008515396155416965, + 0.01678556203842163, + 0.011618822813034058, + 0.0099698631092906, + -0.023812666535377502, + -0.03346965089440346, + -0.011441241949796677, + 0.013834347948431969, + 0.01253209263086319, + -0.02210451290011406, + -0.004452190827578306, + -0.00283071375451982, + 0.01324241328984499, + -0.021698616445064545, + 0.008126410655677319, + 0.007386493030935526, + -0.003927906043827534, + 0.016447314992547035, + 0.009826107881963253, + 0.0020633134990930557, + -0.003196444595232606, + 0.007504879962652922, + -0.019483091309666634, + 0.007792390882968903, + -0.006587381940335035, + 0.009208804927766323, + 0.014071120880544186, + -0.006553557235747576, + 0.004760842304676771, + 0.011627278290688992, + -0.0028349419590085745, + -0.027127498760819435, + 0.00965698342770338, + 0.015254989266395569, + 0.004230215214192867, + -0.005500759929418564, + -0.014324807561933994, + -0.0007969971047714353, + -0.003701702691614628, + -0.008938206359744072, + -0.003477613441646099, + 0.007969970814883709, + -0.013986559584736824, + 0.008253253996372223, + -0.002217639237642288, + 0.008802906610071659, + 0.009859932586550713, + 0.022679535672068596, + -0.017385952174663544, + 0.0194492656737566, + -0.008836731314659119, + 0.005978535395115614, + 0.005948938429355621, + -0.005530356429517269, + 0.0014005585107952356, + -0.0068960334174335, + -0.024167826399207115, + 0.015068952925503254, + 0.010654815472662449, + 0.009394841268658638, + -0.0017388067208230495, + -0.01388508453965187, + 0.007103210315108299, + -0.00583477970212698, + -0.028717264533042908, + -0.00026121738483197987, + -0.015601693652570248, + 0.0036995885893702507, + 0.021563315764069557, + -0.007382264826446772, + 0.0060123600997030735, + -0.006308326963335276, + 0.0016183058032765985, + -0.022070689126849174, + 0.0033106033224612474, + 0.007153947371989489, + 0.00935256015509367, + -0.029393760487437248, + 0.005720620974898338, + -0.015948398038744926, + 0.0024184740614145994, + -0.00815177895128727, + -0.002940644510090351, + 0.006938314065337181, + -0.0015147172380238771, + -0.0062195369973778725, + 0.018468346446752548, + -0.003190102521330118, + 0.007555617019534111, + -0.0001026635873131454, + 0.01833304762840271, + -0.022933222353458405, + 0.0029744692146778107, + 0.0323365181684494, + -0.013834347948431969, + -0.009031224064528942, + 0.017758024856448174, + -0.00022237170196603984, + -0.0011151616927236319, + 0.016870124265551567, + -0.010595621541142464, + -0.008506939746439457, + -0.01061253435909748, + 0.021005207672715187, + -0.0018413381185382605, + -0.011990895494818687, + 0.0023508244194090366, + -0.0017303504282608628, + 0.004308435134589672, + -0.019111018627882004, + 0.0025664574932307005, + -0.00870143249630928, + -0.019161755219101906, + -0.028446665033698082, + 0.004004011861979961, + -0.009335647337138653, + -0.00012334164057392627, + -0.011069169268012047, + -0.005230161361396313, + -0.005724849179387093, + -0.009741545654833317, + 0.016591070219874382, + 0.013842803426086903, + 0.017876412719488144, + -0.01900954358279705, + -0.008988942950963974, + -0.024117089807987213, + -0.012151563540101051, + 0.02178317867219448, + 0.023220732808113098, + 0.02203686349093914, + -0.0006019759457558393, + -0.0036467374302446842, + -0.007720512803643942, + -0.005627602804452181, + -0.0043803127482533455, + -0.004327461589127779, + 0.017605813220143318, + -0.00307805766351521, + -0.000784312782343477, + -0.002921618055552244, + -0.009944493882358074, + -0.006832611747086048, + -0.0007452028803527355, + -0.005162511486560106, + 0.009826107881963253, + -0.0025685715954750776, + 0.011551172472536564, + -0.00141535687725991, + -0.0045029278844594955, + 0.00740763358771801, + -0.00739072123542428, + 0.0029702412430197, + 0.01722528412938118, + -0.0038348878733813763, + 0.006587381940335035, + -0.006088465917855501, + -0.005898201372474432, + 0.005276670213788748, + 0.029224636033177376, + -0.0019290712662041187, + 0.004617086611688137, + 0.0058051832020282745, + 0.001493576797656715, + -0.00010061560169560835, + -0.024032527580857277, + -0.01821465976536274, + -0.010739377699792385, + -0.021140506491065025, + 0.008938206359744072, + -0.024793585762381554, + 0.019973549991846085, + -0.01770728826522827, + 0.0022282092832028866, + -0.02080225758254528, + -0.018535995855927467, + -0.003505096072331071, + 0.004061091225594282, + 0.0044817873276770115, + -0.0015961081953719258, + 0.016337383538484573, + 0.02240893617272377, + 0.012523636221885681, + -0.005792498588562012, + -0.009031224064528942, + -0.00756407342851162, + 0.024607550352811813, + -0.016810931265354156, + -0.001939641428180039, + 0.003128794953227043, + -0.019838251173496246, + 0.008295535109937191, + 0.012701216153800488, + 0.011745665222406387, + 0.010494147427380085, + 0.019060280174016953, + -0.01099306344985962, + 0.0014206420164555311, + -0.03541457653045654, + -0.0025749136693775654, + 0.006726908963173628, + -0.007170859724283218, + -0.022561147809028625, + 0.013732872903347015, + 0.0006648689159192145, + 0.011365136131644249, + 0.00018564007768873125, + -0.00016885979857761413, + 0.019787514582276344, + -0.014240245334804058, + -0.015483306720852852, + -0.0027546079363673925, + -0.00903968047350645, + 0.022172164171934128, + 0.006422485690563917, + -0.017504340037703514, + 0.012430617585778236, + 0.011711840517818928, + 0.009191892109811306, + -0.02371119149029255, + -0.002651019487529993, + -0.01413031481206417, + 0.027026023715734482, + 0.03199826925992966, + 0.01522116456180811, + 0.010595621541142464, + 0.0048327199183404446, + 0.008887468837201595, + 0.02827754244208336, + 0.0039807572029531, + -0.009132699109613895, + 0.00450715608894825, + 0.014375544153153896, + -0.0145023874938488, + -0.00737380888313055, + 0.002879336941987276, + -0.034230709075927734, + 0.019246317446231842, + -0.006443626247346401, + 0.00682415533810854, + -0.021377280354499817, + -0.02215525135397911, + 0.0041689081117510796, + -0.014959022402763367, + 0.03438292071223259, + 0.009166523814201355, + 0.009648527018725872, + -0.0007214198121801019, + -0.006008131895214319, + -0.0025960542261600494, + 0.002581255743280053, + -0.018383784219622612, + -0.016878580674529076, + 0.011043800972402096, + 0.01451084390282631, + 0.010468779131770134, + -0.009124242700636387, + -0.028294453397393227, + -0.016218997538089752, + -0.003927906043827534, + -0.012828059494495392, + 0.015102777630090714, + 0.009826107881963253, + 0.0031626198906451464, + 0.007915006019175053, + 0.017622726038098335, + 0.012921077199280262, + 0.007965742610394955, + -0.0022282092832028866, + 0.0017758025787770748, + -0.00199037860147655, + -0.0003480255836620927, + -0.005543041042983532, + -0.004955334588885307, + 0.0011849254369735718, + -0.008413922041654587, + 0.005521900486201048, + -0.012954902835190296, + 0.020768433809280396, + -0.008177148178219795, + -0.0016436743317171931, + -0.032065920531749725, + 0.007200456690043211, + 0.005187880247831345, + 0.017436690628528595, + 0.0030822858680039644, + 0.005022984463721514, + 0.024303127080202103, + 0.00247555342502892, + -0.0031309090554714203, + -0.00907350517809391, + -0.009885300882160664, + -0.009496315382421017, + 0.015254989266395569, + 0.016506507992744446, + 0.0075683011673390865, + -0.01671791262924671, + 0.002091853180900216, + -0.024827411398291588, + 0.007758565712720156, + 0.010578709654510021, + 0.005699480418115854, + -0.010764745995402336, + 0.017183003947138786, + 0.017318302765488625, + -0.002703870879486203, + -0.010291198268532753, + -0.0031034264247864485, + 0.005648743361234665, + -0.0012726584682241082, + 0.0071116662584245205, + 0.0004489715211093426, + 0.022510411217808723, + -0.002887793118134141, + -0.005809411406517029, + -0.00592357013374567, + -0.023372944444417953, + -0.023778840899467468, + -0.0037186150439083576, + -0.011128362268209457, + 0.00975845754146576, + 0.012878797017037868, + 0.005154055543243885, + -0.008409693837165833, + -0.003792606759816408, + -0.001584480982273817, + 0.009885300882160664, + -0.014265613630414009, + -0.011568085290491581, + -0.016218997538089752, + -0.013259326107800007, + -0.0046044024638831615, + 0.012794234789907932, + -0.0068030147813260555, + -0.011339767836034298, + -0.006304099224507809, + 0.01062099076807499, + 0.019043369218707085, + 0.0061180624179542065, + 0.013673679903149605, + 0.012692759744822979, + 0.033063750714063644, + 0.01684475503861904, + 0.001315996516495943, + -0.004752385895699263, + 0.0035896580666303635, + -0.03950737789273262, + 0.007403405383229256, + 0.013724416494369507, + 0.008659151382744312, + -0.011762578040361404, + 0.005331635940819979, + -0.01679401844739914, + 0.0175381638109684, + -0.0009867331245914102, + 0.007204684428870678, + 0.002989267697557807, + -0.0010660100961104035, + 0.002712327055633068, + 0.02636644057929516, + -0.014950565993785858, + -0.00031367226620204747, + 0.025757594034075737, + 0.010527972131967545, + 0.002661589765921235, + -0.011094537563621998, + 0.013665223494172096, + -0.00595739483833313, + -0.015449482016265392, + -0.012379880994558334, + -0.005953166633844376, + -0.011627278290688992, + 0.0154579384252429, + -0.022950133308768272, + -0.00042677397141233087, + 0.01784258708357811, + 0.0006690970039926469, + -0.002361394464969635, + -0.012379880994558334, + -0.006274502258747816, + -0.01919558085501194, + -0.008836731314659119, + 0.01511969044804573, + 0.016151346266269684, + 0.008012251928448677, + 0.004908825736492872, + -0.012599742040038109, + -0.014071120880544186, + -0.02210451290011406, + -0.010849308222532272, + -0.011618822813034058, + 0.015111234039068222, + -0.010198180563747883, + 0.0011902105761691928, + -0.022172164171934128, + 0.007475282996892929, + 0.004574805498123169, + 0.015618606470525265, + -0.010688640177249908, + -0.02914007380604744, + 0.01225303765386343, + -0.005915113724768162, + 0.011060712859034538, + -0.013935822062194347, + -0.013834347948431969, + -0.002697528572753072, + 0.006075781770050526, + -0.01777493767440319, + -0.00026848443667404354, + 0.012667391449213028, + -0.010333479382097721, + -0.01122983731329441, + -0.00199037860147655, + -0.010223548859357834, + -0.004342259839177132, + -0.001931185252033174, + 0.016624893993139267, + -0.007809303235262632, + 0.011145275086164474, + -0.012489811517298222, + -0.012464442290365696, + -0.0024480705615133047, + 0.02110668085515499, + -0.008371640928089619, + 0.002621422754600644, + 0.02870035171508789, + -0.0009729918092489243, + 0.005915113724768162, + -0.000465355406049639, + -0.00941175315529108, + -0.021647877991199493, + 0.01654878817498684, + -0.009098874405026436, + 0.003099198220297694, + -0.011694928631186485, + 0.0019618389196693897, + 0.013842803426086903, + -0.010604077950119972, + 0.0033338579814881086, + -0.009344103746116161, + -0.0015252875164151192, + -0.007906549610197544, + 0.013724416494369507, + -0.008198288269340992, + 0.02031179890036583, + -0.0008815590990707278, + -0.0007890693959780037, + -0.013665223494172096, + -0.004904597532004118, + -0.0035177802201360464, + 0.006392889190465212, + -0.02037944830954075, + -0.020159587264060974, + 0.014578493312001228, + -0.0007029218249954283, + 0.00023928411246743053, + -0.01851908303797245, + 0.029427584260702133, + -0.005707936827093363, + -0.002946986583992839, + 0.007386493030935526, + 0.005792498588562012, + -0.010494147427380085, + -0.014290982857346535, + 0.00012036875705234706, + 0.015703167766332626, + 0.00566142750903964, + -0.009115786291658878, + -0.016151346266269684, + 0.02369428053498268, + 0.033554211258888245, + -0.004285180475562811, + -0.013031008653342724, + 0.0019142728997394443, + -0.041333917528390884, + -0.00396384485065937, + -0.0008667607908137143, + -0.018366871401667595, + 0.010257373563945293, + 0.0018730488372966647, + -0.030594540759921074, + -0.008122182451188564, + -0.05063574016094208, + -0.014713792130351067, + -0.0003712801553774625, + 0.010604077950119972, + 0.011449698358774185, + -0.002680616220459342, + 0.011475066654384136, + -0.008498483337461948, + -0.008282850496470928, + 0.014062665402889252, + 0.02075152099132538, + 0.06521423161029816, + 0.021833915263414383, + 0.02369428053498268, + 0.00034379749558866024, + 0.009124242700636387, + -0.0388985313475132, + 0.004071661736816168, + -0.013369256630539894, + -0.02142801694571972, + -0.019770601764321327, + 0.007230053190141916, + -0.013538380153477192, + 0.01034193579107523, + 0.013817435130476952, + -0.010595621541142464, + 0.017808763310313225, + -0.004980703350156546, + -0.01950000412762165, + -0.002152103465050459, + 0.0018941893940791488, + 0.00627873046323657, + 0.012633566744625568, + -0.00903968047350645, + -0.013140939176082611, + 0.01292953360825777, + -0.006325239781290293, + -0.005204792600125074, + -0.013842803426086903, + 0.017005423083901405, + 0.0004886099486611784, + 0.021140506491065025, + -4.9911413952941075e-5, + -0.030594540759921074, + 0.011272118426859379, + -0.0051244585774838924, + 0.01648959517478943, + -0.011475066654384136, + 0.02080225758254528, + 0.010866220109164715, + -0.004158337600529194, + -0.030831314623355865, + -0.001842395169660449, + 0.010502603836357594, + -0.008109498769044876, + -0.0012747725704684854, + 0.008718345314264297, + 0.006151887588202953, + 0.01027428638190031, + 0.0003630882129073143, + -0.004633998963981867, + -0.00824056938290596, + 0.00691294576972723, + -0.0033803670667111874, + 0.001498861936852336, + -0.005187880247831345, + 0.0004127683932892978, + 0.009310279041528702, + -0.004853860475122929, + -0.008367412723600864, + -0.00659161014482379, + 0.004532524384558201, + -0.0018328819423913956, + 0.008287078700959682, + 0.032860804349184036, + 0.0017525480361655354, + 0.008003795519471169, + -0.0061138346791267395, + 0.004397225566208363, + -0.0006342151900753379, + -0.02234128676354885, + 0.007297703064978123, + -0.00756407342851162, + -0.018231572583317757, + -0.010037512518465519, + -0.008870556950569153, + -0.02340676821768284, + -0.013470730744302273, + -0.02611275389790535, + -0.004443734418600798, + 0.002102423459291458, + 0.007001735735684633, + -0.002215525135397911, + -0.015364919789135456, + 0.004798895213752985, + 0.0026150806806981564, + 0.0016806703060865402, + -0.010138986632227898, + 0.014071120880544186, + 0.009547052904963493, + 0.020717697218060493, + -0.022611886262893677, + -0.007403405383229256, + -0.01382589153945446, + 0.00247555342502892, + 0.002978697419166565, + -0.005251301918178797, + 0.0004796252469532192, + 0.006041956599801779, + 0.004094915930181742, + 0.0099698631092906, + 0.0057037086226046085, + 0.0024079037830233574, + 0.0007272334187291563, + 0.009513228200376034, + -0.025774504989385605, + -0.02832827903330326, + 0.0008477343362756073, + -0.007509107701480389, + -0.005822095554322004, + 0.015170427039265633, + -0.02536860853433609, + 9.876580588752404e-5, + -0.01870512031018734, + 0.016464225947856903, + 0.028294453397393227, + 0.010418041609227657, + 0.009843019768595695, + 0.003925791941583157, + 0.016413489356637, + 0.002951214788481593, + -0.026467913761734962, + 0.012362968176603317, + 0.01697159931063652, + 0.002462869044393301, + 0.013369256630539894, + 0.001837110030464828, + 0.005390828941017389, + 0.020396361127495766, + 0.0051202308386564255, + -0.0218508280813694, + 0.0046297707594931126, + -0.0020242035388946533, + -0.0006474280380643904, + -0.006667715962976217, + -0.011060712859034538, + -0.004570577293634415, + 0.012151563540101051, + 0.0020157473627477884, + 0.020159587264060974, + 0.0035177802201360464, + -0.019280141219496727, + 0.03609107434749603, + -0.007631722837686539, + 0.0016056214226409793, + -0.025909805670380592, + 0.006925629917532206, + -0.024049440398812294, + 0.003116110572591424, + -0.006925629917532206, + 0.02036253549158573, + -0.014663055539131165, + -0.00777970626950264, + -0.008785994723439217, + -0.0005369688733480871, + -0.0007356896530836821, + 0.0004571634635794908, + -0.016557244583964348, + 0.014121858403086662, + -0.01740286499261856, + 0.006714224815368652, + 0.011762578040361404, + -0.004511384293437004, + 0.005276670213788748, + 0.020261062309145927, + 0.0010739377466961741, + -0.002058028243482113, + 0.002631993032991886, + 0.007124350871890783, + -0.0021129937376827, + -0.008583045564591885, + -0.01679401844739914, + 0.012616653926670551, + 0.0073146154172718525, + 0.011060712859034538, + 0.001410071738064289, + 0.015753906220197678, + -0.0060123600997030735, + -0.0039849854074418545, + -0.01840069703757763, + -0.015660887584090233, + 0.009800738655030727, + 0.024793585762381554, + 0.015009759925305843, + -0.0029744692146778107, + 0.0063463798724114895, + 0.0090143121778965, + 0.005737533327192068, + 0.004179478157311678, + 0.01064635906368494, + 0.005217477213591337, + -0.0009867331245914102, + 0.028666526079177856, + -0.016624893993139267, + -0.019601477310061455, + -0.006693084258586168, + 0.003752439981326461, + -0.011821771040558815, + -0.00535700423642993, + -0.037816137075424194, + 0.003190102521330118, + 0.020768433809280396, + -0.0024882375728338957, + -0.0026954144705086946, + 0.005251301918178797 + ], + "e8532359-9caa-4ec8-882e-9a1a355de9bc": [ + -9.219102503266186e-5, + -0.024972306564450264, + -0.009886864572763443, + 0.003115558298304677, + 0.007682253606617451, + -0.01525288075208664, + 0.02651912346482277, + 0.04707423225045204, + -0.014965842477977276, + 0.06490248441696167, + -0.015141255222260952, + 0.006494234781712294, + 0.00921710953116417, + -0.0173020139336586, + 0.025498542934656143, + 0.03757008537650108, + -0.002130858600139618, + 0.01786014251410961, + -0.0031693780329078436, + -0.012773191556334496, + 0.046819087117910385, + -0.007698200177401304, + -0.05676973983645439, + 0.02390388771891594, + -0.00749488128349185, + 0.01706281490623951, + -0.008985884487628937, + 0.016393059864640236, + -0.017796356230974197, + -0.0035341554321348667, + 0.03402994945645332, + 0.03457213193178177, + -0.0029421395156532526, + -0.017206333577632904, + 0.03272233158349991, + -0.031191464513540268, + 0.011019070632755756, + -0.02820945717394352, + -0.03552892804145813, + 0.014846243895590305, + -0.007638400420546532, + -0.008874258026480675, + 0.015300720930099487, + -0.035305675119161606, + -0.040695611387491226, + -0.0028364937752485275, + -0.009807132184505463, + -0.02982006035745144, + 0.007873612456023693, + -0.021464064717292786, + 0.01867341808974743, + 0.0026072619948536158, + 0.0379846952855587, + 0.031127678230404854, + 0.01653657853603363, + 0.0007664313307031989, + 0.029277877882122993, + -0.009121430106461048, + 0.007550694514065981, + -0.08426160365343094, + 0.006797219626605511, + 0.005437775515019894, + 0.028942998498678207, + 0.0018836869858205318, + 0.027986206114292145, + -0.004875659476965666, + -0.008794525638222694, + 0.02293114736676216, + -0.021990301087498665, + 0.006637753918766975, + 0.029102465137839317, + 0.04248162731528282, + -0.03801659122109413, + 0.0054298024624586105, + 0.01709470897912979, + -0.0066696470603346825, + 0.0240155141800642, + 0.010492834262549877, + 0.01116258930414915, + -0.012908737175166607, + 0.008056997321546078, + -0.030266564339399338, + 0.011489493772387505, + 0.007534747943282127, + 0.05597241222858429, + 0.01410472858697176, + -0.019247492775321007, + -0.05638702213764191, + 0.003310903673991561, + -0.014391766861081123, + 0.010110116563737392, + 0.004787953570485115, + -0.0019175733905285597, + 0.004209890961647034, + -0.04104643687605858, + -0.0031653912737965584, + 0.018721256405115128, + -0.007466974668204784, + 0.01597047597169876, + -0.005748733412474394, + 0.017046868801116943, + -0.012079516425728798, + 0.02237301878631115, + 0.005696907173842192, + 0.005322162993252277, + -0.028942998498678207, + 0.0009886864572763443, + -7.749029464321211e-5, + 0.003219211008399725, + 0.033934272825717926, + -0.039770711213350296, + 0.013411053456366062, + 0.020427538082003593, + -0.01774851605296135, + -0.041588619351387024, + -0.05013597384095192, + -0.01750931888818741, + -0.023521170020103455, + -0.007578600663691759, + -0.01774851605296135, + 0.04085507616400719, + 0.02607261948287487, + -0.009249002672731876, + -0.0018876736285164952, + -0.023919833824038506, + 0.015205041505396366, + 0.00121193821541965, + 0.017716623842716217, + 0.027380237355828285, + 0.02675832062959671, + -0.01357849221676588, + -0.053261496126651764, + -0.028464602306485176, + 0.009496173821389675, + 0.030314402654767036, + -0.006039758212864399, + -0.02784268744289875, + 0.041269686073064804, + -0.007092230953276157, + 0.02168731577694416, + -0.06289321929216385, + -0.015189094468951225, + -0.012541966512799263, + -0.0019654131028801203, + 0.0033288435079157352, + -0.001717244740575552, + -0.03147850185632706, + 0.05351664125919342, + -0.04873267561197281, + 0.025881260633468628, + -0.08713198453187943, + -0.02691778726875782, + 0.0009154319996014237, + 0.02216571383178234, + -0.009520093910396099, + 0.000741016527172178, + 0.014997735619544983, + 0.007167976815253496, + 0.02736428938806057, + 0.01750931888818741, + 0.017078761011362076, + -0.05549401417374611, + -0.0020411591976881027, + -0.0036198683083057404, + 0.04579851031303406, + 0.015619651414453983, + 0.06420083343982697, + 0.01624954119324684, + -0.024972306564450264, + 0.018848828971385956, + -0.036804649978876114, + -0.004712207242846489, + 0.018290700390934944, + 0.026343710720539093, + -0.037123583257198334, + 0.016680097207427025, + 0.01951858401298523, + 0.07105785608291626, + 0.0023561036214232445, + -0.007179936859756708, + -0.062191568315029144, + -0.0025833421386778355, + 0.014296087436378002, + 0.023728474974632263, + 0.03351965919137001, + 0.024924466386437416, + 0.027109146118164062, + 0.006294902879744768, + 0.010939337313175201, + -0.005318176466971636, + 0.01526882778853178, + -0.025052038952708244, + -0.0008680906612426043, + 0.01327550783753395, + -0.004213877487927675, + -0.03284990414977074, + 0.004016538616269827, + 0.007710159756243229, + 0.006115504074841738, + 0.03862255811691284, + -0.025929100811481476, + -0.036996010690927505, + -0.02285141497850418, + 0.02112918719649315, + -0.015181121416389942, + 0.02224544622004032, + -0.02511582523584366, + 0.0029560928232967854, + 0.045734722167253494, + -0.06302078813314438, + 0.03383859246969223, + -0.04426763951778412, + -0.03916474059224129, + -0.037155475467443466, + -0.03935610130429268, + 0.011640986427664757, + -0.02514771930873394, + 0.0215278510004282, + -0.02361685037612915, + -0.013977156020700932, + -0.002834500279277563, + 0.01907208189368248, + -0.0006563004571944475, + -0.03600732237100601, + -0.03572028502821922, + -0.00344046950340271, + -0.023202238604426384, + 0.008587220683693886, + -0.007993211038410664, + 0.003912886139005423, + 0.02559422329068184, + -0.014599071815609932, + 0.025402864441275597, + 0.00814868975430727, + -0.01398513000458479, + 0.021575691178441048, + 0.06876154989004135, + -0.0034903024788945913, + -0.009520093910396099, + 0.023967674002051353, + 0.00788557156920433, + 0.006223143544048071, + 0.01899234764277935, + -8.484066347591579e-5, + -0.013993103057146072, + 0.02305871993303299, + 0.009057643823325634, + 0.03811226785182953, + 0.007004524581134319, + -0.012581832706928253, + -0.013084148988127708, + -0.0031833313405513763, + 0.013833637349307537, + -0.008132743649184704, + -0.04168429598212242, + 0.057120565325021744, + 0.048509422689676285, + -0.035752177238464355, + -0.005924145691096783, + -0.017732569947838783, + 0.0033507701009511948, + 0.0028325070161372423, + -0.003675681073218584, + -0.00021527850185520947, + 0.01609804853796959, + -0.01693524233996868, + 0.0421626940369606, + -0.03444455936551094, + 0.006980604957789183, + 0.008722766302525997, + 0.02763538248836994, + 0.017270119860768318, + -0.029325716197490692, + 0.018290700390934944, + 0.01677577756345272, + -0.030154937878251076, + 0.017270119860768318, + 0.001697311527095735, + 0.03396616503596306, + -0.0035102355759590864, + -0.03533756732940674, + 0.002308263909071684, + -0.012175195850431919, + -0.01487016398459673, + 0.010086196474730968, + -0.024765001609921455, + -0.04429953172802925, + 0.03387048467993736, + -0.07520395517349243, + 0.00900980457663536, + 0.01315590925514698, + -0.022117873653769493, + 0.02374442294239998, + 0.006099557504057884, + -0.006322809495031834, + 0.027380237355828285, + -0.035592712461948395, + -0.006514168344438076, + 0.0012039649300277233, + 0.03473160043358803, + -0.011130696162581444, + -0.006095570977777243, + 0.028257297351956367, + 0.007307509426027536, + -0.0016235586954280734, + -0.026375602930784225, + 0.04426763951778412, + 0.0037893003318458796, + -0.04321516677737236, + 0.00850748736411333, + 0.056992992758750916, + -0.027013465762138367, + -0.04694665968418121, + -0.03769765794277191, + -0.014144595712423325, + -0.020539164543151855, + 0.017365800216794014, + 0.011856264434754848, + -0.029405448585748672, + -0.02366468869149685, + 0.027619434520602226, + -0.014320007525384426, + -0.06550845503807068, + 0.0325150266289711, + 0.04873267561197281, + 0.003908899612724781, + 0.025259345769882202, + 0.019327225163578987, + -0.02913435734808445, + -0.006494234781712294, + -0.02055511064827442, + -0.0063028763979673386, + -0.03288180008530617, + 0.002926192944869399, + -0.03473160043358803, + -0.053133923560380936, + -0.037283048033714294, + -0.01967805065214634, + 0.020299965515732765, + 0.0062390901148319244, + -0.012884817086160183, + 0.003253097413107753, + 0.040982648730278015, + -0.03418941795825958, + 0.004616527818143368, + -0.0005705876974388957, + 0.022101927548646927, + 0.0023421503137797117, + -0.009607800282537937, + 0.00838788878172636, + 0.0011033023474738002, + 0.0051826308481395245, + 0.005928132217377424, + -0.018418272957205772, + 0.048509422689676285, + -5.92701107962057e-5, + -0.021623529493808746, + -0.018290700390934944, + 0.0018059475114569068, + 0.005246417131274939, + -0.0023640769068151712, + -0.024637429043650627, + -0.0034584093373268843, + 0.02607261948287487, + -0.02506798692047596, + -0.013163882307708263, + -0.03766576573252678, + -0.026008833199739456, + 0.007550694514065981, + 0.02184678241610527, + -0.016999028623104095, + 0.023361705243587494, + -0.022404910996556282, + -0.02478094771504402, + -0.02535502426326275, + -0.02551448903977871, + 0.0240155141800642, + -0.019040187820792198, + -0.003966705873608589, + 0.017923928797245026, + 0.009113457053899765, + 0.002130858600139618, + 0.028719747439026833, + 0.04018532112240791, + -0.0008526424062438309, + 0.011258268728852272, + 0.011170562356710434, + -0.017652837559580803, + -0.017876088619232178, + 0.010293502360582352, + -0.013618359342217445, + 0.0009373584762215614, + -0.04254541173577309, + 0.011138669215142727, + 0.004170024301856756, + 0.006526127923280001, + -0.002716894494369626, + 0.005533454939723015, + 0.036230575293302536, + -0.020252125337719917, + -0.016233593225479126, + -0.03750630095601082, + -0.023728474974632263, + -0.026854000985622406, + 0.0014830296859145164, + -0.014359873719513416, + -0.005808533169329166, + -0.00794537179172039, + -0.01774851605296135, + -0.00029276878922246397, + -0.01999698206782341, + 0.013171855360269547, + 0.0066576870158314705, + 0.023329811170697212, + 0.04477792978286743, + 0.01677577756345272, + -0.010732032358646393, + 0.03138282150030136, + -0.029198143631219864, + -0.016002368181943893, + 0.036836545914411545, + 0.035784073173999786, + 0.01722227968275547, + 0.006542074494063854, + -0.008451675064861774, + 0.010389180853962898, + -0.006972631439566612, + -0.004600581247359514, + -0.03594353795051575, + -0.023967674002051353, + -0.010660273022949696, + 0.047775883227586746, + -0.01927938684821129, + 0.01168882567435503, + -0.029596807435154915, + -0.009735372848808765, + 0.022117873653769493, + -0.005106884520500898, + -0.014399739913642406, + 0.01999698206782341, + -0.0498170405626297, + 0.005190603900700808, + -0.012342634610831738, + -0.003701594425365329, + -0.047138020396232605, + -0.020953774452209473, + -0.0370916910469532, + -0.006422475446015596, + 0.03779333829879761, + -0.05179441347718239, + -0.005812519695609808, + 0.02781079337000847, + -0.06394568830728531, + -0.018976401537656784, + -0.008874258026480675, + -0.01106690987944603, + -0.016727937385439873, + -0.0019554465543478727, + 0.023553064092993736, + -0.03396616503596306, + -0.02124081365764141, + -0.004947418812662363, + 0.03114362433552742, + 0.003916872665286064, + 0.03457213193178177, + -0.0043414500541985035, + -0.01581898331642151, + 0.0016723950393497944, + 0.009990517050027847, + -0.001372400438413024, + -0.01472664438188076, + -0.019327225163578987, + -0.021097293123602867, + 0.009639693424105644, + 0.03731494024395943, + -0.02659885585308075, + -0.01577911712229252, + -0.003518208861351013, + 0.013419026508927345, + -0.014407713897526264, + -0.04095075652003288, + 0.003721527522429824, + 0.026790214702486992, + -0.026375602930784225, + -0.009679559618234634, + 0.02781079337000847, + 0.0038989330641925335, + -0.014957869425415993, + 0.025705847889184952, + -0.017652837559580803, + 0.04324705898761749, + -0.020172392949461937, + -0.009249002672731876, + 0.01027755532413721, + -0.031127678230404854, + -0.04244973137974739, + -0.01790798269212246, + -0.024685269221663475, + -0.0011381855001673102, + 0.016839563846588135, + -0.005266350228339434, + -0.020810255780816078, + -0.0019544498063623905, + -0.0025853354018181562, + -0.03013899177312851, + 0.040536146610975266, + 0.008794525638222694, + 0.016305353492498398, + -0.0026929746381938457, + -0.020172392949461937, + -0.04401249438524246, + 0.005473655182868242, + -0.02096972055733204, + 0.0028225404676049948, + -0.005772653501480818, + 0.03568839281797409, + -0.018769096583127975, + -0.013682144694030285, + 0.01526882778853178, + 0.00020169901836197823, + -0.01862557791173458, + 0.0040902914479374886, + 0.0027647342067211866, + -0.005098911467939615, + -0.026901839300990105, + -0.0038550798781216145, + -0.0010953290620818734, + -0.02213381975889206, + 0.012398447841405869, + 0.004445102531462908, + -0.023553064092993736, + 0.02514771930873394, + -0.01955047808587551, + 0.01593858376145363, + 0.018657470121979713, + -0.011433680541813374, + 0.002214577980339527, + 0.010205795988440514, + 0.009161296300590038, + 0.01746147871017456, + -0.06984591484069824, + -0.002098965458571911, + -0.025945046916604042, + 0.01738174632191658, + 0.003023865632712841, + 0.02160758338868618, + -0.006183277349919081, + 0.00895399134606123, + -0.011338001117110252, + 0.02245275117456913, + -0.011928023770451546, + 0.03431699052453041, + -0.001970396377146244, + 0.001869733678176999, + -0.02374442294239998, + -0.02337765134871006, + 0.02470121532678604, + -0.025036092847585678, + -0.0265510156750679, + -0.014798403717577457, + -0.010708112269639969, + 0.04248162731528282, + -0.003986638970673084, + -0.011170562356710434, + -0.006219157017767429, + -0.0013464873190969229, + -0.011983837001025677, + 0.0011052957270294428, + -0.010373234748840332, + 0.007343389093875885, + 0.010867577977478504, + 0.026566961780190468, + 0.02696562558412552, + -0.003904912853613496, + -0.003946772776544094, + 0.04471414163708687, + -0.0017999674892053008, + -0.024493910372257233, + 0.003277017269283533, + -0.003322863718494773, + 0.0430557020008564, + -0.012246955186128616, + -0.04072750359773636, + 0.005222497042268515, + -0.04429953172802925, + -0.01597047597169876, + 0.011074882932007313, + -0.01899234764277935, + 0.0071560172364115715, + 0.017126601189374924, + 0.02084214799106121, + 0.015659518539905548, + -0.0005357046029530466, + 0.0581730380654335, + 0.006944725289940834, + 0.01722227968275547, + 0.014846243895590305, + 0.03238745406270027, + 0.025052038952708244, + 0.010349314659833908, + 0.012844950892031193, + 0.01806744746863842, + -0.013403080403804779, + 0.007020471151918173, + -0.009647666476666927, + 0.03536946326494217, + -0.00929684191942215, + 0.006960671860724688, + 0.007538734469562769, + 0.03222798928618431, + -0.022277338430285454, + -0.010205795988440514, + 0.04844563826918602, + -0.010692166164517403, + 0.0028125739190727472, + 0.0009124419884756207, + 0.0069048586301505566, + 0.026949679479002953, + 0.010867577977478504, + 0.004859712906181812, + 0.02535502426326275, + -0.024892574176192284, + 0.039579350501298904, + -0.019981034100055695, + 0.0026471284218132496, + 0.01801960915327072, + -0.02543475665152073, + 0.01613791473209858, + -0.012996443547308445, + -0.030330350622534752, + 0.006558021064847708, + -0.006107531022280455, + 0.007163990288972855, + 0.0028883200138807297, + -2.2705155060975812e-5, + 0.012079516425728798, + 0.023202238604426384, + 0.011537333019077778, + -0.03093631938099861, + -0.007351362146437168, + 0.001111275632865727, + 0.0004009063995908946, + 0.016648204997181892, + 0.0741833820939064, + -0.010652299039065838, + 0.006725459825247526, + -0.007203856948763132, + 0.017971768975257874, + 0.049274858087301254, + 0.022101927548646927, + 0.013474839739501476, + 0.019821569323539734, + 0.02723671868443489, + 0.019406959414482117, + 0.0134987598285079, + -0.03186121955513954, + -0.01054067350924015, + -0.004189957398921251, + -0.020188340917229652, + 0.021352438256144524, + 0.034859172999858856, + -0.03284990414977074, + 0.03763387352228165, + 0.01613791473209858, + 0.020331859588623047, + 0.0062390901148319244, + 0.03186121955513954, + -0.015236934646964073, + -0.01293265726417303, + 0.026535069569945335, + -0.0028843332547694445, + -0.018083395436406136, + 0.019247492775321007, + 0.015603705309331417, + 0.0032610706984996796, + -0.01402499619871378, + 0.005477642174810171, + 0.013849584385752678, + -0.0049872854724526405, + -0.026949679479002953, + -0.02728455699980259, + -0.028097832575440407, + -0.03434888273477554, + 0.03186121955513954, + -0.007195883430540562, + 0.0021428184118121862, + -0.010349314659833908, + 0.005844412837177515, + -0.013634305447340012, + -0.02712509222328663, + 0.004134144634008408, + 0.009113457053899765, + -0.0022105914540588856, + 0.033934272825717926, + -0.0032690439838916063, + 0.009089536964893341, + 1.3026654414716177e-5, + -0.03833552077412605, + -0.022516537457704544, + -0.02715698443353176, + -0.039579350501298904, + -0.005936105735599995, + -0.035146210342645645, + -0.01746147871017456, + -0.0158588495105505, + -0.002593308687210083, + -0.018960455432534218, + -0.021304598078131676, + -0.025881260633468628, + 0.001717244740575552, + 0.009081563912332058, + 0.0001203466672450304, + 0.0019534530583769083, + 0.01046094112098217, + 0.019056133925914764, + 0.007331429049372673, + -0.0067453933879733086, + -0.0046843006275594234, + 0.01612994074821472, + 0.0455433651804924, + -0.01911992020905018, + 0.02398362010717392, + -0.02100161463022232, + -0.014583125710487366, + -0.024733109399676323, + 0.01746147871017456, + 0.00688093900680542, + -0.029421396553516388, + 0.014933949336409569, + -0.01112272311002016, + 0.057598959654569626, + -0.004476995673030615, + 0.027858633548021317, + 0.004353409633040428, + -0.011625039391219616, + -0.02269195020198822, + -0.03782523050904274, + 0.013857557438313961, + 0.0019514597952365875, + -0.01907208189368248, + -0.005166684277355671, + 0.0051826308481395245, + -0.0038929530419409275, + 0.013490786775946617, + 0.0011023057159036398, + -0.029357610270380974, + 0.025402864441275597, + 0.021830834448337555, + -0.037761446088552475, + -0.04570282995700836, + 0.03951556608080864, + 0.003934812732040882, + 0.02494041435420513, + -0.030808746814727783, + -0.055589694529771805, + 0.025099879130721092, + 0.022947093471884727, + 0.004469022154808044, + -0.030840639024972916, + 0.04002585634589195, + -0.01261372584849596, + 0.023393597453832626, + 0.007853678427636623, + -0.013873503543436527, + -0.03013899177312851, + 0.0014720665058121085, + -0.009687532670795918, + 0.01935911923646927, + 0.0490197129547596, + -0.00929684191942215, + 0.034986745566129684, + 0.03823984041810036, + 0.009886864572763443, + -0.020028874278068542, + -0.019566424190998077, + -0.0007086250698193908, + 0.010891498066484928, + -0.0448417142033577, + -0.01677577756345272, + -0.006653700489550829, + -0.016002368181943893, + -0.056227557361125946, + 0.015157201327383518, + 0.01460704579949379, + -0.002495635999366641, + -0.024206873029470444, + 0.027459969744086266, + -0.028958946466445923, + 0.007821786217391491, + -0.010811764746904373, + 0.008355995640158653, + -0.00319927791133523, + 0.0009318768861703575, + 0.014487446285784245, + 0.0004841274640057236, + -0.020411591976881027, + -0.007690226659178734, + 0.02084214799106121, + -0.01819502003490925, + 0.008363968692719936, + 0.0227716825902462, + -0.008300182409584522, + 0.026742374524474144, + 0.022181659936904907, + 0.02104945480823517, + -0.01046094112098217, + -0.011545307002961636, + -0.013921343721449375, + -0.027954312041401863, + 0.022787628695368767, + 0.018370432779192924, + -0.00139034038875252, + -0.008850338868796825, + 0.011338001117110252, + 0.002441816497594118, + -0.008128756657242775, + 0.02647128328680992, + 0.020587004721164703, + 0.03642193600535393, + 0.023712528869509697, + 0.00032815022859722376, + 0.009280895814299583, + 0.02369658276438713, + 0.016791723668575287, + 0.011019070632755756, + -0.01975778304040432, + 0.00834802258759737, + -0.010628379881381989, + 0.01851395145058632, + -0.005310203414410353, + -0.008746686391532421, + 0.034986745566129684, + -0.026646696031093597, + 0.017477424815297127, + 0.010939337313175201, + 0.040823183953762054, + -0.004453075584024191, + 0.00833207555115223, + -0.018418272957205772, + 0.0030916386749595404, + -0.01221506204456091, + -0.04886024817824364, + 0.013618359342217445, + -0.00218268483877182, + -0.03677275776863098, + -0.007299535907804966, + -0.004935459233820438, + 0.006597887724637985, + 0.01762094534933567, + 0.05055058375000954, + 0.03138282150030136, + -0.0156116783618927, + -0.01255791261792183, + 0.005960025358945131, + -0.008244369179010391, + 0.020252125337719917, + 0.013953236863017082, + 0.03501863777637482, + -0.003934812732040882, + 0.006781273055821657, + 0.006581941153854132, + -0.004736127331852913, + -0.04104643687605858, + -0.013092122972011566, + 0.00020132526697125286, + -0.022436805069446564, + -0.0009298835648223758, + 0.0058165062218904495, + -0.02876758761703968, + 0.0004477493930608034, + -0.004397262819111347, + -0.010173902846872807, + -0.008017131127417088, + 0.010293502360582352, + 0.016265487298369408, + 0.015093415044248104, + -0.0019026234513148665, + -0.026535069569945335, + -0.0219743549823761, + -0.001608608872629702, + 0.006147397216409445, + 0.010732032358646393, + -0.028592174872756004, + 0.012326687574386597, + -0.026901839300990105, + 0.0030856586527079344, + 0.0009278902434743941, + -0.012246955186128616, + -0.01134597510099411, + 0.005226483568549156, + -0.020746469497680664, + -0.0023939767852425575, + -0.009647666476666927, + -0.0031075850129127502, + -0.006861005909740925, + 0.01975778304040432, + -0.004592608194798231, + 0.005194590426981449, + -0.007977264933288097, + -0.009982543997466564, + -0.00718392338603735, + -0.010676219128072262, + -0.04433142766356468, + -0.007957331836223602, + 0.02599288709461689, + -0.038048483431339264, + 0.006581941153854132, + 0.01666415110230446, + 0.0019225566647946835, + 0.00917724333703518, + 0.006845059338957071, + 0.021384332329034805, + 0.00810882356017828, + -0.01778041012585163, + 0.032690439373254776, + 0.006573967635631561, + -0.003480335930362344, + 0.001967406366020441, + 0.014479473233222961, + -0.004229824058711529, + -0.0049992455169558525, + -0.011521386913955212, + 0.010030384175479412, + 0.01714254729449749, + 0.008738712407648563, + 0.011194482445716858, + 0.0007041401113383472, + -0.005597241222858429, + -0.009934704750776291, + 0.028719747439026833, + 0.01006227731704712, + 0.004883632995188236, + 0.012175195850431919, + -0.021224865689873695, + 0.009751318953931332, + -0.010819738730788231, + -0.03182932734489441, + 0.0022683977149426937, + -0.02974032796919346, + -0.002846460323780775, + 0.014264194294810295, + -0.01709470897912979, + 0.03441266715526581, + -0.003701594425365329, + -0.02192651480436325, + 0.017429586499929428, + 0.03565650060772896, + 0.05086951330304146, + 0.015795063227415085, + -0.013945262879133224, + -0.024206873029470444, + -0.03696411848068237, + 0.0078018526546657085, + -0.015141255222260952, + 0.007482921238988638, + -0.01468677818775177, + -0.01722227968275547, + -0.019375065341591835, + -0.0023242104798555374, + 0.01160909328609705, + 0.01717444136738777, + 0.02374442294239998, + 0.008842365816235542, + 0.0002705931256059557, + -0.024812841787934303, + 0.007024458143860102, + -0.01801960915327072, + -0.030234670266509056, + -0.02088998816907406, + 0.002716894494369626, + -0.014224328100681305, + -0.01766878366470337, + 0.012159248813986778, + 0.02688589319586754, + -0.01851395145058632, + -0.033742912113666534, + -0.01963021047413349, + -0.016648204997181892, + -0.03074496053159237, + -0.00432550348341465, + 0.03111173026263714, + -0.037442512810230255, + 0.00023546087322756648, + -0.019949141889810562, + -0.020411591976881027, + -0.0219743549823761, + -0.0052025639452040195, + 0.007538734469562769, + -0.01046094112098217, + -0.0198375154286623, + -0.002405936596915126, + -0.01565154455602169, + -0.007160003762692213, + 0.013562546111643314, + 0.008818445727229118, + 0.012988469563424587, + 0.01058053970336914, + -0.0007624446880072355, + -0.012334661558270454, + -0.014702724292874336, + -0.0038869730196893215, + -0.0015258861239999533, + -0.0286878552287817, + 0.024876628071069717, + 0.030346296727657318, + 0.02929382398724556, + 0.019773729145526886, + -0.033009372651576996, + -0.0269975196570158, + 0.022707896307110786, + -0.024111192673444748, + -0.02752375602722168, + -0.018083395436406136, + -0.01891261525452137, + -0.009017777629196644, + 0.03425320237874985, + -0.011784505099058151, + -0.014822323806583881, + 0.01947074569761753, + 0.035879749804735184, + -0.007993211038410664, + -0.010038357228040695, + 0.014495419338345528, + -0.012980496510863304, + -0.0024737094063311815, + 0.0024218831676989794, + -0.01142570748925209, + 0.0010180879617109895, + -0.006558021064847708, + 0.017078761011362076, + 0.0035102355759590864, + -0.00784969236701727, + -0.004963365383446217, + -0.009209136478602886, + 0.021097293123602867, + -0.013610385358333588, + -0.02004482038319111, + -0.08783362805843353, + -0.005573321133852005, + -0.009926730766892433, + 0.029915738850831985, + 0.007227776572108269, + -0.005804546643048525, + 0.0071879103779792786, + 0.018960455432534218, + -0.010819738730788231, + -0.016552524641156197, + 0.04028100147843361, + 0.010492834262549877, + 0.009017777629196644, + 0.023569010198116302, + 0.002748787635937333, + -0.003290970576927066, + -0.011138669215142727, + -0.017796356230974197, + -0.010588513687252998, + 0.008451675064861774, + 0.011625039391219616, + 0.0128768440335989, + 0.020778361707925797, + -0.01827475242316723, + -0.014933949336409569, + 0.025642061606049538, + 0.006948711816221476, + -0.005282296799123287, + 0.01661631092429161, + -0.01822691410779953, + -0.001837840536609292, + -0.000858622370287776, + -0.020650791004300117, + -0.012510073371231556, + 0.00767428008839488, + 0.01658441871404648, + -0.006673633586615324, + -0.017764464020729065, + 0.026216138154268265, + 0.004748086910694838, + 0.001068419311195612, + 0.0002997454139403999, + -0.012621698901057243, + -0.004947418812662363, + -0.005525481887161732, + -0.016472792252898216, + 0.011529359966516495, + -0.025562329217791557, + -0.01442366000264883, + 0.0022105914540588856, + 0.0028364937752485275, + -0.0022325178142637014, + -0.027332397177815437, + -0.027013465762138367, + -0.007534747943282127, + -0.008603166788816452, + 0.026455337181687355, + -0.013371187262237072, + 0.004381316248327494, + 0.011282188817858696, + 0.05779032036662102, + 0.009440361522138119, + 0.028416762128472328, + -0.022309232503175735, + -0.021782996132969856, + -0.0035879751667380333, + -0.0006428455235436559, + 0.02289925515651703, + 0.025163665413856506, + -0.023473329842090607, + 0.029198143631219864, + -0.007546707522124052, + -0.020905934274196625, + 0.01927938684821129, + 0.0074988678097724915, + 0.0396750308573246, + 0.023648742586374283, + 0.022038141265511513, + 0.00043728447053581476, + -0.013291454873979092, + -0.02060295082628727, + 0.020985668525099754, + -0.008977911435067654, + -0.013060229830443859, + -0.0037932870909571648, + 0.001387350377626717, + 0.005122831091284752, + 0.006821139249950647, + 0.016185754910111427, + -0.001800964237190783, + 0.026742374524474144, + 0.007993211038410664, + 0.01669604517519474, + 0.008762632496654987, + -0.031717699021101, + 0.04761641472578049, + -0.017493372783064842, + 0.02776295505464077, + -0.010835684835910797, + -0.009280895814299583, + 0.0055892677046358585, + -0.033902376890182495, + 0.013060229830443859, + -0.012494126334786415, + -0.003093631938099861, + 0.009846998378634453, + 0.0143678467720747, + -0.02132054604589939, + -0.01502962876111269, + -0.005059044808149338, + 0.0299795251339674, + -0.01344294659793377, + -0.030952265486121178, + 0.01398513000458479, + -0.005178644321858883, + -0.0013923336518928409, + -0.020108606666326523, + -0.021145133301615715, + 0.006334769539535046, + 0.00965563952922821, + -0.006223143544048071, + 0.03900527581572533, + -0.006039758212864399, + 0.0027667274698615074, + 0.009567934088408947, + -0.010261609219014645, + -0.009567934088408947, + -0.01701497472822666, + -0.0062470631673932076, + 0.007738066371530294, + -0.00867492612451315, + 0.0019474731525406241, + -0.020140500739216805, + -0.0016783750616014004, + -0.033583447337150574, + 0.010325395502150059, + 0.026614801958203316, + -0.016193727031350136, + 0.026104511693120003, + -0.03264259919524193, + 0.020698629319667816, + 0.006597887724637985, + 0.0018099341541528702, + 0.010429047979414463, + -0.02245275117456913, + 0.0028046006336808205, + -0.0064982217736542225, + -0.0042856368236243725, + 0.016759829595685005, + -0.00048039000830613077, + -0.007016484625637531, + 0.0027587541844695807, + -0.012813057750463486, + 0.004305569920688868, + -0.017110655084252357, + -0.03705979511141777, + -0.025004200637340546, + 0.0141206756234169, + -0.01883288286626339, + -0.029421396553516388, + 0.001717244740575552, + -0.0014890097081661224, + 0.018322592601180077, + -0.008252343162894249, + 0.025211505591869354, + 0.009926730766892433, + -0.009647666476666927, + 0.00323914410546422, + -0.0040763383731245995, + -0.005669000558555126, + -0.014312034472823143, + -0.02192651480436325, + -0.0010903457878157496, + -0.007873612456023693, + -0.025976939126849174, + -0.00231424393132329, + 0.007953344844281673, + 0.010771898552775383, + 0.01050080731511116, + -0.00983902532607317, + -0.00381322018802166, + 0.021432170644402504, + -0.012765218503773212, + -0.00750285480171442, + -0.010349314659833908, + 0.01315590925514698, + -0.005764679983258247, + 0.017684731632471085, + 0.019805623218417168, + 0.0143678467720747, + 0.012103436514735222, + 0.025291237980127335, + -0.007813812233507633, + -0.005521494895219803, + -0.0027986206114292145, + -0.011824371293187141, + 0.015300720930099487, + 0.04809481278061867, + -0.03106389194726944, + -0.020411591976881027, + 0.003845113329589367, + -0.007630426902323961, + 0.013012389652431011, + 0.01883288286626339, + 0.006876952480524778, + -0.003001939272508025, + -0.04382113739848137, + 0.01046094112098217, + -0.003538142191246152, + 0.0008461641264148057, + -0.018561791628599167, + 0.021304598078131676, + 0.016074128448963165, + -0.01862557791173458, + 0.011585173197090626, + -0.0016564484685659409, + 0.020427538082003593, + -0.009488200768828392, + 0.022197606042027473, + -0.006661674007773399, + 0.011090829968452454, + -0.006354702636599541, + -0.005908199120312929, + -0.0387820228934288, + 0.004197930917143822, + 0.02897489257156849, + 0.002995959250256419, + -0.006633767392486334, + -0.011928023770451546, + 0.020012928172945976, + -0.008587220683693886, + 0.0013464873190969229, + -0.007331429049372673, + -0.01750931888818741, + -0.009153323248028755, + -0.0038849797565490007, + 0.025658009573817253, + -0.023489277809858322, + 0.02208597958087921, + -0.014176487922668457, + -0.008316129446029663, + -0.00419394439086318, + -0.007020471151918173, + -0.000105521350633353, + 0.008555327542126179, + 0.032690439373254776, + -0.045160647481679916, + -0.010572566650807858, + -0.014591098763048649, + -0.01257385965436697, + 0.019247492775321007, + 0.008738712407648563, + -0.014001076109707355, + 0.00955996010452509, + 0.012374527752399445, + 0.008946018293499947, + -0.007016484625637531, + -0.0038630531635135412, + 0.023521170020103455, + 0.006936751771718264, + -0.008563300594687462, + -0.0031514381989836693, + 0.0055892677046358585, + -0.028177564963698387, + 0.019263438880443573, + 0.005637107416987419, + -0.006470315158367157, + -0.020268073305487633, + 0.010692166164517403, + -0.02627992443740368, + 0.004596594721078873, + 0.010413100942969322, + -0.025179611518979073, + 0.023202238604426384, + 0.028225405141711235, + 0.020220233127474785, + -0.00806497037410736, + -0.017716623842716217, + -0.0030278523918241262, + 0.008144703693687916, + -0.011943970806896687, + -0.013913370668888092, + -0.016600364819169044, + 0.005166684277355671, + 0.018099341541528702, + -0.0035221956204622984, + 0.03584785759449005, + 0.014168514870107174, + 0.01372201181948185, + 0.004704234190285206, + -0.024254711344838142, + 0.02607261948287487, + 0.010947310365736485, + -0.007865638472139835, + 0.022436805069446564, + -0.0009797165403142571, + 0.010716085322201252, + 0.008379914797842503, + -0.0064982217736542225, + 0.004756060428917408, + 0.007056351285427809, + 0.007837732322514057, + -0.03677275776863098, + 0.0021009587217122316, + 0.0014810364227741957, + -0.00018288705905433744, + 0.008523434400558472, + -6.764828140148893e-5, + 0.0020471392199397087, + -0.020092660561203957, + -0.004086304921656847, + -0.02023617923259735, + 0.014846243895590305, + -0.016345219686627388, + 0.002509589307010174, + 0.009169269353151321, + 0.022038141265511513, + -0.015547892078757286, + 0.009599827229976654, + -0.03304126486182213, + 0.0026112485211342573, + -0.004181984346359968, + -0.008595193736255169, + 0.02124081365764141, + -0.027555648237466812, + -0.019693996757268906, + -0.011752611957490444, + -0.007379268761724234, + -0.01257385965436697, + 0.014575152657926083, + -0.012430340051651001, + 0.053261496126651764, + -0.012143302708864212, + 0.024653375148773193, + -0.005529468413442373, + -0.0007564647821709514, + 0.006845059338957071, + 0.005282296799123287, + -0.0024139098823070526, + -0.0015537925064563751, + 0.00674937991425395, + -0.020730523392558098, + -0.01348281279206276, + -0.01406486239284277, + 0.009783212095499039, + 0.006047731265425682, + 0.0009009804343804717, + 0.022548429667949677, + 0.010644325986504555, + -0.00833207555115223, + 0.008060984313488007, + 0.03383859246969223, + -0.008140716701745987, + -0.008268289268016815, + 0.0036736878100782633, + 0.03009115159511566, + 0.011258268728852272, + 0.01955047808587551, + -0.006119491066783667, + -0.00925697572529316, + -0.016042236238718033, + 0.013076175935566425, + -0.006035771686583757, + 0.016281433403491974, + 0.0017451512394472957, + 0.017238227650523186, + -0.0025434757117182016, + -0.01830664649605751, + -0.004664367530494928, + -0.032690439373254776, + 0.033455874770879745, + -0.020571056753396988, + -0.02047537826001644, + 0.014830296859145164, + -0.014630964957177639, + -0.006932765245437622, + -0.0008371942094527185, + 0.03174959495663643, + 0.015747224912047386, + -0.008738712407648563, + 0.014032969251275063, + 0.010468914173543453, + -0.006892899051308632, + 0.0014720665058121085, + -0.010995150543749332, + -0.003314890433102846, + 0.000738026574254036, + -0.010070250369608402, + -0.016919296234846115, + 0.0005102897994220257, + -0.03779333829879761, + -0.031287144869565964, + 0.015165175311267376, + 0.0223251786082983, + 0.017573105171322823, + 0.014750564470887184, + -0.0027906473260372877, + 0.023553064092993736, + -0.047584522515535355, + -0.01257385965436697, + 0.004971338901668787, + 0.01376187801361084, + -0.015069495886564255, + 0.029995471239089966, + -0.017844196408987045, + 0.010923391208052635, + 0.03431699052453041, + 0.025339078158140182, + 0.012494126334786415, + -0.004421182908117771, + -0.029102465137839317, + 0.017573105171322823, + 0.006007865071296692, + -0.017716623842716217, + -0.03396616503596306, + -0.005967998411506414, + -0.013714037835597992, + 0.005146751180291176, + -0.005944078788161278, + 0.019981034100055695, + -0.012462233193218708, + 0.00995862390846014, + -0.03980260342359543, + -0.019183706492185593, + -0.022277338430285454, + -0.0038032536394894123, + -0.01231074146926403, + 0.0008028094307519495, + 0.0026092552579939365, + 0.01883288286626339, + 0.031765539199113846, + 0.010405127890408039, + 0.003589968429878354, + 0.022596269845962524, + 0.034061845391988754, + -0.02635965682566166, + 0.015173148363828659, + -0.02966059371829033, + -0.00010795071284519508, + -0.009591853246092796, + -0.001723224762827158, + -0.008100850507616997, + -0.0029361597262322903, + -0.019103974103927612, + -0.021432170644402504, + 0.006693567149341106, + 0.01502962876111269, + -0.025578275322914124, + 0.016711991280317307, + 0.013060229830443859, + 0.015659518539905548, + -0.011417734436690807, + 0.021495956927537918, + -0.005206550471484661, + 0.01593858376145363, + 0.017270119860768318, + -0.002240491099655628, + -0.01476651057600975, + -0.007750026416033506, + 0.02189462073147297, + -0.009910784661769867, + 0.0010833691339939833, + -0.008539380505681038, + 0.013116042129695415, + 0.013076175935566425, + 0.005074991378933191, + 0.03520999476313591, + 0.003589968429878354, + -0.03326451778411865, + -0.028432710096240044, + -0.003807240165770054, + -0.008060984313488007, + -0.00019771237566601485, + -0.0077460394240915775, + 0.025179611518979073, + -0.031079838052392006, + -0.0003156919847242534, + -0.010173902846872807, + -0.024047406390309334, + 0.0025853354018181562, + 0.002274377504363656, + 0.01006227731704712, + -0.014878137037158012, + 0.02184678241610527, + 0.013131989166140556, + -0.010995150543749332, + 0.016488738358020782, + -0.009057643823325634, + -0.008985884487628937, + 0.02623208425939083, + 0.0010061280336230993, + 0.03377480432391167, + -0.030633334070444107, + -0.0031653912737965584, + 0.011816398240625858, + -0.021065400913357735, + 0.010381207801401615, + 0.0025893221609294415, + 0.02514771930873394, + -0.011210428550839424, + 0.013905396685004234, + -0.03562460467219353, + -0.017716623842716217, + -0.0030178858432918787, + 0.004174011293798685, + -0.018370432779192924, + -0.02096972055733204, + -0.005637107416987419, + 0.0026551017072051764, + -0.003500269027426839, + -0.003811226924881339, + 0.005896239075809717, + -0.010229716077446938, + -0.0027647342067211866, + 0.002776694018393755, + -0.024573642760515213, + 0.006805192679166794, + 0.014359873719513416, + -0.00723176309838891, + 0.005477642174810171, + -0.01027755532413721, + -0.012135329656302929, + -0.011800451204180717, + -0.004181984346359968, + 0.015284773893654346, + 0.017317960038781166, + -0.01146557368338108, + -0.011760585010051727, + -0.020172392949461937, + 0.012183168902993202, + 0.007092230953276157, + 0.00207305233925581, + -0.008874258026480675, + -0.0064623416401445866, + 0.021256759762763977, + -0.009456307627260685, + -0.001547812600620091, + -0.0030776853673160076, + -0.03009115159511566, + -0.004732140339910984, + 0.005581294652074575, + 0.00524243013933301, + -0.017876088619232178, + -4.5815202611265704e-5, + 0.010548646561801434, + 0.09427604079246521, + -0.0029859927017241716, + -0.003187317866832018, + -0.005389935802668333, + 0.0058603594079613686, + -0.018896669149398804, + -0.007706173229962587, + 0.0055693346075713634, + 0.027332397177815437, + 0.008571273647248745, + -0.0007474948070012033, + -0.0045447684824466705, + 0.014925976283848286, + -0.026806160807609558, + -0.008164636790752411, + 0.018577737733721733, + 0.02012455463409424, + 0.024493910372257233, + 0.012430340051651001, + 0.01875315047800541, + -0.01947074569761753, + 0.00123486144002527, + 0.004795926623046398, + 0.025769634172320366, + -0.007981250993907452, + 0.007809825707226992, + -0.012191141955554485, + -0.008284236304461956, + 0.013315374031662941, + 0.02551448903977871, + 0.002116905292496085, + -0.003095625201240182, + -0.007921451702713966, + -0.01136989425867796, + 0.0005030640168115497, + 0.010205795988440514, + -0.021543797105550766, + 0.003807240165770054, + 0.0033248569816350937, + 0.007470961660146713, + 0.0038471065927296877, + 0.0070882439613342285, + 0.007638400420546532, + 0.0013464873190969229, + 0.0029222064185887575, + 0.011983837001025677, + -0.002846460323780775, + -0.0039368062280118465, + 0.0006249056896194816, + 0.0062470631673932076, + -0.004903566092252731, + -0.019662104547023773, + 0.025578275322914124, + 0.003908899612724781, + 0.021623529493808746, + 0.018258806318044662, + 0.020571056753396988, + -0.020698629319667816, + -0.0006498221773654222, + -0.013211721554398537, + -0.013865530490875244, + -0.002010262804105878, + -0.00023546087322756648, + -0.02422281913459301, + 0.004672341048717499, + -0.01782825030386448, + -0.02562611550092697, + -0.02160758338868618, + -0.003063732059672475, + -0.0006094574346207082, + -0.0035441219806671143, + 0.0028504468500614166, + 0.000586035952437669, + -0.030314402654767036, + -0.004181984346359968, + -0.0068410723470151424, + -0.0043414500541985035, + 0.014559205621480942, + 0.00613543763756752, + 0.002274377504363656, + -0.006422475446015596, + 0.01555586513131857, + 0.011441653594374657, + -0.034508347511291504, + -0.005653053987771273, + -0.006729446817189455, + 0.017971768975257874, + -0.00991875771433115, + 0.006581941153854132, + -0.026869947090744972, + -0.01108285691589117, + -0.007140070665627718, + -0.006948711816221476, + -0.010963257402181625, + -0.001065429300069809, + -0.0071241240948438644, + -0.017732569947838783, + 0.0011710751568898559, + 0.00511087104678154, + 0.011864237487316132, + 0.01738174632191658, + 0.022835468873381615, + -0.009639693424105644, + -0.0009842015570029616, + -0.004608554765582085, + -0.005676974076777697, + 0.004520848859101534, + -0.0015727290883660316, + 0.0023760369513183832, + -0.008005171082913876, + -0.001456119935028255, + -0.016472792252898216, + -0.005358042661100626, + 0.013849584385752678, + -0.021017560735344887, + 0.020746469497680664, + 0.012103436514735222, + 0.007435081992298365, + -0.004078331869095564, + -0.004028498660773039, + -0.021830834448337555, + 0.004692274145781994, + -0.00037748488830402493, + -0.009687532670795918, + 0.01357849221676588, + 0.0015587758971378207, + 0.011800451204180717, + 0.004357396624982357, + -0.027858633548021317, + 0.0011650952510535717, + 0.006948711816221476, + -0.005346083082258701, + 0.012143302708864212, + 0.014009049162268639, + 0.023712528869509697, + -0.014806377701461315, + -0.0008107827161438763, + -0.004201917443424463, + 0.02071457728743553, + -0.01923154667019844, + 0.02358495630323887, + 0.018800988793373108, + 0.005019178614020348, + 0.0036776745691895485, + 0.007793879136443138, + 0.013347267173230648, + -0.0079055055975914, + -0.017892036586999893, + -0.0003154428268317133, + 0.0037693672347813845, + 0.019885355606675148, + -0.024366337805986404, + 0.008969937451183796, + -0.015396400354802608, + 0.01167287863790989, + 0.006753366440534592, + -0.01464691199362278, + 0.038048483431339264, + -0.013977156020700932, + 0.006167330779135227, + 0.007207843475043774, + 0.01642495207488537, + -0.001596648944541812, + -0.007610493805259466, + 0.008946018293499947, + -0.00678924610838294, + 0.015795063227415085, + 0.018418272957205772, + 0.0122549282386899, + -0.013395107351243496, + -0.018290700390934944, + 0.00955996010452509, + -0.001740167965181172, + -0.03479538485407829, + -0.006107531022280455, + 0.010373234748840332, + -0.005688934121280909, + 0.001286687795072794, + -0.03238745406270027, + 0.021432170644402504, + -0.009934704750776291, + -0.019135868176817894, + 0.005605214275419712, + -0.0007195883663371205, + 0.0006712503382004797, + -0.014375820755958557, + 0.00048487496678717434, + -0.003560068551450968, + 0.012342634610831738, + -0.02055511064827442, + -0.008212476037442684, + 0.030123043805360794, + -0.015603705309331417, + -0.0034424627665430307, + -0.016472792252898216, + -0.003972685895860195, + 0.010979203507304192, + 0.012079516425728798, + 0.014630964957177639, + -0.016345219686627388, + 0.009440361522138119, + -0.0023899900261312723, + 0.0120077570900321, + 0.0017302013002336025, + -0.005708867218345404, + -0.013395107351243496, + -0.012486153282225132, + 0.011003123596310616, + -0.015093415044248104, + 0.002820547204464674, + -0.02913435734808445, + -0.023632796481251717, + 0.01022174209356308, + 0.0005287280073389411, + -0.012900764122605324, + 0.0007041401113383472, + 0.007662320043891668, + 0.01199181005358696, + 0.017876088619232178, + 0.014017023146152496, + 0.0028823399916291237, + 0.004983298946171999, + 0.01682361587882042, + 0.012597779743373394, + -0.004094278439879417, + 0.021782996132969856, + -0.004122184589505196, + -0.007064324337989092, + 0.012502100318670273, + 0.0036437881644815207, + 0.016999028623104095, + 0.007562654092907906, + -0.01019782293587923, + 0.024493910372257233, + -0.01372201181948185, + 0.037123583257198334, + 0.01313996221870184, + -0.008754659444093704, + 0.008140716701745987, + -0.009854971431195736, + -0.00939252134412527, + 0.015587758272886276, + -0.00275676092132926, + -0.009193189442157745, + 0.004819846712052822, + -0.004004579037427902, + 0.0049753254279494286, + 0.004273677244782448, + 0.0012358580715954304, + -3.506996654323302e-5, + 0.002762740943580866, + -0.01612994074821472, + 0.008379914797842503, + 0.024159032851457596, + 0.01666415110230446, + 0.01295657642185688, + 0.008555327542126179, + 0.006354702636599541, + -0.0037713604979217052, + -0.004680314101278782, + -0.008419781923294067, + 0.036804649978876114, + -0.011736664921045303, + -0.013881477527320385, + 0.0004475002351682633, + 0.006984591484069824, + -0.01894450932741165, + 0.007415148429572582, + 0.0039527527987957, + 0.02136838436126709, + 0.013363214209675789, + 0.004177997820079327, + -0.012821030803024769, + 0.0156116783618927, + -0.006534101441502571, + -0.007040404714643955, + 0.0034105696249753237, + -0.006837085820734501, + 0.004708220716565847, + -4.364279448054731e-6, + -0.0143678467720747, + 9.281394159188494e-5, + 0.00599590502679348, + -0.00961577333509922, + 0.019805623218417168, + -0.023648742586374283, + 0.010022410191595554, + 0.01975778304040432, + -0.001998302759602666, + -0.0006154373986646533, + 0.00306771881878376, + -0.0185936838388443, + 0.002435836475342512, + -0.02989979274570942, + 0.004923499189317226, + 0.015842903405427933, + -0.010548646561801434, + 0.0054098693653941154, + 0.013450919650495052, + 0.0007170966709963977, + -0.014009049162268639, + 0.009193189442157745, + -0.02216571383178234, + -0.016727937385439873, + -0.005812519695609808, + 0.017493372783064842, + 0.006199223920702934, + -5.867834261152893e-5, + 0.003603921737521887, + -0.01717444136738777, + -0.009049670770764351, + -0.002529522404074669, + 0.01669604517519474, + -0.02897489257156849, + -0.003314890433102846, + -0.03135092929005623, + 0.0086510069668293, + 0.0045009152963757515, + -0.026407497003674507, + -0.009504147805273533, + -0.0035999349784106016, + 0.0030976184643805027, + -0.006035771686583757, + 0.016791723668575287, + -0.0003974180726800114, + 0.0011930017499253154, + 0.0002885329886339605, + 0.006936751771718264, + -0.007670293562114239, + -0.033902376890182495, + 0.0223251786082983, + -0.009791185148060322, + -0.0012069549411535263, + -0.0010833691339939833, + 0.0029999457765370607, + 0.027172932401299477, + -0.018163127824664116, + 0.0028962932992726564, + -0.013131989166140556, + 0.016161834821105003, + -0.028799479827284813, + -0.00867492612451315, + -0.010732032358646393, + 0.00330891041085124, + 0.023967674002051353, + 0.00033911349601112306, + -0.0006363672437146306, + 0.0008207493228837848, + 0.003601928474381566, + 0.02763538248836994, + 0.024334443733096123, + -0.004871672950685024, + 0.00838788878172636, + -0.0011511420598253608, + 0.016999028623104095, + 0.007243723142892122, + 0.0028364937752485275, + 0.007825772278010845, + -0.0265510156750679, + -0.0063148364424705505, + 0.002240491099655628, + -0.00042083958396688104, + -0.005764679983258247, + 0.012900764122605324, + 0.003713554237037897, + -0.0019086034735664725, + -0.0030836653895676136, + 0.019454797729849815, + -0.009894837625324726, + 0.011489493772387505, + -0.014583125710487366, + -0.011282188817858696, + -0.024446070194244385, + -0.008635059930384159, + -0.012717378325760365, + 0.01750931888818741, + 0.017110655084252357, + 0.009089536964893341, + 0.01283697783946991, + -0.015460185706615448, + 0.025083933025598526, + 0.005350069608539343, + -0.009743345901370049, + -0.010389180853962898, + 0.015133282169699669, + 0.0080290911719203, + 0.01878504268825054, + 0.015404373407363892, + 0.012996443547308445, + -0.013969182968139648, + -0.004883632995188236, + -0.010755952447652817, + -0.010899471119046211, + 0.010229716077446938, + -0.0009607800166122615, + -0.007857665419578552, + -0.02462148293852806, + 0.016409005969762802, + -0.011928023770451546, + 0.01573925092816353, + -0.002254444407299161, + -0.0018069441430270672, + 0.019486691802740097, + 0.007128110621124506, + 0.015994396060705185, + -0.020571056753396988, + -0.001872723689302802, + -0.0008302175556309521, + 0.016361165791749954, + -0.006709513254463673, + -0.007307509426027536, + 0.012023703195154667, + -0.024924466386437416, + -0.0002935162920039147, + 0.013052255846560001, + 0.004576661624014378, + 0.005920159164816141, + -0.001970396377146244, + 0.03517810255289078, + -0.010118089616298676, + 0.02329791896045208, + 0.008890205062925816, + 0.011258268728852272, + 0.004991271998733282, + -0.0031952911522239447, + -0.021065400913357735, + 0.011401787400245667, + -0.0012946610804647207, + -0.009894837625324726, + 0.01867341808974743, + -0.002529522404074669, + -0.012597779743373394, + -0.013227668590843678, + 0.0036637212615460157, + -0.025897206738591194, + 0.0007096217595972121, + 0.032818011939525604, + -0.017796356230974197, + 0.008961964398622513, + -0.006326796021312475, + -0.01658441871404648, + 0.008300182409584522, + 0.023935779929161072, + -0.02398362010717392, + 0.006251050159335136, + 0.0014202401507645845, + -0.016265487298369408, + 0.012063569389283657, + 0.0015129295643419027, + -0.006944725289940834, + -0.002527529140934348, + 0.013403080403804779, + -0.00834802258759737, + -0.01464691199362278, + -0.003348776837810874, + -0.005086951423436403, + -6.082739128032699e-5, + 0.012884817086160183, + 0.02390388771891594, + -0.02144811861217022, + -0.006709513254463673, + -0.0040643783286213875, + -0.012733325362205505, + 0.005043098237365484, + -0.01410472858697176, + -0.016034262254834175, + 0.007897531613707542, + 0.01279711164534092, + 0.002810580423101783, + -0.003191304625943303, + 0.0014282134361565113, + 0.009496173821389675, + 0.01446352619677782, + -0.014615018852055073, + 0.018099341541528702, + 0.005780626554042101, + -0.00794537179172039, + 0.001639505266211927, + 0.0029281864408403635, + -0.004708220716565847, + 0.0012368547031655908, + -0.0038211934734135866, + 0.00850748736411333, + 0.009528066962957382, + 0.006980604957789183, + 0.005884279031306505, + -0.002248464385047555, + -0.0028524401132017374, + 0.007618467323482037, + 0.020331859588623047, + -0.014798403717577457, + 0.009623746387660503, + -0.0006682603852823377, + -0.012518046423792839, + -0.0007111167651601136, + -0.021192973479628563, + -0.008866284973919392, + -0.010979203507304192, + -0.0021607582457363605, + 0.0024159031454473734, + -0.008794525638222694, + 0.001214928226545453, + 0.01830664649605751, + 0.02982006035745144, + 0.006936751771718264, + 0.008834391832351685, + -0.013171855360269547, + 0.01669604517519474, + 0.0198375154286623, + 0.009249002672731876, + 0.0064982217736542225, + -0.004688287619501352, + -0.021862728521227837, + 0.00784570537507534, + -0.01806744746863842, + 0.025131773203611374, + 0.010492834262549877, + -0.005150737706571817, + 0.004361383151262999, + -0.013602412305772305, + -0.008308155462145805, + -0.013626332394778728, + 0.00315343146212399, + -0.0007758996216580272, + -0.0035481087397783995, + 0.007622453849762678, + 0.01951858401298523, + 0.029437342658638954, + 0.0014810364227741957, + -0.00030373205663636327, + -0.0037374740932136774, + -0.005059044808149338, + -0.008778579533100128, + 0.0073274425230920315, + 0.01593858376145363, + 0.0030138990841805935, + 0.005473655182868242, + -0.0017551177879795432, + 0.024525802582502365, + 0.019199654459953308, + -0.004465035628527403, + 0.009137376211583614, + -0.009934704750776291, + -0.0073274425230920315, + -0.007104190532118082, + -0.008786552585661411, + 0.0010893491562455893, + 0.01967805065214634, + 0.006793233100324869, + -0.011242321692407131, + -0.007965304888784885, + -0.008969937451183796, + 0.017652837559580803, + -0.005246417131274939, + 0.028273243457078934, + -0.013307400979101658, + -0.017397692427039146, + 0.010787845589220524, + -0.022644110023975372, + 0.013769851066172123, + -0.0028444670606404543, + -0.01191207766532898, + -0.006386595778167248, + 0.006968644913285971, + -0.0006871969089843333, + -0.00016158346261363477, + 0.028018098324537277, + -0.015300720930099487, + 0.01088352408260107, + 0.027571596205234528, + 0.005481628701090813, + 0.0015438259579241276, + -0.022516537457704544, + 0.0038231867365539074, + 0.012430340051651001, + 0.009727398864924908, + -0.026487229391932487, + 0.008722766302525997, + 0.008643032982945442, + -0.012079516425728798, + 0.002346137072890997, + -0.0052145239897072315, + -0.027188878506422043, + 0.0011750617995858192, + -0.009097510017454624, + 0.010548646561801434, + -0.0031773513182997704, + 0.0035999349784106016, + 0.005928132217377424, + -0.017158495262265205, + 0.009504147805273533, + -0.01975778304040432, + -0.011920050717890263, + -0.0035660485737025738, + 0.004030492156744003, + 0.0005935108638368547, + -0.00842775497585535, + 0.00322319776751101, + -0.019885355606675148, + -0.011417734436690807, + -0.0006986584630794823, + 0.005334123037755489, + -0.00573278684169054, + 0.002854433609172702, + 0.0017311980482190847, + 0.0009946664795279503, + -0.002688988111913204, + 0.008180582895874977, + 0.017126601189374924, + -0.007443055044859648, + -0.02052321843802929, + -0.012733325362205505, + -0.0020032860338687897, + -0.013339294120669365, + -0.004839779809117317, + -0.03029845654964447, + 0.016680097207427025, + -0.002312250668182969, + 0.022580323740839958, + -0.02205408737063408, + -0.019167760387063026, + -0.004321516491472721, + -0.010349314659833908, + 0.019502637907862663, + 0.01319577544927597, + -0.012645618990063667, + 0.007666307035833597, + 0.015906689688563347, + 0.0020511257462203503, + -0.020618896931409836, + 0.0011810418218374252, + 0.005485615227371454, + -0.012725351378321648, + -0.013626332394778728, + -0.007961317896842957, + 0.006063677836209536, + -0.018816936761140823, + -0.0006199223571456969, + 0.016440900042653084, + -0.026056673377752304, + 0.009145350195467472, + -0.0028245337307453156, + -0.01046094112098217, + -0.00027956307167187333, + 0.0096955057233572, + 0.0018398339161649346, + 0.014790430665016174, + -0.0030338324140757322, + -0.01935911923646927, + -0.006422475446015596, + -0.016329273581504822, + 0.009775239042937756, + -0.01577114313840866, + 0.0011411753948777914, + -0.006350716110318899, + -0.01658441871404648, + -0.0009064620244316757, + -0.022197606042027473, + 0.019789675250649452, + -0.010827711783349514, + -0.017892036586999893, + -0.03935610130429268, + 0.018402324989438057, + 0.010572566650807858, + 0.018035555258393288, + -0.006980604957789183, + 0.0007484914967790246, + -0.004931472707539797, + -0.004572675097733736, + -0.017971768975257874, + 0.0025753688532859087, + 0.012860897928476334, + -0.02128865197300911, + 0.009767265990376472, + 0.008204502984881401, + -0.011226375587284565, + 0.01203167624771595, + -0.0024657363537698984, + 0.012860897928476334, + -0.011042989790439606, + -0.015906689688563347, + 0.032132308930158615, + 0.004744100384414196, + 0.013052255846560001, + -1.3509411473933142e-5, + 0.015332614071667194, + 0.0031494449358433485, + -0.012486153282225132, + -0.00028703801217488945, + 0.004947418812662363, + -0.013355241157114506, + -0.008459648117423058, + -0.0010200812248513103, + -0.026503175497055054, + 0.0134987598285079, + 0.006015838123857975, + -0.007526774425059557, + -0.015675464645028114, + -0.026806160807609558, + -0.0040583983063697815, + -0.002724867779761553, + 0.005804546643048525, + 0.00284247356466949, + -0.004863699432462454, + 0.014296087436378002, + -0.001277717761695385, + 0.008547354489564896, + 0.0067135002464056015, + 0.007953344844281673, + 0.007116150576621294, + 0.01160909328609705, + 0.00462848786264658, + -0.002130858600139618, + -0.02562611550092697, + -0.02538691647350788, + -0.014894083142280579, + 0.013889450579881668, + -0.021017560735344887, + -0.005222497042268515, + 0.023840101435780525, + -0.013594439253211021, + 0.005904212594032288, + -0.004020525608211756, + 0.01239047385752201, + -0.00399261899292469, + -0.015492078848183155, + 0.006673633586615324, + 0.017317960038781166, + -0.01666415110230446, + 0.0032092444598674774, + 0.010795818641781807, + -0.008172609843313694, + -0.006968644913285971, + -0.004150091204792261, + -0.0030477854888886213, + -0.007167976815253496, + -0.001579705742187798, + -0.004074344877153635, + -0.002441816497594118, + 0.012238982133567333, + -0.03600732237100601, + -0.027428075671195984, + -0.017636891454458237, + -0.006187263876199722, + 0.015037602744996548, + -0.018864775076508522, + -0.0022703909780830145, + 0.004118198063224554, + -0.018498005345463753, + 0.001993319485336542, + 0.004883632995188236, + -0.01637711375951767, + 0.005358042661100626, + -0.02781079337000847, + -0.0009498167200945318, + 0.0012229015119373798, + 0.025339078158140182, + -0.011489493772387505, + 0.0021428184118121862, + 0.008033077232539654, + 0.020539164543151855, + 0.0021687315311282873, + -0.007877598516643047, + 0.013068202883005142, + -0.01935911923646927, + 0.006721473298966885, + 0.001433196710422635, + -0.008435728028416634, + -0.009209136478602886, + 0.0001250807981705293, + 0.01380174420773983, + -0.008196529932320118, + -0.008579247631132603, + -0.030330350622534752, + -0.023999566212296486, + -0.017190387472510338, + 0.009591853246092796, + 0.012374527752399445, + 0.007546707522124052, + 0.004823833238333464, + -0.011489493772387505, + -0.004859712906181812, + -0.0045128753408789635, + -0.00017528753960505128, + -0.021543797105550766, + 0.004803900141268969, + 0.011633012443780899, + 0.02213381975889206, + 0.010229716077446938, + 0.030123043805360794, + -0.006322809495031834, + 0.010859604924917221, + -0.02189462073147297, + -0.02140027843415737, + 0.00190661009401083, + 0.003972685895860195, + 0.02253248356282711, + -0.010700139217078686, + -0.021113241091370583, + 0.011473546735942364, + 0.0015099395532160997, + 0.004680314101278782, + -0.015587758272886276, + -0.003942785784602165, + 0.002034182660281658, + 0.020794309675693512, + 0.004851739853620529, + 0.020634843036532402, + 0.014790430665016174, + 0.01601831614971161, + -0.002509589307010174, + -0.0015607691602781415, + -0.015077468939125538, + 0.0062709832563996315, + 0.011322055011987686, + -0.02060295082628727, + 0.0011999784037470818, + 0.007140070665627718, + 0.005039111711084843, + 0.002294310834258795, + -0.0016873449785634875, + 0.007291562855243683, + -0.005991918500512838, + 0.001668408396653831, + -0.018609631806612015, + 0.0030218723695725203, + 0.018450165167450905, + -0.0053540561348199844, + -0.002294310834258795, + -0.023489277809858322, + -0.0017909975722432137, + 0.015197067521512508, + 0.00207305233925581, + -0.007570627611130476, + 0.006163343787193298, + -0.004624501336365938, + 0.0016434919089078903, + -0.004764033481478691, + -0.0022683977149426937, + 0.010078223422169685, + 0.009815105237066746, + -0.023234132677316666, + 0.003908899612724781, + 0.011696798726916313, + -0.005465682130306959, + 0.023074666038155556, + -0.022915201261639595, + 0.003089645178988576, + -0.013036309741437435, + -0.02916625142097473, + -0.006717486772686243, + 0.019614264369010925, + 0.00406238529831171, + 0.0026690547820180655, + -0.006015838123857975, + -0.013243614695966244, + 0.012238982133567333, + -0.023840101435780525, + 0.0024996227584779263, + -0.0071560172364115715, + -0.014447580091655254, + 0.032530974596738815, + 0.0006553037674166262, + 0.01682361587882042, + 0.0060676648281514645, + -0.018370432779192924, + -0.02205408737063408, + 0.021177027374505997, + 0.014168514870107174, + 0.0022664042189717293, + -0.021033506840467453, + 0.016632258892059326, + -0.01283697783946991, + 0.0038092336617410183, + -0.0039527527987957, + 0.01010214351117611, + 0.01530869398266077, + 0.003986638970673084, + -0.00556136155501008, + 0.011529359966516495, + -0.002940146252512932, + 0.002565402304753661, + 0.000870083982590586, + 0.015173148363828659, + -0.010118089616298676, + -0.0012537980219349265, + 0.012844950892031193, + -0.0055892677046358585, + -0.0017561145359650254, + 0.02446201629936695, + 0.012462233193218708, + 0.006868978962302208, + 0.01862557791173458, + -0.005082964897155762, + -0.01991724781692028, + -0.01323564164340496, + 0.015197067521512508, + -0.012789137661457062, + 0.010867577977478504, + -0.017604997381567955, + 0.0032371508423238993, + 0.0030717053450644016, + -0.00586434593424201, + -0.006972631439566612, + -0.005653053987771273, + -0.017445532605051994, + -0.034986745566129684, + 0.006936751771718264, + -0.0022703909780830145, + -0.003924846183508635, + -0.013769851066172123, + 0.0036417946685105562, + -0.016145888715982437, + -0.004815859720110893, + 0.018163127824664116, + -0.0008626090129837394, + 0.013403080403804779, + -0.018960455432534218, + -0.0031354916281998158, + -0.027826741337776184, + -0.015962501987814903, + 0.015834929421544075, + 0.0002076789824059233, + 0.00705236429348588, + -0.015515998937189579, + -0.014933949336409569, + -0.004819846712052822, + -0.00019908278773073107, + -0.0008167626801878214, + -0.0134987598285079, + 0.0068849255330860615, + -0.00014900063979439437, + -0.002092985436320305, + 0.004927485715597868, + -0.005465682130306959, + -0.019199654459953308, + -0.005525481887161732, + -0.01140976045280695, + -0.001622562063857913, + -0.017684731632471085, + 0.0173498522490263, + 0.012685485184192657, + 0.001482033054344356, + 0.00021129187371116132, + -0.016361165791749954, + -0.00010938340710708871, + 0.01774851605296135, + -0.001033536158502102, + -0.006785259582102299, + 0.012063569389283657, + -0.00018562788318376988, + -0.001685351599007845, + 0.020953774452209473, + -0.00022013722627889365, + 0.002306270645931363, + -0.009735372848808765, + 0.002868386683985591, + -0.009791185148060322, + -0.010755952447652817, + -0.0005775643512606621, + -0.0005237446748651564, + -0.027619434520602226, + 0.017955822870135307, + -0.031925003975629807, + -0.0007828762172721326, + -0.015484105795621872, + 0.00525040365755558, + -0.009440361522138119, + -0.020539164543151855, + -0.008443701080977917, + 0.010596486739814281, + -0.005318176466971636, + -0.006211183499544859, + 0.02958086133003235, + 0.010596486739814281, + 0.02176704816520214, + 0.012773191556334496, + -0.006518154870718718, + -0.0002725864469539374, + 0.02865596115589142, + -0.015603705309331417, + -0.00965563952922821, + -0.0016265487065538764, + -0.016345219686627388, + 0.0035660485737025738, + 0.004827819764614105, + 0.012581832706928253, + -0.0003675182815641165, + 0.015515998937189579, + -0.008419781923294067, + -0.004704234190285206, + -0.00873073935508728, + 0.009703479707241058, + 0.007486908230930567, + -0.0023501235991716385, + -0.019167760387063026, + 0.02599288709461689, + 0.00467632757499814, + -0.010030384175479412, + 0.006191250402480364, + 0.003009912557899952, + 0.00780583918094635, + -0.00917724333703518, + -0.00983902532607317, + 0.01381769124418497, + 0.0002750780840869993, + -0.018976401537656784, + -0.02015644684433937, + -0.024254711344838142, + 0.03155823424458504, + 0.019422905519604683, + -0.002098965458571911, + -0.03900527581572533, + 0.0001354211417492479, + -0.0024836761876940727, + 0.0379846952855587, + 0.05246416851878166, + 0.01706281490623951, + 0.020411591976881027, + 0.009017777629196644, + -0.0003251602465752512, + 0.02269195020198822, + 0.011744638904929161, + -0.0019165767589583993, + 0.010771898552775383, + 0.01838637888431549, + -0.005114858038723469, + -0.017525264993309975, + -0.000956295058131218, + -0.02039564587175846, + 0.01227087527513504, + -0.013323348015546799, + -0.0069407387636601925, + -0.009854971431195736, + -0.008140716701745987, + -0.012111409567296505, + -0.014184461906552315, + 0.01577114313840866, + -0.004357396624982357, + 0.0056450809352099895, + 0.004795926623046398, + -0.006231116596609354, + -0.001518909470178187, + 0.012781164608895779, + -0.010644325986504555, + -0.004947418812662363, + -0.015356533229351044, + -0.010732032358646393, + 0.012733325362205505, + -0.009113457053899765, + -0.039419885724782944, + -0.033902376890182495, + -0.003185324603691697, + -0.014599071815609932, + 0.008160649798810482, + -0.0012288815341889858, + -0.023313865065574646, + 0.006123477593064308, + 0.014630964957177639, + 0.0265510156750679, + 0.011856264434754848, + 0.007355349138379097, + -0.02007671445608139, + -0.021830834448337555, + -2.3468222934752703e-5, + 0.0031394781544804573, + -0.008324102498590946, + -0.01911992020905018, + 0.014439606107771397, + 0.017046868801116943, + -0.008722766302525997, + 0.004265703726559877, + 0.003093631938099861, + 0.007821786217391491, + -0.027475915849208832, + -0.00798523798584938, + 0.004484968725591898, + 0.016393059864640236, + 0.007654346991330385, + 0.019135868176817894, + 0.035879749804735184, + -0.008810472674667835, + -0.019422905519604683, + -0.018609631806612015, + 0.0041142115369439125, + -0.02696562558412552, + 0.008666953071951866, + 0.010468914173543453, + 0.010636352933943272, + -0.004624501336365938, + -0.0010823725024238229, + -0.03332830220460892, + 0.005377976223826408, + 0.01669604517519474, + 0.007514814380556345, + -0.0049434322863817215, + 0.007773946039378643, + 0.02128865197300911, + 0.008316129446029663, + -0.014957869425415993, + 0.018163127824664116, + 0.006099557504057884, + 0.0023959700483828783, + -0.007973277941346169, + -0.009567934088408947, + 0.0005646077333949506, + 0.008961964398622513, + 0.014056889340281487, + -0.0141206756234169, + -0.024812841787934303, + -0.011322055011987686, + 0.0245098564773798, + -0.0018278739880770445, + 0.00834802258759737, + 0.018561791628599167, + 0.007044391240924597, + 0.00139034038875252, + 0.0034823291935026646, + 0.008810472674667835, + 0.006868978962302208, + -0.02366468869149685, + -0.005254390183836222, + 0.003185324603691697, + 0.0035540887620300055, + -0.014559205621480942, + 0.011218402534723282, + 0.006845059338957071, + -0.01709470897912979, + -0.008483568206429482, + 0.011489493772387505, + 0.02623208425939083, + -0.013291454873979092, + 0.0158110111951828, + 0.0015816990053281188, + 0.008635059930384159, + -0.0016006355872377753, + 0.020937828347086906, + -0.010787845589220524, + -0.004209890961647034, + -0.020092660561203957, + 0.018657470121979713, + 0.026662642136216164, + 0.0038789997342973948, + -0.004020525608211756, + 0.019709942862391472, + -0.010492834262549877, + 0.002475702902302146, + 0.0012039649300277233, + 0.01353862602263689, + 0.007148043718189001, + -0.007997198030352592, + 0.0025135758332908154, + 0.008882232010364532, + -0.017493372783064842, + 0.003817206947132945, + 0.022484643384814262, + -0.008451675064861774, + -0.01050080731511116, + -0.0379846952855587, + 0.011920050717890263, + -0.004927485715597868, + -0.005585281178355217, + -0.009360628202557564, + 0.0002546465548221022, + 0.005892252549529076, + 0.017126601189374924, + -0.020666737109422684, + 0.010572566650807858, + 0.015284773893654346, + -0.009950650855898857, + -0.0010255628731101751, + -0.0021667382679879665, + -0.009846998378634453, + -0.022676002234220505, + 0.005493588745594025, + -0.0016414986457675695, + 0.006625793874263763, + 0.0049872854724526405, + 0.003115558298304677, + -0.01269345823675394, + -0.013395107351243496, + -0.032977476716041565, + -0.01253399346023798, + -0.010644325986504555, + 0.01666415110230446, + 0.007104190532118082, + -0.005210536997765303, + -0.008072944357991219, + 0.014184461906552315, + 0.01593060977756977, + -0.003009912557899952, + 0.0015438259579241276, + -0.02273978851735592, + 0.017971768975257874, + -0.016520632430911064, + -0.00011224880290683359, + -0.010110116563737392, + -0.01870531029999256, + 0.0019943162333220243, + -0.009137376211583614, + -0.01504557579755783, + 0.0047520739026367664, + 0.0066895801573991776, + -0.009049670770764351, + -0.027141038328409195, + -0.008060984313488007, + 0.002437829738482833, + -0.020012928172945976, + -0.015133282169699669, + 0.014862190000712872, + 0.005736773367971182, + -0.0006528121302835643, + -0.015197067521512508, + 0.006023811642080545, + 0.00467632757499814, + 0.014216355048120022, + 0.0006607854156754911, + 0.0004233312210999429, + 0.04710612818598747, + 0.01406486239284277, + 0.010341341607272625, + 0.02176704816520214, + -0.009448334574699402, + -0.004305569920688868, + 0.019199654459953308, + -0.0038530866149812937, + -0.0008137726690620184, + -0.01160909328609705, + -0.004560715053230524, + 0.008483568206429482, + 0.007056351285427809, + 0.017126601189374924, + 0.0012926677009090781, + -0.008300182409584522, + -0.03246718645095825, + 0.02562611550092697, + -0.007650360465049744, + 0.014264194294810295, + -0.007682253606617451, + 0.01102704368531704, + -0.022548429667949677, + 0.006183277349919081, + 0.003956739325076342, + 0.012900764122605324, + -0.021145133301615715, + -0.009567934088408947, + 0.008666953071951866, + 0.0029760259203612804, + -0.004012552089989185, + -0.024733109399676323, + 0.03182932734489441, + -0.0040902914479374886, + -0.014216355048120022, + 0.0041261715814471245, + 0.013395107351243496, + -0.020140500739216805, + -0.018976401537656784, + -0.005441762041300535, + 0.020905934274196625, + 0.005286283325403929, + -0.020634843036532402, + -0.009775239042937756, + 0.013490786775946617, + 0.018689364194869995, + 0.002286337548866868, + -0.015412346459925175, + -0.0030976184643805027, + -0.02599288709461689, + -0.005035125184804201, + -0.020905934274196625, + -0.006035771686583757, + 0.000821247638668865, + 0.007821786217391491, + -0.007546707522124052, + -0.007148043718189001, + -0.021751102060079575, + -0.010899471119046211, + -0.016680097207427025, + 0.006047731265425682, + 0.008850338868796825, + -0.004333476535975933, + 0.005350069608539343, + -0.011401787400245667, + -0.009743345901370049, + 0.008316129446029663, + 0.012079516425728798, + 0.05785410478711128, + -0.0077579994685947895, + 0.020778361707925797, + -0.005082964897155762, + 0.004213877487927675, + -0.006039758212864399, + -0.0031035984866321087, + -0.008340048603713512, + -0.023409543558955193, + 0.0015916656702756882, + 0.009544013999402523, + -0.008898178115487099, + 0.018769096583127975, + 0.012685485184192657, + -0.015013682655990124, + 0.011489493772387505, + 0.0022703909780830145, + -0.004704234190285206, + -0.0128768440335989, + 0.014790430665016174, + 0.006825126241892576, + 0.004249757155776024, + -0.008136730641126633, + -0.027906473726034164, + 0.0059998915530741215, + -0.000663277052808553, + -0.009105484001338482, + -0.004959378857165575, + 0.013562546111643314, + -0.010229716077446938, + 0.013610385358333588, + 0.00021415726223494858, + -0.025131773203611374, + 0.015763171017169952, + 0.005481628701090813, + 0.0051587107591331005, + -0.02237301878631115, + 0.023569010198116302, + 0.009416441433131695, + -0.01072405930608511, + -0.023250078782439232, + -0.007841719314455986, + -0.0012498113792389631, + -0.0025773621164262295, + -0.01827475242316723, + -0.0037314940709620714, + -0.006131450645625591, + 0.013371187262237072, + 0.0013933302834630013, + -2.2845310013508424e-5, + -0.011282188817858696, + 0.016488738358020782, + -0.004437129013240337, + 0.013419026508927345, + -0.016440900042653084, + 0.0064743016846477985, + 0.01261372584849596, + -0.011696798726916313, + -0.019741836935281754, + -0.0009981547482311726, + 0.00846762116998434, + -0.002300290623679757, + 0.011983837001025677, + 0.025482596829533577, + -0.012852923944592476, + 0.016273461282253265, + -0.011601119302213192, + 0.0025175625924021006, + -0.0006572970887646079, + -0.0011282188352197409, + 0.021352438256144524, + 0.005979958456009626, + -0.025179611518979073, + -0.001963419606909156, + -0.01786014251410961, + -0.011441653594374657, + -0.012382500804960728, + -0.015539919026196003, + -0.004016538616269827, + 0.005489601753652096, + -0.004648420959711075, + 0.0007315482362173498, + 0.006621807347983122, + -0.007897531613707542, + 0.006139424163848162, + -0.017876088619232178, + 0.0037873070687055588, + 0.00381322018802166, + 0.009520093910396099, + -0.004038465209305286, + -0.02414308674633503, + -0.005557375028729439, + -0.012597779743373394, + 0.0007315482362173498, + -0.0022325178142637014, + -2.5430395908188075e-5, + -0.0028285204898566008, + 0.00657795462757349, + 0.008595193736255169, + 0.012334661558270454, + 0.00991875771433115, + -0.010245662182569504, + 0.004664367530494928, + 0.00047515754704363644, + -0.013881477527320385, + -0.030314402654767036, + -0.018163127824664116, + -0.002025212626904249, + -0.015842903405427933, + 0.01597844995558262, + -0.006219157017767429, + -0.002059099031612277, + -0.02084214799106121, + 0.010389180853962898, + 0.02961275540292263, + 0.01822691410779953, + 0.022723842412233353, + -0.011720718815922737, + 0.0158110111951828, + -0.0017561145359650254, + -0.012223035097122192, + 0.009344682097434998, + 0.04059993103146553, + 0.0013733971863985062, + 0.018131233751773834, + 0.014248248189687729, + 0.0030717053450644016, + 0.020618896931409836, + -0.00012651349243242294, + -0.02792241983115673, + 0.016113994643092155, + -0.010532700456678867, + -0.017844196408987045, + -0.01022174209356308, + 0.004050425253808498, + -0.017286065965890884, + 0.0016036255983635783, + 0.0036657145246863365, + 0.015340587124228477, + -0.02313845232129097, + -0.0009911780944094062, + 0.055589694529771805, + 0.00021428184118121862, + 0.003693621139973402, + -0.005979958456009626, + 0.01706281490623951, + -0.019406959414482117, + 0.013993103057146072, + 0.0005965008749626577, + 0.03654950484633446, + -0.019343173131346703, + -0.02466932311654091, + -0.012342634610831738, + -0.018657470121979713, + -0.0053979093208909035, + 0.005362029653042555, + 0.003167384769767523, + 0.01261372584849596, + -0.006183277349919081, + 0.009105484001338482, + 0.008619113825261593, + -0.006697553675621748, + 0.007379268761724234, + 0.014495419338345528, + 0.009089536964893341, + -0.008104837499558926, + -0.0037175409961491823, + 0.009057643823325634, + 0.013610385358333588, + 0.0027467943727970123, + -0.008738712407648563, + -0.01344294659793377, + 0.013674171641469002, + 0.01018187589943409, + 0.0022245445288717747, + 0.018163127824664116, + 0.003277017269283533, + -0.01114664226770401, + -0.012781164608895779, + 0.008451675064861774, + 0.005565348081290722, + 0.029995471239089966, + 0.02242085710167885, + -0.0039368062280118465, + -0.007813812233507633, + 0.024717161431908607, + 0.0011411753948777914, + 0.0028225404676049948, + -0.0029540995601564646, + 0.016488738358020782, + 0.026184245944023132, + 0.02140027843415737, + -0.024127138778567314, + -0.025291237980127335, + -0.02245275117456913, + 0.025211505591869354, + -0.012924683280289173, + 0.004616527818143368, + -0.0262001920491457, + 0.007000538054853678, + 0.00238401023671031, + -0.004748086910694838, + -0.008898178115487099, + 0.006386595778167248 + ], + "93cb7706-5e09-4305-8e63-64adc3f8c5ec": [ + -0.014541653916239738, + -0.038026075810194016, + -0.004081393592059612, + 0.0018437705002725124, + 0.00941384769976139, + -0.029840122908353806, + 0.025669919326901436, + 0.03611087426543236, + -0.008819207549095154, + 0.0785851702094078, + -0.013923846185207367, + -0.00755656324326992, + -0.0013891024282202125, + -0.013221089728176594, + 0.0028650842141360044, + 0.04058998078107834, + -0.031415533274412155, + 0.03348518908023834, + 0.0015261785592883825, + -0.004112284164875746, + 0.04074443131685257, + -0.004166342318058014, + -0.05686921998858452, + 0.026380397379398346, + 0.0004416361334733665, + 0.00525136711075902, + -0.009012272581458092, + 0.02009420283138752, + -0.010054823942482471, + -0.016449136659502983, + 0.011236381717026234, + 0.022410981357097626, + -0.004602668806910515, + -0.019414613023400307, + 0.017221394926309586, + -0.03280559927225113, + 0.0032068092841655016, + -0.019877970218658447, + -0.04948641359806061, + 0.018735025078058243, + -0.015190351754426956, + 0.028728067874908447, + 0.018796805292367935, + -0.023059681057929993, + -0.046119362115859985, + -0.005274535156786442, + -0.01581588201224804, + -0.01668081432580948, + -0.00017870576994027942, + -0.012047254480421543, + 0.009915816597640514, + 0.017159614711999893, + 0.0341956689953804, + 0.024187179282307625, + 0.019399167969822884, + -0.016711704432964325, + 0.009352067485451698, + 0.019136600196361542, + -0.005521658342331648, + -0.06647612899541855, + 0.0010435162112116814, + -0.010518180206418037, + 0.02395550161600113, + 0.00949107389897108, + 0.019152045249938965, + 0.003299480304121971, + 0.00441346550360322, + 0.021808618679642677, + -0.04976442828774452, + -0.0006506289355456829, + 0.037006694823503494, + 0.030751388520002365, + -0.04889949783682823, + -0.008734259754419327, + 0.0066182673908770084, + -0.020789235830307007, + 0.02503666654229164, + 0.0006322877597995102, + 0.014294530265033245, + -0.005579577758908272, + -0.01488144788891077, + -0.016758039593696594, + 0.0008518992108292878, + 0.00831723865121603, + 0.0581975057721138, + 0.019615400582551956, + -0.025762589648365974, + -0.05764148011803627, + -0.003656650660559535, + -0.013545438647270203, + 0.0017761978087946773, + -0.004540888126939535, + 0.009908094070851803, + 0.018750470131635666, + -0.022040298208594322, + -0.007969722151756287, + 0.024125399067997932, + -0.010973813012242317, + 0.03118385374546051, + -0.013723058626055717, + 0.02049577794969082, + -0.013514548540115356, + 0.023106016218662262, + -0.004683756269514561, + -0.0037917960435152054, + -0.007992889732122421, + 0.009344344958662987, + -0.012526055797934532, + -0.0069040036760270596, + 0.02559269219636917, + -0.02482043206691742, + -0.014726996421813965, + 0.008896433748304844, + -0.02579347975552082, + -0.055726274847984314, + -0.024712316691875458, + -0.022194748744368553, + -0.022194748744368553, + -0.005490767769515514, + -0.02366204373538494, + 0.03957059606909752, + 0.025299234315752983, + -0.0111128194257617, + 0.0006115332944318652, + -0.02533012442290783, + 0.014503040350973606, + 0.0039250110276043415, + 0.009019995108246803, + 0.04123867675662041, + 0.02604060433804989, + -0.01241021603345871, + -0.020773790776729584, + -0.017839202657341957, + 0.014580266550183296, + 0.021885845810174942, + -0.001957678934559226, + -0.023059681057929993, + 0.046119362115859985, + -0.03515326976776123, + 0.02299789898097515, + -0.058166615664958954, + -0.025546357035636902, + -0.020820125937461853, + 0.01592399924993515, + 0.0014296461595222354, + -0.0061549111269414425, + -0.0428449772298336, + 0.04732408747076988, + -0.03592552989721298, + 0.027600567787885666, + -0.077102430164814, + -0.03342340886592865, + -0.00754111772403121, + 0.02523745410144329, + -0.01276545599102974, + -0.006510151084512472, + 0.006614406127482653, + 0.008610697463154793, + 0.016140231862664223, + 0.02329135872423649, + 0.021237147971987724, + -0.05998914688825607, + -0.004394158720970154, + -0.013213367201387882, + 0.054150864481925964, + 0.013313760980963707, + 0.05693100020289421, + 0.026998205110430717, + -0.016001224517822266, + 0.012533778324723244, + -0.03737737983465195, + -0.017205949872732162, + 0.01958451047539711, + 0.007726460229605436, + -0.035276830196380615, + 0.013058914802968502, + 0.022117523476481438, + 0.07531078159809113, + 0.013614942319691181, + -0.01881225034594536, + -0.05520113557577133, + -0.023631153628230095, + 0.02610238455235958, + 0.01195458322763443, + 0.02335313893854618, + 0.022673550993204117, + 0.017622970044612885, + 0.02905241772532463, + -0.0015406585298478603, + 0.0010116604389622808, + 0.0014113049255684018, + -0.031971558928489685, + -0.016696259379386902, + 0.013143863528966904, + -0.013684445060789585, + -0.02843460999429226, + -0.011020149104297161, + 0.0015667222905904055, + 0.00439801998436451, + 0.03158542886376381, + -0.027616014704108238, + -0.038026075810194016, + -0.008741982281208038, + 0.035832859575748444, + -0.0330527238547802, + 0.029083307832479477, + -0.01907481998205185, + -0.004367129877209663, + 0.05875353142619133, + -0.05853730067610741, + 0.0487450435757637, + -0.03601820021867752, + -0.03133830800652504, + -0.013553161174058914, + -0.015290745534002781, + 0.0016236763913184404, + -0.01723683997988701, + 0.00729785580188036, + -0.019615400582551956, + -0.029747450724244118, + -0.01207814458757639, + 0.008973659947514534, + 0.0010377241997048259, + -0.04287587106227875, + -0.033145394176244736, + -0.009313453920185566, + -0.043833471834659576, + 0.02151516079902649, + -0.005672249011695385, + 0.017885539680719376, + 0.02233375608921051, + -0.013645832426846027, + 0.025407349690794945, + 0.005181863903999329, + -0.019677182659506798, + 0.018070882186293602, + 0.06412845849990845, + 0.007533395197242498, + -0.024079063907265663, + 0.01122093666344881, + 0.008247735910117626, + 0.005981152877211571, + 0.008232290856540203, + 0.004880682565271854, + -0.005371067672967911, + 0.014966396614909172, + 0.004309209994971752, + 0.05266812443733215, + 0.01689704693853855, + -0.015174906700849533, + -0.005718584638088942, + 0.017978210002183914, + 0.01770019717514515, + 0.0019412683323025703, + -0.024449748918414116, + 0.045964907854795456, + 0.03626532480120659, + -0.045408882200717926, + -0.014201859012246132, + -0.005915510933846235, + -0.0076453727670013905, + -0.004185648635029793, + 0.006266889162361622, + 0.024295296519994736, + 0.02492854930460453, + -0.022967008873820305, + 0.0373464897274971, + -0.0392925851047039, + 0.02193218097090721, + 0.025469131767749786, + 0.01800910010933876, + 0.013004856184124947, + -0.007599037140607834, + 0.01167656946927309, + 0.004842069465667009, + -0.03997217118740082, + 0.021700503304600716, + 0.013336928561329842, + 0.04003395140171051, + -0.0014566752361133695, + -0.016665369272232056, + -0.018024545162916183, + -0.006297779269516468, + 0.0077071539126336575, + 0.01969262771308422, + -0.01200864091515541, + -0.0318479984998703, + 0.021901290863752365, + -0.05396552011370659, + 0.022611768916249275, + 0.018704134970903397, + -0.022210193797945976, + 0.020217763260006905, + 0.015537869185209274, + 0.013908401131629944, + 0.029840122908353806, + -0.027229884639382362, + -0.00989264901727438, + 0.005293841473758221, + 0.02588615193963051, + -0.010039378888905048, + -0.004845930729061365, + 0.031044848263263702, + 0.0024654397275298834, + 0.012865849770605564, + -0.0022472762502729893, + 0.04553244262933731, + 0.015638262033462524, + -0.04080621153116226, + 0.011861911974847317, + 0.0594022311270237, + -0.009220782667398453, + -0.017437627539038658, + -0.0345972441136837, + -0.0004165376885794103, + -0.01983163319528103, + 0.0017066943692043424, + 0.014178691431879997, + -0.021685058251023293, + -0.030025465413928032, + 0.02539190463721752, + -0.02156149595975876, + -0.07141859829425812, + 0.009962152689695358, + 0.07104790955781937, + -0.0016767693450674415, + 0.017066944390535355, + 0.002085101790726185, + -0.029438547790050507, + 0.0052397833205759525, + -0.024187179282307625, + -0.013499102555215359, + -0.02701365016400814, + 0.0165263619273901, + -0.02512933686375618, + -0.05112360417842865, + -0.04114600643515587, + -0.011707459576427937, + 0.016032114624977112, + 0.0041740648448467255, + -0.026735637336969376, + -0.005629774648696184, + 0.037470050156116486, + -0.01577726937830448, + -0.008780594915151596, + -0.016881601884961128, + 0.004521581809967756, + 0.02273533120751381, + -0.0038902591913938522, + 0.003546603489667177, + 0.0011101235868409276, + -0.026581184938549995, + 0.018642354756593704, + -0.015954889357089996, + 0.03163176402449608, + -0.0006926205824129283, + -0.02559269219636917, + -0.01330603752285242, + 0.003616106929257512, + 0.002841916400939226, + -0.007826854474842548, + -0.025778034701943398, + -0.016711704432964325, + 0.03570929914712906, + -0.02446519397199154, + 0.012850404717028141, + -0.03175532817840576, + -0.03524594008922577, + -0.0007128923898562789, + 0.025453686714172363, + -0.017082389444112778, + 0.012587836012244225, + -0.013020302169024944, + -0.023337693884968758, + -0.014116911217570305, + -0.02858906053006649, + 0.018441565334796906, + 0.0016381562454625964, + -0.008942769840359688, + 0.015290745534002781, + 0.010116604156792164, + 0.009367512539029121, + 0.02828015759587288, + 0.03506059944629669, + 0.02818748541176319, + 0.016572697088122368, + 0.0165263619273901, + -0.021993961185216904, + -0.027507897466421127, + 0.035338614135980606, + -0.012726843357086182, + -0.010888864286243916, + -0.041887376457452774, + 0.003836201038211584, + -0.012935353443026543, + -0.01683526486158371, + 0.008456245996057987, + -0.008008334785699844, + 0.04126956686377525, + -0.00015964059275574982, + -0.019661737605929375, + -0.026766527444124222, + -0.007398249581456184, + 0.020171428099274635, + 0.014024239964783192, + -0.027338000014424324, + -0.014781054109334946, + -0.024233516305685043, + -0.0002103201550198719, + -0.01091203186661005, + -0.012456552125513554, + -0.0007375081768259406, + 0.016649924218654633, + 0.016402799636125565, + 0.04120778664946556, + 0.03221868351101875, + 0.0001595199282746762, + 0.033299848437309265, + -0.02040310576558113, + -0.022194748744368553, + 0.031168408691883087, + 0.043771691620349884, + 4.178046583547257e-5, + 0.021731393411755562, + -0.003338093403726816, + 0.013043469749391079, + 0.00372615410014987, + -0.000821008812636137, + -0.029670225456357002, + -0.024835878983139992, + -0.0068036094307899475, + 0.04167114570736885, + -0.013923846185207367, + -0.008324962109327316, + -0.005386512726545334, + -0.007815269753336906, + 0.028867075219750404, + -0.01689704693853855, + -0.019105710089206696, + 0.010186107829213142, + -0.04574867710471153, + 0.00038033799501135945, + -0.012912185862660408, + -0.006950338836759329, + -0.043524567037820816, + -0.021283483132719994, + -0.029747450724244118, + -0.0028631535824388266, + 0.013143863528966904, + -0.04908483847975731, + -0.016572697088122368, + 0.010147495195269585, + -0.06789708882570267, + -0.018626907840371132, + 0.00882693100720644, + -0.003146959003061056, + -0.02106725051999092, + 0.005332454573363066, + 0.006977368146181107, + -0.05032045394182205, + -0.0031450283713638783, + -0.012850404717028141, + 0.032064229249954224, + -0.0028052341658622026, + 0.024913104251027107, + -0.011367665603756905, + -0.00557185523211956, + -0.0018505278276279569, + 0.017530299723148346, + 0.008108728565275669, + -0.014533931389451027, + -0.030087245628237724, + -0.005896204151213169, + 0.028063924983143806, + 0.020171428099274635, + -0.020634783431887627, + -0.021237147971987724, + 0.003743529785424471, + 0.013831174932420254, + -0.03190977871417999, + -0.02807937003672123, + 0.012340713292360306, + 0.017314067110419273, + -0.02095913328230381, + -0.00811645109206438, + 0.014796499162912369, + -0.00900455005466938, + -0.03963237628340721, + 0.01643368974328041, + -0.012510609813034534, + 0.041022446006536484, + 0.014696105383336544, + -0.00699281319975853, + 0.002152674365788698, + -0.029901903122663498, + -0.047941893339157104, + -0.009452461265027523, + -0.021329818293452263, + 0.0047841500490903854, + 0.01187735702842474, + -0.004915434401482344, + -0.03737737983465195, + -0.014688382856547832, + -0.012348435819149017, + -0.029592998325824738, + 0.03830409049987793, + 0.009668693877756596, + 0.01918293535709381, + 0.0020908936858177185, + -0.014564821496605873, + -0.027739575132727623, + 0.009375235065817833, + -0.019244717434048653, + 0.005409680772572756, + 0.0012945006601512432, + 0.04500730708241463, + -0.020990023389458656, + 0.0026430594734847546, + 0.030288033187389374, + -0.004965631291270256, + -0.015005010180175304, + 0.003973277285695076, + -0.0071704331785440445, + -0.005977291613817215, + -0.029036972671747208, + 0.008510303683578968, + -0.005846007261425257, + -0.03367052972316742, + 0.038736555725336075, + -0.0026990482583642006, + -0.0076839858666062355, + 0.03109118342399597, + -0.021221701055765152, + 0.018487902358174324, + 0.02157694101333618, + -0.007703292649239302, + 0.005293841473758221, + 0.007162710651755333, + 0.0023013344034552574, + 0.02187040075659752, + -0.0585990808904171, + 0.016109341755509377, + -0.0031990865245461464, + -0.009182170033454895, + 0.006201246753334999, + 0.03231135383248329, + -0.019136600196361542, + 0.002168119652196765, + -0.00880376249551773, + 0.026951869949698448, + -0.025299234315752983, + 0.032990943640470505, + -0.00879603996872902, + 8.893055201042444e-5, + -0.01694338209927082, + -0.02605604939162731, + 0.029376765713095665, + -0.03509148955345154, + -0.03152364864945412, + -0.0036798184737563133, + -0.019213825464248657, + 0.027986697852611542, + -0.009931262582540512, + -0.004324655514210463, + -0.0010579960653558373, + -0.007969722151756287, + -0.02258087880909443, + 0.008355852216482162, + 0.004811179358512163, + 0.025345569476485252, + 0.025500021874904633, + 0.03506059944629669, + 0.02625683695077896, + -0.007154988124966621, + -0.0017337234457954764, + 0.04741675779223442, + -0.02034132555127144, + -0.023028790950775146, + -0.01861146278679371, + -0.01918293535709381, + 0.05442887544631958, + 0.0014190275687724352, + -0.02619505487382412, + 0.0022163859102874994, + -0.046984292566776276, + -0.0018428051844239235, + -0.006710938643664122, + -0.012479719705879688, + 0.012070422060787678, + 0.03422655910253525, + 0.012580113485455513, + 0.017839202657341957, + 0.0009127146331593394, + 0.04469840228557587, + -0.010680354200303555, + 0.01689704693853855, + 0.031214745715260506, + 0.03910724073648453, + 0.01683526486158371, + 0.007139542605727911, + 0.008440800942480564, + 0.017221394926309586, + -0.02040310576558113, + 0.03249669447541237, + -0.02431074157357216, + 0.055726274847984314, + -0.008996827527880669, + 0.011483504436910152, + 0.00879603996872902, + 0.023260468617081642, + -0.02136070840060711, + -0.007015981245785952, + 0.033763203769922256, + -0.013553161174058914, + 0.020171428099274635, + 0.017792867496609688, + 0.006413618568331003, + 0.0392925851047039, + -0.0010386895155534148, + 0.007494782097637653, + 0.0157232116907835, + -0.012850404717028141, + 0.05513935536146164, + -0.011591620743274689, + 0.009213060140609741, + 0.027399780228734016, + -0.02803303487598896, + 0.011244104243814945, + -0.011298161931335926, + -0.020742900669574738, + 0.006892419420182705, + 0.004309209994971752, + 0.018735025078058243, + -0.005903926678001881, + 0.009645526297390461, + 0.008788317441940308, + 0.020897353067994118, + 0.015221242792904377, + -0.02605604939162731, + -0.02665841206908226, + -0.0034288340248167515, + 0.013753948733210564, + 0.004452078137546778, + 0.08587530255317688, + -0.010765302926301956, + 0.019924305379390717, + 0.0007177190273068845, + 0.0021507437340915203, + 0.045656003057956696, + 0.035122379660606384, + 0.01785464957356453, + 0.031261079013347626, + 0.036914024502038956, + 0.017684752121567726, + 0.012981688603758812, + -0.03453546389937401, + -0.015128571540117264, + 0.0025600416120141745, + -0.00827090349048376, + 0.02466598153114319, + 0.03882922604680061, + -0.015985779464244843, + 0.036203544586896896, + 0.03435011953115463, + 0.02665841206908226, + 0.0013736572582274675, + 0.034411899745464325, + 0.006274611689150333, + 0.004235845524817705, + 0.02085101790726185, + -0.0033767062705010176, + -0.0009392611100338399, + 0.01317475363612175, + 0.014286807738244534, + 0.002415242837741971, + -0.003146959003061056, + 0.008734259754419327, + 0.0161247868090868, + 0.0013360095908865333, + -0.016850711777806282, + -0.019661737605929375, + -0.04225806146860123, + -0.03697580471634865, + 0.040528200566768646, + -0.013445044867694378, + 0.004204954952001572, + -0.0147501640021801, + 0.014997286722064018, + -0.013406431302428246, + -0.010842529125511646, + 0.005896204151213169, + 0.018549682572484016, + -0.00023831457656342536, + 0.02568536438047886, + 0.004386436194181442, + -0.007544978987425566, + -0.013723058626055717, + -0.02563902921974659, + -0.001476947101764381, + -0.03200244903564453, + -0.0377480648458004, + -0.01251833327114582, + -0.026519404724240303, + -0.01454937644302845, + -0.00035089559969492257, + -0.0036663038190454245, + -0.02288978360593319, + -0.011359943076968193, + -0.015846772119402885, + -0.01045639906078577, + 0.00020042558026034385, + -0.02055755816400051, + -0.02346125617623329, + 0.0038226863835006952, + 0.016572697088122368, + 0.01745307445526123, + -0.010216997936367989, + 0.011645679362118244, + 0.017128724604845047, + 0.0507529191672802, + -0.02253454364836216, + 0.023106016218662262, + -0.019244717434048653, + -0.016495471820235252, + -0.020310435444116592, + 0.013213367201387882, + 0.00879603996872902, + -0.026442179456353188, + 0.014572544023394585, + -0.010054823942482471, + 0.05906243622303009, + -0.010023933835327625, + 0.02355392649769783, + 0.005135528277605772, + -0.009344344958662987, + -0.01581588201224804, + -0.019569065421819687, + 0.0037917960435152054, + 0.009166724979877472, + -0.010016210377216339, + -0.0002821162051986903, + 0.0026295450516045094, + 0.01419413648545742, + -0.0031797802075743675, + 0.0030040910933166742, + -0.0290987528860569, + 0.006286195479333401, + 0.02807937003672123, + -0.03953970596194267, + -0.028311047703027725, + 0.04658271744847298, + -0.017020607367157936, + 0.016093896701931953, + -0.02712176740169525, + -0.04420415684580803, + 0.014325421303510666, + 0.027585122734308243, + 0.006108575966209173, + -0.022117523476481438, + 0.035987310111522675, + -0.012889017350971699, + 0.022503653541207314, + -0.004108422435820103, + -0.009460183791816235, + -0.014726996421813965, + 0.0024635090958327055, + -0.010641741566359997, + 0.01973896287381649, + 0.03209511935710907, + -0.008240013383328915, + 0.036203544586896896, + 0.015059067867696285, + 0.03518415987491608, + -0.004892266355454922, + -0.027616014704108238, + 0.003782142885029316, + 0.013622664846479893, + -0.031724438071250916, + -0.02355392649769783, + -0.006073824129998684, + 0.002762759802863002, + -0.04605758190155029, + 0.027183547616004944, + 0.0033303708769381046, + 0.008896433748304844, + -0.022519098594784737, + 0.022920673713088036, + -0.02721443772315979, + 0.01459571160376072, + -0.008124173618853092, + 0.005038995761424303, + -0.007278549484908581, + -0.005564132705330849, + 0.02553091198205948, + 0.011035594157874584, + -0.020310435444116592, + -0.006147188600152731, + 0.004046641755849123, + -0.017576634883880615, + 0.01017066277563572, + 0.029268650338053703, + -0.012556945905089378, + 0.03666689991950989, + 0.029886458069086075, + 0.025160226970911026, + -0.008286348544061184, + -0.015792714431881905, + -0.006583515554666519, + -0.021499715745449066, + 0.0029326570220291615, + 0.0071472651325166225, + 0.008054670877754688, + -0.023476701229810715, + 0.0326511487364769, + 0.013684445060789585, + -0.02035677060484886, + 0.01241021603345871, + 0.020742900669574738, + 0.02940765768289566, + 0.01770019717514515, + 0.006471537984907627, + 0.014263640157878399, + 0.023260468617081642, + 0.015144016593694687, + 0.00879603996872902, + -0.006915587466210127, + 0.011089651845395565, + -0.003052357118576765, + 0.020789235830307007, + -0.006602821871638298, + -0.0010995049960911274, + 0.03657422959804535, + -0.016356464475393295, + 0.027693239971995354, + 0.01073441281914711, + 0.014510763809084892, + -0.019244717434048653, + 0.013190198689699173, + -0.02834193781018257, + 0.011236381717026234, + -0.011746073141694069, + -0.05912421643733978, + 0.0030156748834997416, + -0.01309752743691206, + -0.036697790026664734, + -0.02523745410144329, + -0.011004703119397163, + 0.0029326570220291615, + 0.02162327617406845, + 0.06820599734783173, + 0.03336162865161896, + -0.008989105001091957, + -0.014788776636123657, + 0.0008031502948142588, + -0.022920673713088036, + 0.012309822253882885, + 0.0024770235177129507, + 0.03382498398423195, + -0.012981688603758812, + 0.016063006594777107, + 0.00834040716290474, + 0.01325197983533144, + -0.04167114570736885, + -0.0046876175329089165, + -0.011244104243814945, + -0.027940362691879272, + -0.0006293918122537434, + 0.01251833327114582, + -0.03042704053223133, + -0.0023669765796512365, + -0.012966243550181389, + -0.014086020179092884, + -0.018549682572484016, + 0.01933738775551319, + -0.004803456366062164, + 0.004598807543516159, + -0.003952039871364832, + -0.020372215658426285, + -0.04238162189722061, + -0.013136141002178192, + -0.0005579577991738915, + 0.024758651852607727, + -0.016510916873812675, + 0.011182323098182678, + -0.03444278985261917, + -0.006185801699757576, + -0.009290286339819431, + -0.013321483507752419, + -0.0008263181080110371, + -0.003202948020771146, + -0.006517873611301184, + 0.0027029095217585564, + 0.0011024009436368942, + 0.0021063389722257853, + -0.00935979001224041, + 0.026982760056853294, + -0.00419723242521286, + -0.005054440815001726, + -0.0013186337891966105, + -0.005382651463150978, + -0.001712486264295876, + -0.01154528558254242, + -0.03821142017841339, + 0.0017974348738789558, + 0.03663600981235504, + -0.025005774572491646, + 0.007185878232121468, + 0.007969722151756287, + 0.012943075969815254, + 0.005456015933305025, + 0.0052629513666033745, + 0.0198470801115036, + 0.009715029038488865, + -0.019908860325813293, + 0.047231413424015045, + 0.0012771247420459986, + 0.0001198209502035752, + 0.0008615524275228381, + 0.009398402646183968, + -0.02965478040277958, + -0.007977444678544998, + -0.01577726937830448, + -0.0035794246941804886, + 0.01689704693853855, + 0.004988798871636391, + 0.00353501969948411, + -0.00139296380802989, + 0.0032801739871501923, + -0.008865543641149998, + 0.031616318970918655, + 0.015445197932422161, + 0.003824617015197873, + 0.012981688603758812, + -0.012139925733208656, + 0.02477409690618515, + -0.021098140627145767, + -0.022040298208594322, + 0.0068653905764222145, + -0.024295296519994736, + -0.012186260893940926, + 0.0030851783230900764, + 0.0005777469486929476, + 0.03404121473431587, + -0.005170280113816261, + -0.01597033441066742, + 0.018395230174064636, + 0.01918293535709381, + 0.06641434878110886, + -0.0018823834834620357, + -0.009900371544063091, + -0.02380104921758175, + -0.016819819808006287, + 0.01648002676665783, + -0.002926864894106984, + 0.012912185862660408, + 0.0032917577773332596, + -0.017329512163996696, + -0.012804068624973297, + 0.004888405092060566, + 0.005575716495513916, + 0.0057533360086381435, + 0.011004703119397163, + 0.014371756464242935, + -0.0033477465622127056, + -0.022719886153936386, + 0.02548457682132721, + -0.01800910010933876, + -0.021700503304600716, + -0.01581588201224804, + -0.016665369272232056, + -0.017082389444112778, + -0.012726843357086182, + 0.0035774940624833107, + 0.014935506507754326, + -0.018750470131635666, + -0.0404973104596138, + -0.025268344208598137, + -0.005378790199756622, + -0.05535558983683586, + -0.01352999359369278, + 0.020789235830307007, + -0.04182559624314308, + -0.00874970480799675, + -0.01774653233587742, + -0.011576175689697266, + -0.014804222621023655, + -0.009089498780667782, + -0.0021237146575003862, + -0.008610697463154793, + -0.016140231862664223, + -0.0060236272402107716, + -0.024387966841459274, + 0.005278396420180798, + 0.002361184684559703, + 0.009367512539029121, + -0.001932580373249948, + 0.004548610653728247, + 0.0016825612401589751, + -0.015622817911207676, + -0.016974272206425667, + 0.002334155607968569, + 0.0015821674605831504, + -0.02650395967066288, + 0.04247429594397545, + 0.040867991745471954, + 0.03932347521185875, + 0.02466598153114319, + -0.041485801339149475, + -0.013823452405631542, + 0.023785604164004326, + -0.0059850141406059265, + -0.022905228659510612, + -0.0253764595836401, + -0.013112973421812057, + 0.010016210377216339, + 0.026179609820246696, + 0.0008436939097009599, + -0.01515946164727211, + 0.008541194722056389, + 0.04123867675662041, + 0.002652712631970644, + -0.015599649399518967, + 0.032373134046792984, + -0.015862219035625458, + 0.0016545668477192521, + -0.0026469207368791103, + -0.005340177100151777, + 0.00813961960375309, + 0.0038304091431200504, + 0.01276545599102974, + -0.008162787184119225, + 0.006062240339815617, + -0.0035369503311812878, + -0.0273225549608469, + 0.02610238455235958, + -0.007768934592604637, + -0.02213296853005886, + -0.08865543454885483, + -0.010981535539031029, + -0.00474553694948554, + 0.019399167969822884, + 0.013475934974849224, + -0.004652865696698427, + 0.010973813012242317, + 0.012611004523932934, + -0.01271912083029747, + -0.019136600196361542, + 0.028975190594792366, + 0.0013089805142953992, + 0.009421571157872677, + 0.03753183037042618, + 0.0004920743522234261, + 0.000558440457098186, + -0.007182016968727112, + -0.022982453927397728, + -0.007730321492999792, + 0.018549682572484016, + 0.004803456366062164, + 0.016711704432964325, + 0.02329135872423649, + -0.011043316684663296, + -0.009336622431874275, + 0.03536950424313545, + -0.0003873365931212902, + 0.00020609685452654958, + 0.00488454382866621, + -0.020264100283384323, + -0.0004908677074126899, + 0.0015937513671815395, + -0.005027411971241236, + 0.0017037984216585755, + 0.011514395475387573, + 0.01867324486374855, + -0.004166342318058014, + -0.006054517347365618, + 0.029824677854776382, + -0.007185878232121468, + 0.010356005281209946, + 0.0055834390223026276, + -0.005123944487422705, + 0.0012887086486443877, + -0.016603587195277214, + -0.009498796425759792, + -0.004865237511694431, + -0.028372827917337418, + -0.00017786110402084887, + -0.008417632430791855, + -0.0010715106036514044, + -0.009213060140609741, + -0.037562720477581024, + -0.016464581713080406, + 0.004676033742725849, + 0.002357323421165347, + 0.0253764595836401, + -0.0075720082968473434, + 0.004834346938878298, + 0.008240013383328915, + 0.05381106957793236, + 0.012271209619939327, + 0.006046794820576906, + -0.010309669189155102, + -0.013066637329757214, + 0.002604446606710553, + -0.0052011702209711075, + 0.01142172422260046, + 0.030596936121582985, + -0.0214224886149168, + 0.013213367201387882, + -0.011174600571393967, + -0.013313760980963707, + 0.016711704432964325, + 0.009467906318604946, + 0.027492452412843704, + 0.016881601884961128, + 0.013800283893942833, + -0.005077608861029148, + -0.012502887286245823, + -0.024542419239878654, + 0.018549682572484016, + 0.00071192707400769, + 0.0020194596145302057, + -0.011939138174057007, + -0.007633788976818323, + 0.015846772119402885, + 0.009166724979877472, + 0.006861529313027859, + -0.0026121691334992647, + 0.025500021874904633, + 0.02193218097090721, + 0.03561662510037422, + 0.011583898216485977, + -0.02049577794969082, + 0.03102940320968628, + -0.019862525165081024, + 0.02446519397199154, + -0.01119004562497139, + -0.006004320457577705, + -0.00019222030823584646, + -0.026164164766669273, + 0.007726460229605436, + -0.012448829598724842, + -0.012572390958666801, + -0.009050886146724224, + 0.0048227631486952305, + -0.01694338209927082, + -0.008757427334785461, + -0.007224491331726313, + 0.023692933842539787, + -0.00900455005466938, + -0.02390916645526886, + 0.004305348731577396, + -0.015228965319693089, + -0.01203180942684412, + 0.006228276062756777, + -0.017931874841451645, + -0.009552855044603348, + 0.007591314613819122, + -0.011336775496602058, + 0.03021080791950226, + 0.009838591329753399, + -0.020820125937461853, + 0.01592399924993515, + -0.0006873112870380282, + -0.022472763434052467, + -0.02187040075659752, + 0.004023474175482988, + 0.010340560227632523, + 0.0008364539826288819, + 0.013645832426846027, + -0.02721443772315979, + 0.0033612612169235945, + -0.044389497488737106, + 0.005004243925213814, + 0.034319229423999786, + -0.03221868351101875, + 0.028867075219750404, + -0.03793340548872948, + 0.016727149486541748, + 0.006676186807453632, + 0.00949107389897108, + 0.00645995419472456, + -0.020789235830307007, + -0.019352832809090614, + 0.0004105044063180685, + -0.002071587136015296, + 0.014719273895025253, + 0.0026140997651964426, + -0.008147342130541801, + 0.0004216056258883327, + -0.00464128190651536, + 0.0009431223734281957, + -0.016711704432964325, + -0.04716963320970535, + -0.02451152913272381, + 0.007062316872179508, + -0.005278396420180798, + -0.02960844524204731, + -0.0052011702209711075, + 0.008834653533995152, + 0.01503590028733015, + -0.009352067485451698, + 0.035338614135980606, + 0.004876821301877499, + -0.010888864286243916, + 0.005490767769515514, + -0.0012385117588564754, + -0.013028024695813656, + -0.003533089067786932, + -0.01607845164835453, + -0.004649004433304071, + -0.01381572987884283, + -0.015939444303512573, + -0.010016210377216339, + 0.00040254046325571835, + 0.00024108988873194903, + 0.015985779464244843, + 0.0023804912343621254, + -0.009298008866608143, + 0.01330603752285242, + -0.01358405128121376, + -0.010417786426842213, + 0.0040543642826378345, + 0.00827090349048376, + -0.0011998987756669521, + 0.015267577953636646, + 0.0005526485037989914, + 0.010016210377216339, + 0.025252899155020714, + 0.027461562305688858, + -0.01759207993745804, + -0.009985320270061493, + -0.002720285439863801, + -0.020619338378310204, + 0.02140704356133938, + 0.045810457319021225, + -0.02040310576558113, + -0.024326186627149582, + -0.005714723374694586, + -6.77537391311489e-5, + 0.019955195486545563, + 0.008131897076964378, + 0.005286118946969509, + 0.0021507437340915203, + -0.046520937234163284, + 0.016186567023396492, + 0.005019689444452524, + -0.008147342130541801, + -0.010201552882790565, + 0.033763203769922256, + 0.012981688603758812, + -0.022519098594784737, + 0.005066025070846081, + -0.011043316684663296, + 0.0009715994819998741, + -0.022565433755517006, + 0.004691478796303272, + -0.0012452690862119198, + 0.035029709339141846, + 0.009298008866608143, + -0.0016815959243103862, + -0.016510916873812675, + 0.005131667014211416, + 0.027291664853692055, + 0.005228199530392885, + -0.006046794820576906, + -0.014456705190241337, + 0.008757427334785461, + 0.0010106951231136918, + -0.00039071522769518197, + -0.0051664188504219055, + -0.013475934974849224, + 0.0008441765676252544, + -0.013707613572478294, + 0.033392518758773804, + -0.023677488788962364, + 0.023986391723155975, + -0.006741828750818968, + -0.017422182485461235, + 0.0025754866655915976, + -0.014008794911205769, + -0.0018273600144311786, + 0.004073671065270901, + 0.03194066882133484, + -0.035894639790058136, + -0.009946707636117935, + -0.01330603752285242, + -0.005822839681059122, + 0.01442581508308649, + -0.009823146276175976, + -0.015290745534002781, + 0.013020302169024944, + 0.01114371046423912, + 0.011931415647268295, + -0.015460642985999584, + -0.0057996716350317, + 0.011305884458124638, + 0.021916735917329788, + 0.002199009992182255, + -0.015908554196357727, + 0.015985779464244843, + -0.015468365512788296, + 0.01576954685151577, + 0.008502581156790257, + -0.0027704823296517134, + -0.011166878044605255, + 0.01398562639951706, + -0.018379785120487213, + 0.009877203963696957, + 0.011514395475387573, + -0.03555484488606453, + 0.01401651743799448, + 0.012271209619939327, + 0.012649617157876492, + -0.004266736097633839, + -0.01918293535709381, + -0.00278592761605978, + 0.0067688580602407455, + -0.02268899604678154, + -0.0007124097319319844, + -0.02406361885368824, + -0.002442271914333105, + 0.02217930369079113, + 0.012549223378300667, + 0.029685670509934425, + 0.004927018191665411, + 0.015089957974851131, + -0.00322997709736228, + -0.006054517347365618, + 0.023523036390542984, + 0.0161247868090868, + -0.014255917631089687, + 0.015846772119402885, + 0.007931109517812729, + 0.006394311785697937, + -6.17807891103439e-5, + 0.002538804430514574, + -0.001837013172917068, + 0.01851879246532917, + 0.006954200565814972, + -0.024387966841459274, + 0.0031083461362868547, + -0.009676416404545307, + -0.00016507055261172354, + 0.010942922905087471, + -0.014070575125515461, + 0.004436633083969355, + -0.007977444678544998, + -0.004564056172966957, + -0.013221089728176594, + 0.003479030914604664, + -0.02075834572315216, + -0.0031701268162578344, + 0.010695799253880978, + 0.022102078422904015, + -0.021298928186297417, + 3.4027700166916475e-5, + -0.033763203769922256, + 0.018704134970903397, + -0.007602898869663477, + 0.009313453920185566, + 0.026874644681811333, + -0.026488514617085457, + -0.0028535001911222935, + 0.003463585628196597, + -0.008587529882788658, + -0.0032956190407276154, + 0.007189739495515823, + -0.02330680377781391, + 0.04757120832800865, + -0.021499715745449066, + 0.023013344034552574, + -0.004556333180516958, + -0.0014962535351514816, + -0.011043316684663296, + 0.01581588201224804, + -0.016155676916241646, + 0.002388213761150837, + 0.005073747597634792, + -0.0062514436431229115, + -0.0016642201226204634, + -0.015483810566365719, + 0.010904309339821339, + 0.011730628088116646, + -0.0008205261547118425, + 0.019507285207509995, + 0.024696871638298035, + -0.008031503297388554, + 0.006726383697241545, + 0.01953817531466484, + -0.005791949108242989, + 0.0035794246941804886, + 0.0020098064560443163, + 0.02710632234811783, + 0.020526668056845665, + 0.021638723090291023, + -0.01703605242073536, + -0.014225027523934841, + -0.01180013082921505, + 0.003531158436089754, + -0.0226272139698267, + 0.011491226963698864, + 0.0020213902462273836, + 0.01291990838944912, + 0.005135528277605772, + -0.01739129237830639, + -0.017375847324728966, + -0.03367052972316742, + 0.026364952325820923, + -0.021252593025565147, + -0.016881601884961128, + 0.013638109900057316, + -0.015615095384418964, + -0.005197308957576752, + 0.006151049863547087, + 0.02315235137939453, + 0.0030851783230900764, + -0.012471997179090977, + -0.00505057955160737, + 0.00577264279127121, + -0.003930802922695875, + -0.0010551001178100705, + -0.01774653233587742, + -0.003506059991195798, + -0.012819514609873295, + -0.014950951561331749, + -0.012556945905089378, + 0.011630234308540821, + -0.036852240562438965, + -0.021484270691871643, + 0.01567687653005123, + 0.01470382884144783, + 0.017916429787874222, + 0.024789541959762573, + -0.01093520037829876, + 0.01918293535709381, + -0.04096066579222679, + -0.005726307164877653, + -0.008479413576424122, + 0.011869634501636028, + -0.009622358717024326, + 0.020125092938542366, + -0.01739129237830639, + 0.010742135345935822, + 0.014734718948602676, + 0.04608847200870514, + 0.00811645109206438, + -0.016418244689702988, + -0.018580572679638863, + 0.022828001528978348, + 0.00017267248767893761, + -0.011614789254963398, + -0.021885845810174942, + -0.0055679939687252045, + -0.010471844114363194, + 0.007494782097637653, + -0.006537179928272963, + 0.004853653255850077, + -0.008919601328670979, + 0.0026198916602879763, + -0.04025018587708473, + -0.02136070840060711, + -0.009985320270061493, + -0.00793883204460144, + -0.006710938643664122, + -0.00790794100612402, + 0.000966290186624974, + 0.021530605852603912, + 0.02807937003672123, + 0.0014045477146282792, + 0.008487136103212833, + 0.022750776261091232, + 0.031616318970918655, + -0.022719886153936386, + 0.010278779082000256, + -0.02228742092847824, + 0.0004549093428067863, + -0.019507285207509995, + -0.008278626017272472, + -0.006888558156788349, + -0.013699890114367008, + -0.025453686714172363, + -0.020619338378310204, + 0.0043825749307870865, + 0.015398861840367317, + -0.03963237628340721, + 0.012526055797934532, + 0.023770159110426903, + 0.022549988701939583, + -0.01734495721757412, + 0.019877970218658447, + -0.011792408302426338, + 0.01106648426502943, + -0.003160473657771945, + -0.0006139466422609985, + -0.014379478991031647, + -0.0032782433554530144, + 0.01876591518521309, + 0.007668540813028812, + 0.011274994350969791, + -0.011166878044605255, + 0.012834959663450718, + -0.0002596723788883537, + -0.002085101790726185, + 0.03215690329670906, + -0.010433231480419636, + -0.038582105189561844, + -0.03493703901767731, + -0.00949107389897108, + -0.01050273422151804, + -0.008077838458120823, + -0.011460336856544018, + 0.026488514617085457, + -0.02355392649769783, + -0.006734106224030256, + -0.02905241772532463, + -0.025252899155020714, + 0.007969722151756287, + 0.01536024920642376, + 0.004699201323091984, + -0.008070115931332111, + 0.02696731500327587, + 0.016464581713080406, + -0.026133274659514427, + 0.04241251200437546, + -0.006668464280664921, + -0.01195458322763443, + 0.037717174738645554, + 0.000813768885564059, + 0.015831327065825462, + -0.02828015759587288, + 0.0016120924847200513, + 0.004660588689148426, + -0.033145394176244736, + -0.006680048070847988, + -0.006849945057183504, + 0.02339947409927845, + -0.003950109239667654, + 0.012309822253882885, + -0.03617265447974205, + -0.024233516305685043, + -0.004448216874152422, + 0.009460183791816235, + -0.015221242792904377, + -0.011823299340903759, + 0.0006665568216703832, + 0.001313807093538344, + -0.017221394926309586, + -0.004340100567787886, + 0.0038612994831055403, + -0.01312841847538948, + 0.00040060983155854046, + -0.0033612612169235945, + -0.017916429787874222, + 0.013630387373268604, + 0.00900455005466938, + -0.008857821114361286, + -0.007089345715939999, + -0.019522730261087418, + -0.007193600758910179, + -0.012657339684665203, + -0.003753183176741004, + 0.009498796425759792, + 0.011475781910121441, + -0.00827090349048376, + -0.01739129237830639, + -0.012139925733208656, + 0.015337081626057625, + 0.007000535726547241, + 0.005761059001088142, + -0.014981841668486595, + -0.000765985285397619, + 0.02009420283138752, + -0.005768781527876854, + 0.001558999647386372, + -0.0018476317636668682, + -0.02193218097090721, + -0.015576481819152832, + 0.0065950993448495865, + -0.000389749911846593, + -0.016727149486541748, + 0.0010126257548108697, + 0.008031503297388554, + 0.09192981570959091, + 2.379375018790597e-6, + -0.0035813553258776665, + -0.007274688221514225, + 0.010541347786784172, + -0.024140844121575356, + -0.006035211030393839, + 0.00818595476448536, + 0.02406361885368824, + -0.004795733839273453, + -0.0063865892589092255, + -0.01053362525999546, + 0.01969262771308422, + -0.0057533360086381435, + -0.004374852403998375, + 0.01515946164727211, + 0.021345263347029686, + 0.03413388878107071, + 0.022503653541207314, + 0.013004856184124947, + -0.0030542879831045866, + -0.008811485022306442, + 0.008000612258911133, + 0.025422796607017517, + -0.00020452820172067732, + 0.02228742092847824, + -0.015908554196357727, + 0.0016381562454625964, + 0.013954736292362213, + 0.0222256388515234, + -0.002538804430514574, + -0.007656957022845745, + -0.016804374754428864, + -0.007745766546577215, + -0.005622052121907473, + 0.008479413576424122, + -0.027044542133808136, + -0.002581278793513775, + 0.001242373138666153, + 0.008857821114361286, + 0.0011979681439697742, + 0.0038458541966974735, + 0.008811485022306442, + 0.02111358568072319, + -0.005255228374153376, + 0.0006747620645910501, + 0.004869098775088787, + -0.0007418521563522518, + 0.012371603399515152, + 0.004425049293786287, + -0.017823757603764534, + -0.020125092938542366, + 0.01938372291624546, + 0.006046794820576906, + 0.026797417551279068, + 0.009498796425759792, + 0.020634783431887627, + -0.02106725051999092, + -0.007838438265025616, + -0.008409909904003143, + -0.013808007352054119, + 0.004656726960092783, + -0.010317391715943813, + -0.022040298208594322, + -0.006274611689150333, + -0.03147731348872185, + -0.03484436497092247, + -0.01993975043296814, + 0.0006052586832083762, + -0.007100929506123066, + -0.00839446485042572, + -0.0040543642826378345, + -0.0006795887020416558, + -0.03382498398423195, + -0.0038825366646051407, + -0.007089345715939999, + -0.005865314044058323, + 0.004394158720970154, + 0.007641511503607035, + 0.00023421194055117667, + -0.0026469207368791103, + 0.011607065796852112, + -0.0002799442154355347, + -0.029175978153944016, + -0.010896586813032627, + -0.005301564000546932, + 0.03274381905794144, + -0.018426120281219482, + 0.012309822253882885, + -0.024990329518914223, + -0.015120849013328552, + -0.0042860424146056175, + -0.007255381904542446, + -0.001685457187704742, + 0.005672249011695385, + -0.004320794250816107, + -0.02502121962606907, + 0.0032087399158626795, + 0.0021835649386048317, + 0.006286195479333401, + 0.01949184015393257, + 0.010695799253880978, + 1.2300350135774352e-5, + 0.003021466778591275, + -0.0031681961845606565, + -0.00941384769976139, + 0.0013089805142953992, + 0.0044945525005459785, + -0.005846007261425257, + -0.012495164759457111, + 0.013684445060789585, + -0.02029499039053917, + -0.0045177205465734005, + 0.012989411130547523, + -0.020418550819158554, + 0.017684752121567726, + 0.02018687315285206, + -0.0012336851796135306, + -0.010742135345935822, + -0.003533089067786932, + -0.02848094515502453, + 0.0009894579416140914, + -0.009344344958662987, + -0.004332378040999174, + 0.0068267774768173695, + -0.0015512770041823387, + 0.002720285439863801, + -0.004567917436361313, + -0.028372827917337418, + 0.004401881247758865, + -0.0005516831879504025, + 0.0012307892320677638, + 0.019955195486545563, + 0.01508223544806242, + 0.018997592851519585, + -0.008070115931332111, + -0.004444355610758066, + 0.018704134970903397, + 0.013638109900057316, + -0.010819361545145512, + 0.020665675401687622, + 0.011576175689697266, + 0.015576481819152832, + 0.011661124415695667, + 0.004340100567787886, + 0.023986391723155975, + 0.004239706788212061, + -0.026843754574656487, + 0.007954277098178864, + -7.891530549386516e-5, + 0.024712316691875458, + -0.037470050156116486, + 0.007830715738236904, + -0.009290286339819431, + 0.004830485675483942, + 0.007386665791273117, + -0.013398708775639534, + 0.034813474863767624, + -0.008209122344851494, + 0.007100929506123066, + 0.0001840150507632643, + -0.0028206792194396257, + -0.010541347786784172, + -0.00826318096369505, + 0.01401651743799448, + -0.004988798871636391, + 0.02304423600435257, + 0.014580266550183296, + 0.01918293535709381, + -0.01918293535709381, + -0.011861911974847317, + 0.01627923920750618, + -0.007046871352940798, + -0.04398792237043381, + -0.0020928243175148964, + 0.010765302926301956, + -0.0013282870640978217, + -0.00638272799551487, + -0.025762589648365974, + 0.018503347411751747, + -0.014997286722064018, + -0.010317391715943813, + 0.006228276062756777, + -0.0015696182381361723, + -0.00037599404458887875, + -0.013383263722062111, + 0.00470306258648634, + -0.0033767062705010176, + 0.00480731762945652, + -0.02650395967066288, + -0.002137229312211275, + 0.019105710089206696, + -0.006780441850423813, + -0.008981382474303246, + -0.007537256460636854, + -0.008232290856540203, + 0.018487902358174324, + 0.017422182485461235, + 0.0032376996241509914, + -0.013491380028426647, + 0.010255611501634121, + 0.005595022812485695, + 0.014866002835333347, + 0.00811645109206438, + -0.007622205186635256, + -0.015483810566365719, + -0.012109034694731236, + -0.003424972528591752, + -0.009506518952548504, + -0.007668540813028812, + -0.02659662999212742, + -0.03109118342399597, + 0.016001224517822266, + 0.008819207549095154, + -0.013808007352054119, + 0.0038999123498797417, + 0.0034211112651973963, + 0.010363727807998657, + 0.02665841206908226, + 0.021499715745449066, + 0.016866156831383705, + 0.005761059001088142, + 0.01305119227617979, + 0.01053362525999546, + -0.005961846560239792, + 0.012611004523932934, + 0.00395397050306201, + -0.009776810184121132, + 0.013236534781754017, + 0.005058302078396082, + 0.02599426731467247, + 0.004112284164875746, + -0.00941384769976139, + 0.027399780228734016, + -0.013398708775639534, + 0.03410299867391586, + 0.009120388887822628, + -0.021376153454184532, + 0.013499102555215359, + -0.00963780377060175, + -0.0028206792194396257, + -0.0014006863348186016, + -0.00900455005466938, + -0.006390450522303581, + 0.0074754757806658745, + -0.012989411130547523, + 0.015792714431881905, + 0.0022820280864834785, + 0.003438487183302641, + -3.248921348131262e-5, + -0.003067802404984832, + -0.0074754757806658745, + 0.00259479321539402, + 0.02828015759587288, + 0.030087245628237724, + 0.011846466921269894, + 0.0004956943448632956, + 0.012611004523932934, + 0.014819667674601078, + -0.021237147971987724, + -0.0027839969843626022, + 0.03536950424313545, + -0.013908401131629944, + -0.013831174932420254, + -0.009452461265027523, + 0.02472776174545288, + -0.008811485022306442, + 0.0003540329053066671, + 0.006239859852939844, + 0.017885539680719376, + 0.003591008484363556, + -0.0023399475030601025, + -0.0015985779464244843, + 0.014858280308544636, + -0.021963071078062057, + -0.002361184684559703, + 0.008247735910117626, + -0.021190810948610306, + 0.0013717266265302896, + -0.004791872575879097, + -0.005923233460634947, + -0.013954736292362213, + -0.0006670394795946777, + -0.014866002835333347, + 0.009807700291275978, + -0.02244187332689762, + 0.0061935242265462875, + 0.020063312724232674, + -0.002152674365788698, + 0.006039072293788195, + 0.0014798430493101478, + -0.020511223003268242, + 0.014201859012246132, + -0.028573615476489067, + 0.009498796425759792, + 0.00887326616793871, + -0.012742288410663605, + 0.00024012455833144486, + 0.009429293684661388, + 0.006235998589545488, + -0.0129739660769701, + 0.015893109142780304, + -0.006004320457577705, + -0.023322248831391335, + -0.0016333296662196517, + 0.011274994350969791, + 0.009877203963696957, + 3.363553787494311e-6, + -0.0022723746951669455, + -0.014981841668486595, + -0.012479719705879688, + 4.512893792707473e-5, + 0.017483964562416077, + -0.021746838465332985, + -0.018858587369322777, + -0.017731087282299995, + 0.0006641435320489109, + 0.012170815840363503, + -0.004923156928271055, + -0.009089498780667782, + -0.004166342318058014, + -0.002818748587742448, + -0.009753642603754997, + 0.018457012251019478, + 0.00754111772403121, + 0.007641511503607035, + -0.00029635473038069904, + -0.0037029862869530916, + -0.014163246378302574, + -0.03703758493065834, + 0.012796346098184586, + -0.02029499039053917, + -0.008077838458120823, + 0.0050698863342404366, + -0.004892266355454922, + 0.019553620368242264, + -0.01963084563612938, + -0.004046641755849123, + -0.00949107389897108, + 0.01345276739448309, + -0.023924611508846283, + -0.011135987937450409, + -0.0022955425083637238, + -0.007641511503607035, + 0.019924305379390717, + -0.0021333680488169193, + 0.0024345493875443935, + 0.0019557480700314045, + -0.0017260009190067649, + 0.03765539079904556, + 0.0077071539126336575, + -0.00976908765733242, + 0.005795810371637344, + 0.003353538690134883, + 0.003378637135028839, + 0.004892266355454922, + 0.004262874834239483, + 0.01070352178066969, + -0.027785910293459892, + 0.0008663790649734437, + -0.00665301876142621, + 0.0077071539126336575, + -0.01597033441066742, + 0.002758898539468646, + 0.0007621239637956023, + 0.0017028331058099866, + 0.013190198689699173, + 0.019769852980971336, + -0.021808618679642677, + 0.023384029045701027, + -0.01658814214169979, + -0.008124173618853092, + -0.01983163319528103, + 0.0008823069510981441, + -0.01065718661993742, + 0.005255228374153376, + 0.011027871631085873, + 0.0034191806335002184, + 0.0031797802075743675, + -0.008108728565275669, + 0.021298928186297417, + 0.008850098587572575, + -0.010286501608788967, + -0.007112513761967421, + 0.015043622814118862, + 0.02146882563829422, + 0.022503653541207314, + 0.04503819718956947, + 0.0023708378430455923, + -0.02233375608921051, + -0.017020607367157936, + -0.008888711221516132, + -0.00033593305852264166, + 0.023739269003272057, + 0.0013456628657877445, + -0.002040696796029806, + -0.02304423600435257, + 0.013962458819150925, + -0.0038612994831055403, + 0.008857821114361286, + -0.008278626017272472, + -0.003961693029850721, + 0.024542419239878654, + 0.0034018047153949738, + 0.01567687653005123, + -0.023677488788962364, + -0.0032106705475598574, + 0.005656803492456675, + 0.016063006594777107, + -0.01251833327114582, + -0.0032126011792570353, + 0.011359943076968193, + -0.027739575132727623, + -0.006552624981850386, + 0.011931415647268295, + 0.00867247860878706, + 0.01816355250775814, + 0.0011554938973858953, + 0.02832649275660515, + -0.013892955146729946, + 0.013746226206421852, + 0.006266889162361622, + 0.016665369272232056, + 0.004649004433304071, + -0.0023920750245451927, + -0.012750010937452316, + 0.017684752121567726, + -0.008178232237696648, + -0.012062699533998966, + 0.016727149486541748, + 0.0015001147985458374, + -0.017669307067990303, + -0.015259855426847935, + 0.011213213205337524, + -0.02004786767065525, + 0.0025503882206976414, + 0.022719886153936386, + -0.009074053727090359, + 0.011437169276177883, + 0.008294071070849895, + -0.00935979001224041, + -0.004463662393391132, + 0.011475781910121441, + -0.015908554196357727, + 0.0021719809155911207, + 0.0048613762483000755, + -0.006332531105726957, + 0.024959439411759377, + -0.006286195479333401, + -0.009954430162906647, + -0.012479719705879688, + 0.013514548540115356, + -0.003257006173953414, + -0.0037879347801208496, + 0.0020349049009382725, + -0.003811102593317628, + -0.009352067485451698, + 0.001133291400037706, + 0.0267510823905468, + -0.01978529803454876, + 0.0013340789591893554, + -0.009869481436908245, + -0.013167031109333038, + 0.004911573138087988, + -0.010139772668480873, + -0.009521964937448502, + 0.006529457401484251, + 0.00956057757139206, + -0.004104561172425747, + -0.002085101790726185, + -0.0033882902935147285, + 0.01510540395975113, + 0.00012778487871401012, + -0.018426120281219482, + 0.010193830356001854, + 0.008842376060783863, + -0.013035747222602367, + 0.010718967765569687, + 0.008996827527880669, + -0.010765302926301956, + -0.0147501640021801, + 0.007896357215940952, + 0.0170978344976902, + 0.009730475023388863, + 0.006066101603209972, + -0.0009160932968370616, + -0.001836047857068479, + 0.010688076727092266, + 0.0047841500490903854, + 0.02568536438047886, + -0.008865543641149998, + 0.01703605242073536, + -0.0024287572596222162, + -0.007591314613819122, + 0.006622128654271364, + -0.02273533120751381, + -0.0027685516979545355, + 0.012387048453092575, + -0.0032261156011372805, + -0.002345739398151636, + -0.006695493124425411, + 0.004266736097633839, + 0.012533778324723244, + 0.007270826958119869, + 0.012773178517818451, + 0.017283177003264427, + -0.006784303113818169, + 0.012734565883874893, + 0.022271975874900818, + 0.0021623277571052313, + 0.01269595231860876, + -0.007239936385303736, + -0.023523036390542984, + 0.014665215276181698, + -0.020171428099274635, + 0.02477409690618515, + 0.01698971726000309, + 0.005181863903999329, + 0.015298468060791492, + -0.0030291895382106304, + -0.006896280683577061, + -0.009444738738238811, + -0.001022279029712081, + 0.00019209964375477284, + -0.002596723847091198, + 0.005587300285696983, + 0.01978529803454876, + 0.040219295769929886, + 0.0028264711145311594, + -0.004876821301877499, + -0.008927324786782265, + 0.00549462903290987, + -0.007232213858515024, + -0.004452078137546778, + 0.009514241479337215, + 0.008286348544061184, + 0.006830638740211725, + 0.005903926678001881, + 0.015452920459210873, + 0.008170509710907936, + -0.001034828252159059, + 0.01017066277563572, + -0.00048507575411349535, + -0.022040298208594322, + -0.014680660329759121, + -0.01964629255235195, + -0.004683756269514561, + 0.006927171256393194, + 0.003973277285695076, + -0.015746379271149635, + -0.007865467108786106, + 9.339518146589398e-5, + 0.0277241300791502, + 0.008463968522846699, + 0.016155676916241646, + -0.02630317211151123, + -0.015692321583628654, + 0.013800283893942833, + -0.018796805292367935, + 0.012193983420729637, + -0.005818978417664766, + -0.005409680772572756, + 0.001684491871856153, + 0.006069962866604328, + -0.013491380028426647, + 0.009776810184121132, + 0.039601486176252365, + -0.010162940248847008, + 0.005907788407057524, + 0.030179915949702263, + 0.0017848856514319777, + 0.00024362385738641024, + -0.03360874950885773, + 0.006309363525360823, + -0.007969722151756287, + 0.004621975589543581, + -0.030195361003279686, + 0.0031083461362868547, + 0.014410370029509068, + -0.006162634119391441, + 0.001187349553219974, + 0.0015116987051442266, + -0.023476701229810715, + 0.007309440057724714, + -0.0036083844024688005, + 0.018101772293448448, + 0.000559405772946775, + -0.002127575920894742, + 0.011004703119397163, + -0.020928243175148964, + 0.024851324036717415, + -0.02238009124994278, + -0.006394311785697937, + -0.0007988063152879477, + -0.0029558248352259398, + -0.007193600758910179, + -0.0035427422262728214, + -0.00394431734457612, + -0.01543747540563345, + -0.012904462404549122, + -0.006019765976816416, + -0.0015551383839920163, + -0.007977444678544998, + 0.0005058302194811404, + -0.013213367201387882, + 0.002293611876666546, + -0.0015078374417498708, + 0.004023474175482988, + 0.019260162487626076, + -0.0008161821751855314, + -0.017947319895029068, + -0.004428910557180643, + 0.007892495952546597, + -0.013553161174058914, + 0.004108422435820103, + -0.014587989076972008, + 0.016974272206425667, + -0.00494632450863719, + 0.011120542883872986, + -0.020835572853684425, + -0.018688689917325974, + 0.0019518869230523705, + -0.013947013765573502, + 0.009962152689695358, + 0.004521581809967756, + -0.006529457401484251, + 0.010556792840361595, + 0.011290439404547215, + 0.008016057312488556, + -0.015591926872730255, + 0.0007032391731627285, + 0.022673550993204117, + -0.010873419232666492, + -0.01739129237830639, + -0.002581278793513775, + -0.0009431223734281957, + -0.012603281065821648, + -0.0051664188504219055, + 0.01332920603454113, + -0.0318479984998703, + 0.013923846185207367, + -0.005093053914606571, + -0.004826624412089586, + -0.0060081821866333485, + 0.0055679939687252045, + -0.005618190858513117, + 0.018348895013332367, + -0.0024596478324383497, + -0.011553008109331131, + 0.0031971558928489685, + -0.015190351754426956, + 0.01142172422260046, + -0.01536024920642376, + 0.013344651088118553, + -0.0170978344976902, + -0.01831800490617752, + 0.004143174272030592, + -0.026565739884972572, + 0.020974578335881233, + -0.010332837700843811, + -0.020526668056845665, + -0.037778954952955246, + 0.014649770222604275, + 0.004355545621365309, + 0.008425355888903141, + -0.010803915560245514, + -0.0004713198577519506, + 0.0021835649386048317, + 0.0008866508724167943, + -0.011506672017276287, + 0.011684291996061802, + 0.02004786767065525, + -0.023414919152855873, + 0.0019422336481511593, + 0.006583515554666519, + 0.011692014522850513, + 0.0026140997651964426, + -0.00956057757139206, + 0.0012134133139625192, + -0.024635091423988342, + -0.015530146658420563, + 0.023584816604852676, + 0.00662598991766572, + 0.00709706824272871, + -1.564127887832001e-5, + 0.011166878044605255, + -0.0025330125354230404, + -0.009375235065817833, + -0.007425278890877962, + -0.0013726919423788786, + -0.019522730261087418, + -0.009174447506666183, + -0.015012732706964016, + -0.02721443772315979, + 0.014950951561331749, + 0.003175918711349368, + -0.0073403301648795605, + -0.007961999624967575, + -0.0184724573045969, + 0.000410987064242363, + -0.009043163619935513, + -0.004154758062213659, + 0.013344651088118553, + -0.0007032391731627285, + 0.00862614344805479, + 0.0023708378430455923, + 0.008348129689693451, + 0.009931262582540512, + -0.00278592761605978, + 0.00700825871899724, + 0.01912115514278412, + 0.0014325421070680022, + 0.0030195361468940973, + -0.027183547616004944, + -0.01871958002448082, + -0.02563902921974659, + 0.003876744769513607, + -0.00839446485042572, + -0.009043163619935513, + 0.02559269219636917, + -0.016310129314661026, + 0.000897752121090889, + 0.004830485675483942, + 0.0031430977396667004, + -0.009660971350967884, + -0.016881601884961128, + 0.01122093666344881, + 0.027801355347037315, + -0.014634325169026852, + 0.0022299003321677446, + 0.0028206792194396257, + -0.00395397050306201, + -0.007158849388360977, + 0.003753183176741004, + 0.002845777664333582, + 0.002749245148152113, + 0.0014808083651587367, + -0.007433001417666674, + 4.902040382148698e-5, + 0.013344651088118553, + -0.030905840918421745, + -0.021190810948610306, + -0.02055755816400051, + 0.005475322715938091, + 0.005981152877211571, + -0.007826854474842548, + 0.0005420299130491912, + -0.0018061228329315782, + -0.013151586055755615, + -0.00023940057144500315, + 0.012255764566361904, + -0.01943005807697773, + 0.021376153454184532, + -0.0214224886149168, + 0.022596323862671852, + -0.0016806306084617972, + 0.03518415987491608, + -0.01698971726000309, + 0.010927477851510048, + 0.003409527475014329, + 0.009321177378296852, + -0.0010599266970530152, + -0.0071472651325166225, + 0.013576328754425049, + -0.010626296512782574, + 0.009429293684661388, + 0.000751505431253463, + -0.018101772293448448, + -0.01251833327114582, + 0.010263334028422832, + 0.014309976249933243, + -0.008896433748304844, + -0.009583745151758194, + -0.0345972441136837, + -0.014572544023394585, + -0.02228742092847824, + 0.0007490920834243298, + 0.018348895013332367, + 0.002689395099878311, + 0.011444891802966595, + -0.01401651743799448, + -0.013445044867694378, + -0.015290745534002781, + 0.007100929506123066, + -0.023692933842539787, + 0.003438487183302641, + 0.024943994358181953, + 0.027152657508850098, + 0.008000612258911133, + 0.020928243175148964, + 0.004158619325608015, + -0.0037589750718325377, + -0.009367512539029121, + -0.009931262582540512, + 0.011869634501636028, + 0.012217151932418346, + 0.018503347411751747, + -0.02156149595975876, + -0.021839510649442673, + -0.002915281103923917, + 0.005957985296845436, + 0.009962152689695358, + -0.024279851466417313, + 0.001271332846954465, + 0.005730168428272009, + 0.01674259454011917, + 0.0008533471846021712, + 0.02080468088388443, + 0.00862614344805479, + 0.006228276062756777, + -0.004324655514210463, + 0.007931109517812729, + -0.01637190952897072, + 0.0028766680043190718, + 0.008000612258911133, + -0.01617112196981907, + 0.0039809998124837875, + -0.0031276524532586336, + -0.0040775323286652565, + 0.004023474175482988, + -0.00941384769976139, + 0.01566915400326252, + -0.006892419420182705, + -0.0035292278043925762, + -0.023924611508846283, + -0.0008610697695985436, + 0.01549153309315443, + -0.0053556221537292, + -0.004486829973757267, + -0.026797417551279068, + -0.004645143169909716, + 0.009460183791816235, + -0.007884773425757885, + 0.006915587466210127, + 0.008927324786782265, + -0.011970028281211853, + 0.001146805938333273, + -0.006749551277607679, + 0.010695799253880978, + 0.005035134498029947, + 0.01617112196981907, + -0.023214131593704224, + 0.012193983420729637, + 0.010209275409579277, + -0.0036354134790599346, + 0.01131360698491335, + -0.016866156831383705, + 0.001366900047287345, + -0.0041161454282701015, + -0.022519098594784737, + -0.009985320270061493, + 0.01922927051782608, + 0.0007635719957761467, + 0.0013418016023933887, + -0.007108652498573065, + -0.011746073141694069, + 0.0050698863342404366, + -0.020325880497694016, + 0.009460183791816235, + -0.007695569656789303, + -0.008016057312488556, + 0.030658718198537827, + 0.00788863468915224, + 0.012054977007210255, + -0.005150973331183195, + -0.022102078422904015, + -0.022271975874900818, + 0.012587836012244225, + 0.01024788897484541, + -0.005100776441395283, + -0.022395536303520203, + 0.015939444303512573, + -0.017978210002183914, + 0.005857591517269611, + -0.0003991618286818266, + 0.008842376060783863, + 0.012371603399515152, + 0.013993348926305771, + 0.007726460229605436, + 0.014279085211455822, + 0.0004923156811855733, + 0.005525519605726004, + -0.005513935815542936, + 0.010263334028422832, + -0.023275913670659065, + -0.001959609566256404, + 0.02136070840060711, + -0.00887326616793871, + -0.0012124479981139302, + 0.022982453927397728, + 0.01978529803454876, + 0.013576328754425049, + 0.02044944278895855, + -0.005208893213421106, + -0.010008487850427628, + -0.008533472195267677, + 0.02208663336932659, + -0.0133755411952734, + 0.0012327198637649417, + -0.009143557399511337, + 0.0064252023585140705, + -0.008054670877754688, + -0.013406431302428246, + -0.009738197550177574, + -0.0010193830821663141, + -0.02040310576558113, + -0.0452544279396534, + 0.0030774555634707212, + -0.008525749668478966, + -0.002689395099878311, + -0.006197385489940643, + 0.001948025543242693, + -0.008108728565275669, + -0.021808618679642677, + 0.012456552125513554, + -0.009630081243813038, + 0.009521964937448502, + -0.024326186627149582, + 0.0003064906341023743, + -0.02346125617623329, + -0.013823452405631542, + 0.02208663336932659, + 0.003589077852666378, + 0.00827090349048376, + -0.016603587195277214, + -0.004378713667392731, + -0.004788011312484741, + -0.010062546469271183, + 0.004069809801876545, + -0.00788863468915224, + 0.010896586813032627, + -0.005004243925213814, + 0.0011226728092879057, + 0.0044211880303919315, + -0.009977597743272781, + -0.019553620368242264, + 0.00188914081081748, + -0.010155217722058296, + -0.0010319323046132922, + -0.004224261734634638, + 0.011985473334789276, + 0.014649770222604275, + 0.0010695799719542265, + -0.005757197737693787, + -0.011707459576427937, + 0.0060236272402107716, + 0.015398861840367317, + -0.0020194596145302057, + -0.002762759802863002, + 0.0004423601203598082, + -0.006834500003606081, + 0.0018968633376061916, + 0.017993655055761337, + 0.004537026863545179, + 0.00826318096369505, + -0.011738350614905357, + -0.004367129877209663, + -0.0069387550465762615, + -0.005170280113816261, + -0.013499102555215359, + 0.0013080151984468102, + -0.022596323862671852, + 0.01663447730243206, + -0.03336162865161896, + 2.3695709387538955e-5, + -0.010981535539031029, + 0.0059116496704518795, + -0.008657033555209637, + -0.016758039593696594, + -0.017514854669570923, + 0.007154988124966621, + -0.006062240339815617, + -0.0034423484466969967, + 0.02726077474653721, + 0.005610468331724405, + 0.026843754574656487, + 0.0024538557045161724, + -0.007904079742729664, + -0.0034307646565139294, + 0.03001002036035061, + -0.016217457130551338, + -0.016310129314661026, + 0.0013697959948331118, + -0.015144016593694687, + 0.008757427334785461, + 0.006112437229603529, + 0.00888098869472742, + -0.001807088148780167, + 0.02111358568072319, + -0.005185725167393684, + -0.01269595231860876, + -0.021963071078062057, + -0.0020387661643326283, + 0.00419723242521286, + -0.010023933835327625, + -0.02605604939162731, + 0.020742900669574738, + 0.008919601328670979, + 0.0023418781347572803, + 0.008896433748304844, + 0.006112437229603529, + 0.0028650842141360044, + -0.011035594157874584, + -0.009298008866608143, + 0.010556792840361595, + -0.0061201597563922405, + -0.009514241479337215, + -0.015275300480425358, + -0.015584204345941544, + 0.02787858247756958, + 0.014456705190241337, + -0.006031349766999483, + -0.029067862778902054, + 0.0010377241997048259, + 0.004235845524817705, + 0.03830409049987793, + 0.04312299191951752, + 0.011089651845395565, + 0.009908094070851803, + -0.00384006230160594, + 0.0007988063152879477, + 0.03950881585478783, + 0.00016108858108054847, + -0.0032917577773332596, + 0.012865849770605564, + 0.02273533120751381, + -0.013275147415697575, + -0.015275300480425358, + -0.009143557399511337, + -0.023646598681807518, + 0.006096991710364819, + -0.0010425508953630924, + -0.01571548916399479, + -0.0025735560338944197, + -0.006124021019786596, + -0.013892955146729946, + -0.010263334028422832, + 0.01759207993745804, + 0.005351760890334845, + 0.012502887286245823, + 0.015290745534002781, + -0.0005236887373030186, + 0.00505057955160737, + 0.006776580587029457, + -0.01648002676665783, + -0.013753948733210564, + -5.306270031724125e-5, + -0.01482739020138979, + 0.012811792083084583, + -0.0018476317636668682, + -0.03133830800652504, + -0.030859505757689476, + 0.006707077380269766, + -0.012394770979881287, + 0.007409833837300539, + -0.0029886458069086075, + -0.0072669656947255135, + 0.014024239964783192, + 0.01462660264223814, + 0.03286737948656082, + 0.0157232116907835, + 0.0035948697477579117, + -0.009753642603754997, + -0.029623890295624733, + -0.008541194722056389, + 0.003660511923953891, + -0.006556486710906029, + -0.011823299340903759, + 0.007521811407059431, + 0.018024545162916183, + -0.01045639906078577, + 0.02187040075659752, + -0.0010319323046132922, + 0.008000612258911133, + -0.01856512762606144, + -0.012186260893940926, + 0.0076106213964521885, + 0.008811485022306442, + 0.006757274270057678, + 0.024496084079146385, + 0.03138464316725731, + -0.014781054109334946, + -0.013591773808002472, + -0.01010115910321474, + -0.0027087016496807337, + -0.01973896287381649, + 0.009274841286242008, + -3.553602073225193e-5, + 0.014649770222604275, + -0.007815269753336906, + -0.003243491519242525, + -0.024743206799030304, + 0.004340100567787886, + 0.011885079555213451, + 0.004618114326149225, + -0.008178232237696648, + 0.0068036094307899475, + 0.013221089728176594, + 0.008695646189153194, + -0.015414307825267315, + 0.013823452405631542, + 0.0024248959962278605, + 0.0029596860986202955, + 0.006413618568331003, + -0.009328899905085564, + 0.007961999624967575, + 0.0062514436431229115, + 0.011475781910121441, + -0.00851802621036768, + -0.018688689917325974, + -0.00474553694948554, + 0.017422182485461235, + -0.005614329595118761, + 0.012471997179090977, + 0.01683526486158371, + 0.006645296234637499, + -0.004363268613815308, + 0.001352420193143189, + 0.00888098869472742, + 0.0014055130304768682, + -0.0038999123498797417, + -0.0006824847077950835, + 0.0019277537940070033, + 0.0036392747424542904, + -0.014734718948602676, + 0.011506672017276287, + 0.006019765976816416, + -0.019599955528974533, + -0.013599496334791183, + 0.0071742944419384, + 0.021345263347029686, + -0.012556945905089378, + 0.012533778324723244, + 0.00480731762945652, + 0.009050886146724224, + 0.007510227616876364, + 0.016773484647274017, + -0.01963084563612938, + 0.005170280113816261, + -0.018997592851519585, + 0.02605604939162731, + 0.01861146278679371, + 0.010695799253880978, + 0.0031836414709687233, + 0.023260468617081642, + -0.018379785120487213, + 0.0014055130304768682, + 0.011151432991027832, + 0.023878276348114014, + 0.00300795235671103, + -0.002554249484091997, + 0.005927094724029303, + 0.010672631673514843, + -0.007923386059701443, + -0.0009773913770914078, + 0.01623290218412876, + -0.013869787566363811, + 0.0011690084356814623, + -0.0413004606962204, + 0.020974578335881233, + 0.0010193830821663141, + -0.006919448729604483, + -0.013213367201387882, + 0.004108422435820103, + 0.005649080965667963, + 0.027785910293459892, + -0.027693239971995354, + 0.01030194666236639, + 0.012850404717028141, + -0.01528302300721407, + -0.01774653233587742, + -0.010464121587574482, + -0.02242642641067505, + -0.013167031109333038, + 0.005834423471242189, + -0.004834346938878298, + 0.008463968522846699, + 0.0032241849694401026, + -0.002291681244969368, + -0.009228506125509739, + -0.012618727050721645, + -0.029237760230898857, + -0.006324808578938246, + -0.018132662400603294, + 0.010618573985993862, + 0.004166342318058014, + -0.0008340406930074096, + -0.013197921216487885, + 0.012626449577510357, + 0.007954277098178864, + 0.010827084071934223, + -0.002446133177727461, + -0.024696871638298035, + 0.010062546469271183, + -0.017128724604845047, + -0.011692014522850513, + -0.007444585207849741, + -0.01009343657642603, + 0.005861452780663967, + 0.00018775569333229214, + -0.028264712542295456, + -0.0018524584593251348, + 0.008541194722056389, + 0.002841916400939226, + -0.02171594835817814, + 0.0015908554196357727, + 0.0010937131009995937, + -0.010054823942482471, + -0.014503040350973606, + 0.014418092556297779, + -0.002650782000273466, + -0.006405896041542292, + -0.01776197738945484, + 0.008425355888903141, + 0.004104561172425747, + 0.02268899604678154, + -0.0003612728323787451, + -0.005046718288213015, + 0.05569538474082947, + 0.007293994538486004, + 0.01581588201224804, + 0.016186567023396492, + -0.014070575125515461, + -0.006124021019786596, + 0.017561189830303192, + -0.0022279697004705667, + 0.006139466073364019, + -0.010440954007208347, + 0.0007071004365570843, + 0.0033052724320441484, + -0.0009556715958751738, + 0.0143485888838768, + -0.002874737372621894, + -0.007409833837300539, + -0.02339947409927845, + 0.022040298208594322, + -0.017638415098190308, + 0.015020455233752728, + -0.008703368715941906, + 0.006201246753334999, + -0.019321942701935768, + 0.0045177205465734005, + -0.002814887324348092, + 0.007819131016731262, + -0.012495164759457111, + -0.01674259454011917, + 0.011506672017276287, + -0.003285965882241726, + -0.0019644361454993486, + -0.033145394176244736, + 0.02156149595975876, + -0.009684138931334019, + -0.009676416404545307, + 0.0028921132907271385, + 0.018997592851519585, + -0.015584204345941544, + -0.010286501608788967, + 0.0017501339316368103, + 0.01867324486374855, + 0.003270520595833659, + -0.01146805938333273, + -0.01317475363612175, + 0.020171428099274635, + 0.029067862778902054, + 0.008734259754419327, + -0.01836434006690979, + -0.008070115931332111, + -0.02645762450993061, + -0.0024615784641355276, + -0.014410370029509068, + -0.005691555328667164, + -0.0058151171542704105, + 0.013838897459208965, + -0.015337081626057625, + -0.00798516720533371, + -0.022812556475400925, + -0.012950798496603966, + -0.009738197550177574, + 0.0036971941590309143, + 0.007869328372180462, + -0.010162940248847008, + 0.008587529882788658, + -0.012634172104299068, + -0.014418092556297779, + 0.011962305754423141, + 0.006012043450027704, + 0.05300791934132576, + 0.005371067672967911, + 0.014364033937454224, + -0.018132662400603294, + 0.008850098587572575, + -0.009977597743272781, + 0.006795886904001236, + -0.010996980592608452, + -0.019136600196361542, + -0.006174217909574509, + -5.426935604191385e-5, + -0.0222256388515234, + 0.023214131593704224, + 0.011553008109331131, + -0.01215537078678608, + 0.00984631385654211, + 0.002502121962606907, + -0.010433231480419636, + -0.014804222621023655, + 0.013491380028426647, + -0.003654720028862357, + 0.0016729079652577639, + 0.0020329742692410946, + -0.023538481444120407, + 0.013089804910123348, + 0.002996368333697319, + 0.002841916400939226, + -0.00745230820029974, + 0.013916123658418655, + -0.009946707636117935, + 0.01627923920750618, + 0.001957678934559226, + -0.028805293142795563, + 0.012935353443026543, + 0.006220553535968065, + 0.01203180942684412, + -0.012248042039573193, + 0.023569371551275253, + 0.010471844114363194, + -0.00474553694948554, + -0.018642354756593704, + -0.00478028878569603, + 0.005699277855455875, + -0.012309822253882885, + -0.009993042796850204, + -0.002170050283893943, + 0.001364969415590167, + 0.01488144788891077, + 0.007263104431331158, + 3.770800321944989e-5, + -0.0010251749772578478, + 0.007857744581997395, + -0.013190198689699173, + 0.005649080965667963, + -0.018580572679638863, + 0.0022125246468931437, + 0.011414000764489174, + -0.01350682508200407, + -0.0085489172488451, + -0.0021063389722257853, + 0.012109034694731236, + -0.00900455005466938, + 0.015638262033462524, + 0.02828015759587288, + -0.015653708949685097, + 0.005683832801878452, + -0.004911573138087988, + 0.006645296234637499, + 0.0014730857219547033, + 0.0029365182854235172, + 0.027847692370414734, + -0.0028882520273327827, + -0.014124633744359016, + -0.004069809801876545, + -0.020387660712003708, + -0.014479872770607471, + -0.02248820848762989, + -0.025731699541211128, + -0.01765386201441288, + 0.006448369938880205, + 0.0030446345917880535, + -0.004575639963150024, + 0.008842376060783863, + -0.008996827527880669, + 0.002978992648422718, + -0.0107112443074584, + -0.0006071893149055541, + -0.005965707823634148, + 0.014124633744359016, + 0.004027335438877344, + -0.02115992084145546, + -0.004305348731577396, + -0.005513935815542936, + 0.006934893783181906, + -0.0006583515787497163, + 0.0028959745541214943, + -0.011282716877758503, + -0.014302252791821957, + 0.013568606227636337, + 0.016758039593696594, + -0.001891071442514658, + 0.00831723865121603, + 0.013908401131629944, + 0.0033496771939098835, + -0.013468212448060513, + -0.030303478240966797, + -0.009097221307456493, + -0.008309516124427319, + -0.014209582470357418, + 0.025206562131643295, + -0.011923693120479584, + 0.009274841286242008, + -0.013267424888908863, + 0.011730628088116646, + 0.021329818293452263, + 0.010549070313572884, + 0.020588448271155357, + -0.0075488402508199215, + 0.0103251151740551, + 0.0014006863348186016, + -0.01881225034594536, + 0.0129739660769701, + 0.03155453875660896, + -0.0019084472442045808, + 0.013336928561329842, + 0.025113891810178757, + -0.0025581109803169966, + 0.025561802089214325, + 0.0011699737515300512, + -0.025963377207517624, + 0.00607768539339304, + -0.007012119982391596, + -0.009074053727090359, + -0.015862219035625458, + 0.014533931389451027, + -0.0094370162114501, + 0.001517490716651082, + -0.0029577554669231176, + 0.022704441100358963, + -0.008525749668478966, + -0.010054823942482471, + 0.05319325998425484, + 0.005602745339274406, + 0.00819367729127407, + -0.005548687186092138, + 0.007471614517271519, + -0.009699583984911442, + 0.006297779269516468, + -0.0023940056562423706, + 0.03098306618630886, + -0.020325880497694016, + -0.020125092938542366, + -0.0044945525005459785, + -0.003876744769513607, + -0.006533318664878607, + 0.012958521023392677, + -0.011776963248848915, + 0.006475399248301983, + -0.018843142315745354, + 0.008958214893937111, + 0.013290592469274998, + -0.015653708949685097, + 0.0003229011781513691, + 0.01678892970085144, + 0.006336392369121313, + -0.017283177003264427, + -0.0046876175329089165, + 0.009344344958662987, + 0.015198074281215668, + -0.0028052341658622026, + -0.005421264562755823, + 0.003092900849878788, + 0.014163246378302574, + 0.013900677673518658, + -0.0004428427782841027, + 0.008054670877754688, + 0.006436786148697138, + -0.00625916663557291, + -0.0161247868090868, + 0.0012790554901584983, + 0.011522118002176285, + 0.025361014530062675, + 0.017329512163996696, + -0.0025851400569081306, + -0.006174217909574509, + 0.02386283129453659, + -0.005587300285696983, + 0.012317545711994171, + -0.0006771754124201834, + 0.009707306511700153, + 0.021916735917329788, + 0.029639335349202156, + -0.019043929874897003, + -0.026009712368249893, + -0.009498796425759792, + 0.008131897076964378, + -0.005019689444452524, + -0.005552548449486494, + -0.027399780228734016, + 0.01244110707193613, + 0.0045524719171226025, + 0.008641588501632214, + -0.003220323706045747, + 0.008000612258911133 + ], + "1dc50e96-2e03-4a1c-878a-2124b61040aa": [ + -0.006768013350665569, + -0.030042989179491997, + -0.0027465266175568104, + -0.0023374271113425493, + -0.006648858543485403, + -0.03250553086400032, + 0.0189377274364233, + 0.028104731813073158, + -0.018365783616900444, + 0.05894209071993828, + -0.009031961672008038, + 0.010382386855781078, + -0.0073240711353719234, + -0.018032148480415344, + 0.01525186188519001, + 0.051252610981464386, + -0.017047133296728134, + 0.016808822751045227, + -0.02257593162357807, + -0.017809726297855377, + 0.05608236417174339, + -0.02221052348613739, + -0.060785021632909775, + 0.02754867449402809, + 0.0033701052889227867, + 0.011097317561507225, + -0.007578268647193909, + 0.015339242294430733, + -0.02057412639260292, + -0.003783176653087139, + 0.024402977898716927, + 0.030297188088297844, + 0.0035925284028053284, + 0.012535124085843563, + 0.015045326203107834, + -0.026627207174897194, + 0.0014050380559638143, + -0.010048752650618553, + -0.033649418503046036, + 0.010136133059859276, + -0.008912806399166584, + 0.03717641159892082, + 0.009190835058689117, + -0.013837886974215508, + -0.030408399179577827, + 0.011287965811789036, + -0.012614560313522816, + -0.020478801801800728, + 0.0013335449621081352, + -0.0064780693501234055, + 0.009778667241334915, + -0.006664745509624481, + 0.04009968414902687, + 0.01822279766201973, + 0.02951870672404766, + -0.003797078039497137, + 0.03444378823041916, + 0.025054359808564186, + -0.002957034157589078, + -0.06844272464513779, + 0.0138934925198555, + -0.019938630983233452, + 0.02982056699693203, + -0.0010128188878297806, + 0.0176031906157732, + -0.02281424216926098, + 0.000573434226680547, + 0.008269368670880795, + -0.043880876153707504, + 0.005933927372097969, + 0.04308651015162468, + 0.03933709114789963, + -0.04403974860906601, + 0.022417059168219566, + -0.01227298192679882, + -0.01228092610836029, + 0.03615961968898773, + -0.0004128230211790651, + 0.012781377881765366, + -0.012463630177080631, + -0.014950001612305641, + 0.007868212647736073, + 0.0028001463506370783, + 0.0026452448219060898, + 0.07632285356521606, + 0.03080558218061924, + -0.03507928177714348, + -0.04944144934415817, + 0.023767484351992607, + -0.013154730200767517, + -0.012161770835518837, + 0.004460375290364027, + 0.00695866160094738, + 0.021686241030693054, + -0.00828525610268116, + 0.008324974216520786, + 0.043563127517700195, + -0.02190866321325302, + 0.003165555652230978, + -0.0042578112334012985, + 0.03841562569141388, + 0.02516557089984417, + 0.0012332559563219547, + 0.011303853243589401, + 0.0042578112334012985, + -0.016491075977683067, + 0.018381670117378235, + -0.010668359696865082, + -0.03140930086374283, + 0.04114825278520584, + -0.006569421384483576, + -0.013615463860332966, + 0.013456590473651886, + -0.0033323727548122406, + -0.04585091024637222, + -0.04403974860906601, + -0.02514968439936638, + -0.04343603178858757, + -0.00579888466745615, + -0.04213326796889305, + 0.041561324149370193, + 0.013218279927968979, + -0.006041166838258505, + -0.017301330342888832, + -0.021416155621409416, + 0.01192346028983593, + 0.012392137199640274, + 0.015315410681068897, + 0.032600853592157364, + 0.019986294209957123, + -0.02057412639260292, + -0.02522912062704563, + -0.005691645201295614, + 0.005508940666913986, + 0.015664933249354362, + 0.012797265313565731, + -0.029693467542529106, + 0.039877261966466904, + -0.03603252395987511, + 0.03606429696083069, + -0.05207875370979309, + -0.03374474495649338, + -0.005083953961730003, + 0.008324974216520786, + 0.023259088397026062, + 0.030233638361096382, + -0.05404878407716751, + 0.05566929280757904, + -0.034316688776016235, + 0.01344070304185152, + -0.07181084901094437, + -0.012153826653957367, + 0.005115728359669447, + 0.020478801801800728, + -0.01391732320189476, + -0.02518145926296711, + -0.009707174263894558, + 0.019779758527874947, + 0.011701037175953388, + 0.024259991943836212, + 0.004017515107989311, + -0.08356749266386032, + 0.0005942864227108657, + -0.0004066170076839626, + 0.055796392261981964, + 0.02751689963042736, + 0.07854708284139633, + 0.03736706078052521, + -0.05137970671057701, + 0.010024921037256718, + 0.00035399015177972615, + -0.026722531765699387, + 0.027056166902184486, + 0.010477711446583271, + -0.02880377508699894, + 0.007570324931293726, + 0.015140649862587452, + 0.061070993542671204, + 0.01860409416258335, + -0.031028006225824356, + -0.043563127517700195, + -0.011264135129749775, + 0.010700133629143238, + 0.018016261979937553, + 0.027040278539061546, + 0.030757920816540718, + 0.021622691303491592, + 0.010684247128665447, + 0.008388523943722248, + -0.012614560313522816, + 0.005377870053052902, + -0.03600074723362923, + -0.01989096961915493, + 0.024434752762317657, + -0.015045326203107834, + -0.04102115333080292, + -0.0021666381508111954, + 0.02027226611971855, + 0.019700320437550545, + 0.0332045741379261, + -0.012447742745280266, + -0.052491821348667145, + -0.02883554995059967, + 0.032950375229120255, + -0.023783370852470398, + 0.03650914505124092, + -0.02615058794617653, + -0.009294102899730206, + 0.03650914505124092, + -0.05541509762406349, + 0.025991713628172874, + -0.043563127517700195, + -0.01890595257282257, + -0.02182922698557377, + -0.014036478474736214, + 0.0021467788610607386, + -0.013702844269573689, + 0.009309990331530571, + -0.012074390426278114, + -0.017317216843366623, + -0.02222640998661518, + 0.026627207174897194, + -0.010938444174826145, + -0.0377165824174881, + -0.042228590697050095, + -0.016379863023757935, + -0.03051961027085781, + 0.007399535737931728, + -0.029391607269644737, + 0.02287779189646244, + 0.011073486879467964, + 0.0014944043941795826, + 0.009159060195088387, + -0.008293199352920055, + -0.017126569524407387, + 0.004913164768368006, + 0.05309554189443588, + 0.009778667241334915, + -0.0025638220831751823, + 0.011979065835475922, + -0.008380579762160778, + 0.019001277163624763, + 0.0034495422150939703, + 0.003604443743824959, + 0.017078908160328865, + 0.027771098539233208, + -0.002780287293717265, + 0.039273541420698166, + 0.013107068836688995, + -0.024021681398153305, + 0.0037871485110372305, + 0.028676677495241165, + 0.0062635899521410465, + -0.018985390663146973, + -0.039877261966466904, + 0.06914177536964417, + 0.02356094866991043, + -0.043912652879953384, + -0.012312700971961021, + -0.014100028201937675, + 0.0028954704757779837, + -0.005985561292618513, + 0.021034859120845795, + 0.0036183453630656004, + 0.03339522331953049, + -0.021384380757808685, + 0.015013551339507103, + -0.019334912300109863, + 0.013305660337209702, + 0.03936886787414551, + 0.0029987383168190718, + 0.00463910773396492, + -0.012876701541244984, + -0.0012987913796678185, + 0.0001100944064091891, + -0.0030722173396497965, + -0.004734431859105825, + 0.012161770835518837, + 0.014997663907706738, + 0.019128376618027687, + -0.003745444118976593, + -0.00977072399109602, + -0.0029133439529687166, + 0.021289056167006493, + 0.006863337475806475, + -0.021765677258372307, + -0.021146070212125778, + 0.019033052027225494, + -0.05871966481208801, + 0.0037136694882065058, + 0.0071095917373895645, + -0.01324211061000824, + 0.03172704949975014, + 0.006315223872661591, + 0.018159247934818268, + 0.031870037317276, + -0.03968661278486252, + -0.01823868416249752, + 0.0072922962717711926, + 0.03020186349749565, + -0.014687860384583473, + -0.011629544198513031, + 0.028708452358841896, + -0.0175237525254488, + 0.031298089772462845, + -0.007804663386195898, + 0.046867698431015015, + 0.01425095833837986, + -0.034952182322740555, + 0.03692221641540527, + 0.04683592543005943, + -0.01855643093585968, + -0.02723092772066593, + -0.039972588419914246, + -0.021956326439976692, + -0.01949378475546837, + 0.011987010017037392, + 0.01660228706896305, + -0.017841501161456108, + -0.013710787519812584, + 0.038256753236055374, + 0.0007308183703571558, + -0.07530606538057327, + 0.03307747468352318, + 0.04998162016272545, + -0.012956138700246811, + 0.037684809416532516, + 0.011049656197428703, + -0.055160898715257645, + 0.01622099056839943, + -0.034030716866254807, + -0.020685337483882904, + -0.02586461417376995, + 0.0014477352378889918, + -0.023576835170388222, + -0.04807513952255249, + -0.04340425506234169, + -0.01755552738904953, + 0.018762966617941856, + 0.0009651568834669888, + -0.042292140424251556, + 0.005485109519213438, + 0.03781190514564514, + -0.01827045902609825, + -0.0029411467257887125, + -0.024641288444399834, + 0.017968598753213882, + 0.025340331718325615, + -0.014227126725018024, + -0.00041083709220401943, + 0.0011150938225910068, + -0.0076894802041351795, + 0.02314787730574608, + 0.0028041182085871696, + 0.027961745858192444, + 0.0003467911737971008, + -0.006243730895221233, + -0.012551010586321354, + 0.018381670117378235, + -0.001758531667292118, + 0.010660415515303612, + -0.0099295973777771, + -0.031298089772462845, + 0.0018250599969178438, + -0.008174044080078602, + 0.0010763683822005987, + -0.027103828266263008, + -0.02082832343876362, + 0.01849288120865822, + 0.015275692567229271, + -0.018397558480501175, + 0.007220803294330835, + -0.007832466624677181, + -0.025419769808650017, + -0.019287249073386192, + -0.03317279741168022, + 0.029757017269730568, + -0.003721612971276045, + -0.014322451315820217, + 0.026055263355374336, + 0.0294551569968462, + -0.003348260186612606, + 0.006033223122358322, + 0.009349708445370197, + 0.022623594850301743, + 0.024053456261754036, + -0.0017436372581869364, + -0.017110681161284447, + -0.013964985497295856, + 0.0013395026326179504, + -0.02154325507581234, + 0.009484751150012016, + -0.0317111611366272, + 0.00043218571227043867, + 0.003981768619269133, + 0.005083953961730003, + -0.004635136108845472, + -0.010382386855781078, + 0.03549235314130783, + -0.02615058794617653, + -0.012519236654043198, + -0.02057412639260292, + 0.0009467871277593076, + 0.0034098236355930567, + 0.0107636833563447, + -0.024450641125440598, + -0.00347933080047369, + -0.015188312157988548, + 0.017682626843452454, + -0.01209027785807848, + -0.008189931511878967, + 0.008150213398039341, + 0.0001791051181498915, + -0.013448646292090416, + 0.0590691901743412, + 0.004349163733422756, + 0.0048178406432271, + 0.03746238350868225, + -0.03647736832499504, + -0.01622099056839943, + 0.033268123865127563, + 0.03679511696100235, + 0.005910096224397421, + 0.009572131559252739, + 0.0006444308673962951, + 0.01795271225273609, + 0.02151148021221161, + -0.014552817679941654, + -0.0358736477792263, + -0.03676334023475647, + -0.017825612798333168, + 0.05659076198935509, + 0.00017004435358103365, + 0.005727391690015793, + -0.011534220539033413, + -0.009214666672050953, + 0.017460204660892487, + -0.019160151481628418, + -0.007566353306174278, + 0.0011955235386267304, + -0.018191022798419, + 0.0144336624071002, + -0.006239758804440498, + -0.017793837934732437, + -0.02259181998670101, + -0.011494501493871212, + -0.04334070533514023, + 0.003348260186612606, + 0.007641817908734083, + -0.038924019783735275, + -0.015371016226708889, + 0.01692003384232521, + -0.06456620991230011, + -0.003473373129963875, + 0.0054175881668925285, + 0.00190251087769866, + -0.01440188754349947, + 0.0007730191573500633, + 0.019430236890912056, + -0.06259617954492569, + -0.020002180710434914, + -0.022353509441018105, + 0.011796361766755581, + 0.0007581247482448816, + 0.017825612798333168, + -0.03581009805202484, + 0.012487461790442467, + 0.012010840699076653, + 0.007733170408755541, + 0.008777763694524765, + -0.0040274448692798615, + -0.02549920603632927, + -0.03250553086400032, + -0.006851422134786844, + 0.0020027998834848404, + -0.010811345651745796, + -0.0176031906157732, + 0.004651023540645838, + 0.013710787519812584, + -0.035619452595710754, + -0.01209027785807848, + -0.007478972896933556, + -0.0019402432953938842, + 0.001974003855139017, + 0.004297529812902212, + -0.0017317218007519841, + 0.020732998847961426, + -0.04013146087527275, + 0.0018419403349980712, + -0.01357574574649334, + 0.033013924956321716, + -0.00992165319621563, + -0.007034126669168472, + 0.004333276301622391, + 0.006207984406501055, + -0.05404878407716751, + -0.00895252451300621, + -0.02221052348613739, + -0.015990624204277992, + 0.010263231582939625, + 0.015108874998986721, + -0.02781875990331173, + -0.006950717885047197, + 0.004821812268346548, + -0.019970405846834183, + 0.02081243507564068, + -0.008531509898602962, + 0.015267748385667801, + -0.010644528083503246, + 0.0001820839970605448, + -0.02713560312986374, + -0.00310200615786016, + -0.010700133629143238, + 0.010549204424023628, + -0.010016977787017822, + 0.03600074723362923, + -0.012892588973045349, + -0.0025519065093249083, + 0.02583284117281437, + -0.008372636511921883, + -0.017825612798333168, + -0.011470670811831951, + -0.010326781310141087, + -0.0031317949760705233, + -0.022003987804055214, + 0.009222609922289848, + 0.004674854222685099, + -0.02259181998670101, + 0.043944425880908966, + -0.026357123628258705, + -0.00961185060441494, + 0.014457494020462036, + -0.013988817110657692, + 0.016062116250395775, + 0.023386187851428986, + -0.01373461913317442, + 0.02051057666540146, + 0.012352419085800648, + 0.013988817110657692, + 0.029216846451163292, + -0.062151335179805756, + 0.00579888466745615, + -0.005727391690015793, + 0.0013385097263380885, + -0.0063430266454815865, + 0.03288682550191879, + -0.014950001612305641, + 0.016967695206403732, + -0.009413258172571659, + 0.021034859120845795, + -0.03415781632065773, + 0.03514283150434494, + -0.00896046869456768, + 0.0035190493799746037, + -0.0014556789537891746, + -0.028343042358756065, + 0.015323354862630367, + -0.035968974232673645, + -0.03488863259553909, + -0.003707711584866047, + 0.0018806657753884792, + 0.028930874541401863, + -0.008579172194004059, + -0.0016066088574007154, + -0.005119700450450182, + -0.019795645028352737, + -0.026023488491773605, + 0.021654466167092323, + -0.004130712244659662, + 0.025642191991209984, + 0.03501573204994202, + 0.019636770710349083, + 0.02416466735303402, + 0.0075067756697535515, + 0.00695866160094738, + 0.03488863259553909, + -0.014950001612305641, + -0.014322451315820217, + -0.020955422893166542, + -0.017682626843452454, + 0.05303199216723442, + -0.013385097496211529, + -0.024720724672079086, + -0.0037811906076967716, + -0.021082520484924316, + 0.004309445153921843, + -0.009452976286411285, + -0.007510747294872999, + 0.015323354862630367, + 0.019763870164752007, + 0.017428429797291756, + 0.01376639399677515, + 0.00995342805981636, + 0.033681195229291916, + -0.015307467430830002, + 0.02980467863380909, + 0.024275880306959152, + 0.03345876932144165, + 0.01950967311859131, + 0.002756456146016717, + 0.004980686120688915, + 0.030996231362223625, + -0.021161958575248718, + 0.020987197756767273, + -0.0175237525254488, + 0.037621259689331055, + -0.016133610159158707, + 0.0032410204876214266, + 0.013694901019334793, + 0.02546743117272854, + -0.006887168623507023, + 0.011526276357471943, + 0.03635026887059212, + -0.003080161055549979, + 0.017031244933605194, + 0.011558051221072674, + -0.00026015544426627457, + 0.025102021172642708, + 0.011287965811789036, + -0.00828525610268116, + 0.017158344388008118, + -0.023703934624791145, + 0.056209463626146317, + -0.012010840699076653, + 0.010565091855823994, + 0.02124139480292797, + -0.018063923344016075, + -0.007641817908734083, + -0.013504252769052982, + -0.0150612136349082, + 0.013067349791526794, + 0.0007983396062627435, + 0.00728435255587101, + -0.016117721796035767, + -0.000924941967241466, + 0.008730102330446243, + 0.02678608149290085, + 0.0007730191573500633, + -0.01427478902041912, + -0.03051961027085781, + -0.012519236654043198, + 0.005457306746393442, + -0.0035210351925343275, + 0.059482257813215256, + -0.010223513469099998, + 0.023656273260712624, + -0.005810800474137068, + 0.017047133296728134, + 0.03755770996212959, + 0.020780662074685097, + -0.016665836796164513, + 0.023354412987828255, + 0.024339428171515465, + 0.02190866321325302, + -0.009866047650575638, + -0.051570355892181396, + -0.00876982044428587, + 0.008003255352377892, + -0.00996137224137783, + 0.0032648516353219748, + 0.0497274249792099, + -0.0023950189352035522, + 0.02122550643980503, + 0.02189277671277523, + 0.013321547769010067, + -0.003167541464790702, + 0.022051649168133736, + -0.0014020591042935848, + 0.01224915124475956, + 0.010509485378861427, + -0.0019789687357842922, + -0.0026412729639559984, + 0.014862621203064919, + 0.00962773710489273, + -0.0023632440716028214, + -0.011804305016994476, + -0.005226939916610718, + 0.004873446188867092, + -0.012797265313565731, + -0.01060480996966362, + -0.014854677952826023, + -0.029741128906607628, + -0.030900906771421432, + 0.025642191991209984, + -0.00430150143802166, + 0.0030960484873503447, + -0.008293199352920055, + 0.012789321132004261, + -0.013353322632610798, + -0.0176031906157732, + -0.0017426443519070745, + 0.02316376380622387, + -0.0005103813018649817, + 0.012765490449965, + -0.008420298807322979, + 0.01391732320189476, + -0.0008350791176781058, + -0.014227126725018024, + 0.016300426796078682, + -0.033967167139053345, + -0.05112551152706146, + -0.013964985497295856, + -0.0195255596190691, + -0.025117909535765648, + 0.0055486587807536125, + 0.009532413445413113, + -0.018747080117464066, + -0.01078751403838396, + 0.011303853243589401, + -0.01618127152323723, + 0.009778667241334915, + 0.0022857931908220053, + -0.007149309851229191, + 0.02616647444665432, + 0.021066633984446526, + 0.017158344388008118, + -0.016022399067878723, + 0.004742375575006008, + 0.0034296829253435135, + 0.040862277150154114, + -0.027945859357714653, + 0.016427526250481606, + -0.002097130985930562, + -0.024037569761276245, + -0.03946419060230255, + 0.00911934208124876, + 0.026643095538020134, + -0.016006510704755783, + 0.02049468830227852, + -0.005838603246957064, + 0.0529048927128315, + -0.005878321826457977, + 0.014187408611178398, + 0.0072406623512506485, + 0.00762195885181427, + -0.025038473308086395, + -0.011645431630313396, + 0.00432136096060276, + 0.0023096243385225534, + -0.015315410681068897, + 0.00860300287604332, + -0.004369022790342569, + 0.021304944530129433, + -0.01025528833270073, + 0.017825612798333168, + -0.025626305490732193, + 0.041879069060087204, + 0.022973116487264633, + -0.032330770045518875, + -0.010009034536778927, + 0.03650914505124092, + -0.01788916252553463, + 0.028088845312595367, + 0.005358010530471802, + -0.0352063812315464, + 0.020065730437636375, + 0.016427526250481606, + -0.0013275871751829982, + -0.036636240780353546, + 0.03279150277376175, + -0.02422821708023548, + 0.02581695280969143, + -0.004102909471839666, + -0.0021447930485010147, + -0.019747983664274216, + -0.0034554998856037855, + -0.016697611659765244, + 0.034284912049770355, + 0.03457088768482208, + -0.005806828383356333, + 0.018794741481542587, + 0.01817513443529606, + 0.025403881445527077, + -0.00729626789689064, + -0.019763870164752007, + -0.010509485378861427, + 0.020971309393644333, + -0.01954144798219204, + -0.03847917541861534, + 0.01227298192679882, + -0.010144076310098171, + -0.05509734898805618, + 0.029677581042051315, + -0.017158344388008118, + 0.021273169666528702, + -0.0235291738063097, + 0.03908289596438408, + -0.036254946142435074, + -0.0023612582590430975, + -0.021988099440932274, + 0.009230554103851318, + -0.0077689168974757195, + -0.0011577910045161843, + 0.018079809844493866, + 0.015371016226708889, + -0.02950282022356987, + -0.004591445904225111, + 0.005890237167477608, + -0.021463816985487938, + 0.0031059780158102512, + 0.024752499535679817, + -0.024021681398153305, + 0.025324445217847824, + 0.046232204884290695, + 0.00612457562237978, + -0.002522117691114545, + -0.010469767265021801, + -0.0031178935896605253, + -0.030932681635022163, + 0.009858104400336742, + 0.006557506043463945, + 0.007236690726131201, + -0.028390703722834587, + 0.03555590286850929, + -0.015712594613432884, + 0.013853774406015873, + 0.015585496090352535, + 0.00729626789689064, + 0.017730288207530975, + -0.0028497944585978985, + -0.0008678468293510377, + 0.029725242406129837, + 0.0358736477792263, + 0.01524391770362854, + -0.008317030966281891, + 0.006120603997260332, + 0.011836079880595207, + 0.007518691010773182, + 0.014719635248184204, + 0.014306563884019852, + 0.0016056158347055316, + 0.025086134672164917, + -0.005350066814571619, + 0.043880876153707504, + 0.011152924038469791, + 0.033299896866083145, + -0.004118796903640032, + -0.006887168623507023, + -0.03406248986721039, + 0.030932681635022163, + -0.00019784722826443613, + -0.04566026106476784, + -0.01543456595391035, + -0.01823868416249752, + -0.026595434173941612, + -0.023958131670951843, + -0.003771261079236865, + 0.013218279927968979, + 0.03182237222790718, + 0.04699479788541794, + 0.029010310769081116, + -0.0070261829532682896, + 0.003602457931265235, + 0.011200585402548313, + -0.013941154815256596, + 0.010541260242462158, + -0.0016771089285612106, + 0.0337129682302475, + 0.003010653890669346, + 0.025896389037370682, + 0.02124139480292797, + -0.008150213398039341, + -0.03901934623718262, + -0.020033955574035645, + -0.008491791784763336, + -0.02049468830227852, + 0.004444487858563662, + 0.013027631677687168, + -0.008245537988841534, + -0.0014437634963542223, + 0.006501900497823954, + -0.0045199524611234665, + -0.0012838969705626369, + 0.025928163900971413, + 0.0029073860496282578, + -0.0013504251837730408, + -0.001335530891083181, + -0.0107636833563447, + -0.03185414895415306, + -0.00977072399109602, + -0.009619793854653835, + 0.008221706375479698, + -0.006625027395784855, + 3.251943053328432e-5, + -0.037589482963085175, + -0.01459253579378128, + -0.004853587131947279, + -0.006120603997260332, + 0.0031973302830010653, + 0.002291751094162464, + 0.0040751066990196705, + 0.0271991528570652, + 0.0010704105952754617, + -0.017746176570653915, + -0.020987197756767273, + 0.010668359696865082, + -0.020685337483882904, + -0.022607706487178802, + 0.001960102468729019, + -0.020049842074513435, + 0.0005486102309077978, + -0.006740210577845573, + -0.02856546640396118, + -0.004226036835461855, + 0.027119716629385948, + -0.036223169416189194, + 0.002919301623478532, + 0.019811533391475677, + 0.009214666672050953, + 0.0156013835221529, + 0.0021586944349110126, + 0.004313417244702578, + -0.009842216968536377, + -0.028597239404916763, + 0.04502476751804352, + 2.947849134216085e-5, + 0.00879365112632513, + -0.012233263812959194, + 0.0096356812864542, + -0.021479705348610878, + -1.204739419335965e-5, + 0.0001158039303845726, + 0.0147672975435853, + 0.012662222608923912, + 0.014854677952826023, + -0.016022399067878723, + 0.006561477668583393, + 0.005731363780796528, + -0.002317568054422736, + 0.017460204660892487, + 0.020383477210998535, + -0.00646218191832304, + -0.00977072399109602, + -0.0077371420338749886, + 0.01723778061568737, + 0.004801953211426735, + -0.010295006446540356, + 0.005695616826415062, + -0.03447556123137474, + -0.02087598480284214, + -0.010064640082418919, + 0.004746347665786743, + 0.017809726297855377, + -0.025324445217847824, + -0.004456403199583292, + 0.020637674257159233, + 0.005397729109972715, + 0.04969564825296402, + -0.012145883403718472, + -0.009421202354133129, + -0.006553534418344498, + 0.001738672493956983, + 0.024069344624876976, + -0.00861094705760479, + 0.023465624079108238, + 0.027929970994591713, + -0.011367402970790863, + 1.6523470094398363e-6, + -0.0071056196466088295, + 0.006287421099841595, + -0.001067431760020554, + 0.023386187851428986, + 0.0006315223872661591, + 0.005723420064896345, + -0.054239433258771896, + 0.018842404708266258, + -0.026754306629300117, + -0.009373540058732033, + -0.014449549838900566, + -0.005473194178193808, + -0.012519236654043198, + 9.600679186405614e-5, + -0.019112488254904747, + 0.009588018991053104, + -0.027342138811945915, + -0.024307653307914734, + -0.016681723296642303, + -0.008571228012442589, + -0.041243575513362885, + -0.013829942792654037, + 0.02788230963051319, + -0.031933583319187164, + -0.003949993755668402, + -0.023036666214466095, + -0.008587115444242954, + -0.012590729631483555, + -0.014425719156861305, + 0.020637674257159233, + -0.01657051220536232, + -0.016649948433041573, + -0.0018200952326878905, + -0.02483193762600422, + 0.0014119887491688132, + 0.012630447745323181, + 0.0077728889882564545, + -0.003497204277664423, + -0.0055486587807536125, + -0.004218093119561672, + -0.012042615562677383, + -0.027993520721793175, + 0.0073240711353719234, + -0.0029431325383484364, + -0.025642191991209984, + 0.04947322607040405, + 0.04566026106476784, + 0.027262702584266663, + 0.008134325966238976, + -0.02413289248943329, + -0.011645431630313396, + -0.0016721441643312573, + -0.024736613035202026, + -0.023386187851428986, + -0.008007227443158627, + -0.013551914133131504, + 0.006486013066023588, + 0.032028909772634506, + 0.0017366865649819374, + -0.025896389037370682, + 0.010469767265021801, + 0.04470701888203621, + 0.0011776502942666411, + -0.03549235314130783, + 0.015815863385796547, + -0.015823805704712868, + -0.009643624536693096, + 0.012614560313522816, + -0.0017297358717769384, + 0.008404411375522614, + 0.0004540308436844498, + 0.0196049977093935, + -0.013853774406015873, + 0.003284710692241788, + -0.006489984691143036, + -0.022369395941495895, + 0.017348991706967354, + -0.018191022798419, + -0.017078908160328865, + -0.08153390884399414, + -0.014338338747620583, + 0.00738364877179265, + 0.030583159998059273, + 0.007872184738516808, + -0.0062159281224012375, + 0.01653873734176159, + 0.003890416119247675, + -0.016022399067878723, + -0.025689853355288506, + 0.0308691319078207, + -0.002690920839086175, + 0.02321142703294754, + 0.028994424268603325, + -0.005957758519798517, + -0.013289772905409336, + -0.014870564453303814, + -0.01491822674870491, + 0.00471854442730546, + -0.008074748329818249, + 0.006839506793767214, + 0.017793837934732437, + 0.0358736477792263, + -0.012137940153479576, + -0.004829755984246731, + 0.036286719143390656, + -0.014695803634822369, + -0.0004870467528235167, + -0.011613656766712666, + -0.024355316534638405, + -0.006053082644939423, + 0.010700133629143238, + -0.014989719726145267, + -0.010501542128622532, + -0.002252032747492194, + 0.018826516345143318, + 0.003050372237339616, + -0.009413258172571659, + 0.04709012061357498, + 0.0017962642014026642, + 0.01375844981521368, + 0.003838782198727131, + -0.0013116998597979546, + -0.00014062791888136417, + -0.01425095833837986, + -0.016395751386880875, + -0.0014536930248141289, + -0.02750101312994957, + -0.0016562568489462137, + 0.025785177946090698, + -0.008865144103765488, + 0.0005376876797527075, + -0.02281424216926098, + -0.016729384660720825, + -0.0003269320004619658, + -0.007776860613375902, + 0.02120961993932724, + -0.014227126725018024, + 0.011383290402591228, + 0.002470483770594001, + 0.054525405168533325, + 0.010938444174826145, + -0.0008102551219053566, + -0.01957322284579277, + -0.02217874862253666, + 0.006863337475806475, + -0.00041605011210776865, + 0.017428429797291756, + 0.02983645349740982, + -0.008491791784763336, + 0.016316315159201622, + -0.007256549783051014, + -0.017126569524407387, + 0.024974923580884933, + -0.0020435110200196505, + 0.02124139480292797, + 0.017396654933691025, + 0.026897292584180832, + -0.001016790745779872, + 0.003987726289778948, + -0.0231955386698246, + 0.012217376381158829, + 0.007411451544612646, + -0.012670165859162807, + -0.010747795924544334, + -0.0009731005411595106, + 0.005703560542315245, + -0.007840409874916077, + 0.011343572288751602, + -0.009580075740814209, + 0.033681195229291916, + 0.024609513580799103, + 0.0377165824174881, + 0.025642191991209984, + -0.024371203035116196, + 0.057448677718639374, + -0.010668359696865082, + 0.016411637887358665, + -0.01311501208692789, + -0.008150213398039341, + 0.004114825278520584, + -0.02588050253689289, + 0.02256004512310028, + -0.020129280164837837, + -0.0076338741928339005, + -0.008690383285284042, + 0.008150213398039341, + -0.013051462359726429, + -0.006771985441446304, + -0.027914084494113922, + 0.0005088918842375278, + -0.007518691010773182, + -0.02089187316596508, + -0.005691645201295614, + -0.018048036843538284, + 0.00505615072324872, + -0.0019372644601389766, + -0.019668545573949814, + -0.026039376854896545, + 0.001979961758479476, + 0.0010723965242505074, + 0.03307747468352318, + 0.002613469958305359, + -0.012773433700203896, + 0.015371016226708889, + 0.002379131503403187, + -0.004591445904225111, + -0.016014454886317253, + 0.021670352667570114, + 0.014576648361980915, + 0.002845822600647807, + 0.021161958575248718, + -0.020685337483882904, + 0.001562918652780354, + -0.021098408848047256, + 0.021606802940368652, + 0.03256908059120178, + -0.005743279121816158, + 0.03339522331953049, + -0.039940811693668365, + 0.022432945668697357, + 0.009341765195131302, + 0.009913709945976734, + 0.020939534530043602, + -0.01093050092458725, + -0.008404411375522614, + -0.009651568718254566, + 0.003946022130548954, + -0.001491425558924675, + -0.0062119560316205025, + -0.005310348700731993, + -0.007264493498951197, + -0.009198779240250587, + -0.013130899518728256, + -0.016085946932435036, + -0.026992617174983025, + -0.018969502300024033, + 0.011724868789315224, + -0.0037752329371869564, + -0.017730288207530975, + -0.02149559184908867, + -0.0008003255352377892, + 0.02548331767320633, + -0.006617083679884672, + 0.04235569015145302, + 0.014838790521025658, + -0.01625276543200016, + -0.002905400237068534, + -0.0002872135955840349, + -0.005790940951555967, + -0.00220039882697165, + -0.013289772905409336, + -0.011653375811874866, + -0.013122955337166786, + -0.0024665119126439095, + -0.002468497958034277, + -0.0019183981930837035, + 0.00729626789689064, + 0.007844381965696812, + 0.006497928407043219, + -0.0172695554792881, + 0.025991713628172874, + 0.004952883347868919, + 0.012137940153479576, + -0.008221706375479698, + 0.01626070775091648, + 0.008809538558125496, + 0.016665836796164513, + 0.0027465266175568104, + 0.01858820579946041, + 0.02588050253689289, + 0.04003613814711571, + -0.012217376381158829, + -0.013655181974172592, + -0.0019035037839785218, + -0.004428600426763296, + 0.017412541434168816, + 0.03140930086374283, + -0.035619452595710754, + -0.014497212134301662, + -0.016316315159201622, + -0.009842216968536377, + 0.010827233083546162, + 0.0020236519630998373, + 0.0055486587807536125, + -0.008483847603201866, + -0.05010871961712837, + -0.004329304210841656, + 0.017682626843452454, + -0.019144263118505478, + -0.0036461481358855963, + 0.019462009891867638, + 0.01344070304185152, + -0.0176031906157732, + 0.005409644450992346, + 0.0028497944585978985, + 0.012392137199640274, + -0.01758730225265026, + 0.009349708445370197, + -0.015228030271828175, + 0.03809787705540657, + -0.002047482877969742, + -0.007455141749233007, + -0.03936886787414551, + 0.01658639870584011, + 0.038955796509981155, + 0.01460047997534275, + -0.015521946363151073, + -0.01224915124475956, + 0.010382386855781078, + 0.010898726060986519, + -0.001576820039190352, + -0.011891685426235199, + -0.005437447689473629, + 0.007951621897518635, + -0.005008488893508911, + 0.028263606131076813, + -0.03048783540725708, + 0.02885143831372261, + -0.02024049125611782, + -0.016713498160243034, + -0.014346281997859478, + -0.026309460401535034, + -0.002571765799075365, + 0.009659511968493462, + 0.014322451315820217, + -0.02588050253689289, + -0.016681723296642303, + -0.003437626641243696, + 0.008317030966281891, + 0.015537833794951439, + -0.009349708445370197, + -0.01508504431694746, + 0.009341765195131302, + -0.009000186808407307, + 0.014465437270700932, + -0.009540356695652008, + -0.008595059625804424, + 0.011129092425107956, + 0.003080161055549979, + 0.00315165426582098, + 0.004309445153921843, + 0.0022103283554315567, + -0.03809787705540657, + 0.02251238375902176, + -0.0013702844735234976, + -0.005910096224397421, + -0.012050558812916279, + 0.022623594850301743, + -0.023402074351906776, + -0.004563643131405115, + -0.002788231009617448, + -0.018048036843538284, + 0.019382573664188385, + 0.005449363030493259, + 0.027246814221143723, + -0.007804663386195898, + -0.014497212134301662, + 0.004202205687761307, + 0.01984330639243126, + -0.012312700971961021, + -0.00015974239795468748, + -0.0350475050508976, + 0.002808090066537261, + 0.022305848076939583, + 0.007169169373810291, + 0.021797452121973038, + 0.012153826653957367, + 0.02159091643989086, + 0.0058942087925970554, + 0.000833589700050652, + 0.021797452121973038, + 0.03339522331953049, + -0.011963178403675556, + 0.019620884209871292, + -0.013257998041808605, + 0.0004674358060583472, + 0.009826329536736012, + 0.007046042010188103, + 0.006875253282487392, + 0.02389458380639553, + -0.0030007243622094393, + -0.022067537531256676, + 0.0010853050043806434, + -0.0025816953275352716, + -0.00020901802054140717, + 0.010851063765585423, + -0.011963178403675556, + 0.0067958165891468525, + -0.015164480544626713, + 0.014711691066622734, + -0.008221706375479698, + 0.0018677572952583432, + -0.02516557089984417, + -0.010978163219988346, + 0.010835176333785057, + 0.0297887921333313, + -0.01719011925160885, + -0.00879365112632513, + -0.025435656309127808, + 0.006037195213139057, + -0.021447930485010147, + 0.012892588973045349, + 0.020383477210998535, + -0.038638047873973846, + -0.0051554469391703606, + 0.006748154293745756, + -0.018461108207702637, + 0.0026333292480558157, + 0.005159418564289808, + -0.021273169666528702, + 0.05462072789669037, + -0.008372636511921883, + 0.024307653307914734, + 0.005477165803313255, + -0.01008847076445818, + -0.0025936109013855457, + 0.0056837014853954315, + -0.009588018991053104, + -0.00012523704208433628, + 0.025372106581926346, + -0.00023111137852538377, + -0.01112114917486906, + -0.016824709251523018, + 0.011287965811789036, + 0.019160151481628418, + -0.005397729109972715, + 0.0358736477792263, + 0.04181551933288574, + -0.00605705427005887, + -0.0026869489811360836, + 0.023068441078066826, + 0.007995312102138996, + 0.0038407682441174984, + 0.0025022586341947317, + 0.03507928177714348, + -0.00578696932643652, + 0.0383838526904583, + -0.02522912062704563, + -0.0192713625729084, + -0.006601196248084307, + 0.011987010017037392, + -0.01092255674302578, + 0.019970405846834183, + 0.005389785394072533, + 0.013305660337209702, + 0.009659511968493462, + -0.010009034536778927, + -0.009333821013569832, + -0.030646709725260735, + 0.006192096974700689, + -0.005687673110514879, + -0.009421202354133129, + 0.005195165518671274, + -0.005091897677630186, + -0.00664091482758522, + 0.017762063071131706, + 0.019096601754426956, + 0.011105261743068695, + -0.02222640998661518, + -0.003860627533867955, + -0.006732266861945391, + -0.010716021060943604, + -0.00298285111784935, + -0.0195255596190691, + -0.010549204424023628, + 0.0007313148234970868, + -0.0029530622996389866, + -0.007860269397497177, + -0.0021011028438806534, + -0.0324578657746315, + -0.020319927483797073, + 0.01990685611963272, + -0.003993683960288763, + 0.017126569524407387, + 0.01224915124475956, + -0.019048938527703285, + 0.02159091643989086, + -0.039591290056705475, + -0.019684433937072754, + -0.009731004945933819, + 0.008293199352920055, + -0.008412354625761509, + 0.038924019783735275, + -0.021098408848047256, + 0.022321734577417374, + 0.00347933080047369, + 0.03975016251206398, + 0.01661817356944084, + -0.019668545573949814, + -0.028962649405002594, + 0.008237593807280064, + -0.009699231013655663, + -0.0033661334309726954, + -0.023576835170388222, + -0.004702657461166382, + 0.007482944522053003, + 0.0178573876619339, + -0.006088829133659601, + 0.015371016226708889, + -0.01128002256155014, + -0.00531432032585144, + -0.023672159761190414, + -0.015649044886231422, + -0.015998566523194313, + -0.0023751596454530954, + -0.012344474904239178, + 0.0008837341447360814, + 0.0012223334051668644, + 0.007133422885090113, + 0.02623002417385578, + 0.011176754720509052, + 0.0007045049569569528, + 0.025944052264094353, + 0.04216504096984863, + -0.03841562569141388, + 0.019970405846834183, + -0.023274976760149002, + -9.662739466875792e-5, + -0.011319740675389767, + -0.010302949696779251, + -0.01825457252562046, + -0.009341765195131302, + -0.031091555953025818, + -0.019763870164752007, + 0.004293557722121477, + 0.015267748385667801, + -0.024434752762317657, + 0.022750692442059517, + 0.020415252074599266, + 0.014131803065538406, + -0.016141552478075027, + 0.02985234186053276, + -0.014092084020376205, + 0.0006260611116886139, + 0.0176031906157732, + -0.0060808854177594185, + -0.0036441620904952288, + -0.009778667241334915, + 0.010501542128622532, + 0.002174581866711378, + 0.0003999145410489291, + -0.02387869544327259, + 0.01079545821994543, + 0.008221706375479698, + 0.006553534418344498, + 0.04184729605913162, + -0.01562521420419216, + -0.019732095301151276, + -0.03256908059120178, + 0.004218093119561672, + -0.0059974766336381435, + -0.002601554384455085, + -0.017666740342974663, + 0.01793682388961315, + -0.021718015894293785, + 0.0019035037839785218, + -0.016506962478160858, + -0.011987010017037392, + 0.003010653890669346, + 0.015148594044148922, + -0.021289056167006493, + -0.009786611422896385, + 0.02491137385368347, + 0.021781563758850098, + -0.02221052348613739, + 0.021050745621323586, + -0.00781260710209608, + -0.0003311520558781922, + 0.02618236280977726, + -0.016165385022759438, + 0.031075667589902878, + -0.022083424031734467, + 0.010295006446540356, + 0.007641817908734083, + -0.029057973995804787, + 0.0001648313191253692, + -0.010223513469099998, + 0.021018970757722855, + -0.0013206364819779992, + 0.009715118445456028, + -0.027786985039711, + -0.027580449357628822, + -0.004094965755939484, + 0.003145696362480521, + -0.01723778061568737, + -0.011065543629229069, + 0.00613649096339941, + 0.002474455628544092, + -0.024434752762317657, + -0.01795271225273609, + -0.0010565092088654637, + -0.013369210064411163, + -0.0005918039823882282, + -0.009786611422896385, + -0.009198779240250587, + 0.004369022790342569, + 0.001692996360361576, + -0.011558051221072674, + 0.0008445122512057424, + -0.019716208800673485, + -0.0175237525254488, + -0.0015013550873845816, + -0.0021706100087612867, + 0.012002897448837757, + 0.01592707447707653, + -0.007212859578430653, + -0.017476091161370277, + -0.022051649168133736, + 0.011867854744195938, + 0.0017039189115166664, + 0.0005496031953953207, + -0.00406319135800004, + 0.01124824769794941, + 0.027342138811945915, + -0.0017486021388322115, + 0.00736378924921155, + 0.002014715224504471, + -0.019160151481628418, + -0.01309118140488863, + 0.0013593619223684072, + 0.004865502472966909, + -0.011748699471354485, + 0.017746176570653915, + -0.004269727040082216, + 0.10066228359937668, + 0.0033581897150725126, + -0.009532413445413113, + -0.006648858543485403, + 0.002859723987057805, + -0.010183795355260372, + -0.0017754120053723454, + 0.015267748385667801, + 0.016443412750959396, + 6.1935861594975e-5, + -0.013257998041808605, + -0.01987508125603199, + 0.021320831030607224, + 0.004412712994962931, + -0.01508504431694746, + 0.006148406770080328, + 0.019732095301151276, + 0.029979439452290535, + 0.02316376380622387, + 0.013297717086970806, + -0.011883742175996304, + -0.010024921037256718, + -0.0033760631922632456, + 0.029264509677886963, + -0.011502445675432682, + 0.020971309393644333, + -0.009937540628015995, + 0.003139738691970706, + 0.009715118445456028, + 0.03117099218070507, + 0.011732812039554119, + -0.01141506526619196, + -0.018683530390262604, + -0.015037382021546364, + -0.0008901883848011494, + 0.013011744245886803, + -0.00996137224137783, + 0.015069156885147095, + -0.001778390840627253, + 0.011788417585194111, + -0.0030444145668298006, + -0.008992243558168411, + 0.029328059405088425, + 0.028231831267476082, + -0.01622893288731575, + -0.0024406949523836374, + 0.00448023434728384, + -0.001049558399245143, + 0.014560761861503124, + 0.006299336440861225, + -0.006732266861945391, + -0.02654777094721794, + 0.025594530627131462, + 0.007093704305589199, + 0.012034672312438488, + 0.008189931511878967, + 0.022019874304533005, + -0.022607706487178802, + -0.010541260242462158, + -0.009683343581855297, + -0.020478801801800728, + 0.0034157815389335155, + -0.01563315838575363, + -0.008730102330446243, + -0.0019829405937343836, + -0.01356780156493187, + -0.01717423088848591, + -0.0038288526702672243, + -0.00023607617185916752, + -0.003707711584866047, + -0.0024982867762446404, + 0.006831563077867031, + -0.007550465874373913, + -0.03590542450547218, + -0.012257094494998455, + -0.0004701664438471198, + 0.0034495422150939703, + 0.02192455157637596, + 0.019096601754426956, + -0.0039638951420784, + -0.002496300730854273, + 0.0030265413224697113, + 0.001172685413621366, + -0.023338524624705315, + -0.008237593807280064, + -0.0027643998619168997, + 0.020304040983319283, + -0.02850191667675972, + 0.012741658836603165, + -0.02159091643989086, + -0.018635869026184082, + -0.007645789999514818, + -0.002653188304975629, + -0.0006955682765692472, + -0.006668717600405216, + -0.012169714085757732, + -0.025387994945049286, + -0.00122431933414191, + -0.006644886452704668, + 0.0026333292480558157, + 0.011240304447710514, + 0.010223513469099998, + -0.005457306746393442, + -0.006200040690600872, + -0.00022763601737096906, + -0.011828136630356312, + 0.014942058362066746, + 0.008181988261640072, + -0.014179465360939503, + -0.009834272786974907, + 0.0012848898768424988, + -0.011184697970747948, + 0.0038328245282173157, + 0.011319740675389767, + -0.02449830248951912, + 0.007792748045176268, + 0.012169714085757732, + -0.0018757008947432041, + -0.013798168860375881, + -0.006648858543485403, + -0.01653873734176159, + -0.0001246785104740411, + -0.009516526013612747, + -0.012320644222199917, + -0.0007352866814471781, + 0.01156599447131157, + 0.006275505293160677, + -0.003912261221557856, + -0.024736613035202026, + 0.0013424815842881799, + 0.011724868789315224, + 0.01174075622111559, + 0.02913741022348404, + 0.00422206474468112, + 0.01920781284570694, + -0.007332014851272106, + -0.001087290933355689, + 0.004539811983704567, + 0.012860814109444618, + -0.0156013835221529, + 0.020748887211084366, + 0.006871281191706657, + 0.010453879833221436, + 0.022305848076939583, + 0.008563284762203693, + 0.03549235314130783, + -0.010152020491659641, + -0.02351328730583191, + 0.006092800758779049, + -4.4279797293711454e-5, + 0.018334008753299713, + -0.03965483978390694, + 0.007050014100968838, + -0.012129995971918106, + 0.02621413767337799, + 0.0043888818472623825, + -0.009786611422896385, + 0.0345391109585762, + -0.015585496090352535, + 0.0065297032706439495, + -0.008968411944806576, + -0.005616180133074522, + -0.008058860898017883, + -0.00343961245380342, + -0.013122955337166786, + 0.003582598641514778, + 0.025673966854810715, + 0.019938630983233452, + 0.01850876957178116, + -0.006005420349538326, + -0.008340861648321152, + 0.0012263052631169558, + -0.0016324258176609874, + -0.04470701888203621, + 0.0037811906076967716, + 0.014711691066622734, + -0.0014884466072544456, + -0.006454238202422857, + -0.020081616938114166, + 0.027771098539233208, + -0.0022043706849217415, + -0.021670352667570114, + 0.007582240272313356, + 0.003564725397154689, + 0.0048178406432271, + -0.016062116250395775, + 0.0045199524611234665, + -0.013694901019334793, + 0.007300239987671375, + -0.021114295348525047, + 0.0013295731041580439, + 0.014513099566102028, + -0.01227298192679882, + -0.010541260242462158, + -0.005504968576133251, + -0.0037950919941067696, + 0.013218279927968979, + 0.015116819180548191, + 0.002051454735919833, + -0.005937898997217417, + -0.004416685085743666, + -0.00220039882697165, + 0.007252577692270279, + 0.0009075651760213077, + -0.002690920839086175, + -0.011629544198513031, + -0.01491822674870491, + -0.007713311351835728, + -0.00016359011351596564, + -0.006430407054722309, + -0.031059781089425087, + -0.024339428171515465, + 0.016101835295557976, + -0.00045030724140815437, + -0.01919192634522915, + -0.00946886371821165, + 0.007228747010231018, + 0.018762966617941856, + 0.010056695900857449, + 0.016777047887444496, + -0.00013082244549877942, + 0.012987913563847542, + 0.009699231013655663, + -0.008984299376606941, + -6.417002441594377e-5, + 0.01559343934059143, + 0.005012460518628359, + 0.0046589672565460205, + -0.0013534041354432702, + 0.007753029465675354, + 0.028247717767953873, + 0.0044405157677829266, + -0.012805208563804626, + 0.022289959713816643, + -0.013782281428575516, + 0.03145696595311165, + 0.015966791659593582, + -0.01108937431126833, + 0.014902339316904545, + -0.01108937431126833, + -0.0048178406432271, + 0.004801953211426735, + -0.013957042247056961, + 0.011375346221029758, + 0.01327388547360897, + -0.0019720180425792933, + 0.009159060195088387, + -0.005361982621252537, + 0.005385813768953085, + -3.273663969594054e-5, + -0.01723778061568737, + -0.018445219844579697, + -0.006692548748105764, + 0.02650010958313942, + 0.023799259215593338, + 0.015188312157988548, + -0.008428242057561874, + 0.009532413445413113, + 0.0059974766336381435, + -0.025721628218889236, + -0.005524828098714352, + 0.02254415862262249, + -0.00781260710209608, + -0.014258901588618755, + -0.007355845533311367, + 0.020002180710434914, + -0.019462009891867638, + 0.004130712244659662, + 0.00861094705760479, + 0.01556960865855217, + 0.002442680997774005, + 0.012098221108317375, + 0.0035925284028053284, + 0.014028535224497318, + -0.01660228706896305, + 0.005079981870949268, + 0.0011746713425964117, + -0.012821095995604992, + 0.0018071867525577545, + -0.014012647792696953, + 0.005028347950428724, + -0.006482040975242853, + 0.004333276301622391, + -0.010064640082418919, + 0.0013385097263380885, + -0.03282327577471733, + 0.006851422134786844, + 0.021686241030693054, + -0.0032787530217319727, + 0.006652830168604851, + 0.005985561292618513, + -0.01685648411512375, + 0.008825425989925861, + -0.011645431630313396, + 0.008388523943722248, + 0.004833728075027466, + -0.00772125506773591, + -0.005834631156176329, + 0.01750786602497101, + 1.6026990124373697e-5, + -0.008650665171444416, + -0.008134325966238976, + -0.0041267406195402145, + -0.01795271225273609, + 0.010072583332657814, + 0.006156350485980511, + 0.017428429797291756, + -0.0006752125918865204, + -0.008356749080121517, + -0.008142270147800446, + -0.013369210064411163, + 0.0012789320899173617, + 0.0034833026584237814, + -0.016983583569526672, + -0.009389427490532398, + -0.01919192634522915, + 0.0013007771922275424, + 0.02684963122010231, + -0.026388898491859436, + -0.008237593807280064, + 0.0032132177148014307, + 0.0066091399639844894, + -0.0034813168458640575, + 0.00844412948936224, + 0.004746347665786743, + 0.0006454238318838179, + -0.012749603018164635, + 0.008293199352920055, + -0.004758263006806374, + -0.027929970994591713, + 0.021447930485010147, + -0.011383290402591228, + -0.0026929068844765425, + -0.008046945556998253, + -0.009913709945976734, + 0.019303137436509132, + -0.01028706319630146, + -0.005687673110514879, + -0.0022321734577417374, + 0.003808993613347411, + -0.02688140608370304, + -0.005715476348996162, + -0.01750786602497101, + -0.007073845248669386, + 0.009889879263937473, + 0.011176754720509052, + -0.003691824385896325, + 0.00463910773396492, + 0.014552817679941654, + 0.013226223178207874, + 0.009985202923417091, + -0.006803759839385748, + 0.008420298807322979, + 0.0090955113992095, + 0.0018707361305132508, + -0.013798168860375881, + 0.01543456595391035, + 0.018778854981064796, + -0.01855643093585968, + -0.0024387091398239136, + -0.0029749074019491673, + 0.029900003224611282, + -0.013806112110614777, + -0.011272079311311245, + 0.009786611422896385, + 5.9143163525732234e-5, + 0.0020613844972103834, + 0.014465437270700932, + -0.03441201150417328, + 0.008499735035002232, + -0.022448834031820297, + -0.008531509898602962, + -0.021082520484924316, + -0.010612753219902515, + -0.010318837128579617, + 0.015005607157945633, + -0.0015529890079051256, + -0.0013990802690386772, + -0.00996137224137783, + -0.020971309393644333, + 0.013218279927968979, + 0.006990436464548111, + -0.009381483308970928, + -0.014552817679941654, + 0.006454238202422857, + 0.01212205272167921, + 0.030297188088297844, + 0.037589482963085175, + 0.016999470070004463, + -0.016348088160157204, + -0.01587941125035286, + -0.005544687155634165, + -0.004162487108260393, + 0.013345378451049328, + 0.0009984209900721908, + -0.007343930192291737, + -0.02754867449402809, + 0.02616647444665432, + 0.0012928335927426815, + 0.001491425558924675, + 0.009945484809577465, + -0.0016403694171458483, + 0.02521323412656784, + 0.020478801801800728, + 0.007304211612790823, + -0.02451418898999691, + 0.0027266673278063536, + 0.007355845533311367, + 0.012010840699076653, + -0.007546493783593178, + 0.004929052200168371, + 0.013663126155734062, + -0.029757017269730568, + 0.016093891113996506, + 0.014473381452262402, + 0.015037382021546364, + 0.012535124085843563, + -0.0005500997067429125, + 0.016729384660720825, + -0.012701940722763538, + 0.02618236280977726, + 0.0021030886564403772, + 0.017444316297769547, + 0.003916233312338591, + 0.005695616826415062, + -0.010747795924544334, + 0.022305848076939583, + -0.0015092988032847643, + -0.00893663801252842, + 0.012614560313522816, + -0.007149309851229191, + -0.015839694067835808, + -0.005346095189452171, + 0.010144076310098171, + -0.018635869026184082, + -0.003902331693097949, + 0.023576835170388222, + -0.011875797994434834, + 0.007880127988755703, + 0.019303137436509132, + -0.010342668741941452, + -0.004504065494984388, + 0.003642176277935505, + 0.010009034536778927, + 0.009222609922289848, + -0.003967867232859135, + -0.004021486733108759, + 0.017126569524407387, + -0.003225133288651705, + -0.012153826653957367, + -0.010263231582939625, + 0.014481324702501297, + -0.012455686926841736, + -0.00336017576046288, + -0.006775957066565752, + -0.02017694152891636, + 0.011097317561507225, + -0.0010634599020704627, + 0.018413444980978966, + -0.03013831377029419, + 0.00013069831766188145, + -0.00654161861166358, + -0.017094794660806656, + -0.007753029465675354, + -0.0011816220358014107, + -0.002122947946190834, + 0.01620510220527649, + 0.00844412948936224, + -0.0012958124279975891, + 0.0018220810452476144, + -0.008428242057561874, + 0.008833370171487331, + 0.004015529062598944, + -0.005667814053595066, + 0.026055263355374336, + 0.013798168860375881, + 0.0018667642725631595, + 0.013615463860332966, + 0.008666552603244781, + -0.005564546212553978, + -0.010430049151182175, + 0.004122768994420767, + 6.795568333473057e-5, + -0.0031059780158102512, + 0.01792093738913536, + -0.00017190615471918136, + -0.0005203108885325491, + 0.007816579192876816, + 0.0031814430840313435, + 0.012018784880638123, + -0.008213763125240803, + 0.0006444308673962951, + -0.0017724331701174378, + 0.0009740935056470335, + 0.013806112110614777, + -0.015664933249354362, + 0.0002859724045265466, + 0.004702657461166382, + -0.005616180133074522, + 0.00048779146163724363, + -0.009588018991053104, + 0.001968046184629202, + 0.014807015657424927, + 0.010271175764501095, + 0.006414519622921944, + 0.011820192448794842, + 0.0011299881152808666, + 0.015045326203107834, + 0.022607706487178802, + 0.008785707876086235, + 0.010239400900900364, + -0.007415423169732094, + -0.02419644221663475, + 0.010334724560379982, + -0.019287249073386192, + 0.020939534530043602, + 0.005981589201837778, + -0.002788231009617448, + 0.015291579999029636, + 0.0013196434592828155, + -0.012709884904325008, + -0.01990685611963272, + -0.00927821546792984, + 0.0022619622759521008, + -0.00281404796987772, + 0.0013424815842881799, + 0.029248621314764023, + 0.026055263355374336, + 0.002176567679271102, + -0.0011041712714359164, + -0.016078004613518715, + 0.005425531882792711, + -0.009731004945933819, + -0.006565449759364128, + 0.01892184093594551, + 0.013543970882892609, + 0.0060769133269786835, + 0.010072583332657814, + 0.019350798800587654, + -0.0014546860475093126, + 0.017730288207530975, + 0.01618127152323723, + -0.007232718635350466, + -0.012686053290963173, + -0.009659511968493462, + -0.02419644221663475, + -0.0022977087646722794, + 0.0024148779921233654, + 0.0022818215657025576, + -0.006938802544027567, + -0.007339958101511002, + 0.00039519797428511083, + 0.022703031077980995, + 0.007173140998929739, + 0.02057412639260292, + -0.014783184044063091, + -0.007693451829254627, + -0.0007208887836895883, + -0.014656085520982742, + 0.015823805704712868, + 0.003785162465646863, + -0.01041416171938181, + 0.013019688427448273, + 0.0031556261237710714, + -0.004762234631925821, + -0.0021845113951712847, + 0.03507928177714348, + 0.002925259293988347, + 0.0014427704736590385, + 0.02654777094721794, + -0.009842216968536377, + -0.003090090584009886, + -0.02820005640387535, + 0.009397370740771294, + -0.012431856244802475, + -0.0015668905107304454, + -0.029328059405088425, + 0.004702657461166382, + 0.009643624536693096, + -0.0011518333340063691, + -0.0024387091398239136, + -0.011844024062156677, + -0.01790504902601242, + -0.006950717885047197, + -0.00012585765216499567, + 0.021463816985487938, + 0.005310348700731993, + -0.006724323146045208, + 0.006454238202422857, + -0.009564188309013844, + 0.04137067496776581, + -0.027310363948345184, + -0.015386903658509254, + -0.0005133601953275502, + -0.00045825092820450664, + 0.0035865704994648695, + -0.005036291666328907, + 0.0038725428748875856, + -0.026674870401620865, + -0.022353509441018105, + -0.001101192319765687, + -0.0076378462836146355, + -0.008245537988841534, + -0.008658608421683311, + -0.009349708445370197, + 0.0063430266454815865, + 0.013774337247014046, + 0.0011736784363165498, + 0.004372994415462017, + -0.00728435255587101, + -0.007582240272313356, + -0.011502445675432682, + 0.02448241598904133, + -0.020065730437636375, + -0.0046073333360254765, + -0.01444160658866167, + 0.008785707876086235, + -0.011319740675389767, + 0.024800162762403488, + -0.026071149855852127, + -0.021273169666528702, + -0.00203258846886456, + -0.002293736906722188, + 0.010239400900900364, + 0.004543783608824015, + -0.003076189197599888, + 0.011939347721636295, + 0.013416871428489685, + 0.012344474904239178, + -0.013655181974172592, + 0.0034813168458640575, + 0.010477711446583271, + -0.0065257311798632145, + -0.016046229749917984, + 0.0031238512601703405, + 0.0010277132969349623, + -0.028629014268517494, + 0.0067084357142448425, + 0.014473381452262402, + -0.027040278539061546, + 0.012892588973045349, + -0.0007953607710078359, + -0.009349708445370197, + -0.005941871087998152, + 0.009397370740771294, + 0.00512367207556963, + 0.009389427490532398, + 0.0012521222233772278, + -0.028740227222442627, + 0.007776860613375902, + -0.008420298807322979, + 0.0013176575303077698, + -0.009643624536693096, + 0.00604513892903924, + -0.00489727733656764, + -0.01982741989195347, + 0.004623220302164555, + -0.018063923344016075, + 0.02381514571607113, + -0.014957945793867111, + -0.017364880070090294, + -0.03314102441072464, + 0.008912806399166584, + 0.0058187441900372505, + 0.013901435770094395, + -0.025785177946090698, + 0.005167362280189991, + 0.006676661316305399, + 0.0003822894941549748, + -0.022003987804055214, + 0.005790940951555967, + 0.0062635899521410465, + -0.012892588973045349, + 0.016379863023757935, + -0.00323109095916152, + 0.002925259293988347, + 0.00231955386698246, + -0.012813152745366096, + 0.005083953961730003, + -0.033585868775844574, + -0.013329491019248962, + 0.023624498397111893, + -0.002780287293717265, + -0.0055486587807536125, + -1.5933901522657834e-5, + 0.00778083223849535, + 0.005306376609951258, + -0.005139559507369995, + -0.002770357532426715, + -0.0009626744431443512, + -0.027008505538105965, + -0.0063986326567828655, + -0.013623407110571861, + -0.0301224272698164, + 0.024800162762403488, + 0.010374443605542183, + -0.0014646155759692192, + -0.013528083451092243, + -0.016109779477119446, + 0.0011895657517015934, + -0.0036878525279462337, + -0.005242827348411083, + 0.007018239237368107, + -0.011176754720509052, + 0.022353509441018105, + 0.008007227443158627, + 0.020049842074513435, + 0.002162666292861104, + 0.006041166838258505, + 0.01095433160662651, + 0.015935018658638, + 0.0016195173375308514, + -0.0006518780719488859, + -0.024609513580799103, + -0.017015358433127403, + -0.026023488491773605, + 0.0015023481100797653, + -0.0077689168974757195, + -0.00960390642285347, + 0.030265413224697113, + -0.015204199589788914, + -0.007260521408170462, + -0.004833728075027466, + 0.0017337077297270298, + -0.001016790745779872, + -0.005342123564332724, + 0.011716924607753754, + 0.034316688776016235, + -0.012956138700246811, + 0.007431310601532459, + 0.01753964088857174, + -0.002226215787231922, + -0.006366857793182135, + 0.018762966617941856, + -0.010851063765585423, + -0.0017019329825416207, + -0.01391732320189476, + 0.007490888237953186, + -0.004013543017208576, + 0.022432945668697357, + -0.02052646316587925, + -0.013941154815256596, + -0.014107971452176571, + 0.0063946605660021305, + 0.010064640082418919, + -0.01344070304185152, + -0.014536930248141289, + -0.001582777826115489, + -0.016427526250481606, + 0.0034316687379032373, + 0.011716924607753754, + -0.011470670811831951, + 0.026055263355374336, + -0.010557147674262524, + 0.016824709251523018, + -0.0021725958213210106, + 0.027628110721707344, + -0.012646335177123547, + 0.014036478474736214, + 0.010843120515346527, + 0.018095698207616806, + 0.00943708885461092, + -0.007065901532769203, + 0.009619793854653835, + -0.01475935336202383, + 0.015974735841155052, + -0.0034316687379032373, + -0.009413258172571659, + -0.0005461278487928212, + 0.01795271225273609, + 0.00215075071901083, + -0.014616367407143116, + -0.012288869358599186, + -0.03307747468352318, + -0.01373461913317442, + -0.02788230963051319, + 0.0010143083054572344, + 0.0016661863774061203, + 0.00539375701919198, + 0.019160151481628418, + -0.008539454080164433, + -0.006716379430145025, + -0.021050745621323586, + 0.0033303869422525167, + -0.009715118445456028, + 0.007899987511336803, + 0.026944955810904503, + 0.020033955574035645, + 0.011391233652830124, + 0.02491137385368347, + 0.010295006446540356, + 0.007983395829796791, + -0.015656989067792892, + -0.007300239987671375, + 0.024291766807436943, + 0.01375844981521368, + 0.00762195885181427, + -0.027262702584266663, + -0.025086134672164917, + -0.008714214898645878, + 0.0008440157980658114, + 0.004033402539789677, + -0.022623594850301743, + -0.014608423225581646, + 0.0020375533495098352, + 0.014068253338336945, + -0.00512367207556963, + 0.011844024062156677, + 0.016149496659636497, + -0.005604264792054892, + 0.002248060889542103, + 0.003276767209172249, + -0.007455141749233007, + 4.1890489228535444e-5, + 0.019620884209871292, + -0.01758730225265026, + 0.0062675620429217815, + 0.002677019452676177, + 0.0006886175833642483, + 0.0038030357100069523, + -0.012344474904239178, + 0.017762063071131706, + 0.001974996877834201, + -0.00027132625109516084, + -0.03047194890677929, + 0.011176754720509052, + 0.0013891506241634488, + 0.0001200860642711632, + -0.007089732680469751, + -0.024005794897675514, + -0.006156350485980511, + 0.0038288526702672243, + 0.008730102330446243, + -0.0017019329825416207, + 0.0005997476982884109, + -0.00992165319621563, + -0.007069873157888651, + -0.0033641476184129715, + 0.011327684856951237, + 0.012670165859162807, + 0.018619980663061142, + -0.017094794660806656, + 0.010588922537863255, + 0.006386716850101948, + 8.26639006845653e-5, + -0.00016731371579226106, + -0.014854677952826023, + -0.004492149688303471, + -0.008114466443657875, + -0.024673063308000565, + 0.00430150143802166, + 0.01623687706887722, + 0.0018071867525577545, + 0.007987367920577526, + -0.009572131559252739, + -0.0023076385259628296, + -0.006100744474679232, + -0.014711691066622734, + 0.006561477668583393, + -0.007598127704113722, + -0.0038268668577075005, + 0.028231831267476082, + 0.006652830168604851, + -0.00122431933414191, + 0.0030920766294002533, + -0.027342138811945915, + -0.03175882250070572, + 0.002222243929281831, + 0.0018012289656326175, + -0.0049727424047887325, + -0.004698685370385647, + 0.00861094705760479, + -0.009881935082376003, + 0.012217376381158829, + -0.007435282226651907, + 0.008817482739686966, + -0.0006151385605335236, + -0.003808993613347411, + 0.0017922923434525728, + 0.010159963741898537, + -0.008507679216563702, + 0.003666007425636053, + -0.008404411375522614, + 0.006811703555285931, + -0.03051961027085781, + 0.0023870752193033695, + 0.025260895490646362, + -0.01858820579946041, + -0.0006379766273312271, + 0.031679388135671616, + 0.019033052027225494, + 0.006414519622921944, + 0.01688825897872448, + -0.006851422134786844, + -0.00844412948936224, + -0.013186505064368248, + 0.019684433937072754, + -0.0023036666680127382, + 0.0008281284244731069, + 0.0065257311798632145, + 0.011732812039554119, + 0.008348805829882622, + -0.01984330639243126, + -0.00713739451020956, + -0.0055009969510138035, + -0.011963178403675556, + -0.03952774032950401, + 0.004317388869822025, + -0.01595090515911579, + -0.00423398008570075, + -0.006533674895763397, + 0.002343385014683008, + -0.0010843119816854596, + -0.010040808469057083, + 0.009810442104935646, + 0.00797942467033863, + 0.02081243507564068, + -0.018159247934818268, + -0.01059686578810215, + -0.03441201150417328, + -0.020748887211084366, + 0.02089187316596508, + 0.006116631906479597, + 0.010501542128622532, + -0.004774150438606739, + -0.010580979287624359, + -0.009047849103808403, + -0.003660049522295594, + -0.012455686926841736, + -0.01795271225273609, + 0.01728544384241104, + 0.005175305996090174, + -0.0024406949523836374, + -0.0003125340736005455, + -0.009079623967409134, + -0.01858820579946041, + 0.004162487108260393, + -0.003511105664074421, + 0.0067997882142663, + 9.594473522156477e-5, + 0.025705741718411446, + 0.004674854222685099, + -0.0040095713920891285, + -0.0029987383168190718, + -0.010469767265021801, + -0.0035091196186840534, + 0.014640198089182377, + -0.009079623967409134, + -0.006251674611121416, + -0.003225133288651705, + -0.015712594613432884, + 8.942843851400539e-5, + 0.020987197756767273, + 0.003582598641514778, + 0.005937898997217417, + -0.012296813540160656, + -0.004357107449322939, + -0.012765490449965, + -0.01755552738904953, + -0.004730460233986378, + -0.01160571351647377, + -0.02321142703294754, + 0.009731004945933819, + -0.020605899393558502, + 0.0005615187110379338, + -0.006188124883919954, + 0.005743279121816158, + -0.010716021060943604, + -0.028724338859319687, + -0.0051554469391703606, + 0.00298285111784935, + -0.004615277051925659, + -0.007880127988755703, + 0.023799259215593338, + 0.007570324931293726, + 0.017825612798333168, + -0.007212859578430653, + -0.004551727324724197, + -0.004051275551319122, + 0.02190866321325302, + -0.019652659073472023, + -0.014028535224497318, + 0.003961909096688032, + -0.013949098065495491, + 0.007316127419471741, + -0.0024009766057133675, + 0.008626834489405155, + -0.0019035037839785218, + 0.025340331718325615, + -0.015823805704712868, + -0.00928615964949131, + -0.02982056699693203, + 0.012590729631483555, + -0.006350970361381769, + -0.0071612256579101086, + -0.024450641125440598, + 0.01719011925160885, + 0.008372636511921883, + -0.008722158148884773, + -0.00042175964335910976, + 0.004444487858563662, + 0.013162674382328987, + -0.011295909993350506, + -0.006517787463963032, + 0.0017436372581869364, + -0.0020554265938699245, + 0.0034674154594540596, + -0.0009949456434696913, + -0.02190866321325302, + 0.025324445217847824, + 0.02181333862245083, + 0.003622316988185048, + -0.030297188088297844, + 0.005508940666913986, + -0.00927821546792984, + 0.03345876932144165, + 0.031091555953025818, + 0.01852465607225895, + 0.021368494257330894, + 0.004118796903640032, + 0.00042573147220537066, + 0.017428429797291756, + 0.0013136856723576784, + -0.019970405846834183, + 0.007967509329319, + 0.016133610159158707, + -0.01717423088848591, + -0.017126569524407387, + -0.011963178403675556, + -0.025324445217847824, + 0.00244863866828382, + -0.0076855081133544445, + -0.012527179904282093, + -0.009460920467972755, + -0.02027226611971855, + -0.012916420586407185, + -0.008324974216520786, + 0.01817513443529606, + 0.005361982621252537, + 0.0065257311798632145, + 0.00024650225532241166, + 0.004218093119561672, + 0.009389427490532398, + 0.011756643652915955, + -0.008356749080121517, + -0.0022579904180020094, + 0.001778390840627253, + -0.011287965811789036, + 0.0138934925198555, + 1.5933901522657834e-5, + -0.03952774032950401, + -0.02983645349740982, + -0.0011508403113111854, + -0.011383290402591228, + 0.007860269397497177, + 0.008920750580728054, + -0.006374801509082317, + -0.0012630447745323181, + 0.01507710013538599, + 0.023290863260626793, + 0.014957945793867111, + 0.006966605316847563, + 0.002766385907307267, + -0.02216286025941372, + -0.012479517608880997, + -0.0015817848034203053, + -0.011963178403675556, + -0.0040790787898004055, + 0.0008703292114660144, + 0.018127473071217537, + -0.004345191642642021, + 0.025705741718411446, + -0.0018389613833278418, + 0.004865502472966909, + -0.00925438478589058, + -0.00995342805981636, + 0.007165197283029556, + 0.012002897448837757, + 0.001687038573436439, + 0.016062116250395775, + 0.006748154293745756, + -0.00323109095916152, + -0.011470670811831951, + -0.008221706375479698, + -0.002690920839086175, + -0.023004891350865364, + 0.02087598480284214, + 0.012527179904282093, + 0.009707174263894558, + -0.007741114124655724, + 0.001361347734928131, + -0.015839694067835808, + 0.0015559678431600332, + 0.010986106470227242, + 0.018699416890740395, + -0.011621600948274136, + 0.001517242519184947, + 0.004114825278520584, + 0.010048752650618553, + -0.0088015953078866, + 0.007594156078994274, + 0.008098579943180084, + -0.011041712015867233, + -0.0029332030098885298, + -0.007943677715957165, + 0.005985561292618513, + -0.00017029259470291436, + 8.886989235179499e-5, + -0.0032271191012114286, + -0.022957228124141693, + -0.019446123391389847, + 0.004325332585722208, + -0.016935920342803, + 0.0008762869401834905, + 0.012471574358642101, + 0.0027445408049970865, + 0.0009234525496140122, + 0.007717282976955175, + 0.011430952697992325, + 0.010040808469057083, + -0.014950001612305641, + 0.011303853243589401, + 0.0021547225769609213, + -0.005083953961730003, + -0.0107636833563447, + 0.018731191754341125, + 0.010525372810661793, + -0.009667456150054932, + -0.002702836412936449, + 0.012844926677644253, + 0.015180367976427078, + -0.016649948433041573, + 0.013551914133131504, + 0.01309118140488863, + 0.024609513580799103, + 0.008706270717084408, + 0.013146786950528622, + -0.01491822674870491, + 0.012813152745366096, + -0.026404784992337227, + 0.007534578442573547, + 0.0178573876619339, + 0.008039002306759357, + -0.002651202492415905, + 0.010422104969620705, + -0.008134325966238976, + -0.001010832958854735, + 0.007848354056477547, + 0.01950967311859131, + 0.005465250462293625, + -0.005675757769495249, + -0.0007387620280496776, + 0.00712547916918993, + -0.024291766807436943, + 0.0019114474998787045, + 0.002766385907307267, + 0.0011240304447710514, + 0.004357107449322939, + -0.03380829468369484, + 0.021336719393730164, + 0.00925438478589058, + -0.011033768765628338, + -0.007534578442573547, + 0.0033959222491830587, + 0.006835534702986479, + 0.020113391801714897, + -0.027977634221315384, + 0.016443412750959396, + 0.015426622703671455, + -0.012026728130877018, + -0.0195255596190691, + -0.011303853243589401, + -0.016459301114082336, + -0.0014904325362294912, + 0.0036382044199854136, + 0.003276767209172249, + 0.006775957066565752, + 0.00023930329189170152, + -0.00422206474468112, + -0.017110681161284447, + -0.008372636511921883, + -0.02384692057967186, + -0.00995342805981636, + -0.009580075740814209, + 0.01124824769794941, + -0.0022182720713317394, + -0.009659511968493462, + -0.010708077810704708, + 0.017158344388008118, + 0.0041585154831409454, + 0.013464533723890781, + -0.010231456719338894, + -0.03051961027085781, + 0.003530964720994234, + -0.006589280907064676, + 0.0042101494036614895, + 0.0013186505530029535, + -0.01160571351647377, + 0.0003140235203318298, + 0.0024069342762231827, + -0.02980467863380909, + -0.004567614756524563, + 0.00672035152092576, + -0.005215024575591087, + -0.015514003112912178, + -0.019684433937072754, + 0.005350066814571619, + -0.022353509441018105, + -0.009063736535608768, + 0.009913709945976734, + 0.00033537214039824903, + 0.001739665400236845, + -0.0192713625729084, + -0.004643079824745655, + -0.0026809913106262684, + 0.019684433937072754, + -0.012360362336039543, + -0.0010053716832771897, + 0.04429394751787186, + -0.0008028079173527658, + 0.008483847603201866, + 0.023799259215593338, + -0.015164480544626713, + -0.015617270953953266, + 0.016649948433041573, + -0.0036123874597251415, + 0.003810979425907135, + -0.02017694152891636, + -0.0071056196466088295, + 0.013043519109487534, + -0.006200040690600872, + 0.020113391801714897, + -0.006049110554158688, + -0.0009755829232744873, + -0.02487959899008274, + 0.028231831267476082, + -0.023799259215593338, + 0.02980467863380909, + -0.007713311351835728, + 0.001849883934482932, + -0.02351328730583191, + -0.005274602212011814, + -0.0025916248559951782, + 0.006454238202422857, + -0.015974735841155052, + -0.009969315491616726, + 0.007276408839970827, + -0.012376249767839909, + 0.001745623187161982, + -0.027929970994591713, + 0.025721628218889236, + -0.01626865193247795, + -0.009016074240207672, + 0.005361982621252537, + 0.03272795304656029, + -0.020335815846920013, + -0.009024018421769142, + -0.003922190982848406, + 0.018111584708094597, + 0.007677564397454262, + -0.014870564453303814, + -0.01626865193247795, + 0.02549920603632927, + 0.029661692678928375, + 0.003862613346427679, + -0.008730102330446243, + -0.006088829133659601, + -0.01917603798210621, + 0.004857559222728014, + -0.0005883286357857287, + -0.012551010586321354, + 0.0031218654476106167, + 0.016427526250481606, + -0.019668545573949814, + -0.007002351805567741, + -0.033681195229291916, + -0.009715118445456028, + -0.004873446188867092, + 0.010056695900857449, + 0.009452976286411285, + 0.003127823118120432, + 0.0023692019749432802, + -0.0039043177384883165, + -0.02421233057975769, + -0.005933927372097969, + 0.01009641494601965, + 0.054239433258771896, + 0.01690414734184742, + 0.01792093738913536, + -0.01440188754349947, + -0.000527261639945209, + -0.019795645028352737, + -0.002474455628544092, + -0.006982492748647928, + -0.021606802940368652, + -0.007046042010188103, + 0.005373897962272167, + -0.010485654696822166, + 0.010469767265021801, + 0.011025824584066868, + -0.02616647444665432, + 0.01622893288731575, + -0.005377870053052902, + -0.011454783380031586, + -0.0027783012483268976, + 0.008690383285284042, + -0.0012352418852970004, + 0.010882838629186153, + -0.011653375811874866, + -0.02024049125611782, + 0.018842404708266258, + -0.005254742689430714, + 0.0050204042345285416, + -0.0023950189352035522, + 0.008436186239123344, + 0.000205170304980129, + 0.02618236280977726, + 0.009476807899773121, + -0.032028909772634506, + 0.019716208800673485, + 0.003922190982848406, + 0.011041712015867233, + -0.0012531151296570897, + 0.012892588973045349, + 0.011867854744195938, + -0.006025279406458139, + -0.033681195229291916, + -0.005163390655070543, + -0.004071135073900223, + -0.010525372810661793, + -0.014973832294344902, + -4.558305590762757e-5, + -0.001928327837958932, + 0.014449549838900566, + 0.001956130610778928, + -0.002970935543999076, + -0.005608236417174339, + 0.00579888466745615, + -0.006855393759906292, + 0.017444316297769547, + -0.008968411944806576, + 0.011009937152266502, + 0.011780474334955215, + -0.022734805941581726, + -0.005830659531056881, + 0.0030404427088797092, + 0.002613469958305359, + -0.010001090355217457, + 0.010469767265021801, + 0.026595434173941612, + -0.0006995401345193386, + 0.008976356126368046, + 0.003934106323868036, + 0.0055486587807536125, + -0.005516884382814169, + 0.004110853187739849, + 0.03511105477809906, + -0.005099841393530369, + -0.01825457252562046, + -0.009151116944849491, + -0.013551914133131504, + -0.01692003384232521, + -0.02556275576353073, + -0.030916793271899223, + -0.01256689801812172, + 0.00795956514775753, + 0.0021725958213210106, + 0.0107636833563447, + 0.009524469263851643, + -0.010755740106105804, + -0.0009845196036621928, + -0.0023811173159629107, + -0.01725366897881031, + 0.0012878687120974064, + 0.02453007735311985, + 0.0019710250198841095, + -0.01955733448266983, + 0.0024784274864941835, + -0.008984299376606941, + 0.009373540058732033, + 0.007046042010188103, + -0.004944939631968737, + -0.015204199589788914, + -0.006255646236240864, + 0.016967695206403732, + 0.016729384660720825, + 0.004694713745266199, + 0.001185593893751502, + 0.01227298192679882, + 0.012622504495084286, + -0.01955733448266983, + -0.03137752786278725, + -0.002905400237068534, + 0.002736597089096904, + -0.009754836559295654, + 0.029264509677886963, + -0.022067537531256676, + 0.0087618762627244, + -0.0041267406195402145, + 0.009691286832094193, + 0.030662596225738525, + 0.018667642027139664, + 0.011144979856908321, + 0.0047900378704071045, + 0.01227298192679882, + 0.0039440360851585865, + -0.02017694152891636, + 0.008078720420598984, + 0.03048783540725708, + -0.00028448295779526234, + 0.006934830918908119, + 0.025944052264094353, + 0.008499735035002232, + 0.0365409180521965, + 0.005858462303876877, + -0.02656365931034088, + 0.009532413445413113, + -0.013536026701331139, + 0.0025697797536849976, + -0.010612753219902515, + 0.018715305253863335, + -0.006335082929581404, + -0.0027207096572965384, + 0.0023890610318630934, + 0.019811533391475677, + -0.006835534702986479, + -0.017364880070090294, + 0.021654466167092323, + 0.01719011925160885, + 0.0051832497119903564, + -0.00678787287324667, + 0.008436186239123344, + -0.02688140608370304, + 0.00455967104062438, + 0.00687922490760684, + 0.023370299488306046, + -0.02086009830236435, + -0.031981248408555984, + 0.004003613721579313, + -0.00961185060441494, + -0.009540356695652008, + 0.009850160218775272, + -0.010366499423980713, + 0.013011744245886803, + -0.007085760589689016, + 0.00879365112632513, + -0.0029530622996389866, + -0.00694674625992775, + -0.0019879054743796587, + 0.025896389037370682, + 0.0031953444704413414, + -0.005346095189452171, + -0.007892044261097908, + 0.02117784507572651, + 0.002073299838230014, + -0.004460375290364027, + -0.01160571351647377, + -0.0022182720713317394, + 0.005278573837131262, + 0.011303853243589401, + -0.0019501729402691126, + 0.007729198317974806, + -0.001973011065274477, + -0.004567614756524563, + -0.01750786602497101, + -0.0042101494036614895, + 0.01717423088848591, + 0.024434752762317657, + 0.02715149149298668, + -0.005211052484810352, + -0.009897822514176369, + 0.023656273260712624, + -0.010024921037256718, + 0.00564001128077507, + 0.0003217189514543861, + 0.009500638581812382, + 0.02254415862262249, + 0.010525372810661793, + -0.023751595988869667, + -0.011526276357471943, + -0.008082692511379719, + 0.02221052348613739, + -0.0005744271911680698, + -0.00687922490760684, + -0.05338151380419731, + 0.0005198144353926182, + 0.008269368670880795, + -0.002736597089096904, + -0.01440983172506094, + 0.008984299376606941 + ], + "9cd00511-baec-412a-b5e7-cecc9b48ab69": [ + -0.01920934207737446, + -0.004143429454416037, + -0.0020141107961535454, + 0.01175521221011877, + -0.007005427498370409, + -0.03219343721866608, + 0.014948684722185135, + 0.03431163728237152, + -0.021780289709568024, + 0.0524214543402195, + -0.013517685234546661, + 0.013614702969789505, + -0.00962892547249794, + -0.01578141376376152, + 0.0045800055377185345, + 0.03188621625304222, + -0.037286821752786636, + 0.016767751425504684, + -0.030932215973734856, + -0.0197429358959198, + 0.05685189366340637, + -0.027294082567095757, + -0.05733697861433029, + 0.021747950464487076, + 0.003664408577606082, + 0.00374727719463408, + -0.0036078153643757105, + 0.01605629362165928, + -0.016193734481930733, + 0.009402552619576454, + 0.029072726145386696, + 0.017269005998969078, + 0.020907137542963028, + 0.004040348809212446, + 0.009798705577850342, + -0.02289598435163498, + 0.007631994783878326, + 0.016452446579933167, + -0.018093649297952652, + 0.0038099337834864855, + -0.006306097377091646, + 0.036510687321424484, + 0.017026463523507118, + -0.014568701386451721, + -0.04297848045825958, + 0.008755773305892944, + -0.005344013217836618, + -0.021376052871346474, + 0.019565071910619736, + -0.005497623234987259, + 0.0045557511039078236, + -0.008197926916182041, + 0.03251682594418526, + 0.024545270949602127, + 0.0076481644064188, + 0.012030092999339104, + 0.026792829856276512, + 0.044563088566064835, + 0.010453568771481514, + -0.07392686605453491, + 0.01694561541080475, + 0.0021788375452160835, + 0.03741617873311043, + 0.013194295577704906, + 0.015320582315325737, + -0.023849982768297195, + -0.013347906060516834, + 0.015037616714835167, + -0.05377969145774841, + 0.0038725906051695347, + 0.05061047524213791, + 0.0355081781744957, + -0.011431822553277016, + 0.03395590931177139, + -0.0049074371345341206, + 0.0022617061622440815, + 0.039712242782115936, + -0.008917468599975109, + -0.000294335070066154, + -0.009208519011735916, + -0.015676312148571014, + 0.014795074239373207, + -0.009758281521499157, + 0.009596586227416992, + 0.08802665024995804, + 0.03495841845870018, + -0.052130404859781265, + -0.0572076216340065, + 0.023575102910399437, + -0.012385821901261806, + 0.0003559812030289322, + -0.012935584411025047, + 0.012426245957612991, + 0.020244188606739044, + -0.0004679043486248702, + 0.0071226563304662704, + 0.0459536649286747, + -0.018999138846993446, + 0.01051824726164341, + -0.0034420781303197145, + 0.03841868415474892, + 0.03285638242959976, + -0.009725942276418209, + 0.027762997895479202, + 0.005416776053607464, + -0.01213519461452961, + 0.036834076046943665, + -0.01517505757510662, + -0.02224920503795147, + 0.0442720390856266, + -0.00010055395978270099, + -0.008375790901482105, + -0.004163641016930342, + -0.0025911591947078705, + -0.023736797273159027, + -0.04530688375234604, + -0.012757720425724983, + -0.01869191974401474, + -0.0009135756408795714, + -0.040035635232925415, + 0.035378824919462204, + 0.02224920503795147, + -0.013913838192820549, + -0.002534565981477499, + -0.017252836376428604, + 0.014390837401151657, + 0.004741699900478125, + 0.020422054454684258, + 0.03232279047369957, + 0.004191937856376171, + -0.03563753515481949, + -0.017091140151023865, + -0.0036421753466129303, + 0.0009327768930234015, + 0.022152187302708626, + 0.012385821901261806, + -0.022362390533089638, + 0.04372227564454079, + -0.020454391837120056, + 0.026146050542593002, + -0.06070023030042648, + -0.052001047879457474, + 0.00230010855011642, + -0.01110843289643526, + 0.014067447744309902, + 0.02144073136150837, + -0.05352098122239113, + 0.05578470602631569, + -0.027455776929855347, + 0.012167533859610558, + -0.06234951689839363, + -0.004838717170059681, + 0.010841636918485165, + 0.011011416092514992, + -0.016961785033345222, + -0.013372160494327545, + -0.0043698023073375225, + 0.02601669356226921, + 0.007539020385593176, + 0.007470299955457449, + -0.011739042587578297, + -0.07619059085845947, + 0.011076093651354313, + -0.006754800211638212, + 0.05723996087908745, + 0.024124864488840103, + 0.06894666701555252, + 0.02289598435163498, + -0.04773230478167534, + 0.020001647993922234, + 0.01901530846953392, + -0.016290752217173576, + 0.02221686579287052, + 0.003353145904839039, + -0.02706770971417427, + 0.006488004233688116, + 0.0047376579605042934, + 0.06370775401592255, + 0.015466107986867428, + -0.038289330899715424, + -0.05319758877158165, + -0.008771942928433418, + -0.007066063117235899, + -0.0029064640402793884, + 0.038451023399829865, + 0.007999850437045097, + 0.03932417556643486, + 0.023154696449637413, + 0.004972115159034729, + -0.0012531346874311566, + 9.865909669315442e-5, + -0.040553055703639984, + -0.017333682626485825, + 0.021505409851670265, + -0.0069043682888150215, + -0.05128959193825722, + -0.015571209602057934, + 0.0047053187154233456, + 0.018384698778390884, + 0.010356551967561245, + -0.03495841845870018, + -0.0451451875269413, + -0.03395590931177139, + 0.027779167518019676, + -0.032306622713804245, + 0.03900078684091568, + -0.025175880640745163, + -0.01373597327619791, + 0.03353550285100937, + -0.041814275085926056, + 0.024868661537766457, + -0.03641366958618164, + -0.03070584312081337, + -0.010251450352370739, + -0.004113111644983292, + 0.005242954008281231, + -0.031449638307094574, + 0.0072641391307115555, + 0.004943818785250187, + -0.02701920084655285, + -0.021262867376208305, + 0.007704757619649172, + -0.01820683479309082, + -0.030819030478596687, + -0.03932417556643486, + -0.01998547837138176, + -0.02750428579747677, + -0.004575963132083416, + -0.02621072717010975, + 0.0024779727682471275, + 0.006350563373416662, + 0.01577332802116871, + -0.0028640192467719316, + -0.04385163262486458, + -0.030317775905132294, + 0.004903394728899002, + 0.04640641063451767, + 0.02722940593957901, + 0.007041808683425188, + 0.00784623995423317, + -0.007207545917481184, + 0.027940861880779266, + 0.008319197222590446, + 0.018223004415631294, + 0.00999273918569088, + 0.0346997044980526, + 0.0016129056457430124, + 0.004345547873526812, + 0.016622226685285568, + -0.01747920922935009, + 0.02346191555261612, + 0.022119849920272827, + 0.003476438345387578, + -0.006488004233688116, + -0.046180035918951035, + 0.07353879511356354, + 0.015005277469754219, + -0.027698319405317307, + -0.019322529435157776, + -0.03819231316447258, + 0.007454130332916975, + -0.009257027879357338, + 0.019322529435157776, + -0.0003769510076381266, + 0.04527454450726509, + -0.02119818888604641, + 0.008153460919857025, + -0.013930007815361023, + 0.0076077403500676155, + 0.03317977488040924, + 0.006354605779051781, + -0.006273758597671986, + -0.008925553411245346, + -0.02459377981722355, + -0.014083617366850376, + -0.0005618894356302917, + -0.0047134035266935825, + 0.017657073214650154, + 0.006136317737400532, + 0.017673242837190628, + -0.0038382303901016712, + -0.02346191555261612, + -0.0049074371345341206, + 0.02621072717010975, + -0.005534004885703325, + -0.014997192658483982, + -0.02321937307715416, + 0.010979076847434044, + -0.051321931183338165, + -0.006690122652798891, + 0.002427443163469434, + -0.015045701526105404, + 0.029557811096310616, + -0.0034178239293396473, + 0.002512332983314991, + 0.015805667266249657, + -0.02731025218963623, + -0.02318703569471836, + -0.008715350180864334, + 0.02326788194477558, + -0.04944626986980438, + -0.0009757271036505699, + 0.013461092486977577, + -0.01650903932750225, + 0.026356253772974014, + -0.01756005547940731, + 0.03592858463525772, + 0.011124602518975735, + -0.03735150024294853, + 0.02407635562121868, + 0.03754553198814392, + -0.032630011439323425, + -0.004535539075732231, + -0.04155556485056877, + -0.01658988744020462, + -0.02871699631214142, + 0.03398824855685234, + 0.019920799881219864, + -0.01723666675388813, + -0.020292697474360466, + 0.04802335798740387, + 0.017414530739188194, + -0.06568042933940887, + 0.03670471906661987, + 0.042655088007450104, + -0.009006400592625141, + 0.0475706122815609, + 0.003666429780423641, + -0.053617995232343674, + 0.02512737177312374, + -0.028054049238562584, + -0.01581375114619732, + -0.025822659954428673, + -0.0013936071190983057, + -0.019403375685214996, + -0.06105595827102661, + -0.05497623234987259, + -0.028506793081760406, + 0.01933869905769825, + -0.00043935509165748954, + -0.03245214745402336, + 0.0052308267913758755, + 0.03153048828244209, + 0.009928060695528984, + 0.0016260433476418257, + -0.028393607586622238, + 0.007482427172362804, + 0.011601602658629417, + -0.018578732386231422, + -0.0031995358876883984, + 0.0010641539702191949, + 0.006463749799877405, + 0.01082546729594469, + 0.016032040119171143, + 0.02459377981722355, + 0.0023425535764545202, + 0.003264213912189007, + -0.0114722466096282, + 0.022119849920272827, + 0.005723996087908745, + 0.013582363724708557, + -0.018465546891093254, + -0.02682516723871231, + 0.004018115811049938, + -0.012725381180644035, + -3.939731868740637e-6, + -0.018093649297952652, + -0.005606767255812883, + 0.030932215973734856, + 0.0006427368498407304, + -0.008747688494622707, + 0.012345397844910622, + -0.025143541395664215, + -0.011900737881660461, + -0.030010554939508438, + -0.012013924308121204, + 0.03347082436084747, + -0.016088632866740227, + -0.00938638299703598, + 0.02577415108680725, + 0.027762997895479202, + -0.00975019671022892, + -0.0004236909153405577, + -0.005154022015631199, + 0.01979144476354122, + 0.02431889809668064, + 0.009030655026435852, + -0.01058292482048273, + -0.018756596371531487, + 0.0007422802154906094, + -0.043398886919021606, + 0.01407553255558014, + -0.022362390533089638, + -0.007757308427244425, + -0.010817382484674454, + 0.03476438298821449, + 0.002504248172044754, + 0.0023668077774345875, + 0.03495841845870018, + -0.017834937199950218, + -0.009442976675927639, + -0.012030092999339104, + 0.0021080959122627974, + 0.005497623234987259, + 0.015951192006468773, + -0.02949313260614872, + -0.005121682770550251, + -0.008747688494622707, + 0.015643972903490067, + -0.010962908156216145, + -0.01756005547940731, + 0.004701276309788227, + 0.007785604801028967, + -0.0020464498084038496, + 0.04226702079176903, + 0.017010293900966644, + 0.01998547837138176, + 0.013097278773784637, + -0.059536028653383255, + -0.006524385418742895, + 0.04524220526218414, + 0.021262867376208305, + 0.007935172878205776, + 0.0010621327674016356, + -0.0028923158533871174, + 0.021424561738967896, + 0.03199940174818039, + -0.01633925922214985, + -0.0314011313021183, + -0.03317977488040924, + -0.012725381180644035, + 0.047926340252161026, + -0.007943257689476013, + -0.0019777296110987663, + -0.013663210906088352, + -0.020211851224303246, + 0.003510798327624798, + -0.026275405660271645, + -0.004244488663971424, + -0.009265112690627575, + -0.014390837401151657, + 0.013663210906088352, + 0.0019696447998285294, + -0.017269005998969078, + -0.02831275947391987, + -0.013444922864437103, + -0.048120371997356415, + -0.0019969309214502573, + -0.011189280077815056, + -0.03070584312081337, + -0.011714788153767586, + 0.04362525790929794, + -0.05817779153585434, + -0.019872291013598442, + 0.01731751300394535, + -0.001572481938637793, + -0.034732043743133545, + -0.0071226563304662704, + 0.03641366958618164, + -0.05103088170289993, + -0.018271513283252716, + -0.02994587831199169, + 0.01104375533759594, + 0.0004509769205469638, + 0.011100348085165024, + -0.0281995739787817, + 0.01982378214597702, + 0.017624733969569206, + 0.017010293900966644, + 0.010445483960211277, + -0.020357375964522362, + -0.023413408547639847, + -0.04378695413470268, + -0.00882045179605484, + 0.0071064867079257965, + -0.024577610194683075, + -0.01812598668038845, + 0.023720627650618553, + 0.0031389002688229084, + -0.021537747234106064, + -0.022960662841796875, + -0.011302466504275799, + -0.020616088062524796, + 0.02515971101820469, + -0.0008322229259647429, + 0.015999700874090195, + 0.011561178602278233, + -0.03091604635119438, + -0.010615264065563679, + 0.0032157055102288723, + 0.03437631577253342, + -0.018885953351855278, + 0.018077479675412178, + -0.0006088819936849177, + 0.010817382484674454, + -0.051321931183338165, + -0.011601602658629417, + -0.013533854857087135, + -0.016112886369228363, + -0.006035258527845144, + 0.01058292482048273, + -0.01840086840093136, + 0.002122244331985712, + 0.007207545917481184, + -0.003017629263922572, + 0.017301343381404877, + -0.021780289709568024, + 0.019241681322455406, + -0.021586256101727486, + 0.02394700050354004, + -0.017818767577409744, + -0.009564247913658619, + -0.02467462792992592, + -0.007401579525321722, + -0.02157008647918701, + 0.03961522877216339, + -0.019290190190076828, + -0.004838717170059681, + 0.03822465240955353, + -0.008424298837780952, + -0.0002531534410081804, + -0.003017629263922572, + -0.025515440851449966, + -0.00035446533001959324, + -0.02208751067519188, + -0.008893214166164398, + 0.014277650974690914, + -0.018336189910769463, + 0.028021709993481636, + -0.02653411775827408, + -0.006863944232463837, + 0.0189344622194767, + 0.013372160494327545, + 0.017171988263726234, + 0.010857806541025639, + 0.0006624434026889503, + 0.01011401042342186, + 0.017867276445031166, + 0.03479672223329544, + 0.03819231316447258, + -0.0603768415749073, + 0.017948122695088387, + -0.02451293170452118, + -0.0013178125955164433, + -0.014512108638882637, + 0.02868465892970562, + -0.010219112038612366, + 0.02464228868484497, + -0.008626418188214302, + 0.010566755197942257, + -0.015166972763836384, + 0.0068599022924900055, + -0.004272785037755966, + 0.00385844218544662, + -0.01570056565105915, + -0.04000329598784447, + 0.017220497131347656, + -0.047117866575717926, + -0.035378824919462204, + -0.0014168507186695933, + 0.01617756485939026, + 0.029185911640524864, + -0.010906314477324486, + -0.010574840009212494, + -0.006702249404042959, + -0.02326788194477558, + -0.023251712322235107, + 0.026113711297512054, + -0.004147471860051155, + 0.021085001528263092, + 0.028183404356241226, + 0.01966208778321743, + 0.022685781121253967, + 0.009661264717578888, + -0.009531908668577671, + 0.029460793361067772, + -0.014059362933039665, + -0.016201820224523544, + -0.030026724562048912, + -0.026275405660271645, + 0.050513457506895065, + -0.033923570066690445, + -0.034732043743133545, + -0.010259535163640976, + -0.015078040771186352, + -0.026922184973955154, + -0.0033369765151292086, + -0.010194857604801655, + 0.006362690590322018, + 0.01577332802116871, + -0.0006457685958594084, + 0.008044316433370113, + 0.015320582315325737, + 0.02394700050354004, + -0.016767751425504684, + 0.04498349502682686, + 0.03018842078745365, + 0.026889845728874207, + 0.02415720373392105, + 0.00804835930466652, + 0.009038739837706089, + 0.020987985655665398, + -0.01435849815607071, + -0.0053399708122015, + -0.009321705438196659, + 0.03854804113507271, + -0.0042040650732815266, + -0.001733166165649891, + 0.027860015630722046, + 0.02836126834154129, + 0.00140371301677078, + 0.01286282204091549, + 0.041361529380083084, + 0.0037210017908364534, + 0.01694561541080475, + 0.004911479540169239, + 0.007999850437045097, + 0.02771448902785778, + 0.01098716165870428, + -0.02731025218963623, + 0.02019568160176277, + -0.016315005719661713, + 0.057757385075092316, + -0.013558109290897846, + 0.011795636266469955, + 0.03722214326262474, + -0.01820683479309082, + -0.012288805097341537, + -0.01557929441332817, + -0.014601040631532669, + 0.012385821901261806, + -0.006415241397917271, + 0.01135097537189722, + -0.02059991843998432, + 0.00405651843175292, + -0.00038655163371004164, + 0.016573717817664146, + 0.01543376874178648, + -0.016153311356902122, + -0.025741813704371452, + -0.018012801185250282, + -0.015255904756486416, + 0.007243927102535963, + 0.02262110263109207, + -0.0055380468256771564, + 0.00879619736224413, + -0.006758842617273331, + 0.01686476729810238, + 0.04533922299742699, + 0.023801475763320923, + -0.019920799881219864, + 0.014657634310424328, + -0.005849309731274843, + 0.024415915831923485, + -0.008521316573023796, + -0.060344502329826355, + 0.0003537073789630085, + 0.014859752729535103, + 0.003793764393776655, + 0.0021586257498711348, + 0.029525471851229668, + -0.011795636266469955, + 0.025741813704371452, + 0.02666347287595272, + 0.010291874408721924, + 0.018190665170550346, + 0.028393607586622238, + 0.0016593929613009095, + 0.022928323596715927, + 0.0008989220368675888, + 0.01683242991566658, + -0.0026234982069581747, + 0.011827974580228329, + 0.026728151366114616, + 8.375285688089207e-5, + -0.0071145715191960335, + -0.0076764607802033424, + 0.015991616994142532, + -0.014722311869263649, + 0.0045719207264482975, + -0.01694561541080475, + -0.013792566955089569, + -0.041361529380083084, + 0.034246958792209625, + 0.010049331933259964, + 0.001398660009726882, + 0.0035754763521254063, + 0.014059362933039665, + -0.01602395437657833, + -0.021941984072327614, + 0.007385410368442535, + 0.02346191555261612, + -0.013032601214945316, + 0.008844706229865551, + -0.0013097279006615281, + 0.025790320709347725, + -0.0047740391455590725, + -0.011658195406198502, + 0.010146348737180233, + -0.02621072717010975, + -0.04511285200715065, + -0.0024496763944625854, + -0.01869191974401474, + -0.02038971520960331, + -0.008497062139213085, + 0.01409978698939085, + -0.020211851224303246, + -0.008901298977434635, + 0.02111734077334404, + -0.02941228449344635, + -0.0032743196934461594, + 0.015603548847138882, + 0.013339821249246597, + 0.018821274861693382, + 0.017527716234326363, + 0.003694726387038827, + -0.013792566955089569, + 0.012385821901261806, + 0.008145376108586788, + 0.02378530614078045, + -0.01938720792531967, + 0.03761021047830582, + -0.020260358229279518, + -0.03398824855685234, + -0.030980724841356277, + -0.0049155219458043575, + 0.01566014252603054, + -0.0044668191112577915, + 0.020292697474360466, + 0.001918104593642056, + 0.054555825889110565, + -0.014997192658483982, + 0.00991189107298851, + 0.0019797508139163256, + 0.016193734481930733, + -0.024383576586842537, + -0.02362361177802086, + 0.013703634962439537, + 0.006124190520495176, + -0.002556798979640007, + 0.007029681466519833, + -0.02512737177312374, + 0.02321937307715416, + -0.013986600562930107, + 0.015595464035868645, + -0.00857790932059288, + 0.0370604507625103, + 0.020454391837120056, + -0.004891267977654934, + 0.005348055623471737, + 0.03353550285100937, + -0.024706965312361717, + 0.02669581212103367, + 0.005473369266837835, + -0.0070094699040055275, + 0.010510162450373173, + 0.015967361629009247, + 0.016032040119171143, + -0.03722214326262474, + 0.059050943702459335, + -0.01622607372701168, + 0.01715581864118576, + 0.001647265860810876, + -0.019354868680238724, + -0.02577415108680725, + -0.01169053465127945, + -0.016929445788264275, + 0.04540390148758888, + 0.02512737177312374, + -0.011286296881735325, + 0.019193172454833984, + 0.031692180782556534, + 0.017204327508807182, + -0.002688176231458783, + -0.007033723872154951, + -0.0017766216769814491, + 0.0152963288128376, + -0.025062695145606995, + -0.04769996553659439, + 0.008464722894132137, + -0.006536512635648251, + -0.05500857159495354, + 0.029072726145386696, + -0.021553916856646538, + 0.028814014047384262, + -0.02354276366531849, + 0.03693109378218651, + -0.028652319684624672, + -0.01092248409986496, + 0.0007412696140818298, + 0.011019500903785229, + -0.012474753893911839, + -0.02168327383697033, + 0.00867492612451315, + 0.013364075683057308, + -0.016412023454904556, + 0.01618565060198307, + -0.011714788153767586, + -0.017123479396104813, + 0.002344574546441436, + 0.03502309322357178, + -0.03161133453249931, + 0.03022075816988945, + 0.04598600044846535, + -0.005756334867328405, + 0.0019524648087099195, + -0.011908822692930698, + -0.0037877007853239775, + -0.02852296270430088, + 0.008020061999559402, + 0.005384436808526516, + 0.010817382484674454, + -0.02144073136150837, + 0.029590148478746414, + -0.01812598668038845, + 0.013962346129119396, + 0.022427069023251534, + -0.004183853045105934, + 0.005683572497218847, + -0.002647752407938242, + -0.0005538046825677156, + 0.029121235013008118, + 0.02407635562121868, + 0.01106800977140665, + -0.01581375114619732, + -0.0019009244861081243, + 0.015263989567756653, + 0.0011156941764056683, + 0.02084246091544628, + 0.03309892490506172, + -0.010429315268993378, + 0.00948339980095625, + 0.000983811798505485, + 0.059212636202573776, + 0.010688026435673237, + 0.03770722821354866, + -0.016638394445180893, + -0.0007119624060578644, + -0.030899876728653908, + 0.012329229153692722, + 2.1885643946006894e-5, + -0.045209866017103195, + -0.010849721729755402, + -0.005263166036456823, + -0.017948122695088387, + -0.012167533859610558, + -0.004048433620482683, + -0.006439495366066694, + 0.03512011095881462, + 0.023817645385861397, + 0.02249174751341343, + -0.0010020025074481964, + 0.0034744171425700188, + 0.011383314616978168, + -0.01570056565105915, + 0.0044587342999875546, + -0.006560766603797674, + 0.037965938448905945, + 0.0013329715002328157, + 0.024739304557442665, + 0.017673242837190628, + 0.002940824255347252, + -0.032743196934461594, + -0.014237227849662304, + 0.0012339334934949875, + -0.026000523939728737, + 0.009378298185765743, + 0.0008519294788129628, + -0.006281842943280935, + -0.001586630241945386, + -0.010130179114639759, + -0.009184264577925205, + 0.014269566163420677, + 0.015587379224598408, + 0.0054410300217568874, + -0.015466107986867428, + -0.006880113855004311, + -0.013347906060516834, + -0.044239699840545654, + -0.028054049238562584, + -0.015878429636359215, + 0.0070984018966555595, + -0.013558109290897846, + -0.0020717147272080183, + -0.05009305104613304, + -0.015231650322675705, + -0.002271811943501234, + -0.010785043239593506, + 0.0007609761669300497, + 0.0031247520819306374, + 0.0012288804864510894, + 0.01642819121479988, + -0.00886087492108345, + -0.029444623738527298, + -0.025353744626045227, + 0.03038245439529419, + -0.019872291013598442, + -0.014916345477104187, + -0.0221683569252491, + -0.023801475763320923, + -0.004260658286511898, + -0.011278213001787663, + -0.030641164630651474, + -0.003330912906676531, + 0.03035011515021324, + -0.03070584312081337, + 0.007401579525321722, + 0.01545802317559719, + 0.002279896754771471, + 0.005740165710449219, + 0.0017422614619135857, + 0.002752854023128748, + -0.014301905408501625, + -0.023073848336935043, + 0.05332694575190544, + 0.0026841338258236647, + 0.005077216774225235, + -0.010752704925835133, + 0.0006543586496263742, + -0.018999138846993446, + -0.008780027739703655, + -0.00032212637597694993, + -0.006103978957980871, + 0.0114722466096282, + 0.02059991843998432, + -0.013380245305597782, + 0.009111502207815647, + 0.007902833633124828, + 0.0050650895573198795, + 0.029282929375767708, + 0.010477823205292225, + 0.0020717147272080183, + -0.007021596655249596, + -0.008707265369594097, + 0.028054049238562584, + -0.0055380468256771564, + -0.012224127538502216, + 0.0258064903318882, + -0.047150205820798874, + -0.028652319684624672, + -0.015385260805487633, + 0.014916345477104187, + 0.03035011515021324, + -0.03838634490966797, + -0.0031692180782556534, + 0.01302451640367508, + -0.0026437100023031235, + 0.050351761281490326, + -0.0016755623510107398, + -0.0006745705031789839, + -0.0036623873747885227, + 0.0015492383390665054, + 0.01110843289643526, + -0.007680503185838461, + 0.01650903932750225, + 0.05290653929114342, + -0.006766927428543568, + 0.0005765430396422744, + 0.0030499682761728764, + -0.003446120535954833, + 0.004830632358789444, + 0.01342875324189663, + 0.0053359284065663815, + 0.004487030673772097, + -0.054394133388996124, + 0.011367144994437695, + -0.03256533294916153, + -0.014552532695233822, + -0.00713074067607522, + -0.011286296881735325, + -0.018336189910769463, + -0.01601587049663067, + -0.0177217498421669, + 0.008965976536273956, + -0.024141034111380577, + -0.011916907504200935, + -0.015288244001567364, + 0.0013390351086854935, + -0.019047647714614868, + -0.01240199152380228, + 0.020519070327281952, + -0.028506793081760406, + -0.001155107282102108, + -0.02443208545446396, + -0.005242954008281231, + -0.011504584923386574, + -0.0205514095723629, + 0.022362390533089638, + -0.005711868871003389, + -0.0008802260854281485, + 0.0025446719955652952, + -0.022313883528113365, + 0.006289927754551172, + 0.012393906712532043, + 0.0019009244861081243, + -0.007785604801028967, + -0.005307632032781839, + 0.0004956956254318357, + -0.014002770185470581, + -0.03245214745402336, + 0.01426148135215044, + -0.0047053187154233456, + -0.012976008467376232, + 0.04572729021310806, + 0.04336654767394066, + 0.013622786849737167, + 0.0048346747644245625, + -0.0057361233048141, + 0.0030883706640452147, + 0.017091140151023865, + -0.022071341052651405, + -0.025515440851449966, + 0.0050812591798603535, + 0.0048265899531543255, + -0.0030337986536324024, + 0.048605456948280334, + 0.000787756871432066, + -0.0371251255273819, + -0.005097428802400827, + 0.041167497634887695, + 0.0008438447839580476, + -0.02629157528281212, + 0.011787551455199718, + 0.0023061721585690975, + -0.005643148440867662, + 0.00922468863427639, + 0.001987835392355919, + 0.0032096419017761946, + 0.0024577609729021788, + 0.02532140724360943, + -0.024060185998678207, + 0.008197926916182041, + 0.004499157890677452, + -0.02254025638103485, + 0.0008969008922576904, + -0.02318703569471836, + -0.027180897071957588, + -0.08977295458316803, + -0.01447976939380169, + 0.01106800977140665, + 0.02755279466509819, + 0.0013329715002328157, + -0.011456076987087727, + 0.02270195074379444, + 0.009774451144039631, + -0.012652618810534477, + -0.034408655017614365, + 0.016816260293126106, + 0.004430437460541725, + 0.016412023454904556, + 0.03162750229239464, + -0.009531908668577671, + -0.010267619974911213, + -0.007522850763052702, + -0.02148924022912979, + 0.012151364237070084, + -0.012442415580153465, + 0.007733053993433714, + 0.008990230970084667, + 0.029670996591448784, + -0.016250327229499817, + -0.0006083766929805279, + 0.03502309322357178, + -0.006035258527845144, + -0.00614036014303565, + -0.021473070606589317, + -0.012967923656105995, + 0.0002673017152119428, + 0.006981173064559698, + -0.022556426003575325, + -0.005182318389415741, + 0.0016007785452529788, + 0.017139649018645287, + 0.011156941764056683, + -0.006326309405267239, + 0.050384100526571274, + -0.002172773936763406, + 0.016323089599609375, + -0.004584047477692366, + -0.005562301259487867, + -0.003955459222197533, + 0.001459295628592372, + -0.011553093791007996, + -0.0008322229259647429, + -0.02241089940071106, + -0.004442564677447081, + 0.029444623738527298, + -0.006855859886854887, + 0.004640640690922737, + -0.0177217498421669, + -0.022281544283032417, + 0.004115132614970207, + -0.005922072101384401, + 0.031207097694277763, + -0.004034285433590412, + -0.004038327839225531, + -0.0021707527339458466, + 0.06047385558485985, + 0.008585994131863117, + -0.0048185051418840885, + -0.011488416232168674, + -0.019322529435157776, + 0.003296552924439311, + -0.0020494817290455103, + 0.02577415108680725, + 0.03203174099326134, + 0.005752292461693287, + 0.010574840009212494, + -0.004394056275486946, + 0.0008049369207583368, + 0.010696111246943474, + 0.012013924308121204, + 0.0066941650584340096, + 0.016767751425504684, + 0.013703634962439537, + 0.006548639386892319, + 0.002722536213696003, + -0.00867492612451315, + 0.011310551315546036, + 0.009919975884258747, + -0.022071341052651405, + -0.01606437936425209, + -0.008828536607325077, + 0.023235542699694633, + -0.010259535163640976, + -0.001083355164155364, + -0.008836621418595314, + 0.03466736525297165, + 0.016242243349552155, + 0.046309392899274826, + 0.03612262010574341, + -0.012531347572803497, + 0.04702084884047508, + -0.020260358229279518, + 0.024820152670145035, + -0.015506532043218613, + -0.009135756641626358, + 0.0007422802154906094, + -0.01156926341354847, + 0.0245614405721426, + -0.032258111983537674, + -0.006960961502045393, + -0.02545076236128807, + 0.0007331848610192537, + -0.007223715540021658, + -0.0049397763796150684, + -0.03599326312541962, + -0.0016563611570745707, + -0.008885129354894161, + -0.013913838192820549, + -0.013679380528628826, + -0.005372310057282448, + 0.0024254219606518745, + 0.0030196504667401314, + -0.009887637570500374, + -0.021068833768367767, + 0.00010567007848294452, + 0.009661264717578888, + 0.030236927792429924, + 0.015926938503980637, + -0.022847475484013557, + 0.008771942928433418, + 0.00989572238177061, + -0.0036927051842212677, + -0.006148444954305887, + 0.01723666675388813, + 0.01933869905769825, + 0.005618894472718239, + 0.019306359812617302, + -0.02593584731221199, + 0.007821986451745033, + -0.016880936920642853, + 0.023898491635918617, + 0.0363166518509388, + -0.003512819530442357, + 0.033600181341171265, + -0.03275936841964722, + 0.014835498295724392, + 0.010865890420973301, + 0.004284912254661322, + 0.0074217915534973145, + -0.0122807202860713, + -0.00032894787727855146, + -0.016040123999118805, + -0.010962908156216145, + -0.0013087172992527485, + -0.006293970160186291, + -0.009394467808306217, + -0.006285885348916054, + -0.0013915859162807465, + -0.01941954530775547, + -0.023769136518239975, + -0.024205712601542473, + -0.011577348224818707, + 0.023316390812397003, + 0.004175768233835697, + -0.020858630537986755, + -0.02270195074379444, + -0.007696672808378935, + 0.029282929375767708, + -0.014665719121694565, + 0.03851570188999176, + 0.001572481938637793, + -0.02706770971417427, + 0.0015694501344114542, + -0.006613317411392927, + -0.016315005719661713, + 0.0016614141641184688, + -0.011375229805707932, + -0.00521869957447052, + -0.014083617366850376, + 0.005982707720249891, + -0.0012632407015189528, + 0.0003910993109457195, + -0.004535539075732231, + 0.019629748538136482, + -0.006011004559695721, + -0.017430700361728668, + 0.01788344606757164, + 0.011827974580228329, + 0.021667104214429855, + -0.02278279699385166, + 0.02038971520960331, + 0.005707826465368271, + 0.0145040238276124, + -0.004450649488717318, + 0.01920934207737446, + 0.015183142386376858, + 0.03314743563532829, + -0.018869783729314804, + -0.011520754545927048, + 0.01106800977140665, + 0.003731107572093606, + 0.014415091834962368, + 0.03337380662560463, + -0.028425946831703186, + -0.02160242572426796, + -0.0037452559918165207, + -0.0053803944028913975, + 0.01578141376376152, + 0.00639098696410656, + -0.0028842310421168804, + -0.010340382345020771, + -0.04239637777209282, + 0.008104952052235603, + 0.009273196570575237, + -0.024383576586842537, + -0.012935584411025047, + 0.013582363724708557, + 0.009806789457798004, + -0.01633925922214985, + -0.0010368679650127888, + 0.0035997305531054735, + 0.012345397844910622, + -0.009685519151389599, + 0.0025386083871126175, + -0.021392222493886948, + 0.02803787961602211, + 0.007919003255665302, + -0.018028970807790756, + -0.037319160997867584, + 0.02014717273414135, + 0.0181583259254694, + 0.0034218663349747658, + -0.026598794385790825, + -0.01304877083748579, + 0.013800651766359806, + 0.007809859234839678, + -0.004212149418890476, + -0.010510162450373173, + 0.008096867240965366, + 0.004749784711748362, + 0.012151364237070084, + 0.02160242572426796, + -0.02448059245944023, + 0.02270195074379444, + -0.028878692537546158, + -0.012110941112041473, + -0.02402784861624241, + -0.013582363724708557, + 0.010873975232243538, + 0.014309990219771862, + -0.0023061721585690975, + -0.031821537762880325, + -0.013630871661007404, + 0.005663360469043255, + 0.01326705887913704, + -0.002898379461839795, + -0.012345397844910622, + -0.01434232946485281, + 0.012022009119391441, + -0.011027585715055466, + 0.015724819153547287, + -0.005202530417591333, + -0.00549358082935214, + 0.006779054645448923, + -0.0022374519612640142, + 0.006334393750876188, + 0.017171988263726234, + 0.006403114181011915, + -0.03444099426269531, + 0.01683242991566658, + -0.0045274547301232815, + -0.0029246548656374216, + -0.006237376946955919, + 0.010882060043513775, + -0.025434592738747597, + -0.012757720425724983, + -0.0007508702692575753, + -0.0173498522490263, + 0.025062695145606995, + -0.006395029369741678, + 0.0197429358959198, + 0.0029812478460371494, + -0.01718815788626671, + 0.0038543997798115015, + 0.017139649018645287, + -0.014641464687883854, + 0.007288393098860979, + -0.04158790409564972, + -0.003993861842900515, + 0.018109818920493126, + 0.012296889908611774, + 0.023316390812397003, + 0.015021447092294693, + 0.012264550663530827, + -0.0004297544655855745, + 0.003310701111331582, + 0.025466931983828545, + 0.035863906145095825, + -0.0001601789117557928, + 0.019953139126300812, + -0.013744058087468147, + -0.007603697944432497, + -0.000840307679027319, + -0.0021566045470535755, + -0.0072924355044960976, + 0.018902122974395752, + 0.010372721590101719, + -0.016169480979442596, + 0.009596586227416992, + -0.009151926264166832, + -0.00028043941711075604, + 0.00703776627779007, + 0.0013552046148106456, + 0.006997342687100172, + -0.0076239099726080894, + 0.011520754545927048, + -0.0016684882575646043, + -0.012701126746833324, + -0.007280308753252029, + -0.01877276599407196, + 0.018950631842017174, + 0.011278213001787663, + -0.011140772141516209, + -0.002520417794585228, + -0.013137702830135822, + 0.008303028531372547, + -0.010663772001862526, + -0.009362129494547844, + 0.02601669356226921, + -0.03670471906661987, + -0.009143841452896595, + 0.013299397192895412, + -0.017382191494107246, + 0.008529400452971458, + -0.0049599879421293736, + -0.02439974620938301, + 0.038580380380153656, + -0.011658195406198502, + 0.043916307389736176, + -0.0008110005292110145, + -0.009151926264166832, + 0.0023870195727795362, + 0.003468353534117341, + -0.0005436987848952413, + -0.0008665830828249454, + 0.023009169846773148, + 0.015918852761387825, + -0.010865890420973301, + -0.013129618018865585, + 0.006576936226338148, + 0.019548902288079262, + -0.0009226709953509271, + 0.030527979135513306, + 0.04065007343888283, + -0.003791743190959096, + -0.00567548768594861, + 0.019451884552836418, + 0.006006962154060602, + 0.007429876364767551, + 0.007935172878205776, + 0.038903769105672836, + -0.0025911591947078705, + 0.03799827769398689, + -0.021295206621289253, + -0.01381682138890028, + -0.007878579199314117, + 0.009216603823006153, + -0.0007402590126730502, + 0.026808997616171837, + 0.006540555041283369, + 0.015482277609407902, + 0.014051278121769428, + -0.009612755849957466, + -0.0018948609940707684, + -0.02763364277780056, + -0.0004239435656927526, + -0.01058292482048273, + -0.0038645057938992977, + 0.005958453752100468, + -0.0007170154131017625, + -0.014948684722185135, + 0.014212973415851593, + 0.015474192798137665, + 0.006293970160186291, + -0.0221360195428133, + -0.007506681140512228, + 0.01555503997951746, + -0.010405060835182667, + -0.006205038167536259, + -0.017301343381404877, + 2.0543451682897285e-5, + 0.011496500112116337, + 0.002120223129168153, + -0.02233005315065384, + 0.0002445633872412145, + -0.02014717273414135, + -0.015126548707485199, + 0.016161395236849785, + -0.013258974067866802, + 0.0025082905776798725, + 0.0022152187302708626, + -0.0050367931835353374, + 0.006354605779051781, + -0.03741617873311043, + -0.005121682770550251, + -0.01699412427842617, + 0.018885953351855278, + -0.009637010283768177, + 0.03290489315986633, + -0.01169053465127945, + 0.017818767577409744, + 0.005481454078108072, + 0.022637272253632545, + 0.008375790901482105, + -0.006152487359941006, + -0.037157464772462845, + -0.010647603310644627, + 0.008707265369594097, + -0.0021161807235330343, + -0.018821274861693382, + -0.011650110594928265, + 0.008464722894132137, + 0.016897106543183327, + 0.004830632358789444, + 0.013242804445326328, + -0.011924991384148598, + -0.003391548525542021, + -0.009952315129339695, + -0.014366582967340946, + -0.0221360195428133, + -0.0009499570005573332, + -0.009046824648976326, + -0.0018817232921719551, + 0.011278213001787663, + 0.02286364510655403, + 0.013218550011515617, + 0.0037129169795662165, + -0.0029388030525296926, + 0.011819889768958092, + 0.03204790875315666, + -0.024205712601542473, + 0.03314743563532829, + -0.009952315129339695, + 0.013420668430626392, + -0.011900737881660461, + -0.005723996087908745, + -0.00790687557309866, + 0.009693603962659836, + -0.03576689213514328, + -0.008965976536273956, + -0.0014198825228959322, + 0.020761612802743912, + -0.016816260293126106, + 0.0318700447678566, + 0.02205517143011093, + 0.01585417613387108, + -0.023413408547639847, + 0.035346485674381256, + -0.011650110594928265, + 0.001926189404912293, + 0.022281544283032417, + -0.005376352462917566, + -0.007749223615974188, + -0.029024217277765274, + 0.013711719773709774, + 0.012830482795834541, + 0.0017311449628323317, + -0.03119092807173729, + 0.013727888464927673, + 0.013283228501677513, + 0.009620840661227703, + 0.04297848045825958, + -0.009143841452896595, + -0.021618595346808434, + -0.015563124790787697, + 0.00920043420046568, + -0.025919677689671516, + -0.008068570867180824, + -0.0020525134168565273, + 0.011714788153767586, + -0.014803159050643444, + 0.0053278435952961445, + -0.007442003581672907, + -0.003258150303736329, + 0.0010884081711992621, + 0.0031712392810732126, + -0.025499271228909492, + -0.011197364889085293, + 0.014892091043293476, + 0.01751154661178589, + -0.016686903312802315, + 0.024577610194683075, + 0.0007847250672057271, + -0.00814941804856062, + 0.021101171150803566, + -0.023364899680018425, + 0.03188621625304222, + -0.02342957630753517, + 0.012693041935563087, + 0.013808736577630043, + -0.030172251164913177, + -0.0026234982069581747, + 0.004559793509542942, + 0.024658458307385445, + 0.0024840363766998053, + 0.0036522813607007265, + -0.03499075397849083, + -0.024205712601542473, + -0.0017705580685287714, + -0.0018968821968883276, + -0.011253958567976952, + -0.004964030347764492, + 0.010599094443023205, + 0.0021707527339458466, + -0.03175685927271843, + -0.011916907504200935, + 0.002732642227783799, + 0.0002270043478347361, + 0.005509750451892614, + -0.0031934722792357206, + -0.004333420656621456, + 0.006661825813353062, + -0.0004183853161521256, + -0.011270128190517426, + -0.00093681929865852, + -0.008545570075511932, + -0.009378298185765743, + 0.0003731612814590335, + -0.01385724451392889, + 0.013258974067866802, + 0.010348467156291008, + -0.004012052435427904, + -0.0038402515929192305, + -0.013598533347249031, + 0.01613714173436165, + -0.009257027879357338, + -0.006075682118535042, + -0.007704757619649172, + 0.006184826139360666, + 0.029670996591448784, + -0.0008120110724121332, + 0.007797732017934322, + -0.0050731743685901165, + -0.01555503997951746, + -0.011666280217468739, + 0.003227832494303584, + 0.015288244001567364, + -0.010898229666054249, + 0.020486731082201004, + -0.008278774097561836, + 0.09708155691623688, + 0.005982707720249891, + 0.006556724198162556, + 0.0021262867376208305, + 0.00672650383785367, + -0.0007968522259034216, + -0.001981772016733885, + 0.013153872452676296, + 0.01804514043033123, + -0.0025325447786599398, + 0.002625519409775734, + -0.019807614386081696, + 0.018077479675412178, + -0.00030444099684245884, + -0.02431889809668064, + -0.00036305535468272865, + 0.021731780841946602, + 0.015498447231948376, + 0.021052664145827293, + 0.012951754033565521, + -0.006811393424868584, + -0.011359060183167458, + -0.005348055623471737, + 0.02030886709690094, + -0.009257027879357338, + 0.015142718330025673, + 3.1565225071972236e-5, + -0.00010270146594848484, + 0.009143841452896595, + 0.03183770552277565, + -0.0007235842640511692, + -0.002384998369961977, + -0.016880936920642853, + -0.02229771390557289, + -6.884661706862971e-5, + 0.017139649018645287, + -0.022831305861473083, + 0.015603548847138882, + -0.0013663211138918996, + 0.014592955820262432, + -0.012191788293421268, + -0.010146348737180233, + 0.031740691512823105, + 0.03293723240494728, + -0.019144665449857712, + -0.0005608788342215121, + 0.010736535303294659, + -0.0012015944812446833, + 0.006002919748425484, + 0.01880510523915291, + -0.009329790249466896, + -0.029202081263065338, + 0.014706142246723175, + 0.006508215796202421, + 0.015708649531006813, + 0.0036623873747885227, + 0.012353482656180859, + -0.02370445802807808, + -0.008626418188214302, + -0.017931953072547913, + -0.0136955501511693, + -0.007227757945656776, + -0.017091140151023865, + -0.028797844424843788, + -0.0075188083574175835, + -0.005659318063408136, + -0.021958153694868088, + 0.00012569244427140802, + -0.004531496670097113, + -0.0009125650394707918, + -0.006637571845203638, + -0.0038624845910817385, + 0.00151993113104254, + -0.02488483116030693, + -0.006940749473869801, + 0.0018220982747152448, + 0.008666841313242912, + 0.031659841537475586, + 0.023235542699694633, + 0.003559306962415576, + -0.008537485264241695, + 0.006314182188361883, + 0.0016452446579933167, + -0.02650177851319313, + -0.010348467156291008, + -0.009362129494547844, + 0.011819889768958092, + -0.02876550517976284, + 0.01132672093808651, + -0.014698057435452938, + -0.034085266292095184, + -0.014067447744309902, + -0.005182318389415741, + 0.0013188231969252229, + -0.012224127538502216, + -0.011294381693005562, + -0.012984092347323895, + -0.015377175994217396, + -1.2758730917994399e-5, + 0.010502077639102936, + 0.008242392912507057, + 0.012636449187994003, + -0.0007715873653069139, + -0.0015411536442115903, + -0.00038099338416941464, + -0.0047659543342888355, + 0.022960662841796875, + 0.010712280869483948, + -0.008193884044885635, + -0.007603697944432497, + -0.009289366193115711, + -0.01159351784735918, + 0.003793764393776655, + 0.014681887812912464, + -0.03573455289006233, + -0.00286806165240705, + 0.01203817781060934, + 0.007955384440720081, + -0.005853352136909962, + -0.00743391877040267, + -0.010477823205292225, + 0.0016381704481318593, + -0.005663360469043255, + -0.005849309731274843, + -0.0017513568745926023, + 0.018578732386231422, + 0.0028761462308466434, + -0.0033349553123116493, + -0.021473070606589317, + -0.009410637430846691, + 0.019888460636138916, + 0.0229444932192564, + 0.03573455289006233, + -0.00047523112152703106, + 0.026760490611195564, + -0.0051782759837806225, + 0.0034420781303197145, + 0.008739604614675045, + 0.021085001528263092, + -0.022556426003575325, + 0.023009169846773148, + 0.010170603170990944, + -0.0020555451046675444, + 0.017576225101947784, + 0.00399588281288743, + 0.012749635614454746, + -0.007914960384368896, + -0.028652319684624672, + 0.008153460919857025, + -0.0029994386713951826, + 0.008092825300991535, + -0.033276788890361786, + 0.005158064421266317, + -0.008189842104911804, + 0.01804514043033123, + 0.006407156586647034, + -0.005938241723924875, + 0.037965938448905945, + -0.01486783754080534, + 0.011698619462549686, + -0.009653179906308651, + 0.00308432849124074, + -0.005295504815876484, + 0.0012642513029277325, + -0.020422054454684258, + -0.0049680727533996105, + 0.01577332802116871, + 0.0071145715191960335, + 0.02625923603773117, + -0.004446607083082199, + -0.011439907364547253, + 0.009725942276418209, + -0.008117078803479671, + -0.036640044301748276, + -0.0034178239293396473, + 0.0068599022924900055, + 0.004268742632120848, + 0.0022738331463187933, + -0.007971554063260555, + 0.03515245020389557, + -0.010914399288594723, + -0.01764090359210968, + 0.007995808497071266, + 0.009111502207815647, + 0.013469177298247814, + -0.024254221469163895, + 0.008505146950483322, + -0.01426148135215044, + 0.0071509527042508125, + -0.012587940320372581, + 0.001625032746233046, + 0.008367706090211868, + -0.013768312521278858, + -0.011415652930736542, + -0.008185799233615398, + -0.00035471798037178814, + 0.0009241868392564356, + 0.016129055991768837, + 0.007215630728751421, + -0.010906314477324486, + 0.0011116517707705498, + 0.0015957256546244025, + 0.008650671690702438, + 0.005881648510694504, + -0.005909944884479046, + -0.018093649297952652, + -0.022766629233956337, + -0.006661825813353062, + -0.007227757945656776, + 0.0010894187726080418, + -0.023413408547639847, + -0.02152157761156559, + 0.014601040631532669, + 0.006423326209187508, + -0.016816260293126106, + -0.006504173390567303, + 0.0016826365608721972, + 0.02410869486629963, + 0.0030418834649026394, + 0.01292749959975481, + 0.0047821239568293095, + 0.010211027227342129, + 0.004943818785250187, + -0.02997821755707264, + 0.005626979283988476, + 0.024900998920202255, + 0.017624733969569206, + 0.013558109290897846, + -0.0047214883379638195, + 0.013097278773784637, + 0.01385724451392889, + 0.009499569423496723, + -0.010073586367070675, + 0.013469177298247814, + -0.01780259795486927, + 0.029153572395443916, + 0.00777751998975873, + -0.00743391877040267, + 0.01707497052848339, + -0.00867492612451315, + -0.010122094303369522, + 0.006180783733725548, + -0.013970430940389633, + 0.013598533347249031, + 0.011253958567976952, + 0.0002114664821419865, + -9.78221942204982e-6, + -0.0010661750566214323, + 0.005291462410241365, + -3.074411870329641e-5, + -0.008169629611074924, + -0.021456900984048843, + -0.013355990871787071, + 0.020082494243979454, + 0.028264252468943596, + 0.010954823344945908, + -0.0012399969855323434, + 0.016048209741711617, + 0.004487030673772097, + -0.02787618339061737, + -0.007595613598823547, + 0.014843583106994629, + -0.006855859886854887, + -0.020292697474360466, + 0.0007862409693188965, + 0.02165093459188938, + -0.02165093459188938, + 0.0053278435952961445, + 0.008129206486046314, + 0.011795636266469955, + 0.006803309079259634, + 0.003896844806149602, + 0.0034420781303197145, + 0.00833536684513092, + -0.013865329325199127, + 0.013719804584980011, + 0.008497062139213085, + -0.002346595749258995, + 0.003951416816562414, + -0.012959838844835758, + 0.003151027485728264, + 0.00032768462551757693, + 0.008238350041210651, + -0.020082494243979454, + 0.0037654677871614695, + -0.02868465892970562, + 0.006350563373416662, + 0.031740691512823105, + -0.0073530711233615875, + 0.008965976536273956, + -0.0011480330722406507, + -0.015086125582456589, + 0.011949245817959309, + -0.015684396028518677, + 0.008084740489721298, + -0.006354605779051781, + 0.0021161807235330343, + -0.003993861842900515, + 0.021230528131127357, + 0.004575963132083416, + -0.0073086051270365715, + -0.012191788293421268, + -0.0050812591798603535, + -0.01605629362165928, + 0.014059362933039665, + 0.011431822553277016, + 0.023413408547639847, + -0.0026619008276611567, + -0.011310551315546036, + -0.008650671690702438, + -0.014237227849662304, + -0.0013097279006615281, + -0.0024193585850298405, + -0.015126548707485199, + 6.278305954765528e-5, + -0.01723666675388813, + 0.0028033836279064417, + 0.022071341052651405, + -0.00894172303378582, + -0.006698207464069128, + 0.004155556671321392, + 0.014900175854563713, + 0.005679530091583729, + 0.003947374410927296, + 0.005040835589170456, + -0.005707826465368271, + -0.013218550011515617, + 0.0002469635510351509, + -0.00521869957447052, + -0.02860381081700325, + 0.02079395204782486, + -0.011949245817959309, + -0.0011652131797745824, + -0.0051863607950508595, + -0.010857806541025639, + 0.015530785545706749, + -0.009725942276418209, + -0.0046608527190983295, + -0.00814941804856062, + 0.013355990871787071, + -0.019484223797917366, + -0.0035754763521254063, + -0.011706704273819923, + -0.017495376989245415, + 0.013283228501677513, + 0.017430700361728668, + -0.0038200397975742817, + -0.003947374410927296, + 0.007894748821854591, + 0.0047134035266935825, + 0.008642586879432201, + -0.004640640690922737, + 0.0024799939710646868, + 0.0038382303901016712, + 0.0007114571635611355, + -0.010211027227342129, + 0.021311374381184578, + 0.02553161047399044, + -0.014568701386451721, + -0.012773889116942883, + -0.0073166899383068085, + 0.023801475763320923, + -0.007336901966482401, + -0.013630871661007404, + 0.02200666256248951, + -0.0034501629415899515, + -0.0026073288172483444, + 0.01982378214597702, + -0.04394864663481712, + 0.010574840009212494, + -0.032144926488399506, + -0.009337875060737133, + -0.016331175342202187, + -0.010219112038612366, + -0.007902833633124828, + 0.014107871800661087, + 0.004240446258336306, + 0.0010297937551513314, + -0.012345397844910622, + -0.012935584411025047, + 0.013703634962439537, + 0.0036381331738084555, + -0.00043127036769874394, + -0.009798705577850342, + -0.0008190852240659297, + 0.011658195406198502, + 0.028911031782627106, + 0.0450805127620697, + 0.01197350025177002, + -0.009418722242116928, + -0.0048872255720198154, + -0.009523823857307434, + -0.005428903270512819, + 0.01135097537189722, + -0.0005265186773613095, + -0.001680615358054638, + -0.02423805184662342, + 0.01252326276153326, + 0.0011631919769570231, + 0.00316113349981606, + 0.002744769211858511, + -0.00015499962319154292, + 0.020098663866519928, + 0.016767751425504684, + 0.009297451004385948, + -0.021085001528263092, + 0.004491073079407215, + 0.010186772793531418, + 0.005234869197010994, + -0.008197926916182041, + 0.009523823857307434, + 0.008618333376944065, + -0.02394700050354004, + 0.013258974067866802, + 0.019144665449857712, + 0.016606057062745094, + -0.002081820508465171, + 0.006548639386892319, + 0.023041509091854095, + -0.01775408908724785, + 0.02908889576792717, + -0.0076239099726080894, + 0.021101171150803566, + 0.006589063443243504, + 0.008771942928433418, + -0.006293970160186291, + 0.029040386900305748, + -0.0033066587056964636, + -0.003908971790224314, + -0.004454691894352436, + -0.001973687205463648, + -0.01885361410677433, + -0.011860313825309277, + 0.005740165710449219, + -0.021618595346808434, + -0.010776958428323269, + 0.03372953459620476, + -0.018336189910769463, + 0.010130179114639759, + 0.012022009119391441, + -0.014245312660932541, + -0.007547105196863413, + 0.006431411020457745, + 0.0022960661444813013, + 0.006342478562146425, + -0.01039697602391243, + -0.003771531395614147, + 0.021311374381184578, + -0.004284912254661322, + -0.01675158180296421, + 0.0029448666609823704, + 0.018077479675412178, + -0.008375790901482105, + -0.0004418815951794386, + -0.0019716660026460886, + -0.01240199152380228, + 0.012458584271371365, + 0.0036745143588632345, + 0.018837444484233856, + -0.032500654458999634, + -0.004046412650495768, + -0.010849721729755402, + -0.008537485264241695, + 0.0029751844704151154, + -0.006281842943280935, + -0.003813976189121604, + 0.01570056565105915, + 0.01187648344784975, + -0.005691657308489084, + -0.0003698768559843302, + -0.010841636918485165, + 0.012466669082641602, + 0.009006400592625141, + 0.004567878320813179, + 0.019839951768517494, + 0.020535239949822426, + -0.005816970486193895, + 0.013946176506578922, + 0.00033197965240105987, + -0.0067911818623542786, + -0.010065501555800438, + -0.0030297564808279276, + -0.0035754763521254063, + -0.016412023454904556, + 0.01321046520024538, + -0.004499157890677452, + 0.0034279299434274435, + 0.006160572171211243, + -0.0016624246491119266, + 0.00920043420046568, + -0.0050893439911305904, + 0.008238350041210651, + -0.004121196456253529, + 0.00614036014303565, + 0.01249900832772255, + -0.012822397984564304, + 0.011059924960136414, + 0.009556163102388382, + -0.0027811506297439337, + -0.005420818459242582, + -0.008844706229865551, + 0.016371598467230797, + 0.013849159702658653, + 0.01042123045772314, + 0.011577348224818707, + 0.02059991843998432, + 0.008193884044885635, + 0.003941311035305262, + 0.016816260293126106, + 0.001213721581734717, + 0.011407568119466305, + -0.012636449187994003, + -0.029703335836529732, + 0.00867492612451315, + -0.015668226405978203, + 0.016638394445180893, + 0.009257027879357338, + -0.01213519461452961, + 0.01710730977356434, + 0.0029812478460371494, + -0.0032177267130464315, + -0.014051278121769428, + -0.010178687982261181, + -0.0007761350716464221, + -0.006702249404042959, + -0.0014734439318999648, + 0.026275405660271645, + 0.016929445788264275, + -0.0009747165022417903, + -0.0024739305954426527, + -0.020939476788043976, + 0.0029064640402793884, + -0.007963469251990318, + -0.007797732017934322, + 0.02047056145966053, + 0.008901298977434635, + 0.013744058087468147, + -0.001650297548621893, + 0.0245614405721426, + -0.0023041509557515383, + 0.016606057062745094, + 0.020826291292905807, + -0.00703776627779007, + -0.005719953682273626, + -0.0014350414276123047, + -0.024771643802523613, + 0.0045193699188530445, + 0.0033753791358321905, + 0.0033228283282369375, + 0.0027589176315814257, + -0.020616088062524796, + 0.0002713440917432308, + 0.02119818888604641, + 0.012490923516452312, + 0.030883707106113434, + -0.016242243349552155, + -0.01055867038667202, + 0.009725942276418209, + -0.0008413182804360986, + 0.008145376108586788, + 0.018902122974395752, + 0.0010292885126546025, + 0.01304877083748579, + -0.003520904341712594, + -0.006556724198162556, + 0.0026295618154108524, + 0.027051540091633797, + 0.006269716192036867, + -0.0032096419017761946, + 0.021214358508586884, + -0.02351042442023754, + -0.0015482277376577258, + -0.022750459611415863, + 0.012450499460101128, + -0.005800801329314709, + -0.006483961828052998, + -0.026841336861252785, + -0.0035350527614355087, + 0.007692630402743816, + -0.010615264065563679, + 0.005756334867328405, + -0.022265374660491943, + -0.015094210393726826, + -0.009273196570575237, + -0.008642586879432201, + 0.018433207646012306, + 0.0036603661719709635, + -0.0021384137216955423, + 0.01144799217581749, + -0.008408130146563053, + 0.03945353254675865, + -0.01747920922935009, + -0.02480398304760456, + -0.005517835263162851, + 0.003371336730197072, + 0.007539020385593176, + -0.01159351784735918, + -0.004830632358789444, + -0.023154696449637413, + -0.02402784861624241, + 0.008169629611074924, + 0.004208107478916645, + 0.001475465134717524, + 7.832091796444729e-5, + -0.01197350025177002, + 0.0069650039076805115, + -0.002271811943501234, + -0.0009029644425027072, + -0.0052389116026461124, + -0.009515739046037197, + -0.008731519803404808, + -0.008585994131863117, + 0.027892353013157845, + -0.014528278261423111, + 0.002688176231458783, + -0.017301343381404877, + 0.006277800537645817, + -0.007761350367218256, + 0.02734259143471718, + -0.009742111898958683, + -0.016088632866740227, + 0.0024658457841724157, + 0.011916907504200935, + 0.0020494817290455103, + 0.002075757132843137, + -0.0032520866952836514, + 0.009208519011735916, + 0.0084566380828619, + 0.019063817337155342, + -0.005307632032781839, + -0.0013521728105843067, + 0.004337463062256575, + -0.01027570478618145, + -0.012094771489501, + 0.004418310709297657, + 0.0011187259806320071, + -0.028328929096460342, + 0.006738631054759026, + 0.012992177158594131, + -0.01621798798441887, + 0.0159350223839283, + -0.002890294650569558, + -0.00130467489361763, + -0.004224276635795832, + 0.00922468863427639, + 0.0008473818306811154, + 0.008585994131863117, + 0.00793113000690937, + -0.017382191494107246, + 0.01159351784735918, + -0.01844937726855278, + 0.0043172514997422695, + -0.0026133921928703785, + 0.0035249467473477125, + 0.0035330315586179495, + -0.008185799233615398, + -0.006783097051084042, + -0.025515440851449966, + 0.03314743563532829, + -0.009717857465147972, + -0.017931953072547913, + -0.02435123734176159, + 0.008375790901482105, + 0.011270128190517426, + -0.0004772523243445903, + -0.02022802084684372, + 0.006532470230013132, + 0.006164614576846361, + -0.00839196052402258, + -0.01836852915585041, + 0.012418161146342754, + -0.0003006512706633657, + -0.013461092486977577, + 0.022362390533089638, + -0.008780027739703655, + 0.010194857604801655, + 0.002056555822491646, + -0.012143279425799847, + 0.00017748531536199152, + -0.043107833713293076, + -0.020939476788043976, + 0.017220497131347656, + -0.0003448647039476782, + -0.013339821249246597, + -1.4929925782780629e-5, + 0.0015239735366776586, + 0.0019504436058923602, + -0.0033349553123116493, + 0.0030216716695576906, + 0.0032399597112089396, + -0.024189542979002, + -0.012571770697832108, + -0.020422054454684258, + -0.026873676106333733, + 0.0022293671499937773, + 0.006863944232463837, + 0.009038739837706089, + -0.009410637430846691, + -0.01614522561430931, + -0.0006725493003614247, + -0.007886664010584354, + -0.006184826139360666, + 0.005271250382065773, + -0.007215630728751421, + 0.02464228868484497, + 0.0031853877007961273, + 0.015361006371676922, + 0.005562301259487867, + 0.012175618670880795, + 0.006298012565821409, + 0.013873414136469364, + -0.000696298258844763, + -0.014892091043293476, + -0.010898229666054249, + -0.01502953190356493, + -0.01747920922935009, + -0.006467792205512524, + -0.0067911818623542786, + -0.01715581864118576, + 0.019031478092074394, + 0.005202530417591333, + -0.009095332585275173, + -0.0016118950443342328, + -0.002843807451426983, + -0.0051863607950508595, + -0.01156926341354847, + 0.0072641391307115555, + 0.027698319405317307, + -0.009442976675927639, + 0.007223715540021658, + 0.01597544737160206, + 0.0030418834649026394, + -0.008303028531372547, + 0.017834937199950218, + 0.0021242655348032713, + -0.0014663697220385075, + -0.00015803141286596656, + 0.007821986451745033, + 0.005436987616121769, + 0.02480398304760456, + -0.02402784861624241, + -0.014641464687883854, + -0.012418161146342754, + 0.011504584923386574, + -0.0002950930211227387, + -0.022281544283032417, + -0.008141333237290382, + 0.005934199318289757, + -0.01011401042342186, + 0.01570056565105915, + 0.001340045710094273, + -0.003415802726522088, + 0.022685781121253967, + -0.010914399288594723, + 0.01678392104804516, + 0.003296552924439311, + 0.02237856015563011, + -0.01933869905769825, + 0.011480331420898438, + 0.01799663156270981, + 0.02714855782687664, + 0.015361006371676922, + -0.0024941423907876015, + 0.010970992036163807, + -0.009806789457798004, + 0.014641464687883854, + -0.0027690234128385782, + -0.004454691894352436, + 0.0006311150500550866, + 0.02629157528281212, + -0.0035006925463676453, + -0.010324213653802872, + -0.010243365541100502, + -0.025919677689671516, + -0.009701687842607498, + -0.028911031782627106, + 0.010809297673404217, + -0.0036927051842212677, + 0.0050731743685901165, + 0.026469439268112183, + -0.0014552532229572535, + -0.001271325396373868, + -0.012199873104691505, + 0.003191451309248805, + -0.015207395888864994, + 0.01003316231071949, + 0.014083617366850376, + 0.027698319405317307, + 0.0013319608988240361, + 0.02750428579747677, + 0.015288244001567364, + 0.0053278435952961445, + -0.012482838705182076, + -0.0030358198564499617, + 0.025677135214209557, + 0.015304413624107838, + -0.005744208116084337, + -0.030172251164913177, + -0.018481716513633728, + -0.017851106822490692, + 0.00657289382070303, + -0.0009969495004042983, + -0.020098663866519928, + -0.026873676106333733, + -0.01618565060198307, + 0.017220497131347656, + -0.008545570075511932, + 0.020729273557662964, + 0.011318636126816273, + 0.0012015944812446833, + 0.0005664370837621391, + 0.000906501489225775, + -0.0013612681068480015, + 0.00771688437089324, + 0.005141894798725843, + -0.002837743842974305, + -0.0007023618090897799, + -0.006087809335440397, + 0.003310701111331582, + 0.017851106822490692, + -0.015207395888864994, + 0.010841636918485165, + -0.0005325822858139873, + -0.0007427855161949992, + -0.03447333350777626, + 0.014212973415851593, + 0.005004454404115677, + 0.0015704607358202338, + 0.001790769980289042, + -0.028474455699324608, + 0.003904929617419839, + -0.003957480192184448, + -0.002605307614430785, + 0.001707901363261044, + 0.0004623460699804127, + -0.0008342441287823021, + -0.008933638222515583, + 0.002475951798260212, + 0.019063817337155342, + 0.006395029369741678, + 0.014698057435452938, + -0.019888460636138916, + 0.004163641016930342, + -0.007514765951782465, + 0.008513231761753559, + 0.008303028531372547, + -0.009831043891608715, + -0.002979226876050234, + -0.0005487517337314785, + -0.024011678993701935, + 0.0036745143588632345, + 0.017786428332328796, + 0.003993861842900515, + 0.005424860864877701, + -0.013388330116868019, + -0.005226784385740757, + -0.008658756501972675, + -0.008683010935783386, + 0.00783007126301527, + -0.006730546243488789, + 0.0003984261129517108, + 0.027164727449417114, + -0.0024739305954426527, + -0.006237376946955919, + 0.007280308753252029, + -0.02588733844459057, + -0.02774682827293873, + -0.004709361121058464, + 0.002752854023128748, + -0.0008544559823349118, + -0.012030092999339104, + 0.010849721729755402, + -0.00237691355869174, + 0.012579855509102345, + -0.00549358082935214, + 0.009499569423496723, + -0.00434959027916193, + 0.0002715967420954257, + -0.00223947293125093, + 0.010243365541100502, + -0.013444922864437103, + 0.006289927754551172, + -0.005869521293789148, + 0.015247819945216179, + -0.026550287380814552, + 0.0035451585426926613, + 0.02342957630753517, + -0.0020575663074851036, + -0.005445072427392006, + 0.026922184973955154, + 0.01880510523915291, + 0.002056555822491646, + 0.024706965312361717, + 0.009839128702878952, + 0.0016947636613622308, + -0.011189280077815056, + 0.01861107163131237, + 0.002688176231458783, + -0.006176741328090429, + 0.004385971464216709, + 0.007842198014259338, + -0.002075757132843137, + -0.012175618670880795, + -0.016476700082421303, + -0.008836621418595314, + -0.010219112038612366, + -0.035055432468652725, + -4.146587525610812e-5, + -0.009887637570500374, + 0.004325335845351219, + -0.012127110734581947, + 0.003688662778586149, + 0.0009236815967597067, + 0.0030722012743353844, + 0.008893214166164398, + 0.017333682626485825, + 0.008634502999484539, + -0.015668226405978203, + -0.0073530711233615875, + -0.030624995008111, + -0.02330022118985653, + 0.015263989567756653, + 0.0009312609909102321, + 0.015716735273599625, + -0.01011401042342186, + -0.017366021871566772, + -0.016686903312802315, + -0.007530935574322939, + -0.02496567741036415, + -0.022637272253632545, + 0.014520193450152874, + 0.006281842943280935, + 0.003634090768173337, + -0.00620099576190114, + -0.010671856813132763, + -0.008788112550973892, + 0.0021182019263505936, + -0.015158887952566147, + 0.01221604272723198, + 0.014997192658483982, + 0.019241681322455406, + -0.008683010935783386, + 0.004883183166384697, + 0.004749784711748362, + -0.007385410368442535, + -0.0015108358347788453, + 0.016622226685285568, + -0.012959838844835758, + -0.004535539075732231, + -0.0038079125806689262, + -0.012490923516452312, + 0.001760452170856297, + 0.011245873756706715, + 0.0006902347085997462, + 0.004899352788925171, + -0.004838717170059681, + -0.0026457312051206827, + -0.008885129354894161, + -0.022507917135953903, + 0.0006821499555371702, + -0.005788674112409353, + -0.026954524219036102, + 0.001011603162623942, + -0.021262867376208305, + 0.015078040771186352, + -0.01355002447962761, + 0.00402417965233326, + -0.015328667126595974, + -0.02351042442023754, + 0.0039029084146022797, + -0.007425833959132433, + -0.00021563518384937197, + -0.01597544737160206, + 0.03094838559627533, + 0.010898229666054249, + 0.019144665449857712, + -0.009046824648976326, + -0.009273196570575237, + -0.009240858256816864, + 0.017204327508807182, + -0.020017817616462708, + 0.002029269700869918, + 0.0038725906051695347, + -0.016735412180423737, + 0.011585433036088943, + -0.00107223866507411, + 0.003634090768173337, + 0.0016715200617909431, + 0.020777782425284386, + -0.021715613082051277, + -0.006952876690775156, + -0.03284021466970444, + 0.02208751067519188, + -0.016242243349552155, + -0.0122807202860713, + -0.032306622713804245, + 0.007724969182163477, + 0.00999273918569088, + -0.006682037841528654, + -0.010097840800881386, + 0.013994685374200344, + 0.0165413785725832, + -0.016007784754037857, + 0.0022233035415410995, + -0.007078189868479967, + -0.0050731743685901165, + 0.008408130146563053, + -0.00044339746818877757, + -0.016638394445180893, + 0.022912153974175453, + 0.02698686346411705, + 0.01804514043033123, + -0.036154959350824356, + -0.0047134035266935825, + -0.007983680814504623, + 0.02431889809668064, + 0.02063225768506527, + 0.02197432331740856, + 0.01569247990846634, + 0.0021182019263505936, + 0.004325335845351219, + 0.02245940826833248, + 0.01122970413416624, + -0.015635887160897255, + 0.007021596655249596, + 0.0013572258176282048, + -0.006330351810902357, + -0.015183142386376858, + -0.01422105822712183, + -0.026437100023031235, + 0.003466332331299782, + -0.010712280869483948, + -0.006411198992282152, + -0.01578141376376152, + -0.021101171150803566, + -0.00567548768594861, + -0.015724819153547287, + 0.014964854344725609, + 0.006580978631973267, + 0.013622786849737167, + 0.0011369165731593966, + -0.0024880787823349237, + 0.0002918085956480354, + 0.013364075683057308, + -0.004919564351439476, + -0.0026639217976480722, + -0.002042407402768731, + -0.010000823996961117, + 0.010736535303294659, + -0.011617771349847317, + -0.030236927792429924, + -0.02192581631243229, + -0.0002824606199283153, + -0.018109818920493126, + 0.0073975371196866035, + 0.012191788293421268, + -0.005998877342790365, + 0.000478010275401175, + 0.019160835072398186, + 0.012507093138992786, + 0.02483632229268551, + 0.0009742112015374005, + 0.0050893439911305904, + -0.018821274861693382, + -0.014148294925689697, + -0.011827974580228329, + -0.01637968420982361, + 0.0033592095132917166, + 0.0009297451470047235, + 0.01565205678343773, + 0.001677583553828299, + 0.029121235013008118, + 0.001744282664731145, + 0.0072722239419817924, + 0.005695699248462915, + -0.003991840407252312, + 0.013121533207595348, + 0.02407635562121868, + 0.002451697364449501, + 0.007199461106210947, + 0.019565071910619736, + 0.0026376463938504457, + -0.012151364237070084, + -0.002451697364449501, + 0.005756334867328405, + -0.018352359533309937, + 0.01613714173436165, + 0.007696672808378935, + 0.0009095332934521139, + -0.008909383788704872, + 0.005821012891829014, + -0.020454391837120056, + 0.0049761575646698475, + 0.009354044683277607, + 0.0072115883231163025, + -0.009637010283768177, + 0.006601190194487572, + -0.004297039471566677, + 0.01027570478618145, + -0.023720627650618553, + -0.011253958567976952, + 0.011771381832659245, + -0.010623348876833916, + 0.00044238686677999794, + -0.005780589301139116, + 0.0070701055228710175, + 0.004082793835550547, + 0.011892653070390224, + 0.004313209094107151, + -0.026000523939728737, + -0.01739836111664772, + 0.0005649212398566306, + -0.019403375685214996, + -0.005364225246012211, + 0.005574428476393223, + 0.004313209094107151, + 0.0019170939922332764, + -0.00540060643106699, + 0.0050812591798603535, + 0.014115956611931324, + -0.01397851575165987, + 0.00028675561770796776, + 0.003003481077030301, + -0.019484223797917366, + -0.0012470711953938007, + 0.019645918160676956, + 0.00787049438804388, + -0.015926938503980637, + 0.0012167533859610558, + 0.01486783754080534, + 0.015344836749136448, + -0.011868398636579514, + 0.01132672093808651, + 0.014641464687883854, + 0.01715581864118576, + 0.01213519461452961, + 0.00540060643106699, + -0.012224127538502216, + 0.009734027087688446, + -0.02936377562582493, + 0.011423737742006779, + 0.017851106822490692, + 0.0023284051567316055, + -0.005655275657773018, + 0.005707826465368271, + -0.014819328673183918, + -0.004276827443391085, + 0.007223715540021658, + 0.0036846203729510307, + 0.0006124190986156464, + -0.005154022015631199, + 0.0047214883379638195, + 0.004434479866176844, + -0.016654564067721367, + 0.0049316915683448315, + 0.0028619980439543724, + 0.012846652418375015, + 0.013614702969789505, + -0.026065202429890633, + 0.018384698778390884, + 0.009701687842607498, + -0.00012499766307882965, + -0.007821986451745033, + -0.005295504815876484, + -0.006580978631973267, + 0.005998877342790365, + -0.022022832185029984, + 0.006920537445694208, + 0.010744620114564896, + -0.0018220982747152448, + -0.013865329325199127, + -0.011989669874310493, + -0.002122244331985712, + -0.010372721590101719, + 0.0028337014373391867, + 0.013808736577630043, + 0.007134783081710339, + 0.00018632799037732184, + -0.022443238645792007, + -0.01791578345000744, + -0.005566343665122986, + -0.03350316360592842, + -0.006969045847654343, + -0.01917700469493866, + 0.018190665170550346, + -0.0026982820127159357, + -0.011916907504200935, + 0.003783658379688859, + 0.008351536467671394, + 0.006427368614822626, + 0.01804514043033123, + -0.011908822692930698, + -0.032468315213918686, + 0.010227195918560028, + -0.002542650792747736, + 0.010251450352370739, + -0.011658195406198502, + -0.007470299955457449, + -0.007591571193188429, + 0.006209080573171377, + -0.005016581155359745, + -0.010219112038612366, + 0.004846801981329918, + -0.0038099337834864855, + -0.016242243349552155, + -0.016032040119171143, + -0.0036098365671932697, + -0.01775408908724785, + -0.008650671690702438, + 0.015223565511405468, + 0.005085301585495472, + 0.001351162209175527, + -0.02334873005747795, + -0.012693041935563087, + 0.0004620934196282178, + 0.035702213644981384, + -0.0075632743537425995, + 0.012167533859610558, + 0.03398824855685234, + -0.0011955309892073274, + 0.004672979936003685, + 0.027051540091633797, + 0.00020401336951181293, + -0.01885361410677433, + 0.007652206812053919, + -0.004187895450741053, + 0.008618333376944065, + -0.01840086840093136, + -0.006475877016782761, + 0.012660703621804714, + -0.002249578945338726, + 0.029379945248365402, + -0.004499157890677452, + -0.0039029084146022797, + -0.024820152670145035, + 0.019225511699914932, + -0.022313883528113365, + 0.026792829856276512, + -0.011189280077815056, + 0.00130467489361763, + -0.016412023454904556, + -0.005113597959280014, + 4.775049819727428e-5, + -0.0007331848610192537, + -0.01982378214597702, + 0.0011914885835722089, + 0.009062993340194225, + -0.00243754917755723, + 0.0014875922352075577, + -0.015401430428028107, + 0.01880510523915291, + -0.010405060835182667, + 0.004786166362464428, + 0.01751154661178589, + 0.027374930679798126, + -0.011407568119466305, + -0.0025669049937278032, + -0.0005406669806689024, + 0.01213519461452961, + 0.005994834937155247, + -0.01998547837138176, + -0.01070419605821371, + 0.014067447744309902, + 0.018902122974395752, + -0.005740165710449219, + -0.011739042587578297, + -0.007688587997108698, + -0.026307744905352592, + -0.0023526593577116728, + 0.0014208931243047118, + -0.02022802084684372, + 0.0044668191112577915, + 0.015999700874090195, + -0.027762997895479202, + 0.0016088633565232158, + -0.0305926576256752, + -0.013768312521278858, + 0.0038301455788314342, + 0.01249900832772255, + 0.005574428476393223, + -0.00614036014303565, + -0.0035330315586179495, + -0.0012369652977213264, + -0.02561245672404766, + -0.004588089883327484, + 0.010647603310644627, + 0.0603768415749073, + 0.027924692258238792, + 0.008375790901482105, + -0.014067447744309902, + -0.0008170640794560313, + -0.0314011313021183, + 0.005509750451892614, + -0.008739604614675045, + -0.02087479829788208, + -0.01342875324189663, + 0.00031050454708747566, + -0.015967361629009247, + 0.011213534511625767, + 0.005687614902853966, + -0.023041509091854095, + 0.005481454078108072, + 0.0008271699771285057, + -0.01110843289643526, + -0.004240446258336306, + -0.0017230602679774165, + 5.011907342122868e-5, + 0.0027427480090409517, + -0.012304974719882011, + -0.016169480979442596, + 0.01555503997951746, + -0.008812366984784603, + -0.007094359491020441, + -0.007975596003234386, + 0.017269005998969078, + 0.0026659430004656315, + 0.029751844704151154, + 0.005958453752100468, + -0.02682516723871231, + 0.004434479866176844, + -0.0009969495004042983, + 0.011625856161117554, + 0.0026437100023031235, + 0.016234157606959343, + 0.00777751998975873, + 0.0012278698850423098, + -0.04107047989964485, + -0.0073005203157663345, + 0.004171725828200579, + -0.0189344622194767, + -0.015951192006468773, + 0.00422831904143095, + 0.010671856813132763, + 0.013711719773709774, + 0.0006346520967781544, + -0.005473369266837835, + -0.0015603548381477594, + 0.007349028717726469, + -0.015449938364326954, + 0.01502953190356493, + -0.004822547547519207, + 0.011334805749356747, + 0.014156379736959934, + -0.01799663156270981, + -0.004078751429915428, + -0.00505700521171093, + -0.001017161412164569, + -0.010833552107214928, + 0.010914399288594723, + 0.030835198238492012, + 0.00033349552541039884, + 0.0076158251613378525, + 0.006099936552345753, + 0.0018382677808403969, + -0.0029751844704151154, + 0.00660523260012269, + 0.03563753515481949, + 0.0007736085681244731, + -0.012798143550753593, + -0.009329790249466896, + -0.01581375114619732, + -0.014415091834962368, + -0.02949313260614872, + -0.02278279699385166, + -0.015223565511405468, + 0.013679380528628826, + -0.0033895273227244616, + 0.003466332331299782, + -0.0031793240923434496, + -0.0034643111284822226, + -0.010211027227342129, + -0.015627803280949593, + -0.005821012891829014, + 0.008990230970084667, + 0.01159351784735918, + 0.00422831904143095, + -0.020535239949822426, + 0.006431411020457745, + -0.005647190846502781, + 0.013541939668357372, + -0.0003794774820562452, + -0.006819478236138821, + -0.013881498947739601, + 0.006738631054759026, + 0.016800090670585632, + 0.012515177950263023, + 0.005618894472718239, + 0.006496088579297066, + 0.0129032451659441, + 0.007179249078035355, + -0.013558109290897846, + -0.02561245672404766, + 0.00799176562577486, + 0.0038483364041894674, + -0.006831605453044176, + 0.01718815788626671, + -0.022427069023251534, + 0.005893775727599859, + -0.006289927754551172, + 0.005663360469043255, + 0.020939476788043976, + 0.021230528131127357, + 0.009653179906308651, + 0.0022111765574663877, + 0.013218550011515617, + 0.005651233252137899, + -0.01139139849692583, + 0.017252836376428604, + 0.03337380662560463, + -0.005534004885703325, + 0.009863383136689663, + 0.015449938364326954, + 0.012353482656180859, + 0.0338912308216095, + -0.001978740096092224, + -0.019645918160676956, + 0.006900325883179903, + 0.0027730658184736967, + 0.010793128050863743, + -0.013258974067866802, + 0.010243365541100502, + -0.014964854344725609, + -0.004280869849026203, + -5.378247078624554e-5, + 0.018028970807790756, + -0.01027570478618145, + -0.0261783879250288, + 0.01678392104804516, + 0.0017321555642411113, + -0.00895789172500372, + -0.008327282033860683, + 0.005998877342790365, + -0.021068833768367767, + 0.009046824648976326, + 0.007910918444395065, + 0.013768312521278858, + -0.0034744171425700188, + -0.026922184973955154, + 0.005647190846502781, + -0.0021808587480336428, + -0.009539993479847908, + 0.005348055623471737, + -0.009135756641626358, + 0.021699443459510803, + -0.010720365680754185, + 0.010938653722405434, + -0.006209080573171377, + 0.0024335067719221115, + -0.007078189868479967, + 0.021392222493886948, + 0.0017180072609335184, + -0.006576936226338148, + -0.007575401570647955, + 0.019532732665538788, + 0.0018342254916206002, + 0.0090791629627347, + -0.021085001528263092, + -0.0023789347615092993, + 0.004604259505867958, + 0.0075026387348771095, + 0.0016866789665073156, + 0.009944230318069458, + 0.0003766983572859317, + -0.007163079921156168, + -0.008642586879432201, + -0.0036441965494304895, + 0.01670307293534279, + 0.02334873005747795, + 0.03130411356687546, + -0.009774451144039631, + -0.0011914885835722089, + 0.020696934312582016, + -0.010073586367070675, + 0.002172773936763406, + 0.015805667266249657, + 0.014762735925614834, + 0.015918852761387825, + 0.012102856300771236, + -0.02427038922905922, + -0.008917468599975109, + -0.0054329452104866505, + 0.01276580523699522, + 0.003943332005292177, + 0.004224276635795832, + -0.055525995790958405, + 0.0013168021105229855, + 0.01381682138890028, + 0.004426395054906607, + 0.0007781562162563205, + 0.015061871148645878 + ], + "56d01d77-8e38-448c-b416-764d64927354": [ + -0.009231729432940483, + -0.018093202263116837, + -0.016896039247512817, + 0.0553903765976429, + 0.002952795708552003, + -0.01248998660594225, + 0.035445891320705414, + 0.02141316793859005, + -0.02423946000635624, + 0.026905307546257973, + -0.0032119753304868937, + -0.012860243208706379, + 0.025942640379071236, + 0.005236044526100159, + 0.023856861516833305, + 0.0539587177336216, + -0.02638694830238819, + 0.012360396794974804, + 0.03586551547050476, + -0.018315356224775314, + 0.02769518829882145, + -0.020030878484249115, + -0.02769518829882145, + -0.03152117133140564, + 0.00314409495331347, + 0.015007730573415756, + -0.0018481971928849816, + 0.007614942267537117, + -0.048824492841959, + 0.0070472159422934055, + 0.022511595860123634, + -0.004723856225609779, + -0.005658753681927919, + 0.0014555709203705192, + 0.02623884566128254, + -0.022733749821782112, + 0.0025948812253773212, + 0.012675114907324314, + -0.04704726114869118, + -0.01303302962332964, + 0.011002789251506329, + 0.037247806787490845, + 0.0298426765948534, + -0.029768625274300575, + -0.017624210566282272, + 0.044554200023412704, + -0.032508522272109985, + 0.0034742404241114855, + 0.01875966414809227, + -0.008670173585414886, + -0.008583780378103256, + -0.01180501189082861, + 0.023116348311305046, + 0.025621751323342323, + 0.006818891037255526, + -0.0676828920841217, + 0.015526089817285538, + -0.012348054908216, + -0.0011963914148509502, + -0.06501704454421997, + 0.010885541327297688, + 0.007368104998022318, + 0.00334465061314404, + 0.014279560185968876, + -0.004285719245672226, + 0.03117559850215912, + -0.019401442259550095, + -0.024128383025527, + -0.031990163028240204, + 0.00010345970076741651, + 0.029250266030430794, + 0.04976247623562813, + 0.007830925285816193, + 0.018154911696910858, + 0.029423052445054054, + -0.018377065658569336, + 0.03593956679105759, + 0.038679465651512146, + -0.00887998566031456, + -0.01773528754711151, + 0.008608464151620865, + -0.020993545651435852, + 0.010151199996471405, + -0.002226167358458042, + 0.0413946807384491, + 0.013983354903757572, + 0.015452038496732712, + -0.018265988677740097, + 0.03337245434522629, + -0.03751932829618454, + -0.0024066674523055553, + 0.009083626791834831, + 0.0036778815556317568, + -0.022054946050047874, + -0.006757181603461504, + 0.01690838113427162, + 0.014365953393280506, + -0.014131457544863224, + -0.003529778914526105, + -0.03993833810091019, + 0.00660290801897645, + -0.00982413999736309, + 0.029916727915406227, + -0.028509752824902534, + 0.017537817358970642, + -0.014736209996044636, + -0.007874121889472008, + -0.018722638487815857, + -0.007676651701331139, + 0.06980569660663605, + 0.004588095471262932, + -0.014082089997828007, + -0.002112004905939102, + 0.00047747662756592035, + -0.058549899607896805, + -0.019549544900655746, + -0.0365566611289978, + -0.007775386795401573, + -0.061462581157684326, + -0.03556931018829346, + 0.02638694830238819, + 0.0064609763212502, + -0.004976864904165268, + -0.0028262913692742586, + -0.034878164529800415, + 0.017661236226558685, + -0.0019207056611776352, + 0.03292814642190933, + 0.006177112925797701, + 0.032311052083969116, + -0.026683153584599495, + -0.0029682230670005083, + -0.001820427947677672, + -0.008417164906859398, + 0.024375220760703087, + 0.013588414527475834, + 0.021635321900248528, + 0.05410682037472725, + 0.00868251547217369, + 0.0014871970051899552, + -0.0633879154920578, + -0.014254876412451267, + -0.0018188852118328214, + -0.001072972547262907, + 0.006303617265075445, + 0.0010220622643828392, + -0.0002466448349878192, + 0.03349587321281433, + -0.02075904980301857, + -0.015254568308591843, + -0.049293484538793564, + -0.025745170190930367, + -0.0005843110848218203, + -0.008238207548856735, + 0.03971618413925171, + -0.05119413509964943, + 0.020228348672389984, + 0.009151507169008255, + 0.023967938497662544, + 0.05978408828377724, + 0.03265662491321564, + -0.022079629823565483, + -0.011626054532825947, + 0.03917314112186432, + 0.052527058869600296, + 0.002102748490869999, + 0.04613396152853966, + 0.004041966982185841, + 0.0033292232546955347, + 0.006399266887456179, + 0.025547700002789497, + -0.04650421813130379, + 0.026855939999222755, + 0.013859936036169529, + -0.017611868679523468, + -0.022338809445500374, + 0.02912684716284275, + 0.027053410187363625, + 0.0058531383983790874, + -0.011002789251506329, + 0.003795129247009754, + 0.007571745663881302, + 0.014365953393280506, + 0.0026180222630500793, + 7.086941332090646e-5, + 0.0035081806126981974, + 0.023906229063868523, + 0.00013257883256301284, + -0.03117559850215912, + 0.00919470377266407, + 0.025572383776307106, + 0.01875966414809227, + -0.015896346420049667, + -0.014995388686656952, + -0.025745170190930367, + -0.03695160150527954, + 0.03709970414638519, + 0.002631906885653734, + -0.011792670004069805, + 0.0442579947412014, + 6.262541864998639e-5, + -0.04359153285622597, + -0.04502319172024727, + 0.02712746150791645, + -0.008954036980867386, + 0.016945406794548035, + -0.03310093283653259, + 0.012372738681733608, + 0.03477942943572998, + -0.062005624175071716, + 0.03347118943929672, + -0.05267516151070595, + -0.015464380383491516, + -0.02532554604113102, + -0.013144106604158878, + 0.029102163389325142, + 0.008441848680377007, + 0.025091050192713737, + -0.010169712826609612, + -0.02804076112806797, + 0.008633147925138474, + 0.01921631395816803, + 0.0015597055898979306, + -0.0336933434009552, + -0.02934900112450123, + 0.004588095471262932, + -0.02692999131977558, + 0.010484430938959122, + -0.022647356614470482, + 0.002119718585163355, + 0.02986736036837101, + -0.018907766789197922, + 0.012810875661671162, + 0.01567419245839119, + -0.005273070186376572, + 0.019895117729902267, + 0.02019132301211357, + -1.0413465133751743e-5, + -0.02552301622927189, + 0.009256413206458092, + -0.018809031695127487, + -0.01223697792738676, + 0.015155833214521408, + -0.023832177743315697, + 0.017722945660352707, + 0.01080531906336546, + 0.032903462648391724, + 0.032705992460250854, + 0.005084856413304806, + 0.008485045284032822, + 0.0037149072159081697, + 0.009441541507840157, + -0.014254876412451267, + -0.0005175877595320344, + -0.02915153093636036, + 0.03766743093729019, + 0.03154585510492325, + -0.02204260416328907, + -0.0028031503316015005, + 0.0011123123113065958, + 5.44296381121967e-5, + 0.032508522272109985, + 0.0012048764619976282, + 0.05331693962216377, + 0.002497688867151737, + -0.016550466418266296, + 0.030286982655525208, + -0.008065421134233475, + 0.008090104907751083, + -0.0029080563690513372, + 0.01556311547756195, + 0.011391558684408665, + -0.016945406794548035, + 0.005300839431583881, + 0.009311951696872711, + -0.00013373588444665074, + 0.0362604558467865, + -0.00828140415251255, + 0.027942026033997536, + 0.0059333606623113155, + -0.020635630935430527, + 0.029916727915406227, + -0.0018497399287298322, + 0.0019623595289885998, + -0.011391558684408665, + 0.023363186046481133, + -0.045072559267282486, + -0.013650123961269855, + -0.040876321494579315, + -0.01392164546996355, + 0.021598296239972115, + -0.007380446884781122, + 0.01639002189040184, + -0.01613084226846695, + -0.005384146701544523, + -0.012045678682625294, + -0.012187610380351543, + 0.015377987176179886, + 0.010860857553780079, + 0.012983662076294422, + -0.031101547181606293, + -0.00583154009655118, + 0.020919494330883026, + -0.028559120371937752, + 0.020796075463294983, + -0.030879393219947815, + 0.018154911696910858, + 0.02530086226761341, + 0.0038753515109419823, + 0.012786191888153553, + -0.00782475434243679, + -0.025165101513266563, + -0.033792078495025635, + -0.021030571311712265, + 0.012712140567600727, + 0.009077455848455429, + -0.00040419670403935015, + 0.016254261136054993, + -0.02789265848696232, + -0.009034259244799614, + 0.01558779925107956, + -0.018525168299674988, + -0.02404198981821537, + 0.023486604914069176, + 0.024116041138768196, + -0.008355455473065376, + 0.009386003017425537, + -0.00016410849639214575, + -0.02232646755874157, + -0.006269677076488733, + -0.03803768754005432, + -0.022573305293917656, + 6.879636202938855e-5, + -0.013933987356722355, + -0.05010804906487465, + -0.014600449241697788, + -0.03786490112543106, + -0.05573594942688942, + 0.0459611751139164, + -0.016710910946130753, + 0.0006572053534910083, + -0.018080860376358032, + 0.02169703133404255, + 0.006954651791602373, + -0.0035050951410084963, + 0.009058943018317223, + -0.02934900112450123, + 0.004594266414642334, + -0.018660929054021835, + 0.004103676415979862, + 0.000816107087302953, + -0.015118807554244995, + 0.03134838491678238, + 0.004045052453875542, + 0.014538739807903767, + 0.004683745093643665, + 0.0006020525470376015, + -0.0007559403893537819, + 0.045270029455423355, + -0.025399597361683846, + 0.019537203013896942, + -0.029916727915406227, + -0.01567419245839119, + 0.0026828169357031584, + 0.006186369340866804, + -0.04257950186729431, + -0.01964827999472618, + -0.008491216227412224, + -0.010323986411094666, + -0.0011601371224969625, + 0.012415935285389423, + -0.012304858304560184, + 0.016550466418266296, + -0.023400211706757545, + -0.023832177743315697, + 0.004989206790924072, + 0.06985506415367126, + -0.03366865962743759, + -0.0005160450236871839, + 0.009854994714260101, + -0.004285719245672226, + -0.02047518640756607, + -0.004569582641124725, + 0.010212909430265427, + 0.00256248377263546, + -0.009348977357149124, + -0.011181746609508991, + 0.015205200761556625, + 0.0021644579246640205, + 0.002025611698627472, + -0.0077507030218839645, + -0.017426740378141403, + 0.007294053677469492, + 0.028188863769173622, + -0.020771391689777374, + -0.008775079622864723, + 0.0007840953185223043, + -0.01494602207094431, + -0.00023950968170538545, + 0.010799148119986057, + 0.0019222483970224857, + -0.010811490006744862, + 0.0017402056837454438, + -0.014168483205139637, + 0.02858380414545536, + -0.014452346600592136, + -0.015809953212738037, + -0.0027028725016862154, + 0.028657855466008186, + -0.008090104907751083, + -0.010169712826609612, + 0.0024560349993407726, + -0.03473006188869476, + 0.01374885905534029, + 0.03645792603492737, + 0.017858706414699554, + -0.013230499811470509, + 0.04164151847362518, + -0.0013398657320067286, + 0.021771082654595375, + 0.031965479254722595, + 0.01956188678741455, + 0.0342610701918602, + 0.002357299905270338, + 0.05484733358025551, + 0.01721692830324173, + -0.03157053887844086, + 0.018142569810152054, + 0.0008338485495187342, + 0.017340347170829773, + 0.02660910226404667, + 0.02438756264746189, + -0.01987043395638466, + 0.013884619809687138, + -0.03663071244955063, + -0.0074298144318163395, + -0.034137651324272156, + -0.03240978717803955, + 0.02947241999208927, + -0.03556931018829346, + -0.016686227172613144, + 0.019993852823972702, + -0.035223737359046936, + 0.010792977176606655, + -0.0553903765976429, + 0.005526078399270773, + -0.03458195924758911, + 0.0038167275488376617, + 0.0010860858019441366, + -0.036852866411209106, + 0.034680694341659546, + -0.0011547375470399857, + -0.021252725273370743, + -0.03746996074914932, + 0.01819193735718727, + -0.01137921679764986, + 0.0041530439630150795, + -0.011829695664346218, + 0.044702302664518356, + -0.06121574342250824, + 0.011305165477097034, + -0.020944178104400635, + 0.022375835105776787, + 0.007164463866502047, + 0.024967631325125694, + 0.008083933964371681, + 0.036902233958244324, + -0.003529778914526105, + -0.01300834584981203, + 0.02549833245575428, + 0.006812720093876123, + 0.0011153977829962969, + -0.018537510186433792, + 0.021734056994318962, + 0.015859320759773254, + -0.004017283208668232, + -0.0185621939599514, + -0.009861165657639503, + 0.004480103962123394, + -0.015464380383491516, + 0.0065473695285618305, + 0.01294663641601801, + 0.03537184000015259, + -0.035248421132564545, + 0.023350844159722328, + 0.033594608306884766, + -0.01074978057295084, + 0.011626054532825947, + 0.0258439052850008, + -0.047812458127737045, + -0.03221231698989868, + 0.021067596971988678, + 0.05208275094628334, + 0.020203664898872375, + 0.0005580845754593611, + 0.009429199621081352, + 0.025078708305954933, + -0.03475474566221237, + 0.027621136978268623, + -0.010725096799433231, + -0.025091050192713737, + -0.0006768751773051918, + -0.022425202652812004, + -0.022709066048264503, + 0.0016106158727779984, + 0.030188247561454773, + -0.010904054157435894, + 0.0393952950835228, + 0.014143799431622028, + -0.0013930901186540723, + -0.04314722493290901, + 0.03364397585391998, + -0.049268800765275955, + 0.033076249063014984, + 0.0037025653291493654, + -0.006399266887456179, + 0.025992007926106453, + -0.04092568904161453, + 0.0516878105700016, + -0.017439082264900208, + 0.015834636986255646, + -0.03702565282583237, + -0.002119718585163355, + -0.0023650135844945908, + -0.019771698862314224, + 0.01732800528407097, + -0.021857475861907005, + -0.02349894680082798, + 0.039049722254276276, + -0.03793895244598389, + 0.01329220924526453, + 0.00859612226486206, + -0.03334777057170868, + -0.011101524345576763, + 0.015254568308591843, + -0.01593337208032608, + 0.00833694264292717, + -0.0017016372876241803, + 0.030015461146831512, + -0.011780328117311, + -0.06121574342250824, + 0.012810875661671162, + 0.00027036439860239625, + -0.015686534345149994, + -0.007343421224504709, + 0.02067265659570694, + -0.024794844910502434, + 0.018093202263116837, + -0.01446468848735094, + 0.02858380414545536, + -0.023079322651028633, + 0.020178981125354767, + 0.004048137925565243, + 0.005760574247688055, + -0.019611254334449768, + -0.016155526041984558, + 0.038333892822265625, + 0.020401135087013245, + -0.020438160747289658, + -0.023005271330475807, + -0.022721407935023308, + 0.04623269662261009, + -0.0007196860969997942, + 0.014390637166798115, + -0.006997848395258188, + -0.026707837358117104, + 0.0013568358263000846, + 0.008016053587198257, + -0.005998155567795038, + 0.01721692830324173, + 0.012107388116419315, + 0.0012133615091443062, + 0.018747322261333466, + -0.025177443400025368, + -0.0050354888662695885, + 0.01556311547756195, + -0.016859013587236404, + 0.039963021874427795, + -0.010515285655856133, + 0.012638089247047901, + -0.005223702639341354, + 0.027571769431233406, + -0.0032304881606251, + 0.004591180942952633, + -0.007972856983542442, + 0.015513747930526733, + -0.003039188915863633, + 0.0062789334915578365, + -0.017969783395528793, + -0.003227402688935399, + -0.0021413168869912624, + -0.0062758480198681355, + -0.029990777373313904, + -0.013872277922928333, + -0.006905284244567156, + 0.04174025356769562, + -0.0028910862747579813, + 0.020623289048671722, + 0.046701688319444656, + -0.004227095283567905, + 0.022659698501229286, + 0.03332308679819107, + -0.008077763020992279, + 0.0024961461313068867, + -0.025769853964447975, + 0.013057713396847248, + -0.016945406794548035, + -0.0020132698118686676, + 0.015340961515903473, + 0.0028232058975845575, + -0.013526705093681812, + -0.024128383025527, + 0.050206784158945084, + -0.010502943769097328, + -0.013255183584988117, + 0.011842037551105022, + 0.0031255821231752634, + 0.015624824911355972, + 0.013452653773128986, + -0.018377065658569336, + 0.006257335189729929, + -0.0025470564141869545, + 0.03127433359622955, + -0.01539032906293869, + 0.0005904820282012224, + 0.04149341583251953, + 0.009756259620189667, + -0.005961129907518625, + -0.002400496508926153, + -0.020006194710731506, + -0.025263836607336998, + -0.05178654566407204, + -0.005590873304754496, + 0.010120345279574394, + 0.005769830662757158, + -0.016612175852060318, + 0.024128383025527, + -0.003967915661633015, + -0.004430736415088177, + -0.018549852073192596, + -0.007577916607260704, + -0.041073791682720184, + 0.02484421245753765, + 0.07039810717105865, + -0.017624210566282272, + 0.018451116979122162, + 0.00925024226307869, + -3.492849646136165e-5, + 0.010404208675026894, + -0.0009379831608384848, + -0.005553847644478083, + -0.0015211371937766671, + -0.02206728793680668, + 0.012354225851595402, + 0.01094725076109171, + 0.0004620492982212454, + 0.011249626986682415, + -0.021252725273370743, + 0.010027781128883362, + 0.014699184335768223, + 0.052378956228494644, + -0.036161720752716064, + 0.006763352546840906, + 0.010941079817712307, + 0.03821047395467758, + -0.004285719245672226, + 0.02073436602950096, + -0.015970397740602493, + 0.025226810947060585, + 0.01664920151233673, + -0.01211973000317812, + -0.03586551547050476, + 0.021203357726335526, + -0.003912377171218395, + -0.018809031695127487, + 0.01904352754354477, + -0.0026997870299965143, + -0.008485045284032822, + 0.014341269619762897, + -0.02621416188776493, + -0.014477030374109745, + -0.019808724522590637, + -0.03983960300683975, + 0.02532554604113102, + -0.0405554324388504, + 0.0033569924999028444, + 0.005026232451200485, + -0.028657855466008186, + -0.023264450952410698, + -0.01621723547577858, + -0.003927804529666901, + 0.00015051313675940037, + 0.01724161207675934, + 0.022338809445500374, + -0.000690374115947634, + -0.010885541327297688, + 0.006217224057763815, + 0.015205200761556625, + -0.02258564718067646, + -0.010990447364747524, + -0.01676027849316597, + -0.029077479615807533, + -0.0202777162194252, + -0.011175575666129589, + -0.0038846079260110855, + -0.004220924340188503, + -0.012243148870766163, + -0.011484122835099697, + -0.016994774341583252, + -0.026880623772740364, + -0.009676037356257439, + 0.03586551547050476, + 0.017796996980905533, + 0.019907459616661072, + -0.008608464151620865, + 0.031027495861053467, + -0.012884926982223988, + 0.03448322415351868, + -0.005751317832618952, + 0.03078065812587738, + 0.013082397170364857, + 0.013242841698229313, + -0.008435677736997604, + -0.0030715863686054945, + -0.028559120371937752, + -0.05390935018658638, + 0.010398037731647491, + -0.0029682230670005083, + 0.0302622988820076, + 0.0028664025012403727, + 0.02506636641919613, + 0.01457576546818018, + 0.020746707916259766, + 0.0005438142688944936, + -0.010904054157435894, + -0.0008461904362775385, + -0.02506636641919613, + 0.01673559471964836, + 0.04978716000914574, + -0.04038264602422714, + -0.0035452062729746103, + -0.01764889433979988, + -0.004785565659403801, + -0.029571155086159706, + -0.009293438866734505, + -0.018537510186433792, + 0.028287598863244057, + -0.004264120943844318, + -0.03811173886060715, + -0.032903462648391724, + 0.019895117729902267, + -0.005208275280892849, + 0.014452346600592136, + -0.008873814716935158, + -0.026658469811081886, + -0.0012264747638255358, + 0.019858092069625854, + -0.013502021320164204, + 0.015229884535074234, + 0.04203645884990692, + -0.015427354723215103, + 0.01558779925107956, + 0.002935825614258647, + -0.026831256225705147, + -0.02069734036922455, + -0.018401749432086945, + 0.007602600380778313, + 0.02912684716284275, + -0.004122189246118069, + -0.013304551132023335, + 0.03238510340452194, + 0.008775079622864723, + 0.010533798485994339, + 0.031768009066581726, + -0.004566497169435024, + 0.03401423245668411, + -0.004449249245226383, + -0.05228022113442421, + -0.030459769070148468, + 0.004449249245226383, + -0.06941075623035431, + -0.024548007175326347, + 0.04556623473763466, + -0.0025748256593942642, + 0.01587166264653206, + -0.03206421434879303, + 0.043245960026979446, + -0.014699184335768223, + 0.01146561000496149, + 0.000567726674489677, + -0.013909303583204746, + 0.002303304150700569, + -0.007874121889472008, + -0.0068929423578083515, + 0.02730024792253971, + -0.009404515847563744, + -0.009552618488669395, + 0.02489358000457287, + -0.001506481203250587, + 0.004970693960785866, + 0.01567419245839119, + -0.009207045659422874, + 0.01200865302234888, + 0.03058318793773651, + 0.011564345099031925, + -0.018809031695127487, + -0.008633147925138474, + -0.006670788396149874, + -0.02243754453957081, + 0.0070842416025698185, + 0.015402670949697495, + -0.008460361510515213, + -0.035075634717941284, + 0.011675422079861164, + -0.03218763321638107, + -0.00580377085134387, + 0.02087012678384781, + 0.03408828377723694, + 0.02189450152218342, + 0.028880009427666664, + -0.04534408077597618, + -0.0030438171233981848, + 0.023202741518616676, + -0.005646411795169115, + -0.012274003587663174, + -0.02243754453957081, + 0.01924099773168564, + 0.013329234905540943, + 0.011644567362964153, + 0.027942026033997536, + -0.007577916607260704, + -0.012243148870766163, + -0.02378281019628048, + 0.02747303433716297, + 0.010762122459709644, + 0.004717685282230377, + -0.018537510186433792, + -0.009558789432048798, + -0.052378956228494644, + 0.008435677736997604, + -0.003006791463121772, + -0.015797611325979233, + -0.0012820132542401552, + 0.008299916982650757, + 0.0018543681362643838, + -0.021598296239972115, + 0.022820143029093742, + 0.00294508202932775, + 0.0014332012506201863, + 0.02801607735455036, + 0.012428277172148228, + -0.02532554604113102, + 0.03766743093729019, + 0.020154297351837158, + -0.014773235656321049, + 0.018537510186433792, + 0.023967938497662544, + 0.000592024764046073, + -0.014983046799898148, + -0.012002482078969479, + 0.009959900751709938, + 0.022400518879294395, + -0.02041347697377205, + -0.023659391328692436, + 0.001560476957820356, + -0.019574228674173355, + -0.007954344153404236, + 0.00253471452742815, + -0.020450502634048462, + 0.004091334529221058, + -0.0014794833259657025, + 0.012502328492701054, + 0.030484452843666077, + 0.019438467919826508, + 0.027596453204751015, + 0.002360385376960039, + 0.0025902530178427696, + 0.003019133349880576, + -0.012372738681733608, + 0.00012930051889270544, + 0.009719233959913254, + -0.018117886036634445, + 0.0015404213918372989, + 0.027176829054951668, + -0.014328927733004093, + -0.017895732074975967, + 0.008120959624648094, + 0.031447120010852814, + -0.015550773590803146, + 0.02138848602771759, + 0.014983046799898148, + 0.009873507544398308, + 0.019154604524374008, + 0.010552311316132545, + -0.02589327283203602, + 0.023054638877511024, + 0.03956808149814606, + 0.026806572452187538, + -0.013020687736570835, + -0.01987043395638466, + 0.0006155514856800437, + -0.028830641880631447, + -0.00036466409801505506, + -0.008664002642035484, + 0.027621136978268623, + -0.03058318793773651, + 0.03240978717803955, + 0.017068825662136078, + 0.01987043395638466, + -0.028559120371937752, + 0.002901885425671935, + 0.016809646040201187, + -0.0020811501890420914, + -0.016081474721431732, + 0.03495221585035324, + 0.02067265659570694, + 0.00386918056756258, + -0.026510367169976234, + -0.011459439061582088, + -0.01693306490778923, + 0.005606300663203001, + 0.03389081358909607, + 0.022746091708540916, + 0.03401423245668411, + -0.018488142639398575, + -0.016204893589019775, + -0.04011112451553345, + -0.032311052083969116, + 0.03492753207683563, + 0.02095651999115944, + -0.01787104830145836, + -0.011508806608617306, + -0.03157053887844086, + -0.009669866412878036, + -0.01010800339281559, + -0.013526705093681812, + -0.02658441849052906, + 0.008120959624648094, + 0.005007719621062279, + 0.013884619809687138, + -0.02747303433716297, + 0.016451731324195862, + 0.02932431735098362, + -0.00893552415072918, + -0.005563104059547186, + -0.025350229814648628, + 0.030163563787937164, + -0.006627591792494059, + -0.006325215566903353, + 0.007386617828160524, + -0.014736209996044636, + -0.0009310409077443182, + -0.0038136420771479607, + 0.0006811177008785307, + -0.005674181040376425, + 0.010570824146270752, + 0.009694550186395645, + -0.026115426793694496, + -0.01973467320203781, + 0.0208454430103302, + 0.007923489436507225, + 0.0016229577595368028, + 0.031422436237335205, + -0.008515900000929832, + -0.033792078495025635, + 0.020968861877918243, + -0.024424588307738304, + 0.025054024532437325, + -0.02752240188419819, + -0.004236351698637009, + -0.00044507920392788947, + -0.00691762613132596, + -0.021622980013489723, + -0.01867327094078064, + -0.023572998121380806, + -0.04388773813843727, + -0.022597989067435265, + -0.008034566417336464, + 0.00700401933863759, + -0.01103364396840334, + 0.014365953393280506, + -0.003730334574356675, + 0.013613098300993443, + -0.013588414527475834, + 0.0074668400920927525, + -0.026732521131634712, + -0.00879359245300293, + 0.02078373357653618, + -0.02358534000813961, + -0.006174027454108, + 0.01593337208032608, + -0.001874423585832119, + 0.0037982147186994553, + 0.014131457544863224, + 0.006062950473278761, + -0.008410993963479996, + 0.011650738306343555, + -0.020981203764677048, + -0.026460999622941017, + 0.00014405293040908873, + -0.01804383471608162, + 0.018488142639398575, + -0.006167856510728598, + -0.0031379240099340677, + 0.033051565289497375, + 0.02806544490158558, + 0.006285104434937239, + -0.0004288804775569588, + -0.04228329658508301, + 0.0033107104245573282, + -0.031052179634571075, + -0.003006791463121772, + 0.013761200942099094, + -0.015921030193567276, + -0.004510958679020405, + 0.012298687361180782, + 0.038161106407642365, + -0.012564037926495075, + 0.009219387546181679, + 0.013366260565817356, + -0.014242534525692463, + -0.01143475528806448, + 0.0013915473828092217, + 0.013193474151194096, + -0.00264887697994709, + 0.02041347697377205, + -0.004455420188605785, + 0.014353611506521702, + 0.020166639238595963, + 0.01112003717571497, + -0.013588414527475834, + -0.02430116944015026, + -0.0014301157789304852, + -0.01910523697733879, + 0.013341576792299747, + -0.003603830235078931, + -0.02823823131620884, + -0.0827893614768982, + -0.024079015478491783, + -0.018883083015680313, + 0.023634707555174828, + 0.003992599435150623, + 0.005550762172788382, + 0.008491216227412224, + 0.019426126033067703, + 0.014045064337551594, + -0.01166308019310236, + 0.00879359245300293, + -0.012724482454359531, + -0.020253032445907593, + 0.03672944754362106, + 0.016007423400878906, + 0.015242226421833038, + 0.014884312637150288, + -0.022622672840952873, + 0.0005931818159297109, + -0.012335713021457195, + 0.008577609434723854, + -0.008102446794509888, + 0.035421207547187805, + -0.001218761084601283, + -0.03823515772819519, + 0.009497079998254776, + -0.0037395909894257784, + -0.013613098300993443, + 0.0024467785842716694, + -0.03004014492034912, + -0.00389694981276989, + 0.00746066914871335, + -0.004637463018298149, + -0.0385560467839241, + -0.02532554604113102, + 0.016352996230125427, + 0.018179595470428467, + -0.030681923031806946, + -0.0007158292573876679, + 0.0023357016034424305, + 0.0017926587024703622, + -0.019709989428520203, + -0.004359770566225052, + 0.007108925376087427, + -0.015711218118667603, + -0.001041346462443471, + -0.004828762263059616, + -0.03946934640407562, + 0.019228655844926834, + 0.01687135547399521, + 0.005621728021651506, + 0.013637782074511051, + -0.018265988677740097, + -0.011027473025023937, + -0.025399597361683846, + 0.0061215744353830814, + -0.0028401759918779135, + -0.015834636986255646, + 0.023079322651028633, + -0.007763044908642769, + 0.04502319172024727, + 0.01576058566570282, + 0.003233573632314801, + -0.010971934534609318, + -0.01873498037457466, + 0.018623903393745422, + -0.006405437830835581, + 0.025448964908719063, + 0.00014357082545757294, + -0.02838633395731449, + 0.016204893589019775, + 0.0084233358502388, + -0.009589644148945808, + 0.012539354152977467, + -0.013427969999611378, + -0.002485346980392933, + 0.004569582641124725, + 0.013366260565817356, + 0.009114481508731842, + 0.019512519240379333, + -0.02601669169962406, + -0.0037797018885612488, + -0.007411301601678133, + -0.006056779529899359, + 0.0019639022648334503, + 0.0019793296232819557, + -0.001928419340401888, + -0.014143799431622028, + 0.019228655844926834, + 0.001158594386652112, + 0.0336933434009552, + -0.0036994798574596643, + 0.014563423581421375, + 0.005513736512511969, + -0.012341883964836597, + 0.038309209048748016, + -0.033051565289497375, + 0.03638387471437454, + -0.011021302081644535, + 0.0008184211910702288, + -0.01664920151233673, + -0.00793583132326603, + 0.01938910037279129, + -0.006143172737210989, + 0.011700105853378773, + 0.0053964885883033276, + -0.013600756414234638, + -0.011829695664346218, + 0.014427662827074528, + -0.023733442649245262, + 0.012274003587663174, + 0.005501394625753164, + -0.026658469811081886, + 0.029793309047818184, + -0.0055877878330647945, + -0.005066343583166599, + 0.008713370189070702, + -0.0035205224994570017, + -0.007405130658298731, + 0.01810554414987564, + -0.007547061890363693, + 0.03166927397251129, + 0.0011848208960145712, + -0.021079938858747482, + -0.009453883394598961, + 0.002912684576585889, + 0.004174642264842987, + -0.006936138961464167, + -0.003866095095872879, + 0.025091050192713737, + -0.01437829528003931, + 0.0016538124764338136, + -0.0024992316029965878, + -0.00819501094520092, + 0.019907459616661072, + 0.002122804056853056, + 0.009126823395490646, + 0.00913916528224945, + 0.03078065812587738, + -0.031002812087535858, + 0.005365633871406317, + -0.01719224452972412, + -0.0033292232546955347, + -0.004261035472154617, + -0.024190092459321022, + 0.01813022792339325, + -0.01047825999557972, + -0.0024467785842716694, + -0.011965456418693066, + 0.010558482259511948, + 0.009219387546181679, + 0.021709373220801353, + 0.011724789626896381, + 0.019179288297891617, + -0.025621751323342323, + -0.018549852073192596, + -0.00651651481166482, + 0.024264143779873848, + -0.0269793588668108, + -0.010416550561785698, + -0.014230192638933659, + 0.01819193735718727, + 0.004328915849328041, + 0.007294053677469492, + 0.007220002356916666, + -7.28942541172728e-5, + -0.011107695288956165, + -0.0005623270990327001, + -0.03858073055744171, + -0.009287267923355103, + 0.010027781128883362, + -0.002952795708552003, + -0.021647663787007332, + -0.013711833395063877, + 0.0031487231608480215, + -0.01474855188280344, + -0.0004585781425703317, + -0.0043073175475001335, + 0.008713370189070702, + -0.00623265141621232, + -0.03593956679105759, + 0.013674807734787464, + 0.004248693585395813, + -0.012132071889936924, + -0.011366874910891056, + 0.017402056604623795, + -0.0120641915127635, + 0.018747322261333466, + -0.01274916622787714, + -0.006174027454108, + 0.0010459746699780226, + 0.011860550381243229, + -0.002616479527205229, + 3.38678655680269e-5, + 0.014551081694662571, + -0.01392164546996355, + 0.026164794340729713, + -0.006140087265521288, + -0.035223737359046936, + -0.016093816608190536, + -0.015538431704044342, + -0.012076533399522305, + 0.03974086791276932, + -0.008657831698656082, + -0.01394632924348116, + 0.012514670379459858, + -0.03877820074558258, + -0.0034001891035586596, + 0.001928419340401888, + -0.024881238117814064, + -0.0027491545770317316, + -0.011601370759308338, + 0.014501714147627354, + 0.010941079817712307, + 0.009515592828392982, + 0.003717992687597871, + 0.011959285475313663, + -0.034532591700553894, + 0.0020981202833354473, + -0.039617449045181274, + 0.028830641880631447, + -0.011132379062473774, + 0.021067596971988678, + -0.010768293403089046, + -0.008812105283141136, + 0.007361934054642916, + 0.02047518640756607, + -0.02678188867866993, + -0.009114481508731842, + -0.01146561000496149, + 0.01632831245660782, + 0.002145945094525814, + -0.012909610755741596, + 0.0064609763212502, + -0.007614942267537117, + 0.015229884535074234, + 0.028707223013043404, + -0.02095651999115944, + 0.015921030193567276, + 6.532520637847483e-5, + -0.006491831038147211, + -0.017611868679523468, + -0.0066214208491146564, + -0.0002906128065660596, + 0.01446468848735094, + 0.03581614792346954, + -0.02304229699075222, + -0.015118807554244995, + 0.010712754912674427, + 0.016254261136054993, + 0.017204586416482925, + 0.015723560005426407, + -0.016982432454824448, + -0.009120652452111244, + -0.020166639238595963, + -0.011132379062473774, + 0.012169097550213337, + -0.027966709807515144, + 0.011311336420476437, + -0.0021845134906470776, + -0.01995682716369629, + -0.016994774341583252, + 0.01547672227025032, + -0.01721692830324173, + -0.0001857067836681381, + -0.005597044248133898, + -0.009719233959913254, + 0.0016831244574859738, + 0.016945406794548035, + -0.02358534000813961, + -0.0040018558502197266, + 0.0031579795759171247, + -0.01400803867727518, + -0.008287575095891953, + 0.0012056478299200535, + -0.0027398981619626284, + -0.028312282636761665, + -0.03547057509422302, + -0.008034566417336464, + 0.009274926036596298, + -0.025374913588166237, + 0.017340347170829773, + -0.02660910226404667, + 0.008657831698656082, + -0.0009256413322873414, + 0.006498001981526613, + -0.010632533580064774, + -0.012391251511871815, + 0.018253646790981293, + -0.01850048452615738, + 0.018080860376358032, + 0.02389388717710972, + 0.02456034906208515, + -0.006578224245458841, + 0.009521763771772385, + 0.031052179634571075, + -0.0031178684439510107, + 0.0043474286794662476, + -0.0006456348346546292, + -0.0016198722878471017, + 0.0006745610735379159, + 0.000992750283330679, + -0.027176829054951668, + 0.010984276421368122, + -0.005208275280892849, + -9.121423499891534e-5, + 0.020351767539978027, + -0.011959285475313663, + 0.012187610380351543, + 0.002872573444619775, + -0.011002789251506329, + -0.006886771414428949, + -6.490336545539321e-6, + -0.03443385660648346, + -0.000913299445528537, + 0.020265374332666397, + 0.019722331315279007, + 0.017352689057588577, + 0.028855325654149055, + -0.01819193735718727, + -0.013822910375893116, + -0.014958363957703114, + 0.0013113252352923155, + 0.01738971471786499, + -0.04788650944828987, + 0.0009086712379939854, + -0.010879370383918285, + 0.02067265659570694, + 0.0019700732082128525, + 0.007553232833743095, + -0.01695774868130684, + 0.03475474566221237, + 0.001666154363192618, + 0.025917956605553627, + 0.01300834584981203, + -4.411259214975871e-5, + -0.00325825740583241, + -0.01103364396840334, + -0.022030262276530266, + -0.012983662076294422, + 0.027004042640328407, + 0.010712754912674427, + -0.03347118943929672, + 0.010354841127991676, + 0.001546592335216701, + 0.02484421245753765, + -0.015538431704044342, + 0.008330771699547768, + -6.730183667968959e-5, + -0.011928430758416653, + 0.021055255085229874, + 0.003056159010156989, + 0.0037149072159081697, + -0.012631918303668499, + 0.02789265848696232, + 0.024362878873944283, + 0.025140417739748955, + -0.005023146979510784, + -0.009632840752601624, + -0.04136999696493149, + -0.00873805396258831, + 0.011107695288956165, + -0.0031965479720383883, + 0.020549237728118896, + -0.0030515308026224375, + -0.003261342877522111, + 0.012508499436080456, + -0.012909610755741596, + 0.014847286976873875, + -0.022807801142334938, + 0.006319044623523951, + -0.01346499565988779, + -0.006214138586074114, + -0.003937060944736004, + -0.010885541327297688, + 0.019858092069625854, + 0.006763352546840906, + 0.010323986411094666, + 0.024905921891331673, + 0.0006529628299176693, + -0.0015813038917258382, + 0.006794207263737917, + 0.015279252082109451, + -0.03556931018829346, + -0.005100283771753311, + -0.002588710281997919, + 0.027250880375504494, + 0.01337860245257616, + -0.002864859765395522, + -0.026855939999222755, + -0.004224009811878204, + -0.007534720003604889, + 0.0011346819810569286, + -0.0009395258966833353, + 0.025054024532437325, + 0.0039987703785300255, + -0.021820450201630592, + 0.002297133207321167, + -0.02730024792253971, + -0.028855325654149055, + -0.02256096340715885, + 0.03364397585391998, + -0.018809031695127487, + 0.02734961546957493, + -0.023819835856556892, + 0.010490601882338524, + -0.0015303936088457704, + 0.015859320759773254, + 0.0035482917446643114, + -0.006911455187946558, + -0.010342499241232872, + -0.004544898867607117, + -0.0134896794334054, + -0.0008230493986047804, + -0.030854709446430206, + 0.00523912999778986, + -0.012847901321947575, + 0.012810875661671162, + 0.006991677451878786, + 0.001289726933464408, + -0.0003376662207301706, + -0.014131457544863224, + -0.03480411320924759, + 0.011669251136481762, + 0.006411608774214983, + 0.037420593202114105, + -0.021228041499853134, + -0.012675114907324314, + -0.007473011035472155, + -0.006204882171005011, + -0.0024390649050474167, + -0.028262915089726448, + -0.006436292547732592, + 0.0048040784895420074, + 0.0215612705796957, + -0.028509752824902534, + 0.012199952267110348, + -0.0009171562851406634, + -0.006991677451878786, + -0.00691762613132596, + -0.013625440187752247, + 0.009262584149837494, + -0.0026535051874816418, + -0.018228963017463684, + 0.00027132860850542784, + -0.010663388296961784, + 0.008577609434723854, + -0.00469608698040247, + 0.020536895841360092, + 0.005199018865823746, + 0.04001238942146301, + -0.02789265848696232, + 0.014563423581421375, + 0.01750079169869423, + 0.019709989428520203, + 0.02660910226404667, + -0.01576058566570282, + -0.009959900751709938, + -0.011903746984899044, + 0.021943869069218636, + 0.0039617447182536125, + -0.0033137958962470293, + 0.002193769905716181, + 0.009959900751709938, + -0.01556311547756195, + 0.014625133015215397, + 0.018623903393745422, + 0.000506402924656868, + -0.026633786037564278, + -0.027793923392891884, + 0.009688379243016243, + 0.007553232833743095, + 0.016797304153442383, + 0.01065104641020298, + 0.012514670379459858, + -0.031076863408088684, + -0.01039186678826809, + 0.001652269740588963, + -0.0011848208960145712, + 0.017945099622011185, + -0.022795459255576134, + -0.013983354903757572, + 0.008429506793618202, + 0.009379832074046135, + 0.0072014895267784595, + -0.02332616038620472, + 0.027547085657715797, + -0.009941387921571732, + 0.016352996230125427, + 0.02712746150791645, + -0.019709989428520203, + 0.03147180378437042, + -0.024227118119597435, + 0.004171556793153286, + 0.025165101513266563, + -0.019179288297891617, + -0.005634069908410311, + 0.011440926231443882, + -0.0002894557546824217, + 0.0003991828125435859, + -0.015069440007209778, + -0.00993521697819233, + -0.03988897055387497, + 0.0011763358488678932, + -0.009410686790943146, + -0.030336350202560425, + -0.012823217548429966, + 0.013613098300993443, + -0.0024529495276510715, + -0.018315356224775314, + -0.015945713967084885, + 0.017007116228342056, + -2.0453298930078745e-5, + -0.0003293740446679294, + 0.010404208675026894, + -0.012070362456142902, + 0.01039186678826809, + -0.0061647710390388966, + -0.014501714147627354, + -0.025004656985402107, + -0.011187917552888393, + 0.005192847922444344, + -0.005813027266412973, + -0.012983662076294422, + -0.006180198397487402, + 0.009145336225628853, + -0.0037611890584230423, + 0.002932740142568946, + -0.025226810947060585, + -0.003986428491771221, + 0.006769523490220308, + 0.009207045659422874, + -0.0027738383505493402, + 0.0025501418858766556, + 0.012341883964836597, + -0.004464676603674889, + 0.019055869430303574, + -0.0035236079711467028, + -0.018969476222991943, + -0.0063560702838003635, + 0.0021474878303706646, + -0.0029944495763629675, + -0.013366260565817356, + 0.01847580075263977, + 0.013588414527475834, + 0.06960822641849518, + 0.004449249245226383, + 0.003418701933696866, + -0.001971615944057703, + 0.020882468670606613, + -0.02341255359351635, + 0.0043844543397426605, + -0.0014231734676286578, + -0.007744532078504562, + -0.010169712826609612, + 0.019635938107967377, + -0.03623577207326889, + 0.011083011515438557, + 0.005964215379208326, + -0.008713370189070702, + -0.009552618488669395, + 0.02786797471344471, + 0.008349284529685974, + -0.017229270190000534, + 0.03337245434522629, + 0.010570824146270752, + -0.014822603203356266, + 0.012323371134698391, + 0.019549544900655746, + -0.009515592828392982, + 0.006676959339529276, + -0.003912377171218395, + -0.01747610792517662, + 0.00884913094341755, + 0.011619883589446545, + 0.012527012266218662, + 0.009077455848455429, + -0.004054308868944645, + 0.016464073210954666, + 0.0027892657089978456, + 0.014773235656321049, + -0.003971001133322716, + 0.02186981774866581, + 0.008306087926030159, + 0.020265374332666397, + -0.023054638877511024, + 0.006448634434491396, + 0.014896654523909092, + 0.018525168299674988, + -0.0005630984669551253, + -0.014328927733004093, + 0.0021875989623367786, + -0.001977786887437105, + -0.014106773771345615, + 0.017685920000076294, + -0.03971618413925171, + 1.725935362628661e-5, + 0.014279560185968876, + -0.006880600471049547, + 0.010515285655856133, + -0.012088875286281109, + 0.003906206227838993, + -0.011700105853378773, + 0.003298368537798524, + 0.006244993302971125, + 0.02001853659749031, + 0.003940146416425705, + -0.015834636986255646, + -0.017266295850276947, + -0.012329542078077793, + -0.010385695844888687, + -0.0034464711789041758, + -0.02161063812673092, + 0.01134836208075285, + -0.003529778914526105, + 0.009145336225628853, + 0.014551081694662571, + 0.0017139791743829846, + -0.03806237131357193, + 0.005911762360483408, + 0.014686842449009418, + 0.025091050192713737, + 0.026115426793694496, + 0.005214446224272251, + 0.01300834584981203, + 0.013168790377676487, + -0.0018343125702813268, + -0.0034464711789041758, + -0.00950942188501358, + 0.005020061507821083, + 0.004131445661187172, + 0.02552301622927189, + -0.0188460573554039, + -0.0019669877365231514, + -0.029102163389325142, + 0.009497079998254776, + 0.023647049441933632, + -0.003992599435150623, + 0.016069132834672928, + -0.022116655483841896, + -0.005785258021205664, + 0.0004277234256733209, + -0.015575457364320755, + 0.008059250190854073, + 0.00432583037763834, + 0.029645206406712532, + -0.004291890189051628, + -0.012088875286281109, + -0.009299609810113907, + 0.016451731324195862, + -0.006954651791602373, + 0.007985198870301247, + 0.004291890189051628, + -0.02747303433716297, + -0.00239124009385705, + 0.00044585057185031474, + 0.00571737764403224, + 0.002921940991654992, + 0.00793583132326603, + -0.00302993250079453, + -0.005991984624415636, + 0.009330464527010918, + 0.007022532168775797, + -0.003610001178458333, + -0.028262915089726448, + -0.01203333679586649, + 1.2944515219714958e-5, + -0.007195318583399057, + -0.0016460987972095609, + 0.008448019623756409, + 0.002176799811422825, + -0.015192858874797821, + -0.011552003212273121, + -0.02493060566484928, + -0.005513736512511969, + 0.024646742269396782, + 0.0067016431130468845, + 0.008059250190854073, + -0.002280163113027811, + 0.02495528943836689, + -0.014353611506521702, + 0.006380754057317972, + 0.01346499565988779, + 0.026485683396458626, + -0.020536895841360092, + 0.007948173210024834, + 0.030188247561454773, + -0.004763967357575893, + 0.01400803867727518, + 0.015365645289421082, + 0.007343421224504709, + 0.005896335002034903, + -0.011792670004069805, + 0.023178057745099068, + -0.012502328492701054, + 0.017451424151659012, + -0.009355148300528526, + 0.004507873207330704, + -0.017636552453041077, + 0.03788958489894867, + -0.015279252082109451, + -0.002710586180910468, + 0.016229577362537384, + 0.0038013001903891563, + 0.010558482259511948, + -0.016254261136054993, + 0.025374913588166237, + -0.014365953393280506, + -0.0028633170295506716, + 0.0015288508730009198, + 0.01576058566570282, + 0.008003711700439453, + 0.027423666790127754, + 0.013230499811470509, + 0.003606915706768632, + -0.01246530283242464, + 0.019142262637615204, + 0.007658138871192932, + -0.028090128675103188, + -0.007830925285816193, + -0.02332616038620472, + 0.007948173210024834, + 0.02069734036922455, + -0.018907766789197922, + 0.007658138871192932, + 0.013415628112852573, + -0.021203357726335526, + 0.014427662827074528, + 0.0020610946230590343, + 0.008034566417336464, + -0.025597067549824715, + 0.009225558489561081, + -0.03223700076341629, + 0.01958657056093216, + 0.015192858874797821, + -0.01790807396173477, + 0.03228636831045151, + -0.01252084132283926, + 0.0258439052850008, + -0.00805307924747467, + 0.004748539999127388, + 0.009534105658531189, + 0.01695774868130684, + -0.010694243013858795, + -0.00557544594630599, + -0.013230499811470509, + -0.012403593398630619, + -0.017550159245729446, + -0.006942309904843569, + -0.0027800092939287424, + -0.017118193209171295, + -0.0017787740798667073, + -0.01223697792738676, + -0.004014197736978531, + 0.005492138210684061, + -0.04117252677679062, + -0.03164459019899368, + 0.02589327283203602, + 0.011373045854270458, + -0.010934908874332905, + 0.004949095658957958, + 0.005340950563549995, + 0.017883390188217163, + 0.015118807554244995, + 0.0006410066271200776, + -0.0215612705796957, + 0.008571438491344452, + 0.015513747930526733, + -0.008028395473957062, + -0.013909303583204746, + 0.006167856510728598, + -0.006596737075597048, + 0.00865166075527668, + 0.025819221511483192, + -0.012675114907324314, + 0.018685612827539444, + 0.006115403492003679, + -0.011360703967511654, + 0.02175874076783657, + -0.0076704807579517365, + 0.011656909249722958, + 0.006325215566903353, + -0.0004435364680830389, + 0.00039995418046601117, + -0.004291890189051628, + 0.003053073538467288, + -0.00261956499889493, + 0.006038266699761152, + 0.00819501094520092, + 0.021734056994318962, + 0.0002805850235745311, + -0.003872266039252281, + -0.0026241932064294815, + -0.0031379240099340677, + -1.8259721400681883e-5, + -0.007812412455677986, + -0.01252084132283926, + -0.010521456599235535, + 0.011218772269785404, + 0.016377680003643036, + 0.024165408685803413, + 0.008503558114171028, + -0.016291286796331406, + -0.014341269619762897, + 0.006874429527670145, + 0.0055847023613750935, + 0.02152424491941929, + 0.015365645289421082, + 0.0043042320758104324, + -0.007368104998022318, + -0.005137309432029724, + -0.018549852073192596, + 0.014625133015215397, + -0.003133295802399516, + 0.01223697792738676, + -0.010768293403089046, + 0.0043042320758104324, + 0.0014655987033620477, + -0.013440311886370182, + -0.0029481675010174513, + -0.0004115246993023902, + 0.009601986035704613, + -0.005316266790032387, + -0.016291286796331406, + 0.001069887075573206, + -0.00250540254637599, + -0.0023326161317527294, + 0.02249925397336483, + -0.03458195924758911, + 0.009898191317915916, + 0.0032767702359706163, + 0.009503250941634178, + 0.005705035757273436, + 0.009447712451219559, + 0.00697316462174058, + -0.0022122827358543873, + -0.004162300378084183, + 0.005640240851789713, + -0.010786806233227253, + 0.005887078586965799, + 0.03403891623020172, + -0.005427343305200338, + -0.01400803867727518, + 0.019623596221208572, + 0.00873805396258831, + -0.006158600095659494, + -0.016896039247512817, + -0.008886156603693962, + -0.0038167275488376617, + 0.025597067549824715, + 0.0021953126415610313, + -0.010570824146270752, + -0.002778466558083892, + -0.002881829859688878, + -0.007540890946984291, + -0.021734056994318962, + 0.011459439061582088, + 0.010533798485994339, + -0.0036562832538038492, + -0.0013768913922831416, + -0.00464054848998785, + 0.007849438115954399, + 0.030879393219947815, + -0.01824130490422249, + 0.00311632570810616, + -0.011934601701796055, + -0.0013383229961618781, + -0.009756259620189667, + 0.02201792038977146, + -0.005914847832173109, + 0.02606605924665928, + 0.006818891037255526, + 0.0012164469808340073, + 0.005044745281338692, + -0.03603830188512802, + -0.00723234424367547, + -0.01383525226265192, + -0.0009325836435891688, + 0.003829069435596466, + 0.0025007743388414383, + 0.02232646755874157, + -0.028633171692490578, + 0.011163233779370785, + -0.002031782642006874, + 0.011897576041519642, + -0.02821354754269123, + 0.00216291518881917, + -0.022277100011706352, + -0.02036410942673683, + 0.014316585846245289, + 0.01294663641601801, + -0.0038938643410801888, + 0.0021783425472676754, + -0.004316573962569237, + 0.02447395585477352, + 0.01758718490600586, + 0.012823217548429966, + 0.01311942283064127, + -0.013094739057123661, + 0.005877822171896696, + -0.014970705844461918, + -0.005522992927581072, + 0.01975935697555542, + -0.006229565944522619, + 0.00184356898535043, + -0.004350514151155949, + 0.01024993509054184, + -0.013107080943882465, + 0.0019793296232819557, + 0.004671403206884861, + -0.012798533774912357, + 0.0062388223595917225, + 0.011656909249722958, + -0.01721692830324173, + 0.00936749018728733, + -0.006528856698423624, + -0.028830641880631447, + -0.009836481884121895, + -0.005519907455891371, + -0.01882137358188629, + 0.012372738681733608, + -0.01764889433979988, + -0.017377372831106186, + -0.006248078774660826, + -0.008997233584523201, + 0.030509136617183685, + 0.0030777573119848967, + -0.017118193209171295, + -0.01687135547399521, + 0.02321508340537548, + 0.0092810969799757, + 0.006707814056426287, + 0.023252109065651894, + -0.004594266414642334, + -0.0015890175709500909, + -0.009854994714260101, + 0.0031055265571922064, + -0.009219387546181679, + -0.006837403867393732, + 0.0033168813679367304, + -0.028312282636761665, + 0.0016445560613647103, + 0.038161106407642365, + 0.01394632924348116, + -0.005254557356238365, + 0.01869795471429825, + 0.003616172121837735, + 0.021734056994318962, + 0.025251494720578194, + 0.008232036605477333, + -0.0024390649050474167, + 0.0005345578538253903, + 0.018895424902439117, + -0.00540265953168273, + -0.005100283771753311, + -0.009176190942525864, + 0.019290365278720856, + 0.00031317531829699874, + -0.0045356424525380135, + 0.00348658231087029, + -0.005232959054410458, + 0.028312282636761665, + 0.012527012266218662, + 0.016772620379924774, + 0.00873805396258831, + 0.006800378207117319, + 0.0016630688915029168, + -0.001712436438538134, + -0.010817660950124264, + 0.005106454715132713, + 0.01033632829785347, + 0.00802222453057766, + 0.0026982442941516638, + -0.02019132301211357, + 0.010873199440538883, + 0.0023850691504776478, + -0.02986736036837101, + -0.007904976606369019, + 0.01836472377181053, + -0.008731883019208908, + -0.006868258584290743, + 0.004723856225609779, + -0.011058327741920948, + 0.025917956605553627, + 3.389197081560269e-5, + -0.018340039998292923, + 0.00845419056713581, + 0.011502635665237904, + 0.0012372739147394896, + 0.011218772269785404, + -0.011157062835991383, + 0.0043844543397426605, + 0.01294663641601801, + -0.006155514623969793, + -0.006174027454108, + -0.0072014895267784595, + 0.019907459616661072, + 0.007207660470157862, + -0.024276485666632652, + 0.0045387279242277145, + -0.03440917283296585, + 0.005874736700206995, + 0.011527319438755512, + 0.014427662827074528, + -0.0029635948594659567, + 0.0033693343866616488, + -0.006578224245458841, + -0.013353918679058552, + 0.015069440007209778, + -0.004082078114151955, + -0.016352996230125427, + 0.016254261136054993, + 0.027818607166409492, + -0.010768293403089046, + 0.0048812152817845345, + -0.019969169050455093, + -0.0029913641046732664, + 0.016155526041984558, + -0.003539035329595208, + 0.022264758124947548, + 0.0073557631112635136, + 0.004899728111922741, + 0.018006809055805206, + -0.0028864580672234297, + -0.026732521131634712, + -0.014143799431622028, + -0.007886463776230812, + 0.006417779717594385, + 0.016599833965301514, + 0.010299302637577057, + 0.022375835105776787, + 0.0028910862747579813, + 0.00044662193977274, + 0.021635321900248528, + 0.013971013016998768, + 0.0013583785621449351, + -0.0024591204710304737, + 7.014625589363277e-5, + -0.002935825614258647, + 0.005128053016960621, + -0.006806549150496721, + 0.0027769238222390413, + 0.004477018490433693, + 0.01246530283242464, + -0.008398652076721191, + -0.0037087362725287676, + -0.0035482917446643114, + -0.0007844810024835169, + 0.017253953963518143, + -0.0012596435844898224, + 0.00839248113334179, + -0.01036718301475048, + 0.009231729432940483, + 0.012045678682625294, + -0.005813027266412973, + 0.013526705093681812, + 0.00280160759575665, + 0.007473011035472155, + 0.027744555845856667, + -0.021795766428112984, + -0.004063565284013748, + -0.0032860266510397196, + 0.009959900751709938, + 0.013687149621546268, + -0.006997848395258188, + -0.00032667425693944097, + -0.028509752824902534, + 0.017031800001859665, + 0.01993214339017868, + -0.014304243959486485, + 0.0014139170525595546, + 0.0112064303830266, + 0.001389233279041946, + 0.015353303402662277, + 0.002022526226937771, + -0.0023264451883733273, + -0.00847887434065342, + -0.0006502630421891809, + 0.018636245280504227, + 0.006319044623523951, + 0.022116655483841896, + -0.007028703112155199, + -0.018796689808368683, + 0.021314434707164764, + 0.015118807554244995, + -0.01103364396840334, + 0.007435985375195742, + -0.009460054337978363, + -0.02024069055914879, + -0.004072821699082851, + -0.01736503094434738, + -0.004686830565333366, + 0.0017108937026932836, + 0.013711833395063877, + 0.0011138550471514463, + -5.44296381121967e-5, + 0.018068518489599228, + 0.03917314112186432, + 0.01756250113248825, + 0.027226196601986885, + -0.019981510937213898, + -0.0021104621700942516, + -0.006781865376979113, + -0.00386918056756258, + -0.002169086132198572, + -0.016883697360754013, + -0.006720155943185091, + -0.005245300941169262, + 0.006072206888347864, + -0.007528549060225487, + 0.002645791508257389, + 0.018006809055805206, + 0.025917956605553627, + 0.024646742269396782, + 0.02012961357831955, + -0.023202741518616676, + -0.0002707500825636089, + -0.0035544626880437136, + 0.018265988677740097, + 0.005936446134001017, + -0.008151814341545105, + 0.0013622354017570615, + -0.012422106228768826, + 0.007849438115954399, + -0.010965763591229916, + 0.0027568682562559843, + -0.017204586416482925, + -0.025572383776307106, + 0.009435370564460754, + -0.010379524901509285, + 0.019524861127138138, + 0.0007929660496301949, + -0.0001195619988720864, + 0.015427354723215103, + 0.0009811797644942999, + 0.025263836607336998, + -0.021635321900248528, + -0.01858687773346901, + 0.012397422455251217, + -0.00571737764403224, + 0.0006483346223831177, + -0.01071892585605383, + 0.008731883019208908, + -0.01584697887301445, + -0.007454498205333948, + 0.006979335565119982, + 0.019722331315279007, + 0.0030978128779679537, + 0.015032414346933365, + -0.005874736700206995, + 0.001252701273187995, + 0.011496464721858501, + -0.02715214528143406, + 0.0027568682562559843, + -0.007158292923122644, + -0.021660005673766136, + 0.0013483507791534066, + 0.004004941321909428, + 0.017081167548894882, + 0.014193166978657246, + -0.027250880375504494, + 0.015600141137838364, + 0.014094431884586811, + 0.041789621114730835, + -0.009817969053983688, + -0.0032736847642809153, + -0.006207967642694712, + 0.006788036320358515, + 0.00523912999778986, + -0.0021814280189573765, + -0.010126516222953796, + -0.01747610792517662, + 0.006025924813002348, + -0.0007798527949489653, + -0.005310095846652985, + -0.012687456794083118, + 0.01403272245079279, + 0.0076704807579517365, + -0.013711833395063877, + 0.0112064303830266, + -0.0001912992011057213, + -0.0034372147638350725, + 0.002034868113696575, + 0.019487835466861725, + -0.015612483024597168, + 0.015069440007209778, + -0.03438448905944824, + -0.006528856698423624, + 0.015982739627361298, + -0.007448327261954546, + 0.010996618308126926, + 0.004760881885886192, + 0.014415320940315723, + 0.015242226421833038, + 0.014723868109285831, + -0.015859320759773254, + -0.025374913588166237, + -0.009157678112387657, + 0.010237593203783035, + 0.014254876412451267, + -0.014477030374109745, + 0.009577302262187004, + -0.0185621939599514, + 0.004791736602783203, + -0.011539661325514317, + -0.00936749018728733, + -0.017167560756206512, + -0.019611254334449768, + -0.006044437643140554, + 0.005371804814785719, + -0.01987043395638466, + 0.02138848602771759, + 0.01466215867549181, + -0.008287575095891953, + -0.017574843019247055, + -0.018228963017463684, + 0.020573921501636505, + -0.02215368114411831, + 0.012212294153869152, + -0.004291890189051628, + -0.01166308019310236, + -0.019771698862314224, + 0.0031965479720383883, + 0.027423666790127754, + -0.052921999245882034, + -0.008614635095000267, + -0.005106454715132713, + -0.009916704148054123, + -0.012724482454359531, + -1.576482827658765e-5, + -0.01895713433623314, + 0.006664617452770472, + -0.018537510186433792, + -0.006985506508499384, + -0.011823524720966816, + -0.021511903032660484, + -0.02601669169962406, + -0.00705955782905221, + -0.02523915283381939, + 0.019660621881484985, + 0.014254876412451267, + -0.0037056508008390665, + -0.01582229509949684, + -0.006467147264629602, + -0.003461898537352681, + -0.03843262791633606, + -0.008077763020992279, + -0.0104227215051651, + -0.0073927887715399265, + 0.009176190942525864, + -0.024338195100426674, + 0.016118500381708145, + -0.020425818860530853, + -0.008929353207349777, + -0.00862080603837967, + -0.007207660470157862, + 0.01248998660594225, + -0.010706583969295025, + -0.008775079622864723, + -0.01613084226846695, + -0.015661850571632385, + 0.023375527933239937, + -0.0202777162194252, + -0.019179288297891617, + 0.015723560005426407, + -0.01801915094256401, + 0.012280174531042576, + -0.02475781925022602, + 0.009762430563569069, + -0.007639626041054726, + -0.018315356224775314, + -0.012897268868982792, + 0.016883697360754013, + -0.008497387170791626, + 0.008941695094108582, + 0.01590868830680847, + 0.0014231734676286578, + 0.00389694981276989, + 0.002280163113027811, + -0.007948173210024834, + -0.008972549811005592, + -0.004446163773536682, + -0.006769523490220308, + 0.004973779432475567, + 0.01192225981503725, + -0.003492753254249692, + -0.020067904144525528, + -0.021055255085229874, + 0.016315970569849014, + 0.013242841698229313, + -0.0006892170640639961, + -0.01074978057295084, + 0.009361319243907928, + -0.022684382274746895, + 0.01448937226086855, + -0.021166332066059113, + -0.011336020193994045, + 0.024165408685803413, + -0.005668010096997023, + 0.00043929394450969994, + -0.00167232530657202, + 0.020314741879701614, + -0.02892937697470188, + -0.02158595435321331, + 0.02532554604113102, + 0.0004126817511860281, + 0.007343421224504709, + -0.015192858874797821, + 0.01767357811331749, + -0.019660621881484985, + -0.004140702076256275, + 0.015748243778944016, + -0.01838940754532814, + -0.0013730345526710153, + 0.0034711549524217844, + 0.00697316462174058, + -0.023227425292134285, + 0.02073436602950096, + -0.010725096799433231, + -0.017537817358970642, + -0.0033971036318689585, + 0.0015003102598711848, + 0.012138242833316326, + -0.013884619809687138, + 0.01078063528984785, + -0.004819505847990513, + 0.02789265848696232, + -0.025794537737965584, + 0.007250857073813677, + -0.025350229814648628, + 0.0011285110376775265, + 0.015081781893968582, + -0.0052267881110310555, + 0.02875659056007862, + -0.006022839341312647, + 0.006535027641803026, + 0.008904669433832169, + -0.03352055698633194, + -0.014908996410667896, + 0.03280472755432129, + 0.003190377028658986, + 0.0003006405895575881, + 0.003866095095872879, + 0.00244832132011652, + -0.0008168784552253783, + 0.004714599810540676, + 0.0007524692337028682, + -0.0018759663216769695, + -0.012088875286281109, + 0.005766745191067457, + 0.027621136978268623, + 0.0036747960839420557, + 0.010114174336194992, + 0.010583166033029556, + -0.004137616604566574, + -0.01573590189218521, + 0.02675720490515232, + -0.0075964294373989105, + 0.011268139816820621, + 0.005671095568686724, + -0.00551682198420167, + 0.018228963017463684, + -0.0058901640586555, + -0.0003041117452085018, + 0.011712447740137577, + -0.009731575846672058, + -0.013082397170364857, + 0.0029882786329835653, + 0.010373353958129883, + -0.010428892448544502, + -0.013958671130239964, + 0.021734056994318962, + -0.013933987356722355, + -0.013650123961269855, + -0.0016368423821404576, + -0.013971013016998768, + 0.005982728209346533, + 0.010762122459709644, + 0.0066214208491146564, + -0.008546754717826843, + -0.008522070944309235, + -0.02338786981999874, + -0.014168483205139637, + -0.007818583399057388, + 0.007195318583399057, + 0.012773850001394749, + -0.02789265848696232, + -0.0020950348116457462, + 0.004828762263059616, + -0.002371184527873993, + 0.003819813020527363, + -0.013613098300993443, + 0.011539661325514317, + -0.019463151693344116, + 0.0023449580185115337, + 0.01869795471429825, + -0.006886771414428949, + 0.008133301511406898, + 0.021153990179300308, + -0.01984575018286705, + 0.012675114907324314, + -0.005597044248133898, + 0.010200567543506622, + 0.005618642549961805, + -0.027793923392891884, + 0.012687456794083118, + 0.019623596221208572, + 0.009132994338870049, + -0.0027028725016862154, + 0.014304243959486485, + -0.01103364396840334, + -0.003347736084833741, + 0.014958363957703114, + 0.017747629433870316, + 0.010323986411094666, + -0.01374885905534029, + -0.012631918303668499, + -0.010904054157435894, + -0.007108925376087427, + -0.014871970750391483, + 0.006609078962355852, + 0.014328927733004093, + 0.008657831698656082, + 0.006862087640911341, + 0.017229270190000534, + -0.008873814716935158, + 0.012335713021457195, + -0.012459131889045238, + -0.0005565418396145105, + -0.02323976717889309, + -0.016772620379924774, + 0.01810554414987564, + 0.0026442487724125385, + 0.019796382635831833, + 0.007491523399949074, + 0.009040430188179016, + 0.008633147925138474, + 0.016056790947914124, + -0.001840483513660729, + 0.002602594904601574, + -0.007158292923122644, + 0.011965456418693066, + -0.002233881037682295, + 0.014402979053556919, + -0.014785577543079853, + -0.00791114754974842, + 0.0015087953070178628, + -0.010774464346468449, + -0.014082089997828007, + -0.006183283869177103, + 0.00705955782905221, + -0.04058011621236801, + -0.0004038110200781375, + -0.004504787735641003, + 0.0149213382974267, + -0.010262276977300644, + -0.010151199996471405, + 0.004399881698191166, + -0.009293438866734505, + 0.015377987176179886, + 0.005529163870960474, + 0.010614020749926567, + 0.005347121506929398, + 0.00043389436905272305, + -0.02986736036837101, + 0.005390317644923925, + 0.0053039249032735825, + -0.011897576041519642, + -0.013156448490917683, + -0.016352996230125427, + 0.006386925000697374, + -0.00116707943379879, + 0.00893552415072918, + 0.008645489811897278, + -0.033989548683166504, + 0.007614942267537117, + -0.010268447920680046, + -0.0011848208960145712, + 0.0014386008260771632, + 0.01311942283064127, + -0.009219387546181679, + -0.019080553203821182, + -0.016266603022813797, + 0.005964215379208326, + -0.008522070944309235, + 0.05731571093201637, + 0.002300218679010868, + 0.004813334904611111, + 0.004665232263505459, + -0.022449886426329613, + 0.011083011515438557, + -0.005683437455445528, + -0.00049791787751019, + -0.02343723736703396, + 0.031249649822711945, + -0.012638089247047901, + -0.016081474721431732, + 0.019253339618444443, + 0.005979642737656832, + 0.019253339618444443, + -0.013711833395063877, + -0.015377987176179886, + -0.016612175852060318, + -0.006769523490220308, + 0.0008469618041999638, + -0.0238445196300745, + -0.018438775092363358, + 0.012323371134698391, + -0.018981818109750748, + -0.0037056508008390665, + -0.016513440757989883, + 0.0004400653124321252, + 0.007763044908642769, + -0.030484452843666077, + -0.01704414188861847, + 0.0007740675355307758, + 0.00623265141621232, + -0.015168175101280212, + 0.016982432454824448, + 0.023684075102210045, + 0.00959581509232521, + 0.0019901287741959095, + 0.014230192638933659, + -0.02878127433359623, + 0.011428584344685078, + -0.006639933679252863, + -0.03443385660648346, + 0.02423946000635624, + -0.013193474151194096, + 0.013304551132023335, + 0.01893245056271553, + 0.014427662827074528, + -0.010607849806547165, + 0.0016553552122786641, + 0.004017283208668232, + -0.017920415848493576, + 0.003076214576140046, + -0.016081474721431732, + -0.011996311135590076, + 0.015489064157009125, + -0.0004597351944539696, + 0.0031425522174686193, + 0.027374299243092537, + -0.010120345279574394, + -0.005081770941615105, + 0.0013653208734467626, + 0.0229805875569582, + -0.005825369153171778, + -0.010404208675026894, + 0.0036007447633892298, + -0.005788343492895365, + -0.00557544594630599, + 0.005754403304308653, + -0.01619255170226097, + 0.045615602284669876, + 0.013724175281822681, + 0.01621723547577858, + -0.02230178378522396, + -0.011052156798541546, + -0.004992292262613773, + 0.01474855188280344, + 0.011755644343793392, + 0.027942026033997536, + -0.018611561506986618, + 0.01002161018550396, + -0.00187750905752182, + 0.004618950188159943, + 0.0072385151870548725, + 0.004143787547945976, + 0.005050916224718094, + 0.002818577690050006, + 0.02152424491941929, + -0.016377680003643036, + 0.007682822644710541, + -0.028855325654149055, + 0.004788651131093502, + -0.0046158647164702415, + -0.012385080568492413, + -0.019808724522590637, + -0.008287575095891953, + -0.010904054157435894, + -0.007318737450987101, + 0.02124038338661194, + -0.008972549811005592, + 0.010182054713368416, + 0.003566804574802518, + 0.011447097174823284, + -0.021968552842736244, + 0.01311942283064127, + -0.009601986035704613, + -0.01793275773525238, + 0.007991369813680649, + 0.006038266699761152, + -0.00802222453057766, + 0.008805934339761734, + -0.02660910226404667, + -0.018154911696910858, + 0.020882468670606613, + 0.008972549811005592, + 0.031249649822711945, + 0.01211973000317812, + -0.02127740904688835, + -0.0012033337261527777, + 0.024350536987185478, + 0.03302688151597977, + -0.011811182834208012, + 0.013255183584988117, + -0.021832792088389397, + -0.005232959054410458, + -0.0037673600018024445, + -0.005399574059993029, + -0.01801915094256401, + 0.002116633113473654, + -0.0033230523113161325, + 0.018549852073192596, + 0.004483189433813095, + 0.03337245434522629, + 0.013971013016998768, + 0.010614020749926567, + -0.0030746718402951956, + -0.004699172452092171, + 0.013798226602375507, + 0.029620522633194923, + -0.012477644719183445, + 0.018377065658569336, + 0.007534720003604889, + -0.01521754264831543, + 0.003347736084833741, + -0.0016214150236919522, + 0.0013198102824389935, + -0.005495223682373762, + 0.0020765219815075397, + -0.00027499260613694787, + -0.004399881698191166, + -0.014983046799898148, + -0.011138550005853176, + -0.0019299620762467384, + -0.005581616889685392, + 0.011656909249722958, + 0.006099976133555174, + -0.009947558864951134, + 0.020944178104400635, + 0.006220309529453516, + 0.008312258869409561, + 0.0015496778069064021, + -0.008842960000038147, + 0.021079938858747482, + -0.0025563128292560577, + -0.004091334529221058, + -0.01002161018550396, + 0.024338195100426674, + 0.01394632924348116, + 0.014958363957703114, + -0.0075594037771224976, + -0.012125900946557522, + -0.002875658916309476, + 0.0010567738208919764, + 0.0041931550949811935, + 0.011724789626896381, + 0.011113866232335567, + 0.005050916224718094, + 0.01964827999472618, + 0.01658749207854271, + 0.008429506793618202, + 0.00142934441100806, + -0.030830025672912598, + -0.00933663547039032, + 0.011268139816820621, + 0.0029836504254490137, + -0.014736209996044636, + 0.018895424902439117, + -0.0020472100004553795, + -0.017081167548894882, + 0.00962049886584282, + 0.000767510908190161, + 0.01211973000317812, + 0.017537817358970642, + 0.016229577362537384, + 0.010416550561785698, + 0.0385560467839241, + -0.008805934339761734, + 0.02456034906208515, + -0.008182669058442116, + 0.025276178494095802, + 0.0073557631112635136, + 0.005711206700652838, + 0.03534715622663498, + 0.0063560702838003635, + 0.001472541014663875, + 0.018833715468645096, + -0.020438160747289658, + 0.01134836208075285, + -0.004045052453875542, + -0.010033952072262764, + -0.014501714147627354, + -0.011391558684408665, + 0.015661850571632385, + 0.00532552320510149, + -0.0101388581097126, + -0.020228348672389984, + -0.002159829717129469, + -0.007164463866502047, + 0.01687135547399521, + -0.01587166264653206, + 0.010725096799433231, + 0.007898805662989616, + -0.0030145051423460245, + 0.00423943717032671, + 0.0002034482458839193, + 0.011428584344685078, + 0.018623903393745422, + -0.0013822909677401185, + -0.007830925285816193, + -0.0030114196706563234, + 0.0081394724547863, + 0.001497996156103909, + 0.0063930959440767765, + -0.012533183209598064, + -0.008318429812788963, + 0.014983046799898148, + -0.00014520998229272664, + 0.003563719103112817, + -0.0029743940103799105, + 0.026633786037564278, + -0.008713370189070702, + -0.013563730753958225, + -0.014020380564033985, + 0.007719848304986954, + -0.011798840947449207, + 0.01246530283242464, + 0.022141339257359505, + -0.030361033976078033, + 0.00024317367933690548, + 0.004254864528775215, + 0.010046293959021568, + 0.008244378492236137, + -0.011336020193994045, + -0.03927187621593475, + 0.007528549060225487, + -0.00325825740583241, + 0.0022122827358543873, + -0.009669866412878036, + 0.01337860245257616, + 0.007176805753260851, + -0.006291275378316641, + -0.03623577207326889, + 0.011422413401305676, + 0.016439389437437057, + -0.026140110567212105, + -0.01604444906115532, + -0.0008083934080787003, + 0.014884312637150288, + -0.023733442649245262, + 0.0048040784895420074, + 0.004708428867161274, + -0.006417779717594385, + 0.004261035472154617, + -0.004588095471262932, + -0.00836779735982418, + 0.006541198585182428, + 0.025967324152588844, + -5.752113338530762e-6, + 0.0007200717809610069, + 0.04265355318784714, + 0.008071592077612877, + 0.019858092069625854, + 0.017315663397312164, + 0.007158292923122644, + 6.65786792524159e-5, + 0.0348287969827652, + 0.012446790002286434, + 0.008917011320590973, + 0.0007362705073319376, + 0.002182970754802227, + 0.008404823020100594, + 0.00409750547260046, + 0.0041530439630150795, + -0.02161063812673092, + -0.00856526754796505, + 0.014797919429838657, + 0.025819221511483192, + 0.0017247783252969384, + 0.012027165852487087, + -0.000493675353936851, + -0.004282633773982525, + -0.014390637166798115, + 0.005473625380545855, + -0.005735890474170446, + -0.011848208494484425, + -0.01732800528407097, + -0.004523300565779209, + 0.002770752878859639, + 0.0031008983496576548, + -0.013267525471746922, + 0.005646411795169115, + 0.014477030374109745, + -0.012712140567600727, + 0.01366246584802866, + -7.882414502091706e-5, + 0.003338479669764638, + -0.008077763020992279, + -0.014612791128456593, + 0.013144106604158878, + -0.011305165477097034, + 0.01437829528003931, + -0.01824130490422249, + -0.005007719621062279, + 0.005263813771307468, + 0.004054308868944645, + 0.011169404722750187, + -0.010558482259511948, + -0.0023958683013916016, + -0.01647641509771347, + 0.03280472755432129, + -0.01736503094434738, + -0.010175883769989014, + 0.022770775482058525, + 0.002775381086394191, + -0.018401749432086945, + 0.007158292923122644, + -0.015896346420049667, + 0.0011732503771781921, + 0.01995682716369629, + -0.006001241039484739, + 0.006411608774214983, + 0.005371804814785719, + 0.008028395473957062, + -0.02332616038620472, + -0.0022878767922520638, + -0.004486274905502796, + 0.0003881908196490258, + 0.028855325654149055, + -0.00045163583126850426, + 0.033397138118743896, + -0.02132677659392357, + -0.015032414346933365, + -0.027102777734398842, + -0.012360396794974804, + 0.007904976606369019, + -0.0018821372650563717, + -0.01795744150876999, + 0.007411301601678133, + 0.017796996980905533, + 0.013279867358505726, + 0.021166332066059113, + -0.0017602612497285008, + -0.0008269062382169068, + 0.004254864528775215, + -0.019426126033067703, + -0.009009575471282005, + 0.01730332151055336, + -0.010219080373644829, + 0.01143475528806448, + -0.011311336420476437, + -0.0033631634432822466, + -0.0014987675240263343, + -0.02149956114590168, + 0.024461613968014717, + -0.005285412073135376, + -0.005720463115721941, + -0.0002992906956933439, + 0.00498303584754467, + -0.01283555943518877, + -0.004831847734749317, + 0.018623903393745422, + 0.004406052641570568, + -0.01100896019488573, + -0.0014995388919487596, + 0.01089171227067709, + 0.018599219620227814, + 0.015809953212738037, + -0.02169703133404255, + 0.00968220829963684, + 0.022005578503012657, + 0.006053694058209658, + -0.02312869019806385, + 0.016056790947914124, + -0.00779389962553978, + 0.01887074112892151, + 0.0042301807552576065, + 0.01564950868487358, + -0.008559096604585648, + 0.018574535846710205, + 9.637275798013434e-5, + 0.009558789432048798, + -0.0015157376183196902, + 0.024276485666632652, + 0.02878127433359623, + -0.014267218299210072, + -0.0029666803311556578, + -0.002351128961890936, + -0.02895406074821949, + 0.00021848992037121207, + 0.007806241512298584, + 0.02167234756052494, + 0.0023634708486497402, + 0.012712140567600727, + -0.018944792449474335, + 0.008917011320590973, + 0.0002950481721200049, + -0.005424257833510637, + 0.0013313808012753725, + -0.015600141137838364, + -0.023227425292134285, + -0.02747303433716297, + -0.0027861802373081446, + -0.022005578503012657, + -0.020635630935430527, + -0.009799456223845482, + -0.02604137547314167, + 0.0023418725468218327, + 0.003943231888115406, + -0.004862702451646328, + 0.006189454812556505, + -0.007763044908642769, + 0.007096583489328623, + -0.006491831038147211, + 0.011175575666129589, + -0.017945099622011185, + 0.015229884535074234, + 0.011644567362964153, + -0.020833101123571396, + 0.017537817358970642, + 0.003535949857905507, + 0.01257637981325388, + -0.004128360189497471, + -0.001021290896460414, + -0.005896335002034903, + 0.01556311547756195, + 0.0058901640586555, + 0.002645791508257389, + 0.02141316793859005, + -0.03391549736261368, + -0.009305780753493309, + -0.019709989428520203, + -0.024856554344296455, + -0.021857475861907005, + -0.006140087265521288, + -0.00464054848998785, + -0.008361626416444778, + 0.007954344153404236, + 0.013304551132023335, + 0.012415935285389423, + -0.012280174531042576, + 0.006217224057763815, + 0.03203953057527542, + 0.01558779925107956, + -0.009386003017425537, + 0.010212909430265427, + 0.023005271330475807, + 0.003375505330041051, + -0.011514977551996708, + 0.025091050192713737, + 0.03714907169342041, + 0.015415012836456299, + 0.007386617828160524, + -0.008170327171683311, + -0.006016668397933245, + 0.01721692830324173, + -0.012027165852487087, + 0.008805934339761734, + 0.0014817974297329783, + 0.0014871970051899552, + -0.004785565659403801, + 0.022881852462887764, + 0.007473011035472155, + -0.016229577362537384, + 0.02767050452530384, + -0.029916727915406227, + 0.0176982618868351, + -0.004591180942952633, + -3.408481279620901e-5, + -0.001204105094075203, + 0.0011447097640484571, + 0.020623289048671722, + 0.01010800339281559, + 0.00041306743514724076, + -0.0006047523347660899, + -0.009639011695981026, + 0.016661543399095535, + 0.017118193209171295, + -0.012687456794083118, + -0.008077763020992279, + -0.0058161127381026745, + 0.009990755468606949, + -0.011101524345576763, + 0.0028232058975845575, + 0.017402056604623795, + 0.0039987703785300255, + -0.008886156603693962, + 0.022425202652812004, + 0.0005453570047393441, + -0.00802222453057766, + 0.00017172574007418007, + -0.021536586806178093, + -0.0006730183376930654, + -0.030657239258289337, + -0.03394018113613129, + 0.007182976696640253, + -0.0048040784895420074, + -0.03675413131713867, + 0.02193152718245983, + 0.007954344153404236, + -0.012323371134698391, + 0.002892629010602832, + 0.0049583520740270615, + 0.019166946411132812, + 0.0005357149057090282, + 0.004196240566670895, + -0.02132677659392357, + -0.0030484453309327364, + 0.008380139246582985, + 0.023511288687586784, + 0.03117559850215912, + 0.002551684621721506, + 0.011823524720966816, + 0.03709970414638519, + 0.014625133015215397, + 0.0229805875569582, + 0.01624191924929619, + 0.012798533774912357, + 0.008312258869409561, + 0.020549237728118896, + 0.00486887339502573, + -0.012101217173039913, + -0.011397729627788067, + 0.018401749432086945, + -0.023881545290350914, + -0.010206738486886024, + -0.02012961357831955, + -0.014514056034386158, + 0.006849745754152536, + 0.0238445196300745, + -0.024362878873944283, + 0.027818607166409492 + ], + "2caeef28-e32c-4545-b62e-d223747cd700": [ + -0.01582556776702404, + -0.029713310301303864, + -0.021470535546541214, + 0.0659422054886818, + 0.0021870736964046955, + -0.0004377219302114099, + 0.019659090787172318, + 0.027143586426973343, + -0.023731330409646034, + 0.014912824146449566, + 0.025823619216680527, + -0.0007266842294484377, + 0.0427725650370121, + -0.009373173117637634, + 0.026778489351272583, + 0.039430517703294754, + -0.02682061679661274, + 0.008994033560156822, + 0.025430437177419662, + -0.02120373398065567, + 0.025584902614355087, + 0.0037527799140661955, + -0.02260795421898365, + -0.00773023534566164, + 0.009359131567180157, + 0.013578814454376698, + 0.0031594967003911734, + 0.0029242897871881723, + -0.053191881626844406, + -0.009710186161100864, + 0.018058279529213905, + 0.0037492692936211824, + -0.002852323465049267, + 0.0057221995666623116, + 0.037661198526620865, + -0.012511606328189373, + 0.022158604115247726, + 0.025332141667604446, + -0.04892304912209511, + -0.00045944348676130176, + 0.012378205545246601, + 0.025500647723674774, + 0.02010844089090824, + -0.022762417793273926, + -0.01307329535484314, + 0.030443506315350533, + -0.044991232454776764, + -0.004686586558818817, + 0.00031287793535739183, + -0.01991184987127781, + -0.006926318630576134, + -0.025697238743305206, + 0.024770453572273254, + 0.03328002989292145, + 0.030780518427491188, + -0.05689902603626251, + 0.013859658502042294, + -0.0008140092249959707, + -0.00968912336975336, + -0.04532824456691742, + -0.0028610997833311558, + -0.02071225643157959, + 0.010686120018362999, + 0.0032788554672151804, + 0.01389476377516985, + 0.027691232040524483, + -0.02467215806245804, + -0.008081289939582348, + -0.05268636345863342, + 0.00031331676291301847, + 0.009345089085400105, + 0.03187581151723862, + -0.002703124890103936, + 0.012701176106929779, + 0.045552920550107956, + -0.018100405111908913, + 0.03207240253686905, + 0.03690291941165924, + -0.0019132507732138038, + -0.01807232014834881, + 0.012652029283344746, + -0.008039163425564766, + 0.01815657503902912, + 0.006182081997394562, + 0.03965519368648529, + 0.009675080887973309, + 0.008060227148234844, + -0.032521750777959824, + 0.022327110171318054, + -0.04501931741833687, + -0.02370324544608593, + 0.012322036549448967, + 0.0060943178832530975, + -0.029039284214377403, + -0.003412256482988596, + 0.03409447893500328, + 0.008011079393327236, + -0.003995007835328579, + -0.006613879464566708, + -0.054090581834316254, + -0.008327028714120388, + -0.022383278235793114, + 0.035582952201366425, + -0.022959008812904358, + 0.027635063976049423, + -0.010040177963674068, + 0.004623396787792444, + -0.0008872919715940952, + -0.0149689931422472, + 0.07650194317102432, + 0.009555721655488014, + -0.014954950660467148, + 0.0037036321591585875, + 0.003959902562201023, + -0.04808051884174347, + -0.030499674379825592, + -0.03839139640331268, + -0.015348132699728012, + -0.06363928318023682, + -0.011711200699210167, + 0.010349106974899769, + -0.0007416040753014386, + 0.0012339589884504676, + -0.011809496209025383, + -0.045721426606178284, + 0.007596834097057581, + 0.007709171622991562, + 0.03153879940509796, + 0.01595194824039936, + 0.033392369747161865, + -0.02645551785826683, + -0.0037562905345112085, + -0.010608887299895287, + -0.003861607052385807, + 0.014379220083355904, + 0.031229868531227112, + 0.021091395989060402, + 0.04785584285855293, + 0.004339042119681835, + 0.004798924550414085, + -0.04625502973794937, + -0.004834029823541641, + -0.004265320487320423, + 0.001708761090412736, + 0.013403287157416344, + -0.014126460999250412, + -0.01161290518939495, + 0.0501025952398777, + -0.022706249728798866, + -0.018676135689020157, + -0.049400486052036285, + -0.03103327751159668, + -0.008565746247768402, + -0.01328392792493105, + 0.0543995127081871, + -0.033701296895742416, + -0.011676095426082611, + 0.011296955868601799, + 0.016401298344135284, + 0.06448181718587875, + 0.03549870103597641, + -0.020740339532494545, + -0.020248863846063614, + 0.035723377019166946, + 0.06740259379148483, + 0.011549715884029865, + 0.02774740196764469, + 0.018409334123134613, + -0.004472442902624607, + 0.013213717378675938, + 0.025135550647974014, + -0.031791556626558304, + 0.048361361026763916, + 0.011240786872804165, + -0.025978082790970802, + -0.023310063406825066, + 0.04507548734545708, + 0.02193392813205719, + 0.01869017817080021, + 0.007631939835846424, + 0.005353591404855251, + 0.009499553591012955, + 0.015081331133842468, + 0.004268831107765436, + 0.02957288920879364, + 0.008516598492860794, + 0.022383278235793114, + 0.01187970768660307, + -0.014730275608599186, + -0.004662012681365013, + 0.024700243026018143, + 0.026469560340046883, + 0.003359598107635975, + -0.0030471589416265488, + -0.042014285922050476, + -0.03212856873869896, + 0.04861412197351456, + 0.01239926926791668, + -0.02895503118634224, + 0.03291493281722069, + 0.006663027219474316, + -0.0268767848610878, + -0.03471233695745468, + 0.03221282362937927, + -0.006420799531042576, + 0.022467531263828278, + -0.011205681599676609, + 0.01892889477312565, + 0.04496314749121666, + -0.04605843871831894, + 0.03538636118173599, + -0.06566136330366135, + -0.0053465706296265125, + -0.030864771455526352, + -0.017257872968912125, + 0.020852677524089813, + 0.0030313616152852774, + 0.02878652513027191, + -0.012097361497581005, + -0.03886882960796356, + 0.014926866628229618, + -0.0010830052196979523, + -0.009422320872545242, + -0.022762417793273926, + -0.030218830332159996, + 0.03148262947797775, + -0.037913959473371506, + 0.0032174207735806704, + -0.029657142236828804, + -0.004584780894219875, + 0.03782970830798149, + -0.019897807389497757, + 0.0061855921521782875, + 0.014954950660467148, + 0.02029098942875862, + 0.010033156722784042, + 0.021891800686717033, + 0.013943911530077457, + -0.004862114321440458, + 0.014098376035690308, + -0.010896752588450909, + 0.011493546888232231, + 0.012989041395485401, + -0.026961037889122963, + 0.008537662215530872, + 0.006466436665505171, + 0.006364630535244942, + 0.048164770007133484, + 0.001739478437229991, + 0.015839610248804092, + 0.016906818374991417, + -0.0015227018157020211, + -0.006487499922513962, + 0.007898741401731968, + -0.038531817495822906, + 0.04330616816878319, + 0.03384171798825264, + -0.03316769376397133, + -0.009969967417418957, + 0.004819987807422876, + 0.004114366602152586, + 0.027508683502674103, + 0.009036160074174404, + 0.048164770007133484, + 0.007084293756633997, + -0.006055701989680529, + 0.011261850595474243, + 0.004279362503439188, + -0.010033156722784042, + 0.01084058452397585, + 0.02272029221057892, + -0.006540158297866583, + -0.04757499694824219, + 0.024110469967126846, + 0.0009759333916008472, + -0.002137926174327731, + 0.015502597205340862, + -0.017637012526392937, + 0.033448539674282074, + -0.006996529642492533, + -0.01905527524650097, + 0.0329711027443409, + -0.016654057428240776, + -0.003693100530654192, + -0.0002779918140731752, + 0.031370289623737335, + -0.03184772655367851, + -0.00996294617652893, + -0.035948049277067184, + -0.010812499560415745, + 0.01655576191842556, + -0.02045949548482895, + -0.00861489400267601, + -0.027719317004084587, + 0.003305184654891491, + -0.011177596636116505, + -0.012013108469545841, + 0.019279951229691505, + 0.0216952096670866, + 0.011170576326549053, + -0.03684675320982933, + -0.004019581712782383, + 0.03325194865465164, + -0.019448457285761833, + 0.032662175595760345, + -0.03055584244430065, + 0.029292045161128044, + 0.02731209248304367, + -0.007891720160841942, + 0.009281898848712444, + -0.0005015701171942055, + -0.023422401398420334, + -0.03263409063220024, + -0.030106492340564728, + -0.00027031247736886144, + 0.01515154168009758, + -0.011802474968135357, + 0.013220738619565964, + -0.029404383152723312, + -0.010454423725605011, + 0.0027540279552340508, + -0.01048250775784254, + -0.0384756475687027, + 0.026918912306427956, + 0.03181964159011841, + -0.029235875234007835, + 0.02395600639283657, + -0.0008201526943594217, + -0.03263409063220024, + -0.004131919704377651, + -0.04782775789499283, + -0.00386511767283082, + -0.0008491147309541702, + 0.000966279418207705, + -0.048782628029584885, + -0.01992589235305786, + -0.013642004691064358, + -0.055382464081048965, + 0.02052970789372921, + -0.02603425271809101, + -0.001846550265327096, + -0.029769480228424072, + -0.0052272118628025055, + 0.0017192927189171314, + -0.008242775686085224, + 0.0033613534178584814, + -0.035470616072416306, + 0.008657020516693592, + -0.015418343245983124, + 0.012343100272119045, + 0.0009144987561739981, + -0.004314468242228031, + 0.029292045161128044, + -0.00040393287781625986, + 0.02682061679661274, + -0.019659090787172318, + 0.007828530855476856, + 0.006301440764218569, + 0.03819480538368225, + -0.047069478780031204, + 0.010658035054802895, + -0.055747564882040024, + 0.010089325718581676, + 0.003442096058279276, + -0.008607872761785984, + -0.02968522720038891, + -0.01386667974293232, + -0.011016111820936203, + -0.009099350310862064, + 0.0005309709813445807, + 0.013733278959989548, + -0.006743770092725754, + -0.0017438665963709354, + -0.011683116666972637, + -0.010496550239622593, + 0.0015428875340148807, + 0.038531817495822906, + -0.03294301778078079, + -0.017243830487132072, + 0.023352190852165222, + 0.0055291191674768925, + -0.0017324573127552867, + 0.016962986439466476, + 0.015432385727763176, + 0.0037071427796036005, + 0.00999103020876646, + -0.005142958369106054, + -0.0055326297879219055, + -0.012371184304356575, + -0.006178571376949549, + -0.004212662111967802, + -0.01389476377516985, + -0.019631005823612213, + 0.026652108877897263, + -0.019631005823612213, + 0.007800446357578039, + -0.002815462648868561, + -0.02822483703494072, + 0.012364163994789124, + 0.023380275815725327, + -0.004662012681365013, + -0.012350121513009071, + -0.013487540185451508, + -0.009450405836105347, + 0.01911144331097603, + -0.027101460844278336, + -0.015277921222150326, + 0.00043574723531492054, + 0.032774511724710464, + -0.016597889363765717, + 0.013936891220510006, + -0.016766395419836044, + -0.03269026055932045, + 0.01960292086005211, + 0.0476592518389225, + 0.013613919727504253, + -0.04061006382107735, + 0.04437337443232536, + -0.021962013095617294, + 0.027663148939609528, + 0.02481258101761341, + 0.02096501551568508, + 0.026118505746126175, + -0.0051324269734323025, + 0.03563912212848663, + 0.02559894323348999, + -0.043278083205223083, + 0.01815657503902912, + 0.013382223434746265, + 0.02620275877416134, + 0.04125600680708885, + 0.027101460844278336, + -0.01759488508105278, + 0.006733238231390715, + -0.03283068165183067, + -0.0134383924305439, + -0.024573862552642822, + -0.017131492495536804, + 0.018128490075469017, + -0.01606428436934948, + -0.027340177446603775, + 0.026806574314832687, + -0.027213796973228455, + -0.01788977161049843, + -0.05260210856795311, + -0.016597889363765717, + -0.039739448577165604, + 0.021737337112426758, + -0.014042207039892673, + -0.02682061679661274, + 0.020122483372688293, + 0.02065608650445938, + -0.03878457844257355, + -0.020936930552124977, + 0.034740421921014786, + -0.0053255073726177216, + 0.018535714596509933, + -0.025627028197050095, + 0.034543830901384354, + -0.05858409032225609, + -0.004296915605664253, + -0.013719236478209496, + 0.03527402505278587, + -0.0019764406606554985, + 0.023478571325540543, + 0.004883177578449249, + 0.013550730422139168, + -0.003533370327204466, + -0.007210673298686743, + 0.017805518582463264, + 0.0149689931422472, + -0.002397706964984536, + -0.019574837759137154, + 0.016766395419836044, + 0.003759800922125578, + -0.010924837552011013, + -0.020066313445568085, + -0.026722321286797523, + 0.00775831937789917, + -0.002283613895997405, + -0.008965949527919292, + 0.04198620095849037, + 0.03322386369109154, + -0.010917816311120987, + 0.001978195970878005, + 0.029095454141497612, + 0.0030278509948402643, + 0.01648555137217045, + 0.003812459297478199, + -0.03774545341730118, + -0.01517962571233511, + 0.012652029283344746, + 0.044878896325826645, + 0.02448960952460766, + 0.015067288652062416, + -0.0003431564546190202, + 0.02217264473438263, + -0.016387255862355232, + 0.019336119294166565, + -0.0007683720323257148, + -0.034178733825683594, + 0.005992512218654156, + -0.01856379769742489, + -0.022776460275053978, + -0.000689384643919766, + 0.02988181635737419, + -0.020628003403544426, + 0.03061201237142086, + 0.021105438470840454, + -0.005736241582781076, + -0.07228928059339523, + 0.04625502973794937, + -0.06150486692786217, + 0.03201623260974884, + 0.0074844965711236, + -0.010426338762044907, + 0.007582792080938816, + -0.025500647723674774, + 0.0378577895462513, + -0.014983035624027252, + 0.022565826773643494, + -0.024222807958722115, + -0.005518587306141853, + 0.002290635136887431, + -0.019897807389497757, + 0.012546712532639503, + -0.02485470660030842, + -0.013129464350640774, + 0.032774511724710464, + -0.04485081136226654, + -0.009668059647083282, + 0.019532710313796997, + -0.016513636335730553, + -0.010552719235420227, + 0.008137458935379982, + -0.01039123348891735, + 0.00438467925414443, + 0.018971022218465805, + 0.00922572985291481, + -0.019645048305392265, + -0.04937240108847618, + 0.01163396891206503, + -0.026230843737721443, + -0.010924837552011013, + -0.014210714027285576, + 0.014259861782193184, + -0.016752352938055992, + 0.009576785378158092, + -0.0014384486712515354, + 0.014245819300413132, + -0.018535714596509933, + 0.013290949165821075, + 0.008116396144032478, + -0.0016955964965745807, + -0.019953977316617966, + -0.007505559828132391, + 0.049400486052036285, + 0.01722978800535202, + -0.013824553228914738, + -0.014870697632431984, + -0.02162499912083149, + 0.03328002989292145, + -0.001067207776941359, + 0.008074269630014896, + -0.009499553591012955, + -0.002501268172636628, + -0.0033420452382415533, + -0.0031524754595011473, + -0.008994033560156822, + 0.007073761895298958, + 0.007165036164224148, + 0.006385693792253733, + 0.022621996700763702, + -0.021905843168497086, + -0.009436363354325294, + 0.03283068165183067, + -0.019504625350236893, + 0.03825097158551216, + -0.017440421506762505, + 0.0038475648034363985, + 0.009857629425823689, + 0.009920819662511349, + 0.0058591109700500965, + -0.000966279418207705, + -0.005494013428688049, + 0.011816517449915409, + -0.0008201526943594217, + 0.003808948677033186, + -0.006364630535244942, + 0.011535673402249813, + 0.008320007473230362, + 0.003626400139182806, + -0.028519723564386368, + -0.012932873331010342, + 0.009429342113435268, + 0.03855990245938301, + 0.0031138595659285784, + 0.011535673402249813, + 0.05004642531275749, + 1.8101283785654232e-5, + 0.04080665484070778, + 0.018549755215644836, + -0.004346063360571861, + 0.0006090807728469372, + -0.015741314738988876, + 0.022762417793273926, + -0.016148539260029793, + 0.010566760785877705, + 0.013536687940359116, + 0.010636972263455391, + -0.003889691550284624, + -0.03811055049300194, + 0.030499674379825592, + -0.0032174207735806704, + -0.0056028407998383045, + 0.0052939122542738914, + 0.0037562905345112085, + 0.0007560850935988128, + 0.010271874256432056, + -0.006448883563280106, + 0.01530600618571043, + -0.007196631282567978, + 0.0378858745098114, + -0.01637321338057518, + -0.008516598492860794, + 0.045721426606178284, + -0.014884740114212036, + 0.00895190704613924, + -0.003519328311085701, + -0.0201646089553833, + -0.03813863545656204, + -0.03648165613412857, + -0.012792451307177544, + -0.008593831211328506, + 0.007252800278365612, + -0.020824594423174858, + 0.02743847295641899, + 0.0026469561271369457, + -0.0024819602258503437, + -0.028983116149902344, + -0.004458400886505842, + -0.02774740196764469, + 0.02401217445731163, + 0.06908766180276871, + -0.017679139971733093, + 0.00978039763867855, + 0.012792451307177544, + 0.012715218588709831, + 0.007519601844251156, + 0.011690137907862663, + 0.006915787234902382, + 0.0017280691536143422, + -0.021863717585802078, + 0.025978082790970802, + 0.007863636128604412, + -0.016401298344135284, + 0.0058626215904951096, + 0.0006933339755050838, + 0.014379220083355904, + -0.005613372195512056, + 0.03948668763041496, + -0.03524594008922577, + 0.011619926430284977, + 0.0023748883977532387, + 0.03221282362937927, + 0.004026602953672409, + -0.002559192245826125, + -0.006452394183725119, + 0.03243749961256981, + 0.019336119294166565, + 7.662876305403188e-5, + -0.04131217300891876, + 0.006157508119940758, + -0.005444865673780441, + -0.017510632053017616, + 0.01631704531610012, + -0.009604869410395622, + 0.005866132210940123, + 0.0080953324213624, + -0.019687173888087273, + -0.015980031341314316, + -0.022874755784869194, + -0.010110389441251755, + 0.03254983574151993, + -0.052517857402563095, + -0.006519094575196505, + 0.006961424369364977, + -0.04423295333981514, + -0.027508683502674103, + -0.02041736990213394, + -0.0025363736785948277, + 0.0005893338820897043, + -0.0001951647427631542, + 0.036565907299518585, + -0.0026609983760863543, + -0.016218749806284904, + -0.0020624492317438126, + 0.00999103020876646, + 0.0005546672036871314, + -0.0026697746943682432, + -0.013234780170023441, + -0.029404383152723312, + -0.027719317004084587, + 0.0004429877735674381, + 0.013354139402508736, + 0.00021249809651635587, + -0.005873153451830149, + -0.017384253442287445, + -0.01230799499899149, + -0.018549755215644836, + -0.008390218950808048, + 0.03695908933877945, + 0.011999065987765789, + 0.02878652513027191, + -0.004584780894219875, + 0.02791590802371502, + -0.01912548579275608, + 0.029797563329339027, + -0.024700243026018143, + 0.03061201237142086, + 0.008657020516693592, + 0.011851622723042965, + -0.018788473680615425, + -0.004391700495034456, + -0.014561768621206284, + -0.03392597287893295, + 0.02444748394191265, + 0.011640990152955055, + 0.03072435036301613, + -0.002043141284957528, + -0.0009583806386217475, + -0.008621915243566036, + 0.018549755215644836, + 8.183973841369152e-5, + -0.006080275867134333, + 0.003945860080420971, + -0.01874634623527527, + 0.016583846881985664, + 0.044822726398706436, + -0.028744397684931755, + 0.009801460430026054, + -0.00514997960999608, + -0.003273589536547661, + -0.025683198124170303, + -0.010889731347560883, + -0.013045210391283035, + 0.017875729128718376, + -0.01011741068214178, + -0.03802629932761192, + -0.028870778158307076, + -0.0027470067143440247, + -0.027269966900348663, + 0.00803214218467474, + -0.014954950660467148, + -0.027031248435378075, + 0.008298944681882858, + 0.0390935055911541, + 0.001782482722774148, + -0.004026602953672409, + 0.036987174302339554, + -0.014238798059523106, + 0.012588839046657085, + 0.01746850647032261, + -0.023675162345170975, + -0.007287905551493168, + -0.01350158266723156, + 0.007042166776955128, + 0.030949024483561516, + 0.003938839305192232, + -0.00892382301390171, + 0.05066428333520889, + 0.019476542249321938, + 0.014856655150651932, + 0.03679058328270912, + -0.01850762963294983, + 0.01911144331097603, + -0.01402114424854517, + -0.03499317914247513, + -0.025921914726495743, + -0.004953388590365648, + -0.06459415704011917, + -0.040301136672496796, + 0.05785389617085457, + 0.013290949165821075, + 0.025388311594724655, + -0.026624025776982307, + 0.040666233748197556, + -0.0022432426922023296, + 0.0022028712555766106, + -0.006891213357448578, + 0.00019011832773685455, + 0.0023134537041187286, + 0.006568242330104113, + -0.01961696334183216, + 0.014744318090379238, + -0.00959784910082817, + -0.011395251378417015, + 0.0180301945656538, + -0.01197098195552826, + 1.1258449376327917e-5, + 0.004686586558818817, + -0.01551663875579834, + 0.018858684226870537, + 0.014245819300413132, + 0.009113392792642117, + -0.024587905034422874, + -0.0161906648427248, + -0.005097321234643459, + -0.04142451286315918, + 0.011303977109491825, + 0.012132466770708561, + 0.003991497214883566, + -0.02248157374560833, + -0.004609354771673679, + -0.043221913278102875, + -0.01954675279557705, + 0.03476850688457489, + 0.026792531833052635, + 0.030106492340564728, + 0.043474674224853516, + -0.029067369177937508, + -0.01170417945832014, + 0.024573862552642822, + 0.004068729467689991, + 0.0005542283761315048, + -0.02554277516901493, + 0.03005032427608967, + 0.01273628231137991, + 0.008930844254791737, + 0.02816866710782051, + -0.017749350517988205, + -0.02689082734286785, + -0.02326793782413006, + 0.027958035469055176, + 0.006817491725087166, + 0.025935957208275795, + -0.026371264830231667, + 0.0016859425231814384, + -0.0642009750008583, + 0.022313067689538002, + -0.008593831211328506, + -0.030752433463931084, + -0.001681554364040494, + 0.0038686280604451895, + 0.008109374903142452, + -0.008734253235161304, + 0.025444479659199715, + 0.018044237047433853, + 0.002369622467085719, + 0.02193392813205719, + 0.044991232454776764, + -0.030331168323755264, + 0.023801540955901146, + 0.009239772334694862, + -0.014884740114212036, + 0.00322268670424819, + 0.00011041782272513956, + 0.0037808644119650126, + -0.011837581172585487, + -0.02235519327223301, + -0.0012023639865219593, + 0.02516363561153412, + -0.011844601482152939, + -0.012392248027026653, + 0.010503571480512619, + -0.02846355363726616, + -0.008783400990068913, + 0.007870657369494438, + -0.01298202108591795, + 0.00012034610699629411, + -0.020993100479245186, + 0.004784882068634033, + 0.010924837552011013, + 0.01624683476984501, + 0.03426298499107361, + 0.015418343245983124, + 0.006715685594826937, + -0.023183684796094894, + -0.012560754083096981, + 0.0060416595079004765, + 0.0012093851109966636, + -0.0011734019499272108, + -0.0057186889462172985, + 0.02107735350728035, + -0.005539651028811932, + -0.013354139402508736, + 0.007337053306400776, + 0.03398214280605316, + -0.013241801410913467, + 0.015895778313279152, + 0.010040177963674068, + 0.0009276633500121534, + 0.02638530731201172, + 0.015614934265613556, + -0.02536022663116455, + 0.007358116563409567, + 0.017580844461917877, + 0.021007142961025238, + -0.002192339627072215, + -0.011556737124919891, + -0.00022686940792482346, + -0.026371264830231667, + -0.0049674310721457005, + -0.0017842379165813327, + 0.02463003247976303, + -0.045243993401527405, + 0.04111558198928833, + 0.010580803267657757, + 0.02481258101761341, + -0.03527402505278587, + -0.0008609628421254456, + 0.022762417793273926, + 0.003062956500798464, + -0.028084414079785347, + 0.031145615503191948, + 0.01985568180680275, + -0.0038686280604451895, + -0.02492491714656353, + -0.013599878177046776, + -0.011437377892434597, + 0.002039630664512515, + 0.010096346959471703, + 0.023113474249839783, + 0.034178733825683594, + -0.01673831045627594, + -0.025809576734900475, + -0.027087418362498283, + -0.021962013095617294, + 0.0360323041677475, + 0.026834657415747643, + -0.015418343245983124, + -0.01126887183636427, + -0.019631005823612213, + -0.01273628231137991, + -0.0013656046940013766, + -0.025641070678830147, + -0.041649188846349716, + 0.007294926792383194, + 0.003928307443857193, + 0.007224715780466795, + -0.00827788095921278, + 0.003963413182646036, + 0.011626947671175003, + -0.011388230137526989, + -0.017370210960507393, + -0.017875729128718376, + 0.03291493281722069, + 0.009576785378158092, + -0.007010572124272585, + -0.006789407227188349, + -0.007554707583039999, + 0.015067288652062416, + -0.007252800278365612, + 0.00029093699413351715, + 0.006010064855217934, + -0.0025065341033041477, + 0.011135470122098923, + -0.015530681237578392, + -0.007624918594956398, + 0.0058099632151424885, + 0.009204667061567307, + -0.003980965819209814, + 0.024475567042827606, + -0.0053219967521727085, + -0.01699107140302658, + 0.024222807958722115, + -0.016906818374991417, + 0.023548781871795654, + -0.016822565346956253, + 0.00453914375975728, + -0.010601866990327835, + -0.01481452863663435, + -0.021470535546541214, + -0.019953977316617966, + -0.022523701190948486, + -0.0397113636136055, + -0.033645130693912506, + -0.03201623260974884, + -0.0005406249547377229, + -0.015994073823094368, + 0.011844601482152939, + -0.01899910718202591, + 0.019897807389497757, + -0.009338067844510078, + 0.012167572975158691, + -0.022593911737203598, + 0.0050130682066082954, + 0.02798611856997013, + -0.02541639469563961, + -0.013445413671433926, + 0.012455438263714314, + 0.004549675155431032, + -0.0034719358664005995, + 0.01949058473110199, + 0.004609354771673679, + 0.004718181677162647, + 0.006799939088523388, + -0.00928892008960247, + -0.027719317004084587, + -0.00684206560254097, + -0.015614934265613556, + 0.0020168120972812176, + 0.010812499560415745, + 0.012069277465343475, + 0.03005032427608967, + 0.013950932770967484, + 0.006799939088523388, + 0.008425324223935604, + -0.0433904193341732, + -0.002002769848331809, + -0.02742443047463894, + -0.03212856873869896, + 0.013557751663029194, + -0.0128275565803051, + -0.0053465706296265125, + -0.0023169643245637417, + 0.0287163145840168, + -0.01985568180680275, + 0.006771854590624571, + 0.007098335772752762, + -0.01949058473110199, + -0.012595860287547112, + -0.009211688302457333, + -0.003503530751913786, + -0.0006542790797539055, + 0.020150568336248398, + -0.002097554737702012, + -0.010651014745235443, + 0.011332061141729355, + -0.010271874256432056, + -0.002653977135196328, + -0.018591882660984993, + -0.008972970768809319, + -0.024040259420871735, + 0.013971996493637562, + -0.013452434912323952, + -0.0061891027726233006, + -0.08155713975429535, + -0.029292045161128044, + -0.017763392999768257, + 0.010945900343358517, + 0.0021818079985678196, + -0.0021414365619421005, + -0.002855833852663636, + 0.010405275970697403, + 0.01699107140302658, + -0.008151501417160034, + 0.007021103519946337, + -0.0055782669223845005, + -0.020908847451210022, + 0.044991232454776764, + 0.011816517449915409, + 0.017805518582463264, + -0.002348559210076928, + -0.02541639469563961, + -0.0027628042735159397, + -0.01334711816161871, + 0.010784415528178215, + 0.009878693148493767, + 0.03187581151723862, + -0.0010514103341847658, + -0.03867223858833313, + 0.004521590657532215, + 0.007947889156639576, + -0.021428408101201057, + -0.0006090807728469372, + -0.027873782441020012, + -0.0032788554672151804, + 0.01814253255724907, + -0.003203378524631262, + -0.032353244721889496, + -0.019027190282940865, + 0.019504625350236893, + 0.010636972263455391, + -0.03153879940509796, + 0.005192106124013662, + 0.011170576326549053, + -0.00616803951561451, + -0.008193627931177616, + 0.007365137804299593, + 0.010166558437049389, + -0.009576785378158092, + 0.0003648779820650816, + 0.011942896991968155, + -0.030387336388230324, + 0.008635957725346088, + 0.012602881528437138, + 0.01978546939790249, + 0.01790381409227848, + -0.015053246170282364, + -0.012525648809969425, + -0.014182629063725471, + 0.00904318131506443, + 0.0014226511120796204, + -0.008692126721143723, + 0.019532710313796997, + -0.00956274289637804, + 0.06257207691669464, + 0.016092369332909584, + 0.011711200699210167, + -0.011416314169764519, + -0.022804545238614082, + 0.02308538928627968, + -0.012188635766506195, + 0.041143666952848434, + 0.01383859571069479, + -0.022987093776464462, + 0.008572767488658428, + 0.006691111717373133, + -0.02206030860543251, + 0.009920819662511349, + -0.006547179073095322, + 0.016766395419836044, + 0.006410267669707537, + 0.01032804325222969, + 0.007856614887714386, + 0.02444748394191265, + -0.0256551131606102, + -0.00043486960930749774, + -0.019968019798398018, + -0.0038686280604451895, + -0.004486485384404659, + -0.010264853946864605, + -0.0003747513983398676, + -0.011016111820936203, + 0.023492613807320595, + 0.0016885754885151982, + 0.022158604115247726, + -0.0008758826879784465, + 0.0003659750218503177, + 0.0024907365441322327, + -0.018605925142765045, + 0.06032532453536987, + -0.028926948085427284, + 0.03892499953508377, + -0.004651481285691261, + -0.010496550239622593, + -0.019167613238096237, + -0.012623944319784641, + 0.016232792288064957, + -0.004054687451571226, + 0.019504625350236893, + 0.005795921199023724, + -0.020810551941394806, + -0.003285876475274563, + 0.006364630535244942, + -0.01852167211472988, + 0.009843586944043636, + 0.003531615249812603, + -0.03488084301352501, + 0.027663148939609528, + -0.008221711963415146, + 0.003240239340811968, + 0.00705620925873518, + -0.0028207283467054367, + -0.012251826003193855, + 0.004181067459285259, + 0.003812459297478199, + 0.03488084301352501, + 0.008467450737953186, + -0.023689202964305878, + -0.009204667061567307, + 0.005023599602282047, + -5.120468995301053e-5, + -0.007723214104771614, + -0.0027189224492758512, + 0.03055584244430065, + -0.028505681082606316, + -0.014519642107188702, + 0.0014314275467768312, + -0.0017008623108267784, + 0.012202678248286247, + -0.012251826003193855, + 0.017201704904437065, + 0.0006959668826311827, + 0.021793505176901817, + -0.03190389648079872, + 0.0008034775382839143, + -0.01887272670865059, + -0.01512345764786005, + -0.002011546166613698, + -0.01766509748995304, + 0.01337520219385624, + -0.02144245058298111, + -0.0021572341211140156, + -0.002460896736010909, + 0.010875689797103405, + 0.012539691291749477, + 0.031623050570487976, + 0.010173579677939415, + 0.04954090714454651, + -0.03328002989292145, + -0.021049268543720245, + -0.010805478319525719, + 0.01790381409227848, + -0.02742443047463894, + -0.015614934265613556, + -0.00122606020886451, + 0.012539691291749477, + 0.008853611536324024, + 0.016513636335730553, + 0.004574249032884836, + -0.004560207016766071, + -0.011676095426082611, + -0.004777860827744007, + -0.029741395264863968, + -0.02151266112923622, + 0.007842572405934334, + 6.631651922361925e-5, + -0.030415421351790428, + -0.015067288652062416, + -0.015980031341314316, + -0.01819870062172413, + -0.0030699775088578463, + 0.001669267425313592, + 0.017370210960507393, + -0.006526115816086531, + -0.023450486361980438, + 0.004816477186977863, + 0.010412297211587429, + -0.013971996493637562, + -0.0006968445377424359, + 0.013452434912323952, + -0.009675080887973309, + 0.02705933339893818, + -0.008144480176270008, + -0.0003776037192437798, + -0.0028575891628861427, + 0.014365178532898426, + -0.0055045452900230885, + 0.007638960611075163, + 0.007052698638290167, + -0.00723875779658556, + 0.020557790994644165, + 0.015348132699728012, + -0.02559894323348999, + -0.011023133061826229, + -0.003668526653200388, + -0.01918165571987629, + 0.025612985715270042, + 0.0027768465224653482, + -0.011409293860197067, + 0.009520616382360458, + -0.02321176789700985, + -0.00352810462936759, + 0.008284902200102806, + -0.025374269112944603, + 0.007877678610384464, + 0.00015654867456760257, + 0.022018181160092354, + 0.012202678248286247, + -0.003640442155301571, + 0.006080275867134333, + 0.02076842449605465, + -0.02481258101761341, + 0.008621915243566036, + -0.03802629932761192, + 0.03513360396027565, + -0.011198660358786583, + 0.01770722307264805, + -0.004735734313726425, + -0.004198620095849037, + -0.0029120028484612703, + 0.030218830332159996, + -0.048305194824934006, + -0.016822565346956253, + -0.004907751455903053, + 0.015923863276839256, + 0.007842572405934334, + -0.015474512241780758, + 0.0006867516785860062, + -0.01717361994087696, + 0.003622889518737793, + 0.026244886219501495, + -0.008474471978843212, + 0.021582873538136482, + -0.0023678671568632126, + 0.0030682221986353397, + -0.023352190852165222, + 0.01169715914875269, + -0.008011079393327236, + 0.027958035469055176, + 0.029713310301303864, + -0.01699107140302658, + -0.011655031703412533, + 0.011626947671175003, + 0.022888798266649246, + 0.01481452863663435, + 0.023478571325540543, + -0.011676095426082611, + -0.008727231994271278, + -0.005732730962336063, + -0.040160711854696274, + 0.03328002989292145, + -0.014884740114212036, + 0.012209699489176273, + -0.01613449677824974, + -0.02798611856997013, + -0.007919805124402046, + 0.014421346597373486, + -0.015348132699728012, + 0.004497016780078411, + 0.004693607799708843, + -0.006245271768420935, + -0.006557710934430361, + 0.021245859563350677, + -0.018914854153990746, + -0.005687093827873468, + 0.005079768598079681, + -0.01784764602780342, + 0.0054132710210978985, + 0.011865665204823017, + -0.01481452863663435, + -0.02058587595820427, + -0.026624025776982307, + 0.0023046773858368397, + -0.010672077536582947, + -0.014870697632431984, + 0.0029278001748025417, + -0.015671104192733765, + 0.011739285662770271, + -0.0007341441814787686, + -0.004669033922255039, + -0.028238879516720772, + -0.010243790224194527, + 0.021105438470840454, + -0.007049188017845154, + 0.019827596843242645, + 0.022144561633467674, + 0.01463198009878397, + -0.003317471593618393, + 0.02675040438771248, + 0.0284073855727911, + -0.0063997358083724976, + -0.0009654017630964518, + 0.006283887661993504, + -0.011170576326549053, + 0.005448376294225454, + 0.005195616744458675, + -0.02652573026716709, + 0.015811525285243988, + 0.0009636464528739452, + -0.00019933351723011583, + 0.007842572405934334, + -0.008467450737953186, + -0.0010110388975590467, + -0.004082771949470043, + -0.006989508867263794, + -0.014035185799002647, + -0.002311698393896222, + -0.04080665484070778, + 0.0025416396092623472, + 0.0056730518117547035, + 0.012385226786136627, + 0.008551704697310925, + 0.0229028407484293, + -0.018956979736685753, + -0.0024117492139339447, + -0.03336428478360176, + 0.007926826365292072, + 0.009710186161100864, + -0.041649188846349716, + -0.004911262076348066, + -0.007589812856167555, + 0.016822565346956253, + 0.011346103623509407, + -0.0059468746185302734, + -0.016878733411431313, + 0.03738035634160042, + 0.01395795401185751, + 0.02884269319474697, + 0.00773023534566164, + -0.00858680997043848, + 0.011107386089861393, + -0.0055326297879219055, + -0.0108476048335433, + -0.008544683456420898, + 0.024405356496572495, + 0.02217264473438263, + -0.028393343091011047, + 0.014688149094581604, + 0.015853652730584145, + 0.02780357003211975, + -0.019279951229691505, + 0.00788469985127449, + -0.006880681496113539, + -0.008453409187495708, + 0.01752467453479767, + 0.006196124013513327, + 0.013915827497839928, + -0.0232258103787899, + 0.026062337681651115, + 0.02632913924753666, + 0.014000080525875092, + -0.0003087091608904302, + -0.003935328684747219, + -0.03527402505278587, + -0.008818506263196468, + 0.01481452863663435, + -0.0012128956150263548, + 0.009661038406193256, + -0.006684090476483107, + 0.007273863535374403, + -0.012251826003193855, + -0.025458522140979767, + 0.00978039763867855, + -0.025739366188645363, + -0.0005634435801766813, + -0.011177596636116505, + -0.02248157374560833, + 0.007947889156639576, + 0.0006814858643338084, + 0.022130519151687622, + -0.004195109475404024, + 0.00563794607296586, + 0.019350161775946617, + -0.010959942825138569, + -0.016597889363765717, + 0.017384253442287445, + 0.0011540938867256045, + -0.03555486723780632, + -0.004346063360571861, + 0.004461911506950855, + 0.013150527141988277, + 0.00892382301390171, + -0.006985998246818781, + -0.01655576191842556, + 0.003243749961256981, + -0.019392289221286774, + -0.012069277465343475, + 0.0016736555844545364, + 0.021737337112426758, + 0.01460389606654644, + -0.012083319015800953, + 0.0025433949194848537, + -0.019167613238096237, + -0.014926866628229618, + -0.027663148939609528, + 0.029348213225603104, + -0.018465502187609673, + 0.031791556626558304, + -0.01029995921999216, + 0.01852167211472988, + -0.015235794708132744, + 0.011430356651544571, + 0.0024819602258503437, + -0.003317471593618393, + -0.011837581172585487, + 0.004591801669448614, + -0.00739322230219841, + -0.016878733411431313, + -0.03431915491819382, + -0.008376176469027996, + -0.01429496705532074, + 0.02076842449605465, + 0.002241487381979823, + -0.009036160074174404, + -0.009815502911806107, + -0.02187775820493698, + -0.030331168323755264, + 0.009309983812272549, + -0.005220190621912479, + 0.029769480228424072, + -0.0037071427796036005, + -0.005100831855088472, + 0.0033543321769684553, + -0.014365178532898426, + -0.016457466408610344, + -0.01746850647032261, + -0.015811525285243988, + 0.007723214104771614, + 0.024658115580677986, + -0.025809576734900475, + 0.014575811102986336, + 0.002959395293146372, + -0.012497564777731895, + -0.02448960952460766, + -0.020024187862873077, + 0.00383352255448699, + -0.0016104656970128417, + -0.024756411090493202, + 0.00018682717927731574, + -0.014091354794800282, + 0.006087297108024359, + 0.0025030234828591347, + 0.00589421670883894, + 0.0007038656622171402, + 0.020262904465198517, + -0.035526785999536514, + -0.0050832792185246944, + 0.03330811485648155, + 0.02547256462275982, + 0.014884740114212036, + -0.00907828751951456, + 0.0059293219819664955, + -0.007203652523458004, + 0.021526703611016273, + 0.01273628231137991, + 0.0002779918140731752, + 0.013494561426341534, + 0.0062593137845396996, + -0.019504625350236893, + 0.02652573026716709, + 0.004310957621783018, + 0.00665951706469059, + -0.01998206041753292, + -0.016710227355360985, + 0.017819561064243317, + 0.0010408785892650485, + 0.017328083515167236, + -0.004198620095849037, + 0.018971022218465805, + -0.03319577872753143, + 0.0010768617503345013, + 0.017974024638533592, + -0.011016111820936203, + -0.0034192774910479784, + -0.015628976747393608, + -0.001467410707846284, + 0.0060030436143279076, + -0.004437337629497051, + -0.009408279322087765, + -0.02224285714328289, + 0.0026820616330951452, + -0.012932873331010342, + 0.01668214239180088, + 0.028393343091011047, + -0.02297305129468441, + 0.020543748512864113, + -0.01178843341767788, + -0.00426180986687541, + 0.02076842449605465, + -0.007751298602670431, + -0.008018100634217262, + 0.004588291049003601, + -0.0035719864536076784, + 0.00023213523672893643, + -0.010215706191956997, + -0.00493583595380187, + -0.024040259420871735, + 0.008530640974640846, + 0.00029159520636312664, + -0.030443506315350533, + -0.016962986439466476, + 0.0029997664969414473, + 0.0018500607693567872, + -0.002064204541966319, + -0.01029995921999216, + 0.022495616227388382, + 0.002546905307099223, + -0.010896752588450909, + 0.011261850595474243, + -0.006227719131857157, + -0.0026136059314012527, + -0.007674066349864006, + -0.012006087228655815, + -0.010412297211587429, + -0.01395795401185751, + -0.0006024984759278595, + -0.003714163787662983, + -0.00478137144818902, + 0.012104382738471031, + 0.014716233126819134, + -0.0013348873471841216, + 0.0014647777425125241, + -0.023731330409646034, + -0.010672077536582947, + 0.004665523301810026, + 0.010896752588450909, + 0.0010478997137397528, + -0.013052231632173061, + 0.012525648809969425, + -0.00784959364682436, + 0.014561768621206284, + -0.004795413929969072, + -0.017917856574058533, + -0.015067288652062416, + -0.010124431923031807, + -0.0016482040518894792, + -0.02308538928627968, + 0.019448457285761833, + 0.01759488508105278, + 0.07290714234113693, + 0.014007101766765118, + 0.003454382997006178, + 0.007386201061308384, + 0.011886728927493095, + -0.03468425199389458, + 0.0003005909966304898, + 0.00020657404093071818, + 0.0008368277922272682, + -0.00766704510897398, + 0.008846590295433998, + -0.03378555178642273, + 0.010264853946864605, + 0.006203145254403353, + -0.011753327213227749, + -0.005866132210940123, + 0.014119439758360386, + 0.01766509748995304, + -0.009281898848712444, + 0.03622889518737793, + 0.0003001521690748632, + -0.012792451307177544, + 0.0036860795225948095, + 0.021554788574576378, + -0.003907244186848402, + 0.003903733566403389, + -0.010686120018362999, + 0.0016174867050722241, + 0.01126887183636427, + 0.020670128986239433, + 0.019167613238096237, + -0.0007810977986082435, + 0.008600852452218533, + 0.011135470122098923, + 0.0030927960760891438, + 0.011802474968135357, + -0.00675079133361578, + 0.008628936484456062, + 0.01642938330769539, + 0.013052231632173061, + -0.006877170875668526, + 0.022706249728798866, + 0.012027150951325893, + 0.015965988859534264, + 0.0016683897702023387, + -0.014287945814430714, + 0.0051078530959784985, + -0.0022063818760216236, + -0.017552759498357773, + 0.012996062636375427, + -0.03207240253686905, + -0.007519601844251156, + 0.006929829251021147, + -0.0012480012373998761, + 0.000319460203172639, + -0.014617937617003918, + 0.006487499922513962, + -0.007136951666325331, + 0.0024363230913877487, + 0.0057853893376886845, + 0.013157548382878304, + -0.003170028328895569, + -0.01899910718202591, + -0.027269966900348663, + -0.010700161568820477, + -0.0025820108130574226, + 0.0006810470367781818, + -0.025205763056874275, + 0.00867808423936367, + -0.007435348816215992, + 0.0015630732523277402, + 0.015600892715156078, + 0.006677069701254368, + -0.02957288920879364, + 0.001916761277243495, + 0.017819561064243317, + 0.007982994429767132, + 0.01478644460439682, + -0.007182589266449213, + 0.011886728927493095, + 0.013908806256949902, + 0.009703164920210838, + -0.02009439840912819, + -0.01600811630487442, + 0.003500020131468773, + 0.0033911929931491613, + 0.013908806256949902, + -0.012476501055061817, + 0.0011874441988766193, + -0.030415421351790428, + 0.004346063360571861, + 0.013789447955787182, + -0.009555721655488014, + 0.0024257912300527096, + -0.01819870062172413, + -0.007638960611075163, + 0.00038155310903675854, + -0.02229902520775795, + 0.010952921584248543, + 0.009239772334694862, + 0.019968019798398018, + 0.0059293219819664955, + -0.009822524152696133, + -0.007323011290282011, + 0.020333116874098778, + -0.010278895497322083, + 0.007066740654408932, + 0.004911262076348066, + -0.017314041033387184, + -0.008783400990068913, + -0.0026065846905112267, + 0.0018447949551045895, + 0.009878693148493767, + 0.00696493498980999, + -0.012160551734268665, + -0.002876897342503071, + 0.015530681237578392, + 0.006512073799967766, + -0.0146600641310215, + -0.025641070678830147, + -0.004683075938373804, + -0.010615908540785313, + -0.002724188147112727, + 0.00014766259118914604, + -0.007337053306400776, + 0.0006836799439042807, + -0.010615908540785313, + -0.008965949527919292, + -0.017131492495536804, + -0.008481493219733238, + 0.012960957363247871, + -0.0031191252637654543, + 0.013171590864658356, + -0.0032174207735806704, + 0.017243830487132072, + -0.01011741068214178, + -0.007358116563409567, + 0.009373173117637634, + 0.04125600680708885, + -0.029067369177937508, + 0.0021449471823871136, + 0.016836605966091156, + 0.0007148361182771623, + 0.013571793213486671, + 0.021245859563350677, + 0.0059047481045126915, + 0.007049188017845154, + -0.010749309323728085, + 0.013333075679838657, + -0.007800446357578039, + 0.022383278235793114, + -0.013656046241521835, + 0.016822565346956253, + -0.01600811630487442, + 0.03201623260974884, + 0.0084042614325881, + -0.006318993400782347, + 0.014091354794800282, + 0.0055045452900230885, + 0.0011321529746055603, + -0.01499707717448473, + 0.023239852860569954, + -0.0054799714125692844, + -0.01215353049337864, + -0.002032609423622489, + 0.01961696334183216, + 0.014301988296210766, + 0.029741395264863968, + 0.0032753448467701674, + 0.0010514103341847658, + -0.010292937979102135, + 0.021639041602611542, + 0.003442096058279276, + -0.02951671928167343, + -0.019813554361462593, + -0.021063311025500298, + 0.005704646930098534, + 0.027410387992858887, + -0.029657142236828804, + -0.013754341751337051, + 0.007737256120890379, + -0.01368413120508194, + 0.02102118358016014, + 0.0055817775428295135, + 0.008572767488658428, + -0.020740339532494545, + 0.02638530731201172, + -0.03134220838546753, + 0.01850762963294983, + 0.020136525854468346, + -0.013852637261152267, + 0.047743506729602814, + -0.0090150972828269, + 0.02253774367272854, + -0.011605883948504925, + 0.00947146862745285, + 0.0053641232661902905, + 0.023927921429276466, + -0.01631704531610012, + -0.006347077898681164, + 0.00019779764988925308, + -0.01630300283432007, + -0.019448457285761833, + 0.0056274146772921085, + 0.005967938341200352, + -0.007653003092855215, + -0.011037174612283707, + -0.009766355156898499, + -0.0149689931422472, + 0.012652029283344746, + -0.05748879536986351, + -0.02340835891664028, + 0.027958035469055176, + -0.0032419946510344744, + -0.013599878177046776, + 0.017328083515167236, + 0.0074844965711236, + 0.01426688302308321, + 0.007961931638419628, + -0.005448376294225454, + -0.005525608547031879, + 0.0035684758331626654, + 0.014898781664669514, + -0.0008412160095758736, + -0.014028165489435196, + 0.014217735268175602, + 0.002559192245826125, + -0.00827788095921278, + 0.008165543898940086, + -0.01661193184554577, + 0.02756485342979431, + -0.00944338459521532, + -0.0024784496054053307, + 0.021709252148866653, + 0.010201663710176945, + 0.01923782378435135, + -0.0014911069301888347, + -0.008488514460623264, + 0.005887195467948914, + 0.0031191252637654543, + 0.004332020878791809, + 0.011577799916267395, + 0.008151501417160034, + 0.003840543795377016, + 0.014800486154854298, + -0.0009250303846783936, + -0.007045677397400141, + 0.007982994429767132, + 0.00010153173934668303, + -2.3394537493004464e-5, + -0.008713189512491226, + -0.001941335154697299, + -0.009359131567180157, + 0.014063270762562752, + 0.001907984958961606, + 0.01264500804245472, + -0.0009706675773486495, + -0.011346103623509407, + -0.008228733204305172, + 0.009773376397788525, + -0.002188829006627202, + 0.012989041395485401, + 0.011240786872804165, + 0.006132934242486954, + 0.0006380428094416857, + -0.009850608184933662, + -0.012329057790338993, + 0.020122483372688293, + -0.01838124915957451, + 0.023071346804499626, + 0.001800913130864501, + 0.004497016780078411, + 0.003013808745890856, + -0.0038054382894188166, + -0.0055080559104681015, + 0.0027961544692516327, + 0.010314001701772213, + 0.009036160074174404, + -0.008011079393327236, + 0.006729728076606989, + -0.0005744140362367034, + -0.0024012173525989056, + 0.025514690205454826, + -0.02693295292556286, + 0.010194642469286919, + -0.004697118420153856, + 0.00824979692697525, + 0.004121387843042612, + 0.0019588880240917206, + 0.0022765928879380226, + -0.005269338376820087, + 0.009864650666713715, + 0.00874127447605133, + -0.015348132699728012, + -0.0022063818760216236, + 0.024896834045648575, + 0.004865624941885471, + -0.01362094096839428, + 0.01845145970582962, + -0.0024205255322158337, + 0.004521590657532215, + -0.024208765476942062, + -0.003980965819209814, + -0.00773023534566164, + 0.019841639325022697, + -0.0006867516785860062, + -0.00665951706469059, + -0.006589305587112904, + -0.008144480176270008, + 0.0013936890754848719, + -0.015362175181508064, + 0.009120414033532143, + 0.0022309557534754276, + -0.006417288910597563, + -0.003463159315288067, + -0.0005577389383688569, + 0.01512345764786005, + 0.015923863276839256, + -0.015614934265613556, + 0.005160511005669832, + -0.026666151359677315, + -0.0019553774036467075, + -0.012841599062085152, + 0.021414365619421005, + -0.012251826003193855, + 0.02585170418024063, + 0.006392715033143759, + 0.010349106974899769, + 0.011170576326549053, + -0.043278083205223083, + -0.004419784992933273, + -0.014407305046916008, + -0.0005840680678375065, + -0.002773335902020335, + 0.007323011290282011, + 0.02742443047463894, + -0.031370289623737335, + 0.00913445558398962, + 0.003408745862543583, + 0.016541719436645508, + -0.020487580448389053, + 0.0005779245984740555, + -0.006529626436531544, + -0.021231817081570625, + 0.006564732175320387, + 0.021582873538136482, + -0.004855093080550432, + -0.009731249883770943, + 0.007688108365982771, + 0.02639934979379177, + 0.010615908540785313, + 0.004549675155431032, + 0.028870778158307076, + -0.012286931276321411, + -0.0016587357968091965, + -0.005564224440604448, + -0.0035140623804181814, + 0.011718221940100193, + -0.014589853584766388, + 0.005051684100180864, + -0.0029629056807607412, + -0.00505870534107089, + -0.014617937617003918, + 0.0029523740522563457, + 0.01075633056461811, + -0.0140492282807827, + 0.010728246532380581, + 0.017988067120313644, + -0.018100405111908913, + 0.0008131315698847175, + -0.008060227148234844, + -0.03903733566403389, + -0.014519642107188702, + -0.004970941226929426, + -0.0057853893376886845, + 0.011949918232858181, + -0.004405742511153221, + -0.00846042949706316, + -0.004981473088264465, + 0.005357102025300264, + 0.020571833476424217, + 0.0017482548719272017, + -0.018353164196014404, + -0.010131452232599258, + 0.025430437177419662, + 0.020319074392318726, + 0.011395251378417015, + 0.02206030860543251, + -0.007526623085141182, + 0.00016038834291975945, + 0.0024117492139339447, + 0.009527637623250484, + -0.005171042867004871, + -0.004686586558818817, + 0.01005422044545412, + -0.023310063406825066, + -0.008397240191698074, + 0.03305535763502121, + 0.020866720005869865, + -0.005469439551234245, + 0.010475486516952515, + 0.007519601844251156, + 0.011051217094063759, + 0.03030308336019516, + 0.0025820108130574226, + -0.008411282673478127, + 0.003326247911900282, + 0.022678164765238762, + 0.001531478250399232, + -0.0010066507384181023, + -0.009731249883770943, + 0.015909820795059204, + -0.00876935850828886, + -0.0008679839666001499, + -0.005258806515485048, + -0.013522645458579063, + 0.01808636263012886, + -0.006294419523328543, + 0.024953002110123634, + 0.009794439189136028, + 0.009359131567180157, + -0.00733003206551075, + -0.0003205572720617056, + -0.017496589571237564, + 0.002327495953068137, + 0.00987167190760374, + 0.020487580448389053, + -0.0033332689199596643, + -0.015811525285243988, + 0.02419472299516201, + -0.003380661364644766, + -0.0296290572732687, + -0.01328392792493105, + 0.014147523790597916, + -0.00968912336975336, + 0.0022941455245018005, + -0.0011084567522630095, + -0.009324025362730026, + 0.02541639469563961, + 0.00407926132902503, + -0.013333075679838657, + 0.004181067459285259, + 0.006887702737003565, + -0.00242228084243834, + 0.0007056209142319858, + -0.008102353662252426, + 0.003808948677033186, + 0.013396265916526318, + -0.015165584161877632, + -0.02279050275683403, + -0.007568749599158764, + 0.027227839455008507, + 0.016668099910020828, + -0.020670128986239433, + -0.002357335528358817, + -0.037352271378040314, + -0.00931700412184, + 0.020796509459614754, + 0.010973985306918621, + 0.0024942471645772457, + 0.00916956178843975, + 0.0014867186546325684, + -0.01648555137217045, + 0.01753871701657772, + -0.010250811465084553, + -0.019139528274536133, + 0.020993100479245186, + 0.01985568180680275, + 0.0010294693056493998, + -0.004086282569915056, + -0.010580803267657757, + -0.002501268172636628, + 0.018985064700245857, + -0.0006161018391139805, + 0.010545697994530201, + -0.0037492692936211824, + -0.001978195970878005, + 0.009604869410395622, + 0.0032051338348537683, + -0.014421346597373486, + -0.013017126359045506, + -0.02425089292228222, + 0.01224480476230383, + 0.02156883105635643, + 0.01801615208387375, + 0.009682102128863335, + -0.004093303345143795, + 0.011732264421880245, + 0.013979017734527588, + 0.02853376604616642, + -0.005044662859290838, + -0.016260875388979912, + 0.008123417384922504, + -0.005174553487449884, + 0.006845576222985983, + -0.011963960714638233, + -0.0006972833652980626, + 0.006582284811884165, + 0.016752352938055992, + -0.014561768621206284, + -0.011332061141729355, + -0.0018939427100121975, + 0.0026680193841457367, + 0.012834577821195126, + 0.0052061486057937145, + -0.0020782467909157276, + -0.015291963703930378, + 0.010615908540785313, + -0.003261302597820759, + -0.0054413555189967155, + 0.011928855441510677, + 0.003449117299169302, + 0.010651014745235443, + 0.02107735350728035, + -0.013340096920728683, + 0.01377540547400713, + 0.004911262076348066, + 0.014884740114212036, + 0.008221711963415146, + 0.004216172732412815, + 0.006150486879050732, + -0.015221753157675266, + 0.011205681599676609, + 0.01411241851747036, + -0.0140492282807827, + -1.0319102329958696e-5, + 0.006778875831514597, + 0.00456722779199481, + 0.01569918729364872, + 0.01249054353684187, + -0.0023310063406825066, + -0.01548855472356081, + -0.0022730822674930096, + 0.025879787281155586, + -0.001941335154697299, + 0.017131492495536804, + -0.0029506187420338392, + -0.025205763056874275, + 0.02242540568113327, + 0.0019975039176642895, + -0.006361119914799929, + 0.002406483283266425, + 0.001751765375956893, + -0.02058587595820427, + 0.0037106534000486135, + -0.01991184987127781, + -0.011339082382619381, + 0.0010663301218301058, + 0.016345130279660225, + -0.002262550638988614, + -0.008046184666454792, + 0.018900811672210693, + 0.02621680125594139, + 0.008046184666454792, + 0.022888798266649246, + -0.017931899055838585, + -0.0021484578028321266, + -0.011985024437308311, + -0.010524634271860123, + -0.0039002231787890196, + -0.026441477239131927, + -0.013206696137785912, + 0.008937864564359188, + 0.01746850647032261, + -0.009302962571382523, + 0.0020922888070344925, + 0.012329057790338993, + 0.037605032324790955, + 0.008214691653847694, + 0.024096427485346794, + -0.020319074392318726, + -0.010959942825138569, + 0.0037492692936211824, + 0.009085307829082012, + 0.008930844254791737, + -0.005641456693410873, + 0.009738271124660969, + -0.013873700983822346, + 0.01930803433060646, + -0.010342085734009743, + -0.002443344099447131, + -0.018774431198835373, + -0.03218473866581917, + 0.012350121513009071, + -0.00987167190760374, + 0.011809496209025383, + -0.006055701989680529, + 0.0036579950246959925, + 0.01717361994087696, + 0.004251278471201658, + 0.016934901475906372, + -0.035948049277067184, + -0.01005422044545412, + 0.02224285714328289, + -0.004075750708580017, + -0.004623396787792444, + -0.010826542042195797, + 0.006919297855347395, + -0.013677109964191914, + -0.0010268364567309618, + 0.006364630535244942, + 0.02920779213309288, + -0.008916801773011684, + 0.015783440321683884, + -0.0018869215855374932, + 0.0013068029657006264, + 0.016752352938055992, + -0.027466557919979095, + 0.002341537969186902, + -0.011985024437308311, + -0.03462808206677437, + 0.013993059284985065, + 0.0055817775428295135, + 0.01032804325222969, + 0.0026557324454188347, + -0.025261931121349335, + 0.014126460999250412, + 0.00827788095921278, + 0.031257953494787216, + -0.020206736400723457, + 0.000823663198389113, + -0.008130437694489956, + -0.0027750912122428417, + 0.0026434455066919327, + 0.004167024977505207, + -0.01575535722076893, + -0.011999065987765789, + 0.0052974228747189045, + 0.0015077820280566812, + -0.00456722779199481, + -0.014463474042713642, + 0.011325039900839329, + 0.010952921584248543, + -0.012806492857635021, + 0.0015428875340148807, + -0.007533644326031208, + -0.01014549471437931, + 0.0002832576574292034, + 0.009401258081197739, + -0.016176622360944748, + 0.005451886914670467, + -0.03611655905842781, + -0.004974451847374439, + 0.01961696334183216, + -0.001764052314683795, + 0.006571752950549126, + 0.0018869215855374932, + 0.012132466770708561, + 0.009941882453858852, + 0.006743770092725754, + -0.02638530731201172, + -0.013515624217689037, + -0.0029751926194876432, + 0.014182629063725471, + 0.007386201061308384, + -0.012286931276321411, + 0.016597889363765717, + -0.0216952096670866, + 0.0030102981254458427, + -0.01402114424854517, + -0.014007101766765118, + -0.012820535339415073, + -0.005314975511282682, + 0.005055194720625877, + 0.0015244571259245276, + -0.011760348454117775, + 0.01961696334183216, + 0.013922848738729954, + -0.015235794708132744, + -0.011872686445713043, + -0.015320048667490482, + 0.003928307443857193, + -0.014842613600194454, + 0.008334049955010414, + 0.013480518944561481, + -0.013571793213486671, + -0.022523701190948486, + -0.010580803267657757, + 0.02639934979379177, + -0.06521201133728027, + 0.007463433314114809, + -0.007421306800097227, + -0.004939346574246883, + -0.0216811690479517, + -1.6099171261885203e-5, + -0.021063311025500298, + 0.007203652523458004, + -0.009120414033532143, + 0.01032804325222969, + -0.014617937617003918, + -0.021428408101201057, + -0.02474236860871315, + -0.0002911563788075, + -0.010552719235420227, + 0.023015178740024567, + 0.01426688302308321, + -0.0025907873641699553, + -0.013017126359045506, + 0.006919297855347395, + -0.00260482938028872, + -0.02785973995923996, + 0.00011420263763284311, + -0.008811485022306442, + -0.00965401716530323, + 0.01942037232220173, + -0.02156883105635643, + 0.025318099185824394, + -0.017117450013756752, + -0.004963920451700687, + 0.007954910397529602, + -0.005283380392938852, + 0.009548701345920563, + -0.010826542042195797, + 0.000999629613943398, + -0.026469560340046883, + -0.013691152445971966, + 0.027452515438199043, + -0.007638960611075163, + -0.012659049592912197, + 0.008811485022306442, + -0.026539772748947144, + 0.011619926430284977, + -0.021007142961025238, + 0.004251278471201658, + -0.011802474968135357, + -0.012055234983563423, + -0.011416314169764519, + 0.015221753157675266, + -0.0057151783257722855, + 0.009190624579787254, + 0.017552759498357773, + -0.011226744391024113, + -0.00107335124630481, + -0.005799431819468737, + -0.005827515851706266, + -0.0026803063228726387, + -0.002406483283266425, + -0.0024135042913258076, + 0.0011786677641794086, + 0.010019115172326565, + -0.0021853186190128326, + -0.014744318090379238, + -0.01943441480398178, + 0.007610876578837633, + 0.013340096920728683, + -0.009836566634476185, + -0.009092329069972038, + 0.0010127942077815533, + -0.022467531263828278, + 0.012967978604137897, + -0.023352190852165222, + -0.01429496705532074, + 0.021119479089975357, + -0.00013131658488418907, + 0.001986972289159894, + 0.0038019276689738035, + 0.020880762487649918, + -0.01899910718202591, + -0.0056906044483184814, + 0.02273433282971382, + 0.007210673298686743, + 0.011240786872804165, + -0.016022158786654472, + 0.01770722307264805, + -0.011809496209025383, + -0.003689589910209179, + 0.009302962571382523, + -0.008235754445195198, + -0.00361937889829278, + 0.002571479184553027, + 0.0033455558586865664, + -0.017454463988542557, + 0.01637321338057518, + -0.00046997511526569724, + -0.012202678248286247, + -0.0011576045071706176, + -0.004226704593747854, + 0.013276906684041023, + -0.024363229051232338, + 0.013705193996429443, + -0.0019553774036467075, + 0.02705933339893818, + -0.038335226476192474, + 0.014330072328448296, + -0.023801540955901146, + -0.00049849838251248, + 0.023998131975531578, + -0.009492532350122929, + 0.0177212655544281, + -0.007828530855476856, + 0.019083360210061073, + 0.008867654018104076, + -0.017861688509583473, + -0.014702191576361656, + 0.042070452123880386, + 0.021091395989060402, + 0.01057378202676773, + 0.010735267773270607, + 0.00803214218467474, + -0.004834029823541641, + 0.0010540431831032038, + -0.008713189512491226, + 0.004468932282179594, + -0.010040177963674068, + 0.004233725368976593, + 0.023366233333945274, + 0.005781878717243671, + 0.008713189512491226, + 0.014674106612801552, + 0.0018307528225705028, + -0.00836915522813797, + 0.012104382738471031, + -0.008565746247768402, + 0.022874755784869194, + 0.013705193996429443, + -0.008790422230958939, + 0.022579869255423546, + 0.003889691550284624, + -0.0019501115893945098, + 0.014758359640836716, + -0.00916956178843975, + -0.015657061710953712, + -0.002736475085839629, + 0.014189650304615498, + -0.012504586018621922, + -0.016597889363765717, + 0.020206736400723457, + -0.015165584161877632, + -0.010770373046398163, + -0.009675080887973309, + -0.002171276370063424, + 0.00861489400267601, + 0.0005836292402818799, + 0.008088311180472374, + -1.5221532976283925e-6, + -0.007561728823930025, + -0.0241245124489069, + -0.011486525647342205, + -0.013557751663029194, + 0.004405742511153221, + 0.0029383318033069372, + -0.03218473866581917, + 0.0033701297361403704, + 0.0011242541950196028, + -0.006785896606743336, + -0.005121895112097263, + -0.010075284168124199, + 0.013340096920728683, + -0.013677109964191914, + -0.00018441367137711495, + 0.00598549097776413, + 0.00014404233661480248, + 0.010861647315323353, + 0.013677109964191914, + -0.024180680513381958, + 0.015994073823094368, + -0.0011734019499272108, + -0.0015665837563574314, + 0.0030331166926771402, + -0.026680193841457367, + 0.011690137907862663, + 0.01699107140302658, + 0.016387255862355232, + 0.003301674034446478, + 0.02607637830078602, + -0.002143191872164607, + -0.010805478319525719, + 0.009520616382360458, + 0.017637012526392937, + 0.003182315267622471, + -0.004953388590365648, + -0.00023915634665172547, + -0.02224285714328289, + -0.007259821053594351, + -0.012048213742673397, + 0.004679565783590078, + 0.02235519327223301, + 0.00846042949706316, + 0.010875689797103405, + 0.016092369332909584, + -0.012539691291749477, + 0.020922888070344925, + -0.016597889363765717, + -0.001944845775142312, + -0.021891800686717033, + -0.01066505629569292, + 0.018044237047433853, + -0.002352069830521941, + 0.036987174302339554, + 0.01008230447769165, + 0.0027540279552340508, + -0.007119399029761553, + 0.019083360210061073, + 0.0036299105267971754, + 0.007744277361780405, + -0.00818660669028759, + 0.009190624579787254, + -0.008137458935379982, + -0.0057678367011249065, + -0.016934901475906372, + -0.009064245037734509, + -0.0008877307991497219, + -0.005560714285820723, + 0.0005752916913479567, + -0.011640990152955055, + 0.020361199975013733, + -0.034010227769613266, + -0.0043530841358006, + -0.013417328707873821, + 0.009309983812272549, + -0.005662519950419664, + -0.01041931752115488, + -0.0025486606173217297, + -0.005213169381022453, + 0.00490424083545804, + 0.01051059179008007, + 0.015207710675895214, + -0.0007990893791429698, + -0.014063270762562752, + -0.01728595793247223, + 0.007365137804299593, + 0.000344692321959883, + -0.008509577251970768, + -0.010973985306918621, + -0.02089480496942997, + 0.0018974532140418887, + -0.016288960352540016, + 0.005128916352987289, + 0.00879744254052639, + -0.021231817081570625, + 0.007042166776955128, + -0.005866132210940123, + -0.0009434607927687466, + 0.010306980460882187, + 0.006764833349734545, + -0.0030612011905759573, + -0.00888871680945158, + -0.010875689797103405, + 0.009829545393586159, + -0.017215745523571968, + 0.03923392668366432, + 0.010615908540785313, + 0.009731249883770943, + -0.003145454451441765, + -0.02878652513027191, + 0.008902759291231632, + -6.412242510123178e-5, + 0.007351095788180828, + -0.01517962571233511, + 0.03403830900788307, + -0.002081757178530097, + -0.010257832705974579, + 0.018774431198835373, + 0.006010064855217934, + 0.015291963703930378, + -0.010728246532380581, + -0.00978039763867855, + -0.02357686683535576, + -0.007266842294484377, + -0.01048250775784254, + -0.027284009382128716, + -0.018788473680615425, + 0.014912824146449566, + -0.024293018504977226, + 0.001397199579514563, + -0.01606428436934948, + 0.0015534191625192761, + -0.005943364463746548, + -0.0277895275503397, + -0.00919764582067728, + -0.0016525923274457455, + 0.008123417384922504, + -0.012006087228655815, + 0.014259861782193184, + 0.018100405111908913, + 0.009745292365550995, + -0.014561768621206284, + 0.010763351805508137, + -0.018423376604914665, + 0.006831533741205931, + -0.010314001701772213, + -0.02571128122508526, + 0.022256897762417793, + -0.009906777180731297, + 0.021189691498875618, + 0.02468620054423809, + 0.007765340618789196, + -0.0061153811402618885, + 0.0010601866524666548, + -4.83797921333462e-5, + -0.021905843168497086, + 0.006568242330104113, + -0.015783440321683884, + -0.006698132958263159, + 0.00987167190760374, + -0.01960292086005211, + 0.006333035416901112, + 0.01815657503902912, + -0.014309009537100792, + 0.002769825514405966, + -0.011044195853173733, + 0.024545777589082718, + -0.011886728927493095, + 0.009141476824879646, + 0.0034842228051275015, + -0.010243790224194527, + -0.02725592441856861, + -0.002955884672701359, + -0.00803214218467474, + 0.04128408804535866, + 0.01662597432732582, + 0.014189650304615498, + -0.035161688923835754, + -0.014421346597373486, + -0.00511838449165225, + 0.022692207247018814, + 0.007870657369494438, + 0.020824594423174858, + -0.014007101766765118, + 0.015221753157675266, + -0.012694155797362328, + 0.001061064307577908, + -0.0022063818760216236, + -0.00023301287728827447, + 0.004237235989421606, + 0.010250811465084553, + 0.02541639469563961, + -0.010545697994530201, + 0.015657061710953712, + -0.03061201237142086, + 0.008649999275803566, + 5.611397864413448e-5, + -0.002476694295182824, + -0.017187662422657013, + -0.004167024977505207, + -0.009232751093804836, + -0.0026399348862469196, + 0.01972930133342743, + -0.024826623499393463, + 0.017454463988542557, + 0.0007297559641301632, + 0.006870150100439787, + -0.022327110171318054, + 0.003203378524631262, + -0.008972970768809319, + -0.023731330409646034, + -0.0024837155360728502, + 0.006519094575196505, + -0.0033789060544222593, + 0.00079777289647609, + -0.018900811672210693, + -0.020487580448389053, + 0.019223781302571297, + -0.0032297077123075724, + 0.01937824673950672, + 0.00016740943829063326, + -0.007554707583039999, + 0.0054834820330142975, + 0.014842613600194454, + 0.027171671390533447, + -0.013656046241521835, + 0.010363149456679821, + -0.01551663875579834, + 0.00733003206551075, + -0.0008227856014855206, + 0.0031893362756818533, + -0.02156883105635643, + 0.005265827756375074, + -0.00589421670883894, + 0.019293993711471558, + 0.003959902562201023, + 0.023661119863390923, + 0.004317978862673044, + 0.01770722307264805, + 0.0011540938867256045, + -0.01352966669946909, + 0.021049268543720245, + 0.034852758049964905, + -0.011598863638937473, + 0.024391314014792442, + 0.00662792194634676, + -0.01301010511815548, + -0.015418343245983124, + -0.0011093344073742628, + 0.007624918594956398, + -0.009822524152696133, + -0.0062101660296320915, + 0.00723875779658556, + -0.0031226358842104673, + -0.027958035469055176, + -0.01728595793247223, + 0.0031296568922698498, + -0.0053711445070803165, + 0.006866639479994774, + 0.004542653914541006, + -0.004374147392809391, + 0.014372198842465878, + 0.010559739544987679, + 0.024601947516202927, + -0.015390259213745594, + -0.009892734698951244, + 0.019265908747911453, + -0.0021765420679003, + 0.004862114321440458, + -0.0008723721257410944, + 0.0232258103787899, + 0.010545697994530201, + 0.013726257719099522, + -0.0017500100657343864, + 0.004226704593747854, + 0.0015016385586932302, + -0.003759800922125578, + 0.003536880947649479, + 0.006666537839919329, + 0.006768343970179558, + 0.013971996493637562, + 0.013087336905300617, + 0.0054167816415429115, + 0.0028347705956548452, + 0.01066505629569292, + -0.0323813296854496, + -0.020319074392318726, + 0.0055115665309131145, + 0.005350080784410238, + -0.008762337267398834, + 0.01668214239180088, + -0.007779383100569248, + -0.023366233333945274, + 0.011465461924672127, + 0.00386511767283082, + 0.019336119294166565, + 0.020852677524089813, + 0.011346103623509407, + 0.011662052944302559, + 0.034796588122844696, + -0.0031682730186730623, + 0.01930803433060646, + -0.003066467121243477, + 0.030864771455526352, + 0.008242775686085224, + 0.009253814816474915, + 0.03187581151723862, + 0.0201646089553833, + -0.0031261465046554804, + 0.011732264421880245, + -0.010285916738212109, + 0.01301010511815548, + -0.01533409021794796, + -0.004156493581831455, + -0.0010496550239622593, + -0.007122909650206566, + 0.011942896991968155, + 0.002336272271350026, + -0.01444943156093359, + -0.027873782441020012, + -0.0011918323580175638, + -0.015390259213745594, + 0.005522097926586866, + -0.01919569820165634, + 0.01564301922917366, + 0.004644460044801235, + -0.0008675451390445232, + 0.009057223796844482, + 0.001696474151685834, + 0.017117450013756752, + 0.016541719436645508, + 0.005279869772493839, + -0.007091314531862736, + -0.002910247538238764, + 0.010271874256432056, + 0.002311698393896222, + -0.004019581712782383, + -0.025430437177419662, + -0.0011628703214228153, + 0.0007495027966797352, + -0.002278348198160529, + -0.0003611480351537466, + -0.0015112925320863724, + 0.026553813368082047, + -0.02023482136428356, + -0.017454463988542557, + -0.015965988859534264, + 0.0003014686517417431, + -0.008039163425564766, + 0.013333075679838657, + 0.02133011259138584, + -0.026357222348451614, + -0.00107335124630481, + 0.0024380781687796116, + 0.004174046218395233, + 0.0003207766858395189, + -0.007217694539576769, + -0.03813863545656204, + 0.004819987807422876, + -0.01371221523731947, + 0.0016209973255172372, + -0.011437377892434597, + 0.011458441615104675, + 0.004963920451700687, + -0.007954910397529602, + -0.04117175191640854, + 0.01642938330769539, + 0.011479504406452179, + -0.031623050570487976, + -0.010061241686344147, + 0.006673559080809355, + 0.02566915564239025, + -0.019027190282940865, + 0.006891213357448578, + -0.0031138595659285784, + -0.004960409831255674, + 0.01512345764786005, + -0.0008302454953081906, + -0.0063295247964560986, + 0.009843586944043636, + 0.0274946428835392, + 0.0018360186368227005, + -0.003886180929839611, + 0.023815583437681198, + 0.0031349228229373693, + 0.016415340825915337, + 0.023366233333945274, + 0.0059538958594202995, + 7.169204764068127e-5, + 0.029320128262043, + 0.012174594216048717, + 0.00831298716366291, + -0.0035895393230021, + -0.004855093080550432, + 0.002051917603239417, + 0.008818506263196468, + 0.010321022011339664, + -0.02968522720038891, + -0.017398294061422348, + 0.0010084060486406088, + 0.03628506511449814, + 0.0033034293446689844, + 0.011956939473748207, + 0.003668526653200388, + -0.00895190704613924, + -0.009001054801046848, + 0.020908847451210022, + 0.0007995282066985965, + -0.0012804737780243158, + -0.014393262565135956, + 0.0007525745313614607, + -0.007014082744717598, + -0.00027557832072488964, + -0.012609901838004589, + 0.008551704697310925, + 8.595366671215743e-5, + -0.007617897354066372, + 0.009064245037734509, + -0.000499814806971699, + 0.010608887299895287, + -0.008881696499884129, + -0.008298944681882858, + 0.00693333987146616, + -0.007561728823930025, + 0.003133167512714863, + -0.02760697901248932, + 0.0022607953287661076, + 0.00959784910082817, + 0.01298202108591795, + 0.02523384615778923, + 0.0019150060834363103, + 0.011648011393845081, + -0.014210714027285576, + 0.011037174612283707, + -0.022341152653098106, + -0.01352966669946909, + 0.021765422075986862, + -0.002580255502834916, + -0.007414285559207201, + 0.006203145254403353, + -0.01918165571987629, + -0.002434567781165242, + 0.022860713303089142, + -0.002580255502834916, + 0.0068736607208848, + 0.002567968564108014, + 0.020698213949799538, + -0.031145615503191948, + -0.003084019757807255, + 0.015011119656264782, + -0.005960917100310326, + 0.035891883075237274, + -0.004152982961386442, + 0.04260405898094177, + -0.02253774367272854, + -0.00968912336975336, + -0.02773335948586464, + -0.009492532350122929, + -0.0008052328485064209, + -0.001644693547859788, + -0.018311038613319397, + 0.005729220807552338, + 0.013431371189653873, + 0.015390259213745594, + 0.024180680513381958, + 0.002815462648868561, + -0.00043816075776703656, + 0.0006301440298557281, + -0.012595860287547112, + -0.001650837017223239, + 0.011956939473748207, + 0.005195616744458675, + -0.00019549384887795895, + -0.013733278959989548, + -0.017299998551607132, + -0.0006095195421949029, + -0.002510044490918517, + 0.022818587720394135, + -0.015362175181508064, + -0.01569918729364872, + -0.007059719879180193, + -0.0032630579080432653, + -0.014084333553910255, + -3.34050964738708e-5, + 0.017735308036208153, + 0.007007061503827572, + -0.013782426714897156, + -0.006993019487708807, + 0.010166558437049389, + 0.016204707324504852, + 0.005943364463746548, + -0.018423376604914665, + 0.011683116666972637, + 0.021231817081570625, + 0.018226785585284233, + -0.03153879940509796, + 0.008256818167865276, + -0.007477475330233574, + 0.006561221554875374, + -0.013824553228914738, + 0.023857710883021355, + -0.014252840541303158, + 0.012869683094322681, + -0.004310957621783018, + 0.01918165571987629, + 0.002876897342503071, + 0.028688229620456696, + 0.02309943176805973, + 0.003449117299169302, + -0.018311038613319397, + -0.008221711963415146, + -0.021976053714752197, + 0.004739244934171438, + 0.020698213949799538, + 0.013333075679838657, + 0.0028365259058773518, + 0.014259861782193184, + -0.009478489868342876, + 0.006494520697742701, + 0.004802434705197811, + 0.002287124516442418, + -0.0012418577680364251, + -0.007224715780466795, + -0.018900811672210693, + -0.020684171468019485, + -0.0037246954161673784, + -0.01212544646114111, + -0.0050130682066082954, + -0.010882711037993431, + -0.011802474968135357, + -0.008979992009699345, + -0.005230722017586231, + -0.013389244675636292, + 0.010468465276062489, + 0.0018202210776507854, + 0.00773023534566164, + -0.008018100634217262, + 0.015025162138044834, + -0.016176622360944748, + 0.004423295147716999, + -0.0049920049495995045, + -0.02083863504230976, + 0.014407305046916008, + -0.0054132710210978985, + 0.01857784017920494, + -0.0033947036135941744, + 0.002109841676428914, + -0.015923863276839256, + 0.02083863504230976, + 0.0007385323406197131, + 0.005357102025300264, + 0.01331903412938118, + -0.02590787224471569, + -0.003693100530654192, + -0.024166638031601906, + -0.01662597432732582, + -0.017454463988542557, + -0.00025670911418274045, + -0.006203145254403353, + -0.016443423926830292, + 0.006922808010131121, + 0.005378165282309055, + 0.011851622723042965, + -0.027943992987275124, + 0.016906818374991417, + 0.03342045471072197, + 0.012364163994789124, + -0.00040678519872017205, + 0.008214691653847694, + 0.023745372891426086, + 0.018044237047433853, + -0.012160551734268665, + 0.01869017817080021, + 0.03985178470611572, + 0.015390259213745594, + 0.006371651776134968, + 0.0017070057801902294, + -0.014280924573540688, + 0.01041931752115488, + -0.027887823060154915, + -0.0009460936998948455, + 0.008502556942403316, + -0.018240828067064285, + -0.0010075283935293555, + 0.020178651437163353, + 0.002632913878187537, + -0.01239926926791668, + 0.022439448162913322, + -0.019027190282940865, + 0.019953977316617966, + 0.000727561884559691, + 0.008193627931177616, + 0.01972930133342743, + 0.003417522180825472, + 0.014926866628229618, + 0.014077313244342804, + -0.0037984170485287905, + -0.008916801773011684, + -0.007400243077427149, + 0.011472483165562153, + 0.02095097303390503, + -0.008355113677680492, + -0.007610876578837633, + 0.0023748883977532387, + 0.006146976258605719, + -0.011739285662770271, + 0.001262921025045216, + 0.017763392999768257, + 0.01575535722076893, + -0.0027961544692516327, + 0.014035185799002647, + 0.0087061682716012, + -0.007814488373696804, + -0.0028997159097343683, + -0.017131492495536804, + -0.002357335528358817, + -0.02988181635737419, + -0.029769480228424072, + 0.009302962571382523, + 0.007653003092855215, + -0.0335889607667923, + 0.021217774599790573, + 0.010047199204564095, + -0.014519642107188702, + 0.00542380241677165, + 0.0002722871722653508, + 0.02266412228345871, + 0.007610876578837633, + 0.0030243403743952513, + -0.00638218317180872, + -0.01582556776702404, + 0.007280884310603142, + 0.02461598999798298, + 0.024461524561047554, + 0.006224208511412144, + -0.0023994622752070427, + 0.04173344001173973, + 0.012652029283344746, + 0.03372938185930252, + 0.00956274289637804, + 0.014912824146449566, + 0.0037036321591585875, + 0.012953936122357845, + -0.003224441781640053, + -0.012813514098525047, + -0.0012673091841861606, + 0.012771387584507465, + -0.01967313326895237, + -0.0053219967521727085, + -0.02651168778538704, + -0.007231737021356821, + 0.0022520190104842186, + 0.03513360396027565, + -0.011907791718840599, + 0.02589382976293564 + ], + "94899737-e97e-4b3c-b374-4aae60f724be": [ + -0.03342445567250252, + -0.021267635747790337, + -0.013523442670702934, + 0.047784190624952316, + -0.0038652976509183645, + -0.004453421104699373, + 0.032907724380493164, + 0.03486586734652519, + -0.01785448007285595, + 0.016970593482255936, + 0.009212802164256573, + -0.003164988709613681, + 0.034022778272628784, + 0.004467019345611334, + 0.01996220462024212, + 0.04957915470004082, + -0.017120175063610077, + 0.006918100640177727, + 0.01618189737200737, + -0.031819865107536316, + 0.02850189618766308, + -0.004708387888967991, + -0.02469439059495926, + -0.018357614055275917, + 0.012999909929931164, + 0.015257216989994049, + -0.005157129839062691, + 0.004439822863787413, + -0.04318798705935478, + 0.0048579685389995575, + -0.0006697129574604332, + -0.013639027252793312, + 0.005184326320886612, + 0.005857438780367374, + 0.031167149543762207, + -0.008519292809069157, + 0.029943307861685753, + 0.009117614477872849, + -0.04465659707784653, + 0.005582074634730816, + -0.008322118781507015, + 0.02880105748772621, + 0.006588343530893326, + -0.025564678013324738, + -0.020587723702192307, + 0.009273994714021683, + -0.03505624458193779, + 0.0013377261348068714, + -0.007621809374541044, + -0.02292661927640438, + 0.002437483286485076, + -0.026897303760051727, + 0.0027553418185561895, + 0.021186046302318573, + 0.035572975873947144, + -0.05161888897418976, + 0.0015272514428943396, + -0.004035275429487228, + -0.019513463601469994, + -0.04607081040740013, + 0.01707937940955162, + -0.02035655453801155, + 0.0011482007103040814, + -0.002260706154629588, + 0.009260396473109722, + 0.017936069518327713, + -0.010402647778391838, + -0.0052659157663583755, + -0.04492856189608574, + -0.0027519422583281994, + -0.003127593547105789, + 0.04142021760344505, + 0.002706048311665654, + 0.006652935408055782, + 0.03625288978219032, + -0.005534480791538954, + 0.031194346025586128, + 0.03715037181973457, + -0.0074926260858774185, + -0.01741933636367321, + 0.00775779178366065, + -0.008736864663660526, + 0.013938188552856445, + 0.007846180349588394, + 0.034920260310173035, + 0.010966974310576916, + 0.008900043554604053, + -0.03342445567250252, + 0.0323094017803669, + -0.05518162623047829, + -0.018330417573451996, + 0.025088738650083542, + -0.006734524853527546, + -0.039897214621305466, + 0.0026448562275618315, + 0.036932799965143204, + -0.01584194041788578, + 0.007037085480988026, + -0.0008770860149525106, + -0.02991611137986183, + -0.0043922290205955505, + -0.021199645474553108, + 0.04672352597117424, + -0.011191345751285553, + 0.03880935534834862, + -0.006850109435617924, + -0.0050619421526789665, + -0.0016725825844332576, + -0.029970504343509674, + 0.046369973570108414, + 0.0017473729094490409, + -0.023470548912882805, + -0.0017813685117289424, + -0.005551478359848261, + -0.056296683847904205, + -0.024517612531781197, + -0.04560847207903862, + 0.00965474545955658, + -0.04332396760582924, + -0.02401447854936123, + 0.013639027252793312, + 0.004059072583913803, + -0.01342825498431921, + -0.020927680656313896, + -0.029317788779735565, + -0.0016445362707599998, + 0.015107636339962482, + 0.031575094908475876, + 0.020900484174489975, + 0.009484766982495785, + -0.02098207361996174, + -0.004402427934110165, + -0.0018969534430652857, + 0.0006072460673749447, + -0.0017609711503610015, + 0.028175538405776024, + 0.03097677417099476, + 0.06309580057859421, + 0.017677702009677887, + 0.007057482842355967, + -0.06130083277821541, + -0.010898983106017113, + 0.006431964226067066, + 0.004001279827207327, + 0.014019777998328209, + -0.007281853351742029, + -2.0948448309354717e-6, + 0.05575275421142578, + -0.017582515254616737, + -0.011007769033312798, + -0.04724026098847389, + -0.014332537539303303, + -0.017215361818671227, + -0.016698630526661873, + 0.056731827557086945, + -0.028039555996656418, + -0.013203883543610573, + 0.004902163054794073, + 0.018833551555871964, + 0.06815434247255325, + 0.038292624056339264, + -0.004065871704369783, + -0.009124414063990116, + 0.034049972891807556, + 0.060321759432554245, + 0.029018627479672432, + 0.027808384969830513, + 0.0259318295866251, + -0.013822603039443493, + 0.02088688500225544, + 0.02729165367782116, + -0.03217341750860214, + 0.02561907097697258, + 0.026217391714453697, + -0.0018935538828372955, + 0.003294171765446663, + 0.039897214621305466, + 0.005918630864471197, + 0.025442292913794518, + -0.001358973328024149, + -0.012218011543154716, + -0.005541279911994934, + 0.005051743239164352, + 0.020030196756124496, + 0.04305200278759003, + -0.00959355290979147, + 0.04824652895331383, + 0.01828962191939354, + -0.016780218109488487, + -0.006724325940012932, + 0.0062041934579610825, + 0.02639416977763176, + -0.01503964513540268, + 0.008090948686003685, + -0.04084908962249756, + -0.05099337175488472, + 0.030487237498164177, + 0.027182867750525475, + -0.03152070194482803, + 0.03032405860722065, + -0.0014686090871691704, + -0.03418595716357231, + -0.04645156115293503, + 0.02469439059495926, + -0.011599292047321796, + 0.024449622258543968, + -0.02425924688577652, + 0.017188165336847305, + 0.054447323083877563, + -0.032690152525901794, + 0.02964414656162262, + -0.06402047723531723, + -0.002015938051044941, + -0.027821984142065048, + -0.019608652219176292, + 0.017092978581786156, + 0.006258586421608925, + 0.017092978581786156, + -0.00962074939161539, + -0.02893703803420067, + 0.023008208721876144, + 0.009770330041646957, + -0.004229050129652023, + -0.035137832164764404, + -0.018602382391691208, + 0.036497656255960464, + -0.027835581451654434, + 0.009226400405168533, + -0.04093068093061447, + -0.014917260967195034, + 0.03445792198181152, + -0.01548838708549738, + 0.010749402455985546, + 0.009967504069209099, + 0.0230490043759346, + 0.03701438754796982, + 0.034947458654642105, + 0.019418276846408844, + -0.0022233109921216965, + 0.020070990547537804, + -5.0409071263857186e-5, + -0.003851699410006404, + 0.018017658963799477, + -0.008662073872983456, + 0.006826312746852636, + 0.00376331084407866, + -0.009430374018847942, + 0.06358533352613449, + 0.006431964226067066, + 0.003671522717922926, + 0.009573156014084816, + -0.01760971173644066, + -0.017528122290968895, + 0.018819954246282578, + -0.04743063449859619, + 0.041692182421684265, + 0.04441182687878609, + -0.038782160729169846, + -0.009743133559823036, + 0.011606091633439064, + 0.005996820516884327, + 0.026448562741279602, + 0.005646666046231985, + 0.04631558060646057, + 0.01089218445122242, + 0.00853968970477581, + 0.012279204092919827, + 0.005775849334895611, + -0.009321588091552258, + 0.00322618056088686, + 0.017500925809144974, + 0.01191205158829689, + -0.03579054772853851, + 0.024123264476656914, + -0.0026516553480178118, + -0.011884855106472969, + 0.002770639955997467, + -0.01717456802725792, + 0.041039466857910156, + -0.00852609146386385, + -0.024340836331248283, + 0.01652185246348381, + -0.025972623378038406, + 0.013278674334287643, + 0.007988961413502693, + 0.03685120865702629, + -0.05251637473702431, + 0.006741323973983526, + -0.04781138524413109, + -0.013129093684256077, + 0.014971653930842876, + -0.005422295071184635, + -0.022913021966814995, + -0.02450401522219181, + 0.0024901763536036015, + 0.004507814068347216, + -0.0012331897160038352, + 0.022301102057099342, + 0.02787637710571289, + 0.03848299756646156, + -0.04294321686029434, + 0.003950286656618118, + 0.03342445567250252, + -0.012911521829664707, + 0.051782067865133286, + -0.0167666207998991, + 0.03453950956463814, + 0.026462160050868988, + -0.01569236069917679, + 0.018017658963799477, + 0.020070990547537804, + -0.04452061280608177, + -0.036062512546777725, + -0.020152579993009567, + -0.014645296148955822, + 3.5615681554190814e-5, + -0.01296591479331255, + 0.009008829481899738, + -0.027590813115239143, + 0.003919690381735563, + -0.010171477682888508, + 0.012122824788093567, + -0.021077260375022888, + 0.016222691163420677, + 0.049334388226270676, + -0.021893154829740524, + 0.021607590839266777, + -0.0017983663128688931, + -0.03502904623746872, + -0.022260306403040886, + -0.028692271560430527, + -0.02141721546649933, + -0.02137642167508602, + 0.0005741003551520407, + -0.039870016276836395, + -0.026040615513920784, + -0.0221515204757452, + -0.06391169130802155, + 0.014890064485371113, + -0.03886374831199646, + 0.009403177537024021, + -0.036280084401369095, + 0.010613420978188515, + 0.002631257986649871, + -0.031765472143888474, + -0.014155760407447815, + -0.03162948787212372, + 0.008934038691222668, + -0.017133772373199463, + 0.024871166795492172, + 0.0008520142873749137, + 0.006595142651349306, + 0.029508164152503014, + -0.005486886948347092, + 0.03421315178275108, + -0.029698539525270462, + 0.006411566864699125, + -0.002547968877479434, + 0.02525191754102707, + -0.024762380868196487, + 0.01692979969084263, + -0.053577035665512085, + 0.011211742646992207, + 0.009226400405168533, + -0.014876466244459152, + -0.006299381144344807, + -0.00491916062310338, + -0.009987901896238327, + -0.010565826669335365, + -0.024096067994832993, + 0.031139953061938286, + -0.015760350972414017, + 0.016045914962887764, + -0.01505324337631464, + -0.011170947924256325, + -0.017963266000151634, + 0.02806675247848034, + -0.026938099414110184, + -0.022722646594047546, + 0.02122684195637703, + -0.021553197875618935, + 0.009634347632527351, + 0.01236079353839159, + 0.010470638982951641, + 0.005969624035060406, + 0.014169358648359776, + -0.009097217582166195, + -0.01089218445122242, + -0.004116864874958992, + 0.015556378290057182, + -0.016821013763546944, + -0.012755142524838448, + -0.027454830706119537, + -0.006377571262419224, + -0.04016917943954468, + -0.004365032538771629, + 0.0046165999956429005, + -0.023960085585713387, + 0.009879115968942642, + -0.002563266782090068, + 0.00482737272977829, + 0.0017278253799304366, + -0.0024629798717796803, + 0.0032397788017988205, + 0.01998940110206604, + -0.02760441228747368, + -0.025347106158733368, + -0.000917030789423734, + 0.009097217582166195, + -0.019391080364584923, + 0.007241058629006147, + -0.0038822954520583153, + -0.037204764783382416, + 0.018547989428043365, + 0.05461050197482109, + 0.02899143099784851, + -0.012999909929931164, + 0.015787547454237938, + -0.018452800810337067, + 0.020682912319898605, + 0.027359643951058388, + 0.021865958347916603, + 0.032962117344141006, + 0.0010164679260924459, + 0.02880105748772621, + 0.0032805735245347023, + -0.028610682114958763, + 0.029535360634326935, + -0.011096158064901829, + 0.011334126815199852, + 0.028529092669487, + 0.05012308433651924, + -0.01083099190145731, + -0.006299381144344807, + -0.04403107613325119, + 0.001736324280500412, + -0.03600811958312988, + -0.01376821007579565, + 0.025088738650083542, + -0.03894533962011337, + -0.049551960080862045, + 0.00660534156486392, + -0.031085560098290443, + -0.00615659961476922, + -0.03935328498482704, + -0.011986842378973961, + -0.01751452311873436, + 0.025197524577379227, + -0.004704988561570644, + -0.02833871729671955, + 0.001250187517143786, + 0.03799346089363098, + -0.02069650962948799, + -0.019268695265054703, + 0.02704688534140587, + -0.03364202752709389, + 0.016127504408359528, + -0.016018718481063843, + 0.01887434720993042, + -0.055616769939661026, + 0.010089888237416744, + -0.0007912471774034202, + 0.03777588903903961, + -0.007832582108676434, + 0.03385959938168526, + -0.0012314899358898401, + 0.0077849882654845715, + -0.015352404676377773, + -0.006969094276428223, + 0.01664423756301403, + 0.00484097097069025, + -0.01280953548848629, + -0.03152070194482803, + 0.012326797470450401, + 0.011442912742495537, + -0.014713287353515625, + -0.007866577245295048, + -0.01274834293872118, + 0.0025343706365674734, + 0.017038585618138313, + 0.012768740765750408, + 0.02246428094804287, + 0.03706878051161766, + -0.02967134304344654, + 0.002343995263800025, + 0.006329977419227362, + -0.02273624576628208, + 0.00019122514640912414, + -0.0069588953629136086, + -0.03100397065281868, + -0.0035593374632298946, + -0.006574745289981365, + 0.04892643913626671, + 0.025877436622977257, + 0.001506004249677062, + 0.003394458908587694, + 0.006316379178315401, + -0.011544899083673954, + 0.03500185161828995, + -0.005952626466751099, + -0.034729886800050735, + -0.010144281201064587, + -0.032962117344141006, + -0.03437633067369461, + -0.017120175063610077, + 0.03497465327382088, + -0.017147371545433998, + 0.022355495020747185, + 0.021240439265966415, + 0.005639866925776005, + -0.06712087243795395, + 0.04106666147708893, + -0.04422145336866379, + 0.03206463158130646, + 0.011266135610640049, + -0.020152579993009567, + -0.007485826965421438, + -0.025537481531500816, + 0.031194346025586128, + -0.010130682960152626, + 0.014754082076251507, + -0.030867988243699074, + 0.0029355185106396675, + -0.013203883543610573, + -0.02809394896030426, + 0.018520792946219444, + -0.02496635541319847, + -0.001150750438682735, + 0.0378846749663353, + -0.01924149878323078, + -0.015311609953641891, + 0.017555318772792816, + -0.02812114544212818, + 0.006482957396656275, + 0.009138012304902077, + 0.037177566438913345, + 0.000415171030908823, + 0.005966224707663059, + 0.008349315263330936, + -0.009851919487118721, + -0.05863557755947113, + 0.012714347802102566, + -0.026067811995744705, + -0.004579204600304365, + -0.009831522591412067, + 0.011238939128816128, + -0.016331477090716362, + 0.0018544589402154088, + -0.005925429984927177, + 0.027781188488006592, + -0.008281324058771133, + 0.019499866291880608, + 0.004116864874958992, + 0.002503774594515562, + -0.0341043658554554, + -0.01144971139729023, + 0.04838251322507858, + 0.01955425925552845, + -0.012863928452134132, + -0.012884325347840786, + -0.03815663978457451, + 0.02081889472901821, + -0.0093759810552001, + 0.002852229168638587, + -0.011402118019759655, + 0.00668353121727705, + -0.01828962191939354, + -0.02351134456694126, + -0.013217481784522533, + 0.023878496140241623, + 0.007615010254085064, + -0.0038415007293224335, + 0.03734074532985687, + -0.005269315093755722, + -0.013475848361849785, + 0.03655204921960831, + -0.019418276846408844, + 0.028148341923952103, + -0.0052659157663583755, + -0.008077350445091724, + -0.00567046320065856, + 0.016113905236124992, + 0.001728675328195095, + 0.012068431824445724, + -0.003831302048638463, + 0.003251677379012108, + -0.013849799521267414, + -0.00522852037101984, + -0.0016198894008994102, + -0.002813134342432022, + 0.02064211666584015, + 0.002570065902546048, + -0.016793817281723022, + -0.00752662168815732, + 0.009675142355263233, + 0.042317699640989304, + 0.015433994121849537, + 0.027346044778823853, + 0.04049553722143173, + 0.014386930502951145, + 0.03554578125476837, + 0.008294922299683094, + 0.00314119178801775, + 0.012693949975073338, + -0.0070098889991641045, + 0.024204853922128677, + -0.011585693806409836, + 0.03228220343589783, + 0.02181156538426876, + -0.00023393209266941994, + -0.005724855698645115, + -0.032010238617658615, + 0.034729886800050735, + -0.013448651880025864, + 0.005276114214211702, + 0.0017898674122989178, + 0.0026635536924004555, + 0.005959425587207079, + 0.002678851829841733, + 0.006737924180924892, + 0.020737305283546448, + -0.006102206651121378, + 0.02986171841621399, + -0.002214812207967043, + -0.021526001393795013, + 0.030024897307157516, + -0.01045704074203968, + -0.011980042792856693, + 0.006363973021507263, + -0.0016088408883661032, + -0.03916291147470474, + -0.04454781115055084, + 0.001172847580164671, + -0.002260706154629588, + 0.0024850768968462944, + -0.011538100428879261, + 0.036932799965143204, + 0.013387460261583328, + 0.005038144998252392, + -0.020533330738544464, + -0.003452251199632883, + -0.034920260310173035, + 0.019975803792476654, + 0.047485027462244034, + -0.011429314501583576, + 0.007615010254085064, + 0.021390018984675407, + 0.00646595936268568, + 0.029317788779735565, + 0.004592802841216326, + -0.02047893777489662, + 0.012714347802102566, + -0.015651565045118332, + 0.02079169824719429, + 0.018697569146752357, + -0.008927240036427975, + 0.015230020508170128, + 0.012816334143280983, + 0.002343995263800025, + -0.012224811129271984, + 0.04003319516777992, + -0.027903573587536812, + 0.00637417146936059, + 0.012041235342621803, + 0.03475708141922951, + 0.0018561587203294039, + 0.009763531386852264, + -0.007023487240076065, + 0.02744123339653015, + 0.012816334143280983, + -0.0012884325115010142, + -0.044139862060546875, + 0.0050313458777964115, + -0.004939557984471321, + -0.01627708412706852, + 0.013033905997872353, + -0.0018306620186194777, + 0.008118145167827606, + 0.01739213988184929, + -0.012027637101709843, + -0.020397348329424858, + -0.010742603801190853, + -0.004395628813654184, + 0.03214622288942337, + -0.04511893540620804, + -0.010355054400861263, + 0.001182196312583983, + -0.039897214621305466, + -0.007948166690766811, + -0.000509933743160218, + -0.02287222631275654, + -0.0048579685389995575, + -0.0150668416172266, + 0.03927169740200043, + 0.006642736494541168, + -0.010994170792400837, + 0.016236290335655212, + 0.008838851004838943, + 0.0006284933187998831, + -0.004123663995414972, + -0.01376821007579565, + -0.028828253969550133, + -0.022505074739456177, + -0.005415495950728655, + -0.003246577922254801, + 0.0034437524154782295, + -0.005799646023660898, + -0.01828962191939354, + -0.017827283591032028, + -0.005721456371247768, + -0.0014660594752058387, + 0.035817746073007584, + -0.0005439292872324586, + 0.027577215805649757, + 0.007071081083267927, + 0.032962117344141006, + -0.03258136659860611, + 0.030650416389107704, + -0.008954436518251896, + 0.03704158589243889, + 0.013047504238784313, + 0.03277174010872841, + -0.010144281201064587, + 0.0037327148020267487, + -0.012190815061330795, + -0.03505624458193779, + 0.022015538066625595, + 0.017528122290968895, + 0.019880615174770355, + -0.0035763352643698454, + -0.0008235429413616657, + 0.00022819533478468657, + 0.019826222211122513, + -0.0015204523224383593, + 0.010912581346929073, + 0.01667143404483795, + -0.006639337167143822, + 0.007349844556301832, + 0.03864617645740509, + -0.013890594244003296, + -0.011415716260671616, + -0.012938718311488628, + 0.004851169418543577, + -0.017800087109208107, + -0.020778099074959755, + -0.01599152199923992, + 0.01106216199696064, + -0.008084149099886417, + -0.033179689198732376, + -0.03100397065281868, + 0.0005039845127612352, + -0.020370151847600937, + 0.00521492213010788, + -0.04199134185910225, + -0.0017762691713869572, + -0.004817173816263676, + 0.03644326329231262, + 0.007152670528739691, + -0.015094038099050522, + 0.0538490004837513, + -0.01480847503989935, + 0.017718497663736343, + 0.014427724294364452, + -0.03282613307237625, + -0.0046539949253201485, + -0.016453862190246582, + 0.006935098674148321, + 0.02855628915131092, + 0.014291742816567421, + -0.010885384865105152, + 0.058526791632175446, + 0.01809924840927124, + 0.02478957735002041, + 0.025075141340494156, + -0.008342515677213669, + 0.014794876798987389, + -0.01773209497332573, + -0.030704809352755547, + -0.016902603209018707, + -0.00037076431908644736, + -0.06440123170614243, + -0.03029686212539673, + 0.05711257830262184, + 0.014522911980748177, + 0.0002475303190294653, + -0.03097677417099476, + 0.039625249803066254, + 0.003425054717808962, + 0.007465429604053497, + -0.018915141001343727, + -0.0001489431451773271, + 0.012598762288689613, + 0.0010759601136669517, + -0.014087769202888012, + 0.014862868003547192, + -0.008730065077543259, + -0.010647416114807129, + -0.006265385542064905, + -0.004181456286460161, + -0.008750462904572487, + 0.019608652219176292, + -0.009817924350500107, + 0.024544809013605118, + 0.020832492038607597, + 0.009280793368816376, + -0.02772679552435875, + -0.003940087743103504, + -0.015311609953641891, + -0.022763442248106003, + 0.013108695857226849, + -0.0021570196840912104, + -0.00034548010444268584, + -0.015338806435465813, + -0.007513023447245359, + -0.03976123034954071, + -0.025102337822318077, + 0.026217391714453697, + 0.0025581675581634045, + 0.04220891371369362, + 0.03823823109269142, + -0.02181156538426876, + -0.009518763050436974, + 0.021852359175682068, + 0.013244678266346455, + 0.010049093514680862, + -0.01571955718100071, + 0.02899143099784851, + 0.022477878257632256, + 0.006710727699100971, + 0.02765880525112152, + -0.008478498086333275, + 0.0055276816710829735, + -0.012843530625104904, + 0.01710657589137554, + 0.015950726345181465, + 0.020682912319898605, + -0.018819954246282578, + 0.007866577245295048, + -0.06402047723531723, + 0.023416155949234962, + -0.009471168741583824, + -0.029752932488918304, + -0.002055032877251506, + 0.011198144406080246, + 0.020397348329424858, + -0.026570945978164673, + 0.013061102479696274, + 0.006516952998936176, + 0.012829932384192944, + 0.042127326130867004, + 0.03870056942105293, + -0.03432193771004677, + 0.02831152081489563, + 0.003413156373426318, + -0.01359823253005743, + 0.012394788675010204, + 0.011748872697353363, + -0.00020747928647324443, + -0.017364943400025368, + -0.02348414808511734, + -0.005830242298543453, + 0.03097677417099476, + -0.013686620630323887, + 0.004555407911539078, + 0.002321898238733411, + -0.03489306569099426, + -0.0018289622385054827, + -0.006863707676529884, + -0.011905252933502197, + 0.004670992959290743, + -0.011986842378973961, + 0.010511433705687523, + 0.006384370382875204, + 0.018493596464395523, + 0.03214622288942337, + 0.02277703955769539, + -0.013713817112147808, + -0.022287502884864807, + -0.023905692622065544, + -0.011130153201520443, + -0.01044344250112772, + -0.0023762912023812532, + -0.00713227316737175, + 0.022192316129803658, + -0.0054970853962004185, + -0.0013139292132109404, + 0.005269315093755722, + 0.01680741459131241, + -0.009301191195845604, + 0.016222691163420677, + 0.024558408185839653, + 0.004817173816263676, + 0.017745694145560265, + 0.0146180996671319, + -0.021825162693858147, + 0.019731035456061363, + 0.04560847207903862, + 0.03440352901816368, + -0.025224721059203148, + 0.02079169824719429, + 0.005401897709816694, + -0.019758231937885284, + -0.01751452311873436, + -0.011476907879114151, + 0.021865958347916603, + -0.03679681569337845, + 0.034240350127220154, + -0.005412096623331308, + 0.02986171841621399, + -0.04275284335017204, + -0.0004355683922767639, + 0.024082470685243607, + -0.013061102479696274, + -0.0357089601457119, + 0.028393110260367393, + 0.016195494681596756, + -0.006316379178315401, + -0.02355213835835457, + -0.009722736664116383, + -0.021308429539203644, + 0.009858719073235989, + -0.004344635177403688, + 0.023810505867004395, + 0.026802117004990578, + -0.017038585618138313, + -0.024204853922128677, + -0.03549138829112053, + -0.02986171841621399, + 0.03870056942105293, + 0.018276024609804153, + -0.015121234580874443, + -0.008220131509006023, + -0.013067901134490967, + -0.013537040911614895, + -0.0035525383427739143, + -0.04014198109507561, + -0.03793906792998314, + -0.003119094530120492, + -0.00799576099961996, + 0.018983133137226105, + -0.004504414740949869, + 0.0026465561240911484, + 0.00438542990013957, + -0.0048205736093223095, + -0.0258366409689188, + -0.010083089582622051, + 0.02515673078596592, + 0.015828343108296394, + 0.002967814216390252, + -0.0029797127936035395, + 0.0007177317165769637, + 0.016073111444711685, + -0.01279593724757433, + -0.003214282216504216, + 0.017188165336847305, + -0.0004143211408518255, + -0.002236909233033657, + -0.026502955704927444, + -0.0036613240372389555, + 0.0025802645832300186, + 0.0034879466984421015, + 0.008893243968486786, + 0.008294922299683094, + -0.003115694969892502, + -0.02205633372068405, + -0.0006582394707947969, + -0.02472158707678318, + 0.00906322244554758, + -0.02496635541319847, + -0.004184856079518795, + -0.00399788049980998, + -0.0003881870361510664, + 0.0005112085491418839, + -0.021090859547257423, + -0.011905252933502197, + -0.020506134256720543, + -0.0335332415997982, + -0.02348414808511734, + -0.023524941876530647, + -0.015678761526942253, + 0.0158691368997097, + 0.0004525661643128842, + 0.010763000696897507, + -0.0025598672218620777, + 0.005959425587207079, + -0.025755053386092186, + -0.001373421517200768, + 0.019731035456061363, + -0.015787547454237938, + -0.028610682114958763, + 0.004140662029385567, + -0.005381500348448753, + -0.006969094276428223, + 0.015597173012793064, + 0.018085649237036705, + 0.011313729919493198, + 0.013509844429790974, + -0.01652185246348381, + -0.025020748376846313, + -0.012218011543154716, + -0.025292713195085526, + -0.000648890680167824, + 0.007594612892717123, + 0.01087858621031046, + 0.023932889103889465, + 0.012170418165624142, + 0.014101367443799973, + -0.00522172125056386, + -0.04653315246105194, + 0.0012799336109310389, + -0.039407677948474884, + -0.017215361818671227, + -0.0037497126031666994, + -0.019731035456061363, + -0.0059424275532364845, + 0.014087769202888012, + 0.031303130090236664, + -0.03481147438287735, + -0.007241058629006147, + 0.008403707295656204, + -0.02205633372068405, + -0.008274524472653866, + -0.003273774404078722, + -0.00614300137385726, + -0.004409227054566145, + 0.0129183204844594, + -0.01406057272106409, + -0.006741323973983526, + 0.009022427722811699, + -0.005735054612159729, + -0.005799646023660898, + -0.02605421282351017, + -0.01763690821826458, + -0.025823043659329414, + 0.01639946922659874, + -0.0162498876452446, + -8.334228914463893e-5, + -0.06771919876337051, + -0.02493915893137455, + -0.02360653132200241, + 0.011687681078910828, + -0.0014762581558898091, + -0.0010547129204496741, + -0.009178807027637959, + 0.0020754302386194468, + 0.017378540709614754, + -0.019105516374111176, + 0.005656864959746599, + -0.007411036640405655, + -0.012727946043014526, + 0.03309809789061546, + 0.012177216820418835, + 0.016780218109488487, + 0.0016946797259151936, + -0.016916200518608093, + 0.007662604097276926, + -0.013006709516048431, + 0.01760971173644066, + 0.00018963160982821137, + 0.04049553722143173, + -0.004745783284306526, + -0.0391085185110569, + 0.012585164047777653, + -0.003431853838264942, + -0.022790636867284775, + 0.010205473750829697, + -0.026910902932286263, + 0.0035083440598100424, + 0.02617659792304039, + -0.013978983275592327, + -0.023715317249298096, + -0.0006777868838980794, + 0.017256157472729683, + 0.009634347632527351, + -0.014862868003547192, + 0.0016462360508739948, + 0.00027961365412920713, + 0.0009178806794807315, + -0.006850109435617924, + -0.014128563925623894, + -0.00010612995538394898, + -0.006261986214667559, + 0.0002505049342289567, + 0.011653685010969639, + -0.01850719377398491, + -0.0009034325485117733, + 0.008696069940924644, + 0.009104017168283463, + 0.013299071229994297, + -0.0068909041583538055, + -0.013938188552856445, + -0.01293191872537136, + 0.010402647778391838, + 0.01022587064653635, + -0.018915141001343727, + 0.014318939298391342, + -0.0110757602378726, + 0.05074860528111458, + 0.011272935196757317, + 0.01955425925552845, + -0.007791787385940552, + -0.026720527559518814, + 0.02964414656162262, + -0.013224281370639801, + 0.02899143099784851, + 0.011347725056111813, + -0.029943307861685753, + 0.005048343911767006, + 0.0031088958494365215, + -0.02527911402285099, + 0.008811654523015022, + -0.008274524472653866, + 0.031167149543762207, + 0.010824193246662617, + 0.005503884516656399, + 0.013163088820874691, + 0.030867988243699074, + -0.029997700825333595, + 0.004657394718378782, + -0.020070990547537804, + -0.0010224170982837677, + -0.014305341057479382, + -0.003671522717922926, + -0.008410506881773472, + -0.017351344227790833, + 0.03437633067369461, + 0.004450021777302027, + 0.019105516374111176, + 0.003831302048638463, + -0.00048741165664978325, + -0.002017637714743614, + -0.01732414774596691, + 0.050204675644636154, + -0.016222691163420677, + 0.031085560098290443, + -0.01652185246348381, + -0.023008208721876144, + -0.010817393660545349, + -0.0056636640802025795, + 0.012353993952274323, + 0.0019428475061431527, + 0.014509313739836216, + -0.0015000550774857402, + -0.031139953061938286, + 0.004123663995414972, + 0.004212052561342716, + -0.023184986785054207, + 0.00018995031132362783, + 0.005639866925776005, + -0.032255008816719055, + 0.03497465327382088, + 0.000702433695551008, + -0.011660484597086906, + -0.006007019430398941, + 0.006207593251019716, + 0.0004274944367352873, + 0.009178807027637959, + 0.004541809670627117, + 0.03350604325532913, + 0.015366002917289734, + -0.02057412639260292, + -0.012292802333831787, + 0.0030222071800380945, + 0.012061632238328457, + -0.0023150991182774305, + -0.009539159946143627, + 0.02132202871143818, + -0.01967664249241352, + -0.015801146626472473, + -0.0033315669279545546, + -0.003855098970234394, + 0.010565826669335365, + -0.009042824618518353, + 0.011102956719696522, + 0.002566666342318058, + 0.021838761866092682, + -0.022858629003167152, + -0.0014354634331539273, + -0.021267635747790337, + -0.0018408606993034482, + -0.003159889252856374, + -0.009260396473109722, + 0.003719116561114788, + -0.012768740765750408, + -0.02586383745074272, + 0.006190595217049122, + 0.020506134256720543, + -0.0002953366201836616, + 0.02654374949634075, + 0.012857128866016865, + 0.04006039351224899, + -0.042399290949106216, + -0.024422425776720047, + -0.014291742816567421, + 0.01550198532640934, + -0.032037436962127686, + -0.012585164047777653, + 0.011830462142825127, + 0.016481058672070503, + 0.010062691755592823, + 0.015597173012793064, + -0.0011592493392527103, + -0.00921960175037384, + 0.0037803086452186108, + -0.0008209932711906731, + -0.026815714314579964, + -0.028257127851247787, + 0.00691470131278038, + -0.00026877757045440376, + -0.027250858023762703, + -0.0045282114297151566, + -0.029725736007094383, + -0.01868397183716297, + -0.007241058629006147, + 0.004171257838606834, + 0.02874666452407837, + -0.0020091389305889606, + -0.035872139036655426, + -0.00046403968008235097, + 0.007050683721899986, + -0.010232670232653618, + -0.0008205683552660048, + 0.02221951261162758, + -0.01744653284549713, + 0.011490506120026112, + -0.00022437084408011287, + -0.00048443704145029187, + -7.335608825087547e-5, + 0.009722736664116383, + -0.00451801298186183, + 0.013924590311944485, + 0.010341456159949303, + -0.011864458210766315, + 0.009736334905028343, + 0.016603441908955574, + -0.02064211666584015, + -0.007105076685547829, + 0.002857328625395894, + -0.020465340465307236, + 0.02311699464917183, + 0.008723266422748566, + -0.0041134655475616455, + 0.016440263018012047, + -0.023184986785054207, + 0.0046845912002027035, + 0.006051213480532169, + -0.02338895946741104, + 0.013992581516504288, + -0.0034420525189489126, + 0.043432753533124924, + 0.011347725056111813, + 0.002811434678733349, + 0.008655275218188763, + 0.00730904983356595, + -0.012714347802102566, + 0.006102206651121378, + -0.029943307861685753, + 0.03655204921960831, + 0.0006777868838980794, + 0.00567726232111454, + 0.0024731785524636507, + 0.004847770091146231, + -0.015379601158201694, + 0.02850189618766308, + -0.06581544876098633, + -0.0005970473866909742, + 0.0020720306783914566, + 0.01940467767417431, + 0.01528441347181797, + -0.000797196407802403, + -0.011130153201520443, + -0.009301191195845604, + 0.010355054400861263, + 0.011660484597086906, + -0.014536510221660137, + 0.01528441347181797, + 0.003899293253198266, + 0.0043242378160357475, + -0.006435363553464413, + -0.003963884897530079, + -0.019146312028169632, + 0.008968034759163857, + 0.018479997292160988, + -0.036769621074199677, + -0.010545429773628712, + 0.008451301604509354, + 0.01282313372939825, + 0.010246268473565578, + 0.00904962420463562, + 0.0036103306338191032, + -0.006693730130791664, + -0.004368432331830263, + -0.02666613459587097, + 0.02391929179430008, + -0.01571955718100071, + 0.016630638390779495, + -0.004130463115870953, + -0.02472158707678318, + -0.001561247045174241, + 0.019567856565117836, + -0.01853439025580883, + 0.011905252933502197, + 0.004416026175022125, + -0.00691470131278038, + -0.004521412309259176, + 0.02110445685684681, + -0.0038924941327422857, + 0.00028705017757602036, + 0.001438013045117259, + -0.03078639879822731, + 0.0064081670716404915, + 0.013978983275592327, + -0.003115694969892502, + -0.017147371545433998, + -0.02540149912238121, + 0.012469579465687275, + -0.008254127576947212, + -0.020832492038607597, + -0.007336246315389872, + -0.024612801149487495, + 0.013421455398201942, + -0.0013079800410196185, + -0.004535010550171137, + -0.03323408216238022, + 0.002457880647853017, + 0.008322118781507015, + -0.009185605682432652, + 0.00813854206353426, + 0.021172448992729187, + 0.01151090394705534, + 0.006880705710500479, + 0.017024986445903778, + 0.022532271221280098, + -0.0020499336533248425, + 0.005422295071184635, + 0.0053407056257128716, + -0.014699689112603664, + 0.017405737191438675, + -0.0019326488254591823, + -0.030514433979988098, + 0.023470548912882805, + 0.008879645727574825, + -0.000162222670041956, + 0.017582515254616737, + -0.0110757602378726, + 0.00130373053252697, + -0.0034165559336543083, + -0.013190285302698612, + -0.0133670624345541, + -0.0017405737889930606, + -0.035844940692186356, + -0.008050153963267803, + 0.012727946043014526, + 0.010593023151159286, + 0.012727946043014526, + 0.003297571325674653, + -0.00881845410913229, + 0.008471698500216007, + -0.02069650962948799, + 0.009301191195845604, + -0.00149665551725775, + -0.04245368391275406, + -0.01106216199696064, + -0.009783928282558918, + 0.021458011120557785, + -0.003139491891488433, + -0.008308520540595055, + -0.02382410317659378, + 0.030623219907283783, + 0.010810595005750656, + 0.02784918062388897, + 0.009763531386852264, + -0.015298011712729931, + 0.013163088820874691, + 0.0016190395690500736, + -0.02013898268342018, + -0.006639337167143822, + 0.02190675213932991, + 0.005656864959746599, + -0.026380570605397224, + 0.015950726345181465, + 0.016725825145840645, + 0.022137923166155815, + -0.008696069940924644, + 0.013509844429790974, + -0.008641676977276802, + -0.007886975072324276, + 0.016113905236124992, + -0.0003807505127042532, + -0.009477968327701092, + -0.02020697295665741, + 0.017242558300495148, + 0.04365032538771629, + 0.004650595597922802, + -0.011034965515136719, + -0.0014983552973717451, + -0.04656034708023071, + -0.016453862190246582, + 0.013836201280355453, + -0.008709668181836605, + -0.008267725817859173, + -0.003056202782317996, + -0.010382250882685184, + -0.0033791607711464167, + -0.035872139036655426, + 0.010756202042102814, + -0.012632758356630802, + -0.003017107956111431, + -0.00659174332395196, + -0.008464899845421314, + 0.01797686330974102, + 0.0041508604772388935, + 0.01528441347181797, + -0.003431853838264942, + 0.011850859969854355, + 0.018058452755212784, + -0.005850639659911394, + -0.012612360529601574, + 0.034022778272628784, + 0.011422514915466309, + -0.027985163033008575, + -0.0074246348813176155, + 0.007458630483597517, + 0.013258276507258415, + 0.009960705414414406, + -0.012340395711362362, + -0.008206533268094063, + -0.0015162029303610325, + -0.02283143252134323, + 0.0005069590988568962, + 0.0015680461656302214, + 0.008288122713565826, + 0.008934038691222668, + -0.016793817281723022, + 0.009335186332464218, + -0.027686001732945442, + -0.0158691368997097, + -0.023348165675997734, + 0.04313359409570694, + -0.022069931030273438, + 0.0321190245449543, + -0.013618630357086658, + 0.027182867750525475, + -0.009029226377606392, + 0.0028675273060798645, + -0.006788917817175388, + 0.0051877256482839584, + -0.0030579024460166693, + 0.0022284104488790035, + 0.00330267078243196, + -0.020832492038607597, + -0.012619160115718842, + 0.004817173816263676, + -0.032907724380493164, + 0.02750922366976738, + 0.008580484427511692, + 0.0009663244127295911, + -0.02066931314766407, + -0.019023926928639412, + -0.020030196756124496, + 0.00792097020894289, + -0.01136812288314104, + 0.018588783219456673, + -0.0003463299944996834, + -0.004004679620265961, + 0.0026040615048259497, + -0.009070021100342274, + -0.006870506796985865, + -0.011551698669791222, + -0.004966754466295242, + -0.008621279150247574, + 0.03396838530898094, + -0.030840791761875153, + 0.0034879466984421015, + -0.003974083345383406, + -0.007404237519949675, + -0.031819865107536316, + -0.014101367443799973, + 0.003187085734680295, + -0.0022488078102469444, + -0.027237260714173317, + 0.010246268473565578, + -0.007091478444635868, + 0.013333067297935486, + -0.007057482842355967, + -0.006068211514502764, + 0.0069894916377961636, + 0.010763000696897507, + -0.03519222512841225, + 0.0008515893132425845, + 0.02663893811404705, + 0.0204517412930727, + 0.019282294437289238, + -0.0020686311181634665, + -0.016385870054364204, + -0.001793266972526908, + 0.023932889103889465, + 0.02091408148407936, + -0.0027570417150855064, + 0.016889004036784172, + 0.0102734649553895, + -0.009498365223407745, + 0.0292361993342638, + 0.005262515973299742, + 0.009783928282558918, + -0.020533330738544464, + -0.018711168318986893, + 0.018806355074048042, + 0.0022199114318937063, + 0.015882736071944237, + -0.001794966752640903, + 0.012999909929931164, + -0.02329377271234989, + -0.003013708395883441, + 0.005276114214211702, + -0.013761411421000957, + -0.0037123174406588078, + -0.008995231240987778, + -0.001963244751095772, + 0.017990462481975555, + -0.008566886186599731, + -0.007030286360532045, + -0.012789137661457062, + 0.021512404084205627, + 0.0007258056430146098, + 0.009430374018847942, + 0.017704898491501808, + -0.0032839730847626925, + 0.03078639879822731, + -0.032445382326841354, + -0.008390109054744244, + 0.028719468042254448, + -0.0029372181743383408, + -0.010973773896694183, + 0.01151090394705534, + 0.007662604097276926, + -0.004946357104927301, + -0.013781808316707611, + -0.013163088820874691, + -0.013285472989082336, + 0.0024969754740595818, + 0.015923529863357544, + -0.03546418994665146, + -0.01955425925552845, + 0.005109535995870829, + 0.0031819865107536316, + 0.0004011478740721941, + -0.014672492630779743, + 0.020655715838074684, + -0.005514083430171013, + -0.0008660374442115426, + 0.013455451466143131, + -0.007043884601444006, + 0.00307490024715662, + -0.0040148780681192875, + -0.01083099190145731, + -0.017704898491501808, + -0.005109535995870829, + 0.00819973461329937, + -0.006561147049069405, + -0.0003905242483597249, + 0.014740483835339546, + 0.011572095565497875, + -0.004337836056947708, + -0.0026618540287017822, + -0.02100927010178566, + -0.010586224496364594, + -0.00037565117236226797, + 0.012054833583533764, + 0.004698189441114664, + -0.014441322535276413, + 0.016685031354427338, + -0.00013470748672261834, + 0.010280263610184193, + -0.0025547679979354143, + -0.020750902593135834, + -0.014006179757416248, + -0.007615010254085064, + -0.0017592713702470064, + -0.015352404676377773, + 0.008016157895326614, + 0.015189225785434246, + 0.05879875645041466, + 0.009647945873439312, + 0.005891434382647276, + 0.01872476562857628, + 0.012891124933958054, + -0.03679681569337845, + -0.0029746133368462324, + 0.005857438780367374, + 0.0068433103151619434, + -0.006846710108220577, + 0.01406057272106409, + -0.03573615476489067, + 0.013734214939177036, + 0.010742603801190853, + -0.0024561807513237, + -0.0066121406853199005, + 0.0054290941916406155, + 0.02918180637061596, + -0.004280043765902519, + 0.022981012240052223, + 0.005065341480076313, + -0.001834061578847468, + 0.005561677273362875, + 0.015964325517416, + -0.0007937968475744128, + 0.00853968970477581, + -0.007540219929069281, + -0.007261455990374088, + 0.006867107469588518, + 0.023348165675997734, + 0.01483567152172327, + 0.006826312746852636, + 0.0049939509481191635, + 0.014087769202888012, + -0.009307989850640297, + -0.010341456159949303, + -0.003831302048638463, + 0.0035355405416339636, + 0.013550639152526855, + 0.003919690381735563, + -0.0017116775270551443, + 0.02942657470703125, + 0.012551168911159039, + 0.01720176450908184, + 0.0020652315579354763, + -0.033805206418037415, + -0.007118674926459789, + -0.006673332769423723, + -0.011857658624649048, + 0.010735804215073586, + -0.03799346089363098, + -0.01722896099090576, + 0.004657394718378782, + -0.010701809078454971, + 0.004477218259125948, + -0.010538630187511444, + 0.008866047486662865, + -0.007445032242685556, + 0.005272714886814356, + 0.0006595142767764628, + 0.013564237393438816, + 0.0053033106960356236, + -0.008682471700012684, + -0.019731035456061363, + 0.005316908936947584, + -0.015393199399113655, + -0.009491566568613052, + -0.028529092669487, + 0.016345076262950897, + -0.00199214112944901, + -0.0062721846625208855, + 0.024395229294896126, + 0.016345076262950897, + -0.03326127678155899, + 4.897488543065265e-5, + 0.01763690821826458, + 0.00314119178801775, + 0.011674082837998867, + -0.012326797470450401, + 0.002563266782090068, + 0.0029525163117796183, + 0.016943397000432014, + -0.01872476562857628, + -0.02091408148407936, + -0.0012000440619885921, + 0.0031972844153642654, + 0.02283143252134323, + -0.012863928452134132, + -0.0021162249613553286, + -0.026230990886688232, + 0.007275054231286049, + 0.008716466836631298, + -0.018357614055275917, + -0.0005422295071184635, + -0.02030216157436371, + -0.0017371742287650704, + -0.010790197178721428, + -0.009246798232197762, + 0.015529181808233261, + 0.018330417573451996, + 0.02289942279458046, + 0.001406567171216011, + -0.004276643972843885, + -0.009307989850640297, + 0.00713907228782773, + -0.011272935196757317, + 0.01865677535533905, + 0.0048885648138821125, + -0.023103397339582443, + -0.01584194041788578, + 0.006496555637568235, + 0.00936238281428814, + 0.011456510983407497, + 0.006799116265028715, + -0.011068961583077908, + 0.0012331897160038352, + 0.026965295895934105, + 0.008655275218188763, + -0.00906322244554758, + -0.021390018984675407, + 0.0011227041250094771, + -0.013231080025434494, + 0.002174017485231161, + -0.0018884545424953103, + -0.0008320418419316411, + 0.00966834370046854, + -0.005119734443724155, + -0.009117614477872849, + -0.021893154829740524, + -0.009117614477872849, + 0.014495715498924255, + 0.0026278584264218807, + 0.00660534156486392, + -0.004018277861177921, + 0.01480847503989935, + -0.0029270194936543703, + -0.008131743408739567, + 0.003691920079290867, + 0.028148341923952103, + -0.010932979173958302, + 0.012721146456897259, + 0.0026669532526284456, + -0.0023779908660799265, + 0.009511963464319706, + 0.02280423603951931, + 0.004908962175250053, + 0.0012697349302470684, + -0.016453862190246582, + 0.02081889472901821, + -0.012109226547181606, + 0.02168918028473854, + -0.0115245021879673, + 0.010729005560278893, + -0.020057393237948418, + 0.02595902606844902, + 0.005667063407599926, + -0.006435363553464413, + 0.009015628136694431, + -0.0012161919148638844, + 0.006306180264800787, + -0.013435053639113903, + 0.020628519356250763, + -0.015175627544522285, + -0.0022284104488790035, + 0.002590463263913989, + 0.003249977482482791, + 0.009192405268549919, + 0.03304370492696762, + 0.01106216199696064, + 0.003987681586295366, + -0.0068535092286765575, + 0.013686620630323887, + 0.012557967565953732, + -0.030378451570868492, + -0.003251677379012108, + -0.015733154490590096, + 0.00858728401362896, + 0.008451301604509354, + -0.029562557116150856, + 0.001517052878625691, + 0.0048579685389995575, + -0.006928299553692341, + 0.01527081523090601, + -0.0062823835760355, + -0.0005774999153800309, + -0.018017658963799477, + 0.03497465327382088, + -0.014087769202888012, + 0.01683461107313633, + 0.02258666418492794, + -0.015964325517416, + 0.036280084401369095, + -0.023783309385180473, + 0.011674082837998867, + -0.0062041934579610825, + -0.00838331039994955, + 0.006897703278809786, + 0.0233345665037632, + -0.01812644489109516, + -0.0019105516839772463, + -0.0049123615026474, + -0.004025076981633902, + -0.02855628915131092, + 0.02289942279458046, + 0.019146312028169632, + -0.006724325940012932, + -0.020533330738544464, + 0.004426224622875452, + -0.015665164217352867, + 0.01191205158829689, + -0.043731916695833206, + -0.02462639845907688, + 0.02246428094804287, + 0.00018251377332489938, + -0.017908873036503792, + 0.004569006152451038, + 0.0007224060827866197, + 0.005561677273362875, + 0.008995231240987778, + -0.009212802164256573, + 0.00045766550465486944, + -0.00023945637803990394, + 0.02001659758388996, + 0.006119204685091972, + -0.02193394862115383, + 0.016141101717948914, + -0.004280043765902519, + -0.0070098889991641045, + 0.01667143404483795, + -0.02231469936668873, + 0.028909841552376747, + -0.00818613637238741, + 0.012489976361393929, + 0.018262425437569618, + 0.004018277861177921, + 0.026040615513920784, + 0.005871037021279335, + -0.014631697908043861, + 0.012075230479240417, + 0.002461280208081007, + 0.009967504069209099, + 0.01773209497332573, + 0.0022505074739456177, + -0.0016742823645472527, + 0.012741544283926487, + 0.005667063407599926, + -0.0036579244770109653, + 0.00307829980738461, + 0.004171257838606834, + -2.41156158153899e-5, + -0.011198144406080246, + 0.0009705738630145788, + -0.004606401082128286, + 0.014550108462572098, + 0.001373421517200768, + 0.01921430230140686, + 0.0036205293145030737, + -0.0047899773344397545, + -0.010137482546269894, + 0.00966834370046854, + -0.003010308835655451, + 0.017092978581786156, + 0.007472228724509478, + 0.007506224326789379, + 0.004195054527372122, + -0.002967814216390252, + -0.013237879611551762, + 0.018493596464395523, + -0.010701809078454971, + 0.02663893811404705, + 0.01279593724757433, + 0.01527081523090601, + 0.003146291011944413, + 0.0005027096485719085, + -0.0096819419413805, + 0.0005205573397688568, + 0.01741933636367321, + -0.005282913334667683, + -0.010824193246662617, + 0.01359823253005743, + -0.00199894024990499, + -0.00016169148148037493, + 0.00853968970477581, + -0.02047893777489662, + 0.009641147218644619, + -0.00584044074639678, + 0.0006990341353230178, + 0.0013547239359468222, + -0.007043884601444006, + 0.003970684017986059, + -0.004636997357010841, + 0.014794876798987389, + 0.004949756432324648, + -0.02372891642153263, + -0.0013309270143508911, + 0.01828962191939354, + 0.005082339514046907, + -0.00835611391812563, + 0.027645206078886986, + -0.00031169698922894895, + 0.014101367443799973, + -0.024096067994832993, + -0.0060410150326788425, + -0.02719646506011486, + 0.014332537539303303, + 0.006445562466979027, + -0.0014983552973717451, + 0.00276214093901217, + -0.007377041038125753, + 0.015393199399113655, + -0.009165208786725998, + 0.013897393830120564, + 0.017990462481975555, + -0.0081249438226223, + -0.005520882550626993, + -0.013516643084585667, + 0.012755142524838448, + 0.01581474393606186, + -0.020247768610715866, + 0.0031054962892085314, + -0.016753021627664566, + 0.007703398820012808, + -0.01962224952876568, + 0.019472669810056686, + -0.017038585618138313, + 0.02382410317659378, + 0.009647945873439312, + 0.007064281962811947, + 0.002129823202267289, + -0.02920900285243988, + -0.007771390024572611, + -0.019023926928639412, + 0.005333906505256891, + 0.004708387888967991, + 0.012911521829664707, + 0.024436023086309433, + -0.031602293252944946, + 0.009464370086789131, + 0.00012854579836130142, + 0.029562557116150856, + -0.03054163046181202, + 0.00345055153593421, + -0.007798586506396532, + -0.01909191906452179, + 0.0028658274095505476, + 0.031303130090236664, + 0.0031564896926283836, + -0.01214322168380022, + 0.006193995010107756, + 0.015896333381533623, + 0.005106136202812195, + -0.0009918210562318563, + 0.019907811656594276, + -0.006377571262419224, + 0.003341765608638525, + -0.011946047656238079, + -0.0121160252019763, + 0.009736334905028343, + -0.005619469564408064, + 0.00880485586822033, + -0.01698419265449047, + -0.012333597056567669, + -0.0250343456864357, + 0.00018803805869538337, + -0.01087858621031046, + -0.001966644311323762, + 0.004021677188575268, + 0.01996220462024212, + -0.01899673044681549, + -0.004915761295706034, + -0.003957085777074099, + -0.04316078871488571, + -0.013448651880025864, + -0.000530331046320498, + -0.008247327990829945, + 0.014550108462572098, + 0.004572405479848385, + -0.006197394337505102, + -0.010402647778391838, + 0.005711257457733154, + 0.026230990886688232, + -0.011225340887904167, + -0.011068961583077908, + -0.010851389728486538, + 0.023035405203700066, + 0.014862868003547192, + 0.018479997292160988, + 0.021458011120557785, + -0.003834701608866453, + -0.011823663488030434, + 0.0016343375900760293, + 0.010722205974161625, + -0.012449181638658047, + -0.01425094809383154, + 0.009151610545814037, + -0.028229931369423866, + -0.004569006152451038, + 0.03481147438287735, + 0.0007555517950095236, + -0.014767680317163467, + 0.008723266422748566, + 0.010715407319366932, + 0.023035405203700066, + 0.037830282002687454, + 4.618618550011888e-5, + -0.004732185043394566, + 0.0024918760173022747, + 0.015379601158201694, + 0.0011465009301900864, + -0.002479977672919631, + -0.004297041334211826, + 0.02338895946741104, + -0.01748732663691044, + -0.002921920269727707, + -0.004970153793692589, + -0.018670372664928436, + 0.0015085539780557156, + -0.009056422859430313, + 0.019731035456061363, + 0.02391929179430008, + 0.005024546757340431, + -0.01335346419364214, + -0.0008651875541545451, + -0.012972713448107243, + -0.004344635177403688, + -0.0010283663868904114, + 0.025360703468322754, + -0.0023830903228372335, + -0.013673022389411926, + 0.02877386100590229, + -0.0069894916377961636, + -0.02831152081489563, + -0.015665164217352867, + 0.019051123410463333, + -0.018765561282634735, + 0.004120264668017626, + 0.001296081580221653, + -0.009872316382825375, + 0.019391080364584923, + -0.0010249668266624212, + -0.014155760407447815, + 0.0009493266115896404, + 0.008247327990829945, + -0.0040828692726790905, + 0.007723796181380749, + -0.00751982256770134, + 0.008274524472653866, + 0.010355054400861263, + -0.00998110231012106, + -0.021186046302318573, + -0.008893243968486786, + 0.027495626360177994, + 0.012000440619885921, + -0.025700660422444344, + -0.017908873036503792, + -0.020601322874426842, + -0.003139491891488433, + 0.01998940110206604, + -0.00022352095402311534, + -0.008403707295656204, + 0.012041235342621803, + -0.0046539949253201485, + -0.013564237393438816, + 0.009661544114351273, + -0.0005124834133312106, + -0.016875406727194786, + 0.01865677535533905, + 0.024245649576187134, + 4.5203498302726075e-5, + -0.0031819865107536316, + -0.011395318433642387, + -0.0001138851948780939, + 0.009335186332464218, + 0.004028476309031248, + 0.012483177706599236, + -0.01639946922659874, + -0.00983832124620676, + 0.010314259678125381, + -0.006737924180924892, + -0.015162029303610325, + -0.013278674334287643, + -0.0238512996584177, + 0.009539159946143627, + 0.019948607310652733, + 0.013795406557619572, + 0.0030069092754274607, + -0.01273474469780922, + 0.011973244138062, + 0.014713287353515625, + 0.024368032813072205, + -0.0054086968302726746, + -0.018248828127980232, + 0.0014422625536099076, + -0.000423882418544963, + 0.01089218445122242, + -0.004864767659455538, + -0.014155760407447815, + 0.003096997505053878, + 0.022763442248106003, + -0.011735274456441402, + -0.007397438399493694, + -0.008927240036427975, + 0.0008932339260354638, + 0.01654904894530773, + -0.0034420525189489126, + 0.007859778590500355, + -0.02209712751209736, + 0.013115495443344116, + -0.007615010254085064, + -0.010586224496364594, + 0.02370171993970871, + 0.004429624415934086, + 0.01068821083754301, + 0.01049103680998087, + -0.014794876798987389, + 0.014414126984775066, + 0.0012731344904750586, + 0.010803795419633389, + 0.016345076262950897, + 0.007982162758708, + 0.0033315669279545546, + 0.00025836643180809915, + 0.011538100428879261, + 0.01106216199696064, + 0.000251779769314453, + 0.006421765312552452, + 0.00038521242095157504, + -0.0013453750871121883, + 0.017188165336847305, + 0.004657394718378782, + -0.011612890288233757, + -0.009097217582166195, + -0.004093068186193705, + 0.01850719377398491, + -0.008050153963267803, + 0.025047944858670235, + -0.011415716260671616, + -0.023837702348828316, + 0.030596023425459862, + 0.00043259377707727253, + -0.016290683299303055, + 0.007893773727118969, + -0.0023745913058519363, + -0.024925559759140015, + -0.0028658274095505476, + -0.019486267119646072, + -0.017120175063610077, + 0.004436423536390066, + 0.009471168741583824, + 5.619894727715291e-5, + -0.0162498876452446, + 0.007234259508550167, + 0.028202734887599945, + 0.010423045605421066, + 0.021498804911971092, + -0.02654374949634075, + 0.004269844852387905, + -0.022845029830932617, + -0.0187519621104002, + -0.014291742816567421, + -0.03124873898923397, + -0.005969624035060406, + 0.0017694700509309769, + 0.024109667167067528, + -0.004664193838834763, + -0.0008719866746105254, + 0.00962074939161539, + 0.036959994584321976, + 0.014713287353515625, + 0.014740483835339546, + -0.02122684195637703, + -0.014672492630779743, + -0.004704988561570644, + 0.01584194041788578, + 0.013176687061786652, + 0.0008022957481443882, + 0.0016598342917859554, + -0.012829932384192944, + 0.021770769730210304, + 0.004290242213755846, + -0.004154260270297527, + -0.017555318772792816, + -0.03345165029168129, + 0.007615010254085064, + 0.0027757391799241304, + 0.007499425206333399, + -0.003674922278150916, + 0.00796856451779604, + 0.013788607902824879, + -0.010545429773628712, + 0.012326797470450401, + -0.032962117344141006, + -0.010790197178721428, + 0.009484766982495785, + -0.013747813180088997, + -0.004127063788473606, + -0.009239998646080494, + 0.0029338186141103506, + -0.014291742816567421, + -0.006503354758024216, + 0.007791787385940552, + 0.02663893811404705, + -0.0005452041514217854, + 0.02530631050467491, + -0.01112335454672575, + -0.0019309490453451872, + 0.014958055689930916, + -0.0321190245449543, + 0.0009884214960038662, + -0.007689800579100847, + -0.032907724380493164, + 0.014781278558075428, + 0.00962074939161539, + 0.007383840158581734, + -0.0003093597770202905, + -0.0292361993342638, + 0.020125383511185646, + 0.0026006619445979595, + 0.03350604325532913, + -0.019812624901533127, + 0.008131743408739567, + -0.011157349683344364, + -0.012768740765750408, + 0.00682291341945529, + 0.0016759821446612477, + -0.027114875614643097, + -0.00983832124620676, + 0.006795716937631369, + -0.0018221631180495024, + -0.0001580794487381354, + -0.013047504238784313, + -0.0063027809374034405, + 0.007030286360532045, + -0.006323178298771381, + 0.01113695278763771, + -0.005068741273134947, + -0.01136812288314104, + 0.007105076685547829, + 0.013849799521267414, + -0.010919380933046341, + 0.027182867750525475, + -0.03886374831199646, + -0.0008197184652090073, + 0.01528441347181797, + 0.0018289622385054827, + -0.0037293152417987585, + 0.008512493222951889, + 0.007506224326789379, + 0.010973773896694183, + 0.0038415007293224335, + -0.03198304399847984, + -0.00544609222561121, + -0.010477438569068909, + 0.006350374780595303, + 0.00818613637238741, + -0.014346135780215263, + 0.010654214769601822, + -0.0222467090934515, + 0.014686090871691704, + -0.01335346419364214, + -0.00877085980027914, + -0.022165119647979736, + -0.01259196363389492, + -0.009722736664116383, + -0.0006663133972324431, + -0.009919910691678524, + 0.014713287353515625, + 0.010103486478328705, + -0.0030579024460166693, + -0.010966974310576916, + -0.002439182950183749, + 0.012292802333831787, + -0.015162029303610325, + 0.009457570500671864, + 0.013129093684256077, + -0.015651565045118332, + -0.02273624576628208, + -0.015121234580874443, + 0.03347884863615036, + -0.06081129610538483, + 0.004976952914148569, + -0.00713227316737175, + -0.013333067297935486, + -0.022654656320810318, + -1.4554358131135814e-5, + -0.009178807027637959, + -0.011347725056111813, + -0.0250343456864357, + -0.0006875606486573815, + -0.010531831532716751, + -0.022355495020747185, + -0.011823663488030434, + -0.016589844599366188, + -0.012054833583533764, + 0.022573066875338554, + 0.009239998646080494, + -0.003391059348359704, + -0.013061102479696274, + 0.006391169503331184, + -0.011803265661001205, + -0.03320688381791115, + 0.009647945873439312, + -0.006044414360076189, + -0.0052863131277263165, + 0.019486267119646072, + -0.011565296910703182, + 0.009382780641317368, + -0.01229960098862648, + -0.002262406051158905, + 0.0028233330231159925, + 0.012714347802102566, + 0.0037293152417987585, + -0.00543929310515523, + -0.009777129627764225, + -0.023076200857758522, + -0.011504104360938072, + 0.027686001732945442, + -0.014400528743863106, + -0.008560087531805038, + 0.004079469945281744, + -0.022627459838986397, + 0.001480507547967136, + -0.006656334735453129, + -0.003878895891830325, + -0.014563706703484058, + -0.013727415353059769, + -0.007689800579100847, + 0.018180837854743004, + -0.0015807945746928453, + 0.010436643846333027, + 0.014509313739836216, + -0.01313589233905077, + 0.01807205192744732, + 0.0007857228629291058, + -0.005911831744015217, + 0.0009255296899937093, + 0.007417835760861635, + 0.0008889844757504761, + 0.0019207503646612167, + 0.006278983782976866, + -0.005976423155516386, + -0.02580944448709488, + -0.022641057148575783, + 0.0012008938938379288, + 0.009770330041646957, + -0.02283143252134323, + -0.010953376069664955, + 0.005027946550399065, + -0.033370062708854675, + 0.013870197348296642, + -0.018602382391691208, + -0.007261455990374088, + 0.013176687061786652, + 0.0018867547623813152, + -0.0030035097151994705, + 0.00614300137385726, + 0.015325208194553852, + -0.0022556069307029247, + -0.005299911368638277, + 0.027400437742471695, + 0.0029270194936543703, + 0.011810065247118473, + -0.009695540182292461, + 0.009076820686459541, + 0.002218211768195033, + 0.0007228310569189489, + 0.00775099266320467, + -0.010926179587841034, + 0.001051313360221684, + 0.006516952998936176, + 0.005211522802710533, + -0.01550198532640934, + -0.003790507325902581, + -0.011415716260671616, + -0.014359734021127224, + -0.009314789436757565, + -0.006520352326333523, + 0.021797966212034225, + -0.02617659792304039, + 0.017718497663736343, + 0.001859558280557394, + 0.017786487936973572, + -0.046614740043878555, + 0.024340836331248283, + -0.01695699617266655, + 0.021403618156909943, + 0.01605951227247715, + -0.006455760914832354, + 0.013700218871235847, + 0.005021147429943085, + 0.012612360529601574, + 0.002299800980836153, + -0.023443352431058884, + -0.017963266000151634, + 0.031194346025586128, + 0.02942657470703125, + 0.027210064232349396, + 0.02209712751209736, + 3.412837759242393e-5, + -0.004365032538771629, + 0.018928740173578262, + -0.001627538469620049, + 0.01022587064653635, + -0.009933508932590485, + 0.004004679620265961, + 0.025387899950146675, + 0.006826312746852636, + 0.011429314501583576, + 0.009192405268549919, + -0.004079469945281744, + -0.010769800283014774, + 0.0069113015197217464, + -0.012034435756504536, + 0.024082470685243607, + 0.011946047656238079, + 0.002901522908359766, + 0.0187519621104002, + -0.012625958770513535, + -0.004144061356782913, + 0.02812114544212818, + -0.0024102868046611547, + -0.009457570500671864, + -0.004344635177403688, + 0.0068433103151619434, + -0.019826222211122513, + -0.01548838708549738, + 0.013917790725827217, + -0.02243708446621895, + -0.005830242298543453, + -0.0018884545424953103, + 0.004195054527372122, + 0.009464370086789131, + 0.004120264668017626, + 0.0028267325833439827, + 0.0007266555330716074, + -0.013611830770969391, + -0.03625288978219032, + -0.00960715115070343, + -0.022042734548449516, + 0.003525341860949993, + 0.0029780128970742226, + -0.033587634563446045, + -0.0006777868838980794, + -0.0013649226166307926, + -5.036259608459659e-6, + 0.0028199334628880024, + -0.014658894389867783, + 0.014522911980748177, + -0.01483567152172327, + 0.009518763050436974, + -0.014658894389867783, + 0.013061102479696274, + 0.015651565045118332, + 0.01872476562857628, + -0.02088688500225544, + 0.01066101435571909, + -0.015175627544522285, + 0.00046956396545283496, + -0.0009476268314756453, + -0.017718497663736343, + 0.005191125441342592, + 0.02209712751209736, + 0.018711168318986893, + -0.00019473093561828136, + 0.016848210245370865, + -0.015624369494616985, + 0.004878365900367498, + 0.013095097616314888, + -0.008281324058771133, + 0.010463840328156948, + -0.010151080787181854, + -0.011483707465231419, + -0.03143911436200142, + 0.005072140600532293, + 0.003994480706751347, + 0.00022330848150886595, + 0.019948607310652733, + 0.0044228252954781055, + 0.015298011712729931, + 0.015311609953641891, + -0.009688740596175194, + 0.023932889103889465, + -0.004409227054566145, + -0.004959955345839262, + -0.02636697329580784, + -0.00942357536405325, + 0.014332537539303303, + -2.6227060516248457e-5, + 0.027373241260647774, + 0.017813684418797493, + 0.007499425206333399, + -0.009872316382825375, + 0.027155671268701553, + -0.009233199991285801, + 0.010293861851096153, + 0.000797196407802403, + -0.0007827482768334448, + 0.005823443178087473, + -0.01652185246348381, + -0.01739213988184929, + -0.009879115968942642, + -0.008226931095123291, + -0.005908431950956583, + -0.0162498876452446, + 0.0012161919148638844, + 0.020805295556783676, + -0.029344985261559486, + 0.005065341480076313, + -0.012306400574743748, + -0.00860088225454092, + -0.01574675366282463, + -0.013761411421000957, + -0.0054970853962004185, + -0.010525031946599483, + 0.003715717000886798, + 0.001395518658682704, + 0.014318939298391342, + 0.003912891261279583, + -0.017786487936973572, + -0.020247768610715866, + -0.0006569646066054702, + 0.013693420216441154, + -0.009029226377606392, + -0.013509844429790974, + -0.01940467767417431, + -0.003630727995187044, + -0.016018718481063843, + -0.004065871704369783, + 0.0035117436200380325, + -0.020778099074959755, + 0.012680351734161377, + -0.012102426961064339, + -0.005871037021279335, + 0.01229960098862648, + 0.012150020338594913, + -0.012156819924712181, + -0.00792097020894289, + -0.008968034759163857, + -0.001494955737143755, + -0.01087858621031046, + 0.04351434484124184, + 0.009192405268549919, + 0.012972713448107243, + -0.010423045605421066, + -0.025088738650083542, + 0.006758321542292833, + 0.006075010169297457, + -0.001657284563407302, + -0.01276194117963314, + 0.031112756580114365, + -0.01945907063782215, + -0.017786487936973572, + 0.031602293252944946, + 0.001725275767967105, + 0.014699689112603664, + -0.016018718481063843, + -0.02202913723886013, + -0.02964414656162262, + -0.00041495857294648886, + -0.00314799090847373, + -0.014550108462572098, + -0.021648386493325233, + 0.0023133992217481136, + -0.013734214939177036, + 0.007927769795060158, + 0.0022199114318937063, + -0.009933508932590485, + -0.010932979173958302, + -0.012850330211222172, + -0.013421455398201942, + -0.002507174154743552, + 0.015665164217352867, + -0.007465429604053497, + 0.004786578007042408, + 0.01661704108119011, + 0.009634347632527351, + -0.004871566779911518, + 0.012387990020215511, + -0.009151610545814037, + 0.0022199114318937063, + -0.011789667420089245, + -0.02784918062388897, + 0.023688120767474174, + -0.0012561366893351078, + 0.017936069518327713, + 0.026407767087221146, + 0.010824193246662617, + 0.0003813879156950861, + -0.0016309380298480392, + 0.013992581516504288, + -0.030432844534516335, + -0.007730595301836729, + -0.003940087743103504, + 0.006646136287599802, + 0.004647195804864168, + -0.01692979969084263, + 0.017011389136314392, + 0.013271874748170376, + 0.002964414656162262, + 0.00283863116055727, + 0.0022216113284230232, + 0.030704809352755547, + -0.004749182611703873, + -0.0018510593799874187, + -0.0006369922193698585, + 0.001526401611045003, + -0.022015538066625595, + -0.005500485189259052, + -0.01406057272106409, + 0.03309809789061546, + 0.016413066536188126, + 0.017786487936973572, + -0.033560436218976974, + -0.012184016406536102, + -0.008655275218188763, + 0.017310550436377525, + 0.0032057834323495626, + 0.017813684418797493, + -0.018928740173578262, + 0.031330328434705734, + -0.018303221091628075, + 0.0021842161659151316, + -0.013897393830120564, + 0.0006284933187998831, + 0.008981633000075817, + 0.011483707465231419, + 0.02525191754102707, + 0.00026304079801775515, + 0.015964325517416, + -0.027006089687347412, + 0.010960175655782223, + 0.0038584985304623842, + -0.000367789703886956, + -0.0068739065900444984, + -0.008390109054744244, + -0.01005589310079813, + -0.009008829481899738, + 0.015107636339962482, + -0.01642666570842266, + 0.018330417573451996, + -0.0098247230052948, + -0.0027128474321216345, + -0.017120175063610077, + -0.007370241917669773, + -0.015366002917289734, + -0.012959115207195282, + -0.00792097020894289, + 0.01642666570842266, + -0.004636997357010841, + -0.002588763600215316, + -0.011986842378973961, + -0.020533330738544464, + 0.01722896099090576, + 0.0013921190984547138, + 0.015311609953641891, + 0.01775929145514965, + -0.007683001458644867, + 0.013040704652667046, + 0.008634877391159534, + 0.019513463601469994, + -0.008478498086333275, + 0.012510374188423157, + -0.011028166860342026, + -0.003098697168752551, + -0.008961235173046589, + 0.008920440450310707, + -0.026652535423636436, + 0.003562737023457885, + -0.0002318073675269261, + 0.010864987969398499, + -0.00469478964805603, + 0.02654374949634075, + 0.010219071991741657, + 0.01483567152172327, + 0.006153200287371874, + -0.010695009492337704, + 0.02280423603951931, + 0.019146312028169632, + -0.01274834293872118, + 0.01212962344288826, + 0.015012448653578758, + -0.019935008138418198, + -0.008016157895326614, + 0.00016668457828927785, + -0.010083089582622051, + -0.011748872697353363, + -0.003059602342545986, + 0.0005923730204813182, + -0.013095097616314888, + -0.022477878257632256, + -0.01276194117963314, + -0.00965474545955658, + 0.007513023447245359, + -0.005000750068575144, + -0.0010895583545789123, + 0.0009034325485117733, + 0.024653594940900803, + 0.0017057283548638225, + 0.019051123410463333, + -0.013333067297935486, + 0.0005991721409372985, + 0.018520792946219444, + -0.0033281673677265644, + 0.012415186502039433, + -2.6240339138894342e-5, + 0.008396908640861511, + 0.006102206651121378, + 0.013217481784522533, + -0.009328387677669525, + 0.02110445685684681, + 0.004368432331830263, + -0.004891964141279459, + -0.01649465598165989, + 0.013917790725827217, + 0.01828962191939354, + 0.004698189441114664, + 0.01627708412706852, + 0.00469478964805603, + 0.0033978584688156843, + 0.009518763050436974, + -0.033832401037216187, + -0.02580944448709488, + 0.009294391609728336, + 0.019132712855935097, + -0.012721146456897259, + 0.0187519621104002, + -0.009403177537024021, + -0.025224721059203148, + 0.0058370414189994335, + 0.00020014899200759828, + 0.019758231937885284, + 0.0061362022534012794, + 0.018711168318986893, + -0.0015731455059722066, + 0.015393199399113655, + -0.013890594244003296, + 0.02748202718794346, + -0.003695319639518857, + 0.026162998750805855, + -0.010205473750829697, + 0.025020748376846313, + 0.03603531792759895, + 0.016997789964079857, + -0.006336776539683342, + 0.009960705414414406, + -0.014903662726283073, + 0.006812714505940676, + -0.004810374695807695, + -0.001949646626599133, + 0.0011898453813046217, + -0.005133332684636116, + 0.010477438569068909, + 0.003929889295250177, + -0.0027298452332615852, + -0.021403618156909943, + 0.002898123348131776, + -0.016793817281723022, + 0.0026261587627232075, + -0.013448651880025864, + 0.013040704652667046, + 0.00451801298186183, + -0.007914171554148197, + -0.0035321409814059734, + -0.0023303970228880644, + 0.027563616633415222, + 0.013679821975529194, + -0.00406247191131115, + -0.0024238850455731153, + -0.012714347802102566, + -0.006839910987764597, + 0.0016623839037492871, + -0.015366002917289734, + -0.004137262236326933, + -0.002717946656048298, + 0.004949756432324648, + -0.016440263018012047, + -0.005898233503103256, + -0.0031071961857378483, + 0.018928740173578262, + -0.02372891642153263, + -0.021580394357442856, + -0.01754171960055828, + -0.007832582108676434, + -0.015760350972414017, + 0.01822163164615631, + 0.00775099266320467, + -0.009015628136694431, + 0.00730225071310997, + 0.005956025794148445, + -0.005038144998252392, + 0.0035049444995820522, + -0.010599822737276554, + -0.031194346025586128, + 0.004239249043166637, + -0.0037463130429387093, + -0.009729535318911076, + -0.02246428094804287, + 0.024803176522254944, + -0.0019462470663711429, + -0.004953156225383282, + -0.037830282002687454, + 0.015216422267258167, + 0.017133772373199463, + -0.03032405860722065, + -0.004106666427105665, + 0.0009374281507916749, + 0.023987282067537308, + -0.009804326109588146, + 0.001097207423299551, + -0.0016674832440912724, + 0.0016793817048892379, + -0.0007457780884578824, + 0.015665164217352867, + -0.02775399200618267, + 0.00945077184587717, + 0.03209182992577553, + -0.0002634657430462539, + -0.0019122514640912414, + 0.03842860460281372, + 0.01050463505089283, + 0.014223751612007618, + 0.026842910796403885, + -0.0011031565954908729, + 0.0013360263546928763, + 0.021022867411375046, + 0.00544609222561121, + 0.005306710489094257, + -0.009505164809525013, + -0.013108695857226849, + 0.012510374188423157, + -0.004181456286460161, + 0.012999909929931164, + -0.029100216925144196, + -0.004545209463685751, + -0.005425694864243269, + 0.031330328434705734, + 0.013809004798531532, + 0.02372891642153263, + 0.007662604097276926, + -0.004280043765902519, + -0.0020533332135528326, + 0.019363883882761, + 0.010735804215073586, + 0.0007211312768049538, + -0.028012359514832497, + -0.002639757003635168, + -0.00606481172144413, + 0.006173597648739815, + -0.004793377127498388, + 0.002947416855022311, + 0.010613420978188515, + -0.005510683637112379, + 0.013897393830120564, + 0.005055143032222986, + 0.010402647778391838, + -0.010015098378062248, + -0.01042984426021576, + 0.00645236112177372, + -0.006442162673920393, + 0.003654524916782975, + -0.03010648675262928, + 0.009987901896238327, + 0.007954966276884079, + 0.012122824788093567, + 0.022069931030273438, + -0.0053713019005954266, + 0.012877526693046093, + -0.00936238281428814, + 0.01741933636367321, + -0.020166179165244102, + -0.025170328095555305, + 0.01637227274477482, + 0.004755981732159853, + -0.003851699410006404, + 0.013917790725827217, + -0.021022867411375046, + -0.012707548215985298, + 0.019132712855935097, + -0.008254127576947212, + 0.006132802926003933, + 0.00606481172144413, + 0.020057393237948418, + -0.014087769202888012, + -0.009899512864649296, + 0.013251477852463722, + -0.012000440619885921, + 0.03725915774703026, + 0.0006102207116782665, + 0.03497465327382088, + -0.00792097020894289, + -0.01005589310079813, + -0.024762380868196487, + -0.007818983867764473, + 0.0037531121633946896, + -0.006584944203495979, + -0.01661704108119011, + 0.0077169970609247684, + 0.010185075923800468, + 0.01652185246348381, + 0.020261365920305252, + 0.00861448049545288, + 0.006312979385256767, + 0.003807505127042532, + -0.011327328160405159, + 7.022212230367586e-5, + 0.012639557011425495, + 0.008179336786270142, + -0.0026057614013552666, + -0.016263486817479134, + -0.018344014883041382, + -0.0065135532058775425, + -0.004851169418543577, + 0.022301102057099342, + -0.008254127576947212, + -0.005269315093755722, + 0.0019462470663711429, + -0.011334126815199852, + -0.010667813010513783, + -0.004691390320658684, + 0.018398407846689224, + 0.0116672832518816, + -0.005272714886814356, + 0.0006501654861494899, + 0.016535451635718346, + 0.01843920350074768, + 0.01365942507982254, + -0.018140042200684547, + 0.008566886186599731, + 0.01313589233905077, + 0.0110757602378726, + -0.026462160050868988, + 0.006411566864699125, + -2.6492650704312837e-6, + 0.002833531703799963, + -0.01773209497332573, + 0.015257216989994049, + -0.004976952914148569, + 0.02605421282351017, + -0.008845650590956211, + 0.0016504854429513216, + 0.009763531386852264, + 0.02627178467810154, + 0.018928740173578262, + -0.010898983106017113, + -0.017460130155086517, + 0.0023354964796453714, + -0.019173508509993553, + 0.00016774694086052477, + 0.005949226673692465, + 0.005092537961900234, + 0.002522472059354186, + 0.011415716260671616, + -0.007370241917669773, + 0.003343465505167842, + 0.003872096771374345, + 0.018262425437569618, + -0.008668873459100723, + -0.005422295071184635, + -0.01571955718100071, + -0.021145252510905266, + -0.010327857919037342, + -0.009729535318911076, + -0.0022063131909817457, + -0.003980882465839386, + -0.00903602596372366, + -0.0002910871698986739, + -0.0035797348245978355, + -0.02605421282351017, + 0.013625429011881351, + 0.008866047486662865, + 0.0010708607733249664, + -0.0056330678053200245, + 0.02153960056602955, + -0.0038924941327422857, + -0.003974083345383406, + -0.005884635262191296, + -0.019295891746878624, + 0.00375991128385067, + 0.005051743239164352, + 0.018915141001343727, + -0.007914171554148197, + -0.005116335116326809, + -0.018017658963799477, + 0.030895184725522995, + 0.003017107956111431, + 0.01940467767417431, + 0.013822603039443493, + -0.029562557116150856, + -0.018670372664928436, + -0.01896953396499157, + -0.01023946888744831, + -0.010205473750829697, + -0.0031020967289805412, + -0.003919690381735563, + -0.015366002917289734, + 0.0021825162693858147, + 0.0034658494405448437, + 0.013591433875262737, + -0.02103646658360958, + 0.0158691368997097, + 0.007900573313236237, + 0.0034454520791769028, + 0.0014337636530399323, + 0.013387460261583328, + 0.026842910796403885, + 0.017813684418797493, + -0.014359734021127224, + 0.019608652219176292, + 0.04035955294966698, + 0.007825782522559166, + 0.004450021777302027, + 0.0055650766007602215, + -0.011504104360938072, + 0.020628519356250763, + -0.02552388235926628, + -0.0016623839037492871, + 0.018765561282634735, + -0.01279593724757433, + -0.0010632118210196495, + 0.020438143983483315, + 0.006775319576263428, + -0.01280953548848629, + 0.0073566436767578125, + -0.010545429773628712, + 0.023035405203700066, + 0.0068909041583538055, + 0.021512404084205627, + 0.01273474469780922, + 0.0009085318888537586, + 0.015923529863357544, + 0.014754082076251507, + -0.005327107384800911, + -0.014441322535276413, + 0.0010793596738949418, + 0.00730904983356595, + 0.01741933636367321, + -0.003878895891830325, + -0.0004899612977169454, + 0.00018293871835339814, + 0.003297571325674653, + -0.007982162758708, + 0.005854038987308741, + 0.02079169824719429, + 0.010824193246662617, + -0.0032414786983281374, + -0.0031088958494365215, + 0.018153641372919083, + -0.0068161142989993095, + -0.010953376069664955, + -0.008492096327245235, + -0.0003121219342574477, + -0.016943397000432014, + -0.01406057272106409, + 0.00637417146936059, + 0.013550639152526855, + -0.03880935534834862, + 0.01045704074203968, + -0.004127063788473606, + -0.00897483341395855, + 0.002185915829613805, + 0.0022981013171374798, + 0.02654374949634075, + 0.01000829879194498, + 0.002811434678733349, + -0.011089358478784561, + -0.006462560035288334, + 0.016793817281723022, + 0.010219071991741657, + 0.026462160050868988, + -0.0016564347315579653, + -0.014074170961976051, + 0.04095787554979324, + 0.007213862147182226, + 0.035328209400177, + 0.009919910691678524, + 0.009919910691678524, + 0.008879645727574825, + 0.016657834872603416, + -0.019880615174770355, + -0.019363883882761, + -0.00451801298186183, + 0.00790737196803093, + -0.018357614055275917, + -0.006918100640177727, + -0.034022778272628784, + -0.0146180996671319, + -0.007445032242685556, + 0.026720527559518814, + -0.013904192484915257, + 0.02896423451602459 + ], + "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2": [ + -0.0466175302863121, + -0.02286897785961628, + -0.009348827414214611, + 0.04837668314576149, + 0.01673859916627407, + -0.0014784540981054306, + 0.035769425332546234, + 0.01983044296503067, + -0.02292228490114212, + 0.02354864962399006, + -0.003281751647591591, + -0.02068336494266987, + 0.02033686451613903, + 0.0016183865955099463, + 0.024401571601629257, + 0.07052601128816605, + -0.008069444447755814, + 0.010295038111507893, + 0.030705200508236885, + -0.022962266579270363, + 0.03566281124949455, + -0.0029585740994662046, + -0.01640542596578598, + -0.015206004492938519, + 0.004677745513617992, + 0.00471772626042366, + -0.008835741318762302, + 0.0004901803913526237, + -0.02748008817434311, + -0.007662973366677761, + 0.01346017885953188, + -0.00035899365320801735, + -0.012760516256093979, + 0.02517453394830227, + 0.058851633220911026, + -0.004054712597280741, + 0.012647237628698349, + 0.00605374900624156, + -0.03611592575907707, + -0.006956647150218487, + -0.010681518353521824, + 0.031025046482682228, + 0.0381949245929718, + -0.01905748061835766, + 0.0001747074566083029, + 0.021163133904337883, + -0.032437700778245926, + 0.00324510270729661, + 0.006856695283204317, + 0.0010428307577967644, + 0.0013543472159653902, + -0.033077389001846313, + 0.018697654828429222, + 0.036435771733522415, + 0.0063969166949391365, + -0.04680410772562027, + 0.02538776397705078, + 0.03134489059448242, + 0.0013876644661650062, + -0.03414354473352432, + 0.02910597063601017, + -0.022495824843645096, + -0.0008375130128115416, + 0.004531149286776781, + -0.006706767249852419, + 0.022229285910725594, + -0.00918890442699194, + -0.02690703049302101, + -0.02433493733406067, + -0.019337346777319908, + -0.004504495766013861, + 0.056825943291187286, + 0.019177423790097237, + 0.008335982449352741, + 0.03718207776546478, + -0.01748490519821644, + 0.02618737891316414, + 0.016365446150302887, + 0.0022022719494998455, + -0.01573908142745495, + 0.021589593961834908, + 0.007323137018829584, + 0.004094692878425121, + 0.0078628771007061, + 0.02257578633725643, + 0.022882305085659027, + -0.0162988118827343, + -0.0331306979060173, + 0.015179350972175598, + -0.04869652912020683, + -0.027293512597680092, + 0.025147879496216774, + -0.03630250319838524, + -0.014566312544047832, + 0.0015284300316125154, + 0.024294957518577576, + -0.001430977019481361, + -0.006563503295183182, + -0.009788615629076958, + -0.022908957675099373, + 0.022096017375588417, + -0.010101797990500927, + 0.05080218240618706, + -0.0026170718483626842, + 0.0258408784866333, + -0.02865285612642765, + -0.014086543582379818, + -0.02764001116156578, + -0.02668047323822975, + 0.05032241344451904, + 0.010135115124285221, + -0.007989482954144478, + -0.00247214175760746, + 0.0058205281384289265, + -0.06860693544149399, + -0.004071371164172888, + -0.029905585572123528, + -0.01143448892980814, + -0.03155812248587608, + 0.0007925346726551652, + 0.011221257969737053, + 0.018790943548083305, + 0.006923329550772905, + -0.02819974161684513, + -0.020816633477807045, + -0.0011252909898757935, + 0.017271675169467926, + 0.03680892661213875, + 0.02164290100336075, + 0.0006034591351635754, + -0.007529704365879297, + -0.008129415102303028, + 0.0063969166949391365, + 0.008009472861886024, + -0.0025304469745606184, + 0.024921322241425514, + 0.024921322241425514, + 0.042726073414087296, + -0.015285965986549854, + 0.046271029859781265, + -0.05538663640618324, + 0.0010153439361602068, + -0.00651685893535614, + 0.01916409656405449, + -0.004884312395006418, + 0.01775144413113594, + -0.004541144706308842, + 0.06706101447343826, + -0.03678227216005325, + 0.0012618917971849442, + -0.029932240024209023, + -0.038967885076999664, + -0.0058005377650260925, + -0.0007712949300184846, + 0.0426994189620018, + -0.053787410259246826, + 0.014033236540853977, + 0.00822936650365591, + 0.0062669795006513596, + 0.04219299554824829, + 0.02145632542669773, + 0.0007825394859537482, + -0.008715799078345299, + 0.008502569049596786, + 0.04981599003076553, + 0.003166806884109974, + 0.0601310171186924, + 0.026613838970661163, + 0.008009472861886024, + 0.0051408554427325726, + 0.019244058057665825, + -0.039341039955616, + 0.019177423790097237, + 0.005560653284192085, + -0.015699099749326706, + -0.00494428351521492, + -0.0005534832598641515, + 0.04142003506422043, + 0.02185613289475441, + -0.02646724320948124, + -0.011800979264080524, + -0.01780475117266178, + -0.009508750401437283, + 0.00046977357123978436, + 0.01865767315030098, + -0.008249357342720032, + 0.02617405168712139, + 0.009828596375882626, + -0.017898039892315865, + -0.004064707551151514, + 0.005317436996847391, + 0.0025521032512187958, + -0.033237311989068985, + 0.007809569127857685, + -0.044192034751176834, + -0.044378612190485, + 0.019590558484196663, + 0.022509150207042694, + -0.037155427038669586, + 0.025934167206287384, + 0.005060893949121237, + -0.020989883691072464, + -0.039181116968393326, + 0.019310692325234413, + 0.014406389556825161, + 0.03347719833254814, + -0.022908957675099373, + 0.004327914211899042, + 0.03544957935810089, + -0.04360564798116684, + 0.011594411917030811, + -0.04243288189172745, + 0.0014767881948500872, + -0.035422928631305695, + -0.012907112017273903, + 0.0221893060952425, + 0.012667227536439896, + 0.03774181008338928, + -0.0227490346878767, + -0.03155812248587608, + 0.04568464681506157, + 0.0017674814444035292, + -0.013360227458178997, + -0.04022061452269554, + -0.004897639621049166, + -0.0008271013502962887, + -0.03153146803379059, + -0.0038448134437203407, + -0.0311849694699049, + -0.014033236540853977, + 0.0365157350897789, + -0.018924212083220482, + 0.021256420761346817, + 0.017058445140719414, + -0.00563061935827136, + 0.03571612015366554, + 0.024801379069685936, + 0.009602039121091366, + -0.00459445221349597, + 0.029798971489071846, + -0.005660605151206255, + -0.018671000376343727, + 0.03230442851781845, + -0.004531149286776781, + 0.019124116748571396, + 0.014513004571199417, + -0.00605374900624156, + 0.036222539842128754, + 0.024641456082463264, + 0.011827632784843445, + 0.021549614146351814, + -0.0067001041024923325, + -0.02051011472940445, + 0.014419716782867908, + -0.03864803910255432, + 0.05714578926563263, + 0.05314771831035614, + -0.027400126680731773, + -0.0016250500921159983, + 0.031771354377269745, + 0.0029069322627037764, + 0.033743735402822495, + -0.0021356374491006136, + 0.02849293313920498, + 0.02096322923898697, + 0.03478323668241501, + 0.040540460497140884, + 0.009308846667408943, + -0.008975673466920853, + -0.0021039859857410192, + 0.027773279696702957, + 0.046830762177705765, + -0.04006069153547287, + 0.027040300890803337, + 0.0016808565706014633, + -0.006436897441744804, + 0.0015534179983660579, + -0.007869540713727474, + 0.025094572454690933, + -0.01556583121418953, + -0.009088953025639057, + 0.017764771357178688, + 0.01993705704808235, + 0.004754375200718641, + 0.02320215106010437, + 0.03974084556102753, + -0.04219299554824829, + 0.0019324019085615873, + -0.02421499602496624, + -0.01536592748016119, + 0.006890012416988611, + 0.0038381500635296106, + -0.00015586237714160234, + 0.0039414335042238235, + -0.014499678276479244, + -0.021043190732598305, + -0.011567757464945316, + 0.013266938738524914, + 0.029399164021015167, + 0.03011881746351719, + -0.013600111939013004, + 0.02500128373503685, + 0.02185613289475441, + -0.04619107022881508, + 0.03608927130699158, + -0.015499196015298367, + 0.028386319056153297, + 0.026827068999409676, + -0.0116610461845994, + 0.006806719116866589, + 0.003751525189727545, + -0.03728869557380676, + -0.04416538029909134, + -0.021536286920309067, + 0.0038414818700402975, + 0.005110870115458965, + -0.023388726636767387, + 0.01905748061835766, + -0.06274309009313583, + -0.009235548786818981, + 0.009915221482515335, + -0.00040605428512208164, + -0.027959857136011124, + 0.06231663003563881, + 0.03001220151782036, + -0.0033783717080950737, + 0.0235886313021183, + 0.007236512377858162, + -0.0376351922750473, + 0.0041879815980792046, + -0.012760516256093979, + -0.013433525338768959, + 0.0037615203764289618, + 0.022495824843645096, + -0.025014610961079597, + -0.03672896325588226, + -0.0415533073246479, + -0.05232144892215729, + 0.01047495100647211, + -0.019470615312457085, + -0.01656534895300865, + -0.010468287393450737, + 0.03982080891728401, + 0.0014876163331791759, + -0.01163439266383648, + -0.02849293313920498, + -0.023442035540938377, + -0.004177986178547144, + -0.03968753665685654, + 0.014899485744535923, + 0.0009662009542807937, + -0.024481533095240593, + 0.052961140871047974, + -0.010135115124285221, + 0.03241104632616043, + -0.002653721021488309, + -0.01663198322057724, + -0.008102761581540108, + 0.03496981039643288, + -0.04648426175117493, + 0.004364563152194023, + -0.042059727013111115, + 0.021869460120797157, + 0.016871867701411247, + -0.006843368522822857, + -0.019310692325234413, + -0.008795760571956635, + -0.022375881671905518, + -0.026320647448301315, + -0.024401571601629257, + 0.011147960089147091, + -0.016605330631136894, + 0.026707127690315247, + -0.00639025354757905, + -0.022495824843645096, + -0.016978483647108078, + 0.06007771193981171, + -0.020923249423503876, + 0.00011567341425688937, + 0.01831117458641529, + -0.017564866691827774, + 0.006903339177370071, + 0.009701990522444248, + 0.023721899837255478, + 0.015445888973772526, + 0.018391136080026627, + -0.002173952292650938, + -0.016138888895511627, + 0.0033767058048397303, + 0.010908075608313084, + 0.017005138099193573, + -0.02321547642350197, + -0.0027803266420960426, + 0.014619620516896248, + -0.02966570109128952, + -0.01567244529724121, + 0.01939065381884575, + -0.009915221482515335, + -0.030598584562540054, + -0.011747671291232109, + 0.021589593961834908, + 0.02078997902572155, + 0.0051608458161354065, + -0.016671964898705482, + 0.023975111544132233, + -0.0037948377430438995, + -0.04253949597477913, + -0.007869540713727474, + 0.00259041809476912, + -0.011960901319980621, + -0.012347382493317127, + 0.014846177771687508, + -0.018777616322040558, + -0.011414498090744019, + 0.02634730190038681, + -5.663936826749705e-5, + -0.007376444526016712, + 0.006400248501449823, + 0.005747229792177677, + -0.004567798227071762, + 0.02077665366232395, + 0.0031484824139624834, + 0.021083172410726547, + 0.00640358030796051, + 0.023228803649544716, + 0.011867613531649113, + -0.024961302056908607, + 0.03472992777824402, + -0.021536286920309067, + 0.042779382318258286, + 0.03616923466324806, + 0.03544957935810089, + -0.013373554684221745, + -0.012660564854741096, + -0.02454816922545433, + 0.004737716633826494, + -0.011987555772066116, + -0.010414980351924896, + 0.021363036707043648, + -0.0471772626042366, + -0.0370754636824131, + 0.026200704276561737, + -0.03675561770796776, + 0.012607256881892681, + -0.06284970790147781, + -0.012007545679807663, + -0.013153660111129284, + 0.01781807839870453, + -0.03169139102101326, + -0.02077665366232395, + 0.008189385756850243, + -0.008076107129454613, + -0.01960388384759426, + -0.021602921187877655, + 0.022109344601631165, + -0.014899485744535923, + 0.03776846453547478, + -0.0055739800445735455, + 0.04403211176395416, + -0.05298779532313347, + 0.01757819391787052, + 0.018004655838012695, + 0.03550288826227188, + -0.017551541328430176, + 0.04563134163618088, + 0.018497752025723457, + 0.025254495441913605, + -0.0062669795006513596, + -0.008915702812373638, + 0.022149324417114258, + -0.013226957991719246, + -0.02129640243947506, + -0.0202169232070446, + 0.009175577200949192, + 0.015086062252521515, + 0.01713840663433075, + 0.008009472861886024, + 0.004874317441135645, + 0.028972702100872993, + 0.009741971269249916, + 0.009988519363105297, + 0.007456406019628048, + 0.004937620367854834, + -0.05122864246368408, + 0.014366408810019493, + 0.027240203693509102, + -0.020483460277318954, + 0.008489241823554039, + -0.0005809699650853872, + -0.014206485822796822, + -0.005374076310545206, + -0.005950465332716703, + 7.793118857080117e-5, + 0.03206454589962959, + -0.006463551428169012, + -0.01725834794342518, + -0.004857658874243498, + -0.023721899837255478, + 0.02264242060482502, + -0.00930218305438757, + -0.029532432556152344, + -0.015299292281270027, + -0.04067372903227806, + -0.011294555850327015, + -0.02657385915517807, + 0.033850353211164474, + -0.001321862917393446, + 0.025747589766979218, + 0.0058205281384289265, + -0.024428226053714752, + -0.0331306979060173, + 0.024281630292534828, + -0.013526814058423042, + 0.015872349962592125, + 0.022442515939474106, + 0.017045117914676666, + 0.01724502071738243, + -0.04275272786617279, + 0.027320165187120438, + -0.02460147626698017, + -0.007782915607094765, + -0.01949726976454258, + 0.00505756214261055, + 0.002492132131010294, + -0.0028269707690924406, + 0.030545277521014214, + -0.011967564933001995, + -0.009515414014458656, + 0.026947012171149254, + -0.018284520134329796, + -0.009222221560776234, + 0.011561094783246517, + -0.022509150207042694, + 0.004757707007229328, + -0.0020506782457232475, + 0.029532432556152344, + 0.012214113026857376, + 0.019630538299679756, + 0.009128933772444725, + 0.013213631696999073, + -0.030705200508236885, + 0.005344090983271599, + -0.01905748061835766, + 0.008889049291610718, + -0.017391618341207504, + 0.003056860063225031, + -0.01573908142745495, + 0.025920839980244637, + -0.0039047845639288425, + 0.016898522153496742, + 0.00751637713983655, + 0.01647206023335457, + -0.006027095019817352, + 0.015859022736549377, + -0.027959857136011124, + -0.02456149458885193, + 0.028466280549764633, + 0.01809794455766678, + -0.007116570137441158, + -0.013673409819602966, + -0.0382215790450573, + 0.04056711494922638, + -0.00595379713922739, + 0.013613438233733177, + 0.0016750260256230831, + -0.01859103888273239, + -0.03560950234532356, + 0.006163695827126503, + -0.009855249896645546, + 0.01607225276529789, + 0.015872349962592125, + -0.004517822526395321, + 0.03667565807700157, + -0.038621384650468826, + -0.021709537133574486, + 0.03363712131977081, + -0.02072334475815296, + 0.009701990522444248, + 0.003093509003520012, + -0.016538694500923157, + -0.000922055565752089, + 0.024654783308506012, + 0.007662973366677761, + 0.019590558484196663, + -0.004401212092489004, + 0.03864803910255432, + -0.02404174581170082, + 0.009068962186574936, + -0.009708654135465622, + -0.010594893246889114, + 0.013686737045645714, + -0.00012868797057308257, + -0.030811816453933716, + -0.012267420999705791, + -0.010328355245292187, + 0.031051700934767723, + 0.018577713519334793, + 0.01780475117266178, + 0.02977231703698635, + 0.0006646796246059239, + 0.034303467720746994, + -0.00151343725156039, + -0.0037348666228353977, + 0.021056517958641052, + -0.014459697529673576, + 0.03534296527504921, + -0.018631020560860634, + 0.0381949245929718, + 0.008076107129454613, + 0.017884712666273117, + -0.03361046686768532, + -0.013979928568005562, + 0.048509951680898666, + 0.004611110780388117, + -0.007029945030808449, + 0.0009770290926098824, + 0.004401212092489004, + 0.017831405624747276, + 0.014672927558422089, + -0.01516602374613285, + 0.027506742626428604, + -0.01573908142745495, + 0.010121787898242474, + 0.013833332806825638, + -0.010741489939391613, + 0.05591971427202225, + -0.0105349225923419, + 0.001820789068005979, + -0.003954760730266571, + -0.004654423333704472, + -0.015605811960995197, + -0.03608927130699158, + 0.008749116212129593, + 0.009708654135465622, + 0.002875280799344182, + -0.021722862496972084, + 0.027506742626428604, + -0.02589418552815914, + 0.0044945003464818, + -0.018777616322040558, + -0.0018624357180669904, + -0.033797044306993484, + 0.015299292281270027, + 0.05218818038702011, + -0.018137924373149872, + 0.012613920494914055, + 0.01457963977009058, + -0.01346017885953188, + 0.019017500802874565, + 0.027719972655177116, + -0.00811608787626028, + 0.009275529533624649, + 0.01242068037390709, + 0.013293593190610409, + 0.005317436996847391, + -0.004561135079711676, + 0.02849293313920498, + -0.0112345851957798, + -0.018217885866761208, + 0.012300738133490086, + 0.04760372266173363, + -0.04288599640130997, + 0.001394327962771058, + 0.0162988118827343, + 0.029479125514626503, + 0.014486351050436497, + 0.025321129709482193, + -0.00629030168056488, + 0.017831405624747276, + -0.006640132982283831, + 0.0022189305163919926, + -0.030758507549762726, + 0.018844250589609146, + -0.008389289490878582, + 0.0014168170746415854, + 0.001661699148826301, + 0.008782433345913887, + 0.017458252608776093, + 0.013533476740121841, + -0.022335901856422424, + -0.029932240024209023, + -0.01808461733162403, + -0.010768143460154533, + 0.045311495661735535, + -0.029745662584900856, + 0.0029985548462718725, + -0.006660123355686665, + -0.023122189566493034, + -0.007423088885843754, + -0.012633910402655602, + 0.0038181596901267767, + 0.005477359984070063, + -0.007349791005253792, + 0.04192645847797394, + -0.010155105032026768, + 0.004064707551151514, + 0.007123233284801245, + 0.006470215041190386, + 0.014086543582379818, + -0.04349903389811516, + -0.002072334522381425, + -0.014273121021687984, + -0.030412008985877037, + -0.0005897157825529575, + -0.012713871896266937, + 0.007676300127059221, + -0.001526764128357172, + -0.016552021726965904, + -0.003964755684137344, + -0.0003517054719850421, + -0.010814787819981575, + 0.027826588600873947, + -0.0025154543109238148, + 0.0325976237654686, + 0.0005414056940935552, + 0.00436789495870471, + -0.017098424956202507, + 0.068553626537323, + -0.004008068237453699, + 0.035476233810186386, + 0.007956164889037609, + 0.00910227932035923, + 0.008982337079942226, + 0.015432561747729778, + -0.030598584562540054, + -0.03998073190450668, + 0.011441152542829514, + -0.019590558484196663, + 0.01815125159919262, + -0.009282193146646023, + 0.016871867701411247, + 0.014886158518493176, + 0.018497752025723457, + -0.004534481093287468, + 0.0089890006929636, + 0.026613838970661163, + 0.02005700021982193, + 0.007782915607094765, + 0.03950096294283867, + -0.016098907217383385, + -0.024188341572880745, + 0.00750305037945509, + -0.011920920573174953, + -0.0266938004642725, + -0.002747009275481105, + -0.05274790897965431, + 0.02168288268148899, + 0.0019507264951243997, + -0.034703273326158524, + -0.03190462291240692, + 0.012487314641475677, + -0.011048008687794209, + 0.012267420999705791, + -0.02370857261121273, + 0.007789578754454851, + 0.011074662208557129, + 0.01332024671137333, + -0.01303371787071228, + -0.02421499602496624, + 0.03835484758019447, + -0.02961239404976368, + 0.0199503842741251, + 0.00595379713922739, + -0.01647206023335457, + -0.027506742626428604, + -0.013433525338768959, + -0.0026520551182329655, + 0.014366408810019493, + 0.0052541340701282024, + -0.007762925233691931, + 0.03656904026865959, + 0.024188341572880745, + 0.00023884321853984147, + 0.017391618341207504, + 0.008282674476504326, + 0.0031085016671568155, + -0.009082289412617683, + -0.02585420571267605, + -0.03571612015366554, + 0.013053708709776402, + -0.06567501276731491, + -0.01656534895300865, + 0.02926589362323284, + -0.0005080884438939393, + -0.00907562579959631, + -0.006673450116068125, + 0.017991328611969948, + 0.004624438006430864, + 0.022935612127184868, + 0.004211303777992725, + -0.0063236188143491745, + -0.006896676030009985, + -0.016938501968979836, + -0.008369299583137035, + 0.026054108515381813, + -0.03241104632616043, + -0.028359664604067802, + 0.036382462829351425, + -0.006107056513428688, + -0.01056157611310482, + 0.01989707723259926, + 0.006413575261831284, + 0.0127871697768569, + -0.0026720454916357994, + 0.0012510636588558555, + -0.02190943993628025, + -0.008222703821957111, + -0.000763382064178586, + -0.020310210064053535, + 0.02409505285322666, + 0.006600152235478163, + -0.019817115738987923, + -0.00660348404198885, + 0.023695245385169983, + -0.0432591512799263, + -0.016725271940231323, + 0.02400176413357258, + -0.004684408660978079, + 0.044805072247982025, + 0.020190268754959106, + -0.029079318046569824, + -0.002680374775081873, + 0.009895230643451214, + 0.013506823219358921, + 0.008076107129454613, + -0.011721017770469189, + 0.014739562757313251, + 0.01415317878127098, + 0.01921740360558033, + 0.03254431486129761, + -0.013193640857934952, + 0.004221298731863499, + -0.0023605290334671736, + -0.007029945030808449, + 0.001358511857688427, + 0.0023205482866615057, + -0.004111351910978556, + 0.011441152542829514, + -0.031211623921990395, + 0.028333010151982307, + -0.005514008924365044, + -0.043845534324645996, + 0.009795279242098331, + -0.0046577551402151585, + 0.025880860164761543, + -0.03113166242837906, + 0.026333974674344063, + -0.004051380790770054, + 0.008369299583137035, + 0.043738920241594315, + 0.009468769654631615, + -0.020310210064053535, + 0.02353532239794731, + 0.016258830204606056, + -0.032171159982681274, + 0.02157626673579216, + -3.076641951338388e-5, + 0.014539659023284912, + -0.01859103888273239, + -0.009895230643451214, + 0.007682963740080595, + 0.017724789679050446, + -0.023415381088852882, + 0.007489723619073629, + -0.0015059408033266664, + -0.018511077389121056, + 0.001430977019481361, + 0.0005613960674963892, + -0.01567244529724121, + 0.022442515939474106, + 0.0008500069961883128, + 0.03198458254337311, + 0.02421499602496624, + 0.010568239726126194, + 0.011201268061995506, + 0.024481533095240593, + -0.009655346162617207, + -0.008829077705740929, + 0.012354045175015926, + 0.004734384827315807, + -0.011034681461751461, + 0.011847622692584991, + -0.02236255444586277, + 0.02488134056329727, + -0.007396434899419546, + -0.01607225276529789, + -0.011381180956959724, + 0.010914739221334457, + -0.022562459111213684, + 0.015978965908288956, + 0.020749999210238457, + 0.009095615707337856, + 0.003608261002227664, + 0.018497752025723457, + -0.02961239404976368, + 0.024254975840449333, + 0.050189144909381866, + 0.02248249761760235, + -0.012820487841963768, + 5.853298716829158e-6, + 0.011181277222931385, + -0.04515157267451286, + -0.004641096573323011, + -0.033290620893239975, + 0.036489080637693405, + -0.039527613669633865, + 0.020483460277318954, + 0.0005838852375745773, + 0.027506742626428604, + -0.033503852784633636, + 0.0014284781645983458, + 0.03169139102101326, + 0.003688222263008356, + -0.028333010151982307, + 0.0370754636824131, + 0.016032272949814796, + 0.005597302224487066, + -0.03403692692518234, + -0.012740526348352432, + -0.015712426975369453, + 0.014592966064810753, + -0.011914257891476154, + 0.01701846346259117, + 0.03001220151782036, + -0.023855168372392654, + 0.0008562539587728679, + -0.06722093373537064, + -0.029878932982683182, + 0.019337346777319908, + 0.014659601263701916, + -0.012087507173418999, + -0.02241586335003376, + -0.022895632311701775, + -0.02061673067510128, + -0.027773279696702957, + -0.02257578633725643, + -0.020190268754959106, + -0.00134851667098701, + 0.015805715695023537, + -0.018351154401898384, + -0.01752488687634468, + -0.00842927023768425, + 0.049975913017988205, + -0.0036482415162026882, + -0.015086062252521515, + -0.0028836100827902555, + 0.03062523901462555, + 0.003711544442921877, + -0.010394989512860775, + 0.00448117358610034, + -0.003751525189727545, + -0.006370263174176216, + -0.0024238317273557186, + -0.02040349878370762, + 0.004297928418964148, + -0.012407353147864342, + -0.004597784020006657, + -0.024974629282951355, + -0.023122189566493034, + 0.0008250190294347703, + 0.0035516214556992054, + 0.026720454916357994, + 0.0076896268874406815, + 0.0029169274494051933, + -0.033956967294216156, + 0.007009954657405615, + -0.0038481452502310276, + -0.0013676740927621722, + -0.023242130875587463, + -0.0034450062084943056, + 0.00910227932035923, + 0.0311849694699049, + 0.0023472020402550697, + 0.002778660738840699, + -0.012260757386684418, + -0.010148442350327969, + -0.036382462829351425, + -0.013780024833977222, + -0.024534841999411583, + -0.02028355747461319, + 0.0146062932908535, + -0.023175496608018875, + 0.009875240735709667, + -0.005320768803358078, + -0.004874317441135645, + -0.03163808584213257, + -0.014206485822796822, + 0.019070807844400406, + -0.028732817620038986, + -0.01736496388912201, + 0.022629093378782272, + 0.010181759484112263, + -0.009335500188171864, + 0.033743735402822495, + 0.01932401955127716, + 0.01831117458641529, + 0.007922847755253315, + -0.014912812039256096, + -0.012274084612727165, + -0.02269572764635086, + -0.008042789995670319, + 0.01559248473495245, + 0.01577906124293804, + 0.010288374498486519, + 0.015659119933843613, + 0.03518304228782654, + 0.01134786382317543, + -0.02173618972301483, + -0.030705200508236885, + -0.016378771513700485, + -0.03974084556102753, + 0.00808943435549736, + -0.00808943435549736, + -0.03449004143476486, + -0.00560729717835784, + 0.029425816610455513, + 0.049309566617012024, + -0.01384665910154581, + -0.017911367118358612, + 0.011381180956959724, + -0.04030057415366173, + -0.01989707723259926, + -0.011354527436196804, + 0.004214635118842125, + -0.0004718559212051332, + 0.02432161010801792, + -0.003328395774587989, + -0.005144187249243259, + -0.009402135387063026, + 0.01927071250975132, + -0.0006488539511337876, + -0.015805715695023537, + -0.006236993707716465, + -0.015059408731758595, + 0.015046081505715847, + -0.005190831609070301, + -0.017938021570444107, + -0.05354752391576767, + -0.015179350972175598, + -0.03696884959936142, + 0.004987596068531275, + -0.007016618270426989, + 0.0230422280728817, + 0.007902857847511768, + 0.0015784059651196003, + 0.011454478837549686, + -0.00918890442699194, + 0.015938984230160713, + -0.025800898671150208, + -0.029745662584900856, + 0.034863196313381195, + 0.02590751275420189, + -0.004294596612453461, + 1.0619881322782021e-5, + -0.018177906051278114, + 0.019683845341205597, + -0.011874277144670486, + 0.021722862496972084, + 0.008862394839525223, + 0.04421868920326233, + -0.024854687973856926, + -0.0449383407831192, + 0.0039047845639288425, + 0.0004306257760617882, + -0.007549694739282131, + -0.0016017280286177993, + -0.02742678113281727, + -0.005530667491257191, + 0.0015309287700802088, + -0.0116610461845994, + -0.02540109120309353, + -0.013273602351546288, + 0.018524404615163803, + 0.011001364327967167, + -0.013780024833977222, + 0.025587666779756546, + -0.006510195322334766, + 0.006370263174176216, + -0.029132625088095665, + -0.005757225211709738, + -0.00842260755598545, + -0.02708028070628643, + 0.012847141362726688, + 0.004404543898999691, + -0.036995504051446915, + 0.013899967074394226, + 0.014739562757313251, + 0.00526746129617095, + 0.004341240972280502, + -0.020909922197461128, + -0.02174951694905758, + -0.03403692692518234, + 0.011920920573174953, + 0.0127871697768569, + -0.01876428909599781, + -0.002455483190715313, + -0.0005309940897859633, + 0.06828708946704865, + 0.020496787503361702, + 0.028519587591290474, + -0.023228803649544716, + -0.01202087290585041, + 0.017005138099193573, + 0.0078628771007061, + 0.03457000479102135, + 0.0038781308103352785, + -0.01753821410238743, + 0.00015034420357551426, + 0.0011494460050016642, + -0.01036167237907648, + 0.017285002395510674, + -0.005923811346292496, + 0.01483285054564476, + 0.013613438233733177, + 0.014712908305227757, + 0.0058738356456160545, + 0.02039017155766487, + -0.02685372345149517, + -0.004397880285978317, + -0.010208413004875183, + 0.0006571832345798612, + -0.002993557136505842, + 0.00916225090622902, + -0.031718045473098755, + -0.01579238846898079, + 0.03305073827505112, + 0.0013993255561217666, + 0.030598584562540054, + -0.012387363240122795, + 0.014206485822796822, + 0.0022222623229026794, + -0.019030828028917313, + 0.05050899088382721, + -0.04197976738214493, + 0.03894123062491417, + -0.009082289412617683, + -0.007556357886642218, + -0.013740044087171555, + -0.013020390644669533, + 0.022602438926696777, + -0.003644909942522645, + 0.01112130656838417, + -0.0023422043304890394, + -0.01904415525496006, + -0.013926620595157146, + 0.020523441955447197, + -0.023508669808506966, + 0.01589900441467762, + -0.004104688297957182, + -0.019817115738987923, + 0.030545277521014214, + 0.005980450659990311, + -0.00800280924886465, + -0.0035449580755084753, + 0.014259793795645237, + 0.0075430311262607574, + 0.0033100713044404984, + -0.019190751016139984, + 0.025587666779756546, + -0.005850513465702534, + -0.01703179068863392, + 0.0072031947784125805, + 0.01078813336789608, + 0.01242068037390709, + -0.015099389478564262, + 0.007476396393030882, + 0.004591120406985283, + 0.0011486130533739924, + 0.005877167452126741, + 0.010461624711751938, + -0.005327432416379452, + -0.0007662973366677761, + 0.016338791698217392, + 0.015512523241341114, + 0.011847622692584991, + 0.03318400681018829, + -0.0320112369954586, + 0.00044853382860310376, + -0.017231695353984833, + 0.01121459435671568, + 0.01741827093064785, + -0.012513968162238598, + 0.009855249896645546, + -0.0011252909898757935, + -0.015285965986549854, + 0.01154776755720377, + 0.019310692325234413, + 0.008389289490878582, + 0.020017018541693687, + 0.0034383428283035755, + 0.032837506383657455, + -0.04000738263130188, + -0.02905266359448433, + -0.01047495100647211, + 0.012960419990122318, + -0.027959857136011124, + -0.014619620516896248, + 0.018137924373149872, + 0.016152214258909225, + 0.00393143855035305, + 0.01853773184120655, + 0.01645873300731182, + -0.02045680768787861, + 0.006623474415391684, + -0.01112130656838417, + -0.01961721107363701, + -0.028786126524209976, + 0.0004993426846340299, + 0.005027576815336943, + -0.012254093773663044, + 0.0018690990982577205, + -0.012380699627101421, + -0.009761961176991463, + 0.0018557722214609385, + -0.007656309753656387, + 0.017778098583221436, + 0.0054440428502857685, + -0.039367690682411194, + 0.015126042999327183, + 0.011454478837549686, + -0.008582529611885548, + 0.0067534116096794605, + 0.0010203415295109153, + -0.00974863488227129, + 0.02117645926773548, + 0.007836222648620605, + 0.006473546382039785, + 0.00336504471488297, + -0.007196531631052494, + 0.0027436777018010616, + -0.017991328611969948, + -0.0074297524988651276, + -0.010881422087550163, + -0.0046744137071073055, + 0.012367372401058674, + -0.02336207404732704, + -0.012080843560397625, + 0.0027769948355853558, + 0.010095134377479553, + 0.019403981044888496, + 0.005327432416379452, + -0.01224743016064167, + 0.002303889486938715, + -0.04000738263130188, + 0.00023946791770868003, + 0.006976637523621321, + -0.030811816453933716, + 0.004164659418165684, + -9.198691259371117e-5, + 0.030545277521014214, + -0.002717023715376854, + 0.021656228229403496, + -0.0020939907990396023, + 0.011641056276857853, + -0.005733903031796217, + -0.0042246305383741856, + -0.034356772899627686, + 0.03787507861852646, + -0.00862917397171259, + 0.014686254784464836, + -0.018777616322040558, + 0.0006567667587660253, + 0.012827150523662567, + 0.02077665366232395, + -0.034410081803798676, + -0.004641096573323011, + -0.0006142872734926641, + 0.02016361430287361, + 0.013166987337172031, + 0.0058938260190188885, + 0.006676781922578812, + -0.009142260067164898, + 0.005187499802559614, + 0.02033686451613903, + -0.024708090350031853, + 0.02618737891316414, + -0.00404471717774868, + 0.016218850389122963, + 0.001784140127710998, + -0.007722944486886263, + 0.006876685656607151, + -0.009408798068761826, + 0.0031584776006639004, + -0.029932240024209023, + -0.012227440252900124, + 0.005417388863861561, + -0.01624550297856331, + 0.011334536597132683, + 0.0012552283005788922, + -0.0105349225923419, + -0.00029173438088037074, + -0.0026120743714272976, + -0.008076107129454613, + 0.03254431486129761, + -0.0202169232070446, + 0.01984376832842827, + 0.007749598007649183, + -0.016378771513700485, + 0.004437861032783985, + 0.023442035540938377, + -0.026653820648789406, + 0.01601894572377205, + 0.01435308251529932, + -0.0030985064804553986, + 0.004034722223877907, + 0.030358701944351196, + -0.017178386449813843, + -0.004611110780388117, + -0.0025820888113230467, + -0.023975111544132233, + -0.023455360904335976, + 0.004701067693531513, + -0.009222221560776234, + -0.011641056276857853, + -0.015925657004117966, + 0.008442597463726997, + 0.004644428379833698, + -0.030358701944351196, + -0.00916225090622902, + -0.018511077389121056, + 0.0325976237654686, + 0.0063436091877520084, + 0.0035116407088935375, + -0.007529704365879297, + -0.004387885332107544, + 0.013133670203387737, + -0.018444443121552467, + 0.007702954113483429, + 0.017111752182245255, + 0.011900930665433407, + 0.00817605946213007, + 0.010774807073175907, + 0.02404174581170082, + -0.01280716061592102, + 0.006450224667787552, + -0.01584569551050663, + 0.011900930665433407, + 0.01298041082918644, + -0.006273643113672733, + -0.028919395059347153, + 0.017404943704605103, + 0.004524486139416695, + -8.735372830415145e-5, + 0.012354045175015926, + -0.007043271791189909, + -0.00257875700481236, + 8.657285798108205e-5, + -0.011221257969737053, + -0.004821009933948517, + -0.003568280255421996, + -0.016325464472174644, + -0.010015172883868217, + 0.01607225276529789, + 0.01332024671137333, + 0.004297928418964148, + 0.022269267588853836, + -0.004821009933948517, + 0.007742934860289097, + -0.014872831292450428, + 0.022789016366004944, + 0.008562539704144001, + -0.020976556465029716, + -0.005147519055753946, + -0.010148442350327969, + -0.0002967319742310792, + -0.012553948909044266, + 0.002522117691114545, + -0.028786126524209976, + 0.03984745964407921, + 0.0021056518889963627, + 0.027400126680731773, + 0.009835259988904, + -0.014952792786061764, + -0.0028502929490059614, + -0.012927102856338024, + -0.029452471062541008, + -0.011767661198973656, + -0.007356454152613878, + 0.007156550884246826, + -0.006240325514227152, + -0.007436415646225214, + 0.029532432556152344, + 0.03504977375268936, + 0.00280198291875422, + 0.03848811611533165, + 0.007483060006052256, + -0.006706767249852419, + 0.014193159528076649, + 0.009562058374285698, + -0.013226957991719246, + -0.02534778229892254, + 0.02281567081809044, + 0.019084135070443153, + -0.006640132982283831, + -0.016978483647108078, + -0.02044348046183586, + -0.033956967294216156, + -0.026040781289339066, + 0.006553507875651121, + -0.004754375200718641, + 0.005270793102681637, + -0.011454478837549686, + -0.0018357818480581045, + -0.005950465332716703, + -0.030358701944351196, + 0.021949421614408493, + -0.0244415532797575, + 0.01190759427845478, + -0.003578275442123413, + 0.004138005431741476, + 0.031877968460321426, + -0.004974269308149815, + -0.0011711021652445197, + 0.002798651112243533, + 0.025027936324477196, + 0.011447816155850887, + 0.0038381500635296106, + -0.009508750401437283, + 0.015312619507312775, + 0.012713871896266937, + -0.0224691703915596, + -0.02292228490114212, + -0.0014068218879401684, + 0.02077665366232395, + 0.00901565421372652, + -0.016605330631136894, + -0.027053628116846085, + -0.016112234443426132, + -0.02078997902572155, + 0.024761399254202843, + -0.01382000558078289, + 0.03814161568880081, + 0.0034683283884078264, + -0.009128933772444725, + -0.0027353481855243444, + -0.03214450553059578, + -0.020416826009750366, + -0.0034683283884078264, + 0.033717080950737, + -0.022509150207042694, + 0.025374436751008034, + -0.03073185496032238, + 0.012687218375504017, + -0.0074297524988651276, + 0.02045680768787861, + 0.005024245008826256, + -0.031264930963516235, + -0.023295437917113304, + 0.009442116133868694, + 0.0006038756109774113, + -0.004134673625230789, + -0.01647206023335457, + 0.01404656283557415, + -0.01752488687634468, + 0.02117645926773548, + 0.0009695327025838196, + 0.0031251604668796062, + -0.025827551260590553, + -0.007936174981296062, + -0.027666665613651276, + 0.012680554762482643, + -0.004201308358460665, + 0.019030828028917313, + -0.0014168170746415854, + 0.0033733739983290434, + 0.010148442350327969, + -0.008162732236087322, + 0.007656309753656387, + -0.029026009142398834, + 0.0012069182703271508, + -0.016378771513700485, + 0.02326878532767296, + -0.025934167206287384, + 0.008642501197755337, + -0.016925176605582237, + -0.02326878532767296, + -0.024761399254202843, + -0.017831405624747276, + -0.005757225211709738, + -0.008809087797999382, + -0.015925657004117966, + 0.00358827062882483, + 0.006296964827924967, + 0.018457770347595215, + -0.011227921582758427, + 0.00044270328362472355, + 0.0033467202447354794, + 0.008569203317165375, + -0.019670519977808, + 0.0012394026853144169, + 0.018137924373149872, + 0.023735227063298225, + 0.016138888895511627, + -0.017724789679050446, + -0.014433044008910656, + -0.004407875705510378, + 0.012760516256093979, + -0.006320287007838488, + 0.0009462106390856206, + 0.0055739800445735455, + 0.0047477115876972675, + -0.006496868561953306, + 0.016098907217383385, + 0.01087475847452879, + 0.006256984081119299, + -0.025774244219064713, + -0.0233220923691988, + 0.0018857577815651894, + 0.018177906051278114, + -0.0062869698740541935, + -0.006483541801571846, + 0.018057962879538536, + -0.010654864832758904, + -0.008709135465323925, + -0.0071832044050097466, + -0.0051608458161354065, + 0.011874277144670486, + 0.0005601466982625425, + -0.0022955602034926414, + -0.009735307656228542, + 0.008302665315568447, + 0.010414980351924896, + -0.01087475847452879, + 0.02865285612642765, + -0.003974751103669405, + 0.013780024833977222, + 0.021363036707043648, + -0.02118978649377823, + 0.03859473019838333, + -0.028333010151982307, + -0.00235886313021183, + 0.04299261048436165, + -0.013806678354740143, + -0.014619620516896248, + -0.006483541801571846, + -0.0005276623414829373, + -0.011920920573174953, + -0.017431598156690598, + -0.010961383581161499, + -0.017551541328430176, + 0.002408839063718915, + -0.00730314664542675, + -0.04365895688533783, + -0.017005138099193573, + 0.0011677704751491547, + -0.0049776011146605015, + -0.0009686997509561479, + -0.027560049667954445, + 0.031211623921990395, + 0.0031934608705341816, + 0.0034250158350914717, + 0.0037648521829396486, + -0.02173618972301483, + 0.005797205958515406, + 0.010661528445780277, + -0.010821450501680374, + -0.012700545601546764, + -0.005667268298566341, + 0.0019840437453240156, + -0.014966120012104511, + -0.008909039199352264, + 0.0009303849074058235, + 0.011427825316786766, + -0.00414466904476285, + 0.007729607634246349, + -0.011587748304009438, + 0.0017508227610960603, + 0.0051408554427325726, + 0.018057962879538536, + 0.002532112877815962, + -0.0016408758237957954, + 0.007483060006052256, + 0.013660082593560219, + 0.01753821410238743, + -0.0017424934776499867, + -0.023508669808506966, + -0.0101084616035223, + -0.004964273888617754, + 0.002220596419647336, + -0.01820455864071846, + 0.006120383273810148, + 0.007822896353900433, + 0.07841553539037704, + -0.013113679364323616, + -0.005863840226083994, + -0.00015898587298579514, + 0.02910597063601017, + -0.018511077389121056, + 0.009035645052790642, + 0.009062298573553562, + 0.011061334982514381, + 0.004108020104467869, + 0.0034783235751092434, + -0.018844250589609146, + 0.022335901856422424, + 0.0012219110503792763, + -0.008016136474907398, + 0.004181317985057831, + 0.022282592952251434, + 0.021442998200654984, + 0.0033067394979298115, + 0.015938984230160713, + -0.009642019867897034, + -0.005417388863861561, + -0.002180615672841668, + 0.02337539941072464, + -0.0072764926590025425, + 0.021136479452252388, + -0.002019026782363653, + -0.009895230643451214, + 0.01764482818543911, + 0.023015573620796204, + 0.01612556166946888, + 0.01781807839870453, + 0.0027769948355853558, + -0.00036732296575792134, + -0.011827632784843445, + 0.007556357886642218, + 0.0033950302749872208, + 0.02005700021982193, + 0.01516602374613285, + 0.01556583121418953, + 0.002462146570906043, + 0.019857095554471016, + 0.01437973603606224, + 0.01729832962155342, + 0.0031018382869660854, + -0.04006069153547287, + 0.0015109383966773748, + -0.0020073659252375364, + -5.622290336759761e-5, + 0.0038015011232346296, + -0.02414836175739765, + -0.012327391654253006, + 0.008196049369871616, + 0.004204640164971352, + 0.010554912500083447, + -0.010155105032026768, + 0.010948056355118752, + -0.008675818331539631, + 0.010275047272443771, + 0.006870022043585777, + 0.011874277144670486, + 0.0008912371122278273, + -0.010095134377479553, + -0.005134192295372486, + 0.013453515246510506, + -0.01713840663433075, + -0.014819524250924587, + -0.03504977375268936, + 0.006446892861276865, + -0.007156550884246826, + 0.009508750401437283, + 0.015712426975369453, + 0.009648682549595833, + -0.0444052629172802, + -0.007376444526016712, + 0.008102761581540108, + 0.00977528840303421, + 0.009275529533624649, + -0.02094990201294422, + 0.010934730060398579, + 0.013013727962970734, + 0.013740044087171555, + -0.009841922670602798, + -0.011827632784843445, + -0.0004531149461399764, + 0.012587266974151134, + 0.022842323407530785, + -0.029905585572123528, + -0.0007463069632649422, + -0.025027936324477196, + 0.0008670820971019566, + 0.02068336494266987, + 0.0075230407528579235, + -0.012460661120712757, + -0.005777215585112572, + -0.010688181966543198, + -0.009741971269249916, + -0.00038710510125383735, + 0.009428788907825947, + 0.003631582949310541, + 0.015938984230160713, + 0.013453515246510506, + -0.007796242367476225, + -0.004807682707905769, + 0.007736271247267723, + -0.0035183043219149113, + 0.02309553511440754, + 0.012553948909044266, + -0.010768143460154533, + -0.01152111403644085, + 0.008895712904632092, + 0.006473546382039785, + 0.016312137246131897, + -0.0001840779441408813, + -0.004781029187142849, + 0.008549212478101254, + 0.007423088885843754, + 0.004960942082107067, + -0.018351154401898384, + -0.024708090350031853, + 0.009295519441366196, + -0.011714354157447815, + -0.005567316897213459, + -0.0010336684063076973, + 0.004937620367854834, + -0.010581566952168941, + -0.0019640533719211817, + -0.010708171874284744, + -0.021509632468223572, + -0.008395953103899956, + 0.015126042999327183, + 0.011787652038037777, + 0.00505423080176115, + 0.0034383428283035755, + 0.006043753586709499, + -0.002412170637398958, + -0.015312619507312775, + 0.01703179068863392, + 0.0342768132686615, + 0.011960901319980621, + 0.012633910402655602, + 0.009981855750083923, + -0.00536741316318512, + -0.006000441033393145, + 0.025241168215870857, + -0.003611592575907707, + -0.005220816936343908, + -0.023895150050520897, + 0.013833332806825638, + -0.019470615312457085, + 0.0032134512439370155, + -0.011561094783246517, + 0.0007388105732388794, + -0.005720576271414757, + 0.028173087164759636, + 0.004387885332107544, + -0.0019040822517126799, + 0.012667227536439896, + -0.01589900441467762, + 0.003175136400386691, + -0.011647718958556652, + 0.0190974622964859, + -0.023468688130378723, + -0.016671964898705482, + 0.022709054872393608, + 0.010261720977723598, + 0.0053907353430986404, + 0.02033686451613903, + 0.006916666403412819, + 0.003788174130022526, + 0.0018424453446641564, + 0.02899935655295849, + 0.010834777727723122, + -0.02063005603849888, + -0.0014884492848068476, + -0.0070366086438298225, + 0.010688181966543198, + 0.01477954350411892, + -0.018577713519334793, + -0.002643725834786892, + -0.0038981211837381124, + -0.007136560510843992, + 0.010061817243695259, + -0.005020913202315569, + 0.008475914597511292, + -0.011807641945779324, + 0.014459697529673576, + -0.005290783476084471, + 0.015272638760507107, + 0.010454961098730564, + -0.025547686964273453, + 0.03347719833254814, + -0.00904897227883339, + 0.008022800087928772, + 0.009442116133868694, + -0.008302665315568447, + 0.004111351910978556, + 0.008935692720115185, + -0.012054190039634705, + -0.0006222001393325627, + -0.007476396393030882, + 0.002375521697103977, + -0.010048490017652512, + 0.0017508227610960603, + -0.00359493400901556, + -0.013500159606337547, + -0.006683445535600185, + -0.003598265815526247, + -0.010714835487306118, + -0.0023105530999600887, + -0.03670230880379677, + -0.020270230248570442, + 0.028466280549764633, + -0.00123607087880373, + -0.03153146803379059, + 0.016378771513700485, + 0.00831599161028862, + 0.012973747216165066, + 0.01747157983481884, + 0.00921555794775486, + -0.01401990931481123, + 0.0025337787810713053, + 0.002693701768293977, + -0.0014776211464777589, + -0.01042164396494627, + -0.004034722223877907, + -0.002950244816020131, + -0.0026753772981464863, + 0.011594411917030811, + -0.007023281417787075, + 0.019337346777319908, + -0.007323137018829584, + -0.007343127392232418, + 0.012187459506094456, + -0.006793392356485128, + 0.024175014346837997, + 0.011754334904253483, + -0.009815269149839878, + -0.0043545677326619625, + 0.007796242367476225, + 0.015192677266895771, + 0.008695809170603752, + 0.01595231145620346, + -0.008562539704144001, + 0.005530667491257191, + -0.009568721055984497, + 0.0018990846583619714, + -0.014966120012104511, + -0.011041345074772835, + -2.2476146114058793e-5, + -0.020763326436281204, + -0.006949983537197113, + 0.0009478764841333032, + 0.017444925382733345, + 0.008942356333136559, + 0.026893705129623413, + 0.009108942933380604, + -0.015552503988146782, + -0.001870765001513064, + 0.006756743416190147, + 0.0009637021576054394, + 0.01647206023335457, + 0.016392098739743233, + 0.0011844291584566236, + -0.022335901856422424, + -0.0056106289848685265, + -0.005570648238062859, + 0.014872831292450428, + -0.006203676573932171, + 0.02725353091955185, + 0.009875240735709667, + 0.01673859916627407, + 0.0012369038304314017, + -0.002532112877815962, + -0.01536592748016119, + 0.0006105390493758023, + 0.011940911412239075, + -0.008695809170603752, + -0.015459215268492699, + -0.002956908196210861, + -0.015072735026478767, + 0.0025254494976252317, + 0.014659601263701916, + -0.007136560510843992, + 0.015992291271686554, + -0.005797205958515406, + -0.0008995664538815618, + -0.0017924694111570716, + 0.007069925777614117, + 0.009122270159423351, + 0.007902857847511768, + 0.006097061559557915, + 0.007116570137441158, + -0.011307883076369762, + -0.0007725442992523313, + 0.01595231145620346, + 0.006783397402614355, + -0.010394989512860775, + 0.02432161010801792, + 0.008682481944561005, + -0.018017983064055443, + -0.015712426975369453, + 0.004860990215092897, + -0.01999036595225334, + 0.0035649484489113092, + 0.004724389407783747, + -0.014566312544047832, + -0.004141337238252163, + 0.001328526297584176, + -0.006157032214105129, + -0.0123607087880373, + -0.00025758417905308306, + 0.01000184565782547, + 0.0027753289323300123, + -0.008082770742475986, + -0.00292025925591588, + 0.017218368127942085, + 0.023415381088852882, + -0.016885194927453995, + 0.0038614722434431314, + -0.017351636663079262, + -0.0034949821420013905, + -0.020096980035305023, + 0.020350191742181778, + -0.015299292281270027, + 0.02489466778934002, + 0.011980892159044743, + 0.0026887040585279465, + -0.007496386766433716, + -0.023735227063298225, + 0.007336463779211044, + -0.011147960089147091, + 0.011541103944182396, + -0.0014759552432224154, + 0.005094211548566818, + 0.022629093378782272, + -0.00842927023768425, + 0.009008991532027721, + -0.0029752326663583517, + 0.013246948830783367, + -0.02078997902572155, + 0.01188094075769186, + -0.0024871346540749073, + -0.02393512986600399, + 0.004671081900596619, + 0.0025620984379202127, + 0.0010936395265161991, + -0.005257465876638889, + -0.009408798068761826, + 0.02337539941072464, + 0.008029463700950146, + -0.014059890061616898, + 0.0160056184977293, + 0.009675337001681328, + 0.011401171796023846, + -0.00814940594136715, + -0.015819042921066284, + 0.01753821410238743, + 0.003938101697713137, + 0.004444524645805359, + -0.014859504997730255, + 0.007376444526016712, + -0.03123827651143074, + -0.0038947893772274256, + 0.004324582405388355, + -0.003166806884109974, + 0.012913775630295277, + 0.009488759562373161, + -0.008415943942964077, + 0.012667227536439896, + -0.01457963977009058, + -0.025654301047325134, + -0.017285002395510674, + -0.005520672537386417, + -0.013127006590366364, + 0.0078628771007061, + -0.004537812899798155, + -0.016325464472174644, + -0.00916225090622902, + -0.019377326592803, + 0.01860436610877514, + -0.0014434709446504712, + -0.0019790460355579853, + -0.01216080505400896, + 0.025867532938718796, + 0.012753852643072605, + 0.02510789781808853, + 0.009668673388659954, + -0.001652536797337234, + -0.0059304749593138695, + -0.006593488622456789, + -0.00023155506642069668, + -0.008129415102303028, + 0.005237475503236055, + 0.010801460593938828, + -0.025027936324477196, + -0.008655828423798084, + 0.03939434513449669, + 0.006720094475895166, + -0.018444443121552467, + -0.002971900859847665, + 0.0012843809090554714, + 0.020136961713433266, + 0.03219781443476677, + 0.023002246394753456, + 0.001662531984038651, + 0.0011877608485519886, + 0.018724309280514717, + 0.004734384827315807, + 0.013193640857934952, + -0.02145632542669773, + 0.010834777727723122, + -0.009815269149839878, + 0.009108942933380604, + -0.000836263585370034, + -0.012240766547620296, + 0.025241168215870857, + -0.006030426826328039, + 0.019963711500167847, + 0.018017983064055443, + 0.012700545601546764, + 0.0009328837040811777, + -0.013266938738524914, + -0.006470215041190386, + 0.006683445535600185, + 0.008709135465323925, + 0.010774807073175907, + 0.005120865069329739, + -0.02950577810406685, + 0.019363999366760254, + 0.0008175226394087076, + -0.029958894476294518, + -0.0130603713914752, + -0.003674895502626896, + -0.018617693334817886, + -0.0004087613197043538, + 0.0009620363125577569, + -0.004920961335301399, + 0.02742678113281727, + 0.0029469130095094442, + -0.0168585404753685, + 0.007116570137441158, + 0.004514490719884634, + -0.004401212092489004, + 0.007016618270426989, + 0.0026254013646394014, + 0.012627247720956802, + 0.022615766152739525, + -0.011227921582758427, + 0.004940951708704233, + -0.007849549874663353, + 0.02613407000899315, + 0.014006582088768482, + -0.030145470052957535, + 0.003658236702904105, + -0.024308284744620323, + 0.0047677019611001015, + 0.011041345074772835, + -0.003090177197009325, + -0.008882385678589344, + -0.0013127006823197007, + 0.0018990846583619714, + -0.008102761581540108, + 0.0072565022855997086, + -0.009182240813970566, + -0.010814787819981575, + 0.011501123197376728, + 0.01663198322057724, + -0.010488278232514858, + 0.011867613531649113, + -0.012460661120712757, + -0.001483451691456139, + 0.00020552593923639506, + -0.005010918248444796, + 0.04040719196200371, + 0.00842927023768425, + 0.001136951963417232, + 0.022789016366004944, + 0.006936656776815653, + -0.02870616503059864, + -0.020483460277318954, + -0.008955683559179306, + 0.0021672886796295643, + 0.004534481093287468, + -0.004684408660978079, + 0.013400208204984665, + -0.007682963740080595, + 0.0030585259664803743, + 0.021922767162322998, + 0.01983044296503067, + 0.010821450501680374, + -0.025361109524965286, + 0.009308846667408943, + -0.0014326428063213825, + 0.007356454152613878, + -0.005004254635423422, + 0.0042812698520720005, + 0.0013826668728142977, + 0.010508268140256405, + -0.023975111544132233, + 0.0010153439361602068, + -0.0009345495491288602, + -0.009222221560776234, + 0.024694764986634254, + -0.0026753772981464863, + -0.0029918912332504988, + -0.024761399254202843, + 0.001655868603847921, + 0.018977519124746323, + -0.009135596454143524, + 0.008182723075151443, + -0.011860949918627739, + -0.0017341641942039132, + 0.03129158541560173, + -0.0050508989952504635, + -0.007243175525218248, + 0.0053707449696958065, + 0.023055555298924446, + 0.023948457092046738, + -0.02224261313676834, + -0.003988077864050865, + 0.005027576815336943, + 0.014592966064810753, + 0.019643865525722504, + 0.0004547807911876589, + 0.01943063549697399, + 0.006017100065946579, + 0.022389208897948265, + 0.004874317441135645, + 0.005567316897213459, + -0.009588711895048618, + -0.01680523343384266, + 0.005847181659191847, + 0.015086062252521515, + -0.004681077320128679, + 0.0021989401429891586, + -0.008102761581540108, + -0.015699099749326706, + 0.02354864962399006, + 0.017444925382733345, + -0.016991810873150826, + 0.0029235908295959234, + -0.007709617260843515, + -0.02798651158809662, + 0.0035649484489113092, + -0.02657385915517807, + -0.003964755684137344, + 0.0044945003464818, + 0.006137042306363583, + 0.0018324501579627395, + -0.0222026314586401, + 0.006140373647212982, + 0.02955908700823784, + 0.0010528259444981813, + 0.01424646656960249, + -0.02437491901218891, + 0.007369781378656626, + -0.01640542596578598, + -0.013340236619114876, + -0.006536849308758974, + -0.01303371787071228, + -0.010454961098730564, + -0.01000184565782547, + 0.02426830306649208, + -0.00974863488227129, + 0.008482578210532665, + 0.028812779113650322, + 0.025974147021770477, + 0.0019057481549680233, + 0.012820487841963768, + 0.0006130378460511565, + -0.011741007678210735, + -0.004664418287575245, + 0.020416826009750366, + 0.005720576271414757, + -0.006726757623255253, + -0.004104688297957182, + -0.02051011472940445, + 0.01233405526727438, + -0.006576830055564642, + -0.012240766547620296, + -0.013753371313214302, + -0.02517453394830227, + 0.0051408554427325726, + 0.006863358896225691, + 0.014499678276479244, + -0.007682963740080595, + -0.004421202465891838, + 0.01651204191148281, + -0.004241289105266333, + 0.016818560659885406, + -0.0168452151119709, + -0.00516750942915678, + 0.011474469676613808, + -0.010381663218140602, + 0.0015242653898894787, + -0.005454037804156542, + 0.012773843482136726, + 0.003748193383216858, + -0.008302665315568447, + 0.018617693334817886, + 0.02510789781808853, + -0.0010811456013470888, + 0.015539176762104034, + -0.00403139041736722, + 0.012500641867518425, + 0.011920920573174953, + -0.01972382701933384, + -0.004884312395006418, + -0.0005872169858776033, + -0.006836704909801483, + 0.01911078952252865, + 0.01871098205447197, + 0.0024987957440316677, + 0.0016991810407489538, + -0.028066473081707954, + 0.02089659497141838, + 0.0303320474922657, + 0.037395309656858444, + -0.0013435190776363015, + -0.0012852138606831431, + -0.02146965265274048, + 0.013087025843560696, + 0.012440670281648636, + -0.011501123197376728, + -0.009275529533624649, + -0.019190751016139984, + 0.006170359440147877, + 0.00026549704489298165, + 0.0010678187245503068, + -0.005460701417177916, + -0.009008991532027721, + -0.011507786810398102, + -0.01696515642106533, + -0.0013868316309526563, + 0.005007586441934109, + 0.0014301440678536892, + -0.0025354446843266487, + 0.011614401824772358, + -0.02376188151538372, + 0.027773279696702957, + -0.02977231703698635, + -0.0021423008292913437, + 0.004014731850475073, + 0.003574943635612726, + -0.004427866078913212, + 0.010041826404631138, + 0.024254975840449333, + 0.010488278232514858, + -0.0014034901978448033, + -0.02168288268148899, + 0.0006621808279305696, + -0.01030836533755064, + 0.005760557018220425, + 0.009468769654631615, + -0.020030345767736435, + 0.0188309233635664, + -0.011141296476125717, + 0.019070807844400406, + -0.00974863488227129, + -0.0049576107412576675, + -0.035822734236717224, + -0.00436789495870471, + -0.008162732236087322, + 0.005833854898810387, + -0.015925657004117966, + 0.01725834794342518, + 0.03153146803379059, + 0.003390032798051834, + -0.032624274492263794, + 0.0002369691210333258, + 0.017404943704605103, + 0.0012394026853144169, + 0.0028336341492831707, + 0.011221257969737053, + -0.009941875003278255, + -0.014473024755716324, + -0.004547807853668928, + 0.029932240024209023, + -0.050882142037153244, + -0.02045680768787861, + 0.0004272940568625927, + 0.0005822193925268948, + -0.02078997902572155, + -1.617709858692251e-5, + -0.01044829748570919, + -0.0066268062219023705, + -0.024348264560103416, + -0.02545439824461937, + 0.004681077320128679, + -0.025467725470662117, + -0.00016315052926074713, + -0.012280747294425964, + -0.027400126680731773, + 0.03302408382296562, + 0.022335901856422424, + -0.007069925777614117, + -0.018017983064055443, + -0.004854327067732811, + -0.006217003334313631, + -0.016991810873150826, + -0.0034183524549007416, + 0.0011860949452966452, + -0.00405804393813014, + 0.025187859311699867, + -0.004691072273999453, + 0.017964674159884453, + -0.016112234443426132, + 0.012620584107935429, + 0.0021256422623991966, + 0.01359344832599163, + -0.0018624357180669904, + -0.017151733860373497, + -0.0008237696019932628, + -0.024401571601629257, + -0.011827632784843445, + 0.025720937177538872, + -0.01589900441467762, + 0.004727721214294434, + 0.010041826404631138, + -0.027453435584902763, + 0.00616702763363719, + -0.01859103888273239, + -0.006376926321536303, + -0.009895230643451214, + -0.016338791698217392, + -0.00047768643707968295, + 0.020350191742181778, + 0.01033501885831356, + 0.0009761961409822106, + 0.01568577252328396, + -0.019563904032111168, + 0.02252247743308544, + -0.010488278232514858, + 0.0033783717080950737, + -0.012067517265677452, + -0.007476396393030882, + -0.004811014514416456, + 0.01656534895300865, + 0.006246989127248526, + -0.01731165684759617, + -0.014033236540853977, + -0.023135514929890633, + 0.00811608787626028, + 0.0072031947784125805, + -0.01242068037390709, + -0.015819042921066284, + 0.013393544591963291, + -0.0247214175760746, + 0.016991810873150826, + -0.00806278083473444, + -0.014179832302033901, + 0.003343388671055436, + 0.007762925233691931, + -0.004451187793165445, + 0.013313583098351955, + 0.014126524329185486, + -0.002002368215471506, + -0.009095615707337856, + 0.0365157350897789, + 0.0033867009915411472, + 0.022109344601631165, + -0.004054712597280741, + 0.01841779053211212, + 0.0043545677326619625, + -0.008575866930186749, + 0.014712908305227757, + -0.010921402834355831, + -0.00036753120366483927, + 0.0038348182570189238, + 0.0013010395923629403, + -0.018910884857177734, + 0.021043190732598305, + -0.02253580465912819, + -0.011367854662239552, + -0.007962828502058983, + -0.0018241207581013441, + 0.020030345767736435, + -0.008156068623065948, + 0.0034016938880085945, + -0.0018807601882144809, + 0.016272157430648804, + -0.029425816610455513, + 0.0266938004642725, + -0.03355715796351433, + 0.006620142608880997, + 0.02388182282447815, + 0.009608701802790165, + 0.019377326592803, + 0.005364081356674433, + -0.011287893168628216, + -0.0042612794786691666, + -0.024681437760591507, + -0.010721499100327492, + 0.018724309280514717, + 0.01927071250975132, + 0.005334095563739538, + 0.0008283507777377963, + -0.014899485744535923, + -0.00031547294929623604, + 0.01121459435671568, + -0.013426861725747585, + -0.007323137018829584, + -0.013899967074394226, + 0.0007675467059016228, + 0.017671482637524605, + -0.00129520904738456, + 0.004141337238252163, + 0.007676300127059221, + -0.011354527436196804, + -0.0050675575621426105, + 0.027040300890803337, + 0.001972382655367255, + 0.022828996181488037, + 0.018897557631134987, + -0.004204640164971352, + 0.00608040252700448, + -0.029825624078512192, + -0.00304020126350224, + 0.004671081900596619, + -0.006610147189348936, + 0.004324582405388355, + -0.00022447513765655458, + 0.01848442479968071, + -0.013780024833977222, + -0.008502569049596786, + 0.0030202108900994062, + -0.0150327542796731, + -0.0035049773287028074, + 0.00046227718121372163, + 8.808254642644897e-5, + 0.008955683559179306, + -0.007816232740879059, + -0.010654864832758904, + 0.00017876800848171115, + -0.013453515246510506, + -0.020150287076830864, + -0.020989883691072464, + -0.030865123495459557, + -0.006923329550772905, + 0.02370857261121273, + -0.028626203536987305, + -0.01753821410238743, + -0.006843368522822857, + -0.015152696520090103, + -0.003721539629623294, + -0.02063005603849888, + 0.017391618341207504, + -0.014193159528076649, + 0.014073217287659645, + -0.0037848425563424826, + -0.007443079259246588, + 0.009835259988904, + 0.01258060336112976, + -0.0094154616817832, + 0.00728981988504529, + -0.02550770528614521, + 0.002263908740133047, + 0.0021956083364784718, + -0.015579157508909702, + -0.008549212478101254, + 0.03904784470796585, + 0.014139851555228233, + 0.0021822815760970116, + -0.00370154925622046, + -0.005387403536587954, + 0.01224743016064167, + 0.011061334982514381, + -0.003538294695317745, + 0.00878909695893526, + -0.014273121021687984, + -0.00584051851183176, + -0.023135514929890633, + 0.009588711895048618, + 0.014526331797242165, + -0.0039414335042238235, + 0.013506823219358921, + 0.0007812901167199016, + 0.0022755698300898075, + 0.005637282971292734, + -0.002322214189916849, + 0.006613478995859623, + -0.0029952230397611856, + -0.001116961590014398, + -0.022042708471417427, + 0.0021373031195253134, + 0.004751043394207954, + -0.018777616322040558, + 0.016991810873150826, + 0.02330876514315605, + 0.0019324019085615873, + 0.006910002790391445, + 0.030092163011431694, + -0.012407353147864342, + 0.012773843482136726, + -0.014819524250924587, + -0.00448117358610034, + -0.0018241207581013441, + 0.005250802729278803, + -0.013160323724150658, + -0.010408316738903522, + -0.00820271298289299, + -0.007709617260843515, + -0.011181277222931385, + -0.004940951708704233, + -0.00403139041736722, + -0.04285934194922447, + 0.007603002246469259, + 0.0023521995171904564, + 0.0072964830324053764, + -0.019363999366760254, + -0.009788615629076958, + -0.003668231889605522, + -0.012374036014080048, + -0.0029169274494051933, + -0.009108942933380604, + 0.016778578981757164, + 0.001106966519728303, + -0.01559248473495245, + -0.007736271247267723, + 0.008809087797999382, + 0.008702471852302551, + -0.002062339335680008, + -0.015605811960995197, + -0.02276236191391945, + 0.010148442350327969, + -0.017884712666273117, + 0.011614401824772358, + 0.008929030038416386, + -0.023348746821284294, + 0.00134185329079628, + -0.01652536913752556, + -0.019803788512945175, + 0.01216080505400896, + -0.005007586441934109, + -0.0261207427829504, + -0.01888423226773739, + -0.012540622614324093, + 0.011787652038037777, + 0.0038681356236338615, + 0.04629768431186676, + 0.0038614722434431314, + 0.009495423175394535, + -0.012014209292829037, + -0.008975673466920853, + 0.014912812039256096, + -0.013780024833977222, + 0.0058371867053210735, + -0.0008612515521235764, + 0.023521997034549713, + -0.014752889052033424, + -0.00751637713983655, + 0.014886158518493176, + 0.014992773532867432, + 0.015126042999327183, + -0.010794796980917454, + -0.008382626809179783, + -0.01932401955127716, + -0.0011586082400754094, + -0.003298410214483738, + -0.010434970259666443, + -0.015432561747729778, + -0.0021789497695863247, + -0.02178949862718582, + -0.008475914597511292, + -0.014139851555228233, + -0.002505459124222398, + -0.01589900441467762, + -0.02915927954018116, + -0.014726235531270504, + 0.012240766547620296, + 0.009835259988904, + 0.00017637333075981587, + 0.012553948909044266, + 0.0075230407528579235, + 0.01864434778690338, + 0.009741971269249916, + 0.004900970961898565, + -0.008509231731295586, + -0.0006359434919431806, + -0.003984746057540178, + -0.03062523901462555, + 0.030252085998654366, + -0.0038781308103352785, + 0.006720094475895166, + 0.019284039735794067, + 0.011334536597132683, + -0.00042375409975647926, + 0.015512523241341114, + 0.015046081505715847, + -0.016871867701411247, + -0.002931920113041997, + -0.0075963386334478855, + -0.005037571769207716, + 0.0033933643717318773, + -0.01843111589550972, + 0.014619620516896248, + 0.013413534499704838, + -0.006916666403412819, + 0.003988077864050865, + -0.002996888943016529, + 0.016898522153496742, + -0.009608701802790165, + -0.00026549704489298165, + 0.0032084535341709852, + -0.006350272800773382, + -0.018697654828429222, + 0.001907413941808045, + -0.011960901319980621, + 0.042166344821453094, + 0.0325709693133831, + 0.013140332885086536, + -0.04629768431186676, + -0.001705011585727334, + -0.010394989512860775, + 0.010868094861507416, + -0.006220335140824318, + 0.024534841999411583, + -0.016032272949814796, + 0.01815125159919262, + -0.0123607087880373, + 0.006386921741068363, + -0.010428306646645069, + 0.0002590418152976781, + 0.0029918912332504988, + 0.0007662973366677761, + 0.018804270774126053, + -0.00257709133438766, + 0.01860436610877514, + -0.04360564798116684, + 0.00842927023768425, + 0.011481133289635181, + -0.005650609731674194, + -0.021096497774124146, + -0.011927584186196327, + -0.0112345851957798, + -0.004837668500840664, + 0.03560950234532356, + -0.012147478759288788, + 0.019350674003362656, + 0.005450705997645855, + 0.007283156272023916, + -0.02094990201294422, + 0.004054712597280741, + 0.005274124443531036, + -0.0094154616817832, + -0.00415799580514431, + 0.011174613609910011, + -0.012240766547620296, + 0.002378853503614664, + -0.019190751016139984, + -0.03608927130699158, + 0.027013646438717842, + -0.0027036969549953938, + 0.02538776397705078, + 0.007929511368274689, + -0.005653941538184881, + 0.005653941538184881, + -0.004474509973078966, + 0.012600593268871307, + -0.011987555772066116, + 0.0052174851298332214, + -0.004434529226273298, + -0.005000922828912735, + -0.0021073175594210625, + 0.0014892822364345193, + -0.016898522153496742, + 0.006207008380442858, + -0.021482979878783226, + 0.007969492115080357, + -0.005120865069329739, + 0.013246948830783367, + 0.003175136400386691, + 0.005274124443531036, + -0.01384665910154581, + -0.009282193146646023, + 0.01836448162794113, + 0.015379253774881363, + -0.006430234294384718, + 0.022096017375588417, + 0.012314064428210258, + -0.01893753930926323, + -0.00010120122169610113, + 0.004897639621049166, + -0.014366408810019493, + -0.0025620984379202127, + 0.007083252537995577, + -0.004667750094085932, + -0.013087025843560696, + -0.0150327542796731, + -0.01804463565349579, + 0.0004647759778890759, + -0.009875240735709667, + 0.012234103865921497, + 0.012100834399461746, + -0.012627247720956802, + 0.017791425809264183, + 0.013713390566408634, + 0.022295920178294182, + -0.00890237558633089, + -0.007309810258448124, + 0.01939065381884575, + -0.00021510465012397617, + 0.00842260755598545, + -0.004431197419762611, + 0.00325176608748734, + 0.0032900809310376644, + 0.009022317826747894, + -0.01424646656960249, + 0.0020756663288921118, + -0.00392144313082099, + -0.0023555313237011433, + 0.0005547326290979981, + 0.0031068359967321157, + 0.010328355245292187, + 0.000525580020621419, + 0.0006900840671733022, + 0.015112715773284435, + 0.006310292053967714, + -0.014992773532867432, + -0.025827551260590553, + -0.007283156272023916, + 0.0006413575611077249, + 0.008929030038416386, + -0.023468688130378723, + 0.001232739188708365, + -0.003103504190221429, + -0.022602438926696777, + 0.028466280549764633, + -0.006713430862873793, + 0.004247952718287706, + 0.017671482637524605, + 0.020083652809262276, + -0.005070889368653297, + 0.027373474091291428, + 0.006963310297578573, + 0.01988375000655651, + -0.003016879316419363, + 0.010061817243695259, + 0.0034716599620878696, + 0.024241648614406586, + 0.038514770567417145, + 0.007736271247267723, + -0.00954873114824295, + 0.0025987473782151937, + -0.006260315887629986, + -0.0015792388003319502, + 0.0013060371857136488, + 0.00853588618338108, + 0.006083734333515167, + -0.0025554350577294827, + -0.012587266974151134, + -0.015099389478564262, + 0.007283156272023916, + -0.02522784098982811, + 0.006570166442543268, + -0.0049776011146605015, + -0.00481767812743783, + -0.020536769181489944, + 0.022615766152739525, + 0.01628548465669155, + 0.0003981414483860135, + -0.0027736632619053125, + 0.0005643113399855793, + 0.021616248413920403, + 0.01780475117266178, + -0.011980892159044743, + 0.002522117691114545, + 0.02017694152891636, + 0.007329800631850958, + 0.0031618094071745872, + -0.00043603984522633255, + -0.0019473946886137128, + -0.0031068359967321157, + 0.0050142500549554825, + 4.6045515773585066e-5, + -0.003568280255421996, + 0.006910002790391445, + 0.03899453952908516, + -0.02971900999546051, + -0.011114642955362797, + -0.017511559650301933, + -0.006270311307162046, + -0.021256420761346817, + 0.01837780885398388, + -0.005150850862264633, + -0.0036382463295012712, + -0.002868617419153452, + 0.012733862735331059, + -0.004321250598877668, + -0.0021356374491006136, + -0.01480619702488184, + -0.017125079408288002, + 0.01607225276529789, + -0.0028819444123655558, + 0.0059304749593138695, + -0.008042789995670319, + 0.02657385915517807, + -0.005797205958515406, + 0.0013543472159653902, + -0.037501923739910126, + 0.009002327919006348, + 0.020536769181489944, + -0.02236255444586277, + -0.004197976551949978, + -0.0037615203764289618, + 0.046271029859781265, + -0.01656534895300865, + -0.006320287007838488, + -0.0037948377430438995, + 0.007576348260045052, + -0.005933806765824556, + 0.001291877357289195, + -0.008689145557582378, + 0.0076696365140378475, + 0.03366377577185631, + -0.006656791549175978, + 0.00651685893535614, + 0.03137154504656792, + 0.01567244529724121, + 0.021109825000166893, + 0.02438824623823166, + 0.0021506301127374172, + 0.006520190741866827, + 0.02157626673579216, + -0.0011644387850537896, + 0.006996627897024155, + -0.010021836496889591, + -0.0030718527268618345, + 0.00921555794775486, + -0.008382626809179783, + 0.017964674159884453, + -0.013966601341962814, + -0.001817457377910614, + -0.0051608458161354065, + 0.02668047323822975, + 0.0070366086438298225, + 0.02257578633725643, + 0.0030085500329732895, + -0.005620624404400587, + -0.02096322923898697, + 0.00570391770452261, + 0.004014731850475073, + 0.0068833488039672375, + -0.021083172410726547, + -0.02117645926773548, + 0.0027736632619053125, + 0.011900930665433407, + -0.003390032798051834, + -0.016778578981757164, + 0.007556357886642218, + -0.02141634374856949, + 0.021256420761346817, + 0.004541144706308842, + 0.015925657004117966, + -0.00146096246317029, + -0.0043545677326619625, + 0.015712426975369453, + 0.007116570137441158, + -0.012027536518871784, + -0.01888423226773739, + 0.0010569905862212181, + 0.009941875003278255, + 0.007096579764038324, + 0.010694845579564571, + -0.00011223756882827729, + 0.017724789679050446, + -0.012034200131893158, + 0.017884712666273117, + -0.007029945030808449, + -0.01168103702366352, + 0.006983300670981407, + 0.013420198112726212, + 0.003631582949310541, + 0.010868094861507416, + -0.01663198322057724, + 0.0034883187618106604, + 0.016498714685440063, + -0.00784288626164198, + 0.006430234294384718, + 0.015832368284463882, + 0.0009562057675793767, + -0.006127046886831522, + 0.0062869698740541935, + 0.006896676030009985, + 0.0072565022855997086, + 0.03409023582935333, + 0.0007837889133952558, + 0.03230442851781845, + -0.008889049291610718, + -0.008895712904632092, + -0.011840960010886192, + -0.008655828423798084, + 0.006949983537197113, + 6.606191163882613e-5, + -0.018551059067249298, + 0.012054190039634705, + 0.0003606594982556999, + 0.027773279696702957, + 0.014166505075991154, + 0.005810532718896866, + 0.0023871827870607376, + 0.0027286848053336143, + -0.02248249761760235, + 0.006520190741866827, + 0.013913294300436974, + 0.00560729717835784, + 0.017098424956202507, + -0.01424646656960249, + -0.01356679480522871, + 0.0016517039621248841, + -0.015938984230160713, + 0.02814643457531929, + -0.007762925233691931, + -0.011654382571578026, + 0.028359664604067802, + -0.01030836533755064, + 0.0012902114540338516, + -0.027120262384414673, + 0.011674373410642147, + 0.009622029028832912, + -0.005687258671969175, + 0.012993737123906612, + 0.013180313631892204, + 0.019070807844400406, + 0.006027095019817352, + -0.033450543880462646, + 0.006830041296780109, + 0.021203113719820976, + 0.00560396583750844, + -0.011501123197376728, + 0.01579238846898079, + -0.013180313631892204, + 0.013926620595157146, + 0.011967564933001995, + 0.004124678671360016, + -0.01078813336789608, + 0.02061673067510128, + -0.014699582010507584, + 0.014059890061616898, + -0.0008516728412359953, + 0.02196274697780609, + 0.01435308251529932, + -0.006863358896225691, + -0.0013643424026668072, + 0.007143223658204079, + -0.008022800087928772, + -0.008822414092719555, + 0.004864322021603584, + 0.01904415525496006, + -0.0023372068535536528, + 0.004880980588495731, + -0.020017018541693687, + 0.01244733389467001, + 0.012753852643072605, + 0.009228885173797607, + -0.006796724162995815, + -0.010628210380673409, + -0.014552985318005085, + -0.02112315222620964, + -0.006207008380442858, + -0.017271675169467926, + -0.011014691554009914, + 0.013313583098351955, + -0.015805715695023537, + -0.0038781308103352785, + -0.004071371164172888, + -0.002553769154474139, + 0.0023555313237011433, + 0.0046377647668123245, + 0.0019174091285094619, + -0.0013601777609437704, + 0.017911367118358612, + -0.008296001702547073, + 0.008869058452546597, + 0.008695809170603752, + -0.03971419110894203, + 0.0016067256219685078, + -0.008562539704144001, + 0.01983044296503067, + 0.0007846218068152666, + 0.0025404421612620354, + -0.016032272949814796, + -0.003971419297158718, + 0.005094211548566818, + 0.013240285217761993, + 0.00907562579959631, + -0.033450543880462646, + -0.003721539629623294, + 0.0020773319993168116, + -0.01216080505400896, + -0.030865123495459557, + -0.011334536597132683, + -0.003073518630117178, + -0.015525850467383862, + 0.0046744137071073055, + 0.012680554762482643, + 0.01556583121418953, + -0.012240766547620296, + 0.0188309233635664, + 0.02208269014954567, + 0.01888423226773739, + -0.01216080505400896, + -0.004880980588495731, + 0.014872831292450428, + 0.026373954489827156, + -0.009182240813970566, + 0.020256903022527695, + 0.04898972064256668, + 0.0006663455278612673, + 0.014939466491341591, + -0.0023838509805500507, + -0.0045844572596251965, + 0.015046081505715847, + -0.016711944714188576, + -0.019337346777319908, + 0.0030885112937539816, + -0.011840960010886192, + -0.006470215041190386, + 0.013393544591963291, + 0.00977528840303421, + -0.01030836533755064, + 0.0049576107412576675, + -0.015152696520090103, + 0.022709054872393608, + 0.006220335140824318, + 0.013886639848351479, + 0.018057962879538536, + 0.0008712467388249934, + 0.019257385283708572, + 0.004181317985057831, + -0.008189385756850243, + -0.0051775043830275536, + -0.0031268263701349497, + 0.004451187793165445, + 0.013280265964567661, + -0.011527777649462223, + -0.02803981862962246, + 0.0072031947784125805, + -0.006313623860478401, + -0.009268865920603275, + -0.0034316794481128454, + 0.028013164177536964, + -0.008442597463726997, + 0.007476396393030882, + -0.006696772295981646, + -0.0010086805559694767, + -0.014486351050436497, + 8.933194476412609e-5, + -0.014699582010507584, + -0.0160056184977293, + -0.006650127936154604, + -0.00820271298289299, + 0.006713430862873793, + 0.0023322091437876225, + -0.034916505217552185, + 0.003323398297652602, + 0.001784140127710998, + 0.010301701724529266, + -0.00021406348969321698, + 0.002485468750819564, + 0.01573908142745495, + 0.00550401397049427, + 0.006030426826328039, + 0.0041879815980792046, + -0.008455924689769745, + 0.016778578981757164, + 0.0042079719714820385, + 0.03398362174630165, + -0.012767179869115353, + -0.0047110626474022865, + 0.03619588911533356, + 0.004984264262020588, + 0.01516602374613285, + 0.019683845341205597, + -0.003186797257512808, + 0.008942356333136559, + 0.008689145557582378, + -0.0075430311262607574, + -0.021376363933086395, + -0.0027836584486067295, + 0.017125079408288002, + -0.016498714685440063, + -0.005450705997645855, + -0.023228803649544716, + -0.002941915299743414, + 0.0008504234720021486, + 0.022042708471417427, + -0.02955908700823784, + 0.026280665770173073 + ], + "c485d342-3f7f-42fc-acf5-2b16c6305c76": [ + -0.04067770764231682, + -0.022780664265155792, + -0.011878694407641888, + 0.04326315224170685, + 0.002039630664512515, + -0.016475046053528786, + 0.012280874885618687, + 0.03412790596485138, + -0.011950512416660786, + 0.04171188548207283, + 0.01996539905667305, + -0.02105703204870224, + 0.00890543032437563, + 0.0015961546450853348, + 0.0014058370143175125, + 0.044498421251773834, + -0.03197336569428444, + 0.011821240186691284, + 0.03674208000302315, + -0.045877326279878616, + 0.035391900688409805, + -0.017954496666789055, + -0.022608300670981407, + -0.006043483503162861, + 0.006768845021724701, + 0.011505240574479103, + -0.009487155824899673, + 0.0051385764963924885, + -0.01778213307261467, + -0.0017622337909415364, + 0.013164236210286617, + -0.0077276150695979595, + -0.019046129658818245, + 0.0271471980959177, + 0.05303039774298668, + -0.013401235453784466, + 0.024547386914491653, + 0.025911929085850716, + -0.0312839150428772, + -0.020755397155880928, + -0.02944537252187729, + 0.04251624643802643, + 0.027836650609970093, + -0.012575329281389713, + -0.001615904620848596, + 0.015009958297014236, + -0.03777625784277916, + -0.003423922462388873, + -0.005580257158726454, + -0.0005745438975282013, + -0.003366468008607626, + -0.02392975240945816, + -0.0005749927368015051, + 0.023743025958538055, + 0.02324029989540577, + -0.06647472828626633, + 0.026342837139964104, + 0.04248752072453499, + 0.004560442175716162, + -0.03381190821528435, + 0.020511215552687645, + -0.019864853471517563, + -0.014212778769433498, + 0.004574805498123169, + -0.01417686976492405, + 0.017695950344204903, + -0.009135247208178043, + -0.00942970160394907, + -0.03496099263429642, + -0.0050272587686777115, + -0.0030307190027087927, + 0.05334639921784401, + -0.0035531946923583746, + 0.003231809241697192, + 0.041166067123413086, + -0.02108575962483883, + 0.02611301839351654, + 0.01923285610973835, + -0.0029391509015113115, + -0.012029511854052544, + 0.0178395863622427, + 0.02726210653781891, + -0.009092156775295734, + -0.0013501780340448022, + 0.04363660514354706, + 0.017695950344204903, + -0.021215032786130905, + -0.04130970314145088, + 0.017322497442364693, + -0.06032710522413254, + -0.02900010161101818, + 0.03588026389479637, + -0.010011427104473114, + -0.03272027149796486, + 0.011814058758318424, + 0.043349333107471466, + 0.01123951468616724, + -0.0033987860661000013, + -0.007849705405533314, + -0.018988674506545067, + 0.014952504076063633, + -0.016403228044509888, + 0.05337512493133545, + -0.03335227072238922, + 0.0159005019813776, + -0.015455230139195919, + -0.01357359904795885, + -0.03047955222427845, + -0.009925245307385921, + 0.04415369778871536, + 0.02065485157072544, + -0.025998109951615334, + -0.01561322994530201, + 0.01322169043123722, + -0.06136128678917885, + -0.016805408522486687, + -0.04694023355841637, + -0.014478505589067936, + -0.03711553290486336, + -0.00963079184293747, + 0.019046129658818245, + 0.0024238568730652332, + -0.005375576205551624, + -0.024533024057745934, + -0.035391900688409805, + -0.0042264885269105434, + -0.0015521661844104528, + 0.02461920492351055, + 0.018428495153784752, + -0.0056772115640342236, + -0.015354684554040432, + -0.006151210516691208, + 0.00830934103578329, + 0.011490877717733383, + 0.0003222831874154508, + 0.01123951468616724, + 0.025165021419525146, + 0.058603473007678986, + -0.018055040389299393, + 0.04909477382898331, + -0.07216271013021469, + -0.004107988439500332, + 0.009731336496770382, + 0.025552839040756226, + 0.007504979148507118, + 0.004818986635655165, + -0.024489931762218475, + 0.05394966900348663, + -0.009903700090944767, + 0.0008869520970620215, + -0.03852316737174988, + -0.02825319394469261, + 0.003414945211261511, + -0.008302158676087856, + 0.05153658613562584, + -0.0681409016251564, + 0.002411288907751441, + 0.005892665591090918, + 0.012474783696234226, + 0.05001404508948326, + 0.029847554862499237, + 0.006118892226368189, + 0.007935887202620506, + 0.02328339032828808, + 0.042228974401950836, + 0.015756865963339806, + 0.04722750559449196, + 0.01964939944446087, + 0.008201614022254944, + 0.014119415543973446, + 0.028009014204144478, + -0.04386642575263977, + 0.012568146921694279, + 0.003860216587781906, + 0.004528123885393143, + -0.01851467601954937, + 0.03122645989060402, + 0.028885193169116974, + 0.01854340359568596, + -0.034644994884729385, + -0.017107043415308, + -0.0086827939376235, + -0.00814415980130434, + -0.007943068630993366, + 0.03122645989060402, + -0.0145431412383914, + 0.04780204966664314, + 0.018428495153784752, + -0.02654392644762993, + -0.016518136486411095, + 0.008259068243205547, + 0.012927236966788769, + -0.040419161319732666, + 0.006093755830079317, + -0.024145206436514854, + -0.0413958840072155, + -0.004028989002108574, + 0.035391900688409805, + -0.01196487620472908, + 0.03079555183649063, + -0.011871512979269028, + -0.015742501243948936, + -0.024518659338355064, + 0.026285381987690926, + -0.008783339522778988, + 0.037230443209409714, + -0.022708846256136894, + 0.005303758196532726, + 0.03582280874252319, + -0.0332660898566246, + 0.0037309443578124046, + -0.044124968349933624, + -0.001026997109875083, + -0.026227926835417747, + 0.006517481990158558, + 0.018572131171822548, + 0.0132073275744915, + 0.028396829962730408, + -0.007971796207129955, + -0.02979009971022606, + 0.0443260595202446, + 0.011131787672638893, + 0.004420396871864796, + -0.028095195069909096, + -0.015570138581097126, + 0.0039751254953444, + -0.026314109563827515, + -0.0006773333298042417, + -0.022249210625886917, + -0.007885614410042763, + 0.04343551769852638, + -0.0002502407878637314, + 0.0003278939693700522, + 0.006987889762967825, + -0.00831652246415615, + 0.015081776306033134, + 0.0326053649187088, + 0.001115871942602098, + -0.00670420890673995, + 0.008567885495722294, + -0.001978585496544838, + -0.002185062039643526, + 0.022737573832273483, + -0.008991611190140247, + 0.027348287403583527, + 0.029675191268324852, + -0.019003039225935936, + 0.059005655348300934, + 0.00022431898105423898, + -0.000408689200412482, + 0.039011526852846146, + -0.004678941797465086, + 0.0016563022509217262, + 0.00644566398113966, + -0.03654098883271217, + 0.046624235808849335, + 0.05001404508948326, + 0.002326902700588107, + -0.009286065585911274, + 0.014909413643181324, + -0.0029624917078763247, + 0.024389388039708138, + 0.0030809915624558926, + 0.046652961522340775, + 0.02463356778025627, + 0.011296968907117844, + 0.030537007376551628, + 0.01709268055856228, + 0.0017047793371602893, + 0.006765253841876984, + 0.019879218190908432, + 0.03375445306301117, + 0.003098946064710617, + 0.03346718102693558, + -0.013652598485350609, + -0.01811249554157257, + -0.0011104855220764875, + -0.0025028567761182785, + 0.0326053649187088, + -0.01671922579407692, + 0.015828683972358704, + 0.019017402082681656, + 0.006829890422523022, + -0.010830151848495007, + 0.015498320572078228, + 0.048118047416210175, + -0.01957758143544197, + -0.017265044152736664, + -0.03513335809111595, + -0.02243593893945217, + -0.0026734245475381613, + 0.01562759280204773, + -0.009214247576892376, + 0.003127673175185919, + 0.002206607488915324, + -0.026630109176039696, + -0.002098880475386977, + 0.0136095080524683, + 0.023671207949519157, + 0.01924721896648407, + -0.005591030232608318, + 0.025969382375478745, + 0.034731175750494, + -0.05848856642842293, + 0.05007149651646614, + -0.0034311041235923767, + 0.027678651735186577, + 0.03929879888892174, + -0.0166330449283123, + 0.014823231846094131, + 0.0071099805645644665, + -0.040045708417892456, + -0.041223522275686264, + -0.02035321667790413, + 0.006122482940554619, + 0.01271896529942751, + -0.004161851946264505, + 0.012790783308446407, + -0.0523122176527977, + -0.01377468928694725, + -0.004926713649183512, + 0.0072212982922792435, + -0.0355355367064476, + 0.0471125990152359, + 0.038264621049165726, + 0.001628472818993032, + 0.013293508440256119, + 0.006305619142949581, + -0.04742859676480293, + -0.004125942941755056, + -0.009106520563364029, + -0.002016289858147502, + 0.00391048938035965, + 0.008840793743729591, + -0.044469695538282394, + -0.034989722073078156, + -0.03142755106091499, + -0.04751477763056755, + 0.01180687639862299, + -0.03361081704497337, + -0.01308523677289486, + -0.013465872034430504, + 0.010040153749287128, + -0.005555121228098869, + -0.027017924934625626, + -0.01702086254954338, + -0.03300754353404045, + 0.000700225355103612, + -0.03415663167834282, + -0.006205073557794094, + 0.0010207131272181869, + -0.016891589388251305, + 0.05331766977906227, + -0.0049913497641682625, + 0.024145206436514854, + -0.013839325867593288, + -0.010952242650091648, + -0.004355760756880045, + 0.029905008152127266, + -0.050646040588617325, + -0.0013528713025152683, + -0.029186828061938286, + 0.02463356778025627, + 0.017164498567581177, + 0.01377468928694725, + -0.02507884055376053, + -0.008230340667068958, + -0.0069304355420172215, + -0.0232259351760149, + -0.015182321891188622, + 0.013480235822498798, + 0.006492345593869686, + 0.013013418763875961, + -0.009982699528336525, + -0.014808868058025837, + -0.025150658562779427, + 0.06607254594564438, + -0.016115956008434296, + 0.01432768814265728, + 0.016072865575551987, + -0.013882416300475597, + -0.00572030246257782, + -0.008768975734710693, + 0.02101394161581993, + 0.024791568517684937, + 0.009106520563364029, + -0.018414130434393883, + -0.028396829962730408, + -0.014923777431249619, + 0.014234323985874653, + 0.0009641564101912081, + -0.018744492903351784, + -0.015527048148214817, + 0.009192702360451221, + -0.03493226692080498, + -0.014126596972346306, + -0.00013622973347082734, + -0.026026837527751923, + -0.020539943128824234, + -0.008697157725691795, + 0.002874514786526561, + 0.007278752513229847, + 0.004240851849317551, + -0.019893581047654152, + 0.02831064909696579, + 0.0008335374877788126, + -0.03886789456009865, + -0.011368786916136742, + 0.021286850795149803, + 0.0006432197988033295, + 0.014428232796490192, + 0.0021186305675655603, + -0.024547386914491653, + -0.010564425028860569, + 0.031025368720293045, + 0.004941077437251806, + 0.009329156018793583, + 0.0031887185759842396, + -0.007095616776496172, + -0.0224933922290802, + 0.044469695538282394, + 0.023800479248166084, + 0.026658834889531136, + 0.005156530998647213, + 0.023743025958538055, + 0.007921523414552212, + -0.030048644170165062, + 0.019290311262011528, + -0.036856990307569504, + 0.028052104637026787, + 0.02246466465294361, + 0.060844194144010544, + -0.001542291254736483, + -0.007871250621974468, + -0.02400157041847706, + -0.011146151460707188, + -0.0015584502834826708, + -0.020841578021645546, + 0.02326902747154236, + -0.028684101998806, + -0.036138810217380524, + 0.028167013078927994, + -0.02026703581213951, + 0.016805408522486687, + -0.06802599132061005, + -0.0028062877245247364, + -0.029215555638074875, + 0.010873242281377316, + -0.027104107663035393, + -0.028009014204144478, + 0.00434139696881175, + 0.005465348716825247, + -0.004265988245606422, + -0.011533968150615692, + 0.00959488283842802, + -0.012094148434698582, + 0.04234388470649719, + 0.0012289852602407336, + 0.03949989005923271, + -0.06492345780134201, + 0.006679072510451078, + 0.006255346350371838, + 0.019017402082681656, + -0.01960630901157856, + 0.033553361892700195, + 0.016848498955368996, + 0.03165736794471741, + -0.030307188630104065, + -0.015843046829104424, + 0.033208634704351425, + -0.0030325143598020077, + 0.0011419059010222554, + -0.009293247014284134, + 0.030623188242316246, + 0.026931744068861008, + 0.01506741251796484, + -0.0005992312799207866, + -0.017336862161755562, + 0.011713513173162937, + 0.0020126989111304283, + 0.023355208337306976, + 0.009063429199159145, + 0.009336337447166443, + -0.03639735281467438, + 0.0046968962997198105, + 0.004431169480085373, + -0.03674208000302315, + 0.001784676918759942, + 0.024145206436514854, + 0.014126596972346306, + -0.011203605681657791, + 0.007174616679549217, + 0.007206934504210949, + 0.03217445686459541, + -0.008948520757257938, + -0.03596644476056099, + -0.006761663127690554, + -0.02394411526620388, + 0.022723209112882614, + -0.023427026346325874, + -0.030192280188202858, + -0.03214573115110397, + -0.017911404371261597, + -0.011756603606045246, + -0.022924300283193588, + 0.03915516287088394, + -0.020899033173918724, + 0.029617736116051674, + -0.009896517731249332, + -0.02180393971502781, + -0.04837659373879433, + 0.017968859523534775, + -0.029617736116051674, + 0.012446056120097637, + 0.0074403430335223675, + 0.0072248890064656734, + 0.012065420858561993, + -0.05193876475095749, + 0.04346424341201782, + -0.007540888153016567, + 0.005576666444540024, + -0.019706854596734047, + -0.003641171846538782, + -0.008424249477684498, + -0.025208111852407455, + 0.01485195942223072, + -0.011117423884570599, + -0.0024166752118617296, + 0.03401299566030502, + -0.033926814794540405, + -0.005400712136179209, + 0.014909413643181324, + -0.033179908990859985, + 0.025667747482657433, + 0.014521596021950245, + 0.03746026009321213, + 0.030364643782377243, + 0.02141612209379673, + -0.002050403505563736, + 0.0016841316828504205, + -0.03809225931763649, + 0.003016355214640498, + -0.03162863850593567, + -0.016862861812114716, + -0.0075839790515601635, + 0.02361375279724598, + -0.012015148997306824, + 0.0132073275744915, + 0.005953710991889238, + 0.021473577246069908, + -0.003233604598790407, + 0.016460681334137917, + -0.002089903224259615, + 0.012288057245314121, + -0.0032551500480622053, + -0.025983747094869614, + 0.0079502509906888, + 0.009005974978208542, + -0.003967943601310253, + -0.01200078520923853, + -0.04633696377277374, + 0.041137341409921646, + 0.0010359743610024452, + 0.014270232990384102, + 0.0021168349776417017, + -0.016446318477392197, + -0.026256654411554337, + -0.013042145408689976, + -0.031111549586057663, + 0.005012895446270704, + 0.02642901800572872, + -0.015297230333089828, + 0.036828260868787766, + -0.028569193556904793, + 0.006391800474375486, + 0.023154117166996002, + -0.00980315450578928, + 0.01992230862379074, + -0.01107433345168829, + -0.02211993932723999, + 0.002739856019616127, + 0.012582510709762573, + -8.085133595159277e-5, + 0.008223159238696098, + -0.008050795644521713, + 0.04128097742795944, + -0.022579574957489967, + 0.002343061612918973, + -0.004294715356081724, + -0.013293508440256119, + 0.0015782001428306103, + 0.007935887202620506, + -0.026199201121926308, + -0.020381944254040718, + -0.010083245113492012, + 0.030565733090043068, + 0.021617213264107704, + 0.019491400569677353, + 0.03625371679663658, + -0.004312669858336449, + 0.03636862710118294, + 0.013631053268909454, + -0.016575589776039124, + 0.010916333645582199, + -0.031772274523973465, + 0.03921261802315712, + -0.02390102483332157, + 0.03338100016117096, + 0.003705807961523533, + 0.01781086064875126, + -0.0037093989085406065, + -0.03338100016117096, + 0.05147913098335266, + 0.019304674118757248, + 0.0009946790523827076, + 0.011368786916136742, + 0.005178076680749655, + 0.006984299048781395, + 0.02361375279724598, + -0.006147619336843491, + 0.035736627876758575, + -0.005626939237117767, + 0.014442596584558487, + 0.0163745004683733, + -0.006697027012705803, + 0.06492345780134201, + -0.008761794306337833, + -0.004427578765898943, + -0.0007733898819424212, + -0.0018439267296344042, + -0.018744492903351784, + -0.019046129658818245, + 0.020137762650847435, + -0.00013398542068898678, + -0.004815395921468735, + 0.004158261232078075, + 0.03159991279244423, + -0.03220318257808685, + 0.012905691750347614, + -0.010506970807909966, + -0.00907061155885458, + -0.02285248227417469, + 0.013228872790932655, + 0.08290667831897736, + -0.019347764551639557, + -0.001398655236698687, + 0.0136095080524683, + -0.012288057245314121, + 0.024418113753199577, + 0.017537951469421387, + -0.006312800571322441, + 0.009831882081925869, + 0.008488886058330536, + 0.030910460278391838, + 0.0019372900715097785, + -0.006840663030743599, + 0.029560282826423645, + -0.008531976491212845, + -0.0006921458407305181, + 0.00814415980130434, + 0.04182679206132889, + -0.038322076201438904, + 0.014076325111091137, + 0.023369571194052696, + 0.03228936716914177, + -0.007135116495192051, + 0.012216239236295223, + 0.0011481900000944734, + 0.031398821622133255, + -0.009142429567873478, + 0.008215976879000664, + -0.025165021419525146, + 0.020985214039683342, + -0.018227403983473778, + -0.008108250796794891, + 0.0013950642896816134, + 0.00923579279333353, + 0.0054617575369775295, + 0.027132833376526833, + -0.025179384276270866, + -0.013171418569982052, + -0.03748898580670357, + -0.006977117154747248, + 0.05558712035417557, + -0.02177521213889122, + 0.0010449516121298075, + -0.017940131947398186, + -0.005946529097855091, + 0.0013061895733699203, + 0.010621880181133747, + 0.00188163120765239, + 0.016762318089604378, + -0.012546601705253124, + 0.054610393941402435, + -0.002883492037653923, + 0.0031546049285680056, + 0.008208795450627804, + 0.008065159432590008, + 0.018399767577648163, + -0.03272027149796486, + -0.004391669761389494, + -0.008373976685106754, + -0.025581566616892815, + -0.0049554407596588135, + -0.01848594844341278, + 0.001944471849128604, + -0.007605524268001318, + -0.019433947280049324, + 0.005899847485125065, + -0.002984037157148123, + -0.0070776622742414474, + 0.026759380474686623, + 0.010147880762815475, + 0.03237554803490639, + -0.0027649924159049988, + 0.008603794500231743, + -0.009422519244253635, + 0.05021513253450394, + 0.008689976297318935, + 0.03386935964226723, + 0.025868836790323257, + 0.024906476959586143, + 0.006962753366678953, + -0.006093755830079317, + -0.034271541982889175, + -0.043780241161584854, + 0.021344304084777832, + -0.01992230862379074, + 0.02036757953464985, + -0.011476513929665089, + 0.017336862161755562, + 0.0026500835083425045, + 0.02618483640253544, + 0.0014076324878260493, + 0.01105278730392456, + 0.03312245383858681, + 0.022033756598830223, + 0.006463618483394384, + 0.03315117955207825, + 0.010657789185643196, + -0.0007612706394866109, + 0.00444194208830595, + 0.0003424820024520159, + -0.02217739261686802, + -0.004546078387647867, + -0.01567068323493004, + 0.02509320341050625, + -0.008661248721182346, + -0.025911929085850716, + -0.024906476959586143, + 0.0005139474524185061, + -0.018327949568629265, + 0.015871774405241013, + -0.027089742943644524, + 0.005443803034722805, + -0.0030019916594028473, + 0.02352757193148136, + -0.00188163120765239, + -0.004754350520670414, + 0.029847554862499237, + -0.026759380474686623, + 0.01963503658771515, + 0.013702871277928352, + -0.02401593327522278, + -0.01775340549647808, + -0.023427026346325874, + -0.003942807205021381, + -0.0013528713025152683, + 0.008531976491212845, + -0.006855026353150606, + 0.028569193556904793, + 0.0018852220382541418, + 0.015297230333089828, + 0.04093625023961067, + 0.005120622459799051, + 0.0028421967290341854, + -0.005120622459799051, + -0.026400290429592133, + -0.03122645989060402, + -0.004549669101834297, + -0.06526818126440048, + -0.009465610608458519, + 0.04130970314145088, + -0.005616166163235903, + -0.00010828805534401909, + -0.01814122311770916, + 0.02072666957974434, + 0.004743577912449837, + 0.022321028634905815, + 0.012984691187739372, + -0.015512684360146523, + -0.01706395298242569, + -0.010700879618525505, + -0.01413377933204174, + 0.029258646070957184, + -0.02252211980521679, + -0.02255084738135338, + 0.020827215164899826, + -0.001636552275158465, + -0.01305650919675827, + 0.02434629574418068, + -0.0024310387670993805, + 0.015828683972358704, + 0.005939347203820944, + 0.0017721087206155062, + -0.010248426347970963, + 0.013185781426727772, + -0.001014429028145969, + -0.02726210653781891, + 0.024389388039708138, + 0.002206607488915324, + -0.005307348910719156, + 0.0006741913384757936, + 0.02252211980521679, + -0.05033004283905029, + -0.028741557151079178, + 0.016848498955368996, + -0.008984429761767387, + 0.04288969933986664, + 0.01699213497340679, + -0.020123399794101715, + 0.002283811802044511, + 0.015886137261986732, + 0.0023699933663010597, + 0.0019336992409080267, + -0.01324323657900095, + 0.00644566398113966, + 0.007785069290548563, + 0.01522541232407093, + 0.020769760012626648, + -0.005253485403954983, + -0.0010530311847105622, + -0.004323442466557026, + -0.006650345399975777, + 0.02678810805082321, + -0.0049159410409629345, + -0.0038781710900366306, + -0.005655666347593069, + -0.055357303470373154, + 0.041539520025253296, + -0.011268241330981255, + -0.037517715245485306, + -0.008237523026764393, + 0.008079523220658302, + 0.012517874129116535, + -0.01180687639862299, + 0.019405219703912735, + 0.0008407192653976381, + 0.018069405108690262, + 0.0224933922290802, + 0.006262528244405985, + -0.011893058195710182, + 0.030422097072005272, + 0.02171775884926319, + -0.021832667291164398, + 0.0026841971557587385, + 0.009228610433638096, + 0.010471061803400517, + -0.01993667148053646, + -0.0074762520380318165, + -0.0071530709974467754, + 0.02000848948955536, + -0.038695529103279114, + 0.019031764939427376, + -0.008409885689616203, + -0.014593414030969143, + -0.004233669955283403, + -0.0030019916594028473, + -0.020913396030664444, + 0.030939187854528427, + 0.003113309619948268, + 0.017279407009482384, + 0.020841578021645546, + 0.004305487964302301, + 0.021229395642876625, + 0.020985214039683342, + -0.012869782745838165, + -0.004973395261913538, + -0.006460027769207954, + -0.02357066236436367, + -0.013465872034430504, + 9.055798727786168e-5, + -0.010140699334442616, + 0.028928283601999283, + -0.003824307583272457, + -0.02790846861898899, + -0.00021960592130199075, + -0.004151079338043928, + 0.006560572888702154, + 0.014004507102072239, + 0.012596874497830868, + 0.02397284284234047, + -0.0003936523280572146, + 0.003475990379229188, + -0.024590477347373962, + 0.019893581047654152, + 0.03007737174630165, + 0.020209580659866333, + -0.029560282826423645, + -0.00832370389252901, + 0.00376685312949121, + -0.046624235808849335, + -0.007346979808062315, + -0.017566679045557976, + 0.028152650222182274, + -0.03961480036377907, + 0.028181375935673714, + 0.00026325779617764056, + 0.02898573875427246, + -0.02790846861898899, + 0.0006661118241026998, + 0.03418536111712456, + -0.010119154118001461, + -0.030335916206240654, + 0.03849443793296814, + 0.02394411526620388, + 0.006327164359390736, + -0.03240427374839783, + -0.007871250621974468, + -0.012086967006325722, + 0.011620149947702885, + 0.0057131205685436726, + 0.017207589000463486, + 0.03748898580670357, + -0.015498320572078228, + -0.00033417806844227016, + -0.05053113400936127, + -0.026414655148983, + 0.0213586688041687, + -0.010456698015332222, + -0.004725623410195112, + -0.020741034299135208, + -0.02391538769006729, + -0.008962884545326233, + -0.024446841329336166, + -0.01921849325299263, + -0.03708680719137192, + -0.0011374172754585743, + 0.011340059340000153, + -0.0030720143113285303, + -0.014047597534954548, + 0.0002374482137383893, + 0.03481735661625862, + -0.015167958103120327, + -0.0035047174897044897, + -0.019419582560658455, + 0.01072242483496666, + 0.00782816018909216, + -0.010384880006313324, + 0.01924721896648407, + -0.004510169383138418, + 0.018213041126728058, + -0.0026752199046313763, + -0.0011948717292398214, + 0.009774427860975266, + 0.008452977053821087, + -0.011548331938683987, + -0.03185845911502838, + -0.008022068999707699, + -0.0014327687676995993, + 0.005874711088836193, + 0.006424118764698505, + 0.005964483600109816, + 0.0031079233158379793, + -0.04642314463853836, + 0.003989488817751408, + -0.005339667201042175, + 0.007278752513229847, + -0.0159723199903965, + 0.010119154118001461, + -0.0015898706624284387, + 0.029143737629055977, + -0.014047597534954548, + 0.013911143876612186, + -0.009544610045850277, + -0.004815395921468735, + -0.036856990307569504, + -0.0271471980959177, + -0.012862601317465305, + -0.011490877717733383, + 0.008481703698635101, + -0.02144484966993332, + 0.013947052881121635, + 0.004854895640164614, + 0.004215715453028679, + -0.032835181802511215, + -0.00963079184293747, + 0.02138739638030529, + -0.02474847622215748, + -0.011720694601535797, + 0.025581566616892815, + 0.006097347009927034, + 0.00381353497505188, + 0.014837595634162426, + 0.014241506345570087, + 0.003924852702766657, + 0.01921849325299263, + -0.007124343886971474, + -0.023297753185033798, + -0.01814122311770916, + -0.017178861424326897, + -0.007864069193601608, + 0.001858290284872055, + 0.004887213930487633, + 0.03228936716914177, + 0.014995595440268517, + 0.021976303309202194, + -0.0055335755459964275, + -0.057540569454431534, + -7.041529170237482e-5, + -0.03849443793296814, + -0.004603532608598471, + 0.02283811941742897, + -0.037546440958976746, + -0.015282866545021534, + 0.009171156212687492, + 0.05814383924007416, + -0.030249735340476036, + -0.017710315063595772, + 0.013947052881121635, + -0.028741557151079178, + -0.019117947667837143, + -0.007943068630993366, + -0.01542650256305933, + 0.0006436686962842941, + 0.0221630297601223, + -0.008280613459646702, + 0.010269971564412117, + 0.00516371289268136, + 0.02207684889435768, + -0.004722032230347395, + -0.017293769866228104, + 0.010614697821438313, + -0.0057885292917490005, + 0.018687039613723755, + -0.02573956549167633, + -0.00536121241748333, + -0.0581725649535656, + -0.022924300283193588, + -0.026572654023766518, + 0.004158261232078075, + -0.005292985588312149, + 0.0036106491461396217, + 0.009788790717720985, + 0.006133256014436483, + 0.00572030246257782, + -0.012187511660158634, + -0.010133517906069756, + -0.013501781038939953, + -0.03878170996904373, + 0.022306665778160095, + 0.02072666957974434, + 0.0003494393895380199, + -0.013638234697282314, + -0.01811249554157257, + 0.013128327205777168, + -0.029229918494820595, + 0.013839325867593288, + 0.0038207166362553835, + 0.03550681099295616, + -0.0079502509906888, + -0.037632621824741364, + -0.008330886252224445, + -0.008496067486703396, + -0.008215976879000664, + -0.012668692506849766, + -0.036454807966947556, + 0.012036694213747978, + 0.01592922955751419, + -0.019117947667837143, + -0.019074857234954834, + -0.0114477863535285, + 0.011893058195710182, + 0.007490615826100111, + -0.022019393742084503, + 0.010629061609506607, + -0.009903700090944767, + -0.0019498582696542144, + -0.01699213497340679, + -0.004423987586051226, + -0.0038099440280348063, + -0.01505304966121912, + 0.0074044340290129185, + 0.011885875836014748, + -0.022364120930433273, + 0.00944406446069479, + 0.0026824017986655235, + 0.011210787110030651, + 0.0019157447386533022, + -0.020741034299135208, + -0.018945584073662758, + -0.03151373192667961, + 0.01957758143544197, + 0.0105141531676054, + 0.003007377963513136, + -0.007048935163766146, + -0.00561975734308362, + 0.07147325575351715, + 0.027506288141012192, + 0.016144683584570885, + -0.015483957715332508, + -0.01565632037818432, + 0.02245030179619789, + 0.0018026314210146666, + 0.028597921133041382, + -0.006521072704344988, + -0.0006714981282129884, + 0.0002800901420414448, + -0.002905037486925721, + -0.016475046053528786, + 0.011691967956721783, + -0.006991480477154255, + 0.007454706821590662, + 0.020583033561706543, + 0.020396307110786438, + 0.008280613459646702, + 0.022407211363315582, + -0.03332354500889778, + 0.004269578959792852, + 0.0011544740991666913, + 0.002427447820082307, + -0.018572131171822548, + 0.00499853165820241, + -0.017868313938379288, + -0.016115956008434296, + -0.0027578105218708515, + -0.002075539669021964, + 0.01927594654262066, + -0.004779486916959286, + 0.022751936689019203, + 0.0026482881512492895, + -0.012395784258842468, + 0.05219731107354164, + -0.02612738311290741, + 0.04096497967839241, + -0.0001968261640286073, + -0.007454706821590662, + -0.013386872597038746, + -0.006872980855405331, + 0.02029576152563095, + -0.005102667957544327, + 0.0023843571543693542, + 0.002542356727644801, + -0.011835603974759579, + 0.006898117251694202, + 0.010147880762815475, + -0.02792283147573471, + 0.011361604556441307, + 0.0029966053552925587, + -0.011900239624083042, + 0.019060492515563965, + -0.0015602456405758858, + -0.0016634840285405517, + 0.004348578862845898, + -0.0030307190027087927, + -0.005942937918007374, + -0.0030217417515814304, + -2.2653524865745567e-5, + 0.010313061997294426, + -0.010923515073955059, + -0.018816310912370682, + 0.009250156581401825, + 0.0008214181871153414, + -0.005777756683528423, + -0.01964939944446087, + 0.003752489574253559, + 0.0010889401892200112, + 0.0055658938363194466, + 0.0035891036968678236, + -0.002027062699198723, + -0.0016841316828504205, + -0.0028547649271786213, + 0.01249632891267538, + 0.00671139033511281, + 0.0019372900715097785, + 0.027061015367507935, + -0.04429733380675316, + -0.0019624263513833284, + -0.022780664265155792, + 0.006962753366678953, + 0.016561226919293404, + -0.0132073275744915, + 0.006944798864424229, + -0.001297212322242558, + -0.020425034686923027, + 0.006689845118671656, + 0.006463618483394384, + -0.006355891469866037, + 0.017624132335186005, + 0.026773745194077492, + 0.01700649783015251, + -0.03329481557011604, + -0.012783600948750973, + -0.001434564241208136, + 0.010399243794381618, + -0.037201713770627975, + -0.0036250127013772726, + -0.0013887803070247173, + 0.013839325867593288, + 0.009724155068397522, + 2.8657059374381788e-5, + 0.006693436298519373, + -0.026730652898550034, + 0.009939609095454216, + -0.013789053075015545, + -0.021861394867300987, + -0.029258646070957184, + 0.007576797157526016, + -0.01522541232407093, + -0.01072242483496666, + 0.008029250428080559, + -0.0017155520617961884, + -0.014564687386155128, + -0.014442596584558487, + 0.00039095914689823985, + 0.012151602655649185, + -0.0002717861789278686, + -0.04053407162427902, + 0.025567201897501945, + 0.003185127628967166, + -0.001465984620153904, + 0.0021186305675655603, + 0.014277415350079536, + -0.0021060623694211245, + 0.011210787110030651, + 0.007749160286039114, + -0.0047363960184156895, + 0.008259068243205547, + -0.00588548369705677, + -0.011433422565460205, + -0.010370517149567604, + 0.0011131787905469537, + -0.011849966831505299, + 0.01036333478987217, + 0.024231387302279472, + -0.0018385404255241156, + -0.017997587099671364, + -0.020611761137843132, + 0.010664970614016056, + 0.03490354120731354, + -0.002461561467498541, + -0.0049159410409629345, + 0.00588548369705677, + -0.033926814794540405, + 0.0018744494300335646, + 0.016762318089604378, + -0.03116900473833084, + 0.0018475176766514778, + 0.0032156503293663263, + 0.0232259351760149, + 0.007749160286039114, + 0.02174648456275463, + -0.004237261135131121, + 0.006416936870664358, + -0.017581041902303696, + -0.0029499237425625324, + -0.028540465980768204, + 0.044412240386009216, + -0.007641433272510767, + 0.006718572229146957, + -0.010937878862023354, + 0.000847003364469856, + 0.011483695358037949, + 0.014263051562011242, + -0.036167535930871964, + 0.0035639675334095955, + 0.0029589009936898947, + 0.016446318477392197, + 0.008589430712163448, + 0.008797703310847282, + -0.0018062222516164184, + -0.004528123885393143, + 0.005343257915228605, + 0.03363954275846481, + -0.006176346447318792, + 0.027506288141012192, + 0.007935887202620506, + 0.016762318089604378, + -0.014270232990384102, + 0.0022604709956794977, + -0.015857411548495293, + -0.008496067486703396, + -0.01141187734901905, + -0.019146675243973732, + -0.017897041514515877, + -0.0053827580995857716, + 0.0049159410409629345, + 0.0033610817044973373, + -0.011656058952212334, + -0.00924297422170639, + -0.010040153749287128, + 0.006316391751170158, + -0.0011293378192931414, + 0.013853688724339008, + -0.025481021031737328, + 0.008481703698635101, + 0.008560704067349434, + -0.018572131171822548, + 0.0007540888036601245, + 0.014923777431249619, + -0.03444390371441841, + 0.0044096242636442184, + -0.007092026062309742, + -0.007785069290548563, + 0.013587962836027145, + 0.01601541042327881, + -0.007027389481663704, + -0.0001415038714185357, + 0.004291124641895294, + -0.016604317352175713, + -0.013013418763875961, + 0.014571868814527988, + -0.003888943698257208, + 0.004506578668951988, + -0.013379690237343311, + 0.0036986260674893856, + -0.006388209760189056, + -0.03168609365820885, + -0.01847158558666706, + -0.026012472808361053, + 0.010377698577940464, + 0.020554305985569954, + 0.008409885689616203, + -0.023814843967556953, + -0.012402965687215328, + 0.007318252697587013, + -0.024461206048727036, + -0.0027219015173614025, + 0.010427971370518208, + 0.021645940840244293, + 0.01052133459597826, + 0.018787585198879242, + 0.02365684323012829, + -0.024044660851359367, + 0.00030949062784202397, + -0.005271439906209707, + -0.0052032130770385265, + 0.011821240186691284, + -0.02400157041847706, + -0.009250156581401825, + 0.023484481498599052, + -0.008826429955661297, + -0.00018998101586475968, + 0.024418113753199577, + -0.011842785403132439, + -0.0029032418970018625, + 0.0001778617297532037, + -0.011325695551931858, + 0.0045173512771725655, + -0.00038489949656650424, + -0.01381777971982956, + -0.01854340359568596, + 0.004485032986849546, + 0.019161038100719452, + 0.006302027963101864, + 0.020051581785082817, + -0.0028529693372547626, + 0.0012433488154783845, + -0.02178957685828209, + 0.02390102483332157, + 0.00353524019010365, + -0.026989197358489037, + -0.0027111289091408253, + 0.009817518293857574, + 0.005993210710585117, + 0.007612706162035465, + -0.016848498955368996, + -0.03513335809111595, + 0.037891168147325516, + -0.00814415980130434, + 0.005109849385917187, + 0.0037345350719988346, + -0.012876964174211025, + -0.0015449844067916274, + -0.018011949956417084, + -0.03329481557011604, + -0.01397577952593565, + 0.0012406556634232402, + 0.0220912117511034, + -0.00391767080873251, + -0.006352300755679607, + 0.016058500856161118, + 0.023872297257184982, + 0.004359351471066475, + 0.03085300512611866, + 0.008251885883510113, + 0.005181667394936085, + 0.004283942747861147, + 0.005666438955813646, + -0.01000424474477768, + -0.021272486075758934, + 0.007483433932065964, + 0.01812685839831829, + -0.012144421227276325, + -0.012417329475283623, + -0.010277152992784977, + -0.02107139676809311, + -0.023326480761170387, + 0.0072248890064656734, + 0.00980315450578928, + 0.00654261838644743, + -0.005950119812041521, + -0.022277938202023506, + 0.015871774405241013, + -0.03734534978866577, + 0.011296968907117844, + -0.006962753366678953, + 0.004984167870134115, + 0.005052395164966583, + 0.0009659518836997449, + 0.019046129658818245, + -0.013760325498878956, + -0.0007181798573583364, + 0.0038530349265784025, + 0.025538474321365356, + 0.01144060492515564, + -0.009817518293857574, + -0.01525413990020752, + 0.01854340359568596, + -0.012539420276880264, + -0.01851467601954937, + -0.022665755823254585, + 0.0005274133291095495, + 0.026931744068861008, + 0.006567754782736301, + -0.016489408910274506, + -0.02825319394469261, + -0.01361668948084116, + -0.022780664265155792, + 0.023082299157977104, + -0.01885940320789814, + 0.03450135886669159, + 0.003560376586392522, + -0.008294977247714996, + 0.00027403049170970917, + -0.039040256291627884, + -0.031140277162194252, + -0.013279145583510399, + 0.012022330425679684, + -0.024159569293260574, + 0.022306665778160095, + -0.01992230862379074, + 0.010499789379537106, + -0.006790390238165855, + 0.015139230526983738, + 0.00039297904004342854, + -0.01962067373096943, + -0.011160514317452908, + 0.007235662080347538, + -0.012043875642120838, + -0.004208534024655819, + -0.01781086064875126, + 0.010471061803400517, + -0.021660303696990013, + 0.02759246900677681, + 0.0048046233132481575, + 0.002921196399256587, + -0.019692491739988327, + -0.008065159432590008, + -0.023067936301231384, + 0.011871512979269028, + -0.01452877838164568, + 0.008977248333394527, + -0.012209056876599789, + 0.017983222380280495, + 0.016862861812114716, + 0.00042484825826250017, + -0.0015054844552651048, + -0.027793560177087784, + 0.008381159044802189, + -0.01358078047633171, + 0.03840825706720352, + -0.021272486075758934, + 0.01413377933204174, + -0.014614959247410297, + -0.016130318865180016, + -0.010104790329933167, + -0.031054096296429634, + -0.0013672348577529192, + 0.003526262938976288, + -0.01108869630843401, + 0.004204942844808102, + -0.0023843571543693542, + 0.012273693457245827, + -0.018758857622742653, + 0.00221917568705976, + 0.006840663030743599, + 0.006682663224637508, + -0.025121930986642838, + -0.001181405852548778, + 0.024475568905472755, + 0.029991190880537033, + 0.022349756211042404, + -0.01918976567685604, + -0.0035406264942139387, + 0.012977509759366512, + 0.014722686260938644, + 0.002341266255825758, + 0.0071135712787508965, + 0.00742597971111536, + 0.0010512357112020254, + -0.015828683972358704, + 0.005781347863376141, + 0.024504296481609344, + 0.005691575352102518, + -0.011505240574479103, + -0.03082427941262722, + 0.02280939184129238, + 0.009695427492260933, + 0.006438482087105513, + -0.0009237588383257389, + 0.025552839040756226, + 0.005400712136179209, + -0.011454968713223934, + -0.019793035462498665, + -0.004046943504363298, + 0.012912873178720474, + -0.013602325692772865, + -0.01631704531610012, + -0.004090033937245607, + 0.0020414262544363737, + 0.010384880006313324, + -0.009386610239744186, + 0.035391900688409805, + -0.0043342155404388905, + 0.01809813268482685, + 0.018356677144765854, + -0.012015148997306824, + 0.029876280575990677, + -0.028023377060890198, + -0.00891261175274849, + 0.04392387717962265, + -0.004316261038184166, + -0.020037217065691948, + -0.004294715356081724, + -0.004790259525179863, + -0.0047758957371115685, + -0.009307610802352428, + -0.005178076680749655, + -0.022780664265155792, + -0.006668299902230501, + 0.002247902797535062, + -0.044124968349933624, + -0.012230603024363518, + 0.004560442175716162, + 0.013078054413199425, + -0.007677342277020216, + -0.027865378186106682, + 0.021961938589811325, + 0.003835080424323678, + -0.004470669664442539, + 0.0073290253058075905, + -0.014471324160695076, + 0.006801162846386433, + 0.012295238673686981, + -0.018959946930408478, + -0.0022945846430957317, + -0.002861946588382125, + -0.006355891469866037, + -0.013185781426727772, + -0.007935887202620506, + 0.011505240574479103, + 0.0038422620855271816, + -0.003490353934466839, + 0.012338330037891865, + -0.01671922579407692, + -0.011591422371566296, + -3.523569830576889e-5, + 0.008553521707654, + -0.0072967070154845715, + -0.004018216393887997, + 0.0076198880560696125, + 0.007734796963632107, + 0.016187774017453194, + -0.006413346156477928, + -0.01746613346040249, + -0.020410671830177307, + -0.005231940187513828, + -0.0036609217058867216, + -0.0075121610425412655, + 0.003039696253836155, + 0.009084975346922874, + 0.08807757496833801, + -0.015311594121158123, + -0.004930304363369942, + -0.010104790329933167, + 0.01396859809756279, + -0.016446318477392197, + -0.0037022170145064592, + 0.01088042464107275, + 0.010550062172114849, + 0.006370255257934332, + 0.00552639365196228, + -0.03272027149796486, + 0.015843046829104424, + 0.019678127020597458, + -0.009702609851956367, + -0.0020414262544363737, + 0.033179908990859985, + 0.02210557460784912, + 0.0037560805212706327, + 0.014808868058025837, + -0.00607939250767231, + -0.013537690043449402, + 0.005989619996398687, + 0.010471061803400517, + 0.0013385076308622956, + 0.016216501593589783, + -0.015728138387203217, + 0.001603336539119482, + 0.014191233552992344, + 0.01816995069384575, + 0.013322236016392708, + 0.018658312037587166, + 0.014995595440268517, + 0.0028673328924924135, + -0.024489931762218475, + 0.0008891964098438621, + -0.00044347604853101075, + 0.012201875448226929, + 0.013128327205777168, + 0.009738518856465816, + -0.009788790717720985, + 0.0079502509906888, + 0.036110080778598785, + 0.01177096739411354, + 0.014377960003912449, + -0.03952861949801445, + 0.0018618812318891287, + -0.0007558842771686614, + -0.012876964174211025, + 0.011110242456197739, + -0.021861394867300987, + -0.014234323985874653, + 0.012273693457245827, + -0.003018150804564357, + 0.0025621065869927406, + -0.009918063879013062, + 0.017552314326167107, + -0.008675612509250641, + 0.004212124738842249, + 0.006154801230877638, + 0.018672674894332886, + 0.001158064929768443, + -0.016589954495429993, + -0.009566155262291431, + -0.005221167579293251, + -0.014227142557501793, + 5.1591123337857425e-5, + -0.041568249464035034, + 0.0038207166362553835, + -0.01542650256305933, + -0.0006795776425860822, + 0.02069794200360775, + 0.01159860473126173, + -0.044785693287849426, + -0.006679072510451078, + 0.01177096739411354, + 0.012991873547434807, + 0.0056053935550153255, + -0.012230603024363518, + 0.002267652889713645, + 0.02065485157072544, + 0.011304150335490704, + -0.01601541042327881, + -0.013322236016392708, + 3.254252442275174e-5, + 0.004140306729823351, + 0.020094672217965126, + -0.024202659726142883, + 0.0011077923700213432, + -0.021660303696990013, + -0.006492345593869686, + 0.0156419575214386, + 0.005666438955813646, + -0.005152940284460783, + -0.004643032792955637, + -0.020209580659866333, + -0.00312228687107563, + -0.00644207326695323, + 0.0036878534592688084, + 0.004212124738842249, + 0.018701402470469475, + 0.012654328718781471, + -0.006797572132200003, + -0.003129468532279134, + -0.009178338572382927, + -0.019290311262011528, + 0.03116900473833084, + 0.00644207326695323, + -0.032490454614162445, + -0.009537428617477417, + 0.00795743241906166, + 0.004930304363369942, + 0.009946790523827076, + 0.001164349028840661, + -0.0075839790515601635, + 0.004822577815502882, + 0.02285248227417469, + 0.0014013483887538314, + -0.014069142751395702, + -0.025294294580817223, + 0.007856887765228748, + -0.003641171846538782, + -0.004793850239366293, + -0.006747299339622259, + 0.005921392701566219, + -0.020812852308154106, + -0.003098946064710617, + -0.015268503688275814, + -0.019462672993540764, + 0.0053181215189397335, + 0.006797572132200003, + 0.009329156018793583, + 0.010700879618525505, + 0.0005749927368015051, + 0.012194694019854069, + -0.0005458166706375778, + -0.009731336496770382, + 0.012079784646630287, + 0.033553361892700195, + 0.014981231652200222, + 0.006284073460847139, + 0.0032982409466058016, + -0.0057526202872395515, + 0.008136977441608906, + 0.02760683372616768, + 0.007978977635502815, + -0.0032856727484613657, + -0.013903961516916752, + 0.003159991232678294, + -0.017911404371261597, + 0.00851761270314455, + -0.0163745004683733, + -0.0028026967775076628, + -0.013164236210286617, + 0.03306499868631363, + 0.007935887202620506, + 0.011957693845033646, + 0.02572520263493061, + -0.006294846069067717, + 0.004212124738842249, + -0.012086967006325722, + 0.004230079241096973, + -0.018428495153784752, + -0.01180687639862299, + 0.009113701991736889, + 0.01558450236916542, + -0.0012693828903138638, + 0.027750469744205475, + 0.0139398705214262, + 0.0074762520380318165, + 0.006862208247184753, + 0.013990143314003944, + -0.00743316113948822, + -0.010313061997294426, + -0.004571214783936739, + -0.007770705968141556, + 0.02436066046357155, + 0.0034831722732633352, + -0.017308134585618973, + -0.005217576399445534, + 0.00016776232223492116, + -0.004966213367879391, + 0.018241768702864647, + -0.009695427492260933, + 0.0010934288147836924, + -0.01562759280204773, + 0.02466229535639286, + -0.013394054025411606, + 0.016561226919293404, + 0.023484481498599052, + -0.030939187854528427, + 0.03272027149796486, + -0.013882416300475597, + 0.012675873935222626, + 0.001562938909046352, + -0.0014866322744637728, + 0.005734665784984827, + 0.006291255354881287, + -0.015325957909226418, + -0.0008829123107716441, + -0.016963407397270203, + 0.004431169480085373, + -0.016848498955368996, + 0.011419059708714485, + 0.0018358471570536494, + -0.015139230526983738, + -0.010054517537355423, + -0.006639572791755199, + -0.006021937821060419, + 0.008603794500231743, + -0.0312839150428772, + -0.02436066046357155, + 0.01671922579407692, + -0.008603794500231743, + -0.026960471644997597, + 0.02243593893945217, + 0.01108151488006115, + 0.013638234697282314, + 0.0078209787607193, + 0.003305422607809305, + -0.0107152434065938, + 0.006646754220128059, + 0.00743316113948822, + 0.007059707771986723, + -0.019807400181889534, + 0.006337936967611313, + -0.012604055926203728, + 0.004984167870134115, + 0.010822970420122147, + -0.0038997165393084288, + 0.032433003187179565, + -0.008891066536307335, + -0.004560442175716162, + 0.01636013574898243, + 0.005016486160457134, + 0.012295238673686981, + 0.019534491002559662, + -0.003339536255225539, + -0.0033269680570811033, + -0.00907779298722744, + 0.009659518487751484, + 0.003075605258345604, + 0.011318514123558998, + 0.001031485735438764, + 0.011842785403132439, + 0.0033592861145734787, + 4.090258516953327e-5, + -0.011390332132577896, + -0.010930697433650494, + -2.1966203348711133e-5, + -0.01706395298242569, + -0.009494337253272533, + 6.0989179473835975e-5, + 0.02243593893945217, + -0.0035908992867916822, + 0.02535174787044525, + 0.0012209056876599789, + -0.012819509953260422, + -0.0012460419675335288, + -0.009149610996246338, + 0.0012020535068586469, + 0.01671922579407692, + 0.022622665390372276, + -0.005400712136179209, + -0.013602325692772865, + 0.003102536778897047, + -0.012639964930713177, + 0.005702347960323095, + -0.006991480477154255, + 0.030565733090043068, + 0.0035926946438848972, + 0.010413607582449913, + 0.009508701041340828, + -0.0008196227136068046, + -0.02324029989540577, + -0.0034005814231932163, + 0.010772697627544403, + -0.012417329475283623, + -0.010219698771834373, + -0.002874514786526561, + -0.008402704261243343, + -0.00294094649143517, + 0.0145431412383914, + -0.013882416300475597, + -0.004018216393887997, + -0.010873242281377316, + -0.012410147115588188, + -0.0007828160305507481, + -0.004689714405685663, + 0.009616428054869175, + -0.005835211370140314, + 0.003928443882614374, + 0.0032784908544272184, + -0.007569615263491869, + 0.0005058679380454123, + 0.023024845868349075, + 0.0029229919891804457, + -0.01667613536119461, + 0.030910460278391838, + 0.0174374058842659, + -0.0078209787607193, + -0.015512684360146523, + -0.006036301609128714, + -0.0020575851667672396, + 0.012582510709762573, + 0.0055335755459964275, + -0.007907159626483917, + -0.008438613265752792, + -0.0025495383888483047, + 0.004359351471066475, + -0.01505304966121912, + 0.0009524860070087016, + 0.020195217803120613, + -0.0015449844067916274, + -0.012273693457245827, + -6.54778050375171e-5, + 0.0033341499511152506, + 0.022421574220061302, + -0.022306665778160095, + 0.012230603024363518, + -0.014277415350079536, + -0.00407926132902503, + -0.028684101998806, + 0.01781086064875126, + -0.011354423128068447, + 0.0355355367064476, + 0.010104790329933167, + 0.008338067680597305, + -0.004377305973321199, + -0.028856465592980385, + -0.010018608532845974, + -0.00891979318112135, + -0.0026464927941560745, + 0.0023376753088086843, + 0.005853165872395039, + 0.012187511660158634, + -0.008984429761767387, + 0.013702871277928352, + 0.005300167016685009, + 0.008395521901547909, + -0.021100124344229698, + 0.01052133459597826, + -0.022622665390372276, + -0.017494861036539078, + -0.006653936114162207, + 0.009767245501279831, + 0.004380897153168917, + -0.021229395642876625, + -0.006855026353150606, + 0.015167958103120327, + 0.011979239992797375, + -0.013645417056977749, + 0.006941208150237799, + 0.0003310360189061612, + 0.006826299242675304, + -0.011232332326471806, + -0.014306141994893551, + 0.023498844355344772, + -0.0030307190027087927, + 0.012948782183229923, + -0.013185781426727772, + 0.0027452423237264156, + -0.034644994884729385, + -0.008251885883510113, + -0.016848498955368996, + -0.0015009958297014236, + -0.0017882677493616939, + 0.014255870133638382, + -0.013286327011883259, + 0.005587439052760601, + -0.0071494802832603455, + -0.035765357315540314, + -0.01816995069384575, + -0.0029140147380530834, + -0.01160578615963459, + 0.012618419714272022, + -0.010284335352480412, + -0.0276211965829134, + 0.0033197863958775997, + -0.014679595828056335, + 0.02502138540148735, + -1.1943948265979998e-5, + -0.012790783308446407, + -0.019161038100719452, + 0.026400290429592133, + 0.00716384407132864, + 0.030307188630104065, + 0.02324029989540577, + 0.0008918895618990064, + -0.009084975346922874, + -0.008661248721182346, + 0.0053899395279586315, + -0.010851697064936161, + 0.007971796207129955, + 0.012984691187739372, + -0.02140175923705101, + 0.008898247964680195, + 0.035794083029031754, + 0.017150133848190308, + -0.01253223791718483, + -0.00014015728083904833, + 0.004301897250115871, + 0.0282819215208292, + 0.041539520025253296, + 0.02211993932723999, + 0.0014929163735359907, + 0.004567623604089022, + 0.023484481498599052, + 0.011483695358037949, + 0.009120884351432323, + -0.009472792036831379, + 0.014406687580049038, + -0.011347241699695587, + 0.003777625970542431, + -0.001206542132422328, + -0.007289525121450424, + 0.02398720569908619, + -0.009939609095454216, + 0.02177521213889122, + 0.007871250621974468, + 0.010183789767324924, + -0.005659257061779499, + -0.0023125391453504562, + -0.008567885495722294, + 0.01602977328002453, + 0.005964483600109816, + 0.014708323404192924, + -0.005810074973851442, + -0.0276211965829134, + 0.023800479248166084, + -0.002050403505563736, + -0.028195740655064583, + -0.007311070803552866, + -0.0018870175117626786, + -0.010442335158586502, + 0.0008263556519523263, + 0.010226881131529808, + 0.003377240616828203, + 0.013128327205777168, + 0.012381420470774174, + -0.015742501243948936, + 0.003511899383738637, + 0.017523588612675667, + -0.01964939944446087, + 0.016819771379232407, + 0.0008891964098438621, + 0.008668431080877781, + 0.019362129271030426, + -0.012747691944241524, + 0.006646754220128059, + -0.011253878474235535, + 0.020209580659866333, + 0.014995595440268517, + -0.030278461053967476, + 0.001687722629867494, + -0.024518659338355064, + 0.0031887185759842396, + 0.006032710429280996, + 0.0022227666340768337, + -0.014643686823546886, + -0.006987889762967825, + 0.005336076021194458, + -0.01107433345168829, + 0.003928443882614374, + -0.007325434125959873, + -0.0050631677731871605, + 0.00907061155885458, + 0.009501519612967968, + -0.004869259428232908, + 0.011196423321962357, + -0.004646623507142067, + 0.0014067348092794418, + 0.010894788429141045, + -0.006366664078086615, + 0.03251918405294418, + 0.009752881713211536, + 0.005537166725844145, + 0.01884503848850727, + 0.0018977902363985777, + -0.027865378186106682, + -0.014952504076063633, + 0.005127803888171911, + 0.0020342443604022264, + 0.006618027109652758, + 0.0018196881283074617, + 0.015081776306033134, + -0.00552639365196228, + 0.01272614672780037, + 0.02288120985031128, + 0.02361375279724598, + 0.017710315063595772, + -0.022048121318221092, + 0.018213041126728058, + -0.007214116398245096, + 0.004423987586051226, + -0.0071458895690739155, + -0.0013789052609354258, + 0.007641433272510767, + 0.009214247576892376, + -0.02365684323012829, + -0.0019390855450183153, + -0.001586279715411365, + -0.005698756780475378, + 0.025481021031737328, + 0.007343388628214598, + 0.004571214783936739, + -0.009465610608458519, + 0.012826692312955856, + 0.010442335158586502, + 0.00039769208524376154, + 0.02214866690337658, + -0.013688507489860058, + 0.0039751254953444, + 0.02979009971022606, + -0.0003756978258024901, + -0.007045343983918428, + 0.0025836520362645388, + 0.025524111464619637, + 0.015282866545021534, + -0.01305650919675827, + 0.0016796430572867393, + -0.005472530145198107, + 0.008172886446118355, + 0.027491923421621323, + -0.005670029670000076, + 0.010506970807909966, + -0.002158130519092083, + 0.019132310524582863, + 0.008926975540816784, + -0.0017864723922684789, + -0.011203605681657791, + -0.01127542369067669, + 0.00598602881655097, + 0.00019604065164458007, + -0.00371658056974411, + 0.005196031183004379, + -0.009810336865484715, + -0.013681326061487198, + 0.02434629574418068, + 0.007397252134978771, + -0.014464141800999641, + -0.0028547649271786213, + -0.006926844362169504, + -0.03381190821528435, + 0.008747430518269539, + -0.00923579279333353, + -0.004499396774917841, + 0.01638886332511902, + 0.00644925469532609, + 0.011261059902608395, + -0.01706395298242569, + 0.0025998109485954046, + 0.035363174974918365, + -0.0006225721444934607, + 0.012431693263351917, + -0.0279515590518713, + 0.0016688704490661621, + -0.023455753922462463, + 0.005666438955813646, + 0.007907159626483917, + -0.0048082140274345875, + -0.01284823752939701, + -0.010930697433650494, + 0.016604317352175713, + -0.0030684233643114567, + -0.003089968813583255, + 0.01739431545138359, + 0.023412663489580154, + 0.00690170843154192, + 0.01745177060365677, + -0.008388340473175049, + -0.007849705405533314, + -0.009558973833918571, + 0.01852903887629509, + -0.00294094649143517, + -0.006118892226368189, + -0.007540888153016567, + -0.01746613346040249, + 0.016834136098623276, + -0.00907779298722744, + -0.006955571938306093, + -0.004941077437251806, + -0.022694483399391174, + 0.009767245501279831, + 0.014686777256429195, + 0.009939609095454216, + -0.010104790329933167, + -0.0032497637439519167, + 0.022996118292212486, + -0.010901969857513905, + 0.017954496666789055, + -0.005835211370140314, + 0.0011419059010222554, + 0.012266512028872967, + -0.01342278067022562, + 0.0057885292917490005, + -0.0012343715643510222, + 0.01740867830812931, + 0.0025782654993236065, + -0.0031079233158379793, + 0.015756865963339806, + 0.01636013574898243, + -0.002036039950326085, + 0.00830934103578329, + -0.007756342180073261, + 0.010147880762815475, + 0.010348971001803875, + -0.020554305985569954, + -0.0005485098226927221, + -0.006578527390956879, + -0.006201482843607664, + 0.02217739261686802, + 0.01237423811107874, + 0.00851761270314455, + 0.00490157725289464, + -0.02392975240945816, + 0.014981231652200222, + 0.027348287403583527, + 0.040763888508081436, + -0.017954496666789055, + 0.00391767080873251, + -0.005084713455289602, + 0.013860871084034443, + 0.00963797327131033, + -0.014708323404192924, + -0.01397577952593565, + -0.029287373647093773, + 0.008029250428080559, + -0.009501519612967968, + 0.0006827196921221912, + -0.010234062559902668, + 0.0057167112827301025, + -0.012604055926203728, + -0.015785593539476395, + 0.0002892918128054589, + -0.0001440848282072693, + 0.003186922986060381, + -0.0036842625122517347, + 0.03234681859612465, + -0.015756865963339806, + 0.027075380086898804, + -0.03562172129750252, + -0.0018493130337446928, + 0.013508962467312813, + -0.002668038010597229, + 0.0018762447871267796, + -0.005016486160457134, + 0.011469331569969654, + 0.017494861036539078, + -0.008208795450627804, + -0.01956321857869625, + -0.004707668907940388, + -0.008022068999707699, + 0.0053181215189397335, + 0.016216501593589783, + -0.015110503882169724, + 0.01236705668270588, + -0.014392323791980743, + 0.013315054588019848, + -0.009171156212687492, + -0.006582118105143309, + -0.03450135886669159, + -0.00851761270314455, + -0.024935204535722733, + 0.004380897153168917, + -0.01999412663280964, + 0.01963503658771515, + 0.022694483399391174, + 0.007092026062309742, + -0.018945584073662758, + -0.00027560151647776365, + 0.026041200384497643, + -0.002448993269354105, + 0.005009304266422987, + 0.009867791086435318, + -0.009882154874503613, + -0.01249632891267538, + -0.017193226143717766, + 0.03016355261206627, + -0.062280554324388504, + -0.014737050049006939, + -9.661763033363968e-5, + 0.002969673601910472, + -0.026213563978672028, + -1.6299316484946758e-5, + -0.006567754782736301, + -0.007454706821590662, + -0.028741557151079178, + -0.018974311649799347, + -0.0015782001428306103, + -0.023484481498599052, + 0.0010521335061639547, + -0.015311594121158123, + -0.015814319252967834, + 0.03447263315320015, + 0.014306141994893551, + -0.012941600754857063, + -0.015685047954320908, + -0.00762706995010376, + -0.005928574595600367, + -0.02433193288743496, + 0.005321712698787451, + -0.007777887396514416, + 0.0029589009936898947, + 0.015139230526983738, + -0.008424249477684498, + 0.015713775530457497, + -0.013846507295966148, + 0.01627395488321781, + 0.0015198481269180775, + 0.008704339154064655, + -0.00330362725071609, + -0.014485687017440796, + -0.00463585089892149, + -0.03220318257808685, + -0.01489504985511303, + 0.03478863090276718, + -0.012654328718781471, + -0.004865668248385191, + 0.002305357251316309, + -0.018658312037587166, + -0.0035280585289001465, + -0.010463880375027657, + -0.005404303316026926, + -0.015167958103120327, + -0.018026314675807953, + -0.0032030821312218904, + 0.019678127020597458, + -0.0009219633648172021, + 0.00831652246415615, + 0.014478505589067936, + -0.00891979318112135, + 0.03346718102693558, + -0.005142167676240206, + -0.0024023116566240788, + -0.014205597341060638, + -0.01236705668270588, + -0.008079523220658302, + 0.00226944824680686, + -0.0018187904497608542, + -0.014219961129128933, + -0.023498844355344772, + -0.0275493785738945, + 0.008129796013236046, + 0.008826429955661297, + -0.021229395642876625, + -0.006492345593869686, + 0.0159723199903965, + -0.01745177060365677, + 0.007598342839628458, + -0.027793560177087784, + -0.01541213970631361, + 0.011842785403132439, + 0.007030980661511421, + -0.0023681980092078447, + 0.007943068630993366, + 0.01816995069384575, + -0.003522671991959214, + -0.004596351180225611, + 0.014837595634162426, + -0.0010431562550365925, + 0.029474100098013878, + 0.003039696253836155, + 0.01269023772329092, + 0.001666177180595696, + 0.011095878668129444, + 0.013688507489860058, + -0.018385404720902443, + 0.0018726539565250278, + 0.018701402470469475, + 0.0009264519903808832, + -0.012560965493321419, + 0.0014094279613345861, + -0.028597921133041382, + -0.016834136098623276, + -0.014018869958817959, + -0.005673620849847794, + 0.006973526440560818, + -0.016216501593589783, + -0.0036268080584704876, + -0.005594620946794748, + 0.005731075070798397, + -0.03458753973245621, + 0.023829206824302673, + -0.021258123219013214, + -0.00267881085164845, + 0.03047955222427845, + 0.01704959012567997, + 0.004499396774917841, + 0.0011059968965128064, + -0.002470538718625903, + 0.00607939250767231, + -0.023355208337306976, + -0.025955019518733025, + 0.021918848156929016, + 0.0068945265375077724, + 0.012711782939732075, + -3.015794209204614e-5, + -0.0052068037912249565, + -0.0054258485324680805, + 0.016905954107642174, + -0.01236705668270588, + -0.012108512222766876, + -0.017552314326167107, + 0.0007693501538597047, + 0.015498320572078228, + -0.002953514689579606, + 0.006039892323315144, + -0.006373845972120762, + -0.020855942741036415, + -0.0015782001428306103, + 0.021315578371286392, + -0.0025190156884491444, + 0.02789410576224327, + 0.027678651735186577, + -0.008840793743729591, + -0.004348578862845898, + -0.028138285502791405, + -0.00024664989905431867, + 0.016920316964387894, + -0.00463585089892149, + -0.0027326743584126234, + 0.012481965124607086, + 0.0166330449283123, + -0.020539943128824234, + 0.005555121228098869, + -0.0019265174632892013, + -0.01920412853360176, + 0.008503248915076256, + -0.00891261175274849, + -0.0021886529866605997, + 0.004007443320006132, + -0.008122613653540611, + -0.006115301512181759, + -0.004607123788446188, + -0.029258646070957184, + -0.015756865963339806, + -0.012467602267861366, + -0.0213586688041687, + -0.010729607194662094, + 0.017537951469421387, + -0.03527699410915375, + -0.016173409298062325, + 0.007785069290548563, + -0.006506709381937981, + 0.005695166066288948, + -0.02144484966993332, + 0.0070740715600550175, + -0.012711782939732075, + 0.010815788060426712, + -0.00013993284665048122, + 0.00195704004727304, + 0.011397513560950756, + 0.014981231652200222, + -0.007250025402754545, + 0.01213723886758089, + -0.016446318477392197, + -0.0016482226783409715, + -0.0012029511854052544, + -0.00924297422170639, + -0.0011428036959841847, + 0.03263409063220024, + 0.006255346350371838, + 0.0015234389575198293, + 0.0030666280072182417, + -0.013947052881121635, + 0.004082852508872747, + 0.006197892129421234, + -0.011893058195710182, + 0.004402442369610071, + -0.009975518099963665, + -0.010866060853004456, + -0.022996118292212486, + 0.01108869630843401, + 0.00835961289703846, + 0.002847583033144474, + 0.012338330037891865, + 0.006549800280481577, + 0.011462150141596794, + 0.008488886058330536, + -0.009580519050359726, + 0.014485687017440796, + 0.007454706821590662, + -0.0014570073690265417, + -0.019376492127776146, + -0.008725885301828384, + 0.0018906084587797523, + -0.026572654023766518, + 0.021861394867300987, + 0.007106389384716749, + 0.007741978857666254, + -0.001000065472908318, + 0.020956488326191902, + 0.0021294031757861376, + 0.017494861036539078, + -0.01633141003549099, + 0.0049159410409629345, + -0.004269578959792852, + -0.014227142557501793, + 0.000972235924564302, + -0.019003039225935936, + -0.00670420890673995, + -0.00927888322621584, + -0.018284859135746956, + -0.01285541895776987, + 0.010564425028860569, + -0.05021513253450394, + -0.0021311987657099962, + 0.004248033743351698, + 0.00726797990500927, + -0.013724416494369507, + -0.005512030329555273, + 0.011885875836014748, + -0.02324029989540577, + -0.010449516586959362, + 0.008273432031273842, + 0.010506970807909966, + -0.0008856055210344493, + -0.020137762650847435, + -0.001413018791936338, + 0.006273300852626562, + 0.01381777971982956, + -0.013501781038939953, + -0.007864069193601608, + -0.006021937821060419, + 0.0055299848318099976, + -0.010313061997294426, + -0.003158195875585079, + -0.002883492037653923, + -0.024863386526703835, + 0.006456436589360237, + -0.014392323791980743, + -0.008704339154064655, + 0.020755397155880928, + -0.0025908336974680424, + -0.021588485687971115, + -0.012216239236295223, + -0.007849705405533314, + 0.008948520757257938, + 0.021961938589811325, + 0.04679659754037857, + 0.01811249554157257, + 0.015570138581097126, + -0.022708846256136894, + -0.006319982465356588, + 0.01999412663280964, + -0.00960206426680088, + -0.01920412853360176, + -0.006898117251694202, + 0.02433193288743496, + -0.011354423128068447, + -0.013264781795442104, + -0.00299121905118227, + 0.01847158558666706, + 0.010988151654601097, + -0.009745700284838676, + -0.008934156969189644, + -0.008998793549835682, + -1.8866247046389617e-5, + -0.012762055732309818, + 0.0016060296911746264, + -0.009716973640024662, + 0.002425652462989092, + -0.027348287403583527, + 0.003134855069220066, + -0.010672152042388916, + -0.0014839391224086285, + -0.0044814422726631165, + -0.02180393971502781, + -0.015397775918245316, + 0.0016203932464122772, + 0.012295238673686981, + 0.009228610433638096, + 0.013925506733357906, + 0.009472792036831379, + 0.012058239430189133, + 0.009860608726739883, + 0.009041883982717991, + -0.006829890422523022, + 0.005939347203820944, + -0.0028924692887812853, + -0.025222476571798325, + 0.03378317877650261, + -0.002246107440441847, + 0.011217969469726086, + 0.019448310136795044, + 0.011864330619573593, + 0.0075121610425412655, + 0.013142690993845463, + 0.005034440662711859, + -0.022795027121901512, + 0.0007109980215318501, + -0.009788790717720985, + -0.012769237160682678, + 0.0023251071106642485, + -0.0016715636011213064, + 0.007307479623705149, + 0.01127542369067669, + 0.0024561749305576086, + 0.015311594121158123, + -0.008122613653540611, + 0.0276211965829134, + -0.001339405425824225, + -0.0027057426050305367, + 0.0047758957371115685, + -0.013882416300475597, + 0.0012137239100411534, + 0.004068488720804453, + -0.020152125507593155, + 0.037172988057136536, + 0.020812852308154106, + 0.005379166919738054, + -0.0507034957408905, + 0.0016688704490661621, + -0.0069699352607131, + 0.0178395863622427, + -0.012762055732309818, + 0.019003039225935936, + -0.018744492903351784, + 0.009400974027812481, + -0.003562171943485737, + 0.003475990379229188, + -0.01396859809756279, + -0.0020180854480713606, + -0.0032282182946801186, + 0.007192571181803942, + -0.0026482881512492895, + -0.0015952569665387273, + 0.0052391220815479755, + -0.026558291167020798, + 0.011713513173162937, + 0.02035321667790413, + 0.004908759146928787, + -0.018414130434393883, + -0.00798615999519825, + -0.008661248721182346, + -0.022335393354296684, + 0.027061015367507935, + -0.019333401694893837, + 0.030967915430665016, + 0.014284596778452396, + 0.02000848948955536, + -0.009106520563364029, + 0.012668692506849766, + 0.004046943504363298, + -0.0112466961145401, + -0.0007864069193601608, + 0.0016464273212477565, + -0.00798615999519825, + -0.002580061089247465, + -0.02970391884446144, + -0.037144262343645096, + 0.02654392644762993, + 5.958648398518562e-5, + 0.010614697821438313, + 0.00376326241530478, + -0.00815852265805006, + 0.008632522076368332, + -0.006768845021724701, + 0.014377960003912449, + -0.019706854596734047, + 0.006054256111383438, + -0.006865799427032471, + 0.0012819509720429778, + -0.0027075379621237516, + 0.013559235259890556, + -0.01811249554157257, + 0.014521596021950245, + -0.020755397155880928, + 0.010657789185643196, + 0.007382888812571764, + 0.027089742943644524, + -0.002185062039643526, + 0.008445794694125652, + -0.011648876592516899, + -0.009910881519317627, + 0.009652337059378624, + 0.012553783133625984, + -9.8076430731453e-5, + 0.022306665778160095, + 0.007127935066819191, + -0.02678810805082321, + 0.004966213367879391, + 0.006743708625435829, + -0.008022068999707699, + -0.010111971758306026, + 0.01702086254954338, + -0.010427971370518208, + -0.014047597534954548, + -0.027707377448678017, + -0.007318252697587013, + -0.008065159432590008, + -0.009623609483242035, + 0.005634120665490627, + 0.0074762520380318165, + -0.0010260994313284755, + 0.019132310524582863, + 0.00348496763035655, + 0.018327949568629265, + 0.0006948389927856624, + -0.0049877590499818325, + 0.023383935913443565, + -0.002716515213251114, + 0.013365326449275017, + -0.0017765973461791873, + -0.0007949353312142193, + 0.006330755073577166, + 0.002000130945816636, + -0.008962884545326233, + 0.013465872034430504, + 0.005727484356611967, + -0.0032766954973340034, + -0.005450984928756952, + 0.017351225018501282, + 0.017121408134698868, + 0.007490615826100111, + 0.009853427298367023, + 0.018241768702864647, + 0.018629584461450577, + -0.02071230672299862, + -0.026199201121926308, + -0.015153594315052032, + 0.01598668284714222, + 0.007382888812571764, + -0.0221630297601223, + 0.00598243810236454, + -0.0052822125144302845, + -0.02064048871397972, + 0.022306665778160095, + -0.0045891692861914635, + 0.006869390141218901, + 0.01567068323493004, + 0.014342050999403, + 0.015871774405241013, + 0.01814122311770916, + -0.0046645780093967915, + 0.03226063773036003, + -0.00830934103578329, + 0.018801948055624962, + -0.002427447820082307, + 0.03820716589689255, + 0.036052629351615906, + 0.010205335915088654, + -0.008215976879000664, + 0.008129796013236046, + -0.0025244022253900766, + 0.002668038010597229, + 0.004449123982340097, + 0.005838802084326744, + 0.00516012217849493, + -0.009049066342413425, + -0.012762055732309818, + -0.0023735843133181334, + 0.005968074314296246, + -0.02460484206676483, + -0.003522671991959214, + -0.0033987860661000013, + -0.0014713709242641926, + -0.012675873935222626, + 0.025955019518733025, + 0.012431693263351917, + -0.002125812228769064, + -0.0159723199903965, + -0.0048836227506399155, + 0.020381944254040718, + 0.012589692138135433, + -0.007253616116940975, + 0.001527029904536903, + 0.003027128055691719, + 0.00516012217849493, + -0.0028026967775076628, + -0.007641433272510767, + -6.839540583314374e-5, + -0.0021796757355332375, + 0.0159723199903965, + -0.005504848435521126, + 0.003427513176575303, + -0.0013043940998613834, + 0.04030425101518631, + -0.026759380474686623, + -0.011325695551931858, + -0.006761663127690554, + -0.0019336992409080267, + -0.0018008359475061297, + 0.02935919165611267, + -0.010334608145058155, + -0.011849966831505299, + -0.007540888153016567, + -0.00012029512436129153, + 0.006793981418013573, + 0.00443835137411952, + -0.007540888153016567, + -0.018959946930408478, + 0.0035531946923583746, + 0.005766984075307846, + 0.008230340667068958, + 0.0036124445032328367, + 0.011160514317452908, + -0.009041883982717991, + -0.014392323791980743, + -0.031714823096990585, + 0.010550062172114849, + 0.013336599804461002, + 0.0071889800019562244, + -0.002413084264844656, + 0.005673620849847794, + 0.025653384625911713, + -0.006097347009927034, + -0.010298699140548706, + 0.004097215831279755, + 0.0032497637439519167, + -0.0048046233132481575, + 0.00249747047200799, + -0.01141187734901905, + 0.004678941797465086, + 0.029531555250287056, + -0.007720433175563812, + 0.0013510758290067315, + 0.03737407922744751, + 0.006126074120402336, + 0.00963079184293747, + 0.023786116391420364, + 0.007662978954613209, + -0.0005233735428191721, + 0.017997587099671364, + -0.0018959947628900409, + 0.00634870957583189, + -0.003210263792425394, + -0.002644697204232216, + 0.009400974027812481, + -0.007138707675039768, + 0.015081776306033134, + -0.022277938202023506, + -0.011742240749299526, + 0.003669898957014084, + 0.02799464948475361, + 0.014061961323022842, + 0.011454968713223934, + 0.00463585089892149, + -0.007777887396514416, + -0.020927760750055313, + -0.0018107108771800995, + 0.01432768814265728, + -0.0033610817044973373, + -0.028382467105984688, + -0.012776419520378113, + 0.004923122934997082, + 0.013911143876612186, + -0.0015009958297014236, + -0.012395784258842468, + 0.004018216393887997, + -0.013027782551944256, + 0.013710052706301212, + 0.006485163699835539, + 0.018787585198879242, + -0.003748898860067129, + -0.018026314675807953, + 0.012266512028872967, + 0.0026913790497928858, + -0.007203343790024519, + -0.018931221216917038, + -0.010018608532845974, + 0.004208534024655819, + 0.015282866545021534, + 0.01140469592064619, + 0.0033233771100640297, + 0.01959194615483284, + -0.0012352693593129516, + 0.008768975734710693, + -0.008395521901547909, + -0.009932426735758781, + 0.003547808388248086, + 0.006736526731401682, + -0.002984037157148123, + 0.014909413643181324, + -0.011210787110030651, + 0.007892796769738197, + 0.012417329475283623, + -0.0043378062546253204, + 0.007497797720134258, + 0.018442858010530472, + 0.004093625117093325, + -0.004090033937245607, + 0.009760064072906971, + -0.003860216587781906, + -0.0009210656280629337, + 0.03924134746193886, + -0.0009237588383257389, + 0.03369699791073799, + -0.004826168529689312, + 0.004362942650914192, + -0.010133517906069756, + -0.007088434882462025, + 0.004542487673461437, + -0.0012891327496618032, + -0.009041883982717991, + 0.006556981708854437, + -0.003115104977041483, + 0.024173934012651443, + 0.026012472808361053, + 0.005231940187513828, + -0.01249632891267538, + 0.00818725023418665, + -0.0034113542642444372, + 0.001333121326752007, + 0.011512422934174538, + 0.0048477137461304665, + 0.021703394129872322, + -0.004165443126112223, + -0.017121408134698868, + 0.0023215163964778185, + -0.02065485157072544, + 0.013789053075015545, + -0.012582510709762573, + -0.016862861812114716, + 0.013860871084034443, + -0.0016374500701203942, + -0.00779225118458271, + -0.012259329669177532, + 0.010061699897050858, + 0.011986421421170235, + -0.005339667201042175, + 0.01396859809756279, + 0.01505304966121912, + 0.020827215164899826, + -0.004542487673461437, + -0.030651915818452835, + 0.0019606309942901134, + 0.019534491002559662, + 0.008855157531797886, + -0.01927594654262066, + 0.01453595981001854, + -0.011979239992797375, + 0.022665755823254585, + 0.0014812458539381623, + 0.01709268055856228, + -0.012309602461755276, + 0.0010431562550365925, + -0.013659780845046043, + 0.007914341986179352, + 0.004416806157678366, + 0.026658834889531136, + 0.007382888812571764, + -0.014808868058025837, + -0.014686777256429195, + -0.0008860543603077531, + -0.014909413643181324, + -0.008122613653540611, + 0.0008259068126790226, + 0.0016868248349055648, + -0.010068881325423717, + 0.013566416688263416, + -0.026630109176039696, + 0.0030827869195491076, + 0.0038458530325442553, + 0.020195217803120613, + -0.013350963592529297, + -0.016848498955368996, + -0.013487417250871658, + -0.030278461053967476, + -0.006158391945064068, + -0.005863938480615616, + -0.016877226531505585, + 0.00851043127477169, + -0.016963407397270203, + 0.002217380329966545, + 0.007300298195332289, + -0.006129664834588766, + -0.0010530311847105622, + -0.000843861314933747, + -0.002181471325457096, + -0.0037596714682877064, + 0.006416936870664358, + -0.0009093952248804271, + 0.012539420276880264, + -0.0022227666340768337, + -0.02724774368107319, + -0.0034221268724650145, + 0.0018852220382541418, + 0.001509973080828786, + 0.0028655375353991985, + 0.003896125592291355, + -0.016561226919293404, + -0.00013544423563871533, + 0.008503248915076256, + 0.02028139866888523, + 0.010909151285886765, + -0.030221007764339447, + -0.004653805401176214, + 0.0075121610425412655, + -0.010952242650091648, + -0.020626123994588852, + -0.0020701533649116755, + 0.003824307583272457, + -0.01322169043123722, + 0.00996115431189537, + 0.015397775918245316, + 0.019017402082681656, + -0.004908759146928787, + 0.014622141607105732, + 0.02243593893945217, + 0.013903961516916752, + -0.013063691556453705, + 0.006585709284991026, + 0.022622665390372276, + 0.021545395255088806, + -0.008424249477684498, + 0.013401235453784466, + 0.037259168922901154, + 0.0024687431287020445, + 0.008417068049311638, + -0.004560442175716162, + -0.013350963592529297, + 0.01782522350549698, + -0.014442596584558487, + -0.007741978857666254, + -0.000570504111237824, + -0.007806614972651005, + 0.004384487867355347, + 0.022392846643924713, + 0.008230340667068958, + -0.00039253017166629434, + 0.011332877911627293, + -0.018040677532553673, + 0.02576829306781292, + 0.006262528244405985, + 0.01361668948084116, + 0.012402965687215328, + 0.006219437345862389, + 0.017954496666789055, + 0.0026195610407739878, + -0.010858879424631596, + -0.004456305876374245, + -0.0038781710900366306, + 0.009918063879013062, + 0.009343519806861877, + -0.015268503688275814, + -0.017509223893284798, + -0.0015665297396481037, + 0.008201614022254944, + -0.007849705405533314, + -0.005221167579293251, + 0.03306499868631363, + 0.005648484453558922, + 0.014808868058025837, + -0.004671759903430939, + 0.010068881325423717, + -0.010277152992784977, + -0.0013528713025152683, + -0.012999054975807667, + -0.006416936870664358, + -0.006671890616416931, + -0.007899978198111057, + 0.004000261891633272, + 0.01212287601083517, + -0.047687139362096786, + -0.004366533365100622, + 0.010851697064936161, + 0.004564032889902592, + -0.0011212582467123866, + 0.006133256014436483, + 0.019390854984521866, + 0.008180067874491215, + 0.006668299902230501, + -0.00250106118619442, + -0.00753370625898242, + 0.026041200384497643, + 0.005501257721334696, + 0.030422097072005272, + -0.013142690993845463, + -0.006944798864424229, + 0.03289263695478439, + 0.006747299339622259, + 0.01671922579407692, + 0.018299221992492676, + -0.006273300852626562, + -0.0011086901649832726, + 0.005978846922516823, + -0.008488886058330536, + -0.01565632037818432, + -0.006926844362169504, + 0.016848498955368996, + -0.02502138540148735, + -0.010492607019841671, + -0.029991190880537033, + -0.009408155456185341, + 0.00818725023418665, + 0.013738780282437801, + -0.022306665778160095, + 0.027290834113955498 + ], + "58d991d1-5ea2-42ee-83fb-faf19c4bae58": [ + -0.033869531005620956, + -0.022132135927677155, + -0.022449752315878868, + 0.048133425414562225, + -0.027069637551903725, + 0.0003212263691239059, + 0.005958929657936096, + 0.021410278975963593, + -0.019519012421369553, + 0.03138634189963341, + 0.026116786524653435, + 0.023676909506320953, + 0.0220022015273571, + 0.011102160438895226, + -0.034071650356054306, + 0.039990875869989395, + -0.03170396015048027, + 0.005330913700163364, + 7.29188323020935e-5, + -0.027040762826800346, + 0.049375019967556, + -0.0051865424029529095, + -0.04706507548689842, + -0.01859503611922264, + 0.014884691685438156, + -0.014682571403682232, + -0.005825385916978121, + 0.006475057452917099, + -0.055554114282131195, + 0.011116597801446915, + 0.007171649020165205, + 0.0023676909040659666, + -0.016025224700570107, + 0.01053189393132925, + 0.03095322847366333, + -0.035977352410554886, + 0.00683598592877388, + 0.017411191016435623, + 0.00201939488761127, + -0.004518824629485607, + -0.04972150921821594, + 0.03000037744641304, + 0.009340829215943813, + 0.017180196940898895, + -0.021150410175323486, + -0.003457695012912154, + -0.03398502618074417, + -0.016617147251963615, + -0.0021529383957386017, + -0.004807567689567804, + 0.0020320273470133543, + 0.004912236705422401, + -0.04501500353217125, + 0.007976519875228405, + 0.042820557951927185, + -0.052493441849946976, + 0.02143915183842182, + 0.060866981744766235, + 0.010221495293080807, + -0.056131601333618164, + -0.013700845651328564, + -0.03667033463716507, + -0.00929751805961132, + -0.02204551175236702, + -0.026723146438598633, + -0.0019381860038265586, + -0.008979900740087032, + 0.0006880199653096497, + -0.023301543667912483, + 0.0048833624459803104, + -0.0029541996773332357, + 0.06473613530397415, + -0.03583298251032829, + -0.004515215288847685, + -0.01918695867061615, + 0.012098323553800583, + 0.050241246819496155, + -0.008532349951565266, + 0.010943352244794369, + -0.02164127305150032, + 0.024774132296442986, + 0.01862391084432602, + 0.004338360391557217, + 0.008705595508217812, + 0.03684357926249504, + -0.0023261841852217913, + -0.03077998198568821, + -0.0448128804564476, + 0.0178443044424057, + -0.04215644672513008, + -0.011419777758419514, + 0.021309219300746918, + 0.0023370119743049145, + -0.02922077104449272, + -0.0005107138422317803, + 0.03358078747987747, + 0.022088823840022087, + 0.0069587016478180885, + 0.0062115793116390705, + -0.014574293047189713, + -0.007200523745268583, + 0.014105085283517838, + 0.020789481699466705, + -0.02413889765739441, + 0.01634284295141697, + 0.005222635343670845, + -0.016833705827593803, + 0.011831236071884632, + -0.020457427948713303, + 0.01821967028081417, + 0.003973822575062513, + -0.05113634839653969, + -0.004489950370043516, + 0.011426996439695358, + -0.033147674053907394, + -0.027040762826800346, + -0.03892252966761589, + -0.0224064402282238, + -0.022449752315878868, + 0.006897343788295984, + 0.049634888768196106, + 0.02600128948688507, + 0.00267808954231441, + 0.003201435785740614, + -0.028397854417562485, + 0.0007588521693833172, + 0.011549712158739567, + -0.006428136490285397, + 0.022897303104400635, + 0.021742332726716995, + -0.03173283487558365, + 0.00717886770144105, + 0.02582804299890995, + 0.0013002449413761497, + 0.005756809376180172, + 0.013152234256267548, + 0.026521025225520134, + 0.06150221452116966, + -0.022724058479070663, + 0.028426729142665863, + -0.039038024842739105, + -0.02847003936767578, + -0.00304262712597847, + 0.014740319922566414, + 0.005951710976660252, + 0.010474145412445068, + -0.042820557951927185, + 0.05416814982891083, + -0.01976444385945797, + 0.022074386477470398, + -0.03912464901804924, + -0.007889896631240845, + -0.003122031455859542, + -0.016068536788225174, + 0.04634321853518486, + -0.017050262540578842, + 0.000201443224796094, + 0.021699020639061928, + 0.021309219300746918, + 0.05506325140595436, + 0.029191896319389343, + -0.04677633196115494, + 0.000912246759980917, + 0.02847003936767578, + 0.03539986535906792, + 0.03476463258266449, + 0.04461076110601425, + 0.013924621045589447, + 0.021381404250860214, + 0.024167772382497787, + 0.027271756902337074, + -0.02620340883731842, + 0.028989776968955994, + 0.011975607834756374, + 0.011131035163998604, + -0.02237756736576557, + 0.06335017085075378, + 0.027661560103297234, + 0.030635610222816467, + -0.05722882226109505, + -0.029913753271102905, + -0.030866604298353195, + 0.018349604681134224, + 0.013412103056907654, + 0.021886704489588737, + 0.050991978496313095, + 0.03418714553117752, + 0.04007750004529953, + -0.0032952772453427315, + -0.03719007223844528, + 0.019591199234128, + 0.024774132296442986, + -0.018089735880494118, + -0.01689145341515541, + -0.023503663018345833, + -0.03869153559207916, + 0.006254890933632851, + 0.021727895364165306, + 0.007608372718095779, + 0.0346202626824379, + -0.02487519197165966, + -0.02639109082520008, + -0.020067624747753143, + 0.025712545961141586, + -0.0071030729450285435, + 0.03932676836848259, + -0.016400590538978577, + -0.012343754991889, + 0.06693057715892792, + -0.020082062110304832, + 0.04859541356563568, + -0.03508225083351135, + -0.00827248115092516, + -0.005749591160565615, + -0.02165571041405201, + 0.0036634241696447134, + 0.008489037863910198, + 0.017194634303450584, + -0.00796930119395256, + -0.04576573520898819, + 0.007391815539449453, + 0.006969529204070568, + -0.013816342689096928, + -0.00697313854470849, + -0.04079935699701309, + 0.019851068034768105, + -0.031444091349840164, + 0.03574635833501816, + -0.04859541356563568, + 0.005861478857696056, + 0.03565973415970802, + -0.0030101437587291002, + 0.011917859315872192, + -0.013621441088616848, + -0.00033498674747534096, + 0.008286918513476849, + 0.015693170949816704, + -0.005522205960005522, + -0.0018055448308587074, + -0.002907278947532177, + -0.0014031095197424293, + 0.016054099425673485, + -0.006565289571881294, + 0.007723869755864143, + 0.011629115790128708, + 0.03037574328482151, + 0.005125184543430805, + 0.10879828780889511, + -0.007002012804150581, + -0.007586717139929533, + 0.017757682129740715, + 0.006745753809809685, + 0.0012821984710171819, + 0.009413015097379684, + -0.02826792001724243, + 0.02013980969786644, + 0.04180995747447014, + -0.024456515908241272, + -0.01920139603316784, + -0.020284181460738182, + 0.014307205565273762, + -0.01840735413134098, + 0.028051363304257393, + 0.027878116816282272, + 0.027026325464248657, + -0.008496256545186043, + 0.020226433873176575, + 0.017425628378987312, + 0.009348047897219658, + 0.035255495458841324, + 0.0029163022991269827, + -0.009138709865510464, + -0.01876828260719776, + 0.027647122740745544, + -0.010272025130689144, + -0.005749591160565615, + -0.002674480201676488, + -0.010503019206225872, + 0.036554839462041855, + -0.0018623910145834088, + -0.009629572741687298, + 0.030289119109511375, + 0.017526688054203987, + -0.015245620161294937, + 0.0067926743067801, + 0.03773868456482887, + -0.03262793645262718, + 0.0007836659788154066, + -0.026362217962741852, + -0.004861706867814064, + 0.02184339240193367, + -0.006673567928373814, + -0.0054608481004834175, + 0.011925077997148037, + 0.01748337596654892, + -0.014271113090217113, + -0.014473232440650463, + 0.011982826516032219, + 0.0216701477766037, + 0.01349150761961937, + -0.00856122374534607, + 0.012856272980570793, + 0.018089735880494118, + -0.042243070900440216, + 0.029394017532467842, + -0.03652596473693848, + 0.02411002293229103, + 0.05217582359910011, + -0.04536149278283119, + 0.006290983874350786, + 0.013902965933084488, + -0.0047967396676540375, + -0.03571748360991478, + -0.0012921240413561463, + -0.01614072173833847, + 0.011224876157939434, + -0.01726681925356388, + 0.006272937171161175, + -0.02546711452305317, + -0.04616997390985489, + -0.015823105350136757, + -0.006724097765982151, + -0.06000075489282608, + 0.0038041863590478897, + 0.04443751648068428, + -0.03967326134443283, + 0.055727358907461166, + -0.027084074914455414, + -0.02621784619987011, + -0.018349604681134224, + -0.02771930769085884, + 0.007911552675068378, + -0.004688461311161518, + -0.012639716267585754, + -0.05266668647527695, + -0.035428740084171295, + -0.04420652240514755, + -0.03179058060050011, + -0.015418865717947483, + -0.039615511894226074, + -0.01595303975045681, + -0.010503019206225872, + -0.02068842202425003, + -0.0023947604931890965, + -0.014271113090217113, + -0.028830967843532562, + -0.009268644265830517, + -0.0029036698397248983, + -0.005738763138651848, + 0.003044431796297431, + 0.000907735142391175, + -0.019100336357951164, + 0.03626609593629837, + -0.019100336357951164, + 0.04859541356563568, + -0.009485200978815556, + -0.0007390010869130492, + -0.02243531495332718, + 0.020775044336915016, + -0.021699020639061928, + -0.009066523984074593, + -0.047382693737745285, + -0.003358439775183797, + -0.002069924958050251, + -0.0007728381315246224, + 0.010084342211484909, + -0.025683671236038208, + -0.007882677949965, + -0.03950001299381256, + 0.00503495242446661, + -0.027820369228720665, + 0.019057024270296097, + -0.015245620161294937, + -0.0250917486846447, + -0.013513162732124329, + -0.03615059703588486, + 0.03727669641375542, + -0.034822382032871246, + -0.017598873004317284, + 0.04230082035064697, + -0.0046523683704435825, + 0.0043491884134709835, + 0.0067421444691717625, + 0.014567074365913868, + 0.045881230384111404, + 0.021699020639061928, + -0.02548155188560486, + -0.034880131483078, + -0.03075110726058483, + 0.003872762667015195, + -0.01035142969340086, + -0.008691158145666122, + -0.047584813088178635, + 0.021511338651180267, + -0.028816530480980873, + -0.0002686661609914154, + 0.008886059746146202, + -0.023315981030464172, + 0.007373769301921129, + 0.007666121236979961, + -0.016227345913648605, + 0.00375004718080163, + -0.0292496457695961, + 0.012567530386149883, + 0.024557575583457947, + -0.004655977711081505, + -0.017440065741539, + 0.0039593856781721115, + 0.06034724414348602, + 0.0148269422352314, + 0.0062982020899653435, + -0.011412559077143669, + 0.012928458862006664, + 0.01045970804989338, + 0.059712011367082596, + 0.026650959625840187, + 0.01573648303747177, + 0.030231371521949768, + -0.021958889439702034, + -0.022724058479070663, + 0.03742106631398201, + 0.04784468188881874, + 0.00910261645913124, + 0.02104935050010681, + 0.010272025130689144, + 0.028181297704577446, + -0.006507540587335825, + 0.013267731294035912, + -0.019908815622329712, + 0.0015195090090855956, + -0.010142090730369091, + 0.04536149278283119, + 0.009001556783914566, + -0.04475513473153114, + -0.004230082035064697, + 0.0013579934602603316, + 0.01611184887588024, + -0.015404428355395794, + 0.0066555216908454895, + -0.006908171344548464, + -0.0406549870967865, + 0.028152422979474068, + -0.01706469990313053, + -0.034504763782024384, + -0.039586637169122696, + 0.0007159918895922601, + -0.040366243571043015, + 0.018479539081454277, + 0.012639716267585754, + -0.03317654877901077, + -0.00022670821635983884, + 0.04764256253838539, + -0.0410592257976532, + 0.0009230746072717011, + 0.005392271559685469, + -0.0077671813778579235, + 0.02471638284623623, + -0.018580598756670952, + 0.04183883219957352, + -0.06306142359972, + 0.012589186429977417, + -0.006540024187415838, + 0.03641046583652496, + -0.0026311688125133514, + 0.017714370042085648, + -0.034504763782024384, + 0.005648531019687653, + -0.006814329884946346, + -0.012444814667105675, + 0.036381591111421585, + 0.00437084399163723, + -0.018335167318582535, + -0.02621784619987011, + 0.04256068915128708, + 0.013361573219299316, + 0.002577029401436448, + -0.012863491661846638, + -0.018667221069335938, + 0.006193533074110746, + -0.009629572741687298, + -0.006446183193475008, + 0.004659587051719427, + 0.026925265789031982, + -0.008286918513476849, + 0.008951026946306229, + -0.021901141852140427, + -0.02089054137468338, + -0.02145358920097351, + 0.047786932438611984, + -0.019663384184241295, + 0.04019299894571304, + 0.008279699832201004, + 0.030289119109511375, + 0.022334255278110504, + -0.004695679526776075, + -0.030058125033974648, + 0.004655977711081505, + -0.015996351838111877, + -0.013426540419459343, + -0.02581360563635826, + 0.004879753105342388, + -0.011354810558259487, + -0.0033819000236690044, + -0.02034193091094494, + -0.016934765502810478, + 0.015678733587265015, + -0.04279168322682381, + 0.024600885808467865, + -0.006229626014828682, + -0.023994525894522667, + -0.06906727701425552, + 0.011722957715392113, + -0.019822193309664726, + -0.0027376427315175533, + -0.011852892115712166, + 0.009037649258971214, + -0.018190795555710793, + -0.01712244749069214, + 0.036756958812475204, + 0.009189239703118801, + 0.013289387337863445, + -0.005940882954746485, + -0.004572964273393154, + -0.010322554968297482, + -0.02048630081117153, + 0.00153214146848768, + -0.009954407811164856, + -0.018869342282414436, + 0.04238744452595711, + -0.021930014714598656, + -0.036208346486091614, + 0.0013534819008782506, + -0.033551912754774094, + 0.030895479023456573, + 0.04388890415430069, + 0.04221419617533684, + -0.004536871332675219, + 0.01557767391204834, + 0.0018425399903208017, + 0.007449564058333635, + -0.02527943253517151, + 0.0019652557093650103, + -0.007687776815146208, + -0.0028170468285679817, + -0.0014229605440050364, + 0.030231371521949768, + 0.010344211012125015, + 0.011975607834756374, + -0.003446867223829031, + 0.03490900248289108, + -0.025005126371979713, + 0.020587362349033356, + -0.018652785569429398, + 0.0005585368489846587, + -0.002118650358170271, + -0.030260244384407997, + -0.0011369247222319245, + -0.0020157855469733477, + 0.0025716156233102083, + -0.018493976444005966, + -0.03170396015048027, + 0.02392234094440937, + 0.014473232440650463, + 0.019981002435088158, + -0.02087610401213169, + -0.0012479103170335293, + -0.0019580370280891657, + -0.007312411442399025, + -0.0070453244261443615, + 0.007565061096101999, + 0.022853992879390717, + 0.000273403333267197, + 0.02754606306552887, + 0.003208654234185815, + -0.0072943647392094135, + 0.007557842880487442, + 0.01166520919650793, + 0.018869342282414436, + -0.016010787338018417, + -0.022449752315878868, + 0.021237032487988472, + -0.004161505494266748, + 0.0049555483274161816, + -0.009788380935788155, + 0.008626190945506096, + 0.02299836464226246, + -0.017728807404637337, + -0.02618897147476673, + 0.0027376427315175533, + 0.004100147634744644, + 0.010950570926070213, + 0.016963640227913857, + -0.01806086115539074, + 0.0011567758629098535, + -0.009268644265830517, + 0.031010976061224937, + 0.012300442904233932, + 0.033551912754774094, + 0.01749781332910061, + -0.008243606425821781, + 0.027589375153183937, + 0.038431666791439056, + -0.010936133563518524, + -0.008236388675868511, + -0.03378290683031082, + 0.026838643476366997, + -0.0199232529848814, + 0.016660459339618683, + 0.00268350332044065, + 0.028065800666809082, + 0.008142546750605106, + -0.03473575785756111, + 0.04082823172211647, + -0.008265262469649315, + 0.027055200189352036, + 0.005168496165424585, + -0.00012215174501761794, + 0.02851335145533085, + 0.01807529851794243, + -0.009153146296739578, + 0.03724782168865204, + -0.0199232529848814, + 0.05067436024546623, + -0.017959801480174065, + 0.023864591494202614, + 0.026160096749663353, + -0.03929789364337921, + -0.015722045674920082, + -0.01044527068734169, + -0.0028747955802828074, + -0.006428136490285397, + -0.022752933204174042, + 0.00938414130359888, + -0.0011685059871524572, + 0.0032176775857806206, + -0.00025107088731601834, + 0.011961170472204685, + 0.008554005064070225, + -0.012221039272844791, + -0.004933892749249935, + -0.014689790084958076, + 0.014105085283517838, + 0.01975000649690628, + 0.07432239502668381, + -0.01976444385945797, + 0.019417952746152878, + -0.0008603633032180369, + 0.020760606974363327, + 0.03531324490904808, + 0.020442990586161613, + 0.00408210139721632, + 0.005320086143910885, + -0.0013913793954998255, + 0.04039511829614639, + -0.004345579072833061, + -0.003270012093707919, + 0.008243606425821781, + 0.0015510902740061283, + 0.008763344027101994, + -0.02015424706041813, + 0.03534211963415146, + -0.01767105981707573, + 0.014956876635551453, + 0.021193722262978554, + 0.02223319560289383, + -0.008120891638100147, + 0.014083430171012878, + 0.0031671475153416395, + 0.026521025225520134, + 0.027979176491498947, + 0.018753845244646072, + -0.008604535833001137, + 0.007092244923114777, + -0.0028296795208007097, + -0.001297537935897708, + -0.000392960908357054, + 0.03346528857946396, + 0.017772119492292404, + 0.005828995257616043, + -0.005951710976660252, + -0.014480451121926308, + -0.04368678480386734, + -0.019851068034768105, + 0.022449752315878868, + -0.04487062990665436, + -0.0012632497819140553, + -0.007861022837460041, + 0.002125868806615472, + -0.023431478068232536, + 0.011318718083202839, + -0.007427908480167389, + 0.012444814667105675, + -0.016487212851643562, + 0.03632384538650513, + -0.008113672956824303, + -0.016862578690052032, + 0.012755213305354118, + 0.003876372007653117, + 0.020414115861058235, + 0.010596861131489277, + 0.0009041258599609137, + -0.02129478193819523, + -0.0013561887899413705, + -0.02015424706041813, + 0.015418865717947483, + -0.027055200189352036, + -0.019100336357951164, + -0.020977163687348366, + -0.0069875759072601795, + 0.0014734906144440174, + -0.016082974150776863, + -0.0035461224615573883, + 0.01579423062503338, + 0.018147485330700874, + 0.004836441949009895, + 0.0033530257642269135, + 0.004251737613230944, + 0.024470951408147812, + -0.014682571403682232, + 0.03132859244942665, + -0.007803274318575859, + 0.035804107785224915, + 4.748465653392486e-5, + -0.030317993834614754, + -0.024759694933891296, + 0.01044527068734169, + -0.0019255535444244742, + 0.010322554968297482, + 0.00367966596968472, + -0.002596880542114377, + 0.051771584898233414, + -0.0017053871415555477, + 0.005782074760645628, + 0.008019831031560898, + -0.009838910773396492, + -0.004439420532435179, + -0.018753845244646072, + 0.025308305397629738, + 0.031010976061224937, + -0.023503663018345833, + 0.017959801480174065, + 0.007608372718095779, + 0.015823105350136757, + -0.018941527232527733, + 0.013303824700415134, + -0.019634509459137917, + 0.033320918679237366, + 0.009968845173716545, + -0.005204589106142521, + 0.02145358920097351, + 0.004724554251879454, + -0.026362217962741852, + 0.013145015574991703, + 0.008207513950765133, + -0.009853348135948181, + 0.007352113723754883, + 0.01996656507253647, + 0.008886059746146202, + -0.005778465420007706, + 0.037161197513341904, + -0.019533449783921242, + -0.00034716809750534594, + 0.005045780446380377, + -0.03436039388179779, + -0.0005535740638151765, + 0.01820523291826248, + 0.013217201456427574, + -0.017627747729420662, + 0.014675352722406387, + -0.004905018489807844, + 0.029884880408644676, + 0.022464189678430557, + 0.031097600236535072, + 0.029206333681941032, + -0.009470763616263866, + -0.019316893070936203, + 0.005738763138651848, + -0.019446827471256256, + -0.024413203820586205, + -0.007038105744868517, + -0.03583298251032829, + -0.04230082035064697, + 0.01653052493929863, + -0.027084074914455414, + 0.029567262157797813, + -0.038114048540592194, + 0.0474981889128685, + -0.007427908480167389, + 0.012423158623278141, + 0.002450704574584961, + 0.001755917095579207, + 0.00041957938810810447, + 0.006803502328693867, + 0.011643553152680397, + 0.013902965933084488, + -0.013513162732124329, + -0.00892215222120285, + -0.00027047080220654607, + -0.02675202116370201, + -0.00968732126057148, + 0.00535617908462882, + -0.009708976373076439, + 0.033523038029670715, + 0.03724782168865204, + -0.0004608605813700706, + -0.0006388434558175504, + 0.01801755093038082, + -0.006608600728213787, + -0.031241970136761665, + 0.018652785569429398, + -0.015043499879539013, + 0.014740319922566414, + 0.0063234674744307995, + 0.008748906664550304, + -0.04616997390985489, + -0.02296948991715908, + 0.012408722192049026, + -0.02239200472831726, + 0.0433402955532074, + 0.042647309601306915, + -0.01347707025706768, + -0.004886971786618233, + 0.012047792784869671, + 0.02620340883731842, + 0.020067624747753143, + -0.04316704720258713, + 9.248792775906622e-5, + -0.0051576681435108185, + 0.0031581243965774775, + -0.0159674771130085, + -0.01347707025706768, + -0.028340104967355728, + -0.0072654904797673225, + -0.00018328400619793683, + 0.005789292976260185, + 0.028354542329907417, + 0.0077671813778579235, + -0.00817864015698433, + -0.04325367137789726, + 0.04345579072833061, + 0.0011188783682882786, + -0.04209870100021362, + -0.01842178963124752, + -0.0032285053748637438, + 0.0004360467428341508, + -0.01168686430901289, + 0.0076805585995316505, + 0.01527449395507574, + 0.014191708527505398, + 0.02851335145533085, + 0.03698795288801193, + -0.03436039388179779, + 0.02618897147476673, + 0.003454085672274232, + -0.024557575583457947, + -0.010062686167657375, + -0.02372022159397602, + 0.012379847466945648, + -0.00960069801658392, + -0.001035864814184606, + -0.008763344027101994, + 0.009456326253712177, + -0.03629497066140175, + 0.00817864015698433, + -0.011809580028057098, + -0.034649137407541275, + -0.011802362278103828, + 0.0003374681400600821, + 0.0015691366279497743, + -8.859666559146717e-5, + -0.00940579641610384, + -0.01673264428973198, + 0.0008400610531680286, + 0.009174802340567112, + 0.0025806387420743704, + 0.0050710453651845455, + 0.011405340395867825, + 0.002539132023230195, + -0.012654152698814869, + -0.021366966888308525, + -0.023994525894522667, + 0.02165571041405201, + 0.011412559077143669, + 0.006879297085106373, + -0.017541125416755676, + 0.002714182250201702, + 0.009398577734827995, + -0.010409178212285042, + -0.0027773447800427675, + 0.0005265044746920466, + 0.01245203334838152, + 0.022550811991095543, + -0.03207932412624359, + -0.031039850786328316, + -0.0007042617071419954, + -0.005370615981519222, + 0.001724335947073996, + -0.0020085670985281467, + -0.017988676205277443, + 0.008676720783114433, + -0.002681698650121689, + -0.05113634839653969, + -0.018869342282414436, + 0.0036255267914384604, + 0.015693170949816704, + -0.031415216624736786, + 0.010936133563518524, + 0.0077960556373000145, + 0.04354241490364075, + 0.001629592152312398, + 0.009528512135148048, + 0.01899927668273449, + -0.008171421475708485, + -0.04001975059509277, + 0.03915352374315262, + 0.032194823026657104, + 0.003365658223628998, + -0.032916679978370667, + 0.00403878977522254, + -0.00854678638279438, + 0.01709357276558876, + 0.007572279777377844, + 0.014711445197463036, + 0.02979825623333454, + -0.014184489846229553, + 0.013751375488936901, + -0.013166671618819237, + -0.03848941624164581, + 0.0055185966193675995, + 0.004201207775622606, + 0.005691842176020145, + -0.006002240814268589, + 0.012625278905034065, + -0.0054319738410413265, + 0.010423614643514156, + -0.011116597801446915, + -0.02640552818775177, + -0.021727895364165306, + -0.002694331342354417, + 0.010885603725910187, + -0.028426729142665863, + -0.014769193716347218, + 0.001722531276755035, + -0.009153146296739578, + -0.019042586907744408, + -0.014386610127985477, + 0.0037247820291668177, + 0.023648034781217575, + 0.0048544881865382195, + 0.02470194548368454, + -0.024427641183137894, + 0.01936020515859127, + -0.027603810653090477, + 0.0039016371592879295, + 0.032916679978370667, + 0.017988676205277443, + -0.019648946821689606, + -0.016949202865362167, + 0.018465101718902588, + -0.0002752079744823277, + -0.0008535959059372544, + 0.007110291626304388, + 0.007308802101761103, + 0.0018308097496628761, + -0.028917592018842697, + 0.012040575034916401, + -0.018566161394119263, + -0.0011459479574114084, + -0.02527943253517151, + 0.0066591305658221245, + -0.022146573290228844, + 0.0016476386226713657, + -0.0035984572023153305, + 0.01879715546965599, + -0.02909083664417267, + -0.028773220255970955, + -0.01670377142727375, + -0.014285549521446228, + -0.020053187385201454, + -0.0169058907777071, + 0.030895479023456573, + 0.0018461492145434022, + -0.0011784315574914217, + 0.005136012565344572, + -0.001762233441695571, + -0.007702214177697897, + 0.02089054137468338, + 0.010965007357299328, + -0.036208346486091614, + 0.006135784555226564, + 0.012293224222958088, + -0.02561148628592491, + 0.0016304944874718785, + 0.014119522646069527, + -0.003560559591278434, + -0.005717107560485601, + -0.01782986707985401, + -0.02296948991715908, + -0.008871622383594513, + -0.009542949497699738, + -0.0040171341970562935, + -0.000558988016564399, + -0.03343641757965088, + 0.019605636596679688, + 0.016660459339618683, + 0.0003424309252295643, + -0.0009393164073117077, + -0.014985751360654831, + -0.03262793645262718, + 0.03834504261612892, + -0.008402415551245213, + -0.014285549521446228, + 0.010062686167657375, + -0.010690702125430107, + -0.01148474495857954, + 0.011340373195707798, + 0.04368678480386734, + -0.02465863525867462, + -0.021395841613411903, + -0.00038799812318757176, + -0.031010976061224937, + -0.013246076181530952, + 0.0010124044492840767, + -0.01934576779603958, + 0.00031716591911390424, + 0.005724325776100159, + -0.004479122813791037, + -0.0019959346391260624, + 0.015245620161294937, + -0.0015844760928303003, + -0.01879715546965599, + -0.013895747251808643, + 0.0009027724154293537, + 0.0021727895364165306, + -0.0074062529020011425, + -0.012733557261526585, + 0.0005973366787657142, + -0.07328291982412338, + -0.030433490872383118, + -0.01424945704638958, + 0.021381404250860214, + 0.015534362755715847, + -0.0036959077697247267, + 0.00778883695602417, + 0.03098210133612156, + -0.007933208718895912, + 0.000683959515299648, + 0.012935677543282509, + 0.006330685690045357, + -0.010163746774196625, + 0.027488313615322113, + 0.011751831509172916, + -0.0003088194353040308, + -0.013361573219299316, + -0.007658902555704117, + 0.00579651165753603, + -0.03288780525326729, + -0.011253750883042812, + 0.010503019206225872, + 0.04386002942919731, + 0.0004155189380981028, + -1.012291613733396e-5, + 0.007218569982796907, + -0.011556930840015411, + -0.002956004347652197, + 0.006312639452517033, + -0.04573686048388481, + 0.01863834820687771, + 0.024470951408147812, + -0.02295505255460739, + -0.01119600236415863, + -0.010856729000806808, + 0.023027237504720688, + 0.01579423062503338, + -0.02523612044751644, + 0.019071461632847786, + 0.006002240814268589, + -0.010401959531009197, + -0.014307205565273762, + -0.0014220583252608776, + -0.011744613759219646, + 0.006207969971001148, + -0.005172105506062508, + 0.01178792491555214, + -0.02298392727971077, + -0.009947189129889011, + -0.017627747729420662, + 0.01148474495857954, + 0.0058795250952243805, + 0.011925077997148037, + -0.013592567294836044, + 0.0034901786129921675, + -0.0029632230289280415, + 0.0012695660116150975, + -0.013274949975311756, + 0.017930928617715836, + 0.0018678050255402923, + 0.060289494693279266, + 0.010510237887501717, + 0.01045970804989338, + -0.008972682058811188, + -0.018161922693252563, + 0.0060491617769002914, + 0.005500550381839275, + 0.01462482288479805, + 0.01045970804989338, + 0.008958245627582073, + 0.0007926892139948905, + -0.02187226712703705, + 0.0013381424359977245, + 0.03196382895112038, + -0.03037574328482151, + 0.018320729956030846, + 0.008084798231720924, + 0.006677177269011736, + -0.0067926743067801, + -0.011694082990288734, + -0.01973557099699974, + 0.014386610127985477, + -0.01310170441865921, + -0.005662967916578054, + -0.03667033463716507, + -0.01653052493929863, + -0.01573648303747177, + -0.0226085614413023, + 0.01299342606216669, + -0.0033421979751437902, + 0.021756770089268684, + 0.01673264428973198, + 0.015866417437791824, + 0.01746893860399723, + -0.019475702196359634, + 0.041867706924676895, + 0.0033855093643069267, + 0.016646021977066994, + 0.006038333754986525, + 0.0031960217747837305, + -0.02048630081117153, + -0.015649858862161636, + 0.007211351301521063, + -0.020024312660098076, + 0.0016467362875118852, + 0.007824929431080818, + 0.014227801002562046, + 0.01195395179092884, + -0.025221683084964752, + -0.00950685702264309, + 0.0016882430063560605, + 0.029350705444812775, + -0.02392234094440937, + 0.04383115842938423, + 0.00017944913997780532, + 0.004872534889727831, + -0.03508225083351135, + -0.021569086238741875, + -0.029105274006724358, + -0.001195575692690909, + 0.00903043057769537, + 0.026636522263288498, + -0.014617604203522205, + -0.01520230807363987, + -0.0013670166954398155, + 0.002313551725819707, + -0.005713498219847679, + -0.008705595508217812, + 0.0024651417043060064, + 0.01653052493929863, + -0.0015483832685276866, + -0.015866417437791824, + -0.006586945150047541, + 0.010409178212285042, + -0.0049844225868582726, + 0.020284181460738182, + 0.010373084805905819, + 0.004323923494666815, + 0.028932027518749237, + -0.039211273193359375, + -0.0008378052734769881, + -0.009954407811164856, + 0.011845673434436321, + 0.0033855093643069267, + -0.03511112555861473, + -0.00275388453155756, + -0.02257968671619892, + -0.022926177829504013, + 0.003055259818211198, + 0.024037837982177734, + -0.00531286746263504, + 0.012119978666305542, + 0.021771207451820374, + 0.017627747729420662, + -0.022565249353647232, + -0.028340104967355728, + -0.014097867533564568, + 0.015375553630292416, + -0.019519012421369553, + -0.010387522168457508, + -0.016241783276200294, + -0.0006744851125404239, + -0.007355722598731518, + 0.004013524856418371, + -0.00417955219745636, + -0.025207245722413063, + 0.010921696200966835, + -0.012033356353640556, + -0.006839594803750515, + -0.013520381413400173, + 0.024196647107601166, + 0.014061774127185345, + -0.013455414213240147, + 0.0007665219018235803, + 0.0077094328589737415, + -0.020385241135954857, + -0.01635728031396866, + -0.007247444242238998, + 0.01634284295141697, + 0.00027408008463680744, + -0.036554839462041855, + 0.015447739511728287, + 0.008113672956824303, + 0.01823410764336586, + -0.007536186836659908, + 0.024557575583457947, + -0.01712244749069214, + -0.005745981819927692, + 0.0009564605425111949, + -0.008243606425821781, + 0.023128299042582512, + -0.0067421444691717625, + -0.015057937242090702, + 0.0073232389986515045, + 0.007572279777377844, + 0.007355722598731518, + 0.030086999759078026, + 0.03470688313245773, + -0.009759506210684776, + -0.0033331746235489845, + -0.013845217414200306, + 0.009304736740887165, + 0.00722217932343483, + 0.0015465785982087255, + -0.006449792068451643, + 0.005944492295384407, + -0.034071650356054306, + 0.028628848493099213, + 0.012134416028857231, + -0.004547698888927698, + -0.010813417844474316, + 0.005904790014028549, + 0.015115685760974884, + -0.025322742760181427, + 0.01423501968383789, + 0.005720716901123524, + 0.0018858513794839382, + -0.03554423898458481, + -0.0028820140287280083, + -0.034649137407541275, + 0.04920177161693573, + -0.023460352793335915, + 0.009607916697859764, + -0.011751831509172916, + 0.014675352722406387, + 0.01674708165228367, + 0.0035479271318763494, + -0.07224344462156296, + -0.0056593590416014194, + 0.016934765502810478, + 0.003425211412832141, + -0.00242183031514287, + -0.00298848794773221, + -0.014942440204322338, + -0.007355722598731518, + 0.0010791762033477426, + 0.02943732775747776, + 0.008294137194752693, + 0.0210637878626585, + 0.011477526277303696, + -0.006258500274270773, + -0.03158846125006676, + 0.0029054745100438595, + -0.008200295269489288, + 0.022146573290228844, + 0.0011396317277103662, + -0.013238857500255108, + -0.021742332726716995, + -0.005504159722477198, + 0.003591238521039486, + 0.018522851169109344, + -0.008431289345026016, + -0.01782986707985401, + -0.0060960822738707066, + 0.0037644843105226755, + -0.0021745942067354918, + 0.012704683467745781, + -0.01385965384542942, + 0.012776868417859077, + -0.021727895364165306, + -0.0022594123147428036, + 0.018349604681134224, + 0.034302644431591034, + -0.031039850786328316, + 0.006395652890205383, + -0.0006370387854985893, + -0.007334067020565271, + 0.019879940897226334, + 0.01975000649690628, + -0.0015158996684476733, + 0.012423158623278141, + 0.02201663888990879, + -0.020428553223609924, + -0.013051174581050873, + 0.003955776337534189, + -0.014928002841770649, + 0.0009018700802698731, + -0.012942896224558353, + -0.02224763296544552, + 0.0002625754859764129, + -0.017974238842725754, + -0.014314424246549606, + -0.005323695484548807, + 0.025698108598589897, + 0.010084342211484909, + 0.00546445744112134, + -0.013722501695156097, + -0.014502107165753841, + 0.03245469182729721, + -0.02242087759077549, + 0.010004937648773193, + 0.006428136490285397, + 0.023243796080350876, + 0.010019375011324883, + 0.005056608468294144, + 0.0011206830386072397, + -0.0022576076444238424, + 0.009218113496899605, + 0.03129971772432327, + -0.008994338102638721, + 0.020284181460738182, + -0.011058849282562733, + -0.0040171341970562935, + 0.0018181772902607918, + -0.003203240456059575, + -0.00017516310617793351, + 0.01592416502535343, + -0.01996656507253647, + -0.003318737493827939, + 0.009059305302798748, + -0.0009284885600209236, + -0.0004628908063750714, + -0.01731013134121895, + -0.019490139558911324, + -0.0004962767125107348, + 0.022478627040982246, + 0.04596785455942154, + 0.00480034900829196, + 0.0025427413638681173, + -0.013123360462486744, + -0.021699020639061928, + -0.029913753271102905, + 0.00513240322470665, + 2.0654697436839342e-5, + -0.05673795938491821, + -0.007366550620645285, + 0.0032375287264585495, + -0.008626190945506096, + 0.001963451039046049, + -0.02013980969786644, + -0.02104935050010681, + 0.033523038029670715, + -0.011232094839215279, + -0.0178443044424057, + -0.0019255535444244742, + -0.010755669325590134, + -0.004367234650999308, + -0.006669958587735891, + -0.02126590721309185, + -0.00367966596968472, + 0.007233006879687309, + 0.019244708120822906, + -0.01611184887588024, + -0.01917252130806446, + 0.025394929572939873, + 0.022911740466952324, + 0.018667221069335938, + 0.04195432737469673, + 0.01235097274184227, + 0.004139849916100502, + 0.008236388675868511, + 0.001961646368727088, + -0.0019093117443844676, + -0.007099463604390621, + -3.643122181529179e-5, + 0.04836441949009895, + -0.002654629060998559, + 0.00967288389801979, + -0.009795599617064, + -0.021381404250860214, + -0.024557575583457947, + -0.006189923733472824, + 0.004284221213310957, + 0.019446827471256256, + -0.02031305618584156, + -0.0214680265635252, + 0.014011244289577007, + -0.0277048721909523, + 0.002030222909525037, + -0.0030787200666964054, + -0.005500550381839275, + -0.012235475704073906, + -0.016559399664402008, + -0.0014328861143440008, + -0.019085898995399475, + -0.014350516721606255, + 0.0057062795385718346, + 0.012683027423918247, + 0.016068536788225174, + -0.01130428072065115, + 0.008864403702318668, + 0.007954863831400871, + -0.016227345913648605, + -0.023445915430784225, + -0.025380492210388184, + 0.02031305618584156, + -0.004659587051719427, + 0.003948557656258345, + 0.0020031530875712633, + -0.010813417844474316, + -0.03037574328482151, + -0.020168684422969818, + 0.005569126922637224, + -0.008005393669009209, + 0.014689790084958076, + 0.012581967748701572, + -0.018003113567829132, + -0.003407164942473173, + -0.03646821528673172, + -0.02090497873723507, + -0.02751718834042549, + 0.020933853462338448, + -0.028816530480980873, + 0.02487519197165966, + -0.01528893131762743, + 0.012747994624078274, + 0.015606548637151718, + 0.02467307262122631, + 0.010041031055152416, + -0.017584435641765594, + 0.005197370424866676, + 0.004475513473153114, + -0.006702442187815905, + -0.005818167235702276, + -0.012553093023598194, + 0.005511377938091755, + -0.006229626014828682, + 0.01654496230185032, + 0.007990957237780094, + -0.017815429717302322, + -0.005009687505662441, + -0.009550168178975582, + -0.012069448828697205, + -0.013866872526705265, + -0.01726681925356388, + 0.014552637003362179, + -0.029292955994606018, + 0.0056340936571359634, + 0.00612856587395072, + -0.004717335570603609, + 0.010142090730369091, + -0.010257587768137455, + 0.013238857500255108, + 0.0009375117952004075, + 0.04839329421520233, + -0.02470194548368454, + 0.0062945932149887085, + 0.008445726707577705, + -0.008691158145666122, + -0.021901141852140427, + -0.023777969181537628, + -0.015375553630292416, + 0.0036598150618374348, + -0.013902965933084488, + 0.008120891638100147, + -0.01261806022375822, + 0.019215833395719528, + 0.003544317791238427, + 0.023835718631744385, + 0.013202764093875885, + 0.0015005602035671473, + -0.02182895503938198, + 0.009088180027902126, + 0.028181297704577446, + 0.01500018872320652, + -0.008554005064070225, + -0.024600885808467865, + 0.004778693430125713, + -0.004183161072432995, + 0.019677821546792984, + 0.01110937912017107, + 0.004576573148369789, + 0.01654496230185032, + 0.0074062529020011425, + 9.248792775906622e-5, + 0.017887616530060768, + 0.033320918679237366, + -0.01917252130806446, + 0.000132866800413467, + -0.0210637878626585, + 0.01415561605244875, + -0.026102349162101746, + -0.012473688460886478, + -0.010481363162398338, + 0.025106186047196388, + 0.006691614165902138, + 0.004829223267734051, + -0.00845294538885355, + -0.005161277484148741, + -0.013664753176271915, + 0.00798373855650425, + 0.003340393304824829, + 0.010243150405585766, + 0.009730632416903973, + 0.020009875297546387, + -0.008496256545186043, + 0.01863834820687771, + -0.013332698494195938, + 0.000390705099562183, + 0.024932941421866417, + -0.00806314218789339, + 0.015447739511728287, + 0.0007967496640048921, + -0.010004937648773193, + -0.0007931403815746307, + -0.01668933406472206, + -0.011694082990288734, + -0.009932752698659897, + 0.01442992128431797, + 0.0027881725691258907, + 0.0018587817903608084, + -0.016184033825993538, + -0.0039016371592879295, + 0.0005856064963154495, + 0.0029361534398049116, + -0.0262322835624218, + -0.02203107625246048, + 0.01862391084432602, + 0.018277419731020927, + -0.0052731651812791824, + -0.01004824973642826, + 0.008734469301998615, + -0.00017392242443747818, + -0.0010945156682282686, + -0.015895290300250053, + -0.008424071595072746, + 0.005612438078969717, + 0.00024137092987075448, + -0.025597048923373222, + -0.00278095412068069, + -0.005027733743190765, + -0.0011387293925508857, + -0.0062115793116390705, + -0.020399678498506546, + 0.003923292737454176, + 0.01806086115539074, + 0.006446183193475008, + 0.003912464715540409, + -0.004388890694826841, + -0.017902053892612457, + -0.00153214146848768, + 0.0002145268808817491, + 0.004078492056578398, + 0.014011244289577007, + -0.0011242922628298402, + 0.0024073931854218245, + 0.015317805111408234, + 0.006146612111479044, + -0.008893278427422047, + -0.008489037863910198, + 0.0013381424359977245, + 0.006027505733072758, + -0.008323010988533497, + 0.008207513950765133, + 0.0020266135688871145, + 0.09799930453300476, + -0.0062115793116390705, + -0.002154743066057563, + -0.008568442426621914, + 0.00806314218789339, + -0.025553736835718155, + -0.01593860238790512, + 0.02676645666360855, + 0.013967933133244514, + 0.008655065670609474, + 0.004085710737854242, + -0.03629497066140175, + 0.030086999759078026, + 0.022926177829504013, + -0.00702727772295475, + 0.0036832753103226423, + 0.027979176491498947, + 0.035630859434604645, + 0.01917252130806446, + 0.016862578690052032, + -0.0033837046939879656, + -0.0074640014208853245, + -0.009542949497699738, + 0.015895290300250053, + -0.0184506643563509, + 0.021699020639061928, + -0.015866417437791824, + -0.004352797754108906, + 0.0063523417338728905, + 0.027199571952223778, + 0.0020825574174523354, + -0.0017252381658181548, + 0.005738763138651848, + -0.012119978666305542, + -0.0033313699532300234, + 0.0016286898171529174, + 0.0013697237009182572, + 0.0075217499397695065, + 0.005193761084228754, + 0.004807567689567804, + 0.0038691535592079163, + 0.01803198829293251, + 0.024976251646876335, + 0.007954863831400871, + 0.006175486370921135, + -0.01728125661611557, + 0.001137827057391405, + -0.0035262713208794594, + -0.014097867533564568, + 0.009903877973556519, + -0.01631396822631359, + -0.0052731651812791824, + -0.002946981228888035, + 0.006568898446857929, + 0.005280383862555027, + -0.0038041863590478897, + 0.02262299880385399, + -0.021020475775003433, + -0.009680102579295635, + 0.004670414607971907, + -0.018364042043685913, + 0.00398465059697628, + -0.01654496230185032, + -0.01920139603316784, + -0.005200979765504599, + 0.001562820398248732, + -0.011975607834756374, + -0.021237032487988472, + 0.017194634303450584, + 0.0030299946665763855, + -0.017050262540578842, + 0.02242087759077549, + 0.010604078881442547, + -0.027242882177233696, + -0.009752288460731506, + 0.024774132296442986, + -0.0037139542400836945, + -0.0001833967980928719, + -0.0006767409504391253, + 0.011852892115712166, + 0.016299530863761902, + 0.013145015574991703, + -0.017050262540578842, + -0.012466470710933208, + 0.007543405517935753, + -0.00329888635315001, + 0.023128299042582512, + -0.014112303964793682, + -0.004713726229965687, + -0.024730820208787918, + -0.018739407882094383, + 0.0006113226409070194, + -0.000480486050946638, + -0.002645605942234397, + 0.0015384576981887221, + -0.014660915359854698, + -0.00950685702264309, + -0.005016906186938286, + -0.007023668382316828, + 0.01491356547921896, + 0.020775044336915016, + 0.008929370902478695, + 0.005691842176020145, + 0.00296683213673532, + 0.0011206830386072397, + -0.03245469182729721, + 0.016949202865362167, + 0.021164847537875175, + -0.04446639120578766, + -0.007774400059133768, + 0.0012921240413561463, + 0.01612628437578678, + -0.005709888879209757, + -0.007135556545108557, + -0.028441166505217552, + 0.015635423362255096, + 0.01881159283220768, + 0.0002727265818975866, + -0.022853992879390717, + -0.025539301335811615, + -0.006814329884946346, + 0.010272025130689144, + -0.0024940159637480974, + -0.007139165885746479, + 0.007095854263752699, + -0.024803007021546364, + -0.008142546750605106, + -0.006204361096024513, + -0.013816342689096928, + 0.004500778391957283, + 0.015880854800343513, + 0.011419777758419514, + 0.011600241996347904, + 0.020284181460738182, + 0.014090648852288723, + -0.005912008695304394, + -0.009925534017384052, + 0.0027863678988069296, + 0.02773374505341053, + -0.008106454275548458, + 0.013592567294836044, + -0.016602711752057076, + -0.011210438795387745, + 0.006828767247498035, + 0.016660459339618683, + 0.006724097765982151, + -0.002087971428409219, + -0.008474601432681084, + 0.013744156807661057, + -0.007586717139929533, + 0.0375654362142086, + -0.03248356655240059, + 0.0021619617473334074, + -0.023850155994296074, + 0.028989776968955994, + 0.007326848339289427, + -0.013599785976111889, + 0.019259145483374596, + -0.0031003758776932955, + -0.005204589106142521, + -0.012119978666305542, + 0.0022900912445038557, + -0.01731013134121895, + -0.004186770413070917, + -0.004331142175942659, + 0.006604991387575865, + 0.01764218509197235, + 0.023460352793335915, + 0.01807529851794243, + 0.0011306084925308824, + 0.001943600014783442, + -0.004630712792277336, + -0.0054897223599255085, + -0.03346528857946396, + -0.003995478618890047, + -0.007803274318575859, + 0.01902814954519272, + 0.009644009172916412, + -0.015620985068380833, + 0.01045970804989338, + -0.0009546558721922338, + -0.012127197347581387, + 0.0065436335280537605, + -0.017570000141859055, + -0.008582879789173603, + -0.018306292593479156, + 0.01520230807363987, + -0.0018678050255402923, + 0.006106910295784473, + 0.00398465059697628, + -0.01053189393132925, + 0.018927089869976044, + -0.01843622699379921, + 0.008806655183434486, + -0.007012840826064348, + -0.005691842176020145, + 0.004230082035064697, + 0.02848447673022747, + -0.010957789607346058, + -0.010993882082402706, + -0.019591199234128, + 0.01879715546965599, + 0.012408722192049026, + 0.003923292737454176, + -0.0031599290668964386, + 0.003279035445302725, + -0.008294137194752693, + -0.01654496230185032, + -0.008387978188693523, + 0.021814517676830292, + -0.05408152565360069, + -0.03317654877901077, + 0.011138253845274448, + -0.007251053582876921, + -0.029884880408644676, + 0.010791761800646782, + 0.007041715085506439, + 0.017353441566228867, + 0.006218797992914915, + -0.0024741648230701685, + 0.00987500324845314, + 0.021814517676830292, + 0.013715283013880253, + -0.002263021655380726, + -0.014855816960334778, + 0.014083430171012878, + -0.012040575034916401, + 0.006005850154906511, + 0.028051363304257393, + 0.003378290683031082, + 0.031444091349840164, + -0.007882677949965, + -0.006215188652276993, + 0.011614679358899593, + 0.001894874614663422, + 0.020284181460738182, + 0.024687509983778, + -0.010279243811964989, + 0.017974238842725754, + -0.02696857787668705, + -0.003307909704744816, + 0.011260969564318657, + 0.00451160641387105, + -0.0021619617473334074, + 0.01300786342471838, + -0.008120891638100147, + 0.006789064966142178, + 0.0020627062767744064, + 0.0004441676428541541, + -2.93254397547571e-5, + -0.022637436166405678, + -0.01823410764336586, + -0.016775956377387047, + 0.012928458862006664, + 0.017916491255164146, + 0.013087267056107521, + 0.003944948315620422, + 0.0011558735277503729, + -0.0015285322442650795, + -0.009066523984074593, + -0.008286918513476849, + 0.004724554251879454, + 0.0023929558228701353, + -0.007565061096101999, + 0.006832376588135958, + 0.010416396893560886, + -0.002741251839324832, + 0.00155650416854769, + -0.0003363402502145618, + 0.0007651683990843594, + 0.022363130003213882, + 0.017006950452923775, + 0.0037139542400836945, + -0.008135328069329262, + -0.01434329804033041, + 0.0003577703610062599, + 0.01823410764336586, + -0.01577979326248169, + -0.0027556889690458775, + 0.009499638341367245, + -0.0163717158138752, + 0.0005052998894825578, + 0.006428136490285397, + -0.00153214146848768, + 0.01936020515859127, + -0.02221875824034214, + -0.010416396893560886, + -0.0026131223421543837, + -0.011463088914752007, + 0.017772119492292404, + 0.0016214712522923946, + -0.016472777351737022, + 0.009059305302798748, + 0.0007502801017835736, + 0.009138709865510464, + 0.013794687576591969, + -0.0069334362633526325, + 0.00427339319139719, + 0.023590287193655968, + -0.005359787959605455, + 0.006370387971401215, + -0.01881159283220768, + -0.011939514428377151, + -0.013339917175471783, + 0.007344895042479038, + 0.00507826404646039, + 0.003291667904704809, + -0.004554917570203543, + 0.0020663156174123287, + 0.010582423768937588, + 0.004439420532435179, + -0.00508909160271287, + 0.016299530863761902, + -0.009846129454672337, + -0.018161922693252563, + -0.00019546534167602658, + 0.006521977949887514, + 0.017339004203677177, + -0.0060960822738707066, + 0.004587401170283556, + -0.0241533350199461, + 0.0038980278186500072, + -0.01917252130806446, + 0.008286918513476849, + 0.0006699734949506819, + 0.022146573290228844, + 0.003387314034625888, + 0.0311264730989933, + -0.013534818775951862, + -0.01843622699379921, + 0.011275405995547771, + -0.007593935821205378, + -0.0008748004329390824, + -0.002380323363468051, + -0.007373769301921129, + 0.015072373673319817, + -0.02428326942026615, + 0.003677861299365759, + -0.003818623488768935, + 0.008337448351085186, + -0.014675352722406387, + -0.011282624676823616, + 0.005016906186938286, + -0.01005546748638153, + 0.0030823294073343277, + 0.03271456062793732, + 0.010654609650373459, + -0.007868241518735886, + 0.00117301766294986, + 0.01881159283220768, + 0.005951710976660252, + -0.00560161005705595, + 0.019533449783921242, + -0.007904333993792534, + -0.018118610605597496, + -0.007774400059133768, + -0.006175486370921135, + 0.017598873004317284, + -0.002566201612353325, + 0.002979464828968048, + -0.015144559554755688, + 0.008770562708377838, + -0.009737851098179817, + 0.002151133958250284, + -0.00863340962678194, + -0.0020609016064554453, + 0.005818167235702276, + 0.026492152363061905, + -0.00268350332044065, + 0.01575092040002346, + -0.00296683213673532, + -0.037334442138671875, + -0.029538387432694435, + -0.00950685702264309, + -0.014682571403682232, + 0.0023063330445438623, + -0.007088635582476854, + -0.018364042043685913, + 0.002212491584941745, + 0.0004491303989198059, + 0.03742106631398201, + -0.0011594827519729733, + -0.01207666750997305, + -0.0013426539953798056, + 0.021179284900426865, + 0.008236388675868511, + 0.012978988699615002, + 0.018667221069335938, + -0.012849054299294949, + -0.01615515910089016, + -0.0026582384016364813, + 0.013022299855947495, + 0.013289387337863445, + 0.005388662684708834, + 0.005006078165024519, + -0.0020951898768544197, + -8.713039278518409e-5, + 0.025019563734531403, + 0.006262109614908695, + -0.014870254322886467, + 0.006034724414348602, + -0.004118194337934256, + 0.007478438317775726, + 0.014047336764633656, + -1.2639547094295267e-5, + -0.018320729956030846, + -0.012278787791728973, + 0.01954788714647293, + 0.02699745073914528, + -0.018941527232527733, + 0.0013462633360177279, + 0.0081858579069376, + -0.020414115861058235, + 0.00712472852319479, + 0.0020951898768544197, + -0.010416396893560886, + 0.01972113363444805, + -0.020255306735634804, + 0.009160364978015423, + 0.004049617797136307, + 0.015375553630292416, + -0.003991869278252125, + 0.0029144976288080215, + -0.010618516243994236, + 0.00929751805961132, + -0.007471220102161169, + 0.01634284295141697, + -0.0012605427764356136, + -0.017743244767189026, + 0.02413889765739441, + 0.002273849444463849, + -0.02318604663014412, + 0.010221495293080807, + -0.0007412569248117507, + -0.018667221069335938, + -0.0025625922717154026, + 0.018724970519542694, + -0.009340829215943813, + 0.0029722461476922035, + 0.016819268465042114, + -0.021150410175323486, + -0.008734469301998615, + -0.002100603887811303, + 0.008582879789173603, + 0.008770562708377838, + 0.0032664029859006405, + 0.006619428750127554, + 0.00920367706567049, + -0.0005427462165243924, + -0.005233463365584612, + -0.002647410612553358, + 0.003721172921359539, + 0.010697920806705952, + -0.0004962767125107348, + -0.015101248398423195, + -0.023489227518439293, + 0.0032158729154616594, + 0.013736939057707787, + 0.006817939225584269, + -0.028195735067129135, + -0.0035587549209594727, + 0.0041037569753825665, + -0.008236388675868511, + 0.00931195542216301, + 0.0008445726707577705, + 0.01556323654949665, + 0.008575661107897758, + 0.017194634303450584, + 0.0007376476423814893, + 0.015029062516987324, + 0.00702727772295475, + 0.013967933133244514, + 0.016458339989185333, + -0.01385965384542942, + 0.005435583181679249, + 0.016010787338018417, + 0.004634322132915258, + 0.016054099425673485, + 0.011210438795387745, + -0.008640628308057785, + -0.015014625154435635, + -0.00014267954975366592, + -0.003612894332036376, + -0.003564168931916356, + 0.010416396893560886, + -0.008070360869169235, + -0.013881309889256954, + 0.030086999759078026, + 0.010113216936588287, + 0.014530980959534645, + 0.007731088437139988, + -0.013274949975311756, + 0.01687701605260372, + -0.013051174581050873, + 0.0015312391333281994, + -0.016054099425673485, + 0.012747994624078274, + 0.01091447751969099, + 0.019793318584561348, + -0.0006108714733272791, + 0.020053187385201454, + -0.00987500324845314, + -0.02070285938680172, + 0.029884880408644676, + 0.01801755093038082, + 0.0052984305657446384, + -0.010084342211484909, + 0.027098512277007103, + 0.01579423062503338, + 0.023041674867272377, + 0.029971502721309662, + -0.0034342347644269466, + -0.008496256545186043, + 0.019879940897226334, + -0.009485200978815556, + 0.008156984113156796, + 0.012127197347581387, + 0.023287106305360794, + 0.023445915430784225, + -0.01045970804989338, + -0.0038980278186500072, + -0.0004504838725551963, + -0.013072830624878407, + 0.0262322835624218, + -0.00013805515482090414, + -0.01595303975045681, + 0.002735838061198592, + 0.0067926743067801, + 0.004295049235224724, + 0.0019490139093250036, + -0.01611184887588024, + 0.013231638818979263, + -0.0046812426298856735, + -0.0003539354947861284, + 0.007059761323034763, + 0.01367918960750103, + 0.01843622699379921, + -0.0028531397692859173, + 0.03785417973995209, + -0.003916074056178331, + 0.028932027518749237, + -0.003643573261797428, + 0.020428553223609924, + -0.02370578423142433, + -0.003847497748211026, + -0.009059305302798748, + -0.011600241996347904, + 0.004482732154428959, + -0.019215833395719528, + 0.016862578690052032, + -0.010185401886701584, + 0.00798373855650425, + 0.031646210700273514, + 0.013635878451168537, + 0.01318832766264677, + -0.020818356424570084, + 0.00011075993097620085, + -0.007543405517935753, + -0.005774856079369783, + 0.014668134041130543, + -0.005110747646540403, + -0.005810949020087719, + -0.000927586224861443, + 0.00480034900829196, + 0.00014752952847629786, + 0.004486341029405594, + 0.010235932655632496, + 0.003981041256338358, + -0.003876372007653117, + 0.01528893131762743, + -0.017194634303450584, + -0.009326392784714699, + -0.016602711752057076, + 0.011759050190448761, + 0.005435583181679249, + -0.0024651417043060064, + -0.02243531495332718, + -0.009290299378335476, + 0.019057024270296097, + -0.0038222328294068575, + -0.006832376588135958, + -0.00012925751798320562, + -0.026665396988391876, + -0.003710344899445772, + 0.0003189705603290349, + 0.011405340395867825, + 0.0010512042790651321, + 0.004601838532835245, + 0.014126741327345371, + -0.03470688313245773, + 0.01842178963124752, + -0.0013228029711171985, + -0.0032068497966974974, + 0.009376922622323036, + -0.0002158803545171395, + -0.010965007357299328, + -0.0018660003552213311, + -0.004331142175942659, + -0.024803007021546364, + -0.014841379597783089, + -0.00597697589546442, + -0.006341513711959124, + -0.001102636568248272, + 0.011643553152680397, + 0.00208977609872818, + 0.00825804378837347, + 0.007673339918255806, + -0.011426996439695358, + 0.005392271559685469, + -0.014097867533564568, + -0.025293869897723198, + 0.007420689798891544, + 1.5057486052683089e-5, + 0.0031075943261384964, + 0.0041037569753825665, + -0.0292496457695961, + 0.027430566027760506, + 0.003524466883391142, + 0.02376353181898594, + -0.009730632416903973, + 0.003427016083151102, + -0.01196838915348053, + 0.0056882333010435104, + 0.00922533217817545, + -0.001419351319782436, + -0.02660764940083027, + -0.00398465059697628, + 0.011982826516032219, + 0.007186086382716894, + -0.004313095472753048, + -0.007391815539449453, + 0.012553093023598194, + 0.0009925534250214696, + -0.03231031820178032, + 0.013412103056907654, + -0.007976519875228405, + -0.016472777351737022, + 0.0016611734172329307, + 0.021886704489588737, + -0.03138634189963341, + 0.01706469990313053, + -0.020645109936594963, + -0.007200523745268583, + 0.007572279777377844, + -0.006886515766382217, + -0.026708709076046944, + 0.013043955899775028, + -3.025595833605621e-5, + -0.00013207727170083672, + -0.00033791930763982236, + -0.014754757285118103, + -0.011845673434436321, + -0.018955964595079422, + 0.007099463604390621, + 0.009911096654832363, + -0.0077383071184158325, + 0.018753845244646072, + -0.01915808394551277, + 0.026636522263288498, + -0.01149918232113123, + -0.0145237622782588, + -0.02451426349580288, + 0.003513638861477375, + 0.0020284182392060757, + 0.004908627364784479, + -0.016646021977066994, + 0.010589642450213432, + -0.00027971959207206964, + 0.008792217820882797, + -0.020399678498506546, + -0.002342425985261798, + 0.006900952663272619, + -0.0035984572023153305, + -0.0025355226825922728, + 0.0027755401097238064, + -0.014437139965593815, + -0.019273580983281136, + -0.02353253774344921, + 0.022680746391415596, + -0.0410592257976532, + -0.010409178212285042, + -0.0015998155577108264, + -0.0053742253221571445, + -0.024225519970059395, + -1.2646596587728709e-5, + -0.0008111867937259376, + 0.00024137092987075448, + -0.02013980969786644, + -0.01593860238790512, + -0.001728847506456077, + -0.03155958652496338, + -0.004576573148369789, + -0.004374453332275152, + -0.004089320078492165, + 0.02548155188560486, + 0.01765662245452404, + -0.009348047897219658, + -0.013368791900575161, + -0.010676264762878418, + -0.005006078165024519, + -0.028412291780114174, + -0.005395880900323391, + -0.015592111274600029, + -0.0102648064494133, + 0.013440976850688457, + -0.011145471595227718, + 0.023315981030464172, + -0.011477526277303696, + 0.017786556854844093, + 0.010885603725910187, + -0.007330457679927349, + 0.0010818832088261843, + -0.004998859483748674, + -0.01668933406472206, + -0.031415216624736786, + -0.0038511070888489485, + 0.03271456062793732, + -0.011174346320331097, + -0.010770106688141823, + 0.017930928617715836, + -0.012711902149021626, + -0.002950590569525957, + -0.006550852209329605, + 0.009723413735628128, + -0.0023586677853018045, + -0.010365866124629974, + -0.004002696834504604, + 0.025366054847836494, + -0.0030715016182512045, + 0.030924353748559952, + 0.02488962933421135, + 0.010791761800646782, + 0.022709621116518974, + -0.0019201396498829126, + -0.011333154514431953, + -0.02926408313214779, + -0.004829223267734051, + 0.0014175466494634748, + -0.005785683635622263, + 2.5448278393014334e-5, + -0.008474601432681084, + -0.03629497066140175, + -0.014206145890057087, + 0.009737851098179817, + -0.0013182912953197956, + -0.0014202536549419165, + -0.006908171344548464, + 0.01148474495857954, + -0.024384329095482826, + 0.0099616264924407, + -0.022882867604494095, + -0.017006950452923775, + 0.01842178963124752, + -0.00036363545223139226, + 0.01367918960750103, + -0.007630028296262026, + 0.0020735342986881733, + 0.0012524218764156103, + 0.0033277608454227448, + 0.014263894408941269, + -0.002546350471675396, + 0.021150410175323486, + -0.009304736740887165, + 0.01803198829293251, + -0.006139393895864487, + 0.02187226712703705, + -0.006428136490285397, + -0.019591199234128, + 0.005514987278729677, + 0.0037031264510005713, + 0.0199232529848814, + -0.01091447751969099, + 0.003427016083151102, + -0.010524675250053406, + -0.005655749700963497, + -0.009903877973556519, + 0.009831692092120647, + 0.013130579143762589, + -0.01101553812623024, + -0.0035749967209994793, + -0.006009459495544434, + 0.0021926406770944595, + -0.04677633196115494, + -0.0006135784205980599, + -0.025539301335811615, + -0.0033819000236690044, + 0.03349416330456734, + 0.005847041495144367, + 0.0038005770184099674, + 0.005771246738731861, + -0.006763800047338009, + 0.0029523950070142746, + -0.01876828260719776, + -0.013339917175471783, + 0.023590287193655968, + 0.0022503891959786415, + 0.01748337596654892, + -0.00019490138220135123, + -0.010524675250053406, + -0.008431289345026016, + 0.00884274858981371, + 0.006189923733472824, + 0.002977660158649087, + -0.018753845244646072, + -0.004482732154428959, + 0.025135060772299767, + -0.015447739511728287, + 0.0007430615369230509, + -0.0067132702097296715, + 0.0014482255792245269, + 0.02221875824034214, + -0.004237300716340542, + -0.008351885713636875, + 0.0049555483274161816, + 0.01214885339140892, + 0.008799436502158642, + 0.00874168798327446, + -0.009990501217544079, + -0.0007218570099212229, + 0.007572279777377844, + -0.013311043381690979, + -0.020746169611811638, + 0.016631584614515305, + 0.0011233899276703596, + -0.007384596858173609, + 0.00750009436160326, + -0.008893278427422047, + -0.020572924986481667, + 0.012762431986629963, + -0.016862578690052032, + -0.016039662063121796, + 0.006013068836182356, + -0.003232114715501666, + 0.013000644743442535, + -0.0022991145960986614, + -0.038633786141872406, + -0.007171649020165205, + 0.005060217343270779, + -0.0072366162203252316, + -0.00843850802630186, + 0.015216745436191559, + -0.03744994103908539, + 0.015519925393164158, + 0.01444435864686966, + -0.010900041088461876, + -0.0004872534773312509, + -0.024052275344729424, + 0.015187871642410755, + 0.0003399495326448232, + 0.007034496404230595, + -0.010690702125430107, + 0.02110709808766842, + 0.011470307596027851, + 0.004450248554348946, + 0.001117976033128798, + 0.011232094839215279, + -0.01879715546965599, + -0.00041145848808810115, + 0.0008314890437759459, + -0.0028260701801627874, + -0.006366778630763292, + 0.013303824700415134, + 0.013231638818979263, + 0.00021576756262220442, + 0.01936020515859127, + -0.020818356424570084, + -0.01556323654949665, + 0.0006749362801201642, + -0.0023315981961786747, + -0.01101553812623024, + -0.009607916697859764, + -0.020226433873176575, + -0.02259412407875061, + 0.005554689560085535, + 0.005973366554826498, + 0.01973557099699974, + -0.006193533074110746, + 0.0028946464881300926, + -0.009542949497699738, + 0.011210438795387745, + -0.009088180027902126, + -0.0006108714733272791, + 0.0026131223421543837, + -0.017728807404637337, + -0.009124272502958775, + -0.00911705382168293, + 0.011975607834756374, + -0.025120623409748077, + 0.014364954084157944, + 0.016039662063121796, + 0.022117698565125465, + -0.01840735413134098, + 0.02067398466169834, + -0.004850878845900297, + -0.00040762362186796963, + -0.015548800118267536, + 0.016386153176426888, + -0.007889896631240845, + -0.010697920806705952, + -0.010827855207026005, + 0.0036309405695647, + -0.002909083617851138, + -0.006832376588135958, + -0.021150410175323486, + -0.009730632416903973, + 0.007536186836659908, + -0.03594847768545151, + -0.010871166363358498, + -0.006511149927973747, + 0.00805592443794012, + -0.006168268155306578, + -0.020053187385201454, + 0.001257835770957172, + -0.010907258838415146, + 0.010560767725110054, + 0.010308117605745792, + 0.015866417437791824, + -0.009109835140407085, + -0.009745069779455662, + -0.007330457679927349, + -0.006088863592594862, + 0.0115064000710845, + 0.012401503510773182, + 0.01378025021404028, + -0.015519925393164158, + 0.0011793338926509023, + -0.02013980969786644, + -0.017440065741539, + -0.00716804014518857, + -0.010921696200966835, + 0.028036925941705704, + -0.009319174103438854, + 0.008965464308857918, + -0.001985106850042939, + -0.00650393171235919, + 0.0018605864606797695, + 0.0001852014393080026, + 0.0023081377148628235, + 0.002909083617851138, + 0.004764256067574024, + 0.040943730622529984, + 0.014170052483677864, + 0.0020609016064554453, + -0.02029861882328987, + -0.001795619260519743, + 0.015534362755715847, + -0.011715739034116268, + -0.011802362278103828, + -0.008907714858651161, + 0.0072943647392094135, + 0.007200523745268583, + 0.003358439775183797, + 0.01462482288479805, + 0.01746893860399723, + 0.008200295269489288, + -0.002519280882552266, + -0.009918315336108208, + -0.0063234674744307995, + -0.014776412397623062, + -0.019533449783921242, + 0.011809580028057098, + -0.003621917450800538, + 0.009658446535468102, + -0.025712545961141586, + 0.00413624057546258, + 0.003721172921359539, + -0.003464913461357355, + -0.007218569982796907, + 0.007615591399371624, + -0.008128109388053417, + 0.0008296843734569848, + 0.013967933133244514, + -0.004583791829645634, + 0.02600128948688507, + 0.014581511728465557, + 0.008929370902478695, + -0.01823410764336586, + 0.027069637551903725, + -0.012538655661046505, + 0.008120891638100147, + -0.014299986883997917, + -0.014581511728465557, + 0.02675202116370201, + -0.001782084465958178, + 0.01310170441865921, + 0.01576535589993, + 0.005031343083828688, + -0.005392271559685469, + 0.0021150410175323486, + -0.008698376826941967, + -0.010322554968297482, + -0.01996656507253647, + -0.010344211012125015, + -0.00022377567074727267, + -0.0009736046195030212, + -0.009824473410844803, + 0.01782986707985401, + 0.018724970519542694, + 0.01731013134121895, + 0.006078036036342382, + 0.010041031055152416, + 0.02962501160800457, + -0.012444814667105675, + 0.001810958725400269, + 0.011087723076343536, + -0.0018362237606197596, + -0.006027505733072758, + 0.0008811167208477855, + -0.026275593787431717, + 0.023691346868872643, + 0.008041487075388432, + 0.003970213700085878, + -0.04654533788561821, + 0.008012612350285053, + -0.011917859315872192, + 0.03415827453136444, + 0.0009988696547225118, + 0.008200295269489288, + 0.00135257956571877, + 0.016082974150776863, + -0.013462632894515991, + -0.00029708928195759654, + -0.0026095130015164614, + -0.015158996917307377, + 0.006366778630763292, + 0.010683483444154263, + -0.014985751360654831, + 0.0003667935961857438, + -0.0034504763316363096, + -0.014798068441450596, + 0.008979900740087032, + 0.011037193238735199, + 0.0017017779173329473, + -0.010221495293080807, + -0.01318832766264677, + -0.01520230807363987, + -0.008156984113156796, + 0.02851335145533085, + -0.0187827181071043, + 0.005543861538171768, + 0.010575205087661743, + 0.0035479271318763494, + 0.011513618752360344, + 0.007998175919055939, + -0.012322098948061466, + -0.006334295030683279, + 0.009196458384394646, + -0.004544090013951063, + 0.004587401170283556, + 0.0034667181316763163, + -0.026737583801150322, + -0.019995437934994698, + 0.012293224222958088, + -0.004085710737854242, + 0.011419777758419514, + 0.002263021655380726, + 0.00044394205906428397, + -0.006648303009569645, + 0.008142546750605106, + 0.03326316922903061, + -0.011874547228217125, + 0.005143231246620417, + 0.0059914132580161095, + -0.016559399664402008, + 0.002537327352911234, + 0.002439876552671194, + -0.009441889822483063, + 0.0226085614413023, + -1.5142078154894989e-5, + 0.003944948315620422, + -0.00030678921029902995, + 0.017425628378987312, + 0.0004180003306828439, + 0.011650771833956242, + -0.015173434279859066, + -9.87477833405137e-5, + 0.02110709808766842, + 0.00735933193936944, + -0.02693970315158367, + 0.014004025608301163, + 0.005767637398093939, + -0.009485200978815556, + 0.0005968855111859739, + 0.007373769301921129, + 0.017209071666002274, + -0.025726983323693275, + 0.00939135905355215, + -0.0026113176718354225, + 0.0004191282205283642, + -0.02548155188560486, + -0.0030119481962174177, + -0.009773943573236465, + 0.008965464308857918, + 0.019879940897226334, + 0.015909727662801743, + 0.007933208718895912, + 0.0036652288399636745, + 0.01071235816925764, + 0.00874168798327446, + -0.009196458384394646, + -0.0003255124029237777, + 0.018652785569429398, + -0.00938414130359888, + -0.005161277484148741, + 0.0012506172060966492, + -0.0022034684661775827, + 0.003428820753470063, + 0.0014861230738461018, + -0.019995437934994698, + 0.013354354538023472, + -0.02600128948688507, + -0.008532349951565266, + -0.013339917175471783, + 0.013058393262326717, + 0.011939514428377151, + -0.002818851498886943, + 0.0006158342584967613, + 0.012942896224558353, + 0.005865088198333979, + 0.006341513711959124, + -0.027011888101696968, + -0.014076211489737034, + 0.015346679836511612, + -0.005551080219447613, + -0.004302267916500568, + 0.017728807404637337, + -0.0040929289534688, + -0.025207245722413063, + 0.010661827400326729, + -0.004100147634744644, + 0.014032900333404541, + 0.013318261131644249, + 0.0007101268274709582, + 0.001737870741635561, + -0.0036868846509605646, + -0.0010719576384872198, + 0.02657877467572689, + -0.0024922112934291363, + 0.01527449395507574, + 0.004641540348529816, + 0.023402603343129158, + 0.02165571041405201, + 0.01263249758630991, + 0.014761975966393948, + -0.007048933766782284, + -0.017223507165908813, + 0.019417952746152878, + -0.005944492295384407, + 0.008893278427422047, + 0.0047967396676540375, + -0.008351885713636875, + -0.002907278947532177, + 0.022882867604494095, + 0.0019490139093250036, + -0.018147485330700874, + 0.0008197588613256812, + -0.004583791829645634, + -0.011325935833156109, + -0.026694271713495255, + 0.03167508542537689, + 0.004684851970523596, + 0.0005242486367933452, + -0.0016368107171729207, + -0.0006226016557775438, + 0.028022488579154015, + 0.022868430241942406, + -0.0021601570770144463, + 0.01214885339140892, + -0.0035479271318763494, + -0.00531286746263504, + 0.0004256700340192765, + -0.036554839462041855, + 0.00921089481562376, + 0.0008612656383775175, + 0.017584435641765594, + -0.00232437951490283, + 0.011809580028057098, + 0.00026370337582193315, + 0.019100336357951164, + -0.032772306352853775, + -0.009376922622323036, + -0.006373997312039137, + -0.0052731651812791824, + 0.0013273145304992795, + 0.023027237504720688, + 0.0038619348779320717, + -0.019620073959231377, + -0.013166671618819237, + 0.00900877546519041, + 0.006204361096024513, + 0.01651608757674694, + -0.0002630266535561532, + -0.025900229811668396, + -0.010669046081602573, + -0.0169058907777071, + 0.005496941041201353, + -0.006579726468771696, + 0.023604724556207657, + 0.02333041839301586, + -0.015707608312368393, + -0.03704570233821869, + -0.0006383922882378101, + 0.020746169611811638, + -0.011390903033316135, + -0.012517000548541546, + 0.01489912811666727, + 0.01139812171459198, + 0.0017523078713566065, + 0.009319174103438854, + 0.005641312338411808, + 0.004789520986378193, + 0.004995250608772039, + 0.009246988222002983, + -0.016963640227913857, + -0.006633865647017956, + 0.014942440204322338, + -0.006168268155306578, + -0.022478627040982246, + 0.03329204395413399, + 0.012127197347581387, + 0.012228257954120636, + 0.020948290824890137, + 0.011528056114912033, + -0.013924621045589447, + -0.0035749967209994793, + 0.01882603019475937, + 0.014018462970852852, + -0.010394740849733353, + 0.007947645150125027, + 0.011657990515232086, + -0.003154515055939555, + 0.009153146296739578, + -0.006767409387975931, + -0.005143231246620417, + -0.009997718967497349, + 0.014841379597783089, + 0.008943808265030384, + 0.01615515910089016, + -0.007139165885746479, + 0.0025301086716353893, + -0.011188783682882786, + 0.011571367271244526, + 0.010062686167657375, + 0.006814329884946346, + -0.007644465658813715, + -0.023417040705680847, + 0.0032862538937479258, + -0.010524675250053406, + -0.0053670066408813, + -0.012134416028857231, + 0.016559399664402008, + -0.018537288531661034, + 0.00025242436095140874, + 0.0025264995638281107, + 0.018883779644966125, + -0.013130579143762589, + -0.0038330606184899807, + 0.002107822336256504, + 0.004775084089487791, + 0.007243834901601076, + -0.008286918513476849, + 0.00337468134239316, + 0.01635728031396866, + 0.03040461614727974, + 0.008777781389653683, + 0.005818167235702276, + -0.00017459916125517339, + -0.002069924958050251, + -0.005381444003432989, + -0.004923064727336168, + -0.011961170472204685, + 0.017411191016435623, + 0.011390903033316135, + 0.004298658575862646, + 0.008575661107897758, + -0.020861666649580002, + 0.014032900333404541, + 0.0036471823696047068, + -0.0012849054764956236, + 0.005854260176420212, + -0.005468066781759262, + 0.0015691366279497743, + -0.009579041972756386, + -0.01651608757674694, + 0.0039413389749825, + 0.0016142526874318719, + 0.039990875869989395, + -0.0017811821307986975, + 0.03742106631398201, + 0.0014076211955398321, + 0.0072077419608831406, + -0.021901141852140427, + 0.0004872534773312509, + -0.01687701605260372, + -0.005536643322557211, + -0.0062115793116390705, + 0.007630028296262026, + -0.010329773649573326, + 0.004482732154428959, + 0.02110709808766842, + 0.007947645150125027, + -0.004453857429325581, + 0.011282624676823616, + -0.004172333516180515, + 0.009615135379135609, + 0.014595948159694672, + -0.01433608029037714, + 0.002196250017732382, + -0.014451577328145504, + -0.0024633370339870453, + 0.01112381648272276, + 0.00882831122726202, + 0.0013715282548218966, + -0.023214921355247498, + 0.000639745790977031, + 0.016054099425673485, + -0.0006059086881577969, + -0.007861022837460041, + -0.023518100380897522, + -0.00913149118423462, + 0.007269099820405245, + 0.006045552436262369, + 0.012488125823438168, + 0.008070360869169235, + 0.012668590061366558, + -0.00987500324845314, + -0.026059037074446678, + 0.002432658104225993, + 0.02527943253517151, + 0.008777781389653683, + -0.01186011079698801, + 0.019302455708384514, + -0.008351885713636875, + 0.020082062110304832, + -0.01862391084432602, + 0.010142090730369091, + 0.006262109614908695, + -0.0016810244414955378, + -0.002546350471675396, + 0.005150449462234974, + 0.014242238365113735, + 0.010466926731169224, + 0.002898255828768015, + -0.012914021499454975, + -0.01840735413134098, + -0.0013913793954998255, + -0.0074640014208853245, + 0.011463088914752007, + 0.010235932655632496, + 0.015115685760974884, + -0.010806199163198471, + 0.026275593787431717, + -0.008568442426621914, + 0.012026137672364712, + 0.015837542712688446, + -0.0024922112934291363, + 0.014956876635551453, + -0.013080048374831676, + -0.02714182250201702, + -0.018104173243045807, + -0.00569906085729599, + -0.006915390025824308, + 0.0031563197262585163, + 0.004161505494266748, + -0.018710533156991005, + 0.016992513090372086, + 0.005767637398093939, + -0.0020230042282491922, + 0.013830780051648617, + -0.0022287333849817514, + -0.010690702125430107, + -0.008770562708377838, + -0.0025319133419543505, + 0.00843850802630186, + 0.003999087959527969, + 0.010134872049093246, + 1.9851067918352783e-5, + -0.014032900333404541, + -0.0011883571278303862, + -0.005453629419207573, + 0.013513162732124329, + -0.007694995496422052, + -0.018291857093572617, + -0.0001756142737576738, + 0.008590098470449448, + 0.014170052483677864, + 0.0148269422352314, + 0.0028874280396848917, + -0.017151322215795517, + 0.01301508117467165, + 0.01595303975045681, + -0.011513618752360344, + 0.005872306879609823, + 0.0014310814440250397, + -0.015303368680179119, + 0.005865088198333979, + -0.0029415672179311514, + 0.034273769706487656, + -0.004208426456898451, + 0.0241533350199461, + 0.007373769301921129, + 0.01824854500591755, + 0.004601838532835245, + -0.011434215120971203, + 0.030058125033974648, + 0.012885147705674171, + -0.011167127639055252, + 0.016010787338018417, + 0.027242882177233696, + -0.00940579641610384, + -0.01045970804989338, + 0.009903877973556519, + -0.013325479812920094, + 0.02828235737979412, + -0.01225713174790144, + -0.004053227137774229, + 0.003515443531796336, + -0.020962726324796677, + 0.0040171341970562935, + 0.016198471188545227, + 0.002459727693349123, + -0.002481383504346013, + 0.009708976373076439, + -0.018652785569429398, + 0.022319817915558815, + -7.573858601972461e-5, + -0.010300898924469948, + 0.0061718774959445, + 0.01527449395507574, + 0.008323010988533497, + -0.00046965820365585387, + -0.006579726468771696, + -0.016804831102490425, + 0.022117698565125465, + 0.005143231246620417, + 0.011722957715392113, + -0.014191708527505398, + -0.016443902626633644, + -0.01726681925356388, + 0.01577979326248169, + 9.519488958176225e-5, + 0.008301355876028538, + 0.001487927744165063, + -0.0018605864606797695, + 0.006633865647017956, + 0.005323695484548807, + 0.008821092545986176, + 0.0024922112934291363, + -0.0001950141740962863, + 0.016227345913648605, + 0.0020157855469733477, + 0.002809828380122781, + -0.011585804633796215, + 0.004453857429325581, + 0.0030516504775732756, + -0.02372022159397602, + -0.00016681663691997528, + 0.001855172449722886, + -0.004977203905582428, + -0.0010349624790251255, + 0.0015655274037271738, + 0.017382316291332245, + 0.0016810244414955378, + 0.00034784484887495637, + -0.01576535589993, + -0.007630028296262026, + 0.020861666649580002, + 0.0066410843282938, + 0.03548648953437805, + -0.0033800953533500433, + -0.00730519276112318, + 0.014177271164953709, + 0.0006013971287757158, + 0.02548155188560486, + 0.018840467557311058, + -0.005731544457376003, + 0.02884540520608425, + 0.01917252130806446, + -0.016241783276200294, + 0.004717335570603609, + -0.02545267716050148, + 0.006911780685186386, + -0.006312639452517033, + 0.009088180027902126, + -0.04276280850172043, + -0.012055011466145515, + 0.013318261131644249, + 0.012040575034916401, + -0.01692032814025879, + 0.003952166996896267 + ], + "16f4ca63-7781-4c83-9db4-ef0e8fd2a398": [ + -0.019514700397849083, + -0.02937432937324047, + -0.010009636171162128, + 0.025896865874528885, + -0.037829335778951645, + -0.021914830431342125, + 0.01255977526307106, + 0.04202956333756447, + -0.0038627106696367264, + 0.02666054479777813, + 0.03000163473188877, + 0.0009716438944451511, + 0.020428385585546494, + -0.005188919138163328, + 0.014482608065009117, + 0.02783333510160446, + -0.04625706747174263, + 0.009593704715371132, + 0.011577904224395752, + -0.024083130061626434, + 0.03373820334672928, + -0.00810044165700674, + -0.0294288769364357, + 0.0038763475604355335, + 0.01899649016559124, + -0.008536828681826591, + 0.0021921650040894747, + 0.016964560374617577, + -0.06305798143148422, + 0.015996325761079788, + -0.00966189056634903, + -0.017291851341724396, + -0.009211866185069084, + 0.017305489629507065, + 0.04096587002277374, + -0.013589377515017986, + -0.005233239848166704, + 0.024996817111968994, + -0.026415076106786728, + -0.006494672037661076, + -0.03098350763320923, + 0.036601994186639786, + -0.009682346135377884, + 0.0006396655226126313, + -0.010214192792773247, + 0.012477952986955643, + -0.02570594660937786, + 2.17874094232684e-5, + -0.008550466038286686, + 0.030547119677066803, + -0.00674354936927557, + -0.016650907695293427, + -0.015287197194993496, + 0.014264414086937904, + 0.05689401179552078, + -0.040611304342746735, + 0.0015154235297814012, + 0.03251086175441742, + 0.0026046873535960913, + -0.049475423991680145, + 0.011052874848246574, + -0.026142334565520287, + 0.0042138658463954926, + 0.002093296032398939, + -0.012143843807280064, + 0.026906011626124382, + -0.007636779919266701, + 0.013289360329508781, + -0.021792097017169, + -0.017550956457853317, + -0.0059150950983166695, + 0.06125788390636444, + -0.029619796201586723, + 0.030874410644173622, + 0.008209538646042347, + -0.03589286655187607, + 0.03714748099446297, + 0.02791515737771988, + 0.019732894375920296, + -0.012996163219213486, + 0.018260085955262184, + 0.017673689872026443, + 0.02323763072490692, + 0.01688273809850216, + 0.05493026599287987, + 0.01162563357502222, + -0.014468970708549023, + -0.04192046821117401, + 0.039738528430461884, + -0.06523992121219635, + -0.01719639264047146, + 0.029292505234479904, + 0.01118924655020237, + -0.01868283748626709, + -0.009907358326017857, + 0.018573740497231483, + -0.0025637762155383825, + -0.008973216637969017, + 0.008850482292473316, + -0.012362037785351276, + 0.023755840957164764, + 0.005151417106389999, + 0.017319126054644585, + -0.036956559866666794, + 0.026742367073893547, + -0.003627470461651683, + -0.0006656612968072295, + 0.01043920498341322, + -0.04996636137366295, + 0.0453297421336174, + 0.01931014284491539, + -0.0330563485622406, + -0.002918340964242816, + 0.004462743178009987, + -0.06305798143148422, + -0.03643834963440895, + -0.03005618415772915, + -0.015205373987555504, + -0.03515646234154701, + -0.01332345325499773, + 0.02877429500222206, + 0.002062612446025014, + -0.010309652425348759, + 0.011523355729877949, + -0.02668781764805317, + 0.014441695995628834, + 0.0017694146372377872, + 0.0013219470856711268, + 0.012437041848897934, + 0.02453315630555153, + -0.030847135931253433, + 0.006699228659272194, + 0.007602686993777752, + -0.008789115585386753, + 0.019432878121733665, + 0.005628715734928846, + 0.013037074357271194, + 0.07854973524808884, + -0.005805998109281063, + 0.036929287016391754, + -0.06245794892311096, + -0.0273014884442091, + 0.008693655952811241, + 0.002296147868037224, + -0.0014318962348625064, + 0.01749640889465809, + -0.03278360515832901, + 0.048275358974933624, + -0.02569231018424034, + 0.014578067697584629, + -0.06649453192949295, + -0.002001245506107807, + 0.00980507954955101, + -0.010718765668570995, + 0.05973052978515625, + -0.04012036696076393, + 0.01196656096726656, + 0.016146333888173103, + 0.0017864609835669398, + 0.05203919857740402, + 0.03826572373509407, + -0.024710437282919884, + -0.010500572621822357, + 0.010664218105375767, + 0.058694109320640564, + 0.020387474447488785, + 0.05302107334136963, + 0.029019763693213463, + 0.013978034257888794, + 0.015096276998519897, + 0.019814716652035713, + -0.01365756243467331, + 0.04415695369243622, + -0.008509554900228977, + 0.03562012314796448, + -0.03602923825383186, + 0.0580940768122673, + 0.01995108835399151, + 0.019173773005604744, + -0.05296652391552925, + -0.021819371730089188, + -0.025924140587449074, + 0.013446187600493431, + -0.002376265823841095, + 0.01566903665661812, + -0.003092213999480009, + 0.02454679273068905, + 0.019501062110066414, + -0.007173118181526661, + -0.015791770070791245, + -0.014018946327269077, + 0.010275560431182384, + -0.0361928828060627, + -0.00043191274744458497, + -0.034801896661520004, + -0.025515027344226837, + 0.02608778513967991, + 0.020973870530724525, + 0.008182263933122158, + 0.025337744504213333, + -0.016132697463035583, + -0.0472116656601429, + -0.030192553997039795, + 0.04898448660969734, + -0.0177146028727293, + 0.02599232643842697, + -0.014237139374017715, + 0.006989017128944397, + 0.05048457160592079, + -0.04254777356982231, + 0.0260468740016222, + -0.054112039506435394, + 0.013302997685968876, + 0.000551024335436523, + -0.010336927138268948, + 0.015409930609166622, + 0.005195737816393375, + 0.026715092360973358, + 0.014618978835642338, + -0.05171190947294235, + -0.006487853825092316, + 0.0008527453755959868, + 0.002236485481262207, + -0.02235121838748455, + -0.03622015565633774, + 0.00966870877891779, + -0.04432059824466705, + 0.03564739599823952, + -0.05062093958258629, + 9.781694643606897e-6, + 0.0421932078897953, + -0.018519191071391106, + 0.025378655642271042, + -0.004469561856240034, + 0.0011668249499052763, + 0.021246612071990967, + 0.007514046039432287, + 0.0009622683865018189, + -0.018000980839133263, + 0.0028774295933544636, + -0.0015844614244997501, + 0.01058921404182911, + 0.013684837147593498, + -0.004732076078653336, + 0.021001145243644714, + 0.023073984310030937, + 0.01132561732083559, + 0.0723857656121254, + 0.005369611084461212, + 0.020101096481084824, + 0.00111312884837389, + 0.004039993043988943, + -0.012287033721804619, + -0.0073367636650800705, + -0.02111024223268032, + 0.037229303270578384, + 0.03946578875184059, + -0.03766569122672081, + 0.010623306035995483, + 0.018273724243044853, + 0.013821207918226719, + -0.01513718906790018, + 0.008168627507984638, + 0.03060166724026203, + 0.020087458193302155, + -0.0005463365814648569, + 0.023524008691310883, + 0.012198392301797867, + 0.00996190682053566, + 0.009280051104724407, + 1.8724387700785883e-5, + 0.007623143028467894, + -0.01928286999464035, + 0.03330181539058685, + -0.0024154726415872574, + -0.002026814967393875, + 0.004742303863167763, + 0.002817767206579447, + 0.028092440217733383, + 0.006194655783474445, + 0.005458252038806677, + 0.026605995371937752, + -0.006982198916375637, + -0.0009188000694848597, + -0.008680018596351147, + 0.025555938482284546, + -0.02728785201907158, + 0.0038149806205183268, + -0.02852882817387581, + 0.006944696884602308, + 0.006607178132981062, + -0.013084803707897663, + -0.00856410339474678, + 0.0021700046490877867, + 0.013077985495328903, + 8.363382221432403e-5, + -0.015396294184029102, + 0.02630597911775112, + 0.0010815931018441916, + 0.028010617941617966, + -0.022842153906822205, + 0.02424677647650242, + 0.03799298033118248, + -0.03572922199964523, + 0.04102041944861412, + -0.027928795665502548, + 0.04505700245499611, + 0.050757311284542084, + -0.0373111255466938, + 0.01119606476277113, + -0.026401439681649208, + -0.03736567497253418, + -0.02576049603521824, + -0.010411931201815605, + -0.007936796173453331, + 0.00674695847555995, + -0.028637925162911415, + -0.001227339613251388, + -0.017250940203666687, + -0.025037728250026703, + -0.023223992437124252, + 0.016964560374617577, + -0.050675489008426666, + 0.008073166944086552, + 0.03523828461766243, + -0.022773968055844307, + 0.03608378395438194, + -0.004401376470923424, + -0.050375472754240036, + -0.006685591768473387, + -0.05749404430389404, + -0.012532501481473446, + -0.02546047791838646, + 0.0008821503724902868, + -0.033847298473119736, + -0.032047200947999954, + -0.0490935854613781, + -0.05323926731944084, + 0.0050525483675301075, + -0.030138006433844566, + -0.03848391771316528, + -0.035129185765981674, + -0.01654181070625782, + -0.012225666083395481, + -0.015382656827569008, + -0.034120041877031326, + -0.023046711459755898, + 0.001517980475910008, + -0.009600522927939892, + -0.013200719840824604, + 0.0008535976521670818, + -0.013868938200175762, + 0.016050875186920166, + -0.004230912309139967, + 0.033547282218933105, + -0.014046220108866692, + 0.004299098160117865, + -0.01682819053530693, + 0.03120170161128044, + -0.030138006433844566, + 0.005028683226555586, + -0.039411239326000214, + 0.01135971024632454, + -0.011530173942446709, + -0.00962779764086008, + -0.02303307317197323, + -0.002093296032398939, + 0.004510472994297743, + -0.012934795580804348, + 0.0007773151155561209, + 0.008577740751206875, + 0.013255268335342407, + -0.00020732663688249886, + -0.029592521488666534, + -0.003947942517697811, + -0.030792588368058205, + 0.04284778982400894, + -0.02691964991390705, + -0.006457170005887747, + 0.012021109461784363, + 0.004646844230592251, + -0.020442023873329163, + -0.02240576595067978, + -0.013575740158557892, + 0.024983180686831474, + 0.018546465784311295, + -0.010793769732117653, + -0.017305489629507065, + 0.007057202979922295, + -0.0059560067020356655, + -0.011223339475691319, + -0.018287360668182373, + -0.019187409430742264, + 0.0023438776843249798, + -0.026210520416498184, + -0.0026916239876300097, + 0.01901012659072876, + -0.017687328159809113, + 0.0025211600586771965, + -0.017237303778529167, + -0.03769296407699585, + -0.0027598096057772636, + -0.012062021531164646, + -0.002851859899237752, + 0.044293321669101715, + -0.001355187501758337, + -0.022623959928750992, + 0.00024014092923607677, + 0.0374474972486496, + -0.0025501390919089317, + 0.029292505234479904, + -0.0020660217851400375, + -0.009914176538586617, + 0.017278214916586876, + 0.040911320596933365, + 0.026769641786813736, + -0.0027291260194033384, + 0.03766569122672081, + -0.021696636453270912, + 0.013037074357271194, + 0.02269214577972889, + 0.03155626729130745, + 0.027696963399648666, + 0.016023600473999977, + 0.03892030194401741, + 0.013889393769204617, + -0.026115059852600098, + 0.01626906916499138, + 0.0034092767164111137, + 0.002952433656901121, + 0.024887720122933388, + 0.0673673078417778, + 0.009232321754097939, + -0.03245631605386734, + -0.0361928828060627, + -0.01626906916499138, + -0.009409603662788868, + -0.021642088890075684, + 0.010486935265362263, + -0.018478279933333397, + -0.018887393176555634, + 0.021792097017169, + -0.025269558653235435, + 0.0010168168228119612, + -0.019801080226898193, + 0.0032967706210911274, + -0.0544666051864624, + 0.021887557581067085, + -0.018860118463635445, + -0.03499281778931618, + 0.00551280053332448, + 0.03709293156862259, + -0.019146498292684555, + -0.0029405010864138603, + -0.005171872675418854, + -0.005240058526396751, + 0.025324108079075813, + -0.015573576092720032, + 0.03365638107061386, + -0.05018455535173416, + -0.0007329945219680667, + -0.008243631571531296, + 0.030710764229297638, + -0.010159644298255444, + 0.01901012659072876, + -0.029947087168693542, + 0.03534737974405289, + -0.012927977368235588, + -0.009545974433422089, + 0.056239429861307144, + 0.012348400428891182, + -0.01561448723077774, + -0.01933741755783558, + 0.02446497045457363, + 0.014973543584346771, + 0.0007338467985391617, + -0.019173773005604744, + -0.020060183480381966, + -0.012866610661149025, + 0.0016296342946588993, + -0.006706047337502241, + 0.004926404915750027, + 0.00697538023814559, + -0.036329254508018494, + -0.007179936859756708, + 0.0022296670358628035, + -0.04202956333756447, + -0.023428549990057945, + 0.024437695741653442, + -0.012798424810171127, + 0.0025518436450511217, + 0.023496735841035843, + 0.024055857211351395, + 0.03371092677116394, + 0.0019330598879605532, + -0.020973870530724525, + -0.0028910667169839144, + -0.014987180940806866, + 0.006375347729772329, + -0.011236975900828838, + 0.004336600191891193, + -0.03638380020856857, + -0.0004828388337045908, + -0.009770987555384636, + -0.0034825762268155813, + -0.0014105882728472352, + -0.030138006433844566, + 0.016432713717222214, + -0.001980789704248309, + -0.002476839581504464, + -0.06256704777479172, + 0.019119223579764366, + -0.023414913564920425, + 0.024110404774546623, + -0.01625543087720871, + 0.0010705129243433475, + 0.0035763313062489033, + -0.0410749651491642, + 0.03763841465115547, + 0.0068662832491099834, + 0.0019603341352194548, + -0.008748204447329044, + -0.01161881536245346, + -0.003763841465115547, + -0.04680255055427551, + 0.016037236899137497, + -0.022542137652635574, + -0.015737220644950867, + 0.049175407737493515, + -0.036902010440826416, + -0.026155970990657806, + 0.021069331094622612, + -0.036274705082178116, + 0.006828781217336655, + 0.015491753816604614, + 0.01751004531979561, + 0.014455333352088928, + -0.007309489417821169, + -0.008673200383782387, + 0.0043536461889743805, + -0.014428059570491314, + -0.00322347111068666, + 0.0008578592678532004, + 0.00621170224621892, + 0.014468970708549023, + 0.01688273809850216, + -0.023646743968129158, + 0.010821044445037842, + -0.01318708248436451, + 0.040638577193021774, + -0.02142389491200447, + 0.03796570748090744, + -0.013337090611457825, + -0.0017353218281641603, + -0.009873265400528908, + -0.02453315630555153, + 0.004803671035915613, + 0.01364392600953579, + -0.014196228235960007, + -0.020292015746235847, + -0.010227830149233341, + 0.030738038942217827, + 0.02270578406751156, + 0.01365074422210455, + -0.030519844964146614, + 0.005990099161863327, + -0.0038661197759211063, + 0.008154990151524544, + 0.0014676935970783234, + 0.018328271806240082, + 0.024614978581666946, + -0.015205373987555504, + 0.03613833338022232, + 0.0029353871941566467, + -0.0017293556593358517, + 0.0260468740016222, + -0.006221930030733347, + 0.025065002962946892, + -0.02171027474105358, + -0.030410747975111008, + 0.01992381364107132, + 0.008700474165380001, + 0.007609505672007799, + -0.01531447097659111, + 0.01208929531276226, + 0.013759841211140156, + -0.014291687868535519, + -0.0053491550497710705, + -0.009348236955702305, + 0.008850482292473316, + 0.008380002342164516, + -0.01319390069693327, + -0.0030649397522211075, + -0.0063378456979990005, + -0.019146498292684555, + 0.036874737590551376, + 0.009191409684717655, + 0.009648253209888935, + 0.03245631605386734, + 0.0060514663346111774, + 0.028692472726106644, + 0.03976580500602722, + -0.013698473572731018, + -0.006538992747664452, + -0.04622979089617729, + 0.01485080923885107, + -0.0026933285407721996, + 0.039302144199609756, + -0.0014506472507491708, + 0.01471443846821785, + 0.003114374354481697, + -0.018205538392066956, + 0.03455642983317375, + 0.0005808555288240314, + 0.0035967868752777576, + -0.011236975900828838, + -0.012607505545020103, + 0.02945615164935589, + 0.012839335948228836, + -0.004125224892050028, + 0.023483097553253174, + -0.026510536670684814, + 0.043093256652355194, + -0.021983016282320023, + 0.012491590343415737, + 0.03502009063959122, + -0.019419239833950996, + -0.029919812455773354, + -0.014973543584346771, + -0.0016875920118764043, + -0.014728075824677944, + -0.049175407737493515, + 0.02051020972430706, + -0.010180100798606873, + 0.013378001749515533, + -0.0028075394220650196, + 0.0355655737221241, + 0.0012870020000264049, + -0.004224094096571207, + -0.018478279933333397, + -0.024151315912604332, + -0.0028654970228672028, + 0.02055112086236477, + 0.05236649140715599, + -0.012941614724695683, + 0.01963743381202221, + 0.0008591377409175038, + 0.011993835680186749, + 0.024014946073293686, + 0.01365756243467331, + -0.013582558371126652, + -0.01441442221403122, + -0.004565021488815546, + 0.03436550870537758, + 0.008154990151524544, + -0.006269659847021103, + 0.017278214916586876, + 0.00080501550110057, + 0.0008847073186188936, + -0.017278214916586876, + 0.04781169816851616, + -0.03461097925901413, + 0.01149608101695776, + 0.010323289781808853, + 0.03090168535709381, + -0.008632288314402103, + 0.0014583180891349912, + 0.01625543087720871, + 0.020892048254609108, + 0.014946268871426582, + -0.015737220644950867, + -0.02907431125640869, + 0.008475461974740028, + -0.011086967773735523, + 0.0036547447089105844, + 0.019391966983675957, + 0.015191737562417984, + 0.0038661197759211063, + 0.007527682930231094, + -0.03499281778931618, + -0.022296670824289322, + -0.031665362417697906, + -0.003855891991406679, + 0.03259268403053284, + -0.04835718125104904, + -0.0013526305556297302, + -0.0007879690965637565, + -0.00580940768122673, + -0.02852882817387581, + 0.010282378643751144, + -0.01751004531979561, + 0.014059857465326786, + -0.007132207043468952, + 0.049775440245866776, + 0.006944696884602308, + -0.019746530801057816, + 0.011386984027922153, + 0.008304998278617859, + -0.006221930030733347, + -0.01135971024632454, + -0.006184427998960018, + -0.006463988684117794, + -0.014305325224995613, + -0.01648726314306259, + 0.023210356011986732, + -0.012225666083395481, + -0.010773314163088799, + -0.02267850935459137, + 0.005519619211554527, + -0.015709947794675827, + -0.010411931201815605, + 0.008652744814753532, + 0.0009392557549290359, + 0.025324108079075813, + 0.008073166944086552, + 0.031447168439626694, + -0.007398130372166634, + 0.018191900104284286, + 0.0124302227050066, + 0.03433823585510254, + -0.003958170302212238, + 0.02601959928870201, + 0.004377511329948902, + -0.0242331400513649, + -0.04636616259813309, + -0.00814135279506445, + 0.013534829020500183, + 0.0058639561757445335, + -0.01118924655020237, + -0.0018495325930416584, + 0.021683000028133392, + 0.0025058183819055557, + 0.03035620041191578, + 0.005557121243327856, + 0.002712079556658864, + 0.021082967519760132, + 0.00667536398395896, + 0.013937123119831085, + 0.0502118282020092, + -0.014564430341124535, + 0.009995999746024609, + -0.004097950644791126, + -0.0017523682909086347, + -0.02483317255973816, + 0.01039147563278675, + -0.010800588876008987, + 0.028992488980293274, + -0.005148008000105619, + -0.010500572621822357, + -0.011489262804389, + 0.010282378643751144, + -0.01391666755080223, + 0.02201029099524021, + -0.011687000282108784, + -0.022187573835253716, + -0.001898967195302248, + 0.02205120213329792, + -0.0002090312773361802, + -0.010977870784699917, + 0.02661963365972042, + -0.0040127187967300415, + 0.005816226359456778, + 0.01871011033654213, + -0.013793934136629105, + -0.008066348731517792, + -0.003579740645363927, + 0.011107423342764378, + 0.01365756243467331, + 0.016037236899137497, + -0.0050559574738144875, + 0.03867483511567116, + 0.014346236363053322, + 0.025269558653235435, + 0.02326490543782711, + 0.0022313715890049934, + -0.005178691353648901, + 0.016459988430142403, + -0.006617406383156776, + -0.04025673866271973, + 0.001044090953655541, + -0.06256704777479172, + -0.03425641357898712, + 0.026605995371937752, + -0.013105260208249092, + 0.007773151155561209, + -0.018519191071391106, + 0.05293925106525421, + -0.0015094572445377707, + -0.004435468930751085, + -0.014482608065009117, + -0.004609342198818922, + -0.015191737562417984, + -0.003451892640441656, + -0.0022688736207783222, + 0.026715092360973358, + -0.0251059141010046, + -0.011086967773735523, + -0.000589804898481816, + -0.015382656827569008, + 0.012198392301797867, + 0.01808280311524868, + -0.007364037912338972, + 0.021042056381702423, + 0.021914830431342125, + -0.01131879910826683, + 0.0007969184662215412, + 0.021042056381702423, + -0.010814226232469082, + -0.03226539492607117, + 0.023660380393266678, + 0.002894476056098938, + 0.004619569983333349, + -0.015069003216922283, + 0.011243795044720173, + -0.034774623811244965, + -0.01561448723077774, + 0.004957088269293308, + -0.020714765414595604, + 0.03559285029768944, + 0.01513718906790018, + -0.004343418404459953, + 0.00351837370544672, + 0.01654181070625782, + 0.027506044134497643, + 0.0027052611112594604, + -0.02761514112353325, + 0.03439278528094292, + -0.0007278805715031922, + 0.011298343539237976, + 0.0015844614244997501, + -0.0124302227050066, + 0.003947942517697811, + -0.006562857888638973, + 0.002998458920046687, + 0.022501226514577866, + 0.03297452628612518, + 0.005427568685263395, + 0.0026455987244844437, + -0.046748001128435135, + 0.041565902531147, + -0.005165054462850094, + -0.02696056105196476, + 0.0010108505375683308, + -0.0071526626124978065, + 0.01592814177274704, + -0.011877920478582382, + 0.017632778733968735, + 0.030219828709959984, + 0.0026029828004539013, + 0.027369674295186996, + 0.010336927138268948, + -0.03927486762404442, + 0.012334763072431087, + 0.010009636171162128, + -0.03346545994281769, + 0.01255977526307106, + 0.0003211112634744495, + 0.019432878121733665, + -0.019078312441706657, + 0.012791606597602367, + 0.03330181539058685, + 0.018832845613360405, + -0.04287506267428398, + -0.002781969727948308, + -0.014591704122722149, + -0.004997999873012304, + -0.010800588876008987, + -0.005754859186708927, + -0.008884575217962265, + 0.01993745006620884, + -0.0041524991393089294, + -0.00780724361538887, + 0.011673363856971264, + -0.010200556367635727, + 0.010289196856319904, + -0.004616160877048969, + 0.0026575312949717045, + 0.0048684473149478436, + -0.036929287016391754, + -0.00844136904925108, + -0.022310307249426842, + -0.00545143336057663, + 0.011059693992137909, + 0.011291524395346642, + -0.013221175409853458, + -0.007895885035395622, + -0.006235567387193441, + 0.0014617274282500148, + -0.01026192307472229, + 0.024274051189422607, + 0.017946433275938034, + 0.034120041877031326, + -0.014291687868535519, + -0.020073821768164635, + -0.024655889719724655, + -0.003801343496888876, + 0.021901194006204605, + 0.00674354936927557, + -0.023714929819107056, + 0.007923158816993237, + -0.0043979668989777565, + -0.03602923825383186, + -0.019487425684928894, + -0.005338927265256643, + 0.036983832716941833, + -0.03150171786546707, + 0.011236975900828838, + 0.0002654974232427776, + 0.053812023252248764, + -0.020428385585546494, + -0.0072413040325045586, + 0.01513718906790018, + -0.027096930891275406, + -0.037583865225315094, + 0.04873901978135109, + 0.009948269464075565, + -0.008243631571531296, + -0.039056673645973206, + 0.006085558794438839, + -0.01772823929786682, + 0.0428205169737339, + 0.021532991901040077, + 0.01680091582238674, + 0.007220847997814417, + -0.019105587154626846, + 0.009239139966666698, + -0.030492572113871574, + -0.013841663487255573, + 0.018791932612657547, + 0.0018052119994536042, + 0.004612751305103302, + -0.025310469791293144, + -0.016173608601093292, + 0.004070676397532225, + -0.01711456850171089, + -0.00521619338542223, + -0.024628615006804466, + 0.0039240773767232895, + 0.0008152432856149971, + -0.009143680334091187, + -0.024574067443609238, + -0.00657649477943778, + 0.014673527330160141, + -0.020455660298466682, + -0.008223175071179867, + -0.015573576092720032, + 0.007786788046360016, + 0.0019995407201349735, + 0.003729748772457242, + 0.002950729103758931, + -0.017332762479782104, + 0.0165281742811203, + -0.019201045855879784, + 0.004009309224784374, + 0.03185628354549408, + 0.009777805767953396, + -0.013841663487255573, + -0.018601013347506523, + -0.0047354851849377155, + 0.005840091034770012, + 0.0053934757597744465, + 0.0070640211924910545, + 0.007316308096051216, + 0.002926864195615053, + -0.047020744532346725, + 0.006637861952185631, + -0.05062093958258629, + 0.032319944351911545, + -0.03308362141251564, + 0.014564430341124535, + -0.0030086867045611143, + 0.0242331400513649, + -0.01225975900888443, + 0.021396620199084282, + -0.018164627254009247, + -0.028910666704177856, + -0.031447168439626694, + -0.017605505883693695, + -0.01391666755080223, + -0.00844136904925108, + 0.054684799164533615, + -0.010841500014066696, + -0.009232321754097939, + -0.02327854186296463, + -0.006320799235254526, + -0.016787279397249222, + 0.0025518436450511217, + 0.019432878121733665, + -0.02233758196234703, + 0.011114242486655712, + 0.019487425684928894, + -0.013575740158557892, + 0.012239303439855576, + 0.01513718906790018, + 0.0281742624938488, + 0.0037808879278600216, + 0.002410358749330044, + -0.020673854276537895, + -0.011884738691151142, + 0.0034706436563283205, + -0.002848450792953372, + -0.010193737223744392, + -0.01688273809850216, + 0.03147444128990173, + 0.028092440217733383, + 0.0020677263382822275, + 0.010289196856319904, + -0.0014071789337322116, + -0.04647526144981384, + 0.01686910167336464, + -0.042465951293706894, + -0.014482608065009117, + 0.02149208076298237, + -0.01039829384535551, + 0.00047431563143618405, + 0.004374102223664522, + 0.026183245703577995, + -0.03332908824086189, + -0.023469461128115654, + 0.01288706623017788, + -0.04442969337105751, + -0.013671199791133404, + 0.005707129370421171, + -0.01804189197719097, + -0.0019364692270755768, + 0.020592032000422478, + 0.006644680164754391, + -0.0012196687748655677, + 0.00422068452462554, + -0.0010457956232130527, + -0.01487808395177126, + -0.005751450080424547, + -0.0013568921713158488, + -0.007050384301692247, + -0.0013500736095011234, + -0.020387474447488785, + 0.006331027019768953, + -0.05689401179552078, + -0.031992651522159576, + -0.016691818833351135, + 0.020701128989458084, + 0.007923158816993237, + 0.0028893619310110807, + -0.004203638061881065, + 0.025378655642271042, + 0.013221175409853458, + 0.0023353546857833862, + 3.3000735129462555e-5, + -0.008032255806028843, + -0.016064511612057686, + 0.029237957671284676, + 0.02265123464167118, + 0.005587804596871138, + -0.011557447724044323, + -0.010814226232469082, + 0.011734730564057827, + -0.022146660834550858, + 0.012307489290833473, + -0.0038286177441477776, + 0.053157441318035126, + -0.01364392600953579, + -0.03278360515832901, + 0.014332599006593227, + -0.011646089144051075, + -0.018764659762382507, + -0.007425404619425535, + -0.03283815458416939, + -0.003999081440269947, + 0.019378328695893288, + -0.024983180686831474, + -0.020060183480381966, + -0.004026355687528849, + 0.017073657363653183, + 0.025978688150644302, + -0.025010453537106514, + 0.026278704404830933, + 0.01680091582238674, + -0.006017373409122229, + -0.005226421169936657, + 0.0036172426771372557, + -0.025351382791996002, + -0.015764495357871056, + -0.00421727541834116, + 0.0002689067041501403, + -0.011973380111157894, + 0.005359382834285498, + 0.003559284843504429, + 0.01808280311524868, + 0.012818880379199982, + -0.0016509422566741705, + -0.019187409430742264, + -0.012137025594711304, + 0.0055775768123567104, + 0.005144598428159952, + -0.023360364139080048, + 0.013773477636277676, + -0.014141679741442204, + 0.03706565499305725, + 0.01564176194369793, + 0.006228748708963394, + -0.007650416810065508, + -0.00903458334505558, + 0.02303307317197323, + 0.003485985565930605, + 0.006886738818138838, + 0.009484607726335526, + -0.021232975646853447, + 0.008332272060215473, + -0.013923486694693565, + -0.014728075824677944, + 0.03191082924604416, + -0.02210574969649315, + 0.020687490701675415, + -0.0016466806409880519, + 0.005250286310911179, + -0.009995999746024609, + 0.012048384174704552, + -0.02145116962492466, + 0.0014659890439361334, + 0.009068676270544529, + 0.0021001144777983427, + -0.00581281678751111, + -0.0018631697166711092, + -0.0063378456979990005, + -0.03526555746793747, + 0.003797934390604496, + 0.005618487950414419, + 0.022473951801657677, + -0.002614915370941162, + 0.014196228235960007, + 0.02509227767586708, + -0.0013176854699850082, + 0.056512169539928436, + 0.0005919356481172144, + 0.0303016509860754, + 0.0035865590907633305, + -0.00720721110701561, + -0.00481048971414566, + -0.004503654781728983, + 0.024969542399048805, + -0.01058921404182911, + 0.006123060826212168, + 0.02115115337073803, + 0.004691164940595627, + -0.008243631571531296, + -0.02296488732099533, + -0.02109660394489765, + 0.0006511718383990228, + 0.01378029678016901, + -0.0272333025932312, + 0.017414584755897522, + -0.009443696588277817, + 0.010834681801497936, + -0.01162563357502222, + -0.007636779919266701, + -0.037856608629226685, + 0.014632616192102432, + 0.0016500899801030755, + 0.008700474165380001, + -0.010916504077613354, + -0.025051364675164223, + -0.007186755537986755, + 0.008543647825717926, + 0.003426323179155588, + -0.018764659762382507, + 0.0010270446073263884, + 0.014755349606275558, + -0.0005194885306991637, + 0.0136166512966156, + -0.02141025848686695, + -0.00814135279506445, + -0.0014898539520800114, + 0.023183081299066544, + -0.0026575312949717045, + -0.013841663487255573, + 0.010071003809571266, + -0.027410585433244705, + -0.002093296032398939, + -0.015232648700475693, + 0.007452678866684437, + 0.005523028317838907, + -0.012075657956302166, + -0.005168463569134474, + -0.014482608065009117, + -0.011209702119231224, + -0.006416258867830038, + 0.017891883850097656, + -0.003934305161237717, + 0.028365181758999825, + 0.020142007619142532, + 0.023769477382302284, + -0.02664690650999546, + -0.0248604454100132, + 0.0007581379031762481, + 0.014646252617239952, + -0.024137679487466812, + 3.662308881757781e-5, + -0.007664054166525602, + 0.007316308096051216, + -0.0015128665836527944, + -0.005720766261219978, + 0.0037911157123744488, + -0.0186555627733469, + 0.01566903665661812, + -0.01513718906790018, + -0.0044866083189845085, + -0.034174591302871704, + 0.007868610322475433, + -0.009341418743133545, + -0.023728566244244576, + -0.00809362344443798, + 0.011168790981173515, + -0.016446350142359734, + -0.010807407088577747, + 0.0041524991393089294, + 0.017237303778529167, + 0.011646089144051075, + -0.0281742624938488, + 0.010296016000211239, + 0.0165281742811203, + 0.0065253558568656445, + -0.010336927138268948, + 0.014046220108866692, + -0.010548301972448826, + 0.005632125306874514, + -0.012171117588877678, + -0.0031331253703683615, + 0.020701128989458084, + 0.0007317160489037633, + -0.02907431125640869, + 0.0035524663981050253, + 0.010793769732117653, + 0.0034604158718138933, + 0.018587376922369003, + 0.016773641109466553, + -0.011605178005993366, + -0.0055775768123567104, + -0.0014105882728472352, + -0.013125715777277946, + 0.01931014284491539, + -0.011714274995028973, + -0.006552630104124546, + 0.010752858594059944, + -0.028883391991257668, + 0.019991999492049217, + 0.000805867777671665, + -0.01751004531979561, + -0.0018870346248149872, + 0.007398130372166634, + 0.01455079298466444, + -0.009259595535695553, + 0.01775551401078701, + 0.008202719502151012, + 0.012137025594711304, + -0.018819207325577736, + 0.0014779214980080724, + -0.022514862939715385, + 0.04374783858656883, + -0.018560102209448814, + 0.008073166944086552, + -0.014005308970808983, + -7.441811612807214e-5, + 0.0009162431233562529, + 0.021614814177155495, + -0.07325854152441025, + 0.0016858873423188925, + 0.012102932669222355, + 0.010200556367635727, + 0.0037808879278600216, + -0.010452842339873314, + -0.006116242613643408, + -0.01288024801760912, + 0.01869647391140461, + 0.024396784603595734, + -0.005843500141054392, + 0.018314635381102562, + 2.8792406737920828e-5, + -0.007227666676044464, + -0.0417022742331028, + -0.009702801704406738, + -0.02511955052614212, + 0.02057839371263981, + 0.009995999746024609, + -0.01988290250301361, + -0.02480589784681797, + -0.005659399554133415, + 0.009723257273435593, + 0.017346400767564774, + 0.007193573750555515, + -0.018150988966226578, + -0.0024120633024722338, + 0.006460579577833414, + -0.014496244490146637, + 0.020128369331359863, + -0.011455169878900051, + 0.015232648700475693, + -0.011059693992137909, + -0.0028416321147233248, + 0.010466479696333408, + 0.029647070914506912, + -0.04511154815554619, + 0.01225975900888443, + -0.004899130668491125, + -0.005642353091388941, + -0.01806916669011116, + 0.03559285029768944, + -0.006290115416049957, + -0.009545974433422089, + 0.009048220701515675, + -0.03799298033118248, + -0.01681455224752426, + -0.0025791178923100233, + -0.01595541462302208, + 0.005782133433967829, + -0.009880083613097668, + 0.0034314370714128017, + 0.004946860484778881, + -0.016773641109466553, + 0.0038729384541511536, + -0.028637925162911415, + 0.025951415300369263, + 0.01318026427179575, + 0.002302966546267271, + -0.017414584755897522, + -0.007732239551842213, + 0.02791515737771988, + -0.017032746225595474, + 0.007616324350237846, + 0.02329217828810215, + 0.024901356548070908, + 0.003763841465115547, + 0.003603605553507805, + 0.007466316223144531, + -0.013875756412744522, + 0.002921750070527196, + 0.010452842339873314, + -0.022596687078475952, + 0.011298343539237976, + 0.002478544134646654, + -0.02051020972430706, + 0.0015912798698991537, + -0.018860118463635445, + -0.00011176035332027823, + 0.029156135395169258, + -0.015887228772044182, + 0.0031433531548827887, + 0.010446024127304554, + -0.0037331581115722656, + -0.003022323828190565, + 0.007268577814102173, + -0.02086477354168892, + -0.0052980161271989346, + 0.017046384513378143, + 0.03829299658536911, + 0.01192564982920885, + 0.006071921903640032, + -0.004183182492852211, + -0.0031791506335139275, + -0.02607414871454239, + 0.01749640889465809, + 0.015300833620131016, + -0.031147152185440063, + -0.014155317097902298, + -0.016337255015969276, + 0.01618724688887596, + 0.014018946327269077, + -0.01178927905857563, + -0.005359382834285498, + 0.040911320596933365, + -0.015996325761079788, + 0.013453005813062191, + 0.006631043273955584, + -0.008693655952811241, + -0.0019057857571169734, + -0.011005145497620106, + -0.04284778982400894, + -0.006900376174598932, + 0.00962097942829132, + 0.03796570748090744, + -0.026442350819706917, + 0.017360037192702293, + 0.005782133433967829, + 0.021014781668782234, + -0.004132043570280075, + 0.022569412365555763, + 0.0025058183819055557, + 0.0077186026610434055, + -0.009314144030213356, + 0.020414749160408974, + 0.006136698182672262, + -0.013712110929191113, + 0.015109914354979992, + 0.037556592375040054, + 0.017578231170773506, + 0.02697419747710228, + 0.001159154111519456, + -0.030383475124835968, + -0.012539319694042206, + 0.019855627790093422, + 0.006474216468632221, + 0.007357219234108925, + -0.009150498546659946, + -0.006409440189599991, + 0.026455987244844437, + -0.02323763072490692, + -0.027506044134497643, + -0.018546465784311295, + -0.008802752941846848, + 0.0011386984260752797, + -0.01178927905857563, + 0.009470970369875431, + -0.004622979089617729, + 0.01315298955887556, + 0.015246286056935787, + 0.020005635917186737, + 0.01598268933594227, + 0.002614915370941162, + 0.003058121306821704, + 0.013112078420817852, + -0.020442023873329163, + -0.00750722736120224, + -0.012982525862753391, + -0.008625470101833344, + 0.00333768199197948, + -0.0016654316568747163, + -0.004254777450114489, + -0.025487752631306648, + 0.0053491550497710705, + -0.021342072635889053, + 0.016773641109466553, + -0.0013935419265180826, + 0.01133243553340435, + 0.013112078420817852, + -0.02937432937324047, + -0.0007790197269059718, + -0.03463825210928917, + -0.03161081299185753, + -0.02576049603521824, + 0.03032892569899559, + -0.020387474447488785, + -0.0011958038667216897, + -0.020360201597213745, + 0.011441532522439957, + -0.017960069701075554, + 0.027806060388684273, + 0.003651335369795561, + -0.02202392742037773, + -0.007657235488295555, + 0.01471443846821785, + -0.010221011936664581, + -0.0031706274021416903, + -0.010868774726986885, + -0.006082149688154459, + -0.011182427406311035, + 0.018451005220413208, + 0.013234812766313553, + -0.016378166154026985, + -0.013521191664040089, + -0.02055112086236477, + 0.006637861952185631, + -0.0007006063824519515, + -0.017687328159809113, + 0.013500736095011234, + -0.026265067979693413, + -0.007391312159597874, + 0.01133243553340435, + 0.0031655135098844767, + 0.0028757250402122736, + -0.020673854276537895, + 0.00036585802445188165, + 0.0010176690993830562, + 0.04841173067688942, + -0.034529153257608414, + -0.002047270769253373, + -0.0020319288596510887, + -0.00340245827101171, + -0.01165290828794241, + -0.012307489290833473, + -0.01211657002568245, + -0.012409767135977745, + -0.043638743460178375, + 0.002422291086986661, + -0.013521191664040089, + 0.0020131778437644243, + 0.005993508733808994, + 0.02209211327135563, + 0.0065867225639522076, + 0.009211866185069084, + -0.03158354014158249, + 0.024028582498431206, + 0.021846644580364227, + 0.012062021531164646, + 0.018437368795275688, + -0.02175118587911129, + -0.014864446595311165, + -0.020346563309431076, + 0.03878393396735191, + 0.011707456782460213, + -0.011114242486655712, + 0.014237139374017715, + 0.0026507126167416573, + -0.011673363856971264, + 0.013923486694693565, + 0.03518373519182205, + -0.03237449377775192, + -0.0046263886615633965, + -0.017387311905622482, + 0.006221930030733347, + -0.00979144312441349, + -0.002047270769253373, + -0.02270578406751156, + 0.019078312441706657, + 0.0025978689081966877, + -0.0065424018539488316, + -0.01719639264047146, + 0.0037127023097127676, + 0.004346827976405621, + 0.004902539774775505, + -0.00979144312441349, + 0.00422068452462554, + 0.0013918372569605708, + 0.018314635381102562, + -0.01012555230408907, + 0.021069331094622612, + -0.021273886784911156, + -0.0006784460856579244, + 0.010909685865044594, + -0.02608778513967991, + 0.024669526144862175, + -0.020169280469417572, + 0.006719684693962336, + 0.01962379738688469, + -0.007145843934267759, + -0.024983180686831474, + 0.004554793704301119, + 0.014018946327269077, + -0.019064676016569138, + 0.0015384361613541842, + -0.023060347884893417, + -0.0055093914270401, + 0.005021864548325539, + -0.0010943778324872255, + -0.04202956333756447, + -0.015041729435324669, + 0.011646089144051075, + 0.0016841826727613807, + -0.0016415667487308383, + -0.024914994835853577, + 0.014687164686620235, + -0.002364333486184478, + -0.007316308096051216, + -0.014455333352088928, + 0.0023916077334433794, + 0.006146925967186689, + 0.00398544454947114, + -0.012512045912444592, + -0.002064316999167204, + -0.005591213703155518, + 0.004391148220747709, + -0.007404949050396681, + -0.0140871312469244, + -0.00022970001737121493, + 0.001020226045511663, + 0.006054875440895557, + 0.013514373451471329, + -0.012784787453711033, + -0.024451332166790962, + -0.008557284250855446, + 0.0030530074145644903, + -0.0015358792152255774, + 0.007854973897337914, + 0.0010602850234135985, + 0.005362792406231165, + 0.012137025594711304, + 0.0033905257005244493, + -0.008468643762171268, + -0.01517810020595789, + 0.00033283064840361476, + 0.0016884442884474993, + 0.002352400915697217, + 0.00667536398395896, + -0.0035933777689933777, + 0.09055039286613464, + -0.009402785450220108, + -0.0015077526913955808, + -0.010521028190851212, + 0.012368855997920036, + -0.011291524395346642, + -0.012102932669222355, + 0.0269878339022398, + 0.0023916077334433794, + 0.010105096735060215, + 0.0008493360946886241, + -0.041811369359493256, + -0.002141025848686695, + 0.02201029099524021, + -0.004190001171082258, + -0.014632616192102432, + 0.024396784603595734, + 0.030165281146764755, + 0.004946860484778881, + 0.02696056105196476, + -0.008809571154415607, + -0.011891556903719902, + 0.0038149806205183268, + 0.018941940739750862, + -0.022201210260391235, + 0.007309489417821169, + 0.00767087284475565, + 0.018478279933333397, + 0.009975544176995754, + 0.011557447724044323, + 0.007657235488295555, + 0.018832845613360405, + -0.00041167016024701297, + -0.0041968198493123055, + -0.008666381239891052, + 0.0015844614244997501, + 0.010180100798606873, + 0.012109750881791115, + 0.015491753816604614, + 0.00398885365575552, + -0.004503654781728983, + 0.005707129370421171, + 0.03191082924604416, + 0.019228320568799973, + -0.008311816491186619, + -0.018832845613360405, + -0.002906408393755555, + -0.008332272060215473, + -0.011380165815353394, + 0.012102932669222355, + -0.02574685774743557, + -0.0033530236687511206, + 0.00405022082850337, + -0.0013969511492177844, + 0.0060957870446145535, + -0.006654908414930105, + 0.019078312441706657, + -0.01161881536245346, + -0.006937878206372261, + 0.010493753477931023, + -0.011707456782460213, + -0.008932305499911308, + -0.012621142901480198, + -0.019173773005604744, + 0.0013057530159130692, + -0.0020421568769961596, + -0.0012196687748655677, + -0.025065002962946892, + 0.009934632107615471, + -0.007950433529913425, + 0.0007231928175315261, + 0.022242121398448944, + 0.01748277060687542, + -0.031147152185440063, + -0.0072958520613610744, + 0.01391666755080223, + 0.01721002906560898, + -0.0003807735920418054, + 0.011557447724044323, + 0.013282542116940022, + 0.008127715438604355, + -0.0021819372195750475, + -0.01471443846821785, + -0.013678018003702164, + -0.012157481163740158, + 0.004472970962524414, + 0.01873738504946232, + -0.02356492169201374, + 0.0037024745251983404, + -0.020019272342324257, + -0.0021955741103738546, + 0.009886902756989002, + -0.00015512209211010486, + -0.0045820679515600204, + -0.005144598428159952, + -0.006764004938304424, + -0.006303752772510052, + -0.013221175409853458, + 0.006187837105244398, + 0.004401376470923424, + 0.016050875186920166, + 0.0002895754296332598, + -0.0021972788963466883, + 0.00767087284475565, + 0.0023217175621539354, + -0.0183419082313776, + 0.01166654471307993, + 0.027124205604195595, + -0.041538629680871964, + 0.004803671035915613, + -0.011243795044720173, + 0.007698147092014551, + 0.01655544713139534, + -0.001842714031226933, + -0.0030888046603649855, + -0.00011900506797246635, + 0.006058285012841225, + -0.009600522927939892, + -0.013166626915335655, + -0.03551102802157402, + -0.00743904197588563, + -0.007820880971848965, + -0.0035149643663316965, + -0.006958333775401115, + -0.0008932304917834699, + -0.002060907892882824, + 0.00048028185847215354, + -0.0134939169511199, + -0.011816552840173244, + 0.0052571045234799385, + 0.01751004531979561, + 0.004169545602053404, + 0.0021768230944871902, + -0.002500704489648342, + 0.008236812427639961, + -0.004704801831394434, + -0.0025791178923100233, + 0.002163186203688383, + 0.028665198013186455, + -0.02670145593583584, + 0.0024717256892472506, + -0.00780724361538887, + -0.015123551711440086, + 0.022542137652635574, + 0.01811007782816887, + 0.016009964048862457, + -0.0071526626124978065, + -0.01896921545267105, + 0.019501062110066414, + -0.010848318226635456, + 0.021901194006204605, + -0.01928286999464035, + 0.005096868611872196, + -0.024410421028733253, + 0.026578720659017563, + 0.005741221830248833, + -0.022419404238462448, + 0.006538992747664452, + 0.0006452056113630533, + 0.006569676101207733, + -0.008039074949920177, + 0.0019518109038472176, + -0.02361946925520897, + 0.007759513799101114, + -0.01684182696044445, + -0.002260350389406085, + 0.01178246084600687, + 0.03592013940215111, + 0.02634689025580883, + 0.0007125388365238905, + 0.00581281678751111, + -0.006842418573796749, + -0.003209833987057209, + -0.01903740130364895, + -0.01301661878824234, + -0.016691818833351135, + 0.017046384513378143, + 0.014673527330160141, + -0.022978525608778, + -0.0034825762268155813, + 0.005151417106389999, + -0.022201210260391235, + 0.008584558963775635, + -0.0058230445720255375, + 0.013037074357271194, + -0.025815043598413467, + 0.010296016000211239, + -0.008073166944086552, + 0.006317389663308859, + 0.025037728250026703, + -0.020469296723604202, + 0.032074473798274994, + -0.009464152157306671, + 0.010991508141160011, + -0.018000980839133263, + 0.006075331009924412, + 0.011168790981173515, + 0.013500736095011234, + -0.008939123712480068, + -0.0037024745251983404, + -0.01133243553340435, + 0.011461988091468811, + -0.0052571045234799385, + -0.004790033679455519, + 0.0238512996584177, + -0.0012307489523664117, + -0.01238249335438013, + -0.022201210260391235, + 0.0001844205689849332, + 0.007227666676044464, + -0.037229303270578384, + -0.025637760758399963, + 0.021014781668782234, + -0.007179936859756708, + -0.023660380393266678, + 0.009907358326017857, + 0.010623306035995483, + 0.0017643007449805737, + 0.011632452718913555, + -0.0045309290289878845, + 0.0014651366509497166, + -0.005703719798475504, + 0.008386820554733276, + -0.009443696588277817, + -0.007902703247964382, + 0.007643598597496748, + -0.013991671614348888, + 0.009089131839573383, + -0.002662645187228918, + -0.014441695995628834, + 0.03259268403053284, + -0.0036070148926228285, + -0.008345909416675568, + 0.019773805513978004, + 0.0036479260306805372, + 0.023974034935235977, + 0.020019272342324257, + -0.005690082907676697, + 0.0043979668989777565, + -0.022623959928750992, + 0.006521946284919977, + 0.020346563309431076, + -0.004725257400423288, + 0.0054412055760622025, + 0.00468434626236558, + -0.005267332773655653, + -0.0006273069302551448, + 0.0009426650358363986, + -0.012805243022739887, + -2.7380754545447417e-5, + -0.009709619916975498, + -0.016650907695293427, + -0.010575576685369015, + 0.01483717281371355, + 0.005338927265256643, + 0.009007309563457966, + 0.004169545602053404, + -0.0034212092868983746, + -0.0030427793972194195, + 0.0025177509523928165, + -0.010636943392455578, + 0.01025510486215353, + 0.014987180940806866, + 0.0019160135416314006, + 0.002212620573118329, + 0.014673527330160141, + -0.021914830431342125, + 0.0029933450277894735, + -0.00949142687022686, + 0.022787606343626976, + 0.003589968429878354, + 0.017878247424960136, + 0.01654181070625782, + 0.0037604323588311672, + -0.0029950495809316635, + -0.004039993043988943, + 0.011639270931482315, + -0.027096930891275406, + 0.0009136861772276461, + -0.013043892569839954, + -0.0077186026610434055, + 0.004227503202855587, + 0.0014540565898641944, + -0.016705455258488655, + -0.0062935249879956245, + -0.022733056917786598, + -0.00033879687543958426, + -0.010923322290182114, + -0.007854973897337914, + 0.005523028317838907, + -0.000550172058865428, + 0.0007747581694275141, + 0.026878738775849342, + 0.012621142901480198, + -0.008461824618279934, + 0.007452678866684437, + 0.006068512797355652, + -0.0014455333584919572, + 0.01929650641977787, + 0.007002654485404491, + 0.004326372407376766, + -0.015723584219813347, + -8.523192082066089e-5, + -0.0031228975858539343, + 0.007425404619425535, + -0.006426486652344465, + 0.0015401407144963741, + -0.014918995089828968, + -0.0037502043414860964, + -0.0002804130199365318, + -0.010711947456002235, + 0.001655203872360289, + 0.006146925967186689, + -0.013378001749515533, + -0.0032524499110877514, + -0.011693819426000118, + 0.022446678951382637, + 0.01842373237013817, + -0.012164299376308918, + 0.005884411744773388, + -0.009150498546659946, + 0.010636943392455578, + -0.013875756412744522, + 0.020169280469417572, + 0.0002889361931011081, + 0.021301161497831345, + 0.017687328159809113, + 0.010173281654715538, + 0.0019518109038472176, + -0.007016291376203299, + -0.00398544454947114, + -0.0077663324773311615, + -0.01513718906790018, + 0.0035047365818172693, + 0.00333768199197948, + 0.016691818833351135, + -0.012055202387273312, + -0.0015793474158272147, + -0.0020592031069099903, + 0.019691983237862587, + -0.025924140587449074, + -0.016637271270155907, + -0.009355055168271065, + -0.016309980303049088, + 0.0017285032663494349, + 0.02761514112353325, + 0.0012128502130508423, + 0.001157449441961944, + 0.013043892569839954, + 0.028883391991257668, + 0.014646252617239952, + 0.011346072889864445, + 0.015682673081755638, + -0.0014898539520800114, + -0.0029814124573022127, + -0.00703674741089344, + 0.0016509422566741705, + 0.017319126054644585, + 0.00949824508279562, + 0.00657649477943778, + -0.02087840996682644, + 0.024655889719724655, + -0.012955252081155777, + 0.006719684693962336, + 0.00843455083668232, + 0.0009861333528533578, + -0.002388198394328356, + 0.030083458870649338, + 0.0008940828265622258, + -0.005021864548325539, + 0.007323126308619976, + -0.02978344075381756, + -0.015737220644950867, + -0.011086967773735523, + -0.010411931201815605, + 0.012621142901480198, + -0.019978361204266548, + -0.0165281742811203, + -0.005113915074616671, + -0.001226487336680293, + 0.02479226142168045, + -0.004329781513661146, + -0.019173773005604744, + -0.01483717281371355, + 0.021983016282320023, + -0.0008361251093447208, + 0.01026874128729105, + 0.02210574969649315, + -0.003808162175118923, + -0.015750858932733536, + -0.010786951519548893, + 0.007268577814102173, + 0.01933741755783558, + -0.0014975247904658318, + 0.01211657002568245, + -0.01869647391140461, + -0.0001789870293578133, + 0.03913849592208862, + 0.014482608065009117, + -0.01778278686106205, + 0.016432713717222214, + 0.01804189197719097, + 0.015709947794675827, + 0.03422913700342178, + -0.008502735756337643, + -0.011305161751806736, + 0.004159317817538977, + 0.021873919293284416, + 0.02761514112353325, + -0.01685546338558197, + 0.009811898693442345, + 0.013248449191451073, + -0.015382656827569008, + 0.0010602850234135985, + 0.00041784948552958667, + 0.008461824618279934, + 0.022446678951382637, + -0.015532664954662323, + 0.028883391991257668, + 0.00023907552531454712, + 0.026428712531924248, + 0.003992263227701187, + 0.016459988430142403, + -0.00996190682053566, + 0.002906408393755555, + -0.007268577814102173, + 0.027737876400351524, + 0.009000490419566631, + -0.0014165544416755438, + 0.006965152453631163, + 0.003675200277939439, + -0.026906011626124382, + 0.008175445720553398, + 0.004595704842358828, + -0.020619304850697517, + -0.007479953113943338, + 0.013807570561766624, + -0.014796260744333267, + -0.0014770691050216556, + 0.00920504704117775, + -0.010173281654715538, + 0.0063378456979990005, + 0.010411931201815605, + 0.008550466038286686, + 0.008686836808919907, + 0.008761840872466564, + 0.0019398784497752786, + 0.020701128989458084, + -0.017073657363653183, + -0.010950597003102303, + -0.008059530518949032, + 0.02112387865781784, + 0.023646743968129158, + -0.024110404774546623, + -0.013057529926300049, + -0.02637416496872902, + 0.0031092604622244835, + 0.00422068452462554, + 0.007609505672007799, + -0.012437041848897934, + -0.0041047693230211735, + -0.006088968366384506, + -0.007316308096051216, + -0.0006822815048508346, + -0.0013066052924841642, + 0.005076413042843342, + 0.016323616728186607, + 0.005942369345575571, + -0.0024188817478716373, + 0.013125715777277946, + 0.005093459505587816, + 0.007527682930231094, + 0.02421950176358223, + -0.005424159113317728, + 0.017932794988155365, + 0.002314898883923888, + 0.0026046873535960913, + 0.016732729971408844, + -0.005523028317838907, + -0.005662808660417795, + -0.0153417456895113, + -0.0006575642619282007, + -0.008086804300546646, + 0.002966070780530572, + 0.016609996557235718, + -0.0024035400710999966, + -0.008830026723444462, + 0.02726057730615139, + 0.00783451832830906, + 0.029619796201586723, + 0.005918504204601049, + -0.005090050399303436, + 0.007268577814102173, + 0.0014463856350630522, + 0.01425077673047781, + -0.018328271806240082, + -0.003114374354481697, + 0.009123224765062332, + 0.014946268871426582, + -0.013002981431782246, + 0.004697983153164387, + -0.010473297908902168, + -0.0067742327228188515, + 0.01531447097659111, + 0.003022323828190565, + 0.011427896097302437, + -0.010650580748915672, + 0.011775641702115536, + -0.001564858015626669, + 0.011461988091468811, + 0.02296488732099533, + -0.01009145937860012, + -0.011502900160849094, + 0.00222455314360559, + -0.0035695128608494997, + 0.008216356858611107, + -0.008884575217962265, + 0.01779642514884472, + 0.025965051725506783, + -0.0032388130202889442, + 0.0015810520853847265, + -0.014046220108866692, + -0.0002716767485253513, + 0.02240576595067978, + -0.007541320286691189, + -0.0007389607490040362, + 0.011707456782460213, + 0.005059366580098867, + 0.025324108079075813, + -0.009136862121522427, + -0.009566430933773518, + 0.012866610661149025, + -0.017564592882990837, + 0.0013449597172439098, + -0.0018035074463114142, + 0.0059150950983166695, + 0.002614915370941162, + -0.016746368259191513, + 0.03864756226539612, + -0.004953679163008928, + -0.0067708236165344715, + -0.008645925670862198, + 0.0009707915596663952, + -0.02112387865781784, + -0.01225294079631567, + -0.018314635381102562, + -0.007745876908302307, + 0.004029765259474516, + 0.002376265823841095, + 0.010452842339873314, + -0.0024597931187599897, + 0.00932778138667345, + 0.043693289160728455, + 0.013514373451471329, + 0.014578067697584629, + -0.01956924796104431, + -0.003233698895201087, + -0.015382656827569008, + 0.004411604255437851, + 0.0010261923307552934, + -0.007773151155561209, + -0.0007014587172307074, + 0.01682819053530693, + 0.002838223008438945, + -0.0021683000959455967, + 0.011052874848246574, + 0.0013943942030891776, + 0.0077186026610434055, + -0.0020523846615105867, + 0.0049673160538077354, + -0.019814716652035713, + -0.0072958520613610744, + -0.010582394897937775, + 0.003395639592781663, + 0.009382329881191254, + 0.004708211403340101, + -0.013384820893406868, + -0.01956924796104431, + 0.021642088890075684, + 0.013357546180486679, + -0.011530173942446709, + -0.01254613883793354, + -0.028856119140982628, + 0.006692410446703434, + -0.0025211600586771965, + 0.01411440595984459, + 0.007929977960884571, + 0.0070435656234622, + 0.013125715777277946, + -0.023510372266173363, + 0.01836918294429779, + -0.01899649016559124, + -0.0005552859511226416, + 0.0018614650471135974, + 0.000816095620393753, + -0.006351482588797808, + -0.015000817365944386, + 0.005751450080424547, + -0.014032582752406597, + -0.019064676016569138, + 0.002749581588432193, + 0.008025437593460083, + 0.003024028381332755, + 0.004002491012215614, + -0.017946433275938034, + 0.008714111521840096, + 0.024683164432644844, + -0.021273886784911156, + -0.005724175833165646, + -0.006941287312656641, + -0.019664708524942398, + 0.010377838276326656, + 0.007998162880539894, + -0.004036583472043276, + 0.007234485354274511, + -0.029292505234479904, + 0.029592521488666534, + -0.001320242416113615, + 0.038129352033138275, + -0.013800752349197865, + 0.0006899524014443159, + -0.002609801245853305, + 0.0068151443265378475, + 0.005949188023805618, + 0.0049673160538077354, + -0.023769477382302284, + -0.020032910630106926, + 0.011857464909553528, + 0.011550629511475563, + -0.018464643508195877, + 0.000591509509831667, + 0.003739976556971669, + 0.004476380534470081, + -0.02201029099524021, + 0.014128042384982109, + -0.0058707743883132935, + -0.008236812427639961, + 0.0007572856266051531, + 0.016705455258488655, + -0.015409930609166622, + 0.01781006157398224, + -0.042438678443431854, + -0.0038763475604355335, + 0.0028228810988366604, + -0.0015861659776419401, + -0.01039147563278675, + 0.018532827496528625, + 0.01073240302503109, + 0.0072890338487923145, + 0.005502572748810053, + -0.015450842678546906, + -0.020769314840435982, + -0.007309489417821169, + 0.010302834212779999, + 0.018178263679146767, + -0.020319288596510887, + 0.0034808716736733913, + -0.019364692270755768, + 0.017373673617839813, + -0.011298343539237976, + -0.0013406981015577912, + -0.019201045855879784, + -0.006259432062506676, + -0.015000817365944386, + 0.014987180940806866, + -0.02389221079647541, + 0.00949824508279562, + 0.007364037912338972, + 0.005495754070580006, + -0.01483717281371355, + -0.014741712249815464, + 0.013800752349197865, + -0.01425077673047781, + 0.0010287492768839002, + -0.004776396788656712, + -0.020987506955862045, + -0.014728075824677944, + -0.02022382989525795, + 0.012764331884682178, + -0.04434787109494209, + 0.00885730143636465, + -0.006075331009924412, + -0.013691655360162258, + -0.015055365860462189, + -1.1386451660655439e-5, + -0.0036683818325400352, + -0.0021819372195750475, + -0.010698310099542141, + -0.018137352541089058, + -0.021860282868146896, + -0.024124043062329292, + -0.005990099161863327, + -0.018614651635289192, + -0.019801080226898193, + 0.02083749882876873, + 0.015259922482073307, + 3.526470754877664e-5, + -0.003358137561008334, + -0.0023575148079544306, + -0.015505390241742134, + -0.03859301283955574, + -0.0050082276575267315, + -0.008755022659897804, + -0.008359546773135662, + 0.0207829512655735, + -0.01391666755080223, + 0.008755022659897804, + -0.011468807235360146, + 0.012218847870826721, + -0.0065730856731534, + -0.002088181907311082, + 0.008945941925048828, + 0.004926404915750027, + -0.0061571537517011166, + -0.024110404774546623, + -0.01656908541917801, + 0.028665198013186455, + -0.013500736095011234, + -0.00720721110701561, + 0.016037236899137497, + -0.009484607726335526, + -0.011175609193742275, + -0.024055857211351395, + 0.005881002172827721, + -0.0038865755777806044, + -0.010173281654715538, + -0.01487808395177126, + 0.019419239833950996, + -0.003978625871241093, + 0.023114895448088646, + 0.021014781668782234, + -0.0020097687374800444, + 0.014332599006593227, + 0.01120288297533989, + -0.0187237486243248, + -0.016446350142359734, + 0.018273724243044853, + 0.009818716906011105, + -0.009211866185069084, + -0.0019484016811475158, + -0.01513718906790018, + -0.03005618415772915, + -0.02021019347012043, + 0.020687490701675415, + -0.0014199637807905674, + -0.010602850466966629, + -0.010289196856319904, + 0.018832845613360405, + -0.023783113807439804, + 0.02295125089585781, + -0.00796407088637352, + 0.0015972461551427841, + 0.01055512111634016, + 0.008782296441495419, + 0.0053934757597744465, + -0.018805570900440216, + 0.012696146965026855, + 0.003821799298748374, + 0.0033069984056055546, + 0.015996325761079788, + -0.0043059163726866245, + 0.01455079298466444, + -0.00498436251655221, + 0.01483717281371355, + -0.0027734467294067144, + 0.023128533735871315, + 0.0076776910573244095, + -0.01072558481246233, + 0.005505981855094433, + 0.02263759821653366, + 0.016173608601093292, + -0.019814716652035713, + 0.012034746818244457, + -0.014687164686620235, + -0.0029575475491583347, + 0.0007888214313425124, + 0.0041524991393089294, + 0.007534501608461142, + -0.008720929734408855, + 0.007664054166525602, + -0.00451729167252779, + 0.011482443660497665, + -0.037529319524765015, + 0.015587213449180126, + -0.016214519739151, + 0.0018120305612683296, + 0.014237139374017715, + 0.0035967868752777576, + 0.02359219454228878, + -0.001366267679259181, + 0.0070435656234622, + 0.012021109461784363, + -0.020073821768164635, + 0.005502572748810053, + 0.029292505234479904, + -0.003231994342058897, + 0.005430977791547775, + 0.0044866083189845085, + -0.019541975110769272, + -0.004796852357685566, + 0.01335072796791792, + 0.01196656096726656, + -0.013391639105975628, + -0.007370856124907732, + -0.0027188982348889112, + 0.025024091824889183, + -0.009900540113449097, + 0.0010594327468425035, + 0.0019961316138505936, + -0.010943778790533543, + 0.0069549246691167355, + -0.0014804784441366792, + 0.001125061302445829, + 0.01335072796791792, + 0.014305325224995613, + -0.003675200277939439, + 0.016105422750115395, + -0.010357382707297802, + -0.0006950662937015295, + 0.02637416496872902, + -0.016678182408213615, + -0.013705292716622353, + 0.004697983153164387, + 0.013678018003702164, + -0.00903458334505558, + -0.016650907695293427, + -0.007861792109906673, + -0.014618978835642338, + 0.006914013065397739, + -0.017278214916586876, + -0.006631043273955584, + 0.019405603408813477, + 0.010705129243433475, + 0.012362037785351276, + -0.0008659563027322292, + -0.03335636481642723, + -0.030138006433844566, + -0.003475757548585534, + -0.010943778790533543, + -0.0003338960523251444, + 0.01391666755080223, + -0.04014764353632927, + -0.003797934390604496, + 0.005059366580098867, + -0.008966397494077682, + -0.007909522391855717, + -0.01899649016559124, + 0.004029765259474516, + -0.002848450792953372, + 0.006487853825092316, + -0.010377838276326656, + 0.016896376386284828, + 0.004425241146236658, + 0.005250286310911179, + -0.010159644298255444, + 0.008154990151524544, + -0.033874575048685074, + -0.010684673674404621, + 0.005635534413158894, + -0.0011301751947030425, + -0.008986853063106537, + 0.013596195727586746, + 0.00902776513248682, + 0.010971052572131157, + 0.02150571718811989, + -0.013718930073082447, + 0.016364527866244316, + 0.01752368174493313, + -0.00674695847555995, + -0.009818716906011105, + -0.01658272184431553, + -0.017987344413995743, + -0.008448188193142414, + 0.018478279933333397, + 0.007664054166525602, + -0.0033922302536666393, + 0.013043892569839954, + -0.011993835680186749, + 0.01682819053530693, + 0.012327944859862328, + -0.011209702119231224, + 0.0007981969392858446, + 0.00038908369606360793, + 0.0031348299235105515, + -0.023046711459755898, + 0.0031655135098844767, + 0.01590086705982685, + -0.021328436210751534, + 0.012062021531164646, + 0.009266413748264313, + 0.0037740692496299744, + -0.010118733160197735, + 0.027124205604195595, + 0.010821044445037842, + -0.0020114732906222343, + -0.0025910502299666405, + 0.007452678866684437, + -0.0037331581115722656, + -0.00950506329536438, + 0.002684805542230606, + -0.004186592064797878, + 0.00043937054579146206, + -0.016623632982373238, + -0.022855792194604874, + -0.018832845613360405, + -0.009164135903120041, + -0.04778442159295082, + -0.007711783982813358, + -0.009852809831500053, + 0.019391966983675957, + -0.004629797767847776, + -0.010330108925700188, + 0.0008092770585790277, + -0.006269659847021103, + 0.00644694222137332, + -0.0020285197533667088, + 0.004769578110426664, + -0.007691328413784504, + -0.005362792406231165, + -0.007193573750555515, + -0.009443696588277817, + 0.016023600473999977, + -0.005335518158972263, + 0.004496836103498936, + -0.005799179896712303, + 0.002974594011902809, + -0.026142334565520287, + -0.010118733160197735, + 0.0029012945014983416, + -0.015723584219813347, + 0.03403821960091591, + 0.0004994590417481959, + 0.006170791108161211, + 0.007636779919266701, + -0.00933459959924221, + -0.004974134732037783, + -0.010582394897937775, + -0.0296743456274271, + 0.00126228469889611, + 0.021205700933933258, + 0.04478425905108452, + 0.0063855755142867565, + -0.00024972952087409794, + -0.02171027474105358, + 0.0036001962143927813, + 0.00890503078699112, + -0.010009636171162128, + -0.009900540113449097, + 0.006777642294764519, + 0.020155644044280052, + -0.0015452547231689095, + -0.004636616446077824, + 0.024574067443609238, + 0.011523355729877949, + 0.02359219454228878, + -0.0037127023097127676, + -0.007711783982813358, + -0.017087295651435852, + -0.004772987216711044, + 0.008059530518949032, + -0.0007636779919266701, + -0.014918995089828968, + 0.018137352541089058, + -0.0153417456895113, + -0.007902703247964382, + -0.0024495653342455626, + 0.011646089144051075, + 0.0053423368372023106, + -0.00891184899955988, + -0.009873265400528908, + 0.0010909686097875237, + -0.00032473361352458596, + -0.011980198323726654, + 0.027069658041000366, + 0.02822881191968918, + 0.022173935547471046, + 0.010418749414384365, + 0.021273886784911156, + -0.01565539836883545, + 0.01056193932890892, + -0.02048293501138687, + -0.022255757823586464, + 0.03245631605386734, + -0.009300506673753262, + 0.02235121838748455, + 0.009586886502802372, + 0.007473134435713291, + 0.001089263940230012, + 0.009239139966666698, + -0.009082313627004623, + -0.004466152749955654, + -0.01774187572300434, + 0.0015733812469989061, + -0.0019296506652608514, + 0.00011133419320685789, + 0.004558202810585499, + 0.025228647515177727, + 0.023087622597813606, + 0.001953515689820051, + -0.014237139374017715, + 0.004933223593980074, + 0.028256084769964218, + -0.009191409684717655, + 0.0010534664615988731, + 0.012491590343415737, + -0.011100605130195618, + 0.014946268871426582, + -0.007132207043468952, + -0.03332908824086189, + 0.025924140587449074, + 0.00797770731151104, + 0.009825536049902439, + -0.035674672573804855, + -0.001413145218975842, + 0.0008736271411180496, + 0.039711255580186844, + 0.004469561856240034, + 0.03155626729130745, + -0.019855627790093422, + 0.0056389435194432735, + -0.014182590879499912, + 0.004029765259474516, + -0.013378001749515533, + -0.009982362389564514, + 0.009355055168271065, + 0.009252777323126793, + -0.02051020972430706, + 0.002608096692711115, + -0.016119061037898064, + -0.020646579563617706, + 0.01411440595984459, + 0.011946105398237705, + 0.007104932796210051, + -0.0060037365183234215, + -0.01561448723077774, + -0.015246286056935787, + -0.006852646358311176, + 0.010364200919866562, + -0.0011097196256741881, + 0.014141679741442204, + -0.00444910628721118, + 0.01116197183728218, + 0.004145680461078882, + 0.01961015909910202, + -0.00966189056634903, + -0.008693655952811241, + 0.01648726314306259, + 0.003472348442301154, + 0.007050384301692247, + 0.003808162175118923, + -0.02025110460817814, + -0.03286542743444443, + 0.01718275435268879, + 0.005338927265256643, + 0.0366838164627552, + 0.01162563357502222, + 0.00017600391583982855, + 0.0009648253326304257, + 0.033192720264196396, + 0.014537155628204346, + -0.016937287524342537, + 0.03027437813580036, + -0.0007743319729343057, + -0.0044422876089811325, + -0.008591377176344395, + 0.011755186133086681, + -0.01319390069693327, + 0.023483097553253174, + -0.0007440746412612498, + 0.004691164940595627, + -0.01774187572300434, + 0.027069658041000366, + 0.006487853825092316, + 0.003233698895201087, + -0.015832681208848953, + -0.010357382707297802, + 0.014005308970808983, + 0.006821963004767895, + -0.009716439060866833, + 0.012580230832099915, + 0.012062021531164646, + -0.0026694636326283216, + -0.005188919138163328, + -0.0005949187907390296, + -0.0031706274021416903, + -0.024996817111968994, + 0.012362037785351276, + -0.005386657081544399, + -0.00949142687022686, + -0.014605341479182243, + -0.01043920498341322, + -0.01318708248436451, + 0.015887228772044182, + 0.016309980303049088, + 0.015887228772044182, + -0.0093618743121624, + 0.005751450080424547, + -0.003566103521734476, + 0.014400784857571125, + -0.014782624319195747, + 0.005366201512515545, + 0.008945941925048828, + -0.0008246187935583293, + 0.01629634201526642, + 0.009450514800846577, + 0.009464152157306671, + 0.012307489290833473, + -0.007125388365238905, + -0.01043238677084446, + 0.023346727713942528, + -0.0044900174252688885, + -0.007595868781208992, + -0.01996472477912903, + -0.011339254677295685, + 0.006559448316693306, + 0.005805998109281063, + 0.009730075486004353, + 0.003767250804230571, + 0.006235567387193441, + 0.001273364876396954, + -0.030792588368058205, + 0.007159481290727854, + 0.011080149561166763, + -0.010323289781808853, + 0.0018955578561872244, + 0.019364692270755768, + 0.002018291736021638, + -0.014332599006593227, + 0.0151508254930377, + -0.005966234486550093, + 0.02022382989525795, + 0.011393803171813488, + 0.0023779706098139286, + 0.012982525862753391, + 0.018532827496528625, + 0.00033666606759652495, + 0.027165116742253304, + -0.008639107458293438, + 0.0033768885768949986, + 0.004268414340913296, + 0.014046220108866692, + 0.03150171786546707, + 0.018437368795275688, + 0.006654908414930105, + 0.002802425529807806, + -0.0026217338163405657, + 0.011530173942446709, + 0.0007338467985391617, + -0.002429109765216708, + 0.0018597604939714074, + -0.001494967844337225, + -0.0025961643550544977, + -0.002163186203688383, + -0.010350564494729042, + -0.02721966616809368, + -0.005096868611872196, + 0.009852809831500053, + -5.795770630356856e-5, + -0.014659889973700047, + 0.027424221858382225, + 0.015164462849497795, + -0.012437041848897934, + -0.02426041290163994, + -0.0014728076057508588, + 0.03095623292028904, + 0.011775641702115536, + -0.0014344531809911132, + 0.003347909776493907, + 0.0041047693230211735, + -0.000608129717875272, + 0.001565710292197764, + -0.021955741569399834, + -0.0006694967160001397, + -0.015259922482073307, + 0.019773805513978004, + -0.0007163742557168007, + 0.009075494483113289, + -0.00814817100763321, + 0.03240176662802696, + -0.03270178288221359, + -0.018573740497231483, + -0.003279724158346653, + -0.0034382555168122053, + -0.011393803171813488, + 0.005594623275101185, + -0.01116197183728218, + -0.03270178288221359, + 0.003013800596818328, + 0.005492344964295626, + 0.009402785450220108, + 0.03851119056344032, + -0.011489262804389, + -0.01836918294429779, + -0.011257431469857693, + -0.012143843807280064, + 0.0009776101214811206, + -0.011687000282108784, + 0.009518700651824474, + 0.01039829384535551, + -0.0022910339757800102, + -0.0423295795917511, + -0.011346072889864445, + 0.021587539464235306, + 0.00504913879558444, + -0.012102932669222355, + 0.01901012659072876, + 0.014618978835642338, + -0.008311816491186619, + -0.010671036317944527, + 0.017360037192702293, + -0.001273364876396954, + -0.009252777323126793, + 0.008489099331200123, + -0.026183245703577995, + 0.00149411556776613, + 0.02057839371263981, + -0.011489262804389, + -0.014523519203066826, + 0.04590250179171562, + 0.016664544120430946, + 0.003947942517697811, + 0.034174591302871704, + 0.004193410277366638, + 0.004039993043988943, + 0.023401275277137756, + 0.007957251742482185, + 0.008318635635077953, + 0.0015435500536113977, + -0.009655071422457695, + 0.0007623995188623667, + 0.0026984424330294132, + 0.02057839371263981, + -0.016705455258488655, + 0.00498095341026783, + 0.00010595392814138904, + 0.013541647233068943, + 0.006757186725735664, + -0.002827994991093874, + -0.0015265037072822452, + 0.00287402025423944, + -0.005502572748810053, + 0.00674695847555995, + 0.011905194260179996, + -0.0008693655836395919, + -0.018587376922369003, + -0.008311816491186619, + 0.004994590301066637, + -0.0031689228489995003, + 0.0017523682909086347, + 0.004340009298175573, + 0.019664708524942398, + -0.01595541462302208, + 0.0027990161906927824, + 0.024901356548070908, + 0.023987671360373497, + -0.00016002292977645993, + -0.01895557902753353, + -0.005792361218482256, + -0.007343582343310118, + 0.006170791108161211, + -0.012102932669222355, + -0.007889066822826862, + 0.019091948866844177, + 0.025324108079075813, + 0.010077822022140026, + -0.00391725916415453, + -0.005945778451859951, + -0.00827090535312891, + 0.008761840872466564, + -0.008455006405711174, + -0.01161881536245346, + 0.0187237486243248, + 0.0063378456979990005, + -0.015205373987555504, + 0.0038729384541511536, + -0.005035501904785633, + 0.024001307785511017, + 0.01993745006620884, + 0.011816552840173244, + 0.011386984027922153, + 0.015164462849497795, + 0.0017574821831658483, + -0.0034246183931827545, + -0.0006878215936012566, + -0.004667299799621105, + -0.0055741677060723305, + 0.03395639732480049, + -0.009893720969557762, + 0.014209865592420101, + -0.002897885162383318, + -0.005925322882831097, + -0.024696800857782364, + -0.003197901649400592, + -0.0010884115472435951, + -0.016078149899840355, + 0.0050559574738144875, + 0.00783451832830906, + -0.00567644601687789, + -0.0025416158605366945, + 0.014809898100793362, + -0.0053014252334833145, + -0.0012119979364797473, + -0.0031007372308522463, + -8.44861424411647e-5, + -0.01441442221403122, + 0.015682673081755638, + -0.01781006157398224, + 0.0044866083189845085, + -0.014168954454362392, + -0.003978625871241093, + -0.0052980161271989346, + -0.004360464867204428, + 0.025487752631306648, + -0.004643435124307871, + -0.008652744814753532, + 0.023674016818404198, + -0.00574804050847888, + -0.0020217010751366615, + -0.019378328695893288, + 0.0029012945014983416, + 0.007957251742482185, + 0.007698147092014551, + 0.01165290828794241, + 0.009648253209888935, + 0.008073166944086552, + 0.00627988763153553, + -0.03867483511567116, + -0.0029780033510178328, + 0.02599232643842697, + 0.007943614386022091, + -0.005362792406231165, + 0.014782624319195747, + -0.008345909416675568, + 0.013418912887573242, + -0.018901029601693153, + 0.008707292377948761, + -0.004547975026071072, + 0.0012085885973647237, + -0.004762759432196617, + -0.009266413748264313, + -0.005267332773655653, + 0.017264576628804207, + 0.010186919011175632, + -0.013214356265962124, + -0.021792097017169, + -0.006262841168791056, + -0.009395966306328773, + 0.011571085080504417, + 0.004466152749955654, + 0.009539156220853329, + -0.007466316223144531, + 0.013548465445637703, + -0.0045820679515600204, + 0.006896967068314552, + 0.01779642514884472, + -0.005601441487669945, + 0.009818716906011105, + -0.01564176194369793, + -0.02420586533844471, + -0.028637925162911415, + -0.003767250804230571, + -0.01318026427179575, + 0.000339009944582358, + 0.002967775333672762, + -0.028965216130018234, + 0.01485080923885107, + 0.00310755567625165, + -0.0043536461889743805, + 0.020292015746235847, + 0.002976298565044999, + -0.015355382114648819, + -0.006320799235254526, + -0.006460579577833414, + -0.0017174232052639127, + 0.011277887038886547, + 0.019869264215230942, + -0.016964560374617577, + -0.0017455497290939093, + -0.0005101130227558315, + -0.008189083077013493, + 0.004288870375603437, + 0.009770987555384636, + -0.016691818833351135, + 0.011557447724044323, + 0.012771151028573513, + 0.019746530801057816, + 0.01501445472240448, + -0.015832681208848953, + -0.01102560106664896, + 0.018246449530124664, + -0.01685546338558197, + -0.032429039478302, + 0.0021018190309405327, + -0.004994590301066637, + -0.013357546180486679, + 0.005025274120271206, + -0.007350400555878878, + 0.01899649016559124, + -0.007377674803137779, + 0.020360201597213745, + 0.012205210514366627, + 0.021983016282320023, + -0.009218684397637844, + 0.005127552431076765, + 0.024151315912604332, + 0.011646089144051075, + -0.008243631571531296, + 0.011987017467617989, + 0.03581104427576065, + 0.00333768199197948, + -0.002095000585541129, + -0.00240524485707283, + -0.010405112989246845, + 0.004718439187854528, + -0.009293688461184502, + -0.01629634201526642, + 0.0038524826522916555, + -0.012668872252106667, + -0.001610883278772235, + 0.0033871163614094257, + 0.0058196354657411575, + -0.006198065355420113, + 0.0174691341817379, + -0.021273886784911156, + 0.03840209171175957, + -0.0019245367730036378, + -0.0058707743883132935, + 0.0021495490800589323, + -0.0007176527287811041, + 0.031774457544088364, + 0.009470970369875431, + -0.0039683980867266655, + -0.01899649016559124, + 0.010514209046959877, + 0.011414258740842342, + 0.024069493636488914, + -0.010241467505693436, + -0.016419077292084694, + -0.011073330417275429, + 0.004759350325912237, + -0.0064367144368588924, + 0.0007112603634595871, + 0.02177846059203148, + -0.00018623174401000142, + 0.008536828681826591, + 0.0005429273005574942, + 0.004599114414304495, + -0.012402948923408985, + 0.002383084502071142, + -0.0025416158605366945, + -0.007725421339273453, + 0.009975544176995754, + -0.006266250740736723, + 0.017946433275938034, + -0.014168954454362392, + -0.023755840957164764, + -0.0021836417727172375, + 0.007684509735554457, + -0.005713948048651218, + -0.003255859250202775, + 0.011264250613749027, + 0.02634689025580883, + 0.010384657420217991, + 0.009211866185069084, + -0.030874410644173622, + 0.00859819632023573, + 0.01805553026497364, + 0.009893720969557762, + 0.03799298033118248, + -0.013882574625313282, + -0.0002333223819732666, + 0.021532991901040077, + -0.004009309224784374, + 0.020605668425559998, + 0.017660053446888924, + 0.013909849338233471, + -0.00011975084635196254, + 0.006262841168791056, + -0.011468807235360146, + -0.007214029785245657, + -0.004097950644791126, + 0.019664708524942398, + -0.008380002342164516, + 0.008618651889264584, + -0.039629433304071426, + -0.017891883850097656, + 0.0030052773654460907, + 0.011414258740842342, + -0.015464479103684425, + 0.008154990151524544 + ], + "41f41352-1116-41d4-9b74-7543016929a3": [ + -0.03794537112116814, + -0.022329621016979218, + -0.0069798799231648445, + 0.003617323702201247, + -0.01970701478421688, + -0.017923641949892044, + -0.005069124046713114, + 0.05191262438893318, + -0.0016972010489553213, + 0.013240416534245014, + 0.020591208711266518, + 0.013165485113859177, + 0.006650181021541357, + -0.018163423985242844, + 0.022149786353111267, + 0.025192009285092354, + -0.03827507048845291, + -0.0020849721040576696, + 0.009831028059124947, + -0.033299610018730164, + 0.03581731393933296, + -0.005245212931185961, + -0.009366451762616634, + -0.004698212258517742, + 0.013682513497769833, + -0.007830353453755379, + 0.006949907168745995, + 0.01676969602704048, + -0.057457562536001205, + 0.016484955325722694, + -0.005773480981588364, + -0.015181145630776882, + -0.004982952494174242, + -0.0031696073710918427, + 0.03686635568737984, + -0.01609531044960022, + 0.0065115573816001415, + 0.013150498270988464, + -0.005807200446724892, + -0.024547597393393517, + -0.043100666254758835, + 0.03362930938601494, + -0.014641637913882732, + 0.020920908078551292, + -0.03123149834573269, + -0.0006219324423000216, + -0.021430442109704018, + -0.010168219916522503, + -0.015331008471548557, + 0.02114570140838623, + -0.0007277732947841287, + -0.014341911301016808, + -0.02582143433392048, + 0.0027518635615706444, + 0.05449027195572853, + -0.041242361068725586, + -0.005129069089889526, + 0.03491813316941261, + 0.006886215414851904, + -0.04939492046833038, + 0.0010087669361382723, + -0.011674345470964909, + 0.0005118765984661877, + -0.01801356114447117, + -0.01729421690106392, + 0.029298262670636177, + -0.010565358214080334, + -0.012311264872550964, + -0.022374579682946205, + -0.02366340346634388, + 0.0007596192299388349, + 0.04055299237370491, + -0.014027198776602745, + 0.022509457543492317, + 0.025566667318344116, + -0.03605709224939346, + 0.031381361186504364, + 0.022074854001402855, + 0.020950879901647568, + -0.012296278029680252, + 0.00756809301674366, + 0.012633470818400383, + 0.013749951496720314, + 0.00429358147084713, + 0.04552844911813736, + 0.022659320384263992, + -0.004919260740280151, + -0.05227229371666908, + 0.06288260966539383, + -0.04193173348903656, + 0.00708853080868721, + 0.01844816468656063, + -0.003531152382493019, + -0.025371845811605453, + -0.016365064308047295, + 0.019931809976696968, + 0.0055411928333342075, + 0.004507136531174183, + 0.017024463042616844, + -0.018418191000819206, + -0.00015197068569250405, + 0.003074069507420063, + -0.003986361902207136, + -0.037226028740406036, + 0.028264205902814865, + 0.01315799169242382, + 0.0020531262271106243, + 0.002335993107408285, + -0.03827507048845291, + 0.06276272237300873, + 0.022854143753647804, + -0.04043310135602951, + -0.007579333148896694, + -0.009299013763666153, + -0.07181446254253387, + -0.041961703449487686, + -0.01426697988063097, + -0.0011164810275658965, + -0.04687722027301788, + -0.02552170865237713, + 0.03386909142136574, + 0.02517702244222164, + -0.021670224145054817, + 0.030317332595586777, + -0.03407889977097511, + 0.03506799787282944, + 0.01567569375038147, + -0.018283315002918243, + -0.012393689714372158, + -0.007302085869014263, + -0.028399081900715828, + 0.022089840844273567, + 0.015405939891934395, + 0.0022854143753647804, + 0.02613614685833454, + -0.023213814944028854, + 0.020336439833045006, + 0.08266455680131912, + 0.005762241315096617, + 0.05407065525650978, + -0.0610542818903923, + -0.03087182529270649, + 0.015480872243642807, + -0.012828292325139046, + -0.01306807342916727, + 0.001031246385537088, + -0.042561158537864685, + 0.04088268801569939, + -0.01844816468656063, + 0.02030646800994873, + -0.07379265874624252, + -0.022074854001402855, + 0.006155632436275482, + 0.029223330318927765, + 0.046277765184640884, + -0.029568016529083252, + 0.033899061381816864, + 0.01921246573328972, + 0.00444719148799777, + 0.03671649098396301, + 0.03165111318230629, + -0.021235620602965355, + -0.006215577479451895, + 0.004102506209164858, + 0.05694802850484848, + 0.023753322660923004, + 0.040762800723314285, + 0.005882131867110729, + -0.005260199308395386, + 0.019736988469958305, + 0.023693377152085304, + -0.018478136509656906, + 0.017084408551454544, + -0.012933196499943733, + 0.03410887345671654, + -0.027529876679182053, + 0.04582817479968071, + 0.027949493378400803, + 0.019422274082899094, + -0.03350941836833954, + -0.002232962055131793, + -0.01342025212943554, + -0.025311900302767754, + -0.01825334131717682, + 0.01868794485926628, + -0.015645721927285194, + 0.020471317693591118, + 0.015465885400772095, + -0.009778575971722603, + -0.024247871711850166, + -0.004248622804880142, + 0.004327300935983658, + -0.02324378676712513, + -0.006983626633882523, + -0.027365026995539665, + -0.004967966116964817, + 0.007084784097969532, + 0.03057209961116314, + -0.014499267563223839, + 0.02017159014940262, + -0.0017964855069294572, + -0.06552020460367203, + -0.05712786316871643, + 0.03189089521765709, + -0.019542165100574493, + 0.015450899489223957, + -0.028129328042268753, + 0.002452137181535363, + 0.03147127851843834, + -0.031201524659991264, + 0.027245135977864265, + -0.046337712556123734, + 0.01795361563563347, + 0.034558460116386414, + -0.025251954793930054, + 0.00569105613976717, + 0.0015716906636953354, + 0.03165111318230629, + 0.014334417879581451, + -0.03650668263435364, + -0.0001669570046942681, + -0.007912778295576572, + -0.004791876766830683, + -0.038904495537281036, + -0.04474915936589241, + 0.024607542902231216, + -0.01252107322216034, + 0.04999437555670738, + -0.06030496582388878, + -0.01641002483665943, + 0.04732680693268776, + -0.014064664021134377, + -0.0033400768879801035, + -0.008459779433906078, + -0.015068748034536839, + 0.032939936965703964, + -0.014027198776602745, + 0.015600762329995632, + -0.010490425862371922, + -0.009628713130950928, + 0.004450938198715448, + 0.022434525191783905, + 0.013540143147110939, + -0.013113033026456833, + 0.022059867158532143, + 0.004050053656101227, + 0.004095012787729502, + 0.024667488411068916, + 0.0012916337000206113, + 0.007556853350251913, + 0.02595631219446659, + 0.0037053683772683144, + -0.00020278368901927024, + -0.022914087399840355, + -0.010497919283807278, + 0.03410887345671654, + 0.024157952517271042, + -0.012700908817350864, + 0.014918885193765163, + 0.01597542129456997, + 0.014499267563223839, + -0.008886889554560184, + 0.0067363521084189415, + 0.044419463723897934, + 0.03216065093874931, + 0.005350117571651936, + 0.022329621016979218, + 0.018058519810438156, + -0.0037222281098365784, + 0.009366451762616634, + 0.00937394518405199, + 0.01420703437179327, + -0.016964517533779144, + 0.004780637100338936, + 0.011172303929924965, + -0.0010499792406335473, + -0.005953317042440176, + -0.003827132284641266, + 0.011524482630193233, + 0.007133489940315485, + 0.008459779433906078, + 0.01868794485926628, + 0.010228165425360203, + -0.008085121400654316, + 0.0005418492364697158, + 0.02763478085398674, + -0.013645047321915627, + 0.004076279699802399, + -0.03099171631038189, + -0.0053613572381436825, + 0.007950244471430779, + 0.012363716959953308, + -0.010767673142254353, + 0.008122587576508522, + 0.02547674998641014, + 0.0020381398499011993, + -0.008272450417280197, + 0.016649805009365082, + -0.04948483780026436, + 0.013015621341764927, + -0.024098007008433342, + 0.041721925139427185, + 0.03512794151902199, + -0.045558422803878784, + 0.03045220859348774, + -0.018178410828113556, + 0.057277727872133255, + 0.041661977767944336, + -0.04822598770260811, + 0.0048593152314424515, + -0.02516203746199608, + -0.07025588303804398, + -0.015091227367520332, + -0.01850810833275318, + -0.0029073467012494802, + -0.0024970960803329945, + -0.014446815475821495, + -0.002776216482743621, + -0.028728781268000603, + -0.02738001197576523, + -0.013240416534245014, + 0.00597579637542367, + -0.03851485252380371, + 0.004694465547800064, + 0.029223330318927765, + -0.030901798978447914, + 0.03258026763796806, + 0.011074893176555634, + -0.023348690941929817, + -0.01378741767257452, + -0.041182417422533035, + -0.01423700712621212, + -0.05940578505396843, + 0.01342025212943554, + -0.02745494432747364, + -0.04025326296687126, + -0.04133227840065956, + -0.08380351960659027, + 0.005957063287496567, + -0.010767673142254353, + -0.03087182529270649, + -0.034138843417167664, + -0.01669476367533207, + -0.013847362250089645, + -0.006567756179720163, + -0.02246449887752533, + -0.02343861013650894, + -0.018103478476405144, + -0.02606121636927128, + -0.0015407813480123878, + 0.0010649656178429723, + -0.01327788271009922, + 0.0032089464366436005, + 0.015061254613101482, + 0.04301074892282486, + -0.022494470700621605, + 0.004593308083713055, + -0.022914087399840355, + 0.03458843380212784, + -0.012610990554094315, + 0.02757483534514904, + -0.03353939205408096, + 0.005417556036263704, + -0.007609305437654257, + 0.007717956323176622, + -0.01825334131717682, + -0.004027574323117733, + 0.008219998329877853, + -0.015263570472598076, + 0.006837510038167238, + -0.0020699859596788883, + 0.008160052821040154, + -0.01796860061585903, + -0.01171930506825447, + 0.010677754878997803, + -0.026405900716781616, + 0.05502977967262268, + -0.017324188724160194, + -0.022389566525816917, + 0.0051365625113248825, + -0.007702969945967197, + -0.03105166181921959, + 0.007077291142195463, + -0.01240118220448494, + 0.028099356219172478, + 0.014739048667252064, + -0.01795361563563347, + -0.015660706907510757, + 0.010475439950823784, + -0.01525607705116272, + -0.02684050425887108, + -0.0004978268989361823, + -0.015106214210391045, + -0.024727433919906616, + -0.027949493378400803, + 0.007264620158821344, + 0.002480236580595374, + -0.018298299983143806, + -0.0044097257778048515, + -0.00705855805426836, + -0.03815517947077751, + -0.007099770475178957, + -0.010078302584588528, + -0.02120564691722393, + 0.04073282703757286, + 0.00022081410861574113, + -0.017264245077967644, + 0.008961820974946022, + 0.03824509680271149, + -0.016499942168593407, + 0.04046307131648064, + -0.006432879250496626, + -0.0018864034209400415, + 0.022989019751548767, + 0.03452849015593529, + -0.014521746896207333, + 0.01633509248495102, + 0.01477651484310627, + -0.028249219059944153, + -0.00024118613509926945, + 0.046637438237667084, + 0.031920868903398514, + 0.021310551092028618, + 0.021055784076452255, + 0.044359516352415085, + 0.01862799935042858, + -0.030961744487285614, + 0.007185942027717829, + 0.017444079741835594, + 0.00997339840978384, + 0.011254728771746159, + 0.05880633369088173, + 0.01315799169242382, + -0.013869842514395714, + -0.03452849015593529, + -0.039563894271850586, + -0.01844816468656063, + 0.002173016779124737, + 0.0020250268280506134, + -0.01783372461795807, + -0.018642986193299294, + 0.008684574626386166, + -0.018118465319275856, + 0.02559663914144039, + -0.01417706161737442, + 0.010969989001750946, + -0.05167284235358238, + 0.0074969083070755005, + -0.04771645367145538, + -0.02397811785340309, + 0.029822783544659615, + 0.05736764520406723, + 0.025926338508725166, + 0.0035274059046059847, + 0.005653590429574251, + -0.01867295801639557, + 0.015023789368569851, + -0.021340524777770042, + 0.03641676530241966, + -0.024907268583774567, + -0.017384134232997894, + 0.0015623242361471057, + 0.010580344125628471, + -0.014694090001285076, + -0.013622567988932133, + -0.04283091053366661, + 0.02619609236717224, + 0.015233597718179226, + 0.001951968646608293, + 0.042261432856321335, + 0.011644372716546059, + -0.02739499881863594, + -0.026046229526400566, + 0.029388180002570152, + 0.02571653015911579, + 0.0011642499594017863, + -0.015450899489223957, + -0.010955002158880234, + -0.02426285669207573, + -0.0019444754580035806, + -0.0004196170484647155, + -0.014094636775553226, + -0.0013356560375541449, + -0.0011061780387535691, + -0.012123935855925083, + 0.01267842948436737, + -0.027065299451351166, + -0.027919519692659378, + 0.020621180534362793, + -0.008294929750263691, + 0.010160727426409721, + 0.011576934717595577, + 0.03452849015593529, + 0.03905435651540756, + -0.0015192384598776698, + -0.01300063543021679, + -0.002008167328312993, + -0.01856805384159088, + -8.101981075014919e-5, + -0.011659359559416771, + 0.007609305437654257, + -0.03767561540007591, + -0.017519012093544006, + -0.01258101873099804, + -0.007905285805463791, + -0.01759394258260727, + -0.02180510014295578, + -0.0006865609320811927, + -0.00223858212120831, + -0.013517663814127445, + -0.05305158346891403, + 0.014858939684927464, + -0.017324188724160194, + 0.018762877210974693, + -0.03830504044890404, + 0.004686972592025995, + 0.002403431572020054, + -0.02961297519505024, + 0.033299610018730164, + 0.009613726288080215, + 0.012296278029680252, + -0.011284701526165009, + -0.0008860663510859013, + 0.007167208939790726, + -0.03752575442194939, + 0.0034131351858377457, + -0.011599414050579071, + -0.020920908078551292, + 0.03434865176677704, + -0.020860962569713593, + -0.0067550851963460445, + 0.005470008123666048, + -0.01838821917772293, + -0.007609305437654257, + 0.0065415301360189915, + 0.008369861170649529, + 0.022419540211558342, + -0.00046036113053560257, + -0.01718931272625923, + 0.011314674280583858, + -0.015765612944960594, + -0.00918661616742611, + -0.011569441296160221, + 0.010542877949774265, + 0.021550333127379417, + 0.01153197605162859, + -0.032400429248809814, + 0.02925330214202404, + -0.009179122745990753, + 0.017024463042616844, + -0.03159116953611374, + 0.042800940573215485, + -0.006601475179195404, + 0.005020418204367161, + -0.007800381164997816, + -0.029448125511407852, + -0.0015492112142965198, + 0.01429695263504982, + -0.014641637913882732, + -0.004203663673251867, + -0.030781907960772514, + 0.021790113300085068, + 0.013884828425943851, + 0.008212504908442497, + -0.01820838265120983, + 0.00892435573041439, + 0.00963620562106371, + -0.0009085458586923778, + -0.03051215410232544, + 0.018642986193299294, + 0.02210482582449913, + 0.013180471025407314, + 0.029448125511407852, + -0.029118426144123077, + -0.010108275339007378, + 0.02228466235101223, + -0.011846688576042652, + 0.01843317784368992, + -0.03959386423230171, + -0.016365064308047295, + 0.004881794564425945, + 0.003488066839054227, + 0.010632796213030815, + -0.00409875949844718, + 0.0014030945021659136, + 0.02168520912528038, + -0.010677754878997803, + 0.001423700712621212, + 0.003188340226188302, + -0.010640289634466171, + 0.02481735125184059, + -0.014993816614151001, + 0.005904611200094223, + -0.00943389069288969, + -0.019512193277478218, + 0.04055299237370491, + 0.018583040684461594, + -0.007747929077595472, + 0.026765573769807816, + 0.01621520146727562, + 0.03833501413464546, + 0.04912516847252846, + -0.003444981062784791, + -0.006635194644331932, + -0.022914087399840355, + 0.005762241315096617, + -0.01693454571068287, + 0.02684050425887108, + 0.007051065098494291, + 0.03953392058610916, + -0.0002840376691892743, + -0.01765388809144497, + 0.04870555177330971, + 0.001059345668181777, + 0.02006668597459793, + -0.014356897212564945, + -0.019377315416932106, + 0.019512193277478218, + -0.002901726868003607, + -0.023828253149986267, + 0.03189089521765709, + -0.025791462510824203, + 0.039144277572631836, + -0.03911430388689041, + 0.003598590847104788, + 0.01898767240345478, + -0.007358284667134285, + -0.023558499291539192, + -0.008527218364179134, + 0.003203326603397727, + -0.022719265893101692, + -0.03779550641775131, + 0.017998574301600456, + -0.009838521480560303, + 0.006976133678108454, + 0.01537596806883812, + 0.06198343262076378, + 0.014933871105313301, + -0.004979205783456564, + -0.005301411729305983, + -0.031261470168828964, + -0.014671610668301582, + 0.013270389288663864, + 0.05401070788502693, + -0.018478136509656906, + 0.0014873925829306245, + 0.0015464011812582612, + 0.031081633642315865, + 0.02144542895257473, + -0.001287887105718255, + -0.03219062089920044, + -0.006668913643807173, + -0.006901201792061329, + 0.030047578737139702, + 0.017878683283925056, + -0.015810571610927582, + 0.019377315416932106, + -0.01641002483665943, + 0.0032688917126506567, + 0.0017590196803212166, + 0.06150387227535248, + -0.029747851192951202, + -0.0029279529117047787, + 0.0049080210737884045, + 0.018298299983143806, + -0.015031281858682632, + -0.01730920374393463, + 0.010025850497186184, + 0.014102130196988583, + 0.02853395976126194, + -0.024472665041685104, + -0.016439996659755707, + 0.012183880433440208, + -0.00895432848483324, + -0.0014461801620200276, + 0.009231574833393097, + -0.00020395449246279895, + -0.008264956995844841, + 0.015525830909609795, + -0.02684050425887108, + -0.01753399893641472, + -0.031561195850372314, + -0.011854181997478008, + 0.03605709224939346, + -0.05413059890270233, + 0.00246337684802711, + -0.003918923437595367, + 0.010730206966400146, + -0.017923641949892044, + -0.01480648759752512, + -0.012108949013054371, + 0.013690005987882614, + -0.018837807700037956, + 0.03593720123171806, + 0.020501289516687393, + -0.02487729676067829, + 0.0008991793729364872, + -0.005016671493649483, + -0.000657993252389133, + -0.01922745257616043, + -0.007114756852388382, + 0.015480872243642807, + -0.014791500754654408, + -0.00819751899689436, + 0.026031242683529854, + -0.0025832674000412226, + -0.01844816468656063, + -0.03422876074910164, + 0.029358206316828728, + -0.028009438887238503, + -0.008961820974946022, + 0.02871379442512989, + 0.014184555038809776, + 0.030302345752716064, + -0.012161401100456715, + 0.028608890250325203, + -0.005518713500350714, + 0.032220594584941864, + 0.017519012093544006, + 0.03668652102351189, + -0.005679816473275423, + 0.03515791520476341, + 0.017084408551454544, + -0.03123149834573269, + -0.05122325196862221, + 0.005308905150741339, + 0.0022442019544541836, + 0.03683638200163841, + -0.002823048736900091, + -0.0009853508090600371, + 0.01879284903407097, + -0.009980890899896622, + 0.03566744923591614, + -0.0023996850941330194, + -0.011389605700969696, + 0.04379003494977951, + -0.0022704279981553555, + 0.0030216174200177193, + 0.05928589403629303, + -0.027889547869563103, + 0.012296278029680252, + 0.010880070738494396, + 0.009868494234979153, + -0.001786182401701808, + 3.3250904380111024e-5, + -0.000800363312009722, + 0.025192009285092354, + -0.0028399082366377115, + -0.0018180282786488533, + -0.008234984241425991, + -0.008781985379755497, + -0.041422195732593536, + 0.028444040566682816, + -0.009905959479510784, + -0.02607620321214199, + 0.007287099491804838, + 0.0060732075944542885, + 0.011029933579266071, + -0.005140308756381273, + 0.03767561540007591, + 0.013989732600748539, + -0.009726123884320259, + 0.023993102833628654, + -0.03779550641775131, + -0.021310551092028618, + -0.006395413540303707, + 0.002289160853251815, + 0.041302308440208435, + 0.01928739808499813, + -0.00115207361523062, + 0.04396987333893776, + -0.019362330436706543, + 0.03255029395222664, + 0.03704619035124779, + 0.014424336142838001, + -0.012468621134757996, + 0.02403806336224079, + -0.013435238972306252, + -0.05718781054019928, + -0.020531263202428818, + -0.045858148485422134, + -0.01204151101410389, + 0.030257387086749077, + -0.004244876094162464, + 0.01760892942547798, + -0.007553107105195522, + 0.02847401425242424, + 0.012775840237736702, + -0.012123935855925083, + -0.008234984241425991, + -0.013585101813077927, + -0.0017740060575306416, + 0.006103180348873138, + 0.0016213328344747424, + 0.017863696441054344, + -0.011629386804997921, + -0.0024221644271165133, + -0.01681465469300747, + -0.011052412912249565, + 0.015690680593252182, + 0.018717918545007706, + 0.002648832742124796, + 0.020591208711266518, + 0.008369861170649529, + 0.0022292155772447586, + -0.009231574833393097, + 0.013630061410367489, + -0.010198192670941353, + -0.042081594467163086, + 0.023693377152085304, + -0.011899140663444996, + 0.006687646731734276, + -0.0019051363924518228, + 0.009523808024823666, + -0.020516276359558105, + -0.008871903643012047, + 0.003291371278464794, + -0.00982353463768959, + 0.01718931272625923, + 0.013315347954630852, + 0.0026806786190718412, + -0.004289835225790739, + 0.016425009816884995, + 0.01327788271009922, + -0.014649131335318089, + -0.021295566111803055, + 0.029283275827765465, + -0.01579558476805687, + 0.011824209243059158, + 0.010707727633416653, + -0.011606907472014427, + 0.006931174546480179, + -0.021640250459313393, + 0.008100107312202454, + 0.020561235025525093, + 0.023138882592320442, + -0.012116442434489727, + -0.012131428346037865, + -0.04618784785270691, + 0.03554755821824074, + -0.014491774141788483, + -0.027739685028791428, + 0.007800381164997816, + 0.00578097440302372, + 0.02397811785340309, + -0.01735416240990162, + 0.014334417879581451, + 0.03608706593513489, + 0.028758754953742027, + 0.0009474166436120868, + 0.017698848620057106, + -0.021190661936998367, + 0.03509796783328056, + 0.011389605700969696, + -0.04987448453903198, + 0.012019031681120396, + -0.005870892200618982, + 0.014649131335318089, + -0.006912441458553076, + 0.016739722341299057, + 0.021655237302184105, + 0.018523095175623894, + -0.03440859913825989, + -0.00045825366396456957, + -0.006530290469527245, + 0.0010415494907647371, + -0.013645047321915627, + -0.021130716428160667, + -0.006919934879988432, + 0.007672997657209635, + -0.0077404361218214035, + 0.00765801128000021, + 0.02847401425242424, + -0.010572850704193115, + 0.015570789575576782, + -0.005174028221517801, + -0.011157318018376827, + -0.010348056443035603, + -0.030901798978447914, + -0.023888198658823967, + -0.019901838153600693, + -0.011217262595891953, + -0.0021037051919847727, + 0.01897268556058407, + -0.01765388809144497, + 0.002349106129258871, + -0.001951968646608293, + -0.00892435573041439, + -0.020830988883972168, + 0.016559887677431107, + 0.00861713569611311, + 0.03683638200163841, + -0.017099395394325256, + -0.02528192661702633, + -0.013315347954630852, + -0.013352814130485058, + 0.02480236440896988, + -0.004750664345920086, + -0.022209731861948967, + -0.010018357075750828, + -0.005893371533602476, + -0.032760102301836014, + -0.010123261250555515, + 0.0007146602729335427, + 0.014911391772329807, + -0.02673560008406639, + 0.026705628260970116, + 0.01629013381898403, + 0.02727510780096054, + -0.028548946604132652, + 0.004776890389621258, + 0.031021689996123314, + -0.01778876595199108, + -0.032520320266485214, + 0.03341950103640556, + 0.014251993037760258, + -0.018058519810438156, + -0.02895357646048069, + -0.009471355937421322, + -0.009231574833393097, + 0.03548761457204819, + 0.03962383791804314, + 0.01468659657984972, + 0.015001309104263783, + -0.011996551416814327, + -0.002903600223362446, + -0.016170242801308632, + -0.00198381463997066, + 0.02907346747815609, + 0.00988348014652729, + -0.007489414885640144, + -0.017683861777186394, + -0.009643699042499065, + 0.020276496186852455, + -0.0015145553043112159, + -0.00464201346039772, + -0.019632084295153618, + 0.012273798696696758, + -0.01712936721742153, + -0.014581692405045033, + -0.01939230225980282, + 0.0007998949731700122, + 0.008190025575459003, + -0.029987633228302002, + 0.012566031888127327, + -0.004319807514548302, + -0.006241803523153067, + 0.0006238056812435389, + -0.013675020076334476, + -0.0004144654958508909, + -0.022599374875426292, + 0.021190661936998367, + -0.012685922905802727, + -0.0008008316508494318, + 0.012828292325139046, + 0.013360307551920414, + -0.013734965585172176, + -0.00979356188327074, + 0.0017112507484853268, + 0.004904274363070726, + 0.004806863144040108, + 0.0038814577274024487, + 0.024427706375718117, + 0.002379078883677721, + -0.04073282703757286, + 0.027529876679182053, + -0.06162375956773758, + 0.030197441577911377, + -0.03494810685515404, + 0.01880783587694168, + -0.009613726288080215, + 0.01144205778837204, + -0.005335131194442511, + 0.0019023263594135642, + -0.01051290612667799, + -0.03368925303220749, + -0.026166120544075966, + -0.019437260925769806, + -0.005623617675155401, + -0.007815367542207241, + 0.06456108391284943, + 0.005357610527426004, + -0.012221346609294415, + -0.02577647566795349, + -0.011869167909026146, + -0.004582068417221308, + -0.00985350739210844, + 0.02895357646048069, + -0.011427071876823902, + 0.014619158580899239, + 0.013008128851652145, + -0.024907268583774567, + -0.0022142292000353336, + 0.006627701222896576, + 0.03021242842078209, + -0.00937394518405199, + 0.0031546209938824177, + -0.006593982223421335, + -0.030542125925421715, + -0.00460829446092248, + -0.031321413815021515, + -0.02564159967005253, + 0.0011960959527641535, + 0.03536772355437279, + 0.02805439755320549, + -0.0010068935807794333, + 0.01375744491815567, + -0.00756809301674366, + -0.02312389761209488, + 0.010542877949774265, + -0.029627960175275803, + -0.01657487265765667, + 0.010797645896673203, + -0.01933235675096512, + 0.004544602707028389, + -0.002008167328312993, + 0.0009446066687814891, + -0.052781831473112106, + -0.021070770919322968, + 0.028818700462579727, + -0.055359479039907455, + -0.020741071552038193, + 0.0028249218594282866, + 0.0007155969506129622, + 0.00858716294169426, + 0.006440372206270695, + -0.007017345633357763, + -0.014087144285440445, + 0.0027012848295271397, + 0.019002657383680344, + -0.011097372509539127, + 0.008182532154023647, + 0.01874789036810398, + 0.005769734270870686, + 0.004559588618576527, + -0.018598027527332306, + -0.0014508634340018034, + -0.03299988433718681, + -0.01597542129456997, + -0.025012172758579254, + 0.040283236652612686, + 0.0015679440693929791, + -0.011127345263957977, + -0.0019538418855518103, + 0.022029895335435867, + 0.007283353246748447, + 0.0013365927152335644, + -0.0024970960803329945, + 0.0010218799579888582, + -0.023108910769224167, + 0.012063990347087383, + 0.01645498350262642, + 0.01174927782267332, + 0.004705705679953098, + -0.0032688917126506567, + 0.012483607046306133, + -0.021910004317760468, + 0.012813306413590908, + -0.002079352270811796, + 0.01615525595843792, + -0.00040580154745839536, + -0.02847401425242424, + 0.01429695263504982, + -0.011254728771746159, + -0.005953317042440176, + 0.002547675045207143, + -0.029508071020245552, + -0.014251993037760258, + 0.01970701478421688, + -0.016140270978212357, + -0.00454834895208478, + 0.012955676764249802, + -0.0015632607974112034, + 0.013854855671525002, + -0.017504025250673294, + 0.01585553027689457, + -0.014244500547647476, + -0.013315347954630852, + 0.01150200329720974, + -0.0010818252339959145, + -0.0033812890760600567, + -0.021580304950475693, + -0.005383836571127176, + 0.010235658846795559, + -0.020935893058776855, + -0.01150200329720974, + -0.005458768457174301, + 0.017339175567030907, + 0.0012738375226035714, + 0.00027794946799986064, + -0.02318384125828743, + -0.017938628792762756, + 0.0021992428228259087, + 7.469745469279587e-5, + -0.016080325469374657, + 0.00021531131642404944, + -0.012850772589445114, + 0.07085533440113068, + 0.01525607705116272, + -0.004537109285593033, + -0.001380615052767098, + -0.012805812992155552, + 0.01639503799378872, + 0.006702633108943701, + 0.019617097452282906, + 0.0028267952147871256, + -0.02583642117679119, + 0.013285375200212002, + -0.013532649725675583, + -0.013719978742301464, + 0.04301074892282486, + -0.014574198983609676, + 0.005724775604903698, + -0.018957698717713356, + 0.003214566269889474, + -0.025566667318344116, + 0.021400470286607742, + -0.014027198776602745, + -0.0077254497446119785, + 0.003885204205289483, + 0.012543552555143833, + -0.004027574323117733, + -0.006226817145943642, + 0.008729533292353153, + -0.029418151825666428, + -0.0030815626960247755, + 0.009538794867694378, + 0.027589820325374603, + -0.003177100559696555, + 0.01420703437179327, + 0.01717432588338852, + -0.00435352697968483, + 0.04645760357379913, + 0.013749951496720314, + 0.024787379428744316, + -0.01270840223878622, + -0.009591246955096722, + 0.007792888209223747, + 0.016724737361073494, + 0.02258438989520073, + -0.012116442434489727, + 0.011854181997478008, + 0.013974746689200401, + -0.007493161596357822, + -0.014521746896207333, + -0.013023114763200283, + -0.029328234493732452, + -9.126436634687707e-5, + 0.00660896860063076, + -0.02697538211941719, + 0.014604171738028526, + -0.01258101873099804, + 0.015885502099990845, + 0.0032651452347636223, + -0.001837697927840054, + -0.027919519692659378, + 0.0013300362043082714, + 0.00444719148799777, + -0.004499643575400114, + -0.010258138179779053, + -0.02823423221707344, + -0.026151133701205254, + 0.006226817145943642, + 0.0014424335677176714, + -0.004765650723129511, + -0.008234984241425991, + 0.01964706927537918, + 0.004331047181040049, + 0.0036285636015236378, + -0.008572177030146122, + -0.004065040033310652, + -0.014162075705826283, + 0.008796971291303635, + 0.012790827080607414, + -0.012386196292936802, + 0.002388445194810629, + -0.04169195145368576, + -0.008279943838715553, + -0.014574198983609676, + -0.005027911625802517, + 0.02168520912528038, + -0.00813757348805666, + -0.004005094990134239, + 0.0039226701483130455, + -0.014499267563223839, + -0.0022292155772447586, + 0.022239703685045242, + -0.005653590429574251, + 0.012453634291887283, + 0.01621520146727562, + -0.0006907758070155978, + -0.03503802418708801, + -0.025371845811605453, + 0.01573563925921917, + 0.011674345470964909, + -0.026990368962287903, + 0.008399833925068378, + -0.0010040836641564965, + 0.014416842721402645, + -0.0009666178375482559, + -0.00819751899689436, + -0.01138211227953434, + -0.004769397433847189, + 0.015480872243642807, + -0.0067550851963460445, + -0.022929074242711067, + -0.03821512311697006, + 0.009786069393157959, + -0.007564346771687269, + -0.04157206043601036, + -0.02528192661702633, + 0.011292194947600365, + -0.019422274082899094, + -0.028743768110871315, + 0.0037372142542153597, + 0.019182493910193443, + 0.0033382035326212645, + -0.01975197345018387, + 0.010100781917572021, + 0.018642986193299294, + 0.01759394258260727, + -0.0060881939716637135, + 0.015510844998061657, + -0.008939341641962528, + -0.014858939684927464, + -0.007155969273298979, + -3.5563248275138903e-6, + -0.018103478476405144, + 0.010348056443035603, + -0.04504888877272606, + -0.007264620158821344, + 0.01534599531441927, + -0.0012616610620170832, + 0.02481735125184059, + 0.007096024230122566, + -0.008190025575459003, + -0.01102244108915329, + -0.006159378681331873, + 0.004582068417221308, + 0.01766887493431568, + -0.005889624822884798, + -0.007163462694734335, + 0.022149786353111267, + -0.01342025212943554, + 0.0005943013820797205, + -0.008489752188324928, + -0.005765988025814295, + 0.013232923112809658, + -0.009426397271454334, + 0.010760179720818996, + -0.005226480308920145, + 0.02132553793489933, + 0.006309241987764835, + 0.013854855671525002, + -0.01249110046774149, + 0.006571502890437841, + -0.016919558867812157, + 0.04909519478678703, + -0.021954962983727455, + -0.025791462510824203, + -0.02727510780096054, + 0.001324416371062398, + 0.005267692729830742, + 0.0005100033013150096, + -0.07876811176538467, + -0.009351465851068497, + 0.017743807286024094, + 0.008939341641962528, + 0.0041512115858495235, + -0.013135512359440327, + -0.007227154448628426, + -0.002261061454191804, + 0.016799667850136757, + 0.017863696441054344, + 0.0027518635615706444, + 0.029762838035821915, + -0.007654264569282532, + -0.007890298962593079, + -0.011487016454339027, + 0.0006982689956203103, + -0.011359632946550846, + 0.009786069393157959, + 0.025087105110287666, + -0.016170242801308632, + -0.010707727633416653, + -0.001703757676295936, + 0.011824209243059158, + 0.015241091139614582, + -0.010100781917572021, + -0.015825556591153145, + 0.01537596806883812, + 0.02054625004529953, + -0.0056198714300990105, + 0.007980217225849628, + -0.026690641418099403, + 0.01222884003072977, + 0.0002744370431173593, + 0.003405641997233033, + 0.02637592889368534, + 0.022569403052330017, + -0.03611703962087631, + 0.007421976421028376, + -0.020890934392809868, + -0.015331008471548557, + -0.03374920040369034, + 0.017563970759510994, + -0.007822860963642597, + -0.010400508530437946, + 0.030841853469610214, + -0.02779962867498398, + -0.007624291814863682, + -0.0012279418297111988, + -0.016065338626503944, + 0.003300737589597702, + -0.0026731854304671288, + -0.01933235675096512, + -0.005076617002487183, + -0.01928739808499813, + 0.00924656167626381, + -0.03273012861609459, + 0.021010825410485268, + 0.01360758114606142, + 0.003658536123111844, + -0.01324790995568037, + 0.0019426021026447415, + 0.012850772589445114, + -0.027829602360725403, + -0.0064965710043907166, + 0.02589636668562889, + 0.013427745550870895, + 0.005912104621529579, + -0.002616986632347107, + 0.0025102091021835804, + -0.016439996659755707, + -0.009553780779242516, + -0.008437300100922585, + -0.025326887145638466, + -0.005365103483200073, + -0.002772469772025943, + -0.031141579151153564, + 0.012543552555143833, + -0.03533774986863136, + -0.00012152971612522379, + 0.022719265893101692, + -0.009194109588861465, + -0.0007956800982356071, + 0.006017008796334267, + -0.012206360697746277, + 0.010078302584588528, + -0.0019294890807941556, + -0.008309916593134403, + -0.006946160923689604, + -0.002174890134483576, + 0.02696039527654648, + 0.014731556177139282, + 0.01645498350262642, + 0.0016044732183218002, + -0.007957737892866135, + -0.01471656933426857, + 0.01964706927537918, + 0.012685922905802727, + -0.047596562653779984, + -0.004076279699802399, + 0.0010415494907647371, + 0.028039410710334778, + 0.01801356114447117, + -0.017698848620057106, + -0.012034017592668533, + 0.03551758453249931, + -0.010587837547063828, + 0.022494470700621605, + 0.021235620602965355, + -4.949584399582818e-5, + 0.001714997342787683, + -0.002594507299363613, + -0.028788726776838303, + -0.007643024902790785, + 0.0026994114741683006, + 0.04564834013581276, + -0.019092576578259468, + 0.020036714151501656, + 0.003840245306491852, + 0.015945447608828545, + -0.01718931272625923, + 0.003997601568698883, + 0.01261848397552967, + -0.006661420688033104, + -0.017024463042616844, + 0.009651192463934422, + 0.005765988025814295, + -0.006215577479451895, + 0.02781461551785469, + 0.03416881710290909, + 0.02408302202820778, + 0.014769021421670914, + -0.008062642067670822, + -0.022614361718297005, + -0.006665167398750782, + -0.0022423285990953445, + 0.015660706907510757, + 0.0009516315185464919, + -0.011629386804997921, + 0.02120564691722393, + 0.03009253740310669, + -0.012663443572819233, + -0.01784871146082878, + -0.022119812667369843, + 0.0046307737939059734, + 0.0005591771914623678, + -0.0009731743484735489, + 0.01759394258260727, + -0.017219284549355507, + 0.01687460020184517, + 0.012004044838249683, + 0.02606121636927128, + 0.010385521687567234, + 0.000864991859998554, + 0.004930500406771898, + 0.013764938339591026, + -0.015720652416348457, + -0.003918923437595367, + -0.005559925921261311, + 0.005511220544576645, + 0.007358284667134285, + -0.009171630255877972, + -0.020771043375134468, + -0.031860921531915665, + 0.02829417772591114, + -0.005233973264694214, + 0.02570154517889023, + 0.0010378028964623809, + 0.00689370883628726, + 0.026330970227718353, + -0.029627960175275803, + 0.01201153825968504, + -0.04283091053366661, + -0.01711438037455082, + -0.016140270978212357, + 0.019437260925769806, + -0.03015248291194439, + 0.011659359559416771, + 0.0026638188865035772, + 0.02462252974510193, + -0.02385822683572769, + 0.01468659657984972, + 0.00044279900612309575, + -0.02721516229212284, + -0.012753360904753208, + 0.016904572024941444, + -0.0038477384950965643, + -0.0051065897569060326, + -0.004552095662802458, + -0.005762241315096617, + -0.011764263734221458, + 0.015780597925186157, + 0.00734329828992486, + -0.009134164080023766, + -0.030781907960772514, + -0.0014274473069235682, + 0.006620208267122507, + 0.006335468031466007, + -0.006234310567378998, + 0.026091188192367554, + -0.012348730117082596, + -0.012356223538517952, + 0.006695139687508345, + 0.014956350438296795, + 0.0014293205458670855, + -0.019452247768640518, + 0.006178111769258976, + 0.009351465851068497, + 0.028189273551106453, + -0.019976768642663956, + 0.017084408551454544, + -0.004432205110788345, + -0.004533362574875355, + 0.0006720429519191384, + -0.0032108197920024395, + -0.002791202627122402, + -0.00464201346039772, + -0.03836498782038689, + 0.007279606536030769, + -0.007155969273298979, + 0.004428458400070667, + 0.0021299312356859446, + 0.005372596904635429, + 0.019497206434607506, + 0.0074819219298660755, + -0.028204260393977165, + 0.019317369908094406, + 0.02498220093548298, + 0.03081187978386879, + 0.016664791852235794, + -0.002365965861827135, + -0.008669587783515453, + -0.013892321847379208, + 0.023048965260386467, + 0.024907268583774567, + -0.009523808024823666, + 0.005777227692306042, + 0.006500317715108395, + -0.005582405254244804, + 0.015450899489223957, + 0.03620695695281029, + -0.028339136391878128, + -0.009733617305755615, + -0.0005980479763820767, + -0.005679816473275423, + -0.01916750706732273, + -0.02336367778480053, + -0.006586489267647266, + 0.0020999584812670946, + 0.0037353411316871643, + 0.007017345633357763, + -0.02667565457522869, + 5.198381040827371e-5, + 0.01195159275084734, + -0.020471317693591118, + -0.02096586674451828, + -0.016844626516103745, + -0.012116442434489727, + 0.021895017474889755, + -0.00505788391456008, + 0.02601625770330429, + -0.006305495277047157, + -0.010692741721868515, + 0.01033306960016489, + -0.009478849358856678, + 0.03638679161667824, + -0.02378329448401928, + 0.01934734359383583, + 0.014087144285440445, + 0.002791202627122402, + -0.020081672817468643, + 0.0051065897569060326, + 0.001289760461077094, + -0.02012663148343563, + 0.010160727426409721, + -0.02925330214202404, + -0.00120827229693532, + -0.002476489869877696, + 0.006144392304122448, + -0.045618366450071335, + -0.002847401425242424, + 0.009568767622113228, + 0.0041624512523412704, + -0.012753360904753208, + -0.022329621016979218, + 0.02613614685833454, + 0.0015735639026388526, + -0.0031377614941447973, + -0.012123935855925083, + -0.0035142928827553988, + -0.004904274363070726, + -0.008130080066621304, + -0.023453595116734505, + -0.0024465173482894897, + -0.004923006985336542, + 0.0005053200875408947, + -0.007444456219673157, + -0.014356897212564945, + 0.01036304235458374, + 0.009756096638739109, + 0.0014377504121512175, + 0.006425386294722557, + -0.006361694075167179, + -0.029822783544659615, + -0.01045296061784029, + 0.015615749172866344, + -0.00921658892184496, + 0.007436962798237801, + 0.005593644920736551, + 0.01294068992137909, + 0.001486455905251205, + -0.009643699042499065, + 0.0035498852375894785, + -0.011539468541741371, + -0.005503727123141289, + 0.0008312726276926696, + 0.008744519203901291, + 0.009531301446259022, + -0.0029541789554059505, + 0.06947659701108932, + 0.0007502528023906052, + 0.00912667065858841, + -0.0003065171476919204, + 0.0014499267563223839, + -0.007995203137397766, + -0.023378664627671242, + 0.016664791852235794, + 0.0005362294032238424, + 0.011726797558367252, + 0.008579670451581478, + -0.03587725758552551, + -0.0006781311240047216, + 0.0070135993883013725, + -0.01874789036810398, + -0.00801768247038126, + 0.012251319363713264, + 0.028384096920490265, + 0.00768798403441906, + 0.023738335818052292, + -0.004267355427145958, + -0.021850058808922768, + -0.007073544431477785, + 0.022854143753647804, + -0.01759394258260727, + 0.005035404581576586, + 0.010497919283807278, + 0.0028286685701459646, + 0.027350040152668953, + 0.005417556036263704, + -8.470784814562649e-5, + 0.004866808652877808, + 0.00352927902713418, + -0.001481772749684751, + -0.011397099122405052, + -0.0006626764661632478, + 0.004301074892282486, + 0.0006046044873073697, + 0.015570789575576782, + 0.0010171966860070825, + -0.003800906240940094, + 0.0044209654442965984, + 0.027979465201497078, + 0.013869842514395714, + -0.011479523964226246, + -0.00960623286664486, + 0.0006490951054729521, + -0.009411411359906197, + 0.003546138759702444, + 0.017024463042616844, + -0.016110297292470932, + -0.011546961963176727, + -0.0011923493584617972, + -0.0030853094067424536, + 0.02186504565179348, + 0.00406878674402833, + 0.02931324765086174, + -0.016365064308047295, + -0.0006116293370723724, + 0.009531301446259022, + -0.012513579800724983, + -0.007283353246748447, + -0.0020549995824694633, + -0.022989019751548767, + -0.004915514029562473, + -0.001981941284611821, + -0.004836835898458958, + -0.022389566525816917, + 0.0067663248628377914, + -0.01670975051820278, + -0.0077104633674025536, + 0.006402906496077776, + 0.027559848502278328, + -0.01681465469300747, + 0.0011661233147606254, + 0.03386909142136574, + 0.007680490612983704, + 0.01814843714237213, + 0.017803752794861794, + 0.009846013970673084, + 0.009089205414056778, + 0.0034374878741800785, + -0.01537596806883812, + -0.010415494441986084, + -0.011546961963176727, + 0.000940391793847084, + 0.010850097984075546, + -0.021835073828697205, + -0.006312988698482513, + -0.016844626516103745, + 0.0011633133981376886, + 0.003276384901255369, + -0.0013497057370841503, + -0.008901876397430897, + -0.0044059790670871735, + 0.0020737324375659227, + -0.006125659681856632, + -0.003971375524997711, + 0.017683861777186394, + -0.005552432965487242, + 0.01736914925277233, + 0.003214566269889474, + 0.0023172602523118258, + 0.014079650864005089, + 0.0077254497446119785, + 0.002849274780601263, + 0.016544900834560394, + 0.019197480753064156, + -0.03461840748786926, + 0.00023650290677323937, + -0.00876699946820736, + 0.0004495896864682436, + 0.020830988883972168, + 0.005672323517501354, + 0.0026375928428024054, + -0.0035049263387918472, + 0.01186167448759079, + -0.01760892942547798, + -0.00966617837548256, + -0.022299649193882942, + -0.003459967439994216, + -0.005859652534127235, + 0.0028998535126447678, + -0.004154958296567202, + -0.0024408972822129726, + -0.0018835935043171048, + -0.00705855805426836, + -0.016739722341299057, + -0.00155764096416533, + -0.0017683861078694463, + 0.007051065098494291, + 0.010048329830169678, + 0.02222471684217453, + -0.01837323233485222, + 0.0036772689782083035, + 0.005282679107040167, + -0.0009638079209253192, + 0.007193434983491898, + 0.029298262670636177, + -0.026870477944612503, + 0.004263609182089567, + 0.004241129383444786, + -0.0034506008960306644, + 0.023033978417515755, + 0.02372334897518158, + 0.017578957602381706, + -0.004698212258517742, + -0.02654077857732773, + 0.020890934392809868, + -0.025506721809506416, + 0.005263946019113064, + -0.010138248093426228, + -0.015293543227016926, + -0.018957698717713356, + 0.019377315416932106, + -0.003060956485569477, + -0.014042184688150883, + 0.01591547578573227, + -0.007298339623957872, + 0.021640250459313393, + -0.002547675045207143, + -0.008826944045722485, + -0.013075566850602627, + 0.004357273690402508, + -0.015480872243642807, + 0.005627364385873079, + 0.011052412912249565, + 0.03746580705046654, + 0.020096659660339355, + 0.0020718590822070837, + 0.011479523964226246, + -0.0019482220523059368, + -0.006616461556404829, + -0.02661571092903614, + -0.009501328691840172, + -0.024008089676499367, + 0.013083060272037983, + 0.01717432588338852, + -0.009868494234979153, + 0.001951968646608293, + -0.006031995173543692, + -0.02042635902762413, + 0.02120564691722393, + 0.004507136531174183, + 0.021310551092028618, + -0.01011576782912016, + 0.0062530431896448135, + -0.010415494441986084, + -0.0013290995266288519, + 0.028099356219172478, + -0.013675020076334476, + 0.03695627301931381, + -0.00822749175131321, + 0.023933157324790955, + -0.016185229644179344, + 0.007897792384028435, + 0.010805139318108559, + 0.015360981225967407, + 0.0065078106708824635, + -0.008115094155073166, + -0.016919558867812157, + 0.011359632946550846, + -0.01189164724200964, + 0.012266305275261402, + 0.020276496186852455, + -0.010228165425360203, + -0.005972049664705992, + -0.00756809301674366, + 0.009508822113275528, + 0.009733617305755615, + -0.02258438989520073, + -0.02751488983631134, + 0.00877449195832014, + 0.0031358881387859583, + -0.019961781799793243, + 0.007897792384028435, + 0.0021411709021776915, + 0.00880446471273899, + 0.003431868040934205, + -0.01867295801639557, + 0.0026132401544600725, + -0.0020269001834094524, + 0.014694090001285076, + 0.00886441022157669, + -0.004462177865207195, + -0.005260199308395386, + -0.017324188724160194, + 0.013405266217887402, + -0.006410399917513132, + 0.00023942992265801877, + 0.025386830791831017, + 0.005822186358273029, + 0.0037671870086342096, + 0.03231051191687584, + 0.00457832170650363, + 0.010820125229656696, + 0.014469294808804989, + 0.004136225208640099, + 0.007279606536030769, + -0.012715895660221577, + 0.003188340226188302, + 0.015945447608828545, + -0.0055749122984707355, + -0.005900864955037832, + 0.0006926491041667759, + -0.013772430829703808, + -0.016305118799209595, + -0.0011033680057153106, + -0.000798021734226495, + -2.918235259130597e-5, + -0.012483607046306133, + -0.01982690580189228, + -0.017803752794861794, + 0.025551680475473404, + 0.0005811883602291346, + -0.007927765138447285, + 0.0017824358073994517, + -0.009516315534710884, + -0.0022011161781847477, + 0.0018208383116871119, + -0.003911430481821299, + 0.011989058926701546, + 0.009209095500409603, + -0.009074218571186066, + 0.004780637100338936, + 0.004923006985336542, + -0.02817428857088089, + 0.009838521480560303, + 0.016425009816884995, + 0.026241052895784378, + 0.007545613683760166, + 0.0035217860713601112, + 0.01528604980558157, + 0.011479523964226246, + 0.002023153705522418, + -0.009036753326654434, + 0.020471317693591118, + -0.027050312608480453, + 0.008879396133124828, + -0.006582742556929588, + -0.0030291106086224318, + -0.00578097440302372, + 0.004889287985861301, + -0.01807350665330887, + -0.012693415395915508, + -0.013375293463468552, + 0.004016334656625986, + -0.00467198621481657, + 0.005170281510800123, + 0.010827618651092052, + 0.0028267952147871256, + -0.011007454246282578, + 0.015810571610927582, + -0.009531301446259022, + 0.01765388809144497, + 0.016050351783633232, + 0.002989771543070674, + 0.004949233029037714, + 0.013622567988932133, + 0.012363716959953308, + 0.010213179513812065, + -0.020875947549939156, + -0.0009249371360056102, + -0.00575100164860487, + 0.004304821137338877, + 0.0016175862401723862, + 0.02522198110818863, + -0.017399121075868607, + -0.005425048992037773, + 0.007302085869014263, + -0.026271024718880653, + -0.003503052983433008, + 0.006590235512703657, + 8.183937461581081e-5, + 0.004881794564425945, + -0.0024371508043259382, + 0.013652540743350983, + 0.007815367542207241, + -0.006031995173543692, + 0.01958712376654148, + -0.00025102091603912413, + 0.007571839727461338, + -0.008527218364179134, + 0.01796860061585903, + -0.0032951177563518286, + 0.015271062962710857, + 0.01186167448759079, + -0.0055411928333342075, + 0.010535385459661484, + -0.03368925303220749, + -0.009201602078974247, + -0.0046644932590425014, + -0.020291481167078018, + 0.001893896609544754, + 0.019422274082899094, + 0.0028548946138471365, + -0.018598027527332306, + -0.006713872775435448, + -0.0030834360513836145, + 0.006320481654256582, + -0.021490387618541718, + -0.022914087399840355, + -0.008759506046772003, + -0.018657973036170006, + 0.007305832579731941, + 0.013120526447892189, + -0.00768798403441906, + -0.011104865930974483, + 0.013772430829703808, + 0.018403204157948494, + 0.01784871146082878, + -0.0005952380015514791, + 0.01874789036810398, + 0.003519912716001272, + 0.0034974331501871347, + -0.012903224676847458, + 0.015158666297793388, + 0.021880032494664192, + -0.004379753023386002, + 0.011254728771746159, + -0.015046268701553345, + 0.02017159014940262, + -0.021730167791247368, + 0.010692741721868515, + -0.0074969083070755005, + 0.001835824572481215, + -0.00412873225286603, + 0.01946723461151123, + -0.01813345029950142, + -0.007545613683760166, + 0.002905473345890641, + -0.025506721809506416, + -0.027709711343050003, + -0.0011473903432488441, + -0.007073544431477785, + 0.019302384927868843, + -0.01873290352523327, + -0.008632122538983822, + 0.004450938198715448, + -0.0006617398466914892, + 0.03938405588269234, + -0.0072683668695390224, + -0.02475740574300289, + -0.028129328042268753, + 0.023648418486118317, + -0.012476113624870777, + 0.002377205528318882, + 0.019497206434607506, + -0.009643699042499065, + -0.003926416859030724, + -0.009366451762616634, + 0.01994679681956768, + 0.013959759846329689, + -0.01321793720126152, + 0.0005601138109341264, + -0.0035667449701577425, + -0.013854855671525002, + 0.029223330318927765, + 0.00969615112990141, + -0.00927653443068266, + 0.01790865696966648, + 0.012063990347087383, + 0.02528192661702633, + 0.023033978417515755, + -0.009643699042499065, + -0.02156531997025013, + 0.01141208503395319, + 0.01867295801639557, + 0.02318384125828743, + -0.006249296944588423, + 0.0013909181579947472, + 0.009598740376532078, + -0.014102130196988583, + -0.013937280513346195, + 0.015308529138565063, + 0.0030141242314130068, + 0.007290846202522516, + -0.014229513704776764, + 0.02036641351878643, + 0.010205686092376709, + 0.02600127086043358, + 0.0013047467218711972, + 0.011487016454339027, + -0.002193622989580035, + 0.007860326208174229, + -0.006852496415376663, + 0.029687905684113503, + 0.019497206434607506, + -0.0010218799579888582, + -0.00924656167626381, + -0.00289048720151186, + -0.026570750400424004, + -0.006620208267122507, + 0.0058446661569178104, + -0.022539429366588593, + -0.004413472022861242, + 0.012049003504216671, + -0.012536059133708477, + 0.007530627306550741, + 0.00467198621481657, + -0.022509457543492317, + 0.0004266418982297182, + 0.0058484128676354885, + -0.009726123884320259, + 0.01297066267579794, + 0.005222733598202467, + 0.0062680295668542385, + 0.011959086172282696, + -0.01093252282589674, + 0.010925029404461384, + -0.00731332553550601, + 0.017204299569129944, + 0.022599374875426292, + -0.011457043699920177, + -0.007305832579731941, + -0.020756058394908905, + -0.005174028221517801, + -0.0012120188912376761, + -0.0046045477502048016, + -0.021820086985826492, + -0.012603498063981533, + -0.004675732925534248, + -0.006567756179720163, + 0.014933871105313301, + 0.004027574323117733, + -0.0013515789760276675, + 0.017279230058193207, + 0.009628713130950928, + -0.004780637100338936, + -0.00015969800006132573, + -0.009111684747040272, + 0.02096586674451828, + 0.023588472977280617, + -0.009224082343280315, + 0.018613014370203018, + 0.010280617512762547, + 0.004435951821506023, + 0.021475400775671005, + -0.004450938198715448, + -0.002901726868003607, + -0.010130754671990871, + 0.0010659022955223918, + -0.009741109795868397, + 0.010325577110052109, + 0.019242439419031143, + 0.000257811596384272, + 0.003130268305540085, + 0.01375744491815567, + 0.0038777112495154142, + 0.01603536494076252, + 0.00543628865852952, + 0.0021430442575365305, + 0.023528527468442917, + -0.005623617675155401, + 0.008452286012470722, + -0.019257426261901855, + -0.0018545575439929962, + -0.0036641559563577175, + 0.008811958134174347, + -0.010415494441986084, + 0.0027499902062118053, + -0.0004196170484647155, + -0.005979543086141348, + 0.015301035717129707, + 0.007047318387776613, + 0.01675470918416977, + -0.0046495068818330765, + 0.011479523964226246, + 0.005383836571127176, + -0.0037653136532753706, + 0.013630061410367489, + 0.005930837243795395, + -0.025851408019661903, + -0.00016051757847890258, + 0.0008022366091609001, + 0.008392341434955597, + -0.008182532154023647, + 0.007365778088569641, + 0.016724737361073494, + -0.000293404096737504, + -0.0030253638979047537, + -0.01754898391664028, + 0.007347045000642538, + 0.03911430388689041, + -0.0003582667850423604, + -0.005548686254769564, + 0.010730206966400146, + -0.006091940216720104, + 0.028503986075520515, + -0.014679103158414364, + 0.01772882044315338, + -0.0030253638979047537, + -0.014739048667252064, + 0.0013515789760276675, + 0.011224756017327309, + 0.01657487265765667, + -0.00019482220523059368, + -0.008062642067670822, + 0.04283091053366661, + -0.001991307595744729, + -0.0024989694356918335, + -0.026705628260970116, + -0.00400884123519063, + -0.02661571092903614, + 0.006571502890437841, + -0.012131428346037865, + -0.0014845826663076878, + 0.005275185685604811, + 0.008931848220527172, + 0.03069199062883854, + -0.01813345029950142, + -0.005447528325021267, + 0.04271101951599121, + 0.013300362043082714, + 0.031860921531915665, + -0.009553780779242516, + -0.008572177030146122, + -0.019991755485534668, + 0.008984300307929516, + 0.0012616610620170832, + -0.008602149784564972, + -0.01030309684574604, + 0.007541866973042488, + 0.02120564691722393, + -0.00841482076793909, + 0.004136225208640099, + -0.009119177237153053, + 0.008339888416230679, + 0.013120526447892189, + 0.0026263531763106585, + -0.01011576782912016, + -0.02288411557674408, + -0.006796297617256641, + 0.014064664021134377, + 0.018598027527332306, + 0.0014180808793753386, + -0.009209095500409603, + -0.014124609529972076, + 0.018642986193299294, + 0.006946160923689604, + -0.009239068254828453, + -0.004716945346444845, + -0.03509796783328056, + -0.0035498852375894785, + -0.0039376565255224705, + 0.011809222400188446, + -0.002319133607670665, + 0.005226480308920145, + 0.004716945346444845, + -0.022914087399840355, + 0.018942711874842644, + -0.024232884868979454, + -0.0011960959527641535, + 0.0055898986756801605, + -0.0055711655877530575, + -0.0026656922418624163, + -0.0019313624361529946, + -0.0006617398466914892, + -0.03069199062883854, + -0.020276496186852455, + -0.002873627468943596, + 0.008205012418329716, + 0.015188639052212238, + 0.006361694075167179, + -0.0016035365406423807, + 0.0065078106708824635, + 0.01621520146727562, + -0.02738001197576523, + -0.0014059044187888503, + -0.005987036041915417, + -0.014446815475821495, + 0.010408001020550728, + 0.009861000813543797, + 0.004952979739755392, + 0.004525869619101286, + -0.03695627301931381, + 0.022314636036753654, + 0.012610990554094315, + 0.03341950103640556, + -0.022539429366588593, + 0.016380051150918007, + 0.009688657708466053, + -0.00674009881913662, + 0.006320481654256582, + -0.0030066310428082943, + -0.014192048460245132, + -0.01862799935042858, + 0.014551719650626183, + 0.006264283321797848, + -0.011711811646819115, + 0.0009872240480035543, + -0.00976358912885189, + -0.0055898986756801605, + -0.021235620602965355, + 0.01783372461795807, + 0.001145517104305327, + -0.015218610875308514, + -0.0048293424770236015, + 0.01916750706732273, + 6.538954039569944e-5, + 0.0029242064338177443, + -0.03141133487224579, + 0.007927765138447285, + -0.0008027049480006099, + 0.007927765138447285, + -0.018178410828113556, + 0.00925405416637659, + 0.02108575589954853, + 0.012251319363713264, + 0.02078603021800518, + -0.01802854612469673, + -0.0018086618511006236, + -0.012895731255412102, + -0.002603873610496521, + 0.02522198110818863, + -0.008032669313251972, + 0.006369187496602535, + -0.02150537446141243, + 0.012498593889176846, + -0.010258138179779053, + -0.0036341834347695112, + -0.02427784353494644, + -0.010055823251605034, + -0.010130754671990871, + -0.0016662918496876955, + -0.01516615878790617, + 0.005297665484249592, + 0.00994342565536499, + -0.004836835898458958, + -0.011509495787322521, + -0.005762241315096617, + 0.010880070738494396, + -0.015690680593252182, + 0.001125847571529448, + 0.0032332991249859333, + -0.005522460211068392, + -0.016005393117666245, + -0.020036714151501656, + 0.01753399893641472, + -0.024652501568198204, + -0.005934583954513073, + -0.011734290979802608, + -0.006151885725557804, + -0.019901838153600693, + -1.1700747563736513e-5, + -0.019122548401355743, + -0.000257811596384272, + -0.014596679247915745, + -0.010100781917572021, + -0.030422236770391464, + -0.012123935855925083, + 0.008654601871967316, + -0.02779962867498398, + -0.02606121636927128, + -0.0053126513957977295, + 0.006717619486153126, + 0.0062980023212730885, + -0.013854855671525002, + -0.011419578455388546, + -0.010288110934197903, + -0.031800977885723114, + 0.008152559399604797, + -0.011741784401237965, + -0.005503727123141289, + 0.011344647035002708, + -0.01885279454290867, + 0.011854181997478008, + -0.009171630255877972, + 0.018478136509656906, + 0.00918661616742611, + -0.0014705329667776823, + 0.001031246385537088, + -0.0029167132452130318, + -0.009119177237153053, + -0.014769021421670914, + -0.029463112354278564, + 0.02186504565179348, + -0.003975122235715389, + -0.0017543364083394408, + -0.002931699389591813, + 0.005664830096065998, + -0.015585776418447495, + -0.03407889977097511, + 0.008422313258051872, + 0.006721366196870804, + -0.015068748034536839, + -0.008302423171699047, + 0.0020437599159777164, + -0.005754747893661261, + 0.003975122235715389, + 0.008961820974946022, + -0.00645535858348012, + 0.005736015271395445, + 0.01201153825968504, + -0.023393651470541954, + -0.011277208104729652, + 0.012296278029680252, + 0.004735677968710661, + -0.0018545575439929962, + -0.006148139014840126, + -0.019512193277478218, + -0.05314150080084801, + -0.019497206434607506, + 0.014971337281167507, + 0.007140982896089554, + -0.01897268556058407, + -0.017698848620057106, + 0.010100781917572021, + -0.01682964153587818, + 0.02180510014295578, + -0.016439996659755707, + 0.007294592913240194, + 0.004840582609176636, + 0.010250644758343697, + 0.003459967439994216, + -0.023813268169760704, + 0.0053126513957977295, + 0.0018498742720112205, + 0.004776890389621258, + 0.013532649725675583, + 0.0009024576283991337, + 0.02017159014940262, + 0.01011576782912016, + 0.015181145630776882, + -0.011217262595891953, + 0.01288074441254139, + 0.014199540950357914, + -0.012221346609294415, + -0.001693454571068287, + 0.02751488983631134, + 0.011794236488640308, + -0.006380427163094282, + 0.0017637029523029923, + -0.010977481491863728, + -0.02384323999285698, + 0.000804578245151788, + 0.0077404361218214035, + 0.000255704129813239, + -0.00909669790416956, + 0.004540855996310711, + 0.0036341834347695112, + 0.00819751899689436, + -0.03551758453249931, + 0.014521746896207333, + -0.022254690527915955, + 0.008032669313251972, + 0.0009099508170038462, + 0.00886441022157669, + 0.00991345290094614, + -0.0037671870086342096, + 0.007624291814863682, + -0.00311528192833066, + -0.00976358912885189, + 2.0737910745083354e-5, + 0.04253118485212326, + -0.003930163104087114, + 0.014034691266715527, + -0.00858716294169426, + -0.00889438297599554, + -0.004945486783981323, + 0.0037522006314247847, + 0.002246075076982379, + -0.0024839830584824085, + -0.009658684954047203, + -0.00597579637542367, + 0.014679103158414364, + -0.00976358912885189, + 0.0072683668695390224, + 0.012700908817350864, + -0.003100295551121235, + 0.000761492527090013, + -0.0011811095755547285, + 0.00705855805426836, + 0.021760141476988792, + 0.00925405416637659, + -0.0013075567549094558, + 0.023213814944028854, + -0.008991793729364872, + 0.0037203547544777393, + 0.032520320266485214, + -0.018702931702136993, + -0.012790827080607414, + -0.0002742028736975044, + 0.018418191000819206, + -0.0072533804923295975, + -0.010760179720818996, + -0.0030103777535259724, + -0.017563970759510994, + 0.006687646731734276, + -0.028638863936066628, + -0.008946835063397884, + 0.012296278029680252, + 0.004274848848581314, + -0.002291034208610654, + 0.003673522500321269, + -0.020741071552038193, + -0.032400429248809814, + 0.00010584091069176793, + 5.941843119217083e-5, + 0.0030066310428082943, + 0.026211079210042953, + -0.028429055586457253, + -0.023198828101158142, + 0.0009174439474008977, + -0.002223595743998885, + -0.0032258061692118645, + -0.00629050936549902, + 0.009328986518085003, + 0.006657673977315426, + -0.005548686254769564, + -0.005927090998739004, + 0.013622567988932133, + 0.011726797558367252, + 0.013345320709049702, + -0.013165485113859177, + 0.010010863654315472, + -0.02510209195315838, + -0.011614400893449783, + 0.008212504908442497, + -0.008534710854291916, + -0.00432355422526598, + 0.014694090001285076, + 0.0034824467729777098, + -0.004316061269491911, + 0.006620208267122507, + -0.009591246955096722, + 0.00937394518405199, + 0.012663443572819233, + -0.010527892038226128, + 0.010250644758343697, + -0.008504738099873066, + -0.00689370883628726, + -0.01718931272625923, + 0.014064664021134377, + 0.004698212258517742, + -0.004533362574875355, + 0.029837770387530327, + -0.017279230058193207, + 0.01528604980558157, + 0.008527218364179134, + -0.0003392997314222157, + 0.0029541789554059505, + 0.005368850193917751, + 0.015061254613101482, + -0.009928438812494278, + 0.013300362043082714, + 0.014222020283341408, + -0.015645721927285194, + 0.02414296753704548, + 0.0038964441046118736, + -0.0010153234470635653, + -0.01090255007147789, + 0.021190661936998367, + 0.025012172758579254, + 0.006327975075691938, + 0.005218986887484789, + 0.01369749940931797, + -0.0008603086462244391, + -0.009718630462884903, + -0.00017562098219059408, + -0.0016859613824635744, + 0.016739722341299057, + -0.02078603021800518, + -0.009411411359906197, + -0.022074854001402855, + 0.00991345290094614, + -0.03027237206697464, + -0.005080363713204861, + -0.007860326208174229, + 0.014049678109586239, + -0.010467946529388428, + -0.012813306413590908, + -0.0009881607256829739, + -0.014356897212564945, + -0.004660746548324823, + -0.003799032885581255, + 0.0032838780898600817, + -0.005878385156393051, + 0.0026507058646529913, + -0.007717956323176622, + -0.013382786884903908, + 0.016484955325722694, + -0.00289048720151186, + -0.0041961707174777985, + 0.013502676971256733, + -0.00024188862880691886, + -0.024652501568198204, + -0.003429994685575366, + -0.005762241315096617, + -0.01760892942547798, + 0.04046307131648064, + -0.0056198714300990105, + 0.008182532154023647, + 0.00043132511200383306, + -0.010969989001750946, + -0.005473754368722439, + -0.01306807342916727, + -0.04121238738298416, + -0.005627364385873079, + 0.01389981433749199, + 0.030901798978447914, + 0.0021261845249682665, + -0.0009516315185464919, + -0.01537596806883812, + -0.017683861777186394, + 0.0057959603145718575, + -0.013652540743350983, + -0.005728521849960089, + -0.014739048667252064, + 0.02354351431131363, + 0.013180471025407314, + -0.002645086031407118, + 0.02438274770975113, + 0.009508822113275528, + 0.03308980166912079, + 0.014311938546597958, + -0.00807762797921896, + -0.012363716959953308, + -0.004728185012936592, + -0.003649169811978936, + -0.008452286012470722, + -0.010175713337957859, + 0.012221346609294415, + -0.018163423985242844, + -0.005046644248068333, + -0.00877449195832014, + 0.011052412912249565, + 0.010273125022649765, + -0.01222884003072977, + 0.0011923493584617972, + 0.0037503272760659456, + 0.014724062755703926, + -0.004499643575400114, + 0.014611665159463882, + 0.030362291261553764, + 0.010805139318108559, + 0.006144392304122448, + 0.005608631297945976, + 0.00515154842287302, + 0.0046157874166965485, + -0.02012663148343563, + -0.007021092344075441, + 0.03213067725300789, + -0.00927653443068266, + 0.029867742210626602, + 0.01801356114447117, + 0.016589859500527382, + 0.0030684496741741896, + -0.0014705329667776823, + -0.01699449121952057, + -0.004091266077011824, + -0.007538120727986097, + -0.00039526427281089127, + -0.0003479636798147112, + -0.004570828750729561, + 0.004795623477548361, + 0.021715182811021805, + 0.0032820047345012426, + -0.0048630619421601295, + -0.020696112886071205, + 0.0018957698484882712, + 0.01940728910267353, + -0.014401856809854507, + -0.012213853187859058, + 0.011187289841473103, + -0.015465885400772095, + 0.017578957602381706, + 0.012858265079557896, + -0.038904495537281036, + 0.012536059133708477, + -0.001408714335411787, + 0.006616461556404829, + -0.019542165100574493, + 0.016020379960536957, + -0.005200254265218973, + 0.024637514725327492, + -0.004364766646176577, + 0.021969949826598167, + -0.025072118267416954, + 0.010587837547063828, + -0.01635007932782173, + 0.0027874561492353678, + -0.011262222193181515, + 0.0038627248723059893, + 0.020756058394908905, + 0.001996927661821246, + 0.0004498238558880985, + -0.005009178537875414, + -0.013592595234513283, + -0.019032631069421768, + 0.008130080066621304, + -0.0026525792200118303, + -0.006822523660957813, + -0.009980890899896622, + -0.021370496600866318, + 0.003531152382493019, + -0.004439698066562414, + 0.009965904988348484, + 0.0004327300703153014, + 0.011284701526165009, + 0.002944812411442399, + 0.012813306413590908, + 0.015083733946084976, + 0.023693377152085304, + -0.00612940639257431, + -0.014349404722452164, + 0.0004931436851620674, + 0.00023779079492669553, + 0.009673671796917915, + -0.003443107707425952, + -0.015780597925186157, + -0.012700908817350864, + 0.005440035369247198, + 0.009733617305755615, + 0.021130716428160667, + 0.008856916800141335, + -0.0058296797797083855, + 0.015211118385195732, + 0.03521785885095596, + 0.018897753208875656, + -0.010355548933148384, + 0.01933235675096512, + -0.00606946088373661, + 0.0007966167177073658, + -0.013869842514395714, + 0.016365064308047295, + -0.021700195968151093, + 0.01778876595199108, + -0.005511220544576645, + 0.01093252282589674, + -0.015510844998061657, + 0.03671649098396301, + -0.0028698809910565615, + 0.0028961070347577333, + -0.00838484801352024, + -0.008145066909492016, + 0.02054625004529953, + 0.012805812992155552, + -0.005016671493649483, + 0.01195159275084734, + 0.009553780779242516, + -0.0055898986756801605, + -0.0011586301261559129, + 0.000526394578628242, + -0.00046106360969133675, + -0.004533362574875355, + 0.0029953913763165474, + -0.008437300100922585, + -0.020501289516687393, + -0.012213853187859058, + 0.0030796893406659365, + -0.007369524333626032, + 0.004563335329294205, + 0.02258438989520073, + 0.014034691266715527, + -0.0015969800297170877, + 0.009261547587811947, + -0.01153197605162859, + -0.00367164914496243, + -0.015525830909609795, + -0.012416169047355652, + 0.014057171531021595, + -0.008819451555609703, + 0.014304445125162601, + 0.001089318422600627, + 0.014903898350894451, + 0.020441344007849693, + 0.01207148376852274, + 0.006106926593929529, + 0.01141208503395319, + -0.002448390470817685, + -0.005672323517501354, + -0.031381361186504364, + -0.010385521687567234, + 0.002931699389591813, + 0.010977481491863728, + 0.007616798859089613, + 0.004402232356369495, + 0.0001915439497679472, + 0.0005282678757794201, + -0.024637514725327492, + 0.002721891039982438, + 0.011771757155656815, + -0.0057997070252895355, + 0.005417556036263704, + 0.03593720123171806, + 0.016170242801308632, + -0.006357947830110788, + 0.012625977396965027, + 0.004203663673251867, + 0.01306807342916727, + 0.009875986725091934, + 0.003544265404343605, + 0.008639615029096603, + 0.01201153825968504, + -0.0005441908724606037, + 0.02630099654197693, + -0.016904572024941444, + 0.004188677296042442, + -0.010055823251605034, + 0.0046045477502048016, + 0.027604807168245316, + 0.026570750400424004, + -0.0002957457327283919, + 0.002452137181535363, + -0.0007404180360026658, + 0.016844626516103745, + 0.0039376565255224705, + -0.006972386967390776, + -0.012326250784099102, + -0.01417706161737442, + 0.008624629117548466, + -0.0012691542506217957, + -0.007800381164997816, + -0.02372334897518158, + -0.010715221054852009, + 0.0048630619421601295, + -0.010820125229656696, + -0.009164136834442616, + 0.013914801180362701, + 0.005260199308395386, + -0.014214527793228626, + -0.01946723461151123, + 0.008219998329877853, + 0.018583040684461594, + 0.0007867819513194263, + 0.002845528069883585, + -0.003104042261838913, + -0.004686972592025995, + 0.0006453485693782568, + -0.007485668640583754, + -0.018598027527332306, + -0.002206736011430621, + -0.002630099654197693, + 0.01778876595199108, + -0.0011708064703270793, + 0.008287436328828335, + -0.023408636450767517, + 0.022509457543492317, + -0.025087105110287666, + -0.018942711874842644, + -0.01222884003072977, + 0.007845340296626091, + -0.01874789036810398, + 0.008399833925068378, + -0.011262222193181515, + -0.030407249927520752, + 0.012318757362663746, + -0.0003154152655042708, + 0.000558708852622658, + 0.045618366450071335, + -0.008519724942743778, + -0.02475740574300289, + -0.005462514702230692, + -0.005185267888009548, + -0.009838521480560303, + -0.023348690941929817, + 0.00892435573041439, + -0.00422239676117897, + 0.0007727323099970818, + -0.040223293006420135, + -0.014671610668301582, + -4.6071236283751205e-5, + 0.013172978535294533, + -0.022419540211558342, + 0.02084597572684288, + 0.020021727308630943, + 0.0020887188147753477, + -0.013645047321915627, + 0.012108949013054371, + 0.003407515352591872, + 0.0046195341274142265, + 0.0009806675370782614, + -0.0070098526775836945, + -0.00515154842287302, + 0.014499267563223839, + -0.0020849721040576696, + -0.008752012625336647, + 0.03755572438240051, + -0.0009272787719964981, + 0.005559925921261311, + 0.029028508812189102, + 0.0021318045910447836, + -0.0004107189306523651, + 0.010123261250555515, + -0.0029167132452130318, + 0.0041961707174777985, + 0.004597054794430733, + -0.014828966930508614, + -0.007732942700386047, + -0.005230227019637823, + 0.016559887677431107, + -0.032340485602617264, + -0.00027982276515103877, + 0.0022854143753647804, + 0.00960623286664486, + 0.01417706161737442, + 2.309415867784992e-5, + 0.0024558836594223976, + 0.013195457868278027, + -0.005320144817233086, + -0.003246412379667163, + 0.04061293601989746, + 0.003218312980607152, + -0.027245135977864265, + -0.008984300307929516, + 0.003246412379667163, + -0.0002397811767878011, + -0.0067550851963460445, + 0.008886889554560184, + 0.01705443672835827, + -0.012655950151383877, + 0.010737700387835503, + 0.021130716428160667, + 0.026870477944612503, + 0.003915176726877689, + -0.030467195436358452, + -0.002010040683671832, + -0.011929113417863846, + -0.002720017684623599, + 0.003658536123111844, + -0.009201602078974247, + 0.027739685028791428, + 0.02012663148343563, + 0.01525607705116272, + 0.0006209957646206021, + -0.001892023254185915, + -0.0032332991249859333, + 0.015990406274795532, + -0.0027687232941389084, + -0.019122548401355743, + 0.005938330665230751, + 0.006159378681331873, + -0.017863696441054344, + 0.009269041009247303, + -0.009846013970673084, + 0.016964517533779144, + 0.01879284903407097, + 0.011959086172282696, + 0.00870705395936966, + 0.01855306886136532, + 0.020920908078551292, + -0.006181858479976654, + -0.007249633781611919, + -0.017863696441054344, + -0.0004296859842725098, + 0.04205162450671196, + -0.008759506046772003, + 0.0002774811291601509, + 0.004091266077011824, + 0.0021280578803271055, + -0.030557112768292427, + 0.0005170281510800123, + -0.008579670451581478, + -0.003956389147788286, + -0.012056496925652027, + 0.019722001627087593, + -0.00023217093257699162, + -0.0034374878741800785, + 0.009898466058075428, + -0.011974072083830833, + -0.011966578662395477, + -0.010602823458611965, + 0.0024427706375718117, + -0.021295566111803055, + 0.015495858155190945, + -0.0017318569589406252, + 0.002337866462767124, + -0.006522797048091888, + 0.005477501079440117, + -0.003341950010508299, + 0.010557864792644978, + 0.008684574626386166, + -0.0019856877624988556, + -0.009950919076800346, + 0.015083733946084976, + -0.003990108612924814, + -0.012161401100456715, + -0.014641637913882732, + 0.013630061410367489, + -0.010273125022649765, + 0.004499643575400114, + 0.005713535938411951, + 0.019602110609412193, + 0.003840245306491852, + 0.007747929077595472, + -0.01766887493431568, + -0.0053276377730071545, + 0.014903898350894451, + 0.007717956323176622, + -0.008032669313251972, + 0.010175713337957859, + 0.0031977067701518536, + 0.0036229435354471207, + -0.005455021746456623, + -0.0003779363469220698, + -0.009089205414056778, + -0.012865758500993252, + -0.010437973774969578, + -0.02391817234456539, + -0.01657487265765667, + 0.022929074242711067, + 0.019961781799793243, + -0.021610278636217117, + -0.014281965792179108, + -0.007815367542207241, + -0.01627514697611332, + 0.003930163104087114, + 0.008594656363129616, + -9.460116416448727e-5, + -0.007912778295576572, + 0.008070135489106178, + -0.008789478801190853, + -0.0041961707174777985, + 0.007643024902790785, + 0.005743508227169514, + 0.0012785206781700253, + -0.026390915736556053, + -0.01723427139222622, + -0.02696039527654648, + -0.013824882917106152, + -0.012663443572819233, + 0.0023266267962753773, + -0.005983289331197739, + -0.019557151943445206, + 0.014544226229190826, + -0.0015529576921835542, + -0.00844479352235794, + 0.01688958704471588, + 0.0034356145188212395, + -0.02565658465027809, + -0.00657899584621191, + -0.007107263896614313, + 0.0006542466580867767, + 0.0033101041335612535, + 0.012191373854875565, + -0.02343861013650894, + -0.01483646035194397, + -0.009591246955096722, + 0.002322880085557699, + -0.000886534689925611, + 0.003926416859030724, + -0.014536733739078045, + 0.014963843859732151, + 0.014386869966983795, + 0.00594582362100482, + 0.016904572024941444, + -0.013517663814127445, + -0.009486342780292034, + -5.622798198601231e-5, + -0.018822822719812393, + -0.009965904988348484, + 0.008085121400654316, + 0.0018330146558582783, + -0.0008195645641535521, + 0.007586826104670763, + 0.0019594617187976837, + 0.009119177237153053, + -0.00227417447604239, + 0.01693454571068287, + 0.008287436328828335, + 0.03045220859348774, + 0.00032571837073192, + 0.001996927661821246, + 0.03338952735066414, + 0.0069798799231648445, + -0.01688958704471588, + 0.023828253149986267, + 0.026405900716781616, + 0.005743508227169514, + 0.0022442019544541836, + 0.008572177030146122, + -0.019781947135925293, + 0.0028923603240400553, + -0.006747592240571976, + -0.011801729910075665, + 0.007882806472480297, + 0.0004875238228123635, + -0.0035929710138589144, + 0.023258773609995842, + -0.002646959386765957, + -0.004589561372995377, + 0.00994342565536499, + -0.01825334131717682, + 0.025266941636800766, + -0.007616798859089613, + -0.003433741396293044, + 0.002690044930204749, + 0.005189014598727226, + 0.02919335849583149, + 0.021250605583190918, + -0.0014489900786429644, + -0.010048329830169678, + 0.011794236488640308, + 0.015990406274795532, + 0.011097372509539127, + -0.006852496415376663, + 0.008122587576508522, + -0.00994342565536499, + 0.01093252282589674, + 0.0014967590104788542, + -0.015840543434023857, + 0.010100781917572021, + 0.01150200329720974, + -0.002236708765849471, + -0.009261547587811947, + 0.0034412345848977566, + -0.013540143147110939, + 0.0077404361218214035, + -0.011404591612517834, + -0.015076241455972195, + 0.003903937293216586, + -0.010745193809270859, + 0.010827618651092052, + -0.01093252282589674, + -0.01699449121952057, + 0.0057959603145718575, + 0.011389605700969696, + -0.019602110609412193, + -0.009306507185101509, + 0.019632084295153618, + 0.02300400659441948, + 0.017983587458729744, + 0.001981941284611821, + -0.024217898026108742, + 0.021820086985826492, + 0.01807350665330887, + 0.009771082550287247, + 0.033899061381816864, + -0.0006401970167644322, + 0.00931399967521429, + 0.01952717825770378, + -0.0033644295763224363, + 0.009756096638739109, + 0.008999287150800228, + 0.018178410828113556, + -0.009523808024823666, + 0.005758494604378939, + -0.008085121400654316, + -0.013113033026456833, + -0.0048443288542330265, + 0.008984300307929516, + -0.013292868621647358, + 0.00768798403441906, + -0.031920868903398514, + -0.0058296797797083855, + -0.0030703230295330286, + 0.003546138759702444, + -0.013038101606070995, + 0.01144205778837204 + ], + "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5": [ + -0.025074392557144165, + -0.03779565915465355, + -0.006895798724144697, + 0.050585098564624786, + -0.03400518372654915, + -0.028087683022022247, + 0.009217122569680214, + 0.03239627927541733, + -0.009421644732356071, + 0.04390404745936394, + 0.025783400982618332, + -0.006752633489668369, + 0.01073058508336544, + -0.018966002389788628, + -0.014698311686515808, + 0.018993273377418518, + -0.040604427456855774, + -0.005123274866491556, + -0.005208492744714022, + -0.023465486243367195, + 0.051648613065481186, + -0.005402788519859314, + -0.011323698796331882, + -0.004499482922255993, + 0.008242234587669373, + -0.029151195660233498, + 0.010887385345995426, + 0.00803771335631609, + -0.05759338289499283, + -0.0014163145096972585, + 0.013614345341920853, + -0.00953754037618637, + 0.009026235900819302, + -0.0050653270445764065, + 0.03455057740211487, + -0.0283876471221447, + 0.009210305288434029, + 0.007437781896442175, + -0.008105887100100517, + -0.02653331495821476, + -0.0674104392528534, + 0.056175366044044495, + -0.012803074903786182, + 0.013437092304229736, + -0.031005529686808586, + -0.009271661750972271, + -0.05077598616480827, + -0.017029860988259315, + 0.0011734447907656431, + 0.009626166895031929, + -0.0012595143634825945, + -0.027501385658979416, + -0.024269938468933105, + 0.002670716028660536, + 0.055384546518325806, + -0.04101347178220749, + -0.008249052800238132, + 0.04098619893193245, + 0.01448015496134758, + -0.054566457867622375, + 0.0008108443580567837, + -0.010273819789290428, + -0.0020230631344020367, + -0.0029809074476361275, + -0.023492755368351936, + 0.02088850922882557, + -0.02896030992269516, + 0.005607310216873884, + -0.04202244430780411, + -0.02766500413417816, + -0.001920802053064108, + 0.05492096394300461, + -0.04774906113743782, + 0.010580603033304214, + 0.027160516008734703, + -0.028005873784422874, + 0.0535847544670105, + 0.011855456046760082, + 0.006510615814477205, + -0.01820245385169983, + -0.010396532714366913, + 0.0014333580620586872, + 0.0032536035869270563, + 0.001927619450725615, + 0.04136797413229942, + 0.013437092304229736, + 0.013907493092119694, + -0.04881257563829422, + 0.04633104056119919, + -0.042785994708538055, + -0.01719347946345806, + 0.015298242680728436, + -0.0007217921083793044, + -0.03408699482679367, + -0.02953297086060047, + 0.012155422009527683, + 0.015039181336760521, + -0.012353125959634781, + 0.029123926535248756, + 0.005327797029167414, + -0.010935107246041298, + 0.004721048753708601, + 0.028851231560111046, + -0.003105325158685446, + 0.017261654138565063, + 0.019252333790063858, + 0.005280075129121542, + 0.018147915601730347, + -0.017098035663366318, + 0.07815466076135635, + -0.0040768045000731945, + -0.054566457867622375, + -0.011787282302975655, + -0.01217587385326624, + -0.056448061019182205, + -0.048103563487529755, + -0.014043841511011124, + -0.01114644668996334, + -0.019661378115415573, + -0.008685366250574589, + 0.014739216305315495, + 0.00743096461519599, + -0.007758199702948332, + 0.032832592725753784, + -0.02441992238163948, + 0.020206769928336143, + 0.012878065928816795, + -0.012939422391355038, + 0.007799103856086731, + 0.006906024646013975, + -0.011937265284359455, + 0.010001123882830143, + 0.017602523788809776, + -0.014984642155468464, + 0.017916124314069748, + -0.01769796758890152, + 0.020329482853412628, + 0.08295410871505737, + -0.0033098470885306597, + 0.043576810508966446, + -0.05151226371526718, + -0.0396227203309536, + 0.010860116221010685, + -0.022333797067403793, + -0.007758199702948332, + 0.0009041574667207897, + -0.038177430629730225, + 0.039295487105846405, + -0.03585951775312424, + 0.012087247334420681, + -0.06855575740337372, + -0.03654125705361366, + -0.0072128078900277615, + 0.0010677750688046217, + 0.0701373964548111, + 0.0024133590050041676, + 0.002839446533471346, + 0.029014848172664642, + -0.00846720952540636, + 0.059175021946430206, + 0.027978604659438133, + -0.03515050560235977, + -0.007553677540272474, + 0.016470834612846375, + 0.06501071155071259, + 0.005048283841460943, + 0.023424582555890083, + 0.01606179028749466, + 0.016743531450629234, + 0.019225064665079117, + 0.026628758758306503, + -0.006749224849045277, + 0.013259840197861195, + -0.009326200932264328, + 0.03515050560235977, + -0.030105631798505783, + 0.03665033355355263, + 0.02229289337992668, + 0.016688991338014603, + -0.0417497493326664, + -0.0010174968047067523, + -0.029042117297649384, + 0.006510615814477205, + -0.015611843205988407, + -0.001982158748432994, + -0.015107355080544949, + 0.01902054250240326, + 0.03345979377627373, + -0.004816492088139057, + -0.02061581425368786, + 0.0003755960497073829, + -0.016757166013121605, + -0.027828620746731758, + 0.007008285727351904, + -0.020479464903473854, + -0.042458757758140564, + 0.01127597689628601, + 0.03332344442605972, + -0.0008483400451950729, + 0.020193135365843773, + -0.009012601338326931, + -0.03970453143119812, + -0.008814896456897259, + 0.037986546754837036, + -0.022156545892357826, + 0.014125649817287922, + -0.01018519327044487, + -0.005130092613399029, + 0.03517777845263481, + -0.03032378852367401, + 0.014575597830116749, + -0.04158613085746765, + 0.002899098675698042, + 0.015311877243220806, + -0.031496383249759674, + 0.0030797598883509636, + -0.0042745089158415794, + 0.016948053613305092, + 0.02548343688249588, + -0.042758725583553314, + 0.005395971238613129, + -0.011787282302975655, + -0.0039540911093354225, + -0.02249741554260254, + -0.043058689683675766, + 0.013096222653985023, + -0.022647397592663765, + 0.03435968980193138, + -0.03986814618110657, + 0.01825699396431446, + 0.029151195660233498, + -0.013702970929443836, + 0.002478124340996146, + -0.01501191221177578, + -0.021229378879070282, + 0.03547774255275726, + 0.009994306601583958, + 0.01825699396431446, + 0.002786611672490835, + -0.020438561215996742, + 0.000936540134716779, + 0.018897829577326775, + 0.0008547313627786934, + -0.023724546656012535, + 0.001982158748432994, + -0.0013430275721475482, + 0.0029945422429591417, + 0.05317571014165878, + 0.006312910933047533, + 0.008405852131545544, + 0.019906803965568542, + 0.012366761453449726, + -0.009646618738770485, + -0.013457545079290867, + -0.04589472711086273, + 0.005712979938834906, + 0.04578565061092377, + -0.017820680513978004, + -0.0015424364246428013, + 0.006169745698571205, + -0.00663332873955369, + -0.006019763182848692, + 0.01902054250240326, + 0.05573905259370804, + 0.03296893835067749, + -0.02758319489657879, + 0.02841491810977459, + 0.024610809981822968, + 0.006810581311583519, + 0.029887475073337555, + 0.004431309178471565, + -0.010757855139672756, + -0.02841491810977459, + 0.033677950501441956, + -0.014671041630208492, + 0.00884898379445076, + 0.00385523890145123, + -0.017248017713427544, + 0.010294271633028984, + -0.005648214835673571, + -0.02551070600748062, + -0.009455732069909573, + -1.532583155494649e-5, + 0.009735245257616043, + 0.02410632185637951, + 0.05862962827086449, + -0.006394719704985619, + -0.0033337080385535955, + -0.01486192923039198, + 0.0025207330472767353, + 0.009203488007187843, + -0.007887730374932289, + -0.005719797685742378, + 0.016239043325185776, + 0.003274055663496256, + 0.008951244875788689, + -0.028224030509591103, + 0.004864213988184929, + -0.03504142910242081, + -0.011896360665559769, + 0.0018168367678299546, + 0.03539593517780304, + 0.01663445308804512, + -0.04398585483431816, + 0.02785589173436165, + -0.014561963267624378, + 0.05006697401404381, + 0.046794623136520386, + -0.025537975132465363, + 0.0004250221827533096, + -0.019961344078183174, + -0.06533794850111008, + -0.017861584201455116, + -0.012714448384940624, + 0.01190999522805214, + 0.024610809981822968, + -0.02947843261063099, + -0.010662411339581013, + -0.016266312450170517, + -0.036050405353307724, + -0.023260964080691338, + 0.005123274866491556, + -0.04578565061092377, + 0.014902833849191666, + 0.025837941095232964, + -0.03760477155447006, + 0.04900346323847771, + 0.004254056606441736, + -0.011500951834022999, + -0.015216433443129063, + -0.034196071326732635, + -0.008569469675421715, + -0.03414153307676315, + -0.008071799762547016, + -0.03465965390205383, + -0.014425615780055523, + -0.04243148863315582, + -0.05606628581881523, + 0.0016515147872269154, + -0.023942703381180763, + -0.015652747824788094, + -0.024556269869208336, + -0.009837506338953972, + -0.017329826951026917, + -0.02601519413292408, + -0.02732413448393345, + -0.0201113261282444, + -0.0009714792831800878, + 0.019525030627846718, + 0.010655594058334827, + 0.000815531297121197, + -0.019770456477999687, + 0.031250953674316406, + 0.026069732382893562, + 0.04851260781288147, + -0.009796601720154285, + -0.005082370713353157, + -0.018434245139360428, + 0.02335640788078308, + 0.0013447318924590945, + 0.025360722094774246, + -0.022115640342235565, + 0.008787626400589943, + -0.03400518372654915, + -0.011364603415131569, + -0.01111235935240984, + 0.0053755189292132854, + 0.006456076633185148, + -0.010287454351782799, + 0.00589704979211092, + -0.006118615157902241, + -0.011030551046133041, + -0.03302348032593727, + -0.0343051515519619, + 0.010819211602210999, + -0.014957373030483723, + 0.06959200650453568, + -0.014261998236179352, + -0.02381999045610428, + 0.00803089514374733, + -0.024310844019055367, + -0.035232316702604294, + -0.0014665928902104497, + 0.0023179154377430677, + 0.04750363528728485, + 0.015284608118236065, + -0.02199292741715908, + -0.007103729527443647, + -0.024501731619238853, + -0.014084745198488235, + -0.03291440010070801, + -0.018584229052066803, + -0.021542979404330254, + -0.010580603033304214, + -0.032014504075050354, + -0.0014052363112568855, + 0.016252677887678146, + -0.016811704263091087, + 0.01351890154182911, + 0.0072128078900277615, + -0.05325751751661301, + -0.018679672852158546, + 0.010117019526660442, + -0.006019763182848692, + 0.04428582265973091, + 0.0227701123803854, + -0.01741163618862629, + -0.0021236196625977755, + 0.02789679542183876, + -0.007417329587042332, + 0.018079740926623344, + -0.013655249029397964, + 0.013512084260582924, + 0.005576631985604763, + 0.0418860986828804, + 0.01983862929046154, + 0.015693651512265205, + 0.025947019457817078, + -0.04071350395679474, + 0.008214965462684631, + 0.04180428758263588, + 0.03212358057498932, + 0.019443221390247345, + 0.028605803847312927, + 0.012469022534787655, + 0.018434245139360428, + -0.006878755055367947, + 0.005624353885650635, + -0.013471179641783237, + 0.011555491015315056, + 0.010941924527287483, + 0.046003807336091995, + 0.012264500372111797, + -0.010873750783503056, + -0.032532624900341034, + -0.018911464139819145, + -0.007833191193640232, + -0.030160171911120415, + 0.02118847519159317, + 0.0056039015762507915, + -0.03220539167523384, + 0.010614689439535141, + 0.00869900081306696, + 0.00034896557917818427, + -0.022320162504911423, + 0.01248947437852621, + -0.04526752606034279, + 0.02356093004345894, + -0.03997722640633583, + -0.029042117297649384, + 0.012639457359910011, + 0.046003807336091995, + 0.0036473083309829235, + -0.010641959495842457, + -0.017316192388534546, + -0.009721610695123672, + 0.017520714551210403, + -0.017234383150935173, + 0.037086647003889084, + -0.06277460604906082, + -0.006623102817684412, + -0.005334614310413599, + 0.011439595371484756, + -0.005900458432734013, + -0.003960908390581608, + -0.033377982676029205, + 0.000552635348867625, + -0.022879190742969513, + 0.0050107878632843494, + 0.040822584182024, + 0.010723767802119255, + -0.01795702800154686, + -0.0208748746663332, + 0.022347433492541313, + 0.002423585159704089, + 0.012353125959634781, + -0.004598335362970829, + -0.004976700991392136, + -0.011344151571393013, + 0.003916595596820116, + 0.006742407102137804, + 6.599028711207211e-5, + 0.015748191624879837, + -0.011310064233839512, + -0.05650259926915169, + 0.01824335940182209, + -0.03834104910492897, + 0.0009586967062205076, + 0.010546515695750713, + -0.012434935197234154, + 0.0045165265910327435, + 0.012019073590636253, + 0.04054988548159599, + 0.01580272987484932, + 0.004475622437894344, + -0.02172023244202137, + 0.022115640342235565, + -0.02143390104174614, + -0.006517433095723391, + -0.016539009287953377, + 0.017384367063641548, + -0.006643555127084255, + -0.016293583437800407, + -0.010232915170490742, + -0.011194168590009212, + 0.007819556631147861, + -0.03386883810162544, + -0.0013515492901206017, + -0.012032708153128624, + 0.006742407102137804, + -0.041967906057834625, + 0.0001291044900426641, + -0.019906803965568542, + -0.0004665657179430127, + -0.002200315473601222, + 0.008610374294221401, + -0.007069642189890146, + -0.02309734746813774, + 0.05287574231624603, + 0.0279240645468235, + -0.005443692672997713, + -0.018052471801638603, + -0.01933414302766323, + 0.0005560440476983786, + -0.024488095194101334, + -0.006006128154695034, + -0.012503108941018581, + 0.002689463784918189, + 0.028278568759560585, + -0.03842286020517349, + -0.01543459016829729, + 0.023424582555890083, + -0.031169146299362183, + -0.0065310681238770485, + 0.009544357657432556, + -0.0017094627255573869, + 0.009053505025804043, + 0.0021542978938668966, + -0.015693651512265205, + -0.006919659674167633, + -0.0289875790476799, + 0.004717639647424221, + -0.01218950841575861, + -0.008658096194267273, + 0.0065958332270383835, + 0.023383677005767822, + -0.006268598139286041, + 0.011685021221637726, + -0.014589233323931694, + 0.014002936892211437, + -0.03746842220425606, + 0.033623408526182175, + -0.016729896888136864, + 0.012107700109481812, + -0.013607528060674667, + -0.01932050846517086, + -0.0003280873061157763, + 0.016988957300782204, + -0.006796946283429861, + -0.03727753460407257, + -0.03321436792612076, + 0.03275078162550926, + 0.009871593676507473, + -0.0020929414313286543, + -0.05020332336425781, + 0.004257465247064829, + 0.0028547856491059065, + -0.016498105600476265, + 0.01315076183527708, + 0.017234383150935173, + 0.0214748065918684, + 0.018338803201913834, + 0.014439250342547894, + 0.0062311021611094475, + -0.02146117016673088, + 0.01799793168902397, + -0.009026235900819302, + -0.001449549337849021, + -0.029860205948352814, + -0.02491077408194542, + 0.003541638609021902, + -0.018161550164222717, + 0.019143255427479744, + -0.001299566589295864, + 0.01711167022585869, + 0.020547639578580856, + -0.024529000744223595, + -0.006776494439691305, + 6.20489809080027e-5, + -0.002121915342286229, + 0.017370732501149178, + 0.009469366632401943, + 0.007792286574840546, + -0.018107010051608086, + -0.009605715051293373, + 0.035286854952573776, + -0.004523343872278929, + -0.001825358485803008, + 0.023670008406043053, + 0.002846264047548175, + 0.023206425830721855, + 0.03697757050395012, + 0.006827624514698982, + -0.023547295480966568, + -0.042213331907987595, + -0.00234348070807755, + -0.026151541620492935, + 0.016743531450629234, + 0.016429930925369263, + 0.028823960572481155, + -0.016279948875308037, + -0.013471179641783237, + 0.012230413034558296, + -0.0035552734043449163, + 0.017807045951485634, + -0.008930792100727558, + -0.02549707144498825, + 0.012332674115896225, + 0.01381204929202795, + -0.002755933441221714, + 0.03948637470602989, + -0.02953297086060047, + 0.04417674243450165, + -0.042486026883125305, + 0.015393686480820179, + 0.033923376351594925, + -0.022579224780201912, + -0.032287199050188065, + 0.0036234473809599876, + 0.004959657322615385, + -0.033896107226610184, + -0.003558682044968009, + 0.005811832379549742, + -0.0008913748897612095, + -0.0028206987772136927, + 0.03883190080523491, + 0.012230413034558296, + 0.01288488321006298, + -0.016688991338014603, + -0.015979982912540436, + -0.017602523788809776, + -0.0014785233652219176, + 0.0029757944867014885, + 0.04316776990890503, + -0.02256559021770954, + 0.025101661682128906, + -0.005675484426319599, + 0.021283918991684914, + 0.011364603415131569, + 0.005474370904266834, + -0.02440628781914711, + 0.0051198662258684635, + -0.022647397592663765, + 0.03026925027370453, + 0.010894202627241611, + -0.01715257577598095, + 0.012918970547616482, + 0.005883415229618549, + -0.0026008374989032745, + 0.002718437695875764, + 0.045976538211107254, + -0.0332416370511055, + 0.01449378952383995, + 0.013866588473320007, + 0.00669127656146884, + -0.016307218000292778, + -0.003906369209289551, + -0.002103167586028576, + 0.01152822095900774, + 0.0187478456646204, + -0.0056823017075657845, + -0.015230068936944008, + 0.01030108891427517, + -0.012687179259955883, + 0.0005973745719529688, + 0.008269504643976688, + 0.00023328285897150636, + -0.012530378997325897, + 0.0107374032959342, + -0.019688647240400314, + -0.023410946130752563, + -0.04191336780786514, + -0.026983262971043587, + 0.022388337180018425, + -0.05020332336425781, + 0.007451416924595833, + -0.024815330281853676, + -0.004366543609648943, + -0.02361546829342842, + -0.009496636688709259, + -0.01435744110494852, + 0.004669918213039637, + -0.03168726712465286, + 0.028905769810080528, + 0.0005999310524202883, + -0.03670487552881241, + 0.009967036545276642, + 0.0015620364574715495, + 0.025047123432159424, + -0.020206769928336143, + -0.01847515068948269, + -0.0038756912108510733, + -0.0017793410224840045, + -0.007280981633812189, + 0.028469456359744072, + -0.012032708153128624, + -0.012625821866095066, + -0.04556749388575554, + 0.0033132557291537523, + -0.012980327010154724, + -0.023001903668045998, + 0.02788316085934639, + 0.009619349613785744, + 0.03168726712465286, + 0.012946239672601223, + 0.01274171844124794, + 0.002350298222154379, + 0.028333108872175217, + -0.01906144618988037, + 0.029887475073337555, + 0.004277917556464672, + 0.030760101974010468, + 0.014807390049099922, + -0.038477398455142975, + -0.03700483962893486, + 0.01368251908570528, + 0.0027218463364988565, + 0.013184849172830582, + 0.011296429671347141, + 0.004039308521896601, + 0.043876778334379196, + -0.004911935888230801, + 0.032832592725753784, + 0.003130890429019928, + 0.016729896888136864, + 0.030160171911120415, + -0.022960998117923737, + 0.014616502448916435, + 0.038504667580127716, + -0.029832936823368073, + 0.010860116221010685, + 0.011705473065376282, + 0.018338803201913834, + -0.02144753560423851, + 0.0012177578173577785, + -0.017029860988259315, + 0.02229289337992668, + 0.005474370904266834, + -0.0100556630641222, + -0.00886261835694313, + 0.014793755486607552, + -0.04769451916217804, + 0.009189853444695473, + 0.0029570467304438353, + -0.0076286690309643745, + 0.023247329518198967, + 0.025947019457817078, + 0.019661378115415573, + -0.008494478650391102, + 0.019143255427479744, + 0.003988177981227636, + -0.009544357657432556, + -0.00516077084466815, + -0.03247808665037155, + -0.016688991338014603, + 0.003991587087512016, + 0.013880223967134953, + 0.013348466716706753, + 0.02414722554385662, + -0.022947363555431366, + 0.03185088559985161, + 0.019047811627388, + 0.044394899159669876, + 0.018379706889390945, + 0.007949086837470531, + -0.007219625171273947, + 0.005038057453930378, + -0.020465830340981483, + -0.039050061255693436, + -0.0030218118336051702, + -0.03585951775312424, + -0.020534005016088486, + 0.017329826951026917, + -0.0195795688778162, + 0.010764672420918941, + -0.019634108990430832, + 0.030241981148719788, + -0.0020776023156940937, + -0.028633074834942818, + 0.008276321925222874, + -0.0027150290552526712, + -0.011446412652730942, + 0.017343461513519287, + -0.016239043325185776, + -0.009148948825895786, + -0.0020401065703481436, + -0.014534694142639637, + 0.010628324933350086, + -0.015748191624879837, + -0.013341649435460567, + -0.002006019465625286, + 0.0054845972917973995, + 0.023765452206134796, + 0.014821024611592293, + 0.01313712727278471, + -0.015093720518052578, + 0.009312566369771957, + -0.022156545892357826, + -0.04987609013915062, + 0.01846151612699032, + 0.004144978243857622, + 0.00045420919195748866, + 0.0023963155690580606, + -0.01018519327044487, + -0.035014159977436066, + -0.018161550164222717, + 0.00951027125120163, + -0.009292114526033401, + 0.028033142909407616, + 0.024556269869208336, + 0.0001454023295082152, + -0.006404946092516184, + 0.011337334290146828, + -0.002922959625720978, + -0.0037257084622979164, + -0.035368662327528, + 0.02440628781914711, + 0.0050551011227071285, + 0.013893858529627323, + 0.012993961572647095, + -0.02598792314529419, + 0.0012620709603652358, + -0.011671386659145355, + -0.001498975558206439, + 0.015366416424512863, + 0.03195996582508087, + -0.0022633762564510107, + -0.02251105010509491, + -0.023015538230538368, + 0.029151195660233498, + -0.011916812509298325, + -0.03877736255526543, + 0.012346308678388596, + -0.00036771345185115933, + 0.03438695892691612, + 0.005760701838880777, + 0.01581636443734169, + 0.020547639578580856, + 0.04150432348251343, + 0.0065958332270383835, + 0.023397311568260193, + -0.02496531419456005, + 0.03291440010070801, + 0.01880238577723503, + -0.04982154816389084, + 0.0096398014575243, + -0.012632640078663826, + 0.015393686480820179, + 0.0002122980513377115, + 0.003178612096235156, + 0.032314468175172806, + 0.026601489633321762, + -0.03465965390205383, + 0.012700813822448254, + -0.009612532332539558, + -0.006456076633185148, + 0.0003293655754532665, + -0.012789439409971237, + -0.0067696766927838326, + 0.012373578734695911, + -0.0034785775933414698, + 0.0021236196625977755, + 0.029669318348169327, + 0.0021236196625977755, + 0.01220996119081974, + 0.0027457072865217924, + 0.008549017831683159, + -0.0013694450026378036, + -0.008501295931637287, + -0.02229289337992668, + -0.030160171911120415, + 0.0013225753791630268, + -0.002292350400239229, + 0.0032229251228272915, + -0.015911808237433434, + 0.03174180909991264, + -0.0009552880073897541, + -0.022115640342235565, + -0.004012038931250572, + 0.028305839747190475, + 0.011200985871255398, + 0.05077598616480827, + -0.028360377997159958, + -0.014002936892211437, + -0.021052127704024315, + -0.012469022534787655, + 0.018066106364130974, + -0.001389897195622325, + -0.01690714806318283, + -0.014466519467532635, + -0.0004878701001871377, + -0.027419576421380043, + -0.019988613203167915, + -0.003534821094945073, + 0.005975449923425913, + -0.036841221153736115, + 0.015993617475032806, + -0.004056352190673351, + 0.021638423204421997, + 0.0028837595600634813, + -0.011310064233839512, + 0.018884195014834404, + -0.006698094308376312, + -0.035777706652879715, + 0.046276502311229706, + 0.009851140901446342, + 0.0031581600196659565, + -0.023547295480966568, + -0.0026468550786376, + -0.006977607496082783, + 0.016784435138106346, + 0.009619349613785744, + 0.022061102092266083, + 0.01581636443734169, + -0.013171214610338211, + 0.010907838121056557, + -0.02544253133237362, + -0.016511740162968636, + 0.005208492744714022, + 0.009598896838724613, + 0.003913186956197023, + -0.008603557012975216, + -0.012387213297188282, + 0.006292459089308977, + 0.005273257847875357, + 0.0007895400049164891, + -0.015311877243220806, + -0.017507079988718033, + 0.012953056953847408, + -0.002145776292309165, + -0.023683642968535423, + -0.018720576539635658, + -0.002483237534761429, + -0.015979982912540436, + -0.012353125959634781, + 0.01795702800154686, + 0.027201419696211815, + 0.023165520280599594, + 0.006439032964408398, + 0.007983174175024033, + -0.018134281039237976, + 0.00965343602001667, + -0.0073218862526118755, + 0.00017096757073886693, + 0.010826028883457184, + 0.025619784370064735, + -0.009448914788663387, + -0.025865210220217705, + -0.008773991838097572, + 0.015311877243220806, + 0.016252677887678146, + -0.004015447571873665, + -0.004029082600027323, + -0.0062754154205322266, + -0.02759682945907116, + 0.006268598139286041, + -0.03836831822991371, + 0.006084528286010027, + -0.02281101606786251, + 0.015257338061928749, + -0.005198266357183456, + 0.029369354248046875, + 0.005239170975983143, + 0.023751817643642426, + -0.007717295084148645, + -0.02309734746813774, + -0.022047467529773712, + -0.007580947130918503, + 0.0012032708618789911, + -0.014043841511011124, + 0.05448465049266815, + -0.00396772613748908, + -0.014711946249008179, + -0.043031420558691025, + 0.0006842963630333543, + 0.01985226571559906, + -0.0004610265896189958, + 0.01907508075237274, + -0.015448225662112236, + 0.02604246325790882, + 0.014411980286240578, + -0.0004882961511611938, + -0.01046470645815134, + 0.001014940207824111, + 0.028905769810080528, + 0.00844675675034523, + -0.0072673470713198185, + -0.013777962885797024, + -0.01433017197996378, + -0.02226562425494194, + -0.010921472683548927, + -0.014821024611592293, + -0.009626166895031929, + 0.03637763857841492, + 0.020506735891103745, + -0.007840008474886417, + 0.005794788710772991, + 0.0006165484664961696, + -0.01902054250240326, + 0.035832248628139496, + -0.0195795688778162, + 0.0026741246692836285, + 0.03163272887468338, + -0.030487406998872757, + -0.0034478993620723486, + -0.013907493092119694, + 0.027774082496762276, + -0.03757750242948532, + -0.01953866519033909, + 0.0048369443975389, + -0.04990335926413536, + -0.02572886273264885, + 0.006479937583208084, + -0.0004286439507268369, + 0.008644461631774902, + 0.024174494668841362, + 0.010914655402302742, + -0.011221437714993954, + 0.008228600025177002, + 0.007778652012348175, + -0.00882853101938963, + -0.010539698414504528, + 0.012673543766140938, + -0.02253831923007965, + -0.00025394809199497104, + -0.029123926535248756, + 0.0024014287628233433, + -0.05333932861685753, + -0.031278226524591446, + -0.013477996923029423, + 0.01825699396431446, + 0.009707975201308727, + -0.02174750156700611, + -0.008058165200054646, + 0.043276846408843994, + 0.019511394202709198, + 0.0037427518982440233, + -0.011010099202394485, + 0.014698311686515808, + -0.0007912443252280354, + 0.0211748406291008, + 0.023192789405584335, + -0.006868529133498669, + -0.01717984490096569, + -0.010444254614412785, + 0.014957373030483723, + -0.0214748065918684, + 0.011480499058961868, + 0.013068953529000282, + 0.01128279510885477, + 0.0033916558604687452, + -0.01326665747910738, + 0.020165864378213882, + -0.018379706889390945, + -0.01486192923039198, + -0.005419831722974777, + -0.05522092804312706, + 0.007117364089936018, + 0.025783400982618332, + -0.010362446308135986, + 0.014561963267624378, + 0.008705818094313145, + 0.007233259733766317, + 0.013014414347708225, + -0.02120210975408554, + 0.01712530478835106, + 0.0107374032959342, + 0.0014896015636622906, + 0.015243703499436378, + -0.016020886600017548, + -0.022156545892357826, + -0.01193044800311327, + 0.0007720703724771738, + 0.00555617967620492, + -0.022088371217250824, + 0.0030235163867473602, + -0.005143727175891399, + 0.011569125577807426, + -0.014548328705132008, + -0.0012612188002094626, + -0.022102005779743195, + -0.002960455371066928, + 0.016157234087586403, + -0.0092580271884799, + 0.0001491305883973837, + -7.62163836043328e-5, + -0.009333019144833088, + 0.05033967271447182, + 0.00884898379445076, + -0.009026235900819302, + -0.005314162466675043, + -0.0006877050618641078, + 6.220876093721017e-5, + 0.010014758445322514, + 0.007260529324412346, + 0.0066605983301997185, + -0.010635142214596272, + -0.005740249529480934, + -0.017547983676195145, + 0.007096911780536175, + 0.032559897750616074, + -0.015639113262295723, + 0.008276321925222874, + 0.002288941526785493, + 0.015952711924910545, + -0.01903417706489563, + 0.013062136247754097, + -0.01205997820943594, + -0.004884666297584772, + -0.0011206099297851324, + 0.001304679666645825, + -0.01582999899983406, + -0.0020094283390790224, + -0.002793429186567664, + -0.021038491278886795, + -0.00806498248130083, + 0.012878065928816795, + 0.03026925027370453, + -0.008944426663219929, + 0.010976011864840984, + 0.016539009287953377, + -0.0024747157003730536, + 0.050530560314655304, + -0.006759450770914555, + -0.005300527438521385, + -0.00462901359423995, + -0.016198139637708664, + 0.006810581311583519, + -0.01959320344030857, + 0.0029570467304438353, + -0.01449378952383995, + 0.005031240172684193, + 0.005266440566629171, + 0.0010575489141047, + -0.002295759040862322, + -0.01610269583761692, + -0.017616158351302147, + -0.005457327701151371, + 0.03591405600309372, + -0.005907275713980198, + 0.017220748588442802, + -0.015080085955560207, + 0.015461860224604607, + -0.003463238477706909, + -0.006466302555054426, + -0.04529479518532753, + 0.005876597482711077, + 0.01166456937789917, + -0.002493463456630707, + -0.010341993533074856, + -0.026124272495508194, + -0.009564810432493687, + 0.014371076598763466, + 0.0072128078900277615, + -0.026669664308428764, + 0.01585726998746395, + 0.020561274141073227, + 0.009155766107141972, + 0.01449378952383995, + -0.010239732451736927, + 0.005740249529480934, + 0.005205083638429642, + -0.004871031269431114, + 0.0023963155690580606, + 0.0038211520295590162, + 0.022442875429987907, + -0.034768734127283096, + -0.013764327391982079, + 0.005862962920218706, + 0.003401882015168667, + 0.0010848185047507286, + 0.0007661051931791008, + 0.007737747393548489, + -0.007778652012348175, + 0.000973183661699295, + 0.007826373912394047, + 0.0012970101088285446, + -0.007887730374932289, + 0.036595795303583145, + 0.0297511275857687, + 0.00843312218785286, + -0.023260964080691338, + -0.030132902786135674, + -0.019702281802892685, + 0.00750595610588789, + -0.012946239672601223, + -0.0030064727179706097, + 0.0006174006848596036, + 0.009680706076323986, + 0.006425398401916027, + 0.0019531846046447754, + 0.012012256309390068, + -0.01794339343905449, + 0.006432215683162212, + -0.010812394320964813, + -0.012237230315804482, + -0.022142911329865456, + 0.01259173545986414, + -0.00869900081306696, + -0.03831377997994423, + -0.017834315076470375, + 0.010403349995613098, + -0.029860205948352814, + -0.018638767302036285, + -0.005443692672997713, + 0.022620128467679024, + -0.0070355553179979324, + -0.02947843261063099, + 0.014425615780055523, + 0.019115986302495003, + 0.024215400218963623, + -0.012421300634741783, + 0.017561618238687515, + -0.002822403097525239, + -0.026383332908153534, + 0.006459485273808241, + 0.011555491015315056, + -0.005958406254649162, + -0.006077711004763842, + -0.03302348032593727, + 0.007669573649764061, + 0.007124181371182203, + -0.006254963111132383, + 0.01543459016829729, + 0.024515366181731224, + -0.0014972711214795709, + -0.006357224192470312, + -0.01741163618862629, + -0.01151458639651537, + 0.011719108559191227, + -0.005845919251441956, + -0.014398345723748207, + 0.00912849698215723, + -0.009442097507417202, + 0.006009536795318127, + 0.013334832154214382, + 0.0030473771039396524, + 0.009987489320337772, + -0.004155204631388187, + 0.005627762526273727, + -0.016811704263091087, + 0.004407448228448629, + 0.0028752379585057497, + 0.019770456477999687, + -0.01488919835537672, + -0.006036806385964155, + -0.03315982595086098, + 0.05118503049015999, + -0.013075770810246468, + -0.0061015719547867775, + -0.016743531450629234, + 0.00871263537555933, + 0.0029996554367244244, + -0.0023247329518198967, + -0.06795582920312881, + -0.021093031391501427, + 0.022674668580293655, + -0.0055595887824893, + -0.011194168590009212, + -0.012714448384940624, + -0.0279240645468235, + -0.004646057263016701, + 0.006261780858039856, + 0.007676390931010246, + 0.011023733764886856, + 0.030651023611426353, + -0.01288488321006298, + -0.0020810109563171864, + -0.02199292741715908, + -0.011766830459237099, + -0.01313712727278471, + 0.03648671880364418, + -0.000495965767186135, + -0.01902054250240326, + -0.010682864114642143, + 0.0063435896299779415, + 0.0043733613565564156, + 0.022456511855125427, + -0.0005479484098032117, + -0.030132902786135674, + 0.00026353506837040186, + 0.002658785553649068, + 0.0011623664759099483, + 0.019375046715140343, + -0.02227925881743431, + 0.013655249029397964, + -0.010226097889244556, + -0.011405508033931255, + 0.011603212915360928, + 0.03242354840040207, + -0.029832936823368073, + 0.016470834612846375, + -0.011044185608625412, + -0.012407665140926838, + 0.017016226425766945, + 0.0060436236672103405, + 0.0014955668011680245, + 0.010007941164076328, + 0.034441497176885605, + -0.02067035250365734, + -0.012094065546989441, + -0.007233259733766317, + -0.027528654783964157, + -0.00012942405010107905, + -0.03086918033659458, + -0.03002382442355156, + -0.009605715051293373, + -0.018311532214283943, + 0.01719347946345806, + -0.025142565369606018, + 0.016170868650078773, + 0.018434245139360428, + 0.002865011803805828, + 0.0023059851955622435, + -0.00448243971914053, + 0.03032378852367401, + -0.01486192923039198, + 0.008139974437654018, + -0.0024389242753386497, + 0.026492411270737648, + 0.006421989295631647, + 0.010110202245414257, + -0.012843978591263294, + -0.005876597482711077, + -0.018679672852158546, + 0.0025940202176570892, + -0.024201765656471252, + 0.011051002889871597, + -0.019511394202709198, + -0.035286854952573776, + 0.003766612848266959, + -0.01434380654245615, + -0.00011664142948575318, + 0.03455057740211487, + 0.006861711852252483, + 0.008910340256989002, + 0.00012377838720567524, + -0.013907493092119694, + 0.005017605610191822, + -0.0104715246707201, + -0.00831722654402256, + -0.006681050639599562, + -0.0058697802014648914, + 0.02035675197839737, + 0.01769796758890152, + 0.011405508033931255, + -0.008235417306423187, + -0.013559806160628796, + -0.00803771335631609, + 0.020479464903473854, + -0.004410856869071722, + -0.05096687376499176, + -0.021024856716394424, + -0.0063981288112699986, + 0.03133276477456093, + 0.018611498177051544, + -0.0009237574995495379, + -0.0009288705768994987, + 0.037113919854164124, + -0.002416767878457904, + -0.0002682220365386456, + 0.014221093617379665, + 0.007649121340364218, + 0.009592079557478428, + -0.010941924527287483, + -0.04292234033346176, + -0.0029706815257668495, + -0.005423240829259157, + 0.04027719050645828, + -0.021365728229284286, + 0.005314162466675043, + 0.015652747824788094, + 0.006350406911224127, + 0.0009194966405630112, + 0.021897483617067337, + -0.02542889676988125, + -0.014030206017196178, + 0.0048233093693852425, + 0.002367341658100486, + 0.006817398592829704, + -0.003228038316592574, + 0.01610269583761692, + 0.040304459631443024, + 0.015325511805713177, + 0.001619984395802021, + -0.005699345376342535, + -0.035286854952573776, + -0.020765796303749084, + 0.0020026108250021935, + 0.0031803164165467024, + -0.006496980786323547, + -0.015666382387280464, + 0.024297209456562996, + 0.022170180454850197, + -0.016293583437800407, + -0.018584229052066803, + -0.01900690793991089, + 5.688266901415773e-5, + 0.011835004203021526, + -0.023274598643183708, + 0.01313712727278471, + -0.016279948875308037, + 0.010416985489428043, + -0.011725925840437412, + 0.01985226571559906, + 0.019729550927877426, + -0.0193477775901556, + 0.0014896015636622906, + 0.009585262276232243, + -0.013716606423258781, + -0.011589577421545982, + -0.01248947437852621, + 0.010089750401675701, + 0.007567312568426132, + -0.009823871776461601, + 0.0023281415924429893, + 0.002791724633425474, + 0.015516399405896664, + -0.02012496069073677, + 0.013675701804459095, + 0.005464144982397556, + -0.0043835872784256935, + 0.015598207712173462, + -0.027174150571227074, + -0.001522836391814053, + -0.037141188979148865, + -0.010014758445322514, + -0.008910340256989002, + 0.01368251908570528, + -0.020520370453596115, + 0.014398345723748207, + -0.010785124264657497, + 0.023929068818688393, + -0.0015339147066697478, + 0.013539353385567665, + -0.0005875745555385947, + -0.020820334553718567, + -0.020002247765660286, + 0.011698655784130096, + -0.004676735494285822, + -0.017302557826042175, + -0.015134625136852264, + 0.01540732104331255, + -0.0107374032959342, + 0.020752161741256714, + 0.0093739228323102, + -0.01711167022585869, + -0.02092941291630268, + -0.01435744110494852, + 0.003620038740336895, + -0.009346653707325459, + -0.016157234087586403, + 0.03059648536145687, + -0.02005678601562977, + -0.021256649866700172, + 0.0036779865622520447, + -0.00833086110651493, + -0.006319728679955006, + -0.017043497413396835, + 0.007717295084148645, + -0.009619349613785744, + 0.05017605423927307, + -0.018297897651791573, + 0.01664808765053749, + -0.024338113144040108, + 0.0030422641430050135, + -0.012707631103694439, + -0.013880223967134953, + -0.034468766301870346, + -0.008235417306423187, + -0.032532624900341034, + 0.006248145829886198, + -0.01449378952383995, + 0.007812738418579102, + -0.004925570450723171, + 0.01767069660127163, + 0.0006067484500817955, + 0.00771047780290246, + -0.02545616589486599, + 0.007117364089936018, + 0.020179500803351402, + 0.0035552734043449163, + 0.002556524472311139, + -0.011425959877669811, + 0.004352909047156572, + -0.0211748406291008, + 0.04324957728385925, + 0.013662067241966724, + -0.001637879991903901, + 0.0021304371766746044, + 0.0072673470713198185, + -0.0043188221752643585, + 0.012169056572020054, + 0.03114187717437744, + -0.03515050560235977, + 0.0035723168402910233, + -0.0035075515042990446, + -0.0021236196625977755, + -0.01848878525197506, + -0.017098035663366318, + -0.017588889226317406, + 0.027951333671808243, + 0.004335865378379822, + -0.004257465247064829, + 0.0010788533836603165, + 0.009285297244787216, + 0.017575252801179886, + 0.0035620906855911016, + -0.009496636688709259, + -0.0032109946478158236, + -0.0018509237561374903, + 0.017507079988718033, + -0.021365728229284286, + 0.024297209456562996, + 0.003923412878066301, + -0.013655249029397964, + 0.0022446285001933575, + -0.01765706203877926, + -0.006790129002183676, + -0.04215879365801811, + 0.00818087812513113, + -0.002350298222154379, + -0.016961688175797462, + -0.045758381485939026, + -0.005586858373135328, + 0.009148948825895786, + -0.008944426663219929, + 0.010901020839810371, + -0.03234173730015755, + -0.023765452206134796, + 0.010907838121056557, + -0.00024393505009356886, + -0.04635830968618393, + -0.0035484558902680874, + 0.005856145638972521, + 0.002237811218947172, + -0.016988957300782204, + -0.010226097889244556, + 0.005044875200837851, + -0.011562308296561241, + 0.0014674450503662229, + -0.008883070200681686, + 0.0043290480971336365, + 0.013273474760353565, + -0.001027722842991352, + -0.02866034395992756, + 0.011610030196607113, + -0.012775804847478867, + 0.00771047780290246, + -0.01657991297543049, + -0.013989302329719067, + 0.0013643319252878428, + 0.00684125954285264, + -0.007376425433903933, + 0.010232915170490742, + -0.008139974437654018, + -0.03670487552881241, + -0.0005300527554936707, + 0.008105887100100517, + -0.017302557826042175, + 0.0043290480971336365, + 0.011173716746270657, + 0.0010958968196064234, + 0.005597084295004606, + 0.0010652185883373022, + -0.0018117236904799938, + 0.004226787015795708, + -0.009980672039091587, + 0.003807517234236002, + -0.0013933058362454176, + -0.004410856869071722, + -0.014030206017196178, + 0.08268141001462936, + -0.004080213140696287, + -0.007185538299381733, + -0.001274853595532477, + 0.004005221650004387, + -0.004574474412947893, + -0.01689351350069046, + 0.034414228051900864, + 0.005750475917011499, + 0.00281558558344841, + -0.002972385846078396, + -0.03678668290376663, + -0.000401800440158695, + 0.017561618238687515, + -0.010260185226798058, + 0.003086577169597149, + 0.0107033159583807, + 0.03373248875141144, + -0.010294271633028984, + 0.025606149807572365, + -0.011841821484267712, + 0.0004917048499919474, + 0.0034888037480413914, + 0.018584229052066803, + -0.01261900458484888, + -0.012680361047387123, + 0.005903867073357105, + 0.02549707144498825, + 0.012550830841064453, + 0.018393341451883316, + -0.0064628939144313335, + 0.01880238577723503, + -0.015311877243220806, + 0.004397222306579351, + -0.01018519327044487, + -0.008855801075696945, + 0.0104374373331666, + 0.006882163695991039, + 0.006977607496082783, + 0.008821713738143444, + -0.00806498248130083, + -0.01154867373406887, + 0.019702281802892685, + 0.020970318466424942, + -0.010014758445322514, + -0.013914310373365879, + 0.0012765579158440232, + -0.010785124264657497, + -0.00035450473660603166, + 0.02443355694413185, + -0.006364041473716497, + -0.007253712043166161, + -0.002616176614537835, + -0.0002933611976914108, + 0.006203832570463419, + -0.010246549732983112, + 0.017588889226317406, + -0.018338803201913834, + -0.006456076633185148, + -0.003026925027370453, + -0.008242234587669373, + 0.00023669155780225992, + -0.019770456477999687, + -0.02249741554260254, + 0.011269159615039825, + -0.010260185226798058, + 0.0022753067314624786, + -0.019415950402617455, + 0.008324043825268745, + -0.005665258038789034, + -0.005941363051533699, + 0.015598207712173462, + 0.024051781743764877, + -0.02388816513121128, + -0.01926596835255623, + 0.032314468175172806, + 0.00630950229242444, + 0.010532881133258343, + 0.005389153491705656, + 0.003637082176283002, + 0.009264844469726086, + -0.0010362445609644055, + -0.009912497363984585, + -0.006827624514698982, + 0.0018764890264719725, + -0.005644806195050478, + 0.0024730113800615072, + -0.017861584201455116, + -0.003401882015168667, + -0.028633074834942818, + -0.009551175870001316, + 0.014043841511011124, + -0.004857396706938744, + -0.02060217782855034, + 0.014998276717960835, + -0.0012492883251979947, + 0.00771047780290246, + -0.02252468466758728, + 0.021924754604697227, + 0.0026673071552067995, + 0.003413812257349491, + -0.002568454947322607, + 0.010635142214596272, + 0.002091237111017108, + -0.002188384998589754, + -0.012380396015942097, + 0.022988269105553627, + 0.011200985871255398, + -0.020724892616271973, + 0.016484469175338745, + 0.0094080101698637, + 0.006844668183475733, + -0.01164411660283804, + -0.007805921602994204, + -0.02252468466758728, + -0.006207241676747799, + 0.015448225662112236, + -0.006159519776701927, + -0.0015782277332618833, + -0.024569904431700706, + -0.020711256191134453, + -0.015993617475032806, + 0.002259967615827918, + -0.008378583006560802, + -0.015093720518052578, + -0.012993961572647095, + -0.019661378115415573, + -0.010648776777088642, + -0.004305187147110701, + 0.009551175870001316, + 0.018434245139360428, + 0.008453574031591415, + 0.014221093617379665, + -0.011173716746270657, + -0.0015901582082733512, + 0.011085090227425098, + 0.009135314263403416, + 0.01660718396306038, + 0.019115986302495003, + -0.012223595753312111, + 0.006244737189263105, + -0.0092580271884799, + 0.0010430619586259127, + 0.014684677124023438, + 0.01741163618862629, + 0.016034521162509918, + 0.001184522989206016, + -0.014602867886424065, + 0.025374358519911766, + -0.008719452656805515, + 0.02013859525322914, + -0.024883504956960678, + -0.003371203551068902, + -0.015966348350048065, + 0.004550613462924957, + -0.002062263200059533, + -0.015202798880636692, + 0.004277917556464672, + 0.011323698796331882, + 0.004956248681992292, + 0.004669918213039637, + -0.018870558589696884, + -0.0048812576569616795, + -0.008951244875788689, + -0.011760012246668339, + 0.004397222306579351, + 0.010641959495842457, + 0.03136003389954567, + 0.02602882869541645, + 0.011078272946178913, + -0.0017691149841994047, + -0.005730023607611656, + -0.00211680238135159, + -0.030678294599056244, + -0.010607872158288956, + -0.016988957300782204, + 0.004332456737756729, + 0.01113281212747097, + -0.017902489751577377, + 0.014984642155468464, + 0.015475494787096977, + -0.027951333671808243, + 0.019156889989972115, + -0.00803771335631609, + 0.01419382356107235, + -0.012768987566232681, + 0.006950337905436754, + -0.007846825756132603, + -0.004499482922255993, + 0.02091577835381031, + -0.02304280735552311, + 0.012305404990911484, + -0.03160545974969864, + 0.004683552775532007, + -0.019743187353014946, + 0.005283483769744635, + 0.020261308178305626, + 0.03348706290125847, + -0.0008854096522554755, + 0.005153953563421965, + -0.01771160215139389, + 0.009496636688709259, + 0.0035518647637218237, + 0.00462901359423995, + 0.029832936823368073, + -0.023165520280599594, + -0.008842165581882, + -0.009626166895031929, + 0.004127935040742159, + 0.029123926535248756, + -0.04153159260749817, + -0.026615124195814133, + 0.014575597830116749, + -0.0022582632955163717, + -0.03106006793677807, + 0.03455057740211487, + 0.008208148181438446, + 0.006565154995769262, + 0.009428462013602257, + -0.021515710279345512, + -0.0018645585514605045, + 0.016457200050354004, + 0.0185160543769598, + -0.010498793795704842, + -0.00886261835694313, + 0.0065412940457463264, + -0.00966025423258543, + 0.015734555199742317, + 0.005443692672997713, + -0.01207361277192831, + 0.043004151433706284, + -0.0008031748002395034, + 0.004598335362970829, + 0.022865554317831993, + -0.0014060884714126587, + 0.02225198969244957, + 0.023997243493795395, + -0.001995793543756008, + 0.002459376584738493, + -0.018038837239146233, + -0.005644806195050478, + 0.021652057766914368, + 0.004502892028540373, + 0.005610718857496977, + 0.007512773387134075, + -0.010812394320964813, + 0.007928634993731976, + 0.003650716971606016, + -0.010860116221010685, + -2.7722311642719433e-5, + -0.012768987566232681, + -0.02387453056871891, + -0.023997243493795395, + 0.020165864378213882, + 0.006456076633185148, + 0.0022497414611279964, + -0.0007933747838251293, + -0.00744459917768836, + -0.01302123162895441, + 0.0065310681238770485, + -0.00896487943828106, + 0.012932605110108852, + 0.017507079988718033, + 0.0032433774322271347, + 0.02249741554260254, + 0.007492321077734232, + -0.010007941164076328, + 0.0050107878632843494, + -0.004806266166269779, + 0.021243013441562653, + 0.012380396015942097, + 0.005856145638972521, + 0.01555730402469635, + -0.0013685927260667086, + -0.014698311686515808, + 0.0006561746122315526, + 0.023683642968535423, + -0.006125432904809713, + 0.006360632833093405, + -0.007192355580627918, + -0.017847949638962746, + 0.0013208709424361587, + 0.0004303483001422137, + 0.001612314721569419, + -0.005024422891438007, + -0.02441992238163948, + -0.01581636443734169, + 0.012100882828235626, + 0.0033882472198456526, + -0.005910684820264578, + -0.004444943740963936, + -0.01850241981446743, + 0.009626166895031929, + 0.0005151396617293358, + 0.00977614987641573, + -0.009469366632401943, + 0.01325302291661501, + 0.01848878525197506, + 0.021856579929590225, + 0.02142026647925377, + 0.009878410957753658, + -0.022579224780201912, + -0.0035382299683988094, + -0.004322230815887451, + 0.005798197351396084, + 0.015516399405896664, + 0.01287124864757061, + -0.007274164352566004, + -0.0041313436813652515, + 0.002483237534761429, + -0.017779774963855743, + -0.0004133048059884459, + 0.0007528964779339731, + -0.014043841511011124, + 0.0012160534970462322, + -0.008903522975742817, + 0.015311877243220806, + 0.029969284310936928, + -0.005457327701151371, + 0.006885572802275419, + -0.011078272946178913, + 0.012346308678388596, + -0.009442097507417202, + 0.016675356775522232, + 0.004267691634595394, + 0.01797066256403923, + 0.013075770810246468, + 0.0028002464678138494, + 0.0024951680097728968, + -0.026110636070370674, + 0.009203488007187843, + -0.014589233323931694, + -0.031523652374744415, + -0.007083277218043804, + -0.003984769340604544, + 0.0006480789743363857, + 0.004455170128494501, + -0.0014452885370701551, + -0.00038944388506934047, + 0.011098724789917469, + -0.020779430866241455, + -0.014766485430300236, + -0.004513117950409651, + -0.017261654138565063, + 0.015393686480820179, + 0.035259585827589035, + -0.00217475020326674, + -0.008133156225085258, + 0.01045107189565897, + 0.018434245139360428, + -0.00030507860356010497, + 0.005395971238613129, + 0.004322230815887451, + -0.004734683316200972, + -0.0033694992307573557, + -0.033350713551044464, + 0.0037734301295131445, + -0.005917502101510763, + -0.00017426974955014884, + 0.009346653707325459, + -0.02518347091972828, + 0.024542635306715965, + -0.01799793168902397, + 0.005562997423112392, + -0.0011529925977811217, + 1.2662785593420267e-5, + 0.0016285061137750745, + 0.028578534722328186, + -0.0028956900350749493, + -0.005801606457680464, + 0.00043588742846623063, + -0.03405972197651863, + -0.014166554436087608, + -0.009060323238372803, + -0.006909433752298355, + 0.0006399832782335579, + 0.0005722353816963732, + -0.0012731491588056087, + 0.0013183144619688392, + 0.014998276717960835, + 0.04155886173248291, + 0.009360288269817829, + -0.013512084260582924, + -0.011500951834022999, + 0.024569904431700706, + 0.002416767878457904, + -0.002738890005275607, + 0.023124616593122482, + -0.018420610576868057, + -0.011875908821821213, + -0.006122023798525333, + 0.015107355080544949, + 0.02651968039572239, + -0.012953056953847408, + 0.008917157538235188, + -0.007076459936797619, + 0.0027150290552526712, + 0.03425060957670212, + 0.012530378997325897, + -0.006701502948999405, + 0.00630950229242444, + 0.010744220577180386, + 0.014793755486607552, + 0.03144184127449989, + -0.00334563828073442, + -0.029014848172664642, + -0.0003123220812994987, + 0.007955904118716717, + 0.02281101606786251, + -0.025033487007021904, + 0.009203488007187843, + 0.003124072914943099, + -0.002029880415648222, + 0.0096398014575243, + 0.012087247334420681, + 0.0059140934608876705, + 0.013662067241966724, + -0.01543459016829729, + 0.02311098203063011, + 0.010580603033304214, + 0.027487751096487045, + 0.005702754016965628, + 0.020820334553718567, + 0.00395068246871233, + -0.004056352190673351, + -0.009305749088525772, + 0.019415950402617455, + 0.003371203551068902, + -0.013171214610338211, + 0.009046687744557858, + -0.0077513824217021465, + -0.012216778472065926, + -0.01141232531517744, + 0.004980109632015228, + -0.01930687204003334, + -0.002409950364381075, + 0.006728772539645433, + -0.0092580271884799, + 0.017561618238687515, + 0.0017128713661804795, + -0.010901020839810371, + -0.012653091922402382, + 0.013927945867180824, + -0.0002818568318616599, + -0.004659691825509071, + 0.011814551427960396, + -0.004127935040742159, + 0.012407665140926838, + -0.003159864339977503, + 0.00047210484626702964, + -0.009503453969955444, + 0.011971351690590382, + 0.02410632185637951, + 0.00597204128280282, + -0.012128151953220367, + -0.02491077408194542, + 0.003770021488890052, + -0.015093720518052578, + 0.017098035663366318, + -0.01979772560298443, + -0.0012339492095634341, + -0.004151795990765095, + 0.006793537642806768, + 0.02413359098136425, + -0.002297463361173868, + -0.004417674150317907, + 0.021652057766914368, + 0.01687987893819809, + 0.007853643037378788, + 0.014589233323931694, + 0.010205646045506, + 0.024283573031425476, + 0.030405597761273384, + -0.018120646476745605, + 0.0022020197939127684, + 0.005409605801105499, + -0.00939437560737133, + 0.01638902723789215, + -0.003715482307597995, + -0.00717872055247426, + -0.003412107937037945, + 0.0022241761907935143, + -0.013873406685888767, + 0.007908182218670845, + 0.007130999118089676, + -0.01233949139714241, + -0.00642880704253912, + 0.023929068818688393, + 0.0037904735654592514, + 0.02360183373093605, + 0.010280637070536613, + -0.009973853826522827, + 0.009830689057707787, + 0.0005684006027877331, + -0.0007967834826558828, + -0.005730023607611656, + 0.005464144982397556, + 0.012918970547616482, + 0.0036234473809599876, + -0.011882726103067398, + 0.002103167586028576, + -0.0021832718048244715, + -0.002230993704870343, + 0.01636175625026226, + -0.0002484089636709541, + 0.011705473065376282, + -0.012775804847478867, + 0.007805921602994204, + -0.0013677405659109354, + 0.0087262699380517, + 0.020547639578580856, + -0.005723206326365471, + -0.012803074903786182, + 0.019675012677907944, + -0.011139629408717155, + -0.0007754790713079274, + 0.013164396397769451, + -0.002519028726965189, + 0.03291440010070801, + 0.006537885405123234, + 0.001154696918092668, + -0.002744002966210246, + -0.0008474878850392997, + 0.015584573149681091, + 0.004144978243857622, + -0.013334832154214382, + 0.010485159233212471, + -0.0001545632112538442, + 0.02144753560423851, + -0.0016063496004790068, + 0.01018519327044487, + -0.004608561284840107, + -0.00818087812513113, + 0.006415172014385462, + 0.011187351308763027, + 0.0034427864011377096, + -0.001927619450725615, + -0.0003760221297852695, + 0.03375975787639618, + 0.008405852131545544, + 0.0017265061615034938, + -0.005266440566629171, + 0.018093375489115715, + -0.022592859342694283, + -0.016184505075216293, + -0.00858310516923666, + -0.002484941855072975, + -0.0011589577188715339, + -0.005852736532688141, + 0.007655938621610403, + -0.015298242680728436, + 0.010062480345368385, + 0.0450766384601593, + 0.02090214379131794, + 0.022320162504911423, + -0.011991804465651512, + 6.460550503106788e-5, + -0.005153953563421965, + 0.008194513618946075, + 0.01137823797762394, + -0.002931481460109353, + -0.024010878056287766, + 0.014766485430300236, + 0.0016148713184520602, + -0.019225064665079117, + 0.0004537830827757716, + -5.1849510782631114e-5, + 0.004018856678158045, + 0.0018696716288104653, + 0.005880006123334169, + -0.020588543266057968, + -0.0038859171327203512, + -0.025837941095232964, + 0.005862962920218706, + 0.012291769497096539, + -0.006817398592829704, + -0.011991804465651512, + -0.013205301016569138, + 0.008453574031591415, + -0.011705473065376282, + -0.010491976514458656, + -0.0023792721331119537, + -0.04913980886340141, + 0.004840353038161993, + 0.0021730458829551935, + 0.019443221390247345, + 0.025387993082404137, + -0.0011154968524351716, + 0.010123836807906628, + -0.026165176182985306, + 0.017329826951026917, + -0.01501191221177578, + 0.002955342410132289, + 0.011466864496469498, + 0.006012945435941219, + -0.016143599525094032, + -0.01578909531235695, + 0.0065276590175926685, + -0.02410632185637951, + -0.037986546754837036, + -0.00022433501726482064, + 0.009039870463311672, + 0.006773085333406925, + -0.0011555490782484412, + 0.0033746124245226383, + 0.00563117116689682, + 0.008139974437654018, + -0.030923720449209213, + -0.009421644732356071, + -0.025019852444529533, + -0.030432866886258125, + 0.014657407067716122, + -0.0006450963555835187, + 0.007683208212256432, + 0.0072128078900277615, + -0.017302557826042175, + 0.02195202372968197, + -0.019715916365385056, + 0.038450129330158234, + -0.013825684785842896, + 0.0033251862041652203, + 0.003159864339977503, + 0.0011913403868675232, + 0.01259173545986414, + -0.0031428206712007523, + -0.004564248491078615, + -0.020833970978856087, + 0.010778306983411312, + 0.005597084295004606, + -0.018284263089299202, + -0.012959875166416168, + 0.00557322334498167, + 0.005150544457137585, + -0.019375046715140343, + 0.015693651512265205, + -0.017779774963855743, + -0.01396203227341175, + -0.006306093651801348, + 0.00951027125120163, + -0.00669127656146884, + 0.011719108559191227, + -0.03520504757761955, + 0.0019020541803911328, + 0.004134752321988344, + 0.009435279294848442, + -0.02012496069073677, + 0.01449378952383995, + 0.007246894761919975, + -0.009612532332539558, + 0.020574908703565598, + -0.01006929762661457, + -0.0054300581105053425, + -0.011078272946178913, + 0.006817398592829704, + 0.004240422043949366, + -0.02737867273390293, + 0.002919550985097885, + -0.023506389930844307, + 0.03160545974969864, + -0.016825340688228607, + -0.020220404490828514, + -0.021583884954452515, + -0.012169056572020054, + -0.0008777400944381952, + -0.006636737380176783, + -0.015216433443129063, + 0.022974632680416107, + 0.007949086837470531, + -0.00047338311560451984, + -0.004485848359763622, + -0.007021920755505562, + -0.0026264027692377567, + -0.012278134934604168, + 0.005948180332779884, + 0.007949086837470531, + -0.008187695406377316, + -0.0198113601654768, + -0.009898862801492214, + 0.008801261894404888, + -0.024310844019055367, + 0.0006455224356614053, + 0.0007337225251831114, + -0.018297897651791573, + -0.018297897651791573, + -9.766722541826311e-6, + 0.007526407949626446, + 0.009476183913648129, + -0.017384367063641548, + -0.018352437764406204, + -0.002193497959524393, + -0.02381999045610428, + -0.0018424020381644368, + -0.03056921623647213, + -0.007955904118716717, + 0.02120210975408554, + 0.016716262325644493, + -0.022633763030171394, + -0.0036268560215830803, + -0.013662067241966724, + -0.007219625171273947, + -0.030241981148719788, + 0.0004071265284437686, + -0.013075770810246468, + -0.0038347868248820305, + 0.0018713759491220117, + -0.020506735891103745, + 0.019961344078183174, + -0.008549017831683159, + 0.020833970978856087, + -0.003940456546843052, + -0.010491976514458656, + 0.015502764843404293, + 0.008528565987944603, + -0.014166554436087608, + -0.008194513618946075, + -0.032532624900341034, + 0.027719542384147644, + -0.008112704381346703, + 0.008174060843884945, + 0.006241328548640013, + 0.004826718010008335, + -0.0007149747107177973, + -0.02576976642012596, + 0.005470962263643742, + 0.0107374032959342, + -0.01137823797762394, + -0.00516077084466815, + 0.014643772505223751, + -0.003432560246437788, + 0.018338803201913834, + 0.011719108559191227, + 0.005208492744714022, + -0.009060323238372803, + 0.0061765629798173904, + -0.02390179969370365, + -0.01587090454995632, + 0.005593675654381514, + -0.0005624353652819991, + 0.008289956487715244, + -0.0067696766927838326, + -0.009762515313923359, + -0.046767354011535645, + -0.020220404490828514, + 0.016143599525094032, + 0.0013685927260667086, + -0.018584229052066803, + 0.005041466094553471, + -0.011085090227425098, + -0.008439939469099045, + 0.015543668530881405, + -0.011316881515085697, + -0.015216433443129063, + 0.009694340638816357, + 0.007894547656178474, + 0.0008257573936134577, + -0.005730023607611656, + -0.003565499559044838, + -0.00829677376896143, + 0.01581636443734169, + 0.017057131975889206, + 0.012939422391355038, + 0.01799793168902397, + -0.006786720361560583, + 0.01355298887938261, + -0.008105887100100517, + 0.0185160543769598, + 0.0009450619108974934, + -0.01341664046049118, + -0.0096738887950778, + 0.013334832154214382, + 0.008896704763174057, + -0.020206769928336143, + 0.005222127307206392, + -0.007983174175024033, + -0.004884666297584772, + -0.009680706076323986, + 0.016975322738289833, + 0.012557648122310638, + -0.008719452656805515, + 0.009462549351155758, + 0.001655775704421103, + 0.015775460749864578, + -0.033377982676029205, + 0.013341649435460567, + -0.02733776904642582, + -5.371364386519417e-5, + 0.02737867273390293, + 0.006906024646013975, + 0.018366072326898575, + 0.0006519137532450259, + 0.00576411047950387, + -0.0017861584201455116, + -0.02146117016673088, + -0.019729550927877426, + 0.02980566769838333, + 0.004260874353349209, + 0.010757855139672756, + 0.005147135816514492, + -0.016784435138106346, + -0.006670824717730284, + 0.003712073666974902, + -0.004669918213039637, + 0.006435624323785305, + -0.014916468411684036, + -0.0198113601654768, + 0.022429240867495537, + -0.01502554677426815, + 0.0022446285001933575, + -0.0068378509022295475, + 0.009503453969955444, + 0.0053687016479671, + -0.0038347868248820305, + 0.004049534909427166, + 0.00576411047950387, + 0.015352781862020493, + 0.013791597448289394, + 0.02173386700451374, + -0.019361412152647972, + -0.004611970391124487, + 0.030514676123857498, + -0.023929068818688393, + -0.006800354924052954, + 0.004884666297584772, + 0.0028905770741403103, + -0.021815676242113113, + 0.002133845817297697, + -0.0032638295087963343, + -0.011425959877669811, + -0.0025906115770339966, + -0.017820680513978004, + -0.0015117581933736801, + 0.00951027125120163, + -0.0018833064241334796, + 0.005505049601197243, + -0.0030712380539625883, + -0.036868490278720856, + -0.023438217118382454, + -0.009203488007187843, + -0.00563117116689682, + -0.0036711692810058594, + 0.025674322620034218, + -0.03894098103046417, + -0.0006940963794477284, + 0.007840008474886417, + -0.0027116204146295786, + 0.012121334671974182, + 0.0011436186032369733, + 0.011998621746897697, + -0.002490054816007614, + -0.012850796803832054, + -0.022170180454850197, + 0.020833970978856087, + 0.00629586772993207, + 0.008821713738143444, + -0.01502554677426815, + 0.01487556379288435, + -0.028578534722328186, + 0.005842510610818863, + 0.0003973265120293945, + -0.012005439028143883, + 0.010812394320964813, + 0.005719797685742378, + 0.014289267361164093, + -0.0033746124245226383, + 0.014766485430300236, + -0.022429240867495537, + -0.0007733486709184945, + 0.005522092804312706, + -0.006534476764500141, + -0.006950337905436754, + -0.013164396397769451, + -0.004410856869071722, + -0.0025718635879456997, + 0.009121679700911045, + 0.008364948444068432, + 0.004035899881273508, + 0.016279948875308037, + -0.020070422440767288, + 0.009271661750972271, + -0.00047466138494201005, + -0.011453229933977127, + 0.006435624323785305, + 0.017820680513978004, + 0.010205646045506, + -0.009707975201308727, + 0.005150544457137585, + 0.024624444544315338, + -0.0024661938659846783, + 0.020234039053320885, + 0.0024372199550271034, + 0.0009552880073897541, + -0.00455743120983243, + 0.030187441036105156, + -0.0011683317134156823, + 0.001221166574396193, + -0.005849327892065048, + -0.00047210484626702964, + 0.0013276883400976658, + 0.005501640494912863, + -0.008351312950253487, + 0.0021730458829551935, + 0.01204634364694357, + -0.019647743552923203, + -0.009680706076323986, + -0.01713893935084343, + 0.008010443300008774, + -0.03234173730015755, + -0.009517088532447815, + -0.0020145413000136614, + 0.019115986302495003, + -0.011010099202394485, + -0.012653091922402382, + -0.00724007748067379, + -0.009203488007187843, + 0.006940111983567476, + -0.009264844469726086, + 0.0038825084920972586, + -0.017493445426225662, + -0.0003076351131312549, + -0.01152822095900774, + -0.018570594489574432, + 0.010232915170490742, + -0.017807045951485634, + 0.018297897651791573, + 0.002430402673780918, + -0.00617997208610177, + -0.029642049223184586, + 0.0024866461753845215, + 0.0025036896113306284, + -0.0096398014575243, + 0.022333797067403793, + -0.002237811218947172, + 0.009189853444695473, + -0.00345812551677227, + -0.009994306601583958, + -0.004257465247064829, + -0.00750595610588789, + -0.03997722640633583, + 0.008808079175651073, + -0.0030252207070589066, + 0.03133276477456093, + 0.0032109946478158236, + -0.0024491504300385714, + -0.021624788641929626, + -0.01111235935240984, + 0.01393476314842701, + -0.015161894261837006, + -0.0010618098312988877, + -0.003510960377752781, + 0.018597863614559174, + -0.0003193525189999491, + 0.01472558081150055, + 0.013307562097907066, + -0.0006664007087238133, + 0.03561409190297127, + 0.013743875548243523, + -0.005518684163689613, + -0.01608906127512455, + -0.009251209907233715, + -0.009585262276232243, + -0.004237013403326273, + -0.012121334671974182, + 0.010948741808533669, + -0.03174180909991264, + -0.0005905571742914617, + -0.000589278875850141, + 0.00897851400077343, + 0.015066451393067837, + 0.008658096194267273, + -0.0026911681052297354, + 0.00037325258017517626, + 0.0013515492901206017, + 0.007860460318624973, + 0.01771160215139389, + 0.017288923263549805, + 0.0063981288112699986, + -0.004267691634595394, + 0.008576287887990475, + -0.01686624437570572, + 0.012469022534787655, + -0.011003280989825726, + -0.012707631103694439, + 0.014561963267624378, + -0.003654125612229109, + 0.018052471801638603, + 0.003291099099442363, + 0.013450727798044682, + 0.0006084528286010027, + 0.012530378997325897, + -0.018993273377418518, + 0.002977498807013035, + -0.019620472565293312, + -0.010539698414504528, + 0.0035689081996679306, + -0.023165520280599594, + 0.007860460318624973, + 0.020534005016088486, + 0.028823960572481155, + 0.005157362204045057, + 0.003565499559044838, + 0.015966348350048065, + 0.025933384895324707, + -0.008910340256989002, + -0.010941924527287483, + 0.0004963918472640216, + -0.006142476107925177, + 0.008773991838097572, + 0.008242234587669373, + -0.028796691447496414, + 0.007942269556224346, + 0.0018747845897451043, + 0.0016148713184520602, + -0.03174180909991264, + 0.011821369640529156, + -0.011235073208808899, + 0.02166569232940674, + -0.001818541088141501, + 0.018120646476745605, + -0.026656027883291245, + 0.017861584201455116, + -0.0008964879089035094, + 0.012912153266370296, + -0.009530723094940186, + -0.004594926722347736, + 0.0035450472496449947, + 0.004724457394331694, + -0.004860805347561836, + -0.011957717128098011, + -0.0010762967867776752, + -0.018925098702311516, + 0.005505049601197243, + -0.003086577169597149, + 0.0059890844859182835, + -0.010682864114642143, + -0.0091080442070961, + -0.007587764877825975, + -0.011391873471438885, + 0.017807045951485634, + -0.004468804690986872, + 0.011828186921775341, + 0.002737185452133417, + 0.014643772505223751, + -0.010614689439535141, + 0.019511394202709198, + 0.009994306601583958, + -0.014684677124023438, + 0.025278914719820023, + -0.00716508598998189, + 0.022960998117923737, + 0.012448569759726524, + -0.020043151453137398, + -0.008310409262776375, + -0.014207459054887295, + 0.004976700991392136, + 0.030132902786135674, + 0.005300527438521385, + -0.002169637009501457, + -5.7894627389032394e-5, + 0.02575613185763359, + 0.021802041679620743, + -0.02574249729514122, + 0.012496291659772396, + 0.002943411935120821, + -0.01300759706646204, + -0.0004550613521132618, + 0.003173499135300517, + -0.027146881446242332, + 0.023015538230538368, + 0.007662755902856588, + 0.01355298887938261, + -0.00856265239417553, + 0.021311188116669655, + 0.007137816399335861, + 0.0037802476435899734, + -0.01986590027809143, + 0.0006523398333229125, + 0.021365728229284286, + 0.020452195778489113, + -0.013157579116523266, + -0.00028292203205637634, + 0.007485503796488047, + -0.008044530637562275, + -0.0036404908169060946, + 0.004206335172057152, + 0.005658440757542849, + -0.008610374294221401, + -0.0025411853566765785, + 0.0003106177318841219, + -0.011255525052547455, + -0.011521403677761555, + -0.003190542571246624, + -0.017602523788809776, + 0.0038654650561511517, + 0.024024512618780136, + 0.023179154843091965, + 0.002369045978412032, + 0.012598552741110325, + -0.0021150978282094, + 0.006316320039331913, + -0.012503108941018581, + -0.006643555127084255, + 0.017384367063641548, + -0.003705256152898073, + 0.00016010233957786113, + 0.009401192888617516, + 0.015639113262295723, + 0.014548328705132008, + 0.00013688058243133128, + 0.0022326980251818895, + 0.011105542071163654, + -0.007499138358980417, + -0.003994995728135109, + -0.022115640342235565, + -0.010989646427333355, + -0.008221782743930817, + 0.0018764890264719725, + -0.0008879661909304559, + 0.014752850867807865, + 0.008439939469099045, + 0.020534005016088486, + -0.0038450127467513084, + -0.0007661051931791008, + 0.009339836426079273, + -0.005413014441728592, + -0.0012637752806767821, + 0.030460137873888016, + 0.014848294667899609, + -0.036841221153736115, + 0.020806699991226196, + 0.004339274019002914, + 0.018625132739543915, + 0.011241890490055084, + 0.00024649157421663404, + 0.0034939167089760303, + 0.011460047215223312, + 0.007001468446105719, + 0.027951333671808243, + -0.019143255427479744, + 0.016961688175797462, + 0.009189853444695473, + 0.016688991338014603, + 0.03506869822740555, + 0.01713893935084343, + 0.00328769045881927, + -0.000997044495306909, + 0.010662411339581013, + 0.004564248491078615, + -0.007669573649764061, + -0.009414827451109886, + 0.01873421110212803, + -0.02005678601562977, + 0.0036643517669290304, + -0.0021730458829551935, + -0.00396772613748908, + -0.04207698255777359, + -0.014984642155468464, + -0.006609467789530754, + 0.007969538681209087, + -0.03621402010321617, + 0.017752505838871002, + 0.008944426663219929, + -0.008923974819481373, + -0.011460047215223312, + 0.00285308132879436, + 0.02118847519159317, + 0.013600709848105907, + -0.006677641998976469, + -0.002302576322108507, + -0.018379706889390945, + 0.0010643663117662072, + 0.006520841736346483, + -0.024610809981822968, + -0.006721955258399248, + -0.006108389236032963, + 0.01204634364694357, + 0.0033268905244767666, + 0.006425398401916027, + -0.005283483769744635, + 0.015993617475032806, + -0.035286854952573776, + -0.02226562425494194, + -0.003654125612229109, + -0.006684459280222654, + -0.010880568064749241, + 0.013757510110735893, + 0.011330516077578068, + -0.027405941858887672, + 0.008474026806652546, + 0.0011248707305639982, + 0.00833086110651493, + 0.04104074090719223, + 0.0017196887638419867, + -0.035014159977436066, + 0.006122023798525333, + 0.0034274470526725054, + -0.005583449266850948, + -0.02037038654088974, + 0.005290301516652107, + 0.01192362979054451, + 0.0026877594646066427, + -0.04363135248422623, + -0.012134969234466553, + 0.012332674115896225, + 0.0014410276198759675, + -0.012803074903786182, + 0.016743531450629234, + 0.005089187994599342, + -0.011057820171117783, + -0.012005439028143883, + 0.011255525052547455, + 0.015652747824788094, + 0.004121117293834686, + 0.00415861327201128, + -0.026097001507878304, + -0.004069987218827009, + 0.017248017713427544, + -0.021883849054574966, + -0.030187441036105156, + 0.030132902786135674, + 0.007260529324412346, + 0.012953056953847408, + 0.023533660918474197, + -0.004792631138116121, + 0.0004322656895965338, + 0.013348466716706753, + -0.010635142214596272, + 0.014848294667899609, + -0.005730023607611656, + -0.011903177946805954, + 0.007853643037378788, + -0.0051744054071605206, + 0.023697277531027794, + -0.03245081752538681, + -0.005157362204045057, + 0.0017605931498110294, + 0.008133156225085258, + -5.254190546111204e-5, + 0.0036234473809599876, + -0.006728772539645433, + 0.001728210598230362, + -0.008337678387761116, + 0.02601519413292408, + 0.018952367827296257, + -0.01848878525197506, + -0.022947363555431366, + -0.01983862929046154, + -0.0021048719063401222, + 0.00557322334498167, + -0.005586858373135328, + 0.010096567682921886, + 0.007465051487088203, + -0.02090214379131794, + 0.006906024646013975, + 0.004346091765910387, + 0.04084985330700874, + 0.0046801441349089146, + -0.02226562425494194, + -0.016961688175797462, + -0.004063169471919537, + 0.005096005275845528, + -0.018079740926623344, + -0.0024457417894154787, + 0.0031172556336969137, + 0.03160545974969864, + 0.025074392557144165, + -0.01057378575205803, + -0.007655938621610403, + -0.006514024455100298, + 0.01341664046049118, + 0.001642993069253862, + -0.009312566369771957, + 0.003872282337397337, + 0.0035552734043449163, + -0.016007252037525177, + 0.013941580429673195, + -0.00871263537555933, + 0.013041683472692966, + 0.018720576539635658, + 0.0036813952028751373, + 0.006936703342944384, + 0.011950899846851826, + 0.0018458106787875295, + 0.00642880704253912, + -0.014371076598763466, + -0.0018151323311030865, + 0.019225064665079117, + 0.03640490770339966, + 0.00234348070807755, + 0.01288488321006298, + 0.00616292841732502, + -0.011037368327379227, + -0.0385592058300972, + 0.005886823870241642, + -0.011010099202394485, + -0.016975322738289833, + 8.649574738228694e-5, + 0.014425615780055523, + 0.005208492744714022, + 0.00697419885545969, + 0.011562308296561241, + -0.012878065928816795, + -0.005423240829259157, + 0.0043938132002949715, + -0.000864105299115181, + -0.01486192923039198, + 0.0055595887824893, + -0.01113281212747097, + 0.005931136664003134, + 0.00048318313201889396, + 0.009087592363357544, + 0.008439939469099045, + -0.0012663317611441016, + -0.004421082790941, + -0.02166569232940674, + -0.00542664946988225, + -0.004029082600027323, + 0.009796601720154285, + -0.0049357968382537365, + -0.018843289464712143, + -0.013866588473320007, + 0.00047764400369487703, + 0.013955214992165565, + 0.0005654179840348661, + 0.009428462013602257, + 0.005999310873448849, + 0.011596394702792168, + -0.016688991338014603, + 0.001655775704421103, + 0.01463013794273138, + 0.006439032964408398, + -0.006384493783116341, + 0.02009769156575203, + -0.007676390931010246, + 0.01338937133550644, + -0.009278479963541031, + 0.013259840197861195, + 0.016948053613305092, + 0.006735589820891619, + -0.01060105487704277, + -0.011732743121683598, + 0.0067049115896224976, + 0.016484469175338745, + -0.0003790047485381365, + -0.02114757150411606, + -0.014971007592976093, + -0.015461860224604607, + -0.000752044259570539, + 0.019702281802892685, + 0.009039870463311672, + 0.0003655829932540655, + -0.0007136964122764766, + -0.009557993151247501, + 0.0010575489141047, + -0.004240422043949366, + 0.018897829577326775, + -0.004775587935000658, + 0.010655594058334827, + -0.007226442452520132, + -0.013321196660399437, + -0.025319818407297134, + 0.0006932442192919552, + -0.010355628095567226, + -0.004206335172057152, + 0.00018747846479527652, + -0.02493804506957531, + 0.016729896888136864, + -0.00448243971914053, + -0.010798759758472443, + 0.01381204929202795, + 0.009203488007187843, + -0.013205301016569138, + -0.008453574031591415, + -0.014657407067716122, + -0.001455514575354755, + 0.00820133090019226, + 0.006773085333406925, + -0.006885572802275419, + -0.0037938824389129877, + 0.0065412940457463264, + 0.0028138812631368637, + 0.01488919835537672, + 0.009769332595169544, + -0.004577883053570986, + 0.0024985766503959894, + 0.008310409262776375, + -0.0024730113800615072, + 0.026356063783168793, + -0.0017230975208804011, + -0.011030551046133041, + -0.003770021488890052, + -0.01712530478835106, + -0.025006217882037163, + 0.01610269583761692, + -0.003763203974813223, + -0.011480499058961868, + 0.009694340638816357, + 0.006871937774121761, + 0.010751037858426571, + -0.016170868650078773, + 0.02601519413292408, + 0.007874095812439919, + 0.012319039553403854, + -0.0010217576054856181, + 0.0009859662968665361, + 0.029696589335799217, + 0.012762170284986496, + -0.009271661750972271, + 0.018543323501944542, + 0.017302557826042175, + -0.02067035250365734, + -0.014316537417471409, + -0.0001393305865349248, + -0.018338803201913834, + 0.0076286690309643745, + -0.013498449698090553, + -0.008187695406377316, + -0.00803089514374733, + -0.014152919873595238, + 0.012169056572020054, + 0.015502764843404293, + 0.004001813009381294, + -0.007874095812439919, + 0.0034939167089760303, + -0.018079740926623344, + 0.02947843261063099, + -0.0022446285001933575, + -0.006987833417952061, + 0.0100556630641222, + 0.007171903271228075, + 0.02169296331703663, + 0.01657991297543049, + -0.00844675675034523, + -0.007587764877825975, + 0.008208148181438446, + -0.0005820353981107473, + 0.020847605541348457, + -0.0016941236099228263, + 0.0061765629798173904, + -0.004080213140696287, + 0.013164396397769451, + 0.0027337768115103245, + 0.00743096461519599, + 0.009053505025804043, + -0.004997153300791979, + 0.004386995919048786, + -0.0010353924008086324, + 0.002266785129904747, + -0.006060667335987091, + -0.0046903700567781925, + 0.007369608152657747, + -0.004199517425149679, + 0.002237811218947172, + -0.021311188116669655, + 0.009483001194894314, + -0.0032007687259465456, + -0.022633763030171394, + 0.006643555127084255, + 0.009714793413877487, + -0.010894202627241611, + 0.00569252809509635, + 0.00829677376896143, + 0.0289875790476799, + 0.007580947130918503, + 0.0015518104191869497, + -0.0308146420866251, + 0.001619984395802021, + 0.01792975887656212, + -0.0054845972917973995, + 0.033432524651288986, + -0.006190198007971048, + 0.006197015289217234, + 0.027215056121349335, + 0.00691625103354454, + 0.00016340451838914305, + 0.004305187147110701, + 0.005784562788903713, + 0.009217122569680214, + 0.021706597879529, + -0.019184159114956856, + -0.0034274470526725054, + -0.0038109258748590946, + 0.013109857216477394, + -0.004973292350769043, + 0.0005159918800927699, + -0.04270418360829353, + -0.0030797598883509636, + 0.01235994417220354, + 0.006070893257856369, + -0.011957717128098011, + -0.00806498248130083 + ], + "a56d8776-1ac1-4e38-b226-c3d520ba66be": [ + -0.02594779059290886, + -0.058096595108509064, + -0.004554299172013998, + 0.04748597368597984, + -0.03902503848075867, + -0.012388244271278381, + -0.019030217081308365, + 0.022364983335137367, + -0.007799495477229357, + 0.026319852098822594, + 0.024817829951643944, + 0.01693565398454666, + 0.01401428785175085, + -0.018727056682109833, + 0.01121005229651928, + 0.034946147352457047, + -0.04825765639543533, + 0.004171903245151043, + -0.01160967256873846, + -0.01689431257545948, + 0.044013407081365585, + -0.008550507016479969, + -0.02120746113359928, + -0.003341656643897295, + -0.010727751068770885, + -0.016480913385748863, + 0.005274305585771799, + -0.0022013592533767223, + -0.05274994298815727, + -0.007737485226243734, + 0.018051836639642715, + -0.010817321017384529, + 0.02062870003283024, + 0.018065616488456726, + 0.040733762085437775, + -0.026664352044463158, + -0.000497803499456495, + 0.009900949895381927, + -0.007957966066896915, + -0.00580483628436923, + -0.04588749259710312, + 0.05087586119771004, + 0.00016998955106828362, + 0.01820341683924198, + -0.020477119833230972, + 0.009260178543627262, + -0.04043060168623924, + -0.0025303575675934553, + 0.0030712236184626818, + 0.013945387676358223, + -0.010410810820758343, + -0.008419596590101719, + -0.03348546475172043, + 0.026374971494078636, + 0.06697092950344086, + -0.052088502794504166, + 0.007248294539749622, + 0.04715525358915329, + 0.01667383313179016, + -0.04643869027495384, + 0.010004299692809582, + -0.026333631947636604, + -0.009611569344997406, + -0.01890619657933712, + -0.03924551606178284, + 0.016839193180203438, + -0.021607082337141037, + 0.010045640170574188, + -0.02976485900580883, + -0.01401428785175085, + -0.006128666922450066, + 0.05214362218976021, + -0.03345790505409241, + 0.02270948514342308, + 0.03704071417450905, + -0.033650826662778854, + 0.045749690383672714, + 0.003868742613121867, + 0.006345702335238457, + -0.029847539961338043, + 0.02921365760266781, + 0.015530090779066086, + 0.004399273544549942, + -0.0038652976509183645, + 0.04561189189553261, + 0.005646366160362959, + -0.022089384496212006, + -0.041973963379859924, + 0.03406422585248947, + -0.03764703497290611, + -0.0025096875615417957, + 0.022571684792637825, + 0.007351644337177277, + -0.04825765639543533, + -0.026650572195649147, + 0.005164065398275852, + 0.014524148777127266, + -0.00623546214774251, + 0.004120228346437216, + 0.013814477249979973, + -0.026126932352781296, + 0.008378257043659687, + 0.017211254686117172, + 0.001452070428058505, + 0.022557904943823814, + -0.009859609417617321, + 0.0029506483115255833, + 0.008254236541688442, + -0.021731102839112282, + 0.07909735292196274, + 0.015337170101702213, + -0.04315904527902603, + -0.01010075956583023, + 0.007017478812485933, + -0.04009987786412239, + -0.026402533054351807, + -0.016012391075491905, + -0.03053653985261917, + -0.012581164948642254, + -0.0063284775242209435, + 0.03502883017063141, + -0.0035793620627373457, + -0.001728532137349248, + 0.023550067096948624, + -0.007992415688931942, + 0.025355249643325806, + -0.006473167799413204, + -0.01197484415024519, + 0.0012582887429744005, + 0.02594779059290886, + -0.019374718889594078, + 0.022378765046596527, + 0.02979241870343685, + 0.02122124284505844, + -0.0018930312944576144, + -0.022020483389496803, + 0.02521744929254055, + 0.08940481394529343, + -0.005415550898760557, + 0.04665917158126831, + -0.04439924657344818, + -0.03028850071132183, + -0.0069416887126863, + -0.003761947387829423, + -0.008102656342089176, + -0.00549134099856019, + -0.03778483346104622, + 0.04059595987200737, + -0.029709739610552788, + 0.017514415085315704, + -0.05302554368972778, + -0.028152596205472946, + -0.021758662536740303, + -0.013277056626975536, + 0.06818357855081558, + 0.0028059580363333225, + -0.005219185259193182, + 0.035139068961143494, + -0.022323643788695335, + 0.04748597368597984, + 0.035194188356399536, + -0.05037977918982506, + -0.0043510436080396175, + 0.022268524393439293, + 0.07452239096164703, + -0.010796651244163513, + 0.030619220808148384, + 0.030839700251817703, + 0.008633187040686607, + 0.01916801743209362, + 0.03447762876749039, + -0.023880787193775177, + 0.008488496765494347, + -0.008674527518451214, + 0.03885967656970024, + -0.02720177359879017, + 0.05352162569761276, + 0.011382302269339561, + 0.026333631947636604, + -0.03555247187614441, + 0.008867447264492512, + -0.0188786368817091, + 0.014730849303305149, + -0.0012832650681957603, + 0.0036620423197746277, + -0.006170007400214672, + 0.005832396447658539, + 0.029930219054222107, + -0.02222718484699726, + -0.017803795635700226, + -0.010658850893378258, + -0.004013433121144772, + -0.020642481744289398, + 0.0007208676543086767, + -0.030812140554189682, + -0.03651707246899605, + -0.002123846672475338, + 0.017321493476629257, + -0.0002448107989039272, + 0.014220988377928734, + -0.004278698470443487, + -0.042690522968769073, + -0.005126170348376036, + 0.048037175089120865, + -0.030812140554189682, + -0.004764444660395384, + -0.00994228944182396, + -0.018809737637639046, + 0.03194210305809975, + -0.01693565398454666, + 0.030839700251817703, + -0.02772541530430317, + 0.01020411029458046, + 0.0035965871065855026, + 0.005577465984970331, + 0.013793807476758957, + 0.015034009702503681, + 0.026554113253951073, + -0.017762454226613045, + -0.05567131191492081, + 0.012519154697656631, + -0.03560759127140045, + -0.004733439534902573, + -0.030150700360536575, + -0.05173022300004959, + 0.008095766417682171, + -0.029379017651081085, + 0.024652468040585518, + -0.03274134546518326, + 0.010403920896351337, + 0.03613123297691345, + 0.015419850125908852, + 0.0063835978507995605, + -0.03626903146505356, + 0.001225561136379838, + 0.047320615500211716, + -0.0003432088124100119, + 0.013649117201566696, + -0.009611569344997406, + -0.01336662657558918, + 0.011830153875052929, + 0.04244248569011688, + -0.013139256276190281, + -0.020614920184016228, + 0.009005247615277767, + 0.005963306874036789, + 0.003112563630566001, + 0.06972693651914597, + 0.01690809428691864, + 0.0017492022598162293, + 0.02324690669775009, + -0.012794755399227142, + 0.004089223220944405, + 0.0057393815368413925, + -0.05495474860072136, + 0.02120746113359928, + 0.05721467360854149, + -0.0003819651319645345, + 0.009335968643426895, + -0.018864857032895088, + -0.006679868325591087, + 0.008426486514508724, + 0.005625695921480656, + 0.04891909658908844, + 0.024542229250073433, + -0.015034009702503681, + 0.02445954829454422, + 0.025272570550441742, + 0.009060367941856384, + 0.02324690669775009, + 0.016012391075491905, + 0.004719659220427275, + -0.037922635674476624, + 0.029351457953453064, + -0.014896209351718426, + 0.009563338942825794, + -0.012464034371078014, + -0.013862707652151585, + 0.0009620181517675519, + -0.007716815453022718, + -0.023880787193775177, + 0.0008074234938248992, + 0.017955375835299492, + 0.01262250542640686, + 0.01322193630039692, + 0.07435702532529831, + -0.01373868715018034, + -0.015598990954458714, + -0.01360777672380209, + -0.0023426045663654804, + -0.0036896022502332926, + -0.0014210653025656939, + -0.02046333998441696, + 0.0023770546540617943, + -0.0013581939274445176, + -0.008419596590101719, + -0.03004045970737934, + 0.0048540146090090275, + -0.010596840642392635, + -0.009894059970974922, + -0.013614666648209095, + 0.02671947330236435, + 0.03447762876749039, + -0.051371943205595016, + 0.02574109099805355, + -0.030894821509718895, + 0.0638842061161995, + 0.04015500098466873, + -0.0033795516937971115, + -0.031886983662843704, + -0.011423642747104168, + -0.053108226507902145, + -0.02272326499223709, + -0.028042355552315712, + 0.03298938646912575, + 0.02820771560072899, + -0.025561951100826263, + -0.001632933272048831, + -0.029847539961338043, + -0.023632746189832687, + -0.0372336320579052, + -0.01145120244473219, + -0.044537048786878586, + 0.019843239337205887, + 0.014813529327511787, + -0.013256385922431946, + 0.04026523977518082, + -0.0028817481361329556, + -0.008605627343058586, + -0.03285158425569534, + -0.0358005091547966, + 0.020297979936003685, + -0.018286095932126045, + -0.01667383313179016, + -0.030619220808148384, + -0.0052467454224824905, + -0.05035221949219704, + -0.05721467360854149, + 0.0027783981058746576, + -0.017252594232559204, + -0.02929633855819702, + -0.028882937505841255, + -0.028111254796385765, + -0.016577372327446938, + -0.020862961187958717, + -0.03728875517845154, + -0.018740836530923843, + 0.003551802132278681, + 0.031666502356529236, + 0.01148565299808979, + 0.0007953659514896572, + -2.742548349488061e-5, + 0.05117902159690857, + 0.010934451594948769, + 0.053328704088926315, + -0.023398486897349358, + -0.0005606748745776713, + -0.010369470342993736, + 0.020325539633631706, + -0.016219092532992363, + 0.028304176405072212, + -0.025369029492139816, + 0.006314697675406933, + -0.020477119833230972, + -0.026182051748037338, + 0.0043510436080396175, + 0.004475063644349575, + 0.0017181971343234181, + -0.01664627343416214, + 0.01792781613767147, + 0.004616308957338333, + -0.005570576060563326, + -0.043021246790885925, + -0.03298938646912575, + 0.00517440028488636, + -0.012842985801398754, + 0.06647485494613647, + -0.021042101085186005, + -0.01716991327702999, + 0.02468002960085869, + -0.02472136914730072, + -0.021827563643455505, + -0.00981137901544571, + 0.006724653299897909, + 0.054596468806266785, + -0.005715266335755587, + -0.026168271899223328, + -0.03756435588002205, + -0.019774338230490685, + -0.01616397127509117, + -0.032438185065984726, + -0.025644630193710327, + -0.015323390252888203, + 0.0033330440055578947, + -0.03610367327928543, + 0.005077939946204424, + 0.0022220294922590256, + -0.026168271899223328, + -0.006483502686023712, + 0.0055740210227668285, + -0.042277123779058456, + 0.0073103043250739574, + 0.021124782040715218, + 0.0023391596041619778, + 0.034670550376176834, + 0.005188180133700371, + -0.004709324333816767, + 0.01287743542343378, + 0.024363087490200996, + -0.001937816385179758, + 0.027560055255889893, + -0.00971491914242506, + 0.019595198333263397, + 0.009763149544596672, + 0.04936005920171738, + 0.012126424349844456, + 0.011623453348875046, + 0.012829205021262169, + -0.05115146189928055, + -0.0008845055126585066, + 0.04619065299630165, + 0.04484020918607712, + 0.0073103043250739574, + 0.04368268698453903, + 0.02116612158715725, + 0.0317491814494133, + 0.01817585527896881, + 0.0026991628110408783, + -0.008378257043659687, + 0.007117384113371372, + 0.021372823044657707, + 0.0509585402905941, + 0.012078193947672844, + -0.02115234173834324, + -0.034367386251688004, + -0.010955121368169785, + 0.01287743542343378, + -0.022613024339079857, + 0.012326234020292759, + 0.00011486944276839495, + -0.020477119833230972, + 0.022089384496212006, + 0.00750322500243783, + -0.013793807476758957, + -0.014909989200532436, + 0.01060373056679964, + -0.02524501085281372, + 0.016963213682174683, + -0.05150974169373512, + -0.033953987061977386, + -0.0068073333241045475, + 0.04792693629860878, + 0.00277323042973876, + -0.003195243887603283, + 0.004698989447206259, + -0.01364222727715969, + 0.03916283696889877, + -0.03351302817463875, + 0.038997478783130646, + -0.0817982405424118, + -0.006597187835723162, + -0.006004646886140108, + 0.011630343273282051, + 0.0010335020488128066, + 0.016012391075491905, + -0.0338437482714653, + -0.00959778856486082, + -0.007193174213171005, + -0.002101454185321927, + 0.030453860759735107, + 0.0025803102180361748, + -0.013649117201566696, + -0.027036413550376892, + 0.0384187176823616, + -0.01185771357268095, + 0.01963653974235058, + -0.012457144446671009, + -0.019857019186019897, + 0.014076298102736473, + -0.007117384113371372, + 0.008385146968066692, + 0.022888625040650368, + 0.013159926049411297, + -0.0050159296952188015, + -0.018727056682109833, + 0.007117384113371372, + -0.028882937505841255, + 0.010362580418586731, + -0.0035070169251412153, + -0.02998533844947815, + -0.002153129316866398, + 0.027050193399190903, + 0.036958031356334686, + 0.01096890214830637, + 0.004978034645318985, + 0.0028886382933706045, + 0.02902073785662651, + -0.022516565397381783, + -0.0066454182378947735, + -0.01109292171895504, + 0.027876995503902435, + 0.0006041680462658405, + -0.01843767613172531, + -0.010934451594948769, + -0.012608724646270275, + 0.008054425939917564, + -0.03965891897678375, + 0.018727056682109833, + 0.00768925528973341, + 0.0021806892473250628, + -0.030343620106577873, + 0.009501328691840172, + -0.02094564214348793, + 0.0026836602482944727, + -0.0045921942219138145, + 0.006449052598327398, + 0.009280848316848278, + -0.046824533492326736, + 0.03549734875559807, + 0.01865815743803978, + 0.0007828777888789773, + -0.018754616379737854, + -0.01938849873840809, + -0.008495386689901352, + -0.006931353826075792, + 0.007110494188964367, + -0.025093428790569305, + 0.005353540647774935, + 0.011037801392376423, + -0.0196640994399786, + -0.023536287248134613, + 0.00843337643891573, + -0.027573835104703903, + -0.008378257043659687, + -0.01401428785175085, + 0.009074147790670395, + -0.002259924542158842, + -0.015585211105644703, + -0.02062870003283024, + -0.0027783981058746576, + -0.03585563227534294, + 0.025892671197652817, + -0.009515108540654182, + -0.016453351825475693, + 0.01641201227903366, + 0.03924551606178284, + -0.0013857539743185043, + 0.006638528313487768, + -0.011423642747104168, + 0.004440613556653261, + -0.03254842385649681, + 0.023494945839047432, + -0.00435448857024312, + 0.00783394556492567, + -0.007144944276660681, + -0.037950195372104645, + 0.018299875780940056, + 0.008529837243258953, + -0.00415123300626874, + -0.02224096469581127, + -0.03571783006191254, + 0.012064414098858833, + 0.004616308957338333, + 0.01666005328297615, + -0.03320986405014992, + -0.008550507016479969, + -0.005539570935070515, + -0.006359482649713755, + 0.0035552470944821835, + 0.008584956638514996, + 0.022750824689865112, + -0.005928856786340475, + 0.011017131619155407, + -0.010562391020357609, + 0.0011377135524526238, + 0.007172503974288702, + -0.007785715628415346, + 0.006614413112401962, + -0.04065107926726341, + 0.008460937067866325, + 0.0016406845534220338, + -0.032631102949380875, + 0.016219092532992363, + -0.001298767514526844, + 0.021372823044657707, + 0.03577294945716858, + -0.025548171252012253, + -0.0027491154614835978, + 0.0027594503480941057, + 0.005281195510178804, + 0.018479015678167343, + 0.02171732299029827, + 0.010782871395349503, + -0.016453351825475693, + -0.014524148777127266, + 0.037206072360277176, + -0.022544125095009804, + -0.022874845191836357, + 0.009108598344027996, + 0.0007690977654419839, + 0.037206072360277176, + 0.035442229360342026, + -0.005556796211749315, + -0.019732998684048653, + -0.05925411731004715, + -0.0005985699244774878, + -0.037950195372104645, + 0.010865551419556141, + 0.012739635072648525, + 0.0048023397102952, + 0.020807841792702675, + -0.0186857171356678, + 0.01400050800293684, + -0.011423642747104168, + 0.018217196688055992, + -0.00943931844085455, + -0.01741795428097248, + 0.018795957788825035, + 0.0242390688508749, + -0.021827563643455505, + 0.041450321674346924, + -0.016494693234562874, + 0.04012743756175041, + -0.027821874246001244, + -0.00737231457605958, + 0.02419772744178772, + -0.013897157274186611, + -0.01689431257545948, + -0.004995259921997786, + 0.004068552982062101, + -0.024569788947701454, + -0.010403920896351337, + 0.004137453157454729, + -0.005401770584285259, + 0.00768925528973341, + 0.03097750060260296, + 0.01664627343416214, + 0.0014624054310843349, + -0.016715172678232193, + -0.01763843558728695, + -0.0224752239882946, + 0.003978983033448458, + 0.00995606929063797, + 0.04621821269392967, + -0.009363528341054916, + 0.04169836267828941, + -0.017211254686117172, + 0.012670734897255898, + 0.0037378324195742607, + 0.01814829558134079, + -0.0077030351385474205, + 0.007882175967097282, + -0.018975097686052322, + 0.029847539961338043, + 0.005963306874036789, + -0.0035724721383303404, + 0.013986727222800255, + -0.002568252617493272, + -0.0010317795677110553, + 5.673495616065338e-5, + 0.022089384496212006, + -0.025548171252012253, + 0.009646018967032433, + 0.013931607827544212, + 0.015199369750916958, + 0.006952023599296808, + -0.003999652806669474, + -0.0022444219794124365, + 0.010390140116214752, + 0.02973729930818081, + -0.011540772393345833, + -0.027532493695616722, + -0.010651960968971252, + -0.002382222330197692, + -0.007351644337177277, + 0.008584956638514996, + 0.0014047014992684126, + 0.00618034228682518, + 0.013704237528145313, + -0.018534136936068535, + -0.01197484415024519, + -0.03761947527527809, + -0.03169406205415726, + 0.03103262186050415, + -0.04555676877498627, + 0.00782016571611166, + -0.03298938646912575, + 0.010038750246167183, + -0.009866499342024326, + -0.02367408759891987, + -0.0032159138936549425, + 0.019829459488391876, + -0.03125310316681862, + 0.007179394364356995, + -0.0041891285218298435, + -0.03078458085656166, + -0.02144172228872776, + -0.015144250355660915, + 0.027794314548373222, + -0.0025527500547468662, + -0.028607336804270744, + -0.01587459072470665, + -0.01312547642737627, + -0.0067969984374940395, + 0.03152870386838913, + 0.001999826403334737, + -0.008798547089099884, + -0.027601394802331924, + 0.02021530084311962, + 0.0009723531547933817, + -0.018299875780940056, + 0.015213150531053543, + 0.01763843558728695, + 0.006170007400214672, + 0.010024969466030598, + -0.017500635236501694, + 0.007069154176861048, + 0.02728445455431938, + -0.018106956034898758, + 0.01638445258140564, + 0.0020549464970827103, + 0.022613024339079857, + 0.0067418781109154224, + -0.029709739610552788, + -0.027628954499959946, + 0.016949433833360672, + 0.008137105964124203, + -0.006473167799413204, + 0.016315551474690437, + 0.0003729219897650182, + 0.03764703497290611, + -0.006535178050398827, + 0.02291618473827839, + 0.0029179207049310207, + 0.004395828582346439, + 0.03106018155813217, + -0.015681670978665352, + 0.00817844644188881, + 0.058923397213220596, + -0.004984925035387278, + 0.01111359242349863, + -0.011258282698690891, + 0.017569534480571747, + -0.01991213858127594, + -0.008102656342089176, + -0.013649117201566696, + 0.023522507399320602, + -0.0037206073757261038, + -0.014234768226742744, + 0.012987676076591015, + -0.003319264156743884, + -0.05263970419764519, + 0.017583314329385757, + 0.016839193180203438, + -0.007882175967097282, + 0.022075602784752846, + 0.02846953645348549, + 0.01763843558728695, + -0.007248294539749622, + 0.02567218989133835, + -0.021496841683983803, + -0.00010641841072356328, + -0.01161656342446804, + -0.038225796073675156, + -0.013649117201566696, + 0.01962275803089142, + -0.006104552187025547, + -0.014138308353722095, + 0.022268524393439293, + -0.011306512169539928, + 0.033182304352521896, + 0.03588319197297096, + 0.00631125271320343, + 0.03276890516281128, + -0.0019739889539778233, + -0.014069408178329468, + 0.01785891503095627, + -0.00567737128585577, + -0.02973729930818081, + -0.0013978114584460855, + -0.05831707641482353, + -0.016039952635765076, + 0.026361191645264626, + -0.0026939953677356243, + 0.0011196272680535913, + -0.01642579212784767, + 0.01817585527896881, + 0.003951422870159149, + -0.024790268391370773, + 0.015144250355660915, + -0.0003651707083918154, + -0.015075350180268288, + 0.03274134546518326, + -0.02521744929254055, + -0.010810431092977524, + -0.0033209866378456354, + -0.012009293772280216, + 0.012167763896286488, + -0.0227370448410511, + -0.014868649654090405, + 0.005746271461248398, + 0.00044785087811760604, + 0.019319597631692886, + 0.007268964312970638, + 0.009625349193811417, + -0.023012645542621613, + -0.006135557312518358, + -0.0077926055528223515, + -0.04404096677899361, + 0.010321240872144699, + 0.014593048952519894, + 0.005729046184569597, + -0.006831448525190353, + -0.003927307669073343, + -0.022296084091067314, + -0.01660493202507496, + 0.013035905547440052, + -0.004564634058624506, + 0.03293426334857941, + 0.023384707048535347, + 0.010383250191807747, + -0.0072000641375780106, + 0.0014985779998824, + 0.0026009802240878344, + 0.012643175199627876, + -0.01184393372386694, + 0.029847539961338043, + -0.011520102620124817, + 0.0023202120792120695, + 0.013890267349779606, + -0.03535955026745796, + -0.000620101229287684, + -0.03056410141289234, + -0.005012484733015299, + 0.008667637594044209, + 0.026044251397252083, + -0.007799495477229357, + -0.01335284672677517, + -0.04255272448062897, + 0.026361191645264626, + -0.021097222343087196, + -0.03588319197297096, + 0.001618291949853301, + 0.0029075858183205128, + 0.04043060168623924, + 0.008130216039717197, + 0.011334072798490524, + 0.012147094123065472, + 0.029406577348709106, + 0.009639129042625427, + 0.02676081284880638, + -0.029571939259767532, + 0.026843493804335594, + 0.024156387895345688, + -0.036654870957136154, + 0.005763496272265911, + -0.0017759010661393404, + 0.016039952635765076, + 0.004867794457823038, + 0.010548611171543598, + 0.01969165913760662, + 0.02196536399424076, + -0.01818963512778282, + 0.008764097467064857, + -0.019843239337205887, + -0.006666088011115789, + 0.005773831624537706, + 0.011182491667568684, + -0.005033154971897602, + 0.02518988959491253, + -0.013676676899194717, + 0.008274906314909458, + 0.030398739501833916, + 0.01008697971701622, + 0.0009585731313563883, + -0.007468774914741516, + 0.00039940548595041037, + -0.01311858557164669, + -0.012498484924435616, + -0.021538183093070984, + -0.006855563726276159, + 0.006483502686023712, + -0.004113337956368923, + 0.004134008195251226, + -0.028690015897154808, + 0.034174468368291855, + -0.00047799470485188067, + -0.001955041429027915, + -0.00021854261285625398, + 0.017087234184145927, + 0.021111002191901207, + 0.053053103387355804, + -0.030426301062107086, + -0.010989571921527386, + -0.007785715628415346, + -0.03133578225970268, + -0.006338812410831451, + -0.0012048911303281784, + -0.00296787335537374, + -0.004812674596905708, + 0.0020394439343363047, + -0.03635171055793762, + -0.010638181120157242, + 0.0027473929803818464, + -0.0009430706268176436, + -0.02951681800186634, + 0.0021806892473250628, + -0.010872441343963146, + 0.037702154368162155, + 0.004251138307154179, + 0.0062285722233355045, + 0.01023166999220848, + -0.019043996930122375, + -0.027339573949575424, + 0.04971833899617195, + 0.00560502614825964, + -0.006676423363387585, + -0.021386602893471718, + 0.0040341028943657875, + 0.0011626897612586617, + 0.006207902450114489, + 0.016522252932190895, + 0.013345956802368164, + 0.014413908123970032, + -0.020036159083247185, + 0.008081985637545586, + -0.012133314274251461, + -0.016949433833360672, + 0.012739635072648525, + -0.012725855223834515, + -0.006035652011632919, + -0.009618459269404411, + -0.018782177940011024, + -0.0024666248355060816, + -0.010796651244163513, + -0.00856428686529398, + 0.002160019241273403, + -0.0007105326512828469, + 0.006139002274721861, + 0.0038963027764111757, + -0.015833251178264618, + -0.018230976536870003, + -0.007971745915710926, + -0.005002149846404791, + -0.002240977017208934, + -0.006976138800382614, + 0.014248548075556755, + 0.020325539633631706, + -0.014965109527111053, + -0.00033179722959175706, + -0.007324084639549255, + 0.043296847492456436, + 0.0011428809957578778, + 0.005453445948660374, + 0.008653856813907623, + 0.009446208365261555, + -0.011065362021327019, + -0.02094564214348793, + -0.015034009702503681, + 0.011678572744131088, + -0.0017896810313686728, + -0.002053224015980959, + 0.013600886799395084, + -0.00750322500243783, + -0.03546978905797005, + 0.027394693344831467, + -0.041229840368032455, + 0.011161821894347668, + -0.01539229042828083, + 0.004512959159910679, + -0.0037412773817777634, + 0.03307206556200981, + 0.012794755399227142, + 0.012333123944699764, + -0.0022392545361071825, + -0.02899317815899849, + -0.03761947527527809, + -0.007193174213171005, + -0.005856511648744345, + -0.020794061943888664, + 0.053301144391298294, + -0.0013185763964429498, + -0.016742732375860214, + -0.03210746496915817, + -0.000683403224684298, + 0.006197567097842693, + 0.00018000160343945026, + 0.013593996874988079, + -0.026636792346835136, + 0.020311759784817696, + 0.03183186426758766, + -0.00846782699227333, + 0.011685462668538094, + -0.011285842396318913, + -0.00327620143070817, + -0.0023684422485530376, + -0.003451896831393242, + 0.008212896063923836, + -0.023784326389431953, + -0.024142608046531677, + 0.0017896810313686728, + -0.009136158041656017, + -0.022805945947766304, + 0.009563338942825794, + 0.0272431131452322, + -0.006652308162301779, + -0.00612177699804306, + 0.009646018967032433, + -0.006783218588680029, + 0.02421150729060173, + -0.005866846535354853, + -0.011299622245132923, + 0.00807509571313858, + -0.0338437482714653, + -0.007172503974288702, + -0.014317448250949383, + 0.03806043416261673, + -0.044261448085308075, + -0.018809737637639046, + -0.006776328198611736, + -0.044289007782936096, + -0.03704071417450905, + -0.00737231457605958, + -0.013111695647239685, + 0.017032112926244736, + 0.008543617092072964, + 0.005718711297959089, + -0.000910343078430742, + 0.0027594503480941057, + -0.002404614817351103, + -0.027077753096818924, + -0.01942983828485012, + 0.014055627398192883, + -0.011127372272312641, + 0.012443364597856998, + -0.016577372327446938, + 0.016219092532992363, + -0.048781298100948334, + -0.022792164236307144, + -0.02039444074034691, + -0.004736884497106075, + 0.013325286097824574, + -0.011706133373081684, + 0.004419943783432245, + 0.033953987061977386, + 0.009053478017449379, + 0.0090810377150774, + -0.009611569344997406, + 0.0003124190552625805, + 0.0019447063095867634, + 0.02266814559698105, + 0.016770293936133385, + -0.014675728976726532, + -0.031638942658901215, + -0.003875632770359516, + 0.01338040642440319, + -0.02343982644379139, + 0.010548611171543598, + 0.01136852242052555, + 0.025644630193710327, + 0.014579269103705883, + -0.005381100811064243, + 0.026526551693677902, + -0.015778131783008575, + -0.0038652976509183645, + 0.010052530094981194, + -0.04544652998447418, + 0.005236410535871983, + 0.011630343273282051, + -0.011533882468938828, + 0.009218838065862656, + 0.0035483569372445345, + 0.014772188849747181, + 0.020518461242318153, + -0.01988457888364792, + 0.03274134546518326, + 0.0035793620627373457, + 0.002259924542158842, + 0.010548611171543598, + -0.006104552187025547, + -0.015158030204474926, + -0.020807841792702675, + 0.00021294449106790125, + 0.013876487500965595, + -0.018079396337270737, + 0.006156227085739374, + -0.014062518253922462, + 0.021138561889529228, + -0.0028352406807243824, + 0.0060012019239366055, + -0.01638445258140564, + -0.018727056682109833, + 0.02399102784693241, + -0.0006958913872949779, + -0.00768925528973341, + -0.011347852647304535, + -0.005687706172466278, + 0.05641543120145798, + 0.005543015897274017, + -0.012181543745100498, + -0.008185336366295815, + 0.003463954431936145, + 0.006783218588680029, + 0.006221682298928499, + 0.01286365557461977, + -0.0016785796033218503, + -0.013290836475789547, + -0.003593142144382, + -0.00681077828630805, + -0.004320038482546806, + 0.021138561889529228, + -0.0008931180345825851, + -0.001406423980370164, + 0.003453619312494993, + 0.012078193947672844, + -0.01539229042828083, + 0.0028576331678777933, + -0.018795957788825035, + -0.014345007948577404, + -0.003248641500249505, + 0.009370418265461922, + -0.012512264773249626, + -0.004564634058624506, + -0.010183440521359444, + -0.006283692549914122, + -0.01160967256873846, + 0.014730849303305149, + 0.031363341957330704, + -0.010114540345966816, + 0.014909989200532436, + 0.02466624788939953, + -0.005071050021797419, + 0.04792693629860878, + -0.022020483389496803, + 0.010700191371142864, + 0.002697440329939127, + -0.013876487500965595, + -0.0011704410426318645, + -0.02899317815899849, + 0.017707334831357002, + -0.006876233499497175, + -0.0019257587846368551, + 0.0006351731135509908, + -0.005691151134669781, + 6.685466360067949e-5, + -0.016026170924305916, + -0.02039444074034691, + -0.022888625040650368, + 0.028690015897154808, + -0.012029963545501232, + 0.015309610404074192, + -0.013711127452552319, + 0.018024275079369545, + -0.0010576171334832907, + -0.002166909398511052, + -0.028910497203469276, + 0.0020170514471828938, + 0.012691404670476913, + 0.008081985637545586, + -0.026388751342892647, + -0.02269570529460907, + 0.00036732383887283504, + 0.0004982341197319329, + -0.00044871214777231216, + -0.016494693234562874, + -0.0019739889539778233, + 0.023770546540617943, + 0.012023073621094227, + 0.0028283505234867334, + -0.0022185842972248793, + 0.010858661495149136, + -0.004605974070727825, + -0.017762454226613045, + 0.014689508825540543, + -0.0028352406807243824, + 0.03249330446124077, + -0.025107210502028465, + -0.02820771560072899, + -0.01641201227903366, + -0.02600291185081005, + 0.026912393048405647, + -0.007489444687962532, + -0.003575917100533843, + -0.01047971099615097, + -0.015709230676293373, + -0.005859956610947847, + 0.0036896022502332926, + -0.002890360774472356, + 0.034146908670663834, + 0.035662710666656494, + 0.020614920184016228, + -0.022364983335137367, + -0.019857019186019897, + -0.009480658918619156, + 0.008522947318851948, + -0.0072896345518529415, + 0.007076044101268053, + -0.00932907871901989, + 0.005529236048460007, + 0.008798547089099884, + -0.002954093273729086, + 0.016287991777062416, + -0.01639823243021965, + -0.005060715135186911, + -0.008846777491271496, + -0.008764097467064857, + -0.02470758929848671, + 0.02272326499223709, + -0.00832313671708107, + -0.05219874158501625, + -0.028304176405072212, + 0.025561951100826263, + -0.003858407726511359, + -0.005704931449145079, + -0.004557744134217501, + 0.02268192544579506, + -0.011533882468938828, + -0.045060690492391586, + 0.010080089792609215, + 0.016246652230620384, + 0.01107914187014103, + -0.007517004851251841, + 0.04131252318620682, + -0.007957966066896915, + -0.004995259921997786, + -0.007220734376460314, + 0.014827309176325798, + 0.001445180387236178, + -0.015075350180268288, + -0.02549304999411106, + 0.003651707200333476, + 0.0072138444520533085, + 0.0042097982950508595, + 0.011657902970910072, + 0.02189646288752556, + 0.0007286189356818795, + -0.023053985089063644, + -0.015295830555260181, + -0.006149337161332369, + 0.007758155465126038, + -0.015723010525107384, + -0.009060367941856384, + 0.0124778151512146, + -0.01287743542343378, + 0.009632239118218422, + 0.020849181339144707, + -0.007489444687962532, + -0.002246144460514188, + -0.0028765806928277016, + 0.001503745443187654, + -0.014551708474755287, + 0.0022082494106143713, + 0.010562391020357609, + 0.005484451074153185, + -0.0012849875492975116, + -0.0005572298541665077, + -0.036709994077682495, + 0.02422528713941574, + -0.01564033143222332, + 0.00700025400146842, + -0.03252086415886879, + 0.015226930379867554, + -0.0005804836400784552, + -0.01312547642737627, + -0.0832313671708107, + -0.017486855387687683, + 0.016770293936133385, + -0.009177498519420624, + -0.012932555750012398, + -0.01033502072095871, + -0.0023012645542621613, + -0.009749369695782661, + 0.002675047842785716, + 0.011781923472881317, + 0.012023073621094227, + 0.03252086415886879, + 0.0034725668374449015, + -0.006369817536324263, + -0.006221682298928499, + -0.005002149846404791, + -0.003041940974071622, + 0.013793807476758957, + -0.006132112350314856, + -0.021538183093070984, + -0.0003976829757448286, + 0.013283946551382542, + 0.01812073588371277, + 0.007758155465126038, + 0.006921018473803997, + -0.03056410141289234, + 0.011892163194715977, + 0.010975792072713375, + -0.0047541093081235886, + 0.04357244446873665, + -0.018327435478568077, + 0.014579269103705883, + -0.00662474799901247, + -0.01500645000487566, + 0.02191024273633957, + 0.011947283521294594, + -0.021524403244256973, + 0.01993970014154911, + -0.008357586339116096, + -0.02499696984887123, + 0.0055189006961882114, + 0.0047782245092093945, + 0.015034009702503681, + -0.0011747473618015647, + 0.03403666615486145, + -0.0186857171356678, + -0.007854615338146687, + -0.006559292785823345, + -0.03056410141289234, + -0.0019584863912314177, + -0.026430092751979828, + -0.028359295800328255, + -0.005415550898760557, + -0.02899317815899849, + 0.00517440028488636, + -0.012815425172448158, + 0.020339319482445717, + 0.014041847549378872, + -0.004771334584802389, + -0.014730849303305149, + -0.024156387895345688, + 0.0272431131452322, + -0.00623546214774251, + 0.015061569400131702, + -0.012202214449644089, + 0.022075602784752846, + 0.003861852688714862, + 0.004740329459309578, + -0.0034312268253415823, + -0.0090810377150774, + -0.005543015897274017, + -0.002294374629855156, + -0.018975097686052322, + -0.005529236048460007, + -0.016026170924305916, + -0.024294188246130943, + 0.0025372474920004606, + -0.0034949593245983124, + -0.000144044344779104, + 0.02674703299999237, + -0.013952277600765228, + -0.0014804917154833674, + -0.008543617092072964, + 0.0008560841670259833, + -0.0010808708611875772, + -0.027353353798389435, + 0.010700191371142864, + -0.0006993364077061415, + 0.009749369695782661, + 0.011630343273282051, + 0.003786062588915229, + 0.018024275079369545, + -0.014965109527111053, + 0.004144343081861734, + -0.011912833899259567, + 0.002111789071932435, + 0.010934451594948769, + -0.050049059092998505, + -0.020738940685987473, + 0.0009749369346536696, + 0.035910751670598984, + 0.01591593213379383, + -0.017087234184145927, + -0.014675728976726532, + 0.0191404577344656, + -0.003451896831393242, + -0.014510368928313255, + 0.009087927639484406, + 0.000515028543304652, + 0.004395828582346439, + -0.01060373056679964, + -0.04318660497665405, + -0.011327182874083519, + -0.004430278670042753, + 0.0454740896821022, + -0.008199116215109825, + 0.0029334232676774263, + 0.01791403628885746, + 0.008715867064893246, + 7.352936518145725e-5, + 0.02422528713941574, + -0.0186168160289526, + -0.004065108019858599, + 0.008068205788731575, + 0.0014555153902620077, + 0.012002403847873211, + -0.020738940685987473, + 0.02192402258515358, + 0.03965891897678375, + 0.003036773530766368, + -0.0055085658095777035, + -0.01566789112985134, + -0.05123414099216461, + -0.022337423637509346, + 0.008088875561952591, + 0.017349055036902428, + 0.004213243257254362, + -0.018244756385684013, + 0.01122383214533329, + 0.007062263786792755, + -0.018299875780940056, + -0.010279900394380093, + -0.01197484415024519, + -0.018051836639642715, + 0.002528635086491704, + -0.02524501085281372, + 0.008674527518451214, + -0.017597094178199768, + 0.005946081597357988, + -0.004809229634702206, + -0.0037206073757261038, + 0.008915677666664124, + -0.025865111500024796, + 0.007799495477229357, + 0.022833505645394325, + -0.02744981460273266, + -0.015557650476694107, + -0.023288246244192123, + 0.013525096699595451, + 0.0017242259345948696, + 0.0019343713065609336, + -0.009659798815846443, + -0.0018172410782426596, + -0.010266120545566082, + -0.011409862898290157, + 0.0009094817796722054, + 0.0025837551802396774, + -0.009466879069805145, + 0.017335275188088417, + -0.009804489091038704, + -0.01586081087589264, + -0.03748167306184769, + -0.02619583159685135, + -0.018547916784882545, + 0.01247092429548502, + -0.014620608650147915, + 0.019788119941949844, + -0.0005102916620671749, + 0.025300130248069763, + -0.009170608595013618, + 0.006094216834753752, + -0.0035207970067858696, + -0.023384707048535347, + -0.0007751265075057745, + 0.007675474975258112, + -0.0006278525106608868, + 0.0008199115982279181, + -0.014372568577528, + 0.016797853633761406, + -0.013394186273217201, + 0.02824905514717102, + 0.019305817782878876, + -0.02168976329267025, + -0.025286350399255753, + -0.013773137703537941, + 0.0006696232012473047, + -0.003978983033448458, + -0.02367408759891987, + 0.022819725796580315, + -0.029709739610552788, + -0.020353101193904877, + -0.0006838338449597359, + -0.0035207970067858696, + -0.01637067273259163, + -0.013097915798425674, + 0.009763149544596672, + -0.011478763073682785, + 0.038694318383932114, + -0.01107914187014103, + 0.03103262186050415, + -0.011540772393345833, + 0.01010075956583023, + -0.01642579212784767, + -0.019264478236436844, + -0.028882937505841255, + 0.0021755218040198088, + -0.01122383214533329, + 0.011540772393345833, + -0.032355502247810364, + 0.0008789073908701539, + -0.016687612980604172, + 0.023357145488262177, + 0.005925411824136972, + 0.015419850125908852, + -0.012774085626006126, + 0.015323390252888203, + 0.028662456199526787, + 0.002885193098336458, + 0.011251391842961311, + -0.023357145488262177, + 0.0030574435368180275, + -0.015199369750916958, + 0.018589256331324577, + 0.016039952635765076, + -0.006931353826075792, + 0.00932907871901989, + 0.0068865688517689705, + -0.004623199347406626, + 0.009287738241255283, + 0.03662731125950813, + -0.01938849873840809, + 0.01637067273259163, + -0.0179002545773983, + 0.009301518090069294, + -0.020986981689929962, + -0.019278258085250854, + -0.02749115414917469, + 0.041973963379859924, + 0.0014537929091602564, + -0.019264478236436844, + -0.011823263019323349, + -0.0025234674103558064, + 0.003031606087461114, + 0.0012944613117724657, + -0.010569280944764614, + 0.002614760072901845, + 0.012594944797456264, + 0.008054425939917564, + -0.0059012966230511665, + 0.025685971602797508, + 0.004306258633732796, + -0.010376360267400742, + 0.013049685396254063, + -0.016687612980604172, + -0.009356638416647911, + -0.022337423637509346, + -0.004488843958824873, + 0.00984582956880331, + -0.010424590669572353, + -0.02827661670744419, + -0.005952971987426281, + 0.003992762882262468, + -0.0016363782342523336, + 0.006862453650683165, + -0.018754616379737854, + -0.028827816247940063, + 0.016825413331389427, + -0.0096046794205904, + -0.03439494967460632, + -0.019278258085250854, + 0.0037757274694740772, + 0.011389192193746567, + -0.017073454335331917, + -0.013228826224803925, + 0.01692187413573265, + 0.001076564658433199, + -0.001977433916181326, + -0.017817575484514236, + -0.008522947318851948, + 0.012188433669507504, + 0.0033554367255419493, + -0.02042200043797493, + 0.017790015786886215, + -0.00830935686826706, + 0.0020170514471828938, + -0.012891215272247791, + -0.008757207542657852, + -0.004764444660395384, + 0.02021530084311962, + -0.007151834201067686, + 0.014813529327511787, + -0.007723705377429724, + -0.04439924657344818, + 0.00031371094519272447, + 0.00416845828294754, + -0.025148550048470497, + 0.0031797413248568773, + 0.00515717500820756, + -0.0035035719629377127, + 0.007613465189933777, + 0.0053466507233679295, + -0.010651960968971252, + -0.004891909658908844, + -0.002726722974330187, + -0.0017690110253170133, + -0.008819217793643475, + -0.012284894473850727, + -0.0020515015348792076, + 0.07959343492984772, + -0.00017020486120600253, + 0.0048436797223985195, + 0.0012169486144557595, + 0.009983629919588566, + -0.014772188849747181, + -0.00042847273289225996, + 0.033650826662778854, + 0.003703382331877947, + 0.006376707460731268, + 0.002561362460255623, + -0.03701315447688103, + 0.012167763896286488, + 0.01991213858127594, + -0.010403920896351337, + -0.013531986624002457, + 0.0005580910947173834, + 0.033127184957265854, + -0.009370418265461922, + 0.019567638635635376, + -0.0025940900668501854, + -0.013828257098793983, + -0.0037309424951672554, + 0.016081292182207108, + -0.01258805487304926, + -0.011823263019323349, + 0.010893111117184162, + 0.005570576060563326, + 0.009900949895381927, + 0.006824558600783348, + 0.009728698991239071, + 0.016825413331389427, + -0.02725689485669136, + -1.1795111277024262e-5, + -0.0028524657245725393, + 0.00541899586096406, + 0.010913781821727753, + 0.009859609417617321, + 0.01663249358534813, + 0.008295576088130474, + -0.00265093264169991, + -0.0071380543522536755, + 0.022585464641451836, + 0.008130216039717197, + -0.010741530917584896, + -0.007282744627445936, + 0.012402024120092392, + -0.011561443097889423, + -0.006614413112401962, + 0.018782177940011024, + -0.0045405188575387, + -0.011072251945734024, + -0.002294374629855156, + -0.0008905342547222972, + 0.010431480593979359, + -0.006855563726276159, + 0.011568333022296429, + -0.004464728757739067, + -0.006194122135639191, + 0.005959861911833286, + -0.0032968714367598295, + -0.003510461887344718, + -0.017500635236501694, + -0.030619220808148384, + 0.004240803420543671, + -0.009156827814877033, + -0.00686934357509017, + -0.012257333844900131, + 0.00441305385902524, + 0.0005503398133441806, + 0.006459387950599194, + 0.01061062142252922, + 0.028690015897154808, + -0.015185589902102947, + -0.01610885187983513, + 0.021359043195843697, + -0.0004159845702815801, + 0.014841089025139809, + 0.004258028231561184, + 0.008770987391471863, + -0.0016294881934300065, + 0.0039686476811766624, + -0.007923515513539314, + -0.004833344370126724, + -0.006890013813972473, + -0.00019765726756304502, + 0.007282744627445936, + -0.009384198114275932, + -0.0006747907027602196, + -0.012560495175421238, + -0.008915677666664124, + 0.008157775737345219, + -0.004898799583315849, + -0.010796651244163513, + 0.010410810820758343, + -0.009170608595013618, + 0.0028007905930280685, + -0.027146654203534126, + 0.011161821894347668, + 0.0063939327374100685, + 0.001342691364698112, + -0.012608724646270275, + 0.016081292182207108, + 0.008943237364292145, + -0.009859609417617321, + -0.01021789014339447, + 0.010266120545566082, + -0.0006536900182254612, + -0.022006703540682793, + 0.008998357690870762, + 0.00845404714345932, + 0.006476612761616707, + -0.006052876822650433, + 0.0017948485910892487, + -0.028304176405072212, + -0.009756259620189667, + 0.016191532835364342, + -0.006025317125022411, + -0.014551708474755287, + -0.017500635236501694, + -0.01565411128103733, + -0.005405215546488762, + 0.002897250698879361, + -0.003792952513322234, + 0.0022030819673091173, + -0.018851077184081078, + -0.010941341519355774, + -0.020049938932061195, + 0.005756606347858906, + -0.006342257373034954, + 0.0124778151512146, + 0.008371366187930107, + 0.021607082337141037, + -0.005822061561048031, + 0.010858661495149136, + 0.0051812902092933655, + 0.0008285241201519966, + 0.02062870003283024, + 0.02017395943403244, + -0.0122159942984581, + 0.008516056463122368, + 0.004233913496136665, + -0.0017638434655964375, + 0.011533882468938828, + 0.01412452757358551, + 0.010583060793578625, + -0.00970113929361105, + -0.030068019405007362, + 0.0241701677441597, + 0.0014804917154833674, + 0.008274906314909458, + -0.02998533844947815, + -0.0020618366543203592, + -0.007923515513539314, + 0.020022379234433174, + 0.006431827787309885, + -0.0009017305565066636, + -0.002657822798937559, + -0.002165186684578657, + 0.003786062588915229, + -0.006800443399697542, + -0.025148550048470497, + 0.002423562342301011, + -0.0065558478236198425, + -0.0064800577238202095, + 0.014345007948577404, + 0.016742732375860214, + 0.02219962328672409, + 0.011010241694748402, + 0.00350012700073421, + -0.0021255691535770893, + -0.0034363942686468363, + -0.005150285083800554, + -0.03403666615486145, + -0.011154931969940662, + -0.012181543745100498, + 0.0014158978592604399, + 0.01590215228497982, + -0.021731102839112282, + 0.012512264773249626, + 0.010534830391407013, + -0.023508725687861443, + 0.02492806874215603, + -0.007799495477229357, + 0.008688307367265224, + -0.011299622245132923, + 0.019360939040780067, + -0.004823009483516216, + 0.001249676221050322, + 0.015461190603673458, + -0.02240632474422455, + 0.011651013046503067, + -0.03682023286819458, + 0.007089823950082064, + -0.019815679639577866, + 0.00579105643555522, + 0.01989835873246193, + 0.04156056046485901, + -0.0008474717033095658, + 0.0098320497199893, + -0.02594779059290886, + 0.00686934357509017, + 0.005642921198159456, + 0.0030987835489213467, + 0.01893375813961029, + -0.02193780429661274, + -0.018327435478568077, + -0.01820341683924198, + -0.00016126938862726092, + 0.01661871373653412, + -0.04271808639168739, + -0.021607082337141037, + 0.009239507839083672, + -0.00035677352570928633, + -0.024762708693742752, + 0.03180430456995964, + -0.000471104693133384, + 0.014841089025139809, + 0.004499178845435381, + -0.014689508825540543, + -0.0018310211598873138, + 0.02145550213754177, + 0.02399102784693241, + -0.011775033548474312, + -0.0037895075511187315, + 0.011389192193746567, + -0.012643175199627876, + 0.01475840900093317, + 0.004950474947690964, + -0.00959778856486082, + 0.041229840368032455, + -0.0054121059365570545, + 0.0028800256550312042, + 0.021744882687926292, + 0.009914729744195938, + 0.021069660782814026, + 0.01502022985368967, + -0.013015235774219036, + 0.0023322696797549725, + -0.015833251178264618, + -0.015144250355660915, + 0.01891997829079628, + 0.006331922486424446, + -0.0036964924074709415, + 0.008495386689901352, + -0.003393331775441766, + -0.0008229259983636439, + 0.0016027893871068954, + -0.0124778151512146, + -2.7909938580705784e-5, + -0.007537675090134144, + -0.03147358074784279, + -0.028662456199526787, + 0.027560055255889893, + -0.002750837942585349, + -0.01171302329748869, + 0.007510114926844835, + -0.012264224700629711, + -0.0049194698221981525, + 0.006331922486424446, + -0.00893634743988514, + 0.0025958125479519367, + 0.018589256331324577, + 0.011761253699660301, + 0.014496589079499245, + 0.00485745957121253, + -0.015778131783008575, + 0.011912833899259567, + -0.006748768500983715, + 0.018051836639642715, + -0.0007436908199451864, + -0.006166561972349882, + 0.024376867339015007, + -0.0020618366543203592, + -0.022585464641451836, + -0.00023404514649882913, + 0.020835401490330696, + 0.0035139068495482206, + 0.009797599166631699, + 0.011513212695717812, + -0.014565489254891872, + -0.015681670978665352, + -0.002569975098595023, + 0.00011131678184028715, + -0.0014589603524655104, + -0.028827816247940063, + 0.01096201129257679, + 0.011809483170509338, + 0.006628192961215973, + -0.006183787249028683, + -0.00415123300626874, + -0.012725855223834515, + 0.011148042045533657, + -0.007895955815911293, + 0.0007949353312142193, + -0.003458786755800247, + 0.01500645000487566, + 0.01586081087589264, + 0.010390140116214752, + -5.089459227747284e-5, + 0.007172503974288702, + -0.014193427748978138, + -0.008247346617281437, + -0.0004986647400073707, + 0.015226930379867554, + 0.013449306599795818, + 0.01312547642737627, + -0.010066309943795204, + -0.010438370518386364, + -0.0026767703238874674, + -0.010397030971944332, + -0.00515717500820756, + 0.010114540345966816, + 0.00921194814145565, + -0.008908787742257118, + -0.0009611569112166762, + 0.0006037374259904027, + 0.009728698991239071, + -0.0021565742790699005, + 0.026567893102765083, + -0.020008599385619164, + -0.009652908891439438, + -0.014703288674354553, + 0.0054327757097780704, + 0.0038963027764111757, + 0.009632239118218422, + 0.0029299783054739237, + 0.005594691261649132, + 0.010617511346936226, + -0.027546275407075882, + 0.00027839961694553494, + -0.0032744789496064186, + -0.028552217409014702, + -0.0051606204360723495, + -0.0041236733086407185, + 0.013697346672415733, + -0.00857806671410799, + 0.00675565842539072, + -0.0038997477386146784, + 0.00958400871604681, + -0.017307713627815247, + -0.009273958392441273, + -0.007193174213171005, + -0.016012391075491905, + -0.006369817536324263, + 0.03196966275572777, + 0.0021479616407305002, + -0.01158211287111044, + 0.003217636374756694, + 0.016053732484579086, + -0.0073103043250739574, + 0.004819564521312714, + 0.011402972973883152, + -0.008164666593074799, + -0.0011446034768596292, + -0.015736790373921394, + -0.0038067325949668884, + 0.015309610404074192, + 0.010645071044564247, + 0.005622250959277153, + -0.013263275846838951, + 0.03425714746117592, + -0.010810431092977524, + 0.002504519885405898, + 0.00034966820385307074, + -0.00625268742442131, + -0.00026720334426499903, + 0.036930471658706665, + -0.01222977414727211, + -0.004933249671012163, + 0.007330974563956261, + -0.03103262186050415, + -0.0072138444520533085, + -0.015819471329450607, + -0.009466879069805145, + -0.005291530396789312, + 0.006493838038295507, + 0.0016036506276577711, + 0.011458092369139194, + -0.002463179873302579, + 0.038942355662584305, + -0.006321587599813938, + -0.02295752614736557, + -0.003165961243212223, + 0.02775297500193119, + 0.01615019142627716, + -0.003405389143154025, + 0.016287991777062416, + -0.013394186273217201, + -0.0021617417223751545, + 0.0016570482403039932, + 0.019333377480506897, + 0.02574109099805355, + -0.017293933779001236, + 0.0020618366543203592, + -0.019553858786821365, + -0.011837043799459934, + 0.02800101600587368, + 0.012105753645300865, + -0.009790709242224693, + 0.0019102563383057714, + 0.006369817536324263, + 0.000956850650254637, + 0.022489003837108612, + -0.005077939946204424, + -0.026857273653149605, + 0.004650759045034647, + 0.006232017185539007, + 0.023577626794576645, + -0.00700025400146842, + 0.009425538592040539, + 0.0035655819810926914, + -0.0026836602482944727, + 0.0119886239990592, + 0.011265172623097897, + 0.0008233566186390817, + 0.01915423758327961, + -0.02368786744773388, + 0.009859609417617321, + 0.0024528447538614273, + 0.01247092429548502, + 0.020297979936003685, + 0.013993618078529835, + 0.007868395186960697, + 0.0067969984374940395, + 0.008068205788731575, + 0.015971051529049873, + -0.0007057957700453699, + -0.006986473686993122, + 0.027105312794446945, + -0.012443364597856998, + -0.006321587599813938, + -0.009935399517416954, + 0.0027818430680781603, + -0.010148989968001842, + -0.0011282397899776697, + 0.0037481673061847687, + -0.017307713627815247, + 0.008743427693843842, + 0.015833251178264618, + -0.025369029492139816, + -0.016990773379802704, + 0.023357145488262177, + -0.012698295526206493, + -0.009149937890470028, + 0.022089384496212006, + -0.004926359746605158, + 0.014537928625941277, + -0.00435448857024312, + 0.0014003952965140343, + 0.007620355114340782, + 0.01322193630039692, + 0.01739039458334446, + 0.008137105964124203, + -0.021055880934000015, + -0.024059927091002464, + -0.018506577238440514, + -0.012553605251014233, + 0.006486947648227215, + -0.004392383620142937, + 0.0024442323483526707, + 0.0008087153546512127, + 0.01400050800293684, + 0.012105753645300865, + -0.009184388443827629, + 0.003786062588915229, + 0.022888625040650368, + 0.02924121730029583, + 0.008908787742257118, + 0.010865551419556141, + 0.0001183144559036009, + 0.026650572195649147, + 0.036682434380054474, + -0.009494438767433167, + 0.00567737128585577, + 0.00882610771805048, + -0.003389886813238263, + 0.014565489254891872, + 0.004816119559109211, + -0.004261473659425974, + -0.009170608595013618, + 0.007585905026644468, + -0.011719913221895695, + 0.005260525271296501, + 0.0188786368817091, + -0.007358534727245569, + -0.018547916784882545, + 0.011189382523298264, + 0.01021789014339447, + 0.014854869805276394, + 0.010631291195750237, + -0.015998611226677895, + 0.018079396337270737, + 0.002358107129111886, + -0.010224780067801476, + -0.010259230621159077, + -0.005091720260679722, + 0.019512519240379333, + 0.013242606073617935, + -0.014041847549378872, + 0.014524148777127266, + -0.003934197593480349, + -0.003927307669073343, + 0.02525879070162773, + -0.0007557483622804284, + 0.013159926049411297, + -0.007709925062954426, + 0.0009585731313563883, + 0.011899053119122982, + 0.000678666343446821, + 0.018024275079369545, + 0.003319264156743884, + -0.01642579212784767, + 0.007579015102237463, + -0.017238814383745193, + 0.007427434902638197, + 0.003637927118688822, + 0.006566183175891638, + 0.03210746496915817, + -0.0068727885372936726, + 0.004571523983031511, + 0.0016105406684800982, + -0.0005089997430332005, + 0.023894567042589188, + 0.0034949593245983124, + -0.00981826987117529, + 0.01287743542343378, + 0.0020980092231184244, + -0.002234086859971285, + -0.013153036125004292, + -0.01712857373058796, + -0.006207902450114489, + -0.0041236733086407185, + 0.003289981512352824, + 0.004395828582346439, + 0.02346738614141941, + 0.01839633658528328, + -0.0018310211598873138, + 0.04406852647662163, + 0.006700538098812103, + 0.004278698470443487, + -0.002819738117977977, + -0.004430278670042753, + -0.029654618352651596, + -0.006083881948143244, + -0.0025475826114416122, + -0.012815425172448158, + -0.0005748855182901025, + -0.005456890910863876, + 0.005698041059076786, + -0.017073454335331917, + 0.007572125177830458, + 0.040210120379924774, + 0.028938056901097298, + 0.034670550376176834, + -0.008295576088130474, + -0.012856765650212765, + -0.007889065891504288, + 0.023412266746163368, + -0.004492288921028376, + -0.001936093787662685, + -0.022847285494208336, + -0.003381274174898863, + 0.008612517267465591, + -0.0009611569112166762, + 0.0045267390087246895, + 0.011706133373081684, + 0.014565489254891872, + -0.008543617092072964, + 0.01565411128103733, + -0.013063466176390648, + -0.0025958125479519367, + -0.016563592478632927, + 0.001849968684837222, + 0.013029015623033047, + 0.0019567639101296663, + -0.006628192961215973, + -0.00398242799565196, + 0.012457144446671009, + -0.010486600920557976, + -0.0004784253251273185, + -0.0020497790537774563, + -0.04007231816649437, + -0.0022323643788695335, + 0.003868742613121867, + 0.024004807695746422, + 0.009025918319821358, + 0.008233565837144852, + 0.018313655629754066, + -0.028111254796385765, + 0.01893375813961029, + -0.004850569646805525, + -0.004120228346437216, + 0.007613465189933777, + 0.00037895076093263924, + -0.0076272450387477875, + -0.00636637257412076, + 0.007399874739348888, + -0.027132874354720116, + -0.03202478215098381, + -0.0076272450387477875, + 0.008137105964124203, + 0.0008255097782239318, + 0.0017879585502669215, + -0.010507270693778992, + -0.001108430908061564, + 0.02068382129073143, + -0.002985098399221897, + -0.008791657164692879, + -0.02676081284880638, + -0.03885967656970024, + 0.02721555344760418, + -0.0039686476811766624, + -0.0010584783740341663, + 0.009032808244228363, + -0.020559800788760185, + 0.030839700251817703, + 0.0038136225193738937, + 0.0222134031355381, + -0.023288246244192123, + -0.0023391596041619778, + 0.005701486486941576, + 0.005718711297959089, + 0.022116944193840027, + -0.0015778131783008575, + -0.012698295526206493, + -0.010596840642392635, + 0.0052467454224824905, + 0.011809483170509338, + -0.004816119559109211, + -0.014537928625941277, + 0.006028762087225914, + 0.007634134963154793, + -0.026099370792508125, + 0.01838255673646927, + -0.021290142089128494, + -0.0047851144336164, + -0.0004874684673268348, + 0.009535779245197773, + -0.0010963734239339828, + 0.003527686931192875, + -0.014978889375925064, + 0.004740329459309578, + 0.025561951100826263, + 0.003844627644866705, + -0.016343113034963608, + 0.03150114417076111, + 0.003031606087461114, + -0.010321240872144699, + 0.006276802625507116, + -0.01438634842634201, + 0.0028455755673348904, + -0.018079396337270737, + 0.004626644309610128, + 0.022544125095009804, + -0.02144172228872776, + -0.0011006796266883612, + -0.019057778641581535, + 0.029599498957395554, + -0.009232617914676666, + -0.016536032781004906, + -0.028056135401129723, + -0.007165614049881697, + 0.008364476263523102, + -0.0117268031463027, + -0.0039686476811766624, + 0.01197484415024519, + 0.01637067273259163, + -0.00783394556492567, + 0.0005645505152642727, + -0.011961063370108604, + 0.004337263759225607, + -0.010782871395349503, + 0.01250537484884262, + 0.010782871395349503, + -0.017707334831357002, + 0.0030746685806661844, + -0.01714235357940197, + 0.01094823144376278, + -0.027573835104703903, + -0.0030522760935127735, + 0.0012307286961004138, + -0.007489444687962532, + -0.0347532294690609, + -8.989314665086567e-6, + 0.0026423202361911535, + -0.006848673336207867, + -0.006583407986909151, + -0.018244756385684013, + -0.012202214449644089, + -0.020876741036772728, + -0.008392036892473698, + -0.035690270364284515, + -0.012450254522264004, + 0.010893111117184162, + 0.005153730046004057, + -0.020862961187958717, + -0.00504348985850811, + -0.0003780894912779331, + 0.005453445948660374, + -0.028304176405072212, + 0.009446208365261555, + -0.01737661473453045, + -0.01590215228497982, + -0.007031259126961231, + -0.019292037934064865, + 0.015571431256830692, + -0.0035965871065855026, + 0.018589256331324577, + 0.006986473686993122, + -0.005773831624537706, + 0.0032520864624530077, + -0.0010627845767885447, + -0.009687359444797039, + -0.010273010469973087, + -0.032438185065984726, + 0.036461953073740005, + -0.0001681594003457576, + -0.0007096714107319713, + 0.00504348985850811, + 0.013545766472816467, + 0.0029558157548308372, + -0.021510623395442963, + -0.0012135036522522569, + 0.022254744544625282, + -0.016563592478632927, + -0.010307460092008114, + 0.022778384387493134, + -0.00870897714048624, + 0.014103857800364494, + 0.00806131586432457, + 0.01287743542343378, + -0.00015760905807837844, + 0.0054982309229671955, + -0.025617070496082306, + -0.007875286042690277, + -0.005884071812033653, + 0.011837043799459934, + -0.005146840121597052, + 0.005143395159393549, + 0.00048402344691567123, + -0.03103262186050415, + -0.018782177940011024, + 0.01944361813366413, + -0.0019877690356224775, + -0.02470758929848671, + -0.011719913221895695, + -0.016770293936133385, + -0.015144250355660915, + 0.009046588093042374, + -0.0008957017562352121, + -0.015034009702503681, + 0.017349055036902428, + 0.010486600920557976, + 0.015516310930252075, + -0.008991467766463757, + -0.0060012019239366055, + -0.008764097467064857, + 0.00586340157315135, + 0.02192402258515358, + 0.012691404670476913, + 0.018038054928183556, + 0.0054982309229671955, + 0.006593742873519659, + 0.004698989447206259, + 0.015998611226677895, + 0.0012824038276448846, + -0.010624401271343231, + -0.005353540647774935, + 0.016990773379802704, + 0.003913527820259333, + -0.015461190603673458, + 0.00035332850529812276, + -0.0029558157548308372, + -0.005484451074153185, + -0.014262327924370766, + 0.010583060793578625, + -0.001164412358775735, + -0.011919723823666573, + 0.01135474257171154, + -0.008150885812938213, + 0.01664627343416214, + -0.03861163556575775, + 0.009487548843026161, + -0.01349753700196743, + -0.0004110323789063841, + 0.03502883017063141, + 0.018051836639642715, + 0.01324949599802494, + 0.0028369631618261337, + -0.0033485465683043003, + -0.0018516911659389734, + -0.02013261988759041, + -0.02343982644379139, + 0.03152870386838913, + 0.004723104182630777, + 0.0051055001094937325, + 0.013649117201566696, + -0.006614413112401962, + -0.008268016390502453, + 0.011058472096920013, + 0.007351644337177277, + 0.005632586311548948, + -0.020601140335202217, + -0.01792781613767147, + 0.021772442385554314, + 4.3277897930238396e-5, + -0.010355690494179726, + 0.01031435001641512, + 0.0005016791401430964, + 0.004533628933131695, + 0.0033606041688472033, + 0.00783394556492567, + 0.02524501085281372, + 0.016053732484579086, + 0.0071242740377783775, + 0.01224355399608612, + -0.004561189096421003, + -0.007413654588162899, + 0.022309863939881325, + -0.024404428899288177, + 0.0011626897612586617, + 0.012202214449644089, + 0.0012505374616011977, + -0.014028067700564861, + 0.012429584749042988, + -0.0032159138936549425, + -0.013972947373986244, + 0.007041594013571739, + -0.02651277184486389, + -0.011334072798490524, + -0.003376106731593609, + -0.00485745957121253, + 0.01615019142627716, + 0.004523294046521187, + -0.019223138689994812, + -0.016315551474690437, + -0.00750322500243783, + 0.0007949353312142193, + -0.011272062547504902, + 0.008516056463122368, + -0.033375225961208344, + 0.01743173412978649, + 0.005918521899729967, + 0.005580910947173834, + 0.013917827978730202, + -0.005918521899729967, + 0.003975538071244955, + 0.0003066055942326784, + -0.023384707048535347, + -0.004120228346437216, + 0.014909989200532436, + 0.0016484357183799148, + -0.0003033759130630642, + -0.013194375671446323, + 0.023302026093006134, + -0.011402972973883152, + 0.0010602008551359177, + -0.001662215800024569, + -0.009776929393410683, + 0.006204457487910986, + 0.00022801638988312334, + 0.0124778151512146, + -0.007303414400666952, + 0.009273958392441273, + -0.008378257043659687, + -0.0037378324195742607, + 0.010148989968001842, + -0.011458092369139194, + -0.004258028231561184, + -0.004774779547005892, + -0.01211953442543745, + -0.014028067700564861, + 0.012725855223834515, + 0.016563592478632927, + 0.016522252932190895, + 0.01967787928879261, + -0.024776488542556763, + 0.01612263172864914, + 0.01185771357268095, + -0.004571523983031511, + 0.011823263019323349, + 0.008591846562922001, + 0.01970543898642063, + 0.006762548349797726, + 0.0044509489089250565, + 0.02979241870343685, + -0.017183693125844002, + 0.01736283488571644, + 0.008895007893443108, + -0.01612263172864914, + 0.00897079799324274, + 0.021772442385554314, + 0.0005494785727933049, + 0.004461283795535564, + -0.011272062547504902, + -0.0036827123258262873, + 0.0011962786084041, + -0.01817585527896881, + 0.002582032699137926, + -0.006855563726276159, + 0.0048023397102952, + -0.016811633482575417, + -0.01185771357268095, + -0.022103164345026016, + 0.013828257098793983, + -0.03610367327928543, + -0.011878383345901966, + -0.0039583127945661545, + 0.017321493476629257, + -0.010024969466030598, + -0.0048023397102952, + -9.323049744125456e-5, + -0.012753414921462536, + -6.405559543054551e-5, + 0.003954867832362652, + 0.002316767117008567, + -0.020490899682044983, + 0.007475664839148521, + -0.006672978401184082, + -0.019250698387622833, + 0.012064414098858833, + -0.014620608650147915, + 0.0042855883948504925, + 0.003112563630566001, + -0.003985872957855463, + -0.025823771953582764, + -0.00643871771171689, + 0.0028369631618261337, + -0.006028762087225914, + 0.028441976755857468, + -0.0075514549389481544, + 0.00846782699227333, + -0.006786663550883532, + -0.008743427693843842, + -0.0058151716366410255, + 0.005088275298476219, + -0.03456030786037445, + 0.0067315432243049145, + -0.005294975358992815, + 0.017073454335331917, + 0.005536125972867012, + -0.0019670987967401743, + -0.011182491667568684, + -0.012036853469908237, + 0.00580483628436923, + -0.014951329678297043, + 0.005057270172983408, + 0.012767195701599121, + 0.02170354314148426, + 0.008715867064893246, + 0.009466879069805145, + 0.022089384496212006, + -0.004805784672498703, + 0.02498319000005722, + 0.011589002795517445, + -0.014138308353722095, + -0.020091280341148376, + -0.009349748492240906, + -0.004709324333816767, + -0.005549905821681023, + -0.013077246025204659, + 0.011196272447705269, + -0.01375246699899435, + -0.011127372272312641, + 0.007723705377429724, + 0.0014985779998824, + 0.018713276833295822, + 0.0012178098550066352, + -0.0009801044361665845, + 0.0018981987377628684, + -0.004323483444750309, + -0.0015347505686804652, + 0.006769438274204731, + 0.03615879267454147, + 0.019471177831292152, + -0.008881227113306522, + -0.001298767514526844, + -0.017321493476629257, + 0.022268524393439293, + -0.004833344370126724, + -0.007827055640518665, + 0.012574275024235249, + -0.00022930826526135206, + 0.011216942220926285, + 0.006762548349797726, + 0.017321493476629257, + 0.002883470617234707, + 0.019829459488391876, + -0.01286365557461977, + 8.047320443438366e-5, + -0.02192402258515358, + -0.0008160360157489777, + 0.0032744789496064186, + -0.02195158414542675, + 0.011526992544531822, + 0.034422509372234344, + 0.01891997829079628, + -0.001694082049652934, + -0.0038480726070702076, + 0.0019705439917743206, + 0.02623717114329338, + 0.00024244235828518867, + -0.0006312974728643894, + 0.0002872274490073323, + -0.00523296557366848, + 0.0011222109897062182, + 0.002399447141215205, + -0.0196640994399786, + 0.005570576060563326, + 0.0032675890251994133, + -0.0054086605086922646, + -0.03180430456995964, + 0.00795107614248991, + -0.00921194814145565, + 0.02044956013560295, + -0.015612770803272724, + 0.014103857800364494, + -0.019581418484449387, + 0.03282402455806732, + 0.0023494947236031294, + 0.012071304023265839, + -0.006910683587193489, + -0.01635689288377762, + 0.003610367188230157, + 0.012043743394315243, + -0.0020239416044205427, + -0.019746778532862663, + -0.0012212549336254597, + -0.006597187835723162, + 0.005012484733015299, + -0.0013728352496400476, + 0.004533628933131695, + -0.006008091848343611, + -0.010514160618185997, + 0.0015295830089598894, + -0.006039096973836422, + 0.008474716916680336, + 0.0009904394391924143, + 0.01438634842634201, + 0.004092668183147907, + 0.006207902450114489, + -0.014510368928313255, + -0.00047756408457644284, + 0.007468774914741516, + -0.004712769296020269, + 0.023012645542621613, + -0.003930752631276846, + 0.013897157274186611, + 0.005350095685571432, + -0.005942636635154486, + -0.01865815743803978, + -0.004392383620142937, + 0.029351457953453064, + 0.02168976329267025, + 0.003954867832362652, + -0.008240456692874432, + -0.0021806892473250628, + 0.032961826771497726, + 0.032410625368356705, + -0.023660307750105858, + 0.007889065891504288, + 0.001918868743814528, + -0.011761253699660301, + -0.010527940467000008, + 0.011506322771310806, + -0.03257598355412483, + 0.015461190603673458, + -0.0010266120079904795, + 0.003810177557170391, + -0.010900001972913742, + 0.0279596745967865, + -0.005201960448175669, + 0.011189382523298264, + -0.003059166017919779, + -0.00504348985850811, + 0.006748768500983715, + 0.02622339129447937, + -0.007131163962185383, + -0.005029710009694099, + 0.0006015843246132135, + -0.010913781821727753, + -0.0010248895268887281, + 0.001644990756176412, + 0.01284987572580576, + -0.006910683587193489, + -0.0014158978592604399, + 0.0072896345518529415, + -0.002416672185063362, + -0.012395134195685387, + -0.011244501918554306, + -0.0020463340915739536, + -0.0006304362323135138, + 0.03761947527527809, + 0.004860904533416033, + 0.0034897918812930584, + 0.010383250191807747, + 0.0005705792573280632, + 0.009687359444797039, + -0.024514667689800262, + -0.012105753645300865, + 0.016219092532992363, + -0.004382048733532429, + -0.001989491516724229, + 0.015474970452487469, + 0.02295752614736557, + 0.017087234184145927, + 0.0011239334708079696, + -0.0031108411494642496, + -0.0038652976509183645, + -0.009639129042625427, + -0.00843337643891573, + -0.02141416259109974, + -0.01791403628885746, + -0.002001548884436488, + -0.0030522760935127735, + -0.012222884222865105, + 0.00794418528676033, + 0.0067212083376944065, + 0.01237446442246437, + -0.00016945127572398633, + 0.00655240286141634, + 0.019292037934064865, + -0.022861065343022346, + 0.00311945378780365, + 0.026030471548438072, + 0.012071304023265839, + -0.0277667548507452, + 0.010045640170574188, + 0.009012137539684772, + 0.007682365365326405, + 0.014799749478697777, + -0.00028055274742655456, + 0.0015226929681375623, + 0.009046588093042374, + 0.0014055627398192883, + 0.01865815743803978, + -0.0191404577344656, + 0.012388244271278381, + 0.0023718872107565403, + 0.018520357087254524, + 0.01712857373058796, + 0.016219092532992363, + 0.012043743394315243, + -0.009115488268435001, + 0.007923515513539314, + 0.004261473659425974, + -0.014220988377928734, + -0.008502276614308357, + 0.022613024339079857, + -0.01685297302901745, + 0.00446817371994257, + -0.008006195537745953, + 0.0024425098672509193, + -0.03433982655405998, + -0.015585211105644703, + -0.01500645000487566, + 0.007641025353223085, + -0.029654618352651596, + 0.02725689485669136, + 0.016453351825475693, + -0.0031814638059586287, + -0.007475664839148521, + -0.001132545992732048, + 0.01274652499705553, + 0.02065626159310341, + -0.002077339217066765, + -0.0032572539057582617, + -0.019719218835234642, + 0.005642921198159456, + -0.008199116215109825, + -0.029048297554254532, + 0.009115488268435001, + -0.006672978401184082, + 0.009776929393410683, + 0.005009039770811796, + 0.010410810820758343, + 0.003219358855858445, + 0.015240710228681564, + -0.023839447647333145, + -0.017211254686117172, + -0.0229299645870924, + 0.015571431256830692, + -0.0009706306736916304, + 0.011892163194715977, + 0.020876741036772728, + -0.022544125095009804, + 0.0018861412536352873, + -0.0014469028683379292, + 0.001725948415696621, + 0.02622339129447937, + -0.005429330747574568, + -0.03913527727127075, + 0.004588749259710312, + 0.0038411826826632023, + -0.008646966889500618, + -0.011244501918554306, + -0.0021858569234609604, + 0.008640076965093613, + -0.004347598645836115, + -0.04238736256957054, + -0.015681670978665352, + 0.01171302329748869, + -0.009391088970005512, + -0.015998611226677895, + 0.018713276833295822, + 0.007579015102237463, + 0.0063835978507995605, + -0.008757207542657852, + 0.008901897817850113, + 0.011823263019323349, + 0.004316593520343304, + -0.009804489091038704, + -0.01566789112985134, + 0.0005494785727933049, + 0.011961063370108604, + -0.011492542922496796, + -0.02222718484699726, + 0.01714235357940197, + 0.007854615338146687, + 0.005450000986456871, + 0.030205819755792618, + -0.0003709841694217175, + 0.0032159138936549425, + 0.009005247615277767, + -0.010741530917584896, + 0.017514415085315704, + -0.0025062423665076494, + 0.002943758387118578, + 0.0013538877246901393, + -0.009997409768402576, + 0.0042855883948504925, + -0.032879143953323364, + -0.02044956013560295, + 0.003985872957855463, + 0.013297726400196552, + -0.003972092643380165, + 0.008398926816880703, + -0.015791911631822586, + -0.008495386689901352, + -0.009887169115245342, + 0.038997478783130646, + 0.010782871395349503, + -0.020518461242318153, + -0.03106018155813217, + -0.010155879892408848, + -0.002780120586976409, + -6.782357377232984e-5, + -0.008516056463122368, + 0.007861505262553692, + 0.004616308957338333, + -0.012842985801398754, + 0.0020497790537774563, + 0.007572125177830458, + 0.038721878081560135, + 0.004874684847891331, + -0.016081292182207108, + -0.015585211105644703, + -0.008123326115310192, + -0.0005029710009694099, + -0.019360939040780067, + 0.0007557483622804284, + 0.009949179366230965, + 0.026416312903165817, + 0.007045038975775242, + -0.020532241091132164, + 0.0005421579699032009, + -0.0056498111225664616, + 0.002785288030281663, + 0.003668932244181633, + -0.0032606988679617643, + 0.004216688219457865, + 0.0009585731313563883, + 0.0046783192083239555, + 0.011402972973883152, + -0.011478763073682785, + 0.021069660782814026, + 0.015268269926309586, + -0.0004560327797662467, + 0.008123326115310192, + 0.008343806490302086, + -0.004819564521312714, + -0.005222630221396685, + -0.017500635236501694, + -0.006362927611917257, + 0.02744981460273266, + 0.03885967656970024, + 0.011120482347905636, + 0.0030402184929698706, + 0.0019016438163816929, + -0.003913527820259333, + -0.0439031682908535, + 0.013697346672415733, + 0.004395828582346439, + -0.013614666648209095, + -0.00768925528973341, + 0.0073103043250739574, + -0.015502531081438065, + 0.004161568358540535, + 0.011664792895317078, + -0.012429584749042988, + -0.010713971219956875, + -0.0055740210227668285, + -0.0021617417223751545, + -0.003913527820259333, + 0.012029963545501232, + 0.003551802132278681, + -0.0010843159398064017, + -0.007234514225274324, + 0.005846176762133837, + 0.019994819536805153, + -0.003923862706869841, + 0.0010136932833120227, + -0.014661949127912521, + -0.008495386689901352, + 0.006662643048912287, + -0.0001374772982671857, + -0.00547411572188139, + -0.00931529887020588, + -0.006769438274204731, + -0.00168891460634768, + 0.02017395943403244, + 0.0027542829047888517, + 0.009446208365261555, + 0.009253288619220257, + 0.011327182874083519, + -0.01969165913760662, + -0.010486600920557976, + 0.028607336804270744, + -0.0008044090936891735, + -0.014634388498961926, + 0.003792952513322234, + -0.0015063292812556028, + 0.007847725413739681, + -0.017252594232559204, + 0.021772442385554314, + 0.003551802132278681, + -0.005832396447658539, + -0.0033209866378456354, + -0.010789761319756508, + 0.020242860540747643, + 0.007344754412770271, + 0.004781669471412897, + -0.01660493202507496, + -0.003989317920058966, + -0.017087234184145927, + -0.009280848316848278, + 0.0069416887126863, + 0.017721114680171013, + 0.01136852242052555, + 0.009666688740253448, + 0.002211694372817874, + 0.006986473686993122, + 0.005363875534385443, + 0.017555754631757736, + -0.0072138444520533085, + 0.008977687917649746, + -0.005918521899729967, + -0.007206954061985016, + -0.022089384496212006, + 0.0001777408178895712, + -0.014909989200532436, + 2.555495302658528e-5, + 0.014220988377928734, + -0.018038054928183556, + 0.0057393815368413925, + -0.007010588888078928, + -0.00817844644188881, + 0.0011161821894347668, + 0.012043743394315243, + -0.00783394556492567, + -0.01412452757358551, + 0.0012410636991262436, + -0.0005675648571923375, + 0.000785892189014703, + -0.00043945369543507695, + -0.01500645000487566, + -0.009542669169604778, + 0.008295576088130474, + -0.0010541720548644662, + 0.0023787771351635456, + -0.012836094945669174, + -0.01335284672677517, + 0.005780721548944712, + 0.005763496272265911, + 0.007613465189933777, + 0.018313655629754066, + -0.011885273270308971, + -0.0008453185437247157, + 0.00910170841962099, + -0.0040444377809762955, + -0.022502783685922623, + 0.021372823044657707, + 0.0021324593108147383, + -0.02197914384305477, + 1.5758214431116357e-5, + -0.006132112350314856, + 0.006159672047942877, + -0.012195324525237083, + 0.039190396666526794, + 0.005711821373552084, + -0.00391008285805583, + 0.005594691261649132, + 0.0058255065232515335, + 0.02951681800186634, + 0.004912579897791147, + -0.016453351825475693, + 0.016770293936133385, + 0.017321493476629257, + -0.003558692056685686, + -0.01566789112985134, + 0.0028817481361329556, + -0.0327964648604393, + 0.011754362843930721, + -0.020339319482445717, + -0.019002657383680344, + -0.012271114625036716, + -0.01474462915211916, + 0.014827309176325798, + 0.011444312520325184, + -0.006359482649713755, + -0.006583407986909151, + -0.0019274812657386065, + -0.021303921937942505, + 0.015543870627880096, + -0.009425538592040539, + -0.01613641157746315, + 0.016728952527046204, + 0.014537928625941277, + 0.012650065124034882, + 0.005146840121597052, + 0.001079148380085826, + -0.003463954431936145, + 0.018286095932126045, + -0.004571523983031511, + 0.02167598344385624, + 0.006014981772750616, + 0.002189301885664463, + -0.012526044622063637, + 0.013201266527175903, + -0.0027301679365336895, + 0.010865551419556141, + 0.003482901956886053, + -0.010328130796551704, + 0.0001380155881633982, + 0.005370765458792448, + -0.019471177831292152, + 0.004561189096421003, + 0.0008621129672974348, + 0.013015235774219036, + 0.0006722069811075926, + 0.007303414400666952, + -0.009191278368234634, + 0.006486947648227215, + -0.006407712586224079, + -0.022254744544625282, + -0.0006851257057860494, + 0.002728445455431938, + -0.018851077184081078, + 0.0034725668374449015, + 0.017018333077430725, + 0.015612770803272724, + 0.003620702074840665, + 0.007062263786792755, + -0.01528205070644617, + 0.00035009882412850857, + 0.012064414098858833, + 0.002370164729654789, + 0.036654870957136154, + -0.0056739263236522675, + 0.005870291497558355, + 0.023577626794576645, + 0.0013444139622151852, + 0.006080436985939741, + -0.00662474799901247, + 0.002521744929254055, + -0.0018913086969405413, + 0.015598990954458714, + -0.005904741585254669, + 0.013084135949611664, + -0.01236068457365036, + 0.018451455980539322, + -0.0024562899488955736, + 0.006600633263587952, + -0.04131252318620682, + -0.0010774258989840746, + 0.01741795428097248, + 0.019278258085250854, + -0.00472654914483428, + 0.004175348207354546 + ], + "e4ff673f-243b-42b3-b92d-995b4207cd38": [ + -0.04573989659547806, + -0.05172455683350563, + -0.00967163685709238, + 0.0314461775124073, + -0.036335431039333344, + -0.025180988013744354, + 0.006508985068649054, + 0.030190469697117805, + 0.009257519617676735, + 0.01631086878478527, + 0.005583900958299637, + 0.016818495467305183, + 0.0041845859959721565, + -0.020625701174139977, + 0.015148668549954891, + 0.03318279981613159, + -0.05009480565786362, + 0.009304274804890156, + 0.006435512565076351, + -0.028213392943143845, + 0.06091528385877609, + 0.003974187653511763, + -0.016083771362900734, + -0.018581833690404892, + 0.011882487684488297, + -0.012169698253273964, + 0.001978744752705097, + 0.005590580403804779, + -0.06182366609573364, + 0.0022191999014467, + -0.002815328072756529, + -0.020331811159849167, + 0.023951996117830276, + 0.009738430380821228, + 0.04258726164698601, + -0.018995949998497963, + -0.008355813100934029, + 0.01357235200703144, + -0.02455313317477703, + -0.009017065167427063, + -0.02286994829773903, + 0.027131346985697746, + -0.0077346377074718475, + 0.018675342202186584, + -0.03091183304786682, + 0.0031158968340605497, + -0.038312505930662155, + -0.012957856059074402, + 0.011094328947365284, + 0.011014177463948727, + -0.014133414253592491, + -0.004144510254263878, + -0.005416918080300093, + 0.015375765040516853, + 0.05872447043657303, + -0.035720936954021454, + 0.003014037385582924, + 0.02134706638753414, + 0.008088640868663788, + -0.04304145649075508, + -0.025595106184482574, + -0.020879514515399933, + -0.0030273960437625647, + -0.02526113949716091, + -0.023083684965968132, + 0.016684910282492638, + -0.0199577696621418, + 0.017152460291981697, + -0.031125571578741074, + -0.031125571578741074, + -6.042685708962381e-5, + 0.03125915676355362, + -0.023805050179362297, + 0.016110489144921303, + 0.03673619031906128, + -0.055678706616163254, + 0.04718262702226639, + 0.015202103182673454, + -0.002299351617693901, + -0.02083943784236908, + 0.022616134956479073, + 0.010179264470934868, + 0.010720288380980492, + -0.00421798275783658, + 0.03847280889749527, + 0.012049470096826553, + -0.01128802914172411, + -0.04549944028258324, + 0.030270621180534363, + -0.0480375774204731, + 0.0067895157262682915, + 0.013839524239301682, + -0.008268982172012329, + -0.028827890753746033, + -0.015642937272787094, + 0.01751314289867878, + 0.011869128793478012, + 3.6501369322650135e-5, + 0.0055738817900419235, + -0.023350859060883522, + 0.005640674848109484, + -0.004705572035163641, + 0.0028888003434985876, + -0.01317159365862608, + -0.004094415344297886, + 0.014253641478717327, + 0.01695208251476288, + 0.002705119550228119, + -0.023925278335809708, + 0.07780057191848755, + 0.019797466695308685, + -0.043816257268190384, + -0.01067353319376707, + -0.005062914919108152, + -0.057655781507492065, + -0.045285701751708984, + -0.01860854960978031, + -0.01031953003257513, + -0.031980521976947784, + -0.022656209766864777, + 0.021747823804616928, + 0.01963716372847557, + -0.004936008248478174, + 0.03128587454557419, + -0.01795397698879242, + 0.029014911502599716, + 0.017446350306272507, + 0.006124924868345261, + 0.013472163118422031, + 0.006482267752289772, + -0.01149508822709322, + 0.020171508193016052, + 0.031980521976947784, + 0.008202189579606056, + 0.0034799191635102034, + -0.014681117609143257, + 0.024980608373880386, + 0.08223563432693481, + -0.0024997307918965816, + 0.04036973416805267, + -0.0595259852707386, + -0.030591227114200592, + -6.261850649025291e-5, + -0.0042446996085345745, + -0.004859196022152901, + -0.004351568873971701, + -0.04793071001768112, + 0.037163667380809784, + -0.024032147601246834, + 0.017940619960427284, + -0.04849177226424217, + -0.026009222492575645, + 0.003823903389275074, + -0.004799082409590483, + 0.0514039471745491, + -0.011528484523296356, + 0.008542833849787712, + 0.037110231816768646, + 0.002955593401566148, + 0.07261742651462555, + 0.03705679625272751, + -0.04248039424419403, + -0.005954602267593145, + 0.011601956561207771, + 0.06006032973527908, + -0.00448181526735425, + 0.0317935012280941, + 0.02460656873881817, + 0.01005235780030489, + 0.018301302567124367, + 0.03502628579735756, + -0.03363699093461037, + 0.02646341547369957, + -0.01359906978905201, + 0.031098853796720505, + -0.009985564276576042, + 0.04865207523107529, + 0.014267000369727612, + 0.027946220710873604, + -0.039140742272138596, + -0.0011964308796450496, + -0.020171508193016052, + -0.003519994905218482, + -0.010393002070486546, + -0.0036736188922077417, + -0.00021196364832576364, + 0.02490045689046383, + 0.017406275495886803, + -0.023764975368976593, + -0.011528484523296356, + -0.006999914068728685, + 0.0070132724940776825, + -0.024219168350100517, + -0.014975006692111492, + -0.043762821704149246, + -0.029950013384222984, + 0.008516116999089718, + 0.013892958872020245, + 0.011869128793478012, + 0.038312505930662155, + -0.0023310782853513956, + -0.04389640688896179, + -0.04448418691754341, + 0.04256054759025574, + -0.01716581918299198, + 0.00736727612093091, + -0.011702146381139755, + 0.0065690986812114716, + 0.036629319190979004, + -0.0314461775124073, + 0.022322244942188263, + -0.05070929974317551, + 0.01939670741558075, + 0.010920667089521885, + -0.009070498868823051, + 0.02428596094250679, + -0.000373623741324991, + 0.03694992884993553, + -0.0033613613341003656, + -0.04341549798846245, + -0.0011914214119315147, + -0.02198828011751175, + -0.0027168081142008305, + -0.023618031293153763, + -0.03149961307644844, + 0.01834137737751007, + -0.03622856363654137, + 0.03374386206269264, + -0.047583386301994324, + -0.0035801087506115437, + 0.04910626634955406, + -0.0032762002665549517, + 0.009851978160440922, + -0.021360425278544426, + 0.007146858610212803, + 0.041759029030799866, + -0.010145868174731731, + 0.024299319833517075, + -0.019744032993912697, + -0.007601051591336727, + 0.004972744267433882, + 0.01616392284631729, + -0.0027869408950209618, + -0.008850081823766232, + 0.015108592808246613, + 0.01565629616379738, + 0.0070132724940776825, + 0.05845729634165764, + 0.020558908581733704, + 0.0016982138622552156, + 0.01448073796927929, + -0.00953805074095726, + 0.006712703965604305, + 0.0038172241766005754, + -0.039167456328868866, + 0.0399155393242836, + 0.042907871305942535, + -0.021119968965649605, + 0.014801344834268093, + 0.004889253061264753, + 0.002569863572716713, + 0.01834137737751007, + 0.008028527721762657, + 0.045846763998270035, + 0.03705679625272751, + -0.012102904729545116, + 0.02387184463441372, + 0.02122683823108673, + 0.004281436093151569, + 0.018154356628656387, + 0.03232784569263458, + -0.005767581984400749, + -0.011869128793478012, + 0.03521330654621124, + -0.0030607925727963448, + 0.008202189579606056, + -0.011020856909453869, + 0.005871111061424017, + 0.02037188783288002, + -0.00313927442766726, + 0.00258322199806571, + -2.856969331332948e-5, + 0.024913815781474113, + -0.007173575926572084, + 0.00923080276697874, + 0.07021287828683853, + -0.03120572306215763, + 0.011601956561207771, + -0.017205895856022835, + 0.00018169803661294281, + 0.010927346535027027, + 0.0002905498549807817, + -0.013585710898041725, + 0.01665819250047207, + 0.012637249194085598, + 0.0031459536403417587, + -0.01386624202132225, + 0.023805050179362297, + -0.035106439143419266, + 0.001970395678654313, + -0.015910109505057335, + 0.0266103595495224, + 0.022803155705332756, + -0.052793245762586594, + 0.003384738927707076, + -0.022362321615219116, + 0.05749547854065895, + 0.06123588979244232, + -0.009731750935316086, + 0.005306709557771683, + -0.013338577002286911, + -0.0425071120262146, + -0.024860382080078125, + -0.01904938369989395, + 0.009564767591655254, + 0.019116178154945374, + -0.02213522419333458, + -0.01763337105512619, + 0.009130612947046757, + -0.04167887568473816, + -0.027598896995186806, + 0.00909721665084362, + -0.03612169250845909, + 0.02775920182466507, + 0.041759029030799866, + -0.03272860497236252, + 0.03865982964634895, + 0.007019951939582825, + -0.019744032993912697, + -0.01199603546410799, + -0.0399155393242836, + -0.004802422132343054, + -0.02242911420762539, + -0.013138197362422943, + -0.037698011845350266, + -0.03876670077443123, + -0.041491854935884476, + -0.07742653042078018, + 0.000493433850351721, + -0.012189735658466816, + -0.023203913122415543, + -0.027892787009477615, + -0.029388951137661934, + -0.0036602604668587446, + -0.015829958021640778, + -0.020892873406410217, + -0.020265018567442894, + -0.00210899137891829, + 0.0024329377338290215, + -0.005002801306545734, + 0.0008219722658395767, + -0.0038172241766005754, + 0.02805308997631073, + 0.008395888842642307, + 0.03825907036662102, + -0.014507455751299858, + 0.0004333200631663203, + -0.01969059742987156, + 0.03363699093461037, + -0.029415668919682503, + 0.03491941839456558, + -0.035747651010751724, + 0.009210764430463314, + 0.005483711138367653, + -0.005403559654951096, + -0.0020822740625590086, + -0.009157329797744751, + 0.001818441436626017, + -0.03211411088705063, + 0.018875721842050552, + 0.008369171991944313, + 0.001138821942731738, + -0.035747651010751724, + -0.026650436222553253, + -0.005867771338671446, + -0.009371068328619003, + 0.06577781587839127, + -0.023497803136706352, + -0.012650608085095882, + 0.0166314747184515, + -0.03609497472643852, + -0.04413686320185661, + 0.0050161597318947315, + 0.003409786382690072, + 0.029041627421975136, + 0.010279454290866852, + 0.004181246273219585, + -0.0245798509567976, + -0.024085581302642822, + -0.016765061765909195, + -0.023297423496842384, + -0.01518874429166317, + -0.003191038966178894, + -0.005804318003356457, + -0.026677154004573822, + -0.010633457452058792, + 0.01049319189041853, + -0.023471085354685783, + -0.006468908861279488, + 0.004869215190410614, + -0.03374386206269264, + -0.004748987499624491, + 0.0034932775888592005, + 0.010372963733971119, + 0.034545376896858215, + -0.007146858610212803, + -0.025568388402462006, + 0.01924976333975792, + 0.01954365335404873, + -0.0002993164525832981, + 0.03155304864048958, + -0.015268896706402302, + -0.0049660648219287395, + 0.015228820964694023, + 0.051564253866672516, + 0.019236404448747635, + 0.01709902659058571, + 0.016230717301368713, + -0.027946220710873604, + 0.0034765794407576323, + 0.03120572306215763, + 0.05057571455836296, + 0.0041344910860061646, + 0.029602689668536186, + 0.03294234350323677, + 0.02540808543562889, + -0.011281349696218967, + 0.002658364363014698, + 0.014574248343706131, + 0.016324227675795555, + 0.026677154004573822, + 0.0514039471745491, + 0.003630203427746892, + -0.024085581302642822, + -0.03390416502952576, + -0.0314461775124073, + -0.009938809089362621, + -0.009077178314328194, + 0.018207792192697525, + -0.0014093337813392282, + -0.0280798077583313, + -0.0006157486350275576, + -0.023658106103539467, + 0.014587607234716415, + -0.012323321774601936, + 0.0014552540378645062, + -0.039434630423784256, + 0.028560718521475792, + -0.04197276756167412, + -0.028988193720579147, + 0.01155520137399435, + 0.048171162605285645, + -0.010533267632126808, + 0.015683013945817947, + 0.0065156640484929085, + -0.009110575541853905, + 0.031125571578741074, + -0.02134706638753414, + 0.021413858979940414, + -0.06006032973527908, + -0.01009911298751831, + -0.009958847425878048, + 0.01736619882285595, + 0.0024629945401102304, + 0.010660174302756786, + -0.023631388321518898, + 0.013178273104131222, + 0.011822373606264591, + -0.0046220808289945126, + 0.04018271341919899, + 0.01137486007064581, + -0.016818495467305183, + -0.02707791142165661, + 0.015549426898360252, + 0.015242178924381733, + 0.012911100871860981, + -0.019209688529372215, + -0.003084170166403055, + 0.000936772848945111, + -0.007554296404123306, + 0.009765147231519222, + 0.006368719507008791, + 0.023270705714821815, + 0.008703137747943401, + -0.009377747774124146, + 0.018728777766227722, + -0.03673619031906128, + -0.0065657589584589005, + 0.00765448622405529, + -0.004936008248478174, + -0.006148302461951971, + 0.022348962724208832, + 0.019997846335172653, + 0.03700336068868637, + 0.0010102451778948307, + -0.00022104333038441837, + 0.022763079032301903, + -0.026102732867002487, + -0.00454860832542181, + 0.0019687258172780275, + 0.020144790410995483, + 0.005540485493838787, + -0.01701887510716915, + -0.007821468636393547, + -0.0019854239653795958, + 0.006826252210885286, + -0.046381108462810516, + 0.013959752395749092, + 0.006756119430065155, + -0.005921205971390009, + -0.06193053722381592, + 0.008128716610372066, + -0.023471085354685783, + 0.019864259287714958, + -0.017726881429553032, + 0.0005865266430191696, + 0.0075008622370660305, + -0.03785831481218338, + 0.04419029504060745, + 0.013331897556781769, + -0.004418361932039261, + -0.023217272013425827, + -0.007253727875649929, + -0.005774260964244604, + -0.03641558438539505, + 0.0036736188922077417, + -0.02602258138358593, + -0.008703137747943401, + 0.009250840172171593, + -0.028747739270329475, + -0.010459795594215393, + 0.01790054328739643, + -0.02443290501832962, + 0.001122958492487669, + 0.010152546688914299, + 0.02208179049193859, + 0.01302464958280325, + -0.013826166279613972, + -0.025034043937921524, + 0.003583448240533471, + -0.01922304555773735, + 0.004030962008982897, + -0.00865638256072998, + -0.028240110725164413, + 0.020585624501109123, + 0.02242911420762539, + -0.022495906800031662, + 0.028106525540351868, + 0.00036297860788181424, + 0.019703956320881844, + -0.04712919145822525, + 0.041465140879154205, + -0.005410239100456238, + -0.0070132724940776825, + 0.002047207672148943, + -0.04125140234827995, + 0.0047322893515229225, + 0.014828061684966087, + -0.01660475693643093, + -0.018995949998497963, + -0.03216754272580147, + 0.013004611246287823, + 0.009264199063181877, + 0.003853960195556283, + -0.02286994829773903, + -0.0005552174407057464, + 0.015736447647213936, + 0.0015738117508590221, + 0.010640136897563934, + 0.015028441324830055, + 0.01672498509287834, + 0.007687882520258427, + 0.008823364973068237, + -0.0013918007025495172, + -0.0122899254783988, + -0.0030190469697117805, + -0.018087564036250114, + 0.011942601762712002, + -0.022856589406728745, + -0.003069141646847129, + 0.006175019778311253, + -0.012002714909613132, + 0.020946307107806206, + -0.024713436141610146, + 0.009484616108238697, + 0.03219426050782204, + -0.005757562816143036, + 0.00505623547360301, + 0.007861544378101826, + 0.0029773011337965727, + 0.01880892924964428, + -0.001684020389802754, + 0.005199840757995844, + -0.022829871624708176, + -0.01745970919728279, + 0.043255195021629333, + 0.0006579117616638541, + 0.0010377973085269332, + 0.0016456142766401172, + 0.01883564703166485, + 0.02917521446943283, + 0.058510731905698776, + 0.0006704354891553521, + -0.017860468477010727, + -0.03259501978754997, + 0.009905412793159485, + -0.022389037534594536, + 0.01574980653822422, + 0.011541842482984066, + 0.023591313511133194, + 0.006201736629009247, + -0.02484702318906784, + 0.037698011845350266, + 0.0011663740733638406, + 0.02240239642560482, + -0.020612342283129692, + -0.008395888842642307, + 0.017820391803979874, + 0.010279454290866852, + -0.006038093939423561, + 0.02611609175801277, + -0.02157416194677353, + 0.05386193469166756, + -0.03243471682071686, + 0.009751788340508938, + 0.04191933199763298, + -0.019583728164434433, + -0.015162027440965176, + -0.01106761209666729, + -0.0008925224537961185, + -0.019169611856341362, + -0.02178790047764778, + 0.009190727025270462, + -0.001995443133637309, + 0.020037921145558357, + 0.019303197041153908, + 0.031659916043281555, + 0.011241273954510689, + -0.02178790047764778, + 0.0065557402558624744, + -0.016083771362900734, + -0.02216194197535515, + 0.016845213249325752, + 0.07149530202150345, + -0.014146773144602776, + 0.01631086878478527, + 0.0022108505945652723, + 0.03411789983510971, + 0.02799965627491474, + 0.012603852897882462, + -0.009925450198352337, + -0.015495993196964264, + -0.006448870990425348, + 0.028240110725164413, + 0.017392916604876518, + -0.00498944241553545, + 0.01461432408541441, + 0.004936008248478174, + 0.012677324935793877, + -0.0005343445809558034, + 0.04394984245300293, + -0.04018271341919899, + 0.0021407180465757847, + 0.005714147351682186, + 0.02558174729347229, + 0.004104434512555599, + -0.018114281818270683, + 0.014066620729863644, + 0.01868870109319687, + 0.03296906128525734, + -0.03302249684929848, + -0.028400413691997528, + -0.004912630654871464, + -0.0019603767432272434, + -0.0021206799428910017, + 0.013178273104131222, + -0.004428380634635687, + -0.0006988225504755974, + 0.01824786700308323, + -0.034545376896858215, + -0.023270705714821815, + -0.0321408249437809, + -0.020358528941869736, + 0.03267516940832138, + -0.05979315936565399, + 0.0008758241892792284, + -0.008275661617517471, + 0.021507369354367256, + -0.016551323235034943, + -0.020558908581733704, + -0.006886365823447704, + 0.01692536473274231, + -0.014934930950403214, + 0.027305008843541145, + -0.002022160217165947, + -0.018969232216477394, + 0.0008453498012386262, + -0.005944583564996719, + 0.011014177463948727, + -0.008175471797585487, + -0.0201314315199852, + 0.003650241531431675, + 0.0008958620601333678, + -0.011247953400015831, + 0.02973627671599388, + -0.00289547978900373, + -0.009938809089362621, + -0.034518659114837646, + 0.018568474799394608, + -0.0029221968725323677, + -0.01473455224186182, + 0.021827975288033485, + 0.014948289841413498, + 0.02078600414097309, + -0.0033396536018699408, + 0.017927261069417, + -0.01486813835799694, + 0.02866758592426777, + -0.004949366673827171, + 0.023564595729112625, + -0.0038138844538480043, + 0.021066535264253616, + 0.014387227594852448, + -0.027158062905073166, + -0.040343016386032104, + 0.005587240681052208, + -0.017379557713866234, + 0.019009308889508247, + 0.002915517659857869, + 0.007727958261966705, + 0.03344997018575668, + -0.006462229881435633, + 0.03005688264966011, + 6.60103396512568e-5, + -0.002925536595284939, + 0.01907610148191452, + -0.014841420575976372, + 0.0010494861053302884, + 0.0572817400097847, + -0.01206950843334198, + 0.006946479436010122, + 0.007240368984639645, + -0.004759006202220917, + -0.027037836611270905, + 0.003224435495212674, + -0.01019930187612772, + 0.026623718440532684, + -0.004047660157084465, + 0.0023561257403343916, + -0.001950357691384852, + 0.00787490326911211, + -0.038018617779016495, + 0.009351029992103577, + 0.007106782868504524, + -0.013311859220266342, + 0.01359906978905201, + 0.01824786700308323, + 0.01660475693643093, + -0.007447427604347467, + 0.019062742590904236, + 0.002544816117733717, + -0.0013024648651480675, + 0.009297595359385014, + -0.046728432178497314, + -0.02389856055378914, + 0.009217443875968456, + 0.006689326371997595, + 0.035747651010751724, + 0.017713522538542747, + -0.017125744372606277, + 0.025862278416752815, + 0.019450142979621887, + 0.0031710010953247547, + 0.03264845535159111, + -0.005740864668041468, + -0.01990433596074581, + 0.015696372836828232, + -0.012296604923903942, + -0.046701718121767044, + -0.012617211788892746, + -0.041812464594841, + -0.025942429900169373, + 0.046381108462810516, + -0.001997112762182951, + 0.012089545838534832, + -0.012356718070805073, + 0.025327933952212334, + 0.014160131104290485, + -0.016110489144921303, + -0.013458804227411747, + -0.0033964277245104313, + -0.012076187878847122, + 0.01251034252345562, + -0.026356546208262444, + -0.012523701414465904, + -0.0062852283008396626, + -0.0016673221252858639, + -0.01315823569893837, + 0.0007831488037481904, + 0.0014143433654680848, + 0.02775920182466507, + 0.0054002199321985245, + 0.030591227114200592, + 0.03040420636534691, + -0.0014494096394628286, + -0.017419632524251938, + 0.012924459762871265, + 0.0024529756046831608, + -0.04736964777112007, + 0.018287943676114082, + -0.002114000730216503, + 0.012590494006872177, + -0.008736534044146538, + 0.00897698849439621, + -0.02714470401406288, + -0.0071268207393586636, + 0.01324506662786007, + 0.0011555202072486281, + 0.027264932170510292, + 0.015081875957548618, + -0.005500409752130508, + -0.002068915404379368, + -0.003089179517701268, + 0.001633090665563941, + 0.006225114222615957, + -0.024245886132121086, + 0.02467336133122444, + -0.016203999519348145, + 0.01565629616379738, + 0.005550504196435213, + -0.027839353308081627, + 0.0010403021005913615, + -0.014373869635164738, + 0.022803155705332756, + 0.012850986793637276, + 0.013705938123166561, + -0.016978798434138298, + -0.008616306819021702, + -0.03903387114405632, + 0.01892915740609169, + -0.013719297014176846, + -0.023778334259986877, + -0.0034699002280831337, + -0.0014026545686647296, + 0.0301103163510561, + 0.009791864082217216, + 0.013652504421770573, + 0.013799448497593403, + 0.03093855082988739, + 0.020852796733379364, + 0.02743859402835369, + -0.019356632605195045, + 0.04098422825336456, + 0.0277324840426445, + -0.03353012353181839, + 0.0048525165766477585, + -0.01242351159453392, + 0.014841420575976372, + -0.006973196752369404, + 0.011167801916599274, + 0.015429199673235416, + 0.03171335160732269, + -0.03558734804391861, + -0.0013099791249260306, + -0.010747005231678486, + 0.0008311562705785036, + -0.002110661007463932, + -0.010399681515991688, + -0.005637335125356913, + 0.016644833609461784, + -0.01033288799226284, + 0.010767043568193913, + 0.029282083734869957, + 0.005600599106401205, + 0.014066620729863644, + 0.0003034910187125206, + -0.0008040216052904725, + -0.0042446996085345745, + -0.022188657894730568, + -0.01954365335404873, + -0.010459795594215393, + -0.005827695596963167, + -0.008175471797585487, + 0.014454021118581295, + -0.02587563544511795, + 0.015148668549954891, + 0.0018835646333172917, + 0.0005677411099895835, + -0.01050654985010624, + 0.014347151853144169, + 0.02184133417904377, + 0.042640697211027145, + -0.022362321615219116, + 0.0010194292990490794, + -0.013986469246447086, + -0.012330001220107079, + 0.01281759049743414, + -0.0008883478585630655, + -0.023511162027716637, + -0.0013074744492769241, + -0.0015587833477184176, + -0.0297629926353693, + -0.006195057649165392, + 0.0023026911076158285, + 0.016831854358315468, + -0.0321408249437809, + 0.022041713818907738, + 0.004979423712939024, + 0.028453849256038666, + -0.02230888605117798, + 0.01329182181507349, + 0.021614238619804382, + -0.02198828011751175, + -0.03393087908625603, + 0.039728518575429916, + 0.011207877658307552, + -0.014507455751299858, + -0.02528785727918148, + 0.0008140405989252031, + -0.007534258533269167, + 0.02734508365392685, + 0.019944410771131516, + 0.00512302853167057, + 0.02775920182466507, + -0.025528311729431152, + 0.007213651668280363, + -0.00465881684795022, + -0.016324227675795555, + 0.013946393504738808, + 0.002870432334020734, + -0.016791777685284615, + -0.016591399908065796, + -0.017833750694990158, + 0.0123767564073205, + -0.012663966976106167, + -0.007487503346055746, + -0.02198828011751175, + -0.01019930187612772, + 0.0038439412601292133, + -0.0009885374456644058, + -0.01731276512145996, + -0.01162867434322834, + -0.0027201478369534016, + -0.017593294382095337, + -0.006866327952593565, + -0.01753986068069935, + 0.003084170166403055, + 0.024953892454504967, + -0.01461432408541441, + 0.0017416293267160654, + -0.02431267872452736, + 0.040022410452365875, + -0.018528398126363754, + -0.0028988192789256573, + 0.016818495467305183, + 0.012830949388444424, + -0.004889253061264753, + -0.013144876807928085, + -0.008442644029855728, + 0.0017566578462719917, + 0.003124245908111334, + -0.0045185512863099575, + 0.026450056582689285, + -0.005002801306545734, + -0.0406903401017189, + 0.03093855082988739, + -0.04996121674776077, + 0.01875549554824829, + -0.02866758592426777, + 0.021440576761960983, + -0.008836723864078522, + 0.021387141197919846, + 0.0061716800555586815, + 0.011261312291026115, + -0.027184780687093735, + -0.039728518575429916, + -0.02699775993824005, + -0.014427303336560726, + -0.0055738817900419235, + -0.015375765040516853, + 0.058564167469739914, + 0.014854779466986656, + -0.002227548975497484, + -0.05057571455836296, + -0.016123848035931587, + -0.0009083857876248658, + -0.019156252965331078, + 0.02534129098057747, + -0.019503576681017876, + 0.005356804467737675, + 0.018354736268520355, + -0.010726967826485634, + 0.0020956327207386494, + 0.00889015756547451, + 0.015349048189818859, + 0.0022859929595142603, + -0.004411682486534119, + 0.002955593401566148, + -0.018034130334854126, + -0.018114281818270683, + -0.012617211788892746, + -0.0012223132653161883, + 0.008769930340349674, + 0.04389640688896179, + 0.03067137859761715, + -0.022362321615219116, + 0.005497070029377937, + 0.0041845859959721565, + -0.015856675803661346, + 0.030163751915097237, + -0.004755666945129633, + -0.006799534894526005, + -0.0014610984362661839, + -0.023190554231405258, + -0.011989356949925423, + -0.0007668679463677108, + 0.044938378036022186, + -0.05877790227532387, + -0.030698096379637718, + 0.008663061074912548, + -0.06182366609573364, + -0.02540808543562889, + -0.0006103217019699514, + -0.003633543150499463, + 0.0049460269510746, + 0.008596268482506275, + 0.0032862192019820213, + -0.0055638630874454975, + 0.021387141197919846, + 0.0021290292497724295, + -0.03387744724750519, + -0.006261850707232952, + 0.01949021779000759, + -0.012744118459522724, + 0.01198267750442028, + -0.03275532275438309, + 0.008836723864078522, + -0.04368266835808754, + -0.02411229908466339, + -0.0292019322514534, + 0.023858485743403435, + -0.0048424978740513325, + -0.018207792192697525, + -0.013365293852984905, + 0.036575887352228165, + 0.002337757498025894, + 0.004582004621624947, + -0.0017149121267721057, + 0.005757562816143036, + -0.025782126933336258, + 0.03497285395860672, + 0.01949021779000759, + -0.011468370445072651, + 0.001721591455861926, + -0.009511333890259266, + 0.013225028291344643, + -0.03171335160732269, + 0.0016573030734434724, + 0.007373955100774765, + 0.017593294382095337, + 0.00743406917899847, + -0.020438680425286293, + 0.0175799373537302, + -0.01133478432893753, + -0.005777600686997175, + 0.006038093939423561, + -0.033129364252090454, + -0.007327199913561344, + 0.018862362951040268, + -0.010446436703205109, + 0.004221322014927864, + 0.006759459152817726, + 0.0035066362470388412, + 0.022041713818907738, + -0.025074118748307228, + 0.028747739270329475, + 0.008923554793000221, + -0.007727958261966705, + 0.011575239710509777, + -0.010219340212643147, + -0.011755581013858318, + -0.017740240320563316, + 0.006218435242772102, + 0.02649013325572014, + -0.016765061765909195, + -0.00492264935746789, + -0.0038038655184209347, + 0.018381454050540924, + -0.005817676428705454, + 0.0024796929210424423, + -0.02101309970021248, + -0.021734464913606644, + 0.013138197362422943, + 0.006722722668200731, + -0.008749892935156822, + -0.0033713802695274353, + -0.0089636305347085, + 0.04456433653831482, + 0.015095234848558903, + -0.00040910756797529757, + -0.00520985946059227, + 0.007360596675425768, + 0.014133414253592491, + -0.0036268639378249645, + 0.01949021779000759, + -0.008509437553584576, + -0.016564682126045227, + -0.00909721665084362, + -0.012944497168064117, + 0.003586787963286042, + 0.020144790410995483, + -0.0012682335218414664, + 0.01115444302558899, + -0.007794751785695553, + 0.005764242261648178, + -0.016858572140336037, + 0.008101999759674072, + -0.0033914183732122183, + -0.012223131954669952, + 0.0021707748528569937, + 0.01695208251476288, + -0.020612342283129692, + -0.012330001220107079, + -0.010600060224533081, + -0.0133051797747612, + -0.0046788547188043594, + 0.015135310590267181, + 0.018234508112072945, + -0.003130925353616476, + 0.021213479340076447, + 0.023030251264572144, + 0.0022859929595142603, + 0.035747651010751724, + 3.887565617333166e-5, + 0.027184780687093735, + 0.0028921400662511587, + -0.01912953518331051, + 0.00476902537047863, + -0.014801344834268093, + 0.020158149302005768, + -0.011455011554062366, + 0.0043448894284665585, + 0.008469361811876297, + -0.004789063241332769, + -0.008135396055877209, + -0.009664957411587238, + -0.012931139208376408, + -0.010620098561048508, + 0.010920667089521885, + -0.015789883211255074, + 0.017432991415262222, + -0.017593294382095337, + 0.007881582714617252, + 0.002501400653272867, + -0.007701241411268711, + -0.03328966721892357, + -0.005430276971310377, + 0.005420257803052664, + 0.008208869025111198, + -0.01677842065691948, + -0.020772645249962807, + -0.0037838276475667953, + 0.008115358650684357, + 0.0030708115082234144, + -0.01486813835799694, + -0.0009175698505714536, + 0.015950186178088188, + 0.0013400360476225615, + 0.005697449203580618, + -0.009958847425878048, + 0.003354682121425867, + -0.008643023669719696, + -0.0008591259247623384, + 0.019182970747351646, + -0.0040209428407251835, + 0.019757390022277832, + -0.022709645330905914, + -0.013144876807928085, + -0.03275532275438309, + 0.008135396055877209, + 0.01365918293595314, + -0.014253641478717327, + 0.0018217810429632664, + -0.0030374149791896343, + -0.02081272192299366, + -0.00226261536590755, + 0.020411962643265724, + -0.007854864932596684, + 0.03441179171204567, + 0.023003533482551575, + -0.0023611350916326046, + -0.033262949436903, + -0.024205809459090233, + -0.00581433717161417, + 0.0061449627391994, + -0.02389856055378914, + 0.015268896706402302, + -0.0022225393913686275, + 0.0070132724940776825, + -0.0022058412432670593, + 0.013271783478558064, + 0.002124019665643573, + -0.007627768907696009, + -0.004398323595523834, + -0.00918404757976532, + -0.0350797213613987, + -0.025942429900169373, + 0.010219340212643147, + -0.011214557103812695, + -0.035988107323646545, + -0.03470567986369133, + 0.00647558830678463, + -0.014774627983570099, + -0.020505473017692566, + -0.0016656522639095783, + 0.02051883190870285, + -0.003907394595444202, + -0.0242325272411108, + 0.004111113492399454, + 0.014761269092559814, + 0.007333879359066486, + -0.012517021968960762, + 0.026677154004573822, + -0.005887809209525585, + 0.0014235273702070117, + -0.01863526739180088, + -0.0031158968340605497, + 0.0062919072806835175, + -0.012370076961815357, + -0.028507282957434654, + -0.0030307357665151358, + 0.016324227675795555, + 0.014494096860289574, + 0.020171508193016052, + 0.011234594509005547, + -0.006088188383728266, + -0.007193613797426224, + -0.01707230880856514, + -0.010593381710350513, + 0.01924976333975792, + -0.017125744372606277, + -0.01624407432973385, + 0.013625786639750004, + -0.004972744267433882, + 0.01386624202132225, + -0.0008624655310995877, + -0.018381454050540924, + 0.0014118385734036565, + 0.0014368860283866525, + 0.007206972688436508, + 0.0003431494114920497, + 0.011054253205657005, + 0.015856675803661346, + 0.005500409752130508, + -0.01315823569893837, + 0.010299491696059704, + -0.026329828426241875, + 0.04183918237686157, + -0.013445445336401463, + 0.004491833969950676, + -0.03267516940832138, + 0.004301473964005709, + -0.0007889931439422071, + -0.024419547989964485, + -0.08731190115213394, + -0.011020856909453869, + 0.018408169969916344, + 0.002038858598098159, + -0.00927087850868702, + -0.009137292392551899, + -0.005069594364613295, + -0.006422154139727354, + -0.003790506860241294, + 0.011361501179635525, + -0.0024629945401102304, + 0.020852796733379364, + 0.004164548125118017, + 1.5250215255946387e-5, + -0.016738343983888626, + 0.004465117119252682, + -0.014373869635164738, + 0.016471171751618385, + 0.009591485373675823, + -0.017820391803979874, + -0.005827695596963167, + 0.0010795430280268192, + 0.02445962280035019, + 0.010646815411746502, + -0.0025398065336048603, + -0.028507282957434654, + 0.008015168830752373, + 0.006452210713177919, + -0.010192622430622578, + 0.029656123369932175, + -0.0210798941552639, + 0.008415927179157734, + 0.001308309263549745, + 0.0002634151896927506, + 0.023618031293153763, + 0.021440576761960983, + -0.019864259287714958, + 0.014186848886311054, + -0.007928337901830673, + -0.01215633936226368, + -0.018862362951040268, + 0.00520985946059227, + 0.0009267538553103805, + 0.003439843188971281, + 0.02778591774404049, + -0.02751874551177025, + -0.025862278416752815, + 0.006094867829233408, + -0.025915712118148804, + 0.0016915345331653953, + -0.0053501250222325325, + -0.008188830688595772, + -0.005333426874130964, + -0.022001639008522034, + -0.0014243623008951545, + -0.020158149302005768, + 0.023097043856978416, + 0.013986469246447086, + 0.006014716345816851, + -0.010820478200912476, + -0.01716581918299198, + 0.02299017645418644, + -0.004665496293455362, + 0.009411144070327282, + 0.001193926203995943, + 0.021681031212210655, + 0.0077346377074718475, + 0.019744032993912697, + -0.00752090010792017, + -0.009851978160440922, + -0.009771826677024364, + -0.001325842458754778, + -0.014667758718132973, + -0.01212962158024311, + -0.009224123321473598, + -0.017326122149825096, + 0.006532362662255764, + -0.010079074651002884, + -5.792211595689878e-5, + 0.0266103595495224, + -0.011101008392870426, + 0.00412781210616231, + -0.010125829838216305, + -0.016123848035931587, + 0.0009726741118356586, + -0.011561880819499493, + 0.006238473113626242, + -0.0028971494175493717, + 0.0017633370589464903, + 0.022215375676751137, + 0.006248491816222668, + 0.012984572909772396, + -0.00967163685709238, + -0.02081272192299366, + -0.022202016785740852, + 0.009457899257540703, + 0.009531371295452118, + -0.048117730766534805, + -0.015162027440965176, + 0.0012949507217854261, + 0.02607601508498192, + 0.010045678354799747, + -0.027705766260623932, + -0.00016499975754413754, + 0.023511162027716637, + -0.007941695861518383, + 0.008997026830911636, + 0.026837456971406937, + -0.004612061660736799, + 0.012343360111117363, + -0.004789063241332769, + -0.03665603697299957, + -0.005854412913322449, + 0.015068517066538334, + 0.03996897488832474, + -0.01474791020154953, + 0.02325734868645668, + 0.007667844649404287, + 0.01488149631768465, + -0.015375765040516853, + 0.02025165967643261, + -0.023270705714821815, + -0.012704042717814445, + -0.0025297875981777906, + -0.0009501314489170909, + 0.008816685527563095, + -0.02548823691904545, + 0.02834697999060154, + 0.033102646470069885, + 0.007754675578325987, + 0.007681203540414572, + -0.0025331273209303617, + -0.0509764738380909, + -0.021293630823493004, + -0.0044050030410289764, + 0.007995130494236946, + 0.007206972688436508, + -0.013772731646895409, + 0.011742222122848034, + 0.016965439543128014, + -0.01907610148191452, + -0.008870120160281658, + -0.011174481362104416, + -0.009985564276576042, + -0.0016681569395586848, + -0.014814703725278378, + 0.019757390022277832, + -0.01963716372847557, + 0.011855770833790302, + -0.0006633386947214603, + 0.014120055362582207, + 0.008155434392392635, + -0.006539041642099619, + 0.005927885416895151, + 0.012236490845680237, + -0.02010471560060978, + -0.02193484455347061, + -0.029575971886515617, + 0.0018518379656597972, + 0.01273075956851244, + 0.0034114562440663576, + -0.01448073796927929, + -0.016845213249325752, + 0.020598983392119408, + -0.010079074651002884, + 0.012757476419210434, + -0.0008699797908775508, + -0.008101999759674072, + 0.0168051365762949, + -0.007494182791560888, + 0.002367814537137747, + -0.05343445762991905, + -0.007393992971628904, + -0.016912005841732025, + 0.020064638927578926, + -0.01002564001828432, + 0.013799448497593403, + 0.003519994905218482, + 0.02137378230690956, + -0.014253641478717327, + 0.02467336133122444, + -0.002164095640182495, + -0.025942429900169373, + -0.006154981441795826, + 0.0070132724940776825, + -0.004278096370398998, + 0.00044709612848237157, + -0.012517021968960762, + 0.000915899989195168, + -0.01444066222757101, + 0.030003448948264122, + 0.020331811159849167, + -0.033423252403736115, + -0.030991986393928528, + -0.0099788848310709, + 0.00745410704985261, + 0.002561514265835285, + -0.01504180021584034, + 0.026516849175095558, + -0.02663707733154297, + -0.013558994047343731, + 0.002624967833980918, + 0.015268896706402302, + -0.00945121981203556, + -0.027238214388489723, + 0.003740411950275302, + -0.00676279840990901, + 0.029095062986016273, + -0.014079979620873928, + 0.027598896995186806, + -0.0007835662108846009, + -0.003384738927707076, + -0.012837628833949566, + -0.005580561235547066, + -0.015215462073683739, + -0.007340558804571629, + -0.03182021901011467, + 0.010299491696059704, + -0.011942601762712002, + 0.006375398952513933, + 0.0017967337043955922, + 0.002710128901526332, + -0.0040109241381287575, + 0.020478755235671997, + -0.02472679503262043, + 0.019944410771131516, + 0.023925278335809708, + 0.007414030842483044, + 0.014894855208694935, + -0.008916875347495079, + -0.006702684797346592, + -0.02829354628920555, + 0.027011118829250336, + 0.023123761638998985, + -0.005086292512714863, + 0.006986555177718401, + 0.007026631385087967, + -0.011955959722399712, + 0.008309057913720608, + 0.03927432745695114, + -0.021908128634095192, + 0.001507018692791462, + 0.002321059349924326, + 0.011675429530441761, + -0.02384512685239315, + -0.019850900396704674, + -0.0045085325837135315, + 0.02619624324142933, + -0.002414569491520524, + 0.010079074651002884, + -0.012797553092241287, + 0.011742222122848034, + -0.003014037385582924, + -0.01936999149620533, + -0.007260406855493784, + -0.0004717260890174657, + 0.005630656145513058, + 0.008142075501382351, + -0.009865337051451206, + 0.027278291061520576, + -0.00860962737351656, + -0.008596268482506275, + 0.02252262458205223, + -0.018007412552833557, + 0.01115444302558899, + -0.012924459762871265, + 0.0032695208210498095, + 0.01572308875620365, + -0.005406899377703667, + -0.038606394082307816, + -0.004708911757916212, + -0.0012423511361703277, + -0.009077178314328194, + 0.007153538055717945, + -0.008910195901989937, + -0.015843316912651062, + 0.005690769758075476, + -0.0036736188922077417, + -0.0483849011361599, + -0.01883564703166485, + -0.001041971961967647, + 0.007594372145831585, + -0.019971128553152084, + -0.021320348605513573, + 0.023658106103539467, + 0.0049627250991761684, + -0.0014277019072324038, + -0.008055244572460651, + 0.0006362040294334292, + 0.003603486344218254, + -0.00838921032845974, + -0.025448160246014595, + 0.004915969911962748, + -0.0057241665199398994, + -0.0007956724730320275, + -0.00018232422007713467, + -0.01651124842464924, + 0.00310587789863348, + 0.015642937272787094, + 0.0014911553589627147, + 0.010473153553903103, + -0.016057055443525314, + -0.033984314650297165, + -0.001380111905746162, + -0.0023911918979138136, + -0.005714147351682186, + 0.01912953518331051, + 0.011608636006712914, + 0.01795397698879242, + 0.0054503148421645164, + 0.0001364039781037718, + -0.009304274804890156, + -0.012496983632445335, + 0.005213199183344841, + -0.0021290292497724295, + -0.0010770383523777127, + 0.0016848552040755749, + 0.0023778334725648165, + 0.07603723555803299, + -0.003636882873252034, + 0.0033580216113477945, + 0.0033363138791173697, + 0.00918404757976532, + -0.011735542677342892, + -0.00654238136485219, + 0.025060761719942093, + 1.4963213288865518e-5, + 0.006886365823447704, + 0.014013187028467655, + -0.042640697211027145, + 0.00796173419803381, + -0.005443635396659374, + -0.011675429530441761, + -0.012316642329096794, + 0.014160131104290485, + 0.017419632524251938, + -0.018354736268520355, + 0.024713436141610146, + -0.00028094835579395294, + -0.02543480135500431, + -0.0040209428407251835, + 0.025929071009159088, + -0.01545591652393341, + 0.0036135052796453238, + 0.008329096250236034, + 0.003713694866746664, + 0.008516116999089718, + 0.007747996598482132, + 0.011962639167904854, + 0.005553843919187784, + -0.0073873139917850494, + 0.00046337692765519023, + -0.0004337375285103917, + 0.0032094072084873915, + 0.0008891827892512083, + 0.007206972688436508, + 0.02355123683810234, + 0.01488149631768465, + -0.010827156715095043, + 0.005547164473682642, + 0.014120055362582207, + 0.01093402598053217, + -0.01517538633197546, + -0.001978744752705097, + 0.014347151853144169, + -0.011969318613409996, + -0.0024446265306323767, + 0.024392830207943916, + -0.01504180021584034, + -0.018448246642947197, + -0.012490304186940193, + 0.0026700531598180532, + 0.016284151002764702, + 0.00240622041746974, + 0.022589417174458504, + -0.008409247733652592, + -0.006722722668200731, + 0.005874450784176588, + -0.00261661852709949, + -0.0041311513632535934, + -0.017553219571709633, + -0.03494613617658615, + -0.0026349867694079876, + -0.017940619960427284, + -0.00031434488482773304, + -0.015816599130630493, + -0.0012699032668024302, + -0.010613419115543365, + 0.0046187411062419415, + 0.0010352926328778267, + 0.02888132445514202, + -0.013071403838694096, + -0.009444540366530418, + 0.026650436222553253, + 0.0006516498979181051, + 0.007240368984639645, + 0.0002569445932749659, + 0.009003706276416779, + 0.00984529871493578, + 0.005770921241492033, + -0.017499785870313644, + -0.0006257675704546273, + 0.00033041698043234646, + -0.006822912488132715, + -0.0025431462563574314, + -0.013124838471412659, + 0.008863440714776516, + -0.010359605774283409, + -0.004949366673827171, + 0.004752327222377062, + -0.010526588186621666, + -0.015202103182673454, + 0.005420257803052664, + -0.00016082519141491503, + -0.0036101655568927526, + -0.0121162636205554, + 0.011922563426196575, + 0.002765233162790537, + 0.01473455224186182, + -0.0026232979726046324, + 0.005443635396659374, + 0.011962639167904854, + 0.001190586481243372, + -0.00592454569414258, + 0.012450228445231915, + 0.010499871335923672, + -0.026690511032938957, + 0.00643217284232378, + -0.010747005231678486, + 0.004181246273219585, + 0.005483711138367653, + 0.007407351862639189, + -0.009745108895003796, + -0.009825261309742928, + -0.00218580337241292, + -0.0029789709951728582, + -0.007921658456325531, + -0.02946910448372364, + -0.01836809515953064, + -0.001785044907592237, + -0.007186934817582369, + 0.00045628019142895937, + -0.0017416293267160654, + -0.013098121620714664, + -0.006111565977334976, + -0.013098121620714664, + 0.0036135052796453238, + -0.00636537978425622, + 0.01848832331597805, + 0.007447427604347467, + 0.025381367653608322, + -0.014587607234716415, + -0.002088953275233507, + -0.00015581570914946496, + -0.000427266932092607, + 0.00782814808189869, + 0.035720936954021454, + -0.019677238538861275, + 0.001392635516822338, + 0.00660917442291975, + -0.0021891428623348475, + 0.014547531493008137, + 0.0292019322514534, + 0.008088640868663788, + 0.007888262160122395, + -0.031392745673656464, + 0.03694992884993553, + -0.013919676654040813, + 0.007921658456325531, + -0.012343360111117363, + -0.004802422132343054, + -0.02372489869594574, + 0.006392097100615501, + 0.00909721665084362, + -0.010566663928329945, + 0.005029518157243729, + -0.00880332663655281, + 0.00423802062869072, + -0.016391020268201828, + -0.005336766596883535, + -0.007333879359066486, + -0.005670731887221336, + -0.012249849736690521, + 0.015829958021640778, + 0.013545635156333447, + 0.032835476100444794, + 0.014360510744154453, + 0.003707015421241522, + 0.01677842065691948, + 0.003102538175880909, + -0.009765147231519222, + -0.025180988013744354, + -0.011481729336082935, + -0.02237567864358425, + 0.009157329797744751, + 0.024352753534913063, + -0.027278291061520576, + 0.00023732412955723703, + 0.002050547394901514, + -0.025568388402462006, + 0.03548048064112663, + -0.004698892589658499, + 0.014373869635164738, + -0.0076144104823470116, + 0.01651124842464924, + -0.011922563426196575, + 0.0017700163880363107, + 0.022268811240792274, + -0.015242178924381733, + 0.01949021779000759, + -0.017967335879802704, + 0.009043782018125057, + -0.00825562421232462, + 0.004538589157164097, + 0.016992157325148582, + 0.03849952667951584, + -0.002392861759290099, + -0.003119236556813121, + -0.032247696071863174, + 0.017793674021959305, + 0.001983754336833954, + 0.001582160941325128, + 0.019036024808883667, + -0.018154356628656387, + -0.011488408781588078, + -0.02093294821679592, + -0.003717034589499235, + 0.01883564703166485, + -0.018007412552833557, + -0.027131346985697746, + 0.016110489144921303, + 0.011241273954510689, + -0.012002714909613132, + 0.020946307107806206, + -0.003254492534324527, + 0.007694561965763569, + 0.010640136897563934, + -0.012931139208376408, + -0.00040472426917403936, + 0.011241273954510689, + 0.012029432691633701, + -0.005436955951154232, + -0.005583900958299637, + -0.0005831870366819203, + -0.010446436703205109, + 0.009377747774124146, + -0.0014911553589627147, + -0.0021223498042672873, + 0.03692321106791496, + -0.003279539756476879, + 0.008108679205179214, + 0.02316383831202984, + 0.010900629684329033, + 0.01883564703166485, + 0.018942516297101974, + -0.008990347385406494, + 0.014226924628019333, + -0.006749439984560013, + -0.009364388883113861, + 0.02805308997631073, + -0.0021223498042672873, + 0.003777148202061653, + 0.009818581864237785, + -0.012122943066060543, + -0.01504180021584034, + -0.007073386572301388, + -0.008195510134100914, + -2.9248059945530258e-5, + -0.003279539756476879, + -0.013558994047343731, + -0.024887097999453545, + 0.02575540915131569, + -0.00023774159490130842, + -0.007607731036841869, + 0.009217443875968456, + -0.010593381710350513, + -0.003144283778965473, + -0.001582160941325128, + -0.015549426898360252, + 0.01212962158024311, + 0.02128027379512787, + -0.002882121130824089, + 0.004511871840804815, + -0.0020321791525930166, + -0.013852883130311966, + 0.015669655054807663, + -0.00251642893999815, + 0.008322416804730892, + -0.002422918798401952, + -0.003262841608375311, + 0.01364582497626543, + 0.014921572059392929, + -0.009838619269430637, + 0.0041211326606571674, + 0.020679134875535965, + -0.0001612426567589864, + 0.0006704354891553521, + 0.0028854606207460165, + -0.011788977310061455, + -0.012236490845680237, + -7.352456304943189e-5, + -0.01790054328739643, + -0.0077346377074718475, + -0.027358442544937134, + 0.003296238137409091, + 0.004358247853815556, + 0.012991252355277538, + 0.0017783655785024166, + -0.003917413763701916, + 0.0004909290582872927, + 0.013258424587547779, + -0.016791777685284615, + 0.014160131104290485, + 0.0041244723834097385, + 0.0025398065336048603, + 0.01050654985010624, + 0.004077717196196318, + 0.008562872186303139, + 0.004181246273219585, + -0.026156166568398476, + 0.0008816685294732451, + -0.009771826677024364, + 0.008489399217069149, + 0.0008140405989252031, + 0.01993105374276638, + -0.009511333890259266, + 0.006275209132581949, + 0.009150651283562183, + -0.012523701414465904, + -0.00874321348965168, + 0.01430707611143589, + 0.0014961648266762495, + -0.0018034129170700908, + -0.0048525165766477585, + 0.015108592808246613, + 0.012450228445231915, + 0.009431181475520134, + 0.016324227675795555, + -0.013933034613728523, + 0.005607278551906347, + -0.006552400533109903, + 0.007527579087764025, + -0.0018368094461038709, + 0.013311859220266342, + 0.013973110355436802, + -0.006612514145672321, + 0.01067353319376707, + -0.025595106184482574, + 0.0059479232877492905, + -0.010646815411746502, + -0.02590235322713852, + -0.004605382215231657, + 0.007534258533269167, + 0.008569551631808281, + -0.024419547989964485, + -0.002124019665643573, + -0.006488947197794914, + 0.01883564703166485, + -0.024646643549203873, + -0.021387141197919846, + 0.009337671101093292, + -0.014400586485862732, + 0.002025499939918518, + 0.023951996117830276, + 0.007420710287988186, + -0.006452210713177919, + 0.0004525230615399778, + 0.029656123369932175, + 0.0022809833753854036, + 0.01164203230291605, + 0.020598983392119408, + 0.0003771721385419369, + -0.0008111183997243643, + -0.017179178074002266, + 0.0087899686768651, + 0.008429286070168018, + 0.009117254056036472, + 0.009377747774124146, + -0.027104629203677177, + 0.031419459730386734, + -0.021413858979940414, + 0.0025247782468795776, + 0.0016831854591146111, + -0.00048508468898944557, + -0.002975631272420287, + 0.025969145819544792, + -0.0052365767769515514, + -0.004014263860881329, + 0.009217443875968456, + -0.04039645195007324, + -0.014120055362582207, + -0.0021724447142332792, + -0.013051366433501244, + 0.008696458302438259, + -0.005740864668041468, + -0.011074291542172432, + -0.0035567311570048332, + 0.006595815997570753, + 0.044110145419836044, + 0.0017950638430193067, + -0.016270792111754417, + -0.012490304186940193, + 0.024499699473381042, + 0.002307700691744685, + -0.008990347385406494, + 0.021480651572346687, + -0.019156252965331078, + -0.004675514996051788, + 0.002569863572716713, + 0.018728777766227722, + 0.02584891952574253, + -0.011361501179635525, + 0.007240368984639645, + -0.015108592808246613, + -0.004214643035084009, + 0.034224770963191986, + 0.010479832999408245, + -0.011161122471094131, + 0.005092971958220005, + 0.006913083139806986, + 0.013078083284199238, + 0.016230717301368713, + -0.020438680425286293, + -0.026182884350419044, + 0.014013187028467655, + 0.018969232216477394, + 0.025154270231723785, + -0.011822373606264591, + 0.0022108505945652723, + 0.011475049890577793, + -0.01055330503731966, + 0.004177906550467014, + 0.020505473017692566, + 0.009738430380821228, + 0.010700250044465065, + -0.019877618178725243, + 0.015709729865193367, + 0.015255537815392017, + 0.027545463293790817, + 0.002098972210660577, + 0.006766138132661581, + 0.009290916845202446, + 0.00901038572192192, + -0.005263294093310833, + 0.03304921090602875, + 0.011648711748421192, + -0.007935017347335815, + 0.002860413398593664, + 0.003204397624358535, + -0.024339396506547928, + -0.010807119309902191, + 0.0045252307318151, + -0.022242093458771706, + -0.0009334331844002008, + 0.01068689115345478, + -0.017446350306272507, + 0.018114281818270683, + 0.01365918293595314, + -0.02555502951145172, + -0.011101008392870426, + 0.024058865383267403, + -0.007480823900550604, + 0.005156425293534994, + 0.01403990387916565, + -0.0019069422269240022, + 0.017032233998179436, + -0.00487923389300704, + 0.00862298533320427, + 0.0018551775719970465, + 0.016698267310857773, + 0.03868654742836952, + -0.0011471710167825222, + -0.005333426874130964, + -0.03502628579735756, + -0.003583448240533471, + -0.0009476267150603235, + 0.01587003469467163, + -0.01055330503731966, + -0.0017666767816990614, + -0.004057679325342178, + 0.0014719523023813963, + 0.015562785789370537, + 0.0029105080757290125, + -0.0035467122215777636, + 0.026249676942825317, + 0.008041885681450367, + 0.007594372145831585, + 0.008950271643698215, + -0.005436955951154232, + 0.01473455224186182, + 0.03296906128525734, + -0.005704128183424473, + 0.005527126602828503, + 0.010813798755407333, + 0.004030962008982897, + 0.01373265590518713, + -0.0018368094461038709, + -0.013692580163478851, + -0.01055330503731966, + -0.005039537325501442, + -0.007173575926572084, + 0.010880591347813606, + 0.023350859060883522, + -0.0019186310237273574, + -0.006959838327020407, + 0.00967163685709238, + -0.0005101321148686111, + 0.008322416804730892, + 0.008302378468215466, + -0.0017249310621991754, + 0.030217185616493225, + -0.00033104317844845355, + -0.0022392377723008394, + -0.009958847425878048, + 0.001970395678654313, + 0.013959752395749092, + 0.016230717301368713, + -0.024152375757694244, + 0.00953805074095726, + -0.0005105495220050216, + -0.004398323595523834, + 0.023738257586956024, + 0.0060714902356266975, + 0.007540937978774309, + -0.007106782868504524, + 0.0022292188368737698, + 0.0071134623140096664, + 0.007754675578325987, + 0.025808842852711678, + 0.0036535810213536024, + -0.021560803055763245, + -0.0023945316206663847, + -0.007935017347335815, + -0.0008641353924758732, + 0.009464578703045845, + 0.014120055362582207, + 0.032541584223508835, + -0.010386322624981403, + -0.011074291542172432, + -0.0065690986812114716, + 0.0015437549445778131, + 0.028106525540351868, + 0.004802422132343054, + 0.0007735472754575312, + 0.018528398126363754, + 0.0008006819407455623, + 0.009103896096348763, + -0.005937904119491577, + 0.010172585025429726, + -0.003924093209207058, + -0.01019930187612772, + 0.0011488408781588078, + 0.009938809089362621, + 0.02614280767738819, + 0.00880332663655281, + -0.0024078902788460255, + 0.04368266835808754, + 0.005356804467737675, + 0.00040013223770074546, + -0.004655477125197649, + 0.005480371415615082, + -0.022910023108124733, + -0.0010277783730998635, + -0.010987460613250732, + -0.004271416924893856, + -0.0015521040186285973, + 0.0036135052796453238, + 0.01068689115345478, + -0.020064638927578926, + 0.0044050030410289764, + 0.0502818264067173, + 0.02514091320335865, + 0.04154529049992561, + -0.012142980471253395, + -0.005644014570862055, + -0.014828061684966087, + 0.005637335125356913, + -0.003398097585886717, + -0.004271416924893856, + -0.018314659595489502, + 0.000987702514976263, + 0.015135310590267181, + -0.004735629074275494, + 0.008456002920866013, + 0.002806978765875101, + 0.014347151853144169, + 0.007053348235785961, + 0.02387184463441372, + -0.02049211412668228, + -0.007240368984639645, + -0.015228820964694023, + 0.008195510134100914, + 0.02274972014129162, + 0.0003327129816170782, + -0.014454021118581295, + -0.0168051365762949, + 0.002942234743386507, + -0.003717034589499235, + -0.006241812836378813, + -0.004708911757916212, + -0.03753770515322685, + 0.001587170409038663, + -1.4793621630815323e-5, + 0.02152072824537754, + -0.00012721992970909923, + 0.006108226254582405, + 0.018060846254229546, + -0.02640998177230358, + 0.015709729865193367, + -0.0121162636205554, + -0.012931139208376408, + 0.013605749234557152, + -0.004735629074275494, + -0.004561966750770807, + -0.008950271643698215, + 0.002765233162790537, + -0.0406903401017189, + -0.03219426050782204, + -0.00743406917899847, + 0.002068915404379368, + 0.013799448497593403, + 0.011308067478239536, + -0.004388304892927408, + -0.0022175300400704145, + 0.014200206845998764, + -0.01863526739180088, + -0.0029990088660269976, + -0.012704042717814445, + -0.013852883130311966, + 0.020452039316296577, + 0.008629664778709412, + 0.0025899014435708523, + 0.022829871624708176, + -0.019263122230768204, + 0.028801172971725464, + 0.001177227939479053, + 0.028774455189704895, + -0.02240239642560482, + 0.009371068328619003, + 0.0008833383908495307, + -0.000427266932092607, + 0.012049470096826553, + 9.705868433229625e-5, + -0.009003706276416779, + -0.006615853868424892, + 0.008916875347495079, + 0.011455011554062366, + -0.010526588186621666, + -0.01721925474703312, + 0.009938809089362621, + 0.00040347190224565566, + -0.031633198261260986, + 0.012476946227252483, + -0.018728777766227722, + -0.0089636305347085, + 0.0005769251729361713, + 0.008055244572460651, + -0.008696458302438259, + 0.007153538055717945, + -0.02707791142165661, + -0.001355064450763166, + 0.010526588186621666, + 0.009638240560889244, + -0.02069249376654625, + 0.01969059742987156, + 0.0057241665199398994, + 0.0030123675242066383, + 0.0066258725710213184, + -0.002427928149700165, + 0.0019870938267558813, + -0.020505473017692566, + 0.007714599836617708, + 0.014226924628019333, + -0.015242178924381733, + 0.011989356949925423, + -0.018742136657238007, + 0.0292019322514534, + -0.006402115803211927, + -0.013318538665771484, + -0.017058949917554855, + 0.003307926934212446, + -0.008128716610372066, + -0.010446436703205109, + -0.0064555504359304905, + 0.012256529182195663, + 0.012704042717814445, + -0.012590494006872177, + 0.000639126228634268, + -0.008382530882954597, + -0.0018050827784463763, + -0.027572181075811386, + 0.007414030842483044, + -0.00021029381605330855, + -0.000548538111615926, + -0.009518012404441833, + -0.01946350187063217, + 0.013225028291344643, + -0.03393087908625603, + -0.004565306473523378, + -0.010907309129834175, + -0.005657373461872339, + -0.031980521976947784, + -9.471048542764038e-6, + -0.009477936662733555, + -0.0013216679217293859, + -0.009644920006394386, + -0.011314746923744678, + -0.016003619879484177, + -0.018742136657238007, + -0.006495626177638769, + -0.02470007911324501, + -0.011989356949925423, + 0.011755581013858318, + 0.0074607860296964645, + -0.010165905579924583, + -0.012122943066060543, + -0.007955054752528667, + 0.001135482219979167, + -0.03387744724750519, + 0.0049026114866137505, + -0.018969232216477394, + -0.018528398126363754, + 0.003381399204954505, + -0.011608636006712914, + 0.011241273954510689, + -0.008923554793000221, + 0.018314659595489502, + 0.0015738117508590221, + 0.006154981441795826, + 0.006118245422840118, + -0.006873007398098707, + -0.01055330503731966, + -0.010813798755407333, + -0.0329156257212162, + 0.03590795397758484, + -6.684525578748435e-5, + -0.0032261053565889597, + -0.008749892935156822, + 0.007948375307023525, + -0.005637335125356913, + -0.033423252403736115, + 0.00927087850868702, + 0.007133500184863806, + -0.014106696471571922, + -0.008295699954032898, + 0.011782297864556313, + -0.009985564276576042, + 0.001768346643075347, + 0.019182970747351646, + 0.008997026830911636, + -0.007186934817582369, + 0.006398776546120644, + -0.019557012245059013, + -0.004755666945129633, + -0.0014585937606170774, + 0.012309962883591652, + -0.000692143221385777, + -0.010092433542013168, + -0.009725071489810944, + -0.05036197602748871, + -0.022389037534594536, + 0.013398690149188042, + 0.009705033153295517, + -0.011167801916599274, + -0.011601956561207771, + -0.0008123707375489175, + -0.01490821409970522, + 0.019583728164434433, + -0.00984529871493578, + -0.003666939679533243, + 0.012844308279454708, + 0.014320435002446175, + 0.013011290691792965, + -0.01883564703166485, + 0.007914979010820389, + -0.0024880419950932264, + 0.009244161657989025, + 0.026864172890782356, + 0.0009108905214816332, + 0.021627597510814667, + 0.004869215190410614, + 0.014841420575976372, + 0.013879600912332535, + 0.008489399217069149, + 0.008322416804730892, + -0.01733948104083538, + -0.005296690855175257, + 0.023858485743403435, + 0.012229811400175095, + -0.0035133156925439835, + -0.0034632207825779915, + -0.00474564777687192, + -0.010780401527881622, + -0.0066692885011434555, + 0.024205809459090233, + 0.01342540793120861, + -0.005413578357547522, + 0.019650522619485855, + -0.005183142609894276, + 0.015910109505057335, + -0.04477807506918907, + 0.022335603833198547, + -0.02299017645418644, + 0.001046981429681182, + 0.012396793812513351, + 0.002124019665643573, + 0.026129450649023056, + -0.008262302726507187, + -0.001447739894501865, + 0.013318538665771484, + -0.028213392943143845, + -0.014280359260737896, + 0.04472464323043823, + -0.009077178314328194, + 0.0133920107036829, + -0.0012047800701111555, + -0.005279992241412401, + -0.007480823900550604, + 0.000618253368884325, + 0.0054636732675135136, + 0.005627316422760487, + -0.010573343373835087, + -0.012837628833949566, + 0.02086615562438965, + -0.008456002920866013, + 0.0028002995532006025, + 0.0029054987244307995, + -0.003900715382769704, + -0.0016406048089265823, + 0.004171227570623159, + 0.006028074771165848, + 0.022776437923312187, + 0.017379557713866234, + 0.005984659306704998, + 0.013679221272468567, + -0.012056149542331696, + 0.005817676428705454, + 0.025862278416752815, + -0.02602258138358593, + -0.01357235200703144, + 0.006913083139806986, + 0.015763165429234505, + -0.02201499603688717, + -0.006939800456166267, + 0.0009434521780349314, + -0.01577652432024479, + 0.011301388032734394, + -0.027812635526061058, + -0.006866327952593565, + 0.011929242871701717, + -0.003486598376184702, + 0.00860962737351656, + 9.4971401267685e-6, + -0.02340429276227951, + -0.03299577906727791, + 0.011308067478239536, + -6.366214802255854e-5, + 0.006782836746424437, + 0.009818581864237785, + -0.0428544357419014, + -0.010807119309902191, + 0.008509437553584576, + 0.0031593122985213995, + -0.003904055105522275, + -0.010967422276735306, + 0.013405369594693184, + 0.01093402598053217, + -0.011722183786332607, + -0.003857299918308854, + 0.016831854358315468, + 0.003304587211459875, + 0.009037102572619915, + -0.012303284369409084, + 0.0156162204220891, + -0.013138197362422943, + -0.0036702794022858143, + 0.016083771362900734, + -0.005974640138447285, + 0.0034966173116117716, + 0.0008265642682090402, + 0.016110489144921303, + 0.009898733347654343, + 0.006218435242772102, + -0.00809532031416893, + 0.008509437553584576, + 0.009698353707790375, + -0.005547164473682642, + -0.009885374456644058, + -0.00651900377124548, + -0.005293351132422686, + -0.0001166791480500251, + 0.004378285724669695, + 0.011087650433182716, + 9.935469279298559e-5, + 0.023978713899850845, + -0.009865337051451206, + 0.017125744372606277, + 0.008342455141246319, + 0.0024212489370256662, + -0.0005518777761608362, + 0.013104801066219807, + 0.015108592808246613, + -0.0057241665199398994, + 0.009558089077472687, + 0.024219168350100517, + -0.008916875347495079, + 0.018581833690404892, + 0.003777148202061653, + -0.004899271763861179, + -0.0005322573124431074, + 0.024913815781474113, + 0.008896837010979652, + 0.007327199913561344, + -0.007033310364931822, + 0.01868870109319687, + 0.007547617424279451, + -0.01473455224186182, + 0.0010369624942541122, + -0.008950271643698215, + 0.0018985930364578962, + -0.012744118459522724, + -0.013485521078109741, + -0.013852883130311966, + 0.016885288059711456, + -0.034785833209753036, + -0.004318172112107277, + -0.01329182181507349, + 0.016524605453014374, + -0.012550418265163898, + -0.004558627028018236, + -0.005593919660896063, + -0.015215462073683739, + -0.007033310364931822, + -0.004091075621545315, + 0.007006593514233828, + -0.01517538633197546, + 0.007414030842483044, + -0.010820478200912476, + -0.0087899686768651, + 0.011221236549317837, + -0.007567655295133591, + 0.008663061074912548, + 0.0021223498042672873, + -0.0020054620690643787, + -0.02575540915131569, + -0.002887130482122302, + -0.002925536595284939, + -0.017713522538542747, + 0.03534689545631409, + -0.010192622430622578, + 0.00927087850868702, + -0.0015262217493727803, + -0.0058477334678173065, + -0.002743525430560112, + 0.0015905100153759122, + -0.03582780435681343, + -0.0065690986812114716, + 0.007894941605627537, + 0.02805308997631073, + 0.0019870938267558813, + -0.005330087151378393, + -0.013044686987996101, + -0.008516116999089718, + 0.004718930460512638, + -0.0028002995532006025, + -0.006064810790121555, + -0.01040636096149683, + 0.031659916043281555, + 0.0032060674857348204, + -0.004034301731735468, + 0.01736619882285595, + -0.005824355874210596, + 0.038045335561037064, + 0.01883564703166485, + -0.015709729865193367, + -0.02531457506120205, + -0.004331530537456274, + -0.011254632845520973, + 0.0006295247003436089, + -0.014761269092559814, + 0.015683013945817947, + -0.03296906128525734, + -0.0006003027665428817, + -0.0065690986812114716, + 2.9645948416145984e-6, + 0.011221236549317837, + -0.003267850959673524, + -0.008916875347495079, + 0.0009100555907934904, + 0.0038639791309833527, + 0.0049660648219287395, + 0.012483625672757626, + 0.049052830785512924, + 0.020158149302005768, + 0.004936008248478174, + 0.003194378688931465, + -0.01177561841905117, + 0.01033288799226284, + -0.008081961423158646, + -0.018114281818270683, + 0.01790054328739643, + -0.011722183786332607, + 0.023631388321518898, + 0.0033647010568529367, + 0.0063453419134020805, + -0.0012891063233837485, + 0.009611522778868675, + -0.021747823804616928, + 0.001785044907592237, + -0.011167801916599274, + -0.008289020508527756, + -0.009077178314328194, + -0.017379557713866234, + 0.003930772189050913, + 0.014667758718132973, + 0.013746014796197414, + -0.01212962158024311, + -0.004815780557692051, + 0.000772294879425317, + 0.016270792111754417, + -0.0088767996057868, + 0.007768034469336271, + 0.006846290081739426, + -0.007540937978774309, + 0.0037504311185330153, + 0.013786090537905693, + -0.031125571578741074, + 0.01624407432973385, + 0.0028136582113802433, + 0.02516762912273407, + -0.02340429276227951, + 0.005587240681052208, + -0.0028804512694478035, + 0.007193613797426224, + 0.00889015756547451, + 0.014801344834268093, + -0.01819443330168724, + 0.025074118748307228, + 0.0007643632125109434, + 0.008128716610372066, + -0.0034498621243983507, + -0.011742222122848034, + 0.004538589157164097, + 0.0006499800947494805, + -0.0046788547188043594, + -0.01846160553395748, + -0.007420710287988186, + -0.023350859060883522, + 0.006639231462031603, + 0.0012824269942939281, + -0.0028086486272513866, + -0.00483581842854619, + -0.01621735841035843, + 0.00607816968113184, + -0.007667844649404287, + 0.006655929610133171, + 0.010346246883273125, + 0.022482547909021378, + 0.007153538055717945, + 0.011615315452218056, + -0.0018251207657158375, + 0.006191717926412821, + -0.011227915063500404, + -0.01798069477081299, + 0.00592454569414258, + -0.004925989080220461, + 0.012931139208376408, + 0.008055244572460651, + -0.009330992586910725, + -0.018849005922675133, + 0.004341549705713987, + 0.009544730186462402, + 0.010747005231678486, + 0.011468370445072651, + -0.002773582236841321, + 0.00314929336309433, + 0.03467896208167076, + 0.02687753178179264, + -0.019263122230768204, + 0.01954365335404873, + -0.001721591455861926, + -0.004528570454567671, + -0.01753986068069935, + 0.010045678354799747, + -0.031098853796720505, + 0.012937817722558975, + 0.005533806048333645, + 0.0038038655184209347, + -0.010192622430622578, + 0.030751530081033707, + -0.0027451952919363976, + 0.026236318051815033, + -0.0029105080757290125, + -0.006428833119571209, + 0.015990260988473892, + 0.019450142979621887, + -0.013518918305635452, + 0.008028527721762657, + 0.010012281127274036, + -0.019850900396704674, + 0.0029823107179254293, + -0.001477796700783074, + 0.002536467043682933, + -0.014013187028467655, + -6.611470598727465e-5, + -0.0012047800701111555, + -0.0068529690615832806, + -0.004391644615679979, + -0.013011290691792965, + 0.0043448894284665585, + 0.006111565977334976, + 0.04053003713488579, + 0.003354682121425867, + -0.0056840903125703335, + 0.007213651668280363, + -0.00765448622405529, + 0.014013187028467655, + -0.015148668549954891, + -0.0015896750846877694, + 0.00581433717161417, + -0.0012507003266364336, + 0.009137292392551899, + 0.0018050827784463763, + 0.020732570439577103, + 0.018595190718770027, + 0.00251642893999815, + -0.0007622759439982474, + 0.010326209478080273, + -0.005310049280524254, + -0.008729854598641396, + -0.03756442293524742, + -0.006275209132581949, + -0.00019610028539318591, + 0.00780811021104455, + -0.004775704815983772, + -0.004111113492399454, + -0.002098972210660577, + -0.007019951939582825, + -0.013091442175209522, + 0.0035300138406455517, + 0.01778031513094902, + -0.016324227675795555, + 0.0014995044330134988, + 0.0312324408441782, + 0.009511333890259266, + -0.01677842065691948, + 0.017232613638043404, + 0.01589675061404705, + 0.027278291061520576, + 0.01198267750442028, + 0.0022425774950534105, + -0.0025464859791100025, + 0.013445445336401463, + -0.003616844769567251, + 0.020305093377828598, + -0.02425924316048622, + 0.011915883980691433, + -0.0008925224537961185, + 0.018822288140654564, + 0.02487374097108841, + 0.028186677023768425, + 0.0012131291441619396, + -0.009898733347654343, + 0.00430481368675828, + 0.011094328947365284, + -0.02222873456776142, + -0.012877704575657845, + 0.005941243842244148, + -0.013251745142042637, + 0.009210764430463314, + -0.0046788547188043594, + 0.007647806778550148, + -0.04157200828194618, + -0.009384426288306713, + -0.012476946227252483, + 0.004084396176040173, + -0.02896147593855858, + 0.02572869136929512, + 0.004648797679692507, + 0.006385417655110359, + -0.009090537205338478, + 0.005249935667961836, + 0.02278979681432247, + 0.0003590127744246274, + 0.004167887847870588, + -0.0017040582606568933, + -0.019436784088611603, + 0.00012074934784322977, + -0.007006593514233828, + -0.026476774364709854, + 0.001992103410884738, + -0.0022893324494361877, + 0.024593209847807884, + -0.006044772919267416, + 0.010372963733971119, + -0.00787490326911211, + 0.026369905099272728, + -0.03128587454557419, + -0.019303197041153908, + -0.013452124781906605, + 0.014387227594852448, + -0.008268982172012329, + 0.015602861531078815, + -0.0045686461962759495, + -0.027011118829250336, + 0.01461432408541441, + -0.011541842482984066, + -0.004221322014927864, + 0.02584891952574253, + -0.00822890643030405, + -0.031953804194927216, + 0.001658972934819758, + -0.0008808336569927633, + -0.006114905700087547, + -0.012350039556622505, + -0.003954149782657623, + 0.0019236404914408922, + 0.006746100261807442, + -0.04515211656689644, + -0.019022667780518532, + 0.021654313430190086, + -0.01098078116774559, + -0.0209062322974205, + 0.015095234848558903, + 0.025862278416752815, + 0.01149508822709322, + -0.010032319463789463, + 0.013318538665771484, + 0.01675170287489891, + 0.0009050461230799556, + -0.0025247782468795776, + -0.02274972014129162, + 0.0010887270327657461, + 0.019797466695308685, + -0.009424502961337566, + -0.022803155705332756, + 0.03328966721892357, + 0.014267000369727612, + 0.00669600535184145, + 0.032808758318424225, + 0.004027622286230326, + 0.001447739894501865, + 0.01018594391644001, + -0.004925989080220461, + 0.007220331113785505, + -0.0007447427487932146, + -0.00012116680591134354, + -0.0028286867309361696, + -0.00745410704985261, + 0.007273765746504068, + -0.03665603697299957, + -0.0012189735425636172, + -0.0031292554922401905, + 0.018742136657238007, + 0.011101008392870426, + -0.0009167349198833108, + -0.0015980242751538754, + 0.002402880694717169, + 0.002025499939918518, + 0.02137378230690956, + 0.007093424443155527, + -0.013011290691792965, + -0.03588123992085457, + -0.008950271643698215, + -0.002402880694717169, + -0.010940705426037312, + -0.0021156705915927887, + 0.005777600686997175, + 0.006328643765300512, + -0.012243170291185379, + 0.007186934817582369, + 0.008142075501382351, + 0.027064552530646324, + -0.012016073800623417, + -0.01824786700308323, + -0.007814789190888405, + -0.01565629616379738, + 0.009691675193607807, + -0.006051452364772558, + -0.007447427604347467, + 0.0036702794022858143, + 0.035133156925439835, + 0.019142894074320793, + -0.01704559288918972, + -0.007694561965763569, + -0.013144876807928085, + 0.011875808238983154, + -0.002655024640262127, + -0.015415840782225132, + -0.007213651668280363, + 0.007173575926572084, + -0.007213651668280363, + 0.023658106103539467, + -0.015562785789370537, + 0.023511162027716637, + 0.013331897556781769, + -0.0040109241381287575, + 0.005804318003356457, + 0.008289020508527756, + -0.0007176080835051835, + 0.008883479051291943, + -0.018007412552833557, + -0.011615315452218056, + 0.01562957838177681, + 0.031419459730386734, + 0.0007798091392032802, + 0.0016723315929993987, + 8.641353633720428e-5, + -0.003696996485814452, + -0.035427045077085495, + 0.00880332663655281, + 0.007373955100774765, + -0.01190920453518629, + -0.009558089077472687, + 0.003934111911803484, + -0.007373955100774765, + -0.0005752553115598857, + 0.012971214950084686, + -0.013178273104131222, + -0.018728777766227722, + -0.0037303930148482323, + 0.0062919072806835175, + -0.008850081823766232, + 0.019997846335172653, + 0.0007380634779110551, + 0.0023310782853513956, + 0.0022425774950534105, + 0.00945121981203556, + 0.00804856512695551, + 0.007607731036841869, + -1.0677759746613447e-5, + -0.020305093377828598, + -0.006756119430065155, + 0.012109584175050259, + -0.001587170409038663, + -0.008268982172012329, + -0.015028441324830055, + 0.0047322893515229225, + -0.006265190429985523, + 0.0132183488458395, + -0.0010352926328778267, + 0.008295699954032898, + 0.008629664778709412, + 0.005323407705873251, + -0.02396535500884056, + -0.007788072340190411, + 0.02634318731725216, + 0.009811902418732643, + -0.00782814808189869, + 0.013078083284199238, + -0.009684995748102665, + -0.0004596198268700391, + -0.009103896096348763, + 0.021186763420701027, + 0.006245152093470097, + -0.0025398065336048603, + -0.0055137681774795055, + -0.022642850875854492, + 0.003967508673667908, + 0.015816599130630493, + 0.007233689539134502, + -0.025715332478284836, + -0.013946393504738808, + -0.014921572059392929, + -0.017566578462719917, + 0.005600599106401205, + 0.014787985943257809, + 0.01352559681981802, + -0.0024629945401102304, + -0.001405159244313836, + -0.0057976385578513145, + -0.005456993822008371, + 0.022001639008522034, + 0.0009902073070406914, + 0.008796647191047668, + -0.014133414253592491, + -0.014934930950403214, + -0.028480567038059235, + -0.0016898647882044315, + -0.020211583003401756, + -0.015389123931527138, + -0.0008891827892512083, + -0.02496725134551525, + 0.005293351132422686, + 0.0006979876197874546, + -0.01748642697930336, + 0.01329182181507349, + 0.011655391193926334, + 8.187369530787691e-5, + -0.018448246642947197, + -0.0004596198268700391, + 0.0013725976459681988, + 0.006495626177638769, + 0.001815101713873446, + -0.02372489869594574, + -0.01768680475652218, + -0.014534172601997852, + 0.00596796115860343, + 0.0018601870397105813, + -0.0061449627391994, + 0.0020605663303285837, + 0.01572308875620365, + 0.014093338511884212, + 0.012704042717814445, + 0.018261225894093513, + -0.013746014796197414, + 0.0034665605053305626, + -0.005310049280524254, + -0.0034999570343643427, + -0.020305093377828598, + 0.01949021779000759, + -0.004311492666602135, + -0.02054554969072342, + 0.006605834700167179, + 0.008723175153136253, + 0.020438680425286293, + -0.012543738819658756, + 0.012824269942939281, + 0.016912005841732025, + 0.011842411942780018, + -0.011127726174890995, + 0.009598164819180965, + 0.03243471682071686, + 0.0049026114866137505, + 0.0018067526398226619, + 0.025715332478284836, + 0.02599586360156536, + -0.00024713436141610146, + -0.0036201844923198223, + -0.005690769758075476, + -0.017913902178406715, + 0.020238300785422325, + -0.014240283519029617, + -0.016965439543128014, + -0.004632099531590939, + -0.008769930340349674, + 0.0089636305347085, + 0.0025147590786218643, + -0.0036869775503873825, + -0.016591399908065796, + 0.006248491816222668, + -0.02558174729347229, + 0.01954365335404873, + -0.020144790410995483, + -0.005136387422680855, + 0.009117254056036472, + 0.013799448497593403, + 0.02729164995253086, + 0.01721925474703312, + -0.0017299405299127102, + -0.010145868174731731, + 0.01660475693643093, + -0.006138283293694258, + 0.010800439864397049, + -0.003890696447342634, + 0.00527665251865983, + 0.0035600708797574043, + 0.012016073800623417, + 0.004077717196196318, + 0.009611522778868675, + 0.010479832999408245, + -0.0020405284594744444, + 0.0011429964797571301, + 0.012256529182195663, + 0.0009234142489731312, + -0.008268982172012329, + 2.45386272581527e-5, + 0.007781392894685268, + -0.0026450057048350573, + -0.003727053524926305, + -0.00028094835579395294, + 0.006228453945368528, + -0.006375398952513933, + -0.02113332785665989, + -0.0008536989334970713, + 0.0056740716099739075, + -0.009424502961337566, + 0.0007985946722328663, + 0.013772731646895409, + 0.010059036314487457, + 0.010954064317047596, + 0.004625420086085796, + -0.02413901686668396, + 0.013044686987996101, + 0.021119968965649605, + 0.0011964308796450496, + 0.03363699093461037, + 0.00014203964383341372, + -0.0049627250991761684, + 0.023150479421019554, + -0.013759372755885124, + -0.009651598520576954, + 0.003870658576488495, + 0.002197492169216275, + 0.00660917442291975, + 0.020532190799713135, + -0.007140179630368948, + 0.004147849977016449, + -0.009511333890259266, + 0.0015679673524573445, + -0.006702684797346592, + 0.0089636305347085, + -0.03996897488832474, + -0.00772127928212285, + 0.008502758108079433, + 0.01689864695072174, + -0.012062828987836838, + 0.006946479436010122 + ], + "7855a776-75d8-443d-8d15-d4b46539e636": [ + -0.04033804312348366, + -0.03482035547494888, + -0.0100912069901824, + 0.031579382717609406, + -0.03289184346795082, + -0.03423108905553818, + 0.021240416914224625, + 0.04416828230023384, + -0.009093469940125942, + 0.030668696388602257, + 0.019566360861063004, + -0.0006792480126023293, + 1.3902507816965226e-5, + -0.027106307446956635, + 0.006666088942438364, + 0.03747205808758736, + -0.054105475544929504, + 0.018468180671334267, + 0.022472521290183067, + -0.03128474950790405, + 0.0516948364675045, + 0.010030941106379032, + -0.02251269854605198, + -0.001843135105445981, + 0.0010186628205701709, + -0.01033227052539587, + 0.0024960169102996588, + 0.010379143990576267, + -0.04347187280654907, + 0.0074060214683413506, + 0.004874849691987038, + -0.015401311218738556, + 0.0009918778669089079, + -0.010593423619866371, + 0.05040916055440903, + -0.017088759690523148, + 0.00047877986798994243, + 0.017102152109146118, + -0.02772235870361328, + -0.021749328821897507, + -0.05678396299481392, + 0.04647178202867508, + -0.02111988514661789, + 0.0023235890548676252, + -0.012876834720373154, + 0.001953622791916132, + -0.02065114863216877, + -0.01741017773747444, + 0.02536528930068016, + 0.028472336009144783, + 0.008671607822179794, + -0.029624085873365402, + 0.0006520446040667593, + 0.007827883586287498, + 0.031365104019641876, + -0.03835596144199371, + 0.013318785466253757, + 0.02067793346941471, + -0.000748302845750004, + -0.04084695503115654, + -0.013278608210384846, + -0.004540038760751486, + -0.009863534942269325, + -0.000542394001968205, + -0.015816476196050644, + 0.03149902820587158, + -0.015213816426694393, + -0.00926757138222456, + -0.04526646062731743, + -0.02653043158352375, + 0.004975292831659317, + 0.05381084233522415, + -0.023784980177879333, + 0.025927772745490074, + 0.031365104019641876, + -0.03921307623386383, + 0.05164126679301262, + 0.013117899186909199, + 0.006180612836033106, + -0.007205135188996792, + 0.016365567222237587, + -0.0010420995531603694, + -0.007412717677652836, + 0.00964256003499031, + 0.05726609006524086, + 0.010439409874379635, + 0.004114828538149595, + -0.03998984023928642, + 0.04079338535666466, + -0.04773067310452461, + 0.0011174320243299007, + 0.021494872868061066, + 0.01244158111512661, + -0.03187401592731476, + -0.007010944653302431, + 0.017517317086458206, + 0.028311626985669136, + -0.020771680399775505, + 0.017704810947179794, + -0.01173178106546402, + 0.014129028655588627, + 7.925606769276783e-5, + 0.01971367746591568, + -0.01735660806298256, + 0.012488454580307007, + 0.009066685102880001, + 0.004104784224182367, + 0.0029630782082676888, + -0.032356146723032, + 0.06669437140226364, + 0.013901357538998127, + -0.03490070998668671, + -0.019352082163095474, + -0.00469739967957139, + -0.05673039332032204, + -0.04108801856637001, + -0.024240324273705482, + -0.0011793720768764615, + -0.025967950001358986, + -0.019780639559030533, + 0.007760921493172646, + 0.016338782384991646, + -0.009341229684650898, + 0.032275792211294174, + -0.03773990646004677, + 0.011236260645091534, + 0.00622748676687479, + -0.007847972214221954, + 0.005062344018369913, + 0.006964071188122034, + -0.03685600683093071, + -0.009334533475339413, + 0.005079084541648626, + -0.013425925746560097, + 0.014316522516310215, + -0.01419599074870348, + 0.03835596144199371, + 0.0831402912735939, + -0.01550845056772232, + 0.031311534345149994, + -0.0610695444047451, + -0.05113235116004944, + -0.005176179576665163, + -0.010359055362641811, + -0.004486468620598316, + -0.017061974853277206, + -0.03623995557427406, + 0.03141867369413376, + -0.019660107791423798, + -0.0006537186563946307, + -0.04390043392777443, + -0.023195713758468628, + 0.0038201946299523115, + 0.014088851399719715, + 0.03444536775350571, + -0.029624085873365402, + 0.017664633691310883, + 0.021427910774946213, + 0.0073122745379805565, + 0.044275421649217606, + 0.040525536984205246, + -0.025043871253728867, + -0.005440680310130119, + 0.018628889694809914, + 0.06240878999233246, + -0.009816661477088928, + 0.01349288783967495, + 0.018441395834088326, + -0.005189571995288134, + 0.01513346191495657, + 0.0314454585313797, + -0.024976909160614014, + 0.0229814350605011, + -0.022807331755757332, + 0.033695388585329056, + -0.013653596863150597, + 0.047087833285331726, + 0.018628889694809914, + 0.009347925893962383, + -0.03715064004063606, + -0.00811582151800394, + -0.028954464942216873, + 0.00173264741897583, + -0.006746443919837475, + 0.002737080678343773, + -0.005256534554064274, + 0.02586081065237522, + 0.026222405955195427, + -0.03407037630677223, + -0.013392443768680096, + -0.006006511393934488, + -0.008812228217720985, + -0.015642374753952026, + -0.01173178106546402, + -0.04339151829481125, + -0.029195528477430344, + 0.04234690964221954, + 0.04023090377449989, + 0.013479495421051979, + 0.0173833929002285, + -0.009301052428781986, + -0.05228410288691521, + -0.03382931277155876, + 0.01949939876794815, + -0.039561279118061066, + 0.02398586831986904, + -0.006157176103442907, + 0.015428096055984497, + 0.0370435006916523, + -0.05742679908871651, + 0.003887156955897808, + -0.06873002648353577, + -0.004777754656970501, + 0.012280871160328388, + -0.0269857756793499, + 0.01351967267692089, + -0.003954119049012661, + 0.03559711575508118, + 0.02674471028149128, + -0.04044518247246742, + 0.005808972753584385, + -0.004191834945231676, + 0.004463031888008118, + -0.03822203725576401, + -0.04065946117043495, + 0.01645931415259838, + -0.04248083382844925, + 0.023061789572238922, + -0.06814075261354446, + 0.0013040892081335187, + 0.04272189736366272, + -0.017329823225736618, + 0.020718110725283623, + -0.012180428020656109, + 0.008979633450508118, + 0.02608848176896572, + 0.014262952841818333, + 0.026396507397294044, + 0.0041784425266087055, + -0.028472336009144783, + 0.006445113569498062, + 0.0009274267358705401, + 0.020008312538266182, + 0.0062911007553339005, + 0.021682366728782654, + 0.02508404850959778, + 0.006455158349126577, + 0.05324835702776909, + 0.01781195029616356, + -0.002865983173251152, + 0.014303130097687244, + 0.011704996228218079, + 0.004399417899549007, + -0.009260875172913074, + -0.04154336079955101, + 0.048025306314229965, + 0.03120439499616623, + -0.019526183605194092, + 0.013452710583806038, + 0.008577860891819, + -0.013312089256942272, + -0.02117345482110977, + 0.0012287567369639874, + 0.03315969184041023, + 0.028954464942216873, + -0.01045949850231409, + 0.019794031977653503, + 0.004426202736794949, + -0.008263138122856617, + 0.01128313411027193, + 0.012903619557619095, + 0.013332177884876728, + -0.015628982335329056, + 0.014504017308354378, + 0.006833494640886784, + 0.006100258324295282, + -0.01313129160553217, + 0.0046940515749156475, + 0.009655952453613281, + 0.007004248443990946, + 0.004640481900423765, + 0.014062066562473774, + 0.0077810101211071014, + -0.002554608741775155, + 0.001833090791478753, + 0.044918257743120193, + -0.009763091802597046, + 0.009622471407055855, + -0.029624085873365402, + 0.008812228217720985, + 0.016579845920205116, + 0.0013132966123521328, + 0.007084602955728769, + -0.005705181043595076, + 9.00458780961344e-6, + -0.007432806771248579, + -0.010492980480194092, + 0.016365567222237587, + -0.039775557816028595, + 0.0014145768946036696, + -0.01924494281411171, + 0.026584001258015633, + 0.03591853380203247, + -0.04221298545598984, + 0.018869953230023384, + -0.025177795439958572, + 0.05710538104176521, + 0.05097164213657379, + -0.02836519666016102, + 0.016003970056772232, + -0.01349288783967495, + -0.043337948620319366, + -0.015026322565972805, + -0.017463747411966324, + -0.004061258863657713, + 0.01830747164785862, + -0.013057633303105831, + -0.0033949846401810646, + -0.012247390113770962, + -0.024588527157902718, + 0.009274267591536045, + 0.004757666029036045, + -0.04998060315847397, + 0.018588712438941002, + 0.03514177352190018, + -0.04170406982302666, + 0.04039161279797554, + 0.009106862358748913, + -0.01734321564435959, + 0.0042855823412537575, + -0.043043315410614014, + -0.03171330690383911, + -0.03519534319639206, + -0.005460768938064575, + -0.028258057311177254, + -0.030802622437477112, + -0.04652535170316696, + -0.06331947445869446, + 0.005504294764250517, + -0.028499120846390724, + -0.023195713758468628, + -0.04360579699277878, + -0.022807331755757332, + -0.004620393272489309, + -0.00997067429125309, + -0.02205735631287098, + -0.02204396389424801, + -0.005993118975311518, + 0.003706358838826418, + -0.012562112882733345, + 0.0008248908561654389, + -0.02162879705429077, + 0.01712893694639206, + 0.022887686267495155, + 0.03870416432619095, + -0.002837524050846696, + -0.0033531333319842815, + -0.022860901430249214, + 0.02492333948612213, + -0.03846310079097748, + 0.03163295239210129, + -0.023155536502599716, + 0.008644822984933853, + -0.00964256003499031, + 0.008845709264278412, + -0.027883069589734077, + 0.0016522927908226848, + 0.0020038443617522717, + -0.022874293848872185, + 0.00987023115158081, + -0.005537775810807943, + 0.012495150789618492, + -0.003960815258324146, + -0.02914195880293846, + -0.01718250662088394, + -0.017075367271900177, + 0.059516023844480515, + -0.03053477220237255, + -0.006706266663968563, + 0.0027688879054039717, + -0.03005264513194561, + -0.03262399509549141, + 0.012495150789618492, + -0.01621825061738491, + 0.02249930612742901, + 0.009649256244301796, + -0.0051058693788945675, + -0.014356699772179127, + -0.006053384859114885, + -0.0034987761173397303, + -0.014852220192551613, + 0.006498683709651232, + -0.009461761452257633, + -0.003619308117777109, + -0.015548627823591232, + -0.0029061604291200638, + -0.0027688879054039717, + 0.0061270431615412235, + 0.008798835799098015, + 0.00820287223905325, + -0.03259721025824547, + -0.011738477274775505, + 0.020383300259709358, + 0.01395492721349001, + 0.04432899132370949, + -0.0017292993143200874, + -0.03690957650542259, + 0.009635863825678825, + 0.024133184924721718, + 0.01222060527652502, + 0.02742772549390793, + -0.0025629790034145117, + -0.015414703637361526, + 0.012836657464504242, + 0.056462544947862625, + 0.0021293985191732645, + 0.015816476196050644, + 0.01994134858250618, + -0.02911517396569252, + 0.012381314300000668, + 0.015066499821841717, + 0.04210584610700607, + 0.018709244206547737, + 0.028766971081495285, + 0.03471321612596512, + 0.011658122763037682, + -0.00890597514808178, + -0.0027052736841142178, + -0.0024257064796984196, + 0.016151288524270058, + 0.011624641716480255, + 0.04023090377449989, + 0.022218065336346626, + -0.015093284659087658, + -0.04360579699277878, + -0.04012376442551613, + -0.032516855746507645, + -0.031150825321674347, + 0.023892121389508247, + -0.0014321545604616404, + -0.02628936804831028, + 0.011778654530644417, + -0.011062159202992916, + 0.029516946524381638, + -0.02468227408826351, + 0.018146762624382973, + -0.05006095767021179, + 0.0050489515997469425, + -0.037204209715127945, + -0.020128844305872917, + 0.008142606355249882, + 0.031043685972690582, + -0.009448369033634663, + 0.0058692386373877525, + -0.0236644484102726, + -0.008765354752540588, + 0.011008589528501034, + -0.010653689503669739, + 0.02582063339650631, + -0.04012376442551613, + -0.009508635848760605, + -0.002490994520485401, + 0.010774221271276474, + -0.00995728187263012, + 0.012983975000679493, + -0.024494780227541924, + 0.024360856041312218, + -0.0014999537961557508, + -0.008959544822573662, + 0.03891844302415848, + 0.017289645969867706, + -0.014088851399719715, + -0.03623995557427406, + 0.00108478800393641, + 0.007051121909171343, + 0.0036561372689902782, + -0.00023164742742665112, + -0.0054674651473760605, + 0.001764454529620707, + -0.0039206380024552345, + 0.011048766784369946, + -0.008839013054966927, + 0.004516602028161287, + -0.006535512860864401, + 0.0017092106863856316, + 0.01992795616388321, + -0.030213354155421257, + -0.017986051738262177, + 0.01455758698284626, + -0.024534957483410835, + -0.0027102958410978317, + 0.030856192111968994, + 0.007566730957478285, + 0.024347463622689247, + 0.00035866640973836184, + -0.013941534794867039, + 0.0036795740015804768, + -0.029490161687135696, + -0.003003255696967244, + -0.007760921493172646, + 0.01569594442844391, + -0.005778839811682701, + -0.004921723157167435, + 0.007218527607619762, + -0.004918375052511692, + 0.003210838418453932, + -0.037659551948308945, + 0.00640493631362915, + -0.0036260043270885944, + 0.005360325798392296, + -0.061605244874954224, + 0.03966841846704483, + -0.01491918321698904, + 0.02326267585158348, + -0.02304839715361595, + -0.004700747784227133, + -0.004004340618848801, + -0.027642004191875458, + 0.05206982418894768, + -0.00030844472348690033, + 0.00517283147200942, + -0.031766876578330994, + -0.0030869583133608103, + 0.010439409874379635, + -0.040043409913778305, + 0.0018163502682000399, + -0.024133184924721718, + -0.00030718918424099684, + 0.02182968333363533, + -0.038141682744026184, + -0.010405928827822208, + 0.008082340471446514, + -0.017972659319639206, + -0.011484021320939064, + 0.026892028748989105, + 0.0014740058686584234, + 0.011557679623365402, + -0.008310011588037014, + 0.0018515053670853376, + 0.006475246977061033, + -0.02674471028149128, + -0.00914034340530634, + -0.007211831398308277, + -0.03350789472460747, + 0.012227301485836506, + 0.022231457754969597, + -0.03921307623386383, + 0.02582063339650631, + 0.0022131013683974743, + 0.01643252931535244, + -0.030347278341650963, + 0.043793290853500366, + 0.0006101932376623154, + -0.003994296304881573, + -0.008517594076693058, + -0.0423201248049736, + 0.02914195880293846, + 0.021655581891536713, + -0.015294170938432217, + -0.04015054926276207, + -0.022646622732281685, + 0.03337397053837776, + 0.017450354993343353, + 0.008055555634200573, + -0.036025673151016235, + 0.0034050289541482925, + 0.012233997695147991, + 0.012327744625508785, + 0.0026784888468682766, + 0.019338689744472504, + 0.0276687890291214, + 0.015026322565972805, + 0.027414333075284958, + -0.01116929855197668, + -0.037418488413095474, + 0.001042936579324305, + -0.00902650784701109, + 0.026142051443457603, + -0.020262768492102623, + -0.011671515181660652, + 0.025405466556549072, + -0.003585826838389039, + 0.025217972695827484, + -0.013687077909708023, + -0.0012354529462754726, + 0.020932389423251152, + -0.015441488474607468, + 0.008899278938770294, + 0.003271104535087943, + -0.021923432126641273, + 0.021977001801133156, + -0.006943982560187578, + 0.009019811637699604, + -0.01786551997065544, + -0.010292093269526958, + 0.03915950655937195, + -0.0012806524755433202, + 0.010479588061571121, + 0.0379541851580143, + 0.011691603809595108, + 0.03447215259075165, + 0.0468735545873642, + 0.0032978893723338842, + -0.02043686993420124, + -0.02346356213092804, + 0.002949685789644718, + -0.016968226060271263, + 0.025244757533073425, + 0.0279634241014719, + 0.03915950655937195, + -0.0063379742205142975, + -0.01878959871828556, + 0.04178442433476448, + 0.0038201946299523115, + 0.007493072655051947, + -0.002896116115152836, + -0.010801006108522415, + 0.033722173422575, + 0.00337657006457448, + -0.023155536502599716, + 0.03270434960722923, + -0.020128844305872917, + 0.045882515609264374, + -0.023865336552262306, + 0.009434976615011692, + 0.02793663926422596, + -0.02067793346941471, + -0.03101690113544464, + -0.018253901973366737, + -0.0044362470507621765, + -0.016084326431155205, + -0.03286505863070488, + 0.01230765599757433, + -0.006414980627596378, + 0.014075458981096745, + 0.008872494101524353, + 0.03966841846704483, + -0.01220721285790205, + -0.010854575783014297, + -0.0025479125324636698, + -0.031579382717609406, + -0.022633230313658714, + 0.018615497276186943, + 0.059730302542448044, + -0.017102152109146118, + 0.002276715589687228, + -0.0021193542052060366, + 0.020825250074267387, + 0.005601389799267054, + 0.0034853836987167597, + -0.011765262112021446, + -0.012716125696897507, + -0.009676041081547737, + 0.02655721642076969, + 0.013137987814843655, + -0.021963609382510185, + 0.030427632853388786, + -0.0069105010479688644, + -0.00474762124940753, + -0.004610348958522081, + 0.04858778789639473, + -0.045186106115579605, + 0.01245497353374958, + 0.01688787154853344, + 0.009977370500564575, + -0.0016506187384948134, + -0.007760921493172646, + -0.0013233409263193607, + 0.010097903199493885, + 0.017436962574720383, + -0.019901171326637268, + -0.021441303193569183, + 0.023825157433748245, + 0.0002967263280879706, + -0.007566730957478285, + 0.013171468861401081, + -0.023597486317157745, + -0.01576290652155876, + 0.01645931415259838, + -0.02535189688205719, + -0.03315969184041023, + -0.01548166573047638, + -0.032784704118967056, + 0.02417336218059063, + -0.04569501802325249, + 5.744102963944897e-5, + -0.004459683783352375, + 0.0008366092224605381, + -0.005875934846699238, + -0.006009859498590231, + -0.011658122763037682, + 0.006351366639137268, + -0.025418858975172043, + 0.019311904907226562, + 0.006438417360186577, + -0.028579475358128548, + 0.00788145326077938, + 0.0019234898500144482, + 0.012983975000679493, + -0.013526368886232376, + -0.020557401701807976, + -0.002711969893425703, + 0.00269522937014699, + -0.02204396389424801, + 0.013713862746953964, + 0.006666088942438364, + -0.015120069496333599, + -0.03645423427224159, + -0.0014438729267567396, + 0.005273275077342987, + -0.013037544675171375, + 0.0244144257158041, + 5.0483238737797365e-5, + 0.01991456374526024, + 0.002275041537359357, + 0.02090560458600521, + -0.0116045530885458, + 0.04301653057336807, + 0.004268841817975044, + 0.02557956799864769, + -0.0061270431615412235, + 0.011765262112021446, + 5.322973447619006e-5, + -0.023517131805419922, + -0.049391333013772964, + -0.028284842148423195, + 0.0011341726640239358, + 0.01514685433357954, + -0.005129306111484766, + 0.007914934307336807, + 0.016499491408467293, + 0.005373718217015266, + 0.03891844302415848, + 0.0011525872396305203, + 0.01293040532618761, + 0.013231734745204449, + 0.0013551479205489159, + 0.00033732218435034156, + 0.05145376920700073, + -0.033454325050115585, + -0.011115728877484798, + -0.0011417058994993567, + -0.007928326725959778, + -0.023610878735780716, + -9.841615792538505e-6, + -0.008892582729458809, + 0.04012376442551613, + -0.01479865051805973, + -0.0016330411890521646, + -0.022633230313658714, + 0.021481480449438095, + -0.0213877335190773, + 0.01045949850231409, + -0.0021930127404630184, + -0.01116929855197668, + 0.017785165458917618, + 0.01420938316732645, + -2.097800825140439e-5, + -0.006348018534481525, + 0.02653043158352375, + 0.018039623275399208, + 0.001524227554909885, + 0.022606445476412773, + -0.018133370205760002, + -0.040713030844926834, + -0.021079707890748978, + 0.007057818118482828, + 0.04382007569074631, + 0.013117899186909199, + -0.024829590693116188, + 0.0246420968323946, + 0.021535050123929977, + 0.030347278341650963, + 0.024267109110951424, + 0.00372979580424726, + 0.0012672600569203496, + 0.019365474581718445, + -0.018401218578219414, + -0.046605706214904785, + 0.008082340471446514, + -0.03524891287088394, + -0.033668603748083115, + 0.01853514276444912, + -0.01873602904379368, + 0.017329823225736618, + -0.009749699383974075, + 0.04545395448803902, + 0.007426110096275806, + -0.004998730029910803, + -0.014075458981096745, + 0.004111480433493853, + -0.012361225672066212, + -0.006401588208973408, + -0.03195437043905258, + -9.871696238406003e-5, + -0.010017548687756062, + -0.0011124098673462868, + -0.00640493631362915, + 0.003706358838826418, + 0.002132746856659651, + 0.02699916809797287, + -0.017972659319639206, + 0.02560635283589363, + 0.017209291458129883, + -0.0035423014778643847, + -0.015562020242214203, + 0.005072388332337141, + -0.007104691583663225, + -0.03474000096321106, + 0.02628936804831028, + 0.004456335678696632, + 0.009240786544978619, + -0.022686799988150597, + -0.0004132824542466551, + -0.04041839763522148, + 0.0028509164694696665, + -0.0007629508036188781, + -0.00435254443436861, + 0.015012930147349834, + 0.00015568715753033757, + -0.028499120846390724, + 0.0029362933710217476, + 0.007339059375226498, + -0.01220721285790205, + 0.010171561501920223, + -0.03848988562822342, + 0.03800775855779648, + -0.012488454580307007, + 0.018856560811400414, + 0.036748867481946945, + -0.00486480537801981, + 0.014972752891480923, + -0.01151750236749649, + 0.00995728187263012, + 0.021869860589504242, + 0.03096333146095276, + -0.016526276245713234, + -0.0047911470755934715, + -0.03594531863927841, + 0.036989931017160416, + -0.015093284659087658, + -0.01903066411614418, + 0.010914841666817665, + 0.004935115575790405, + 0.033936452120542526, + -0.015870045870542526, + 0.010399232618510723, + 0.015026322565972805, + 0.017785165458917618, + 0.010044333525002003, + 0.013097810558974743, + -0.029168743640184402, + 0.015347741544246674, + 0.013546457514166832, + -0.03192758560180664, + 0.03645423427224159, + -0.020985960960388184, + 0.008289922960102558, + -0.004161702003329992, + -0.0014765169471502304, + 0.03878451883792877, + 0.026892028748989105, + -0.03707028552889824, + 0.001295718946494162, + -0.003302911529317498, + -0.007151565048843622, + -0.006177264731377363, + -0.016178073361516, + -0.01139696966856718, + 0.011644730344414711, + -0.022177888080477715, + 0.013941534794867039, + 0.01576290652155876, + 0.014289737679064274, + 0.02162879705429077, + -0.0029781446792185307, + -0.00681675411760807, + -0.01573612168431282, + -0.01619146578013897, + -0.026369722560048103, + -0.016981618478894234, + -0.010506372898817062, + 0.00799528881907463, + 0.018682459369301796, + -0.021535050123929977, + -0.0037833654787391424, + -0.0035523457918316126, + -0.005490902345627546, + -0.0050489515997469425, + 0.023865336552262306, + 0.0022298418916761875, + 0.043337948620319366, + -0.010452802293002605, + -0.012756302952766418, + -0.0284187663346529, + 0.004463031888008118, + 0.02607508935034275, + 0.004101436119526625, + -0.010653689503669739, + -0.010044333525002003, + -0.003448554314672947, + -0.0276687890291214, + 0.012629074975848198, + 0.007332363165915012, + 0.01644592173397541, + -0.040766600519418716, + 0.02110649272799492, + 0.00662256358191371, + 0.018602104857563972, + -0.015468273311853409, + -0.00045952823711559176, + 0.024293893948197365, + -0.023624271154403687, + -0.036989931017160416, + 0.03586496412754059, + 0.006019903812557459, + -0.005849150009453297, + -0.01781195029616356, + 0.008162694983184338, + -0.015026322565972805, + 0.03516855835914612, + 0.0062911007553339005, + 0.014129028655588627, + 0.017021795734763145, + -0.007245312444865704, + -0.007399325259029865, + -0.009441672824323177, + -0.013446014374494553, + 0.017972659319639206, + 0.021414518356323242, + -0.017986051738262177, + -0.011852312833070755, + -0.013278608210384846, + 0.0018130021635442972, + 0.00820287223905325, + -0.007272097282111645, + -0.017075367271900177, + -0.0017393437447026372, + 0.005665003787726164, + -0.020262768492102623, + -0.027066130191087723, + -0.018401218578219414, + 0.015280778519809246, + -0.024842984974384308, + -0.003097002627328038, + -0.006736399605870247, + 0.014115636236965656, + 0.02180289849638939, + -0.013740647584199905, + -0.0017226031050086021, + -0.0208654273301363, + 0.01737000048160553, + -0.013533065095543861, + -0.004958552308380604, + 0.031311534345149994, + 0.01833425648510456, + -0.007118084002286196, + -0.01873602904379368, + -0.013821002095937729, + -0.005608086008578539, + 0.03120439499616623, + -0.00019544598762877285, + 0.009662648662924767, + -0.005541123915463686, + -0.05113235116004944, + 0.006555601488798857, + -0.05796249955892563, + 0.00928096380084753, + -0.025311719626188278, + 0.01758427917957306, + -0.0043324558064341545, + 0.004302322864532471, + -0.0013551479205489159, + 0.009930497035384178, + -0.028927680104970932, + -0.03187401592731476, + -0.03147224336862564, + -0.022204672917723656, + 0.005792232230305672, + -0.007553338538855314, + 0.04944490268826485, + 0.01210676971822977, + 0.008685000240802765, + -0.018200332298874855, + -0.011403665877878666, + 0.002382181119173765, + -0.010767525061964989, + 0.013466103002429008, + -0.010546550154685974, + 0.03096333146095276, + 0.005397154949605465, + -0.00798189640045166, + -0.008303315378725529, + 0.012495150789618492, + 0.028740186244249344, + -0.010352359153330326, + 0.009260875172913074, + -0.010158169083297253, + -0.0020942434202879667, + -0.02742772549390793, + -0.012883530929684639, + -0.006763184443116188, + 0.0011542612919583917, + 0.04205227643251419, + 0.021548442542552948, + -0.007138172630220652, + 0.011276437900960445, + 0.003008277853950858, + -0.03032049350440502, + 0.027829499915242195, + -0.024106400087475777, + -0.012823265045881271, + 0.01066708192229271, + -0.02839198149740696, + 0.0074662878178060055, + -0.0028107392136007547, + 0.024226931855082512, + -0.05185554549098015, + -0.02959730103611946, + 0.019392259418964386, + -0.04773067310452461, + -0.02370462566614151, + 0.012354529462754726, + 0.010988500900566578, + 0.0006938960286788642, + 0.015816476196050644, + 0.01384778693318367, + -0.012260782532393932, + 0.025204580277204514, + 0.008557772263884544, + -0.01666020043194294, + -0.018361041322350502, + 0.009173824451863766, + -0.021186847239732742, + 0.002643333747982979, + -0.028525905683636665, + -0.0008880864479579031, + -0.05115913599729538, + -0.01593700796365738, + -0.02367784082889557, + 0.03224900737404823, + 0.0010337292915210128, + -0.00798189640045166, + -0.020302945747971535, + 0.026195621117949486, + 0.01741017773747444, + -0.004205227363854647, + 0.002027281327173114, + 0.006388195790350437, + -0.020329730585217476, + 0.03382931277155876, + 0.025512605905532837, + -0.0055176871828734875, + -0.002328611211851239, + -0.004908330738544464, + 0.005728618241846561, + -0.0338560976088047, + 0.02233859710395336, + -0.0010144776897504926, + 0.029704440385103226, + 0.0071582612581551075, + -0.022030571475625038, + 0.025485821068286896, + -0.029731227084994316, + -0.00693058967590332, + -0.011196083389222622, + -0.031793661415576935, + -0.0029999075923115015, + 0.018494965508580208, + -0.01550845056772232, + -0.011611249297857285, + 0.007385932840406895, + 0.0036728777922689915, + 0.0361328162252903, + -0.033427540212869644, + 0.017222683876752853, + 0.007814491167664528, + -0.002264997223392129, + -0.0041315690614283085, + -0.014490624889731407, + -0.005527731496840715, + -0.011510806158185005, + 0.004774406552314758, + 0.008042163215577602, + -0.025539390742778778, + -0.010600119829177856, + 0.0073122745379805565, + 0.029516946524381638, + -0.006438417360186577, + 0.0034954280126839876, + -0.026945598423480988, + -0.009354622103273869, + 0.00745959160849452, + 8.795330359134823e-6, + -0.0068435389548540115, + 0.006625911686569452, + -0.012488454580307007, + 0.048052091151475906, + 0.014437055215239525, + -0.004439595155417919, + 0.0055076428689062595, + 0.007734136655926704, + 0.0074060214683413506, + 0.004834672436118126, + 0.020584186539053917, + -0.0037431882228702307, + -0.019539576023817062, + -0.006428373046219349, + -0.020289553329348564, + 0.010928234085440636, + 0.03160616755485535, + -0.022834116593003273, + 0.015414703637361526, + 0.007961807772517204, + 0.007298882119357586, + -0.0019603190012276173, + 0.01350628025829792, + -0.00229178206063807, + -0.0031371801160275936, + 0.0009542116313241422, + -0.011450540274381638, + -0.015066499821841717, + 0.003001581644639373, + -0.0011843942338600755, + -0.01899048499763012, + -0.006471898872405291, + 0.004292278550565243, + 0.02227163501083851, + -0.0006240042275749147, + 0.007834579795598984, + 0.015669159591197968, + -0.011068855412304401, + 0.03969520330429077, + -0.0018916827393695712, + 0.0168610867112875, + -0.0018682460067793727, + -0.019111018627882004, + -0.006937285885214806, + -0.009609078988432884, + 0.007774313911795616, + -0.013928142376244068, + 0.005166135262697935, + 0.023543916642665863, + -0.002579719526693225, + -0.0060332962311804295, + -0.008464024402201176, + -0.016941441223025322, + -0.014504017308354378, + 0.007861364632844925, + -0.018401218578219414, + 0.007144868839532137, + -0.015468273311853409, + 0.0037431882228702307, + 0.010975108481943607, + -0.007613604422658682, + -0.03913272172212601, + 0.006076821591705084, + -0.0005997304106131196, + 0.011216172017157078, + -0.0017376696923747659, + -0.03423108905553818, + -0.011477325111627579, + 0.016820909455418587, + -0.006220790557563305, + -0.018160155043005943, + -0.00045408756705000997, + 0.019137803465127945, + -0.013191557489335537, + -0.0004427876847330481, + -0.016285212710499763, + -0.006294448859989643, + 0.0018297426868230104, + 0.016271820291876793, + 0.019097626209259033, + 0.006990856025367975, + 0.011048766784369946, + -0.04486468806862831, + -0.003448554314672947, + -0.016834301874041557, + 0.013439318165183067, + 0.011316615156829357, + -0.013499584048986435, + 0.010198346339166164, + -0.0006905479240231216, + -0.008303315378725529, + 0.0032426456455141306, + -0.000829494500067085, + 0.006485291291028261, + 0.03374895825982094, + 0.02185646817088127, + -0.006863627582788467, + -0.03739170357584953, + -0.017557494342327118, + 0.0025144314859062433, + 0.0019402303732931614, + -0.00997067429125309, + 0.00045910972403362393, + -0.009019811637699604, + 0.019579753279685974, + 0.008624734356999397, + 0.013204949907958508, + -0.00822965707629919, + -0.005464117042720318, + -0.007553338538855314, + -0.00859125331044197, + -0.022378774359822273, + -0.03803454339504242, + -0.0015610568225383759, + -0.015026322565972805, + -0.03072226792573929, + -0.020343123003840446, + 0.007292185910046101, + -0.015548627823591232, + -0.015200424008071423, + -0.012421492487192154, + 0.02586081065237522, + -0.002775584114715457, + -0.022244850173592567, + 0.007191742770373821, + 0.020785072818398476, + 0.012963886372745037, + -0.004439595155417919, + 0.02485637739300728, + -0.0011517502134665847, + 0.0009416562388651073, + -0.013050937093794346, + -0.004513253923505545, + 0.008068948052823544, + 0.011410362087190151, + -0.022151103243231773, + 0.007747529074549675, + 0.00962916761636734, + 0.002638311590999365, + 0.009736306965351105, + -0.0049518560990691185, + -0.012341137044131756, + -0.004088043700903654, + -0.017919089645147324, + -0.01968689262866974, + 0.019432436674833298, + -0.007124780211597681, + -0.025525998324155807, + 0.006106954533606768, + -0.023557309061288834, + 0.004888242110610008, + -0.005373718217015266, + -0.01970028504729271, + 0.006408284418284893, + -0.004486468620598316, + 0.01116929855197668, + -0.004573519807308912, + 0.00634132232517004, + 0.0028726793825626373, + 0.000986855709925294, + -0.012977278791368008, + -0.004573519807308912, + -0.02181629091501236, + 0.04382007569074631, + -0.016767339780926704, + -0.004660570528358221, + -0.02908838912844658, + -0.009327837266027927, + -0.007667174097150564, + -0.0063948919996619225, + -0.04604322463274002, + -0.011470628902316093, + 0.0074662878178060055, + 0.007185046561062336, + 0.0015409680781885982, + -0.016753947362303734, + -0.008068948052823544, + -0.00249769096262753, + 0.003910593688488007, + 0.0023955735377967358, + -0.0021478133276104927, + 0.01139696966856718, + -0.008209568448364735, + -0.006056732963770628, + -0.021012745797634125, + 0.002912856638431549, + -0.0034150732681155205, + 0.043096885085105896, + 0.007914934307336807, + -0.025874203070998192, + -0.027307193726301193, + 0.008256441913545132, + 0.018628889694809914, + 0.015789691358804703, + -0.006495335604995489, + -0.00964256003499031, + 0.007747529074549675, + -0.0035556938964873552, + -0.0035623901057988405, + 0.009950585663318634, + -0.012716125696897507, + 0.01692804880440235, + -0.01549505814909935, + -0.006455158349126577, + 0.00039947149343788624, + 0.02911517396569252, + -0.031365104019641876, + 0.011704996228218079, + -0.01196614932268858, + -0.01207998488098383, + -0.017195899039506912, + 0.006361410953104496, + -0.005959637463092804, + 0.012240693904459476, + 0.02371801808476448, + -0.017477139830589294, + -0.012863442301750183, + 0.010151472873985767, + -0.01599057763814926, + -0.00668617757037282, + -0.019901171326637268, + -0.006368107162415981, + -0.007118084002286196, + -0.009655952453613281, + 0.007553338538855314, + -0.036775652319192886, + 0.018494965508580208, + 0.017048582434654236, + -0.0051627871580421925, + -0.00451995013281703, + -0.004141613375395536, + 0.023075181990861893, + -0.007660477887839079, + 0.018200332298874855, + 0.011946060694754124, + 0.011497413739562035, + 0.0013651922345161438, + 0.012876834720373154, + 0.0012881857110187411, + -0.00952872447669506, + 0.0038101503159850836, + 0.003609263803809881, + -0.005745358765125275, + -0.0025060612242668867, + -0.006240879185497761, + -0.028338411822915077, + 0.007024337071925402, + -0.02251269854605198, + -0.00010588401346467435, + 0.031365104019641876, + -0.0014438729267567396, + 0.01078091748058796, + 0.0070444256998598576, + -0.018361041322350502, + -0.001237126998603344, + 0.00928096380084753, + -0.008852405473589897, + -0.0030317145865410566, + 0.010017548687756062, + 0.013995104469358921, + 0.023302853107452393, + 0.009897015988826752, + -0.010506372898817062, + -0.010593423619866371, + -0.020999353379011154, + 0.025673314929008484, + 0.014597764238715172, + -0.0468735545873642, + -0.019780639559030533, + -0.008952848613262177, + 0.028284842148423195, + 0.013198253698647022, + -0.015187031589448452, + -0.006495335604995489, + 0.029972290620207787, + -0.007185046561062336, + 0.0105800312012434, + 0.028713399544358253, + -0.01644592173397541, + 0.00662256358191371, + 0.006455158349126577, + -0.01691465638577938, + -0.01174517348408699, + 0.015602197498083115, + 0.02914195880293846, + -0.025686707347631454, + 0.005427287891507149, + -0.0025780454743653536, + 0.009535420686006546, + -0.009562205523252487, + 0.01171838864684105, + -0.014410270377993584, + -0.004871501587331295, + 0.005350281484425068, + 0.009508635848760605, + -0.01068047434091568, + -0.018923522904515266, + 0.029865151271224022, + 0.03645423427224159, + 0.006324581801891327, + 0.005795580334961414, + -0.013124595396220684, + -0.038650594651699066, + -0.019124411046504974, + -0.004617045167833567, + 0.005269926972687244, + -0.004499861039221287, + -0.013151380233466625, + 0.012823265045881271, + 0.013660293072462082, + -0.010586727410554886, + -0.011048766784369946, + -0.02742772549390793, + -0.005310104228556156, + 0.019164588302373886, + -0.018722636625170708, + 0.016486098989844322, + -0.012126858346164227, + -0.002238212153315544, + 0.008825620636343956, + 0.01185900904238224, + 0.01491918321698904, + -0.008825620636343956, + -0.030240138992667198, + 0.01230765599757433, + -0.00369631452485919, + -0.03897201269865036, + -0.008785443380475044, + 0.0002259975008200854, + -0.0025713492650538683, + 0.006006511393934488, + -0.007439502980560064, + -0.016968226060271263, + 0.030856192111968994, + -0.014236168004572392, + 0.026436684653162956, + 0.01114251371473074, + -0.00581566896289587, + 0.015883438289165497, + -0.008450631983578205, + 0.006170568522065878, + -0.04923062399029732, + -0.0010563289979472756, + -0.018012836575508118, + 0.025231365114450455, + -0.00796850398182869, + 0.005688440520316362, + 0.006344670429825783, + 0.019619930535554886, + -0.013057633303105831, + 0.019137803465127945, + 0.0012480084551498294, + -0.01786551997065544, + -0.02650364674627781, + -0.00011854405602207407, + 0.013452710583806038, + -0.012327744625508785, + -0.010265308432281017, + -0.008758658543229103, + -0.009769788011908531, + 0.028124133124947548, + 0.016767339780926704, + -0.020329730585217476, + -0.01670037768781185, + -0.032302577048540115, + 0.007439502980560064, + 0.005182875785976648, + -0.014396877959370613, + 0.030374063178896904, + -0.022432344034314156, + -0.014758473262190819, + 0.013526368886232376, + 0.0241867545992136, + -0.01513346191495657, + -0.030936546623706818, + -0.004315715283155441, + -0.0034267916344106197, + 0.04430220648646355, + -0.013687077909708023, + 0.03570425510406494, + -0.026115266606211662, + 9.322397090727463e-5, + -0.004630437586456537, + -0.01573612168431282, + -0.006254271604120731, + -0.00296475226059556, + -0.040016625076532364, + 0.019164588302373886, + -0.019325297325849533, + 0.013064329512417316, + -0.002064110478386283, + 0.006026600021868944, + -0.007077906746417284, + 0.01338574755936861, + -0.02232520468533039, + 0.0361328162252903, + 0.012937101535499096, + 0.0173833929002285, + 0.015535235404968262, + -0.007191742770373821, + -0.0034552505239844322, + -0.0297847967594862, + 0.0297847967594862, + 0.0018715941114351153, + -0.010713955387473106, + 0.008685000240802765, + 0.005859194323420525, + -0.004312367178499699, + 0.005383762530982494, + 0.03455250710248947, + -0.023396600037813187, + -0.002270019380375743, + -0.008899278938770294, + -0.006257619708776474, + -0.01151750236749649, + -0.019526183605194092, + -0.0006206560647115111, + 0.016164680942893028, + 0.0032275791745632887, + 0.0025094093289226294, + -0.014370093122124672, + 0.0029881892260164022, + 0.004469728097319603, + -0.0028258056845515966, + -0.017450354993343353, + -0.00997067429125309, + 0.007834579795598984, + 0.022432344034314156, + -0.018709244206547737, + 0.017102152109146118, + -0.014410270377993584, + -0.008852405473589897, + -0.0002785209799185395, + -0.020530616864562035, + 0.01810658536851406, + -0.0236644484102726, + 0.015347741544246674, + 0.015910223126411438, + -0.012133554555475712, + -0.030213354155421257, + -0.005641567055135965, + 0.016111111268401146, + -0.017932482063770294, + 0.011082247830927372, + -0.01809319294989109, + -0.0042353603057563305, + 0.003666181582957506, + -0.0009835076052695513, + -0.042186200618743896, + -0.01573612168431282, + 0.0013685403391718864, + 0.0018079800065606833, + -0.019847601652145386, + -0.027508080005645752, + 0.03222222253680229, + -0.00709799537435174, + -0.010821094736456871, + -0.008249745704233646, + 0.006773228757083416, + 0.013446014374494553, + -0.0045333425514400005, + -0.026597393676638603, + -0.0011852312600240111, + -0.005296711809933186, + 0.00592950452119112, + -0.004613697063177824, + -0.014088851399719715, + 0.001219549449160695, + 0.008745266124606133, + 0.002623245120048523, + 0.012742910534143448, + -0.009240786544978619, + -0.024454602971673012, + -0.00952872447669506, + 0.006093562114983797, + -0.018682459369301796, + 0.012977278791368008, + 0.013807609677314758, + 0.017450354993343353, + 0.02091899700462818, + -0.0034217694774270058, + -0.01998152770102024, + -0.007191742770373821, + 0.0038737645372748375, + 0.011838920414447784, + -0.008952848613262177, + -0.0013467776589095592, + 0.001479865051805973, + 0.07719404995441437, + -0.0066526965238153934, + 0.004724184516817331, + -0.00015160665498115122, + 0.0023788330145180225, + -0.005758751183748245, + -0.014490624889731407, + 0.011477325111627579, + 0.005149394739419222, + 0.007647085469216108, + 0.00985683873295784, + -0.0385434553027153, + 0.0042755380272865295, + 0.002126050414517522, + -0.0031823795288801193, + -0.01921815797686577, + 0.016057539731264114, + 0.014262952841818333, + 0.006455158349126577, + 0.027400940656661987, + -0.00879213958978653, + -0.024521565064787865, + 0.007874757051467896, + 0.01857532002031803, + -0.014383485540747643, + 0.006923893466591835, + 0.004406114108860493, + 0.00445298757404089, + 0.026369722560048103, + 0.016499491408467293, + -0.006706266663968563, + 0.007064514327794313, + -0.006863627582788467, + 0.008584557101130486, + -0.0100912069901824, + 0.007185046561062336, + 0.007693959400057793, + 0.011330007575452328, + 0.017102152109146118, + 0.013151380233466625, + -0.008236353285610676, + 0.004011036828160286, + 0.024548349902033806, + 0.03902558237314224, + -0.013204949907958508, + -0.009240786544978619, + 0.00903990026563406, + -0.007928326725959778, + -0.009354622103273869, + 0.03123117983341217, + -0.019124411046504974, + -0.01944582909345627, + 0.004573519807308912, + -0.002907834481447935, + 0.003050129162147641, + -0.01386117935180664, + 0.010486284270882607, + -0.01516024675220251, + 0.0003381592105142772, + 0.0025094093289226294, + -0.004854761064052582, + -0.00796850398182869, + -0.018655674532055855, + -0.03267756476998329, + -0.002634963486343622, + -0.02209753356873989, + 0.0001004956429824233, + -0.01477186568081379, + -0.00534023717045784, + -0.0045902603305876255, + -0.0013317111879587173, + -0.0021243763621896505, + 0.014704903587698936, + -0.02932945266366005, + -0.01315807644277811, + 0.01596379280090332, + 0.016579845920205116, + 0.01970028504729271, + 0.021026138216257095, + 0.010151472873985767, + 0.01857532002031803, + 0.0030417589005082846, + -0.013412533327937126, + -0.0051627871580421925, + 0.001214527292177081, + -0.0060701253823935986, + 0.006157176103442907, + -0.025914380326867104, + -0.003910593688488007, + -0.025753669440746307, + -0.010600119829177856, + 0.008597949519753456, + -0.005477509461343288, + -0.002917878795415163, + 0.0006248412537388504, + -0.003622656222432852, + 0.0038134984206408262, + -0.0239590834826231, + 0.008597949519753456, + 0.0002925411972682923, + 0.028740186244249344, + -0.00024503987515345216, + -0.009287660010159016, + 0.00387711264193058, + 0.0036996626295149326, + -0.010834487155079842, + 0.021749328821897507, + 0.01479865051805973, + -0.019539576023817062, + 0.004660570528358221, + -0.008350188843905926, + 0.005407199263572693, + 0.018441395834088326, + 0.00820287223905325, + -0.006177264731377363, + -0.009917104616761208, + 0.013687077909708023, + -0.004985337145626545, + -0.005253186449408531, + -0.025432251393795013, + -0.022137710824608803, + -0.009361318312585354, + -0.009046596474945545, + -0.0025311720091849566, + -0.0005511827766895294, + -0.002907834481447935, + -0.012762999162077904, + -0.011638034135103226, + -0.0027303844690322876, + 0.0016815888229757547, + 0.01759767159819603, + 0.010981804691255093, + 0.014450447633862495, + -0.02208414115011692, + -0.002643333747982979, + 0.0064919875003397465, + -0.0004206064622849226, + 0.01457097940146923, + 0.033882882446050644, + -0.01664680801331997, + 0.00939479935914278, + -0.0023202409502118826, + 0.006414980627596378, + 0.013666989281773567, + 0.02932945266366005, + 0.0062911007553339005, + 0.0054674651473760605, + -0.02373141050338745, + 0.041195157915353775, + -0.005644915159791708, + 0.017423570156097412, + -0.007191742770373821, + -0.003212512470781803, + -0.016499491408467293, + 0.015240601263940334, + 0.008504201658070087, + -0.01781195029616356, + 0.011175994761288166, + -0.007084602955728769, + 0.008055555634200573, + -0.0058692386373877525, + -0.0019519487395882607, + -0.010392536409199238, + -0.002033977536484599, + -0.02535189688205719, + 0.0033681998029351234, + 0.004563475493341684, + 0.04063267633318901, + 0.019633322954177856, + 0.009274267591536045, + 0.0008964567095972598, + 0.008356885053217411, + -0.0072654010728001595, + -0.030615126714110374, + -0.011879097670316696, + -0.03163295239210129, + 0.016727162525057793, + 0.0314454585313797, + -0.016767339780926704, + 0.0063848476856946945, + 0.007272097282111645, + -0.0284187663346529, + 0.024508172646164894, + -0.010713955387473106, + 0.025659922510385513, + -0.0204100850969553, + 0.015307563357055187, + -0.019191373139619827, + -0.0037565806414932013, + 0.029891936108469963, + -0.017678026109933853, + 0.02745451033115387, + -0.009260875172913074, + 0.017303038388490677, + -0.007760921493172646, + 0.000675062881782651, + 0.014303130097687244, + 0.0246420968323946, + -0.00592950452119112, + -0.0005783861852250993, + -0.019673500210046768, + -0.002953033894300461, + -0.005587997380644083, + 0.00025759529671631753, + 0.026918813586235046, + -0.01880299113690853, + -0.016245035454630852, + -0.011236260645091534, + -0.0006499520386569202, + 0.01974046230316162, + -0.019311904907226562, + -0.028284842148423195, + 0.020329730585217476, + 0.0033933105878531933, + -0.018950307741761208, + 0.024521565064787865, + 0.0019569708965718746, + 0.016566453501582146, + 0.00405791075900197, + -0.0032627342734485865, + -0.01549505814909935, + -0.0059763784520328045, + 0.0073591480031609535, + -0.013097810558974743, + -0.008403758518397808, + -0.0022733674850314856, + -0.009676041081547737, + 0.010801006108522415, + 0.0016681962879374623, + -0.010881360620260239, + 0.022191280499100685, + 0.003381592221558094, + 0.0022834117989987135, + 0.02015562914311886, + 0.0016698703402653337, + 0.018936915323138237, + 0.013673685491085052, + -0.00369631452485919, + 0.012240693904459476, + -0.007794402539730072, + -0.006495335604995489, + 0.019526183605194092, + 0.008236353285610676, + 0.0007144031696952879, + -0.0003402517759241164, + -0.009789876639842987, + -0.006957374978810549, + 0.009006418287754059, + 0.004165050107985735, + -2.617019708850421e-5, + -0.01268264465034008, + -0.012113465927541256, + -0.019084233790636063, + 0.008169391192495823, + 0.006632607895880938, + 0.002216449473053217, + 0.005849150009453297, + -0.002275041537359357, + -0.007801098749041557, + 0.002532846061512828, + -0.004151657689362764, + 0.007432806771248579, + 0.00984344631433487, + 0.004365936852991581, + 0.014115636236965656, + 0.0019938000477850437, + -0.021735936403274536, + 0.013231734745204449, + -0.005728618241846561, + 0.007988592609763145, + 0.0005005425773561001, + 0.007847972214221954, + 0.009006418287754059, + 0.008397062309086323, + -0.0028391981031745672, + -0.0038536759093403816, + 0.008946152403950691, + -0.01255541667342186, + 0.002807391108945012, + -0.005808972753584385, + -0.014637941494584084, + -0.013278608210384846, + 0.003018322167918086, + -0.012059896253049374, + -0.014343307353556156, + -0.024360856041312218, + -0.0018297426868230104, + 0.014383485540747643, + -0.0006005674367770553, + 0.007647085469216108, + -0.0026048303116112947, + -0.0011961127165704966, + 0.018441395834088326, + -0.010881360620260239, + 0.00939479935914278, + 0.004372633062303066, + 0.015910223126411438, + 0.009963978081941605, + 0.012327744625508785, + 0.01641913689672947, + -0.0021946867927908897, + -0.027280408889055252, + -0.001985429786145687, + -0.0021042877342551947, + 0.01996813528239727, + 0.007653781678527594, + 0.007185046561062336, + -0.006157176103442907, + -0.007432806771248579, + 0.00036013120552524924, + -0.02276715449988842, + -0.007720744237303734, + 0.005598041694611311, + -0.00757342716678977, + 0.006562297698110342, + -0.01268264465034008, + 0.02490994706749916, + 0.023168928921222687, + -0.008450631983578205, + 0.0064417654648423195, + -0.015106677077710629, + 0.00916712824255228, + -0.0010730696376413107, + 0.010975108481943607, + 0.0029898632783442736, + 0.005417243577539921, + 0.00611030263826251, + -0.004021081607788801, + 0.013137987814843655, + -0.020142236724495888, + 0.009187216870486736, + -0.004663918633013964, + -0.02722683921456337, + 0.005202964413911104, + 0.00844393577426672, + 0.006237531080842018, + -0.012481758370995522, + -0.005510990973562002, + 0.0008847383433021605, + 0.01596379280090332, + -0.016539668664336205, + -0.01692804880440235, + -6.513122207252309e-5, + -0.011249653063714504, + 0.016044147312641144, + 0.024776021018624306, + 0.008939456194639206, + -0.014383485540747643, + 0.004161702003329992, + 0.014236168004572392, + -0.004734228830784559, + 0.015910223126411438, + 0.01903066411614418, + 0.008048859424889088, + -0.0002322752116015181, + -0.020262768492102623, + 0.024976909160614014, + 0.032516855746507645, + -0.0026617483235895634, + 0.0014053696068003774, + -0.015280778519809246, + 0.028070563450455666, + -0.02468227408826351, + 0.004432898946106434, + 0.01852175034582615, + -0.007292185910046101, + 0.00799528881907463, + 0.015120069496333599, + -0.0014304803917184472, + -0.012649163603782654, + 0.004104784224182367, + -0.04325759410858154, + -0.01974046230316162, + -0.002023933222517371, + -0.013037544675171375, + 0.010646993294358253, + -0.0029881892260164022, + -0.013767432421445847, + -0.017102152109146118, + -0.01137018483132124, + 0.046391427516937256, + 0.0014815391041338444, + -0.015642374753952026, + -0.018936915323138237, + 0.019794031977653503, + 0.006723007187247276, + 0.0012362899724394083, + 0.025753669440746307, + -0.013807609677314758, + -0.012923709116876125, + -0.010600119829177856, + 0.01384778693318367, + 0.015910223126411438, + -0.013338874094188213, + 0.015200424008071423, + -0.01667359285056591, + 0.005437332205474377, + 0.035570330917835236, + 0.00709799537435174, + -0.013887965120375156, + -2.3109812900656834e-5, + 0.015361133962869644, + 0.025659922510385513, + 0.021521657705307007, + 0.0014129028422757983, + -0.015655767172574997, + 0.004714140202850103, + 0.0276687890291214, + 0.017303038388490677, + -0.00786806084215641, + 0.0009927148930728436, + 0.01828068681061268, + -0.0012095051351934671, + -0.0022566269617527723, + 0.023101966828107834, + 0.011564375832676888, + 0.012562112882733345, + -0.01576290652155876, + 0.018481573089957237, + -0.0018046319019049406, + 0.03455250710248947, + -0.009481850080192089, + 0.013928142376244068, + -0.005310104228556156, + -0.004627089481800795, + -0.002059088321402669, + 0.025887595489621162, + -0.002434076741337776, + -0.017544101923704147, + 0.004938463680446148, + 0.0035623901057988405, + -0.01596379280090332, + -0.01670037768781185, + -0.0011793720768764615, + -0.023168928921222687, + -0.003676225896924734, + 0.004734228830784559, + -0.015843261033296585, + 0.011584464460611343, + -0.003917289897799492, + -0.017878912389278412, + -0.014879005961120129, + 0.014691511169075966, + 0.012434884905815125, + 0.004007688723504543, + 0.01185900904238224, + -0.003200794104486704, + 0.020329730585217476, + -0.01758427917957306, + 0.004630437586456537, + -0.005213008727878332, + 0.024012653157114983, + 0.031365104019641876, + -0.009917104616761208, + 0.0004030288546346128, + -0.0309901162981987, + 0.012528631836175919, + 0.009763091802597046, + 0.027561649680137634, + -0.01199293415993452, + -0.008698392659425735, + -0.005993118975311518, + 0.005510990973562002, + 0.009408191777765751, + -0.0018464832101017237, + 0.0013384073972702026, + 0.034418582916259766, + 0.004017733037471771, + -0.00915373582392931, + 0.00481458380818367, + 0.001374399638734758, + 0.01811997778713703, + 0.026423292234539986, + 0.0035623901057988405, + 0.027856284752488136, + 0.014597764238715172, + -0.006090214010328054, + 0.013613419607281685, + -0.01350628025829792, + -0.01876281388103962, + -0.01491918321698904, + -0.014169205911457539, + -0.012689340859651566, + 0.0015384569996967912, + 0.023825157433748245, + -0.00788145326077938, + 0.01210676971822977, + 0.011095640249550343, + -0.003937378525733948, + 0.021521657705307007, + 0.01268264465034008, + 0.004024429712444544, + 0.016539668664336205, + -0.0010889731347560883, + 0.01921815797686577, + -0.016164680942893028, + 0.008022073656320572, + -0.007151565048843622, + 0.015012930147349834, + -0.012635771185159683, + 0.0038201946299523115, + 0.0016723814187571406, + -0.00709799537435174, + 0.00995728187263012, + -0.00925417896360159, + 0.012923709116876125, + -0.013807609677314758, + 0.007888149470090866, + 0.0024926685728132725, + 0.005946245044469833, + 0.018829775974154472, + -0.0018665719544515014, + -0.019097626209259033, + 0.0025261498522013426, + 0.008624734356999397, + 0.004094739910215139, + -0.009341229684650898, + 0.0020624364260584116, + 0.02654382400214672, + 0.0017979356925934553, + -0.014972752891480923, + -0.013874571770429611, + 0.002542890375480056, + 0.03570425510406494, + -0.007171653676778078, + 0.00023604182933922857, + 0.022860901430249214, + -0.005450724624097347, + 0.02233859710395336, + -0.0007478843326680362, + 0.02019580639898777, + -0.010646993294358253, + -0.011497413739562035, + -0.003887156955897808, + 0.01324512716382742, + 0.012341137044131756, + 0.0036427448503673077, + -0.009696129709482193, + 0.03782026097178459, + 0.004526646342128515, + -0.003381592221558094, + 0.01269603706896305, + -0.004560127388685942, + -0.015829868614673615, + -0.009287660010159016, + -0.014838827773928642, + 0.007339059375226498, + 0.01078091748058796, + 0.009341229684650898, + 0.013151380233466625, + -0.01666020043194294, + 0.014035281725227833, + 0.04607000946998596, + 0.013392443768680096, + 0.026155443862080574, + -0.01739678531885147, + 0.011952756904065609, + -0.007734136655926704, + -0.005444028414785862, + 0.0021377690136432648, + -0.0056214784272015095, + -0.018160155043005943, + 0.013579938560724258, + 0.0041884868405759335, + -0.020142236724495888, + 0.000866323709487915, + 0.0009073381079360843, + 0.007031033281236887, + 0.009930497035384178, + 0.01925833523273468, + -0.02726701647043228, + -0.0074662878178060055, + -0.013024152256548405, + 6.701453821733594e-5, + 0.01757088676095009, + -0.007499768864363432, + -0.0218430757522583, + -0.013887965120375156, + 0.003676225896924734, + 0.0014790280256420374, + -0.005718573462218046, + -0.017785165458917618, + -0.04197192192077637, + 0.0020456959027796984, + -0.01711554452776909, + 0.01925833523273468, + 0.015642374753952026, + 0.0003831494541373104, + 0.01033227052539587, + -0.013392443768680096, + 0.01897709257900715, + -0.02535189688205719, + -0.0046940515749156475, + 0.01313129160553217, + -0.003311281790956855, + 0.00015150202671065927, + -0.0105800312012434, + 3.860790457110852e-5, + -0.032356146723032, + -0.024722451344132423, + 0.005326844751834869, + 0.011008589528501034, + -0.0004624578286893666, + 0.006729703396558762, + 0.00975639559328556, + 0.002280063694342971, + 0.010620208457112312, + -0.021896645426750183, + -0.0014606134500354528, + -0.013640204444527626, + -0.018494965508580208, + 0.013365658931434155, + 0.011798743158578873, + 0.001063025207258761, + 0.010760828852653503, + -0.010646993294358253, + 0.024976909160614014, + -0.00843054335564375, + 0.03257042542099953, + -0.004807887598872185, + 0.0013551479205489159, + 0.0027052736841142178, + 0.0014882353134453297, + 0.018186939880251884, + 0.003619308117777109, + -0.022218065336346626, + -0.015106677077710629, + 0.019204765558242798, + 0.009789876639842987, + -0.011457236483693123, + -0.012394706718623638, + 0.007827883586287498, + -0.0037465363275259733, + -0.03313290700316429, + 0.016271820291876793, + -0.02583402581512928, + -0.01491918321698904, + -0.0048949383199214935, + 0.012367921881377697, + -0.010178257711231709, + 0.006719659082591534, + -0.029436592012643814, + -0.005433984100818634, + 0.01647270657122135, + 0.007653781678527594, + -0.020557401701807976, + 0.010191650129854679, + 0.006200701463967562, + 0.01255541667342186, + 0.00834349263459444, + -0.008685000240802765, + -0.009173824451863766, + -0.01516024675220251, + 0.001619648770429194, + 0.01597718521952629, + -0.026195621117949486, + 0.004399417899549007, + -0.01716911420226097, + 0.02674471028149128, + -0.016794124618172646, + -0.016620023176074028, + -0.00822965707629919, + -0.0024307286366820335, + -0.011008589528501034, + 0.006856931373476982, + -0.02580723911523819, + 0.015803083777427673, + 0.01396831963211298, + -0.017450354993343353, + 0.008584557101130486, + -0.0066426522098481655, + -0.012521935626864433, + -0.026383114978671074, + 0.005213008727878332, + 0.0013241779524832964, + -0.005028862971812487, + -0.00952872447669506, + -0.00879213958978653, + 0.010452802293002605, + -0.03101690113544464, + -0.012488454580307007, + -0.009722914546728134, + 0.005263230763375759, + -0.020517224445939064, + -1.132603210862726e-5, + 7.40769537515007e-5, + 0.014142421074211597, + -0.019419044256210327, + -0.013821002095937729, + -0.011510806158185005, + -0.025030478835105896, + -0.0052498383447527885, + -0.031097255647182465, + -0.01874942146241665, + 0.019111018627882004, + 0.005896023474633694, + -0.013559849932789803, + -0.009522028267383575, + -0.01641913689672947, + -0.005182875785976648, + -0.03358824923634529, + 0.0015593827702105045, + -0.0206377562135458, + -0.008517594076693058, + 0.020021704956889153, + -0.017303038388490677, + 0.008450631983578205, + -0.006599126849323511, + 0.0043324558064341545, + -0.008022073656320572, + 0.01811997778713703, + 0.00486480537801981, + -0.00568509241566062, + -0.011765262112021446, + -0.009522028267383575, + -0.02421353943645954, + 0.022927865386009216, + -0.001082276925444603, + -0.01315807644277811, + -0.012367921881377697, + -0.000569178897421807, + -0.004155005794018507, + -0.02935623750090599, + 0.0011961127165704966, + -0.015294170938432217, + -0.015280778519809246, + -0.014945968054234982, + 0.018240509554743767, + -0.01314468402415514, + 0.005912763997912407, + 0.02580723911523819, + 0.008785443380475044, + -0.011135817505419254, + 0.01479865051805973, + -0.02085203491151333, + -0.008651519194245338, + 0.016245035454630852, + 0.004915026947855949, + -0.0017175809480249882, + -0.010586727410554886, + -0.00811582151800394, + -0.05346263572573662, + -0.020262768492102623, + 0.015187031589448452, + 0.01490579079836607, + -0.012515239417552948, + -0.014088851399719715, + 0.0057654473930597305, + -0.014678118750452995, + 0.020544009283185005, + -0.019593145698308945, + -0.013740647584199905, + 0.00709799537435174, + 0.007874757051467896, + 0.0148923983797431, + -0.015441488474607468, + 0.005748706869781017, + -0.02322249859571457, + 0.00040574921877123415, + 0.034766785800457, + 0.013071025721728802, + 0.0284187663346529, + -0.008778747171163559, + 0.005115913692861795, + 0.007258704863488674, + 0.011102336458861828, + 0.0008437240030616522, + -0.016954833641648293, + -0.0009851816575974226, + 0.03350789472460747, + -0.00012973930279258639, + -0.00662256358191371, + 0.004757666029036045, + -0.01948600634932518, + -0.01139696966856718, + 0.0011726758675649762, + 0.013338874094188213, + 0.009635863825678825, + -0.000621074577793479, + 0.019164588302373886, + 0.005196268204599619, + 0.00650872802361846, + -0.03736491873860359, + 0.013486191630363464, + -0.01419599074870348, + 0.00845732819288969, + 0.005792232230305672, + 0.0009600708726793528, + 0.0173833929002285, + 0.0038905050605535507, + -0.0028207835275679827, + 0.013064329512417316, + -0.029650870710611343, + -0.008912671357393265, + 0.03918629139661789, + 0.0039306823164224625, + 0.007841276004910469, + -0.005872586742043495, + -0.011222868226468563, + -0.008350188843905926, + 0.002005518414080143, + -0.0009776484221220016, + -0.017316430807113647, + -0.02326267585158348, + -0.01643252931535244, + 0.024334071204066277, + -0.008296619169414043, + 0.0123210484161973, + -0.0010780917946249247, + -0.0011492391349747777, + 0.0028994642198085785, + -0.0027772581670433283, + 0.006649348419159651, + 0.00517283147200942, + 0.011892490088939667, + 0.017035188153386116, + 0.017316430807113647, + -0.01457097940146923, + -0.001995474100112915, + 0.028124133124947548, + -0.032329361885786057, + -0.006378151476383209, + 0.017262861132621765, + 0.004925071261823177, + -0.02703934535384178, + -0.011564375832676888, + -0.0053168004378676414, + -0.007131476420909166, + -0.00024190102703869343, + -0.019566360861063004, + -0.0148923983797431, + 0.029383022338151932, + -0.0021360949613153934, + 0.010064422152936459, + -0.003502124221995473, + -0.02367784082889557, + -0.02559296041727066, + -0.004968596622347832, + -0.003759928746148944, + 0.013887965120375156, + 0.022392166778445244, + -0.03543640673160553, + -0.0051058693788945675, + 0.008986329659819603, + 0.003910593688488007, + -0.01089475303888321, + -0.02136094868183136, + 0.019405651837587357, + -0.010010852478444576, + -0.010298789478838444, + 0.0013969993451610208, + 0.012856746092438698, + 0.004985337145626545, + 0.006461854558438063, + -0.006823450326919556, + 0.01420938316732645, + -0.018414610996842384, + -0.013673685491085052, + 0.01667359285056591, + -0.0148923983797431, + -0.001058003050275147, + 0.013345570303499699, + 0.004918375052511692, + 0.005484206136316061, + 0.006666088942438364, + -0.0037030107341706753, + 0.0051527428440749645, + 0.016753947362303734, + -0.015307563357055187, + -0.0015158572932705283, + -0.024012653157114983, + -0.010586727410554886, + -0.001040425500832498, + 0.003565738210454583, + 0.009086773730814457, + 0.0033698738552629948, + 0.008557772263884544, + -0.0033899624831974506, + 0.011249653063714504, + 0.0021980348974466324, + -0.011664818972349167, + 0.0068067098036408424, + 0.010526461526751518, + 0.006525468546897173, + -0.010914841666817665, + 0.009682737290859222, + 0.019539576023817062, + -0.008517594076693058, + 0.023838549852371216, + 0.01184561662375927, + 0.005350281484425068, + 0.0016606630524620414, + 0.032490070909261703, + 0.01034566294401884, + 7.360612653428689e-5, + -0.028552690520882607, + 0.014838827773928642, + -0.0019938000477850437, + -0.003880460746586323, + -0.0034050289541482925, + -0.00013392444816417992, + 0.005012122448533773, + -0.01692804880440235, + -0.012073288671672344, + -0.017102152109146118, + 0.009923800826072693, + -0.034311443567276, + -0.008042163215577602, + -0.0024960169102996588, + 0.02022259123623371, + -0.012374618090689182, + -0.01739678531885147, + -0.004208575468510389, + -0.002353721996769309, + 0.007794402539730072, + -0.0031204395927488804, + 0.02140112593770027, + -0.004824628122150898, + -0.004513253923505545, + -0.011376881040632725, + -0.012528631836175919, + 0.009019811637699604, + -0.0061739166267216206, + 0.00961577519774437, + 0.014423662796616554, + 0.00870508886873722, + -0.024829590693116188, + -0.0034552505239844322, + -0.009850142523646355, + -0.021762721240520477, + 0.028579475358128548, + -0.008852405473589897, + 0.01301745604723692, + 0.0007407695520669222, + -0.0037164033856242895, + 0.0017159068956971169, + -0.015173639170825481, + -0.021468088030815125, + -0.003406703006476164, + 0.014249560423195362, + 0.03141867369413376, + -0.0045433868654072285, + -0.002248256467282772, + -0.02724023163318634, + -0.011088944040238857, + 0.009997460059821606, + -0.015829868614673615, + -0.015829868614673615, + -0.00891936756670475, + 0.02836519666016102, + -0.008075644262135029, + 0.0008181946468539536, + 0.013091114349663258, + 0.0029061604291200638, + 0.03050798736512661, + 0.009294356219470501, + -0.014396877959370613, + -0.02582063339650631, + 0.0009157083695754409, + -7.904681115178391e-5, + -0.005296711809933186, + -0.02205735631287098, + 0.02137434110045433, + -0.02227163501083851, + 0.004124872852116823, + -0.028981249779462814, + 0.0009918778669089079, + 0.0053168004378676414, + -0.011196083389222622, + 0.0019887778908014297, + 0.004151657689362764, + 0.007955111563205719, + 0.0017092106863856316, + 0.019619930535554886, + 0.03382931277155876, + 0.005852498114109039, + -0.006307841278612614, + 0.013204949907958508, + -0.018869953230023384, + 0.010941626504063606, + -0.012736214324831963, + -0.018856560811400414, + 0.0148923983797431, + -0.01593700796365738, + 0.037204209715127945, + -2.994989881699439e-5, + 0.007814491167664528, + 0.0065957787446677685, + 0.021521657705307007, + -0.019820816814899445, + -0.011202779598534107, + -0.01647270657122135, + -0.0028341759461909533, + 0.0040846955962479115, + -0.01620485819876194, + 0.013191557489335537, + -0.001590352738276124, + 0.007305578328669071, + -0.013874571770429611, + -0.024722451344132423, + -0.0018565275240689516, + 0.027052737772464752, + -0.005213008727878332, + -0.007191742770373821, + 0.012367921881377697, + -0.014945968054234982, + 0.0006742258556187153, + 0.002084199106320739, + -0.028740186244249344, + 0.01947261393070221, + 0.0201824139803648, + 0.024709058925509453, + -0.02020919881761074, + 0.00165898900013417, + -0.013452710583806038, + 0.016057539731264114, + 0.014249560423195362, + 0.015441488474607468, + -0.012039807625114918, + 0.021200239658355713, + -0.011698300018906593, + 0.014142421074211597, + -0.0008889234741218388, + -0.006056732963770628, + 0.012488454580307007, + 0.0022449083626270294, + -0.0007173328194767237, + -0.007024337071925402, + -0.004345848225057125, + -0.01897709257900715, + 0.012287567369639874, + -0.0016974923200905323, + 0.000525234907399863, + -0.008289922960102558, + -0.009301052428781986, + -0.010934930294752121, + -0.019378867000341415, + 0.00211098394356668, + 0.009120254777371883, + 0.021695759147405624, + 0.003065195633098483, + 0.015213816426694393, + -0.011771958321332932, + 0.01718250662088394, + 0.005480858031660318, + -0.01781195029616356, + 0.004088043700903654, + -0.0088055320084095, + 0.016981618478894234, + 0.010024244897067547, + -0.0148923983797431, + -0.01834764890372753, + -0.001975385472178459, + 0.00890597514808178, + 0.012327744625508785, + 0.006073473487049341, + -0.007975200191140175, + 0.0006583223585039377, + 0.03589174896478653, + 0.013559849932789803, + -0.014289737679064274, + 0.020972568541765213, + 0.007171653676778078, + -0.0017142328433692455, + -0.01734321564435959, + 0.006863627582788467, + -0.024963516741991043, + 0.01850835792720318, + 0.010847879573702812, + 0.01457097940146923, + -0.006043340545147657, + 0.035114988684654236, + 0.0014120658161118627, + 0.008651519194245338, + -0.004761014133691788, + -0.005986422766000032, + 0.02022259123623371, + 0.01349288783967495, + -0.018146762624382973, + 0.004851412959396839, + 0.012850049883127213, + -0.01573612168431282, + 0.0077810101211071014, + 0.004198531154543161, + 0.004000992514193058, + -0.017503924667835236, + 0.008718481287360191, + 0.0035356052685528994, + -0.02069132588803768, + -0.004422854632139206, + -0.0002391806774539873, + -0.00234200363047421, + 0.008785443380475044, + 0.0279634241014719, + 0.01548166573047638, + -0.006455158349126577, + 0.010486284270882607, + -0.005899371579289436, + -0.00035908492282032967, + -0.005711877252906561, + -0.007131476420909166, + 0.0006173079600557685, + 0.0024575134739279747, + -0.006528816651552916, + -0.0007010107510723174, + 0.014048674143850803, + 0.007345755584537983, + 0.00047961692325770855, + -0.001340081449598074, + 0.01327191200107336, + -0.0023470257874578238, + -0.0026734666898846626, + -0.02679828181862831, + 0.0006926404894329607, + -0.009321141056716442, + 0.0036327005364000797, + 0.004918375052511692, + 0.0006022414891049266, + 0.014745080843567848, + 0.009240786544978619, + -0.01668698526918888, + -0.005557864438742399, + -0.0005290015251375735, + -0.006060081068426371, + 0.000333764823153615, + 0.027293801307678223, + 0.0007591841858811677, + -0.020235983654856682, + 0.013151380233466625, + 0.01667359285056591, + 0.015066499821841717, + 0.014704903587698936, + 0.016512883827090263, + 0.0028291537892073393, + 0.021642189472913742, + -0.001234615920111537, + 0.022137710824608803, + -0.026021519675850868, + 0.035757824778556824, + -0.005206312518566847, + 0.02300821989774704, + 0.027106307446956635, + 0.02398586831986904, + -0.0083167077973485, + 0.007928326725959778, + 0.0006378151592798531, + 0.014865613542497158, + -0.01079430989921093, + -0.0014413618482649326, + -0.005608086008578539, + -0.00987023115158081, + -0.0025813935790210962, + -0.0023788330145180225, + -0.007948415353894234, + -0.009676041081547737, + -0.010700562968850136, + -0.0039038974791765213, + 0.014450447633862495, + -0.011196083389222622, + 0.017303038388490677, + 0.010673778131604195, + 0.001879964373074472, + -0.01828068681061268, + -0.0027471252251416445, + 0.020289553329348564, + -0.0030735658947378397, + -0.0015669160056859255, + 0.003669529687613249, + -0.010051029734313488, + 0.002760517643764615, + 0.0014589393977075815, + -0.00903990026563406, + 0.00118774245493114, + -0.003468642942607403, + 0.02255287580192089, + 0.007399325259029865, + 0.010399232618510723, + -0.015829868614673615, + 0.022365381941199303, + -0.025177795439958572, + -0.019887778908014297, + -0.0123210484161973, + -0.01279648020863533, + -0.018213724717497826, + 0.009193913079798222, + -0.014745080843567848, + -0.025405466556549072, + 0.003271104535087943, + -0.0031940978951752186, + -0.0026198970153927803, + 0.031766876578330994, + -0.011410362087190151, + -0.03527569770812988, + 0.0021997089497745037, + 0.0003320907708257437, + 0.00015275756595656276, + -0.012059896253049374, + -0.0029111825861036777, + 0.00698415981605649, + -0.004118176642805338, + -0.034150734543800354, + -0.013566546142101288, + 0.014062066562473774, + -0.007252008654177189, + -0.016070932149887085, + 0.014463840052485466, + 0.016526276245713234, + 0.0025579568464308977, + 0.0030250183772295713, + 0.018401218578219414, + 0.0014932575868442655, + 0.002079176949337125, + 0.0009650930296629667, + -0.007901541888713837, + -0.003286171006038785, + 0.008644822984933853, + -0.005701832938939333, + -0.01921815797686577, + 0.036534588783979416, + 0.01150410994887352, + 0.0009809965267777443, + 0.019177980720996857, + -0.002886071801185608, + 0.003391636535525322, + 0.012039807625114918, + 0.0008332611178047955, + 0.0004507394623942673, + 0.002847568364813924, + 0.004529994446784258, + 0.004771058447659016, + 0.012300959788262844, + 0.006545557174831629, + -0.02836519666016102, + -0.002485972363501787, + 0.00468400726094842, + 0.010901449248194695, + 0.012702733278274536, + -0.01045949850231409, + -0.010881360620260239, + 0.008464024402201176, + 0.0073591480031609535, + 0.01834764890372753, + 0.007419413886964321, + -0.012213909067213535, + -0.036079246550798416, + -0.011417058296501637, + -0.001690796110779047, + 0.004369284957647324, + -0.004730880726128817, + 0.012033111415803432, + 0.015468273311853409, + -0.01878959871828556, + 0.007640389259904623, + 0.02067793346941471, + 0.021227024495601654, + -0.0073122745379805565, + -0.01857532002031803, + -0.006163872312754393, + -0.018695851787924767, + 0.014343307353556156, + -0.00926757138222456, + -0.008082340471446514, + 0.015387918800115585, + 0.040284473448991776, + 0.025954557582736015, + -0.009876927360892296, + -0.008437239564955235, + -0.007720744237303734, + 0.01901727169752121, + 0.013379051350057125, + -0.017999444156885147, + 0.0028191094752401114, + 0.006957374978810549, + -0.021776113659143448, + 0.01921815797686577, + -0.02393229864537716, + 0.02089221216738224, + 0.01714232936501503, + 0.008510897867381573, + 0.0069105010479688644, + 0.010593423619866371, + 0.0004586912109516561, + 0.0136067233979702, + -0.008055555634200573, + -0.014945968054234982, + 0.012006326578557491, + 0.031365104019641876, + 0.010298789478838444, + -0.0014346656389534473, + -0.0018498313147574663, + -0.0006989181856624782, + -0.030829407274723053, + 0.0009734632913023233, + 0.006850235164165497, + -0.010968412272632122, + -0.012294263578951359, + 0.011798743158578873, + 0.016245035454630852, + -0.004302322864532471, + 0.015026322565972805, + -0.008376973681151867, + -0.0011132468935102224, + -0.006163872312754393, + 0.01269603706896305, + -0.008303315378725529, + 0.01595040038228035, + -0.011216172017157078, + 0.01079430989921093, + -0.0005850823945365846, + 0.006970767397433519, + 0.011356792412698269, + -0.007633693050593138, + 0.008772050961852074, + -0.01197954174131155, + -0.00486480537801981, + 0.019084233790636063, + 0.0010236849775537848, + -0.010975108481943607, + -0.016378959640860558, + 0.011765262112021446, + -0.004831324331462383, + 0.007640389259904623, + 0.00639154389500618, + 0.009890319779515266, + 0.013392443768680096, + 0.0028777015395462513, + -0.038409531116485596, + -0.007546642329543829, + 0.018387826159596443, + 0.001398673397488892, + 0.0013015781296417117, + 0.025539390742778778, + -0.0136067233979702, + 0.017195899039506912, + -0.002079176949337125, + 0.01151750236749649, + 0.0009583967621438205, + 0.028445551171898842, + -0.0019452525302767754, + -0.009006418287754059, + 0.0041215247474610806, + 0.03139188885688782, + 0.01007781457155943, + -0.024320678785443306, + -0.014932575635612011, + -0.008135910145938396, + 0.001632204162888229, + 0.010158169083297253, + 0.011309918947517872, + 0.01809319294989109, + -0.002211427316069603, + 0.013392443768680096, + -0.002105961786583066, + 0.006903804838657379, + 0.010010852478444576, + -0.006287752650678158, + 0.006140435580164194, + -0.015776298940181732, + -0.01573612168431282, + -0.022954650223255157, + 0.0002868912706617266, + -0.01173178106546402, + -0.00757342716678977, + -0.009722914546728134, + -0.027092915028333664, + 0.028686614707112312, + -0.006398240104317665, + -0.004613697063177824, + 0.011818831786513329, + 0.0070444256998598576, + -0.002628267277032137, + -0.013559849932789803, + -0.00445298757404089, + -0.007399325259029865, + 0.011343399994075298, + 0.0005955452797934413, + -0.00925417896360159, + -0.0045433868654072285, + -0.020584186539053917, + 0.00011613760580075905, + 0.0002573860401753336, + 0.014396877959370613, + -0.011825527995824814, + 0.022151103243231773, + 0.009522028267383575, + 0.002064110478386283, + 0.01314468402415514, + -0.004509905818849802, + -0.0019285120069980621, + -0.00798189640045166, + -0.011209475807845592, + -0.035302482545375824, + 0.012488454580307007, + 0.008484113030135632, + -0.017048582434654236, + 0.013499584048986435, + 0.001477353973314166, + 0.023798372596502304, + -0.007379236631095409, + 0.015026322565972805, + 0.01576290652155876, + 0.026155443862080574, + -0.00575205497443676, + 0.01138357724994421, + 0.030641911551356316, + 0.009120254777371883, + -0.011838920414447784, + 0.016258427873253822, + 0.021414518356323242, + 0.0038369353860616684, + -0.004422854632139206, + -0.006043340545147657, + -0.003609263803809881, + 0.02087881974875927, + -0.010265308432281017, + -0.016486098989844322, + 0.0055645606480538845, + -0.012354529462754726, + -0.003666181582957506, + 0.008772050961852074, + 0.0007696470129303634, + 0.003686270210891962, + 0.018133370205760002, + -0.00972961075603962, + 0.03538283705711365, + -0.0050489515997469425, + -0.007593515794724226, + -0.0030919804703444242, + 0.01569594442844391, + 0.026021519675850868, + 0.011410362087190151, + 0.0007529064896516502, + -0.016753947362303734, + 0.011905882507562637, + 0.014624549075961113, + 0.007586819585412741, + -0.00469739967957139, + 0.0025529346894472837, + -0.002176272217184305, + 0.007104691583663225, + -0.0032091643661260605, + -0.008879190310835838, + 0.006883716210722923, + 0.0022499305196106434, + 0.008303315378725529, + -0.010867968201637268, + -0.0045433868654072285, + -0.008765354752540588, + -0.0014539172407239676, + 0.008162694983184338, + -0.00627770833671093, + 0.002785628428682685, + -0.010298789478838444, + 0.0036561372689902782, + -0.013298696838319302, + -0.027508080005645752, + 0.005919460207223892, + 0.016151288524270058, + 0.0013626811560243368, + 0.007841276004910469, + 0.010064422152936459, + 0.012923709116876125, + 0.009635863825678825, + -0.0016631741309538484, + -0.032034724950790405, + 0.015347741544246674, + 0.017530709505081177, + -0.003113743383437395, + 0.03589174896478653, + -0.003458598628640175, + 0.012126858346164227, + 0.02020919881761074, + -0.006217442452907562, + 0.006863627582788467, + 0.013512976467609406, + 0.008859101682901382, + 0.00845732819288969, + 0.01900387927889824, + -0.01289692334830761, + -0.00936801452189684, + 0.001143379951827228, + 0.01623164303600788, + -0.011249653063714504, + 0.004985337145626545, + -0.033186476677656174, + -0.008370277471840382, + 0.006408284418284893, + -0.0010956693440675735, + -0.012876834720373154, + -0.004432898946106434 + ], + "12a8dfa4-1b29-4fd9-bd6d-946676617fb1": [ + -0.03669442608952522, + -0.050073180347681046, + -0.012448903173208237, + 0.03983093798160553, + -0.03500126302242279, + -0.004461898002773523, + 0.0230381041765213, + 0.041052237153053284, + 0.005568698514252901, + 0.023954076692461967, + 0.0018579675815999508, + 0.003958806861191988, + 0.0010348064824938774, + -0.02305198274552822, + 0.0015682565281167626, + 0.05584658682346344, + -0.06128690764307976, + 0.003924110904335976, + 0.006030154414474964, + -0.026355035603046417, + 0.05148877575993538, + 0.004857431631535292, + -0.021983347833156586, + -0.014724956825375557, + 0.0010460825869813561, + -0.012185214087367058, + 0.001546571496874094, + 0.014697200618684292, + -0.040996722877025604, + 0.014211457222700119, + 0.002352384850382805, + -0.010693288408219814, + 0.0031417175196111202, + 0.0057074823416769505, + 0.03802675008773804, + -0.01847211830317974, + 0.010200606659054756, + 0.019429726526141167, + -0.023884685710072517, + -0.02130330726504326, + -0.04521574825048447, + 0.05354277417063713, + 0.001648924546316266, + -0.014891497790813446, + -0.02367650903761387, + 0.017500631511211395, + -0.022482968866825104, + -0.012011734768748283, + 0.010769619606435299, + 0.02591092884540558, + -0.004666604101657867, + -0.014558416791260242, + -0.002609134651720524, + 0.02063714526593685, + 0.02527252398431301, + -0.04502145200967789, + 0.0253696721047163, + 0.03552864491939545, + 0.012150518596172333, + -0.06289680302143097, + 0.01040184311568737, + 0.0026698526926338673, + -0.02302422560751438, + -0.019415847957134247, + -0.02103961817920208, + -0.00015157788584474474, + -0.008188242092728615, + -0.015280092135071754, + -0.0375826433300972, + -0.016959376633167267, + 0.009555261582136154, + 0.0519883967936039, + -0.01497476827353239, + 0.0050205024890601635, + 0.045326776802539825, + -0.0375826433300972, + 0.08432501554489136, + 0.015293970704078674, + -0.0021268611308187246, + -0.005683194845914841, + 0.026132982224225998, + 0.01880520023405552, + -0.014149004593491554, + 0.016806714236736298, + 0.050184208899736404, + 0.007480444852262735, + -0.02549457736313343, + -0.04244007542729378, + 0.0418294258415699, + -0.033946506679058075, + -0.009312390349805355, + 0.03050466999411583, + -0.0045555769465863705, + 0.004756813403218985, + 0.005939945112913847, + 0.007195937912911177, + 0.036611154675483704, + -0.00812578946352005, + 0.010603079572319984, + -0.007182059809565544, + -0.008715620264410973, + -0.0033412191551178694, + 0.028450671583414078, + -0.013732653111219406, + 0.005197451915591955, + 0.013004038482904434, + 0.0065367151983082294, + -0.015599294565618038, + -0.02066490240395069, + 0.057067882269620895, + -0.010089579038321972, + -0.036000508815050125, + -0.0047637526877224445, + 0.010873707942664623, + -0.043022967875003815, + -0.034057535231113434, + -0.0001169903771369718, + 0.003570212284103036, + -0.022469090297818184, + -0.00922911986708641, + 0.019179916009306908, + 0.024689631536602974, + -0.015682565048336983, + 0.004146164748817682, + -0.026785265654325485, + 0.0011649162042886019, + 0.00799394492059946, + -0.010901464149355888, + 0.01605728082358837, + 0.013115065172314644, + -0.03780469670891762, + 0.019915468990802765, + 0.020220793783664703, + 0.019082767888903618, + 0.015488267876207829, + -0.010859829373657703, + 0.011442720890045166, + 0.07910674065351486, + -0.03025485947728157, + 0.04282866790890694, + -0.0685591772198677, + -0.05348726361989975, + -0.0032735620625317097, + 0.001267269253730774, + -0.0033151970710605383, + -0.023967955261468887, + -0.036222562193870544, + 0.03452939912676811, + -0.033696696162223816, + 0.01380204502493143, + -0.03761040046811104, + -0.026452185586094856, + -0.0046596648171544075, + 0.004076772835105658, + 0.00940953940153122, + -0.020151402801275253, + 0.026063591241836548, + 0.012733410112559795, + -0.00913197174668312, + 0.04843553155660629, + 0.01293464656919241, + -0.028561698272824287, + 0.0031608000863343477, + 0.03244764357805252, + 0.06767096370458603, + -0.017278578132390976, + 0.033502399921417236, + 0.015363362617790699, + 0.014544538222253323, + 0.019138280302286148, + 0.015418875962495804, + -0.05215493589639664, + 0.010832072235643864, + -0.0165291465818882, + 0.014933132566511631, + -0.004628438502550125, + 0.05082261189818382, + 0.01884683407843113, + 0.006758769042789936, + -0.04460510239005089, + -0.014627808704972267, + -0.014724956825375557, + -0.00469089113175869, + -0.01838884875178337, + 0.02371814474463463, + 0.007730255369096994, + 0.03663891181349754, + 0.030948778614401817, + -0.021469848230481148, + -0.022746657952666283, + -0.009610775858163834, + -0.0008968900656327605, + -0.010075701400637627, + -0.024939442053437233, + -0.04466061294078827, + -0.023732023313641548, + 0.007515140809118748, + 0.007882917299866676, + -0.007230633869767189, + 0.0067448909394443035, + -0.02775675244629383, + -0.05598536878824234, + -0.029810752719640732, + 0.010186728090047836, + -0.028478428721427917, + 0.013135883025825024, + -0.02095634862780571, + 0.01888846978545189, + 0.04493818059563637, + -0.04882412776350975, + 0.02069265954196453, + -0.05562453344464302, + 0.008070276118814945, + 0.017570024356245995, + -0.03691647946834564, + 0.02344057708978653, + -0.006078728940337896, + 0.038332074880599976, + 0.015585416927933693, + -0.020498361438512802, + -0.003398467320948839, + -0.006488140672445297, + -0.010346329770982265, + -0.04371688514947891, + -0.045354533940553665, + -0.00016350462101399899, + -0.028839265927672386, + 0.01290688943117857, + -0.050128694623708725, + 0.009895281866192818, + 0.047908153384923935, + -0.012275423854589462, + -0.002628217451274395, + -0.023870807141065598, + -0.004371688701212406, + 0.03225334733724594, + 0.00798006635159254, + 0.011047187261283398, + 0.029782995581626892, + 0.0012030816869810224, + -0.011116579174995422, + 0.003941458649933338, + 0.007327782455831766, + -0.008313147351145744, + 0.0187913216650486, + 0.01648751087486744, + 0.031309615820646286, + 0.05162755772471428, + 0.015474389307200909, + 0.004968458786606789, + 0.033363617956638336, + 0.008882161229848862, + 0.0020331821870058775, + -0.0021077783312648535, + -0.040941208600997925, + 0.052349235862493515, + 0.02764572575688362, + 0.00023289650562219322, + 0.002532803686335683, + -0.013732653111219406, + -0.003941458649933338, + 0.0167373213917017, + 0.02112288773059845, + 0.05159980431199074, + 0.023954076692461967, + -0.011109639890491962, + 0.03019934706389904, + 0.019082767888903618, + -0.0033481582067906857, + 0.027090590447187424, + -0.010478174313902855, + 0.015654807910323143, + -0.015404997393488884, + 0.011005552485585213, + 0.005762995686382055, + 0.014475146308541298, + -0.000831401499453932, + -0.017681051045656204, + -0.0028710891492664814, + 0.0017677581636235118, + 0.008327025920152664, + 0.009652410633862019, + 0.00810497161000967, + -0.0041877999901771545, + -0.007431870326399803, + 0.045243505388498306, + -0.010013248771429062, + 0.001275943242944777, + -0.0331970751285553, + 0.008847464807331562, + 0.0279094148427248, + 0.01887459121644497, + -0.024134496226906776, + 0.00262648263014853, + 0.00767474202439189, + 0.0026941397227346897, + -0.028728239238262177, + 0.012566870078444481, + -0.024051226675510406, + -0.005388279445469379, + -0.007202877197414637, + 0.026507697999477386, + 0.017486754804849625, + -0.042911939322948456, + 0.007723316550254822, + -0.029449913650751114, + 0.05215493589639664, + 0.050267480313777924, + -0.027506941929459572, + -0.00319896568544209, + -0.003577151568606496, + -0.050045423209667206, + -0.03569518402218819, + -0.011283120140433311, + 0.018069645389914513, + -0.0027826144360005856, + 0.0022274793591350317, + -0.006866326555609703, + -0.006078728940337896, + -0.022330306470394135, + -0.00926381628960371, + -0.01037408597767353, + -0.046770129352808, + 0.0256472397595644, + 0.028811508789658546, + -0.028700482100248337, + 0.04671461507678032, + -0.0010157236829400063, + -0.011130457744002342, + 0.007084911223500967, + -0.013892254792153835, + -0.025147616863250732, + -0.015293970704078674, + -0.0008166556945070624, + -0.03444613143801689, + -0.04452183097600937, + -0.040913451462984085, + -0.07882917672395706, + -0.019124401733279228, + -0.02767348289489746, + -0.02527252398431301, + -0.024536969140172005, + -0.007480444852262735, + -0.0028762933798134327, + -0.02109513245522976, + -0.010880647227168083, + -0.019582388922572136, + -0.0013609483139589429, + 0.01612667366862297, + 0.0034487764351069927, + 0.0008825779659673572, + -0.026868537068367004, + 0.01858314499258995, + 0.017819834873080254, + 0.03902599215507507, + -0.0002970839850604534, + 0.008396417833864689, + -0.013982463628053665, + 0.03885945305228233, + -0.01626545749604702, + 0.020082009956240654, + -0.02575826644897461, + 0.0205677542835474, + 0.00926381628960371, + -0.012095005251467228, + -0.01511355210095644, + -0.005946884397417307, + -0.007695559412240982, + -0.03963664174079895, + 0.021497605368494987, + 0.0020973696373403072, + 0.009527505375444889, + -0.022496847435832024, + -0.01064471434801817, + -0.022274794057011604, + -0.006876735482364893, + 0.07072420418262482, + -0.02062326669692993, + -0.006672029383480549, + 0.0037853270769119263, + -0.01623770035803318, + -0.024328794330358505, + 0.019929347559809685, + -0.005082955118268728, + 0.03425183147192001, + 0.012115822173655033, + 0.0011041982797905803, + -0.020359577611088753, + 0.0051315296441316605, + -0.0001811778638511896, + -0.03322483226656914, + -0.0022222748957574368, + -0.009589958004653454, + 0.009812012314796448, + -0.022191522642970085, + 0.004864370916038752, + 0.022038862109184265, + -0.011401086114346981, + 0.005436853971332312, + 0.004538229200989008, + -0.03475145250558853, + -0.017181430011987686, + -0.010811255313456059, + -0.004666604101657867, + 0.028506183996796608, + 0.0050170328468084335, + -0.026493819430470467, + 0.029671968892216682, + 0.04207923635840416, + -0.00513846892863512, + 0.009923039004206657, + -0.019998740404844284, + -0.011137397028505802, + -0.0054437932558357716, + 0.04696442559361458, + -0.003094877814874053, + 0.007154303137212992, + 0.013691018335521221, + -0.015516025014221668, + 0.004794979002326727, + 0.03766591474413872, + 0.03763815760612488, + 0.01594625413417816, + 0.022552361711859703, + 0.011192910373210907, + 0.03427958860993385, + -0.013857558369636536, + 0.020095888525247574, + -0.0127889234572649, + 0.011477417312562466, + 0.00914585031569004, + 0.0209841039031744, + 0.01826394349336624, + -0.007646985352039337, + -0.031476158648729324, + -0.03244764357805252, + -0.014849862083792686, + -0.031781479716300964, + 0.009728741832077503, + -0.0161821860820055, + -0.028950292617082596, + 0.022205401211977005, + -0.013115065172314644, + -0.0010755741968750954, + -0.033835481852293015, + 0.0026958745438605547, + -0.03733283281326294, + -0.002935276599600911, + -0.031448401510715485, + -0.033807724714279175, + 0.024190010502934456, + 0.0367499403655529, + -0.0060683200135827065, + -0.0065297759138047695, + -0.0019204203272238374, + 0.011983977630734444, + 0.03341912850737572, + -0.015640929341316223, + 0.07305577397346497, + -0.07583145052194595, + -0.014294727705419064, + -0.015516025014221668, + 0.0006054441328160465, + -0.01066553220152855, + 0.027576332911849022, + -0.03028261661529541, + 0.031198589131236076, + 0.006495079956948757, + -0.012733410112559795, + 0.04466061294078827, + 0.017098158597946167, + -0.013691018335521221, + 0.0026906700804829597, + 0.028450671583414078, + 0.02589705027639866, + 0.013482842594385147, + 0.0032562140841037035, + -0.009624653495848179, + 0.026688117533922195, + 0.006855917628854513, + -0.0012048165081068873, + 0.006335478741675615, + 0.01290688943117857, + 0.0038894149474799633, + 0.004746404476463795, + 0.017958618700504303, + -0.029116833582520485, + -0.018125159665942192, + 0.02539742924273014, + -0.017639415338635445, + 0.013350998051464558, + 0.019360335543751717, + 0.03425183147192001, + 0.031309615820646286, + -0.007501262240111828, + 0.000981027726083994, + 0.009360964410007, + -0.010353269055485725, + 0.0005468947347253561, + -0.013691018335521221, + 0.020345699042081833, + -0.028755996376276016, + -0.011310876347124577, + -0.0022292141802608967, + -0.029005806893110275, + 0.006005867384374142, + -0.05359828844666481, + 0.01869417354464531, + -0.002723631216213107, + 0.010610018856823444, + -0.04707545042037964, + 0.007012049667537212, + -0.02596644125878811, + 0.022552361711859703, + -0.01602952368557453, + 0.011630079708993435, + -0.006210573483258486, + -0.03294726461172104, + 0.0519883967936039, + 0.0006744023412466049, + 0.009999370202422142, + -0.02785390056669712, + -0.019610146060585976, + 0.008750315755605698, + -0.013524477370083332, + 0.011463538743555546, + -0.006921839900314808, + -0.004170452244579792, + 0.03805450722575188, + -0.02775675244629383, + -0.0018007192993536592, + 0.022177645936608315, + -0.02076205052435398, + 0.0005126325413584709, + 0.00325968349352479, + 0.014697200618684292, + 0.012254606001079082, + -0.001984607893973589, + -0.01269871462136507, + -0.003283970756456256, + -0.031948022544384, + -0.0006891481461934745, + -0.0025189253501594067, + -0.024106739088892937, + 0.0033724454697221518, + 0.023926321417093277, + -0.01269177533686161, + 0.01825006492435932, + -0.003176413243636489, + 0.00924993772059679, + -0.03652788698673248, + 0.03200353682041168, + 0.003490411676466465, + 0.009971613064408302, + -0.0021355352364480495, + -0.04044158756732941, + 0.014169822447001934, + 0.003462654771283269, + -0.01596013270318508, + -0.02117840200662613, + -0.028978049755096436, + 0.036416858434677124, + 0.0016749465139582753, + 0.010096518322825432, + -0.03683321177959442, + 0.0010634305654093623, + 0.004347401205450296, + 0.003112225793302059, + 0.01392695028334856, + 0.0008994922391138971, + 0.026327280327677727, + 0.007244512438774109, + 0.015627050772309303, + -0.017320213839411736, + -0.016931619495153427, + 0.01038796454668045, + -0.00377838802523911, + 0.010901464149355888, + -0.04851880297064781, + -0.028839265927672386, + 0.001592543674632907, + -0.004215556662529707, + 0.023954076692461967, + -0.0055929855443537235, + 0.02549457736313343, + 0.006044032983481884, + -0.0044445497915148735, + 0.017084281891584396, + 0.008889099583029747, + -0.003941458649933338, + 0.021872321143746376, + -0.001124148489907384, + -0.0037055264692753553, + -0.03228110447525978, + -0.024370428174734116, + 0.02796492725610733, + 0.006453444715589285, + 0.024523090571165085, + 0.019485240802168846, + -0.0021476787514984608, + 0.014114308170974255, + 0.031670454889535904, + -0.0046804822050035, + -0.018139038234949112, + -0.03022710420191288, + 0.009576079435646534, + -0.0327807255089283, + 0.015918496996164322, + 0.02781226672232151, + 0.028617212548851967, + 0.003360301721841097, + -0.021442091092467308, + 0.04371688514947891, + -0.006266086827963591, + 0.006835100241005421, + -0.012323997914791107, + -0.011137397028505802, + 0.019943226128816605, + 0.005679725669324398, + -0.027076711878180504, + 0.043078478425741196, + -0.02831188775599003, + 0.043356046080589294, + -0.02997729182243347, + 0.00044324062764644623, + 0.042911939322948456, + -0.030921021476387978, + -0.022802172228693962, + -0.022219279780983925, + -0.01870805025100708, + -0.01587686315178871, + -0.03566742688417435, + 0.0010747067863121629, + -0.0049753980711102486, + 0.013753470964729786, + 0.02570275217294693, + 0.0327807255089283, + -0.00470130005851388, + -0.0009289837907999754, + 0.007452688179910183, + -0.0373050756752491, + -0.02294095605611801, + 0.021886199712753296, + 0.04943477734923363, + -0.008632349781692028, + 0.0008578571141697466, + -0.002182374708354473, + 0.04185718297958374, + 7.416256994474679e-5, + 0.026729753240942955, + -0.011928464286029339, + -0.017292456701397896, + -0.018055766820907593, + 0.025064347311854362, + 0.0006002397858537734, + -0.012212971225380898, + 0.008424174040555954, + -0.010165910236537457, + 0.010610018856823444, + 0.001772962510585785, + 0.032364372164011, + -0.043245021253824234, + 0.021344942972064018, + 0.0030480383429676294, + 0.021525360643863678, + 0.013878376223146915, + 0.002248296979814768, + -0.0055929855443537235, + 0.01407961267977953, + 0.029755238443613052, + -0.017181430011987686, + -0.01911052316427231, + 0.027326522395014763, + -0.004517411347478628, + -0.0068524484522640705, + 0.00924993772059679, + -0.0017799017950892448, + -0.0073624784126877785, + 0.005884431302547455, + -0.022191522642970085, + -0.013566113077104092, + -0.031420644372701645, + -0.043217264115810394, + 0.01827782206237316, + -0.04452183097600937, + 0.008403357118368149, + -0.0015647868858650327, + 0.010034065693616867, + -0.01650138944387436, + -0.012025613337755203, + -0.02806207723915577, + 0.016889983788132668, + -0.027118347585201263, + 0.009631592780351639, + -0.007924553006887436, + -0.019721172749996185, + -0.008035579696297646, + 0.005429914686828852, + 0.007397174369543791, + -0.01657078042626381, + -0.027159981429576874, + -0.0038894149474799633, + -0.008021701127290726, + -0.019235430285334587, + -0.007494322955608368, + -0.021816806867718697, + -0.019401969388127327, + -0.03316931799054146, + -0.0031712090130895376, + 0.0012811475899070501, + -0.005929536186158657, + 0.017472876235842705, + 0.00813272874802351, + -0.0022725840099155903, + -0.008854404091835022, + 0.003670830512419343, + -0.007695559412240982, + 0.026368914172053337, + -0.01050593052059412, + 0.015446633100509644, + 0.0052321478724479675, + 0.03672218322753906, + -0.00810497161000967, + -0.03228110447525978, + -0.034057535231113434, + -0.009444234892725945, + -0.008174363523721695, + 0.01620994322001934, + 0.012983220629394054, + 0.005475019570440054, + 0.028728239238262177, + -0.00021999394812155515, + 0.03025485947728157, + 0.007397174369543791, + 0.009208302944898605, + 0.026521576568484306, + -0.0029803812503814697, + 0.001413859543390572, + 0.06755993515253067, + -0.027368158102035522, + 0.01153293065726757, + 0.009867525659501553, + -0.012261545285582542, + -0.020054252818226814, + -0.007758012507110834, + -0.018000254407525063, + 0.043328288942575455, + -0.0068906135857105255, + 0.0043057664297521114, + -0.040663640946149826, + 0.0061724078841507435, + -0.033668939024209976, + -0.004323114175349474, + -0.014877619221806526, + -0.003460919950157404, + 9.161896741716191e-5, + 0.029366644099354744, + 0.007806586567312479, + -0.004968458786606789, + 0.02370426617562771, + 0.008743377402424812, + 0.002548416843637824, + 0.01626545749604702, + -0.04180166870355606, + -0.02994953654706478, + -0.002793023129925132, + 0.01391307171434164, + 0.02335730753839016, + 0.003204170148819685, + -0.0032145788427442312, + 0.02598031982779503, + 0.01409349124878645, + 0.019970983266830444, + 0.024620238691568375, + 0.007758012507110834, + -0.0035025551915168762, + 0.0258554145693779, + -0.028894778341054916, + -0.03502902016043663, + 0.0017634212272241712, + -0.050350748002529144, + -0.03033813089132309, + 0.020248550921678543, + -0.012018674053251743, + 0.010020188055932522, + -0.015182944014668465, + 0.043245021253824234, + 0.0066442727111279964, + -0.005502776242792606, + -0.008389478549361229, + -0.005107242614030838, + -0.024564726278185844, + 0.0057040126994252205, + -0.013052612543106079, + 0.0015248865820467472, + -0.0016706095775589347, + 0.015460510738193989, + -0.001730459975078702, + 0.0057005430571734905, + -0.0009515361743979156, + 0.010027126409113407, + -0.005436853971332312, + 0.02334342896938324, + 0.020262429490685463, + -0.014037977904081345, + -0.02600807696580887, + -0.01380204502493143, + 0.0077857691794633865, + -0.04016401991248131, + 0.023732023313641548, + -0.0026837310288101435, + -0.006515897810459137, + -0.006314661353826523, + 0.02092859148979187, + -0.043161749839782715, + -0.00583932688459754, + 0.01405185554176569, + -0.002753122942522168, + 0.03416856378316879, + -0.002567499643191695, + -0.02822861634194851, + -0.008292329497635365, + 0.0012750758323818445, + -0.0026646482292562723, + 0.016945498064160347, + -0.03344688564538956, + 0.01266401819884777, + -0.01050593052059412, + 0.009062579832971096, + 0.01659853756427765, + -0.021636389195919037, + 0.005082955118268728, + -0.010325511917471886, + 0.014377998188138008, + 0.016681808978319168, + 0.026355035603046417, + -0.01393388956785202, + 0.0007195070502348244, + -0.045076966285705566, + 0.0320868045091629, + -0.00754983676597476, + -0.02128942869603634, + -0.010068762116134167, + -0.014891497790813446, + 0.03172596916556358, + -0.02314913086593151, + 0.014447389170527458, + 0.015155186876654625, + 0.03036588802933693, + 0.024745143949985504, + 0.0077927084639668465, + -0.0184443611651659, + 0.02752082049846649, + 0.024370428174734116, + -0.01902725361287594, + 0.004215556662529707, + -0.004649255890399218, + 0.00813272874802351, + -0.004749874118715525, + 0.002714957343414426, + 0.019693415611982346, + 0.02314913086593151, + -0.03247540071606636, + 0.005565228872001171, + -0.012268484570086002, + -0.00016892586427275091, + -0.017223065719008446, + -0.01511355210095644, + -0.03241988644003868, + 0.007862100377678871, + -0.034002020955085754, + 0.009978552348911762, + 0.02356548234820366, + 0.0013843680499121547, + 0.022441335022449493, + 0.005069077014923096, + 0.0009445970063097775, + 0.0031573306769132614, + -0.027132226154208183, + -0.03514004871249199, + -0.01843048445880413, + -0.00808415375649929, + 2.6875801268033683e-5, + 0.007917613722383976, + -0.0213310644030571, + 0.007074502296745777, + 0.014766592532396317, + -0.006651211995631456, + -0.008778072893619537, + 0.029699724167585373, + 0.03058794140815735, + 0.03722180426120758, + -0.020581630989909172, + -0.007313904352486134, + -0.0165291465818882, + 0.009923039004206657, + 0.01602952368557453, + 0.0041912696324288845, + -0.010783498175442219, + -0.027451427653431892, + 0.008077215403318405, + -0.030948778614401817, + 0.002524129580706358, + 0.00583585724234581, + 0.01841660588979721, + -0.028617212548851967, + 0.020054252818226814, + 0.0035285770427435637, + 0.024703510105609894, + -0.014135126024484634, + -0.01505803782492876, + 0.03477920964360237, + -0.010887586511671543, + -0.037027508020401, + 0.03028261661529541, + -0.0016168308211490512, + -0.002439124509692192, + -0.03039364330470562, + 0.011727227829396725, + -0.011754984967410564, + 0.02342669852077961, + 0.022732779383659363, + 0.018028011545538902, + 0.010561443865299225, + -0.014350241050124168, + -0.01511355210095644, + -0.028561698272824287, + -0.011144336313009262, + 0.016834469512104988, + 0.005006624385714531, + -0.012254606001079082, + -0.02097022719681263, + -0.008667046204209328, + 0.0019447074737399817, + -0.012726470828056335, + -0.014600051566958427, + -0.012976281344890594, + 0.005471549928188324, + 0.009631592780351639, + -0.00941647868603468, + -0.010887586511671543, + -0.022635631263256073, + 0.018125159665942192, + -0.010915342718362808, + -0.017250820994377136, + -0.003948397934436798, + 0.006130772642791271, + 0.028533941134810448, + -0.004822735674679279, + 0.01863865926861763, + -0.021442091092467308, + 0.01154680922627449, + -0.01841660588979721, + -0.0013210478937253356, + 0.021733537316322327, + 0.014863740652799606, + -0.012303180061280727, + -0.019485240802168846, + 0.002529334044083953, + 0.0041912696324288845, + 0.011456599459052086, + -0.008764194324612617, + 0.003761040046811104, + -0.00103220425080508, + -0.0411355085670948, + 0.012997099198400974, + -0.03289175033569336, + 0.02314913086593151, + -0.022663388401269913, + 0.0023801415227353573, + -0.019846078008413315, + 0.0010313368402421474, + -0.013288545422255993, + 0.01291382871568203, + -0.01063083577901125, + -0.038193292915821075, + -0.03944234549999237, + 0.0027583271730691195, + -0.003408876247704029, + -0.01897173933684826, + 0.04840777441859245, + 0.004624968860298395, + 0.004212087020277977, + -0.020581630989909172, + -0.012851376086473465, + -0.00822293758392334, + -0.000616720353718847, + 0.00413575628772378, + -0.020026497542858124, + 0.022746657952666283, + 0.034057535231113434, + -0.021553117781877518, + 0.0010365411872044206, + 0.02549457736313343, + 0.02582765743136406, + 0.0011605792678892612, + 0.0008804094977676868, + -0.02074817195534706, + -0.01672344282269478, + -0.01877744309604168, + -0.011928464286029339, + -0.011165153235197067, + 0.0030914084054529667, + 0.04413323476910591, + 0.031365130096673965, + -0.002322893124073744, + -0.0035407207906246185, + -0.0069773537106812, + -0.036222562193870544, + 0.041191019117832184, + -0.018111281096935272, + -0.015654807910323143, + 0.017112037166953087, + -0.019624024629592896, + 0.0023367716930806637, + 0.015585416927933693, + 0.02115064486861229, + -0.042995210736989975, + -0.0278400219976902, + 0.026632603257894516, + -0.04496593773365021, + -0.03203129395842552, + 0.015404997393488884, + 0.012733410112559795, + -0.0018388848984614015, + 0.027187738567590714, + -0.0008379069622606039, + -0.009839768521487713, + 0.012323997914791107, + 0.003927580546587706, + -0.014377998188138008, + -0.019554631784558296, + 0.021497605368494987, + -0.022649509832262993, + 0.004069834016263485, + -0.009728741832077503, + -0.01155374851077795, + -0.05629069358110428, + -0.01296240370720625, + -0.029894022271037102, + 0.029061319306492805, + 0.006883674766868353, + -0.0002454737841617316, + 0.01166477520018816, + 0.03905374929308891, + 0.027090590447187424, + -0.002612604293972254, + -0.001977668609470129, + 0.0019238898530602455, + -0.031587183475494385, + 0.03325258940458298, + 0.022732779383659363, + 0.0019238898530602455, + 8.016660103749018e-6, + -0.01865253783762455, + 0.015696443617343903, + -0.0334746427834034, + 0.010152032598853111, + 0.004520880989730358, + 0.02599419839680195, + 0.009916099719703197, + -0.029755238443613052, + 0.01891622692346573, + -0.0018926635384559631, + -0.017667172476649284, + -0.006325069814920425, + -0.03200353682041168, + 0.00377491838298738, + 0.003830431727692485, + -0.02123391628265381, + -0.01177580188959837, + 0.0009740885579958558, + 0.02138657681643963, + 0.03325258940458298, + -0.027243252843618393, + 0.018083523958921432, + 0.013732653111219406, + -0.0005030911415815353, + 0.003460919950157404, + -0.004361279774457216, + -0.017084281891584396, + -0.004097590688616037, + 0.0035389859694987535, + 0.02062326669692993, + -0.03025485947728157, + -0.009583018720149994, + -0.01870805025100708, + 0.027562454342842102, + 0.007230633869767189, + -0.004801918286830187, + -0.01651526801288128, + -0.005606864113360643, + 0.022441335022449493, + 0.005971171427518129, + -0.002241357695311308, + 0.0034401025623083115, + -0.012046430259943008, + 0.05351501703262329, + 0.011061065830290318, + -0.006668559741228819, + -0.005353583488613367, + -0.0024078981950879097, + 0.012469721026718616, + -0.005464610643684864, + 0.0255778469145298, + -0.006089137401431799, + -0.008646228350698948, + -0.022177645936608315, + -0.02138657681643963, + 0.0006865459145046771, + 0.027146104723215103, + -0.001323650125414133, + -0.011602322570979595, + 0.0001407354138791561, + 0.022219279780983925, + -0.00046362451394088566, + 0.018028011545538902, + -0.004850492347031832, + 0.0012681366642937064, + 0.0054819583892822266, + -0.001965525094419718, + -0.02066490240395069, + -0.014849862083792686, + -0.00411146879196167, + -0.027368158102035522, + -0.006668559741228819, + -0.002156352624297142, + 0.02578602358698845, + 0.001790310489013791, + 0.010131214745342731, + 0.020248550921678543, + -0.010242241434752941, + 0.03444613143801689, + -0.02538355067372322, + 0.027062833309173584, + -0.010124275460839272, + -0.022718902677297592, + -0.003944928292185068, + 0.0021147176157683134, + 0.023843050003051758, + -0.014516781084239483, + 0.004638847429305315, + 0.003388058627024293, + 0.002168496372178197, + -0.01615443080663681, + -0.0007941033109091222, + -0.028783751651644707, + -0.003958806861191988, + 0.000982762547209859, + -0.014336362481117249, + 0.012219910509884357, + -0.01672344282269478, + 0.006710194982588291, + 0.00047923767124302685, + 0.004059425089508295, + -0.027090590447187424, + -0.010339390486478806, + 0.009083397686481476, + 0.005721360445022583, + -0.013399572111666203, + -0.014308606274425983, + -0.001611626474186778, + 0.025175374001264572, + 0.0021060435101389885, + -0.023898564279079437, + 0.004264131188392639, + 0.026993442326784134, + -0.009034822694957256, + 0.006016276311129332, + -0.007188999094069004, + -0.007508201524615288, + -0.002716692164540291, + 0.0052356175146996975, + 0.02117840200662613, + -0.010165910236537457, + 0.03289175033569336, + -0.03708302229642868, + -0.007376356981694698, + -0.02591092884540558, + 0.02295483462512493, + 0.017181430011987686, + -0.01890234835445881, + -0.0034123456571251154, + 0.004853961989283562, + -0.002543212380260229, + 0.0012412472860887647, + 0.016903862357139587, + -0.001788575784303248, + 0.02803432010114193, + 0.03205904737114906, + 0.003837371012195945, + -0.029755238443613052, + -0.014849862083792686, + 0.004382097162306309, + 0.01611279509961605, + -0.01840272732079029, + -0.022358063608407974, + -0.011102700605988503, + 0.024856172502040863, + -0.006467323284596205, + 0.02337118610739708, + 0.005586046259850264, + -0.01392695028334856, + -0.0020522649865597486, + -0.0082645732909441, + -0.03280848264694214, + -0.025147616863250732, + 0.004819266032427549, + -0.020470604300498962, + -0.027506941929459572, + -0.041052237153053284, + 0.014891497790813446, + -0.015627050772309303, + -0.014877619221806526, + -0.026660360395908356, + 0.019443605095148087, + -0.00949280895292759, + -0.02582765743136406, + 0.003117430256679654, + 0.027187738567590714, + 0.015391118824481964, + -0.012337876483798027, + 0.03464042767882347, + -0.00469089113175869, + 0.00018974342674482614, + -0.015918496996164322, + -0.008764194324612617, + 0.004142695106565952, + 0.007300025783479214, + -0.024828415364027023, + -0.008729498833417892, + 0.007244512438774109, + -0.005502776242792606, + 0.015266213566064835, + 0.007966187782585621, + -0.012754227966070175, + -0.015404997393488884, + -0.012296241708099842, + -0.00042610953096300364, + 0.024453699588775635, + -0.0007294821552932262, + -0.01825006492435932, + 0.00019863425404764712, + -0.03888721019029617, + 0.013496721163392067, + -0.003910232335329056, + -0.015460510738193989, + 0.00235411967150867, + -0.005672786384820938, + 0.00813272874802351, + -0.01050593052059412, + 0.020498361438512802, + 0.0008292329730466008, + 0.009097275324165821, + -0.01168559305369854, + -0.001682753092609346, + -0.029200103133916855, + 0.03944234549999237, + -0.02350996993482113, + 0.007074502296745777, + -0.035722941160202026, + 0.011158214882016182, + 0.0009619449265301228, + -0.013482842594385147, + -0.05348726361989975, + -0.019637903198599815, + 0.010263059288263321, + 0.011213728226721287, + 0.0003970516554545611, + -0.005204391200095415, + 0.0013739592395722866, + -0.0021528832148760557, + 0.010623897425830364, + 0.019610146060585976, + 0.007848221808671951, + 0.01408655196428299, + 0.0019169506849721074, + -0.008327025920152664, + -0.007237573154270649, + -0.006793464999645948, + -0.007445748895406723, + 0.024134496226906776, + 0.014808227308094501, + -0.02334342896938324, + -0.014641687273979187, + -0.0004501798248384148, + 0.026937928050756454, + 0.014239214360713959, + -0.009652410633862019, + -0.012858315370976925, + -0.003015077207237482, + 0.0105267483741045, + 0.0017443384276703, + 0.01669568568468094, + -0.019665658473968506, + 0.012552991509437561, + -0.003754100762307644, + 0.002635156735777855, + -0.0019672599155455828, + 0.019499119371175766, + -0.022302551195025444, + 0.006651211995631456, + -0.0066373334266245365, + 0.00016773318930063397, + 0.010214485228061676, + 0.02110901102423668, + -0.011491295881569386, + 0.01586298458278179, + 0.04185718297958374, + -0.01497476827353239, + -0.026729753240942955, + 0.007640046067535877, + -0.020359577611088753, + 0.0004623233980964869, + -0.01155374851077795, + -0.012310119345784187, + -0.0054888976737856865, + -0.026937928050756454, + 0.002357589080929756, + -0.03472369909286499, + 0.022330306470394135, + 0.010193667374551296, + -0.01380898430943489, + -0.017278578132390976, + -0.0091180931776762, + 0.026979563757777214, + -0.017708808183670044, + 0.004336992744356394, + 0.015654807910323143, + 0.007140424568206072, + 0.004021259490400553, + 0.0011727227829396725, + 0.007799647282809019, + -0.024203887209296227, + -0.019207673147320747, + -0.005995458457618952, + -0.008986248634755611, + 0.008500505238771439, + -0.0031712090130895376, + -0.019374212250113487, + 0.026924049481749535, + -0.02130330726504326, + -0.00011373763118172064, + 0.0334746427834034, + -0.01519682165235281, + 0.003663891227915883, + 0.0030619166791439056, + -0.0164597537368536, + 0.005516654346138239, + -0.019055010750889778, + -0.005315417889505625, + -0.0023784067016094923, + 0.0026958745438605547, + 0.009978552348911762, + 0.02339894138276577, + 0.02752082049846649, + -0.0018597024027258158, + -0.02095634862780571, + -0.024065105244517326, + 0.019582388922572136, + 0.01895786263048649, + -0.0519883967936039, + -0.004503533244132996, + -0.011609261855483055, + 0.008500505238771439, + -0.0005976375541649759, + -0.012622383423149586, + -0.019998740404844284, + 0.026119103655219078, + -0.007424931041896343, + 0.003379384521394968, + 0.02559172548353672, + -0.019457483664155006, + 0.009083397686481476, + 0.001975933788344264, + -0.01847211830317974, + -0.003948397934436798, + 0.013718774542212486, + 0.038165535777807236, + -0.019943226128816605, + 0.01151211280375719, + 0.013108125887811184, + 0.02539742924273014, + -0.013344058766961098, + 0.026035834103822708, + -0.013128943741321564, + -0.003674300154671073, + 0.01279586274176836, + -0.015432754531502724, + -0.01396858599036932, + -0.022122131660580635, + 0.02294095605611801, + 0.03766591474413872, + 0.005717890802770853, + 0.01522457879036665, + -0.005093364045023918, + -0.043411560356616974, + -0.012976281344890594, + -0.0026750569231808186, + 0.010998613201081753, + -0.003757570404559374, + -0.008209059946238995, + 0.010214485228061676, + 0.007077971938997507, + -0.012643200345337391, + -0.011192910373210907, + -0.013094248250126839, + 0.00032917773933149874, + 0.0058497353456914425, + -0.004933762829750776, + 0.006685907952487469, + -0.02113676629960537, + 0.003301318734884262, + 0.0069947014562785625, + 0.007875978946685791, + 0.01831945590674877, + 0.009728741832077503, + -0.006106485612690449, + 0.00571442162618041, + -0.0032440703362226486, + -0.03872067108750343, + -0.012740349397063255, + 0.011255363002419472, + 0.007771890610456467, + 0.009055640548467636, + -0.013600808568298817, + -0.007272269111126661, + 0.009950796142220497, + -0.012983220629394054, + 0.01633484847843647, + 0.0015248865820467472, + -0.017001010477542877, + 0.028978049755096436, + 0.006762238685041666, + 0.0014320749323815107, + -0.052793342620134354, + -0.01040184311568737, + -0.025286400690674782, + 0.02588317170739174, + -0.01861090213060379, + 0.027493063360452652, + -0.0023974895011633635, + 0.029255617409944534, + 0.0011198114370927215, + 0.02065102383494377, + -0.00016361304733436555, + -0.03014383278787136, + -0.021844564005732536, + -0.004933762829750776, + 0.0008053795318119228, + -0.025105983018875122, + -0.0327807255089283, + -0.012740349397063255, + -0.008937674574553967, + 0.006696316413581371, + 0.032364372164011, + -0.03283623978495598, + -0.022136010229587555, + -0.01164395734667778, + -0.012247666716575623, + -0.003906762693077326, + -0.017903104424476624, + 0.029894022271037102, + -0.03019934706389904, + -0.026341158896684647, + 0.011283120140433311, + 0.0187913216650486, + -0.002834658371284604, + -0.038387589156627655, + 0.006779586896300316, + -0.009201363660395145, + 0.04216250777244568, + -0.021802928298711777, + 0.02563336119055748, + -0.015127429738640785, + -0.015307849273085594, + -0.004864370916038752, + -0.008736438117921352, + -0.006946127396076918, + 0.002263910137116909, + -0.03580620884895325, + 0.010825133882462978, + -0.008514383807778358, + 0.009471992030739784, + 0.000536485982593149, + 0.015543781220912933, + 0.006207103841006756, + 0.012317058630287647, + -0.03175372630357742, + 0.02778450958430767, + 0.026299523189663887, + 0.004857431631535292, + 0.0022240097168833017, + -0.015932375565171242, + -0.0005234749987721443, + -0.029699724167585373, + 0.017764322459697723, + 0.011310876347124577, + -0.0010773089015856385, + -0.000292963843094185, + 0.009326268918812275, + -0.0014719752361997962, + 0.01519682165235281, + 0.042689885944128036, + -0.026910170912742615, + -0.006599167827516794, + 0.004843553062528372, + -0.008070276118814945, + -0.010859829373657703, + -0.015710322186350822, + 0.006515897810459137, + 0.015266213566064835, + -0.002055734395980835, + 0.008021701127290726, + -0.013427329249680042, + -0.008195181377232075, + 0.005863613914698362, + 5.811570008518174e-5, + -0.010596140287816525, + 0.0058497353456914425, + 0.006054441444575787, + 0.015890739858150482, + -0.023981833830475807, + 0.025189252570271492, + -0.0035181683488190174, + -0.0038096143398433924, + 0.012337876483798027, + -0.011116579174995422, + 0.009659349918365479, + -0.01266401819884777, + 0.008923796005547047, + 0.015682565048336983, + -0.01053368765860796, + -0.03322483226656914, + -0.007369417697191238, + 0.005672786384820938, + -0.01600176841020584, + 0.005475019570440054, + -0.00928463414311409, + -0.0017651559319347143, + 0.006033624056726694, + 0.018014132976531982, + -0.03769366815686226, + -0.01836109161376953, + 0.0020453257020562887, + 0.014433511532843113, + -0.024217765778303146, + -0.026757508516311646, + 0.024481454864144325, + -0.008514383807778358, + -0.004503533244132996, + 0.002256970852613449, + -0.0014017160283401608, + 0.015793591737747192, + 0.0019863424822688103, + -0.019887713715434074, + 0.008146606385707855, + -0.023856928572058678, + -0.0038234926760196686, + -0.01268483605235815, + -0.006623454857617617, + -0.000986232073046267, + 0.014322483912110329, + 0.004142695106565952, + 0.022802172228693962, + -0.008618471212685108, + -0.027382036671042442, + 0.0023350368719547987, + 0.007987005636096, + -0.010839011520147324, + 0.011130457744002342, + 0.0037992054130882025, + 0.007230633869767189, + 0.01619606465101242, + -0.0022361534647643566, + -0.01609891653060913, + -0.020248550921678543, + 0.0023714674171060324, + 0.0105267483741045, + -0.008701741695404053, + 0.005076016299426556, + -0.0014416163321584463, + 0.09415090084075928, + -0.007952309213578701, + 0.012518295086920261, + 0.005988519173115492, + 0.0030463035218417645, + 0.0022361534647643566, + -0.007563714869320393, + 0.023884685710072517, + 0.007903735153377056, + 0.00808415375649929, + 0.005103772971779108, + -0.03935907408595085, + 0.008785012178122997, + 0.011713349260389805, + -0.015890739858150482, + -0.006363235414028168, + 0.017167551442980766, + 0.017153672873973846, + 0.008486626669764519, + 0.011595383286476135, + -0.0038200230337679386, + -0.017986375838518143, + -0.007910674437880516, + 0.026382792741060257, + -0.015779713168740273, + -0.007018988952040672, + 0.014377998188138008, + 0.0038026750553399324, + 0.01602952368557453, + 0.026230130344629288, + -0.004479245748370886, + -0.0022881971672177315, + -0.006914901081472635, + -0.0046561951749026775, + -0.009728741832077503, + 0.00571095198392868, + 0.007286147680133581, + 0.0065367151983082294, + 0.02777063101530075, + 0.017098158597946167, + -0.003795736003667116, + 0.0014511577319353819, + 0.03219783306121826, + 0.03069896809756756, + -0.013115065172314644, + -0.00827151257544756, + 0.022399699315428734, + -0.012212971225380898, + 0.00015060206351336092, + 0.030726725235581398, + -0.02301034703850746, + -0.026910170912742615, + -0.0017243882175534964, + -0.0008478820673190057, + 0.01267789676785469, + -0.009714863263070583, + 0.012282363139092922, + -0.015543781220912933, + -0.001955116167664528, + -0.004607621114701033, + 0.0017278578598052263, + -0.006515897810459137, + -0.03058794140815735, + -0.02799268439412117, + -0.004278009291738272, + -0.007397174369543791, + -0.00937484297901392, + -0.006613046396523714, + 0.011019431054592133, + -0.005003154743462801, + 0.008667046204209328, + 0.009825889952480793, + 0.01655690371990204, + -0.02779838815331459, + -0.0008340036729350686, + 0.030921021476387978, + 0.010693288408219814, + 0.007841282524168491, + 0.0017113772919401526, + 0.01837497018277645, + 0.0059121884405612946, + 0.01163701806217432, + -0.004371688701212406, + -0.017639415338635445, + -0.008070276118814945, + -0.00766086345538497, + 0.013080369681119919, + -0.02090083435177803, + 0.008181302808225155, + -0.029422158375382423, + -0.010297754779458046, + 0.007508201524615288, + -0.010915342718362808, + -0.017334092408418655, + 0.0016185656422749162, + -0.009076458401978016, + 0.0014554946683347225, + -0.008701741695404053, + 0.007633106783032417, + 0.0024165723007172346, + 0.02053999714553356, + 0.011748045682907104, + -0.015751957893371582, + 0.011199849657714367, + 0.009638532064855099, + -0.009853647090494633, + 0.019526874646544456, + 0.01841660588979721, + -0.022802172228693962, + -0.0038894149474799633, + -0.012844436801970005, + 0.019360335543751717, + 0.0005356185720302165, + 0.0127889234572649, + -0.008667046204209328, + -0.01053368765860796, + 0.00811191089451313, + 0.006439566612243652, + -0.019762808457016945, + -0.02316300943493843, + -0.011893768794834614, + -0.007313904352486134, + 0.004225965589284897, + 0.0020505301654338837, + -0.002100839279592037, + -0.02324628084897995, + -0.00940953940153122, + -0.013468964025378227, + -0.00811191089451313, + 0.008646228350698948, + 0.02113676629960537, + 0.012768106535077095, + 0.031365130096673965, + -0.01521070022135973, + -0.001267269253730774, + 0.004989276174455881, + 0.0026767917443066835, + 0.007924553006887436, + 0.024259401485323906, + -0.00767474202439189, + 0.003761040046811104, + 0.009555261582136154, + -0.006939188111573458, + 0.010956978425383568, + 0.0371662899851799, + 0.009638532064855099, + -0.004607621114701033, + -0.022593995556235313, + 0.03000504896044731, + -0.010915342718362808, + 0.010145093314349651, + -0.021719658747315407, + 0.0051280600018799305, + -0.014128186739981174, + 0.01664017327129841, + 0.005409097298979759, + -0.013843679800629616, + 0.015599294565618038, + -0.007633106783032417, + -0.0005685797077603638, + -0.010200606659054756, + -0.009673228487372398, + 0.008625410497188568, + -0.006026684772223234, + -0.0068489788100123405, + 0.009895281866192818, + 0.007053684908896685, + 0.03247540071606636, + 0.011949282139539719, + -0.006706725340336561, + -0.001797249773517251, + 0.014461267739534378, + -0.013482842594385147, + -0.03003280609846115, + -0.006724073085933924, + -0.029699724167585373, + 0.00836172141134739, + 0.01615443080663681, + -0.005284191574901342, + 0.01038796454668045, + 0.005086424760520458, + -0.020137524232268333, + 0.015932375565171242, + -0.008757255040109158, + 0.012490538880228996, + -0.007869039662182331, + 0.017445119097828865, + -0.01036020740866661, + -0.0004987541469745338, + 0.010145093314349651, + -0.019499119371175766, + 0.026063591241836548, + -0.019332578405737877, + 0.017889227718114853, + -0.007882917299866676, + 0.00411840807646513, + 0.008340904489159584, + 0.03266969695687294, + -0.004146164748817682, + 0.001737399259582162, + -0.031392887234687805, + 0.003464389592409134, + -0.0013522743247449398, + 0.008764194324612617, + 0.01641811989247799, + -0.014377998188138008, + -0.00935402512550354, + -0.0141975786536932, + -0.004853961989283562, + 0.01856926828622818, + -0.03266969695687294, + -0.020595509558916092, + 0.01887459121644497, + 0.003393263090401888, + -0.015599294565618038, + 0.02352384850382805, + 0.0018163324566558003, + 0.006467323284596205, + 0.012192153371870518, + -0.0068489788100123405, + -0.0041982089169323444, + 0.0017191838705912232, + 0.009909160435199738, + -0.0030341600067913532, + 0.006456914357841015, + 0.007737194653600454, + -0.006866326555609703, + 0.015904618427157402, + 0.002839862834662199, + 0.005468080285936594, + 0.03039364330470562, + -0.0029890553560107946, + -0.002263910137116909, + 0.020345699042081833, + -0.00035866929101757705, + 0.009076458401978016, + 0.02094247005879879, + -0.02102573961019516, + 0.006300782784819603, + -0.0013496720930561423, + -0.001539632328785956, + 0.016765078529715538, + 0.0025883172638714314, + 0.010200606659054756, + 0.0061758775264024734, + -0.006710194982588291, + -0.013906133361160755, + -0.008694802410900593, + 0.010429599322378635, + -2.7187521482119337e-5, + -0.01292076800018549, + -0.014738835394382477, + -0.028700482100248337, + 0.022455213591456413, + 0.004631908144801855, + -0.0022153358440846205, + 0.004215556662529707, + -0.014808227308094501, + -0.0021147176157683134, + 0.001466770889237523, + -0.004045546520501375, + 0.013142822310328484, + 0.016889983788132668, + 0.003382854163646698, + 0.005440323613584042, + 0.016876105219125748, + -0.014947011135518551, + 0.003917171619832516, + 0.014336362481117249, + -0.004493124317377806, + 0.0009931712411344051, + 0.0024790249299257994, + 0.003646543249487877, + -0.000759841117542237, + -0.012976281344890594, + -0.00022465622168965638, + 0.015613173134624958, + -1.0164826562686358e-6, + -0.0063805836252868176, + -0.010998613201081753, + -0.01407267339527607, + -0.0075775934383273125, + -0.0017139794072136283, + -0.009923039004206657, + -0.0018354152562096715, + -0.02120615914463997, + 0.007896795868873596, + 0.012886072508990765, + 0.009735681116580963, + 0.013489781878888607, + -0.005193982273340225, + -0.0162515789270401, + 0.019166037440299988, + -0.009062579832971096, + 0.014794348739087582, + 0.00836172141134739, + 0.0037263440899550915, + 0.005565228872001171, + 0.012323997914791107, + 0.011192910373210907, + -0.005461141001433134, + -0.02797880582511425, + -0.007709437981247902, + -0.005055198445916176, + 0.0015847370959818363, + 0.0052321478724479675, + 0.015474389307200909, + -0.008514383807778358, + 0.008583775721490383, + 0.00037905314820818603, + -0.02607746794819832, + -0.005148877389729023, + 0.012275423854589462, + 0.0002452569315209985, + 0.009950796142220497, + 0.008014761842787266, + 0.009097275324165821, + 0.027465306222438812, + 0.008375599980354309, + 0.014176761731505394, + -0.023926321417093277, + 0.015918496996164322, + 0.001882254728116095, + 0.005027441773563623, + -0.004989276174455881, + 0.017597781494259834, + 0.0058081005699932575, + 0.003080999478697777, + 0.0027860840782523155, + -0.009950796142220497, + 0.011456599459052086, + 0.0004295791150070727, + -0.013163640163838863, + 0.0030740604270249605, + 0.0014520251424983144, + 0.013378754258155823, + -0.017250820994377136, + 0.0029751767870038748, + -0.007820464670658112, + 0.01845823973417282, + -0.01866641640663147, + 0.00023810089624021202, + -0.003407141426578164, + -0.014121247455477715, + 0.011900707148015499, + 0.038748424500226974, + 0.0059503535740077496, + -0.014364119619131088, + 0.00709531968459487, + 0.015516025014221668, + 0.0031295737717300653, + 0.011192910373210907, + 0.0034591853618621826, + -0.009062579832971096, + -0.001998486230149865, + -0.024703510105609894, + -0.0005846265703439713, + 0.029033562168478966, + 0.003872066969051957, + -0.0057040126994252205, + -0.026132982224225998, + 0.020581630989909172, + -0.021455969661474228, + 0.001609891653060913, + -0.005655438173562288, + 0.011983977630734444, + 0.009936917573213577, + 0.02765960432589054, + -0.00470823934301734, + 0.002728835679590702, + 0.003183352528139949, + -0.03999748080968857, + -0.019318699836730957, + -0.0032301920000463724, + -0.017847592011094093, + 0.005225208587944508, + 0.00228646257892251, + -0.005037850700318813, + 0.00024222103820648044, + -0.00010777426359709352, + 0.040746912360191345, + 0.004649255890399218, + -0.01291382871568203, + -0.019624024629592896, + 0.026951806619763374, + -0.0017061728285625577, + 0.00526337418705225, + 0.02112288773059845, + -0.009950796142220497, + -0.0008882160764187574, + -0.011720288544893265, + 0.021622510626912117, + 0.017347970977425575, + -0.012060308828949928, + 0.007182059809565544, + -0.020595509558916092, + -0.003301318734884262, + 0.0231074970215559, + 0.01410736981779337, + -0.012740349397063255, + -0.0031625349074602127, + 0.010429599322378635, + 0.012587687000632286, + 0.01826394349336624, + -0.0005108977202326059, + -0.005929536186158657, + -0.0033741802908480167, + 0.02567499689757824, + 0.013760410249233246, + -0.013899194076657295, + 0.005284191574901342, + 0.007404113654047251, + -0.017098158597946167, + 0.0025171905290335417, + 0.02309361845254898, + 0.006675499025732279, + 0.01659853756427765, + -0.010859829373657703, + 0.022247036918997765, + 0.0004909475683234632, + 0.0320868045091629, + -0.01038796454668045, + 0.009152788668870926, + -0.012108882889151573, + 0.006502019241452217, + -0.0005980712594464421, + 0.011907646432518959, + 0.0050239721313118935, + -0.01611279509961605, + -0.00021262106020003557, + -0.002822514856234193, + -0.01833333447575569, + -0.01380898430943489, + 0.0038269623182713985, + -0.02356548234820366, + 0.004479245748370886, + 0.010693288408219814, + -0.011838254518806934, + 0.010103457607328892, + 0.0009740885579958558, + -0.0281175896525383, + -0.02141433395445347, + 0.008764194324612617, + -0.001700101071037352, + -0.007067563012242317, + 0.003653482533991337, + -0.0013418655144050717, + 0.021469848230481148, + -0.008854404091835022, + 0.005974641069769859, + 0.0002923132851719856, + 0.01149823423475027, + 0.023648753762245178, + -0.0037124655209481716, + -0.012212971225380898, + -0.030837751924991608, + 0.006318130996078253, + 0.0004196040390525013, + 0.014905376359820366, + -0.014905376359820366, + -0.0033568323124200106, + -0.008923796005547047, + -0.0010599610395729542, + 0.019152158871293068, + -0.00037146342219784856, + -0.017583902925252914, + 0.0329195074737072, + 0.014711079187691212, + -0.003405406605452299, + 0.016667930409312248, + 0.0005035248468630016, + 0.012365633621811867, + 0.015751957893371582, + -0.004153104033321142, + 0.016834469512104988, + 0.01877744309604168, + 0.0034539808984845877, + 0.019846078008413315, + -0.005905249156057835, + -0.014475146308541298, + -0.002367998007684946, + 0.0038026750553399324, + 0.0012403798755258322, + 0.00017792511789593846, + 0.004513941705226898, + 0.002145943930372596, + 0.0016367810312658548, + 0.006092607043683529, + -0.000797139247879386, + 0.02363487519323826, + 0.013788166455924511, + -0.005103772971779108, + 0.022247036918997765, + 0.0033429539762437344, + 0.012629322707653046, + -0.014655564911663532, + 0.009700984694063663, + -0.005422975402325392, + 0.00836866069585085, + -0.015016403049230576, + -0.007431870326399803, + 0.0034279588144272566, + -0.011130457744002342, + 0.024412063881754875, + 0.006619985215365887, + 0.006991231814026833, + -0.021872321143746376, + 0.008604593575000763, + 0.022122131660580635, + 0.007640046067535877, + 0.01637648418545723, + 0.0025588255375623703, + -0.02073429338634014, + 0.011630079708993435, + 0.003016812028363347, + -0.0012186949606984854, + 0.014766592532396317, + 0.010068762116134167, + 0.021428212523460388, + 0.002628217451274395, + -0.02122003771364689, + -0.0030619166791439056, + -0.002940481062978506, + 0.03519556298851967, + -0.0011050656903535128, + -0.0062799653969705105, + 0.015460510738193989, + -0.006543654482811689, + 0.010873707942664623, + -0.012219910509884357, + 0.002468616236001253, + -0.006297313142567873, + 0.0044480194337666035, + -0.00013639841927215457, + 0.016778957098722458, + 0.012344815768301487, + 0.011366389691829681, + -0.009936917573213577, + 0.057178910821676254, + 0.0026004607789218426, + -0.005308479070663452, + 0.0020487953443080187, + 0.0005729167023673654, + -0.015280092135071754, + -0.009812012314796448, + -0.007730255369096994, + -0.004184330347925425, + 0.019221551716327667, + 0.011491295881569386, + 0.01292076800018549, + -0.01870805025100708, + 0.010353269055485725, + 0.045326776802539825, + 0.01901337504386902, + 0.02076205052435398, + -0.020331820473074913, + -0.004045546520501375, + -0.012386450543999672, + 0.007293086498975754, + 0.0038061446975916624, + -0.001875315560027957, + -0.014919253997504711, + -0.0022222748957574368, + -0.0008890834869816899, + -0.007744133938103914, + -0.0035146987065672874, + 0.009055640548467636, + 0.017930861562490463, + 0.0025622951798141003, + 0.03944234549999237, + -0.026785265654325485, + 0.0022326838225126266, + -0.009104214608669281, + 0.00571095198392868, + 0.01598788984119892, + -0.0007017254247330129, + -0.015307849273085594, + -0.015557659789919853, + 0.015932375565171242, + -0.009312390349805355, + -0.00938178226351738, + -0.017431240528821945, + -0.04146858677268028, + 0.0038061446975916624, + -0.013579990714788437, + 0.020026497542858124, + 0.015252334997057915, + 0.015640929341316223, + 0.021497605368494987, + -0.016806714236736298, + 0.031448401510715485, + -0.00924299843609333, + -0.022663388401269913, + 0.002355854259803891, + 0.005079485476016998, + 0.011095761321485043, + -0.010714106261730194, + -0.009444234892725945, + -0.031198589131236076, + -0.020068131387233734, + 0.002074817195534706, + 0.01897173933684826, + -0.005287661217153072, + 0.011179031804203987, + -0.00952056609094143, + 0.005318887531757355, + 0.015724200755357742, + -0.016973253339529037, + -0.0036049082409590483, + -0.022816050797700882, + -0.012511355802416801, + 0.024342671036720276, + 0.005946884397417307, + -0.002366263186559081, + 0.0185137540102005, + -0.0207759290933609, + 0.0327807255089283, + 0.008028640411794186, + 0.03525107726454735, + -0.003695117775350809, + 0.006914901081472635, + 0.01293464656919241, + 0.009569140151143074, + 0.010714106261730194, + 0.000580723281018436, + -0.014558416791260242, + -0.01626545749604702, + 0.009166667237877846, + -0.004052485805004835, + -0.004583333618938923, + -0.0077927084639668465, + -0.0014398815110325813, + -0.008014761842787266, + -0.031226346269249916, + 0.010235302150249481, + -0.011054126545786858, + -0.008902978152036667, + -0.008562957867980003, + 0.02588317170739174, + -0.004930293187499046, + 0.0076816813088953495, + -0.026146860793232918, + -0.00698429299518466, + 0.01662629470229149, + 0.00039444948197342455, + -0.003879006253555417, + 0.015654807910323143, + 0.014308606274425983, + 0.01055450551211834, + -0.011997856199741364, + -0.01394776813685894, + -0.0074665662832558155, + -0.013670200482010841, + 0.001590808853507042, + 0.022913198918104172, + -0.023662632331252098, + -0.00320243532769382, + -0.019998740404844284, + 0.022413577884435654, + -0.026313401758670807, + -0.015765834599733353, + -0.01627933606505394, + 0.004812326747924089, + 0.0047706919722259045, + 0.00019288774637971073, + -0.017903104424476624, + 0.008639289066195488, + 0.017819834873080254, + -0.007841282524168491, + -0.015391118824481964, + -0.0026698526926338673, + -0.007702498696744442, + -0.016917740926146507, + 0.005117651075124741, + 0.002267379779368639, + -0.02324628084897995, + -0.011900707148015499, + -0.0065332455560564995, + 0.01664017327129841, + -0.028978049755096436, + -0.012004795484244823, + -0.01149823423475027, + 0.007494322955608368, + -0.020123645663261414, + -1.0781492164824158e-5, + 0.0034973507281392813, + 0.010436538606882095, + -0.0072583905421197414, + 0.004264131188392639, + -0.009999370202422142, + -0.022677266970276833, + -0.01419063936918974, + -0.031198589131236076, + -0.02525864541530609, + 0.0033221363555639982, + 0.011824376881122589, + -0.013406511396169662, + -0.01600176841020584, + -0.00809803232550621, + 0.0013618156081065536, + -0.024620238691568375, + -0.005100303329527378, + -0.028450671583414078, + -0.024273280054330826, + 0.0010200606193393469, + -0.02298259176313877, + 0.00767474202439189, + -0.0035129638854414225, + 0.019193794578313828, + -0.005686664488166571, + 0.0033394843339920044, + 0.0011493030469864607, + 0.00042610953096300364, + -0.0020158342085778713, + -0.008403357118368149, + -0.01883295737206936, + 0.021941712126135826, + -0.010894524864852428, + -0.01418370008468628, + 0.004465367645025253, + 0.008778072893619537, + -0.008306208066642284, + -0.03805450722575188, + -0.0008496168302372098, + 0.002154617803171277, + -0.01605728082358837, + -0.015252334997057915, + 0.01268483605235815, + -0.008882161229848862, + 0.011907646432518959, + 0.020082009956240654, + 0.005749117117375135, + 0.007480444852262735, + 0.004222495947033167, + -0.010006309486925602, + -0.010242241434752941, + 0.0049129449762403965, + 0.008923796005547047, + -0.0015222843503579497, + -0.014891497790813446, + -0.006116894539445639, + -0.05290437117218971, + -0.03172596916556358, + 0.022455213591456413, + 0.011054126545786858, + -0.006127303000539541, + -0.008417234756052494, + 0.00949974823743105, + -0.029338886961340904, + 0.012011734768748283, + -0.012275423854589462, + -0.015682565048336983, + 0.01522457879036665, + 0.015585416927933693, + 0.01265707891434431, + -0.009333208203315735, + 0.010845950804650784, + -0.019568510353565216, + 0.003851249348372221, + 0.031170833855867386, + 0.007848221808671951, + 0.012983220629394054, + 0.003924110904335976, + 0.009666289202868938, + 0.0011727227829396725, + 0.015016403049230576, + 0.006099546328186989, + -0.01619606465101242, + -0.0006939187878742814, + 0.012074187397956848, + -0.0013956441543996334, + -0.007716377265751362, + 0.002265644958242774, + -0.014891497790813446, + -0.015904618427157402, + -0.013573052361607552, + 0.01836109161376953, + 0.006602637469768524, + 0.00039336521876975894, + 0.007695559412240982, + 0.00048574316315352917, + 0.014863740652799606, + -0.027007320895791054, + 0.020123645663261414, + -0.02535579353570938, + -0.0023974895011633635, + 0.022510726004838943, + 0.017930861562490463, + 0.015793591737747192, + -0.001051287050358951, + 0.01054756622761488, + 0.008493565954267979, + -0.03341912850737572, + -0.021997226402163506, + 0.04371688514947891, + -9.085999772651121e-5, + 0.010096518322825432, + -0.00695653585717082, + -0.01178274117410183, + -0.005568698514252901, + -0.00015179473848547786, + 0.011463538743555546, + 0.011317815631628036, + -0.021525360643863678, + -0.01654302515089512, + 0.02531415782868862, + -0.011130457744002342, + 0.005669316742569208, + -0.0016766813350841403, + -0.0012022143928334117, + 0.0029040502849966288, + 0.012601565569639206, + 0.007154303137212992, + 0.017500631511211395, + 0.011435781605541706, + 0.010311633348464966, + 0.013004038482904434, + -0.011324754916131496, + 0.006089137401431799, + 0.028339644894003868, + -0.014891497790813446, + -0.017042646184563637, + 0.017542267218232155, + 0.0019863424822688103, + -0.006377113983035088, + -0.011283120140433311, + -0.0017651559319347143, + -0.00709531968459487, + -0.006685907952487469, + -0.019055010750889778, + -0.000866964808665216, + 0.011713349260389805, + -0.001733929617330432, + 0.013649382628500462, + 0.006571411155164242, + -0.018125159665942192, + -0.022149888798594475, + -0.00010734056559158489, + -0.0009333207854069769, + -0.0077857691794633865, + 0.012428086251020432, + -0.0281869824975729, + -0.007882917299866676, + 0.01854151114821434, + -0.002348915208131075, + -0.008424174040555954, + -0.011054126545786858, + -0.0037402224261313677, + -0.00797312706708908, + -0.010922282002866268, + 0.000609781127423048, + 0.01876356452703476, + 0.014613930135965347, + 0.013607747852802277, + -0.011352512054145336, + 0.017805956304073334, + -0.012233789078891277, + -0.001797249773517251, + 0.0005959027912467718, + -0.00582197867333889, + 0.0007056287140585482, + 0.01659853756427765, + 0.008146606385707855, + -0.001792045310139656, + 0.0013071695575490594, + -0.01863865926861763, + 0.005412566941231489, + 0.01507191639393568, + -0.006727542728185654, + 0.0018232716247439384, + -0.012726470828056335, + -0.008562957867980003, + -0.01064471434801817, + 0.011581504717469215, + -0.006345887668430805, + 0.009173606522381306, + 0.020054252818226814, + 0.005457671359181404, + 0.012448903173208237, + 0.013191396370530128, + -0.008320086635649204, + 0.021372700110077858, + 0.0007932359585538507, + 0.01895786263048649, + -0.019179916009306908, + 0.011074944399297237, + 0.024745143949985504, + -0.010721045546233654, + 0.01831945590674877, + 0.011408025398850441, + -0.001652394188567996, + -0.002538008149713278, + 0.02775675244629383, + 0.004513941705226898, + 0.00376450945623219, + -0.013059551827609539, + 0.015654807910323143, + -0.010471235029399395, + -0.012372571974992752, + 0.0036222562193870544, + -0.009971613064408302, + 0.009069519117474556, + -0.007411052938550711, + -0.0038061446975916624, + -0.026604847982525826, + 0.010332451201975346, + -0.036194805055856705, + -0.01054756622761488, + -0.0009229120332747698, + 0.031698212027549744, + -0.013635504990816116, + -0.010922282002866268, + -0.0009203098015859723, + -0.0028901719488203526, + -0.0005577372503466904, + -0.0034505112562328577, + 0.00766086345538497, + -0.016806714236736298, + -0.006762238685041666, + -0.011990916915237904, + -0.014253091998398304, + 0.012233789078891277, + -0.005731769371777773, + 0.010679410770535469, + 0.00827151257544756, + -0.006123833358287811, + -0.015585416927933693, + 0.011172092519700527, + 0.005311948712915182, + -0.024398185312747955, + 0.026507697999477386, + -0.007688620593398809, + 0.008146606385707855, + -0.004278009291738272, + -0.01611279509961605, + -0.0019221551483497024, + -0.009916099719703197, + -0.029033562168478966, + -0.006109955254942179, + -0.00031963633955456316, + 0.047325264662504196, + 0.008930735290050507, + 0.010131214745342731, + -0.020415091887116432, + -0.009076458401978016, + 0.01831945590674877, + -0.011088822968304157, + -0.013128943741321564, + -0.00825069472193718, + 0.015543781220912933, + -0.0009628123370930552, + 0.00019516467000357807, + 0.005152347031980753, + 0.007064093369990587, + 0.02570275217294693, + -0.0032735620625317097, + -0.006692846771329641, + -0.019138280302286148, + 0.008299268782138824, + -0.008868282660841942, + -0.00812578946352005, + -0.019637903198599815, + 0.014697200618684292, + -0.02553621307015419, + 0.00799394492059946, + -0.008021701127290726, + -0.0075706541538238525, + -0.00825763400644064, + -0.01605728082358837, + 0.002255236031487584, + 0.0003495615965221077, + 0.0070051103830337524, + 0.017681051045656204, + 0.0231074970215559, + 0.04166288673877716, + 0.008188242092728615, + -0.001955116167664528, + 0.009742620401084423, + -0.019859956577420235, + 0.009916099719703197, + -0.0016723442822694778, + -0.020317941904067993, + 0.022136010229587555, + -0.0028658846858888865, + 0.019277064129710197, + 0.0055895159021019936, + 0.020526118576526642, + -0.005065607372671366, + 0.024287158623337746, + -0.015502146445214748, + -0.010991673916578293, + -0.020359577611088753, + -0.011088822968304157, + 0.002468616236001253, + -0.006724073085933924, + 0.008507444523274899, + 0.004066364374011755, + 0.012719531543552876, + -0.0015647868858650327, + -0.019152158871293068, + 0.0002890605537686497, + 0.033585671335458755, + 0.006300782784819603, + 0.0008400754304602742, + -0.0015526433708146214, + -0.015307849273085594, + 0.012247666716575623, + 0.0015526433708146214, + -0.024134496226906776, + 0.016848348081111908, + 0.004954580217599869, + 0.021761294454336166, + -0.03316931799054146, + 0.011935403570532799, + -0.003507759654894471, + 0.007515140809118748, + 0.007438809610903263, + 0.005721360445022583, + -0.01608503796160221, + 0.010721045546233654, + -0.012990159913897514, + 0.00912503246217966, + -0.01640424132347107, + -0.008889099583029747, + 0.007369417697191238, + -0.0058150398544967175, + 0.0003467425412964076, + -0.0029560942202806473, + 0.0017651559319347143, + -0.02752082049846649, + 0.0069773537106812, + -0.013170579448342323, + 0.010235302150249481, + -0.01886071264743805, + -0.0077927084639668465, + -0.002897111000493169, + -0.02552233450114727, + 0.013753470964729786, + -0.006904492154717445, + 0.02320464514195919, + 0.017708808183670044, + 0.014280849136412144, + -0.0017720952164381742, + 0.011727227829396725, + 0.006581820081919432, + -0.006845509167760611, + 0.003013342386111617, + -0.006828160956501961, + 0.007903735153377056, + 0.011727227829396725, + -0.02813146822154522, + -0.01605728082358837, + 0.0009749559103511274, + 0.006023215129971504, + 0.01051286980509758, + 0.005093364045023918, + 0.00526684382930398, + -0.0031261041294783354, + 0.03247540071606636, + 0.01267095748335123, + -0.02073429338634014, + 0.003223252948373556, + 0.0006492477841675282, + -0.0009844973683357239, + -0.009451174177229404, + -0.00030467374017462134, + -0.0208453219383955, + 0.022038862109184265, + 0.0007797912694513798, + 0.011394146829843521, + 0.012261545285582542, + 0.029394401237368584, + 0.006470792926847935, + 0.008521323092281818, + 0.0005269445828162134, + -0.0036291952710598707, + 0.01829170063138008, + 0.010054883547127247, + -0.01534948404878378, + 0.0013323241146281362, + 0.0189994964748621, + -0.0164597537368536, + -0.01026999857276678, + 0.008556018583476543, + 0.013031795620918274, + -0.01627933606505394, + 0.014114308170974255, + 0.005572168156504631, + -0.005769934970885515, + -0.01829170063138008, + -0.001212623086757958, + -0.010332451201975346, + 0.006814282853156328, + 0.022344185039401054, + 0.002891906537115574, + 0.0015595825389027596, + 0.0021181872580200434, + -0.0013861028710380197, + 0.017417361959815025, + -0.005926066543906927, + -0.014586172997951508, + 0.019859956577420235, + -0.003285705577582121, + -0.004021259490400553, + -0.017681051045656204, + 0.02099798247218132, + 0.0025813779793679714, + 0.012400329113006592, + -0.0003771015035454184, + 0.018014132976531982, + -0.011047187261283398, + -0.0024720856454223394, + -0.017347970977425575, + -0.004826205316931009, + -0.010235302150249481, + 0.008056397549808025, + -0.00206787814386189, + -0.0016055546002462506, + 0.006581820081919432, + 0.018069645389914513, + -0.009555261582136154, + -0.0052390871569514275, + 0.01522457879036665, + -0.01901337504386902, + -0.004271070472896099, + 0.017001010477542877, + -0.0066338637843728065, + -0.009798133745789528, + 0.007688620593398809, + 0.014835984446108341, + 0.022385820746421814, + 0.010249180719256401, + 0.008826646953821182, + 0.022427456453442574, + 0.016862226650118828, + 0.0026993441861122847, + 0.022399699315428734, + -0.02092859148979187, + 0.031365130096673965, + 0.002628217451274395, + 0.02326015941798687, + 0.04005299508571625, + 0.01409349124878645, + -0.004531289916485548, + -0.00640834029763937, + -0.001124148489907384, + 0.0033412191551178694, + -0.003906762693077326, + 0.003299583913758397, + -0.0020193038508296013, + -0.012379511259496212, + -0.004670073743909597, + -0.005447262432426214, + -0.009923039004206657, + -0.045326776802539825, + -0.005395218729972839, + 0.0006253943429328501, + 0.003677769796922803, + -0.01509967353194952, + 0.012435025535523891, + 0.015585416927933693, + 0.004010850563645363, + 0.00145809690002352, + 0.005759526044130325, + 0.015696443617343903, + 0.013614687137305737, + 0.005905249156057835, + 0.0036187865771353245, + -0.009700984694063663, + -0.004454958718270063, + -0.00821599829941988, + -0.014919253997504711, + -0.006026684772223234, + 0.012004795484244823, + 0.011630079708993435, + 0.010096518322825432, + 0.008687863126397133, + -0.003509494476020336, + 0.03022710420191288, + -0.03255867213010788, + -0.01868029497563839, + -0.010235302150249481, + 0.009541383944451809, + -0.005523593630641699, + 0.0165291465818882, + 0.006706725340336561, + -0.010956978425383568, + -0.0035563339479267597, + -0.0036812392063438892, + 0.0005750852287746966, + 0.02117840200662613, + -0.009659349918365479, + -0.024606360122561455, + 0.0014910580357536674, + 0.006498549599200487, + -0.010748802684247494, + -0.00941647868603468, + 0.0055964551866054535, + 0.00021197051682975143, + 0.010110396891832352, + -0.03697199374437332, + -0.009617715142667294, + 0.01637648418545723, + -0.021594753488898277, + -0.016792835667729378, + 0.02083144336938858, + 0.01866641640663147, + 0.008791951462626457, + 0.002935276599600911, + 0.007175120525062084, + 0.0068975528702139854, + 0.003386323805898428, + -0.00262995227240026, + -0.008618471212685108, + 0.004166982602328062, + 0.016820592805743217, + -0.018194550648331642, + -0.014135126024484634, + 0.03763815760612488, + 0.0037818574346601963, + 0.007869039662182331, + 0.024870051071047783, + 0.007875978946685791, + 0.005717890802770853, + 0.010158970952033997, + 0.005464610643684864, + 0.012851376086473465, + 0.0038061446975916624, + 0.011977038346230984, + 0.006821221671998501, + -0.003570212284103036, + 0.0014372792793437839, + -0.03514004871249199, + -0.011470478028059006, + -0.004180860705673695, + 0.02066490240395069, + 0.009298511780798435, + -0.0033568323124200106, + -0.010977795347571373, + -0.004042076878249645, + -0.0051280600018799305, + 0.03125410154461861, + 0.015585416927933693, + -0.014849862083792686, + -0.033335860818624496, + -0.012240727432072163, + 0.00836172141134739, + 0.01405185554176569, + -0.0004321813175920397, + -0.0013297218829393387, + 0.012101943604648113, + -0.022524604573845863, + 0.012518295086920261, + 0.023385064676404, + 0.01533560547977686, + -0.004094121046364307, + -0.01863865926861763, + -0.006137711927294731, + -0.01296240370720625, + 0.012261545285582542, + -0.008909917436540127, + -0.0016671399353072047, + 0.004857431631535292, + 0.023856928572058678, + 0.010263059288263321, + -0.004219026304781437, + 0.002538008149713278, + -0.0013756940606981516, + 0.008181302808225155, + 0.006259147543460131, + -0.02109513245522976, + 0.015016403049230576, + 0.007334721740335226, + -0.005076016299426556, + 0.020220793783664703, + -0.009097275324165821, + 0.01891622692346573, + 0.019485240802168846, + 0.01178274117410183, + 0.006318130996078253, + 0.007806586567312479, + 0.002432185458019376, + 0.004250252619385719, + -0.00400044210255146, + -0.010013248771429062, + -0.003041099291294813, + 0.029782995581626892, + -0.005388279445469379, + 0.006942657753825188, + -0.010894524864852428, + -0.006467323284596205, + -0.031559426337480545, + -0.000652283662930131, + -0.0001388921809848398, + -0.005648498889058828, + -0.021941712126135826, + 0.0042988271452486515, + 0.00821599829941988, + 0.0001616614026715979, + 0.015557659789919853, + -0.005794222000986338, + -0.007869039662182331, + -0.0018943983595818281, + 0.011990916915237904, + 0.0005278119933791459, + 0.014780471101403236, + 0.00377491838298738, + 0.005936475470662117, + -0.009957734495401382, + 0.004101060330867767, + 0.017930861562490463, + -6.4729611040093e-5, + 0.013260788284242153, + -0.005225208587944508, + -0.004472306929528713, + -0.0009272490278817713, + -0.003006403334438801, + -0.006332009099423885, + -0.005037850700318813, + -0.007522080093622208, + -0.00836866069585085, + 0.00696000549942255, + 0.005388279445469379, + 0.007223694585263729, + 0.013691018335521221, + -0.0003463088651187718, + -0.031115319579839706, + -0.007154303137212992, + 0.024342671036720276, + 0.005651968531310558, + -0.011324754916131496, + 0.01615443080663681, + -0.015016403049230576, + 0.003584090620279312, + 0.002364528365433216, + -0.003261418314650655, + -0.0014242683537304401, + -0.0033134622499346733, + -0.01852763257920742, + 0.0009263816173188388, + 0.0036083778832107782, + 0.02095634862780571, + 0.01154680922627449, + -0.012518295086920261, + -0.005461141001433134, + -0.0033550974912941456, + -0.00412881700322032, + 0.01852763257920742, + 0.012559930793941021, + 0.012011734768748283, + -0.008056397549808025, + 0.006123833358287811, + -0.007563714869320393, + 0.0005230412934906781, + 0.02092859148979187, + 0.00039596742135472596, + 0.008396417833864689, + -0.012740349397063255, + -0.00639099208638072, + -0.01669568568468094, + -0.005471549928188324, + -0.012199092656373978, + -0.011414964683353901, + -0.002728835679590702, + -0.03316931799054146, + 0.02066490240395069, + -0.002250031800940633, + -0.006921839900314808, + 0.007424931041896343, + -0.006356296129524708, + -0.003277031471952796, + -0.015446633100509644, + -0.002459942130371928, + 0.0007919348427094519, + -0.0012525235069915652, + 0.004732526373118162, + -0.011963160708546638, + -0.013094248250126839, + -0.0030306903645396233, + 0.022718902677297592, + -0.011852133087813854, + 2.272855090268422e-5, + -0.02103961817920208, + 0.008188242092728615, + 0.009208302944898605, + 0.0010105192195624113, + 0.01586298458278179, + -0.018194550648331642, + -0.00514193857088685, + 0.0002946986351162195, + -0.021053496748209, + -0.02356548234820366, + 0.008722559548914433, + 0.011720288544893265, + -0.012275423854589462, + -0.003261418314650655, + 0.0016203004634007812, + 0.012344815768301487, + -0.0027461836580187082, + 0.0207759290933609, + 0.01418370008468628, + 0.01619606465101242, + 0.006075259298086166, + 0.00320243532769382, + 0.027007320895791054, + 0.010103457607328892, + -0.008410296402871609, + 0.019568510353565216, + 0.031476158648729324, + -0.00835478212684393, + -0.004631908144801855, + 0.000698255782481283, + -0.012101943604648113, + 0.021886199712753296, + -0.008646228350698948, + -0.019693415611982346, + -0.003747161477804184, + -0.017070403322577477, + 0.0039032932836562395, + 0.022482968866825104, + -0.003761040046811104, + -0.0014823840465396643, + 0.01267095748335123, + -0.03022710420191288, + 0.020026497542858124, + -0.0067448909394443035, + -0.013545295223593712, + -0.0024842293933033943, + 0.007341661024838686, + 0.022205401211977005, + 0.007376356981694698, + -0.006540184840559959, + -0.006099546328186989, + 0.013531416654586792, + 0.004749874118715525, + 0.010006309486925602, + 0.0011467008152976632, + -0.01521070022135973, + 6.256112101254985e-5, + 0.009201363660395145, + -0.007688620593398809, + -0.0020869607105851173, + 0.014461267739534378, + -0.0006496814894489944, + -0.002269114600494504, + 0.012261545285582542, + 5.0715705583570525e-5, + -0.004361279774457216, + -0.0028676195070147514, + 0.0045486376620829105, + -0.0038894149474799633, + 0.0062799653969705105, + -0.009020944125950336, + 0.0025015773717314005, + -0.009929978288710117, + -0.01293464656919241, + -0.0019360334845259786, + 0.0006119496538303792, + -0.014350241050124168, + -0.0026039304211735725, + 0.004930293187499046, + 0.011935403570532799, + 0.001235175528563559, + 0.004434141330420971, + -0.011956221424043179, + 0.005974641069769859, + 0.010589201003313065, + 0.0024720856454223394, + 0.03952561691403389, + -0.011949282139539719, + 0.008493565954267979, + 0.021872321143746376, + -0.007022458128631115, + 0.009791194461286068, + 0.015432754531502724, + -0.0027756751514971256, + 0.012865254655480385, + 0.012386450543999672, + -0.004711708519607782, + 0.004420262761414051, + 0.003200700506567955, + 0.0009116358123719692, + -0.001878785202279687, + 0.0024026939645409584, + -0.043078478425741196, + -0.00822293758392334, + 0.011831316165626049, + 0.011206788942217827, + -0.01038102526217699, + 0.0016367810312658548 + ], + "26310357-9e50-45a5-b84a-15dbc3fc6134": [ + -0.025843089446425438, + -0.03067092038691044, + -0.010962014086544514, + 0.03947461023926735, + -0.026822855696082115, + -0.027078446000814438, + 0.004256300162523985, + 0.03779906779527664, + 0.004203051794320345, + 0.03666310757398605, + 0.019581111147999763, + -0.01116790622472763, + -0.005498756188899279, + -0.020333683118224144, + -0.00028820548322983086, + 0.03265884891152382, + -0.06128504127264023, + 0.01023073960095644, + 0.010933615267276764, + -0.028611991554498672, + 0.046205174177885056, + -0.004742633085697889, + -0.02094426192343235, + 0.014029106125235558, + 0.02459353394806385, + -0.0341355986893177, + 0.005633651744574308, + -0.0013773514656350017, + -0.04012778773903847, + 0.006357826292514801, + 0.003787716617807746, + -0.021924028173089027, + 0.021512242034077644, + -0.004185302648693323, + 0.024565134197473526, + -0.03973020240664482, + 0.02750443108379841, + 0.03592473641037941, + -0.010301737114787102, + -0.008945684880018234, + -0.033851608633995056, + 0.06293218582868576, + -0.00958466250449419, + -0.01197727769613266, + -0.02002129517495632, + 0.005601702723652124, + -0.052765343338251114, + -0.010741922073066235, + -0.0028186007402837276, + 0.028555193915963173, + 0.002516861306503415, + -0.005264464765787125, + -0.019453315064311028, + 0.027050048112869263, + 0.019368117675185204, + -0.04640396684408188, + 0.012232868932187557, + 0.04759672284126282, + 0.021498043090105057, + -0.07145188003778458, + -0.0004022452048957348, + -0.01804756373167038, + -0.0030475675594061613, + -0.020205888897180557, + -0.020433079451322556, + 0.007547033950686455, + -0.045040812343358994, + 0.00020478341320995241, + -0.02582889050245285, + 0.006766061764210463, + 0.022208018228411674, + 0.04004259034991264, + 0.002964145503938198, + 0.01162939053028822, + 0.039616603404283524, + -0.03007454052567482, + 0.08746892213821411, + 0.009918350726366043, + 0.0028186007402837276, + -0.02717784233391285, + 0.010344335809350014, + 0.001980830216780305, + -0.006134184077382088, + 0.004572238773107529, + 0.045353204011917114, + -0.005846644286066294, + -0.0366063117980957, + -0.05086261034011841, + 0.03368121385574341, + -0.036805104464292526, + 0.009052181616425514, + 0.037401482462882996, + -0.006961304694414139, + -0.010053246282041073, + -0.0006438585696741939, + 0.025843089446425438, + 0.02378416247665882, + 0.002665956038981676, + 0.002841674955561757, + -0.03098330833017826, + -0.010592826642096043, + 0.01278664916753769, + 0.03092651069164276, + -0.023585369810461998, + -0.0034611281007528305, + 0.019694706425070763, + 0.02158324047923088, + -0.0012007452314719558, + -0.013972307555377483, + 0.033056434243917465, + -0.005921191535890102, + -0.06117144599556923, + -0.005804045591503382, + -0.0005484556895680726, + -0.05552004277706146, + -0.03572594001889229, + -0.00974795687943697, + -0.014781679026782513, + -0.02169683575630188, + -0.01289314590394497, + 0.040837761014699936, + 0.014107203111052513, + -0.011515794321894646, + 0.003823215374723077, + -0.02057507447898388, + 0.011395098641514778, + 0.007774226367473602, + -0.014433791860938072, + 0.021824631839990616, + 0.005981539376080036, + -0.03899182751774788, + 0.011416397988796234, + 0.017039399594068527, + 0.004625487141311169, + 0.012928644195199013, + -0.004281149245798588, + 0.030415328219532967, + 0.08252749592065811, + -0.01804756373167038, + 0.028313802555203438, + -0.04844869300723076, + -0.04308128356933594, + -0.01380191370844841, + -0.012225769460201263, + -0.010763220489025116, + -0.011558393016457558, + -0.039872195571660995, + 0.0368335023522377, + -0.02959175780415535, + 0.017408587038517, + -0.04171812906861305, + -0.018232157453894615, + 0.003919061738997698, + -0.006290378514677286, + 0.03328362852334976, + -0.019353918731212616, + 0.020049693062901497, + 0.02362796850502491, + -0.0002691248955670744, + 0.05100460350513458, + 0.03254525363445282, + -0.008654595352709293, + 0.02125665172934532, + 0.02067447267472744, + 0.06242100149393082, + -0.003855164162814617, + 0.0198225025087595, + 0.012261267751455307, + 0.00952786486595869, + 0.018643943592905998, + 0.01702520065009594, + -0.05784876272082329, + 0.03192047402262688, + -0.027291439473628998, + 0.028824985027313232, + -0.006272628903388977, + 0.05702519044280052, + 0.025260910391807556, + 0.011018811725080013, + -0.048477090895175934, + -0.008306707255542278, + -0.022946391254663467, + -0.006986153777688742, + 0.005026623141020536, + 0.004561589099466801, + 0.022577205672860146, + 0.03887823224067688, + 0.017791973426938057, + -0.019524311646819115, + -0.027845218777656555, + 0.00545260775834322, + -0.0007494673482142389, + -0.006585018243640661, + -0.022250616922974586, + -0.04254170134663582, + -0.02121405303478241, + 0.009953849017620087, + -0.004877528175711632, + -0.008796590380370617, + 0.02330137975513935, + -0.024423139169812202, + -0.04634716734290123, + -0.035896334797143936, + 0.033596016466617584, + -0.022761797532439232, + 0.0019329069182276726, + -0.012389063835144043, + 0.02631167322397232, + 0.058132752776145935, + -0.04864748567342758, + 0.014597086235880852, + -0.056514009833335876, + 0.02561589702963829, + 0.01820375956594944, + -0.017479583621025085, + 0.023997154086828232, + 0.007610931992530823, + 0.027078446000814438, + 0.02808661013841629, + -0.03640751913189888, + 0.016996800899505615, + -0.02455093525350094, + 0.009243874810636044, + -0.032147668302059174, + -0.043791256844997406, + -0.004774581640958786, + -0.03183528035879135, + 0.040354978293180466, + -0.05370250716805458, + -0.0035498749930411577, + 0.05026622861623764, + -0.014185300096869469, + 0.01949591375887394, + -0.02673765830695629, + 0.012488460168242455, + 0.011430596932768822, + 0.013581821694970131, + 0.02856939285993576, + -0.013617319986224174, + -0.011182106100022793, + 0.0011723461793735623, + 0.016258427873253822, + -0.006879657506942749, + -0.02916577272117138, + 0.003972310107201338, + 0.00303514301776886, + 0.03121050074696541, + 0.058842726051807404, + 0.008470001630485058, + -0.00031682633562013507, + 0.05151578411459923, + 0.014043305069208145, + 0.010145542211830616, + -0.01042243279516697, + -0.02947816252708435, + 0.03777066990733147, + 0.022108621895313263, + -0.007092650048434734, + 0.0011075609363615513, + -0.015818241983652115, + -0.02131344936788082, + 0.002964145503938198, + -0.004838479682803154, + 0.04913026839494705, + 0.04489881917834282, + -0.045892782509326935, + 0.02374156378209591, + 0.032034073024988174, + -0.00449769152328372, + 0.01312743779271841, + 0.0022719199769198895, + 0.0030333681497722864, + -0.0005511181079782546, + 0.028313802555203438, + -0.020546676591038704, + 0.004405394662171602, + 0.010855517350137234, + -0.00275292806327343, + -0.005970889702439308, + -0.01345402654260397, + 0.01498047262430191, + 0.012921544723212719, + 0.017110398039221764, + -0.021285049617290497, + -0.01124600414186716, + 0.037571877241134644, + -0.016840606927871704, + -0.025473902001976967, + -0.030954910442233086, + -0.012658854015171528, + 0.0019684056751430035, + 0.005665600299835205, + -0.011451896280050278, + 0.004863328766077757, + 0.004731983412057161, + -0.005630101542919874, + -0.019424915313720703, + 0.010536029003560543, + -0.014597086235880852, + -0.018246356397867203, + -0.02893858030438423, + 0.025757892057299614, + 0.004330847412347794, + -0.042939286679029465, + 0.019041528925299644, + -0.015704646706581116, + 0.05444088205695152, + 0.039985790848731995, + -0.028186006471514702, + 0.004799430724233389, + -0.005385160446166992, + -0.03754347935318947, + -0.02227901481091976, + -0.02544550411403179, + 0.0012983668129891157, + 0.019581111147999763, + -0.02947816252708435, + 0.0003283634432591498, + -0.019637908786535263, + -0.003979410044848919, + -0.021938227117061615, + 0.004753282759338617, + -0.03785586729645729, + 0.027532830834388733, + 0.04949945583939552, + -0.025956686586141586, + 0.041377343237400055, + -0.0006181219941936433, + -0.010294637642800808, + 0.0038267651107162237, + -0.015548452734947205, + -0.03626552224159241, + -0.015449055470526218, + 0.003407879965379834, + -0.04231451079249382, + -0.04984024539589882, + -0.03689030185341835, + -0.0786084309220314, + -0.015221863985061646, + -0.015931839123368263, + -0.027561228722333908, + 0.00031771379872225225, + -0.01853034645318985, + 0.0019843801856040955, + -0.031011708080768585, + -0.01578984409570694, + -0.02046147920191288, + 0.007539934478700161, + 0.03566914424300194, + -0.0022062472999095917, + 0.0008692756528034806, + -0.011671989224851131, + 0.019481712952256203, + 0.009066380560398102, + 0.036549512296915054, + -0.004224351141601801, + 0.020915864035487175, + -0.009435568004846573, + 0.026439469307661057, + -0.021199854090809822, + -0.006652465555816889, + -0.04370605945587158, + 0.021611638367176056, + -0.010415333323180676, + 0.016996800899505615, + -0.025232510641217232, + 0.004093005787581205, + -0.009989348240196705, + -0.040837761014699936, + 0.017436984926462173, + 0.01563365012407303, + 0.006098685320466757, + -0.03285764157772064, + -0.027362436056137085, + -0.007909120991826057, + -0.028015613555908203, + 0.06406814604997635, + -0.017948167398571968, + -0.012609155848622322, + 0.010110043920576572, + -0.027163643389940262, + -0.03731628507375717, + -0.018061764538288116, + -0.005985089112073183, + 0.02749023213982582, + -0.01071352232247591, + 0.004437343683093786, + -0.014107203111052513, + -0.008200211450457573, + -0.005992189049720764, + -0.03544194996356964, + -0.0055768536403775215, + -0.0014075253857299685, + 0.0008439827943220735, + -0.01396520808339119, + -0.006180332507938147, + 0.02540290541946888, + -0.013915509916841984, + 0.02922257035970688, + 0.011295702308416367, + -0.028285402804613113, + -0.010883917100727558, + -0.010379834100604057, + -0.012261267751455307, + 0.016982601955533028, + -0.005764997098594904, + -0.015605250373482704, + 0.0008018279913812876, + 0.03277244418859482, + 0.0014243873301893473, + 0.01500887144356966, + -0.03416399657726288, + -0.008427402935922146, + 0.003031593281775713, + 0.04228610917925835, + 0.008100815117359161, + -0.010883917100727558, + 0.024849124252796173, + -0.04762512072920799, + 0.003855164162814617, + 0.024721330031752586, + 0.041860125958919525, + 0.03007454052567482, + 0.024621933698654175, + 0.006109334994107485, + 0.025218311697244644, + -0.015775645151734352, + 0.008498400449752808, + -0.007252394687384367, + 0.00542420893907547, + 0.01208377443253994, + 0.019723106175661087, + 0.012602056376636028, + -0.0064714220352470875, + -0.022761797532439232, + -0.024735528975725174, + -0.001284167286939919, + -0.015406457707285881, + 0.01777777448296547, + -0.01686900667846203, + -0.0015788068994879723, + 0.02077386900782585, + 0.0011652464745566249, + 0.0017385513056069613, + -0.05310612916946411, + -5.080758637632243e-5, + -0.04418884217739105, + 0.02175363339483738, + -0.03169328346848488, + -0.023400776088237762, + 0.02668086066842079, + 0.061455436050891876, + -0.019907698035240173, + -0.008753991685807705, + -0.0019151575397700071, + -0.0016586791025474668, + 0.03856584057211876, + -0.0035214759409427643, + 0.05611642450094223, + -0.048477090895175934, + -0.019297121092677116, + -0.012807948514819145, + -0.0011501595145091414, + -0.009052181616425514, + 0.012325165793299675, + -0.04992544278502464, + 0.027731623500585556, + 0.00516861816868186, + 0.00043818767881020904, + 0.047710318118333817, + 0.004295348655432463, + -0.02159743942320347, + -0.0025594597682356834, + 0.02722044102847576, + 0.012665953487157822, + 0.009676959365606308, + -0.004263399634510279, + -0.022307414561510086, + 0.0007046501850709319, + -0.0004124511033296585, + -0.017209794372320175, + 0.017749374732375145, + 0.00020511621551122516, + 0.00657791830599308, + 0.00043996263411827385, + 0.005498756188899279, + -0.037571877241134644, + -0.013574722222983837, + -0.006585018243640661, + -0.0016045435331761837, + -0.00918707624077797, + 0.034561581909656525, + 0.019992895424365997, + 0.015292861498892307, + 0.003972310107201338, + -0.0071210493333637714, + 0.021625839173793793, + -0.01143769733607769, + 0.014540287666022778, + -0.01192048005759716, + 0.0049733747728168964, + -0.017635779455304146, + -0.002850549528375268, + -0.005860843695700169, + -0.04259850084781647, + 0.02453673630952835, + -0.04944266006350517, + -0.00396166043356061, + 7.299430581042543e-5, + 0.0015663823578506708, + -0.04004259034991264, + 0.0070891003124415874, + -0.02094426192343235, + 0.01023073960095644, + -0.02619807794690132, + -0.010564427822828293, + -0.008434503339231014, + -0.02631167322397232, + 0.02621227689087391, + 0.007873622700572014, + 0.007838123477995396, + -0.025701094418764114, + -0.025232510641217232, + -0.0023606668692082167, + -0.01889953389763832, + 0.011501594446599483, + -0.01820375956594944, + -0.0080298176035285, + 0.03785586729645729, + -0.01140929851680994, + -0.010919415391981602, + 0.014469290152192116, + -0.026879653334617615, + 0.0016231803456321359, + 0.005594602786004543, + 0.025914087891578674, + 0.0018849836196750402, + -0.010749021545052528, + 0.00298012001439929, + -0.0034416038542985916, + -0.029307767748832703, + 0.003684770315885544, + -0.01146609615534544, + -0.010741922073066235, + 0.0008777065668255091, + 0.01685480587184429, + -0.007298543117940426, + 0.02540290541946888, + -0.005008873529732227, + 0.01543485652655363, + -0.045779187232255936, + 0.009279373101890087, + 0.006045436952263117, + -0.004611287731677294, + 0.009080580435693264, + -0.02013489045202732, + 0.017223993316292763, + 0.011458996683359146, + -0.009243874810636044, + -0.02868298999965191, + -0.01552005298435688, + 0.026325872167944908, + 0.006304577924311161, + 0.003562299534678459, + -0.029194172471761703, + -0.0014261623146012425, + -0.01835995353758335, + 0.017735175788402557, + 0.020447280257940292, + 0.0018974081613123417, + 0.015747245401144028, + 0.011182106100022793, + 0.010188140906393528, + -0.02277599833905697, + -0.006652465555816889, + -0.001116435625590384, + -0.0016222929116338491, + 0.0033617315348237753, + -0.030727718025445938, + -0.012949943542480469, + -0.0036244222428649664, + 0.010571527294814587, + 0.03430599346756935, + -0.015931839123368263, + 0.029989343136548996, + 0.008150513283908367, + -0.007632231339812279, + -0.002367766574025154, + 0.0026322323828935623, + 0.014121402986347675, + 0.013688317500054836, + -0.00041821965714916587, + -0.006272628903388977, + -0.02846999652683735, + -0.009520764462649822, + 0.03828185051679611, + -0.0007334928959608078, + 0.005473907105624676, + 0.03887823224067688, + 0.007156548090279102, + 0.002197372494265437, + 0.03635071963071823, + -0.005385160446166992, + -0.014270497485995293, + -0.01912672631442547, + 0.007653530221432447, + -0.023343978449702263, + 0.026013484224677086, + 0.008874687366187572, + 0.005498756188899279, + 0.009002482518553734, + -0.02200922556221485, + 0.036435917019844055, + 0.0004992011818103492, + -0.0006957754958420992, + -0.002563009737059474, + -0.00429889839142561, + 0.018998930230736732, + 0.017706776037812233, + -0.02733403816819191, + 0.02619807794690132, + -0.014462190680205822, + 0.058729130774736404, + -0.03711749240756035, + -0.004614837467670441, + 0.05472487211227417, + -0.04387645423412323, + -0.01654241792857647, + -0.011913380585610867, + -0.009442667476832867, + -0.024295344948768616, + -0.025488102808594704, + 0.0028895982541143894, + -0.014057504944503307, + 0.029790550470352173, + 0.01627262681722641, + 0.03652111440896988, + 0.006031237542629242, + -0.011714586988091469, + -0.00483492948114872, + -0.03748667985200882, + -0.023656366392970085, + 0.018615543842315674, + 0.05197016894817352, + -0.018828537315130234, + 0.004749732557684183, + 0.011941779404878616, + 0.016570815816521645, + 0.005363861098885536, + 0.011593891307711601, + -0.008690093643963337, + -0.0047284336760640144, + -0.013539223000407219, + 0.02615547925233841, + 0.01685480587184429, + -0.01533546019345522, + 0.00508697098121047, + 0.010301737114787102, + 0.032204464077949524, + 0.00012491122470237315, + 0.02814340963959694, + -0.042825691401958466, + 0.018004965037107468, + 0.01312743779271841, + 0.02621227689087391, + 0.009208375588059425, + -0.005892792250961065, + 0.005402909591794014, + 0.02368476614356041, + 0.024621933698654175, + -0.006116434466093779, + -0.029847348108887672, + 0.020702870562672615, + -0.0013587146531790495, + 0.00587859284132719, + 0.02154064178466797, + 0.0014039755333214998, + -0.014866876415908337, + 0.007461837027221918, + -0.03331202641129494, + -0.014476390555500984, + -0.04134894534945488, + -0.026396870613098145, + 0.03013133816421032, + -0.03742988035082817, + -0.00955626368522644, + -0.001809548819437623, + -0.0032516855280846357, + -0.035413552075624466, + -0.011458996683359146, + -0.013730916194617748, + 0.028526796028017998, + -0.02287539467215538, + 0.019879300147294998, + 0.0006367588066495955, + -0.02663826197385788, + -0.007461837027221918, + 0.004572238773107529, + 0.004437343683093786, + -0.008342206478118896, + -0.0013028040993958712, + -0.005079871043562889, + -0.02540290541946888, + -0.013652819208800793, + 0.003170038340613246, + -0.02455093525350094, + -0.017096197232604027, + -0.02244940958917141, + -0.0004153353802394122, + 0.0032516855280846357, + -0.018004965037107468, + 0.0073766401037573814, + 0.015662048012018204, + 0.00010144877160200849, + -0.002831025281921029, + 0.0015512953978031874, + -0.02722044102847576, + 0.014739081263542175, + -0.01669861190021038, + 0.032090868800878525, + -0.0011537093669176102, + 0.048363495618104935, + 0.003454028395935893, + -0.04115014895796776, + -0.023059988394379616, + -0.014405393041670322, + -0.010308836586773396, + 0.013922609388828278, + 0.01186368241906166, + 0.011586791835725307, + 0.03351081907749176, + -0.007781325839459896, + 0.02798721380531788, + 0.00531416293233633, + 0.003997159190475941, + 0.010266238823533058, + -0.01315583661198616, + -0.009960949420928955, + 0.04773871973156929, + 0.006283278577029705, + 0.010401133447885513, + 0.00929357297718525, + -0.011515794321894646, + -0.0343627892434597, + -0.010081645101308823, + -0.0073553407564759254, + 0.013702517375349998, + -0.008072415366768837, + 0.005804045591503382, + -0.002841674955561757, + 0.0052467151544988155, + -0.028597792610526085, + 0.011380898766219616, + -0.023017389699816704, + 0.0019045078661292791, + -0.001175896031782031, + 0.01594603806734085, + 0.013411427848041058, + 0.006414623931050301, + 0.02003549411892891, + -0.0023020938970148563, + 0.002651756629347801, + -0.01116790622472763, + -0.030159737914800644, + -0.028654590249061584, + 0.008178912103176117, + 0.011529994197189808, + 0.017011001706123352, + 0.002239971188828349, + -0.0036297470796853304, + 0.027405034750699997, + 0.010081645101308823, + 0.027078446000814438, + 0.030244935303926468, + 0.00942136812955141, + -0.024778127670288086, + 0.014795878902077675, + -0.03501596674323082, + -0.02051827684044838, + 0.0005901667173020542, + -0.03734468296170235, + -0.03569754213094711, + 0.023769963532686234, + -0.007483136374503374, + 0.014909475110471249, + -0.00966985896229744, + 0.02829960361123085, + 0.01042243279516697, + 0.000313498341711238, + -0.013312031514942646, + -0.0017580755520612001, + -0.03038693033158779, + -0.016840606927871704, + -0.015860840678215027, + 0.025090515613555908, + -0.0010667374590411782, + 0.005804045591503382, + 0.0024724879767745733, + 0.00974795687943697, + 0.002532835816964507, + 0.015420656651258469, + -0.020276885479688644, + 0.024465737864375114, + 0.029279367998242378, + -0.0073766401037573814, + -0.025814691558480263, + 0.010017747059464455, + 0.010926514863967896, + -0.031721681356430054, + 0.02067447267472744, + -0.002933971583843231, + 0.02438054047524929, + 0.01283634826540947, + 0.025743693113327026, + -0.040525373071432114, + -0.0027618026360869408, + 0.01686900667846203, + 0.017593180760741234, + 0.04484201967716217, + 0.011955979280173779, + -0.0026322323828935623, + -0.012935744598507881, + 0.0012806174345314503, + 0.007724527735263109, + 0.0004211039049550891, + -0.0564856119453907, + 0.007902021519839764, + -0.009037981741130352, + 0.017209794372320175, + 0.007412138860672712, + -0.005239615682512522, + -0.006528220139443874, + -0.014994671568274498, + 0.012552358210086823, + 0.016187429428100586, + 0.02335817739367485, + -0.01686900667846203, + -0.00012014107778668404, + -0.04978344589471817, + 0.03001774288713932, + -0.01686900667846203, + -0.028768187388777733, + 0.0055342549458146095, + 0.006212281063199043, + 0.014753280207514763, + -0.009314872324466705, + 0.005949590355157852, + 0.006680864840745926, + 0.02351437136530876, + 0.024153349921107292, + 0.025104716420173645, + 0.012772450223565102, + 0.024948520585894585, + 0.02567269653081894, + -0.04279729351401329, + -0.0065033710561692715, + -0.010727722197771072, + 0.003993609454482794, + 0.0010232514468953013, + 0.002747603226453066, + 0.01841675117611885, + 0.020220087841153145, + -0.03612352907657623, + -0.003855164162814617, + 0.000826233415864408, + -0.010862617753446102, + -0.012310966849327087, + -0.01023073960095644, + -0.015150866471230984, + 0.02330137975513935, + -0.01436279434710741, + 0.004394744988530874, + 0.028555193915963173, + 0.0006296590436249971, + 0.03217606619000435, + -0.004756832495331764, + 0.002239971188828349, + -0.005495206452906132, + -0.028924381360411644, + -0.027163643389940262, + -0.028271203860640526, + -0.012878946028649807, + 0.015221863985061646, + 0.006080935709178448, + -0.023102587088942528, + -0.002387290820479393, + 0.017365988343954086, + -0.008654595352709293, + -0.0014838477363809943, + 0.015420656651258469, + 0.023656366392970085, + 0.04248490184545517, + -0.021526440978050232, + -0.015605250373482704, + -0.01686900667846203, + -0.003051117528229952, + 0.027632227167487144, + 0.007334041874855757, + -0.02443733997642994, + -0.003304933663457632, + 0.009492365643382072, + -0.029194172471761703, + 0.0043769958429038525, + 0.009194175712764263, + 0.014653883874416351, + -0.01422789879143238, + 0.02104365825653076, + -0.0032144116703420877, + 0.03183528035879135, + -0.015718845650553703, + -0.005008873529732227, + 0.025544900447130203, + -0.019481712952256203, + -0.025260910391807556, + 0.0320056714117527, + 0.002728078979998827, + 0.004831379745155573, + -0.04308128356933594, + 0.0027671274729073048, + -0.02544550411403179, + 0.021228251978754997, + 0.029790550470352173, + 0.002506211632862687, + 0.009811853989958763, + -0.020205888897180557, + -0.004146254155784845, + -0.026950649917125702, + -0.022051822394132614, + 0.0008626196067780256, + 0.005828894674777985, + -0.01600283570587635, + -0.012523958459496498, + -0.006467872299253941, + 0.007937520742416382, + -0.007135248742997646, + -0.026340072974562645, + -0.014852676540613174, + 0.006634716410189867, + 0.0012673053424805403, + 0.00014865101547911763, + -0.010706422850489616, + -0.022634003311395645, + 0.007259494159370661, + -0.03163648396730423, + -0.018643943592905998, + -0.026453668251633644, + 0.0025807591155171394, + 0.026056082919239998, + -0.0023588920012116432, + 0.014795878902077675, + -0.012069574557244778, + 0.03192047402262688, + -0.03328362852334976, + 0.010514729656279087, + 0.021242450922727585, + 0.02964855544269085, + -0.01309903897345066, + -0.01696840301156044, + 0.008278308436274529, + 0.004909477196633816, + 0.020660271868109703, + -0.0076819295063614845, + 0.0002839899971149862, + 0.00022408585937228054, + -0.04756832495331764, + 0.01976570300757885, + -0.0369470976293087, + 0.02680865488946438, + -0.03129569813609123, + 0.011899180710315704, + -0.010493430308997631, + -0.0061838822439312935, + -0.013461126014590263, + 0.010969113558530807, + -0.02793041616678238, + -0.027092644944787025, + -0.032119270414114, + -0.0024369892198592424, + 0.0019932547584176064, + -0.006666664965450764, + 0.03018813580274582, + 0.011835283599793911, + 0.004849129356443882, + -0.019992895424365997, + 0.013823213055729866, + 0.009414268657565117, + -0.0011040110839530826, + 0.003642171621322632, + -0.005967339966446161, + 0.02453673630952835, + 0.02073127031326294, + -0.023698965087532997, + 0.005410009529441595, + 0.00991125125437975, + 0.01264465507119894, + 0.006613417062908411, + -0.004018458537757397, + -0.007397939451038837, + -0.013219734653830528, + 1.9246977899456397e-5, + -0.016031235456466675, + -0.014213698916137218, + 0.00629747798666358, + 0.046858347952365875, + 0.016499819234013557, + -0.0071103996597230434, + 0.005970889702439308, + -0.010812919586896896, + -0.02206602320075035, + 0.04146254062652588, + -0.01017394196242094, + -0.0016098682535812259, + 0.014568686485290527, + -0.01997869648039341, + -0.004842029418796301, + 0.011529994197189808, + 0.02503371797502041, + -0.03640751913189888, + -0.0173517893999815, + 0.024721330031752586, + -0.040837761014699936, + -0.018942132592201233, + -0.0012211570283398032, + 0.003975859843194485, + 0.0025097616016864777, + 0.014426691457629204, + 0.0016311676008626819, + -0.008640395477414131, + 0.024778127670288086, + -0.00880368985235691, + -0.020007096230983734, + -0.016840606927871704, + 0.030812915414571762, + -0.00966985896229744, + 0.01702520065009594, + -0.016684412956237793, + -0.01178558450192213, + -0.07889242470264435, + -0.03121050074696541, + -0.022321613505482674, + 0.007738727610558271, + 0.005573303904384375, + -0.009655660018324852, + 0.00018925270705949515, + 0.03163648396730423, + 0.026893852278590202, + -0.00272630387917161, + -0.005055021960288286, + 0.006986153777688742, + -0.03356761857867241, + 0.042342908680438995, + 0.014866876415908337, + 0.0017509758472442627, + -0.0040362076833844185, + -0.02518991194665432, + 0.005665600299835205, + -0.046858347952365875, + -0.0032570103649049997, + 0.0017971241613849998, + 0.01772097498178482, + 0.010670924559235573, + -0.03850904479622841, + 0.001955981133505702, + 0.0062158312648534775, + -0.015165065415203571, + -0.010330135934054852, + -0.021299250423908234, + 0.0049804747104644775, + 0.008328006602823734, + -0.017053598538041115, + -0.004305998329073191, + -0.001636492321267724, + 0.008604897186160088, + 0.02820020727813244, + -0.031721681356430054, + 0.019424915313720703, + 0.01615903154015541, + -0.0017713876441121101, + 0.012573657557368279, + 0.005285763647407293, + -0.012900245375931263, + -0.0023713165428489447, + 0.005793395917862654, + 0.01976570300757885, + -0.029762152582406998, + -0.007238195277750492, + -0.015662048012018204, + 0.02744763344526291, + 0.0017802623333409429, + -0.00955626368522644, + -0.018871136009693146, + -0.0035906985867768526, + 0.002955270931124687, + -0.0018086612690240145, + 0.018757538869976997, + -0.010486330837011337, + -0.012665953487157822, + 0.04467162489891052, + 0.017465384677052498, + -0.013659918680787086, + 0.0007512422744184732, + -0.005165067967027426, + -0.0001374467246932909, + 0.0011004612315446138, + 0.02164003811776638, + -0.003947461023926735, + -0.0027245290111750364, + -0.02249200828373432, + -0.018459349870681763, + 0.006865458097308874, + 0.012183170765638351, + 0.006084485910832882, + -0.00511536980047822, + 0.008342206478118896, + 0.00727724377065897, + -0.004227900877594948, + 0.016471419483423233, + 0.0018956331769004464, + -0.004802980925887823, + 0.014852676540613174, + 0.008817889727652073, + -0.024309543892741203, + -0.008448702283203602, + 0.000254037935519591, + -0.00837770476937294, + -0.023755762726068497, + 0.004206601995974779, + 0.016173230484128, + 0.014064604416489601, + 0.02304578758776188, + 0.019297121092677116, + -0.006389774847775698, + 0.04538160189986229, + -0.014767480082809925, + 0.029676955193281174, + -0.009598861448466778, + -0.019410716369748116, + -0.01458288636058569, + 0.005914091598242521, + 0.018885334953665733, + -0.013233933597803116, + 0.016471419483423233, + 0.003975859843194485, + 0.008022717200219631, + -0.009343271143734455, + 0.008271208964288235, + -0.03538515418767929, + -0.011693288572132587, + 0.017011001706123352, + -0.008647495880723, + 0.008498400449752808, + -0.016343625262379646, + 0.006815759930759668, + 0.004313098266720772, + -0.0049840244464576244, + -0.020489878952503204, + -0.020504077896475792, + 0.008903086185455322, + 0.012829247862100601, + 0.0004912139265798032, + -0.013652819208800793, + -0.0013675893424078822, + 0.023130984976887703, + 0.00896698422729969, + -0.021938227117061615, + -0.0015637199394404888, + 0.014739081263542175, + 0.0017758249305188656, + -0.008839189074933529, + -0.015250262804329395, + -0.00449769152328372, + 0.0032410358544439077, + 0.003264110069721937, + 0.011899180710315704, + -0.010450831614434719, + 0.03067092038691044, + -0.03143769130110741, + -0.011686188168823719, + -0.018345754593610764, + 0.008576498366892338, + 0.011182106100022793, + -0.011551293544471264, + 0.011217605322599411, + -0.006034787278622389, + -0.009506565518677235, + -0.004504791460931301, + 0.002310968702659011, + -0.0004676960234064609, + 0.02405395358800888, + 0.03532835468649864, + 0.012687252834439278, + -0.02330137975513935, + -0.028398999944329262, + 0.0070749009028077126, + 0.006400424521416426, + -0.012389063835144043, + -0.006727013271301985, + -0.010500529780983925, + 0.010223640128970146, + -0.011309901252388954, + 0.02202342450618744, + 0.02159743942320347, + -0.006396874785423279, + 0.010855517350137234, + -0.0033635066356509924, + -0.03856584057211876, + -0.033482421189546585, + 0.007117499131709337, + -0.0077032288536429405, + -0.029336167499423027, + -0.032403260469436646, + 0.005221866071224213, + -0.025047916918992996, + -0.024891722947359085, + -0.016258427873253822, + 0.03175008296966553, + -0.014795878902077675, + -0.03345402330160141, + -0.010543128475546837, + 0.01901313103735447, + 0.0011421722592785954, + -0.010571527294814587, + 0.034703578799963, + -0.0010312387021258473, + -0.009463966824114323, + -0.022960592061281204, + -0.021455444395542145, + 0.009087679907679558, + -0.007653530221432447, + -0.03984379768371582, + 0.00961306132376194, + 0.01425629761070013, + -0.003150514094159007, + 0.004543839953839779, + 0.013986507430672646, + 0.0013773514656350017, + -0.013304931111633778, + -0.015704646706581116, + -0.0006846821052022278, + 0.03061412088572979, + -0.005466807633638382, + -0.008221510797739029, + -0.013709616847336292, + -0.025587499141693115, + 0.020234286785125732, + 0.010933615267276764, + -0.028711387887597084, + 0.009684058837592602, + -0.0037025196943432093, + 0.003478877479210496, + -0.011750086210668087, + -0.0047071343287825584, + -0.002886048285290599, + 0.008690093643963337, + -0.011835283599793911, + -0.0028594243340194225, + -0.01933971792459488, + 0.03248845413327217, + -0.011111108586192131, + -0.010266238823533058, + -0.006421723868697882, + 0.013489524833858013, + -0.007852323353290558, + -0.009513664990663528, + -0.055236052721738815, + -0.01959531009197235, + 0.014866876415908337, + -0.0027298538479954004, + -0.002310968702659011, + -0.004636136814951897, + 0.01289314590394497, + 0.0012335815699771047, + -0.004881077911704779, + 0.016982601955533028, + 0.0017980117117986083, + 0.01691160351037979, + -0.0005883917910978198, + -0.0021228252444416285, + -0.006684414576739073, + -0.0035658495035022497, + -0.0007077563204802573, + 0.021498043090105057, + 0.0021086258348077536, + -0.003798366291448474, + -0.01194887887686491, + 0.003313808236271143, + 0.008533899672329426, + 0.013233933597803116, + 0.0008834751206450164, + -0.011558393016457558, + -0.005970889702439308, + 0.010741922073066235, + -0.012914445251226425, + 0.022435210645198822, + -0.018161160871386528, + 0.007689028978347778, + -0.0030085190664976835, + 0.003926161676645279, + -0.0041001057252287865, + 0.015363859012722969, + -0.025544900447130203, + 0.00151757150888443, + -0.013759315013885498, + -0.003186012851074338, + 0.01658501662313938, + 0.019453315064311028, + -0.0015841317363083363, + 0.01932551898062229, + 0.039332613348960876, + -0.024352142587304115, + -0.03603833168745041, + 0.008782390505075455, + -0.026609862223267555, + 0.004735533148050308, + -0.015505854040384293, + -0.011608091183006763, + -0.02841319888830185, + -0.03640751913189888, + 0.007909120991826057, + -0.02331557869911194, + 0.01563365012407303, + 0.00514376861974597, + -0.015165065415203571, + -0.019240321591496468, + -0.026354271918535233, + 0.020859064534306526, + -0.01001064758747816, + 0.002902022795751691, + 0.018572945147752762, + -0.004004259128123522, + 0.010798719711601734, + -0.006155483424663544, + 0.015917640179395676, + -0.011529994197189808, + -0.003541000187397003, + 0.004391195252537727, + -0.026609862223267555, + 0.007135248742997646, + 0.005491656716912985, + -0.012857646681368351, + 0.028796585276722908, + -0.023698965087532997, + -0.00017538601241540164, + 0.043734461069107056, + -0.02486332505941391, + 0.00685835862532258, + 0.010017747059464455, + -0.005040822550654411, + 0.01702520065009594, + -0.009463966824114323, + -0.009179976768791676, + -0.006506920792162418, + 0.0009691158775240183, + 0.005264464765787125, + 0.027248840779066086, + 0.029449762776494026, + -0.005697549320757389, + -0.025743693113327026, + -0.01052892953157425, + 0.00971955806016922, + 0.005296413321048021, + -0.04032658040523529, + -0.004043307621032, + -0.00416045356541872, + 0.01337592862546444, + -0.0010152641916647553, + -0.019623707979917526, + -0.010088744573295116, + 0.014838477596640587, + -0.02749023213982582, + -0.001000177231617272, + 0.01810436323285103, + -0.0070465016178786755, + -0.0012930419761687517, + -0.006443023215979338, + -0.02470712922513485, + -0.005090520717203617, + 0.010450831614434719, + 0.03478877618908882, + -0.029194172471761703, + 0.027731623500585556, + -0.0005959352711215615, + 0.034447986632585526, + -0.028115009889006615, + 0.016627613455057144, + -0.003865813836455345, + -0.025800490751862526, + 0.01428469642996788, + -0.009982248768210411, + -0.017223993316292763, + -0.017223993316292763, + 0.00899538304656744, + 0.02528931014239788, + 0.0022523957304656506, + 0.008477101102471352, + 0.012751150876283646, + -0.03521475940942764, + -0.013915509916841984, + -0.006908056791871786, + 0.02368476614356041, + 0.004210151731967926, + -0.00899538304656744, + 0.009968048892915249, + 0.006638266146183014, + -0.02121405303478241, + -0.01691160351037979, + -0.017706776037812233, + 0.0029215470422059298, + 0.0007201808621175587, + -0.010891016572713852, + -0.010223640128970146, + -0.013262332417070866, + 0.0034043299965560436, + -0.007284343242645264, + 0.007156548090279102, + 0.012353564612567425, + 0.002465388271957636, + -0.012800849042832851, + 0.018161160871386528, + -0.01189208123832941, + -0.03765707463026047, + -0.017209794372320175, + 0.009783455170691013, + 0.008853388018906116, + 0.025715293362736702, + -0.02104365825653076, + -0.01549165416508913, + 0.02378416247665882, + -0.012268368154764175, + -0.0020234286785125732, + 0.0031735883094370365, + -0.015321260318160057, + 0.013170036487281322, + 0.0002400602970737964, + -0.000624334265012294, + -0.050607018172740936, + -0.018828537315130234, + -0.03870783746242523, + 0.02324458211660385, + -0.014313096180558205, + 0.027674825862050056, + 0.0015654948074370623, + 0.027646426111459732, + 0.0035374504514038563, + 0.031977273523807526, + -0.008881786838173866, + -0.008079515770077705, + -0.01500887144356966, + -0.0031771380454301834, + -0.00714234821498394, + -0.01976570300757885, + -0.023372376337647438, + -0.009790555573999882, + -0.01348242536187172, + 0.022137019783258438, + 0.0318920761346817, + -0.030102940276265144, + -0.008718492463231087, + -0.007788425777107477, + -0.02056087553501129, + 0.004455093294382095, + -0.02196662686765194, + 0.01766417734324932, + -0.025757892057299614, + -0.019794102758169174, + 0.016996800899505615, + 0.005331912077963352, + -0.016670212149620056, + -0.020646072924137115, + 0.007774226367473602, + -0.01068512350320816, + 0.019396517425775528, + -0.016840606927871704, + 0.017678378149867058, + -0.007188496645539999, + -0.0026002833619713783, + -0.004582888446748257, + -0.006932905875146389, + -0.011671989224851131, + 0.003823215374723077, + -0.028214406222105026, + 0.014724881388247013, + -0.017493784427642822, + 0.002279019681736827, + -0.014078804291784763, + 0.01286474708467722, + 0.009968048892915249, + 0.020802266895771027, + -0.02604188211262226, + 0.0031309896148741245, + 0.022634003311395645, + 0.0009957399452105165, + 0.0013578272191807628, + -0.0017456510104238987, + 0.01573304645717144, + -0.03086971305310726, + 0.019680507481098175, + 0.021924028173089027, + -0.007987218908965588, + 0.011387999169528484, + 0.005271564237773418, + -0.00699680345132947, + 0.022193817421793938, + 0.033965203911066055, + -0.007440538145601749, + -0.018658142536878586, + -0.004739082884043455, + 0.013517923653125763, + -0.022378411144018173, + -0.014029106125235558, + -0.010954913683235645, + 0.018984731286764145, + -0.0035161511041224003, + 0.005750797223299742, + -0.009684058837592602, + 0.015378057956695557, + -0.000863063323777169, + -0.01165778934955597, + -0.007018102798610926, + 0.026396870613098145, + 0.011082709766924381, + 0.01130280178040266, + -0.025303509086370468, + 0.029676955193281174, + -0.0001413293939549476, + 0.005094070453196764, + 0.012176071293652058, + -0.014405393041670322, + -0.0013134537730365992, + -0.01101171225309372, + 0.004873978439718485, + 0.006776711437851191, + -0.005559104029089212, + -0.03876463323831558, + -0.009016682393848896, + 0.003443378722295165, + -0.0005267126834951341, + 0.006336526945233345, + -0.014121402986347675, + -0.004423144273459911, + 0.006776711437851191, + 0.0006296590436249971, + -0.04467162489891052, + -0.013539223000407219, + 0.0023198432754725218, + 0.006932905875146389, + -0.02507631666958332, + -0.020660271868109703, + 0.02256300486624241, + 0.006698613986372948, + -0.009045081213116646, + -0.017763573676347733, + 0.0016941778594627976, + 0.014668083749711514, + 0.0007947282865643501, + -0.027263039723038673, + 0.008682994171977043, + -0.0044195945374667645, + 0.0012069575022906065, + -0.010252038948237896, + -0.021072058007121086, + 0.0008834751206450164, + 0.010827118530869484, + 0.006020587868988514, + 0.012807948514819145, + -0.014234998263418674, + -0.023556970059871674, + 0.005044372286647558, + 0.004220801405608654, + -0.00789492204785347, + -0.005665600299835205, + -0.006616966798901558, + -0.0006216718466021121, + 0.008526799269020557, + 0.006897407118231058, + -0.00460773753002286, + -0.01708199828863144, + -0.010053246282041073, + 0.004749732557684183, + -0.00503372261300683, + 0.007124599069356918, + 0.005807595327496529, + 0.08695773780345917, + -0.004348597023636103, + 0.004866878502070904, + 0.011941779404878616, + -0.0035321256145834923, + -0.003386580618098378, + -0.00944976694881916, + 0.01681220717728138, + -0.0015246713301166892, + 0.0003263666294515133, + -0.007135248742997646, + -0.053674109280109406, + 0.013787714764475822, + -0.00134895252995193, + -0.00891018658876419, + -0.0035800489131361246, + 0.017536383122205734, + 0.014710681512951851, + 0.009030882269144058, + 0.008697194047272205, + 0.0031167902052402496, + -0.01943911612033844, + -0.00255768490023911, + 0.01503727026283741, + -0.0043876455165445805, + -0.0034824274480342865, + -0.004625487141311169, + -0.001636492321267724, + 0.011558393016457558, + 0.027745822444558144, + 0.0023997153621166945, + 0.0019843801856040955, + -0.01533546019345522, + -0.00696840463206172, + -0.005676249973475933, + 0.007561233825981617, + -0.004394744988530874, + -0.002089101355522871, + 0.01912672631442547, + 0.018175359815359116, + 0.0007951720035634935, + 0.004146254155784845, + 0.022406810894608498, + 0.022804396227002144, + -0.004487041849642992, + -0.006553069222718477, + 0.012623355723917484, + -0.0025647846050560474, + -0.007838123477995396, + 0.03228966146707535, + -0.017962368205189705, + -0.019950296729803085, + -0.0041107553988695145, + 0.0014208374777808785, + 0.015477455221116543, + -0.013170036487281322, + 0.014085903763771057, + -0.004785231314599514, + -0.006531769875437021, + 0.006932905875146389, + 0.004731983412057161, + -0.010557328350841999, + -0.03345402330160141, + -0.04032658040523529, + -0.0006931130774319172, + 0.00076544180046767, + 0.009684058837592602, + -0.014064604416489601, + 0.01706779934465885, + 0.0021742985118180513, + 0.0024369892198592424, + 0.01152289379388094, + 0.012353564612567425, + -0.017479583621025085, + -0.01028753723949194, + 0.03521475940942764, + 0.006897407118231058, + 0.002577209146693349, + 0.003303158562630415, + 0.008874687366187572, + 0.006560169160366058, + 0.007497335784137249, + -0.006080935709178448, + -0.02465033158659935, + 0.003993609454482794, + -0.011821083724498749, + 0.023940356448292732, + -0.014341494999825954, + 0.0012823923025280237, + -0.0061945319175720215, + -0.017365988343954086, + 0.019893499091267586, + -0.010926514863967896, + -0.007859422825276852, + 0.001021476578898728, + -0.005697549320757389, + 0.00022574985632672906, + -0.02077386900782585, + 0.015079868957400322, + -0.008810789324343204, + 0.021512242034077644, + 0.0024511886294931173, + -0.0036812203470617533, + -0.0027919765561819077, + -0.003812565701082349, + -0.0068122101947665215, + 0.017905568704009056, + 0.018004965037107468, + -0.01820375956594944, + 0.003752217860892415, + -0.008555199019610882, + 0.024153349921107292, + 0.017209794372320175, + -0.005402909591794014, + -0.0065140207298099995, + -0.003088391153141856, + 0.010443732142448425, + -0.002974795177578926, + -0.01976570300757885, + -0.026893852278590202, + -0.004266949836164713, + -0.03291444107890129, + 0.007859422825276852, + -0.00974795687943697, + -0.010344335809350014, + -0.012360665015876293, + -0.01104011107236147, + -0.013489524833858013, + -0.003968760371208191, + 0.0185871459543705, + 0.016727011650800705, + 0.005679800175130367, + 0.02331557869911194, + -0.018643943592905998, + 0.010237839072942734, + 0.008945684880018234, + 0.019992895424365997, + 7.227323658298701e-5, + 0.033539216965436935, + -0.012190270237624645, + 0.0006900069420225918, + 0.007710328325629234, + -0.013674118556082249, + 0.006340076681226492, + 0.020745469257235527, + 0.0036563712637871504, + 0.006272628903388977, + -0.007909120991826057, + 0.04072416573762894, + 0.0009797654347494245, + 0.016840606927871704, + -0.025260910391807556, + 0.007259494159370661, + -0.01760737970471382, + 0.01377351488918066, + 0.011324101127684116, + -0.004164003301411867, + 0.006734112743288279, + 0.008022717200219631, + -0.0043876455165445805, + -0.004426694009453058, + -0.001520233927294612, + -0.0018725590780377388, + -0.002021653810516, + -0.014291796833276749, + 0.020120691508054733, + 0.01615903154015541, + 0.030301732942461967, + 0.028796585276722908, + -0.004799430724233389, + -0.00840610358864069, + 0.011501594446599483, + -0.005335462279617786, + -0.023755762726068497, + -0.006908056791871786, + -0.025473902001976967, + 0.027362436056137085, + 0.016528217121958733, + -0.016613414511084557, + 0.012048275209963322, + -0.003478877479210496, + -0.009321971796452999, + 0.02271920070052147, + -0.012516858987510204, + 0.005023072939366102, + -0.02083066664636135, + 0.008590697310864925, + -0.014192400500178337, + 0.007149448152631521, + 0.015974437817931175, + -0.02190982736647129, + 0.027348237112164497, + -0.014923674054443836, + 0.01745118573307991, + -0.0067909108474850655, + 0.0038587141316384077, + 0.016954202204942703, + 0.026112880557775497, + -0.006258429493755102, + 0.005583953112363815, + -0.03345402330160141, + 0.009442667476832867, + -0.0046716355718672276, + 0.00886048749089241, + 0.02233581244945526, + 0.0017554131336510181, + 0.008022717200219631, + -0.02474972791969776, + 0.00048455793876200914, + 0.017110398039221764, + -0.03973020240664482, + -0.021398646757006645, + 0.025417104363441467, + 0.005764997098594904, + -0.016471419483423233, + 0.03566914424300194, + -0.012346465140581131, + 0.0022665951400995255, + 0.02110045589506626, + -0.011593891307711601, + 0.0038409647531807423, + 0.007994318380951881, + 0.018942132592201233, + -0.019950296729803085, + 0.005367410834878683, + 0.017053598538041115, + -0.010401133447885513, + 0.01289314590394497, + 0.01165778934955597, + 1.8054442989523523e-5, + 0.02781682088971138, + 0.0004344159387983382, + 0.006212281063199043, + 0.016059635207057, + 0.02260560356080532, + 0.011324101127684116, + 0.02121405303478241, + -0.015704646706581116, + 0.00526091456413269, + -0.018942132592201233, + -0.010990412905812263, + 0.021767834201455116, + 0.003546325024217367, + 0.01500887144356966, + -0.0023500171955674887, + -0.0018707840936258435, + -0.011501594446599483, + -0.002836350118741393, + 0.010969113558530807, + -2.6887530111707747e-5, + 0.007216895930469036, + -0.01874333992600441, + -0.02261980250477791, + 0.01615903154015541, + -0.002806176198646426, + -0.0005276001757010818, + 0.009378769434988499, + -0.009073480032384396, + 0.0030688669066876173, + 0.0070855505764484406, + -0.007596732582896948, + 0.00722399540245533, + 0.024252746254205704, + -0.0015965562779456377, + 0.004813630599528551, + 0.021398646757006645, + -0.015023071318864822, + 0.0029765700455754995, + -0.0016586791025474668, + 0.015576851554214954, + -0.0040788063779473305, + 0.0035339004825800657, + 0.012445861473679543, + -0.001487397588789463, + -0.009627261199057102, + 0.002234646352007985, + 0.012381963431835175, + 0.0046858349815011024, + 0.004934326279908419, + -0.01197727769613266, + -0.017266592010855675, + -0.004710684064775705, + 0.0024014904629439116, + -0.014497688971459866, + -0.0018166485242545605, + -0.036066729575395584, + 0.002603833330795169, + 0.00880368985235691, + -0.0015841317363083363, + 0.01533546019345522, + -0.0064927213825285435, + -0.012005677446722984, + 0.01509406790137291, + -0.0020607023034244776, + 0.01017394196242094, + 0.00570464925840497, + 0.010401133447885513, + 0.0032410358544439077, + 0.03237485885620117, + 0.008001417852938175, + 0.007145898416638374, + -0.01685480587184429, + -0.0049840244464576244, + -0.009307771921157837, + 0.019794102758169174, + -0.0038977626245468855, + 0.016414621844887733, + -0.012580757029354572, + 0.007298543117940426, + 0.02009229175746441, + -0.015250262804329395, + -0.00020345220400486141, + 0.008356405422091484, + 0.007270143833011389, + 0.003940361086279154, + 0.009847353212535381, + -0.0018565845675766468, + 0.02846999652683735, + 0.01685480587184429, + 0.004256300162523985, + -0.02615547925233841, + 0.01615903154015541, + -0.009314872324466705, + -0.002090876456350088, + 0.0005666487850248814, + 0.021980825811624527, + 0.026127079501748085, + 0.003919061738997698, + -0.006943555548787117, + -0.01098331343382597, + 0.0023393675219267607, + -0.0014758604811504483, + -0.03055732324719429, + 0.007568333297967911, + -0.005026623141020536, + 0.00250266189686954, + -0.01702520065009594, + -0.002000354463234544, + -0.0037025196943432093, + 0.009087679907679558, + -0.016073834151029587, + -1.2036294720019214e-5, + 0.0023500171955674887, + -0.02084486559033394, + 0.0038977626245468855, + 0.035896334797143936, + 0.012034076265990734, + -0.016798008233308792, + -0.0009149802499450743, + 0.027646426111459732, + 0.0023535671643912792, + 0.012133472599089146, + 0.0022807945497334003, + -0.019964497536420822, + -0.011572591960430145, + -0.012630455195903778, + -0.001175896031782031, + 0.0010720622958615422, + 0.012495559640228748, + -0.00883208867162466, + -0.01584664173424244, + 0.015775645151734352, + -0.019794102758169174, + -0.0017358888871967793, + 0.0027973013930022717, + -0.011238903738558292, + 0.00488817784935236, + 0.020631873980164528, + -0.015392257831990719, + 0.015477455221116543, + -0.0016116432379931211, + -0.041916925460100174, + -0.009414268657565117, + -0.003972310107201338, + -0.012176071293652058, + -0.004873978439718485, + -0.002058927435427904, + -0.01146609615534544, + 0.001950656296685338, + 0.0033226830419152975, + 0.03768547251820564, + -0.0021281500812619925, + -0.0022559454664587975, + -0.015264462679624557, + 0.01615903154015541, + -0.0012575432192534208, + 0.005963789764791727, + 0.03092651069164276, + -0.018217958509922028, + -0.006095135118812323, + -3.0811806936981156e-5, + 0.02636847086250782, + 0.018274756148457527, + -0.0033901305869221687, + 0.010308836586773396, + -0.012225769460201263, + 0.008200211450457573, + 0.009329071268439293, + 0.014149801805615425, + -0.013297831639647484, + 0.001503372099250555, + 0.01240326277911663, + 0.012346465140581131, + 0.009648560546338558, + 0.00488817784935236, + -0.011686188168823719, + 0.0023393675219267607, + 0.03217606619000435, + 0.017749374732375145, + -0.02626907452940941, + 0.014078804291784763, + 0.012531058862805367, + -0.005754347424954176, + 0.0012460061116144061, + 0.009634360671043396, + -0.0001280173601116985, + 0.028526796028017998, + -0.01052892953157425, + 0.020646072924137115, + 0.013738015666604042, + 0.025275109335780144, + -0.010670924559235573, + 0.004490592051297426, + -0.013006742112338543, + -0.0012353564379736781, + -0.0014687607763335109, + 0.031863678246736526, + -0.0005959352711215615, + -0.013809013180434704, + 0.002218671841546893, + -0.0029375215526670218, + -0.021228251978754997, + 0.0034043299965560436, + -0.0017953492933884263, + -0.004007808864116669, + 0.010145542211830616, + 0.011813984252512455, + -0.01965210773050785, + 0.008498400449752808, + 0.004330847412347794, + -0.021412845700979233, + -0.011742986738681793, + 0.003752217860892415, + -0.006648915819823742, + -0.01573304645717144, + -0.0002239749301224947, + -0.0025292858481407166, + 0.029762152582406998, + -0.009520764462649822, + 0.0031824628822505474, + -0.0031877877190709114, + 0.022903792560100555, + 0.03785586729645729, + 0.004565139301121235, + -0.016102232038974762, + -0.024124950170516968, + 0.0007978344219736755, + 0.003299608826637268, + 0.010017747059464455, + -0.016670212149620056, + -0.007937520742416382, + 0.0029676954727619886, + 0.003887113183736801, + 0.009499465115368366, + 0.001191870542243123, + -0.015236062929034233, + 0.03268725052475929, + 0.008200211450457573, + -0.006776711437851191, + 0.009392969310283661, + -0.013851611874997616, + 0.017848771065473557, + 0.017962368205189705, + -0.00039470172487199306, + -8.181352313840762e-5, + 0.01901313103735447, + -0.004149803891777992, + 0.020262686535716057, + -0.005594602786004543, + -0.005179267376661301, + -0.0015566201182082295, + -0.005228966008871794, + -0.0016072058351710439, + 0.0003678557986859232, + 0.00705005181953311, + 0.00596024002879858, + -0.001842385157942772, + 0.013880010694265366, + 0.0014802978839725256, + 0.015108267776668072, + 0.00902378186583519, + 0.008093714714050293, + 0.008888887241482735, + 0.0016711036441847682, + 0.006091585382819176, + -0.010976213030517101, + 0.01113950740545988, + 0.01862974464893341, + 0.0043840957805514336, + -0.016230028122663498, + 0.004465742502361536, + 0.002571884309872985, + -0.01638622209429741, + 0.01289314590394497, + -0.0004916577017866075, + 0.01211217325180769, + -0.011707487516105175, + 0.001574369496665895, + 0.018445150926709175, + 4.409610482980497e-5, + 0.026553064584732056, + -0.008576498366892338, + -0.006457222625613213, + 0.002058927435427904, + -0.01315583661198616, + 0.0046503362245857716, + 0.017096197232604027, + 0.016840606927871704, + 0.031238900497555733, + 0.0018920833244919777, + -0.011153707280755043, + -0.013929709792137146, + 0.0003150514094159007, + 0.03163648396730423, + -0.002809725934639573, + 0.004291798919439316, + 0.016925804316997528, + -0.006112884730100632, + 0.003791266353800893, + -0.003519701072946191, + -0.004050407558679581, + -0.0031221150420606136, + 0.008668794296681881, + -0.0007073126034811139, + 0.01596023701131344, + 0.018601344898343086, + 0.0024458637926727533, + -0.02217961847782135, + 0.03663470968604088, + -0.00236244173720479, + -0.018700741231441498, + 0.003150514094159007, + 0.004259849898517132, + -0.015264462679624557, + 0.007426338270306587, + -0.009030882269144058, + -0.019581111147999763, + 0.023343978449702263, + 0.010436632670462132, + 0.014810078777372837, + -0.02185302972793579, + 0.018714940175414085, + 0.04569398984313011, + 0.007188496645539999, + 0.0318920761346817, + -0.017862970009446144, + -0.0007006565574556589, + -0.0030848414171487093, + 0.007007453124970198, + 0.006727013271301985, + -0.004998223856091499, + -0.005977989640086889, + -0.002279019681736827, + 0.006357826292514801, + -0.0058537437580525875, + -0.0031025907956063747, + -0.0008093714714050293, + 0.007795525249093771, + 0.012268368154764175, + 0.03666310757398605, + -0.02636847086250782, + 0.002736953552812338, + -0.010869717225432396, + 0.003611997701227665, + 0.019254522398114204, + -0.00958466250449419, + 0.0007392614497803152, + -0.01992189884185791, + -0.0019790553487837315, + -0.010124243795871735, + -0.007554133888334036, + -0.02110045589506626, + -0.038963425904512405, + 0.01766417734324932, + -0.007390839513391256, + 0.01928292028605938, + 0.0012974792625755072, + 0.0004965387634001672, + 0.012133472599089146, + -0.023116786032915115, + 0.03302803635597229, + -0.00455093989148736, + -0.02088746428489685, + 0.0015654948074370623, + -0.002284344518557191, + 0.00958466250449419, + -0.010749021545052528, + -0.025175713002681732, + -0.024735528975725174, + -0.027135243639349937, + -0.008455801755189896, + 0.005090520717203617, + 0.01146609615534544, + 0.013517923653125763, + 0.00460773753002286, + 0.0032712097745388746, + 0.00859779678285122, + -0.02749023213982582, + -0.0037486678920686245, + -0.005431308876723051, + -0.0071103996597230434, + 0.02518991194665432, + 0.0013365278718993068, + -0.010912315919995308, + 0.01549165416508913, + -0.013312031514942646, + 0.016627613455057144, + 0.005321262404322624, + 0.030472125858068466, + 0.0013205534778535366, + 0.00696840463206172, + -0.0019577560015022755, + 0.0067873611114919186, + -0.005292863585054874, + 0.0023908407893031836, + -0.012381963431835175, + -0.019893499091267586, + 0.0068015605211257935, + 0.0052467151544988155, + -0.01025913842022419, + -0.012005677446722984, + 0.002630457282066345, + 0.006581468041986227, + -0.030159737914800644, + 0.00902378186583519, + -0.023272980004549026, + -0.008853388018906116, + -0.003982959780842066, + 0.04004259034991264, + -0.005502306390553713, + 0.010720622725784779, + -0.024465737864375114, + -0.005938940681517124, + 0.02922257035970688, + 0.0022861193865537643, + -0.018970532342791557, + 0.002717429306358099, + 0.006056086625903845, + 0.01039403397589922, + -0.0028682989068329334, + -0.021029459312558174, + -0.004614837467670441, + -0.01393680926412344, + 0.00980475451797247, + 0.018998930230736732, + -0.01959531009197235, + -0.00821441039443016, + -0.01402200572192669, + 0.013432727195322514, + -0.03478877618908882, + -0.00824280921369791, + -0.012012776918709278, + 0.0012912669917568564, + -0.000972665729932487, + -0.005211216397583485, + -0.01600283570587635, + 0.01402200572192669, + 0.008725592866539955, + -0.0070678009651601315, + 0.005594602786004543, + -0.00776002649217844, + -0.008931485004723072, + -0.019368117675185204, + -0.0056088026612997055, + -0.004071706440299749, + -0.004902377258986235, + -0.02922257035970688, + -0.01793396845459938, + 0.0068335095420479774, + -0.05219736322760582, + 0.004966275300830603, + -0.009790555573999882, + -0.005818245001137257, + -0.02034788392484188, + -1.1481626643217169e-5, + 0.004902377258986235, + 0.004636136814951897, + 0.0061945319175720215, + -0.0011696837609633803, + -0.004735533148050308, + -0.014682282693684101, + -0.023812560364603996, + -0.02127085067331791, + -0.00896698422729969, + 0.0008151400252245367, + 0.012722752057015896, + -0.012168971821665764, + -0.012034076265990734, + 0.0019843801856040955, + -0.0017598505364730954, + -0.038793034851551056, + 0.004561589099466801, + -0.027802620083093643, + -0.027163643389940262, + 0.014724881388247013, + -0.02287539467215538, + 0.002974795177578926, + -0.01178558450192213, + 0.01590343937277794, + -0.006684414576739073, + 0.009691158309578896, + 0.008448702283203602, + -0.006592117715626955, + 0.0067802611738443375, + -0.009549163281917572, + -0.010436632670462132, + 0.01928292028605938, + -0.015420656651258469, + -0.010635425336658955, + -0.01020234078168869, + -0.005079871043562889, + 0.0023287180811166763, + -0.01933971792459488, + 0.0004770144587382674, + -0.0049698250368237495, + -0.01573304645717144, + -0.011089809238910675, + 0.01116790622472763, + -0.026084480807185173, + 0.02347177267074585, + 0.021767834201455116, + 0.015250262804329395, + 0.002651756629347801, + 0.0003478877479210496, + -0.011075610294938087, + -0.005946040619164705, + 0.00961306132376194, + -0.00012746269931085408, + 0.006581468041986227, + -0.004604187794029713, + -0.008498400449752808, + -0.04194532334804535, + -0.013553422875702381, + 0.021682636812329292, + 0.01615903154015541, + -0.014249198138713837, + -0.003338657319545746, + 0.004082356113940477, + -0.016230028122663498, + 0.019623707979917526, + -0.02324458211660385, + -0.018033364787697792, + 0.013958108611404896, + 0.002373091410845518, + 0.009953849017620087, + -0.018331553786993027, + 0.00834930595010519, + -0.017323389649391174, + 0.00046015254338271916, + 0.023911958560347557, + 0.007397939451038837, + 0.0029570457991212606, + -0.0024778128135949373, + 0.009243874810636044, + -0.007035852409899235, + 0.013326230458915234, + 0.007987218908965588, + -0.01149449497461319, + -0.006531769875437021, + 0.014355693943798542, + -0.012765350751578808, + -0.008682994171977043, + 0.0017731625121086836, + -0.01847354881465435, + 0.0073198419995605946, + -0.007348241284489632, + 0.012076674960553646, + 0.01101171225309372, + -0.0016728786285966635, + 0.010294637642800808, + 0.0010143767576664686, + 0.02503371797502041, + -0.03297123685479164, + 0.021611638367176056, + -0.01986510120332241, + -0.012225769460201263, + 0.026056082919239998, + 0.02990414761006832, + 0.01739438809454441, + -0.015917640179395676, + 0.014263398014008999, + 0.010727722197771072, + -0.032460056245326996, + -0.027831019833683968, + 0.03973020240664482, + -0.000459265080280602, + 0.003473552642390132, + -0.005040822550654411, + -0.0035214759409427643, + -0.009854452684521675, + 0.00021942664170637727, + 0.004018458537757397, + -0.006251330021768808, + -0.016400422900915146, + -0.016286825761198997, + 0.02685125358402729, + -0.007128148805350065, + 0.00753283454105258, + -0.006766061764210463, + -0.006975504104048014, + -0.001806886401027441, + 0.014305995777249336, + -0.014476390555500984, + 0.028484197333455086, + 0.018118562176823616, + 0.00974795687943697, + 0.01916932500898838, + -0.009811853989958763, + 0.0008932373020797968, + 0.026439469307661057, + -0.021242450922727585, + -0.009712457656860352, + 0.012516858987510204, + 0.023287178948521614, + -0.023982955142855644, + -0.00018204202933702618, + -0.001796236727386713, + -0.011778485029935837, + 0.008711392991244793, + -0.026283273473381996, + 0.004842029418796301, + 0.0009708908037282526, + -0.004465742502361536, + 0.02335817739367485, + -0.0046716355718672276, + -0.020319484174251556, + -0.015278661623597145, + 0.005605252459645271, + -0.00899538304656744, + -0.010429532267153263, + 0.007018102798610926, + -0.025360306724905968, + 0.0004468405095394701, + 0.003649271558970213, + 0.005828894674777985, + -0.012445861473679543, + -0.00023318240710068494, + -0.006176782306283712, + -0.00357117410749197, + -0.012303866446018219, + -0.002294994192197919, + 0.005825344938784838, + -0.00991125125437975, + -0.005079871043562889, + -0.015378057956695557, + 0.013887111097574234, + -0.009471066296100616, + -0.006613417062908411, + -0.00376641727052629, + -0.012062475085258484, + -0.0020305283833295107, + 0.008079515770077705, + 0.00015752570470795035, + 0.005743697751313448, + 0.016457220539450645, + -0.022193817421793938, + 0.007987218908965588, + 0.007252394687384367, + -0.008611996658146381, + -0.007245294749736786, + -0.01299254223704338, + -0.012105073779821396, + -0.004873978439718485, + 0.010315936990082264, + -0.010166841559112072, + 0.0016435921424999833, + 0.010557328350841999, + 0.0006190094281919301, + -0.000459265080280602, + 0.020532477647066116, + 0.0006221155636012554, + -0.003040467854589224, + 0.0016196304932236671, + 0.012985442765057087, + -0.014824277721345425, + -0.0027405035216361284, + 0.01885693520307541, + -0.015349659137427807, + 0.0027618026360869408, + 0.010500529780983925, + 0.005729498341679573, + -0.006389774847775698, + 0.016940003260970116, + 0.02003549411892891, + 0.013865811750292778, + 0.0017651753732934594, + 0.013581821694970131, + -0.011444796808063984, + -0.013787714764475822, + -0.0005315938033163548, + -0.005857293494045734, + 0.0052893138490617275, + -0.011714586988091469, + -0.00607028603553772, + -0.02717784233391285, + 0.011963078752160072, + -0.03143769130110741, + -0.006609867326915264, + 0.0007108624558895826, + 0.029449762776494026, + -0.005892792250961065, + -0.009925450198352337, + 0.0029889948200434446, + 0.0012309191515669227, + 0.00699680345132947, + -0.0021796231158077717, + -0.0037238188087940216, + -0.02040468156337738, + -0.005356761161237955, + -0.01202697679400444, + 0.0022115721367299557, + -0.0015974437119439244, + -0.0024156898725777864, + 0.016414621844887733, + -0.0016870780382305384, + -0.004359246231615543, + -0.02455093525350094, + 0.018814336508512497, + -0.005559104029089212, + -0.023500172421336174, + 0.026169678196310997, + -0.00018736683705355972, + 0.006673764903098345, + -0.011955979280173779, + -0.003695419756695628, + 0.004543839953839779, + -0.0029730203095823526, + -0.02351437136530876, + -0.0021441245917230844, + 0.001005502068437636, + 0.023826761171221733, + 0.01211217325180769, + 0.005679800175130367, + -0.020986860617995262, + 0.0015885690227150917, + 0.016556616872549057, + -0.01186368241906166, + -0.00974795687943697, + 0.006932905875146389, + 0.01669861190021038, + -0.004625487141311169, + 0.009946749545633793, + 0.009116078726947308, + 0.008988283574581146, + 0.024238545447587967, + 0.0003736243525054306, + -0.008718492463231087, + -0.01706779934465885, + 0.00635072635486722, + -0.018217958509922028, + -0.0023659917060285807, + -0.015250262804329395, + 0.011267303489148617, + -0.02996094524860382, + 0.00805821642279625, + 0.0008825876866467297, + -0.0035072765313088894, + 0.0034824274480342865, + -0.00312034017406404, + -0.0027866519521921873, + -0.00272630387917161, + 0.016244227066636086, + 0.015931839123368263, + 0.018388351425528526, + 0.03657791018486023, + 0.024565134197473526, + -0.002218671841546893, + -0.003627972211688757, + -0.017039399594068527, + 0.0046432362869381905, + -0.0034859771840274334, + -0.017252393066883087, + 0.021569039672613144, + -0.004064606968313456, + 0.019254522398114204, + 0.0037806169129908085, + 0.008001417852938175, + 0.006861908361315727, + 0.010457932017743587, + -0.01837415248155594, + -0.009229674935340881, + -0.015179265290498734, + -0.011317001655697823, + -0.0011173231760039926, + -0.006127084139734507, + -0.0028132759034633636, + 0.0016116432379931211, + 0.013390128500759602, + 0.006702163722366095, + -0.02851259522140026, + -0.002309193601831794, + 0.04501241445541382, + -7.682151044718921e-5, + -0.0006474084220826626, + 0.00019679618708323687, + -0.0068122101947665215, + 0.003248135559260845, + 0.022903792560100555, + -0.024408940225839615, + 0.004483492113649845, + -0.01240326277911663, + 0.019836701452732086, + -0.03339722380042076, + 0.0016009935643523932, + -0.022946391254663467, + 0.01001064758747816, + 0.011288602836430073, + 0.020688671618700027, + -0.022903792560100555, + -0.0009495915728621185, + -0.013191335834562778, + 0.010408233851194382, + -0.022889593616127968, + -0.0011856582714244723, + 0.011352499946951866, + 0.0052999635227024555, + -0.0044089448638260365, + -0.00792332086712122, + 0.0030546674970537424, + -0.022165419533848763, + 0.011835283599793911, + -0.010919415391981602, + 0.016570815816521645, + -0.019254522398114204, + -0.01648561842739582, + 0.006819309666752815, + -0.021767834201455116, + 0.014398292638361454, + -0.010181041434407234, + 0.01787717081606388, + 0.013532123528420925, + 0.012005677446722984, + -0.016954202204942703, + 0.01143769733607769, + 0.002667731139808893, + -0.021455444395542145, + -0.0034771026112139225, + -0.00472488347440958, + 0.0020145541056990623, + 0.0025541349314153194, + -0.013496624305844307, + -0.028810786083340645, + 0.010727722197771072, + 0.006368475500494242, + 0.0039048625621944666, + 0.004618387203663588, + -0.004004259128123522, + -1.14954937089351e-5, + 0.025431305170059204, + 0.02480652555823326, + -0.013858712278306484, + 0.015917640179395676, + 0.004526090808212757, + -0.0029197721742093563, + -0.012651754543185234, + 0.017749374732375145, + -0.010592826642096043, + 0.030216535553336143, + -0.008470001630485058, + 0.00915867742151022, + 0.010436632670462132, + 0.03001774288713932, + -0.00503372261300683, + 0.008036917075514793, + -0.011345400474965572, + -0.002568334573879838, + 0.03243165835738182, + 0.00635072635486722, + -0.016783809289336205, + 0.004582888446748257, + 0.006673764903098345, + -0.014739081263542175, + -0.017223993316292763, + -0.0025559100322425365, + 0.00832090713083744, + -0.02820020727813244, + 0.012168971821665764, + 0.004799430724233389, + -0.010649625211954117, + -0.011196305975317955, + -0.01648561842739582, + -0.013667019084095955, + 0.019723106175661087, + 0.03796946257352829, + 0.001801561564207077, + 0.008633296005427837, + 0.005019523203372955, + -0.0007689916528761387, + 0.027788421139121056, + -0.009052181616425514, + -0.015150866471230984, + 0.01685480587184429, + 0.007468936964869499, + 0.003716719103977084, + -0.00688675744459033, + 0.025161514058709145, + 0.0071210493333637714, + 0.005445508286356926, + 0.009520764462649822, + 0.016783809289336205, + -0.007284343242645264, + -0.008051116019487381, + -0.01841675117611885, + 0.009400068782269955, + -0.006698613986372948, + 0.0030475675594061613, + 0.003109690500423312, + -0.006315227597951889, + 0.00629747798666358, + 0.019254522398114204, + -0.014895275235176086, + -0.011267303489148617, + 0.014007806777954102, + -0.019424915313720703, + 0.00576144689694047, + 0.034334391355514526, + 0.0005324812373146415, + -0.01750798337161541, + 0.008115014061331749, + 0.022974791005253792, + 0.02465033158659935, + 0.016684412956237793, + -0.00485977903008461, + 0.01959531009197235, + 0.007525735069066286, + -0.005683349911123514, + 0.013517923653125763, + -0.022165419533848763, + 0.01664181426167488, + -0.010436632670462132, + 0.02389775775372982, + 0.0420021191239357, + 0.023755762726068497, + -0.0014421367086470127, + -0.009769256226718426, + -0.0016924028750509024, + 0.005370961036533117, + -0.005427758675068617, + 0.00024183523782994598, + -0.007298543117940426, + -0.004103655461221933, + -0.0012646429240703583, + 0.0010587502038106322, + 0.0020287535153329372, + -0.04015618562698364, + -0.008129213936626911, + -0.005665600299835205, + 0.007852323353290558, + -0.012907345779240131, + 0.01441959198564291, + 0.006908056791871786, + -0.0030191687401384115, + 0.00038649264024570584, + 0.006691514514386654, + 0.02277599833905697, + 0.003478877479210496, + 0.009570462629199028, + 0.0041001057252287865, + -0.005679800175130367, + -0.0008852500468492508, + -0.0067696115002036095, + -0.020475678145885468, + -0.0029002479277551174, + 0.005175717640668154, + 0.022534606978297234, + 0.01224706880748272, + 0.012630455195903778, + 0.000977990566752851, + 0.021498043090105057, + -0.024621933698654175, + -0.02550230175256729, + -0.00033280078787356615, + 0.01407170481979847, + 0.0023304929491132498, + 0.01632942445576191, + 0.01256655715405941, + -0.022307414561510086, + -0.006815759930759668, + -0.01055022794753313, + -0.012325165793299675, + 0.024834925308823586, + -0.008526799269020557, + -0.013233933597803116, + 0.002665956038981676, + -0.004142703954130411, + -0.00798011850565672, + 0.004291798919439316, + -0.003915512003004551, + 0.01702520065009594, + 0.008583597838878632, + -0.030756115913391113, + 0.008072415366768837, + 0.02673765830695629, + -0.001438586856238544, + -0.011210504919290543, + 0.001384451286867261, + 0.009435568004846573, + 0.006208731327205896, + 0.005967339966446161, + -0.00012712989700958133, + 0.020376281812787056, + -0.009769256226718426, + -0.005062121897935867, + -0.013979407958686352, + 0.007902021519839764, + 0.021767834201455116, + -0.01938231661915779, + -0.006517570465803146, + 0.024778127670288086, + 0.00902378186583519, + 0.011033011600375175, + 0.03856584057211876, + 0.011089809238910675, + -0.01237486395984888, + -0.0029091225005686283, + 0.0019329069182276726, + 0.0210578590631485, + -0.0020394031889736652, + 0.013872911222279072, + 0.008498400449752808, + -0.0022310963831841946, + 0.00722399540245533, + -0.03143769130110741, + -0.008498400449752808, + -0.005711748730391264, + 0.01804756373167038, + 0.007610931992530823, + -0.012154771946370602, + -0.016769608482718468, + 0.003418529639020562, + -0.00039425797876901925, + 0.027674825862050056, + 0.011295702308416367, + -0.0021831730846315622, + -0.030301732942461967, + -0.005282213911414146, + 0.0020979761611670256, + 0.01039403397589922, + -0.010223640128970146, + -8.037138468353078e-5, + 0.01312743779271841, + -0.019353918731212616, + 0.016826407983899117, + 0.015562651678919792, + 0.01506566908210516, + -0.011260203085839748, + -0.01922612264752388, + -0.007525735069066286, + -0.005867943167686462, + 0.010060345754027367, + -0.010933615267276764, + -0.007234645076096058, + -0.010315936990082264, + 0.021682636812329292, + 0.008959884755313396, + -0.008022717200219631, + -0.004195952322334051, + -0.007270143833011389, + 0.005654950626194477, + -0.00016384891932830215, + -0.022790197283029556, + 0.01723819226026535, + 0.018643943592905998, + 0.006059636361896992, + 0.01567624695599079, + -0.015988636761903763, + 0.022321613505482674, + 0.022264815866947174, + 0.003940361086279154, + 0.004913026932626963, + 0.008519699797034264, + 0.004004259128123522, + 0.002701454795897007, + -0.016840606927871704, + -0.023997154086828232, + 0.009201276116073132, + 0.037628673017024994, + -0.011515794321894646, + 0.015875041484832764, + -0.010919415391981602, + -0.017692577093839645, + -0.02330137975513935, + 0.0001478744816267863, + -0.004870428238064051, + -0.011991477571427822, + -0.01003904640674591, + -0.004266949836164713, + -0.010209440253674984, + 0.007568333297967911, + 0.01928292028605938, + -0.007994318380951881, + -0.006024137604981661, + 0.009833153337240219, + 0.013177135959267616, + -0.012658854015171528, + 0.009506565518677235, + 0.010195241309702396, + -0.004543839953839779, + -0.006190981715917587, + 0.004518990870565176, + -0.0016214053612202406, + -0.000670482637360692, + 0.007490236312150955, + -0.013709616847336292, + -0.00654951948672533, + 0.0024068152997642756, + 0.00030662043718621135, + 0.00046237121568992734, + -0.014895275235176086, + -0.004966275300830603, + -0.0033368824515491724, + 0.014384093694388866, + 0.004085906315594912, + 0.01380191370844841, + 0.005683349911123514, + 0.008640395477414131, + -0.020504077896475792, + -0.007259494159370661, + 0.020646072924137115, + 0.009506565518677235, + -0.014625485055148602, + 0.01143769733607769, + -0.011153707280755043, + 0.008945684880018234, + -0.005644301418215036, + -0.00036474966327659786, + 0.005271564237773418, + -0.011963078752160072, + -0.004227900877594948, + -0.008626196533441544, + 0.008051116019487381, + 0.024295344948768616, + 0.005449058022350073, + -0.006826409604400396, + -0.021441245451569557, + 0.004831379745155573, + -0.01259495597332716, + 0.018785938620567322, + 0.024252746254205704, + 0.00883208867162466, + -0.007653530221432447, + -0.00033346639247611165, + -0.009336170740425587, + -0.014291796833276749, + 0.026056082919239998, + 0.009329071268439293, + 0.0028292504139244556, + -0.01503727026283741, + -0.0031664883717894554, + -0.023485973477363586, + 0.0011821084190160036, + 0.00401490880176425, + -0.020447280257940292, + -0.010465031489729881, + -0.026595663279294968, + 0.003319133073091507, + -0.014298896305263042, + -0.004842029418796301, + 0.01766417734324932, + 0.007025202736258507, + -0.0031522889621555805, + -0.017678378149867058, + 0.0037238188087940216, + 0.012680153362452984, + -0.004135604482144117, + 0.005051472224295139, + -0.008555199019610882, + -0.007781325839459896, + 0.0006762511911801994, + 0.013894210569560528, + -0.003965210169553757, + 0.012516858987510204, + -0.02631167322397232, + 0.02036208286881447, + 0.007767126429826021, + -0.0003893769171554595, + 0.01098331343382597, + -0.01533546019345522, + -0.007326941937208176, + -0.00805821642279625, + -0.007646430749446154, + -0.025956686586141586, + 0.004277599509805441, + 0.007937520742416382, + -0.012431662529706955, + 0.0011661339085549116, + 0.009882851503789425, + 0.01380191370844841, + -0.010564427822828293, + 0.02014908939599991, + 0.0043876455165445805, + 0.015576851554214954, + 0.001010826905258, + -0.0034824274480342865, + 0.021611638367176056, + 0.016556616872549057, + -0.003823215374723077, + 0.03092651069164276, + 0.042399708181619644, + -0.01114660780876875, + -0.00629747798666358, + -0.014036205597221851, + -0.020745469257235527, + 0.02287539467215538, + -0.0058430940844118595, + 0.0005400247173383832, + -0.0073766401037573814, + -0.00446929270401597, + 0.012197370640933514, + 0.02002129517495632, + -0.008391904644668102, + 0.004540290217846632, + 0.01783457212150097, + -0.01928292028605938, + 0.01783457212150097, + -0.003448703559115529, + -0.015647849068045616, + 0.013013841584324837, + 0.006663115229457617, + 0.021952426061034203, + 0.007390839513391256, + -0.0036599209997802973, + -0.007965919561684132, + 0.014937873929738998, + -0.0006997691234573722, + 0.020603474229574203, + 0.015534252859652042, + -0.00024338830553460866, + 0.006343626417219639, + 0.007518635131418705, + -0.00027844333089888096, + 0.004618387203663588, + 6.511801620945334e-5, + 0.011835283599793911, + -0.005527155473828316, + 0.012126373127102852, + 0.004838479682803154, + 0.000560880231205374, + -0.0070997499860823154, + 0.0017403261736035347, + 0.007270143833011389, + -0.0018867584876716137, + -0.006652465555816889, + 0.008306707255542278, + -0.00317536317743361, + -0.01567624695599079, + 0.011998577043414116, + -0.0052999635227024555, + -0.02578629180788994, + 0.009371669963002205, + 0.005076321307569742, + 0.014078804291784763, + 0.005672700237482786, + -0.004178202711045742, + -0.02426694519817829, + 0.005339012015610933, + 0.006698613986372948, + 0.0037025196943432093, + 0.03206247091293335, + -0.005633651744574308, + 0.00818601157516241, + 0.02432374283671379, + 0.00048322672955691814, + 0.00626907916739583, + 0.007752927020192146, + 0.0008599571883678436, + 0.0016888530226424336, + 0.01772097498178482, + -0.016286825761198997, + 0.012694353237748146, + -0.018643943592905998, + -0.0003374599909875542, + -0.009336170740425587, + -0.0049378760159015656, + -0.02110045589506626, + -0.01675540953874588, + 0.012012776918709278, + 0.010543128475546837, + 0.00477813184261322, + 0.016088033095002174 + ], + "6cdd0d74-92f8-4532-88ea-c99c48ee099f": [ + -0.016676165163517, + -0.02851826697587967, + -0.01651412807404995, + 0.050960198044776917, + -0.03448657691478729, + -0.023063067346811295, + 0.01621706411242485, + 0.044667813926935196, + 0.0014262509066611528, + 0.033892448991537094, + 0.01886364445090294, + -0.0159470047801733, + 0.020186936482787132, + -0.014677725732326508, + 0.017351312562823296, + 0.023994771763682365, + -0.051122233271598816, + 0.015582423657178879, + 0.014785748906433582, + -0.0269924309104681, + 0.0437496118247509, + -0.003882103133946657, + -0.029949581250548363, + -0.0023714585695415735, + 0.013273417018353939, + -0.0006088993977755308, + 0.00011888940935023129, + 0.0060662077739834785, + -0.04215626418590546, + 0.002092959824949503, + 0.010917148552834988, + -0.006126971449702978, + 0.012895333580672741, + 0.008317828178405762, + 0.010302764363586903, + -0.033514365553855896, + 0.013732518069446087, + 0.022468937560915947, + -0.0327041856944561, + -0.00709580909460783, + -0.004587633069604635, + 0.051473312079906464, + -0.003110746154561639, + -0.0050298552960157394, + -0.005590228363871574, + 0.010235249064862728, + -0.0543629452586174, + -0.005256029777228832, + 0.012334960512816906, + 0.019147207960486412, + -0.0010405724169686437, + -0.0061100926250219345, + 0.017918437719345093, + 0.01651412807404995, + 0.02048400044441223, + -0.05236450582742691, + 0.014488684013485909, + 0.02603372000157833, + 0.019241727888584137, + -0.07329410314559937, + -0.0018650973215699196, + -0.027194976806640625, + 0.02155073545873165, + -0.009479083120822906, + -0.0166491586714983, + 0.03745723143219948, + -0.04142710193991661, + 0.004189295694231987, + -0.0214967243373394, + 0.02080807276070118, + 0.026479318737983704, + 0.0545249804854393, + 0.005863663274794817, + 0.026911413297057152, + 0.04058992117643356, + -0.014934281818568707, + 0.05098720267415047, + 0.02392725832760334, + -0.0047294143587350845, + -0.023198097944259644, + 0.006336267571896315, + -0.010248752310872078, + 0.00885794684290886, + 0.016892211511731148, + 0.04002279415726662, + 0.010086716152727604, + -0.03432454168796539, + -0.04798954352736473, + 0.029463473707437515, + -0.036403998732566833, + -0.004965716041624546, + 0.015676945447921753, + 0.0034601353108882904, + -0.0273435078561306, + 0.007959999144077301, + 0.021361693739891052, + 0.02838323637843132, + -0.011457267217338085, + -0.004374961368739605, + -0.02070004865527153, + 0.012004137970507145, + 0.012307954952120781, + 0.038024354726076126, + -0.0322180800139904, + 0.029058385640382767, + -0.006960779428482056, + 0.017810413613915443, + 0.012422730214893818, + -0.01651412807404995, + 0.038078367710113525, + 0.01867460273206234, + -0.04161614552140236, + -0.018917657434940338, + -0.004145410843193531, + -0.051122233271598816, + -0.038267407566308975, + -0.02083507925271988, + -0.00025761130382306874, + -0.024953482672572136, + -0.013502967543900013, + 0.01968732662498951, + 0.006808871403336525, + -0.023697707802057266, + 0.007804715074598789, + -0.02480495162308216, + 0.022239387035369873, + -0.0039799995720386505, + 0.03524274379014969, + 0.0018718488281592727, + 0.011585545726120472, + -0.04088698327541351, + 0.001227082102559507, + -0.000261409004451707, + -0.025615129619836807, + 0.031948018819093704, + 0.015501406043767929, + 0.018985172733664513, + 0.06924321502447128, + -0.011531533673405647, + 0.01404308620840311, + -0.04820559173822403, + -0.0322180800139904, + 0.010120473802089691, + -0.009998947381973267, + -0.0162710752338171, + -0.021807292476296425, + -0.02638479694724083, + 0.03675507754087448, + -0.016905715689063072, + 0.006758234929293394, + -0.05676647275686264, + -0.019228225573897362, + -0.01995738595724106, + -0.010721355676651001, + 0.03440555930137634, + -0.029328444972634315, + 0.010559320449829102, + 0.02589869126677513, + 0.013185647316277027, + 0.049042776226997375, + 0.046639248728752136, + -0.008047768846154213, + 0.004341203719377518, + 0.02277950569987297, + 0.05179738253355026, + 0.004013757221400738, + 0.042507339268922806, + 0.013563730753958225, + 0.005330296233296394, + 0.020362474024295807, + 0.021591244265437126, + -0.0323801152408123, + 0.025358572602272034, + -0.008473112247884274, + 0.01368525717407465, + -0.013637997210025787, + 0.040238842368125916, + 0.027032939717173576, + 0.007136318366974592, + -0.04372260719537735, + -0.01089689414948225, + -0.022684985771775246, + 0.008884952403604984, + 0.010876639746129513, + 0.008223307318985462, + 0.013550227507948875, + 0.046882301568984985, + 0.017540354281663895, + -0.02176678366959095, + -0.020956605672836304, + 0.008020762354135513, + -0.00233770115301013, + -0.011646308936178684, + -0.008979473263025284, + -0.0442357212305069, + -0.029841557145118713, + 0.01706775091588497, + 0.022360913455486298, + -0.004769923165440559, + 0.0334063395857811, + -0.0107483621686697, + -0.03932064026594162, + -0.038105372339487076, + 0.022414924576878548, + -0.03432454168796539, + 0.0019562423694878817, + -0.015987513586878777, + 0.016001015901565552, + 0.05036606639623642, + -0.04129207506775856, + 0.013827037997543812, + -0.05271558463573456, + -0.001777328085154295, + -0.0049589648842811584, + -0.02521003969013691, + 0.023225104436278343, + 0.0009393001673743129, + 0.015784969553351402, + 0.004300694912672043, + -0.04777349904179573, + 0.004685529507696629, + 0.0027630445547401905, + 0.011875859461724758, + -0.02824820764362812, + -0.031353890895843506, + -0.00710931234061718, + -0.05217546597123146, + 0.022401422262191772, + -0.024764440953731537, + -0.015582423657178879, + 0.02491297386586666, + -0.02080807276070118, + 0.010194740258157253, + -0.00758191617205739, + -0.015919998288154602, + 0.029490480199456215, + 0.031677961349487305, + 0.011970380321145058, + -0.021240167319774628, + -0.001091208541765809, + -0.018742118030786514, + 0.0037875822745263577, + 0.01621706411242485, + -0.023616690188646317, + 0.005748888477683067, + 0.0273435078561306, + 0.01305736880749464, + 0.07005339115858078, + 0.019592804834246635, + 0.023670701310038567, + 0.03645801171660423, + -0.0021250294521450996, + -0.008108532056212425, + 0.0030904915183782578, + -0.04140009731054306, + 0.0435335673391819, + 0.051446303725242615, + 0.008513621054589748, + -0.01134924404323101, + -3.924299744539894e-5, + -0.0162980817258358, + 0.00891195796430111, + -0.009195520542562008, + 0.064112089574337, + 0.024048784747719765, + -0.019025681540369987, + 0.021253669634461403, + 0.022414924576878548, + 0.0030466069001704454, + 0.019754840061068535, + 0.023346630856394768, + 0.0164601169526577, + 0.01133574079722166, + 0.03016562946140766, + -0.011214214377105236, + -0.006207989063113928, + 0.01508281473070383, + -0.000930860813241452, + 0.009121254086494446, + 0.011477522552013397, + -0.009236029349267483, + 0.01659514755010605, + 0.013064120896160603, + -0.018958166241645813, + -0.003470262512564659, + 0.04094099625945091, + -0.02091609686613083, + -0.02873431332409382, + -0.029706528410315514, + -0.007122815120965242, + 0.013367937877774239, + 0.007932993583381176, + -0.003325105644762516, + -0.008385342545807362, + -0.025277554988861084, + 0.0007283163140527904, + -0.01022849790751934, + 0.029895570129156113, + 0.0021013992372900248, + 2.795536238409113e-5, + -0.025709649547934532, + 0.004057641606777906, + 0.02192881889641285, + -0.0435335673391819, + 0.015622933395206928, + -0.013813535682857037, + 0.06043928116559982, + 0.044856857508420944, + -0.031380895525217056, + 0.005613858811557293, + -0.0002422094694338739, + -0.0550650991499424, + -0.022333906963467598, + -0.01998439058661461, + 0.0037707036826759577, + 0.016824696213006973, + -0.023832736536860466, + 0.004925207234919071, + -0.02029496058821678, + -0.01741882786154747, + -0.02318459376692772, + -5.90754825680051e-5, + -0.04399266839027405, + 0.038132380694150925, + 0.04601811245083809, + -0.03551280498504639, + 0.024845460429787636, + 0.005991941783577204, + -0.02318459376692772, + 0.005836657714098692, + -0.031056825071573257, + -0.023549174889922142, + -0.009917929768562317, + 0.01515032909810543, + -0.04599110782146454, + -0.03084077686071396, + -0.042588356882333755, + -0.07783110439777374, + 0.006062832195311785, + -0.026155248284339905, + -0.017702389508485794, + -0.014799252152442932, + 0.0166491586714983, + 0.008959218859672546, + -0.031867001205682755, + -0.017162270843982697, + -0.012355214916169643, + -0.004658523481339216, + 0.017459336668252945, + -0.0015022051520645618, + 0.0007700910791754723, + 0.0009468955686315894, + 0.03278520330786705, + 0.006164104677736759, + 0.018661100417375565, + -0.005384308286011219, + -0.0005371649167500436, + -0.002965589053928852, + 0.03645801171660423, + -0.029814550653100014, + -0.002206047298386693, + -0.031731974333524704, + 0.004229804500937462, + -0.004293943755328655, + 0.001792518887668848, + -0.029463473707437515, + 0.014637215994298458, + -0.001420343411155045, + -0.01990337297320366, + 0.008709413930773735, + 0.01359073631465435, + 0.008446105755865574, + -0.020740557461977005, + -0.026654856279492378, + -0.023036062717437744, + -0.013800032436847687, + 0.04985295608639717, + -0.03686309978365898, + 0.004864444024860859, + 0.013678506016731262, + -0.014070091769099236, + -0.04118404909968376, + -0.031083829700946808, + 0.02059202454984188, + 0.02707344852387905, + -0.012706291861832142, + 0.006832501385360956, + -0.002773171989247203, + -0.018850142136216164, + -0.021321184933185577, + -0.0018752245232462883, + -0.0043884641490876675, + -0.0036525526084005833, + 0.003225521184504032, + -0.0007004663930274546, + 0.0008017387008294463, + 0.014650719240307808, + -0.005998692940920591, + 0.00048399699153378606, + 0.009816656820476055, + -0.020578522235155106, + -0.031731974333524704, + -0.01776990480720997, + -0.01531236432492733, + 0.029814550653100014, + 0.01101842150092125, + -0.011504528112709522, + 0.01029601227492094, + 0.031948018819093704, + 0.015298862010240555, + -0.003747073467820883, + -0.013199150562286377, + -0.023940760642290115, + 0.02515602856874466, + 0.02819419465959072, + 0.0164601169526577, + -0.015852482989430428, + 0.024102795869112015, + -0.024345850571990013, + 0.03675507754087448, + 0.018850142136216164, + 0.023616690188646317, + 0.02102411910891533, + 0.010599829256534576, + 0.013374689035117626, + 0.018391041085124016, + -0.0021807292941957712, + -0.010262254625558853, + -0.013712262734770775, + 0.012740049511194229, + 0.0442357212305069, + 0.03891555219888687, + 0.004972467664629221, + 0.00016171913011930883, + -0.04194021597504616, + -0.03316328674554825, + -0.0070890579372644424, + -0.035944897681474686, + 0.03508070856332779, + -0.010120473802089691, + -0.019673822447657585, + 0.026425307616591454, + -0.0033031634520739317, + 0.013935062102973461, + -0.06367999315261841, + 0.0063328915275633335, + -0.05709054693579674, + 0.019106699153780937, + -0.03421651944518089, + -0.042372312396764755, + 0.013043866492807865, + 0.042453330010175705, + -0.03967171907424927, + -0.019781846553087234, + 0.009931432083249092, + -0.002062578219920397, + 0.019228225573897362, + 0.004685529507696629, + 0.060277245938777924, + -0.06184358894824982, + -0.008959218859672546, + -0.003477014135569334, + 0.009053739719092846, + -0.009607360698282719, + 0.007035045884549618, + -0.008398845791816711, + 0.033784423023462296, + -0.006694096140563488, + -0.008270567283034325, + 0.03967171907424927, + 0.007345614023506641, + -0.008601389825344086, + -0.021888310089707375, + 0.016608649864792824, + 0.014556198380887508, + 0.010187989100813866, + -0.0023545799776911736, + -0.03251514583826065, + -0.01359073631465435, + -0.0003715425846166909, + -0.007939744740724564, + 0.020105918869376183, + 0.018445054069161415, + -0.024021778255701065, + -0.0070823063142597675, + 0.010599829256534576, + -0.04312847554683685, + -0.0010903646470978856, + 0.02873431332409382, + -0.005867039319127798, + -0.038294415920972824, + 0.021253669634461403, + 0.025574618950486183, + 0.004189295694231987, + -0.013840541243553162, + -0.01856658048927784, + 0.023144084960222244, + -0.011815096251666546, + 0.014407666400074959, + -0.025561116635799408, + 0.004597760271281004, + -0.004253434482961893, + -0.0009190457058139145, + -0.02113214321434498, + -0.03427053242921829, + 0.02803215943276882, + -0.02381923422217369, + 0.03240711987018585, + 0.010613332502543926, + -0.004449227824807167, + -0.057900723069906235, + 0.031164847314357758, + -0.031677961349487305, + 0.008378591388463974, + -0.020929599180817604, + 0.005600355565547943, + 0.004918455611914396, + -0.03648501634597778, + 0.04628816992044449, + 0.013516469858586788, + 0.016824696213006973, + -0.038483455777168274, + -0.03043568879365921, + -0.013651499524712563, + -0.03732220083475113, + 0.010025952942669392, + -0.00806802324950695, + -0.007818218320608139, + 0.05025804415345192, + -0.02042998932301998, + -0.006697471719235182, + 0.03518873080611229, + -0.016527632251381874, + -0.0017207843484357, + 0.017027242109179497, + -0.004776674788445234, + 0.0166221521794796, + -0.0028930106200277805, + 0.007905987091362476, + -0.013698760420084, + -0.02846425399184227, + 0.006255249492824078, + -0.020065410062670708, + 0.00010565017146291211, + -0.00597506295889616, + 0.019174212589859962, + -0.009384562261402607, + 0.008061271160840988, + -0.011646308936178684, + 0.01776990480720997, + -0.05009600892663002, + 0.031650956720113754, + 0.004115029238164425, + -0.002038948005065322, + -0.0018904154421761632, + -0.01308437529951334, + 0.018066970631480217, + 0.001908981939777732, + -0.008425851352512836, + -0.022455435246229172, + -0.008223307318985462, + 0.03572884947061539, + 0.0159470047801733, + 0.006768362130969763, + -0.018080472946166992, + 0.00018144612840842456, + -0.0010675783269107342, + 0.01952529139816761, + 0.0013578921789303422, + 0.00594130577519536, + 0.009809905663132668, + -0.0028221202082931995, + 0.0058434088714420795, + -0.01082937978208065, + -0.010606580413877964, + 0.00980315450578928, + -0.008810685947537422, + 0.018917657434940338, + -0.0273705143481493, + -0.02168576605618, + 0.001376458676531911, + 0.014326647855341434, + 0.011956877075135708, + -0.011572042480111122, + -0.0013629557797685266, + 0.008061271160840988, + -0.012172925285995007, + 0.008203052915632725, + 0.0053235446102917194, + -0.017135266214609146, + 0.008648650720715523, + -0.012267445214092731, + -0.012247190810739994, + -0.017648378387093544, + -0.01084288302809, + 0.04796253889799118, + 0.0012524002231657505, + 0.013361185789108276, + 0.03878052160143852, + -8.017386426217854e-5, + 0.026830395683646202, + 0.026803389191627502, + -0.009458828717470169, + -0.014718234539031982, + -0.026182252913713455, + 0.013948565348982811, + -0.005580101162195206, + 0.009290041401982307, + 0.016878709197044373, + 0.011997385881841183, + -0.006434164009988308, + -0.033865440636873245, + 0.04156213253736496, + -0.0028457504231482744, + -0.0028626290149986744, + -0.0028609412256628275, + -0.010883391834795475, + 0.006461169570684433, + 0.012348463758826256, + -0.022901032119989395, + 0.03702513501048088, + -0.008533875457942486, + 0.046612244099378586, + -0.014920778572559357, + -0.012024392373859882, + 0.03321729972958565, + -0.029436469078063965, + -0.0275325495749712, + -0.00704854866489768, + -0.0033588630612939596, + -0.02267148159444332, + -0.038024354726076126, + 0.004813808016479015, + -0.005661118775606155, + -0.00030909135239198804, + -0.0008228370570577681, + 0.029355451464653015, + -0.004830686375498772, + -0.0042736888863146305, + -0.014340151101350784, + -0.024386359378695488, + -0.01933624967932701, + 0.026654856279492378, + 0.06249173358082771, + -0.010093468241393566, + 0.007541407365351915, + 0.010262254625558853, + 0.012827819213271141, + 0.002666835905984044, + 0.01602802239358425, + 0.012935842387378216, + -0.00985716562718153, + -0.026911413297057152, + 0.026762880384922028, + 0.015811974182724953, + -0.018472058698534966, + 0.01875562220811844, + -0.001459164428524673, + 0.009317046962678432, + -0.0023478283546864986, + 0.03759226202964783, + -0.04823260009288788, + 0.012226936407387257, + 0.01436715666204691, + 0.032002031803131104, + -0.015501406043767929, + 0.004007005598396063, + -0.011720575392246246, + 0.015798471868038177, + 0.012848073616623878, + -0.02259046398103237, + -0.036052923649549484, + 0.009992195293307304, + -0.003218769794330001, + -0.014988293871283531, + 0.016662660986185074, + 0.009303544647991657, + 0.0012464926112443209, + 0.015001796185970306, + -0.038078367710113525, + -0.01966032013297081, + -0.022509446367621422, + -0.023549174889922142, + 0.05074414983391762, + -0.05746862664818764, + -0.0013992449967190623, + -0.014637215994298458, + -0.020092414692044258, + -0.009769396856427193, + -0.01878262683749199, + -0.013962067663669586, + 0.018256012350320816, + -0.023562677204608917, + 0.04131907969713211, + 0.0024946732446551323, + -0.019349751994013786, + 0.004111653659492731, + -0.007278099190443754, + -0.0059210509061813354, + -0.007588667329400778, + -0.019619811326265335, + -0.02267148159444332, + -0.008297573775053024, + -0.011058930307626724, + -0.005296539049595594, + -0.011565291322767735, + -0.01298985444009304, + -0.029112396761775017, + 0.0004164821293670684, + -0.0019714331720024347, + -0.01936325430870056, + 0.027654075995087624, + 0.0162440687417984, + 0.028950361534953117, + -0.0042736888863146305, + 0.01651412807404995, + -0.022955045104026794, + 0.024291837587952614, + -0.0021655382588505745, + 0.03983375430107117, + -0.009330550208687782, + 0.027330005541443825, + 0.006710974499583244, + -0.02595270238816738, + -0.03489166870713234, + -0.03491867333650589, + -0.010167734697461128, + -0.0021554110571742058, + 0.018445054069161415, + 0.008020762354135513, + 0.026020217686891556, + -0.01436715666204691, + 0.014353654347360134, + 0.00410827761515975, + 0.013212653808295727, + 0.01297635119408369, + -0.010269006714224815, + 0.009762645699083805, + 0.03062472864985466, + 0.0066704656928777695, + 0.003056734101846814, + 0.0030854279175400734, + -0.0068932645954191685, + -0.02851826697587967, + -0.013050617650151253, + -0.03427053242921829, + 0.029841557145118713, + 0.009992195293307304, + -0.01747283898293972, + -0.015622933395206928, + 0.014934281818568707, + -0.029760539531707764, + 0.009533095173537731, + -0.024642914533615112, + -0.01204464677721262, + 0.022050345316529274, + 0.029706528410315514, + 0.014691228047013283, + -0.0023461405653506517, + 0.023252109065651894, + -0.009593858383595943, + 0.012382220476865768, + 0.013435452245175838, + -0.03767327964305878, + -0.03945567086338997, + -0.014718234539031982, + -0.00025318062398582697, + 0.01936325430870056, + 0.00047175990766845644, + -0.012753552757203579, + 0.03659304231405258, + 0.011227717623114586, + 0.031839996576309204, + 0.029301438480615616, + 0.011734078638255596, + 0.01818849705159664, + 0.009330550208687782, + -0.04861068353056908, + -0.03710615262389183, + 0.01316539291292429, + -0.04361458495259285, + -0.03278520330786705, + 0.036160945892333984, + -0.004516742657870054, + 0.0045775058679282665, + -0.02323860675096512, + 0.03921261802315712, + -0.009944935329258442, + 0.002872756216675043, + -0.012814315967261791, + -0.012240439653396606, + -0.019133703783154488, + -0.006775113753974438, + -0.03059772402048111, + 0.006849380210042, + -0.01515032909810543, + -0.0033689902629703283, + 0.020497504621744156, + -0.0070890579372644424, + -0.0018971668323501945, + 0.02373821660876274, + -0.013408446684479713, + 0.024615909904241562, + 0.029868563637137413, + -0.002282001543790102, + -0.0330282561480999, + -0.0038415940944105387, + -0.015541914850473404, + -0.03707914799451828, + 0.01862059161067009, + -0.0016060092020779848, + 0.029274431988596916, + -0.015757963061332703, + 0.01768888719379902, + -0.04577505961060524, + -0.006025698967278004, + 0.019268734380602837, + -0.0032677180133759975, + 0.03961770609021187, + 0.02261747047305107, + -0.021334687247872353, + -0.006464545615017414, + 0.021240167319774628, + -0.011612552218139172, + 0.0032069548033177853, + -0.029436469078063965, + 0.020659539848566055, + -0.0032778452150523663, + 0.009992195293307304, + 0.016095537692308426, + -0.0067886165343225, + 0.00044517594506032765, + -0.006869634613394737, + 0.0020490752067416906, + 0.0217937882989645, + 0.023414144292473793, + -0.008459609001874924, + 0.004206174053251743, + -0.036106932908296585, + 0.029544491320848465, + 0.0015764713753014803, + -0.031191853806376457, + 0.014596707187592983, + 0.007885732688009739, + 0.010464799590408802, + -0.003193451790139079, + 0.023306122049689293, + 0.015298862010240555, + 0.020659539848566055, + 0.019147207960486412, + 0.01944427192211151, + -0.03637699410319328, + 0.03664705157279968, + 0.024521388113498688, + -0.014866766519844532, + 0.009796402417123318, + -0.0021857928950339556, + 0.006174231879413128, + -0.015042304992675781, + -0.006461169570684433, + 0.0271814726293087, + 0.026317283511161804, + -0.01766188070178032, + 0.003639049595221877, + -0.00520876981317997, + -0.018769124522805214, + -0.00935080461204052, + 0.009566851891577244, + -0.015393382869660854, + 0.024291837587952614, + -0.01741882786154747, + 0.0023090073373168707, + 0.01968732662498951, + 0.015690447762608528, + 0.028842337429523468, + -0.0003725975111592561, + 0.003088803729042411, + -0.0020355721935629845, + -0.0036187951918691397, + -0.019592804834246635, + -0.025493601337075233, + -0.006353145930916071, + 0.0045775058679282665, + 0.030003592371940613, + -0.014637215994298458, + 0.0017207843484357, + 0.0019393636612221599, + 0.007878981530666351, + 0.005789397284388542, + 0.01309787854552269, + 0.008452857844531536, + 0.0329742468893528, + -0.02408929355442524, + -0.013800032436847687, + -0.03521573916077614, + 0.0161090400069952, + 0.02868030220270157, + 0.028977368026971817, + -0.029922574758529663, + -0.01160580012947321, + 0.0030550463125109673, + -0.03086778335273266, + 0.010586326010525227, + 0.014785748906433582, + 0.031921014189720154, + -0.03529675677418709, + 0.011572042480111122, + -0.008999727666378021, + 0.030057605355978012, + -0.03737621381878853, + -0.008628396317362785, + 0.025601625442504883, + -0.019295740872621536, + -0.027897130697965622, + 0.03089478798210621, + 0.012260694056749344, + 0.005090618506073952, + -0.059899162501096725, + -0.007041797507554293, + -0.017378319054841995, + 0.021780285984277725, + 0.01845855638384819, + 0.03580986708402634, + 0.022603966295719147, + -0.011355995200574398, + 0.004003629554063082, + -0.04804355651140213, + -0.01886364445090294, + 0.005320169031620026, + 0.012260694056749344, + -0.0006435007671825588, + -0.01263202540576458, + -0.025723151862621307, + -0.004550499841570854, + -0.004564003087580204, + -0.02310357615351677, + -0.015690447762608528, + 0.00968162715435028, + 0.014353654347360134, + -0.0056273615919053555, + -0.017810413613915443, + -0.008770177140831947, + 0.023481659591197968, + -0.02849126048386097, + -0.02638479694724083, + -0.021280676126480103, + 0.02651982754468918, + 0.017594365403056145, + -0.015649938955903053, + 0.008533875457942486, + -0.0005139567074365914, + 0.00944532547146082, + -0.019457776099443436, + -0.002567251678556204, + 0.024102795869112015, + 0.023144084960222244, + -0.003662679810076952, + -0.02483195625245571, + -0.010869888588786125, + 0.004104902036488056, + 0.025804169476032257, + -0.006184359081089497, + 0.016284577548503876, + -0.002131780842319131, + -0.010437794029712677, + 0.013118132948875427, + -0.018174994736909866, + 0.024926478043198586, + -0.026236265897750854, + 0.004219677299261093, + -0.0018279642099514604, + 0.0012279261136427522, + -0.0018431550124660134, + 0.008473112247884274, + -0.020875588059425354, + -0.026843897998332977, + -0.038321420550346375, + 0.0029605254530906677, + -0.0007532123709097505, + -0.02819419465959072, + 0.03972572833299637, + -0.007129566743969917, + 0.007217335980385542, + -0.027005935087800026, + 0.007041797507554293, + -0.01659514755010605, + -0.002719159936532378, + 0.010039456188678741, + -0.016851702705025673, + 0.010674095712602139, + 0.019268734380602837, + -0.005215520970523357, + 0.010714604519307613, + 0.0074198804795742035, + 0.019106699153780937, + -0.003838218515738845, + 0.000632107665296644, + -0.014272636733949184, + -0.03256915509700775, + -0.012942594476044178, + -0.015109820291399956, + -0.0011443764669820666, + 0.007548158522695303, + 0.033757418394088745, + 0.048853736370801926, + 0.0023326375521719456, + 0.015690447762608528, + -0.00806802324950695, + -0.055416177958250046, + 0.031596943736076355, + -0.023373635485768318, + -0.006461169570684433, + 0.022414924576878548, + -0.031785983592271805, + -0.017931940034031868, + 0.018012957647442818, + 0.042372312396764755, + -0.03645801171660423, + -0.006292382720857859, + 0.025169530883431435, + -0.044775839895009995, + -0.02761356718838215, + -0.0014473493210971355, + -0.00011962784628849477, + -0.0050669885240495205, + 0.0166221521794796, + -0.000269004434812814, + -0.0017486342694610357, + 0.015960507094860077, + -0.0013840540777891874, + -0.031650956720113754, + -0.029301438480615616, + 0.00044391004485078156, + -0.010336521081626415, + 0.01843154989182949, + -0.012017641216516495, + -0.017594365403056145, + -0.07145769894123077, + -0.0324341282248497, + -0.017675384879112244, + 0.008527123369276524, + 0.005981814581900835, + -0.002349516376852989, + -0.0037808308843523264, + 0.02622276172041893, + 0.019457776099443436, + -0.004975843243300915, + 0.0038112124893814325, + -0.006633332464843988, + -0.015474400483071804, + 0.025750158354640007, + 0.008074774406850338, + 9.10395392565988e-5, + -0.007919490337371826, + -0.020335469394922256, + 0.01535287406295538, + -0.03494567796587944, + -0.0002751229621935636, + 0.005644240416586399, + 0.031677961349487305, + -5.14009443577379e-5, + -0.03132688254117966, + 0.008905206806957722, + 0.0005430724704638124, + -0.02078106626868248, + -0.006673841737210751, + -0.026776384562253952, + -0.0037504490464925766, + 0.01654113456606865, + -0.012085155583918095, + -0.011497776955366135, + -0.012767055071890354, + 0.020416487008333206, + 0.017918437719345093, + -0.0329742468893528, + 0.01605502888560295, + -0.0008198833093047142, + -0.006903391797095537, + 0.0027073449455201626, + 0.0017992703942582011, + 0.012004137970507145, + -0.007055300287902355, + 0.013502967543900013, + 0.01731080375611782, + -0.031677961349487305, + 0.01238897256553173, + -0.004047514405101538, + 0.009593858383595943, + 0.001329198363237083, + -0.024318844079971313, + -0.021753279492259026, + -0.010579574853181839, + 0.020389480516314507, + 0.0057353852316737175, + -0.0030364796984940767, + -0.011092687956988811, + -0.00579614844173193, + 0.04812457412481308, + 0.02357618138194084, + 0.004999473690986633, + -0.013827037997543812, + -0.0019241728587076068, + 0.010822628624737263, + -0.0011274977587163448, + 0.027708088979125023, + -0.00016351249360013753, + 0.0011097751557826996, + -0.010586326010525227, + 0.0014802627265453339, + 0.002712408546358347, + -0.00014441845996771008, + -0.012962848879396915, + -0.001508956542238593, + -0.006731228902935982, + 0.0014346903190016747, + 0.010073213838040829, + 0.013989074155688286, + -0.01431314554065466, + -0.0033976840786635876, + 0.010836130939424038, + 0.006113468203693628, + -0.024642914533615112, + -0.0019191092578694224, + 0.0027782355900853872, + -0.02800515480339527, + -0.007561661768704653, + 0.008533875457942486, + 0.024102795869112015, + 0.0014515690272673965, + 0.02504800446331501, + 0.010633586905896664, + -0.003470262512564659, + 0.04782750830054283, + -0.02493998035788536, + 0.030192634090781212, + -0.014826257713139057, + -0.023697707802057266, + -0.009263035841286182, + -0.01305736880749464, + 0.02521003969013691, + -0.007365868426859379, + 0.008689159527420998, + -0.005823154468089342, + 0.009033485315740108, + -0.008236809633672237, + 0.00758191617205739, + -0.011720575392246246, + 0.0037977094762027264, + 0.004992722067981958, + -0.01717577502131462, + 0.01411060057580471, + -0.026870904490351677, + 0.010262254625558853, + 0.00719032995402813, + 0.0057725184597074986, + -0.023481659591197968, + 0.009310295805335045, + 0.005414689891040325, + 0.021159149706363678, + -0.010154231451451778, + -0.02502099797129631, + -0.0006612234283238649, + 0.018796131014823914, + 0.0006730385357514024, + -0.021888310089707375, + 0.01309787854552269, + 0.014461677521467209, + -0.011997385881841183, + 0.003477014135569334, + -0.009128006175160408, + -0.011626054532825947, + 0.0030584221240133047, + 0.001688714837655425, + 0.010478302836418152, + 0.0032440877985209227, + 0.031353890895843506, + -0.016041524708271027, + -0.011308735236525536, + -0.021753279492259026, + -0.004358082544058561, + 0.010701101273298264, + -0.02390025183558464, + 0.016527632251381874, + -0.01159229688346386, + -0.01714876852929592, + -0.006488175597041845, + 0.018201999366283417, + 0.0024642914067953825, + 0.01755385659635067, + 0.036241963505744934, + 0.01941726729273796, + -0.023346630856394768, + -0.022104356437921524, + 0.0014760431367903948, + 0.013867547735571861, + -0.01963331364095211, + 0.0007840160396881402, + -0.006771738175302744, + 0.010039456188678741, + -0.0036795586347579956, + 0.023805731907486916, + 0.019538793712854385, + -0.011767836287617683, + -0.0025554364547133446, + -0.003625546582043171, + -0.021645257249474525, + -0.02329261787235737, + 0.012942594476044178, + -0.011497776955366135, + -0.02321160025894642, + -0.025763660669326782, + 0.00023651290393900126, + -0.03896956145763397, + -0.006940525025129318, + -0.01540688518434763, + 0.026263270527124405, + -0.012827819213271141, + -0.031921014189720154, + 0.011274977587163448, + 0.004189295694231987, + -0.002918328857049346, + -0.009836911223828793, + 0.026627851650118828, + -0.009418319910764694, + 0.003517522942274809, + -0.01776990480720997, + -0.0033436722587794065, + 0.004185919649899006, + -0.001589130493812263, + -0.026425307616591454, + 0.008095028810203075, + 0.01524484995752573, + -0.006160728633403778, + -0.0008620800799690187, + 0.006697471719235182, + -0.015217844396829605, + -0.004493112210184336, + -0.009242781437933445, + -0.010599829256534576, + 0.03240711987018585, + 0.008304324932396412, + -0.013989074155688286, + 0.005590228363871574, + -0.026506325230002403, + 0.01824250817298889, + -0.008108532056212425, + -0.04329051449894905, + 0.002649957314133644, + -0.010356775484979153, + 0.014623713679611683, + -0.0007616517250426114, + 0.007028294261544943, + 0.009006478823721409, + 0.004489736631512642, + -0.014245630241930485, + -2.4078533897409216e-5, + -0.02873431332409382, + 0.02381923422217369, + -0.019025681540369987, + -0.0005004536942578852, + -0.001459164428524673, + 0.005212145391851664, + 0.008155792020261288, + 0.01237546931952238, + -0.05182438716292381, + -0.013300422579050064, + 0.004243307281285524, + -0.00042513248627074063, + -0.00028968084370717406, + -0.004668650683015585, + 0.0004489736456889659, + -0.014866766519844532, + -0.005948056932538748, + 0.029598504304885864, + -0.0017503221752122045, + 0.010701101273298264, + -0.012706291861832142, + 0.003453383920714259, + -0.025507105514407158, + -0.0159470047801733, + -0.01712176203727722, + 0.029490480199456215, + 0.005786021240055561, + -0.019916877150535583, + -0.014070091769099236, + 0.0011080872500315309, + 0.0075346557423472404, + 0.013361185789108276, + -0.006552314851433039, + -0.01300335768610239, + -0.015028802677989006, + -0.005792772863060236, + -0.013516469858586788, + 0.01739182136952877, + -0.01256451103836298, + 0.01840454339981079, + -0.015474400483071804, + -0.016824696213006973, + -0.01213916763663292, + 0.019889870658516884, + -0.02761356718838215, + 0.00985716562718153, + -0.00303479190915823, + -0.008628396317362785, + 0.00623499508947134, + 0.033514365553855896, + 0.003012849483639002, + 0.0029250802472233772, + 0.017891431227326393, + -0.031056825071573257, + -0.016365597024559975, + 0.008716165088117123, + -0.015690447762608528, + -0.0062181162647902966, + -0.029382456094026566, + -0.0048813228495419025, + -0.009917929768562317, + -0.022874025627970695, + 0.010539066046476364, + -0.029085392132401466, + 0.021226665005087852, + 0.013935062102973461, + -0.0014245630009099841, + -0.014961287379264832, + -0.0218478012830019, + 0.021726274862885475, + -0.017729396000504494, + 0.007656182162463665, + 0.029166409745812416, + 0.019511787220835686, + -0.0003384181181900203, + 8.386608533328399e-5, + 0.010370278730988503, + -0.003939490765333176, + -0.009587106294929981, + 0.002114902250468731, + -0.015906495973467827, + 0.01616305112838745, + -0.007055300287902355, + -0.019457776099443436, + 0.01930924318730831, + -0.030084609985351562, + -0.0001998017105506733, + 0.03213706240057945, + -0.015028802677989006, + 0.01246999017894268, + 0.0162440687417984, + -0.003632298205047846, + 0.010930651798844337, + 0.00881743710488081, + -0.010613332502543926, + -0.0036019166000187397, + -0.0008760049822740257, + 0.009242781437933445, + 0.014664222486317158, + 0.029085392132401466, + -0.00933730136603117, + -0.002918328857049346, + -0.005526089109480381, + 0.004084647633135319, + 0.00989767536520958, + -0.04207524657249451, + -0.011376249603927135, + -0.014461677521467209, + 0.026020217686891556, + 0.004256810527294874, + -0.0083110760897398, + -0.0037977094762027264, + 0.024386359378695488, + -0.016392601653933525, + 0.014488684013485909, + 0.01185560505837202, + -0.012253942899405956, + 0.005438319873064756, + -0.010201491415500641, + -0.03872650861740112, + -0.009242781437933445, + 0.019646817818284035, + 0.0322720929980278, + -0.02742452546954155, + 0.016905715689063072, + 0.0003846235922537744, + 0.02728949673473835, + -0.016014518216252327, + 0.015906495973467827, + -0.004179168492555618, + -0.01872861571609974, + 0.005387683864682913, + -0.0009468955686315894, + -0.012422730214893818, + -0.006194486282765865, + 0.013124884106218815, + 0.03278520330786705, + -0.0020170058123767376, + 0.011545036919414997, + 0.009303544647991657, + -0.03524274379014969, + -0.025912193581461906, + -0.0019731211941689253, + 0.013800032436847687, + 0.020389480516314507, + -0.0017823916859924793, + 0.008209804072976112, + 0.02105112560093403, + -0.025331566110253334, + -0.0032052667811512947, + -0.021159149706363678, + 0.0026989055331796408, + 0.0030904915183782578, + -0.013239659368991852, + 0.012767055071890354, + -0.015366376377642155, + 0.01419161818921566, + 0.0003557188028935343, + 0.006474672816693783, + 0.01826951466500759, + -0.009546597488224506, + -0.010289261117577553, + 0.01084288302809, + 0.002972340676933527, + -0.04131907969713211, + -0.021618250757455826, + -0.014394163154065609, + -0.005286411847919226, + 0.01995738595724106, + -0.012037895619869232, + -0.01429964229464531, + 0.007244342006742954, + -0.01776990480720997, + 0.012983103282749653, + 0.005107497330754995, + 0.007460389286279678, + 0.019376758486032486, + -0.0010144104016944766, + -0.00926978699862957, + -0.027194976806640625, + -0.027546053752303123, + -0.020159929990768433, + 0.015366376377642155, + -0.022279895842075348, + 0.02529105730354786, + -0.009384562261402607, + 0.018877148628234863, + -0.0009097623988054693, + 0.012193179689347744, + -0.0009232653537765145, + -0.018364034593105316, + -0.02627677470445633, + -0.0109103973954916, + -0.01245648693293333, + -0.015933500602841377, + -0.03038167580962181, + 0.001984936185181141, + -0.015541914850473404, + 0.01760786958038807, + 0.026708869263529778, + -0.011720575392246246, + 0.000593286647927016, + -0.02107813209295273, + -0.01824250817298889, + -0.0076089221984148026, + -0.0330822691321373, + 0.020767563953995705, + -0.024791447445750237, + -0.005917675327509642, + 0.01132223755121231, + -0.011754333041608334, + -0.01126822642982006, + -0.029166409745812416, + 0.0014389099087566137, + -0.011916368268430233, + 0.03851046413183212, + -0.014556198380887508, + 0.01099141500890255, + -0.000817351508885622, + 0.0005540436250157654, + -0.01535287406295538, + -0.025412583723664284, + -0.002349516376852989, + 0.017999455332756042, + -0.027546053752303123, + 0.010971160605549812, + -0.00968162715435028, + 0.007959999144077301, + -0.0033909326884895563, + 0.023427648469805717, + 0.005647615995258093, + 0.03451358526945114, + -0.01835053227841854, + 0.015001796185970306, + 0.024021778255701065, + 0.013739269226789474, + 0.009155011735856533, + -0.01832352578639984, + 0.006640084087848663, + -0.023009056225419044, + 0.020389480516314507, + -0.0005515118245966733, + -0.004256810527294874, + 0.006876386236399412, + 0.0035749105736613274, + -0.014772245660424232, + 0.009688379243016243, + 0.04113003984093666, + -0.008473112247884274, + -0.009674875997006893, + -0.029517486691474915, + 0.013016860000789165, + -0.00980315450578928, + 0.00701479148119688, + -0.012692789547145367, + 0.01605502888560295, + -0.011193959973752499, + 0.004358082544058561, + 0.004040762782096863, + 0.002197607886046171, + -0.002131780842319131, + -0.008500117808580399, + 0.0012464926112443209, + 0.01602802239358425, + 0.009418319910764694, + 0.009236029349267483, + -0.015690447762608528, + 0.03923962265253067, + 0.0013933373847976327, + -0.016392601653933525, + 0.013881050050258636, + -0.02067304216325283, + 0.010059710592031479, + -0.016095537692308426, + -0.00458088144659996, + 0.007372620049864054, + -0.010518811643123627, + -0.024575401097536087, + 0.012071652337908745, + 0.0026938419323414564, + -0.0042466833256185055, + 0.001517395954579115, + -0.010154231451451778, + -0.011166953481733799, + 0.013118132948875427, + -0.011153451167047024, + -0.044748831540346146, + -0.012172925285995007, + 0.007554910145699978, + -0.007669685408473015, + -0.01428613904863596, + -0.026452312245965004, + 0.02854527346789837, + -0.0012363654095679522, + 0.0015798471868038177, + -0.005684749223291874, + 0.002427158411592245, + 0.016311584040522575, + -0.00462814187631011, + -0.025061506778001785, + 0.005553095135837793, + -0.012598268687725067, + 0.0013173832558095455, + 0.00017975825176108629, + -0.024264831095933914, + 0.004746293183416128, + 0.006609702482819557, + 0.002941959071904421, + 0.013550227507948875, + -0.02091609686613083, + -0.020767563953995705, + 0.004591008648276329, + 0.01349621545523405, + -0.0008262128103524446, + -0.003777455072849989, + 0.008824189193546772, + -0.00909424852579832, + 0.015879489481449127, + 0.0025014246348291636, + -0.011794841848313808, + -0.017216283828020096, + -0.009499337524175644, + 0.003225521184504032, + -0.015865987166762352, + 0.003379117464646697, + 0.019916877150535583, + 0.07718296349048615, + -0.008851194754242897, + -0.004793553147464991, + -0.0032542150001972914, + 0.006464545615017414, + 0.003240712219849229, + 0.004685529507696629, + 0.00970863364636898, + 0.008547377772629261, + -0.005539592355489731, + -0.0035040199290961027, + -0.05422791466116905, + 0.003325105644762516, + -0.005185139365494251, + -0.013692008331418037, + -0.007028294261544943, + 0.022239387035369873, + 0.026735875755548477, + -0.003347048070281744, + 0.026128241792321205, + 0.009371059015393257, + -0.010181237012147903, + 0.0010439481120556593, + 0.020321965217590332, + -0.0017174086533486843, + 0.003585037775337696, + 0.004658523481339216, + 0.007480643689632416, + -0.0031613821629434824, + 0.008365088142454624, + 0.0003951727703679353, + 0.013975570909678936, + -0.01960630901157856, + -0.00017965276492759585, + -0.00962761603295803, + 0.005380932241678238, + -0.006292382720857859, + 0.014961287379264832, + 0.01309787854552269, + 0.011545036919414997, + -0.013091126456856728, + -0.007413128856569529, + 0.023805731907486916, + 0.036403998732566833, + -0.005384308286011219, + -0.0067886165343225, + -0.001175602083094418, + -0.004769923165440559, + -0.01651412807404995, + 0.011659812182188034, + -0.025966206565499306, + -0.016500625759363174, + -0.0006954027921892703, + -0.009863917715847492, + 0.01870160922408104, + -0.0037504490464925766, + 0.015609430149197578, + -0.00916176289319992, + -0.014866766519844532, + 0.005819778889417648, + -0.00012975507706869394, + -0.017486343160271645, + -0.016770685091614723, + -0.03021964058279991, + 0.006106717046350241, + -0.0050669885240495205, + 0.008290821686387062, + -0.019106699153780937, + 0.017837420105934143, + 0.0005772518343292177, + 0.009236029349267483, + 0.016635656356811523, + 0.012449735775589943, + -0.025115519762039185, + -0.018337029963731766, + 0.012692789547145367, + 0.019147207960486412, + 0.002697217743843794, + 0.004482985008507967, + -0.0017503221752122045, + 0.002844062400981784, + 0.002558812266215682, + -0.002643205923959613, + -0.017040744423866272, + 0.003649176796898246, + -0.0036660556215792894, + 0.025520607829093933, + -0.023279115557670593, + -0.00498259486630559, + -0.022441931068897247, + -0.015555418096482754, + 0.021064627915620804, + -0.011031923815608025, + -0.004790177568793297, + -6.276770000113174e-5, + -0.011207462288439274, + -0.0028457504231482744, + -0.016446614637970924, + 0.0137932812795043, + -0.00485431682318449, + 0.020524509251117706, + 0.0068932645954191685, + -0.0009637742768973112, + -0.0017300676554441452, + -0.0007937212940305471, + -0.004719287157058716, + 0.02259046398103237, + 0.009553349576890469, + -0.01508281473070383, + 0.002833935199305415, + 0.0008945715962909162, + 0.014164612628519535, + 0.005110872909426689, + -0.003024664707481861, + -0.02048400044441223, + 0.0016870269319042563, + 0.006430787965655327, + -0.0024102795869112015, + -0.011734078638255596, + -0.025615129619836807, + -9.325486462330446e-5, + -0.01955229602754116, + 0.008965970017015934, + -0.003262654412537813, + 0.0024626036174595356, + -0.020902592688798904, + -0.012888582423329353, + -0.004938710015267134, + -0.011551788076758385, + 0.006933773867785931, + 0.01513682585209608, + 0.004979219287633896, + 0.01309787854552269, + -0.024534890428185463, + 0.022252889350056648, + 0.003915860317647457, + 0.007514401338994503, + 0.007987004704773426, + 0.031380895525217056, + -0.012794061563909054, + 0.0018853518413379788, + 0.01744583435356617, + -0.011815096251666546, + 0.005056861322373152, + 0.013111380860209465, + -0.0005097370012663305, + -0.002621263498440385, + -0.023265613242983818, + 0.03759226202964783, + -0.0034516958985477686, + 0.015379879623651505, + -0.021145647391676903, + 0.007291602436453104, + -0.02707344852387905, + 0.029706528410315514, + 0.007669685408473015, + 0.003932739142328501, + 0.008675656281411648, + 0.008722917176783085, + 0.016878709197044373, + -0.004742917139083147, + -0.0037099402397871017, + -0.0057725184597074986, + -0.0012279261136427522, + -0.001374770887196064, + 0.009985444135963917, + 0.01144376490265131, + 0.034000471234321594, + 0.022104356437921524, + 0.0019056062446907163, + -0.003115809755399823, + 0.008601389825344086, + 0.00012933310063090175, + -0.027438029646873474, + -0.01108593586832285, + -0.023333126679062843, + 0.008020762354135513, + 0.02518303319811821, + -0.02272549457848072, + 0.013212653808295727, + 0.016284577548503876, + -0.019201219081878662, + 0.02253645285964012, + 0.00233770115301013, + 0.011767836287617683, + -0.016905715689063072, + 0.009762645699083805, + -0.019781846553087234, + 0.011112942360341549, + 0.012888582423329353, + -0.016676165163517, + 0.026816893368959427, + -0.0160820335149765, + 0.02097010798752308, + -0.007635927759110928, + 0.009046987630426884, + 0.008371839299798012, + 0.01835053227841854, + -0.0045066154561936855, + 0.0029284560587257147, + -0.018917657434940338, + 0.004864444024860859, + -0.013962067663669586, + -0.010572823695838451, + 0.01883663982152939, + -0.013773026876151562, + -0.007959999144077301, + -0.013469209894537926, + 0.0033673024736344814, + 0.0159470047801733, + -0.029625510796904564, + -0.018526071682572365, + 0.021253669634461403, + 0.003912484738975763, + -0.025304559618234634, + 0.019066190347075462, + 0.004263561684638262, + 0.011558540165424347, + 0.02531806379556656, + -0.008722917176783085, + -0.006552314851433039, + 0.006900016218423843, + 0.017918437719345093, + -0.016095537692308426, + -0.01845855638384819, + 0.019646817818284035, + -0.0009747454314492643, + 0.011639557778835297, + 0.012314706109464169, + -0.008520372211933136, + 0.024345850571990013, + 0.005232399795204401, + -0.010370278730988503, + 0.013320676982402802, + 0.014677725732326508, + 0.015001796185970306, + 0.01731080375611782, + -0.013367937877774239, + 0.002828871598467231, + -0.0108158765360713, + -0.007993756793439388, + 0.00816254410892725, + 0.001497985445894301, + 0.01760786958038807, + 0.010248752310872078, + -0.0013697072863578796, + 0.006832501385360956, + -0.007183578331023455, + -0.003973247949033976, + -2.4052160370047204e-5, + -0.0032980996184051037, + -0.021172652021050453, + -0.017999455332756042, + 0.012679286301136017, + -0.004371585790067911, + 0.009749142453074455, + 0.020105918869376183, + -0.0059210509061813354, + -0.00023419209173880517, + 0.0030145375058054924, + -0.014866766519844532, + 0.021186156198382378, + 0.016392601653933525, + -0.004712535534054041, + 0.003255903022363782, + 0.0003517100994940847, + -0.021240167319774628, + 0.005954808555543423, + -0.001636390807107091, + 0.014839760959148407, + -0.0031090581323951483, + -0.001558748772367835, + 0.01535287406295538, + 0.0018549701198935509, + -0.006184359081089497, + -0.005833281669765711, + 0.0046922811307013035, + -0.006775113753974438, + -0.007730448618531227, + -0.0030904915183782578, + -0.017729396000504494, + 0.0006008820491842926, + 0.005745512433350086, + -0.01755385659635067, + -0.007851975038647652, + -0.018742118030786514, + -0.002589193871244788, + -0.0009823408909142017, + -0.0035512803588062525, + -0.005279660224914551, + -0.0009528031223453581, + -0.005559846758842468, + 0.011099439114332199, + -0.009641118347644806, + 0.00714306952431798, + 0.01872861571609974, + 0.012503747828304768, + -0.00048399699153378606, + 0.020024899393320084, + 0.012274197302758694, + 0.006488175597041845, + -0.008365088142454624, + -0.009641118347644806, + 0.0006612234283238649, + 0.01976834423840046, + 0.006424036808311939, + 0.00498259486630559, + -0.006116844248026609, + -0.00019779737340286374, + 0.009762645699083805, + -0.011754333041608334, + 0.006501678843051195, + -0.002045699628069997, + -0.003963120747357607, + -0.0008861322421580553, + -0.0162440687417984, + 0.01264552865177393, + 0.026236265897750854, + -0.004969092085957527, + 0.0034466322977095842, + -0.010383781976997852, + 0.004435724578797817, + -0.020470498129725456, + 0.010660592466592789, + -0.014583204872906208, + 0.023724712431430817, + 0.025750158354640007, + -0.0021250294521450996, + 0.0004628986062016338, + -0.00916176289319992, + -0.011585545726120472, + -0.010957658290863037, + -0.019160710275173187, + 0.012395723722875118, + -0.00458088144659996, + 0.005060236901044846, + -0.02395426295697689, + -0.0003770281618926674, + -0.0032272092066705227, + 0.012780558317899704, + -0.020308462902903557, + -0.004857692401856184, + 0.009506088681519032, + -0.01263202540576458, + 0.009917929768562317, + 0.01714876852929592, + 0.00715657277032733, + -0.01851256750524044, + 0.0008587043266743422, + 0.016473619267344475, + 0.003456759499385953, + -0.004371585790067911, + 0.014826257713139057, + -0.02061903104186058, + -0.004834062419831753, + -0.016527632251381874, + -0.009148260578513145, + 0.011551788076758385, + 0.009661372750997543, + 0.006170855835080147, + -0.015001796185970306, + 0.021510226652026176, + -0.027140963822603226, + -0.0029402710497379303, + 0.004614639095962048, + -0.007460389286279678, + -0.008439354598522186, + 0.027302999049425125, + -0.021375197917222977, + 0.008628396317362785, + -0.00207776902243495, + -0.04366859421133995, + -0.01535287406295538, + -0.01728379726409912, + -0.011355995200574398, + -0.003217082004994154, + -0.00015517862630076706, + -0.012794061563909054, + 0.010944155044853687, + -0.0016228879103437066, + 0.032029036432504654, + -0.0021469718776643276, + -0.007926241494715214, + -0.012449735775589943, + 0.019295740872621536, + -0.0015570608666166663, + 0.01178809069097042, + 0.037835314869880676, + -0.009067242033779621, + -0.016946224495768547, + 0.005725258029997349, + 0.01412410382181406, + 0.0051750121638178825, + -0.011896113865077496, + 0.010761864483356476, + -0.02622276172041893, + 0.013104629702866077, + 0.02430534176528454, + 0.008743171580135822, + -0.006099965423345566, + 0.01733781024813652, + 0.008918710052967072, + 0.01411060057580471, + 0.027086952701210976, + 0.009607360698282719, + -0.009263035841286182, + 0.008965970017015934, + 0.03521573916077614, + 0.006366649176925421, + -0.01640610583126545, + 0.015811974182724953, + 0.008932212367653847, + 0.0021115264389663935, + 0.015001796185970306, + 0.010849634185433388, + -0.002766420366242528, + 0.021456215530633926, + -0.0048003047704696655, + 0.021105138584971428, + 0.014529192820191383, + 0.025736656039953232, + 0.008479863405227661, + 0.018012957647442818, + -0.00916176289319992, + -0.004523493815213442, + -0.008466360159218311, + 0.01993037946522236, + 0.006245122291147709, + -0.015109820291399956, + 0.0032525272108614445, + 0.0004658523539546877, + -0.0218207947909832, + 0.005465325899422169, + 0.004270313307642937, + -0.02070004865527153, + 0.006717726122587919, + 0.004280440509319305, + -0.013381440192461014, + 0.008446105755865574, + -0.0025486850645393133, + -0.01883663982152939, + 0.003969872370362282, + 0.015042304992675781, + -0.0048441896215081215, + -0.01160580012947321, + 0.007008039858192205, + -0.003132688347250223, + 0.026425307616591454, + -0.012193179689347744, + -0.011011669412255287, + -0.005836657714098692, + 0.034000471234321594, + 0.0273435078561306, + -0.013658251613378525, + -0.0009021669975481927, + -0.03443256765604019, + -0.00832457933574915, + 0.012301202863454819, + 0.01524484995752573, + -0.01203114353120327, + 0.0038112124893814325, + -0.003110746154561639, + -0.009620863944292068, + 0.012983103282749653, + -0.009573603980243206, + -0.015271855518221855, + 0.018012957647442818, + 0.010025952942669392, + -0.002660084515810013, + 0.01141675841063261, + -0.01089689414948225, + 0.007689939811825752, + 0.013712262734770775, + 0.0007975189946591854, + 0.01203114353120327, + 0.011301983147859573, + -0.010167734697461128, + 0.02302255854010582, + -0.0036559284199029207, + -0.006842628587037325, + -0.012267445214092731, + -0.010613332502543926, + 0.008506868965923786, + -0.0009291729074902833, + 0.009506088681519032, + 0.02029496058821678, + -0.008614893071353436, + 0.00936430785804987, + -0.004867819603532553, + 0.022847020998597145, + 0.006535436026751995, + -0.01186910830438137, + -0.0003504441992845386, + 0.005330296233296394, + 0.007487395312637091, + -0.01193662267178297, + -0.0013005045475438237, + 0.013962067663669586, + 0.0030044103041291237, + -0.01993037946522236, + -0.00881743710488081, + -0.005880542099475861, + -0.018634093925356865, + 0.02061903104186058, + -0.0070823063142597675, + 0.010356775484979153, + -0.006633332464843988, + 0.011315486393868923, + 0.0020558268297463655, + -0.003316666232421994, + 0.0271814726293087, + -0.008081525564193726, + -0.026951922103762627, + 0.016149548813700676, + -0.005438319873064756, + 0.0024642914067953825, + -0.00303479190915823, + 0.015042304992675781, + 0.036268968135118484, + 0.004293943755328655, + -0.0083380825817585, + -0.0017233161488547921, + 0.010458048433065414, + 0.019457776099443436, + -0.008007259108126163, + 0.0020423238165676594, + 0.012436232529580593, + 0.005860287696123123, + 0.018039964139461517, + 0.005350550636649132, + -0.013212653808295727, + -0.0070823063142597675, + -0.0023967765737324953, + 0.008412348106503487, + 0.0019427393563091755, + 0.018904153257608414, + 0.00039981442387215793, + -0.022820014506578445, + 0.03656603395938873, + 0.014974790625274181, + -0.023009056225419044, + 0.009836911223828793, + -0.0022161745000630617, + -0.01670316979289055, + -0.0026313907001167536, + -0.013435452245175838, + -0.01144376490265131, + 0.023360133171081543, + 0.017540354281663895, + 0.006083086598664522, + -0.018445054069161415, + 0.021159149706363678, + 0.049285829067230225, + 0.01659514755010605, + 0.03024664707481861, + -0.020281456410884857, + -0.005019728094339371, + -0.0032272092066705227, + 0.008027514442801476, + 0.007453637663275003, + -0.00011941686534555629, + -0.01605502888560295, + 0.006586072035133839, + 0.00484081357717514, + -0.015960507094860077, + -0.0029841556679457426, + 0.0137932812795043, + 0.01936325430870056, + -9.895143011817709e-5, + 0.021780285984277725, + -0.03707914799451828, + 0.005428192671388388, + -0.008959218859672546, + 0.004827310796827078, + 0.009992195293307304, + -0.01438065990805626, + -0.004661899525672197, + -0.014731736853718758, + 0.004817183595150709, + -0.01325991377234459, + -0.003424690105021, + -0.016311584040522575, + -0.03256915509700775, + 0.012753552757203579, + -0.004942086059600115, + 0.023967767134308815, + 0.0011021796381101012, + -0.007035045884549618, + 0.009728888049721718, + -0.020051905885338783, + 0.01706775091588497, + -0.02390025183558464, + -0.016838200390338898, + 0.006954028271138668, + -0.010316266678273678, + 0.0013047242537140846, + -0.017351312562823296, + -0.0014346903190016747, + -0.028842337429523468, + -0.021564237773418427, + -0.0033521116711199284, + 0.010329769924283028, + 0.0017005299450829625, + 0.016176555305719376, + 0.0003778720856644213, + 0.006305885501205921, + 0.014961287379264832, + -0.03472962975502014, + -0.00014515689690597355, + -0.005198642145842314, + -0.015015299431979656, + 0.014448175206780434, + 0.021240167319774628, + 0.010221745818853378, + -0.0065928236581385136, + -0.018634093925356865, + 0.029814550653100014, + 0.0029537740629166365, + 0.03740321844816208, + -0.012280948460102081, + -0.01741882786154747, + -0.006241746712476015, + 0.008182798512279987, + 0.017270294949412346, + 0.0036964372266083956, + -0.019120201468467712, + -0.01957930251955986, + 0.0160820335149765, + -0.00030023002182133496, + -0.010073213838040829, + -0.015366376377642155, + 0.009647870436310768, + 0.01436715666204691, + -0.021753279492259026, + 0.00771019421517849, + -0.019160710275173187, + -0.013111380860209465, + -0.0009317047079093754, + 0.029355451464653015, + -0.015838980674743652, + 0.007554910145699978, + -0.03084077686071396, + -0.002530118450522423, + 0.015676945447921753, + 0.0019022305496037006, + -0.0061809830367565155, + 0.004604511894285679, + 0.016527632251381874, + 2.7744377803173847e-5, + 0.009782900102436543, + -0.02488596923649311, + -0.022333906963467598, + -0.015528412535786629, + 0.0073118568398058414, + 0.0077574546448886395, + -0.02651982754468918, + 0.007001288700848818, + -0.022185375913977623, + 0.005235775373876095, + -0.024980489164590836, + -0.025385579094290733, + -0.023562677204608917, + -0.005019728094339371, + -0.0029217044357210398, + 0.002749541774392128, + -0.02846425399184227, + 0.01438065990805626, + 0.006559066474437714, + -0.010491805151104927, + -0.00977614801377058, + -0.0034466322977095842, + 0.015784969553351402, + -0.011207462288439274, + 0.0058434088714420795, + -0.004013757221400738, + -0.025912193581461906, + -0.021456215530633926, + -0.013077624142169952, + 0.00756841292604804, + -0.053336720913648605, + 0.0014659158186987042, + 0.0027056571561843157, + -0.01864759810268879, + -0.017729396000504494, + -1.3476594176609069e-5, + -0.0034871413372457027, + -0.007514401338994503, + -0.007804715074598789, + -0.0006911831442266703, + -0.006714350543916225, + -0.01733781024813652, + -0.01712176203727722, + -0.013624493964016438, + -0.00467540230602026, + 0.022711990401148796, + 0.016743678599596024, + -0.009195520542562008, + -0.005580101162195206, + -0.009971940889954567, + 0.006913518998771906, + -0.03470262512564659, + 9.019560093292966e-5, + -0.011146699078381062, + -0.017567360773682594, + 0.023522168397903442, + -0.005249278619885445, + 0.0017958945827558637, + -0.024467376992106438, + 0.009749142453074455, + -0.009735639207065105, + 0.0007793743861839175, + 0.011126444675028324, + 0.0016060092020779848, + -0.013266664929687977, + -0.0273435078561306, + -0.023117080330848694, + 0.024480879306793213, + -0.024129802361130714, + -0.012422730214893818, + -0.000448129721917212, + 0.0011620990699157119, + 0.0005160665023140609, + -0.02064603753387928, + 0.002175665693357587, + -0.020159929990768433, + -0.008047768846154213, + -0.01621706411242485, + 0.021348191425204277, + -0.01766188070178032, + 0.01725679263472557, + 0.010370278730988503, + 0.02075405977666378, + -0.0013308861525729299, + 0.004756420385092497, + -0.019781846553087234, + -0.006373400334268808, + 0.01305736880749464, + -0.0014557886170223355, + 0.014529192820191383, + 0.0031242489349097013, + -0.006768362130969763, + -0.0438576377928257, + -0.017351312562823296, + 0.011423510499298573, + 0.006079711019992828, + -0.008547377772629261, + 0.0014616962289437652, + 0.008425851352512836, + -0.02838323637843132, + 0.01878262683749199, + -0.021645257249474525, + -0.010174485854804516, + 0.017783407121896744, + 0.0019376757554709911, + 0.009749142453074455, + -0.0107483621686697, + 0.011956877075135708, + -0.023279115557670593, + -0.0017199404537677765, + 0.019160710275173187, + 0.011477522552013397, + 0.009202271699905396, + -0.01404308620840311, + 0.017918437719345093, + -0.002947022672742605, + 0.006272128317505121, + 0.006167480256408453, + -0.009688379243016243, + 0.003817963879555464, + 0.02435935288667679, + -0.004432349000126123, + -0.02616875059902668, + 0.006900016218423843, + -0.015366376377642155, + -0.003132688347250223, + -0.00909424852579832, + -0.0018060219008475542, + 0.008689159527420998, + -0.00968162715435028, + 0.008358336985111237, + 0.0034500081092119217, + 0.02001139707863331, + -0.02808617241680622, + 0.013334180228412151, + -0.0049859704449772835, + -0.008115283213555813, + 0.010890142992138863, + 0.012172925285995007, + 0.025480099022388458, + -0.008891703560948372, + 0.008128786459565163, + 0.012172925285995007, + -0.02318459376692772, + -0.01939026080071926, + 0.031110836192965508, + 0.008290821686387062, + 0.01359073631465435, + -0.0030432313214987516, + 5.7809578720480204e-5, + -0.011383001692593098, + 0.009796402417123318, + 0.004128532018512487, + -0.001846530707553029, + -0.011153451167047024, + -0.010768616572022438, + 0.02808617241680622, + -0.0034331295173615217, + 0.01047155074775219, + 0.004115029238164425, + 0.007784460671246052, + 0.002589193871244788, + 0.02851826697587967, + -0.0068932645954191685, + 0.01851256750524044, + 0.016743678599596024, + 0.010579574853181839, + -0.0010726419277489185, + -0.008257064037024975, + 0.0029149530455470085, + 0.03089478798210621, + -0.025763660669326782, + 0.0029993464704602957, + 0.010242000222206116, + 0.01542038843035698, + -0.02857227809727192, + -0.012530753389000893, + -0.0008565944735892117, + -0.004263561684638262, + 0.010545817203819752, + -0.021834297105669975, + -0.004766547586768866, + 0.004358082544058561, + -0.008540626615285873, + 0.010883391834795475, + 0.009728888049721718, + -0.019376758486032486, + -0.029058385640382767, + -0.008554129861295223, + -0.006903391797095537, + 0.0005101590068079531, + 0.007257844787091017, + -0.03491867333650589, + -0.0010338209103792906, + -0.001612760592252016, + 0.00027892066282220185, + -0.007217335980385542, + -0.017864424735307693, + 0.01864759810268879, + -0.012193179689347744, + 0.0008291665581054986, + -0.0032238333951681852, + 0.00232082256115973, + -0.0029689648654311895, + 0.001525835250504315, + -0.01925523206591606, + 0.017985953018069267, + -0.01307087205350399, + 0.010701101273298264, + 0.006207989063113928, + -0.015784969553351402, + 0.0021419082768261433, + 0.01412410382181406, + 0.011173705570399761, + 0.004034011624753475, + 0.015298862010240555, + -0.013867547735571861, + 0.002206047298386693, + 0.02403528243303299, + -0.010971160605549812, + -0.006012196186929941, + -0.020875588059425354, + -0.018120981752872467, + -0.011842101812362671, + 0.009836911223828793, + 0.003585037775337696, + 0.005235775373876095, + 0.0032305847853422165, + -0.003154630772769451, + 0.0019039183389395475, + 0.007203833200037479, + -0.011200711131095886, + 0.006889889016747475, + -0.0028373110108077526, + 0.008540626615285873, + -0.011038675904273987, + -0.005691500846296549, + 0.01193662267178297, + -0.004969092085957527, + 0.015960507094860077, + 0.010052959434688091, + -0.0037808308843523264, + -0.009323799051344395, + 0.02712746150791645, + 0.008412348106503487, + 0.008365088142454624, + -0.0016524256207048893, + -0.005897420924156904, + -0.01272654626518488, + -0.006629956886172295, + -0.011200711131095886, + -0.01419161818921566, + 0.006451042369008064, + -0.022428428754210472, + -0.013401694595813751, + -0.01880963332951069, + 0.008986224420368671, + -0.03751124441623688, + -0.00832457933574915, + -0.009573603980243206, + 0.014056588523089886, + -0.014691228047013283, + -0.013307173736393452, + 0.0018650973215699196, + -0.008358336985111237, + 0.005131127312779427, + 0.004128532018512487, + 0.011403256095945835, + -0.010647089220583439, + -0.006629956886172295, + -0.012159422039985657, + -0.0020355721935629845, + 0.005093994550406933, + -0.010869888588786125, + 0.011956877075135708, + -0.006660338491201401, + -0.00592780252918601, + -0.013854044489562511, + 0.017094755545258522, + -0.005613858811557293, + -0.02715446613729, + 0.024602405726909637, + -0.006906767841428518, + 0.0036593039985746145, + 0.0005042514530941844, + 0.0019393636612221599, + -0.009040236473083496, + -0.005421441514045, + -0.026911413297057152, + -0.003208642592653632, + 0.012854824773967266, + 0.029706528410315514, + 0.005144630558788776, + -0.002489609643816948, + -0.009782900102436543, + -0.0007941432413645089, + 0.013023612089455128, + -0.0033369208686053753, + -0.013192398473620415, + -0.003232272807508707, + 0.017000235617160797, + -0.00910775177180767, + -0.001184041379019618, + 0.021105138584971428, + 0.0012177987955510616, + 0.02477794513106346, + 0.006940525025129318, + -0.01826951466500759, + -0.02168576605618, + -0.006403782404959202, + 0.008932212367653847, + -0.008689159527420998, + -0.01402958296239376, + 0.012436232529580593, + -0.03070574812591076, + 0.006207989063113928, + 0.00017807037511374801, + -0.003993502352386713, + 0.016581643372774124, + -0.006427412386983633, + -0.007278099190443754, + 0.008533875457942486, + 0.01640610583126545, + 0.0029554618522524834, + 0.010059710592031479, + 0.033352330327034, + 0.020335469394922256, + -9.214720193995163e-5, + -0.004351331386715174, + -0.01843154989182949, + 0.013435452245175838, + -0.012733298353850842, + -0.01947127841413021, + 0.025655638426542282, + 0.00047682353761047125, + 0.014502186328172684, + 0.011166953481733799, + 0.010106970556080341, + 0.01717577502131462, + 0.011639557778835297, + -0.017810413613915443, + -0.015541914850473404, + -0.006994537077844143, + -0.00540793826803565, + -0.008547377772629261, + -0.009668124839663506, + -0.0028508140239864588, + 0.005914299748837948, + 0.014272636733949184, + -0.0019815603736788034, + -0.016257572919130325, + 0.006515181623399258, + 0.04291243106126785, + -0.0008937276434153318, + 0.0012456487165763974, + -0.006609702482819557, + -0.0063700247555971146, + 0.006960779428482056, + 0.0031360641587525606, + -0.01428613904863596, + 0.01851256750524044, + 0.008439354598522186, + 0.011045427061617374, + -0.03745723143219948, + 0.0020119422115385532, + -0.022347411140799522, + 0.02499399147927761, + 0.015501406043767929, + 0.025601625442504883, + -0.017027242109179497, + 0.001930924248881638, + -0.004715911112725735, + -0.0004396903677843511, + -0.01733781024813652, + -0.0038787273224443197, + 0.004574130289256573, + 0.009229278191924095, + 0.010437794029712677, + -0.008986224420368671, + 0.010066461749374866, + -0.033514365553855896, + 0.008824189193546772, + 0.0024862338323146105, + 0.006194486282765865, + -0.013631245121359825, + -0.01429964229464531, + -0.004553875885903835, + -0.026479318737983704, + 0.008142288774251938, + -0.01566344127058983, + 0.026803389191627502, + 0.007669685408473015, + 0.026789886876940727, + -0.027681082487106323, + 0.026344288140535355, + 0.0006954027921892703, + -0.020821575075387955, + 0.009587106294929981, + 0.008884952403604984, + -0.004536997061222792, + 0.021699268370866776, + -0.024548394605517387, + -0.024048784747719765, + 0.007352365646511316, + 0.007210584357380867, + 0.02107813209295273, + 0.00719032995402813, + -0.011079184710979462, + -0.010957658290863037, + 0.01886364445090294, + 0.021537233144044876, + -0.013475961051881313, + 0.0110724326223135, + -0.0007278943085111678, + -0.003723443252965808, + -0.005225648172199726, + 0.01531236432492733, + -0.007980253547430038, + 0.009587106294929981, + -0.006241746712476015, + 0.018553076311945915, + 0.011403256095945835, + 0.036079928278923035, + 0.007845223881304264, + 0.002246556105092168, + -0.005954808555543423, + -0.012780558317899704, + 0.02075405977666378, + 0.02064603753387928, + -0.009654621593654156, + 0.01925523206591606, + 0.010572823695838451, + -0.009155011735856533, + -0.010363527573645115, + 0.006035826168954372, + 0.0023309497628360987, + -0.01782391592860222, + 0.009816656820476055, + 0.003333545057103038, + -0.004398591350764036, + -0.019349751994013786, + -0.0015452457591891289, + -0.011133196763694286, + 0.010086716152727604, + 0.027059946209192276, + 0.007352365646511316, + -0.00048737271572463214, + 0.007649431005120277, + -0.004955588839948177, + 0.006420660763978958, + -0.02059202454984188, + -0.02435935288667679, + 0.009411567822098732, + -0.004077896010130644, + 0.011281728744506836, + 0.0005418065702542663, + 0.01717577502131462, + 0.006366649176925421, + 0.007257844787091017, + 0.0005148006021045148, + 0.008972722105681896, + 0.011794841848313808, + 0.0071160634979605675, + -0.003178260987624526, + 0.0027377265505492687, + -0.005070364102721214, + 0.016946224495768547, + 0.0110049182549119, + 0.01317889615893364, + 0.011646308936178684, + 0.012794061563909054, + -0.02846425399184227, + -0.009938184171915054, + 0.01776990480720997, + -0.00520876981317997, + -0.006727853324264288, + 0.027843117713928223, + 0.0026077604852616787, + -0.025966206565499306, + 0.005786021240055561, + 0.005542967934161425, + 0.018039964139461517, + 0.005661118775606155, + -0.00019431613327469677, + 0.016689667478203773, + 0.01619005762040615, + -0.0028305593878030777, + 0.02417031116783619, + -0.00580965168774128, + 0.014272636733949184, + -0.0017039056401699781, + 0.004239931702613831, + 0.04094099625945091, + 0.012821067124605179, + -0.0018060219008475542, + 0.009067242033779621, + -0.0031478791497647762, + 0.007001288700848818, + -0.023549174889922142, + -0.017891431227326393, + -0.00937781110405922, + -0.00995168648660183, + -0.0036728070117533207, + -0.002666835905984044, + -0.010545817203819752, + -0.03664705157279968, + -0.012159422039985657, + -0.009641118347644806, + -0.000737177615519613, + -0.014839760959148407, + 0.011821847409009933, + 0.005056861322373152, + -0.0006848536431789398, + 0.0023157589603215456, + 0.003095555119216442, + 0.014812755398452282, + 0.014623713679611683, + -0.004918455611914396, + 0.0025031124241650105, + -0.006940525025129318, + 0.006748107727617025, + 0.0012439608108252287, + -0.00884444359689951, + -0.007487395312637091, + -0.007521152496337891, + 0.01766188070178032, + 0.006596199236810207, + 0.006062832195311785, + 0.0006236683111637831, + 0.02641180343925953, + -0.027951141819357872, + -0.01933624967932701, + -0.0040508899837732315, + 0.0008734731818549335, + -0.007149821147322655, + 0.017000235617160797, + 0.0035749105736613274, + -0.025385579094290733, + -0.01048505399376154, + -0.010890142992138863, + 0.01144376490265131, + 0.013091126456856728, + -0.008824189193546772, + -0.035836875438690186, + -0.008378591388463974, + -0.0029149530455470085, + -0.0045775058679282665, + -0.006781865376979113, + 0.004672026727348566, + 0.011207462288439274, + -6.925545312697068e-5, + -0.014893773011863232, + 0.0017334434669464827, + 0.019106699153780937, + -0.007467140909284353, + -0.008290821686387062, + 0.015379879623651505, + 0.016932720318436623, + -0.008635147474706173, + 0.015217844396829605, + 0.008034265600144863, + 0.013692008331418037, + -0.013570481911301613, + 0.0003289238375145942, + -0.015096317045390606, + 0.01237546931952238, + 0.025993211194872856, + -0.013462457805871964, + -0.012024392373859882, + 0.028815332800149918, + 0.012226936407387257, + 0.015474400483071804, + 0.025547614321112633, + 0.0059210509061813354, + -0.004300694912672043, + 0.013577233068645, + 0.009728888049721718, + 0.010728107765316963, + 0.00023039437655825168, + 0.003622171003371477, + 0.009060490876436234, + 0.005380932241678238, + 0.023859743028879166, + -0.02531806379556656, + -0.01411060057580471, + -0.002405215986073017, + 0.019565800204873085, + 0.0030601099133491516, + -0.004476233385503292, + -0.014785748906433582, + 0.002957149874418974, + -0.012382220476865768, + 0.017594365403056145, + 0.0036660556215792894, + -0.009519591927528381, + -0.019754840061068535, + -0.0014296266017481685, + -0.004607887472957373, + 0.003925987519323826, + -0.0027208479586988688, + -0.0025385578628629446, + 0.011193959973752499, + -0.011437012813985348, + 0.015744458884000778, + 0.019457776099443436, + 0.026897910982370377, + -0.022144865244627, + -0.015784969553351402, + 0.0005599511787295341, + 0.003455071710050106, + 0.004189295694231987, + -0.024561896920204163, + -0.0029436468612402678, + -0.007892484776675701, + 0.01848556287586689, + 0.018201999366283417, + -0.010032705031335354, + -0.006532060448080301, + -0.007588667329400778, + 0.00977614801377058, + -0.013367937877774239, + -0.01886364445090294, + -0.0020035027991980314, + 0.003622171003371477, + -0.003547904547303915, + 0.018607089295983315, + -0.006525308825075626, + 0.013475961051881313, + 0.019066190347075462, + -0.0006692408351227641, + 0.0007321140146814287, + 0.01290883682668209, + -0.0006557378219440579, + -0.004216301720589399, + -0.017027242109179497, + -0.004655147902667522, + 0.004601135849952698, + 0.03475663810968399, + -0.009992195293307304, + 0.033730413764715195, + -0.019403763115406036, + -0.01987636834383011, + -0.02857227809727192, + -0.005542967934161425, + 0.0018819760298356414, + -0.009816656820476055, + -0.012517250142991543, + 0.004672026727348566, + -0.010545817203819752, + 0.009006478823721409, + 0.02830221876502037, + -0.0002926346205640584, + 0.003608667990192771, + 0.0049150800332427025, + 0.006498302798718214, + -0.015069311484694481, + 0.009425071068108082, + -0.0057792700827121735, + 0.022563457489013672, + -0.008378591388463974, + -0.007257844787091017, + -0.0013005045475438237, + -0.008250312879681587, + 0.011545036919414997, + -0.007500898092985153, + -0.0018819760298356414, + 0.01436715666204691, + -0.007811466697603464, + 0.0009882483864203095, + -0.0034972685389220715, + 0.0017030617455020547, + -0.002442349214106798, + 0.0026094485074281693, + 0.008992976509034634, + 0.017405325546860695, + 0.011288480833172798, + 0.0066367085091769695, + -0.046963319182395935, + 0.0002827183634508401, + 0.02824820764362812, + 0.008466360159218311, + -0.02633078582584858, + 0.014623713679611683, + -0.0021469718776643276, + 0.01525835320353508, + -0.003868600120767951, + 0.015960507094860077, + 0.004996097646653652, + 0.004803680349141359, + -0.007284850813448429, + -0.003463511122390628, + 0.00933730136603117, + 0.027086952701210976, + 0.007845223881304264, + 0.0027377265505492687, + -0.01640610583126545, + 0.002474418841302395, + -0.008236809633672237, + 0.01821550354361534, + 0.00933730136603117, + 0.013908056542277336, + -0.003736946266144514, + -0.001998439198359847, + -0.011693569831550121, + 0.0019950633868575096, + 0.010451296344399452, + 0.00010417328303446993, + 0.016757182776927948, + 0.00030023002182133496, + -0.018134484067559242, + -0.031434908509254456, + 0.00010253815707983449, + -0.013111380860209465, + -0.020092414692044258, + -0.010444545187056065, + -0.029544491320848465, + 0.0016313272062689066, + -0.006150601431727409, + -0.007797963451594114, + 0.01771589368581772, + 0.009958438575267792, + 0.003723443252965808, + -0.007730448618531227, + -0.0016212000045925379, + -0.002972340676933527, + 0.02155073545873165, + 0.002712408546358347, + -0.021402202546596527, + -0.007777709048241377, + 0.0010076588951051235, + 0.01305736880749464, + -0.0033149784430861473, + 0.010552569292485714, + -0.021429209038615227, + 0.008196300826966763, + 0.010242000222206116, + 0.007291602436453104, + 0.01134924404323101, + -0.0109103973954916, + -0.0064139096066355705, + -0.005856912117451429, + -0.02034897170960903, + -0.026047224178910255, + -0.0005194422556087375, + -0.0014085283037275076, + -0.01431314554065466, + -0.00027892066282220185, + 0.014259133487939835, + 0.01835053227841854, + -0.012199930846691132, + 0.019862864166498184, + 0.01712176203727722, + 0.016865206882357597, + 1.851383422035724e-5, + 0.006457793992012739, + 0.02696542628109455, + 0.019862864166498184, + -0.0009966877987608314, + 0.02315758913755417, + 0.03718717023730278, + -0.010944155044853687, + -0.005674622021615505, + -0.004192671272903681, + -0.021280676126480103, + 0.010687598958611488, + -0.013543476350605488, + 0.012517250142991543, + -0.004921831656247377, + -0.008365088142454624, + 0.012348463758826256, + 0.01963331364095211, + 0.009128006175160408, + -0.0082435617223382, + 0.01186910830438137, + -0.0162440687417984, + 0.033919453620910645, + -0.01089689414948225, + -0.01428613904863596, + -0.008601389825344086, + -0.003801085287705064, + 0.03459460288286209, + -0.00438171299174428, + -0.004229804500937462, + -0.013300422579050064, + 0.01936325430870056, + 0.009539846330881119, + 0.01238897256553173, + -0.0001616136432858184, + -0.005833281669765711, + -0.002251619705930352, + 0.005526089109480381, + -0.00832457933574915, + -0.0005080491537228227, + 0.0216047465801239, + 0.002206047298386693, + 0.00823005847632885, + 5.416351541498443e-6, + 0.005813027266412973, + -0.001959618180990219, + -0.010275757871568203, + -0.005036606919020414, + 0.007028294261544943, + -0.009100999683141708, + -0.010957658290863037, + 0.012753552757203579, + -0.004661899525672197, + -0.02080807276070118, + 0.006467921193689108, + 0.016433110460639, + -0.00766293378546834, + 0.006248497869819403, + 0.009661372750997543, + 0.019511787220835686, + 0.01240247581154108, + 0.007183578331023455, + -0.019160710275173187, + 0.006710974499583244, + 0.02318459376692772, + -0.0005472921184264123, + 0.031704965978860855, + -0.00719032995402813, + 0.009236029349267483, + 0.02510201558470726, + 0.004071144387125969, + 0.011707072146236897, + 0.015744458884000778, + 0.004520118236541748, + -0.004047514405101538, + 0.008824189193546772, + -0.013651499524712563, + -0.0025773788802325726, + -0.01651412807404995, + 0.018917657434940338, + -0.022428428754210472, + -0.0038753515109419823, + -0.03691711276769638, + -0.00767643703147769, + -0.003078676527366042, + 0.015528412535786629, + -0.010667343623936176, + 0.020389480516314507 + ] + }, + "text_id_to_ref_doc_id": { + "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9": "b809786f-0419-4709-9145-e8157d52ba26", + "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219": "b809786f-0419-4709-9145-e8157d52ba26", + "f62a56d7-421c-448d-8040-45eec0049950": "b809786f-0419-4709-9145-e8157d52ba26", + "3a432b4f-1d15-4fdb-b22a-60260e79a243": "b809786f-0419-4709-9145-e8157d52ba26", + "2497c312-b311-4e27-9852-4dfef272acbc": "b809786f-0419-4709-9145-e8157d52ba26", + "d6aaa9bd-e5dc-4388-a265-0eec11f922d7": "c4ba4595-9ca7-484e-935b-a055614bda66", + "7462b66d-9ad6-410f-9ceb-ccc834c899a7": "c4ba4595-9ca7-484e-935b-a055614bda66", + "75157767-dded-4c39-b43e-88cc72a9bea2": "c4ba4595-9ca7-484e-935b-a055614bda66", + "4bc9adf8-6c71-466c-a373-cba39f77d046": "c4ba4595-9ca7-484e-935b-a055614bda66", + "4d392551-daf1-4443-abe8-7dac3a5956ef": "c4ba4595-9ca7-484e-935b-a055614bda66", + "39a71b21-283f-4275-86b2-ff692afcbea9": "c4ba4595-9ca7-484e-935b-a055614bda66", + "a41d9aca-7986-4114-8fd6-07a67f82d394": "c4ba4595-9ca7-484e-935b-a055614bda66", + "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9": "c4ba4595-9ca7-484e-935b-a055614bda66", + "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff": "c4ba4595-9ca7-484e-935b-a055614bda66", + "d825183c-f2ad-4af6-bd58-5972857c4e21": "cd34e14d-a65f-4e21-93f8-c306de702613", + "0a79d729-0631-4479-a8e9-a660ab1445b3": "cd34e14d-a65f-4e21-93f8-c306de702613", + "43b96eaa-5ec1-44d6-94c9-52e885e3cea1": "cd34e14d-a65f-4e21-93f8-c306de702613", + "3436c4b5-7ac3-408f-8bca-c14986fead25": "cd34e14d-a65f-4e21-93f8-c306de702613", + "ed810bc0-eb72-45d8-90b2-999a60068a2b": "cd34e14d-a65f-4e21-93f8-c306de702613", + "d5868ba2-8879-435c-841a-fe4ecf9e677b": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "8fcb6784-76ee-4e3d-a540-7140fc8e156f": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "d79773d0-4aed-4f57-b8d7-c055a16f53e0": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "1eba341e-d6ca-44a3-928d-d5bfab234753": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "fe100cbc-74d2-41bf-a40b-70d8170d7b31": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "3e189d7a-020e-46d1-9904-2e908115d370": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "0e75adab-8998-455f-b73c-4e13bcb189ab": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "1e92140d-6f5e-46bb-9a95-f0f06f5746db": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "43773776-973f-420d-ad88-aef356e711c9": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "2117b6f5-f483-45bf-ab97-a8379528a517": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "58074a32-3c79-41fd-b1f4-33e803d124af": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "a33e930e-3141-491d-bb88-4cc2fde13111": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "5e5d5c28-e238-485a-88b0-46cea135634e": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "845f2b9d-770b-4274-9e68-8c56039832e4": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "cb58775b-b524-407b-b9fc-2ab8eeb52c4c": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "d6693392-0548-4317-8f58-471434dd9e7c": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "18dcc255-3559-4715-b452-baedecc77545": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "bce02060-3326-43af-870e-a03cad701b05": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "e3dd77e5-4225-4b6f-921e-9db7edc76117": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "d195d40c-58be-4647-a367-c03fec0b3b70": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "85311773-cc40-40c8-9184-15ff45fba6dd": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "48346ec0-5a70-4849-95c6-46a53791dbda": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "0655b0e4-6783-4fd6-a9a8-d6eee5b45921": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "db03df28-87cf-49a7-8db2-91abd8f871eb": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "e3dc24c2-7188-4e06-8c16-95b620d60c9c": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "c7cc85c8-d045-4646-a3cf-ecb33f0e261b": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "31bffcaa-ca8d-4ffe-890b-a31409513851": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "08459d71-4c98-469d-a923-2c7913612f4a": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "2260fb63-9f1d-43ec-b992-7857a3a39610": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "2537259a-f63b-444c-82c0-039bc9586ed9": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "8fa8b23f-b3fe-4699-bf32-79fa856199af": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ddf7e5b0-98af-4830-9f58-1e4dbc326df8": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "6672c195-0f1d-407e-9fea-615b357ef033": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "c7bf92fe-774f-43ce-a757-092e1c88e11d": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "39e9e7d7-6ecc-4065-a99d-b93be3d88231": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "9da0aea8-af9c-49a1-97e3-517097b0d6c1": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "b81ce6cf-58a1-46bd-95ef-7de922157172": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "739e7a32-21db-4a05-9e76-acd0271cc3d4": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "b35d6054-3c4a-4bc5-acad-48d3e2306141": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "09153e46-075d-438f-91f2-2e7537d2f550": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "f9ca7807-3a62-4021-8141-7967ea91bd1c": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "0843f367-b0f1-49e1-a25e-38e3df5f4da9": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "45b5b822-819a-4a0b-a28a-fa937e4aba70": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "c9440268-ea98-463c-80ca-52fbb14b37a3": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "b1dfac79-06c5-401c-ac7f-81564dc6e7df": "3e618721-6933-4289-8f44-2c3a522560f2", + "58503ed9-8447-469f-9d86-49495fbb0874": "070060f9-be83-493c-bbfd-5213611eb59e", + "4e45d12d-0e82-4d54-a423-82057b75c96c": "070060f9-be83-493c-bbfd-5213611eb59e", + "55101789-8dc2-429d-9a8b-d5623c1ba66d": "070060f9-be83-493c-bbfd-5213611eb59e", + "c3a44332-4b51-4967-81e8-369507b503c8": "070060f9-be83-493c-bbfd-5213611eb59e", + "b5e6b215-0d07-4033-8507-9df9bdbf1159": "070060f9-be83-493c-bbfd-5213611eb59e", + "8785c7d6-0d25-45a2-81af-e74acec0b17d": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "d9344f98-b8dc-44e4-ab86-8c23b7d646cc": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "2bc15fee-b800-42db-8473-d85696cfe92d": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "cb40370d-5c8f-45ec-8093-73c8448a02fc": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "807c6ec8-5a3b-4098-82ed-1d4270438790": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "016d159f-293f-45d9-af26-9be407742d5e": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "2414e950-98b7-436d-ba18-de3485c35513": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "d545e65f-9b87-41d1-b840-12f95d36c6eb": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "5491c5ab-7e6e-43e3-821a-8441a9ef7519": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "97dc403d-dd4a-4474-9732-5961f25413b0": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "eb3977da-715c-4778-8726-b82dc5678d6f": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "5c5e1212-45fe-4164-94d0-7dc6da6510cc": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "30bea738-adb3-49ce-b4c5-2cb02c62296d": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "6266fa60-fb2c-435a-8b42-9a0728ec7f67": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "0ca14135-c1e7-48ce-8afe-b260ac093908": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "e7bbf55c-0555-43f3-ab52-3fc85bba8e54": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "f1384e4c-89a6-4248-86ec-5530dc41bedc": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "b3717357-f19c-4530-bfdd-45b407eecb47": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "f930b218-26ac-4a55-913f-ebb285f24de0": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "640c98cf-9553-49d8-97f4-ad858fb8ed42": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "956e03d7-630b-4cdf-a595-7396eb2435ab": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "b2f9388b-55eb-4863-9400-016539f4ecea": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "63dc5976-0aed-4779-9bd4-11eab2368fd8": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2": "4eee9a38-808d-4205-bfd6-6f102b06fe96", + "038d0cad-dcfd-42eb-842d-10ceebf9d1c8": "2955f1f9-17f8-406d-9cfe-4eac441b3162", + "001911ad-fe0d-41d8-8799-743f347e274d": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "49ca0de0-7091-405d-b0d4-82aaf63f96fb": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "a571e22f-f6b7-4f59-b77a-75ff196f623f": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "3679d4e1-6415-4993-80a2-9bb483920080": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "bf1b101e-c592-487a-a555-ab3968da1332": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "1f4bfba2-3e5e-4925-89a8-73161cbc762b": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ebd8a76d-2377-4ab3-8353-68199c4f82cc": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ea58997e-836d-45c6-a5c5-9aea900c68d1": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "e89492ef-ec34-4846-bccb-77d98bebdea6": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "a1d75aef-b074-4f53-83f9-9b37bb7cebe0": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "3eee5d97-4fcf-4f68-b8ae-4a361882f81d": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "01d0cf15-5368-4755-adef-b598719b3d15": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "f64f3cfd-812d-4232-9d9b-a3fad6f17d19": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "0d294764-3db7-4738-8456-a70e444b0210": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "5a2f200d-58d4-46f9-8e02-ab06be757e72": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "6811ba89-1843-4937-94f8-6dcfb72d2d0e": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "f96265c5-d43a-4e42-9bd9-350aafc277ab": "4ec99f77-fecf-482d-8345-9b715b893357", + "a1677329-df20-406a-a4a6-05c587756fcf": "4ec99f77-fecf-482d-8345-9b715b893357", + "32ec23f8-e456-4acc-9c38-fa5019e6ec28": "4ec99f77-fecf-482d-8345-9b715b893357", + "ee6324cb-cfa3-4721-974a-db01834600a4": "4ec99f77-fecf-482d-8345-9b715b893357", + "5c74fb88-e897-420e-882b-3945dea9c505": "4ec99f77-fecf-482d-8345-9b715b893357", + "85a82ba3-b051-4df7-ba6e-7a0bcbc27353": "4ec99f77-fecf-482d-8345-9b715b893357", + "d8dd091c-aa13-44d1-938f-a12292d48d95": "4ec99f77-fecf-482d-8345-9b715b893357", + "98320e0a-868d-4352-a07e-071e5897432d": "4ec99f77-fecf-482d-8345-9b715b893357", + "46c5a59c-4489-44df-a1fd-dc958dd937c9": "4ec99f77-fecf-482d-8345-9b715b893357", + "8c101002-338f-44e2-aa49-eea62c29b026": "4ec99f77-fecf-482d-8345-9b715b893357", + "20952efe-090a-45aa-b177-e53ec486e3f1": "4ec99f77-fecf-482d-8345-9b715b893357", + "f7adff25-5877-4d67-a53a-1a54527b2cc6": "4ec99f77-fecf-482d-8345-9b715b893357", + "55164bf4-f736-40f9-9876-a5f6c32c463a": "4ec99f77-fecf-482d-8345-9b715b893357", + "59d8dd96-da6f-49c9-8c16-c219c359561d": "4ec99f77-fecf-482d-8345-9b715b893357", + "eec8cb18-5fef-47f2-8774-3e3d70b92ec5": "4ec99f77-fecf-482d-8345-9b715b893357", + "12269a25-c023-442d-bd65-064bfae06e67": "675410b2-596e-493b-8b0a-0c3990436dd3", + "476220ea-1795-47f7-997b-8eb19792ef78": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "bbe211a7-04dd-4fea-a58d-54870d8ff0c6": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "21b34534-9d4e-4e1e-9763-792a8f50b398": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "f0bf7748-c987-4c01-9cd8-09a87939938b": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "3295a522-57b4-4146-a414-09bc00dbc9e7": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "13afaf92-1e65-43e2-831c-2ecd72c108a2": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "d7a173a7-0882-41b9-b755-1972cdcf4e78": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "7477f664-2d4d-4946-93fb-10f0f7c7fe2f": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "75be21ee-7046-4af4-b9a7-834821f39c3a": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "d2d18186-43b6-41c4-9c61-81bb3209005c": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "05d59f98-d186-466e-9a1a-9f5b18b56bce": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "06557d00-501d-4f76-9ab2-2ce90e7751c3": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "2776c4fe-b24c-493f-bd44-2c252984cc06": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "8d4cc9d1-fafb-459a-b65f-7748250ff308": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "c695a9b6-67a3-406b-af48-f2d132267861": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "02af39be-8f80-4e64-8db1-726897aaa0fe": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "4f5b559d-e60a-4a57-9b99-6c0427112512": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "dbfad54b-ca37-4852-9162-92cef747df8d": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "6be5647b-832e-48ae-aa43-e107420df194": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "16bbd799-fd2f-4b40-b959-54097655bd69": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "a39df619-be28-4174-bb5b-e63c1079ce09": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "de5af6d9-781e-4f03-af68-540d4ca5f861": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "7b56e245-174f-4279-90aa-bed3d7a5bcd1": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "6c7e15c2-be7e-4a60-848f-becd4b110db7": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "c2e151b8-3c71-441d-aa4a-6a7224e94fc8": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "6aa17a74-053a-443e-b412-66412367f29f": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "2a902471-31a0-4af2-95fb-633cca7eb7ce": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ecec68b7-4d23-4ef0-96cb-96a776280b07": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "a5c24e0d-dc07-4713-8f8b-adf75906acc0": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "14706ad3-1f24-48d4-aa97-c543af753a5a": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "b1879021-4816-447e-bcf2-31cae39f1dc7": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "9fc6026e-f392-49cc-aea9-7315ef913cf4": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "fe612ae6-4bae-487d-921f-811daa789dc2": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "f259fd6c-516e-47cd-8f1c-4d9b51642a5c": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "fe88bd89-3d04-441b-bcee-67db0c8e3da2": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "180aaef6-1850-4f67-b268-11396da976f4": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "f04b18f7-13be-4067-9ed6-b3324f5a06d0": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "12008c04-5842-43b0-a2eb-3d6fc544a1cf": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "e8532359-9caa-4ec8-882e-9a1a355de9bc": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "93cb7706-5e09-4305-8e63-64adc3f8c5ec": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "1dc50e96-2e03-4a1c-878a-2124b61040aa": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "9cd00511-baec-412a-b5e7-cecc9b48ab69": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "56d01d77-8e38-448c-b416-764d64927354": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "2caeef28-e32c-4545-b62e-d223747cd700": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "94899737-e97e-4b3c-b374-4aae60f724be": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "c485d342-3f7f-42fc-acf5-2b16c6305c76": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "58d991d1-5ea2-42ee-83fb-faf19c4bae58": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "16f4ca63-7781-4c83-9db4-ef0e8fd2a398": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "41f41352-1116-41d4-9b74-7543016929a3": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "a56d8776-1ac1-4e38-b226-c3d520ba66be": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "e4ff673f-243b-42b3-b92d-995b4207cd38": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "7855a776-75d8-443d-8d15-d4b46539e636": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "12a8dfa4-1b29-4fd9-bd6d-946676617fb1": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "26310357-9e50-45a5-b84a-15dbc3fc6134": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "6cdd0d74-92f8-4532-88ea-c99c48ee099f": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "metadata_dict": { + "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "b809786f-0419-4709-9145-e8157d52ba26", + "doc_id": "b809786f-0419-4709-9145-e8157d52ba26", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "b809786f-0419-4709-9145-e8157d52ba26", + "doc_id": "b809786f-0419-4709-9145-e8157d52ba26", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "f62a56d7-421c-448d-8040-45eec0049950": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "b809786f-0419-4709-9145-e8157d52ba26", + "doc_id": "b809786f-0419-4709-9145-e8157d52ba26", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "3a432b4f-1d15-4fdb-b22a-60260e79a243": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "b809786f-0419-4709-9145-e8157d52ba26", + "doc_id": "b809786f-0419-4709-9145-e8157d52ba26", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "2497c312-b311-4e27-9852-4dfef272acbc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "b809786f-0419-4709-9145-e8157d52ba26", + "doc_id": "b809786f-0419-4709-9145-e8157d52ba26", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "d6aaa9bd-e5dc-4388-a265-0eec11f922d7": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "7462b66d-9ad6-410f-9ceb-ccc834c899a7": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "75157767-dded-4c39-b43e-88cc72a9bea2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "4bc9adf8-6c71-466c-a373-cba39f77d046": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "4d392551-daf1-4443-abe8-7dac3a5956ef": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "39a71b21-283f-4275-86b2-ff692afcbea9": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "a41d9aca-7986-4114-8fd6-07a67f82d394": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "d825183c-f2ad-4af6-bd58-5972857c4e21": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "0a79d729-0631-4479-a8e9-a660ab1445b3": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "43b96eaa-5ec1-44d6-94c9-52e885e3cea1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "3436c4b5-7ac3-408f-8bca-c14986fead25": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "ed810bc0-eb72-45d8-90b2-999a60068a2b": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "d5868ba2-8879-435c-841a-fe4ecf9e677b": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "ref_doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91" + }, + "8fcb6784-76ee-4e3d-a540-7140fc8e156f": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "ref_doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91" + }, + "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "ref_doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91" + }, + "d79773d0-4aed-4f57-b8d7-c055a16f53e0": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "1eba341e-d6ca-44a3-928d-d5bfab234753": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "fe100cbc-74d2-41bf-a40b-70d8170d7b31": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "3e189d7a-020e-46d1-9904-2e908115d370": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "0e75adab-8998-455f-b73c-4e13bcb189ab": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "1e92140d-6f5e-46bb-9a95-f0f06f5746db": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "43773776-973f-420d-ad88-aef356e711c9": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "2117b6f5-f483-45bf-ab97-a8379528a517": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "58074a32-3c79-41fd-b1f4-33e803d124af": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "a33e930e-3141-491d-bb88-4cc2fde13111": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "5e5d5c28-e238-485a-88b0-46cea135634e": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "845f2b9d-770b-4274-9e68-8c56039832e4": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "cb58775b-b524-407b-b9fc-2ab8eeb52c4c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "d6693392-0548-4317-8f58-471434dd9e7c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "18dcc255-3559-4715-b452-baedecc77545": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "bce02060-3326-43af-870e-a03cad701b05": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "e3dd77e5-4225-4b6f-921e-9db7edc76117": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "d195d40c-58be-4647-a367-c03fec0b3b70": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "85311773-cc40-40c8-9184-15ff45fba6dd": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "48346ec0-5a70-4849-95c6-46a53791dbda": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "0655b0e4-6783-4fd6-a9a8-d6eee5b45921": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "db03df28-87cf-49a7-8db2-91abd8f871eb": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "e3dc24c2-7188-4e06-8c16-95b620d60c9c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "c7cc85c8-d045-4646-a3cf-ecb33f0e261b": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "31bffcaa-ca8d-4ffe-890b-a31409513851": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "doc_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "ref_doc_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe" + }, + "08459d71-4c98-469d-a923-2c7913612f4a": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "doc_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "ref_doc_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe" + }, + "2260fb63-9f1d-43ec-b992-7857a3a39610": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "2537259a-f63b-444c-82c0-039bc9586ed9": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "8fa8b23f-b3fe-4699-bf32-79fa856199af": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "ddf7e5b0-98af-4830-9f58-1e4dbc326df8": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "6672c195-0f1d-407e-9fea-615b357ef033": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "c7bf92fe-774f-43ce-a757-092e1c88e11d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "39e9e7d7-6ecc-4065-a99d-b93be3d88231": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "9da0aea8-af9c-49a1-97e3-517097b0d6c1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "b81ce6cf-58a1-46bd-95ef-7de922157172": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "739e7a32-21db-4a05-9e76-acd0271cc3d4": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "b35d6054-3c4a-4bc5-acad-48d3e2306141": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "09153e46-075d-438f-91f2-2e7537d2f550": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "f9ca7807-3a62-4021-8141-7967ea91bd1c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "0843f367-b0f1-49e1-a25e-38e3df5f4da9": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "45b5b822-819a-4a0b-a28a-fa937e4aba70": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "c9440268-ea98-463c-80ca-52fbb14b37a3": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "b1dfac79-06c5-401c-ac7f-81564dc6e7df": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_block.rst", + "file_name": "magnetic_block.rst", + "file_size": 1580, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "3e618721-6933-4289-8f44-2c3a522560f2", + "doc_id": "3e618721-6933-4289-8f44-2c3a522560f2", + "ref_doc_id": "3e618721-6933-4289-8f44-2c3a522560f2" + }, + "58503ed9-8447-469f-9d86-49495fbb0874": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "doc_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "4e45d12d-0e82-4d54-a423-82057b75c96c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "doc_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "55101789-8dc2-429d-9a8b-d5623c1ba66d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "doc_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "c3a44332-4b51-4967-81e8-369507b503c8": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "doc_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "b5e6b215-0d07-4033-8507-9df9bdbf1159": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "doc_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "8785c7d6-0d25-45a2-81af-e74acec0b17d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "doc_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "ref_doc_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f" + }, + "d9344f98-b8dc-44e4-ab86-8c23b7d646cc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "doc_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "ref_doc_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f" + }, + "2bc15fee-b800-42db-8473-d85696cfe92d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "cb40370d-5c8f-45ec-8093-73c8448a02fc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "807c6ec8-5a3b-4098-82ed-1d4270438790": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "016d159f-293f-45d9-af26-9be407742d5e": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "2414e950-98b7-436d-ba18-de3485c35513": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "d545e65f-9b87-41d1-b840-12f95d36c6eb": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "doc_id": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "ref_doc_id": "12e8891c-1c03-4329-81e7-fe1963b9703e" + }, + "5491c5ab-7e6e-43e3-821a-8441a9ef7519": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "doc_id": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "ref_doc_id": "12e8891c-1c03-4329-81e7-fe1963b9703e" + }, + "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "97dc403d-dd4a-4474-9732-5961f25413b0": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "eb3977da-715c-4778-8726-b82dc5678d6f": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "5c5e1212-45fe-4164-94d0-7dc6da6510cc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "30bea738-adb3-49ce-b4c5-2cb02c62296d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "6266fa60-fb2c-435a-8b42-9a0728ec7f67": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "0ca14135-c1e7-48ce-8afe-b260ac093908": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "e7bbf55c-0555-43f3-ab52-3fc85bba8e54": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "f1384e4c-89a6-4248-86ec-5530dc41bedc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "b3717357-f19c-4530-bfdd-45b407eecb47": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "f930b218-26ac-4a55-913f-ebb285f24de0": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "640c98cf-9553-49d8-97f4-ad858fb8ed42": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "956e03d7-630b-4cdf-a595-7396eb2435ab": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "b2f9388b-55eb-4863-9400-016539f4ecea": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "63dc5976-0aed-4779-9bd4-11eab2368fd8": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_atomic_commands.rst", + "file_name": "new_atomic_commands.rst", + "file_size": 1178, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "4eee9a38-808d-4205-bfd6-6f102b06fe96", + "doc_id": "4eee9a38-808d-4205-bfd6-6f102b06fe96", + "ref_doc_id": "4eee9a38-808d-4205-bfd6-6f102b06fe96" + }, + "038d0cad-dcfd-42eb-842d-10ceebf9d1c8": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_complex_commands.rst", + "file_name": "new_complex_commands.rst", + "file_size": 1622, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "2955f1f9-17f8-406d-9cfe-4eac441b3162", + "doc_id": "2955f1f9-17f8-406d-9cfe-4eac441b3162", + "ref_doc_id": "2955f1f9-17f8-406d-9cfe-4eac441b3162" + }, + "001911ad-fe0d-41d8-8799-743f347e274d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "49ca0de0-7091-405d-b0d4-82aaf63f96fb": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "a571e22f-f6b7-4f59-b77a-75ff196f623f": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "3679d4e1-6415-4993-80a2-9bb483920080": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "bf1b101e-c592-487a-a555-ab3968da1332": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "1f4bfba2-3e5e-4925-89a8-73161cbc762b": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "ebd8a76d-2377-4ab3-8353-68199c4f82cc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "ea58997e-836d-45c6-a5c5-9aea900c68d1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "e89492ef-ec34-4846-bccb-77d98bebdea6": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "a1d75aef-b074-4f53-83f9-9b37bb7cebe0": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "3eee5d97-4fcf-4f68-b8ae-4a361882f81d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "01d0cf15-5368-4755-adef-b598719b3d15": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "f64f3cfd-812d-4232-9d9b-a3fad6f17d19": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "0d294764-3db7-4738-8456-a70e444b0210": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "5a2f200d-58d4-46f9-8e02-ab06be757e72": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "6811ba89-1843-4937-94f8-6dcfb72d2d0e": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "f96265c5-d43a-4e42-9bd9-350aafc277ab": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "a1677329-df20-406a-a4a6-05c587756fcf": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "32ec23f8-e456-4acc-9c38-fa5019e6ec28": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "ee6324cb-cfa3-4721-974a-db01834600a4": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "5c74fb88-e897-420e-882b-3945dea9c505": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "85a82ba3-b051-4df7-ba6e-7a0bcbc27353": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "d8dd091c-aa13-44d1-938f-a12292d48d95": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "98320e0a-868d-4352-a07e-071e5897432d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "46c5a59c-4489-44df-a1fd-dc958dd937c9": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "8c101002-338f-44e2-aa49-eea62c29b026": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "20952efe-090a-45aa-b177-e53ec486e3f1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "f7adff25-5877-4d67-a53a-1a54527b2cc6": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "55164bf4-f736-40f9-9876-a5f6c32c463a": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "59d8dd96-da6f-49c9-8c16-c219c359561d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "eec8cb18-5fef-47f2-8774-3e3d70b92ec5": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "doc_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "12269a25-c023-442d-bd65-064bfae06e67": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_modules.rst", + "file_name": "new_modules.rst", + "file_size": 1791, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15", + "_node_type": "TextNode", + "document_id": "675410b2-596e-493b-8b0a-0c3990436dd3", + "doc_id": "675410b2-596e-493b-8b0a-0c3990436dd3", + "ref_doc_id": "675410b2-596e-493b-8b0a-0c3990436dd3" + }, + "476220ea-1795-47f7-997b-8eb19792ef78": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "bbe211a7-04dd-4fea-a58d-54870d8ff0c6": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "21b34534-9d4e-4e1e-9763-792a8f50b398": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "f0bf7748-c987-4c01-9cd8-09a87939938b": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "3295a522-57b4-4146-a414-09bc00dbc9e7": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "13afaf92-1e65-43e2-831c-2ecd72c108a2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "d7a173a7-0882-41b9-b755-1972cdcf4e78": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "7477f664-2d4d-4946-93fb-10f0f7c7fe2f": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "75be21ee-7046-4af4-b9a7-834821f39c3a": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "d2d18186-43b6-41c4-9c61-81bb3209005c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "05d59f98-d186-466e-9a1a-9f5b18b56bce": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "06557d00-501d-4f76-9ab2-2ce90e7751c3": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "2776c4fe-b24c-493f-bd44-2c252984cc06": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "8d4cc9d1-fafb-459a-b65f-7748250ff308": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "c695a9b6-67a3-406b-af48-f2d132267861": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "02af39be-8f80-4e64-8db1-726897aaa0fe": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "4f5b559d-e60a-4a57-9b99-6c0427112512": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "dbfad54b-ca37-4852-9162-92cef747df8d": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "6be5647b-832e-48ae-aa43-e107420df194": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "16bbd799-fd2f-4b40-b959-54097655bd69": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "a39df619-be28-4174-bb5b-e63c1079ce09": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "de5af6d9-781e-4f03-af68-540d4ca5f861": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "7b56e245-174f-4279-90aa-bed3d7a5bcd1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "6c7e15c2-be7e-4a60-848f-becd4b110db7": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25", + "_node_type": "TextNode", + "document_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "c2e151b8-3c71-441d-aa4a-6a7224e94fc8": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "6aa17a74-053a-443e-b412-66412367f29f": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "2a902471-31a0-4af2-95fb-633cca7eb7ce": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "ecec68b7-4d23-4ef0-96cb-96a776280b07": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "a5c24e0d-dc07-4713-8f8b-adf75906acc0": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "14706ad3-1f24-48d4-aa97-c543af753a5a": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "b1879021-4816-447e-bcf2-31cae39f1dc7": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "9fc6026e-f392-49cc-aea9-7315ef913cf4": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "fe612ae6-4bae-487d-921f-811daa789dc2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "f259fd6c-516e-47cd-8f1c-4d9b51642a5c": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "fe88bd89-3d04-441b-bcee-67db0c8e3da2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "180aaef6-1850-4f67-b268-11396da976f4": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "f04b18f7-13be-4067-9ed6-b3324f5a06d0": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "12008c04-5842-43b0-a2eb-3d6fc544a1cf": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "e8532359-9caa-4ec8-882e-9a1a355de9bc": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "93cb7706-5e09-4305-8e63-64adc3f8c5ec": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "1dc50e96-2e03-4a1c-878a-2124b61040aa": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "9cd00511-baec-412a-b5e7-cecc9b48ab69": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "56d01d77-8e38-448c-b416-764d64927354": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "2caeef28-e32c-4545-b62e-d223747cd700": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "94899737-e97e-4b3c-b374-4aae60f724be": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "c485d342-3f7f-42fc-acf5-2b16c6305c76": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "58d991d1-5ea2-42ee-83fb-faf19c4bae58": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "16f4ca63-7781-4c83-9db4-ef0e8fd2a398": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "41f41352-1116-41d4-9b74-7543016929a3": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "a56d8776-1ac1-4e38-b226-c3d520ba66be": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "e4ff673f-243b-42b3-b92d-995b4207cd38": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "7855a776-75d8-443d-8d15-d4b46539e636": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "12a8dfa4-1b29-4fd9-bd6d-946676617fb1": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "26310357-9e50-45a5-b84a-15dbc3fc6134": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "6cdd0d74-92f8-4532-88ea-c99c48ee099f": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26", + "_node_type": "TextNode", + "document_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + } + } +} diff --git a/opentrons-ai-server/api/storage/index/v215/docstore.json b/opentrons-ai-server/api/storage/index/v215/docstore.json new file mode 100644 index 00000000000..a2554ab0b98 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v215/docstore.json @@ -0,0 +1,16297 @@ +{ + "docstore/metadata": { + "b809786f-0419-4709-9145-e8157d52ba26": { + "doc_hash": "1bdb767d459103d11729b81f0788ad6b7b59be186a744cf297d57757462e5a3a" + }, + "c4ba4595-9ca7-484e-935b-a055614bda66": { + "doc_hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75" + }, + "cd34e14d-a65f-4e21-93f8-c306de702613": { + "doc_hash": "fd5a8d4c9dced63c000cb257c4fd341d20f7b25522d72f89c8d4851827792d92" + }, + "fe616abb-7210-4467-8a8e-869cbc31cb91": { + "doc_hash": "26e69b5e4ecc1ac108a33292ba3b796c01b85ede9ac7cd8845ec7f07fc8bf84f" + }, + "f55f850c-bb5d-4c65-8b9c-92f35de143e1": { + "doc_hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9" + }, + "63e31b90-e708-4b24-89cc-1e383bb9f237": { + "doc_hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8" + }, + "faed24a6-41f4-4f3b-8fd8-b4944af402ee": { + "doc_hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660" + }, + "61435d27-a0f0-491e-b0ae-21c5a06674fe": { + "doc_hash": "a21d14a12154e631235e36ffb552bf582b27e67242bee401aca73f53fe678e1d" + }, + "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6": { + "doc_hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0" + }, + "2c67dda2-cebc-4bcb-90b0-a136cb824e1c": { + "doc_hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4" + }, + "3e618721-6933-4289-8f44-2c3a522560f2": { + "doc_hash": "3dc7fc04432b070d7a16ce4ee9272e309977c3283260d1a0a448dddfb06a88c2" + }, + "070060f9-be83-493c-bbfd-5213611eb59e": { + "doc_hash": "01ff5c871e406c5e5ce3973281527479b3022e24eef9faaf1ce4a08c6613c240" + }, + "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f": { + "doc_hash": "1a9e7b576c4f9e974465c3164d41e5c2a086924e0a0db2b073b586c27815e0a6" + }, + "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356": { + "doc_hash": "f5b125bfcafc2157968fef60a5d4fd996cd21d8136f5db9da345ca3c48068eb9" + }, + "12e8891c-1c03-4329-81e7-fe1963b9703e": { + "doc_hash": "c74e399df799a3b923b3724bbc7befa0ce820153911e8d3797374b7347bac6c1" + }, + "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce": { + "doc_hash": "c1c5494f0b74f08f4f33b41ee629a00a19559ec733175a9554765ceabc1c57da" + }, + "5fb5561a-5539-44f8-bb69-6f1462e84132": { + "doc_hash": "befbe678e84a26344a8ed5a10bded77fc98f5b82a7cdce7143d53557495d9fa2" + }, + "fbf5438b-1bca-43d2-a88d-98f97a35f19f": { + "doc_hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53" + }, + "4eee9a38-808d-4205-bfd6-6f102b06fe96": { + "doc_hash": "800ee66a886077c75fd364ed51019bda43a8f1e6b44c2be97b3b32ba9ca4c0e0" + }, + "2955f1f9-17f8-406d-9cfe-4eac441b3162": { + "doc_hash": "e663a00f63afe7a8d262701403f0d47f7d7daee380984173d006acab702b2132" + }, + "c4a5fc4c-515a-4d04-913d-fc1585cf035e": { + "doc_hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb" + }, + "4ec99f77-fecf-482d-8345-9b715b893357": { + "doc_hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60" + }, + "675410b2-596e-493b-8b0a-0c3990436dd3": { + "doc_hash": "810347984ca6c94a4d4aed50aec8cadbe8a2247661320519f953e0e5c570cc61" + }, + "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996": { + "doc_hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1" + }, + "4da6c89a-702b-40e4-a46f-cc30b9d24a40": { + "doc_hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f" + }, + "ca6eb3b7-7d86-4cd1-858f-5d13ead632da": { + "doc_hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8" + }, + "7738952f-db3f-4ad9-83b3-e8fb3bef48b5": { + "doc_hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5" + }, + "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9": { + "doc_hash": "199de0b6d97559b07be9696cc029f6f47edeab9dc3d3af69cbf56a3e0dd090af", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219": { + "doc_hash": "751564ff3c102751ad766a38b569165858c8ff88c6f2dd11b7bb5c5732b3ed20", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "f62a56d7-421c-448d-8040-45eec0049950": { + "doc_hash": "e0953676d0bda7d1e15f6c4aa4314cfec90246fb33e1bea4065f33606dbd123d", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "3a432b4f-1d15-4fdb-b22a-60260e79a243": { + "doc_hash": "0bb78363dac03889463efd30de464f698496f05e87856e7d2a224612c1625dca", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "2497c312-b311-4e27-9852-4dfef272acbc": { + "doc_hash": "f366fb67cc98670bd7ddba365103fa6b9004e18295afb9095fae7a6c16ca6148", + "ref_doc_id": "b809786f-0419-4709-9145-e8157d52ba26" + }, + "d6aaa9bd-e5dc-4388-a265-0eec11f922d7": { + "doc_hash": "a83a5928424032a8e8e0e512f3dcbb0d2a66b79ae37e3d5f53c9ff312942e29e", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "7462b66d-9ad6-410f-9ceb-ccc834c899a7": { + "doc_hash": "9f86deee0760d2cc84356810842735aabd70815a4e0fa6d9b55a4858de1464a5", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "75157767-dded-4c39-b43e-88cc72a9bea2": { + "doc_hash": "08182657193bd4212dbdebb8524c994372202893bd63eb0b4ba0f6548aff72fb", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "4bc9adf8-6c71-466c-a373-cba39f77d046": { + "doc_hash": "4192ab5f9796bfd844b134b8672372e1a85900707f4d6ec6e34b988c67dc5f6d", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "4d392551-daf1-4443-abe8-7dac3a5956ef": { + "doc_hash": "d416dd1d7827a0a40a38cbe14c99fef33f443e8c4697750ac5c3e7aa21ac8ff3", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "39a71b21-283f-4275-86b2-ff692afcbea9": { + "doc_hash": "9315165af06c753f10bf9eb6b6edb2b7cf2e790c2cd863134561e452ebc084b3", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "a41d9aca-7986-4114-8fd6-07a67f82d394": { + "doc_hash": "de49957df93f6f1e8ba391a1b4e744ed2e3bbdaaafaa880f556bc7cf8bbd6015", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9": { + "doc_hash": "3fa608968e8648f513fe50625d0c635a57d41a42f6e9359ea86654798145bec4", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff": { + "doc_hash": "82aa4c80d12dcf23b1746de9f014629f9112c7b1fc1fb93b46cc33f020b70a60", + "ref_doc_id": "c4ba4595-9ca7-484e-935b-a055614bda66" + }, + "d825183c-f2ad-4af6-bd58-5972857c4e21": { + "doc_hash": "47c4f149305ed523a46dc10c3b0e3e3a4da2389e25dadeb032c700c42fc20a3f", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "0a79d729-0631-4479-a8e9-a660ab1445b3": { + "doc_hash": "c64fe720e9748a40901f35cfeabc045b5226631fbd0126d5eab61ac2bb963128", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "43b96eaa-5ec1-44d6-94c9-52e885e3cea1": { + "doc_hash": "7d1c4781ddb1eb956330f216c81b42aa09ddcba66468411f4d7814a3301a6577", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "3436c4b5-7ac3-408f-8bca-c14986fead25": { + "doc_hash": "2ae2b8a0654464114ab883090ec14e256683cd1345c60cf732a13a02a98dab6a", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "ed810bc0-eb72-45d8-90b2-999a60068a2b": { + "doc_hash": "6b18248e20e860cef1b45ca0baa652ac249cc6178d78e5816f1ed3bc7e02cd82", + "ref_doc_id": "cd34e14d-a65f-4e21-93f8-c306de702613" + }, + "d5868ba2-8879-435c-841a-fe4ecf9e677b": { + "doc_hash": "caa531074c0e55ca19df3a7e9b332a7de386b524f8c0cec944a390023c215371", + "ref_doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91" + }, + "8fcb6784-76ee-4e3d-a540-7140fc8e156f": { + "doc_hash": "9b68ad146aa482c3c094bb18747fe98e8edf604b819d0fc35d02b2f22818e1d2", + "ref_doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91" + }, + "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572": { + "doc_hash": "f89d345c702de832660a64863fbc51d4ab3e4d7eff9470628e25ca4e40195958", + "ref_doc_id": "fe616abb-7210-4467-8a8e-869cbc31cb91" + }, + "d79773d0-4aed-4f57-b8d7-c055a16f53e0": { + "doc_hash": "c7f140d56569c6025e40c63a74a9ba97c223aa49c3465f59c4e598130acb87db", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "1eba341e-d6ca-44a3-928d-d5bfab234753": { + "doc_hash": "a4ce68afdd8d45beaaf902a97833913b3f286fa486e80eed8ae6342933a3b8c8", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "fe100cbc-74d2-41bf-a40b-70d8170d7b31": { + "doc_hash": "e4c42f3409e1483aa58fec22e02b76f7a363420d947df05fcfb147cd56bb5dfd", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "3e189d7a-020e-46d1-9904-2e908115d370": { + "doc_hash": "5e9857d757742afe506b3336bf7ab25007cf091afae3da575e1c7bccfd87fe97", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "0e75adab-8998-455f-b73c-4e13bcb189ab": { + "doc_hash": "0c9d29232fef8438013a77fce320abbce59127515445b067e701e4c50b2a7408", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "1e92140d-6f5e-46bb-9a95-f0f06f5746db": { + "doc_hash": "d15326e1b3c1cbb6b748cf72bbc7a6befd82ed62d77c31be5b46610b067f8b16", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "43773776-973f-420d-ad88-aef356e711c9": { + "doc_hash": "63a8b1b9f7e48d310533234af4e6eba8cde9eda7290c5fdb3cf67448b1a92e9d", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "2117b6f5-f483-45bf-ab97-a8379528a517": { + "doc_hash": "2a06ffdc25a46346641c4050bc0cde0f600ebb4a57d3296ef5c2e91c6736f9c1", + "ref_doc_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1" + }, + "58074a32-3c79-41fd-b1f4-33e803d124af": { + "doc_hash": "7af536eaa76018a94ba7e6cd8c5ae2fa05b88e1a60fafce6e89fbebbc8216813", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "a33e930e-3141-491d-bb88-4cc2fde13111": { + "doc_hash": "3c414c14d00ecd2d628017e9176e55ff74a3d8149cdd4125f0edb5788855fcd9", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "5e5d5c28-e238-485a-88b0-46cea135634e": { + "doc_hash": "9ee0e4f682a133060b7a617bb6e4b04ad68cebca3503b2b0933d0ec16c527395", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "845f2b9d-770b-4274-9e68-8c56039832e4": { + "doc_hash": "1458e19204558e87ceea1189d7ff5deace89836e010a500f86401cca55355841", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "cb58775b-b524-407b-b9fc-2ab8eeb52c4c": { + "doc_hash": "039e7efcd3d0601d494c5b33aaf4d7a9d33d47922436228c38b5cd2591b4838e", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "d6693392-0548-4317-8f58-471434dd9e7c": { + "doc_hash": "86a6a91a8dc1e87d9aff6d791469164c09165146c264becad4d87cd4034792c9", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "18dcc255-3559-4715-b452-baedecc77545": { + "doc_hash": "7a0457362cd9761745ef3eab738eb41b3337dd2401f8284712e3695df665e485", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "bce02060-3326-43af-870e-a03cad701b05": { + "doc_hash": "828f3cf7def5356914caa032b593a698c9750841fd8e0f1e467071e076bfc4a4", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "e3dd77e5-4225-4b6f-921e-9db7edc76117": { + "doc_hash": "c7adf01c1ff7c0e9f8f1fdba90da89319fb03472e7e544ba8649f1e647e8d81f", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e": { + "doc_hash": "ca7b7f805dae4b13c017c0a818225cb7c4aafa230eb087fb6b919046917a1c54", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "d195d40c-58be-4647-a367-c03fec0b3b70": { + "doc_hash": "896c1ccfc4f8c66904c39e588b3b7a727b30780de6baea4748cab8fb3a67e49a", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "85311773-cc40-40c8-9184-15ff45fba6dd": { + "doc_hash": "76da647c262f1cb9b2c6cf043b0841009a27f87b853ae948827e9d6056bde4fd", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995": { + "doc_hash": "bfec6248b612d99f4cdbbc63d38d8d4bd1d73892e1dd22afddae0b15d7df3faf", + "ref_doc_id": "63e31b90-e708-4b24-89cc-1e383bb9f237" + }, + "48346ec0-5a70-4849-95c6-46a53791dbda": { + "doc_hash": "410634def26ee2b6b33e31952fb1b8b8b21e7de75f0e4e595c9441657f5ff15e", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7": { + "doc_hash": "d8e72d3131f8740f2ae22e27fb78b9da8390cd46e26d546f1cd31c470f382471", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "0655b0e4-6783-4fd6-a9a8-d6eee5b45921": { + "doc_hash": "012b8d99f5aa6d10810819f3c43359c4bab33a74c500085a294d23b5f5dfee43", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef": { + "doc_hash": "d038f59150a56ad2b931cc76bd236bf7b1bc7c658baccdf64708220205520fcb", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180": { + "doc_hash": "f6a1849581565aeb966b3f3f76eaffcde00a0122a9b70158fddce03b2401448d", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "db03df28-87cf-49a7-8db2-91abd8f871eb": { + "doc_hash": "7cf5618ebe26201238390680fc610be62cc062f3c255f38cd5d8a45b84e269b2", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a": { + "doc_hash": "9ebfe518702be9744d609642a60f350c0225b404d36eff4507fa4d07e10948be", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "e3dc24c2-7188-4e06-8c16-95b620d60c9c": { + "doc_hash": "140c9542600307e8cc157f3e4c0a34252e78db97ebc257af45ae5ad7945dfe39", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1": { + "doc_hash": "3d8b6bd2d0dd629f5358661eafb5e764b657685209a0a6d562b900e20f20aa97", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "c7cc85c8-d045-4646-a3cf-ecb33f0e261b": { + "doc_hash": "90fdc75c5c53b58f355dc170e9a416605ecd3bed313ee178b05a145e20d08ad8", + "ref_doc_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee" + }, + "31bffcaa-ca8d-4ffe-890b-a31409513851": { + "doc_hash": "e3303ef960deb79a60df0969f4389d0fbdffb1b1542fde34b11e87716e663c56", + "ref_doc_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe" + }, + "08459d71-4c98-469d-a923-2c7913612f4a": { + "doc_hash": "dcd7af26a7cc68cd4de1418f5d1bca293e81751fd81fa12fe345d32b675ef60f", + "ref_doc_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe" + }, + "2260fb63-9f1d-43ec-b992-7857a3a39610": { + "doc_hash": "4931cd11eb4be60478c7c0db9fa372c2907c0085d52736e960824da98f3de2a6", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "2537259a-f63b-444c-82c0-039bc9586ed9": { + "doc_hash": "348e6ca74a7eacdf6ccdf301e0c0e119c36508e4dba04139e75ed9fa3b12cea3", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "8fa8b23f-b3fe-4699-bf32-79fa856199af": { + "doc_hash": "5ca27499b181533a821c31f11379c2d06678266b177a5bc7db3a9804f53e6dfd", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "ddf7e5b0-98af-4830-9f58-1e4dbc326df8": { + "doc_hash": "35f61ff214ff2991ae5cd2af42a45222cc412c522adf58f8ce8db99222d7bed5", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "6672c195-0f1d-407e-9fea-615b357ef033": { + "doc_hash": "083f85388d21f1b43f69ecfcb48e88cd9dc8af1780c7028139f9641e9e1adfc0", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "c7bf92fe-774f-43ce-a757-092e1c88e11d": { + "doc_hash": "94c7f2216843f59261b6e5ae7c60a69aceaa389cc3763f63b9af349cce0861ce", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "39e9e7d7-6ecc-4065-a99d-b93be3d88231": { + "doc_hash": "f0a332fdb2e97bda718908d27859eceffaa142b408edd73b72b7c5944313a561", + "ref_doc_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6" + }, + "9da0aea8-af9c-49a1-97e3-517097b0d6c1": { + "doc_hash": "ea5a91d8c5fcf9f00e2770a9a0d6d133a80aeb275493b96e866ce8fb11f48cf3", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "b81ce6cf-58a1-46bd-95ef-7de922157172": { + "doc_hash": "534e10e5747a916d7db41a8728ffc577aabccf4325846c6457e7c028284d05b2", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "739e7a32-21db-4a05-9e76-acd0271cc3d4": { + "doc_hash": "c33e0fd2f47b13d21895d62a24f5fe6d25711a25c03f8e484da3446f806e71e6", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "b35d6054-3c4a-4bc5-acad-48d3e2306141": { + "doc_hash": "b8f1803d136a5c6488b1221af68aaac4950db8f0f947ea648175e1d3eea14607", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "09153e46-075d-438f-91f2-2e7537d2f550": { + "doc_hash": "a9285c5472399cd120e6fdab023aa9dded6f31be7c04d6c9b462f2891f50338d", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "f9ca7807-3a62-4021-8141-7967ea91bd1c": { + "doc_hash": "2b9341ed9a83bab3d47a40af089a8b391126cddec68497740f134583b8504b1b", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1": { + "doc_hash": "a7c4d3c2fb1a3773c7aebebddbf6dfb6dc504879519a42d4035f09c1f71e6181", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "0843f367-b0f1-49e1-a25e-38e3df5f4da9": { + "doc_hash": "37929136a75f6c4db5f7ab3870bd6320f6b5bfeece5499c2cbde8f6eabc9cd22", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "45b5b822-819a-4a0b-a28a-fa937e4aba70": { + "doc_hash": "9f77332b02a5ffad288fa35b2637209096db370d49c7e465d84b0c9cb4f6fa06", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "c9440268-ea98-463c-80ca-52fbb14b37a3": { + "doc_hash": "7b9df3789117e8c41ee1f259338f64416ad65e31c31eef27e535c50edca40f5b", + "ref_doc_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c" + }, + "b1dfac79-06c5-401c-ac7f-81564dc6e7df": { + "doc_hash": "56fa961f0301ee9ad435ec3c0c88d6a4ab9b564cb16027567b900a93293afdee", + "ref_doc_id": "3e618721-6933-4289-8f44-2c3a522560f2" + }, + "58503ed9-8447-469f-9d86-49495fbb0874": { + "doc_hash": "d88358f75a9ab0e113bdfef4334cb6c6ae9b2d2c25c3c96873d9cad47d8b44f5", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "4e45d12d-0e82-4d54-a423-82057b75c96c": { + "doc_hash": "0e1a13de613e3ace0b3db6789e2e9261e47abdaac15e0d8987159d17d06424d6", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "55101789-8dc2-429d-9a8b-d5623c1ba66d": { + "doc_hash": "22760ae4295c2a4c002523bbfeee378f323875e705fd8100fc6988554dff33e8", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "c3a44332-4b51-4967-81e8-369507b503c8": { + "doc_hash": "3de742b6c4696581f39a29628104e58b4fe4139196cae6f4ca6b23b88a32a0fc", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "b5e6b215-0d07-4033-8507-9df9bdbf1159": { + "doc_hash": "4f87040dde2e9c81bf801c3a576adf4c18b4af2f93435f8910dc007a4018cabb", + "ref_doc_id": "070060f9-be83-493c-bbfd-5213611eb59e" + }, + "8785c7d6-0d25-45a2-81af-e74acec0b17d": { + "doc_hash": "8041e726cf467ad05d577bfce9edb8beb0975231a6c70e3a2e4e59d794f6bdec", + "ref_doc_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f" + }, + "d9344f98-b8dc-44e4-ab86-8c23b7d646cc": { + "doc_hash": "a40e1b5eb9c534edacace6560dbf28964927e43cb97fb472502bc9656a96a7ae", + "ref_doc_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f" + }, + "2bc15fee-b800-42db-8473-d85696cfe92d": { + "doc_hash": "7788c55374bea969349f6818472b72015f29efe4528413a8aaf93dedad1fc3ea", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "cb40370d-5c8f-45ec-8093-73c8448a02fc": { + "doc_hash": "4b58ae107e37950baa79a7f21931bec04904ae65420c1fbd179457a8111bad79", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "807c6ec8-5a3b-4098-82ed-1d4270438790": { + "doc_hash": "b8fd0f1dc233717012a46073357d24f1b4d02b7c0dad600a4e4951c1ccdde92d", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "016d159f-293f-45d9-af26-9be407742d5e": { + "doc_hash": "43a54e3f22163ecac1cf6b016128c3cc90e3f93b3a93a5e42792f2eb7f3d7995", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "2414e950-98b7-436d-ba18-de3485c35513": { + "doc_hash": "14307561160f77d71ce963610b86ab4cc2105e0295cdc310e99bd1177db7ca01", + "ref_doc_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356" + }, + "d545e65f-9b87-41d1-b840-12f95d36c6eb": { + "doc_hash": "92c7ccd18c77c497ed1bcaf4c77c098588311a857433a153dd58fbe262598b9a", + "ref_doc_id": "12e8891c-1c03-4329-81e7-fe1963b9703e" + }, + "5491c5ab-7e6e-43e3-821a-8441a9ef7519": { + "doc_hash": "be41d46d6e41a23a6b0a0b26a093400f90d8e78500874029be065aa94f137c5e", + "ref_doc_id": "12e8891c-1c03-4329-81e7-fe1963b9703e" + }, + "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4": { + "doc_hash": "759af1e722f449063922ab0ff690f01087cf30d21cf5128fbc482fda6a72fc26", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "97dc403d-dd4a-4474-9732-5961f25413b0": { + "doc_hash": "2915747ff73ea5f7061091ef4c69f7d718f6951b85eb6ef6385c85fb0fec3700", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "eb3977da-715c-4778-8726-b82dc5678d6f": { + "doc_hash": "ac46ec18443588d989073fef0c5734bee8c6cab91b107dca3e7472d13b41053d", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "5c5e1212-45fe-4164-94d0-7dc6da6510cc": { + "doc_hash": "82e4dec3f1be2b978ff66efc1d8cc9f562668f2383f54cf12cb695f02dc26d9f", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8": { + "doc_hash": "ae5610bfdb93981077182e2551a167cf092c83df3f312960e88a5e47c1c367b0", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "30bea738-adb3-49ce-b4c5-2cb02c62296d": { + "doc_hash": "15560ffa086703a06a0c2c2da99772950a4f7a4a240499ffc6f099277785be67", + "ref_doc_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce" + }, + "6266fa60-fb2c-435a-8b42-9a0728ec7f67": { + "doc_hash": "cb39610ee50c7f95203187247b609397798b5198e9cf915c712d1da78fed29bf", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "0ca14135-c1e7-48ce-8afe-b260ac093908": { + "doc_hash": "7de644d56d3685ddeed9c3f5261cd1528a1eb4e61faa04068460ca5a142159db", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "e7bbf55c-0555-43f3-ab52-3fc85bba8e54": { + "doc_hash": "60b5bb31c9129e36b8bf7e88878b7c4e1fbbd66fc6579f6617c6987ef3f4085f", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "f1384e4c-89a6-4248-86ec-5530dc41bedc": { + "doc_hash": "8475d369bb85626983532ef51543a71e486805d760ae62fed77bab76d89de73d", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8": { + "doc_hash": "5c18c4f20f7297325881116f630a1577447f53d53f8ebc2b3fd9ffb840806e50", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "b3717357-f19c-4530-bfdd-45b407eecb47": { + "doc_hash": "e676dbae5fa6e7bb2246c6c89c7a3d253d9b3a2d8070a4e543d3770ceca9e206", + "ref_doc_id": "5fb5561a-5539-44f8-bb69-6f1462e84132" + }, + "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2": { + "doc_hash": "4559eb282071ecc91b5224aba5658bb6fffbe3c54e5ef1c20d367a30bd67b3a9", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83": { + "doc_hash": "f8f9054d6cb0a65339b77e0d2c9c2a6e93fdf8b31b6fc55f9fc017ba229ea2ce", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "f930b218-26ac-4a55-913f-ebb285f24de0": { + "doc_hash": "372927431b828abf824133edbadf0be12967cd29a79dc9dbff467598a27e7b8e", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6": { + "doc_hash": "a2ababf8fb85e894da4ed9f730320ddee908cf1c4f42ee14343a29330eba7569", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "640c98cf-9553-49d8-97f4-ad858fb8ed42": { + "doc_hash": "b77cb7227e9d40489706e2e0dd50092b6ac1723dcaadba357102adf80b870a21", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "956e03d7-630b-4cdf-a595-7396eb2435ab": { + "doc_hash": "8acf2cb4476f3479f5db6746a454070a519bcb796fd979bed0b0729ff1873145", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "b2f9388b-55eb-4863-9400-016539f4ecea": { + "doc_hash": "c4f79df12661f6a686a4bdfd9455a00491e6945f667103167270b27e7fd2039e", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "63dc5976-0aed-4779-9bd4-11eab2368fd8": { + "doc_hash": "5b5bf1a340eaabf50300bb3b64e3eb8b45069430dc103ab8fbc11f98b4f2c043", + "ref_doc_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f" + }, + "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2": { + "doc_hash": "aa2fc8bf072f656140e13bfb2696b48e29093f5f4b55b0767f31076cc38a559d", + "ref_doc_id": "4eee9a38-808d-4205-bfd6-6f102b06fe96" + }, + "038d0cad-dcfd-42eb-842d-10ceebf9d1c8": { + "doc_hash": "73393e89720214477942e4f191ae9e56bf6d31e07b0f2ec149b0d16b3ea4e711", + "ref_doc_id": "2955f1f9-17f8-406d-9cfe-4eac441b3162" + }, + "001911ad-fe0d-41d8-8799-743f347e274d": { + "doc_hash": "ff03525271d26d9494fc255e8c6ab481c668c005611e308ff2ed622cf6260ef9", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "49ca0de0-7091-405d-b0d4-82aaf63f96fb": { + "doc_hash": "4cfd482b2ea83f8da6c62ae77dfa22ec599ac7fa3508c5c93ae9288f528bdd2f", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "a571e22f-f6b7-4f59-b77a-75ff196f623f": { + "doc_hash": "72f0f870fd29e986879ed9ea7feedb48f43b9b1bd34eeb71fdf5f251d3136376", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "3679d4e1-6415-4993-80a2-9bb483920080": { + "doc_hash": "0e8b5dc4936325ccf92a829345153f1af472e7122e7a983d4f6a04f83d2e7c31", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "bf1b101e-c592-487a-a555-ab3968da1332": { + "doc_hash": "3fd1c3539665c0539209188efcbcb67036c5502ad8b2be2d9158e1ec2ce46902", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903": { + "doc_hash": "727f6fe68c05c3cef80b9fbc9c1d6fd6091b6c83eeefb375ddc3d69664b948be", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "1f4bfba2-3e5e-4925-89a8-73161cbc762b": { + "doc_hash": "b0fc079d7f8a46f3579d8cc4afd8b198d30ca2dd676ed5c15d5762ff2c34555b", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "ebd8a76d-2377-4ab3-8353-68199c4f82cc": { + "doc_hash": "f1d7a0266cb346ffed6714e14a91189689837013e7448542a93b1544ee799f01", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "ea58997e-836d-45c6-a5c5-9aea900c68d1": { + "doc_hash": "26eab53fc5cd546e6f3ad13dadab614bf52786ddb0899c55729cf53081132a80", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "e89492ef-ec34-4846-bccb-77d98bebdea6": { + "doc_hash": "dd8adcd568c866f437cff124e72ab120e98d25b17c17a205f571627f064871ad", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "a1d75aef-b074-4f53-83f9-9b37bb7cebe0": { + "doc_hash": "3fe524d9e71ca84b5ec64ea6994782fc1cdba3ed2da4e86b6126fec46ce447c7", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "3eee5d97-4fcf-4f68-b8ae-4a361882f81d": { + "doc_hash": "e03cf334e1fde26d159a31fbf8b2440573090abed4e7d616c5690f6a5e7b86d4", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "01d0cf15-5368-4755-adef-b598719b3d15": { + "doc_hash": "c4cef535d15d9d55e933d26c6f079b3fbd58f714ef8de00b553b29d7b697ef61", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "f64f3cfd-812d-4232-9d9b-a3fad6f17d19": { + "doc_hash": "f641395428abe5ddc2ede6c0451e04a06d02e464054cde7f9a6e50ef7bd2f20b", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "0d294764-3db7-4738-8456-a70e444b0210": { + "doc_hash": "94f415838f12d7bbf24a07b6d71af60f02dff6bd0254fab55d52a87dea42185d", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "5a2f200d-58d4-46f9-8e02-ab06be757e72": { + "doc_hash": "211c6a4f99f6c22ba661634af60a2b1c8b54433814817dd1e46ea70f4b81d7a0", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27": { + "doc_hash": "e149aaea1fb448127d53d76772cfd254092813970e1be8a6b38531f5fd3e4970", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "6811ba89-1843-4937-94f8-6dcfb72d2d0e": { + "doc_hash": "575543550c4357e352bdc607a1fcca4fe050f3a3c9d9d418ef60a9daee20e9a7", + "ref_doc_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e" + }, + "f96265c5-d43a-4e42-9bd9-350aafc277ab": { + "doc_hash": "c5a0fa16dc8ac07f7b400985a946f226df1874c51fa1be9dd0bd7d8f7f48c8ad", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "a1677329-df20-406a-a4a6-05c587756fcf": { + "doc_hash": "04d841f7b73b722fff9d87b1252a46b022f94a78921f7d7cd67e726a7b90928a", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "32ec23f8-e456-4acc-9c38-fa5019e6ec28": { + "doc_hash": "0e03fdd77324ea921af4eb2119f8d43f631db3a01998fffc48d5becf01a65a6c", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "ee6324cb-cfa3-4721-974a-db01834600a4": { + "doc_hash": "9ece4a2993be7c361a41783f02f4dcfb8aec007914bdcc203f054ac247692db3", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "5c74fb88-e897-420e-882b-3945dea9c505": { + "doc_hash": "e00764a6f37e887b3158e3db952b7522d17e3c2819595876fb83f603b5310cd9", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "85a82ba3-b051-4df7-ba6e-7a0bcbc27353": { + "doc_hash": "d3efa2b8b9b7cce90286b2e5d170ce26ddae377f497d75e7833feb948eb34455", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "d8dd091c-aa13-44d1-938f-a12292d48d95": { + "doc_hash": "19cd63ffbebf9d15f6f7bd89e81f500722a5be10f7fb80557d66c8ef6f202d87", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "98320e0a-868d-4352-a07e-071e5897432d": { + "doc_hash": "89905406af15eaf8bc4dd48c8c826a1758a00d927a9db493d4ed7638609ba888", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "46c5a59c-4489-44df-a1fd-dc958dd937c9": { + "doc_hash": "cff3c55cfd32d55c8c39505f2fc9c69484f729dc87e7edbc3f86cc17dc3c4b95", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "8c101002-338f-44e2-aa49-eea62c29b026": { + "doc_hash": "38b98774bb03e2095eeb667d4061aada95c6b7c44a2c4232a735a768c02837e0", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "20952efe-090a-45aa-b177-e53ec486e3f1": { + "doc_hash": "f3d3caa3c3fc79ec09ffa9e3be6208f5c722dfe6cb139858a63488f94a79fb80", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "f7adff25-5877-4d67-a53a-1a54527b2cc6": { + "doc_hash": "00ea49654d78689de6510f212c1de757a5de6a18b1b82fd1d5a7d05258c5a2fe", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "55164bf4-f736-40f9-9876-a5f6c32c463a": { + "doc_hash": "b82d21cd37cde05129223768d4f37685a2bd6d9f6690cd62c029c722cf69ec5c", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "59d8dd96-da6f-49c9-8c16-c219c359561d": { + "doc_hash": "b1d165fc35295c3de2e08c4bcb3b397087fda4dbd0b06a0a66b77dce2a9dcd6f", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "eec8cb18-5fef-47f2-8774-3e3d70b92ec5": { + "doc_hash": "aba1c0eaec3a91f258d77c41339f726c1cbc1b35f1bc4a9a55a86e9098935d8f", + "ref_doc_id": "4ec99f77-fecf-482d-8345-9b715b893357" + }, + "12269a25-c023-442d-bd65-064bfae06e67": { + "doc_hash": "3ccbab2557ec321e1c33d53eb33a3a60dea6f08f945f0a660ce9177f43f47ef7", + "ref_doc_id": "675410b2-596e-493b-8b0a-0c3990436dd3" + }, + "476220ea-1795-47f7-997b-8eb19792ef78": { + "doc_hash": "fda36aef4355e8f84096bf3d030d78bcc9fc2b383aba7de7e16ddea3eedf74ba", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "bbe211a7-04dd-4fea-a58d-54870d8ff0c6": { + "doc_hash": "a688d6bd7b198f446ff7e534235b9f4d541429180b2cee1322c9f0672be42980", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "21b34534-9d4e-4e1e-9763-792a8f50b398": { + "doc_hash": "f2ddae1c75a41a972f3e4d05e720c163f11bcb51d5485a7daeb1bf88dbee5c7a", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd": { + "doc_hash": "48e8e0fa4614a64a156e8c60d4bf1e6a94eee94c106dd653ef5c7a157ee923d0", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac": { + "doc_hash": "68f2b747ec4d8ffbaf228f2da9416b3cb4b47dce7871a7365718fa92ce179610", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "f0bf7748-c987-4c01-9cd8-09a87939938b": { + "doc_hash": "16ac868ed623f9c9da3f7cc6d229b039d93a7de3ae36f706ea0acaef3345431b", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "3295a522-57b4-4146-a414-09bc00dbc9e7": { + "doc_hash": "ba60b96a03058a24245132d1a2b7f31413a575c9972648b3774cb4e676003b7d", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2": { + "doc_hash": "e5ff1f152de9a258311990d1053567f897f426f391c91a136e22a73e4ceb0d75", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "13afaf92-1e65-43e2-831c-2ecd72c108a2": { + "doc_hash": "332f0b6eecb01fff9606f112dc102b60263da76397b1290dff4193422af8356e", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "d7a173a7-0882-41b9-b755-1972cdcf4e78": { + "doc_hash": "7143e3c7521de3d3893bd5224414684488647d1cbe5033f668ef8882cdfab5be", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "7477f664-2d4d-4946-93fb-10f0f7c7fe2f": { + "doc_hash": "2f4f87ef38ed219d25f246a5e6a0dc24eb9a7bcaa2e56612ff1c76d24061f8a1", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "75be21ee-7046-4af4-b9a7-834821f39c3a": { + "doc_hash": "2b1c045be85ea61118b234f5fe1b1bbcba0da6776dd6d4bf0a52d97697a69944", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158": { + "doc_hash": "9221b08f8b03c3e02a8f8f14db3a063266fe86007df3002c074e28258316bb2f", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "d2d18186-43b6-41c4-9c61-81bb3209005c": { + "doc_hash": "fe2ff7405095b87e5a9b30525489e3745e90bc41b981cf2d0a53f032c2ffe9ab", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "05d59f98-d186-466e-9a1a-9f5b18b56bce": { + "doc_hash": "326ed0a93eefaa062389463dfb93782523bbfafb95745409273c9c7b1a0655b9", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "06557d00-501d-4f76-9ab2-2ce90e7751c3": { + "doc_hash": "1a2cee1a38fa8ec9bd58a67b8926e19fe6b07a42d9aeb4409a8bf6811a2d5a58", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "2776c4fe-b24c-493f-bd44-2c252984cc06": { + "doc_hash": "75c45d5bf5617fe741b449235994a095195140c81e4d4747e9247eda317a0f94", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "8d4cc9d1-fafb-459a-b65f-7748250ff308": { + "doc_hash": "b7a2ebe86afac9d57ead272e020ce8295a91f3ba3d4c44e2143472449a6d98b9", + "ref_doc_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996" + }, + "c695a9b6-67a3-406b-af48-f2d132267861": { + "doc_hash": "7fd7d218d563ea98e0be6fcbd814092adbb5d6fce2b995132db09194c00bf3e9", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "02af39be-8f80-4e64-8db1-726897aaa0fe": { + "doc_hash": "553c8532c9f1392b319e530d0c1198583db5a85e16c33c9f15c53c66b56fd3d3", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "4f5b559d-e60a-4a57-9b99-6c0427112512": { + "doc_hash": "1255b7745fa17f15e7b4e72d8dfff8decff05365f0c784abaa40b165a739d137", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "dbfad54b-ca37-4852-9162-92cef747df8d": { + "doc_hash": "d1dd8c536be8da2f775539387e338f3827c0e2a45a507fc7eb5e9c9e11c8b39a", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "6be5647b-832e-48ae-aa43-e107420df194": { + "doc_hash": "bbb6329ba1815fd9f0805ac255498750d5927ab9de383f02003a39e141df4efd", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "16bbd799-fd2f-4b40-b959-54097655bd69": { + "doc_hash": "415a5de2a3b4ee94b5ce0140104f2517b5c7e88e898fe3df6bd1dfc8497ccff1", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "a39df619-be28-4174-bb5b-e63c1079ce09": { + "doc_hash": "ff794dc1f171c6dfd9106736287b8b2f86c89c62039e68ac53e68ed038668873", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "de5af6d9-781e-4f03-af68-540d4ca5f861": { + "doc_hash": "05195c5415e2634a03cf7f03e8f6544a9893ade80e2a4056c3f5eba677188013", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "7b56e245-174f-4279-90aa-bed3d7a5bcd1": { + "doc_hash": "1b62f080187f7b937ab0c95455c68b5c4bbcfa904e33aa4fdaf6858242e64d69", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "6c7e15c2-be7e-4a60-848f-becd4b110db7": { + "doc_hash": "2a7add3eccd5e47de5a354201ad32d544bbbcce7d16003a588f24229d7373894", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b": { + "doc_hash": "286a3357205723721fbc605969bbee0f725e69c88893cd8bb8a069b28735f8af", + "ref_doc_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40" + }, + "c2e151b8-3c71-441d-aa4a-6a7224e94fc8": { + "doc_hash": "bc5cd6f0a7262789d3208adbebc6d3cc5627fd02dfe32a057421c01e45c72acb", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "6aa17a74-053a-443e-b412-66412367f29f": { + "doc_hash": "ba0ec43f80637a8a09c476b07e693f8713e25299580acfcf513e50179f49364c", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc": { + "doc_hash": "bfe03879b01254339e0883b9f7e963bcf4b01e71986277792ce9f6843c1aab1a", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "2a902471-31a0-4af2-95fb-633cca7eb7ce": { + "doc_hash": "1f1e7cc63f9132ede843d991e53f474c752d10dae608ec3c5ad7af97d66cfef7", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "ecec68b7-4d23-4ef0-96cb-96a776280b07": { + "doc_hash": "5ab11bd197fc3bd330695f600ad9414eb566227d7a25731b2a3ce1c4861f559f", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "a5c24e0d-dc07-4713-8f8b-adf75906acc0": { + "doc_hash": "c6e4ff00243307b5d761a20f8f2ab2e41a4b06abfe4c9648541751e82b46754e", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "14706ad3-1f24-48d4-aa97-c543af753a5a": { + "doc_hash": "25221335e9a3804a4b1af32459640f86a43de6e3fb7db6ca327c940ae61941bb", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c": { + "doc_hash": "7af1e9cd8cace141a25680fd2f4a34be21f4d55f88fc8e3f816e165d514d92b9", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "b1879021-4816-447e-bcf2-31cae39f1dc7": { + "doc_hash": "b570c08c7101cadcc852c80d18df301a87363c5d131974155c6858b2a56e0b17", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "9fc6026e-f392-49cc-aea9-7315ef913cf4": { + "doc_hash": "6fedd8b67b47273a805212961849a7dca6013bfe1b3dc1658bc86ec5e5ecbc69", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "fe612ae6-4bae-487d-921f-811daa789dc2": { + "doc_hash": "c5a926cda9f4d9452af5815ede5b0ec9cd30e1f554b155cd40e71b1b51d22f98", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "f259fd6c-516e-47cd-8f1c-4d9b51642a5c": { + "doc_hash": "91efcfc712bcd3b0566aab3758a07d0d77a66721e6e85c82b64c636bd6f9f870", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "fe88bd89-3d04-441b-bcee-67db0c8e3da2": { + "doc_hash": "3e38e1f7c265cbc765278d65445d4cb0d76acb58eacb88adbc6a822945f67a6d", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "180aaef6-1850-4f67-b268-11396da976f4": { + "doc_hash": "ef87f7e36009e1fd2feb15771231b604db3b308d12bbb86b5ebb35453b128a46", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "f04b18f7-13be-4067-9ed6-b3324f5a06d0": { + "doc_hash": "e6dda4acd73c724bd0e4073f49e7441a954ff3e653550196dc3e2678889b54cf", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "12008c04-5842-43b0-a2eb-3d6fc544a1cf": { + "doc_hash": "ef9175f4f6917d243b2efb7a4c23c402a17dbea2c2acb0e9d0c59820bfc516c0", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "e8532359-9caa-4ec8-882e-9a1a355de9bc": { + "doc_hash": "19aa80dc5aff2f062a92fd5ce7d4756e1ff903281c9c30d61e66951fe46dd0eb", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "93cb7706-5e09-4305-8e63-64adc3f8c5ec": { + "doc_hash": "93379371b6deb387307110524dd6bf6f950242a41e0b01f86ea13b3328d53590", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "1dc50e96-2e03-4a1c-878a-2124b61040aa": { + "doc_hash": "1493b5f36a87d18171921658f493e7ee806558b8cf969c45e94ca67fbd648783", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "9cd00511-baec-412a-b5e7-cecc9b48ab69": { + "doc_hash": "1a552fae5d8d53e686d935cb9d03ac6eb6e5031c108b8470f2a6cba910418661", + "ref_doc_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da" + }, + "56d01d77-8e38-448c-b416-764d64927354": { + "doc_hash": "61d9d90c69f9fdbdd0a95171eec75f8f2b60e829c9bf764aee1736f9f95e498f", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "2caeef28-e32c-4545-b62e-d223747cd700": { + "doc_hash": "67ef9716b0f47ade824da0a4f9f0c4310bcf566a29aef890de4721f38641032b", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "94899737-e97e-4b3c-b374-4aae60f724be": { + "doc_hash": "6f8e4ca3d198fb6aa689300ef4a12b9e95f95e24bfc9759972442dc77344fb44", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2": { + "doc_hash": "89a3eb490289a0bab195b45006798e90bbfc2db14400c2e177cc799c837b31b5", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "c485d342-3f7f-42fc-acf5-2b16c6305c76": { + "doc_hash": "9a387cafa830686ea517034a3f118ffaeb6fcb993c168c12a77a80079ba87d4a", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "58d991d1-5ea2-42ee-83fb-faf19c4bae58": { + "doc_hash": "0c9f00efe77120d6a11733b4bab5a78d85d1ca80a271e3cd2849efe093e61325", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "16f4ca63-7781-4c83-9db4-ef0e8fd2a398": { + "doc_hash": "412a782370fafae5b9debad3b5b23aa01e986402d851033157983853833c2c4b", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "41f41352-1116-41d4-9b74-7543016929a3": { + "doc_hash": "61644df86d8c9703a6218d905ccef7f05bebf36564bb83a8ceb01eb2a229202e", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5": { + "doc_hash": "e88ac66fb2e65dc391917db2f7a5a14dc6037ba45f6314cad534f4786febef37", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "a56d8776-1ac1-4e38-b226-c3d520ba66be": { + "doc_hash": "cc8fa336a6a4734ec36e9e6f16073013919a9d9954fb8db6280b7603c5c4a567", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "e4ff673f-243b-42b3-b92d-995b4207cd38": { + "doc_hash": "bfec91224737e5971c70333e8b53eba50940408b2359b244bf0231f9a5c667ef", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "7855a776-75d8-443d-8d15-d4b46539e636": { + "doc_hash": "d731bd0bca624774d01e54e32484ee85a315e74b66f5ae70053b6ae7a72fbdf3", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "12a8dfa4-1b29-4fd9-bd6d-946676617fb1": { + "doc_hash": "61fde645837ff6e0526167ed6e9b65fa75fbf7051ea12245f7e3c61b889a8096", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "26310357-9e50-45a5-b84a-15dbc3fc6134": { + "doc_hash": "19f693bd87472d5ebe8e1d3a79201a33ead7c3de6552142f18a515b27180430b", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + }, + "6cdd0d74-92f8-4532-88ea-c99c48ee099f": { + "doc_hash": "30ad2fa982386cde31c1118989104dc265976d01405de038f8d150b8ba4e0b79", + "ref_doc_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5" + } + }, + "docstore/data": { + "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9": { + "__data__": { + "id_": "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "b809786f-0419-4709-9145-e8157d52ba26", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1bdb767d459103d11729b81f0788ad6b7b59be186a744cf297d57757462e5a3a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219", + "node_type": "1", + "metadata": {}, + "hash": "c00b0b6ba282a55ab09819e4b08bc0fefc6e3289de1abba8281ea3b79e7a5b61", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to adapt an OT-2 Python protocol to run on Opentrons Flex.\n\n.. _adapting-ot2-protocols:\n\n********************************\nAdapting OT-2 Protocols for Flex\n********************************\n\nPython protocols designed to run on the OT-2 can't 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.\n\nMetadata and Requirements\n=========================\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's best to move it to the ``requirements`` dictionary. You can't specify it in both places, or the API will raise an error.\n\n.. note::\n Consult the :ref:`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't 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.", + "start_char_idx": 0, + "end_char_idx": 1702, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219": { + "__data__": { + "id_": "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "b809786f-0419-4709-9145-e8157d52ba26", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1bdb767d459103d11729b81f0788ad6b7b59be186a744cf297d57757462e5a3a", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "199de0b6d97559b07be9696cc029f6f47edeab9dc3d3af69cbf56a3e0dd090af", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f62a56d7-421c-448d-8040-45eec0049950", + "node_type": "1", + "metadata": {}, + "hash": "89441ca029c444d4acdcfdb8afdfc07a20f2f681e9829d5f8b11d33b18d8d594", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Metadata and Requirements\n=========================\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's best to move it to the ``requirements`` dictionary. You can't specify it in both places, or the API will raise an error.\n\n.. note::\n Consult the :ref:`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't 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.\n\n.. tabs::\n \n .. tab:: Original OT-2 code\n \n .. code-block:: python\n :substitutions:\n \n from opentrons import protocol_api\n \n metadata = {\n \"protocolName\": \"My Protocol\",\n \"description\": \"This protocol uses the OT-2\",\n \"apiLevel\": \"2.14\" \n }\n\n .. tab:: Updated Flex code\n \n .. code-block:: python\n :substitutions:\n \n from opentrons import protocol_api\n \n metadata = {\n \"protocolName\": \"My Protocol\",\n \"description\": \"This protocol uses the Flex\",\n }\n\n requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"|apiLevel|\"}", + "start_char_idx": 842, + "end_char_idx": 2464, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f62a56d7-421c-448d-8040-45eec0049950": { + "__data__": { + "id_": "f62a56d7-421c-448d-8040-45eec0049950", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "b809786f-0419-4709-9145-e8157d52ba26", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1bdb767d459103d11729b81f0788ad6b7b59be186a744cf297d57757462e5a3a", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "751564ff3c102751ad766a38b569165858c8ff88c6f2dd11b7bb5c5732b3ed20", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3a432b4f-1d15-4fdb-b22a-60260e79a243", + "node_type": "1", + "metadata": {}, + "hash": "11cd0ec371550d21de80f76887faf1ba9445da0c882126a69cfa0e5a608473aa", + "class_name": "RelatedNodeInfo" + } + }, + "text": "You 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.\n\n.. tabs::\n \n .. tab:: Original OT-2 code\n \n .. code-block:: python\n :substitutions:\n \n from opentrons import protocol_api\n \n metadata = {\n \"protocolName\": \"My Protocol\",\n \"description\": \"This protocol uses the OT-2\",\n \"apiLevel\": \"2.14\" \n }\n\n .. tab:: Updated Flex code\n \n .. code-block:: python\n :substitutions:\n \n from opentrons import protocol_api\n \n metadata = {\n \"protocolName\": \"My Protocol\",\n \"description\": \"This protocol uses the Flex\",\n }\n\n requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"|apiLevel|\"}\n\n\nPipettes and Tip-rack Load Names\n================================\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 :ref:`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\n.. note::\n If 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 uL tips to Flex code that uses a Flex 1-Channel 1000 uL pipette and 1000 uL tips.\n\n.. tabs::\n \n .. tab:: Original OT-2 code\n \n .. code-block:: python\n\n def 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 .. tab:: Updated Flex code\n \n .. code-block:: python\n\n def 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\nDeck Slot Labels\n================\n\nIt's good practice to update numeric labels for :ref:`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\"``.", + "start_char_idx": 1532, + "end_char_idx": 4477, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3a432b4f-1d15-4fdb-b22a-60260e79a243": { + "__data__": { + "id_": "3a432b4f-1d15-4fdb-b22a-60260e79a243", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "b809786f-0419-4709-9145-e8157d52ba26", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1bdb767d459103d11729b81f0788ad6b7b59be186a744cf297d57757462e5a3a", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f62a56d7-421c-448d-8040-45eec0049950", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e0953676d0bda7d1e15f6c4aa4314cfec90246fb33e1bea4065f33606dbd123d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2497c312-b311-4e27-9852-4dfef272acbc", + "node_type": "1", + "metadata": {}, + "hash": "2cc0b6860ea25a2b97245d1a6ed985b45f2e67fc8f51a1461f51499674aaa0b9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Module Load Names\n=================\n\nIf your OT-2 protocol uses older generations of the Temperature Module or Thermocycler Module, update the load names you pass to :py:meth:`.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 :ref:`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's 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.", + "start_char_idx": 4480, + "end_char_idx": 5639, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2497c312-b311-4e27-9852-4dfef272acbc": { + "__data__": { + "id_": "2497c312-b311-4e27-9852-4dfef272acbc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "b809786f-0419-4709-9145-e8157d52ba26", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1bdb767d459103d11729b81f0788ad6b7b59be186a744cf297d57757462e5a3a", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3a432b4f-1d15-4fdb-b22a-60260e79a243", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "0bb78363dac03889463efd30de464f698496f05e87856e7d2a224612c1625dca", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d6aaa9bd-e5dc-4388-a265-0eec11f922d7", + "node_type": "1", + "metadata": {}, + "hash": "c3d7cd6e5660bd6e8177426139f44b06f17befe67b6042a3d62782a00929037e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The 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 :ref:`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's 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.\n\n.. tabs::\n \n .. tab:: Original OT-2 code\n \n .. code-block:: python\n\n hs_mod.set_and_wait_for_shake_speed(2000)\n protocol.delay(minutes=5)\n hs_mod.deactivate_shaker()\n \n for 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 \n mag_mod.engage()\n \n # perform elution steps\n\n .. tab:: Updated Flex code\n \n .. code-block:: python\n\n hs_mod.set_and_wait_for_shake_speed(2000)\n protocol.delay(minutes=5)\n hs_mod.deactivate_shaker()\n \n # move entire plate\n # no pipetting from Heater-Shaker needed\n hs_mod.open_labware_latch()\n protocol.move_labware(sample_plate, mag_block, use_gripper=True)\n \n # perform elution steps", + "start_char_idx": 4920, + "end_char_idx": 7047, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d6aaa9bd-e5dc-4388-a265-0eec11f922d7": { + "__data__": { + "id_": "d6aaa9bd-e5dc-4388-a265-0eec11f922d7", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2497c312-b311-4e27-9852-4dfef272acbc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f366fb67cc98670bd7ddba365103fa6b9004e18295afb9095fae7a6c16ca6148", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "7462b66d-9ad6-410f-9ceb-ccc834c899a7", + "node_type": "1", + "metadata": {}, + "hash": "8d6af61fa0e66a65fa743b562f1ddbbb39f5e095ae7b875fdece333ac1ddbf92", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: Basic commands for working with liquids.\n\n.. _liquid-control:\n\n**************\nLiquid Control\n**************\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've loaded the pipettes and labware from the basic :ref:`protocol template `. \n\n.. _new-aspirate:\n\nAspirate\n========\n\nTo draw liquid up into a pipette tip, call the :py:meth:`.InstrumentContext.aspirate` method. Using this method, you can specify the aspiration volume in uL, 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 uL from well location A1.\n\n.. code-block:: python\n\n pipette.pick_up_tip()\n pipette.aspirate(200, plate['A1'])\n\nIf the pipette doesn't 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.. code-block:: python\n\n pipette.pick_up_tip()\n pipette.aspirate(200, plate['A1'])\n protocol.delay(seconds=5) # pause for 5 seconds\n pipette.aspirate(100) # aspirate 100 uL at current position\n\nNow our pipette holds 300 uL.\n\nAspirate by Well or Location\n----------------------------\n\nThe :py:meth:`~.InstrumentContext.aspirate` method includes a ``location`` parameter that accepts either a :py:class:`.Well` or a :py:class:`~.types.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.", + "start_char_idx": 0, + "end_char_idx": 1793, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "7462b66d-9ad6-410f-9ceb-ccc834c899a7": { + "__data__": { + "id_": "7462b66d-9ad6-410f-9ceb-ccc834c899a7", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d6aaa9bd-e5dc-4388-a265-0eec11f922d7", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "a83a5928424032a8e8e0e512f3dcbb0d2a66b79ae37e3d5f53c9ff312942e29e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "75157767-dded-4c39-b43e-88cc72a9bea2", + "node_type": "1", + "metadata": {}, + "hash": "bcb51255b44a457bbbbb84e80fd1f97e594351289e64e347a0f6bd8b41455348", + "class_name": "RelatedNodeInfo" + } + }, + "text": "To demonstrate, this code snippet pauses the protocol, automatically resumes it, and aspirates a second time from ``plate['A1']``).\n\n.. code-block:: python\n\n pipette.pick_up_tip()\n pipette.aspirate(200, plate['A1'])\n protocol.delay(seconds=5) # pause for 5 seconds\n pipette.aspirate(100) # aspirate 100 uL at current position\n\nNow our pipette holds 300 uL.\n\nAspirate by Well or Location\n----------------------------\n\nThe :py:meth:`~.InstrumentContext.aspirate` method includes a ``location`` parameter that accepts either a :py:class:`.Well` or a :py:class:`~.types.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 :py:obj:`.well_bottom_clearance`:: \n\n pipette.pick_up_tip\n pipette.well_bottom_clearance.aspirate = 2 # tip is 2 mm above well bottom\n pipette.aspirate(200, plate['A1'])\n\nYou can also aspirate from a location along the center vertical axis within a well using the :py:meth:`.Well.top` and :py:meth:`.Well.bottom` methods. These methods move the pipette to a specified distance relative to the top or bottom center of a well::\n\n pipette.pick_up_tip()\n depth = plate['A1'].bottom(z=2) # tip is 2 mm above well bottom\n pipette.aspirate(200, depth)\n\nSee also:\n\n- :ref:`new-default-op-positions` for information about controlling pipette height for a particular pipette.\n- :ref:`position-relative-labware` for information about controlling pipette height from within a well.\n- :ref:`move-to` for information about moving a pipette to any reachable deck location.\n\nAspiration Flow Rates\n---------------------\n\nFlex and OT-2 pipettes aspirate at :ref:`default flow rates ` measured in uL/s.", + "start_char_idx": 1061, + "end_char_idx": 2893, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "75157767-dded-4c39-b43e-88cc72a9bea2": { + "__data__": { + "id_": "75157767-dded-4c39-b43e-88cc72a9bea2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "7462b66d-9ad6-410f-9ceb-ccc834c899a7", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9f86deee0760d2cc84356810842735aabd70815a4e0fa6d9b55a4858de1464a5", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "4bc9adf8-6c71-466c-a373-cba39f77d046", + "node_type": "1", + "metadata": {}, + "hash": "0016d262d8929334ba6fcc017a2721081922f1f12757ef98006d0ec83f280470", + "class_name": "RelatedNodeInfo" + } + }, + "text": "These methods move the pipette to a specified distance relative to the top or bottom center of a well::\n\n pipette.pick_up_tip()\n depth = plate['A1'].bottom(z=2) # tip is 2 mm above well bottom\n pipette.aspirate(200, depth)\n\nSee also:\n\n- :ref:`new-default-op-positions` for information about controlling pipette height for a particular pipette.\n- :ref:`position-relative-labware` for information about controlling pipette height from within a well.\n- :ref:`move-to` for information about moving a pipette to any reachable deck location.\n\nAspiration Flow Rates\n---------------------\n\nFlex and OT-2 pipettes aspirate at :ref:`default flow rates ` measured in uL/s. Specifying the ``rate`` parameter multiplies the flow rate by that value. As a best practice, don't 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\n pipette.aspirate(200, plate['A1'], rate=2.0)\n\n..\n\n.. _new-dispense:\n\nDispense\n========\n\nTo dispense liquid from a pipette tip, call the :py:meth:`.InstrumentContext.dispense` method. Using this method, you can specify the dispense volume in uL, 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 uL into well location B1.\n\n.. code-block:: python\n\n pipette.dispense(200, plate['B1'])\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.", + "start_char_idx": 2199, + "end_char_idx": 3854, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "4bc9adf8-6c71-466c-a373-cba39f77d046": { + "__data__": { + "id_": "4bc9adf8-6c71-466c-a373-cba39f77d046", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "75157767-dded-4c39-b43e-88cc72a9bea2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "08182657193bd4212dbdebb8524c994372202893bd63eb0b4ba0f6548aff72fb", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "4d392551-daf1-4443-abe8-7dac3a5956ef", + "node_type": "1", + "metadata": {}, + "hash": "583a65e40b8d26dc120bbd85cd2d6538f2da75dd93662fa9a7c9fdd07863b2ef", + "class_name": "RelatedNodeInfo" + } + }, + "text": "pipette.aspirate(200, plate['A1'], rate=2.0)\n\n..\n\n.. _new-dispense:\n\nDispense\n========\n\nTo dispense liquid from a pipette tip, call the :py:meth:`.InstrumentContext.dispense` method. Using this method, you can specify the dispense volume in uL, 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 uL into well location B1.\n\n.. code-block:: python\n\n pipette.dispense(200, plate['B1'])\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.. code-block:: python\n \n pipette.dispense(100, plate['B1'])\n protocol.delay(seconds=5) # pause for 5 seconds\n pipette.dispense(100) # dispense 100 uL at current position\n \nDispense by Well or Location\n----------------------------\n\nThe :py:meth:`~.InstrumentContext.dispense` method includes a ``location`` parameter that accepts either a :py:class:`.Well` or a :py:class:`~.types.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 :py:obj:`.well_bottom_clearance`::\n\n pipette.well_bottom_clearance.dispense=2 # tip is 2 mm above well bottom\n pipette.dispense(200, plate['B1'])\n\nYou can also dispense from a location along the center vertical axis within a well using the :py:meth:`.Well.top` and :py:meth:`.Well.bottom` methods.", + "start_char_idx": 3127, + "end_char_idx": 4757, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "4d392551-daf1-4443-abe8-7dac3a5956ef": { + "__data__": { + "id_": "4d392551-daf1-4443-abe8-7dac3a5956ef", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "4bc9adf8-6c71-466c-a373-cba39f77d046", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "4192ab5f9796bfd844b134b8672372e1a85900707f4d6ec6e34b988c67dc5f6d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "39a71b21-283f-4275-86b2-ff692afcbea9", + "node_type": "1", + "metadata": {}, + "hash": "16d563e3c5305cbf697c02f8bfb4c8d9f6aaeb12bb4b3313bd8d85db2ba609a6", + "class_name": "RelatedNodeInfo" + } + }, + "text": "If 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 :py:obj:`.well_bottom_clearance`::\n\n pipette.well_bottom_clearance.dispense=2 # tip is 2 mm above well bottom\n pipette.dispense(200, plate['B1'])\n\nYou can also dispense from a location along the center vertical axis within a well using the :py:meth:`.Well.top` and :py:meth:`.Well.bottom` methods. These methods move the pipette to a specified distance relative to the top or bottom center of a well::\n\n depth = plate['B1'].bottom(z=2) # tip is 2 mm above well bottom\n pipette.dispense(200, depth)\n\nSee also:\n\n- :ref:`new-default-op-positions` for information about controlling pipette height for a particular pipette.\n- :ref:`position-relative-labware` for formation about controlling pipette height from within a well.\n- :ref:`move-to` for information about moving a pipette to any reachable deck location.\n\nDispense Flow Rates\n-------------------\n\nFlex and OT-2 pipettes dispense at :ref:`default flow rates ` measured in uL/s. Adding a number to the ``rate`` parameter multiplies the flow rate by that value. As a best practice, don't 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 pipette.dispense(200, plate['B1'], rate=2.0)\n\n.. Removing the 2 notes here from the original. Covered by new revisions.\n\n..\n\n.. _new-blow-out:\n\n.. _blow-out:\n\nBlow Out\n========\n\nTo blow an extra amount of air through the pipette's tip, call the :py:meth:`.InstrumentContext.blow_out` method. You can use a specific well in a well plate or reservoir as the blowout location.", + "start_char_idx": 4268, + "end_char_idx": 6034, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "39a71b21-283f-4275-86b2-ff692afcbea9": { + "__data__": { + "id_": "39a71b21-283f-4275-86b2-ff692afcbea9", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "4d392551-daf1-4443-abe8-7dac3a5956ef", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d416dd1d7827a0a40a38cbe14c99fef33f443e8c4697750ac5c3e7aa21ac8ff3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a41d9aca-7986-4114-8fd6-07a67f82d394", + "node_type": "1", + "metadata": {}, + "hash": "29fa07657e9c59f7598917eb00f39726bed284f534b19af0df5999539ebdb5eb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Adding a number to the ``rate`` parameter multiplies the flow rate by that value. As a best practice, don't 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 pipette.dispense(200, plate['B1'], rate=2.0)\n\n.. Removing the 2 notes here from the original. Covered by new revisions.\n\n..\n\n.. _new-blow-out:\n\n.. _blow-out:\n\nBlow Out\n========\n\nTo blow an extra amount of air through the pipette's tip, call the :py:meth:`.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 pipette.blow_out()\n\nYou can also specify a particular well as the blowout location::\n\n pipette.blow_out(plate['B1'])\n\nMany protocols use the trash bin for blowing out the pipette. You can specify the trash bin as the blowout location by using the :py:obj:`.ProtocolContext.fixed_trash` property::\n\n pipette.blow_out(protocol.fixed_trash['A1']) \n\n..\n\n.. _touch-tip:\n\nTouch Tip\n=========\n\nThe :py:meth:`.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's 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 :py:meth:`~.InstrumentContext.touch_tip` without arguments causes the pipette to touch the well walls from its current location::\n\n pipette.touch_tip() \n\nTouch Location\n--------------\n\nThese optional location arguments give you control over where the tip will touch the side of a well.", + "start_char_idx": 5421, + "end_char_idx": 7154, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a41d9aca-7986-4114-8fd6-07a67f82d394": { + "__data__": { + "id_": "a41d9aca-7986-4114-8fd6-07a67f82d394", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "39a71b21-283f-4275-86b2-ff692afcbea9", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9315165af06c753f10bf9eb6b6edb2b7cf2e790c2cd863134561e452ebc084b3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9", + "node_type": "1", + "metadata": {}, + "hash": "fb3cfcf87fa2e920b28721ba0062027efa1f2eb0383f0ad746f6676a9dde6d9d", + "class_name": "RelatedNodeInfo" + } + }, + "text": "You can specify the trash bin as the blowout location by using the :py:obj:`.ProtocolContext.fixed_trash` property::\n\n pipette.blow_out(protocol.fixed_trash['A1']) \n\n..\n\n.. _touch-tip:\n\nTouch Tip\n=========\n\nThe :py:meth:`.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's 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 :py:meth:`~.InstrumentContext.touch_tip` without arguments causes the pipette to touch the well walls from its current location::\n\n pipette.touch_tip() \n\nTouch Location\n--------------\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 pipette.touch_tip(plate['B1'])\n \nThis example uses an offset to set the touch tip location 2mm below the top of the current well::\n\n pipette.touch_tip(v_offset=-2) \n\nThis example moves the pipette 75% of well's total radius and 2 mm below the top of well::\n\n pipette.touch_tip(plate['B1'], \n radius=0.75,\n v_offset=-2)\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\n.. warning::\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.", + "start_char_idx": 6310, + "end_char_idx": 8350, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9": { + "__data__": { + "id_": "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a41d9aca-7986-4114-8fd6-07a67f82d394", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "de49957df93f6f1e8ba391a1b4e744ed2e3bbdaaafaa880f556bc7cf8bbd6015", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff", + "node_type": "1", + "metadata": {}, + "hash": "f9e0c2972ad5101b97ff3ae8a51b0f7066aa0b1197856653cb190356c162f618", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\n.. warning::\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.\n\nTouch Speed\n-----------\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 pipette.touch_tip()\n\nThis example specifies a well location and sets the speed to 20 mm/s::\n\n pipette.touch_tip(plate['B1'], speed=20)\n\nThis example uses the current well and sets the speed to 80 mm/s::\n\n pipette.touch_tip(speed=80)\n\n..\n\n.. versionchanged:: 2.4\n Lowered minimum speed to 1 mm/s.\n\n.. _mix:\n\nMix\n====\n\nThe :py:meth:`~.InstrumentContext.mix` method aspirates and dispenses repeatedly in a single location. It's 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 uL) of liquid, and the well that contains the liquid you want to mix.", + "start_char_idx": 7708, + "end_char_idx": 9466, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff": { + "__data__": { + "id_": "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4ba4595-9ca7-484e-935b-a055614bda66", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d9ff0368df8a2952390528ee44fbcde15ab43ccbbd3ca4ca43e343f04adb0f75", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "3fa608968e8648f513fe50625d0c635a57d41a42f6e9359ea86654798145bec4", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d825183c-f2ad-4af6-bd58-5972857c4e21", + "node_type": "1", + "metadata": {}, + "hash": "e9aed31f20fa6b725c447e4f128acb19aa1b226035a8283ff2bcd6550002599e", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _mix:\n\nMix\n====\n\nThe :py:meth:`~.InstrumentContext.mix` method aspirates and dispenses repeatedly in a single location. It's 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 uL) of liquid, and the well that contains the liquid you want to mix.\n\nThis example draws 100 uL from the current well and mixes it three times::\n\n pipette.mix(repetitions=3, volume=100)\n\nThis example draws 100 uL from well B1 and mixes it three times::\n\n pipette.mix(3, 100, plate['B1'])\n\nThis example draws an amount equal to the pipette's maximum rated volume and mixes it three times::\n\n pipette.mix(repetitions=3)\n\n.. note::\n\n In 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\n..\n\n.. _air-gap:\n\nAir Gap\n=======\n\nThe :py:meth:`.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's height (in mm) above the well. By default, the pipette moves 5 mm above a well before aspirating air. Calling :py:meth:`~.InstrumentContext.air_gap` with no arguments uses the entire remaining volume in the pipette.\n\nThis example aspirates 200 uL of air 5 mm above the current well::\n\n pipette.air_gap(volume=200)\n\nThis example aspirates 200 uL of air 20 mm above the the current well::\n\n pipette.air_gap(volume=200, height=20)\n\nThis example aspirates enough air to fill the remaining volume in a pipette::\n\n pipette.air_gap()\n\n..", + "start_char_idx": 9035, + "end_char_idx": 10897, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d825183c-f2ad-4af6-bd58-5972857c4e21": { + "__data__": { + "id_": "d825183c-f2ad-4af6-bd58-5972857c4e21", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "fd5a8d4c9dced63c000cb257c4fd341d20f7b25522d72f89c8d4851827792d92", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "82aa4c80d12dcf23b1746de9f014629f9112c7b1fc1fb93b46cc33f020b70a60", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0a79d729-0631-4479-a8e9-a660ab1445b3", + "node_type": "1", + "metadata": {}, + "hash": "5c7be76da24c1791e1eba950c551cf8717d4687d8d763edb728ad879494568ae", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: Basic commands for working with pipette tips.\n\n.. _pipette-tips:\n\n*************************\nManipulating Pipette Tips\n*************************\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 :py:meth:`.InstrumentContext.pick_up_tip`, :py:meth:`.InstrumentContext.drop_tip`, and :py:meth:`.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've loaded the pipettes and labware from the basic :ref:`protocol template `.\n\nPicking Up a Tip\n================\n\nTo pick up a tip, call the :py:meth:`~.InstrumentContext.pick_up_tip` method without any arguments::\n \n pipette.pick_up_tip()\n\nThis simple statement works because the variable ``tiprack_1`` in the sample protocol includes the on-deck location of the tip rack (Flex ``location=\"D3\"``, OT-2 ``location=3``) *and* the ``pipette`` variable includes the argument ``tip_racks=[tiprack_1]``. 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 pipette.pick_up_tip() # picks up tip from rack location A1\n pipette.drop_tip() # drops tip in trash bin\n pipette.pick_up_tip() # picks up tip from rack location B1\n pipette.drop_tip() # drops tip in trash bin \n\nIf you omit the ``tip_rack`` argument from the ``pipette`` variable, the API will raise an error.", + "start_char_idx": 0, + "end_char_idx": 1883, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0a79d729-0631-4479-a8e9-a660ab1445b3": { + "__data__": { + "id_": "0a79d729-0631-4479-a8e9-a660ab1445b3", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "fd5a8d4c9dced63c000cb257c4fd341d20f7b25522d72f89c8d4851827792d92", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d825183c-f2ad-4af6-bd58-5972857c4e21", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "47c4f149305ed523a46dc10c3b0e3e3a4da2389e25dadeb032c700c42fc20a3f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "43b96eaa-5ec1-44d6-94c9-52e885e3cea1", + "node_type": "1", + "metadata": {}, + "hash": "ad5b6bc43f80d5d371c0e36e94d3868bd688ac4dc0f00d8bd164f893cc146fdc", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 pipette.pick_up_tip() # picks up tip from rack location A1\n pipette.drop_tip() # drops tip in trash bin\n pipette.pick_up_tip() # picks up tip from rack location B1\n pipette.drop_tip() # drops tip in trash bin \n\nIf you omit the ``tip_rack`` argument from the ``pipette`` variable, the API will raise an error. You must pass in the tip rack's location to ``pick_up_tip`` like this::\n \n pipette.pick_up_tip(tiprack_1['A1'])\n pipette.drop_tip()\n pipette.pick_up_tip(tiprack_1['B1']) \n\nIf coding the location of each tip seems inefficient or tedious, try using a ``for`` loop to automate a sequential tip pick up process. When using a loop, the API keeps track of tips and manages tip pickup for you. But ``pick_up_tip`` is still a powerful feature. It gives you direct control over tip use when that\u2019s important in your protocol.\n\n..\n\nAutomating Tip Pick Up\n======================\n\nWhen used with Python's :py:class:`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 for i in range(96):\n pipette.pick_up_tip()\n # liquid handling commands\n pipette.drop_tip()\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.", + "start_char_idx": 1347, + "end_char_idx": 3077, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "43b96eaa-5ec1-44d6-94c9-52e885e3cea1": { + "__data__": { + "id_": "43b96eaa-5ec1-44d6-94c9-52e885e3cea1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "fd5a8d4c9dced63c000cb257c4fd341d20f7b25522d72f89c8d4851827792d92", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0a79d729-0631-4479-a8e9-a660ab1445b3", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "c64fe720e9748a40901f35cfeabc045b5226631fbd0126d5eab61ac2bb963128", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3436c4b5-7ac3-408f-8bca-c14986fead25", + "node_type": "1", + "metadata": {}, + "hash": "0da4faf646053f2d396f5d814a80b4caf031f0520209a211d7c60ec1e96896e9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "When using a loop, the API keeps track of tips and manages tip pickup for you. But ``pick_up_tip`` is still a powerful feature. It gives you direct control over tip use when that\u2019s important in your protocol.\n\n..\n\nAutomating Tip Pick Up\n======================\n\nWhen used with Python's :py:class:`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 for i in range(96):\n pipette.pick_up_tip()\n # liquid handling commands\n pipette.drop_tip()\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 tiprack_2 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\",\n location=\"C3\"\n )\n\nNext, append the new tip rack to the pipette's ``tip_rack`` property::\n\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack_1, tiprack_2],\n )\n pipette_1.tip_racks.append(tiprack_2)\n\nFinally, sum the tip count in the range::\n\n for i in range(192):\n pipette.pick_up_tip()\n pipette.drop_tip()\n\nFor a more advanced \"real-world\" example, review the :ref:`off-deck location protocol ` on the :ref:`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.", + "start_char_idx": 2204, + "end_char_idx": 4008, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3436c4b5-7ac3-408f-8bca-c14986fead25": { + "__data__": { + "id_": "3436c4b5-7ac3-408f-8bca-c14986fead25", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "fd5a8d4c9dced63c000cb257c4fd341d20f7b25522d72f89c8d4851827792d92", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "43b96eaa-5ec1-44d6-94c9-52e885e3cea1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "7d1c4781ddb1eb956330f216c81b42aa09ddcba66468411f4d7814a3301a6577", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ed810bc0-eb72-45d8-90b2-999a60068a2b", + "node_type": "1", + "metadata": {}, + "hash": "4344d859fd1d2dd2d876a706e8e289c99cf1f97def3010c47edabbc3ebc0786d", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.\n\nDropping a Tip\n==============\n\nTo drop a tip in the trash bin, call the :py:meth:`~.InstrumentContext.drop_tip` method with no arguments::\n \n pipette.pick_up_tip()\n\nYou can also 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 pipette.pick_up_tip() # picks up tip from rack location A1\n pipette.drop_tip() # drops tip in trash bin \n pipette.pick_up_tip() # picks up tip from rack location B1\n pipette.drop_tip(tiprack['A1']) # drops tip in rack location A1\n\n..\n\n.. _pipette-return-tip:\n\nReturning a Tip\n===============\n\nTo return a tip to its original location, call the :py:meth:`~.InstrumentContext.return_tip` method with no arguments::\n\n pipette.return_tip()\n\nWorking With Used Tips\n======================\n\nCurrently, the API considers tips as \"used\" 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 pipette.pick_up_tip() # picks up tip from rack location A1\n pipette.return_tip() # drops tip in rack location A1\n pipette.pick_up_tip() # picks up tip from rack location B1\n pipette.drop_tip() # drops tip in trash bin\n pipette.pick_up_tip(tiprack_1['A1']) # picks up tip from rack location A1\n\nEarly API versions treated returned tips as unused items. They could be picked up again without an explicit argument.", + "start_char_idx": 3795, + "end_char_idx": 5735, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ed810bc0-eb72-45d8-90b2-999a60068a2b": { + "__data__": { + "id_": "ed810bc0-eb72-45d8-90b2-999a60068a2b", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "cd34e14d-a65f-4e21-93f8-c306de702613", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "fd5a8d4c9dced63c000cb257c4fd341d20f7b25522d72f89c8d4851827792d92", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3436c4b5-7ac3-408f-8bca-c14986fead25", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "2ae2b8a0654464114ab883090ec14e256683cd1345c60cf732a13a02a98dab6a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d5868ba2-8879-435c-841a-fe4ecf9e677b", + "node_type": "1", + "metadata": {}, + "hash": "41bc0e9c4e061c3095287133d9dcc6eb636152336bf11cb46167d9d7842e0f01", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 pipette.pick_up_tip() # picks up tip from rack location A1\n pipette.return_tip() # drops tip in rack location A1\n pipette.pick_up_tip() # picks up tip from rack location B1\n pipette.drop_tip() # drops tip in trash bin\n pipette.pick_up_tip(tiprack_1['A1']) # picks up tip from rack location A1\n\nEarly API versions treated returned tips as unused items. They could be picked up again without an explicit argument. For example:: \n\n pipette.pick_up_tip() # picks up tip from rack location A1\n pipette.return_tip() # drops tip in rack location A1\n pipette.pick_up_tip() # picks up tip from rack location A1\n\n.. versionchanged:: 2.2", + "start_char_idx": 4976, + "end_char_idx": 5963, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d5868ba2-8879-435c-841a-fe4ecf9e677b": { + "__data__": { + "id_": "d5868ba2-8879-435c-841a-fe4ecf9e677b", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "26e69b5e4ecc1ac108a33292ba3b796c01b85ede9ac7cd8845ec7f07fc8bf84f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ed810bc0-eb72-45d8-90b2-999a60068a2b", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "6b18248e20e860cef1b45ca0baa652ac249cc6178d78e5816f1ed3bc7e02cd82", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8fcb6784-76ee-4e3d-a540-7140fc8e156f", + "node_type": "1", + "metadata": {}, + "hash": "a882a43115b020b8107e19ea31c97d8e39971f90851249321b3c3e84d05d302a", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: Basic commands for working with robot utility features.\n\n.. _new-utility-commands:\n\n****************\nUtility Commands\n****************\n\nWith utility commands, you can control various robot functions such as pausing or delaying a protocol, checking the robot's 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 :ref:`protocol template `.\n\nDelay and Resume\n================\n\nCall the :py:meth:`.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 protocol.delay(seconds=10)\n\nThis example delays a protocol for 5 minutes::\n\n protocol.delay(minutes=5)\n\nThis example delays a protocol for 5 minutes and 10 seconds::\n\n protocol.delay(minutes=5, seconds=10)\n\nPause Until Resumed\n===================\n\nCall the :py:meth:`.ProtocolContext.pause` method to stop a protocol at a specific step. Unlike a delay, :py:meth:`~.ProtocolContext.pause` does not restart your protocol automatically. To resume, you'll 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 protocol.pause('Remember to get more pipette tips')\n\n..\n\nHoming\n======\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.", + "start_char_idx": 0, + "end_char_idx": 2000, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8fcb6784-76ee-4e3d-a540-7140fc8e156f": { + "__data__": { + "id_": "8fcb6784-76ee-4e3d-a540-7140fc8e156f", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "26e69b5e4ecc1ac108a33292ba3b796c01b85ede9ac7cd8845ec7f07fc8bf84f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d5868ba2-8879-435c-841a-fe4ecf9e677b", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "caa531074c0e55ca19df3a7e9b332a7de386b524f8c0cec944a390023c215371", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572", + "node_type": "1", + "metadata": {}, + "hash": "2420d5417bd9918d69fca0fa591ca89cb1ccc4a4b8a7773b1c877af4cba6968f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Unlike a delay, :py:meth:`~.ProtocolContext.pause` does not restart your protocol automatically. To resume, you'll 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 protocol.pause('Remember to get more pipette tips')\n\n..\n\nHoming\n======\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 :py:meth:`.ProtocolContext.home`::\n\n protocol.home()\n\nTo home a specific pipette's Z axis and plunger, call :py:meth:`.InstrumentContext.home`::\n\n pipette = protocol.load_instrument('flex_1channel_1000', 'right')\n pipette.home()\n\nTo home a specific pipette's plunger only, you can call :py:meth:`.InstrumentContext.home_plunger`::\n\n pipette = protocol.load_instrument('flex_1channel_1000', 'right')\n pipette.home_plunger()\n\n..\n\nComment\n=======\n\nCall the :py:meth:`.ProtocolContext.comment` method if you want to write and display a brief message in the Opentrons App during a protocol run::\n\n protocol.comment('Hello, world!')\n\n..\n\nControl and Monitor Robot Rail Lights\n=====================================\n\nCall the :py:meth:`.ProtocolContext.set_rail_lights` method to turn the robot's 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 protocol.set_rail_lights(True)", + "start_char_idx": 1223, + "end_char_idx": 3069, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572": { + "__data__": { + "id_": "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fe616abb-7210-4467-8a8e-869cbc31cb91", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "26e69b5e4ecc1ac108a33292ba3b796c01b85ede9ac7cd8845ec7f07fc8bf84f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8fcb6784-76ee-4e3d-a540-7140fc8e156f", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "9b68ad146aa482c3c094bb18747fe98e8edf604b819d0fc35d02b2f22818e1d2", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d79773d0-4aed-4f57-b8d7-c055a16f53e0", + "node_type": "1", + "metadata": {}, + "hash": "954ed8e158a3e053bd67523428bd3c5925531a139e9d6d12cf932be11cf01342", + "class_name": "RelatedNodeInfo" + } + }, + "text": "..\n\nControl and Monitor Robot Rail Lights\n=====================================\n\nCall the :py:meth:`.ProtocolContext.set_rail_lights` method to turn the robot's 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 protocol.set_rail_lights(True)\n\n\nThis example turns the rail lights off::\n\n protocol.set_rail_lights(False)\n\n.. versionadded:: 2.5\n\nYou can also check whether the rail lights are on or off in the protocol by using :py:obj:`.ProtocolContext.rail_lights_on`. This method returns ``True`` when lights are on and ``False`` when the lights are off.\n\n.. versionadded:: 2.5\n\n\nOT-2 Door Safety Switch\n=======================\n\nIntroduced with :ref:`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's door is closed at a specific point during a protocol run, call :py:obj:`.ProtocolContext.door_closed`. It returns a Boolean ``True`` (door closed) or ``False`` (door open) response.\n\n.. code-block:: python\n\n protocol.door_closed\n\n.. warning::\n\n :py:obj:`~.ProtocolContext.door_closed` is a status check only. It does not control the robot's 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\n.. versionadded:: 2.5", + "start_char_idx": 2673, + "end_char_idx": 4362, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d79773d0-4aed-4f57-b8d7-c055a16f53e0": { + "__data__": { + "id_": "d79773d0-4aed-4f57-b8d7-c055a16f53e0", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "f89d345c702de832660a64863fbc51d4ab3e4d7eff9470628e25ca4e40195958", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1eba341e-d6ca-44a3-928d-d5bfab234753", + "node_type": "1", + "metadata": {}, + "hash": "43cf4981e103cc4eaf6ef560c2d685f643153c0e0b996a9f9ea9b7f83b83d60b", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: The order of basic commands that are part of a complex liquid handling commmand in the Python API.\n\n.. _complex-command-order:\n\n*******************\nOrder of Operations\n*******************\n\nComplex commands perform a series of :ref:`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 :ref:`optional ` parameters.\n\nStep Sequence\n=============\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 :ref:`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. :py:meth:`.transfer` repeats as many times as there are wells in the longer of its ``source`` or ``dest`` argument. :py:meth:`.distribute` and :py:meth:`.consolidate` try to repeat as few times as possible. See :ref:`complex-tip-refilling` below for how they behave when they do need to repeat.\n\nExample Orders\n==============\n\nThe smallest possible number of steps in a complex command is just two: aspirating and dispensing.", + "start_char_idx": 0, + "end_char_idx": 1783, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1eba341e-d6ca-44a3-928d-d5bfab234753": { + "__data__": { + "id_": "1eba341e-d6ca-44a3-928d-d5bfab234753", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d79773d0-4aed-4f57-b8d7-c055a16f53e0", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c7f140d56569c6025e40c63a74a9ba97c223aa49c3465f59c4e598130acb87db", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "fe100cbc-74d2-41bf-a40b-70d8170d7b31", + "node_type": "1", + "metadata": {}, + "hash": "6788238d7ed9fbf15b2d1f3da8c85c6611ae0402384929fed1001a927cd633a2", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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. :py:meth:`.transfer` repeats as many times as there are wells in the longer of its ``source`` or ``dest`` argument. :py:meth:`.distribute` and :py:meth:`.consolidate` try to repeat as few times as possible. See :ref:`complex-tip-refilling` below for how they behave when they do need to repeat.\n\nExample Orders\n==============\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 pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n new_tip=\"never\",\n )\n\nHere's 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 pipette.distribute(\n volume=100,\n source=[plate[\"A1\"]],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n touch_tip=True,\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's 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's also default behavior for ``distribute()`` to aspirate a disposal volume, which is blown out before dropping the tip.", + "start_char_idx": 1078, + "end_char_idx": 2848, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "fe100cbc-74d2-41bf-a40b-70d8170d7b31": { + "__data__": { + "id_": "fe100cbc-74d2-41bf-a40b-70d8170d7b31", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1eba341e-d6ca-44a3-928d-d5bfab234753", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "a4ce68afdd8d45beaaf902a97833913b3f286fa486e80eed8ae6342933a3b8c8", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3e189d7a-020e-46d1-9904-2e908115d370", + "node_type": "1", + "metadata": {}, + "hash": "42fe514b248844343be44e8ce771925650e16eeee34fa3b720a56bda09151a17", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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's 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's 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.. code-block:: text\n\n Picking up tip from A1 of tip rack on 3\n Aspirating 220.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n Touching tip\n Dispensing 100.0 uL into B1 of well plate on 2 at 92.86 uL/sec\n Touching tip\n Dispensing 100.0 uL into B2 of well plate on 2 at 92.86 uL/sec\n Touching tip\n Blowing out at A1 of Opentrons Fixed Trash on 12\n Dropping tip into A1 of Opentrons Fixed Trash on 12\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.\n\n.. _complex-tip-refilling:\n\nTip Refilling\n=============\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't fit, you don't 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 uL of liquid from one well to another, but you only have a 50 uL pipette attached to your robot. To accomplish this with building block commands, you'd need multiple aspirates and dispenses.", + "start_char_idx": 2362, + "end_char_idx": 4083, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3e189d7a-020e-46d1-9904-2e908115d370": { + "__data__": { + "id_": "3e189d7a-020e-46d1-9904-2e908115d370", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "fe100cbc-74d2-41bf-a40b-70d8170d7b31", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e4c42f3409e1483aa58fec22e02b76f7a363420d947df05fcfb147cd56bb5dfd", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0e75adab-8998-455f-b73c-4e13bcb189ab", + "node_type": "1", + "metadata": {}, + "hash": "664758ae780cba31b52177ad9d33ffcb179e7761f2da0404aa691a96978e6b76", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _complex-tip-refilling:\n\nTip Refilling\n=============\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't fit, you don't 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 uL of liquid from one well to another, but you only have a 50 uL pipette attached to your robot. To accomplish this with building block commands, you'd need multiple aspirates and dispenses. ``aspirate(volume=100)`` would raise an error, since it exceeds the tip's volume. But you can accomplish this with a single transfer command::\n\n pipette50.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n )\n\nTo effect the transfer, the API will aspirate and dispense the maximum volume of the pipette (50 uL) twice:\n\n.. code-block:: text\n\n\tPicking up tip from A1 of tip rack on D3\n\tAspirating 50.0 uL from A1 of well plate on D2 at 57 uL/sec\n\tDispensing 50.0 uL into B1 of well plate on D2 at 57 uL/sec\n\tAspirating 50.0 uL from A1 of well plate on D2 at 57 uL/sec\n\tDispensing 50.0 uL into B1 of well plate on D2 at 57 uL/sec\n\tDropping tip into A1 of Opentrons Fixed Trash on A3\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 uL and 25 uL. ``volume=1000`` would repeat 20 times \u2014 not very efficient, but perhaps more useful than having to swap to a different pipette!", + "start_char_idx": 3506, + "end_char_idx": 5222, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0e75adab-8998-455f-b73c-4e13bcb189ab": { + "__data__": { + "id_": "0e75adab-8998-455f-b73c-4e13bcb189ab", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3e189d7a-020e-46d1-9904-2e908115d370", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "5e9857d757742afe506b3336bf7ab25007cf091afae3da575e1c7bccfd87fe97", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1e92140d-6f5e-46bb-9a95-f0f06f5746db", + "node_type": "1", + "metadata": {}, + "hash": "98762ab1f0beb81c290ee0da6ec2f535b4381801bdb2be39e6a7b29626b5fbe9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "``volume=50`` would require just one repetition. ``volume=75`` would require two, split into 50 uL and 25 uL. ``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 uL to each of the 12 wells in row A of a plate. That's 960 uL total \u2014 less than the capacity of the pipette \u2014 but the 100 uL disposal volume will cause the pipette to refill.\n\n.. code-block:: text\n\n Picking up tip from A1 of tip rack on 3\n Aspirating 980.0 uL from A1 of well plate on 2 at 274.7 uL/sec\n Dispensing 80.0 uL into B1 of well plate on 2 at 274.7 uL/sec\n Dispensing 80.0 uL into B2 of well plate on 2 at 274.7 uL/sec\n ... \n Dispensing 80.0 uL into B11 of well plate on 2 at 274.7 uL/sec\n Blowing out at A1 of Opentrons Fixed Trash on 12\n Aspirating 180.0 uL from A1 of well plate on 2 at 274.7 uL/sec\n Dispensing 80.0 uL into B12 of well plate on 2 at 274.7 uL/sec\n Blowing out at A1 of Opentrons Fixed Trash on 12\n Dropping tip into A1 of Opentrons Fixed Trash on 12\n \nThis command will blow out 200 total uL of liquid in the trash. If you need to conserve liquid, use :ref:`complex liquid handling parameters ` to reduce or eliminate the :ref:`disposal volume `, or to :ref:`blow out ` in a location other than the trash.", + "start_char_idx": 4985, + "end_char_idx": 6519, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1e92140d-6f5e-46bb-9a95-f0f06f5746db": { + "__data__": { + "id_": "1e92140d-6f5e-46bb-9a95-f0f06f5746db", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0e75adab-8998-455f-b73c-4e13bcb189ab", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "0c9d29232fef8438013a77fce320abbce59127515445b067e701e4c50b2a7408", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "43773776-973f-420d-ad88-aef356e711c9", + "node_type": "1", + "metadata": {}, + "hash": "56560e57cb0ab706c608e1ee598aec5c48c276d17925f35a4e31694ae98065b8", + "class_name": "RelatedNodeInfo" + } + }, + "text": "If you need to conserve liquid, use :ref:`complex liquid handling parameters ` to reduce or eliminate the :ref:`disposal volume `, or to :ref:`blow out ` in a location other than the trash.\n\n.. _distribute-consolidate-volume-list:\n.. _complex-list-volumes:\n\nList of Volumes\n===============\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 pipette.transfer(\n volume=[20, 40, 60],\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"], plate[\"B3\"]],\n )\n\n.. versionadded: 2.0\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 pipette.transfer(\n volume=[20, 0, 60],\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"], plate[\"B3\"]],\n )\n \nThe pipette dispenses in B1 and B3, and does not move to B2 at all.", + "start_char_idx": 6275, + "end_char_idx": 7578, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "43773776-973f-420d-ad88-aef356e711c9": { + "__data__": { + "id_": "43773776-973f-420d-ad88-aef356e711c9", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1e92140d-6f5e-46bb-9a95-f0f06f5746db", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d15326e1b3c1cbb6b748cf72bbc7a6befd82ed62d77c31be5b46610b067f8b16", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2117b6f5-f483-45bf-ab97-a8379528a517", + "node_type": "1", + "metadata": {}, + "hash": "2377bc633575b688f9b685c11549b1c03bd5c70f3f351fd23fbaf6e401bd0c14", + "class_name": "RelatedNodeInfo" + } + }, + "text": "For example, this command transfers a different amount of liquid into each of wells B1, B2, and B3::\n\n pipette.transfer(\n volume=[20, 40, 60],\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"], plate[\"B3\"]],\n )\n\n.. versionadded: 2.0\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 pipette.transfer(\n volume=[20, 0, 60],\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"], plate[\"B3\"]],\n )\n \nThe pipette dispenses in B1 and B3, and does not move to B2 at all.\n\n.. code-block:: text\n\n\tPicking up tip from A1 of tip rack on 3\n\tAspirating 20.0 uL from A1 of well plate on 2 at 274.7 uL/sec\n\tDispensing 20.0 uL into B1 of well plate on 2 at 274.7 uL/sec\n\tAspirating 60.0 uL from A1 of well plate on 2 at 274.7 uL/sec\n\tDispensing 60.0 uL into B3 of well plate on 2 at 274.7 uL/sec\n\tDropping tip into A1 of Opentrons Fixed Trash on 12\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\t\n.. note::\n When 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't want to waste tips, pre-process your list of sources or destinations and use the result as the argument of your complex command.", + "start_char_idx": 6944, + "end_char_idx": 8590, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2117b6f5-f483-45bf-ab97-a8379528a517": { + "__data__": { + "id_": "2117b6f5-f483-45bf-ab97-a8379528a517", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f55f850c-bb5d-4c65-8b9c-92f35de143e1", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bb529e9281a5843d1618cb03d3edba28112602431bb6f1d76f6412c3aca43da9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "43773776-973f-420d-ad88-aef356e711c9", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "63a8b1b9f7e48d310533234af4e6eba8cde9eda7290c5fdb3cf67448b1a92e9d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "58074a32-3c79-41fd-b1f4-33e803d124af", + "node_type": "1", + "metadata": {}, + "hash": "3326594428b59487d8b334d3ffbdaa43f65b019324d26d34f7788d14d864f1f2", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\t\n.. note::\n When 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't want to waste tips, pre-process your list of sources or destinations and use the result as the argument of your complex command.\n\n..\n Skip wells for ``transfer()`` and ``distribute()``.\n.. versionadded:: 2.8\n Skip wells for ``consolidate()``.", + "start_char_idx": 8045, + "end_char_idx": 8710, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "58074a32-3c79-41fd-b1f4-33e803d124af": { + "__data__": { + "id_": "58074a32-3c79-41fd-b1f4-33e803d124af", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2117b6f5-f483-45bf-ab97-a8379528a517", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "2a06ffdc25a46346641c4050bc0cde0f600ebb4a57d3296ef5c2e91c6736f9c1", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a33e930e-3141-491d-bb88-4cc2fde13111", + "node_type": "1", + "metadata": {}, + "hash": "0b397d19dc2e783a52986096c1d06bc5d36c8fa7d91f219e926dec858400571f", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: Parameters for fine-tuning complex liquid handling behavior in the Python API.\n\n.. _complex_params:\n\n**********************************\nComplex Liquid Handling Parameters\n**********************************\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 :ref:`complex-command-order` for more details on the sequence of steps performed by complex commands.\n\nThe API reference entry for :py:meth:`.InstrumentContext.transfer` also lists the parameters and has more information on their implementation as keyword arguments.\n\n.. _param-tip-handling:\n\nTip Handling\n============\n\nThe ``new_tip`` parameter controls if and when complex commands pick up new tips from the pipette's tip racks. It has three possible values:\n\n.. list-table::\n :header-rows: 1\n\n * - Value\n - Behavior\n * - ``\"once\"``\n - \n - Pick up a tip at the start of the command.\n - Use the tip for all liquid handling.\n - Drop the tip at the end of the command.\n * - ``\"always\"``\n - Pick up and drop a tip for each set of aspirate and dispense steps.\n * - ``\"never\"``\n - Do not pick up or drop tips at all.\n \n``\"once\"`` is the default behavior for all complex commands.\n\n..\n \nTip Handling Requirements\n-------------------------\n \n``\"once\"`` and ``\"always\"`` require that the pipette has an :ref:`associated tip rack `, or the API will raise an error (because it doesn't 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.", + "start_char_idx": 0, + "end_char_idx": 1850, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a33e930e-3141-491d-bb88-4cc2fde13111": { + "__data__": { + "id_": "a33e930e-3141-491d-bb88-4cc2fde13111", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "58074a32-3c79-41fd-b1f4-33e803d124af", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "7af536eaa76018a94ba7e6cd8c5ae2fa05b88e1a60fafce6e89fbebbc8216813", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5e5d5c28-e238-485a-88b0-46cea135634e", + "node_type": "1", + "metadata": {}, + "hash": "407fccae8971f87cccbdff139fdd640768929e0f9ac3c9768591496e4bb34802", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- Use the tip for all liquid handling.\n - Drop the tip at the end of the command.\n * - ``\"always\"``\n - Pick up and drop a tip for each set of aspirate and dispense steps.\n * - ``\"never\"``\n - Do not pick up or drop tips at all.\n \n``\"once\"`` is the default behavior for all complex commands.\n\n..\n \nTip Handling Requirements\n-------------------------\n \n``\"once\"`` and ``\"always\"`` require that the pipette has an :ref:`associated tip rack `, or the API will raise an error (because it doesn't 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.. code-block:: python\n\n pipette.pick_up_tip()\n pipette.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\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).\n\nAvoiding Cross-Contamination\n----------------------------\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:py:meth:`~.InstrumentContext.transfer` will pick up a new tip before *every* aspirate when ``new_tip=\"always\"``. This includes when :ref:`tip refilling ` requires multiple aspirations from a single source well.\n\n:py:meth:`~.InstrumentContext.distribute` and :py:meth:`~.InstrumentContext.consolidate` only pick up one tip, even when ``new_tip=\"always\"``.", + "start_char_idx": 1168, + "end_char_idx": 2945, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5e5d5c28-e238-485a-88b0-46cea135634e": { + "__data__": { + "id_": "5e5d5c28-e238-485a-88b0-46cea135634e", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a33e930e-3141-491d-bb88-4cc2fde13111", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "3c414c14d00ecd2d628017e9176e55ff74a3d8149cdd4125f0edb5788855fcd9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "845f2b9d-770b-4274-9e68-8c56039832e4", + "node_type": "1", + "metadata": {}, + "hash": "835226a351b953681fb3eab87994822ed56764610a071e8489bac6090a631916", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Avoiding Cross-Contamination\n----------------------------\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:py:meth:`~.InstrumentContext.transfer` will pick up a new tip before *every* aspirate when ``new_tip=\"always\"``. This includes when :ref:`tip refilling ` requires multiple aspirations from a single source well.\n\n:py:meth:`~.InstrumentContext.distribute` and :py:meth:`~.InstrumentContext.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 uL total plus disposal volume) exceeds the pipette capacity (300 uL)::\n\n pipette.distribute(\n volume=200,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n new_tip=\"always\",\n )\n \nBut it *does not* pick up a new tip after dispensing into B1:\n\n.. code-block:: text\n\n Picking up tip from A1 of tip rack on 3\n Aspirating 220.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n Dispensing 200.0 uL into B1 of well plate on 2 at 92.86 uL/sec\n Blowing out at A1 of Opentrons Fixed Trash on 12\n Aspirating 220.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n Dispensing 200.0 uL into B2 of well plate on 2 at 92.86 uL/sec\n Blowing out at A1 of Opentrons Fixed Trash on 12\n Dropping tip into A1 of Opentrons Fixed Trash on 12\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.", + "start_char_idx": 2264, + "end_char_idx": 3983, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "845f2b9d-770b-4274-9e68-8c56039832e4": { + "__data__": { + "id_": "845f2b9d-770b-4274-9e68-8c56039832e4", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5e5d5c28-e238-485a-88b0-46cea135634e", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9ee0e4f682a133060b7a617bb6e4b04ad68cebca3503b2b0933d0ec16c527395", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "cb58775b-b524-407b-b9fc-2ab8eeb52c4c", + "node_type": "1", + "metadata": {}, + "hash": "eaff7168b41cd5506de686c6afffce2e244554ea7e65384b7d9812b037265460", + "class_name": "RelatedNodeInfo" + } + }, + "text": "* Set :py:obj:`.well_bottom_clearance` high enough that the tip doesn't contact liquid in the destination well.\n * Use :ref:`building block commands ` instead of complex commands.\n\n\n.. _param-mix-before:\n\nMix Before\n==========\n\nThe ``mix_before`` parameter controls mixing in source wells before each aspiration. Its value must be a :py:class:`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 uL.\n\nFor example, this transfer command will mix 50 uL of liquid 3 times before each of its aspirations::\n\n pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n mix_before=(3, 50),\n )\n \n..\n\nMixing occurs before every aspiration, including when :ref:`tip refilling ` is required.\n\n.. note::\n :py:meth:`~.InstrumentContext.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.\n \n.. _param-disposal-volume:\n\nDisposal Volume\n===============\n\nThe ``disposal_volume`` parameter controls how much extra liquid is aspirated as part of a :py:meth:`~.InstrumentContext.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``.", + "start_char_idx": 3988, + "end_char_idx": 5559, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "cb58775b-b524-407b-b9fc-2ab8eeb52c4c": { + "__data__": { + "id_": "cb58775b-b524-407b-b9fc-2ab8eeb52c4c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "845f2b9d-770b-4274-9e68-8c56039832e4", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1458e19204558e87ceea1189d7ff5deace89836e010a500f86401cca55355841", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d6693392-0548-4317-8f58-471434dd9e7c", + "node_type": "1", + "metadata": {}, + "hash": "ddc7f12bdc720da8877009d0c4ab6de5d3c26d3b3301f342639fa65088d18616", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. note::\n :py:meth:`~.InstrumentContext.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.\n \n.. _param-disposal-volume:\n\nDisposal Volume\n===============\n\nThe ``disposal_volume`` parameter controls how much extra liquid is aspirated as part of a :py:meth:`~.InstrumentContext.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 :ref:`minimum volume ` of the pipette, but you can set it to any amount::\n\n pipette.distribute(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n disposal_volume=10, # reduce from default 20 uL to 10 uL\n )\n \n..\n \nIf the amount to aspirate plus the disposal volume exceeds the tip's capacity, ``distribute()`` will use a :ref:`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 uL pipette::\n \n pipette.distribute(\n volume=120,\n source=reservoir[\"A1\"],\n dest=[plate.columns()[0]],\n disposal_volume=50,\n )\n \nThe amount to dispense in the destination is 960 uL (120 uL for each of 8 wells in the column). Adding the 50 uL disposal volume exceeds the 1000 uL capacity of the tip. The command will be split across two aspirations, each with the full disposal volume of 50 uL. The pipette will dispose *a total of 100 uL* during the command.", + "start_char_idx": 4862, + "end_char_idx": 6714, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d6693392-0548-4317-8f58-471434dd9e7c": { + "__data__": { + "id_": "d6693392-0548-4317-8f58-471434dd9e7c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "cb58775b-b524-407b-b9fc-2ab8eeb52c4c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "039e7efcd3d0601d494c5b33aaf4d7a9d33d47922436228c38b5cd2591b4838e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "18dcc255-3559-4715-b452-baedecc77545", + "node_type": "1", + "metadata": {}, + "hash": "56b547b83bb48227e606f0d55ccc0da0d29aae3bbdb40b4b3344f1506d220ead", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 uL pipette::\n \n pipette.distribute(\n volume=120,\n source=reservoir[\"A1\"],\n dest=[plate.columns()[0]],\n disposal_volume=50,\n )\n \nThe amount to dispense in the destination is 960 uL (120 uL for each of 8 wells in the column). Adding the 50 uL disposal volume exceeds the 1000 uL capacity of the tip. The command will be split across two aspirations, each with the full disposal volume of 50 uL. The pipette will dispose *a total of 100 uL* during the command.\n\n.. note::\n :py:meth:`~.InstrumentContext.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 :py:meth:`~.InstrumentContext.consolidate` ignores ``disposal_volume`` completely.\n\n.. _param-touch-tip:\n\nTouch Tip\n=========\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 pipette.transfer(\n volume=100,\n dest=plate[\"A1\"],\n source=plate[\"B1\"],\n touch_tip=True,\n )\n\n..\n\nTouch tip occurs after every aspiration, including when :ref:`tip refilling ` is required.\n\nThis parameter always uses default motion behavior for touch tip. Use the :ref:`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.\n\n.. _param-air-gap:\n\nAir Gap\n=======\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's value is the amount of air to aspirate in uL.", + "start_char_idx": 6055, + "end_char_idx": 8046, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "18dcc255-3559-4715-b452-baedecc77545": { + "__data__": { + "id_": "18dcc255-3559-4715-b452-baedecc77545", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d6693392-0548-4317-8f58-471434dd9e7c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "86a6a91a8dc1e87d9aff6d791469164c09165146c264becad4d87cd4034792c9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "bce02060-3326-43af-870e-a03cad701b05", + "node_type": "1", + "metadata": {}, + "hash": "8888543479bc940f9244da925c5ea966913ed141e14cf0d9071dbe159ebeb310", + "class_name": "RelatedNodeInfo" + } + }, + "text": "This parameter always uses default motion behavior for touch tip. Use the :ref:`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.\n\n.. _param-air-gap:\n\nAir Gap\n=======\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's value is the amount of air to aspirate in uL.\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.. list-table::\n :header-rows: 1\n\n * - Method\n - Air-gapping behavior\n * - ``transfer()``\n - \n - Air gap after each aspiration.\n - Pipette is empty after dispensing.\n * - ``distribute()``\n - \n - Air gap after each aspiration.\n - Air gap after dispensing if the pipette isn't empty.\n * - ``consolidate()``\n - \n - Air gap after each aspiration. This may create multiple air gaps within the tip.\n - Pipette is empty after dispensing.\n\nFor example, this transfer command will create a 20 uL air gap after each of its aspirations. When dispensing, it will clear the air gap and dispense the full 100 uL of liquid::\n\n pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n air_gap=20,\n )\n \n..\n\nWhen consolidating, air gaps still occur after every aspiration.", + "start_char_idx": 7546, + "end_char_idx": 9168, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "bce02060-3326-43af-870e-a03cad701b05": { + "__data__": { + "id_": "bce02060-3326-43af-870e-a03cad701b05", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "18dcc255-3559-4715-b452-baedecc77545", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "7a0457362cd9761745ef3eab738eb41b3337dd2401f8284712e3695df665e485", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e3dd77e5-4225-4b6f-921e-9db7edc76117", + "node_type": "1", + "metadata": {}, + "hash": "ad9911e3f59d0f8c3b08832dc24521ef8c3da01946177640c934d4c896344f46", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- Pipette is empty after dispensing.\n * - ``distribute()``\n - \n - Air gap after each aspiration.\n - Air gap after dispensing if the pipette isn't empty.\n * - ``consolidate()``\n - \n - Air gap after each aspiration. This may create multiple air gaps within the tip.\n - Pipette is empty after dispensing.\n\nFor example, this transfer command will create a 20 uL air gap after each of its aspirations. When dispensing, it will clear the air gap and dispense the full 100 uL of liquid::\n\n pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n air_gap=20,\n )\n \n..\n\nWhen consolidating, air gaps still occur after every aspiration. In this example, the tip will use 210 uL of its capacity (50 uL of liquid followed by 20 uL of air, repeated three times)::\n\n pipette.consolidate(\n volume=50,\n source=[plate[\"A1\"], plate[\"A2\"], plate[\"A3\"]],\n dest=plate[\"B1\"],\n air_gap=20,\n )\n\n.. code-block:: text\n\n Picking up tip from A1 of tip rack on 3\n Aspirating 50.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n Air gap\n Aspirating 20.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n Aspirating 50.0 uL from A2 of well plate on 2 at 92.86 uL/sec\n Air gap\n Aspirating 20.0 uL from A2 of well plate on 2 at 92.86 uL/sec\n Aspirating 50.0 uL from A3 of well plate on 2 at 92.86 uL/sec\n Air gap\n Aspirating 20.0 uL from A3 of well plate on 2 at 92.86 uL/sec\n Dispensing 210.0 uL into B1 of well plate on 2 at 92.86 uL/sec\n Dropping tip into A1 of Opentrons Fixed Trash on 12\n \nIf adding an air gap would exceed the pipette's maximum volume, the complex command will use a :ref:`tip refilling strategy `.", + "start_char_idx": 8455, + "end_char_idx": 10234, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e3dd77e5-4225-4b6f-921e-9db7edc76117": { + "__data__": { + "id_": "e3dd77e5-4225-4b6f-921e-9db7edc76117", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "bce02060-3326-43af-870e-a03cad701b05", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "828f3cf7def5356914caa032b593a698c9750841fd8e0f1e467071e076bfc4a4", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e", + "node_type": "1", + "metadata": {}, + "hash": "6038e9aa45ceda94fc787000817b83f48bffd359f48da3f41c352dbf9006efd2", + "class_name": "RelatedNodeInfo" + } + }, + "text": "For example, this command uses a 300 uL pipette to transfer 300 uL of liquid plus an air gap::\n\n pipette.transfer(\n volume=300,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n air_gap=20,\n )\n\nAs a result, the transfer is split into two aspirates of 150 uL, each with their own 20 uL air gap:\n\n.. code-block:: text\n\n\tPicking up tip from A1 of tip rack on 3\n\tAspirating 150.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n\tAir gap\n\t\tAspirating 20.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n\tDispensing 170.0 uL into B1 of well plate on 2 at 92.86 uL/sec\n\tAspirating 150.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n\tAir gap\n\t\tAspirating 20.0 uL from A1 of well plate on 2 at 92.86 uL/sec\n\tDispensing 170.0 uL into B1 of well plate on 2 at 92.86 uL/sec\n\tDropping tip into A1 of Opentrons Fixed Trash on 12\n\n.. _param-mix-after:\n\nMix After\n=========\n\nThe ``mix_after`` parameter controls mixing in source wells after each dispense. Its value must be a :py:class:`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 uL.\n\nFor example, this transfer command will mix 50 uL of liquid 3 times after each of its dispenses::\n\n pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n mix_after=(3, 50),\n )\n \n..\n\n.. note::\n :py:meth:`~.InstrumentContext.distribute` ignores any value of ``mix_after``.", + "start_char_idx": 10235, + "end_char_idx": 11710, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e": { + "__data__": { + "id_": "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e3dd77e5-4225-4b6f-921e-9db7edc76117", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c7adf01c1ff7c0e9f8f1fdba90da89319fb03472e7e544ba8649f1e647e8d81f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d195d40c-58be-4647-a367-c03fec0b3b70", + "node_type": "1", + "metadata": {}, + "hash": "0629b32559e3997b3979f2ec5ebc18e5e76a73f010ab9ac634e2fa7586012b67", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Its value must be a :py:class:`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 uL.\n\nFor example, this transfer command will mix 50 uL of liquid 3 times after each of its dispenses::\n\n pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n mix_after=(3, 50),\n )\n \n..\n\n.. note::\n :py:meth:`~.InstrumentContext.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.\n\n.. _param-blow-out:\n\nBlow Out\n========\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.. list-table::\n :header-rows: 1\n\n * - Method\n - Blowout behavior and location\n * - ``transfer()``\n -\n - Blow out after each dispense.\n - Valid locations: ``\"trash\"``, ``\"source well\"``, ``\"destination well\"``\n * - ``distribute()``\n - \n - Blow out after the final dispense.\n - Valid locations: ``\"trash\"``, ``\"source well\"``\n * - ``consolidate()``\n - \n - Blow out after the only dispense.", + "start_char_idx": 11198, + "end_char_idx": 12786, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d195d40c-58be-4647-a367-c03fec0b3b70": { + "__data__": { + "id_": "d195d40c-58be-4647-a367-c03fec0b3b70", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ca7b7f805dae4b13c017c0a818225cb7c4aafa230eb087fb6b919046917a1c54", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "85311773-cc40-40c8-9184-15ff45fba6dd", + "node_type": "1", + "metadata": {}, + "hash": "f72aa2df7f743dddf71b2b0d5a1f6bbf6c47bf95e3a645150f2dbd7a7d98032f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.. list-table::\n :header-rows: 1\n\n * - Method\n - Blowout behavior and location\n * - ``transfer()``\n -\n - Blow out after each dispense.\n - Valid locations: ``\"trash\"``, ``\"source well\"``, ``\"destination well\"``\n * - ``distribute()``\n - \n - Blow out after the final dispense.\n - Valid locations: ``\"trash\"``, ``\"source well\"``\n * - ``consolidate()``\n - \n - Blow out after the only dispense.\n - 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 pipette.transfer(\n volume=100,\n source=[plate[\"A1\"], plate[\"A2\"]],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n blow_out=True,\n )\n\n..\n\nSet ``blowout_location`` when you don't 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 :ref:`blow out building block command ` instead.", + "start_char_idx": 12026, + "end_char_idx": 13603, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "85311773-cc40-40c8-9184-15ff45fba6dd": { + "__data__": { + "id_": "85311773-cc40-40c8-9184-15ff45fba6dd", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d195d40c-58be-4647-a367-c03fec0b3b70", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "896c1ccfc4f8c66904c39e588b3b7a727b30780de6baea4748cab8fb3a67e49a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995", + "node_type": "1", + "metadata": {}, + "hash": "c06b6b8c9e517bc290706d70d7dfadadcaec7fee74dc9ab2cc5252862afcfd06", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- 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 pipette.transfer(\n volume=100,\n source=[plate[\"A1\"], plate[\"A2\"]],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n blow_out=True,\n )\n\n..\n\nSet ``blowout_location`` when you don't 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 :ref:`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 pipette.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.. versionadded:: 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 pipette.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\nWith ``distribute()``, the pipette will still blow out if you only set ``blowout_location``, but in the default location of the trash.\n\n.. note::\n If the tip already contains liquid before the complex command, the default blowout location will shift away from the trash.", + "start_char_idx": 12794, + "end_char_idx": 14688, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995": { + "__data__": { + "id_": "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "63e31b90-e708-4b24-89cc-1e383bb9f237", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6cca697e534eee5ccf1eeefa20ac077c7231babdf440b8d135f13844a6963e8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "85311773-cc40-40c8-9184-15ff45fba6dd", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "76da647c262f1cb9b2c6cf043b0841009a27f87b853ae948827e9d6056bde4fd", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "48346ec0-5a70-4849-95c6-46a53791dbda", + "node_type": "1", + "metadata": {}, + "hash": "f3741d86a5bbc01f9c4fa84058bd9bff333a929cc77470700788ddb063ca0853", + "class_name": "RelatedNodeInfo" + } + }, + "text": "``blow_out=True`` is also required for distribute commands that blow out by virtue of having a disposal volume::\n\n pipette.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\nWith ``distribute()``, the pipette will still blow out if you only set ``blowout_location``, but in the default location of the trash.\n\n.. note::\n If 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's the source::\n \n pipette.pick_up_tip()\n pipette.aspirate(100, plate[\"A1\"]) \n pipette.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 )\n pipette.drop_tip()\n\n This only occurs when you aspirate and then perform a complex command with ``new_tip=\"never\"`` and ``blow_out=True``.\n\n.. _param-trash:\n\nTrash Tips\n==========\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 pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n trash=False,\n )\n\n..", + "start_char_idx": 14031, + "end_char_idx": 15847, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "48346ec0-5a70-4849-95c6-46a53791dbda": { + "__data__": { + "id_": "48346ec0-5a70-4849-95c6-46a53791dbda", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bfec6248b612d99f4cdbbc63d38d8d4bd1d73892e1dd22afddae0b15d7df3faf", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7", + "node_type": "1", + "metadata": {}, + "hash": "d505114519e8d505653c4e38e0a435e60d852e5f20613f13790dfcee4927f5df", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How the Opentrons Python API moves liquids between wells when using complex commands.\n\n.. _complex-source-dest:\n\n************************\nSources and Destinations\n************************\n\nThe :py:meth:`.InstrumentContext.transfer`, :py:meth:`.InstrumentContext.distribute`, and :py:meth:`.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 :ref:`building block commands ` :py:meth:`~.InstrumentContext.aspirate` and :py:meth:`~.InstrumentContext.dispense` only operate in a single location.\n\nFor example, this command performs a simple transfer between two wells on a plate::\n\n pipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"A2\"],\n )\n\n..\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.\n\n\n.. _source-dest-args:\n\nSource and Destination Arguments\n================================\n\nAs noted above, the :py:meth:`~.InstrumentContext.transfer`, :py:meth:`~.InstrumentContext.distribute`, and :py:meth:`~.InstrumentContext.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:py:meth:`~.InstrumentContext.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. :py:meth:`~.InstrumentContext.distribute` limits its source to a single well, while :py:meth:`~.InstrumentContext.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.", + "start_char_idx": 0, + "end_char_idx": 2313, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7": { + "__data__": { + "id_": "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "48346ec0-5a70-4849-95c6-46a53791dbda", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "410634def26ee2b6b33e31952fb1b8b8b21e7de75f0e4e595c9441657f5ff15e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0655b0e4-6783-4fd6-a9a8-d6eee5b45921", + "node_type": "1", + "metadata": {}, + "hash": "2e7540d1eaa8e59148305757ad480da4a91e2fa1f18849332dac54796f91e1aa", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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:py:meth:`~.InstrumentContext.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. :py:meth:`~.InstrumentContext.distribute` limits its source to a single well, while :py:meth:`~.InstrumentContext.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.. list-table::\n :header-rows: 1\n\n * - Method\n - Accepted wells\n * - ``transfer()``\n - \n - **Source:** Any number of wells.\n - **Destination:** Any number of wells.\n - The larger group of wells must be evenly divisible by the smaller group.\n * - ``distribute()``\n - \n - **Source:** Exactly one well.\n - **Destination:** Any number of wells.\n * - ``consolidate()``\n - \n - **Source:** Any number of wells.\n - **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 :ref:`many-to-many transfers ` below covers how ``transfer()`` works when specifying sources and destinations of different sizes. However, if they don't 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 :ref:`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.", + "start_char_idx": 1440, + "end_char_idx": 3613, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0655b0e4-6783-4fd6-a9a8-d6eee5b45921": { + "__data__": { + "id_": "0655b0e4-6783-4fd6-a9a8-d6eee5b45921", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d8e72d3131f8740f2ae22e27fb78b9da8390cd46e26d546f1cd31c470f382471", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef", + "node_type": "1", + "metadata": {}, + "hash": "2bef9b6367a21f78a45a50f0a09846b984f0a7e3956454d53f6070bc9524ec4e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- **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 :ref:`many-to-many transfers ` below covers how ``transfer()`` works when specifying sources and destinations of different sizes. However, if they don't 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 :ref:`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 pipette.distribute(\n volume=100,\n source=[plate[\"A1\"], plate[\"A2\"]], # A2 ignored\n dest=plate.columns()[1],\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.\n\n.. _complex-transfer-patterns:\n\nTransfer Patterns\n=================\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.\n\nAspirating and Dispensing\n-------------------------\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.", + "start_char_idx": 2788, + "end_char_idx": 4756, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef": { + "__data__": { + "id_": "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0655b0e4-6783-4fd6-a9a8-d6eee5b45921", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "012b8d99f5aa6d10810819f3c43359c4bab33a74c500085a294d23b5f5dfee43", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180", + "node_type": "1", + "metadata": {}, + "hash": "16d652368f66e1819e5ca07140583d0a8eca7d2507508e8d7cf7ad21ef3c6de4", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The next section examines the exact order of aspiration and dispensing for all three methods.\n\n.. _complex-transfer-patterns:\n\nTransfer Patterns\n=================\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.\n\nAspirating and Dispensing\n-------------------------\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 \n.. figure:: ../../img/complex_commands/transfer.png\n :name: Transfer\n :scale: 35%\n :align: center\n \n This 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 :ref:`complex-tip-refilling` below for cases where the total amount to be dispensed is greater than the capacity of the tip.\n \n.. figure:: ../../img/complex_commands/robot_distribute.png\n :name: Transfer\n :scale: 35%\n :align: center\n \n This 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.", + "start_char_idx": 3923, + "end_char_idx": 5953, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180": { + "__data__": { + "id_": "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d038f59150a56ad2b931cc76bd236bf7b1bc7c658baccdf64708220205520fcb", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "db03df28-87cf-49a7-8db2-91abd8f871eb", + "node_type": "1", + "metadata": {}, + "hash": "45ccb9dff028364797346d5729b4f6cd7c86613a2a1f4051e0a74dfccd1bf36c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 :ref:`complex-tip-refilling` below for cases where the total amount to be dispensed is greater than the capacity of the tip.\n \n.. figure:: ../../img/complex_commands/robot_distribute.png\n :name: Transfer\n :scale: 35%\n :align: center\n \n This 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 :ref:`complex-tip-refilling` below for cases where the total amount to be aspirated is greater than the capacity of the tip.\n\n.. figure:: ../../img/complex_commands/robot_consolidate.png\n :name: Transfer\n :scale: 35%\n :align: center\n \n This consolidate aspirates three times and dispenses one time.\n \n.. note::\n By default, all three commands begin by picking up a tip and conclude by dropping a tip. In general, don't call :py:meth:`.pick_up_tip` just before a complex command, or the API will raise an error. You can override this behavior with the :ref:`tip handling complex parameter `, by setting ``new_tip=\"never\"``.\n\n\n.. _many-to-many:\n\nMany-to-Many\n------------\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.", + "start_char_idx": 5184, + "end_char_idx": 7067, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "db03df28-87cf-49a7-8db2-91abd8f871eb": { + "__data__": { + "id_": "db03df28-87cf-49a7-8db2-91abd8f871eb", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f6a1849581565aeb966b3f3f76eaffcde00a0122a9b70158fddce03b2401448d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a", + "node_type": "1", + "metadata": {}, + "hash": "472a0a4e1cb4b1f7c0796b7005699516886add734f2e205226bb855966b1f14b", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. note::\n By default, all three commands begin by picking up a tip and conclude by dropping a tip. In general, don't call :py:meth:`.pick_up_tip` just before a complex command, or the API will raise an error. You can override this behavior with the :ref:`tip handling complex parameter `, by setting ``new_tip=\"never\"``.\n\n\n.. _many-to-many:\n\nMany-to-Many\n------------\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 pipette.transfer(\n volume=50,\n source=plate.rows()[0],\n dest=plate.rows()[1],\n )\n\n.. list-table::\n :stub-columns: 1\n\n * - Source\n - A1\n - A2\n - A3\n - A4\n - A5\n - A6\n - A7\n - A8\n - A9\n - A10\n - A11\n - A12\n * - Destination\n - B1\n - B2\n - B3\n - B4\n - B5\n - B6\n - B7\n - B8\n - B9\n - B10\n - B11\n - B12\n\nThere's no requirement that the source and destination lists be mutually exclusive.", + "start_char_idx": 6350, + "end_char_idx": 7907, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a": { + "__data__": { + "id_": "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "db03df28-87cf-49a7-8db2-91abd8f871eb", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "7cf5618ebe26201238390680fc610be62cc062f3c255f38cd5d8a45b84e269b2", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e3dc24c2-7188-4e06-8c16-95b620d60c9c", + "node_type": "1", + "metadata": {}, + "hash": "4f32bea5b7e4286d900edc0cebbb6be9f9977c3362eddb687e9c1f055528892c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "In fact, this command adapted from the :ref:`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 row = plate.rows()[0]\n pipette.transfer(\n volume=50, \n source=row[:11], \n dest=row[1:],\n )\n\n.. list-table::\n :stub-columns: 1\n\n * - Source\n - A1\n - A2\n - A3\n - A4\n - A5\n - A6\n - A7\n - A8\n - A9\n - A10\n - A11\n * - Destination\n - A2\n - A3\n - A4\n - A5\n - A6\n - A7\n - A8\n - A9\n - A10\n - A11\n - 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 \"stretched\" to cover the length of the longer list.", + "start_char_idx": 7908, + "end_char_idx": 8846, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e3dc24c2-7188-4e06-8c16-95b620d60c9c": { + "__data__": { + "id_": "e3dc24c2-7188-4e06-8c16-95b620d60c9c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9ebfe518702be9744d609642a60f350c0225b404d36eff4507fa4d07e10948be", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1", + "node_type": "1", + "metadata": {}, + "hash": "0d62119af3f5da25500b1885bbf089bab906ca656ee22caec1ef005c34a0a882", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The shorter list will be \"stretched\" 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 pipette.transfer(\n volume=50,\n source=[plate[\"A1\"], plate[\"A2\"], plate[\"A3\"]],\n dest=plate.rows()[1],\n )\n\n.. list-table::\n :stub-columns: 1\n\n * - Source\n - A1\n - A1\n - A1\n - A1\n - A2\n - A2\n - A2\n - A2\n - A3\n - A3\n - A3\n - A3\n * - Destination\n - B1\n - B2\n - B3\n - B4\n - B5\n - B6\n - B7\n - B8\n - B9\n - B10\n - B11\n - 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 pipette.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 \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 pipette.transfer(50, plate[\"A1\"], plate.columns()[3][:3])\n pipette.transfer(50, plate[\"A2\"], plate.columns()[3][3:6])\n pipette.transfer(50, plate[\"A3\"], plate.columns()[3][6:])\n \nFinally, be aware of the ordering of source and destination lists when constructing them with :ref:`well accessor methods `.", + "start_char_idx": 8770, + "end_char_idx": 10440, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1": { + "__data__": { + "id_": "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e3dc24c2-7188-4e06-8c16-95b620d60c9c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "140c9542600307e8cc157f3e4c0a34252e78db97ebc257af45ae5ad7945dfe39", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c7cc85c8-d045-4646-a3cf-ecb33f0e261b", + "node_type": "1", + "metadata": {}, + "hash": "60a9fc0bb5a14e8bcbc25fe6336545811f258a1a99a4be981355b1c34291b903", + "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 pipette.transfer(50, plate[\"A1\"], plate.columns()[3][:3])\n pipette.transfer(50, plate[\"A2\"], plate.columns()[3][3:6])\n pipette.transfer(50, plate[\"A3\"], plate.columns()[3][6:])\n \nFinally, be aware of the ordering of source and destination lists when constructing them with :ref:`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 pipette.transfer(\n volume=20,\n source=plate.rows()[0],\n dest=plate.rows()[1:],\n )\n \nHowever, because the well ordering of :py:meth:`.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 for i in range(12): \n pipette.transfer(\n volume=20,\n source=plate.rows()[0][i],\n dest=plate.columns()[i][1:],\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.\n\n.. _complex-optimizing-patterns:\n\nOptimizing Patterns\n-------------------\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 uL in each well of the first row of a plate. You could use ``transfer()``, like this::\n\n pipette.transfer(\n volume=50,\n source=reservoir[\"A1\"],\n destination=plate.rows()[0],\n )\n \nThis will produce 12 aspirate steps and 12 dispense steps.", + "start_char_idx": 9960, + "end_char_idx": 11882, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c7cc85c8-d045-4646-a3cf-ecb33f0e261b": { + "__data__": { + "id_": "c7cc85c8-d045-4646-a3cf-ecb33f0e261b", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "faed24a6-41f4-4f3b-8fd8-b4944af402ee", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0ecd6e23107ae28322079325c4ef5f4f32dc29bb304f0e36562b22a62f4f660", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "3d8b6bd2d0dd629f5358661eafb5e764b657685209a0a6d562b900e20f20aa97", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "31bffcaa-ca8d-4ffe-890b-a31409513851", + "node_type": "1", + "metadata": {}, + "hash": "b1bf523f538736ad28a0297c5e6082131f8264e81594bbeebf8881a9949b3da2", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- The corresponding column, which is sliced to form the destination.\n\n.. _complex-optimizing-patterns:\n\nOptimizing Patterns\n-------------------\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 uL in each well of the first row of a plate. You could use ``transfer()``, like this::\n\n pipette.transfer(\n volume=50,\n source=reservoir[\"A1\"],\n destination=plate.rows()[0],\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 pipette.distribute(\n volume=50,\n source=reservoir[\"A1\"],\n destination=plate.rows()[0],\n )\n \nThis will produce *just 1* aspirate step and 12 dispense steps (when using a 1000 uL 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're 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 :ref:`complex-tip-refilling` for more information).", + "start_char_idx": 11302, + "end_char_idx": 12772, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "31bffcaa-ca8d-4ffe-890b-a31409513851": { + "__data__": { + "id_": "31bffcaa-ca8d-4ffe-890b-a31409513851", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "a21d14a12154e631235e36ffb552bf582b27e67242bee401aca73f53fe678e1d", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c7cc85c8-d045-4646-a3cf-ecb33f0e261b", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "90fdc75c5c53b58f355dc170e9a416605ecd3bed313ee178b05a145e20d08ad8", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "08459d71-4c98-469d-a923-2c7913612f4a", + "node_type": "1", + "metadata": {}, + "hash": "4fd58d4f406558542fc5642fea63530d95eb118f18ec2b9240a5d7a42f7b7e0f", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to specify deck slots in the Python Protocol API.\n\n..\n Allow concise cross-referencing to ProtocolContext.load_labware() et. al., without barfing out the whole import path.\n.. py:currentmodule:: opentrons.protocol_api\n\n\n.. _deck-slots:\n\n**********\nDeck Slots\n**********\n\nWhen you load an item onto the robot's deck, like with :py:obj:`ProtocolContext.load_labware()` or :py:obj:`ProtocolContext.load_module()`, you need to specify which slot to put it in. The API accepts values that correspond to the physical deck slot labels on an OT-2 or Flex robot.\n\nPhysical Deck Labels\n====================\n\nThe Opentrons Flex uses a coordinate labeling system for slots A1 (back left) through D3 (front right).\n\nThe Opentrons OT-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.\n\n.. image:: ../img/Flex-and-OT-2-decks.svg\n :width: 100%", + "start_char_idx": 0, + "end_char_idx": 938, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "08459d71-4c98-469d-a923-2c7913612f4a": { + "__data__": { + "id_": "08459d71-4c98-469d-a923-2c7913612f4a", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "61435d27-a0f0-491e-b0ae-21c5a06674fe", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "a21d14a12154e631235e36ffb552bf582b27e67242bee401aca73f53fe678e1d", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "31bffcaa-ca8d-4ffe-890b-a31409513851", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "e3303ef960deb79a60df0969f4389d0fbdffb1b1542fde34b11e87716e663c56", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2260fb63-9f1d-43ec-b992-7857a3a39610", + "node_type": "1", + "metadata": {}, + "hash": "8fd873624b3295768d4c375e7ac46d1866efa4b8a9f83746793f652b55a6c8e8", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _deck-slots:\n\n**********\nDeck Slots\n**********\n\nWhen you load an item onto the robot's deck, like with :py:obj:`ProtocolContext.load_labware()` or :py:obj:`ProtocolContext.load_module()`, you need to specify which slot to put it in. The API accepts values that correspond to the physical deck slot labels on an OT-2 or Flex robot.\n\nPhysical Deck Labels\n====================\n\nThe Opentrons Flex uses a coordinate labeling system for slots A1 (back left) through D3 (front right).\n\nThe Opentrons OT-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.\n\n.. image:: ../img/Flex-and-OT-2-decks.svg\n :width: 100%\n\n\nAPI Deck Labels\n===============\n\nSpecify a slot in either the Flex or OT-2 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.. code-block:: python\n\n protocol.load_labware(\"nest_96_wellplate_200ul_flat\", \"A1\")\n \n.. versionadded:: 2.15\n\n.. code-block:: python\n\n protocol.load_labware(\"nest_96_wellplate_200ul_flat\", 10)\n \n..\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.. list-table::\n :stub-columns: 1\n\n * - Flex\n - A1\n - A2\n - A3\n - B1\n - B2\n - B3\n - C1\n - C2\n - C3\n - D1\n - D2\n - D3\n * - OT-2\n - 10\n - 11\n - Trash\n - 7\n - 8\n - 9\n - 4\n - 5\n - 6\n - 1\n - 2\n - 3\n\n.. TODO staging slots and error handling of A4\u2013D4 in OT-2 protocols", + "start_char_idx": 244, + "end_char_idx": 2313, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2260fb63-9f1d-43ec-b992-7857a3a39610": { + "__data__": { + "id_": "2260fb63-9f1d-43ec-b992-7857a3a39610", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "08459d71-4c98-469d-a923-2c7913612f4a", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "dcd7af26a7cc68cd4de1418f5d1bca293e81751fd81fa12fe345d32b675ef60f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2537259a-f63b-444c-82c0-039bc9586ed9", + "node_type": "1", + "metadata": {}, + "hash": "ed3fc68962afc2cdd8050b32aceb29236e5d55c216974a2e56bad87d0421c61c", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: The Opentrons Python Protocol API is a Python framework that makes it easy to write automated biology lab protocols that use Opentrons robots and hardware modules.\n\n=======\nWelcome\n=======\n\n.. toctree::\n\n self\n tutorial\n versioning\n new_labware\n moving_labware\n new_modules\n deck_slots\n new_pipette\n new_atomic_commands\n new_complex_commands\n robot_position\n new_advanced_running\n new_examples\n adapting_ot2_flex\n new_protocol_api\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've 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'll 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.\n\n\nGetting Started\n---------------\n\n**New to Python protocols?** Check out the :ref:`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 :ref:`new-examples` and the comprehensive :ref:`protocol-api-reference`.\n\nWhen you're ready to **try out a protocol**, download the `Opentrons App `_, import the protocol file, and run it on your robot.\n\n\n.. _overview-section-v2:\n\nHow the API Works\n-----------------\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.", + "start_char_idx": 0, + "end_char_idx": 2141, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2537259a-f63b-444c-82c0-039bc9586ed9": { + "__data__": { + "id_": "2537259a-f63b-444c-82c0-039bc9586ed9", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2260fb63-9f1d-43ec-b992-7857a3a39610", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "4931cd11eb4be60478c7c0db9fa372c2907c0085d52736e960824da98f3de2a6", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8fa8b23f-b3fe-4699-bf32-79fa856199af", + "node_type": "1", + "metadata": {}, + "hash": "4957a81263323c1dcc7d8a19028f860177c7a92ebf2e9b587b9fcac2c3e66f86", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Getting Started\n---------------\n\n**New to Python protocols?** Check out the :ref:`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 :ref:`new-examples` and the comprehensive :ref:`protocol-api-reference`.\n\nWhen you're ready to **try out a protocol**, download the `Opentrons App `_, import the protocol file, and run it on your robot.\n\n\n.. _overview-section-v2:\n\nHow the API Works\n-----------------\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.", + "start_char_idx": 1334, + "end_char_idx": 2284, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8fa8b23f-b3fe-4699-bf32-79fa856199af": { + "__data__": { + "id_": "8fa8b23f-b3fe-4699-bf32-79fa856199af", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2537259a-f63b-444c-82c0-039bc9586ed9", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "348e6ca74a7eacdf6ccdf301e0c0e119c36508e4dba04139e75ed9fa3b12cea3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ddf7e5b0-98af-4830-9f58-1e4dbc326df8", + "node_type": "1", + "metadata": {}, + "hash": "1a3e3599dda654e4dda851f96426f18fae3156949d76cbf2c85653dbc9de0454", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _overview-section-v2:\n\nHow the API Works\n-----------------\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:\n\t\n.. tabs::\n \n .. tab:: Flex\n \n .. code-block:: python\n :substitutions:\n \n from opentrons import protocol_api\n \n # metadata\n metadata = {\n \"protocolName\": \"My Protocol\",\n \"author\": \"Name \",\n \"description\": \"Simple protocol to get started using the Flex\",\n }\n \n # requirements\n requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"|apiLevel|\"}\n \n # protocol run function\n def 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 \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 This example proceeds completely linearly. Following it line-by-line, you can see that it has the following effects:\n\n 1. Gives the name, contact information, and a brief description for the protocol. \n 2. Indicates the protocol should run on a Flex robot, using API version |apiLevel|.\n 3.", + "start_char_idx": 1824, + "end_char_idx": 4091, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ddf7e5b0-98af-4830-9f58-1e4dbc326df8": { + "__data__": { + "id_": "ddf7e5b0-98af-4830-9f58-1e4dbc326df8", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8fa8b23f-b3fe-4699-bf32-79fa856199af", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "5ca27499b181533a821c31f11379c2d06678266b177a5bc7db3a9804f53e6dfd", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6672c195-0f1d-407e-9fea-615b357ef033", + "node_type": "1", + "metadata": {}, + "hash": "08546407bc42acb28e561e92f58da348d6fa2d5e755f9509be02af996fa2fe33", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Following it line-by-line, you can see that it has the following effects:\n\n 1. Gives the name, contact information, and a brief description for the protocol. \n 2. Indicates the protocol should run on a Flex robot, using API version |apiLevel|.\n 3. Tells the robot that there is:\n a. A 96-well flat plate in slot D1.\n b. A rack of 300 uL tips in slot D2.\n c. A 1-channel 1000 uL pipette attached to the left mount, which should pick up tips from the aforementioned rack.\n 4. Tells the robot to act by:\n a. Picking up the first tip from the tip rack.\n b. Aspirating 100 uL of liquid from well A1 of the plate.\n c. Dispensing 100 uL of liquid into well B1 of the plate.\n d. Dropping the tip in the trash.\n\n\n .. tab:: OT-2\n\n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n # metadata\n metadata = {\n \"protocolName\": \"My Protocol\",\n \"author\": \"Name \",\n \"description\": \"Simple protocol to get started using the OT-2\",\n }\n\n # requirements\n requirements = {\"robotType\": \"OT-2\", \"apiLevel\": \"2.14\"}\n\n # protocol run function\n def 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 This example proceeds completely linearly.", + "start_char_idx": 3823, + "end_char_idx": 5936, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6672c195-0f1d-407e-9fea-615b357ef033": { + "__data__": { + "id_": "6672c195-0f1d-407e-9fea-615b357ef033", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ddf7e5b0-98af-4830-9f58-1e4dbc326df8", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "35f61ff214ff2991ae5cd2af42a45222cc412c522adf58f8ce8db99222d7bed5", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c7bf92fe-774f-43ce-a757-092e1c88e11d", + "node_type": "1", + "metadata": {}, + "hash": "e17cd57b1be8d3bf5252f35a8f928f268019a953ffecf048dce69239b737e889", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Following it line-by-line, you can see that it has the following effects:\n\n 1. Gives the name, contact information, and a brief description for the protocol.\n 2. Indicates the protocol should run on an OT-2 robot, using API version 2.14.\n 3. Tells the robot that there is:\n a. A 96-well flat plate in slot 1.\n b. A rack of 300 uL tips in slot 2.\n c. A single-channel 300 uL pipette attached to the left mount, which should pick up tips from the aforementioned rack.\n 4. Tells the robot to act by:\n a. Picking up the first tip from the tip rack.\n b. Aspirating 100 uL of liquid from well A1 of the plate.\n c. Dispensing 100 uL of liquid into well B1 of the plate.\n d. Dropping the tip in the trash.\n\n\t\nThere is much more that Opentrons robots and the API can do! The :ref:`v2-atomic-commands`, :ref:`v2-complex-commands`, and :ref:`new_modules` pages cover many of these functions.", + "start_char_idx": 5937, + "end_char_idx": 6922, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c7bf92fe-774f-43ce-a757-092e1c88e11d": { + "__data__": { + "id_": "c7bf92fe-774f-43ce-a757-092e1c88e11d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6672c195-0f1d-407e-9fea-615b357ef033", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "083f85388d21f1b43f69ecfcb48e88cd9dc8af1780c7028139f9641e9e1adfc0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "39e9e7d7-6ecc-4065-a99d-b93be3d88231", + "node_type": "1", + "metadata": {}, + "hash": "24af259ccf3420e7688c70514896708f0fb7bb78c01443457394caf20c88282a", + "class_name": "RelatedNodeInfo" + } + }, + "text": "3. Tells the robot that there is:\n a. A 96-well flat plate in slot 1.\n b. A rack of 300 uL tips in slot 2.\n c. A single-channel 300 uL pipette attached to the left mount, which should pick up tips from the aforementioned rack.\n 4. Tells the robot to act by:\n a. Picking up the first tip from the tip rack.\n b. Aspirating 100 uL of liquid from well A1 of the plate.\n c. Dispensing 100 uL of liquid into well B1 of the plate.\n d. Dropping the tip in the trash.\n\n\t\nThere is much more that Opentrons robots and the API can do! The :ref:`v2-atomic-commands`, :ref:`v2-complex-commands`, and :ref:`new_modules` pages cover many of these functions.\n\n\nMore Resources\n--------------\n\nOpentrons App\n+++++++++++++\n\nThe `Opentrons App `_ is the easiest way to run your Python protocols. The app `supports `_ the latest versions of macOS, Windows, and Ubuntu.\n\nSupport\n+++++++\n\nQuestions about setting up your robot, using Opentrons software, or troubleshooting? Check out our `support articles `_ or `get in touch directly `_ with Opentrons Support.\n\nCustom Protocol Service\n+++++++++++++++++++++++\n\nDon't have the time or resources to write your own protocols? The `Opentrons Custom Protocols `_ service can get you set up in as little as a week. \n\nContributing\n++++++++++++\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\n__ https://github.com/Opentrons/opentrons/blob/edge/CONTRIBUTING.md#opening-issues", + "start_char_idx": 6197, + "end_char_idx": 8161, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "39e9e7d7-6ecc-4065-a99d-b93be3d88231": { + "__data__": { + "id_": "39e9e7d7-6ecc-4065-a99d-b93be3d88231", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "14b4ef16b0fe6f417e6bacdfed882f0edbe7617ef4493163bb183e78a0b799a0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c7bf92fe-774f-43ce-a757-092e1c88e11d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "94c7f2216843f59261b6e5ae7c60a69aceaa389cc3763f63b9af349cce0861ce", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9da0aea8-af9c-49a1-97e3-517097b0d6c1", + "node_type": "1", + "metadata": {}, + "hash": "17155eb1bf11f39590bbe104ea16e24da093a0fddb5c4218ad25d1e8cd4ee812", + "class_name": "RelatedNodeInfo" + } + }, + "text": "That guide also includes more information on how to `directly contribute code`__.\n\n__ https://github.com/Opentrons/opentrons/blob/edge/CONTRIBUTING.md", + "start_char_idx": 8164, + "end_char_idx": 8314, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9da0aea8-af9c-49a1-97e3-517097b0d6c1": { + "__data__": { + "id_": "9da0aea8-af9c-49a1-97e3-517097b0d6c1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "39e9e7d7-6ecc-4065-a99d-b93be3d88231", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f0a332fdb2e97bda718908d27859eceffaa142b408edd73b72b7c5944313a561", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b81ce6cf-58a1-46bd-95ef-7de922157172", + "node_type": "1", + "metadata": {}, + "hash": "d96de235486943f6de494adcd2ec917c773c4f02b2eab105f3c2bbdde22e364e", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to use the Heater-Shaker Module in a Python protocol, and where it can be safely placed on the deck.\n\n.. _heater-shaker-module:\n\n********************\nHeater-Shaker Module\n********************\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 :py:class:`.HeaterShakerContext` object. For example::\n\n def run(protocol: protocol_api.ProtocolContext):\n hs_mod = protocol.load_module(\n module_name='heaterShakerModuleV1',\n location=\"D1\")\n\n.. versionadded:: 2.13\n\nDeck Slots\n==========\n\nThe supported deck slot positions for the Heater-Shaker depend on the robot you\u2019re using. \n\n.. list-table::\n :widths: 30 80\n :header-rows: 1\n\n * - Robot Model\n - Heater-Shaker Deck Placement\n * - Flex\n - 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\n - In deck slot 1, 3, 4, 6, 7, or 10.\n \nOT-2 Placement Restrictions\n===========================\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't apply.\n\nIn general, it's 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.\n\nAdjacent Modules\n----------------\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``.\n\nTall Labware\n------------\n\nDo not place labware taller than 53 mm to the left or right of the Heater-Shaker.", + "start_char_idx": 0, + "end_char_idx": 1976, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b81ce6cf-58a1-46bd-95ef-7de922157172": { + "__data__": { + "id_": "b81ce6cf-58a1-46bd-95ef-7de922157172", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9da0aea8-af9c-49a1-97e3-517097b0d6c1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ea5a91d8c5fcf9f00e2770a9a0d6d133a80aeb275493b96e866ce8fb11f48cf3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "739e7a32-21db-4a05-9e76-acd0271cc3d4", + "node_type": "1", + "metadata": {}, + "hash": "551e51444914f6aa682af96b8d4bc4aafac238bc006467541365237adfe7c3aa", + "class_name": "RelatedNodeInfo" + } + }, + "text": "OT-2 Placement Restrictions\n===========================\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't apply.\n\nIn general, it's 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.\n\nAdjacent Modules\n----------------\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``.\n\nTall Labware\n------------\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 uL tip racks. Loading tall labware to the right or left of the Heater-Shaker on OT-2 will raise a ``DeckConflictError``.\n\n8-Channel Pipettes\n------------------\n\nYou can't perform pipetting actions in `any` slots adjacent to the Heater-Shaker if you're 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``.\n\nLatch Control\n=============\n\nTo add and remove labware from the Heater-Shaker, control the module's labware latch from your protocol using :py:meth:`.open_labware_latch` and :py:meth:`.close_labware_latch`.", + "start_char_idx": 1076, + "end_char_idx": 3058, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "739e7a32-21db-4a05-9e76-acd0271cc3d4": { + "__data__": { + "id_": "739e7a32-21db-4a05-9e76-acd0271cc3d4", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b81ce6cf-58a1-46bd-95ef-7de922157172", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "534e10e5747a916d7db41a8728ffc577aabccf4325846c6457e7c028284d05b2", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b35d6054-3c4a-4bc5-acad-48d3e2306141", + "node_type": "1", + "metadata": {}, + "hash": "dc0c9dc2479aea0700473d65095f91fce6fdc6e4f6e1d963b1bfeae2f4d4b68a", + "class_name": "RelatedNodeInfo" + } + }, + "text": "8-Channel Pipettes\n------------------\n\nYou can't perform pipetting actions in `any` slots adjacent to the Heater-Shaker if you're 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``.\n\nLatch Control\n=============\n\nTo add and remove labware from the Heater-Shaker, control the module's labware latch from your protocol using :py:meth:`.open_labware_latch` and :py:meth:`.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.. code-block:: python\n\n hs_mod.close_labware_latch()\n hs_mod.set_and_wait_for_shake_speed(500)\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.\n\nLoading Labware\n===============\n\nLike with all modules, use the Heater-Shaker\u2019s :py:meth:`~.HeaterShakerContext.load_labware` method to specify what you will place on the module. For the Heater-Shaker, you must use a definition that describes the combination of a thermal adapter and labware that fits it. See the :ref:`load-labware-module` section for an example of how to place labware on a module.\n\nCurrently, the `Opentrons Labware Library `_ includes several pre-configured adapter\u2013labware combinations and standalone adapter definitions that help make the Heater-Shaker ready to use right out of the box.", + "start_char_idx": 2273, + "end_char_idx": 4258, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b35d6054-3c4a-4bc5-acad-48d3e2306141": { + "__data__": { + "id_": "b35d6054-3c4a-4bc5-acad-48d3e2306141", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "739e7a32-21db-4a05-9e76-acd0271cc3d4", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c33e0fd2f47b13d21895d62a24f5fe6d25711a25c03f8e484da3446f806e71e6", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "09153e46-075d-438f-91f2-2e7537d2f550", + "node_type": "1", + "metadata": {}, + "hash": "8608e4ef059377e1268b4902cf6deb091557e3dd36e8a57b5e8e0f4a85a74306", + "class_name": "RelatedNodeInfo" + } + }, + "text": "To prepare the deck before running a protocol, use the labware latch controls in the Opentrons App or run these methods in Jupyter notebook.\n\nLoading Labware\n===============\n\nLike with all modules, use the Heater-Shaker\u2019s :py:meth:`~.HeaterShakerContext.load_labware` method to specify what you will place on the module. For the Heater-Shaker, you must use a definition that describes the combination of a thermal adapter and labware that fits it. See the :ref:`load-labware-module` section for an example of how to place labware on a module.\n\nCurrently, the `Opentrons Labware Library `_ includes several pre-configured adapter\u2013labware combinations and standalone adapter definitions that help make the Heater-Shaker ready to use right out of the box. See :ref:`labware-on-adapters` for examples of loading labware on modules.\n\nPre-configured Combinations\n---------------------------\n\nThe Heater-Shaker supports these thermal adapter and labware combinations by default. These let you load the adapter and labware with a single definition.", + "start_char_idx": 3473, + "end_char_idx": 4546, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "09153e46-075d-438f-91f2-2e7537d2f550": { + "__data__": { + "id_": "09153e46-075d-438f-91f2-2e7537d2f550", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b35d6054-3c4a-4bc5-acad-48d3e2306141", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b8f1803d136a5c6488b1221af68aaac4950db8f0f947ea648175e1d3eea14607", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f9ca7807-3a62-4021-8141-7967ea91bd1c", + "node_type": "1", + "metadata": {}, + "hash": "d6b9a134d7bb466cd1bb19130b8aa57761d5f05bf131f356aa26a5d90902729e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "For the Heater-Shaker, you must use a definition that describes the combination of a thermal adapter and labware that fits it. See the :ref:`load-labware-module` section for an example of how to place labware on a module.\n\nCurrently, the `Opentrons Labware Library `_ includes several pre-configured adapter\u2013labware combinations and standalone adapter definitions that help make the Heater-Shaker ready to use right out of the box. See :ref:`labware-on-adapters` for examples of loading labware on modules.\n\nPre-configured Combinations\n---------------------------\n\nThe Heater-Shaker supports these thermal adapter and labware combinations by default. These let you load the adapter and labware with a single definition.\n\n.. list-table::\n :header-rows: 1\n\n * - Adapter/Labware Combination\n - API Load Name\n * - Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL\n - ``opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep``\n * - Opentrons 96 Flat Bottom Adapter with NEST 96 Well Plate 200 uL Flat\n - ``opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat``\n * - Opentrons 96 PCR Adapter with Armadillo Well Plate 200 uL\n - ``opentrons_96_pcr_adapter_armadillo_wellplate_200ul``\n * - Opentrons 96 PCR Adapter with NEST Well Plate 100 uL\n - ``opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt``\n * - Opentrons Universal Flat Adapter with Corning 384 Well Plate 112 uL Flat\n - ``opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat``\n\nStandalone Well-Plate Adapters\n------------------------------\n\nYou can use these standalone adapter definitions to load Opentrons verified or custom labware on top of the Heater-Shaker.", + "start_char_idx": 3794, + "end_char_idx": 5523, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f9ca7807-3a62-4021-8141-7967ea91bd1c": { + "__data__": { + "id_": "f9ca7807-3a62-4021-8141-7967ea91bd1c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "09153e46-075d-438f-91f2-2e7537d2f550", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "a9285c5472399cd120e6fdab023aa9dded6f31be7c04d6c9b462f2891f50338d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1", + "node_type": "1", + "metadata": {}, + "hash": "abc224e7f0f143120187d527bc807e72d029228e24ae196d49b5e2143947bea7", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. list-table::\n :header-rows: 1\n\n * - Adapter Type\n - API Load Name\n * - Opentrons Universal Flat Adapter\n - ``opentrons_universal_flat_adapter``\n * - Opentrons 96 PCR Adapter\n - ``opentrons_96_pcr_adapter``\n * - Opentrons 96 Deep Well Adapter\n - ``opentrons_96_deep_well_adapter``\n * - Opentrons 96 Flat Bottom Adapter\n - ``opentrons_96_flat_bottom_adapter``\n\nCustom Flat-Bottom Labware\n--------------------------\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.\n\nHeating and Shaking\n===================\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\n.. note::\n\n\tSince API version 2.13, only the Heater-Shaker Module supports non-blocking command execution. All other modules' methods are blocking commands.\n\nBlocking commands\n-----------------\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 hs_mod.set_and_wait_for_shake_speed(500)\n protocol.delay(minutes=1)\n hs_mod.deactivate_shaker()\n\nThese actions will take about 65 seconds total.", + "start_char_idx": 5525, + "end_char_idx": 7542, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1": { + "__data__": { + "id_": "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f9ca7807-3a62-4021-8141-7967ea91bd1c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "2b9341ed9a83bab3d47a40af089a8b391126cddec68497740f134583b8504b1b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0843f367-b0f1-49e1-a25e-38e3df5f4da9", + "node_type": "1", + "metadata": {}, + "hash": "bed5ece7c22aa043aa79640be045393b99657d9ef94aca62da880135583496cf", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Heating 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\n.. note::\n\n\tSince API version 2.13, only the Heater-Shaker Module supports non-blocking command execution. All other modules' methods are blocking commands.\n\nBlocking commands\n-----------------\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 hs_mod.set_and_wait_for_shake_speed(500)\n protocol.delay(minutes=1)\n hs_mod.deactivate_shaker()\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.. code-block:: python\n\n hs_mod.set_and_wait_for_temperature(75)\n protocol.delay(minutes=1)\n hs_mod.deactivate_heater()\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. \n\nNon-blocking commands\n---------------------\n\nTo pipette while the Heater-Shaker is heating, use :py:meth:`~.HeaterShakerContext.set_target_temperature` and :py:meth:`~.HeaterShakerContext.wait_for_temperature` instead of :py:meth:`~.HeaterShakerContext.set_and_wait_for_temperature`:\n\n.. code-block:: python\n\n hs_mod.set_target_temperature(75)\n pipette.pick_up_tip() \n pipette.aspirate(50, plate['A1'])\n pipette.dispense(50, plate['B1'])\n pipette.drop_tip()\n hs_mod.wait_for_temperature()\n protocol.delay(minutes=1)\n hs_mod.deactivate_heater()\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.", + "start_char_idx": 6616, + "end_char_idx": 8693, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0843f367-b0f1-49e1-a25e-38e3df5f4da9": { + "__data__": { + "id_": "0843f367-b0f1-49e1-a25e-38e3df5f4da9", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "a7c4d3c2fb1a3773c7aebebddbf6dfb6dc504879519a42d4035f09c1f71e6181", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "45b5b822-819a-4a0b-a28a-fa937e4aba70", + "node_type": "1", + "metadata": {}, + "hash": "72813627dc1749ce85904c62890fbe6f1ef67ea415f5b89470900cef9d305632", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Non-blocking commands\n---------------------\n\nTo pipette while the Heater-Shaker is heating, use :py:meth:`~.HeaterShakerContext.set_target_temperature` and :py:meth:`~.HeaterShakerContext.wait_for_temperature` instead of :py:meth:`~.HeaterShakerContext.set_and_wait_for_temperature`:\n\n.. code-block:: python\n\n hs_mod.set_target_temperature(75)\n pipette.pick_up_tip() \n pipette.aspirate(50, plate['A1'])\n pipette.dispense(50, plate['B1'])\n pipette.drop_tip()\n hs_mod.wait_for_temperature()\n protocol.delay(minutes=1)\n hs_mod.deactivate_heater()\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 :py:func:`time.monotonic` to set a reference time when the target is reached.", + "start_char_idx": 7936, + "end_char_idx": 9470, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "45b5b822-819a-4a0b-a28a-fa937e4aba70": { + "__data__": { + "id_": "45b5b822-819a-4a0b-a28a-fa937e4aba70", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0843f367-b0f1-49e1-a25e-38e3df5f4da9", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "37929136a75f6c4db5f7ab3870bd6320f6b5bfeece5499c2cbde8f6eabc9cd22", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c9440268-ea98-463c-80ca-52fbb14b37a3", + "node_type": "1", + "metadata": {}, + "hash": "6f380daa389932defc1e0e4621a6df19587dd8f8b65943b4e81c2056f4a7d5f9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 :py:func:`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.. code-block:: python\n\n hs_mod.set_and_wait_for_temperature(75)\n start_time = time.monotonic() # set reference time\n pipette.pick_up_tip() \n pipette.aspirate(50, plate['A1'])\n pipette.dispense(50, plate['B1'])\n pipette.drop_tip()\n # delay for the difference between now and 60 seconds after the reference time\n protocol.delay(max(0, start_time+60 - time.monotonic()))\n hs_mod.deactivate_heater()\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.\n\nDeactivating\n============\n\nDeactivating the heater and shaker are done separately using the :py:meth:`~.HeaterShakerContext.deactivate_heater` and :py:meth:`~.HeaterShakerContext.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\n.. note:: \n\n The robot will not automatically deactivate the Heater-Shaker at the end of a protocol.", + "start_char_idx": 8694, + "end_char_idx": 10752, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c9440268-ea98-463c-80ca-52fbb14b37a3": { + "__data__": { + "id_": "c9440268-ea98-463c-80ca-52fbb14b37a3", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2c67dda2-cebc-4bcb-90b0-a136cb824e1c", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "57be4b8a0e2c137bddef8aae14b875e6b0f3ce5a6dd95051002e08fee5783ea4", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "45b5b822-819a-4a0b-a28a-fa937e4aba70", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9f77332b02a5ffad288fa35b2637209096db370d49c7e465d84b0c9cb4f6fa06", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b1dfac79-06c5-401c-ac7f-81564dc6e7df", + "node_type": "1", + "metadata": {}, + "hash": "c2fe5a2243c7272c2c797d4932ecaafd2a7409c3ccd6d2f7835b18cc94d3fecf", + "class_name": "RelatedNodeInfo" + } + }, + "text": "If more than one minute has elapsed, the value passed to ``protocol.delay()`` will equal 0, and the protocol will continue immediately.\n\nDeactivating\n============\n\nDeactivating the heater and shaker are done separately using the :py:meth:`~.HeaterShakerContext.deactivate_heater` and :py:meth:`~.HeaterShakerContext.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\n.. note:: \n\n The 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.", + "start_char_idx": 10157, + "end_char_idx": 10959, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b1dfac79-06c5-401c-ac7f-81564dc6e7df": { + "__data__": { + "id_": "b1dfac79-06c5-401c-ac7f-81564dc6e7df", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_block.rst", + "file_name": "magnetic_block.rst", + "file_size": 1580, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "3e618721-6933-4289-8f44-2c3a522560f2", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_block.rst", + "file_name": "magnetic_block.rst", + "file_size": 1580, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "3dc7fc04432b070d7a16ce4ee9272e309977c3283260d1a0a448dddfb06a88c2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c9440268-ea98-463c-80ca-52fbb14b37a3", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "7b9df3789117e8c41ee1f259338f64416ad65e31c31eef27e535c50edca40f5b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "58503ed9-8447-469f-9d86-49495fbb0874", + "node_type": "1", + "metadata": {}, + "hash": "e2b7c576da5c929f3ef0619b4d802c251b6920d985144b570fbc2e5f913a8777", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to use the Magnetic Block with the Flex Gripper in a Python protocol.\n\n.. _magnetic-block:\n\n**************\nMagnetic Block\n**************\n\n.. note::\n The Magnetic Block is compatible with Opentrons Flex only. If you have an OT-2, use the :ref:`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 \"control\" it via protocols to load labware onto the module and use the Opentrons Flex Gripper to move labware on and off the module. See :ref:`moving-labware` for more information.\n\nThe Magnetic Block is represented by a :py:class:`~opentrons.protocol_api.MagneticBlockContext` object which lets you load labware on top of the module.\n\n.. code-block:: python\n\n def run(protocol: protocol_api.ProtocolContext):\n \n # Load the Magnetic Block in deck slot D1\n magnetic_block = protocol.load_module(\n module_name='magneticBlockV1',\n location='D1')\n \n # Load a 96-well plate on the magnetic block\n well_plate = magnetic_block.load_labware(\n name=\"biorad_96_wellplate_200ul_pcr\")\n\n # Use the Gripper to move labware\n protocol.move_labware(well_plate,\n new_location=\"B2\",\n use_gripper=True)\n\n.. versionadded:: 2.15", + "start_char_idx": 0, + "end_char_idx": 1579, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "58503ed9-8447-469f-9d86-49495fbb0874": { + "__data__": { + "id_": "58503ed9-8447-469f-9d86-49495fbb0874", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "01ff5c871e406c5e5ce3973281527479b3022e24eef9faaf1ce4a08c6613c240", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b1dfac79-06c5-401c-ac7f-81564dc6e7df", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_block.rst", + "file_name": "magnetic_block.rst", + "file_size": 1580, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "56fa961f0301ee9ad435ec3c0c88d6a4ab9b564cb16027567b900a93293afdee", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "4e45d12d-0e82-4d54-a423-82057b75c96c", + "node_type": "1", + "metadata": {}, + "hash": "4eb05e8c2d70c7339dd25e2e672f262810a1aadd42a16c9b0b0c1e9046aeec59", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to engage and disengage the Magnetic Module for the OT-2 in a Python protocol.\n\n.. _magnetic-module:\n\n***************\nMagnetic Module\n***************\n\n.. note::\n The Magnetic Module is compatible with the OT-2 only. If you have a Flex, use the :ref:`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 :py:class:`.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.. code-block:: python\n\n def 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.. versionadded:: 2.3\n\nLoading Labware\n===============\n\nLike with all modules, use the Magnetic Module\u2019s :py:meth:`~.MagneticModuleContext.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.", + "start_char_idx": 0, + "end_char_idx": 1404, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "4e45d12d-0e82-4d54-a423-82057b75c96c": { + "__data__": { + "id_": "4e45d12d-0e82-4d54-a423-82057b75c96c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "01ff5c871e406c5e5ce3973281527479b3022e24eef9faaf1ce4a08c6613c240", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "58503ed9-8447-469f-9d86-49495fbb0874", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d88358f75a9ab0e113bdfef4334cb6c6ae9b2d2c25c3c96873d9cad47d8b44f5", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "55101789-8dc2-429d-9a8b-d5623c1ba66d", + "node_type": "1", + "metadata": {}, + "hash": "7e1187db31a170b68e030ea26a979b7b66fe3c71aefc656ae120f853c8a02b6d", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The examples in this section apply to an OT-2 with a Magnetic Module GEN2 loaded in slot 6:\n\n.. code-block:: python\n\n def 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.. versionadded:: 2.3\n\nLoading Labware\n===============\n\nLike with all modules, use the Magnetic Module\u2019s :py:meth:`~.MagneticModuleContext.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.. list-table::\n :widths: 50 50\n :header-rows: 1\n\n * - Labware Name\n - API Load Name\n * - Bio-Rad 96 Well Plate 200 uL PCR\n - ``biorad_96_wellplate_200ul_pcr``\n * - NEST 96 Well Plate 100 uL PCR Full Skirt\n - ``nest_96_wellplate_100ul_pcr_full_skirt``\n * - NEST 96 Deep Well Plate 2mL\n - ``nest_96_wellplate_2ml_deep``\n * - Thermo Scientific Nunc 96 Well Plate 1300 uL\n - ``thermoscientificnunc_96_wellplate_1300ul``\n * - Thermo Scientific Nunc 96 Well Plate 2000 uL\n - ``thermoscientificnunc_96_wellplate_2000ul``\n * - USA Scientific 96 Deep Well Plate 2.4 mL\n - ``usascientific_96_wellplate_2.4ml_deep``\n\nTo check whether a custom labware definition specifies this measurement, load the labware and query its :py:attr:`~.Labware.magdeck_engage_height` property.", + "start_char_idx": 621, + "end_char_idx": 2331, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "55101789-8dc2-429d-9a8b-d5623c1ba66d": { + "__data__": { + "id_": "55101789-8dc2-429d-9a8b-d5623c1ba66d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "01ff5c871e406c5e5ce3973281527479b3022e24eef9faaf1ce4a08c6613c240", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "4e45d12d-0e82-4d54-a423-82057b75c96c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "0e1a13de613e3ace0b3db6789e2e9261e47abdaac15e0d8987159d17d06424d6", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c3a44332-4b51-4967-81e8-369507b503c8", + "node_type": "1", + "metadata": {}, + "hash": "13784f0ff9388d2a8fe12415ea56608197351ac6bc47413e0c81327a056f9819", + "class_name": "RelatedNodeInfo" + } + }, + "text": "If has a numerical value, the labware is ready for use with the Magnetic Module.\n\n.. _magnetic-module-engage:\n\nEngaging and Disengaging\n========================\n\nRaise and lower the module's magnets with the :py:meth:`~.MagneticModuleContext.engage` and :py:meth:`~.MagneticModuleContext.disengage` functions, respectively.\n\nIf your loaded labware is fully compatible with the Magnetic Module, you can call ``engage()`` with no argument:\n\n .. code-block:: python\n\n mag_mod.engage()\n\n ..\n\nThis will move the magnets upward to the default height for the labware, which should be close to the bottom of the labware's wells. If your loaded labware doesn't 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's 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\n.. note::\n There 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 .. code-block:: python\n\n mag_mod.engage(height_from_base=13.5) # 13.5 mm\n mag_mod.engage(offset=-2) # 15.5 mm\n\nNote that ``offset`` takes into account the fact that the magnets' home position is measured as \u22122.5 mm for GEN2 modules.\n\n ..\n .. versionchanged:: 2.2\n Added the ``height_from_base`` parameter.", + "start_char_idx": 2332, + "end_char_idx": 4411, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c3a44332-4b51-4967-81e8-369507b503c8": { + "__data__": { + "id_": "c3a44332-4b51-4967-81e8-369507b503c8", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "01ff5c871e406c5e5ce3973281527479b3022e24eef9faaf1ce4a08c6613c240", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "55101789-8dc2-429d-9a8b-d5623c1ba66d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "22760ae4295c2a4c002523bbfeee378f323875e705fd8100fc6988554dff33e8", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b5e6b215-0d07-4033-8507-9df9bdbf1159", + "node_type": "1", + "metadata": {}, + "hash": "5d847fd1559a30d898e6b7bdb598ddee96b1055007897248915fe5992ffbccb4", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Like using ``engage()`` with no argument, this will raise an error if there is no default height for the loaded labware.\n\n.. note::\n There 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 .. code-block:: python\n\n mag_mod.engage(height_from_base=13.5) # 13.5 mm\n mag_mod.engage(offset=-2) # 15.5 mm\n\nNote that ``offset`` takes into account the fact that the magnets' home position is measured as \u22122.5 mm for GEN2 modules.\n\n ..\n .. versionchanged:: 2.2\n Added the ``height_from_base`` parameter.\n\nWhen you need to retract the magnets back to their home position, call :py:meth:`~.MagneticModuleContext.disengage`. \n\n .. code-block:: python\n\n mag_mod.disengage() # -2.5 mm\n\n..\n\nIf at any point you need to check whether the magnets are engaged or not, use the :py:obj:`~.MagneticModuleContext.status` property. This will return either the string ``engaged`` or ``disengaged``, not the exact height of the magnets.\n\n.. note:: \n\n The 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.\n \nChanges with the GEN2 Magnetic Module\n=====================================\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 uL and 7 minutes for volumes greater than 50 uL.", + "start_char_idx": 3596, + "end_char_idx": 5583, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b5e6b215-0d07-4033-8507-9df9bdbf1159": { + "__data__": { + "id_": "b5e6b215-0d07-4033-8507-9df9bdbf1159", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "070060f9-be83-493c-bbfd-5213611eb59e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "01ff5c871e406c5e5ce3973281527479b3022e24eef9faaf1ce4a08c6613c240", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c3a44332-4b51-4967-81e8-369507b503c8", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "3de742b6c4696581f39a29628104e58b4fe4139196cae6f4ca6b23b88a32a0fc", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8785c7d6-0d25-45a2-81af-e74acec0b17d", + "node_type": "1", + "metadata": {}, + "hash": "995ce054a431d30d146ec110b9fada59f1de8f20997828446114b88b29b715bb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "This will return either the string ``engaged`` or ``disengaged``, not the exact height of the magnets.\n\n.. note:: \n\n The 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.\n \nChanges with the GEN2 Magnetic Module\n=====================================\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 uL and 7 minutes for volumes greater than 50 uL. If your application needs additional magnetic strength to attract beads within these timeframes, use the available `Adapter Magnets `_.", + "start_char_idx": 4733, + "end_char_idx": 5776, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8785c7d6-0d25-45a2-81af-e74acec0b17d": { + "__data__": { + "id_": "8785c7d6-0d25-45a2-81af-e74acec0b17d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "1a9e7b576c4f9e974465c3164d41e5c2a086924e0a0db2b073b586c27815e0a6", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b5e6b215-0d07-4033-8507-9df9bdbf1159", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "4f87040dde2e9c81bf801c3a576adf4c18b4af2f93435f8910dc007a4018cabb", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d9344f98-b8dc-44e4-ab86-8c23b7d646cc", + "node_type": "1", + "metadata": {}, + "hash": "8dcce8079c5d16298b4c309e2741d0ee2a05d44ecbb7f2b64cf68bcecb7f3930", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to load and control multiple modules of the same type in a Python protocol.\n\n.. _moam:\n\n*********************************\nMultiple Modules of the Same Type\n*********************************\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 :py:meth:`~.ProtocolContext.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's connected to higher numbered USB port. The USB port number (not deck location) determines module load sequence, starting with the lowest port number first.\n\n.. Recommend being formal-ish with protocol code samples.\n\n.. tabs::\n \n .. tab:: Flex\n\n In this example, ``temperature_module_1`` loads first because it's connected to USB port 2. ``temperature_module_2`` loads next because it's connected to USB port 6.\n\n .. code-block:: python\n :substitutions:\n \n from opentrons import protocol_api\n \n requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"|apiLevel|\"}\n\n def 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 The Temperature Modules are connected as shown here:\n\n .. image:: ../../img/modules/flex-usb-order.png\n :width: 250\n\n .. tab:: OT-2\n\n In this example, ``temperature_module_1`` loads first because it's connected to USB port 1.", + "start_char_idx": 0, + "end_char_idx": 2174, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d9344f98-b8dc-44e4-ab86-8c23b7d646cc": { + "__data__": { + "id_": "d9344f98-b8dc-44e4-ab86-8c23b7d646cc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "1a9e7b576c4f9e974465c3164d41e5c2a086924e0a0db2b073b586c27815e0a6", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8785c7d6-0d25-45a2-81af-e74acec0b17d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "8041e726cf467ad05d577bfce9edb8beb0975231a6c70e3a2e4e59d794f6bdec", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2bc15fee-b800-42db-8473-d85696cfe92d", + "node_type": "1", + "metadata": {}, + "hash": "575c2127b64af6729108140565921a1d74a1eb5ba00731f24bb367910602d521", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. code-block:: python\n :substitutions:\n \n from opentrons import protocol_api\n \n requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"|apiLevel|\"}\n\n def 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 The Temperature Modules are connected as shown here:\n\n .. image:: ../../img/modules/flex-usb-order.png\n :width: 250\n\n .. tab:: OT-2\n\n In this example, ``temperature_module_1`` loads first because it's connected to USB port 1. ``temperature_module_2`` loads next because it's connected to USB port 3.\n\n .. code-block:: python\n\n from opentrons import protocol_api\n\n metadata = { 'apiLevel': '2.14'}\n\n def 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',\n location=\"1\")\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',\n location=\"3\")\n \n The Temperature Modules are connected as shown here:\n \n .. image:: ../../img/modules/multiples_of_a_module.svg\n\n\nBefore running your protocol, it's 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.", + "start_char_idx": 1311, + "end_char_idx": 3244, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2bc15fee-b800-42db-8473-d85696cfe92d": { + "__data__": { + "id_": "2bc15fee-b800-42db-8473-d85696cfe92d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "f5b125bfcafc2157968fef60a5d4fd996cd21d8136f5db9da345ca3c48068eb9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d9344f98-b8dc-44e4-ab86-8c23b7d646cc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "a40e1b5eb9c534edacace6560dbf28964927e43cb97fb472502bc9656a96a7ae", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "cb40370d-5c8f-45ec-8093-73c8448a02fc", + "node_type": "1", + "metadata": {}, + "hash": "efab9eefe1e276910b3efd3eae514d86703b071de8466c1da189e2e16914c7db", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to load Opentrons hardware modules with adapters and labware in a Python protocol.\n\n.. _module-setup:\n\n************\nModule Setup\n************\n\nLoading Modules onto the Deck\n=============================\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't use the module anywhere else in your protocol, the Opentrons App and the robot won't let you start the protocol run until all loaded modules that use power are connected via USB and turned on.\n\nUse :py:meth:`.ProtocolContext.load_module` to load a module. \n\n.. tabs::\n \n .. tab:: Flex\n\n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel': '|apiLevel|'}\n\n def 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 After the ``load_module()`` method loads the modules into your protocol, it returns the :py:class:`~opentrons.protocol_api.HeaterShakerContext` and :py:class:`~opentrons.protocol_api.TemperatureModuleContext` objects.", + "start_char_idx": 0, + "end_char_idx": 1514, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "cb40370d-5c8f-45ec-8093-73c8448a02fc": { + "__data__": { + "id_": "cb40370d-5c8f-45ec-8093-73c8448a02fc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "f5b125bfcafc2157968fef60a5d4fd996cd21d8136f5db9da345ca3c48068eb9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2bc15fee-b800-42db-8473-d85696cfe92d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "7788c55374bea969349f6818472b72015f29efe4528413a8aaf93dedad1fc3ea", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "807c6ec8-5a3b-4098-82ed-1d4270438790", + "node_type": "1", + "metadata": {}, + "hash": "bc40b9568457874a0cc893ef81ff95f8f5a3ceed209fff8115f69bb128288e4b", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. tabs::\n \n .. tab:: Flex\n\n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel': '|apiLevel|'}\n\n def 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 After the ``load_module()`` method loads the modules into your protocol, it returns the :py:class:`~opentrons.protocol_api.HeaterShakerContext` and :py:class:`~opentrons.protocol_api.TemperatureModuleContext` objects.\n \n .. tab:: OT-2\n \n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n \n metadata = {'apiLevel': '2.14'}\n \n def 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 After the ``load_module()`` method loads the modules into your protocol, it returns the :py:class:`~opentrons.protocol_api.MagneticModuleContext` and :py:class:`~opentrons.protocol_api.TemperatureModuleContext` objects.\n\n\n..\n\n.. _available_modules:\n\nAvailable Modules\n-----------------\n\nThe first parameter of :py:meth:`.ProtocolContext.load_module` is the module's *API load name*. The load name tells your robot which module you're going to use in a protocol. The table below lists the API load names for the currently available modules.", + "start_char_idx": 610, + "end_char_idx": 2721, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "807c6ec8-5a3b-4098-82ed-1d4270438790": { + "__data__": { + "id_": "807c6ec8-5a3b-4098-82ed-1d4270438790", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "f5b125bfcafc2157968fef60a5d4fd996cd21d8136f5db9da345ca3c48068eb9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "cb40370d-5c8f-45ec-8093-73c8448a02fc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "4b58ae107e37950baa79a7f21931bec04904ae65420c1fbd179457a8111bad79", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "016d159f-293f-45d9-af26-9be407742d5e", + "node_type": "1", + "metadata": {}, + "hash": "19c58749a6e9425e77326401102b4cb853ee7b121d435a7dfbfbd58de56d56b2", + "class_name": "RelatedNodeInfo" + } + }, + "text": "..\n\n.. _available_modules:\n\nAvailable Modules\n-----------------\n\nThe first parameter of :py:meth:`.ProtocolContext.load_module` is the module's *API load name*. The load name tells your robot which module you're going to use in a protocol. The table below lists the API load names for the currently available modules.\n\n.. table::\n :widths: 4 5 2\n \n +--------------------+-------------------------------+---------------------------+\n | Module | API Load Name | Introduced in API Version |\n +====================+===============================+===========================+\n | Temperature Module | ``temperature module`` | 2.0 |\n | GEN1 | or ``tempdeck`` | |\n +--------------------+-------------------------------+---------------------------+\n | Temperature Module | ``temperature module gen2`` | 2.3 |\n | GEN2 | | |\n +--------------------+-------------------------------+---------------------------+\n | Magnetic Module | ``magnetic module`` | 2.0 |\n | GEN1 | or ``magdeck`` | |\n +--------------------+-------------------------------+---------------------------+\n | Magnetic Module | ``magnetic module gen2`` | 2.3 |\n | GEN2 | | |\n +--------------------+-------------------------------+---------------------------+\n | Thermocycler | ``thermocycler module`` | 2.0 |\n | Module GEN1 | or ``thermocycler`` | |\n +--------------------+-------------------------------+---------------------------+\n | Thermocycler | ``thermocycler module gen2`` | 2.13 |\n | Module GEN2 | or ``thermocyclerModuleV2`` | |\n +--------------------+-------------------------------+---------------------------+\n | Heater-Shaker | ``heaterShakerModuleV1`` | 2.13 |\n | Module GEN1 | | |\n +--------------------+-------------------------------+---------------------------+\n | Magnetic Block | ``magneticBlockV1`` | 2.15 |\n | GEN1 | | |\n +--------------------+-------------------------------+---------------------------+\n\nSome modules were added to our Python API later than others, and others span multiple hardware generations.", + "start_char_idx": 2403, + "end_char_idx": 5186, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "016d159f-293f-45d9-af26-9be407742d5e": { + "__data__": { + "id_": "016d159f-293f-45d9-af26-9be407742d5e", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "f5b125bfcafc2157968fef60a5d4fd996cd21d8136f5db9da345ca3c48068eb9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "807c6ec8-5a3b-4098-82ed-1d4270438790", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "b8fd0f1dc233717012a46073357d24f1b4d02b7c0dad600a4e4951c1ccdde92d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2414e950-98b7-436d-ba18-de3485c35513", + "node_type": "1", + "metadata": {}, + "hash": "317b1758f0099b03602b7fa683436363891e0da6d635e0f0a7ea03b54a875787", + "class_name": "RelatedNodeInfo" + } + }, + "text": "When writing a protocol that requires a module, make sure your ``requirements`` or ``metadata`` code block specifies an :ref:`API version ` high enough to support all the module generations you want to use.\n\n.. _load-labware-module:\n\nLoading Labware onto a Module\n=============================\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 def 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\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 :ref:`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\n.. versionadded:: 2.1\n\nModule and Labware Compatibility\n--------------------------------\n\nIt's your responsibility to ensure the labware and module combinations you load together work together. The Protocol API won't 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.", + "start_char_idx": 5187, + "end_char_idx": 7029, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2414e950-98b7-436d-ba18-de3485c35513": { + "__data__": { + "id_": "2414e950-98b7-436d-ba18-de3485c35513", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "f5b125bfcafc2157968fef60a5d4fd996cd21d8136f5db9da345ca3c48068eb9", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "016d159f-293f-45d9-af26-9be407742d5e", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "43a54e3f22163ecac1cf6b016128c3cc90e3f93b3a93a5e42792f2eb7f3d7995", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d545e65f-9b87-41d1-b840-12f95d36c6eb", + "node_type": "1", + "metadata": {}, + "hash": "7bbd564f76f2a14bf2905d5e8f9390ecca65a82bd0cdd17e3461e686eab16e61", + "class_name": "RelatedNodeInfo" + } + }, + "text": "In the above example, the ``load_module()`` method already specifies where the module is on the deck: ``location= \"D1\"``.\n\nAny :ref:`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\n.. versionadded:: 2.1\n\nModule and Labware Compatibility\n--------------------------------\n\nIt's your responsibility to ensure the labware and module combinations you load together work together. The Protocol API won't 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.\n\n\nAdditional Labware Parameters\n-----------------------------\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't have to). The :py:meth:`~.ProtocolContext.load_labware` methods of all module contexts accept these additional parameters.", + "start_char_idx": 6193, + "end_char_idx": 7562, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d545e65f-9b87-41d1-b840-12f95d36c6eb": { + "__data__": { + "id_": "d545e65f-9b87-41d1-b840-12f95d36c6eb", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "c74e399df799a3b923b3724bbc7befa0ce820153911e8d3797374b7347bac6c1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2414e950-98b7-436d-ba18-de3485c35513", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "14307561160f77d71ce963610b86ab4cc2105e0295cdc310e99bd1177db7ca01", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5491c5ab-7e6e-43e3-821a-8441a9ef7519", + "node_type": "1", + "metadata": {}, + "hash": "b4fb9848c6cd9ddcc8bb728027fa939533d21d5deeaef4f76eb53df9c893f1ea", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to heat and cool with the Temperature Module in a Python protocol.\n\n.. _temperature-module:\n\n******************\nTemperature Module\n******************\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 :py:class:`.TemperatureModuleContext` object, which has methods for setting target temperatures and reading the module's status. This example demonstrates loading a Temperature Module GEN2 and loading a well plate on top of it.\n\n.. code-block:: python\n :substitutions:\n\n def run(protocol: protocol_api.ProtocolContext):\n temp_mod = protocol.load_module(\n module_name='temperature module gen2',\n location='D3')\n plate = temp_mod.load_labware(\n name='corning_96_wellplate_360ul_flat')\n\n.. versionadded:: 2.3\n\nTemperature Control\n===================\n\nThe primary function of the module is to control the temperature of its deck, using :py:meth:`~.TemperatureModuleContext.set_temperature`, which takes one parameter: ``celsius``. For example, to set the Temperature Module to 4 \u00b0C:\n\n.. code-block:: python\n\n temp_mod.set_temperature(celsius=4)\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 :py:meth:`~.TemperatureModuleContext.deactivate`, which will stop heating or cooling and will turn off the fan.\n\n.. note::\n\n Your 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.", + "start_char_idx": 0, + "end_char_idx": 2125, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5491c5ab-7e6e-43e3-821a-8441a9ef7519": { + "__data__": { + "id_": "5491c5ab-7e6e-43e3-821a-8441a9ef7519", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "12e8891c-1c03-4329-81e7-fe1963b9703e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "c74e399df799a3b923b3724bbc7befa0ce820153911e8d3797374b7347bac6c1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d545e65f-9b87-41d1-b840-12f95d36c6eb", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "92c7ccd18c77c497ed1bcaf4c77c098588311a857433a153dd58fbe262598b9a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4", + "node_type": "1", + "metadata": {}, + "hash": "43f4e2bcdbedd7fb0175de3e4d90bbb709cdb3d986f3c87f4d53e8e46d2d6877", + "class_name": "RelatedNodeInfo" + } + }, + "text": "For example, to set the Temperature Module to 4 \u00b0C:\n\n.. code-block:: python\n\n temp_mod.set_temperature(celsius=4)\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 :py:meth:`~.TemperatureModuleContext.deactivate`, which will stop heating or cooling and will turn off the fan.\n\n.. note::\n\n Your 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\n..\n\nTemperature Status\n==================\n\nIf you need to confirm in software whether the Temperature Module is holding at a temperature or is idle, use the :py:obj:`~.TemperatureModuleContext.status` property:\n\n.. code-block:: python\n\n temp_mod.set_temperature(celsius=90)\n temp_mod.status # 'holding at target'\n temp_mod.deactivate()\n temp_mod.status # 'idle'\n \nIf you don't 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 \n..\n\nChanges with the GEN2 Temperature Module\n========================================\n\nAll methods of :py:class:`.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.", + "start_char_idx": 1157, + "end_char_idx": 3200, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4": { + "__data__": { + "id_": "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c1c5494f0b74f08f4f33b41ee629a00a19559ec733175a9554765ceabc1c57da", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5491c5ab-7e6e-43e3-821a-8441a9ef7519", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "be41d46d6e41a23a6b0a0b26a093400f90d8e78500874029be065aa94f137c5e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "97dc403d-dd4a-4474-9732-5961f25413b0", + "node_type": "1", + "metadata": {}, + "hash": "818ac069e196503952bbc5707151bbf96869b6146116793e8b4af2d866058c2f", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to control the lid, block, and temperature profile of the Thermocycler Module in a Python protocol.\n\n.. _thermocycler-module:\n\n*******************\nThermocycler Module\n*******************\n\nThe Thermocycler Module provides on-deck, fully automated thermocycling, and can heat and cool very quickly during operation. The module's block can reach and maintain temperatures between 4 and 99 \u00b0C. The module's lid can heat up to 110 \u00b0C.\n\nThe Thermocycler is represented in code by a :py:class:`.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.. code-block:: python\n\n def run(protocol: protocol_api.ProtocolContext):\n tc_mod = protocol.load_module(module_name='thermocyclerModuleV2')\n plate = tc_mod.load_labware(name='nest_96_wellplate_100ul_pcr_full_skirt')\n\n.. versionadded:: 2.13\n\nLid Control\n===========\n\nThe Thermocycler can control the position and temperature of its lid. \n\nTo change the lid position, use :py:meth:`~.ThermocyclerContext.open_lid` and :py:meth:`~.ThermocyclerContext.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 :py:meth:`~.ThermocyclerContext.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.. code-block:: python\n\n tc_mod.set_lid_temperature(temperature=50)\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).", + "start_char_idx": 0, + "end_char_idx": 1949, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "97dc403d-dd4a-4474-9732-5961f25413b0": { + "__data__": { + "id_": "97dc403d-dd4a-4474-9732-5961f25413b0", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c1c5494f0b74f08f4f33b41ee629a00a19559ec733175a9554765ceabc1c57da", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "759af1e722f449063922ab0ff690f01087cf30d21cf5128fbc482fda6a72fc26", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "eb3977da-715c-4778-8726-b82dc5678d6f", + "node_type": "1", + "metadata": {}, + "hash": "9301c67a2be8da9c0418b9230607e1dc8b11f8493aacdf2b74e6c19320b6490e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 :py:meth:`~.ThermocyclerContext.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.. code-block:: python\n\n tc_mod.set_lid_temperature(temperature=50)\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 :py:meth:`~.ThermocyclerContext.deactivate_lid`.\n\n.. note::\n\n Lid temperature is not affected by Thermocycler profiles. Therefore you should set an appropriate lid temperature to hold during your profile *before* executing it. See :ref:`thermocycler-profiles` for more information on defining and executing profiles.\n\n..\n\nBlock Control\n=============\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.\n\nTemperature\n-----------\n\nTo set the block temperature inside the Thermocycler, use :py:meth:`~.ThermocyclerContext.set_block_temperature`. At minimum you have to specify a ``temperature`` in degrees Celsius:\n\n.. code-block:: python\n\n tc_mod.set_block_temperature(temperature=4)\n \nIf you don't specify any other parameters, the Thermocycler will hold this temperature until a new temperature is set, :py:meth:`~.ThermocyclerContext.deactivate_block` is called, or the module is powered off.\n\n..\n\nHold Time\n---------\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).", + "start_char_idx": 1265, + "end_char_idx": 3257, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "eb3977da-715c-4778-8726-b82dc5678d6f": { + "__data__": { + "id_": "eb3977da-715c-4778-8726-b82dc5678d6f", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c1c5494f0b74f08f4f33b41ee629a00a19559ec733175a9554765ceabc1c57da", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "97dc403d-dd4a-4474-9732-5961f25413b0", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "2915747ff73ea5f7061091ef4c69f7d718f6951b85eb6ef6385c85fb0fec3700", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5c5e1212-45fe-4164-94d0-7dc6da6510cc", + "node_type": "1", + "metadata": {}, + "hash": "353366579d0a53a8fe2effcc86c809f3e4a8b157000de38a0e964b9c424249f3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "..\n\nBlock Control\n=============\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.\n\nTemperature\n-----------\n\nTo set the block temperature inside the Thermocycler, use :py:meth:`~.ThermocyclerContext.set_block_temperature`. At minimum you have to specify a ``temperature`` in degrees Celsius:\n\n.. code-block:: python\n\n tc_mod.set_block_temperature(temperature=4)\n \nIf you don't specify any other parameters, the Thermocycler will hold this temperature until a new temperature is set, :py:meth:`~.ThermocyclerContext.deactivate_block` is called, or the module is powered off.\n\n..\n\nHold Time\n---------\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 tc_mod.set_block_temperature(\n temperature=4,\n hold_time_minutes=4,\n hold_time_seconds=15)\n\n.. note ::\n\n Your protocol will not proceed to further commands while holding at a temperature. If you don't specify a hold time, the protocol will proceed as soon as the target temperature is reached.\n\n..\n\nBlock Max Volume\n----------------\n\nThe Thermocycler's 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 uL. If not specified, the Thermocycler will assume samples of 25 uL.\n\nIt is especially important to specify ``block_max_volume`` when holding at a temperature.", + "start_char_idx": 2321, + "end_char_idx": 4218, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5c5e1212-45fe-4164-94d0-7dc6da6510cc": { + "__data__": { + "id_": "5c5e1212-45fe-4164-94d0-7dc6da6510cc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c1c5494f0b74f08f4f33b41ee629a00a19559ec733175a9554765ceabc1c57da", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "eb3977da-715c-4778-8726-b82dc5678d6f", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ac46ec18443588d989073fef0c5734bee8c6cab91b107dca3e7472d13b41053d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8", + "node_type": "1", + "metadata": {}, + "hash": "93db2ffac9343465c730747b9f61daf5931fa2d53ee2411c56114406752ca95d", + "class_name": "RelatedNodeInfo" + } + }, + "text": "If you don't specify a hold time, the protocol will proceed as soon as the target temperature is reached.\n\n..\n\nBlock Max Volume\n----------------\n\nThe Thermocycler's 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 uL. If not specified, the Thermocycler will assume samples of 25 uL.\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 tc_mod.set_block_temperature(\n temperature=4,\n hold_time_seconds=20,\n block_max_volume=80)\n\nIf the Thermocycler assumes these samples are 25 uL, 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\n..\n\n\n.. _thermocycler-profiles:\n\nThermocycler Profiles\n=====================\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.. code-block:: python\n\n profile = [\n {'temperature':10, 'hold_time_seconds':30},\n {'temperature':60, 'hold_time_seconds':45}\n ]\n\nOnce you have written the steps of your profile, execute it with :py:meth:`~.ThermocyclerContext.execute_profile`. This function executes your profile steps multiple times depending on the ``repetitions`` parameter.", + "start_char_idx": 3555, + "end_char_idx": 5736, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8": { + "__data__": { + "id_": "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c1c5494f0b74f08f4f33b41ee629a00a19559ec733175a9554765ceabc1c57da", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5c5e1212-45fe-4164-94d0-7dc6da6510cc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "82e4dec3f1be2b978ff66efc1d8cc9f562668f2383f54cf12cb695f02dc26d9f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "30bea738-adb3-49ce-b4c5-2cb02c62296d", + "node_type": "1", + "metadata": {}, + "hash": "e5b14319e7e1921187c4f6b1d347c33b8777da2fcab0577c1829bffc2bdcb2d9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.. code-block:: python\n\n profile = [\n {'temperature':10, 'hold_time_seconds':30},\n {'temperature':60, 'hold_time_seconds':45}\n ]\n\nOnce you have written the steps of your profile, execute it with :py:meth:`~.ThermocyclerContext.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 :py:meth:`~.ThermocyclerContext.set_block_temperature` function.\n\nFor instance, a PCR prep protocol might define and execute a profile like this:\n\n.. code-block:: python\n\n profile = [\n {'temperature':95, 'hold_time_seconds':30},\n {'temperature':57, 'hold_time_seconds':30},\n {'temperature':72, 'hold_time_seconds':60}\n ]\n tc_mod.execute_profile(steps=profile, repetitions=20, block_max_volume=32)\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.. code-block:: python\n\n for 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 \nHowever, this code would generate 60 lines in the protocol's 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).", + "start_char_idx": 4882, + "end_char_idx": 7016, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "30bea738-adb3-49ce-b4c5-2cb02c62296d": { + "__data__": { + "id_": "30bea738-adb3-49ce-b4c5-2cb02c62296d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c1c5494f0b74f08f4f33b41ee629a00a19559ec733175a9554765ceabc1c57da", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ae5610bfdb93981077182e2551a167cf092c83df3f312960e88a5e47c1c367b0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6266fa60-fb2c-435a-8b42-9a0728ec7f67", + "node_type": "1", + "metadata": {}, + "hash": "b646d8e009eb7ee61b02cdb04b7797c2ff5e34f1b93ba0f23275d6599bb3ec96", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Additionally, you can set a profile once and execute it multiple times (with different numbers of repetitions and maximum volumes, if needed).\n\n.. note::\n\n Temperature profiles only control the temperature of the `block` in the Thermocycler. You should set a lid temperature before executing the profile using :py:meth:`~.ThermocyclerContext.set_lid_temperature`.\n\n..\n\n\nChanges with the GEN2 Thermocycler Module\n=========================================\n\nAll methods of :py:class:`.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 :py:meth:`~.ProtocolContext.pause`, lift and move the plate, and then resume the run.", + "start_char_idx": 6874, + "end_char_idx": 7827, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6266fa60-fb2c-435a-8b42-9a0728ec7f67": { + "__data__": { + "id_": "6266fa60-fb2c-435a-8b42-9a0728ec7f67", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "befbe678e84a26344a8ed5a10bded77fc98f5b82a7cdce7143d53557495d9fa2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "30bea738-adb3-49ce-b4c5-2cb02c62296d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "15560ffa086703a06a0c2c2da99772950a4f7a4a240499ffc6f099277785be67", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0ca14135-c1e7-48ce-8afe-b260ac093908", + "node_type": "1", + "metadata": {}, + "hash": "63510e1f39f6ade997e250a9a797c29e664a867807ef0010a3503515f40748a8", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to move labware, with the Flex Gripper or manually, in a Python protocol.\n\n.. _moving-labware:\n\n**************\nMoving Labware\n**************\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't have a gripper instrument. \n\nBasic Movement\n==============\n\nUse the :py:meth:`.ProtocolContext.move_labware` method to initiate a move, regardless of whether it uses the gripper.\n\n.. code-block:: python\n :substitutions:\n \n def 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.. versionadded:: 2.15\n\nThe required arguments of ``move_labware()`` are the ``labware`` you want to move and its ``new_location``. You don't need to specify where the move begins, since that information is already stored in the :py:class:`~opentrons.protocol_api.labware.Labware` object \u2014 ``plate`` in this example. The destination of the move can be any empty deck slot, or a module that's ready to have labware added to it (see :ref:`movement-modules` below). Movement to an occupied location, including the labware's current location, will raise an error.\n\nWhen the move step is complete, the API updates the labware's location, so you can move the plate multiple times::\n\n protocol.move_labware(labware=plate, new_location='D2')\n protocol.move_labware(labware=plate, new_location='D3')\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.", + "start_char_idx": 0, + "end_char_idx": 1807, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0ca14135-c1e7-48ce-8afe-b260ac093908": { + "__data__": { + "id_": "0ca14135-c1e7-48ce-8afe-b260ac093908", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "befbe678e84a26344a8ed5a10bded77fc98f5b82a7cdce7143d53557495d9fa2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6266fa60-fb2c-435a-8b42-9a0728ec7f67", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "cb39610ee50c7f95203187247b609397798b5198e9cf915c712d1da78fed29bf", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e7bbf55c-0555-43f3-ab52-3fc85bba8e54", + "node_type": "1", + "metadata": {}, + "hash": "85fee1d75e546bd26bdff1dc7f59327b0b379a5456b45bf77f1730a56ec9c98a", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Automatic vs Manual Moves\n=========================\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've moved the labware.\n\nThe ``use_gripper`` parameter of :py:meth:`~.ProtocolContext.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't specify a value, the protocol will pause for a manual move.\n\n.. code-block:: python\n\n def 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.. versionadded:: 2.15\n\n.. note::\n Don't 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't 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_labware=True``.\n\nIf you attempt to use the gripper to move labware in an OT-2 protocol, the API will raise an error.", + "start_char_idx": 1810, + "end_char_idx": 3711, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e7bbf55c-0555-43f3-ab52-3fc85bba8e54": { + "__data__": { + "id_": "e7bbf55c-0555-43f3-ab52-3fc85bba8e54", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "befbe678e84a26344a8ed5a10bded77fc98f5b82a7cdce7143d53557495d9fa2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0ca14135-c1e7-48ce-8afe-b260ac093908", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "7de644d56d3685ddeed9c3f5261cd1528a1eb4e61faa04068460ca5a142159db", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f1384e4c-89a6-4248-86ec-5530dc41bedc", + "node_type": "1", + "metadata": {}, + "hash": "25d02f4ef05fe8f780c84516f4b3f25081e8e0f43c8ad27a39523c23e6cfc6bb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Supported Labware\n=================\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.. list-table::\n :header-rows: 1\n\n * - Labware Type\n - API Load Names\n * - Full-skirt PCR plates\n - \n * ``armadillo_96_wellplate_200ul_pcr_full_skirt``\n * ``opentrons_96_wellplate_200ul_pcr_full_skirt``\n * - NEST well plates\n - \n * ``nest_96_wellplate_200ul_flat``\n * ``nest_96_wellplate_2ml_deep``\n * - Opentrons Flex 96 Tip Racks \n - \n * ``opentrons_flex_96_tiprack_50ul``\n * ``opentrons_flex_96_tiprack_200ul``\n * ``opentrons_flex_96_tiprack_1000ul``\n * ``opentrons_flex_96_filtertiprack_50ul``\n * ``opentrons_flex_96_filtertiprack_200ul``\n * ``opentrons_flex_96_filtertiprack_1000ul``\n \nThe gripper may work with other ANSI/SLAS standard labware, but this is not recommended.\n\n.. note::\n\n The 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't include position and force information. The Python Protocol API won't raise a warning or error if you try to grip and move other types of labware.\n\n\n.. _movement-modules: \n\nMovement with Modules\n=====================\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't 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's already loaded before the move.", + "start_char_idx": 3714, + "end_char_idx": 5562, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f1384e4c-89a6-4248-86ec-5530dc41bedc": { + "__data__": { + "id_": "f1384e4c-89a6-4248-86ec-5530dc41bedc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "befbe678e84a26344a8ed5a10bded77fc98f5b82a7cdce7143d53557495d9fa2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e7bbf55c-0555-43f3-ab52-3fc85bba8e54", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "60b5bb31c9129e36b8bf7e88878b7c4e1fbbd66fc6579f6617c6987ef3f4085f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8", + "node_type": "1", + "metadata": {}, + "hash": "f457c6e339f40d53daba21ed71d6f7fff0eaff58dc5c4f54752d5411a607232d", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _movement-modules: \n\nMovement with Modules\n=====================\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't 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's 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's 96 Flat Bottom Adapter. Pass the adapter, not the module or the slot, as the value of ``new_location``::\n\n def 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.. versionadded:: 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's physically accessible:\n\n - For the Heater-Shaker, use :py:meth:`~.HeaterShakerContext.open_labware_latch`.\n - For the Thermocycler, use :py:meth:`~.ThermocyclerContext.open_lid`.\n \nIf the labware is inaccessible, the API will raise an error.", + "start_char_idx": 5059, + "end_char_idx": 6922, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8": { + "__data__": { + "id_": "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "befbe678e84a26344a8ed5a10bded77fc98f5b82a7cdce7143d53557495d9fa2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f1384e4c-89a6-4248-86ec-5530dc41bedc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "8475d369bb85626983532ef51543a71e486805d760ae62fed77bab76d89de73d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b3717357-f19c-4530-bfdd-45b407eecb47", + "node_type": "1", + "metadata": {}, + "hash": "7d5ddbba52839710b3cf51a4bfbafd525a61075e120df87abd8ce8866428c2b8", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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's physically accessible:\n\n - For the Heater-Shaker, use :py:meth:`~.HeaterShakerContext.open_labware_latch`.\n - For the Thermocycler, use :py:meth:`~.ThermocyclerContext.open_lid`.\n \nIf the labware is inaccessible, the API will raise an error. \n\n.. _off-deck-location:\n\nThe Off-Deck Location\n=====================\n\nIn addition to moving labware around the deck, :py:meth:`~.ProtocolContext.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 :py:obj:`~opentrons.protocol_api.OFF_DECK`::\n\n protocol.move_labware(labware=plate, new_location=protocol_api.OFF_DECK)\n \n.. versionadded:: 2.15\n\nMoving labware off-deck always requires user intervention, because the gripper can't 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 from opentrons import protocol_api\n\n metadata = {\"apiLevel\": \"2.15\", \"protocolName\": \"Tip rack replacement\"}\n requirements = {\"robotType\": \"OT-2\"}", + "start_char_idx": 6454, + "end_char_idx": 8158, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b3717357-f19c-4530-bfdd-45b407eecb47": { + "__data__": { + "id_": "b3717357-f19c-4530-bfdd-45b407eecb47", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "5fb5561a-5539-44f8-bb69-6f1462e84132", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "befbe678e84a26344a8ed5a10bded77fc98f5b82a7cdce7143d53557495d9fa2", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "5c18c4f20f7297325881116f630a1577447f53d53f8ebc2b3fd9ffb840806e50", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2", + "node_type": "1", + "metadata": {}, + "hash": "422834f55fb698416816aaaa43f8af3d9af6bc33c863a8bf7ab1bae46e30a1af", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 from opentrons import protocol_api\n\n metadata = {\"apiLevel\": \"2.15\", \"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\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.", + "start_char_idx": 7577, + "end_char_idx": 9182, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2": { + "__data__": { + "id_": "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b3717357-f19c-4530-bfdd-45b407eecb47", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "e676dbae5fa6e7bb2246c6c89c7a3d253d9b3a2d8070a4e543d3770ceca9e206", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83", + "node_type": "1", + "metadata": {}, + "hash": "470a3edfdf4b7dde02e449ec31a483a51d6aa1dc8213a285cbef4e13862eb89b", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to control a robot outside of the Opentrons App, using Jupyter Notebook or the command line.\n\n.. _advanced-control:\n\nAdvanced Control\n================\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's 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``.\n\nJupyter Notebook\n----------------\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\n.. note::\n Currently, the Jupyter Notebook server does not work with Python Protocol API versions 2.14 and 2.15. It does work with API versions 2.13 and earlier. Use the Opentrons App to run protocols that require functionality added in newer versions.\n\nAccess your robot's 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's IP address).\n\nOnce you've 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.\n\nProtocol Structure\n^^^^^^^^^^^^^^^^^^\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.", + "start_char_idx": 0, + "end_char_idx": 2192, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83": { + "__data__": { + "id_": "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "4559eb282071ecc91b5224aba5658bb6fffbe3c54e5ef1c20d367a30bd67b3a9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f930b218-26ac-4a55-913f-ebb285f24de0", + "node_type": "1", + "metadata": {}, + "hash": "622acf2650211fba6cb55a8fd47a0b15a3a1b57b7e7dc1a25326ad9ca8dde89b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "It does work with API versions 2.13 and earlier. Use the Opentrons App to run protocols that require functionality added in newer versions.\n\nAccess your robot's 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's IP address).\n\nOnce you've 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.\n\nProtocol Structure\n^^^^^^^^^^^^^^^^^^\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 :py:meth:`opentrons.execute.get_protocol_api`. This function also replaces the ``metadata`` block of a standalone protocol by taking the minimum :ref:`API version ` as its argument. Then you can call :py:class:`~opentrons.protocol_api.ProtocolContext` methods in subsequent lines or cells:\n\n.. code-block:: python\n\n import opentrons.execute\n protocol = opentrons.execute.get_protocol_api(\"2.13\")\n protocol.home()\n\nThe first command you execute should always be :py:meth:`~opentrons.protocol_api.ProtocolContext.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 :py:class:`.ProtocolContext` throughout your notebook, unless you need to start over from the beginning of your protocol logic. In that case, call :py:meth:`~opentrons.execute.get_protocol_api` again to get a new :py:class:`.ProtocolContext`.", + "start_char_idx": 1292, + "end_char_idx": 3400, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f930b218-26ac-4a55-913f-ebb285f24de0": { + "__data__": { + "id_": "f930b218-26ac-4a55-913f-ebb285f24de0", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "f8f9054d6cb0a65339b77e0d2c9c2a6e93fdf8b31b6fc55f9fc017ba229ea2ce", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6", + "node_type": "1", + "metadata": {}, + "hash": "325af7fa4ab7e24fc6c4e489d93cfafc3dcb65e57202845232d7749802a06e17", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Then you can call :py:class:`~opentrons.protocol_api.ProtocolContext` methods in subsequent lines or cells:\n\n.. code-block:: python\n\n import opentrons.execute\n protocol = opentrons.execute.get_protocol_api(\"2.13\")\n protocol.home()\n\nThe first command you execute should always be :py:meth:`~opentrons.protocol_api.ProtocolContext.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 :py:class:`.ProtocolContext` throughout your notebook, unless you need to start over from the beginning of your protocol logic. In that case, call :py:meth:`~opentrons.execute.get_protocol_api` again to get a new :py:class:`.ProtocolContext`.\n\nRunning a Previously Written Protocol\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\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.. code-block:: python\n\n import opentrons.execute\n from opentrons import protocol_api\n def run(protocol: protocol_api.ProtocolContext):\n # the contents of your previously written protocol go here\n\n\nSince a typical protocol only `defines` the ``run`` function but doesn't `call` it, this won't immediately cause the robot to move. To begin the run, instantiate a :py:class:`.ProtocolContext` and pass it to the ``run`` function you just defined:\n\n.. code-block:: python\n\n protocol = opentrons.execute.get_protocol_api(\"2.13\")\n run(protocol) # your protocol will now run\n\n.. _using_lpc:\n\nSetting Labware Offsets\n-----------------------\n\nAll positions relative to labware are adjusted automatically based on labware offset data. When you're running your code in Jupyter Notebook or with ``opentrons_execute``, you need to set your own offsets because you can't perform run setup and Labware Position Check in the Opentrons App or on the Flex touchscreen. For these applications, do the following to calculate and apply labware offsets:\n\t\n\t1.", + "start_char_idx": 2627, + "end_char_idx": 4699, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6": { + "__data__": { + "id_": "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f930b218-26ac-4a55-913f-ebb285f24de0", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "372927431b828abf824133edbadf0be12967cd29a79dc9dbff467598a27e7b8e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "640c98cf-9553-49d8-97f4-ad858fb8ed42", + "node_type": "1", + "metadata": {}, + "hash": "9a35a89409a595c08312c57f49839a2dc2ac70c6b049e1315005398285c11536", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Since a typical protocol only `defines` the ``run`` function but doesn't `call` it, this won't immediately cause the robot to move. To begin the run, instantiate a :py:class:`.ProtocolContext` and pass it to the ``run`` function you just defined:\n\n.. code-block:: python\n\n protocol = opentrons.execute.get_protocol_api(\"2.13\")\n run(protocol) # your protocol will now run\n\n.. _using_lpc:\n\nSetting Labware Offsets\n-----------------------\n\nAll positions relative to labware are adjusted automatically based on labware offset data. When you're running your code in Jupyter Notebook or with ``opentrons_execute``, you need to set your own offsets because you can't perform run setup and Labware Position Check in the Opentrons App or on the Flex touchscreen. For these applications, do the following to calculate and apply labware offsets:\n\t\n\t1. Create a \"dummy\" protocol that loads your labware and has each used pipette pick up a tip from a tip rack.\n\t2. Import the dummy protocol to the Opentrons App.\n\t3. Run Labware Position Check from the app or touchscreen.\n\t4. Add the offsets to your code with :py:meth:`.set_offset`.\n\t\nCreating the dummy protocol requires you to:\n\n 1. Use the ``metadata`` or ``requirements`` dictionary to specify the API version. (See :ref:`v2-versioning` for details.) Use the same API version as you did in :py:meth:`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 ``tipracks``.\n 5. Call ``pick_up_tip()``. Labware Position Check can't run if you don't 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.", + "start_char_idx": 3852, + "end_char_idx": 5690, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "640c98cf-9553-49d8-97f4-ad858fb8ed42": { + "__data__": { + "id_": "640c98cf-9553-49d8-97f4-ad858fb8ed42", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "a2ababf8fb85e894da4ed9f730320ddee908cf1c4f42ee14343a29330eba7569", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "956e03d7-630b-4cdf-a595-7396eb2435ab", + "node_type": "1", + "metadata": {}, + "hash": "7225a5ebd59055a0c727bfa674bee98a214dc50b301e82385e9bd0b815c87093", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Creating the dummy protocol requires you to:\n\n 1. Use the ``metadata`` or ``requirements`` dictionary to specify the API version. (See :ref:`v2-versioning` for details.) Use the same API version as you did in :py:meth:`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 ``tipracks``.\n 5. Call ``pick_up_tip()``. Labware Position Check can't run if you don't 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.. code-block:: python\n\n metadata = {\"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\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 :py:meth:`.set_offset` to apply the offsets to each piece of labware.", + "start_char_idx": 4983, + "end_char_idx": 6465, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "956e03d7-630b-4cdf-a595-7396eb2435ab": { + "__data__": { + "id_": "956e03d7-630b-4cdf-a595-7396eb2435ab", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "640c98cf-9553-49d8-97f4-ad858fb8ed42", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "b77cb7227e9d40489706e2e0dd50092b6ac1723dcaadba357102adf80b870a21", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b2f9388b-55eb-4863-9400-016539f4ecea", + "node_type": "1", + "metadata": {}, + "hash": "28bbc10b1a58e5250eb0715df4a1fc69b32e07a06348bc6a619682439b991448", + "class_name": "RelatedNodeInfo" + } + }, + "text": "When complete, you can click **Get Labware Offset Data** to view automatically generated code that uses :py:meth:`.set_offset` to apply the offsets to each piece of labware.\n\n.. code-block:: python\n\t\n labware_1 = protocol.load_labware(\"opentrons_96_tiprack_300ul\", location=\"1\")\n labware_1.set_offset(x=0.00, y=0.00, z=0.00)\n\n labware_2 = protocol.load_labware(\"nest_12_reservoir_15ml\", location=\"2\")\n labware_2.set_offset(x=0.10, y=0.20, z=0.30)\n\n labware_3 = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", location=\"3\")\n labware_3.set_offset(x=0.10, y=0.20, z=0.30)\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.. code-block:: python\n\n reservoir = protocol.load_labware(\"nest_12_reservoir_15ml\", \"2\")\n reservoir.set_offset(x=0.10, y=0.20, z=0.30)\n \n.. versionadded:: 2.12\n\nOnce you've executed this code in Jupyter Notebook, all subsequent positional calculations for this reservoir in slot D2 will be adjusted 0.1 mm to the right, 0.2 mm to the back, and 0.3 mm up.\n\nRemember, you should only add ``.set_offset()`` commands to protocols run outside of 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* in the *same deck slot* on the *same robot*.\n\n.. warning::\n\n\tImproperly reusing offset data may cause your robot to move to an unexpected position or crash against other labware, which can lead to incorrect protocol execution or damage your equipment. The same applies when running protocols with ``.set_offset()`` commands in the Opentrons App.", + "start_char_idx": 6292, + "end_char_idx": 8045, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b2f9388b-55eb-4863-9400-016539f4ecea": { + "__data__": { + "id_": "b2f9388b-55eb-4863-9400-016539f4ecea", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "956e03d7-630b-4cdf-a595-7396eb2435ab", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "8acf2cb4476f3479f5db6746a454070a519bcb796fd979bed0b0729ff1873145", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "63dc5976-0aed-4779-9bd4-11eab2368fd8", + "node_type": "1", + "metadata": {}, + "hash": "a88c097bb93ee97f844f9a6154ba473ab5fcef692bf460317e6783e6799c9f56", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Remember, you should only add ``.set_offset()`` commands to protocols run outside of 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* in the *same deck slot* on the *same robot*.\n\n.. warning::\n\n\tImproperly reusing offset data may cause your robot to move to an unexpected position or crash against other labware, which can lead to incorrect protocol execution or damage your equipment. The same applies when running protocols with ``.set_offset()`` commands in the Opentrons App. When in doubt: run Labware Position Check again and update your code!\n\nUsing Custom Labware\n--------------------\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 :py:meth:`~opentrons.protocol_api.ProtocolContext.load_labware`.\n\nUsing Modules\n-------------\n\nIf your protocol uses :ref:`modules `, you need to take additional steps to make sure that Jupyter Notebook doesn't 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\n.. note::\n\n While 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.", + "start_char_idx": 7453, + "end_char_idx": 9387, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "63dc5976-0aed-4779-9bd4-11eab2368fd8": { + "__data__": { + "id_": "63dc5976-0aed-4779-9bd4-11eab2368fd8", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "fbf5438b-1bca-43d2-a88d-98f97a35f19f", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "0576f2b65d48bc364f850d22fd11e1ea9a9ae09e0b82acfc9596e4494941ea53", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b2f9388b-55eb-4863-9400-016539f4ecea", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "c4f79df12661f6a686a4bdfd9455a00491e6945f667103167270b27e7fd2039e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2", + "node_type": "1", + "metadata": {}, + "hash": "38be5943b6ea11d31d90ba6322e5b6fe1aaf4e8cc27beebba3c7e9c97f65827d", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\n.. note::\n\n While 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.\n\n\nCommand Line\n------------\n\nThe robot's command line is accessible either by going to **New > Terminal** in Jupyter or `via SSH `_.\n\nTo execute a protocol from the robot's command line, copy the protocol file to the robot with ``scp`` and then run the protocol with ``opentrons_execute``:\n\n.. prompt:: bash\n\n opentrons_execute /data/my_protocol.py\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.", + "start_char_idx": 8636, + "end_char_idx": 10097, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2": { + "__data__": { + "id_": "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_atomic_commands.rst", + "file_name": "new_atomic_commands.rst", + "file_size": 1178, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4eee9a38-808d-4205-bfd6-6f102b06fe96", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_atomic_commands.rst", + "file_name": "new_atomic_commands.rst", + "file_size": 1178, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "800ee66a886077c75fd364ed51019bda43a8f1e6b44c2be97b3b32ba9ca4c0e0", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "63dc5976-0aed-4779-9bd4-11eab2368fd8", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "5b5bf1a340eaabf50300bb3b64e3eb8b45069430dc103ab8fbc11f98b4f2c043", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "038d0cad-dcfd-42eb-842d-10ceebf9d1c8", + "node_type": "1", + "metadata": {}, + "hash": "e431801b2a52e63ad78e0327fe8acca80e39fd0f96cc2abb2170ac9a5ab8304b", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: Basic commands that Opentrons robots can perform with pipette tips, for liquid handling, and other utility features.\n\n.. _v2-atomic-commands:\n\n***********************\nBuilding Block Commands\n***********************\n\n.. toctree::\n basic_commands/pipette_tips\n basic_commands/liquids\n basic_commands/utilities\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're also foundational to the :ref:`complex commands ` that help you combine multiple actions into fewer lines of code.\n\nPages in this section of the documentation cover:\n\n- :ref:`pipette-tips`: Get started with commands for picking up pipette tips, dropping tips, returning tips, and working with used tips. \n- :ref:`liquid-control`: Learn about aspirating and dispensing liquids, blow out and touch tip procedures, mixing, and creating air gaps.\n- :ref:`new-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.", + "start_char_idx": 0, + "end_char_idx": 1173, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "038d0cad-dcfd-42eb-842d-10ceebf9d1c8": { + "__data__": { + "id_": "038d0cad-dcfd-42eb-842d-10ceebf9d1c8", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_complex_commands.rst", + "file_name": "new_complex_commands.rst", + "file_size": 1622, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "2955f1f9-17f8-406d-9cfe-4eac441b3162", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_complex_commands.rst", + "file_name": "new_complex_commands.rst", + "file_size": 1622, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "e663a00f63afe7a8d262701403f0d47f7d7daee380984173d006acab702b2132", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_atomic_commands.rst", + "file_name": "new_atomic_commands.rst", + "file_size": 1178, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "aa2fc8bf072f656140e13bfb2696b48e29093f5f4b55b0767f31076cc38a559d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "001911ad-fe0d-41d8-8799-743f347e274d", + "node_type": "1", + "metadata": {}, + "hash": "83c9ceb9c38b2cb380b3ebf6391b971fa85d988f99b4c2787d825a22568ab679", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: Complex liquid-handling commands for Opentrons robots can handle large groups of wells and repetitive actions.\n\n.. _v2-complex-commands:\n\n****************\nComplex Commands\n****************\n\n.. toctree::\n complex_commands/sources_destinations\n complex_commands/order_operations\n complex_commands/parameters\n\nComplex liquid handling commands combine multiple :ref:`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 - :py:meth:`.InstrumentContext.transfer`\n - :py:meth:`.InstrumentContext.distribute`\n - :py:meth:`.InstrumentContext.consolidate`\n\nPages in this section of the documentation cover:\n\n - :ref:`complex-source-dest`: Which wells complex commands aspirate from and dispense to.\n - :ref:`complex-command-order`: The order of basic commands that are part of a complex commmand.\n - :ref:`complex_params`: Additional keyword arguments that affect complex command behavior.\n \nCode samples throughout these pages assume that you've loaded the pipettes and labware from the :ref:`basic protocol template `.", + "start_char_idx": 0, + "end_char_idx": 1621, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "001911ad-fe0d-41d8-8799-743f347e274d": { + "__data__": { + "id_": "001911ad-fe0d-41d8-8799-743f347e274d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "038d0cad-dcfd-42eb-842d-10ceebf9d1c8", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_complex_commands.rst", + "file_name": "new_complex_commands.rst", + "file_size": 1622, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "73393e89720214477942e4f191ae9e56bf6d31e07b0f2ec149b0d16b3ea4e711", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "49ca0de0-7091-405d-b0d4-82aaf63f96fb", + "node_type": "1", + "metadata": {}, + "hash": "6288063efc7b46ab9e80e0eeab39c4f03fe76b3bb238bbb1ac0d49c60a9737eb", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: Useful code snippets for working with Opentrons robots.\n\n.. _new-examples:\n\n*****************\nProtocol Examples\n*****************\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've learned from working through the :ref:`tutorial `. Try adding different hardware, labware, and commands to a sample protocol and test its validity after importing it into the Opentrons App.\n\nUsing These Protocols\n=====================\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 # This code uses named arguments\n tiprack_1 = protocol.load_labware(\n load_name='opentrons_flex_96_tiprack_200ul',\n location='D2')\n\n # This code uses positional arguments\n tiprack_1 = protocol.load_labware('opentrons_flex_96_tiprack_200ul','D2') \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're unsure about what's 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.\n\nInstruments and Labware\n=======================\n\nThe sample protocols all use the following pipettes:\n\n* Flex 1-Channel Pipette (5\u20131000 uL). The API load name for this pipette is ``flex_1channel_1000``.\n* P300 Single-Channel GEN2 pipette for the OT-2.", + "start_char_idx": 0, + "end_char_idx": 2131, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "49ca0de0-7091-405d-b0d4-82aaf63f96fb": { + "__data__": { + "id_": "49ca0de0-7091-405d-b0d4-82aaf63f96fb", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "001911ad-fe0d-41d8-8799-743f347e274d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ff03525271d26d9494fc255e8c6ab481c668c005611e308ff2ed622cf6260ef9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a571e22f-f6b7-4f59-b77a-75ff196f623f", + "node_type": "1", + "metadata": {}, + "hash": "491e6598543ce89fdd14ae3a65f61bd1a401ec5b58584426c210d53c1a2eb577", + "class_name": "RelatedNodeInfo" + } + }, + "text": "It shows the parameter name and its value together (e.g. ``location='D2'``), which may be helpful when you're unsure about what's 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.\n\nInstruments and Labware\n=======================\n\nThe sample protocols all use the following pipettes:\n\n* Flex 1-Channel Pipette (5\u20131000 uL). 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.. list-table::\n :header-rows: 1\n\n * - Labware type\n - Labware name\n - API load name\n * - Reservoir\n - USA Scientific 12-Well Reservoir 22 mL\n - ``usascientific_12_reservoir_22ml``\n * - Well plate\n - Corning 96-Well Plate 360 uL Flat\n - ``corning_96_wellplate_360ul_flat``\n * - Flex tip rack\n - Opentrons Flex 96 Tip Rack 200 uL\n - ``opentrons_flex_96_tiprack_200ul``\n * - OT-2 tip rack\n - Opentrons 96 Tip Rack 300 uL\n - ``opentrons_96_tiprack_300ul``\n\n.. _protocol-template:\n \nProtocol Template\n=================\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.\n\n tabs::\n\n . tab:: Flex \n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"|apiLevel|\"}\n\n def run(protocol: protocol_api.ProtocolContext):\n # load tip rack in deck slot D3\n tiprack = protocol.", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a571e22f-f6b7-4f59-b77a-75ff196f623f": { + "__data__": { + "id_": "a571e22f-f6b7-4f59-b77a-75ff196f623f", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "49ca0de0-7091-405d-b0d4-82aaf63f96fb", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "4cfd482b2ea83f8da6c62ae77dfa22ec599ac7fa3508c5c93ae9288f528bdd2f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3679d4e1-6415-4993-80a2-9bb483920080", + "node_type": "1", + "metadata": {}, + "hash": "bea7aee0f342fc4e407616af675e393d68585575c01bb7f593ba2dbcfe95ced5", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.\n\n tabs::\n\n . tab:: Flex \n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"|apiLevel|\"}\n\n def 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 # Put protocol commands here\n \n . tab:: OT-2 \n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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.", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3679d4e1-6415-4993-80a2-9bb483920080": { + "__data__": { + "id_": "3679d4e1-6415-4993-80a2-9bb483920080", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a571e22f-f6b7-4f59-b77a-75ff196f623f", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "72f0f870fd29e986879ed9ea7feedb48f43b9b1bd34eeb71fdf5f251d3136376", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "bf1b101e-c592-487a-a555-ab3968da1332", + "node_type": "1", + "metadata": {}, + "hash": "e0db231e545d3a4657ae9ffcd038d196899e006220e02a608c47271683cf0044", + "class_name": "RelatedNodeInfo" + } + }, + "text": "tab:: OT-2 \n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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\nTransferring Liquids\n====================\n\nThese protocols demonstrate how to move 100 uL of liquid from one well to another.\n\nBasic Method\n------------\n\nThis protocol uses some :ref:`building block commands ` to tell the robot, explicitly, where to go to aspirate and dispense liquid. These commands include the :py:meth:`~.InstrumentContext.pick_up_tip`, :py:meth:`~.InstrumentContext.aspirate`, and :py:meth:`~.InstrumentContext.dispense` methods.", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "bf1b101e-c592-487a-a555-ab3968da1332": { + "__data__": { + "id_": "bf1b101e-c592-487a-a555-ab3968da1332", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3679d4e1-6415-4993-80a2-9bb483920080", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "0e8b5dc4936325ccf92a829345153f1af472e7122e7a983d4f6a04f83d2e7c31", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903", + "node_type": "1", + "metadata": {}, + "hash": "7c40b5109c3f8767bf4bcb30710a4da992bb5554e2f5bb4f64a93e3040b67f4f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\nTransferring Liquids\n====================\n\nThese protocols demonstrate how to move 100 uL of liquid from one well to another.\n\nBasic Method\n------------\n\nThis protocol uses some :ref:`building block commands ` to tell the robot, explicitly, where to go to aspirate and dispense liquid. These commands include the :py:meth:`~.InstrumentContext.pick_up_tip`, :py:meth:`~.InstrumentContext.aspirate`, and :py:meth:`~.InstrumentContext.dispense` methods.\n\n.. tabs::\n\n .. tab:: Flex\n\n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel':'|apiLevel|'}\n\n def 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 pipette_1 = protocol.load_instrument(\n instrument_name='flex_1channel_1000',\n mount='left',\n tip_racks=[tiprack_1])\n\n pipette_1.pick_up_tip()\n pipette_1.aspirate(100, plate['A1'])\n pipette_1.dispense(100, plate['B1'])\n pipette_1.drop_tip()\n\n .. tab:: OT-2\n\n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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\nAdvanced Method\n---------------\n\nThis protocol accomplishes the same thing as the previous example, but does it a little more efficiently.", + "start_char_idx": 5023, + "end_char_idx": 7804, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903": { + "__data__": { + "id_": "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "bf1b101e-c592-487a-a555-ab3968da1332", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "3fd1c3539665c0539209188efcbcb67036c5502ad8b2be2d9158e1ec2ce46902", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1f4bfba2-3e5e-4925-89a8-73161cbc762b", + "node_type": "1", + "metadata": {}, + "hash": "ab4b420600a4477ff1de34d516c9eaf75c9514abcaf61666358943b0ba230c70", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Notice how it uses the :py:meth:`.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't need separate calls to ``aspirate`` or ``dispense`` here. \n\n.. tabs::\n\n .. tab:: Flex\n\n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel': '|apiLevel|'}\n\n def 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 pipette_1 = protocol.load_instrument(\n instrument_name='flex_1channel_1000',\n mount='left',\n tip_racks=[tiprack_1])\n # transfer 100 uL from well A1 to well B1\n pipette_1.transfer(100, plate['A1'], plate['B1'])\n \n .. tab:: OT-2\n\n .. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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 uL from well A1 to well B1\n p300.transfer(100, plate['A1'], plate['B1'])\n\n\nLoops\n=====\n\nIn Python, a loop is an instruction that keeps repeating an action until a specific condition is met.", + "start_char_idx": 7805, + "end_char_idx": 9937, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1f4bfba2-3e5e-4925-89a8-73161cbc762b": { + "__data__": { + "id_": "1f4bfba2-3e5e-4925-89a8-73161cbc762b", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "727f6fe68c05c3cef80b9fbc9c1d6fd6091b6c83eeefb375ddc3d69664b948be", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ebd8a76d-2377-4ab3-8353-68199c4f82cc", + "node_type": "1", + "metadata": {}, + "hash": "b0f72acca095214786b2c16c7638b7d6310c8baa284d3bfca13f9e3e8469c1b7", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Loops\n=====\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's current value to transfer liquid from all the wells in a reservoir to all the wells in a 96-well plate. \n\n tabs::\n\n . tab:: Flex\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel':'|apiLevel|'}\n\n def 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 pipette_1 = protocol.load_instrument(\n instrument_name='flex_1channel_1000',\n mount='left',\n tip_racks=[tiprack_1])\n \n # distribute 20 uL from reservoir:A1 -> plate:row:1\n # distribute 20 uL 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_1.distribute(200, reservoir.wells()[i], plate.rows()[i])\n\n . tab:: OT-2\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name='corning_96_wellplate_360ul_flat',", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ebd8a76d-2377-4ab3-8353-68199c4f82cc": { + "__data__": { + "id_": "ebd8a76d-2377-4ab3-8353-68199c4f82cc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1f4bfba2-3e5e-4925-89a8-73161cbc762b", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b0fc079d7f8a46f3579d8cc4afd8b198d30ca2dd676ed5c15d5762ff2c34555b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ea58997e-836d-45c6-a5c5-9aea900c68d1", + "node_type": "1", + "metadata": {}, + "hash": "a943812863ff34050d99d9ede2d6781c7e31bba4060845dd22e2b3b52887fadd", + "class_name": "RelatedNodeInfo" + } + }, + "text": "mount='left',\n tip_racks=[tiprack_1])\n \n # distribute 20 uL from reservoir:A1 -> plate:row:1\n # distribute 20 uL 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_1.distribute(200, reservoir.wells()[i], plate.rows()[i])\n\n . tab:: OT-2\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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 uL from reservoir:A1 -> plate:row:1\n # distribute 20 uL 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\nNotice here how Python's :py:class:`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.", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ea58997e-836d-45c6-a5c5-9aea900c68d1": { + "__data__": { + "id_": "ea58997e-836d-45c6-a5c5-9aea900c68d1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ebd8a76d-2377-4ab3-8353-68199c4f82cc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f1d7a0266cb346ffed6714e14a91189689837013e7448542a93b1544ee799f01", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e89492ef-ec34-4846-bccb-77d98bebdea6", + "node_type": "1", + "metadata": {}, + "hash": "c530df69c55cc3ef0dd3585081a8064a434fce4eb097612b60bf4d0a0e15c8c9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "location=4)\n p300 = protocol.load_instrument(\n instrument_name='p300_single',\n mount='left',\n tip_racks=[tiprack_1])\n \n # distribute 20 uL from reservoir:A1 -> plate:row:1\n # distribute 20 uL 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\nNotice here how Python's :py:class:`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.\n\nMultiple Air Gaps\n=================\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.\n\n tabs::\n\n . tab:: Flex\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel':'|apiLevel|'}\n\n def 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 pipette_1 = protocol.", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e89492ef-ec34-4846-bccb-77d98bebdea6": { + "__data__": { + "id_": "e89492ef-ec34-4846-bccb-77d98bebdea6", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ea58997e-836d-45c6-a5c5-9aea900c68d1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "26eab53fc5cd546e6f3ad13dadab614bf52786ddb0899c55729cf53081132a80", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a1d75aef-b074-4f53-83f9-9b37bb7cebe0", + "node_type": "1", + "metadata": {}, + "hash": "f0c061a13d12ad5e7c6dd89d481ae71944b3f20dd90f8cf27f438ce82d4e99b3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.\n\n tabs::\n\n . tab:: Flex\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel':'|apiLevel|'}\n\n def 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 pipette_1 = protocol.load_instrument(\n instrument_name='flex_1channel_1000', \n mount='left',\n tip_racks=[tiprack_1])\n\n pipette_1.pick_up_tip()\n\n # aspirate from the first 5 wells\n for well in reservoir.wells()[:4]:\n pipette_1.aspirate(volume=35, location=well)\n pipette_1.air_gap(10)\n \n pipette_1.dispense(225, plate['A1'])\n\n pipette_1.return_tip()\n\n . tab:: OT-2\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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',", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a1d75aef-b074-4f53-83f9-9b37bb7cebe0": { + "__data__": { + "id_": "a1d75aef-b074-4f53-83f9-9b37bb7cebe0", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e89492ef-ec34-4846-bccb-77d98bebdea6", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "dd8adcd568c866f437cff124e72ab120e98d25b17c17a205f571627f064871ad", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3eee5d97-4fcf-4f68-b8ae-4a361882f81d", + "node_type": "1", + "metadata": {}, + "hash": "8ac0293691f6f39b721068adbd2c4f7261a9e772823706160e80fa2f360d0d16", + "class_name": "RelatedNodeInfo" + } + }, + "text": "dispense(225, plate['A1'])\n\n pipette_1.return_tip()\n\n . tab:: OT-2\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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()[:4]:\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\nNotice here how Python's :py:class:`slice` functionality (in the code sample as ``[:4]``) 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 Corning 96-well plate used here, this means well A1=0, B1=1, C1=2, and so on to the last well used, which is E1=4. See also, the :ref:`tutorial-commands` section of the Tutorial.\n\nDilution\n========\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.\n\n tabs::\n\n . tab:: Flex\n\n .", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3eee5d97-4fcf-4f68-b8ae-4a361882f81d": { + "__data__": { + "id_": "3eee5d97-4fcf-4f68-b8ae-4a361882f81d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a1d75aef-b074-4f53-83f9-9b37bb7cebe0", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "3fe524d9e71ca84b5ec64ea6994782fc1cdba3ed2da4e86b6126fec46ce447c7", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "01d0cf15-5368-4755-adef-b598719b3d15", + "node_type": "1", + "metadata": {}, + "hash": "3a7e48e6492a9f7e9206451fb223cb5c79b29ed75bcac8497943b3f7da602265", + "class_name": "RelatedNodeInfo" + } + }, + "text": "plate['A1'])\n\n p300.return_tip()\n\nNotice here how Python's :py:class:`slice` functionality (in the code sample as ``[:4]``) 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 Corning 96-well plate used here, this means well A1=0, B1=1, C1=2, and so on to the last well used, which is E1=4. See also, the :ref:`tutorial-commands` section of the Tutorial.\n\nDilution\n========\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.\n\n tabs::\n\n . tab:: Flex\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel': '|apiLevel|'}\n\n def 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 pipette_1 = protocol.load_instrument(\n instrument_name='flex_1channel_1000',\n mount='left',\n tip_racks=[tiprack_1, tiprack_2])\n # Dispense diluent\n pipette_1.distribute(50, reservoir['A12'], plate.", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "01d0cf15-5368-4755-adef-b598719b3d15": { + "__data__": { + "id_": "01d0cf15-5368-4755-adef-b598719b3d15", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3eee5d97-4fcf-4f68-b8ae-4a361882f81d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e03cf334e1fde26d159a31fbf8b2440573090abed4e7d616c5690f6a5e7b86d4", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f64f3cfd-812d-4232-9d9b-a3fad6f17d19", + "node_type": "1", + "metadata": {}, + "hash": "eba6ce50054346189861b1bfbb3751d9e13be1ae3728eb85fa003ccea0f126c7", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 pipette_1 = protocol.load_instrument(\n instrument_name='flex_1channel_1000',\n mount='left',\n tip_racks=[tiprack_1, tiprack_2])\n # Dispense diluent\n pipette_1.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 uL of source to first well in column\n pipette_1.transfer(30, source, row[0], mix_after=(3, 25))\n\n # dilute the sample down the column\n pipette_1.transfer(\n 30, row[:11], row[1:],\n mix_after=(3, 25))\n \n . tab:: OT-2\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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',", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f64f3cfd-812d-4232-9d9b-a3fad6f17d19": { + "__data__": { + "id_": "f64f3cfd-812d-4232-9d9b-a3fad6f17d19", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "01d0cf15-5368-4755-adef-b598719b3d15", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c4cef535d15d9d55e933d26c6f079b3fbd58f714ef8de00b553b29d7b697ef61", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "0d294764-3db7-4738-8456-a70e444b0210", + "node_type": "1", + "metadata": {}, + "hash": "75a68cbb5992e427627fb2d426bb295f53da5f4374978f9d155a4d6f01be22fa", + "class_name": "RelatedNodeInfo" + } + }, + "text": "transfer(\n 30, row[:11], row[1:],\n mix_after=(3, 25))\n \n . tab:: OT-2\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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 uL 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\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 :ref:`tutorial-commands` section of the Tutorial.\n\nPlate Mapping\n=============\n\nThis protocol dispenses different volumes of liquids to a well plate and automatically refills the pipette when empty.\n\n tabs::\n\n .", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "0d294764-3db7-4738-8456-a70e444b0210": { + "__data__": { + "id_": "0d294764-3db7-4738-8456-a70e444b0210", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f64f3cfd-812d-4232-9d9b-a3fad6f17d19", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f641395428abe5ddc2ede6c0451e04a06d02e464054cde7f9a6e50ef7bd2f20b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5a2f200d-58d4-46f9-8e02-ab06be757e72", + "node_type": "1", + "metadata": {}, + "hash": "35532153d624a2749e80681a9c3215fe25e631b3facb89d11e6c9b401a843278", + "class_name": "RelatedNodeInfo" + } + }, + "text": "wells()[i]\n source = reservoir.wells()[i]\n row = plate.rows()[i]\n\n # transfer 30 uL 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\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 :ref:`tutorial-commands` section of the Tutorial.\n\nPlate Mapping\n=============\n\nThis protocol dispenses different volumes of liquids to a well plate and automatically refills the pipette when empty.\n\n tabs::\n\n . tab:: Flex\n\n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n requirements = {'robotType': 'Flex', 'apiLevel': '2.15'}\n \n def 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 pipette_1 = 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,", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5a2f200d-58d4-46f9-8e02-ab06be757e72": { + "__data__": { + "id_": "5a2f200d-58d4-46f9-8e02-ab06be757e72", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "0d294764-3db7-4738-8456-a70e444b0210", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "94f415838f12d7bbf24a07b6d71af60f02dff6bd0254fab55d52a87dea42185d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27", + "node_type": "1", + "metadata": {}, + "hash": "5139d8968727e3ba39a66d4f6b79e047169ee57dbc48555e4fae2194f4e91ec3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 pipette_1 = 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_1.distribute(water_volumes, reservoir['A12'], plate.wells())\n\n .", + "start_char_idx": 20993, + "end_char_idx": 22347, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27": { + "__data__": { + "id_": "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5a2f200d-58d4-46f9-8e02-ab06be757e72", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "211c6a4f99f6c22ba661634af60a2b1c8b54433814817dd1e46ea70f4b81d7a0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6811ba89-1843-4937-94f8-6dcfb72d2d0e", + "node_type": "1", + "metadata": {}, + "hash": "319699617505e8a638ccb02677f96e4322a1722543292414cfdb8ffaafd9cf1b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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_1.distribute(water_volumes, reservoir['A12'], plate.wells())\n\n . tab:: OT-2\n \n . code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n metadata = {'apiLevel': '2.14'}\n \n def 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,", + "start_char_idx": null, + "end_char_idx": null, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6811ba89-1843-4937-94f8-6dcfb72d2d0e": { + "__data__": { + "id_": "6811ba89-1843-4937-94f8-6dcfb72d2d0e", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "c4a5fc4c-515a-4d04-913d-fc1585cf035e", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "915ce1443b25a76f78c2600129054e48a6b00ce3460cd0a862c21108ab8b73cb", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e149aaea1fb448127d53d76772cfd254092813970e1be8a6b38531f5fd3e4970", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f96265c5-d43a-4e42-9bd9-350aafc277ab", + "node_type": "1", + "metadata": {}, + "hash": "2d554c161c4ac9d6d3247027806f12619b0c6403a8cb669f61ce6488377cec23", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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())", + "start_char_idx": 22779, + "end_char_idx": 24194, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f96265c5-d43a-4e42-9bd9-350aafc277ab": { + "__data__": { + "id_": "f96265c5-d43a-4e42-9bd9-350aafc277ab", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6811ba89-1843-4937-94f8-6dcfb72d2d0e", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "575543550c4357e352bdc607a1fcca4fe050f3a3c9d9d418ef60a9daee20e9a7", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a1677329-df20-406a-a4a6-05c587756fcf", + "node_type": "1", + "metadata": {}, + "hash": "127eb54051c6cc721667cb63084ca102776388c2e088ca902022d7d80c9ab450", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to load and work with Opentrons-verified and custom labware in a Python protocol.\n\n.. _new-labware:\n\n#######\nLabware\n#######\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\n.. note::\n\n Code 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 :ref:`deck-slots` for more information.\n\n*************\nLabware Types\n*************\n\nDefault Labware\n===============\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 :py:meth:`~.ProtocolContext.load_labware` method in your protocol.\n\n.. _v2-custom-labware:\n\nCustom Labware\n==============\n\nCustom labware is labware that is not listed the Labware Library. If your protocol needs something that's 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 `_.", + "start_char_idx": 0, + "end_char_idx": 1948, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a1677329-df20-406a-a4a6-05c587756fcf": { + "__data__": { + "id_": "a1677329-df20-406a-a4a6-05c587756fcf", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f96265c5-d43a-4e42-9bd9-350aafc277ab", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c5a0fa16dc8ac07f7b400985a946f226df1874c51fa1be9dd0bd7d8f7f48c8ad", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "32ec23f8-e456-4acc-9c38-fa5019e6ec28", + "node_type": "1", + "metadata": {}, + "hash": "3dca804a5c092b2fa8f94ff3219afd29f2e05f6aeb5b580a8dc65d703ac6b590", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 :py:meth:`~.ProtocolContext.load_labware` method in your protocol.\n\n.. _v2-custom-labware:\n\nCustom Labware\n==============\n\nCustom labware is labware that is not listed the Labware Library. If your protocol needs something that's 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've 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.\n\n***************\nLoading Labware\n***************\n\nThroughout this section, we'll use the labware listed in the following table.", + "start_char_idx": 1134, + "end_char_idx": 2412, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "32ec23f8-e456-4acc-9c38-fa5019e6ec28": { + "__data__": { + "id_": "32ec23f8-e456-4acc-9c38-fa5019e6ec28", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a1677329-df20-406a-a4a6-05c587756fcf", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "04d841f7b73b722fff9d87b1252a46b022f94a78921f7d7cd67e726a7b90928a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ee6324cb-cfa3-4721-974a-db01834600a4", + "node_type": "1", + "metadata": {}, + "hash": "287bc7411f88e773fe5faee601dde1ccaa0409f458adc896b788252613d35f74", + "class_name": "RelatedNodeInfo" + } + }, + "text": "If your protocol needs something that's 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've 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.\n\n***************\nLoading Labware\n***************\n\nThroughout this section, we'll use the labware listed in the following table.\n\n.. list-table::\n :widths: 20 40 45\n :header-rows: 1\n\n * - Labware type\n - Labware name\n - API load name\n * - Well plate\n - `Corning 96 Well Plate 360 uL Flat `_\n - ``corning_96_wellplate_360ul_flat``\n * - Flex tip rack\n - `Opentrons Flex 96 Tips 200 uL `_\n - ``opentrons_flex_96_tiprack_200ul``\n * - OT-2 tip rack\n - `Opentrons 96 Tip Rack 300 uL `_\n - ``opentrons_96_tiprack_300ul``\n\nSimilar to the code sample in :ref:`overview-section-v2`, here's how you use the :py:meth:`.ProtocolContext.load_labware` method to load labware on either Flex or OT-2.", + "start_char_idx": 1576, + "end_char_idx": 3202, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ee6324cb-cfa3-4721-974a-db01834600a4": { + "__data__": { + "id_": "ee6324cb-cfa3-4721-974a-db01834600a4", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "32ec23f8-e456-4acc-9c38-fa5019e6ec28", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "0e03fdd77324ea921af4eb2119f8d43f631db3a01998fffc48d5becf01a65a6c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "5c74fb88-e897-420e-882b-3945dea9c505", + "node_type": "1", + "metadata": {}, + "hash": "cc0650c1082e402ddcf4afa1d07fba558c1a4547ddf0390dc5881b64e49f0553", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. code-block:: python\n\n #Flex\n tiprack = protocol.load_labware('opentrons_flex_96_tiprack_200ul', 'D1')\n plate = protocol.load_labware('corning_96_wellplate_360ul_flat', 'D2')\n\n.. code-block:: python\n\n #OT-2\n tiprack = protocol.load_labware('opentrons_96_tiprack_300ul', '1')\n plate = protocol.load_labware('corning_96_wellplate_360ul_flat', '2')\n \n..\n\nWhen the ``load_labware`` method loads labware into your protocol, it returns a :py:class:`~opentrons.protocol_api.labware.Labware` object.\n\n.. _labware-label:\n\n.. Tip::\n \n The ``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 tiprack = protocol.load_labware(\n load_name='corning_96_wellplate_360ul_flat',\n location='D1',\n label='any-name-you-want')\n\n.. _labware-on-adapters:\n\nLoading Labware on Adapters\n===========================\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.\n\nLoading Separately\n------------------\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.", + "start_char_idx": 3205, + "end_char_idx": 4860, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "5c74fb88-e897-420e-882b-3945dea9c505": { + "__data__": { + "id_": "5c74fb88-e897-420e-882b-3945dea9c505", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ee6324cb-cfa3-4721-974a-db01834600a4", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9ece4a2993be7c361a41783f02f4dcfb8aec007914bdcc203f054ac247692db3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "85a82ba3-b051-4df7-ba6e-7a0bcbc27353", + "node_type": "1", + "metadata": {}, + "hash": "5477de911899c971a0507ca2c57dad6c65104cb4810b5e5768af70ab4121b8ba", + "class_name": "RelatedNodeInfo" + } + }, + "text": "For example::\n \n tiprack = protocol.load_labware(\n load_name='corning_96_wellplate_360ul_flat',\n location='D1',\n label='any-name-you-want')\n\n.. _labware-on-adapters:\n\nLoading Labware on Adapters\n===========================\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.\n\nLoading Separately\n------------------\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 hs_mod = protocol.load_module('heaterShakerModuleV1', 'D1')\n hs_adapter = hs_mod.load_adapter('opentrons_96_flat_bottom_adapter')\n hs_plate = hs_mod.load_labware('nest_96_wellplate_200ul_flat')\n \n.. versionadded:: 2.15\n The ``load_adapter()`` method.\n\nLoading Together\n----------------\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 hs_plate = hs_mod.load_labware(\n name='nest_96_wellplate_200ul_flat',\n adapter='opentrons_96_flat_bottom_adapter'\n )\n\n.. versionadded:: 2.15\n The ``adapter`` parameter.", + "start_char_idx": 3948, + "end_char_idx": 5682, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "85a82ba3-b051-4df7-ba6e-7a0bcbc27353": { + "__data__": { + "id_": "85a82ba3-b051-4df7-ba6e-7a0bcbc27353", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "5c74fb88-e897-420e-882b-3945dea9c505", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e00764a6f37e887b3158e3db952b7522d17e3c2819595876fb83f603b5310cd9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d8dd091c-aa13-44d1-938f-a12292d48d95", + "node_type": "1", + "metadata": {}, + "hash": "41235639871dcecd660880d8f955fbe1f631847f8efbeec37fd3265acb691380", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Loading Together\n----------------\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 hs_plate = hs_mod.load_labware(\n name='nest_96_wellplate_200ul_flat',\n adapter='opentrons_96_flat_bottom_adapter'\n )\n\n.. versionadded:: 2.15\n The ``adapter`` parameter.\n\nThe API also has some \"combination\" labware definitions, which treat the adapter and labware as a unit::\n\n hs_combo = hs_mod.load_labware(\n 'opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat'\n )\n\nLoading labware this way prevents you from :ref:`moving the labware ` onto or off of the adapter, so it's less flexible than loading the two separately. Avoid using combination definitions unless your protocol specifies an ``apiLevel`` of 2.14 or lower.\n\n.. _new-well-access:\n\n**************************\nAccessing Wells in Labware\n**************************\n\nWell Ordering\n=============\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\n.. image:: ../img/well_iteration/Well_Iteration.png\n\nThe code in this section assumes that ``plate`` is a 24-well plate.", + "start_char_idx": 5259, + "end_char_idx": 7038, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d8dd091c-aa13-44d1-938f-a12292d48d95": { + "__data__": { + "id_": "d8dd091c-aa13-44d1-938f-a12292d48d95", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "85a82ba3-b051-4df7-ba6e-7a0bcbc27353", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d3efa2b8b9b7cce90286b2e5d170ce26ddae377f497d75e7833feb948eb34455", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "98320e0a-868d-4352-a07e-071e5897432d", + "node_type": "1", + "metadata": {}, + "hash": "b9f264879b7fade0c8966c9002f9877f83eeb1758a591cdd19c1b9835c730ab9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Rows 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\n.. image:: ../img/well_iteration/Well_Iteration.png\n\nThe code in this section assumes that ``plate`` is a 24-well plate. For example:\n\n.. code-block:: python\n\n plate = protocol.load_labware('corning_24_wellplate_3.4ml_flat', location='D1')\n\n.. _well-accessor-methods:\n\nAccessor Methods\n================\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.. list-table::\n :widths: 20 30 50\n :header-rows: 1\n\n * - Method\n - Returns\n - Example\n * - :py:meth:`.Labware.wells`\n - List of all wells.\n - ``[labware:A1, labware:B1, labware:C1...]``\n * - :py:meth:`.Labware.rows`\n - List of lists grouped by row.\n - ``[[labware:A1, labware:A2...], [labware:B1, labware:B2...]]``\n * - :py:meth:`.Labware.columns`\n - List of lists grouped by column.\n - ``[[labware:A1, labware:B1...], [labware:A2, labware:B2...]]``\n * - :py:meth:`.Labware.wells_by_name`\n - Dictionary with well names as keys.", + "start_char_idx": 6401, + "end_char_idx": 8012, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "98320e0a-868d-4352-a07e-071e5897432d": { + "__data__": { + "id_": "98320e0a-868d-4352-a07e-071e5897432d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d8dd091c-aa13-44d1-938f-a12292d48d95", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "19cd63ffbebf9d15f6f7bd89e81f500722a5be10f7fb80557d66c8ef6f202d87", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "46c5a59c-4489-44df-a1fd-dc958dd937c9", + "node_type": "1", + "metadata": {}, + "hash": "d9a346d2c290f1020b5ebf60b7d6cc832358e4081de2602f0c139ac4b71d8b6f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- ``[labware:A1, labware:B1, labware:C1...]``\n * - :py:meth:`.Labware.rows`\n - List of lists grouped by row.\n - ``[[labware:A1, labware:A2...], [labware:B1, labware:B2...]]``\n * - :py:meth:`.Labware.columns`\n - List of lists grouped by column.\n - ``[[labware:A1, labware:B1...], [labware:A2, labware:B2...]]``\n * - :py:meth:`.Labware.wells_by_name`\n - Dictionary with well names as keys.\n - ``{'A1': labware:A1, 'B1': labware:B1}``\n * - :py:meth:`.Labware.rows_by_name`\n - Dictionary with row names as keys.\n - ``{'A': [labware:A1, labware:A2...], 'B': [labware:B1, labware:B2...]}``\n * - :py:meth:`.Labware.columns_by_name`\n - Dictionary with column names as keys.\n - ``{'1': [labware:A1, labware:B1...], '2': [labware:A2, labware:B2...]}``\n\nAccessing Individual Wells\n==========================\n\nDictionary Access\n-----------------\n\nThe simplest way to refer to a single well is by its name, like A1 or D6. :py:meth:`.Labware.wells_by_name` accomplishes this. This is such a common task that the API also has an equivalent shortcut: dictionary indexing.\n\n.. code-block:: python\n\n a1 = plate.wells_by_name()['A1']\n d6 = plate['D6'] # dictionary indexing\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\n..\n\nList Access From ``wells``\n--------------------------\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.", + "start_char_idx": 7599, + "end_char_idx": 9204, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "46c5a59c-4489-44df-a1fd-dc958dd937c9": { + "__data__": { + "id_": "46c5a59c-4489-44df-a1fd-dc958dd937c9", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "98320e0a-868d-4352-a07e-071e5897432d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "89905406af15eaf8bc4dd48c8c826a1758a00d927a9db493d4ed7638609ba888", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8c101002-338f-44e2-aa49-eea62c29b026", + "node_type": "1", + "metadata": {}, + "hash": "1f6ddf6e34bd0931dcfce32834458b0a85df348cde774f319ed2f6f26ce439f8", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":py:meth:`.Labware.wells_by_name` accomplishes this. This is such a common task that the API also has an equivalent shortcut: dictionary indexing.\n\n.. code-block:: python\n\n a1 = plate.wells_by_name()['A1']\n d6 = plate['D6'] # dictionary indexing\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\n..\n\nList Access From ``wells``\n--------------------------\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.. code-block:: python\n\n plate.wells()[0] # well A1\n plate.wells()[23] # well D6\n\n.. tip::\n\n You 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\n..\n\nAccessing Groups of Wells\n=========================\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 :py:meth:`.Labware.rows_by_name` to access a specific row of wells or :py:meth:`.Labware.columns_by_name` to access a specific column of wells on a labware.", + "start_char_idx": 8558, + "end_char_idx": 10226, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8c101002-338f-44e2-aa49-eea62c29b026": { + "__data__": { + "id_": "8c101002-338f-44e2-aa49-eea62c29b026", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "46c5a59c-4489-44df-a1fd-dc958dd937c9", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "cff3c55cfd32d55c8c39505f2fc9c69484f729dc87e7edbc3f86cc17dc3c4b95", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "20952efe-090a-45aa-b177-e53ec486e3f1", + "node_type": "1", + "metadata": {}, + "hash": "c892187b278e1bcbdba9834f2d8ae015dbede08f919786137b078ed679cb76fb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Whichever well access method you use, your protocol will be most maintainable if you use only one access method consistently.\n\n..\n\nAccessing Groups of Wells\n=========================\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 :py:meth:`.Labware.rows_by_name` to access a specific row of wells or :py:meth:`.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.. code-block:: python\n\n row_dict = plate.rows_by_name()['A']\n row_list = plate.rows()[0] # equivalent to the line above\n column_dict = plate.columns_by_name()['1']\n column_list = plate.columns()[0] # equivalent to the line above\n\n print('Column \"1\" has', len(column_dict), 'wells') # Column \"1\" has 4 wells\n print('Row \"A\" has', len(row_dict), 'wells') # Row \"A\" has 6 wells\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 uL of liquid from the first well of a reservoir to each of the wells of row ``'A'`` on a plate::\n\n for well in plate.rows()[0]:\n pipette.transfer(reservoir['A1'], well, 50)\n\nEquivalently, using ``rows_by_name``::\n\n for well in plate.rows_by_name()['A'].values():\n pipette.transfer(reservoir['A1'], well, 50)\n\n..\n\n*************************\nLabeling Liquids in Wells\n*************************\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.", + "start_char_idx": 9638, + "end_char_idx": 11627, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "20952efe-090a-45aa-b177-e53ec486e3f1": { + "__data__": { + "id_": "20952efe-090a-45aa-b177-e53ec486e3f1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8c101002-338f-44e2-aa49-eea62c29b026", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "38b98774bb03e2095eeb667d4061aada95c6b7c44a2c4232a735a768c02837e0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f7adff25-5877-4d67-a53a-1a54527b2cc6", + "node_type": "1", + "metadata": {}, + "hash": "e09a8f1ee4334db9c812c006df382fe9ea81bc816d6c6240180c5c4653feab5b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "For example, to transfer 50 uL of liquid from the first well of a reservoir to each of the wells of row ``'A'`` on a plate::\n\n for well in plate.rows()[0]:\n pipette.transfer(reservoir['A1'], well, 50)\n\nEquivalently, using ``rows_by_name``::\n\n for well in plate.rows_by_name()['A'].values():\n pipette.transfer(reservoir['A1'], well, 50)\n\n..\n\n*************************\nLabeling Liquids in Wells\n*************************\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 :py:meth:`.ProtocolContext.define_liquid` and then label individual wells by calling :py:meth:`.Well.load_liquid`.\n\nLet's examine how these two methods work. The following examples demonstrate how to define colored water samples for a well plate and reservoir.\n\nDefining Liquids\n================\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.. code-block:: python\n\n greenWater = protocol.define_liquid(\n name=\"Green water\",\n description=\"Green colored water for demo\",\n display_color=\"#00FF00\",\n )\n blueWater = protocol.define_liquid(\n name=\"Blue water\",\n description=\"Blue colored water for demo\",\n display_color=\"#0000FF\",\n )\n\n.. versionadded:: 2.14\n \nThe ``display_color`` parameter accepts a hex color code, which adds a color to that liquid's 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.", + "start_char_idx": 10839, + "end_char_idx": 12994, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f7adff25-5877-4d67-a53a-1a54527b2cc6": { + "__data__": { + "id_": "f7adff25-5877-4d67-a53a-1a54527b2cc6", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "20952efe-090a-45aa-b177-e53ec486e3f1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f3d3caa3c3fc79ec09ffa9e3be6208f5c722dfe6cb139858a63488f94a79fb80", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "55164bf4-f736-40f9-9876-a5f6c32c463a", + "node_type": "1", + "metadata": {}, + "hash": "981e056d7c7b2fd192b4593ade0c9a7c700fcab4934ca9b28739c8c237010a6f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The arguments for ``define_liquid`` are all required, and let you name the liquid, describe it, and assign it a color:\n\n.. code-block:: python\n\n greenWater = protocol.define_liquid(\n name=\"Green water\",\n description=\"Green colored water for demo\",\n display_color=\"#00FF00\",\n )\n blueWater = protocol.define_liquid(\n name=\"Blue water\",\n description=\"Blue colored water for demo\",\n display_color=\"#0000FF\",\n )\n\n.. versionadded:: 2.14\n \nThe ``display_color`` parameter accepts a hex color code, which adds a color to that liquid's 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.\n\nLabeling Wells and Reservoirs\n=============================\n\nThis example uses ``load_liquid`` to label the initial well location, contents, and volume (in uL) 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.. code-block:: python\n\n well_plate[\"A1\"].load_liquid(liquid=greenWater, volume=50)\n well_plate[\"A2\"].load_liquid(liquid=greenWater, volume=50)\n well_plate[\"B1\"].load_liquid(liquid=blueWater, volume=50)\n well_plate[\"B2\"].load_liquid(liquid=blueWater, volume=50)\n reservoir[\"A1\"].load_liquid(liquid=greenWater, volume=200)\n reservoir[\"A2\"].load_liquid(liquid=blueWater, volume=200)\n \n.. versionadded:: 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\n.. note::\n ``load_liquid`` does not validate volume for your labware nor does it prevent you from adding multiple liquids to each well.", + "start_char_idx": 12216, + "end_char_idx": 14247, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "55164bf4-f736-40f9-9876-a5f6c32c463a": { + "__data__": { + "id_": "55164bf4-f736-40f9-9876-a5f6c32c463a", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f7adff25-5877-4d67-a53a-1a54527b2cc6", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "00ea49654d78689de6510f212c1de757a5de6a18b1b82fd1d5a7d05258c5a2fe", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "59d8dd96-da6f-49c9-8c16-c219c359561d", + "node_type": "1", + "metadata": {}, + "hash": "76157e05e48683f8e66be106e917072a2fa570784e07d325339889c92ade3a9c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\n.. note::\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 uL well with ``greenWater``, ``volume=50``, and then also add blue water to the well. The API won't stop you. It's your responsibility to ensure the labels you use accurately reflect the amounts and types of liquid you plan to place into wells and reservoirs.\n\nLabeling vs Handling Liquids\n============================\n\nThe ``load_liquid`` arguments include a volume amount (``volume=n`` in uL). This amount is just a label. It isn't 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 :py:meth:`.transfer` to physically move liquids from a source to a destination.", + "start_char_idx": 13924, + "end_char_idx": 14957, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "59d8dd96-da6f-49c9-8c16-c219c359561d": { + "__data__": { + "id_": "59d8dd96-da6f-49c9-8c16-c219c359561d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "55164bf4-f736-40f9-9876-a5f6c32c463a", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b82d21cd37cde05129223768d4f37685a2bd6d9f6690cd62c029c722cf69ec5c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "eec8cb18-5fef-47f2-8774-3e3d70b92ec5", + "node_type": "1", + "metadata": {}, + "hash": "2caf6492569012aa6dcc6cbe443689b0750052271350dad62ad7a52b892f6783", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. note::\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 uL well with ``greenWater``, ``volume=50``, and then also add blue water to the well. The API won't stop you. It's your responsibility to ensure the labels you use accurately reflect the amounts and types of liquid you plan to place into wells and reservoirs.\n\nLabeling vs Handling Liquids\n============================\n\nThe ``load_liquid`` arguments include a volume amount (``volume=n`` in uL). This amount is just a label. It isn't 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 :py:meth:`.transfer` to physically move liquids from a source to a destination.\n\n\n.. _v2-location-within-wells:\n.. _new-labware-well-properties:\n\n***************\nWell Dimensions\n***************\n\nThe functions in the :ref:`new-well-access` section above return a single :py:class:`.Well` object or a larger object representing many wells. :py:class:`.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 :ref:`position relative to the well `.\n\nDepth\n=====\n\nUse :py:attr:`.Well.depth` to get the distance in mm between the very top of the well and the very bottom. For example, a conical well's depth is measured from the top center to the bottom center of the well.\n\n.. code-block:: python\n :substitutions:\n\n plate = protocol.load_labware('corning_96_wellplate_360ul_flat', 'D1')\n depth = plate['A1'].depth # 10.67\n\nDiameter\n========\n\nUse :py:attr:`.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.. code-block:: python\n :substitutions:\n\n plate = protocol.load_labware('corning_96_wellplate_360ul_flat', 'D1')\n diameter = plate['A1'].diameter\t # 6.86\n\nLength\n======\n\nUse :py:attr:`.Well.length` to get the length of a given well in mm. Length is defined as the distance along the robot's 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.. code-block:: python\n :substitutions:\n\n plate = protocol.load_labware('nest_12_reservoir_15ml', 'D1')\n length = plate['A1'].length\t # 8.2", + "start_char_idx": 14109, + "end_char_idx": 16893, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "eec8cb18-5fef-47f2-8774-3e3d70b92ec5": { + "__data__": { + "id_": "eec8cb18-5fef-47f2-8774-3e3d70b92ec5", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4ec99f77-fecf-482d-8345-9b715b893357", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "af0ab7963fb52c2623cf6b366b6efc07d18f8114846b53adb1b8c0f016b47d60", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "59d8dd96-da6f-49c9-8c16-c219c359561d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b1d165fc35295c3de2e08c4bcb3b397087fda4dbd0b06a0a66b77dce2a9dcd6f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "12269a25-c023-442d-bd65-064bfae06e67", + "node_type": "1", + "metadata": {}, + "hash": "54ca14648edc2c43170140d7d4f21cf876f6daf1463b6c20005ea0c76bd90dbb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Width\n=====\n\nUse :py:attr:`.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\n.. code-block:: python\n :substitutions:\n\n plate = protocol.load_labware('nest_12_reservoir_15ml', 'D1')\n width = plate['A1'].width # 71.2\n\n\n.. versionadded:: 2.9", + "start_char_idx": 16896, + "end_char_idx": 17374, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "12269a25-c023-442d-bd65-064bfae06e67": { + "__data__": { + "id_": "12269a25-c023-442d-bd65-064bfae06e67", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_modules.rst", + "file_name": "new_modules.rst", + "file_size": 1791, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "675410b2-596e-493b-8b0a-0c3990436dd3", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_modules.rst", + "file_name": "new_modules.rst", + "file_size": 1791, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "810347984ca6c94a4d4aed50aec8cadbe8a2247661320519f953e0e5c570cc61", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "eec8cb18-5fef-47f2-8774-3e3d70b92ec5", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "aba1c0eaec3a91f258d77c41339f726c1cbc1b35f1bc4a9a55a86e9098935d8f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "476220ea-1795-47f7-997b-8eb19792ef78", + "node_type": "1", + "metadata": {}, + "hash": "c9c6d80d751443da686f672244fcf346e865ba4e9f0ad69b4d5545bf421c9ac6", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to work with powered and unpowered Opentrons hardware modules in a Python protocol.\n\n.. _new_modules:\n\n****************\nHardware Modules\n****************\n\n.. toctree::\n modules/setup\n modules/heater_shaker\n modules/magnetic_block\n modules/magnetic_module\n modules/temperature_module\n modules/thermocycler\n modules/multiple_same_type\n\nHardware modules are powered and unpowered deck-mounted peripherals. The Flex and OT-2 are aware of deck-mounted powered modules when they're 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 - :ref:`Setting up modules and their labware `. \n - Working with the module contexts for each type of module.\n \n - :ref:`Heater-Shaker Module `\n - :ref:`Magnetic Block `\n - :ref:`Magnetic Module `\n - :ref:`Temperature Module `\n - :ref:`Thermocycler Module `\n - Working with :ref:`multiple modules of the same type ` in a single protocol. \n\n.. note::\n\n Throughout 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 :ref:`deck-slots` for more information.", + "start_char_idx": 0, + "end_char_idx": 1789, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "476220ea-1795-47f7-997b-8eb19792ef78": { + "__data__": { + "id_": "476220ea-1795-47f7-997b-8eb19792ef78", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "12269a25-c023-442d-bd65-064bfae06e67", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_modules.rst", + "file_name": "new_modules.rst", + "file_size": 1791, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + }, + "hash": "3ccbab2557ec321e1c33d53eb33a3a60dea6f08f945f0a660ce9177f43f47ef7", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "bbe211a7-04dd-4fea-a58d-54870d8ff0c6", + "node_type": "1", + "metadata": {}, + "hash": "38c763150ef2a0c4f1b2ca4005fb04315e5d94c608cb7086d34edc121a79595b", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to load and work with Opentrons pipettes in a Python protocol.\n\n.. _new-pipette:\n\n########\nPipettes\n########\n\nWhen writing a protocol, you must inform the Protocol API about the pipettes you will be using on your robot. The :py:meth:`.ProtocolContext.load_instrument` function provides this information and returns an :py:class:`.InstrumentContext` object.\n\nFor information about liquid handling, see :ref:`v2-atomic-commands` and :ref:`v2-complex-commands`.\n\n.. _new-create-pipette:\n\nLoading Pipettes\n================\n\nAs noted above, you call the :py:meth:`~.ProtocolContext.load_instrument` method to load a pipette. This method also requires the :ref:`pipette's API load name `, its left or right mount position, and (optionally) a list of associated tip racks. Even if you don't use the pipette anywhere else in your protocol, the Opentrons App and the robot won't let you start the protocol run until all pipettes loaded by ``load_instrument()`` are attached properly.\n\nLoading Flex 1- and 8-Channel Pipettes\n--------------------------------------\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 uL. Each pipette uses its own 1000 uL tip rack.", + "start_char_idx": 0, + "end_char_idx": 1281, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "bbe211a7-04dd-4fea-a58d-54870d8ff0c6": { + "__data__": { + "id_": "bbe211a7-04dd-4fea-a58d-54870d8ff0c6", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "476220ea-1795-47f7-997b-8eb19792ef78", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "fda36aef4355e8f84096bf3d030d78bcc9fc2b383aba7de7e16ddea3eedf74ba", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "21b34534-9d4e-4e1e-9763-792a8f50b398", + "node_type": "1", + "metadata": {}, + "hash": "03e9a7a18dd15a70f6299f1b6b1f8434ae6cd70cec6e578578ddecbcd691def3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "This method also requires the :ref:`pipette's API load name `, its left or right mount position, and (optionally) a list of associated tip racks. Even if you don't use the pipette anywhere else in your protocol, the Opentrons App and the robot won't let you start the protocol run until all pipettes loaded by ``load_instrument()`` are attached properly.\n\nLoading Flex 1- and 8-Channel Pipettes\n--------------------------------------\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 uL. Each pipette uses its own 1000 uL tip rack.\n\n.. code-block:: Python\n :substitutions:\n\n from opentrons import protocol_api\n \n requirements = {'robotType': 'Flex', 'apiLevel':'|apiLevel|'}\n\n def 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\nIf you're 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't require ``load_instrument``! Whether your gripper requires a protocol is determined by the presence of :py:meth:`.ProtocolContext.move_labware` commands. See :ref:`moving-labware` for more details.\n\nLoading a Flex 96-Channel Pipette\n---------------------------------\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.", + "start_char_idx": 641, + "end_char_idx": 2629, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "21b34534-9d4e-4e1e-9763-792a8f50b398": { + "__data__": { + "id_": "21b34534-9d4e-4e1e-9763-792a8f50b398", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "bbe211a7-04dd-4fea-a58d-54870d8ff0c6", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "a688d6bd7b198f446ff7e534235b9f4d541429180b2cee1322c9f0672be42980", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd", + "node_type": "1", + "metadata": {}, + "hash": "5c03266fa84549f8859ae146765deb528fd7f47adb7a59609c2dd3f564a14c14", + "class_name": "RelatedNodeInfo" + } + }, + "text": "However, the gripper doesn't require ``load_instrument``! Whether your gripper requires a protocol is determined by the presence of :py:meth:`.ProtocolContext.move_labware` commands. See :ref:`moving-labware` for more details.\n\nLoading a Flex 96-Channel Pipette\n---------------------------------\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. To load the 96-Channel Pipette, specify its position as ``mount='left'`` as shown here:\n\n.. code-block:: python\n\n def run(protocol: protocol_api.ProtocolContext):\n left = protocol.load_instrument(\n instrument_name='flex_96channel_1000', mount='left')\n\n.. versionadded:: 2.15\n\nLoading OT-2 Pipettes\n---------------------\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 uL tip rack.\n\n.. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'apiLevel': '2.14'}\n\n def 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\n.. _new-multichannel-pipettes:\n\nMulti-Channel Pipettes\n======================\n\nAll building block and advanced commands work with single- and multi-channel pipettes.", + "start_char_idx": 2186, + "end_char_idx": 4142, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd": { + "__data__": { + "id_": "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "21b34534-9d4e-4e1e-9763-792a8f50b398", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "f2ddae1c75a41a972f3e4d05e720c163f11bcb51d5485a7daeb1bf88dbee5c7a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac", + "node_type": "1", + "metadata": {}, + "hash": "e1625f2db89b2faa698be9c0239ec5d6a882e839b4990d065f0252a22442ca64", + "class_name": "RelatedNodeInfo" + } + }, + "text": "To keep the interface to the Opentrons API consistent between single- and multi-channel pipettes, commands treat the *backmost channel* (furthest from the door) of a multi-channel pipette as the location of the pipette. Location arguments to building block and advanced commands are specified for the backmost channel.\n\nAlso, this means that offset changes (such as :py:meth:`.Well.top` or :py:meth:`.Well.bottom`) can be applied to the single specified well, and each pipette channel will be at the same position relative to the well that it is over.\n\nFinally, because there is only one motor in a multi-channel pipette, these pipettes always aspirate and dispense on all channels simultaneously.\n\n8-Channel, 96-Well Plate Example\n--------------------------------\n\nTo demonstrate these concepts, let's write a protocol that uses a Flex 8-Channel Pipette and a 96-well plate. We'll then aspirate and dispense a liquid to different locations on the same well plate. To start, let's load a pipette in the right mount and add our labware.", + "start_char_idx": 4144, + "end_char_idx": 5179, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac": { + "__data__": { + "id_": "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "48e8e0fa4614a64a156e8c60d4bf1e6a94eee94c106dd653ef5c7a157ee923d0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f0bf7748-c987-4c01-9cd8-09a87939938b", + "node_type": "1", + "metadata": {}, + "hash": "7cf1c6e77c909b3b50741da6b9e6ff246f99570657d41e5301c4ba10083181c1", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Location arguments to building block and advanced commands are specified for the backmost channel.\n\nAlso, this means that offset changes (such as :py:meth:`.Well.top` or :py:meth:`.Well.bottom`) can be applied to the single specified well, and each pipette channel will be at the same position relative to the well that it is over.\n\nFinally, because there is only one motor in a multi-channel pipette, these pipettes always aspirate and dispense on all channels simultaneously.\n\n8-Channel, 96-Well Plate Example\n--------------------------------\n\nTo demonstrate these concepts, let's write a protocol that uses a Flex 8-Channel Pipette and a 96-well plate. We'll then aspirate and dispense a liquid to different locations on the same well plate. To start, let's load a pipette in the right mount and add our labware.\n\n.. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n \n requirements = {'robotType': 'Flex', 'apiLevel':'|apiLevel|'}\n\n def run(protocol: protocol_api.ProtocolContext):\n # Load a tiprack for 1000 uL 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\nAfter loading our instruments and labware, let's tell the robot to pick up a pipette tip from location ``A1`` in ``tiprack1``::\n\n right.pick_up_tip()\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.", + "start_char_idx": 4364, + "end_char_idx": 6200, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f0bf7748-c987-4c01-9cd8-09a87939938b": { + "__data__": { + "id_": "f0bf7748-c987-4c01-9cd8-09a87939938b", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "68f2b747ec4d8ffbaf228f2da9416b3cb4b47dce7871a7365718fa92ce179610", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3295a522-57b4-4146-a414-09bc00dbc9e7", + "node_type": "1", + "metadata": {}, + "hash": "68c972eb1b99ef2eb61fdeb3d8c85c97e1d0c601ab7da8cb053275886d0977f8", + "class_name": "RelatedNodeInfo" + } + }, + "text": "After picking up a tip, let's tell the robot to aspirate 300 uL from the well plate at location ``A2``::\n \n right.aspirate(volume=300, location=plate['A2'])\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's tell the robot to dispense 300 uL into the well plate at location ``A3``::\n\n right.dispense(volume=300, location=plate['A3'].top())\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.\n\n8-Channel, 384-Well Plate Example\n---------------------------------\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's write a protocol that uses a Flex 8-Channel Pipette and a 384-well plate. We'll then aspirate and dispense a liquid to different locations on the same well plate. To start, let's load a pipette in the right mount and add our labware.", + "start_char_idx": 6205, + "end_char_idx": 7672, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3295a522-57b4-4146-a414-09bc00dbc9e7": { + "__data__": { + "id_": "3295a522-57b4-4146-a414-09bc00dbc9e7", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f0bf7748-c987-4c01-9cd8-09a87939938b", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "16ac868ed623f9c9da3f7cc6d229b039d93a7de3ae36f706ea0acaef3345431b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2", + "node_type": "1", + "metadata": {}, + "hash": "2230bf734a85a9da3c503edc6a1ffedb007ab89d617aaa188b8e563e5726ab9b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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's write a protocol that uses a Flex 8-Channel Pipette and a 384-well plate. We'll then aspirate and dispense a liquid to different locations on the same well plate. To start, let's load a pipette in the right mount and add our labware.\n\n.. code-block:: python\n\n def run(protocol: protocol_api.ProtocolContext):\n # Load a tiprack for 200 uL 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\nAfter loading our instruments and labware, let's tell the robot to pick up a pipette tip from location ``A1`` in ``tiprack1``::\n\n right.pick_up_tip()\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's tell the robot to aspirate 100 uL from the well plate at location ``A1``::\n\n right.aspirate(volume=100, location=plate['A1'])\n\nThe eight pipette channels will only aspirate from every other well in the column: A1, C1, E1, G1, I1, K1, M1, and O1.", + "start_char_idx": 7000, + "end_char_idx": 8825, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2": { + "__data__": { + "id_": "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3295a522-57b4-4146-a414-09bc00dbc9e7", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ba60b96a03058a24245132d1a2b7f31413a575c9972648b3774cb4e676003b7d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "13afaf92-1e65-43e2-831c-2ecd72c108a2", + "node_type": "1", + "metadata": {}, + "hash": "27a67f1a8d208fffcc4c9bec30e552e3e48d77049ea648dc49978108ec2ecc39", + "class_name": "RelatedNodeInfo" + } + }, + "text": "After loading our instruments and labware, let's tell the robot to pick up a pipette tip from location ``A1`` in ``tiprack1``::\n\n right.pick_up_tip()\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's tell the robot to aspirate 100 uL from the well plate at location ``A1``::\n\n right.aspirate(volume=100, location=plate['A1'])\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's tell the robot to dispense 100 uL into the well plate at location ``B1``::\n\n right.dispense(volume=100, location=plate['B1'])\n\nThe eight pipette channels will only dispense into every other well in the column: B1, D1, F1, H1, J1, L1, N1, and P1.\n\n.. _pipette-tip-racks:\n\nAdding Tip Racks\n================\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. The 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 :py:meth:`.InstrumentContext.pick_up_tip` method.", + "start_char_idx": 8256, + "end_char_idx": 9611, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "13afaf92-1e65-43e2-831c-2ecd72c108a2": { + "__data__": { + "id_": "13afaf92-1e65-43e2-831c-2ecd72c108a2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e5ff1f152de9a258311990d1053567f897f426f391c91a136e22a73e4ceb0d75", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d7a173a7-0882-41b9-b755-1972cdcf4e78", + "node_type": "1", + "metadata": {}, + "hash": "a9aff4eec94181fee5c61ce6408b224026ccb8c30c1e85bb463cf7b4b7783b6c", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _pipette-tip-racks:\n\nAdding Tip Racks\n================\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. The 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 :py:meth:`.InstrumentContext.pick_up_tip` method. For example, let's start by loading loading some labware and instruments like this::\n \n def 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\nLet's 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.", + "start_char_idx": 9092, + "end_char_idx": 10454, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d7a173a7-0882-41b9-b755-1972cdcf4e78": { + "__data__": { + "id_": "d7a173a7-0882-41b9-b755-1972cdcf4e78", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "13afaf92-1e65-43e2-831c-2ecd72c108a2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "332f0b6eecb01fff9606f112dc102b60263da76397b1290dff4193422af8356e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "7477f664-2d4d-4946-93fb-10f0f7c7fe2f", + "node_type": "1", + "metadata": {}, + "hash": "8e427af6ac36c7919a28d3ae78ce430ed26df4a13dfcf1c6144c705a778e7ac5", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.. code-block:: python\n\n left_pipette.pick_up_tip(tiprack_left['A1'])\n left_pipette.drop_tip()\n\nBut now you have to specify ``tiprack_left`` every time you call ``pick_up_tip``, which means you're doing all your own tip tracking::\n\n left_pipette.pick_up_tip(tiprack_left['A2'])\n left_pipette.drop_tip()\n left_pipette.pick_up_tip(tiprack_left['A3'])\n left_pipette.drop_tip()\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 right_pipette.pick_up_tip()\n right_pipette.drop_tip()\n\nAdditional calls to ``pick_up_tip`` will automatically progress through the tips in the right rack::\n\n right_pipette.pick_up_tip() # picks up from A2\n right_pipette.drop_tip()\n right_pipette.pick_up_tip() # picks up from A3\n right_pipette.drop_tip()\n \nSee also, :ref:`v2-atomic-commands` and :ref:`v2-complex-commands`.\n\n..\n\n.. _new-pipette-models:\n\nAPI Load Names\n==============\n\nThe pipette's API load name (``instrument_name``) is the first parameter of the ``load_instrument()`` method. It tells your robot which attached pipette you're going to use in a protocol. The tables below list the API load names for the currently available Flex and OT-2 pipettes.", + "start_char_idx": 10319, + "end_char_idx": 11757, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "7477f664-2d4d-4946-93fb-10f0f7c7fe2f": { + "__data__": { + "id_": "7477f664-2d4d-4946-93fb-10f0f7c7fe2f", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d7a173a7-0882-41b9-b755-1972cdcf4e78", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "7143e3c7521de3d3893bd5224414684488647d1cbe5033f668ef8882cdfab5be", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "75be21ee-7046-4af4-b9a7-834821f39c3a", + "node_type": "1", + "metadata": {}, + "hash": "863a00fd99edab7baecb2b8daadf0d249375c26a4b3a8e4c3b50fc532aef954f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "..\n\n.. _new-pipette-models:\n\nAPI Load Names\n==============\n\nThe pipette's API load name (``instrument_name``) is the first parameter of the ``load_instrument()`` method. It tells your robot which attached pipette you're going to use in a protocol. The tables below list the API load names for the currently available Flex and OT-2 pipettes.\n\n.. tabs::\n\n .. tab:: Flex Pipettes\n \n +-------------------------+---------------+-------------------------+\n | Pipette Model | Volume (uL) | API Load Name |\n +=========================+===============+===+=====================+\n | Flex 1-Channel Pipette | 1\u201350 | ``flex_1channel_50`` |\n + +---------------+-------------------------+\n | | 5\u20131000 | ``flex_1channel_1000`` |\n +-------------------------+---------------+-------------------------+\n | Flex 8-Channel Pipette | 1\u201350 | ``flex_8channel_50`` |\n + +---------------+-------------------------+\n | | 5\u20131000 | ``flex_8channel_1000`` |\n +-------------------------+---------------+-------------------------+\n | Flex 96-Channel Pipette | 5\u20131000 | ``flex_96channel_1000`` |\n +-------------------------+---------------+-------------------------+\n\n .. tab:: OT-2 Pipettes\n\n +-----------------------------+--------------------+-----------------------+\n | Pipette Model | Volume (uL) | API Load Name |\n +=============================+====================+=======================+\n | P20 Single-Channel GEN2 | 1-20 | ``p20_single_gen2`` |\n +-----------------------------+ +-----------------------+\n | P20 Multi-Channel GEN2 | | ``p20_multi_gen2`` |\n +-----------------------------+--------------------+-----------------------+\n | P300 Single-Channel GEN2 | 20-300 | ``p300_single_gen2`` |\n +-----------------------------+ +-----------------------+\n | P300 Multi-Channel GEN2 | | ``p300_multi_gen2`` |\n +-----------------------------+--------------------+-----------------------+\n | P1000 Single-Channel GEN2 | 100-1000 | ``p1000_single_gen2`` |\n +-----------------------------+--------------------+-----------------------+\n\n See the OT-2 Pipette Generations section below if you're using GEN1 pipettes on an OT-2.", + "start_char_idx": 11417, + "end_char_idx": 14051, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "75be21ee-7046-4af4-b9a7-834821f39c3a": { + "__data__": { + "id_": "75be21ee-7046-4af4-b9a7-834821f39c3a", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "7477f664-2d4d-4946-93fb-10f0f7c7fe2f", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "2f4f87ef38ed219d25f246a5e6a0dc24eb9a7bcaa2e56612ff1c76d24061f8a1", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158", + "node_type": "1", + "metadata": {}, + "hash": "2bf26b1eb7393f73b9f229acb1e805a2e6fdb3beb48e7da46b41b3781a6b5d8f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The GEN1 family includes the P10, P50, and P300 single- and multi-channel pipettes, along with the P1000 single-chanel model.\n\n\nOT-2 Pipette Generations\n========================\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.. list-table::\n :header-rows: 1\n \n * - GEN2 Pipette\n - GEN1 Pipette\n - GEN1 Volume\n * - P20 Single-Channel GEN2\n - P10 Single-Channel GEN1\n - 1-10 uL\n * - P20 Multi-Channel GEN2\n - P10 Multi-Channel GEN1\n - 1-10 uL\n * - P300 Single-Channel GEN2\n - P300 Single-Channel GEN1\n - 30-300 uL\n * - P300 Multi-Channel GEN2\n - P300 Multi-Channel GEN1\n - 20-200 uL\n * - P1000 Single-Channel GEN2\n - P1000 Single-Channel GEN1\n - 100-1000 uL\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 uL) or a P300 Single-Channel GEN2 (for volumes between 20 and 50 uL).", + "start_char_idx": 14052, + "end_char_idx": 15678, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158": { + "__data__": { + "id_": "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "75be21ee-7046-4af4-b9a7-834821f39c3a", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "2b1c045be85ea61118b234f5fe1b1bbcba0da6776dd6d4bf0a52d97697a69944", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "d2d18186-43b6-41c4-9c61-81bb3209005c", + "node_type": "1", + "metadata": {}, + "hash": "f2d98456f83978b5c50dee86373141c21bca217a323962afe4398e1be8bff03f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 uL) or a P300 Single-Channel GEN2 (for volumes between 20 and 50 uL).\n\n.. _pipette-volume-modes:\n\nVolume Modes\n============\n\nThe Flex 1-Channel 50 uL and Flex 8-Channel 50 uL pipettes must operate in a low-volume mode to accurately dispense 1 uL of liquid. Set low-volume mode by calling :py:meth:`.InstrumentContext.configure_for_volume` with the amount of liquid you plan to aspirate, in uL::\n\n pipette50.configure_for_volume(1)\n pipette50.pick_up_tip()\n pipette50.aspirate(1, plate[\"A1\"])\n \n.. versionadded:: 2.15\n\n.. note::\n The pipette must not contain liquid when you call ``configure_for_volume()``, or the API will raise an error.\n \n Also, 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.\n\nIn a protocol that handles many different volumes, it's a good practice to call this function immediately before each :py:meth:`.transfer` or :py:meth:`.aspirate`, specifying the volume that you are about to handle.", + "start_char_idx": 15371, + "end_char_idx": 16641, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "d2d18186-43b6-41c4-9c61-81bb3209005c": { + "__data__": { + "id_": "d2d18186-43b6-41c4-9c61-81bb3209005c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9221b08f8b03c3e02a8f8f14db3a063266fe86007df3002c074e28258316bb2f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "05d59f98-d186-466e-9a1a-9f5b18b56bce", + "node_type": "1", + "metadata": {}, + "hash": "d8637aaf634e9ad8677760cc665054c8709eb982bc6e3f5e02384fe24032e7de", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Set low-volume mode by calling :py:meth:`.InstrumentContext.configure_for_volume` with the amount of liquid you plan to aspirate, in uL::\n\n pipette50.configure_for_volume(1)\n pipette50.pick_up_tip()\n pipette50.aspirate(1, plate[\"A1\"])\n \n.. versionadded:: 2.15\n\n.. note::\n The pipette must not contain liquid when you call ``configure_for_volume()``, or the API will raise an error.\n \n Also, 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.\n\nIn a protocol that handles many different volumes, it's a good practice to call this function immediately before each :py:meth:`.transfer` or :py:meth:`.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.. code-block:: python\n \n volumes = [1, 2, 3, 4, 1, 5, 2, 8]\n sources = plate.columns()[0]\n destinations = plate.columns()[1]\n for i in range(8):\n pipette50.pick_up_tip()\n pipette50.configure_for_volume(volumes[i])\n pipette50.aspirate(volume=volumes[i], location=sources[i])\n pipette50.dispense(location=destinations[i])\n pipette50.drop_tip()\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 nominal volume. Or if all the volumes correspond to the pipette's default mode, you don't have to call ``configure_for_volume()`` at all.\n\n\n.. _new-plunger-flow-rates:\n\nPipette Flow Rates\n==================\n\nMeasured in uL/s, the flow rate determines how much liquid a pipette can aspirate, dispense, and blow-out. Opentrons pipettes have their own default flow rates.", + "start_char_idx": 15866, + "end_char_idx": 17705, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "05d59f98-d186-466e-9a1a-9f5b18b56bce": { + "__data__": { + "id_": "05d59f98-d186-466e-9a1a-9f5b18b56bce", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "d2d18186-43b6-41c4-9c61-81bb3209005c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "fe2ff7405095b87e5a9b30525489e3745e90bc41b981cf2d0a53f032c2ffe9ab", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "06557d00-501d-4f76-9ab2-2ce90e7751c3", + "node_type": "1", + "metadata": {}, + "hash": "cec9d0fe8708d1db54e44ed978bf1be8ba58ad077bb5280a99be409497541dd3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Or if all the volumes correspond to the pipette's default mode, you don't have to call ``configure_for_volume()`` at all.\n\n\n.. _new-plunger-flow-rates:\n\nPipette Flow Rates\n==================\n\nMeasured in uL/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 :py:class:`.InstrumentContext` by altering the :py:obj:`.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's load a simple protocol and set different flow rates for the attached pipette.\n\n.. code-block:: python\n\n def 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\nLet's tell the robot to aspirate, dispense, and blow out the liquid using default flow rates.", + "start_char_idx": 17353, + "end_char_idx": 18872, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "06557d00-501d-4f76-9ab2-2ce90e7751c3": { + "__data__": { + "id_": "06557d00-501d-4f76-9ab2-2ce90e7751c3", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "05d59f98-d186-466e-9a1a-9f5b18b56bce", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "326ed0a93eefaa062389463dfb93782523bbfafb95745409273c9c7b1a0655b9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2776c4fe-b24c-493f-bd44-2c252984cc06", + "node_type": "1", + "metadata": {}, + "hash": "fc39ac695479e4e1b5ec26c8863e24b349d47346e8eb0ee1ce4e0fba68dd5334", + "class_name": "RelatedNodeInfo" + } + }, + "text": "This means you can specify different flow rates for each property within the same protocol. For example, let's load a simple protocol and set different flow rates for the attached pipette.\n\n.. code-block:: python\n\n def 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\nLet's tell the robot to aspirate, dispense, and blow out the liquid using default flow rates. Notice how you don't need to specify a ``flow_rate`` attribute to use the defaults::\n\n pipette.aspirate(200, plate['A1']) # 160 uL/s\n pipette.dispense(200, plate['A2']) # 160 uL/s\n pipette.blow_out() # 80 uL/s\n\nNow let's change the flow rates for each action::\n\n pipette.flow_rate.aspirate = 50\n pipette.flow_rate.dispense = 100\n pipette.flow_rate.blow_out = 75\n pipette.aspirate(200, plate['A1']) # 50 uL/s\n pipette.dispense(200, plate['A2']) # 100 uL/s\n pipette.blow_out() # 75 uL/s\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\n.. TODO add mode ranges and flow defaults to sections below\n\n.. note::\n In API version 2.13 and earlier, :py:obj:`.InstrumentContext.speed` offered similar functionality to ``.flow_rate``. It attempted to set the plunger speed in mm/s.", + "start_char_idx": 18078, + "end_char_idx": 19953, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2776c4fe-b24c-493f-bd44-2c252984cc06": { + "__data__": { + "id_": "2776c4fe-b24c-493f-bd44-2c252984cc06", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "06557d00-501d-4f76-9ab2-2ce90e7751c3", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1a2cee1a38fa8ec9bd58a67b8926e19fe6b07a42d9aeb4409a8bf6811a2d5a58", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "8d4cc9d1-fafb-459a-b65f-7748250ff308", + "node_type": "1", + "metadata": {}, + "hash": "216a631c849c839dc7cebbbe4800cb3ec86a1786c187f05a6e67f75be0afb33e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Calling ``configure_for_volume()`` always resets all pipette flow rates to the defaults for the mode that it sets.\n\n.. TODO add mode ranges and flow defaults to sections below\n\n.. note::\n In API version 2.13 and earlier, :py:obj:`.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\n..\n\n\nFlex Pipette Flow Rates\n-----------------------\n\nThe following table provides data on the default aspirate, dispense, and blow-out flow rates (in uL/s) for Flex pipettes.\n\n+-------------------------------+-----------------+-----------------+-----------------+\n| Pipette Models | Aspirate (uL/s) | Dispense (uL/s) | Blow-out (uL/s) |\n+===============================+=================+=================+=================+\n| | **Flex 50 uL pipettes** | 8 | 8 | 4 |\n| | 1- and 8-channel | | | |\n+-------------------------------+-----------------+-----------------+-----------------+\n| | **Flex 1000 uL pipettes** | 160 | 160 | 80 |\n| | 1-, 8-, and 96-channel | | | |\n+-------------------------------+-----------------+-----------------+-----------------+\n\nAdditionally, all Flex pipettes have a well bottom clearance of 1 mm for aspirate and dispense actions.\n\n.. _ot2-flow-rates:\n\nOT-2 Pipette Flow Rates\n-----------------------\n\nThe following table provides data on the default aspirate, dispense, and blow-out flow rates (in uL/s) for OT-2 GEN2 pipettes. Because the flow rates are the same across all three actions, we've consolidated the data into the \"Flow Rates\" column.", + "start_char_idx": 19599, + "end_char_idx": 21536, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "8d4cc9d1-fafb-459a-b65f-7748250ff308": { + "__data__": { + "id_": "8d4cc9d1-fafb-459a-b65f-7748250ff308", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d0a8e4f952cd2397d0aefa067011bc4d2b503867ff39e9e20894d9af34b176d1", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2776c4fe-b24c-493f-bd44-2c252984cc06", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "75c45d5bf5617fe741b449235994a095195140c81e4d4747e9247eda317a0f94", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c695a9b6-67a3-406b-af48-f2d132267861", + "node_type": "1", + "metadata": {}, + "hash": "7dca30208a8ad48d7b11d679a60889dfa9921dd55aa2b315643097c4e19ea596", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _ot2-flow-rates:\n\nOT-2 Pipette Flow Rates\n-----------------------\n\nThe following table provides data on the default aspirate, dispense, and blow-out flow rates (in uL/s) for OT-2 GEN2 pipettes. Because the flow rates are the same across all three actions, we've consolidated the data into the \"Flow Rates\" column.\n\n.. list-table::\n :header-rows: 1\n\n * - Pipette Model\n - Volume (uL)\n - Flow Rates (uL/s)\n * - P20 Single-Channel GEN2\n - 1-20\n - \n * API v2.6 or higher: 7.56\n * API v2.5 or lower: 3.78\n * - P300 Single-Channel GEN2\n - 20-300\n - \n * API v2.6 or higher: 92.86\n * API v2.5 or lower: 46.43\n * - P1000 Single-Channel GEN2\n - 100-1000\n -\n * API v2.6 or higher: 274.7\n * API v2.5 or lower: 137.35\n * - P20 Multi-Channel GEN2\n - 1-20\n - 7.6\n * - P300 Multi-Channel GEN2\n - 20-300\n - 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.", + "start_char_idx": 21220, + "end_char_idx": 22298, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c695a9b6-67a3-406b-af48-f2d132267861": { + "__data__": { + "id_": "c695a9b6-67a3-406b-af48-f2d132267861", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "8d4cc9d1-fafb-459a-b65f-7748250ff308", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b7a2ebe86afac9d57ead272e020ce8295a91f3ba3d4c44e2143472449a6d98b9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "02af39be-8f80-4e64-8db1-726897aaa0fe", + "node_type": "1", + "metadata": {}, + "hash": "8ebf4e43bbb75146c6b8d04560608b2405802c9570472b9a2f1c92c0a26b6264", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to define positions within an Opentrons robot and alter its speed and trajectory.\n\n.. _robot-position:\n\n**************************\nLabware and Deck Positions\n**************************\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.\n\n.. _position-relative-labware:\n\n\nPosition Relative to Labware\n============================\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.\n\nTop, Bottom, and Center\n-----------------------\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.\n\nTop\n^^^^\n\nLet's look at the :py:meth:`.Well.top` method. It returns a position level with the top of the well, centered in both horizontal directions.\n\n.. code-block:: python\n \n plate['A1'].top() # the top center of the well\n\nThis is a good position to use for a :ref:`blow out operation ` or an activity where you don't 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.", + "start_char_idx": 0, + "end_char_idx": 2007, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "02af39be-8f80-4e64-8db1-726897aaa0fe": { + "__data__": { + "id_": "02af39be-8f80-4e64-8db1-726897aaa0fe", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c695a9b6-67a3-406b-af48-f2d132267861", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "7fd7d218d563ea98e0be6fcbd814092adbb5d6fce2b995132db09194c00bf3e9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "4f5b559d-e60a-4a57-9b99-6c0427112512", + "node_type": "1", + "metadata": {}, + "hash": "428d3578916494d1d7b641fc1456c152bf65d26d68a019e278c801654b54c080", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.\n\nTop\n^^^^\n\nLet's look at the :py:meth:`.Well.top` method. It returns a position level with the top of the well, centered in both horizontal directions.\n\n.. code-block:: python\n \n plate['A1'].top() # the top center of the well\n\nThis is a good position to use for a :ref:`blow out operation ` or an activity where you don't 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.. code-block:: python\n\n plate['A1'].top(z=1) # 1 mm above the top center of the well\n plate['A1'].top(z=-1) # 1 mm below the top center of the well\n\n..\n\nBottom\n^^^^^^\n\nLet's look at the :py:meth:`.Well.bottom` method. It returns a position level with the bottom of the well, centered in both horizontal directions. \n\n.. code-block:: python\n\n plate['A1'].bottom() # the bottom center of the well\n\nThis is a good position for :ref:`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.. code-block:: python\n\n plate['A1'].bottom(z=1) # 1 mm above the bottom center of the well\n plate['A1'].bottom(z=-1) # 1 mm below the bottom center of the well\n # this may be dangerous!\n\n.. warning::\n\n Negative ``z`` arguments to ``Well.bottom()`` will cause the pipette tip to collide with the bottom of the well.", + "start_char_idx": 1256, + "end_char_idx": 3116, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "4f5b559d-e60a-4a57-9b99-6c0427112512": { + "__data__": { + "id_": "4f5b559d-e60a-4a57-9b99-6c0427112512", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "02af39be-8f80-4e64-8db1-726897aaa0fe", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "553c8532c9f1392b319e530d0c1198583db5a85e16c33c9f15c53c66b56fd3d3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "dbfad54b-ca37-4852-9162-92cef747df8d", + "node_type": "1", + "metadata": {}, + "hash": "8372a3683883f61c52893905b968a9d3ae7e9e71aca0c7406c859cadaf993a2f", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. code-block:: python\n\n plate['A1'].bottom() # the bottom center of the well\n\nThis is a good position for :ref:`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.. code-block:: python\n\n plate['A1'].bottom(z=1) # 1 mm above the bottom center of the well\n plate['A1'].bottom(z=-1) # 1 mm below the bottom center of the well\n # this may be dangerous!\n\n.. warning::\n\n Negative ``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 \n Flex 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 \n The OT-2 has no sensors to detect contact with a well bottom. The protocol will continue even after a collision.\n\n..\n\nCenter\n^^^^^^\n\nLet's look at the :py:meth:`.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.. code-block:: python\n\n plate['A1'].center() # the vertical and horizontal center of the well\n\n..\n\n\n.. _new-default-op-positions:\n\nDefault Positions\n-----------------\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 :py:meth:`.Well.bottom` method with the ``z`` argument, though it can be cumbersome to do so repeatedly.", + "start_char_idx": 2332, + "end_char_idx": 4309, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "dbfad54b-ca37-4852-9162-92cef747df8d": { + "__data__": { + "id_": "dbfad54b-ca37-4852-9162-92cef747df8d", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "4f5b559d-e60a-4a57-9b99-6c0427112512", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "1255b7745fa17f15e7b4e72d8dfff8decff05365f0c784abaa40b165a739d137", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6be5647b-832e-48ae-aa43-e107420df194", + "node_type": "1", + "metadata": {}, + "hash": "22cafa7d6f5cd1f38078e4e8a2dda5cbd56a7b7a1c0af51d76d861950ee39ecb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The OT-2 has no sensors to detect contact with a well bottom. The protocol will continue even after a collision.\n\n..\n\nCenter\n^^^^^^\n\nLet's look at the :py:meth:`.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.. code-block:: python\n\n plate['A1'].center() # the vertical and horizontal center of the well\n\n..\n\n\n.. _new-default-op-positions:\n\nDefault Positions\n-----------------\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 :py:meth:`.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 :py:obj:`.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 :py:meth:`.transfer` operation.", + "start_char_idx": 3443, + "end_char_idx": 4862, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6be5647b-832e-48ae-aa43-e107420df194": { + "__data__": { + "id_": "6be5647b-832e-48ae-aa43-e107420df194", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "dbfad54b-ca37-4852-9162-92cef747df8d", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "d1dd8c536be8da2f775539387e338f3827c0e2a45a507fc7eb5e9c9e11c8b39a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "16bbd799-fd2f-4b40-b959-54097655bd69", + "node_type": "1", + "metadata": {}, + "hash": "d2e6abfc5c92591ce0ec0f3420ae292566ee2ab8ecc3292824070238b7d9aebc", + "class_name": "RelatedNodeInfo" + } + }, + "text": "This default clearance may not be suitable for some labware geometries, liquids, or protocols. You can change this value by using the :py:meth:`.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 :py:obj:`.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 :py:meth:`.transfer` operation. This snippet from a sample protocol demonstrates how to work with and change the default clearance::\n\n # aspirate 1 mm above the bottom of the well (default)\n pipette.aspirate(50, plate['A1'])\n # dispense 1 mm above the bottom of the well (default)\n pipette.dispense(50, plate['A1'])\n\n # change clearance for aspiration to 2 mm\n pipette.well_bottom_clearance.aspirate = 2\n # aspirate 2 mm above the bottom of the well\n pipette.aspirate(50, plate['A1'])\n # still dispensing 1 mm above the bottom\n pipette.dispense(50, plate['A1'])\n\n pipette.aspirate(50, plate['A1'])\n # change clearance for dispensing to 10 mm \n pipette.well_bottom_clearance.dispense = 10\n # dispense high above the well\n pipette.dispense(50, plate['A1'])\n\n..\n\nUsing Labware Position Check\n============================\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.", + "start_char_idx": 4071, + "end_char_idx": 5929, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "16bbd799-fd2f-4b40-b959-54097655bd69": { + "__data__": { + "id_": "16bbd799-fd2f-4b40-b959-54097655bd69", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6be5647b-832e-48ae-aa43-e107420df194", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "bbb6329ba1815fd9f0805ac255498750d5927ab9de383f02003a39e141df4efd", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a39df619-be28-4174-bb5b-e63c1079ce09", + "node_type": "1", + "metadata": {}, + "hash": "48cef6848254f4eae5cdcf3813764d56324b978d6e0460c2dbc7f38fe170b643", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 :ref:`using_lpc` in the Advanced Control article for information.\n\nPosition Relative to the Deck\n=============================\n\nThe robot's 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 :py:class:`.types.Location` object, either as a standard Python :py:class:`tuple` of three floats, or as an instance of the :py:obj:`~collections.namedtuple` :py:class:`.types.Point`.\n\n.. note::\n\n There 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't 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, :py:class:`.types.Location` only deals with ``x``, ``y``, and ``z`` values. \n\n\nIndependent Movement\n====================\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()``.\n\n.. _move-to:\n\nMove To\n-------\n\nThe :py:meth:`.InstrumentContext.move_to` method moves a pipette to any reachable location on the deck.", + "start_char_idx": 5791, + "end_char_idx": 7946, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a39df619-be28-4174-bb5b-e63c1079ce09": { + "__data__": { + "id_": "a39df619-be28-4174-bb5b-e63c1079ce09", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "16bbd799-fd2f-4b40-b959-54097655bd69", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "415a5de2a3b4ee94b5ce0140104f2517b5c7e88e898fe3df6bd1dfc8497ccff1", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "de5af6d9-781e-4f03-af68-540d4ca5f861", + "node_type": "1", + "metadata": {}, + "hash": "b181639ac37e55026d1f9d8bf46b5d597a8887dc67cd59401281a77a06b23279", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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't 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, :py:class:`.types.Location` only deals with ``x``, ``y``, and ``z`` values. \n\n\nIndependent Movement\n====================\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()``.\n\n.. _move-to:\n\nMove To\n-------\n\nThe :py:meth:`.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't, it will move the pipette nozzle to that position.\n\nThe :py:meth:`~.InstrumentContext.move_to` method requires the :py:class:`.Location` argument. The location can be automatically generated by methods like ``Well.top()`` and ``Well.bottom()`` or one you've created yourself, but you can't move a pipette to a well directly:\n\n.. code-block:: python\n\n pipette.move_to(plate['A1']) # error; can't move to a well itself\n pipette.move_to(plate['A1'].bottom()) # move to the bottom of well A1\n pipette.move_to(plate['A1'].top()) # move to the top of well A1\n pipette.move_to(plate['A1'].bottom(z=2)) # move to 2 mm above the bottom of well A1\n pipette.move_to(plate['A1'].top(z=-2)) # move to 2 mm below the top of well A1\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.", + "start_char_idx": 7095, + "end_char_idx": 8994, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "de5af6d9-781e-4f03-af68-540d4ca5f861": { + "__data__": { + "id_": "de5af6d9-781e-4f03-af68-540d4ca5f861", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a39df619-be28-4174-bb5b-e63c1079ce09", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "ff794dc1f171c6dfd9106736287b8b2f86c89c62039e68ac53e68ed038668873", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "7b56e245-174f-4279-90aa-bed3d7a5bcd1", + "node_type": "1", + "metadata": {}, + "hash": "ba2db0255cb65844fdba26645a281eb2adcac695d10193ff1c624e3493b156d7", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.. code-block:: python\n\n pipette.move_to(plate['A1'].top(), force_direct=True)\n\n.. warning::\n\n Moving 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 pipette.move_to(plate['A1'].top())\n pipette.move_to(plate['A1'].bottom(1), force_direct=True)\n pipette.move_to(plate['A1'].top(-2), force_direct=True)\n pipette.move_to(plate['A2'].top())\n\n..\n\n\nPoints and Locations\n--------------------\n\nWhen instructing the robot to move, it's important to consider the difference between the :py:class:`~opentrons.types.Point` and :py:class:`~opentrons.types.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\n.. TODO document position_for and other methods in deck.py that return Locations\n\nThis distinction is important for the :py:meth:`.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.", + "start_char_idx": 8995, + "end_char_idx": 10872, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "7b56e245-174f-4279-90aa-bed3d7a5bcd1": { + "__data__": { + "id_": "7b56e245-174f-4279-90aa-bed3d7a5bcd1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "de5af6d9-781e-4f03-af68-540d4ca5f861", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "05195c5415e2634a03cf7f03e8f6544a9893ade80e2a4056c3f5eba677188013", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6c7e15c2-be7e-4a60-848f-becd4b110db7", + "node_type": "1", + "metadata": {}, + "hash": "2888eb7180bd6d1c38bd29955bd133fdd31d162fd228d96fba10e67929ff5dbc", + "class_name": "RelatedNodeInfo" + } + }, + "text": "* 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\n.. TODO document position_for and other methods in deck.py that return Locations\n\nThis distinction is important for the :py:meth:`.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 # get the location at the center of well A1\n center_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\n adjusted_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\n pipette.aspirate(50, adjusted_location)\n \n # dispense at the same location\n pipette.dispense(50, center_location.move(types.Point(x=1, y=1, z=1)))\n\n.. note::\n\n\tThe additional ``z`` arguments of the ``top()`` and ``bottom()`` methods (see :ref:`position-relative-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\t\n\t.. code-block:: python\n\n\t\t# the following are equivalent\n\t\tpipette.move_to(plate['A1'].bottom(z=2))\n\t\tpipette.move_to(plate['A1'].bottom().move(types.Point(z=2)))\n\n\t\t# adjust along the y-axis\n\t\tpipette.move_to(plate['A1'].bottom().move(types.Point(y=2)))\t\n\n..", + "start_char_idx": 10215, + "end_char_idx": 11924, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6c7e15c2-be7e-4a60-848f-becd4b110db7": { + "__data__": { + "id_": "6c7e15c2-be7e-4a60-848f-becd4b110db7", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "7b56e245-174f-4279-90aa-bed3d7a5bcd1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "1b62f080187f7b937ab0c95455c68b5c4bbcfa904e33aa4fdaf6858242e64d69", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b", + "node_type": "1", + "metadata": {}, + "hash": "78d11374ae5fca2aa9d70c6a81cac6e8629d3eef846e7c60181e7a3f0b63ab2c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "You still need to use ``move()`` to adjust these positions along the x- or y-axis:\n\t\n\t.. code-block:: python\n\n\t\t# the following are equivalent\n\t\tpipette.move_to(plate['A1'].bottom(z=2))\n\t\tpipette.move_to(plate['A1'].bottom().move(types.Point(z=2)))\n\n\t\t# adjust along the y-axis\n\t\tpipette.move_to(plate['A1'].bottom().move(types.Point(y=2)))\t\n\n..\n\n\nMovement Speeds\n===============\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\n.. _gantry_speed: \n\nGantry Speed\n------------\n\nThe robot's 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 :py:obj:`.InstrumentContext.default_speed` like this::\n \n\t\n\tpipette.move_to(plate['A1'].top()) # move to the first well at default speed\n\tpipette.default_speed = 100 # reduce pipette speed\n\tpipette.move_to(plate['D6'].top()) # move to the last well at the slower speed\n\n.. warning::\n\n\tThese default speeds were chosen because they're the maximum speeds that Opentrons knows will work with the gantry. Your robot may be able to move faster, but you shouldn't increase this value unless instructed by Opentrons Support.\n\n\n..", + "start_char_idx": 11579, + "end_char_idx": 13071, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b": { + "__data__": { + "id_": "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "4da6c89a-702b-40e4-a46f-cc30b9d24a40", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "25cf0280c79d3b00ed49aa6cb0b49a5415d871bcd7d81f813fbb4f85a1c96f7f", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6c7e15c2-be7e-4a60-848f-becd4b110db7", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "2a7add3eccd5e47de5a354201ad32d544bbbcce7d16003a588f24229d7373894", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c2e151b8-3c71-441d-aa4a-6a7224e94fc8", + "node_type": "1", + "metadata": {}, + "hash": "f0147024adab767972225af534092de5f2ae70e6c0f74261218a79ca8bbd04fd", + "class_name": "RelatedNodeInfo" + } + }, + "text": "..\n\n\n.. _axis_speed_limits:\n\nAxis Speed Limits\n-----------------\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 :py:obj:`.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's limit to the default:\n\n.. code-block:: python\n :substitutions:\n\n\tprotocol.max_speeds['x'] = 50 # limit x-axis to 50 mm/s\n\tdel protocol.max_speeds['x'] # reset x-axis limit\n\tprotocol.max_speeds['a'] = 10 # limit a-axis to 10 mm/s\n\tprotocol.max_speeds['a'] = None # reset a-axis limit\n\n\nNote that ``max_speeds`` can't set limits for the pipette plunger axes (``b`` and ``c``); instead, set the flow rates or plunger speeds as described in :ref:`new-plunger-flow-rates`.\n\n..", + "start_char_idx": 13069, + "end_char_idx": 14275, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c2e151b8-3c71-441d-aa4a-6a7224e94fc8": { + "__data__": { + "id_": "c2e151b8-3c71-441d-aa4a-6a7224e94fc8", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + }, + "hash": "286a3357205723721fbc605969bbee0f725e69c88893cd8bb8a069b28735f8af", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6aa17a74-053a-443e-b412-66412367f29f", + "node_type": "1", + "metadata": {}, + "hash": "23108f63607746c23ec292ba33debdbd5dafcf3539a7d27e5943c023472687ae", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: A guide to creating your first Python protocol and running it on an Opentrons robot.\n\n.. _tutorial:\n\n########\nTutorial\n########\n\n************\nIntroduction\n************\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.\n\nWhat You\u2019ll Automate\n^^^^^^^^^^^^^^^^^^^^\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.\n\nBefore You Begin\n^^^^^^^^^^^^^^^^\n\nYou're going to write some Python code, but you don't 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\nTo run your code, make sure that you've installed `Python 3 `_ and the `pip package installer `_.", + "start_char_idx": 0, + "end_char_idx": 2038, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6aa17a74-053a-443e-b412-66412367f29f": { + "__data__": { + "id_": "6aa17a74-053a-443e-b412-66412367f29f", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c2e151b8-3c71-441d-aa4a-6a7224e94fc8", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bc5cd6f0a7262789d3208adbebc6d3cc5627fd02dfe32a057421c01e45c72acb", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc", + "node_type": "1", + "metadata": {}, + "hash": "8378a25342f3ac9e5862da3d4db53805377ed031376c915223fac7f25249dd9e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\nTo run your code, make sure that you've installed `Python 3 `_ and the `pip package installer `_. You 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\nHardware and Labware\n^^^^^^^^^^^^^^^^^^^^\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 \"Instrument Installation and Calibration\" 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 uL pipette `_.\n\n- **OT-2 users** should review the robot setup and pipette information on the `Get Started page `_.", + "start_char_idx": 1225, + "end_char_idx": 3002, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc": { + "__data__": { + "id_": "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "6aa17a74-053a-443e-b412-66412367f29f", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ba0ec43f80637a8a09c476b07e693f8713e25299580acfcf513e50179f49364c", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2a902471-31a0-4af2-95fb-633cca7eb7ce", + "node_type": "1", + "metadata": {}, + "hash": "79550057c17f39ea5f58f88c7c72e2964836777f7da3484a6f9a8063e7529cbe", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- **Flex users** should review Chapter 2: Installation and Relocation in the `instruction manual `_. Specifically, see the pipette information in the \"Instrument Installation and Calibration\" 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 uL pipette `_.\n\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.", + "start_char_idx": 2366, + "end_char_idx": 3650, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2a902471-31a0-4af2-95fb-633cca7eb7ce": { + "__data__": { + "id_": "2a902471-31a0-4af2-95fb-633cca7eb7ce", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bfe03879b01254339e0883b9f7e963bcf4b01e71986277792ce9f6843c1aab1a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "ecec68b7-4d23-4ef0-96cb-96a776280b07", + "node_type": "1", + "metadata": {}, + "hash": "7317697d36bb9cb22e1005f1a34f707e1e0cb3220c0734b414ed28a2a1a2ac41", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.. list-table::\n :widths: 20 40 50\n :header-rows: 1\n\n * - Labware type\n - Labware name\n - API load name\n * - Reservoir\n - `NEST 12 Well Reservoir 15 mL `_\n - ``nest_12_reservoir_15ml``\n * - Well plate\n - `NEST 96 Well Plate 200 uL Flat `_\n - ``nest_96_wellplate_200ul_flat``\n * - Flex tip rack\n - `Opentrons Flex Tips, 200 uL `_\n - ``opentrons_flex_96_tiprack_200ul``\n * - OT-2 tip rack\n - `Opentrons 96 Tip Rack `_\n - ``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.\n\n**********************\nCreate a Protocol File\n**********************\n\nLet\u2019s start from scratch to create your serial dilution protocol.", + "start_char_idx": 3003, + "end_char_idx": 4641, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "ecec68b7-4d23-4ef0-96cb-96a776280b07": { + "__data__": { + "id_": "ecec68b7-4d23-4ef0-96cb-96a776280b07", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2a902471-31a0-4af2-95fb-633cca7eb7ce", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1f1e7cc63f9132ede843d991e53f474c752d10dae608ec3c5ad7af97d66cfef7", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a5c24e0d-dc07-4713-8f8b-adf75906acc0", + "node_type": "1", + "metadata": {}, + "hash": "0389cb92e84bbf34c94dabede7ff6bca5c5d1d57bf904b4a9ee2724fed748e65", + "class_name": "RelatedNodeInfo" + } + }, + "text": "**********************\nCreate a Protocol File\n**********************\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.. code-block:: python\n\n from opentrons import protocol_api\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. \n\n.. _tutorial-metadata:\n\nMetadata\n^^^^^^^^\n\nEvery protocol needs to have a metadata dictionary with information about the protocol. At minimum, you need to specify what :ref:`version of the API ` the protocol requires. The `scripts `_ for this tutorial were validated against API version 2.15, so specify:\n\n.. code-block:: python\n\n metadata = {'apiLevel': '2.15'}\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.. code-block:: python\n :substitutions:\n\n metadata = {\n 'apiLevel': '2.15',\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.", + "start_char_idx": 4506, + "end_char_idx": 6711, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a5c24e0d-dc07-4713-8f8b-adf75906acc0": { + "__data__": { + "id_": "a5c24e0d-dc07-4713-8f8b-adf75906acc0", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "ecec68b7-4d23-4ef0-96cb-96a776280b07", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "5ab11bd197fc3bd330695f600ad9414eb566227d7a25731b2a3ce1c4861f559f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "14706ad3-1f24-48d4-aa97-c543af753a5a", + "node_type": "1", + "metadata": {}, + "hash": "8593fcc8f33d145299e196446358528d101a51eaa0b325bc7f722214843ccf45", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The `scripts `_ for this tutorial were validated against API version 2.15, so specify:\n\n.. code-block:: python\n\n metadata = {'apiLevel': '2.15'}\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.. code-block:: python\n :substitutions:\n\n metadata = {\n 'apiLevel': '2.15',\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\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.\n\n.. _tutorial-requirements:\n\nRequirements\n^^^^^^^^^^^^\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\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 requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.15\"}\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``.", + "start_char_idx": 5897, + "end_char_idx": 7899, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "14706ad3-1f24-48d4-aa97-c543af753a5a": { + "__data__": { + "id_": "14706ad3-1f24-48d4-aa97-c543af753a5a", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a5c24e0d-dc07-4713-8f8b-adf75906acc0", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c6e4ff00243307b5d761a20f8f2ab2e41a4b06abfe4c9648541751e82b46754e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c", + "node_type": "1", + "metadata": {}, + "hash": "26962ad9f4b39840a2b897dd204f3ab60ea3a26697a910f465fdc2fd2d6d496b", + "class_name": "RelatedNodeInfo" + } + }, + "text": ".. _tutorial-requirements:\n\nRequirements\n^^^^^^^^^^^^\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\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 requirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.15\"}\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 requirements = {\"robotType\": \"OT-2\", \"apiLevel\": \"2.15\"} \n\nWith the metadata and requirements defined, you can move on to creating the ``run()`` function for your protocol.\n\nThe ``run()`` function\n^^^^^^^^^^^^^^^^^^^^^^\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.. code-block:: python\n\n def run(protocol: protocol_api.ProtocolContext):\n\nWith the protocol context argument named and typed, you can start calling methods on ``protocol`` to add labware and hardware.\n\nLabware\n-------\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 :py:meth:`~.ProtocolContext.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'll place the labware on the robot's deck.", + "start_char_idx": 7074, + "end_char_idx": 9150, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c": { + "__data__": { + "id_": "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "14706ad3-1f24-48d4-aa97-c543af753a5a", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "25221335e9a3804a4b1af32459640f86a43de6e3fb7db6ca327c940ae61941bb", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b1879021-4816-447e-bcf2-31cae39f1dc7", + "node_type": "1", + "metadata": {}, + "hash": "4ce81cc359960a94d81ed7218ddb61b8363f852371ff09ee4845667635babe3c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.. code-block:: python\n\n def run(protocol: protocol_api.ProtocolContext):\n\nWith the protocol context argument named and typed, you can start calling methods on ``protocol`` to add labware and hardware.\n\nLabware\n-------\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 :py:meth:`~.ProtocolContext.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'll place the labware on the robot's deck.\n\n.. tabs::\n\n .. tab:: Flex\n\n Here\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 .. code-block:: python\n :substitutions:\n\n def 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 If you\u2019re using a different model of labware, find its name in the Labware Library and replace it in your code.\n \n Now the robot will expect to find labware in a configuration that looks like this:\n\n .. image:: ../img/tutorial/initial-deck-map-flex.png\n :scale: 50 %\n :name: Initial Deck State \u2013 Flex\n :align: center\n :alt: Flex deck map with a tip rack in slot D1, reservoir in slot D2, and well plate in slot D3.", + "start_char_idx": 8325, + "end_char_idx": 10188, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b1879021-4816-447e-bcf2-31cae39f1dc7": { + "__data__": { + "id_": "b1879021-4816-447e-bcf2-31cae39f1dc7", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "7af1e9cd8cace141a25680fd2f4a34be21f4d55f88fc8e3f816e165d514d92b9", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9fc6026e-f392-49cc-aea9-7315ef913cf4", + "node_type": "1", + "metadata": {}, + "hash": "f643180e7d2d3a7c727b0c72313d3b814d4ef805c1976bdc92ba12d6e6069417", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Now the robot will expect to find labware in a configuration that looks like this:\n\n .. image:: ../img/tutorial/initial-deck-map-flex.png\n :scale: 50 %\n :name: Initial Deck State \u2013 Flex\n :align: center\n :alt: Flex deck map with a tip rack in slot D1, reservoir in slot D2, and well plate in slot D3.\n \n .. tab:: OT-2\n\n Here\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 .. code-block:: python\n :substitutions:\n \n def 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 If you\u2019re using a different model of labware, find its name in the Labware Library and replace it in your code.\n \n Now the robot will expect to find labware in a configuration that looks like this:\n\n .. image:: ../img/tutorial/initial-deck-map.png\n :scale: 50 %\n :name: Initial Deck State \u2013 OT-2\n :align: center\n :alt: OT-2 deck map with a tip rack in slot 1, reservoir in slot 2, and well plate in slot 3.\n\nYou may notice that these deck maps don't 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.)\n\nPipettes\n--------\n\nNext you\u2019ll specify what pipette to use in the protocol.", + "start_char_idx": 9838, + "end_char_idx": 11784, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9fc6026e-f392-49cc-aea9-7315ef913cf4": { + "__data__": { + "id_": "9fc6026e-f392-49cc-aea9-7315ef913cf4", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b1879021-4816-447e-bcf2-31cae39f1dc7", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "b570c08c7101cadcc852c80d18df301a87363c5d131974155c6858b2a56e0b17", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "fe612ae6-4bae-487d-921f-811daa789dc2", + "node_type": "1", + "metadata": {}, + "hash": "54dd8a2a9ced0fe44565b64a40315091826492d108e5e81f75e39902e3a61e2b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "You may notice that these deck maps don't 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.)\n\nPipettes\n--------\n\nNext you\u2019ll specify what pipette to use in the protocol. Loading a pipette is done with the :py:meth:`.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 :ref:`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.. code-block:: python\n\n # Flex\n left_pipette = protocol.load_instrument('flex_1channel_1000', 'left', tip_racks=[tips])\n\n.. code-block:: python\n\n # OT-2\n left_pipette = protocol.load_instrument('p300_single_gen2', 'left', tip_racks=[tips])\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\n.. note::\n\n You may notice that the value of ``tip_racks`` is in brackets, indicating that it\u2019s a list.", + "start_char_idx": 11213, + "end_char_idx": 13025, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "fe612ae6-4bae-487d-921f-811daa789dc2": { + "__data__": { + "id_": "fe612ae6-4bae-487d-921f-811daa789dc2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9fc6026e-f392-49cc-aea9-7315ef913cf4", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "6fedd8b67b47273a805212961849a7dca6013bfe1b3dc1658bc86ec5e5ecbc69", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f259fd6c-516e-47cd-8f1c-4d9b51642a5c", + "node_type": "1", + "metadata": {}, + "hash": "ef391d8d5824940bd4a189db197092053909c6f0504919266e21c56cf4461cc3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\n.. note::\n\n You 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]``.\n\n.. _tutorial-commands:\n\nCommands\n--------\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's :py:meth:`.transfer` method, which combines many :ref:`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.. code-block:: python\n\n left_pipette.transfer(100, reservoir['A1'], plate.wells())\n\nBreaking down these single lines of code shows the power of :ref:`complex commands `. The first argument is the amount to transfer to each destination, 100 uL.", + "start_char_idx": 12602, + "end_char_idx": 14610, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f259fd6c-516e-47cd-8f1c-4d9b51642a5c": { + "__data__": { + "id_": "f259fd6c-516e-47cd-8f1c-4d9b51642a5c", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "fe612ae6-4bae-487d-921f-811daa789dc2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "c5a926cda9f4d9452af5815ede5b0ec9cd30e1f554b155cd40e71b1b51d22f98", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "fe88bd89-3d04-441b-bcee-67db0c8e3da2", + "node_type": "1", + "metadata": {}, + "hash": "d7480c3c4f193fada03b7be14e9690e65bf4db2f6df902d0afa03b90bbab773e", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.. code-block:: python\n\n left_pipette.transfer(100, reservoir['A1'], plate.wells())\n\nBreaking down these single lines of code shows the power of :ref:`complex commands `. The first argument is the amount to transfer to each destination, 100 uL. 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 :py:meth:`.wells` method of ``plate`` returns a list of *every well*, and the command will apply to all of them.\n\n.. image:: ../img/tutorial/diluent.gif\n :name: Transfer of diluent to plate\n :align: center\n :alt: Animation showing an empty well plate followed by the plate with diluent in every well.\n\nIn plain English, you've instructed the robot, \u201cFor every well on the plate, aspirate 100 uL 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.. code-block:: python\n\n for i in range(8):\n row = plate.rows()[i]\n\nUsing Python's built-in :py:class:`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.", + "start_char_idx": 13977, + "end_char_idx": 15845, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "fe88bd89-3d04-441b-bcee-67db0c8e3da2": { + "__data__": { + "id_": "fe88bd89-3d04-441b-bcee-67db0c8e3da2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f259fd6c-516e-47cd-8f1c-4d9b51642a5c", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "91efcfc712bcd3b0566aab3758a07d0d77a66721e6e85c82b64c636bd6f9f870", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "180aaef6-1850-4f67-b268-11396da976f4", + "node_type": "1", + "metadata": {}, + "hash": "e6a0d8dd71449fb40038af75a141a192c26e3cb0ad4c5673448fe04c1f775eb6", + "class_name": "RelatedNodeInfo" + } + }, + "text": "In plain English, you've instructed the robot, \u201cFor every well on the plate, aspirate 100 uL 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.. code-block:: python\n\n for i in range(8):\n row = plate.rows()[i]\n\nUsing Python's built-in :py:class:`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\n.. image:: ../img/tutorial/row-tracking.gif\n :name: Tracking current row\n :align: center\n :alt: The well plate, with row A annotated as \"i = 0\".\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.. code-block:: python\n \n left_pipette.transfer(100, reservoir['A2'], row[0], mix_after(3, 50))\n\nAs before, the first argument specifies to transfer 100 uL. 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 uL of fluid each time.\n\n.. image:: ../img/tutorial/solution.gif\n :name: Solution added to A1\n :align: center\n :alt: The well plate, with blue solution added to well A1.\n\nFinally, it\u2019s time to dilute the solution down the row.", + "start_char_idx": 15138, + "end_char_idx": 17054, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "180aaef6-1850-4f67-b268-11396da976f4": { + "__data__": { + "id_": "180aaef6-1850-4f67-b268-11396da976f4", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "fe88bd89-3d04-441b-bcee-67db0c8e3da2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "3e38e1f7c265cbc765278d65445d4cb0d76acb58eacb88adbc6a822945f67a6d", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "f04b18f7-13be-4067-9ed6-b3324f5a06d0", + "node_type": "1", + "metadata": {}, + "hash": "e25fd684f37f8ef6c3a412c89879fc21348d79cf507269a7fccef66cff88225c", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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 uL of fluid each time.\n\n.. image:: ../img/tutorial/solution.gif\n :name: Solution added to A1\n :align: center\n :alt: The well plate, with blue solution added to well A1.\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.. code-block:: python\n\n left_pipette.transfer(100, row[:11], row[1:], mix_after(3, 50))\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. This condenses all of the subsequent transfers down the row into a single line of code.\n\n.. image:: ../img/tutorial/stepwise-transfer.gif\n :name: Stepwise transfer of solution down a row\n :align: center\n :alt: Animation showing transfer from A1 to A2, A2 to A3, and so on. Each step corresponds to an item in the source and destination lists.", + "start_char_idx": 16449, + "end_char_idx": 18282, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "f04b18f7-13be-4067-9ed6-b3324f5a06d0": { + "__data__": { + "id_": "f04b18f7-13be-4067-9ed6-b3324f5a06d0", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "180aaef6-1850-4f67-b268-11396da976f4", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ef87f7e36009e1fd2feb15771231b604db3b308d12bbb86b5ebb35453b128a46", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "12008c04-5842-43b0-a2eb-3d6fc544a1cf", + "node_type": "1", + "metadata": {}, + "hash": "f474b02de7af25f8445a4a5fac7eee9227a5de54fb04bb1e5a65cd7da420d95f", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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\n.. image:: ../img/tutorial/stepwise-transfer.gif\n :name: Stepwise transfer of solution down a row\n :align: center\n :alt: Animation showing transfer from A1 to A2, A2 to A3, and so on. Each step corresponds to an item in the source and destination lists. The color of liquid gets paler with each step from left to right.\n \nAll that remains is for the loop to repeat these steps, filling each row down the plate.\n\n.. image:: ../img/tutorial/row-loop.gif\n :name: Looping over each row\n :align: center\n :alt: Animation showing each row of the plate being filled, from A (i = 0) to H (i = 7).\n\nThat\u2019s it! If you\u2019re using a single-channel pipette, you\u2019re ready to try out your protocol. \n\n8-Channel Pipette\n-----------------\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.", + "start_char_idx": 17553, + "end_char_idx": 19045, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "12008c04-5842-43b0-a2eb-3d6fc544a1cf": { + "__data__": { + "id_": "12008c04-5842-43b0-a2eb-3d6fc544a1cf", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "f04b18f7-13be-4067-9ed6-b3324f5a06d0", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e6dda4acd73c724bd0e4073f49e7441a954ff3e653550196dc3e2678889b54cf", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e8532359-9caa-4ec8-882e-9a1a355de9bc", + "node_type": "1", + "metadata": {}, + "hash": "2538f4ddfb68e1740fd3f2820b21caa330bf9df96b09b0bfa8e1c45577748f7b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "The color of liquid gets paler with each step from left to right.\n \nAll that remains is for the loop to repeat these steps, filling each row down the plate.\n\n.. image:: ../img/tutorial/row-loop.gif\n :name: Looping over each row\n :align: center\n :alt: Animation showing each row of the plate being filled, from A (i = 0) to H (i = 7).\n\nThat\u2019s it! If you\u2019re using a single-channel pipette, you\u2019re ready to try out your protocol. \n\n8-Channel Pipette\n-----------------\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.. code-block:: python\n\n left_pipette.transfer(100, reservoir['A1'], plate.rows()[0]) \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.. code-block:: python\n \n row = plate.rows()[0]\n left_pipette.transfer(100, reservoir['A2'], row[0], mix_after=(3, 50))\n left_pipette.transfer(100, row[:11], row[1:], mix_after=(3, 50))\n\nInstead of tracking the current row in the ``row`` variable, this code sets it to always be row A (index 0). \n\n*****************\nTry Your Protocol\n*****************\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.", + "start_char_idx": 18283, + "end_char_idx": 19981, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e8532359-9caa-4ec8-882e-9a1a355de9bc": { + "__data__": { + "id_": "e8532359-9caa-4ec8-882e-9a1a355de9bc", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "12008c04-5842-43b0-a2eb-3d6fc544a1cf", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "ef9175f4f6917d243b2efb7a4c23c402a17dbea2c2acb0e9d0c59820bfc516c0", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "93cb7706-5e09-4305-8e63-64adc3f8c5ec", + "node_type": "1", + "metadata": {}, + "hash": "0ae320615e961f68c2c7cc1b9832cf9d8243bb5e9e4ed540a1be3ff99d8ccfeb", + "class_name": "RelatedNodeInfo" + } + }, + "text": "*****************\nTry Your Protocol\n*****************\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't 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 `_\n\n.. _tutorial-simulate:\n\nIn Simulation\n^^^^^^^^^^^^^\n.. suggest linking to pip install rather than just using text in ``code`` format. Help reader find resource\n\nSimulation doesn\u2019t require having a robot connected to your computer. You just need to install the `Opentrons Python module `_ from 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.. prompt:: bash\n\n opentrons_simulate dilution-tutorial.py\n\nThis should generate a lot of output! As written, the protocol has about 1000 steps.", + "start_char_idx": 19715, + "end_char_idx": 21550, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "93cb7706-5e09-4305-8e63-64adc3f8c5ec": { + "__data__": { + "id_": "93cb7706-5e09-4305-8e63-64adc3f8c5ec", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e8532359-9caa-4ec8-882e-9a1a355de9bc", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "19aa80dc5aff2f062a92fd5ce7d4756e1ff903281c9c30d61e66951fe46dd0eb", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1dc50e96-2e03-4a1c-878a-2124b61040aa", + "node_type": "1", + "metadata": {}, + "hash": "3aa555e1c435052b4cc9d5aa44a911f1886a9e901418300ab13289a498228330", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Help reader find resource\n\nSimulation doesn\u2019t require having a robot connected to your computer. You just need to install the `Opentrons Python module `_ from 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.. prompt:: bash\n\n opentrons_simulate dilution-tutorial.py\n\nThis should generate a lot of output! As written, the protocol has about 1000 steps. If you\u2019re curious how long that will take, you can use an experimental feature to estimate the time:\n\n.. prompt:: bash\n\n opentrons_simulate dilution-tutorial.py -e -o nothing\n\nThe ``-e`` flag estimates duration, and ``-o nothing`` suppresses printing the run log. This indicates that 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.\n\nOn a Robot\n^^^^^^^^^^\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**.", + "start_char_idx": 20883, + "end_char_idx": 22855, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1dc50e96-2e03-4a1c-878a-2124b61040aa": { + "__data__": { + "id_": "1dc50e96-2e03-4a1c-878a-2124b61040aa", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "93cb7706-5e09-4305-8e63-64adc3f8c5ec", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "93379371b6deb387307110524dd6bf6f950242a41e0b01f86ea13b3328d53590", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "9cd00511-baec-412a-b5e7-cecc9b48ab69", + "node_type": "1", + "metadata": {}, + "hash": "0ecff7dedd66227345fc803485580059ae16284c60bc70b3d87a94adb3ee2ba9", + "class_name": "RelatedNodeInfo" + } + }, + "text": "On a Robot\n^^^^^^^^^^\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!\n\n.. image:: ../img/tutorial/serial-dilution-result.jpg\n :name: Result of Serial Dilution\n :align: center\n :alt: An overhead view of a well plate on the metal OT-2 deck, with dark blue liquid in the leftmost column smoothly transitioning to very light blue in the rightmost column.\n\n**********\nNext Steps\n**********\n\nThis tutorial has relied heavily on the ``transfer()`` method, but there's much more that the Python Protocol API can do. Many advanced applications use :ref:`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.", + "start_char_idx": 22143, + "end_char_idx": 24233, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "9cd00511-baec-412a-b5e7-cecc9b48ab69": { + "__data__": { + "id_": "9cd00511-baec-412a-b5e7-cecc9b48ab69", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "ca6eb3b7-7d86-4cd1-858f-5d13ead632da", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "09d8c56b0c51f4fdf6f24454ff4be96f092b6ee4d7e6c4ce798e447ada3e59d8", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1dc50e96-2e03-4a1c-878a-2124b61040aa", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1493b5f36a87d18171921658f493e7ee806558b8cf969c45e94ca67fbd648783", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "56d01d77-8e38-448c-b416-764d64927354", + "node_type": "1", + "metadata": {}, + "hash": "7e2a9d3b8dfe61771c6b6889eb1f9fd87694cda3dc7455d82b8752cee9cf7660", + "class_name": "RelatedNodeInfo" + } + }, + "text": "When it\u2019s all done, check the results of your serial dilution procedure \u2014 you should have a beautiful dye gradient running across the plate!\n\n.. image:: ../img/tutorial/serial-dilution-result.jpg\n :name: Result of Serial Dilution\n :align: center\n :alt: An overhead view of a well plate on the metal OT-2 deck, with dark blue liquid in the leftmost column smoothly transitioning to very light blue in the rightmost column.\n\n**********\nNext Steps\n**********\n\nThis tutorial has relied heavily on the ``transfer()`` method, but there's much more that the Python Protocol API can do. Many advanced applications use :ref:`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 :ref:`Opentrons hardware modules `, there are methods to control their behavior. And all of the API's classes and methods are catalogued in the :ref:`API Reference `.", + "start_char_idx": 23390, + "end_char_idx": 24460, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "56d01d77-8e38-448c-b416-764d64927354": { + "__data__": { + "id_": "56d01d77-8e38-448c-b416-764d64927354", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "9cd00511-baec-412a-b5e7-cecc9b48ab69", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "1a552fae5d8d53e686d935cb9d03ac6eb6e5031c108b8470f2a6cba910418661", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "2caeef28-e32c-4545-b62e-d223747cd700", + "node_type": "1", + "metadata": {}, + "hash": "502c1fcf1f065d2fcd12dc3a994bcf5708f24da3ecf3ba3f91a04e5aca346dc0", + "class_name": "RelatedNodeInfo" + } + }, + "text": ":og:description: How to choose the right Python API version for your protocol. \n\n.. _v2-versioning:\n\n**********\nVersioning\n**********\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.\n\nMajor and Minor Versions\n========================\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.\n\n.. _specifying-versions:\n\nSpecifying Versions\n===================\n\nYou must specify the API version you are targeting in your Python protocol.", + "start_char_idx": 0, + "end_char_idx": 2016, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "2caeef28-e32c-4545-b62e-d223747cd700": { + "__data__": { + "id_": "2caeef28-e32c-4545-b62e-d223747cd700", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "56d01d77-8e38-448c-b416-764d64927354", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "61d9d90c69f9fdbdd0a95171eec75f8f2b60e829c9bf764aee1736f9f95e498f", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "94899737-e97e-4b3c-b374-4aae60f724be", + "node_type": "1", + "metadata": {}, + "hash": "b5e1654a5a8fa3c650bd18ab90bc5a878fa6024a836606ccb749bd62f68b6807", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.\n\n.. _specifying-versions:\n\nSpecifying Versions\n===================\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.. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {\n 'apiLevel': '|apiLevel|',\n 'author': 'A. Biologist'}\n\n def run(protocol: protocol_api.ProtocolContext):\n protocol.comment('Hello, world!')\n \nFrom version 2.15 onward, you can specify ``apiLevel`` in the ``requirements`` dictionary instead:\n\n.. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'author': 'A. Biologist'}\n requirements = {'apiLevel': '2.15', 'robotType': 'Flex'}\n\n def run(protocol: protocol_api.ProtocolContext):\n protocol.comment('Hello, Flex!')\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't specify a lower version and then call ``HeaterShakerContext`` methods without causing an error.", + "start_char_idx": 1119, + "end_char_idx": 3224, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "94899737-e97e-4b3c-b374-4aae60f724be": { + "__data__": { + "id_": "94899737-e97e-4b3c-b374-4aae60f724be", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "2caeef28-e32c-4545-b62e-d223747cd700", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "67ef9716b0f47ade824da0a4f9f0c4310bcf566a29aef890de4721f38641032b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2", + "node_type": "1", + "metadata": {}, + "hash": "daa9b9ae83bdb5a52141c3faa9a126ec02838d84bf5e1b6caa3c6feb065846e0", + "class_name": "RelatedNodeInfo" + } + }, + "text": "From version 2.15 onward, you can specify ``apiLevel`` in the ``requirements`` dictionary instead:\n\n.. code-block:: python\n :substitutions:\n\n from opentrons import protocol_api\n\n metadata = {'author': 'A. Biologist'}\n requirements = {'apiLevel': '2.15', 'robotType': 'Flex'}\n\n def run(protocol: protocol_api.ProtocolContext):\n protocol.comment('Hello, Flex!')\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't 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's API version. Version statements look like this:\n\n..\n\nOn the one hand, using the highest available version will give your protocol access to all the latest :ref:`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.\n\n.. note::\n\n Python protocols with an ``apiLevel`` of 2.14 or higher can't currently be simulated with the ``opentrons_simulate`` command-line tool, the :py:func:`opentrons.simulate.simulate` function, or the :py:func:`opentrons.simulate.get_protocol_api` function.", + "start_char_idx": 2419, + "end_char_idx": 4561, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2": { + "__data__": { + "id_": "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "94899737-e97e-4b3c-b374-4aae60f724be", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "6f8e4ca3d198fb6aa689300ef4a12b9e95f95e24bfc9759972442dc77344fb44", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "c485d342-3f7f-42fc-acf5-2b16c6305c76", + "node_type": "1", + "metadata": {}, + "hash": "710f47b68d0480e7de966f1ee9fbeb39fefe6ccb9667b870d47e63645c840bf4", + "class_name": "RelatedNodeInfo" + } + }, + "text": "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.\n\n.. note::\n\n Python protocols with an ``apiLevel`` of 2.14 or higher can't currently be simulated with the ``opentrons_simulate`` command-line tool, the :py:func:`opentrons.simulate.simulate` function, or the :py:func:`opentrons.simulate.get_protocol_api` function. If your protocol doesn't rely on new functionality added after version 2.13, use a lower ``apiLevel``. For protocols that require 2.14 or higher, analyze your protocol with the Opentrons App instead.\n\n\nMaximum Supported Versions\n==========================\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's **Information** card.\n\nIf you upload a protocol that specifies a higher API level than the maximum supported, your robot won't 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.0.0) support the following version ranges: \n\n * **Flex:** version 2.15.\n * **OT-2:** versions 2.0\u2013|apiLevel|.\n\n\n.. _version-table:\n\nAPI and Robot Software Versions\n===============================\n\nThis table lists the correspondence between Protocol API versions and robot software versions.", + "start_char_idx": 3908, + "end_char_idx": 5660, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "c485d342-3f7f-42fc-acf5-2b16c6305c76": { + "__data__": { + "id_": "c485d342-3f7f-42fc-acf5-2b16c6305c76", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "89a3eb490289a0bab195b45006798e90bbfc2db14400c2e177cc799c837b31b5", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "58d991d1-5ea2-42ee-83fb-faf19c4bae58", + "node_type": "1", + "metadata": {}, + "hash": "b181b97848019003db6f5cb0c0a76019430d08a5ad5c340041be461b025b3542", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Maximum Supported Versions\n==========================\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's **Information** card.\n\nIf you upload a protocol that specifies a higher API level than the maximum supported, your robot won't 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.0.0) support the following version ranges: \n\n * **Flex:** version 2.15.\n * **OT-2:** versions 2.0\u2013|apiLevel|.\n\n\n.. _version-table:\n\nAPI and Robot Software Versions\n===============================\n\nThis table lists the correspondence between Protocol API versions and robot software versions.\n\n+-------------+------------------------------+\n| API Version | Introduced in Robot Software |\n+=============+==============================+\n| 2.15 | 7.0.0 |\n+-------------+------------------------------+\n| 2.14 | 6.3.0 |\n+-------------+------------------------------+\n| 2.13 | 6.1.0 |\n+-------------+------------------------------+\n| 2.12 | 5.0.0 |\n+-------------+------------------------------+\n| 2.11 | 4.4.0 |\n+-------------+------------------------------+\n| 2.10 | 4.3.0 |\n+-------------+------------------------------+\n| 2.9 | 4.1.0 |\n+-------------+------------------------------+\n| 2.8 | 4.0.0 |\n+-------------+------------------------------+\n| 2.7 | 3.21.0 |\n+-------------+------------------------------+\n| 2.6 | 3.20.0 |\n+-------------+------------------------------+\n| 2.5 | 3.19.0 |\n+-------------+------------------------------+\n| 2.4 | 3.17.1 |\n+-------------+------------------------------+\n| 2.3 | 3.17.0 |\n+-------------+------------------------------+\n| 2.2 | 3.16.0 |\n+-------------+------------------------------+\n| 2.1 | 3.15.2 |\n+-------------+------------------------------+\n| 2.0 | 3.14.0 |\n+-------------+------------------------------+\n| 1.0 | 3.0.0 |\n+-------------+------------------------------+\n\n.. _version-notes:\n\nChanges in API Versions\n=======================\n\nVersion 2.15\n------------\n\nThis version introduces support for the Opentrons Flex robot, instruments, modules, and labware.", + "start_char_idx": 4764, + "end_char_idx": 7594, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "58d991d1-5ea2-42ee-83fb-faf19c4bae58": { + "__data__": { + "id_": "58d991d1-5ea2-42ee-83fb-faf19c4bae58", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "c485d342-3f7f-42fc-acf5-2b16c6305c76", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "9a387cafa830686ea517034a3f118ffaeb6fcb993c168c12a77a80079ba87d4a", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "16f4ca63-7781-4c83-9db4-ef0e8fd2a398", + "node_type": "1", + "metadata": {}, + "hash": "a25f0162f0d732261f8e1fd70834f1fea46d8a72fad1924cd760493213d9f077", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- Flex features\n\n - Write protocols for Opentrons Flex by declaring ``\"robotType\": \"Flex\"`` in the new ``requirements`` dictionary. See the :ref:`examples in the Tutorial `.\n \n - :py:meth:`.load_instrument` supports loading Flex 1-, 8-, and 96-channel pipettes. See :ref:`new-create-pipette`.\n \n - The new :py:meth:`.move_labware` method can move labware automatically using the Flex Gripper. You can also move labware manually on Flex.\n \n - :py:meth:`.load_module` supports loading the :ref:`Magnetic Block `. \n \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 \n - The new :py:meth:`.configure_for_volume` method can place Flex 50 uL pipettes in a low-volume mode for dispensing very small volumes of liquid. See :ref:`pipette-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 \n - Optionally specify ``\"robotType\": \"OT-2\"`` in ``requirements``.\n\n - Use coordinates or numbers to specify :ref:`deck slots `. These formats match physical labels on Flex and OT-2, but you can use either system, regardless of ``robotType``.\n \n - The new :py:meth:`.load_adapter` method lets you load adapters and labware separately on modules, and lets you load adapters directly in deck slots. See :ref:`labware-on-adapters`.\n \n - Move labware manually using :py:meth:`.move_labware`, without having to stop your protocol. \n \n - Manual labware moves support moving to or from the new :py:obj:`~.protocol_api.OFF_DECK` location (outside of the robot).", + "start_char_idx": 7596, + "end_char_idx": 9413, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "16f4ca63-7781-4c83-9db4-ef0e8fd2a398": { + "__data__": { + "id_": "16f4ca63-7781-4c83-9db4-ef0e8fd2a398", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "58d991d1-5ea2-42ee-83fb-faf19c4bae58", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "0c9f00efe77120d6a11733b4bab5a78d85d1ca80a271e3cd2849efe093e61325", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "41f41352-1116-41d4-9b74-7543016929a3", + "node_type": "1", + "metadata": {}, + "hash": "d6b6e5c2073a742a899dc461bfb109b22f0cce61d155dc46f39c145db271aa40", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- Optionally specify ``\"robotType\": \"OT-2\"`` in ``requirements``.\n\n - Use coordinates or numbers to specify :ref:`deck slots `. These formats match physical labels on Flex and OT-2, but you can use either system, regardless of ``robotType``.\n \n - The new :py:meth:`.load_adapter` method lets you load adapters and labware separately on modules, and lets you load adapters directly in deck slots. See :ref:`labware-on-adapters`.\n \n - Move labware manually using :py:meth:`.move_labware`, without having to stop your protocol. \n \n - Manual labware moves support moving to or from the new :py:obj:`~.protocol_api.OFF_DECK` location (outside of the robot).\n \n - :py:meth:`.load_labware` also accepts :py:obj:`~.protocol_api.OFF_DECK` as a location. This lets you prepare labware to be moved onto the deck later in a protocol. \n \n - The new ``push_out`` parameter of the :py:meth:`.dispense` method helps ensure that the pipette dispenses all of its liquid when working with very small volumes.\n \n - By default, repeated calls to :py:meth:`.drop_tip` cycle through multiple locations above the trash bin to prevent tips from stacking up.\n \n- Bug fixes\n\n - :py:attr:`.InstrumentContext.starting_tip` is now respected on the second and subsequent calls to :py:meth:`.InstrumentContext.pick_up_tip` with no argument.\n\n \n\nVersion 2.14\n------------\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 - :py:meth:`.ProtocolContext.define_liquid` and :py:meth:`.Well.load_liquid` added\n to define different liquid types and add them to wells, respectively.", + "start_char_idx": 8742, + "end_char_idx": 10642, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "41f41352-1116-41d4-9b74-7543016929a3": { + "__data__": { + "id_": "41f41352-1116-41d4-9b74-7543016929a3", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "16f4ca63-7781-4c83-9db4-ef0e8fd2a398", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "412a782370fafae5b9debad3b5b23aa01e986402d851033157983853833c2c4b", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5", + "node_type": "1", + "metadata": {}, + "hash": "340d01a03f965bc3557f5482dc2638d6994056cd807f609d33b87277860fed1a", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- By default, repeated calls to :py:meth:`.drop_tip` cycle through multiple locations above the trash bin to prevent tips from stacking up.\n \n- Bug fixes\n\n - :py:attr:`.InstrumentContext.starting_tip` is now respected on the second and subsequent calls to :py:meth:`.InstrumentContext.pick_up_tip` with no argument.\n\n \n\nVersion 2.14\n------------\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 - :py:meth:`.ProtocolContext.define_liquid` and :py:meth:`.Well.load_liquid` added\n to define different liquid types and add them to wells, respectively.\n\n- Bug fixes\n\n - :py:class:`.Labware` and :py:class:`.Well` now adhere to the protocol's API level setting.\n Prior to this version, they incorrectly ignored the setting.\n\n - :py:meth:`.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\n - :py:meth:`.ProtocolContext.load_labware` now prefers loading user-provided labware definitions\n rather than built-in definitions if no explicit ``namespace`` is specified.\n\n - :py:meth:`.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\n - Motion planning has been improved to avoid certain erroneous downward movements,\n especially when using :py:meth:`.InstrumentContext.aspirate`.\n\n - :py:meth:`.Labware.reset` and :py:attr:`.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 :py:meth:`.InstrumentContext.pick_up_tip` were deprecated.", + "start_char_idx": 9761, + "end_char_idx": 11796, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5": { + "__data__": { + "id_": "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "41f41352-1116-41d4-9b74-7543016929a3", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "61644df86d8c9703a6218d905ccef7f05bebf36564bb83a8ceb01eb2a229202e", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "a56d8776-1ac1-4e38-b226-c3d520ba66be", + "node_type": "1", + "metadata": {}, + "hash": "a57227e157c068e09e8ba36cd6a0e571a15df5a632a353810b8d05c35bdc8070", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- :py:meth:`.ProtocolContext.load_labware` now prefers loading user-provided labware definitions\n rather than built-in definitions if no explicit ``namespace`` is specified.\n\n - :py:meth:`.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\n - Motion planning has been improved to avoid certain erroneous downward movements,\n especially when using :py:meth:`.InstrumentContext.aspirate`.\n\n - :py:meth:`.Labware.reset` and :py:attr:`.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 :py:meth:`.InstrumentContext.pick_up_tip` were deprecated.\n Configure your pipette pick-up settings with the Opentrons App, instead.\n\n - ``InstrumentContext.speed`` property was removed.\n This property tried to allow setting a pipette's **plunger** speed in mm/s.\n However, it could only approximately set the plunger speed,\n because the plunger's speed is a stepwise function of the volume.\n Use :py:attr:`.InstrumentContext.flow_rate` to set the flow rate in uL/s, instead.\n\n - ``ModuleContext.load_labware_object`` was removed as an unnecessary internal method.\n\n - ``ModuleContext.geometry`` was removed in favor of\n :py:attr:`.ModuleContext.model` and :py:attr:`.ModuleContext.type`\n\n - ``Well.geometry`` was removed as unnecessary.\n\n - ``MagneticModuleContext.calibrate`` was removed since it was never needed nor implemented.\n\n - The ``height`` parameter of :py:meth:`.MagneticModuleContext.engage` was removed.\n Use ``offset`` or ``height_from_base`` instead.\n \n - ``Labware.separate_calibration`` and :py:meth:`.Labware.set_calibration` were removed,\n since they were holdovers from a calibration system that no longer exists.", + "start_char_idx": 10985, + "end_char_idx": 12907, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "a56d8776-1ac1-4e38-b226-c3d520ba66be": { + "__data__": { + "id_": "a56d8776-1ac1-4e38-b226-c3d520ba66be", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "e88ac66fb2e65dc391917db2f7a5a14dc6037ba45f6314cad534f4786febef37", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "e4ff673f-243b-42b3-b92d-995b4207cd38", + "node_type": "1", + "metadata": {}, + "hash": "1c3522f203b51ecb4aae6f43d1615ef3eb638649460227a6c402a2e9e4b6fa42", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Use :py:attr:`.InstrumentContext.flow_rate` to set the flow rate in uL/s, instead.\n\n - ``ModuleContext.load_labware_object`` was removed as an unnecessary internal method.\n\n - ``ModuleContext.geometry`` was removed in favor of\n :py:attr:`.ModuleContext.model` and :py:attr:`.ModuleContext.type`\n\n - ``Well.geometry`` was removed as unnecessary.\n\n - ``MagneticModuleContext.calibrate`` was removed since it was never needed nor implemented.\n\n - The ``height`` parameter of :py:meth:`.MagneticModuleContext.engage` was removed.\n Use ``offset`` or ``height_from_base`` instead.\n \n - ``Labware.separate_calibration`` and :py:meth:`.Labware.set_calibration` were removed,\n since they were holdovers from a calibration system that no longer exists.\n\n - Various methods and setters were removed that could modify tip state outside of\n calls to :py:meth:`.InstrumentContext.pick_up_tip` and :py:meth:`.InstrumentContext.drop_tip`.\n This change allows the robot to track tip usage more completely and reliably.\n You may still use :py:meth:`.Labware.reset` and :py:meth:`.InstrumentContext.reset_tipracks`\n to reset your tip racks' state.\n\n - The :py:attr:`.Well.has_tip` **setter** was removed. **The getter is still supported.**\n\n - Internal methods ``Labware.use_tips``, ``Labware.previous_tip``, and ``Labware.return_tips``\n were removed.\n\n - The ``configuration`` argument of :py:meth:`.ProtocolContext.load_module` was removed\n because it made unsafe modifications to the protocol's geometry system,\n and the Thermocycler's \"semi\" configuration is not officially supported.\n\n- Known limitations\n\n - :py:meth:`.Labware.set_offset` is not yet supported on this API version.\n Run protocols via the Opentrons App, instead.\n\n - :py:attr:`.ProtocolContext.max_speeds` is not yet supported on the API version.\n Use :py:attr:`.InstrumentContext.default_speed` or the per-method `speed` argument, instead.", + "start_char_idx": 12147, + "end_char_idx": 14102, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "e4ff673f-243b-42b3-b92d-995b4207cd38": { + "__data__": { + "id_": "e4ff673f-243b-42b3-b92d-995b4207cd38", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "a56d8776-1ac1-4e38-b226-c3d520ba66be", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "cc8fa336a6a4734ec36e9e6f16073013919a9d9954fb8db6280b7603c5c4a567", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "7855a776-75d8-443d-8d15-d4b46539e636", + "node_type": "1", + "metadata": {}, + "hash": "701d3dc8e1af4b749003cd8921cfebbb6dba8ce55067d5552bab5b2f20b7feb4", + "class_name": "RelatedNodeInfo" + } + }, + "text": "- The :py:attr:`.Well.has_tip` **setter** was removed. **The getter is still supported.**\n\n - Internal methods ``Labware.use_tips``, ``Labware.previous_tip``, and ``Labware.return_tips``\n were removed.\n\n - The ``configuration`` argument of :py:meth:`.ProtocolContext.load_module` was removed\n because it made unsafe modifications to the protocol's geometry system,\n and the Thermocycler's \"semi\" configuration is not officially supported.\n\n- Known limitations\n\n - :py:meth:`.Labware.set_offset` is not yet supported on this API version.\n Run protocols via the Opentrons App, instead.\n\n - :py:attr:`.ProtocolContext.max_speeds` is not yet supported on the API version.\n Use :py:attr:`.InstrumentContext.default_speed` or the per-method `speed` argument, instead.\n\n - :py:attr:`.InstrumentContext.starting_tip` is not respected on the second and subsequent calls to :py:meth:`.InstrumentContext.pick_up_tip` with no argument.\n\n\nVersion 2.13\n------------\n\n- Adds :py:class:`.HeaterShakerContext` to support the Heater-Shaker Module. You can use the load name ``heaterShakerModuleV1`` with :py:meth:`.ProtocolContext.load_module` to add a Heater-Shaker to a protocol.\n- :py:meth:`.InstrumentContext.drop_tip` now has a ``prep_after`` parameter.\n- :py:meth:`.InstrumentContext.home` may home *both* pipettes as needed to avoid collision risks.\n- :py:meth:`.InstrumentContext.aspirate` and :py:meth:`.InstrumentContext.dispense` will avoid interacting directly with modules.\n\n\nVersion 2.12\n------------\n\n- :py:meth:`.ProtocolContext.resume` has been deprecated.\n- :py:meth:`.Labware.set_offset` has been added to apply labware offsets to protocols run (exclusively) outside of the Opentrons App (Jupyter Notebook and SSH).\n\n\nVersion 2.11\n------------\n\n- Attempting to aspirate from or dispense to tip racks will raise an error.", + "start_char_idx": 13314, + "end_char_idx": 15163, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "7855a776-75d8-443d-8d15-d4b46539e636": { + "__data__": { + "id_": "7855a776-75d8-443d-8d15-d4b46539e636", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "e4ff673f-243b-42b3-b92d-995b4207cd38", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "bfec91224737e5971c70333e8b53eba50940408b2359b244bf0231f9a5c667ef", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "12a8dfa4-1b29-4fd9-bd6d-946676617fb1", + "node_type": "1", + "metadata": {}, + "hash": "29d9d7f6765de44b73fe702dc7a9d2274e465c73c51bf23fc9f3b1f10636b262", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Version 2.12\n------------\n\n- :py:meth:`.ProtocolContext.resume` has been deprecated.\n- :py:meth:`.Labware.set_offset` has been added to apply labware offsets to protocols run (exclusively) outside of the Opentrons App (Jupyter Notebook and SSH).\n\n\nVersion 2.11\n------------\n\n- Attempting to aspirate from or dispense to tip racks will raise an error.\n\n\nVersion 2.10\n------------\n\n- Moving to the same well twice in a row with different pipettes no longer results in strange diagonal movements.\n\n\nVersion 2.9\n-----------\n\n- You can now access certain geometry data regarding a labware's well via a Well Object. See :ref:`new-labware-well-properties` for more information.\n\n\nVersion 2.8\n-----------\n\n- You can now pass in a list of volumes to distribute and consolidate. See :ref:`distribute-consolidate-volume-list` for more information.\n\n - Passing in a zero volume to any :ref:`complex command ` will result in no actions taken for aspirate or dispense\n\n- :py:meth:`.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 :ref:`protocol-api-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 :py:meth:`.InstrumentContext.transfer` for more detail!\n\n\nVersion 2.7\n-----------\n\n- Added :py:meth:`.InstrumentContext.pair_with`, an experimental feature for moving both pipettes simultaneously.\n\n .. note::\n\n This feature has been removed from the Python Protocol API.\n\n- Calling :py:meth:`.InstrumentContext.has_tip` will return whether a particular instrument\n has a tip attached or not.", + "start_char_idx": 14813, + "end_char_idx": 16604, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "12a8dfa4-1b29-4fd9-bd6d-946676617fb1": { + "__data__": { + "id_": "12a8dfa4-1b29-4fd9-bd6d-946676617fb1", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "7855a776-75d8-443d-8d15-d4b46539e636", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "d731bd0bca624774d01e54e32484ee85a315e74b66f5ae70053b6ae7a72fbdf3", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "26310357-9e50-45a5-b84a-15dbc3fc6134", + "node_type": "1", + "metadata": {}, + "hash": "af04d5cb623da49ca85331e0d19241980e09d8c24877e6a816ab252450f56ca3", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Version 2.7\n-----------\n\n- Added :py:meth:`.InstrumentContext.pair_with`, an experimental feature for moving both pipettes simultaneously.\n\n .. note::\n\n This feature has been removed from the Python Protocol API.\n\n- Calling :py:meth:`.InstrumentContext.has_tip` will return whether a particular instrument\n has a tip attached or not.\n\n\nVersion 2.6\n-----------\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\n - For a comparison between API Versions, see :ref:`ot2-flow-rates`\n\n\nVersion 2.5\n-----------\n\n- New :ref:`utility commands ` were added:\n\n - :py:meth:`.ProtocolContext.set_rail_lights`: turns robot rail lights on or off\n - :py:obj:`.ProtocolContext.rail_lights_on`: describes whether or not the rail lights are on\n - :py:obj:`.ProtocolContext.door_closed`: describes whether the robot door is closed\n\n\nVersion 2.4\n-----------\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\n\n\nVersion 2.3\n-----------\n\n- Magnetic Module GEN2 and Temperature Module GEN2 are now supported; you can load them with the names ``\"magnetic\n 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 :py:meth:`.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's status via :py:obj:`.TemperatureModuleContext.status`.", + "start_char_idx": 16264, + "end_char_idx": 18068, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "26310357-9e50-45a5-b84a-15dbc3fc6134": { + "__data__": { + "id_": "26310357-9e50-45a5-b84a-15dbc3fc6134", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "12a8dfa4-1b29-4fd9-bd6d-946676617fb1", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "61fde645837ff6e0526167ed6e9b65fa75fbf7051ea12245f7e3c61b889a8096", + "class_name": "RelatedNodeInfo" + }, + "3": { + "node_id": "6cdd0d74-92f8-4532-88ea-c99c48ee099f", + "node_type": "1", + "metadata": {}, + "hash": "48a31a43957f8a6989708d626559a1beb13ac472c139b9cc348af4e08efc80af", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Version 2.3\n-----------\n\n- Magnetic Module GEN2 and Temperature Module GEN2 are now supported; you can load them with the names ``\"magnetic\n 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 :py:meth:`.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's status via :py:obj:`.TemperatureModuleContext.status`.\n\n\nVersion 2.2\n-----------\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 :ref:`magnetic-module-engage`.\n- Return tip will now use pre-defined heights from hardware testing. For more information, see :ref:`pipette-return-tip`.\n- When using the return tip function, tips are no longer added back into the tip tracker. For more information, see :ref:`pipette-return-tip`.\n\n\nVersion 2.1\n-----------\n\n- When loading labware onto a module, you can now specify a label with the ``label`` parameter of\n :py:meth:`.MagneticModuleContext.load_labware`,\n :py:meth:`.TemperatureModuleContext.load_labware`, or\n :py:meth:`.ThermocyclerContext.load_labware`,\n just like you can when loading labware onto the deck with :py:meth:`.ProtocolContext.load_labware`.", + "start_char_idx": 17527, + "end_char_idx": 18969, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + }, + "6cdd0d74-92f8-4532-88ea-c99c48ee099f": { + "__data__": { + "id_": "6cdd0d74-92f8-4532-88ea-c99c48ee099f", + "embedding": null, + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "excluded_embed_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "excluded_llm_metadata_keys": [ + "file_name", + "file_type", + "file_size", + "creation_date", + "last_modified_date", + "last_accessed_date" + ], + "relationships": { + "1": { + "node_id": "7738952f-db3f-4ad9-83b3-e8fb3bef48b5", + "node_type": "4", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "02e9d3032932c53db853d87834ff0e6a708aa24f1279d09f8e94486c32531fe5", + "class_name": "RelatedNodeInfo" + }, + "2": { + "node_id": "26310357-9e50-45a5-b84a-15dbc3fc6134", + "node_type": "1", + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + }, + "hash": "19f693bd87472d5ebe8e1d3a79201a33ead7c3de6552142f18a515b27180430b", + "class_name": "RelatedNodeInfo" + } + }, + "text": "Version 2.1\n-----------\n\n- When loading labware onto a module, you can now specify a label with the ``label`` parameter of\n :py:meth:`.MagneticModuleContext.load_labware`,\n :py:meth:`.TemperatureModuleContext.load_labware`, or\n :py:meth:`.ThermocyclerContext.load_labware`,\n just like you can when loading labware onto the deck with :py:meth:`.ProtocolContext.load_labware`.\n\n\nVersion 2.0\n-----------\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've also published a `more in-depth discussion `_ of why we developed version 2 of the API and how it differs from version 1.", + "start_char_idx": 18591, + "end_char_idx": 19530, + "text_template": "{metadata_str}\n\n{content}", + "metadata_template": "{key}: {value}", + "metadata_seperator": "\n", + "class_name": "TextNode" + }, + "__type__": "1" + } + }, + "docstore/ref_doc_info": { + "b809786f-0419-4709-9145-e8157d52ba26": { + "node_ids": [ + "c8d13647-7ad1-4ab8-84ad-a94970c5f9e9", + "334035a7-0c1f-4e1f-a86d-4a4cc7ce3219", + "f62a56d7-421c-448d-8040-45eec0049950", + "3a432b4f-1d15-4fdb-b22a-60260e79a243", + "2497c312-b311-4e27-9852-4dfef272acbc" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/adapting_ot2_flex.rst", + "file_name": "adapting_ot2_flex.rst", + "file_size": 7048, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "c4ba4595-9ca7-484e-935b-a055614bda66": { + "node_ids": [ + "d6aaa9bd-e5dc-4388-a265-0eec11f922d7", + "7462b66d-9ad6-410f-9ceb-ccc834c899a7", + "75157767-dded-4c39-b43e-88cc72a9bea2", + "4bc9adf8-6c71-466c-a373-cba39f77d046", + "4d392551-daf1-4443-abe8-7dac3a5956ef", + "39a71b21-283f-4275-86b2-ff692afcbea9", + "a41d9aca-7986-4114-8fd6-07a67f82d394", + "068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9", + "2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/liquids.rst", + "file_name": "liquids.rst", + "file_size": 10903, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "cd34e14d-a65f-4e21-93f8-c306de702613": { + "node_ids": [ + "d825183c-f2ad-4af6-bd58-5972857c4e21", + "0a79d729-0631-4479-a8e9-a660ab1445b3", + "43b96eaa-5ec1-44d6-94c9-52e885e3cea1", + "3436c4b5-7ac3-408f-8bca-c14986fead25", + "ed810bc0-eb72-45d8-90b2-999a60068a2b" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/pipette_tips.rst", + "file_name": "pipette_tips.rst", + "file_size": 5966, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + } + }, + "fe616abb-7210-4467-8a8e-869cbc31cb91": { + "node_ids": [ + "d5868ba2-8879-435c-841a-fe4ecf9e677b", + "8fcb6784-76ee-4e3d-a540-7140fc8e156f", + "d3eaac4c-757f-4cf5-a2f7-622a5c1b1572" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/basic_commands/utilities.rst", + "file_name": "utilities.rst", + "file_size": 4365, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + } + }, + "f55f850c-bb5d-4c65-8b9c-92f35de143e1": { + "node_ids": [ + "d79773d0-4aed-4f57-b8d7-c055a16f53e0", + "1eba341e-d6ca-44a3-928d-d5bfab234753", + "fe100cbc-74d2-41bf-a40b-70d8170d7b31", + "3e189d7a-020e-46d1-9904-2e908115d370", + "0e75adab-8998-455f-b73c-4e13bcb189ab", + "1e92140d-6f5e-46bb-9a95-f0f06f5746db", + "43773776-973f-420d-ad88-aef356e711c9", + "2117b6f5-f483-45bf-ab97-a8379528a517" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/order_operations.rst", + "file_name": "order_operations.rst", + "file_size": 8717, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "63e31b90-e708-4b24-89cc-1e383bb9f237": { + "node_ids": [ + "58074a32-3c79-41fd-b1f4-33e803d124af", + "a33e930e-3141-491d-bb88-4cc2fde13111", + "5e5d5c28-e238-485a-88b0-46cea135634e", + "845f2b9d-770b-4274-9e68-8c56039832e4", + "cb58775b-b524-407b-b9fc-2ab8eeb52c4c", + "d6693392-0548-4317-8f58-471434dd9e7c", + "18dcc255-3559-4715-b452-baedecc77545", + "bce02060-3326-43af-870e-a03cad701b05", + "e3dd77e5-4225-4b6f-921e-9db7edc76117", + "5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e", + "d195d40c-58be-4647-a367-c03fec0b3b70", + "85311773-cc40-40c8-9184-15ff45fba6dd", + "c478cf3b-b4e7-4137-ad84-3ffe0fdb3995" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/parameters.rst", + "file_name": "parameters.rst", + "file_size": 15847, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "faed24a6-41f4-4f3b-8fd8-b4944af402ee": { + "node_ids": [ + "48346ec0-5a70-4849-95c6-46a53791dbda", + "976ae7a9-20b4-4e58-81e8-7ddcd089b1e7", + "0655b0e4-6783-4fd6-a9a8-d6eee5b45921", + "ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef", + "46c09fcb-d6c5-4ae2-896b-5da8d4fe7180", + "db03df28-87cf-49a7-8db2-91abd8f871eb", + "2ff05fc7-9008-4616-a5df-ad82ce3a9f5a", + "e3dc24c2-7188-4e06-8c16-95b620d60c9c", + "e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1", + "c7cc85c8-d045-4646-a3cf-ecb33f0e261b" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/complex_commands/sources_destinations.rst", + "file_name": "sources_destinations.rst", + "file_size": 12777, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "61435d27-a0f0-491e-b0ae-21c5a06674fe": { + "node_ids": [ + "31bffcaa-ca8d-4ffe-890b-a31409513851", + "08459d71-4c98-469d-a923-2c7913612f4a" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/deck_slots.rst", + "file_name": "deck_slots.rst", + "file_size": 2316, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + } + }, + "7cbfe2bf-28e4-4f3b-bc08-030080fe87b6": { + "node_ids": [ + "2260fb63-9f1d-43ec-b992-7857a3a39610", + "2537259a-f63b-444c-82c0-039bc9586ed9", + "8fa8b23f-b3fe-4699-bf32-79fa856199af", + "ddf7e5b0-98af-4830-9f58-1e4dbc326df8", + "6672c195-0f1d-407e-9fea-615b357ef033", + "c7bf92fe-774f-43ce-a757-092e1c88e11d", + "39e9e7d7-6ecc-4065-a99d-b93be3d88231" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/index.rst", + "file_name": "index.rst", + "file_size": 8316, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "2c67dda2-cebc-4bcb-90b0-a136cb824e1c": { + "node_ids": [ + "9da0aea8-af9c-49a1-97e3-517097b0d6c1", + "b81ce6cf-58a1-46bd-95ef-7de922157172", + "739e7a32-21db-4a05-9e76-acd0271cc3d4", + "b35d6054-3c4a-4bc5-acad-48d3e2306141", + "09153e46-075d-438f-91f2-2e7537d2f550", + "f9ca7807-3a62-4021-8141-7967ea91bd1c", + "ff625083-c29d-4f7a-8a1e-eb5a8ad865a1", + "0843f367-b0f1-49e1-a25e-38e3df5f4da9", + "45b5b822-819a-4a0b-a28a-fa937e4aba70", + "c9440268-ea98-463c-80ca-52fbb14b37a3" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/heater_shaker.rst", + "file_name": "heater_shaker.rst", + "file_size": 10980, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "3e618721-6933-4289-8f44-2c3a522560f2": { + "node_ids": ["b1dfac79-06c5-401c-ac7f-81564dc6e7df"], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_block.rst", + "file_name": "magnetic_block.rst", + "file_size": 1580, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + } + }, + "070060f9-be83-493c-bbfd-5213611eb59e": { + "node_ids": [ + "58503ed9-8447-469f-9d86-49495fbb0874", + "4e45d12d-0e82-4d54-a423-82057b75c96c", + "55101789-8dc2-429d-9a8b-d5623c1ba66d", + "c3a44332-4b51-4967-81e8-369507b503c8", + "b5e6b215-0d07-4033-8507-9df9bdbf1159" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/magnetic_module.rst", + "file_name": "magnetic_module.rst", + "file_size": 5781, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "1a34ddbf-2a84-4b90-a4f8-ac5dcf4e8e9f": { + "node_ids": [ + "8785c7d6-0d25-45a2-81af-e74acec0b17d", + "d9344f98-b8dc-44e4-ab86-8c23b7d646cc" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/multiple_same_type.rst", + "file_name": "multiple_same_type.rst", + "file_size": 3245, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + } + }, + "04a3a1be-cfc5-4ee6-8f1f-f0c7e2168356": { + "node_ids": [ + "2bc15fee-b800-42db-8473-d85696cfe92d", + "cb40370d-5c8f-45ec-8093-73c8448a02fc", + "807c6ec8-5a3b-4098-82ed-1d4270438790", + "016d159f-293f-45d9-af26-9be407742d5e", + "2414e950-98b7-436d-ba18-de3485c35513" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/setup.rst", + "file_name": "setup.rst", + "file_size": 7565, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + } + }, + "12e8891c-1c03-4329-81e7-fe1963b9703e": { + "node_ids": [ + "d545e65f-9b87-41d1-b840-12f95d36c6eb", + "5491c5ab-7e6e-43e3-821a-8441a9ef7519" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/temperature_module.rst", + "file_name": "temperature_module.rst", + "file_size": 3205, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + } + }, + "1ebf80b9-30f3-4f74-a2eb-514c8c89c1ce": { + "node_ids": [ + "39fa2cd7-0e41-4a29-9563-1bb3b3b115b4", + "97dc403d-dd4a-4474-9732-5961f25413b0", + "eb3977da-715c-4778-8726-b82dc5678d6f", + "5c5e1212-45fe-4164-94d0-7dc6da6510cc", + "0be2a309-aa0a-4c70-b2d3-90bcc2b728b8", + "30bea738-adb3-49ce-b4c5-2cb02c62296d" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/modules/thermocycler.rst", + "file_name": "thermocycler.rst", + "file_size": 7842, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "5fb5561a-5539-44f8-bb69-6f1462e84132": { + "node_ids": [ + "6266fa60-fb2c-435a-8b42-9a0728ec7f67", + "0ca14135-c1e7-48ce-8afe-b260ac093908", + "e7bbf55c-0555-43f3-ab52-3fc85bba8e54", + "f1384e4c-89a6-4248-86ec-5530dc41bedc", + "352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8", + "b3717357-f19c-4530-bfdd-45b407eecb47" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/moving_labware.rst", + "file_name": "moving_labware.rst", + "file_size": 9192, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + } + }, + "fbf5438b-1bca-43d2-a88d-98f97a35f19f": { + "node_ids": [ + "6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2", + "1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83", + "f930b218-26ac-4a55-913f-ebb285f24de0", + "aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6", + "640c98cf-9553-49d8-97f4-ad858fb8ed42", + "956e03d7-630b-4cdf-a595-7396eb2435ab", + "b2f9388b-55eb-4863-9400-016539f4ecea", + "63dc5976-0aed-4779-9bd4-11eab2368fd8" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_advanced_running.rst", + "file_name": "new_advanced_running.rst", + "file_size": 10099, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + } + }, + "4eee9a38-808d-4205-bfd6-6f102b06fe96": { + "node_ids": ["ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2"], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_atomic_commands.rst", + "file_name": "new_atomic_commands.rst", + "file_size": 1178, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + } + }, + "2955f1f9-17f8-406d-9cfe-4eac441b3162": { + "node_ids": ["038d0cad-dcfd-42eb-842d-10ceebf9d1c8"], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_complex_commands.rst", + "file_name": "new_complex_commands.rst", + "file_size": 1622, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + } + }, + "c4a5fc4c-515a-4d04-913d-fc1585cf035e": { + "node_ids": [ + "001911ad-fe0d-41d8-8799-743f347e274d", + "49ca0de0-7091-405d-b0d4-82aaf63f96fb", + "a571e22f-f6b7-4f59-b77a-75ff196f623f", + "3679d4e1-6415-4993-80a2-9bb483920080", + "bf1b101e-c592-487a-a555-ab3968da1332", + "3adb4f24-f92e-47e1-81fe-cc5fc4dfe903", + "1f4bfba2-3e5e-4925-89a8-73161cbc762b", + "ebd8a76d-2377-4ab3-8353-68199c4f82cc", + "ea58997e-836d-45c6-a5c5-9aea900c68d1", + "e89492ef-ec34-4846-bccb-77d98bebdea6", + "a1d75aef-b074-4f53-83f9-9b37bb7cebe0", + "3eee5d97-4fcf-4f68-b8ae-4a361882f81d", + "01d0cf15-5368-4755-adef-b598719b3d15", + "f64f3cfd-812d-4232-9d9b-a3fad6f17d19", + "0d294764-3db7-4738-8456-a70e444b0210", + "5a2f200d-58d4-46f9-8e02-ab06be757e72", + "1dbbe3f3-0fbd-4adb-86ac-4f289df76b27", + "6811ba89-1843-4937-94f8-6dcfb72d2d0e" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_examples.rst", + "file_name": "new_examples.rst", + "file_size": 24201, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "4ec99f77-fecf-482d-8345-9b715b893357": { + "node_ids": [ + "f96265c5-d43a-4e42-9bd9-350aafc277ab", + "a1677329-df20-406a-a4a6-05c587756fcf", + "32ec23f8-e456-4acc-9c38-fa5019e6ec28", + "ee6324cb-cfa3-4721-974a-db01834600a4", + "5c74fb88-e897-420e-882b-3945dea9c505", + "85a82ba3-b051-4df7-ba6e-7a0bcbc27353", + "d8dd091c-aa13-44d1-938f-a12292d48d95", + "98320e0a-868d-4352-a07e-071e5897432d", + "46c5a59c-4489-44df-a1fd-dc958dd937c9", + "8c101002-338f-44e2-aa49-eea62c29b026", + "20952efe-090a-45aa-b177-e53ec486e3f1", + "f7adff25-5877-4d67-a53a-1a54527b2cc6", + "55164bf4-f736-40f9-9876-a5f6c32c463a", + "59d8dd96-da6f-49c9-8c16-c219c359561d", + "eec8cb18-5fef-47f2-8774-3e3d70b92ec5" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_labware.rst", + "file_name": "new_labware.rst", + "file_size": 17379, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "675410b2-596e-493b-8b0a-0c3990436dd3": { + "node_ids": ["12269a25-c023-442d-bd65-064bfae06e67"], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_modules.rst", + "file_name": "new_modules.rst", + "file_size": 1791, + "creation_date": "2024-03-23", + "last_modified_date": "2024-01-15" + } + }, + "f6cbe2f7-19a5-4ef0-b0ad-7117aaf41996": { + "node_ids": [ + "476220ea-1795-47f7-997b-8eb19792ef78", + "bbe211a7-04dd-4fea-a58d-54870d8ff0c6", + "21b34534-9d4e-4e1e-9763-792a8f50b398", + "97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd", + "cd4eb7f5-4d7f-4481-9a26-eedc211f89ac", + "f0bf7748-c987-4c01-9cd8-09a87939938b", + "3295a522-57b4-4146-a414-09bc00dbc9e7", + "c409d82d-c6fe-40ac-87aa-8ed494f7e5e2", + "13afaf92-1e65-43e2-831c-2ecd72c108a2", + "d7a173a7-0882-41b9-b755-1972cdcf4e78", + "7477f664-2d4d-4946-93fb-10f0f7c7fe2f", + "75be21ee-7046-4af4-b9a7-834821f39c3a", + "11dc6c32-c85d-4ddc-83cb-6a4f25d4d158", + "d2d18186-43b6-41c4-9c61-81bb3209005c", + "05d59f98-d186-466e-9a1a-9f5b18b56bce", + "06557d00-501d-4f76-9ab2-2ce90e7751c3", + "2776c4fe-b24c-493f-bd44-2c252984cc06", + "8d4cc9d1-fafb-459a-b65f-7748250ff308" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/new_pipette.rst", + "file_name": "new_pipette.rst", + "file_size": 22309, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "4da6c89a-702b-40e4-a46f-cc30b9d24a40": { + "node_ids": [ + "c695a9b6-67a3-406b-af48-f2d132267861", + "02af39be-8f80-4e64-8db1-726897aaa0fe", + "4f5b559d-e60a-4a57-9b99-6c0427112512", + "dbfad54b-ca37-4852-9162-92cef747df8d", + "6be5647b-832e-48ae-aa43-e107420df194", + "16bbd799-fd2f-4b40-b959-54097655bd69", + "a39df619-be28-4174-bb5b-e63c1079ce09", + "de5af6d9-781e-4f03-af68-540d4ca5f861", + "7b56e245-174f-4279-90aa-bed3d7a5bcd1", + "6c7e15c2-be7e-4a60-848f-becd4b110db7", + "59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/robot_position.rst", + "file_name": "robot_position.rst", + "file_size": 14278, + "creation_date": "2024-03-25", + "last_modified_date": "2024-03-25" + } + }, + "ca6eb3b7-7d86-4cd1-858f-5d13ead632da": { + "node_ids": [ + "c2e151b8-3c71-441d-aa4a-6a7224e94fc8", + "6aa17a74-053a-443e-b412-66412367f29f", + "12a7d99c-f347-4b00-b3d1-4d682c7ec1bc", + "2a902471-31a0-4af2-95fb-633cca7eb7ce", + "ecec68b7-4d23-4ef0-96cb-96a776280b07", + "a5c24e0d-dc07-4713-8f8b-adf75906acc0", + "14706ad3-1f24-48d4-aa97-c543af753a5a", + "3e0ba986-4ea3-48f8-9c7b-f26519c1e06c", + "b1879021-4816-447e-bcf2-31cae39f1dc7", + "9fc6026e-f392-49cc-aea9-7315ef913cf4", + "fe612ae6-4bae-487d-921f-811daa789dc2", + "f259fd6c-516e-47cd-8f1c-4d9b51642a5c", + "fe88bd89-3d04-441b-bcee-67db0c8e3da2", + "180aaef6-1850-4f67-b268-11396da976f4", + "f04b18f7-13be-4067-9ed6-b3324f5a06d0", + "12008c04-5842-43b0-a2eb-3d6fc544a1cf", + "e8532359-9caa-4ec8-882e-9a1a355de9bc", + "93cb7706-5e09-4305-8e63-64adc3f8c5ec", + "1dc50e96-2e03-4a1c-878a-2124b61040aa", + "9cd00511-baec-412a-b5e7-cecc9b48ab69" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/tutorial.rst", + "file_name": "tutorial.rst", + "file_size": 24603, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + }, + "7738952f-db3f-4ad9-83b3-e8fb3bef48b5": { + "node_ids": [ + "56d01d77-8e38-448c-b416-764d64927354", + "2caeef28-e32c-4545-b62e-d223747cd700", + "94899737-e97e-4b3c-b374-4aae60f724be", + "1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2", + "c485d342-3f7f-42fc-acf5-2b16c6305c76", + "58d991d1-5ea2-42ee-83fb-faf19c4bae58", + "16f4ca63-7781-4c83-9db4-ef0e8fd2a398", + "41f41352-1116-41d4-9b74-7543016929a3", + "b5e17439-c2cf-4ba7-ad3b-f9043036a6d5", + "a56d8776-1ac1-4e38-b226-c3d520ba66be", + "e4ff673f-243b-42b3-b92d-995b4207cd38", + "7855a776-75d8-443d-8d15-d4b46539e636", + "12a8dfa4-1b29-4fd9-bd6d-946676617fb1", + "26310357-9e50-45a5-b84a-15dbc3fc6134", + "6cdd0d74-92f8-4532-88ea-c99c48ee099f" + ], + "metadata": { + "file_path": "/home/alien/work/git/ChatAPI/datasets/v2-1-5/versioning.rst", + "file_name": "versioning.rst", + "file_size": 19533, + "creation_date": "2024-03-26", + "last_modified_date": "2024-03-26" + } + } + } +} diff --git a/opentrons-ai-server/api/storage/index/v215/graph_store.json b/opentrons-ai-server/api/storage/index/v215/graph_store.json new file mode 100644 index 00000000000..5ede88ebe0a --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v215/graph_store.json @@ -0,0 +1 @@ +{ "graph_dict": {} } diff --git a/opentrons-ai-server/api/storage/index/v215/image__vector_store.json b/opentrons-ai-server/api/storage/index/v215/image__vector_store.json new file mode 100644 index 00000000000..b57c98cdf4e --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v215/image__vector_store.json @@ -0,0 +1 @@ +{ "embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {} } diff --git a/opentrons-ai-server/api/storage/index/v215/index_store.json b/opentrons-ai-server/api/storage/index/v215/index_store.json new file mode 100644 index 00000000000..8eaa6adb37b --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v215/index_store.json @@ -0,0 +1,8 @@ +{ + "index_store/data": { + "79296e80-20c5-42af-b73c-0d7f009a2cbe": { + "__type__": "vector_store", + "__data__": "{\"index_id\": \"79296e80-20c5-42af-b73c-0d7f009a2cbe\", \"summary\": null, \"nodes_dict\": {\"c8d13647-7ad1-4ab8-84ad-a94970c5f9e9\": \"c8d13647-7ad1-4ab8-84ad-a94970c5f9e9\", \"334035a7-0c1f-4e1f-a86d-4a4cc7ce3219\": \"334035a7-0c1f-4e1f-a86d-4a4cc7ce3219\", \"f62a56d7-421c-448d-8040-45eec0049950\": \"f62a56d7-421c-448d-8040-45eec0049950\", \"3a432b4f-1d15-4fdb-b22a-60260e79a243\": \"3a432b4f-1d15-4fdb-b22a-60260e79a243\", \"2497c312-b311-4e27-9852-4dfef272acbc\": \"2497c312-b311-4e27-9852-4dfef272acbc\", \"d6aaa9bd-e5dc-4388-a265-0eec11f922d7\": \"d6aaa9bd-e5dc-4388-a265-0eec11f922d7\", \"7462b66d-9ad6-410f-9ceb-ccc834c899a7\": \"7462b66d-9ad6-410f-9ceb-ccc834c899a7\", \"75157767-dded-4c39-b43e-88cc72a9bea2\": \"75157767-dded-4c39-b43e-88cc72a9bea2\", \"4bc9adf8-6c71-466c-a373-cba39f77d046\": \"4bc9adf8-6c71-466c-a373-cba39f77d046\", \"4d392551-daf1-4443-abe8-7dac3a5956ef\": \"4d392551-daf1-4443-abe8-7dac3a5956ef\", \"39a71b21-283f-4275-86b2-ff692afcbea9\": \"39a71b21-283f-4275-86b2-ff692afcbea9\", \"a41d9aca-7986-4114-8fd6-07a67f82d394\": \"a41d9aca-7986-4114-8fd6-07a67f82d394\", \"068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9\": \"068888c4-9ad8-48f3-b4cd-1d8bc5fa85c9\", \"2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff\": \"2f5fe48d-1d2d-4ce4-a9c5-782b82da36ff\", \"d825183c-f2ad-4af6-bd58-5972857c4e21\": \"d825183c-f2ad-4af6-bd58-5972857c4e21\", \"0a79d729-0631-4479-a8e9-a660ab1445b3\": \"0a79d729-0631-4479-a8e9-a660ab1445b3\", \"43b96eaa-5ec1-44d6-94c9-52e885e3cea1\": \"43b96eaa-5ec1-44d6-94c9-52e885e3cea1\", \"3436c4b5-7ac3-408f-8bca-c14986fead25\": \"3436c4b5-7ac3-408f-8bca-c14986fead25\", \"ed810bc0-eb72-45d8-90b2-999a60068a2b\": \"ed810bc0-eb72-45d8-90b2-999a60068a2b\", \"d5868ba2-8879-435c-841a-fe4ecf9e677b\": \"d5868ba2-8879-435c-841a-fe4ecf9e677b\", \"8fcb6784-76ee-4e3d-a540-7140fc8e156f\": \"8fcb6784-76ee-4e3d-a540-7140fc8e156f\", \"d3eaac4c-757f-4cf5-a2f7-622a5c1b1572\": \"d3eaac4c-757f-4cf5-a2f7-622a5c1b1572\", \"d79773d0-4aed-4f57-b8d7-c055a16f53e0\": \"d79773d0-4aed-4f57-b8d7-c055a16f53e0\", \"1eba341e-d6ca-44a3-928d-d5bfab234753\": \"1eba341e-d6ca-44a3-928d-d5bfab234753\", \"fe100cbc-74d2-41bf-a40b-70d8170d7b31\": \"fe100cbc-74d2-41bf-a40b-70d8170d7b31\", \"3e189d7a-020e-46d1-9904-2e908115d370\": \"3e189d7a-020e-46d1-9904-2e908115d370\", \"0e75adab-8998-455f-b73c-4e13bcb189ab\": \"0e75adab-8998-455f-b73c-4e13bcb189ab\", \"1e92140d-6f5e-46bb-9a95-f0f06f5746db\": \"1e92140d-6f5e-46bb-9a95-f0f06f5746db\", \"43773776-973f-420d-ad88-aef356e711c9\": \"43773776-973f-420d-ad88-aef356e711c9\", \"2117b6f5-f483-45bf-ab97-a8379528a517\": \"2117b6f5-f483-45bf-ab97-a8379528a517\", \"58074a32-3c79-41fd-b1f4-33e803d124af\": \"58074a32-3c79-41fd-b1f4-33e803d124af\", \"a33e930e-3141-491d-bb88-4cc2fde13111\": \"a33e930e-3141-491d-bb88-4cc2fde13111\", \"5e5d5c28-e238-485a-88b0-46cea135634e\": \"5e5d5c28-e238-485a-88b0-46cea135634e\", \"845f2b9d-770b-4274-9e68-8c56039832e4\": \"845f2b9d-770b-4274-9e68-8c56039832e4\", \"cb58775b-b524-407b-b9fc-2ab8eeb52c4c\": \"cb58775b-b524-407b-b9fc-2ab8eeb52c4c\", \"d6693392-0548-4317-8f58-471434dd9e7c\": \"d6693392-0548-4317-8f58-471434dd9e7c\", \"18dcc255-3559-4715-b452-baedecc77545\": \"18dcc255-3559-4715-b452-baedecc77545\", \"bce02060-3326-43af-870e-a03cad701b05\": \"bce02060-3326-43af-870e-a03cad701b05\", \"e3dd77e5-4225-4b6f-921e-9db7edc76117\": \"e3dd77e5-4225-4b6f-921e-9db7edc76117\", \"5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e\": \"5e75ad71-cc87-4f7b-a6fd-7b3ffeaf8f0e\", \"d195d40c-58be-4647-a367-c03fec0b3b70\": \"d195d40c-58be-4647-a367-c03fec0b3b70\", \"85311773-cc40-40c8-9184-15ff45fba6dd\": \"85311773-cc40-40c8-9184-15ff45fba6dd\", \"c478cf3b-b4e7-4137-ad84-3ffe0fdb3995\": \"c478cf3b-b4e7-4137-ad84-3ffe0fdb3995\", \"48346ec0-5a70-4849-95c6-46a53791dbda\": \"48346ec0-5a70-4849-95c6-46a53791dbda\", \"976ae7a9-20b4-4e58-81e8-7ddcd089b1e7\": \"976ae7a9-20b4-4e58-81e8-7ddcd089b1e7\", \"0655b0e4-6783-4fd6-a9a8-d6eee5b45921\": \"0655b0e4-6783-4fd6-a9a8-d6eee5b45921\", \"ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef\": \"ff1126fb-d585-4ea0-ae6c-bf2f01cd95ef\", \"46c09fcb-d6c5-4ae2-896b-5da8d4fe7180\": \"46c09fcb-d6c5-4ae2-896b-5da8d4fe7180\", \"db03df28-87cf-49a7-8db2-91abd8f871eb\": \"db03df28-87cf-49a7-8db2-91abd8f871eb\", \"2ff05fc7-9008-4616-a5df-ad82ce3a9f5a\": \"2ff05fc7-9008-4616-a5df-ad82ce3a9f5a\", \"e3dc24c2-7188-4e06-8c16-95b620d60c9c\": \"e3dc24c2-7188-4e06-8c16-95b620d60c9c\", \"e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1\": \"e3b6f7b2-8b5d-4897-a1fe-a86dee6716f1\", \"c7cc85c8-d045-4646-a3cf-ecb33f0e261b\": \"c7cc85c8-d045-4646-a3cf-ecb33f0e261b\", \"31bffcaa-ca8d-4ffe-890b-a31409513851\": \"31bffcaa-ca8d-4ffe-890b-a31409513851\", \"08459d71-4c98-469d-a923-2c7913612f4a\": \"08459d71-4c98-469d-a923-2c7913612f4a\", \"2260fb63-9f1d-43ec-b992-7857a3a39610\": \"2260fb63-9f1d-43ec-b992-7857a3a39610\", \"2537259a-f63b-444c-82c0-039bc9586ed9\": \"2537259a-f63b-444c-82c0-039bc9586ed9\", \"8fa8b23f-b3fe-4699-bf32-79fa856199af\": \"8fa8b23f-b3fe-4699-bf32-79fa856199af\", \"ddf7e5b0-98af-4830-9f58-1e4dbc326df8\": \"ddf7e5b0-98af-4830-9f58-1e4dbc326df8\", \"6672c195-0f1d-407e-9fea-615b357ef033\": \"6672c195-0f1d-407e-9fea-615b357ef033\", \"c7bf92fe-774f-43ce-a757-092e1c88e11d\": \"c7bf92fe-774f-43ce-a757-092e1c88e11d\", \"39e9e7d7-6ecc-4065-a99d-b93be3d88231\": \"39e9e7d7-6ecc-4065-a99d-b93be3d88231\", \"9da0aea8-af9c-49a1-97e3-517097b0d6c1\": \"9da0aea8-af9c-49a1-97e3-517097b0d6c1\", \"b81ce6cf-58a1-46bd-95ef-7de922157172\": \"b81ce6cf-58a1-46bd-95ef-7de922157172\", \"739e7a32-21db-4a05-9e76-acd0271cc3d4\": \"739e7a32-21db-4a05-9e76-acd0271cc3d4\", \"b35d6054-3c4a-4bc5-acad-48d3e2306141\": \"b35d6054-3c4a-4bc5-acad-48d3e2306141\", \"09153e46-075d-438f-91f2-2e7537d2f550\": \"09153e46-075d-438f-91f2-2e7537d2f550\", \"f9ca7807-3a62-4021-8141-7967ea91bd1c\": \"f9ca7807-3a62-4021-8141-7967ea91bd1c\", \"ff625083-c29d-4f7a-8a1e-eb5a8ad865a1\": \"ff625083-c29d-4f7a-8a1e-eb5a8ad865a1\", \"0843f367-b0f1-49e1-a25e-38e3df5f4da9\": \"0843f367-b0f1-49e1-a25e-38e3df5f4da9\", \"45b5b822-819a-4a0b-a28a-fa937e4aba70\": \"45b5b822-819a-4a0b-a28a-fa937e4aba70\", \"c9440268-ea98-463c-80ca-52fbb14b37a3\": \"c9440268-ea98-463c-80ca-52fbb14b37a3\", \"b1dfac79-06c5-401c-ac7f-81564dc6e7df\": \"b1dfac79-06c5-401c-ac7f-81564dc6e7df\", \"58503ed9-8447-469f-9d86-49495fbb0874\": \"58503ed9-8447-469f-9d86-49495fbb0874\", \"4e45d12d-0e82-4d54-a423-82057b75c96c\": \"4e45d12d-0e82-4d54-a423-82057b75c96c\", \"55101789-8dc2-429d-9a8b-d5623c1ba66d\": \"55101789-8dc2-429d-9a8b-d5623c1ba66d\", \"c3a44332-4b51-4967-81e8-369507b503c8\": \"c3a44332-4b51-4967-81e8-369507b503c8\", \"b5e6b215-0d07-4033-8507-9df9bdbf1159\": \"b5e6b215-0d07-4033-8507-9df9bdbf1159\", \"8785c7d6-0d25-45a2-81af-e74acec0b17d\": \"8785c7d6-0d25-45a2-81af-e74acec0b17d\", \"d9344f98-b8dc-44e4-ab86-8c23b7d646cc\": \"d9344f98-b8dc-44e4-ab86-8c23b7d646cc\", \"2bc15fee-b800-42db-8473-d85696cfe92d\": \"2bc15fee-b800-42db-8473-d85696cfe92d\", \"cb40370d-5c8f-45ec-8093-73c8448a02fc\": \"cb40370d-5c8f-45ec-8093-73c8448a02fc\", \"807c6ec8-5a3b-4098-82ed-1d4270438790\": \"807c6ec8-5a3b-4098-82ed-1d4270438790\", \"016d159f-293f-45d9-af26-9be407742d5e\": \"016d159f-293f-45d9-af26-9be407742d5e\", \"2414e950-98b7-436d-ba18-de3485c35513\": \"2414e950-98b7-436d-ba18-de3485c35513\", \"d545e65f-9b87-41d1-b840-12f95d36c6eb\": \"d545e65f-9b87-41d1-b840-12f95d36c6eb\", \"5491c5ab-7e6e-43e3-821a-8441a9ef7519\": \"5491c5ab-7e6e-43e3-821a-8441a9ef7519\", \"39fa2cd7-0e41-4a29-9563-1bb3b3b115b4\": \"39fa2cd7-0e41-4a29-9563-1bb3b3b115b4\", \"97dc403d-dd4a-4474-9732-5961f25413b0\": \"97dc403d-dd4a-4474-9732-5961f25413b0\", \"eb3977da-715c-4778-8726-b82dc5678d6f\": \"eb3977da-715c-4778-8726-b82dc5678d6f\", \"5c5e1212-45fe-4164-94d0-7dc6da6510cc\": \"5c5e1212-45fe-4164-94d0-7dc6da6510cc\", \"0be2a309-aa0a-4c70-b2d3-90bcc2b728b8\": \"0be2a309-aa0a-4c70-b2d3-90bcc2b728b8\", \"30bea738-adb3-49ce-b4c5-2cb02c62296d\": \"30bea738-adb3-49ce-b4c5-2cb02c62296d\", \"6266fa60-fb2c-435a-8b42-9a0728ec7f67\": \"6266fa60-fb2c-435a-8b42-9a0728ec7f67\", \"0ca14135-c1e7-48ce-8afe-b260ac093908\": \"0ca14135-c1e7-48ce-8afe-b260ac093908\", \"e7bbf55c-0555-43f3-ab52-3fc85bba8e54\": \"e7bbf55c-0555-43f3-ab52-3fc85bba8e54\", \"f1384e4c-89a6-4248-86ec-5530dc41bedc\": \"f1384e4c-89a6-4248-86ec-5530dc41bedc\", \"352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8\": \"352ee0d4-25c2-48ae-a7e1-4a83aeb7dae8\", \"b3717357-f19c-4530-bfdd-45b407eecb47\": \"b3717357-f19c-4530-bfdd-45b407eecb47\", \"6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2\": \"6b1a2dd7-0ad1-4ba3-b09d-0f0ea0d965e2\", \"1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83\": \"1bc7dbe7-c2c2-4cd6-bf80-9d3595170e83\", \"f930b218-26ac-4a55-913f-ebb285f24de0\": \"f930b218-26ac-4a55-913f-ebb285f24de0\", \"aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6\": \"aafcfcbb-aa48-4403-8cc4-8df9cdfde2f6\", \"640c98cf-9553-49d8-97f4-ad858fb8ed42\": \"640c98cf-9553-49d8-97f4-ad858fb8ed42\", \"956e03d7-630b-4cdf-a595-7396eb2435ab\": \"956e03d7-630b-4cdf-a595-7396eb2435ab\", \"b2f9388b-55eb-4863-9400-016539f4ecea\": \"b2f9388b-55eb-4863-9400-016539f4ecea\", \"63dc5976-0aed-4779-9bd4-11eab2368fd8\": \"63dc5976-0aed-4779-9bd4-11eab2368fd8\", \"ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2\": \"ca1fe1fc-dc04-4c76-bb71-cf7f8995edd2\", \"038d0cad-dcfd-42eb-842d-10ceebf9d1c8\": \"038d0cad-dcfd-42eb-842d-10ceebf9d1c8\", \"001911ad-fe0d-41d8-8799-743f347e274d\": \"001911ad-fe0d-41d8-8799-743f347e274d\", \"49ca0de0-7091-405d-b0d4-82aaf63f96fb\": \"49ca0de0-7091-405d-b0d4-82aaf63f96fb\", \"a571e22f-f6b7-4f59-b77a-75ff196f623f\": \"a571e22f-f6b7-4f59-b77a-75ff196f623f\", \"3679d4e1-6415-4993-80a2-9bb483920080\": \"3679d4e1-6415-4993-80a2-9bb483920080\", \"bf1b101e-c592-487a-a555-ab3968da1332\": \"bf1b101e-c592-487a-a555-ab3968da1332\", \"3adb4f24-f92e-47e1-81fe-cc5fc4dfe903\": \"3adb4f24-f92e-47e1-81fe-cc5fc4dfe903\", \"1f4bfba2-3e5e-4925-89a8-73161cbc762b\": \"1f4bfba2-3e5e-4925-89a8-73161cbc762b\", \"ebd8a76d-2377-4ab3-8353-68199c4f82cc\": \"ebd8a76d-2377-4ab3-8353-68199c4f82cc\", \"ea58997e-836d-45c6-a5c5-9aea900c68d1\": \"ea58997e-836d-45c6-a5c5-9aea900c68d1\", \"e89492ef-ec34-4846-bccb-77d98bebdea6\": \"e89492ef-ec34-4846-bccb-77d98bebdea6\", \"a1d75aef-b074-4f53-83f9-9b37bb7cebe0\": \"a1d75aef-b074-4f53-83f9-9b37bb7cebe0\", \"3eee5d97-4fcf-4f68-b8ae-4a361882f81d\": \"3eee5d97-4fcf-4f68-b8ae-4a361882f81d\", \"01d0cf15-5368-4755-adef-b598719b3d15\": \"01d0cf15-5368-4755-adef-b598719b3d15\", \"f64f3cfd-812d-4232-9d9b-a3fad6f17d19\": \"f64f3cfd-812d-4232-9d9b-a3fad6f17d19\", \"0d294764-3db7-4738-8456-a70e444b0210\": \"0d294764-3db7-4738-8456-a70e444b0210\", \"5a2f200d-58d4-46f9-8e02-ab06be757e72\": \"5a2f200d-58d4-46f9-8e02-ab06be757e72\", \"1dbbe3f3-0fbd-4adb-86ac-4f289df76b27\": \"1dbbe3f3-0fbd-4adb-86ac-4f289df76b27\", \"6811ba89-1843-4937-94f8-6dcfb72d2d0e\": \"6811ba89-1843-4937-94f8-6dcfb72d2d0e\", \"f96265c5-d43a-4e42-9bd9-350aafc277ab\": \"f96265c5-d43a-4e42-9bd9-350aafc277ab\", \"a1677329-df20-406a-a4a6-05c587756fcf\": \"a1677329-df20-406a-a4a6-05c587756fcf\", \"32ec23f8-e456-4acc-9c38-fa5019e6ec28\": \"32ec23f8-e456-4acc-9c38-fa5019e6ec28\", \"ee6324cb-cfa3-4721-974a-db01834600a4\": \"ee6324cb-cfa3-4721-974a-db01834600a4\", \"5c74fb88-e897-420e-882b-3945dea9c505\": \"5c74fb88-e897-420e-882b-3945dea9c505\", \"85a82ba3-b051-4df7-ba6e-7a0bcbc27353\": \"85a82ba3-b051-4df7-ba6e-7a0bcbc27353\", \"d8dd091c-aa13-44d1-938f-a12292d48d95\": \"d8dd091c-aa13-44d1-938f-a12292d48d95\", \"98320e0a-868d-4352-a07e-071e5897432d\": \"98320e0a-868d-4352-a07e-071e5897432d\", \"46c5a59c-4489-44df-a1fd-dc958dd937c9\": \"46c5a59c-4489-44df-a1fd-dc958dd937c9\", \"8c101002-338f-44e2-aa49-eea62c29b026\": \"8c101002-338f-44e2-aa49-eea62c29b026\", \"20952efe-090a-45aa-b177-e53ec486e3f1\": \"20952efe-090a-45aa-b177-e53ec486e3f1\", \"f7adff25-5877-4d67-a53a-1a54527b2cc6\": \"f7adff25-5877-4d67-a53a-1a54527b2cc6\", \"55164bf4-f736-40f9-9876-a5f6c32c463a\": \"55164bf4-f736-40f9-9876-a5f6c32c463a\", \"59d8dd96-da6f-49c9-8c16-c219c359561d\": \"59d8dd96-da6f-49c9-8c16-c219c359561d\", \"eec8cb18-5fef-47f2-8774-3e3d70b92ec5\": \"eec8cb18-5fef-47f2-8774-3e3d70b92ec5\", \"12269a25-c023-442d-bd65-064bfae06e67\": \"12269a25-c023-442d-bd65-064bfae06e67\", \"476220ea-1795-47f7-997b-8eb19792ef78\": \"476220ea-1795-47f7-997b-8eb19792ef78\", \"bbe211a7-04dd-4fea-a58d-54870d8ff0c6\": \"bbe211a7-04dd-4fea-a58d-54870d8ff0c6\", \"21b34534-9d4e-4e1e-9763-792a8f50b398\": \"21b34534-9d4e-4e1e-9763-792a8f50b398\", \"97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd\": \"97c8cfa5-4e28-4b41-9c5d-bb983c6e30dd\", \"cd4eb7f5-4d7f-4481-9a26-eedc211f89ac\": \"cd4eb7f5-4d7f-4481-9a26-eedc211f89ac\", \"f0bf7748-c987-4c01-9cd8-09a87939938b\": \"f0bf7748-c987-4c01-9cd8-09a87939938b\", \"3295a522-57b4-4146-a414-09bc00dbc9e7\": \"3295a522-57b4-4146-a414-09bc00dbc9e7\", \"c409d82d-c6fe-40ac-87aa-8ed494f7e5e2\": \"c409d82d-c6fe-40ac-87aa-8ed494f7e5e2\", \"13afaf92-1e65-43e2-831c-2ecd72c108a2\": \"13afaf92-1e65-43e2-831c-2ecd72c108a2\", \"d7a173a7-0882-41b9-b755-1972cdcf4e78\": \"d7a173a7-0882-41b9-b755-1972cdcf4e78\", \"7477f664-2d4d-4946-93fb-10f0f7c7fe2f\": \"7477f664-2d4d-4946-93fb-10f0f7c7fe2f\", \"75be21ee-7046-4af4-b9a7-834821f39c3a\": \"75be21ee-7046-4af4-b9a7-834821f39c3a\", \"11dc6c32-c85d-4ddc-83cb-6a4f25d4d158\": \"11dc6c32-c85d-4ddc-83cb-6a4f25d4d158\", \"d2d18186-43b6-41c4-9c61-81bb3209005c\": \"d2d18186-43b6-41c4-9c61-81bb3209005c\", \"05d59f98-d186-466e-9a1a-9f5b18b56bce\": \"05d59f98-d186-466e-9a1a-9f5b18b56bce\", \"06557d00-501d-4f76-9ab2-2ce90e7751c3\": \"06557d00-501d-4f76-9ab2-2ce90e7751c3\", \"2776c4fe-b24c-493f-bd44-2c252984cc06\": \"2776c4fe-b24c-493f-bd44-2c252984cc06\", \"8d4cc9d1-fafb-459a-b65f-7748250ff308\": \"8d4cc9d1-fafb-459a-b65f-7748250ff308\", \"c695a9b6-67a3-406b-af48-f2d132267861\": \"c695a9b6-67a3-406b-af48-f2d132267861\", \"02af39be-8f80-4e64-8db1-726897aaa0fe\": \"02af39be-8f80-4e64-8db1-726897aaa0fe\", \"4f5b559d-e60a-4a57-9b99-6c0427112512\": \"4f5b559d-e60a-4a57-9b99-6c0427112512\", \"dbfad54b-ca37-4852-9162-92cef747df8d\": \"dbfad54b-ca37-4852-9162-92cef747df8d\", \"6be5647b-832e-48ae-aa43-e107420df194\": \"6be5647b-832e-48ae-aa43-e107420df194\", \"16bbd799-fd2f-4b40-b959-54097655bd69\": \"16bbd799-fd2f-4b40-b959-54097655bd69\", \"a39df619-be28-4174-bb5b-e63c1079ce09\": \"a39df619-be28-4174-bb5b-e63c1079ce09\", \"de5af6d9-781e-4f03-af68-540d4ca5f861\": \"de5af6d9-781e-4f03-af68-540d4ca5f861\", \"7b56e245-174f-4279-90aa-bed3d7a5bcd1\": \"7b56e245-174f-4279-90aa-bed3d7a5bcd1\", \"6c7e15c2-be7e-4a60-848f-becd4b110db7\": \"6c7e15c2-be7e-4a60-848f-becd4b110db7\", \"59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b\": \"59ed8eeb-3b36-4e16-84ea-4b2b2f1cb25b\", \"c2e151b8-3c71-441d-aa4a-6a7224e94fc8\": \"c2e151b8-3c71-441d-aa4a-6a7224e94fc8\", \"6aa17a74-053a-443e-b412-66412367f29f\": \"6aa17a74-053a-443e-b412-66412367f29f\", \"12a7d99c-f347-4b00-b3d1-4d682c7ec1bc\": \"12a7d99c-f347-4b00-b3d1-4d682c7ec1bc\", \"2a902471-31a0-4af2-95fb-633cca7eb7ce\": \"2a902471-31a0-4af2-95fb-633cca7eb7ce\", \"ecec68b7-4d23-4ef0-96cb-96a776280b07\": \"ecec68b7-4d23-4ef0-96cb-96a776280b07\", \"a5c24e0d-dc07-4713-8f8b-adf75906acc0\": \"a5c24e0d-dc07-4713-8f8b-adf75906acc0\", \"14706ad3-1f24-48d4-aa97-c543af753a5a\": \"14706ad3-1f24-48d4-aa97-c543af753a5a\", \"3e0ba986-4ea3-48f8-9c7b-f26519c1e06c\": \"3e0ba986-4ea3-48f8-9c7b-f26519c1e06c\", \"b1879021-4816-447e-bcf2-31cae39f1dc7\": \"b1879021-4816-447e-bcf2-31cae39f1dc7\", \"9fc6026e-f392-49cc-aea9-7315ef913cf4\": \"9fc6026e-f392-49cc-aea9-7315ef913cf4\", \"fe612ae6-4bae-487d-921f-811daa789dc2\": \"fe612ae6-4bae-487d-921f-811daa789dc2\", \"f259fd6c-516e-47cd-8f1c-4d9b51642a5c\": \"f259fd6c-516e-47cd-8f1c-4d9b51642a5c\", \"fe88bd89-3d04-441b-bcee-67db0c8e3da2\": \"fe88bd89-3d04-441b-bcee-67db0c8e3da2\", \"180aaef6-1850-4f67-b268-11396da976f4\": \"180aaef6-1850-4f67-b268-11396da976f4\", \"f04b18f7-13be-4067-9ed6-b3324f5a06d0\": \"f04b18f7-13be-4067-9ed6-b3324f5a06d0\", \"12008c04-5842-43b0-a2eb-3d6fc544a1cf\": \"12008c04-5842-43b0-a2eb-3d6fc544a1cf\", \"e8532359-9caa-4ec8-882e-9a1a355de9bc\": \"e8532359-9caa-4ec8-882e-9a1a355de9bc\", \"93cb7706-5e09-4305-8e63-64adc3f8c5ec\": \"93cb7706-5e09-4305-8e63-64adc3f8c5ec\", \"1dc50e96-2e03-4a1c-878a-2124b61040aa\": \"1dc50e96-2e03-4a1c-878a-2124b61040aa\", \"9cd00511-baec-412a-b5e7-cecc9b48ab69\": \"9cd00511-baec-412a-b5e7-cecc9b48ab69\", \"56d01d77-8e38-448c-b416-764d64927354\": \"56d01d77-8e38-448c-b416-764d64927354\", \"2caeef28-e32c-4545-b62e-d223747cd700\": \"2caeef28-e32c-4545-b62e-d223747cd700\", \"94899737-e97e-4b3c-b374-4aae60f724be\": \"94899737-e97e-4b3c-b374-4aae60f724be\", \"1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2\": \"1fd0c2e4-1e26-4cf6-92e6-d2782ee22ee2\", \"c485d342-3f7f-42fc-acf5-2b16c6305c76\": \"c485d342-3f7f-42fc-acf5-2b16c6305c76\", \"58d991d1-5ea2-42ee-83fb-faf19c4bae58\": \"58d991d1-5ea2-42ee-83fb-faf19c4bae58\", \"16f4ca63-7781-4c83-9db4-ef0e8fd2a398\": \"16f4ca63-7781-4c83-9db4-ef0e8fd2a398\", \"41f41352-1116-41d4-9b74-7543016929a3\": \"41f41352-1116-41d4-9b74-7543016929a3\", \"b5e17439-c2cf-4ba7-ad3b-f9043036a6d5\": \"b5e17439-c2cf-4ba7-ad3b-f9043036a6d5\", \"a56d8776-1ac1-4e38-b226-c3d520ba66be\": \"a56d8776-1ac1-4e38-b226-c3d520ba66be\", \"e4ff673f-243b-42b3-b92d-995b4207cd38\": \"e4ff673f-243b-42b3-b92d-995b4207cd38\", \"7855a776-75d8-443d-8d15-d4b46539e636\": \"7855a776-75d8-443d-8d15-d4b46539e636\", \"12a8dfa4-1b29-4fd9-bd6d-946676617fb1\": \"12a8dfa4-1b29-4fd9-bd6d-946676617fb1\", \"26310357-9e50-45a5-b84a-15dbc3fc6134\": \"26310357-9e50-45a5-b84a-15dbc3fc6134\", \"6cdd0d74-92f8-4532-88ea-c99c48ee099f\": \"6cdd0d74-92f8-4532-88ea-c99c48ee099f\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}" + } + } +} diff --git a/opentrons-ai-server/deploy.py b/opentrons-ai-server/deploy.py new file mode 100644 index 00000000000..21190a85e90 --- /dev/null +++ b/opentrons-ai-server/deploy.py @@ -0,0 +1,167 @@ +import argparse +import base64 +import datetime +import subprocess +import time +from dataclasses import dataclass + +import boto3 +import docker +from rich import print +from rich.prompt import Prompt + +ENVIRONMENTS = ["crt", "dev", "sandbox"] + + +def get_aws_account_id() -> str: + sts_client = boto3.client("sts") + response = sts_client.get_caller_identity() + return str(response["Account"]) + + +def get_aws_region() -> str: + session = boto3.session.Session() + return session.region_name + + +@dataclass(frozen=True) +class BaseDeploymentConfig: + IMAGE_NAME: str + FUNCTION_NAME: str + ECR_URL: str + ECR_REPOSITORY: str + TAG: str = str(int(datetime.datetime.now().timestamp())) + DEPLOYMENT_TIMEOUT_S: int = 60 + + +@dataclass(frozen=True) +class CrtDeploymentConfig(BaseDeploymentConfig): + ECR_REPOSITORY: str = "crt-ecr-repo" + ECR_URL: str = f"{get_aws_account_id()}.dkr.ecr.{get_aws_region()}.amazonaws.com" + FUNCTION_NAME: str = "crt-api-function" + IMAGE_NAME: str = "crt-ai-server" + + +@dataclass(frozen=True) +class SandboxDeploymentConfig(BaseDeploymentConfig): + ECR_REPOSITORY: str = "sandbox-ecr-repo" + ECR_URL: str = f"{get_aws_account_id()}.dkr.ecr.{get_aws_region()}.amazonaws.com" + FUNCTION_NAME: str = "sandbox-api-function" + IMAGE_NAME: str = "sandbox-ai-server" + + +@dataclass(frozen=True) +class DevDeploymentConfig(BaseDeploymentConfig): + ECR_REPOSITORY: str = "dev-ecr-repo" + ECR_URL: str = f"{get_aws_account_id()}.dkr.ecr.{get_aws_region()}.amazonaws.com" + FUNCTION_NAME: str = "dev-api-function" + IMAGE_NAME: str = "dev-ai-server" + + +class Deploy: + def __init__(self, config: BaseDeploymentConfig) -> None: + self.config: BaseDeploymentConfig = config + self.ecr_client = boto3.client("ecr") + self.lambda_client = boto3.client("lambda") + self.docker_client = docker.from_env() + self.full_image_name = f"{self.config.ECR_URL}/{self.config.ECR_REPOSITORY}:{self.config.TAG}" + + def build_docker_image(self) -> None: + print(f"Building Docker image {self.config.IMAGE_NAME}:{self.config.TAG}") + self.docker_client.images.build(path=".", tag=f"{self.config.IMAGE_NAME}:{self.config.TAG}") + print(f"Successfully built {self.config.IMAGE_NAME}:{self.config.TAG}") + + def push_docker_image_to_ecr(self) -> None: + # Get the ECR login token + response = self.ecr_client.get_authorization_token() + ecr_token = response["authorizationData"][0]["authorizationToken"] + # Decode the authorization token + username, password = base64.b64decode(ecr_token).decode("utf-8").split(":") + # Log into Docker using --password-stdin + login_command = f"docker login --username {username} --password-stdin {self.config.ECR_URL}" + print(f"Logging into ECR {self.config.ECR_URL}") + process = subprocess.Popen(login_command.split(), stdin=subprocess.PIPE) + process.communicate(input=password.encode()) + if process.returncode != 0: + print("Error logging into Docker") + exit(1) + # Tag the image + subprocess.run(["docker", "tag", f"{self.config.IMAGE_NAME}:{self.config.TAG}", self.full_image_name], check=True) + # Push the image + subprocess.run(["docker", "push", self.full_image_name], check=True) + print(f"Image pushed to ECR: {self.full_image_name}") + + def update_lambda(self) -> None | str: + """Update a Lambda function using the ECR image.""" + + print(f"Updating Lambda function: {self.config.FUNCTION_NAME}") + response = self.lambda_client.update_function_code( + FunctionName=self.config.FUNCTION_NAME, ImageUri=self.full_image_name, Publish=True + ) + print("Updated Lambda function:") + print(response) + version = str(response["Version"]) + print(f"New version: {version}") + return version + + def wait_for_lambda_status(self, version: str) -> None: + """Wait until the Lambda function's version status is no longer 'Pending', or until timeout.""" + timeout = self.config.DEPLOYMENT_TIMEOUT_S + status = "Pending" # Start with 'Pending' as the initial assumed status + start_time = time.time() + + while status == "Pending": + if time.time() - start_time > timeout: + print(f"Timeout reached after {timeout} seconds. Exiting without status change.") + raise TimeoutError("Timeout reached while waiting for Lambda function status to change.") + function_with_version = f"{self.config.FUNCTION_NAME}:{version}" + # Get the function configuration, including the version + response = self.lambda_client.get_function(FunctionName=function_with_version) + # Extract the state of the function version + status = response["Configuration"]["State"] + print(f"Current status of '{function_with_version}': {status}") + + if status != "Pending": + print(f"Status of '{function_with_version}' is now '{status}'. Exiting loop.") + break + else: + sleep_time = 5 + print(f"Status still 'Pending'. Checking again in {sleep_time} seconds...") + time.sleep(sleep_time) + + +def main() -> None: + parser = argparse.ArgumentParser(description="Manage Lambda deployment.") + parser.add_argument("--env", type=str, help=f"Deployment environment {ENVIRONMENTS}") + args = parser.parse_args() + # Determine if the script was called with command-line arguments + if args.env: + if args.env.lower() not in ENVIRONMENTS: + print(f"[red]Invalid environment specified: {args.env}[/red]") + exit(1) + env = args.env.lower() + else: + # Interactive prompts if no command-line arguments + env = Prompt.ask("[bold magenta]Enter the deployment environment[/]", choices=ENVIRONMENTS, default="crt") + + # Validate environment + config: BaseDeploymentConfig + if env == "crt": + config = CrtDeploymentConfig() + elif env == "dev": + config = DevDeploymentConfig() + elif env == "sandbox": + config = SandboxDeploymentConfig() + else: + print(f"[red]Invalid environment specified: {env}[/red]") + exit(1) + aws = Deploy(config) + aws.build_docker_image() + aws.push_docker_image_to_ecr() + version = aws.update_lambda() + if version: + aws.wait_for_lambda_status(version) + + +if __name__ == "__main__": + main() diff --git a/opentrons-ai-server/mypy.ini b/opentrons-ai-server/mypy.ini new file mode 100644 index 00000000000..cc6b8e64dc4 --- /dev/null +++ b/opentrons-ai-server/mypy.ini @@ -0,0 +1,22 @@ +[mypy] +strict = true +follow_imports = silent +warn_redundant_casts = true +warn_unused_ignores = true +disallow_any_generics = true +check_untyped_defs = true +no_implicit_reexport = true +exclude = "__init__.py" +python_version = 3.12 +plugins = pydantic.mypy +[mypy-llama_index.embeddings.openai] +ignore_missing_imports = True +[mypy-llama_index.program.openai] +ignore_missing_imports = True +[mypy-llama_index.llms.openai] +ignore_missing_imports = True + + + +[pydantic-mypy] +warn_untyped_fields = True diff --git a/opentrons-ai-server/pyproject.toml b/opentrons-ai-server/pyproject.toml new file mode 100644 index 00000000000..6b6d9140275 --- /dev/null +++ b/opentrons-ai-server/pyproject.toml @@ -0,0 +1,38 @@ +[tool.black] +line-length = 140 +target-version = ['py312'] + +[tool.ruff] +# Like Black +line-length = 140 +# Like Black +indent-width = 4 +target-version = "py312" +exclude = ["files"] +src = ["*.py", "api", "tests"] + +[tool.ruff.lint] +select = [ + "E", # pycodestyle errors + "W", # pycodestyle warnings + "F", # pyflakes + "I", # isort + "C", # flake8-comprehensions + "B", # flake8-bugbear +] +fixable = ["ALL"] + +[tool.ruff.format] +# Like Black, use double quotes for strings. +quote-style = "double" + +# Like Black, indent with spaces, rather than tabs. +indent-style = "space" + +# Like Black, respect magic trailing commas. +skip-magic-trailing-comma = false + +# Like Black, automatically detect the appropriate line ending. +line-ending = "auto" + +[tool.ruff.lint.per-file-ignores] diff --git a/opentrons-ai-server/pytest.ini b/opentrons-ai-server/pytest.ini new file mode 100644 index 00000000000..bca574b8aff --- /dev/null +++ b/opentrons-ai-server/pytest.ini @@ -0,0 +1,5 @@ +[pytest] +addopts = -s -vv --log-cli-level info +markers = + unit: marks tests as unit tests (select with '-m unit') + live: marks tests as live tests (select with '-m live') diff --git a/opentrons-ai-server/tests/__init__.py b/opentrons-ai-server/tests/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/opentrons-ai-server/tests/conftest.py b/opentrons-ai-server/tests/conftest.py new file mode 100644 index 00000000000..e9f2ac342fc --- /dev/null +++ b/opentrons-ai-server/tests/conftest.py @@ -0,0 +1,28 @@ +from typing import Generator + +import pytest + +from tests.helpers.client import Client +from tests.helpers.settings import get_settings + + +def pytest_addoption(parser: pytest.Parser) -> None: + """Add an option to pytest command-line parser to specify the environment.""" + parser.addoption( + "--env", action="store", default="sandbox", help="Set the environment for the tests (dev, sandbox, crt, staging, prod)" + ) + + +@pytest.fixture(scope="session") +def env(request: pytest.FixtureRequest) -> str: + """A fixture to access the environment argument value.""" + return str(request.config.getoption("--env")) + + +@pytest.fixture(scope="session") +def client(env: str) -> Generator[Client, None, None]: + """Fixture to initialize and tear down the client for API interaction.""" + settings = get_settings(env=env) + client = Client(settings) + yield client + client.close() diff --git a/opentrons-ai-server/tests/helpers/__init__.py b/opentrons-ai-server/tests/helpers/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/opentrons-ai-server/tests/helpers/client.py b/opentrons-ai-server/tests/helpers/client.py new file mode 100644 index 00000000000..3b112fb4b40 --- /dev/null +++ b/opentrons-ai-server/tests/helpers/client.py @@ -0,0 +1,98 @@ +from api.models.chat_request import ChatRequest +from httpx import Client as HttpxClient +from httpx import Response, Timeout +from rich import inspect +from rich.console import Console +from rich.panel import Panel +from rich.prompt import Prompt + +from tests.helpers.settings import Settings, get_settings +from tests.helpers.token import Token + + +class Client: + def __init__(self, settings: Settings): + self.settings = settings + self.token = Token(self.settings) + self.auth_headers = self.get_auth_headers() + self.invalid_auth_headers = self.get_auth_headers("bad_token") + self.type_headers = {"Content-Type": "application/json"} + self.standard_headers = { + **self.type_headers, + **self.auth_headers, + } + self.timeout = Timeout(connect=5.0, read=120.0, write=120.0, pool=5.0) + self.httpx = HttpxClient(base_url=self.settings.BASE_URL, timeout=self.timeout) + + def close(self) -> None: + """Closes the HTTPX client instance.""" + self.httpx.close() + + def get_auth_headers(self, token_override: str | None = None) -> dict[str, str]: + if token_override: + return {"Authorization": f"Bearer {token_override}"} + return {"Authorization": f"Bearer {self.token.value}"} + + def get_health(self) -> Response: + """Call the /health endpoint and return the response.""" + return self.httpx.get("/health", headers=self.type_headers) + + def get_chat_completion(self, message: str, fake: bool = True, bad_auth: bool = False) -> Response: + """Call the /chat/completion endpoint and return the response.""" + request = ChatRequest(message=message, fake=fake) + headers = self.standard_headers if not bad_auth else self.invalid_auth_headers + return self.httpx.post("/chat/completion", headers=headers, json=request.model_dump()) + + def get_bad_endpoint(self, bad_auth: bool = False) -> Response: + """Call nonexistent endpoint and return the response.""" + headers = self.standard_headers if not bad_auth else self.invalid_auth_headers + return self.httpx.get( + "/chat/idontexist", + headers=headers, + ) + + def get_options(self) -> Response: + """Call the OPTIONS endpoint and return the response.""" + return self.httpx.options("/", headers=self.type_headers) + + +def print_response(response: Response) -> None: + """Prints the HTTP response using rich.""" + console = Console() + console.print(Panel("Response", expand=False)) + inspect(response) + + +def main() -> None: + console = Console() + env = Prompt.ask("Select environment", choices=["dev", "sandbox", "crt"], default="sandbox") + settings = get_settings(env=env) + client = Client(settings) + try: + console.print(Panel("Getting health endpoint", expand=False)) + response = client.get_health() + print_response(response) + + console.print(Panel("Getting chat completion with fake=True and good auth (won't call OpenAI)", expand=False)) + response = client.get_chat_completion("How do I load a pipette?") + print_response(response) + + console.print(Panel("Getting chat completion with fake=True and bad auth to show 401 error (won't call OpenAI)", expand=False)) + response = client.get_chat_completion("How do I load a pipette?", bad_auth=True) + print_response(response) + + console.print(Panel("Getting OPTIONS", expand=False)) + response = client.get_options() + print_response(response) + + real = Prompt.ask("Actually call OpenAI API?", choices=["y", "n"], default="n") + if real == "y": + message = Prompt.ask("Enter a message") + response = client.get_chat_completion(message, fake=False) + print_response(response) + finally: + client.close() + + +if __name__ == "__main__": + main() diff --git a/opentrons-ai-server/tests/helpers/settings.py b/opentrons-ai-server/tests/helpers/settings.py new file mode 100644 index 00000000000..493606b2cba --- /dev/null +++ b/opentrons-ai-server/tests/helpers/settings.py @@ -0,0 +1,113 @@ +import os +from pathlib import Path + +from dotenv import load_dotenv + + +class Settings: + # One env file for all environments + ENV_PATH: Path = Path(Path(__file__).parent, "test.env") + ENV_VARIABLE_MAP: dict[str, str] = {} + TOKEN_URL: str + BASE_URL: str + CLIENT_ID: str + SECRET: str + AUDIENCE: str + GRANT_TYPE: str + CACHED_TOKEN_PATH: str + # Dynamic properties hard coded or computed + excluded: list[str] = ["CACHED_TOKEN_PATH"] + + def _set_properties(self) -> None: + for key, env_var in self.ENV_VARIABLE_MAP.items(): + if key in self.excluded: + setattr(self, key, env_var) + continue + value = self._get_required_env(env_var) + setattr(self, key, value) + + def _get_required_env(self, var_name: str) -> str: + """Retrieve a required environment variable or raise an error if not found.""" + try: + return os.environ[var_name] + except KeyError as err: + raise EnvironmentError(f"Required environment variable '{var_name}' is not set.") from err + + +class DevSettings(Settings): + ENV_VARIABLE_MAP = { + "TOKEN_URL": "DEV_TOKEN_URL", + "BASE_URL": "DEV_BASE_URL", + "CLIENT_ID": "DEV_CLIENT_ID", + "SECRET": "DEV_SECRET", + "AUDIENCE": "DEV_AUDIENCE", + "GRANT_TYPE": "DEV_GRANT_TYPE", + "CACHED_TOKEN_PATH": str(Path(Path(__file__).parent, "cached_token.txt")), + } + + def __init__(self) -> None: + super().__init__() + load_dotenv(self.ENV_PATH) + self._set_properties() + + +class SandboxSettings(Settings): + ENV_VARIABLE_MAP = { + "TOKEN_URL": "SANDBOX_TOKEN_URL", + "BASE_URL": "SANDBOX_BASE_URL", + "CLIENT_ID": "SANDBOX_CLIENT_ID", + "SECRET": "SANDBOX_SECRET", + "AUDIENCE": "SANDBOX_AUDIENCE", + "GRANT_TYPE": "SANDBOX_GRANT_TYPE", + "CACHED_TOKEN_PATH": str(Path(Path(__file__).parent, "cached_token.txt")), + } + + def __init__(self) -> None: + super().__init__() + load_dotenv(self.ENV_PATH) + self._set_properties() + + +class CrtSettings(Settings): + ENV_VARIABLE_MAP = { + "TOKEN_URL": "CRT_TOKEN_URL", + "BASE_URL": "CRT_BASE_URL", + "CLIENT_ID": "CRT_CLIENT_ID", + "SECRET": "CRT_SECRET", + "AUDIENCE": "CRT_AUDIENCE", + "GRANT_TYPE": "CRT_GRANT_TYPE", + "CACHED_TOKEN_PATH": str(Path(Path(__file__).parent, "cached_token.txt")), + } + + def __init__(self) -> None: + super().__init__() + load_dotenv(self.ENV_PATH) + self._set_properties() + + +# TODO:y3rsh:2024-05-11: Add staging and prod + + +def get_settings(env: str) -> Settings: + if env.lower() == "dev": + return DevSettings() + elif env.lower() == "sandbox": + return SandboxSettings() + elif env.lower() == "crt": + return CrtSettings() + elif env.lower() == "staging": + raise NotImplementedError("Staging environment not implemented.") + elif env.lower() == "prod": + raise NotImplementedError("Production environment not implemented.") + else: + raise ValueError(f"Unsupported environment: {env}") + + +# Print the environment variable skeleton +# This is what you print when building the secret +if __name__ == "__main__": + for env in [SandboxSettings, DevSettings, CrtSettings]: + for _var, name in env.ENV_VARIABLE_MAP.items(): + if _var in env.excluded: + continue + print(f"{name}=") diff --git a/opentrons-ai-server/tests/helpers/token.py b/opentrons-ai-server/tests/helpers/token.py new file mode 100644 index 00000000000..e47efa7313e --- /dev/null +++ b/opentrons-ai-server/tests/helpers/token.py @@ -0,0 +1,45 @@ +import os + +import httpx + +from tests.helpers.settings import Settings +from tests.helpers.token_verifier import TokenVerifier + + +class Token: + def __init__(self, settings: Settings, refresh: bool = False) -> None: + self.refresh: bool = refresh + self.settings: Settings = settings + self.value: str | None = None + self.token_verifier = TokenVerifier(self.settings) + self._set_token() + + def _read_secret(self) -> str: + """Read the client secret from a file.""" + with open(self.settings.CACHED_TOKEN_PATH, "r") as file: + return file.read().strip() + + def _set_token(self) -> None: + """Retrieve or refresh the authentication token.""" + if self._is_token_cached(): + self.value = self._read_secret() + if not self.value or self.refresh or not self.token_verifier.is_valid_token(self.value): + headers = {"Content-Type": "application/json"} + data = { + "client_id": self.settings.CLIENT_ID, + "client_secret": self.settings.SECRET, + "audience": self.settings.AUDIENCE, + "grant_type": self.settings.GRANT_TYPE, + } + with httpx.Client() as client: + response = client.post(self.settings.TOKEN_URL, headers=headers, json=data) + response.raise_for_status() # Raises exception for 4XX/5XX responses + token = response.json()["access_token"] + # cache the token + with open(self.settings.CACHED_TOKEN_PATH, "w") as file: + file.write(token) + self.value = token + + def _is_token_cached(self) -> bool: + """Check if the token is cached.""" + return os.path.exists(self.settings.CACHED_TOKEN_PATH) diff --git a/opentrons-ai-server/tests/helpers/token_verifier.py b/opentrons-ai-server/tests/helpers/token_verifier.py new file mode 100644 index 00000000000..c1b4e4aac54 --- /dev/null +++ b/opentrons-ai-server/tests/helpers/token_verifier.py @@ -0,0 +1,75 @@ +from base64 import urlsafe_b64decode +from typing import Any, Optional +from urllib.parse import urlparse + +import httpx +import jwt +from cryptography.hazmat.backends import default_backend +from cryptography.hazmat.primitives import serialization +from cryptography.hazmat.primitives.asymmetric.rsa import RSAPublicNumbers +from jwt.exceptions import DecodeError, ExpiredSignatureError, InvalidTokenError +from rich import inspect, print + +from tests.helpers.settings import Settings + + +class TokenVerifier: + def __init__(self, settings: Settings) -> None: + self.settings: Settings = settings + + def _get_issuer(self) -> str: + parsed_url = urlparse(self.settings.TOKEN_URL) + return f"{parsed_url.scheme}://{parsed_url.netloc}/" + + def _ensure_bytes(self, value: str) -> str: + """Ensures the decoded Base64 values are correctly padded.""" + return value + "=" * (-len(value) % 4) + + def _fetch_jwks(self, jwks_url: str) -> Any: + """Fetches the JWKS using HTTPX.""" + with httpx.Client() as client: + response = client.get(jwks_url) + response.raise_for_status() + return response.json() + + def _decode_key(self, jwk: Any) -> str: + """Converts a JWK to a PEM formatted public key.""" + e = urlsafe_b64decode(self._ensure_bytes(jwk["e"])) + n = urlsafe_b64decode(self._ensure_bytes(jwk["n"])) + + public_numbers = RSAPublicNumbers(int.from_bytes(e, "big"), int.from_bytes(n, "big")) + public_key = public_numbers.public_key(default_backend()) + pem = public_key.public_bytes(encoding=serialization.Encoding.PEM, format=serialization.PublicFormat.SubjectPublicKeyInfo) + return pem.decode("utf-8") + + def _get_kid_from_jwt(self, token: str) -> Optional[str]: + """Extract the 'kid' from JWT header without verifying the token.""" + unverified_header = jwt.get_unverified_header(token) + return unverified_header.get("kid") + + def is_valid_token(self, token: str) -> bool: + """Check if the token is valid using the JWKS endpoint.""" + if not token: + return False + jwks_url = f"{self._get_issuer()}.well-known/jwks.json" + kid = self._get_kid_from_jwt(token) + jwks = self._fetch_jwks(jwks_url) + key = next((key for key in jwks["keys"] if key["kid"] == kid), None) + if key is None: + return False + + try: + decoded_token = jwt.decode( + token, + key=self._decode_key(key), + algorithms=["RS256"], + issuer=self._get_issuer(), + audience=self.settings.AUDIENCE, + options={"verify_signature": True}, + ) + print("Decoded token:") + inspect(decoded_token) + return True + except (DecodeError, ExpiredSignatureError, InvalidTokenError) as e: + print(f"JWT validation error: {str(e)}") + return False diff --git a/opentrons-ai-server/tests/test_chat_models.py b/opentrons-ai-server/tests/test_chat_models.py new file mode 100644 index 00000000000..4c5141cf13e --- /dev/null +++ b/opentrons-ai-server/tests/test_chat_models.py @@ -0,0 +1,32 @@ +import pytest +from api.models.chat_request import ChatRequest +from api.models.chat_response import ChatResponse +from pydantic import ValidationError + + +@pytest.mark.unit +def test_chat_request_model() -> None: + # Test valid data + request_data = {"message": "Hello", "fake": False} + request = ChatRequest(**request_data) + assert request.message == "Hello" + assert request.fake is False + + # Test invalid data + with pytest.raises(ValidationError): + invalid_request_data = {"message": 123, "fake": "true"} + ChatRequest(**invalid_request_data) + + +@pytest.mark.unit +def test_chat_response_model() -> None: + # Test valid data + response_data = {"reply": "Hi", "fake": True} + response = ChatResponse(**response_data) + assert response.reply == "Hi" + assert response.fake is True + + # Test invalid data + with pytest.raises(ValidationError): + invalid_response_data = {"reply": 123, "fake": "false"} + ChatResponse(**invalid_response_data) diff --git a/opentrons-ai-server/tests/test_live.py b/opentrons-ai-server/tests/test_live.py new file mode 100644 index 00000000000..51a0859cec3 --- /dev/null +++ b/opentrons-ai-server/tests/test_live.py @@ -0,0 +1,55 @@ +import pytest + +from tests.helpers.client import Client + + +@pytest.mark.live +def test_get_health(client: Client) -> None: + """Test to verify the health endpoint of the API.""" + response = client.get_health() + assert response.status_code == 200, "Health endpoint should return HTTP 200" + + +@pytest.mark.live +def test_get_chat_completion_good_auth(client: Client) -> None: + """Test the chat completion endpoint with good authentication.""" + response = client.get_chat_completion("How do I load tipracks for my 8 channel pipette on an OT2?", fake=True) + assert response.status_code == 200, "Chat completion with good auth should return HTTP 200" + + +@pytest.mark.live +def test_get_chat_completion_bad_auth(client: Client) -> None: + """Test the chat completion endpoint with bad authentication.""" + # This call never reaches the lambda function, the API Gateway rejects it + response = client.get_chat_completion("How do I load a pipette?", bad_auth=True) + assert response.status_code == 401, "Chat completion with bad auth should return HTTP 401" + + +@pytest.mark.live +def test_get_bad_endpoint_with_good_auth(client: Client) -> None: + """Test a nonexistent endpoint with good authentication.""" + response = client.get_bad_endpoint() + assert response.status_code == 404, "nonexistent endpoint with good auth should return HTTP 404" + + +@pytest.mark.live +def test_get_bad_endpoint_with_bad_auth(client: Client) -> None: + """Test a nonexistent endpoint with bad authentication.""" + response = client.get_bad_endpoint(bad_auth=True) + assert response.status_code == 401, "nonexistent endpoint with bad auth should return HTTP 401" + + +@pytest.mark.live +def test_get_options(client: Client) -> None: + """Test the OPTIONS endpoint.""" + response = client.get_options() + assert response.status_code == 200, "OPTIONS endpoint should return HTTP 200" + expected_headers = { + "Access-Control-Allow-Origin": "*", + "Access-Control-Allow-Methods": "GET,POST,OPTIONS", + "Access-Control-Allow-Headers": "content-type,authorization,origin,accept", + "Access-Control-Expose-Headers": "content-type", + "Access-Control-Max-Age": "3600", + } + for header, expected_value in expected_headers.items(): + assert response.json().get(header) == expected_value, f"{header} should be {expected_value}" diff --git a/package.json b/package.json index a38a11bdcd3..0dbe9839d3a 100755 --- a/package.json +++ b/package.json @@ -10,12 +10,14 @@ "discovery-client", "labware-designer", "labware-library", + "opentrons-ai-client", "protocol-designer", "shared-data", "step-generation", "api-client", "react-api-client", - "usb-bridge/node-client" + "usb-bridge/node-client", + "opentrons-ai-client" ] }, "config": { @@ -45,7 +47,7 @@ "@storybook/addon-links": "^7.6.16", "@storybook/react": "^7.6.16", "@storybook/react-vite": "^7.6.16", - "@testing-library/jest-dom": "6.4.0", + "@testing-library/jest-dom": "6.4.2", "@testing-library/react": "14.2.1", "@testing-library/user-event": "13.5.0", "@types/express": "^4.17.11", @@ -73,7 +75,7 @@ "conventional-changelog": "^3.1.25", "core-js": "^3.6.4", "css-loader": "^3.2.0", - "cypress": "^6.6.0", + "cypress": "13.7.1", "cypress-file-upload": "3.5.3", "cz-conventional-changelog": "2.1.0", "decompress": "4.2.1", @@ -84,6 +86,7 @@ "eslint-config-prettier": "^8.1.0", "eslint-config-standard": "^16.0.2", "eslint-config-standard-with-typescript": "^43.0.1", + "eslint-formatter-summary-chart": "0.3.0", "eslint-plugin-cypress": "^2.11.2", "eslint-plugin-import": "^2.29.1", "eslint-plugin-json": "^3.1.0", diff --git a/protocol-designer/Makefile b/protocol-designer/Makefile index a81f9be53cd..14792b22b7b 100644 --- a/protocol-designer/Makefile +++ b/protocol-designer/Makefile @@ -62,7 +62,7 @@ serve: all test-e2e: concurrently --no-color --kill-others --success first --names "protocol-designer-server,protocol-designer-tests" \ "$(MAKE) dev CYPRESS=1" \ - "wait-on http://localhost:5173/ && cypress run --browser chrome --headless --record false" + "wait-on http://localhost:5178/ && cypress run --browser chrome --headless --record false" .PHONY: test test: diff --git a/protocol-designer/cypress.config.js b/protocol-designer/cypress.config.js new file mode 100644 index 00000000000..98d139cdcbc --- /dev/null +++ b/protocol-designer/cypress.config.js @@ -0,0 +1,15 @@ +const { defineConfig } = require('cypress') + +module.exports = defineConfig({ + video: false, + viewportWidth: 1440, + viewportHeight: 900, + e2e: { + // We've imported your old cypress plugins here. + // You may want to clean this up later by importing these. + setupNodeEvents(on, config) { + return require('./cypress/plugins/index.js')(on, config) + }, + baseUrl: 'http://localhost:5178', + }, +}) diff --git a/protocol-designer/cypress.json b/protocol-designer/cypress.json deleted file mode 100644 index fa95795bfd6..00000000000 --- a/protocol-designer/cypress.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "baseUrl": "http://localhost:5173", - "video": false, - "viewportWidth": 1440, - "viewportHeight": 900, - "pluginsFile": false -} diff --git a/protocol-designer/cypress/integration/batchEdit.spec.js b/protocol-designer/cypress/e2e/batchEdit.cy.js similarity index 100% rename from protocol-designer/cypress/integration/batchEdit.spec.js rename to protocol-designer/cypress/e2e/batchEdit.cy.js diff --git a/protocol-designer/cypress/integration/home.spec.js b/protocol-designer/cypress/e2e/home.cy.js similarity index 100% rename from protocol-designer/cypress/integration/home.spec.js rename to protocol-designer/cypress/e2e/home.cy.js diff --git a/protocol-designer/cypress/integration/migrations.spec.js b/protocol-designer/cypress/e2e/migrations.cy.js similarity index 91% rename from protocol-designer/cypress/integration/migrations.spec.js rename to protocol-designer/cypress/e2e/migrations.cy.js index 4339f40be5f..e31402f9996 100644 --- a/protocol-designer/cypress/integration/migrations.spec.js +++ b/protocol-designer/cypress/e2e/migrations.cy.js @@ -26,7 +26,7 @@ describe('Protocol fixtures migrate and match snapshots', () => { expectedExportFixture: '../../fixtures/protocol/8/doItAllV3MigratedToV8.json', unusedPipettes: false, - migrationModal: 'v8', + migrationModal: 'v8.1', }, { title: 'doItAllV4 (schema 4, PD version 4.0.0) -> PD 8.1.x, schema 8', @@ -34,7 +34,7 @@ describe('Protocol fixtures migrate and match snapshots', () => { expectedExportFixture: '../../fixtures/protocol/8/doItAllV4MigratedToV8.json', unusedPipettes: false, - migrationModal: 'v8', + migrationModal: 'v8.1', }, { title: @@ -43,7 +43,7 @@ describe('Protocol fixtures migrate and match snapshots', () => { expectedExportFixture: '../../fixtures/protocol/8/doItAllV7MigratedToV8.json', unusedPipettes: false, - migrationModal: 'v8', + migrationModal: 'v8.1', }, { title: @@ -63,6 +63,16 @@ describe('Protocol fixtures migrate and match snapshots', () => { migrationModal: null, unusedPipettes: false, }, + { + title: + 'new advanced settings with multi temp => reimported, should not migrate and stay at 8.1.x, schema 8', + importFixture: + '../../fixtures/protocol/8/newAdvancedSettingsAndMultiTemp.json', + expectedExportFixture: + '../../fixtures/protocol/8/newAdvancedSettingsAndMultiTemp.json', + migrationModal: null, + unusedPipettes: false, + }, ] testCases.forEach( @@ -93,9 +103,11 @@ describe('Protocol fixtures migrate and match snapshots', () => { }) if (migrationModal) { - if (migrationModal === 'v8') { + if (migrationModal === 'v8.1') { cy.get('div') - .contains('Protocol Designer no longer supports aspirate or mix') + .contains( + 'The default dispense height is now 1 mm from the bottom of the well' + ) .should('exist') cy.get('button').contains('ok', { matchCase: false }).click() } else if (migrationModal === 'newLabwareDefs') { diff --git a/protocol-designer/cypress/integration/mixSettings.spec.js b/protocol-designer/cypress/e2e/mixSettings.cy.js similarity index 94% rename from protocol-designer/cypress/integration/mixSettings.spec.js rename to protocol-designer/cypress/e2e/mixSettings.cy.js index 3ffff0a4472..c4cee578f4b 100644 --- a/protocol-designer/cypress/integration/mixSettings.spec.js +++ b/protocol-designer/cypress/e2e/mixSettings.cy.js @@ -45,7 +45,8 @@ describe('Advanced Settings for Mix Form', () => { importProtocol() openDesignTab() }) - it('Verify functionality of mix settings with different labware', () => { + it('should verify the batch edit form works as expected', () => { + // Verify functionality of mix settings with different labware enterBatchEdit() // Different labware disbales aspirate and dispense Flowrate , tipPosition, delay and touchTip @@ -74,8 +75,8 @@ describe('Advanced Settings for Mix Form', () => { // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('Verify functionality of mix settings with same labware', () => { + + // Verify functionality of mix settings with same labware enterBatchEdit() // Same labware enables aspirate and dispense Flowrate ,tipPosition ,delay and touchTip @@ -102,8 +103,8 @@ describe('Advanced Settings for Mix Form', () => { // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify invalid input in delay field', () => { + + // Verify invalid input in delay field // click on step 2 in batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) @@ -117,9 +118,8 @@ describe('Advanced Settings for Mix Form', () => { // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify indeterminate state of flowrate', () => { + // Verify indeterminate state of flowrate // click on step 2 in batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) cy.get('input[name="aspirate_flowRate"]').click({ force: true }) @@ -138,9 +138,8 @@ describe('Advanced Settings for Mix Form', () => { // indeterminate state in flowrate is empty cy.get('input[name="aspirate_flowRate"]').should('have.value', '') - }) - it('verify functionality of flowrate in batch edit mix form', () => { + // Verify functionality of flowrate in batch edit mix form // Batch editing the Flowrate value cy.get('input[name="aspirate_flowRate"]').click({ force: true }) cy.contains( @@ -168,9 +167,8 @@ describe('Advanced Settings for Mix Form', () => { // Verify that flowrate value cy.get('input[name="aspirate_flowRate"]').should('have.value', 100) - }) - it('verify delay settings indeterminate value', () => { + // Verify delay settings indeterminate value // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Select delay settings @@ -190,9 +188,8 @@ describe('Advanced Settings for Mix Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify delay settings batch editing in mix form', () => { + // Verify delay settings batch editing in mix form // Click on step 1, to enter batch edit mode cy.get('[data-test="StepItem_1"]').click(batchEditClickOptions) // Click on step 2 to batch edit mix settings @@ -219,9 +216,8 @@ describe('Advanced Settings for Mix Form', () => { // Verify that volume is set to 2 cy.get('input[name="aspirate_delay_seconds"]').should('have.value', 2) - }) - it('verify touchTip settings indeterminate value', () => { + // Verify touchTip settings indeterminate value cy.get('[data-test="StepItem_2"]').click() // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) @@ -241,9 +237,8 @@ describe('Advanced Settings for Mix Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify touchTip settings batch editing in mix form', () => { + // Verify touchTip settings batch editing in mix form cy.get('[data-test="StepItem_2"]').click() // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) @@ -275,9 +270,8 @@ describe('Advanced Settings for Mix Form', () => { 'have.value', 16.4 ) - }) - it('verify blowout settings indeterminate value', () => { + // Verify blowout settings indeterminate value // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Select blowout settings @@ -295,9 +289,8 @@ describe('Advanced Settings for Mix Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify blowout settings batch editing in mix form', () => { + // Verify blowout settings batch editing in mix form // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Click on step 3 to batch edit mix settings @@ -329,9 +322,8 @@ describe('Advanced Settings for Mix Form', () => { const expectedSubstring = 'trashBin' expect(value).to.include(expectedSubstring) }) - }) - it('verify well-order indeterminate state', () => { + // verify well-order indeterminate state // Click on step 2, to enter batch edit and click on well order to change the order cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // click on well-order and change the order diff --git a/protocol-designer/cypress/integration/settings.spec.js b/protocol-designer/cypress/e2e/settings.cy.js similarity index 85% rename from protocol-designer/cypress/integration/settings.spec.js rename to protocol-designer/cypress/e2e/settings.cy.js index 3f248d79ab0..f2bb737be50 100644 --- a/protocol-designer/cypress/integration/settings.spec.js +++ b/protocol-designer/cypress/e2e/settings.cy.js @@ -5,32 +5,27 @@ describe('The Settings Page', () => { cy.visit('/') }) - it('displays the announcement modal and clicks "GOT IT!" to close it', () => { + it('Verify the settings page', () => { + // displays the announcement modal and clicks "GOT IT!" to close it cy.closeAnnouncementModal() - }) - it('contains a working settings button', () => { + // contains a working settings button cy.openSettingsPage() cy.contains('App Settings') - }) - it('contains an information section', () => { + // contains an information section cy.get('h3').contains('Information').should('exist') - }) - it('contains version information', () => { + // contains version information cy.contains('Protocol Designer Version').should('exist') - }) - it('contains a hints section', () => { + // contains a hints section cy.get('h3').contains('Hints').should('exist') - }) - it('contains a privacy section', () => { + // contains a privacy section cy.get('h3').contains('Privacy').should('exist') - }) - it('contains a share settings button in the pivacy section', () => { + // contains a share settings button in the pivacy section // It's toggled off by default cy.contains('Share sessions') .next() @@ -50,13 +45,11 @@ describe('The Settings Page', () => { .next() .should('have.attr', 'class') .and('match', /toggled_off/) - }) - it('contains an experimental settings section', () => { + // contains an experimental settings section cy.get('h3').contains('Experimental Settings').should('exist') - }) - it("contains a 'disable module placement restrictions' experimental feature", () => { + // contains a 'disable module placement restrictions' experimental feature // It's toggled off by default cy.contains(exptlSettingText) .next() @@ -93,9 +86,8 @@ describe('The Settings Page', () => { .next() .should('have.attr', 'class') .and('match', /toggled_off/) - }) - it("contains a 'disable module placement restrictions' toggle in the experimental settings card", () => { + // contains a 'disable module placement restrictions' toggle in the experimental settings card // It's toggled off by default cy.contains('Disable module') .next() @@ -131,9 +123,8 @@ describe('The Settings Page', () => { .next() .should('have.attr', 'class') .and('match', /toggled_off/) - }) - it('remembers when we enable things', () => { + // PD remembers when we enable things // Enable a button // We're not using the privacy button because that // interacts with analytics libraries, which might @@ -149,9 +140,8 @@ describe('The Settings Page', () => { .next() .should('have.attr', 'class') .and('match', /toggled_on/) - }) - it('remembers when we disable things', () => { + // PD remembers when we disable things // Disable a button // We're not using the privacy button because that // interacts with analytics libraries, which might diff --git a/protocol-designer/cypress/integration/sidebar.spec.js b/protocol-designer/cypress/e2e/sidebar.cy.js similarity index 100% rename from protocol-designer/cypress/integration/sidebar.spec.js rename to protocol-designer/cypress/e2e/sidebar.cy.js diff --git a/protocol-designer/cypress/integration/transferSettings.spec.js b/protocol-designer/cypress/e2e/transferSettings.cy.js similarity index 94% rename from protocol-designer/cypress/integration/transferSettings.spec.js rename to protocol-designer/cypress/e2e/transferSettings.cy.js index 48a9e077a42..286bc2cb377 100644 --- a/protocol-designer/cypress/integration/transferSettings.spec.js +++ b/protocol-designer/cypress/e2e/transferSettings.cy.js @@ -50,7 +50,9 @@ describe('Advanced Settings for Transfer Form', () => { openDesignTab() }) - it('Verify functionality of advanced settings with different pipette and labware', () => { + it('Verify functionality of the transfer form', () => { + // Verify functionality of advanced settings with different pipette and labware + enterBatchEdit() // Different Pipette disables aspirate and dispense Flowrate and Mix settings @@ -88,9 +90,9 @@ describe('Advanced Settings for Transfer Form', () => { // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('Verify functionality of advanced settings with same pipette and labware', () => { + // Verify functionality of advanced settings with same pipette and labware + // click on step 2 in batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // deselecting on step 6 in batch edit mode @@ -133,9 +135,8 @@ describe('Advanced Settings for Transfer Form', () => { // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify flowrate indeterminate value', () => { + // Verify flowrate indeterminate value // click on step 2 in batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) cy.get('input[name="aspirate_flowRate"]').click({ force: true }) @@ -154,9 +155,9 @@ describe('Advanced Settings for Transfer Form', () => { // indeterminate state in flowrate is empty cy.get('input[name="aspirate_flowRate"]').should('have.value', '') - }) - it('verify functionality of flowrate in batch edit transfer', () => { + // Verify functionality of flowrate in batch edit transfer + // Batch editing the Flowrate value cy.get('input[name="aspirate_flowRate"]').click({ force: true }) cy.contains( @@ -184,14 +185,13 @@ describe('Advanced Settings for Transfer Form', () => { // Verify that flowrate value cy.get('input[name="aspirate_flowRate"]').should('have.value', 100) - }) - it('verify prewet tip indeterminate value', () => { + // Verify prewet tip indeterminate value // Click on step 2, to enter batch edit and enable prewet tip cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // enable pre-wet tip cy.togglePreWetTip() - cy.get('input[name="preWetTip"]').should('be.visible') + cy.get('input[name="preWetTip"]').should('be.enabled') // Click save button to save the changes cy.get('button').contains('save').click() // Click on step 1, as it does not have prewet-tip selected - indeteminate state @@ -204,9 +204,9 @@ describe('Advanced Settings for Transfer Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify mix settings indeterminate value', () => { + // Verify mix settings indeterminate value + // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_4"]').click(batchEditClickOptions) // Select mix settings @@ -225,9 +225,9 @@ describe('Advanced Settings for Transfer Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify mix settings batch editing in transfer form', () => { + // Verify mix settings batch editing in transfer form + // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Click on step 3 to batch edit mix settings @@ -249,9 +249,9 @@ describe('Advanced Settings for Transfer Form', () => { // Verify that volume is set to 10 and repetitions to 2 cy.get('input[name="aspirate_mix_volume"]').should('have.value', 10) cy.get('input[name="aspirate_mix_times"]').should('have.value', 2) - }) - it('verify delay settings indeterminate value', () => { + // Verify delay settings indeterminate value + // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Select delay settings @@ -271,9 +271,9 @@ describe('Advanced Settings for Transfer Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify delay settings batch editing in transfer form', () => { + // Verify delay settings batch editing in transfer form + // Click on step 4, to enter batch edit mode cy.get('[data-test="StepItem_4"]').click(batchEditClickOptions) // Click on step 5 to batch edit mix settings @@ -300,9 +300,9 @@ describe('Advanced Settings for Transfer Form', () => { // Verify that volume is set to 2 and repitions to 2 cy.get('input[name="aspirate_delay_seconds"]').should('have.value', 2) - }) - it('verify touchTip settings indeterminate value', () => { + // Verify touchTip settings indeterminate value + cy.get('[data-test="StepItem_2"]').click() // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) @@ -322,9 +322,9 @@ describe('Advanced Settings for Transfer Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify touchTip settings batch editing in transfer form', () => { + // verify touchTip settings batch editing in transfer form + // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Click on step 3 to batch edit mix settings @@ -355,9 +355,8 @@ describe('Advanced Settings for Transfer Form', () => { 'have.value', 13.78 ) - }) - it('verify blowout settings indeterminate value', () => { + // verify blowout settings indeterminate value // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Select blowout settings @@ -375,9 +374,9 @@ describe('Advanced Settings for Transfer Form', () => { ) // Exit batch edit mode cy.get('button').contains('exit batch edit').click() - }) - it('verify blowout settings batch editing in transfer form', () => { + // Verify blowout settings batch editing in transfer form + // Click on step 2, to enter batch edit mode cy.get('[data-test="StepItem_2"]').click(batchEditClickOptions) // Click on step 3 to batch edit mix settings diff --git a/protocol-designer/cypress/support/index.js b/protocol-designer/cypress/support/e2e.js similarity index 100% rename from protocol-designer/cypress/support/index.js rename to protocol-designer/cypress/support/e2e.js diff --git a/protocol-designer/fixtures/protocol/8/doItAllV3MigratedToV8.json b/protocol-designer/fixtures/protocol/8/doItAllV3MigratedToV8.json index e448368f932..a44442ee880 100644 --- a/protocol-designer/fixtures/protocol/8/doItAllV3MigratedToV8.json +++ b/protocol-designer/fixtures/protocol/8/doItAllV3MigratedToV8.json @@ -6,7 +6,7 @@ "author": "Fixture", "description": "Test all v3 commands", "created": 1585930833548, - "lastModified": 1711742442671, + "lastModified": 1714570099662, "category": null, "subcategory": null, "tags": [] @@ -15,10 +15,10 @@ "name": "opentrons/protocol-designer", "version": "8.1.0", "data": { - "_internalAppBuildDate": "Fri, 29 Mar 2024 20:00:04 GMT", + "_internalAppBuildDate": "Wed, 01 May 2024 13:16:50 GMT", "defaultValues": { "aspirate_mmFromBottom": 1, - "dispense_mmFromBottom": 0.5, + "dispense_mmFromBottom": 1, "touchTip_mmFromTop": -1, "blowout_mmFromTop": 0 }, @@ -27,7 +27,7 @@ "opentrons/opentrons_96_tiprack_300ul/1" ] }, - "dismissedWarnings": { "form": {}, "timeline": {} }, + "dismissedWarnings": { "form": [], "timeline": [] }, "ingredients": { "0": { "name": "Water", @@ -73,7 +73,7 @@ "3961e4c0-75c7-11ea-b42f-4b64e50f43e5": { "pipette": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": "40", - "tipRack": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", + "tipRack": "opentrons/opentrons_96_tiprack_300ul/1", "changeTip": "always", "path": "multiDispense", "aspirate_wells_grouped": false, @@ -101,7 +101,6 @@ "dispense_touchTip_mmFromBottom": 40, "disposalVolume_checkbox": true, "disposalVolume_volume": "20", - "blowout_z_offset": 0, "blowout_checkbox": false, "blowout_location": "8053a205-f2dc-4b1d-8d05-bf8233949e2e:trashBin", "preWetTip": false, @@ -121,6 +120,8 @@ "dispense_y_position": 0, "aspirate_x_position": 0, "aspirate_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "3961e4c0-75c7-11ea-b42f-4b64e50f43e5", "stepType": "moveLiquid", "stepName": "transfer", @@ -158,7 +159,6 @@ "labware": "1e610d40-75c7-11ea-b42f-4b64e50f43e5:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", "mix_wellOrder_first": "t2b", "mix_wellOrder_second": "l2r", - "blowout_z_offset": 0, "blowout_checkbox": true, "blowout_location": "8053a205-f2dc-4b1d-8d05-bf8233949e2e:trashBin", "mix_mmFromBottom": 0.5, @@ -175,9 +175,11 @@ "mix_touchTip_mmFromBottom": 11.8, "dropTip_location": "8053a205-f2dc-4b1d-8d05-bf8233949e2e:trashBin", "nozzles": null, - "tipRack": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", + "tipRack": "opentrons/opentrons_96_tiprack_300ul/1", "mix_x_position": 0, "mix_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": 46.43, "id": "a4cee9a0-75dc-11ea-b42f-4b64e50f43e5", "stepType": "mix", "stepName": "mix", @@ -2526,7 +2528,7 @@ "commandSchemaId": "opentronsCommandSchemaV8", "commands": [ { - "key": "d371b7e2-71a8-4a60-90bc-7e865d9881b9", + "key": "5dcb42c0-ef1c-4a3b-a383-82fa21354cf8", "commandType": "loadPipette", "params": { "pipetteName": "p300_single_gen2", @@ -2535,7 +2537,7 @@ } }, { - "key": "424963b7-59f8-434a-bedc-9597e7b72c9f", + "key": "a777658d-cb9e-411c-9377-d7c965ededd2", "commandType": "loadLabware", "params": { "displayName": "Opentrons 96 Tip Rack 300 µL", @@ -2547,7 +2549,7 @@ } }, { - "key": "05ef86f7-dec0-4134-a15d-5e38ef81cf8e", + "key": "723094b7-6539-41ae-8657-225153d07ed2", "commandType": "loadLabware", "params": { "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", @@ -2559,7 +2561,7 @@ } }, { - "key": "ddefc5ef-b69a-4172-921b-959ba5e8d8d2", + "key": "382eb174-58a8-445b-9216-67953b1431cc", "commandType": "loadLabware", "params": { "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", @@ -2572,7 +2574,7 @@ }, { "commandType": "loadLiquid", - "key": "2a2084d5-67d8-4806-b919-5962a6258c1f", + "key": "a8535ce0-8b05-4dd7-b82e-ce108e7b1644", "params": { "liquidId": "0", "labwareId": "1e610d40-75c7-11ea-b42f-4b64e50f43e5:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", @@ -2598,12 +2600,12 @@ }, { "commandType": "waitForDuration", - "key": "c1a1eff4-7ef7-46be-aee7-ebca5924ace8", + "key": "1cf744b2-f1ec-40d3-9afb-8dde33832ac4", "params": { "seconds": 62, "message": "" } }, { "commandType": "pickUpTip", - "key": "63ca0ab5-4cb6-4531-b912-1ba22e1b1a03", + "key": "8335cc6a-f1a7-42de-9085-60a58f3c099f", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", @@ -2612,7 +2614,7 @@ }, { "commandType": "aspirate", - "key": "5ead7532-0eb2-4ad9-b704-856422fc9408", + "key": "bd82daf5-9bbd-468a-9266-3a0feb5235a7", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2627,7 +2629,7 @@ }, { "commandType": "dispense", - "key": "3838f7d1-3450-49cc-a222-c8113eecf108", + "key": "02f9b8eb-ad2a-48e6-8eaf-f1446fad8bc9", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2642,7 +2644,7 @@ }, { "commandType": "aspirate", - "key": "25697ae7-169d-447a-906c-4e7f02950fe9", + "key": "eab61544-7238-4479-a195-8999806e7294", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2657,7 +2659,7 @@ }, { "commandType": "dispense", - "key": "49a139f4-87ba-421d-9ef4-4ebe13beb987", + "key": "deacca0e-f618-4159-bcf8-ad4d5010ffbf", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2672,7 +2674,7 @@ }, { "commandType": "aspirate", - "key": "4e96faa5-c669-4b60-b15c-9d2f01c9c3fe", + "key": "296ea248-151d-4c80-9445-6678f9bbdd16", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 100, @@ -2687,7 +2689,7 @@ }, { "commandType": "touchTip", - "key": "8eff88a1-fec9-46d7-b292-f6ce378e5ad9", + "key": "93a2f17f-35e4-4585-9f32-cfbd4e80de75", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "1e610d40-75c7-11ea-b42f-4b64e50f43e5:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", @@ -2697,7 +2699,7 @@ }, { "commandType": "dispense", - "key": "c95e323c-be69-4460-8acf-d1d4b74384bd", + "key": "a64de676-0aea-4dc8-a417-d1d0a7749aba", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 40, @@ -2712,7 +2714,7 @@ }, { "commandType": "touchTip", - "key": "0da25745-5e25-4138-b67c-dfc4c89c8949", + "key": "3714818d-0ea7-4b21-807c-3fc99647fcd8", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "21ed8f60-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1", @@ -2722,7 +2724,7 @@ }, { "commandType": "dispense", - "key": "28eeb3d1-6e83-4414-8c0d-e8761ca2f75a", + "key": "8062fd11-8818-4956-958d-ca27f740d5ac", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 40, @@ -2737,7 +2739,7 @@ }, { "commandType": "touchTip", - "key": "8cd5d90d-df0b-4c3b-8cb3-cea6f1849fef", + "key": "dd3759ef-133b-49ec-94b9-20a05b4044e7", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "21ed8f60-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_24_aluminumblock_generic_2ml_screwcap/1", @@ -2747,7 +2749,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "35643d1f-ae0b-4a90-9de4-c9eb3c9b775e", + "key": "7b851c66-19ed-4d4e-ad2d-f8149744a720", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -2756,7 +2758,7 @@ }, { "commandType": "blowOutInPlace", - "key": "d540a57a-6968-44a0-8645-b221a9b7bfd7", + "key": "ccf8dea1-5c66-42dc-985b-91728f9d80c2", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "flowRate": 46.43 @@ -2764,7 +2766,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "c721cfd7-fef8-4fcb-9d6f-1d78f2317729", + "key": "276e3971-8910-4e53-8130-90f4bcb6f2c6", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -2774,17 +2776,17 @@ }, { "commandType": "dropTipInPlace", - "key": "a18788f3-cd5f-4470-8831-455d14883d1c", + "key": "4ba17bb2-3dbc-440e-a6ac-323eda333bdb", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5" } }, { "commandType": "waitForResume", - "key": "a54eb58b-ce5c-4a59-ba85-ed75438146a7", + "key": "6ffda031-bdb9-4b93-9749-9376f0487817", "params": { "message": "Wait until user intervention" } }, { "commandType": "pickUpTip", - "key": "c1bddcd0-d5cf-4d7c-b830-a5b27a5a71cb", + "key": "0eea0f55-ccb9-4805-89d5-f7f5069ac146", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", @@ -2793,7 +2795,7 @@ }, { "commandType": "aspirate", - "key": "1660f6c2-9072-4348-b034-cb45712f8cd7", + "key": "6c133bc3-4f21-474d-b7a1-8dc575f05d07", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2808,7 +2810,7 @@ }, { "commandType": "dispense", - "key": "c3683fde-b4e0-4432-ad96-932292f2ebcd", + "key": "927af8f8-3e17-4adc-8cf8-25e3e3b032a3", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2823,7 +2825,7 @@ }, { "commandType": "aspirate", - "key": "59251222-f64d-400b-98a6-71f95f24bec7", + "key": "8a286376-d039-4868-b43a-5a4dc18a7684", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2838,7 +2840,7 @@ }, { "commandType": "dispense", - "key": "a370936b-c12f-4039-88d0-97bb262cb80e", + "key": "52758061-375e-4238-a3e8-fd8d8ac7c109", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2853,7 +2855,7 @@ }, { "commandType": "aspirate", - "key": "8f428646-3bd6-4a90-9674-23d3e3be8a63", + "key": "0f7bcdd1-626a-4e8a-b9de-cbe1ddcab0b5", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2868,7 +2870,7 @@ }, { "commandType": "dispense", - "key": "445797f5-5799-486a-b0e2-299e2f23ca2a", + "key": "385cdb61-97e6-44a5-9bbb-d3c2a4042461", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2883,7 +2885,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "d740d713-a3cb-4bdb-81a5-798059db8be7", + "key": "c82f0730-3269-43ba-b7aa-bdce062fa8e1", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -2892,15 +2894,15 @@ }, { "commandType": "blowOutInPlace", - "key": "ba227a58-a0b1-4d83-93f8-4a3566cbedf1", + "key": "b04ddf2b-fd58-4c5f-bb5e-3454a593424c", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", - "flowRate": 35 + "flowRate": 46.43 } }, { "commandType": "touchTip", - "key": "68b765bb-a232-49ec-b6be-fc6b375b0a15", + "key": "8b977bb4-262a-4437-a89c-aea221051c77", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "1e610d40-75c7-11ea-b42f-4b64e50f43e5:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", @@ -2910,7 +2912,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "1464952c-cb00-48eb-a9db-8a4367d3ce0b", + "key": "f6624d29-db3e-4a60-8fd9-a81d7d5e589f", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -2920,12 +2922,12 @@ }, { "commandType": "dropTipInPlace", - "key": "2d96c742-46d0-4efa-8e94-3118e975bdd4", + "key": "eab34b0e-b50f-4d4c-a7fc-2e4dfb46e95e", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5" } }, { "commandType": "pickUpTip", - "key": "75a6817c-7f41-4a8c-a184-5e6e7aad51e9", + "key": "6cd7a187-1252-4f7e-81e9-a012173a96e7", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", @@ -2934,7 +2936,7 @@ }, { "commandType": "aspirate", - "key": "3e1db7e3-a5eb-473c-a98b-1c91e9b70c3d", + "key": "9655cd15-caff-4f78-ab83-2398146afa54", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2949,7 +2951,7 @@ }, { "commandType": "dispense", - "key": "d37facff-0753-4d92-9599-93141c97a90f", + "key": "645cf76c-a1d3-4d72-82e3-29ca0bc7a68a", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2964,7 +2966,7 @@ }, { "commandType": "aspirate", - "key": "df03e618-352a-44e8-8890-859f53229f10", + "key": "cf49d7f4-8175-44db-a0f6-5cc9c500ded7", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2979,7 +2981,7 @@ }, { "commandType": "dispense", - "key": "0b93f43f-b456-47fa-b9d7-89086cd9c20b", + "key": "8f7c947b-43a9-439d-b8e0-dc52b5243ecc", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -2994,7 +2996,7 @@ }, { "commandType": "aspirate", - "key": "310303b6-76e3-4765-bd82-042eac727669", + "key": "5534b4fa-7a7e-4606-a0eb-511a08febe55", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -3009,7 +3011,7 @@ }, { "commandType": "dispense", - "key": "9881ac40-2932-4197-a03b-77c936651a3b", + "key": "3fedeb8a-10ed-4798-bd26-66bc4ac4faf7", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 35, @@ -3024,7 +3026,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "f521a11f-1676-4dc2-a022-f5eba1c5d22e", + "key": "d4588b11-4268-40d9-aee4-312c5c1f7e3e", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -3033,15 +3035,15 @@ }, { "commandType": "blowOutInPlace", - "key": "daede461-9d74-4259-91e6-ecf7ddaa4897", + "key": "146bf039-743e-46f9-80d8-635451a2a40b", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", - "flowRate": 35 + "flowRate": 46.43 } }, { "commandType": "touchTip", - "key": "0cde152c-2aeb-4e86-9745-3732e0074ba7", + "key": "a263b140-4162-4871-a852-cae73b375e8f", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "1e610d40-75c7-11ea-b42f-4b64e50f43e5:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", @@ -3051,7 +3053,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "cb24aade-655e-4f6f-83d7-1b60457b56e6", + "key": "da3d817e-fcf6-4a50-bdb7-a3e71fc71f0e", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -3061,7 +3063,7 @@ }, { "commandType": "dropTipInPlace", - "key": "6970ad16-6e47-4f5c-afba-3704abe0eabb", + "key": "30463b38-428f-460c-90bd-09f50776320c", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5" } } ], diff --git a/protocol-designer/fixtures/protocol/8/doItAllV4MigratedToV8.json b/protocol-designer/fixtures/protocol/8/doItAllV4MigratedToV8.json index f8fec2171af..5aa4cf659fc 100644 --- a/protocol-designer/fixtures/protocol/8/doItAllV4MigratedToV8.json +++ b/protocol-designer/fixtures/protocol/8/doItAllV4MigratedToV8.json @@ -6,7 +6,7 @@ "author": "Fixture", "description": "Test all v4 commands", "created": 1585930833548, - "lastModified": 1711742493128, + "lastModified": 1714570366192, "category": null, "subcategory": null, "tags": [] @@ -15,10 +15,10 @@ "name": "opentrons/protocol-designer", "version": "8.1.0", "data": { - "_internalAppBuildDate": "Fri, 29 Mar 2024 20:00:04 GMT", + "_internalAppBuildDate": "Wed, 01 May 2024 13:32:34 GMT", "defaultValues": { "aspirate_mmFromBottom": 1, - "dispense_mmFromBottom": 0.5, + "dispense_mmFromBottom": 1, "touchTip_mmFromTop": -1, "blowout_mmFromTop": 0 }, @@ -27,7 +27,7 @@ "opentrons/opentrons_96_tiprack_300ul/1" ] }, - "dismissedWarnings": { "form": {}, "timeline": {} }, + "dismissedWarnings": { "form": [], "timeline": [] }, "ingredients": { "0": { "name": "Water", @@ -107,7 +107,7 @@ "3961e4c0-75c7-11ea-b42f-4b64e50f43e5": { "pipette": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": "30", - "tipRack": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", + "tipRack": "opentrons/opentrons_96_tiprack_300ul/1", "changeTip": "always", "path": "single", "aspirate_wells_grouped": false, @@ -135,7 +135,6 @@ "dispense_touchTip_mmFromBottom": null, "disposalVolume_checkbox": true, "disposalVolume_volume": "20", - "blowout_z_offset": 0, "blowout_checkbox": false, "blowout_location": "84882326-9cd3-428e-8352-89f133a1fe5d:trashBin", "preWetTip": false, @@ -155,6 +154,8 @@ "dispense_y_position": 0, "aspirate_x_position": 0, "aspirate_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "3961e4c0-75c7-11ea-b42f-4b64e50f43e5", "stepType": "moveLiquid", "stepName": "transfer", @@ -2551,7 +2552,7 @@ "commandSchemaId": "opentronsCommandSchemaV8", "commands": [ { - "key": "b7185c84-9b15-4b6e-a315-e331249569fa", + "key": "d99eb537-6cb6-4cd4-8331-3eeafdd4e45e", "commandType": "loadPipette", "params": { "pipetteName": "p300_single_gen2", @@ -2560,7 +2561,7 @@ } }, { - "key": "0d1f6599-70d5-4e99-9608-7d249135b5a9", + "key": "ecbb4b97-d248-4f78-a340-d412e0e87be4", "commandType": "loadModule", "params": { "model": "magneticModuleV2", @@ -2569,7 +2570,7 @@ } }, { - "key": "2ee81ffe-c8fa-4cac-be56-62a902e301f7", + "key": "c08483ea-e4a8-46a0-9533-12a340bd377a", "commandType": "loadModule", "params": { "model": "temperatureModuleV2", @@ -2578,7 +2579,7 @@ } }, { - "key": "e1da2e62-ac25-405f-b896-99384ab081d8", + "key": "8e908f00-8462-449a-b59b-8bad8a8bf655", "commandType": "loadLabware", "params": { "displayName": "Opentrons 96 Tip Rack 300 µL", @@ -2590,7 +2591,7 @@ } }, { - "key": "2895d8a7-239c-4d6b-afc8-69defe261790", + "key": "4977d62d-75a5-4a20-ae8e-8b62e88c3b0f", "commandType": "loadLabware", "params": { "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", @@ -2604,7 +2605,7 @@ } }, { - "key": "46b84345-0c06-41f8-860d-1dfafa424e80", + "key": "d62c61f4-cdf2-4313-8183-4b6401d1c807", "commandType": "loadLabware", "params": { "displayName": "Opentrons 24 Well Aluminum Block with Generic 2 mL Screwcap", @@ -2619,7 +2620,7 @@ }, { "commandType": "loadLiquid", - "key": "25dd8768-7731-4dee-9f5a-d54b9eb0983c", + "key": "3cc4e4b7-0121-484e-af30-19b202941154", "params": { "liquidId": "0", "labwareId": "1e610d40-75c7-11ea-b42f-4b64e50f43e5:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/1", @@ -2645,7 +2646,7 @@ }, { "commandType": "magneticModule/engage", - "key": "3471fe25-a3a8-4be0-b6d8-545819c4aea0", + "key": "c9af3ef4-d79b-4f75-aea9-5daf8c7b95f1", "params": { "moduleId": "0b419310-75c7-11ea-b42f-4b64e50f43e5:magneticModuleType", "height": 6 @@ -2653,7 +2654,7 @@ }, { "commandType": "temperatureModule/setTargetTemperature", - "key": "610ae127-200b-48ae-8cbc-7ba4b5ca7b30", + "key": "fb5cdf77-8b2d-430d-9d38-09556cb6fa40", "params": { "moduleId": "0b4319b0-75c7-11ea-b42f-4b64e50f43e5:temperatureModuleType", "celsius": 25 @@ -2661,12 +2662,12 @@ }, { "commandType": "waitForDuration", - "key": "94aa4488-7792-49bc-ac3d-6a260bad0f86", + "key": "5d2283e2-5f14-4c7b-a98b-a7fb464c0bb8", "params": { "seconds": 62, "message": "" } }, { "commandType": "pickUpTip", - "key": "1a838ef5-ea1a-4680-bac0-6eaf473465a4", + "key": "a9b8a288-1a4a-44b7-88c3-c6cdb4b52b89", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", @@ -2675,7 +2676,7 @@ }, { "commandType": "aspirate", - "key": "f74c2687-f02c-4034-aa03-9a73c1ee47af", + "key": "e91dc8c3-dfda-441b-9546-0f7e8dad4882", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2690,7 +2691,7 @@ }, { "commandType": "dispense", - "key": "507c7fff-1193-4c14-a0b1-e4bb9fe9d96e", + "key": "3a1820bb-4dc3-4cde-8e88-a863d9419e8a", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2705,7 +2706,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "5a050ced-d1a9-4031-bf16-ed49cb561e60", + "key": "a4c10a8c-e960-430c-b5f5-f5b10c109a3a", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -2715,12 +2716,12 @@ }, { "commandType": "dropTipInPlace", - "key": "8083dcbe-8c00-4178-90c0-4d4a921bca9c", + "key": "8cd24129-b76d-4c65-95a7-b148358e0db9", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5" } }, { "commandType": "pickUpTip", - "key": "e6db98b2-7239-4f6b-9e41-02e1dd108ad6", + "key": "66a6278b-9e16-43c1-bde2-1e5c3da0e2d7", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "labwareId": "0b44c760-75c7-11ea-b42f-4b64e50f43e5:opentrons/opentrons_96_tiprack_300ul/1", @@ -2729,7 +2730,7 @@ }, { "commandType": "aspirate", - "key": "47cf3011-68e2-40cd-8563-145e460f93aa", + "key": "5a8abdb2-2ac2-4069-b010-2eaac95acece", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2744,7 +2745,7 @@ }, { "commandType": "dispense", - "key": "1f1d966a-9095-4857-9137-36131c91bfd2", + "key": "58b3983a-9383-4013-8145-0a6b3398ad78", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "volume": 30, @@ -2759,7 +2760,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "ac6074f6-2f28-4012-914b-d3b28eb8453d", + "key": "a1175c8b-d19c-4e97-bad0-6ae84eb0bec5", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5", "addressableAreaName": "fixedTrash", @@ -2769,12 +2770,12 @@ }, { "commandType": "dropTipInPlace", - "key": "074050d3-0c4c-4fc0-8036-a5dc9afe99ef", + "key": "1457d4ac-4aee-4b32-845e-64a1025f0007", "params": { "pipetteId": "0b3f2210-75c7-11ea-b42f-4b64e50f43e5" } }, { "commandType": "temperatureModule/waitForTemperature", - "key": "89672a34-bd2f-4e2a-bacc-407bb5f563a1", + "key": "a22d457a-2815-43dd-9f56-a7ee53f6e628", "params": { "moduleId": "0b4319b0-75c7-11ea-b42f-4b64e50f43e5:temperatureModuleType", "celsius": 25 @@ -2782,19 +2783,19 @@ }, { "commandType": "magneticModule/disengage", - "key": "26603c88-f0a7-49b3-a65c-37e9e23ac2ff", + "key": "e07424ee-2e30-49bc-927d-dc8a4f3fc2f2", "params": { "moduleId": "0b419310-75c7-11ea-b42f-4b64e50f43e5:magneticModuleType" } }, { "commandType": "waitForResume", - "key": "f0e0a8c0-01df-47d7-92e5-c3c16e962f4f", + "key": "bc1b0315-d129-4d58-9013-eea4ec766761", "params": { "message": "Wait until user intervention" } }, { "commandType": "temperatureModule/deactivate", - "key": "bde12c91-d991-4d57-8d7b-172706f3aa2a", + "key": "8fd9574a-d9bf-4a7d-9b3e-c2bc99ce6e5b", "params": { "moduleId": "0b4319b0-75c7-11ea-b42f-4b64e50f43e5:temperatureModuleType" } diff --git a/protocol-designer/fixtures/protocol/8/doItAllV7MigratedToV8.json b/protocol-designer/fixtures/protocol/8/doItAllV7MigratedToV8.json index 66a4cab5f90..cc197f448ce 100644 --- a/protocol-designer/fixtures/protocol/8/doItAllV7MigratedToV8.json +++ b/protocol-designer/fixtures/protocol/8/doItAllV7MigratedToV8.json @@ -6,7 +6,7 @@ "author": "", "description": "", "created": 1689346890165, - "lastModified": 1713443721060, + "lastModified": 1714570422365, "category": null, "subcategory": null, "tags": [] @@ -15,10 +15,10 @@ "name": "opentrons/protocol-designer", "version": "8.1.0", "data": { - "_internalAppBuildDate": "Thu, 18 Apr 2024 12:35:12 GMT", + "_internalAppBuildDate": "Wed, 01 May 2024 13:32:34 GMT", "defaultValues": { "aspirate_mmFromBottom": 1, - "dispense_mmFromBottom": 0.5, + "dispense_mmFromBottom": 1, "touchTip_mmFromTop": -1, "blowout_mmFromTop": 0 }, @@ -30,7 +30,7 @@ "opentrons/opentrons_flex_96_filtertiprack_50ul/1" ] }, - "dismissedWarnings": { "form": {}, "timeline": {} }, + "dismissedWarnings": { "form": [], "timeline": [] }, "ingredients": { "0": { "name": "Water", @@ -151,7 +151,7 @@ "f9a294f1-f42b-4cae-893a-592405349d56": { "pipette": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": "100", - "tipRack": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", + "tipRack": "opentrons/opentrons_flex_96_filtertiprack_50ul/1", "changeTip": "always", "path": "single", "aspirate_wells_grouped": false, @@ -180,7 +180,7 @@ "disposalVolume_checkbox": true, "disposalVolume_volume": "100", "blowout_checkbox": false, - "blowout_location": "4824b094-5999-4549-9e6b-7098a9b30a8b:trashBin", + "blowout_location": "134504e1-b212-41cf-966d-2560deb5b693:trashBin", "preWetTip": false, "aspirate_airGap_checkbox": false, "aspirate_airGap_volume": "0", @@ -192,13 +192,14 @@ "dispense_delay_checkbox": false, "dispense_delay_seconds": "1", "dispense_delay_mmFromBottom": null, - "dropTip_location": "4824b094-5999-4549-9e6b-7098a9b30a8b:trashBin", + "dropTip_location": "134504e1-b212-41cf-966d-2560deb5b693:trashBin", "nozzles": null, "dispense_x_position": 0, "dispense_y_position": 0, "aspirate_x_position": 0, "aspirate_y_position": 0, "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "f9a294f1-f42b-4cae-893a-592405349d56", "stepType": "moveLiquid", "stepName": "transfer", @@ -211,7 +212,7 @@ "mix_wellOrder_first": "t2b", "mix_wellOrder_second": "l2r", "blowout_checkbox": false, - "blowout_location": "4824b094-5999-4549-9e6b-7098a9b30a8b:trashBin", + "blowout_location": "134504e1-b212-41cf-966d-2560deb5b693:trashBin", "mix_mmFromBottom": 0.5, "pipette": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "volume": "10", @@ -224,12 +225,13 @@ "dispense_delay_seconds": "1", "mix_touchTip_checkbox": false, "mix_touchTip_mmFromBottom": null, - "dropTip_location": "4824b094-5999-4549-9e6b-7098a9b30a8b:trashBin", + "dropTip_location": "134504e1-b212-41cf-966d-2560deb5b693:trashBin", "nozzles": null, - "tipRack": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", + "tipRack": "opentrons/opentrons_flex_96_filtertiprack_50ul/1", "mix_x_position": 0, "mix_y_position": 0, "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "5fdb9a12-fab4-42fd-886f-40af107b15d6", "stepType": "mix", "stepName": "mix", @@ -3761,7 +3763,7 @@ "commandSchemaId": "opentronsCommandSchemaV8", "commands": [ { - "key": "6221e85d-921e-4067-83c9-4741f4b85904", + "key": "a466d0dc-e276-4eca-8c03-5bf4104f7be2", "commandType": "loadPipette", "params": { "pipetteName": "p1000_single_flex", @@ -3770,7 +3772,7 @@ } }, { - "key": "b599e98c-88f7-431b-85f7-2cce0941a720", + "key": "52475912-17f0-4539-9595-01e27c4a3994", "commandType": "loadPipette", "params": { "pipetteName": "p50_multi_flex", @@ -3779,7 +3781,7 @@ } }, { - "key": "cd153de4-f26f-4875-9a36-6ae084bcb4b5", + "key": "9a9006cb-c81c-41ea-82ca-d7422647f7f6", "commandType": "loadModule", "params": { "model": "magneticBlockV1", @@ -3788,7 +3790,7 @@ } }, { - "key": "a237e138-0b4c-4cc1-93e6-b0140ab1defd", + "key": "709aa475-25dd-4c78-b9a2-c65e654b9f5d", "commandType": "loadModule", "params": { "model": "heaterShakerModuleV1", @@ -3797,7 +3799,7 @@ } }, { - "key": "3cacc7b3-161e-4df2-b578-ef3dcc40e13a", + "key": "4a938cf9-7ff4-4a5e-8be8-4983f4d96e3f", "commandType": "loadModule", "params": { "model": "temperatureModuleV2", @@ -3806,7 +3808,7 @@ } }, { - "key": "444ebe6c-015e-4ab8-b4e1-b2f8c0ebe828", + "key": "1b0bbdd3-3885-441d-9310-57809d457a09", "commandType": "loadModule", "params": { "model": "thermocyclerModuleV2", @@ -3815,7 +3817,7 @@ } }, { - "key": "5bce906a-7bde-4a7f-bf60-f6ed123f4fd4", + "key": "328bf7a0-d0ac-4ff3-ae73-78618fd8d822", "commandType": "loadLabware", "params": { "displayName": "Opentrons 96 Flat Bottom Heater-Shaker Adapter", @@ -3829,7 +3831,7 @@ } }, { - "key": "d2dd55f3-b4a9-47a8-9b7e-db4dda1c493a", + "key": "1a3bd842-7dd1-4805-be2c-99bdd24aeb84", "commandType": "loadLabware", "params": { "displayName": "Opentrons Flex 96 Filter Tip Rack 50 µL", @@ -3841,7 +3843,7 @@ } }, { - "key": "226fb70b-20aa-477d-91fe-c1bf4b68b82c", + "key": "f4e4f3ed-5a86-41bb-a9c3-377182e26868", "commandType": "loadLabware", "params": { "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", @@ -3855,7 +3857,7 @@ } }, { - "key": "9e34c746-37a9-4275-8705-86a6a576e968", + "key": "91648cab-a243-4f8e-abe0-a540eeca2e9d", "commandType": "loadLabware", "params": { "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Snapcap", @@ -3869,7 +3871,7 @@ } }, { - "key": "0ffdcd99-a6ba-427c-afdb-9fad59ee716f", + "key": "11e8b668-a20f-4080-b2ca-a782d62fd3e3", "commandType": "loadLabware", "params": { "displayName": "NEST 96 Well Plate 200 µL Flat", @@ -3884,7 +3886,7 @@ }, { "commandType": "loadLiquid", - "key": "ab63485c-6a51-42d9-8168-cb68515fdafe", + "key": "bb85f067-473e-4e12-9115-205e8dff5687", "params": { "liquidId": "1", "labwareId": "a793a135-06aa-4ed6-a1d3-c176c7810afa:opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/1", @@ -3893,7 +3895,7 @@ }, { "commandType": "loadLiquid", - "key": "113f57e7-b869-43d7-9373-c9f664aa7cfa", + "key": "7060bb0a-3534-49da-932e-ba8b73e46af5", "params": { "liquidId": "0", "labwareId": "fcba73e7-b88e-438e-963e-f8b9a5de0983:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", @@ -3911,7 +3913,7 @@ }, { "commandType": "temperatureModule/setTargetTemperature", - "key": "a3871c48-ec0a-42e7-864e-b40a38f244db", + "key": "f59ece51-dd41-44db-b64b-36d232eccdf1", "params": { "moduleId": "ef44ad7f-0fd9-46d6-8bc0-c70785644cc8:temperatureModuleType", "celsius": 4 @@ -3919,7 +3921,7 @@ }, { "commandType": "heaterShaker/waitForTemperature", - "key": "df704427-687e-4c53-81df-7ea3a76d05e9", + "key": "da21219e-ef9b-4373-875c-9d5a09989aec", "params": { "moduleId": "c19dffa3-cb34-4702-bcf6-dcea786257d1:heaterShakerModuleType", "celsius": 4 @@ -3927,14 +3929,14 @@ }, { "commandType": "thermocycler/closeLid", - "key": "20d652d8-b74b-4583-9378-f970465eabc1", + "key": "20f3146d-9731-4efa-809e-36633bb54370", "params": { "moduleId": "627b7a27-5bb7-46de-a530-67af45652e3b:thermocyclerModuleType" } }, { "commandType": "thermocycler/setTargetLidTemperature", - "key": "5d0b1c68-1e79-4683-9cf2-37c3cf708ead", + "key": "28ee0f3a-c4b6-4e02-987d-10901017c010", "params": { "moduleId": "627b7a27-5bb7-46de-a530-67af45652e3b:thermocyclerModuleType", "celsius": 40 @@ -3942,14 +3944,14 @@ }, { "commandType": "thermocycler/waitForLidTemperature", - "key": "1a5297e5-6384-4f42-acf0-7006c9005bfa", + "key": "a8d1fb79-c73b-4ff1-9182-552e327cc60c", "params": { "moduleId": "627b7a27-5bb7-46de-a530-67af45652e3b:thermocyclerModuleType" } }, { "commandType": "thermocycler/runProfile", - "key": "45aecec9-638b-449d-b4e5-648d7940442b", + "key": "f7ae03ff-0b0f-4956-8bd4-e66dbf90528f", "params": { "moduleId": "627b7a27-5bb7-46de-a530-67af45652e3b:thermocyclerModuleType", "profile": [ @@ -3961,28 +3963,28 @@ }, { "commandType": "thermocycler/deactivateBlock", - "key": "f1a3a1a7-b52f-4375-82f2-078c6e03313b", + "key": "046285cc-fc6a-4191-9dca-b9b7994d4244", "params": { "moduleId": "627b7a27-5bb7-46de-a530-67af45652e3b:thermocyclerModuleType" } }, { "commandType": "thermocycler/deactivateLid", - "key": "703bd4bf-69ac-4ba3-9984-1989e71e397e", + "key": "2decfbea-68ec-423f-a798-dc0c06a76e17", "params": { "moduleId": "627b7a27-5bb7-46de-a530-67af45652e3b:thermocyclerModuleType" } }, { "commandType": "thermocycler/openLid", - "key": "b9f0f8aa-c5c5-4f21-9526-5803f3c0e4ab", + "key": "35dc75ed-4760-42ac-9b83-d37ec2f717b0", "params": { "moduleId": "627b7a27-5bb7-46de-a530-67af45652e3b:thermocyclerModuleType" } }, { "commandType": "pickUpTip", - "key": "d942b290-e41c-44b9-bab8-bc1fee368c01", + "key": "97f422da-3677-412b-a859-9ca064fa8e2c", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -3991,7 +3993,7 @@ }, { "commandType": "aspirate", - "key": "017d9080-9d8c-4249-b91a-df02e4d7c98e", + "key": "1c813b91-1e33-4aae-9841-20af63299a68", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4006,7 +4008,7 @@ }, { "commandType": "dispense", - "key": "50cc87f3-cd5e-41cb-b2cd-0861d5b537e8", + "key": "c562ed92-a5b5-4fce-8a99-f02358ab6941", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4014,14 +4016,14 @@ "wellName": "A1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "a5b327e8-d4ef-4ba1-8abe-4fe005c1b72d", + "key": "a7b2f8fe-b6ab-4184-8170-0647a05d7c86", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4031,12 +4033,12 @@ }, { "commandType": "dropTipInPlace", - "key": "7a7ea09c-59a4-4466-b317-18b502407b40", + "key": "2dee7eea-fc2a-485a-aea1-beb064e5109b", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "f097f49d-50e3-4c03-851a-08582413197b", + "key": "35d005a3-7a97-4190-b9b0-f05d929e6c50", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4045,7 +4047,7 @@ }, { "commandType": "aspirate", - "key": "dd7efe76-a487-4f2e-9104-54f9ccc431d7", + "key": "2dee8a38-087d-4f5b-85fa-c93e5a731475", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4060,7 +4062,7 @@ }, { "commandType": "dispense", - "key": "edb834a0-93bb-4d93-880b-04fa45d74c3a", + "key": "6aa3c0b2-9191-4cce-9fac-908b9ecdb0ce", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4068,14 +4070,14 @@ "wellName": "A1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "8bc803c0-0828-4266-b360-0e59ea759fa7", + "key": "ef663141-ba95-4cab-83f4-a98800deb903", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4085,12 +4087,12 @@ }, { "commandType": "dropTipInPlace", - "key": "2a2cb565-d10b-40b5-bbe1-ec341dc8cda2", + "key": "921a5d1b-a920-4e75-b3d6-2a9385baf2a1", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "fcb5a288-3661-40ed-be41-598af6dbb04a", + "key": "8bb26abd-e67d-4a27-82fd-b5095e6b863a", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4099,7 +4101,7 @@ }, { "commandType": "aspirate", - "key": "cabf020e-9093-45e9-8f9a-c86bee3d8716", + "key": "69e87e9c-5758-4029-838a-f601d85c57c7", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4114,7 +4116,7 @@ }, { "commandType": "dispense", - "key": "17dc69a7-8ff8-489a-814d-829285732f35", + "key": "b8fdb45a-1bb1-4f5b-90ff-99a3f90ef378", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4122,14 +4124,14 @@ "wellName": "B1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "7eb184aa-3ef3-475c-8747-f5706db36de1", + "key": "3a91ac83-be4f-49e5-971f-d50995d87a5f", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4139,12 +4141,12 @@ }, { "commandType": "dropTipInPlace", - "key": "53985655-c51f-42e3-a60b-beac9e445f8e", + "key": "076167d0-7192-455c-8329-78d36e1e0bbe", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "c92cebae-c6e5-402f-a820-d36e07154a16", + "key": "763fb955-8bcd-4a20-9523-ebe78894a2cc", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4153,7 +4155,7 @@ }, { "commandType": "aspirate", - "key": "bc03bede-aa9f-4a4b-bd24-4fc7ac5f8d35", + "key": "7ed1e15c-ae12-492c-8e69-9615a7128692", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4168,7 +4170,7 @@ }, { "commandType": "dispense", - "key": "513583b8-e5cf-4953-b809-1e635ef0deef", + "key": "a35f983c-9d71-41b0-b134-408254afffc9", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4176,14 +4178,14 @@ "wellName": "B1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "ce89a96c-1964-4526-8511-9b5ef1c70841", + "key": "036dffc0-eb5c-4ad1-a468-2810c6d40404", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4193,12 +4195,12 @@ }, { "commandType": "dropTipInPlace", - "key": "546722cb-480c-49cd-9ef6-f8376a157d1e", + "key": "728b951b-ac30-42b2-8733-66047e15104d", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "751019fa-c8cb-4970-9719-9ca306198c43", + "key": "2f679268-9e41-4d25-a1d2-a02146993957", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4207,7 +4209,7 @@ }, { "commandType": "aspirate", - "key": "4af0b92f-22f6-4075-8505-564a71775307", + "key": "9fc88d82-b344-4d58-bc88-21f7da6420ad", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4222,7 +4224,7 @@ }, { "commandType": "dispense", - "key": "1ee99a9f-437a-4b81-95e5-683cf776a0c9", + "key": "cd9e1f2e-8d97-4360-be45-77fef790a7ab", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4230,14 +4232,14 @@ "wellName": "C1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "122b028b-8712-4be2-ad67-7ffb305b0ec6", + "key": "09f656d5-2ca6-4496-961e-bd9e1d91b126", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4247,12 +4249,12 @@ }, { "commandType": "dropTipInPlace", - "key": "9b2c8348-47d2-4cac-9ce8-466c12add906", + "key": "fccb75f1-699b-4c8b-8151-dbd58d18ef06", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "b3a8b996-6cbb-41a1-b2ac-e4a469020db0", + "key": "a3701c28-7d35-45b6-8af6-bafd6e9a4b78", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4261,7 +4263,7 @@ }, { "commandType": "aspirate", - "key": "b59f5fb8-f15d-4e18-abde-3293ee790e6b", + "key": "4ee690e6-a74b-4417-b62a-fd3fee7d65e4", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4276,7 +4278,7 @@ }, { "commandType": "dispense", - "key": "47a6a5e9-9c07-42b1-9845-f6089567df5c", + "key": "8eafdd0e-0d05-403d-91b2-7e5499688f93", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4284,14 +4286,14 @@ "wellName": "C1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "a9c5a2e8-c74e-4fc6-ae21-0fd9fd3d0513", + "key": "1ca0e890-4dd7-406b-b957-ac5122beb4ed", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4301,12 +4303,12 @@ }, { "commandType": "dropTipInPlace", - "key": "da688e48-bec6-48f7-961f-9654900fb753", + "key": "c4bc3f8e-96d8-48cb-ab98-9aa4f4bafda2", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "ce417704-8708-44ee-9b8e-75dcec347805", + "key": "2f72e6b5-7349-47c6-8ed4-99b059460e7e", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4315,7 +4317,7 @@ }, { "commandType": "aspirate", - "key": "ad46e9da-47d2-4527-b6c7-068ce4bab5b8", + "key": "662be64a-6a00-487c-886e-0f6c2979dd0e", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4330,7 +4332,7 @@ }, { "commandType": "dispense", - "key": "81a3513f-9627-4874-ab3a-b7a7ce2c64ea", + "key": "7f81ae52-4dcd-4b71-9247-2ae073990a98", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4338,14 +4340,14 @@ "wellName": "D1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "269c6242-9712-4cb8-bd64-d18799047e33", + "key": "180c5597-e041-4f4a-a8c6-42e4f2526525", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4355,12 +4357,12 @@ }, { "commandType": "dropTipInPlace", - "key": "929645f3-9cbb-4032-a6af-fe26bd61cd2c", + "key": "a151f233-ffa8-487c-8058-cc58d52c4181", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "5560ef5b-2f4b-4780-8a09-2752c9a1b60d", + "key": "dcd3ad54-3401-4d65-a7c6-c6ec7f6027ec", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4369,7 +4371,7 @@ }, { "commandType": "aspirate", - "key": "19dbd5a5-4ca5-421f-b443-6dd0f23eea89", + "key": "32fcd712-9792-4269-be8c-1eab474ecf4c", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4384,7 +4386,7 @@ }, { "commandType": "dispense", - "key": "ce588c4b-28db-49ef-b2b2-e3cd6fb41038", + "key": "e8b25c7f-01ad-461d-94d6-86575cc51a56", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4392,14 +4394,14 @@ "wellName": "D1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "78b93dce-d551-49cc-8958-60cfe114ee33", + "key": "ebf51a3b-0060-435a-afcc-873460507190", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4409,12 +4411,12 @@ }, { "commandType": "dropTipInPlace", - "key": "b7b96af8-2d7b-4cdb-8ea0-5c571f861c6c", + "key": "e77f841b-88ec-407c-beb8-e3321040fb2a", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "a885c66b-67aa-4c91-bef9-8887165a08a6", + "key": "e06e9602-6ec1-44e4-b6ee-192cd5597aaf", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4423,7 +4425,7 @@ }, { "commandType": "aspirate", - "key": "cd0a813d-8943-4799-bbc3-8ff66c036f65", + "key": "2b552829-1350-47ff-8f33-e6a2705b08cc", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4438,7 +4440,7 @@ }, { "commandType": "dispense", - "key": "90716aec-e282-4cbf-aff3-5560a10f6b1e", + "key": "69bc9bfc-b130-4594-a912-f32493df9f5c", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4446,14 +4448,14 @@ "wellName": "E1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "edf9b480-7eb3-49c4-8766-ba795e8a7115", + "key": "c8553dff-22c7-47e0-b188-fe47ba20c06f", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4463,12 +4465,12 @@ }, { "commandType": "dropTipInPlace", - "key": "393f693c-9021-44a5-9f41-44fef2473da6", + "key": "e6173c85-aa29-4970-a017-e1d56173d529", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "e8ebcfa1-ab44-47fc-bf61-2195ecc037e9", + "key": "c4ac3ecf-35ae-444a-a4d9-b90b289d7020", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4477,7 +4479,7 @@ }, { "commandType": "aspirate", - "key": "c18d9596-75c4-47c9-b886-01881bc466d7", + "key": "07af8116-6872-43f4-8e6a-2acfd9ae056d", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4492,7 +4494,7 @@ }, { "commandType": "dispense", - "key": "07a1703c-cac3-4204-8d5f-2af3b784b309", + "key": "c2a1b95f-eead-476a-af6b-eaecd597c58a", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4500,14 +4502,14 @@ "wellName": "E1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "da0eb4ba-8852-4789-a540-90670525bc53", + "key": "ae02c807-ad04-407b-a8bd-2536d326053a", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4517,12 +4519,12 @@ }, { "commandType": "dropTipInPlace", - "key": "79efe973-9dc8-406b-9a9d-8718df7456a0", + "key": "9ff56b91-52d2-4823-b1a7-d168b6610d39", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "d14d47cc-9b15-4fba-bd0b-14ed6252b5d8", + "key": "2ee82bb2-a652-4372-b208-79381d3a2264", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4531,7 +4533,7 @@ }, { "commandType": "aspirate", - "key": "30a0a6a6-7499-4aed-9fc6-5338fd4c7d44", + "key": "fba01fbc-0c97-448e-85c0-0163f435eec9", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4546,7 +4548,7 @@ }, { "commandType": "dispense", - "key": "944d54c3-0a8b-4932-8bc6-421be966d35e", + "key": "899aee37-aa0f-499b-8d81-87e50da36e24", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4554,14 +4556,14 @@ "wellName": "F1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "63ad1220-e0fc-4972-88d1-dd245136289f", + "key": "d90d5984-3d21-464c-b92a-81a00180e27a", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4571,12 +4573,12 @@ }, { "commandType": "dropTipInPlace", - "key": "b5ed9c60-0df8-4c2d-b630-ac8a34247207", + "key": "4b7837b9-6c57-4349-9411-f5cd659fdf44", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "9f6cfe6a-c257-4863-9110-bbb461ad2fcb", + "key": "073269b2-c1ef-4568-be8a-e700e01c1fb0", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4585,7 +4587,7 @@ }, { "commandType": "aspirate", - "key": "2e0a36c3-2ed7-4622-b866-a8e203aeae2a", + "key": "7f2b602e-f8f3-481f-9bcf-a149126f6b55", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4600,7 +4602,7 @@ }, { "commandType": "dispense", - "key": "a7747373-d5d6-49f0-9d97-25038acf1444", + "key": "0fe0f127-2b1c-4d2d-ab09-d860f3cceead", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4608,14 +4610,14 @@ "wellName": "F1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "c8f6434a-6f37-469e-9d68-da6b8986ff0a", + "key": "e1977b77-4bb4-4065-b4df-71a45adc0456", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4625,12 +4627,12 @@ }, { "commandType": "dropTipInPlace", - "key": "f7d1e8a1-406b-492c-8790-60822745a861", + "key": "bfe36534-d079-4187-a2a5-9438bcd9c33f", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "2a3a4014-3564-404c-9c8e-b8eca070b4cf", + "key": "07a11b3e-ed6f-4ba3-8c0a-470b956cf7e0", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4639,7 +4641,7 @@ }, { "commandType": "aspirate", - "key": "d22f1918-7e2b-4048-9dde-5c2667d3177b", + "key": "e5b0fda2-844a-4edb-b91b-3c41936dac98", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4654,7 +4656,7 @@ }, { "commandType": "dispense", - "key": "0bfa72a6-c216-4a8d-aa03-3e318a1ac4f1", + "key": "571ad2e1-63a6-40d6-8a3b-f1750059ae7f", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4662,14 +4664,14 @@ "wellName": "G1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "b5228eca-74c0-4336-8905-f270742014d2", + "key": "0b034b3e-45c4-4cb9-b820-357f3e230e55", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4679,12 +4681,12 @@ }, { "commandType": "dropTipInPlace", - "key": "49bb2ab9-7a30-439e-b5c7-50cd7b085f76", + "key": "2da8c88c-d811-4b24-a8c3-483fbb746ecf", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "462d1a08-c3c8-4bcb-be21-64fc59160a12", + "key": "751d9a11-3483-4b6f-bb41-7599943010ad", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4693,7 +4695,7 @@ }, { "commandType": "aspirate", - "key": "f38fb05c-8554-4f06-ae13-5296ce97f7df", + "key": "69b99917-3f64-40ea-b8b6-8c151a50138b", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4708,7 +4710,7 @@ }, { "commandType": "dispense", - "key": "2a02466b-3f7a-43ca-bf1e-8a737db30822", + "key": "7cf6c2ab-0fae-4ecb-8170-f88aaa06a661", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4716,14 +4718,14 @@ "wellName": "G1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "ba7d2aad-470f-477b-9bff-c31ca1722686", + "key": "d6841291-2f66-444c-9075-479264b99da2", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4733,12 +4735,12 @@ }, { "commandType": "dropTipInPlace", - "key": "80dde7d3-6af3-4c81-90e7-5907015cc714", + "key": "a31c0031-274d-4b0d-9a1e-5798c30ec56a", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "8f5d140b-a2fe-40a5-b789-17279666f401", + "key": "a79d29d3-2c41-4c92-8c6a-d326490796c1", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4747,7 +4749,7 @@ }, { "commandType": "aspirate", - "key": "370b0d86-e5bc-4f6c-a47f-6212f2bcbee1", + "key": "c1d0c16c-ac57-458b-9684-28a980d2bfb8", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4762,7 +4764,7 @@ }, { "commandType": "dispense", - "key": "7811759e-ad05-429a-b7cb-89365fb0e5fa", + "key": "b3bfc4e3-cc87-4d0a-bf93-e011e94f1faa", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4770,14 +4772,14 @@ "wellName": "H1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "d5cac3b5-8e2c-4b1f-ad42-bac90972bd06", + "key": "562b921d-47ef-410f-a6e9-89ca3de47781", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4787,12 +4789,12 @@ }, { "commandType": "dropTipInPlace", - "key": "b60fdbea-f73d-4ad6-a396-b9c39e41681b", + "key": "0a571744-aab1-4e5f-8714-4ef214eed2b4", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "9c512ff3-31b8-4e2f-92a3-bebb9fbdf449", + "key": "76f26d7f-424a-47d7-b58b-25da0153e99e", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4801,7 +4803,7 @@ }, { "commandType": "aspirate", - "key": "ac6afee2-95f8-4b14-90bb-00ea6e5cb9aa", + "key": "2ee21344-b3c9-4a1c-8d16-ba87685c941d", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4816,7 +4818,7 @@ }, { "commandType": "dispense", - "key": "468fab39-9a90-4b08-9a91-ccf0f8080a7c", + "key": "0aa240d7-4f11-4e27-b267-b2293756ccd9", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "volume": 50, @@ -4824,14 +4826,14 @@ "wellName": "H1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 478 } }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "16e076a7-9850-4ed9-9b10-31079a7cec7e", + "key": "7ce94c87-441f-4b94-b130-2ac389df6173", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe", "addressableAreaName": "movableTrashA3", @@ -4841,12 +4843,12 @@ }, { "commandType": "dropTipInPlace", - "key": "d85b048b-02ff-47ec-abf8-eea59905d6bc", + "key": "3d97c296-3db4-4aeb-a90a-d606b403b06f", "params": { "pipetteId": "2e7c6344-58ab-465c-b542-489883cb63fe" } }, { "commandType": "pickUpTip", - "key": "2c7aaef7-a6ec-4a82-9f6c-70232c99062a", + "key": "8f82c107-45a2-4a38-84fc-66f0271d2801", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "labwareId": "23ed35de-5bfd-4bb0-8f54-da99a2804ed9:opentrons/opentrons_flex_96_filtertiprack_50ul/1", @@ -4855,7 +4857,7 @@ }, { "commandType": "configureForVolume", - "key": "61eb227a-2372-41cf-aeed-e3fa3fd38b66", + "key": "756cc4d4-1166-43e6-973e-e36da881b3b8", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "volume": 10 @@ -4863,7 +4865,7 @@ }, { "commandType": "aspirate", - "key": "a6140727-c21f-4282-bc9a-b5145937643f", + "key": "11e401a4-f3f9-4140-8440-b9720b25e64b", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "volume": 10, @@ -4878,7 +4880,7 @@ }, { "commandType": "dispense", - "key": "81d7b5c4-2482-4f69-a470-3668e423c679", + "key": "d203a431-0e58-4eae-a58a-1867345d2097", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "volume": 10, @@ -4893,7 +4895,7 @@ }, { "commandType": "aspirate", - "key": "ee15c250-d1fd-403f-9ef6-6a3cc2be4676", + "key": "47cd47b9-0e5e-4cfb-8a34-04e38972042f", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "volume": 10, @@ -4908,7 +4910,7 @@ }, { "commandType": "dispense", - "key": "1cf3a88d-03bd-4a3d-bf14-94691c277bde", + "key": "8c82d2df-c0b3-4e83-84b7-c49c5a679d7a", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "volume": 10, @@ -4923,7 +4925,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "d323a933-4ba8-4b24-a1fa-8616b75a2acb", + "key": "87891819-4db8-485f-ac1c-2cb8dfa8da58", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193", "addressableAreaName": "movableTrashA3", @@ -4933,12 +4935,12 @@ }, { "commandType": "dropTipInPlace", - "key": "0428fbf2-4a65-40db-ac59-e92f8a060772", + "key": "c8b87235-132f-4c2b-8d4e-b09292e6bbeb", "params": { "pipetteId": "6d1e53c3-2db3-451b-ad60-3fe13781a193" } }, { "commandType": "moveLabware", - "key": "00daa040-08a8-4985-9d6b-4d32e9d97401", + "key": "70be0944-8068-4d60-aa0f-9d157c6419a5", "params": { "labwareId": "fcba73e7-b88e-438e-963e-f8b9a5de0983:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", "strategy": "usingGripper", @@ -4947,12 +4949,12 @@ }, { "commandType": "waitForDuration", - "key": "2552e97d-4fcf-45c7-a88c-c272dc6143d9", + "key": "fef747ed-386a-4b20-9cf1-e37c46181425", "params": { "seconds": 60, "message": "" } }, { "commandType": "moveLabware", - "key": "b78b90be-5d24-4628-9488-d3c1b4d2ab50", + "key": "e837119a-5b27-46f1-b451-212a7df67b07", "params": { "labwareId": "fcba73e7-b88e-438e-963e-f8b9a5de0983:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", "strategy": "usingGripper", @@ -4961,21 +4963,21 @@ }, { "commandType": "heaterShaker/closeLabwareLatch", - "key": "94bde363-df4a-467b-bd6b-d7fa6ff17124", + "key": "8b4b0719-bc42-4ed4-8ce0-a7a7cedf66ea", "params": { "moduleId": "c19dffa3-cb34-4702-bcf6-dcea786257d1:heaterShakerModuleType" } }, { "commandType": "heaterShaker/deactivateHeater", - "key": "62598859-38b6-4d90-a680-b19f9878cadf", + "key": "3b7b0570-3a7a-4e33-9bad-b059fe89c1a1", "params": { "moduleId": "c19dffa3-cb34-4702-bcf6-dcea786257d1:heaterShakerModuleType" } }, { "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "key": "30761114-6005-4449-bc9e-5f5ceb272eff", + "key": "2f7bcf2d-638d-4dcc-8024-56d5ecaf2295", "params": { "moduleId": "c19dffa3-cb34-4702-bcf6-dcea786257d1:heaterShakerModuleType", "rpm": 500 @@ -4983,28 +4985,28 @@ }, { "commandType": "heaterShaker/deactivateHeater", - "key": "79382671-fa28-4897-9cd7-ef1e2ffa4b8c", + "key": "8949fdba-7c3e-4f80-a875-196c32f509a6", "params": { "moduleId": "c19dffa3-cb34-4702-bcf6-dcea786257d1:heaterShakerModuleType" } }, { "commandType": "heaterShaker/deactivateShaker", - "key": "9ab194ad-d4b3-458b-88b8-e4f3d46cded0", + "key": "9fed3869-0f75-4283-b074-9b6d9024f265", "params": { "moduleId": "c19dffa3-cb34-4702-bcf6-dcea786257d1:heaterShakerModuleType" } }, { "commandType": "heaterShaker/openLabwareLatch", - "key": "79bb839c-d30d-481d-b2b8-3e56ec65fe43", + "key": "9d2c8737-d1e2-4536-8c62-438680f796d2", "params": { "moduleId": "c19dffa3-cb34-4702-bcf6-dcea786257d1:heaterShakerModuleType" } }, { "commandType": "moveLabware", - "key": "cb594255-8ae1-4c5f-a416-0b370799976f", + "key": "8135e5e6-0d7a-4671-948a-4820a609c7ff", "params": { "labwareId": "a793a135-06aa-4ed6-a1d3-c176c7810afa:opentrons/opentrons_24_aluminumblock_nest_1.5ml_snapcap/1", "strategy": "manualMoveWithPause", @@ -5013,14 +5015,14 @@ }, { "commandType": "temperatureModule/deactivate", - "key": "0867192a-84b8-49f9-bace-8e84b9da9055", + "key": "b71aa9a8-2433-4896-936d-ab813c8018df", "params": { "moduleId": "ef44ad7f-0fd9-46d6-8bc0-c70785644cc8:temperatureModuleType" } }, { "commandType": "moveLabware", - "key": "cd47db8e-00c2-44e3-8209-337221a02f75", + "key": "e896fc7d-b93e-4507-84bf-5af3d69ce722", "params": { "labwareId": "239ceac8-23ec-4900-810a-70aeef880273:opentrons/nest_96_wellplate_200ul_flat/2", "strategy": "manualMoveWithPause", diff --git a/protocol-designer/fixtures/protocol/8/doItAllV8.json b/protocol-designer/fixtures/protocol/8/doItAllV8.json index 7f6e678b396..fa212494e19 100644 --- a/protocol-designer/fixtures/protocol/8/doItAllV8.json +++ b/protocol-designer/fixtures/protocol/8/doItAllV8.json @@ -6,7 +6,7 @@ "author": "", "description": "", "created": 1701659107408, - "lastModified": 1713443592769, + "lastModified": 1714570438503, "category": null, "subcategory": null, "tags": [] @@ -15,10 +15,10 @@ "name": "opentrons/protocol-designer", "version": "8.1.0", "data": { - "_internalAppBuildDate": "Thu, 18 Apr 2024 12:32:56 GMT", + "_internalAppBuildDate": "Wed, 01 May 2024 13:32:34 GMT", "defaultValues": { "aspirate_mmFromBottom": 1, - "dispense_mmFromBottom": 0.5, + "dispense_mmFromBottom": 1, "touchTip_mmFromTop": -1, "blowout_mmFromTop": 0 }, @@ -27,7 +27,7 @@ "opentrons/opentrons_flex_96_tiprack_1000ul/1" ] }, - "dismissedWarnings": { "form": {}, "timeline": {} }, + "dismissedWarnings": { "form": [], "timeline": [] }, "ingredients": { "0": { "name": "h20", @@ -111,7 +111,7 @@ "d2f74144-a7bf-4ba2-aaab-30d70b2b62c7": { "pipette": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": "100", - "tipRack": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", + "tipRack": "opentrons/opentrons_flex_96_tiprack_1000ul/1", "changeTip": "always", "path": "single", "aspirate_wells_grouped": false, @@ -159,6 +159,7 @@ "aspirate_x_position": 0, "aspirate_y_position": 0, "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "d2f74144-a7bf-4ba2-aaab-30d70b2b62c7", "stepType": "moveLiquid", "stepName": "transfer", @@ -3426,7 +3427,7 @@ "commandSchemaId": "opentronsCommandSchemaV8", "commands": [ { - "key": "40f32b29-7920-4902-8dce-c45a822b9607", + "key": "a1b95079-5b17-428d-b40c-a8236a9890c5", "commandType": "loadPipette", "params": { "pipetteName": "p1000_single_flex", @@ -3435,7 +3436,7 @@ } }, { - "key": "356c37ae-a4b4-4557-b865-79361f86be1e", + "key": "6f1e3ad3-8f03-4583-8031-be6be2fcd903", "commandType": "loadModule", "params": { "model": "heaterShakerModuleV1", @@ -3444,7 +3445,7 @@ } }, { - "key": "79c058f0-8637-455f-88d2-38c29f542b69", + "key": "4997a543-7788-434f-8eae-1c4aa3a2a805", "commandType": "loadModule", "params": { "model": "thermocyclerModuleV2", @@ -3453,7 +3454,7 @@ } }, { - "key": "5a3a1223-c085-4e04-9e07-1984a6c15f1b", + "key": "8bfb6d48-4d08-4ea0-8ce7-f8efe90e202c", "commandType": "loadLabware", "params": { "displayName": "Opentrons 96 PCR Heater-Shaker Adapter", @@ -3467,7 +3468,7 @@ } }, { - "key": "01049981-be49-4bc2-9df2-5a6610e1de60", + "key": "988395e3-9b85-4bb0-89a4-3afc1d7330fd", "commandType": "loadLabware", "params": { "displayName": "Opentrons Flex 96 Tip Rack 1000 µL", @@ -3479,7 +3480,7 @@ } }, { - "key": "a32901d5-39f8-427a-a8e1-48e314ae654a", + "key": "0d60425e-5a6f-4205-ac59-d38a080f2e92", "commandType": "loadLabware", "params": { "displayName": "Opentrons Tough 96 Well Plate 200 µL PCR Full Skirt", @@ -3493,7 +3494,7 @@ } }, { - "key": "17f7f181-5359-416b-9a35-040424a7a367", + "key": "eba272e9-3eed-46bb-91aa-d1aee8da58da", "commandType": "loadLabware", "params": { "displayName": "Axygen 1 Well Reservoir 90 mL", @@ -3506,7 +3507,7 @@ }, { "commandType": "loadLiquid", - "key": "1dac398a-24dc-497a-8165-e8c601130c59", + "key": "45d432f8-581b-4272-9813-e73b9168a0ad", "params": { "liquidId": "1", "labwareId": "54370838-4fca-4a14-b88a-7840e4903649:opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", @@ -3524,7 +3525,7 @@ }, { "commandType": "loadLiquid", - "key": "697cdc45-2de6-4573-b758-899fb5433559", + "key": "7ec93f2a-3d22-4d30-b37a-e9f0d41a1847", "params": { "liquidId": "0", "labwareId": "8bacda22-9e05-45e8-bef4-cc04414a204f:opentrons/axygen_1_reservoir_90ml/1", @@ -3533,14 +3534,14 @@ }, { "commandType": "thermocycler/openLid", - "key": "52e4683b-1a0f-4ff6-bf5e-7426f156e29b", + "key": "ba1731c6-2906-4987-b948-ea1931ad3e64", "params": { "moduleId": "fd6da9f1-d63b-414b-929e-c646b64790e9:thermocyclerModuleType" } }, { "commandType": "moveLabware", - "key": "df2967a1-e0ce-4f8b-9d21-6127232a812f", + "key": "134cdae8-8ba1-45e4-98d7-cb931358eb01", "params": { "labwareId": "8bacda22-9e05-45e8-bef4-cc04414a204f:opentrons/axygen_1_reservoir_90ml/1", "strategy": "usingGripper", @@ -3549,7 +3550,7 @@ }, { "commandType": "pickUpTip", - "key": "ba9b0d63-e3ae-4440-a038-6aecd96ac436", + "key": "6a5f30cc-8bea-4899-b058-7bf2095efe86", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3558,7 +3559,7 @@ }, { "commandType": "aspirate", - "key": "c0d9580a-1db4-4510-bbfc-0095bff9b60a", + "key": "71fc15e9-ad19-4c77-a32f-abba4ea5e6f9", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3573,7 +3574,7 @@ }, { "commandType": "dispense", - "key": "5bcd0ac0-8a0f-444b-b15f-2f019ab0ab80", + "key": "a94a08b1-ed23-4c91-a853-27192da2aa70", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3581,14 +3582,14 @@ "wellName": "A1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "47188996-9652-4201-bf4c-623e4eb5b5f4", + "key": "9f8c952b-88e2-4a6d-b6a2-e943f9b032e0", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3597,12 +3598,12 @@ }, { "commandType": "dropTipInPlace", - "key": "6c8f7a15-e98a-4625-a923-1742758d53b8", + "key": "734f7c4e-be2c-4a45-ae26-d81fb6b58729", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "pickUpTip", - "key": "2955ab48-ca0c-4282-b836-afd41fc22314", + "key": "e3f54bb0-ef58-4e56-ad44-1dc944d2ebd8", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3611,7 +3612,7 @@ }, { "commandType": "aspirate", - "key": "e0cc1dd8-e249-4816-9f3a-70b594868ec8", + "key": "d5dee037-06a2-4f63-a5dd-08f285db802f", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3626,7 +3627,7 @@ }, { "commandType": "dispense", - "key": "cd3df764-af5c-4ca9-b10b-aea5eddef555", + "key": "db77cb48-9d63-4eb9-bac9-82c7137c7940", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3634,14 +3635,14 @@ "wellName": "B1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "31c749fd-fbbc-4afe-a9d4-ff52bb52b405", + "key": "c4a205b9-6a31-4993-a7dd-de84e3c40fab", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3650,12 +3651,12 @@ }, { "commandType": "dropTipInPlace", - "key": "923ea88b-4af9-4564-8bcd-6bd242d9ca1d", + "key": "c1a58bc4-c922-4989-8259-3a011cb6548e", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "pickUpTip", - "key": "44655fc6-6a51-45b5-ab9c-4536da6db5a6", + "key": "4660a8b7-c24f-4cbd-b5f7-0fff091af818", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3664,7 +3665,7 @@ }, { "commandType": "aspirate", - "key": "d630c56e-fcdf-4bdf-a3fd-3cb61610f58a", + "key": "9ac1cb1d-2876-4816-87bc-bcbeb3d0cc45", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3679,7 +3680,7 @@ }, { "commandType": "dispense", - "key": "e82f1cc1-5f3f-44d2-b14f-ab2e59081caa", + "key": "1e8856de-95c7-483f-bf9a-a8a08dbd51b5", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3687,14 +3688,14 @@ "wellName": "C1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "cd82948c-82d6-4edf-a775-ee091776f3ab", + "key": "df45d90b-b122-4a73-8166-7c36cb4b1739", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3703,12 +3704,12 @@ }, { "commandType": "dropTipInPlace", - "key": "2ebf1172-81c0-4971-9b3e-50e7d17ca4d2", + "key": "893249ff-853b-4294-bd2c-12da0e5cb8af", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "pickUpTip", - "key": "3d6d1437-5919-4d0e-aa3e-df63df6528b0", + "key": "2e4913f4-1f2e-4039-964b-ca6f8905e551", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3717,7 +3718,7 @@ }, { "commandType": "aspirate", - "key": "80285a48-65ae-4eae-a5bd-f24d9bd60ce8", + "key": "bd2ac396-b44d-41a8-b050-ff8ab4a25575", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3732,7 +3733,7 @@ }, { "commandType": "dispense", - "key": "9cb9f1e9-a51a-4dd1-84c3-cb028937e9c2", + "key": "df68ab20-61c0-4077-bf0e-b1ef2997251a", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3740,14 +3741,14 @@ "wellName": "D1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "158a777d-091a-43d3-a37e-e3afd41f5227", + "key": "4b7f1a58-2bf5-45e8-a312-e165130f208c", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3756,12 +3757,12 @@ }, { "commandType": "dropTipInPlace", - "key": "290cdc32-1458-4c68-895a-8940881aa76f", + "key": "2fc06e3a-f20d-47b9-ac7f-0a062b45beeb", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "pickUpTip", - "key": "5597bb4a-7a24-455e-9970-b3cae41cf26e", + "key": "9b4955da-0d09-40da-83b2-6c398dcf5e6e", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3770,7 +3771,7 @@ }, { "commandType": "aspirate", - "key": "004d4dc5-9898-4585-8e14-c6191be0ea36", + "key": "05a4a082-6381-4107-bb26-0e64351d3263", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3785,7 +3786,7 @@ }, { "commandType": "dispense", - "key": "0412d0ae-18de-439e-bcc5-3e7b511fc425", + "key": "a494e205-1cf5-4718-b5f0-43fe74c962bc", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3793,14 +3794,14 @@ "wellName": "E1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "f45fa8af-a371-4ff8-a887-51b1f7e6e6eb", + "key": "e4cf4c42-d1c3-40e7-9848-3e02e01250a8", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3809,12 +3810,12 @@ }, { "commandType": "dropTipInPlace", - "key": "3b0b8782-22fc-4b47-970f-8f614c824e7b", + "key": "397d6c15-97ae-4ab5-a2dc-e0fe75562d17", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "pickUpTip", - "key": "b3e52771-08e8-4e26-89ad-7e05bc78f7a0", + "key": "86178307-33f6-4902-9207-51fc704d579c", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3823,7 +3824,7 @@ }, { "commandType": "aspirate", - "key": "91a103c5-218d-4ff1-ba08-e64abfd4a6dc", + "key": "f2964ad3-9dac-4566-b636-afb59de61116", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3838,7 +3839,7 @@ }, { "commandType": "dispense", - "key": "ead8edb2-de34-44d8-93ee-e6c5f8f3a79b", + "key": "68c9104b-3796-4ca1-9bc5-22afec8024d9", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3846,14 +3847,14 @@ "wellName": "F1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "6fac362d-9b2f-4ee3-809b-6acdd5c97429", + "key": "9a10a801-1aaa-4238-89a9-c256f09deea0", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3862,12 +3863,12 @@ }, { "commandType": "dropTipInPlace", - "key": "78c79e71-f751-4435-95c0-e32e4d603d16", + "key": "73d1b9c9-4c1f-40a2-8932-7f0110da78dc", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "pickUpTip", - "key": "5751ccf4-4d6b-4330-8333-0b4638512921", + "key": "5818e249-0b61-4f76-af80-c835a4ad0033", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3876,7 +3877,7 @@ }, { "commandType": "aspirate", - "key": "01253366-2da9-40df-abd1-c836dd13f8ef", + "key": "38df8344-789d-4490-bd8a-cbe9121b2692", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3891,7 +3892,7 @@ }, { "commandType": "dispense", - "key": "85471a92-721f-4a5b-a7ed-8c48e30515d9", + "key": "13593038-b554-447e-9963-0f3666ccd11a", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3899,14 +3900,14 @@ "wellName": "G1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "ec1821ce-f6f7-4088-8cea-55b5c1388e00", + "key": "361985e0-7e23-4651-b0ed-5277cb5f1bec", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3915,12 +3916,12 @@ }, { "commandType": "dropTipInPlace", - "key": "e52e528a-e7e4-4bea-a506-be1d4919b08a", + "key": "0d1c0aa2-d5f6-45d9-9341-bc623c07f366", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "pickUpTip", - "key": "06200920-ed5b-4b04-8891-64797633ff60", + "key": "ef384b08-03fd-4ec1-8ea9-f7741ac9050e", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", @@ -3929,7 +3930,7 @@ }, { "commandType": "aspirate", - "key": "989a4e77-f23d-4644-926e-6bf14dcd4830", + "key": "29bcc74a-cbba-4d19-9150-889378a34530", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3944,7 +3945,7 @@ }, { "commandType": "dispense", - "key": "b134f05e-ebc3-4afd-b82c-1593c713a095", + "key": "e1f51c21-1522-4538-af60-b97dc37d7b9a", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "volume": 100, @@ -3952,14 +3953,14 @@ "wellName": "H1", "wellLocation": { "origin": "bottom", - "offset": { "z": 0.5, "x": 0, "y": 0 } + "offset": { "z": 1, "x": 0, "y": 0 } }, "flowRate": 716 } }, { "commandType": "moveToAddressableArea", - "key": "893eabc9-96b2-44d6-966f-15c4b0945de0", + "key": "93516cec-406e-41e8-8c4c-9b2b145509f7", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc", "addressableAreaName": "1ChannelWasteChute", @@ -3968,19 +3969,19 @@ }, { "commandType": "dropTipInPlace", - "key": "29f2661e-ad07-4bc6-a148-8f7b8570d0e4", + "key": "d9a0a1d2-f813-488e-a28a-daae69cbc072", "params": { "pipetteId": "9fcd50d9-92b2-45ac-acf1-e2cf773feffc" } }, { "commandType": "thermocycler/closeLid", - "key": "7001c990-372b-448a-92c3-d5c88824788f", + "key": "6c34d1f1-bfeb-46d9-9669-c9b71732b6ab", "params": { "moduleId": "fd6da9f1-d63b-414b-929e-c646b64790e9:thermocyclerModuleType" } }, { "commandType": "thermocycler/setTargetBlockTemperature", - "key": "529ec9ae-b2c9-48b2-9cc0-dbc8acfdecac", + "key": "5ec65b6a-2b1c-4f8c-961f-c6e0ee700b49", "params": { "moduleId": "fd6da9f1-d63b-414b-929e-c646b64790e9:thermocyclerModuleType", "celsius": 40 @@ -3988,47 +3989,47 @@ }, { "commandType": "thermocycler/waitForBlockTemperature", - "key": "4c8d1f54-9af8-45fb-8559-86b7e617f2b8", + "key": "9f90e933-131f-44eb-ab12-efb152c9cb83", "params": { "moduleId": "fd6da9f1-d63b-414b-929e-c646b64790e9:thermocyclerModuleType" } }, { "commandType": "waitForDuration", - "key": "53066ac3-308e-4260-8cc2-d0e1d5f366f3", + "key": "f580c50f-08bb-42c4-b4a2-2764ed2fc090", "params": { "seconds": 60, "message": "" } }, { "commandType": "thermocycler/openLid", - "key": "76bf61d3-6a46-45db-acf6-52c4ca845bf9", + "key": "f739bfc8-f438-4fa2-8d57-dc839ac29f24", "params": { "moduleId": "fd6da9f1-d63b-414b-929e-c646b64790e9:thermocyclerModuleType" } }, { "commandType": "thermocycler/deactivateBlock", - "key": "0bbee337-af9e-43da-aef9-f28b075bbfd2", + "key": "4561d98c-b565-48db-a7af-6bcd31520340", "params": { "moduleId": "fd6da9f1-d63b-414b-929e-c646b64790e9:thermocyclerModuleType" } }, { "commandType": "heaterShaker/deactivateHeater", - "key": "a650851d-fc87-43e2-90ae-91613d662ce0", + "key": "79dd17bf-f86a-4fe9-990a-e4e567798c87", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "heaterShaker/openLabwareLatch", - "key": "2b82eec2-4419-4b5d-b25c-57a37d407033", + "key": "995a2630-7a9c-4b70-aef8-ddccb7ce26ce", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "moveLabware", - "key": "07a2f986-11e4-4316-b139-50bda41c7fed", + "key": "9d1035a4-617f-4fcc-a7a3-1b7a8c52b4c6", "params": { "labwareId": "54370838-4fca-4a14-b88a-7840e4903649:opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", "strategy": "usingGripper", @@ -4039,21 +4040,21 @@ }, { "commandType": "heaterShaker/closeLabwareLatch", - "key": "3ab6549d-25a0-4ba5-b8d8-748560cbf3b9", + "key": "a244eacc-4cbc-48af-b54a-6c08cd534a51", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "heaterShaker/deactivateHeater", - "key": "468a12a1-4f36-40e5-a799-3d23b3888f01", + "key": "a6970f26-4800-4949-8592-d977df547d8b", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "heaterShaker/setAndWaitForShakeSpeed", - "key": "d3593c08-0f8d-4424-99a5-bcdeed25a335", + "key": "ef808dac-1e14-47a1-843d-ce4ce63bdfce", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType", "rpm": 200 @@ -4061,40 +4062,40 @@ }, { "commandType": "waitForDuration", - "key": "e5e5d847-700b-4777-bca2-d58a2b970dd8", + "key": "5b47f11e-0755-47d2-b844-f1363e28a54e", "params": { "seconds": 60 } }, { "commandType": "heaterShaker/deactivateShaker", - "key": "f5dad8a0-f55f-4bcb-9283-2c53a4bb766a", + "key": "614ec8d0-8abf-4aa4-b771-23ff2bde2881", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "heaterShaker/deactivateHeater", - "key": "9053dc6d-b840-4e37-9a99-b0dd48dcebe6", + "key": "dbbe307e-d361-4cb9-afe7-afeab944bfce", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "heaterShaker/deactivateHeater", - "key": "d2e3759b-d4eb-4581-ab71-383a2c9fcb9b", + "key": "62f98610-cbff-4acb-ba36-a3fbb9527ba9", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "heaterShaker/openLabwareLatch", - "key": "769b1ef1-c018-40df-b20c-96b9d1a6f966", + "key": "81cfeab1-175f-4501-8732-1ea1bc9b528b", "params": { "moduleId": "23347241-80bb-4a7e-9c91-5d9727a9e483:heaterShakerModuleType" } }, { "commandType": "moveLabware", - "key": "80578ae1-16b6-47d1-b6a0-c8bb30e00ce1", + "key": "279df4d0-2c87-4f01-b016-5c42d5edce96", "params": { "labwareId": "54370838-4fca-4a14-b88a-7840e4903649:opentrons/opentrons_96_wellplate_200ul_pcr_full_skirt/2", "strategy": "usingGripper", @@ -4103,7 +4104,7 @@ }, { "commandType": "moveLabware", - "key": "a26e3b9c-79d4-4bea-895f-48d95bea70fc", + "key": "f88f41dc-ddf9-4242-9ba4-21bd728ca25f", "params": { "labwareId": "f2d371ea-5146-4c89-8200-9c056a7f321a:opentrons/opentrons_flex_96_tiprack_1000ul/1", "strategy": "usingGripper", diff --git a/protocol-designer/fixtures/protocol/8/example_1_1_0MigratedToV8.json b/protocol-designer/fixtures/protocol/8/example_1_1_0MigratedToV8.json index 56b9885aea9..369e5e7b464 100644 --- a/protocol-designer/fixtures/protocol/8/example_1_1_0MigratedToV8.json +++ b/protocol-designer/fixtures/protocol/8/example_1_1_0MigratedToV8.json @@ -6,7 +6,7 @@ "author": "Author name", "description": "Description here", "created": 1560957631666, - "lastModified": 1711902162091, + "lastModified": 1714570455185, "category": null, "subcategory": null, "tags": [] @@ -15,10 +15,10 @@ "name": "opentrons/protocol-designer", "version": "8.1.0", "data": { - "_internalAppBuildDate": "Sun, 31 Mar 2024 16:22:18 GMT", + "_internalAppBuildDate": "Wed, 01 May 2024 13:32:34 GMT", "defaultValues": { "aspirate_mmFromBottom": 1, - "dispense_mmFromBottom": 0.5, + "dispense_mmFromBottom": 1, "touchTip_mmFromTop": -1, "blowout_mmFromTop": 0 }, @@ -30,7 +30,7 @@ "opentrons/tipone_96_tiprack_200ul/1" ] }, - "dismissedWarnings": { "form": {}, "timeline": {} }, + "dismissedWarnings": { "form": [], "timeline": [] }, "ingredients": { "0": { "name": "samples", @@ -75,7 +75,7 @@ "e7d36200-92a5-11e9-ac62-1b173f839d9e": { "pipette": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": "6", - "tipRack": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", + "tipRack": "opentrons/opentrons_96_tiprack_10ul/1", "changeTip": "always", "path": "single", "aspirate_wells_grouped": false, @@ -114,7 +114,6 @@ "disposalVolume_checkbox": true, "disposalVolume_volume": "1", "blowout_checkbox": true, - "blowout_z_offset": 0, "blowout_location": "9b1c0d01-9d4f-4016-afe6-9e08b46acf5e:trashBin", "preWetTip": false, "aspirate_airGap_checkbox": false, @@ -133,6 +132,8 @@ "dispense_y_position": 0, "aspirate_x_position": 0, "aspirate_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": 1000, "id": "e7d36200-92a5-11e9-ac62-1b173f839d9e", "stepType": "moveLiquid", "stepName": "transfer things", @@ -144,7 +145,6 @@ "labware": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", "mix_wellOrder_first": "t2b", "mix_wellOrder_second": "l2r", - "blowout_z_offset": 0, "blowout_checkbox": true, "blowout_location": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", "mix_mmFromBottom": 0.5, @@ -161,9 +161,11 @@ "mix_touchTip_mmFromBottom": 30.5, "dropTip_location": "9b1c0d01-9d4f-4016-afe6-9e08b46acf5e:trashBin", "nozzles": null, - "tipRack": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", + "tipRack": "opentrons/opentrons_96_tiprack_10ul/1", "mix_x_position": 0, "mix_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": 1000, "id": "18113c80-92a6-11e9-ac62-1b173f839d9e", "stepType": "mix", "stepName": "mix", @@ -3344,7 +3346,7 @@ "commandSchemaId": "opentronsCommandSchemaV8", "commands": [ { - "key": "818878e2-9a2b-498e-be2d-1d317f6f7af8", + "key": "f6753216-417b-49fa-88cc-e359adae26f6", "commandType": "loadPipette", "params": { "pipetteName": "p10_single", @@ -3353,7 +3355,7 @@ } }, { - "key": "1ae8e180-58c4-4970-b372-9a8f1869f297", + "key": "aeec3001-087f-4074-b098-9dfdb465e008", "commandType": "loadPipette", "params": { "pipetteName": "p50_single", @@ -3362,7 +3364,7 @@ } }, { - "key": "ce9f8375-8577-4062-a9ff-12bc33d3bec5", + "key": "c540d35e-88e1-49da-aa90-5f9cbcd9068f", "commandType": "loadLabware", "params": { "displayName": "tiprack 10ul (1)", @@ -3374,7 +3376,7 @@ } }, { - "key": "8f2f7622-476b-40ff-b692-768a69158aa2", + "key": "827e73cf-2870-43d6-aa0b-5ac87d8996c4", "commandType": "loadLabware", "params": { "displayName": "tiprack 200ul (1)", @@ -3386,7 +3388,7 @@ } }, { - "key": "6802ec5e-204e-4a63-87a9-c6066788e537", + "key": "c519abb5-64ae-4068-bcb7-198e29e865e0", "commandType": "loadLabware", "params": { "displayName": "96 deep well (1)", @@ -3399,7 +3401,7 @@ }, { "commandType": "loadLiquid", - "key": "c63af547-a330-4e04-96ea-f04ef3c93ca1", + "key": "ae991255-3f64-47be-a541-cbe63e0ef907", "params": { "liquidId": "1", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -3408,7 +3410,7 @@ }, { "commandType": "loadLiquid", - "key": "d1af9a18-bb2f-4929-b952-7b1e21eadac8", + "key": "1b2418da-a26d-4cb3-9578-17782cf79f1b", "params": { "liquidId": "0", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -3423,7 +3425,7 @@ }, { "commandType": "pickUpTip", - "key": "24f9ab3b-48fd-42cb-8e0d-2128427459fe", + "key": "3e69c4c9-2255-4043-b548-1b9c410360aa", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -3432,7 +3434,7 @@ }, { "commandType": "aspirate", - "key": "426ca672-56a0-430d-bdba-23632ad728b0", + "key": "9ce167a0-b022-45cf-bc14-d3ec56381d9d", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3447,7 +3449,7 @@ }, { "commandType": "dispense", - "key": "ea2eab58-723d-462e-ae8b-d0daa9462ece", + "key": "85330ac5-e850-47d3-8089-b38866d4a2d0", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3462,7 +3464,7 @@ }, { "commandType": "aspirate", - "key": "fa061fa1-e5d5-42cf-b9dd-d4b9a6b6eabe", + "key": "1db1dfc0-62db-4d89-9de5-3d2fa230ff07", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3477,7 +3479,7 @@ }, { "commandType": "dispense", - "key": "1e21ebe5-4e6f-4bc5-8dc3-1f1aa9158ff5", + "key": "1a39e7f0-8a76-4936-ac5d-114f8c10ae91", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3492,7 +3494,7 @@ }, { "commandType": "aspirate", - "key": "7ad7bdad-84eb-42a0-b4ac-48949808a041", + "key": "496b2ad5-b4da-4259-be84-8b441d0a4b60", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3507,7 +3509,7 @@ }, { "commandType": "dispense", - "key": "dd723bb6-9eba-4ab6-bc80-03f6f6db17df", + "key": "93ab5d06-a448-45b3-a276-272edfd91873", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3522,7 +3524,7 @@ }, { "commandType": "aspirate", - "key": "eddfcde7-5497-42e7-bff4-56d2052bc552", + "key": "3d0984ed-5b02-4d38-912e-10c031b55ee0", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -3537,7 +3539,7 @@ }, { "commandType": "touchTip", - "key": "e3e8b3d6-a118-43de-9155-7d1a1da67dbd", + "key": "4d66aa3a-446e-400f-a24a-ac34accfbc3b", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -3547,7 +3549,7 @@ }, { "commandType": "dispense", - "key": "080a9a26-92ba-48ba-84ed-0a10743b7918", + "key": "d6f1e7d9-d050-46e0-9403-d7ab6ac26ffb", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -3562,7 +3564,7 @@ }, { "commandType": "aspirate", - "key": "ac6f0caf-5fe8-4d45-9659-1265fd022295", + "key": "10b51ab7-5889-447a-a992-b74734023f81", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3577,7 +3579,7 @@ }, { "commandType": "dispense", - "key": "b9e03bec-0741-4dc9-b953-cadd7e7c40b6", + "key": "caa702df-9c41-421a-8c98-76d9d7f95889", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3592,7 +3594,7 @@ }, { "commandType": "aspirate", - "key": "017fd13a-0e3a-4f54-94c3-8d5fc8eb4ba4", + "key": "cb96c8d0-5f14-484b-80fc-60753c2c6b14", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3607,7 +3609,7 @@ }, { "commandType": "dispense", - "key": "7961e88d-1b9b-4615-bcbd-31320a03f81c", + "key": "a7ddff78-c39b-4fb0-9db6-cdadea58a4e2", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3622,7 +3624,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "4d60aa9f-e59b-491a-b494-aef4b877f6fa", + "key": "80b7c947-e20f-4331-9b87-2c7bebebfa07", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -3631,7 +3633,7 @@ }, { "commandType": "blowOutInPlace", - "key": "8bf8312b-7058-430e-8344-84ed35dda280", + "key": "e26b883d-9bb2-49e2-9a26-62626eb04e04", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -3639,7 +3641,7 @@ }, { "commandType": "touchTip", - "key": "728468cd-08a9-4811-b5a8-ce0649835d29", + "key": "87a0b1e4-f375-4dee-9597-87f8f15b8c25", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -3649,7 +3651,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "1b5e20e3-85d5-4d87-89f9-7d9568696f6d", + "key": "268d8310-7f0a-4545-a8ed-ef2fb22a3085", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -3659,12 +3661,12 @@ }, { "commandType": "dropTipInPlace", - "key": "3f520a13-6e4f-4ade-bbf8-2fdd35b875c3", + "key": "abbc727f-81d6-4b5d-8a52-cd8f966e8fbf", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "4b8db7a7-609e-431a-bf9d-7cf858c4b8f7", + "key": "292c5f17-65f9-4af7-88fd-33c012df2059", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -3673,7 +3675,7 @@ }, { "commandType": "aspirate", - "key": "0355948e-57ca-4572-baa5-7a64b7ef28cc", + "key": "1bb202e6-007b-4631-8aa0-5f5211c263fc", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3688,7 +3690,7 @@ }, { "commandType": "dispense", - "key": "193a745f-0698-4427-8d0d-d1e4fe24de24", + "key": "cdf0ab85-fdd3-41ab-89f7-5c7b696c48dd", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3703,7 +3705,7 @@ }, { "commandType": "aspirate", - "key": "8d205199-aa0a-4640-9a23-b3adcca61be2", + "key": "b8d9161d-0835-44b3-8223-73fa752a5a5a", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3718,7 +3720,7 @@ }, { "commandType": "dispense", - "key": "fe86a1bb-8c8e-4307-b06e-c92a8e231679", + "key": "33c2f20d-6d68-4b63-a812-7f40735bbaaa", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3733,7 +3735,7 @@ }, { "commandType": "aspirate", - "key": "1976e9d0-ee3f-4ca0-a039-147dd8c21399", + "key": "95d4ac3a-8094-46fc-9c30-275f37701e3f", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3748,7 +3750,7 @@ }, { "commandType": "dispense", - "key": "b75876f5-cbf6-43ae-8bb5-1b71641ccc6a", + "key": "cef01434-9fa2-48dd-8139-755a0d5f5568", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3763,7 +3765,7 @@ }, { "commandType": "aspirate", - "key": "c6ff48bc-a06c-4e5b-9172-986375d8a934", + "key": "67786140-5e0b-4290-a448-925cec83c85c", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -3778,7 +3780,7 @@ }, { "commandType": "touchTip", - "key": "7a15666d-4676-41b5-8752-26cc8a07f17e", + "key": "4f6e1cc6-67be-49ab-814d-d7534a0da726", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -3788,7 +3790,7 @@ }, { "commandType": "dispense", - "key": "ec56b383-c163-402e-9996-d4cc69a1cffd", + "key": "7b33de85-68cb-4888-8023-8be805f5a77a", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -3803,7 +3805,7 @@ }, { "commandType": "aspirate", - "key": "cabfdd05-1309-43e2-bfbd-d04bc7de85c9", + "key": "13c080bb-8e30-41c9-a237-e2591f09ee3c", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3818,7 +3820,7 @@ }, { "commandType": "dispense", - "key": "05cb631d-9092-46e9-b802-6175fbae1e1f", + "key": "61c081de-e44b-4583-b963-89be8985723f", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3833,7 +3835,7 @@ }, { "commandType": "aspirate", - "key": "ea50ada1-23d9-4ecf-af9d-3246930afd26", + "key": "63421ac3-10f1-4472-b813-2cce280b2ddc", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3848,7 +3850,7 @@ }, { "commandType": "dispense", - "key": "2523b9ed-ef76-40c9-8947-18c039e50939", + "key": "56253d18-7874-44ab-83a5-bb39c3c306e8", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -3863,7 +3865,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "58c4751a-5628-4596-a171-1ac260259c28", + "key": "f7030e97-02d3-46c0-9275-d53932064855", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -3872,7 +3874,7 @@ }, { "commandType": "blowOutInPlace", - "key": "ba5016a9-cd7a-41c8-bf17-aadb64664190", + "key": "1a5179e1-6ec6-4028-9b13-32bae277e68e", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -3880,7 +3882,7 @@ }, { "commandType": "touchTip", - "key": "1314e2d9-8d46-4663-9bf3-458a300b0add", + "key": "aa2fa938-b38e-4d92-a4c5-0123131b29a7", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -3890,7 +3892,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "8527d992-4185-4f20-99a9-864541aaa7b6", + "key": "c90e2918-1615-4d2a-b7a0-daaa013e2a42", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -3900,12 +3902,12 @@ }, { "commandType": "dropTipInPlace", - "key": "8c564bbd-34dd-44d2-ace8-995097f571b9", + "key": "220b1148-9a8f-4826-b515-6a2e87419f4c", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "5377f188-8a31-4ff3-8ed3-ff5b651e467b", + "key": "001b95fd-fd21-425a-8846-432768900785", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -3914,7 +3916,7 @@ }, { "commandType": "aspirate", - "key": "70c291fd-f5c9-4216-9446-de8191fff376", + "key": "a1e24a66-7c37-40d8-8415-9ae9ce1107b5", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3929,7 +3931,7 @@ }, { "commandType": "dispense", - "key": "7f1299ec-8930-457d-a2d9-c18876da3769", + "key": "42b2126b-b283-469f-b3f9-dfa2b78c5958", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3944,7 +3946,7 @@ }, { "commandType": "aspirate", - "key": "d04dee6f-90a4-4b4b-89b8-05f1104431fd", + "key": "b73d2141-34cd-4cd0-828a-6640f6f75ded", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3959,7 +3961,7 @@ }, { "commandType": "dispense", - "key": "c983ed9b-783b-411a-8df2-50ef254b4deb", + "key": "ad64a163-5293-4b98-89df-28766993bf09", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3974,7 +3976,7 @@ }, { "commandType": "aspirate", - "key": "678dc318-94d9-488b-b2e3-f04ed29a2863", + "key": "b514ff83-cd73-41ee-8d08-9862e6989924", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -3989,7 +3991,7 @@ }, { "commandType": "dispense", - "key": "6aee8385-14b4-48fa-bef0-3a642d38c1cd", + "key": "0d5bba7e-ac6a-48a6-82f0-cb46cdc0d5cd", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4004,7 +4006,7 @@ }, { "commandType": "aspirate", - "key": "c9e9500e-5c89-450c-a56e-7058720a74ce", + "key": "c20937ce-e7d3-4f45-9e71-80d6c8439a08", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4019,7 +4021,7 @@ }, { "commandType": "touchTip", - "key": "eeabdbf7-0dda-4246-859f-de8b643184c0", + "key": "ee7d026d-e7fa-4027-8ba8-8ac575ea7ead", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4029,7 +4031,7 @@ }, { "commandType": "dispense", - "key": "60f965e4-60af-4183-99de-15c77232416d", + "key": "fe445e71-616e-42a1-ac92-3b2dd37ac7f1", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4044,7 +4046,7 @@ }, { "commandType": "aspirate", - "key": "7a40b467-9754-4c02-ae2e-4644cb997555", + "key": "4ebe6cc3-442a-4a2c-80ba-9dee24865d15", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4059,7 +4061,7 @@ }, { "commandType": "dispense", - "key": "a24675b2-41c7-4908-97ce-6bcf04c3d149", + "key": "092fcbe7-cd36-4077-8ab4-7e7b3ee5e2d2", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4074,7 +4076,7 @@ }, { "commandType": "aspirate", - "key": "71a467a6-4c67-46e1-b829-f9a02fb6669e", + "key": "27d6abf5-7f62-441c-aab3-fb0d0d68bf3a", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4089,7 +4091,7 @@ }, { "commandType": "dispense", - "key": "b58fb6c6-17f0-44cf-add2-5ad3a99a06fe", + "key": "3acb966b-898d-43bb-a212-f23a9351fb00", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4104,7 +4106,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "b97a7e69-13c0-444b-9405-c84d8ab431bf", + "key": "10f4ee73-f68b-45c9-a2cb-e4826433e952", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4113,7 +4115,7 @@ }, { "commandType": "blowOutInPlace", - "key": "7e767220-28ab-4b59-ae54-1df3a59ac491", + "key": "5d40f966-01f9-441e-b16f-05782f0a6921", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -4121,7 +4123,7 @@ }, { "commandType": "touchTip", - "key": "a4329dfb-0547-498b-a132-5314bdc37453", + "key": "e79182b7-eb3d-4421-b6a5-73e3f7e9df54", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4131,7 +4133,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "222528ae-afc3-459f-bd12-291fb6e92977", + "key": "11dd25c1-64f6-47b3-ba17-1f8d4c85b30f", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4141,12 +4143,12 @@ }, { "commandType": "dropTipInPlace", - "key": "a2b1c413-6b6d-4db7-b39f-36e801bb67bf", + "key": "c2d99c79-fa4b-448b-ab79-c5ea22d3b5db", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "ee7cca8e-9d5a-4308-b437-91b3ac59e95c", + "key": "70a9d1cf-db05-4510-9219-d0e18e0ceab6", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -4155,7 +4157,7 @@ }, { "commandType": "aspirate", - "key": "9c65eb65-086b-4535-8dd4-fcdc3b1ce711", + "key": "88a00826-d936-495b-81a0-08b2db4b0cbd", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4170,7 +4172,7 @@ }, { "commandType": "dispense", - "key": "de99e84e-c816-42d7-bbaf-c685cf196c84", + "key": "e62b965a-6150-4857-81a4-83808731bb63", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4185,7 +4187,7 @@ }, { "commandType": "aspirate", - "key": "2bb3b611-e413-4866-9f88-2093be26c559", + "key": "dfd3261d-d508-45db-bc07-4b66aab7f4ee", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4200,7 +4202,7 @@ }, { "commandType": "dispense", - "key": "51c61ed1-215a-4304-b0bc-f7c0787d9759", + "key": "fd6702e4-1dc4-42b3-a479-ccd252df34b7", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4215,7 +4217,7 @@ }, { "commandType": "aspirate", - "key": "a5cb7070-9db9-4d93-94a0-baafdb9e1246", + "key": "4a5703bb-d4fd-431f-9c3c-928fd654d667", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4230,7 +4232,7 @@ }, { "commandType": "dispense", - "key": "b4812aa0-2c04-4f9f-a060-dcddb31655eb", + "key": "cd9e2d71-2f8d-4a3e-beb5-664df5b40ed4", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4245,7 +4247,7 @@ }, { "commandType": "aspirate", - "key": "09657153-451a-4ce8-a0aa-d238e97b5d4a", + "key": "f43a5ddf-41e8-4763-a897-5463be83a450", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4260,7 +4262,7 @@ }, { "commandType": "touchTip", - "key": "1ba61ffa-26f7-4258-806e-459483f8aee2", + "key": "9a38f25f-8e70-4e48-906f-5ad8549f97a9", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4270,7 +4272,7 @@ }, { "commandType": "dispense", - "key": "3e54188d-9608-4976-b2a8-0262bc6cd9a8", + "key": "356a5ed5-4055-434b-925e-dc9d74b86916", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4285,7 +4287,7 @@ }, { "commandType": "aspirate", - "key": "12abbaa6-4354-4635-86c7-53da228b89e9", + "key": "83147cc6-40bd-4d31-8d7c-cebc82587da2", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4300,7 +4302,7 @@ }, { "commandType": "dispense", - "key": "75989dac-fb90-46e0-8510-05946f0bb820", + "key": "e48e7e86-5bcf-411f-85aa-fd880047317d", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4315,7 +4317,7 @@ }, { "commandType": "aspirate", - "key": "970cd398-3ad1-46ee-a917-9781c74964c8", + "key": "3ed7361d-167a-4624-90e7-be018382c29d", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4330,7 +4332,7 @@ }, { "commandType": "dispense", - "key": "224042a5-8347-4867-b30c-ea349eee0eb0", + "key": "edcad86c-128a-4b11-b3f6-c00af215f751", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4345,7 +4347,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "5bca8d87-fae2-4082-92f1-5da5e9b0b01a", + "key": "f524c6b9-a2c8-4e20-8088-ebc799e37701", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4354,7 +4356,7 @@ }, { "commandType": "blowOutInPlace", - "key": "6a40c11f-2894-4c0d-ae8c-3069aa7a3ac6", + "key": "017496c5-bfda-45b4-a70d-cae13a05406f", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -4362,7 +4364,7 @@ }, { "commandType": "touchTip", - "key": "9667d8ab-87f8-4af8-a61c-39fa46e15928", + "key": "88956734-eece-42e3-a7d8-8d759f9de247", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4372,7 +4374,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "54efaffe-8b67-45b0-8a1b-34eb9929230b", + "key": "c5550d27-fdd6-43c9-a876-aa3e50489707", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4382,12 +4384,12 @@ }, { "commandType": "dropTipInPlace", - "key": "4732e9c8-8b22-447d-9e8a-04360782f50c", + "key": "9eaf32a8-bdec-434e-a644-22f6bba08a6b", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "55fbea4b-e8d2-4cc9-84f1-e531eedc46c8", + "key": "ecb5d2d9-7e63-43b0-b8b9-5464c9478ed0", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -4396,7 +4398,7 @@ }, { "commandType": "aspirate", - "key": "d735d944-73ff-4713-ac51-c1341e5cc1a9", + "key": "09671823-b2bf-4803-8b7f-d21f37e064bb", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4411,7 +4413,7 @@ }, { "commandType": "dispense", - "key": "33e8c95b-801c-42c3-9048-fa14b6aa7f29", + "key": "05adf9ce-7912-44ec-8639-248408431a8d", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4426,7 +4428,7 @@ }, { "commandType": "aspirate", - "key": "b25b278a-8b01-4bc2-a1f8-456c7bf8c526", + "key": "91630cc1-d209-4c82-ba0d-cc0a16a8b24f", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4441,7 +4443,7 @@ }, { "commandType": "dispense", - "key": "23d673c8-d769-480b-858b-43ac62636220", + "key": "94f28a06-4afd-4bde-809f-33a6ef4c4479", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4456,7 +4458,7 @@ }, { "commandType": "aspirate", - "key": "3452e515-d862-40d0-99e1-34dd0404337f", + "key": "cf37f60a-7f87-483d-ae7d-b637273a9f65", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4471,7 +4473,7 @@ }, { "commandType": "dispense", - "key": "36c73f15-d9cd-410c-8699-f19396584618", + "key": "dae3c16b-f335-4f48-8fa0-f7304d986601", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4486,7 +4488,7 @@ }, { "commandType": "aspirate", - "key": "7b78234d-4513-49cc-83e7-10b662ff8675", + "key": "91698561-8c9a-43a6-be0e-48fc7169be0c", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4501,7 +4503,7 @@ }, { "commandType": "touchTip", - "key": "b1b3ee6f-a9be-4220-8004-7296970de788", + "key": "0a0d2b0f-de56-41dd-b69b-901ff5899ac9", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4511,7 +4513,7 @@ }, { "commandType": "dispense", - "key": "f7c5a31f-1a71-478f-a145-eb5c5c567c6d", + "key": "8f9ab04c-96e7-4e9d-9a19-5075e18519a6", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4526,7 +4528,7 @@ }, { "commandType": "aspirate", - "key": "5e4a8c3c-5a80-488b-898d-d1074f2c426c", + "key": "03610238-537c-4b82-8c6d-fa101cae4631", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4541,7 +4543,7 @@ }, { "commandType": "dispense", - "key": "da0e8d29-8619-47e1-b8da-98ccaf2c56fc", + "key": "071af969-3818-4807-9fd7-26cd00945ab0", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4556,7 +4558,7 @@ }, { "commandType": "aspirate", - "key": "3fd622c1-93bc-4e5d-92cb-3dc40f38d92d", + "key": "ff423f6d-35ef-4ecd-bf8f-435776a5a3b2", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4571,7 +4573,7 @@ }, { "commandType": "dispense", - "key": "7fe8ecbf-6872-4c45-9f41-b3f5e31b8c42", + "key": "44d4dacd-8cac-4961-892e-cda32094f127", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4586,7 +4588,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "7e7f40a5-1b19-414d-b1ec-b0f632ee81eb", + "key": "53b1ccc5-7b58-4d48-b8fd-0c6ac738b4d1", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4595,7 +4597,7 @@ }, { "commandType": "blowOutInPlace", - "key": "e7d928ca-d918-43a1-973a-e56361029dcd", + "key": "c812e493-c61f-4719-a31f-ac74b2019c54", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -4603,7 +4605,7 @@ }, { "commandType": "touchTip", - "key": "1665f0f5-1778-49ed-a765-bcdcc3a9c13a", + "key": "ac2ff63c-9b28-4835-89aa-22d3c1edfca8", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4613,7 +4615,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "5f71c216-2dd4-4b3f-9958-feac1e0ba419", + "key": "8f6ec1bb-1f7f-49e7-8830-0881bd980638", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4623,12 +4625,12 @@ }, { "commandType": "dropTipInPlace", - "key": "0d98fee0-4ada-4ddd-98cc-ee4f51763615", + "key": "749b4670-f63f-4377-bae9-57e1115f6756", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "1eca1b12-6dda-4a57-84cc-48ed09a5dcc7", + "key": "38da00e9-f4aa-4e74-b377-b19d635f62a8", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -4637,7 +4639,7 @@ }, { "commandType": "aspirate", - "key": "6468842b-d755-431a-8f39-63390afc45aa", + "key": "c8dad345-cf97-45ef-95a5-13ab38df4734", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4652,7 +4654,7 @@ }, { "commandType": "dispense", - "key": "3f19926d-5262-4869-8830-7eb13951f4fe", + "key": "b6f8c5d0-1348-4eff-a0e5-e90cd5a0b34b", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4667,7 +4669,7 @@ }, { "commandType": "aspirate", - "key": "0816f07a-7ddf-41da-91a8-6c55bcf902ff", + "key": "662d7128-430c-46aa-ab97-348de5ae1b59", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4682,7 +4684,7 @@ }, { "commandType": "dispense", - "key": "6ac9d9b6-b45e-4b0a-90c5-835a680ab914", + "key": "08d301f7-b6b8-46f8-983f-3e33e5727c25", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4697,7 +4699,7 @@ }, { "commandType": "aspirate", - "key": "2c0b977d-cc77-44bb-b0a3-62339279f8d4", + "key": "24bbc121-f08f-42e4-8a4d-37a88bca03c7", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4712,7 +4714,7 @@ }, { "commandType": "dispense", - "key": "b15ab048-c8ae-491b-ba0a-ddb84af43b8a", + "key": "9d07468c-42c4-41c9-a67e-3fdeac16fa0b", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4727,7 +4729,7 @@ }, { "commandType": "aspirate", - "key": "ebb52c59-bc4d-4f3a-b1b4-10ceea23ecd4", + "key": "44cc4edd-ff47-487c-ac33-9815b9af3ae9", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4742,7 +4744,7 @@ }, { "commandType": "touchTip", - "key": "1c48b0b0-c786-4278-a95b-180d8bc8d7fb", + "key": "5f0a3727-1976-4927-852b-8fee2e8cff77", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4752,7 +4754,7 @@ }, { "commandType": "dispense", - "key": "6db1da99-4bfc-4723-a37b-db57a913a5a0", + "key": "a69b2c7d-115d-4ffe-ac02-6b65b306411e", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4767,7 +4769,7 @@ }, { "commandType": "aspirate", - "key": "b040900a-f61c-462e-9238-87746a45c0b8", + "key": "d8fc74ae-bbef-43b5-afcb-c04c86f98b71", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4782,7 +4784,7 @@ }, { "commandType": "dispense", - "key": "8e2de19c-a6b1-4af7-a614-8f692815d667", + "key": "4d83b666-8df0-47cb-8cca-5bb9532e21b0", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4797,7 +4799,7 @@ }, { "commandType": "aspirate", - "key": "a72f4e61-2874-4af0-a471-d97434970e2b", + "key": "984cc219-9237-49b9-a775-93589e5a66ae", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4812,7 +4814,7 @@ }, { "commandType": "dispense", - "key": "ff833f33-6c7e-417a-8293-f9a2c2eead8c", + "key": "a45e7f3f-64d4-4dc9-aab3-10a6d2c38660", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -4827,7 +4829,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "40d74de4-9953-43ae-b4bc-518d39005303", + "key": "e440bc8d-adbd-47c9-b0b9-2432a13f8664", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4836,7 +4838,7 @@ }, { "commandType": "blowOutInPlace", - "key": "7570e6a2-b2a3-4836-aaa0-13c90ceb08f4", + "key": "f78482cb-1663-43ca-ad28-2aa0f9c1e926", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -4844,7 +4846,7 @@ }, { "commandType": "touchTip", - "key": "5de67294-430d-4856-aa25-0177b32ef514", + "key": "f7ef1b94-cceb-4ae8-9a22-65b1a7339438", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4854,7 +4856,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "b25ac8f3-fe61-4f87-b5f2-40936132a6dd", + "key": "50ca2b65-11fe-4b52-bfc6-60efba9a6445", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -4864,12 +4866,12 @@ }, { "commandType": "dropTipInPlace", - "key": "aa3d17b8-8d52-462f-9e39-b0d2d83e5407", + "key": "1dc894fa-effa-4b0a-b1a4-50766e1a9454", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "188da1f2-486b-4dfd-b2c8-e0903544fa8d", + "key": "2c14e46f-4257-485a-abd9-a6fa88233d08", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -4878,7 +4880,7 @@ }, { "commandType": "aspirate", - "key": "df11a136-0f66-4502-ad52-443adc71ca2b", + "key": "a75ee83e-f86a-4ba7-8982-1e67573eebc5", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4893,7 +4895,7 @@ }, { "commandType": "dispense", - "key": "00502ab3-b649-4532-ba39-184ff41b00cb", + "key": "93d11701-ab94-4693-bd67-2c9a5b8ca905", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4908,7 +4910,7 @@ }, { "commandType": "aspirate", - "key": "cdc0749e-e66b-480e-afe0-3ad6c5e739e4", + "key": "618e28e9-06d3-40ed-af8c-beebf2b230ed", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4923,7 +4925,7 @@ }, { "commandType": "dispense", - "key": "65529980-e475-4f51-a8dc-cd1f7e5a5020", + "key": "8096ab04-2d76-4c5c-ba8c-c3eb0791ac16", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4938,7 +4940,7 @@ }, { "commandType": "aspirate", - "key": "d9e94497-0439-4675-bb57-cc2e62ea7a84", + "key": "d7f16642-48b2-44e8-990c-d152f2e3effd", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4953,7 +4955,7 @@ }, { "commandType": "dispense", - "key": "27bd35c9-4ef4-471f-954b-289db56992ad", + "key": "20c1fb9e-82ff-4329-8e06-bbf3b69312f5", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -4968,7 +4970,7 @@ }, { "commandType": "aspirate", - "key": "9241c560-e1d0-4468-ac78-10c9511d0113", + "key": "a7904076-7aa5-4af0-9b33-0b782e4c574b", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -4983,7 +4985,7 @@ }, { "commandType": "touchTip", - "key": "67e511d9-8198-4c0d-808e-c9600f2aff6b", + "key": "f8314e7a-2934-4f37-87ff-df93adee027c", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -4993,7 +4995,7 @@ }, { "commandType": "dispense", - "key": "ea876b75-dbb7-445e-afb4-efa1fd12eda8", + "key": "5261a98e-b9ef-4654-be05-63bd6d625b95", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -5008,7 +5010,7 @@ }, { "commandType": "aspirate", - "key": "7551fb8d-3899-42f4-ba52-9e03c2410ae5", + "key": "2d7e6164-5ff0-474f-8793-bed55e9268f6", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5023,7 +5025,7 @@ }, { "commandType": "dispense", - "key": "dae940af-8337-439f-83c5-39745994b216", + "key": "b1d778c2-7c4b-4989-9819-4f70959bf690", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5038,7 +5040,7 @@ }, { "commandType": "aspirate", - "key": "d9c4b87f-8e3f-415b-9c61-b14cff73fa6e", + "key": "2da23b46-c32e-45a9-93b4-e6ba54209279", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5053,7 +5055,7 @@ }, { "commandType": "dispense", - "key": "6e1ae4be-0622-490d-811a-1442a54f38c6", + "key": "c0f8e9a6-704d-409e-86c6-cdfece6d75cf", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5068,7 +5070,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "2172c551-8f66-49ec-b092-3cecb3ecd1e6", + "key": "f9669e2a-89c9-4e89-b11a-792ca9372110", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -5077,7 +5079,7 @@ }, { "commandType": "blowOutInPlace", - "key": "70f94de0-45c2-4082-85c7-000a3c7d4e05", + "key": "76f1f9d1-5ed9-4fe9-ac86-e44b8669bcef", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -5085,7 +5087,7 @@ }, { "commandType": "touchTip", - "key": "7a8c6027-3547-4415-97e2-e4a8839cefcb", + "key": "44c1606d-102c-4b0e-9af4-27719c14bf25", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -5095,7 +5097,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "9e76549d-de35-4be7-b42f-83e81eb148e5", + "key": "e8d9bb09-8188-46d1-bb5b-2fe490c85243", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -5105,12 +5107,12 @@ }, { "commandType": "dropTipInPlace", - "key": "edb7a124-0334-41a3-b82f-237bf2a63e37", + "key": "4e5f18e9-9192-46eb-932f-0dcf604c4649", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "f040345b-250f-4fa6-abc0-62e27fe59938", + "key": "52647b11-c226-4918-80ea-9bac8a02a373", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -5119,7 +5121,7 @@ }, { "commandType": "aspirate", - "key": "cd942842-7300-40c1-87a6-28f073ea3dc5", + "key": "e3239197-dbe6-4c71-917a-4fd41af8d75d", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5134,7 +5136,7 @@ }, { "commandType": "dispense", - "key": "f6a45b15-269b-482d-983b-d3bc5db57d26", + "key": "01f40e1b-bdd0-4973-b2b8-ee4785ea9c6f", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5149,7 +5151,7 @@ }, { "commandType": "aspirate", - "key": "7d61c0b4-4555-435c-b837-b559b360a82e", + "key": "5be5ae28-4e96-40dc-833c-60ac08044f96", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5164,7 +5166,7 @@ }, { "commandType": "dispense", - "key": "9f9dfc52-5ca3-42e2-b9d5-3bfa8521de49", + "key": "001da4d7-697d-49b0-9654-8d0bdde1ac93", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5179,7 +5181,7 @@ }, { "commandType": "aspirate", - "key": "11346b4b-af47-46f0-9461-52664eec0d39", + "key": "b4c0188b-ee1f-4859-9856-a7426109c2e3", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5194,7 +5196,7 @@ }, { "commandType": "dispense", - "key": "23982cac-52ae-484f-b3e7-c52c029b1e9a", + "key": "00de49e0-d834-4458-9e4b-1a01ce5ed2c3", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5209,7 +5211,7 @@ }, { "commandType": "aspirate", - "key": "148dd2de-1425-482f-8fec-32731007bbff", + "key": "5522605f-01b7-46a6-8f6a-2b51f0edc8ca", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -5224,7 +5226,7 @@ }, { "commandType": "touchTip", - "key": "41e664b1-6199-4a33-9857-76df944f516d", + "key": "9040c7b6-7714-48b9-94ad-b2d992287dad", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -5234,7 +5236,7 @@ }, { "commandType": "dispense", - "key": "152340ce-cde0-469e-9882-a8ef3d4a1cde", + "key": "8d65f1cf-058a-4666-8da5-403be4b98fed", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -5249,7 +5251,7 @@ }, { "commandType": "aspirate", - "key": "e4e8529f-89fc-4a94-a49d-410b799aa539", + "key": "b710f746-3424-40cb-80a0-c77bcaf03816", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5264,7 +5266,7 @@ }, { "commandType": "dispense", - "key": "01461514-1395-4f09-95db-29dea71c1f5b", + "key": "a91072f7-47c9-4c85-8b43-491dc6d0b0be", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5279,7 +5281,7 @@ }, { "commandType": "aspirate", - "key": "ff195ab9-cb65-45d1-93a8-a071d0bbed98", + "key": "6dc84887-b4b4-432c-87d8-92ab8431c127", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5294,7 +5296,7 @@ }, { "commandType": "dispense", - "key": "8ba714b7-bcc2-48c3-8c57-0d0ac933b976", + "key": "b463a520-0c4c-4dbe-b5b9-330a35fcef55", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5309,7 +5311,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "8c2017b4-9145-46bc-a91f-83f27cc0a828", + "key": "9ba7bef1-dca0-43fe-b6e1-382a1e2dd958", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -5318,7 +5320,7 @@ }, { "commandType": "blowOutInPlace", - "key": "6dba0671-c83f-4fc2-8d9c-3e309448d0e9", + "key": "9f279224-1420-4f8f-a2ff-ac959fb45c42", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -5326,7 +5328,7 @@ }, { "commandType": "touchTip", - "key": "15c49bf0-ce06-4687-aeb5-a5dd0736f2f5", + "key": "270a207d-7ad2-43bb-8392-11d68bde94ce", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -5336,7 +5338,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "5e494f88-ee95-42f1-bbd4-23b449649b93", + "key": "ad560eb4-0e24-4801-9a9f-aeaf7f21cb75", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -5346,12 +5348,12 @@ }, { "commandType": "dropTipInPlace", - "key": "e1f4d20a-b36c-4da1-9b1f-529aef638f1f", + "key": "ebdaf15a-14d8-4527-9dc8-0b1027009ee9", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "c3d944d3-abe8-4f4c-8e4d-70792c3303f2", + "key": "7ffd9d57-22c6-40ca-85fb-8e0ab86c881a", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -5360,7 +5362,7 @@ }, { "commandType": "aspirate", - "key": "4432786d-94e4-4958-ae49-8d0679c97fc0", + "key": "7115280b-eea5-462f-aa18-815a876a9213", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5375,7 +5377,7 @@ }, { "commandType": "dispense", - "key": "3efc13e5-aac5-4f23-b060-52003c8c827f", + "key": "5c04e6ab-5619-47e3-8421-49667b56ebc3", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5390,7 +5392,7 @@ }, { "commandType": "aspirate", - "key": "5ec72861-9ac4-4a9b-91e2-907932819e58", + "key": "b065331a-9ce4-45a6-860a-9d8ae5eda44a", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5405,7 +5407,7 @@ }, { "commandType": "dispense", - "key": "994b0746-ea15-4cfb-afa7-d00ff124e0f1", + "key": "2eaa51b7-ade3-43aa-8f84-d6e908d256fa", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5420,7 +5422,7 @@ }, { "commandType": "aspirate", - "key": "2acee0bb-366c-4f1d-b165-f69a1c03b05f", + "key": "7af395d3-372b-44c8-89e2-cc7961567036", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5435,7 +5437,7 @@ }, { "commandType": "dispense", - "key": "a44857c1-e5d2-4ce7-a428-41a68e426f3c", + "key": "25d443bc-3925-492d-9341-102d29aa125d", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 2, @@ -5450,7 +5452,7 @@ }, { "commandType": "aspirate", - "key": "09f55bdd-61ff-4667-878f-c79e0a21b9c5", + "key": "30a6ae71-1028-4137-b11f-7bd905b6bd74", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -5465,7 +5467,7 @@ }, { "commandType": "touchTip", - "key": "4daa0f4c-e10e-488e-9d19-3a8602a548f4", + "key": "5d318386-78b3-4b6e-998a-bfd61ce94e29", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -5475,7 +5477,7 @@ }, { "commandType": "dispense", - "key": "5f54be1c-fff2-41ae-b512-01a9bb28cc4a", + "key": "e2019112-8a64-4b03-9812-a0a840a7d035", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 6, @@ -5490,7 +5492,7 @@ }, { "commandType": "aspirate", - "key": "6e42ea13-01ed-461b-8dfa-9bd360982ddf", + "key": "09b49957-6e19-43a1-b402-9c1eed0857d4", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5505,7 +5507,7 @@ }, { "commandType": "dispense", - "key": "63d6f42e-0caa-47c4-9341-e3a950f85128", + "key": "5f04a962-0466-4791-a019-4af5217a06f2", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5520,7 +5522,7 @@ }, { "commandType": "aspirate", - "key": "c8791232-20bd-4068-a778-4630548b49ae", + "key": "b8c78bae-cc23-4415-9f63-fab416b2d674", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5535,7 +5537,7 @@ }, { "commandType": "dispense", - "key": "98e4d5e2-4b75-435f-8809-099806e98694", + "key": "41c297e4-fa47-487d-9219-f4959d2b3f6a", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 3, @@ -5550,7 +5552,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "921371a0-2df9-4f3e-b28f-0282399e98a3", + "key": "23137a5d-6b82-4ecc-9180-f1ebd051f54a", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -5559,7 +5561,7 @@ }, { "commandType": "blowOutInPlace", - "key": "f9c7ae2a-b401-4c92-8e6a-4366ffb93643", + "key": "3ec2c77d-bd1e-4aa6-b36f-37757218adee", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "flowRate": 1000 @@ -5567,7 +5569,7 @@ }, { "commandType": "touchTip", - "key": "70fbf7e3-cae6-49e7-bfd3-65a5376b5e3e", + "key": "10638801-4c1c-45d5-a61e-1160a9c4ddca", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -5577,7 +5579,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "74d53fee-f9c6-4a27-a54b-80a79e906b6c", + "key": "fcbf438c-40c0-4446-acae-d8f6ccce95e7", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -5587,12 +5589,12 @@ }, { "commandType": "dropTipInPlace", - "key": "28dc2329-937d-4d2c-8fc3-eecf3f321041", + "key": "cd3743de-0470-48bb-98f1-4c1cc9f05491", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "pickUpTip", - "key": "5ad18635-8559-4904-8db4-4e2b19546238", + "key": "3fce8a1e-1857-4146-8a5d-296a06fa5101", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul", @@ -5601,7 +5603,7 @@ }, { "commandType": "aspirate", - "key": "1227b40e-adda-4545-9724-5509ff790adf", + "key": "555deb27-6ccf-4f69-a22a-e88693869e01", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 5.5, @@ -5616,7 +5618,7 @@ }, { "commandType": "dispense", - "key": "b9c1000c-c52f-4b04-9790-9a2dec7dadd3", + "key": "c720bf94-d982-4989-8d05-5be11f5c56ac", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 5.5, @@ -5631,7 +5633,7 @@ }, { "commandType": "aspirate", - "key": "0b5da711-8961-40d0-a294-b4d9eed6c77a", + "key": "56079904-e3a0-4c8d-b302-8351c2f23cf9", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 5.5, @@ -5646,7 +5648,7 @@ }, { "commandType": "dispense", - "key": "12b3c883-f2b2-4651-816e-e38bb8cb5c85", + "key": "591975c1-bc72-456d-b186-2c5900e8990c", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 5.5, @@ -5661,7 +5663,7 @@ }, { "commandType": "aspirate", - "key": "b30463df-33e7-4038-97d6-298f7e9cef8e", + "key": "44c87d5e-e8c7-414f-abcc-4f7dbab5448b", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 5.5, @@ -5676,7 +5678,7 @@ }, { "commandType": "dispense", - "key": "b2c2c14c-6874-406a-b9d1-33bc02b7a74f", + "key": "a10a0fa5-b411-4227-b5c0-03bd0f00f1da", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "volume": 5.5, @@ -5691,18 +5693,18 @@ }, { "commandType": "blowout", - "key": "98f8d095-46f4-4349-8c93-21eebfcf05d3", + "key": "d23eab2f-7882-4bed-907e-baf8755ab557", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", "wellName": "A1", - "flowRate": 7, + "flowRate": 1000, "wellLocation": { "origin": "top", "offset": { "z": 0 } } } }, { "commandType": "touchTip", - "key": "d6985dc6-551c-4ceb-bcc9-c833301b1eac", + "key": "916eabaf-7965-4280-b583-043637f47e1c", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "labwareId": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", @@ -5712,7 +5714,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "cdf5e0f0-0598-4e4d-98e8-70a57ff83a4a", + "key": "f03d51ec-9bd4-4a21-b8da-a0ebbffaaac2", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e", "addressableAreaName": "fixedTrash", @@ -5722,12 +5724,12 @@ }, { "commandType": "dropTipInPlace", - "key": "1c0dee1c-97fa-4f33-bb36-9b3b7a2ef73e", + "key": "64a539fe-7de8-4176-9a56-cd0a4201fae9", "params": { "pipetteId": "c6f45030-92a5-11e9-ac62-1b173f839d9e" } }, { "commandType": "waitForDuration", - "key": "d306df0a-3ad2-48ac-9ac2-1151895982e0", + "key": "55faff89-fd16-49ed-ad0b-760f5f359f5e", "params": { "seconds": 3723, "message": "Delay plz" } } ], diff --git a/protocol-designer/fixtures/protocol/8/mix_8_0_0.json b/protocol-designer/fixtures/protocol/8/mix_8_0_0.json index 6ace9e70926..079e1eb07ac 100644 --- a/protocol-designer/fixtures/protocol/8/mix_8_0_0.json +++ b/protocol-designer/fixtures/protocol/8/mix_8_0_0.json @@ -6,7 +6,7 @@ "author": "", "description": "A test for 5.0.0 -> 5.1.0 migration", "created": 1600714068238, - "lastModified": 1711742569351, + "lastModified": 1714570500165, "category": null, "subcategory": null, "tags": [] @@ -15,17 +15,17 @@ "name": "opentrons/protocol-designer", "version": "8.1.0", "data": { - "_internalAppBuildDate": "Fri, 29 Mar 2024 20:00:04 GMT", + "_internalAppBuildDate": "Wed, 01 May 2024 13:32:34 GMT", "defaultValues": { "aspirate_mmFromBottom": 1, - "dispense_mmFromBottom": 0.5, + "dispense_mmFromBottom": 1, "touchTip_mmFromTop": -1, "blowout_mmFromTop": 0 }, "pipetteTiprackAssignments": { "pipetteId": ["opentrons/opentrons_96_tiprack_10ul/1"] }, - "dismissedWarnings": { "form": {}, "timeline": {} }, + "dismissedWarnings": { "form": [], "timeline": [] }, "ingredients": {}, "ingredLocations": {}, "savedStepForms": { @@ -58,7 +58,6 @@ "labware": null, "mix_wellOrder_first": "t2b", "mix_wellOrder_second": "l2r", - "blowout_z_offset": 0, "blowout_checkbox": false, "blowout_location": "5ba7047d-d3e2-4845-9eaa-1974af796ead:trashBin", "mix_mmFromBottom": 0.5, @@ -75,9 +74,11 @@ "mix_touchTip_mmFromBottom": null, "dropTip_location": "5ba7047d-d3e2-4845-9eaa-1974af796ead:trashBin", "nozzles": null, - "tipRack": "f1c677c0-fc3a-11ea-8809-e959e7d61d96:opentrons/opentrons_96_tiprack_10ul/1", + "tipRack": "opentrons/opentrons_96_tiprack_10ul/1", "mix_x_position": 0, "mix_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "fc4dc7c0-fc3a-11ea-8809-e959e7d61d96", "stepType": "mix", "stepName": "mix", @@ -2128,7 +2129,7 @@ "commandSchemaId": "opentronsCommandSchemaV8", "commands": [ { - "key": "3004b46c-2b41-4453-8ddc-1629ec3b5249", + "key": "d66aa1db-df76-492d-ab2c-533b982522aa", "commandType": "loadPipette", "params": { "pipetteName": "p20_single_gen2", @@ -2137,7 +2138,7 @@ } }, { - "key": "c318feee-5ec6-40a0-9ecc-554e67b30ce1", + "key": "78921c11-0ed3-49c6-b4c3-08fd71b68917", "commandType": "loadLabware", "params": { "displayName": "Opentrons OT-2 96 Tip Rack 10 µL", @@ -2149,7 +2150,7 @@ } }, { - "key": "3350dee6-aa60-4569-a801-0dfeb5baf8ed", + "key": "f9f07c5b-a0dd-4c3c-8479-15a63ae0642e", "commandType": "loadLabware", "params": { "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", @@ -2162,7 +2163,7 @@ }, { "commandType": "waitForDuration", - "key": "797e70f3-5310-48c2-ba06-12adb92a7b4e", + "key": "72be26a3-bb77-455d-bc32-f100e1a84a0b", "params": { "seconds": 3723, "message": "" } } ], diff --git a/protocol-designer/fixtures/protocol/8/newAdvancedSettingsAndMultiTemp.json b/protocol-designer/fixtures/protocol/8/newAdvancedSettingsAndMultiTemp.json new file mode 100644 index 00000000000..1144f644f53 --- /dev/null +++ b/protocol-designer/fixtures/protocol/8/newAdvancedSettingsAndMultiTemp.json @@ -0,0 +1,3739 @@ +{ + "$otSharedSchema": "#/protocol/schemas/8", + "schemaVersion": 8, + "metadata": { + "protocolName": "New advanced settings", + "author": "", + "description": "", + "created": 1714565695341, + "lastModified": 1714565808161, + "category": null, + "subcategory": null, + "tags": [] + }, + "designerApplication": { + "name": "opentrons/protocol-designer", + "version": "8.1.0", + "data": { + "_internalAppBuildDate": "Wed, 01 May 2024 12:14:18 GMT", + "defaultValues": { + "aspirate_mmFromBottom": 1, + "dispense_mmFromBottom": 1, + "touchTip_mmFromTop": -1, + "blowout_mmFromTop": 0 + }, + "pipetteTiprackAssignments": { + "21087f15-4c03-4587-8a2b-1ba0b5a501a0": [ + "opentrons/opentrons_flex_96_tiprack_50ul/1" + ] + }, + "dismissedWarnings": { "form": [], "timeline": [] }, + "ingredients": {}, + "ingredLocations": {}, + "savedStepForms": { + "__INITIAL_DECK_SETUP_STEP__": { + "stepType": "manualIntervention", + "id": "__INITIAL_DECK_SETUP_STEP__", + "labwareLocationUpdate": { + "0d39213c-49c2-4170-bf19-4c09e1b72aca:opentrons/opentrons_flex_96_tiprack_50ul/1": "C2", + "c3c4e3fd-069f-4f3d-9b70-016a20f36de7:opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/1": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType", + "32b596f6-79bb-4ad8-a34a-c44620fdb68f:opentrons/opentrons_96_well_aluminum_block/1": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType", + "c0093e5f-3f7d-4cbf-aa17-d88394108501:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2": "32b596f6-79bb-4ad8-a34a-c44620fdb68f:opentrons/opentrons_96_well_aluminum_block/1" + }, + "pipetteLocationUpdate": { + "21087f15-4c03-4587-8a2b-1ba0b5a501a0": "left" + }, + "moduleLocationUpdate": { + "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType": "D3", + "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType": "C3" + } + }, + "292e8b18-f59e-4c63-b0f3-e242bf50094b": { + "id": "292e8b18-f59e-4c63-b0f3-e242bf50094b", + "stepType": "moveLiquid", + "stepName": "transfer", + "stepDetails": "", + "pipette": "21087f15-4c03-4587-8a2b-1ba0b5a501a0", + "volume": "10", + "tipRack": "opentrons/opentrons_flex_96_tiprack_50ul/1", + "changeTip": "always", + "path": "single", + "aspirate_wells_grouped": false, + "aspirate_flowRate": null, + "aspirate_labware": "c0093e5f-3f7d-4cbf-aa17-d88394108501:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "aspirate_wells": ["C1"], + "aspirate_wellOrder_first": "t2b", + "aspirate_wellOrder_second": "l2r", + "aspirate_mix_checkbox": false, + "aspirate_mix_times": null, + "aspirate_mix_volume": null, + "aspirate_mmFromBottom": 29, + "aspirate_touchTip_checkbox": false, + "aspirate_touchTip_mmFromBottom": null, + "dispense_flowRate": null, + "dispense_labware": "c3c4e3fd-069f-4f3d-9b70-016a20f36de7:opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/1", + "dispense_wells": ["B3"], + "dispense_wellOrder_first": "t2b", + "dispense_wellOrder_second": "l2r", + "dispense_mix_checkbox": false, + "dispense_mix_times": null, + "dispense_mix_volume": null, + "dispense_mmFromBottom": null, + "dispense_touchTip_checkbox": false, + "dispense_touchTip_mmFromBottom": null, + "disposalVolume_checkbox": true, + "disposalVolume_volume": "1", + "blowout_checkbox": true, + "blowout_location": "source_well", + "preWetTip": false, + "aspirate_airGap_checkbox": false, + "aspirate_airGap_volume": "1", + "aspirate_delay_checkbox": false, + "aspirate_delay_mmFromBottom": null, + "aspirate_delay_seconds": "1", + "dispense_airGap_checkbox": false, + "dispense_airGap_volume": "1", + "dispense_delay_checkbox": false, + "dispense_delay_seconds": "1", + "dispense_delay_mmFromBottom": null, + "dropTip_location": "20ab923c-1290-402e-8476-bba30991f24e:trashBin", + "nozzles": null, + "dispense_x_position": 0, + "dispense_y_position": 0, + "aspirate_x_position": 2, + "aspirate_y_position": -2, + "blowout_z_offset": -12, + "blowout_flowRate": 20 + }, + "960c2d3b-9cf9-49b0-ab4c-af4113f6671a": { + "id": "960c2d3b-9cf9-49b0-ab4c-af4113f6671a", + "stepType": "temperature", + "stepName": "temperature", + "stepDetails": "", + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType", + "setTemperature": "true", + "targetTemperature": "40" + }, + "5055c5a3-92b7-41e5-935d-e8150e9f4f1c": { + "id": "5055c5a3-92b7-41e5-935d-e8150e9f4f1c", + "stepType": "pause", + "stepName": "pause", + "stepDetails": "", + "pauseAction": "untilTemperature", + "pauseHour": null, + "pauseMinute": null, + "pauseSecond": null, + "pauseMessage": "", + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType", + "pauseTemperature": "40" + }, + "68a83fc0-726b-4df4-9a14-c43802aa9d0f": { + "id": "68a83fc0-726b-4df4-9a14-c43802aa9d0f", + "stepType": "temperature", + "stepName": "temperature", + "stepDetails": "", + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType", + "setTemperature": "true", + "targetTemperature": "4" + }, + "c72b4af9-7488-4109-8221-15a5433f4fd8": { + "id": "c72b4af9-7488-4109-8221-15a5433f4fd8", + "stepType": "pause", + "stepName": "pause", + "stepDetails": "", + "pauseAction": "untilTemperature", + "pauseHour": null, + "pauseMinute": null, + "pauseSecond": null, + "pauseMessage": "", + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType", + "pauseTemperature": "4" + }, + "ffb0d1ff-8146-409c-9248-2065a3b27c4d": { + "id": "ffb0d1ff-8146-409c-9248-2065a3b27c4d", + "stepType": "temperature", + "stepName": "temperature", + "stepDetails": "", + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType", + "setTemperature": "false", + "targetTemperature": null + }, + "eab2ec89-6d11-4246-ae91-d451cb3a5b1d": { + "id": "eab2ec89-6d11-4246-ae91-d451cb3a5b1d", + "stepType": "temperature", + "stepName": "temperature", + "stepDetails": "", + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType", + "setTemperature": "false", + "targetTemperature": null + } + }, + "orderedStepIds": [ + "292e8b18-f59e-4c63-b0f3-e242bf50094b", + "960c2d3b-9cf9-49b0-ab4c-af4113f6671a", + "5055c5a3-92b7-41e5-935d-e8150e9f4f1c", + "68a83fc0-726b-4df4-9a14-c43802aa9d0f", + "c72b4af9-7488-4109-8221-15a5433f4fd8", + "ffb0d1ff-8146-409c-9248-2065a3b27c4d", + "eab2ec89-6d11-4246-ae91-d451cb3a5b1d" + ] + } + }, + "robot": { "model": "OT-3 Standard", "deckId": "ot3_standard" }, + "labwareDefinitionSchemaId": "opentronsLabwareSchemaV2", + "labwareDefinitions": { + "opentrons/opentrons_flex_96_tiprack_50ul/1": { + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { "brand": "Opentrons", "brandId": [] }, + "metadata": { + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "displayCategory": "tipRack", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.75, + "zDimension": 99 + }, + "gripForce": 16, + "gripHeightFromLabwareBottom": 23.9, + "wells": { + "A1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 74.38, + "z": 1.5 + }, + "B1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 65.38, + "z": 1.5 + }, + "C1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 56.38, + "z": 1.5 + }, + "D1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 47.38, + "z": 1.5 + }, + "E1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 38.38, + "z": 1.5 + }, + "F1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 29.38, + "z": 1.5 + }, + "G1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 20.38, + "z": 1.5 + }, + "H1": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 14.38, + "y": 11.38, + "z": 1.5 + }, + "A2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 74.38, + "z": 1.5 + }, + "B2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 65.38, + "z": 1.5 + }, + "C2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 56.38, + "z": 1.5 + }, + "D2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 47.38, + "z": 1.5 + }, + "E2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 38.38, + "z": 1.5 + }, + "F2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 29.38, + "z": 1.5 + }, + "G2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 20.38, + "z": 1.5 + }, + "H2": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 23.38, + "y": 11.38, + "z": 1.5 + }, + "A3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 74.38, + "z": 1.5 + }, + "B3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 65.38, + "z": 1.5 + }, + "C3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 56.38, + "z": 1.5 + }, + "D3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 47.38, + "z": 1.5 + }, + "E3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 38.38, + "z": 1.5 + }, + "F3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 29.38, + "z": 1.5 + }, + "G3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 20.38, + "z": 1.5 + }, + "H3": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 32.38, + "y": 11.38, + "z": 1.5 + }, + "A4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 74.38, + "z": 1.5 + }, + "B4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 65.38, + "z": 1.5 + }, + "C4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 56.38, + "z": 1.5 + }, + "D4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 47.38, + "z": 1.5 + }, + "E4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 38.38, + "z": 1.5 + }, + "F4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 29.38, + "z": 1.5 + }, + "G4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 20.38, + "z": 1.5 + }, + "H4": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 41.38, + "y": 11.38, + "z": 1.5 + }, + "A5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 74.38, + "z": 1.5 + }, + "B5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 65.38, + "z": 1.5 + }, + "C5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 56.38, + "z": 1.5 + }, + "D5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 47.38, + "z": 1.5 + }, + "E5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 38.38, + "z": 1.5 + }, + "F5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 29.38, + "z": 1.5 + }, + "G5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 20.38, + "z": 1.5 + }, + "H5": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 50.38, + "y": 11.38, + "z": 1.5 + }, + "A6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 74.38, + "z": 1.5 + }, + "B6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 65.38, + "z": 1.5 + }, + "C6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 56.38, + "z": 1.5 + }, + "D6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 47.38, + "z": 1.5 + }, + "E6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 38.38, + "z": 1.5 + }, + "F6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 29.38, + "z": 1.5 + }, + "G6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 20.38, + "z": 1.5 + }, + "H6": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 59.38, + "y": 11.38, + "z": 1.5 + }, + "A7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 74.38, + "z": 1.5 + }, + "B7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 65.38, + "z": 1.5 + }, + "C7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 56.38, + "z": 1.5 + }, + "D7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 47.38, + "z": 1.5 + }, + "E7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 38.38, + "z": 1.5 + }, + "F7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 29.38, + "z": 1.5 + }, + "G7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 20.38, + "z": 1.5 + }, + "H7": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 68.38, + "y": 11.38, + "z": 1.5 + }, + "A8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 74.38, + "z": 1.5 + }, + "B8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 65.38, + "z": 1.5 + }, + "C8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 56.38, + "z": 1.5 + }, + "D8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 47.38, + "z": 1.5 + }, + "E8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 38.38, + "z": 1.5 + }, + "F8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 29.38, + "z": 1.5 + }, + "G8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 20.38, + "z": 1.5 + }, + "H8": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 77.38, + "y": 11.38, + "z": 1.5 + }, + "A9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 74.38, + "z": 1.5 + }, + "B9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 65.38, + "z": 1.5 + }, + "C9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 56.38, + "z": 1.5 + }, + "D9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 47.38, + "z": 1.5 + }, + "E9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 38.38, + "z": 1.5 + }, + "F9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 29.38, + "z": 1.5 + }, + "G9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 20.38, + "z": 1.5 + }, + "H9": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 86.38, + "y": 11.38, + "z": 1.5 + }, + "A10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 74.38, + "z": 1.5 + }, + "B10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 65.38, + "z": 1.5 + }, + "C10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 56.38, + "z": 1.5 + }, + "D10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 47.38, + "z": 1.5 + }, + "E10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 38.38, + "z": 1.5 + }, + "F10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 29.38, + "z": 1.5 + }, + "G10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 20.38, + "z": 1.5 + }, + "H10": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 95.38, + "y": 11.38, + "z": 1.5 + }, + "A11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 74.38, + "z": 1.5 + }, + "B11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 65.38, + "z": 1.5 + }, + "C11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 56.38, + "z": 1.5 + }, + "D11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 47.38, + "z": 1.5 + }, + "E11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 38.38, + "z": 1.5 + }, + "F11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 29.38, + "z": 1.5 + }, + "G11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 20.38, + "z": 1.5 + }, + "H11": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 104.38, + "y": 11.38, + "z": 1.5 + }, + "A12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 74.38, + "z": 1.5 + }, + "B12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 65.38, + "z": 1.5 + }, + "C12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 56.38, + "z": 1.5 + }, + "D12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 47.38, + "z": 1.5 + }, + "E12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 38.38, + "z": 1.5 + }, + "F12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 29.38, + "z": 1.5 + }, + "G12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 20.38, + "z": 1.5 + }, + "H12": { + "depth": 97.5, + "shape": "circular", + "diameter": 5.58, + "totalLiquidVolume": 50, + "x": 113.38, + "y": 11.38, + "z": 1.5 + } + }, + "groups": [ + { + "metadata": {}, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": true, + "tipLength": 57.9, + "tipOverlap": 10.5, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_flex_96_tiprack_50ul" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 }, + "stackingOffsetWithLabware": { + "opentrons_flex_96_tiprack_adapter": { "x": 0, "y": 0, "z": 121 } + } + }, + "opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/1": { + "ordering": [ + ["A1", "B1", "C1", "D1"], + ["A2", "B2", "C2", "D2"], + ["A3", "B3", "C3", "D3"], + ["A4", "B4", "C4", "D4"], + ["A5", "B5", "C5", "D5"], + ["A6", "B6", "C6", "D6"] + ], + "brand": { + "brand": "Opentrons", + "brandId": [], + "links": ["https://shop.opentrons.com/aluminum-block-set/"] + }, + "metadata": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Screwcap", + "displayCategory": "aluminumBlock", + "displayVolumeUnits": "mL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.75, + "yDimension": 85.5, + "zDimension": 49.35 + }, + "wells": { + "A1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 68.62, + "z": 5.45 + }, + "B1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 51.37, + "z": 5.45 + }, + "C1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 34.12, + "z": 5.45 + }, + "D1": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 20.75, + "y": 16.87, + "z": 5.45 + }, + "A2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 68.62, + "z": 5.45 + }, + "B2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 51.37, + "z": 5.45 + }, + "C2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 34.12, + "z": 5.45 + }, + "D2": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 38, + "y": 16.87, + "z": 5.45 + }, + "A3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 68.62, + "z": 5.45 + }, + "B3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 51.37, + "z": 5.45 + }, + "C3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 34.12, + "z": 5.45 + }, + "D3": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 55.25, + "y": 16.87, + "z": 5.45 + }, + "A4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 68.62, + "z": 5.45 + }, + "B4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 51.37, + "z": 5.45 + }, + "C4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 34.12, + "z": 5.45 + }, + "D4": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 72.5, + "y": 16.87, + "z": 5.45 + }, + "A5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 68.62, + "z": 5.45 + }, + "B5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 51.37, + "z": 5.45 + }, + "C5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 34.12, + "z": 5.45 + }, + "D5": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 89.75, + "y": 16.87, + "z": 5.45 + }, + "A6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 68.62, + "z": 5.45 + }, + "B6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 51.37, + "z": 5.45 + }, + "C6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 34.12, + "z": 5.45 + }, + "D6": { + "depth": 43.9, + "shape": "circular", + "diameter": 8.69, + "totalLiquidVolume": 1500, + "x": 107, + "y": 16.87, + "z": 5.45 + } + }, + "groups": [ + { + "metadata": { + "displayName": "NEST 24x1.5 mL Screwcap", + "displayCategory": "tubeRack", + "wellBottomShape": "v" + }, + "brand": { + "brand": "NEST", + "brandId": ["634001"], + "links": ["https://www.nest-biotech.com/sample-vials/59299027.html"] + }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "A2", + "B2", + "C2", + "D2", + "A3", + "B3", + "C3", + "D3", + "A4", + "B4", + "C4", + "D4", + "A5", + "B5", + "C5", + "D5", + "A6", + "B6", + "C6", + "D6" + ] + } + ], + "parameters": { + "format": "irregular", + "quirks": ["gripperIncompatible"], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_screwcap" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 } + }, + "opentrons/opentrons_96_well_aluminum_block/1": { + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { "brand": "Opentrons", "brandId": [] }, + "metadata": { + "displayName": "Opentrons 96 Well Aluminum Block", + "displayCategory": "adapter", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 18.16 + }, + "wells": { + "A1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 74.24, + "z": 3.38 + }, + "B1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 65.24, + "z": 3.38 + }, + "C1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 56.24, + "z": 3.38 + }, + "D1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 47.24, + "z": 3.38 + }, + "E1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 38.24, + "z": 3.38 + }, + "F1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 29.24, + "z": 3.38 + }, + "G1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 20.24, + "z": 3.38 + }, + "H1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 14.38, + "y": 11.24, + "z": 3.38 + }, + "A2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 74.24, + "z": 3.38 + }, + "B2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 65.24, + "z": 3.38 + }, + "C2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 56.24, + "z": 3.38 + }, + "D2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 47.24, + "z": 3.38 + }, + "E2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 38.24, + "z": 3.38 + }, + "F2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 29.24, + "z": 3.38 + }, + "G2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 20.24, + "z": 3.38 + }, + "H2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 23.38, + "y": 11.24, + "z": 3.38 + }, + "A3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 74.24, + "z": 3.38 + }, + "B3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 65.24, + "z": 3.38 + }, + "C3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 56.24, + "z": 3.38 + }, + "D3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 47.24, + "z": 3.38 + }, + "E3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 38.24, + "z": 3.38 + }, + "F3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 29.24, + "z": 3.38 + }, + "G3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 20.24, + "z": 3.38 + }, + "H3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 32.38, + "y": 11.24, + "z": 3.38 + }, + "A4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 74.24, + "z": 3.38 + }, + "B4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 65.24, + "z": 3.38 + }, + "C4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 56.24, + "z": 3.38 + }, + "D4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 47.24, + "z": 3.38 + }, + "E4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 38.24, + "z": 3.38 + }, + "F4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 29.24, + "z": 3.38 + }, + "G4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 20.24, + "z": 3.38 + }, + "H4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 41.38, + "y": 11.24, + "z": 3.38 + }, + "A5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 74.24, + "z": 3.38 + }, + "B5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 65.24, + "z": 3.38 + }, + "C5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 56.24, + "z": 3.38 + }, + "D5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 47.24, + "z": 3.38 + }, + "E5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 38.24, + "z": 3.38 + }, + "F5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 29.24, + "z": 3.38 + }, + "G5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 20.24, + "z": 3.38 + }, + "H5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 50.38, + "y": 11.24, + "z": 3.38 + }, + "A6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 74.24, + "z": 3.38 + }, + "B6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 65.24, + "z": 3.38 + }, + "C6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 56.24, + "z": 3.38 + }, + "D6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 47.24, + "z": 3.38 + }, + "E6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 38.24, + "z": 3.38 + }, + "F6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 29.24, + "z": 3.38 + }, + "G6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 20.24, + "z": 3.38 + }, + "H6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 59.38, + "y": 11.24, + "z": 3.38 + }, + "A7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 74.24, + "z": 3.38 + }, + "B7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 65.24, + "z": 3.38 + }, + "C7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 56.24, + "z": 3.38 + }, + "D7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 47.24, + "z": 3.38 + }, + "E7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 38.24, + "z": 3.38 + }, + "F7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 29.24, + "z": 3.38 + }, + "G7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 20.24, + "z": 3.38 + }, + "H7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 68.38, + "y": 11.24, + "z": 3.38 + }, + "A8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 74.24, + "z": 3.38 + }, + "B8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 65.24, + "z": 3.38 + }, + "C8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 56.24, + "z": 3.38 + }, + "D8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 47.24, + "z": 3.38 + }, + "E8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 38.24, + "z": 3.38 + }, + "F8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 29.24, + "z": 3.38 + }, + "G8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 20.24, + "z": 3.38 + }, + "H8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 77.38, + "y": 11.24, + "z": 3.38 + }, + "A9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 74.24, + "z": 3.38 + }, + "B9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 65.24, + "z": 3.38 + }, + "C9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 56.24, + "z": 3.38 + }, + "D9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 47.24, + "z": 3.38 + }, + "E9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 38.24, + "z": 3.38 + }, + "F9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 29.24, + "z": 3.38 + }, + "G9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 20.24, + "z": 3.38 + }, + "H9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 86.38, + "y": 11.24, + "z": 3.38 + }, + "A10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 74.24, + "z": 3.38 + }, + "B10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 65.24, + "z": 3.38 + }, + "C10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 56.24, + "z": 3.38 + }, + "D10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 47.24, + "z": 3.38 + }, + "E10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 38.24, + "z": 3.38 + }, + "F10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 29.24, + "z": 3.38 + }, + "G10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 20.24, + "z": 3.38 + }, + "H10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 95.38, + "y": 11.24, + "z": 3.38 + }, + "A11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 74.24, + "z": 3.38 + }, + "B11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 65.24, + "z": 3.38 + }, + "C11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 56.24, + "z": 3.38 + }, + "D11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 47.24, + "z": 3.38 + }, + "E11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 38.24, + "z": 3.38 + }, + "F11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 29.24, + "z": 3.38 + }, + "G11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 20.24, + "z": 3.38 + }, + "H11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 104.38, + "y": 11.24, + "z": 3.38 + }, + "A12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 74.24, + "z": 3.38 + }, + "B12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 65.24, + "z": 3.38 + }, + "C12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 56.24, + "z": 3.38 + }, + "D12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 47.24, + "z": 3.38 + }, + "E12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 38.24, + "z": 3.38 + }, + "F12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 29.24, + "z": 3.38 + }, + "G12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 20.24, + "z": 3.38 + }, + "H12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 0, + "x": 113.38, + "y": 11.24, + "z": 3.38 + } + }, + "groups": [ + { + "metadata": { "wellBottomShape": "v" }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "quirks": [], + "isTiprack": false, + "isMagneticModuleCompatible": false, + "loadName": "opentrons_96_well_aluminum_block" + }, + "namespace": "opentrons", + "version": 1, + "schemaVersion": 2, + "allowedRoles": ["adapter"], + "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 }, + "gripperOffsets": { + "default": { + "pickUpOffset": { "x": 0, "y": 0, "z": 0 }, + "dropOffset": { "x": 0, "y": 0, "z": 1 } + } + } + }, + "opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2": { + "ordering": [ + ["A1", "B1", "C1", "D1", "E1", "F1", "G1", "H1"], + ["A2", "B2", "C2", "D2", "E2", "F2", "G2", "H2"], + ["A3", "B3", "C3", "D3", "E3", "F3", "G3", "H3"], + ["A4", "B4", "C4", "D4", "E4", "F4", "G4", "H4"], + ["A5", "B5", "C5", "D5", "E5", "F5", "G5", "H5"], + ["A6", "B6", "C6", "D6", "E6", "F6", "G6", "H6"], + ["A7", "B7", "C7", "D7", "E7", "F7", "G7", "H7"], + ["A8", "B8", "C8", "D8", "E8", "F8", "G8", "H8"], + ["A9", "B9", "C9", "D9", "E9", "F9", "G9", "H9"], + ["A10", "B10", "C10", "D10", "E10", "F10", "G10", "H10"], + ["A11", "B11", "C11", "D11", "E11", "F11", "G11", "H11"], + ["A12", "B12", "C12", "D12", "E12", "F12", "G12", "H12"] + ], + "brand": { + "brand": "NEST", + "brandId": ["402501"], + "links": ["https://www.nest-biotech.com/pcr-plates/58773587.html"] + }, + "metadata": { + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "displayCategory": "wellPlate", + "displayVolumeUnits": "µL", + "tags": [] + }, + "dimensions": { + "xDimension": 127.76, + "yDimension": 85.48, + "zDimension": 15.7 + }, + "gripForce": 15, + "gripHeightFromLabwareBottom": 10.65, + "wells": { + "A1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 74.24, + "z": 0.92 + }, + "B1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 65.24, + "z": 0.92 + }, + "C1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 56.24, + "z": 0.92 + }, + "D1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 47.24, + "z": 0.92 + }, + "E1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 38.24, + "z": 0.92 + }, + "F1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 29.24, + "z": 0.92 + }, + "G1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 20.24, + "z": 0.92 + }, + "H1": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 14.38, + "y": 11.24, + "z": 0.92 + }, + "A2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 74.24, + "z": 0.92 + }, + "B2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 65.24, + "z": 0.92 + }, + "C2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 56.24, + "z": 0.92 + }, + "D2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 47.24, + "z": 0.92 + }, + "E2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 38.24, + "z": 0.92 + }, + "F2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 29.24, + "z": 0.92 + }, + "G2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 20.24, + "z": 0.92 + }, + "H2": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 23.38, + "y": 11.24, + "z": 0.92 + }, + "A3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 74.24, + "z": 0.92 + }, + "B3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 65.24, + "z": 0.92 + }, + "C3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 56.24, + "z": 0.92 + }, + "D3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 47.24, + "z": 0.92 + }, + "E3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 38.24, + "z": 0.92 + }, + "F3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 29.24, + "z": 0.92 + }, + "G3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 20.24, + "z": 0.92 + }, + "H3": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 32.38, + "y": 11.24, + "z": 0.92 + }, + "A4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 74.24, + "z": 0.92 + }, + "B4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 65.24, + "z": 0.92 + }, + "C4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 56.24, + "z": 0.92 + }, + "D4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 47.24, + "z": 0.92 + }, + "E4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 38.24, + "z": 0.92 + }, + "F4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 29.24, + "z": 0.92 + }, + "G4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 20.24, + "z": 0.92 + }, + "H4": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 41.38, + "y": 11.24, + "z": 0.92 + }, + "A5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 74.24, + "z": 0.92 + }, + "B5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 65.24, + "z": 0.92 + }, + "C5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 56.24, + "z": 0.92 + }, + "D5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 47.24, + "z": 0.92 + }, + "E5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 38.24, + "z": 0.92 + }, + "F5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 29.24, + "z": 0.92 + }, + "G5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 20.24, + "z": 0.92 + }, + "H5": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 50.38, + "y": 11.24, + "z": 0.92 + }, + "A6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 74.24, + "z": 0.92 + }, + "B6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 65.24, + "z": 0.92 + }, + "C6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 56.24, + "z": 0.92 + }, + "D6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 47.24, + "z": 0.92 + }, + "E6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 38.24, + "z": 0.92 + }, + "F6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 29.24, + "z": 0.92 + }, + "G6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 20.24, + "z": 0.92 + }, + "H6": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 59.38, + "y": 11.24, + "z": 0.92 + }, + "A7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 74.24, + "z": 0.92 + }, + "B7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 65.24, + "z": 0.92 + }, + "C7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 56.24, + "z": 0.92 + }, + "D7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 47.24, + "z": 0.92 + }, + "E7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 38.24, + "z": 0.92 + }, + "F7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 29.24, + "z": 0.92 + }, + "G7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 20.24, + "z": 0.92 + }, + "H7": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 68.38, + "y": 11.24, + "z": 0.92 + }, + "A8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 74.24, + "z": 0.92 + }, + "B8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 65.24, + "z": 0.92 + }, + "C8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 56.24, + "z": 0.92 + }, + "D8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 47.24, + "z": 0.92 + }, + "E8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 38.24, + "z": 0.92 + }, + "F8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 29.24, + "z": 0.92 + }, + "G8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 20.24, + "z": 0.92 + }, + "H8": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 77.38, + "y": 11.24, + "z": 0.92 + }, + "A9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 74.24, + "z": 0.92 + }, + "B9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 65.24, + "z": 0.92 + }, + "C9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 56.24, + "z": 0.92 + }, + "D9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 47.24, + "z": 0.92 + }, + "E9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 38.24, + "z": 0.92 + }, + "F9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 29.24, + "z": 0.92 + }, + "G9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 20.24, + "z": 0.92 + }, + "H9": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 86.38, + "y": 11.24, + "z": 0.92 + }, + "A10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 74.24, + "z": 0.92 + }, + "B10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 65.24, + "z": 0.92 + }, + "C10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 56.24, + "z": 0.92 + }, + "D10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 47.24, + "z": 0.92 + }, + "E10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 38.24, + "z": 0.92 + }, + "F10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 29.24, + "z": 0.92 + }, + "G10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 20.24, + "z": 0.92 + }, + "H10": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 95.38, + "y": 11.24, + "z": 0.92 + }, + "A11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 74.24, + "z": 0.92 + }, + "B11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 65.24, + "z": 0.92 + }, + "C11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 56.24, + "z": 0.92 + }, + "D11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 47.24, + "z": 0.92 + }, + "E11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 38.24, + "z": 0.92 + }, + "F11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 29.24, + "z": 0.92 + }, + "G11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 20.24, + "z": 0.92 + }, + "H11": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 104.38, + "y": 11.24, + "z": 0.92 + }, + "A12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 74.24, + "z": 0.92 + }, + "B12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 65.24, + "z": 0.92 + }, + "C12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 56.24, + "z": 0.92 + }, + "D12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 47.24, + "z": 0.92 + }, + "E12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 38.24, + "z": 0.92 + }, + "F12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 29.24, + "z": 0.92 + }, + "G12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 20.24, + "z": 0.92 + }, + "H12": { + "depth": 14.78, + "shape": "circular", + "diameter": 5.34, + "totalLiquidVolume": 100, + "x": 113.38, + "y": 11.24, + "z": 0.92 + } + }, + "groups": [ + { + "metadata": { "wellBottomShape": "v" }, + "wells": [ + "A1", + "B1", + "C1", + "D1", + "E1", + "F1", + "G1", + "H1", + "A2", + "B2", + "C2", + "D2", + "E2", + "F2", + "G2", + "H2", + "A3", + "B3", + "C3", + "D3", + "E3", + "F3", + "G3", + "H3", + "A4", + "B4", + "C4", + "D4", + "E4", + "F4", + "G4", + "H4", + "A5", + "B5", + "C5", + "D5", + "E5", + "F5", + "G5", + "H5", + "A6", + "B6", + "C6", + "D6", + "E6", + "F6", + "G6", + "H6", + "A7", + "B7", + "C7", + "D7", + "E7", + "F7", + "G7", + "H7", + "A8", + "B8", + "C8", + "D8", + "E8", + "F8", + "G8", + "H8", + "A9", + "B9", + "C9", + "D9", + "E9", + "F9", + "G9", + "H9", + "A10", + "B10", + "C10", + "D10", + "E10", + "F10", + "G10", + "H10", + "A11", + "B11", + "C11", + "D11", + "E11", + "F11", + "G11", + "H11", + "A12", + "B12", + "C12", + "D12", + "E12", + "F12", + "G12", + "H12" + ] + } + ], + "parameters": { + "format": "96Standard", + "isTiprack": false, + "isMagneticModuleCompatible": true, + "magneticModuleEngageHeight": 20, + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt" + }, + "namespace": "opentrons", + "version": 2, + "schemaVersion": 2, + "cornerOffsetFromSlot": { "x": 0, "y": 0, "z": 0 }, + "stackingOffsetWithLabware": { + "opentrons_96_pcr_adapter": { "x": 0, "y": 0, "z": 10.2 }, + "opentrons_96_well_aluminum_block": { "x": 0, "y": 0, "z": 12.66 } + }, + "stackingOffsetWithModule": { + "thermocyclerModuleV2": { "x": 0, "y": 0, "z": 10.8 } + } + } + }, + "liquidSchemaId": "opentronsLiquidSchemaV1", + "liquids": {}, + "commandSchemaId": "opentronsCommandSchemaV8", + "commands": [ + { + "key": "dd8e7395-4f5d-47da-932c-581e6b330102", + "commandType": "loadPipette", + "params": { + "pipetteName": "p50_single_flex", + "mount": "left", + "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0" + } + }, + { + "key": "069341d0-374a-457f-811a-beb25f824ceb", + "commandType": "loadModule", + "params": { + "model": "temperatureModuleV2", + "location": { "slotName": "D3" }, + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType" + } + }, + { + "key": "f2dbc8cc-b373-4043-b9f3-68f5eae4d69d", + "commandType": "loadModule", + "params": { + "model": "temperatureModuleV2", + "location": { "slotName": "C3" }, + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType" + } + }, + { + "key": "f425f1d1-02c9-488b-865b-13f95497c9e8", + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 96 Well Aluminum Block", + "labwareId": "32b596f6-79bb-4ad8-a34a-c44620fdb68f:opentrons/opentrons_96_well_aluminum_block/1", + "loadName": "opentrons_96_well_aluminum_block", + "namespace": "opentrons", + "version": 1, + "location": { + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType" + } + } + }, + { + "key": "ecc436f2-34ab-42bc-9dcd-12cbcd00a835", + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons Flex 96 Tip Rack 50 µL", + "labwareId": "0d39213c-49c2-4170-bf19-4c09e1b72aca:opentrons/opentrons_flex_96_tiprack_50ul/1", + "loadName": "opentrons_flex_96_tiprack_50ul", + "namespace": "opentrons", + "version": 1, + "location": { "slotName": "C2" } + } + }, + { + "key": "212e0de6-00dc-460b-ac07-cd6a12fbc04f", + "commandType": "loadLabware", + "params": { + "displayName": "Opentrons 24 Well Aluminum Block with NEST 1.5 mL Screwcap", + "labwareId": "c3c4e3fd-069f-4f3d-9b70-016a20f36de7:opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/1", + "loadName": "opentrons_24_aluminumblock_nest_1.5ml_screwcap", + "namespace": "opentrons", + "version": 1, + "location": { + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType" + } + } + }, + { + "key": "a8b0443f-afad-4e59-91a7-5b61f7e6836e", + "commandType": "loadLabware", + "params": { + "displayName": "NEST 96 Well Plate 100 µL PCR Full Skirt", + "labwareId": "c0093e5f-3f7d-4cbf-aa17-d88394108501:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "loadName": "nest_96_wellplate_100ul_pcr_full_skirt", + "namespace": "opentrons", + "version": 2, + "location": { + "labwareId": "32b596f6-79bb-4ad8-a34a-c44620fdb68f:opentrons/opentrons_96_well_aluminum_block/1" + } + } + }, + { + "commandType": "pickUpTip", + "key": "ae442c49-0f55-4982-9796-91213f5c51f9", + "params": { + "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0", + "labwareId": "0d39213c-49c2-4170-bf19-4c09e1b72aca:opentrons/opentrons_flex_96_tiprack_50ul/1", + "wellName": "A1" + } + }, + { + "commandType": "configureForVolume", + "key": "1d992cbb-79cc-426e-9b4a-29768a75f092", + "params": { + "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0", + "volume": 10 + } + }, + { + "commandType": "aspirate", + "key": "5e59176d-a8e7-4c39-9337-053a2d6e02db", + "params": { + "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0", + "volume": 10, + "labwareId": "c0093e5f-3f7d-4cbf-aa17-d88394108501:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "wellName": "C1", + "wellLocation": { + "origin": "bottom", + "offset": { "z": 29, "x": 2, "y": -2 } + }, + "flowRate": 35 + } + }, + { + "commandType": "dispense", + "key": "4e9f4b46-e095-40e2-95c8-abed29538675", + "params": { + "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0", + "volume": 10, + "labwareId": "c3c4e3fd-069f-4f3d-9b70-016a20f36de7:opentrons/opentrons_24_aluminumblock_nest_1.5ml_screwcap/1", + "wellName": "B3", + "wellLocation": { + "origin": "bottom", + "offset": { "z": 1, "x": 0, "y": 0 } + }, + "flowRate": 57 + } + }, + { + "commandType": "blowout", + "key": "5ae1dc28-2095-453a-88e4-2e6dd50e5c4d", + "params": { + "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0", + "labwareId": "c0093e5f-3f7d-4cbf-aa17-d88394108501:opentrons/nest_96_wellplate_100ul_pcr_full_skirt/2", + "wellName": "C1", + "flowRate": 20, + "wellLocation": { "origin": "top", "offset": { "z": -12 } } + } + }, + { + "commandType": "moveToAddressableAreaForDropTip", + "key": "7786878c-2a71-41b6-9971-14ea88c3bf9d", + "params": { + "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0", + "addressableAreaName": "movableTrashA3", + "offset": { "x": 0, "y": 0, "z": 0 }, + "alternateDropLocation": true + } + }, + { + "commandType": "dropTipInPlace", + "key": "77da638e-5609-40a6-be69-1309b7ae9eb6", + "params": { "pipetteId": "21087f15-4c03-4587-8a2b-1ba0b5a501a0" } + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "key": "8eedd2c4-7474-4246-a896-f93040722a01", + "params": { + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType", + "celsius": 40 + } + }, + { + "commandType": "temperatureModule/waitForTemperature", + "key": "a4cad3c5-b771-4278-8776-5b5417ac659e", + "params": { + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType", + "celsius": 40 + } + }, + { + "commandType": "temperatureModule/setTargetTemperature", + "key": "9849f4ff-8723-4851-a637-3d311d9af210", + "params": { + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType", + "celsius": 4 + } + }, + { + "commandType": "temperatureModule/waitForTemperature", + "key": "d3c30460-b6a7-4834-8c86-f1f3302e670f", + "params": { + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType", + "celsius": 4 + } + }, + { + "commandType": "temperatureModule/deactivate", + "key": "82b767e6-0bfb-4175-8780-e48fbbc8f35c", + "params": { + "moduleId": "d6966555-6c0e-45e0-8056-428d7c486401:temperatureModuleType" + } + }, + { + "commandType": "temperatureModule/deactivate", + "key": "60f2762f-a1ef-40cc-a729-95cf514640ea", + "params": { + "moduleId": "b9c56153-9026-42d1-8113-949e15254571:temperatureModuleType" + } + } + ], + "commandAnnotationSchemaId": "opentronsCommandAnnotationSchemaV1", + "commandAnnotations": [] +} diff --git a/protocol-designer/fixtures/protocol/8/ninetySixChannelFullAndColumn.json b/protocol-designer/fixtures/protocol/8/ninetySixChannelFullAndColumn.json index 702945f0b8c..d19277a5d35 100644 --- a/protocol-designer/fixtures/protocol/8/ninetySixChannelFullAndColumn.json +++ b/protocol-designer/fixtures/protocol/8/ninetySixChannelFullAndColumn.json @@ -6,7 +6,7 @@ "author": "", "description": "", "created": 1701805621086, - "lastModified": 1711742604736, + "lastModified": 1714570523087, "category": null, "subcategory": null, "tags": [] @@ -15,10 +15,10 @@ "name": "opentrons/protocol-designer", "version": "8.1.0", "data": { - "_internalAppBuildDate": "Fri, 29 Mar 2024 20:00:04 GMT", + "_internalAppBuildDate": "Wed, 01 May 2024 13:32:34 GMT", "defaultValues": { "aspirate_mmFromBottom": 1, - "dispense_mmFromBottom": 0.5, + "dispense_mmFromBottom": 1, "touchTip_mmFromTop": -1, "blowout_mmFromTop": 0 }, @@ -27,7 +27,7 @@ "opentrons/opentrons_flex_96_tiprack_50ul/1" ] }, - "dismissedWarnings": { "form": {}, "timeline": {} }, + "dismissedWarnings": { "form": [], "timeline": [] }, "ingredients": {}, "ingredLocations": { "9bd16b50-4ae9-4cfd-8583-3378087e6a6c:opentrons/opentrons_flex_96_tiprack_50ul/1": {} @@ -50,7 +50,7 @@ "83a095fa-b649-4105-99d4-177f1a3f363a": { "pipette": "de7da440-95ec-43e8-8723-851321fbd6f9", "volume": "10", - "tipRack": "75aa666f-98d8-4af9-908e-963ced428580:opentrons/opentrons_flex_96_tiprack_50ul/1", + "tipRack": "opentrons/opentrons_flex_96_tiprack_50ul/1", "changeTip": "always", "path": "single", "aspirate_wells_grouped": false, @@ -78,7 +78,6 @@ "dispense_touchTip_mmFromBottom": null, "disposalVolume_checkbox": true, "disposalVolume_volume": "5", - "blowout_z_offset": 0, "blowout_checkbox": false, "blowout_location": null, "preWetTip": false, @@ -98,6 +97,8 @@ "dispense_y_position": 0, "aspirate_x_position": 0, "aspirate_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "83a095fa-b649-4105-99d4-177f1a3f363a", "stepType": "moveLiquid", "stepName": "transfer", @@ -106,7 +107,7 @@ "f5ea3139-1585-4848-9d5f-832eb88c99ca": { "pipette": "de7da440-95ec-43e8-8723-851321fbd6f9", "volume": "10", - "tipRack": "75aa666f-98d8-4af9-908e-963ced428580:opentrons/opentrons_flex_96_tiprack_50ul/1", + "tipRack": "opentrons/opentrons_flex_96_tiprack_50ul/1", "changeTip": "always", "path": "single", "aspirate_wells_grouped": false, @@ -134,7 +135,6 @@ "dispense_touchTip_mmFromBottom": null, "disposalVolume_checkbox": true, "disposalVolume_volume": "5", - "blowout_z_offset": 0, "blowout_checkbox": false, "blowout_location": null, "preWetTip": false, @@ -154,6 +154,8 @@ "dispense_y_position": 0, "aspirate_x_position": 0, "aspirate_y_position": 0, + "blowout_z_offset": 0, + "blowout_flowRate": null, "id": "f5ea3139-1585-4848-9d5f-832eb88c99ca", "stepType": "moveLiquid", "stepName": "transfer", @@ -2243,7 +2245,7 @@ "commandSchemaId": "opentronsCommandSchemaV8", "commands": [ { - "key": "7224d1a7-a7b3-4bb3-bc5c-65aa98565616", + "key": "1370b9a4-1e65-4203-9106-896db3db3bd3", "commandType": "loadPipette", "params": { "pipetteName": "p1000_96", @@ -2252,7 +2254,7 @@ } }, { - "key": "dcddeb3c-66d9-4868-9f9f-fbd47d754fc4", + "key": "d65a7183-875a-443a-b26a-6a2470291dce", "commandType": "loadLabware", "params": { "displayName": "Opentrons Flex 96 Tip Rack Adapter", @@ -2264,7 +2266,7 @@ } }, { - "key": "c206434e-aa1e-44ee-8667-29accd89941a", + "key": "d05d92c6-d0d1-4886-aaef-c180b6953763", "commandType": "loadLabware", "params": { "displayName": "Opentrons Flex 96 Tip Rack 50 µL", @@ -2278,7 +2280,7 @@ } }, { - "key": "3cdba839-f0fa-4e50-8399-94338cced032", + "key": "bb161828-5fd9-4d84-8209-c1f5de48ba99", "commandType": "loadLabware", "params": { "displayName": "Bio-Rad 96 Well Plate 200 µL PCR", @@ -2290,7 +2292,7 @@ } }, { - "key": "7f75bf03-3036-4847-afbf-4bbefdf6cee8", + "key": "8821778d-8456-4c74-8e29-da7604c012ec", "commandType": "loadLabware", "params": { "displayName": "Opentrons Flex 96 Tip Rack 50 µL", @@ -2303,7 +2305,7 @@ }, { "commandType": "configureNozzleLayout", - "key": "2326c781-0416-4319-b954-16929077b5e3", + "key": "a2a88d61-5c01-45bf-bcb8-91c893328b53", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "configurationParams": { "style": "ALL" } @@ -2311,7 +2313,7 @@ }, { "commandType": "pickUpTip", - "key": "86f7ac25-739d-4a38-8bf4-4730a8e6cce7", + "key": "747ca334-8955-4069-8473-351be7666ee0", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "labwareId": "75aa666f-98d8-4af9-908e-963ced428580:opentrons/opentrons_flex_96_tiprack_50ul/1", @@ -2320,7 +2322,7 @@ }, { "commandType": "aspirate", - "key": "0113e27d-0949-4305-8f0b-5467753dfac3", + "key": "b1ffc410-ed41-4c83-bebd-145ae0ca05d8", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "volume": 10, @@ -2335,7 +2337,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "79c134c0-5042-4243-8a81-95ad54594ab3", + "key": "9100f4e2-b808-43d3-8c72-355dcce98b33", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "addressableAreaName": "movableTrashA3", @@ -2344,7 +2346,7 @@ }, { "commandType": "dispenseInPlace", - "key": "2ce5b534-62b3-4415-bdd6-747fb57545be", + "key": "4088260b-f0e9-4d3a-852c-13b7d467cc2d", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "volume": 10, @@ -2353,7 +2355,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "7212407e-0bd1-4ef5-a8c7-4c6f95cee357", + "key": "8169cddb-5337-4bcf-bbfb-eb6307764b90", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "addressableAreaName": "movableTrashA3", @@ -2363,12 +2365,12 @@ }, { "commandType": "dropTipInPlace", - "key": "55286f40-e2c1-44f6-a3f3-032bfbf89f3d", + "key": "e0db70c1-546f-44ce-91c7-b18c37fcbcef", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9" } }, { "commandType": "configureNozzleLayout", - "key": "47ab8f5c-a2dc-40e0-a6db-3c2ff6c48778", + "key": "97fb0aee-ce45-427f-b3af-b9b9a1923778", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "configurationParams": { "primaryNozzle": "A12", "style": "COLUMN" } @@ -2376,7 +2378,7 @@ }, { "commandType": "pickUpTip", - "key": "c6f563fd-4f3f-4bd8-833e-3519c4fb0026", + "key": "203d9332-ea93-4047-97e8-58516d18373b", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "labwareId": "9bd16b50-4ae9-4cfd-8583-3378087e6a6c:opentrons/opentrons_flex_96_tiprack_50ul/1", @@ -2385,7 +2387,7 @@ }, { "commandType": "aspirate", - "key": "ee919504-5c21-40c5-9205-00e8aee06718", + "key": "3b5ef144-b0a9-4136-8579-3ddef13d60d1", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "volume": 10, @@ -2400,7 +2402,7 @@ }, { "commandType": "moveToAddressableArea", - "key": "6c1dbdec-0d3a-4693-810b-b28984382fce", + "key": "b1b0cb96-cf8a-4c19-ad8b-7a515b720c80", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "addressableAreaName": "movableTrashA3", @@ -2409,7 +2411,7 @@ }, { "commandType": "dispenseInPlace", - "key": "d7ad2bf5-3033-4168-adf4-082306dc5467", + "key": "b49b05e6-f82a-4dd3-9288-8f5eba004b2a", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "volume": 10, @@ -2418,7 +2420,7 @@ }, { "commandType": "moveToAddressableAreaForDropTip", - "key": "9ca4968e-0995-4354-95a1-37964599784f", + "key": "6e0104da-5608-490a-ae14-e67db91331fe", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9", "addressableAreaName": "movableTrashA3", @@ -2428,7 +2430,7 @@ }, { "commandType": "dropTipInPlace", - "key": "548bbf90-da13-4487-a878-dd363b17d906", + "key": "a1266ec5-4602-43e7-a5e5-6512e7560eb9", "params": { "pipetteId": "de7da440-95ec-43e8-8723-851321fbd6f9" } } ], diff --git a/protocol-designer/src/analytics/actions.ts b/protocol-designer/src/analytics/actions.ts index eee86cd900a..a6fa4fc18cf 100644 --- a/protocol-designer/src/analytics/actions.ts +++ b/protocol-designer/src/analytics/actions.ts @@ -1,4 +1,5 @@ -import { setMixpanelTracking, AnalyticsEvent } from './mixpanel' +import { setMixpanelTracking } from './mixpanel' +import type { AnalyticsEvent } from './mixpanel' export interface SetOptIn { type: 'SET_OPT_IN' diff --git a/protocol-designer/src/analytics/index.ts b/protocol-designer/src/analytics/index.ts index 5f980d62427..4e0941b0228 100644 --- a/protocol-designer/src/analytics/index.ts +++ b/protocol-designer/src/analytics/index.ts @@ -1,5 +1,6 @@ import * as actions from './actions' import * as selectors from './selectors' -import { RootState, rootReducer } from './reducers' +import { rootReducer } from './reducers' +import type { RootState } from './reducers' export { actions, selectors, rootReducer } export type { RootState } diff --git a/protocol-designer/src/analytics/middleware.ts b/protocol-designer/src/analytics/middleware.ts index d089f988261..5fd88ab3fb3 100644 --- a/protocol-designer/src/analytics/middleware.ts +++ b/protocol-designer/src/analytics/middleware.ts @@ -5,15 +5,16 @@ import { getSavedStepForms, } from '../step-forms/selectors' import { getFileMetadata } from '../file-data/selectors' -import { trackEvent, AnalyticsEvent } from './mixpanel' +import { trackEvent } from './mixpanel' import { getHasOptedIn } from './selectors' import { flattenNestedProperties } from './utils/flattenNestedProperties' -import { Middleware } from 'redux' -import { BaseState } from '../types' -import { FormData, StepIdType, StepType } from '../form-types' -import { StepArgsAndErrors } from '../steplist' -import { SaveStepFormAction } from '../ui/steps/actions/thunks' -import { AnalyticsEventAction } from './actions' +import type { Middleware } from 'redux' +import type { BaseState } from '../types' +import type { FormData, StepIdType, StepType } from '../form-types' +import type { StepArgsAndErrors } from '../steplist' +import type { SaveStepFormAction } from '../ui/steps/actions/thunks' +import type { AnalyticsEventAction } from './actions' +import type { AnalyticsEvent } from './mixpanel' // Converts Redux actions to analytics events (read: Mixpanel events). // Returns null if there is no analytics event associated with the action, diff --git a/protocol-designer/src/analytics/mixpanel.ts b/protocol-designer/src/analytics/mixpanel.ts index 075c194318a..c0ed678959b 100644 --- a/protocol-designer/src/analytics/mixpanel.ts +++ b/protocol-designer/src/analytics/mixpanel.ts @@ -2,7 +2,7 @@ import mixpanel from 'mixpanel-browser' import { getIsProduction } from '../networking/opentronsWebApi' import { getHasOptedIn } from './selectors' -import { BaseState } from '../types' +import type { BaseState } from '../types' // TODO(IL, 2020-09-09): AnalyticsEvent type copied from app/src/analytics/types.js, consider merging export type AnalyticsEvent = diff --git a/protocol-designer/src/analytics/reducers.ts b/protocol-designer/src/analytics/reducers.ts index c0beb172283..6d4f71ebaa6 100644 --- a/protocol-designer/src/analytics/reducers.ts +++ b/protocol-designer/src/analytics/reducers.ts @@ -1,8 +1,9 @@ -import { combineReducers, Reducer } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' -import { Action } from '../types' -import { SetOptIn } from './actions' -import { RehydratePersistedAction } from '../persist' +import type { Reducer } from 'redux' +import type { Action } from '../types' +import type { SetOptIn } from './actions' +import type { RehydratePersistedAction } from '../persist' type OptInState = boolean | null const optInInitialState = null // @ts-expect-error(sb, 2021-6-17): cannot use string literals as action type diff --git a/protocol-designer/src/analytics/selectors.ts b/protocol-designer/src/analytics/selectors.ts index 36268e7da5f..77a37bbfcb1 100644 --- a/protocol-designer/src/analytics/selectors.ts +++ b/protocol-designer/src/analytics/selectors.ts @@ -1,3 +1,3 @@ -import { BaseState } from '../types' +import type { BaseState } from '../types' export const getHasOptedIn = (state: BaseState): boolean | null => state.analytics.hasOptedIn diff --git a/protocol-designer/src/components/BatchEditForm/BatchEditMix.tsx b/protocol-designer/src/components/BatchEditForm/BatchEditMix.tsx index 76074bc8e3b..a2caf67761f 100644 --- a/protocol-designer/src/components/BatchEditForm/BatchEditMix.tsx +++ b/protocol-designer/src/components/BatchEditForm/BatchEditMix.tsx @@ -22,12 +22,12 @@ import { getLabwareFieldForPositioningField, } from '../StepEditForm/utils' import { FormColumn } from './FormColumn' -import { FieldPropsByName } from '../StepEditForm/types' -import { WellOrderOption } from '../../form-types' // TODO(IL, 2021-03-01): refactor these fragmented style rules (see #7402) import formStyles from '../forms/forms.module.css' import styles from '../StepEditForm/StepEditForm.module.css' import buttonStyles from '../StepEditForm/ButtonRow/styles.module.css' +import type { FieldPropsByName } from '../StepEditForm/types' +import type { WellOrderOption } from '../../form-types' interface BatchEditMixProps { batchEditFormHasChanges: boolean diff --git a/protocol-designer/src/components/BatchEditForm/BatchEditMoveLiquid.tsx b/protocol-designer/src/components/BatchEditForm/BatchEditMoveLiquid.tsx index d8d56226d63..b6f5617cc73 100644 --- a/protocol-designer/src/components/BatchEditForm/BatchEditMoveLiquid.tsx +++ b/protocol-designer/src/components/BatchEditForm/BatchEditMoveLiquid.tsx @@ -23,12 +23,12 @@ import { getLabwareFieldForPositioningField, } from '../StepEditForm/utils' import { FormColumn } from './FormColumn' -import { FieldPropsByName } from '../StepEditForm/types' -import { WellOrderOption } from '../../form-types' // TODO(IL, 2021-03-01): refactor these fragmented style rules (see #7402) import formStyles from '../forms/forms.module.css' import styles from '../StepEditForm/StepEditForm.module.css' import buttonStyles from '../StepEditForm/ButtonRow/styles.module.css' +import type { FieldPropsByName } from '../StepEditForm/types' +import type { WellOrderOption } from '../../form-types' const SourceDestBatchEditMoveLiquidFields = (props: { prefix: 'aspirate' | 'dispense' diff --git a/protocol-designer/src/components/BatchEditForm/index.tsx b/protocol-designer/src/components/BatchEditForm/index.tsx index 28b779d094f..71de584a43d 100644 --- a/protocol-designer/src/components/BatchEditForm/index.tsx +++ b/protocol-designer/src/components/BatchEditForm/index.tsx @@ -15,11 +15,12 @@ import { resetBatchEditFieldChanges, saveStepFormsMulti, } from '../../step-forms/actions' -import { maskField, StepFieldName } from '../../steplist/fieldLevel' +import { maskField } from '../../steplist/fieldLevel' import { BatchEditMoveLiquid } from './BatchEditMoveLiquid' import { BatchEditMix } from './BatchEditMix' -import { ThunkDispatch } from 'redux-thunk' -import { BaseState } from '../../types' +import type { StepFieldName } from '../../steplist/fieldLevel' +import type { ThunkDispatch } from 'redux-thunk' +import type { BaseState } from '../../types' export const BatchEditForm = (): JSX.Element => { const { t } = useTranslation('tooltip') diff --git a/protocol-designer/src/components/BatchEditForm/makeBatchEditFieldProps.ts b/protocol-designer/src/components/BatchEditForm/makeBatchEditFieldProps.ts index 57564e5537b..4838baf0305 100644 --- a/protocol-designer/src/components/BatchEditForm/makeBatchEditFieldProps.ts +++ b/protocol-designer/src/components/BatchEditForm/makeBatchEditFieldProps.ts @@ -1,14 +1,14 @@ import noop from 'lodash/noop' -import { - DisabledFields, - MultiselectFieldValues, -} from '../../ui/steps/selectors' import { getFieldDefaultTooltip, getFieldIndeterminateTooltip, } from '../StepEditForm/utils' -import { FieldPropsByName } from '../StepEditForm/types' -import { StepFieldName } from '../../form-types' +import type { + DisabledFields, + MultiselectFieldValues, +} from '../../ui/steps/selectors' +import type { FieldPropsByName } from '../StepEditForm/types' +import type { StepFieldName } from '../../form-types' export const makeBatchEditFieldProps = ( fieldValues: MultiselectFieldValues, disabledFields: DisabledFields, diff --git a/protocol-designer/src/components/ColorPicker/index.tsx b/protocol-designer/src/components/ColorPicker/index.tsx index 65fb33d1980..26d1cc50607 100644 --- a/protocol-designer/src/components/ColorPicker/index.tsx +++ b/protocol-designer/src/components/ColorPicker/index.tsx @@ -1,7 +1,8 @@ import * as React from 'react' import cx from 'classnames' -import { ColorResult, TwitterPicker } from 'react-color' +import { TwitterPicker } from 'react-color' import { DEFAULT_LIQUID_COLORS } from '@opentrons/shared-data' +import type { ColorResult } from 'react-color' import styles from './ColorPicker.module.css' @@ -11,6 +12,7 @@ interface ColorPickerProps { } export function ColorPicker(props: ColorPickerProps): JSX.Element { + const { value, onChange } = props const [showColorPicker, setShowColorPicker] = React.useState(false) return ( @@ -27,7 +29,7 @@ export function ColorPicker(props: ColorPickerProps): JSX.Element {
    @@ -39,9 +41,9 @@ export function ColorPicker(props: ColorPickerProps): JSX.Element { /> { - props.onChange(color.hex) + onChange(color.hex) }} />
    diff --git a/protocol-designer/src/components/DeckSetup/LabwareOnDeck.tsx b/protocol-designer/src/components/DeckSetup/LabwareOnDeck.tsx index c84239e3b10..e36272d4ada 100644 --- a/protocol-designer/src/components/DeckSetup/LabwareOnDeck.tsx +++ b/protocol-designer/src/components/DeckSetup/LabwareOnDeck.tsx @@ -6,8 +6,8 @@ import { selectors } from '../../labware-ingred/selectors' import * as wellContentsSelectors from '../../top-selectors/well-contents' import * as highlightSelectors from '../../top-selectors/substep-highlight' import * as tipContentsSelectors from '../../top-selectors/tip-contents' -import { LabwareOnDeck as LabwareOnDeckType } from '../../step-forms' import { wellFillFromWellContents } from '../labware/utils' +import type { LabwareOnDeck as LabwareOnDeckType } from '../../step-forms' interface LabwareOnDeckProps { className?: string diff --git a/protocol-designer/src/components/DeckSetup/LabwareOverlays/AdapterControls.tsx b/protocol-designer/src/components/DeckSetup/LabwareOverlays/AdapterControls.tsx index 172b5b1129a..44da52c8787 100644 --- a/protocol-designer/src/components/DeckSetup/LabwareOverlays/AdapterControls.tsx +++ b/protocol-designer/src/components/DeckSetup/LabwareOverlays/AdapterControls.tsx @@ -1,6 +1,6 @@ import * as React from 'react' import { useDispatch, useSelector } from 'react-redux' -import { DropTargetMonitor, useDrop } from 'react-dnd' +import { useDrop } from 'react-dnd' import cx from 'classnames' import noop from 'lodash/noop' import { Icon, RobotCoordsForeignDiv } from '@opentrons/components' @@ -15,10 +15,12 @@ import { openAddLabwareModal, } from '../../../labware-ingred/actions' import { selectors as labwareDefSelectors } from '../../../labware-defs' -import { START_TERMINAL_ITEM_ID, TerminalItemId } from '../../../steplist' +import { START_TERMINAL_ITEM_ID } from '../../../steplist' import { BlockedSlot } from './BlockedSlot' +import type { DropTargetMonitor } from 'react-dnd' import type { CoordinateTuple, Dimensions } from '@opentrons/shared-data' +import type { TerminalItemId } from '../../../steplist' import type { LabwareOnDeck } from '../../../step-forms' import styles from './LabwareOverlays.module.css' diff --git a/protocol-designer/src/components/DeckSetup/LabwareOverlays/EditLabware.tsx b/protocol-designer/src/components/DeckSetup/LabwareOverlays/EditLabware.tsx index d75cefe5b71..3c3e577ecf0 100644 --- a/protocol-designer/src/components/DeckSetup/LabwareOverlays/EditLabware.tsx +++ b/protocol-designer/src/components/DeckSetup/LabwareOverlays/EditLabware.tsx @@ -4,7 +4,7 @@ import { useDispatch, useSelector } from 'react-redux' import cx from 'classnames' import { Icon } from '@opentrons/components' import { getLabwareDisplayName } from '@opentrons/shared-data' -import { DropTargetMonitor, useDrag, useDrop } from 'react-dnd' +import { useDrag, useDrop } from 'react-dnd' import { NameThisLabware } from './NameThisLabware' import { DND_TYPES } from '../../../constants' import { @@ -14,9 +14,10 @@ import { openIngredientSelector, } from '../../../labware-ingred/actions' import { selectors as labwareIngredSelectors } from '../../../labware-ingred/selectors' -import { ThunkDispatch } from '../../../types' -import { LabwareOnDeck } from '../../../step-forms' import styles from './LabwareOverlays.module.css' +import type { DropTargetMonitor } from 'react-dnd' +import type { ThunkDispatch } from '../../../types' +import type { LabwareOnDeck } from '../../../step-forms' interface Props { labwareOnDeck: LabwareOnDeck diff --git a/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareControls.tsx b/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareControls.tsx index 34a990e3646..0fba71f5c7b 100644 --- a/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareControls.tsx +++ b/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareControls.tsx @@ -2,8 +2,7 @@ import * as React from 'react' import cx from 'classnames' import { RobotCoordsForeignDiv } from '@opentrons/components' -import { START_TERMINAL_ITEM_ID, TerminalItemId } from '../../../steplist' -import { LabwareOnDeck } from '../../../step-forms' +import { START_TERMINAL_ITEM_ID } from '../../../steplist' import { BlockedSlot } from './BlockedSlot' import { BrowseLabware } from './BrowseLabware' import { EditLabware } from './EditLabware' @@ -12,6 +11,8 @@ import { LabwareHighlight } from './LabwareHighlight' import styles from './LabwareOverlays.module.css' import type { CoordinateTuple } from '@opentrons/shared-data' +import type { TerminalItemId } from '../../../steplist' +import type { LabwareOnDeck } from '../../../step-forms' interface LabwareControlsProps { labwareOnDeck: LabwareOnDeck diff --git a/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareName.tsx b/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareName.tsx index 7efdc0d2949..339e4af0176 100644 --- a/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareName.tsx +++ b/protocol-designer/src/components/DeckSetup/LabwareOverlays/LabwareName.tsx @@ -3,7 +3,7 @@ import { useSelector } from 'react-redux' import { LabwareNameOverlay, truncateString } from '@opentrons/components' import { getLabwareDisplayName } from '@opentrons/shared-data' import { selectors as uiLabwareSelectors } from '../../../ui/labware' -import { LabwareOnDeck } from '../../../step-forms' +import type { LabwareOnDeck } from '../../../step-forms' interface LabwareNameProps { labwareOnDeck: LabwareOnDeck } diff --git a/protocol-designer/src/components/DeckSetup/LabwareOverlays/SlotControls.tsx b/protocol-designer/src/components/DeckSetup/LabwareOverlays/SlotControls.tsx index 2849506cefb..283c8712ace 100644 --- a/protocol-designer/src/components/DeckSetup/LabwareOverlays/SlotControls.tsx +++ b/protocol-designer/src/components/DeckSetup/LabwareOverlays/SlotControls.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { useSelector, useDispatch } from 'react-redux' import noop from 'lodash/noop' -import { useDrop, DropTargetMonitor, useDrag } from 'react-dnd' +import { useDrop, useDrag } from 'react-dnd' import cx from 'classnames' import { Icon, RobotCoordsForeignDiv } from '@opentrons/components' import { DND_TYPES } from '../../../constants' @@ -15,16 +15,18 @@ import { openAddLabwareModal, } from '../../../labware-ingred/actions' import { selectors as labwareDefSelectors } from '../../../labware-defs' -import { START_TERMINAL_ITEM_ID, TerminalItemId } from '../../../steplist' +import { START_TERMINAL_ITEM_ID } from '../../../steplist' import { BlockedSlot } from './BlockedSlot' import styles from './LabwareOverlays.module.css' +import type { DropTargetMonitor } from 'react-dnd' import type { CoordinateTuple, Dimensions, ModuleType, } from '@opentrons/shared-data' import type { LabwareOnDeck } from '../../../step-forms' +import type { TerminalItemId } from '../../../steplist' interface SlotControlsProps { slotPosition: CoordinateTuple | null diff --git a/protocol-designer/src/components/DeckSetup/Ot2ModuleTag.tsx b/protocol-designer/src/components/DeckSetup/Ot2ModuleTag.tsx index 5809ed12b6a..abb43d417f0 100644 --- a/protocol-designer/src/components/DeckSetup/Ot2ModuleTag.tsx +++ b/protocol-designer/src/components/DeckSetup/Ot2ModuleTag.tsx @@ -8,11 +8,13 @@ import { } from '@opentrons/components' import { getModuleDisplayName, + THERMOCYCLER_MODULE_V1, + THERMOCYCLER_MODULE_V2, +} from '@opentrons/shared-data' +import type { ModuleDefinition, ModuleModel, ModuleOrientation, - THERMOCYCLER_MODULE_V1, - THERMOCYCLER_MODULE_V2, } from '@opentrons/shared-data' interface Ot2ModuleTagProps { diff --git a/protocol-designer/src/components/DeckSetup/index.tsx b/protocol-designer/src/components/DeckSetup/index.tsx index 698a49f2456..a99886c9873 100644 --- a/protocol-designer/src/components/DeckSetup/index.tsx +++ b/protocol-designer/src/components/DeckSetup/index.tsx @@ -10,17 +10,11 @@ import { RobotCoordinateSpaceWithRef, SingleSlotFixture, StagingAreaFixture, - StagingAreaLocation, - TrashCutoutId, useOnClickOutside, WasteChuteFixture, WasteChuteStagingAreaFixture, } from '@opentrons/components' -import { - AdditionalEquipmentEntity, - MODULES_WITH_COLLISION_ISSUES, - ModuleTemporalProperties, -} from '@opentrons/step-generation' +import { MODULES_WITH_COLLISION_ISSUES } from '@opentrons/step-generation' import { FLEX_ROBOT_TYPE, getAddressableAreaFromSlotId, @@ -43,17 +37,10 @@ import { selectors as labwareDefSelectors } from '../../labware-defs' import { selectors as featureFlagSelectors } from '../../feature-flags' import { getStagingAreaAddressableAreas } from '../../utils' -import { - getSlotIdsBlockedBySpanning, - getSlotIsEmpty, - InitialDeckSetup, - LabwareOnDeck as LabwareOnDeckType, - ModuleOnDeck, -} from '../../step-forms' +import { getSlotIdsBlockedBySpanning, getSlotIsEmpty } from '../../step-forms' import * as labwareIngredActions from '../../labware-ingred/actions' import { getDeckSetupForActiveItem } from '../../top-selectors/labware-locations' import { selectors as labwareIngredSelectors } from '../../labware-ingred/selectors' -import { TerminalItemId } from '../../steplist' import { getSelectedTerminalItemId } from '../../ui/steps' import { getRobotType } from '../../file-data/selectors' import { BrowseLabwareModal } from '../labware' @@ -69,6 +56,11 @@ import { Ot2ModuleTag } from './Ot2ModuleTag' import { SlotLabels } from './SlotLabels' import { getHasGen1MultiChannelPipette, getSwapBlocked } from './utils' +import type { + AdditionalEquipmentEntity, + ModuleTemporalProperties, +} from '@opentrons/step-generation' +import type { StagingAreaLocation, TrashCutoutId } from '@opentrons/components' import type { AddressableAreaName, CutoutFixture, @@ -76,6 +68,12 @@ import type { DeckDefinition, RobotType, } from '@opentrons/shared-data' +import type { TerminalItemId } from '../../steplist' +import type { + InitialDeckSetup, + LabwareOnDeck as LabwareOnDeckType, + ModuleOnDeck, +} from '../../step-forms' import styles from './DeckSetup.module.css' diff --git a/protocol-designer/src/components/DeckSetup/utils.ts b/protocol-designer/src/components/DeckSetup/utils.ts index a2d7e6d4af5..c21607050a1 100644 --- a/protocol-designer/src/components/DeckSetup/utils.ts +++ b/protocol-designer/src/components/DeckSetup/utils.ts @@ -1,10 +1,11 @@ -import { GEN_ONE_MULTI_PIPETTES, ModuleType } from '@opentrons/shared-data' -import { LabwareDefByDefURI } from '../../labware-defs' -import { InitialDeckSetup, LabwareOnDeck } from '../../step-forms' +import { GEN_ONE_MULTI_PIPETTES } from '@opentrons/shared-data' import { getLabwareIsCompatible, getLabwareIsCustom, } from '../../utils/labwareModuleCompatibility' +import type { InitialDeckSetup, LabwareOnDeck } from '../../step-forms' +import type { ModuleType } from '@opentrons/shared-data' +import type { LabwareDefByDefURI } from '../../labware-defs' export interface SwapBlockedArgs { hoveredLabware?: LabwareOnDeck | null diff --git a/protocol-designer/src/components/EditModules.tsx b/protocol-designer/src/components/EditModules.tsx index 7a4ef5b48c7..b3d62ac1c70 100644 --- a/protocol-designer/src/components/EditModules.tsx +++ b/protocol-designer/src/components/EditModules.tsx @@ -10,7 +10,6 @@ import { } from '../step-forms' import { moveDeckItem } from '../labware-ingred/actions/actions' import { getRobotType } from '../file-data/selectors' -import { getEnableMoam } from '../feature-flags/selectors' import { EditMultipleModulesModal } from './modals/EditModulesModal/EditMultipleModulesModal' import { useBlockingHint } from './Hints/useBlockingHint' import { MagneticModuleWarningModalContent } from './modals/EditModulesModal/MagneticModuleWarningModalContent' @@ -35,11 +34,8 @@ export const EditModules = (props: EditModulesProps): JSX.Element => { const { moduleId, moduleType } = moduleToEdit const _initialDeckSetup = useSelector(stepFormSelectors.getInitialDeckSetup) const robotType = useSelector(getRobotType) - const moamFf = useSelector(getEnableMoam) const showMultipleModuleModal = - robotType === FLEX_ROBOT_TYPE && - moduleType === TEMPERATURE_MODULE_TYPE && - moamFf + robotType === FLEX_ROBOT_TYPE && moduleType === TEMPERATURE_MODULE_TYPE const moduleOnDeck = moduleId ? _initialDeckSetup.modules[moduleId] : null const [ diff --git a/protocol-designer/src/components/FilePage.tsx b/protocol-designer/src/components/FilePage.tsx index 4df3bdf583d..edd055e6917 100644 --- a/protocol-designer/src/components/FilePage.tsx +++ b/protocol-designer/src/components/FilePage.tsx @@ -82,8 +82,9 @@ export const FilePage = (): JSX.Element => { const saveFileMetadata = (nextFormValues: FileMetadataFields): void => { dispatch(actions.saveFileMetadata(nextFormValues)) + setManualDirty(false) } - + const [isManualDirty, setManualDirty] = React.useState(false) const { handleSubmit, watch, @@ -91,7 +92,6 @@ export const FilePage = (): JSX.Element => { setValue, formState: { isDirty }, } = useForm({ defaultValues: formValues }) - // to ensure that values from watch are up to date if the defaultValues // change React.useEffect(() => { @@ -115,7 +115,6 @@ export const FilePage = (): JSX.Element => { 'author', 'description', ]) - return (
    @@ -155,6 +154,7 @@ export const FilePage = (): JSX.Element => { name="protocolName" value={protocolName} onChange={field.onChange} + onClick={() => setManualDirty(true)} /> )} /> @@ -172,6 +172,7 @@ export const FilePage = (): JSX.Element => { name="author" value={author} onChange={field.onChange} + onClick={() => setManualDirty(true)} /> )} /> @@ -190,6 +191,7 @@ export const FilePage = (): JSX.Element => { name="description" value={description} onChange={field.onChange} + onClick={() => setManualDirty(true)} /> )} /> @@ -198,9 +200,11 @@ export const FilePage = (): JSX.Element => { - {isDirty ? t('application:update') : t('application:updated')} + {isManualDirty + ? t('application:update') + : t('application:updated')}
    diff --git a/protocol-designer/src/components/FileSidebar/FileSidebar.tsx b/protocol-designer/src/components/FileSidebar/FileSidebar.tsx index 11b8d21053d..b083a17230f 100644 --- a/protocol-designer/src/components/FileSidebar/FileSidebar.tsx +++ b/protocol-designer/src/components/FileSidebar/FileSidebar.tsx @@ -127,12 +127,53 @@ function getWarningContent({ } const pipettesDetails = pipettesWithoutStep - .map(pipette => `${pipette.mount} ${pipette.spec.displayName}`) + .map(pipette => + pipette.spec.channels === 96 + ? `${pipette.spec.displayName} pipette` + : `${pipette.mount} ${pipette.spec.displayName} pipette` + ) .join(' and ') - const modulesDetails = modulesWithoutStep - .map(moduleOnDeck => t(`modules:module_long_names.${moduleOnDeck.type}`)) - .join(' and ') + const unusedModuleCounts = modulesWithoutStep.reduce<{ + [key: string]: number + }>((acc, mod) => { + if (!(mod.type in acc)) { + return { ...acc, [mod.type]: 1 } + } else { + return { ...acc, [mod.type]: acc[mod.type] + 1 } + } + }, {}) + + const modulesDetails = Object.keys(unusedModuleCounts) + // sorting by module count + .sort((k1, k2) => { + if (unusedModuleCounts[k1] < unusedModuleCounts[k2]) { + return 1 + } else if (unusedModuleCounts[k1] > unusedModuleCounts[k2]) { + return -1 + } else { + return 0 + } + }) + .map(modType => + unusedModuleCounts[modType] === 1 + ? t(`modules:module_long_names.${modType}`) + : `${t(`modules:module_long_names.${modType}`)}s` + ) + // transform list of modules with counts to string + .reduce((acc, modName, index, arr) => { + if (arr.length > 2) { + if (index === arr.length - 1) { + return `${acc} and ${modName}` + } else { + return `${acc}${modName}, ` + } + } else if (arr.length === 2) { + return index === 0 ? `${modName} and ` : `${acc}${modName}` + } else { + return modName + } + }, '') if (pipettesWithoutStep.length && modulesWithoutStep.length) { return { diff --git a/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx b/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx index 827af5a2aa8..11bda8345c6 100644 --- a/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx +++ b/protocol-designer/src/components/FileSidebar/__tests__/FileSidebar.test.tsx @@ -1,11 +1,7 @@ import * as React from 'react' import { vi, describe, it, expect, beforeEach, afterEach } from 'vitest' import { fireEvent, screen, cleanup } from '@testing-library/react' -import { - FLEX_ROBOT_TYPE, - LabwareDefinition2, - fixtureTiprack300ul, -} from '@opentrons/shared-data' +import { FLEX_ROBOT_TYPE, fixtureTiprack300ul } from '@opentrons/shared-data' import { renderWithProviders } from '../../../__testing-utils__' import { createFile, getRobotType } from '../../../file-data/selectors' import { @@ -24,6 +20,7 @@ import { useBlockingHint } from '../../Hints/useBlockingHint' import { getUnusedStagingAreas } from '../utils/getUnusedStagingAreas' import { getUnusedTrash } from '../utils/getUnusedTrash' import { FileSidebar } from '../FileSidebar' +import type { LabwareDefinition2 } from '@opentrons/shared-data' vi.mock('../../../step-forms/selectors') vi.mock('../../../load-file/selectors') @@ -233,4 +230,58 @@ describe('FileSidebar', () => { 'One or more modules specified in your protocol in Slot(s) A1,B1 are not currently used in any step. In order to run this protocol you will need to power up and connect the modules to your robot.' ) }) + it('renders the formatted unused pipettes and modules warning sorted by count', () => { + vi.mocked(getInitialDeckSetup).mockReturnValue({ + modules: { + moduleId1: { + slot: 'A1', + moduleState: {} as any, + id: 'moduleId', + type: 'thermocyclerModuleType', + model: 'thermocyclerModuleV2', + }, + moduleId2: { + slot: 'C3', + moduleState: {} as any, + id: 'moduleId1', + type: 'temperatureModuleType', + model: 'temperatureModuleV2', + }, + moduleId3: { + slot: 'D3', + moduleState: {} as any, + id: 'moduleId2', + type: 'temperatureModuleType', + model: 'temperatureModuleV2', + }, + moduleId4: { + slot: 'C1', + moduleState: {} as any, + id: 'moduleId3', + type: 'heaterShakerModuleType', + model: 'heaterShakerModuleV1', + }, + }, + pipettes: { + pipetteId: { + mount: 'left', + name: 'p1000_96', + id: 'pipetteId', + tiprackLabwareDef: [fixtureTiprack300ul as LabwareDefinition2], + tiprackDefURI: ['mockDefUri'], + spec: { + displayName: 'mock display name', + channels: 96, + } as any, + }, + }, + additionalEquipmentOnDeck: {}, + labware: {}, + }) + render() + fireEvent.click(screen.getByRole('button', { name: 'Export' })) + screen.getByText( + 'The mock display name pipette and Temperature modules, Thermocycler module, and Heater-Shaker module in your protocol are not currently used in any step. In order to run this protocol you will need to attach this pipette as well as power up and connect the module to your robot.' + ) + }) }) diff --git a/protocol-designer/src/components/FileSidebar/utils/getUnusedEntities.ts b/protocol-designer/src/components/FileSidebar/utils/getUnusedEntities.ts index 7968ef72ba2..12e34c04e75 100644 --- a/protocol-designer/src/components/FileSidebar/utils/getUnusedEntities.ts +++ b/protocol-designer/src/components/FileSidebar/utils/getUnusedEntities.ts @@ -1,6 +1,7 @@ import some from 'lodash/some' import reduce from 'lodash/reduce' -import { FLEX_ROBOT_TYPE, RobotType } from '@opentrons/shared-data' +import { FLEX_ROBOT_TYPE } from '@opentrons/shared-data' +import type { RobotType } from '@opentrons/shared-data' import type { SavedStepFormState } from '../../../step-forms' /** Pull out all entities never specified by step forms. Assumes that all forms share the entityKey */ diff --git a/protocol-designer/src/components/FileSidebar/utils/getUnusedTrash.ts b/protocol-designer/src/components/FileSidebar/utils/getUnusedTrash.ts index 634e0e07f42..5c97305c16b 100644 --- a/protocol-designer/src/components/FileSidebar/utils/getUnusedTrash.ts +++ b/protocol-designer/src/components/FileSidebar/utils/getUnusedTrash.ts @@ -1,10 +1,9 @@ import { - AddressableAreaName, - CreateCommand, FIXED_TRASH_ID, MOVABLE_TRASH_ADDRESSABLE_AREAS, WASTE_CHUTE_ADDRESSABLE_AREAS, } from '@opentrons/shared-data' +import type { AddressableAreaName, CreateCommand } from '@opentrons/shared-data' import type { InitialDeckSetup } from '../../../step-forms' interface UnusedTrash { @@ -39,13 +38,17 @@ export const getUnusedTrash = ( wasteChute != null ? commands?.some( command => - command.commandType === 'moveToAddressableArea' && - WASTE_CHUTE_ADDRESSABLE_AREAS.includes( - command.params.addressableAreaName as AddressableAreaName - ) + (command.commandType === 'moveToAddressableArea' && + WASTE_CHUTE_ADDRESSABLE_AREAS.includes( + command.params.addressableAreaName as AddressableAreaName + )) || + (command.commandType === 'moveLabware' && + command.params.newLocation !== 'offDeck' && + 'addressableAreaName' in command.params.newLocation && + command.params.newLocation.addressableAreaName === + 'gripperWasteChute') ) : null - return { trashBinUnused: trashBin != null && !hasTrashBinCommands, wasteChuteUnused: wasteChute != null && !hasWasteChuteCommands, diff --git a/protocol-designer/src/components/Hints/index.tsx b/protocol-designer/src/components/Hints/index.tsx index 6f5bafd2527..272096ea7e4 100644 --- a/protocol-designer/src/components/Hints/index.tsx +++ b/protocol-designer/src/components/Hints/index.tsx @@ -21,9 +21,13 @@ const HINT_IS_ALERT: HintKey[] = ['add_liquids_and_labware'] export const Hints = (): JSX.Element | null => { const { t } = useTranslation(['alert', 'nav', 'button']) - const [rememberDismissal, toggleRememberDismissal] = React.useState( + const [rememberDismissal, setRememberDismissal] = React.useState( false ) + + const toggleRememberDismissal = React.useCallback(() => { + setRememberDismissal(prevDismissal => !prevDismissal) + }, []) const hintKey = useSelector(selectors.getHint) const dispatch = useDispatch() const removeHint = (hintKey: HintKey): void => { @@ -159,9 +163,7 @@ export const Hints = (): JSX.Element | null => { { - toggleRememberDismissal(rememberDismissal) - }} + onChange={toggleRememberDismissal} value={rememberDismissal} /> {customLabwareURIs.length > 0 ? ( { }) render() fireEvent.click( - screen.getByText(nestedTextMatcher('adapter compatible labware')) + screen.getByText(nestedTextMatcher('Adapter Compatible Labware')) ) screen.getByText('Opentrons GEB 1000uL Tiprack') }) diff --git a/protocol-designer/src/components/LiquidPlacementForm/LiquidPlacementForm.tsx b/protocol-designer/src/components/LiquidPlacementForm/LiquidPlacementForm.tsx index aaba1ea3262..afecbcdbae9 100644 --- a/protocol-designer/src/components/LiquidPlacementForm/LiquidPlacementForm.tsx +++ b/protocol-designer/src/components/LiquidPlacementForm/LiquidPlacementForm.tsx @@ -237,7 +237,13 @@ export const LiquidPlacementForm = (): JSX.Element | null => { {t('button:save')} diff --git a/protocol-designer/src/components/LiquidPlacementModal.tsx b/protocol-designer/src/components/LiquidPlacementModal.tsx index bd7e95a02aa..d138c1d1678 100644 --- a/protocol-designer/src/components/LiquidPlacementModal.tsx +++ b/protocol-designer/src/components/LiquidPlacementModal.tsx @@ -3,7 +3,7 @@ import * as React from 'react' import { useDispatch, useSelector } from 'react-redux' import cx from 'classnames' import isEmpty from 'lodash/isEmpty' -import { WellGroup, WELL_LABEL_OPTIONS } from '@opentrons/components' +import { WELL_LABEL_OPTIONS } from '@opentrons/components' import { wellFillFromWellContents, @@ -18,6 +18,7 @@ import { LiquidPlacementForm } from './LiquidPlacementForm/LiquidPlacementForm' import { WellSelectionInstructions } from './WellSelectionInstructions' import styles from './LiquidPlacementModal.module.css' +import type { WellGroup } from '@opentrons/components' export function LiquidPlacementModal(): JSX.Element | null { const [highlightedWells, setHighlightedWells] = React.useState< diff --git a/protocol-designer/src/components/LiquidsPage/LiquidEditForm.tsx b/protocol-designer/src/components/LiquidsPage/LiquidEditForm.tsx index 887e1ac8f64..70ac3c07f4e 100644 --- a/protocol-designer/src/components/LiquidsPage/LiquidEditForm.tsx +++ b/protocol-designer/src/components/LiquidsPage/LiquidEditForm.tsx @@ -4,7 +4,6 @@ import { Controller, useForm } from 'react-hook-form' import { yupResolver } from '@hookform/resolvers/yup' import { useSelector } from 'react-redux' import * as Yup from 'yup' -import { swatchColors } from '../swatchColors' import { Card, DeprecatedCheckboxField, @@ -18,18 +17,23 @@ import { } from '@opentrons/components' import { DEPRECATED_WHALE_GREY } from '@opentrons/shared-data' import { selectors } from '../../labware-ingred/selectors' +import { swatchColors } from '../swatchColors' +import { ColorPicker } from '../ColorPicker' import styles from './LiquidEditForm.module.css' import formStyles from '../forms/forms.module.css' -import { LiquidGroup } from '../../labware-ingred/types' -import { ColorPicker } from '../ColorPicker' -import { ColorResult } from 'react-color' +import type { ColorResult } from 'react-color' +import type { LiquidGroup } from '../../labware-ingred/types' -type Props = LiquidGroup & { +interface LiquidEditFormProps { + serialize: boolean canDelete: boolean - deleteLiquidGroup: () => unknown - cancelForm: () => unknown - saveForm: (liquidGroup: LiquidGroup) => unknown + deleteLiquidGroup: () => void + cancelForm: () => void + saveForm: (liquidGroup: LiquidGroup) => void + displayColor?: string + name?: string | null + description?: string | null } interface LiquidEditFormValues { @@ -51,7 +55,7 @@ function checkColor(hex: string): boolean { const INVALID_DISPLAY_COLORS = ['#000000', '#ffffff', DEPRECATED_WHALE_GREY] -export const liquidEditFormSchema: any = Yup.object().shape({ +const liquidEditFormSchema: any = Yup.object().shape({ name: Yup.string().required('liquid name is required'), displayColor: Yup.string().test( 'disallowed-color', @@ -62,29 +66,38 @@ export const liquidEditFormSchema: any = Yup.object().shape({ } return !INVALID_DISPLAY_COLORS.includes(value) ? !checkColor(value) - : !INVALID_DISPLAY_COLORS.includes(value) + : false } ), description: Yup.string(), serialize: Yup.boolean(), }) -export function LiquidEditForm(props: Props): JSX.Element { - const { deleteLiquidGroup, cancelForm, canDelete, saveForm } = props +export function LiquidEditForm(props: LiquidEditFormProps): JSX.Element { + const { + deleteLiquidGroup, + cancelForm, + canDelete, + saveForm, + displayColor, + name: propName, + description: propDescription, + serialize, + } = props const selectedLiquid = useSelector(selectors.getSelectedLiquidGroupState) const nextGroupId = useSelector(selectors.getNextLiquidGroupId) const liquidId = selectedLiquid.liquidGroupId ?? nextGroupId const { t } = useTranslation(['form', 'button']) const initialValues: LiquidEditFormValues = { - name: props.name || '', - displayColor: props.displayColor ?? swatchColors(liquidId), - description: props.description || '', - serialize: props.serialize || false, + name: propName || '', + displayColor: displayColor ?? swatchColors(liquidId), + description: propDescription || '', + serialize: serialize || false, } const { handleSubmit, - formState: { errors, isDirty, touchedFields }, + formState: { errors, touchedFields }, control, watch, setValue, @@ -94,6 +107,7 @@ export function LiquidEditForm(props: Props): JSX.Element { }) const name = watch('name') const description = watch('description') + const color = watch('displayColor') const handleLiquidEdits = (values: LiquidEditFormValues): void => { saveForm({ @@ -150,9 +164,10 @@ export function LiquidEditForm(props: Props): JSX.Element { control={control} render={({ field }) => ( { setValue('displayColor', color) + field.onChange(color) }} /> )} @@ -166,7 +181,7 @@ export function LiquidEditForm(props: Props): JSX.Element { fontWeight={TYPOGRAPHY.fontWeightSemiBold} marginTop={errors.name != null ? '-0.25rem' : '0rem'} > - {errors.displayColor != null ? errors.displayColor : null} + {errors.displayColor != null ? errors.displayColor.message : null}
    @@ -201,7 +216,10 @@ export function LiquidEditForm(props: Props): JSX.Element { diff --git a/protocol-designer/src/components/LiquidsPage/index.tsx b/protocol-designer/src/components/LiquidsPage/index.tsx index 3b9f4f977fe..e6f4387e936 100644 --- a/protocol-designer/src/components/LiquidsPage/index.tsx +++ b/protocol-designer/src/components/LiquidsPage/index.tsx @@ -44,12 +44,6 @@ export function LiquidsPage(): JSX.Element { }) ) } - console.assert( - !(liquidGroupId && !selectedIngredFields), - `Expected selected liquid group "${String( - liquidGroupId - )}" to have fields in allIngredientGroupFields` - ) return showForm ? ( diff --git a/protocol-designer/src/components/StepEditForm/StepEditFormComponent.tsx b/protocol-designer/src/components/StepEditForm/StepEditFormComponent.tsx index 40b1865571b..c19e958382c 100644 --- a/protocol-designer/src/components/StepEditForm/StepEditFormComponent.tsx +++ b/protocol-designer/src/components/StepEditForm/StepEditFormComponent.tsx @@ -1,7 +1,6 @@ import * as React from 'react' import cx from 'classnames' import get from 'lodash/get' -import { StepFieldName } from '../../steplist/fieldLevel' import { MoreOptionsModal } from '../modals/MoreOptionsModal' import { MixForm, @@ -17,8 +16,9 @@ import { Alerts } from '../alerts/Alerts' import { ButtonRow } from './ButtonRow' import formStyles from '../forms/forms.module.css' import styles from './StepEditForm.module.css' -import { FormData, StepType } from '../../form-types' -import { FieldPropsByName, FocusHandlers, StepFormProps } from './types' +import type { StepFieldName } from '../../steplist/fieldLevel' +import type { FormData, StepType } from '../../form-types' +import type { FieldPropsByName, FocusHandlers, StepFormProps } from './types' type StepFormMap = { [K in StepType]?: React.ComponentType | null diff --git a/protocol-designer/src/components/StepEditForm/fields/BlowoutLocationField.tsx b/protocol-designer/src/components/StepEditForm/fields/BlowoutLocationField.tsx index 6637092deab..85d5f53e069 100644 --- a/protocol-designer/src/components/StepEditForm/fields/BlowoutLocationField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/BlowoutLocationField.tsx @@ -1,10 +1,11 @@ import * as React from 'react' import { useSelector } from 'react-redux' -import { DropdownField, Options } from '@opentrons/components' +import { DropdownField } from '@opentrons/components' import cx from 'classnames' import { selectors as uiLabwareSelectors } from '../../../ui/labware' import styles from '../StepEditForm.module.css' -import { FieldProps } from '../types' +import type { Options } from '@opentrons/components' +import type { FieldProps } from '../types' type BlowoutLocationDropdownProps = FieldProps & { options: Options diff --git a/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/getDisabledChangeTipOptions.ts b/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/getDisabledChangeTipOptions.ts index 1dca83bb557..bee62012254 100644 --- a/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/getDisabledChangeTipOptions.ts +++ b/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/getDisabledChangeTipOptions.ts @@ -1,6 +1,6 @@ import { getWellRatio } from '../../../../steplist/utils' -import { PathOption, StepType } from '../../../../form-types' -import { ChangeTipOptions } from '@opentrons/step-generation' +import type { PathOption, StepType } from '../../../../form-types' +import type { ChangeTipOptions } from '@opentrons/step-generation' export interface DisabledChangeTipArgs { aspirateWells?: string[] dispenseWells?: string[] diff --git a/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/index.tsx b/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/index.tsx index 6a2a7e4da58..4c1767122d9 100644 --- a/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/index.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/ChangeTipField/index.tsx @@ -7,13 +7,11 @@ import { useHoverTooltip, TOOLTIP_FIXED, } from '@opentrons/components' -import { - getDisabledChangeTipOptions, - DisabledChangeTipArgs, -} from './getDisabledChangeTipOptions' -import { ChangeTipOptions } from '@opentrons/step-generation' -import { FieldProps } from '../../types' +import { getDisabledChangeTipOptions } from './getDisabledChangeTipOptions' import styles from '../../StepEditForm.module.css' +import type { DisabledChangeTipArgs } from './getDisabledChangeTipOptions' +import type { ChangeTipOptions } from '@opentrons/step-generation' +import type { FieldProps } from '../../types' const ALL_CHANGE_TIP_VALUES: ChangeTipOptions[] = [ 'always', diff --git a/protocol-designer/src/components/StepEditForm/fields/CheckboxRowField.tsx b/protocol-designer/src/components/StepEditForm/fields/CheckboxRowField.tsx index ad4150fc687..b102be6883e 100644 --- a/protocol-designer/src/components/StepEditForm/fields/CheckboxRowField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/CheckboxRowField.tsx @@ -7,7 +7,7 @@ import { } from '@opentrons/components' import cx from 'classnames' import styles from '../StepEditForm.module.css' -import { FieldProps } from '../types' +import type { FieldProps } from '../types' import type { Placement } from '@opentrons/components' type CheckboxRowProps = FieldProps & { diff --git a/protocol-designer/src/components/StepEditForm/fields/Configure96ChannelField.tsx b/protocol-designer/src/components/StepEditForm/fields/Configure96ChannelField.tsx index 28675a00993..9b6c9f69f89 100644 --- a/protocol-designer/src/components/StepEditForm/fields/Configure96ChannelField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/Configure96ChannelField.tsx @@ -10,8 +10,8 @@ import { useHoverTooltip, } from '@opentrons/components' import { getInitialDeckSetup } from '../../../step-forms/selectors' -import { StepFormDropdown } from './StepFormDropdownField' import styles from '../StepEditForm.module.css' +import type { StepFormDropdown } from './StepFormDropdownField' export function Configure96ChannelField( props: Omit, 'options'> diff --git a/protocol-designer/src/components/StepEditForm/fields/DelayFields.tsx b/protocol-designer/src/components/StepEditForm/fields/DelayFields.tsx index dd49dd71d9f..ec8dab06f2f 100644 --- a/protocol-designer/src/components/StepEditForm/fields/DelayFields.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/DelayFields.tsx @@ -4,8 +4,8 @@ import { TextField } from './TextField' import { CheckboxRowField } from './CheckboxRowField' import { TipPositionField } from './TipPositionField' import styles from '../StepEditForm.module.css' -import { FieldPropsByName } from '../types' -import { StepFieldName } from '../../../form-types' +import type { FieldPropsByName } from '../types' +import type { StepFieldName } from '../../../form-types' export interface DelayFieldProps { checkboxFieldName: StepFieldName // TODO(IL, 2021-03-03): strictly, could be DelayCheckboxFields! diff --git a/protocol-designer/src/components/StepEditForm/fields/DisposalVolumeField.tsx b/protocol-designer/src/components/StepEditForm/fields/DisposalVolumeField.tsx index 26a8f810439..65d9f5d2178 100644 --- a/protocol-designer/src/components/StepEditForm/fields/DisposalVolumeField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/DisposalVolumeField.tsx @@ -7,22 +7,27 @@ import { FormGroup, DeprecatedCheckboxField, DropdownField, - Options, + Flex, + DIRECTION_COLUMN, + SPACING, } from '@opentrons/components' import { getMaxDisposalVolumeForMultidispense } from '../../../steplist/formLevel/handleFormChange/utils' import { selectors as stepFormSelectors } from '../../../step-forms' import { selectors as uiLabwareSelectors } from '../../../ui/labware' import { getBlowoutLocationOptionsForForm } from '../utils' import { TextField } from './TextField' +import { FlowRateField } from './FlowRateField' +import { BlowoutZOffsetField } from './BlowoutZOffsetField' -import type { FieldProps, FieldPropsByName } from '../types' +import type { Options } from '@opentrons/components' import type { PathOption, StepType } from '../../../form-types' +import type { FieldProps, FieldPropsByName } from '../types' import styles from '../StepEditForm.module.css' interface DropdownFormFieldProps extends FieldProps { - className?: string options: Options + className?: string } const DropdownFormField = (props: DropdownFormFieldProps): JSX.Element => { return ( @@ -103,7 +108,6 @@ export const DisposalVolumeField = ( ) const { value, updateValue } = propsForFields.disposalVolume_checkbox - return ( <> @@ -123,12 +127,27 @@ export const DisposalVolumeField = (
    {value ? (
    -
    Blowout
    - +
    {t('blowout')}
    + + + + +
    ) : null} diff --git a/protocol-designer/src/components/StepEditForm/fields/DropTipField/index.tsx b/protocol-designer/src/components/StepEditForm/fields/DropTipField/index.tsx index 0e558d6d77f..f4468cd28bc 100644 --- a/protocol-designer/src/components/StepEditForm/fields/DropTipField/index.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/DropTipField/index.tsx @@ -1,10 +1,11 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { useSelector } from 'react-redux' -import { DropdownField, DropdownOption, FormGroup } from '@opentrons/components' +import { DropdownField, FormGroup } from '@opentrons/components' import { getAdditionalEquipmentEntities } from '../../../../step-forms/selectors' -import { StepFormDropdown } from '../StepFormDropdownField' import styles from '../../StepEditForm.module.css' +import type { DropdownOption } from '@opentrons/components' +import type { StepFormDropdown } from '../StepFormDropdownField' export function DropTipField( props: Omit, 'options'> diff --git a/protocol-designer/src/components/StepEditForm/fields/FlowRateField/FlowRateInput.tsx b/protocol-designer/src/components/StepEditForm/fields/FlowRateField/FlowRateInput.tsx index baaafeb3318..06862663e97 100644 --- a/protocol-designer/src/components/StepEditForm/fields/FlowRateField/FlowRateInput.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/FlowRateField/FlowRateInput.tsx @@ -7,19 +7,23 @@ import { FormGroup, RadioGroup, InputField, + Flex, + useHoverTooltip, + Tooltip, } from '@opentrons/components' import { getMainPagePortalEl } from '../../../portals/MainPageModalPortal' +import type { FieldProps } from '../../types' + import modalStyles from '../../../modals/modal.module.css' import stepFormStyles from '../../StepEditForm.module.css' import styles from './FlowRateInput.module.css' -import type { FieldProps } from '../../types' const DECIMALS_ALLOWED = 1 /** When flow rate is falsey (including 0), it means 'use default' */ export interface FlowRateInputProps extends FieldProps { defaultFlowRate?: number | null - flowRateType: 'aspirate' | 'dispense' + flowRateType: 'aspirate' | 'dispense' | 'blowout' label?: string | null minFlowRate: number maxFlowRate: number @@ -46,7 +50,9 @@ export const FlowRateInput = (props: FlowRateInputProps): JSX.Element => { minFlowRate, name, pipetteDisplayName, + tooltipContent, } = props + const [targetProps, tooltipProps] = useHoverTooltip() const { t } = useTranslation(['form', 'application', 'shared']) const DEFAULT_LABEL = t('step_edit_form.field.flow_rate.label') @@ -206,21 +212,37 @@ export const FlowRateInput = (props: FlowRateInputProps): JSX.Element => { ) return ( - - - - + <> + {flowRateType === 'blowout' ? ( + + + {tooltipContent} + + ) : ( + + + + )} {showModal && FlowRateModal} - + ) } diff --git a/protocol-designer/src/components/StepEditForm/fields/FlowRateField/__tests__/FlowRateField.test.tsx b/protocol-designer/src/components/StepEditForm/fields/FlowRateField/__tests__/FlowRateField.test.tsx index 5a5bcc5a468..2e6cea00cf8 100644 --- a/protocol-designer/src/components/StepEditForm/fields/FlowRateField/__tests__/FlowRateField.test.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/FlowRateField/__tests__/FlowRateField.test.tsx @@ -1,5 +1,6 @@ import * as React from 'react' -import { describe, it, vi, beforeEach } from 'vitest' +import '@testing-library/jest-dom/vitest' +import { describe, it, vi, beforeEach, expect } from 'vitest' import { fireEvent, screen } from '@testing-library/react' import { fixtureP100096V2Specs } from '@opentrons/shared-data' import { renderWithProviders } from '../../../../../__testing-utils__' @@ -65,4 +66,19 @@ describe('FlowRateField', () => { screen.getByText('Cancel') screen.getByText('Done') }) + it('renders the information for blowout field', () => { + props.flowRateType = 'blowout' + render(props) + expect(screen.queryByText('Flow Rate')).not.toBeInTheDocument() + fireEvent.click(screen.getByRole('textbox')) + screen.getByText( + 'The default mockPipDisplayName flow rate is optimal for handling aqueous liquids' + ) + screen.getByText('blowout speed') + screen.getByText('80 μL/s (default)') + screen.getByText('Custom') + screen.getByText('between 0.1 and Infinity') + screen.getByText('Cancel') + screen.getByText('Done') + }) }) diff --git a/protocol-designer/src/components/StepEditForm/fields/FlowRateField/index.tsx b/protocol-designer/src/components/StepEditForm/fields/FlowRateField/index.tsx index d8dda0e6784..165ec2553a1 100644 --- a/protocol-designer/src/components/StepEditForm/fields/FlowRateField/index.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/FlowRateField/index.tsx @@ -42,6 +42,9 @@ export function FlowRateField(props: FlowRateFieldProps): JSX.Element { } else if (flowRateType === 'dispense') { defaultFlowRate = matchingTipLiquidSpecs?.defaultDispenseFlowRate.default ?? 0 + } else if (flowRateType === 'blowout') { + defaultFlowRate = + matchingTipLiquidSpecs?.defaultBlowOutFlowRate.default ?? 0 } } return ( diff --git a/protocol-designer/src/components/StepEditForm/fields/LabwareLocationField/index.tsx b/protocol-designer/src/components/StepEditForm/fields/LabwareLocationField/index.tsx index 072f7fa5e02..294960d7cde 100644 --- a/protocol-designer/src/components/StepEditForm/fields/LabwareLocationField/index.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/LabwareLocationField/index.tsx @@ -2,8 +2,8 @@ import * as React from 'react' import { useSelector } from 'react-redux' import { useTranslation } from 'react-i18next' import { - getModuleDisplayName, WASTE_CHUTE_CUTOUT, + getModuleDisplayName, } from '@opentrons/shared-data' import { getAdditionalEquipmentEntities, @@ -14,8 +14,8 @@ import { getRobotStateAtActiveItem, getUnoccupiedLabwareLocationOptions, } from '../../../../top-selectors/labware-locations' -import { getHasWasteChute } from '../../../labware' import { StepFormDropdown } from '../StepFormDropdownField' +import { getHasWasteChute } from '../../../labware' export function LabwareLocationField( props: Omit, 'options'> & { @@ -24,35 +24,30 @@ export function LabwareLocationField( ): JSX.Element { const { t } = useTranslation('form') const { labware, useGripper, value } = props - const labwareEntities = useSelector(getLabwareEntities) - const robotState = useSelector(getRobotStateAtActiveItem) - const moduleEntities = useSelector(getModuleEntities) const additionalEquipmentEntities = useSelector( getAdditionalEquipmentEntities ) - const hasWasteChute = getHasWasteChute(additionalEquipmentEntities) + const labwareEntities = useSelector(getLabwareEntities) + const robotState = useSelector(getRobotStateAtActiveItem) + const moduleEntities = useSelector(getModuleEntities) const isLabwareOffDeck = labware != null ? robotState?.labware[labware]?.slot === 'offDeck' : false - const displayWasteChuteValue = - useGripper && hasWasteChute && !isLabwareOffDeck let unoccupiedLabwareLocationsOptions = useSelector(getUnoccupiedLabwareLocationOptions) ?? [] - if (isLabwareOffDeck && hasWasteChute) { - unoccupiedLabwareLocationsOptions = unoccupiedLabwareLocationsOptions.filter( - option => - option.value !== 'offDeck' && option.value !== WASTE_CHUTE_CUTOUT - ) - } else if (useGripper || isLabwareOffDeck) { + if (useGripper || isLabwareOffDeck) { unoccupiedLabwareLocationsOptions = unoccupiedLabwareLocationsOptions.filter( option => option.value !== 'offDeck' ) - } else if (!displayWasteChuteValue) { + } + + if (!useGripper && getHasWasteChute(additionalEquipmentEntities)) { unoccupiedLabwareLocationsOptions = unoccupiedLabwareLocationsOptions.filter( - option => option.name !== 'Waste Chute in D3' + option => option.value !== WASTE_CHUTE_CUTOUT ) } + const location: string = value as string const bothFieldsSelected = labware != null && value != null diff --git a/protocol-designer/src/components/StepEditForm/fields/MixFields.tsx b/protocol-designer/src/components/StepEditForm/fields/MixFields.tsx index 6105685332b..a86c9271fb0 100644 --- a/protocol-designer/src/components/StepEditForm/fields/MixFields.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/MixFields.tsx @@ -1,8 +1,8 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { CheckboxRowField, TextField } from './' -import { FieldPropsByName } from '../types' import styles from '../StepEditForm.module.css' +import type { FieldPropsByName } from '../types' export const MixFields = (props: { propsForFields: FieldPropsByName diff --git a/protocol-designer/src/components/StepEditForm/fields/PathField/PathField.tsx b/protocol-designer/src/components/StepEditForm/fields/PathField/PathField.tsx index 81bb79fd02e..09ab57f905f 100644 --- a/protocol-designer/src/components/StepEditForm/fields/PathField/PathField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/PathField/PathField.tsx @@ -7,14 +7,11 @@ import { selectors as stepFormSelectors } from '../../../../step-forms' import SINGLE_IMAGE from '../../../../images/path_single_transfers.svg' import MULTI_DISPENSE_IMAGE from '../../../../images/path_multi_dispense.svg' import MULTI_ASPIRATE_IMAGE from '../../../../images/path_multi_aspirate.svg' -import { PathOption } from '../../../../form-types' -import { FieldProps } from '../../types' +import { getDisabledPathMap } from './getDisabledPathMap' import styles from '../../StepEditForm.module.css' -import { - DisabledPathMap, - getDisabledPathMap, - ValuesForPath, -} from './getDisabledPathMap' +import type { PathOption } from '../../../../form-types' +import type { FieldProps } from '../../types' +import type { DisabledPathMap, ValuesForPath } from './getDisabledPathMap' const PATH_ANIMATION_IMAGES = { single: new URL('../../../../images/path_single.gif', import.meta.url).href, diff --git a/protocol-designer/src/components/StepEditForm/fields/ProfileItemRows.tsx b/protocol-designer/src/components/StepEditForm/fields/ProfileItemRows.tsx index 254d56390c7..4917dbb2d7c 100644 --- a/protocol-designer/src/components/StepEditForm/fields/ProfileItemRows.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/ProfileItemRows.tsx @@ -13,12 +13,7 @@ import { TOOLTIP_TOP_END, } from '@opentrons/components' import * as steplistActions from '../../../steplist/actions' -import { - PROFILE_CYCLE, - ProfileStepItem, - ProfileItem, - ProfileCycleItem, -} from '../../../form-types' +import { PROFILE_CYCLE } from '../../../form-types' import { getProfileFieldErrors, maskProfileField, @@ -30,7 +25,12 @@ import { import { getDynamicFieldFocusHandlerId } from '../utils' import styles from '../StepEditForm.module.css' -import { FocusHandlers } from '../types' +import type { + ProfileStepItem, + ProfileItem, + ProfileCycleItem, +} from '../../../form-types' +import type { FocusHandlers } from '../types' export const showProfileFieldErrors = ({ fieldId, diff --git a/protocol-designer/src/components/StepEditForm/fields/RadioGroupField.tsx b/protocol-designer/src/components/StepEditForm/fields/RadioGroupField.tsx index fe8c8225f5c..c073fe7d486 100644 --- a/protocol-designer/src/components/StepEditForm/fields/RadioGroupField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/RadioGroupField.tsx @@ -1,7 +1,7 @@ import * as React from 'react' import { RadioGroup } from '@opentrons/components' -import { StepFieldName } from '../../../steplist/fieldLevel' -import { FieldProps } from '../types' +import type { StepFieldName } from '../../../steplist/fieldLevel' +import type { FieldProps } from '../types' interface RadioGroupFieldProps extends FieldProps { name: StepFieldName diff --git a/protocol-designer/src/components/StepEditForm/fields/StepFormDropdownField.tsx b/protocol-designer/src/components/StepEditForm/fields/StepFormDropdownField.tsx index a311c31c8d8..54c7bd2cff9 100644 --- a/protocol-designer/src/components/StepEditForm/fields/StepFormDropdownField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/StepFormDropdownField.tsx @@ -1,8 +1,9 @@ import * as React from 'react' -import { DropdownField, Options } from '@opentrons/components' +import { DropdownField } from '@opentrons/components' import cx from 'classnames' -import { StepFieldName } from '../../../steplist/fieldLevel' import styles from '../StepEditForm.module.css' +import type { Options } from '@opentrons/components' +import type { StepFieldName } from '../../../steplist/fieldLevel' import type { FieldProps } from '../types' export interface StepFormDropdownProps extends FieldProps { diff --git a/protocol-designer/src/components/StepEditForm/fields/TextField.tsx b/protocol-designer/src/components/StepEditForm/fields/TextField.tsx index ba6677990bd..27c59058406 100644 --- a/protocol-designer/src/components/StepEditForm/fields/TextField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/TextField.tsx @@ -1,6 +1,6 @@ import * as React from 'react' import { InputField } from '@opentrons/components' -import { FieldProps } from '../types' +import type { FieldProps } from '../types' type TextFieldProps = FieldProps & { className?: string diff --git a/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionModal.tsx b/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionModal.tsx index 2ec2e7f41ab..f4df9bd2425 100644 --- a/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionModal.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionModal.tsx @@ -10,6 +10,8 @@ import { RadioGroup, SPACING, StyledText, + Tooltip, + useHoverTooltip, } from '@opentrons/components' import { getMainPagePortalEl } from '../../../portals/MainPageModalPortal' import { getIsTouchTipField } from '../../../../form-types' @@ -51,11 +53,12 @@ export const TipPositionModal = ( wellYWidthMm, closeModal, } = props + const [targetProps, tooltipProps] = useHoverTooltip() const zSpec = specs.z const ySpec = specs.y const xSpec = specs.x - const { t } = useTranslation(['modal', 'button']) + const { t } = useTranslation(['modal', 'button', 'tooltip']) if (zSpec == null || xSpec == null || ySpec == null) { console.error( @@ -69,7 +72,7 @@ export const TipPositionModal = ( }) const [zValue, setZValue] = React.useState( - zSpec?.value == null ? null : String(zSpec?.value) + zSpec?.value == null ? String(defaultMmFromBottom) : String(zSpec?.value) ) const [yValue, setYValue] = React.useState( ySpec?.value == null ? null : String(ySpec?.value) @@ -255,7 +258,12 @@ export const TipPositionModal = ( value={xValue ?? ''} /> - + {t('tip_position.field_titles.y_position')} @@ -271,6 +279,7 @@ export const TipPositionModal = ( units="mm" value={yValue ?? ''} /> + {t('tooltip:y_position_value')} diff --git a/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionZAxisViz.tsx b/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionZAxisViz.tsx index cff1fa05a9a..6df50910e2c 100644 --- a/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionZAxisViz.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/TipPositionField/TipPositionZAxisViz.tsx @@ -7,6 +7,7 @@ import WELL_CROSS_SECTION_IMAGE from '../../../../images/well_cross_section.svg' import styles from './TipPositionInput.module.css' const WELL_HEIGHT_PIXELS = 145 +const TIP_X_OFFSET_PIXELS = 22 const PIXEL_DECIMALS = 2 interface TipPositionZAxisVizProps { wellDepthMm: number @@ -30,7 +31,7 @@ export function TipPositionZAxisViz( {props.wellDepthMm !== null && ( {props.wellDepthMm}mm diff --git a/protocol-designer/src/components/StepEditForm/fields/TipPositionField/index.tsx b/protocol-designer/src/components/StepEditForm/fields/TipPositionField/index.tsx index 5f60d13cd79..b8adeca17ba 100644 --- a/protocol-designer/src/components/StepEditForm/fields/TipPositionField/index.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/TipPositionField/index.tsx @@ -9,7 +9,6 @@ import { InputField, Tooltip, useHoverTooltip, - UseHoverTooltipTargetProps, } from '@opentrons/components' import { getWellsDepth, getWellDimension } from '@opentrons/shared-data' import { @@ -25,6 +24,7 @@ import type { TipYOffsetFields, TipZOffsetFields, } from '../../../../form-types' +import type { UseHoverTooltipTargetProps } from '@opentrons/components' import type { FieldPropsByName } from '../../types' import type { PositionSpecs } from './TipPositionModal' diff --git a/protocol-designer/src/components/StepEditForm/fields/TiprackField.tsx b/protocol-designer/src/components/StepEditForm/fields/TiprackField.tsx index 464b15b4f7f..dac7123e916 100644 --- a/protocol-designer/src/components/StepEditForm/fields/TiprackField.tsx +++ b/protocol-designer/src/components/StepEditForm/fields/TiprackField.tsx @@ -30,13 +30,20 @@ export function TiprackField(props: TiprackFieldProps): JSX.Element { const [targetProps, tooltipProps] = useHoverTooltip() const pipetteEntities = useSelector(getPipetteEntities) const options = useSelector(uiLabwareSelectors.getTiprackOptions) - const defaultTipracks = + const defaultTiprackUris = pipetteId != null ? pipetteEntities[pipetteId as string].tiprackDefURI : [] - const pipetteOptions = options.filter(option => - defaultTipracks.includes(option.defURI) + const tiprackOptions = options.filter(option => + defaultTiprackUris.includes(option.value) ) - const hasMissingTiprack = defaultTipracks.length > pipetteOptions.length + React.useEffect(() => { + // if default value is not included in the pipette's tiprack uris then + // change it so it is + if (!defaultTiprackUris.includes(value as string)) { + updateValue(defaultTiprackUris[0]) + } + }, [defaultTiprackUris, value, updateValue]) + const hasMissingTiprack = defaultTiprackUris.length > tiprackOptions.length return ( { + const getInitialFirstValues = (): { initialFirstValue: WellOrderOption initialSecondValue: WellOrderOption - } = () => { + } => { if (firstValue == null || secondValue == null) { return { initialFirstValue: DEFAULT_FIRST, @@ -113,20 +113,19 @@ export const WellOrderModal = ( initialSecondValue: secondValue, } } + const { initialFirstValue, initialSecondValue } = getInitialFirstValues() const [wellOrder, setWellOrder] = React.useState({ - firstValue: DEFAULT_FIRST, - secondValue: DEFAULT_SECOND, + firstValue: initialFirstValue, + secondValue: initialSecondValue, }) React.useEffect(() => { - if (firstValue != null && secondValue != null) { - setWellOrder({ - firstValue: firstValue, - secondValue: secondValue, - }) - } - }, [firstValue, secondValue]) + setWellOrder({ + firstValue: initialFirstValue, + secondValue: initialSecondValue, + }) + }, [initialFirstValue, initialSecondValue]) const applyChanges = (): void => { updateValues(wellOrder.firstValue, wellOrder.secondValue) @@ -156,8 +155,8 @@ export const WellOrderModal = ( event: React.ChangeEvent ): void => { const { value } = event.currentTarget - // @ts-expect-error (ce, 2021-06-22) missing one prop or the other - let nextState: State = { [`${ordinality}Value`]: value } + let nextState: State = { ...wellOrder, [`${ordinality}Value`]: value } + if (ordinality === 'first') { if ( VERTICAL_VALUES.includes(value as WellOrderOption) && @@ -225,7 +224,7 @@ export const WellOrderModal = ( /> - + { }) vi.mocked(getTiprackOptions).mockReturnValue([ { - value: 'mockValue', + value: 'mockDefURI1', name: 'tiprack1', - defURI: 'mockDefURI1', }, { - value: 'mockValue', + value: 'mockDefURI2', name: 'tiprack2', - defURI: 'mockDefURI2', }, ]) }) diff --git a/protocol-designer/src/components/StepEditForm/fields/makeSingleEditFieldProps.ts b/protocol-designer/src/components/StepEditForm/fields/makeSingleEditFieldProps.ts index 6390828958d..251f44d3a9d 100644 --- a/protocol-designer/src/components/StepEditForm/fields/makeSingleEditFieldProps.ts +++ b/protocol-designer/src/components/StepEditForm/fields/makeSingleEditFieldProps.ts @@ -7,8 +7,8 @@ import { getFieldDefaultTooltip, getSingleSelectDisabledTooltip, } from '../utils' -import { StepFieldName, FormData } from '../../../form-types' -import { FieldProps, FieldPropsByName, FocusHandlers } from '../types' +import type { StepFieldName, FormData } from '../../../form-types' +import type { FieldProps, FieldPropsByName, FocusHandlers } from '../types' interface ShowFieldErrorParams { name: StepFieldName focusedField: StepFieldName | null diff --git a/protocol-designer/src/components/StepEditForm/forms/MixForm.tsx b/protocol-designer/src/components/StepEditForm/forms/MixForm.tsx index f0eb043b081..324c1c9754c 100644 --- a/protocol-designer/src/components/StepEditForm/forms/MixForm.tsx +++ b/protocol-designer/src/components/StepEditForm/forms/MixForm.tsx @@ -213,6 +213,13 @@ export const MixForm = (props: StepFormProps): JSX.Element => { stepType: formData.stepType, })} /> + { )} - - - - {prefix === 'dispense' && ( { stepType: formData.stepType, })} /> + { /> )} + + + + + { const { focusHandlers, propsForFields, formData } = props diff --git a/protocol-designer/src/components/StepEditForm/forms/__tests__/HeaterShakerForm.test.tsx b/protocol-designer/src/components/StepEditForm/forms/__tests__/HeaterShakerForm.test.tsx index dbc5bb5a408..88da7ef9d06 100644 --- a/protocol-designer/src/components/StepEditForm/forms/__tests__/HeaterShakerForm.test.tsx +++ b/protocol-designer/src/components/StepEditForm/forms/__tests__/HeaterShakerForm.test.tsx @@ -5,19 +5,19 @@ import { renderWithProviders } from '../../../../__testing-utils__' import { getHeaterShakerLabwareOptions } from '../../../../ui/modules/selectors' import { i18n } from '../../../../localization' import { HeaterShakerForm } from '../HeaterShakerForm' +import type * as ModulesSelectors from '../../../../ui/modules/selectors' +import type * as Fields from '../../fields' import type { DropdownOption } from '@opentrons/components' vi.mock('../../../../ui/modules/selectors', async importOriginal => { - const actualFields = await importOriginal< - typeof import('../../../../ui/modules/selectors') - >() + const actualFields = await importOriginal() return { ...actualFields, getHeaterShakerLabwareOptions: vi.fn(), } }) vi.mock('../../fields', async importOriginal => { - const actualFields = await importOriginal() + const actualFields = await importOriginal() return { ...actualFields, diff --git a/protocol-designer/src/components/StepEditForm/forms/__tests__/TemperatureForm.test.tsx b/protocol-designer/src/components/StepEditForm/forms/__tests__/TemperatureForm.test.tsx index a32894d3b84..9a84248c8a6 100644 --- a/protocol-designer/src/components/StepEditForm/forms/__tests__/TemperatureForm.test.tsx +++ b/protocol-designer/src/components/StepEditForm/forms/__tests__/TemperatureForm.test.tsx @@ -8,11 +8,10 @@ import { getTemperatureModuleIds, } from '../../../../ui/modules/selectors' import { TemperatureForm } from '../TemperatureForm' +import type * as ModulesSelectors from '../../../../ui/modules/selectors' vi.mock('../../../../ui/modules/selectors', async importOriginal => { - const actualFields = await importOriginal< - typeof import('../../../../ui/modules/selectors') - >() + const actualFields = await importOriginal() return { ...actualFields, getTemperatureLabwareOptions: vi.fn(), diff --git a/protocol-designer/src/components/StepEditForm/types.ts b/protocol-designer/src/components/StepEditForm/types.ts index 573bf6e9edb..2441ed00e07 100644 --- a/protocol-designer/src/components/StepEditForm/types.ts +++ b/protocol-designer/src/components/StepEditForm/types.ts @@ -1,4 +1,4 @@ -import { FormData, StepFieldName } from '../../form-types' +import type { FormData, StepFieldName } from '../../form-types' export interface FocusHandlers { focusedField: StepFieldName | null dirtyFields: StepFieldName[] diff --git a/protocol-designer/src/components/StepEditForm/utils.ts b/protocol-designer/src/components/StepEditForm/utils.ts index d7df72c50c3..79afc0c80d6 100644 --- a/protocol-designer/src/components/StepEditForm/utils.ts +++ b/protocol-designer/src/components/StepEditForm/utils.ts @@ -5,19 +5,19 @@ import { SOURCE_WELL_BLOWOUT_DESTINATION, DEST_WELL_BLOWOUT_DESTINATION, } from '@opentrons/step-generation' -import { - PROFILE_CYCLE, +import { PROFILE_CYCLE } from '../../form-types' +import { getDefaultsForStepType } from '../../steplist/formLevel/getDefaultsForStepType' +import type { Options } from '@opentrons/components' +import type { ProfileFormError } from '../../steplist/formLevel/profileErrors' +import type { FormWarning } from '../../steplist/formLevel/warnings' +import type { StepFormErrors } from '../../steplist/types' +import type { FormData, ProfileItem, StepFieldName, StepType, PathOption, } from '../../form-types' -import { getDefaultsForStepType } from '../../steplist/formLevel/getDefaultsForStepType' -import { Options } from '@opentrons/components' -import { ProfileFormError } from '../../steplist/formLevel/profileErrors' -import { FormWarning } from '../../steplist/formLevel/warnings' -import type { StepFormErrors } from '../../steplist/types' export function getBlowoutLocationOptionsForForm(args: { stepType: StepType diff --git a/protocol-designer/src/components/StepSelectionBanner/StepSelectionBannerComponent.tsx b/protocol-designer/src/components/StepSelectionBanner/StepSelectionBannerComponent.tsx index 489f5c41a74..a7f319e86e9 100644 --- a/protocol-designer/src/components/StepSelectionBanner/StepSelectionBannerComponent.tsx +++ b/protocol-designer/src/components/StepSelectionBanner/StepSelectionBannerComponent.tsx @@ -25,7 +25,7 @@ import { SPACING_3, TYPOGRAPHY, } from '@opentrons/components' -import { CountPerStepType, StepType } from '../../form-types' +import type { CountPerStepType, StepType } from '../../form-types' interface StepPillProps { stepType: StepType diff --git a/protocol-designer/src/components/StepSelectionBanner/index.tsx b/protocol-designer/src/components/StepSelectionBanner/index.tsx index da378bde3d9..7f0d8ed207a 100644 --- a/protocol-designer/src/components/StepSelectionBanner/index.tsx +++ b/protocol-designer/src/components/StepSelectionBanner/index.tsx @@ -9,8 +9,8 @@ import { CLOSE_BATCH_EDIT_FORM, } from '../modals/ConfirmDeleteModal' import { StepSelectionBannerComponent } from './StepSelectionBannerComponent' -import { ThunkDispatch } from 'redux-thunk' -import { BaseState } from '../../types' +import type { ThunkDispatch } from 'redux-thunk' +import type { BaseState } from '../../types' const MemoizedStepSelectionBannerComponent = React.memo( StepSelectionBannerComponent diff --git a/protocol-designer/src/components/__tests__/EditModules.test.tsx b/protocol-designer/src/components/__tests__/EditModules.test.tsx index fb183a3e9e6..7f50b877744 100644 --- a/protocol-designer/src/components/__tests__/EditModules.test.tsx +++ b/protocol-designer/src/components/__tests__/EditModules.test.tsx @@ -12,7 +12,6 @@ import { getDismissedHints } from '../../tutorial/selectors' import { EditModules } from '../EditModules' import { EditModulesModal } from '../modals/EditModulesModal' import { renderWithProviders } from '../../__testing-utils__' -import { getEnableMoam } from '../../feature-flags/selectors' import { getRobotType } from '../../file-data/selectors' import { EditMultipleModulesModal } from '../modals/EditModulesModal/EditMultipleModulesModal' @@ -23,7 +22,6 @@ vi.mock('../modals/EditModulesModal/EditMultipleModulesModal') vi.mock('../modals/EditModulesModal') vi.mock('../../tutorial/selectors') vi.mock('../../file-data/selectors') -vi.mock('../../feature-flags/selectors') const render = (props: React.ComponentProps) => { return renderWithProviders(, { i18nInstance: i18n, @@ -66,7 +64,6 @@ describe('EditModules', () => { ) vi.mocked(getDismissedHints).mockReturnValue([hintKey]) vi.mocked(getRobotType).mockReturnValue(OT2_ROBOT_TYPE) - vi.mocked(getEnableMoam).mockReturnValue(true) }) it('renders the edit modules modal for single modules', () => { diff --git a/protocol-designer/src/components/alerts/Alerts.tsx b/protocol-designer/src/components/alerts/Alerts.tsx index 1fc95e8162f..30f70e09242 100644 --- a/protocol-designer/src/components/alerts/Alerts.tsx +++ b/protocol-designer/src/components/alerts/Alerts.tsx @@ -9,9 +9,7 @@ import { selectors as dismissSelectors, } from '../../dismiss' import { selectors as stepFormSelectors } from '../../step-forms' -import { StepFieldName } from '../../steplist/fieldLevel' import { selectors as fileDataSelectors } from '../../file-data' -import { PRESAVED_STEP_ID } from '../../steplist' import { getVisibleFormWarnings, getVisibleFormErrors, @@ -22,6 +20,7 @@ import { ErrorContents } from './ErrorContents' import { WarningContents } from './WarningContents' import type { CommandCreatorError } from '@opentrons/step-generation' +import type { StepFieldName } from '../../steplist/fieldLevel' import type { ProfileItem } from '../../form-types' import type { ProfileFormError } from '../../steplist/formLevel/profileErrors' import type { AlertData, AlertType } from './types' @@ -152,15 +151,12 @@ const AlertsComponent = (props: Props): JSX.Element => { dispatch( dismissActions.dismissTimelineWarning({ type: dismissId, - stepId, }) ) } else { dispatch( dismissActions.dismissFormWarning({ type: dismissId, - // if stepId does not exist, assume it is a presaved step - stepId: stepId ?? PRESAVED_STEP_ID, }) ) } diff --git a/protocol-designer/src/components/alerts/types.ts b/protocol-designer/src/components/alerts/types.ts index 2423ab77d29..981447c1987 100644 --- a/protocol-designer/src/components/alerts/types.ts +++ b/protocol-designer/src/components/alerts/types.ts @@ -1,4 +1,4 @@ -import { ReactNode } from 'react' +import type { ReactNode } from 'react' export type AlertLevel = 'timeline' | 'form' export type AlertType = 'error' | 'warning' // generic alert (warning or error) formatted for rendering diff --git a/protocol-designer/src/components/labware/BrowsableLabware.tsx b/protocol-designer/src/components/labware/BrowsableLabware.tsx index 3994cf943e8..ef57162b122 100644 --- a/protocol-designer/src/components/labware/BrowsableLabware.tsx +++ b/protocol-designer/src/components/labware/BrowsableLabware.tsx @@ -2,13 +2,14 @@ import * as React from 'react' import { useSelector } from 'react-redux' import reduce from 'lodash/reduce' +import { WELL_LABEL_OPTIONS } from '@opentrons/components' import { selectors } from '../../labware-ingred/selectors' import { SingleLabware } from './SingleLabware' import { wellFillFromWellContents } from './utils' -import { ContentsByWell } from '../../labware-ingred/types' -import { WellIngredientNames } from '../../steplist/types' -import { WellGroup, WELL_LABEL_OPTIONS } from '@opentrons/components' -import { LabwareDefinition2 } from '@opentrons/shared-data' +import type { WellGroup } from '@opentrons/components' +import type { ContentsByWell } from '../../labware-ingred/types' +import type { WellIngredientNames } from '../../steplist/types' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import { WellTooltip } from './WellTooltip' diff --git a/protocol-designer/src/components/labware/SelectableLabware.tsx b/protocol-designer/src/components/labware/SelectableLabware.tsx index ffe39799487..257fe013270 100644 --- a/protocol-designer/src/components/labware/SelectableLabware.tsx +++ b/protocol-designer/src/components/labware/SelectableLabware.tsx @@ -1,7 +1,6 @@ import * as React from 'react' import reduce from 'lodash/reduce' -import { WellMouseEvent, WellGroup } from '@opentrons/components' import { COLUMN } from '@opentrons/shared-data' import { arrayToWellGroup, @@ -12,6 +11,7 @@ import { SingleLabware } from './SingleLabware' import { SelectionRect } from '../SelectionRect' import { WellTooltip } from './WellTooltip' +import type { WellMouseEvent, WellGroup } from '@opentrons/components' import type { ContentsByWell } from '../../labware-ingred/types' import type { WellIngredientNames } from '../../steplist/types' import type { GenericRect } from '../../collision-types' diff --git a/protocol-designer/src/components/labware/utils.ts b/protocol-designer/src/components/labware/utils.ts index 1c92ee47186..d20e788cfdf 100644 --- a/protocol-designer/src/components/labware/utils.ts +++ b/protocol-designer/src/components/labware/utils.ts @@ -1,9 +1,10 @@ import reduce from 'lodash/reduce' -import { AdditionalEquipmentEntities, AIR } from '@opentrons/step-generation' -import { WellFill } from '@opentrons/components' +import { AIR } from '@opentrons/step-generation' import { WASTE_CHUTE_CUTOUT } from '@opentrons/shared-data' import { swatchColors, MIXED_WELL_COLOR } from '../swatchColors' -import { ContentsByWell, WellContents } from '../../labware-ingred/types' +import type { AdditionalEquipmentEntities } from '@opentrons/step-generation' +import type { WellFill } from '@opentrons/components' +import type { ContentsByWell, WellContents } from '../../labware-ingred/types' const ingredIdsToColor = ( groupIds: string[], diff --git a/protocol-designer/src/components/lists/TitledStepList.tsx b/protocol-designer/src/components/lists/TitledStepList.tsx index 1b88b291b1e..3d66d0c03cc 100644 --- a/protocol-designer/src/components/lists/TitledStepList.tsx +++ b/protocol-designer/src/components/lists/TitledStepList.tsx @@ -1,7 +1,8 @@ import * as React from 'react' import cx from 'classnames' -import { Icon, IconName } from '@opentrons/components' +import { Icon } from '@opentrons/components' import styles from './styles.module.css' +import type { IconName } from '@opentrons/components' export interface Props { /** text of title */ @@ -87,7 +88,7 @@ export function TitledStepList(props: Props): JSX.Element { ) const multiSelectIconName = props.selected - ? 'checkbox-marked' + ? 'ot-checkbox' : 'checkbox-blank-outline' return ( diff --git a/protocol-designer/src/components/modals/AnnouncementModal/announcements.tsx b/protocol-designer/src/components/modals/AnnouncementModal/announcements.tsx index b10c6d75407..ed4415a099c 100644 --- a/protocol-designer/src/components/modals/AnnouncementModal/announcements.tsx +++ b/protocol-designer/src/components/modals/AnnouncementModal/announcements.tsx @@ -9,7 +9,7 @@ import { } from '@opentrons/components' import magTempCombined from '../../../images/modules/magdeck_tempdeck_combined.png' -import thermocycler from '../../../images/modules/thermocycler.jpg' +import thermocycler from '../../../images/modules/thermocycler.png' import multiSelect from '../../../images/announcements/multi_select.gif' import batchEdit from '../../../images/announcements/batch_edit.gif' import heaterShaker from '../../../images/modules/heatershaker.png' diff --git a/protocol-designer/src/components/modals/CreateFileWizard/EquipmentOption.tsx b/protocol-designer/src/components/modals/CreateFileWizard/EquipmentOption.tsx index 76b97572b47..4b31beecd65 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/EquipmentOption.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/EquipmentOption.tsx @@ -1,7 +1,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { css } from 'styled-components' -import { FLEX_ROBOT_TYPE } from '@opentrons/shared-data' +import { FLEX_ROBOT_TYPE, OT2_ROBOT_TYPE } from '@opentrons/shared-data' import { Flex, @@ -57,6 +57,7 @@ interface EquipmentOptionProps extends StyleProps { showCheckbox?: boolean disabled?: boolean multiples?: MultiplesProps + type?: 'module' | 'pipetteTip' } export function EquipmentOption(props: EquipmentOptionProps): JSX.Element { const { @@ -66,6 +67,7 @@ export function EquipmentOption(props: EquipmentOptionProps): JSX.Element { image = null, showCheckbox = false, disabled = false, + type = 'module', robotType, multiples, ...styleProps @@ -126,11 +128,11 @@ export function EquipmentOption(props: EquipmentOptionProps): JSX.Element { iconInfo = ( ) } else if (showCheckbox && disabled) { @@ -149,7 +151,6 @@ export function EquipmentOption(props: EquipmentOptionProps): JSX.Element { } else if (numItems > 0) { downArrowStyle = ARROW_STYLE_ACTIVE } - iconInfo = ( { multiples.setValue(numMultiples + 1) @@ -197,6 +198,14 @@ export function EquipmentOption(props: EquipmentOptionProps): JSX.Element { ) } + let optionTooltip + if (robotType === FLEX_ROBOT_TYPE && type === 'module') { + optionTooltip = t('disabled_no_space_additional_items') + } else if (robotType === OT2_ROBOT_TYPE && type === 'module') { + optionTooltip = t('disabled_you_can_add_one_type') + } else if (type === 'pipetteTip') { + optionTooltip = t('disabled_no_space_pipette') + } return ( <> {disabled ? ( - - {t( - robotType === FLEX_ROBOT_TYPE - ? 'disabled_no_space_additional_items' - : 'disabled_you_can_add_one_type' - )} - + {optionTooltip} ) : null} ) diff --git a/protocol-designer/src/components/modals/CreateFileWizard/InputField.tsx b/protocol-designer/src/components/modals/CreateFileWizard/InputField.tsx index 63a7903907e..ea6a50648eb 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/InputField.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/InputField.tsx @@ -1,6 +1,5 @@ import * as React from 'react' import { css } from 'styled-components' -import { UseFormRegister } from 'react-hook-form' import { ALIGN_CENTER, BORDERS, @@ -13,6 +12,7 @@ import { DISPLAY_INLINE_BLOCK, TEXT_ALIGN_RIGHT, } from '@opentrons/components' +import type { UseFormRegister } from 'react-hook-form' export interface InputFieldProps { register: UseFormRegister diff --git a/protocol-designer/src/components/modals/CreateFileWizard/ModulesAndOtherTile.tsx b/protocol-designer/src/components/modals/CreateFileWizard/ModulesAndOtherTile.tsx index 2c1dd51286a..316c34d50b9 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/ModulesAndOtherTile.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/ModulesAndOtherTile.tsx @@ -20,13 +20,11 @@ import { MAGNETIC_MODULE_TYPE, TEMPERATURE_MODULE_TYPE, getPipetteSpecsV2, - PipetteName, OT2_ROBOT_TYPE, THERMOCYCLER_MODULE_V2, HEATERSHAKER_MODULE_V1, MAGNETIC_BLOCK_V1, TEMPERATURE_MODULE_V2, - ModuleModel, getModuleDisplayName, getModuleType, FLEX_ROBOT_TYPE, @@ -37,7 +35,6 @@ import { getIsCrashablePipetteSelected } from '../../../step-forms' import gripperImage from '../../../images/flex_gripper.png' import wasteChuteImage from '../../../images/waste_chute.png' import trashBinImage from '../../../images/flex_trash_bin.png' -import { getEnableMoam } from '../../../feature-flags/selectors' import { uuid } from '../../../utils' import { selectors as featureFlagSelectors } from '../../../feature-flags' import { CrashInfoBox, ModuleDiagram } from '../../modules' @@ -51,6 +48,7 @@ import { import { EquipmentOption } from './EquipmentOption' import { HandleEnter } from './HandleEnter' +import type { ModuleModel, PipetteName } from '@opentrons/shared-data' import type { AdditionalEquipment, WizardTileProps } from './types' const MAX_TEMPERATURE_MODULES = 7 @@ -191,7 +189,6 @@ export function ModulesAndOtherTile(props: WizardTileProps): JSX.Element { function FlexModuleFields(props: WizardTileProps): JSX.Element { const { watch, setValue } = props - const enableMoamFf = useSelector(getEnableMoam) const modules = watch('modules') const additionalEquipment = watch('additionalEquipment') const moduleTypesOnDeck = @@ -226,7 +223,7 @@ function FlexModuleFields(props: WizardTileProps): JSX.Element { getNumSlotsAvailable(modules, additionalEquipment) === 0 // special-casing TC since it takes up 2 slots if (moduleType === THERMOCYCLER_MODULE_TYPE) { - isDisabled = getNumSlotsAvailable(modules, additionalEquipment) === 1 + isDisabled = getNumSlotsAvailable(modules, additionalEquipment) <= 1 } const handleMultiplesClick = (num: number): void => { @@ -261,10 +258,7 @@ function FlexModuleFields(props: WizardTileProps): JSX.Element { } const handleOnClick = (): void => { - if ( - (moduleType !== TEMPERATURE_MODULE_TYPE && enableMoamFf) || - !enableMoamFf - ) { + if (moduleType !== TEMPERATURE_MODULE_TYPE) { if (isModuleOnDeck) { const updatedModules = modules != null @@ -302,7 +296,7 @@ function FlexModuleFields(props: WizardTileProps): JSX.Element { } onClick={handleOnClick} multiples={ - moduleType === TEMPERATURE_MODULE_TYPE && enableMoamFf + moduleType === TEMPERATURE_MODULE_TYPE ? { maxItems: MAX_TEMPERATURE_MODULES, setValue: handleMultiplesClick, @@ -316,9 +310,7 @@ function FlexModuleFields(props: WizardTileProps): JSX.Element { } : undefined } - showCheckbox={ - enableMoamFf ? moduleType !== TEMPERATURE_MODULE_TYPE : true - } + showCheckbox={moduleType !== TEMPERATURE_MODULE_TYPE} /> ) })} diff --git a/protocol-designer/src/components/modals/CreateFileWizard/PipetteTipsTile.tsx b/protocol-designer/src/components/modals/CreateFileWizard/PipetteTipsTile.tsx index 0a154592345..9f77c5a0150 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/PipetteTipsTile.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/PipetteTipsTile.tsx @@ -7,7 +7,6 @@ import { Flex, Text, SPACING, - Mount, ALIGN_CENTER, PrimaryButton, JUSTIFY_SPACE_BETWEEN, @@ -32,6 +31,7 @@ import { GoBack } from './GoBack' import { EquipmentOption } from './EquipmentOption' import { HandleEnter } from './HandleEnter' +import type { Mount } from '@opentrons/components' import type { PipetteName } from '@opentrons/shared-data' import type { FormState, WizardTileProps } from './types' import type { ThunkDispatch } from 'redux-thunk' @@ -182,12 +182,10 @@ function PipetteTipsField(props: PipetteTipsFieldProps): JSX.Element | null { const selectedValues = pipettesByMount[mount].tiprackDefURI ?? [] React.useEffect(() => { - if (selectedValues.length === 0) { - setValue(`pipettesByMount.${mount}.tiprackDefURI`, [ - tiprackOptions[0]?.value ?? '', - ]) - } - }, [selectedValues, setValue, tiprackOptions]) + setValue(`pipettesByMount.${mount}.tiprackDefURI`, [ + tiprackOptions[0]?.value ?? '', + ]) + }, []) return ( ))} @@ -278,6 +280,11 @@ function PipetteTipsField(props: PipetteTipsFieldProps): JSX.Element | null { }} width="21.75rem" minHeight="4rem" + type="pipetteTip" + disabled={ + selectedValues.length === 3 && + !selectedValues.includes(o.value) + } showCheckbox /> ))} diff --git a/protocol-designer/src/components/modals/CreateFileWizard/PipetteTypeTile.tsx b/protocol-designer/src/components/modals/CreateFileWizard/PipetteTypeTile.tsx index b7d050e33f2..d833bb8f4b5 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/PipetteTypeTile.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/PipetteTypeTile.tsx @@ -6,14 +6,12 @@ import { Flex, Text, SPACING, - Mount, ALIGN_CENTER, PrimaryButton, JUSTIFY_SPACE_BETWEEN, InstrumentDiagram, } from '@opentrons/components' import { - PipetteName, OT2_PIPETTES, OT2_ROBOT_TYPE, OT3_PIPETTES, @@ -27,6 +25,8 @@ import { GoBack } from './GoBack' import { EquipmentOption } from './EquipmentOption' import { HandleEnter } from './HandleEnter' +import type { PipetteName } from '@opentrons/shared-data' +import type { Mount } from '@opentrons/components' import type { FormState, WizardTileProps } from './types' import type { UseFormReturn } from 'react-hook-form' diff --git a/protocol-designer/src/components/modals/CreateFileWizard/StagingAreaTile.tsx b/protocol-designer/src/components/modals/CreateFileWizard/StagingAreaTile.tsx index af122437b84..ad73d6edb74 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/StagingAreaTile.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/StagingAreaTile.tsx @@ -43,7 +43,10 @@ export function StagingAreaTile(props: WizardTileProps): JSX.Element | null { // and a cutoutFixtureId so that we don't have to string parse here to generate them equipment.includes('stagingArea') ) - const unoccupiedStagingAreaSlots = getUnoccupiedStagingAreaSlots(modules) + const unoccupiedStagingAreaSlots = getUnoccupiedStagingAreaSlots( + modules, + additionalEquipment + ) const savedStagingAreaSlots: DeckConfiguration = stagingAreaItems.flatMap( item => { diff --git a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/CreateFileWizard.test.tsx b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/CreateFileWizard.test.tsx index dbfdc99fde6..df494e2b1ec 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/CreateFileWizard.test.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/CreateFileWizard.test.tsx @@ -90,7 +90,8 @@ describe('CreateFileWizard', () => { next = screen.getByRole('button', { name: 'Next' }) fireEvent.click(next) screen.getByText('Step 3 / 6') - // select 10uL tipracks + // un-select default 10uL tiprack then select again + fireEvent.click(screen.getByLabelText('EquipmentOption_flex_10uL tipracks')) fireEvent.click(screen.getByLabelText('EquipmentOption_flex_10uL tipracks')) next = screen.getByRole('button', { name: 'Next' }) fireEvent.click(next) diff --git a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/EquipmentOption.test.tsx b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/EquipmentOption.test.tsx index c83b1e99404..e2ec8a55ed1 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/EquipmentOption.test.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/EquipmentOption.test.tsx @@ -23,6 +23,7 @@ describe('EquipmentOption', () => { isSelected: false, text: 'mockText', robotType: FLEX_ROBOT_TYPE, + type: 'module', } }) afterEach(() => { @@ -39,7 +40,7 @@ describe('EquipmentOption', () => { } render(props) expect(screen.getByLabelText('EquipmentOption_flex_mockText')).toHaveStyle( - `background-color: ${COLORS.grey10}` + `background-color: ${COLORS.white}` ) }) it('renders the equipment option without check not selected and image', () => { @@ -55,7 +56,7 @@ describe('EquipmentOption', () => { screen.getByLabelText('EquipmentOption_checkbox-blank-outline') ).toHaveStyle(`color: ${COLORS.grey50}`) expect(screen.getByLabelText('EquipmentOption_flex_mockText')).toHaveStyle( - `border: 1px ${BORDERS.styleSolid} ${COLORS.grey35}` + `border: 1px ${BORDERS.styleSolid} ${COLORS.grey30}` ) }) it('renders the equipment option without check selected', () => { @@ -66,9 +67,9 @@ describe('EquipmentOption', () => { } render(props) screen.getByText('mockText') - expect( - screen.getByLabelText('EquipmentOption_checkbox-marked') - ).toHaveStyle(`color: ${COLORS.blue50}`) + expect(screen.getByLabelText('EquipmentOption_ot-checkbox')).toHaveStyle( + `color: ${COLORS.blue50}` + ) expect(screen.getByLabelText('EquipmentOption_flex_mockText')).toHaveStyle( `border: ${BORDERS.activeLineBorder}` ) @@ -90,4 +91,35 @@ describe('EquipmentOption', () => { expect(props.multiples?.setValue).toHaveBeenCalled() screen.getByTestId('EquipmentOption_downArrow') }) + it('renders the equipment option with multiples allowed cta disabled from isDisabled', () => { + props = { + ...props, + multiples: { + numItems: 1, + maxItems: 4, + setValue: vi.fn(), + isDisabled: true, + }, + } + render(props) + fireEvent.click(screen.getByTestId('EquipmentOption_upArrow')) + expect(props.multiples?.setValue).not.toHaveBeenCalled() + }) + it('renders the equipment option with multiples allowed cta disabled from hitting max number', () => { + props = { + ...props, + multiples: { + numItems: 1, + maxItems: 7, + setValue: vi.fn(), + isDisabled: false, + }, + } + render(props) + screen.getByText('1') + for (let i = 1; i < 7; i++) { + fireEvent.click(screen.getByTestId('EquipmentOption_upArrow')) + } + expect(props.multiples?.setValue).toHaveBeenCalledTimes(6) + }) }) diff --git a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/ModulesAndOtherTile.test.tsx b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/ModulesAndOtherTile.test.tsx index 63da7f3ed30..ba9924ee13e 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/ModulesAndOtherTile.test.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/ModulesAndOtherTile.test.tsx @@ -5,10 +5,7 @@ import { fireEvent, screen, cleanup } from '@testing-library/react' import { FLEX_ROBOT_TYPE, OT2_ROBOT_TYPE } from '@opentrons/shared-data' import { renderWithProviders } from '../../../../__testing-utils__' import { i18n } from '../../../../localization' -import { - getDisableModuleRestrictions, - getEnableMoam, -} from '../../../../feature-flags/selectors' +import { getDisableModuleRestrictions } from '../../../../feature-flags/selectors' import { CrashInfoBox } from '../../../modules' import { ModuleFields } from '../../FilePipettesModal/ModuleFields' import { ModulesAndOtherTile } from '../ModulesAndOtherTile' @@ -61,7 +58,6 @@ describe('ModulesAndOtherTile', () => { ...props, ...mockWizardTileProps, } as WizardTileProps - vi.mocked(getEnableMoam).mockReturnValue(true) vi.mocked(CrashInfoBox).mockReturnValue(
    mock CrashInfoBox
    ) vi.mocked(EquipmentOption).mockReturnValue(
    mock EquipmentOption
    ) vi.mocked(getDisableModuleRestrictions).mockReturnValue(false) diff --git a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/PipetteTipsTile.test.tsx b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/PipetteTipsTile.test.tsx index 821acd65ef6..ce5e29f06a8 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/PipetteTipsTile.test.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/PipetteTipsTile.test.tsx @@ -51,6 +51,7 @@ const mockWizardTileProps: Partial = { proceed: vi.fn(), watch: vi.fn((name: keyof typeof values) => values[name]) as any, getValues: vi.fn(() => values) as any, + setValue: vi.fn(), } const fixtureTipRack10ul = { diff --git a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/utils.test.tsx b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/utils.test.tsx index a8d59634e0b..7f4a2a7bf0d 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/__tests__/utils.test.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/__tests__/utils.test.tsx @@ -31,25 +31,47 @@ let MOCK_FORM_STATE = { describe('getUnoccupiedStagingAreaSlots', () => { it('should return all staging area slots when there are no modules', () => { - const result = getUnoccupiedStagingAreaSlots(null) + const result = getUnoccupiedStagingAreaSlots(null, []) expect(result).toStrictEqual(STANDARD_EMPTY_SLOTS) }) - it('should return one staging area slot when there are modules in the way of the other slots', () => { - const result = getUnoccupiedStagingAreaSlots({ - 0: { model: 'magneticBlockV1', type: 'magneticBlockType', slot: 'A3' }, - 1: { - model: 'temperatureModuleV2', - type: 'temperatureModuleType', - slot: 'B3', - }, - 2: { - model: 'temperatureModuleV2', - type: 'temperatureModuleType', - slot: 'C3', + it('should return one staging area slot when there are only 1 num slots available', () => { + const result = getUnoccupiedStagingAreaSlots( + { + 0: { + model: 'heaterShakerModuleV1', + type: 'heaterShakerModuleType', + slot: 'D1', + }, + 1: { + model: 'temperatureModuleV2', + type: 'temperatureModuleType', + slot: 'D3', + }, + 2: { + model: 'temperatureModuleV2', + type: 'temperatureModuleType', + slot: 'C1', + }, + 3: { + model: 'temperatureModuleV2', + type: 'temperatureModuleType', + slot: 'B3', + }, + 4: { + model: 'thermocyclerModuleV2', + type: 'thermocyclerModuleType', + slot: 'B1', + }, + 5: { + model: 'temperatureModuleV2', + type: 'temperatureModuleType', + slot: 'A3', + }, }, - }) + [] + ) expect(result).toStrictEqual([ - { cutoutId: 'cutoutD3', cutoutFixtureId: SINGLE_RIGHT_SLOT_FIXTURE }, + { cutoutId: 'cutoutA3', cutoutFixtureId: SINGLE_RIGHT_SLOT_FIXTURE }, ]) }) }) diff --git a/protocol-designer/src/components/modals/CreateFileWizard/index.tsx b/protocol-designer/src/components/modals/CreateFileWizard/index.tsx index 53ae9a88f6a..44cdbd77c78 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/index.tsx +++ b/protocol-designer/src/components/modals/CreateFileWizard/index.tsx @@ -10,9 +10,6 @@ import uniq from 'lodash/uniq' import * as Yup from 'yup' import { ModalShell } from '@opentrons/components' import { - ModuleType, - ModuleModel, - PipetteName, OT2_ROBOT_TYPE, TEMPERATURE_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, @@ -20,13 +17,9 @@ import { THERMOCYCLER_MODULE_TYPE, FLEX_ROBOT_TYPE, WASTE_CHUTE_CUTOUT, + getAreSlotsAdjacent, } from '@opentrons/shared-data' -import { - actions as stepFormActions, - FormPipettesByMount, - FormPipette, - PipetteOnDeck, -} from '../../../step-forms' +import { actions as stepFormActions } from '../../../step-forms' import { INITIAL_DECK_SETUP_STEP_ID } from '../../../constants' import { uuid } from '../../../utils' import { actions as navigationActions } from '../../../navigation' @@ -53,8 +46,18 @@ import { WizardHeader } from './WizardHeader' import { StagingAreaTile } from './StagingAreaTile' import { getTrashSlot } from './utils' +import type { + ModuleType, + ModuleModel, + PipetteName, +} from '@opentrons/shared-data' import type { NormalizedPipette } from '@opentrons/step-generation' import type { ThunkDispatch } from 'redux-thunk' +import type { + FormPipettesByMount, + FormPipette, + PipetteOnDeck, +} from '../../../step-forms' import type { BaseState } from '../../../types' import type { FormState } from './types' @@ -118,6 +121,7 @@ export function CreateFileWizard(): JSX.Element | null { values.pipettesByMount, (acc, formPipette: FormPipette, mount): PipetteFieldsData[] => { return formPipette?.pipetteName != null && + formPipette?.pipetteName !== '' && formPipette.tiprackDefURI != null && (mount === 'left' || mount === 'right') ? [ @@ -262,14 +266,25 @@ export function CreateFileWizard(): JSX.Element | null { pipettes.flatMap(pipette => pipette.tiprackDefURI) ) const FLEX_MIDDLE_SLOTS = ['C2', 'B2', 'A2'] - const OT2_MIDDLE_SLOTS = ['2', '5', '8', '11'] + const hasOt2TC = modules.find( + module => module.type === THERMOCYCLER_MODULE_TYPE + ) + const heaterShakerSlot = modules.find( + module => module.type === HEATERSHAKER_MODULE_TYPE + )?.slot + const OT2_MIDDLE_SLOTS = hasOt2TC ? ['2', '5'] : ['2', '5', '8', '11'] + const modifiedOt2Slots = OT2_MIDDLE_SLOTS.filter(slot => + heaterShakerSlot != null + ? !getAreSlotsAdjacent(heaterShakerSlot, slot) + : slot + ) newTiprackModels.forEach((tiprackDefURI, index) => { dispatch( labwareIngredActions.createContainer({ slot: values.fields.robotType === FLEX_ROBOT_TYPE ? FLEX_MIDDLE_SLOTS[index] - : OT2_MIDDLE_SLOTS[index], + : modifiedOt2Slots[index], labwareDefURI: tiprackDefURI, adapterUnderLabwareDefURI: values.pipettesByMount.left.pipetteName === 'p1000_96' diff --git a/protocol-designer/src/components/modals/CreateFileWizard/types.ts b/protocol-designer/src/components/modals/CreateFileWizard/types.ts index 1bfa43bbe74..fd325457b57 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/types.ts +++ b/protocol-designer/src/components/modals/CreateFileWizard/types.ts @@ -1,4 +1,4 @@ -import { UseFormReturn } from 'react-hook-form' +import type { UseFormReturn } from 'react-hook-form' import type { FormPipettesByMount, FormModules } from '../../../step-forms' import type { NewProtocolFields } from '../../../load-file' diff --git a/protocol-designer/src/components/modals/CreateFileWizard/utils.ts b/protocol-designer/src/components/modals/CreateFileWizard/utils.ts index eb3f0985c20..56102e1e3c2 100644 --- a/protocol-designer/src/components/modals/CreateFileWizard/utils.ts +++ b/protocol-designer/src/components/modals/CreateFileWizard/utils.ts @@ -64,26 +64,6 @@ export const MOVABLE_TRASH_CUTOUTS = [ }, ] -export const getUnoccupiedStagingAreaSlots = ( - modules: FormState['modules'] -): DeckConfiguration => { - let unoccupiedSlots = STANDARD_EMPTY_SLOTS - const moduleCutoutIds = - modules != null - ? Object.values(modules).flatMap(module => - module.type === THERMOCYCLER_MODULE_TYPE - ? [`cutout${module.slot}`, 'cutoutA1'] - : `cutout${module.slot}` - ) - : [] - - unoccupiedSlots = unoccupiedSlots.filter(emptySlot => { - return !moduleCutoutIds.includes(emptySlot.cutoutId) - }) - - return unoccupiedSlots -} - const TOTAL_MODULE_SLOTS = 8 export const getNumSlotsAvailable = ( @@ -128,6 +108,19 @@ export const getNumSlotsAvailable = ( ) } +export const getUnoccupiedStagingAreaSlots = ( + modules: FormState['modules'], + additionalEquipment: FormState['additionalEquipment'] +): DeckConfiguration => { + const numSlotsAvailable = getNumSlotsAvailable(modules, additionalEquipment) + let unoccupiedSlots = STANDARD_EMPTY_SLOTS + + if (numSlotsAvailable < 4) { + unoccupiedSlots = STANDARD_EMPTY_SLOTS.slice(0, numSlotsAvailable) + } + return unoccupiedSlots +} + interface TrashOptionDisabledProps { trashType: 'trashBin' | 'wasteChute' additionalEquipment: AdditionalEquipment[] diff --git a/protocol-designer/src/components/modals/EditModulesModal/EditMultipleModulesModal.tsx b/protocol-designer/src/components/modals/EditModulesModal/EditMultipleModulesModal.tsx index cc31c4eb071..02d5626eed2 100644 --- a/protocol-designer/src/components/modals/EditModulesModal/EditMultipleModulesModal.tsx +++ b/protocol-designer/src/components/modals/EditModulesModal/EditMultipleModulesModal.tsx @@ -18,7 +18,6 @@ import { DIRECTION_COLUMN, } from '@opentrons/components' import { - DeckConfiguration, SINGLE_RIGHT_SLOT_FIXTURE, TEMPERATURE_MODULE_CUTOUTS, TEMPERATURE_MODULE_TYPE, @@ -30,8 +29,12 @@ import { getLabwareOnSlot, getSlotIsEmpty } from '../../../step-forms' import { getInitialDeckSetup } from '../../../step-forms/selectors' import { getLabwareIsCompatible } from '../../../utils/labwareModuleCompatibility' import { PDAlert } from '../../alerts/PDAlert' +import type { + DeckConfiguration, + CutoutId, + ModuleType, +} from '@opentrons/shared-data' import type { Control, ControllerRenderProps } from 'react-hook-form' -import type { CutoutId, ModuleType } from '@opentrons/shared-data' import type { ModuleOnDeck } from '../../../step-forms' export interface EditMultipleModulesModalValues { diff --git a/protocol-designer/src/components/modals/EditModulesModal/ModelDropdown.tsx b/protocol-designer/src/components/modals/EditModulesModal/ModelDropdown.tsx index 72c55271792..5f6bc6b7938 100644 --- a/protocol-designer/src/components/modals/EditModulesModal/ModelDropdown.tsx +++ b/protocol-designer/src/components/modals/EditModulesModal/ModelDropdown.tsx @@ -1,7 +1,10 @@ import * as React from 'react' import { DropdownField } from '@opentrons/components' -import { ControllerFieldState, ControllerRenderProps } from 'react-hook-form' -import { EditModulesFormValues } from './index' +import type { + ControllerFieldState, + ControllerRenderProps, +} from 'react-hook-form' +import type { EditModulesFormValues } from './index' export interface ModelDropdownProps { field: ControllerRenderProps diff --git a/protocol-designer/src/components/modals/EditModulesModal/__tests__/EditMultipleModulesModal.test.tsx b/protocol-designer/src/components/modals/EditModulesModal/__tests__/EditMultipleModulesModal.test.tsx index fa01bd44ecf..df2bd73545f 100644 --- a/protocol-designer/src/components/modals/EditModulesModal/__tests__/EditMultipleModulesModal.test.tsx +++ b/protocol-designer/src/components/modals/EditModulesModal/__tests__/EditMultipleModulesModal.test.tsx @@ -5,13 +5,10 @@ import { renderWithProviders } from '../../../../__testing-utils__' import { i18n } from '../../../../localization' import { getInitialDeckSetup } from '../../../../step-forms/selectors' import { getLabwareIsCompatible } from '../../../../utils/labwareModuleCompatibility' -import { - getLabwareOnSlot, - getSlotIsEmpty, - ModuleOnDeck, -} from '../../../../step-forms' +import { getLabwareOnSlot, getSlotIsEmpty } from '../../../../step-forms' import { EditMultipleModulesModal } from '../EditMultipleModulesModal' import type * as Components from '@opentrons/components' +import type { ModuleOnDeck } from '../../../../step-forms' vi.mock('../../../../step-forms/selectors') vi.mock('../../../../utils/labwareModuleCompatibility') diff --git a/protocol-designer/src/components/modals/EditModulesModal/index.tsx b/protocol-designer/src/components/modals/EditModulesModal/index.tsx index 3b65879f996..4ff099e9f2a 100644 --- a/protocol-designer/src/components/modals/EditModulesModal/index.tsx +++ b/protocol-designer/src/components/modals/EditModulesModal/index.tsx @@ -2,13 +2,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { useSelector, useDispatch } from 'react-redux' import some from 'lodash/some' -import { - Control, - Controller, - useController, - useForm, - UseFormWatch, -} from 'react-hook-form' +import { Controller, useController, useForm } from 'react-hook-form' import { FormGroup, @@ -35,12 +29,9 @@ import { THERMOCYCLER_MODULE_TYPE, MAGNETIC_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, - ModuleType, - ModuleModel, OT2_STANDARD_MODEL, THERMOCYCLER_MODULE_V1, TEMPERATURE_MODULE_V1, - RobotType, FLEX_ROBOT_TYPE, THERMOCYCLER_MODULE_V2, OT2_ROBOT_TYPE, @@ -70,6 +61,8 @@ import { ModelDropdown } from './ModelDropdown' import { SlotDropdown } from './SlotDropdown' import styles from './EditModules.module.css' +import type { ModuleType, ModuleModel, RobotType } from '@opentrons/shared-data' +import type { Control, UseFormWatch } from 'react-hook-form' import type { ModuleOnDeck } from '../../../step-forms/types' import type { ModelModuleInfo } from '../../EditModules' diff --git a/protocol-designer/src/components/modals/FilePipettesModal/ModuleFields.tsx b/protocol-designer/src/components/modals/FilePipettesModal/ModuleFields.tsx index 8eba4a7e553..6edfae58570 100644 --- a/protocol-designer/src/components/modals/FilePipettesModal/ModuleFields.tsx +++ b/protocol-designer/src/components/modals/FilePipettesModal/ModuleFields.tsx @@ -6,8 +6,6 @@ import { MAGNETIC_MODULE_TYPE, MAGNETIC_MODULE_V1, MAGNETIC_MODULE_V2, - ModuleModel, - ModuleType, OT2_ROBOT_TYPE, SPAN7_8_10_11_SLOT, TEMPERATURE_MODULE_TYPE, @@ -22,6 +20,7 @@ import { import { uuid } from '../../../utils' import { ModuleDiagram } from '../../modules' import { EquipmentOption } from '../CreateFileWizard/EquipmentOption' +import type { ModuleModel, ModuleType } from '@opentrons/shared-data' import type { WizardTileProps } from '../CreateFileWizard/types' export const DEFAULT_SLOT_MAP: { [moduleType in ModuleType]?: string } = { diff --git a/protocol-designer/src/components/modals/FilePipettesModal/PipetteDiagram.tsx b/protocol-designer/src/components/modals/FilePipettesModal/PipetteDiagram.tsx index 9b886213933..6268e1608aa 100644 --- a/protocol-designer/src/components/modals/FilePipettesModal/PipetteDiagram.tsx +++ b/protocol-designer/src/components/modals/FilePipettesModal/PipetteDiagram.tsx @@ -2,15 +2,12 @@ import * as React from 'react' import { useSelector } from 'react-redux' import { css } from 'styled-components' import cx from 'classnames' -import { - FLEX_ROBOT_TYPE, - getPipetteSpecsV2, - PipetteName, -} from '@opentrons/shared-data' +import { FLEX_ROBOT_TYPE, getPipetteSpecsV2 } from '@opentrons/shared-data' import { InstrumentDiagram } from '@opentrons/components' -import { FormPipette } from '../../../step-forms/types' import { getRobotType } from '../../../file-data/selectors' import styles from './FilePipettesModal.module.css' +import type { PipetteName } from '@opentrons/shared-data' +import type { FormPipette } from '../../../step-forms/types' interface Props { leftPipette?: FormPipette['pipetteName'] diff --git a/protocol-designer/src/components/modals/FilePipettesModal/PipetteFields.tsx b/protocol-designer/src/components/modals/FilePipettesModal/PipetteFields.tsx index 92593996844..2a6c503ef4a 100644 --- a/protocol-designer/src/components/modals/FilePipettesModal/PipetteFields.tsx +++ b/protocol-designer/src/components/modals/FilePipettesModal/PipetteFields.tsx @@ -1,30 +1,17 @@ import * as React from 'react' import { useDispatch, useSelector } from 'react-redux' -import { - Control, - FormState, - UseFormSetValue, - UseFormTrigger, -} from 'react-hook-form' import { useTranslation } from 'react-i18next' import isEmpty from 'lodash/isEmpty' -import { - FormGroup, - PipetteSelect, - OutlineButton, - Mount, -} from '@opentrons/components' +import { FormGroup, PipetteSelect, OutlineButton } from '@opentrons/components' import { getIncompatiblePipetteNames, OT2_PIPETTES, OT2_ROBOT_TYPE, OT3_PIPETTES, RIGHT, - RobotType, } from '@opentrons/shared-data' import { createCustomTiprackDef } from '../../../labware-defs/actions' import { getLabwareDefsByURI } from '../../../labware-defs/selectors' -import { FormPipettesByMount } from '../../../step-forms' import { getAllowAllTipracks } from '../../../feature-flags/selectors' import { getTiprackOptions } from '../utils' import { PipetteDiagram } from './PipetteDiagram' @@ -33,8 +20,16 @@ import { TiprackSelect } from './TiprackSelect' import styles from './FilePipettesModal.module.css' import formStyles from '../../forms/forms.module.css' -import type { PipetteName } from '@opentrons/shared-data' +import type { + Control, + FormState, + UseFormSetValue, + UseFormTrigger, +} from 'react-hook-form' import type { ThunkDispatch } from 'redux-thunk' +import type { Mount } from '@opentrons/components' +import type { RobotType, PipetteName } from '@opentrons/shared-data' +import type { FormPipettesByMount } from '../../../step-forms' import type { BaseState } from '../../../types' import type { FormState as TypeFormState } from './index' diff --git a/protocol-designer/src/components/modals/FilePipettesModal/TiprackOption.tsx b/protocol-designer/src/components/modals/FilePipettesModal/TiprackOption.tsx index 8908d0e7614..086966230e3 100644 --- a/protocol-designer/src/components/modals/FilePipettesModal/TiprackOption.tsx +++ b/protocol-designer/src/components/modals/FilePipettesModal/TiprackOption.tsx @@ -1,41 +1,99 @@ import * as React from 'react' +import { useTranslation } from 'react-i18next' +import { css } from 'styled-components' import { Flex, - Text, - Icon, DIRECTION_ROW, COLORS, SPACING, ALIGN_CENTER, + StyledText, + BORDERS, + useHoverTooltip, + Tooltip, } from '@opentrons/components' interface TiprackOptionProps { onClick: React.MouseEventHandler isSelected: boolean + isDisabled: boolean text: React.ReactNode } export function TiprackOption(props: TiprackOptionProps): JSX.Element { - const { text, onClick, isSelected } = props + const { text, onClick, isSelected, isDisabled } = props + const { t } = useTranslation('tooltip') + const [targetProps, tooltipProps] = useHoverTooltip() + + const OPTION_STYLE = css` + background-color: ${COLORS.white}; + border-radius: ${BORDERS.borderRadius8}; + border: 1px ${BORDERS.styleSolid} ${COLORS.grey30}; + + &:hover { + background-color: ${COLORS.grey10}; + border: 1px ${BORDERS.styleSolid} ${COLORS.grey35}; + } + + &:focus { + outline: 2px ${BORDERS.styleSolid} ${COLORS.blue50}; + outline-offset: 3px; + } + ` + + const OPTION_SELECTED_STYLE = css` + ${OPTION_STYLE} + background-color: ${COLORS.blue10}; + border: 1px ${BORDERS.styleSolid} ${COLORS.blue50}; + + &:hover { + border: 1px ${BORDERS.styleSolid} ${COLORS.blue50}; + box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2); + } + ` + + const OPTION_DISABLED_STYLE = css` + ${OPTION_STYLE} + background-color: ${COLORS.white}; + border: 1px ${BORDERS.styleSolid} ${COLORS.grey30}; + &:hover { + border: 1px ${BORDERS.styleSolid} ${COLORS.grey30}; + background-color: ${COLORS.white}; + } + ` + + let optionStyle + if (isDisabled) { + optionStyle = OPTION_DISABLED_STYLE + } else if (isSelected) { + optionStyle = OPTION_SELECTED_STYLE + } else { + optionStyle = OPTION_STYLE + } + return ( - - - {text} - + <> + + {text} + + {isDisabled ? ( + {t('disabled_no_space_pipette')} + ) : null} + ) } diff --git a/protocol-designer/src/components/modals/FilePipettesModal/TiprackSelect.tsx b/protocol-designer/src/components/modals/FilePipettesModal/TiprackSelect.tsx index 8aa608796ec..8c77e315531 100644 --- a/protocol-designer/src/components/modals/FilePipettesModal/TiprackSelect.tsx +++ b/protocol-designer/src/components/modals/FilePipettesModal/TiprackSelect.tsx @@ -1,5 +1,5 @@ import * as React from 'react' -import { Flex, DIRECTION_COLUMN } from '@opentrons/components' +import { Flex, DIRECTION_COLUMN, SPACING } from '@opentrons/components' import { TiprackOption } from './TiprackOption' import type { Mount } from '@opentrons/components' import type { FormPipettesByMount } from '../../../step-forms' @@ -30,21 +30,32 @@ export const TiprackSelect = ( return ( - {tiprackOptions.map(option => ( - { - const updatedValues = selectedValues?.includes(option.value) - ? selectedValues.filter(value => value !== option.value) - : [...(selectedValues ?? []), option.value] - onSetFieldValue( - `pipettesByMount.${mount}.tiprackDefURI`, - updatedValues.slice(0, 3) - ) - }} - /> + {tiprackOptions.map((option, index) => ( + + { + const updatedValues = selectedValues?.includes(option.value) + ? selectedValues.filter(value => value !== option.value) + : [...(selectedValues ?? []), option.value] + onSetFieldValue( + `pipettesByMount.${mount}.tiprackDefURI`, + updatedValues.slice(0, 3) + ) + }} + /> + ))} ) diff --git a/protocol-designer/src/components/modals/FilePipettesModal/__tests__/TiprackOptions.test.tsx b/protocol-designer/src/components/modals/FilePipettesModal/__tests__/TiprackOptions.test.tsx index 6b9004a2472..27810c71176 100644 --- a/protocol-designer/src/components/modals/FilePipettesModal/__tests__/TiprackOptions.test.tsx +++ b/protocol-designer/src/components/modals/FilePipettesModal/__tests__/TiprackOptions.test.tsx @@ -1,8 +1,8 @@ import * as React from 'react' import { vi, describe, beforeEach, it, expect } from 'vitest' -import { screen } from '@testing-library/react' +import { BORDERS, COLORS } from '@opentrons/components' +import { fireEvent, screen } from '@testing-library/react' import { renderWithProviders } from '../../../../__testing-utils__' -import { COLORS } from '@opentrons/components' import { TiprackOption } from '../TiprackOption' const render = (props: React.ComponentProps) => { @@ -15,22 +15,35 @@ describe('TiprackOption', () => { props = { onClick: vi.fn(), isSelected: true, + isDisabled: false, text: 'mockText', } }) it('renders a selected tiprack option', () => { render(props) screen.getByText('mockText') - expect(screen.getByLabelText('TiprackOption_checkbox-marked')).toHaveStyle( - `color: ${COLORS.blue50}` + expect(screen.getByLabelText('TiprackOption_flex_mockText')).toHaveStyle( + `background-color: ${COLORS.blue10}` ) + fireEvent.click(screen.getByText('mockText')) + expect(props.onClick).toHaveBeenCalled() }) it('renders an unselected tiprack option', () => { props.isSelected = false render(props) screen.getByText('mockText') - expect( - screen.getByLabelText('TiprackOption_checkbox-blank-outline') - ).toHaveStyle(`color: ${COLORS.grey50}`) + expect(screen.getByLabelText('TiprackOption_flex_mockText')).toHaveStyle( + `background-color: ${COLORS.white}` + ) + fireEvent.click(screen.getByText('mockText')) + expect(props.onClick).toHaveBeenCalled() + }) + it('renders a disabled tiprack option', () => { + props.isSelected = false + props.isDisabled = true + render(props) + expect(screen.getByLabelText('TiprackOption_flex_mockText')).toHaveStyle( + `border: 1px ${BORDERS.styleSolid} ${COLORS.grey30}` + ) }) }) diff --git a/protocol-designer/src/components/modals/FilePipettesModal/index.tsx b/protocol-designer/src/components/modals/FilePipettesModal/index.tsx index 9567e753085..fd1ab4e6252 100644 --- a/protocol-designer/src/components/modals/FilePipettesModal/index.tsx +++ b/protocol-designer/src/components/modals/FilePipettesModal/index.tsx @@ -18,38 +18,52 @@ import { TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, - ModuleType, - ModuleModel, - PipetteName, OT2_ROBOT_TYPE, getPipetteSpecsV2, } from '@opentrons/shared-data' -import { StepChangesConfirmModal } from '../EditPipettesModal/StepChangesConfirmModal' -import { PipetteFields } from './PipetteFields' -import { CrashInfoBox } from '../../modules' -import styles from './FilePipettesModal.module.css' -import modalStyles from '../modal.module.css' import { actions as stepFormActions, selectors as stepFormSelectors, getIsCrashablePipetteSelected, - PipetteOnDeck, - FormPipettesByMount, - FormModules, - FormPipette, } from '../../../step-forms' import { INITIAL_DECK_SETUP_STEP_ID } from '../../../constants' -import { NewProtocolFields } from '../../../load-file' import { getRobotType } from '../../../file-data/selectors' import { uuid } from '../../../utils' +import { getLabwareEntities } from '../../../step-forms/selectors' +import { + createContainer, + deleteContainer, +} from '../../../labware-ingred/actions' import { actions as steplistActions } from '../../../steplist' import { selectors as featureFlagSelectors } from '../../../feature-flags' +import { CrashInfoBox } from '../../modules' import { getCrashableModuleSelected } from '../CreateFileWizard/utils' +import { adapter96ChannelDefUri } from '../CreateFileWizard' +import { StepChangesConfirmModal } from '../EditPipettesModal/StepChangesConfirmModal' +import { PipetteFields } from './PipetteFields' +import type { + ModuleType, + ModuleModel, + PipetteName, +} from '@opentrons/shared-data' +import type { + LabwareEntities, + NormalizedPipette, +} from '@opentrons/step-generation' +import type { NewProtocolFields } from '../../../load-file' +import type { + PipetteOnDeck, + FormPipettesByMount, + FormModules, + FormPipette, +} from '../../../step-forms' import type { DeckSlot, ThunkDispatch } from '../../../types' -import type { NormalizedPipette } from '@opentrons/step-generation' import type { StepIdType } from '../../../form-types' +import styles from './FilePipettesModal.module.css' +import modalStyles from '../modal.module.css' + export type PipetteFieldsData = Omit< PipetteOnDeck, 'id' | 'spec' | 'tiprackLabwareDef' @@ -124,6 +138,7 @@ const validationSchema: any = Yup.object().shape({ }) const makeUpdatePipettes = ( + labwareEntities: LabwareEntities, prevPipettes: { [pipetteId: string]: PipetteOnDeck }, orderedStepIds: StepIdType[], dispatch: ThunkDispatch, @@ -159,6 +174,38 @@ const makeUpdatePipettes = ( } } }) + const newTiprackUris = new Set( + newPipetteArray.flatMap(pipette => pipette.tiprackDefURI) + ) + const previousTiprackLabwares = Object.values(labwareEntities).filter( + labware => labware.def.parameters.isTiprack + ) + + const previousTiprackUris = new Set( + previousTiprackLabwares.map(labware => labware.labwareDefURI) + ) + + // Find tipracks to delete (old tipracks not in new pipettes) + previousTiprackLabwares + .filter(labware => !newTiprackUris.has(labware.labwareDefURI)) + .forEach(labware => dispatch(deleteContainer({ labwareId: labware.id }))) + + // Create new tipracks that are not in previous tiprackURIs + newTiprackUris.forEach(tiprackDefUri => { + if (!previousTiprackUris.has(tiprackDefUri)) { + const adapterUnderLabwareDefURI = newPipetteArray.some( + pipette => pipette.name === 'p1000_96' + ) + ? adapter96ChannelDefUri + : undefined + dispatch( + createContainer({ + labwareDefURI: tiprackDefUri, + adapterUnderLabwareDefURI, + }) + ) + } + }) dispatch( stepFormActions.createPipettes( @@ -275,6 +322,7 @@ export const FilePipettesModal = (props: Props): JSX.Element => { const { t } = useTranslation(['modal', 'button', 'form']) const robotType = useSelector(getRobotType) const dispatch = useDispatch() + const labwareEntities = useSelector(getLabwareEntities) const initialPipettes = useSelector( stepFormSelectors.getPipettesForEditPipetteForm ) @@ -295,6 +343,7 @@ export const FilePipettesModal = (props: Props): JSX.Element => { modules: ModuleCreationArgs[] pipettes: PipetteFieldsData[] }) => void = makeUpdatePipettes( + labwareEntities, prevPipettes, orderedStepIds, dispatch, diff --git a/protocol-designer/src/components/modals/FileUploadMessageModal/modalContents.tsx b/protocol-designer/src/components/modals/FileUploadMessageModal/modalContents.tsx index f09052a5c5f..a58cea838cd 100644 --- a/protocol-designer/src/components/modals/FileUploadMessageModal/modalContents.tsx +++ b/protocol-designer/src/components/modals/FileUploadMessageModal/modalContents.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { Trans, useTranslation } from 'react-i18next' import styles from './modalContents.module.css' -import { FileUploadMessage } from '../../../load-file' +import type { FileUploadMessage } from '../../../load-file' import type { ModalContents } from './types' const PD = 'Protocol Designer' @@ -96,6 +96,23 @@ export const getToV8MigrationMessage = (props: ModalProps): ModalContents => { } } +export const getToV8_1MigrationMessage = (props: ModalProps): ModalContents => { + const { t } = props + + return { + title: t('migrations.header', { pd: PD }), + body: ( +
    +

    +

    {t('migrations.toV8_1Migration.body1')}

    +

    +

    {t('migrations.toV8_1Migration.body2')}

    +

    {t('migrations.toV8_1Migration.body3')}

    +
    + ), + } +} + export const getToV3MigrationMessage = (props: ModalProps): ModalContents => { const { t } = props @@ -152,9 +169,12 @@ export const getMigrationMessage = ( ) { return getNoBehaviorChangeMessage({ t }) } - if (migrationsRan.includes('8.0.0')) { + if (migrationsRan.includes('8.1.0')) { + return getToV8_1MigrationMessage({ t }) + } else if (migrationsRan.includes('8.0.0')) { return getToV8MigrationMessage({ t }) } + return getGenericDidMigrateMessage({ t }) } diff --git a/protocol-designer/src/components/modals/FileUploadMessageModal/types.ts b/protocol-designer/src/components/modals/FileUploadMessageModal/types.ts index c190a630b37..5e6f0428f10 100644 --- a/protocol-designer/src/components/modals/FileUploadMessageModal/types.ts +++ b/protocol-designer/src/components/modals/FileUploadMessageModal/types.ts @@ -1,4 +1,4 @@ -import * as React from 'react' +import type * as React from 'react' export interface ModalContents { title: string body: React.ReactNode diff --git a/protocol-designer/src/components/modals/LabwareUploadMessageModal/LabwareUploadMessageModal.tsx b/protocol-designer/src/components/modals/LabwareUploadMessageModal/LabwareUploadMessageModal.tsx index 2cb36c1de03..2d789d07d67 100644 --- a/protocol-designer/src/components/modals/LabwareUploadMessageModal/LabwareUploadMessageModal.tsx +++ b/protocol-designer/src/components/modals/LabwareUploadMessageModal/LabwareUploadMessageModal.tsx @@ -3,13 +3,14 @@ import { useDispatch, useSelector } from 'react-redux' import { useTranslation } from 'react-i18next' import cx from 'classnames' -import { AlertModal, OutlineButton, ButtonProps } from '@opentrons/components' +import { AlertModal, OutlineButton } from '@opentrons/components' import modalStyles from '../modal.module.css' import { selectors as labwareDefSelectors, actions as labwareDefActions, - LabwareUploadMessage, } from '../../../labware-defs' +import type { ButtonProps } from '@opentrons/components' +import type { LabwareUploadMessage } from '../../../labware-defs' const MessageBody = (props: { message: LabwareUploadMessage diff --git a/protocol-designer/src/components/modals/MoreOptionsModal.tsx b/protocol-designer/src/components/modals/MoreOptionsModal.tsx index e6520cae19c..88b0cee0ff4 100644 --- a/protocol-designer/src/components/modals/MoreOptionsModal.tsx +++ b/protocol-designer/src/components/modals/MoreOptionsModal.tsx @@ -8,10 +8,10 @@ import { OutlineButton, } from '@opentrons/components' import { actions as steplistActions } from '../../steplist' -import { StepFieldName } from '../../steplist/fieldLevel' import modalStyles from './modal.module.css' import styles from './MoreOptionsModal.module.css' +import type { StepFieldName } from '../../steplist/fieldLevel' import type { FormData } from '../../form-types' import type { ChangeFormPayload } from '../../steplist/actions' diff --git a/protocol-designer/src/components/modals/utils.ts b/protocol-designer/src/components/modals/utils.ts index bc83d27bf1f..4b514281bf3 100644 --- a/protocol-designer/src/components/modals/utils.ts +++ b/protocol-designer/src/components/modals/utils.ts @@ -2,9 +2,9 @@ import { getLabwareDefURI, getLabwareDisplayName, getPipetteSpecsV2, - PipetteName, } from '@opentrons/shared-data' -import { LabwareDefByDefURI } from '../../labware-defs' +import type { PipetteName } from '@opentrons/shared-data' +import type { LabwareDefByDefURI } from '../../labware-defs' export interface TiprackOption { name: string diff --git a/protocol-designer/src/components/modules/EditModulesCard.tsx b/protocol-designer/src/components/modules/EditModulesCard.tsx index 27dcc233ede..f1507f01f14 100644 --- a/protocol-designer/src/components/modules/EditModulesCard.tsx +++ b/protocol-designer/src/components/modules/EditModulesCard.tsx @@ -5,15 +5,12 @@ import { MAGNETIC_MODULE_TYPE, TEMPERATURE_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, - ModuleType, - PipetteName, FLEX_ROBOT_TYPE, getPipetteSpecsV2, } from '@opentrons/shared-data' import { selectors as stepFormSelectors, getIsCrashablePipetteSelected, - ModulesForEditModulesCard, } from '../../step-forms' import { selectors as featureFlagSelectors } from '../../feature-flags' import { SUPPORTED_MODULE_TYPES } from '../../modules' @@ -31,6 +28,8 @@ import { StagingAreasRow } from './StagingAreasRow' import { MultipleModulesRow } from './MultipleModulesRow' import type { AdditionalEquipmentEntity } from '@opentrons/step-generation' +import type { ModuleType, PipetteName } from '@opentrons/shared-data' +import type { ModulesForEditModulesCard } from '../../step-forms' import styles from './styles.module.css' export interface Props { diff --git a/protocol-designer/src/components/modules/ModuleDiagram.tsx b/protocol-designer/src/components/modules/ModuleDiagram.tsx index fcc69c170bd..297ed5ce29d 100644 --- a/protocol-designer/src/components/modules/ModuleDiagram.tsx +++ b/protocol-designer/src/components/modules/ModuleDiagram.tsx @@ -4,13 +4,11 @@ import { MAGNETIC_MODULE_TYPE, TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, - ModuleType, MAGNETIC_MODULE_V1, MAGNETIC_MODULE_V2, TEMPERATURE_MODULE_V1, TEMPERATURE_MODULE_V2, THERMOCYCLER_MODULE_V1, - ModuleModel, HEATERSHAKER_MODULE_TYPE, HEATERSHAKER_MODULE_V1, THERMOCYCLER_MODULE_V2, @@ -22,10 +20,11 @@ import magdeck_gen1 from '../../images/modules/magdeck_gen1.png' import magdeck_gen2 from '../../images/modules/magdeck_gen2.png' import tempdeck_gen1 from '../../images/modules/tempdeck_gen1.png' import temp_deck_gen_2_transparent from '../../images/modules/temp_deck_gen_2_transparent.png' -import thermocycler from '../../images/modules/thermocycler.jpg' +import thermocycler from '../../images/modules/thermocycler.png' import thermocycler_gen2 from '../../images/modules/thermocycler_gen2.png' import heater_shaker_module_transparent from '../../images/modules/heater_shaker_module_transparent.png' import mag_block from '../../images/modules/mag_block.png' +import type { ModuleType, ModuleModel } from '@opentrons/shared-data' interface Props { type: ModuleType diff --git a/protocol-designer/src/components/modules/ModuleRow.tsx b/protocol-designer/src/components/modules/ModuleRow.tsx index db75941f6b1..68b8d81bacb 100644 --- a/protocol-designer/src/components/modules/ModuleRow.tsx +++ b/protocol-designer/src/components/modules/ModuleRow.tsx @@ -17,7 +17,7 @@ import { FLEX_ROBOT_TYPE, THERMOCYCLER_MODULE_TYPE, } from '@opentrons/shared-data' -import { actions as stepFormActions, ModuleOnDeck } from '../../step-forms' +import { actions as stepFormActions } from '../../step-forms' import { SPAN7_8_10_11_SLOT, DEFAULT_MODEL_FOR_MODULE_TYPE, @@ -28,6 +28,7 @@ import { isModuleWithCollisionIssue } from './utils' import styles from './styles.module.css' import type { ModuleType, RobotType } from '@opentrons/shared-data' +import type { ModuleOnDeck } from '../../step-forms' interface Props { robotType?: RobotType diff --git a/protocol-designer/src/components/modules/StagingAreasModal.tsx b/protocol-designer/src/components/modules/StagingAreasModal.tsx index 9c397888a65..a1c14df70b6 100644 --- a/protocol-designer/src/components/modules/StagingAreasModal.tsx +++ b/protocol-designer/src/components/modules/StagingAreasModal.tsx @@ -1,13 +1,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { useSelector, useDispatch } from 'react-redux' -import { - Control, - Controller, - ControllerRenderProps, - useForm, - useWatch, -} from 'react-hook-form' +import { Controller, useForm, useWatch } from 'react-hook-form' import { BUTTON_TYPE_SUBMIT, OutlineButton, @@ -24,8 +18,6 @@ import { DIRECTION_COLUMN, } from '@opentrons/components' import { - CutoutId, - DeckConfiguration, SINGLE_RIGHT_SLOT_FIXTURE, STAGING_AREA_CUTOUTS, STAGING_AREA_RIGHT_SLOT_FIXTURE, @@ -38,7 +30,9 @@ import { import { getSlotIsEmpty } from '../../step-forms' import { getInitialDeckSetup } from '../../step-forms/selectors' import { PDAlert } from '../alerts/PDAlert' +import type { Control, ControllerRenderProps } from 'react-hook-form' import type { AdditionalEquipmentEntity } from '@opentrons/step-generation' +import type { CutoutId, DeckConfiguration } from '@opentrons/shared-data' export interface StagingAreasValues { selectedSlots: string[] diff --git a/protocol-designer/src/components/modules/TrashModal.tsx b/protocol-designer/src/components/modules/TrashModal.tsx index d8fffc264ee..7a36b638071 100644 --- a/protocol-designer/src/components/modules/TrashModal.tsx +++ b/protocol-designer/src/components/modules/TrashModal.tsx @@ -1,6 +1,6 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' -import { Control, Controller, useForm, useWatch } from 'react-hook-form' +import { Controller, useForm, useWatch } from 'react-hook-form' import { useSelector, useDispatch } from 'react-redux' import { FormGroup, @@ -18,7 +18,6 @@ import { JUSTIFY_SPACE_BETWEEN, JUSTIFY_FLEX_END, JUSTIFY_END, - DropdownOption, } from '@opentrons/components' import { FLEX_ROBOT_TYPE, @@ -33,6 +32,8 @@ import { getSlotIsEmpty } from '../../step-forms' import { getInitialDeckSetup } from '../../step-forms/selectors' import { SlotDropdown } from '../modals/EditModulesModal/SlotDropdown' import { PDAlert } from '../alerts/PDAlert' +import type { Control } from 'react-hook-form' +import type { DropdownOption } from '@opentrons/components' export interface TrashValues { selectedSlot: string @@ -85,13 +86,16 @@ const TrashModalComponent = (props: TrashModalComponentProps): JSX.Element => { const selectedSlot = useWatch({ control, name: 'selectedSlot', - defaultValue: defaultValue, + defaultValue, }) - const isSlotEmpty = getSlotIsEmpty( - initialDeckSetup, - selectedSlot, - trashName === 'trashBin' - ) + const hasTrashAlreadyInSlot = Object.values( + initialDeckSetup.additionalEquipmentOnDeck + ).find(aE => aE.name === 'trashBin' && aE.location === selectedSlot) + + const isSlotEmpty = + getSlotIsEmpty(initialDeckSetup, selectedSlot, trashName === 'trashBin') || + hasTrashAlreadyInSlot + const slotFromCutout = selectedSlot.replace('cutout', '') const flexDeck = getDeckDefFromRobotType(FLEX_ROBOT_TYPE) diff --git a/protocol-designer/src/components/modules/utils.ts b/protocol-designer/src/components/modules/utils.ts index 06491f2cadb..cd4a751dcf9 100644 --- a/protocol-designer/src/components/modules/utils.ts +++ b/protocol-designer/src/components/modules/utils.ts @@ -1,5 +1,5 @@ import { MODULES_WITH_COLLISION_ISSUES } from '@opentrons/step-generation' -import { ModuleModel } from '@opentrons/shared-data' +import type { ModuleModel } from '@opentrons/shared-data' export function isModuleWithCollisionIssue(model: ModuleModel): boolean { return MODULES_WITH_COLLISION_ISSUES.includes(model) } diff --git a/protocol-designer/src/components/steplist/DraggableStepItems.tsx b/protocol-designer/src/components/steplist/DraggableStepItems.tsx index 0eadb1ce5a7..24067895485 100644 --- a/protocol-designer/src/components/steplist/DraggableStepItems.tsx +++ b/protocol-designer/src/components/steplist/DraggableStepItems.tsx @@ -1,23 +1,18 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { useSelector } from 'react-redux' -import { - DragLayerMonitor, - useDrop, - useDrag, - DropTargetOptions, -} from 'react-dnd' +import { useDrop, useDrag } from 'react-dnd' import { DND_TYPES } from '../../constants' import { selectors as stepFormSelectors } from '../../step-forms' -import { stepIconsByType, StepIdType } from '../../form-types' -import { - ConnectedStepItem, - ConnectedStepItemProps, -} from '../../containers/ConnectedStepItem' +import { stepIconsByType } from '../../form-types' +import { ConnectedStepItem } from '../../containers/ConnectedStepItem' import { PDTitledList } from '../lists' import { ContextMenu } from './ContextMenu' import styles from './StepItem.module.css' +import type { DragLayerMonitor, DropTargetOptions } from 'react-dnd' +import type { StepIdType } from '../../form-types' +import type { ConnectedStepItemProps } from '../../containers/ConnectedStepItem' interface DragDropStepItemProps extends ConnectedStepItemProps { stepId: StepIdType diff --git a/protocol-designer/src/components/steplist/IngredPill.tsx b/protocol-designer/src/components/steplist/IngredPill.tsx index 378d3c18cdc..e9c4c0a7132 100644 --- a/protocol-designer/src/components/steplist/IngredPill.tsx +++ b/protocol-designer/src/components/steplist/IngredPill.tsx @@ -1,11 +1,15 @@ import * as React from 'react' import { useSelector } from 'react-redux' -import { Pill, UseHoverTooltipTargetProps } from '@opentrons/components' +import { Pill } from '@opentrons/components' import { selectors } from '../../labware-ingred/selectors' import { AIR } from '@opentrons/step-generation' import { swatchColors, MIXED_WELL_COLOR } from '../swatchColors' -import { WellIngredientVolumeData, WellIngredientNames } from '../../steplist' import styles from './StepItem.module.css' +import type { UseHoverTooltipTargetProps } from '@opentrons/components' +import type { + WellIngredientVolumeData, + WellIngredientNames, +} from '../../steplist' interface Props { ingreds: WellIngredientVolumeData diff --git a/protocol-designer/src/components/steplist/ModuleStepItems.tsx b/protocol-designer/src/components/steplist/ModuleStepItems.tsx index 548caf2964d..048e798cb90 100644 --- a/protocol-designer/src/components/steplist/ModuleStepItems.tsx +++ b/protocol-designer/src/components/steplist/ModuleStepItems.tsx @@ -1,17 +1,12 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import cx from 'classnames' -import { - Tooltip, - useHoverTooltip, - TOOLTIP_FIXED, - UseHoverTooltipTargetProps, -} from '@opentrons/components' +import { Tooltip, useHoverTooltip, TOOLTIP_FIXED } from '@opentrons/components' import { PDListItem } from '../lists' import { LabwareTooltipContents } from './LabwareTooltipContents' -import type { ModuleType } from '@opentrons/shared-data' - import styles from './StepItem.module.css' +import type { UseHoverTooltipTargetProps } from '@opentrons/components' +import type { ModuleType } from '@opentrons/shared-data' export interface ModuleStepItemRowProps { label?: string | null diff --git a/protocol-designer/src/components/steplist/MultiSelectToolbar/index.tsx b/protocol-designer/src/components/steplist/MultiSelectToolbar/index.tsx index de5a741b71c..90985278a80 100644 --- a/protocol-designer/src/components/steplist/MultiSelectToolbar/index.tsx +++ b/protocol-designer/src/components/steplist/MultiSelectToolbar/index.tsx @@ -16,7 +16,6 @@ import { C_DARK_GRAY, BORDER_SOLID_MEDIUM, POSITION_STICKY, - IconName, SPACING, } from '@opentrons/components' import { selectors as stepFormSelectors } from '../../../step-forms' @@ -31,8 +30,9 @@ import { ConfirmDeleteModal, DELETE_MULTIPLE_STEP_FORMS, } from '../../modals/ConfirmDeleteModal' -import { ThunkDispatch } from 'redux-thunk' -import { BaseState } from '../../../types' +import type { IconName } from '@opentrons/components' +import type { ThunkDispatch } from 'redux-thunk' +import type { BaseState } from '../../../types' export interface ClickableIconProps { id?: string @@ -159,7 +159,7 @@ export const MultiSelectToolbar = (props: Props): JSX.Element => { } = useConditionalConfirm(onDeleteClickAction, true) const selectProps: ClickableIconProps = { - iconName: isAllStepsSelected ? 'checkbox-marked' : 'minus-box', + iconName: isAllStepsSelected ? 'ot-checkbox' : 'minus-box', tooltipText: isAllStepsSelected ? 'Deselect All' : 'Select All', onClick: confirmSelect, } diff --git a/protocol-designer/src/components/steplist/PauseStepItems.tsx b/protocol-designer/src/components/steplist/PauseStepItems.tsx index d0b18509662..d40d141ff82 100644 --- a/protocol-designer/src/components/steplist/PauseStepItems.tsx +++ b/protocol-designer/src/components/steplist/PauseStepItems.tsx @@ -1,7 +1,7 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' -import { PauseArgs } from '@opentrons/step-generation' import styles from './StepItem.module.css' +import type { PauseArgs } from '@opentrons/step-generation' interface Props { pauseArgs: PauseArgs } @@ -15,6 +15,7 @@ export function PauseStepItems(props: Props): JSX.Element | null { } const { message, wait } = pauseArgs const { hours, minutes, seconds } = pauseArgs.meta + return ( <> {wait !== true ? ( @@ -41,9 +42,9 @@ export function PauseStepItems(props: Props): JSX.Element | null { )} - {message && ( + {message != null && message !== '' ? (
  • "{message}"
  • - )} + ) : null} ) } diff --git a/protocol-designer/src/components/steplist/SourceDestSubstep.tsx b/protocol-designer/src/components/steplist/SourceDestSubstep.tsx index b9c25149b28..46b0e9348cb 100644 --- a/protocol-designer/src/components/steplist/SourceDestSubstep.tsx +++ b/protocol-designer/src/components/steplist/SourceDestSubstep.tsx @@ -5,7 +5,7 @@ import { MultiChannelSubstep } from './MultiChannelSubstep' import { SubstepRow } from './SubstepRow' import styles from './StepItem.module.css' -import { +import type { SourceDestSubstepItem, SubstepIdentifier, WellIngredientNames, diff --git a/protocol-designer/src/components/steplist/StepItem.tsx b/protocol-designer/src/components/steplist/StepItem.tsx index 0fbb338cc0f..aca7ea6d79a 100644 --- a/protocol-designer/src/components/steplist/StepItem.tsx +++ b/protocol-designer/src/components/steplist/StepItem.tsx @@ -9,40 +9,39 @@ import { TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, } from '@opentrons/shared-data' -import { AtomicProfileStep } from '@opentrons/shared-data/protocol/types/schemaV4' import { THERMOCYCLER_PROFILE, THERMOCYCLER_STATE } from '../../constants' -import { - stepIconsByType, - PROFILE_CYCLE, - FormData, - StepType, - ProfileCycleItem, - ProfileStepItem, -} from '../../form-types' +import { stepIconsByType, PROFILE_CYCLE } from '../../form-types' import { makeLidLabelText, makeSpeedText, makeTemperatureText, makeTimerText, } from '../../utils' -import { InitialDeckSetup } from '../../step-forms' import { PDListItem, TitledStepList } from '../lists' import { TitledListNotes } from '../TitledListNotes' import { AspirateDispenseHeader } from './AspirateDispenseHeader' import { MixHeader } from './MixHeader' import { ModuleStepItems, ModuleStepItemRow } from './ModuleStepItems' import { PauseStepItems } from './PauseStepItems' +import { MoveLabwareHeader } from './MoveLabwareHeader' import { SourceDestSubstep } from './SourceDestSubstep' import styles from './StepItem.module.css' -import { +import type { AdditionalEquipmentEntities } from '@opentrons/step-generation' +import type { AtomicProfileStep } from '@opentrons/shared-data/protocol/types/schemaV4' +import type { + FormData, + StepType, + ProfileCycleItem, + ProfileStepItem, +} from '../../form-types' +import type { SubstepIdentifier, SubstepItemData, ThermocyclerProfileSubstepItem, WellIngredientNames, } from '../../steplist/types' -import { MoveLabwareHeader } from './MoveLabwareHeader' -import type { AdditionalEquipmentEntities } from '@opentrons/step-generation' +import type { InitialDeckSetup } from '../../step-forms' export interface StepItemProps { description?: string | null diff --git a/protocol-designer/src/components/steplist/SubstepRow.tsx b/protocol-designer/src/components/steplist/SubstepRow.tsx index 9aafe7c4482..937e80a4b2a 100644 --- a/protocol-designer/src/components/steplist/SubstepRow.tsx +++ b/protocol-designer/src/components/steplist/SubstepRow.tsx @@ -10,14 +10,14 @@ import { IngredPill } from './IngredPill' import { PDListItem } from '../lists' import { swatchColors } from '../swatchColors' import { formatVolume, formatPercentage } from './utils' -import { LocationLiquidState } from '@opentrons/step-generation' -import { +import styles from './StepItem.module.css' +import type { LocationLiquidState } from '@opentrons/step-generation' +import type { SubstepIdentifier, SubstepWellData, WellIngredientVolumeData, WellIngredientNames, } from '../../steplist/types' -import styles from './StepItem.module.css' interface SubstepRowProps { volume: number | string | null | undefined diff --git a/protocol-designer/src/components/steplist/TerminalItem/TerminalItemLink.tsx b/protocol-designer/src/components/steplist/TerminalItem/TerminalItemLink.tsx index 325f55d794b..e0486f6a87c 100644 --- a/protocol-designer/src/components/steplist/TerminalItem/TerminalItemLink.tsx +++ b/protocol-designer/src/components/steplist/TerminalItem/TerminalItemLink.tsx @@ -2,8 +2,8 @@ import * as React from 'react' import { useTranslation } from 'react-i18next' import { useDispatch } from 'react-redux' import { actions as stepsActions } from '../../../ui/steps' -import { TerminalItemId } from '../../../steplist' import styles from './styles.module.css' +import type { TerminalItemId } from '../../../steplist' interface Props { terminalId: TerminalItemId diff --git a/protocol-designer/src/components/steplist/TerminalItem/index.tsx b/protocol-designer/src/components/steplist/TerminalItem/index.tsx index a66cb4d5662..55887d89094 100644 --- a/protocol-designer/src/components/steplist/TerminalItem/index.tsx +++ b/protocol-designer/src/components/steplist/TerminalItem/index.tsx @@ -6,8 +6,6 @@ import { getSelectedTerminalItemId, getIsMultiSelectMode, actions as stepsActions, - SelectTerminalItemAction, - HoverOnTerminalItemAction, } from '../../../ui/steps' import { getCurrentFormIsPresaved, @@ -19,7 +17,11 @@ import { CLOSE_UNSAVED_STEP_FORM, } from '../../modals/ConfirmDeleteModal' import { PDTitledList } from '../../lists' -import { TerminalItemId } from '../../../steplist' +import type { + SelectTerminalItemAction, + HoverOnTerminalItemAction, +} from '../../../ui/steps' +import type { TerminalItemId } from '../../../steplist' export { TerminalItemLink } from './TerminalItemLink' diff --git a/protocol-designer/src/components/steplist/index.ts b/protocol-designer/src/components/steplist/index.ts index f6ca974415d..fb71246ce12 100644 --- a/protocol-designer/src/components/steplist/index.ts +++ b/protocol-designer/src/components/steplist/index.ts @@ -1,4 +1,6 @@ -import { StepItem, StepItemProps } from './StepItem' -import { StepList, StepListProps } from './StepList' +import { StepItem } from './StepItem' +import { StepList } from './StepList' +import type { StepListProps } from './StepList' +import type { StepItemProps } from './StepItem' export { StepItem, StepList } export type { StepListProps, StepItemProps } diff --git a/protocol-designer/src/configureStore.ts b/protocol-designer/src/configureStore.ts index 7e5d098ea6b..6f72fd18782 100644 --- a/protocol-designer/src/configureStore.ts +++ b/protocol-designer/src/configureStore.ts @@ -1,18 +1,9 @@ -/* eslint-disable @typescript-eslint/no-var-requires */ -import { - createStore, - combineReducers, - applyMiddleware, - compose, - Store, - Reducer, -} from 'redux' +import { createStore, combineReducers, applyMiddleware, compose } from 'redux' import thunk from 'redux-thunk' import { trackEventMiddleware } from './analytics/middleware' import { makePersistSubscriber, rehydratePersistedAction } from './persist' import { fileUploadMessage } from './load-file/actions' import { makeTimelineMiddleware } from './timelineMiddleware/makeTimelineMiddleware' -import { BaseState, Action } from './types' import { rootReducer as analyticsReducer } from './analytics' import { rootReducer as dismissReducer } from './dismiss' import { rootReducer as featureFlagsReducer } from './feature-flags' @@ -24,6 +15,8 @@ import { rootReducer as stepFormsReducer } from './step-forms' import { rootReducer as tutorialReducer } from './tutorial' import { rootReducer as uiReducer } from './ui' import { rootReducer as wellSelectionReducer } from './well-selection/reducers' +import type { Store, Reducer } from 'redux' +import type { BaseState, Action } from './types' const timelineMiddleware = makeTimelineMiddleware() diff --git a/protocol-designer/src/constants.ts b/protocol-designer/src/constants.ts index b92192565c2..6c0c2db3816 100644 --- a/protocol-designer/src/constants.ts +++ b/protocol-designer/src/constants.ts @@ -10,14 +10,17 @@ import { TEMPERATURE_MODULE_V2, THERMOCYCLER_MODULE_V1, HEATERSHAKER_MODULE_V1, - LabwareDefinition2, - DeckSlot as DeckDefSlot, THERMOCYCLER_MODULE_V2, MAGNETIC_BLOCK_TYPE, MAGNETIC_BLOCK_V1, } from '@opentrons/shared-data' +import type { + LabwareDefinition2, + DeckSlot as DeckDefSlot, + ModuleType, + ModuleModel, +} from '@opentrons/shared-data' import type { DeckSlot, WellVolumes } from './types' -import type { ModuleType, ModuleModel } from '@opentrons/shared-data' export const getMaxVolumes = (def: LabwareDefinition2): WellVolumes => mapValues(def.wells, well => well.totalLiquidVolume) @@ -58,7 +61,7 @@ export const INITIAL_DECK_SETUP_STEP_ID = '__INITIAL_DECK_SETUP_STEP__' export const DEFAULT_CHANGE_TIP_OPTION: 'always' = 'always' // TODO: Ian 2019-06-13 don't keep these as hard-coded static values (see #3587) export const DEFAULT_MM_FROM_BOTTOM_ASPIRATE = 1 -export const DEFAULT_MM_FROM_BOTTOM_DISPENSE = 0.5 +export const DEFAULT_MM_FROM_BOTTOM_DISPENSE = 1 // NOTE: in the negative Z direction, to go down from top export const DEFAULT_MM_TOUCH_TIP_OFFSET_FROM_TOP = -1 export const DEFAULT_MM_BLOWOUT_OFFSET_FROM_TOP = 0 diff --git a/protocol-designer/src/containers/ConnectedNav.tsx b/protocol-designer/src/containers/ConnectedNav.tsx index 994aa9441b7..fcc7d2c3311 100644 --- a/protocol-designer/src/containers/ConnectedNav.tsx +++ b/protocol-designer/src/containers/ConnectedNav.tsx @@ -3,8 +3,9 @@ import { useDispatch, useSelector } from 'react-redux' import { useTranslation } from 'react-i18next' import { KNOWLEDGEBASE_ROOT_URL } from '../components/KnowledgeBaseLink' import { NavTab, TabbedNavBar, OutsideLinkTab } from '@opentrons/components' -import { Page, actions, selectors } from '../navigation' import { selectors as fileSelectors } from '../file-data' +import { actions, selectors } from '../navigation' +import type { Page } from '../navigation' export function ConnectedNav(): JSX.Element { const { t } = useTranslation('nav') diff --git a/protocol-designer/src/containers/ConnectedStepItem.tsx b/protocol-designer/src/containers/ConnectedStepItem.tsx index a3ebcb05f41..c6d01af1a6f 100644 --- a/protocol-designer/src/containers/ConnectedStepItem.tsx +++ b/protocol-designer/src/containers/ConnectedStepItem.tsx @@ -18,24 +18,14 @@ import { getMultiSelectItemIds, getMultiSelectLastSelected, getSelectedStepId, - HoverOnStepAction, - HoverOnSubstepAction, - ToggleStepCollapsedAction, - SelectMultipleStepsAction, } from '../ui/steps' import { selectors as fileDataSelectors } from '../file-data' -import { - StepItem, - StepItemContents, - StepItemContentsProps, - StepItemProps, -} from '../components/steplist/StepItem' +import { StepItem, StepItemContents } from '../components/steplist/StepItem' import { CLOSE_BATCH_EDIT_FORM, CLOSE_STEP_FORM_WITH_CHANGES, CLOSE_UNSAVED_STEP_FORM, ConfirmDeleteModal, - DeleteModalType, } from '../components/modals/ConfirmDeleteModal' import { getAdditionalEquipmentEntities, @@ -43,6 +33,17 @@ import { } from '../step-forms/selectors' import type { ThunkDispatch } from 'redux-thunk' +import type { + HoverOnStepAction, + HoverOnSubstepAction, + ToggleStepCollapsedAction, + SelectMultipleStepsAction, +} from '../ui/steps' +import type { + StepItemContentsProps, + StepItemProps, +} from '../components/steplist/StepItem' +import type { DeleteModalType } from '../components/modals/ConfirmDeleteModal' import type { SubstepIdentifier } from '../steplist/types' import type { StepIdType } from '../form-types' import type { BaseState, ThunkAction } from '../types' diff --git a/protocol-designer/src/containers/ConnectedTitleBar.tsx b/protocol-designer/src/containers/ConnectedTitleBar.tsx index 1ad0b850c4f..87a8849c9da 100644 --- a/protocol-designer/src/containers/ConnectedTitleBar.tsx +++ b/protocol-designer/src/containers/ConnectedTitleBar.tsx @@ -2,7 +2,7 @@ import * as React from 'react' import { useSelector, useDispatch } from 'react-redux' import { useTranslation } from 'react-i18next' -import { TitleBar, Icon, IconName } from '@opentrons/components' +import { TitleBar, Icon } from '@opentrons/components' import { getLabwareDisplayName } from '@opentrons/shared-data' import styles from './TitleBar.module.css' import { START_TERMINAL_TITLE, END_TERMINAL_TITLE } from '../constants' @@ -20,6 +20,7 @@ import { selectors as fileDataSelectors } from '../file-data' import { closeIngredientSelector } from '../labware-ingred/actions' import { stepIconsByType } from '../form-types' import { selectors } from '../navigation' +import type { IconName } from '@opentrons/components' interface TitleWithIconProps { iconName: IconName | null | undefined text: string | null | undefined diff --git a/protocol-designer/src/dismiss/__tests__/reducers.test.ts b/protocol-designer/src/dismiss/__tests__/reducers.test.ts index b303be6ae67..3d64b109e8e 100644 --- a/protocol-designer/src/dismiss/__tests__/reducers.test.ts +++ b/protocol-designer/src/dismiss/__tests__/reducers.test.ts @@ -1,6 +1,5 @@ import { describe, it, expect, beforeEach } from 'vitest' import { _allReducers } from '../reducers' -import { PRESAVED_STEP_ID } from '../../steplist/types' import type { DismissedWarningState } from '../reducers' const { dismissedWarnings } = _allReducers @@ -8,7 +7,7 @@ const { dismissedWarnings } = _allReducers let initialState: DismissedWarningState beforeEach(() => { - initialState = { form: {}, timeline: {} } + initialState = { form: [], timeline: [] } }) describe('dismissedWarnings reducer', () => { @@ -18,12 +17,11 @@ describe('dismissedWarnings reducer', () => { type: 'DISMISS_FORM_WARNING', payload: { type: 'BELOW_PIPETTE_MINIMUM_VOLUME', - stepId: 'someStepId', }, } expect(dismissedWarnings(state, action)).toEqual({ - form: { someStepId: ['BELOW_PIPETTE_MINIMUM_VOLUME'] }, - timeline: {}, + form: ['BELOW_PIPETTE_MINIMUM_VOLUME'], + timeline: [], }) }) @@ -33,14 +31,11 @@ describe('dismissedWarnings reducer', () => { type: 'DISMISS_FORM_WARNING', payload: { type: 'BELOW_PIPETTE_MINIMUM_VOLUME', - stepId: PRESAVED_STEP_ID, }, } expect(dismissedWarnings(state, action)).toEqual({ - form: { - [PRESAVED_STEP_ID]: ['BELOW_PIPETTE_MINIMUM_VOLUME'], - }, - timeline: {}, + form: ['BELOW_PIPETTE_MINIMUM_VOLUME'], + timeline: [], }) }) @@ -50,12 +45,11 @@ describe('dismissedWarnings reducer', () => { type: 'DISMISS_TIMELINE_WARNING', payload: { type: 'ASPIRATE_MORE_THAN_WELL_CONTENTS', - stepId: 'someStepId', }, } expect(dismissedWarnings(state, action)).toEqual({ - form: {}, - timeline: { someStepId: ['ASPIRATE_MORE_THAN_WELL_CONTENTS'] }, + form: [], + timeline: ['ASPIRATE_MORE_THAN_WELL_CONTENTS'], }) }) @@ -65,84 +59,11 @@ describe('dismissedWarnings reducer', () => { type: 'DISMISS_TIMELINE_WARNING', payload: { type: 'ASPIRATE_MORE_THAN_WELL_CONTENTS', - stepId: PRESAVED_STEP_ID, - }, - } - expect(dismissedWarnings(state, action)).toEqual({ - form: {}, - timeline: { - [PRESAVED_STEP_ID]: ['ASPIRATE_MORE_THAN_WELL_CONTENTS'], - }, - }) - }) - - it('should forget all warnings for a form upon DELETE_STEP', () => { - const state = { - form: { - otherStepId: ['whatever_form'], - someStepId: ['BELOW_PIPETTE_MINIMUM_VOLUME'], - }, - timeline: { - otherStepId: ['whatever_timeline'], - someStepId: ['ASPIRATE_MORE_THAN_WELL_CONTENTS'], - }, - } - - const action = { - type: 'DELETE_STEP', - payload: 'someStepId', - } - - expect(dismissedWarnings(state, action)).toEqual({ - form: { otherStepId: ['whatever_form'] }, - timeline: { otherStepId: ['whatever_timeline'] }, - }) - }) - - it('should forget all warnings for multiple forms upon DELETE_MULTIPLE_STEPS', () => { - const state = { - form: { - firstStepId: ['firstStepId form warning'], - secondStepId: ['secondStepId form warning'], - thirdStepId: ['thirdStepId form warning'], - }, - timeline: { - firstStepId: ['firstStepId timeline warning'], - secondStepId: ['secondStepId timeline warning'], - thirdStepId: ['thirdStepId timeline warning'], }, } - - const action = { - type: 'DELETE_MULTIPLE_STEPS', - payload: ['secondStepId', 'firstStepId'], - } - - expect(dismissedWarnings(state, action)).toEqual({ - form: { thirdStepId: ['thirdStepId form warning'] }, - timeline: { thirdStepId: ['thirdStepId timeline warning'] }, - }) - }) - - it('should forget all warnings for an unsaved form upon CANCEL_STEP_FORM', () => { - const state = { - form: { - otherStepId: ['whatever_form'], - [PRESAVED_STEP_ID]: ['BELOW_PIPETTE_MINIMUM_VOLUME'], - }, - timeline: { - otherStepId: ['whatever_timeline'], - [PRESAVED_STEP_ID]: ['ASPIRATE_MORE_THAN_WELL_CONTENTS'], - }, - } - const action = { - type: 'CANCEL_STEP_FORM', - payload: null, - } - expect(dismissedWarnings(state, action)).toEqual({ - form: { otherStepId: ['whatever_form'] }, - timeline: { otherStepId: ['whatever_timeline'] }, + form: [], + timeline: ['ASPIRATE_MORE_THAN_WELL_CONTENTS'], }) }) @@ -156,8 +77,8 @@ describe('dismissedWarnings reducer', () => { version: '5.0.1', data: { dismissedWarnings: { - form: { someStepId: ['whatever_form'] }, - timeline: { someStepId: ['whatever_timeline'] }, + form: ['whatever_form'], + timeline: ['whatever_timeline'], }, }, }, @@ -165,8 +86,8 @@ describe('dismissedWarnings reducer', () => { }, } expect(dismissedWarnings(initialState, action)).toEqual({ - form: { someStepId: ['whatever_form'] }, - timeline: { someStepId: ['whatever_timeline'] }, + form: ['whatever_form'], + timeline: ['whatever_timeline'], }) }) }) diff --git a/protocol-designer/src/dismiss/actions.ts b/protocol-designer/src/dismiss/actions.ts index 09f2c5a33c7..9708eba07d4 100644 --- a/protocol-designer/src/dismiss/actions.ts +++ b/protocol-designer/src/dismiss/actions.ts @@ -1,10 +1,7 @@ -import type { StepIdType } from '../form-types' - export interface DismissAction { type: ActionType payload: { type: string - stepId: StepIdType } } diff --git a/protocol-designer/src/dismiss/index.ts b/protocol-designer/src/dismiss/index.ts index 0ef4230066a..b6aa558c875 100644 --- a/protocol-designer/src/dismiss/index.ts +++ b/protocol-designer/src/dismiss/index.ts @@ -1,5 +1,6 @@ import * as actions from './actions' -import { rootReducer, RootState } from './reducers' +import { rootReducer } from './reducers' import * as selectors from './selectors' +import type { RootState } from './reducers' export { actions, rootReducer, selectors } export type { RootState } diff --git a/protocol-designer/src/dismiss/reducers.ts b/protocol-designer/src/dismiss/reducers.ts index 80a0230efe3..af05a0cc004 100644 --- a/protocol-designer/src/dismiss/reducers.ts +++ b/protocol-designer/src/dismiss/reducers.ts @@ -1,26 +1,29 @@ -import { Reducer, combineReducers } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' -import omit from 'lodash/omit' import { getPDMetadata } from '../file-types' -import { PRESAVED_STEP_ID } from '../steplist/types' -import { DismissFormWarning, DismissTimelineWarning } from './actions' -import { BaseState, Action } from '../types' -import { LoadFileAction } from '../load-file' -import { - CancelStepFormAction, - DeleteStepAction, - DeleteMultipleStepsAction, -} from '../steplist/actions' -import { StepIdType } from '../form-types' +import type { Reducer } from 'redux' +import type { BaseState, Action } from '../types' +import type { LoadFileAction } from '../load-file' +import type { StepIdType } from '../form-types' +import type { DismissFormWarning, DismissTimelineWarning } from './actions' + export type WarningType = string -export type DismissedWarningsAllSteps = Record< + +export interface DismissedWarningState { + form: WarningType[] + timeline: WarningType[] +} + +// these legacy types are used for the migration 8_1_0 +type LegacyDismissedWarningsAllSteps = Record< StepIdType, WarningType[] | null | undefined > -export interface DismissedWarningState { - form: DismissedWarningsAllSteps - timeline: DismissedWarningsAllSteps +export interface LegacyDismissedWarningState { + form: LegacyDismissedWarningsAllSteps + timeline: LegacyDismissedWarningsAllSteps } + // @ts-expect-error(sa, 2021-6-10): cannot use string literals as action type // TODO IMMEDIATELY: refactor this to the old fashioned way if we cannot have type safety: https://github.com/redux-utilities/redux-actions/issues/282#issuecomment-595163081 const dismissedWarnings: Reducer = handleActions( @@ -30,13 +33,9 @@ const dismissedWarnings: Reducer = handleActions( action: DismissFormWarning ): DismissedWarningState => { const { type } = action.payload - const stepId = action.payload.stepId return { ...state, - form: { - ...state.form, - [stepId]: [...(state.form[stepId] || []), type], - }, + form: state.form ? [...state.form, type] : [type], } }, DISMISS_TIMELINE_WARNING: ( @@ -44,34 +43,9 @@ const dismissedWarnings: Reducer = handleActions( action: DismissTimelineWarning ): DismissedWarningState => { const { type } = action.payload - const stepId = action.payload.stepId return { ...state, - timeline: { - ...state.timeline, - [stepId]: [...(state.timeline[stepId] || []), type], - }, - } - }, - DELETE_STEP: ( - state: DismissedWarningState, - action: DeleteStepAction - ): DismissedWarningState => { - // remove key for deleted step - const stepId = action.payload - return { - form: omit(state.form, stepId), - timeline: omit(state.timeline, stepId), - } - }, - DELETE_MULTIPLE_STEPS: ( - state: DismissedWarningState, - action: DeleteMultipleStepsAction - ): DismissedWarningState => { - const stepIds = action.payload - return { - form: omit(state.form, stepIds), - timeline: omit(state.timeline, stepIds), + timeline: state.timeline ? [...state.timeline, type] : [type], } }, LOAD_FILE: ( @@ -79,17 +53,10 @@ const dismissedWarnings: Reducer = handleActions( action: LoadFileAction ): DismissedWarningState => getPDMetadata(action.payload.file).dismissedWarnings, - CANCEL_STEP_FORM: ( - state: DismissedWarningState, - action: CancelStepFormAction - ): DismissedWarningState => ({ - form: omit(state.form, PRESAVED_STEP_ID), - timeline: omit(state.timeline, PRESAVED_STEP_ID), - }), }, { - form: {}, - timeline: {}, + form: [], + timeline: [], } ) export const _allReducers = { diff --git a/protocol-designer/src/dismiss/selectors.ts b/protocol-designer/src/dismiss/selectors.ts index dcc1104f6fe..289ed5e75ca 100644 --- a/protocol-designer/src/dismiss/selectors.ts +++ b/protocol-designer/src/dismiss/selectors.ts @@ -1,36 +1,26 @@ -import { createSelector } from 'reselect' import mapValues from 'lodash/mapValues' +import { createSelector } from 'reselect' import { selectors as stepFormSelectors } from '../step-forms' -import { getSelectedStepId } from '../ui/steps/selectors' -import { PRESAVED_STEP_ID } from '../steplist/types' -import { FormWarning } from '../steplist' -import { BaseState, Selector } from '../types' -import { RootState, DismissedWarningsAllSteps, WarningType } from './reducers' +import type { FormWarning } from '../steplist' +import type { BaseState, Selector } from '../types' +import type { RootState, WarningType } from './reducers' + export const rootSelector = (state: BaseState): RootState => state.dismiss export const getAllDismissedWarnings: Selector = createSelector( rootSelector, s => s.dismissedWarnings ) -export const getDismissedFormWarningTypesPerStep: Selector = createSelector( - getAllDismissedWarnings, - all => all.form -) -export const getDismissedTimelineWarningTypes: Selector = createSelector( - getAllDismissedWarnings, - all => all.timeline -) +export const getDismissedFormWarningTypesPerStep: Selector< + WarningType[] +> = createSelector(getAllDismissedWarnings, all => all.form) +export const getDismissedTimelineWarningTypes: Selector< + WarningType[] +> = createSelector(getAllDismissedWarnings, all => all.timeline) export const getDismissedFormWarningTypesForSelectedStep: Selector< WarningType[] > = createSelector( getDismissedFormWarningTypesPerStep, - getSelectedStepId, - (dismissedWarnings, stepId) => { - if (stepId == null) { - return dismissedWarnings[PRESAVED_STEP_ID] || [] - } - - return dismissedWarnings[stepId] || [] - } + dismissedWarnings => dismissedWarnings ) /** Non-dismissed form-level warnings for selected step */ @@ -40,9 +30,8 @@ export const getFormWarningsForSelectedStep: Selector< stepFormSelectors.getFormLevelWarningsForUnsavedForm, getDismissedFormWarningTypesForSelectedStep, (warnings, dismissedWarnings) => { - const dismissedTypesForStep = dismissedWarnings const formWarnings = warnings.filter( - w => !dismissedTypesForStep.includes(w.type) + w => !dismissedWarnings.includes(w.type) ) return formWarnings } @@ -57,7 +46,7 @@ export const getHasFormLevelWarningsPerStep: Selector< warningsPerStep, (warnings: FormWarning, stepId: string) => (warningsPerStep[stepId] || []).filter( - w => !(dismissedPerStep[stepId] || []).includes(w.type) + w => !dismissedPerStep.includes(w.type) ).length > 0 ) ) diff --git a/protocol-designer/src/feature-flags/actions.ts b/protocol-designer/src/feature-flags/actions.ts index 006394d4bd4..9e9db9a1fca 100644 --- a/protocol-designer/src/feature-flags/actions.ts +++ b/protocol-designer/src/feature-flags/actions.ts @@ -1,4 +1,4 @@ -import { Flags } from './types' +import type { Flags } from './types' export interface SetFeatureFlagAction { type: 'SET_FEATURE_FLAGS' payload: Partial diff --git a/protocol-designer/src/feature-flags/index.ts b/protocol-designer/src/feature-flags/index.ts index b57f6c2e3dc..18444468fb3 100644 --- a/protocol-designer/src/feature-flags/index.ts +++ b/protocol-designer/src/feature-flags/index.ts @@ -1,6 +1,7 @@ -import { rootReducer, RootState } from './reducers' +import { rootReducer } from './reducers' import * as actions from './actions' import * as selectors from './selectors' +import type { RootState } from './reducers' export * from './types' export * from './utils' export { actions, rootReducer, selectors } diff --git a/protocol-designer/src/feature-flags/reducers.ts b/protocol-designer/src/feature-flags/reducers.ts index 0fb93e30a8f..3220828e0c6 100644 --- a/protocol-designer/src/feature-flags/reducers.ts +++ b/protocol-designer/src/feature-flags/reducers.ts @@ -1,11 +1,13 @@ import omit from 'lodash/omit' import mapValues from 'lodash/mapValues' -import { Reducer, combineReducers } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' -import { Flags, FlagTypes, userFacingFlags, DEPRECATED_FLAGS } from './types' -import { RehydratePersistedAction } from '../persist' -import { SetFeatureFlagAction } from './actions' -import { Action } from '../types' +import { userFacingFlags, DEPRECATED_FLAGS } from './types' +import type { Reducer } from 'redux' +import type { Flags, FlagTypes } from './types' +import type { RehydratePersistedAction } from '../persist' +import type { SetFeatureFlagAction } from './actions' +import type { Action } from '../types' // NOTE: these values will always be overridden by persisted values, // whenever the browser has seen the feature flag before and persisted it. // Only "never before seen" flags will take on the default values from `initialFlags`. @@ -21,8 +23,6 @@ const initialFlags: Flags = { process.env.OT_PD_DISABLE_MODULE_RESTRICTIONS === '1' || false, OT_PD_ALLOW_ALL_TIPRACKS: process.env.OT_PD_ALLOW_ALL_TIPRACKS === '1' || false, - OT_PD_ENABLE_MULTI_TIP: process.env.OT_PD_ENABLE_MULTI_TIP === '1' || false, - OT_PD_ENABLE_MOAM: process.env.OT_PD_ENABLE_MOAM === '1' || false, } // @ts-expect-error(sa, 2021-6-10): cannot use string literals as action type // TODO IMMEDIATELY: refactor this to the old fashioned way if we cannot have type safety: https://github.com/redux-utilities/redux-actions/issues/282#issuecomment-595163081 diff --git a/protocol-designer/src/feature-flags/selectors.ts b/protocol-designer/src/feature-flags/selectors.ts index 49aaa937cb4..82b846c0da1 100644 --- a/protocol-designer/src/feature-flags/selectors.ts +++ b/protocol-designer/src/feature-flags/selectors.ts @@ -1,7 +1,7 @@ import { createSelector } from 'reselect' import { getFlagsFromQueryParams } from './utils' -import { BaseState, Selector } from '../types' -import { Flags } from './types' +import type { BaseState, Selector } from '../types' +import type { Flags } from './types' export const getFeatureFlagData = (state: BaseState): Flags => ({ ...state.featureFlags.flags, ...getFlagsFromQueryParams(), @@ -19,11 +19,3 @@ export const getAllowAllTipracks: Selector = createSelector( getFeatureFlagData, flags => flags.OT_PD_ALLOW_ALL_TIPRACKS ?? false ) -export const getEnableMultiTip: Selector = createSelector( - getFeatureFlagData, - flags => flags.OT_PD_ENABLE_MULTI_TIP ?? false -) -export const getEnableMoam: Selector = createSelector( - getFeatureFlagData, - flags => flags.OT_PD_ENABLE_MOAM ?? false -) diff --git a/protocol-designer/src/feature-flags/types.ts b/protocol-designer/src/feature-flags/types.ts index 99b4b76b1f6..7a9c04b5af9 100644 --- a/protocol-designer/src/feature-flags/types.ts +++ b/protocol-designer/src/feature-flags/types.ts @@ -22,14 +22,14 @@ export const DEPRECATED_FLAGS = [ 'OT_PD_ENABLE_OT_3', 'OT_PD_ALLOW_96_CHANNEL', 'OT_PD_ENABLE_FLEX_DECK_MODIFICATION', + 'OT_PD_ENABLE_MULTI_TIP', + 'OT_PD_ENABLE_MOAM', ] // union of feature flag string constant IDs export type FlagTypes = | 'PRERELEASE_MODE' | 'OT_PD_DISABLE_MODULE_RESTRICTIONS' | 'OT_PD_ALLOW_ALL_TIPRACKS' - | 'OT_PD_ENABLE_MULTI_TIP' - | 'OT_PD_ENABLE_MOAM' // flags that are not in this list only show in prerelease mode export const userFacingFlags: FlagTypes[] = [ 'OT_PD_DISABLE_MODULE_RESTRICTIONS', diff --git a/protocol-designer/src/feature-flags/utils.ts b/protocol-designer/src/feature-flags/utils.ts index a2c4b94d3eb..793ccb3fe18 100644 --- a/protocol-designer/src/feature-flags/utils.ts +++ b/protocol-designer/src/feature-flags/utils.ts @@ -1,4 +1,5 @@ -import { allFlags, Flags, FlagTypes } from './types' +import { allFlags } from './types' +import type { Flags, FlagTypes } from './types' // Overwrite feature flags that come in via query params // Ex: https://designer.opentrons.com/?someFF=1&anotherFF=1 export const getFlagsFromQueryParams = (): Flags => { diff --git a/protocol-designer/src/file-data/__fixtures__/createFile/commonFields.ts b/protocol-designer/src/file-data/__fixtures__/createFile/commonFields.ts index 3671654514a..14ae24e1001 100644 --- a/protocol-designer/src/file-data/__fixtures__/createFile/commonFields.ts +++ b/protocol-designer/src/file-data/__fixtures__/createFile/commonFields.ts @@ -30,8 +30,8 @@ export const fileMetadata: FileMetadataFields = { created: 1582667312515, } export const dismissedWarnings: DismissedWarningState = { - form: {}, - timeline: {}, + form: [], + timeline: [], } export const ingredients: IngredientsState = {} export const ingredLocations: LabwareLiquidState = {} diff --git a/protocol-designer/src/file-data/__fixtures__/createFile/engageMagnet.ts b/protocol-designer/src/file-data/__fixtures__/createFile/engageMagnet.ts index 8d65cf41d53..fc32b152c91 100644 --- a/protocol-designer/src/file-data/__fixtures__/createFile/engageMagnet.ts +++ b/protocol-designer/src/file-data/__fixtures__/createFile/engageMagnet.ts @@ -1,7 +1,7 @@ // Named arguments to createFile selector. This data would be the result of several selectors. -import { RobotState, Timeline } from '@opentrons/step-generation' -import { SavedStepFormState, ModuleEntities } from '../../../step-forms' -import { StepIdType } from '../../../form-types' +import type { RobotState, Timeline } from '@opentrons/step-generation' +import type { SavedStepFormState, ModuleEntities } from '../../../step-forms' +import type { StepIdType } from '../../../form-types' export const initialRobotState: RobotState = { labware: { fixedTrash: { diff --git a/protocol-designer/src/file-data/__fixtures__/createFile/noModules.ts b/protocol-designer/src/file-data/__fixtures__/createFile/noModules.ts index ce8bdc0c98f..222bf67941d 100644 --- a/protocol-designer/src/file-data/__fixtures__/createFile/noModules.ts +++ b/protocol-designer/src/file-data/__fixtures__/createFile/noModules.ts @@ -1,7 +1,7 @@ // Named arguments to createFile selector. This data would be the result of several selectors. -import { RobotState, Timeline } from '@opentrons/step-generation' -import { SavedStepFormState, ModuleEntities } from '../../../step-forms' -import { StepIdType } from '../../../form-types' +import type { RobotState, Timeline } from '@opentrons/step-generation' +import type { SavedStepFormState, ModuleEntities } from '../../../step-forms' +import type { StepIdType } from '../../../form-types' export const initialRobotState: RobotState = { labware: { fixedTrash: { diff --git a/protocol-designer/src/file-data/__fixtures__/createFile/v6Fixture.ts b/protocol-designer/src/file-data/__fixtures__/createFile/v6Fixture.ts index cf6900463c0..8ce619ba36b 100644 --- a/protocol-designer/src/file-data/__fixtures__/createFile/v6Fixture.ts +++ b/protocol-designer/src/file-data/__fixtures__/createFile/v6Fixture.ts @@ -1,7 +1,7 @@ // Named arguments to createFile selector. This data would be the result of several selectors. -import { RobotState, Timeline } from '@opentrons/step-generation' -import { SavedStepFormState, ModuleEntities } from '../../../step-forms' -import { StepIdType } from '../../../form-types' +import type { RobotState, Timeline } from '@opentrons/step-generation' +import type { SavedStepFormState, ModuleEntities } from '../../../step-forms' +import type { StepIdType } from '../../../form-types' export const initialRobotState: RobotState = { labware: { fixedTrash: { diff --git a/protocol-designer/src/file-data/actions.ts b/protocol-designer/src/file-data/actions.ts index 999e26bef82..0e175493baf 100644 --- a/protocol-designer/src/file-data/actions.ts +++ b/protocol-designer/src/file-data/actions.ts @@ -1,5 +1,5 @@ -import { FileMetadataFields, SaveFileMetadataAction } from './types' -import { WorkerResponse } from '../timelineMiddleware/types' +import type { FileMetadataFields, SaveFileMetadataAction } from './types' +import type { WorkerResponse } from '../timelineMiddleware/types' export const saveFileMetadata = ( payload: FileMetadataFields ): SaveFileMetadataAction => ({ diff --git a/protocol-designer/src/file-data/index.ts b/protocol-designer/src/file-data/index.ts index ab4e2b3b931..da3cc7b448d 100644 --- a/protocol-designer/src/file-data/index.ts +++ b/protocol-designer/src/file-data/index.ts @@ -1,7 +1,8 @@ /** This is the big selector that generates a .json file to download */ import * as actions from './actions' -import { rootReducer, RootState } from './reducers' import * as selectors from './selectors' +import { rootReducer } from './reducers' +import type { RootState } from './reducers' export * from './types' export { actions, rootReducer, selectors } export type { RootState } diff --git a/protocol-designer/src/file-data/reducers/index.ts b/protocol-designer/src/file-data/reducers/index.ts index 9a7190cb186..7f4d010e8ec 100644 --- a/protocol-designer/src/file-data/reducers/index.ts +++ b/protocol-designer/src/file-data/reducers/index.ts @@ -1,12 +1,14 @@ -import { Reducer, combineReducers } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' -import { Timeline } from '@opentrons/step-generation' -import { OT2_ROBOT_TYPE, RobotType } from '@opentrons/shared-data' -import { Action } from '../../types' -import { LoadFileAction, NewProtocolFields } from '../../load-file' -import { Substeps } from '../../steplist/types' -import { ComputeRobotStateTimelineSuccessAction } from '../actions' -import { FileMetadataFields, SaveFileMetadataAction } from '../types' +import { OT2_ROBOT_TYPE } from '@opentrons/shared-data' +import type { Reducer } from 'redux' +import type { Timeline } from '@opentrons/step-generation' +import type { RobotType } from '@opentrons/shared-data' +import type { Action } from '../../types' +import type { LoadFileAction, NewProtocolFields } from '../../load-file' +import type { Substeps } from '../../steplist/types' +import type { ComputeRobotStateTimelineSuccessAction } from '../actions' +import type { FileMetadataFields, SaveFileMetadataAction } from '../types' export const timelineIsBeingComputed: Reducer = handleActions( { diff --git a/protocol-designer/src/file-data/selectors/commands.ts b/protocol-designer/src/file-data/selectors/commands.ts index 3f40007fdb1..b4c70cdf290 100644 --- a/protocol-designer/src/file-data/selectors/commands.ts +++ b/protocol-designer/src/file-data/selectors/commands.ts @@ -6,8 +6,8 @@ import uniqBy from 'lodash/uniqBy' import * as StepGeneration from '@opentrons/step-generation' import { getAllWellsForLabware } from '../../constants' import { selectors as labwareIngredSelectors } from '../../labware-ingred/selectors' -import { - selectors as stepFormSelectors, +import { selectors as stepFormSelectors } from '../../step-forms' +import type { LabwareOnDeck, LabwareTemporalProperties, ModuleOnDeck, @@ -15,9 +15,9 @@ import { PipetteOnDeck, PipetteTemporalProperties, } from '../../step-forms' -import { Substeps } from '../../steplist/types' -import { BaseState, Selector } from '../../types' -import { StepIdType } from '../../form-types' +import type { Substeps } from '../../steplist/types' +import type { BaseState, Selector } from '../../types' +import type { StepIdType } from '../../form-types' // NOTE this just adds missing well keys to the labware-ingred 'deck setup' liquid state export const getLabwareLiquidState: Selector = createSelector( diff --git a/protocol-designer/src/file-data/selectors/fileCreator.ts b/protocol-designer/src/file-data/selectors/fileCreator.ts index dfe72d15625..8257388b828 100644 --- a/protocol-designer/src/file-data/selectors/fileCreator.ts +++ b/protocol-designer/src/file-data/selectors/fileCreator.ts @@ -11,21 +11,16 @@ import { OT2_STANDARD_MODEL, FLEX_STANDARD_DECKID, SPAN7_8_10_11_SLOT, - LabwareLocation, } from '@opentrons/shared-data' + +import { COLUMN_4_SLOTS } from '@opentrons/step-generation' import { selectors as dismissSelectors } from '../../dismiss' -import { - selectors as labwareDefSelectors, - LabwareDefByDefURI, -} from '../../labware-defs' +import { selectors as labwareDefSelectors } from '../../labware-defs' import { uuid } from '../../utils' import { selectors as ingredSelectors } from '../../labware-ingred/selectors' import { selectors as stepFormSelectors } from '../../step-forms' import { selectors as uiLabwareSelectors } from '../../ui/labware' -import { - DesignerApplicationData, - getLoadLiquidCommands, -} from '../../load-file/migration/utils/getLoadLiquidCommands' +import { getLoadLiquidCommands } from '../../load-file/migration/utils/getLoadLiquidCommands' import { swatchColors } from '../../components/swatchColors' import { DEFAULT_MM_FROM_BOTTOM_ASPIRATE, @@ -36,14 +31,14 @@ import { import { getFileMetadata, getRobotType } from './fileFields' import { getInitialRobotState, getRobotStateTimeline } from './commands' -import { +import type { PipetteEntity, LabwareEntities, PipetteEntities, RobotState, - COLUMN_4_SLOTS, } from '@opentrons/step-generation' import type { + LabwareLocation, AddressableAreaName, CommandAnnotationV1Mixin, CommandV8Mixin, @@ -59,7 +54,9 @@ import type { ProtocolBase, ProtocolFile, } from '@opentrons/shared-data' +import type { LabwareDefByDefURI } from '../../labware-defs' import type { Selector } from '../../types' +import type { DesignerApplicationData } from '../../load-file/migration/utils/getLoadLiquidCommands' // TODO: BC: 2018-02-21 uncomment this assert, causes test failures // console.assert(!isEmpty(process.env.OT_PD_VERSION), 'Could not find application version!') diff --git a/protocol-designer/src/file-types.ts b/protocol-designer/src/file-types.ts index f9a904bf4a5..f8923d7a9e1 100644 --- a/protocol-designer/src/file-types.ts +++ b/protocol-designer/src/file-types.ts @@ -1,10 +1,10 @@ -import { RootState as IngredRoot } from './labware-ingred/reducers' -import { RootState as StepformRoot } from './step-forms' -import { RootState as DismissRoot } from './dismiss' -import { ProtocolFile as ProtocolFileV3 } from '@opentrons/shared-data/protocol/types/schemaV3' -import { ProtocolFile as ProtocolFileV4 } from '@opentrons/shared-data/protocol/types/schemaV4' -import { ProtocolFile as ProtocolFileV5 } from '@opentrons/shared-data/protocol/types/schemaV5' -import { ProtocolFile as ProtocolFileV6 } from '@opentrons/shared-data/protocol/types/schemaV6' +import type { RootState as IngredRoot } from './labware-ingred/reducers' +import type { RootState as StepformRoot } from './step-forms' +import type { RootState as DismissRoot } from './dismiss' +import type { ProtocolFile as ProtocolFileV3 } from '@opentrons/shared-data/protocol/types/schemaV3' +import type { ProtocolFile as ProtocolFileV4 } from '@opentrons/shared-data/protocol/types/schemaV4' +import type { ProtocolFile as ProtocolFileV5 } from '@opentrons/shared-data/protocol/types/schemaV5' +import type { ProtocolFile as ProtocolFileV6 } from '@opentrons/shared-data/protocol/types/schemaV6' export interface PDMetadata { // pipetteId to tiprackModel diff --git a/protocol-designer/src/form-types.ts b/protocol-designer/src/form-types.ts index f369844ad37..5c69e549788 100644 --- a/protocol-designer/src/form-types.ts +++ b/protocol-designer/src/form-types.ts @@ -1,4 +1,4 @@ -import { +import type { PAUSE_UNTIL_RESUME, PAUSE_UNTIL_TIME, PAUSE_UNTIL_TEMP, @@ -233,6 +233,7 @@ export interface HydratedMoveLiquidFormData { dispense_x_position?: number | null dispense_y_position?: number | null blowout_z_offset?: number | null + blowout_flowRate?: number | null } } @@ -277,6 +278,7 @@ export interface HydratedMixFormDataLegacy { mix_x_position?: number | null mix_y_position?: number | null blowout_z_offset?: number | null + blowout_flowRate?: number | null } export type MagnetAction = 'engage' | 'disengage' export type HydratedMagnetFormData = AnnotationFields & { diff --git a/protocol-designer/src/images/modules/heater_shaker_module_transparent.png b/protocol-designer/src/images/modules/heater_shaker_module_transparent.png index 349024bbcf7..77d2458b5a5 100644 Binary files a/protocol-designer/src/images/modules/heater_shaker_module_transparent.png and b/protocol-designer/src/images/modules/heater_shaker_module_transparent.png differ diff --git a/protocol-designer/src/images/modules/heatershaker.png b/protocol-designer/src/images/modules/heatershaker.png index 3579500c310..475da933864 100644 Binary files a/protocol-designer/src/images/modules/heatershaker.png and b/protocol-designer/src/images/modules/heatershaker.png differ diff --git a/protocol-designer/src/images/modules/mag_block.png b/protocol-designer/src/images/modules/mag_block.png index e0a58835498..5047ea90a7c 100644 Binary files a/protocol-designer/src/images/modules/mag_block.png and b/protocol-designer/src/images/modules/mag_block.png differ diff --git a/protocol-designer/src/images/modules/magdeck_gen1.png b/protocol-designer/src/images/modules/magdeck_gen1.png index 40a4f9cca71..a2bcfa9512d 100644 Binary files a/protocol-designer/src/images/modules/magdeck_gen1.png and b/protocol-designer/src/images/modules/magdeck_gen1.png differ diff --git a/protocol-designer/src/images/modules/magdeck_gen2.png b/protocol-designer/src/images/modules/magdeck_gen2.png index 208b6000362..f087429ca23 100644 Binary files a/protocol-designer/src/images/modules/magdeck_gen2.png and b/protocol-designer/src/images/modules/magdeck_gen2.png differ diff --git a/protocol-designer/src/images/modules/magdeck_tempdeck_combined.png b/protocol-designer/src/images/modules/magdeck_tempdeck_combined.png index 1d3f7135994..50496581838 100644 Binary files a/protocol-designer/src/images/modules/magdeck_tempdeck_combined.png and b/protocol-designer/src/images/modules/magdeck_tempdeck_combined.png differ diff --git a/protocol-designer/src/images/modules/module_pipette_collision_warning.png b/protocol-designer/src/images/modules/module_pipette_collision_warning.png index 729625abaea..a6889211b1a 100644 Binary files a/protocol-designer/src/images/modules/module_pipette_collision_warning.png and b/protocol-designer/src/images/modules/module_pipette_collision_warning.png differ diff --git a/protocol-designer/src/images/modules/temp_deck_gen_2_transparent.png b/protocol-designer/src/images/modules/temp_deck_gen_2_transparent.png index a5e506536bd..9007ba9bf80 100644 Binary files a/protocol-designer/src/images/modules/temp_deck_gen_2_transparent.png and b/protocol-designer/src/images/modules/temp_deck_gen_2_transparent.png differ diff --git a/protocol-designer/src/images/modules/tempdeck_gen1.png b/protocol-designer/src/images/modules/tempdeck_gen1.png index bcc23c1d90d..33ed6f1e949 100644 Binary files a/protocol-designer/src/images/modules/tempdeck_gen1.png and b/protocol-designer/src/images/modules/tempdeck_gen1.png differ diff --git a/protocol-designer/src/images/modules/tempdeck_gen2.png b/protocol-designer/src/images/modules/tempdeck_gen2.png index 97ff5266f20..0a84ae70749 100644 Binary files a/protocol-designer/src/images/modules/tempdeck_gen2.png and b/protocol-designer/src/images/modules/tempdeck_gen2.png differ diff --git a/protocol-designer/src/images/modules/thermocycler.jpg b/protocol-designer/src/images/modules/thermocycler.jpg deleted file mode 100644 index c0aa26a114c..00000000000 Binary files a/protocol-designer/src/images/modules/thermocycler.jpg and /dev/null differ diff --git a/protocol-designer/src/images/modules/thermocycler.png b/protocol-designer/src/images/modules/thermocycler.png new file mode 100644 index 00000000000..a8b86a603e3 Binary files /dev/null and b/protocol-designer/src/images/modules/thermocycler.png differ diff --git a/protocol-designer/src/images/modules/thermocycler_gen2.png b/protocol-designer/src/images/modules/thermocycler_gen2.png index c612719834b..f68203b0f3b 100644 Binary files a/protocol-designer/src/images/modules/thermocycler_gen2.png and b/protocol-designer/src/images/modules/thermocycler_gen2.png differ diff --git a/protocol-designer/src/labware-defs/index.ts b/protocol-designer/src/labware-defs/index.ts index 9b3a6ae5d0c..718967323e3 100644 --- a/protocol-designer/src/labware-defs/index.ts +++ b/protocol-designer/src/labware-defs/index.ts @@ -1,6 +1,7 @@ import * as actions from './actions' -import { rootReducer, RootState } from './reducers' +import { rootReducer } from './reducers' import * as selectors from './selectors' +import type { RootState } from './reducers' export * from './types' export * from './utils' export { actions, rootReducer, selectors } diff --git a/protocol-designer/src/labware-defs/reducers.ts b/protocol-designer/src/labware-defs/reducers.ts index d6611c72b16..786213b90ad 100644 --- a/protocol-designer/src/labware-defs/reducers.ts +++ b/protocol-designer/src/labware-defs/reducers.ts @@ -1,19 +1,20 @@ import omit from 'lodash/omit' -import { Reducer, combineReducers } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' import pickBy from 'lodash/pickBy' import { getLabwareDefURI, getLabwareDefIsStandard, } from '@opentrons/shared-data' -import { Action } from '../types' -import { LabwareUploadMessage, LabwareDefByDefURI } from './types' -import { +import type { Action } from '../types' +import type { LabwareUploadMessage, LabwareDefByDefURI } from './types' +import type { CreateCustomLabwareDef, LabwareUploadMessageAction, ReplaceCustomLabwareDef, } from './actions' -import { LoadFileAction } from '../load-file' +import type { Reducer } from 'redux' +import type { LoadFileAction } from '../load-file' // @ts-expect-error(sa, 2021-6-20): cannot use string literals as action type // TODO IMMEDIATELY: refactor this to the old fashioned way if we cannot have type safety: https://github.com/redux-utilities/redux-actions/issues/282#issuecomment-595163081 const customDefs: Reducer = handleActions( diff --git a/protocol-designer/src/labware-defs/selectors.ts b/protocol-designer/src/labware-defs/selectors.ts index b01a444544a..ab78dc4aa14 100644 --- a/protocol-designer/src/labware-defs/selectors.ts +++ b/protocol-designer/src/labware-defs/selectors.ts @@ -1,10 +1,10 @@ import { createSelector } from 'reselect' import { _getSharedLabware, getAllDefinitions } from './utils' -import { LabwareDefinition2 } from '@opentrons/shared-data' -import { BaseState, Selector } from '../types' -import { LabwareDefByDefURI, LabwareUploadMessage } from './types' -import { RootState } from './reducers' -import { RootState as StepFormRootState } from '../step-forms' +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { BaseState, Selector } from '../types' +import type { LabwareDefByDefURI, LabwareUploadMessage } from './types' +import type { RootState } from './reducers' +import type { RootState as StepFormRootState } from '../step-forms' // NOTE: labware-defs/ state is nested inside step-forms export const rootSelector = (state: BaseState): RootState => state.stepForms.labwareDefs diff --git a/protocol-designer/src/labware-defs/types.ts b/protocol-designer/src/labware-defs/types.ts index 882ea0a0818..af68ae062ef 100644 --- a/protocol-designer/src/labware-defs/types.ts +++ b/protocol-designer/src/labware-defs/types.ts @@ -1,4 +1,4 @@ -import { LabwareDefinition2 } from '@opentrons/shared-data' +import type { LabwareDefinition2 } from '@opentrons/shared-data' export type LabwareDefByDefURI = Record export type LabwareUploadMessageType = | 'INVALID_JSON_FILE' diff --git a/protocol-designer/src/labware-defs/utils.ts b/protocol-designer/src/labware-defs/utils.ts index a32b6bbe1f1..18886b559b9 100644 --- a/protocol-designer/src/labware-defs/utils.ts +++ b/protocol-designer/src/labware-defs/utils.ts @@ -2,12 +2,14 @@ import groupBy from 'lodash/groupBy' import { getLabwareDefURI, PD_DO_NOT_LIST, - LabwareDefinition1, - LabwareDefinition2, getAllDefinitions as _getAllDefinitions, getAllLegacyDefinitions, } from '@opentrons/shared-data' -import { LabwareDefByDefURI } from './types' +import type { + LabwareDefinition1, + LabwareDefinition2, +} from '@opentrons/shared-data' +import type { LabwareDefByDefURI } from './types' export function getLegacyLabwareDef( loadName: string | null | undefined diff --git a/protocol-designer/src/labware-ingred/actions/actions.ts b/protocol-designer/src/labware-ingred/actions/actions.ts index 7d39ec3ac76..5741b06fc24 100644 --- a/protocol-designer/src/labware-ingred/actions/actions.ts +++ b/protocol-designer/src/labware-ingred/actions/actions.ts @@ -1,7 +1,7 @@ import { createAction } from 'redux-actions' import { selectors } from '../selectors' -import { DeckSlot, ThunkAction } from '../../types' -import { IngredInputs } from '../types' +import type { DeckSlot, ThunkAction } from '../../types' +import type { IngredInputs } from '../types' // ===== Labware selector actions ===== export interface OpenAddLabwareModalAction { type: 'OPEN_ADD_LABWARE_MODAL' diff --git a/protocol-designer/src/labware-ingred/actions/thunks.ts b/protocol-designer/src/labware-ingred/actions/thunks.ts index 39418ceb2ad..dbda17a9974 100644 --- a/protocol-designer/src/labware-ingred/actions/thunks.ts +++ b/protocol-designer/src/labware-ingred/actions/thunks.ts @@ -4,13 +4,13 @@ import { selectors as labwareDefSelectors } from '../../labware-defs' import { selectors as stepFormSelectors } from '../../step-forms' import { selectors as uiLabwareSelectors } from '../../ui/labware' import { getNextAvailableDeckSlot, getNextNickname } from '../utils' -import { +import { getRobotType } from '../../file-data/selectors' +import type { CreateContainerArgs, CreateContainerAction, DuplicateLabwareAction, } from './actions' -import { ThunkAction } from '../../types' -import { getRobotType } from '../../file-data/selectors' +import type { ThunkAction } from '../../types' export interface RenameLabwareAction { type: 'RENAME_LABWARE' payload: { @@ -53,11 +53,12 @@ export const createContainer: ( const state = getState() const initialDeckSetup = stepFormSelectors.getInitialDeckSetup(state) const robotType = getRobotType(state) - const slot = - args.slot || getNextAvailableDeckSlot(initialDeckSetup, robotType) const labwareDef = labwareDefSelectors.getLabwareDefsByURI(state)[ args.labwareDefURI ] + const slot = + args.slot || + getNextAvailableDeckSlot(initialDeckSetup, robotType, labwareDef) const isTiprack = getIsTiprack(labwareDef) if (slot) { @@ -122,7 +123,14 @@ export const duplicateLabware: ( const initialDeckSetup = stepFormSelectors.getInitialDeckSetup(state) const templateLabwareIdIsOffDeck = initialDeckSetup.labware[templateLabwareId].slot === 'offDeck' - const duplicateSlot = getNextAvailableDeckSlot(initialDeckSetup, robotType) + const labwareDef = labwareDefSelectors.getLabwareDefsByURI(state)[ + templateLabwareDefURI + ] + const duplicateSlot = getNextAvailableDeckSlot( + initialDeckSetup, + robotType, + labwareDef + ) if (duplicateSlot == null) { console.error('no slots available, cannot duplicate labware') } diff --git a/protocol-designer/src/labware-ingred/reducers/index.ts b/protocol-designer/src/labware-ingred/reducers/index.ts index bb1b8d2cdab..b968c93b4ac 100644 --- a/protocol-designer/src/labware-ingred/reducers/index.ts +++ b/protocol-designer/src/labware-ingred/reducers/index.ts @@ -1,18 +1,19 @@ -import { Reducer, combineReducers } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' import omit from 'lodash/omit' import mapValues from 'lodash/mapValues' import pickBy from 'lodash/pickBy' import { getPDMetadata } from '../../file-types' -import { +import type { Reducer } from 'redux' +import type { SingleLabwareLiquidState, LocationLiquidState, LabwareLiquidState, } from '@opentrons/step-generation' -import { Action, DeckSlot } from '../../types' -import { LiquidGroupsById, DisplayLabware } from '../types' -import { LoadFileAction } from '../../load-file' -import { +import type { Action, DeckSlot } from '../../types' +import type { LiquidGroupsById, DisplayLabware } from '../types' +import type { LoadFileAction } from '../../load-file' +import type { RemoveWellsContentsAction, CreateContainerAction, DeleteLiquidGroupAction, diff --git a/protocol-designer/src/labware-ingred/selectors.ts b/protocol-designer/src/labware-ingred/selectors.ts index 8238026c0db..817b2c705e5 100644 --- a/protocol-designer/src/labware-ingred/selectors.ts +++ b/protocol-designer/src/labware-ingred/selectors.ts @@ -1,11 +1,12 @@ -import { createSelector, Selector } from 'reselect' +import { createSelector } from 'reselect' import forEach from 'lodash/forEach' import mapValues from 'lodash/mapValues' import max from 'lodash/max' import reduce from 'lodash/reduce' -import { Options } from '@opentrons/components' -import { LabwareLiquidState } from '@opentrons/step-generation' -import { +import type { Selector } from 'reselect' +import type { Options } from '@opentrons/components' +import type { LabwareLiquidState } from '@opentrons/step-generation' +import type { RootState, ContainersState, DrillDownLabwareId, @@ -13,13 +14,13 @@ import { SelectedContainerId, SelectedLiquidGroupState, } from './reducers' -import { +import type { AllIngredGroupFields, IngredInputs, LiquidGroup, OrderedLiquids, } from './types' -import { BaseState, DeckSlot } from './../types' +import type { BaseState, DeckSlot } from './../types' // TODO: Ian 2019-02-15 no RootSlice, use BaseState interface RootSlice { labwareIngred: RootState diff --git a/protocol-designer/src/labware-ingred/types.ts b/protocol-designer/src/labware-ingred/types.ts index f5997158e32..02bb8afa6ad 100644 --- a/protocol-designer/src/labware-ingred/types.ts +++ b/protocol-designer/src/labware-ingred/types.ts @@ -1,4 +1,4 @@ -import { LocationLiquidState } from '@opentrons/step-generation' +import type { LocationLiquidState } from '@opentrons/step-generation' // TODO Ian 2018-02-19 make these shared in component library, standardize with Run App // ===== LABWARE =========== export interface DisplayLabware { diff --git a/protocol-designer/src/labware-ingred/utils.ts b/protocol-designer/src/labware-ingred/utils.ts index aeec4364a1c..d4c6dc5e1bf 100644 --- a/protocol-designer/src/labware-ingred/utils.ts +++ b/protocol-designer/src/labware-ingred/utils.ts @@ -1,21 +1,34 @@ import { FIXED_TRASH_ID, + getAreSlotsAdjacent, getDeckDefFromRobotType, + getIsLabwareAboveHeight, + HEATERSHAKER_MODULE_TYPE, + MAX_LABWARE_HEIGHT_EAST_WEST_HEATER_SHAKER_MM, MOVABLE_TRASH_ADDRESSABLE_AREAS, + OT2_ROBOT_TYPE, WASTE_CHUTE_ADDRESSABLE_AREAS, } from '@opentrons/shared-data' import { COLUMN_4_SLOTS } from '@opentrons/step-generation' import { getSlotIsEmpty } from '../step-forms/utils' import { getStagingAreaAddressableAreas } from '../utils' -import type { RobotType, CutoutId } from '@opentrons/shared-data' +import type { + RobotType, + CutoutId, + LabwareDefinition2, +} from '@opentrons/shared-data' import type { InitialDeckSetup } from '../step-forms/types' import type { DeckSlot } from '../types' export function getNextAvailableDeckSlot( initialDeckSetup: InitialDeckSetup, - robotType: RobotType + robotType: RobotType, + labwareDefinition?: LabwareDefinition2 ): DeckSlot | null | undefined { const deckDef = getDeckDefFromRobotType(robotType) + const heaterShakerSlot = Object.values(initialDeckSetup.modules).find( + module => module.type === HEATERSHAKER_MODULE_TYPE + )?.slot return deckDef.locations.addressableAreas.find(slot => { const cutoutIds = Object.values(initialDeckSetup.additionalEquipmentOnDeck) @@ -36,6 +49,22 @@ export function getNextAvailableDeckSlot( slot.id === FIXED_TRASH_ID ) { isSlotEmpty = false + // return slot as full if slot is adjacent to heater-shaker for ot-2 and taller than 53mm + } else if ( + heaterShakerSlot != null && + deckDef.robot.model === OT2_ROBOT_TYPE && + isSlotEmpty && + labwareDefinition != null + ) { + isSlotEmpty = + !getAreSlotsAdjacent(heaterShakerSlot, slot.id) || + !( + getAreSlotsAdjacent(heaterShakerSlot, slot.id) && + getIsLabwareAboveHeight( + labwareDefinition, + MAX_LABWARE_HEIGHT_EAST_WEST_HEATER_SHAKER_MM + ) + ) } return isSlotEmpty })?.id diff --git a/protocol-designer/src/load-file/actions.ts b/protocol-designer/src/load-file/actions.ts index 2b841c718c3..a698696c525 100644 --- a/protocol-designer/src/load-file/actions.ts +++ b/protocol-designer/src/load-file/actions.ts @@ -1,9 +1,9 @@ import { migration } from './migration' import { selectors as fileDataSelectors } from '../file-data' import { saveFile } from './utils' -import { PDProtocolFile } from '../file-types' -import { GetState, ThunkAction, ThunkDispatch } from '../types' -import { +import type { PDProtocolFile } from '../file-types' +import type { GetState, ThunkAction, ThunkDispatch } from '../types' +import type { FileUploadErrorType, FileUploadMessage, LoadFileAction, diff --git a/protocol-designer/src/load-file/index.ts b/protocol-designer/src/load-file/index.ts index 30c2ea1a3c1..778ef3e3106 100644 --- a/protocol-designer/src/load-file/index.ts +++ b/protocol-designer/src/load-file/index.ts @@ -1,6 +1,7 @@ -import { RootState, rootReducer } from './reducers' +import { rootReducer } from './reducers' import * as actions from './actions' import * as selectors from './selectors' +import type { RootState } from './reducers' export * from './types' export { actions, rootReducer, selectors } export type { RootState } diff --git a/protocol-designer/src/load-file/migration/1_1_0.ts b/protocol-designer/src/load-file/migration/1_1_0.ts index af041cee1d9..f42852e7c96 100644 --- a/protocol-designer/src/load-file/migration/1_1_0.ts +++ b/protocol-designer/src/load-file/migration/1_1_0.ts @@ -3,13 +3,14 @@ import mapValues from 'lodash/mapValues' import omit from 'lodash/omit' import omitBy from 'lodash/omitBy' import flow from 'lodash/flow' -import { PipetteName, getPipetteSpecsV2 } from '@opentrons/shared-data' +import { getPipetteSpecsV2 } from '@opentrons/shared-data' import { getLegacyLabwareDef } from '../../labware-defs' import type { FileLabware, FilePipette, ProtocolFile, } from '@opentrons/shared-data/protocol/types/schemaV1' +import type { PipetteName } from '@opentrons/shared-data' import type { FormPatch } from '../../steplist/actions' import type { FormData } from '../../form-types' diff --git a/protocol-designer/src/load-file/migration/3_0_0.ts b/protocol-designer/src/load-file/migration/3_0_0.ts index f0b57bc6819..798eaa8ae8f 100644 --- a/protocol-designer/src/load-file/migration/3_0_0.ts +++ b/protocol-designer/src/load-file/migration/3_0_0.ts @@ -4,12 +4,12 @@ import reduce from 'lodash/reduce' import uniq from 'lodash/uniq' import { v1LabwareModelToV2Def } from './utils/v1LabwareModelToV2Def' import { getLabwareDefURI } from '@opentrons/shared-data' -import { +import type { ProtocolFile, FileLabware, FilePipette, } from '@opentrons/shared-data/protocol/types/schemaV3' -import { PDProtocolFile as PDProtocolFileV1, PDMetadata } from './1_1_0' +import type { PDProtocolFile as PDProtocolFileV1, PDMetadata } from './1_1_0' // NOTE: PDMetadata type did not change btw 1.1.0 and 3.0.0 export type PDProtocolFile = ProtocolFile // the version and schema for this migration diff --git a/protocol-designer/src/load-file/migration/6_0_0.ts b/protocol-designer/src/load-file/migration/6_0_0.ts index 2eb7a330a2b..f4ffcefd150 100644 --- a/protocol-designer/src/load-file/migration/6_0_0.ts +++ b/protocol-designer/src/load-file/migration/6_0_0.ts @@ -3,11 +3,7 @@ import mapKeys from 'lodash/mapKeys' import mapValues from 'lodash/mapValues' import omit from 'lodash/omit' import reduce from 'lodash/reduce' -import { - OT2_STANDARD_DECKID, - OT2_STANDARD_MODEL, - ProtocolFileV5, -} from '@opentrons/shared-data' +import { OT2_STANDARD_DECKID, OT2_STANDARD_MODEL } from '@opentrons/shared-data' import { uuid } from '../../utils' import { FIXED_TRASH_ID, INITIAL_DECK_SETUP_STEP_ID } from '../../constants' // NOTE: this migration bump adds load commands (loadLiquid, loadModule, loadPipette, loadLabware), modifies both pipette @@ -15,6 +11,7 @@ import { FIXED_TRASH_ID, INITIAL_DECK_SETUP_STEP_ID } from '../../constants' // and module keys such as slot, mount // and renames well to wellName import { getLoadLiquidCommands } from './utils/getLoadLiquidCommands' +import type { ProtocolFileV5 } from '@opentrons/shared-data' import type { LoadPipetteCreateCommand, LoadModuleCreateCommand, diff --git a/protocol-designer/src/load-file/migration/8_1_0.ts b/protocol-designer/src/load-file/migration/8_1_0.ts index 755ef2a3ed2..cd92de7c004 100644 --- a/protocol-designer/src/load-file/migration/8_1_0.ts +++ b/protocol-designer/src/load-file/migration/8_1_0.ts @@ -1,7 +1,11 @@ +import { getDefaultBlowoutFlowRate } from './utils/getDefaultBlowoutFlowRate' import type { + LoadPipetteCreateCommand, LoadLabwareCreateCommand, ProtocolFile, + PipetteName, } from '@opentrons/shared-data' +import type { LegacyDismissedWarningState } from '../../dismiss/reducers' import type { DesignerApplicationData } from './utils/getLoadLiquidCommands' export interface DesignerApplicationDataV8 { @@ -21,6 +25,7 @@ export interface DesignerApplicationDataV8 { savedStepForms: Record orderedStepIds: string[] pipetteTiprackAssignments: Record + dismissedWarnings: LegacyDismissedWarningState } export const migrateFile = ( @@ -43,10 +48,19 @@ export const migrateFile = ( {} ) + const dismissedWarnings = designerApplication.data?.dismissedWarnings + + const pipetteTiprackAssignments = + designerApplication.data?.pipetteTiprackAssignments + const loadLabwareCommands = commands.filter( (command): command is LoadLabwareCreateCommand => command.commandType === 'loadLabware' ) + const loadPipetteCommands = commands.filter( + (command): command is LoadPipetteCreateCommand => + command.commandType === 'loadPipette' + ) const savedStepForms = designerApplication.data ?.savedStepForms as DesignerApplicationData['savedStepForms'] @@ -64,9 +78,9 @@ export const migrateFile = ( `expected to find tiprack definition with labwareDefintionURI ${tipRackUri} but could not` ) } - const tiprackIds = loadLabwareCommands - .filter(command => command.params.loadName === tiprackLoadName) - .map(command => command.params.labwareId) + const tiprackLoadCommands = loadLabwareCommands.filter( + command => command.params.loadName === tiprackLoadName + ) const xyKeys = item.stepType === 'mix' ? { mix_x_position: 0, mix_y_position: 0 } @@ -76,10 +90,44 @@ export const migrateFile = ( dispense_x_position: 0, dispense_y_position: 0, } + const matchingTiprackCommand = tiprackLoadCommands.find( + command => command.params.labwareId === item.tipRack + ) + if (matchingTiprackCommand == null) { + console.error( + `expected to find a tiprack loadname from tiprack ${item.tipRack} but could not ` + ) + } + const matchingTiprackURI = + matchingTiprackCommand != null + ? `${matchingTiprackCommand.params.namespace}/${matchingTiprackCommand.params.loadName}/${matchingTiprackCommand.params.version}` + : null + const tipLength = + matchingTiprackURI != null + ? labwareDefinitions[matchingTiprackURI].parameters.tipLength ?? 0 + : 0 + const pipetteName = loadPipetteCommands.find( + pipette => pipette.params.pipetteId === item.pipette + )?.params.pipetteName + + const defaultBlowOutFlowRate = getDefaultBlowoutFlowRate( + pipetteName as PipetteName, + item.volume, + tipLength + ) + + let blowoutFlowRate: number | null = defaultBlowOutFlowRate + if (item.blowout_checkbox === false) { + blowoutFlowRate = null + } + + const tipRackDefURI = pipetteTiprackAssignments[item.pipette] + acc[item.id] = { ...item, + blowout_flowRate: blowoutFlowRate, blowout_z_offset: 0, - tipRack: tiprackIds[0], + tipRack: tipRackDefURI, ...xyKeys, } return acc @@ -87,6 +135,19 @@ export const migrateFile = ( {} ) + const newDismissedWarningsForm = + dismissedWarnings.form != null + ? Object.values(dismissedWarnings.form).flatMap( + formType => formType as string[] + ) + : [] + const newDismissedWarningsTimeline = + dismissedWarnings.timeline != null + ? Object.values(dismissedWarnings.timeline).flatMap( + timelineType => timelineType as string[] + ) + : [] + return { ...appData, designerApplication: { @@ -98,6 +159,10 @@ export const migrateFile = ( ...pipettingSavedStepsWithAdditionalFields, }, pipetteTiprackAssignments: newTiprackAssignments, + dismissedWarnings: { + form: newDismissedWarningsForm, + timeline: newDismissedWarningsTimeline, + }, }, }, } diff --git a/protocol-designer/src/load-file/migration/__tests__/__snapshots__/3_0_0.test.ts.snap b/protocol-designer/src/load-file/migration/__tests__/__snapshots__/3_0_0.test.ts.snap index 5fe841bb055..d0eeb3dde9e 100644 --- a/protocol-designer/src/load-file/migration/__tests__/__snapshots__/3_0_0.test.ts.snap +++ b/protocol-designer/src/load-file/migration/__tests__/__snapshots__/3_0_0.test.ts.snap @@ -297,301 +297,3 @@ exports[`migrate to 3.0.0 > snapshot test 1`] = ` "schemaVersion": 3, } `; - -exports[`migrate to 3.0.0 snapshot test 1`] = ` -Object { - "commands": Array [], - "designerApplication": Object { - "data": Object { - "dismissedWarnings": Object { - "form": Object {}, - "timeline": Object {}, - }, - "ingredLocations": Object { - "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well": Object { - "A1": Object { - "0": Object { - "volume": 121, - }, - }, - "B1": Object { - "0": Object { - "volume": 121, - }, - }, - "C1": Object { - "0": Object { - "volume": 121, - }, - }, - "D1": Object { - "0": Object { - "volume": 121, - }, - }, - "E1": Object { - "0": Object { - "volume": 121, - }, - }, - "F1": Object { - "1": Object { - "volume": 44, - }, - }, - "G1": Object { - "1": Object { - "volume": 44, - }, - }, - "H1": Object { - "1": Object { - "volume": 44, - }, - }, - }, - }, - "ingredients": Object { - "0": Object { - "description": null, - "liquidGroupId": "0", - "name": "samples", - "serialize": false, - }, - "1": Object { - "description": null, - "liquidGroupId": "1", - "name": "dna", - "serialize": false, - }, - }, - "orderedStepIds": Array [ - "e7d36200-92a5-11e9-ac62-1b173f839d9e", - "18113c80-92a6-11e9-ac62-1b173f839d9e", - "2e622080-92a6-11e9-ac62-1b173f839d9e", - ], - "pipetteTiprackAssignments": Object { - "c6f45030-92a5-11e9-ac62-1b173f839d9e": "fixture/fixture_regular_example_1/1", - "c6f47740-92a5-11e9-ac62-1b173f839d9e": "fixture/fixture_regular_example_1/1", - }, - "savedStepForms": Object { - "18113c80-92a6-11e9-ac62-1b173f839d9e": Object { - "aspirate_flowRate": 8, - "blowout_checkbox": true, - "blowout_location": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", - "changeTip": "always", - "dispense_flowRate": 7, - "id": "18113c80-92a6-11e9-ac62-1b173f839d9e", - "labware": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", - "mix_mmFromBottom": 0.5, - "mix_touchTip_checkbox": true, - "mix_touchTip_mmFromBottom": 30.5, - "mix_wellOrder_first": "t2b", - "mix_wellOrder_second": "l2r", - "pipette": "c6f45030-92a5-11e9-ac62-1b173f839d9e", - "stepDetails": "", - "stepName": "mix", - "stepType": "mix", - "times": 3, - "volume": "5.5", - "wells": Array [ - "F1", - ], - }, - "2e622080-92a6-11e9-ac62-1b173f839d9e": Object { - "id": "2e622080-92a6-11e9-ac62-1b173f839d9e", - "pauseForAmountOfTime": "true", - "pauseHour": 1, - "pauseMessage": "Delay plz", - "pauseMinute": 2, - "pauseSecond": 3, - "stepDetails": "", - "stepName": "pause", - "stepType": "pause", - }, - "__INITIAL_DECK_SETUP_STEP__": Object { - "id": "__INITIAL_DECK_SETUP_STEP__", - "labwareLocationUpdate": Object { - "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul": "1", - "c6f51380-92a5-11e9-ac62-1b173f839d9e:tiprack-200ul": "2", - "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well": "10", - "trashId": "12", - }, - "pipetteLocationUpdate": Object { - "c6f45030-92a5-11e9-ac62-1b173f839d9e": "left", - "c6f47740-92a5-11e9-ac62-1b173f839d9e": "right", - }, - "stepType": "manualIntervention", - }, - "e7d36200-92a5-11e9-ac62-1b173f839d9e": Object { - "aspirate_flowRate": 0.6, - "aspirate_labware": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", - "aspirate_mix_checkbox": true, - "aspirate_mix_times": 3, - "aspirate_mix_volume": "2", - "aspirate_mmFromBottom": 1, - "aspirate_touchTip_checkbox": true, - "aspirate_touchTip_mmFromBottom": 28.5, - "aspirate_wellOrder_first": "t2b", - "aspirate_wellOrder_second": "l2r", - "aspirate_wells": Array [ - "A1", - ], - "aspirate_wells_grouped": false, - "blowout_checkbox": true, - "blowout_location": "trashId", - "changeTip": "always", - "dispense_labware": "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well", - "dispense_mix_checkbox": true, - "dispense_mix_times": 2, - "dispense_mix_volume": "3", - "dispense_mmFromBottom": 2.5, - "dispense_touchTip_checkbox": true, - "dispense_wellOrder_first": "b2t", - "dispense_wellOrder_second": "r2l", - "dispense_wells": Array [ - "C6", - "D6", - "E6", - "C7", - "D7", - "E7", - "C8", - "D8", - "E8", - ], - "disposalVolume_checkbox": true, - "disposalVolume_volume": "1", - "id": "e7d36200-92a5-11e9-ac62-1b173f839d9e", - "path": "single", - "pipette": "c6f45030-92a5-11e9-ac62-1b173f839d9e", - "preWetTip": false, - "stepDetails": "yeah notes", - "stepName": "transfer things", - "stepType": "moveLiquid", - "volume": "6", - }, - }, - }, - "name": "opentrons/protocol-designer", - "version": "3.0.0", - }, - "labware": Object { - "c6f4ec70-92a5-11e9-ac62-1b173f839d9e:tiprack-10ul": Object { - "definitionId": "fixture/fixture_regular_example_1/1", - "displayName": "tiprack 10ul (1)", - "slot": "1", - }, - "c6f51380-92a5-11e9-ac62-1b173f839d9e:tiprack-200ul": Object { - "definitionId": "fixture/fixture_regular_example_1/1", - "displayName": "tiprack 200ul (1)", - "slot": "2", - }, - "dafd4000-92a5-11e9-ac62-1b173f839d9e:96-deep-well": Object { - "definitionId": "fixture/fixture_regular_example_1/1", - "displayName": "96 deep well (1)", - "slot": "10", - }, - "trashId": Object { - "definitionId": "fixture/fixture_regular_example_1/1", - "displayName": "Trash", - "slot": "12", - }, - }, - "labwareDefinitions": Object { - "fixture/fixture_regular_example_1/1": Object { - "brand": Object { - "brand": "opentrons", - "brandId": Array [ - "t40u9sernisofsea", - ], - }, - "cornerOffsetFromSlot": Object { - "x": 0, - "y": 0, - "z": 0, - }, - "dimensions": Object { - "xDimension": 127.76, - "yDimension": 85.48, - "zDimension": 50, - }, - "groups": Array [ - Object { - "metadata": Object {}, - "wells": Array [ - "A1", - "A2", - ], - }, - ], - "metadata": Object { - "displayCategory": "wellPlate", - "displayName": "fake labware", - "displayVolumeUnits": "µL", - }, - "namespace": "fixture", - "ordering": Array [ - Array [ - "A1", - ], - Array [ - "A2", - ], - ], - "parameters": Object { - "format": "96Standard", - "isMagneticModuleCompatible": false, - "isTiprack": false, - "loadName": "fixture_regular_example_1", - }, - "schemaVersion": 2, - "version": 1, - "wells": Object { - "A1": Object { - "depth": 40, - "diameter": 30, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 10, - "y": 75.48, - "z": 15, - }, - "A2": Object { - "depth": 40, - "diameter": 30, - "shape": "circular", - "totalLiquidVolume": 100, - "x": 20, - "y": 75.48, - "z": 15, - }, - }, - }, - }, - "metadata": Object { - "author": "Author name", - "category": null, - "created": 1560957631666, - "description": "Description here", - "lastModified": undefined, - "protocolName": "Some name!", - "subcategory": null, - "tags": Array [], - }, - "pipettes": Object { - "c6f45030-92a5-11e9-ac62-1b173f839d9e": Object { - "mount": "left", - "name": "p10_single", - }, - "c6f47740-92a5-11e9-ac62-1b173f839d9e": Object { - "mount": "right", - "name": "p50_single", - }, - }, - "robot": Object { - "model": "OT-2 Standard", - }, - "schemaVersion": 3, -} -`; diff --git a/protocol-designer/src/load-file/migration/index.ts b/protocol-designer/src/load-file/migration/index.ts index 16e58a0cce7..531e6fc4dd9 100644 --- a/protocol-designer/src/load-file/migration/index.ts +++ b/protocol-designer/src/load-file/migration/index.ts @@ -1,7 +1,6 @@ import flow from 'lodash/flow' import takeRightWhile from 'lodash/takeRightWhile' import semver from 'semver' -import { PDProtocolFile } from '../../file-types' import { migrateFile as migrateFileOne } from './1_1_0' import { migrateFile as migrateFileThree } from './3_0_0' import { migrateFile as migrateFileFour } from './4_0_0' @@ -12,6 +11,7 @@ import { migrateFile as migrateFileSix } from './6_0_0' import { migrateFile as migrateFileSeven } from './7_0_0' import { migrateFile as migrateFileEight } from './8_0_0' import { migrateFile as migrateFileEightOne } from './8_1_0' +import type { PDProtocolFile } from '../../file-types' export const OLDEST_MIGRATEABLE_VERSION = '1.0.0' type Version = string @@ -27,7 +27,11 @@ export const getMigrationVersionsToRunFromVersion = ( const allSortedVersions = Object.keys(migrationsByVersion).sort( semver.compare ) - return takeRightWhile(allSortedVersions, v => semver.gt(v, version)) + + return takeRightWhile( + allSortedVersions, + v => semver.gt(v, version) && !version.includes(v) + ) } const allMigrationsByVersion: MigrationsByVersion = { diff --git a/protocol-designer/src/load-file/migration/utils/getDefaultBlowoutFlowRate.ts b/protocol-designer/src/load-file/migration/utils/getDefaultBlowoutFlowRate.ts new file mode 100644 index 00000000000..7fa927177b4 --- /dev/null +++ b/protocol-designer/src/load-file/migration/utils/getDefaultBlowoutFlowRate.ts @@ -0,0 +1,36 @@ +import { LOW_VOLUME_PIPETTES, getPipetteSpecsV2 } from '@opentrons/shared-data' +import type { PipetteName } from '@opentrons/shared-data' + +export function getDefaultBlowoutFlowRate( + pipetteName: PipetteName, + volume: number, + tipLength: number +): number { + const specs = getPipetteSpecsV2(pipetteName) + + console.assert( + specs, + `expected to find pipette specs from pipetteName ${pipetteName} but could not` + ) + + const isLowVolumePipette = LOW_VOLUME_PIPETTES.includes(pipetteName) + const isUsingLowVolume = volume < 5 + const liquidType = + isLowVolumePipette && isUsingLowVolume ? 'lowVolumeDefault' : 'default' + const liquidSupportedTips = + specs != null ? Object.values(specs.liquids[liquidType].supportedTips) : [] + + // find the supported tip liquid specs that either exactly match + // tipLength or are closest, this accounts for custom tipracks + const matchingTipLiquidSpecs = liquidSupportedTips.sort((tipA, tipB) => { + const differenceA = Math.abs(tipA.defaultTipLength - tipLength) + const differenceB = Math.abs(tipB.defaultTipLength - tipLength) + return differenceA - differenceB + })[0] + console.assert( + matchingTipLiquidSpecs, + `expected to find the tip liquid specs but could not with pipetteName ${pipetteName}` + ) + + return matchingTipLiquidSpecs.defaultBlowOutFlowRate.default +} diff --git a/protocol-designer/src/load-file/migration/utils/getLoadLiquidCommands.ts b/protocol-designer/src/load-file/migration/utils/getLoadLiquidCommands.ts index 9a48688a1d0..2be01b2e4b9 100644 --- a/protocol-designer/src/load-file/migration/utils/getLoadLiquidCommands.ts +++ b/protocol-designer/src/load-file/migration/utils/getLoadLiquidCommands.ts @@ -1,6 +1,7 @@ import reduce from 'lodash/reduce' import { uuid } from '../../../utils' import type { LoadLiquidCreateCommand } from '@opentrons/shared-data/protocol/types/schemaV6/command/setup' +import type { DismissedWarningState } from '../../../dismiss/reducers' export interface DesignerApplicationData { ingredients: Record< @@ -19,6 +20,7 @@ export interface DesignerApplicationData { savedStepForms: Record orderedStepIds: string[] pipetteTiprackAssignments: Record + dismissedWarnings: DismissedWarningState } export const getLoadLiquidCommands = ( diff --git a/protocol-designer/src/load-file/migration/utils/v1LabwareModelToV2Def.ts b/protocol-designer/src/load-file/migration/utils/v1LabwareModelToV2Def.ts index a8c1bc25e3a..0325983fb1b 100644 --- a/protocol-designer/src/load-file/migration/utils/v1LabwareModelToV2Def.ts +++ b/protocol-designer/src/load-file/migration/utils/v1LabwareModelToV2Def.ts @@ -1,5 +1,5 @@ import { getOnlyLatestDefs } from '../../../labware-defs' -import { LabwareDefinition2 } from '@opentrons/shared-data' +import type { LabwareDefinition2 } from '@opentrons/shared-data' const v1ModelTov2LoadNameMap = { '6-well-plate': 'corning_6_wellplate_16.8ml_flat', '12-well-plate': 'corning_12_wellplate_6.9ml_flat', diff --git a/protocol-designer/src/load-file/reducers.ts b/protocol-designer/src/load-file/reducers.ts index a47284a04e3..76ec872aca0 100644 --- a/protocol-designer/src/load-file/reducers.ts +++ b/protocol-designer/src/load-file/reducers.ts @@ -1,8 +1,9 @@ -import { Reducer, combineReducers } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' -import { Action } from '../types' -import { FileUploadMessage, LoadFileAction } from './types' -import { FileUploadMessageAction } from './actions' +import type { Reducer } from 'redux' +import type { Action } from '../types' +import type { FileUploadMessage, LoadFileAction } from './types' +import type { FileUploadMessageAction } from './actions' // Keep track of file upload errors / messages type FileUploadMessageState = FileUploadMessage | null | undefined diff --git a/protocol-designer/src/load-file/selectors.ts b/protocol-designer/src/load-file/selectors.ts index 8a1003425cd..733fd2dfb27 100644 --- a/protocol-designer/src/load-file/selectors.ts +++ b/protocol-designer/src/load-file/selectors.ts @@ -1,6 +1,6 @@ import { createSelector } from 'reselect' -import { BaseState, Selector } from '../types' -import { RootState } from './reducers' +import type { BaseState, Selector } from '../types' +import type { RootState } from './reducers' export const rootSelector = (state: BaseState): RootState => state.loadFile export const getFileUploadMessages: Selector< RootState['fileUploadMessage'] diff --git a/protocol-designer/src/load-file/types.ts b/protocol-designer/src/load-file/types.ts index bfd612b0898..d3a25dfde74 100644 --- a/protocol-designer/src/load-file/types.ts +++ b/protocol-designer/src/load-file/types.ts @@ -1,4 +1,4 @@ -import { PDProtocolFile } from '../file-types' +import type { PDProtocolFile } from '../file-types' import type { RobotType } from '@opentrons/shared-data' export type FileUploadErrorType = 'INVALID_FILE_TYPE' | 'INVALID_JSON_FILE' diff --git a/protocol-designer/src/localization/en/alert.json b/protocol-designer/src/localization/en/alert.json index 34ac8c33a02..e07431bf188 100644 --- a/protocol-designer/src/localization/en/alert.json +++ b/protocol-designer/src/localization/en/alert.json @@ -96,6 +96,14 @@ }, "timeline": { "error": { + "LABWARE_DISCARDED_IN_WASTE_CHUTE": { + "title": "The labware has been previously discarded into the waste chute", + "body": "Please select a different labware to move." + }, + "LABWARE_ON_ANOTHER_ENTITY": { + "title": "Attempting to move a labware on top of another entity", + "body": "Please reselect which slot your labware should move to." + }, "INSUFFICIENT_TIPS": { "title": "Not enough tips to complete action", "body": "Add another tip rack to an empty slot in " diff --git a/protocol-designer/src/localization/en/application.json b/protocol-designer/src/localization/en/application.json index 7943a006e6f..d5889db6194 100644 --- a/protocol-designer/src/localization/en/application.json +++ b/protocol-designer/src/localization/en/application.json @@ -1,6 +1,7 @@ { "are_you_sure": "Are you sure you want to remove liquids from all selected wells?", "are_you_sure_delete_well": "Are you sure you want to delete well {{well}}?", + "blowout": "Blowout", "exit_batch_edit": "exit batch edit", "go_back": "Go back", "labware": "labware", diff --git a/protocol-designer/src/localization/en/feature_flags.json b/protocol-designer/src/localization/en/feature_flags.json index ebab1c9635d..7f2f9883bbd 100644 --- a/protocol-designer/src/localization/en/feature_flags.json +++ b/protocol-designer/src/localization/en/feature_flags.json @@ -11,13 +11,5 @@ "OT_PD_ALLOW_ALL_TIPRACKS": { "title": "Allow all tip rack options", "description": "Enable selection of all tip racks for each pipette." - }, - "OT_PD_ENABLE_MULTI_TIP": { - "title": "Enable multi tiprack support", - "description": "Allow users to select multiple tipracks per pipette" - }, - "OT_PD_ENABLE_MOAM": { - "title": "Enable multiples of a module", - "description": "Allow users to select multiples of a module" } } diff --git a/protocol-designer/src/localization/en/modal.json b/protocol-designer/src/localization/en/modal.json index 37c5b41a043..08bade5fbeb 100644 --- a/protocol-designer/src/localization/en/modal.json +++ b/protocol-designer/src/localization/en/modal.json @@ -272,6 +272,11 @@ "body2": "We have added new features since the last time this protocol was updated, but have not made any changes to existing protocol behavior. Because of this we do not expect any changes in how the robot will execute this protocol. To be safe we will still recommend keeping a separate copy of the file you just imported.", "body3": "As always, please contact us with any questions or feedback." }, + "toV8_1Migration": { + "body1": "Your protocol will be automatically updated to the latest version.", + "body2": "The default dispense height is now 1 mm from the bottom of the well, instead of 0.5 mm. All dispense commands without a custom height will change to use the new default height.", + "body3": "Additionally, blowout actions now precede touch tip actions. The new order affects all dispenses that include both actions." + }, "toV8Migration": { "body1": "Your protocol will be automatically updated to the latest version.", "body2": "{{pd}} no longer supports aspirate or mix actions in a trash bin. If your protocol contains these actions, an error icon will appear next to them in the Protocol Timeline. To resolve the error, choose another location for aspirating or mixing.", diff --git a/protocol-designer/src/localization/en/modules.json b/protocol-designer/src/localization/en/modules.json index 5cad25ca050..0f7911f45c4 100644 --- a/protocol-designer/src/localization/en/modules.json +++ b/protocol-designer/src/localization/en/modules.json @@ -1,4 +1,6 @@ { + "adapter_compatible_labware": "Adapter Compatible Labware", + "custom_labware": "Custom Labware", "additional_equipment_display_names": { "gripper": "Flex Gripper", "stagingAreas": "Staging Area Slots", diff --git a/protocol-designer/src/localization/en/tooltip.json b/protocol-designer/src/localization/en/tooltip.json index 8e293d8efdd..8551c11abea 100644 --- a/protocol-designer/src/localization/en/tooltip.json +++ b/protocol-designer/src/localization/en/tooltip.json @@ -6,9 +6,11 @@ "disabled_step_creation": "New steps cannot be added in Batch Edit mode.", "disabled_no_space_additional_items": "No space for this combination of staging area slots, trash, and modules.", "disabled_you_can_add_one_type": "Only one module of each type is allowed on the deck at a time", + "disabled_no_space_pipette": "Only up to 3 tipracks can be assigned", "not_enough_space_for_temp": "There is not enough space on the deck to add more temperature modules", "not_in_beta": "ⓘ Coming Soon", "missing_tiprack": "Missing a tiprack? Make sure it is added to the deck", + "y_position_value": "A negative value moves towards the front", "step_description": { "heaterShaker": "Set heat, shake, or labware latch commands for the Heater-Shaker module", @@ -40,7 +42,7 @@ "dispense_flowRate": "The speed at which the pipette dispenses", "dispense_mix_checkbox": "Pipette up and down after dispensing", "dispense_mmFromBottom": "Adjust tip position for dispense", - "dispense_touchTip_checkbox": "Touch tip to each side of well after dispensing", + "dispense_touchTip_checkbox": "Touch tip to each side of well after dispensing and other dispense advanced setting commands", "dispense_touchTip_mmFromBottom": "Distance from the bottom of the well", "disposalVolume_checkbox": "Aspirate extra volume that is disposed of after a multi-dispense is complete. We recommend a disposal volume of at least the pipette's minimum.", "heaterShakerSetTimer": "Once this counter has elapsed, the module will deactivate the heater and shaker", @@ -49,7 +51,8 @@ "mix_touchTip_mmFromBottom": "Distance from the bottom of the well", "preWetTip": "Pre-wet pipette tip by aspirating and dispensing 2/3 of the tip's max volume", "volume": "Volume to dispense in each well", - "blowout_z_offset": "The height at which blowout occurs from the top of the well" + "blowout_z_offset": "The height at which blowout occurs from the top of the well", + "blowout_flowRate": "Blowout speed" }, "indeterminate": { "aspirate_airGap_checkbox": "Not all selected steps are using this setting", diff --git a/protocol-designer/src/navigation/actions.ts b/protocol-designer/src/navigation/actions.ts index 4b365d82f5d..751ffd324cf 100644 --- a/protocol-designer/src/navigation/actions.ts +++ b/protocol-designer/src/navigation/actions.ts @@ -1,4 +1,4 @@ -import { Page } from './types' +import type { Page } from './types' export interface NavigateToPageAction { type: 'NAVIGATE_TO_PAGE' payload: Page diff --git a/protocol-designer/src/navigation/index.ts b/protocol-designer/src/navigation/index.ts index d449b20323c..6229586f0c2 100644 --- a/protocol-designer/src/navigation/index.ts +++ b/protocol-designer/src/navigation/index.ts @@ -1,6 +1,7 @@ import * as actions from './actions' -import { rootReducer, RootState } from './reducers' +import { rootReducer } from './reducers' import * as selectors from './selectors' +import type { RootState } from './reducers' // TODO export types from reducers export * from './types' export { actions, rootReducer, selectors } diff --git a/protocol-designer/src/navigation/reducers/index.ts b/protocol-designer/src/navigation/reducers/index.ts index 07d464486ac..1c6a9df5593 100644 --- a/protocol-designer/src/navigation/reducers/index.ts +++ b/protocol-designer/src/navigation/reducers/index.ts @@ -1,8 +1,12 @@ -import { Reducer, combineReducers } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' -import { BaseState, Action } from '../../types' -import { NavigateToPageAction, ToggleNewProtocolModalAction } from '../actions' -import { Page } from '../types' +import type { Reducer } from 'redux' +import type { BaseState, Action } from '../../types' +import type { + NavigateToPageAction, + ToggleNewProtocolModalAction, +} from '../actions' +import type { Page } from '../types' const page: Reducer = handleActions( { LOAD_FILE: (): Page => 'file-detail', diff --git a/protocol-designer/src/navigation/selectors.ts b/protocol-designer/src/navigation/selectors.ts index 5ddf985ee82..3a1fa647f17 100644 --- a/protocol-designer/src/navigation/selectors.ts +++ b/protocol-designer/src/navigation/selectors.ts @@ -1,6 +1,6 @@ -import { BaseState, Selector } from '../types' import { rootSelector as navigationRootSelector } from './reducers' -import { Page } from './types' +import type { BaseState, Selector } from '../types' +import type { Page } from './types' export const getNewProtocolModal: Selector = (state: BaseState) => navigationRootSelector(state).newProtocolModal export const getCurrentPage: Selector = (state: BaseState) => { diff --git a/protocol-designer/src/persist.ts b/protocol-designer/src/persist.ts index 42edf18dc16..fbec573b065 100644 --- a/protocol-designer/src/persist.ts +++ b/protocol-designer/src/persist.ts @@ -1,7 +1,7 @@ import get from 'lodash/get' -import { Store } from 'redux' import { dismissedHintsPersist } from './tutorial/reducers' +import type { Store } from 'redux' export interface RehydratePersistedAction { type: 'REHYDRATE_PERSISTED' payload: { diff --git a/protocol-designer/src/pipettes/pipetteData.ts b/protocol-designer/src/pipettes/pipetteData.ts index 4da240de6b5..00040089e49 100644 --- a/protocol-designer/src/pipettes/pipetteData.ts +++ b/protocol-designer/src/pipettes/pipetteData.ts @@ -1,4 +1,3 @@ -import { DropdownOption } from '../../../components/lib/forms/DropdownField.d' import { getPipetteSpecsV2, getTiprackVolume, @@ -7,6 +6,7 @@ import { import type { PipetteName } from '@opentrons/shared-data' import type { Options } from '@opentrons/components' import type { LabwareEntities, PipetteEntity } from '@opentrons/step-generation' +import type { DropdownOption } from '../../../components/lib/forms/DropdownField.d' const supportedPipetteNames: PipetteName[] = [ 'p10_single', 'p10_multi', diff --git a/protocol-designer/src/step-forms/actions/index.ts b/protocol-designer/src/step-forms/actions/index.ts index 1cda526efc3..e55d8ca14d1 100644 --- a/protocol-designer/src/step-forms/actions/index.ts +++ b/protocol-designer/src/step-forms/actions/index.ts @@ -1,7 +1,7 @@ import { getBatchEditFieldChanges } from '../selectors' -import { ThunkAction } from '../../types' -import { StepIdType, StepFieldName } from '../../form-types' -import { BatchEditFormChangesState } from '../reducers' +import type { ThunkAction } from '../../types' +import type { StepIdType, StepFieldName } from '../../form-types' +import type { BatchEditFormChangesState } from '../reducers' export * from './modules' export * from './pipettes' export interface ChangeBatchEditFieldAction { diff --git a/protocol-designer/src/step-forms/actions/modules.ts b/protocol-designer/src/step-forms/actions/modules.ts index 6d119ceb15e..f405d2773d3 100644 --- a/protocol-designer/src/step-forms/actions/modules.ts +++ b/protocol-designer/src/step-forms/actions/modules.ts @@ -1,6 +1,6 @@ import { uuid } from '../../utils' -import { ModuleModel, ModuleType } from '@opentrons/shared-data' -import { DeckSlot } from '../../types' +import type { ModuleModel, ModuleType } from '@opentrons/shared-data' +import type { DeckSlot } from '../../types' export interface CreateModuleAction { type: 'CREATE_MODULE' payload: { diff --git a/protocol-designer/src/step-forms/actions/pipettes.ts b/protocol-designer/src/step-forms/actions/pipettes.ts index 1e44b34b4d6..cdc5b5ca1e0 100644 --- a/protocol-designer/src/step-forms/actions/pipettes.ts +++ b/protocol-designer/src/step-forms/actions/pipettes.ts @@ -1,5 +1,5 @@ -import { NormalizedPipetteById } from '@opentrons/step-generation' -import { StepIdType } from '../../form-types' +import type { NormalizedPipetteById } from '@opentrons/step-generation' +import type { StepIdType } from '../../form-types' export interface CreatePipettesAction { type: 'CREATE_PIPETTES' payload: NormalizedPipetteById diff --git a/protocol-designer/src/step-forms/index.ts b/protocol-designer/src/step-forms/index.ts index 310d7fbf798..14e1497b4d6 100644 --- a/protocol-designer/src/step-forms/index.ts +++ b/protocol-designer/src/step-forms/index.ts @@ -1,6 +1,7 @@ -import { rootReducer, RootState, SavedStepFormState } from './reducers' +import { rootReducer } from './reducers' import * as selectors from './selectors' import * as actions from './actions' +import type { RootState, SavedStepFormState } from './reducers' export * from './utils' export * from './types' export type { RootState, SavedStepFormState } diff --git a/protocol-designer/src/step-forms/reducers/index.ts b/protocol-designer/src/step-forms/reducers/index.ts index 5d42a31b086..e9b72646071 100644 --- a/protocol-designer/src/step-forms/reducers/index.ts +++ b/protocol-designer/src/step-forms/reducers/index.ts @@ -1,5 +1,4 @@ import { handleActions } from 'redux-actions' -import { Reducer } from 'redux' import mapValues from 'lodash/mapValues' import cloneDeep from 'lodash/cloneDeep' import merge from 'lodash/merge' @@ -12,21 +11,12 @@ import { getLabwareDefaultEngageHeight, getLabwareDefURI, getModuleType, - LoadLabwareCreateCommand, - LoadModuleCreateCommand, - LoadPipetteCreateCommand, - MoveLabwareCreateCommand, - MoveToAddressableAreaCreateCommand, - MoveToAddressableAreaForDropTipCreateCommand, MAGNETIC_MODULE_TYPE, MAGNETIC_MODULE_V1, - PipetteName, THERMOCYCLER_MODULE_TYPE, WASTE_CHUTE_ADDRESSABLE_AREAS, - AddressableAreaName, MOVABLE_TRASH_ADDRESSABLE_AREAS, } from '@opentrons/shared-data' -import type { RootState as LabwareDefsRootState } from '../../labware-defs' import { rootReducer as labwareDefsRootReducer } from '../../labware-defs' import { getCutoutIdByAddressableArea, uuid } from '../../utils' import { INITIAL_DECK_SETUP_STEP_ID, SPAN7_8_10_11_SLOT } from '../../constants' @@ -44,25 +34,13 @@ import { import { getLabwareOnModule } from '../../ui/modules/utils' import { nestedCombineReducers } from './nestedCombineReducers' import { PROFILE_CYCLE, PROFILE_STEP } from '../../form-types' -import { - COLUMN_4_SLOTS, - NormalizedAdditionalEquipmentById, - NormalizedPipetteById, -} from '@opentrons/step-generation' -import { LoadFileAction } from '../../load-file' -import { SaveStepFormAction } from '../../ui/steps/actions/thunks' -import { ReplaceCustomLabwareDef } from '../../labware-defs/actions' +import { COLUMN_4_SLOTS } from '@opentrons/step-generation' import { _getPipetteEntitiesRootState, _getLabwareEntitiesRootState, _getInitialDeckSetupRootState, _getAdditionalEquipmentEntitiesRootState, } from '../selectors' -import { - CreateDeckFixtureAction, - DeleteDeckFixtureAction, - ToggleIsGripperRequiredAction, -} from '../actions/additionalItems' import { createPresavedStepForm, getDeckItemIdInSlot, @@ -70,6 +48,30 @@ import { getUnoccupiedSlotForMoveableTrash, } from '../utils' +import type { Reducer } from 'redux' +import type { + NormalizedAdditionalEquipmentById, + NormalizedPipetteById, +} from '@opentrons/step-generation' +import type { + LoadLabwareCreateCommand, + LoadModuleCreateCommand, + LoadPipetteCreateCommand, + MoveLabwareCreateCommand, + MoveToAddressableAreaCreateCommand, + MoveToAddressableAreaForDropTipCreateCommand, + PipetteName, + AddressableAreaName, +} from '@opentrons/shared-data' +import type { RootState as LabwareDefsRootState } from '../../labware-defs' +import type { LoadFileAction } from '../../load-file' +import type { SaveStepFormAction } from '../../ui/steps/actions/thunks' +import type { ReplaceCustomLabwareDef } from '../../labware-defs/actions' +import type { + CreateDeckFixtureAction, + DeleteDeckFixtureAction, + ToggleIsGripperRequiredAction, +} from '../actions/additionalItems' import type { CreateModuleAction, CreatePipettesAction, @@ -1353,10 +1355,9 @@ export const additionalEquipmentInvariantProperties = handleActions { const stagingAreaId = `${uuid()}:stagingArea` @@ -1460,7 +1463,6 @@ export const additionalEquipmentInvariantProperties = handleActions = (args: { action: A state: S diff --git a/protocol-designer/src/step-forms/selectors/index.ts b/protocol-designer/src/step-forms/selectors/index.ts index 3e3cb161f81..372ea86f0a2 100644 --- a/protocol-designer/src/step-forms/selectors/index.ts +++ b/protocol-designer/src/step-forms/selectors/index.ts @@ -2,7 +2,7 @@ import isEqual from 'lodash/isEqual' import mapValues from 'lodash/mapValues' import reduce from 'lodash/reduce' import isEmpty from 'lodash/isEmpty' -import { createSelector, Selector } from 'reselect' +import { createSelector } from 'reselect' import { getLabwareDisplayName, getLabwareDefURI, @@ -10,53 +10,51 @@ import { TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, - PipetteName, MAGNETIC_BLOCK_TYPE, getPipetteSpecsV2, - LabwareDefinition2, } from '@opentrons/shared-data' -import { - AdditionalEquipmentEntities, - NormalizedAdditionalEquipmentById, - TEMPERATURE_DEACTIVATED, -} from '@opentrons/step-generation' +import { TEMPERATURE_DEACTIVATED } from '@opentrons/step-generation' + import { INITIAL_DECK_SETUP_STEP_ID } from '../../constants' import { getFormWarnings, getFormErrors, stepFormToArgs, } from '../../steplist/formLevel' -import { - ProfileFormError, - getProfileFormErrors, -} from '../../steplist/formLevel/profileErrors' +import { getProfileFormErrors } from '../../steplist/formLevel/profileErrors' import { getMoveLabwareFormErrors } from '../../steplist/formLevel/moveLabwareFormErrors' import { getFieldErrors } from '../../steplist/fieldLevel' import { getProfileItemsHaveErrors } from '../utils/getProfileItemsHaveErrors' import * as featureFlagSelectors from '../../feature-flags/selectors' import { denormalizePipetteEntities, getHydratedForm } from '../utils' -import { - selectors as labwareDefSelectors, - LabwareDefByDefURI, -} from '../../labware-defs' -import { InstrumentGroup } from '@opentrons/components' -import type { - DropdownOption, - Mount, - InstrumentInfoProps, -} from '@opentrons/components' +import { selectors as labwareDefSelectors } from '../../labware-defs' +import type { Selector } from 'reselect' import type { + AdditionalEquipmentEntities, + NormalizedAdditionalEquipmentById, InvariantContext, LabwareEntity, LabwareEntities, ModuleEntities, PipetteEntities, } from '@opentrons/step-generation' +import type { PipetteName, LabwareDefinition2 } from '@opentrons/shared-data' +import type { + InstrumentGroup, + DropdownOption, + Mount, + InstrumentInfoProps, +} from '@opentrons/components' +import type { ProfileFormError } from '../../steplist/formLevel/profileErrors' +import type { LabwareDefByDefURI } from '../../labware-defs' import type { FormWarning } from '../../steplist/formLevel' -import { BaseState, DeckSlot } from '../../types' -import { FormData, StepIdType } from '../../form-types' -import { StepArgsAndErrorsById, StepFormErrors } from '../../steplist/types' -import { +import type { BaseState, DeckSlot } from '../../types' +import type { FormData, StepIdType } from '../../form-types' +import type { + StepArgsAndErrorsById, + StepFormErrors, +} from '../../steplist/types' +import type { InitialDeckSetup, NormalizedLabwareById, NormalizedLabware, @@ -71,7 +69,7 @@ import { HeaterShakerModuleState, MagneticBlockState, } from '../types' -import { +import type { PresavedStepFormState, RootState, SavedStepFormState, diff --git a/protocol-designer/src/step-forms/test/createPresavedStepForm.test.ts b/protocol-designer/src/step-forms/test/createPresavedStepForm.test.ts index 11b93d8dbc6..f7e37d2e467 100644 --- a/protocol-designer/src/step-forms/test/createPresavedStepForm.test.ts +++ b/protocol-designer/src/step-forms/test/createPresavedStepForm.test.ts @@ -192,6 +192,7 @@ describe('createPresavedStepForm', () => { dispense_x_position: 0, dispense_y_position: 0, blowout_z_offset: 0, + blowout_flowRate: null, }) }) describe('mix step', () => { @@ -228,6 +229,7 @@ describe('createPresavedStepForm', () => { aspirate_flowRate: null, dispense_flowRate: null, tipRack: null, + blowout_flowRate: null, }) }) }) diff --git a/protocol-designer/src/step-forms/types.ts b/protocol-designer/src/step-forms/types.ts index 24dee9b0c46..bffcda77c79 100644 --- a/protocol-designer/src/step-forms/types.ts +++ b/protocol-designer/src/step-forms/types.ts @@ -1,5 +1,5 @@ -import { Mount } from '@opentrons/components' -import { +import type { Mount } from '@opentrons/components' +import type { ModuleType, ModuleModel, MAGNETIC_MODULE_TYPE, @@ -9,9 +9,9 @@ import { MAGNETIC_BLOCK_TYPE, NozzleConfigurationStyle, } from '@opentrons/shared-data' -import { DeckSlot } from '../types' +import type { DeckSlot } from '../types' -import { +import type { TemperatureStatus, ModuleEntity, PipetteEntity, diff --git a/protocol-designer/src/step-forms/utils/createInitialProfileItems.ts b/protocol-designer/src/step-forms/utils/createInitialProfileItems.ts index 70a05f33774..3b072cdc470 100644 --- a/protocol-designer/src/step-forms/utils/createInitialProfileItems.ts +++ b/protocol-designer/src/step-forms/utils/createInitialProfileItems.ts @@ -1,9 +1,5 @@ -import { - PROFILE_CYCLE, - PROFILE_STEP, - ProfileStepItem, - ProfileCycleItem, -} from '../../form-types' +import { PROFILE_CYCLE, PROFILE_STEP } from '../../form-types' +import type { ProfileStepItem, ProfileCycleItem } from '../../form-types' export const createInitialProfileStep = (id: string): ProfileStepItem => ({ type: PROFILE_STEP, id, diff --git a/protocol-designer/src/step-forms/utils/createPresavedStepForm.ts b/protocol-designer/src/step-forms/utils/createPresavedStepForm.ts index 1ebfca8bf0c..387a3068a18 100644 --- a/protocol-designer/src/step-forms/utils/createPresavedStepForm.ts +++ b/protocol-designer/src/step-forms/utils/createPresavedStepForm.ts @@ -18,17 +18,17 @@ import { getMagnetLabwareEngageHeight, } from '../../ui/modules/utils' import { maskField } from '../../steplist/fieldLevel' -import { +import type { PipetteEntities, LabwareEntities, RobotState, Timeline, AdditionalEquipmentEntities, } from '@opentrons/step-generation' -import { FormData, StepType, StepIdType } from '../../form-types' -import { InitialDeckSetup } from '../types' -import { FormPatch } from '../../steplist/actions/types' -import { SavedStepFormState, OrderedStepIdsState } from '../reducers' +import type { FormData, StepType, StepIdType } from '../../form-types' +import type { InitialDeckSetup } from '../types' +import type { FormPatch } from '../../steplist/actions/types' +import type { SavedStepFormState, OrderedStepIdsState } from '../reducers' export interface CreatePresavedStepFormArgs { stepId: StepIdType stepType: StepType @@ -118,53 +118,6 @@ const _patchDefaultDropTipLocation = (args: { return null } -const _patchDefaultTiprack = (args: { - initialDeckSetup: InitialDeckSetup - labwareEntities: LabwareEntities - pipetteEntities: PipetteEntities - savedStepForms: SavedStepFormState - orderedStepIds: OrderedStepIdsState -}): FormUpdater => formData => { - const { - initialDeckSetup, - labwareEntities, - pipetteEntities, - savedStepForms, - orderedStepIds, - } = args - const labware = initialDeckSetup.labware - const tipRackIds = Object.values(labware) - .filter(lw => lw.def.parameters.isTiprack) - .map(lw => lw.id) - - const defaultPipetteId = getNextDefaultPipetteId( - savedStepForms, - orderedStepIds, - initialDeckSetup.pipettes - ) - - const pipetteFirstTiprackDefUri = - pipetteEntities[defaultPipetteId].tiprackDefURI[0] - const defaultTiprackId = tipRackIds.find(id => - id.includes(pipetteFirstTiprackDefUri) - ) - const formHasTipRackField = formData && 'tipRack' in formData - - if (formHasTipRackField && defaultTiprackId != null) { - const updatedFields = handleFormChange( - { - tipRack: defaultTiprackId, - }, - formData, - pipetteEntities, - labwareEntities - ) - return updatedFields - } - - return null -} - const _patchDefaultMagnetFields = (args: { initialDeckSetup: InitialDeckSetup orderedStepIds: OrderedStepIdsState @@ -320,14 +273,6 @@ export const createPresavedStepForm = ({ additionalEquipmentEntities, }) - const updateDefaultTipRack = _patchDefaultTiprack({ - initialDeckSetup, - labwareEntities, - orderedStepIds, - pipetteEntities, - savedStepForms, - }) - const updateDefaultPipette = _patchDefaultPipette({ initialDeckSetup, labwareEntities, @@ -368,7 +313,6 @@ export const createPresavedStepForm = ({ return [ updateDefaultPipette, updateDefaultDropTip, - updateDefaultTipRack, updateTemperatureModuleId, updateThermocyclerFields, updateHeaterShakerModuleId, diff --git a/protocol-designer/src/step-forms/utils/index.ts b/protocol-designer/src/step-forms/utils/index.ts index d9b2d108132..03cc9e9ba4e 100644 --- a/protocol-designer/src/step-forms/utils/index.ts +++ b/protocol-designer/src/step-forms/utils/index.ts @@ -12,8 +12,8 @@ import { } from '@opentrons/shared-data' import { SPAN7_8_10_11_SLOT, TC_SPAN_SLOTS } from '../../constants' import { hydrateField } from '../../steplist/fieldLevel' -import { LabwareDefByDefURI } from '../../labware-defs' import { getCutoutIdByAddressableArea } from '../../utils' +import type { LabwareDefByDefURI } from '../../labware-defs' import type { AddressableAreaName, CutoutId, diff --git a/protocol-designer/src/steplist/actions/actions.ts b/protocol-designer/src/steplist/actions/actions.ts index 7149e114059..2f5d3bdf9af 100644 --- a/protocol-designer/src/steplist/actions/actions.ts +++ b/protocol-designer/src/steplist/actions/actions.ts @@ -1,9 +1,9 @@ import { getOrderedStepIds } from '../../step-forms/selectors' import { getNextNonTerminalItemId } from '../utils' -import { ThunkAction } from '../../types' -import { StepIdType, FormData } from '../../form-types' -import { ChangeFormPayload } from './types' -import { +import type { ThunkAction } from '../../types' +import type { StepIdType, FormData } from '../../form-types' +import type { ChangeFormPayload } from './types' +import type { ClearSelectedItemAction, SelectMultipleStepsAction, } from '../../ui/steps' diff --git a/protocol-designer/src/steplist/actions/types.ts b/protocol-designer/src/steplist/actions/types.ts index 1e346c13764..b38a0eefa21 100644 --- a/protocol-designer/src/steplist/actions/types.ts +++ b/protocol-designer/src/steplist/actions/types.ts @@ -1,4 +1,4 @@ -import { StepFieldName } from '../fieldLevel' +import type { StepFieldName } from '../fieldLevel' export type FormPatch = Partial> // Update Form input (onChange on inputs) export interface ChangeFormPayload { diff --git a/protocol-designer/src/steplist/fieldLevel/index.ts b/protocol-designer/src/steplist/fieldLevel/index.ts index 15dd06279cf..b3551819fab 100644 --- a/protocol-designer/src/steplist/fieldLevel/index.ts +++ b/protocol-designer/src/steplist/fieldLevel/index.ts @@ -16,8 +16,6 @@ import { defaultTo, composeMaskers, trimDecimals, - ValueMasker, - ValueCaster, } from './processing' import { MIN_TEMP_MODULE_TEMP, @@ -37,7 +35,8 @@ import { MIN_TC_PROFILE_VOLUME, MAX_TC_PROFILE_VOLUME, } from '../../constants' -import { +import { getStagingAreaAddressableAreas } from '../../utils' +import type { LabwareEntity, PipetteEntity, InvariantContext, @@ -45,7 +44,7 @@ import { AdditionalEquipmentEntities, AdditionalEquipmentEntity, } from '@opentrons/step-generation' -import { getStagingAreaAddressableAreas } from '../../utils' +import type { ValueMasker, ValueCaster } from './processing' import type { StepFieldName } from '../../form-types' import type { AddressableAreaName, diff --git a/protocol-designer/src/steplist/formLevel/createBlankForm.ts b/protocol-designer/src/steplist/formLevel/createBlankForm.ts index f7fcd6a7743..c8e22a1fb88 100644 --- a/protocol-designer/src/steplist/formLevel/createBlankForm.ts +++ b/protocol-designer/src/steplist/formLevel/createBlankForm.ts @@ -1,5 +1,10 @@ import { getDefaultsForStepType } from './getDefaultsForStepType' -import { StepType, StepIdType, BlankForm, FormData } from '../../form-types' +import type { + StepType, + StepIdType, + BlankForm, + FormData, +} from '../../form-types' interface NewFormArgs { stepId: StepIdType stepType: StepType diff --git a/protocol-designer/src/steplist/formLevel/errors.ts b/protocol-designer/src/steplist/formLevel/errors.ts index 64aac638745..a9158bea010 100644 --- a/protocol-designer/src/steplist/formLevel/errors.ts +++ b/protocol-designer/src/steplist/formLevel/errors.ts @@ -1,4 +1,3 @@ -import * as React from 'react' import { getWellRatio } from '../utils' import { canPipetteUseLabware } from '../../utils' import { MAGNETIC_MODULE_V1, MAGNETIC_MODULE_V2 } from '@opentrons/shared-data' @@ -13,7 +12,8 @@ import { PAUSE_UNTIL_TEMP, THERMOCYCLER_PROFILE, } from '../../constants' -import { StepFieldName } from '../../form-types' +import type * as React from 'react' +import type { StepFieldName } from '../../form-types' import type { LabwareEntities } from '@opentrons/step-generation' /******************* ** Error Messages ** diff --git a/protocol-designer/src/steplist/formLevel/getDefaultsForStepType.ts b/protocol-designer/src/steplist/formLevel/getDefaultsForStepType.ts index b90eb6f028e..23ee6d1d5e3 100644 --- a/protocol-designer/src/steplist/formLevel/getDefaultsForStepType.ts +++ b/protocol-designer/src/steplist/formLevel/getDefaultsForStepType.ts @@ -6,7 +6,7 @@ import { DEFAULT_DELAY_SECONDS, DEFAULT_MM_BLOWOUT_OFFSET_FROM_TOP, } from '../../constants' -import { StepType, StepFieldName } from '../../form-types' +import type { StepType, StepFieldName } from '../../form-types' export function getDefaultsForStepType( stepType: StepType ): Record { @@ -41,6 +41,7 @@ export function getDefaultsForStepType( mix_x_position: 0, mix_y_position: 0, blowout_z_offset: DEFAULT_MM_BLOWOUT_OFFSET_FROM_TOP, + blowout_flowRate: null, } case 'moveLiquid': @@ -95,6 +96,7 @@ export function getDefaultsForStepType( aspirate_x_position: 0, aspirate_y_position: 0, blowout_z_offset: DEFAULT_MM_BLOWOUT_OFFSET_FROM_TOP, + blowout_flowRate: null, } case 'moveLabware': diff --git a/protocol-designer/src/steplist/formLevel/getNextDefaultEngageHeight/index.ts b/protocol-designer/src/steplist/formLevel/getNextDefaultEngageHeight/index.ts index 6220e92e875..5ffc41e7b62 100644 --- a/protocol-designer/src/steplist/formLevel/getNextDefaultEngageHeight/index.ts +++ b/protocol-designer/src/steplist/formLevel/getNextDefaultEngageHeight/index.ts @@ -1,5 +1,5 @@ import last from 'lodash/last' -import { StepIdType, FormData } from '../../../form-types' +import type { StepIdType, FormData } from '../../../form-types' export function getNextDefaultEngageHeight( savedForms: Record, orderedStepIds: StepIdType[] diff --git a/protocol-designer/src/steplist/formLevel/getNextDefaultMagnetAction/index.ts b/protocol-designer/src/steplist/formLevel/getNextDefaultMagnetAction/index.ts index 062c007fb86..ef0e2888b98 100644 --- a/protocol-designer/src/steplist/formLevel/getNextDefaultMagnetAction/index.ts +++ b/protocol-designer/src/steplist/formLevel/getNextDefaultMagnetAction/index.ts @@ -1,5 +1,5 @@ import last from 'lodash/last' -import { StepIdType, FormData, MagnetAction } from '../../../form-types' +import type { StepIdType, FormData, MagnetAction } from '../../../form-types' export function getNextDefaultMagnetAction( savedForms: Record, orderedStepIds: StepIdType[] diff --git a/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultTemperatureModuleId.ts b/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultTemperatureModuleId.ts index 6d24c6a0ca3..b727de28de5 100644 --- a/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultTemperatureModuleId.ts +++ b/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultTemperatureModuleId.ts @@ -1,7 +1,7 @@ import findKey from 'lodash/findKey' import { TEMPERATURE_MODULE_TYPE } from '@opentrons/shared-data' -import { ModuleOnDeck } from '../../../step-forms' -import { StepIdType, FormData } from '../../../form-types' +import type { ModuleOnDeck } from '../../../step-forms' +import type { StepIdType, FormData } from '../../../form-types' export function getNextDefaultTemperatureModuleId( savedForms: Record, orderedStepIds: StepIdType[], diff --git a/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultThermocyclerModuleId.ts b/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultThermocyclerModuleId.ts index 2064e2fc985..bf993d6d952 100644 --- a/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultThermocyclerModuleId.ts +++ b/protocol-designer/src/steplist/formLevel/getNextDefaultModuleId/getNextDefaultThermocyclerModuleId.ts @@ -1,6 +1,6 @@ import findKey from 'lodash/findKey' import { THERMOCYCLER_MODULE_TYPE } from '@opentrons/shared-data' -import { ModuleOnDeck } from '../../../step-forms' +import type { ModuleOnDeck } from '../../../step-forms' export function getNextDefaultThermocyclerModuleId( equippedModulesById: Record ): string | null { diff --git a/protocol-designer/src/steplist/formLevel/getNextDefaultPipetteId/index.ts b/protocol-designer/src/steplist/formLevel/getNextDefaultPipetteId/index.ts index d4880136bc3..2d8732efcd0 100644 --- a/protocol-designer/src/steplist/formLevel/getNextDefaultPipetteId/index.ts +++ b/protocol-designer/src/steplist/formLevel/getNextDefaultPipetteId/index.ts @@ -1,7 +1,7 @@ import findKey from 'lodash/findKey' import last from 'lodash/last' -import { PipetteOnDeck } from '../../../step-forms' -import { StepIdType, FormData } from '../../../form-types' +import type { PipetteOnDeck } from '../../../step-forms' +import type { StepIdType, FormData } from '../../../form-types' // TODO: Ian 2018-09-18 once we support switching pipettes mid-protocol, // this should use pipette state in RobotState, instead of pipettes/ selectors // (which represent initial pipette state, expected to be static across the timeline) diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateHeaterShaker.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateHeaterShaker.ts index 9931472ba43..3147357bf31 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateHeaterShaker.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateHeaterShaker.ts @@ -1,6 +1,6 @@ import { chainPatchUpdaters, fieldHasChanged } from './utils' -import { FormData } from '../../../form-types' -import { FormPatch } from '../../actions/types' +import type { FormData } from '../../../form-types' +import type { FormPatch } from '../../actions/types' const updatePatchOnSetShakeChange = ( patch: FormPatch, diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMagnet.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMagnet.ts index 035b77cd1cc..1b5ed50ef5c 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMagnet.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMagnet.ts @@ -1,8 +1,8 @@ import pick from 'lodash/pick' import { chainPatchUpdaters, fieldHasChanged } from './utils' import { getDefaultsForStepType } from '../getDefaultsForStepType' -import { FormData, StepFieldName } from '../../../form-types' -import { FormPatch } from '../../actions/types' +import type { FormData, StepFieldName } from '../../../form-types' +import type { FormPatch } from '../../actions/types' // TODO: Ian 2019-02-21 import this from a more central place - see #2926 const getDefaultFields = (...fields: StepFieldName[]): FormPatch => diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMoveLiquid.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMoveLiquid.ts index 86df6366716..7a493118348 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMoveLiquid.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateMoveLiquid.ts @@ -27,8 +27,8 @@ import type { LabwareEntities, PipetteEntities, } from '@opentrons/step-generation' -import { FormData, StepFieldName } from '../../../form-types' -import { FormPatch } from '../../actions/types' +import type { FormData, StepFieldName } from '../../../form-types' +import type { FormPatch } from '../../actions/types' // TODO: Ian 2019-02-21 import this from a more central place - see #2926 const getDefaultFields = (...fields: StepFieldName[]): FormPatch => diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdatePause.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdatePause.ts index 65fb9c4270d..902ec98309d 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdatePause.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdatePause.ts @@ -2,8 +2,8 @@ import pick from 'lodash/pick' import { chainPatchUpdaters, fieldHasChanged } from './utils' import { getDefaultsForStepType } from '../getDefaultsForStepType' -import { FormData, StepFieldName } from '../../../form-types' -import { FormPatch } from '../../actions/types' +import type { FormData, StepFieldName } from '../../../form-types' +import type { FormPatch } from '../../actions/types' // TODO: Ian 2019-02-21 import this from a more central place - see #2926 const getDefaultFields = (...fields: StepFieldName[]): FormPatch => diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateTemperature.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateTemperature.ts index d282b1d589c..fa8264edd93 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateTemperature.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateTemperature.ts @@ -1,8 +1,8 @@ import pick from 'lodash/pick' import { chainPatchUpdaters, fieldHasChanged } from './utils' import { getDefaultsForStepType } from '../getDefaultsForStepType' -import { FormData, StepFieldName } from '../../../form-types' -import { FormPatch } from '../../actions/types' +import type { FormData, StepFieldName } from '../../../form-types' +import type { FormPatch } from '../../actions/types' // TODO: Ian 2019-02-21 import this from a more central place - see #2926 const getDefaultFields = (...fields: StepFieldName[]): FormPatch => diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateThermocycler.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateThermocycler.ts index 507140fa64a..c0e315d19a6 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateThermocycler.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/dependentFieldsUpdateThermocycler.ts @@ -1,8 +1,8 @@ import pick from 'lodash/pick' import { chainPatchUpdaters, fieldHasChanged } from './utils' import { getDefaultsForStepType } from '../getDefaultsForStepType' -import { FormData, StepFieldName } from '../../../form-types' -import { FormPatch } from '../../actions/types' +import type { FormData, StepFieldName } from '../../../form-types' +import type { FormPatch } from '../../actions/types' // TODO: Ian 2019-02-21 import this from a more central place - see #2926 const getDefaultFields = (...fields: StepFieldName[]): FormPatch => diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/index.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/index.ts index ecdde16ede4..a86737aa037 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/index.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/index.ts @@ -5,9 +5,12 @@ import { dependentFieldsUpdatePause } from './dependentFieldsUpdatePause' import { dependentFieldsUpdateTemperature } from './dependentFieldsUpdateTemperature' import { dependentFieldsUpdateHeaterShaker } from './dependentFieldsUpdateHeaterShaker' import { dependentFieldsUpdateThermocycler } from './dependentFieldsUpdateThermocycler' -import { LabwareEntities, PipetteEntities } from '@opentrons/step-generation' -import { FormData } from '../../../form-types' -import { FormPatch } from '../../actions/types' +import type { + LabwareEntities, + PipetteEntities, +} from '@opentrons/step-generation' +import type { FormData } from '../../../form-types' +import type { FormPatch } from '../../actions/types' export function handleFormChange( patch: FormPatch, rawForm: FormData | null | undefined, diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/test/moveLiquid.test.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/test/moveLiquid.test.ts index 692ee51fe0d..7ac47b9695f 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/test/moveLiquid.test.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/test/moveLiquid.test.ts @@ -14,8 +14,8 @@ import { import { fixtureP10SingleV2Specs, fixtureP300SingleV2Specs, - LabwareDefinition2, } from '@opentrons/shared-data' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { PipetteEntities, LabwareEntities, diff --git a/protocol-designer/src/steplist/formLevel/handleFormChange/utils.ts b/protocol-designer/src/steplist/formLevel/handleFormChange/utils.ts index 4ec62eb354d..fe5e82ff767 100644 --- a/protocol-designer/src/steplist/formLevel/handleFormChange/utils.ts +++ b/protocol-designer/src/steplist/formLevel/handleFormChange/utils.ts @@ -2,10 +2,16 @@ import round from 'lodash/round' import uniq from 'lodash/uniq' import { getWellSetForMultichannel, canPipetteUseLabware } from '../../../utils' import { getPipetteCapacity } from '../../../pipettes/pipetteData' -import { LabwareDefinition2, PipetteChannels } from '@opentrons/shared-data' -import { LabwareEntities, PipetteEntities } from '@opentrons/step-generation' -import { FormPatch } from '../../actions/types' -import { FormData, PathOption, StepFieldName } from '../../../form-types' +import type { + LabwareDefinition2, + PipetteChannels, +} from '@opentrons/shared-data' +import type { + LabwareEntities, + PipetteEntities, +} from '@opentrons/step-generation' +import type { FormPatch } from '../../actions/types' +import type { FormData, PathOption, StepFieldName } from '../../../form-types' export function chainPatchUpdaters( initialPatch: FormPatch, fns: Array<(arg0: FormPatch) => FormPatch> diff --git a/protocol-designer/src/steplist/formLevel/index.ts b/protocol-designer/src/steplist/formLevel/index.ts index 6f003bdc77e..efa9334315e 100644 --- a/protocol-designer/src/steplist/formLevel/index.ts +++ b/protocol-designer/src/steplist/formLevel/index.ts @@ -1,5 +1,4 @@ import { - FormError, composeErrors, incompatibleAspirateLabware, incompatibleDispenseLabware, @@ -21,8 +20,6 @@ import { } from './errors' import { - FormWarning, - FormWarningType, composeWarnings, belowPipetteMinimumVolume, maxDispenseWellVolume, @@ -33,7 +30,9 @@ import { tipPositionInTube, } from './warnings' -import { HydratedFormdata, StepType } from '../../form-types' +import type { FormWarning, FormWarningType } from './warnings' +import type { HydratedFormdata, StepType } from '../../form-types' +import type { FormError } from './errors' export { handleFormChange } from './handleFormChange' export { createBlankForm } from './createBlankForm' export { getDefaultsForStepType } from './getDefaultsForStepType' diff --git a/protocol-designer/src/steplist/formLevel/profileErrors.ts b/protocol-designer/src/steplist/formLevel/profileErrors.ts index 908dcbe86d6..8c7b9f3aeba 100644 --- a/protocol-designer/src/steplist/formLevel/profileErrors.ts +++ b/protocol-designer/src/steplist/formLevel/profileErrors.ts @@ -1,6 +1,7 @@ import uniqBy from 'lodash/uniqBy' import { THERMOCYCLER_PROFILE } from '../../constants' -import { PROFILE_STEP, ProfileStepItem } from '../../form-types' +import { PROFILE_STEP } from '../../form-types' +import type { ProfileStepItem } from '../../form-types' // TODO: real HydratedFormData type type HydratedFormData = any diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/getDelayData.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/getDelayData.ts index fe7911e5e6e..061dab8fe3a 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/getDelayData.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/getDelayData.ts @@ -1,6 +1,6 @@ -import { InnerDelayArgs } from '@opentrons/step-generation' import { getDefaultMmFromBottom } from '../../../components/StepEditForm/fields/TipPositionField/utils' -import { +import type { InnerDelayArgs } from '@opentrons/step-generation' +import type { DelayCheckboxFields, DelaySecondFields, HydratedMoveLiquidFormData, diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/heaterShakerFormToArgs.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/heaterShakerFormToArgs.ts index e951c626db3..8366864f190 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/heaterShakerFormToArgs.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/heaterShakerFormToArgs.ts @@ -1,4 +1,4 @@ -import { HeaterShakerArgs } from '@opentrons/step-generation' +import type { HeaterShakerArgs } from '@opentrons/step-generation' import type { HydratedHeaterShakerFormData } from '../../../form-types' export const heaterShakerFormToArgs = ( diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/index.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/index.ts index 8923c6bca8c..5c4eb608055 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/index.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/index.ts @@ -1,5 +1,4 @@ import mapValues from 'lodash/mapValues' -import { CommandCreatorArgs } from '@opentrons/step-generation' import { castField } from '../../../steplist/fieldLevel' import { mixFormToArgs } from './mixFormToArgs' import { pauseFormToArgs } from './pauseFormToArgs' @@ -9,6 +8,7 @@ import { thermocyclerFormToArgs } from './thermocyclerFormToArgs' import { heaterShakerFormToArgs } from './heaterShakerFormToArgs' import { moveLiquidFormToArgs } from './moveLiquidFormToArgs' import { moveLabwareFormToArgs } from './moveLabwareFormToArgs' +import type { CommandCreatorArgs } from '@opentrons/step-generation' import type { FormData } from '../../../form-types' // NOTE: this acts as an adapter for the PD defined data shape of the step forms // to create arguments that the step generation service is expecting diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/magnetFormToArgs.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/magnetFormToArgs.ts index 4c20f5c8de2..e9ce7ec546d 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/magnetFormToArgs.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/magnetFormToArgs.ts @@ -1,8 +1,8 @@ -import { +import type { EngageMagnetArgs, DisengageMagnetArgs, } from '@opentrons/step-generation' -import { HydratedMagnetFormData } from '../../../form-types' +import type { HydratedMagnetFormData } from '../../../form-types' type MagnetArgs = EngageMagnetArgs | DisengageMagnetArgs export const magnetFormToArgs = ( hydratedFormData: HydratedMagnetFormData diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/mixFormToArgs.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/mixFormToArgs.ts index d28f6dc42df..17b1125c763 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/mixFormToArgs.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/mixFormToArgs.ts @@ -8,9 +8,9 @@ import { } from '../../../constants' import { getOrderedWells } from '../../utils' import { getMixDelayData } from './getDelayData' -import { HydratedMixFormDataLegacy } from '../../../form-types' -import { MixArgs } from '@opentrons/step-generation' import { getMatchingTipLiquidSpecs } from '../../../utils' +import type { HydratedMixFormDataLegacy } from '../../../form-types' +import type { MixArgs } from '@opentrons/step-generation' type MixStepArgs = MixArgs export const mixFormToArgs = ( hydratedFormData: HydratedMixFormDataLegacy @@ -70,7 +70,7 @@ export const mixFormToArgs = ( : null // Blowout settings const blowoutFlowRateUlSec = - hydratedFormData.dispense_flowRate ?? + hydratedFormData.blowout_flowRate ?? matchingTipLiquidSpecs?.defaultBlowOutFlowRate.default const blowoutOffsetFromTopMm = blowoutLocation diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/moveLiquidFormToArgs.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/moveLiquidFormToArgs.ts index 05910f13332..c9d83e49b02 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/moveLiquidFormToArgs.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/moveLiquidFormToArgs.ts @@ -1,4 +1,4 @@ -import { getWellsDepth, LabwareDefinition2 } from '@opentrons/shared-data' +import { getWellsDepth } from '@opentrons/shared-data' import { DEST_WELL_BLOWOUT_DESTINATION } from '@opentrons/step-generation' import { DEFAULT_MM_FROM_BOTTOM_ASPIRATE, @@ -8,14 +8,15 @@ import { } from '../../../constants' import { getOrderedWells } from '../../utils' import { getMoveLiquidDelayData } from './getDelayData' -import { HydratedMoveLiquidFormData } from '../../../form-types' +import { getMatchingTipLiquidSpecs } from '../../../utils' import type { ConsolidateArgs, DistributeArgs, TransferArgs, InnerMixArgs, } from '@opentrons/step-generation' -import { getMatchingTipLiquidSpecs } from '../../../utils' +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { HydratedMoveLiquidFormData } from '../../../form-types' type MoveLiquidFields = HydratedMoveLiquidFormData['fields'] // NOTE(sa, 2020-08-11): leaving this as fn so it can be expanded later for dispense air gap @@ -202,7 +203,7 @@ export const moveLiquidFormToArgs = ( dispenseOffsetFromBottomMm: fields.dispense_mmFromBottom || DEFAULT_MM_FROM_BOTTOM_DISPENSE, blowoutFlowRateUlSec: - fields.dispense_flowRate || + fields.blowout_flowRate || matchingTipLiquidSpecs.defaultBlowOutFlowRate.default, blowoutOffsetFromTopMm, changeTip: fields.changeTip, diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/pauseFormToArgs.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/pauseFormToArgs.ts index 801dcfbe1ea..1baea445994 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/pauseFormToArgs.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/pauseFormToArgs.ts @@ -3,7 +3,7 @@ import { PAUSE_UNTIL_TEMP, PAUSE_UNTIL_RESUME, } from '../../../constants' -import { FormData } from '../../../form-types' +import type { FormData } from '../../../form-types' import type { WaitForTemperatureArgs, PauseArgs, diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/temperatureFormToArgs.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/temperatureFormToArgs.ts index 3ac49ad5e5a..72f00317413 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/temperatureFormToArgs.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/temperatureFormToArgs.ts @@ -1,8 +1,8 @@ -import { +import type { SetTemperatureArgs, DeactivateTemperatureArgs, } from '@opentrons/step-generation' -import { HydratedTemperatureFormData } from '../../../form-types' +import type { HydratedTemperatureFormData } from '../../../form-types' type TemperatureArgs = SetTemperatureArgs | DeactivateTemperatureArgs export const temperatureFormToArgs = ( hydratedFormData: HydratedTemperatureFormData diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/pauseFormToArgs.test.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/pauseFormToArgs.test.ts index 1014c1a611d..fe9665e477c 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/pauseFormToArgs.test.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/pauseFormToArgs.test.ts @@ -4,8 +4,8 @@ import { PAUSE_UNTIL_RESUME, PAUSE_UNTIL_TIME, } from '../../../../constants' -import { FormData } from '../../../../form-types' import { pauseFormToArgs } from '../pauseFormToArgs' +import type { FormData } from '../../../../form-types' describe('pauseFormToArgs', () => { it('returns waitForTemperature command creator when form specifies pause until temp', () => { diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/stepFormToArgs.test.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/stepFormToArgs.test.ts index 8a03c718ba9..05557b3d1b7 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/stepFormToArgs.test.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/stepFormToArgs.test.ts @@ -1,6 +1,6 @@ import { describe, it, expect } from 'vitest' import { _castForm } from '../index' -import { FormData } from '../../../../form-types' +import type { FormData } from '../../../../form-types' // NOTE(IL, 2020-09-24): I think the real solution to validating the // output of hydration/casting is static typing as per #3161 diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/thermocyclerFormToArgs.test.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/thermocyclerFormToArgs.test.ts index 8d26e5780c0..f5af393e50e 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/thermocyclerFormToArgs.test.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/test/thermocyclerFormToArgs.test.ts @@ -2,11 +2,11 @@ import { describe, it, expect } from 'vitest' import { THERMOCYCLER_PROFILE, THERMOCYCLER_STATE } from '../../../../constants' import { getDefaultsForStepType } from '../../getDefaultsForStepType' import { thermocyclerFormToArgs } from '../thermocyclerFormToArgs' -import { FormData } from '../../../../form-types' import type { ThermocyclerStateStepArgs, ThermocyclerProfileStepArgs, } from '@opentrons/step-generation' +import type { FormData } from '../../../../form-types' const tcModuleId = 'tcModuleId' describe('thermocyclerFormToArgs', () => { diff --git a/protocol-designer/src/steplist/formLevel/stepFormToArgs/thermocyclerFormToArgs.ts b/protocol-designer/src/steplist/formLevel/stepFormToArgs/thermocyclerFormToArgs.ts index aedcfa1bbb0..9a6e3b52915 100644 --- a/protocol-designer/src/steplist/formLevel/stepFormToArgs/thermocyclerFormToArgs.ts +++ b/protocol-designer/src/steplist/formLevel/stepFormToArgs/thermocyclerFormToArgs.ts @@ -1,9 +1,9 @@ import { THERMOCYCLER_STATE, THERMOCYCLER_PROFILE } from '../../../constants' -import { +import { PROFILE_STEP } from '../../../form-types' +import type { ThermocyclerProfileStepArgs, ThermocyclerStateStepArgs, } from '@opentrons/step-generation' -import { PROFILE_STEP } from '../../../form-types' import type { FormData, ProfileItem, diff --git a/protocol-designer/src/steplist/formLevel/test/getDefaultsForStepType.test.ts b/protocol-designer/src/steplist/formLevel/test/getDefaultsForStepType.test.ts index 081d7809566..2d2d1fa5e25 100644 --- a/protocol-designer/src/steplist/formLevel/test/getDefaultsForStepType.test.ts +++ b/protocol-designer/src/steplist/formLevel/test/getDefaultsForStepType.test.ts @@ -52,6 +52,7 @@ describe('getDefaultsForStepType', () => { blowout_checkbox: false, blowout_location: null, + blowout_flowRate: null, preWetTip: false, aspirate_airGap_checkbox: false, @@ -87,6 +88,7 @@ describe('getDefaultsForStepType', () => { mix_wellOrder_second: DEFAULT_WELL_ORDER_SECOND_OPTION, blowout_checkbox: false, blowout_location: null, + blowout_flowRate: null, mix_mmFromBottom: DEFAULT_MM_FROM_BOTTOM_DISPENSE, mix_touchTip_mmFromBottom: null, mix_touchTip_checkbox: false, diff --git a/protocol-designer/src/steplist/formLevel/warnings.tsx b/protocol-designer/src/steplist/formLevel/warnings.tsx index f19527d72f1..ef01d75d917 100644 --- a/protocol-designer/src/steplist/formLevel/warnings.tsx +++ b/protocol-designer/src/steplist/formLevel/warnings.tsx @@ -62,14 +62,14 @@ const belowMinDisposalVolumeWarning = (min: number): FormWarning => ({ const tipPositionedLowInTube = (): FormWarning => ({ type: 'TIP_POSITIONED_LOW_IN_TUBE', title: - 'A tuberack has an aspirate and dispense default height at 1mm and 0.5mm from the bottom of the well, which could cause liquid overflow or pipette damage. Edit tip position in advanced settings.', + 'A tuberack has an aspirate and dispense default height at 1mm from the bottom of the well, which could cause liquid overflow or pipette damage. Edit tip position in advanced settings.', dependentFields: ['aspirate_labware', 'dispense_labware'], }) const mixTipPositionedLowInTube = (): FormWarning => ({ type: 'MIX_TIP_POSITIONED_LOW_IN_TUBE', title: - 'The default mix height is 0.5mm from the bottom of the well, which could cause liquid overflow or pipette damage. Edit tip position in advanced settings.', + 'The default mix height is 1mm from the bottom of the well, which could cause liquid overflow or pipette damage. Edit tip position in advanced settings.', dependentFields: ['labware'], }) diff --git a/protocol-designer/src/steplist/generateSubstepItem.ts b/protocol-designer/src/steplist/generateSubstepItem.ts index edfac2fd19e..94fd68d77d2 100644 --- a/protocol-designer/src/steplist/generateSubstepItem.ts +++ b/protocol-designer/src/steplist/generateSubstepItem.ts @@ -21,8 +21,8 @@ import type { MixArgs, TransferArgs, } from '@opentrons/step-generation' -import { StepIdType } from '../form-types' -import { +import type { StepIdType } from '../form-types' +import type { NamedIngred, StepArgsAndErrors, StepItemSourceDestRow, @@ -112,8 +112,12 @@ export const mergeSubstepRowsSingleChannel = (args: { showDispenseVol: boolean }): StepItemSourceDestRow[] => { const { substepRows, showDispenseVol } = args + // TODO(jr, 5/2/24): filtering out air gap steps for now since a refactor would be required + // to figure out if the air gap is for the aspirate or dispense labware. Otherwise, a white screen + // was happening with an air gap step trying to happen in an aspirate labware well that did not exist + const filteredSubstepRows = substepRows.filter(row => !row.isAirGap) return steplistUtils.mergeWhen( - substepRows, + filteredSubstepRows, ( currentRow, nextRow // NOTE: if aspirate then dispense rows are adjacent, collapse them into one row @@ -160,8 +164,12 @@ export const mergeSubstepRowsMultiChannel = (args: { showDispenseVol: boolean }): StepItemSourceDestRow[][] => { const { substepRows, channels, isMixStep, showDispenseVol } = args + // TODO(jr, 5/2/24): filtering out air gap steps for now since a refactor would be required + // to figure out if the air gap is for the aspirate or dispense labware. Otherwise, a white screen + // was happening with an air gap step trying to happen in an aspirate labware well that did not exist + const filteredSubstepRows = substepRows.filter(row => !row.isAirGap) return steplistUtils.mergeWhen( - substepRows, + filteredSubstepRows, ( currentMultiRow: SubstepTimelineFrame, nextMultiRow: SubstepTimelineFrame diff --git a/protocol-designer/src/steplist/index.ts b/protocol-designer/src/steplist/index.ts index cc218970675..9b2bee3b3ad 100644 --- a/protocol-designer/src/steplist/index.ts +++ b/protocol-designer/src/steplist/index.ts @@ -2,11 +2,8 @@ import * as actions from './actions' import * as utils from './utils' import { getFieldErrors, castField, maskField } from './fieldLevel' -import { - getDefaultsForStepType, - FormWarning, - FormWarningType, -} from './formLevel' +import { getDefaultsForStepType } from './formLevel' +import type { FormWarning, FormWarningType } from './formLevel' export * from './types' export type { FormWarning, FormWarningType } export { diff --git a/protocol-designer/src/steplist/substepTimeline.ts b/protocol-designer/src/steplist/substepTimeline.ts index 19971df04fc..0788acbde6f 100644 --- a/protocol-designer/src/steplist/substepTimeline.ts +++ b/protocol-designer/src/steplist/substepTimeline.ts @@ -5,16 +5,18 @@ import { getNextRobotStateAndWarningsSingleCommand, } from '@opentrons/step-generation' import { - AddressableAreaName, FLEX_ROBOT_TYPE, ALL, COLUMN, - CreateCommand, OT2_ROBOT_TYPE, - NozzleConfigurationStyle, } from '@opentrons/shared-data' -import { Channels } from '@opentrons/components' import { getCutoutIdByAddressableArea } from '../utils' +import type { Channels } from '@opentrons/components' +import type { + AddressableAreaName, + CreateCommand, + NozzleConfigurationStyle, +} from '@opentrons/shared-data' import type { CommandCreatorError, CommandsAndWarnings, @@ -64,11 +66,23 @@ const _createNextTimelineFrame = (args: { volume: args.volume, activeTips: _getNewActiveTips(args.nextFrame.commands.slice(0, args.index)), } + const command = args.command + const isAirGapCommand = + 'meta' in command && command.meta != null && 'isAirGap' in command.meta + const newTimelineFrame = args.command.commandType === 'aspirate' || args.command.commandType === 'aspirateInPlace' - ? { ..._newTimelineFrameKeys, source: args.wellInfo } - : { ..._newTimelineFrameKeys, dest: args.wellInfo } + ? { + ..._newTimelineFrameKeys, + source: args.wellInfo, + isAirGap: isAirGapCommand, + } + : { + ..._newTimelineFrameKeys, + dest: args.wellInfo, + isAirGap: isAirGapCommand, + } return newTimelineFrame } diff --git a/protocol-designer/src/steplist/test/__snapshots__/mergeSubstepsFns.test.ts.snap b/protocol-designer/src/steplist/test/__snapshots__/mergeSubstepsFns.test.ts.snap index 77a3cc5bbb1..87122a8b5d0 100644 --- a/protocol-designer/src/steplist/test/__snapshots__/mergeSubstepsFns.test.ts.snap +++ b/protocol-designer/src/steplist/test/__snapshots__/mergeSubstepsFns.test.ts.snap @@ -1011,1015 +1011,3 @@ exports[`mergeSubstepRowsMultiChannel > mock transfer 1`] = ` ], ] `; - -exports[`mergeSubstepRowsMultiChannel mock consolidate 1`] = ` -Array [ - Array [ - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": Object { - "ingred1Id": 25, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "A1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": undefined, - "preIngreds": undefined, - "well": undefined, - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": undefined, - "preIngreds": undefined, - "well": undefined, - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": undefined, - "preIngreds": undefined, - "well": undefined, - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": undefined, - "preIngreds": undefined, - "well": undefined, - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": undefined, - "preIngreds": undefined, - "well": undefined, - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": undefined, - "preIngreds": undefined, - "well": undefined, - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": undefined, - "source": Object { - "postIngreds": undefined, - "preIngreds": undefined, - "well": undefined, - }, - "volume": 5, - }, - ], - Array [ - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "A12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "A2", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "B12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "B2", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "C12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "C2", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "D12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "D2", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "E12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "E2", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "F12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "F2", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "G12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "G2", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "H12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 31, - }, - "preIngreds": Object { - "ingred1Id": 36, - }, - "well": "H2", - }, - "volume": 5, - }, - ], -] -`; - -exports[`mergeSubstepRowsMultiChannel mock distribute 1`] = ` -Array [ - Array [ - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "A11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "A1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "B11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "B1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "C11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "C1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "D11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "D1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "E11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "E1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "F11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "F1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "G11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "G1", - }, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "H11", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "H1", - }, - "volume": 5, - }, - ], - Array [ - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "A12", - }, - "source": undefined, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "B12", - }, - "source": undefined, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "C12", - }, - "source": undefined, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "D12", - }, - "source": undefined, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "E12", - }, - "source": undefined, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "F12", - }, - "source": undefined, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "G12", - }, - "source": undefined, - "volume": 5, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 5, - }, - "preIngreds": Object {}, - "well": "H12", - }, - "source": undefined, - "volume": 5, - }, - ], -] -`; - -exports[`mergeSubstepRowsMultiChannel mock mix 1`] = ` -Array [ - Array [ - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "A1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "A1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "B1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "B1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "C1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "C1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "D1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "D1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "E1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "E1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "F1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "F1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "G1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "G1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "H1", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "H1", - }, - "volume": 10, - }, - ], -] -`; - -exports[`mergeSubstepRowsMultiChannel mock transfer 1`] = ` -Array [ - Array [ - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "A12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "A1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "B12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "B1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "C12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "C1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "D12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "D1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "E12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "E1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "F12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "F1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "G12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "G1", - }, - "volume": 10, - }, - Object { - "activeTips": Object { - "labware": "someTiprackId", - "well": "A6", - }, - "dest": Object { - "postIngreds": Object { - "ingred1Id": 10, - }, - "preIngreds": Object {}, - "well": "H12", - }, - "source": Object { - "postIngreds": Object { - "ingred1Id": 20, - }, - "preIngreds": Object { - "ingred1Id": 30, - }, - "well": "H1", - }, - "volume": 10, - }, - ], -] -`; diff --git a/protocol-designer/src/steplist/test/generateSubsteps.test.ts b/protocol-designer/src/steplist/test/generateSubsteps.test.ts index 1c2483e0487..194e3303442 100644 --- a/protocol-designer/src/steplist/test/generateSubsteps.test.ts +++ b/protocol-designer/src/steplist/test/generateSubsteps.test.ts @@ -4,9 +4,11 @@ import { makeContext, FIXED_TRASH_ID, } from '@opentrons/step-generation' +import { fixtureTiprack300ul, getLabwareDefURI } from '@opentrons/shared-data' import { THERMOCYCLER_STATE } from '../../constants' import { generateSubstepItem } from '../generateSubstepItem' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { RobotState, InvariantContext, @@ -181,7 +183,7 @@ describe('generateSubstepItem', () => { dispenseFlowRateUlSec: 5, dispenseOffsetFromBottomMm: 10, dropTipLocation: FIXED_TRASH_ID, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), } }) ;[ @@ -231,6 +233,7 @@ describe('generateSubstepItem', () => { preIngreds: {}, well: 'C1', }, + isAirGap: false, }, ], }, @@ -269,6 +272,7 @@ describe('generateSubstepItem', () => { preIngreds: {}, well: 'A1', }, + isAirGap: false, source: { postIngreds: {}, preIngreds: {}, @@ -323,6 +327,7 @@ describe('generateSubstepItem', () => { labwareId: tiprackId, wellName: 'A1', }, + isAirGap: false, source: { well: 'A1', preIngreds: {}, postIngreds: {} }, dest: { well: 'A1', @@ -343,6 +348,7 @@ describe('generateSubstepItem', () => { labwareId: tiprackId, wellName: 'A1', }, + isAirGap: false, dest: { postIngreds: { __air__: { @@ -400,7 +406,7 @@ describe('generateSubstepItem', () => { aspirateFlowRateUlSec: 5, dispenseFlowRateUlSec: 5, dropTipLocation: FIXED_TRASH_ID, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), }, // @ts-expect-error(sa, 2021-6-15): errors should be boolean typed errors: {}, @@ -434,6 +440,7 @@ describe('generateSubstepItem', () => { preIngreds: {}, well: 'A1', }, + isAirGap: false, source: { postIngreds: {}, preIngreds: {}, @@ -460,6 +467,7 @@ describe('generateSubstepItem', () => { }, well: 'A1', }, + isAirGap: false, source: { postIngreds: { __air__: { @@ -490,6 +498,7 @@ describe('generateSubstepItem', () => { preIngreds: {}, well: 'A2', }, + isAirGap: false, source: { postIngreds: {}, preIngreds: {}, @@ -516,6 +525,7 @@ describe('generateSubstepItem', () => { }, well: 'A2', }, + isAirGap: false, source: { postIngreds: { __air__: { diff --git a/protocol-designer/src/steplist/types.ts b/protocol-designer/src/steplist/types.ts index 297c13e7194..f762d348847 100644 --- a/protocol-designer/src/steplist/types.ts +++ b/protocol-designer/src/steplist/types.ts @@ -1,5 +1,5 @@ -import { THERMOCYCLER_PROFILE, THERMOCYCLER_STATE } from '../constants' -import { +import type { THERMOCYCLER_PROFILE, THERMOCYCLER_STATE } from '../constants' +import type { CommandCreatorArgs, MoveLabwareArgs, PauseArgs, @@ -48,6 +48,7 @@ export interface SourceDestData { postIngreds: WellIngredientVolumeData } export interface SubstepTimelineFrame { + isAirGap?: boolean substepIndex?: number activeTips: TipLocation | null | undefined source?: SourceDestData diff --git a/protocol-designer/src/steplist/utils/index.ts b/protocol-designer/src/steplist/utils/index.ts index 17c5360f486..a2701772355 100644 --- a/protocol-designer/src/steplist/utils/index.ts +++ b/protocol-designer/src/steplist/utils/index.ts @@ -1,6 +1,6 @@ import { mergeWhen } from './mergeWhen' import { getOrderedWells } from './orderWells' -import { StepIdType } from '../../form-types' +import type { StepIdType } from '../../form-types' export { mergeWhen, getOrderedWells } export type WellRatio = 'n:n' | '1:many' | 'many:1' diff --git a/protocol-designer/src/steplist/utils/orderWells.ts b/protocol-designer/src/steplist/utils/orderWells.ts index ab4db8e4faf..130d284741d 100644 --- a/protocol-designer/src/steplist/utils/orderWells.ts +++ b/protocol-designer/src/steplist/utils/orderWells.ts @@ -1,6 +1,7 @@ import intersection from 'lodash/intersection' -import { LabwareDefinition2, orderWells } from '@opentrons/shared-data' -import { WellOrderOption } from '../../form-types' +import { orderWells } from '@opentrons/shared-data' +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { WellOrderOption } from '../../form-types' export function getOrderedWells( unorderedWells: string[], labwareDef: LabwareDefinition2, diff --git a/protocol-designer/src/timelineMiddleware/__tests__/generateRobotStateTimeline.test.ts b/protocol-designer/src/timelineMiddleware/__tests__/generateRobotStateTimeline.test.ts index 1717dc838cb..7379e30bd52 100644 --- a/protocol-designer/src/timelineMiddleware/__tests__/generateRobotStateTimeline.test.ts +++ b/protocol-designer/src/timelineMiddleware/__tests__/generateRobotStateTimeline.test.ts @@ -8,7 +8,9 @@ import { DEST_LABWARE, FIXED_TRASH_ID, } from '@opentrons/step-generation' +import { fixtureTiprack300ul, getLabwareDefURI } from '@opentrons/shared-data' import { generateRobotStateTimeline } from '../generateRobotStateTimeline' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { StepArgsAndErrorsById } from '../../steplist' vi.mock('../../labware-defs/utils') @@ -49,7 +51,7 @@ describe('generateRobotStateTimeline', () => { mixBeforeAspirate: null, description: null, nozzles: null, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), aspirateXOffset: 0, aspirateYOffset: 0, dispenseXOffset: 0, @@ -89,7 +91,7 @@ describe('generateRobotStateTimeline', () => { mixBeforeAspirate: null, description: null, nozzles: null, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), aspirateXOffset: 0, aspirateYOffset: 0, dispenseXOffset: 0, @@ -121,7 +123,7 @@ describe('generateRobotStateTimeline', () => { aspirateDelaySeconds: null, dispenseDelaySeconds: null, nozzles: null, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), aspirateXOffset: 0, aspirateYOffset: 0, dispenseXOffset: 0, diff --git a/protocol-designer/src/timelineMiddleware/generateSubsteps.ts b/protocol-designer/src/timelineMiddleware/generateSubsteps.ts index 005d1c7a90c..8b8c20af69c 100644 --- a/protocol-designer/src/timelineMiddleware/generateSubsteps.ts +++ b/protocol-designer/src/timelineMiddleware/generateSubsteps.ts @@ -1,10 +1,10 @@ -import { +import { generateSubstepItem } from '../steplist/generateSubstepItem' +import type { Timeline, RobotState, InvariantContext, } from '@opentrons/step-generation' -import { generateSubstepItem } from '../steplist/generateSubstepItem' -import { +import type { LabwareNamesByModuleId, StepArgsAndErrorsById, Substeps, diff --git a/protocol-designer/src/timelineMiddleware/makeTimelineMiddleware.ts b/protocol-designer/src/timelineMiddleware/makeTimelineMiddleware.ts index 9d9d2f399a9..894469d0a70 100644 --- a/protocol-designer/src/timelineMiddleware/makeTimelineMiddleware.ts +++ b/protocol-designer/src/timelineMiddleware/makeTimelineMiddleware.ts @@ -1,3 +1,4 @@ +import isEqual from 'lodash/isEqual' import { getArgsAndErrorsByStepId, getOrderedStepIds, @@ -7,13 +8,13 @@ import { getInitialRobotState } from '../file-data/selectors' import { computeRobotStateTimelineRequest, computeRobotStateTimelineSuccess, - ComputeRobotStateTimelineSuccessAction, } from '../file-data/actions' import { getLabwareNamesByModuleId } from '../ui/modules/selectors' -import { Middleware } from 'redux' -import { BaseState } from '../types' -import { GenerateRobotStateTimelineArgs } from './generateRobotStateTimeline' -import { SubstepsArgsNoTimeline } from './types' +import type { ComputeRobotStateTimelineSuccessAction } from '../file-data/actions' +import type { Middleware } from 'redux' +import type { BaseState } from '../types' +import type { GenerateRobotStateTimelineArgs } from './generateRobotStateTimeline' +import type { SubstepsArgsNoTimeline } from './types' const hasChanged = ( nextValues: { [key in any]?: any }, @@ -21,7 +22,7 @@ const hasChanged = ( ): boolean => Object.keys(nextValues).some( (selectorKey: string) => - nextValues[selectorKey] !== memoizedValues?.[selectorKey] + !isEqual(nextValues[selectorKey], memoizedValues?.[selectorKey]) ) const getTimelineArgs = (state: BaseState): GenerateRobotStateTimelineArgs => ({ diff --git a/protocol-designer/src/timelineMiddleware/types.ts b/protocol-designer/src/timelineMiddleware/types.ts index 443c40bd6a3..758daabe263 100644 --- a/protocol-designer/src/timelineMiddleware/types.ts +++ b/protocol-designer/src/timelineMiddleware/types.ts @@ -1,7 +1,7 @@ -import { Timeline } from '@opentrons/step-generation' -import { Substeps } from '../steplist/types' -import { GenerateRobotStateTimelineArgs } from './generateRobotStateTimeline' -import { GenerateSubstepsArgs } from './generateSubsteps' +import type { Timeline } from '@opentrons/step-generation' +import type { Substeps } from '../steplist/types' +import type { GenerateRobotStateTimelineArgs } from './generateRobotStateTimeline' +import type { GenerateSubstepsArgs } from './generateSubsteps' // worker itself will spread the robotStateTimeline in export type SubstepsArgsNoTimeline = Omit< GenerateSubstepsArgs, diff --git a/protocol-designer/src/timelineMiddleware/worker.ts b/protocol-designer/src/timelineMiddleware/worker.ts index 243331a1bee..7fa50480dfa 100644 --- a/protocol-designer/src/timelineMiddleware/worker.ts +++ b/protocol-designer/src/timelineMiddleware/worker.ts @@ -1,6 +1,7 @@ -import { Timeline } from '@opentrons/step-generation' import { generateRobotStateTimeline } from './generateRobotStateTimeline' import { generateSubsteps } from './generateSubsteps' +import type { Timeline } from '@opentrons/step-generation' + addEventListener('message', event => { // NOTE: may have performance increase by not sending both // eg timelineArgs.initialRobotState and substepsArgs.initialRobotState diff --git a/protocol-designer/src/top-selectors/labware-locations/index.ts b/protocol-designer/src/top-selectors/labware-locations/index.ts index 6c66367fb4f..7741f3a7314 100644 --- a/protocol-designer/src/top-selectors/labware-locations/index.ts +++ b/protocol-designer/src/top-selectors/labware-locations/index.ts @@ -7,7 +7,6 @@ import { FLEX_ROBOT_TYPE, WASTE_CHUTE_ADDRESSABLE_AREAS, WASTE_CHUTE_CUTOUT, - CutoutId, STAGING_AREA_RIGHT_SLOT_FIXTURE, isAddressableAreaStandardSlot, MOVABLE_TRASH_ADDRESSABLE_AREAS, @@ -20,10 +19,7 @@ import { PRESAVED_STEP_ID, } from '../../steplist' import { getHasWasteChute } from '../../components/labware' -import { - AllTemporalPropertiesForTimelineFrame, - selectors as stepFormSelectors, -} from '../../step-forms' +import { selectors as stepFormSelectors } from '../../step-forms' import { getActiveItem } from '../../ui/steps' import { TERMINAL_ITEM_SELECTION_TYPE } from '../../ui/steps/reducers' import { selectors as fileDataSelectors } from '../../file-data' @@ -35,9 +31,10 @@ import { getAdditionalEquipmentEntities, } from '../../step-forms/selectors' import { getIsAdapter } from '../../utils' +import type { CutoutId, AddressableAreaName } from '@opentrons/shared-data' import type { RobotState } from '@opentrons/step-generation' +import type { AllTemporalPropertiesForTimelineFrame } from '../../step-forms' import type { Selector } from '../../types' -import type { AddressableAreaName } from '@opentrons/shared-data' interface Option { name: string diff --git a/protocol-designer/src/top-selectors/substep-highlight.ts b/protocol-designer/src/top-selectors/substep-highlight.ts index 1e47785be88..8aeccdb5ef4 100644 --- a/protocol-designer/src/top-selectors/substep-highlight.ts +++ b/protocol-designer/src/top-selectors/substep-highlight.ts @@ -1,18 +1,16 @@ import { createSelector } from 'reselect' import mapValues from 'lodash/mapValues' -import { - ALL, - COLUMN, - getWellNamePerMultiTip, - NozzleConfigurationStyle, -} from '@opentrons/shared-data' -import { WellGroup } from '@opentrons/components' +import { ALL, COLUMN, getWellNamePerMultiTip } from '@opentrons/shared-data' import * as StepGeneration from '@opentrons/step-generation' import { selectors as stepFormSelectors } from '../step-forms' import { selectors as fileDataSelectors } from '../file-data' import { getHoveredStepId, getHoveredSubstep } from '../ui/steps' import { getWellSetForMultichannel } from '../utils' -import type { CreateCommand } from '@opentrons/shared-data' +import type { WellGroup } from '@opentrons/components' +import type { + NozzleConfigurationStyle, + CreateCommand, +} from '@opentrons/shared-data' import type { PipetteEntity, LabwareEntity } from '@opentrons/step-generation' import type { Selector } from '../types' import type { SubstepItemData } from '../steplist/types' @@ -202,13 +200,19 @@ function _getSelectedWellsForSubstep( // source + dest steps - // @ts-expect-error(sa, 2021-6-22): `sourceLabware` is missing in `MixArgs` - if (stepArgs.sourceLabware && stepArgs.sourceLabware === labwareId) { + if ( + 'sourceLabware' in stepArgs && + stepArgs.sourceLabware != null && + stepArgs.sourceLabware === labwareId + ) { wells.push(...getWells('source')) } - // @ts-expect-error(sa, 2021-6-22): property `destLabware` is missing in `MixArgs` - if (stepArgs.destLabware && stepArgs.destLabware === labwareId) { + if ( + 'destLabware' in stepArgs && + stepArgs.destLabware != null && + stepArgs.destLabware === labwareId + ) { wells.push(...getWells('dest')) } diff --git a/protocol-designer/src/top-selectors/timelineFrames.ts b/protocol-designer/src/top-selectors/timelineFrames.ts index 06e0b5e0bbf..4015af4aa70 100644 --- a/protocol-designer/src/top-selectors/timelineFrames.ts +++ b/protocol-designer/src/top-selectors/timelineFrames.ts @@ -1,20 +1,19 @@ import { createSelector } from 'reselect' - import { selectors as fileDataSelectors } from '../file-data' import { selectors as stepFormSelectors } from '../step-forms' import { getActiveItem } from '../ui/steps/selectors' import { START_TERMINAL_ITEM_ID, PRESAVED_STEP_ID } from '../steplist' import { + SINGLE_STEP_SELECTION_TYPE, + TERMINAL_ITEM_SELECTION_TYPE, +} from '../ui/steps/reducers' +import type { CommandsAndRobotState, RobotState, Timeline, } from '@opentrons/step-generation' -import { Selector } from '../types' -import { - HoverableItem, - SINGLE_STEP_SELECTION_TYPE, - TERMINAL_ITEM_SELECTION_TYPE, -} from '../ui/steps/reducers' +import type { Selector } from '../types' +import type { HoverableItem } from '../ui/steps/reducers' const _timelineFrameHelper = (beforeActiveItem: boolean) => ( activeItem: HoverableItem | null, diff --git a/protocol-designer/src/top-selectors/timelineWarnings/index.ts b/protocol-designer/src/top-selectors/timelineWarnings/index.ts index d9ca0de7c16..262e4fc0eab 100644 --- a/protocol-designer/src/top-selectors/timelineWarnings/index.ts +++ b/protocol-designer/src/top-selectors/timelineWarnings/index.ts @@ -3,8 +3,8 @@ import { selectors as fileDataSelectors } from '../../file-data' import { selectors as stepFormSelectors } from '../../step-forms' import { getSelectedStepId } from '../../ui/steps' import { selectors as dismissSelectors } from '../../dismiss' -import { CommandCreatorWarning } from '@opentrons/step-generation' -import { Selector } from '../../types' +import type { CommandCreatorWarning } from '@opentrons/step-generation' +import type { Selector } from '../../types' export const getTimelineWarningsForSelectedStep: Selector< CommandCreatorWarning[] > = createSelector( @@ -14,7 +14,7 @@ export const getTimelineWarningsForSelectedStep: Selector< (dismissedWarningTypes, warningsPerStep, stepId) => { if (stepId == null) return [] return (warningsPerStep[stepId] || []).filter( - warning => !(dismissedWarningTypes[stepId] || []).includes(warning.type) + warning => !dismissedWarningTypes.includes(warning.type) ) } ) @@ -28,12 +28,9 @@ export const getHasTimelineWarningsPerStep: Selector = creat const warningTypesForStep = (warningsPerStep[stepId] || []).map( w => w.type ) - const dismissedWarningTypesForStep = new Set( - dismissedWarningTypes[stepId] || [] - ) const hasUndismissedWarnings = warningTypesForStep.filter( - warningType => !dismissedWarningTypesForStep.has(warningType) + warningType => !dismissedWarningTypes.includes(warningType) ).length > 0 return { ...stepAcc, [stepId]: hasUndismissedWarnings } }, {}) diff --git a/protocol-designer/src/top-selectors/tip-contents/index.ts b/protocol-designer/src/top-selectors/tip-contents/index.ts index 5d3774b43a8..7f62e91cb05 100644 --- a/protocol-designer/src/top-selectors/tip-contents/index.ts +++ b/protocol-designer/src/top-selectors/tip-contents/index.ts @@ -10,8 +10,8 @@ import { selectors as stepFormSelectors } from '../../step-forms' import { getActiveItem } from '../../ui/steps' import { TERMINAL_ITEM_SELECTION_TYPE } from '../../ui/steps/reducers' import { selectors as fileDataSelectors } from '../../file-data' -import { WellGroup } from '@opentrons/components' -import { Selector } from '../../types' +import type { WellGroup } from '@opentrons/components' +import type { Selector } from '../../types' export const getMissingTipsByLabwareId: Selector state.tutorial diff --git a/protocol-designer/src/ui/index.ts b/protocol-designer/src/ui/index.ts index 2739a5b9f6f..2e54df4cb20 100644 --- a/protocol-designer/src/ui/index.ts +++ b/protocol-designer/src/ui/index.ts @@ -1,6 +1,9 @@ -import { combineReducers, Reducer } from 'redux' -import { rootReducer as stepsReducer, StepsState } from './steps/reducers' -import { Action } from '../types' +import { combineReducers } from 'redux' +import { rootReducer as stepsReducer } from './steps/reducers' +import type { Reducer } from 'redux' +import type { Action } from '../types' +import type { StepsState } from './steps/reducers' + export interface RootState { steps: StepsState } diff --git a/protocol-designer/src/ui/labware/selectors.ts b/protocol-designer/src/ui/labware/selectors.ts index 27b3ea9f3ae..1f321526c76 100644 --- a/protocol-designer/src/ui/labware/selectors.ts +++ b/protocol-designer/src/ui/labware/selectors.ts @@ -2,13 +2,15 @@ import { createSelector } from 'reselect' import mapValues from 'lodash/mapValues' import reduce from 'lodash/reduce' import { getIsTiprack, getLabwareDisplayName } from '@opentrons/shared-data' -import { AdditionalEquipmentEntity } from '@opentrons/step-generation' import * as stepFormSelectors from '../../step-forms/selectors' import { selectors as labwareIngredSelectors } from '../../labware-ingred/selectors' import { getModuleShortNames, getModuleUnderLabware } from '../modules/utils' import { getLabwareOffDeck, getLabwareInColumn4 } from './utils' -import type { LabwareEntity } from '@opentrons/step-generation' +import type { + LabwareEntity, + AdditionalEquipmentEntity, +} from '@opentrons/step-generation' import type { DropdownOption, Options } from '@opentrons/components' import type { Selector } from '../../types' import type { @@ -85,13 +87,24 @@ export const getMoveLabwareOptions: Selector = createSelector( stepFormSelectors.getInitialDeckSetup, stepFormSelectors.getSavedStepForms, stepFormSelectors.getAdditionalEquipmentEntities, + stepFormSelectors.getUnsavedForm, ( labwareEntities, nicknamesById, initialDeckSetup, savedStepForms, - additionalEquipmentEntities + additionalEquipmentEntities, + unsavedForm ) => { + const savedFormKeys = Object.keys(savedStepForms) + const previouslySavedFormDataIndex = unsavedForm + ? savedFormKeys.indexOf(unsavedForm.id) + : -1 + const filteredSavedStepFormIds = + previouslySavedFormDataIndex !== -1 + ? savedFormKeys.slice(0, previouslySavedFormDataIndex) + : savedFormKeys + const wasteChuteLocation = Object.values(additionalEquipmentEntities).find( aE => aE.name === 'wasteChute' )?.location @@ -102,12 +115,13 @@ export const getMoveLabwareOptions: Selector = createSelector( labwareEntity: LabwareEntity, labwareId: string ): Options => { - const isLabwareInWasteChute = Object.values(savedStepForms).find( - form => - form.stepType === 'moveLabware' && - form.labware === labwareId && - form.newLocation === wasteChuteLocation - ) + const isLabwareInWasteChute = + filteredSavedStepFormIds.find( + id => + savedStepForms[id].stepType === 'moveLabware' && + savedStepForms[id].labware === labwareId && + savedStepForms[id].newLocation === wasteChuteLocation + ) != null const isAdapter = labwareEntity.def.allowedRoles?.includes('adapter') ?? false @@ -241,27 +255,22 @@ export const getDisposalOptions = createSelector( } ) -export interface TiprackOption { - name: string - value: string - defURI: string -} -export const getTiprackOptions: Selector = createSelector( +export const getTiprackOptions: Selector = createSelector( stepFormSelectors.getLabwareEntities, getLabwareNicknamesById, (labwareEntities, nicknamesById) => { const options = reduce( labwareEntities, ( - acc: TiprackOption[], + acc: DropdownOption[], labwareEntity: LabwareEntity, labwareId: string - ): TiprackOption[] => { + ): DropdownOption[] => { const labwareDefURI = labwareEntity.labwareDefURI - const optionValues = acc.map(option => option.value) + const optionDefURI = acc.map(option => option.value) if ( - optionValues.includes(labwareDefURI) || + optionDefURI.includes(labwareDefURI) || !getIsTiprack(labwareEntity.def) ) { return acc @@ -270,8 +279,7 @@ export const getTiprackOptions: Selector = createSelector( ...acc, { name: nicknamesById[labwareId], - value: labwareId, - defURI: labwareDefURI, + value: labwareDefURI, }, ] } diff --git a/protocol-designer/src/ui/modules/selectors.ts b/protocol-designer/src/ui/modules/selectors.ts index 1d5ec7bdb08..03e0886833f 100644 --- a/protocol-designer/src/ui/modules/selectors.ts +++ b/protocol-designer/src/ui/modules/selectors.ts @@ -17,8 +17,8 @@ import { getMagnetLabwareEngageHeight as getMagnetLabwareEngageHeightUtil, getModulesOnDeckByType, getModulesHaveLabware, - ModuleAndLabware, } from './utils' +import type { ModuleAndLabware } from './utils' import type { Options } from '@opentrons/components' import type { Selector } from '../../types' import type { LabwareNamesByModuleId } from '../../steplist/types' @@ -117,6 +117,14 @@ export const getMagnetModuleHasLabware: Selector = createSelector( } ) +/** Returns boolean if heater-shaker module has labware */ +export const getHeaterShakerModuleHasLabware: Selector = createSelector( + getInitialDeckSetup, + initialDeckSetup => { + return getModuleHasLabware(initialDeckSetup, HEATERSHAKER_MODULE_TYPE) + } +) + /** Returns all moduleIds and if they have labware for MoaM */ export const getTemperatureModulesHaveLabware: Selector< ModuleAndLabware[] diff --git a/protocol-designer/src/ui/modules/utils.ts b/protocol-designer/src/ui/modules/utils.ts index e49e8ad7b33..54b7b4c4b76 100644 --- a/protocol-designer/src/ui/modules/utils.ts +++ b/protocol-designer/src/ui/modules/utils.ts @@ -2,9 +2,9 @@ import values from 'lodash/values' import { MAGNETIC_MODULE_V1, getLabwareDefaultEngageHeight, - ModuleType, } from '@opentrons/shared-data' -import { Options } from '@opentrons/components' +import type { Options } from '@opentrons/components' +import type { ModuleType } from '@opentrons/shared-data' import type { ModuleOnDeck, LabwareOnDeck, diff --git a/protocol-designer/src/ui/steps/__fixtures__/index.ts b/protocol-designer/src/ui/steps/__fixtures__/index.ts index 7b0a3391c23..b7eeee3ec4a 100644 --- a/protocol-designer/src/ui/steps/__fixtures__/index.ts +++ b/protocol-designer/src/ui/steps/__fixtures__/index.ts @@ -1,4 +1,4 @@ -import { SavedStepFormState } from '../../../step-forms' +import type { SavedStepFormState } from '../../../step-forms' export const getMockMoveLiquidStep = (): SavedStepFormState => ({ move_liquid_step_id: { pipette: 'some_pipette_id', diff --git a/protocol-designer/src/ui/steps/actions/__tests__/addAndSelectStepWithHints.test.ts b/protocol-designer/src/ui/steps/actions/__tests__/addAndSelectStepWithHints.test.ts index 56046da6a98..fa749bfa4e2 100644 --- a/protocol-designer/src/ui/steps/actions/__tests__/addAndSelectStepWithHints.test.ts +++ b/protocol-designer/src/ui/steps/actions/__tests__/addAndSelectStepWithHints.test.ts @@ -26,6 +26,9 @@ beforeEach(() => { false ) vi.mocked(uiModuleSelectors.getTemperatureModuleIds).mockReturnValue(null) + vi.mocked(uiModuleSelectors.getHeaterShakerModuleHasLabware).mockReturnValue( + false + ) vi.mocked(uiModuleSelectors.getSingleThermocyclerModuleId).mockReturnValue( null ) @@ -92,6 +95,7 @@ describe('addAndSelectStepWithHints', () => { getSingleTemperatureModuleId: null, getSingleThermocyclerModuleId: null, getTemperatureModuleIds: [], + getHeaterShakerModuleHasLabware: false, }, }, { @@ -105,12 +109,13 @@ describe('addAndSelectStepWithHints', () => { getThermocyclerModuleHasLabware: false, getSingleTemperatureModuleId: 'something', getSingleThermocyclerModuleId: null, - getTemperatureModuleIds: ['mockId'], + getTemperatureModuleIds: [], + getHeaterShakerModuleHasLabware: false, }, }, { - testName: 'temperature step, when thermocycler has no labware', - stepType: 'temperature' as StepType, + testName: 'thermocycler step, when thermocycler has no labware', + stepType: 'thermocycler' as StepType, selectorValues: { getMagnetModuleHasLabware: false, getTemperatureModulesHaveLabware: [], @@ -118,6 +123,20 @@ describe('addAndSelectStepWithHints', () => { getSingleTemperatureModuleId: null, getSingleThermocyclerModuleId: 'something', getTemperatureModuleIds: [], + getHeaterShakerModuleHasLabware: false, + }, + }, + { + testName: 'heaterShaker step, when heaterShaker has no labware', + stepType: 'heaterShaker' as StepType, + selectorValues: { + getMagnetModuleHasLabware: false, + getTemperatureModulesHaveLabware: [], + getThermocyclerModuleHasLabware: false, + getSingleTemperatureModuleId: null, + getSingleThermocyclerModuleId: 'something', + getTemperatureModuleIds: [], + getHeaterShakerModuleHasLabware: false, }, }, ].forEach(({ testName, stepType, selectorValues }) => { @@ -128,6 +147,9 @@ describe('addAndSelectStepWithHints', () => { vi.mocked( uiModuleSelectors.getTemperatureModulesHaveLabware ).mockReturnValue(selectorValues.getTemperatureModulesHaveLabware) + vi.mocked( + uiModuleSelectors.getHeaterShakerModuleHasLabware + ).mockReturnValue(selectorValues.getHeaterShakerModuleHasLabware) vi.mocked( uiModuleSelectors.getThermocyclerModuleHasLabware ).mockReturnValue(selectorValues.getThermocyclerModuleHasLabware) diff --git a/protocol-designer/src/ui/steps/actions/actions.ts b/protocol-designer/src/ui/steps/actions/actions.ts index ea19fdfb503..bdd41e323ae 100644 --- a/protocol-designer/src/ui/steps/actions/actions.ts +++ b/protocol-designer/src/ui/steps/actions/actions.ts @@ -1,21 +1,16 @@ import last from 'lodash/last' -import { - analyticsEvent, - AnalyticsEventAction, -} from '../../../analytics/actions' -import { - PRESAVED_STEP_ID, - TerminalItemId, - SubstepIdentifier, -} from '../../../steplist/types' +import { analyticsEvent } from '../../../analytics/actions' +import { PRESAVED_STEP_ID } from '../../../steplist/types' import { selectors as stepFormSelectors } from '../../../step-forms' import { getMultiSelectLastSelected } from '../selectors' import { resetScrollElements } from '../utils' -import { Timeline } from '@opentrons/step-generation' -import { StepIdType, StepType } from '../../../form-types' -import { GetState, ThunkAction, ThunkDispatch } from '../../../types' -import { AnalyticsEvent } from '../../../analytics/mixpanel' -import { +import type { Timeline } from '@opentrons/step-generation' +import type { StepIdType, StepType } from '../../../form-types' +import type { GetState, ThunkAction, ThunkDispatch } from '../../../types' +import type { AnalyticsEvent } from '../../../analytics/mixpanel' +import type { AnalyticsEventAction } from '../../../analytics/actions' +import type { TerminalItemId, SubstepIdentifier } from '../../../steplist/types' +import type { AddStepAction, ExpandAddStepButtonAction, ToggleStepCollapsedAction, diff --git a/protocol-designer/src/ui/steps/actions/thunks/index.ts b/protocol-designer/src/ui/steps/actions/thunks/index.ts index 9cc31de8ab8..707b5e0713d 100644 --- a/protocol-designer/src/ui/steps/actions/thunks/index.ts +++ b/protocol-designer/src/ui/steps/actions/thunks/index.ts @@ -18,9 +18,9 @@ import { } from '../../../../tutorial' import * as uiModuleSelectors from '../../../../ui/modules/selectors' import * as fileDataSelectors from '../../../../file-data/selectors' -import { StepType, StepIdType, FormData } from '../../../../form-types' -import { ThunkAction } from '../../../../types' -import { +import type { StepType, StepIdType, FormData } from '../../../../form-types' +import type { ThunkAction } from '../../../../types' +import type { DuplicateStepAction, DuplicateMultipleStepsAction, SelectMultipleStepsAction, @@ -49,9 +49,10 @@ export const addAndSelectStepWithHints: (arg: { const temperatureModuleOnDeck = uiModuleSelectors.getTemperatureModuleIds( state ) - const thermocyclerModuleOnDeck = uiModuleSelectors.getSingleThermocyclerModuleId( + const heaterShakerModuleHasLabware = uiModuleSelectors.getHeaterShakerModuleHasLabware( state ) + const tempHasNoLabware = temperatureModulesHaveLabware.some( module => !module.hasLabware ) @@ -59,19 +60,25 @@ export const addAndSelectStepWithHints: (arg: { const stepNeedsLiquid = ['mix', 'moveLiquid'].includes(payload.stepType) const stepMagnetNeedsLabware = ['magnet'].includes(payload.stepType) const stepTemperatureNeedsLabware = ['temperature'].includes(payload.stepType) + const stepThermocyclerNeedsLabware = ['thermocycler'].includes( + payload.stepType + ) + const stepHeaterShakerNeedsLabware = ['heaterShaker'].includes( + payload.stepType + ) + const stepModuleMissingLabware = (stepMagnetNeedsLabware && !magnetModuleHasLabware) || - (stepTemperatureNeedsLabware && - thermocyclerModuleOnDeck && - !thermocyclerModuleHasLabware) || - (temperatureModuleOnDeck?.length === 1 && tempHasNoLabware) + (stepThermocyclerNeedsLabware && !thermocyclerModuleHasLabware) || + (temperatureModuleOnDeck?.length === 0 && stepTemperatureNeedsLabware) || + (stepHeaterShakerNeedsLabware && !heaterShakerModuleHasLabware) if (stepNeedsLiquid && !deckHasLiquid) { dispatch(tutorialActions.addHint('add_liquids_and_labware')) } if (stepModuleMissingLabware) { dispatch(tutorialActions.addHint('module_without_labware')) - } else if (temperatureModuleOnDeck && tempHasNoLabware) { + } else if (temperatureModuleOnDeck != null && tempHasNoLabware) { dispatch(tutorialActions.addHint('multiple_modules_without_labware')) } } diff --git a/protocol-designer/src/ui/steps/actions/types.ts b/protocol-designer/src/ui/steps/actions/types.ts index ffae982e7fb..0205c9eac52 100644 --- a/protocol-designer/src/ui/steps/actions/types.ts +++ b/protocol-designer/src/ui/steps/actions/types.ts @@ -1,6 +1,6 @@ -import { Timeline } from '@opentrons/step-generation' -import { StepIdType, StepType } from '../../../form-types' -import { TerminalItemId, SubstepIdentifier } from '../../../steplist/types' +import type { Timeline } from '@opentrons/step-generation' +import type { StepIdType, StepType } from '../../../form-types' +import type { TerminalItemId, SubstepIdentifier } from '../../../steplist/types' interface AddStepPayload { id: string stepType: StepType diff --git a/protocol-designer/src/ui/steps/reducers.ts b/protocol-designer/src/ui/steps/reducers.ts index 4f3bcbe113d..6654a55b32c 100644 --- a/protocol-designer/src/ui/steps/reducers.ts +++ b/protocol-designer/src/ui/steps/reducers.ts @@ -1,24 +1,19 @@ -import { Reducer, combineReducers } from 'redux' - +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' import omit from 'lodash/omit' import { getPDMetadata } from '../../file-types' -import { - SubstepIdentifier, - TerminalItemId, - START_TERMINAL_ITEM_ID, - PRESAVED_STEP_ID, -} from '../../steplist/types' - -import { Action } from '../../types' -import { LoadFileAction } from '../../load-file' -import { StepIdType } from '../../form-types' -import { SaveStepFormAction } from '../steps/actions/thunks' -import { +import { START_TERMINAL_ITEM_ID, PRESAVED_STEP_ID } from '../../steplist/types' +import type { Reducer } from 'redux' +import type { SubstepIdentifier, TerminalItemId } from '../../steplist/types' +import type { DeleteStepAction, DeleteMultipleStepsAction, } from '../../steplist/actions' -import { +import type { Action } from '../../types' +import type { LoadFileAction } from '../../load-file' +import type { StepIdType } from '../../form-types' +import type { SaveStepFormAction } from '../steps/actions/thunks' +import type { AddStepAction, HoverOnStepAction, HoverOnSubstepAction, @@ -30,6 +25,7 @@ import { ExpandMultipleStepsAction, CollapseMultipleStepsAction, } from './actions/types' + export type CollapsedStepsState = Record // @ts-expect-error(sa, 2021-6-10): cannot use string literals as action type // TODO IMMEDIATELY: refactor this to the old fashioned way if we cannot have type safety: https://github.com/redux-utilities/redux-actions/issues/282#issuecomment-595163081 diff --git a/protocol-designer/src/ui/steps/selectors.ts b/protocol-designer/src/ui/steps/selectors.ts index 8ed2eeb20dd..205137d1003 100644 --- a/protocol-designer/src/ui/steps/selectors.ts +++ b/protocol-designer/src/ui/steps/selectors.ts @@ -3,18 +3,10 @@ import last from 'lodash/last' import uniq from 'lodash/uniq' import { selectors as stepFormSelectors } from '../../step-forms' import { getDefaultsForStepType } from '../../steplist/formLevel/getDefaultsForStepType' -import { - SubstepIdentifier, - TerminalItemId, - PRESAVED_STEP_ID, -} from '../../steplist/types' +import { PRESAVED_STEP_ID } from '../../steplist/types' import { getLabwareOnModule } from '../modules/utils' import { - SelectableItem, - StepsState, - CollapsedStepsState, - HoverableItem, initialSelectedItemState, SINGLE_STEP_SELECTION_TYPE, TERMINAL_ITEM_SELECTION_TYPE, @@ -31,14 +23,22 @@ import { getPipetteDifferentDisabledFields, getLabwareDisabledFields, } from './utils' -import { +import type { BaseState, Selector } from '../../types' +import type { SubstepIdentifier, TerminalItemId } from '../../steplist/types' +import type { CountPerStepType, FormData, StepFieldName, StepIdType, StepType, } from '../../form-types' -import { BaseState, Selector } from '../../types' +import type { + SelectableItem, + StepsState, + CollapsedStepsState, + HoverableItem, +} from './reducers' + export const rootSelector = (state: BaseState): StepsState => state.ui.steps // ======= Selectors =============================================== // NOTE: when the selected step is deleted, we need to fall back to the last step diff --git a/protocol-designer/src/ui/steps/test/selectors.test.ts b/protocol-designer/src/ui/steps/test/selectors.test.ts index e5aa13d10c5..64c96f2d9a3 100644 --- a/protocol-designer/src/ui/steps/test/selectors.test.ts +++ b/protocol-designer/src/ui/steps/test/selectors.test.ts @@ -27,7 +27,7 @@ import * as utils from '../../modules/utils' import type { FormData } from '../../../form-types' import type { StepArgsAndErrorsById } from '../../../steplist/types' -import { AllTemporalPropertiesForTimelineFrame } from '../../../step-forms' +import type { AllTemporalPropertiesForTimelineFrame } from '../../../step-forms' vi.mock('../../modules/utils') @@ -418,7 +418,10 @@ describe('_getSavedMultiSelectFieldValues', () => { isIndeterminate: false, value: undefined, }, - + blowout_flowRate: { + isIndeterminate: false, + value: undefined, + }, aspirate_labware: { value: 'aspirate_labware_id', isIndeterminate: false, @@ -642,6 +645,7 @@ describe('_getSavedMultiSelectFieldValues', () => { dispense_wellOrder_first: 'b2t', dispense_wellOrder_second: 'r2l', dispense_mix_checkbox: false, + blowout_flowRate: null, // same thing here with mix times or mix volumes dispense_delay_checkbox: false, // same thing here for delay seconds and mm from bottom @@ -670,6 +674,9 @@ describe('_getSavedMultiSelectFieldValues', () => { tipRack: { isIndeterminate: false, }, + blowout_flowRate: { + isIndeterminate: true, + }, aspirate_flowRate: { isIndeterminate: true, }, @@ -862,6 +869,9 @@ describe('_getSavedMultiSelectFieldValues', () => { ).toEqual({ volume: { value: '100', isIndeterminate: false }, tipRack: { isIndeterminate: false }, + blowout_flowRate: { + isIndeterminate: false, + }, times: { value: null, isIndeterminate: false }, changeTip: { value: 'always', isIndeterminate: false }, labware: { value: 'some_labware_id', isIndeterminate: false }, @@ -940,6 +950,9 @@ describe('_getSavedMultiSelectFieldValues', () => { ) ).toEqual({ tipRack: { isIndeterminate: false }, + blowout_flowRate: { + isIndeterminate: false, + }, volume: { isIndeterminate: true }, times: { isIndeterminate: true }, changeTip: { isIndeterminate: true }, diff --git a/protocol-designer/src/ui/steps/utils.ts b/protocol-designer/src/ui/steps/utils.ts index 097a34ee93c..bf3cba42aaa 100644 --- a/protocol-designer/src/ui/steps/utils.ts +++ b/protocol-designer/src/ui/steps/utils.ts @@ -1,5 +1,5 @@ import forEach from 'lodash/forEach' -import { StepFieldName } from '../../form-types' +import type { StepFieldName } from '../../form-types' export const MAIN_CONTENT_FORCED_SCROLL_CLASSNAME = 'main_content_forced_scroll' // scroll to top of all elements with the special class (probably the main page wrapper) // diff --git a/protocol-designer/src/utils/index.ts b/protocol-designer/src/utils/index.ts index 28c91fd2aad..3366f1c3ccb 100644 --- a/protocol-designer/src/utils/index.ts +++ b/protocol-designer/src/utils/index.ts @@ -1,27 +1,29 @@ import uuidv1 from 'uuid/v4' import { - WellSetHelpers, makeWellSetHelpers, - AddressableAreaName, getDeckDefFromRobotType, FLEX_ROBOT_TYPE, - CutoutId, STAGING_AREA_RIGHT_SLOT_FIXTURE, isAddressableAreaStandardSlot, - CutoutFixtureId, - RobotType, INTERACTIVE_WELL_DATA_ATTRIBUTE, - SupportedTip, LOW_VOLUME_PIPETTES, } from '@opentrons/shared-data' -import { BoundingRect, GenericRect } from '../collision-types' import type { AdditionalEquipmentEntity, LabwareEntities, PipetteEntities, PipetteEntity, } from '@opentrons/step-generation' +import type { + WellSetHelpers, + AddressableAreaName, + CutoutId, + CutoutFixtureId, + RobotType, + SupportedTip, +} from '@opentrons/shared-data' import type { WellGroup } from '@opentrons/components' +import type { BoundingRect, GenericRect } from '../collision-types' export const uuid: () => string = uuidv1 // Collision detection for SelectionRect / SelectableLabware diff --git a/protocol-designer/src/utils/labwareModuleCompatibility.ts b/protocol-designer/src/utils/labwareModuleCompatibility.ts index 5092afd6903..1fe26f427d7 100644 --- a/protocol-designer/src/utils/labwareModuleCompatibility.ts +++ b/protocol-designer/src/utils/labwareModuleCompatibility.ts @@ -1,16 +1,14 @@ // PD-specific info about labware<>module compatibilty - import { MAGNETIC_MODULE_TYPE, TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, - LabwareDefinition2, - ModuleType, HEATERSHAKER_MODULE_TYPE, MAGNETIC_BLOCK_TYPE, } from '@opentrons/shared-data' -import { LabwareDefByDefURI } from '../labware-defs' -import { LabwareOnDeck } from '../step-forms' +import type { LabwareDefByDefURI } from '../labware-defs' +import type { LabwareOnDeck } from '../step-forms' +import type { LabwareDefinition2, ModuleType } from '@opentrons/shared-data' // NOTE: this does not distinguish btw versions. Standard labware only (assumes namespace is 'opentrons') export const COMPATIBLE_LABWARE_ALLOWLIST_BY_MODULE_TYPE: Record< ModuleType, diff --git a/protocol-designer/src/well-selection/actions.ts b/protocol-designer/src/well-selection/actions.ts index 25d403f1fa8..0213c362020 100644 --- a/protocol-designer/src/well-selection/actions.ts +++ b/protocol-designer/src/well-selection/actions.ts @@ -1,4 +1,4 @@ -import { WellGroup } from '@opentrons/components' +import type { WellGroup } from '@opentrons/components' // ===== Preselect / select wells in plate // these actions all use PRIMARY WELLS (see reducers for definition) export interface HighlightWellsAction { diff --git a/protocol-designer/src/well-selection/reducers.ts b/protocol-designer/src/well-selection/reducers.ts index be2989ae857..7bc672631db 100644 --- a/protocol-designer/src/well-selection/reducers.ts +++ b/protocol-designer/src/well-selection/reducers.ts @@ -1,13 +1,16 @@ import omit from 'lodash/omit' -import { combineReducers, Reducer } from 'redux' +import { combineReducers } from 'redux' import { handleActions } from 'redux-actions' -import { WellGroup } from '@opentrons/components' -import { Action } from '../types' -import { + +import type { Reducer } from 'redux' +import type { WellGroup } from '@opentrons/components' +import type { Action } from '../types' +import type { HighlightWellsAction, SelectWellsAction, DeselectWellsAction, } from './actions' + interface SelectedWellsState { highlighted: WellGroup selected: WellGroup diff --git a/protocol-designer/src/well-selection/selectors.ts b/protocol-designer/src/well-selection/selectors.ts index a695784f0dc..9a281709508 100644 --- a/protocol-designer/src/well-selection/selectors.ts +++ b/protocol-designer/src/well-selection/selectors.ts @@ -1,7 +1,7 @@ import { createSelector } from 'reselect' import { sortWells } from '@opentrons/shared-data' -import { WellGroup } from '@opentrons/components' -import { BaseState, Selector } from '../types' +import type { WellGroup } from '@opentrons/components' +import type { BaseState, Selector } from '../types' const rootSelector = (state: BaseState): BaseState['wellSelection'] => state.wellSelection diff --git a/protocol-designer/typings/reselect.d.ts b/protocol-designer/typings/reselect.d.ts index c905b8139c4..8a80c1fd544 100644 --- a/protocol-designer/typings/reselect.d.ts +++ b/protocol-designer/typings/reselect.d.ts @@ -1,4 +1,4 @@ -import { OutputSelector, Selector } from 'reselect' +import type { OutputSelector, Selector } from 'reselect' declare module 'reselect' { // declaring type for createSelector with 14 selectors because the reselect types only support up to 12 selectors export function createSelector< diff --git a/protocol-designer/vite.config.ts b/protocol-designer/vite.config.ts index 7f7b8dd680d..3c5acc81248 100644 --- a/protocol-designer/vite.config.ts +++ b/protocol-designer/vite.config.ts @@ -70,6 +70,9 @@ export default defineConfig( ...testAliases, }, }, + server: { + port: 5178 + } } } ) diff --git a/react-api-client/src/api/useHost.ts b/react-api-client/src/api/useHost.ts index 84d310c121e..ee081320aa9 100644 --- a/react-api-client/src/api/useHost.ts +++ b/react-api-client/src/api/useHost.ts @@ -1,6 +1,6 @@ import { useContext } from 'react' -import { HostConfig } from '@opentrons/api-client' import { ApiHostContext } from './ApiHostProvider' +import type { HostConfig } from '@opentrons/api-client' export function useHost(): HostConfig | null { return useContext(ApiHostContext) diff --git a/react-api-client/src/calibration/__tests__/useDeleteCalibrationMutation.test.tsx b/react-api-client/src/calibration/__tests__/useDeleteCalibrationMutation.test.tsx index 511a0857254..6639f2dd25f 100644 --- a/react-api-client/src/calibration/__tests__/useDeleteCalibrationMutation.test.tsx +++ b/react-api-client/src/calibration/__tests__/useDeleteCalibrationMutation.test.tsx @@ -2,13 +2,15 @@ import * as React from 'react' import { describe, it, expect, beforeEach, vi } from 'vitest' import { QueryClient, QueryClientProvider } from 'react-query' import { act, renderHook, waitFor } from '@testing-library/react' -import { - deleteCalibration, - DeleteCalRequestParams, -} from '@opentrons/api-client' +import { deleteCalibration } from '@opentrons/api-client' import { useHost } from '../../api' import { useDeleteCalibrationMutation } from '..' -import type { HostConfig, Response, EmptyResponse } from '@opentrons/api-client' +import type { + DeleteCalRequestParams, + HostConfig, + Response, + EmptyResponse, +} from '@opentrons/api-client' vi.mock('@opentrons/api-client') vi.mock('../../api/useHost') diff --git a/react-api-client/src/maintenance_runs/__fixtures__/maintenanceCommands.ts b/react-api-client/src/maintenance_runs/__fixtures__/maintenanceCommands.ts index 488e8d539d6..0a8b7797f25 100644 --- a/react-api-client/src/maintenance_runs/__fixtures__/maintenanceCommands.ts +++ b/react-api-client/src/maintenance_runs/__fixtures__/maintenanceCommands.ts @@ -1,4 +1,4 @@ -import { CommandsData, RunCommandSummary } from '@opentrons/api-client' +import type { CommandsData, RunCommandSummary } from '@opentrons/api-client' import type { CreateCommand } from '@opentrons/shared-data' export const mockAnonLoadCommand: CreateCommand = { diff --git a/react-api-client/src/maintenance_runs/useCreateMaintenanceRunMutation.ts b/react-api-client/src/maintenance_runs/useCreateMaintenanceRunMutation.ts index 3768bfcb544..298c0576587 100644 --- a/react-api-client/src/maintenance_runs/useCreateMaintenanceRunMutation.ts +++ b/react-api-client/src/maintenance_runs/useCreateMaintenanceRunMutation.ts @@ -1,17 +1,17 @@ -import { - HostConfig, - MaintenanceRun, - createMaintenanceRun, - CreateMaintenanceRunData, -} from '@opentrons/api-client' -import { +import { createMaintenanceRun } from '@opentrons/api-client' +import { useMutation } from 'react-query' +import { useHost } from '../api' +import type { AxiosError } from 'axios' +import type { UseMutationResult, - useMutation, UseMutateAsyncFunction, UseMutationOptions, } from 'react-query' -import { useHost } from '../api' -import type { AxiosError } from 'axios' +import type { + HostConfig, + MaintenanceRun, + CreateMaintenanceRunData, +} from '@opentrons/api-client' export type CreateMaintenanceRunType = UseMutateAsyncFunction< MaintenanceRun, diff --git a/react-api-client/src/maintenance_runs/useCurrentMaintenanceRun.ts b/react-api-client/src/maintenance_runs/useCurrentMaintenanceRun.ts index a12a8a9278f..883c8e05667 100644 --- a/react-api-client/src/maintenance_runs/useCurrentMaintenanceRun.ts +++ b/react-api-client/src/maintenance_runs/useCurrentMaintenanceRun.ts @@ -1,12 +1,9 @@ -import { - HostConfig, - getCurrentMaintenanceRun, - MaintenanceRun, -} from '@opentrons/api-client' +import { getCurrentMaintenanceRun } from '@opentrons/api-client' import { useQuery, useQueryClient } from 'react-query' import { useHost } from '../api' import type { UseQueryResult, UseQueryOptions } from 'react-query' +import type { HostConfig, MaintenanceRun } from '@opentrons/api-client' export function useCurrentMaintenanceRun( options: UseQueryOptions = {} diff --git a/react-api-client/src/maintenance_runs/useMaintenanceRunQuery.ts b/react-api-client/src/maintenance_runs/useMaintenanceRunQuery.ts index 43f5b75a1d0..f9746d0757b 100644 --- a/react-api-client/src/maintenance_runs/useMaintenanceRunQuery.ts +++ b/react-api-client/src/maintenance_runs/useMaintenanceRunQuery.ts @@ -1,12 +1,9 @@ -import { - HostConfig, - MaintenanceRun, - getMaintenanceRun, -} from '@opentrons/api-client' +import { getMaintenanceRun } from '@opentrons/api-client' import { useQuery } from 'react-query' import { useHost } from '../api' import type { UseQueryResult, UseQueryOptions } from 'react-query' +import type { HostConfig, MaintenanceRun } from '@opentrons/api-client' export function useMaintenanceRunQuery( maintenanceRunId: string | null, diff --git a/react-api-client/src/modules/__tests__/useModulesQuery.test.tsx b/react-api-client/src/modules/__tests__/useModulesQuery.test.tsx index c91e0517c28..5d0f3d9e238 100644 --- a/react-api-client/src/modules/__tests__/useModulesQuery.test.tsx +++ b/react-api-client/src/modules/__tests__/useModulesQuery.test.tsx @@ -5,6 +5,7 @@ import { renderHook, waitFor } from '@testing-library/react' import { getModules, mockModulesResponse, + mockUnknownModuleResponse, v2MockModulesResponse, } from '@opentrons/api-client' import { useHost } from '../../api' @@ -21,6 +22,10 @@ const MODULES_RESPONSE = { data: mockModulesResponse, meta: { totalLength: 0, cursor: 0 }, } +const UNKNOWN_MODULES_RESPONSE = { + data: mockUnknownModuleResponse, + meta: { totalLength: 0, cursor: 0 }, +} const V2_MODULES_RESPONSE = { data: v2MockModulesResponse } describe('useModulesQuery hook', () => { @@ -67,6 +72,19 @@ describe('useModulesQuery hook', () => { expect(result.current.data).toEqual(MODULES_RESPONSE) }) }) + it('should filter out unknown modules', async () => { + vi.mocked(useHost).mockReturnValue(HOST_CONFIG) + vi.mocked(getModules).mockResolvedValue({ + data: UNKNOWN_MODULES_RESPONSE, + } as Response) + + const { result } = renderHook(useModulesQuery, { wrapper }) + + await waitFor(() => { + expect(result.current.data).toEqual(MODULES_RESPONSE) + }) + }) + it('should return an empty array if an old version of modules returns', async () => { vi.mocked(useHost).mockReturnValue(HOST_CONFIG) vi.mocked(getModules).mockResolvedValue({ diff --git a/react-api-client/src/modules/useModulesQuery.ts b/react-api-client/src/modules/useModulesQuery.ts index 01b81e25aef..f4618e4f849 100644 --- a/react-api-client/src/modules/useModulesQuery.ts +++ b/react-api-client/src/modules/useModulesQuery.ts @@ -3,6 +3,7 @@ import { getModules } from '@opentrons/api-client' import { useHost } from '../api' import type { UseQueryResult, UseQueryOptions } from 'react-query' import type { HostConfig, Modules } from '@opentrons/api-client' +import { MODULE_MODELS } from '@opentrons/shared-data' export type UseModulesQueryOptions = UseQueryOptions @@ -26,7 +27,20 @@ export function useModulesQuery( } } }), - { enabled: host !== null, ...options } + { + enabled: host !== null, + // Filter unknown modules so we don't block the app, which + // can happen when developing new devices not yet known to the client. + select: resp => { + return { + ...resp, + data: resp.data.filter(module => + MODULE_MODELS.includes(module.moduleModel) + ), + } + }, + ...options, + } ) return query diff --git a/react-api-client/src/networking/useWifiQuery.ts b/react-api-client/src/networking/useWifiQuery.ts index 937d1a065ed..d00c0a52f8d 100644 --- a/react-api-client/src/networking/useWifiQuery.ts +++ b/react-api-client/src/networking/useWifiQuery.ts @@ -1,8 +1,8 @@ import { useQuery } from 'react-query' -import { WifiListResponse, getWifiList } from '@opentrons/api-client' +import { getWifiList } from '@opentrons/api-client' import { useHost } from '../api' import type { UseQueryResult, UseQueryOptions } from 'react-query' -import type { HostConfig } from '@opentrons/api-client' +import type { HostConfig, WifiListResponse } from '@opentrons/api-client' export function useWifiQuery( options: UseQueryOptions< diff --git a/react-api-client/src/pipettes/useUpdatePipetteSettingsMutation.ts b/react-api-client/src/pipettes/useUpdatePipetteSettingsMutation.ts index f306a8b9202..f742cc22405 100644 --- a/react-api-client/src/pipettes/useUpdatePipetteSettingsMutation.ts +++ b/react-api-client/src/pipettes/useUpdatePipetteSettingsMutation.ts @@ -1,18 +1,17 @@ -import { - HostConfig, - IndividualPipetteSettings, - updatePipetteSettings, - UpdatePipetteSettingsData, -} from '@opentrons/api-client' -import { - useMutation, - useQueryClient, +import { updatePipetteSettings } from '@opentrons/api-client' +import { useMutation, useQueryClient } from 'react-query' +import { useHost } from '../api' +import type { AxiosError } from 'axios' +import type { UseMutateAsyncFunction, UseMutationOptions, UseMutationResult, } from 'react-query' -import { useHost } from '../api' -import type { AxiosError } from 'axios' +import type { + HostConfig, + IndividualPipetteSettings, + UpdatePipetteSettingsData, +} from '@opentrons/api-client' export type UpdatePipetteSettingsType = UseMutateAsyncFunction< IndividualPipetteSettings, diff --git a/react-api-client/src/protocols/useAllProtocolIdsQuery.ts b/react-api-client/src/protocols/useAllProtocolIdsQuery.ts index 0adf939eab7..d09934ae1c0 100644 --- a/react-api-client/src/protocols/useAllProtocolIdsQuery.ts +++ b/react-api-client/src/protocols/useAllProtocolIdsQuery.ts @@ -1,8 +1,8 @@ -import { UseQueryResult, useQuery } from 'react-query' +import { useQuery } from 'react-query' import { getProtocolIds } from '@opentrons/api-client' import { useHost } from '../api' import type { HostConfig, ProtocolsIds } from '@opentrons/api-client' -import type { UseQueryOptions } from 'react-query' +import type { UseQueryOptions, UseQueryResult } from 'react-query' const POLLING_INTERVAL = 1000 diff --git a/react-api-client/src/protocols/useAllProtocolsQuery.ts b/react-api-client/src/protocols/useAllProtocolsQuery.ts index 4eeb1101665..65c70d7fbf8 100644 --- a/react-api-client/src/protocols/useAllProtocolsQuery.ts +++ b/react-api-client/src/protocols/useAllProtocolsQuery.ts @@ -1,6 +1,7 @@ -import { UseQueryResult, useQuery } from 'react-query' +import { useQuery } from 'react-query' import { getProtocols } from '@opentrons/api-client' import { useHost } from '../api' +import type { UseQueryResult } from 'react-query' import type { HostConfig, Protocols } from '@opentrons/api-client' export function useAllProtocolsQuery(): UseQueryResult { diff --git a/react-api-client/src/protocols/useCreateProtocolMutation.ts b/react-api-client/src/protocols/useCreateProtocolMutation.ts index 2e36321e311..f503f2f745d 100644 --- a/react-api-client/src/protocols/useCreateProtocolMutation.ts +++ b/react-api-client/src/protocols/useCreateProtocolMutation.ts @@ -1,13 +1,12 @@ -import { +import { useMutation, useQueryClient } from 'react-query' +import { createProtocol } from '@opentrons/api-client' +import { useHost } from '../api' +import type { AxiosError } from 'axios' +import type { UseMutationResult, UseMutationOptions, - useMutation, UseMutateFunction, - useQueryClient, } from 'react-query' -import { createProtocol } from '@opentrons/api-client' -import { useHost } from '../api' -import type { AxiosError } from 'axios' import type { ErrorResponse, HostConfig, diff --git a/react-api-client/src/protocols/useDeleteProtocolMutation.ts b/react-api-client/src/protocols/useDeleteProtocolMutation.ts index eaac4dc0ed6..921d6c6cabb 100644 --- a/react-api-client/src/protocols/useDeleteProtocolMutation.ts +++ b/react-api-client/src/protocols/useDeleteProtocolMutation.ts @@ -1,11 +1,7 @@ -import { - UseMutationResult, - useMutation, - UseMutateFunction, - useQueryClient, -} from 'react-query' +import { useMutation, useQueryClient } from 'react-query' import { deleteProtocol } from '@opentrons/api-client' import { useHost } from '../api' +import type { UseMutationResult, UseMutateFunction } from 'react-query' import type { HostConfig, EmptyResponse } from '@opentrons/api-client' export type UseDeleteProtocolMutationResult = UseMutationResult< diff --git a/react-api-client/src/protocols/useProtocolAnalysesQuery.ts b/react-api-client/src/protocols/useProtocolAnalysesQuery.ts index 943dec00a98..0cbdaf64daf 100644 --- a/react-api-client/src/protocols/useProtocolAnalysesQuery.ts +++ b/react-api-client/src/protocols/useProtocolAnalysesQuery.ts @@ -1,8 +1,8 @@ -import { UseQueryResult, useQuery } from 'react-query' +import { useQuery } from 'react-query' import { getProtocolAnalyses } from '@opentrons/api-client' import { useHost } from '../api' import type { HostConfig, ProtocolAnalyses } from '@opentrons/api-client' -import type { UseQueryOptions } from 'react-query' +import type { UseQueryOptions, UseQueryResult } from 'react-query' const POLLING_INTERVAL = 1000 diff --git a/react-api-client/src/protocols/useProtocolAnalysisAsDocumentQuery.ts b/react-api-client/src/protocols/useProtocolAnalysisAsDocumentQuery.ts index 6cfebeb2c47..6e0be35276d 100644 --- a/react-api-client/src/protocols/useProtocolAnalysisAsDocumentQuery.ts +++ b/react-api-client/src/protocols/useProtocolAnalysisAsDocumentQuery.ts @@ -1,9 +1,9 @@ -import { UseQueryResult, useQuery } from 'react-query' +import { useQuery } from 'react-query' import { getProtocolAnalysisAsDocument } from '@opentrons/api-client' import { useHost } from '../api' import type { HostConfig } from '@opentrons/api-client' -import type { UseQueryOptions } from 'react-query' -import { CompletedProtocolAnalysis } from '@opentrons/shared-data' +import type { UseQueryOptions, UseQueryResult } from 'react-query' +import type { CompletedProtocolAnalysis } from '@opentrons/shared-data' export function useProtocolAnalysisAsDocumentQuery( protocolId: string | null, diff --git a/react-api-client/src/protocols/useProtocolQuery.ts b/react-api-client/src/protocols/useProtocolQuery.ts index bfdb2fc396c..cea43962ab4 100644 --- a/react-api-client/src/protocols/useProtocolQuery.ts +++ b/react-api-client/src/protocols/useProtocolQuery.ts @@ -1,8 +1,8 @@ -import { UseQueryResult, useQuery } from 'react-query' +import { useQuery } from 'react-query' import { getProtocol } from '@opentrons/api-client' import { useHost } from '../api' import type { HostConfig, Protocol } from '@opentrons/api-client' -import type { UseQueryOptions } from 'react-query' +import type { UseQueryOptions, UseQueryResult } from 'react-query' const POLLING_INTERVAL = 1000 diff --git a/react-api-client/src/robot/useAcknowledgeEstopDisengageMutation.ts b/react-api-client/src/robot/useAcknowledgeEstopDisengageMutation.ts index 50b0ad18eb9..90585699e80 100644 --- a/react-api-client/src/robot/useAcknowledgeEstopDisengageMutation.ts +++ b/react-api-client/src/robot/useAcknowledgeEstopDisengageMutation.ts @@ -1,18 +1,13 @@ -import { +import { useMutation } from 'react-query' +import { acknowledgeEstopDisengage } from '@opentrons/api-client' +import { useHost } from '../api' +import type { AxiosError } from 'axios' +import type { UseMutationResult, - useMutation, UseMutateFunction, UseMutationOptions, } from 'react-query' - -import { - HostConfig, - EstopStatus, - acknowledgeEstopDisengage, -} from '@opentrons/api-client' - -import { useHost } from '../api' -import type { AxiosError } from 'axios' +import type { HostConfig, EstopStatus } from '@opentrons/api-client' export type UseAcknowledgeEstopDisengageMutationResult = UseMutationResult< EstopStatus, diff --git a/react-api-client/src/robot/useDoorQuery.ts b/react-api-client/src/robot/useDoorQuery.ts index 4343acf2160..92e96f7b095 100644 --- a/react-api-client/src/robot/useDoorQuery.ts +++ b/react-api-client/src/robot/useDoorQuery.ts @@ -1,9 +1,9 @@ import { useQuery } from 'react-query' -import { HostConfig, getDoorStatus } from '@opentrons/api-client' +import { getDoorStatus } from '@opentrons/api-client' import { useHost } from '../api' import type { UseQueryResult, UseQueryOptions } from 'react-query' -import type { DoorStatus } from '@opentrons/api-client' +import type { HostConfig, DoorStatus } from '@opentrons/api-client' export type UseDoorQueryOptions = UseQueryOptions< DoorStatus, diff --git a/react-api-client/src/robot/useLightsQuery.ts b/react-api-client/src/robot/useLightsQuery.ts index 6ccee63149f..9c910b85823 100644 --- a/react-api-client/src/robot/useLightsQuery.ts +++ b/react-api-client/src/robot/useLightsQuery.ts @@ -1,7 +1,8 @@ -import { HostConfig, Lights, getLights } from '@opentrons/api-client' +import { getLights } from '@opentrons/api-client' import { useQuery } from 'react-query' import { useHost } from '../api' import type { UseQueryResult, UseQueryOptions } from 'react-query' +import type { HostConfig, Lights } from '@opentrons/api-client' export type UseLightsQueryOptions = UseQueryOptions< Lights, diff --git a/react-api-client/src/robot/useSetLightsMutation.ts b/react-api-client/src/robot/useSetLightsMutation.ts index 223bd907e9a..c3e36094e3b 100644 --- a/react-api-client/src/robot/useSetLightsMutation.ts +++ b/react-api-client/src/robot/useSetLightsMutation.ts @@ -1,17 +1,13 @@ -import { - HostConfig, - Lights, - setLights, - SetLightsData, -} from '@opentrons/api-client' -import { +import { setLights } from '@opentrons/api-client' +import { useMutation } from 'react-query' +import { useHost } from '../api' +import type { UseMutationResult, - useMutation, UseMutateFunction, UseMutationOptions, } from 'react-query' -import { useHost } from '../api' import type { AxiosError } from 'axios' +import type { HostConfig, Lights, SetLightsData } from '@opentrons/api-client' export type UseSetLightsMutationResult = UseMutationResult< Lights, diff --git a/react-api-client/src/runs/__fixtures__/runActions.ts b/react-api-client/src/runs/__fixtures__/runActions.ts index 41c333dd459..087f8143ac6 100644 --- a/react-api-client/src/runs/__fixtures__/runActions.ts +++ b/react-api-client/src/runs/__fixtures__/runActions.ts @@ -1,9 +1,10 @@ import { - RunAction, RUN_ACTION_TYPE_PLAY, RUN_ACTION_TYPE_PAUSE, RUN_ACTION_TYPE_STOP, + RUN_ACTION_TYPE_RESUME_FROM_RECOVERY, } from '@opentrons/api-client' +import type { RunAction } from '@opentrons/api-client' export const mockPlayRunAction: RunAction = { id: '1', @@ -22,3 +23,9 @@ export const mockStopRunAction: RunAction = { createdAt: '2021-10-25T13:23:31.366581+00:00', actionType: RUN_ACTION_TYPE_STOP, } + +export const mockResumeFromRecoveryAction: RunAction = { + id: '4', + createdAt: '2021-10-25T13:23:31.366581+00:00', + actionType: RUN_ACTION_TYPE_RESUME_FROM_RECOVERY, +} diff --git a/react-api-client/src/runs/__fixtures__/runCommands.ts b/react-api-client/src/runs/__fixtures__/runCommands.ts index 7a78725e2a9..58a6ae11679 100644 --- a/react-api-client/src/runs/__fixtures__/runCommands.ts +++ b/react-api-client/src/runs/__fixtures__/runCommands.ts @@ -1,4 +1,4 @@ -import { CommandsData, RunCommandSummary } from '@opentrons/api-client' +import type { CommandsData, RunCommandSummary } from '@opentrons/api-client' import type { CreateCommand } from '@opentrons/shared-data' export const mockAnonLoadCommand: CreateCommand = { diff --git a/react-api-client/src/runs/__fixtures__/runs.ts b/react-api-client/src/runs/__fixtures__/runs.ts index 47a432f5a5f..33ae7cb4b4d 100644 --- a/react-api-client/src/runs/__fixtures__/runs.ts +++ b/react-api-client/src/runs/__fixtures__/runs.ts @@ -1,10 +1,8 @@ import { RUN_ACTION_TYPE_PLAY, RUN_ACTION_TYPE_PAUSE, - Run, - Runs, - RunData, } from '@opentrons/api-client' +import type { Run, Runs, RunData } from '@opentrons/api-client' export const PROTOCOL_ID = '1' export const RUN_ID_1 = '1' diff --git a/react-api-client/src/runs/__tests__/useCreateRunMutation.test.tsx b/react-api-client/src/runs/__tests__/useCreateRunMutation.test.tsx index 8fb1ebe2752..87d5920f838 100644 --- a/react-api-client/src/runs/__tests__/useCreateRunMutation.test.tsx +++ b/react-api-client/src/runs/__tests__/useCreateRunMutation.test.tsx @@ -2,12 +2,17 @@ import * as React from 'react' import { describe, it, expect, beforeEach, vi } from 'vitest' import { QueryClient, QueryClientProvider } from 'react-query' import { act, renderHook, waitFor } from '@testing-library/react' -import { createRun, CreateRunData } from '@opentrons/api-client' +import { createRun } from '@opentrons/api-client' import { useHost } from '../../api' import { PROTOCOL_ID, mockRunResponse } from '../__fixtures__' import { useCreateRunMutation } from '..' -import type { HostConfig, Response, Run } from '@opentrons/api-client' +import type { + HostConfig, + Response, + Run, + CreateRunData, +} from '@opentrons/api-client' vi.mock('@opentrons/api-client') vi.mock('../../api/useHost') diff --git a/react-api-client/src/runs/__tests__/useResumeRunFromRecoveryMutation.test.tsx b/react-api-client/src/runs/__tests__/useResumeRunFromRecoveryMutation.test.tsx new file mode 100644 index 00000000000..a3ebe42a73d --- /dev/null +++ b/react-api-client/src/runs/__tests__/useResumeRunFromRecoveryMutation.test.tsx @@ -0,0 +1,64 @@ +import * as React from 'react' +import { describe, it, expect, beforeEach, vi } from 'vitest' +import { QueryClient, QueryClientProvider } from 'react-query' +import { act, renderHook, waitFor } from '@testing-library/react' +import { createRunAction } from '@opentrons/api-client' +import { useHost } from '../../api' +import { useResumeRunFromRecoveryMutation } from '..' + +import { RUN_ID_1, mockResumeFromRecoveryAction } from '../__fixtures__' + +import type { HostConfig, Response, RunAction } from '@opentrons/api-client' +import type { UsePlayRunMutationOptions } from '../usePlayRunMutation' + +vi.mock('@opentrons/api-client') +vi.mock('../../api/useHost') + +const HOST_CONFIG: HostConfig = { hostname: 'localhost' } + +describe('usePlayRunMutation hook', () => { + let wrapper: React.FunctionComponent< + { children: React.ReactNode } & UsePlayRunMutationOptions + > + + beforeEach(() => { + const queryClient = new QueryClient() + const clientProvider: React.FunctionComponent< + { children: React.ReactNode } & UsePlayRunMutationOptions + > = ({ children }) => ( + {children} + ) + wrapper = clientProvider + }) + + it('should return no data when calling resumeRunFromRecovery if the request fails', async () => { + vi.mocked(useHost).mockReturnValue(HOST_CONFIG) + vi.mocked(createRunAction).mockRejectedValue('oh no') + + const { result } = renderHook(useResumeRunFromRecoveryMutation, { + wrapper, + }) + + expect(result.current.data).toBeUndefined() + act(() => result.current.resumeRunFromRecovery(RUN_ID_1)) + await waitFor(() => { + expect(result.current.data).toBeUndefined() + }) + }) + + it('should create a resumeFromRecovery run action when calling the resumeRunFromRecovery callback', async () => { + vi.mocked(useHost).mockReturnValue(HOST_CONFIG) + vi.mocked(createRunAction).mockResolvedValue({ + data: mockResumeFromRecoveryAction, + } as Response) + + const { result } = renderHook(useResumeRunFromRecoveryMutation, { + wrapper, + }) + act(() => result.current.resumeRunFromRecovery(RUN_ID_1)) + + await waitFor(() => { + expect(result.current.data).toEqual(mockResumeFromRecoveryAction) + }) + }) +}) diff --git a/react-api-client/src/runs/__tests__/useRunActionMutations.test.tsx b/react-api-client/src/runs/__tests__/useRunActionMutations.test.tsx index 0a6390889a0..6bf609276be 100644 --- a/react-api-client/src/runs/__tests__/useRunActionMutations.test.tsx +++ b/react-api-client/src/runs/__tests__/useRunActionMutations.test.tsx @@ -6,17 +6,22 @@ import { act, renderHook } from '@testing-library/react' import { RUN_ID_1 } from '../__fixtures__' import { useRunActionMutations, - UsePlayRunMutationResult, - UsePauseRunMutationResult, - UseStopRunMutationResult, usePlayRunMutation, usePauseRunMutation, useStopRunMutation, + useResumeRunFromRecoveryMutation, +} from '..' +import type { + UsePlayRunMutationResult, + UsePauseRunMutationResult, + UseStopRunMutationResult, + UseResumeRunFromRecoveryMutationResult, } from '..' vi.mock('../usePlayRunMutation') vi.mock('../usePauseRunMutation') vi.mock('../useStopRunMutation') +vi.mock('../useResumeRunFromRecoveryMutation') describe('useRunActionMutations hook', () => { let wrapper: React.FunctionComponent<{ children: React.ReactNode }> @@ -38,6 +43,7 @@ describe('useRunActionMutations hook', () => { const mockPlayRun = vi.fn() const mockPauseRun = vi.fn() const mockStopRun = vi.fn() + const mockResumeRunFromRecovery = vi.fn() vi.mocked(usePlayRunMutation).mockReturnValue(({ playRun: mockPlayRun, @@ -51,6 +57,10 @@ describe('useRunActionMutations hook', () => { stopRun: mockStopRun, } as unknown) as UseStopRunMutationResult) + vi.mocked(useResumeRunFromRecoveryMutation).mockReturnValue(({ + resumeRunFromRecovery: mockResumeRunFromRecovery, + } as unknown) as UseResumeRunFromRecoveryMutationResult) + const { result } = renderHook(() => useRunActionMutations(RUN_ID_1), { wrapper, }) @@ -64,5 +74,8 @@ describe('useRunActionMutations hook', () => { act(() => result.current.stopRun()) expect(mockStopRun).toHaveBeenCalledTimes(1) expect(mockStopRun).toHaveBeenCalledWith(RUN_ID_1) + act(() => result.current.resumeRunFromRecovery()) + expect(mockResumeRunFromRecovery).toHaveBeenCalledTimes(1) + expect(mockResumeRunFromRecovery).toHaveBeenCalledWith(RUN_ID_1) }) }) diff --git a/react-api-client/src/runs/index.ts b/react-api-client/src/runs/index.ts index 5790abb860b..207950738e1 100644 --- a/react-api-client/src/runs/index.ts +++ b/react-api-client/src/runs/index.ts @@ -8,6 +8,7 @@ export { useDismissCurrentRunMutation } from './useDismissCurrentRunMutation' export { usePlayRunMutation } from './usePlayRunMutation' export { usePauseRunMutation } from './usePauseRunMutation' export { useStopRunMutation } from './useStopRunMutation' +export { useResumeRunFromRecoveryMutation } from './useResumeRunFromRecoveryMutation' export { useRunActionMutations } from './useRunActionMutations' export { useAllCommandsQuery } from './useAllCommandsQuery' export { useAllCommandsAsPreSerializedList } from './useAllCommandsAsPreSerializedList' @@ -18,3 +19,4 @@ export * from './useCreateLabwareDefinitionMutation' export type { UsePlayRunMutationResult } from './usePlayRunMutation' export type { UsePauseRunMutationResult } from './usePauseRunMutation' export type { UseStopRunMutationResult } from './useStopRunMutation' +export type { UseResumeRunFromRecoveryMutationResult } from './useResumeRunFromRecoveryMutation' diff --git a/react-api-client/src/runs/useAllCommandsAsPreSerializedList.ts b/react-api-client/src/runs/useAllCommandsAsPreSerializedList.ts index 5e1825cb764..4d0a34295d0 100644 --- a/react-api-client/src/runs/useAllCommandsAsPreSerializedList.ts +++ b/react-api-client/src/runs/useAllCommandsAsPreSerializedList.ts @@ -1,8 +1,11 @@ import mapValues from 'lodash/mapValues' -import { UseQueryResult, useQuery } from 'react-query' +import { useQuery } from 'react-query' + import { getCommandsAsPreSerializedList } from '@opentrons/api-client' + import { useHost } from '../api' -import type { UseQueryOptions } from 'react-query' + +import type { UseQueryOptions, UseQueryResult } from 'react-query' import type { GetCommandsParams, HostConfig, diff --git a/react-api-client/src/runs/useAllCommandsQuery.ts b/react-api-client/src/runs/useAllCommandsQuery.ts index f258b61836f..20c598d733f 100644 --- a/react-api-client/src/runs/useAllCommandsQuery.ts +++ b/react-api-client/src/runs/useAllCommandsQuery.ts @@ -1,7 +1,7 @@ -import { UseQueryResult, useQuery } from 'react-query' +import { useQuery } from 'react-query' import { getCommands } from '@opentrons/api-client' import { useHost } from '../api' -import type { UseQueryOptions } from 'react-query' +import type { UseQueryOptions, UseQueryResult } from 'react-query' import type { GetCommandsParams, HostConfig, diff --git a/react-api-client/src/runs/useCommandQuery.ts b/react-api-client/src/runs/useCommandQuery.ts index 56c1e269982..2dc76b34163 100644 --- a/react-api-client/src/runs/useCommandQuery.ts +++ b/react-api-client/src/runs/useCommandQuery.ts @@ -1,7 +1,8 @@ -import { UseQueryResult, useQuery } from 'react-query' -import { CommandDetail, HostConfig, getCommand } from '@opentrons/api-client' +import { useQuery } from 'react-query' +import { getCommand } from '@opentrons/api-client' import { useHost } from '../api' -import type { UseQueryOptions } from 'react-query' +import type { UseQueryOptions, UseQueryResult } from 'react-query' +import type { CommandDetail, HostConfig } from '@opentrons/api-client' export function useCommandQuery( runId: string | null, diff --git a/react-api-client/src/runs/useCreateCommandMutation.ts b/react-api-client/src/runs/useCreateCommandMutation.ts index aed58129cd7..3b0fc5f1b56 100644 --- a/react-api-client/src/runs/useCreateCommandMutation.ts +++ b/react-api-client/src/runs/useCreateCommandMutation.ts @@ -1,11 +1,7 @@ import { useMutation, useQueryClient } from 'react-query' import { createCommand } from '@opentrons/api-client' import { useHost } from '../api' -import type { - UseMutationResult, - UseMutationOptions, - UseMutateAsyncFunction, -} from 'react-query' +import type { UseMutationResult, UseMutateAsyncFunction } from 'react-query' import type { CommandData, HostConfig, @@ -32,21 +28,16 @@ export type UseCreateCommandMutationResult = UseMutationResult< > } -export type UseCreateCommandMutationOptions = UseMutationOptions< - CommandData, - unknown, - CreateCommandMutateParams -> - export function useCreateCommandMutation(): UseCreateCommandMutationResult { const host = useHost() const queryClient = useQueryClient() const mutation = useMutation( - ({ runId, command, waitUntilComplete, timeout }) => - createCommand(host as HostConfig, runId, command, { - waitUntilComplete, - timeout, + params => { + const { runId, command, ...rest } = params + + return createCommand(host as HostConfig, runId, command, { + ...rest, }).then(response => { queryClient .invalidateQueries([host, 'runs']) @@ -55,6 +46,7 @@ export function useCreateCommandMutation(): UseCreateCommandMutationResult { ) return response.data }) + } ) return { diff --git a/react-api-client/src/runs/useCreateLabwareOffsetMutation.ts b/react-api-client/src/runs/useCreateLabwareOffsetMutation.ts index 1ca3c56de41..0acf522c1c1 100644 --- a/react-api-client/src/runs/useCreateLabwareOffsetMutation.ts +++ b/react-api-client/src/runs/useCreateLabwareOffsetMutation.ts @@ -1,10 +1,11 @@ import { useMutation, useQueryClient } from 'react-query' -import { - createLabwareOffset, +import { createLabwareOffset } from '@opentrons/api-client' +import { useHost } from '../api' +import type { + HostConfig, + Run, LabwareOffsetCreateData, } from '@opentrons/api-client' -import { useHost } from '../api' -import type { HostConfig, Run } from '@opentrons/api-client' import type { UseMutationResult, UseMutateAsyncFunction } from 'react-query' interface CreateLabwareOffsetParams { diff --git a/react-api-client/src/runs/useCreateRunMutation.ts b/react-api-client/src/runs/useCreateRunMutation.ts index 9a40d1f58bf..f3b5490d96a 100644 --- a/react-api-client/src/runs/useCreateRunMutation.ts +++ b/react-api-client/src/runs/useCreateRunMutation.ts @@ -1,17 +1,13 @@ -import { - HostConfig, - Run, - createRun, - CreateRunData, -} from '@opentrons/api-client' -import { +import { createRun } from '@opentrons/api-client' +import { useMutation } from 'react-query' +import { useHost } from '../api' +import type { AxiosError } from 'axios' +import type { UseMutationResult, - useMutation, UseMutateFunction, UseMutationOptions, } from 'react-query' -import { useHost } from '../api' -import type { AxiosError } from 'axios' +import type { HostConfig, CreateRunData, Run } from '@opentrons/api-client' export type UseCreateRunMutationResult = UseMutationResult< Run, diff --git a/react-api-client/src/runs/usePauseRunMutation.ts b/react-api-client/src/runs/usePauseRunMutation.ts index 0be8be79959..e87c830c1b0 100644 --- a/react-api-client/src/runs/usePauseRunMutation.ts +++ b/react-api-client/src/runs/usePauseRunMutation.ts @@ -1,18 +1,14 @@ -import { - HostConfig, - RunAction, - RUN_ACTION_TYPE_PAUSE, - createRunAction, -} from '@opentrons/api-client' -import { +import { RUN_ACTION_TYPE_PAUSE, createRunAction } from '@opentrons/api-client' +import { useMutation } from 'react-query' +import { useHost } from '../api' + +import type { UseMutationResult, - useMutation, UseMutateFunction, UseMutationOptions, } from 'react-query' -import { useHost } from '../api' - import type { AxiosError } from 'axios' +import type { HostConfig, RunAction } from '@opentrons/api-client' export type UsePauseRunMutationResult = UseMutationResult< RunAction, diff --git a/react-api-client/src/runs/usePlayRunMutation.ts b/react-api-client/src/runs/usePlayRunMutation.ts index c047a8fea4b..26b8c53c9e3 100644 --- a/react-api-client/src/runs/usePlayRunMutation.ts +++ b/react-api-client/src/runs/usePlayRunMutation.ts @@ -1,18 +1,14 @@ -import { - HostConfig, - RunAction, - RUN_ACTION_TYPE_PLAY, - createRunAction, -} from '@opentrons/api-client' -import { +import { RUN_ACTION_TYPE_PLAY, createRunAction } from '@opentrons/api-client' +import { useMutation } from 'react-query' +import { useHost } from '../api' + +import type { UseMutationResult, - useMutation, UseMutateFunction, UseMutationOptions, } from 'react-query' -import { useHost } from '../api' - import type { AxiosError } from 'axios' +import type { HostConfig, RunAction } from '@opentrons/api-client' export type UsePlayRunMutationResult = UseMutationResult< RunAction, diff --git a/react-api-client/src/runs/useResumeRunFromRecoveryMutation.ts b/react-api-client/src/runs/useResumeRunFromRecoveryMutation.ts new file mode 100644 index 00000000000..dac560f0e92 --- /dev/null +++ b/react-api-client/src/runs/useResumeRunFromRecoveryMutation.ts @@ -0,0 +1,52 @@ +import { useMutation } from 'react-query' + +import { + RUN_ACTION_TYPE_RESUME_FROM_RECOVERY, + createRunAction, +} from '@opentrons/api-client' + +import { useHost } from '../api' + +import type { AxiosError } from 'axios' +import type { + UseMutateFunction, + UseMutationOptions, + UseMutationResult, +} from 'react-query' +import type { HostConfig, RunAction } from '@opentrons/api-client' + +export type UseResumeRunFromRecoveryMutationResult = UseMutationResult< + RunAction, + AxiosError, + string +> & { + resumeRunFromRecovery: UseMutateFunction +} + +export type UseResumeRunFromRecoveryMutationOptions = UseMutationOptions< + RunAction, + AxiosError, + string +> + +export const useResumeRunFromRecoveryMutation = ( + options: UseResumeRunFromRecoveryMutationOptions = {} +): UseResumeRunFromRecoveryMutationResult => { + const host = useHost() + const mutation = useMutation( + [host, 'runs', RUN_ACTION_TYPE_RESUME_FROM_RECOVERY], + (runId: string) => + createRunAction(host as HostConfig, runId, { + actionType: RUN_ACTION_TYPE_RESUME_FROM_RECOVERY, + }) + .then(response => response.data) + .catch(e => { + throw e + }), + options + ) + return { + ...mutation, + resumeRunFromRecovery: mutation.mutate, + } +} diff --git a/react-api-client/src/runs/useRunActionMutations.ts b/react-api-client/src/runs/useRunActionMutations.ts index b178af3d5d7..7d0eb6158ad 100644 --- a/react-api-client/src/runs/useRunActionMutations.ts +++ b/react-api-client/src/runs/useRunActionMutations.ts @@ -4,15 +4,18 @@ import { usePlayRunMutation, usePauseRunMutation, useStopRunMutation, + useResumeRunFromRecoveryMutation, } from '..' interface UseRunActionMutations { playRun: () => void pauseRun: () => void stopRun: () => void + resumeRunFromRecovery: () => void isPlayRunActionLoading: boolean isPauseRunActionLoading: boolean isStopRunActionLoading: boolean + isResumeRunFromRecoveryActionLoading: boolean } export function useRunActionMutations(runId: string): UseRunActionMutations { @@ -37,12 +40,19 @@ export function useRunActionMutations(runId: string): UseRunActionMutations { const { stopRun, isLoading: isStopRunActionLoading } = useStopRunMutation() + const { + resumeRunFromRecovery, + isLoading: isResumeRunFromRecoveryActionLoading, + } = useResumeRunFromRecoveryMutation() + return { playRun: () => playRun(runId), pauseRun: () => pauseRun(runId), stopRun: () => stopRun(runId), + resumeRunFromRecovery: () => resumeRunFromRecovery(runId), isPlayRunActionLoading, isPauseRunActionLoading, isStopRunActionLoading, + isResumeRunFromRecoveryActionLoading, } } diff --git a/react-api-client/src/runs/useStopRunMutation.ts b/react-api-client/src/runs/useStopRunMutation.ts index 1d102cdae08..14b690cfa62 100644 --- a/react-api-client/src/runs/useStopRunMutation.ts +++ b/react-api-client/src/runs/useStopRunMutation.ts @@ -1,9 +1,4 @@ -import { - HostConfig, - RunAction, - RUN_ACTION_TYPE_STOP, - createRunAction, -} from '@opentrons/api-client' +import { RUN_ACTION_TYPE_STOP, createRunAction } from '@opentrons/api-client' import { useMutation } from 'react-query' import { useHost } from '../api' @@ -12,6 +7,7 @@ import type { UseMutateFunction, UseMutationOptions, } from 'react-query' +import type { HostConfig, RunAction } from '@opentrons/api-client' export type UseStopRunMutationResult = UseMutationResult< RunAction, diff --git a/react-api-client/src/server/useUpdateRobotNameMutation.ts b/react-api-client/src/server/useUpdateRobotNameMutation.ts index d4ae290d92a..6b78165e53c 100644 --- a/react-api-client/src/server/useUpdateRobotNameMutation.ts +++ b/react-api-client/src/server/useUpdateRobotNameMutation.ts @@ -1,12 +1,11 @@ -import { +import { useMutation, useQueryClient } from 'react-query' +import { updateRobotName } from '@opentrons/api-client' +import { useHost } from '../api' +import type { UseMutationResult, UseMutationOptions, - useMutation, UseMutateFunction, - useQueryClient, } from 'react-query' -import { updateRobotName } from '@opentrons/api-client' -import { useHost } from '../api' import type { AxiosError } from 'axios' import type { ErrorResponse, diff --git a/react-api-client/src/sessions/__tests__/useAllSessionsQuery.test.tsx b/react-api-client/src/sessions/__tests__/useAllSessionsQuery.test.tsx index 426c116cf3c..45d9eae6484 100644 --- a/react-api-client/src/sessions/__tests__/useAllSessionsQuery.test.tsx +++ b/react-api-client/src/sessions/__tests__/useAllSessionsQuery.test.tsx @@ -1,11 +1,12 @@ import * as React from 'react' import { describe, it, expect, beforeEach, vi } from 'vitest' -import { QueryClient, QueryClientProvider, UseQueryOptions } from 'react-query' +import { QueryClient, QueryClientProvider } from 'react-query' import { renderHook, waitFor } from '@testing-library/react' import { getSessions } from '@opentrons/api-client' import { useHost } from '../../api' import { useAllSessionsQuery } from '..' +import type { UseQueryOptions } from 'react-query' import type { HostConfig, Response, Sessions } from '@opentrons/api-client' vi.mock('@opentrons/api-client') diff --git a/react-api-client/src/sessions/__tests__/useCreateSessionMutation.test.tsx b/react-api-client/src/sessions/__tests__/useCreateSessionMutation.test.tsx index c4dea17c8cc..982c2049200 100644 --- a/react-api-client/src/sessions/__tests__/useCreateSessionMutation.test.tsx +++ b/react-api-client/src/sessions/__tests__/useCreateSessionMutation.test.tsx @@ -4,13 +4,17 @@ import { QueryClient, QueryClientProvider } from 'react-query' import { act, renderHook, waitFor } from '@testing-library/react' import { createSession, - CreateSessionData, SESSION_TYPE_DECK_CALIBRATION, } from '@opentrons/api-client' import { useHost } from '../../api' import { useCreateSessionMutation } from '..' -import type { HostConfig, Response, Session } from '@opentrons/api-client' +import type { + HostConfig, + Response, + Session, + CreateSessionData, +} from '@opentrons/api-client' vi.mock('@opentrons/api-client') vi.mock('../../api/useHost') diff --git a/react-api-client/src/sessions/useAllSessionsQuery.ts b/react-api-client/src/sessions/useAllSessionsQuery.ts index 238b1ca17cf..34256b008cc 100644 --- a/react-api-client/src/sessions/useAllSessionsQuery.ts +++ b/react-api-client/src/sessions/useAllSessionsQuery.ts @@ -1,8 +1,9 @@ -import { HostConfig, Sessions, getSessions } from '@opentrons/api-client' -import { UseQueryResult, useQuery } from 'react-query' +import { getSessions } from '@opentrons/api-client' +import { useQuery } from 'react-query' import { useHost } from '../api' -import type { UseQueryOptions } from 'react-query' +import type { UseQueryResult, UseQueryOptions } from 'react-query' +import type { HostConfig, Sessions } from '@opentrons/api-client' export function useAllSessionsQuery( options: UseQueryOptions = {} diff --git a/react-api-client/src/sessions/useCreateSessionMutation.ts b/react-api-client/src/sessions/useCreateSessionMutation.ts index aae57332e81..c78ada4b903 100644 --- a/react-api-client/src/sessions/useCreateSessionMutation.ts +++ b/react-api-client/src/sessions/useCreateSessionMutation.ts @@ -1,11 +1,13 @@ -import { +import { createSession } from '@opentrons/api-client' +import { useMutation } from 'react-query' +import { useHost } from '../api' + +import type { UseMutationResult, UseMutateFunction } from 'react-query' +import type { HostConfig, Session, - createSession, CreateSessionData, } from '@opentrons/api-client' -import { UseMutationResult, useMutation, UseMutateFunction } from 'react-query' -import { useHost } from '../api' export type UseCreateSessionMutationResult = UseMutationResult< Session, diff --git a/react-api-client/src/sessions/useSessionQuery.ts b/react-api-client/src/sessions/useSessionQuery.ts index e522be2b5b2..0f6cfa5bca0 100644 --- a/react-api-client/src/sessions/useSessionQuery.ts +++ b/react-api-client/src/sessions/useSessionQuery.ts @@ -1,7 +1,10 @@ -import { HostConfig, Session, getSession } from '@opentrons/api-client' -import { UseQueryResult, useQuery } from 'react-query' +import { getSession } from '@opentrons/api-client' +import { useQuery } from 'react-query' import { useHost } from '../api' +import type { UseQueryResult } from 'react-query' +import type { HostConfig, Session } from '@opentrons/api-client' + export function useSessionQuery(sessionId: string): UseQueryResult { const host = useHost() const query = useQuery( diff --git a/react-api-client/src/sessions/useSessionsByTypeQuery.ts b/react-api-client/src/sessions/useSessionsByTypeQuery.ts index 3d67b52f182..7e86c2cff35 100644 --- a/react-api-client/src/sessions/useSessionsByTypeQuery.ts +++ b/react-api-client/src/sessions/useSessionsByTypeQuery.ts @@ -1,12 +1,10 @@ -import { - getSessions, - HostConfig, - Sessions, - SessionType, -} from '@opentrons/api-client' -import { UseQueryResult, useQuery } from 'react-query' +import { getSessions } from '@opentrons/api-client' +import { useQuery } from 'react-query' import { useHost } from '../api' +import type { UseQueryResult } from 'react-query' +import type { HostConfig, Sessions, SessionType } from '@opentrons/api-client' + export function useSessionsByTypeQuery(args: { sessionType: SessionType }): UseQueryResult { diff --git a/react-api-client/src/system/useAuthorization.ts b/react-api-client/src/system/useAuthorization.ts index 02fa26d4734..db793536db3 100644 --- a/react-api-client/src/system/useAuthorization.ts +++ b/react-api-client/src/system/useAuthorization.ts @@ -1,11 +1,9 @@ import * as React from 'react' -import { - createAuthorization, - createRegistration, - HostConfig, -} from '@opentrons/api-client' +import { createAuthorization, createRegistration } from '@opentrons/api-client' import { useHost } from '../api' + import type { + HostConfig, AuthorizationToken, CreateRegistrationParams, RegistrationToken, diff --git a/robot-server/Pipfile b/robot-server/Pipfile index 2d22c6dc34c..0b70739eac3 100755 --- a/robot-server/Pipfile +++ b/robot-server/Pipfile @@ -37,6 +37,7 @@ sqlalchemy2-stubs = "==0.0.2a21" python-box = "==6.1.0" types-paho-mqtt = "==1.6.0.20240106" performance-metrics = {file = "../performance-metrics", editable = true} +pyusb = "==1.2.1" [packages] anyio = "==3.7.1" diff --git a/robot-server/Pipfile.lock b/robot-server/Pipfile.lock index 2ea9f545696..af344b810f6 100644 --- a/robot-server/Pipfile.lock +++ b/robot-server/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "9f64ba7d87b9c9fd510aac5c4a22fa748c1bb3b9936826ef2b4b13454c1c5e2b" + "sha256": "f43123500e774f5b9a92f2be8ae39a04af8df7ba2ae4b2a505f1bb4b751cc30a" }, "pipfile-spec": 6, "requires": { @@ -154,11 +154,11 @@ }, "exceptiongroup": { "hashes": [ - "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14", - "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68" + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" ], "markers": "python_version < '3.11'", - "version": "==1.2.0" + "version": "==1.2.1" }, "fastapi": { "hashes": [ @@ -252,70 +252,6 @@ "markers": "python_version >= '3.8'", "version": "==1.4.1" }, - "greenlet": { - "hashes": [ - "sha256:01bc7ea167cf943b4c802068e178bbf70ae2e8c080467070d01bfa02f337ee67", - "sha256:0448abc479fab28b00cb472d278828b3ccca164531daab4e970a0458786055d6", - "sha256:086152f8fbc5955df88382e8a75984e2bb1c892ad2e3c80a2508954e52295257", - "sha256:098d86f528c855ead3479afe84b49242e174ed262456c342d70fc7f972bc13c4", - "sha256:149e94a2dd82d19838fe4b2259f1b6b9957d5ba1b25640d2380bea9c5df37676", - "sha256:1551a8195c0d4a68fac7a4325efac0d541b48def35feb49d803674ac32582f61", - "sha256:15d79dd26056573940fcb8c7413d84118086f2ec1a8acdfa854631084393efcc", - "sha256:1996cb9306c8595335bb157d133daf5cf9f693ef413e7673cb07e3e5871379ca", - "sha256:1a7191e42732df52cb5f39d3527217e7ab73cae2cb3694d241e18f53d84ea9a7", - "sha256:1ea188d4f49089fc6fb283845ab18a2518d279c7cd9da1065d7a84e991748728", - "sha256:1f672519db1796ca0d8753f9e78ec02355e862d0998193038c7073045899f305", - "sha256:2516a9957eed41dd8f1ec0c604f1cdc86758b587d964668b5b196a9db5bfcde6", - "sha256:2797aa5aedac23af156bbb5a6aa2cd3427ada2972c828244eb7d1b9255846379", - "sha256:2dd6e660effd852586b6a8478a1d244b8dc90ab5b1321751d2ea15deb49ed414", - "sha256:3ddc0f794e6ad661e321caa8d2f0a55ce01213c74722587256fb6566049a8b04", - "sha256:3ed7fb269f15dc662787f4119ec300ad0702fa1b19d2135a37c2c4de6fadfd4a", - "sha256:419b386f84949bf0e7c73e6032e3457b82a787c1ab4a0e43732898a761cc9dbf", - "sha256:43374442353259554ce33599da8b692d5aa96f8976d567d4badf263371fbe491", - "sha256:52f59dd9c96ad2fc0d5724107444f76eb20aaccb675bf825df6435acb7703559", - "sha256:57e8974f23e47dac22b83436bdcf23080ade568ce77df33159e019d161ce1d1e", - "sha256:5b51e85cb5ceda94e79d019ed36b35386e8c37d22f07d6a751cb659b180d5274", - "sha256:649dde7de1a5eceb258f9cb00bdf50e978c9db1b996964cd80703614c86495eb", - "sha256:64d7675ad83578e3fc149b617a444fab8efdafc9385471f868eb5ff83e446b8b", - "sha256:68834da854554926fbedd38c76e60c4a2e3198c6fbed520b106a8986445caaf9", - "sha256:6b66c9c1e7ccabad3a7d037b2bcb740122a7b17a53734b7d72a344ce39882a1b", - "sha256:70fb482fdf2c707765ab5f0b6655e9cfcf3780d8d87355a063547b41177599be", - "sha256:7170375bcc99f1a2fbd9c306f5be8764eaf3ac6b5cb968862cad4c7057756506", - "sha256:73a411ef564e0e097dbe7e866bb2dda0f027e072b04da387282b02c308807405", - "sha256:77457465d89b8263bca14759d7c1684df840b6811b2499838cc5b040a8b5b113", - "sha256:7f362975f2d179f9e26928c5b517524e89dd48530a0202570d55ad6ca5d8a56f", - "sha256:81bb9c6d52e8321f09c3d165b2a78c680506d9af285bfccbad9fb7ad5a5da3e5", - "sha256:881b7db1ebff4ba09aaaeae6aa491daeb226c8150fc20e836ad00041bcb11230", - "sha256:894393ce10ceac937e56ec00bb71c4c2f8209ad516e96033e4b3b1de270e200d", - "sha256:99bf650dc5d69546e076f413a87481ee1d2d09aaaaaca058c9251b6d8c14783f", - "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a", - "sha256:afaff6cf5200befd5cec055b07d1c0a5a06c040fe5ad148abcd11ba6ab9b114e", - "sha256:b1b5667cced97081bf57b8fa1d6bfca67814b0afd38208d52538316e9422fc61", - "sha256:b37eef18ea55f2ffd8f00ff8fe7c8d3818abd3e25fb73fae2ca3b672e333a7a6", - "sha256:b542be2440edc2d48547b5923c408cbe0fc94afb9f18741faa6ae970dbcb9b6d", - "sha256:b7dcbe92cc99f08c8dd11f930de4d99ef756c3591a5377d1d9cd7dd5e896da71", - "sha256:b7f009caad047246ed379e1c4dbcb8b020f0a390667ea74d2387be2998f58a22", - "sha256:bba5387a6975598857d86de9eac14210a49d554a77eb8261cc68b7d082f78ce2", - "sha256:c5e1536de2aad7bf62e27baf79225d0d64360d4168cf2e6becb91baf1ed074f3", - "sha256:c5ee858cfe08f34712f548c3c363e807e7186f03ad7a5039ebadb29e8c6be067", - "sha256:c9db1c18f0eaad2f804728c67d6c610778456e3e1cc4ab4bbd5eeb8e6053c6fc", - "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881", - "sha256:d46677c85c5ba00a9cb6f7a00b2bfa6f812192d2c9f7d9c4f6a55b60216712f3", - "sha256:d4d1ac74f5c0c0524e4a24335350edad7e5f03b9532da7ea4d3c54d527784f2e", - "sha256:d73a9fe764d77f87f8ec26a0c85144d6a951a6c438dfe50487df5595c6373eac", - "sha256:da70d4d51c8b306bb7a031d5cff6cc25ad253affe89b70352af5f1cb68e74b53", - "sha256:daf3cb43b7cf2ba96d614252ce1684c1bccee6b2183a01328c98d36fcd7d5cb0", - "sha256:dca1e2f3ca00b84a396bc1bce13dd21f680f035314d2379c4160c98153b2059b", - "sha256:dd4f49ae60e10adbc94b45c0b5e6a179acc1736cf7a90160b404076ee283cf83", - "sha256:e1f145462f1fa6e4a4ae3c0f782e580ce44d57c8f2c7aae1b6fa88c0b2efdb41", - "sha256:e3391d1e16e2a5a1507d83e4a8b100f4ee626e8eca43cf2cadb543de69827c4c", - "sha256:fcd2469d6a2cf298f198f0487e0a5b1a47a42ca0fa4dfd1b6862c999f018ebbf", - "sha256:fd096eb7ffef17c456cfa587523c5f92321ae02427ff955bebe9e3c63bc9f0da", - "sha256:fe754d231288e1e64323cfad462fcee8f0288654c10bdf4f603a39ed923bef33" - ], - "markers": "python_version >= '3' and platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32')))))", - "version": "==3.0.3" - }, "h11": { "hashes": [ "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d", @@ -528,7 +464,7 @@ }, "opentrons": { "editable": true, - "markers": "python_version >= '3.8'", + "markers": "python_version >= '3.10'", "path": "../api" }, "opentrons-hardware": { @@ -540,7 +476,7 @@ }, "opentrons-shared-data": { "editable": true, - "markers": "python_version >= '3.8'", + "markers": "python_version >= '3.10'", "path": "../shared-data/python" }, "packaging": { @@ -1066,61 +1002,61 @@ "toml" ], "hashes": [ - "sha256:00838a35b882694afda09f85e469c96367daa3f3f2b097d846a7216993d37f4c", - "sha256:0513b9508b93da4e1716744ef6ebc507aff016ba115ffe8ecff744d1322a7b63", - "sha256:09c3255458533cb76ef55da8cc49ffab9e33f083739c8bd4f58e79fecfe288f7", - "sha256:09ef9199ed6653989ebbcaacc9b62b514bb63ea2f90256e71fea3ed74bd8ff6f", - "sha256:09fa497a8ab37784fbb20ab699c246053ac294d13fc7eb40ec007a5043ec91f8", - "sha256:0f9f50e7ef2a71e2fae92774c99170eb8304e3fdf9c8c3c7ae9bab3e7229c5cf", - "sha256:137eb07173141545e07403cca94ab625cc1cc6bc4c1e97b6e3846270e7e1fea0", - "sha256:1f384c3cc76aeedce208643697fb3e8437604b512255de6d18dae3f27655a384", - "sha256:201bef2eea65e0e9c56343115ba3814e896afe6d36ffd37bab783261db430f76", - "sha256:38dd60d7bf242c4ed5b38e094baf6401faa114fc09e9e6632374388a404f98e7", - "sha256:3b799445b9f7ee8bf299cfaed6f5b226c0037b74886a4e11515e569b36fe310d", - "sha256:3ea79bb50e805cd6ac058dfa3b5c8f6c040cb87fe83de10845857f5535d1db70", - "sha256:40209e141059b9370a2657c9b15607815359ab3ef9918f0196b6fccce8d3230f", - "sha256:41c9c5f3de16b903b610d09650e5e27adbfa7f500302718c9ffd1c12cf9d6818", - "sha256:54eb8d1bf7cacfbf2a3186019bcf01d11c666bd495ed18717162f7eb1e9dd00b", - "sha256:598825b51b81c808cb6f078dcb972f96af96b078faa47af7dfcdf282835baa8d", - "sha256:5fc1de20b2d4a061b3df27ab9b7c7111e9a710f10dc2b84d33a4ab25065994ec", - "sha256:623512f8ba53c422fcfb2ce68362c97945095b864cda94a92edbaf5994201083", - "sha256:690db6517f09336559dc0b5f55342df62370a48f5469fabf502db2c6d1cffcd2", - "sha256:69eb372f7e2ece89f14751fbcbe470295d73ed41ecd37ca36ed2eb47512a6ab9", - "sha256:73bfb9c09951125d06ee473bed216e2c3742f530fc5acc1383883125de76d9cd", - "sha256:742a76a12aa45b44d236815d282b03cfb1de3b4323f3e4ec933acfae08e54ade", - "sha256:7c95949560050d04d46b919301826525597f07b33beba6187d04fa64d47ac82e", - "sha256:8130a2aa2acb8788e0b56938786c33c7c98562697bf9f4c7d6e8e5e3a0501e4a", - "sha256:8a2b2b78c78293782fd3767d53e6474582f62443d0504b1554370bde86cc8227", - "sha256:8ce1415194b4a6bd0cdcc3a1dfbf58b63f910dcb7330fe15bdff542c56949f87", - "sha256:9ca28a302acb19b6af89e90f33ee3e1906961f94b54ea37de6737b7ca9d8827c", - "sha256:a4cdc86d54b5da0df6d3d3a2f0b710949286094c3a6700c21e9015932b81447e", - "sha256:aa5b1c1bfc28384f1f53b69a023d789f72b2e0ab1b3787aae16992a7ca21056c", - "sha256:aadacf9a2f407a4688d700e4ebab33a7e2e408f2ca04dbf4aef17585389eff3e", - "sha256:ae71e7ddb7a413dd60052e90528f2f65270aad4b509563af6d03d53e979feafd", - "sha256:b14706df8b2de49869ae03a5ccbc211f4041750cd4a66f698df89d44f4bd30ec", - "sha256:b1a93009cb80730c9bca5d6d4665494b725b6e8e157c1cb7f2db5b4b122ea562", - "sha256:b2991665420a803495e0b90a79233c1433d6ed77ef282e8e152a324bbbc5e0c8", - "sha256:b2c5edc4ac10a7ef6605a966c58929ec6c1bd0917fb8c15cb3363f65aa40e677", - "sha256:b4d33f418f46362995f1e9d4f3a35a1b6322cb959c31d88ae56b0298e1c22357", - "sha256:b91cbc4b195444e7e258ba27ac33769c41b94967919f10037e6355e998af255c", - "sha256:c74880fc64d4958159fbd537a091d2a585448a8f8508bf248d72112723974cbd", - "sha256:c901df83d097649e257e803be22592aedfd5182f07b3cc87d640bbb9afd50f49", - "sha256:cac99918c7bba15302a2d81f0312c08054a3359eaa1929c7e4b26ebe41e9b286", - "sha256:cc4f1358cb0c78edef3ed237ef2c86056206bb8d9140e73b6b89fbcfcbdd40e1", - "sha256:ccd341521be3d1b3daeb41960ae94a5e87abe2f46f17224ba5d6f2b8398016cf", - "sha256:ce4b94265ca988c3f8e479e741693d143026632672e3ff924f25fab50518dd51", - "sha256:cf271892d13e43bc2b51e6908ec9a6a5094a4df1d8af0bfc360088ee6c684409", - "sha256:d5ae728ff3b5401cc320d792866987e7e7e880e6ebd24433b70a33b643bb0384", - "sha256:d71eec7d83298f1af3326ce0ff1d0ea83c7cb98f72b577097f9083b20bdaf05e", - "sha256:d898fe162d26929b5960e4e138651f7427048e72c853607f2b200909794ed978", - "sha256:d89d7b2974cae412400e88f35d86af72208e1ede1a541954af5d944a8ba46c57", - "sha256:dfa8fe35a0bb90382837b238fff375de15f0dcdb9ae68ff85f7a63649c98527e", - "sha256:e0be5efd5127542ef31f165de269f77560d6cdef525fffa446de6f7e9186cfb2", - "sha256:fdfafb32984684eb03c2d83e1e51f64f0906b11e64482df3c5db936ce3839d48", - "sha256:ff7687ca3d7028d8a5f0ebae95a6e4827c5616b31a4ee1192bdfde697db110d4" + "sha256:0646599e9b139988b63704d704af8e8df7fa4cbc4a1f33df69d97f36cb0a38de", + "sha256:0cdcbc320b14c3e5877ee79e649677cb7d89ef588852e9583e6b24c2e5072661", + "sha256:0d0a0f5e06881ecedfe6f3dd2f56dcb057b6dbeb3327fd32d4b12854df36bf26", + "sha256:1434e088b41594baa71188a17533083eabf5609e8e72f16ce8c186001e6b8c41", + "sha256:16db7f26000a07efcf6aea00316f6ac57e7d9a96501e990a36f40c965ec7a95d", + "sha256:1cc0fe9b0b3a8364093c53b0b4c0c2dd4bb23acbec4c9240b5f284095ccf7981", + "sha256:1fc81d5878cd6274ce971e0a3a18a8803c3fe25457165314271cf78e3aae3aa2", + "sha256:2ec92012fefebee89a6b9c79bc39051a6cb3891d562b9270ab10ecfdadbc0c34", + "sha256:39afcd3d4339329c5f58de48a52f6e4e50f6578dd6099961cf22228feb25f38f", + "sha256:4a7b0ceee8147444347da6a66be737c9d78f3353b0681715b668b72e79203e4a", + "sha256:4a9ca3f2fae0088c3c71d743d85404cec8df9be818a005ea065495bedc33da35", + "sha256:4bf0655ab60d754491004a5efd7f9cccefcc1081a74c9ef2da4735d6ee4a6223", + "sha256:4cc37def103a2725bc672f84bd939a6fe4522310503207aae4d56351644682f1", + "sha256:4fc84a37bfd98db31beae3c2748811a3fa72bf2007ff7902f68746d9757f3746", + "sha256:5037f8fcc2a95b1f0e80585bd9d1ec31068a9bcb157d9750a172836e98bc7a90", + "sha256:54de9ef3a9da981f7af93eafde4ede199e0846cd819eb27c88e2b712aae9708c", + "sha256:556cf1a7cbc8028cb60e1ff0be806be2eded2daf8129b8811c63e2b9a6c43bca", + "sha256:57e0204b5b745594e5bc14b9b50006da722827f0b8c776949f1135677e88d0b8", + "sha256:5a5740d1fb60ddf268a3811bcd353de34eb56dc24e8f52a7f05ee513b2d4f596", + "sha256:5c3721c2c9e4c4953a41a26c14f4cef64330392a6d2d675c8b1db3b645e31f0e", + "sha256:5fa567e99765fe98f4e7d7394ce623e794d7cabb170f2ca2ac5a4174437e90dd", + "sha256:5fd215c0c7d7aab005221608a3c2b46f58c0285a819565887ee0b718c052aa4e", + "sha256:6175d1a0559986c6ee3f7fccfc4a90ecd12ba0a383dcc2da30c2b9918d67d8a3", + "sha256:61c4bf1ba021817de12b813338c9be9f0ad5b1e781b9b340a6d29fc13e7c1b5e", + "sha256:6537e7c10cc47c595828b8a8be04c72144725c383c4702703ff4e42e44577312", + "sha256:68f962d9b72ce69ea8621f57551b2fa9c70509af757ee3b8105d4f51b92b41a7", + "sha256:7352b9161b33fd0b643ccd1f21f3a3908daaddf414f1c6cb9d3a2fd618bf2572", + "sha256:796a79f63eca8814ca3317a1ea443645c9ff0d18b188de470ed7ccd45ae79428", + "sha256:79afb6197e2f7f60c4824dd4b2d4c2ec5801ceb6ba9ce5d2c3080e5660d51a4f", + "sha256:7a588d39e0925f6a2bff87154752481273cdb1736270642aeb3635cb9b4cad07", + "sha256:8748731ad392d736cc9ccac03c9845b13bb07d020a33423fa5b3a36521ac6e4e", + "sha256:8fe7502616b67b234482c3ce276ff26f39ffe88adca2acf0261df4b8454668b4", + "sha256:9314d5678dcc665330df5b69c1e726a0e49b27df0461c08ca12674bcc19ef136", + "sha256:9735317685ba6ec7e3754798c8871c2f49aa5e687cc794a0b1d284b2389d1bd5", + "sha256:9981706d300c18d8b220995ad22627647be11a4276721c10911e0e9fa44c83e8", + "sha256:9e78295f4144f9dacfed4f92935fbe1780021247c2fabf73a819b17f0ccfff8d", + "sha256:b016ea6b959d3b9556cb401c55a37547135a587db0115635a443b2ce8f1c7228", + "sha256:b6cf3764c030e5338e7f61f95bd21147963cf6aa16e09d2f74f1fa52013c1206", + "sha256:beccf7b8a10b09c4ae543582c1319c6df47d78fd732f854ac68d518ee1fb97fa", + "sha256:c0884920835a033b78d1c73b6d3bbcda8161a900f38a488829a83982925f6c2e", + "sha256:c3e757949f268364b96ca894b4c342b41dc6f8f8b66c37878aacef5930db61be", + "sha256:ca498687ca46a62ae590253fba634a1fe9836bc56f626852fb2720f334c9e4e5", + "sha256:d1d0d98d95dd18fe29dc66808e1accf59f037d5716f86a501fc0256455219668", + "sha256:d21918e9ef11edf36764b93101e2ae8cc82aa5efdc7c5a4e9c6c35a48496d601", + "sha256:d7fed867ee50edf1a0b4a11e8e5d0895150e572af1cd6d315d557758bfa9c057", + "sha256:db66fc317a046556a96b453a58eced5024af4582a8dbdc0c23ca4dbc0d5b3146", + "sha256:dde0070c40ea8bb3641e811c1cfbf18e265d024deff6de52c5950677a8fb1e0f", + "sha256:df4e745a81c110e7446b1cc8131bf986157770fa405fe90e15e850aaf7619bc8", + "sha256:e2213def81a50519d7cc56ed643c9e93e0247f5bbe0d1247d15fa520814a7cd7", + "sha256:ef48e2707fb320c8f139424a596f5b69955a85b178f15af261bab871873bb987", + "sha256:f152cbf5b88aaeb836127d920dd0f5e7edff5a66f10c079157306c4343d86c19", + "sha256:fc0b4d8bfeabd25ea75e94632f5b6e047eef8adaed0c2161ada1e922e7f7cece" ], "markers": "python_version >= '3.8'", - "version": "==7.4.4" + "version": "==7.5.1" }, "decoy": { "hashes": [ @@ -1139,11 +1075,11 @@ }, "exceptiongroup": { "hashes": [ - "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14", - "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68" + "sha256:5258b9ed329c5bbdd31a309f53cbfb0b155341807f6ff7606a1e801a891b29ad", + "sha256:a4785e48b045528f5bfe627b6ad554ff32def154f42372786903b7abcfe1aa16" ], "markers": "python_version < '3.11'", - "version": "==1.2.0" + "version": "==1.2.1" }, "execnet": { "hashes": [ @@ -1317,7 +1253,7 @@ }, "opentrons-shared-data": { "editable": true, - "markers": "python_version >= '3.8'", + "markers": "python_version >= '3.10'", "path": "../shared-data/python" }, "packaging": { @@ -1356,19 +1292,19 @@ }, "platformdirs": { "hashes": [ - "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068", - "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768" + "sha256:2d7a1657e36a80ea911db832a8a6ece5ee53d8de21edd5cc5879af6530b1bfee", + "sha256:38b7b51f512eed9e84a22788b4bce1de17c0adb134d6becb09836e37d8654cd3" ], "markers": "python_version >= '3.8'", - "version": "==4.2.0" + "version": "==4.2.2" }, "pluggy": { "hashes": [ - "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981", - "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be" + "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", + "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" ], "markers": "python_version >= '3.8'", - "version": "==1.4.0" + "version": "==1.5.0" }, "py": { "hashes": [ @@ -1582,6 +1518,15 @@ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", "version": "==2.9.0.post0" }, + "pyusb": { + "hashes": [ + "sha256:2b4c7cb86dbadf044dfb9d3a4ff69fd217013dbe78a792177a3feb172449ea36", + "sha256:a4cc7404a203144754164b8b40994e2849fde1cfff06b08492f12fff9d9de7b9" + ], + "index": "pypi", + "markers": "python_full_version >= '3.6.0'", + "version": "==1.2.1" + }, "pyyaml": { "hashes": [ "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5", @@ -1771,12 +1716,12 @@ }, "types-mock": { "hashes": [ - "sha256:0769cb376dfc75b45215619f17a9fd6333d771cc29ce4a38937f060b1e45530f", - "sha256:7472797986d83016f96fde7f73577d129b0cd8a8d0b783487a7be330d57ba431" + "sha256:5281a645d72e827d70043e3cc144fe33b1c003db084f789dc203aa90e812a5a4", + "sha256:d586a01d39ad919d3ddcd73de6cde73ca7f3c69707219f722d1b8d7733641ad7" ], "index": "pypi", "markers": "python_version >= '3.8'", - "version": "==5.1.0.20240311" + "version": "==5.1.0.20240425" }, "types-paho-mqtt": { "hashes": [ diff --git a/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py b/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py index 084a7552a3a..92b7eeb5cd1 100644 --- a/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py +++ b/robot-server/robot_server/maintenance_runs/maintenance_run_data_manager.py @@ -7,7 +7,7 @@ LabwareOffsetCreate, StateSummary, CommandSlice, - CurrentCommand, + CommandPointer, Command, ) @@ -183,15 +183,36 @@ def get_commands_slice( ) return the_slice - def get_current_command(self, run_id: str) -> Optional[CurrentCommand]: - """Get the currently executing command, if any. + def get_current_command(self, run_id: str) -> Optional[CommandPointer]: + """Get the "current" command, if any. + + See `ProtocolEngine.state_view.commands.get_current()` for the definition + of "current." Args: run_id: ID of the run. """ if self._engine_store.current_run_id == run_id: return self._engine_store.engine.state_view.commands.get_current() - return None + else: + # todo(mm, 2024-05-20): + # For historical runs to behave consistently with the current run, + # this should be the most recently completed command, not `None`. + return None + + def get_recovery_target_command(self, run_id: str) -> Optional[CommandPointer]: + """Get the current error recovery target. + + See `ProtocolEngine.state_view.commands.get_recovery_target()`. + + Args: + run_id: ID of the run. + """ + if self._engine_store.current_run_id == run_id: + return self._engine_store.engine.state_view.commands.get_recovery_target() + else: + # Historical runs can't have any ongoing error recovery. + return None def get_command(self, run_id: str, command_id: str) -> Command: """Get a run's command by ID. diff --git a/robot-server/robot_server/maintenance_runs/router/base_router.py b/robot-server/robot_server/maintenance_runs/router/base_router.py index c115d46509f..54533d8f977 100644 --- a/robot-server/robot_server/maintenance_runs/router/base_router.py +++ b/robot-server/robot_server/maintenance_runs/router/base_router.py @@ -39,7 +39,7 @@ get_deck_configuration_store, ) from robot_server.deck_configuration.store import DeckConfigurationStore -from robot_server.service.notifications import get_notify_publishers +from robot_server.service.notifications import get_pe_notify_publishers log = logging.getLogger(__name__) base_router = APIRouter() @@ -156,7 +156,7 @@ async def create_run( deck_configuration_store: DeckConfigurationStore = Depends( get_deck_configuration_store ), - notify_publishers: Callable[[], None] = Depends(get_notify_publishers), + notify_publishers: Callable[[], None] = Depends(get_pe_notify_publishers), ) -> PydanticResponse[SimpleBody[MaintenanceRun]]: """Create a new maintenance run. diff --git a/robot-server/robot_server/maintenance_runs/router/commands_router.py b/robot-server/robot_server/maintenance_runs/router/commands_router.py index f90cf2dc171..f64f96ee726 100644 --- a/robot-server/robot_server/maintenance_runs/router/commands_router.py +++ b/robot-server/robot_server/maintenance_runs/router/commands_router.py @@ -1,14 +1,13 @@ """Router for /maintenance_runs commands endpoints.""" import textwrap -from datetime import datetime from typing import Optional, Union from typing_extensions import Final, Literal from anyio import move_on_after from fastapi import APIRouter, Depends, Query, status -from pydantic import BaseModel, Field from opentrons.protocol_engine import ( + CommandPointer, ProtocolEngine, commands as pe_commands, ) @@ -16,13 +15,18 @@ from robot_server.errors.error_responses import ErrorDetails, ErrorBody from robot_server.service.json_api import ( - RequestModel, SimpleBody, MultiBody, MultiBodyMeta, PydanticResponse, ) from robot_server.robot.control.dependencies import require_estop_in_good_state +from robot_server.runs.command_models import ( + RequestModelWithCommandCreate, + CommandCollectionLinks, + CommandLink, + CommandLinkMeta, +) from ..maintenance_run_models import ( MaintenanceRunCommandSummary, @@ -42,17 +46,6 @@ commands_router = APIRouter() -class RequestModelWithCommandCreate(RequestModel[pe_commands.CommandCreate]): - """Equivalent to RequestModel[CommandCreate]. - - This works around a Pydantic v<2 bug where RequestModel[CommandCreate] - doesn't parse using the CommandCreate union discriminator. - https://github.com/pydantic/pydantic/issues/3782 - """ - - data: pe_commands.CommandCreate - - class CommandNotFound(ErrorDetails): """An error if a given run command is not found.""" @@ -67,35 +60,6 @@ class CommandNotAllowed(ErrorDetails): title: str = "Setup Command Not Allowed" -class CommandLinkMeta(BaseModel): - """Metadata about a command resource referenced in `links`.""" - - runId: str = Field(..., description="The ID of the command's run.") - commandId: str = Field(..., description="The ID of the command.") - index: int = Field(..., description="Index of the command in the overall list.") - key: str = Field(..., description="Value of the current command's `key` field.") - createdAt: datetime = Field( - ..., - description="When the current command was created.", - ) - - -class CommandLink(BaseModel): - """A link to a command resource.""" - - href: str = Field(..., description="The path to a command") - meta: CommandLinkMeta = Field(..., description="Information about the command.") - - -class CommandCollectionLinks(BaseModel): - """Links returned along with a collection of commands.""" - - current: Optional[CommandLink] = Field( - None, - description="Path to the currently running or next queued command.", - ) - - async def get_current_run_engine_from_url( runId: str, engine_store: MaintenanceEngineStore = Depends(get_maintenance_engine_store), @@ -257,6 +221,7 @@ async def get_run_commands( raise RunNotFound(detail=str(e)).as_error(status.HTTP_404_NOT_FOUND) from e current_command = run_data_manager.get_current_command(run_id=runId) + recovery_target_command = run_data_manager.get_recovery_target_command(run_id=runId) data = [ MaintenanceRunCommandSummary.construct( @@ -279,19 +244,10 @@ async def get_run_commands( totalLength=command_slice.total_length, ) - links = CommandCollectionLinks() - - if current_command is not None: - links.current = CommandLink( - href=f"/runs/{runId}/commands/{current_command.command_id}", - meta=CommandLinkMeta( - runId=runId, - commandId=current_command.command_id, - index=current_command.index, - key=current_command.command_key, - createdAt=current_command.created_at, - ), - ) + links = CommandCollectionLinks.construct( + current=_make_command_link(runId, current_command), + currentlyRecoveringFrom=_make_command_link(runId, recovery_target_command), + ) return await PydanticResponse.create( content=MultiBody.construct(data=data, meta=meta, links=links), @@ -339,3 +295,22 @@ async def get_run_command( content=SimpleBody.construct(data=command), status_code=status.HTTP_200_OK, ) + + +def _make_command_link( + run_id: str, command_pointer: Optional[CommandPointer] +) -> Optional[CommandLink]: + return ( + CommandLink.construct( + href=f"/maintenance_runs/{run_id}/commands/{command_pointer.command_id}", + meta=CommandLinkMeta( + runId=run_id, + commandId=command_pointer.command_id, + index=command_pointer.index, + key=command_pointer.command_key, + createdAt=command_pointer.created_at, + ), + ) + if command_pointer is not None + else None + ) diff --git a/robot-server/robot_server/modules/module_data_mapper.py b/robot-server/robot_server/modules/module_data_mapper.py index 4a501f2b32d..dafcf4e3fce 100644 --- a/robot-server/robot_server/modules/module_data_mapper.py +++ b/robot-server/robot_server/modules/module_data_mapper.py @@ -1,5 +1,8 @@ """Module identification and response data mapping.""" from typing import Type, cast, Optional +from fastapi import Depends + +from opentrons_shared_data.module import load_definition from opentrons.hardware_control.modules import ( LiveData, @@ -16,7 +19,7 @@ ) from opentrons.drivers.rpi_drivers.types import USBPort as HardwareUSBPort -from opentrons.protocol_engine import ModuleModel +from opentrons.protocol_engine import ModuleModel, DeckType from .module_identifier import ModuleIdentity from .module_models import ( @@ -34,10 +37,15 @@ UsbPort, ) +from robot_server.hardware import get_deck_type + class ModuleDataMapper: """Map hardware control modules to module response.""" + def __init__(self, deck_type: DeckType = Depends(get_deck_type)) -> None: + self.deck_type = deck_type + def map_data( self, model: str, @@ -53,6 +61,7 @@ def map_data( module_cls: Type[AttachedModule] module_data: AttachedModuleData + module_definition = load_definition(model_or_loadname=model, version="3") # rely on Pydantic to check/coerce data fields from dicts at run time if module_type == ModuleType.MAGNETIC: @@ -131,6 +140,9 @@ def map_data( firmwareVersion=module_identity.firmware_version, hardwareRevision=module_identity.hardware_revision, hasAvailableUpdate=has_available_update, + compatibleWithRobot=( + not (self.deck_type.value in module_definition["incompatibleWithDecks"]) + ), usbPort=UsbPort( port=usb_port.port_number, portGroup=usb_port.port_group, diff --git a/robot-server/robot_server/modules/module_models.py b/robot-server/robot_server/modules/module_models.py index a82e941fbb6..f05e2ff0a99 100644 --- a/robot-server/robot_server/modules/module_models.py +++ b/robot-server/robot_server/modules/module_models.py @@ -90,6 +90,9 @@ class _GenericModule(GenericModel, Generic[ModuleT, ModuleModelT, ModuleDataT]): moduleOffset: Optional[ModuleCalibrationData] = Field( None, description="The calibrated module offset." ) + compatibleWithRobot: bool = Field( + ..., description="Whether the detected module is compatible with this robot." + ) data: ModuleDataT usbPort: UsbPort diff --git a/robot-server/robot_server/runs/command_models.py b/robot-server/robot_server/runs/command_models.py new file mode 100644 index 00000000000..5da1038f470 --- /dev/null +++ b/robot-server/robot_server/runs/command_models.py @@ -0,0 +1,67 @@ +"""Request and response models for dealing with run commands. + +These are shared between the `/runs` and `/maintenance_runs` endpoints. +""" + +from datetime import datetime +from typing import Optional + +from pydantic import BaseModel, Field + +from opentrons.protocol_engine import commands as pe_commands + +from robot_server.service.json_api.request import RequestModel + + +class RequestModelWithCommandCreate(RequestModel[pe_commands.CommandCreate]): + """Equivalent to RequestModel[CommandCreate]. + + This works around a Pydantic v<2 bug where RequestModel[CommandCreate] + doesn't parse using the CommandCreate union discriminator. + https://github.com/pydantic/pydantic/issues/3782 + """ + + data: pe_commands.CommandCreate + + +class CommandLinkMeta(BaseModel): + """Metadata about a command resource referenced in `links`.""" + + runId: str = Field(..., description="The ID of the command's run.") + commandId: str = Field(..., description="The ID of the command.") + index: int = Field( + ..., description="The index of the command in the run's overall command list." + ) + key: str = Field(..., description="The value of the command's `key` field.") + createdAt: datetime = Field(..., description="When the command was created.") + + +class CommandLink(BaseModel): + """A link to a command resource.""" + + href: str = Field(..., description="The HTTP API path to the command") + meta: CommandLinkMeta = Field(..., description="Information about the command.") + + +class CommandCollectionLinks(BaseModel): + """Links returned along with a collection of commands.""" + + current: Optional[CommandLink] = Field( + None, + description=( + 'Information about the "current" command.' + ' The "current" command is the one that\'s running right now,' + " or, if there is none, the one that was running most recently." + ), + ) + + currentlyRecoveringFrom: Optional[CommandLink] = Field( + None, + description=( + "Information about the command currently undergoing error recovery." + " This is basically the most recent protocol command to have failed," + " except that once you complete error recovery" + " (see `GET /runs/{id}/actions`), this goes back to being" + " `null` or omitted." + ), + ) diff --git a/robot-server/robot_server/runs/dependencies.py b/robot-server/robot_server/runs/dependencies.py index f66ec9fdf1c..8ff687464e2 100644 --- a/robot-server/robot_server/runs/dependencies.py +++ b/robot-server/robot_server/runs/dependencies.py @@ -27,7 +27,7 @@ ) from .run_auto_deleter import RunAutoDeleter -from .engine_store import EngineStore, NoRunnerEnginePairError +from .engine_store import EngineStore, NoRunnerEngineError from .run_store import RunStore from .run_data_manager import RunDataManager from robot_server.errors.robot_errors import ( @@ -131,7 +131,7 @@ async def get_is_okay_to_create_maintenance_run( """Whether a maintenance run can be created if a protocol run already exists.""" try: protocol_run_state = engine_store.engine.state_view - except NoRunnerEnginePairError: + except NoRunnerEngineError: return True return ( not protocol_run_state.commands.has_been_played() diff --git a/robot-server/robot_server/runs/engine_store.py b/robot-server/robot_server/runs/engine_store.py index 5b6d57520a7..3e630cef0ec 100644 --- a/robot-server/robot_server/runs/engine_store.py +++ b/robot-server/robot_server/runs/engine_store.py @@ -1,7 +1,7 @@ """In-memory storage of ProtocolEngine instances.""" import asyncio import logging -from typing import List, NamedTuple, Optional, Callable +from typing import List, Optional, Callable from opentrons.protocol_engine.errors.exceptions import EStopActivatedError from opentrons.protocol_engine.types import PostRunHardwareState @@ -23,7 +23,7 @@ JsonRunner, PythonAndLegacyRunner, RunResult, - create_protocol_runner, + RunOrchestrator, ) from opentrons.protocol_engine import ( Config as ProtocolEngineConfig, @@ -52,18 +52,10 @@ class EngineConflictError(RuntimeError): """ -class NoRunnerEnginePairError(RuntimeError): +class NoRunnerEngineError(RuntimeError): """Raised if you try to get the current engine or runner while there is none.""" -class RunnerEnginePair(NamedTuple): - """A stored Runner/ProtocolEngine pair.""" - - run_id: str - runner: AnyRunner - engine: ProtocolEngine - - async def handle_estop_event(engine_store: "EngineStore", event: HardwareEvent) -> None: """Handle an E-stop event from the hardware API. @@ -108,6 +100,8 @@ def run_handler_in_engine_thread_from_hardware_thread( class EngineStore: """Factory and in-memory storage for ProtocolEngine.""" + _run_orchestrator: Optional[RunOrchestrator] = None + def __init__( self, hardware_api: HardwareControlAPI, @@ -126,32 +120,32 @@ def __init__( self._robot_type = robot_type self._deck_type = deck_type self._default_engine: Optional[ProtocolEngine] = None - self._runner_engine_pair: Optional[RunnerEnginePair] = None hardware_api.register_callback(_get_estop_listener(self)) @property def engine(self) -> ProtocolEngine: """Get the "current" persisted ProtocolEngine.""" - if self._runner_engine_pair is None: - raise NoRunnerEnginePairError() - return self._runner_engine_pair.engine + if self._run_orchestrator is None: + raise NoRunnerEngineError() + return self._run_orchestrator.engine @property def runner(self) -> AnyRunner: """Get the "current" persisted ProtocolRunner.""" - if self._runner_engine_pair is None: - raise NoRunnerEnginePairError() - return self._runner_engine_pair.runner + if self._run_orchestrator is None: + raise NoRunnerEngineError() + return self._run_orchestrator.runner @property def current_run_id(self) -> Optional[str]: """Get the run identifier associated with the current engine/runner pair.""" return ( - self._runner_engine_pair.run_id - if self._runner_engine_pair is not None + self._run_orchestrator.run_id + if self._run_orchestrator is not None else None ) + # TODO(tz, 2024-5-14): remove this once its all redirected via orchestrator # TODO(mc, 2022-03-21): this resource locking is insufficient; # come up with something more sophisticated without race condition holes. async def get_default_engine(self) -> ProtocolEngine: @@ -161,14 +155,13 @@ async def get_default_engine(self) -> ProtocolEngine: EngineConflictError: if a run-specific engine is active. """ if ( - self._runner_engine_pair is not None + self._run_orchestrator is not None and self.engine.state_view.commands.has_been_played() and not self.engine.state_view.commands.get_is_stopped() ): raise EngineConflictError("An engine for a run is currently active") engine = self._default_engine - if engine is None: # TODO(mc, 2022-03-21): potential race condition engine = await create_protocol_engine( @@ -180,7 +173,6 @@ async def get_default_engine(self) -> ProtocolEngine: ), ) self._default_engine = engine - return engine async def create( @@ -231,7 +223,11 @@ async def create( post_run_hardware_state = PostRunHardwareState.HOME_AND_STAY_ENGAGED drop_tips_after_run = True - runner = create_protocol_runner( + if self._run_orchestrator is not None: + raise EngineConflictError("Another run is currently active.") + + self._run_orchestrator = RunOrchestrator.build_orchestrator( + run_id=run_id, protocol_engine=engine, hardware_api=self._hardware_api, protocol_config=protocol.source.config if protocol else None, @@ -239,18 +235,15 @@ async def create( drop_tips_after_run=drop_tips_after_run, ) - if self._runner_engine_pair is not None: - raise EngineConflictError("Another run is currently active.") - # FIXME(mm, 2022-12-21): These `await runner.load()`s introduce a # concurrency hazard. If two requests simultaneously call this method, # they will both "succeed" (with undefined results) instead of one # raising EngineConflictError. - if isinstance(runner, PythonAndLegacyRunner): + if isinstance(self.runner, PythonAndLegacyRunner): assert ( protocol is not None ), "A Python protocol should have a protocol source file." - await runner.load( + await self.runner.load( protocol.source, # Conservatively assume that we're re-running a protocol that # was uploaded before we added stricter validation, and that @@ -258,23 +251,17 @@ async def create( python_parse_mode=PythonParseMode.ALLOW_LEGACY_METADATA_AND_REQUIREMENTS, run_time_param_values=run_time_param_values, ) - elif isinstance(runner, JsonRunner): + elif isinstance(self.runner, JsonRunner): assert ( protocol is not None ), "A JSON protocol should have a protocol source file." - await runner.load(protocol.source) + await self.runner.load(protocol.source) else: - runner.prepare() + self.runner.prepare() for offset in labware_offsets: engine.add_labware_offset(offset) - self._runner_engine_pair = RunnerEnginePair( - run_id=run_id, - runner=runner, - engine=engine, - ) - return engine.state_view.get_summary() async def clear(self) -> RunResult: @@ -285,10 +272,8 @@ async def clear(self) -> RunResult: they cannot be cleared. """ engine = self.engine - state_view = engine.state_view runner = self.runner - - if state_view.commands.get_is_okay_to_clear(): + if engine.state_view.commands.get_is_okay_to_clear(): await engine.finish( drop_tips_after_run=False, set_run_status=False, @@ -297,11 +282,11 @@ async def clear(self) -> RunResult: else: raise EngineConflictError("Current run is not idle or stopped.") - run_data = state_view.get_summary() - commands = state_view.commands.get_all() - run_time_parameters = runner.run_time_parameters + run_data = engine.state_view.get_summary() + commands = engine.state_view.commands.get_all() + run_time_parameters = runner.run_time_parameters if runner else [] - self._runner_engine_pair = None + self._run_orchestrator = None return RunResult( state_summary=run_data, commands=commands, parameters=run_time_parameters diff --git a/robot-server/robot_server/runs/router/base_router.py b/robot-server/robot_server/runs/router/base_router.py index 728966823fb..375bc7bf556 100644 --- a/robot-server/robot_server/runs/router/base_router.py +++ b/robot-server/robot_server/runs/router/base_router.py @@ -45,7 +45,7 @@ get_deck_configuration_store, ) from robot_server.deck_configuration.store import DeckConfigurationStore -from robot_server.service.notifications import get_notify_publishers +from robot_server.service.notifications import get_pe_notify_publishers log = logging.getLogger(__name__) base_router = APIRouter() @@ -144,7 +144,7 @@ async def create_run( deck_configuration_store: DeckConfigurationStore = Depends( get_deck_configuration_store ), - notify_publishers: Callable[[], None] = Depends(get_notify_publishers), + notify_publishers: Callable[[], None] = Depends(get_pe_notify_publishers), ) -> PydanticResponse[SimpleBody[Union[Run, BadRun]]]: """Create a new run. diff --git a/robot-server/robot_server/runs/router/commands_router.py b/robot-server/robot_server/runs/router/commands_router.py index b220ae33c04..563979c2c41 100644 --- a/robot-server/robot_server/runs/router/commands_router.py +++ b/robot-server/robot_server/runs/router/commands_router.py @@ -1,15 +1,14 @@ """Router for /runs commands endpoints.""" import textwrap -from datetime import datetime from typing import Optional, Union from typing_extensions import Final, Literal from anyio import move_on_after from fastapi import APIRouter, Depends, Query, status -from pydantic import BaseModel, Field from opentrons.protocol_engine import ( + CommandPointer, ProtocolEngine, commands as pe_commands, errors as pe_errors, @@ -17,7 +16,6 @@ from robot_server.errors.error_responses import ErrorDetails, ErrorBody from robot_server.service.json_api import ( - RequestModel, SimpleBody, MultiBody, MultiBodyMeta, @@ -26,6 +24,12 @@ ) from robot_server.robot.control.dependencies import require_estop_in_good_state +from ..command_models import ( + RequestModelWithCommandCreate, + CommandCollectionLinks, + CommandLink, + CommandLinkMeta, +) from ..run_models import RunCommandSummary from ..run_data_manager import RunDataManager, PreSerializedCommandsNotAvailableError from ..engine_store import EngineStore @@ -40,17 +44,6 @@ commands_router = APIRouter() -class RequestModelWithCommandCreate(RequestModel[pe_commands.CommandCreate]): - """Equivalent to RequestModel[CommandCreate]. - - This works around a Pydantic v<2 bug where RequestModel[CommandCreate] - doesn't parse using the CommandCreate union discriminator. - https://github.com/pydantic/pydantic/issues/3782 - """ - - data: pe_commands.CommandCreate - - class CommandNotFound(ErrorDetails): """An error if a given run command is not found.""" @@ -84,35 +77,6 @@ class PreSerializedCommandsNotAvailable(ErrorDetails): ) -class CommandLinkMeta(BaseModel): - """Metadata about a command resource referenced in `links`.""" - - runId: str = Field(..., description="The ID of the command's run.") - commandId: str = Field(..., description="The ID of the command.") - index: int = Field(..., description="Index of the command in the overall list.") - key: str = Field(..., description="Value of the current command's `key` field.") - createdAt: datetime = Field( - ..., - description="When the current command was created.", - ) - - -class CommandLink(BaseModel): - """A link to a command resource.""" - - href: str = Field(..., description="The path to a command") - meta: CommandLinkMeta = Field(..., description="Information about the command.") - - -class CommandCollectionLinks(BaseModel): - """Links returned along with a collection of commands.""" - - current: Optional[CommandLink] = Field( - None, - description="Path to the currently running or next queued command.", - ) - - async def get_current_run_engine_from_url( runId: str, engine_store: EngineStore = Depends(get_engine_store), @@ -145,7 +109,7 @@ async def get_current_run_engine_from_url( description=textwrap.dedent( """ Add a single command to the run. You can add commands to a run - for two reasons: + for three reasons: - Setup commands (`data.source == "setup"`) - Protocol commands (`data.source == "protocol"`) @@ -322,6 +286,7 @@ async def get_run_commands( raise RunNotFound.from_exc(e).as_error(status.HTTP_404_NOT_FOUND) from e current_command = run_data_manager.get_current_command(run_id=runId) + recovery_target_command = run_data_manager.get_recovery_target_command(run_id=runId) data = [ RunCommandSummary.construct( @@ -345,19 +310,10 @@ async def get_run_commands( totalLength=command_slice.total_length, ) - links = CommandCollectionLinks() - - if current_command is not None: - links.current = CommandLink( - href=f"/runs/{runId}/commands/{current_command.command_id}", - meta=CommandLinkMeta( - runId=runId, - commandId=current_command.command_id, - index=current_command.index, - key=current_command.command_key, - createdAt=current_command.created_at, - ), - ) + links = CommandCollectionLinks.construct( + current=_make_command_link(runId, current_command), + currentlyRecoveringFrom=_make_command_link(runId, recovery_target_command), + ) return await PydanticResponse.create( content=MultiBody.construct(data=data, meta=meta, links=links), @@ -453,3 +409,22 @@ async def get_run_command( content=SimpleBody.construct(data=command), status_code=status.HTTP_200_OK, ) + + +def _make_command_link( + run_id: str, command_pointer: Optional[CommandPointer] +) -> Optional[CommandLink]: + return ( + CommandLink.construct( + href=f"/runs/{run_id}/commands/{command_pointer.command_id}", + meta=CommandLinkMeta( + runId=run_id, + commandId=command_pointer.command_id, + index=command_pointer.index, + key=command_pointer.command_key, + createdAt=command_pointer.created_at, + ), + ) + if command_pointer is not None + else None + ) diff --git a/robot-server/robot_server/runs/run_data_manager.py b/robot-server/robot_server/runs/run_data_manager.py index 311cfb93b40..2fe67a48c27 100644 --- a/robot-server/robot_server/runs/run_data_manager.py +++ b/robot-server/robot_server/runs/run_data_manager.py @@ -9,7 +9,7 @@ LabwareOffsetCreate, StateSummary, CommandSlice, - CurrentCommand, + CommandPointer, Command, ) from opentrons.protocol_engine.types import RunTimeParamValuesType @@ -194,8 +194,9 @@ async def create( created_at=created_at, protocol_id=protocol.protocol_id if protocol is not None else None, ) - await self._runs_publisher.initialize( + await self._runs_publisher.start_publishing_for_run( get_current_command=self.get_current_command, + get_recovery_target_command=self.get_recovery_target_command, get_state_summary=self._get_good_state_summary, run_id=run_id, ) @@ -335,7 +336,8 @@ async def update(self, run_id: str, current: Optional[bool]) -> Union[Run, BadRu ) else: state_summary = self._engine_store.engine.state_view.get_summary() - parameters = self._engine_store.runner.run_time_parameters + runner = self._engine_store.runner + parameters = runner.run_time_parameters if runner else [] run_resource = self._run_store.get(run_id=run_id) return _build_run( @@ -372,15 +374,36 @@ def get_commands_slice( run_id=run_id, cursor=cursor, length=length ) - def get_current_command(self, run_id: str) -> Optional[CurrentCommand]: - """Get the currently executing command, if any. + def get_current_command(self, run_id: str) -> Optional[CommandPointer]: + """Get the "current" command, if any. + + See `ProtocolEngine.state_view.commands.get_current()` for the definition + of "current." Args: run_id: ID of the run. """ if self._engine_store.current_run_id == run_id: return self._engine_store.engine.state_view.commands.get_current() - return None + else: + # todo(mm, 2024-05-20): + # For historical runs to behave consistently with the current run, + # this should be the most recently completed command, not `None`. + return None + + def get_recovery_target_command(self, run_id: str) -> Optional[CommandPointer]: + """Get the current error recovery target. + + See `ProtocolEngine.state_view.commands.get_recovery_target()`. + + Args: + run_id: ID of the run. + """ + if self._engine_store.current_run_id == run_id: + return self._engine_store.engine.state_view.commands.get_recovery_target() + else: + # Historical runs can't have any ongoing error recovery. + return None def get_command(self, run_id: str, command_id: str) -> Command: """Get a run's command by ID. @@ -423,6 +446,7 @@ def _get_good_state_summary(self, run_id: str) -> Optional[StateSummary]: def _get_run_time_parameters(self, run_id: str) -> List[RunTimeParameter]: if run_id == self._engine_store.current_run_id: - return self._engine_store.runner.run_time_parameters + runner = self._engine_store.runner + return runner.run_time_parameters if runner else [] else: return self._run_store.get_run_time_parameters(run_id=run_id) diff --git a/robot-server/robot_server/service/notifications/__init__.py b/robot-server/robot_server/service/notifications/__init__.py index defb62e2af7..e62402f06f5 100644 --- a/robot-server/robot_server/service/notifications/__init__.py +++ b/robot-server/robot_server/service/notifications/__init__.py @@ -6,7 +6,7 @@ get_notification_client, clean_up_notification_client, ) -from .publisher_notifier import PublisherNotifier, get_notify_publishers +from .publisher_notifier import PublisherNotifier, get_pe_notify_publishers from .publishers import ( MaintenanceRunsPublisher, RunsPublisher, @@ -15,7 +15,6 @@ get_runs_publisher, get_deck_configuration_publisher, ) -from .change_notifier import ChangeNotifier from .topics import Topics __all__ = [ @@ -30,12 +29,11 @@ "clean_up_notification_client", # for use by FastAPI "get_notification_client", - "get_notify_publishers", + "get_pe_notify_publishers", "get_maintenance_runs_publisher", "get_runs_publisher", "get_deck_configuration_publisher", # for testing "PublisherNotifier", - "ChangeNotifier", "Topics", ] diff --git a/robot-server/robot_server/service/notifications/change_notifier.py b/robot-server/robot_server/service/notifications/change_notifier.py index b64a8f93432..e69de29bb2d 100644 --- a/robot-server/robot_server/service/notifications/change_notifier.py +++ b/robot-server/robot_server/service/notifications/change_notifier.py @@ -1,19 +0,0 @@ -"""Simple state change notification interface.""" -import asyncio - - -class ChangeNotifier: - """An interface to emit or subscribe to state change notifications.""" - - def __init__(self) -> None: - """Initialize the ChangeNotifier with an internal Event.""" - self._event = asyncio.Event() - - def notify(self) -> None: - """Notify all `waiters` of a change.""" - self._event.set() - - async def wait(self) -> None: - """Wait until the next change notification.""" - await self._event.wait() - self._event.clear() diff --git a/robot-server/robot_server/service/notifications/initialize_notifications.py b/robot-server/robot_server/service/notifications/initialize_notifications.py index d5569d09eff..3691ba1a668 100644 --- a/robot-server/robot_server/service/notifications/initialize_notifications.py +++ b/robot-server/robot_server/service/notifications/initialize_notifications.py @@ -2,10 +2,10 @@ from server_utils.fastapi_utils.app_state import AppState from .notification_client import initialize_notification_client -from .publisher_notifier import initialize_publisher_notifier +from .publisher_notifier import initialize_pe_publisher_notifier async def initialize_notifications(app_state: AppState) -> None: """Initialize the notification system for the given app state.""" initialize_notification_client(app_state) - await initialize_publisher_notifier(app_state) + await initialize_pe_publisher_notifier(app_state) diff --git a/robot-server/robot_server/service/notifications/publisher_notifier.py b/robot-server/robot_server/service/notifications/publisher_notifier.py index d1769ac4379..22b5c34b79e 100644 --- a/robot-server/robot_server/service/notifications/publisher_notifier.py +++ b/robot-server/robot_server/service/notifications/publisher_notifier.py @@ -1,7 +1,7 @@ """Provides an interface for alerting notification publishers to events and related lifecycle utilities.""" import asyncio from fastapi import Depends -from typing import Optional, Callable, List, Awaitable +from typing import Optional, Callable, List, Awaitable, Union from server_utils.fastapi_utils.app_state import ( AppState, @@ -9,18 +9,15 @@ get_app_state, ) -from .change_notifier import ChangeNotifier +from opentrons.util.change_notifier import ChangeNotifier, ChangeNotifier_ts class PublisherNotifier: """An interface that invokes notification callbacks whenever a generic notify event occurs.""" - def __init__( - self, - change_notifier: Optional[ChangeNotifier] = None, - ): - self._change_notifier = change_notifier or ChangeNotifier() - self._pe_notifier: Optional[asyncio.Task[None]] = None + def __init__(self, change_notifier: Union[ChangeNotifier, ChangeNotifier_ts]): + self._change_notifier = change_notifier + self._notifier: Optional[asyncio.Task[None]] = None self._callbacks: List[Callable[[], Awaitable[None]]] = [] def register_publish_callbacks( @@ -31,7 +28,7 @@ def register_publish_callbacks( async def _initialize(self) -> None: """Initializes an instance of PublisherNotifier. This method should only be called once.""" - self._pe_notifier = asyncio.create_task(self._wait_for_event()) + self._notifier = asyncio.create_task(self._wait_for_event()) def _notify_publishers(self) -> None: """A generic notifier, alerting all `waiters` of a change.""" @@ -45,37 +42,39 @@ async def _wait_for_event(self) -> None: await callback() -_publisher_notifier_accessor: AppStateAccessor[PublisherNotifier] = AppStateAccessor[ +_pe_publisher_notifier_accessor: AppStateAccessor[PublisherNotifier] = AppStateAccessor[ PublisherNotifier ]("publisher_notifier") -def get_publisher_notifier( +def get_pe_publisher_notifier( app_state: AppState = Depends(get_app_state), ) -> PublisherNotifier: - """Intended for use by various publishers only.""" - publisher_notifier = _publisher_notifier_accessor.get_from(app_state) + """Intended for use by various publishers only. Intended for protocol engine.""" + publisher_notifier = _pe_publisher_notifier_accessor.get_from(app_state) assert publisher_notifier is not None return publisher_notifier -def get_notify_publishers( +def get_pe_notify_publishers( app_state: AppState = Depends(get_app_state), ) -> Callable[[], None]: - """Provides access to the callback used to notify publishers of changes.""" - publisher_notifier = _publisher_notifier_accessor.get_from(app_state) + """Provides access to the callback used to notify publishers of changes. Intended for protocol engine.""" + publisher_notifier = _pe_publisher_notifier_accessor.get_from(app_state) assert isinstance(publisher_notifier, PublisherNotifier) return publisher_notifier._notify_publishers -async def initialize_publisher_notifier(app_state: AppState) -> None: +async def initialize_pe_publisher_notifier(app_state: AppState) -> None: """Create a new `NotificationClient` and store it on `app_state`. Intended to be called just once, when the server starts up. """ - publisher_notifier: PublisherNotifier = PublisherNotifier() - _publisher_notifier_accessor.set_on(app_state, publisher_notifier) + publisher_notifier: PublisherNotifier = PublisherNotifier( + change_notifier=ChangeNotifier() + ) + _pe_publisher_notifier_accessor.set_on(app_state, publisher_notifier) await publisher_notifier._initialize() diff --git a/robot-server/robot_server/service/notifications/publishers/runs_publisher.py b/robot-server/robot_server/service/notifications/publishers/runs_publisher.py index 08b14899d0d..bcb54133b3e 100644 --- a/robot-server/robot_server/service/notifications/publishers/runs_publisher.py +++ b/robot-server/robot_server/service/notifications/publishers/runs_publisher.py @@ -1,9 +1,8 @@ -import asyncio from fastapi import Depends from dataclasses import dataclass from typing import Callable, Optional -from opentrons.protocol_engine import CurrentCommand, StateSummary, EngineStatus +from opentrons.protocol_engine import CommandPointer, StateSummary, EngineStatus from server_utils.fastapi_utils.app_state import ( AppState, @@ -11,24 +10,26 @@ get_app_state, ) from ..notification_client import NotificationClient, get_notification_client -from ..publisher_notifier import PublisherNotifier, get_publisher_notifier +from ..publisher_notifier import PublisherNotifier, get_pe_publisher_notifier from ..topics import Topics @dataclass -class RunHooks: +class _RunHooks: """Generated during a protocol run. Utilized by RunsPublisher.""" run_id: str - get_current_command: Callable[[str], Optional[CurrentCommand]] + get_current_command: Callable[[str], Optional[CommandPointer]] + get_recovery_target_command: Callable[[str], Optional[CommandPointer]] get_state_summary: Callable[[str], Optional[StateSummary]] @dataclass -class EngineStateSlice: +class _EngineStateSlice: """Protocol Engine state relevant to RunsPublisher.""" - current_command: Optional[CurrentCommand] = None + current_command: Optional[CommandPointer] = None + recovery_target_command: Optional[CommandPointer] = None state_summary_status: Optional[EngineStatus] = None @@ -40,21 +41,23 @@ def __init__( ) -> None: """Returns a configured Runs Publisher.""" self._client = client - self._publisher_notifier = publisher_notifier - self._run_data_manager_polling = asyncio.Event() - self._poller: Optional[asyncio.Task[None]] = None # Variables and callbacks related to PE state changes. - self._run_hooks: Optional[RunHooks] = None - self._engine_state_slice: Optional[EngineStateSlice] = None - - self._publisher_notifier.register_publish_callbacks( - [self._handle_current_command_change, self._handle_engine_status_change] + self._run_hooks: Optional[_RunHooks] = None + self._engine_state_slice: Optional[_EngineStateSlice] = None + + publisher_notifier.register_publish_callbacks( + [ + self._handle_current_command_change, + self._handle_recovery_target_command_change, + self._handle_engine_status_change, + ] ) - async def initialize( + async def start_publishing_for_run( self, run_id: str, - get_current_command: Callable[[str], Optional[CurrentCommand]], + get_current_command: Callable[[str], Optional[CommandPointer]], + get_recovery_target_command: Callable[[str], Optional[CommandPointer]], get_state_summary: Callable[[str], Optional[StateSummary]], ) -> None: """Initialize RunsPublisher with necessary information derived from the current run. @@ -64,12 +67,13 @@ async def initialize( get_current_command: Callback to get the currently executing command, if any. get_state_summary: Callback to get the current run's state summary, if any. """ - self._run_hooks = RunHooks( + self._run_hooks = _RunHooks( run_id=run_id, get_current_command=get_current_command, + get_recovery_target_command=get_recovery_target_command, get_state_summary=get_state_summary, ) - self._engine_state_slice = EngineStateSlice() + self._engine_state_slice = _EngineStateSlice() await self._publish_runs_advise_refetch_async(run_id=run_id) @@ -78,10 +82,14 @@ async def clean_up_run(self, run_id: str) -> None: await self._publish_runs_advise_refetch_async(run_id=run_id) await self._publish_runs_advise_unsubscribe_async(run_id=run_id) - async def _publish_current_command(self) -> None: - """Publishes the equivalent of GET /runs/:runId/commands?cursor=null&pageLength=1.""" + async def _publish_command_links(self) -> None: + """Publish an update to the run's command links. + + Corresponds to the `links` field in `GET /runs/:runId/commands` + (regardless of query parameters). + """ await self._client.publish_advise_refetch_async( - topic=Topics.RUNS_CURRENT_COMMAND + topic=Topics.RUNS_COMMANDS_LINKS ) async def _publish_runs_advise_refetch_async(self, run_id: str) -> None: @@ -100,7 +108,7 @@ async def _publish_runs_advise_unsubscribe_async(self, run_id: str) -> None: topic=f"{Topics.RUNS}/{run_id}" ) await self._client.publish_advise_unsubscribe_async( - topic=Topics.RUNS_CURRENT_COMMAND + topic=Topics.RUNS_COMMANDS_LINKS ) await self._client.publish_advise_unsubscribe_async( topic=f"{Topics.RUNS_PRE_SERIALIZED_COMMANDS}/{run_id}" @@ -116,31 +124,43 @@ async def publish_pre_serialized_commands_notification(self, run_id: str) -> Non async def _handle_current_command_change(self) -> None: """Publish a refetch flag if the current command has changed.""" if self._run_hooks is not None and self._engine_state_slice is not None: - current_command = self._run_hooks.get_current_command( + new_current_command = self._run_hooks.get_current_command( self._run_hooks.run_id ) - if self._engine_state_slice.current_command != current_command: - await self._publish_current_command() - self._engine_state_slice.current_command = current_command + if self._engine_state_slice.current_command != new_current_command: + await self._publish_command_links() + self._engine_state_slice.current_command = new_current_command + + async def _handle_recovery_target_command_change(self) -> None: + if self._run_hooks is not None and self._engine_state_slice is not None: + new_recovery_target_command = self._run_hooks.get_recovery_target_command( + self._run_hooks.run_id + ) + if ( + self._engine_state_slice.recovery_target_command + != new_recovery_target_command + ): + await self._publish_command_links() + self._engine_state_slice.recovery_target_command = ( + new_recovery_target_command + ) async def _handle_engine_status_change(self) -> None: """Publish a refetch flag if the engine status has changed.""" if self._run_hooks is not None and self._engine_state_slice is not None: - current_state_summary = self._run_hooks.get_state_summary( + new_state_summary = self._run_hooks.get_state_summary( self._run_hooks.run_id ) if ( - current_state_summary is not None + new_state_summary is not None and self._engine_state_slice.state_summary_status - != current_state_summary.status + != new_state_summary.status ): await self._publish_runs_advise_refetch_async( run_id=self._run_hooks.run_id ) - self._engine_state_slice.state_summary_status = ( - current_state_summary.status - ) + self._engine_state_slice.state_summary_status = new_state_summary.status _runs_publisher_accessor: AppStateAccessor[RunsPublisher] = AppStateAccessor[ @@ -151,7 +171,7 @@ async def _handle_engine_status_change(self) -> None: async def get_runs_publisher( app_state: AppState = Depends(get_app_state), notification_client: NotificationClient = Depends(get_notification_client), - publisher_notifier: PublisherNotifier = Depends(get_publisher_notifier), + publisher_notifier: PublisherNotifier = Depends(get_pe_publisher_notifier), ) -> RunsPublisher: """Get a singleton RunsPublisher to publish runs topics.""" runs_publisher = _runs_publisher_accessor.get_from(app_state) diff --git a/robot-server/robot_server/service/notifications/topics.py b/robot-server/robot_server/service/notifications/topics.py index f8a6ecaf701..bb21d7e6760 100644 --- a/robot-server/robot_server/service/notifications/topics.py +++ b/robot-server/robot_server/service/notifications/topics.py @@ -12,7 +12,7 @@ class Topics(str, Enum): """ MAINTENANCE_RUNS_CURRENT_RUN = f"{_TOPIC_BASE}/maintenance_runs/current_run" - RUNS_CURRENT_COMMAND = f"{_TOPIC_BASE}/runs/current_command" + RUNS_COMMANDS_LINKS = f"{_TOPIC_BASE}/runs/commands_links" RUNS = f"{_TOPIC_BASE}/runs" DECK_CONFIGURATION = f"{_TOPIC_BASE}/deck_configuration" RUNS_PRE_SERIALIZED_COMMANDS = f"{_TOPIC_BASE}/runs/pre_serialized_commands" diff --git a/robot-server/simulators/test-flex.json b/robot-server/simulators/test-flex.json index adc9543fc5a..ed694a8cb92 100644 --- a/robot-server/simulators/test-flex.json +++ b/robot-server/simulators/test-flex.json @@ -14,6 +14,7 @@ "attached_modules": { "thermocycler": [ { + "model": "thermocyclerModuleV2", "serial_number": "therm-123", "calls": [ { @@ -37,12 +38,14 @@ ], "heatershaker": [ { + "model": "heaterShakerModuleV1", "serial_number": "hs-123", "calls": [] } ], "tempdeck": [ { + "model": "temperatureModuleV2", "serial_number": "temp-123", "calls": [ { @@ -60,6 +63,7 @@ ] }, { + "model": "temperatureModuleV2", "serial_number": "temp-1234", "calls": [ { @@ -76,19 +80,6 @@ } ] } - ], - "magdeck": [ - { - "serial_number": "mag-123", - "calls": [ - { - "function_name": "engage", - "kwargs": { - "height": 4 - } - } - ] - } ] } } diff --git a/robot-server/simulators/test.json b/robot-server/simulators/test.json index c7ca49e9040..9789bb9e8b0 100644 --- a/robot-server/simulators/test.json +++ b/robot-server/simulators/test.json @@ -12,6 +12,7 @@ "attached_modules": { "thermocycler": [ { + "model": "thermocyclerModuleV1", "serial_number": "therm-123", "calls": [ { @@ -35,12 +36,14 @@ ], "heatershaker": [ { + "model": "heaterShakerModuleV1", "serial_number": "hs-123", "calls": [] } ], "tempdeck": [ { + "model": "temperatureModuleV1", "serial_number": "temp-123", "calls": [ { @@ -60,6 +63,7 @@ ], "magdeck": [ { + "model": "magneticModuleV2", "serial_number": "mag-123", "calls": [ { @@ -71,6 +75,7 @@ ] }, { + "model": "magneticModuleV1", "serial_number": "mag-1234", "calls": [ { @@ -83,4 +88,4 @@ } ] } -} \ No newline at end of file +} diff --git a/robot-server/tests/commands/test_router.py b/robot-server/tests/commands/test_router.py index 59f0a7127c9..2d8dc6ac435 100644 --- a/robot-server/tests/commands/test_router.py +++ b/robot-server/tests/commands/test_router.py @@ -6,7 +6,7 @@ from opentrons.protocol_engine import ( ProtocolEngine, CommandSlice, - CurrentCommand, + CommandPointer, commands as pe_commands, ) from opentrons.protocol_engine.errors import CommandDoesNotExistError @@ -147,7 +147,7 @@ async def test_get_commands_list( ) decoy.when(protocol_engine.state_view.commands.get_current()).then_return( - CurrentCommand( + CommandPointer( command_id="abc123", command_key="command-key-1", created_at=datetime(year=2021, month=1, day=1), diff --git a/robot-server/tests/integration/http_api/commands/test_load_module_failure.tavern.yaml b/robot-server/tests/integration/http_api/commands/test_load_module_failure.tavern.yaml index 6691a65b7ee..312603f4899 100644 --- a/robot-server/tests/integration/http_api/commands/test_load_module_failure.tavern.yaml +++ b/robot-server/tests/integration/http_api/commands/test_load_module_failure.tavern.yaml @@ -6,7 +6,7 @@ marks: - parametrize: key: model vals: - - magneticModuleV2 + - thermocyclerModuleV2 stages: - name: Create Empty Run diff --git a/robot-server/tests/integration/http_api/protocols/test_deck_coordinate_load.tavern.yaml b/robot-server/tests/integration/http_api/protocols/test_deck_coordinate_load.tavern.yaml index a7458e9dfc3..6c273d7ce0a 100644 --- a/robot-server/tests/integration/http_api/protocols/test_deck_coordinate_load.tavern.yaml +++ b/robot-server/tests/integration/http_api/protocols/test_deck_coordinate_load.tavern.yaml @@ -24,7 +24,7 @@ stages: files: - name: deck_coordinate_load.py role: main - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" robotType: OT-3 Standard metadata: protocolName: Deck Coordinate PAPIv2 Test diff --git a/robot-server/tests/integration/http_api/protocols/test_key.tavern.yaml b/robot-server/tests/integration/http_api/protocols/test_key.tavern.yaml index 7729ee15fa5..01dd7c9d4b7 100644 --- a/robot-server/tests/integration/http_api/protocols/test_key.tavern.yaml +++ b/robot-server/tests/integration/http_api/protocols/test_key.tavern.yaml @@ -24,7 +24,7 @@ stages: files: - name: basic_transfer_standalone.py role: main - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" robotType: OT-2 Standard metadata: apiLevel: '2.6' diff --git a/robot-server/tests/integration/http_api/protocols/test_upload.tavern.yaml b/robot-server/tests/integration/http_api/protocols/test_upload.tavern.yaml index c7b16d64d47..7cf9810ddea 100644 --- a/robot-server/tests/integration/http_api/protocols/test_upload.tavern.yaml +++ b/robot-server/tests/integration/http_api/protocols/test_upload.tavern.yaml @@ -23,7 +23,7 @@ stages: files: - name: basic_transfer_standalone.py role: main - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" robotType: OT-2 Standard metadata: apiLevel: '2.6' diff --git a/robot-server/tests/integration/http_api/protocols/test_upload_flex_protocol.yaml b/robot-server/tests/integration/http_api/protocols/test_upload_flex_protocol.yaml index 91ee8063a44..fce629fa229 100644 --- a/robot-server/tests/integration/http_api/protocols/test_upload_flex_protocol.yaml +++ b/robot-server/tests/integration/http_api/protocols/test_upload_flex_protocol.yaml @@ -24,7 +24,7 @@ stages: files: - name: flex_basic_transfer_standalone.py role: main - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" robotType: Flex metadata: apiLevel: '2.15' diff --git a/robot-server/tests/integration/http_api/protocols/test_v6_json_upload.tavern.yaml b/robot-server/tests/integration/http_api/protocols/test_v6_json_upload.tavern.yaml index 710a693e595..4caf38b1d6b 100644 --- a/robot-server/tests/integration/http_api/protocols/test_v6_json_upload.tavern.yaml +++ b/robot-server/tests/integration/http_api/protocols/test_v6_json_upload.tavern.yaml @@ -51,7 +51,7 @@ stages: json: data: id: '{protocol_id}' - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" files: - name: simpleV6.json role: main @@ -128,17 +128,17 @@ stages: commands: # Initial home - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: home key: !anystr status: succeeded params: {} result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadPipette key: !anystr status: succeeded @@ -149,10 +149,10 @@ stages: result: pipetteId: pipetteId notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadModule key: !anystr status: succeeded @@ -167,10 +167,10 @@ stages: model: magneticModuleV2 serialNumber: !anystr notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadModule key: !anystr status: succeeded @@ -185,10 +185,10 @@ stages: model: temperatureModuleV2 serialNumber: !anystr notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -204,10 +204,10 @@ stages: labwareId: sourcePlateId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -223,10 +223,10 @@ stages: labwareId: destPlateId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -242,10 +242,10 @@ stages: labwareId: tipRackId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLiquid key: !anystr status: succeeded @@ -257,20 +257,20 @@ stages: B1: 100 result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: home key: !anystr status: succeeded params: {} result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: pickUpTip key: !anystr status: succeeded @@ -290,10 +290,10 @@ stages: tipLength: 35.910000000000004 tipDiameter: 3.27 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: aspirate key: !anystr status: succeeded @@ -313,10 +313,10 @@ stages: position: { 'x': 16.76, 'y': 75.28, 'z': 157.09 } volume: 5 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: waitForDuration key: !anystr status: succeeded @@ -324,10 +324,10 @@ stages: seconds: 42 result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: dispense key: !anystr status: succeeded @@ -347,10 +347,10 @@ stages: position: { 'x': 284.635, 'y': 56.025, 'z': 158.25 } volume: 4.5 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: touchTip key: !anystr status: succeeded @@ -369,10 +369,10 @@ stages: result: position: { 'x': 284.635, 'y': 56.025, 'z': 168.25 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: blowout key: !anystr status: succeeded @@ -390,10 +390,10 @@ stages: result: position: { 'x': 284.635, 'y': 56.025, 'z': 169.25 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToWell key: !anystr status: succeeded @@ -412,10 +412,10 @@ stages: position: { 'x': 304.52500000000003, 'y': 56.025, 'z': 182.25 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToWell key: !anystr status: succeeded @@ -436,10 +436,10 @@ stages: position: { 'x': 306.52500000000003, 'y': 59.025, 'z': 167.25 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: dropTip key: !anystr status: succeeded @@ -457,10 +457,10 @@ stages: result: position: { 'x': 347.84000000000003, 'y': 325.06, 'z': 82.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: waitForResume key: !anystr status: succeeded @@ -468,10 +468,10 @@ stages: message: pause command result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToCoordinates key: !anystr status: succeeded @@ -487,10 +487,10 @@ stages: result: position: { 'x': 0.0, 'y': 0.0, 'z': 0.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -504,10 +504,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -521,10 +521,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: savePosition key: !anystr status: succeeded @@ -538,10 +538,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -555,10 +555,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: savePosition key: !anystr status: succeeded @@ -573,8 +573,8 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" errors: [] liquids: - id: waterId diff --git a/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_flex.tavern.yaml b/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_flex.tavern.yaml index af2fc892b86..93c0587eaf4 100644 --- a/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_flex.tavern.yaml +++ b/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_flex.tavern.yaml @@ -52,7 +52,7 @@ stages: json: data: id: '{protocol_id}' - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" files: - name: simpleFlexV8.json role: main @@ -129,17 +129,17 @@ stages: commands: # Initial home - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: home key: !anystr status: succeeded params: {} result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadPipette key: !anystr status: succeeded @@ -150,10 +150,10 @@ stages: result: pipetteId: pipetteId notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadModule key: !anystr status: succeeded @@ -167,10 +167,10 @@ stages: definition: !anydict model: magneticBlockV1 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadModule key: !anystr status: succeeded @@ -185,10 +185,10 @@ stages: model: temperatureModuleV2 serialNumber: !anystr notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -204,10 +204,10 @@ stages: labwareId: sourcePlateId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -223,10 +223,10 @@ stages: labwareId: destPlateId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -242,10 +242,10 @@ stages: labwareId: tipRackId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -261,10 +261,10 @@ stages: labwareId: fixedTrash definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLiquid key: !anystr status: succeeded @@ -276,20 +276,20 @@ stages: B1: 100.0 result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: home key: !anystr status: succeeded params: {} result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: pickUpTip key: !anystr status: succeeded @@ -309,10 +309,10 @@ stages: tipLength: 77.5 tipDiameter: 7.23 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: aspirate key: !anystr status: succeeded @@ -332,10 +332,10 @@ stages: position: { 'x': 14.38, 'y': 74.24, 'z': 12.05 } volume: 5.0 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: waitForDuration key: !anystr status: succeeded @@ -343,10 +343,10 @@ stages: seconds: 42.0 result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: dispense key: !anystr status: succeeded @@ -366,10 +366,10 @@ stages: position: { 'x': 342.38, 'y': 65.24, 'z': 40.05 } volume: 4.5 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: touchTip key: !anystr status: succeeded @@ -388,10 +388,10 @@ stages: result: position: { 'x': 342.38, 'y': 65.24, 'z': 50.05 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: blowout key: !anystr status: succeeded @@ -409,10 +409,10 @@ stages: result: position: { 'x': 342.38, 'y': 65.24, 'z': 51.05 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToCoordinates key: !anystr status: succeeded @@ -426,10 +426,10 @@ stages: result: position: { 'x': 100.0, 'y': 100.0, 'z': 100.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToWell key: !anystr status: succeeded @@ -446,13 +446,12 @@ stages: forceDirect: false speed: 12.3 result: - position: - { 'x': 351.38, 'y': 65.24, 'z': 54.0 } + position: { 'x': 351.38, 'y': 65.24, 'z': 54.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToWell key: !anystr status: succeeded @@ -469,13 +468,12 @@ stages: minimumZHeight: 35.0 forceDirect: true result: - position: - { 'x': 353.38, 'y': 68.24, 'z': 49.05 } + position: { 'x': 353.38, 'y': 68.24, 'z': 49.05 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: dropTip key: !anystr status: succeeded @@ -493,10 +491,10 @@ stages: result: position: { 'x': 410.84000000000003, 'y': 374.56, 'z': 82.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: waitForResume key: !anystr status: succeeded @@ -504,10 +502,10 @@ stages: message: pause command result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToCoordinates key: !anystr status: succeeded @@ -522,10 +520,10 @@ stages: result: position: { 'x': 0.0, 'y': 0.0, 'z': 0.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -539,10 +537,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -556,10 +554,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: savePosition key: !anystr status: succeeded @@ -573,10 +571,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -590,10 +588,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: savePosition key: !anystr status: succeeded @@ -608,8 +606,8 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" errors: [] liquids: - id: waterId diff --git a/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_ot2.tavern.yaml b/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_ot2.tavern.yaml index 66a896ec3dd..4e5474eb375 100644 --- a/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_ot2.tavern.yaml +++ b/robot-server/tests/integration/http_api/protocols/test_v8_json_upload_ot2.tavern.yaml @@ -51,7 +51,7 @@ stages: json: data: id: '{protocol_id}' - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" files: - name: simpleV8.json role: main @@ -129,17 +129,17 @@ stages: commands: # Initial home - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: home key: !anystr status: succeeded params: {} result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadPipette key: !anystr status: succeeded @@ -150,10 +150,10 @@ stages: result: pipetteId: pipetteId notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadModule key: !anystr status: succeeded @@ -168,10 +168,10 @@ stages: model: magneticModuleV2 serialNumber: !anystr notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadModule key: !anystr status: succeeded @@ -186,10 +186,10 @@ stages: model: temperatureModuleV2 serialNumber: !anystr notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -205,10 +205,10 @@ stages: labwareId: sourcePlateId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -224,10 +224,10 @@ stages: labwareId: destPlateId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -243,10 +243,10 @@ stages: labwareId: tipRackId definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLabware key: !anystr status: succeeded @@ -262,10 +262,10 @@ stages: labwareId: fixedTrash definition: !anydict notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: loadLiquid key: !anystr status: succeeded @@ -277,20 +277,20 @@ stages: B1: 100.0 result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: home key: !anystr status: succeeded params: {} result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: pickUpTip key: !anystr status: succeeded @@ -310,10 +310,10 @@ stages: tipLength: 35.910000000000004 tipDiameter: 3.27 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: aspirate key: !anystr status: succeeded @@ -338,10 +338,10 @@ stages: } volume: 5.0 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: waitForDuration key: !anystr status: succeeded @@ -349,10 +349,10 @@ stages: seconds: 42.0 result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: dispense key: !anystr status: succeeded @@ -372,10 +372,10 @@ stages: position: { 'x': 280.805, 'y': 65.115, 'z': 84.3 } volume: 4.5 notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: touchTip key: !anystr status: succeeded @@ -393,10 +393,10 @@ stages: result: position: { 'x': 280.805, 'y': 65.115, 'z': 94.3 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: blowout key: !anystr status: succeeded @@ -414,10 +414,10 @@ stages: result: position: { 'x': 280.805, 'y': 65.115, 'z': 95.3 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToCoordinates key: !anystr status: succeeded @@ -431,10 +431,10 @@ stages: result: position: { 'x': 100.0, 'y': 100.0, 'z': 100.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToWell key: !anystr status: succeeded @@ -452,10 +452,10 @@ stages: result: position: { 'x': 289.805, 'y': 65.115, 'z': 98.25 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToWell key: !anystr status: succeeded @@ -474,10 +474,10 @@ stages: result: position: { 'x': 291.805, 'y': 68.115, 'z': 93.3 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: dropTip key: !anystr status: succeeded @@ -495,10 +495,10 @@ stages: result: position: { 'x': 347.84000000000003, 'y': 325.06, 'z': 82.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: waitForResume key: !anystr status: succeeded @@ -506,10 +506,10 @@ stages: message: pause command result: {} notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveToCoordinates key: !anystr status: succeeded @@ -524,10 +524,10 @@ stages: result: position: { 'x': 0.0, 'y': 0.0, 'z': 0.0 } notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -541,10 +541,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -558,10 +558,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: savePosition key: !anystr status: succeeded @@ -575,10 +575,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: moveRelative key: !anystr status: succeeded @@ -592,10 +592,10 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: savePosition key: !anystr status: succeeded @@ -610,8 +610,8 @@ stages: y: !anyfloat z: !anyfloat notes: [] - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" errors: [] liquids: - id: waterId diff --git a/robot-server/tests/integration/http_api/runs/test_json_v6_protocol_run.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_json_v6_protocol_run.tavern.yaml index e7ac3483dd7..a22c3c3d74a 100644 --- a/robot-server/tests/integration/http_api/runs/test_json_v6_protocol_run.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_json_v6_protocol_run.tavern.yaml @@ -32,7 +32,7 @@ stages: data: id: !anystr ok: True - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: idle current: True actions: [] @@ -103,7 +103,7 @@ stages: - id: !anystr key: !anystr commandType: home - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: queued params: {} - id: '{setup_command_id}' @@ -130,7 +130,7 @@ stages: data: id: !anystr actionType: play - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - name: Wait for the protocol to complete max_retries: 10 @@ -161,20 +161,20 @@ stages: commandId: !anystr index: 14 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 0 totalLength: 15 data: - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" commandType: home key: !anystr status: succeeded notes: [] params: {} - startedAt: !anystr - completedAt: !anystr + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: '{setup_command_id}' key: '{setup_command_key}' intent: setup @@ -183,14 +183,14 @@ stages: startedAt: '{setup_command_started_at}' completedAt: '{setup_command_completed_at}' status: succeeded - params: { } + params: {} notes: [] - id: !anystr key: !anystr commandType: loadPipette - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -200,9 +200,9 @@ stages: - id: !anystr key: !anystr commandType: loadModule - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -213,9 +213,9 @@ stages: - id: !anystr key: !anystr commandType: loadModule - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -226,9 +226,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -242,9 +242,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -258,9 +258,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -274,9 +274,9 @@ stages: - id: !anystr key: !anystr commandType: loadLiquid - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -288,9 +288,9 @@ stages: - id: !anystr key: !anystr commandType: pickUpTip - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -306,9 +306,9 @@ stages: - id: !anystr key: !anystr commandType: aspirate - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -326,9 +326,9 @@ stages: - id: !anystr key: !anystr commandType: dispense - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -346,9 +346,9 @@ stages: - id: !anystr key: !anystr commandType: moveToWell - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -365,9 +365,9 @@ stages: - id: !anystr key: !anystr commandType: moveToWell - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -386,9 +386,9 @@ stages: - id: !anystr key: !anystr commandType: dropTip - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -418,7 +418,7 @@ stages: commandId: !anystr index: 14 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 5 totalLength: 15 @@ -426,9 +426,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -442,9 +442,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: diff --git a/robot-server/tests/integration/http_api/runs/test_json_v6_run_failure.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_json_v6_run_failure.tavern.yaml index 80c7f1b2ef5..c177b045dc7 100644 --- a/robot-server/tests/integration/http_api/runs/test_json_v6_run_failure.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_json_v6_run_failure.tavern.yaml @@ -67,7 +67,7 @@ stages: data: errors: - id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" errorCode: '3005' errorType: TipNotAttachedError detail: Pipette should have a tip attached, but does not. @@ -88,7 +88,7 @@ stages: commandId: !anystr index: 3 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 3 totalLength: 4 @@ -96,15 +96,15 @@ stages: - id: !anystr key: !anystr commandType: aspirate - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: failed notes: [] error: id: !anystr errorType: TipNotAttachedError - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" detail: Pipette should have a tip attached, but does not. errorCode: '3005' errorInfo: !anydict @@ -120,4 +120,4 @@ stages: y: 0 z: 1 flowRate: 3.78 - volume: 100 \ No newline at end of file + volume: 100 diff --git a/robot-server/tests/integration/http_api/runs/test_json_v7_protocol_run.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_json_v7_protocol_run.tavern.yaml index bdc4ad4a66d..7aaec1dd822 100644 --- a/robot-server/tests/integration/http_api/runs/test_json_v7_protocol_run.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_json_v7_protocol_run.tavern.yaml @@ -32,7 +32,7 @@ stages: data: id: !anystr ok: True - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: idle current: True actions: [] @@ -103,9 +103,9 @@ stages: - id: !anystr key: !anystr commandType: home - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: queued - params: { } + params: {} - id: '{setup_command_id}' key: '{setup_command_key}' intent: setup @@ -130,7 +130,7 @@ stages: data: id: !anystr actionType: play - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - name: Wait for the protocol to complete max_retries: 10 @@ -161,7 +161,7 @@ stages: commandId: !anystr index: 14 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 0 totalLength: 15 @@ -169,12 +169,12 @@ stages: - id: !anystr key: !anystr commandType: home - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded - params: { } - notes: [ ] + params: {} + notes: [] - id: '{setup_command_id}' key: '{setup_command_key}' intent: setup @@ -183,14 +183,14 @@ stages: startedAt: '{setup_command_started_at}' completedAt: '{setup_command_completed_at}' status: succeeded - params: { } + params: {} notes: [] - id: !anystr key: !anystr commandType: loadPipette - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -200,9 +200,9 @@ stages: - id: !anystr key: !anystr commandType: loadModule - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -213,9 +213,9 @@ stages: - id: !anystr key: !anystr commandType: loadModule - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -226,9 +226,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -242,9 +242,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -258,9 +258,9 @@ stages: - id: !anystr key: !anystr commandType: loadLabware - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -274,9 +274,9 @@ stages: - id: !anystr key: !anystr commandType: loadLiquid - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -288,9 +288,9 @@ stages: - id: !anystr key: !anystr commandType: pickUpTip - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -306,9 +306,9 @@ stages: - id: !anystr key: !anystr commandType: aspirate - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -326,9 +326,9 @@ stages: - id: !anystr key: !anystr commandType: dispense - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -346,9 +346,9 @@ stages: - id: !anystr key: !anystr commandType: moveToWell - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -365,9 +365,9 @@ stages: - id: !anystr key: !anystr commandType: moveToWell - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: @@ -386,9 +386,9 @@ stages: - id: !anystr key: !anystr commandType: dropTip - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: diff --git a/robot-server/tests/integration/http_api/runs/test_papi_v2_run_failure.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_papi_v2_run_failure.tavern.yaml index bf2af00ac10..a93408fede0 100644 --- a/robot-server/tests/integration/http_api/runs/test_papi_v2_run_failure.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_papi_v2_run_failure.tavern.yaml @@ -68,7 +68,7 @@ stages: errors: - id: !anystr errorType: ExceptionInProtocolError - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" detail: 'UnexpectedTipRemovalError [line 9]: Error 3005 UNEXPECTED_TIP_REMOVAL (UnexpectedTipRemovalError): Cannot perform PREPARE_ASPIRATE without a tip attached.' errorCode: '4000' errorInfo: !anydict @@ -89,7 +89,7 @@ stages: commandId: !anystr index: 3 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 3 totalLength: 4 @@ -97,15 +97,15 @@ stages: - id: !anystr key: !anystr commandType: aspirate - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: failed notes: [] error: id: !anystr errorType: LegacyContextCommandError - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" detail: 'Cannot perform PREPARE_ASPIRATE without a tip attached.' errorCode: '3005' errorInfo: !anydict diff --git a/robot-server/tests/integration/http_api/runs/test_play_stop_papi.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_play_stop_papi.tavern.yaml index d59b533ca67..e7b254911df 100644 --- a/robot-server/tests/integration/http_api/runs/test_play_stop_papi.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_play_stop_papi.tavern.yaml @@ -91,38 +91,36 @@ stages: - id: !anystr key: !anystr commandType: home - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded params: {} notes: [] - id: !anystr key: !anystr commandType: home - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded - params: { } - notes: [ ] + params: {} + notes: [] - id: !anystr key: !anystr commandType: waitForDuration - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: failed params: seconds: 30 - notes: [ ] + notes: [] error: - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" detail: 'Run was cancelled' errorCode: '4000' - errorInfo: { } + errorInfo: {} errorType: 'RunStoppedError' id: !anystr - wrappedErrors: [ ] - - + wrappedErrors: [] diff --git a/robot-server/tests/integration/http_api/runs/test_play_stop_v6.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_play_stop_v6.tavern.yaml index e3d6d5b659f..0efeacbe734 100644 --- a/robot-server/tests/integration/http_api/runs/test_play_stop_v6.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_play_stop_v6.tavern.yaml @@ -91,38 +91,36 @@ stages: - id: !anystr key: !anystr commandType: home - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded params: {} notes: [] - id: !anystr key: !anystr commandType: home - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded - params: { } - notes: [ ] + params: {} + notes: [] - id: !anystr key: !anystr commandType: waitForDuration - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: failed params: seconds: 30 - notes: [ ] + notes: [] error: - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" detail: 'Run was cancelled' errorCode: '4000' - errorInfo: { } + errorInfo: {} errorType: 'RunStoppedError' id: !anystr - wrappedErrors: [ ] - - + wrappedErrors: [] diff --git a/robot-server/tests/integration/http_api/runs/test_protocol_run.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_protocol_run.tavern.yaml index 67d1511a666..159b1238986 100644 --- a/robot-server/tests/integration/http_api/runs/test_protocol_run.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_protocol_run.tavern.yaml @@ -29,7 +29,7 @@ stages: data: id: !anystr ok: True - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: idle current: True actions: [] @@ -98,7 +98,7 @@ stages: json: data: id: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" definitionUri: opentrons/biorad_96_wellplate_200ul_pcr/1 location: slotName: '1' @@ -123,7 +123,7 @@ stages: data: id: !anystr actionType: play - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" save: json: play_action_id: data.id @@ -160,7 +160,7 @@ stages: commandId: !anystr index: 1 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 0 totalLength: 2 @@ -168,9 +168,9 @@ stages: - id: !anystr key: !anystr commandType: home - createdAt: !anystr - startedAt: !anystr - completedAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded notes: [] params: {} @@ -185,9 +185,9 @@ stages: loadName: 'biorad_96_wellplate_200ul_pcr' namespace: 'opentrons' version: 1 - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - startedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - completedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" save: json: load_labware_command_id: data[1].id @@ -217,9 +217,9 @@ stages: # so we just trust that this is correct. definition: !anydict offsetId: '{labware_offset_id}' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - startedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - completedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - name: Mark the run as not-current and check its final data request: @@ -235,11 +235,11 @@ stages: # Unchanged from when we originally POSTed the resource: id: '{run_id}' ok: True - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - startedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" liquids: [] runTimeParameters: [] - completedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" errors: [] pipettes: [] modules: [] @@ -249,12 +249,12 @@ stages: # Changed when we POSTed a play action: actions: - id: '{play_action_id}' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" actionType: play # Changed when we POSTed a labware offset: labwareOffsets: - id: '{labware_offset_id}' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" definitionUri: opentrons/biorad_96_wellplate_200ul_pcr/1 location: slotName: '1' diff --git a/robot-server/tests/integration/http_api/runs/test_run_queued_protocol_commands.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_run_queued_protocol_commands.tavern.yaml index 9d188402deb..074f68b5456 100644 --- a/robot-server/tests/integration/http_api/runs/test_run_queued_protocol_commands.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_run_queued_protocol_commands.tavern.yaml @@ -87,7 +87,7 @@ stages: data: ok: True actions: [] - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" current: True errors: [] id: '{run_id}' @@ -112,7 +112,7 @@ stages: data: id: !anystr actionType: play - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" save: json: play_action_id: data.id @@ -149,7 +149,7 @@ stages: commandId: !anystr index: 3 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 0 totalLength: 4 @@ -162,9 +162,9 @@ stages: notes: [] params: message: 'test 1' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - startedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - completedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr key: !anystr commandType: comment @@ -173,9 +173,9 @@ stages: notes: [] params: message: 'test 2' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - startedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - completedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr key: !anystr commandType: comment @@ -184,9 +184,9 @@ stages: notes: [] params: message: 'test 3' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - startedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - completedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - id: !anystr key: !anystr commandType: comment @@ -195,9 +195,9 @@ stages: notes: [] params: message: 'test 4' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - startedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" - completedAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + startedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" + completedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - name: Get all the commands in the run as a pre-serialized list request: @@ -213,4 +213,4 @@ stages: - !anystr meta: cursor: 0 - totalLength: 4 \ No newline at end of file + totalLength: 4 diff --git a/robot-server/tests/integration/http_api/runs/test_run_with_run_time_parameters.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_run_with_run_time_parameters.tavern.yaml index d7f075b18cb..de0966ac42f 100644 --- a/robot-server/tests/integration/http_api/runs/test_run_with_run_time_parameters.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_run_with_run_time_parameters.tavern.yaml @@ -38,7 +38,7 @@ stages: data: id: !anystr ok: True - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: idle current: True actions: [] @@ -64,7 +64,7 @@ stages: data: id: !anystr actionType: play - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" - name: Wait for the protocol to complete max_retries: 10 @@ -92,7 +92,7 @@ stages: data: id: !anystr ok: True - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded current: True runTimeParameters: @@ -158,7 +158,7 @@ stages: data: id: !anystr ok: True - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: succeeded current: False runTimeParameters: diff --git a/robot-server/tests/integration/http_api/runs/test_runs_pagination.tavern.yaml b/robot-server/tests/integration/http_api/runs/test_runs_pagination.tavern.yaml index 00111d778cc..7434594e5b2 100644 --- a/robot-server/tests/integration/http_api/runs/test_runs_pagination.tavern.yaml +++ b/robot-server/tests/integration/http_api/runs/test_runs_pagination.tavern.yaml @@ -85,38 +85,38 @@ stages: json: data: - id: '{first_run_id}' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: stopped current: False - actions: [ ] - errors: [ ] - pipettes: [ ] - modules: [ ] - labware: [ ] - labwareOffsets: [ ] - liquids: [ ] + actions: [] + errors: [] + pipettes: [] + modules: [] + labware: [] + labwareOffsets: [] + liquids: [] - id: '{second_run_id}' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: stopped current: False - actions: [ ] - errors: [ ] - pipettes: [ ] - modules: [ ] - labware: [ ] - labwareOffsets: [ ] - liquids: [ ] + actions: [] + errors: [] + pipettes: [] + modules: [] + labware: [] + labwareOffsets: [] + liquids: [] - id: '{third_run_id}' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" status: idle current: True - actions: [ ] - errors: [ ] - pipettes: [ ] - modules: [ ] - labware: [ ] - labwareOffsets: [ ] - liquids: [ ] + actions: [] + errors: [] + pipettes: [] + modules: [] + labware: [] + labwareOffsets: [] + liquids: [] links: current: href: '/runs/{third_run_id}' @@ -129,9 +129,7 @@ stages: - json:off status_code: 200 json: - data: - [] + data: [] links: current: href: '/runs/{third_run_id}' - diff --git a/robot-server/tests/integration/http_api/test_command_key_hash_matching.tavern.yaml b/robot-server/tests/integration/http_api/test_command_key_hash_matching.tavern.yaml index db2c4ddceda..357c4783498 100644 --- a/robot-server/tests/integration/http_api/test_command_key_hash_matching.tavern.yaml +++ b/robot-server/tests/integration/http_api/test_command_key_hash_matching.tavern.yaml @@ -97,7 +97,7 @@ stages: commandId: !anystr index: 7 key: !anystr - createdAt: !anystr + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" meta: cursor: 0 totalLength: 8 diff --git a/robot-server/tests/integration/http_api/test_deck_configuration.tavern.yaml b/robot-server/tests/integration/http_api/test_deck_configuration.tavern.yaml index 7ade14b4f8e..25696fa25d8 100644 --- a/robot-server/tests/integration/http_api/test_deck_configuration.tavern.yaml +++ b/robot-server/tests/integration/http_api/test_deck_configuration.tavern.yaml @@ -86,7 +86,7 @@ stages: response: json: data: - lastModifiedAt: !anystr + lastModifiedAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" cutoutFixtures: *expectedNonDefaultCutoutFixtures save: json: diff --git a/robot-server/tests/integration/sessions/test_calibration_check.tavern.yaml b/robot-server/tests/integration/sessions/test_calibration_check.tavern.yaml index d1ffb278ee0..c0253f76f03 100644 --- a/robot-server/tests/integration/sessions/test_calibration_check.tavern.yaml +++ b/robot-server/tests/integration/sessions/test_calibration_check.tavern.yaml @@ -36,7 +36,7 @@ stages: data: &session_data id: "{session_id}" sessionType: calibrationCheck - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" createParams: tipRacks: [] hasCalibrationBlock: true diff --git a/robot-server/tests/integration/sessions/test_deck_calibration.tavern.yaml b/robot-server/tests/integration/sessions/test_deck_calibration.tavern.yaml index 6969e8d4d91..277160ec4fd 100644 --- a/robot-server/tests/integration/sessions/test_deck_calibration.tavern.yaml +++ b/robot-server/tests/integration/sessions/test_deck_calibration.tavern.yaml @@ -8,7 +8,7 @@ marks: stages: - name: Create the session request: - url: "{ot2_server_base_url}/sessions" + url: '{ot2_server_base_url}/sessions' method: POST json: data: @@ -21,16 +21,16 @@ stages: - name: Get the session request: &get_session - url: "{ot2_server_base_url}/sessions/{session_id}" + url: '{ot2_server_base_url}/sessions/{session_id}' method: GET response: status_code: 200 json: links: !anydict data: &session_data - id: "{session_id}" + id: '{session_id}' sessionType: deckCalibration - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" createParams: null details: &session_data_attribute_details currentStep: sessionStarted @@ -40,7 +40,7 @@ stages: - name: Load labware request: &post_command - url: "{ot2_server_base_url}/sessions/{session_id}/commands/execute" + url: '{ot2_server_base_url}/sessions/{session_id}/commands/execute' method: POST json: data: @@ -200,7 +200,7 @@ stages: - name: Move to point one request: - url: "{ot2_server_base_url}/sessions/{session_id}/commands/execute" + url: '{ot2_server_base_url}/sessions/{session_id}/commands/execute' method: POST json: data: @@ -222,7 +222,7 @@ stages: - name: Move to point two request: - url: "{ot2_server_base_url}/sessions/{session_id}/commands/execute" + url: '{ot2_server_base_url}/sessions/{session_id}/commands/execute' method: POST json: data: @@ -244,7 +244,7 @@ stages: - name: Move to point three request: - url: "{ot2_server_base_url}/sessions/{session_id}/commands/execute" + url: '{ot2_server_base_url}/sessions/{session_id}/commands/execute' method: POST json: data: @@ -266,7 +266,7 @@ stages: - name: Exit Session request: - url: "{ot2_server_base_url}/sessions/{session_id}/commands/execute" + url: '{ot2_server_base_url}/sessions/{session_id}/commands/execute' method: POST json: data: @@ -288,15 +288,15 @@ stages: - name: Delete the session request: - url: "{ot2_server_base_url}/sessions/{session_id}" + url: '{ot2_server_base_url}/sessions/{session_id}' method: DELETE response: status_code: 200 - name: There are no session request: - url: "{ot2_server_base_url}/sessions" - method: GET + url: '{ot2_server_base_url}/sessions' + method: GET response: status_code: 200 json: diff --git a/robot-server/tests/integration/sessions/test_session.tavern.yaml b/robot-server/tests/integration/sessions/test_session.tavern.yaml index 1f0d9eef045..b13f7eec283 100644 --- a/robot-server/tests/integration/sessions/test_session.tavern.yaml +++ b/robot-server/tests/integration/sessions/test_session.tavern.yaml @@ -83,12 +83,12 @@ stages: data: - id: '{session_id_1}' sessionType: 'pipetteOffsetCalibration' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" details: !anydict createParams: !anydict - id: '{session_id_2}' sessionType: 'deckCalibration' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" details: !anydict createParams: null @@ -103,7 +103,7 @@ stages: data: - id: '{session_id_2}' sessionType: 'deckCalibration' - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" details: !anydict createParams: null diff --git a/robot-server/tests/integration/sessions/test_tip_length_calibration.tavern.yaml b/robot-server/tests/integration/sessions/test_tip_length_calibration.tavern.yaml index e8963255673..c3f39a61a23 100644 --- a/robot-server/tests/integration/sessions/test_tip_length_calibration.tavern.yaml +++ b/robot-server/tests/integration/sessions/test_tip_length_calibration.tavern.yaml @@ -8,7 +8,7 @@ marks: stages: - name: Create the session request: - url: "{ot2_server_base_url}/sessions" + url: '{ot2_server_base_url}/sessions' method: POST json: data: @@ -24,16 +24,16 @@ stages: session_id: data.id - name: Get the session request: - url: "{ot2_server_base_url}/sessions/{session_id}" + url: '{ot2_server_base_url}/sessions/{session_id}' method: GET response: status_code: 200 json: links: !anydict data: - id: "{session_id}" + id: '{session_id}' sessionType: tipLengthCalibration - createdAt: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + createdAt: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" details: &session_data_attribute_details currentStep: sessionStarted instrument: !anydict @@ -48,7 +48,7 @@ stages: - name: Load labware request: - url: "{ot2_server_base_url}/sessions/{session_id}/commands/execute" + url: '{ot2_server_base_url}/sessions/{session_id}/commands/execute' method: POST json: data: @@ -62,8 +62,7 @@ stages: id: !anystr status: executed command: calibration.loadLabware - createdAt: &dt - !re_match "\\d+-\\d+-\\d+T" + createdAt: !re_match &dt "\\d+-\\d+-\\d+T" startedAt: *dt completedAt: *dt data: @@ -72,7 +71,7 @@ stages: - name: Attempt conflicting command request: - url: "{ot2_server_base_url}/sessions/{session_id}/commands/execute" + url: '{ot2_server_base_url}/sessions/{session_id}/commands/execute' method: POST json: data: @@ -83,14 +82,14 @@ stages: - name: Delete the session request: - url: "{ot2_server_base_url}/sessions/{session_id}" + url: '{ot2_server_base_url}/sessions/{session_id}' method: DELETE response: status_code: 200 - name: There are no sessions request: - url: "{ot2_server_base_url}/sessions" + url: '{ot2_server_base_url}/sessions' method: GET response: status_code: 200 diff --git a/robot-server/tests/integration/system/test_system_time.tavern.yaml b/robot-server/tests/integration/system/test_system_time.tavern.yaml index 04a5f03af05..1b78ea1d1f5 100644 --- a/robot-server/tests/integration/system/test_system_time.tavern.yaml +++ b/robot-server/tests/integration/system/test_system_time.tavern.yaml @@ -6,13 +6,13 @@ marks: stages: - name: System Time GET request returns time in correct format request: - url: "{ot2_server_base_url}/system/time" + url: '{ot2_server_base_url}/system/time' method: GET response: status_code: 200 json: data: - systemTime: !re_search "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+\\+\\d{2}:\\d{2}$" + systemTime: !re_fullmatch "\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}\\.\\d+(Z|([+-]\\d{2}:\\d{2}))" id: 'time' links: self: @@ -27,34 +27,34 @@ marks: stages: - name: System Time PUT request without a time returns a missing field error request: - url: "{ot2_server_base_url}/system/time" + url: '{ot2_server_base_url}/system/time' method: PUT json: data: - id: "time" + id: 'time' response: status_code: 422 json: errors: - - id: "InvalidRequest" - title: "Invalid Request" - detail: "field required" + - id: 'InvalidRequest' + title: 'Invalid Request' + detail: 'field required' errorCode: '4000' source: - pointer: "/data/systemTime" + pointer: '/data/systemTime' - name: System Time PUT request on a dev server raises error request: - url: "{ot2_server_base_url}/system/time" + url: '{ot2_server_base_url}/system/time' method: PUT json: data: - id: "time" - systemTime: "2020-09-10T21:00:15.741Z" + id: 'time' + systemTime: '2020-09-10T21:00:15.741Z' response: status_code: 501 json: errors: - - id: "UncategorizedError" - title: "Not implemented" - detail: "Method not implemented. Not supported on dev server." + - id: 'UncategorizedError' + title: 'Not implemented' + detail: 'Method not implemented. Not supported on dev server.' errorCode: '4000' diff --git a/robot-server/tests/integration/test_modules.tavern.yaml b/robot-server/tests/integration/test_modules.tavern.yaml index 48220193df7..d08eabe1234 100644 --- a/robot-server/tests/integration/test_modules.tavern.yaml +++ b/robot-server/tests/integration/test_modules.tavern.yaml @@ -1,5 +1,5 @@ --- -test_name: Get modules +test_name: Get modules OT2 marks: - usefixtures: - ot2_server_base_url @@ -19,7 +19,7 @@ stages: moduleModel: thermocyclerModuleV1 port: !anystr usbPort: !anydict - serial: !anystr + serial: therm-123 model: !anystr revision: !anystr fwVersion: !anystr @@ -42,7 +42,7 @@ stages: moduleModel: heaterShakerModuleV1 port: !anystr usbPort: !anydict - serial: !anystr + serial: hs-123 model: !anystr revision: !anystr fwVersion: !anystr @@ -62,7 +62,7 @@ stages: moduleModel: temperatureModuleV1 port: !anystr usbPort: !anydict - serial: !anystr + serial: temp-123 model: !anystr revision: !anystr fwVersion: !anystr @@ -73,10 +73,10 @@ stages: targetTemp: !anyfloat - name: magdeck displayName: magdeck - moduleModel: magneticModuleV1 + moduleModel: magneticModuleV2 port: !anystr usbPort: !anydict - serial: !anystr + serial: mag-123 model: !anystr revision: !anystr fwVersion: !anystr @@ -90,7 +90,7 @@ stages: moduleModel: magneticModuleV1 port: !anystr usbPort: !anydict - serial: !anystr + serial: mag-1234 model: !anystr revision: !anystr fwVersion: !anystr @@ -109,10 +109,11 @@ stages: meta: !anydict data: - id: !anystr - serialNumber: !anystr + serialNumber: therm-123 firmwareVersion: !anystr hardwareRevision: !anystr hasAvailableUpdate: !anybool + compatibleWithRobot: true moduleType: thermocyclerModuleType moduleModel: thermocyclerModuleV1 usbPort: @@ -130,10 +131,11 @@ stages: targetTemperature: !anyfloat holdTime: !anyfloat - id: !anystr - serialNumber: !anystr + serialNumber: hs-123 firmwareVersion: !anystr hardwareRevision: !anystr hasAvailableUpdate: !anybool + compatibleWithRobot: true moduleType: heaterShakerModuleType moduleModel: heaterShakerModuleV1 usbPort: @@ -149,10 +151,11 @@ stages: currentSpeed: !anyint currentTemperature: !anyfloat - id: !anystr - serialNumber: !anystr + serialNumber: temp-123 firmwareVersion: !anystr hardwareRevision: !anystr hasAvailableUpdate: !anybool + compatibleWithRobot: true moduleType: temperatureModuleType moduleModel: temperatureModuleV1 usbPort: @@ -165,12 +168,13 @@ stages: currentTemperature: !anyfloat targetTemperature: !anyfloat - id: !anystr - serialNumber: !anystr + serialNumber: mag-123 firmwareVersion: !anystr hardwareRevision: !anystr hasAvailableUpdate: !anybool + compatibleWithRobot: true moduleType: magneticModuleType - moduleModel: magneticModuleV1 + moduleModel: magneticModuleV2 usbPort: port: !anyint hub: !anybool @@ -181,10 +185,11 @@ stages: height: !anyfloat engaged: !anybool - id: !anystr - serialNumber: !anystr + serialNumber: mag-1234 firmwareVersion: !anystr hardwareRevision: !anystr hasAvailableUpdate: !anybool + compatibleWithRobot: true moduleType: magneticModuleType moduleModel: magneticModuleV1 usbPort: @@ -196,3 +201,95 @@ stages: status: !anystr height: !anyfloat engaged: !anybool + +--- +test_name: Get modules on Flex +marks: + - usefixtures: + - ot3_server_base_url +stages: + - name: Get all the modules + request: + url: '{ot3_server_base_url}/modules' + method: GET + response: + status_code: 200 + json: + meta: !anydict + data: + - id: !anystr + serialNumber: !anystr + firmwareVersion: !anystr + hardwareRevision: !anystr + hasAvailableUpdate: !anybool + compatibleWithRobot: true + moduleType: thermocyclerModuleType + moduleModel: thermocyclerModuleV2 + usbPort: + port: !anyint + hub: !anybool + portGroup: !anystr + path: !anystr + data: + status: !anystr + lidStatus: !anystr + lidTemperatureStatus: !anystr + lidTargetTemperature: !anyfloat + lidTemperature: !anyfloat + currentTemperature: !anyfloat + targetTemperature: !anyfloat + holdTime: !anyfloat + - id: !anystr + serialNumber: !anystr + firmwareVersion: !anystr + hardwareRevision: !anystr + hasAvailableUpdate: !anybool + compatibleWithRobot: true + moduleType: heaterShakerModuleType + moduleModel: heaterShakerModuleV1 + usbPort: + port: !anyint + hub: !anybool + portGroup: !anystr + path: !anystr + data: + status: !anystr + labwareLatchStatus: !anystr + speedStatus: !anystr + temperatureStatus: !anystr + currentSpeed: !anyint + currentTemperature: !anyfloat + - id: !anystr + serialNumber: !anystr + firmwareVersion: !anystr + hardwareRevision: !anystr + hasAvailableUpdate: !anybool + compatibleWithRobot: true + moduleType: temperatureModuleType + moduleModel: temperatureModuleV2 + usbPort: + port: !anyint + hub: !anybool + portGroup: !anystr + path: !anystr + data: + status: !anystr + currentTemperature: !anyfloat + targetTemperature: !anyfloat + - id: !anystr + serialNumber: !anystr + firmwareVersion: !anystr + hardwareRevision: !anystr + hasAvailableUpdate: !anybool + compatibleWithRobot: true + moduleType: temperatureModuleType + moduleModel: temperatureModuleV2 + usbPort: + port: !anyint + hub: !anybool + portGroup: !anystr + path: !anystr + data: + status: !anystr + currentTemperature: !anyfloat + targetTemperature: !anyfloat diff --git a/robot-server/tests/maintenance_runs/router/test_commands_router.py b/robot-server/tests/maintenance_runs/router/test_commands_router.py index 6bca22e523a..5d5e66abff5 100644 --- a/robot-server/tests/maintenance_runs/router/test_commands_router.py +++ b/robot-server/tests/maintenance_runs/router/test_commands_router.py @@ -1,4 +1,4 @@ -"""Tests for the /runs/.../commands routes.""" +"""Tests for the /maintenance_runs/.../commands routes.""" import pytest from datetime import datetime @@ -6,7 +6,7 @@ from opentrons.protocol_engine import ( CommandSlice, - CurrentCommand, + CommandPointer, ProtocolEngine, commands as pe_commands, errors as pe_errors, @@ -27,15 +27,17 @@ MaintenanceRunNotFoundError, ) from robot_server.maintenance_runs.router.commands_router import ( - CommandCollectionLinks, - CommandLink, - CommandLinkMeta, - RequestModelWithCommandCreate, create_run_command, get_run_command, get_run_commands, get_current_run_engine_from_url, ) +from robot_server.runs.command_models import ( + RequestModelWithCommandCreate, + CommandCollectionLinks, + CommandLink, + CommandLinkMeta, +) async def test_get_current_run_engine_from_url( @@ -197,13 +199,24 @@ async def test_get_run_commands( decoy.when( mock_maintenance_run_data_manager.get_current_command("run-id") ).then_return( - CurrentCommand( + CommandPointer( command_id="current-command-id", command_key="current-command-key", created_at=datetime(year=2024, month=4, day=4), index=101, ) ) + decoy.when( + mock_maintenance_run_data_manager.get_recovery_target_command("run-id") + ).then_return( + CommandPointer( + command_id="recovery-target-command-id", + command_key="recovery-target-command-key", + created_at=datetime(year=2025, month=5, day=5), + index=202, + ) + ) + decoy.when( mock_maintenance_run_data_manager.get_commands_slice( run_id="run-id", @@ -241,7 +254,7 @@ async def test_get_run_commands( assert result.content.meta == MultiBodyMeta(cursor=1, totalLength=3) assert result.content.links == CommandCollectionLinks( current=CommandLink( - href="/runs/run-id/commands/current-command-id", + href="/maintenance_runs/run-id/commands/current-command-id", meta=CommandLinkMeta( runId="run-id", commandId="current-command-id", @@ -249,7 +262,17 @@ async def test_get_run_commands( createdAt=datetime(year=2024, month=4, day=4), index=101, ), - ) + ), + currentlyRecoveringFrom=CommandLink( + href="/maintenance_runs/run-id/commands/recovery-target-command-id", + meta=CommandLinkMeta( + runId="run-id", + commandId="recovery-target-command-id", + key="recovery-target-command-key", + createdAt=datetime(year=2025, month=5, day=5), + index=202, + ), + ), ) assert result.status_code == 200 diff --git a/robot-server/tests/modules/test_module_data_mapper.py b/robot-server/tests/modules/test_module_data_mapper.py index 7eb50854428..62fa54e9a49 100644 --- a/robot-server/tests/modules/test_module_data_mapper.py +++ b/robot-server/tests/modules/test_module_data_mapper.py @@ -1,7 +1,7 @@ """Tests for robot_server.modules.module_data_mapper.""" import pytest -from opentrons.protocol_engine import ModuleModel +from opentrons.protocol_engine import ModuleModel, DeckType from opentrons.protocol_engine.types import Vec3f from opentrons.drivers.rpi_drivers.types import USBPort as HardwareUSBPort, PortGroup from opentrons.hardware_control.modules import ( @@ -31,50 +31,88 @@ @pytest.mark.parametrize( - ("input_model", "input_data", "expected_output_data"), + ( + "input_model", + "deck_type", + "input_data", + "expected_output_data", + "expected_compatible", + ), [ ( "magneticModuleV1", + DeckType("ot2_standard"), {"status": "disengaged", "data": {"engaged": False, "height": 0.0}}, MagneticModuleData( status=MagneticStatus.DISENGAGED, engaged=False, height=-2.5, ), + True, ), ( "magneticModuleV1", + DeckType("ot3_standard"), + {"status": "disengaged", "data": {"engaged": False, "height": 0.0}}, + MagneticModuleData( + status=MagneticStatus.DISENGAGED, + engaged=False, + height=-2.5, + ), + False, + ), + ( + "magneticModuleV1", + DeckType("ot2_standard"), {"status": "engaged", "data": {"engaged": True, "height": 42}}, MagneticModuleData( status=MagneticStatus.ENGAGED, engaged=True, height=18.5, ), + True, ), ( "magneticModuleV2", + DeckType("ot2_standard"), {"status": "disengaged", "data": {"engaged": False, "height": 0.0}}, MagneticModuleData( status=MagneticStatus.DISENGAGED, engaged=False, height=-2.5, ), + True, ), ( "magneticModuleV2", + DeckType("ot3_standard"), + {"status": "disengaged", "data": {"engaged": False, "height": 0.0}}, + MagneticModuleData( + status=MagneticStatus.DISENGAGED, + engaged=False, + height=-2.5, + ), + False, + ), + ( + "magneticModuleV2", + DeckType("ot2_standard"), {"status": "engaged", "data": {"engaged": True, "height": 42}}, MagneticModuleData( status=MagneticStatus.ENGAGED, engaged=True, height=39.5, ), + True, ), ], ) def test_maps_magnetic_module_data( input_model: str, + deck_type: DeckType, input_data: LiveData, expected_output_data: MagneticModuleData, + expected_compatible: bool, ) -> None: """It should map hardware data to a magnetic module.""" module_identity = ModuleIdentity( @@ -93,7 +131,7 @@ def test_maps_magnetic_module_data( device_path="/dev/null", ) - subject = ModuleDataMapper() + subject = ModuleDataMapper(deck_type=deck_type) result = subject.map_data( model=input_model, module_identity=module_identity, @@ -113,6 +151,7 @@ def test_maps_magnetic_module_data( hasAvailableUpdate=True, moduleType=ModuleType.MAGNETIC, moduleModel=ModuleModel(input_model), # type: ignore[arg-type] + compatibleWithRobot=expected_compatible, usbPort=UsbPort( port=101, portGroup=PortGroup.UNKNOWN, @@ -126,8 +165,13 @@ def test_maps_magnetic_module_data( @pytest.mark.parametrize( - "input_model", - ["temperatureModuleV1", "temperatureModuleV2"], + "input_model,deck_type,expected_compatible", + [ + ("temperatureModuleV1", DeckType("ot2_standard"), True), + ("temperatureModuleV1", DeckType("ot3_standard"), False), + ("temperatureModuleV2", DeckType("ot2_standard"), True), + ("temperatureModuleV2", DeckType("ot3_standard"), True), + ], ) @pytest.mark.parametrize( "input_data", @@ -139,7 +183,12 @@ def test_maps_magnetic_module_data( }, ], ) -def test_maps_temperature_module_data(input_model: str, input_data: LiveData) -> None: +def test_maps_temperature_module_data( + input_model: str, + deck_type: DeckType, + expected_compatible: bool, + input_data: LiveData, +) -> None: """It should map hardware data to a magnetic module.""" module_identity = ModuleIdentity( module_id="module-id", @@ -157,7 +206,7 @@ def test_maps_temperature_module_data(input_model: str, input_data: LiveData) -> device_path="/dev/null", ) - subject = ModuleDataMapper() + subject = ModuleDataMapper(deck_type=deck_type) result = subject.map_data( model=input_model, module_identity=module_identity, @@ -176,6 +225,7 @@ def test_maps_temperature_module_data(input_model: str, input_data: LiveData) -> hardwareRevision="4.5.6", hasAvailableUpdate=True, moduleType=ModuleType.TEMPERATURE, + compatibleWithRobot=expected_compatible, moduleModel=ModuleModel(input_model), # type: ignore[arg-type] usbPort=UsbPort( port=101, @@ -194,8 +244,13 @@ def test_maps_temperature_module_data(input_model: str, input_data: LiveData) -> @pytest.mark.parametrize( - "input_model", - ["thermocyclerModuleV1"], + "input_model,deck_type,expected_compatible", + [ + ("thermocyclerModuleV1", DeckType("ot2_standard"), True), + ("thermocyclerModuleV1", DeckType("ot3_standard"), False), + ("thermocyclerModuleV2", DeckType("ot2_standard"), True), + ("thermocyclerModuleV2", DeckType("ot3_standard"), True), + ], ) @pytest.mark.parametrize( "input_data", @@ -236,7 +291,12 @@ def test_maps_temperature_module_data(input_model: str, input_data: LiveData) -> }, ], ) -def test_maps_thermocycler_module_data(input_model: str, input_data: LiveData) -> None: +def test_maps_thermocycler_module_data( + input_model: str, + deck_type: DeckType, + expected_compatible: bool, + input_data: LiveData, +) -> None: """It should map hardware data to a magnetic module.""" module_identity = ModuleIdentity( module_id="module-id", @@ -254,7 +314,7 @@ def test_maps_thermocycler_module_data(input_model: str, input_data: LiveData) - device_path="/dev/null", ) - subject = ModuleDataMapper() + subject = ModuleDataMapper(deck_type=deck_type) result = subject.map_data( model=input_model, module_identity=module_identity, @@ -273,6 +333,7 @@ def test_maps_thermocycler_module_data(input_model: str, input_data: LiveData) - hardwareRevision="4.5.6", hasAvailableUpdate=True, moduleType=ModuleType.THERMOCYCLER, + compatibleWithRobot=expected_compatible, moduleModel=ModuleModel(input_model), # type: ignore[arg-type] usbPort=UsbPort( port=101, @@ -301,8 +362,11 @@ def test_maps_thermocycler_module_data(input_model: str, input_data: LiveData) - @pytest.mark.parametrize( - "input_model", - ["heaterShakerModuleV1"], + "input_model,deck_type", + [ + ("heaterShakerModuleV1", DeckType("ot2_standard")), + ("heaterShakerModuleV1", DeckType("ot3_standard")), + ], ) @pytest.mark.parametrize( "input_data", @@ -335,7 +399,9 @@ def test_maps_thermocycler_module_data(input_model: str, input_data: LiveData) - }, ], ) -def test_maps_heater_shaker_module_data(input_model: str, input_data: LiveData) -> None: +def test_maps_heater_shaker_module_data( + input_model: str, deck_type: DeckType, input_data: LiveData +) -> None: """It should map hardware data to a magnetic module.""" module_identity = ModuleIdentity( module_id="module-id", @@ -353,7 +419,7 @@ def test_maps_heater_shaker_module_data(input_model: str, input_data: LiveData) device_path="/dev/null", ) - subject = ModuleDataMapper() + subject = ModuleDataMapper(deck_type=deck_type) result = subject.map_data( model=input_model, module_identity=module_identity, @@ -372,6 +438,7 @@ def test_maps_heater_shaker_module_data(input_model: str, input_data: LiveData) hardwareRevision="4.5.6", hasAvailableUpdate=True, moduleType=ModuleType.HEATER_SHAKER, + compatibleWithRobot=True, moduleModel=ModuleModel(input_model), # type: ignore[arg-type] usbPort=UsbPort( port=101, diff --git a/robot-server/tests/modules/test_router.py b/robot-server/tests/modules/test_router.py index 6aa92b3fee7..f2392672109 100644 --- a/robot-server/tests/modules/test_router.py +++ b/robot-server/tests/modules/test_router.py @@ -49,7 +49,9 @@ def module_identifier(decoy: Decoy) -> ModuleIdentifier: @pytest.fixture() -def module_data_mapper(decoy: Decoy) -> ModuleDataMapper: +def module_data_mapper( + decoy: Decoy, +) -> ModuleDataMapper: """Get a mock module data mapper.""" return decoy.mock(cls=ModuleDataMapper) @@ -87,6 +89,7 @@ async def test_get_modules_maps_data_and_id( hasAvailableUpdate=True, moduleType=ModuleType.MAGNETIC, moduleModel=ModuleModel.MAGNETIC_MODULE_V1, + compatibleWithRobot=True, usbPort=UsbPort( port=42, hub=False, diff --git a/robot-server/tests/runs/router/test_commands_router.py b/robot-server/tests/runs/router/test_commands_router.py index 93adb46fa53..d0cf29ecd85 100644 --- a/robot-server/tests/runs/router/test_commands_router.py +++ b/robot-server/tests/runs/router/test_commands_router.py @@ -6,7 +6,7 @@ from opentrons.protocol_engine import ( CommandSlice, - CurrentCommand, + CommandPointer, ProtocolEngine, CommandNote, commands as pe_commands, @@ -16,15 +16,17 @@ from robot_server.errors.error_responses import ApiError from robot_server.service.json_api import MultiBodyMeta +from robot_server.runs.command_models import ( + RequestModelWithCommandCreate, + CommandCollectionLinks, + CommandLink, + CommandLinkMeta, +) from robot_server.runs.run_store import RunStore, CommandNotFoundError from robot_server.runs.engine_store import EngineStore from robot_server.runs.run_data_manager import RunDataManager from robot_server.runs.run_models import RunCommandSummary, RunNotFoundError from robot_server.runs.router.commands_router import ( - CommandCollectionLinks, - CommandLink, - CommandLinkMeta, - RequestModelWithCommandCreate, create_run_command, get_run_command, get_run_commands, @@ -319,13 +321,21 @@ async def test_get_run_commands( ) decoy.when(mock_run_data_manager.get_current_command("run-id")).then_return( - CurrentCommand( + CommandPointer( command_id="current-command-id", command_key="current-command-key", created_at=datetime(year=2024, month=4, day=4), index=101, ) ) + decoy.when(mock_run_data_manager.get_recovery_target_command("run-id")).then_return( + CommandPointer( + command_id="recovery-target-command-id", + command_key="recovery-target-command-key", + created_at=datetime(year=2025, month=5, day=5), + index=202, + ) + ) decoy.when( mock_run_data_manager.get_commands_slice( run_id="run-id", @@ -372,7 +382,17 @@ async def test_get_run_commands( createdAt=datetime(year=2024, month=4, day=4), index=101, ), - ) + ), + currentlyRecoveringFrom=CommandLink( + href="/runs/run-id/commands/recovery-target-command-id", + meta=CommandLinkMeta( + runId="run-id", + commandId="recovery-target-command-id", + key="recovery-target-command-key", + createdAt=datetime(year=2025, month=5, day=5), + index=202, + ), + ), ) assert result.status_code == 200 diff --git a/robot-server/tests/runs/test_engine_store.py b/robot-server/tests/runs/test_engine_store.py index 330e974be9c..49c474b2ce9 100644 --- a/robot-server/tests/runs/test_engine_store.py +++ b/robot-server/tests/runs/test_engine_store.py @@ -11,18 +11,14 @@ from opentrons.hardware_control import HardwareControlAPI, API from opentrons.hardware_control.types import EstopStateNotification, EstopState from opentrons.protocol_engine import ProtocolEngine, StateSummary, types as pe_types -from opentrons.protocol_runner import ( - RunResult, - LiveRunner, - JsonRunner, -) +from opentrons.protocol_runner import RunResult, LiveRunner, JsonRunner from opentrons.protocol_reader import ProtocolReader, ProtocolSource from robot_server.protocols.protocol_store import ProtocolResource from robot_server.runs.engine_store import ( EngineStore, EngineConflictError, - NoRunnerEnginePairError, + NoRunnerEngineError, handle_estop_event, ) @@ -53,7 +49,7 @@ async def json_protocol_source() -> ProtocolSource: return await ProtocolReader().read_saved(files=[simple_protocol], directory=None) -async def test_create_engine(subject: EngineStore) -> None: +async def test_create_engine(decoy: Decoy, subject: EngineStore) -> None: """It should create an engine for a run.""" result = await subject.create( run_id="run-id", @@ -186,10 +182,10 @@ async def test_clear_engine(subject: EngineStore) -> None: assert subject.current_run_id is None assert isinstance(result, RunResult) - with pytest.raises(NoRunnerEnginePairError): + with pytest.raises(NoRunnerEngineError): subject.engine - with pytest.raises(NoRunnerEnginePairError): + with pytest.raises(NoRunnerEngineError): subject.runner @@ -225,9 +221,9 @@ async def test_clear_idle_engine(subject: EngineStore) -> None: await subject.clear() # TODO: test engine finish is called - with pytest.raises(NoRunnerEnginePairError): + with pytest.raises(NoRunnerEngineError): subject.engine - with pytest.raises(NoRunnerEnginePairError): + with pytest.raises(NoRunnerEngineError): subject.runner diff --git a/robot-server/tests/runs/test_run_data_manager.py b/robot-server/tests/runs/test_run_data_manager.py index 12ced28fdb0..100f57a4fef 100644 --- a/robot-server/tests/runs/test_run_data_manager.py +++ b/robot-server/tests/runs/test_run_data_manager.py @@ -13,7 +13,7 @@ commands, types as pe_types, CommandSlice, - CurrentCommand, + CommandPointer, ErrorOccurrence, LoadedLabware, LoadedPipette, @@ -847,7 +847,7 @@ def test_get_current_command( run_command: commands.Command, ) -> None: """Should get current command from engine store.""" - expected_current = CurrentCommand( + expected_current = CommandPointer( command_id=run_command.id, command_key=run_command.key, created_at=run_command.createdAt, diff --git a/robot-server/tests/service/notifications/publishers/test_runs_publisher.py b/robot-server/tests/service/notifications/publishers/test_runs_publisher.py index f8fdaf0cf9f..fe71f322f59 100644 --- a/robot-server/tests/service/notifications/publishers/test_runs_publisher.py +++ b/robot-server/tests/service/notifications/publishers/test_runs_publisher.py @@ -1,15 +1,18 @@ """Tests for runs publisher.""" import pytest from datetime import datetime -from unittest.mock import MagicMock, AsyncMock +from unittest.mock import AsyncMock, MagicMock, Mock + +from opentrons.protocol_engine import CommandPointer, EngineStatus from robot_server.service.notifications import RunsPublisher, Topics -from opentrons.protocol_engine import CurrentCommand, EngineStatus, StateSummary +from robot_server.service.notifications.notification_client import NotificationClient +from robot_server.service.notifications.publisher_notifier import PublisherNotifier -def mock_curent_command(command_id: str) -> CurrentCommand: - """Create a mock CurrentCommand.""" - return CurrentCommand( +def make_command_pointer(command_id: str) -> CommandPointer: + """Create a dummy CommandPointer.""" + return CommandPointer( command_id=command_id, command_key="1", index=0, @@ -17,34 +20,21 @@ def mock_curent_command(command_id: str) -> CurrentCommand: ) -def mock_state_summary(run_id: str) -> StateSummary: - return StateSummary.construct( - status=EngineStatus.FAILED, - errors=[], - labware=[], - pipettes=[], - modules=[], - labwareOffsets=[], - startedAt=None, - completedAt=datetime(year=2021, month=1, day=1), - ) - - @pytest.fixture -def notification_client() -> AsyncMock: +def notification_client() -> Mock: """Mocked notification client.""" - return AsyncMock() + return Mock(spec_set=NotificationClient) @pytest.fixture -def publisher_notifier() -> AsyncMock: +def publisher_notifier() -> Mock: """Mocked publisher notifier.""" - return AsyncMock() + return Mock(spec_set=PublisherNotifier) @pytest.fixture async def runs_publisher( - notification_client: AsyncMock, publisher_notifier: AsyncMock + notification_client: Mock, publisher_notifier: Mock ) -> RunsPublisher: """Instantiate RunsPublisher.""" return RunsPublisher( @@ -52,23 +42,32 @@ async def runs_publisher( ) -@pytest.mark.asyncio async def test_initialize( - runs_publisher: RunsPublisher, notification_client: AsyncMock + runs_publisher: RunsPublisher, notification_client: Mock ) -> None: """It should initialize the runs_publisher with required parameters and callbacks.""" run_id = "1234" get_current_command = AsyncMock() + get_recovery_target_command = AsyncMock() get_state_summary = AsyncMock() - await runs_publisher.initialize(run_id, get_current_command, get_state_summary) + await runs_publisher.start_publishing_for_run( + run_id, get_current_command, get_recovery_target_command, get_state_summary + ) + # todo(mm, 2024-05-21): We should test through the public interface of the subject, + # not through its private attributes. assert runs_publisher._run_hooks assert runs_publisher._run_hooks.run_id == run_id assert runs_publisher._run_hooks.get_current_command == get_current_command + assert ( + runs_publisher._run_hooks.get_recovery_target_command + == get_recovery_target_command + ) assert runs_publisher._run_hooks.get_state_summary == get_state_summary assert runs_publisher._engine_state_slice assert runs_publisher._engine_state_slice.current_command is None + assert runs_publisher._engine_state_slice.recovery_target_command is None assert runs_publisher._engine_state_slice.state_summary_status is None notification_client.publish_advise_refetch_async.assert_any_await(topic=Topics.RUNS) @@ -77,12 +76,13 @@ async def test_initialize( ) -@pytest.mark.asyncio async def test_clean_up_current_run( - runs_publisher: RunsPublisher, notification_client: AsyncMock + runs_publisher: RunsPublisher, notification_client: Mock ) -> None: """It should publish to appropriate topics at the end of a run.""" - await runs_publisher.initialize("1234", AsyncMock(), AsyncMock()) + await runs_publisher.start_publishing_for_run( + "1234", AsyncMock(), AsyncMock(), AsyncMock() + ) await runs_publisher.clean_up_run(run_id="1234") @@ -94,51 +94,96 @@ async def test_clean_up_current_run( topic=f"{Topics.RUNS}/1234" ) notification_client.publish_advise_unsubscribe_async.assert_any_await( - topic=Topics.RUNS_CURRENT_COMMAND + topic=Topics.RUNS_COMMANDS_LINKS ) notification_client.publish_advise_unsubscribe_async.assert_any_await( topic=f"{Topics.RUNS_PRE_SERIALIZED_COMMANDS}/1234" ) -@pytest.mark.asyncio async def test_handle_current_command_change( - runs_publisher: RunsPublisher, notification_client: AsyncMock + runs_publisher: RunsPublisher, notification_client: Mock ) -> None: """It should handle command changes appropriately.""" - await runs_publisher.initialize( - "1234", lambda _: mock_curent_command("command1"), AsyncMock() + await runs_publisher.start_publishing_for_run( + run_id="1234", + get_current_command=lambda _: make_command_pointer("command1"), + get_recovery_target_command=AsyncMock(), + get_state_summary=AsyncMock(), ) + # todo(mm, 2024-05-21): We should test through the public interface of the subject, + # not through its private attributes. assert runs_publisher._run_hooks assert runs_publisher._engine_state_slice - runs_publisher._engine_state_slice.current_command = mock_curent_command("command1") + runs_publisher._engine_state_slice.current_command = make_command_pointer( + "command1" + ) await runs_publisher._handle_current_command_change() assert notification_client.publish_advise_refetch_async.call_count == 2 - runs_publisher._run_hooks.get_current_command = lambda _: mock_curent_command( + runs_publisher._run_hooks.get_current_command = lambda _: make_command_pointer( "command2" ) await runs_publisher._handle_current_command_change() notification_client.publish_advise_refetch_async.assert_any_await( - topic=Topics.RUNS_CURRENT_COMMAND + topic=Topics.RUNS_COMMANDS_LINKS + ) + + +async def test_handle_recovery_target_command_change( + runs_publisher: RunsPublisher, notification_client: Mock +) -> None: + """It should handle command changes appropriately.""" + await runs_publisher.start_publishing_for_run( + run_id="1234", + get_current_command=AsyncMock(), + get_recovery_target_command=lambda _: make_command_pointer("command1"), + get_state_summary=AsyncMock(), + ) + + # todo(mm, 2024-05-21): We should test through the public interface of the subject, + # not through its private attributes. + assert runs_publisher._run_hooks + assert runs_publisher._engine_state_slice + + runs_publisher._engine_state_slice.recovery_target_command = make_command_pointer( + "command1" + ) + + await runs_publisher._handle_recovery_target_command_change() + + assert notification_client.publish_advise_refetch_async.call_count == 2 + + runs_publisher._run_hooks.get_recovery_target_command = ( + lambda _: make_command_pointer("command2") + ) + + await runs_publisher._handle_recovery_target_command_change() + + notification_client.publish_advise_refetch_async.assert_any_await( + topic=Topics.RUNS_COMMANDS_LINKS ) -@pytest.mark.asyncio async def test_handle_engine_status_change( - runs_publisher: RunsPublisher, notification_client: AsyncMock + runs_publisher: RunsPublisher, notification_client: Mock ) -> None: """It should handle engine status changes appropriately.""" - await runs_publisher.initialize( - "1234", lambda _: mock_curent_command("command1"), AsyncMock() + await runs_publisher.start_publishing_for_run( + run_id="1234", + get_current_command=lambda _: make_command_pointer("command1"), + get_recovery_target_command=AsyncMock(), + get_state_summary=AsyncMock(), ) + # todo(mm, 2024-05-21): We should test through the public interface of the subject, + # not through its private attributes. assert runs_publisher._run_hooks assert runs_publisher._engine_state_slice @@ -165,13 +210,18 @@ async def test_handle_engine_status_change( async def test_publish_pre_serialized_commannds_notif( - runs_publisher: RunsPublisher, notification_client: AsyncMock + runs_publisher: RunsPublisher, notification_client: Mock ) -> None: """It should send out a notification for pre serialized commands.""" - await runs_publisher.initialize( - "1234", lambda _: mock_curent_command("command1"), AsyncMock() + await runs_publisher.start_publishing_for_run( + run_id="1234", + get_current_command=lambda _: make_command_pointer("command1"), + get_recovery_target_command=AsyncMock(), + get_state_summary=AsyncMock(), ) + # todo(mm, 2024-05-21): We should test through the public interface of the subject, + # not through its private attributes. assert runs_publisher._run_hooks assert runs_publisher._engine_state_slice assert notification_client.publish_advise_refetch_async.call_count == 2 diff --git a/robot-server/tests/service/notifications/test_publisher_notifier.py b/robot-server/tests/service/notifications/test_publisher_notifier.py index 125cfdd1806..02ee12f3ee6 100644 --- a/robot-server/tests/service/notifications/test_publisher_notifier.py +++ b/robot-server/tests/service/notifications/test_publisher_notifier.py @@ -1,15 +1,16 @@ import asyncio from unittest.mock import Mock, MagicMock +from opentrons.util.change_notifier import ChangeNotifier + from robot_server.service.notifications import ( PublisherNotifier, - ChangeNotifier, ) async def test_initialize() -> None: """It should create a new task.""" - publisher_notifier = PublisherNotifier() + publisher_notifier = PublisherNotifier(ChangeNotifier()) await publisher_notifier._initialize() @@ -28,7 +29,7 @@ def test_notify_publishers() -> None: def test_register_publish_callbacks() -> None: """It should extend the list of callbacks within a given list of callbacks.""" - publisher_notifier = PublisherNotifier() + publisher_notifier = PublisherNotifier(ChangeNotifier()) callback1 = Mock() callback2 = Mock() diff --git a/robot-server/tests/subsystems/test_router.py b/robot-server/tests/subsystems/test_router.py index 387b5001a40..c77e291736c 100644 --- a/robot-server/tests/subsystems/test_router.py +++ b/robot-server/tests/subsystems/test_router.py @@ -1,6 +1,6 @@ """Tests for /subsystems routes.""" from datetime import datetime -from typing import Set, Dict, TYPE_CHECKING +from typing import Set, Dict, TYPE_CHECKING, cast from fastapi import Response, Request from starlette.datastructures import URL, MutableHeaders @@ -72,10 +72,10 @@ def thread_manager(decoy: Decoy, ot3_hardware_api: "OT3API") -> ThreadManagedHar from opentrons.hardware_control.ot3api import OT3API except ImportError: pytest.skip("Cannot run on OT-2 (for now)") - manager = decoy.mock(cls=ThreadManagedHardware) + manager = decoy.mock(cls=ThreadManagedHardware) # type: ignore[misc] decoy.when(manager.wrapped()).then_return(ot3_hardware_api) decoy.when(manager.wraps_instance(OT3API)).then_return(True) - return manager + return cast(ThreadManagedHardware, manager) def _build_attached_subsystem( diff --git a/scripts/deploy/create-release.js b/scripts/deploy/create-release.js index 3b804506a2e..0443bac8900 100644 --- a/scripts/deploy/create-release.js +++ b/scripts/deploy/create-release.js @@ -92,7 +92,7 @@ async function detailsFromTag(tag) { } async function tagFromDetails(project, version) { - return (await gitVersion()).tagFromDetails(project, version) + return await (await gitVersion()).tagFromDetails(project, version) } async function prefixForProject(project) { @@ -113,19 +113,19 @@ async function versionDetailsFromGit(tag, allowOld) { } } - const [project, currentVersion] = detailsFromTag(tag) + const [project, currentVersion] = await detailsFromTag(tag) const prefix = await prefixForProject(project) - const allTags = (await monorepoGit().tags([prefix + '*'])).all + const allTags = (await (await monorepoGit()).tags([prefix + '*'])).all if (!allTags.includes(tag)) { throw new Error( `Tag ${tag} does not exist - create it before running this script` ) } - const sortedVersions = allTags - .map(tag => detailsFromTag(tag)[1]) + const allVersions = await Promise.all(allTags.map(tag => detailsFromTag(tag))) + const sortedVersions = allVersions + .map(details => details[1]) .sort(semver.compare) .reverse() - const previousVersion = versionPrevious(currentVersion, sortedVersions) return [project, currentVersion, previousVersion] } @@ -144,7 +144,7 @@ async function buildChangelog(project, currentVersion, previousVersion) { } const previousTag = await tagFromDetails(project, previousVersion) const currentTag = await tagFromDetails(project, currentVersion) - const prefix = await prefixForProject(Project) + const prefix = await prefixForProject(project) const changelogStream = conventionalChangelog( { preset: 'angular', tagPrefix: prefix }, { diff --git a/setup-vitest.ts b/setup-vitest.ts index eb30f021428..cb882268f51 100644 --- a/setup-vitest.ts +++ b/setup-vitest.ts @@ -7,7 +7,16 @@ vi.mock('electron-store') vi.mock('electron-updater') vi.mock('electron') vi.mock('./app/src/redux/shell/remote') -vi.mock('./app/src/resources/useNotifyService') +vi.mock('./app/src/resources/useNotifyDataReady', async () => { + const actual = await vi.importActual('./app/src/resources/useNotifyDataReady') + return { + ...actual, + useNotifyDataReady: () => ({ + notifyOnSettled: vi.fn(), + isNotifyEnabled: true, + }), + } +}) process.env.OT_PD_VERSION = 'fake_PD_version' global._PKG_VERSION_ = 'test environment' diff --git a/shared-data/Makefile b/shared-data/Makefile index d66fc1f66e5..a06c7979d9e 100644 --- a/shared-data/Makefile +++ b/shared-data/Makefile @@ -30,7 +30,9 @@ lib-js: export NODE_ENV := production lib-js: NODE_OPTIONS=--openssl-legacy-provider yarn vite build - +.PHONY: build-ts +build-ts: + yarn tsc --build --emitDeclarationOnly # Python targets diff --git a/shared-data/command/types/index.ts b/shared-data/command/types/index.ts index 980eb8fb124..27fc7dcc821 100644 --- a/shared-data/command/types/index.ts +++ b/shared-data/command/types/index.ts @@ -38,6 +38,7 @@ export interface CommandNote { source: string } export type CommandStatus = 'queued' | 'running' | 'succeeded' | 'failed' +export type CommandIntent = 'protocol' | 'setup' | 'fixit' export interface CommonCommandRunTimeInfo { key?: string id: string @@ -46,10 +47,11 @@ export interface CommonCommandRunTimeInfo { createdAt: string startedAt: string | null completedAt: string | null - intent?: 'protocol' | 'setup' + intent?: CommandIntent notes?: CommandNote[] | null } export interface CommonCommandCreateInfo { + intent?: CommandIntent key?: string meta?: { [key: string]: any } } @@ -75,9 +77,13 @@ export type RunTimeCommand = | AnnotationRunTimeCommand // annotating command execution | IncidentalRunTimeCommand // command with only incidental effects (status bar animations) -interface RunCommandError { - id: string - errorType: string +// TODO(jh, 05-24-24): Update when some of these newer properties become more finalized. +export interface RunCommandError { createdAt: string detail: string + errorCode: string + errorType: string + id: string + errorInfo?: Record + wrappedErrors?: Array> } diff --git a/shared-data/errors/definitions/1/errors.json b/shared-data/errors/definitions/1/errors.json index 07c9a489a25..d711e4667e8 100644 --- a/shared-data/errors/definitions/1/errors.json +++ b/shared-data/errors/definitions/1/errors.json @@ -122,6 +122,10 @@ "detail": "Motor Driver Error", "category": "roboticsControlError" }, + "2017": { + "detail": "Liquid Not Found", + "category": "roboticsControlError" + }, "3000": { "detail": "A robotics interaction error occurred.", "category": "roboticsInteractionError" diff --git a/shared-data/js/__tests__/pipettes.test.ts b/shared-data/js/__tests__/pipettes.test.ts index 14b3b417a8f..6fcc519f2d3 100644 --- a/shared-data/js/__tests__/pipettes.test.ts +++ b/shared-data/js/__tests__/pipettes.test.ts @@ -158,7 +158,7 @@ describe('pipette data accessors', () => { minVolume: 5, supportedTips: { t50: { - uiMaxFlowRate: 47, + uiMaxFlowRate: 57, aspirate: { default: { 1: expect.anything(), diff --git a/shared-data/js/helpers/__tests__/getAreFlexSlotsAdjacent.test.ts b/shared-data/js/helpers/__tests__/getAreFlexSlotsAdjacent.test.ts new file mode 100644 index 00000000000..7d0551fc5d5 --- /dev/null +++ b/shared-data/js/helpers/__tests__/getAreFlexSlotsAdjacent.test.ts @@ -0,0 +1,21 @@ +import { describe, it, expect } from 'vitest' +import { getAreFlexSlotsAdjacent } from '../getAreFlexSlotsAdjacent' + +describe('getAreFlexSlotsAdjacent', () => { + it('returns false when slots are apart', () => { + const results = getAreFlexSlotsAdjacent('A1', 'A3') + expect(results).toStrictEqual(false) + }) + it('returns true when slots are left/right', () => { + const results = getAreFlexSlotsAdjacent('A1', 'A2') + expect(results).toStrictEqual(true) + }) + it('returns true when slots are north/south', () => { + const results = getAreFlexSlotsAdjacent('A1', 'B1') + expect(results).toStrictEqual(true) + }) + it('returns true when slots are diagonal', () => { + const results = getAreFlexSlotsAdjacent('A1', 'B2') + expect(results).toStrictEqual(true) + }) +}) diff --git a/shared-data/js/helpers/getAreFlexSlotsAdjacent.ts b/shared-data/js/helpers/getAreFlexSlotsAdjacent.ts new file mode 100644 index 00000000000..86bee860345 --- /dev/null +++ b/shared-data/js/helpers/getAreFlexSlotsAdjacent.ts @@ -0,0 +1,36 @@ +import { FLEX_GRID } from './getFlexSurroundingSlots' +import type { DeckSlotId } from '../types' + +export const getAreFlexSlotsAdjacent = ( + slot1: DeckSlotId, + slot2: DeckSlotId +): boolean => { + const findSlotPosition = (slot: DeckSlotId): [number, number] | null => { + for (let row = 0; row < FLEX_GRID.length; row++) { + const col = FLEX_GRID[row].indexOf(slot) + if (col !== -1) { + return [row, col] + } + } + return null + } + + const pos1 = findSlotPosition(slot1) + const pos2 = findSlotPosition(slot2) + + if (pos1 === null || pos2 === null) { + return false + } + + const [row1, col1] = pos1 + const [row2, col2] = pos2 + + const rowDiff = Math.abs(row1 - row2) + const colDiff = Math.abs(col1 - col2) + + if ((rowDiff === 1 && colDiff <= 1) || (rowDiff === 0 && colDiff === 1)) { + return true + } + + return false +} diff --git a/shared-data/js/helpers/getFlexSurroundingSlots.ts b/shared-data/js/helpers/getFlexSurroundingSlots.ts index 9900cee9880..8104c5316af 100644 --- a/shared-data/js/helpers/getFlexSurroundingSlots.ts +++ b/shared-data/js/helpers/getFlexSurroundingSlots.ts @@ -1,6 +1,6 @@ import type { DeckSlotId } from '../types' -const FLEX_GRID = [ +export const FLEX_GRID = [ ['A1', 'A2', 'A3'], ['B1', 'B2', 'B3'], ['C1', 'C2', 'C3'], diff --git a/shared-data/js/helpers/getTipTypeFromTipRackDefinition.ts b/shared-data/js/helpers/getTipTypeFromTipRackDefinition.ts new file mode 100644 index 00000000000..8693c200468 --- /dev/null +++ b/shared-data/js/helpers/getTipTypeFromTipRackDefinition.ts @@ -0,0 +1,9 @@ +import type { LabwareDefinition2 } from '..' + +export function getTipTypeFromTipRackDefinition( + tipRackDef: LabwareDefinition2 +): string { + const tipVolume = Object.values(tipRackDef.wells)[0].totalLiquidVolume + const tipType = `t${tipVolume}` + return tipType +} diff --git a/shared-data/js/helpers/index.ts b/shared-data/js/helpers/index.ts index 791fa1f5db1..695569eeebb 100644 --- a/shared-data/js/helpers/index.ts +++ b/shared-data/js/helpers/index.ts @@ -16,10 +16,12 @@ export { getWellTotalVolume } from './getWellTotalVolume' export { wellIsRect } from './wellIsRect' export { orderWells } from './orderWells' export { get96Channel384WellPlateWells } from './get96Channel384WellPlateWells' +export { getTipTypeFromTipRackDefinition } from './getTipTypeFromTipRackDefinition' export * from './parseProtocolData' export * from './volume' export * from './wellSets' +export * from './getAreFlexSlotsAdjacent' export * from './getModuleVizDims' export * from './getVectorDifference' export * from './getVectorSum' diff --git a/shared-data/js/types.ts b/shared-data/js/types.ts index 4d51f992f22..5eab9ebaa08 100644 --- a/shared-data/js/types.ts +++ b/shared-data/js/types.ts @@ -1,4 +1,4 @@ -import { +import type { MAGDECK, TEMPDECK, THERMOCYCLER, diff --git a/shared-data/module/definitions/3/absorbanceReaderV1.json b/shared-data/module/definitions/3/absorbanceReaderV1.json new file mode 100644 index 00000000000..bed2c21302e --- /dev/null +++ b/shared-data/module/definitions/3/absorbanceReaderV1.json @@ -0,0 +1,3687 @@ +{ + "$otSharedSchema": "module/schemas/3", + "moduleType": "absorbanceReaderType", + "model": "absorbanceReaderV1", + "labwareOffset": { + "x": 0.0, + "y": 0.0, + "z": 108.96 + }, + "dimensions": { + "bareOverallHeight": 108.96, + "overLabwareHeight": 0.0, + "lidHeight": 61.7, + "xDimension": 172, + "yDimension": 245.2, + "labwareInterfaceXDimension": 128, + "labwareInterfaceYDimension": 86 + }, + "cornerOffsetFromSlot": { + "x": -22.125, + "y": 0, + "z": 0 + }, + "calibrationPoint": { + "x": 14.4, + "y": 64.93, + "z": 97.8 + }, + "config": { + "minBlockTemperature": 0, + "maxBlockTemperature": 99, + "minLidTemperature": 37, + "maxLidTemperature": 110, + "minBlockVolume": 0, + "maxBlockVolume": 100 + }, + "gripperOffsets": { + "default": { + "pickUpOffset": { + "x": 0, + "y": 0, + "z": 4.6 + }, + "dropOffset": { + "x": 0, + "y": 0, + "z": 5.6 + } + } + }, + "displayName": "Thermocycler Module GEN2", + "quirks": [], + "slotTransforms": { + "ot3_standard": { + "B1": { + "labwareOffset": [ + [1, 0, 0, -20.005], + [0, 1, 0, -0.84], + [0, 0, 1, -98], + [0, 0, 0, 1] + ], + "cornerOffsetFromSlot": [ + [1, 0, 0, -20.005], + [0, 1, 0, -0.84], + [0, 0, 1, -98], + [0, 0, 0, 1] + ] + } + } + }, + "compatibleWith": [], + "incompatibleWithDecks": ["ot2_standard"], + "twoDimensionalRendering": { + "name": "svg", + "type": "element", + "value": "", + "attributes": { + "version": "1.1", + "id": "thermocycler", + "xmlns": "http://www.w3.org/2000/svg", + "xmlns:xlink": "http://www.w3.org/1999/xlink", + "x": "0px", + "y": "0px", + "viewBox": "0 0 172 258", + "style": "enable-background:new 0 0 172 258;", + "xml:space": "preserve" + }, + "children": [ + { + "name": "style", + "type": "element", + "value": "", + "attributes": { + "type": "text/css" + }, + "children": [ + { + "name": "", + "type": "text", + "value": "\n.st0{fill:#FFFFFF;}\n.st1{fill:#E6E6E6;}\n", + "attributes": {}, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "closed" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "d": "M145.2,232.7V186c0-4-2.7-7.2-6-7.2H32.5c-3.3,0-5.7,3.2-5.7,7.2v46.7H0.4V0.4h171.2v232.3H145.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st1", + "d": "M139.1,178.8h-106c-3.3,0-6,2.7-6,6v47.9h118v-47.9C145.1,181.5,142.4,178.8,139.1,178.8z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "attributes": { + "x": "4.2", + "y": "0.4", + "class": "st1", + "width": "163.4", + "height": "38.3" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "d": "M141,191.8H31.1c-1.1,0-2,0.9-2,2v49.2c0,1.1,0.9,2,2,2H141c1.1,0,2-0.9,2-2v-49.2\n C143,192.7,142.1,191.8,141,191.8z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "attributes": { + "x": "32.7", + "y": "195.4", + "class": "st1", + "width": "106.8", + "height": "49.5" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "d": "M130.8,18.5H41.2c-1.6,0-3,1.3-3,3l0,0c0,1.7,1.3,3,3,3h89.6c1.6,0,3-1.3,3-3l0,0\n C133.8,19.9,132.5,18.5,130.8,18.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M130.8,18.3H41.2c-1.7,0-3.2,1.4-3.2,3.2c0,1.7,1.4,3.2,3.2,3.2h89.6c1.7,0,3.2-1.4,3.2-3.2\n C133.9,19.8,132.5,18.3,130.8,18.3z M41.2,24.3c-1.5,0-2.8-1.3-2.8-2.8c0-1.6,1.3-2.8,2.8-2.8h89.6c1.5,0,2.8,1.3,2.8,2.8\n c0,1.6-1.3,2.8-2.8,2.8H41.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M4.4,0.2c-0.1,0-0.2,0.1-0.2,0.2v232.3c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2-0.1,0.2-0.2V0.4C4.6,0.3,4.5,0.2,4.4,0.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M171.6,38.3H0.4c-0.2,0-0.4,0.2-0.4,0.4S0.2,39,0.4,39h171.2c0.2,0,0.4-0.2,0.4-0.4S171.8,38.3,171.6,38.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M167.6,0.2c-0.1,0-0.2,0.1-0.2,0.2v232.4c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2-0.1,0.2-0.2V0.4\n C167.8,0.3,167.7,0.2,167.6,0.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M139.5,242.3c-0.1,0-0.1,0.1-0.1,0.1v2.5c0,0.1,0.1,0.1,0.1,0.1s0.1-0.1,0.1-0.1v-2.5\n C139.6,242.4,139.5,242.3,139.5,242.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M139.1,195.1H139c-0.1,0-0.1,0.1-0.1,0.1s0.1,0.1,0.1,0.1h0.1l0.2,0.1l0.1,0.1l0,0.1c0,0.1,0.1,0.1,0.1,0.1\n s0.1-0.1,0.1-0.1v-0.1c0,0,0,0,0,0l-0.1-0.2l-0.1-0.1c0,0,0,0,0,0L139.1,195.1C139.1,195.1,139.1,195.1,139.1,195.1z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M33.1,195.1H33c0,0,0,0,0,0l-0.1,0c0,0,0,0,0,0l-0.1,0.1l-0.1,0c0,0,0,0,0,0l-0.1,0.2l0,0.1c0,0,0,0,0,0v0.1\n c0,0.1,0.1,0.1,0.1,0.1c0.1,0,0.1-0.1,0.1-0.1v0l0.1-0.1l0-0.1l0,0c0,0,0,0,0,0l0,0l0.1,0h0.1c0.1,0,0.1-0.1,0.1-0.1\n C33.2,195.2,33.1,195.1,33.1,195.1z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M32.6,242.3c-0.1,0-0.1,0.1-0.1,0.1v2.5c0,0.1,0.1,0.1,0.1,0.1c0.1,0,0.1-0.1,0.1-0.1v-2.5\n C32.7,242.4,32.6,242.3,32.6,242.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M0.4,0C0.2,0,0.1,0.2,0.1,0.4v232.3c0,0.2,0.2,0.4,0.4,0.4h28.7c0.2,0,0.4-0.2,0.4-0.4c0-0.2-0.2-0.4-0.4-0.4H0.8V0.7\n h170.5v231.7H143c-0.2,0-0.4,0.2-0.4,0.4s0.2,0.4,0.4,0.4h28.7c0.2,0,0.4-0.2,0.4-0.4V0.4c0-0.2-0.2-0.4-0.4-0.4H0.5\n C0.5,0,0.4,0,0.4,0z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M171.6,4.2H0.4c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0.1,0.2,0.2,0.2h171.2c0.1,0,0.2-0.1,0.2-0.2\n C171.8,4.3,171.7,4.2,171.6,4.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M150.6,12.4c-5,0-9.1,4.1-9.1,9.1s4.1,9.1,9.1,9.1s9.1-4.1,9.1-9.1S155.6,12.4,150.6,12.4z M150.6,30.2\n c-4.8,0-8.7-3.9-8.7-8.7s3.9-8.7,8.7-8.7s8.7,3.9,8.7,8.7S155.4,30.2,150.6,30.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "ellipse", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "cx": "150.6", + "cy": "21.5", + "rx": "5.8", + "ry": "5.8" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M150.6,15.5c-3.3,0-6,2.7-6,6s2.7,6,6,6s6-2.7,6-6S153.9,15.5,150.6,15.5z M150.6,27.2c-3.1,0-5.7-2.5-5.7-5.7\n s2.5-5.7,5.7-5.7s5.7,2.5,5.7,5.7S153.7,27.2,150.6,27.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "ellipse", + "type": "element", + "value": "", + "attributes": { + "class": "st1", + "cx": "150.6", + "cy": "21.5", + "rx": "3.8", + "ry": "3.8" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M150.6,17.6c-2.2,0-3.9,1.8-3.9,4s1.8,4,3.9,4c2.2,0,3.9-1.8,3.9-4C154.5,19.3,152.8,17.6,150.6,17.6z M150.6,25.1\n c-2,0-3.6-1.6-3.6-3.6s1.6-3.6,3.6-3.6s3.6,1.6,3.6,3.6S152.6,25.1,150.6,25.1z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M141,191.4H31.1c-1.3,0-2.3,1.1-2.3,2.3v51.2c0,0.2,0.2,0.4,0.4,0.4H143c0.2,0,0.4-0.2,0.4-0.4v-51.2\n C143.3,192.5,142.3,191.4,141,191.4z M29.5,244.6v-50.8c0-0.9,0.7-1.6,1.6-1.6H141c0.9,0,1.6,0.7,1.6,1.6v50.8H29.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M139,195.1H33.1c-0.4,0-0.7,0.3-0.7,0.7v49.2c0,0.1,0.1,0.2,0.2,0.2h106.9c0.1,0,0.2-0.1,0.2-0.2v-49.2\n C139.7,195.4,139.4,195.1,139,195.1z M32.8,244.8v-49c0-0.2,0.1-0.3,0.3-0.3H139c0.2,0,0.3,0.1,0.3,0.3v49H32.8z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M139.1,178.4H32.7c-3.5,0-6.3,2.8-6.3,6.3V233h0.7v-48.2c0-3.1,2.5-5.6,5.6-5.6h106.4c3.1,0,5.6,2.5,5.6,5.6v47.7h0.7\n v-47.7C145.4,181.3,142.6,178.4,139.1,178.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M51.7,79.2c-0.1,0-0.1,0.1-0.1,0.1v99.4c0,0.1,0.1,0.1,0.1,0.1c0.1,0,0.1-0.1,0.1-0.1V79.3\n C51.8,79.2,51.8,79.2,51.7,79.2z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M120.4,79.1c-0.1,0-0.2,0.1-0.2,0.2v99.4c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2-0.1,0.2-0.2V79.3\n C120.6,79.2,120.5,79.1,120.4,79.1z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M120.4,79.1H51.6c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0.1,0.2,0.2,0.2h68.7c0.1,0,0.2-0.1,0.2-0.2\n C120.6,79.2,120.5,79.1,120.4,79.1z" + }, + "children": [] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "open" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "shading_00000140696093821789790550000002253882697550769834_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "d": "M51.7,247.3c0,2.4,0,9.8,0,11.1c0,1.4,0,2.8,1.1,3.9c1.2,1.2,2.6,1.2,4.1,1.2c1.6,0,58,0,59.1,0\n c1.3,0,2.5-0.3,3.3-1.3c1.3-1.4,1-3.3,1-5c0-1.8,0-8.4,0-9.9" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "attributes": { + "x": "55.6", + "y": "246.9", + "class": "st1", + "width": "60.7", + "height": "12.7" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "d": "M171.6,38.7H0.4v206.3c0,1.1,0.9,2,2,2h167.3c1.1,0,2-0.9,2-2L171.6,38.7L171.6,38.7z" + }, + "children": [] + }, + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M171.6,38.3H0.4c-0.2,0-0.4,0.2-0.4,0.4v206.3c0,1.3,1.1,2.3,2.3,2.3h167.3c1.3,0,2.3-1.1,2.3-2.3V38.7\n C172,38.5,171.8,38.3,171.6,38.3z M0.7,39h170.6v205.9c0,0.9-0.7,1.6-1.6,1.6H2.3c-0.9,0-1.6-0.7-1.6-1.6\n C0.7,244.9,0.7,39,0.7,39z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "base_grey_00000027585544793631977930000012329166542688174233_" + }, + "children": [ + { + "name": "rect", + "type": "element", + "value": "", + "attributes": { + "x": "4.4", + "y": "39.1", + "class": "st1", + "width": "163.4", + "height": "203.4" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "d": "M19.3,70.9v-4.4c0-1.2,1-2.2,2.2-2.2h129c1.2,0,2.2,1,2.2,2.2v4.4h-5.9c-0.6,0-1,0.4-1,1v2.5\n c0,0.6,0.4,1,1,1h5.9v65.3h-5.9c-0.6,0-1,0.4-1,1v2.5c0,0.6,0.4,1,1,1h5.9V156c0,1.2-1,2.2-2.2,2.2h-129l0,0\n c-1.2,0-2.2-1-2.2-2.2v0v-10.8h5.9c0.6,0,1-0.4,1-1v-2.5c0-0.6-0.4-1-1-1h-5.9V75.4h5.9c0.6,0,1-0.4,1-1v-2.5c0-0.6-0.4-1-1-1\n L19.3,70.9" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "class": "st0", + "d": "M143,203v-9.2c0-1.1-0.9-2-2-2H31.1c-1.1,0-2,0.9-2,2v9.2" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "polyline", + "type": "element", + "value": "", + "attributes": { + "class": "st1", + "points": "139.5,203.1 139.5,195.4 32.8,195.4 32.8,203.3 \t\t\t" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "stroke" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M116.5,246.7h-0.4v12.7H55.8v-12.7h-0.4v12.9c0,0.1,0.1,0.2,0.2,0.2h60.7c0.1,0,0.2-0.1,0.2-0.2V246.7z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M120.4,246.6c-0.2,0-0.4,0.2-0.4,0.4v10.2c0,0.3,0,0.5,0,0.8c0,1.5,0.1,3-0.9,4.2c-0.7,0.8-1.7,1.2-3.1,1.2H56.9\n c-1.4,0-2.8,0-3.8-1.1c-1-1.1-1-2.5-1-3.8v-11.4c0-0.2-0.2-0.4-0.4-0.4s-0.4,0.2-0.4,0.4v11.4c0,1.4,0,3,1.2,4.3\n c1.3,1.3,2.8,1.3,4.4,1.3H116c1.5,0,2.7-0.5,3.6-1.5c1.2-1.3,1.1-3.1,1.1-4.6c0-0.3,0-0.5,0-0.8v-10.2\n C120.7,246.7,120.6,246.6,120.4,246.6z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000072973290214693693960000017318416397027368577_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S47.3,139.7,45.7,139.7z M45.7,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S47.2,145.3,45.7,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S56.3,139.7,54.7,139.7z M54.7,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S56.1,145.3,54.7,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S65.3,139.7,63.6,139.7z M63.6,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S65.1,145.3,63.6,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S74.2,139.7,72.6,139.7z M72.6,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S74,145.3,72.6,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S83.2,139.7,81.6,139.7z M81.6,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S83,145.3,81.6,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S92.1,139.7,90.5,139.7z M90.5,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S91.9,145.3,90.5,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S101.1,139.7,99.5,139.7z M99.5,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S100.9,145.3,99.5,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S110.1,139.7,108.4,139.7z M108.4,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S109.9,145.3,108.4,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S119,139.7,117.4,139.7z M117.4,145.3\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S118.8,145.3,117.4,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S128,139.7,126.3,139.7z M126.3,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S127.8,145.3,126.3,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S137,139.7,135.3,139.7z M135.3,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S136.8,145.3,135.3,145.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,139.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S38.4,139.7,36.7,139.7z M36.7,145.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S38.2,145.3,36.7,145.3z" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000153665527845359773540000012752985171215028372_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S47.3,130.7,45.7,130.7z M45.7,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S47.2,136.3,45.7,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S56.3,130.7,54.7,130.7z M54.7,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S56.1,136.3,54.7,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S65.3,130.7,63.6,130.7z M63.6,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S65.1,136.3,63.6,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S74.2,130.7,72.6,130.7z M72.6,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S74,136.3,72.6,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S83.2,130.7,81.6,130.7z M81.6,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S83,136.3,81.6,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S92.1,130.7,90.5,130.7z M90.5,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S91.9,136.3,90.5,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S101.1,130.7,99.5,130.7z M99.5,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S100.9,136.3,99.5,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S110.1,130.7,108.4,130.7z M108.4,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S109.9,136.3,108.4,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S119,130.7,117.4,130.7z M117.4,136.3\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S118.8,136.3,117.4,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S128,130.7,126.3,130.7z M126.3,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S127.8,136.3,126.3,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S137,130.7,135.3,130.7z M135.3,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S136.8,136.3,135.3,136.3z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,130.7c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S38.4,130.7,36.7,130.7z M36.7,136.3c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S38.2,136.3,36.7,136.3z" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000001654953178113305770000001548480951139594390_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C48.7,123.1,47.3,121.8,45.7,121.8z M45.7,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S47.2,127.4,45.7,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C57.7,123.1,56.3,121.8,54.7,121.8z M54.7,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S56.1,127.4,54.7,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C66.6,123.1,65.3,121.8,63.6,121.8z M63.6,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S65.1,127.4,63.6,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C75.6,123.1,74.2,121.8,72.6,121.8z M72.6,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S74,127.4,72.6,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C84.5,123.1,83.2,121.8,81.6,121.8z M81.6,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S83,127.4,81.6,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C93.5,123.1,92.1,121.8,90.5,121.8z M90.5,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S91.9,127.4,90.5,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C102.4,123.1,101.1,121.8,99.5,121.8z M99.5,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S100.9,127.4,99.5,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C111.4,123.1,110.1,121.8,108.4,121.8z M108.4,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S109.9,127.4,108.4,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C120.3,123.1,119,121.8,117.4,121.8z M117.4,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S118.8,127.4,117.4,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C129.3,123.1,128,121.8,126.3,121.8z M126.3,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S127.8,127.4,126.3,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C138.3,123.1,137,121.8,135.3,121.8z M135.3,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S136.8,127.4,135.3,127.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,121.8c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C39.7,123.1,38.4,121.8,36.7,121.8z M36.7,127.4\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S38.2,127.4,36.7,127.4z" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000142157505160117839040000001831267897535693211_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S47.3,112.8,45.7,112.8z M45.7,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C48.3,117.2,47.2,118.4,45.7,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S56.3,112.8,54.7,112.8z M54.7,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C57.3,117.2,56.1,118.4,54.7,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S65.3,112.8,63.6,112.8z M63.6,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C66.3,117.2,65.1,118.4,63.6,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S74.2,112.8,72.6,112.8z M72.6,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C75.2,117.2,74,118.4,72.6,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S83.2,112.8,81.6,112.8z M81.6,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C84.2,117.2,83,118.4,81.6,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S92.1,112.8,90.5,112.8z M90.5,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C93.1,117.2,91.9,118.4,90.5,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S101.1,112.8,99.5,112.8z M99.5,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C102.1,117.2,100.9,118.4,99.5,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S110.1,112.8,108.4,112.8z M108.4,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C111,117.2,109.9,118.4,108.4,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S119,112.8,117.4,112.8z M117.4,118.4\n c-1.4,0-2.6-1.2-2.6-2.6c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C120,117.2,118.8,118.4,117.4,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S128,112.8,126.3,112.8z M126.3,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C129,117.2,127.8,118.4,126.3,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S137,112.8,135.3,112.8z M135.3,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C137.9,117.2,136.8,118.4,135.3,118.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,112.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S38.4,112.8,36.7,112.8z M36.7,118.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C39.4,117.2,38.2,118.4,36.7,118.4z" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000023262343608832889980000007837414120611036803_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S47.3,103.8,45.7,103.8z M45.7,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C48.3,108.2,47.2,109.4,45.7,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S56.3,103.8,54.7,103.8z M54.7,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C57.3,108.2,56.1,109.4,54.7,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S65.3,103.8,63.6,103.8z M63.6,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C66.3,108.2,65.1,109.4,63.6,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S74.2,103.8,72.6,103.8z M72.6,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C75.2,108.2,74,109.4,72.6,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S83.2,103.8,81.6,103.8z M81.6,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C84.2,108.2,83,109.4,81.6,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S92.1,103.8,90.5,103.8z M90.5,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C93.1,108.2,91.9,109.4,90.5,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S101.1,103.8,99.5,103.8z M99.5,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C102.1,108.2,100.9,109.4,99.5,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S110.1,103.8,108.4,103.8z M108.4,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C111,108.2,109.9,109.4,108.4,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S119,103.8,117.4,103.8z M117.4,109.4\n c-1.4,0-2.6-1.2-2.6-2.6c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C120,108.2,118.8,109.4,117.4,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S128,103.8,126.3,103.8z M126.3,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C129,108.2,127.8,109.4,126.3,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S137,103.8,135.3,103.8z M135.3,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C137.9,108.2,136.8,109.4,135.3,109.4z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,103.8c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S38.4,103.8,36.7,103.8z M36.7,109.4c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C39.4,108.2,38.2,109.4,36.7,109.4z" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000032644834021452807300000012529714203134445742_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S47.3,94.9,45.7,94.9z M45.7,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C48.3,99.3,47.2,100.5,45.7,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S56.3,94.9,54.7,94.9z M54.7,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C57.3,99.3,56.1,100.5,54.7,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S65.3,94.9,63.6,94.9z M63.6,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C66.3,99.3,65.1,100.5,63.6,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S74.2,94.9,72.6,94.9z M72.6,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C75.2,99.3,74,100.5,72.6,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S83.2,94.9,81.6,94.9z M81.6,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C84.2,99.3,83,100.5,81.6,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S92.1,94.9,90.5,94.9z M90.5,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C93.1,99.3,91.9,100.5,90.5,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S101.1,94.9,99.5,94.9z M99.5,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C102.1,99.3,100.9,100.5,99.5,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S110.1,94.9,108.4,94.9z M108.4,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C111,99.3,109.9,100.5,108.4,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S119,94.9,117.4,94.9z M117.4,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C120,99.3,118.8,100.5,117.4,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S128,94.9,126.3,94.9z M126.3,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C129,99.3,127.8,100.5,126.3,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S137,94.9,135.3,94.9z M135.3,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6C137.9,99.3,136.8,100.5,135.3,100.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,94.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S38.4,94.9,36.7,94.9z M36.7,100.5c-1.4,0-2.6-1.2-2.6-2.6\n c0-1.4,1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6C39.4,99.3,38.2,100.5,36.7,100.5z" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000046301211336714059340000011006363706714132412_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S47.3,85.9,45.7,85.9z M45.7,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S47.2,91.5,45.7,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S56.3,85.9,54.7,85.9z M54.7,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S56.1,91.5,54.7,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S65.3,85.9,63.6,85.9z M63.6,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S65.1,91.5,63.6,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S74.2,85.9,72.6,85.9z M72.6,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S74,91.5,72.6,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S83.2,85.9,81.6,85.9z M81.6,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S83,91.5,81.6,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S92.1,85.9,90.5,85.9z M90.5,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S91.9,91.5,90.5,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S101.1,85.9,99.5,85.9z M99.5,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S100.9,91.5,99.5,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S110.1,85.9,108.4,85.9z M108.4,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S109.9,91.5,108.4,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3c1.6,0,3-1.3,3-3S119,85.9,117.4,85.9z M117.4,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S118.8,91.5,117.4,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S128,85.9,126.3,85.9z M126.3,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S127.8,91.5,126.3,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S137,85.9,135.3,85.9z M135.3,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S136.8,91.5,135.3,91.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,85.9c-1.6,0-3,1.3-3,3s1.3,3,3,3s3-1.3,3-3S38.4,85.9,36.7,85.9z M36.7,91.5c-1.4,0-2.6-1.2-2.6-2.6\n s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S38.2,91.5,36.7,91.5z" + }, + "children": [] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": { + "id": "row_1_00000090987415974105529780000012985790832784842890_" + }, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M45.7,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C48.7,78.2,47.3,76.9,45.7,76.9z M45.7,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S47.2,82.5,45.7,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M54.7,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C57.7,78.2,56.3,76.9,54.7,76.9z M54.7,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S56.1,82.5,54.7,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M63.6,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C66.6,78.2,65.3,76.9,63.6,76.9z M63.6,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S65.1,82.5,63.6,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M72.6,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C75.6,78.2,74.2,76.9,72.6,76.9z M72.6,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S74,82.5,72.6,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M81.6,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C84.5,78.2,83.2,76.9,81.6,76.9z M81.6,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S83,82.5,81.6,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M90.5,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C93.5,78.2,92.1,76.9,90.5,76.9z M90.5,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S91.9,82.5,90.5,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M99.5,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C102.4,78.2,101.1,76.9,99.5,76.9z M99.5,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S100.9,82.5,99.5,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M108.4,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C111.4,78.2,110.1,76.9,108.4,76.9z M108.4,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S109.9,82.5,108.4,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M117.4,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3c1.6,0,3-1.3,3-3C120.3,78.2,119,76.9,117.4,76.9z M117.4,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S118.8,82.5,117.4,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M126.3,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C129.3,78.2,128,76.9,126.3,76.9z M126.3,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S127.8,82.5,126.3,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M135.3,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C138.3,78.2,137,76.9,135.3,76.9z M135.3,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6c1.4,0,2.6,1.2,2.6,2.6S136.8,82.5,135.3,82.5z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M36.7,76.9c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C39.7,78.2,38.4,76.9,36.7,76.9z M36.7,82.5\n c-1.4,0-2.6-1.2-2.6-2.6s1.2-2.6,2.6-2.6s2.6,1.2,2.6,2.6S38.2,82.5,36.7,82.5z" + }, + "children": [] + } + ] + } + ] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M171.6,208.8H0.4c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0.1,0.2,0.2,0.2h171.3c0.1,0,0.2-0.1,0.2-0.2\n C171.8,208.9,171.7,208.8,171.6,208.8z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M171.6,212.8H0.4c-0.1,0-0.2,0.1-0.2,0.2c0,0.1,0.1,0.2,0.2,0.2h171.3c0.1,0,0.2-0.1,0.2-0.2\n C171.8,212.9,171.7,212.8,171.6,212.8z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M10.9,202.8h-0.4c-0.1,0-0.2,0.1-0.2,0.2s0.1,0.2,0.2,0.2h0.4c0.3,0,0.6,0.1,0.8,0.4l3.3,4.5c0.4,0.5,0.8,0.9,1.3,1.1\n c0.1,0,0.2,0,0.2-0.1c0-0.1,0-0.2-0.1-0.2c-0.5-0.2-0.9-0.6-1.2-1l-3.3-4.5C11.7,203,11.3,202.8,10.9,202.8z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M161.6,202.8h-0.4c-0.4,0-0.8,0.2-1.1,0.5l-3.3,4.5c-0.3,0.4-0.7,0.8-1.2,1c-0.1,0-0.1,0.1-0.1,0.2\n c0,0.1,0.1,0.1,0.2,0.1c0.5-0.2,1-0.6,1.3-1.1l3.3-4.5c0.2-0.3,0.5-0.4,0.8-0.4h0.4c0.1,0,0.2-0.1,0.2-0.2\n C161.8,202.9,161.7,202.8,161.6,202.8z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M161.6,202.7H10.5c-0.2,0-0.4,0.2-0.4,0.4s0.2,0.4,0.4,0.4h151.2c0.2,0,0.4-0.2,0.4-0.4S161.8,202.7,161.6,202.7z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M0.4,103.9H0.3c-0.1,0-0.1,0.1-0.1,0.1c0,0.1,0.1,0.1,0.1,0.1h0.1c0.1,0,0.1-0.1,0.1-0.1C0.5,104,0.5,103.9,0.4,103.9z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M167.6,38.9c-0.1,0-0.2,0.1-0.2,0.2v203.4H4.6V39.1c0-0.1-0.1-0.2-0.2-0.2c-0.1,0-0.2,0.1-0.2,0.2v203.6\n c0,0.1,0.1,0.2,0.2,0.2h163.2c0.1,0,0.2-0.1,0.2-0.2V39.1C167.8,39,167.7,38.9,167.6,38.9z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M150.5,63.9h-129c-1.4,0-2.6,1.2-2.6,2.6v4.4c0,0.2,0.2,0.4,0.4,0.4h5.9c0.4,0,0.6,0.3,0.6,0.6v2.5\n c0,0.4-0.3,0.6-0.6,0.6h-5.9c-0.2,0-0.4,0.2-0.4,0.4v65.3c0,0.2,0.2,0.4,0.4,0.4h5.9c0.4,0,0.6,0.3,0.6,0.6v2.5\n c0,0.4-0.3,0.6-0.6,0.6h-5.9c-0.2,0-0.4,0.2-0.4,0.4V156c0,1.4,1.2,2.6,2.6,2.6h129c1.4,0,2.6-1.2,2.6-2.6v-10.9\n c0-0.2-0.2-0.4-0.4-0.4h-5.9c-0.4,0-0.6-0.3-0.6-0.6v-2.5c0-0.4,0.3-0.6,0.6-0.6h5.9c0.2,0,0.4-0.2,0.4-0.4V75.4\n c0-0.2-0.2-0.4-0.4-0.4h-5.9c-0.4,0-0.6-0.3-0.6-0.6v-2.5c0-0.4,0.3-0.6,0.6-0.6h5.9c0.2,0,0.4-0.2,0.4-0.4v-4.4\n C153.1,65.1,151.9,63.9,150.5,63.9z M19.7,70.5v-4c0-1,0.8-1.9,1.9-1.9h129c1,0,1.9,0.8,1.9,1.9v4h-5.5c-0.7,0-1.3,0.6-1.3,1.3\n v2.5c0,0.7,0.6,1.3,1.3,1.3h5.5v64.6h-5.5c-0.7,0-1.3,0.6-1.3,1.3v2.5c0,0.7,0.6,1.3,1.3,1.3h5.5V156c0,1-0.8,1.9-1.9,1.9h-129\n c-1,0-1.9-0.8-1.9-1.9v-10.5h5.5c0.7,0,1.3-0.6,1.3-1.3v-2.5c0-0.7-0.6-1.3-1.3-1.3h-5.5V75.7h5.5c0.7,0,1.3-0.6,1.3-1.3v-2.5\n c0-0.7-0.6-1.3-1.3-1.3L19.7,70.5L19.7,70.5z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M47.7,52.7c-3.2,0-5.2,3.4-6.3,5.5c-0.1,0.1-0.1,0.2-0.2,0.3c-0.4,0.8-0.9,1.7-1.8,1.7H21c-3.5,0-6.3,2.8-6.3,6.3v95.9\n c0,3.5,2.8,6.3,6.3,6.3h130c3.5,0,6.3-2.8,6.3-6.3V66.6c0-3.5-2.8-6.3-6.3-6.3h-18.4c-0.9,0-1.3-0.9-1.8-1.7\n c-0.1-0.1-0.1-0.2-0.2-0.3c-1-1.9-2.2-3.9-4.2-5c-0.8-0.4-1.7-0.6-2.5-0.5H48.1C47.9,52.7,47.8,52.7,47.7,52.7z M21,168.1\n c-3.1,0-5.6-2.5-5.6-5.6V66.6c0-3.1,2.5-5.6,5.6-5.6h18.4c1.3,0,1.9-1.2,2.4-2.1c0.1-0.1,0.1-0.2,0.2-0.3\n c1.5-2.7,3.2-5.4,6.1-5.1h76c0,0,0,0,0,0c0.7-0.1,1.5,0.1,2.2,0.4c1.8,0.9,2.9,2.9,3.9,4.7c0.1,0.1,0.1,0.2,0.2,0.3\n c0.5,0.9,1.1,2.1,2.4,2.1H151c3.1,0,5.6,2.5,5.6,5.6v95.9c0,3.1-2.5,5.6-5.6,5.6H21z" + }, + "children": [] + } + ] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M141,191.4H31.1c-1.3,0-2.3,1.1-2.3,2.3v9.2c0,0.2,0.2,0.4,0.4,0.4c0.2,0,0.4-0.2,0.4-0.4v-9.2c0-0.9,0.7-1.6,1.6-1.6H141\n c0.9,0,1.6,0.7,1.6,1.6v9.2c0,0.2,0.2,0.4,0.4,0.4s0.4-0.2,0.4-0.4v-9.2C143.3,192.5,142.3,191.4,141,191.4z" + }, + "children": [] + } + ] + }, + { + "name": "g", + "type": "element", + "value": "", + "attributes": {}, + "children": [ + { + "name": "path", + "type": "element", + "value": "", + "attributes": { + "d": "M139,195.1H33.1c-0.4,0-0.7,0.3-0.7,0.7v7.5c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2-0.1,0.2-0.2v-7.5c0-0.2,0.1-0.3,0.3-0.3H139\n c0.2,0,0.3,0.1,0.3,0.3v7.4c0,0.1,0.1,0.2,0.2,0.2c0.1,0,0.2-0.1,0.2-0.2v-7.4C139.7,195.4,139.4,195.1,139,195.1z" + }, + "children": [] + } + ] + } + ] + } + ] + } +} diff --git a/shared-data/module/definitions/3/heaterShakerModuleV1.json b/shared-data/module/definitions/3/heaterShakerModuleV1.json index fac8fa81e8d..46385cf1bbf 100644 --- a/shared-data/module/definitions/3/heaterShakerModuleV1.json +++ b/shared-data/module/definitions/3/heaterShakerModuleV1.json @@ -170,6 +170,7 @@ } }, "compatibleWith": [], + "incompatibleWithDecks": [], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/definitions/3/magneticBlockV1.json b/shared-data/module/definitions/3/magneticBlockV1.json index a1fd0a39248..0ce8ca3ffa6 100644 --- a/shared-data/module/definitions/3/magneticBlockV1.json +++ b/shared-data/module/definitions/3/magneticBlockV1.json @@ -50,6 +50,7 @@ "ot3_standard": {} }, "compatibleWith": [], + "incompatibleWithDecks": [], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/definitions/3/magneticModuleV1.json b/shared-data/module/definitions/3/magneticModuleV1.json index ab46b018ae5..eb31487876b 100644 --- a/shared-data/module/definitions/3/magneticModuleV1.json +++ b/shared-data/module/definitions/3/magneticModuleV1.json @@ -34,6 +34,7 @@ "quirks": [], "slotTransforms": {}, "compatibleWith": [], + "incompatibleWithDecks": ["ot3_standard"], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/definitions/3/magneticModuleV2.json b/shared-data/module/definitions/3/magneticModuleV2.json index 5344627ce35..9bc35e5c2dd 100644 --- a/shared-data/module/definitions/3/magneticModuleV2.json +++ b/shared-data/module/definitions/3/magneticModuleV2.json @@ -87,6 +87,7 @@ } }, "compatibleWith": [], + "incompatibleWithDecks": ["ot3_standard"], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/definitions/3/temperatureModuleV1.json b/shared-data/module/definitions/3/temperatureModuleV1.json index 9b7b703ba52..7f5d824e1b5 100644 --- a/shared-data/module/definitions/3/temperatureModuleV1.json +++ b/shared-data/module/definitions/3/temperatureModuleV1.json @@ -35,6 +35,7 @@ "quirks": [], "slotTransforms": {}, "compatibleWith": ["temperatureModuleV2"], + "incompatibleWithDecks": ["ot3_standard"], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/definitions/3/temperatureModuleV2.json b/shared-data/module/definitions/3/temperatureModuleV2.json index 07bdfe03c47..ecd353eb0bd 100644 --- a/shared-data/module/definitions/3/temperatureModuleV2.json +++ b/shared-data/module/definitions/3/temperatureModuleV2.json @@ -168,6 +168,7 @@ } }, "compatibleWith": ["temperatureModuleV1"], + "incompatibleWithDecks": [], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/definitions/3/thermocyclerModuleV1.json b/shared-data/module/definitions/3/thermocyclerModuleV1.json index 09dd6828c9b..a6933bb3db5 100644 --- a/shared-data/module/definitions/3/thermocyclerModuleV1.json +++ b/shared-data/module/definitions/3/thermocyclerModuleV1.json @@ -38,6 +38,7 @@ "quirks": [], "slotTransforms": {}, "compatibleWith": ["thermocyclerModuleV1"], + "incompatibleWithDecks": ["ot3_standard"], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/definitions/3/thermocyclerModuleV2.json b/shared-data/module/definitions/3/thermocyclerModuleV2.json index b5d8b1fbd9e..f051d81078b 100644 --- a/shared-data/module/definitions/3/thermocyclerModuleV2.json +++ b/shared-data/module/definitions/3/thermocyclerModuleV2.json @@ -69,6 +69,7 @@ } }, "compatibleWith": [], + "incompatibleWithDecks": [], "twoDimensionalRendering": { "name": "svg", "type": "element", diff --git a/shared-data/module/schemas/3.json b/shared-data/module/schemas/3.json index 6ccd1bb8eab..c422645a67a 100644 --- a/shared-data/module/schemas/3.json +++ b/shared-data/module/schemas/3.json @@ -67,7 +67,8 @@ "quirks", "slotTransforms", "compatibleWith", - "twoDimensionalRendering" + "twoDimensionalRendering", + "incompatibleWithDecks" ], "additionalProperties": false, "properties": { @@ -81,13 +82,14 @@ "magneticModuleType", "thermocyclerModuleType", "heaterShakerModuleType", - "magneticBlockType" + "magneticBlockType", + "absorbanceReaderType" ], "type": "string" }, "model": { "type": "string", - "pattern": "^(temperatureModule|magneticModule|thermocyclerModule|heaterShakerModule|magneticBlock)V[0-9]+$" + "pattern": "^(temperatureModule|magneticModule|thermocyclerModule|heaterShakerModule|magneticBlock|absorbanceReader)V[0-9]+$" }, "labwareOffset": { "$ref": "#/definitions/coordinates" }, "dimensions": { @@ -197,6 +199,13 @@ "description": "A compatible module model (e.g. temperatureModuleV1)" } }, + "incompatibleWithDecks": { + "type": "array", + "items": { + "type": "string", + "description": "A list of robot decks (by their definition name) not compatible with this module." + } + }, "twoDimensionalRendering": { "type": "object", "description": "SVG rendering of the module represented as svgson", diff --git a/shared-data/package.json b/shared-data/package.json index f1212d4dac3..2ea8b885cba 100755 --- a/shared-data/package.json +++ b/shared-data/package.json @@ -10,7 +10,7 @@ "license": "Apache-2.0", "source": "js/index.ts", "types": "lib/js/index.d.ts", - "main": "lib/opentrons-shared-data.js", + "main": "lib/index.mjs", "module": "js/index.ts", "dependencies": { "ajv": "^6.12.3", diff --git a/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_4.json b/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_4.json index 32131ee1982..f1c15ddae49 100644 --- a/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_4.json +++ b/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_4.json @@ -2,7 +2,7 @@ "$otSharedSchema": "#/pipette/schemas/2/pipetteLiquidPropertiesSchema.json", "supportedTips": { "t50": { - "uiMaxFlowRate": 46.8, + "uiMaxFlowRate": 57, "defaultAspirateFlowRate": { "default": 35, "valuesByApiLevel": { "2.14": 35 } diff --git a/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_5.json b/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_5.json index ca2a48db274..80763fd4b6c 100644 --- a/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_5.json +++ b/shared-data/pipette/definitions/2/liquid/eight_channel/p50/default/3_5.json @@ -2,7 +2,7 @@ "$otSharedSchema": "#/pipette/schemas/2/pipetteLiquidPropertiesSchema.json", "supportedTips": { "t50": { - "uiMaxFlowRate": 46.7, + "uiMaxFlowRate": 57, "defaultAspirateFlowRate": { "default": 35, "valuesByApiLevel": { "2.14": 35 } diff --git a/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_4.json b/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_4.json index 464eb213798..24da0837138 100644 --- a/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_4.json +++ b/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_4.json @@ -2,7 +2,7 @@ "$otSharedSchema": "#/pipette/schemas/2/pipetteLiquidPropertiesSchema.json", "supportedTips": { "t50": { - "uiMaxFlowRate": 46.3, + "uiMaxFlowRate": 57, "defaultAspirateFlowRate": { "default": 35, "valuesByApiLevel": { "2.14": 35 } diff --git a/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_5.json b/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_5.json index 2fca659b070..0077dcf4c76 100644 --- a/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_5.json +++ b/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_5.json @@ -2,7 +2,7 @@ "$otSharedSchema": "#/pipette/schemas/2/pipetteLiquidPropertiesSchema.json", "supportedTips": { "t50": { - "uiMaxFlowRate": 47, + "uiMaxFlowRate": 57, "defaultAspirateFlowRate": { "default": 35, "valuesByApiLevel": { "2.14": 35 } diff --git a/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_6.json b/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_6.json index 2fca659b070..0077dcf4c76 100644 --- a/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_6.json +++ b/shared-data/pipette/definitions/2/liquid/single_channel/p50/default/3_6.json @@ -2,7 +2,7 @@ "$otSharedSchema": "#/pipette/schemas/2/pipetteLiquidPropertiesSchema.json", "supportedTips": { "t50": { - "uiMaxFlowRate": 47, + "uiMaxFlowRate": 57, "defaultAspirateFlowRate": { "default": 35, "valuesByApiLevel": { "2.14": 35 } diff --git a/shared-data/protocol/types/schemaV3.ts b/shared-data/protocol/types/schemaV3.ts index 2e3f96c108e..a89f7beb4d9 100644 --- a/shared-data/protocol/types/schemaV3.ts +++ b/shared-data/protocol/types/schemaV3.ts @@ -1,4 +1,4 @@ -import { PipetteName } from '../../js' +import type { PipetteName } from '../../js' import type { DeckSlotId, LabwareDefinition2, diff --git a/shared-data/protocol/types/schemaV6/command/index.ts b/shared-data/protocol/types/schemaV6/command/index.ts index 705e551b9a0..e58794afc50 100644 --- a/shared-data/protocol/types/schemaV6/command/index.ts +++ b/shared-data/protocol/types/schemaV6/command/index.ts @@ -6,6 +6,7 @@ import type { GantryRunTimeCommand, GantryCreateCommand } from './gantry' import type { ModuleRunTimeCommand, ModuleCreateCommand } from './module' import type { SetupRunTimeCommand, SetupCreateCommand } from './setup' import type { TimingRunTimeCommand, TimingCreateCommand } from './timing' +import type { CommandIntent } from '../../../../command' export * from './pipetting' export * from './gantry' @@ -26,7 +27,7 @@ export interface CommonCommandRunTimeInfo { createdAt: string startedAt: string | null completedAt: string | null - intent?: 'protocol' | 'setup' + intent?: CommandIntent } export interface CommonCommandCreateInfo { key?: string diff --git a/shared-data/protocol/types/schemaV6/index.ts b/shared-data/protocol/types/schemaV6/index.ts index ea60dfe7739..f04a6129eb6 100644 --- a/shared-data/protocol/types/schemaV6/index.ts +++ b/shared-data/protocol/types/schemaV6/index.ts @@ -1,4 +1,4 @@ -import { +import type { LoadedPipette, LoadedLabware, LoadedModule, diff --git a/shared-data/protocol/types/schemaV7/index.ts b/shared-data/protocol/types/schemaV7/index.ts index 2c05d6496b9..51f7d8ee41a 100644 --- a/shared-data/protocol/types/schemaV7/index.ts +++ b/shared-data/protocol/types/schemaV7/index.ts @@ -1,4 +1,9 @@ -import { LoadedPipette, LoadedLabware, LoadedModule, Liquid } from '../../../js' +import type { + LoadedPipette, + LoadedLabware, + LoadedModule, + Liquid, +} from '../../../js' import type { CreateCommand, RunTimeCommand } from './command' import type { LabwareDefinition2, RobotType } from '../../../js/types' diff --git a/shared-data/python/opentrons_shared_data/errors/codes.py b/shared-data/python/opentrons_shared_data/errors/codes.py index 61013b57e8f..e386cba455e 100644 --- a/shared-data/python/opentrons_shared_data/errors/codes.py +++ b/shared-data/python/opentrons_shared_data/errors/codes.py @@ -60,6 +60,7 @@ class ErrorCodes(Enum): EXECUTION_CANCELLED = _code_from_dict_entry("2014") FAILED_GRIPPER_PICKUP_ERROR = _code_from_dict_entry("2015") MOTOR_DRIVER_ERROR = _code_from_dict_entry("2016") + LIQUID_NOT_FOUND = _code_from_dict_entry("2017") ROBOTICS_INTERACTION_ERROR = _code_from_dict_entry("3000") LABWARE_DROPPED = _code_from_dict_entry("3001") LABWARE_NOT_PICKED_UP = _code_from_dict_entry("3002") diff --git a/shared-data/python/opentrons_shared_data/errors/exceptions.py b/shared-data/python/opentrons_shared_data/errors/exceptions.py index 779c33464e7..499fcf3ac2d 100644 --- a/shared-data/python/opentrons_shared_data/errors/exceptions.py +++ b/shared-data/python/opentrons_shared_data/errors/exceptions.py @@ -611,6 +611,24 @@ def __init__( super().__init__(ErrorCodes.MOTOR_DRIVER_ERROR, message, detail, wrapping) +class LiquidNotFoundError(RoboticsControlError): + """Error raised if liquid sensing move completes without detecting liquid.""" + + def __init__( + self, + message: Optional[str] = None, + detail: Optional[Dict[str, str]] = None, + wrapping: Optional[Sequence[EnumeratedError]] = None, + ) -> None: + """Initialize LiquidNotFoundError.""" + super().__init__( + ErrorCodes.LIQUID_NOT_FOUND, + message, + detail, + wrapping, + ) + + class LabwareDroppedError(RoboticsInteractionError): """An error indicating that the gripper dropped labware it was holding.""" diff --git a/shared-data/python/opentrons_shared_data/module/dev_types.py b/shared-data/python/opentrons_shared_data/module/dev_types.py index 326d9b6b764..827905d8a31 100644 --- a/shared-data/python/opentrons_shared_data/module/dev_types.py +++ b/shared-data/python/opentrons_shared_data/module/dev_types.py @@ -18,6 +18,7 @@ ThermocyclerModuleType = Literal["thermocyclerModuleType"] HeaterShakerModuleType = Literal["heaterShakerModuleType"] MagneticBlockType = Literal["magneticBlockType"] +AbsorbanceReaderType = Literal["absorbanceReaderType"] ModuleType = Union[ MagneticModuleType, @@ -25,6 +26,7 @@ ThermocyclerModuleType, HeaterShakerModuleType, MagneticBlockType, + AbsorbanceReaderType, ] MagneticModuleModel = Literal["magneticModuleV1", "magneticModuleV2"] @@ -32,6 +34,7 @@ ThermocyclerModuleModel = Literal["thermocyclerModuleV1", "thermocyclerModuleV2"] HeaterShakerModuleModel = Literal["heaterShakerModuleV1"] MagneticBlockModel = Literal["magneticBlockV1"] +AbsorbanceReaderModel = Literal["absorbanceReaderV1"] ModuleModel = Union[ MagneticModuleModel, @@ -39,6 +42,7 @@ ThermocyclerModuleModel, HeaterShakerModuleModel, MagneticBlockModel, + AbsorbanceReaderModel, ] ModuleSlotTransform = TypedDict( @@ -105,6 +109,7 @@ class GripperOffsets(TypedDict): "quirks": List[str], "slotTransforms": Dict[str, Dict[str, Dict[str, List[List[float]]]]], "compatibleWith": List[ModuleModel], + "incompatibleWithDecks": List[str], "twoDimensionalRendering": Dict[str, Any], "gripperOffsets": Dict[str, GripperOffsets], }, diff --git a/shared-data/python/tests/pipette/test_max_flow_rates_per_volume.py b/shared-data/python/tests/pipette/test_max_flow_rates_per_volume.py index ff731ec0e3c..45ce013d9d8 100644 --- a/shared-data/python/tests/pipette/test_max_flow_rates_per_volume.py +++ b/shared-data/python/tests/pipette/test_max_flow_rates_per_volume.py @@ -75,14 +75,29 @@ def test_max_flow_rates_per_volume(pipette: PipetteModel, action: str) -> None: pipette_model_version.pipette_channels, pipette_model_version.pipette_version, ) + + pipette_model_version_str = f"{pipette_model_version}" + for liquid_name, liquid_properties in definition.liquid_properties.items(): - for ( - tip_type, - supported_tip, - ) in liquid_properties.supported_tips.items(): - assert supported_tip.ui_max_flow_rate < _get_max_flow_rate_at_volume( - supported_tip.aspirate, pipette, liquid_properties.min_volume - ) - assert supported_tip.ui_max_flow_rate < _get_max_flow_rate_at_volume( - supported_tip.dispense, pipette, liquid_properties.min_volume - ) + for tip_type, supported_tip in liquid_properties.supported_tips.items(): + + """TODO: the following models do not pass the asserts since the uiMaxFlowRate was raised + to match the default blowout and dispense flowRates. uiMaxFlowRate will be reevaluated + in the future.""" + if not ( + pipette_model_version_str + in { + "p50_single_v3.4", + "p50_single_v3.5", + "p50_single_v3.6", + "p50_multi_v3.5", + "p50_multi_v3.4", + } + and liquid_properties.min_volume == 5.0 + ): + assert supported_tip.ui_max_flow_rate < _get_max_flow_rate_at_volume( + supported_tip.aspirate, pipette, liquid_properties.min_volume + ) + assert supported_tip.ui_max_flow_rate < _get_max_flow_rate_at_volume( + supported_tip.dispense, pipette, liquid_properties.min_volume + ) diff --git a/shared-data/vite.config.ts b/shared-data/vite.config.ts index 55c5d58e754..6f5cf3c5bdc 100644 --- a/shared-data/vite.config.ts +++ b/shared-data/vite.config.ts @@ -6,6 +6,8 @@ export default defineConfig({ // Relative to the root ssr: 'js/index.ts', outDir: 'lib', + // do not delete the outdir, typescript types might live there and we dont want to delete them + emptyOutDir: false, commonjsOptions: { transformMixedEsModules: true, esmExternals: true, diff --git a/step-generation/src/__tests__/aspirate.test.ts b/step-generation/src/__tests__/aspirate.test.ts index d937fcda7a4..8bd497e8ef2 100644 --- a/step-generation/src/__tests__/aspirate.test.ts +++ b/step-generation/src/__tests__/aspirate.test.ts @@ -3,6 +3,7 @@ import { beforeEach, describe, vi, it, expect, afterEach } from 'vitest' import { expectTimelineError } from '../__utils__/testMatchers' import { aspirate } from '../commandCreators/atomic/aspirate' import { + OT2_ROBOT_TYPE, getLabwareDefURI, getPipetteSpecsV2, fixtureTiprack10ul as tip10, @@ -480,11 +481,12 @@ describe('aspirate', () => { type: 'HEATER_SHAKER_EAST_WEST_LATCH_OPEN', }) }) - it('should return an error when aspirating north/south/east/west of a heater shaker while it is shaking', () => { + it('should return an error when aspirating north/south/east/west of a heater shaker while it is shaking for ot-2', () => { when(pipetteAdjacentHeaterShakerWhileShaking) .calledWith( robotStateWithTip.modules, - robotStateWithTip.labware[SOURCE_LABWARE].slot + robotStateWithTip.labware[SOURCE_LABWARE].slot, + OT2_ROBOT_TYPE ) .thenReturn(true) diff --git a/step-generation/src/__tests__/blowoutUtil.test.ts b/step-generation/src/__tests__/blowoutUtil.test.ts index ac2a1c1cd87..7337e517769 100644 --- a/step-generation/src/__tests__/blowoutUtil.test.ts +++ b/step-generation/src/__tests__/blowoutUtil.test.ts @@ -1,5 +1,4 @@ import { beforeEach, describe, it, expect, vi } from 'vitest' -import { BlowoutParams } from '@opentrons/shared-data/protocol/types/schemaV3' import { ONE_CHANNEL_WASTE_CHUTE_ADDRESSABLE_AREA } from '@opentrons/shared-data' import { blowoutUtil, @@ -23,6 +22,7 @@ import { getInitialRobotStateStandard, } from '../fixtures' import type { RobotState, InvariantContext } from '../types' +import type { BlowoutParams } from '@opentrons/shared-data/protocol/types/schemaV3' vi.mock('../utils/curryCommandCreator') let blowoutArgs: { diff --git a/step-generation/src/__tests__/consolidate.test.ts b/step-generation/src/__tests__/consolidate.test.ts index 11b20e65267..9733fe5caa6 100644 --- a/step-generation/src/__tests__/consolidate.test.ts +++ b/step-generation/src/__tests__/consolidate.test.ts @@ -1,4 +1,5 @@ import { beforeEach, describe, it, expect } from 'vitest' +import { getLabwareDefURI, fixtureTiprack300ul } from '@opentrons/shared-data' import { consolidate } from '../commandCreators/compound/consolidate' import { FIXED_TRASH_ID } from '../constants' import { @@ -25,7 +26,11 @@ import { blowoutInPlaceHelper, } from '../fixtures' import { DEST_WELL_BLOWOUT_DESTINATION } from '../utils' -import type { AspDispAirgapParams, CreateCommand } from '@opentrons/shared-data' +import type { + AspDispAirgapParams, + CreateCommand, + LabwareDefinition2, +} from '@opentrons/shared-data' import type { ConsolidateArgs, InvariantContext, RobotState } from '../types' const airGapHelper = makeAirGapHelper({ @@ -99,7 +104,7 @@ beforeEach(() => { mixInDestination: null, blowoutLocation: null, dropTipLocation: FIXED_TRASH_ID, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), aspirateXOffset: 0, dispenseXOffset: 0, aspirateYOffset: 0, @@ -3210,7 +3215,7 @@ describe('consolidate multi-channel', () => { const data: ConsolidateArgs = { ...args, volume: 140, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), changeTip: 'once', aspirateXOffset: 0, dispenseXOffset: 0, diff --git a/step-generation/src/__tests__/deactivateTemperature.test.ts b/step-generation/src/__tests__/deactivateTemperature.test.ts index 730f3971cf1..fdd29e97ffc 100644 --- a/step-generation/src/__tests__/deactivateTemperature.test.ts +++ b/step-generation/src/__tests__/deactivateTemperature.test.ts @@ -1,7 +1,7 @@ import { beforeEach, describe, it, expect } from 'vitest' import { getStateAndContextTempTCModules } from '../fixtures' import { deactivateTemperature } from '../commandCreators/atomic/deactivateTemperature' -import { +import type { InvariantContext, RobotState, DeactivateTemperatureArgs, diff --git a/step-generation/src/__tests__/delay.test.ts b/step-generation/src/__tests__/delay.test.ts index 6fdce84c181..6a843ab11f5 100644 --- a/step-generation/src/__tests__/delay.test.ts +++ b/step-generation/src/__tests__/delay.test.ts @@ -1,7 +1,7 @@ import { beforeEach, describe, it, expect } from 'vitest' import { delay } from '../commandCreators/atomic/delay' -import { PauseArgs } from '../types' import { getSuccessResult } from '../fixtures' +import type { PauseArgs } from '../types' const getRobotInitialState = (): any => { // This particular state shouldn't matter for delay diff --git a/step-generation/src/__tests__/disengageMagnet.test.ts b/step-generation/src/__tests__/disengageMagnet.test.ts index 55cbef080b3..3f988492fe0 100644 --- a/step-generation/src/__tests__/disengageMagnet.test.ts +++ b/step-generation/src/__tests__/disengageMagnet.test.ts @@ -5,7 +5,7 @@ import { } from '@opentrons/shared-data' import { makeContext, getInitialRobotStateStandard } from '../fixtures' import { disengageMagnet } from '../commandCreators/atomic/disengageMagnet' -import { InvariantContext, RobotState } from '../types' +import type { InvariantContext, RobotState } from '../types' const moduleId = 'magneticModuleId' const commandCreatorFnName = 'disengageMagnet' describe('disengageMagnet', () => { diff --git a/step-generation/src/__tests__/dispense.test.ts b/step-generation/src/__tests__/dispense.test.ts index 1ef07707d80..968d8000e88 100644 --- a/step-generation/src/__tests__/dispense.test.ts +++ b/step-generation/src/__tests__/dispense.test.ts @@ -1,6 +1,6 @@ import { when } from 'vitest-when' import { beforeEach, describe, it, expect, vi, afterEach } from 'vitest' -import { getPipetteSpecsV2 } from '@opentrons/shared-data' +import { OT2_ROBOT_TYPE, getPipetteSpecsV2 } from '@opentrons/shared-data' import { thermocyclerPipetteCollision, pipetteIntoHeaterShakerLatchOpen, @@ -20,10 +20,8 @@ import { DEFAULT_PIPETTE, SOURCE_LABWARE, } from '../fixtures' -import { - ExtendedDispenseParams, - dispense, -} from '../commandCreators/atomic/dispense' +import { dispense } from '../commandCreators/atomic/dispense' +import type { ExtendedDispenseParams } from '../commandCreators/atomic/dispense' import type { InvariantContext, RobotState } from '../types' vi.mock('../utils/thermocyclerPipetteCollision') @@ -283,7 +281,8 @@ describe('dispense', () => { when(pipetteAdjacentHeaterShakerWhileShaking) .calledWith( robotStateWithTip.modules, - robotStateWithTip.labware[SOURCE_LABWARE].slot + robotStateWithTip.labware[SOURCE_LABWARE].slot, + OT2_ROBOT_TYPE ) .thenReturn(true) diff --git a/step-generation/src/__tests__/dispenseUpdateLiquidState.test.ts b/step-generation/src/__tests__/dispenseUpdateLiquidState.test.ts index 928a3eb281e..5eacb77b483 100644 --- a/step-generation/src/__tests__/dispenseUpdateLiquidState.test.ts +++ b/step-generation/src/__tests__/dispenseUpdateLiquidState.test.ts @@ -8,13 +8,16 @@ import merge from 'lodash/merge' import omit from 'lodash/omit' import produce from 'immer' import { createEmptyLiquidState, createTipLiquidState } from '../utils' -import { makeContext, DEFAULT_PIPETTE, SOURCE_LABWARE } from '../fixtures' - import { - dispenseUpdateLiquidState, - DispenseUpdateLiquidStateArgs, -} from '../getNextRobotStateAndWarnings/dispenseUpdateLiquidState' + makeContext, + DEFAULT_PIPETTE, + SOURCE_LABWARE, + getInitialRobotStateStandard, +} from '../fixtures' +import { dispenseUpdateLiquidState } from '../getNextRobotStateAndWarnings/dispenseUpdateLiquidState' + import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { DispenseUpdateLiquidStateArgs } from '../getNextRobotStateAndWarnings/dispenseUpdateLiquidState' import type { InvariantContext, RobotState } from '../types' const fixture96Plate = _fixture96Plate as LabwareDefinition2 @@ -33,6 +36,10 @@ beforeEach(() => { useFullVolume: false, labwareId: SOURCE_LABWARE, wellName: 'A1', + robotStateAndWarnings: { + robotState: getInitialRobotStateStandard(invariantContext), + warnings: [], + }, } }) @@ -396,6 +403,10 @@ describe('...8-channel pipette', () => { useFullVolume: false, volume: 150, wellName: 'A1', + robotStateAndWarnings: { + robotState: getInitialRobotStateStandard(invariantContext), + warnings: [], + }, }, initialLiquidState ) diff --git a/step-generation/src/__tests__/distribute.test.ts b/step-generation/src/__tests__/distribute.test.ts index 6793b9df81e..a2bd499d1fc 100644 --- a/step-generation/src/__tests__/distribute.test.ts +++ b/step-generation/src/__tests__/distribute.test.ts @@ -1,5 +1,6 @@ import { beforeEach, describe, it, expect } from 'vitest' import { FIXED_TRASH_ID } from '../constants' +import { fixtureTiprack300ul, getLabwareDefURI } from '@opentrons/shared-data' import { ASPIRATE_OFFSET_FROM_BOTTOM_MM, blowoutHelper, @@ -24,7 +25,7 @@ import { blowoutInPlaceHelper, } from '../fixtures' import { distribute } from '../commandCreators/compound/distribute' -import type { CreateCommand } from '@opentrons/shared-data' +import type { CreateCommand, LabwareDefinition2 } from '@opentrons/shared-data' import type { DistributeArgs, InvariantContext, RobotState } from '../types' import { SOURCE_WELL_BLOWOUT_DESTINATION, @@ -73,7 +74,7 @@ beforeEach(() => { commandCreatorFnName: 'distribute', name: 'distribute test', description: 'test blah blah', - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), pipette: DEFAULT_PIPETTE, sourceLabware: SOURCE_LABWARE, destLabware: DEST_LABWARE, @@ -254,7 +255,7 @@ describe('tip handling for multiple distribute chunks', () => { destWells: ['A2', 'A3', 'A4', 'A5'], changeTip: 'always', volume: 150, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), } as DistributeArgs const result = distribute( diff --git a/step-generation/src/__tests__/forAspirate.test.ts b/step-generation/src/__tests__/forAspirate.test.ts index 85b07046782..cdb22c8951e 100644 --- a/step-generation/src/__tests__/forAspirate.test.ts +++ b/step-generation/src/__tests__/forAspirate.test.ts @@ -10,8 +10,12 @@ import { AIR, createTipLiquidState } from '../utils/misc' import { makeImmutableStateUpdater } from '../__utils__' import { forAspirate as _forAspirate } from '../getNextRobotStateAndWarnings/forAspirate' import * as warningCreators from '../warningCreators' -import { CommandCreatorWarning, InvariantContext, RobotState } from '../types' -import { AspDispAirgapParams } from '@opentrons/shared-data/lib/protocol/types/schemaV6/command/pipetting' +import type { + CommandCreatorWarning, + InvariantContext, + RobotState, +} from '../types' +import type { AspDispAirgapParams } from '@opentrons/shared-data/lib/protocol/types/schemaV6/command/pipetting' const forAspirate = makeImmutableStateUpdater(_forAspirate) diff --git a/step-generation/src/__tests__/forDropTip.test.ts b/step-generation/src/__tests__/forDropTip.test.ts index dcb4bffadf5..833187dcf99 100644 --- a/step-generation/src/__tests__/forDropTip.test.ts +++ b/step-generation/src/__tests__/forDropTip.test.ts @@ -7,7 +7,7 @@ import { } from '../fixtures' import { makeImmutableStateUpdater } from '../__utils__' import { forDropTip as _forDropTip } from '../getNextRobotStateAndWarnings/forDropTip' -import { InvariantContext, RobotState } from '../types' +import type { InvariantContext, RobotState } from '../types' const forDropTip = makeImmutableStateUpdater(_forDropTip) describe('dropTip', () => { diff --git a/step-generation/src/__tests__/getIsSafePipetteMovement.test.ts b/step-generation/src/__tests__/getIsSafePipetteMovement.test.ts index b0d40489178..bf63014d552 100644 --- a/step-generation/src/__tests__/getIsSafePipetteMovement.test.ts +++ b/step-generation/src/__tests__/getIsSafePipetteMovement.test.ts @@ -1,7 +1,6 @@ import { expect, describe, it } from 'vitest' import { getIsSafePipetteMovement } from '../utils' import { - LabwareDefinition2, TEMPERATURE_MODULE_TYPE, TEMPERATURE_MODULE_V2, fixture96Plate, @@ -9,11 +8,13 @@ import { fixtureTiprack1000ul, fixtureTiprackAdapter, } from '@opentrons/shared-data' -import { InvariantContext, RobotState } from '../types' +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { InvariantContext, RobotState } from '../types' const mockLabwareId = 'labwareId' const mockPipId = 'pip' const mockTiprackId = 'tiprackId' +const mockTipUri = 'mockTipUri' const mockModule = 'moduleId' const mockLabware2 = 'labwareId2' const mockAdapter = 'adapterId' @@ -35,7 +36,7 @@ const mockInvariantProperties: InvariantContext = { }, [mockTiprackId]: { id: mockTiprackId, - labwareDefURI: 'mockTipUri', + labwareDefURI: mockTipUri, def: fixtureTiprack1000ul as LabwareDefinition2, }, [mockAdapter]: { @@ -84,7 +85,7 @@ describe('getIsSafePipetteMovement', () => { }, 'mockId', 'mockTrashBin', - 'mockTiprackId', + mockTipUri, { x: 0, y: 0, z: 0 } ) expect(result).toEqual(true) @@ -95,7 +96,7 @@ describe('getIsSafePipetteMovement', () => { mockInvariantProperties, mockPipId, mockLabwareId, - mockTiprackId, + mockTipUri, { x: -12, y: -100, z: 20 } ) expect(result).toEqual(false) @@ -116,7 +117,7 @@ describe('getIsSafePipetteMovement', () => { mockInvariantProperties, mockPipId, mockLabwareId, - mockTiprackId, + mockTipUri, { x: -1, y: 5, z: 20 } ) expect(result).toEqual(true) @@ -128,7 +129,7 @@ describe('getIsSafePipetteMovement', () => { mockInvariantProperties, mockPipId, mockLabwareId, - mockTiprackId, + mockTipUri, { x: -1, y: 5, z: 0 } ) expect(result).toEqual(false) @@ -158,7 +159,7 @@ describe('getIsSafePipetteMovement', () => { mockInvariantProperties, mockPipId, mockLabwareId, - mockTiprackId, + mockTipUri, { x: 0, y: 0, z: 0 } ) expect(result).toEqual(false) diff --git a/step-generation/src/__tests__/mix.test.ts b/step-generation/src/__tests__/mix.test.ts index 9fd099a5388..9f39d8722b7 100644 --- a/step-generation/src/__tests__/mix.test.ts +++ b/step-generation/src/__tests__/mix.test.ts @@ -1,6 +1,10 @@ import { beforeEach, describe, it, expect } from 'vitest' import flatMap from 'lodash/flatMap' -import { FIXED_TRASH_ID } from '@opentrons/shared-data' +import { + FIXED_TRASH_ID, + fixtureTiprack300ul, + getLabwareDefURI, +} from '@opentrons/shared-data' import { mix } from '../commandCreators/compound/mix' import { getRobotStateWithTipStandard, @@ -18,6 +22,7 @@ import { makeTouchTipHelper, delayCommand, } from '../fixtures' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { ChangeTipOptions, InvariantContext, @@ -41,7 +46,7 @@ beforeEach(() => { commandCreatorFnName: 'mix', name: 'mix test', description: 'test blah blah', - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), pipette: DEFAULT_PIPETTE, labware: SOURCE_LABWARE, diff --git a/step-generation/src/__tests__/moveLabware.test.ts b/step-generation/src/__tests__/moveLabware.test.ts index 1c110c0631b..ddc8e6008de 100644 --- a/step-generation/src/__tests__/moveLabware.test.ts +++ b/step-generation/src/__tests__/moveLabware.test.ts @@ -1,7 +1,6 @@ import { beforeEach, describe, it, expect, afterEach, vi } from 'vitest' import { HEATERSHAKER_MODULE_TYPE, - LabwareDefinition2, WASTE_CHUTE_CUTOUT, } from '@opentrons/shared-data' import { @@ -14,9 +13,11 @@ import { SOURCE_LABWARE, TIPRACK_1, } from '../fixtures' -import { moveLabware, MoveLabwareArgs } from '..' +import { moveLabware } from '..' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { InvariantContext, RobotState } from '../types' +import type { MoveLabwareArgs } from '..' const mockWasteChuteId = 'mockWasteChuteId' const mockGripperId = 'mockGripperId' @@ -114,6 +115,49 @@ describe('moveLabware', () => { type: 'LABWARE_OFF_DECK', }) }) + it('should return an error for trying to move the labware to an occupied slot', () => { + const params = { + commandCreatorFnName: 'moveLabware', + labware: SOURCE_LABWARE, + useGripper: true, + newLocation: { slotName: '1' }, + } as MoveLabwareArgs + + const result = moveLabware(params, invariantContext, robotState) + expect(getErrorResult(result).errors).toHaveLength(1) + expect(getErrorResult(result).errors[0]).toMatchObject({ + type: 'LABWARE_ON_ANOTHER_ENTITY', + }) + }) + it('should return an error for the labware already being discarded in previous step', () => { + const wasteChuteInvariantContext = { + ...invariantContext, + additionalEquipmentEntities: { + ...invariantContext.additionalEquipmentEntities, + mockWasteChuteId: { + name: 'wasteChute', + id: mockWasteChuteId, + location: WASTE_CHUTE_CUTOUT, + }, + }, + } as InvariantContext + + robotState.labware = { + [SOURCE_LABWARE]: { slot: 'gripperWasteChute' }, + } + const params = { + commandCreatorFnName: 'moveLabware', + labware: SOURCE_LABWARE, + useGripper: true, + newLocation: { slotName: 'A1' }, + } as MoveLabwareArgs + + const result = moveLabware(params, wasteChuteInvariantContext, robotState) + expect(getErrorResult(result).errors).toHaveLength(1) + expect(getErrorResult(result).errors[0]).toMatchObject({ + type: 'LABWARE_DISCARDED_IN_WASTE_CHUTE', + }) + }) it('should return an error for trying to move the labware off deck with a gripper', () => { const params = { commandCreatorFnName: 'moveLabware', diff --git a/step-generation/src/__tests__/moveToWell.test.ts b/step-generation/src/__tests__/moveToWell.test.ts index ba97b783fb0..b597b0f7998 100644 --- a/step-generation/src/__tests__/moveToWell.test.ts +++ b/step-generation/src/__tests__/moveToWell.test.ts @@ -1,6 +1,6 @@ import { when } from 'vitest-when' import { beforeEach, describe, it, expect, afterEach, vi } from 'vitest' -import { getPipetteSpecsV2 } from '@opentrons/shared-data' +import { OT2_ROBOT_TYPE, getPipetteSpecsV2 } from '@opentrons/shared-data' import { expectTimelineError } from '../__utils__/testMatchers' import { moveToWell } from '../commandCreators/atomic/moveToWell' import { @@ -472,7 +472,8 @@ describe('moveToWell', () => { when(pipetteAdjacentHeaterShakerWhileShaking) .calledWith( robotStateWithTip.modules, - robotStateWithTip.labware[SOURCE_LABWARE].slot + robotStateWithTip.labware[SOURCE_LABWARE].slot, + OT2_ROBOT_TYPE ) .thenReturn(true) diff --git a/step-generation/src/__tests__/replaceTip.test.ts b/step-generation/src/__tests__/replaceTip.test.ts index 0cd85058ca4..f814ca8a04b 100644 --- a/step-generation/src/__tests__/replaceTip.test.ts +++ b/step-generation/src/__tests__/replaceTip.test.ts @@ -1,6 +1,11 @@ import { beforeEach, describe, it, expect } from 'vitest' import merge from 'lodash/merge' -import { COLUMN } from '@opentrons/shared-data' +import { + COLUMN, + fixtureTiprack1000ul, + fixtureTiprack300ul, + getLabwareDefURI, +} from '@opentrons/shared-data' import { getInitialRobotStateStandard, makeContext, @@ -12,15 +17,19 @@ import { dropTipInPlaceHelper, moveToAddressableAreaHelper, DEFAULT_PIPETTE, + PIPETTE_96, } from '../fixtures' -import { FIXED_TRASH_ID } from '..' import { replaceTip } from '../commandCreators/atomic/replaceTip' +import { FIXED_TRASH_ID } from '../constants' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { InvariantContext, RobotState } from '../types' const tiprack1Id = 'tiprack1Id' const tiprack2Id = 'tiprack2Id' const tiprack4Id = 'tiprack4Id' const tiprack5Id = 'tiprack5Id' +const tiprackURI1 = getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2) +const tiprackURI2 = getLabwareDefURI(fixtureTiprack1000ul as LabwareDefinition2) const p300SingleId = DEFAULT_PIPETTE const p300MultiId = 'p300MultiId' const p100096Id = 'p100096Id' @@ -38,7 +47,7 @@ describe('replaceTip', () => { { pipette: p300SingleId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, initialRobotState @@ -51,7 +60,7 @@ describe('replaceTip', () => { { pipette: p300SingleId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, merge({}, initialRobotState, { @@ -85,7 +94,7 @@ describe('replaceTip', () => { { pipette: p300SingleId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, initialTestRobotState @@ -110,7 +119,7 @@ describe('replaceTip', () => { { pipette: p300SingleId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, initialTestRobotState @@ -121,6 +130,49 @@ describe('replaceTip', () => { pickUpTipHelper('B1'), ]) }) + it('96-channel full tip and emits the configure nozzle layout command before picking up tip', () => { + const initialTestRobotState = merge({}, initialRobotState, { + tipState: { + tipracks: { + [tiprack1Id]: { + A1: false, + }, + }, + pipettes: { + [PIPETTE_96]: true, + }, + }, + pipettes: { + [PIPETTE_96]: { nozzles: 'ALL' }, + }, + }) + const result = replaceTip( + { + pipette: PIPETTE_96, + dropTipLocation: FIXED_TRASH_ID, + tipRack: tiprackURI1, + nozzles: COLUMN, + }, + invariantContext, + initialTestRobotState + ) + const res = getSuccessResult(result) + expect(res.commands).toEqual([ + ...dropTipHelper(PIPETTE_96), + { + commandType: 'configureNozzleLayout', + key: expect.any(String), + params: { + pipetteId: PIPETTE_96, + configurationParams: { + primaryNozzle: 'A12', + style: COLUMN, + }, + }, + }, + pickUpTipHelper('A2', { pipetteId: PIPETTE_96 }), + ]) + }) it('Single-channel: used all tips in first rack, move to second rack', () => { const initialTestRobotState = merge({}, initialRobotState, { tipState: { @@ -136,7 +188,7 @@ describe('replaceTip', () => { { pipette: p300SingleId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, initialTestRobotState @@ -175,7 +227,7 @@ describe('replaceTip', () => { { pipette: p300SingleId, dropTipLocation: 'wasteChuteId', - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, initialTestRobotState @@ -194,7 +246,7 @@ describe('replaceTip', () => { { pipette: p300MultiId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, initialRobotState @@ -221,7 +273,7 @@ describe('replaceTip', () => { { pipette: p300MultiId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, robotStateWithTipA1Missing @@ -247,7 +299,7 @@ describe('replaceTip', () => { { pipette: p300MultiId, dropTipLocation: FIXED_TRASH_ID, - tipRack: tiprack1Id, + tipRack: tiprackURI1, }, invariantContext, robotStateWithTipsOnMulti @@ -292,7 +344,7 @@ describe('replaceTip', () => { { pipette: p100096Id, dropTipLocation: 'wasteChuteId', - tipRack: tiprack5Id, + tipRack: tiprackURI2, nozzles: COLUMN, }, invariantContext, diff --git a/step-generation/src/__tests__/robotStateSelectors.test.ts b/step-generation/src/__tests__/robotStateSelectors.test.ts index e74549a87ed..792c277651e 100644 --- a/step-generation/src/__tests__/robotStateSelectors.test.ts +++ b/step-generation/src/__tests__/robotStateSelectors.test.ts @@ -2,7 +2,6 @@ import { beforeEach, describe, it, expect } from 'vitest' import { getLabwareDefURI, MAGNETIC_MODULE_TYPE, - LabwareDefinition2, fixtureTiprack300ul as _fixtureTiprack300ul, } from '@opentrons/shared-data' import { @@ -18,11 +17,15 @@ import { _getNextTip, getModuleState, } from '../' -import { InvariantContext } from '../types' + +import type { LabwareDefinition2 } from '@opentrons/shared-data' +import type { InvariantContext } from '../types' let invariantContext: InvariantContext const fixtureTiprack300ul = _fixtureTiprack300ul as LabwareDefinition2 -const mockTiprackId = 'tiprack1Id' +const mockTiprackURI = getLabwareDefURI( + fixtureTiprack300ul as LabwareDefinition2 +) beforeEach(() => { invariantContext = makeContext() @@ -153,7 +156,7 @@ describe('getNextTiprack - single-channel', () => { const result = getNextTiprack( DEFAULT_PIPETTE, - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -172,7 +175,7 @@ describe('getNextTiprack - single-channel', () => { const result = getNextTiprack( DEFAULT_PIPETTE, - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -191,7 +194,7 @@ describe('getNextTiprack - single-channel', () => { }) const result = getNextTiprack( DEFAULT_PIPETTE, - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -215,7 +218,7 @@ describe('getNextTiprack - single-channel', () => { robotState.tipState.tipracks.tiprack2Id.A1 = false const result = getNextTiprack( DEFAULT_PIPETTE, - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -236,7 +239,7 @@ describe('getNextTiprack - single-channel', () => { }) const result = getNextTiprack( DEFAULT_PIPETTE, - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -258,7 +261,7 @@ describe('getNextTiprack - 8-channel', () => { const result = getNextTiprack( 'p300MultiId', - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -284,7 +287,7 @@ describe('getNextTiprack - 8-channel', () => { } const result = getNextTiprack( 'p300MultiId', - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -304,7 +307,7 @@ describe('getNextTiprack - 8-channel', () => { }) const result = getNextTiprack( 'p300MultiId', - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -339,7 +342,7 @@ describe('getNextTiprack - 8-channel', () => { const result = getNextTiprack( 'p300MultiId', - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -360,7 +363,7 @@ describe('getNextTiprack - 8-channel', () => { }) const result = getNextTiprack( 'p300MultiId', - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -420,7 +423,7 @@ describe('getNextTiprack - 8-channel', () => { const result = getNextTiprack( 'p300MultiId', - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) @@ -446,7 +449,7 @@ describe('getNextTiprack - 8-channel', () => { }) const result = getNextTiprack( 'p300MultiId', - mockTiprackId, + mockTiprackURI, invariantContext, robotState ) diff --git a/step-generation/src/__tests__/temperatureUpdates.test.ts b/step-generation/src/__tests__/temperatureUpdates.test.ts index df448caa2f5..fc08f969924 100644 --- a/step-generation/src/__tests__/temperatureUpdates.test.ts +++ b/step-generation/src/__tests__/temperatureUpdates.test.ts @@ -14,7 +14,7 @@ import { getStateAndContextTempTCModules, robotWithStatusAndTemp, } from '../fixtures/robotStateFixtures' -import { InvariantContext, RobotState } from '../types' +import type { InvariantContext, RobotState } from '../types' const forSetTemperature = makeImmutableStateUpdater(_forSetTemperature) const forDeactivateTemperature = makeImmutableStateUpdater( diff --git a/step-generation/src/__tests__/thermocyclerStateStep.test.ts b/step-generation/src/__tests__/thermocyclerStateStep.test.ts index d35bb5149ae..a4f4af90ff8 100644 --- a/step-generation/src/__tests__/thermocyclerStateStep.test.ts +++ b/step-generation/src/__tests__/thermocyclerStateStep.test.ts @@ -1,10 +1,9 @@ import { describe, it, expect, vi, afterEach } from 'vitest' -import { - thermocyclerStateDiff as actualThermocyclerStateDiff, - Diff, -} from '../utils/thermocyclerStateDiff' +import { thermocyclerStateDiff as actualThermocyclerStateDiff } from '../utils/thermocyclerStateDiff' import { thermocyclerStateStep } from '../commandCreators/compound/thermocyclerStateStep' import { getStateAndContextTempTCModules, getSuccessResult } from '../fixtures' + +import type { Diff } from '../utils/thermocyclerStateDiff' import type { CreateCommand } from '@opentrons/shared-data' import type { InvariantContext, diff --git a/step-generation/src/__tests__/thermocyclerUpdates.test.ts b/step-generation/src/__tests__/thermocyclerUpdates.test.ts index 225ede197d4..19f690e38c2 100644 --- a/step-generation/src/__tests__/thermocyclerUpdates.test.ts +++ b/step-generation/src/__tests__/thermocyclerUpdates.test.ts @@ -23,7 +23,12 @@ import type { TemperatureParams, ThermocyclerSetTargetBlockTemperatureParams, } from '@opentrons/shared-data/protocol/types/schemaV6/command/module' -import { InvariantContext, RobotState, ThermocyclerModuleState } from '../types' +import type { + InvariantContext, + RobotState, + ThermocyclerModuleState, +} from '../types' + const forThermocyclerSetTargetBlockTemperature = makeImmutableStateUpdater( _forThermocyclerSetTargetBlockTemperature ) diff --git a/step-generation/src/__tests__/transfer.test.ts b/step-generation/src/__tests__/transfer.test.ts index b3da39db41d..72c89fc264a 100644 --- a/step-generation/src/__tests__/transfer.test.ts +++ b/step-generation/src/__tests__/transfer.test.ts @@ -1,6 +1,8 @@ import { beforeEach, describe, it, expect, test } from 'vitest' import { ONE_CHANNEL_WASTE_CHUTE_ADDRESSABLE_AREA, + fixtureTiprack300ul, + getLabwareDefURI, WASTE_CHUTE_CUTOUT, } from '@opentrons/shared-data' import { @@ -31,6 +33,7 @@ import { SOURCE_WELL_BLOWOUT_DESTINATION, } from '../utils/misc' import { transfer } from '../commandCreators/compound/transfer' +import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { InvariantContext, RobotState, TransferArgs } from '../types' const airGapHelper = makeAirGapHelper({ @@ -68,7 +71,7 @@ beforeEach(() => { name: 'Transfer Test', description: 'test blah blah', pipette: DEFAULT_PIPETTE, - tipRack: 'tiprack1Id', + tipRack: getLabwareDefURI(fixtureTiprack300ul as LabwareDefinition2), sourceLabware: SOURCE_LABWARE, destLabware: DEST_LABWARE, diff --git a/step-generation/src/__tests__/utils.test.ts b/step-generation/src/__tests__/utils.test.ts index f5ff87703eb..65fea098106 100644 --- a/step-generation/src/__tests__/utils.test.ts +++ b/step-generation/src/__tests__/utils.test.ts @@ -5,7 +5,6 @@ import { TEMPERATURE_MODULE_TYPE, TEMPERATURE_MODULE_V1, THERMOCYCLER_MODULE_TYPE, - LabwareDefinition2, getIsLabwareAboveHeight, MAX_LABWARE_HEIGHT_EAST_WEST_HEATER_SHAKER_MM, HEATERSHAKER_MODULE_TYPE, @@ -15,6 +14,7 @@ import { fixtureTiprack300ul as _fixtureTiprack300ul, fixtureP10SingleV2Specs, fixtureP300MultiV2Specs, + OT2_ROBOT_TYPE, } from '@opentrons/shared-data' import { FIXED_TRASH_ID, TEMPERATURE_DEACTIVATED } from '../constants' import { @@ -28,7 +28,7 @@ import { SOURCE_WELL_BLOWOUT_DESTINATION, splitLiquid, } from '../utils/misc' -import { Diff, thermocyclerStateDiff } from '../utils/thermocyclerStateDiff' +import { thermocyclerStateDiff } from '../utils/thermocyclerStateDiff' import { DEFAULT_CONFIG } from '../fixtures' import { getIsHeaterShakerEastWestWithLatchOpen, @@ -37,6 +37,10 @@ import { pipetteAdjacentHeaterShakerWhileShaking, thermocyclerPipetteCollision, } from '../utils' +import { getIsHeaterShakerNorthSouthOfNonTiprackWithMultiChannelPipette } from '../utils/heaterShakerCollision' +import * as SharedData from '@opentrons/shared-data' + +import type { Diff } from '../utils/thermocyclerStateDiff' import type { RobotState } from '../' import type { LabwareEntities, @@ -44,8 +48,7 @@ import type { ThermocyclerModuleState, ThermocyclerStateStepArgs, } from '../types' -import { getIsHeaterShakerNorthSouthOfNonTiprackWithMultiChannelPipette } from '../utils/heaterShakerCollision' -import * as SharedData from '@opentrons/shared-data' +import type { LabwareDefinition2 } from '@opentrons/shared-data' vi.mock('@opentrons/shared-data', async importOriginal => { const actualSharedData = await importOriginal() @@ -995,36 +998,50 @@ describe('pipetteAdjacentHeaterShakerWhileShaking', () => { it('should return false when there are no modules', () => { modules = {} - expect(pipetteAdjacentHeaterShakerWhileShaking(modules, slot)).toBe(false) + expect( + pipetteAdjacentHeaterShakerWhileShaking(modules, slot, OT2_ROBOT_TYPE) + ).toBe(false) }) it('should return false when there is no heater shaker ajacent to labware', () => { slot = '9' - expect(pipetteAdjacentHeaterShakerWhileShaking(modules, slot)).toBe(false) + expect( + pipetteAdjacentHeaterShakerWhileShaking(modules, slot, OT2_ROBOT_TYPE) + ).toBe(false) }) it('should return false when the heater shaker is not shaking', () => { - expect(pipetteAdjacentHeaterShakerWhileShaking(modules, slot)).toBe(false) + expect( + pipetteAdjacentHeaterShakerWhileShaking(modules, slot, OT2_ROBOT_TYPE) + ).toBe(false) }) it('should return true when there is a heater shaker north of labware shaking', () => { modules.heaterShakerId.slot = '5' ;(modules.heaterShakerId.moduleState as any).targetSpeed = 300 - expect(pipetteAdjacentHeaterShakerWhileShaking(modules, slot)).toBe(true) + expect( + pipetteAdjacentHeaterShakerWhileShaking(modules, slot, OT2_ROBOT_TYPE) + ).toBe(true) }) it('should return true when there is a heater shaker south of labware shaking', () => { slot = '9' modules.heaterShakerId.slot = '6' ;(modules.heaterShakerId.moduleState as any).targetSpeed = 300 - expect(pipetteAdjacentHeaterShakerWhileShaking(modules, slot)).toBe(true) + expect( + pipetteAdjacentHeaterShakerWhileShaking(modules, slot, OT2_ROBOT_TYPE) + ).toBe(true) }) it('should return true when there is a heater shaker east of labware shaking', () => { slot = '5' modules.heaterShakerId.slot = '6' ;(modules.heaterShakerId.moduleState as any).targetSpeed = 300 - expect(pipetteAdjacentHeaterShakerWhileShaking(modules, slot)).toBe(true) + expect( + pipetteAdjacentHeaterShakerWhileShaking(modules, slot, OT2_ROBOT_TYPE) + ).toBe(true) }) it('should return true when there is a heater shaker west of labware shaking', () => { slot = '5' modules.heaterShakerId.slot = '4' ;(modules.heaterShakerId.moduleState as any).targetSpeed = 300 - expect(pipetteAdjacentHeaterShakerWhileShaking(modules, slot)).toBe(true) + expect( + pipetteAdjacentHeaterShakerWhileShaking(modules, slot, OT2_ROBOT_TYPE) + ).toBe(true) }) }) diff --git a/step-generation/src/__tests__/waitForTemperature.test.ts b/step-generation/src/__tests__/waitForTemperature.test.ts index 32a96df4325..7cdd64333d6 100644 --- a/step-generation/src/__tests__/waitForTemperature.test.ts +++ b/step-generation/src/__tests__/waitForTemperature.test.ts @@ -9,7 +9,11 @@ import { getStateAndContextTempTCModules, robotWithStatusAndTemp, } from '../fixtures' -import { WaitForTemperatureArgs, InvariantContext, RobotState } from '../types' +import type { + WaitForTemperatureArgs, + InvariantContext, + RobotState, +} from '../types' describe('waitForTemperature', () => { const temperatureModuleId = 'temperatureModuleId' diff --git a/step-generation/src/__utils__/testMatchers.ts b/step-generation/src/__utils__/testMatchers.ts index 50325deb1f2..09ae4fe83e0 100644 --- a/step-generation/src/__utils__/testMatchers.ts +++ b/step-generation/src/__utils__/testMatchers.ts @@ -1,5 +1,5 @@ import { expect } from 'vitest' -import { CommandCreatorError } from '../types' +import type { CommandCreatorError } from '../types' // error of type exists somewhere in timeline errors export function expectTimelineError( diff --git a/step-generation/src/commandCreators/atomic/aspirate.ts b/step-generation/src/commandCreators/atomic/aspirate.ts index d7226da3387..6ce9d4c3768 100644 --- a/step-generation/src/commandCreators/atomic/aspirate.ts +++ b/step-generation/src/commandCreators/atomic/aspirate.ts @@ -1,3 +1,4 @@ +import { FLEX_ROBOT_TYPE, OT2_ROBOT_TYPE } from '@opentrons/shared-data' import * as errorCreators from '../../errorCreators' import { getPipetteWithTipMaxVol } from '../../robotStateSelectors' import { @@ -41,6 +42,7 @@ export const aspirate: CommandCreator = ( yOffset, } = args const actionName = 'aspirate' + const labwareState = prevRobotState.labware const errors: CommandCreatorError[] = [] const pipetteSpec = invariantContext.pipetteEntities[pipette]?.spec const isFlexPipette = @@ -75,6 +77,13 @@ export const aspirate: CommandCreator = ( if (COLUMN_4_SLOTS.includes(slotName)) { errors.push(errorCreators.pipettingIntoColumn4({ typeOfStep: actionName })) + } else if (labwareState[slotName] != null) { + const adapterSlot = labwareState[slotName].slot + if (COLUMN_4_SLOTS.includes(adapterSlot)) { + errors.push( + errorCreators.pipettingIntoColumn4({ typeOfStep: actionName }) + ) + } } if ( @@ -128,12 +137,17 @@ export const aspirate: CommandCreator = ( ) { errors.push(errorCreators.heaterShakerIsShaking()) } + if ( + pipetteAdjacentHeaterShakerWhileShaking( + prevRobotState.modules, + slotName, + isFlexPipette ? FLEX_ROBOT_TYPE : OT2_ROBOT_TYPE + ) + ) { + errors.push(errorCreators.heaterShakerNorthSouthEastWestShaking()) + } + if (!isFlexPipette) { - if ( - pipetteAdjacentHeaterShakerWhileShaking(prevRobotState.modules, slotName) - ) { - errors.push(errorCreators.heaterShakerNorthSouthEastWestShaking()) - } if ( getIsHeaterShakerEastWestWithLatchOpen(prevRobotState.modules, slotName) ) { diff --git a/step-generation/src/commandCreators/atomic/blowout.ts b/step-generation/src/commandCreators/atomic/blowout.ts index ff3be46d786..b56c57fc9db 100644 --- a/step-generation/src/commandCreators/atomic/blowout.ts +++ b/step-generation/src/commandCreators/atomic/blowout.ts @@ -15,6 +15,7 @@ export const blowout: CommandCreator = ( const actionName = 'blowout' const errors: CommandCreatorError[] = [] const pipetteData = prevRobotState.pipettes[pipetteId] + const labwareState = prevRobotState.labware const slotName = getLabwareSlot( labwareId, prevRobotState.labware, @@ -56,6 +57,13 @@ export const blowout: CommandCreator = ( if (COLUMN_4_SLOTS.includes(slotName)) { errors.push(errorCreators.pipettingIntoColumn4({ typeOfStep: actionName })) + } else if (labwareState[slotName] != null) { + const adapterSlot = labwareState[slotName].slot + if (COLUMN_4_SLOTS.includes(adapterSlot)) { + errors.push( + errorCreators.pipettingIntoColumn4({ typeOfStep: actionName }) + ) + } } if (errors.length > 0) { diff --git a/step-generation/src/commandCreators/atomic/configureNozzleLayout.ts b/step-generation/src/commandCreators/atomic/configureNozzleLayout.ts index 19a7e35db0a..bff6a097eda 100644 --- a/step-generation/src/commandCreators/atomic/configureNozzleLayout.ts +++ b/step-generation/src/commandCreators/atomic/configureNozzleLayout.ts @@ -1,6 +1,7 @@ -import { COLUMN, NozzleConfigurationStyle } from '@opentrons/shared-data' +import { COLUMN } from '@opentrons/shared-data' import { uuid } from '../../utils' import type { CommandCreator } from '../../types' +import type { NozzleConfigurationStyle } from '@opentrons/shared-data' interface configureNozzleLayoutArgs { pipetteId: string diff --git a/step-generation/src/commandCreators/atomic/dispense.ts b/step-generation/src/commandCreators/atomic/dispense.ts index 2bec571bd6e..08e58e91ecd 100644 --- a/step-generation/src/commandCreators/atomic/dispense.ts +++ b/step-generation/src/commandCreators/atomic/dispense.ts @@ -1,3 +1,4 @@ +import { FLEX_ROBOT_TYPE, OT2_ROBOT_TYPE } from '@opentrons/shared-data' import * as errorCreators from '../../errorCreators' import { modulePipetteCollision, @@ -38,6 +39,7 @@ export const dispense: CommandCreator = ( yOffset, } = args const actionName = 'dispense' + const labwareState = prevRobotState.labware const errors: CommandCreatorError[] = [] const pipetteSpec = invariantContext.pipetteEntities[pipette]?.spec const isFlexPipette = @@ -93,6 +95,13 @@ export const dispense: CommandCreator = ( if (COLUMN_4_SLOTS.includes(slotName)) { errors.push(errorCreators.pipettingIntoColumn4({ typeOfStep: actionName })) + } else if (labwareState[slotName] != null) { + const adapterSlot = labwareState[slotName].slot + if (COLUMN_4_SLOTS.includes(adapterSlot)) { + errors.push( + errorCreators.pipettingIntoColumn4({ typeOfStep: actionName }) + ) + } } if ( @@ -124,13 +133,16 @@ export const dispense: CommandCreator = ( ) { errors.push(errorCreators.heaterShakerIsShaking()) } + if ( + pipetteAdjacentHeaterShakerWhileShaking( + prevRobotState.modules, + slotName, + isFlexPipette ? FLEX_ROBOT_TYPE : OT2_ROBOT_TYPE + ) + ) { + errors.push(errorCreators.heaterShakerNorthSouthEastWestShaking()) + } if (!isFlexPipette) { - if ( - pipetteAdjacentHeaterShakerWhileShaking(prevRobotState.modules, slotName) - ) { - errors.push(errorCreators.heaterShakerNorthSouthEastWestShaking()) - } - if ( getIsHeaterShakerEastWestWithLatchOpen(prevRobotState.modules, slotName) ) { diff --git a/step-generation/src/commandCreators/atomic/moveLabware.ts b/step-generation/src/commandCreators/atomic/moveLabware.ts index 7511cfda2fe..904f95fb569 100644 --- a/step-generation/src/commandCreators/atomic/moveLabware.ts +++ b/step-generation/src/commandCreators/atomic/moveLabware.ts @@ -1,7 +1,5 @@ import { - CreateCommand, HEATERSHAKER_MODULE_TYPE, - LabwareMovementStrategy, THERMOCYCLER_MODULE_TYPE, } from '@opentrons/shared-data' import * as errorCreators from '../../errorCreators' @@ -12,6 +10,10 @@ import { getLabwareHasLiquid, uuid, } from '../../utils' +import type { + CreateCommand, + LabwareMovementStrategy, +} from '@opentrons/shared-data' import type { CommandCreator, CommandCreatorError, @@ -52,6 +54,20 @@ export const moveLabware: CommandCreator = ( aE => aE.name === 'gripper' ) + const newLocationSlot = + newLocation !== 'offDeck' && 'slotName' in newLocation + ? newLocation.slotName + : null + + const multipleObjectsInSameSlotLabware = + Object.values(prevRobotState.labware).find( + labware => labware.slot === newLocationSlot + ) != null + + const multipleObjectsInSameSlotModule = Object.values( + prevRobotState.modules + ).find(module => module.slot === newLocationSlot) + if (!labware || !prevRobotState.labware[labware]) { errors.push( errorCreators.labwareDoesNotExist({ @@ -61,6 +77,11 @@ export const moveLabware: CommandCreator = ( ) } else if (prevRobotState.labware[labware].slot === 'offDeck' && useGripper) { errors.push(errorCreators.labwareOffDeck()) + } else if ( + multipleObjectsInSameSlotLabware || + multipleObjectsInSameSlotModule + ) { + errors.push(errorCreators.multipleEntitiesOnSameSlotName()) } const isAluminumBlock = @@ -82,6 +103,10 @@ export const moveLabware: CommandCreator = ( } const initialLabwareSlot = prevRobotState.labware[labware]?.slot + + if (hasWasteChute && initialLabwareSlot === 'gripperWasteChute') { + errors.push(errorCreators.labwareDiscarded()) + } const initialAdapterSlot = prevRobotState.labware[initialLabwareSlot]?.slot const initialSlot = initialAdapterSlot != null ? initialAdapterSlot : initialLabwareSlot diff --git a/step-generation/src/commandCreators/atomic/moveToWell.ts b/step-generation/src/commandCreators/atomic/moveToWell.ts index e16f1cff417..34c36a1eb01 100644 --- a/step-generation/src/commandCreators/atomic/moveToWell.ts +++ b/step-generation/src/commandCreators/atomic/moveToWell.ts @@ -1,3 +1,4 @@ +import { FLEX_ROBOT_TYPE, OT2_ROBOT_TYPE } from '@opentrons/shared-data' import * as errorCreators from '../../errorCreators' import { modulePipetteCollision, @@ -26,6 +27,7 @@ export const moveToWell: CommandCreator = ( const { pipette, labware, well, offset, minimumZHeight, forceDirect } = args const actionName = 'moveToWell' const errors: CommandCreatorError[] = [] + const labwareState = prevRobotState.labware // TODO(2020-07-30, IL): the below is duplicated or at least similar // across aspirate/dispense/blowout, we can probably DRY it up const pipetteSpec = invariantContext.pipetteEntities[pipette]?.spec @@ -63,6 +65,13 @@ export const moveToWell: CommandCreator = ( errors.push( errorCreators.pipettingIntoColumn4({ typeOfStep: 'move to well' }) ) + } else if (labwareState[slotName] != null) { + const adapterSlot = labwareState[slotName].slot + if (COLUMN_4_SLOTS.includes(adapterSlot)) { + errors.push( + errorCreators.pipettingIntoColumn4({ typeOfStep: actionName }) + ) + } } if ( @@ -105,13 +114,16 @@ export const moveToWell: CommandCreator = ( ) { errors.push(errorCreators.heaterShakerIsShaking()) } + if ( + pipetteAdjacentHeaterShakerWhileShaking( + prevRobotState.modules, + slotName, + isFlexPipette ? FLEX_ROBOT_TYPE : OT2_ROBOT_TYPE + ) + ) { + errors.push(errorCreators.heaterShakerNorthSouthEastWestShaking()) + } if (!isFlexPipette) { - if ( - pipetteAdjacentHeaterShakerWhileShaking(prevRobotState.modules, slotName) - ) { - errors.push(errorCreators.heaterShakerNorthSouthEastWestShaking()) - } - if ( getIsHeaterShakerEastWestWithLatchOpen(prevRobotState.modules, slotName) ) { diff --git a/step-generation/src/commandCreators/atomic/replaceTip.ts b/step-generation/src/commandCreators/atomic/replaceTip.ts index 7aae3b98be1..1ec43834964 100644 --- a/step-generation/src/commandCreators/atomic/replaceTip.ts +++ b/step-generation/src/commandCreators/atomic/replaceTip.ts @@ -1,4 +1,9 @@ -import { ALL, COLUMN, NozzleConfigurationStyle } from '@opentrons/shared-data' +import { + ALL, + COLUMN, + FLEX_ROBOT_TYPE, + OT2_ROBOT_TYPE, +} from '@opentrons/shared-data' import { getNextTiprack } from '../../robotStateSelectors' import * as errorCreators from '../../errorCreators' import { COLUMN_4_SLOTS } from '../../constants' @@ -17,11 +22,15 @@ import { getWasteChuteAddressableAreaNamePip, } from '../../utils' import { dropTip } from './dropTip' +import { configureNozzleLayout } from './configureNozzleLayout' + +import type { NozzleConfigurationStyle } from '@opentrons/shared-data' import type { CommandCreator, CommandCreatorError, CurriedCommandCreator, } from '../../types' + interface PickUpTipArgs { pipette: string tiprack: string @@ -39,6 +48,13 @@ const _pickUpTip: CommandCreator = ( errors.push( errorCreators.pipettingIntoColumn4({ typeOfStep: 'pick up tip' }) ) + } else if (prevRobotState.labware[tiprackSlot] != null) { + const adapterSlot = prevRobotState.labware[tiprackSlot].slot + if (COLUMN_4_SLOTS.includes(adapterSlot)) { + errors.push( + errorCreators.pipettingIntoColumn4({ typeOfStep: 'pick up tip' }) + ) + } } if (errors.length > 0) { @@ -77,7 +93,7 @@ export const replaceTip: CommandCreator = ( prevRobotState ) => { const { pipette, dropTipLocation, nozzles, tipRack } = args - + const stateNozzles = prevRobotState.pipettes[pipette].nozzles if (tipRack == null) { return { errors: [errorCreators.noTipSelected()], @@ -92,6 +108,7 @@ export const replaceTip: CommandCreator = ( ) const pipetteSpec = invariantContext.pipetteEntities[pipette]?.spec const channels = pipetteSpec?.channels + const hasMoreTipracksOnDeck = tipracks?.totalTipracks > tipracks?.filteredTipracks @@ -193,13 +210,18 @@ export const replaceTip: CommandCreator = ( prevRobotState.labware, prevRobotState.modules ) - - if (!isFlexPipette) { - if ( - pipetteAdjacentHeaterShakerWhileShaking(prevRobotState.modules, slotName) - ) { - return { errors: [errorCreators.heaterShakerNorthSouthEastWestShaking()] } + if ( + pipetteAdjacentHeaterShakerWhileShaking( + prevRobotState.modules, + slotName, + isFlexPipette ? FLEX_ROBOT_TYPE : OT2_ROBOT_TYPE + ) + ) { + return { + errors: [errorCreators.heaterShakerNorthSouthEastWestShaking()], } + } + if (!isFlexPipette) { if ( getIsHeaterShakerEastWestWithLatchOpen(prevRobotState.modules, slotName) ) { @@ -222,11 +244,24 @@ export const replaceTip: CommandCreator = ( const addressableAreaNameWasteChute = getWasteChuteAddressableAreaNamePip( channels ) + + const configureNozzleLayoutCommand: CurriedCommandCreator[] = + // only emit the command if previous nozzle state is different + channels === 96 && args.nozzles != null && args.nozzles !== stateNozzles + ? [ + curryCommandCreator(configureNozzleLayout, { + nozzles: args.nozzles, + pipetteId: args.pipette, + }), + ] + : [] + let commandCreators: CurriedCommandCreator[] = [ curryCommandCreator(dropTip, { pipette, dropTipLocation, }), + ...configureNozzleLayoutCommand, curryCommandCreator(_pickUpTip, { pipette, tiprack: nextTiprack.tiprackId, @@ -241,6 +276,7 @@ export const replaceTip: CommandCreator = ( addressableAreaName: addressableAreaNameWasteChute, prevRobotState, }), + ...configureNozzleLayoutCommand, curryCommandCreator(_pickUpTip, { pipette, tiprack: nextTiprack.tiprackId, @@ -256,6 +292,7 @@ export const replaceTip: CommandCreator = ( prevRobotState, invariantContext, }), + ...configureNozzleLayoutCommand, curryCommandCreator(_pickUpTip, { pipette, tiprack: nextTiprack.tiprackId, diff --git a/step-generation/src/commandCreators/compound/consolidate.ts b/step-generation/src/commandCreators/compound/consolidate.ts index f7fc4c85f9d..abe2392c7c1 100644 --- a/step-generation/src/commandCreators/compound/consolidate.ts +++ b/step-generation/src/commandCreators/compound/consolidate.ts @@ -24,7 +24,6 @@ import { import { aspirate, configureForVolume, - configureNozzleLayout, delay, dropTip, moveToWell, @@ -486,20 +485,7 @@ export const consolidate: CommandCreator = ( const dropTipAfterDispenseAirGap = airGapAfterDispenseCommands.length > 0 ? dropTipCommand : [] - const stateNozzles = prevRobotState.pipettes[args.pipette].nozzles - const configureNozzleLayoutCommand: CurriedCommandCreator[] = - // only emit the command if previous nozzle state is different - is96Channel && args.nozzles != null && args.nozzles !== stateNozzles - ? [ - curryCommandCreator(configureNozzleLayout, { - nozzles: args.nozzles, - pipetteId: args.pipette, - }), - ] - : [] - return [ - ...configureNozzleLayoutCommand, ...tipCommands, ...configureForVolumeCommand, ...mixBeforeCommands, diff --git a/step-generation/src/commandCreators/compound/distribute.ts b/step-generation/src/commandCreators/compound/distribute.ts index eae11c1452f..853b43a768f 100644 --- a/step-generation/src/commandCreators/compound/distribute.ts +++ b/step-generation/src/commandCreators/compound/distribute.ts @@ -22,7 +22,6 @@ import { import { aspirate, configureForVolume, - configureNozzleLayout, delay, dispense, dropTip, @@ -460,20 +459,7 @@ export const distribute: CommandCreator = ( ] : [] - const stateNozzles = prevRobotState.pipettes[args.pipette].nozzles - const configureNozzleLayoutCommand: CurriedCommandCreator[] = - // only emit the command if previous nozzle state is different - is96Channel && args.nozzles != null && args.nozzles !== stateNozzles - ? [ - curryCommandCreator(configureNozzleLayout, { - nozzles: args.nozzles, - pipetteId: args.pipette, - }), - ] - : [] - return [ - ...configureNozzleLayoutCommand, ...tipCommands, ...configureForVolumeCommand, ...mixBeforeAspirateCommands, diff --git a/step-generation/src/commandCreators/compound/heaterShaker.ts b/step-generation/src/commandCreators/compound/heaterShaker.ts index c7de7779df4..49d94f52d90 100644 --- a/step-generation/src/commandCreators/compound/heaterShaker.ts +++ b/step-generation/src/commandCreators/compound/heaterShaker.ts @@ -1,10 +1,5 @@ import { curryCommandCreator, reduceCommandCreators } from '../../utils' import * as errorCreators from '../../errorCreators' -import { - CommandCreator, - CurriedCommandCreator, - HeaterShakerArgs, -} from '../../types' import { getModuleState } from '../../robotStateSelectors' import { delay } from '../atomic/delay' import { heaterShakerOpenLatch } from '../atomic/heaterShakerOpenLatch' @@ -14,6 +9,12 @@ import { setTemperature } from '../atomic/setTemperature' import { heaterShakerStopShake } from '../atomic/heaterShakerStopShake' import { heaterShakerSetTargetShakeSpeed } from '../atomic/heaterShakerSetTargetShakeSpeed' +import type { + CommandCreator, + CurriedCommandCreator, + HeaterShakerArgs, +} from '../../types' + export const heaterShaker: CommandCreator = ( args, invariantContext, diff --git a/step-generation/src/commandCreators/compound/mix.ts b/step-generation/src/commandCreators/compound/mix.ts index 734be8c1a39..652036c2870 100644 --- a/step-generation/src/commandCreators/compound/mix.ts +++ b/step-generation/src/commandCreators/compound/mix.ts @@ -11,7 +11,6 @@ import * as errorCreators from '../../errorCreators' import { aspirate, configureForVolume, - configureNozzleLayout, delay, dispense, replaceTip, @@ -178,8 +177,6 @@ export const mix: CommandCreator = ( return { errors: [errorCreators.dropTipLocationDoesNotExist()] } } - console.log(invariantContext.pipetteEntities[pipette]) - if (is96Channel && data.nozzles === COLUMN) { const isAspirateSafePipetteMovement = getIsSafePipetteMovement( prevRobotState, @@ -203,17 +200,6 @@ export const mix: CommandCreator = ( } } } - const stateNozzles = prevRobotState.pipettes[pipette].nozzles - const configureNozzleLayoutCommand: CurriedCommandCreator[] = - // only emit the command if previous nozzle state is different - is96Channel && data.nozzles != null && data.nozzles !== stateNozzles - ? [ - curryCommandCreator(configureNozzleLayout, { - nozzles: data.nozzles, - pipetteId: pipette, - }), - ] - : [] const configureForVolumeCommand: CurriedCommandCreator[] = LOW_VOLUME_PIPETTES.includes( invariantContext.pipetteEntities[pipette].name @@ -283,7 +269,6 @@ export const mix: CommandCreator = ( dispenseYOffset, }) return [ - ...configureNozzleLayoutCommand, ...tipCommands, ...configureForVolumeCommand, ...mixCommands, diff --git a/step-generation/src/commandCreators/compound/transfer.ts b/step-generation/src/commandCreators/compound/transfer.ts index 9c59d301aa4..156a73ba0f3 100644 --- a/step-generation/src/commandCreators/compound/transfer.ts +++ b/step-generation/src/commandCreators/compound/transfer.ts @@ -24,7 +24,6 @@ import { import { aspirate, configureForVolume, - configureNozzleLayout, delay, dispense, dropTip, @@ -274,17 +273,6 @@ export const transfer: CommandCreator = ( changeTipNow = isInitialSubtransfer || destinationWell !== prevDestWell } - const stateNozzles = prevRobotState.pipettes[args.pipette].nozzles - const configureNozzleLayoutCommand: CurriedCommandCreator[] = - // only emit the command if previous nozzle state is different - is96Channel && args.nozzles != null && args.nozzles !== stateNozzles - ? [ - curryCommandCreator(configureNozzleLayout, { - nozzles: args.nozzles, - pipetteId: args.pipette, - }), - ] - : [] const configureForVolumeCommand: CurriedCommandCreator[] = LOW_VOLUME_PIPETTES.includes( invariantContext.pipetteEntities[args.pipette].name @@ -603,7 +591,6 @@ export const transfer: CommandCreator = ( : [] const nextCommands = [ - ...configureNozzleLayoutCommand, ...tipCommands, ...preWetTipCommands, ...configureForVolumeCommand, diff --git a/step-generation/src/errorCreators.ts b/step-generation/src/errorCreators.ts index 581b04d72f9..a541c65e4ea 100644 --- a/step-generation/src/errorCreators.ts +++ b/step-generation/src/errorCreators.ts @@ -218,6 +218,14 @@ export const labwareOffDeck = (): CommandCreatorError => { } } +export const multipleEntitiesOnSameSlotName = (): CommandCreatorError => { + return { + type: 'LABWARE_ON_ANOTHER_ENTITY', + message: + 'Attempted to move labware onto another entity with the same slotName', + } +} + export const dropTipLocationDoesNotExist = (): CommandCreatorError => { return { type: 'DROP_TIP_LOCATION_DOES_NOT_EXIST', @@ -261,3 +269,10 @@ export const noTipSelected = (): CommandCreatorError => { message: 'No tips were selected for this step', } } + +export const labwareDiscarded = (): CommandCreatorError => { + return { + type: 'LABWARE_DISCARDED_IN_WASTE_CHUTE', + message: 'The labware was discarded in waste chute in a previous step.', + } +} diff --git a/step-generation/src/fixtures/commandFixtures.ts b/step-generation/src/fixtures/commandFixtures.ts index 3d1ee394574..86b6e9ea030 100644 --- a/step-generation/src/fixtures/commandFixtures.ts +++ b/step-generation/src/fixtures/commandFixtures.ts @@ -7,12 +7,13 @@ import { DEFAULT_BLOWOUT_WELL, DEST_LABWARE, } from './data' -import { +import { ONE_CHANNEL_WASTE_CHUTE_ADDRESSABLE_AREA } from '@opentrons/shared-data' + +import type { AddressableAreaName, AspDispAirgapParams, BlowoutParams, CreateCommand, - ONE_CHANNEL_WASTE_CHUTE_ADDRESSABLE_AREA, TouchTipParams, } from '@opentrons/shared-data' import type { CommandsAndWarnings, CommandCreatorErrorResponse } from '../types' diff --git a/step-generation/src/fixtures/robotStateFixtures.ts b/step-generation/src/fixtures/robotStateFixtures.ts index a3a7e47062d..bfed688ad72 100644 --- a/step-generation/src/fixtures/robotStateFixtures.ts +++ b/step-generation/src/fixtures/robotStateFixtures.ts @@ -17,12 +17,6 @@ import { fixtureP100096V2Specs, } from '@opentrons/shared-data' -import { - TEMPERATURE_APPROACHING_TARGET, - TEMPERATURE_AT_TARGET, - TEMPERATURE_DEACTIVATED, - FIXED_TRASH_ID, -} from '../constants' import { makeInitialRobotState } from '../utils' import { DEFAULT_PIPETTE, @@ -33,6 +27,12 @@ import { TROUGH_LABWARE, tiprackWellNamesFlat, } from './data' +import { TEMPERATURE_DEACTIVATED, FIXED_TRASH_ID } from '../constants' + +import type { + TEMPERATURE_APPROACHING_TARGET, + TEMPERATURE_AT_TARGET, +} from '../constants' import type { LabwareDefinition2 } from '@opentrons/shared-data' import type { AdditionalEquipmentEntities } from '../types' import type { diff --git a/step-generation/src/getNextRobotStateAndWarnings/dispenseUpdateLiquidState.ts b/step-generation/src/getNextRobotStateAndWarnings/dispenseUpdateLiquidState.ts index cf27f155d05..84d26e219c1 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/dispenseUpdateLiquidState.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/dispenseUpdateLiquidState.ts @@ -1,6 +1,6 @@ -import assert from 'assert' import mapValues from 'lodash/mapValues' import reduce from 'lodash/reduce' +import { COLUMN } from '@opentrons/shared-data' import { splitLiquid, mergeLiquid, @@ -12,7 +12,9 @@ import type { InvariantContext, LocationLiquidState, SourceAndDest, + RobotStateAndWarnings, } from '../types' + type LiquidState = RobotState['liquidState'] export interface DispenseUpdateLiquidStateArgs { invariantContext: InvariantContext @@ -20,6 +22,7 @@ export interface DispenseUpdateLiquidStateArgs { pipetteId: string // volume value is required when useFullVolume is false useFullVolume: boolean + robotStateAndWarnings: RobotStateAndWarnings wellName?: string labwareId?: string volume?: number @@ -30,6 +33,7 @@ export function dispenseUpdateLiquidState( args: DispenseUpdateLiquidStateArgs ): void { const { + robotStateAndWarnings, invariantContext, labwareId, pipetteId, @@ -39,6 +43,8 @@ export function dispenseUpdateLiquidState( wellName, } = args const pipetteSpec = invariantContext.pipetteEntities[pipetteId].spec + const nozzles = robotStateAndWarnings.robotState.pipettes[pipetteId].nozzles + const channels = nozzles === COLUMN ? 8 : pipetteSpec.channels const trashId = Object.values( invariantContext.additionalEquipmentEntities ).find(aE => aE.name === 'wasteChute' || aE.name === 'trashBin')?.id @@ -59,17 +65,17 @@ export function dispenseUpdateLiquidState( const labwareDef = labwareId != null ? invariantContext.labwareEntities[labwareId].def : null - assert( + console.assert( !(useFullVolume && typeof volume === 'number'), 'dispenseUpdateLiquidState takes either `volume` or `useFullVolume`, but got both' ) - assert( + console.assert( typeof volume === 'number' || useFullVolume, 'in dispenseUpdateLiquidState, either volume or useFullVolume are required' ) const { wellsForTips, allWellsShared } = labwareDef != null && wellName != null - ? getWellsForTips(pipetteSpec.channels, labwareDef, wellName) + ? getWellsForTips(channels, labwareDef, wellName) : { wellsForTips: null, allWellsShared: true } const liquidLabware = diff --git a/step-generation/src/getNextRobotStateAndWarnings/forAspirate.ts b/step-generation/src/getNextRobotStateAndWarnings/forAspirate.ts index 62cd0348ded..e8572dd77fc 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/forAspirate.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/forAspirate.ts @@ -1,4 +1,3 @@ -import assert from 'assert' import range from 'lodash/range' import isEmpty from 'lodash/isEmpty' import uniq from 'lodash/uniq' @@ -32,7 +31,7 @@ export function forAspirate( params.wellName ) - assert( + console.assert( // @ts-expect-error (sa, 2021-05-03): this assert is unnecessary uniq(wellsForTips).length === allWellsShared ? 1 : wellsForTips.length, `expected all wells to be shared, or no wells to be shared. Got: ${JSON.stringify( diff --git a/step-generation/src/getNextRobotStateAndWarnings/forBlowout.ts b/step-generation/src/getNextRobotStateAndWarnings/forBlowout.ts index 2bcffe0bc23..13a2470854e 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/forBlowout.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/forBlowout.ts @@ -15,5 +15,6 @@ export function forBlowout( wellName, prevLiquidState: robotState.liquidState, invariantContext, + robotStateAndWarnings, }) } diff --git a/step-generation/src/getNextRobotStateAndWarnings/forConfigureNozzleLayout.ts b/step-generation/src/getNextRobotStateAndWarnings/forConfigureNozzleLayout.ts index dbfcb5f50e7..ec372615ac2 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/forConfigureNozzleLayout.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/forConfigureNozzleLayout.ts @@ -1,4 +1,4 @@ -import { NozzleConfigurationStyle } from '@opentrons/shared-data' +import type { NozzleConfigurationStyle } from '@opentrons/shared-data' import type { InvariantContext, RobotStateAndWarnings } from '../types' interface ConfigureNozzleLayoutParams { diff --git a/step-generation/src/getNextRobotStateAndWarnings/forDispense.ts b/step-generation/src/getNextRobotStateAndWarnings/forDispense.ts index 8b08591ea84..6ffaa3da814 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/forDispense.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/forDispense.ts @@ -16,5 +16,6 @@ export function forDispense( useFullVolume: false, volume, wellName, + robotStateAndWarnings, }) } diff --git a/step-generation/src/getNextRobotStateAndWarnings/forDropTip.ts b/step-generation/src/getNextRobotStateAndWarnings/forDropTip.ts index 7ada991f2e4..d389b50f9ff 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/forDropTip.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/forDropTip.ts @@ -20,6 +20,7 @@ export function forDropTip( labwareId, useFullVolume: true, wellName, + robotStateAndWarnings, }) robotState.tipState.pipettes[pipetteId] = false } diff --git a/step-generation/src/getNextRobotStateAndWarnings/heaterShakerUpdates.ts b/step-generation/src/getNextRobotStateAndWarnings/heaterShakerUpdates.ts index 16f3c3ead23..8d8f5be586d 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/heaterShakerUpdates.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/heaterShakerUpdates.ts @@ -1,11 +1,11 @@ import { HEATERSHAKER_MODULE_TYPE } from '@opentrons/shared-data' import { getModuleState } from '../robotStateSelectors' -import { +import type { TemperatureParams, ShakeSpeedParams, ModuleOnlyParams, } from '@opentrons/shared-data/protocol/types/schemaV6/command/module' -import { +import type { HeaterShakerModuleState, InvariantContext, RobotState, diff --git a/step-generation/src/getNextRobotStateAndWarnings/inPlaceCommandUpdates.ts b/step-generation/src/getNextRobotStateAndWarnings/inPlaceCommandUpdates.ts index e14b1b37344..18cb8ead615 100644 --- a/step-generation/src/getNextRobotStateAndWarnings/inPlaceCommandUpdates.ts +++ b/step-generation/src/getNextRobotStateAndWarnings/inPlaceCommandUpdates.ts @@ -27,6 +27,7 @@ export const forDispenseInPlace = ( prevLiquidState: robotState.liquidState, useFullVolume: false, volume, + robotStateAndWarnings, }) } @@ -42,6 +43,7 @@ export const forBlowOutInPlace = ( pipetteId, prevLiquidState: robotState.liquidState, useFullVolume: true, + robotStateAndWarnings, }) } @@ -59,5 +61,6 @@ export const forDropTipInPlace = ( prevLiquidState: robotState.liquidState, pipetteId, useFullVolume: true, + robotStateAndWarnings, }) } diff --git a/step-generation/src/robotStateSelectors.ts b/step-generation/src/robotStateSelectors.ts index b9dc676275d..68ad44b9009 100644 --- a/step-generation/src/robotStateSelectors.ts +++ b/step-generation/src/robotStateSelectors.ts @@ -1,4 +1,3 @@ -import assert from 'assert' // TODO: Ian 2019-04-18 move orderWells somewhere more general -- shared-data util? import min from 'lodash/min' import { @@ -6,7 +5,6 @@ import { getLabwareDefURI, THERMOCYCLER_MODULE_TYPE, orderWells, - NozzleConfigurationStyle, COLUMN, ALL, } from '@opentrons/shared-data' @@ -17,6 +15,7 @@ import type { RobotState, ThermocyclerModuleState, } from './types' +import type { NozzleConfigurationStyle } from '@opentrons/shared-data' export function sortLabwareBySlot( labwareState: RobotState['labware'] @@ -77,7 +76,10 @@ export function _getNextTip(args: { return allWellsHaveTip ? orderedWells[0] : null } - assert(false, `Pipette ${pipetteId} has no channels/spec, cannot _getNextTip`) + console.assert( + false, + `Pipette ${pipetteId} has no channels/spec, cannot _getNextTip` + ) return null } interface NextTiprackInfo { @@ -89,7 +91,7 @@ interface NextTiprackInfo { } export function getNextTiprack( pipetteId: string, - tipRack: string, + tipRackUri: string, invariantContext: InvariantContext, robotState: RobotState, nozzles?: NozzleConfigurationStyle @@ -110,16 +112,14 @@ export function getNextTiprack( // filter out unmounted or non-compatible tiprack models const sortedTipracksIds = sortLabwareBySlot(robotState.labware).filter( labwareId => { - assert( + console.assert( invariantContext.labwareEntities[labwareId]?.labwareDefURI, `cannot getNextTiprack, no labware entity for "${labwareId}"` ) const isOnDeck = robotState.labware[labwareId].slot != null const labwareIdDefUri = invariantContext.labwareEntities[labwareId].labwareDefURI - const tipRackDefUri = - invariantContext.labwareEntities[tipRack].labwareDefURI - return isOnDeck && labwareIdDefUri === tipRackDefUri + return isOnDeck && labwareIdDefUri === tipRackUri } ) const is96Channel = pipetteEntity.spec.channels === 96 @@ -184,14 +184,13 @@ export function getNextTiprack( export function getPipetteWithTipMaxVol( pipetteId: string, invariantContext: InvariantContext, - tipRack: string + tipRackDefUri: string ): number { // NOTE: this fn assumes each pipette is assigned to exactly one tiprack type, // across the entire timeline const pipetteEntity = invariantContext.pipetteEntities[pipetteId] const pipetteMaxVol = pipetteEntity.spec.liquids.default.maxVolume const tiprackDef = pipetteEntity.tiprackLabwareDef - const tipRackDefUri = invariantContext.labwareEntities[tipRack].labwareDefURI let chosenTipRack = null for (const def of tiprackDef) { if (getLabwareDefURI(def) === tipRackDefUri) { @@ -202,7 +201,7 @@ export function getPipetteWithTipMaxVol( const tiprackTipVol = getTiprackVolume(chosenTipRack ?? tiprackDef[0]) if (!pipetteMaxVol || !tiprackTipVol) { - assert( + console.assert( false, `getPipetteEffectiveMaxVol expected tiprackMaxVol and pipette maxVolume to be > 0, got', ${pipetteMaxVol}, ${tiprackTipVol}` diff --git a/step-generation/src/types.ts b/step-generation/src/types.ts index e63360a3f27..ad1ea16df14 100644 --- a/step-generation/src/types.ts +++ b/step-generation/src/types.ts @@ -1,11 +1,9 @@ -import { +import type { MAGNETIC_MODULE_TYPE, TEMPERATURE_MODULE_TYPE, THERMOCYCLER_MODULE_TYPE, HEATERSHAKER_MODULE_TYPE, MAGNETIC_BLOCK_TYPE, -} from '@opentrons/shared-data' -import type { CreateCommand, LabwareDefinition2, ModuleType, @@ -526,8 +524,10 @@ export type ErrorType = | 'HEATER_SHAKER_NORTH_SOUTH_EAST_WEST_SHAKING' | 'INSUFFICIENT_TIPS' | 'INVALID_SLOT' + | 'LABWARE_DISCARDED_IN_WASTE_CHUTE' | 'LABWARE_DOES_NOT_EXIST' | 'LABWARE_OFF_DECK' + | 'LABWARE_ON_ANOTHER_ENTITY' | 'MISMATCHED_SOURCE_DEST_WELLS' | 'MISSING_96_CHANNEL_TIPRACK_ADAPTER' | 'MISSING_MODULE' diff --git a/step-generation/src/utils/getLabwareSlot.ts b/step-generation/src/utils/getLabwareSlot.ts index b6c3477acc3..e965e537d58 100644 --- a/step-generation/src/utils/getLabwareSlot.ts +++ b/step-generation/src/utils/getLabwareSlot.ts @@ -1,4 +1,4 @@ -import { RobotState } from '../types' +import type { RobotState } from '../types' // this function returns the slot a labware is in (which should be a string 1-12) // the reason this function is needed is because if a labware is on top of a module diff --git a/step-generation/src/utils/heaterShakerCollision.ts b/step-generation/src/utils/heaterShakerCollision.ts index ac329a5dad3..f7768e31d49 100644 --- a/step-generation/src/utils/heaterShakerCollision.ts +++ b/step-generation/src/utils/heaterShakerCollision.ts @@ -1,14 +1,16 @@ import some from 'lodash/some' import { + getAreFlexSlotsAdjacent, getAreSlotsAdjacent, getAreSlotsHorizontallyAdjacent, getAreSlotsVerticallyAdjacent, getIsLabwareAboveHeight, HEATERSHAKER_MODULE_TYPE, MAX_LABWARE_HEIGHT_EAST_WEST_HEATER_SHAKER_MM, + OT2_ROBOT_TYPE, } from '@opentrons/shared-data' -import type { PipetteV2Specs } from '@opentrons/shared-data' +import type { PipetteV2Specs, RobotType } from '@opentrons/shared-data' import type { LabwareEntities, @@ -100,16 +102,20 @@ export const pipetteIntoHeaterShakerLatchOpen = ( export const pipetteAdjacentHeaterShakerWhileShaking = ( hwModules: RobotState['modules'], - slot: DeckSlot -): boolean => - some( + slot: DeckSlot, + robotType: RobotType +): boolean => { + return some( hwModules, hwModule => hwModule.moduleState.type === HEATERSHAKER_MODULE_TYPE && hwModule.moduleState.targetSpeed != null && hwModule.moduleState.targetSpeed > 0 && - getAreSlotsAdjacent(hwModule.slot, slot) + (robotType === OT2_ROBOT_TYPE + ? getAreSlotsAdjacent(hwModule.slot, slot) + : getAreFlexSlotsAdjacent(hwModule.slot, slot)) ) +} export const pipetteIntoHeaterShakerWhileShaking = ( modules: RobotState['modules'], diff --git a/step-generation/src/utils/misc.ts b/step-generation/src/utils/misc.ts index 77d91213d63..cc2b51e6c25 100644 --- a/step-generation/src/utils/misc.ts +++ b/step-generation/src/utils/misc.ts @@ -7,7 +7,6 @@ import { getLabwareDefURI, getWellNamePerMultiTip, WASTE_CHUTE_CUTOUT, - PipetteChannels, ONE_CHANNEL_WASTE_CHUTE_ADDRESSABLE_AREA, EIGHT_CHANNEL_WASTE_CHUTE_ADDRESSABLE_AREA, NINETY_SIX_CHANNEL_WASTE_CHUTE_ADDRESSABLE_AREA, @@ -26,6 +25,7 @@ import type { AddressableAreaName, LabwareDefinition2, BlowoutParams, + PipetteChannels, } from '@opentrons/shared-data' import type { AdditionalEquipmentEntities, diff --git a/step-generation/src/utils/safePipetteMovements.ts b/step-generation/src/utils/safePipetteMovements.ts index ea1d7d0cadc..8fa82fa585f 100644 --- a/step-generation/src/utils/safePipetteMovements.ts +++ b/step-generation/src/utils/safePipetteMovements.ts @@ -301,7 +301,7 @@ export const getIsSafePipetteMovement = ( invariantContext: InvariantContext, pipetteId: string, labwareId: string, - tipRackId: string, + tipRackDefURI: string, wellLocationOffset: Point ): boolean => { const deckDefinition = getDeckDefFromRobotType(FLEX_ROBOT_TYPE) @@ -317,15 +317,16 @@ export const getIsSafePipetteMovement = ( if (labwareEntities[labwareId] == null) { return true } + const tiprackTipLength = Object.values(labwareEntities).find( + labwareEntity => labwareEntity.labwareDefURI === tipRackDefURI + )?.def.parameters.tipLength const stagingAreaSlots = Object.values(additionalEquipmentEntities) .filter(ae => ae.name === 'stagingArea') .map(stagingArea => stagingArea.location as string) const pipetteEntity = pipetteEntities[pipetteId] const pipetteHasTip = tipState.pipettes[pipetteId] - const tipLength = pipetteHasTip - ? labwareEntities[tipRackId].def.parameters.tipLength ?? 0 - : 0 + const tipLength = pipetteHasTip ? tiprackTipLength ?? 0 : 0 const wellLocationPoint = getWellPosition( labwareEntities[labwareId], wellLocationOffset diff --git a/test-data-generation/Makefile b/test-data-generation/Makefile index a4818b00ab1..6033591bdf8 100644 --- a/test-data-generation/Makefile +++ b/test-data-generation/Makefile @@ -27,11 +27,30 @@ wheel: $(python) setup.py $(wheel_opts) bdist_wheel rm -rf build +.PHONY: debug-test +debug-test: + $(pytest) ./tests \ + -vvv \ + --tb=long \ + -s \ + --hypothesis-show-statistics \ + --hypothesis-explain \ + --hypothesis-profile=dev + +.PHONY: exploratory-test +exploratory-test: + $(pytest) ./tests \ + --numprocesses=auto \ + -s \ + --hypothesis-show-statistics \ + --hypothesis-explain \ + --hypothesis-profile=exploratory + .PHONY: test test: - $(pytest) tests \ + $(pytest) ./tests \ + --numprocesses=auto \ -s \ --hypothesis-show-statistics \ - --hypothesis-verbosity=normal \ --hypothesis-explain \ - -vvv \ No newline at end of file + --hypothesis-profile=ci \ No newline at end of file diff --git a/test-data-generation/Pipfile b/test-data-generation/Pipfile index 758bcddacb7..c6047827146 100644 --- a/test-data-generation/Pipfile +++ b/test-data-generation/Pipfile @@ -4,7 +4,8 @@ url = "https://pypi.org/simple" verify_ssl = true [packages] -pytest = "==7.4.3" +pytest = "==7.4.4" +pytest-asyncio = "~=0.23.0" black = "==23.11.0" mypy = "==1.7.1" flake8 = "==7.0.0" @@ -13,8 +14,10 @@ flake8-docstrings = "~=1.7.0" flake8-noqa = "~=1.4.0" hypothesis = "==6.96.1" opentrons-shared-data = {file = "../shared-data/python", editable = true} +opentrons = { editable = true, path = "../api"} test-data-generation = {file = ".", editable = true} - +astor = "0.8.1" +pytest-xdist = "*" [requires] python_version = "3.10" diff --git a/test-data-generation/Pipfile.lock b/test-data-generation/Pipfile.lock index 1b223033d61..15fda691846 100644 --- a/test-data-generation/Pipfile.lock +++ b/test-data-generation/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "1df89f797a19f2c0febc582e7452a52858511cece041f9f612a59d35628226c2" + "sha256": "4874d951f3ae3a91e542cd14c9dca14eeb31d1caa77e39de028d17d6a21840bd" }, "pipfile-spec": 6, "requires": { @@ -16,6 +16,30 @@ ] }, "default": { + "aionotify": { + "hashes": [ + "sha256:385e1becfaac2d9f4326673033d53912ef9565b6febdedbec593ee966df392c6", + "sha256:64b702ad0eb115034533f9f62730a9253b79f5ff0fbf3d100c392124cdf12507" + ], + "version": "==0.2.0" + }, + "anyio": { + "hashes": [ + "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780", + "sha256:91dee416e570e92c64041bd18b900d1d6fa78dff7048769ce5ac5ddad004fbb5" + ], + "markers": "python_version >= '3.7'", + "version": "==3.7.1" + }, + "astor": { + "hashes": [ + "sha256:070a54e890cefb5b3739d19f30f5a5ec840ffc9c50ffa7d23cc9fc1a38ebbfc5", + "sha256:6a6effda93f4e1ce9f618779b2dd1d9d84f1e32812c23a29b3fff6fd7f63fa5e" + ], + "index": "pypi", + "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'", + "version": "==0.8.1" + }, "attrs": { "hashes": [ "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30", @@ -65,6 +89,14 @@ "markers": "python_version < '3.11'", "version": "==1.2.1" }, + "execnet": { + "hashes": [ + "sha256:26dee51f1b80cebd6d0ca8e74dd8745419761d3bef34163928cbebbdc4749fdc", + "sha256:5189b52c6121c24feae288166ab41b32549c7e2348652736540b9e6e7d4e72e3" + ], + "markers": "python_version >= '3.8'", + "version": "==2.1.1" + }, "flake8": { "hashes": [ "sha256:33f96621059e65eec474169085dc92bf26e7b2d47366b70be2f67ab80dc25132", @@ -110,6 +142,14 @@ "markers": "python_version >= '3.8'", "version": "==6.96.1" }, + "idna": { + "hashes": [ + "sha256:028ff3aadf0609c1fd278d8ea3089299412a7a8b9bd005dd08b9f8285bcb5cfc", + "sha256:82fee1fc78add43492d3a1898bfa6d8a904cc97d8427f683ed8e798d07761aa0" + ], + "markers": "python_version >= '3.5'", + "version": "==3.7" + }, "iniconfig": { "hashes": [ "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", @@ -176,10 +216,57 @@ "markers": "python_version >= '3.5'", "version": "==1.0.0" }, + "numpy": { + "hashes": [ + "sha256:03a8c78d01d9781b28a6989f6fa1bb2c4f2d51201cf99d3dd875df6fbd96b23b", + "sha256:08beddf13648eb95f8d867350f6a018a4be2e5ad54c8d8caed89ebca558b2818", + "sha256:1af303d6b2210eb850fcf03064d364652b7120803a0b872f5211f5234b399f20", + "sha256:1dda2e7b4ec9dd512f84935c5f126c8bd8b9f2fc001e9f54af255e8c5f16b0e0", + "sha256:2a02aba9ed12e4ac4eb3ea9421c420301a0c6460d9830d74a9df87efa4912010", + "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a", + "sha256:3373d5d70a5fe74a2c1bb6d2cfd9609ecf686d47a2d7b1d37a8f3b6bf6003aea", + "sha256:47711010ad8555514b434df65f7d7b076bb8261df1ca9bb78f53d3b2db02e95c", + "sha256:4c66707fabe114439db9068ee468c26bbdf909cac0fb58686a42a24de1760c71", + "sha256:50193e430acfc1346175fcbdaa28ffec49947a06918b7b92130744e81e640110", + "sha256:52b8b60467cd7dd1e9ed082188b4e6bb35aa5cdd01777621a1658910745b90be", + "sha256:60dedbb91afcbfdc9bc0b1f3f402804070deed7392c23eb7a7f07fa857868e8a", + "sha256:62b8e4b1e28009ef2846b4c7852046736bab361f7aeadeb6a5b89ebec3c7055a", + "sha256:666dbfb6ec68962c033a450943ded891bed2d54e6755e35e5835d63f4f6931d5", + "sha256:675d61ffbfa78604709862923189bad94014bef562cc35cf61d3a07bba02a7ed", + "sha256:679b0076f67ecc0138fd2ede3a8fd196dddc2ad3254069bcb9faf9a79b1cebcd", + "sha256:7349ab0fa0c429c82442a27a9673fc802ffdb7c7775fad780226cb234965e53c", + "sha256:7ab55401287bfec946ced39700c053796e7cc0e3acbef09993a9ad2adba6ca6e", + "sha256:7e50d0a0cc3189f9cb0aeb3a6a6af18c16f59f004b866cd2be1c14b36134a4a0", + "sha256:95a7476c59002f2f6c590b9b7b998306fba6a5aa646b1e22ddfeaf8f78c3a29c", + "sha256:96ff0b2ad353d8f990b63294c8986f1ec3cb19d749234014f4e7eb0112ceba5a", + "sha256:9fad7dcb1aac3c7f0584a5a8133e3a43eeb2fe127f47e3632d43d677c66c102b", + "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0", + "sha256:a354325ee03388678242a4d7ebcd08b5c727033fcff3b2f536aea978e15ee9e6", + "sha256:a4abb4f9001ad2858e7ac189089c42178fcce737e4169dc61321660f1a96c7d2", + "sha256:ab47dbe5cc8210f55aa58e4805fe224dac469cde56b9f731a4c098b91917159a", + "sha256:afedb719a9dcfc7eaf2287b839d8198e06dcd4cb5d276a3df279231138e83d30", + "sha256:b3ce300f3644fb06443ee2222c2201dd3a89ea6040541412b8fa189341847218", + "sha256:b97fe8060236edf3662adfc2c633f56a08ae30560c56310562cb4f95500022d5", + "sha256:bfe25acf8b437eb2a8b2d49d443800a5f18508cd811fea3181723922a8a82b07", + "sha256:cd25bcecc4974d09257ffcd1f098ee778f7834c3ad767fe5db785be9a4aa9cb2", + "sha256:d209d8969599b27ad20994c8e41936ee0964e6da07478d6c35016bc386b66ad4", + "sha256:d5241e0a80d808d70546c697135da2c613f30e28251ff8307eb72ba696945764", + "sha256:edd8b5fe47dab091176d21bb6de568acdd906d1887a4584a15a9a96a1dca06ef", + "sha256:f870204a840a60da0b12273ef34f7051e98c3b5961b61b0c2c1be6dfd64fbcd3", + "sha256:ffa75af20b44f8dba823498024771d5ac50620e6915abac414251bd971b4529f" + ], + "markers": "python_version >= '3.9'", + "version": "==1.26.4" + }, + "opentrons": { + "editable": true, + "markers": "python_version >= '3.10'", + "path": "../api" + }, "opentrons-shared-data": { "editable": true, "file": "../shared-data/python", - "markers": "python_version >= '3.8'" + "markers": "python_version >= '3.10'" }, "packaging": { "hashes": [ @@ -199,19 +286,19 @@ }, "platformdirs": { "hashes": [ - "sha256:0614df2a2f37e1a662acbd8e2b25b92ccf8632929bc6d43467e17fe89c75e068", - "sha256:ef0cc731df711022c174543cb70a9b5bd22e5a9337c8624ef2c2ceb8ddad8768" + "sha256:031cd18d4ec63ec53e82dceaac0417d218a6863f7745dfcc9efe7793b7039bdf", + "sha256:17d5a1161b3fd67b390023cb2d3b026bbd40abde6fdb052dfbd3a29c3ba22ee1" ], "markers": "python_version >= '3.8'", - "version": "==4.2.0" + "version": "==4.2.1" }, "pluggy": { "hashes": [ - "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981", - "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be" + "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", + "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669" ], "markers": "python_version >= '3.8'", - "version": "==1.4.0" + "version": "==1.5.0" }, "pycodestyle": { "hashes": [ @@ -317,14 +404,47 @@ "markers": "python_version >= '3.8'", "version": "==0.20.0" }, + "pyserial": { + "hashes": [ + "sha256:3c77e014170dfffbd816e6ffc205e9842efb10be9f58ec16d3e8675b4925cddb", + "sha256:c4451db6ba391ca6ca299fb3ec7bae67a5c55dde170964c7a14ceefec02f2cf0" + ], + "version": "==3.5" + }, "pytest": { "hashes": [ - "sha256:0d009c083ea859a71b76adf7c1d502e4bc170b80a8ef002da5806527b9591fac", - "sha256:d989d136982de4e3b29dabcc838ad581c64e8ed52c11fbe86ddebd9da0818cd5" + "sha256:2cf0005922c6ace4a3e2ec8b4080eb0d9753fdc93107415332f50ce9e7994280", + "sha256:b090cdf5ed60bf4c45261be03239c2c1c22df034fbffe691abe93cd80cea01d8" + ], + "index": "pypi", + "markers": "python_version >= '3.7'", + "version": "==7.4.4" + }, + "pytest-asyncio": { + "hashes": [ + "sha256:68516fdd1018ac57b846c9846b954f0393b26f094764a28c955eabb0536a4e8a", + "sha256:ffe523a89c1c222598c76856e76852b787504ddb72dd5d9b6617ffa8aa2cde5f" ], "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==0.23.6" + }, + "pytest-xdist": { + "hashes": [ + "sha256:9ed4adfb68a016610848639bb7e02c9352d5d9f03d04809919e2dafc3be4cca7", + "sha256:ead156a4db231eec769737f57668ef58a2084a34b2e55c4a8fa20d861107300d" + ], + "index": "pypi", + "markers": "python_version >= '3.8'", + "version": "==3.6.1" + }, + "sniffio": { + "hashes": [ + "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2", + "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc" + ], "markers": "python_version >= '3.7'", - "version": "==7.4.3" + "version": "==1.3.1" }, "snowballstemmer": { "hashes": [ @@ -357,7 +477,7 @@ "sha256:83f085bd5ca59c80295fc2a82ab5dac679cbe02b9f33f7d83af68e241bea51b0", "sha256:c1f94d72897edaf4ce775bb7558d5b79d8126906a14ea5ed1635921406c0387a" ], - "markers": "python_version < '3.11'", + "markers": "python_version >= '3.8'", "version": "==4.11.0" } }, diff --git a/test-data-generation/src/test_data_generation/constants.py b/test-data-generation/src/test_data_generation/constants.py new file mode 100644 index 00000000000..21faac4bdab --- /dev/null +++ b/test-data-generation/src/test_data_generation/constants.py @@ -0,0 +1,108 @@ +"""Constants and datashapes used in the protocol generation.""" + +import enum +import typing +import dataclasses + +ECHO_ANALYSIS_RESULTS_ENV_VAR_NAME: typing.Final[str] = "ECHO_ANALYSIS_RESULTS" + +ColumnName = typing.Literal["1", "2", "3"] +RowName = typing.Literal["a", "b", "c", "d"] +DeckConfigurationSlotName = typing.Literal[ + "a1", + "a2", + "a3", + "b1", + "b2", + "b3", + "c1", + "c2", + "c3", + "d1", + "d2", + "d3", +] +AllSlotName = typing.Literal[ + "a1", + "a2", + "a3", + "a4", + "b1", + "b2", + "b3", + "b4", + "c1", + "c2", + "c3", + "c4", + "d1", + "d2", + "d3", + "d4", +] + +ProtocolContextMethod = typing.Literal[ + "load_module", + "load_labware", + "load_instrument", + "load_waste_chute", + "load_trash_bin", +] + +PROTOCOL_CONTEXT_VAR_NAME: typing.Final[str] = "protocol_context" + + +class PipetteNames(str, enum.Enum): + """Names of the pipettes used in the protocol.""" + + SINGLE_CHANNEL = "flex_1channel_1000" + MULTI_CHANNEL = "flex_8channel_1000" + NINETY_SIX_CHANNEL = "flex_96channel_1000" + + +@dataclasses.dataclass +class ModuleInfo: + """Information about a module.""" + + load_name: str + name_creation_function: typing.Callable[[str], str] + + def variable_name(self, location: str) -> str: + """Return the variable name for the module.""" + return self.name_creation_function(location) + + +class Modules: + """Module names used in the protocol.""" + + MAGNETIC_BLOCK_MODULE = ModuleInfo( + load_name="magneticBlockV1", + name_creation_function=lambda x: f"mag_block_module_{x}", + ) + THERMOCYCLER_MODULE = ModuleInfo( + load_name="thermocyclerModuleV2", + name_creation_function=lambda x: "thermocycler_module", + ) + TEMPERATURE_MODULE = ModuleInfo( + load_name="temperatureModuleV2", + name_creation_function=lambda x: f"temperature_module_{x}", + ) + HEATER_SHAKER_MODULE = ModuleInfo( + load_name="heaterShakerModuleV1", + name_creation_function=lambda x: f"heater_shaker_module_{x}", + ) + + @classmethod + def modules(cls) -> typing.List[ModuleInfo]: + """Get all the module info.""" + return [ + cls.MAGNETIC_BLOCK_MODULE, + cls.THERMOCYCLER_MODULE, + cls.TEMPERATURE_MODULE, + cls.HEATER_SHAKER_MODULE, + ] + + @classmethod + def get_module_info(cls, module_name: str) -> ModuleInfo: + """Get the ModuleInfo for the given module name.""" + return getattr(cls, module_name.upper()) # type: ignore diff --git a/test-data-generation/src/test_data_generation/deck_configuration/datashapes.py b/test-data-generation/src/test_data_generation/datashapes.py similarity index 77% rename from test-data-generation/src/test_data_generation/deck_configuration/datashapes.py rename to test-data-generation/src/test_data_generation/datashapes.py index 94cf907e308..ac1cd15bb65 100644 --- a/test-data-generation/src/test_data_generation/deck_configuration/datashapes.py +++ b/test-data-generation/src/test_data_generation/datashapes.py @@ -1,17 +1,18 @@ """Data shapes for the deck configuration of a Flex.""" -import enum import dataclasses +import enum import typing -ColumnName = typing.Literal["1", "2", "3"] -RowName = typing.Literal["a", "b", "c", "d"] -SlotName = typing.Literal[ - "a1", "a2", "a3", "b1", "b2", "b3", "c1", "c2", "c3", "d1", "d2", "d3" -] +from test_data_generation.constants import ( + ColumnName, + DeckConfigurationSlotName, + PipetteNames, + RowName, +) -class PossibleSlotContents(enum.Enum): +class DeckConfigurationFixtures(enum.Enum): """Possible contents of a slot on a Flex.""" # Implicitly defined fixtures @@ -35,7 +36,7 @@ class PossibleSlotContents(enum.Enum): @classmethod def longest_string(cls) -> int: """Return the longest string representation of the slot content.""" - length = max([len(e.name) for e in PossibleSlotContents]) + length = max([len(e.name) for e in DeckConfigurationFixtures]) return length if length % 2 == 0 else length + 1 def __str__(self) -> str: @@ -43,59 +44,59 @@ def __str__(self) -> str: return f"{self.name.replace('_', ' ')}" @classmethod - def all(cls) -> typing.List["PossibleSlotContents"]: + def all(cls) -> typing.List["DeckConfigurationFixtures"]: """Return all possible slot contents.""" return list(cls) - @property - def modules(self) -> typing.List["PossibleSlotContents"]: + @classmethod + def modules(cls) -> typing.List["DeckConfigurationFixtures"]: """Return the modules.""" return [ - PossibleSlotContents.THERMOCYCLER_MODULE, - PossibleSlotContents.MAGNETIC_BLOCK_MODULE, - PossibleSlotContents.TEMPERATURE_MODULE, - PossibleSlotContents.HEATER_SHAKER_MODULE, + cls.THERMOCYCLER_MODULE, + cls.MAGNETIC_BLOCK_MODULE, + cls.TEMPERATURE_MODULE, + cls.HEATER_SHAKER_MODULE, ] - @property - def staging_areas(self) -> typing.List["PossibleSlotContents"]: + @classmethod + def staging_areas(cls) -> typing.List["DeckConfigurationFixtures"]: """Return the staging areas.""" return [ - PossibleSlotContents.STAGING_AREA, - PossibleSlotContents.STAGING_AREA_WITH_WASTE_CHUTE, - PossibleSlotContents.STAGING_AREA_WITH_WASTE_CHUTE_NO_COVER, - PossibleSlotContents.STAGING_AREA_WITH_MAGNETIC_BLOCK, + cls.STAGING_AREA, + cls.STAGING_AREA_WITH_WASTE_CHUTE, + cls.STAGING_AREA_WITH_WASTE_CHUTE_NO_COVER, + cls.STAGING_AREA_WITH_MAGNETIC_BLOCK, ] - @property - def waste_chutes(self) -> typing.List["PossibleSlotContents"]: + @classmethod + def waste_chutes(cls) -> typing.List["DeckConfigurationFixtures"]: """Return the waste chutes.""" return [ - PossibleSlotContents.WASTE_CHUTE, - PossibleSlotContents.WASTE_CHUTE_NO_COVER, - PossibleSlotContents.STAGING_AREA_WITH_WASTE_CHUTE, - PossibleSlotContents.STAGING_AREA_WITH_WASTE_CHUTE_NO_COVER, + cls.WASTE_CHUTE, + cls.WASTE_CHUTE_NO_COVER, + cls.STAGING_AREA_WITH_WASTE_CHUTE, + cls.STAGING_AREA_WITH_WASTE_CHUTE_NO_COVER, ] - def is_one_of(self, contents: typing.List["PossibleSlotContents"]) -> bool: + def is_one_of(self, contents: typing.List["DeckConfigurationFixtures"]) -> bool: """Return True if the slot contains one of the contents.""" - return any([self is content for content in contents]) + return any(self is content for content in contents) def is_a_module(self) -> bool: """Return True if the slot contains a module.""" - return self.is_one_of(self.modules) + return self.is_one_of(self.modules()) def is_module_or_trash_bin(self) -> bool: """Return True if the slot contains a module or trash bin.""" - return self.is_one_of(self.modules + [PossibleSlotContents.TRASH_BIN]) + return self.is_one_of(self.modules() + [DeckConfigurationFixtures.TRASH_BIN]) def is_a_staging_area(self) -> bool: """Return True if the slot contains a staging area.""" - return self.is_one_of(self.staging_areas) + return self.is_one_of(self.staging_areas()) def is_a_waste_chute(self) -> bool: """Return True if the slot contains a waste chute.""" - return self.is_one_of(self.waste_chutes) + return self.is_one_of(self.waste_chutes()) @dataclasses.dataclass @@ -104,21 +105,21 @@ class Slot: row: RowName col: ColumnName - contents: PossibleSlotContents + contents: "DeckConfigurationFixtures" def __str__(self) -> str: """Return a string representation of the slot.""" return f"{(self.row + self.col).center(self.contents.longest_string())}{self.contents}" @property - def __label(self) -> SlotName: + def label(self) -> DeckConfigurationSlotName: """Return the slot label.""" - return typing.cast(SlotName, f"{self.row}{self.col}") + return typing.cast(DeckConfigurationSlotName, f"{self.row}{self.col}") @property def slot_label_string(self) -> str: """Return the slot label.""" - return f"{self.__label.center(self.contents.longest_string())}" + return f"{self.label.center(self.contents.longest_string())}" @property def contents_string(self) -> str: @@ -182,7 +183,7 @@ def slot_by_row(self, name: RowName) -> Slot: """Return the slot by name.""" return getattr(self, f"{name}") # type: ignore - def number_of(self, contents: PossibleSlotContents) -> int: + def number_of(self, contents: DeckConfigurationFixtures) -> int: """Return the number of slots with the contents.""" return len([True for slot in self.slots if slot.contents is contents]) @@ -213,8 +214,8 @@ class DeckConfiguration: def __str__(self) -> str: """Return a string representation of the deck.""" string_list = [] - dashed_line = "-" * (PossibleSlotContents.longest_string() * 3) - equal_line = "=" * (PossibleSlotContents.longest_string() * 3) + dashed_line = "-" * (DeckConfigurationFixtures.longest_string() * 3) + equal_line = "=" * (DeckConfigurationFixtures.longest_string() * 3) for row in self.rows: string_list.append( " | ".join([slot.slot_label_string for slot in row.slots]) @@ -226,6 +227,10 @@ def __str__(self) -> str: return f"\n{joined_string}\n\n{equal_line}" + def comment_string(self) -> str: + """Return a string representation of the deck.""" + return str(self).replace("\n", "\n# ") + "\n" + def __hash__(self) -> int: """Return the hash of the deck.""" return hash(tuple(slot.contents.value for slot in self.slots)) @@ -278,7 +283,7 @@ def slot_below(self, slot: Slot) -> typing.Optional[Slot]: return None return self.rows[row_index + 1].slot_by_col_number(slot.col) - def number_of(self, contents: PossibleSlotContents) -> int: + def number_of(self, contents: DeckConfigurationFixtures) -> int: """Return the number of slots with the contents.""" return len([True for slot in self.slots if slot.contents is contents]) @@ -297,3 +302,11 @@ def column_by_number(self, number: ColumnName) -> Column: c=self.c.slot_by_col_number(number), d=self.d.slot_by_col_number(number), ) + + +@dataclasses.dataclass +class PipetteConfiguration: + """Configuration for a pipette.""" + + left: PipetteNames | None + right: PipetteNames | None diff --git a/test-data-generation/src/test_data_generation/deck_configuration/strategy/deck_configuration_strategies.py b/test-data-generation/src/test_data_generation/deck_configuration/strategy/deck_configuration_strategies.py new file mode 100644 index 00000000000..87d0969d9ae --- /dev/null +++ b/test-data-generation/src/test_data_generation/deck_configuration/strategy/deck_configuration_strategies.py @@ -0,0 +1,85 @@ +"""Test data generation for deck configuration tests.""" + +import typing + +from hypothesis import assume +from hypothesis import strategies as st + +from test_data_generation.datashapes import ( + DeckConfiguration, +) +from test_data_generation.datashapes import ( + DeckConfigurationFixtures as DCF, +) +from test_data_generation.deck_configuration.strategy.helper_strategies import ( + a_deck_by_columns, +) + +DeckConfigurationStrategy = typing.Callable[..., st.SearchStrategy[DeckConfiguration]] + + +@st.composite +def a_deck_configuration_with_invalid_fixture_in_col_2( + draw: st.DrawFn, +) -> DeckConfiguration: + """Generate a deck with an invalid fixture in column 2.""" + POSSIBLE_FIXTURES = [ + DCF.LABWARE_SLOT, + DCF.TEMPERATURE_MODULE, + DCF.HEATER_SHAKER_MODULE, + DCF.TRASH_BIN, + DCF.MAGNETIC_BLOCK_MODULE, + ] + INVALID_FIXTURES = [ + DCF.HEATER_SHAKER_MODULE, + DCF.TRASH_BIN, + DCF.TEMPERATURE_MODULE, + ] + + deck = draw(a_deck_by_columns(col_2_contents=POSSIBLE_FIXTURES)) + + num_invalid_fixtures = len( + [ + True + for slot in deck.column_by_number("2").slots + if slot.contents.is_one_of(INVALID_FIXTURES) + ] + ) + assume(num_invalid_fixtures > 0) + + return deck + + +@st.composite +def a_deck_configuration_with_staging_areas(draw: st.DrawFn) -> DeckConfiguration: + """Generate a deck with staging areas.""" + deck = draw(a_deck_by_columns()) + assume(deck.number_of(DCF.STAGING_AREA) > 0) + return deck + + +@st.composite +def a_deck_with_a_thermocycler(draw: st.DrawFn) -> DeckConfiguration: + """Generate a deck with a thermocycler.""" + deck = draw(a_deck_by_columns(thermocycler_on_deck=True)) + + # Thermoycler spans a1 and b1 so 2 slots + assume(deck.number_of(DCF.THERMOCYCLER_MODULE) == 2) + return deck + + +@st.composite +def a_deck_with_a_waste_chute(draw: st.DrawFn) -> DeckConfiguration: + """Generate a deck with a waste chute.""" + deck = draw(a_deck_by_columns()) + num_waste_chutes = sum([deck.number_of(content) for content in DCF.waste_chutes()]) + assume(num_waste_chutes == 1) + return deck + + +DECK_CONFIGURATION_STRATEGIES: typing.Dict[str, DeckConfigurationStrategy] = { + f.__name__: f + for f in [ + a_deck_configuration_with_invalid_fixture_in_col_2, + ] +} diff --git a/test-data-generation/src/test_data_generation/deck_configuration/strategy/final_strategies.py b/test-data-generation/src/test_data_generation/deck_configuration/strategy/final_strategies.py deleted file mode 100644 index 9bf70180f96..00000000000 --- a/test-data-generation/src/test_data_generation/deck_configuration/strategy/final_strategies.py +++ /dev/null @@ -1,81 +0,0 @@ -"""Test data generation for deck configuration tests.""" -from hypothesis import assume, strategies as st -from test_data_generation.deck_configuration.datashapes import ( - Column, - DeckConfiguration, - Slot, - PossibleSlotContents as PSC, -) - -from test_data_generation.deck_configuration.strategy.helper_strategies import a_column - - -def _above_or_below_is_module_or_trash(col: Column, slot: Slot) -> bool: - """Return True if the deck has a module above or below the specified slot.""" - above = col.slot_above(slot) - below = col.slot_below(slot) - - return (above is not None and above.contents.is_module_or_trash_bin()) or ( - below is not None and below.contents.is_module_or_trash_bin() - ) - - -@st.composite -def a_deck_configuration_with_a_module_or_trash_slot_above_or_below_a_heater_shaker( - draw: st.DrawFn, -) -> DeckConfiguration: - """Generate a deck with a module or trash bin fixture above or below a heater shaker.""" - deck = draw( - st.builds( - DeckConfiguration.from_cols, - col1=a_column("1"), - col2=a_column( - "2", content_options=[PSC.LABWARE_SLOT, PSC.MAGNETIC_BLOCK_MODULE] - ), - col3=a_column("3"), - ) - ) - column = deck.column_by_number(draw(st.sampled_from(["1", "3"]))) - - assume(column.number_of(PSC.HEATER_SHAKER_MODULE) in [1, 2]) - for slot in column.slots: - if slot.contents is PSC.HEATER_SHAKER_MODULE: - assume(_above_or_below_is_module_or_trash(column, slot)) - deck.override_with_column(column) - - return deck - - -@st.composite -def a_deck_configuration_with_invalid_fixture_in_col_2( - draw: st.DrawFn, -) -> DeckConfiguration: - """Generate a deck with an invalid fixture in column 2.""" - POSSIBLE_FIXTURES = [ - PSC.LABWARE_SLOT, - PSC.TEMPERATURE_MODULE, - PSC.HEATER_SHAKER_MODULE, - PSC.TRASH_BIN, - PSC.MAGNETIC_BLOCK_MODULE, - ] - INVALID_FIXTURES = [ - PSC.HEATER_SHAKER_MODULE, - PSC.TRASH_BIN, - PSC.TEMPERATURE_MODULE, - ] - column2 = draw(a_column("2", content_options=POSSIBLE_FIXTURES)) - num_invalid_fixtures = len( - [True for slot in column2.slots if slot.contents.is_one_of(INVALID_FIXTURES)] - ) - assume(num_invalid_fixtures > 0) - - deck = draw( - st.builds( - DeckConfiguration.from_cols, - col1=a_column("1"), - col2=st.just(column2), - col3=a_column("3"), - ) - ) - - return deck diff --git a/test-data-generation/src/test_data_generation/deck_configuration/strategy/helper_strategies.py b/test-data-generation/src/test_data_generation/deck_configuration/strategy/helper_strategies.py index 17950f63a39..a2ad4d048d6 100644 --- a/test-data-generation/src/test_data_generation/deck_configuration/strategy/helper_strategies.py +++ b/test-data-generation/src/test_data_generation/deck_configuration/strategy/helper_strategies.py @@ -1,20 +1,28 @@ """Test data generation for deck configuration tests.""" -from typing import List + +import typing + from hypothesis import strategies as st -from test_data_generation.deck_configuration.datashapes import ( + +from test_data_generation.constants import ColumnName, RowName +from test_data_generation.datashapes import ( Column, + DeckConfiguration, Row, Slot, - PossibleSlotContents as PSC, +) +from test_data_generation.datashapes import ( + DeckConfigurationFixtures as DCF, ) @st.composite def a_slot( draw: st.DrawFn, - row: str, - col: str, - content_options: List[PSC] = PSC.all(), + row: RowName, + col: ColumnName, + thermocycler_on_deck: bool, + content_options: typing.List[DCF] = DCF.all(), ) -> Slot: """Generate a slot with a random content. @@ -22,14 +30,8 @@ def a_slot( filtering logic. """ no_thermocycler = [ - content for content in content_options if content is not PSC.THERMOCYCLER_MODULE + content for content in content_options if content is not DCF.THERMOCYCLER_MODULE ] - no_waste_chute_or_staging_area = [ - content - for content in content_options - if not content.is_a_waste_chute() and not content.is_a_staging_area() - ] - no_waste_chute_or_thermocycler = [ content for content in no_thermocycler if not content.is_a_waste_chute() ] @@ -39,17 +41,28 @@ def a_slot( if not content.is_a_staging_area() ] - if col == "1" and (row == "A" or row == "B"): + # If the deck is configured a with a thermocycler, we must ensure that no other fixture + # occupies slot a1 or b1. + # This is for 2 reasons: + # 1) The way Deck Configuration works under the hood, is that the thermocycler fixture spans the 2 slots. + # 2) When go to generate a protocol, we don't want to have to be doing a ton of checks to make sure that + # the thermocycler exists, and that there is no other fixture in the same slot. The logic is simpler just to filter + # out loading a thermocycler twice. + + in_one_of_the_slots_the_thermocycler_occupies: bool = col == "1" and ( + row == "a" or row == "b" + ) + if thermocycler_on_deck and in_one_of_the_slots_the_thermocycler_occupies: return draw( st.builds( Slot, row=st.just(row), col=st.just(col), - contents=st.sampled_from(no_waste_chute_or_staging_area), + contents=st.just(DCF.THERMOCYCLER_MODULE), ) ) elif col == "3": - if row == "D": + if row == "d": return draw( st.builds( Slot, @@ -83,17 +96,33 @@ def a_slot( @st.composite def a_row( draw: st.DrawFn, - row: str, - content_options: List[PSC] = PSC.all(), + row: RowName, + thermocycler_on_deck: bool, + content_options: typing.List[DCF] = DCF.all(), ) -> Row: """Generate a row with random slots.""" return draw( st.builds( Row, row=st.just(row), - col1=a_slot(row=row, col="1", content_options=content_options), - col2=a_slot(row=row, col="2", content_options=content_options), - col3=a_slot(row=row, col="3", content_options=content_options), + col1=a_slot( + row=row, + col="1", + thermocycler_on_deck=thermocycler_on_deck, + content_options=content_options, + ), + col2=a_slot( + row=row, + col="2", + thermocycler_on_deck=thermocycler_on_deck, + content_options=content_options, + ), + col3=a_slot( + row=row, + col="3", + thermocycler_on_deck=thermocycler_on_deck, + content_options=content_options, + ), ) ) @@ -101,17 +130,74 @@ def a_row( @st.composite def a_column( draw: st.DrawFn, - col: str, - content_options: List[PSC] = PSC.all(), + col: ColumnName, + thermocycler_on_deck: bool, + content_options: typing.List[DCF] = DCF.all(), ) -> Column: """Generate a column with random slots.""" return draw( st.builds( Column, col=st.just(col), - a=a_slot(row="a", col=col, content_options=content_options), - b=a_slot(row="b", col=col, content_options=content_options), - c=a_slot(row="c", col=col, content_options=content_options), - d=a_slot(row="d", col=col, content_options=content_options), + a=a_slot( + row="a", + col=col, + thermocycler_on_deck=thermocycler_on_deck, + content_options=content_options, + ), + b=a_slot( + row="b", + col=col, + thermocycler_on_deck=thermocycler_on_deck, + content_options=content_options, + ), + c=a_slot( + row="c", + col=col, + thermocycler_on_deck=thermocycler_on_deck, + content_options=content_options, + ), + d=a_slot( + row="d", + col=col, + thermocycler_on_deck=thermocycler_on_deck, + content_options=content_options, + ), + ) + ) + + +@st.composite +def a_deck_by_columns( + draw: st.DrawFn, + thermocycler_on_deck: bool | None = None, + col_1_contents: typing.List[DCF] = DCF.all(), + col_2_contents: typing.List[DCF] = DCF.all(), + col_3_contents: typing.List[DCF] = DCF.all(), +) -> DeckConfiguration: + """Generate a deck by columns.""" + # Let the thermocycler existence be another generated value if + # not specified. + if thermocycler_on_deck is None: + thermocycler_on_deck = draw(st.booleans()) + + return draw( + st.builds( + DeckConfiguration.from_cols, + a_column( + "1", + thermocycler_on_deck=thermocycler_on_deck, + content_options=col_1_contents, + ), + a_column( + "2", + thermocycler_on_deck=thermocycler_on_deck, + content_options=col_2_contents, + ), + a_column( + "3", + thermocycler_on_deck=thermocycler_on_deck, + content_options=col_3_contents, + ), ) ) diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/__init__.py b/test-data-generation/src/test_data_generation/python_protocol_generation/__init__.py new file mode 100644 index 00000000000..45f2dcce037 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/__init__.py @@ -0,0 +1 @@ +"""Test data generation.""" diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/ast_helpers.py b/test-data-generation/src/test_data_generation/python_protocol_generation/ast_helpers.py new file mode 100644 index 00000000000..510406e33f9 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/ast_helpers.py @@ -0,0 +1,237 @@ +"""Abstract layer for generating AST nodes. + +Provide primitive data structures that can be used to generate AST nodes. +""" + +import ast +import typing +from dataclasses import dataclass + +from test_data_generation.constants import ( + PROTOCOL_CONTEXT_VAR_NAME, + ModuleInfo, + ProtocolContextMethod, + AllSlotName, +) + +ExplicitLoadStorage = typing.Dict[AllSlotName, "AssignStatement"] + + +class CanGenerateAST(typing.Protocol): + """Protocol for objects that can generate an AST node.""" + + def generate_ast(self) -> ast.AST: + """Generate an AST node.""" + ... + + +class CanGenerateASTStatement(CanGenerateAST, typing.Protocol): + """Protocol for objects that can generate an AST statement.""" + + def generate_ast(self) -> ast.stmt: + """Generate an AST statement.""" + ... + + +@dataclass +class ImportStatement: + """Class to represent from some.module import a_thing statement.""" + + module: str + names: typing.List[str] + + def generate_ast(self) -> ast.ImportFrom: + """Generate an AST node for the import statement.""" + return ast.ImportFrom( + module=self.module, + names=[ast.alias(name=name, asname=None) for name in self.names], + level=0, + ) + + +@dataclass +class BaseCall: + """Class to represent a method or function call.""" + + call_on: str + what_to_call: ProtocolContextMethod | str + + def generate_ast(self) -> ast.AST: + """Generate an AST node for the call.""" + raise NotImplementedError + + +@dataclass +class CallFunction(BaseCall): + """Class to represent a method or function call.""" + + args: typing.List[str] + + def generate_ast(self) -> ast.Call: + """Generate an AST node for the call.""" + return ast.Call( + func=ast.Attribute( + value=ast.Name(id=self.call_on, ctx=ast.Load()), + attr=self.what_to_call, + ctx=ast.Load(), + ), + args=[ast.Constant(str_arg) for str_arg in self.args], + keywords=[], + ) + + @classmethod + def load_labware(cls, labware_name: str, labware_location: str) -> "CallFunction": + """Create a CallFunction for loading labware.""" + return cls( + call_on=PROTOCOL_CONTEXT_VAR_NAME, + what_to_call="load_labware", + args=[labware_name, labware_location], + ) + + @classmethod + def load_waste_chute(cls) -> "CallFunction": + """Create a CallFunction for loading a waste chute.""" + return cls( + call_on=PROTOCOL_CONTEXT_VAR_NAME, + what_to_call="load_waste_chute", + args=[], + ) + + @classmethod + def load_trash_bin(cls, location: str) -> "CallFunction": + """Create a CallFunction for loading a trash bin.""" + return cls( + call_on=PROTOCOL_CONTEXT_VAR_NAME, + what_to_call="load_trash_bin", + args=[location], + ) + + @classmethod + def load_module( + cls, module_info: ModuleInfo, module_location: str | None + ) -> "CallFunction": + """Create a CallFunction for loading a module.""" + module_args = [module_info.load_name] + if module_location: + module_args.append(module_location) + + return cls( + call_on=PROTOCOL_CONTEXT_VAR_NAME, + what_to_call="load_module", + args=module_args, + ) + + @classmethod + def load_instrument( + cls, instrument_name: str, mount: typing.Literal["left", "right"] + ) -> "CallFunction": + """Create a CallFunction for loading an instrument.""" + return cls( + call_on=PROTOCOL_CONTEXT_VAR_NAME, + what_to_call="load_instrument", + args=[instrument_name, mount], + ) + + +@dataclass +class CallAttribute(BaseCall): + """Class to represent a method or function call.""" + + def generate_ast(self) -> ast.Expr: + """Generate an AST node for the call.""" + return ast.Expr( + value=ast.Attribute( + value=ast.Name(id=self.call_on, ctx=ast.Load()), + attr=self.what_to_call, + ctx=ast.Load(), + ) + ) + + +@dataclass +class AssignStatement: + """Class to represent an assignment statement.""" + + var_name: str + value: CallFunction | str | ast.AST + + def generate_ast(self) -> ast.Assign: + """Generate an AST node for the assignment statement.""" + if isinstance(self.value, CallFunction): + return ast.Assign( + targets=[ast.Name(id=self.var_name, ctx=ast.Store())], + value=self.value.generate_ast(), + ) + else: + return ast.Assign( + targets=[ast.Name(id=self.var_name, ctx=ast.Store())], + value=self.value, + ) + + @classmethod + def load_labware( + cls, var_name: str, labware_name: str, labware_location: str + ) -> "AssignStatement": + """Create an AssignStatement for loading labware.""" + return cls( + var_name=var_name, + value=CallFunction.load_labware(labware_name, labware_location), + ) + + @classmethod + def load_waste_chute(cls) -> "AssignStatement": + """Create an AssignStatement for loading a waste chute.""" + return cls( + var_name="waste_chute", + value=CallFunction.load_waste_chute(), + ) + + @classmethod + def load_trash_bin(cls, location: str) -> "AssignStatement": + """Create an AssignStatement for loading a trash bin.""" + return cls( + var_name=f"trash_bin_{location}", + value=CallFunction.load_trash_bin(location.upper()), + ) + + @classmethod + def load_module( + cls, module_info: ModuleInfo, module_location: str | None + ) -> "AssignStatement": + """Create an AssignStatement for loading a module.""" + if module_location is None: + module_location = "" + return cls( + var_name=module_info.variable_name(module_location), + value=CallFunction.load_module(module_info, module_location), + ) + + +@dataclass +class FunctionDefinition: + """Class to represent a function definition.""" + + name: str + args: typing.List[str] + + def generate_ast(self) -> ast.FunctionDef: + """Generate an AST node for the function definition.""" + return ast.FunctionDef( + name=self.name, + args=ast.arguments( + posonlyargs=[], + args=[ + ast.arg( + arg=arg, + ) + for arg in self.args + ], + vararg=None, + kwonlyargs=[], + kw_defaults=[], + kwarg=None, + defaults=[], + ), + body=[], + decorator_list=[], + ) diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/call_phase.py b/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/call_phase.py new file mode 100644 index 00000000000..b25f1ee0d91 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/call_phase.py @@ -0,0 +1,36 @@ +"""This module contains functions that make calls against the various load statements in a protocol. + +Example load statements: load_module, load_labware, load_waste_chute, load_pipette, etc. +Example calls: module.labware, waste_chute.top, etc. +This is required to ensure that the loaded entities are recognized by the analysis engine. +""" + +import typing + +from test_data_generation.python_protocol_generation import ast_helpers as ast_h + + +def create_call_to_attribute_on_loaded_entity( + load_statement: ast_h.AssignStatement, +) -> ast_h.CallAttribute: + """Create a call statement from a load statement.""" + assert isinstance(load_statement.value, ast_h.CallFunction) + + if load_statement.value.what_to_call in ["load_waste_chute", "load_trash_bin"]: + what_to_call = "location" + else: + what_to_call = "api_version" + + return ast_h.CallAttribute( + call_on=load_statement.var_name, + what_to_call=what_to_call, + ) + + +def create_calls_to_loaded_entities( + load_statements: typing.List[ast_h.AssignStatement], +) -> typing.List[ast_h.CallAttribute]: + """Create calls to loaded entity from .""" + return [ + create_call_to_attribute_on_loaded_entity(entity) for entity in load_statements + ] diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/load_phase.py b/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/load_phase.py new file mode 100644 index 00000000000..e146b37c2b9 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/load_phase.py @@ -0,0 +1,238 @@ +"""This module contains the functions that generate the various load statements of a protocol. + +For example, load_module, load_labware, load_waste_chute, etc. +""" + +import typing + +from test_data_generation.constants import ( + DeckConfigurationSlotName, + Modules, + RowName, +) +from test_data_generation.datashapes import ( + PipetteConfiguration, + Slot, +) +from test_data_generation.datashapes import ( + DeckConfigurationFixtures as DCF, +) +from test_data_generation.python_protocol_generation import ast_helpers as ast_h + + +def _staging_area(row: RowName) -> typing.List[ast_h.AssignStatement]: + """Create a staging area in a specified row. + + This is done implicitly by loading a 96-well plate in column 4 of the specified row. + """ + return [ + ast_h.AssignStatement.load_labware( + var_name=f"well_plate_{row}4", + labware_name="nest_96_wellplate_100ul_pcr_full_skirt", + labware_location=f"{row.upper()}4", + ) + ] + + +def _waste_chute(has_staging_area: bool) -> typing.List[ast_h.AssignStatement]: + """Create a waste chute. + + If has_staging_area is True, a staging area is created in row D. + """ + entries = [ast_h.AssignStatement.load_waste_chute()] + + if has_staging_area: + entries.extend(_staging_area("d")) + + return entries + + +def _magnetic_block_on_staging_area(row: RowName) -> typing.List[ast_h.AssignStatement]: + """Create a magnetic block on a staging area in a specified row.""" + slot = typing.cast(DeckConfigurationSlotName, f"{row}3") + entries = _staging_area(row) + entries.extend(_magnetic_block(slot)) + return entries + + +def _trash_bin(slot: DeckConfigurationSlotName) -> typing.List[ast_h.AssignStatement]: + """Create a trash bin in a specified slot.""" + return [ast_h.AssignStatement.load_trash_bin(slot)] + + +def _thermocycler_module() -> typing.List[ast_h.AssignStatement]: + """Create a thermocycler module.""" + return [ + ast_h.AssignStatement.load_module( + module_info=Modules.THERMOCYCLER_MODULE, + module_location=None, + ) + ] + + +def _temperature_module( + slot: DeckConfigurationSlotName, +) -> typing.List[ast_h.AssignStatement]: + """Create a temperature module in a specified slot.""" + return [ + ast_h.AssignStatement.load_module( + module_info=Modules.TEMPERATURE_MODULE, + module_location=slot, + ) + ] + + +def _magnetic_block( + slot: DeckConfigurationSlotName, +) -> typing.List[ast_h.AssignStatement]: + """Create a magnetic block in a specified slot.""" + return [ + ast_h.AssignStatement.load_module( + module_info=Modules.MAGNETIC_BLOCK_MODULE, module_location=slot + ) + ] + + +def _heater_shaker_module( + slot: DeckConfigurationSlotName, +) -> typing.List[ast_h.AssignStatement]: + """Create a heater shaker module in a specified slot.""" + return [ + ast_h.AssignStatement.load_module( + module_info=Modules.HEATER_SHAKER_MODULE, module_location=slot + ) + ] + + +def _labware_slot( + slot: DeckConfigurationSlotName, +) -> typing.List[ast_h.AssignStatement]: + """Create a labware slot in a specified slot.""" + return [ + ast_h.AssignStatement.load_labware( + var_name=f"well_plate_{slot}", + labware_name="nest_96_wellplate_100ul_pcr_full_skirt", + labware_location=slot, + ) + ] + + +def create_deck_configuration_satisfying_load_statement( + slot: Slot, +) -> typing.List[ast_h.AssignStatement]: + """Maps the contents of a slot to the correct assign statement.""" + if slot.contents == DCF.THERMOCYCLER_MODULE and slot.label == "b1": + return [] + + match slot.contents: + case DCF.WASTE_CHUTE | DCF.WASTE_CHUTE_NO_COVER: + return _waste_chute(False) + + case ( + DCF.STAGING_AREA_WITH_WASTE_CHUTE + | DCF.STAGING_AREA_WITH_WASTE_CHUTE_NO_COVER + ): + return _waste_chute(True) + + case DCF.STAGING_AREA_WITH_MAGNETIC_BLOCK: + return _magnetic_block_on_staging_area(slot.row) + + case DCF.TRASH_BIN: + return _trash_bin(slot.label) + + case DCF.THERMOCYCLER_MODULE: + return _thermocycler_module() + + case DCF.TEMPERATURE_MODULE: + return _temperature_module(slot.label) + + case DCF.MAGNETIC_BLOCK_MODULE: + return _magnetic_block(slot.label) + + case DCF.HEATER_SHAKER_MODULE: + return _heater_shaker_module(slot.label) + + case DCF.STAGING_AREA: + return _staging_area(slot.row) + + case DCF.LABWARE_SLOT: + return _labware_slot(slot.label) + + case _: + raise (ValueError(f"Unknown slot contents: {slot.contents}")) + + +def evaluate_explicit_load_statements_for_slot( + slot: Slot, + explicit_calls: ast_h.ExplicitLoadStorage, + allow_overlapping_calls: bool, +) -> typing.List[ast_h.AssignStatement]: + """Evaluates an explicit call for a slot and returns the corresponding assign statement.""" + what_to_load: typing.List[ast_h.AssignStatement] = create_deck_configuration_satisfying_load_statement(slot) + + # If there is no explicit call for the slot, then we don't need to do anything + if slot.label not in explicit_calls: + return what_to_load + + # If there is an explicit call for the slot, we need to decide whether to override or append to what to load + else: + # Regardless of allow_overlapping_calls value, we want to remove the explicit call from the dictionary + explicit_call = explicit_calls.pop(slot.label) + + # If we do allow overlapping calls, we want to append the explicit call to the list of what to load + if allow_overlapping_calls: + what_to_load.append(explicit_call) + + else: + # If we don't allow overlapping calls, we want to override the list of what to load + what_to_load = [explicit_call] + + return what_to_load + + +def create_deck_slot_load_statements( + slots: typing.List[Slot], + explicit_calls: ast_h.ExplicitLoadStorage, + allow_overlapping_calls: bool, +) -> typing.List[ast_h.AssignStatement]: + """Iterates over a list of slots and creates the corresponding load statements.""" + entries: typing.List[ast_h.AssignStatement] = [] + for slot in slots: + # determine_load_statements_for_slot can remove + # explicit calls from the explicit_calls dictionary + entries.extend( + evaluate_explicit_load_statements_for_slot( + slot, explicit_calls, allow_overlapping_calls + ) + ) + + # If we have any explicit calls left, we want to add them to the entries + entries.extend(explicit_calls.values()) + return entries + + +def create_pipette_load_statements( + pipette_config: PipetteConfiguration, +) -> typing.List[ast_h.AssignStatement]: + """Create the load statements for a pipette configuration.""" + entries: typing.List[ast_h.AssignStatement] = [] + if pipette_config.left is not None: + entries.append( + ast_h.AssignStatement( + var_name="left_pipette", + value=ast_h.CallFunction.load_instrument( + pipette_config.left.value, "left" + ), + ) + ) + if pipette_config.right is not None: + entries.append( + ast_h.AssignStatement( + var_name="right_pipette", + value=ast_h.CallFunction.load_instrument( + pipette_config.right.value, "right" + ), + ) + ) + + return entries diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/setup_phase.py b/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/setup_phase.py new file mode 100644 index 00000000000..8cc11c0d927 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/generation_phases/setup_phase.py @@ -0,0 +1,39 @@ +"""This module provides function to generate the initial setup of an Opentrons protocol.""" + +import ast +import typing + +from test_data_generation.constants import ( + PROTOCOL_CONTEXT_VAR_NAME, +) +from test_data_generation.python_protocol_generation import ast_helpers as ast_h + + +def create_requirements_dict( + robot_type: typing.Literal["OT-2", "OT-3"], api_version: str +) -> ast_h.AssignStatement: + """Create an assignment statement for the requirements dictionary.""" + return ast_h.AssignStatement( + var_name="requirements", + value=ast.Expression( + body=ast.Dict( + keys=[ast.Constant("robotType"), ast.Constant("apiLevel")], + values=[ast.Constant(robot_type), ast.Constant(api_version)], + ), + ), + ) + + +def import_protocol_context() -> ast_h.ImportStatement: + """Create an import statement for the ProtocolContext class.""" + return ast_h.ImportStatement( + module="opentrons.protocol_api", names=["ProtocolContext"] + ) + + +def create_protocol_context_run_function() -> ast_h.FunctionDefinition: + """Create a function definition for the run function of a protocol.""" + return ast_h.FunctionDefinition( + name="run", + args=[PROTOCOL_CONTEXT_VAR_NAME], + ) diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/protocol_configuration.py b/test-data-generation/src/test_data_generation/python_protocol_generation/protocol_configuration.py new file mode 100644 index 00000000000..5f35908d627 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/protocol_configuration.py @@ -0,0 +1,16 @@ +"""This module defines all the parameters that are needed to generate a protocol.""" +import dataclasses + +from test_data_generation.python_protocol_generation import ast_helpers as ast_h +from test_data_generation.datashapes import DeckConfiguration + + +@dataclasses.dataclass +class ProtocolConfiguration: + """Class to represent the parameters needed to generate a protocol.""" + + api_version: str + deck_configuration: DeckConfiguration + explicit_loads: ast_h.ExplicitLoadStorage = dataclasses.field(default_factory=dict) + allow_overlapping_loads: bool = False + add_deck_configuration_comment: bool = False diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/python_protocol_generator.py b/test-data-generation/src/test_data_generation/python_protocol_generation/python_protocol_generator.py new file mode 100644 index 00000000000..03b3f1bf7d8 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/python_protocol_generator.py @@ -0,0 +1,95 @@ +"""Module for generating Python protocol code from a deck configuration.""" + +import ast +import typing + +import astor # type: ignore + +from test_data_generation.datashapes import ( + PipetteConfiguration, +) +from test_data_generation.datashapes import ( + DeckConfigurationFixtures as DCF, +) + +from ..constants import PipetteNames +from . import ast_helpers as ast_h +from .generation_phases import setup_phase, load_phase, call_phase + +from .protocol_configuration import ProtocolConfiguration + + +class PythonProtocolGenerator: + """Class for generating Python protocol code from a deck configuration.""" + + def __init__(self, protocol_configuration: ProtocolConfiguration) -> None: + """Initialize the PythonProtocolGenerator. + + Call boilerplate functions to set up the protocol. + """ + self._top_level_statements: typing.List[ast_h.CanGenerateAST] = [] + self._protocol_configuration = protocol_configuration + self._top_level_statements.extend( + [ + setup_phase.import_protocol_context(), + setup_phase.create_requirements_dict( + "OT-3", self._protocol_configuration.api_version + ), + ] + ) + + self._pipettes = self._choose_pipettes() + + def _choose_pipettes(self) -> PipetteConfiguration: + """Choose the pipettes to use based on the deck configuration.""" + if self._protocol_configuration.deck_configuration.d.col3.contents.is_one_of( + [DCF.WASTE_CHUTE_NO_COVER, DCF.STAGING_AREA_WITH_WASTE_CHUTE_NO_COVER] + ): + return PipetteConfiguration( + left=PipetteNames.NINETY_SIX_CHANNEL, right=None + ) + else: + return PipetteConfiguration( + left=PipetteNames.SINGLE_CHANNEL, right=PipetteNames.MULTI_CHANNEL + ) + + def _generate_run_function_statements( + self, + ) -> typing.Sequence[ast.stmt]: + pipette_load_statements = load_phase.create_pipette_load_statements( + self._pipettes + ) + deck_slot_load_statements = load_phase.create_deck_slot_load_statements( + self._protocol_configuration.deck_configuration.slots, + self._protocol_configuration.explicit_loads, + self._protocol_configuration.allow_overlapping_loads, + ) + calls_to_loaded_entities = call_phase.create_calls_to_loaded_entities( + pipette_load_statements + deck_slot_load_statements + ) + + return [ + statement.generate_ast() + for statement in pipette_load_statements + + deck_slot_load_statements + + calls_to_loaded_entities + ] + + def generate_protocol(self) -> str: + """Generate the Python protocol code.""" + module = ast.Module( + body=[statement.generate_ast() for statement in self._top_level_statements] + ) + run_function = setup_phase.create_protocol_context_run_function().generate_ast() + + run_function.body.extend(self._generate_run_function_statements()) + + module.body.append(run_function) + + if self._protocol_configuration.add_deck_configuration_comment: + deck_config_comment = ( + self._protocol_configuration.deck_configuration.comment_string() + ) + else: + deck_config_comment = "" + return deck_config_comment + str(astor.to_source(module)) diff --git a/test-data-generation/src/test_data_generation/python_protocol_generation/strategy/python_protocol_generation_strategies.py b/test-data-generation/src/test_data_generation/python_protocol_generation/strategy/python_protocol_generation_strategies.py new file mode 100644 index 00000000000..683a8c3b976 --- /dev/null +++ b/test-data-generation/src/test_data_generation/python_protocol_generation/strategy/python_protocol_generation_strategies.py @@ -0,0 +1,174 @@ +"""Hypothesis strategies for generating PythonProtocolGenerators.""" +import typing + +from hypothesis import assume +from hypothesis import strategies as st + +from test_data_generation.constants import Modules, RowName, AllSlotName +from test_data_generation.datashapes import ( + DeckConfigurationFixtures as DCF, +) +from test_data_generation.deck_configuration.strategy.deck_configuration_strategies import ( + a_deck_configuration_with_invalid_fixture_in_col_2, + a_deck_configuration_with_staging_areas, + a_deck_with_a_thermocycler, + a_deck_with_a_waste_chute, +) +from test_data_generation.python_protocol_generation import ast_helpers as ast_h +from test_data_generation.python_protocol_generation.protocol_configuration import ( + ProtocolConfiguration, +) + + +@st.composite +def a_protocol_that_loads_invalid_stuff_into_column_2( + draw: st.DrawFn, +) -> ProtocolConfiguration: + """Generate a protocol that loads invalid stuff into column 2.""" + deck_config = draw(a_deck_configuration_with_invalid_fixture_in_col_2()) + + return ProtocolConfiguration(api_version="2.18", deck_configuration=deck_config) + + +@st.composite +def a_protocol_that_loads_invalid_stuff_into_a_staging_area( + draw: st.DrawFn, col_to_add_to: typing.Literal["3", "4"] +) -> ProtocolConfiguration: + """Generate a deck configuration.""" + deck_config = draw(a_deck_configuration_with_staging_areas()) + rows_with_staging_area = [ + slot.row + for slot in deck_config.column_by_number("3").slots + if slot.contents is DCF.STAGING_AREA + ] + rows_to_load_on: typing.List[RowName] = rows_with_staging_area[ + draw(st.slices(len(rows_with_staging_area))) + ] + + # Thermocycler is not allowed either, but you can't specify a thermocycler in any + # slot other than a1/b1 + modules_not_allowed_on_col_3 = [ + Modules.HEATER_SHAKER_MODULE, + Modules.TEMPERATURE_MODULE, + ] + modules_not_allowed_on_col4 = [ + Modules.MAGNETIC_BLOCK_MODULE, + Modules.HEATER_SHAKER_MODULE, + Modules.TEMPERATURE_MODULE, + ] + modules_to_choose_from = ( + modules_not_allowed_on_col_3 + if col_to_add_to == "3" + else modules_not_allowed_on_col4 + ) + + assume(len(rows_to_load_on) > 0) + + explicit_load_storage: ast_h.ExplicitLoadStorage = {} + + for row_name in rows_to_load_on: + slot = typing.cast(AllSlotName, f"{row_name}{col_to_add_to}") + possible_loads = [ + ast_h.AssignStatement.load_module( + draw(st.sampled_from(modules_to_choose_from)), slot + ), + ast_h.AssignStatement.load_trash_bin(slot), + ] + + explicit_load_storage[slot] = draw(st.sampled_from(possible_loads)) + + if col_to_add_to == "3": + col_4_slot = typing.cast(AllSlotName, f"{row_name}4") + explicit_load_storage[col_4_slot] = ast_h.AssignStatement.load_labware( + var_name=f"well_plate_{row_name}4", + labware_name="nest_96_wellplate_100ul_pcr_full_skirt", + labware_location=f"{row_name.upper()}4", + ) + + return ProtocolConfiguration( + api_version="2.18", + deck_configuration=deck_config, + explicit_loads=explicit_load_storage, + ) + + +@st.composite +def a_protocol_that_loads_invalid_stuff_into_a_staging_area_col_3( + draw: st.DrawFn, +) -> ProtocolConfiguration: + """Generate a protocol that loads invalid stuff into staging area column 3.""" + return draw(a_protocol_that_loads_invalid_stuff_into_a_staging_area("3")) + + +@st.composite +def a_protocol_that_loads_invalid_stuff_into_a_staging_area_col_4( + draw: st.DrawFn, +) -> ProtocolConfiguration: + """Generate a protocol that loads invalid stuff into staging area column 4.""" + return draw(a_protocol_that_loads_invalid_stuff_into_a_staging_area("4")) + + +@st.composite +def a_protocol_that_tries_to_load_something_on_top_of_thermocycler( + draw: st.DrawFn, +) -> ProtocolConfiguration: + """Generate a protocol that tries to load something on top of a thermocycler.""" + thermocycler_slot: AllSlotName = draw(st.sampled_from(["a1", "b1"])) + + module_load = ast_h.AssignStatement.load_module( + module_info=draw(st.sampled_from(Modules.modules())), + module_location=thermocycler_slot, + ) + labware_load = ast_h.AssignStatement.load_labware( + var_name=f"well_plate_{thermocycler_slot}", + labware_name="nest_96_wellplate_100ul_pcr_full_skirt", + labware_location=thermocycler_slot, + ) + trash_bin_load = ast_h.AssignStatement.load_trash_bin(thermocycler_slot) + + explicit_load_storage: ast_h.ExplicitLoadStorage = { + thermocycler_slot: draw( + st.sampled_from([module_load, trash_bin_load, labware_load]) + ) + } + return ProtocolConfiguration( + api_version="2.18", + deck_configuration=draw(a_deck_with_a_thermocycler()), + explicit_loads=explicit_load_storage, + allow_overlapping_loads=True, + ) + + +@st.composite +def a_protocol_that_tries_to_load_something_on_top_of_a_waste_chute( + draw: st.DrawFn, +) -> ProtocolConfiguration: + """Generate a protocol that tries to load something on top of a waste chute.""" + MODULES_NOT_ALLOWED_ON_WASTE_CHUTE = [ + Modules.HEATER_SHAKER_MODULE, + Modules.TEMPERATURE_MODULE, + Modules.MAGNETIC_BLOCK_MODULE, + ] + waste_chute_slot: AllSlotName = "d3" + module_load = ast_h.AssignStatement.load_module( + module_info=draw(st.sampled_from(MODULES_NOT_ALLOWED_ON_WASTE_CHUTE)), + module_location=waste_chute_slot, + ) + labware_load = ast_h.AssignStatement.load_labware( + var_name=f"well_plate_{waste_chute_slot}", + labware_name="nest_96_wellplate_100ul_pcr_full_skirt", + labware_location=waste_chute_slot, + ) + trash_bin_load = ast_h.AssignStatement.load_trash_bin(waste_chute_slot) + + explicit_load_storage: ast_h.ExplicitLoadStorage = { + waste_chute_slot: draw( + st.sampled_from([module_load, trash_bin_load, labware_load]) + ) + } + return ProtocolConfiguration( + api_version="2.18", + deck_configuration=draw(a_deck_with_a_waste_chute()), + explicit_loads=explicit_load_storage, + allow_overlapping_loads=True, + ) diff --git a/test-data-generation/tests/__init__.py b/test-data-generation/tests/__init__.py new file mode 100644 index 00000000000..46816ddf5e7 --- /dev/null +++ b/test-data-generation/tests/__init__.py @@ -0,0 +1 @@ +"""Tests package.""" diff --git a/test-data-generation/tests/conftest.py b/test-data-generation/tests/conftest.py new file mode 100644 index 00000000000..07556b047cc --- /dev/null +++ b/test-data-generation/tests/conftest.py @@ -0,0 +1,48 @@ +"""Pytest configuration file. + +Contains hypothesis settings profiles. +""" + +from hypothesis import HealthCheck, Phase, Verbosity, settings + +# Hypothesis cannot shrink the DeckConfiguration object, but attempts to do so anyways. +# This causes tests to take exponentially longer, and then fail, which is less than ideal. +# So defaulting to not shrinking + +# If there start being tests which do not use the DeckConfiguration object, then this Phase setting +# can be applied prescriptively to only tests that use the DeckConfiguration object. +DONT_SHRINK = set(settings.default.phases) - {Phase.shrink} + +# The tests are slow because they are running the analysis on generated protocols, which takes longer than the default 200ms. +# The tests are also filtering a lot of examples because they are generating a lot of invalid protocols. But generating +# examples is extremely fast, so we will leave this until we start seeing example generation start taking a long time. + +ITS_GONNA_BE_SLOW = (HealthCheck.too_slow, HealthCheck.filter_too_much) + +default = settings( + suppress_health_check=ITS_GONNA_BE_SLOW, + phases=DONT_SHRINK, + verbosity=Verbosity.normal, +) + +settings.register_profile( + "exploratory", + parent=default, + max_examples=100, + deadline=None, +) + +settings.register_profile( + "dev", + parent=default, + max_examples=2, + deadline=None, +) + + +settings.register_profile( + "ci", + parent=default, + max_examples=1000, + deadline=None, +) diff --git a/test-data-generation/tests/protocol_analysis_validator.py b/test-data-generation/tests/protocol_analysis_validator.py new file mode 100644 index 00000000000..013f16000ec --- /dev/null +++ b/test-data-generation/tests/protocol_analysis_validator.py @@ -0,0 +1,126 @@ +"""This module contains the ProtocolAnalysisValidator class.""" + +import subprocess +import pytest +import pathlib +from opentrons.cli.analyze import AnalyzeResults +from test_data_generation.python_protocol_generation.python_protocol_generator import ( + PythonProtocolGenerator, +) +from test_data_generation.python_protocol_generation.protocol_configuration import ( + ProtocolConfiguration, +) + + +class ProtocolAnalysisValidator: + """This class is used to validate the analysis of a generated protocol. + + It generates a protocol, runs the analysis, and checks for errors. + It exposes 2 public methods: + - expect_error: Checks if the analysis response has errors. + - expect_success: Checks if the analysis response has no errors. + + Args: + protocol_configuration (ProtocolConfiguration): The protocol configuration. + storage_location (pathlib.Path): The location to store the generated protocol (should be a pytest.tmp_path). + echo_analysis_on_failure (bool): Whether to echo the analysis on failure. + """ + + def __init__( + self, + protocol_configuration: ProtocolConfiguration, + storage_location: pathlib.Path, + echo_analysis_on_failure: bool = False, + ) -> None: + self._protocol_content = PythonProtocolGenerator( + protocol_configuration + ).generate_protocol() + self._storage_location = storage_location + self._echo_analysis_on_failure = echo_analysis_on_failure + + async def _run_analysis(self) -> AnalyzeResults: + """Run the analysis on the generated protocol.""" + protocol_path = self._storage_location / "protocol.py" + analysis_json_path = self._storage_location / "analysis_result.json" + + protocol_path.write_text(self._protocol_content) + + command = [ + "python", + "-m", + "opentrons.cli", + "analyze", + str(protocol_path), + "--human-json-output", + str(analysis_json_path), + ] + + # Run the command + result = subprocess.run(command, capture_output=True, text=True) + + if result.returncode != 0: + raise Exception( + f"Analysis failed: {result.stderr}\n{self._protocol_content}\n" + ) + + return AnalyzeResults.parse_file(analysis_json_path) + + def _pretty_protocol_content(self) -> str: + """Pretty print the protocol.""" + command = [ + "black", + "-", + ] + + # Run the command + result = subprocess.run( + command, input=self._protocol_content, capture_output=True, text=True + ) + + if result.returncode != 0: + raise Exception( + f"Black failed: {result.stderr}\n{self._protocol_content}\n" + ) + + return result.stdout + + @staticmethod + def _analysis_has_errors(analysis_result: AnalyzeResults) -> bool: + """Evaluate the analysis response.""" + return len(analysis_result.errors) > 0 + + def _analysis_content_string(self, analysis_result: AnalyzeResults) -> str: + """Return the analysis content as a string.""" + return ( + f"Analysis Content:\n{analysis_result.json(indent=4)}\n" + if self._echo_analysis_on_failure + else "" + ) + + # TODO: Add a method to check for specific errors + async def expect_error(self) -> None: + """Check if the analysis response has errors.""" + analysis_result = await self._run_analysis() + if not self._analysis_has_errors(analysis_result): + message = ( + "Errors were expected, but the analysis succeeded.\n" + f"Executed protocol:\n{self._pretty_protocol_content()}\n" + f"{self._analysis_content_string(analysis_result)}" + ) + pytest.fail(message) + + async def expect_success(self) -> None: + """Check if the analysis response has no errors.""" + analysis_result = await self._run_analysis() + if self._analysis_has_errors(analysis_result): + errors = "\n".join( + [f"Error: {error.detail}" for error in analysis_result.errors] + ) + message = ( + "Errors were not expected, but the analysis failed.\n" + f"Executed protocol:\n{self._pretty_protocol_content()}\n" + f"Analysis Errors:\n{errors}\n" + f"{self._analysis_content_string(analysis_result)}" + ) + + pytest.fail(message) diff --git a/test-data-generation/tests/test_data_generation/deck_configuration/test_deck_configuration.py b/test-data-generation/tests/test_data_generation/deck_configuration/test_deck_configuration.py index 02c4f125187..6798a7dcd81 100644 --- a/test-data-generation/tests/test_data_generation/deck_configuration/test_deck_configuration.py +++ b/test-data-generation/tests/test_data_generation/deck_configuration/test_deck_configuration.py @@ -1,41 +1,95 @@ """Tests to ensure that the deck configuration is generated correctly.""" -from hypothesis import given, settings, HealthCheck -from test_data_generation.deck_configuration.datashapes import DeckConfiguration -from test_data_generation.deck_configuration.strategy.final_strategies import ( - a_deck_configuration_with_a_module_or_trash_slot_above_or_below_a_heater_shaker, - a_deck_configuration_with_invalid_fixture_in_col_2, +from pathlib import Path +import os +import pytest +import typing +from hypothesis import HealthCheck, given, settings +from tests.protocol_analysis_validator import ( + ProtocolAnalysisValidator, ) -NUM_EXAMPLES = 100 +from test_data_generation.python_protocol_generation.strategy.python_protocol_generation_strategies import ( + a_protocol_that_loads_invalid_stuff_into_column_2, + a_protocol_that_loads_invalid_stuff_into_a_staging_area_col_3, + a_protocol_that_loads_invalid_stuff_into_a_staging_area_col_4, + a_protocol_that_tries_to_load_something_on_top_of_thermocycler, + a_protocol_that_tries_to_load_something_on_top_of_a_waste_chute, +) + +from test_data_generation.constants import ECHO_ANALYSIS_RESULTS_ENV_VAR_NAME + +SHOULD_ECHO_ANALYSIS_RESULTS = ECHO_ANALYSIS_RESULTS_ENV_VAR_NAME in os.environ + +if typing.TYPE_CHECKING: + from test_data_generation.python_protocol_generation.protocol_configuration import ( + ProtocolConfiguration, + ) + + +@given(protocol_configuration=a_protocol_that_loads_invalid_stuff_into_column_2()) +@settings(suppress_health_check=[HealthCheck.function_scoped_fixture]) +@pytest.mark.asyncio +async def test_invalid_fixture_in_col_2( + protocol_configuration: "ProtocolConfiguration", tmp_path: Path +) -> None: + """I hypothesize, that any deck configuration that contains at least one, Heater-Shaker, Trash Bin, or Temperature module, in column 2 is invalid.""" + await ProtocolAnalysisValidator( + protocol_configuration, tmp_path, SHOULD_ECHO_ANALYSIS_RESULTS + ).expect_error() @given( - deck_config=a_deck_configuration_with_a_module_or_trash_slot_above_or_below_a_heater_shaker() -) -@settings( - max_examples=NUM_EXAMPLES, - suppress_health_check=[HealthCheck.filter_too_much, HealthCheck.too_slow], + protocol_configuration=a_protocol_that_loads_invalid_stuff_into_a_staging_area_col_3() ) -def test_above_below_heater_shaker(deck_config: DeckConfiguration) -> None: - """I hypothesize, that any deck configuration with a non-labware slot fixture above or below a heater-shaker is invalid.""" - print(deck_config) +@settings(suppress_health_check=[HealthCheck.function_scoped_fixture]) +@pytest.mark.asyncio +async def test_invalid_stuff_in_staging_area_col3( + protocol_configuration: "ProtocolConfiguration", tmp_path: Path +) -> None: + """I hypothesize, that any protocol that loads a trash bin, heater-shaker module, or temperature module into slot 3 on a staging area will fail analysis.""" + await ProtocolAnalysisValidator( + protocol_configuration, tmp_path, SHOULD_ECHO_ANALYSIS_RESULTS + ).expect_error() - # TODO: create protocol and run analysis - # protocol = create_protocol(deck) - # with pytest.assertRaises as e: - # analyze(protocol) - # assert e.exception == "Some statement about the deck configuration being invalid because of the labware above or below the Heater-Shaker" +@given( + protocol_configuration=a_protocol_that_loads_invalid_stuff_into_a_staging_area_col_4() +) +@settings(suppress_health_check=[HealthCheck.function_scoped_fixture]) +@pytest.mark.asyncio +async def test_invalid_stuff_in_staging_area_col4( + protocol_configuration: "ProtocolConfiguration", tmp_path: Path +) -> None: + """I hypothesize, that any protocol that loads a trash bin, heater-shaker module, temperature module, or mag block module into slot 4 on a staging area will fail analysis.""" + await ProtocolAnalysisValidator( + protocol_configuration, tmp_path, SHOULD_ECHO_ANALYSIS_RESULTS + ).expect_error() -@given(deck_config=a_deck_configuration_with_invalid_fixture_in_col_2()) -@settings( - max_examples=NUM_EXAMPLES, - suppress_health_check=[HealthCheck.filter_too_much, HealthCheck.too_slow], +@given( + protocol_configuration=a_protocol_that_tries_to_load_something_on_top_of_thermocycler() ) -def test_invalid_fixture_in_col_2(deck_config: DeckConfiguration) -> None: - """I hypothesize, that any deck configuration that contains at least one, Heater-Shaker, Trash Bin, or Temperature module, in column 2 is invalid.""" - print(deck_config) +@settings(suppress_health_check=[HealthCheck.function_scoped_fixture]) +@pytest.mark.asyncio +async def test_invalid_stuff_on_thermocycler( + protocol_configuration: "ProtocolConfiguration", tmp_path: Path +) -> None: + """I hypothesize, that any protocol that tries to load a module, labware, or a trash bin on top of a thermocycler will fail analysis.""" + await ProtocolAnalysisValidator( + protocol_configuration, tmp_path, SHOULD_ECHO_ANALYSIS_RESULTS + ).expect_error() - # TODO: Same as above + +@given( + protocol_configuration=a_protocol_that_tries_to_load_something_on_top_of_a_waste_chute() +) +@settings(suppress_health_check=[HealthCheck.function_scoped_fixture]) +@pytest.mark.asyncio +async def test_invalid_stuff_on_waste_chute( + protocol_configuration: "ProtocolConfiguration", tmp_path: Path +) -> None: + """I hypothesize, that any protocol that tries to load a module, trash bin or labware on top of a waste chute will fail analysis.""" + await ProtocolAnalysisValidator( + protocol_configuration, tmp_path, SHOULD_ECHO_ANALYSIS_RESULTS + ).expect_error() diff --git a/vite.config.ts b/vite.config.ts index 0db2bee2e48..bc5615122c6 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -27,7 +27,7 @@ export default defineConfig({ esbuildOptions: { target: 'es2020', }, - exclude: ['node_modules'] + exclude: ['node_modules'], }, css: { postcss: { diff --git a/yarn.lock b/yarn.lock index 9b1d8cc5d27..3b307160966 100644 --- a/yarn.lock +++ b/yarn.lock @@ -30,6 +30,18 @@ "@jridgewell/gen-mapping" "^0.3.5" "@jridgewell/trace-mapping" "^0.3.24" +"@auth0/auth0-react@2.2.4": + version "2.2.4" + resolved "https://registry.yarnpkg.com/@auth0/auth0-react/-/auth0-react-2.2.4.tgz#7f21751a219d4e0e019141819f00e76e436176dd" + integrity sha512-l29PQC0WdgkCoOc6WeMAY26gsy/yXJICW0jHfj0nz8rZZphYKrLNqTRWFFCMJY+sagza9tSgB1kG/UvQYgGh9A== + dependencies: + "@auth0/auth0-spa-js" "^2.1.3" + +"@auth0/auth0-spa-js@^2.1.3": + version "2.1.3" + resolved "https://registry.yarnpkg.com/@auth0/auth0-spa-js/-/auth0-spa-js-2.1.3.tgz#aabf6f439e41edbeef0cf4766ad754e5b47616e5" + integrity sha512-NMTBNuuG4g3rame1aCnNS5qFYIzsTUV5qTFPRfTyYFS1feS6jsCBR+eTq9YkxCp1yuoM2UIcjunPaoPl77U9xQ== + "@aw-web-design/x-default-browser@1.4.126": version "1.4.126" resolved "https://registry.yarnpkg.com/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz#43e4bd8f0314ed907a8718d7e862a203af79bc16" @@ -37,33 +49,33 @@ dependencies: default-browser-id "3.0.0" -"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.23.5": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" - integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" + integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== dependencies: - "@babel/highlight" "^7.23.4" - chalk "^2.4.2" + "@babel/highlight" "^7.24.2" + picocolors "^1.0.0" -"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5": - version "7.23.5" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.23.5.tgz#ffb878728bb6bdcb6f4510aa51b1be9afb8cfd98" - integrity sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw== +"@babel/compat-data@^7.22.6", "@babel/compat-data@^7.23.5", "@babel/compat-data@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a" + integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ== "@babel/core@>=7.2.2", "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.18.9", "@babel/core@^7.20.12", "@babel/core@^7.23.0", "@babel/core@^7.23.2", "@babel/core@^7.23.3", "@babel/core@^7.23.5": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.0.tgz#56cbda6b185ae9d9bed369816a8f4423c5f2ff1b" - integrity sha512-fQfkg0Gjkza3nf0c7/w6Xf34BW4YvzNfACRLmmb7XRLa6XHdR+K9AlJlxneFfWYf6uhOzuzZVTjF/8KfndZANw== + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.4.tgz#1f758428e88e0d8c563874741bc4ffc4f71a4717" + integrity sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg== dependencies: "@ampproject/remapping" "^2.2.0" - "@babel/code-frame" "^7.23.5" - "@babel/generator" "^7.23.6" + "@babel/code-frame" "^7.24.2" + "@babel/generator" "^7.24.4" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-module-transforms" "^7.23.3" - "@babel/helpers" "^7.24.0" - "@babel/parser" "^7.24.0" + "@babel/helpers" "^7.24.4" + "@babel/parser" "^7.24.4" "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.0" + "@babel/traverse" "^7.24.1" "@babel/types" "^7.24.0" convert-source-map "^2.0.0" debug "^4.1.0" @@ -71,14 +83,14 @@ json5 "^2.2.3" semver "^6.3.1" -"@babel/generator@^7.23.0", "@babel/generator@^7.23.6": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" - integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== +"@babel/generator@^7.23.0", "@babel/generator@^7.24.1", "@babel/generator@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.4.tgz#1fc55532b88adf952025d5d2d1e71f946cb1c498" + integrity sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw== dependencies: - "@babel/types" "^7.23.6" - "@jridgewell/gen-mapping" "^0.3.2" - "@jridgewell/trace-mapping" "^0.3.17" + "@babel/types" "^7.24.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" jsesc "^2.5.1" "@babel/helper-annotate-as-pure@^7.16.0", "@babel/helper-annotate-as-pure@^7.22.5": @@ -95,7 +107,7 @@ dependencies: "@babel/types" "^7.22.15" -"@babel/helper-compilation-targets@^7.22.15", "@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": +"@babel/helper-compilation-targets@^7.22.6", "@babel/helper-compilation-targets@^7.23.6": version "7.23.6" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== @@ -106,17 +118,17 @@ lru-cache "^5.1.1" semver "^6.3.1" -"@babel/helper-create-class-features-plugin@^7.22.15", "@babel/helper-create-class-features-plugin@^7.23.6": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.0.tgz#fc7554141bdbfa2d17f7b4b80153b9b090e5d158" - integrity sha512-QAH+vfvts51BCsNZ2PhY6HAggnlS6omLLFTsIpeqZk/MmJ6cW7tgz5yRv0fMJThcr6FmbMrENh1RgrWPTYA76g== +"@babel/helper-create-class-features-plugin@^7.24.1", "@babel/helper-create-class-features-plugin@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz#c806f73788a6800a5cfbbc04d2df7ee4d927cce3" + integrity sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" "@babel/helper-member-expression-to-functions" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-replace-supers" "^7.24.1" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" semver "^6.3.1" @@ -130,10 +142,10 @@ regexpu-core "^5.3.1" semver "^6.3.1" -"@babel/helper-define-polyfill-provider@^0.5.0": - version "0.5.0" - resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.5.0.tgz#465805b7361f461e86c680f1de21eaf88c25901b" - integrity sha512-NovQquuQLAQ5HuyjCz7WQP9MjRj7dx++yspwiyUiGl9ZyadHRSql1HZh5ogRd8W8w6YM6EQ/NTB8rgjLt5W65Q== +"@babel/helper-define-polyfill-provider@^0.6.1", "@babel/helper-define-polyfill-provider@^0.6.2": + version "0.6.2" + resolved "https://registry.yarnpkg.com/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.2.tgz#18594f789c3594acb24cfdb4a7f7b7d2e8bd912d" + integrity sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ== dependencies: "@babel/helper-compilation-targets" "^7.22.6" "@babel/helper-plugin-utils" "^7.22.5" @@ -161,19 +173,19 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-member-expression-to-functions@^7.22.15", "@babel/helper-member-expression-to-functions@^7.23.0": +"@babel/helper-member-expression-to-functions@^7.23.0": version "7.23.0" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz#9263e88cc5e41d39ec18c9a3e0eced59a3e7d366" integrity sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA== dependencies: "@babel/types" "^7.23.0" -"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.16.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz#16146307acdc40cc00c3b2c647713076464bdbf0" - integrity sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w== +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.10.4", "@babel/helper-module-imports@^7.16.0", "@babel/helper-module-imports@^7.16.7", "@babel/helper-module-imports@^7.22.15", "@babel/helper-module-imports@^7.22.5", "@babel/helper-module-imports@^7.24.1": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" + integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== dependencies: - "@babel/types" "^7.22.15" + "@babel/types" "^7.24.0" "@babel/helper-module-transforms@^7.23.3": version "7.23.3" @@ -207,13 +219,13 @@ "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-wrap-function" "^7.22.20" -"@babel/helper-replace-supers@^7.22.20": - version "7.22.20" - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz#e37d367123ca98fe455a9887734ed2e16eb7a793" - integrity sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw== +"@babel/helper-replace-supers@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz#7085bd19d4a0b7ed8f405c1ed73ccb70f323abc1" + integrity sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ== dependencies: "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-member-expression-to-functions" "^7.22.15" + "@babel/helper-member-expression-to-functions" "^7.23.0" "@babel/helper-optimise-call-expression" "^7.22.5" "@babel/helper-simple-access@^7.22.5": @@ -238,16 +250,16 @@ "@babel/types" "^7.22.5" "@babel/helper-string-parser@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" - integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" + integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== "@babel/helper-validator-identifier@^7.22.20": version "7.22.20" resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/helper-validator-option@^7.22.15", "@babel/helper-validator-option@^7.23.5": +"@babel/helper-validator-option@^7.23.5": version "7.23.5" resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== @@ -261,52 +273,61 @@ "@babel/template" "^7.22.15" "@babel/types" "^7.22.19" -"@babel/helpers@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.0.tgz#a3dd462b41769c95db8091e49cfe019389a9409b" - integrity sha512-ulDZdc0Aj5uLc5nETsa7EPx2L7rM0YJM8r7ck7U73AXi7qOV44IHHRAYZHY6iU1rr3C5N4NtTmMRUJP6kwCWeA== +"@babel/helpers@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.4.tgz#dc00907fd0d95da74563c142ef4cd21f2cb856b6" + integrity sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw== dependencies: "@babel/template" "^7.24.0" - "@babel/traverse" "^7.24.0" + "@babel/traverse" "^7.24.1" "@babel/types" "^7.24.0" -"@babel/highlight@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" - integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== +"@babel/highlight@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26" + integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA== dependencies: "@babel/helper-validator-identifier" "^7.22.20" chalk "^2.4.2" js-tokens "^4.0.0" + picocolors "^1.0.0" -"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.0", "@babel/parser@^7.23.6", "@babel/parser@^7.24.0", "@babel/parser@^7.8.3": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.0.tgz#26a3d1ff49031c53a97d03b604375f028746a9ac" - integrity sha512-QuP/FxEAzMSjXygs8v4N9dvdXzEHN4W1oF3PxuWAtPo08UdM17u89RDMgjLn/mlc56iM0HlLmVkO/wgR+rDgHg== +"@babel/parser@^7.0.0", "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.0", "@babel/parser@^7.24.0", "@babel/parser@^7.24.1", "@babel/parser@^7.24.4", "@babel/parser@^7.8.3": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.4.tgz#234487a110d89ad5a3ed4a8a566c36b9453e8c88" + integrity sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg== -"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz#5cd1c87ba9380d0afb78469292c954fee5d2411a" - integrity sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ== +"@babel/plugin-bugfix-firefox-class-in-computed-class-key@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz#6125f0158543fb4edf1c22f322f3db67f21cb3e1" + integrity sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz#f6652bb16b94f8f9c20c50941e16e9756898dc5d" - integrity sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ== +"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz#b645d9ba8c2bc5b7af50f0fe949f9edbeb07c8cf" + integrity sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" + +"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz#da8261f2697f0f41b0855b91d3a20a1fbfd271d3" + integrity sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ== + dependencies: + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" - "@babel/plugin-transform-optional-chaining" "^7.23.3" + "@babel/plugin-transform-optional-chaining" "^7.24.1" -"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.23.7": - version "7.23.7" - resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.7.tgz#516462a95d10a9618f197d39ad291a9b47ae1d7b" - integrity sha512-LlRT7HgaifEpQA1ZgLVOIJZZFVPWN5iReq/7/JixwBtwcoeVGDBD53ZV28rrsLYOZs1Y/EHhA8N/Z6aazHR8cw== +"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz#1181d9685984c91d657b8ddf14f0487a6bab2988" + integrity sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw== dependencies: "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2": version "7.21.0-placeholder-for-preset-env.2" @@ -348,26 +369,26 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-flow@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.23.3.tgz#084564e0f3cc21ea6c70c44cff984a1c0509729a" - integrity sha512-YZiAIpkJAwQXBJLIQbRFayR5c+gJ35Vcz3bg954k7cd73zqjvhacJuL9RbrzPz8qPmZdgqP6EUKwy0PCNhaaPA== +"@babel/plugin-syntax-flow@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz#875c25e3428d7896c87589765fc8b9d32f24bd8d" + integrity sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-syntax-import-assertions@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz#9c05a7f592982aff1a2768260ad84bcd3f0c77fc" - integrity sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw== +"@babel/plugin-syntax-import-assertions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz#db3aad724153a00eaac115a3fb898de544e34971" + integrity sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-syntax-import-attributes@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz#992aee922cf04512461d7dae3ff6951b90a2dc06" - integrity sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA== +"@babel/plugin-syntax-import-attributes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz#c66b966c63b714c4eec508fcf5763b1f2d381093" + integrity sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-import-meta@^7.10.4": version "7.10.4" @@ -383,12 +404,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@^7.22.5", "@babel/plugin-syntax-jsx@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" - integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== +"@babel/plugin-syntax-jsx@^7.22.5", "@babel/plugin-syntax-jsx@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10" + integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-logical-assignment-operators@^7.10.4": version "7.10.4" @@ -446,12 +467,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.14.5" -"@babel/plugin-syntax-typescript@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz#24f460c85dbbc983cd2b9c4994178bcc01df958f" - integrity sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ== +"@babel/plugin-syntax-typescript@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844" + integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-unicode-sets-regex@^7.18.6": version "7.18.6" @@ -461,220 +482,220 @@ "@babel/helper-create-regexp-features-plugin" "^7.18.6" "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-arrow-functions@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz#94c6dcfd731af90f27a79509f9ab7fb2120fc38b" - integrity sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ== +"@babel/plugin-transform-arrow-functions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz#2bf263617060c9cc45bcdbf492b8cc805082bf27" + integrity sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-async-generator-functions@^7.23.9": - version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.9.tgz#9adaeb66fc9634a586c5df139c6240d41ed801ce" - integrity sha512-8Q3veQEDGe14dTYuwagbRtwxQDnytyg1JFu4/HwEMETeofocrB0U0ejBJIXoeG/t2oXZ8kzCyI0ZZfbT80VFNQ== +"@babel/plugin-transform-async-generator-functions@^7.24.3": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz#8fa7ae481b100768cc9842c8617808c5352b8b89" + integrity sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg== dependencies: "@babel/helper-environment-visitor" "^7.22.20" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-remap-async-to-generator" "^7.22.20" "@babel/plugin-syntax-async-generators" "^7.8.4" -"@babel/plugin-transform-async-to-generator@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz#d1f513c7a8a506d43f47df2bf25f9254b0b051fa" - integrity sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw== +"@babel/plugin-transform-async-to-generator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz#0e220703b89f2216800ce7b1c53cb0cf521c37f4" + integrity sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw== dependencies: - "@babel/helper-module-imports" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-module-imports" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-remap-async-to-generator" "^7.22.20" -"@babel/plugin-transform-block-scoped-functions@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz#fe1177d715fb569663095e04f3598525d98e8c77" - integrity sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A== +"@babel/plugin-transform-block-scoped-functions@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz#1c94799e20fcd5c4d4589523bbc57b7692979380" + integrity sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-block-scoping@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz#b2d38589531c6c80fbe25e6b58e763622d2d3cf5" - integrity sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw== +"@babel/plugin-transform-block-scoping@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz#28f5c010b66fbb8ccdeef853bef1935c434d7012" + integrity sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-class-properties@^7.22.5", "@babel/plugin-transform-class-properties@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz#35c377db11ca92a785a718b6aa4e3ed1eb65dc48" - integrity sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg== +"@babel/plugin-transform-class-properties@^7.22.5", "@babel/plugin-transform-class-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz#bcbf1aef6ba6085cfddec9fc8d58871cf011fc29" + integrity sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-class-static-block@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz#2a202c8787a8964dd11dfcedf994d36bfc844ab5" - integrity sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ== +"@babel/plugin-transform-class-static-block@^7.24.4": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz#1a4653c0cf8ac46441ec406dece6e9bc590356a4" + integrity sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.4" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-class-static-block" "^7.14.5" -"@babel/plugin-transform-classes@^7.23.8": - version "7.23.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.8.tgz#d08ae096c240347badd68cdf1b6d1624a6435d92" - integrity sha512-yAYslGsY1bX6Knmg46RjiCiNSwJKv2IUC8qOdYKqMMr0491SXFhcHqOdRDeCRohOOIzwN/90C6mQ9qAKgrP7dg== +"@babel/plugin-transform-classes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz#5bc8fc160ed96378184bc10042af47f50884dcb1" + integrity sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-replace-supers" "^7.24.1" "@babel/helper-split-export-declaration" "^7.22.6" globals "^11.1.0" -"@babel/plugin-transform-computed-properties@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz#652e69561fcc9d2b50ba4f7ac7f60dcf65e86474" - integrity sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw== +"@babel/plugin-transform-computed-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz#bc7e787f8e021eccfb677af5f13c29a9934ed8a7" + integrity sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/template" "^7.22.15" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/template" "^7.24.0" -"@babel/plugin-transform-destructuring@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz#8c9ee68228b12ae3dff986e56ed1ba4f3c446311" - integrity sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw== +"@babel/plugin-transform-destructuring@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz#b1e8243af4a0206841973786292b8c8dd8447345" + integrity sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-dotall-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz#3f7af6054882ede89c378d0cf889b854a993da50" - integrity sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ== +"@babel/plugin-transform-dotall-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz#d56913d2f12795cc9930801b84c6f8c47513ac13" + integrity sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-duplicate-keys@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz#664706ca0a5dfe8d066537f99032fc1dc8b720ce" - integrity sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA== +"@babel/plugin-transform-duplicate-keys@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz#5347a797fe82b8d09749d10e9f5b83665adbca88" + integrity sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-dynamic-import@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz#c7629e7254011ac3630d47d7f34ddd40ca535143" - integrity sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ== +"@babel/plugin-transform-dynamic-import@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz#2a5a49959201970dd09a5fca856cb651e44439dd" + integrity sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-transform-exponentiation-operator@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz#ea0d978f6b9232ba4722f3dbecdd18f450babd18" - integrity sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ== +"@babel/plugin-transform-exponentiation-operator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz#6650ebeb5bd5c012d5f5f90a26613a08162e8ba4" + integrity sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw== dependencies: "@babel/helper-builder-binary-assignment-operator-visitor" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-export-namespace-from@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz#084c7b25e9a5c8271e987a08cf85807b80283191" - integrity sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ== +"@babel/plugin-transform-export-namespace-from@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz#f033541fc036e3efb2dcb58eedafd4f6b8078acd" + integrity sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-transform-flow-strip-types@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.23.3.tgz#cfa7ca159cc3306fab526fc67091556b51af26ff" - integrity sha512-26/pQTf9nQSNVJCrLB1IkHUKyPxR+lMrH2QDPG89+Znu9rAMbtrybdbWeE9bb7gzjmE5iXHEY+e0HUwM6Co93Q== +"@babel/plugin-transform-flow-strip-types@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz#fa8d0a146506ea195da1671d38eed459242b2dcc" + integrity sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-flow" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-flow" "^7.24.1" -"@babel/plugin-transform-for-of@^7.23.6": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz#81c37e24171b37b370ba6aaffa7ac86bcb46f94e" - integrity sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw== +"@babel/plugin-transform-for-of@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz#67448446b67ab6c091360ce3717e7d3a59e202fd" + integrity sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-function-name@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz#8f424fcd862bf84cb9a1a6b42bc2f47ed630f8dc" - integrity sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw== +"@babel/plugin-transform-function-name@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz#8cba6f7730626cc4dfe4ca2fa516215a0592b361" + integrity sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA== dependencies: - "@babel/helper-compilation-targets" "^7.22.15" + "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-function-name" "^7.23.0" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-json-strings@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz#a871d9b6bd171976efad2e43e694c961ffa3714d" - integrity sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg== +"@babel/plugin-transform-json-strings@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz#08e6369b62ab3e8a7b61089151b161180c8299f7" + integrity sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-transform-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz#8214665f00506ead73de157eba233e7381f3beb4" - integrity sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ== +"@babel/plugin-transform-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz#0a1982297af83e6b3c94972686067df588c5c096" + integrity sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-logical-assignment-operators@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz#e599f82c51d55fac725f62ce55d3a0886279ecb5" - integrity sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg== +"@babel/plugin-transform-logical-assignment-operators@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz#719d8aded1aa94b8fb34e3a785ae8518e24cfa40" + integrity sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-transform-member-expression-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz#e37b3f0502289f477ac0e776b05a833d853cabcc" - integrity sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag== +"@babel/plugin-transform-member-expression-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz#896d23601c92f437af8b01371ad34beb75df4489" + integrity sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-modules-amd@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz#e19b55436a1416829df0a1afc495deedfae17f7d" - integrity sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw== +"@babel/plugin-transform-modules-amd@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz#b6d829ed15258536977e9c7cc6437814871ffa39" + integrity sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ== dependencies: "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-modules-commonjs@^7.23.0", "@babel/plugin-transform-modules-commonjs@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz#661ae831b9577e52be57dd8356b734f9700b53b4" - integrity sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA== +"@babel/plugin-transform-modules-commonjs@^7.23.0", "@babel/plugin-transform-modules-commonjs@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz#e71ba1d0d69e049a22bf90b3867e263823d3f1b9" + integrity sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw== dependencies: "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-simple-access" "^7.22.5" -"@babel/plugin-transform-modules-systemjs@^7.23.9": - version "7.23.9" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.9.tgz#105d3ed46e4a21d257f83a2f9e2ee4203ceda6be" - integrity sha512-KDlPRM6sLo4o1FkiSlXoAa8edLXFsKKIda779fbLrvmeuc3itnjCtaO6RrtoaANsIJANj+Vk1zqbZIMhkCAHVw== +"@babel/plugin-transform-modules-systemjs@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz#2b9625a3d4e445babac9788daec39094e6b11e3e" + integrity sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA== dependencies: "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-validator-identifier" "^7.22.20" -"@babel/plugin-transform-modules-umd@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz#5d4395fccd071dfefe6585a4411aa7d6b7d769e9" - integrity sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg== +"@babel/plugin-transform-modules-umd@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz#69220c66653a19cf2c0872b9c762b9a48b8bebef" + integrity sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg== dependencies: "@babel/helper-module-transforms" "^7.23.3" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-transform-named-capturing-groups-regex@^7.22.5": version "7.22.5" @@ -684,223 +705,223 @@ "@babel/helper-create-regexp-features-plugin" "^7.22.5" "@babel/helper-plugin-utils" "^7.22.5" -"@babel/plugin-transform-new-target@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz#5491bb78ed6ac87e990957cea367eab781c4d980" - integrity sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ== +"@babel/plugin-transform-new-target@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz#29c59988fa3d0157de1c871a28cd83096363cc34" + integrity sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11", "@babel/plugin-transform-nullish-coalescing-operator@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz#45556aad123fc6e52189ea749e33ce090637346e" - integrity sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA== +"@babel/plugin-transform-nullish-coalescing-operator@^7.22.11", "@babel/plugin-transform-nullish-coalescing-operator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz#0cd494bb97cb07d428bd651632cb9d4140513988" + integrity sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-transform-numeric-separator@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz#03d08e3691e405804ecdd19dd278a40cca531f29" - integrity sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q== +"@babel/plugin-transform-numeric-separator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz#5bc019ce5b3435c1cadf37215e55e433d674d4e8" + integrity sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-transform-object-rest-spread@^7.24.0": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.0.tgz#7b836ad0088fdded2420ce96d4e1d3ed78b71df1" - integrity sha512-y/yKMm7buHpFFXfxVFS4Vk1ToRJDilIa6fKRioB9Vjichv58TDGXTvqV0dN7plobAmTW5eSEGXDngE+Mm+uO+w== +"@babel/plugin-transform-object-rest-spread@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz#5a3ce73caf0e7871a02e1c31e8b473093af241ff" + integrity sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA== dependencies: - "@babel/compat-data" "^7.23.5" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.23.3" + "@babel/plugin-transform-parameters" "^7.24.1" -"@babel/plugin-transform-object-super@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz#81fdb636dcb306dd2e4e8fd80db5b2362ed2ebcd" - integrity sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA== +"@babel/plugin-transform-object-super@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz#e71d6ab13483cca89ed95a474f542bbfc20a0520" + integrity sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-replace-supers" "^7.22.20" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-replace-supers" "^7.24.1" -"@babel/plugin-transform-optional-catch-binding@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz#318066de6dacce7d92fa244ae475aa8d91778017" - integrity sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A== +"@babel/plugin-transform-optional-catch-binding@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz#92a3d0efe847ba722f1a4508669b23134669e2da" + integrity sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-transform-optional-chaining@^7.23.0", "@babel/plugin-transform-optional-chaining@^7.23.3", "@babel/plugin-transform-optional-chaining@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz#6acf61203bdfc4de9d4e52e64490aeb3e52bd017" - integrity sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA== +"@babel/plugin-transform-optional-chaining@^7.23.0", "@babel/plugin-transform-optional-chaining@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz#26e588acbedce1ab3519ac40cc748e380c5291e6" + integrity sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" "@babel/plugin-syntax-optional-chaining" "^7.8.3" -"@babel/plugin-transform-parameters@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz#83ef5d1baf4b1072fa6e54b2b0999a7b2527e2af" - integrity sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw== +"@babel/plugin-transform-parameters@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz#983c15d114da190506c75b616ceb0f817afcc510" + integrity sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-private-methods@^7.22.5", "@babel/plugin-transform-private-methods@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz#b2d7a3c97e278bfe59137a978d53b2c2e038c0e4" - integrity sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g== +"@babel/plugin-transform-private-methods@^7.22.5", "@babel/plugin-transform-private-methods@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz#a0faa1ae87eff077e1e47a5ec81c3aef383dc15a" + integrity sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-private-property-in-object@^7.23.4": - version "7.23.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz#3ec711d05d6608fd173d9b8de39872d8dbf68bf5" - integrity sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A== +"@babel/plugin-transform-private-property-in-object@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz#756443d400274f8fb7896742962cc1b9f25c1f6a" + integrity sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-create-class-features-plugin" "^7.24.1" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" -"@babel/plugin-transform-property-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz#54518f14ac4755d22b92162e4a852d308a560875" - integrity sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw== +"@babel/plugin-transform-property-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz#d6a9aeab96f03749f4eebeb0b6ea8e90ec958825" + integrity sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-transform-react-jsx-self@^7.18.6", "@babel/plugin-transform-react-jsx-self@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.23.3.tgz#ed3e7dadde046cce761a8e3cf003a13d1a7972d9" - integrity sha512-qXRvbeKDSfwnlJnanVRp0SfuWE5DQhwQr5xtLBzp56Wabyo+4CMosF6Kfp+eOD/4FYpql64XVJ2W0pVLlJZxOQ== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.24.1.tgz#a21d866d8167e752c6a7c4555dba8afcdfce6268" + integrity sha512-kDJgnPujTmAZ/9q2CN4m2/lRsUUPDvsG3+tSHWUJIzMGTt5U/b/fwWd3RO3n+5mjLrsBrVa5eKFRVSQbi3dF1w== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/plugin-transform-react-jsx-source@^7.19.6", "@babel/plugin-transform-react-jsx-source@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.23.3.tgz#03527006bdc8775247a78643c51d4e715fe39a3e" - integrity sha512-91RS0MDnAWDNvGC6Wio5XYkyWI39FMFO+JK9+4AlgaTH+yWwVTsw7/sn6LK0lH7c5F+TFkpv/3LfCJ1Ydwof/g== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.24.1.tgz#a2dedb12b09532846721b5df99e52ef8dc3351d0" + integrity sha512-1v202n7aUq4uXAieRTKcwPzNyphlCuqHHDcdSNc+vdhoTEZcFMh+L5yZuCmGaIO7bs1nJUNfHB89TZyoL48xNA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-regenerator@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz#141afd4a2057298602069fce7f2dc5173e6c561c" - integrity sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ== +"@babel/plugin-transform-regenerator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz#625b7545bae52363bdc1fbbdc7252b5046409c8c" + integrity sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" regenerator-transform "^0.15.2" -"@babel/plugin-transform-reserved-words@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz#4130dcee12bd3dd5705c587947eb715da12efac8" - integrity sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg== +"@babel/plugin-transform-reserved-words@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz#8de729f5ecbaaf5cf83b67de13bad38a21be57c1" + integrity sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-shorthand-properties@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz#97d82a39b0e0c24f8a981568a8ed851745f59210" - integrity sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg== +"@babel/plugin-transform-shorthand-properties@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz#ba9a09144cf55d35ec6b93a32253becad8ee5b55" + integrity sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-spread@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz#41d17aacb12bde55168403c6f2d6bdca563d362c" - integrity sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg== +"@babel/plugin-transform-spread@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz#a1acf9152cbf690e4da0ba10790b3ac7d2b2b391" + integrity sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.22.5" -"@babel/plugin-transform-sticky-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz#dec45588ab4a723cb579c609b294a3d1bd22ff04" - integrity sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg== +"@babel/plugin-transform-sticky-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz#f03e672912c6e203ed8d6e0271d9c2113dc031b9" + integrity sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-template-literals@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz#5f0f028eb14e50b5d0f76be57f90045757539d07" - integrity sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg== +"@babel/plugin-transform-template-literals@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz#15e2166873a30d8617e3e2ccadb86643d327aab7" + integrity sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-typeof-symbol@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz#9dfab97acc87495c0c449014eb9c547d8966bca4" - integrity sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ== +"@babel/plugin-transform-typeof-symbol@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz#6831f78647080dec044f7e9f68003d99424f94c7" + integrity sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-typescript@^7.23.3": - version "7.23.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz#aa36a94e5da8d94339ae3a4e22d40ed287feb34c" - integrity sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA== +"@babel/plugin-transform-typescript@^7.24.1": + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.4.tgz#03e0492537a4b953e491f53f2bc88245574ebd15" + integrity sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g== dependencies: "@babel/helper-annotate-as-pure" "^7.22.5" - "@babel/helper-create-class-features-plugin" "^7.23.6" - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/plugin-syntax-typescript" "^7.23.3" + "@babel/helper-create-class-features-plugin" "^7.24.4" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/plugin-syntax-typescript" "^7.24.1" -"@babel/plugin-transform-unicode-escapes@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz#1f66d16cab01fab98d784867d24f70c1ca65b925" - integrity sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q== +"@babel/plugin-transform-unicode-escapes@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz#fb3fa16676549ac7c7449db9b342614985c2a3a4" + integrity sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-unicode-property-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz#19e234129e5ffa7205010feec0d94c251083d7ad" - integrity sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA== +"@babel/plugin-transform-unicode-property-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz#56704fd4d99da81e5e9f0c0c93cabd91dbc4889e" + integrity sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-unicode-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz#26897708d8f42654ca4ce1b73e96140fbad879dc" - integrity sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw== +"@babel/plugin-transform-unicode-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz#57c3c191d68f998ac46b708380c1ce4d13536385" + integrity sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" -"@babel/plugin-transform-unicode-sets-regex@^7.23.3": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz#4fb6f0a719c2c5859d11f6b55a050cc987f3799e" - integrity sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw== +"@babel/plugin-transform-unicode-sets-regex@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz#c1ea175b02afcffc9cf57a9c4658326625165b7f" + integrity sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA== dependencies: "@babel/helper-create-regexp-features-plugin" "^7.22.15" - "@babel/helper-plugin-utils" "^7.22.5" + "@babel/helper-plugin-utils" "^7.24.0" "@babel/preset-env@^7.23.2": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.0.tgz#11536a7f4b977294f0bdfad780f01a8ac8e183fc" - integrity sha512-ZxPEzV9IgvGn73iK0E6VB9/95Nd7aMFpbE0l8KQFDG70cOV9IxRP7Y2FUPmlK0v6ImlLqYX50iuZ3ZTVhOF2lA== + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.24.4.tgz#46dbbcd608771373b88f956ffb67d471dce0d23b" + integrity sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A== dependencies: - "@babel/compat-data" "^7.23.5" + "@babel/compat-data" "^7.24.4" "@babel/helper-compilation-targets" "^7.23.6" "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-validator-option" "^7.23.5" - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.23.3" - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.23.3" - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.23.7" + "@babel/plugin-bugfix-firefox-class-in-computed-class-key" "^7.24.4" + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.24.1" + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.24.1" + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly" "^7.24.1" "@babel/plugin-proposal-private-property-in-object" "7.21.0-placeholder-for-preset-env.2" "@babel/plugin-syntax-async-generators" "^7.8.4" "@babel/plugin-syntax-class-properties" "^7.12.13" "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.23.3" - "@babel/plugin-syntax-import-attributes" "^7.23.3" + "@babel/plugin-syntax-import-assertions" "^7.24.1" + "@babel/plugin-syntax-import-attributes" "^7.24.1" "@babel/plugin-syntax-import-meta" "^7.10.4" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" @@ -912,69 +933,69 @@ "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-syntax-top-level-await" "^7.14.5" "@babel/plugin-syntax-unicode-sets-regex" "^7.18.6" - "@babel/plugin-transform-arrow-functions" "^7.23.3" - "@babel/plugin-transform-async-generator-functions" "^7.23.9" - "@babel/plugin-transform-async-to-generator" "^7.23.3" - "@babel/plugin-transform-block-scoped-functions" "^7.23.3" - "@babel/plugin-transform-block-scoping" "^7.23.4" - "@babel/plugin-transform-class-properties" "^7.23.3" - "@babel/plugin-transform-class-static-block" "^7.23.4" - "@babel/plugin-transform-classes" "^7.23.8" - "@babel/plugin-transform-computed-properties" "^7.23.3" - "@babel/plugin-transform-destructuring" "^7.23.3" - "@babel/plugin-transform-dotall-regex" "^7.23.3" - "@babel/plugin-transform-duplicate-keys" "^7.23.3" - "@babel/plugin-transform-dynamic-import" "^7.23.4" - "@babel/plugin-transform-exponentiation-operator" "^7.23.3" - "@babel/plugin-transform-export-namespace-from" "^7.23.4" - "@babel/plugin-transform-for-of" "^7.23.6" - "@babel/plugin-transform-function-name" "^7.23.3" - "@babel/plugin-transform-json-strings" "^7.23.4" - "@babel/plugin-transform-literals" "^7.23.3" - "@babel/plugin-transform-logical-assignment-operators" "^7.23.4" - "@babel/plugin-transform-member-expression-literals" "^7.23.3" - "@babel/plugin-transform-modules-amd" "^7.23.3" - "@babel/plugin-transform-modules-commonjs" "^7.23.3" - "@babel/plugin-transform-modules-systemjs" "^7.23.9" - "@babel/plugin-transform-modules-umd" "^7.23.3" + "@babel/plugin-transform-arrow-functions" "^7.24.1" + "@babel/plugin-transform-async-generator-functions" "^7.24.3" + "@babel/plugin-transform-async-to-generator" "^7.24.1" + "@babel/plugin-transform-block-scoped-functions" "^7.24.1" + "@babel/plugin-transform-block-scoping" "^7.24.4" + "@babel/plugin-transform-class-properties" "^7.24.1" + "@babel/plugin-transform-class-static-block" "^7.24.4" + "@babel/plugin-transform-classes" "^7.24.1" + "@babel/plugin-transform-computed-properties" "^7.24.1" + "@babel/plugin-transform-destructuring" "^7.24.1" + "@babel/plugin-transform-dotall-regex" "^7.24.1" + "@babel/plugin-transform-duplicate-keys" "^7.24.1" + "@babel/plugin-transform-dynamic-import" "^7.24.1" + "@babel/plugin-transform-exponentiation-operator" "^7.24.1" + "@babel/plugin-transform-export-namespace-from" "^7.24.1" + "@babel/plugin-transform-for-of" "^7.24.1" + "@babel/plugin-transform-function-name" "^7.24.1" + "@babel/plugin-transform-json-strings" "^7.24.1" + "@babel/plugin-transform-literals" "^7.24.1" + "@babel/plugin-transform-logical-assignment-operators" "^7.24.1" + "@babel/plugin-transform-member-expression-literals" "^7.24.1" + "@babel/plugin-transform-modules-amd" "^7.24.1" + "@babel/plugin-transform-modules-commonjs" "^7.24.1" + "@babel/plugin-transform-modules-systemjs" "^7.24.1" + "@babel/plugin-transform-modules-umd" "^7.24.1" "@babel/plugin-transform-named-capturing-groups-regex" "^7.22.5" - "@babel/plugin-transform-new-target" "^7.23.3" - "@babel/plugin-transform-nullish-coalescing-operator" "^7.23.4" - "@babel/plugin-transform-numeric-separator" "^7.23.4" - "@babel/plugin-transform-object-rest-spread" "^7.24.0" - "@babel/plugin-transform-object-super" "^7.23.3" - "@babel/plugin-transform-optional-catch-binding" "^7.23.4" - "@babel/plugin-transform-optional-chaining" "^7.23.4" - "@babel/plugin-transform-parameters" "^7.23.3" - "@babel/plugin-transform-private-methods" "^7.23.3" - "@babel/plugin-transform-private-property-in-object" "^7.23.4" - "@babel/plugin-transform-property-literals" "^7.23.3" - "@babel/plugin-transform-regenerator" "^7.23.3" - "@babel/plugin-transform-reserved-words" "^7.23.3" - "@babel/plugin-transform-shorthand-properties" "^7.23.3" - "@babel/plugin-transform-spread" "^7.23.3" - "@babel/plugin-transform-sticky-regex" "^7.23.3" - "@babel/plugin-transform-template-literals" "^7.23.3" - "@babel/plugin-transform-typeof-symbol" "^7.23.3" - "@babel/plugin-transform-unicode-escapes" "^7.23.3" - "@babel/plugin-transform-unicode-property-regex" "^7.23.3" - "@babel/plugin-transform-unicode-regex" "^7.23.3" - "@babel/plugin-transform-unicode-sets-regex" "^7.23.3" + "@babel/plugin-transform-new-target" "^7.24.1" + "@babel/plugin-transform-nullish-coalescing-operator" "^7.24.1" + "@babel/plugin-transform-numeric-separator" "^7.24.1" + "@babel/plugin-transform-object-rest-spread" "^7.24.1" + "@babel/plugin-transform-object-super" "^7.24.1" + "@babel/plugin-transform-optional-catch-binding" "^7.24.1" + "@babel/plugin-transform-optional-chaining" "^7.24.1" + "@babel/plugin-transform-parameters" "^7.24.1" + "@babel/plugin-transform-private-methods" "^7.24.1" + "@babel/plugin-transform-private-property-in-object" "^7.24.1" + "@babel/plugin-transform-property-literals" "^7.24.1" + "@babel/plugin-transform-regenerator" "^7.24.1" + "@babel/plugin-transform-reserved-words" "^7.24.1" + "@babel/plugin-transform-shorthand-properties" "^7.24.1" + "@babel/plugin-transform-spread" "^7.24.1" + "@babel/plugin-transform-sticky-regex" "^7.24.1" + "@babel/plugin-transform-template-literals" "^7.24.1" + "@babel/plugin-transform-typeof-symbol" "^7.24.1" + "@babel/plugin-transform-unicode-escapes" "^7.24.1" + "@babel/plugin-transform-unicode-property-regex" "^7.24.1" + "@babel/plugin-transform-unicode-regex" "^7.24.1" + "@babel/plugin-transform-unicode-sets-regex" "^7.24.1" "@babel/preset-modules" "0.1.6-no-external-plugins" - babel-plugin-polyfill-corejs2 "^0.4.8" - babel-plugin-polyfill-corejs3 "^0.9.0" - babel-plugin-polyfill-regenerator "^0.5.5" + babel-plugin-polyfill-corejs2 "^0.4.10" + babel-plugin-polyfill-corejs3 "^0.10.4" + babel-plugin-polyfill-regenerator "^0.6.1" core-js-compat "^3.31.0" semver "^6.3.1" "@babel/preset-flow@^7.22.15": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.24.0.tgz#0de60271b0a439b415501c5b28f685fbcb080e1c" - integrity sha512-cum/nSi82cDaSJ21I4PgLTVlj0OXovFk6GRguJYe/IKg6y6JHLTbJhybtX4k35WT9wdeJfEVjycTixMhBHd0Dg== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/preset-flow/-/preset-flow-7.24.1.tgz#da7196c20c2d7dd4e98cfd8b192fe53b5eb6f0bb" + integrity sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA== dependencies: "@babel/helper-plugin-utils" "^7.24.0" "@babel/helper-validator-option" "^7.23.5" - "@babel/plugin-transform-flow-strip-types" "^7.23.3" + "@babel/plugin-transform-flow-strip-types" "^7.24.1" "@babel/preset-modules@0.1.6-no-external-plugins": version "0.1.6-no-external-plugins" @@ -986,15 +1007,15 @@ esutils "^2.0.2" "@babel/preset-typescript@^7.23.0": - version "7.23.3" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.23.3.tgz#14534b34ed5b6d435aa05f1ae1c5e7adcc01d913" - integrity sha512-17oIGVlqz6CchO9RFYn5U6ZpWRZIngayYCtrPRSgANSwC2V1Jb+iP74nVxzzXJte8b8BYxrL1yY96xfhTBrNNQ== + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz#89bdf13a3149a17b3b2a2c9c62547f06db8845ec" + integrity sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ== dependencies: - "@babel/helper-plugin-utils" "^7.22.5" - "@babel/helper-validator-option" "^7.22.15" - "@babel/plugin-syntax-jsx" "^7.23.3" - "@babel/plugin-transform-modules-commonjs" "^7.23.3" - "@babel/plugin-transform-typescript" "^7.23.3" + "@babel/helper-plugin-utils" "^7.24.0" + "@babel/helper-validator-option" "^7.23.5" + "@babel/plugin-syntax-jsx" "^7.24.1" + "@babel/plugin-transform-modules-commonjs" "^7.24.1" + "@babel/plugin-transform-typescript" "^7.24.1" "@babel/register@^7.22.15": version "7.23.7" @@ -1013,17 +1034,17 @@ integrity sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA== "@babel/runtime-corejs3@^7.12.1": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.24.0.tgz#34243e29e369a762dd2a356fee65c3767973828a" - integrity sha512-HxiRMOncx3ly6f3fcZ1GVKf+/EROcI9qwPgmij8Czqy6Okm/0T37T4y2ZIlLUuEUFjtM7NRsfdCO8Y3tAiJZew== + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.24.4.tgz#b9ebe728087cfbb22bbaccc6f9a70d69834124a0" + integrity sha512-VOQOexSilscN24VEY810G/PqtpFvx/z6UqDIjIWbDe2368HhDLkYN5TYwaEz/+eRCUkhJ2WaNLLmQAlxzfWj4w== dependencies: core-js-pure "^3.30.2" regenerator-runtime "^0.14.0" "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.5", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.1", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.17.8", "@babel/runtime@^7.18.3", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.23.8", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.2", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.0.tgz#584c450063ffda59697021430cb47101b085951e" - integrity sha512-Chk32uHMg6TnQdvw2e9IlqPpFX/6NLuK0Ys2PqLb7/gL5uFn9mXvK715FGLlOLQrcO4qIkNHkvPGktzzXexsFw== + version "7.24.4" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.24.4.tgz#de795accd698007a66ba44add6cc86542aff1edd" + integrity sha512-dkxf7+hn8mFBwKjs9bvBlArzLVxVbS8usaPUDd5p2a9JCL9tB8OaOVN1isD4+Xyk4ns89/xeOmbQvgdK7IIVdA== dependencies: regenerator-runtime "^0.14.0" @@ -1036,23 +1057,23 @@ "@babel/parser" "^7.24.0" "@babel/types" "^7.24.0" -"@babel/traverse@^7.18.9", "@babel/traverse@^7.23.2", "@babel/traverse@^7.24.0", "@babel/traverse@^7.4.5", "@babel/traverse@^7.8.3": - version "7.24.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.0.tgz#4a408fbf364ff73135c714a2ab46a5eab2831b1e" - integrity sha512-HfuJlI8qq3dEDmNU5ChzzpZRWq+oxCZQyMzIMEqLho+AQnhMnKQUzH6ydo3RBl/YjPCuk68Y6s0Gx0AeyULiWw== +"@babel/traverse@^7.18.9", "@babel/traverse@^7.23.2", "@babel/traverse@^7.24.1", "@babel/traverse@^7.4.5", "@babel/traverse@^7.8.3": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.1.tgz#d65c36ac9dd17282175d1e4a3c49d5b7988f530c" + integrity sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ== dependencies: - "@babel/code-frame" "^7.23.5" - "@babel/generator" "^7.23.6" + "@babel/code-frame" "^7.24.1" + "@babel/generator" "^7.24.1" "@babel/helper-environment-visitor" "^7.22.20" "@babel/helper-function-name" "^7.23.0" "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.24.0" + "@babel/parser" "^7.24.1" "@babel/types" "^7.24.0" debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.18.9", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6", "@babel/types@^7.24.0", "@babel/types@^7.4.4": +"@babel/types@^7.0.0", "@babel/types@^7.18.9", "@babel/types@^7.20.7", "@babel/types@^7.22.15", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0", "@babel/types@^7.4.4": version "7.24.0" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf" integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== @@ -1081,87 +1102,87 @@ resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.6.0.tgz#ec6cd237440700bc23ca23087f513c75508958b0" integrity sha512-Ir+AOibqzrIsL6ajt3Rz3LskB7OiMVHqltZmspbW/TJuTVuyOMirVqAkjfY6JISiLHgyNqicAC8AyHHGzNd/dA== -"@csstools/cascade-layer-name-parser@^1.0.8": - version "1.0.8" - resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.8.tgz#24d841d80e78f6c2970a36d53e6b58e8fcea41f6" - integrity sha512-xHxXavWvXB5nAA9IvZtjEzkONM3hPXpxqYK4cEw60LcqPiFjq7ZlEFxOyYFPrG4UdANKtnucNtRVDy7frjq6AA== +"@csstools/cascade-layer-name-parser@^1.0.9": + version "1.0.9" + resolved "https://registry.yarnpkg.com/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.9.tgz#7093f9c26fd92dee87d853a97de0647c5a8c4262" + integrity sha512-RRqNjxTZDUhx7pxYOBG/AkCVmPS3zYzfE47GEhIGkFuWFTQGJBgWOUUkKNo5MfxIfjDz5/1L3F3rF1oIsYaIpw== -"@csstools/color-helpers@^4.0.0": - version "4.0.0" - resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-4.0.0.tgz#a1d6ffcefe5c1d389cbcca15f46da3cdaf241443" - integrity sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w== +"@csstools/color-helpers@^4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@csstools/color-helpers/-/color-helpers-4.2.0.tgz#e8629ca9dce03a3a309506e7892b7f862673cf85" + integrity sha512-hJJrSBzbfGxUsaR6X4Bzd/FLx0F1ulKnR5ljY9AiXCtsR+H+zSWQDFWlKES1BRaVZTDHLpIIHS9K2o0h+JLlrg== "@csstools/convert-colors@^1.4.0": version "1.4.0" resolved "https://registry.yarnpkg.com/@csstools/convert-colors/-/convert-colors-1.4.0.tgz#ad495dc41b12e75d588c6db8b9834f08fa131eb7" integrity sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw== -"@csstools/css-calc@^1.1.7": - version "1.1.7" - resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.1.7.tgz#89b5cde81ecb4686d9abd66b7eb54015cf39c442" - integrity sha512-+7bUzB5I4cI97tKmBJA8ilTl/YRo6VAOdlrnd/4x2NyK60nvYurGKa5TZpE1zcgIrTC97iJRE0/V65feyFytuw== +"@csstools/css-calc@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@csstools/css-calc/-/css-calc-1.2.0.tgz#a45145a868e644c31c79baf74c8de64fd09b3415" + integrity sha512-iQqIW5vDPqQdLx07/atCuNKDprhIWjB0b8XRhUyXZWBZYUG+9mNyFwyu30rypX84WLevVo25NYW2ipxR8WyseQ== -"@csstools/css-color-parser@^1.5.2": - version "1.5.2" - resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-1.5.2.tgz#4fdf8e23960b4724913f7cbfd4f413eb8f35724b" - integrity sha512-5GEkuuUxD5dael3xoWjyf7gAPAi4pwm8X8JW/nUMhxntGY4Wo4Lp7vKlex4V5ZgTfAoov14rZFsZyOantdTatg== +"@csstools/css-color-parser@^2.0.0": + version "2.0.0" + resolved "https://registry.yarnpkg.com/@csstools/css-color-parser/-/css-color-parser-2.0.0.tgz#8e75d1b4a857317f537b3c0a223be0ef1735bbdb" + integrity sha512-0/v6OPpcg+b8TJT2N1Rcp0oH5xEvVOU5K2qDkaR3IMHNXuJ7XfVCQLINt3Cuj8mr54DbilEoZ9uvAmHBoZ//Fw== dependencies: - "@csstools/color-helpers" "^4.0.0" - "@csstools/css-calc" "^1.1.7" + "@csstools/color-helpers" "^4.2.0" + "@csstools/css-calc" "^1.2.0" -"@csstools/css-parser-algorithms@^2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.6.0.tgz#b45d3c7cbdd4214261724c82f96e33c746fedd58" - integrity sha512-YfEHq0eRH98ffb5/EsrrDspVWAuph6gDggAE74ZtjecsmyyWpW768hOyiONa8zwWGbIWYfa2Xp4tRTrpQQ00CQ== +"@csstools/css-parser-algorithms@^2.6.1": + version "2.6.1" + resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.6.1.tgz#c45440d1efa2954006748a01697072dae5881bcd" + integrity sha512-ubEkAaTfVZa+WwGhs5jbo5Xfqpeaybr/RvWzvFxRs4jfq16wH8l8Ty/QEEpINxll4xhuGfdMbipRyz5QZh9+FA== -"@csstools/css-tokenizer@^2.2.3": - version "2.2.3" - resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.2.3.tgz#b099d543ea57b64f495915a095ead583866c50c6" - integrity sha512-pp//EvZ9dUmGuGtG1p+n17gTHEOqu9jO+FiCUjNN3BDmyhdA2Jq9QsVeR7K8/2QCK17HSsioPlTW9ZkzoWb3Lg== +"@csstools/css-tokenizer@^2.2.4": + version "2.2.4" + resolved "https://registry.yarnpkg.com/@csstools/css-tokenizer/-/css-tokenizer-2.2.4.tgz#a4b8718ed7fcd2dcd555de16b31ca59ad4b96a06" + integrity sha512-PuWRAewQLbDhGeTvFuq2oClaSCKPIBmHyIobCV39JHRYN0byDcUWJl5baPeNUcqrjtdMNqFooE0FGl31I3JOqw== -"@csstools/media-query-list-parser@^2.1.8": - version "2.1.8" - resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.8.tgz#36157fbe54ea30d5f2b1767c69fcdf92048a7b1d" - integrity sha512-DiD3vG5ciNzeuTEoh74S+JMjQDs50R3zlxHnBnfd04YYfA/kh2KiBCGhzqLxlJcNq+7yNQ3stuZZYLX6wK/U2g== +"@csstools/media-query-list-parser@^2.1.9": + version "2.1.9" + resolved "https://registry.yarnpkg.com/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.9.tgz#feb4b7268f998956eb3ded69507869e73d005dda" + integrity sha512-qqGuFfbn4rUmyOB0u8CVISIp5FfJ5GAR3mBrZ9/TKndHakdnm6pY0L/fbLcpPnrzwCyyTEZl1nUcXAYHEWneTA== "@csstools/postcss-cascade-layers@^4.0.1": - version "4.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.3.tgz#2805dbb8dec661101928298b2e16599edf3c2bea" - integrity sha512-RbkQoOH23yGhWVetgBTwFgIOHEyU2tKMN7blTz/YAKKabR6tr9pP7mYS23Q9snFY2hr8WSaV8Le64KdM9BtUSA== + version "4.0.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.4.tgz#0f20882d4f528a8128b0855ce63c3e6eee6d1b44" + integrity sha512-MKErv8lpEwVmAcAwidY1Kfd3oWrh2Q14kxHs9xn26XzjP/PrcdngWq63lJsZeMlBY7o+WlEOeE+FP6zPzeY2uw== dependencies: - "@csstools/selector-specificity" "^3.0.2" + "@csstools/selector-specificity" "^3.0.3" postcss-selector-parser "^6.0.13" "@csstools/postcss-color-function@^3.0.7": - version "3.0.10" - resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.10.tgz#708d34f24daf5ff9978d2d4e8d3413f638a41158" - integrity sha512-jxiXmSl4ZYX8KewFjL5ef6of9uW73VkaHeDb2tqb5q4ZDPYxjusNX1KJ8UXY8+7ydqS5QBo42tVMrSMGy+rDmw== - dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + version "3.0.14" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-function/-/postcss-color-function-3.0.14.tgz#b148f611626a0b6dfd66319b7921b7419b2318a0" + integrity sha512-joGAf5bT3Jg1CpybupMJ4DwNg/VNjmLWZoWMDmX0MTy/ftHA1Qr4+CslqTT4AA1n6Dx4Wa+DSMGPrDLHtRP0jg== + dependencies: + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" "@csstools/postcss-color-mix-function@^2.0.7": - version "2.0.10" - resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.10.tgz#fd86d1f3b334fb59a3558d33f121ce5dff758da8" - integrity sha512-zeD856+FDCUjB077pPS+Z9OnTQnqpiJrao3TW+sasCb/gJ3vZCX7sRSRFsRUo0/MntTtJu9hkKv9eMkFmfjydA== + version "2.0.14" + resolved "https://registry.yarnpkg.com/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.14.tgz#5baec0e7b4ef488e830ef702c85f1d45ef2193df" + integrity sha512-ZLbgtdhyuOoWoRo/W8jFv68q+IMgTJHOAI+WunRbrRPqI+vJ0K2rud/lS9Se5urzM/imVKs/kz0Uobm5Yj4HUg== dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" "@csstools/postcss-exponential-functions@^1.0.1": - version "1.0.4" - resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.4.tgz#c8c3773d4f761428717b80803302722ed2f849f1" - integrity sha512-frMf0CFVnZoGEKAHlxLy3s4g/tpjyFn5+A+h895UJNm9Uc+ewGT7+EeK7Kh9IHH4pD4FkaGW1vOQtER00PLurQ== + version "1.0.5" + resolved "https://registry.yarnpkg.com/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.5.tgz#ac6f9e545cf6bbf9d6bad11e655ca693c4982e58" + integrity sha512-7S7I7KgwHWQYzJJAoIjRtUf7DQs1dxipeg1A6ikZr0PYapNJX7UHz0evlpE67SQqYj1xBs70gpG7xUv3uLp4PA== dependencies: - "@csstools/css-calc" "^1.1.7" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" + "@csstools/css-calc" "^1.2.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" "@csstools/postcss-font-format-keywords@^3.0.0": version "3.0.2" @@ -1172,42 +1193,42 @@ postcss-value-parser "^4.2.0" "@csstools/postcss-gamut-mapping@^1.0.0": - version "1.0.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.3.tgz#e5323fb1bf46f6d32d760e98028a8e9da9d8fe4b" - integrity sha512-P0+ude1KyCy9LXOe2pHJmpcXK4q/OQbr2Sn2wQSssMw0rALGmny2MfHiCqEu8n6mf2cN6lWDZdzY8enBk8WHXQ== + version "1.0.7" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.7.tgz#6413d3f9e2612e9419cc9978aa36f87895f74e88" + integrity sha512-vrsHsl5TN6NB5CT0rPG6JE9V2GLFftcmPtF/k4cWT4gyVMCsDyS9wEVl82sgvh/JQ32TaUo6bh8Ndl+XRJqGQw== dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" "@csstools/postcss-gradients-interpolation-method@^4.0.7": - version "4.0.11" - resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.11.tgz#4e6cf5d6917672058d532d963c709e3776b9ab36" - integrity sha512-LFom5jCVUfzF+iuiOZvhvX7RRN8vc+tKpcKo9s4keEBAU2mPwV5/Fgz5iylEfXP/DZbEdq2C0At20urMi/lupw== - dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + version "4.0.15" + resolved "https://registry.yarnpkg.com/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.15.tgz#6cb6785733da39101e02a8803d374c2fd9c45c2b" + integrity sha512-0xQ5r4WU/6W2lDmnOTx9liC1Cq6RSnrkEzqX7d0cRA3fz5hjC276pA0nLMoAiY3vtAp0u71nTk/3TRdnCx/OUw== + dependencies: + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" "@csstools/postcss-hwb-function@^3.0.6": - version "3.0.9" - resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.9.tgz#15c5b8d43cffe62283b6175494188d6957712d91" - integrity sha512-S3/Z+mGHWIKAex7DLsHFDiku5lBEK34avT2My6sGPNCXB38TZjrKI0rd7JdN9oulem5sn+CU7oONyIftui24oQ== - dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + version "3.0.13" + resolved "https://registry.yarnpkg.com/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.13.tgz#b83c0a4aa962c7182eececaec3d88cc152e8c16a" + integrity sha512-f44tgkFSxJBGm8UjlkAfBP7xE2x2XFFdvNdedHl8jpx2pQcW8a50OT3yeMnM3NB9Y2Ynd7Wn8iXARiV/IHoKvw== + dependencies: + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" "@csstools/postcss-ic-unit@^3.0.2": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.4.tgz#9f4bffaed6ece2a79e1e15fbd7ba6aea8d61c851" - integrity sha512-OB6ojl33/TQHhjVx1NI+n3EnYbdUM6Q/mSUv3WFATdcz7IrH/CmBaZt7P1R6j1Xdp58thIa6jm4Je7saGs+2AA== + version "3.0.6" + resolved "https://registry.yarnpkg.com/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.6.tgz#441f18a9064884e1e6ab77169413e0e6184f5c1d" + integrity sha512-fHaU9C/sZPauXMrzPitZ/xbACbvxbkPpHoUgB9Kw5evtsBWdVkVrajOyiT9qX7/c+G1yjApoQjP1fQatldsy9w== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" postcss-value-parser "^4.2.0" @@ -1217,11 +1238,11 @@ integrity sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg== "@csstools/postcss-is-pseudo-class@^4.0.3": - version "4.0.5" - resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.5.tgz#c2b9a89e8c2f4cb80c3587dae1ed544447bbd16e" - integrity sha512-qG3MI7IN3KY9UwdaE9E7G7sFydscVW7nAj5OGwaBP9tQPEEVdxXTGI+l1ZW5EUpZFSj+u3q/22fH5+8HI72+Bg== + version "4.0.6" + resolved "https://registry.yarnpkg.com/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.6.tgz#149b3bf9dde739932a545079da917ca25464cba0" + integrity sha512-HilOhAsMpFheMYkuaREZx+CGa4hsG6kQdzwXSsuqKDFzYz2eIMP213+3dH/vUbPXaWrzqLKr8m3i0dgYPoh7vg== dependencies: - "@csstools/selector-specificity" "^3.0.2" + "@csstools/selector-specificity" "^3.0.3" postcss-selector-parser "^6.0.13" "@csstools/postcss-logical-float-and-clear@^2.0.0": @@ -1247,31 +1268,31 @@ postcss-value-parser "^4.2.0" "@csstools/postcss-logical-viewport-units@^2.0.3": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.6.tgz#1f91e865e73f5d135038c519957a3b95ffe552ad" - integrity sha512-6hV0ngZh8J7HqNY3kyt+z5ABN/XE18qvrU7ne4YSkKfltrWDnQgGiW/Q+h7bdQz8/W5juAefcdCCAJUIBE7erg== + version "2.0.7" + resolved "https://registry.yarnpkg.com/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.7.tgz#3bb03b9a57fe9ec2304bc35cf6c3d5d7c938ee26" + integrity sha512-L4G3zsp/bnU0+WXUyysihCUH14LkfMgUJsS9vKz3vCYbVobOTqQRoNXnEPpyNp8WYyolLqAWbGGJhVu8J6u2OQ== dependencies: - "@csstools/css-tokenizer" "^2.2.3" + "@csstools/css-tokenizer" "^2.2.4" "@csstools/utilities" "^1.0.0" "@csstools/postcss-media-minmax@^1.1.0": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.3.tgz#87ff7af309916b36fe00e1f4ad6e03a5c16e74b9" - integrity sha512-W9AFRQSLvT+Dxtp20AewzGTUxzkJ21XSKzqRALwQdAv0uJGXkR76qgdhkoX0L/tcV4gXtgDfVtGYL/x2Nz/M5Q== + version "1.1.4" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.4.tgz#1af01cc02fdb936a1c10a11e2663fd1b1ce1bd79" + integrity sha512-xl/PIO3TUbXO1ZA4SA6HCw+Q9UGe2cgeRKx3lHCzoNig2D4bT5vfVCOrwhxjUb09oHihc9eI3I0iIfVPiXaN1A== dependencies: - "@csstools/css-calc" "^1.1.7" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/media-query-list-parser" "^2.1.8" + "@csstools/css-calc" "^1.2.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/media-query-list-parser" "^2.1.9" "@csstools/postcss-media-queries-aspect-ratio-number-values@^2.0.3": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.6.tgz#ca6dae6949bfb0f274a4029776614720e243acbe" - integrity sha512-awc2qenSDvx6r+w6G9xxENp+LsbvHC8mMMV23KYmk4pR3YL8JxeKPDSiDhmqd93FQ9nNNDc/CaCQEcvP+GV4rw== + version "2.0.7" + resolved "https://registry.yarnpkg.com/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.7.tgz#5f4939e6330a3c2cd0cba1e1b76bc51a74dc839c" + integrity sha512-HBDAQw1K0NilcHGMUHv8jzf2mpOtcWTVKtuY3AeZ5TS1uyWWNVi5/yuA/tREPLU9WifNdqHQ+rfbsV/8zTIkTg== dependencies: - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/media-query-list-parser" "^2.1.8" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/media-query-list-parser" "^2.1.9" "@csstools/postcss-nested-calc@^3.0.0": version "3.0.2" @@ -1289,32 +1310,32 @@ postcss-value-parser "^4.2.0" "@csstools/postcss-oklab-function@^3.0.7": - version "3.0.10" - resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.10.tgz#9f230ce28a266de8a8e264025aebce41313d4053" - integrity sha512-s9trs1c+gUMtaTtwrrIpdVQkUbRuwi6bQ9rBHaqwt4kd3kEnEYfP85uLY1inFx6Rt8OM2XVg3PSYbfnFSAO51A== - dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + version "3.0.14" + resolved "https://registry.yarnpkg.com/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.14.tgz#7d8b2e9c46c72f019962cfa375f46582c49281a5" + integrity sha512-92xdpcfc2wB3z4+GftPA0PXMuGI/tRLw9Tc0+HzpaAHHxyLK6aCJtoQIcw0Ox/PthXtqXZn/3wWT/Idfe8I7Wg== + dependencies: + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" -"@csstools/postcss-progressive-custom-properties@^3.0.2", "@csstools/postcss-progressive-custom-properties@^3.1.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.1.0.tgz#e4d6143b3ba50d1f7435932fd112db31e18f05af" - integrity sha512-Mfb1T1BHa6pktLI+poMEHI7Q+VYvAsdwJZPFsSkIB2ZUsawCiPxXLw06BKSVPITxFlaY/FEUzfpyOTfX9YCE2w== +"@csstools/postcss-progressive-custom-properties@^3.0.2", "@csstools/postcss-progressive-custom-properties@^3.2.0": + version "3.2.0" + resolved "https://registry.yarnpkg.com/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.2.0.tgz#811da8616938e8148a7c4fb40c26e30bf94d4ceb" + integrity sha512-BZlirVxCRgKlE7yVme+Xvif72eTn1MYXj8oZ4Knb+jwaH4u3AN1DjbhM7j86RP5vvuAOexJ4JwfifYYKWMN/QQ== dependencies: postcss-value-parser "^4.2.0" "@csstools/postcss-relative-color-syntax@^2.0.7": - version "2.0.10" - resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.10.tgz#07b9484c841623e32777bd7becac7679ce62c08d" - integrity sha512-IkTIk9Eq2VegSN4lgsljGY8boyfX3l3Pw58e+R9oyPe/Ye7r3NwuiQ3w0nkXoQ+RC+d240V6n7eZme2mEPqQvg== + version "2.0.14" + resolved "https://registry.yarnpkg.com/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.14.tgz#a983c3c3d389905037776f36f7fb6611d4de6316" + integrity sha512-NlxgLjAjVCTUVGiWk8WNj3dKvux9eC6O5aLM3BmdA8UXEwBHYI9r4IqlanxG9PlcXnzhTUX6eZsqgmxwt4FPow== dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" "@csstools/postcss-scope-pseudo-class@^3.0.0": @@ -1325,60 +1346,55 @@ postcss-selector-parser "^6.0.13" "@csstools/postcss-stepped-value-functions@^3.0.2": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.5.tgz#857cf8eb6bb6ac2831cabe58c15604cfb95af1b2" - integrity sha512-B8K8RaTrYVZLxbNzVUvFO3SlCDJDaUTAO7KRth05fa7f01ufPvb6ztdBuxSoRwOtmNp8iROxPJHOemWo2kBBtA== + version "3.0.6" + resolved "https://registry.yarnpkg.com/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.6.tgz#8263ddafab483100e13d63929d43cd12fb14767f" + integrity sha512-rnyp8tWRuBXERTHVdB5hjUlif5dQgPcyN+BX55wUnYpZ3LN9QPfK2Z3/HUZymwyou8Gg6vhd6X2W+g1pLq1jYg== dependencies: - "@csstools/css-calc" "^1.1.7" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" + "@csstools/css-calc" "^1.2.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" "@csstools/postcss-text-decoration-shorthand@^3.0.3": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.4.tgz#b8c5216faa2c9d8a05b3f93da7b403dd5dd53a79" - integrity sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ== + version "3.0.6" + resolved "https://registry.yarnpkg.com/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.6.tgz#108afc5a66b96db3d0cca4f5d9414559c6b7a0bf" + integrity sha512-Q8HEu4AEiwNVZBD6+DpQ8M9SajpMow4+WtmndWIAv8qxDtDYL4JK1xXWkhOGk28PrcJawOvkrEZ8Ri59UN1TJw== dependencies: - "@csstools/color-helpers" "^4.0.0" + "@csstools/color-helpers" "^4.2.0" postcss-value-parser "^4.2.0" "@csstools/postcss-trigonometric-functions@^3.0.2": - version "3.0.5" - resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.5.tgz#bf9f061120bed802fe133188a94c82ba79c440d6" - integrity sha512-RhBfQ0TsBudyPuoo8pXKdfQuUiQxMU/Sc5GyV57bWk93JbUHXq6b4CdPx+B/tHUeFKvocVJn/e2jbu96rh0d3Q== + version "3.0.6" + resolved "https://registry.yarnpkg.com/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.6.tgz#f8227f1807d28e817e4ff9053093eb8f1bcd9e13" + integrity sha512-i5Zd0bMJooZAn+ZcDmPij2WCkcOJJJ6opzK+QeDjxbMrYmoGQl0CY8FDHdeQyBF1Nly+Q0Fq3S7QfdNLKBBaCg== dependencies: - "@csstools/css-calc" "^1.1.7" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" + "@csstools/css-calc" "^1.2.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" "@csstools/postcss-unset-value@^3.0.0": version "3.0.1" resolved "https://registry.yarnpkg.com/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.1.tgz#598a25630fd9ab0edf066d235916f7441404942a" integrity sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg== -"@csstools/selector-specificity@^3.0.2": - version "3.0.2" - resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.2.tgz#ea61ba7bb24be3502c6aaa3190ed231f4633a81e" - integrity sha512-RpHaZ1h9LE7aALeQXmXrJkRG84ZxIsctEN2biEUmFyKpzFM3zZ35eUMcIzZFsw/2olQE6v69+esEqU2f1MKycg== +"@csstools/selector-resolve-nested@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@csstools/selector-resolve-nested/-/selector-resolve-nested-1.1.0.tgz#d872f2da402d3ce8bd0cf16ea5f9fba76b18e430" + integrity sha512-uWvSaeRcHyeNenKg8tp17EVDRkpflmdyvbE0DHo6D/GdBb6PDnCYYU6gRpXhtICMGMcahQmj2zGxwFM/WC8hCg== + +"@csstools/selector-specificity@^3.0.3": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@csstools/selector-specificity/-/selector-specificity-3.0.3.tgz#208a3929ee614967a1fc8cd6cb758d9fcbf0caae" + integrity sha512-KEPNw4+WW5AVEIyzC80rTbWEUatTW2lXpN8+8ILC8PiPeWPjwUzrPZDIOZ2wwqDmeqOYTdSGyL3+vE5GC3FB3Q== "@csstools/utilities@^1.0.0": version "1.0.0" resolved "https://registry.yarnpkg.com/@csstools/utilities/-/utilities-1.0.0.tgz#42f3c213f2fb929324d465684ab9f46a0febd4bb" integrity sha512-tAgvZQe/t2mlvpNosA4+CkMiZ2azISW5WPAcdSalZlEjQvUfghHxfQcrCiK/7/CrfAWVxyM88kGFYO82heIGDg== -"@cypress/listr-verbose-renderer@^0.4.1": - version "0.4.1" - resolved "https://registry.yarnpkg.com/@cypress/listr-verbose-renderer/-/listr-verbose-renderer-0.4.1.tgz#a77492f4b11dcc7c446a34b3e28721afd33c642a" - integrity sha512-EDiBsVPWC27DDLEJCo+dpl9ODHhdrwU57ccr9tspwCdG2ni0QVkf6LF0FGbhfujcjPxnXLIwsaks4sOrwrA4Qw== - dependencies: - chalk "^1.1.3" - cli-cursor "^1.0.2" - date-fns "^1.27.2" - figures "^1.7.0" - -"@cypress/request@^2.88.5": - version "2.88.12" - resolved "https://registry.yarnpkg.com/@cypress/request/-/request-2.88.12.tgz#ba4911431738494a85e93fb04498cb38bc55d590" - integrity sha512-tOn+0mDZxASFM+cuAP9szGUGPI1HwWVSvdzm7V4cCsPdFTx6qMj29CwaQmRAMIEhORIUBFBsYROYJcveK4uOjA== +"@cypress/request@^3.0.0": + version "3.0.1" + resolved "https://registry.yarnpkg.com/@cypress/request/-/request-3.0.1.tgz#72d7d5425236a2413bd3d8bb66d02d9dc3168960" + integrity sha512-TWivJlJi8ZDx2wGOw1dbLuHJKUYX7bWySw377nlnGOW3hP9/MUKIsEdXT/YngWxVdgNCHRBmFlBipE+5/2ZZlQ== dependencies: aws-sign2 "~0.7.0" aws4 "^1.8.0" @@ -1393,7 +1409,7 @@ json-stringify-safe "~5.0.1" mime-types "~2.1.19" performance-now "^2.1.0" - qs "~6.10.3" + qs "6.10.4" safe-buffer "^5.1.2" tough-cookie "^4.1.3" tunnel-agent "^0.6.0" @@ -1435,9 +1451,9 @@ integrity sha512-jx8xIWe/Up4tpNuM02M+rbnLoxdngTGk3Y8LjJsLGXXcSoKd/+eZStZcAlIO/jwxyz/bhPZnpqPJZWAmhOofuA== "@electron/asar@^3.2.1": - version "3.2.8" - resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.8.tgz#2ea722f3452583dbd4ffdcc4b4f5dc903f1d8178" - integrity sha512-cmskk5M06ewHMZAplSiF4AlME3IrnnZhKnWbtwKVLRkdJkKyUVjMLhDIiPIx/+6zQWVlKX/LtmK9xDme7540Sg== + version "3.2.9" + resolved "https://registry.yarnpkg.com/@electron/asar/-/asar-3.2.9.tgz#7b3a1fd677b485629f334dd80ced8c85353ba7e7" + integrity sha512-Vu2P3X2gcZ3MY9W7yH72X9+AMXwUQZEJBrsPIbX0JsdllLtoh62/Q8Wg370/DawIEVKOyfD6KtTLo645ezqxUA== dependencies: commander "^5.0.0" glob "^7.1.6" @@ -1467,9 +1483,9 @@ fs-extra "^9.0.1" "@electron/osx-sign@^1.0.4": - version "1.0.5" - resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.0.5.tgz#0af7149f2fce44d1a8215660fd25a9fb610454d8" - integrity sha512-k9ZzUQtamSoweGQDV2jILiRIHUu7lYlJ3c6IEmjv1hC17rclE+eb9U+f6UFlOOETo0JzY1HNlXy4YOlCvl+Lww== + version "1.2.0" + resolved "https://registry.yarnpkg.com/@electron/osx-sign/-/osx-sign-1.2.0.tgz#d1c83cac03e52f210858594eb011142a1ad0ae70" + integrity sha512-kOA3bAeDXFMj2JHj0R2fk/IT92qpu3tZHwM4l/PdksAuy7eA3/23QktCiAoQICwPdtxCYdt9ZLimKvnNyUpdSQ== dependencies: compare-version "^0.1.2" debug "^4.3.4" @@ -1591,9 +1607,9 @@ hoist-non-react-statics "^3.3.1" "@emotion/serialize@^1.1.2", "@emotion/serialize@^1.1.3": - version "1.1.3" - resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.3.tgz#84b77bfcfe3b7bb47d326602f640ccfcacd5ffb0" - integrity sha512-iD4D6QVZFDhcbH0RAG1uVu1CwVLMWUkCvAqqlewO/rxf8+87yIBAlt4+AxMiiKPLs5hFc0owNk/sLLAOROw3cA== + version "1.1.4" + resolved "https://registry.yarnpkg.com/@emotion/serialize/-/serialize-1.1.4.tgz#fc8f6d80c492cfa08801d544a05331d1cc7cd451" + integrity sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ== dependencies: "@emotion/hash" "^0.9.1" "@emotion/memoize" "^0.8.1" @@ -1641,6 +1657,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.19.12.tgz#d1bc06aedb6936b3b6d313bf809a5a40387d2b7f" integrity sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA== +"@esbuild/aix-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz#a70f4ac11c6a1dfc18b8bbb13284155d933b9537" + integrity sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g== + "@esbuild/android-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz#984b4f9c8d0377443cc2dfcef266d02244593622" @@ -1651,6 +1672,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.19.12.tgz#7ad65a36cfdb7e0d429c353e00f680d737c2aed4" integrity sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA== +"@esbuild/android-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz#db1c9202a5bc92ea04c7b6840f1bbe09ebf9e6b9" + integrity sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg== + "@esbuild/android-arm@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.18.20.tgz#fedb265bc3a589c84cc11f810804f234947c3682" @@ -1661,6 +1687,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.19.12.tgz#b0c26536f37776162ca8bde25e42040c203f2824" integrity sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w== +"@esbuild/android-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.20.2.tgz#3b488c49aee9d491c2c8f98a909b785870d6e995" + integrity sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w== + "@esbuild/android-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.18.20.tgz#35cf419c4cfc8babe8893d296cd990e9e9f756f2" @@ -1671,6 +1702,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.19.12.tgz#cb13e2211282012194d89bf3bfe7721273473b3d" integrity sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew== +"@esbuild/android-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.20.2.tgz#3b1628029e5576249d2b2d766696e50768449f98" + integrity sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg== + "@esbuild/darwin-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz#08172cbeccf95fbc383399a7f39cfbddaeb0d7c1" @@ -1681,6 +1717,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.19.12.tgz#cbee41e988020d4b516e9d9e44dd29200996275e" integrity sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g== +"@esbuild/darwin-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz#6e8517a045ddd86ae30c6608c8475ebc0c4000bb" + integrity sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA== + "@esbuild/darwin-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz#d70d5790d8bf475556b67d0f8b7c5bdff053d85d" @@ -1691,6 +1732,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.19.12.tgz#e37d9633246d52aecf491ee916ece709f9d5f4cd" integrity sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A== +"@esbuild/darwin-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz#90ed098e1f9dd8a9381695b207e1cff45540a0d0" + integrity sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA== + "@esbuild/freebsd-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz#98755cd12707f93f210e2494d6a4b51b96977f54" @@ -1701,6 +1747,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.12.tgz#1ee4d8b682ed363b08af74d1ea2b2b4dbba76487" integrity sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA== +"@esbuild/freebsd-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz#d71502d1ee89a1130327e890364666c760a2a911" + integrity sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw== + "@esbuild/freebsd-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz#c1eb2bff03915f87c29cece4c1a7fa1f423b066e" @@ -1711,6 +1762,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.19.12.tgz#37a693553d42ff77cd7126764b535fb6cc28a11c" integrity sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg== +"@esbuild/freebsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz#aa5ea58d9c1dd9af688b8b6f63ef0d3d60cea53c" + integrity sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw== + "@esbuild/linux-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz#bad4238bd8f4fc25b5a021280c770ab5fc3a02a0" @@ -1721,6 +1777,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.19.12.tgz#be9b145985ec6c57470e0e051d887b09dddb2d4b" integrity sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA== +"@esbuild/linux-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz#055b63725df678379b0f6db9d0fa85463755b2e5" + integrity sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A== + "@esbuild/linux-arm@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz#3e617c61f33508a27150ee417543c8ab5acc73b0" @@ -1731,6 +1792,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.19.12.tgz#207ecd982a8db95f7b5279207d0ff2331acf5eef" integrity sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w== +"@esbuild/linux-arm@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz#76b3b98cb1f87936fbc37f073efabad49dcd889c" + integrity sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg== + "@esbuild/linux-ia32@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz#699391cccba9aee6019b7f9892eb99219f1570a7" @@ -1741,6 +1807,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.19.12.tgz#d0d86b5ca1562523dc284a6723293a52d5860601" integrity sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA== +"@esbuild/linux-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz#c0e5e787c285264e5dfc7a79f04b8b4eefdad7fa" + integrity sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig== + "@esbuild/linux-loong64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz#e6fccb7aac178dd2ffb9860465ac89d7f23b977d" @@ -1751,6 +1822,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.19.12.tgz#9a37f87fec4b8408e682b528391fa22afd952299" integrity sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA== +"@esbuild/linux-loong64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz#a6184e62bd7cdc63e0c0448b83801001653219c5" + integrity sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ== + "@esbuild/linux-mips64el@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz#eeff3a937de9c2310de30622a957ad1bd9183231" @@ -1761,6 +1837,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.19.12.tgz#4ddebd4e6eeba20b509d8e74c8e30d8ace0b89ec" integrity sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w== +"@esbuild/linux-mips64el@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz#d08e39ce86f45ef8fc88549d29c62b8acf5649aa" + integrity sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA== + "@esbuild/linux-ppc64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz#2f7156bde20b01527993e6881435ad79ba9599fb" @@ -1771,6 +1852,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.19.12.tgz#adb67dadb73656849f63cd522f5ecb351dd8dee8" integrity sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg== +"@esbuild/linux-ppc64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz#8d252f0b7756ffd6d1cbde5ea67ff8fd20437f20" + integrity sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg== + "@esbuild/linux-riscv64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz#6628389f210123d8b4743045af8caa7d4ddfc7a6" @@ -1781,6 +1867,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.19.12.tgz#11bc0698bf0a2abf8727f1c7ace2112612c15adf" integrity sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg== +"@esbuild/linux-riscv64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz#19f6dcdb14409dae607f66ca1181dd4e9db81300" + integrity sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg== + "@esbuild/linux-s390x@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz#255e81fb289b101026131858ab99fba63dcf0071" @@ -1791,6 +1882,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.19.12.tgz#e86fb8ffba7c5c92ba91fc3b27ed5a70196c3cc8" integrity sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg== +"@esbuild/linux-s390x@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz#3c830c90f1a5d7dd1473d5595ea4ebb920988685" + integrity sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ== + "@esbuild/linux-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz#c7690b3417af318a9b6f96df3031a8865176d338" @@ -1801,6 +1897,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.19.12.tgz#5f37cfdc705aea687dfe5dfbec086a05acfe9c78" integrity sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg== +"@esbuild/linux-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz#86eca35203afc0d9de0694c64ec0ab0a378f6fff" + integrity sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw== + "@esbuild/netbsd-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz#30e8cd8a3dded63975e2df2438ca109601ebe0d1" @@ -1811,6 +1912,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.19.12.tgz#29da566a75324e0d0dd7e47519ba2f7ef168657b" integrity sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA== +"@esbuild/netbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz#e771c8eb0e0f6e1877ffd4220036b98aed5915e6" + integrity sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ== + "@esbuild/openbsd-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz#7812af31b205055874c8082ea9cf9ab0da6217ae" @@ -1821,6 +1927,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.19.12.tgz#306c0acbdb5a99c95be98bdd1d47c916e7dc3ff0" integrity sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw== +"@esbuild/openbsd-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz#9a795ae4b4e37e674f0f4d716f3e226dd7c39baf" + integrity sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ== + "@esbuild/sunos-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz#d5c275c3b4e73c9b0ecd38d1ca62c020f887ab9d" @@ -1831,6 +1942,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.19.12.tgz#0933eaab9af8b9b2c930236f62aae3fc593faf30" integrity sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA== +"@esbuild/sunos-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz#7df23b61a497b8ac189def6e25a95673caedb03f" + integrity sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w== + "@esbuild/win32-arm64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz#73bc7f5a9f8a77805f357fab97f290d0e4820ac9" @@ -1841,6 +1957,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.19.12.tgz#773bdbaa1971b36db2f6560088639ccd1e6773ae" integrity sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A== +"@esbuild/win32-arm64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz#f1ae5abf9ca052ae11c1bc806fb4c0f519bacf90" + integrity sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ== + "@esbuild/win32-ia32@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz#ec93cbf0ef1085cc12e71e0d661d20569ff42102" @@ -1851,6 +1972,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.19.12.tgz#000516cad06354cc84a73f0943a4aa690ef6fd67" integrity sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ== +"@esbuild/win32-ia32@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz#241fe62c34d8e8461cd708277813e1d0ba55ce23" + integrity sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ== + "@esbuild/win32-x64@0.18.20": version "0.18.20" resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz#786c5f41f043b07afb1af37683d7c33668858f6d" @@ -1861,6 +1987,11 @@ resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.19.12.tgz#c57c8afbb4054a3ab8317591a0b7320360b444ae" integrity sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA== +"@esbuild/win32-x64@0.20.2": + version "0.20.2" + resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz#9c907b21e30a52db959ba4f80bb01a0cc403d5cc" + integrity sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ== + "@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": version "4.4.0" resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" @@ -2009,9 +2140,9 @@ integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== "@humanwhocodes/object-schema@^2.0.2": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" - integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz#4a2868d75d6d6963e423bcf90b7fd1be343409d3" + integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA== "@hutson/parse-repository-url@^3.0.0": version "3.0.2" @@ -2023,10 +2154,10 @@ resolved "https://registry.yarnpkg.com/@icons/material/-/material-0.2.4.tgz#e90c9f71768b3736e76d7dd6783fc6c2afa88bc8" integrity sha512-QPcGmICAPbGLGb6F/yNf/KzKqvFx8z5qx3D1yFqVAjoFmXK35EgyW+cJ57Te3CNsmzblwtzakLGFqHPqrfb4Tw== -"@interactjs/types@1.10.26": - version "1.10.26" - resolved "https://registry.yarnpkg.com/@interactjs/types/-/types-1.10.26.tgz#5a6c0ef1dda9763515ff1192a40ecc99101c7a48" - integrity sha512-DekYpdkMV3XJVd/0k3f4pJluZAsCiG86yEtVXvGLK0lS/Fj0+OzYEv7HoMpcBZSkQ8s7//yaeEBgnxy2tV81lA== +"@interactjs/types@1.10.27": + version "1.10.27" + resolved "https://registry.yarnpkg.com/@interactjs/types/-/types-1.10.27.tgz#10afd71cef2498e2b5192cf0d46f937d8ceb767f" + integrity sha512-BUdv0cvs4H5ODuwft2Xp4eL8Vmi3LcihK42z0Ft/FbVJZoRioBsxH+LlsBdK4tAie7PqlKGy+1oyOncu1nQ6eA== "@isaacs/cliui@^8.0.2": version "8.0.2" @@ -2106,7 +2237,7 @@ magic-string "^0.27.0" react-docgen-typescript "^2.2.2" -"@jridgewell/gen-mapping@^0.3.0", "@jridgewell/gen-mapping@^0.3.2", "@jridgewell/gen-mapping@^0.3.5": +"@jridgewell/gen-mapping@^0.3.5": version "0.3.5" resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== @@ -2126,19 +2257,19 @@ integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== "@jridgewell/source-map@^0.3.3": - version "0.3.5" - resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.5.tgz#a3bb4d5c6825aab0d281268f47f6ad5853431e91" - integrity sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ== + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== dependencies: - "@jridgewell/gen-mapping" "^0.3.0" - "@jridgewell/trace-mapping" "^0.3.9" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.13", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": version "1.4.15" resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== -"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.9": +"@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": version "0.3.25" resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== @@ -2920,77 +3051,85 @@ estree-walker "^2.0.2" picomatch "^2.3.1" -"@rollup/rollup-android-arm-eabi@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.12.0.tgz#38c3abd1955a3c21d492af6b1a1dca4bb1d894d6" - integrity sha512-+ac02NL/2TCKRrJu2wffk1kZ+RyqxVUlbjSagNgPm94frxtr+XDL12E5Ll1enWskLrtrZ2r8L3wED1orIibV/w== - -"@rollup/rollup-android-arm64@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.12.0.tgz#3822e929f415627609e53b11cec9a4be806de0e2" - integrity sha512-OBqcX2BMe6nvjQ0Nyp7cC90cnumt8PXmO7Dp3gfAju/6YwG0Tj74z1vKrfRz7qAv23nBcYM8BCbhrsWqO7PzQQ== - -"@rollup/rollup-darwin-arm64@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.12.0.tgz#6c082de71f481f57df6cfa3701ab2a7afde96f69" - integrity sha512-X64tZd8dRE/QTrBIEs63kaOBG0b5GVEd3ccoLtyf6IdXtHdh8h+I56C2yC3PtC9Ucnv0CpNFJLqKFVgCYe0lOQ== - -"@rollup/rollup-darwin-x64@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.12.0.tgz#c34ca0d31f3c46a22c9afa0e944403eea0edcfd8" - integrity sha512-cc71KUZoVbUJmGP2cOuiZ9HSOP14AzBAThn3OU+9LcA1+IUqswJyR1cAJj3Mg55HbjZP6OLAIscbQsQLrpgTOg== - -"@rollup/rollup-linux-arm-gnueabihf@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.12.0.tgz#48e899c1e438629c072889b824a98787a7c2362d" - integrity sha512-a6w/Y3hyyO6GlpKL2xJ4IOh/7d+APaqLYdMf86xnczU3nurFTaVN9s9jOXQg97BE4nYm/7Ga51rjec5nfRdrvA== - -"@rollup/rollup-linux-arm64-gnu@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.12.0.tgz#788c2698a119dc229062d40da6ada8a090a73a68" - integrity sha512-0fZBq27b+D7Ar5CQMofVN8sggOVhEtzFUwOwPppQt0k+VR+7UHMZZY4y+64WJ06XOhBTKXtQB/Sv0NwQMXyNAA== - -"@rollup/rollup-linux-arm64-musl@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.12.0.tgz#3882a4e3a564af9e55804beeb67076857b035ab7" - integrity sha512-eTvzUS3hhhlgeAv6bfigekzWZjaEX9xP9HhxB0Dvrdbkk5w/b+1Sxct2ZuDxNJKzsRStSq1EaEkVSEe7A7ipgQ== - -"@rollup/rollup-linux-riscv64-gnu@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.12.0.tgz#0c6ad792e1195c12bfae634425a3d2aa0fe93ab7" - integrity sha512-ix+qAB9qmrCRiaO71VFfY8rkiAZJL8zQRXveS27HS+pKdjwUfEhqo2+YF2oI+H/22Xsiski+qqwIBxVewLK7sw== - -"@rollup/rollup-linux-x64-gnu@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.12.0.tgz#9d62485ea0f18d8674033b57aa14fb758f6ec6e3" - integrity sha512-TenQhZVOtw/3qKOPa7d+QgkeM6xY0LtwzR8OplmyL5LrgTWIXpTQg2Q2ycBf8jm+SFW2Wt/DTn1gf7nFp3ssVA== - -"@rollup/rollup-linux-x64-musl@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.12.0.tgz#50e8167e28b33c977c1f813def2b2074d1435e05" - integrity sha512-LfFdRhNnW0zdMvdCb5FNuWlls2WbbSridJvxOvYWgSBOYZtgBfW9UGNJG//rwMqTX1xQE9BAodvMH9tAusKDUw== - -"@rollup/rollup-win32-arm64-msvc@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.12.0.tgz#68d233272a2004429124494121a42c4aebdc5b8e" - integrity sha512-JPDxovheWNp6d7AHCgsUlkuCKvtu3RB55iNEkaQcf0ttsDU/JZF+iQnYcQJSk/7PtT4mjjVG8N1kpwnI9SLYaw== - -"@rollup/rollup-win32-ia32-msvc@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.12.0.tgz#366ca62221d1689e3b55a03f4ae12ae9ba595d40" - integrity sha512-fjtuvMWRGJn1oZacG8IPnzIV6GF2/XG+h71FKn76OYFqySXInJtseAqdprVTDTyqPxQOG9Exak5/E9Z3+EJ8ZA== - -"@rollup/rollup-win32-x64-msvc@4.12.0": - version "4.12.0" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.12.0.tgz#9ffdf9ed133a7464f4ae187eb9e1294413fab235" - integrity sha512-ZYmr5mS2wd4Dew/JjT0Fqi2NPB/ZhZ2VvPp7SmvPZb4Y1CG/LRcS6tcRo2cYU7zLK5A7cdbhWnnWmUjoI4qapg== - -"@samverschueren/stream-to-observable@^0.3.0": - version "0.3.1" - resolved "https://registry.yarnpkg.com/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz#a21117b19ee9be70c379ec1877537ef2e1c63301" - integrity sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ== - dependencies: - any-observable "^0.3.0" +"@rollup/rollup-android-arm-eabi@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.16.2.tgz#29b7b3c70ddf532fe6dcf859cbfc3e4714c34842" + integrity sha512-VGodkwtEuZ+ENPz/CpDSl091koMv8ao5jHVMbG1vNK+sbx/48/wVzP84M5xSfDAC69mAKKoEkSo+ym9bXYRK9w== + +"@rollup/rollup-android-arm64@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.16.2.tgz#f50f65d0c3b8b30d070d8616b2dfc0978dd588bd" + integrity sha512-5/W1xyIdc7jw6c/f1KEtg1vYDBWnWCsLiipK41NiaWGLG93eH2edgE6EgQJ3AGiPERhiOLUqlDSfjRK08C9xFg== + +"@rollup/rollup-darwin-arm64@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.16.2.tgz#be3d9fffbf6fc5b9d5f0642f1f0250e0ecab8d3e" + integrity sha512-vOAKMqZSTbPfyPVu1jBiy+YniIQd3MG7LUnqV0dA6Q5tyhdqYtxacTHP1+S/ksKl6qCtMG1qQ0grcIgk/19JEA== + +"@rollup/rollup-darwin-x64@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.16.2.tgz#fe45a772526b2c03d545e20f97a1e5cd60a46e52" + integrity sha512-aIJVRUS3Dnj6MqocBMrcXlatKm64O3ITeQAdAxVSE9swyhNyV1dwnRgw7IGKIkDQofatd8UqMSyUxuFEa42EcA== + +"@rollup/rollup-linux-arm-gnueabihf@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.16.2.tgz#450ecf66f30a51514413aafa79d28561db73151c" + integrity sha512-/bjfUiXwy3P5vYr6/ezv//Yle2Y0ak3a+Av/BKoi76nFryjWCkki8AuVoPR7ZU/ckcvAWFo77OnFK14B9B5JsA== + +"@rollup/rollup-linux-arm-musleabihf@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.16.2.tgz#1e8807d220047084579cd01499c5476a325e0700" + integrity sha512-S24b+tJHwpq2TNRz9T+r71FjMvyBBApY8EkYxz8Cwi/rhH6h+lu/iDUxyc9PuHf9UvyeBFYkWWcrDahai/NCGw== + +"@rollup/rollup-linux-arm64-gnu@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.16.2.tgz#128adb9dbf0057b989127d2e7fd73931a6729410" + integrity sha512-UN7VAXLyeyGbCQWiOtQN7BqmjTDw1ON2Oos4lfk0YR7yNhFEJWZiwGtvj9Ay4lsT/ueT04sh80Sg2MlWVVZ+Ug== + +"@rollup/rollup-linux-arm64-musl@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.16.2.tgz#fddc7730045301a7fb0132532890e5edcb23d2bc" + integrity sha512-ZBKvz3+rIhQjusKMccuJiPsStCrPOtejCHxTe+yWp3tNnuPWtyCh9QLGPKz6bFNFbwbw28E2T6zDgzJZ05F1JQ== + +"@rollup/rollup-linux-powerpc64le-gnu@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.16.2.tgz#7154fe9ffc6405b2a6555ca931c42c0aa5198c2a" + integrity sha512-LjMMFiVBRL3wOe095vHAekL4b7nQqf4KZEpdMWd3/W+nIy5o9q/8tlVKiqMbfieDypNXLsxM9fexOxd9Qcklyg== + +"@rollup/rollup-linux-riscv64-gnu@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.16.2.tgz#7a7d091a94fa7c50ebf72d5578475093e01c739e" + integrity sha512-ohkPt0lKoCU0s4B6twro2aft+QROPdUiWwOjPNTzwTsBK5w+2+iT9kySdtOdq0gzWJAdiqsV4NFtXOwGZmIsHA== + +"@rollup/rollup-linux-s390x-gnu@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.16.2.tgz#39b87bd355dfafbc062ca856d3d6bc5aa1905d89" + integrity sha512-jm2lvLc+/gqXfndlpDw05jKvsl/HKYxUEAt1h5UXcMFVpO4vGpoWmJVUfKDtTqSaHcCNw1his1XjkgR9aort3w== + +"@rollup/rollup-linux-x64-gnu@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.16.2.tgz#30b88169db18dec202ab9662d5148523d59da553" + integrity sha512-oc5/SlITI/Vj/qL4UM+lXN7MERpiy1HEOnrE+SegXwzf7WP9bzmZd6+MDljCEZTdSY84CpvUv9Rq7bCaftn1+g== + +"@rollup/rollup-linux-x64-musl@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.16.2.tgz#d4fd52a28d5ce4aaed436311d89a9a1eaff87c2d" + integrity sha512-/2VWEBG6mKbS2itm7hzPwhIPaxfZh/KLWrYg20pCRLHhNFtF+epLgcBtwy3m07bl/k86Q3PFRAf2cX+VbZbwzQ== + +"@rollup/rollup-win32-arm64-msvc@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.16.2.tgz#edd352302e3fa6a2d612447590b0a0887cdbf762" + integrity sha512-Wg7ANh7+hSilF0lG3e/0Oy8GtfTIfEk1327Bw8juZOMOoKmJLs3R+a4JDa/4cHJp2Gs7QfCDTepXXcyFD0ubBg== + +"@rollup/rollup-win32-ia32-msvc@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.16.2.tgz#f17cc1db108f364bf6ef427f98844b5f742d31f0" + integrity sha512-J/jCDKVMWp0Y2ELnTjpQFYUCUWv1Jr+LdFrJVZtdqGyjDo0PHPa7pCamjHvJel6zBFM3doFFqAr7cmXYWBAbfw== + +"@rollup/rollup-win32-x64-msvc@4.16.2": + version "4.16.2" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.16.2.tgz#98fb87589960075d39c44784e3a99f67138602f4" + integrity sha512-3nIf+SJMs2ZzrCh+SKNqgLVV9hS/UY0UjT1YU8XQYFGLiUfmHYJ/5trOU1XSvmHjV5gTF/K3DjrWxtyzKKcAHA== "@serialport/binding-mock@10.2.2": version "10.2.2" @@ -3506,9 +3645,9 @@ lodash "^4.17.15" "@storybook/csf@^0.1.2": - version "0.1.2" - resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.1.2.tgz#8e7452f0097507f5841b5ade3f5da1525bc9afb2" - integrity sha512-ePrvE/pS1vsKR9Xr+o+YwdqNgHUyXvg+1Xjx0h9LrVx7Zq4zNe06pd63F5EvzTbCbJsHj7GHr9tkiaqm7U8WRA== + version "0.1.4" + resolved "https://registry.yarnpkg.com/@storybook/csf/-/csf-0.1.4.tgz#18224bcd571fa834ccc4bebda8a0ca4cedbc4d91" + integrity sha512-B9UI/lsQMjF+oEfZCI6YXNoeuBcGZoOP5x8yKbe2tIEmsMjSztFKkpPzi5nLCnBk/MBtl6QJeI3ksJnbsWPkOw== dependencies: type-fest "^2.19.0" @@ -3722,10 +3861,10 @@ lz-string "^1.5.0" pretty-format "^27.0.2" -"@testing-library/jest-dom@6.4.0": - version "6.4.0" - resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-6.4.0.tgz#e7391967af57273effdaa181fc291be0ecc155bd" - integrity sha512-GgGT3OR8qhIjk2SBMy51AYDWoMnAyR/cwjZO4SttuBmIQ9wWy9QmVOeaSbgT5Bm0J6qLBaf4+dsJWfisvafoaA== +"@testing-library/jest-dom@6.4.2": + version "6.4.2" + resolved "https://registry.yarnpkg.com/@testing-library/jest-dom/-/jest-dom-6.4.2.tgz#38949f6b63722900e2d75ba3c6d9bf8cffb3300e" + integrity sha512-CzqH0AFymEMG48CpzXFriYYkOjk6ZGPCLMhW9e9jg3KMCn5OfJecF8GtGW7yGfR/IgCe3SX8BSwjdzI6BBbZLw== dependencies: "@adobe/css-tools" "^4.3.2" "@babel/runtime" "^7.9.2" @@ -3925,9 +4064,9 @@ integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ== "@types/express-serve-static-core@^4.17.33": - version "4.17.43" - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.43.tgz#10d8444be560cb789c4735aea5eac6e5af45df54" - integrity sha512-oaYtiBirUOPQGSWNGPWnzyAFJ0BP3cwvN4oWZQY+zUBwpVIGsKUkpBpSztp74drYcjavs7SKFZ4DX1V2QeN8rg== + version "4.19.0" + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.19.0.tgz#3ae8ab3767d98d0b682cda063c3339e1e86ccfaa" + integrity sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ== dependencies: "@types/node" "*" "@types/qs" "*" @@ -4058,9 +4197,9 @@ "@types/node" "*" "@types/lodash@^4.14.165", "@types/lodash@^4.14.167", "@types/lodash@^4.14.191": - version "4.14.202" - resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.14.202.tgz#f09dbd2fb082d507178b2f2a5c7e74bd72ff98f8" - integrity sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ== + version "4.17.0" + resolved "https://registry.yarnpkg.com/@types/lodash/-/lodash-4.17.0.tgz#d774355e41f372d5350a4d0714abb48194a489c3" + integrity sha512-t7dhREVv6dbNj0q17X12j7yDG4bD/DHYX7o5/DbDxobP0HnGPgpRz2Ej77aL7TZT3DSw13fqUTj8J4mMnqa7WA== "@types/mdast@^4.0.0": version "4.0.3" @@ -4070,20 +4209,15 @@ "@types/unist" "*" "@types/mdx@^2.0.0": - version "2.0.11" - resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.11.tgz#21f4c166ed0e0a3a733869ba04cd8daea9834b8e" - integrity sha512-HM5bwOaIQJIQbAYfax35HCKxx7a3KrK3nBtIqJgSOitivTD1y3oW9P3rxY9RkXYPUk7y/AjAohfHKmFpGE79zw== + version "2.0.13" + resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.13.tgz#68f6877043d377092890ff5b298152b0a21671bd" + integrity sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw== "@types/mime-types@^2.1.0": version "2.1.4" resolved "https://registry.yarnpkg.com/@types/mime-types/-/mime-types-2.1.4.tgz#93a1933e24fed4fb9e4adc5963a63efcbb3317a2" integrity sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w== -"@types/mime@*": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-3.0.4.tgz#2198ac274de6017b44d941e00261d5bc6a0e0a45" - integrity sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw== - "@types/mime@^1": version "1.3.5" resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.5.tgz#1ef302e01cf7d2b5a0fa526790c9123bf1d06690" @@ -4130,21 +4264,16 @@ form-data "^4.0.0" "@types/node@*": - version "20.11.24" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.11.24.tgz#cc207511104694e84e9fb17f9a0c4c42d4517792" - integrity sha512-Kza43ewS3xoLgCEpQrsT+xRo/EJej1y0kVYGiLFE1NEODXGzTfwiC6tXTLMQskn1X4/Rjlh0MQUvx9W+L9long== + version "20.12.7" + resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.7.tgz#04080362fa3dd6c5822061aa3124f5c152cff384" + integrity sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg== dependencies: undici-types "~5.26.4" -"@types/node@12.12.50": - version "12.12.50" - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.12.50.tgz#e9b2e85fafc15f2a8aa8fdd41091b983da5fd6ee" - integrity sha512-5ImO01Fb8YsEOYpV+aeyGYztcYcjGsBvN4D7G5r1ef2cuQOpymjWNQi5V0rKHE6PC2ru3HkoUr/Br2/8GUA84w== - "@types/node@^18.0.0", "@types/node@^18.11.18": - version "18.19.21" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.21.tgz#f4ca1ac8ffb05ee4b89163c2d6fac9a1a59ee149" - integrity sha512-2Q2NeB6BmiTFQi4DHBzncSoq/cJMLDdhPaAoJFnFCyD9a8VPZRf7a1GAwp1Edb7ROaZc5Jz/tnZyL6EsWMRaqw== + version "18.19.31" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.19.31.tgz#b7d4a00f7cb826b60a543cebdbda5d189aaecdcd" + integrity sha512-ArgCD39YpyyrtFKIqMDvjz79jto5fcI/SVUs2HwB+f0dAzq68yqOdyaSivLiLugSziTpNXLQrVb7RZFmdZzbhA== dependencies: undici-types "~5.26.4" @@ -4172,9 +4301,9 @@ integrity sha512-nj39q0wAIdhwn7DGUyT9irmsKK1tV0bd5WFEhgpqNTMFZ8cE+jieuTphCW0tfdm47S2zVT5mr09B28b1chmQMA== "@types/prop-types@*": - version "15.7.11" - resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.11.tgz#2596fb352ee96a1379c657734d4b913a613ad563" - integrity sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng== + version "15.7.12" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" + integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== "@types/pump@^1.1.0": version "1.1.3" @@ -4189,9 +4318,9 @@ integrity sha512-hroOstUScF6zhIi+5+x0dzqrHA1EJi+Irri6b1fxolMTqqHIV/Cg77EtnQcZqZCu8hR3mX2BzIxN4/GzI68Kfw== "@types/qs@*", "@types/qs@^6.9.5": - version "6.9.12" - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.12.tgz#afa96b383a3a6fdc859453a1892d41b607fc7756" - integrity sha512-bZcOkJ6uWrL0Qb2NAWKa7TBU+mJHPzhx9jjLL1KHF+XpzEcR7EXHvjbHlGtR/IsP1vyPrehuS6XqkmaePy//mg== + version "6.9.15" + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.15.tgz#adde8a060ec9c305a82de1babc1056e73bd64dce" + integrity sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg== "@types/query-string@6.2.0": version "6.2.0" @@ -4219,9 +4348,9 @@ "@types/react" "*" "@types/react-dom@^18.0.0": - version "18.2.19" - resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.19.tgz#b84b7c30c635a6c26c6a6dfbb599b2da9788be58" - integrity sha512-aZvQL6uUbIJpjZk4U8JZGbau9KDeAwMfmhyWorxgBkqDIEf6ROjRozcmPIicqsUwPUjbkDfHKgGee1Lq65APcA== + version "18.2.25" + resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.2.25.tgz#2946a30081f53e7c8d585eb138277245caedc521" + integrity sha512-o/V48vf4MQh7juIKZU2QGDfli6p1+OOi5oXx36Hffpc9adsHeXjVp8rHuPkjd8VT8sOJ2Zp05HR7CdpGTIUFUA== dependencies: "@types/react" "*" @@ -4260,12 +4389,11 @@ "@types/react" "*" "@types/react@*", "@types/react@>=16": - version "18.2.62" - resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.62.tgz#2527a7a54749b1a99c87a4aa8b83e26846face38" - integrity sha512-l3f57BbaEKP0xcFzf+5qRG8/PXykZiuVM6eEoPtqBPCp6dxO3HhDkLIgIyXPhPKNAeXn3KO2pEaNgzaEo/asaw== + version "18.2.79" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.79.tgz#c40efb4f255711f554d47b449f796d1c7756d865" + integrity sha512-RwGAGXPl9kSXwdNTafkOEuFrTBD5SA2B3iEB96xi8+xu5ddUa/cpvyVCSNn+asgLCTHkb5ZxN8gbuibYJi4s1w== dependencies: "@types/prop-types" "*" - "@types/scheduler" "*" csstype "^3.0.2" "@types/react@18.2.51": @@ -4316,9 +4444,9 @@ "@types/node" "*" "@types/scheduler@*": - version "0.16.8" - resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.8.tgz#ce5ace04cfeabe7ef87c0091e50752e36707deff" - integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== + version "0.23.0" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.23.0.tgz#0a6655b3e2708eaabca00b7372fafd7a792a7b09" + integrity sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw== "@types/semver@^6.0.1": version "6.2.7" @@ -4339,18 +4467,18 @@ "@types/node" "*" "@types/serve-static@*": - version "1.15.5" - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.5.tgz#15e67500ec40789a1e8c9defc2d32a896f05b033" - integrity sha512-PDRk21MnK70hja/YF8AHfC7yIsiQHn1rcXx7ijCFBX/k+XQJhQT/gw3xekXKJvx+5SXaMMS8oqQy09Mzvz2TuQ== + version "1.15.7" + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.15.7.tgz#22174bbd74fb97fe303109738e9b5c2f3064f714" + integrity sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw== dependencies: "@types/http-errors" "*" - "@types/mime" "*" "@types/node" "*" + "@types/send" "*" -"@types/sinonjs__fake-timers@^6.0.1": - version "6.0.4" - resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-6.0.4.tgz#0ecc1b9259b76598ef01942f547904ce61a6a77d" - integrity sha512-IFQTJARgMUBF+xVd2b+hIgXWrZEjND3vJtRCvIelcFB5SIXfjV4bOHbHJ0eXKh+0COrBRc8MqteKAz/j88rE0A== +"@types/sinonjs__fake-timers@8.1.1": + version "8.1.1" + resolved "https://registry.yarnpkg.com/@types/sinonjs__fake-timers/-/sinonjs__fake-timers-8.1.1.tgz#b49c2c70150141a15e0fa7e79cf1f92a72934ce3" + integrity sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g== "@types/sizzle@^2.3.2": version "2.3.8" @@ -4407,9 +4535,9 @@ integrity sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA== "@types/verror@^1.10.3": - version "1.10.9" - resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.9.tgz#420c32adb9a2dd50b3db4c8f96501e05a0e72941" - integrity sha512-MLx9Z+9lGzwEuW16ubGeNkpBDE84RpB/NyGgg6z2BTpWzKkGU451cAY3UkUzZEp72RHF585oJ3V8JVNqIplcAQ== + version "1.10.10" + resolved "https://registry.yarnpkg.com/@types/verror/-/verror-1.10.10.tgz#d5a4b56abac169bfbc8b23d291363a682e6fa087" + integrity sha512-l4MM0Jppn18hb9xmM6wwD1uTdShpf9Pn80aXTStnK1C94gtPvJcV2FrDmbOQUAQfJ1cKZHktkQUDwEqaAKXMMg== "@types/vfile-message@*": version "2.0.0" @@ -5053,10 +5181,17 @@ ansi-colors@^3.0.0: resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-3.2.4.tgz#e3a3da4bfbae6c86a9c285625de124a234026fbf" integrity sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA== -ansi-escapes@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== +ansi-colors@^4.1.1: + version "4.1.3" + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.3.tgz#37611340eb2243e70cc604cad35d63270d48781b" + integrity sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw== + +ansi-escapes@^4.3.0: + version "4.3.2" + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== + dependencies: + type-fest "^0.21.3" ansi-html-community@0.0.8: version "0.0.8" @@ -5068,11 +5203,6 @@ ansi-regex@^2.0.0: resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" integrity sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA== -ansi-regex@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.1.tgz#123d6479e92ad45ad897d4054e3c7ca7db4944e1" - integrity sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw== - ansi-regex@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" @@ -5117,11 +5247,6 @@ ansi-styles@^6.1.0: resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== -any-observable@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/any-observable/-/any-observable-0.3.0.tgz#af933475e5806a67d0d7df090dd5e8bef65d119b" - integrity sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog== - anymatch@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" @@ -5207,7 +5332,7 @@ aproba@^1.1.1: resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== -arch@^2.1.2: +arch@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/arch/-/arch-2.2.0.tgz#1bc47818f305764f23ab3306b0bfc086c5a29d11" integrity sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ== @@ -5240,9 +5365,9 @@ argparse@^2.0.1: integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== aria-hidden@^1.1.1: - version "1.2.3" - resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.3.tgz#14aeb7fb692bbb72d69bebfa47279c1fd725e954" - integrity sha512-xcLxITLe2HYa1cnYnwCjkOO1PqUHQpozB8x9AR0OgWN2woOBi5kSDVxKfd0b7sb1hw5qFeJhXm9H1nu3xSfLeQ== + version "1.2.4" + resolved "https://registry.yarnpkg.com/aria-hidden/-/aria-hidden-1.2.4.tgz#b78e383fdbc04d05762c78b4a25a501e736c4522" + integrity sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A== dependencies: tslib "^2.0.0" @@ -5304,14 +5429,15 @@ array-ify@^1.0.0: integrity sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng== array-includes@^3.1.6, array-includes@^3.1.7: - version "3.1.7" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.7.tgz#8cd2e01b26f7a3086cbc87271593fe921c62abda" - integrity sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ== + version "3.1.8" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" + integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - get-intrinsic "^1.2.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" is-string "^1.0.7" array-union@^1.0.1, array-union@^1.0.2: @@ -5336,37 +5462,28 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== -array.prototype.filter@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz#423771edeb417ff5914111fff4277ea0624c0d0e" - integrity sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - es-array-method-boxes-properly "^1.0.0" - is-string "^1.0.7" - array.prototype.findlast@^1.2.4: - version "1.2.4" - resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.4.tgz#eeb9e45fc894055c82e5675c463e8077b827ad36" - integrity sha512-BMtLxpV+8BD+6ZPFIWmnUBpQoy+A+ujcg4rhp2iwCRJYA7PEh2MS4NL3lz8EiDlLrJPp2hg9qWihr5pd//jcGw== + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz#3e4fbcb30a15a7f5bf64cf2faae22d139c2e4904" + integrity sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" + es-abstract "^1.23.2" es-errors "^1.3.0" + es-object-atoms "^1.0.0" es-shim-unscopables "^1.0.2" array.prototype.findlastindex@^1.2.3: - version "1.2.4" - resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz#d1c50f0b3a9da191981ff8942a0aedd82794404f" - integrity sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ== + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" + integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" + es-abstract "^1.23.2" es-errors "^1.3.0" + es-object-atoms "^1.0.0" es-shim-unscopables "^1.0.2" array.prototype.flat@^1.3.1, array.prototype.flat@^1.3.2: @@ -5390,14 +5507,16 @@ array.prototype.flatmap@^1.3.2: es-shim-unscopables "^1.0.0" array.prototype.reduce@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz#63149931808c5fc1e1354814923d92d45f7d96d5" - integrity sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg== + version "1.0.7" + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.7.tgz#6aadc2f995af29cb887eb866d981dc85ab6f7dc7" + integrity sha512-mzmiUCVwtiD4lgxYP8g7IYy8El8p2CSMePvIbTS7gchKir/L1fgJrk0yDKmAX6mnRQFKNADYIk8nNlTris5H1Q== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" es-array-method-boxes-properly "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" is-string "^1.0.7" array.prototype.toreversed@^1.1.2: @@ -5445,15 +5564,14 @@ asap@~2.0.3: resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" integrity sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA== -asn1.js@^5.2.0: - version "5.4.1" - resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" - integrity sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA== +asn1.js@^4.10.1: + version "4.10.1" + resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-4.10.1.tgz#b9c2bf5805f1e64aadeed6df3a2bfafb5a73f5a0" + integrity sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw== dependencies: bn.js "^4.0.0" inherits "^2.0.1" minimalistic-assert "^1.0.0" - safer-buffer "^2.1.0" asn1@~0.2.3: version "0.2.6" @@ -5550,13 +5668,6 @@ async@^3.2.0, async@^3.2.2, async@^3.2.3: resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== -asynciterator.prototype@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz#8c5df0514936cdd133604dfcc9d3fb93f09b2b62" - integrity sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg== - dependencies: - has-symbols "^1.0.3" - asynckit@^0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" @@ -5573,12 +5684,12 @@ atob@^2.1.2: integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== autoprefixer@^10.0.2, autoprefixer@^10.4, autoprefixer@^10.4.16: - version "10.4.18" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.18.tgz#fcb171a3b017be7cb5d8b7a825f5aacbf2045163" - integrity sha512-1DKbDfsr6KUElM6wg+0zRNkB/Q7WcKYAaK+pzXn+Xqmszm/5Xa9coeNdtP88Vi+dPzZnMjhge8GIV49ZQkDa+g== + version "10.4.19" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.19.tgz#ad25a856e82ee9d7898c59583c1afeb3fa65f89f" + integrity sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew== dependencies: browserslist "^4.23.0" - caniuse-lite "^1.0.30001591" + caniuse-lite "^1.0.30001599" fraction.js "^4.3.7" normalize-range "^0.1.2" picocolors "^1.0.0" @@ -5597,7 +5708,7 @@ autoprefixer@^9.5.1: postcss "^7.0.32" postcss-value-parser "^4.1.0" -available-typed-arrays@^1.0.6, available-typed-arrays@^1.0.7: +available-typed-arrays@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== @@ -5605,9 +5716,9 @@ available-typed-arrays@^1.0.6, available-typed-arrays@^1.0.7: possible-typed-array-names "^1.0.0" aws-sdk@^2.264.1, aws-sdk@^2.493.0: - version "2.1569.0" - resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1569.0.tgz#b7568698ae4172be543536cfb9399361ac9955d0" - integrity sha512-9puKjesHKOjAYPqFurW/9nv3qhQ+STu3bVa5PN158SCeZPE6NsxZIWnHLglJvKU7N8UXJo1aJHmKDUGrsS7rXw== + version "2.1604.0" + resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.1604.0.tgz#6b613adc6e06cc23e82e98d9f72d1df6d532ad3b" + integrity sha512-JSXNwKylbSZR2AL/jczOGJmPCZ/QpTys6SP89rhgy5LN677PJ6weQx5ShpPfGIcczGXjAeJDm8faWT53fYPCCw== dependencies: buffer "4.9.2" events "1.1.1" @@ -5672,29 +5783,29 @@ babel-plugin-macros@^3.1.0: cosmiconfig "^7.0.0" resolve "^1.19.0" -babel-plugin-polyfill-corejs2@^0.4.8: - version "0.4.8" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.8.tgz#dbcc3c8ca758a290d47c3c6a490d59429b0d2269" - integrity sha512-OtIuQfafSzpo/LhnJaykc0R/MMnuLSSVjVYy9mHArIZ9qTCSZ6TpWCuEKZYVoN//t8HqBNScHrOtCrIK5IaGLg== +babel-plugin-polyfill-corejs2@^0.4.10: + version "0.4.11" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.11.tgz#30320dfe3ffe1a336c15afdcdafd6fd615b25e33" + integrity sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q== dependencies: "@babel/compat-data" "^7.22.6" - "@babel/helper-define-polyfill-provider" "^0.5.0" + "@babel/helper-define-polyfill-provider" "^0.6.2" semver "^6.3.1" -babel-plugin-polyfill-corejs3@^0.9.0: - version "0.9.0" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.9.0.tgz#9eea32349d94556c2ad3ab9b82ebb27d4bf04a81" - integrity sha512-7nZPG1uzK2Ymhy/NbaOWTg3uibM2BmGASS4vHS4szRZAIR8R6GwA/xAujpdrXU5iyklrimWnLWU+BLF9suPTqg== +babel-plugin-polyfill-corejs3@^0.10.4: + version "0.10.4" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz#789ac82405ad664c20476d0233b485281deb9c77" + integrity sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg== dependencies: - "@babel/helper-define-polyfill-provider" "^0.5.0" - core-js-compat "^3.34.0" + "@babel/helper-define-polyfill-provider" "^0.6.1" + core-js-compat "^3.36.1" -babel-plugin-polyfill-regenerator@^0.5.5: - version "0.5.5" - resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.5.tgz#8b0c8fc6434239e5d7b8a9d1f832bb2b0310f06a" - integrity sha512-OJGYZlhLqBh2DDHeqAxWB1XIvr49CxiJ2gIt61/PU55CQK4Z58OzMqjDe1zwQdQk+rBYsRc+1rJmdajM3gimHg== +babel-plugin-polyfill-regenerator@^0.6.1: + version "0.6.2" + resolved "https://registry.yarnpkg.com/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.2.tgz#addc47e240edd1da1058ebda03021f382bba785e" + integrity sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg== dependencies: - "@babel/helper-define-polyfill-provider" "^0.5.0" + "@babel/helper-define-polyfill-provider" "^0.6.2" babel-plugin-styled-components@2.0.7: version "2.0.7" @@ -5751,6 +5862,16 @@ balanced-match@^1.0.0: resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== +bar-horizontal@^0.5.1: + version "0.5.1" + resolved "https://registry.yarnpkg.com/bar-horizontal/-/bar-horizontal-0.5.1.tgz#aa35a769cf89ee30bdf294b1d6b879c8199e97d1" + integrity sha512-xU8nq9JprzO6gUJUg2tTarFhciL8f4TSEujLLWJ9ziepJTHeoiET1SB0TVPvbbm41K+S8jpQvQ6AlXW7H2NtEA== + dependencies: + figures "1.7.0" + lodash ">=4.17.12" + meow "3.7.0" + window-size "0.1.4" + base64-js@^1.0.2, base64-js@^1.3.1, base64-js@^1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" @@ -5824,9 +5945,9 @@ binary-extensions@^1.0.0: integrity sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw== binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== + version "2.3.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.3.0.tgz#f6e14a97858d327252200242d4ccfe522c445522" + integrity sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw== bindings@^1.5.0: version "1.5.0" @@ -5852,7 +5973,7 @@ bl@^4.0.2, bl@^4.0.3, bl@^4.1.0: inherits "^2.0.4" readable-stream "^3.4.0" -blob-util@2.0.2: +blob-util@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/blob-util/-/blob-util-2.0.2.tgz#3b4e3c281111bb7f11128518006cdc60b403a1eb" integrity sha512-T7JQa+zsXXEa6/8ZhHcQEW1UFfVM49Ts65uBkFL6fz2QmrElqmbajIDJvuA0tEhRe5eIjpV9ZF+0RfZR9voJFQ== @@ -6019,7 +6140,7 @@ browser-process-hrtime@^1.0.0: resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== -browserify-aes@^1.0.0, browserify-aes@^1.0.4: +browserify-aes@^1.0.4, browserify-aes@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48" integrity sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA== @@ -6059,18 +6180,19 @@ browserify-rsa@^4.0.0, browserify-rsa@^4.1.0: randombytes "^2.0.1" browserify-sign@^4.0.0: - version "4.2.2" - resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.2.tgz#e78d4b69816d6e3dd1c747e64e9947f9ad79bc7e" - integrity sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg== + version "4.2.3" + resolved "https://registry.yarnpkg.com/browserify-sign/-/browserify-sign-4.2.3.tgz#7afe4c01ec7ee59a89a558a4b75bd85ae62d4208" + integrity sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw== dependencies: bn.js "^5.2.1" browserify-rsa "^4.1.0" create-hash "^1.2.0" create-hmac "^1.1.7" - elliptic "^6.5.4" + elliptic "^6.5.5" + hash-base "~3.0" inherits "^2.0.4" - parse-asn1 "^5.1.6" - readable-stream "^3.6.2" + parse-asn1 "^5.1.7" + readable-stream "^2.3.8" safe-buffer "^5.2.1" browserify-zlib@^0.1.4: @@ -6087,7 +6209,7 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" -browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.22.1, browserslist@^4.22.2, browserslist@^4.22.3, browserslist@^4.23.0: +browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.22.1, browserslist@^4.22.2, browserslist@^4.23.0: version "4.23.0" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== @@ -6156,7 +6278,7 @@ buffer@4.9.2, buffer@^4.3.0: ieee754 "^1.1.4" isarray "^1.0.0" -buffer@^5.1.0, buffer@^5.2.1, buffer@^5.5.0: +buffer@^5.1.0, buffer@^5.2.1, buffer@^5.5.0, buffer@^5.7.1: version "5.7.1" resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== @@ -6244,9 +6366,9 @@ builtin-status-codes@^3.0.0: integrity sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ== builtins@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" - integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== + version "5.1.0" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.1.0.tgz#6d85eeb360c4ebc166c3fdef922a15aa7316a5e8" + integrity sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg== dependencies: semver "^7.0.0" @@ -6441,6 +6563,14 @@ camel-case@3.0.x: no-case "^2.2.0" upper-case "^1.1.1" +camelcase-keys@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" + integrity sha512-bA/Z/DERHKqoEOrp+qeGKw1QlvEQkGZSc0XaY6VnTxZr+Kv1G5zFwttpjv8qxZ/sBPT4nthwZaAcsAZTJlSKXQ== + dependencies: + camelcase "^2.0.0" + map-obj "^1.0.0" + camelcase-keys@^4.0.0: version "4.2.0" resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77" @@ -6459,6 +6589,11 @@ camelcase-keys@^6.2.2: map-obj "^4.0.0" quick-lru "^4.0.1" +camelcase@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f" + integrity sha512-DLIsRzJVBQu72meAKPkWQOLcujdXT32hwdfnkI1frSiSRMK1MofjKHf+MEx0SB6fjEFXL8fBDv1dKymBlOp4Qw== + camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" @@ -6484,10 +6619,10 @@ caniuse-api@^3.0.0: lodash.memoize "^4.1.2" lodash.uniq "^4.5.0" -caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001591: - version "1.0.30001593" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001593.tgz#7cda1d9e5b0cad6ebab4133b1f239d4ea44fe659" - integrity sha512-UWM1zlo3cZfkpBysd7AS+z+v007q9G1+fLTUU42rQnY6t2axoogPW/xol6T7juU5EUoOhML4WgBIdG+9yYqAjQ== +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001587, caniuse-lite@^1.0.30001599: + version "1.0.30001612" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz#d34248b4ec1f117b70b24ad9ee04c90e0b8a14ae" + integrity sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g== caseless@~0.12.0: version "0.12.0" @@ -6517,7 +6652,7 @@ chai@^4.3.10: pathval "^1.1.1" type-detect "^4.0.8" -chalk@^1.0.0, chalk@^1.1.3: +chalk@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" integrity sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A== @@ -6681,11 +6816,6 @@ ci-info@^1.5.0: resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== -ci-info@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46" - integrity sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ== - ci-info@^3.2.0: version "3.9.0" resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" @@ -6699,7 +6829,7 @@ cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: inherits "^2.0.1" safe-buffer "^5.0.1" -citty@^0.1.5, citty@^0.1.6: +citty@^0.1.6: version "0.1.6" resolved "https://registry.yarnpkg.com/citty/-/citty-0.1.6.tgz#0f7904da1ed4625e1a9ea7e0fa780981aab7c5e4" integrity sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ== @@ -6740,20 +6870,6 @@ clean-stack@^2.0.0: resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== -cli-cursor@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987" - integrity sha512-25tABq090YNKkF6JH7lcwO0zFJTRke4Jcq9iX2nr/Sz0Cjjv4gckmwlW6Ty/aoyFd6z3ysR2hMGC2GFugmBo6A== - dependencies: - restore-cursor "^1.0.1" - -cli-cursor@^2.0.0, cli-cursor@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" - integrity sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw== - dependencies: - restore-cursor "^2.0.0" - cli-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-3.1.0.tgz#264305a7ae490d1d03bf0c9ba7c925d1753af307" @@ -6766,23 +6882,15 @@ cli-spinners@^2.5.0: resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.9.2.tgz#1773a8f4b9c4d6ac31563df53b3fc1d79462fe41" integrity sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg== -cli-table3@^0.6.1, cli-table3@~0.6.0: - version "0.6.3" - resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.3.tgz#61ab765aac156b52f222954ffc607a6f01dbeeb2" - integrity sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg== +cli-table3@^0.6.1, cli-table3@~0.6.1: + version "0.6.4" + resolved "https://registry.yarnpkg.com/cli-table3/-/cli-table3-0.6.4.tgz#d1c536b8a3f2e7bec58f67ac9e5769b1b30088b0" + integrity sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw== dependencies: string-width "^4.2.0" optionalDependencies: "@colors/colors" "1.5.0" -cli-truncate@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-0.2.1.tgz#9f15cfbb0705005369216c626ac7d05ab90dd574" - integrity sha512-f4r4yJnbT++qUPI9NR4XLDLq41gQ+uqnPItWG0F5ZkehuNiTTa3EY0S4AqTSUOeJ7/zU41oWPQSNkW5BqPL9bg== - dependencies: - slice-ansi "0.0.4" - string-width "^1.0.1" - cli-truncate@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-2.1.0.tgz#c39e28bf05edcde5be3b98992a22deed5a2b93c7" @@ -6871,11 +6979,6 @@ coa@^2.0.2: chalk "^2.4.1" q "^1.1.2" -code-point-at@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" - integrity sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA== - collapse-white-space@^1.0.2: version "1.0.6" resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" @@ -6934,6 +7037,11 @@ color@^3.0.0, color@^3.1.3: color-convert "^1.9.3" color-string "^1.6.0" +colorette@^2.0.16: + version "2.0.20" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" + integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== + colornames@^1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/colornames/-/colornames-1.1.1.tgz#f8889030685c7c4ff9e2a559f5077eb76a816f96" @@ -7106,6 +7214,11 @@ conf@^6.2.1: semver "^6.2.0" write-file-atomic "^3.0.0" +confbox@^0.1.7: + version "0.1.7" + resolved "https://registry.yarnpkg.com/confbox/-/confbox-0.1.7.tgz#ccfc0a2bcae36a84838e83a3b7f770fb17d6c579" + integrity sha512-uJcB/FKZtBMCJpK8MQji6bJHgu1tixKPxRLeGkNzBoOZzpnZUJm0jm2/sBDWcuBx1dYgxV4JU+g5hmNxCyAmdA== + config-file-ts@^0.2.4: version "0.2.6" resolved "https://registry.yarnpkg.com/config-file-ts/-/config-file-ts-0.2.6.tgz#b424ff74612fb37f626d6528f08f92ddf5d22027" @@ -7341,10 +7454,10 @@ cookie@0.4.0: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba" integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg== -cookie@0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" - integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== +cookie@0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== copy-concurrently@^1.0.0: version "1.0.5" @@ -7363,17 +7476,17 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== -core-js-compat@^3.31.0, core-js-compat@^3.34.0: - version "3.36.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.36.0.tgz#087679119bc2fdbdefad0d45d8e5d307d45ba190" - integrity sha512-iV9Pd/PsgjNWBXeq8XRtWVSgz2tKAfhfvBs7qxYty+RlRd+OCksaWmOnc4JKrTc1cToXL1N0s3l/vwlxPtdElw== +core-js-compat@^3.31.0, core-js-compat@^3.36.1: + version "3.37.0" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.37.0.tgz#d9570e544163779bb4dff1031c7972f44918dc73" + integrity sha512-vYq4L+T8aS5UuFg4UwDhc7YNRWVeVZwltad9C/jV3R2LgVOpS9BDr7l/WL6BN0dbV3k1XejPTHqqEzJgsa0frA== dependencies: - browserslist "^4.22.3" + browserslist "^4.23.0" core-js-pure@^3.30.2: - version "3.36.0" - resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.36.0.tgz#ffb34330b14e594d6a9835cf5843b4123f1d95db" - integrity sha512-cN28qmhRNgbMZZMc/RFu5w8pK9VJzpb2rJVR/lHuZJKwmXnoWOpXmMkxqBB514igkp1Hu8WGROsiOAzUcKdHOQ== + version "3.37.0" + resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.37.0.tgz#ce99fb4a7cec023fdbbe5b5bd1f06bbcba83316e" + integrity sha512-d3BrpyFr5eD4KcbRvQ3FTUx/KWmaDesr7+a3+1+P46IUnNoEt+oiLijPINZMEon7w9oGkIINWxrBAU9DEciwFQ== core-js@3.2.1: version "3.2.1" @@ -7391,9 +7504,9 @@ core-js@^2.4.0: integrity sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ== core-js@^3.6.4: - version "3.36.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.36.0.tgz#e752fa0b0b462a0787d56e9d73f80b0f7c0dde68" - integrity sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw== + version "3.37.0" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.37.0.tgz#d8dde58e91d156b2547c19d8a4efd5c7f6c426bb" + integrity sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug== core-util-is@1.0.2: version "1.0.2" @@ -7515,9 +7628,9 @@ crypto-random-string@^2.0.0: integrity sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA== css-blank-pseudo@^6.0.0: - version "6.0.1" - resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-6.0.1.tgz#f79f8b84cc00f891e16aa85f14093c5e1c3499a8" - integrity sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw== + version "6.0.2" + resolved "https://registry.yarnpkg.com/css-blank-pseudo/-/css-blank-pseudo-6.0.2.tgz#50db072d4fb5b40c2df9ffe5ca5fbb9b19c77fc8" + integrity sha512-J/6m+lsqpKPqWHOifAFtKFeGLOzw3jR92rxQcwRUfA/eTuZzKfKlxOmYDx2+tqOPQAueNvBiY8WhAeHu5qNmTg== dependencies: postcss-selector-parser "^6.0.13" @@ -7540,11 +7653,11 @@ css-declaration-sorter@^4.0.1: timsort "^0.3.0" css-has-pseudo@^6.0.0: - version "6.0.2" - resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-6.0.2.tgz#a1a15ee7082d72a23ed1d810220ba384da867d15" - integrity sha512-Z2Qm5yyOvJRTy6THdUlnGIX6PW/1wOc4FHWlfkcBkfkpZ3oz6lPdG+h+J7t1HZHT4uSSVR8XatXiMpqMUADXow== + version "6.0.3" + resolved "https://registry.yarnpkg.com/css-has-pseudo/-/css-has-pseudo-6.0.3.tgz#babd8f208507d553b3986ee803b3adf4dd09c00e" + integrity sha512-qIsDxK/z0byH/mpNsv5hzQ5NOl8m1FRmOLgZpx4bG5uYHnOlO2XafeMI4mFIgNSViHwoUWcxSJZyyijaAmbs+A== dependencies: - "@csstools/selector-specificity" "^3.0.2" + "@csstools/selector-specificity" "^3.0.3" postcss-selector-parser "^6.0.13" postcss-value-parser "^4.2.0" @@ -7670,9 +7783,9 @@ css.escape@^1.5.1: integrity sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg== cssdb@^7.9.0: - version "7.11.1" - resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.11.1.tgz#491841b281d337d7e5332e43b282429dd241b377" - integrity sha512-F0nEoX/Rv8ENTHsjMPGHd9opdjGfXkgRBafSUGnQKPzGZFB7Lm0BbT10x21TMOCrKLbVsJ0NoCDMk6AfKqw8/A== + version "7.11.2" + resolved "https://registry.yarnpkg.com/cssdb/-/cssdb-7.11.2.tgz#127a2f5b946ee653361a5af5333ea85a39df5ae5" + integrity sha512-lhQ32TFkc1X4eTefGfYPvgovRSzIMofHkigfH8nWtyRL4XJLsRhJFreRvEgKzept7x1rjBuy3J/MurXLaFxW/A== cssesc@^3.0.0: version "3.0.0" @@ -7800,50 +7913,52 @@ cypress-file-upload@3.5.3: resolved "https://registry.yarnpkg.com/cypress-file-upload/-/cypress-file-upload-3.5.3.tgz#cd706485de3fb2cbd4a8c2dd90fe96d537bb4311" integrity sha512-S/czzqAj1BYz6Xxnfpx2aSc6hXsj76fd8/iuycJ2RxoxCcQMliw8eQV0ugzVlkzr1GD5dKGviNFGYqv3nRJ+Tg== -cypress@^6.6.0: - version "6.9.1" - resolved "https://registry.yarnpkg.com/cypress/-/cypress-6.9.1.tgz#ce1106bfdc47f8d76381dba63f943447883f864c" - integrity sha512-/RVx6sOhsyTR9sd9v0BHI4tnDZAhsH9rNat7CIKCUEr5VPWxyfGH0EzK4IHhAqAH8vjFcD4U14tPiJXshoUrmQ== +cypress@13.7.1: + version "13.7.1" + resolved "https://registry.yarnpkg.com/cypress/-/cypress-13.7.1.tgz#d1208eb04efd46ef52a30480a5da71a03373261a" + integrity sha512-4u/rpFNxOFCoFX/Z5h+uwlkBO4mWzAjveURi3vqdSu56HPvVdyGTxGw4XKGWt399Y1JwIn9E1L9uMXQpc0o55w== dependencies: - "@cypress/listr-verbose-renderer" "^0.4.1" - "@cypress/request" "^2.88.5" + "@cypress/request" "^3.0.0" "@cypress/xvfb" "^1.2.4" - "@types/node" "12.12.50" - "@types/sinonjs__fake-timers" "^6.0.1" + "@types/sinonjs__fake-timers" "8.1.1" "@types/sizzle" "^2.3.2" - arch "^2.1.2" - blob-util "2.0.2" + arch "^2.2.0" + blob-util "^2.0.2" bluebird "^3.7.2" + buffer "^5.7.1" cachedir "^2.3.0" chalk "^4.1.0" check-more-types "^2.24.0" - cli-table3 "~0.6.0" - commander "^5.1.0" + cli-cursor "^3.1.0" + cli-table3 "~0.6.1" + commander "^6.2.1" common-tags "^1.8.0" - dayjs "^1.9.3" - debug "4.3.2" - eventemitter2 "^6.4.2" - execa "^4.0.2" + dayjs "^1.10.4" + debug "^4.3.4" + enquirer "^2.3.6" + eventemitter2 "6.4.7" + execa "4.1.0" executable "^4.1.1" - extract-zip "^1.7.0" - fs-extra "^9.0.1" + extract-zip "2.0.1" + figures "^3.2.0" + fs-extra "^9.1.0" getos "^3.2.1" - is-ci "^2.0.0" - is-installed-globally "^0.3.2" + is-ci "^3.0.1" + is-installed-globally "~0.4.0" lazy-ass "^1.6.0" - listr "^0.14.3" - lodash "^4.17.19" + listr2 "^3.8.3" + lodash "^4.17.21" log-symbols "^4.0.0" - minimist "^1.2.5" - moment "^2.29.1" + minimist "^1.2.8" ospath "^1.2.2" - pretty-bytes "^5.4.1" - ramda "~0.27.1" + pretty-bytes "^5.6.0" + process "^0.11.10" + proxy-from-env "1.0.0" request-progress "^3.0.0" - supports-color "^7.2.0" + semver "^7.5.3" + supports-color "^8.1.1" tmp "~0.2.1" untildify "^4.0.0" - url "^0.11.0" yauzl "^2.10.0" cz-conventional-changelog@2.1.0: @@ -7878,6 +7993,33 @@ data-urls@^2.0.0: whatwg-mimetype "^2.3.0" whatwg-url "^8.0.0" +data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + date-fns@2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.10.0.tgz#abd10604d8bafb0bcbd2ba2e9b0563b922ae4b6b" @@ -7888,11 +8030,6 @@ date-fns@2.25.0: resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.25.0.tgz#8c5c8f1d958be3809a9a03f4b742eba894fc5680" integrity sha512-ovYRFnTrbGPD4nqaEqescPEv1mNwvt+UTqI3Ay9SzNtey9NZnYu6E2qCcBBgJ6/2VF1zGGygpyTDITqpQQ5e+w== -date-fns@^1.27.2: - version "1.30.1" - resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c" - integrity sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw== - date-fns@^2.30.0: version "2.30.0" resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-2.30.0.tgz#f367e644839ff57894ec6ac480de40cae4b0f4d0" @@ -7905,7 +8042,7 @@ dateformat@3.0.3, dateformat@^3.0.0: resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae" integrity sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q== -dayjs@^1.9.3: +dayjs@^1.10.4: version "1.11.10" resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.10.tgz#68acea85317a6e164457d6d6947564029a6a16a0" integrity sha512-vjAczensTgRcqDERK0SR2XMwsF/tSvnvlv6VcF2GIhg6Sx4yOIt/irsr1RDJsKiIyBzJDpCoXiWWq28MqH2cnQ== @@ -7931,13 +8068,6 @@ debug@4, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, d dependencies: ms "2.1.2" -debug@4.3.2: - version "4.3.2" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" - integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== - dependencies: - ms "2.1.2" - debug@^3.1.0, debug@^3.2.7: version "3.2.7" resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" @@ -7953,7 +8083,7 @@ decamelize-keys@^1.0.0, decamelize-keys@^1.1.0: decamelize "^1.1.0" map-obj "^1.0.0" -decamelize@^1.1.0, decamelize@^1.2.0: +decamelize@^1.1.0, decamelize@^1.1.2, decamelize@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== @@ -8152,7 +8282,7 @@ defer-to-connect@^2.0.0: resolved "https://registry.yarnpkg.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz#8016bdb4143e4632b77a3449c6236277de520587" integrity sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg== -define-data-property@^1.0.1, define-data-property@^1.1.2, define-data-property@^1.1.4: +define-data-property@^1.0.1, define-data-property@^1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== @@ -8197,7 +8327,7 @@ define-property@^2.0.2: is-descriptor "^1.0.2" isobject "^3.0.1" -defu@^6.1.3: +defu@^6.1.4: version "6.1.4" resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.4.tgz#4e0c9cf9ff68fe5f3d7f2765cc1a012dfdcb0479" integrity sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg== @@ -8299,9 +8429,9 @@ detect-indent@^6.1.0: integrity sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA== detect-libc@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.2.tgz#8ccf2ba9315350e1241b88d0ac3b0e1fbd99605d" - integrity sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" + integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== detect-node-es@^1.1.0: version "1.1.0" @@ -8718,14 +8848,14 @@ duplexify@^3.4.2, duplexify@^3.5.0, duplexify@^3.6.0: stream-shift "^1.0.0" duplexify@^4.1.1: - version "4.1.2" - resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.2.tgz#18b4f8d28289132fa0b9573c898d9f903f81c7b0" - integrity sha512-fz3OjcNCHmRP12MJoZMPglx8m4rrFP8rovnk4vT8Fs+aonZoCwGg10dSsQsfP/E62eZcPTMSMP6686fu9Qlqtw== + version "4.1.3" + resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-4.1.3.tgz#a07e1c0d0a2c001158563d32592ba58bddb0236f" + integrity sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA== dependencies: end-of-stream "^1.4.1" inherits "^2.0.3" readable-stream "^3.1.1" - stream-shift "^1.0.0" + stream-shift "^1.0.2" eastasianwidth@^0.2.0: version "0.2.0" @@ -8751,9 +8881,9 @@ ejs@^2.6.1: integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== ejs@^3.1.8: - version "3.1.9" - resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.9.tgz#03c9e8777fe12686a9effcef22303ca3d8eeb361" - integrity sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ== + version "3.1.10" + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" + integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== dependencies: jake "^10.8.5" @@ -8891,9 +9021,9 @@ electron-store@5.1.1: type-fest "^0.7.1" electron-to-chromium@^1.4.668: - version "1.4.690" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.690.tgz#dd5145d45c49c08a9a6f7454127e660bdf9a3fa7" - integrity sha512-+2OAGjUx68xElQhydpcbqH50hE8Vs2K6TkAeLhICYfndb67CVH0UsZaijmRUE3rHlIxU1u0jxwhgVe6fK3YANA== + version "1.4.746" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.746.tgz#787213e75f6c7bccb55dfe8b68170555c548d093" + integrity sha512-jeWaIta2rIG2FzHaYIhSuVWqC6KJYo7oSBX4Jv7g+aVujKztfvdpf+n6MGwZdC5hQXbax4nntykLH2juIQrfPg== electron-updater@4.1.2: version "4.1.2" @@ -8918,15 +9048,10 @@ electron@27.0.0: "@types/node" "^18.11.18" extract-zip "^2.0.1" -elegant-spinner@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/elegant-spinner/-/elegant-spinner-1.0.1.tgz#db043521c95d7e303fd8f345bedc3349cfb0729e" - integrity sha512-B+ZM+RXvRqQaAmkMlO/oSe5nMUOaUnyfGYCEHoR8wrXsZR2mA0XVibsxV1bvTwxdRWah1PkQqso2EzhILGHtEQ== - -elliptic@^6.5.3, elliptic@^6.5.4: - version "6.5.4" - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" - integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== +elliptic@^6.5.3, elliptic@^6.5.5: + version "6.5.5" + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.5.tgz#c715e09f78b6923977610d4c2346d6ce22e6dded" + integrity sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw== dependencies: bn.js "^4.11.9" brorand "^1.1.0" @@ -9005,6 +9130,14 @@ enhanced-resolve@^4.1.0, enhanced-resolve@^4.1.1, enhanced-resolve@^4.5.0: memory-fs "^0.5.0" tapable "^1.0.0" +enquirer@^2.3.6: + version "2.4.1" + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.4.1.tgz#93334b3fbd74fc7097b224ab4a8fb7e40bf4ae56" + integrity sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ== + dependencies: + ansi-colors "^4.1.1" + strip-ansi "^6.0.1" + entities@^1.1.1, entities@~1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" @@ -9026,9 +9159,9 @@ env-variable@0.0.x: integrity sha512-bHz59NlBbtS0NhftmR8+ExBEekE7br0e01jw+kk0NDro7TtZzBYZ5ScGPs3OmwnpyfHTHOtr1Y6uedCdrIldtg== envinfo@^7.7.3: - version "7.11.1" - resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.11.1.tgz#2ffef77591057081b0129a8fd8cf6118da1b94e1" - integrity sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg== + version "7.12.0" + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.12.0.tgz#b56723b39c2053d67ea5714f026d05d4f5cc7acd" + integrity sha512-Iw9rQJBGpJRd3rwXm9ft/JiGoAZmLxxJZELYDQoPRZ4USVhkKtIcNBPw6U+/K2mBpaqM25JSV6Yl4Az9vO2wJg== err-code@^2.0.2: version "2.0.3" @@ -9042,24 +9175,28 @@ errno@^0.1.3, errno@~0.1.7: dependencies: prr "~1.0.1" -error-ex@^1.3.1: +error-ex@^1.2.0, error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== dependencies: is-arrayish "^0.2.1" -es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22.4: - version "1.22.5" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.22.5.tgz#1417df4e97cc55f09bf7e58d1e614bc61cb8df46" - integrity sha512-oW69R+4q2wG+Hc3KZePPZxOiisRIqfKBVo/HLx94QcJeWGU/8sZhCvc829rd1kS366vlJbzBfXf9yWwf0+Ko7w== +es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.1, es-abstract@^1.23.2: + version "1.23.3" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.3.tgz#8f0c5a35cd215312573c5a27c87dfd6c881a0aa0" + integrity sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A== dependencies: array-buffer-byte-length "^1.0.1" arraybuffer.prototype.slice "^1.0.3" available-typed-arrays "^1.0.7" call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" es-define-property "^1.0.0" es-errors "^1.3.0" + es-object-atoms "^1.0.0" es-set-tostringtag "^2.0.3" es-to-primitive "^1.2.1" function.prototype.name "^1.1.6" @@ -9070,10 +9207,11 @@ es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22 has-property-descriptors "^1.0.2" has-proto "^1.0.3" has-symbols "^1.0.3" - hasown "^2.0.1" + hasown "^2.0.2" internal-slot "^1.0.7" is-array-buffer "^3.0.4" is-callable "^1.2.7" + is-data-view "^1.0.1" is-negative-zero "^2.0.3" is-regex "^1.1.4" is-shared-array-buffer "^1.0.3" @@ -9084,17 +9222,17 @@ es-abstract@^1.17.2, es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.22 object-keys "^1.1.1" object.assign "^4.1.5" regexp.prototype.flags "^1.5.2" - safe-array-concat "^1.1.0" + safe-array-concat "^1.1.2" safe-regex-test "^1.0.3" - string.prototype.trim "^1.2.8" - string.prototype.trimend "^1.0.7" - string.prototype.trimstart "^1.0.7" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" + string.prototype.trimstart "^1.0.8" typed-array-buffer "^1.0.2" typed-array-byte-length "^1.0.1" typed-array-byte-offset "^1.0.2" - typed-array-length "^1.0.5" + typed-array-length "^1.0.6" unbox-primitive "^1.0.2" - which-typed-array "^1.1.14" + which-typed-array "^1.1.15" es-array-method-boxes-properly@^1.0.0: version "1.0.0" @@ -9108,7 +9246,7 @@ es-define-property@^1.0.0: dependencies: get-intrinsic "^1.2.4" -es-errors@^1.0.0, es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: +es-errors@^1.1.0, es-errors@^1.2.1, es-errors@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== @@ -9129,32 +9267,38 @@ es-get-iterator@^1.1.3: stop-iteration-iterator "^1.0.0" es-iterator-helpers@^1.0.17: - version "1.0.17" - resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.17.tgz#123d1315780df15b34eb181022da43e734388bb8" - integrity sha512-lh7BsUqelv4KUbR5a/ZTaGGIMLCjPGPqJ6q+Oq24YP0RdyptX1uzm4vvaqzk7Zx3bpl/76YLTTDj9L7uYQ92oQ== + version "1.0.18" + resolved "https://registry.yarnpkg.com/es-iterator-helpers/-/es-iterator-helpers-1.0.18.tgz#4d3424f46b24df38d064af6fbbc89274e29ea69d" + integrity sha512-scxAJaewsahbqTYrGKJihhViaM6DDZDDoucfvzNbK0pOren1g/daDQ3IAhzn+1G14rBG7w+i5N+qul60++zlKA== dependencies: - asynciterator.prototype "^1.0.0" call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.4" + es-abstract "^1.23.0" es-errors "^1.3.0" - es-set-tostringtag "^2.0.2" + es-set-tostringtag "^2.0.3" function-bind "^1.1.2" get-intrinsic "^1.2.4" globalthis "^1.0.3" has-property-descriptors "^1.0.2" - has-proto "^1.0.1" + has-proto "^1.0.3" has-symbols "^1.0.3" internal-slot "^1.0.7" iterator.prototype "^1.1.2" - safe-array-concat "^1.1.0" + safe-array-concat "^1.1.2" es-module-lexer@^0.9.3: version "0.9.3" resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19" integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ== -es-set-tostringtag@^2.0.2, es-set-tostringtag@^2.0.3: +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== @@ -9265,6 +9409,35 @@ esbuild@^0.19.3: "@esbuild/win32-ia32" "0.19.12" "@esbuild/win32-x64" "0.19.12" +esbuild@^0.20.1: + version "0.20.2" + resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.20.2.tgz#9d6b2386561766ee6b5a55196c6d766d28c87ea1" + integrity sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g== + optionalDependencies: + "@esbuild/aix-ppc64" "0.20.2" + "@esbuild/android-arm" "0.20.2" + "@esbuild/android-arm64" "0.20.2" + "@esbuild/android-x64" "0.20.2" + "@esbuild/darwin-arm64" "0.20.2" + "@esbuild/darwin-x64" "0.20.2" + "@esbuild/freebsd-arm64" "0.20.2" + "@esbuild/freebsd-x64" "0.20.2" + "@esbuild/linux-arm" "0.20.2" + "@esbuild/linux-arm64" "0.20.2" + "@esbuild/linux-ia32" "0.20.2" + "@esbuild/linux-loong64" "0.20.2" + "@esbuild/linux-mips64el" "0.20.2" + "@esbuild/linux-ppc64" "0.20.2" + "@esbuild/linux-riscv64" "0.20.2" + "@esbuild/linux-s390x" "0.20.2" + "@esbuild/linux-x64" "0.20.2" + "@esbuild/netbsd-x64" "0.20.2" + "@esbuild/openbsd-x64" "0.20.2" + "@esbuild/sunos-x64" "0.20.2" + "@esbuild/win32-arm64" "0.20.2" + "@esbuild/win32-ia32" "0.20.2" + "@esbuild/win32-x64" "0.20.2" + escalade@^3.1.1: version "3.1.2" resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" @@ -9301,10 +9474,12 @@ escodegen@^2.0.0, escodegen@^2.1.0: optionalDependencies: source-map "~0.6.1" -eslint-compat-utils@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.1.2.tgz#f45e3b5ced4c746c127cf724fb074cd4e730d653" - integrity sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg== +eslint-compat-utils@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.0.tgz#f7b2eb2befec25a370fac76934d3f9189f312a65" + integrity sha512-dc6Y8tzEcSYZMHa+CMPLi/hyo1FzNeonbhJL7Ol0ccuKQkwopJcJBA9YL/xmMTLU1eKigXo9vj9nALElWYSowg== + dependencies: + semver "^7.5.4" eslint-config-prettier@^8.1.0: version "8.10.0" @@ -9329,6 +9504,13 @@ eslint-config-standard@^16.0.2: resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.3.tgz#6c8761e544e96c531ff92642eeb87842b8488516" integrity sha512-x4fmJL5hGqNJKGHSjnLdgA6U6h1YW/G2dW9fA+cyVur4SK6lyue8+UgNKWlZtUDTXvgKDD/Oa3GQjmB5kjtVvg== +eslint-formatter-summary-chart@0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/eslint-formatter-summary-chart/-/eslint-formatter-summary-chart-0.3.0.tgz#d6da8c9ba18f09488efcff49d3287e3e4162b396" + integrity sha512-xRGVLIt5SjH0Tq3aPg7MA0xGPPIvKCNk9rqYhrgoQiHDPyaMmWDPz0176qAtBdhGfpiclhxkbuo/rrxZLf/U+g== + dependencies: + bar-horizontal "^0.5.1" + eslint-import-resolver-node@^0.3.9: version "0.3.9" resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" @@ -9346,20 +9528,20 @@ eslint-module-utils@^2.8.0: debug "^3.2.7" eslint-plugin-cypress@^2.11.2: - version "2.15.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-cypress/-/eslint-plugin-cypress-2.15.1.tgz#336afa7e8e27451afaf65aa359c9509e0a4f3a7b" - integrity sha512-eLHLWP5Q+I4j2AWepYq0PgFEei9/s5LvjuSqWrxurkg1YZ8ltxdvMNmdSf0drnsNo57CTgYY/NIHHLRSWejR7w== + version "2.15.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-cypress/-/eslint-plugin-cypress-2.15.2.tgz#f22e12fad4c434edad7b298ef92bac8fa087ffa0" + integrity sha512-CtcFEQTDKyftpI22FVGpx8bkpKyYXBlNge6zSo0pl5/qJvBAnzaD76Vu2AsP16d6mTj478Ldn2mhgrWV+Xr0vQ== dependencies: globals "^13.20.0" eslint-plugin-es-x@^7.5.0: - version "7.5.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.5.0.tgz#d08d9cd155383e35156c48f736eb06561d07ba92" - integrity sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ== + version "7.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.6.0.tgz#ccee7a4556c0f816d1ae88fd0eea21540e8ccd65" + integrity sha512-I0AmeNgevgaTR7y2lrVCJmGYF0rjoznpDvqV/kIkZSZbZ8Rw3eu4cGlvBBULScfkSOCzqKbff5LR4CNrV7mZHA== dependencies: "@eslint-community/eslint-utils" "^4.1.2" "@eslint-community/regexpp" "^4.6.0" - eslint-compat-utils "^0.1.2" + eslint-compat-utils "^0.5.0" eslint-plugin-import@^2.29.1: version "2.29.1" @@ -9420,14 +9602,14 @@ eslint-plugin-react-hooks@^4.6.0: integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== eslint-plugin-react-refresh@^0.4.4: - version "0.4.5" - resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.5.tgz#6b9b307bad3feba2244ef64a1a15485ac70a2d0f" - integrity sha512-D53FYKJa+fDmZMtriODxvhwrO+IOqrxoEo21gMA0sjHdU6dPVH4OhyFip9ypl8HOF5RV5KdTo+rBQLvnY2cO8w== + version "0.4.6" + resolved "https://registry.yarnpkg.com/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.6.tgz#e8e8accab681861baed00c5c12da70267db0936f" + integrity sha512-NjGXdm7zgcKRkKMua34qVO9doI7VOxZ6ancSvBELJSSoX97jyndXcSoa8XBh69JoB31dNz3EEzlMcizZl7LaMA== eslint-plugin-react@^7.22.0: - version "7.34.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.34.0.tgz#ab71484d54fc409c37025c5eca00eb4177a5e88c" - integrity sha512-MeVXdReleBTdkz/bvcQMSnCXGi+c9kvy51IpinjnJgutl3YTHWsDdke7Z1ufZpGfDG8xduBDKyjtB9JH1eBKIQ== + version "7.34.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.34.1.tgz#6806b70c97796f5bbfb235a5d3379ece5f4da997" + integrity sha512-N97CxlouPT1AHt8Jn0mhhN2RrADlUAsk1/atcT2KyA/l9Q/E6ll7OIGwNumFmWfZ9skV3XXccYS19h80rHtgkw== dependencies: array-includes "^3.1.7" array.prototype.findlast "^1.2.4" @@ -9464,9 +9646,9 @@ eslint-plugin-storybook@^0.8.0: ts-dedent "^2.2.0" eslint-plugin-testing-library@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-6.2.0.tgz#af3340b783c881eb19ec5ac6b3a4bfe8ab4a1f74" - integrity sha512-+LCYJU81WF2yQ+Xu4A135CgK8IszcFcyMF4sWkbiu6Oj+Nel0TrkZq/HvDw0/1WuO3dhDQsZA/OpEMGd0NfcUw== + version "6.2.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-testing-library/-/eslint-plugin-testing-library-6.2.2.tgz#67e84ff891a2b3a8078ced0afa95ee6f343c00c1" + integrity sha512-1E94YOTUDnOjSLyvOwmbVDzQi/WkKm3WVrMXu6SmBr6DN95xTGZmI6HJ/eOkSXh/DlheRsxaPsJvZByDBhWLVQ== dependencies: "@typescript-eslint/utils" "^5.58.0" @@ -9618,10 +9800,10 @@ etag@~1.8.1: resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== -eventemitter2@^6.4.2: - version "6.4.9" - resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.9.tgz#41f2750781b4230ed58827bc119d293471ecb125" - integrity sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg== +eventemitter2@6.4.7: + version "6.4.7" + resolved "https://registry.yarnpkg.com/eventemitter2/-/eventemitter2-6.4.7.tgz#a7f6c4d7abf28a14c1ef3442f21cb306a054271d" + integrity sha512-tYUSVOGeQPKt/eC1ABfhHy5Xd96N3oIijJvN3O9+TsC28T5V9yX9oEfEK5faP0EFSNVOG97qtAS68GBrQB2hDg== eventemitter3@^4.0.0: version "4.0.7" @@ -9671,20 +9853,7 @@ execa@4.0.0: signal-exit "^3.0.2" strip-final-newline "^2.0.0" -execa@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" - integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== - dependencies: - cross-spawn "^6.0.0" - get-stream "^4.0.0" - is-stream "^1.1.0" - npm-run-path "^2.0.0" - p-finally "^1.0.0" - signal-exit "^3.0.0" - strip-eof "^1.0.0" - -execa@^4.0.2: +execa@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/execa/-/execa-4.1.0.tgz#4e5491ad1572f2f17a77d388c6c857135b22847a" integrity sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA== @@ -9699,6 +9868,19 @@ execa@^4.0.2: signal-exit "^3.0.2" strip-final-newline "^2.0.0" +execa@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8" + integrity sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA== + dependencies: + cross-spawn "^6.0.0" + get-stream "^4.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + execa@^5.0.0, execa@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" @@ -9743,11 +9925,6 @@ executable@^4.1.1: dependencies: pify "^2.2.0" -exit-hook@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8" - integrity sha512-MsG3prOVw1WtLXAZbM3KiYtooKR1LvxHh3VHsVtIy0uiUu8usxgB/94DP2HxtD/661lLdB6yzQ09lGJSQr6nkg== - expand-brackets@^2.1.4: version "2.1.4" resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622" @@ -9815,16 +9992,16 @@ express@4.16.4: vary "~1.1.2" express@^4.16.3, express@^4.16.4, express@^4.17.1, express@^4.17.3: - version "4.18.3" - resolved "https://registry.yarnpkg.com/express/-/express-4.18.3.tgz#6870746f3ff904dee1819b82e4b51509afffb0d4" - integrity sha512-6VyCijWQ+9O7WuVMTRBTl+cjNNIzD5cY5mQ1WM8r/LEkI2u8EYpOotESNwzNlyCn3g+dmjKYI6BmNneSr/FSRw== + version "4.19.2" + resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465" + integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== dependencies: accepts "~1.3.8" array-flatten "1.1.1" body-parser "1.20.2" content-disposition "0.5.4" content-type "~1.0.4" - cookie "0.5.0" + cookie "0.6.0" cookie-signature "1.0.6" debug "2.6.9" depd "2.0.0" @@ -9900,17 +10077,7 @@ extglob@^2.0.4: snapdragon "^0.8.1" to-regex "^3.0.1" -extract-zip@^1.6.6, extract-zip@^1.7.0: - version "1.7.0" - resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" - integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== - dependencies: - concat-stream "^1.6.2" - debug "^2.6.9" - mkdirp "^0.5.4" - yauzl "^2.10.0" - -extract-zip@^2.0.1: +extract-zip@2.0.1, extract-zip@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== @@ -9921,6 +10088,16 @@ extract-zip@^2.0.1: optionalDependencies: "@types/yauzl" "^2.9.1" +extract-zip@^1.6.6: + version "1.7.0" + resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-1.7.0.tgz#556cc3ae9df7f452c493a0cfb51cc30277940927" + integrity sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA== + dependencies: + concat-stream "^1.6.2" + debug "^2.6.9" + mkdirp "^0.5.4" + yauzl "^2.10.0" + extsprintf@1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" @@ -10045,7 +10222,7 @@ figgy-pudding@^3.5.1: resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== -figures@^1.7.0: +figures@1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e" integrity sha512-UxKlfCRuCBxSXU4C6t9scbDyWZ4VlaFFdojKtzJuSkuOBQ5CNFum+zZXFwHjo+CxBC1t6zlYPgHIgFjL8ggoEQ== @@ -10053,10 +10230,10 @@ figures@^1.7.0: escape-string-regexp "^1.0.5" object-assign "^4.1.0" -figures@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" - integrity sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA== +figures@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" + integrity sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg== dependencies: escape-string-regexp "^1.0.5" @@ -10241,6 +10418,14 @@ find-root@^1.1.0: resolved "https://registry.yarnpkg.com/find-root/-/find-root-1.1.0.tgz#abcfc8ba76f708c42a97b3d685b7e9450bfb9ce4" integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng== +find-up@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" + integrity sha512-jvElSjyuo4EMQGoTwo1uJU5pQMwTW5lS1x05zzfJuTIyLR3zwO27LYrxNg+dlvKpGOuGy/MzBdXh80g0ve5+HA== + dependencies: + path-exists "^2.0.0" + pinkie-promise "^2.0.0" + find-up@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" @@ -10322,9 +10507,9 @@ flatten@^1.0.2: integrity sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg== flow-parser@0.*: - version "0.229.2" - resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.229.2.tgz#b19ce67bfbfab8c91ee51dcddb9c3ab0f3bf2ab7" - integrity sha512-T72XV2Izvl7yV6dhHhLaJ630Y6vOZJl6dnOS6dN0bPW9ExuREu7xGAf3omtcxX76POTuux9TJPu9ZpS48a/rdw== + version "0.234.0" + resolved "https://registry.yarnpkg.com/flow-parser/-/flow-parser-0.234.0.tgz#92af26f40ea7e79ca4bd66a066d6d6aa3b4223bf" + integrity sha512-J1Wn32xDF1l8FqwshoQnTwC9K3aJ83MFuXUx9AcBQr8ttbI/rkjEgAqnjxaIJuZ6RGMfccN5ZxDJSOMM64qy9Q== flush-write-stream@^1.0.0: version "1.1.1" @@ -10335,9 +10520,9 @@ flush-write-stream@^1.0.0: readable-stream "^2.3.6" follow-redirects@^1.0.0, follow-redirects@^1.14.0: - version "1.15.5" - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.5.tgz#54d4d6d062c0fa7d9d17feb008461550e3ba8020" - integrity sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw== + version "1.15.6" + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.15.6.tgz#7f815c0cda4249c74ff09e95ef97c23b5fd0399b" + integrity sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA== for-each@^0.3.3: version "0.3.3" @@ -10511,7 +10696,7 @@ fs-extra@^8.1.0: jsonfile "^4.0.0" universalify "^0.1.0" -fs-extra@^9.0.0, fs-extra@^9.0.1: +fs-extra@^9.0.0, fs-extra@^9.0.1, fs-extra@^9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== @@ -10613,7 +10798,7 @@ get-func-name@^2.0.1, get-func-name@^2.0.2: resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.2.tgz#0d7cf20cd13fda808669ffa88f4ffc7a3943fc41" integrity sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ== -get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: +get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.2, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: version "1.2.4" resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== @@ -10659,6 +10844,11 @@ get-port@^5.1.1: resolved "https://registry.yarnpkg.com/get-port/-/get-port-5.1.1.tgz#0469ed07563479de6efb986baf053dcd7d4e3193" integrity sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ== +get-stdin@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" + integrity sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw== + get-stdin@^7.0.0: version "7.0.0" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-7.0.0.tgz#8d5de98f15171a125c5e516643c7a6d0ea8a96f6" @@ -10718,9 +10908,9 @@ get-symbol-description@^1.0.2: get-intrinsic "^1.2.4" get-tsconfig@^4.7.0: - version "4.7.2" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.2.tgz#0dcd6fb330391d46332f4c6c1bf89a6514c2ddce" - integrity sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A== + version "4.7.3" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.3.tgz#0498163d98f7b58484dd4906999c0c9d5f103f83" + integrity sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg== dependencies: resolve-pkg-maps "^1.0.0" @@ -10744,17 +10934,17 @@ getpass@^0.1.1: assert-plus "^1.0.0" giget@^1.0.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/giget/-/giget-1.2.1.tgz#4f42779aae57a5f664a1c4d50401b008e9810f4c" - integrity sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g== + version "1.2.3" + resolved "https://registry.yarnpkg.com/giget/-/giget-1.2.3.tgz#ef6845d1140e89adad595f7f3bb60aa31c672cb6" + integrity sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA== dependencies: - citty "^0.1.5" + citty "^0.1.6" consola "^3.2.3" - defu "^6.1.3" - node-fetch-native "^1.6.1" - nypm "^0.3.3" + defu "^6.1.4" + node-fetch-native "^1.6.3" + nypm "^0.3.8" ohash "^1.1.3" - pathe "^1.1.1" + pathe "^1.1.2" tar "^6.2.0" git-raw-commits@^2.0.8: @@ -10836,15 +11026,15 @@ glob-to-regexp@^0.4.1: integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== glob@^10.0.0, glob@^10.3.10: - version "10.3.10" - resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" - integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== + version "10.3.12" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.12.tgz#3a65c363c2e9998d220338e88a5f6ac97302960b" + integrity sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg== dependencies: foreground-child "^3.1.0" - jackspeak "^2.3.5" + jackspeak "^2.3.6" minimatch "^9.0.1" - minipass "^5.0.0 || ^6.0.2 || ^7.0.0" - path-scurry "^1.10.1" + minipass "^7.0.4" + path-scurry "^1.10.2" glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@^7.2.0: version "7.2.3" @@ -10881,12 +11071,12 @@ global-agent@^3.0.0: semver "^7.3.2" serialize-error "^7.0.1" -global-dirs@^2.0.1: - version "2.1.0" - resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-2.1.0.tgz#e9046a49c806ff04d6c1825e196c8f0091e8df4d" - integrity sha512-MG6kdOUh/xBnyo9cJFeIKkLEc1AyFq42QTU4XiX51i2NEdxLxLWXIjEjmqKeSuKR7pAZjTqUVoT2b2huxVLgYQ== +global-dirs@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-3.0.1.tgz#0c488971f066baceda21447aecb1a8b911d22485" + integrity sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA== dependencies: - ini "1.3.7" + ini "2.0.0" global-modules@^1.0.0: version "1.0.0" @@ -11167,7 +11357,7 @@ has-flag@^4.0.0: resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== -has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.1, has-property-descriptors@^1.0.2: +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== @@ -11196,7 +11386,7 @@ has-to-string-tag-x@^1.2.0: dependencies: has-symbol-support-x "^1.4.1" -has-tostringtag@^1.0.0, has-tostringtag@^1.0.1, has-tostringtag@^1.0.2: +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== @@ -11253,6 +11443,14 @@ hash-base@^3.0.0: readable-stream "^3.6.0" safe-buffer "^5.2.0" +hash-base@~3.0: + version "3.0.4" + resolved "https://registry.yarnpkg.com/hash-base/-/hash-base-3.0.4.tgz#5fc8686847ecd73499403319a6b0a3f3f6ae4918" + integrity sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow== + dependencies: + inherits "^2.0.1" + safe-buffer "^5.0.1" + hash.js@^1.0.0, hash.js@^1.0.3: version "1.1.7" resolved "https://registry.yarnpkg.com/hash.js/-/hash.js-1.1.7.tgz#0babca538e8d4ee4a0f8988d68866537a003cf42" @@ -11261,10 +11459,10 @@ hash.js@^1.0.0, hash.js@^1.0.3: inherits "^2.0.3" minimalistic-assert "^1.0.1" -hasown@^2.0.0, hasown@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.1.tgz#26f48f039de2c0f8d3356c223fb8d50253519faa" - integrity sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA== +hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" @@ -11832,6 +12030,13 @@ imurmurhash@^0.1.4: resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== +indent-string@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80" + integrity sha512-aqwDFWSgSgfRaEwao5lg5KEcVd/2a+D1rvoG7NdilmYz0NwRk6StWpWdz/Hpk34MKPpx7s8XxUqimfcQK6gGlg== + dependencies: + repeating "^2.0.0" + indent-string@^3.0.0: version "3.2.0" resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289" @@ -11870,10 +12075,10 @@ inherits@2.0.3: resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw== -ini@1.3.7: - version "1.3.7" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.7.tgz#a09363e1911972ea16d7a8851005d84cf09a9a84" - integrity sha512-iKpRpXP+CrP2jyrxvg1kMUpXDyRUFDWurxbnVT1vQPx+Wz9uCYsMIqYuSBLV+PAaZG/d7kRLKRFc9oDMsH+mFQ== +ini@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ini/-/ini-2.0.0.tgz#e5fd556ecdd5726be978fa1001862eacb0a94bc5" + integrity sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA== ini@^1.3.2, ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.8" @@ -11886,11 +12091,11 @@ inline-style-parser@0.2.3: integrity sha512-qlD8YNDqyTKTyuITrDOffsl6Tdhv+UC4hcdAVuQsK4IMQ99nSgd1MIA/Q+jQYoh9r3hVUXhYh7urSRmXPkW04g== interactjs@^1.10.17: - version "1.10.26" - resolved "https://registry.yarnpkg.com/interactjs/-/interactjs-1.10.26.tgz#ad009a46ee3610cb75de6aec22ea6cc0b0e277e2" - integrity sha512-5gNTNDTfEHp2EifqtWGi5VkD3CMZVJSTGmtK/IsVRd+rkOk3E63iVs5Z+IeD5K1Lr0qZpU2754VHAwf5i+Z9xg== + version "1.10.27" + resolved "https://registry.yarnpkg.com/interactjs/-/interactjs-1.10.27.tgz#16499aba4987a5ccfdaddca7d1ba7bb1118e14d0" + integrity sha512-y/8RcCftGAF24gSp76X2JS3XpHiUvDQyhF8i7ujemBz77hwiHDuJzftHx7thY8cxGogwGiPJ+o97kWB6eAXnsA== dependencies: - "@interactjs/types" "1.10.26" + "@interactjs/types" "1.10.27" internal-ip@^4.3.0: version "4.3.0" @@ -11900,7 +12105,7 @@ internal-ip@^4.3.0: default-gateway "^4.2.0" ipaddr.js "^1.9.0" -internal-slot@^1.0.4, internal-slot@^1.0.5, internal-slot@^1.0.7: +internal-slot@^1.0.4, internal-slot@^1.0.7: version "1.0.7" resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== @@ -12101,14 +12306,7 @@ is-ci@^1.1.0: dependencies: ci-info "^1.5.0" -is-ci@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-2.0.0.tgz#6bc6334181810e04b5c22b3d589fdca55026404c" - integrity sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w== - dependencies: - ci-info "^2.0.0" - -is-ci@^3.0.0: +is-ci@^3.0.0, is-ci@^3.0.1: version "3.0.1" resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.1.tgz#db6ecbed1bd659c43dac0f45661e7674103d1867" integrity sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ== @@ -12141,6 +12339,13 @@ is-data-descriptor@^1.0.1: dependencies: hasown "^2.0.0" +is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + is-date-object@^1.0.1, is-date-object@^1.0.5: version "1.0.5" resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" @@ -12213,12 +12418,10 @@ is-finalizationregistry@^1.0.2: dependencies: call-bind "^1.0.2" -is-fullwidth-code-point@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz#ef9e31386f031a7f0d643af82fde50c457ef00cb" - integrity sha512-1pqUqRjkhPJ9miNq9SwMfdvi6lBJcd6eFxvfaivQhaH3SgisfiuudvFntdKOmxuee/77l+FPjKrQjWvmPjWrRw== - dependencies: - number-is-nan "^1.0.0" +is-finite@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3" + integrity sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w== is-fullwidth-code-point@^2.0.0: version "2.0.0" @@ -12266,13 +12469,13 @@ is-hexadecimal@^2.0.0: resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027" integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg== -is-installed-globally@^0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.3.2.tgz#fd3efa79ee670d1187233182d5b0a1dd00313141" - integrity sha512-wZ8x1js7Ia0kecP/CHM/3ABkAmujX7WPvQk6uu3Fly/Mk44pySulQpnHG46OMjHGXApINnV4QhY3SWnECO2z5g== +is-installed-globally@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.4.0.tgz#9a0fd407949c30f86eb6959ef1b7994ed0b7b520" + integrity sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ== dependencies: - global-dirs "^2.0.1" - is-path-inside "^3.0.1" + global-dirs "^3.0.0" + is-path-inside "^3.0.2" is-interactive@^1.0.0: version "1.0.0" @@ -12291,10 +12494,10 @@ is-lambda@^1.0.1: resolved "https://registry.yarnpkg.com/is-lambda/-/is-lambda-1.0.1.tgz#3d9877899e6a53efc0160504cde15f82e6f061d5" integrity sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ== -is-map@^2.0.1, is-map@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" - integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== +is-map@^2.0.2, is-map@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.3.tgz#ede96b7fe1e270b3c4465e3a465658764926d62e" + integrity sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw== is-module@^1.0.0: version "1.0.0" @@ -12353,13 +12556,6 @@ is-object@^1.0.1: resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf" integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== -is-observable@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e" - integrity sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA== - dependencies: - symbol-observable "^1.1.0" - is-path-cwd@^2.0.0, is-path-cwd@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/is-path-cwd/-/is-path-cwd-2.2.0.tgz#67d43b82664a7b5191fd9119127eb300048a9fdb" @@ -12379,7 +12575,7 @@ is-path-inside@^2.1.0: dependencies: path-is-inside "^1.0.2" -is-path-inside@^3.0.1, is-path-inside@^3.0.2, is-path-inside@^3.0.3: +is-path-inside@^3.0.2, is-path-inside@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== @@ -12416,11 +12612,6 @@ is-potential-custom-element-name@^1.0.1: resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== -is-promise@^2.1.0: - version "2.2.2" - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" - integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== - is-reference@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" @@ -12461,10 +12652,10 @@ is-retry-allowed@^1.1.0: resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4" integrity sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg== -is-set@^2.0.1, is-set@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" - integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== +is-set@^2.0.2, is-set@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.3.tgz#8ab209ea424608141372ded6e0cb200ef1d9d01d" + integrity sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg== is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: version "1.0.3" @@ -12531,10 +12722,15 @@ is-url@^1.2.4: resolved "https://registry.yarnpkg.com/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52" integrity sha512-ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww== -is-weakmap@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" - integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== +is-utf8@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" + integrity sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q== + +is-weakmap@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.2.tgz#bf72615d649dfe5f699079c54b83e47d1ae19cfd" + integrity sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w== is-weakref@^1.0.2: version "1.0.2" @@ -12543,13 +12739,13 @@ is-weakref@^1.0.2: dependencies: call-bind "^1.0.2" -is-weakset@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" - integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== +is-weakset@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.3.tgz#e801519df8c0c43e12ff2834eead84ec9e624007" + integrity sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ== dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" + call-bind "^1.0.7" + get-intrinsic "^1.2.4" is-whitespace-character@^1.0.0: version "1.0.4" @@ -12694,7 +12890,7 @@ iterator.prototype@^1.1.2: reflect.getprototypeof "^1.0.4" set-function-name "^2.0.1" -jackspeak@^2.3.5: +jackspeak@^2.3.6: version "2.3.6" resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== @@ -12781,6 +12977,11 @@ jmespath@0.16.0: resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.16.0.tgz#b15b0a85dfd4d930d43e69ed605943c802785076" integrity sha512-9FzQjJ7MATs1tSpnco1K6ayiYE3figslrXA72G2HQ/n76RzvYlofyi5QM+iX4YRs/pu3yzxlVQSST23+dMDknw== +jotai@2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/jotai/-/jotai-2.8.0.tgz#5a6585cd5576c400c2c5f8e157b83ad2ba70b2ab" + integrity sha512-yZNMC36FdLOksOr8qga0yLf14miCJlEThlp5DeFJNnqzm2+ZG7wLcJzoOyij5K6U6Xlc5ljQqPDlJRgqW0Y18g== + js-sdsl@4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" @@ -12952,7 +13153,7 @@ json5@^2.1.2, json5@^2.2.0, json5@^2.2.3: resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== -jsonc-parser@^3.0.0, jsonc-parser@^3.2.0: +jsonc-parser@^3.0.0: version "3.2.1" resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a" integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA== @@ -13155,49 +13356,30 @@ lines-and-columns@^1.1.6: resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== -listr-silent-renderer@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz#924b5a3757153770bf1a8e3fbf74b8bbf3f9242e" - integrity sha512-L26cIFm7/oZeSNVhWB6faeorXhMg4HNlb/dS/7jHhr708jxlXrtrBWo4YUxZQkc6dGoxEAe6J/D3juTRBUzjtA== - -listr-update-renderer@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz#4ea8368548a7b8aecb7e06d8c95cb45ae2ede6a2" - integrity sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA== +listr2@^3.8.3: + version "3.14.0" + resolved "https://registry.yarnpkg.com/listr2/-/listr2-3.14.0.tgz#23101cc62e1375fd5836b248276d1d2b51fdbe9e" + integrity sha512-TyWI8G99GX9GjE54cJ+RrNMcIFBfwMPxc3XTFiAYGN4s10hWROGtOg7+O6u6LE3mNkyld7RSLE6nrKBvTfcs3g== dependencies: - chalk "^1.1.3" - cli-truncate "^0.2.1" - elegant-spinner "^1.0.1" - figures "^1.7.0" - indent-string "^3.0.0" - log-symbols "^1.0.2" - log-update "^2.3.0" - strip-ansi "^3.0.1" + cli-truncate "^2.1.0" + colorette "^2.0.16" + log-update "^4.0.0" + p-map "^4.0.0" + rfdc "^1.3.0" + rxjs "^7.5.1" + through "^2.3.8" + wrap-ansi "^7.0.0" -listr-verbose-renderer@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz#f1132167535ea4c1261102b9f28dac7cba1e03db" - integrity sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw== +load-json-file@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0" + integrity sha512-cy7ZdNRXdablkXYNI049pthVeXFurRyb9+hA/dZzerZ0pGTx42z+y+ssxBaVV2l70t1muq5IdKhn4UtcoGUY9A== dependencies: - chalk "^2.4.1" - cli-cursor "^2.1.0" - date-fns "^1.27.2" - figures "^2.0.0" - -listr@^0.14.3: - version "0.14.3" - resolved "https://registry.yarnpkg.com/listr/-/listr-0.14.3.tgz#2fea909604e434be464c50bddba0d496928fa586" - integrity sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA== - dependencies: - "@samverschueren/stream-to-observable" "^0.3.0" - is-observable "^1.1.0" - is-promise "^2.1.0" - is-stream "^1.1.0" - listr-silent-renderer "^1.1.1" - listr-update-renderer "^0.5.0" - listr-verbose-renderer "^0.5.0" - p-map "^2.0.0" - rxjs "^6.3.3" + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + pinkie-promise "^2.0.0" + strip-bom "^2.0.0" load-json-file@^4.0.0: version "4.0.0" @@ -13335,18 +13517,11 @@ lodash.uniq@^4.5.0: resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== -lodash@4.17.21, lodash@^4.0.1, lodash@^4.13.1, lodash@^4.15.0, lodash@^4.17, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.17.5, lodash@^4.7.0: +lodash@4.17.21, lodash@>=4.17.12, lodash@^4.0.1, lodash@^4.13.1, lodash@^4.15.0, lodash@^4.17, lodash@^4.17.11, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.3, lodash@^4.17.5, lodash@^4.7.0: version "4.17.21" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== -log-symbols@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18" - integrity sha512-mmPrW0Fh2fxOzdBbFv4g1m6pR72haFLPJ2G5SJEELf1y+iaQrDG6cWCPjy54RHYbZAt7X+ls690Kw62AdWXBzQ== - dependencies: - chalk "^1.0.0" - log-symbols@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" @@ -13369,14 +13544,15 @@ log-symbols@^4.0.0, log-symbols@^4.1.0: chalk "^4.1.0" is-unicode-supported "^0.1.0" -log-update@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" - integrity sha512-vlP11XfFGyeNQlmEn9tJ66rEW1coA/79m5z6BCkudjbAGE83uhAcGYrBFwfs3AdLiLzGRusRPAbSPK9xZteCmg== +log-update@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-update/-/log-update-4.0.0.tgz#589ecd352471f2a1c0c570287543a64dfd20e0a1" + integrity sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg== dependencies: - ansi-escapes "^3.0.0" - cli-cursor "^2.0.0" - wrap-ansi "^3.0.1" + ansi-escapes "^4.3.0" + cli-cursor "^3.1.0" + slice-ansi "^4.0.0" + wrap-ansi "^6.2.0" logform@^1.9.1: version "1.10.0" @@ -13471,6 +13647,11 @@ lowercase-keys@^2.0.0: resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz#2603e78b7b4b0006cbca2fbcc8a3202558ac9479" integrity sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA== +lru-cache@^10.2.0: + version "10.2.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" + integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== + lru-cache@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" @@ -13490,11 +13671,6 @@ lru-cache@^7.7.1: resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-7.18.3.tgz#f793896e0fd0e954a59dfdd82f0773808df6aa89" integrity sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA== -"lru-cache@^9.1.1 || ^10.0.0": - version "10.2.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" - integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== - lz-string@^1.5.0: version "1.5.0" resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941" @@ -13552,20 +13728,20 @@ magic-string@^0.27.0: "@jridgewell/sourcemap-codec" "^1.4.13" magic-string@^0.30.0, magic-string@^0.30.5: - version "0.30.8" - resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.8.tgz#14e8624246d2bedba70d5462aa99ac9681844613" - integrity sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ== + version "0.30.10" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.10.tgz#123d9c41a0cb5640c892b041d4cfb3bd0aa4b39e" + integrity sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ== dependencies: "@jridgewell/sourcemap-codec" "^1.4.15" magicast@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.3.tgz#a15760f982deec9dabc5f314e318d7c6bddcb27b" - integrity sha512-ZbrP1Qxnpoes8sz47AM0z08U+jW6TyRgZzcWy3Ma3vDhJttwMwAFDMMQFobwdBxByBD46JYmxRzeF7w2+wJEuw== + version "0.3.4" + resolved "https://registry.yarnpkg.com/magicast/-/magicast-0.3.4.tgz#bbda1791d03190a24b00ff3dd18151e7fd381d19" + integrity sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q== dependencies: - "@babel/parser" "^7.23.6" - "@babel/types" "^7.23.6" - source-map-js "^1.0.2" + "@babel/parser" "^7.24.4" + "@babel/types" "^7.24.0" + source-map-js "^1.2.0" make-dir@^1.0.0: version "1.3.0" @@ -13630,7 +13806,7 @@ map-cache@^0.2.2: resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg== -map-obj@^1.0.0: +map-obj@^1.0.0, map-obj@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d" integrity sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg== @@ -13668,9 +13844,9 @@ markdown-table@^1.1.0: integrity sha512-1RUZVgQlpJSPWYbFSpmudq5nHY1doEIv89gBtF0s4gW1GF2XorxcA/70M5vq7rLv0a6mhOUccRsqkwhwLCIQ2Q== markdown-to-jsx@^7.1.8: - version "7.4.1" - resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.4.1.tgz#1ed6a60f8f9cd944bec39d9923fbbc8d3d60dcb9" - integrity sha512-GbrbkTnHp9u6+HqbPRFJbObi369AgJNXi/sGqq5HRsoZW063xR1XDCaConqq+whfEIAlzB1YPnOgsPc7B7bc/A== + version "7.4.7" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.4.7.tgz#740ee7ec933865ef5cc683a0992797685a75e2ee" + integrity sha512-0+ls1IQZdU6cwM1yu0ZjjiVWYtkbExSyUIFU2ZeDIFuZM1W42Mh4OlJ4nb4apX4H8smxDHRdFaoIVJGwfv5hkg== match-sorter@^6.0.2: version "6.3.4" @@ -13887,6 +14063,22 @@ memory-fs@^0.5.0: errno "^0.1.3" readable-stream "^2.0.1" +meow@3.7.0: + version "3.7.0" + resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb" + integrity sha512-TNdwZs0skRlpPpCUK25StC4VH+tP5GgeY1HQOOGP+lQ2xtdkN2VtT/5tiX9k3IWpkBPV9b3LsAWXn4GGi/PrSA== + dependencies: + camelcase-keys "^2.0.0" + decamelize "^1.1.2" + loud-rejection "^1.0.0" + map-obj "^1.0.1" + minimist "^1.1.3" + normalize-package-data "^2.3.4" + object-assign "^4.0.1" + read-pkg-up "^1.0.1" + redent "^1.0.0" + trim-newlines "^1.0.0" + meow@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/meow/-/meow-5.0.0.tgz#dfc73d63a9afc714a5e371760eb5c88b91078aa4" @@ -14207,11 +14399,6 @@ mime@^2.0.3, mime@^2.3.1, mime@^2.4.4, mime@^2.5.2: resolved "https://registry.yarnpkg.com/mime/-/mime-2.6.0.tgz#a2a682a95cd4d0cb1d6257e28f83da7e35800367" integrity sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg== -mimic-fn@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== - mimic-fn@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" @@ -14269,7 +14456,7 @@ minimalistic-crypto-utils@^1.0.1: resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== -minimatch@9.0.3, minimatch@^9.0, minimatch@^9.0.1: +minimatch@9.0.3: version "9.0.3" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== @@ -14290,6 +14477,13 @@ minimatch@^5.0.1, minimatch@^5.1.1: dependencies: brace-expansion "^2.0.1" +minimatch@^9.0, minimatch@^9.0.1: + version "9.0.4" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51" + integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== + dependencies: + brace-expansion "^2.0.1" + minimist-options@4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-4.1.0.tgz#c0655713c53a8a2ebd77ffa247d342c40f010619" @@ -14312,7 +14506,7 @@ minimist@0.0.8: resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" integrity sha512-miQKw5Hv4NS1Psg2517mV4e4dYNaO3++hjAvLOAzKqZ61rH8NS1SK+vbfBWZ5PY/Me/bEWhUwqMghEW5Fb9T7Q== -minimist@^1.1.0, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6: +minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5, minimist@^1.2.6, minimist@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== @@ -14368,7 +14562,7 @@ minipass@^5.0.0: resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== -"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4: version "7.0.4" resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== @@ -14439,7 +14633,7 @@ mkdirp@^1.0.3, mkdirp@^1.0.4: resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mlly@^1.2.0, mlly@^1.4.2: +mlly@^1.4.2, mlly@^1.6.1: version "1.6.1" resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.6.1.tgz#0983067dc3366d6314fc5e12712884e6978d028f" integrity sha512-vLgaHvaeunuOXHSmEbZ9izxPx3USsk8KCQ8iC+aTlp5sKRSoZvwhHh5L9VbKSaVC6sJDqbyohIS76E2VmHIPAA== @@ -14479,11 +14673,6 @@ module-lookup-amd@^6.1.0: requirejs "^2.3.5" requirejs-config-file "^3.1.1" -moment@^2.29.1: - version "2.30.1" - resolved "https://registry.yarnpkg.com/moment/-/moment-2.30.1.tgz#f8c91c07b7a786e30c59926df530b4eac96974ae" - integrity sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how== - move-concurrently@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/move-concurrently/-/move-concurrently-1.0.1.tgz#be2c005fda32e0b29af1f05d7c4b33214c701f92" @@ -14578,9 +14767,9 @@ mutexify@^1.1.0: queue-tick "^1.0.0" nan@^2.12.1: - version "2.18.0" - resolved "https://registry.yarnpkg.com/nan/-/nan-2.18.0.tgz#26a6faae7ffbeb293a39660e88a76b82e30b7554" - integrity sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w== + version "2.19.0" + resolved "https://registry.yarnpkg.com/nan/-/nan-2.19.0.tgz#bb58122ad55a6c5bc973303908d5b16cfdd5a8c0" + integrity sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw== nano-time@1.0.0: version "1.0.0" @@ -14659,9 +14848,9 @@ no-case@^2.2.0: lower-case "^1.1.1" node-abi@^3.0.0, node-abi@^3.45.0: - version "3.56.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.56.0.tgz#ca807d5ff735ac6bbbd684ae3ff2debc1c2a40a7" - integrity sha512-fZjdhDOeRcaS+rcpve7XuwHBmktS1nS1gzgghwKUQQ8nTy2FdSDr6ZT8k6YhvlJeHmmQMYiT/IH9hfco5zeW2Q== + version "3.60.0" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.60.0.tgz#a325b13b3c401c2230202897559fbf0b5f9a90ac" + integrity sha512-zcGgwoXbzw9NczqbGzAWL/ToDYAxv1V8gL1D67ClbdkIfeeDBbY0GelZtC25ayLvVjr2q2cloHeQV1R0QAWqRQ== dependencies: semver "^7.3.5" @@ -14706,10 +14895,10 @@ node-dir@^0.1.17: dependencies: minimatch "^3.0.2" -node-fetch-native@^1.6.1: - version "1.6.2" - resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.2.tgz#f439000d972eb0c8a741b65dcda412322955e1c6" - integrity sha512-69mtXOFZ6hSkYiXAVB5SqaRvrbITC/NPyqv7yuu/qw0nmgPyYbIMYYNIDhNtwPrzk0ptrimrLz/hhjvm4w5Z+w== +node-fetch-native@^1.6.3: + version "1.6.4" + resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.6.4.tgz#679fc8fd8111266d47d7e72c379f1bed9acff06e" + integrity sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ== node-fetch@2.6.7: version "2.6.7" @@ -14952,17 +15141,12 @@ number-allocator@^1.0.9: debug "^4.3.1" js-sdsl "4.3.0" -number-is-nan@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" - integrity sha512-4jbtZXNAsfZbAHiiqjLPBiCl16dES1zI4Hpzzxw61Tk+loF+sBDBKx1ICKKKwIqQ7M0mFn1TmkN7euSncWgHiQ== - nwsapi@^2.2.0: - version "2.2.7" - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.7.tgz#738e0707d3128cb750dddcfe90e4610482df0f30" - integrity sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ== + version "2.2.9" + resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.9.tgz#7f3303218372db2e9f27c27766bcfc59ae7e61c6" + integrity sha512-2f3F0SEEer8bBu0dsNCFF50N0cTThV1nWFYcEYFZttdW0lDAoybv9cQoK7X7/68Z89S7FoRrVjP1LPX4XRf9vg== -nypm@^0.3.3: +nypm@^0.3.8: version "0.3.8" resolved "https://registry.yarnpkg.com/nypm/-/nypm-0.3.8.tgz#a16b078b161be5885351e72cf0b97326973722bf" integrity sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og== @@ -15028,52 +15212,54 @@ object.assign@^4.1.4, object.assign@^4.1.5: object-keys "^1.1.1" object.entries@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.7.tgz#2b47760e2a2e3a752f39dd874655c61a7f03c131" - integrity sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA== + version "1.1.8" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.8.tgz#bffe6f282e01f4d17807204a24f8edd823599c41" + integrity sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" object.fromentries@^2.0.7: - version "2.0.7" - resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.7.tgz#71e95f441e9a0ea6baf682ecaaf37fa2a8d7e616" - integrity sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA== + version "2.0.8" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" + integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: - version "2.1.7" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz#7a466a356cd7da4ba8b9e94ff6d35c3eeab5d56a" - integrity sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g== + version "2.1.8" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.8.tgz#2f1fe0606ec1a7658154ccd4f728504f69667923" + integrity sha512-qkHIGe4q0lSYMv0XI4SsBTJz3WaURhLvd0lKSgtVuOsJ2krg4SgMw3PIRQFMp07yi++UR3se2mkcLqsBNpBb/A== dependencies: array.prototype.reduce "^1.0.6" - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - safe-array-concat "^1.0.0" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + gopd "^1.0.1" + safe-array-concat "^1.1.2" object.groupby@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.2.tgz#494800ff5bab78fd0eff2835ec859066e00192ec" - integrity sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw== + version "1.0.3" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" + integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== dependencies: - array.prototype.filter "^1.0.3" - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.0.0" + es-abstract "^1.23.2" object.hasown@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.3.tgz#6a5f2897bb4d3668b8e79364f98ccf971bda55ae" - integrity sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA== + version "1.1.4" + resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.4.tgz#e270ae377e4c120cdcb7656ce66884a6218283dc" + integrity sha512-FZ9LZt9/RHzGySlBARE3VF+gE26TxR38SdmqOqliuTnl9wrKulaQs+4dee1V+Io8VfxqzAfHu6YuRgUy8OHoTg== dependencies: - define-properties "^1.2.0" - es-abstract "^1.22.1" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" object.pick@^1.3.0: version "1.3.0" @@ -15083,13 +15269,13 @@ object.pick@^1.3.0: isobject "^3.0.1" object.values@^1.1.0, object.values@^1.1.6, object.values@^1.1.7: - version "1.1.7" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.7.tgz#617ed13272e7e1071b43973aa1655d9291b8442a" - integrity sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng== + version "1.2.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" + integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" objectorarray@^1.0.5: version "1.0.5" @@ -15142,18 +15328,6 @@ one-time@0.0.4: resolved "https://registry.yarnpkg.com/one-time/-/one-time-0.0.4.tgz#f8cdf77884826fe4dff93e3a9cc37b1e4480742e" integrity sha512-qAMrwuk2xLEutlASoiPiAMW3EN3K96Ka/ilSXYr6qR1zSVXw2j7+yDSqGTC4T9apfLYxM3tLLjKvgPdAUK7kYQ== -onetime@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789" - integrity sha512-GZ+g4jayMqzCRMgB2sol7GiCLjKfS1PINkjmx8spcKce1LiVqcbQreXwqs2YAFXC6R03VIG28ZS31t8M866v6A== - -onetime@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" - integrity sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ== - dependencies: - mimic-fn "^1.0.0" - onetime@^5.1.0, onetime@^5.1.2: version "5.1.2" resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" @@ -15393,16 +15567,17 @@ parent-module@^1.0.0: dependencies: callsites "^3.0.0" -parse-asn1@^5.0.0, parse-asn1@^5.1.6: - version "5.1.6" - resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.6.tgz#385080a3ec13cb62a62d39409cb3e88844cdaed4" - integrity sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw== +parse-asn1@^5.0.0, parse-asn1@^5.1.7: + version "5.1.7" + resolved "https://registry.yarnpkg.com/parse-asn1/-/parse-asn1-5.1.7.tgz#73cdaaa822125f9647165625eb45f8a051d2df06" + integrity sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg== dependencies: - asn1.js "^5.2.0" - browserify-aes "^1.0.0" - evp_bytestokey "^1.0.0" - pbkdf2 "^3.0.3" - safe-buffer "^5.1.1" + asn1.js "^4.10.1" + browserify-aes "^1.2.0" + evp_bytestokey "^1.0.3" + hash-base "~3.0" + pbkdf2 "^3.1.2" + safe-buffer "^5.2.1" parse-entities@^1.0.2, parse-entities@^1.1.0: version "1.2.2" @@ -15430,6 +15605,13 @@ parse-entities@^4.0.0: is-decimal "^2.0.0" is-hexadecimal "^2.0.0" +parse-json@^2.2.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" + integrity sha512-QR/GGaKCkhwk1ePQNYDRKYZ3mwU9ypsKhB0XyFnLQdomyEqk3e8wpW3V5Jp88zbxK4n5ST1nqo+g9juTpownhQ== + dependencies: + error-ex "^1.2.0" + parse-json@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0" @@ -15495,6 +15677,13 @@ path-dirname@^1.0.0: resolved "https://registry.yarnpkg.com/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0" integrity sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q== +path-exists@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b" + integrity sha512-yTltuKuhtNeFJKa1PiRzfLAU5182q1y4Eb4XCJ3PBqyzEDkAZRzBrKKBct682ls9reBVHf9udYLN5Nd+K1B9BQ== + dependencies: + pinkie-promise "^2.0.0" + path-exists@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" @@ -15535,12 +15724,12 @@ path-parse@^1.0.7: resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== -path-scurry@^1.10.1: - version "1.10.1" - resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" - integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== +path-scurry@^1.10.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.2.tgz#8f6357eb1239d5fa1da8b9f70e9c080675458ba7" + integrity sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA== dependencies: - lru-cache "^9.1.1 || ^10.0.0" + lru-cache "^10.2.0" minipass "^5.0.0 || ^6.0.2 || ^7.0.0" path-to-regexp@0.1.7: @@ -15560,6 +15749,15 @@ path-to-regexp@^1.7.0: dependencies: isarray "0.0.1" +path-type@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" + integrity sha512-S4eENJz1pkiQn9Znv33Q+deTOKmbl+jj1Fl+qiP/vYezj+S8x+J3Uo0ISrx/QoEvIlOaDWJhPaRd1flJ9HXZqg== + dependencies: + graceful-fs "^4.1.2" + pify "^2.0.0" + pinkie-promise "^2.0.0" + path-type@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" @@ -15572,7 +15770,7 @@ path-type@^4.0.0: resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== -pathe@^1.1.0, pathe@^1.1.1, pathe@^1.1.2: +pathe@^1.1.1, pathe@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.2.tgz#6c4cb47a945692e48a1ddd6e4094d170516437ec" integrity sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ== @@ -15582,7 +15780,7 @@ pathval@^1.1.1: resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.1.tgz#8534e77a77ce7ac5a2512ea21e0fdb8fcf6c3d8d" integrity sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ== -pbkdf2@^3.0.3: +pbkdf2@^3.0.3, pbkdf2@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== @@ -15681,13 +15879,13 @@ pkg-dir@^5.0.0: find-up "^5.0.0" pkg-types@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" - integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== + version "1.1.0" + resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.1.0.tgz#3ec1bf33379030fd0a34c227b6c650e8ea7ca271" + integrity sha512-/RpmvKdxKf8uILTtoOhAgf30wYbP2Qw+L9p3Rvshx1JZVX+XQNZQFjlbmGHEGIm4CkVPlSn+NXmIM8+9oWQaSA== dependencies: - jsonc-parser "^3.2.0" - mlly "^1.2.0" - pathe "^1.1.0" + confbox "^0.1.7" + mlly "^1.6.1" + pathe "^1.1.2" pkg-up@^3.0.1: version "3.1.0" @@ -15773,14 +15971,14 @@ postcss-clamp@^4.1.0: postcss-value-parser "^4.2.0" postcss-color-functional-notation@^6.0.2: - version "6.0.5" - resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.5.tgz#eca158e833b5655c5715c998e92aab9481124c18" - integrity sha512-aTFsIy89ftjyclwUHRwvz1IxucLzVrzmmcXmtbPWT9GdyYeaJEKeAwbaZzOZn7AQlXg4xfwgkYhKsofC4aLIwg== - dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + version "6.0.9" + resolved "https://registry.yarnpkg.com/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.9.tgz#30b7a2f4f4fc0f7ccdcb720ea8d311eebb4a260b" + integrity sha512-8i/ofOArZ4fljp+3g+HI6Pok01Kb8YaSqInrJt2vMimEKrI0ZDNRLpH+wLhXBNu/Bi8zeWDvxhvCqsGSpu8E6Q== + dependencies: + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" postcss-color-hex-alpha@^9.0.2: @@ -15828,34 +16026,34 @@ postcss-convert-values@^4.0.1: postcss-value-parser "^3.0.0" postcss-custom-media@^10.0, postcss-custom-media@^10.0.2: - version "10.0.3" - resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-10.0.3.tgz#7131ee7f6e55cbb0423dcfca37c8946539f1b214" - integrity sha512-wfJ9nKpLn/Qy7LASKu0Rj9Iq2uMzlRt27P4FAE1889IKRMdYUgy8SqvdXfAOs7LJLQX9Fjm0mZ+TSFphD/mKwA== + version "10.0.4" + resolved "https://registry.yarnpkg.com/postcss-custom-media/-/postcss-custom-media-10.0.4.tgz#f40fcf05f3ee95e7a34bbdcb4dff99da41f0238f" + integrity sha512-Ubs7O3wj2prghaKRa68VHBvuy3KnTQ0zbGwqDYY1mntxJD0QL2AeiAy+AMfl3HBedTCVr2IcFNktwty9YpSskA== dependencies: - "@csstools/cascade-layer-name-parser" "^1.0.8" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/media-query-list-parser" "^2.1.8" + "@csstools/cascade-layer-name-parser" "^1.0.9" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/media-query-list-parser" "^2.1.9" postcss-custom-properties@^13.3.2: - version "13.3.5" - resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.3.5.tgz#0083841407dbf93c833457ecffdf1a3d74a76d10" - integrity sha512-xHg8DTCMfN2nrqs2CQTF+0m5jgnzKL5zrW5Y05KF6xBRO0uDPxiplBm/xcr1o49SLbyJXkMuaRJKhRzkrquKnQ== + version "13.3.8" + resolved "https://registry.yarnpkg.com/postcss-custom-properties/-/postcss-custom-properties-13.3.8.tgz#2a75e867fb7a6037e10282e313f9e87ae8881a10" + integrity sha512-OP9yj4yXxYOiW2n2TRpnE7C0yePvBiZb72S22mZVNzZEObdTYFjNaX6oZO4R4E8Ie9RmC/Jxw8EKYSbLrC1EFA== dependencies: - "@csstools/cascade-layer-name-parser" "^1.0.8" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" + "@csstools/cascade-layer-name-parser" "^1.0.9" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" "@csstools/utilities" "^1.0.0" postcss-value-parser "^4.2.0" postcss-custom-selectors@^7.1.6: - version "7.1.7" - resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.7.tgz#66b7adb9a3470ba11860ad7847947c7fd29e985d" - integrity sha512-N19MpExaR+hYTXU59VO02xE42zLoAUYSVcupwkKlWWLteOb+sWCWHw5FhV7u7gVLTzaGULy7nZP3DNTHgOZAPA== + version "7.1.8" + resolved "https://registry.yarnpkg.com/postcss-custom-selectors/-/postcss-custom-selectors-7.1.8.tgz#600ce32a487737038831bb679e9a8011ffc62ee5" + integrity sha512-fqDkGSEsO7+oQaqdRdR8nwwqH+N2uk6LE/2g4myVJJYz/Ly418lHKEleKTdV/GzjBjFcG4n0dbfuH/Pd2BE8YA== dependencies: - "@csstools/cascade-layer-name-parser" "^1.0.8" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" + "@csstools/cascade-layer-name-parser" "^1.0.9" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" postcss-selector-parser "^6.0.13" postcss-dir-pseudo-class@^8.0.0: @@ -15894,11 +16092,11 @@ postcss-discard-overridden@^4.0.1: postcss "^7.0.0" postcss-double-position-gradients@^5.0.2: - version "5.0.4" - resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.4.tgz#294787043e5e6187b5489ee52950ecfb303f9ea9" - integrity sha512-xOH2QhazCPeYR+ziYaDcGlpo7Bpw8PVoggOFfU/xPkmBRUQH8MR2eWoPY1CZM93CB0WKs2mxq3ORo83QGIooLw== + version "5.0.6" + resolved "https://registry.yarnpkg.com/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.6.tgz#fec69371a131b67ec92740bcf8c9ad6ce7f168d3" + integrity sha512-QJ+089FKMaqDxOhhIHsJrh4IP7h4PIHNC5jZP5PMmnfUScNu8Hji2lskqpFWCvu+5sj+2EJFyzKd13sLEWOZmQ== dependencies: - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" postcss-value-parser "^4.2.0" @@ -15967,14 +16165,14 @@ postcss-jsx@^0.36.3: "@babel/core" ">=7.2.2" postcss-lab-function@^6.0.7: - version "6.0.10" - resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-6.0.10.tgz#efe1bbf9fa1f1034890a0ad078286bfbace11106" - integrity sha512-Csvw/CwwuwTojK2O3Ad0SvYKrfnAKy+uvT+1Fjk6igR+n8gHuJHIwdj1A2s46EZZojg3RkibdMBuv1vMvR6Sng== - dependencies: - "@csstools/css-color-parser" "^1.5.2" - "@csstools/css-parser-algorithms" "^2.6.0" - "@csstools/css-tokenizer" "^2.2.3" - "@csstools/postcss-progressive-custom-properties" "^3.1.0" + version "6.0.14" + resolved "https://registry.yarnpkg.com/postcss-lab-function/-/postcss-lab-function-6.0.14.tgz#ccc4dec33e01cae3a435b45de2f29b455286ea10" + integrity sha512-ddQS9FRWT8sfl4wfW0ae8fpP2JdLIuhC9pYpHq1077avjrLzg73T9IEVu5QmFa72nJhYFlO9CbqjcoSdEzfY9A== + dependencies: + "@csstools/css-color-parser" "^2.0.0" + "@csstools/css-parser-algorithms" "^2.6.1" + "@csstools/css-tokenizer" "^2.2.4" + "@csstools/postcss-progressive-custom-properties" "^3.2.0" "@csstools/utilities" "^1.0.0" postcss-less@^3.1.4: @@ -16111,11 +16309,12 @@ postcss-modules-values@^3.0.0: postcss "^7.0.6" postcss-nesting@^12.0, postcss-nesting@^12.0.1: - version "12.0.4" - resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.0.4.tgz#593d577fd1fbbfbe0997a6c81dbff074b26c83a2" - integrity sha512-WuCe0KnP4vKjLZK8VNoUWKL8ZLOv/5jiM94mHcI3VszLropHwmjotdUyP/ObzqZpXuQKP2Jf9R12vIHKFSStKw== + version "12.1.2" + resolved "https://registry.yarnpkg.com/postcss-nesting/-/postcss-nesting-12.1.2.tgz#e7aba3f73b86a0e944e84798d481b54dcfce802e" + integrity sha512-FUmTHGDNundodutB4PUBxt/EPuhgtpk8FJGRsBhOuy+6FnkR2A8RZWIsyyy6XmhvX2DZQQWIkvu+HB4IbJm+Ew== dependencies: - "@csstools/selector-specificity" "^3.0.2" + "@csstools/selector-resolve-nested" "^1.1.0" + "@csstools/selector-specificity" "^3.0.3" postcss-selector-parser "^6.0.13" postcss-normalize-charset@^4.0.1: @@ -16299,9 +16498,9 @@ postcss-preset-env@9.3.0: postcss-value-parser "^4.2.0" postcss-pseudo-class-any-link@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.1.tgz#71c24a886765763d4e37e21a27ecc6f1c1a5d698" - integrity sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q== + version "9.0.2" + resolved "https://registry.yarnpkg.com/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.2.tgz#e436a7db1421f8a347fff3f19951a27d4e791987" + integrity sha512-HFSsxIqQ9nA27ahyfH37cRWGk3SYyQLpk0LiWw/UGMV4VKT5YG2ONee4Pz/oFesnK0dn2AjcyequDbIjKJgB0g== dependencies: postcss-selector-parser "^6.0.13" @@ -16384,9 +16583,9 @@ postcss-selector-parser@^3.0.0, postcss-selector-parser@^3.1.0: uniq "^1.0.1" postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.13, postcss-selector-parser@^6.0.2: - version "6.0.15" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.15.tgz#11cc2b21eebc0b99ea374ffb9887174855a01535" - integrity sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw== + version "6.0.16" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04" + integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -16459,14 +16658,14 @@ postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.2, postcss@^7.0.21 picocolors "^0.2.1" source-map "^0.6.1" -postcss@^8.1.7, postcss@^8.4, postcss@^8.4.32, postcss@^8.4.35: - version "8.4.35" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.35.tgz#60997775689ce09011edf083a549cea44aabe2f7" - integrity sha512-u5U8qYpBCpN13BsiEB0CbR1Hhh4Gc0zLFuedrHJKMctHCHAGrMdG0PRM/KErzAL3CU6/eckEtmHNB3x6e3c0vA== +postcss@^8.1.7, postcss@^8.4, postcss@^8.4.32, postcss@^8.4.38: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== dependencies: nanoid "^3.3.7" picocolors "^1.0.0" - source-map-js "^1.0.2" + source-map-js "^1.2.0" precinct@^6.3.1: version "6.3.1" @@ -16512,7 +16711,7 @@ prettier@^2.8.0: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== -pretty-bytes@^5.4.1: +pretty-bytes@^5.6.0: version "5.6.0" resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.6.0.tgz#356256f643804773c82f64723fe78c92c62beaeb" integrity sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg== @@ -16632,6 +16831,11 @@ proxy-addr@~2.0.4, proxy-addr@~2.0.7: forwarded "0.2.0" ipaddr.js "1.9.1" +proxy-from-env@1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.0.0.tgz#33c50398f70ea7eb96d21f7b817630a55791c7ee" + integrity sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A== + proxy-from-env@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" @@ -16746,6 +16950,13 @@ qap@^3.1.2: resolved "https://registry.yarnpkg.com/qap/-/qap-3.3.1.tgz#11f9e8fa8890fe7cb99210c0f44d0613b7372cac" integrity sha512-U0MV9LRz4u19xaK4gssnwyc7XWTnFdmDGrgG9hvV6nchKeu3XeITTclugWKT9rLiLK2GvN3utSkKY90+1tEHkw== +qs@6.10.4: + version "6.10.4" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.4.tgz#6a3003755add91c0ec9eacdc5f878b034e73f9e7" + integrity sha512-OQiU+C+Ds5qiH91qh/mg0w+8nwQuLjM4F4M/PbmhDOoYehPh+Fb0bDjtR1sOvy7YKxvj28Y/M0PhP5uVX0kB+g== + dependencies: + side-channel "^1.0.4" + qs@6.11.0: version "6.11.0" resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" @@ -16759,18 +16970,11 @@ qs@6.5.2: integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== qs@^6.10.0, qs@^6.11.2: - version "6.11.2" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.2.tgz#64bea51f12c1f5da1bc01496f48ffcff7c69d7d9" - integrity sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA== - dependencies: - side-channel "^1.0.4" - -qs@~6.10.3: - version "6.10.5" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.10.5.tgz#974715920a80ff6a262264acd2c7e6c2a53282b4" - integrity sha512-O5RlPh0VFtR78y79rgcgKK4wbAI0C5zGVLztOIdpWX6ep368q5Hv6XRxDvXuZ9q3C6v+e3n8UfZZJw7IIG27eQ== + version "6.12.1" + resolved "https://registry.yarnpkg.com/qs/-/qs-6.12.1.tgz#39422111ca7cbdb70425541cba20c7d7b216599a" + integrity sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ== dependencies: - side-channel "^1.0.4" + side-channel "^1.0.6" qs@~6.5.2: version "6.5.3" @@ -16847,11 +17051,6 @@ ramda@0.29.0: resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.29.0.tgz#fbbb67a740a754c8a4cbb41e2a6e0eb8507f55fb" integrity sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA== -ramda@~0.27.1: - version "0.27.2" - resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.27.2.tgz#84463226f7f36dc33592f6f4ed6374c48306c3f1" - integrity sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA== - randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5, randombytes@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" @@ -17099,9 +17298,9 @@ react-refresh@^0.14.0: integrity sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ== react-remove-scroll-bar@^2.1.0, react-remove-scroll-bar@^2.3.3: - version "2.3.5" - resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.5.tgz#cd2543b3ed7716c7c5b446342d21b0e0b303f47c" - integrity sha512-3cqjOqg6s0XbOjWvmasmqHch+RLxIEk2r/70rzGXuz3iIGQsQheEQyqYCBb5EECoD01Vo2SIbDqW4paLeLTASw== + version "2.3.6" + resolved "https://registry.yarnpkg.com/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz#3e585e9d163be84a010180b18721e851ac81a29c" + integrity sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g== dependencies: react-style-singleton "^2.2.1" tslib "^2.0.0" @@ -17170,9 +17369,9 @@ react-select@5.4.0: react-transition-group "^4.3.0" react-simple-keyboard@^3.7.0: - version "3.7.107" - resolved "https://registry.yarnpkg.com/react-simple-keyboard/-/react-simple-keyboard-3.7.107.tgz#6e71f48950a1923486f2ca8edc5194cdbae0f332" - integrity sha512-r2emrLGoD6A37fl+GCEODFLxtUET1uXZsmFokb7cB6/3OlE7EV08wSzB+yTju+qwIibsc6EXLC6KoRf0FsVC1A== + version "3.7.114" + resolved "https://registry.yarnpkg.com/react-simple-keyboard/-/react-simple-keyboard-3.7.114.tgz#7cd09474d90ed92d4ee05b462e160dd9cf16a13c" + integrity sha512-4CxIzJJx3sHqYqLZdjXmKR6LcGaYC4SEa/rWd2u5PxEJsG5adw4KWjhKSQvxUZDWMhL3Fe+WDMW02O9JcWawiA== react-snap@^1.23.0: version "1.23.0" @@ -17254,6 +17453,14 @@ read-config-file@6.3.2: json5 "^2.2.0" lazy-val "^1.0.4" +read-pkg-up@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" + integrity sha512-WD9MTlNtI55IwYUS27iHh9tK3YoIVhxis8yKhLpTqWtml739uXc9NWTpxoHkfZf3+DkCCsXox94/VWZniuZm6A== + dependencies: + find-up "^1.0.0" + read-pkg "^1.0.0" + read-pkg-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" @@ -17271,6 +17478,15 @@ read-pkg-up@^7.0.1: read-pkg "^5.2.0" type-fest "^0.8.1" +read-pkg@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28" + integrity sha512-7BGwRHqt4s/uVbuyoeejRn4YmFnYZiFl4AuaeXHlgZf3sONF0SOGlxs2Pw8g6hCKupo08RafIO5YXFNOKTfwsQ== + dependencies: + load-json-file "^1.0.0" + normalize-package-data "^2.3.2" + path-type "^1.0.0" + read-pkg@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" @@ -17290,7 +17506,7 @@ read-pkg@^5.2.0: parse-json "^5.0.0" type-fest "^0.6.0" -"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@~2.3.6: +"readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.3, readable-stream@^2.3.5, readable-stream@^2.3.6, readable-stream@^2.3.8, readable-stream@~2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.8.tgz#91125e8042bba1b9887f49345f6277027ce8be9b" integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA== @@ -17313,7 +17529,7 @@ readable-stream@1.1.x: isarray "0.0.1" string_decoder "~0.10.x" -readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0, readable-stream@^3.6.2: +readable-stream@3, readable-stream@^3.0.0, readable-stream@^3.0.2, readable-stream@^3.0.6, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: version "3.6.2" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== @@ -17339,9 +17555,9 @@ readdirp@~3.6.0: picomatch "^2.2.1" recast@^0.23.1, recast@^0.23.3: - version "0.23.5" - resolved "https://registry.yarnpkg.com/recast/-/recast-0.23.5.tgz#07f5594a0d36e7754356160b70e90393cca0406d" - integrity sha512-M67zIddJiwXdfPQRYKJ0qZO1SLdH1I0hYeb0wzxA+pNOvAZiQHulWzuk+fYsEWRQ8VfZrgjyucqsCOtCyM01/A== + version "0.23.6" + resolved "https://registry.yarnpkg.com/recast/-/recast-0.23.6.tgz#198fba74f66143a30acc81929302d214ce4e3bfa" + integrity sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ== dependencies: ast-types "^0.16.1" esprima "~4.0.0" @@ -17356,6 +17572,14 @@ rechoir@^0.6.2: dependencies: resolve "^1.1.6" +redent@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde" + integrity sha512-qtW5hKzGQZqKoh6JNSD+4lfitfPKGz42e6QwiRmPM5mmKtR0N41AbJRYu0xJi7nhOJ4WDgRkKvAk6tw4WIwR4g== + dependencies: + indent-string "^2.1.0" + strip-indent "^1.0.1" + redent@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa" @@ -17420,15 +17644,15 @@ redux@^4.0.0, redux@^4.0.5, redux@^4.2.0: "@babel/runtime" "^7.9.2" reflect.getprototypeof@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz#e0bd28b597518f16edaf9c0e292c631eb13e0674" - integrity sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ== + version "1.0.6" + resolved "https://registry.yarnpkg.com/reflect.getprototypeof/-/reflect.getprototypeof-1.0.6.tgz#3ab04c32a8390b770712b7a8633972702d278859" + integrity sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg== dependencies: - call-bind "^1.0.5" + call-bind "^1.0.7" define-properties "^1.2.1" - es-abstract "^1.22.3" - es-errors "^1.0.0" - get-intrinsic "^1.2.3" + es-abstract "^1.23.1" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" globalthis "^1.0.3" which-builtin-type "^1.1.3" @@ -17469,7 +17693,7 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexp.prototype.flags@^1.5.0, regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2: +regexp.prototype.flags@^1.5.1, regexp.prototype.flags@^1.5.2: version "1.5.2" resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== @@ -17665,6 +17889,13 @@ repeat-string@^1.5.4, repeat-string@^1.6.1: resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" integrity sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w== +repeating@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda" + integrity sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A== + dependencies: + is-finite "^1.0.0" + replace-ext@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" @@ -17850,22 +18081,6 @@ responselike@^2.0.0: dependencies: lowercase-keys "^2.0.0" -restore-cursor@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541" - integrity sha512-reSjH4HuiFlxlaBaFCiS6O76ZGG2ygKoSlCsipKdaZuKSPx/+bt9mULkn4l0asVzbEfQQmXRg6Wp6gv6m0wElw== - dependencies: - exit-hook "^1.0.0" - onetime "^1.0.0" - -restore-cursor@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" - integrity sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q== - dependencies: - onetime "^2.0.0" - signal-exit "^3.0.2" - restore-cursor@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-3.1.0.tgz#39f67c54b3a7a58cea5236d95cf0034239631f7e" @@ -17979,26 +18194,29 @@ rollup@^2.44.0: optionalDependencies: fsevents "~2.3.2" -rollup@^4.2.0: - version "4.12.0" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.12.0.tgz#0b6d1e5f3d46bbcf244deec41a7421dc54cc45b5" - integrity sha512-wz66wn4t1OHIJw3+XU7mJJQV/2NAfw5OAk6G6Hoo3zcvz/XOfQ52Vgi+AN4Uxoxi0KBBwk2g8zPrTDA4btSB/Q== +rollup@^4.13.0, rollup@^4.2.0: + version "4.16.2" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.16.2.tgz#43bcbd225d0a6bc68df97a6e41c45003188a3845" + integrity sha512-sxDP0+pya/Yi5ZtptF4p3avI+uWCIf/OdrfdH2Gbv1kWddLKk0U7WE3PmQokhi5JrektxsK3sK8s4hzAmjqahw== dependencies: "@types/estree" "1.0.5" optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.12.0" - "@rollup/rollup-android-arm64" "4.12.0" - "@rollup/rollup-darwin-arm64" "4.12.0" - "@rollup/rollup-darwin-x64" "4.12.0" - "@rollup/rollup-linux-arm-gnueabihf" "4.12.0" - "@rollup/rollup-linux-arm64-gnu" "4.12.0" - "@rollup/rollup-linux-arm64-musl" "4.12.0" - "@rollup/rollup-linux-riscv64-gnu" "4.12.0" - "@rollup/rollup-linux-x64-gnu" "4.12.0" - "@rollup/rollup-linux-x64-musl" "4.12.0" - "@rollup/rollup-win32-arm64-msvc" "4.12.0" - "@rollup/rollup-win32-ia32-msvc" "4.12.0" - "@rollup/rollup-win32-x64-msvc" "4.12.0" + "@rollup/rollup-android-arm-eabi" "4.16.2" + "@rollup/rollup-android-arm64" "4.16.2" + "@rollup/rollup-darwin-arm64" "4.16.2" + "@rollup/rollup-darwin-x64" "4.16.2" + "@rollup/rollup-linux-arm-gnueabihf" "4.16.2" + "@rollup/rollup-linux-arm-musleabihf" "4.16.2" + "@rollup/rollup-linux-arm64-gnu" "4.16.2" + "@rollup/rollup-linux-arm64-musl" "4.16.2" + "@rollup/rollup-linux-powerpc64le-gnu" "4.16.2" + "@rollup/rollup-linux-riscv64-gnu" "4.16.2" + "@rollup/rollup-linux-s390x-gnu" "4.16.2" + "@rollup/rollup-linux-x64-gnu" "4.16.2" + "@rollup/rollup-linux-x64-musl" "4.16.2" + "@rollup/rollup-win32-arm64-msvc" "4.16.2" + "@rollup/rollup-win32-ia32-msvc" "4.16.2" + "@rollup/rollup-win32-x64-msvc" "4.16.2" fsevents "~2.3.2" run-parallel@^1.1.9: @@ -18015,27 +18233,27 @@ run-queue@^1.0.0, run-queue@^1.0.3: dependencies: aproba "^1.1.1" -rxjs@^6.3.3, rxjs@^6.5.1, rxjs@^6.5.5: +rxjs@^6.5.1, rxjs@^6.5.5: version "6.6.7" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.7.tgz#90ac018acabf491bf65044235d5863c4dab804c9" integrity sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ== dependencies: tslib "^1.9.0" -rxjs@^7.8.1: +rxjs@^7.5.1, rxjs@^7.8.1: version "7.8.1" resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-7.8.1.tgz#6f6f3d99ea8044291efd92e7c7fcf562c4057543" integrity sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg== dependencies: tslib "^2.1.0" -safe-array-concat@^1.0.0, safe-array-concat@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.0.tgz#8d0cae9cb806d6d1c06e08ab13d847293ebe0692" - integrity sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg== +safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== dependencies: - call-bind "^1.0.5" - get-intrinsic "^1.2.2" + call-bind "^1.0.7" + get-intrinsic "^1.2.4" has-symbols "^1.0.3" isarray "^2.0.5" @@ -18335,18 +18553,18 @@ set-blocking@^2.0.0: integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== set-function-length@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.1.tgz#47cc5945f2c771e2cf261c6737cf9684a2a5e425" - integrity sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g== + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== dependencies: - define-data-property "^1.1.2" + define-data-property "^1.1.4" es-errors "^1.3.0" function-bind "^1.1.2" - get-intrinsic "^1.2.3" + get-intrinsic "^1.2.4" gopd "^1.0.1" - has-property-descriptors "^1.0.1" + has-property-descriptors "^1.0.2" -set-function-name@^2.0.0, set-function-name@^2.0.1: +set-function-name@^2.0.1, set-function-name@^2.0.2: version "2.0.2" resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== @@ -18452,7 +18670,7 @@ shx@^0.3.3: minimist "^1.2.3" shelljs "^0.8.5" -side-channel@^1.0.4: +side-channel@^1.0.4, side-channel@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== @@ -18478,9 +18696,9 @@ signal-exit@^4.0.1, signal-exit@^4.1.0: integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== simple-git@^3.15.1: - version "3.22.0" - resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.22.0.tgz#616d41c661e30f9c65778956317d422b1729a242" - integrity sha512-6JujwSs0ac82jkGjMHiCnTifvf1crOiY/+tfs/Pqih6iow7VrpNKRRNdWm6RtaXpvvv/JGNYhlUtLhGFqHF+Yw== + version "3.24.0" + resolved "https://registry.yarnpkg.com/simple-git/-/simple-git-3.24.0.tgz#33a8c88dc6fa74e53eaf3d6bfc27d0182a49ec00" + integrity sha512-QqAKee9Twv+3k8IFOFfPB2hnk6as6Y6ACUpwCtQvRYBAes23Wv3SZlHVobAzqcE8gfsisCvPw3HGW3HYM+VYYw== dependencies: "@kwsites/file-exists" "^1.1.1" "@kwsites/promise-deferred" "^1.1.1" @@ -18515,11 +18733,6 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slice-ansi@0.0.4: - version "0.0.4" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-0.0.4.tgz#edbf8903f66f7ce2f8eafd6ceed65e264c831b35" - integrity sha512-up04hB2hR92PgjpyU3y/eg91yIBILyjVY26NvvciY3EVVPjybkMszMpXQ9QAkcS3I5rtJBDLoTxxg+qvW8c7rw== - slice-ansi@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" @@ -18538,6 +18751,15 @@ slice-ansi@^3.0.0: astral-regex "^2.0.0" is-fullwidth-code-point "^3.0.0" +slice-ansi@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== + dependencies: + ansi-styles "^4.0.0" + astral-regex "^2.0.0" + is-fullwidth-code-point "^3.0.0" + smart-buffer@^4.0.2, smart-buffer@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.2.0.tgz#6e1d71fa4f18c05f7d0ff216dd16a481d0e8d9ae" @@ -18603,9 +18825,9 @@ socks-proxy-agent@^7.0.0: socks "^2.6.2" socks@^2.6.2: - version "2.8.1" - resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.1.tgz#22c7d9dd7882649043cba0eafb49ae144e3457af" - integrity sha512-B6w7tkwNid7ToxjZ08rQMT8M9BJAf8DKx8Ft4NivzH0zBUfd6jldGcisJn/RLgxcX3FPNDdNQCUEMMT79b+oCQ== + version "2.8.3" + resolved "https://registry.yarnpkg.com/socks/-/socks-2.8.3.tgz#1ebd0f09c52ba95a09750afe3f3f9f724a800cb5" + integrity sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw== dependencies: ip-address "^9.0.5" smart-buffer "^4.2.0" @@ -18636,10 +18858,10 @@ source-list-map@^2.0.0: resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" integrity sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw== -source-map-js@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== +source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== source-map-resolve@^0.5.0: version "0.5.3" @@ -18947,7 +19169,7 @@ stream-http@^2.7.2: to-arraybuffer "^1.0.0" xtend "^4.0.0" -stream-shift@^1.0.0: +stream-shift@^1.0.0, stream-shift@^1.0.2: version "1.0.3" resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.3.tgz#85b8fab4d71010fc3ba8772e8046cc49b8a3864b" integrity sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ== @@ -18976,23 +19198,6 @@ strict-uri-encode@^2.0.0: is-fullwidth-code-point "^3.0.0" strip-ansi "^6.0.1" -string-width@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" - integrity sha512-0XsVpQLnVCXHJfyEs8tC0zpTVIr5PKKsQtkT29IwupnPTjtPmQ3xT/4yCREF9hYkV/3M3kzcUTSAZT6a6h81tw== - dependencies: - code-point-at "^1.0.0" - is-fullwidth-code-point "^1.0.0" - strip-ansi "^3.0.0" - -string-width@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" - integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== - dependencies: - is-fullwidth-code-point "^2.0.0" - strip-ansi "^4.0.0" - string-width@^3.0.0, string-width@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" @@ -19012,46 +19217,50 @@ string-width@^5.0.1, string-width@^5.1.2: strip-ansi "^7.0.1" string.prototype.matchall@^4.0.10: - version "4.0.10" - resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz#a1553eb532221d4180c51581d6072cd65d1ee100" - integrity sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ== + version "4.0.11" + resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.11.tgz#1092a72c59268d2abaad76582dccc687c0297e0a" + integrity sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" - get-intrinsic "^1.2.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + gopd "^1.0.1" has-symbols "^1.0.3" - internal-slot "^1.0.5" - regexp.prototype.flags "^1.5.0" - set-function-name "^2.0.0" - side-channel "^1.0.4" + internal-slot "^1.0.7" + regexp.prototype.flags "^1.5.2" + set-function-name "^2.0.2" + side-channel "^1.0.6" -string.prototype.trim@^1.2.8: - version "1.2.8" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz#f9ac6f8af4bd55ddfa8895e6aea92a96395393bd" - integrity sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ== +string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" -string.prototype.trimend@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz#1bb3afc5008661d73e2dc015cd4853732d6c471e" - integrity sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA== +string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" -string.prototype.trimstart@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz#d4cdb44b83a4737ffbac2d406e405d43d0184298" - integrity sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg== +string.prototype.trimstart@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== dependencies: - call-bind "^1.0.2" - define-properties "^1.2.0" - es-abstract "^1.22.1" + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" string_decoder@^1.0.0, string_decoder@^1.1.1: version "1.3.0" @@ -19124,13 +19333,6 @@ strip-ansi@^3.0.0, strip-ansi@^3.0.1: dependencies: ansi-regex "^2.0.0" -strip-ansi@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" - integrity sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow== - dependencies: - ansi-regex "^3.0.0" - strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: version "5.2.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" @@ -19145,6 +19347,13 @@ strip-ansi@^7.0.1: dependencies: ansi-regex "^6.0.1" +strip-bom@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" + integrity sha512-kwrX1y7czp1E69n2ajbG65mIo9dqvJ+8aBQXOGVxqwvNbsXdFM6Lq37dLAY3mknUwru8CfcCbfOLL/gMo+fi3g== + dependencies: + is-utf8 "^0.2.0" + strip-bom@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" @@ -19172,6 +19381,13 @@ strip-final-newline@^3.0.0: resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== +strip-indent@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" + integrity sha512-I5iQq6aFMM62fBEAIB/hXzwJD6EEZ0xEGCX2t7oXqaKPIRgt4WruAQ285BISgdkP+HLGWyeGmNJcpIwFeRYRUA== + dependencies: + get-stdin "^4.0.1" + strip-indent@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" @@ -19387,7 +19603,7 @@ supports-color@^6.1.0: dependencies: has-flag "^3.0.0" -supports-color@^7.0.0, supports-color@^7.1.0, supports-color@^7.2.0: +supports-color@^7.0.0, supports-color@^7.1.0: version "7.2.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== @@ -19430,7 +19646,7 @@ svgo@^1.0.0: unquote "~1.1.1" util.promisify "~1.0.0" -symbol-observable@^1.1.0, symbol-observable@^1.2.0: +symbol-observable@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804" integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ== @@ -19495,9 +19711,9 @@ tar-stream@^2.1.4: readable-stream "^3.1.1" tar@^6.0.5, tar@^6.1.11, tar@^6.1.12, tar@^6.1.2, tar@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.0.tgz#b14ce49a79cb1cd23bc9b016302dea5474493f73" - integrity sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ== + version "6.2.1" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.2.1.tgz#717549c541bc3c2af15751bea94b1dd068d4b03a" + integrity sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" @@ -19589,9 +19805,9 @@ terser@^4.1.2, terser@^4.6.12: source-map-support "~0.5.12" terser@^5.0.0: - version "5.28.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.28.1.tgz#bf00f7537fd3a798c352c2d67d67d65c915d1b28" - integrity sha512-wM+bZp54v/E9eRRGXb5ZFDvinrJIOaTapx3WUokyVGZu5ucVCK55zEgGd5Dl2fSr3jUo5sDiERErUWLY6QPFyA== + version "5.30.4" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.30.4.tgz#62b4d16a819424e6317fd5ceffb4ee8dc769803a" + integrity sha512-xRdd0v64a8mFK9bnsKVdoNP9GQIKUAaJPTaqEQDL4w/J8WaW4sWXXoMZ+6SimPkfT5bElreXf8m9HnmPc3E1BQ== dependencies: "@jridgewell/source-map" "^0.3.3" acorn "^8.8.2" @@ -19685,9 +19901,9 @@ tiny-warning@^1.0.0, tiny-warning@^1.0.2: integrity sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA== tinybench@^2.5.1: - version "2.6.0" - resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.6.0.tgz#1423284ee22de07c91b3752c048d2764714b341b" - integrity sha512-N8hW3PG/3aOoZAN5V/NSAEDz0ZixDSSt5b/a05iqtpgfLWMSVuCo7w0k2vVvEjdrIoeGqZzweX2WlyioNIHchA== + version "2.8.0" + resolved "https://registry.yarnpkg.com/tinybench/-/tinybench-2.8.0.tgz#30e19ae3a27508ee18273ffed9ac7018949acd7b" + integrity sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw== tinycolor2@^1.4.1: version "1.6.0" @@ -19695,9 +19911,9 @@ tinycolor2@^1.4.1: integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw== tinypool@^0.8.2: - version "0.8.2" - resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.8.2.tgz#84013b03dc69dacb322563a475d4c0a9be00f82a" - integrity sha512-SUszKYe5wgsxnNOVlBYO6IC+8VGWdVGZWAqUxp3UErNBtptZvWbwyUOyzNL59zigz2rCA92QiL3wvG+JDSdJdQ== + version "0.8.4" + resolved "https://registry.yarnpkg.com/tinypool/-/tinypool-0.8.4.tgz#e217fe1270d941b39e98c625dcecebb1408c9aa8" + integrity sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ== tinyspy@^2.2.0: version "2.2.1" @@ -19769,9 +19985,9 @@ to-regex@3.0.2, to-regex@^3.0.1, to-regex@^3.0.2: safe-regex "^1.1.0" tocbot@^4.20.1: - version "4.25.0" - resolved "https://registry.yarnpkg.com/tocbot/-/tocbot-4.25.0.tgz#bc38aea5ec8f076779bb39636f431b044129a237" - integrity sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA== + version "4.27.0" + resolved "https://registry.yarnpkg.com/tocbot/-/tocbot-4.27.0.tgz#8215d50df66dc6e3b86c8f7b10389b2d6b8bd555" + integrity sha512-x3ZPNFPVOYCAyW4CEW8KszGfqB3/fnY1QX1tfUHH1fj1r6I8v0g5w0flNsWf7htZKtzqtdiPqu//II3ngL/WwA== toidentifier@1.0.1: version "1.0.1" @@ -19833,6 +20049,11 @@ trim-lines@^3.0.0: resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338" integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg== +trim-newlines@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613" + integrity sha512-Nm4cF79FhSTzrLKGDMi3I4utBtFv8qKy4sq1enftf2gMdpqI8oVQTAfySkTz5r49giVzDj88SVZXP4CeYQwjaw== + trim-newlines@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20" @@ -19888,9 +20109,9 @@ tryer@^1.0.1: integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== ts-api-utils@^1.0.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.2.1.tgz#f716c7e027494629485b21c0df6180f4d08f5e8b" - integrity sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA== + version "1.3.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" + integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== ts-dedent@^2.0.0, ts-dedent@^2.2.0: version "2.2.0" @@ -19973,6 +20194,11 @@ type-fest@^0.20.2: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== +type-fest@^0.21.3: + version "0.21.3" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== + type-fest@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" @@ -20033,10 +20259,10 @@ typed-array-byte-offset@^1.0.2: has-proto "^1.0.3" is-typed-array "^1.1.13" -typed-array-length@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.5.tgz#57d44da160296d8663fd63180a1802ebf25905d5" - integrity sha512-yMi0PlwuznKHxKmcpoOdeLwxBoVPkqZxd7q2FgMkmD3bNwvF5VW0+UlUQ1k1vmktTu4Yu13Q0RIxEP8+B+wloA== +typed-array-length@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== dependencies: call-bind "^1.0.7" for-each "^0.3.3" @@ -20067,7 +20293,7 @@ typeface-open-sans@0.0.75: resolved "https://registry.yarnpkg.com/typeface-open-sans/-/typeface-open-sans-0.0.75.tgz#20d0c330f14c0c40463c334adbedd6005389abe4" integrity sha512-0lLmB7pfj113OP4T78SbpSmC4OCdFQ0vUxdSXQccsSb6qF76F92iEuC/DghFgmPswTyidk8+Hwf+PS/htiJoRQ== -typescript@5.3.3, typescript@^5.3.3: +typescript@5.3.3: version "5.3.3" resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.3.3.tgz#b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37" integrity sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw== @@ -20077,15 +20303,20 @@ typescript@^3.0.3, typescript@^3.8.3, typescript@^3.9.5, typescript@^3.9.7: resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8" integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q== +typescript@^5.3.3: + version "5.4.5" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" + integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== + ua-parser-js@^0.7.23, ua-parser-js@^0.7.30: version "0.7.37" resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.37.tgz#e464e66dac2d33a7a1251d7d7a99d6157ec27832" integrity sha512-xV8kqRKM+jhMvcHWUKthV9fNebIzrNy//2O9ZwWcfiBFR5f25XVZPLlEajk/sf3Ra15V92isyQqnIEXRDaZWEA== ufo@^1.3.2, ufo@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.4.0.tgz#39845b31be81b4f319ab1d99fd20c56cac528d32" - integrity sha512-Hhy+BhRBleFjpJ2vchUNN40qgkh0366FWJGqVLYBHev0vpHTrXSA0ryT+74UiW6KWsldNurQMKGqCm1M2zBciQ== + version "1.5.3" + resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.5.3.tgz#3325bd3c977b6c6cd3160bf4ff52989adc9d3344" + integrity sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw== uglify-js@3.4.x: version "3.4.10" @@ -20394,9 +20625,9 @@ unpipe@1.0.0, unpipe@~1.0.0: integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== unplugin@^1.3.1: - version "1.8.0" - resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.8.0.tgz#08540733c6e2f2fe343735816d1f622b4d083dd1" - integrity sha512-yGEQsodWICmgt7asHF7QzqDZYeEP9h14vyd9Lul98UnYf29pLZZLwI09z2QdTjwU/FCkum1SRvsK7cx232X8NA== + version "1.10.1" + resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-1.10.1.tgz#8ceda065dc71bc67d923dea0920f05c67f2cd68c" + integrity sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg== dependencies: acorn "^8.11.3" chokidar "^3.6.0" @@ -20514,18 +20745,18 @@ url@^0.11.0: qs "^6.11.2" usb@^2.11.0: - version "2.12.0" - resolved "https://registry.yarnpkg.com/usb/-/usb-2.12.0.tgz#3c00faf6d3bf830b5a45fa510157f23df10e7d73" - integrity sha512-C/egt5PQWcBZq5jABOpBCbhZrB2ftyXdx+cEnK7qowo0ALkfclfrQGlCMbj0VbirfIGayvmWMYQ8Dnii5A4pXQ== + version "2.12.1" + resolved "https://registry.yarnpkg.com/usb/-/usb-2.12.1.tgz#f7a68ddb1314d56758e3e3b1265bc467922a9503" + integrity sha512-hgtoSQUFuMXVJBApelpUTiX7ZB83MQCbYeHTBsHftA2JG7YZ76ycwIgKQhkhKqVY76C8K6xJscHpF7Ep0eG3pQ== dependencies: "@types/w3c-web-usb" "^1.0.6" node-addon-api "^7.0.0" node-gyp-build "^4.5.0" use-callback-ref@^1.2.3, use-callback-ref@^1.3.0: - version "1.3.1" - resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.1.tgz#9be64c3902cbd72b07fe55e56408ae3a26036fd0" - integrity sha512-Lg4Vx1XZQauB42Hw3kK7JM6yjVjgFmFC5/Ab797s79aARomD2nEErc4mCgM8EZrARLmmbWpi5DGCadmK50DcAQ== + version "1.3.2" + resolved "https://registry.yarnpkg.com/use-callback-ref/-/use-callback-ref-1.3.2.tgz#6134c7f6ff76e2be0b56c809b17a650c942b1693" + integrity sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA== dependencies: tslib "^2.0.0" @@ -20787,13 +21018,13 @@ vite@5.0.5: fsevents "~2.3.3" vite@^5.0, vite@^5.0.0: - version "5.1.4" - resolved "https://registry.yarnpkg.com/vite/-/vite-5.1.4.tgz#14e9d3e7a6e488f36284ef13cebe149f060bcfb6" - integrity sha512-n+MPqzq+d9nMVTKyewqw6kSt+R3CkvF9QAKY8obiQn8g1fwTscKxyfaYnC632HtBXAQGc1Yjomphwn1dtwGAHg== + version "5.2.10" + resolved "https://registry.yarnpkg.com/vite/-/vite-5.2.10.tgz#2ac927c91e99d51b376a5c73c0e4b059705f5bd7" + integrity sha512-PAzgUZbP7msvQvqdSD+ErD5qGnSFiGOoWmV5yAKUEI0kdhjbH6nMWVyZQC/hSc4aXwc0oJ9aEdIiF9Oje0JFCw== dependencies: - esbuild "^0.19.3" - postcss "^8.4.35" - rollup "^4.2.0" + esbuild "^0.20.1" + postcss "^8.4.38" + rollup "^4.13.0" optionalDependencies: fsevents "~2.3.3" @@ -20945,9 +21176,9 @@ watchpack@^1.7.4: watchpack-chokidar2 "^2.0.1" watchpack@^2.2.0: - version "2.4.0" - resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.0.tgz#fa33032374962c78113f93c7f2fb4c54c9862a5d" - integrity sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg== + version "2.4.1" + resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-2.4.1.tgz#29308f2cac150fa8e4c92f90e0ec954a9fed7fff" + integrity sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg== dependencies: glob-to-regexp "^0.4.1" graceful-fs "^4.1.2" @@ -21217,30 +21448,30 @@ which-builtin-type@^1.1.3: which-typed-array "^1.1.9" which-collection@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" - integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.2.tgz#627ef76243920a107e7ce8e96191debe4b16c2a0" + integrity sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw== dependencies: - is-map "^2.0.1" - is-set "^2.0.1" - is-weakmap "^2.0.1" - is-weakset "^2.0.1" + is-map "^2.0.3" + is-set "^2.0.3" + is-weakmap "^2.0.2" + is-weakset "^2.0.3" which-module@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.1.tgz#776b1fe35d90aebe99e8ac15eb24093389a4a409" integrity sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ== -which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.2, which-typed-array@^1.1.9: - version "1.1.14" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.14.tgz#1f78a111aee1e131ca66164d8bdc3ab062c95a06" - integrity sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg== +which-typed-array@^1.1.13, which-typed-array@^1.1.14, which-typed-array@^1.1.15, which-typed-array@^1.1.2, which-typed-array@^1.1.9: + version "1.1.15" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== dependencies: - available-typed-arrays "^1.0.6" - call-bind "^1.0.5" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" for-each "^0.3.3" gopd "^1.0.1" - has-tostringtag "^1.0.1" + has-tostringtag "^1.0.2" which@^1.2.14, which@^1.2.9, which@^1.3.1: version "1.3.1" @@ -21271,6 +21502,11 @@ wide-align@^1.1.5: dependencies: string-width "^1.0.2 || 2 || 3 || 4" +window-size@0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/window-size/-/window-size-0.1.4.tgz#f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876" + integrity sha512-2thx4pB0cV3h+Bw7QmMXcEbdmOzv9t0HFplJH/Lz6yu60hXYy5RT8rUu+wlIreVxWsGN20mo+MHeCSfUpQBwPw== + winston-transport@^4.2.0: version "4.7.0" resolved "https://registry.yarnpkg.com/winston-transport/-/winston-transport-4.7.0.tgz#e302e6889e6ccb7f383b926df6936a5b781bd1f0" @@ -21328,14 +21564,6 @@ worker-plugin@^5.0.0: string-width "^4.1.0" strip-ansi "^6.0.0" -wrap-ansi@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-3.0.1.tgz#288a04d87eda5c286e060dfe8f135ce8d007f8ba" - integrity sha512-iXR3tDXpbnTpzjKSylUJRkLuOrEC7hwEB221cgn6wtF8wpmz28puFXAEfPT5zrjM3wahygB//VuWEr1vTkDcNQ== - dependencies: - string-width "^2.1.1" - strip-ansi "^4.0.0" - wrap-ansi@^5.1.0: version "5.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09"